[
  {
    "path": ".clang-format",
    "content": "# We'll use defaults from the LLVM style, but with 4 columns indentation.\nBasedOnStyle: LLVM\nIndentWidth: 4\nColumnLimit: 150"
  },
  {
    "path": ".editorconfig",
    "content": "# To learn more about .editorconfig see https://aka.ms/editorconfigdocs\n\n# All files\n[*]\nindent_style = space\nindent_size = 4\n\n# Xml files\n[*.xml]\nindent_size = 2\n"
  },
  {
    "path": ".gitattributes",
    "content": "*.assbin filter=lfs diff=lfs merge=lfs -text\r\n*.gif filter=lfs diff=lfs merge=lfs -text\r\n*.jpg filter=lfs diff=lfs merge=lfs -text\r\n*.png filter=lfs diff=lfs merge=lfs -text\r\n*.mb filter=lfs diff=lfs merge=lfs -text\r\n"
  },
  {
    "path": ".gitignore",
    "content": ".vs\r\nbuild\r\npackages\r\nexport\r\nplayblast*\r\n*.bck\r\n*.swatch\r\n*.pyc\r\nipch\r\n.DS_Store\r\n"
  },
  {
    "path": ".vscode/c_cpp_properties.json",
    "content": "{\n    \"configurations\": [\n        {\n            \"name\": \"Mac\",\n            \"includePath\": [\n                \"${workspaceFolder}/src/**\",\n                \"${workspaceFolder}/build/COLLADA2GLTF/src/COLLADA2GLTF/GLTF/include\",\n                \"${workspaceFolder}/build/COLLADA2GLTF/src/COLLADA2GLTF/GLTF/dependencies/draco/src\",\n                \"${workspaceFolder}/build/COLLADA2GLTF/src/COLLADA2GLTF/GLTF/dependencies/rapidjson/include\",\n                \"/Applications/Autodesk/maya2018/include/**\"\n            ],\n            \"defines\": [],\n            \"macFrameworkPath\": [\n                \"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks\"\n            ],\n            \"compilerPath\": \"/usr/bin/clang\",\n            \"cStandard\": \"c11\",\n            \"cppStandard\": \"c++17\",\n            \"intelliSenseMode\": \"clang-x64\"\n        }\n    ],\n    \"version\": 4\n}"
  },
  {
    "path": "CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.8)\r\n\r\nproject(maya2glTF)\r\n\r\nset(CMAKE_POSITION_INDEPENDENT_CODE ON)\r\nset(CMAKE_CXX_STANDARD 17)\r\nset(CMAKE_CXX_STANDARD_REQUIRED ON)\r\n\r\nlist(APPEND CMAKE_MODULE_PATH \"${CMAKE_CURRENT_SOURCE_DIR}/modules\")\r\n\r\nfind_package(Maya REQUIRED)\r\n\r\ninclude(ExternalProject)\r\n\r\n# COLLADA2GLTF\r\n# We only need to build the GLTF sub-library, hence the SOURCE_SUBDIR\r\nExternalProject_Add(COLLADA2GLTF\r\n  GIT_REPOSITORY https://github.com/iimachines/COLLADA2GLTF\r\n  GIT_TAG Maya2glTF\r\n  PREFIX COLLADA2GLTF\r\n  SOURCE_SUBDIR GLTF\r\n  INSTALL_DIR\r\n  CMAKE_ARGS\r\n  -DCMAKE_INSTALL_PREFIX=<INSTALL_DIR>\r\n  #CONFIGURE_COMMAND ${CMAKE_COMMAND} -DCMAKE_INSTALL_PREFIX:PATH=<INSTALL_DIR> <SOURCE_DIR>/GLTF\r\n  CMAKE_CACHE_ARGS\r\n  \"-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=true\"\r\n)\r\n\r\n\r\n# cpp-linq\r\nExternalProject_Add(linq\r\n  GIT_REPOSITORY https://github.com/coveo/linq.git\r\n  GIT_TAG v2.0.2\r\n  PREFIX linq\r\n  INSTALL_DIR\r\n  CMAKE_ARGS\r\n  -DCMAKE_INSTALL_PREFIX=<INSTALL_DIR>\r\n  CONFIGURE_COMMAND \"\"\r\n  BUILD_COMMAND \"\"\r\n  INSTALL_COMMAND \"\"\r\n)\r\n\r\n# GSL\r\nExternalProject_Add(GSL\r\n  GIT_REPOSITORY https://github.com/Microsoft/GSL.git\r\n  GIT_TAG v2.0.0\r\n  PREFIX GSL\r\n  INSTALL_DIR\r\n  CMAKE_ARGS\r\n\t-DCMAKE_INSTALL_PREFIX=<INSTALL_DIR>\r\n)\r\n\r\n# filesystem\r\nExternalProject_Add(filesystem\r\n  GIT_REPOSITORY https://github.com/gulrak/filesystem\r\n  GIT_TAG v1.2.6\r\n  PREFIX filesystem\r\n  INSTALL_DIR\r\n  CMAKE_ARGS\r\n\t-DCMAKE_INSTALL_PREFIX=<INSTALL_DIR>\r\n  CONFIGURE_COMMAND \"\"\r\n  BUILD_COMMAND \"\"\r\n  INSTALL_COMMAND \"\"\r\n)\r\n\r\nset(GLTF_INCLUDE_DIR          \"${CMAKE_BINARY_DIR}/COLLADA2GLTF/src/COLLADA2GLTF/GLTF/include\")\r\nset(DRACO_INCLUDE_DIR         \"${CMAKE_BINARY_DIR}/COLLADA2GLTF/src/COLLADA2GLTF/GLTF/dependencies/draco/src\")\r\nset(RAPIDJSON_INCLUDE_DIR     \"${CMAKE_BINARY_DIR}/COLLADA2GLTF/src/COLLADA2GLTF/GLTF/dependencies/rapidjson/include\")\r\n#set(COLLADA2GLTF_INCLUDE_DIR  \"${CMAKE_BINARY_DIR}/COLLADA2GLTF/include\")\r\nset(GSL_INCLUDE_DIR           \"${CMAKE_BINARY_DIR}/GSL/include\")\r\nset(LINQ_INCLUDE_DIR          \"${CMAKE_BINARY_DIR}/linq/src/linq/lib\")\r\nset(FS_INCLUDE_DIR            \"${CMAKE_BINARY_DIR}/filesystem/src/filesystem/include\")\r\n\r\n# TODO: It seems the gltf.lib is not installed by COLLADA2GLTF, although draco.lib is? Figure out why\r\nExternalProject_Get_Property(COLLADA2GLTF binary_dir)\r\n#message(\"Using ${binary_dir}/${CMAKE_BUILD_TYPE} as GLTF target folder\")\r\nset(GLTF_LIBRARY_DIR \"${binary_dir}/${CMAKE_BUILD_TYPE}\") \r\nset(DRACO_LIBRARY_DIR \"${binary_dir}/dependencies/draco/${CMAKE_BUILD_TYPE}\") \r\n\r\nexecute_process(\r\nCOMMAND\r\n    git rev-parse --short HEAD\r\nRESULT_VARIABLE\r\n    GIT_SHORT_HASH_RESULT\r\nOUTPUT_VARIABLE\r\n    GIT_SHORT_HASH)\r\nstring(REGEX REPLACE \"\\n$\" \"\" GIT_SHORT_HASH \"${GIT_SHORT_HASH}\")\r\n\r\nexecute_process(\r\nCOMMAND\r\n    git tag -l --points-at HEAD\r\nRESULT_VARIABLE\r\n    GIT_TAG_RESULT\r\nOUTPUT_VARIABLE\r\n    GIT_TAG)\r\nstring(REGEX REPLACE \"\\n$\" \"\" GIT_TAG \"${GIT_TAG}\")\r\n\r\nif(NOT GIT_TAG)\r\n  set(GIT_TAG \"main\")\r\nendif()\r\n\r\nset(ARCHIVE_VERSION \"${GIT_TAG}_${GIT_SHORT_HASH}\")\r\n\r\nmessage(\"GIT version = ${ARCHIVE_VERSION}\")\r\n\r\nCONFIGURE_FILE(\r\n  ${CMAKE_CURRENT_SOURCE_DIR}/maya/maya2glTF_version.mel.in\r\n  ${CMAKE_CURRENT_BINARY_DIR}/maya2glTF_version.mel\r\n)\r\n\r\nCONFIGURE_FILE(\r\n  ${CMAKE_CURRENT_SOURCE_DIR}/src/version.h.in\r\n  ${CMAKE_CURRENT_BINARY_DIR}/version.h\r\n)\r\n\r\nfile(GLOB SOURCES \"src/*.cpp\" \"src/*.h\" \"src/*.c\")\r\n\r\nif (MSVC)\r\n  set(CMAKE_CXX_FLAGS \"${CMAKE_CXX_FLAGS} /Yuexternals.h\")\r\n  set_source_files_properties(src/externals.cpp PROPERTIES COMPILE_FLAGS \"/Ycexternals.h\")\r\n  set_source_files_properties(src/mikktspace.c  PROPERTIES COMPILE_FLAGS \"/Y-\")\r\n  set_source_files_properties(src/PolarDecomposition.c  PROPERTIES COMPILE_FLAGS \"/Y-\")\r\nendif()\r\n\r\ninclude_directories(\r\n  ${GLTF_INCLUDE_DIR}\r\n  ${DRACO_INCLUDE_DIR}\r\n  ${RAPIDJSON_INCLUDE_DIR}\r\n  ${GSL_INCLUDE_DIR}\r\n  ${MAYA_INCLUDE_DIR}\r\n  ${LINQ_INCLUDE_DIR}\r\n  ${FS_INCLUDE_DIR}\r\n  ${CMAKE_CURRENT_BINARY_DIR}\r\n)\r\n\r\nlink_directories(\r\n  ${MAYA_LIBRARY_DIR}\r\n  ${GLTF_LIBRARY_DIR}\r\n  ${DRACO_LIBRARY_DIR}\r\n)\r\n\r\nadd_library(${PROJECT_NAME} SHARED ${SOURCES})\r\n\r\nadd_dependencies(${PROJECT_NAME}\r\n  GSL\r\n  COLLADA2GLTF\r\n  linq\r\n  filesystem\r\n)\r\n\r\ntarget_link_libraries(${PROJECT_NAME} ${MAYA_LIBRARIES} GLTF draco)\r\n\r\nif(MSVC)\r\n\r\n  GET_FILENAME_COMPONENT(USER_DOCUMENTS \"[HKEY_CURRENT_USER\\\\Software\\\\Microsoft\\\\Windows\\\\CurrentVersion\\\\Explorer\\\\Shell Folders;Personal]\" ABSOLUTE CACHE)\r\n  message(\"-- Found user documents folder = ${USER_DOCUMENTS}\")\r\n\r\n  set(MAYA_OUTPUT_DIR \"$<SHELL_PATH:${USER_DOCUMENTS}/maya\")\r\n  add_custom_command(TARGET maya2glTF POST_BUILD \r\n    COMMAND xcopy /y \"$<SHELL_PATH:$<TARGET_FILE:maya2glTF>>\" \"${MAYA_OUTPUT_DIR}/${MAYA_VERSION}/plug-ins/>\"\r\n    COMMAND xcopy /y \"$<SHELL_PATH:${CMAKE_CURRENT_BINARY_DIR}/maya2glTF_version.mel>\" \"${MAYA_OUTPUT_DIR}/scripts/>\"\r\n    COMMAND xcopy /y \"$<SHELL_PATH:${PROJECT_SOURCE_DIR}/maya/scripts/maya2glTF*.mel>\" \"${MAYA_OUTPUT_DIR}/scripts/>\"\r\n    COMMAND xcopy /y /s /i \"$<SHELL_PATH:${PROJECT_SOURCE_DIR}/maya/renderData/*.*>\" \"${MAYA_OUTPUT_DIR}/maya2glTF/PBR/>\"\r\n    COMMAND xcopy /y /s /i \"$<SHELL_PATH:${PROJECT_SOURCE_DIR}/maya/prefs/*.*>\" \"${MAYA_OUTPUT_DIR}/${MAYA_VERSION}/prefs/>\"\r\n    COMMAND if exist \"$<SHELL_PATH:$<TARGET_PDB_FILE:maya2glTF>>\" (xcopy /y /c \"$<SHELL_PATH:$<TARGET_PDB_FILE:maya2glTF>>\" \"${MAYA_OUTPUT_DIR}/${MAYA_VERSION}/plug-ins/>\")\r\n  )\r\n  \r\n  set(MAYA_OUTPUT_DIR \"${PROJECT_BINARY_DIR}/redist\")\r\n  set(MAYA_PACKAGE_DIR \"${MAYA_OUTPUT_DIR}/package\")\r\n\r\n  file(REMOVE_RECURSE ${MAYA_OUTPUT_DIR}/)\r\n  set(MAYA_OUTPUT_LIST \"${MAYA_OUTPUT_DIR}/\"\r\n    \"${MAYA_PACKAGE_DIR}/\"\r\n    \"${MAYA_PACKAGE_DIR}/${MAYA_VERSION}/plug-ins/\"\r\n    \"${MAYA_PACKAGE_DIR}/${MAYA_VERSION}/scripts/\"\r\n    \"${MAYA_PACKAGE_DIR}/${MAYA_VERSION}/prefs/\"\r\n    \"${MAYA_PACKAGE_DIR}/maya2glTF/PBR/\"\r\n  )\r\n  file(MAKE_DIRECTORY ${MAYA_OUTPUT_LIST})\r\n  add_custom_command(TARGET maya2glTF POST_BUILD \r\n    COMMAND xcopy /y \"$<SHELL_PATH:$<TARGET_FILE:maya2glTF>>\" \"$<SHELL_PATH:${MAYA_PACKAGE_DIR}/${MAYA_VERSION}/plug-ins/>\"    \r\n    COMMAND xcopy /y \"$<SHELL_PATH:${CMAKE_CURRENT_BINARY_DIR}/maya2glTF_version.mel>\" \"$<SHELL_PATH:${MAYA_PACKAGE_DIR}/${MAYA_VERSION}/scripts/>\"\r\n    COMMAND xcopy /y \"$<SHELL_PATH:${PROJECT_SOURCE_DIR}/maya/scripts/maya2glTF*.mel>\" \"$<SHELL_PATH:${MAYA_PACKAGE_DIR}/${MAYA_VERSION}/scripts/>\"\r\n    COMMAND xcopy /y /s /i \"$<SHELL_PATH:${PROJECT_SOURCE_DIR}/maya/renderData/*.*>\" \"$<SHELL_PATH:${MAYA_PACKAGE_DIR}/maya2glTF/PBR/>\"\r\n    COMMAND xcopy /y /s /i \"$<SHELL_PATH:${PROJECT_SOURCE_DIR}/maya/prefs/*.*>\" \"$<SHELL_PATH:${MAYA_PACKAGE_DIR}/${MAYA_VERSION}/prefs/>\"  \r\n    COMMAND if exist \"$<SHELL_PATH:$<TARGET_PDB_FILE:maya2glTF>>\" (xcopy /y /c \"$<SHELL_PATH:$<TARGET_PDB_FILE:maya2glTF>>\" \"$<SHELL_PATH:${MAYA_PACKAGE_DIR}/${MAYA_VERSION}/plug-ins/>\")\r\n    COMMAND xcopy /y \"$<SHELL_PATH:${PROJECT_SOURCE_DIR}/maya/maya2glTFDeploy.bat>\" \"$<SHELL_PATH:${MAYA_OUTPUT_DIR}/>\"\r\n    COMMAND ${CMAKE_COMMAND} -E tar cfv ${CMAKE_BINARY_DIR}/maya2gltf_${ARCHIVE_VERSION}_maya_${MAYA_VERSION}.zip --format=zip \"${MAYA_OUTPUT_DIR}\"\r\n  )\r\nelseif(APPLE)\r\n  install (\r\n    TARGETS maya2glTF \r\n    DESTINATION \"/Users/Shared/Autodesk/maya/${MAYA_VERSION}/plug-ins/\"\r\n  )\r\n  \r\n  install (\r\n    FILES \"${CMAKE_CURRENT_BINARY_DIR}/maya2glTF_version.mel\" \r\n    DESTINATION \"/Users/Shared/Autodesk/maya/scripts\"\r\n  )\r\n  \r\n  install (\r\n    DIRECTORY \"${PROJECT_SOURCE_DIR}/maya/scripts/\" \r\n    DESTINATION \"/Users/Shared/Autodesk/maya/scripts\"\r\n    FILES_MATCHING PATTERN \"maya2glTF*.mel\"\r\n  )\r\n\r\n  install (\r\n    DIRECTORY \"${CMAKE_BINARY_DIR}/generated/\" \r\n    DESTINATION \"/Users/Shared/Autodesk/maya/scripts\"\r\n    FILES_MATCHING PATTERN \"maya2glTF*.mel\"\r\n  )\r\n\r\n  install (\r\n    DIRECTORY \"${PROJECT_SOURCE_DIR}/maya/renderData/\"\r\n    DESTINATION \"/Users/Shared/Autodesk/maya/maya2glTF/PBR\"\r\n  )\r\n\r\n  install (\r\n    DIRECTORY \"${PROJECT_SOURCE_DIR}/maya/prefs/\"\r\n    DESTINATION \"/Users/Shared/Autodesk/maya/${MAYA_VERSION}/prefs/\"\r\n  )\r\nelse(LINUX)\r\n  install (\r\n    TARGETS maya2glTF \r\n    DESTINATION \"/usr/autodesk/maya${MAYA_VERSION}/plug-ins\"\r\n  )\r\n  \r\n  install (\r\n    FILES \"${CMAKE_CURRENT_BINARY_DIR}/maya2glTF_version.mel\" \r\n    DESTINATION \"/usr/autodesk/maya${MAYA_VERSION}/scripts\"\r\n  )\r\n  \r\n  install (\r\n    DIRECTORY \"${PROJECT_SOURCE_DIR}/maya/scripts/\" \r\n    DESTINATION \"/usr/autodesk/maya${MAYA_VERSION}/scripts\"\r\n    FILES_MATCHING PATTERN \"maya2glTF*.mel\"\r\n  )\r\n\r\n  install (\r\n    DIRECTORY \"${CMAKE_BINARY_DIR}/generated/\" \r\n    DESTINATION \"/usr/autodesk/maya${MAYA_VERSION}/scripts\"\r\n    FILES_MATCHING PATTERN \"maya2glTF*.mel\"\r\n  )\r\n\r\n  install (\r\n    DIRECTORY \"${PROJECT_SOURCE_DIR}/maya/renderData/\"\r\n    DESTINATION \"/usr/autodesk/maya${MAYA_VERSION}/maya2glTF/PBR\"\r\n  )\r\n\r\n  install (\r\n    DIRECTORY \"${PROJECT_SOURCE_DIR}/maya/prefs\"\r\n    DESTINATION \"/usr/autodesk/maya${MAYA_VERSION}\"\r\n  )\r\n\r\nendif()\r\n\r\nMAYA_PLUGIN(${PROJECT_NAME})\r\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (C) 2017-2019 Wonder Media Group, (C)2020-2021 In Motion Media NV\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "Lys/glTF_IBL_settings.lsf",
    "content": "[Misc]\nLysVersion=\"1.0.3 - [EWTHDR+cVQynLtjXea6ddrQ3GNM=] - [Build: 20160814001] - EVALUTATION COPY - Expires: do jan 1 01:00:00 1970\"\nSettingsVersion=@Variant(\\0\\0\\0\\x87@@\\0\\0)\nsize=@Size(2560 1361)\nposition=@Point(-9 -9)\nmaximized=true\nExportPath=D:/AnimNowShare/Library/Scenes/EnvMapTests/export\nLoadPath=C:/dev/glTF/Maya2glTF/Lys/glTF_IBL_settings.lsf\nState=@ByteArray(\\0\\0\\0\\xff\\0\\0\\0\\x1\\xfd\\0\\0\\0\\0\\0\\0\\n\\0\\0\\0\\x5\\x1e\\0\\0\\0\\x4\\0\\0\\0\\x4\\0\\0\\0\\b\\0\\0\\0\\b\\xfc\\0\\0\\0\\0)\n\n[KTAutoSave]\ngeneral_group\\clear_sky_ratio_lock_checkbox=true\ngeneral_group\\clear_sky_width_spinner=2048\ngeneral_group\\clear_sky_height_spinner=1024\ngeneral_group\\general_file_name=PaperMill\ngeneral_group\\general_file_path=C:\\\\dev\\\\glTF\\\\Maya2glTF\\\\maya\\\\renderData\\\\images\norientation_group\\flip_z_checkbox=false\norientation_group\\export_group_flip_z_checkbox=false\norientation_group\\debug_cube_map_face_positions_checkbox=false\norientation_group\\export_cubemap_axis_dropdown=0\norientation_group\\import_cubemap_axis_dropdown=0\nrotation_group\\rotation_x_spinbox=0\nrotation_group\\rotation_z_spinbox=0\nrotation_group\\rotation_y_spinbox=90\nadjustments_group\\adjustments_ldr_check_box=false\nadjustments_group\\adjustments_hdr_check_box=false\nadjustments_group\\adjustments_hue_spin_box=0\nadjustments_group\\adjustments_exposure_spin_box=0\nadjustments_group\\adjustments_saturation_spin_box=0\nadjustments_group\\adjustments_contrast_spin_box=0\nadjustments_group\\adjustments_gamma_spin_box=1\nadjustments_group\\adjustments_reinhard_spin_box=1\nblur_group\\blur_specpower_checkbox_pri=true\nblur_group\\roughness_specpower_toggle_checkbox_pri=false\nblur_group\\blur_function_combobox_pri=2\nblur_group\\power_drop_drop_down_pri=2\nblur_group\\mip_offset_spinbox=2\nblur_group\\blur_specpower_spinbox=0.24249999999999999\nblur_group\\user_scale_spinbox=0.27000000000000002\nclear_sky_group\\disable_ground_checkbox=false\nclear_sky_group\\disable_sun_checkbox=false\nclear_sky_group\\zentih_spinbox=62\nclear_sky_group\\camera_altitude_spinbox=300\nclear_sky_group\\azimuth_angle_spinbox=180\nclear_sky_group\\luminance_spinbox=3000\nclear_sky_group\\sky_type_dropdown=0\nsuffix_group\\enable_prefix_check_box=false\nsuffix_group\\suffix_specular_map_input=_specular_env\nsuffix_group\\suffix_radiance_map_input=_skybox_env\nsuffix_group\\prefix_input=T_\nsuffix_group\\suffix_panorama_input=_panorama\nsuffix_group\\suffix_irradiance_map_input=_diffuse_env\nsuffix_group\\suffix_cube_map_input=\nsuffix_group\\suffix_sphere_map_input=_sphere\nsuffix_group\\suffix_irrad_sh_input=_sh_irrad\nsuffix_group\\suffix_panorama_dropdown=0\nsuffix_group\\suffix_irradiance_map_dropdown=0\nsuffix_group\\prefix_dropdown=0\nsuffix_group\\suffix_radiance_map_dropdown=0\nsuffix_group\\suffix_specular_map_dropdown=0\nsuffix_group\\suffix_sphere_map_dropdown=0\nsuffix_group\\suffix_cube_map_dropdown=0\nsuffix_group\\suffix_irrad_sh_dropdown=0\nobj_settings_group\\obj_settings_axis_dropdown=1\nmiscellaneous_group\\dithering_label=true\nmiscellaneous_group\\miscellaneous_brute_force_check_box=false\nmiscellaneous_group\\miscellaneous_legacy_dds_check_box=true\nmiscellaneous_group\\aa_sphere_check_box=true\nmiscellaneous_group\\dilate_check_box=false\nmiscellaneous_group\\miscellaneous_clipboard_alpha_check_box=false\nmiscellaneous_group\\dithering_dropdown=1\nexport_group\\export_sphere_map_file_format_dropdown_pri=4\nexport_group\\export_cube_map_file_format_dropdown_pri=4\nexport_group\\export_global_export_file_format_dropdown_pri=4\nexport_group\\export_panorama_file_format_dropdown_pri=4\nexport_group\\export_sphere_map_checkbox=false\nexport_group\\export_cube_map_checkbox=true\nexport_group\\export_panorama_checkbox=false\nexport_group\\export_irradiance_check_box=true\nexport_group\\export_radiance_check_box=true\nexport_group\\export_specular_checkbox=true\nexport_group\\export_irrad_sh_checkbox=false\nexport_group\\export_file_path=C:\\\\dev\\\\glTF\\\\Maya2glTF\\\\maya\\\\renderData\\\\images\nexport_group\\export_cube_map_bit_depth_dropdown_nodefault=3\nexport_group\\export_sphere_map_bit_depth_dropdown_nodefault=3\nexport_group\\export_panorama_bit_depth_dropdown_nodefault=3\nexport_group\\export_export_bit_depth_dropdown_nodefault=3\nexport_group\\export_irrad_sh_file_format_dropdown=0\nexport_group\\cubemap_orientation_dropdown=0\nexport_dimensions_group\\export_recommended_res_checkbox=true\nexport_dimensions_group\\export_size_pano_radiance_ratio_lock_checkbox=true\nexport_dimensions_group\\export_size_pano_irradiance_ratio_lock_checkbox=true\nexport_dimensions_group\\export_size_pano_specular_ratio_lock_checkbox=true\nexport_dimensions_group\\export_size_pano_radiance_auto_checkbox=true\nexport_dimensions_group\\export_size_pano_irrad_auto_checkbox=true\nexport_dimensions_group\\export_size_pano_specular_auto_checkbox=true\nexport_dimensions_group\\export_size_sphere_radiance_auto_checkbox=true\nexport_dimensions_group\\export_size_sphere_irrad_auto_checkbox=true\nexport_dimensions_group\\export_size_sphere_specular_auto_checkbox=true\nexport_dimensions_group\\export_size_cube_radiance_auto_checkbox=true\nexport_dimensions_group\\export_size_cube_irrad_auto_checkbox=true\nexport_dimensions_group\\export_size_cube_specular_auto_checkbox=true\nexport_dimensions_group\\export_size_pano_irradiance_height_spinbox=221\nexport_dimensions_group\\export_size_pano_irradiance_width_spinbox=442\nexport_dimensions_group\\export_size_pano_specular_width_spinbox=3200\nexport_dimensions_group\\export_size_pano_radiance_height_spinbox=1600\nexport_dimensions_group\\export_size_sphere_specular_size_spinbox=2553\nexport_dimensions_group\\export_size_sphere_irradiance_size_spinbox=353\nexport_dimensions_group\\export_size_pano_specular_height_spinbox=1600\nexport_dimensions_group\\export_size_pano_radiance_width_spinbox=3200\nexport_dimensions_group\\export_size_sphere_radiance_size_spinbox=2553\nexport_dimensions_group\\export_size_cube_radiance_per_face_spinbox=923\nexport_dimensions_group\\export_size_cube_irradiance_per_face_spinbox=128\nexport_dimensions_group\\export_size_cube_specular_per_face_spinbox=923\nexport_dimensions_group\\export_dimensions_resolution_constraints_dropdown=0\nbatch_processing_group\\batch_processing_include_subfolders_check_box=false\nbatch_processing_group\\batch_processing_source_folder_file_path=\nbatch_processing_group\\batch_processing_destination_folder_file_path=\npreview3d_color_options_group\\preview3d_color_copy_dropdown=0\npreview3d_color_options_group\\preview3d_diffuse_gradient_orientation_combo_box=0\npreview3d_color_options_group\\preview3d_specular_gradient_orientation_combo_box=1\npreview3d_color_options_group\\preview3d_diffuse_tint_button_1=4280163870\npreview3d_color_options_group\\preview3d_specular_tint_button_1=4280163870\npreview3d_color_options_group\\preview3d_specular_tint_button_2=4294967295\npreview3d_color_options_group\\preview3d_reflection_tint_button_1=4286223615\npreview3d_color_options_group\\preview3d_reflection_tint_button_2=4287954810\npreview3d_color_options_group\\preview3d_reflection_tint_button_3=4294933140\npreview3d_color_options_group\\preview3d_diffuse_tint_button_2=4294967295\npreview3d_postfx_group\\preview3d_exposure_spin_box=0\npreview3d_postfx_group\\preview3d_reinhard_spin_box=1\npreview3d_misc_options_group\\preview3d_use_bottom_mip_for_irradiance_checkbox=false\n\n[Actions]\nact_enable=false\nact_0\\type=1\nact_0\\enabled=false\nact_0\\wait=false\nact_0\\name=Open With Default Handler\nsaved_act_count=1\n\n[3DPreview]\nsize=@Size(1024 768)\nposition=@Point(699 291)\nmaximized=false\n"
  },
  {
    "path": "Maya2glTF.sln",
    "content": "﻿\nMicrosoft Visual Studio Solution File, Format Version 12.00\n# Visual Studio Version 17\nVisualStudioVersion = 17.5.002.0\nMinimumVisualStudioVersion = 10.0.40219.1\nProject(\"{2150E333-8FDC-42A3-9474-1A3956D46DE8}\") = \"tools\", \"tools\", \"{07193EC1-E4E7-4C00-B757-9F64F81371AA}\"\nEndProject\nProject(\"{9A19103F-16F7-4668-BE54-9A1E7A4F7556}\") = \"EncodeToHEVC\", \"tools\\EncodeToHEVC\\EncodeToHEVC.csproj\", \"{69E9C72B-6371-4C08-BB12-193AA7D96391}\"\nEndProject\nProject(\"{9A19103F-16F7-4668-BE54-9A1E7A4F7556}\") = \"ModelClipMerger\", \"tools\\ModelClipMerger\\ModelClipMerger.csproj\", \"{32C373E2-14CC-4A7A-8BAB-293785D33A0E}\"\nEndProject\nGlobal\n\tGlobalSection(SolutionConfigurationPlatforms) = preSolution\n\t\tDebug|Any CPU = Debug|Any CPU\n\t\tRelease|Any CPU = Release|Any CPU\n\tEndGlobalSection\n\tGlobalSection(ProjectConfigurationPlatforms) = postSolution\n\t\t{69E9C72B-6371-4C08-BB12-193AA7D96391}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\n\t\t{69E9C72B-6371-4C08-BB12-193AA7D96391}.Debug|Any CPU.Build.0 = Debug|Any CPU\n\t\t{69E9C72B-6371-4C08-BB12-193AA7D96391}.Release|Any CPU.ActiveCfg = Release|Any CPU\n\t\t{69E9C72B-6371-4C08-BB12-193AA7D96391}.Release|Any CPU.Build.0 = Release|Any CPU\n\t\t{32C373E2-14CC-4A7A-8BAB-293785D33A0E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\n\t\t{32C373E2-14CC-4A7A-8BAB-293785D33A0E}.Debug|Any CPU.Build.0 = Debug|Any CPU\n\t\t{32C373E2-14CC-4A7A-8BAB-293785D33A0E}.Release|Any CPU.ActiveCfg = Release|Any CPU\n\t\t{32C373E2-14CC-4A7A-8BAB-293785D33A0E}.Release|Any CPU.Build.0 = Release|Any CPU\n\tEndGlobalSection\n\tGlobalSection(SolutionProperties) = preSolution\n\t\tHideSolutionNode = FALSE\n\tEndGlobalSection\n\tGlobalSection(NestedProjects) = preSolution\n\t\t{69E9C72B-6371-4C08-BB12-193AA7D96391} = {07193EC1-E4E7-4C00-B757-9F64F81371AA}\n\t\t{32C373E2-14CC-4A7A-8BAB-293785D33A0E} = {07193EC1-E4E7-4C00-B757-9F64F81371AA}\n\tEndGlobalSection\n\tGlobalSection(ExtensibilityGlobals) = postSolution\n\t\tSolutionGuid = {8F418B9D-ADBD-41C1-B067-6CB47F3C3FF5}\n\tEndGlobalSection\nEndGlobal\n"
  },
  {
    "path": "PreLoad.cmake",
    "content": "if(WIN32)\n  set(CMAKE_GENERATOR_PLATFORM \"x64\" CACHE INTERNAL \"\" FORCE)\nendif()"
  },
  {
    "path": "Readme.md",
    "content": "﻿# Maya to glTF exporter\r\n\r\n# This repository has moved to [here](https://github.com/JunkYardRobotBoy/Maya2glTF_Update)\r\n"
  },
  {
    "path": "_config.yml",
    "content": "theme: jekyll-theme-midnight"
  },
  {
    "path": "linux_create_project.sh",
    "content": "#!/bin/bash\n\nif [ $# -eq 0 ] \n    then \n        echo \"Usage: ./linux_create_project.sh MAYA_VERSION\" \n        echo \"Example: ./linux_create_project.sh 2020\"\n        exit 1\nfi\n\ncmake3 -B \"build\" -G \"Unix Makefiles\" -D MAYA_VERSION:string=$1\n"
  },
  {
    "path": "maya/baking/cube-flat.assbin",
    "content": "version https://git-lfs.github.com/spec/v1\noid sha256:16f39e99db5a1af465fbc5f9d7b833a095d590cf9955ca4c6da57ce1df1b5dc1\nsize 2082\n"
  },
  {
    "path": "maya/maya2glTFDeploy.bat",
    "content": "@echo off\nsetlocal\nFOR /F \"tokens=3 delims= \" %%G IN ('REG QUERY \"HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders\" /v \"Personal\"') DO (SET USER_DOCUMENTS=%%G)\necho Copying \"package\" to \"%USER_DOCUMENTS%\\maya\"...\nrobocopy \"package\" \"%USER_DOCUMENTS%\\maya\" /E\necho Done. Press ENTER to exit.\nendlocal\npause\n"
  },
  {
    "path": "maya/maya2glTF_version.mel.in",
    "content": "global proc string maya2glTF_version() {\n    return \"@GIT_TAG@ @GIT_SHORT_HASH@\";\n}"
  },
  {
    "path": "maya/models/helmet.obj",
    "content": "# This file uses centimeters as units for non-parametric coordinates.\n\ng default\nv 0.611995 -0.483090 0.030941\nv 0.573584 -0.486858 -0.063534\nv 0.579505 -0.521758 -0.056274\nv 0.607603 -0.444814 0.008062\nv 0.567027 -0.471243 -0.065672\nv 0.598568 -0.431817 0.002489\nv 0.585195 -0.422137 0.001334\nv 0.554218 -0.460764 -0.062870\nv 0.536020 -0.455731 -0.052186\nv 0.567400 -0.416373 0.005818\nv 0.547393 -0.412566 0.013119\nv 0.515128 -0.453422 -0.037561\nv 0.631983 -0.436573 0.061292\nv 0.632071 -0.434114 0.078920\nv 0.619794 -0.465170 0.057004\nv 0.643507 -0.404875 0.098968\nv 0.646445 -0.402480 0.085004\nv 0.631159 -0.426390 0.098222\nv 0.624622 -0.447250 0.083068\nv 0.668050 -0.331353 0.145013\nv 0.671422 -0.326672 0.133880\nv 0.661911 -0.333922 0.153391\nv 0.624590 -0.416010 0.036486\nv 0.639293 -0.386114 0.059440\nv 0.614841 -0.405211 0.030115\nv 0.628918 -0.377386 0.052668\nv 0.600450 -0.396826 0.027776\nv 0.613544 -0.370208 0.049615\nv 0.581215 -0.391574 0.029345\nv 0.592756 -0.365621 0.049185\nv 0.559558 -0.387890 0.032869\nv 0.569260 -0.362330 0.050068\nv 0.663741 -0.311184 0.108426\nv 0.679261 -0.290027 0.153432\nv 0.672437 -0.274843 0.127588\nv 0.701018 -0.157209 0.211149\nv 0.695399 -0.143947 0.183206\nv 0.661805 -0.267401 0.119199\nv 0.684813 -0.139190 0.173501\nv 0.669538 -0.136373 0.167886\nv 0.646268 -0.261548 0.114724\nv 0.625697 -0.258295 0.114015\nv 0.649770 -0.135761 0.166653\nv 0.627757 -0.136250 0.167612\nv 0.602608 -0.256343 0.115190\nv 0.710518 -0.035130 0.259966\nv 0.703187 -0.042585 0.272170\nv 0.694248 -0.163143 0.223652\nv 0.684136 -0.167443 0.232775\nv 0.692307 -0.048130 0.281124\nv 0.706080 -0.018796 0.233419\nv 0.709074 0.057310 0.263812\nv 0.712724 0.037703 0.288786\nv 0.695783 -0.013249 0.224179\nv 0.698909 0.064047 0.255166\nv 0.684111 0.067710 0.250319\nv 0.680894 -0.010254 0.218903\nv 0.661956 -0.010062 0.218015\nv 0.665434 0.067955 0.249731\nv 0.644819 0.066489 0.251274\nv 0.640995 -0.011270 0.219320\nv 0.680946 -0.050883 0.285140\nv 0.694256 0.022465 0.308994\nv 0.682927 0.019114 0.312609\nv 0.671401 0.017330 0.313762\nv 0.674028 -0.169367 0.237075\nv 0.661018 -0.299020 0.177587\nv 0.647961 -0.334801 0.161707\nv 0.655103 -0.334787 0.158393\nv 0.668398 -0.297818 0.172941\nv 0.637451 -0.394089 0.121771\nv 0.705191 0.028953 0.300452\nv 0.675220 -0.294917 0.164644\nv 0.570500 -0.637735 -0.017810\nv 0.592921 -0.633943 -0.024435\nv 0.612490 -0.626689 -0.031373\nv 0.565720 -0.653495 -0.133506\nv 0.626357 -0.612510 -0.038939\nv 0.632846 -0.593568 -0.045965\nv 0.583214 -0.595104 -0.146187\nv 0.630283 -0.572022 -0.051282\nv 0.619581 -0.551094 -0.054503\nv 0.574946 -0.572732 -0.143644\nv 0.544973 -0.538627 -0.132251\nv 0.597421 -0.595137 0.075001\nv 0.621393 -0.591619 0.069138\nv 0.642270 -0.585190 0.062560\nv 0.656956 -0.572941 0.054549\nv 0.663742 -0.556020 0.046159\nv 0.660921 -0.535573 0.038443\nv 0.650007 -0.515176 0.032346\nv 0.605539 -0.576353 0.111729\nv 0.629737 -0.572833 0.105850\nv 0.610862 -0.558340 0.145941\nv 0.635060 -0.554712 0.140003\nv 0.614073 -0.538750 0.183149\nv 0.638272 -0.535005 0.177149\nv 0.639009 -0.494624 0.249790\nv 0.614807 -0.498801 0.256023\nv 0.656136 -0.547956 0.133016\nv 0.659352 -0.527942 0.169904\nv 0.660090 -0.486915 0.242014\nv 0.674191 -0.514244 0.160168\nv 0.674931 -0.472139 0.231153\nv 0.670964 -0.534943 0.123924\nv 0.677448 -0.517463 0.114353\nv 0.679626 -0.495755 0.149776\nv 0.679386 -0.452796 0.219410\nv 0.672493 -0.474319 0.140562\nv 0.669309 -0.431381 0.208988\nv 0.673488 -0.497307 0.105924\nv 0.661729 -0.478055 0.097913\nv 0.659078 -0.456137 0.130267\nv 0.665627 -0.553975 0.090599\nv 0.650809 -0.566358 0.099098\nv 0.672464 -0.537077 0.081653\nv 0.669590 -0.517060 0.073560\nv 0.658535 -0.497088 0.066699\nv 0.632269 -0.443407 0.101328\nv 0.475970 -0.676778 -0.184604\nv 0.430130 -0.677118 -0.298991\nv 0.411753 -0.679547 -0.279560\nv 0.495290 -0.674281 -0.202611\nv 0.512402 -0.667664 -0.219047\nv 0.446611 -0.670322 -0.316499\nv 0.459300 -0.654792 -0.330164\nv 0.525099 -0.652806 -0.232344\nv 0.531782 -0.632090 -0.240727\nv 0.466555 -0.633382 -0.338198\nv 0.466729 -0.608949 -0.338815\nv 0.530852 -0.607896 -0.242421\nv 0.524497 -0.584709 -0.238602\nv 0.461851 -0.587396 -0.335195\nv 0.444528 -0.566252 -0.325318\nv 0.503686 -0.552070 -0.220122\nv 0.443451 -0.545636 -0.321127\nv 0.498025 -0.529286 -0.230766\nv 0.439372 -0.534459 -0.313218\nv 0.491268 -0.517249 -0.227918\nv 0.479988 -0.508411 -0.219221\nv 0.431725 -0.526352 -0.301673\nv 0.442024 -0.633096 -0.370998\nv 0.434813 -0.654640 -0.362895\nv 0.422332 -0.670307 -0.349006\nv 0.406205 -0.677146 -0.331142\nv 0.388254 -0.679571 -0.311290\nv 0.387691 -0.676827 -0.354144\nv 0.370163 -0.679251 -0.333826\nv 0.403434 -0.669990 -0.372448\nv 0.415605 -0.654326 -0.386727\nv 0.422611 -0.632783 -0.395133\nv 0.422861 -0.608310 -0.395820\nv 0.442344 -0.608621 -0.371503\nv 0.420557 -0.592719 -0.393360\nv 0.436974 -0.588081 -0.370534\nv 0.415014 -0.573997 -0.380223\nv 0.422252 -0.551411 -0.355982\nv 0.408438 -0.554118 -0.375099\nv 0.386474 -0.581722 -0.427431\nv 0.419330 -0.540327 -0.344078\nv 0.402900 -0.546078 -0.369572\nv 0.394554 -0.537881 -0.355999\nv 0.411902 -0.532633 -0.331385\nv 0.376509 -0.560793 -0.414308\nv 0.364793 -0.548048 -0.399457\nv 0.353293 -0.545465 -0.384859\nv 0.383193 -0.536659 -0.341350\nv 0.370325 -0.538925 -0.326163\nv 0.341900 -0.547963 -0.370389\nv 0.400696 -0.531551 -0.316941\nv 0.419775 -0.525080 -0.287506\nv 0.462802 -0.506485 -0.205365\nv 0.531222 -0.502480 -0.149050\nv 0.537527 -0.513576 -0.150526\nv 0.539568 -0.540727 -0.143967\nv 0.569018 -0.574703 -0.155051\nv 0.577245 -0.597076 -0.157566\nv 0.578889 -0.620240 -0.156915\nv 0.346010 -0.665890 -0.399742\nv 0.359372 -0.660327 -0.417472\nv 0.374418 -0.629055 -0.438993\nv 0.369065 -0.588196 -0.434868\nv 0.361658 -0.588157 -0.439955\nv 0.352155 -0.571466 -0.428723\nv 0.359463 -0.571517 -0.423618\nv 0.348356 -0.560981 -0.409746\nv 0.341125 -0.560882 -0.414833\nv 0.331436 -0.559086 -0.401622\nv 0.338689 -0.559224 -0.396611\nv 0.329742 -0.561858 -0.383844\nv 0.542777 -0.511088 -0.138816\nv 0.536562 -0.499835 -0.137435\nv 0.525252 -0.492252 -0.130945\nv 0.487391 -0.490408 -0.101742\nv 0.502426 -0.492908 -0.129467\nv 0.442664 -0.508015 -0.188930\nv 0.405673 -0.527227 -0.272029\nv 0.387600 -0.533775 -0.301622\nv 0.315376 -0.681498 -0.394103\nv 0.301251 -0.677622 -0.403106\nv 0.331948 -0.678867 -0.416473\nv 0.336893 -0.675160 -0.411097\nv 0.346791 -0.671607 -0.436861\nv 0.317095 -0.675200 -0.425079\nv 0.331216 -0.668366 -0.445024\nv 0.351325 -0.668385 -0.430768\nv 0.352197 -0.660055 -0.422498\nv 0.361843 -0.646957 -0.436042\nv 0.362247 -0.652848 -0.446389\nv 0.366990 -0.628861 -0.444024\nv 0.368286 -0.631469 -0.455924\nv 0.366766 -0.608275 -0.445192\nv 0.368069 -0.607168 -0.457339\nv 0.362128 -0.583446 -0.451073\nv 0.350996 -0.563803 -0.437566\nv 0.338117 -0.551214 -0.421008\nv 0.326935 -0.548653 -0.405591\nv 0.322417 -0.561684 -0.388751\nv 0.316601 -0.551107 -0.390745\nv 0.310105 -0.546856 -0.394397\nv 0.320960 -0.544483 -0.409999\nv 0.306519 -0.547762 -0.419761\nv 0.332722 -0.547363 -0.426264\nv 0.346300 -0.560748 -0.443853\nv 0.330477 -0.563042 -0.452047\nv 0.358045 -0.581548 -0.458245\nv 0.364306 -0.606670 -0.464918\nv 0.347445 -0.606692 -0.472107\nv 0.364533 -0.632417 -0.463417\nv 0.358173 -0.655093 -0.453287\nv 0.366861 -0.669486 -0.418083\nv 0.352257 -0.676326 -0.398441\nv 0.330857 -0.667675 -0.379911\nv 0.369155 -0.647210 -0.430997\nv 0.384123 -0.632276 -0.443243\nv 0.383938 -0.607803 -0.444633\nv 0.374219 -0.608380 -0.440138\nv 0.377938 -0.583923 -0.438324\nv 0.366663 -0.564156 -0.424765\nv 0.342366 -0.548880 -0.392691\nv 0.331981 -0.551315 -0.377801\nv 0.342910 -0.678861 -0.367894\nv 0.359715 -0.676439 -0.389014\nv 0.335900 -0.678753 -0.376789\nv 0.374789 -0.669603 -0.408088\nv 0.377957 -0.653820 -0.433705\nv 0.386402 -0.653943 -0.423067\nv 0.392980 -0.632400 -0.432101\nv 0.392949 -0.607920 -0.433339\nv 0.353633 -0.551482 -0.408155\nv 0.249017 -0.673519 -0.469694\nv 0.234405 -0.675927 -0.446949\nv 0.261980 -0.666697 -0.490366\nv 0.271641 -0.651047 -0.506889\nv 0.341890 -0.652704 -0.460912\nv 0.347754 -0.631164 -0.470640\nv 0.268964 -0.624286 -0.527101\nv 0.268826 -0.605004 -0.523473\nv 0.341505 -0.582811 -0.465760\nv 0.263049 -0.581121 -0.517024\nv 0.252695 -0.561344 -0.502888\nv 0.317701 -0.550365 -0.435277\nv 0.240617 -0.548660 -0.485680\nv 0.229667 -0.546055 -0.470017\nv 0.296134 -0.550197 -0.404870\nv 0.219283 -0.548490 -0.455127\nv 0.244616 -0.649650 -0.524931\nv 0.252493 -0.629587 -0.539465\nv 0.235100 -0.665298 -0.508317\nv 0.222303 -0.672119 -0.487542\nv 0.207866 -0.674525 -0.464686\nv 0.338923 -0.665652 -0.404642\nv 0.320707 -0.677556 -0.389401\nv 0.323836 -0.667498 -0.384629\nv 0.538835 -0.655463 -0.134618\nv 0.544858 -0.653366 -0.123375\nv 0.555679 -0.649554 -0.143382\nv 0.567301 -0.636404 -0.149737\nv 0.572967 -0.634756 -0.138100\nv 0.578654 -0.616753 -0.141706\nv 0.577239 -0.596009 -0.141999\nv 0.569349 -0.575295 -0.139410\nv 0.533439 -0.542730 -0.139820\nv 0.538945 -0.540876 -0.128114\nv 0.537134 -0.513488 -0.134864\nv 0.532650 -0.504054 -0.133993\nv 0.523482 -0.498433 -0.128213\nv 0.517837 -0.501123 -0.139630\nv 0.488885 -0.497738 -0.100597\nv 0.561321 -0.647725 -0.131787\nv 0.547984 -0.660163 -0.123974\nv 0.525986 -0.655344 -0.113915\nv 0.527770 -0.662720 -0.113423\nv 0.578496 -0.638604 -0.140998\nv 0.584824 -0.618228 -0.145532\nv 0.507845 -0.489998 -0.117966\nv 0.507809 -0.497031 -0.116011\nv 0.521171 -0.665127 -0.124163\nv 0.519381 -0.657752 -0.124651\nv 0.541719 -0.662443 -0.135003\nv 0.559706 -0.655661 -0.144761\nv 0.572569 -0.640681 -0.152356\nv 0.572799 -0.618346 -0.153238\nv 0.571269 -0.597710 -0.153436\nv 0.563389 -0.577134 -0.150826\nv 0.531858 -0.515986 -0.146555\nv 0.527182 -0.506670 -0.145537\nv 0.519813 -0.495035 -0.142465\nv 0.502260 -0.499872 -0.127449\nv 0.483568 -0.500769 -0.112132\nv 0.482050 -0.493440 -0.113261\nv 0.604730 -0.424797 0.375436\nv 0.634151 -0.451310 0.323869\nv 0.609947 -0.456162 0.330466\nv 0.628935 -0.419672 0.368692\nv 0.637084 -0.473856 0.285310\nv 0.612882 -0.478357 0.291716\nv 0.658163 -0.465804 0.277259\nv 0.655228 -0.442886 0.315521\nv 0.650011 -0.410921 0.360090\nv 0.670047 -0.427315 0.303667\nv 0.664828 -0.394918 0.347773\nv 0.672994 -0.450647 0.265922\nv 0.677834 -0.431585 0.253639\nv 0.675214 -0.408364 0.290633\nv 0.670368 -0.375908 0.334038\nv 0.667330 -0.389798 0.278745\nv 0.663614 -0.358136 0.321184\nv 0.668943 -0.411819 0.242753\nv 0.653926 -0.393220 0.231800\nv 0.652922 -0.371425 0.267430\nv 0.656073 -0.346232 0.401626\nv 0.641242 -0.362669 0.414259\nv 0.620162 -0.371626 0.422999\nv 0.595955 -0.376842 0.429792\nv 0.632537 -0.313379 0.465110\nv 0.611450 -0.322461 0.473917\nv 0.587244 -0.327677 0.480710\nv 0.647386 -0.296567 0.452273\nv 0.653911 -0.277060 0.437958\nv 0.662141 -0.326998 0.387501\nv 0.656938 -0.309650 0.374287\nv 0.646098 -0.293246 0.361526\nv 0.650028 -0.259892 0.424714\nv 0.603234 -0.259557 0.535101\nv 0.624327 -0.250327 0.526222\nv 0.579028 -0.264773 0.541894\nv 0.639195 -0.233071 0.513172\nv 0.645885 -0.213187 0.498694\nv 0.642447 -0.196076 0.485533\nv 0.633943 -0.180352 0.473030\nv 0.653018 -0.303238 0.100535\nv 0.637420 -0.296778 0.096469\nv 0.616604 -0.292944 0.095757\nv 0.593178 -0.290423 0.096723\nv 0.651918 -0.349630 0.303059\nv 0.640278 -0.236862 0.419994\nv 0.659511 -0.333814 0.256441\nv 0.660427 -0.331270 0.238101\nv 0.677776 -0.069816 0.415221\nv 0.654506 -0.353644 0.200366\nv 0.664781 -0.310175 0.214945\nv 0.653245 -0.311590 0.175766\nv 0.667921 -0.179885 0.262805\nv 0.663931 -0.170187 0.238950\nv 0.670178 -0.066248 0.312264\nv 0.669697 -0.046399 0.289085\nv 0.649963 -0.371867 0.180467\nv 0.634860 -0.418748 0.111549\nv 0.636001 -0.407884 0.111687\nv 0.649234 -0.422581 0.168914\nv 0.651965 -0.408932 0.199227\nv 0.678289 0.016095 0.364134\nv 0.678161 -0.057648 0.408794\nv -0.574541 -0.521758 -0.056274\nv -0.602639 -0.444814 0.008062\nv -0.607031 -0.483090 0.030941\nv -0.568620 -0.486858 -0.063534\nv -0.562063 -0.471243 -0.065672\nv -0.593604 -0.431817 0.002489\nv -0.580231 -0.422137 0.001334\nv -0.549254 -0.460764 -0.062870\nv -0.531056 -0.455731 -0.052186\nv -0.562436 -0.416373 0.005818\nv -0.510164 -0.453422 -0.037561\nv -0.542429 -0.412566 0.013119\nv -0.627019 -0.436573 0.061292\nv -0.627107 -0.434114 0.078920\nv -0.614830 -0.465170 0.057004\nv -0.638543 -0.404875 0.098968\nv -0.641481 -0.402480 0.085004\nv -0.631037 -0.407884 0.111687\nv -0.626195 -0.426390 0.098223\nv -0.663086 -0.331353 0.145013\nv -0.666458 -0.326672 0.133880\nv -0.656947 -0.333922 0.153391\nv -0.619626 -0.416010 0.036486\nv -0.634329 -0.386114 0.059440\nv -0.609877 -0.405211 0.030115\nv -0.623954 -0.377386 0.052668\nv -0.595486 -0.396826 0.027776\nv -0.608580 -0.370208 0.049615\nv -0.576251 -0.391574 0.029345\nv -0.587792 -0.365621 0.049185\nv -0.554594 -0.387890 0.032869\nv -0.564296 -0.362330 0.050068\nv -0.658777 -0.311184 0.108426\nv -0.674297 -0.290027 0.153432\nv -0.667473 -0.274843 0.127588\nv -0.696054 -0.157209 0.211150\nv -0.690435 -0.143947 0.183206\nv -0.656841 -0.267401 0.119199\nv -0.679849 -0.139190 0.173501\nv -0.664574 -0.136373 0.167886\nv -0.641304 -0.261548 0.114724\nv -0.620733 -0.258295 0.114015\nv -0.644806 -0.135761 0.166654\nv -0.597644 -0.256343 0.115190\nv -0.622793 -0.136250 0.167612\nv -0.705554 -0.035130 0.259966\nv -0.698223 -0.042586 0.272171\nv -0.689284 -0.163143 0.223652\nv -0.679172 -0.167443 0.232776\nv -0.687343 -0.048131 0.281124\nv -0.701116 -0.018796 0.233419\nv -0.704110 0.057309 0.263812\nv -0.707760 0.037702 0.288786\nv -0.690819 -0.013249 0.224180\nv -0.693945 0.064047 0.255166\nv -0.679147 0.067710 0.250319\nv -0.675930 -0.010255 0.218903\nv -0.656992 -0.010062 0.218015\nv -0.660470 0.067954 0.249731\nv -0.636031 -0.011271 0.219320\nv -0.639855 0.066489 0.251274\nv -0.675982 -0.050884 0.285140\nv -0.689292 0.022465 0.308994\nv -0.677963 0.019113 0.312609\nv -0.664733 -0.046400 0.289085\nv -0.669064 -0.169367 0.237075\nv -0.656054 -0.299020 0.177588\nv -0.648281 -0.311590 0.175766\nv -0.642997 -0.334801 0.161707\nv -0.650139 -0.334787 0.158393\nv -0.663434 -0.297818 0.172941\nv -0.700227 0.028952 0.300452\nv -0.670256 -0.294917 0.164644\nv -0.565536 -0.637735 -0.017810\nv -0.522806 -0.662720 -0.113423\nv -0.587957 -0.633943 -0.024435\nv -0.607526 -0.626689 -0.031373\nv -0.621393 -0.612510 -0.038939\nv -0.627882 -0.593568 -0.045965\nv -0.579860 -0.618228 -0.145532\nv -0.625319 -0.572022 -0.051282\nv -0.614617 -0.551094 -0.054503\nv -0.569982 -0.572732 -0.143644\nv -0.540009 -0.538627 -0.132251\nv -0.592457 -0.595137 0.075001\nv -0.616429 -0.591619 0.069138\nv -0.637306 -0.585190 0.062560\nv -0.651992 -0.572941 0.054549\nv -0.658778 -0.556020 0.046159\nv -0.655957 -0.535573 0.038443\nv -0.645043 -0.515176 0.032346\nv -0.600575 -0.576353 0.111729\nv -0.624773 -0.572833 0.105850\nv -0.605898 -0.558340 0.145941\nv -0.630096 -0.554712 0.140004\nv -0.609109 -0.538750 0.183150\nv -0.633308 -0.535005 0.177149\nv -0.609843 -0.498801 0.256023\nv -0.634045 -0.494624 0.249790\nv -0.651172 -0.547956 0.133016\nv -0.654388 -0.527942 0.169904\nv -0.655126 -0.486915 0.242014\nv -0.669227 -0.514244 0.160168\nv -0.669967 -0.472139 0.231153\nv -0.666000 -0.534943 0.123924\nv -0.672484 -0.517463 0.114353\nv -0.674662 -0.495755 0.149777\nv -0.674422 -0.452796 0.219410\nv -0.667529 -0.474319 0.140563\nv -0.664345 -0.431381 0.208988\nv -0.668524 -0.497307 0.105924\nv -0.656765 -0.478055 0.097913\nv -0.654114 -0.456137 0.130267\nv -0.647001 -0.408932 0.199227\nv -0.660663 -0.553975 0.090599\nv -0.667500 -0.537077 0.081653\nv -0.645845 -0.566358 0.099098\nv -0.664626 -0.517060 0.073560\nv -0.653571 -0.497088 0.066699\nv -0.627305 -0.443407 0.101328\nv -0.425166 -0.677118 -0.298991\nv -0.471006 -0.676778 -0.184604\nv -0.406789 -0.679547 -0.279560\nv -0.490326 -0.674281 -0.202611\nv -0.507438 -0.667664 -0.219047\nv -0.441647 -0.670322 -0.316499\nv -0.454336 -0.654792 -0.330164\nv -0.520135 -0.652806 -0.232344\nv -0.526818 -0.632090 -0.240727\nv -0.461591 -0.633382 -0.338198\nv -0.461765 -0.608949 -0.338815\nv -0.525888 -0.607896 -0.242421\nv -0.519533 -0.584709 -0.238602\nv -0.456887 -0.587396 -0.335195\nv -0.439564 -0.566252 -0.325318\nv -0.498722 -0.552070 -0.220122\nv -0.438487 -0.545636 -0.321127\nv -0.493061 -0.529286 -0.230766\nv -0.434408 -0.534459 -0.313218\nv -0.486304 -0.517249 -0.227918\nv -0.475024 -0.508411 -0.219221\nv -0.426761 -0.526352 -0.301673\nv -0.437060 -0.633096 -0.370998\nv -0.437380 -0.608621 -0.371503\nv -0.417898 -0.608310 -0.395820\nv -0.417647 -0.632783 -0.395133\nv -0.429849 -0.654640 -0.362895\nv -0.410641 -0.654326 -0.386727\nv -0.417368 -0.670307 -0.349006\nv -0.401241 -0.677146 -0.331142\nv -0.383290 -0.679571 -0.311290\nv -0.382728 -0.676827 -0.354144\nv -0.365199 -0.679251 -0.333826\nv -0.398470 -0.669990 -0.372448\nv -0.415594 -0.592719 -0.393360\nv -0.432010 -0.588081 -0.370534\nv -0.381510 -0.581722 -0.427431\nv -0.410050 -0.573997 -0.380223\nv -0.403474 -0.554118 -0.375099\nv -0.417288 -0.551411 -0.355982\nv -0.414366 -0.540327 -0.344078\nv -0.397936 -0.546078 -0.369572\nv -0.389590 -0.537881 -0.355999\nv -0.406939 -0.532633 -0.331385\nv -0.371545 -0.560793 -0.414308\nv -0.359829 -0.548048 -0.399457\nv -0.348329 -0.545465 -0.384859\nv -0.378229 -0.536659 -0.341350\nv -0.336936 -0.547963 -0.370389\nv -0.365361 -0.538925 -0.326163\nv -0.395732 -0.531551 -0.316941\nv -0.414811 -0.525080 -0.287506\nv -0.457839 -0.506485 -0.205365\nv -0.526258 -0.502480 -0.149050\nv -0.572281 -0.597076 -0.157566\nv -0.567605 -0.640681 -0.152356\nv -0.516207 -0.665127 -0.124163\nv -0.318872 -0.667498 -0.384629\nv -0.354408 -0.660327 -0.417472\nv -0.347233 -0.660055 -0.422498\nv -0.356879 -0.646957 -0.436042\nv -0.369454 -0.629055 -0.438993\nv -0.362026 -0.628861 -0.444024\nv -0.361802 -0.608275 -0.445192\nv -0.369256 -0.608380 -0.440138\nv -0.364101 -0.588196 -0.434868\nv -0.356694 -0.588157 -0.439955\nv -0.347192 -0.571466 -0.428723\nv -0.336161 -0.560882 -0.414833\nv -0.333725 -0.559224 -0.396611\nv -0.324778 -0.561858 -0.383844\nv -0.317453 -0.561684 -0.388751\nv -0.537813 -0.511088 -0.138816\nv -0.531598 -0.499835 -0.137435\nv -0.502881 -0.489998 -0.117966\nv -0.497462 -0.492908 -0.129467\nv -0.437700 -0.508015 -0.188930\nv -0.400709 -0.527227 -0.272029\nv -0.382636 -0.533775 -0.301622\nv -0.310412 -0.681498 -0.394103\nv -0.326984 -0.678867 -0.416473\nv -0.315744 -0.677556 -0.389401\nv -0.331929 -0.675160 -0.411097\nv -0.333959 -0.665652 -0.404642\nv -0.346361 -0.668385 -0.430768\nv -0.357283 -0.652848 -0.446389\nv -0.363322 -0.631469 -0.455924\nv -0.363105 -0.607168 -0.457339\nv -0.357164 -0.583446 -0.451073\nv -0.346032 -0.563803 -0.437566\nv -0.333153 -0.551214 -0.421008\nv -0.326472 -0.559086 -0.401622\nv -0.321971 -0.548653 -0.405591\nv -0.311637 -0.551107 -0.390745\nv -0.305141 -0.546856 -0.394397\nv -0.315996 -0.544483 -0.409999\nv -0.291170 -0.550197 -0.404870\nv -0.327758 -0.547363 -0.426264\nv -0.312737 -0.550365 -0.435277\nv -0.341336 -0.560748 -0.443853\nv -0.325513 -0.563042 -0.452047\nv -0.353081 -0.581548 -0.458245\nv -0.336541 -0.582811 -0.465760\nv -0.359342 -0.606670 -0.464918\nv -0.359569 -0.632417 -0.463417\nv -0.353209 -0.655093 -0.453287\nv -0.336926 -0.652704 -0.460912\nv -0.341827 -0.671607 -0.436861\nv -0.341046 -0.665890 -0.399742\nv -0.347293 -0.676326 -0.398441\nv -0.325893 -0.667675 -0.379911\nv -0.330936 -0.678753 -0.376789\nv -0.364191 -0.647210 -0.430997\nv -0.372974 -0.583923 -0.438324\nv -0.361700 -0.564156 -0.424765\nv -0.354499 -0.571517 -0.423618\nv -0.348669 -0.551482 -0.408155\nv -0.343392 -0.560981 -0.409746\nv -0.337402 -0.548880 -0.392691\nv -0.337946 -0.678861 -0.367894\nv -0.354751 -0.676439 -0.389014\nv -0.369825 -0.669603 -0.408088\nv -0.361897 -0.669486 -0.418083\nv -0.372993 -0.653820 -0.433705\nv -0.381438 -0.653943 -0.423067\nv -0.388016 -0.632400 -0.432101\nv -0.379159 -0.632276 -0.443243\nv -0.378974 -0.607803 -0.444633\nv -0.387985 -0.607920 -0.433339\nv -0.327018 -0.551315 -0.377801\nv -0.244053 -0.673519 -0.469694\nv -0.296287 -0.677622 -0.403106\nv -0.229441 -0.675927 -0.446949\nv -0.312131 -0.675200 -0.425079\nv -0.326252 -0.668366 -0.445024\nv -0.257016 -0.666697 -0.490366\nv -0.266677 -0.651047 -0.506889\nv -0.342790 -0.631164 -0.470640\nv -0.264000 -0.624286 -0.527101\nv -0.263862 -0.605004 -0.523473\nv -0.342481 -0.606692 -0.472107\nv -0.258085 -0.581121 -0.517024\nv -0.247731 -0.561344 -0.502888\nv -0.235653 -0.548660 -0.485680\nv -0.224703 -0.546055 -0.470017\nv -0.301555 -0.547762 -0.419761\nv -0.214319 -0.548490 -0.455127\nv -0.239653 -0.649650 -0.524931\nv -0.247529 -0.629587 -0.539465\nv -0.230136 -0.665298 -0.508317\nv -0.217339 -0.672119 -0.487542\nv -0.202902 -0.674525 -0.464686\nv -0.521022 -0.655344 -0.113915\nv -0.514417 -0.657752 -0.124651\nv -0.568003 -0.634756 -0.138100\nv -0.566305 -0.597710 -0.153436\nv -0.558425 -0.577134 -0.150826\nv -0.526894 -0.515986 -0.146555\nv -0.502845 -0.497031 -0.116011\nv -0.478604 -0.500769 -0.112132\nv -0.539894 -0.653366 -0.123375\nv -0.560756 -0.653495 -0.133506\nv -0.543020 -0.660163 -0.123974\nv -0.556357 -0.647725 -0.131787\nv -0.573532 -0.638604 -0.140998\nv -0.573690 -0.616753 -0.141706\nv -0.578250 -0.595104 -0.146187\nv -0.572275 -0.596009 -0.141999\nv -0.564385 -0.575295 -0.139410\nv -0.533981 -0.540876 -0.128114\nv -0.532170 -0.513488 -0.134864\nv -0.527686 -0.504054 -0.133993\nv -0.520288 -0.492252 -0.130945\nv -0.518518 -0.498433 -0.128213\nv -0.482427 -0.490408 -0.101742\nv -0.483921 -0.497738 -0.100597\nv -0.533871 -0.655463 -0.134618\nv -0.536755 -0.662443 -0.135003\nv -0.550715 -0.649554 -0.143382\nv -0.554742 -0.655661 -0.144761\nv -0.562337 -0.636404 -0.149737\nv -0.567835 -0.618346 -0.153238\nv -0.573925 -0.620240 -0.156915\nv -0.564054 -0.574703 -0.155051\nv -0.528475 -0.542730 -0.139820\nv -0.534604 -0.540727 -0.143967\nv -0.532563 -0.513576 -0.150526\nv -0.522218 -0.506670 -0.145537\nv -0.512873 -0.501123 -0.139630\nv -0.514849 -0.495035 -0.142465\nv -0.497296 -0.499872 -0.127449\nv -0.477086 -0.493440 -0.113261\nv -0.599766 -0.424797 0.375436\nv -0.629187 -0.451310 0.323869\nv -0.623971 -0.419672 0.368692\nv -0.604983 -0.456162 0.330466\nv -0.632120 -0.473856 0.285310\nv -0.607918 -0.478357 0.291716\nv -0.653199 -0.465804 0.277259\nv -0.650264 -0.442886 0.315521\nv -0.645047 -0.410921 0.360090\nv -0.665083 -0.427315 0.303667\nv -0.659864 -0.394918 0.347773\nv -0.668030 -0.450647 0.265922\nv -0.672870 -0.431585 0.253639\nv -0.670250 -0.408364 0.290633\nv -0.665404 -0.375908 0.334038\nv -0.662366 -0.389798 0.278745\nv -0.658650 -0.358136 0.321184\nv -0.663979 -0.411819 0.242753\nv -0.648962 -0.393220 0.231801\nv -0.651109 -0.346232 0.401626\nv -0.636278 -0.362669 0.414259\nv -0.615198 -0.371626 0.422999\nv -0.590991 -0.376842 0.429792\nv -0.627573 -0.313379 0.465110\nv -0.606486 -0.322461 0.473917\nv -0.582280 -0.327677 0.480710\nv -0.642422 -0.296567 0.452273\nv -0.648947 -0.277060 0.437958\nv -0.657177 -0.326998 0.387501\nv -0.651974 -0.309650 0.374287\nv -0.641134 -0.293246 0.361526\nv -0.635314 -0.236862 0.419994\nv -0.645064 -0.259892 0.424714\nv -0.598270 -0.259557 0.535101\nv -0.619363 -0.250327 0.526222\nv -0.574064 -0.264773 0.541894\nv -0.634231 -0.233071 0.513172\nv -0.640921 -0.213187 0.498694\nv -0.637483 -0.196076 0.485533\nv -0.628979 -0.180352 0.473030\nv -0.648054 -0.303238 0.100535\nv -0.632456 -0.296778 0.096469\nv -0.611640 -0.292944 0.095757\nv -0.588214 -0.290423 0.096723\nv -0.646954 -0.349630 0.303059\nv -0.654087 -0.330738 0.276538\nv -0.647157 -0.212093 0.376529\nv -0.654547 -0.333814 0.256441\nv -0.647958 -0.371425 0.267430\nv -0.655463 -0.331270 0.238101\nv -0.670715 -0.069532 0.368702\nv -0.672812 -0.069817 0.415221\nv -0.649542 -0.353644 0.200366\nv -0.657375 -0.323396 0.223078\nv -0.662957 -0.179885 0.262805\nv -0.658967 -0.170187 0.238950\nv -0.666437 0.017330 0.313762\nv -0.644999 -0.371867 0.180467\nv -0.632487 -0.394089 0.121771\nv -0.629896 -0.418748 0.111550\nv -0.644270 -0.422581 0.168914\nv -0.619658 -0.447250 0.083068\nv -0.673325 0.016094 0.364134\nv -0.673197 -0.057649 0.408794\nv 0.227523 -0.819365 0.255904\nv 0.202818 -0.728513 0.237623\nv 0.156558 -0.806498 0.203393\nv 0.213730 -0.838445 0.245698\nv 0.156558 -0.700477 0.203392\nv 0.213730 -0.695460 0.245698\nv 0.152193 -0.698968 0.200163\nv 0.152193 -0.816615 0.200163\nv 0.152193 -0.687707 0.200163\nv 0.167470 -0.794624 0.211467\nv 0.145202 -0.803674 0.194990\nv 0.145202 -0.697288 0.194990\nv 0.212911 -0.728513 0.223983\nv 0.177563 -0.794624 0.197827\nv 0.167470 -0.717768 0.211467\nv 0.202818 -0.800530 0.237624\nv 0.212911 -0.800530 0.223984\nv 0.177563 -0.717768 0.197827\nv -0.222559 -0.819365 0.255904\nv -0.208766 -0.717855 0.245698\nv -0.151594 -0.806498 0.203393\nv -0.151594 -0.700477 0.203392\nv -0.151594 -0.681718 0.203392\nv -0.147229 -0.816615 0.200163\nv -0.147229 -0.687707 0.200163\nv -0.140238 -0.803674 0.194990\nv -0.172599 -0.717768 0.197827\nv -0.207947 -0.800530 0.223984\nv -0.172599 -0.794624 0.197827\nv -0.162506 -0.717768 0.211467\nv -0.162506 -0.794624 0.211467\nv -0.197854 -0.800530 0.237624\nv -0.197854 -0.728513 0.237623\nv -0.207947 -0.728513 0.223983\nv 0.225604 -0.527225 -0.630050\nv 0.241483 -0.535620 -0.626783\nv 0.243173 -0.527766 -0.626963\nv 0.226660 -0.535163 -0.629387\nv 0.208820 -0.532794 -0.632453\nv 0.212499 -0.539862 -0.631415\nv 0.194846 -0.543801 -0.633886\nv 0.185366 -0.558919 -0.634173\nv 0.181526 -0.576324 -0.633281\nv 0.183787 -0.593918 -0.631317\nv 0.191876 -0.609577 -0.628518\nv 0.255180 -0.541176 -0.623918\nv 0.259408 -0.534352 -0.623567\nv 0.272352 -0.546188 -0.620270\nv 0.280442 -0.561848 -0.617471\nv 0.282702 -0.579441 -0.615507\nv 0.281539 -0.588303 -0.614916\nv 0.274775 -0.604818 -0.614608\nv 0.269382 -0.611964 -0.614902\nv 0.255408 -0.622972 -0.616334\nv 0.238624 -0.628541 -0.618739\nv 0.222822 -0.620185 -0.622448\nv 0.221055 -0.627999 -0.621825\nv 0.204820 -0.621413 -0.625221\nv 0.198205 -0.604643 -0.628095\nv 0.238477 -0.633423 -0.613344\nv 0.257020 -0.627270 -0.610687\nv 0.272460 -0.615108 -0.609105\nv 0.284678 -0.559737 -0.611943\nv 0.243502 -0.522082 -0.622431\nv 0.224091 -0.521484 -0.625841\nv 0.205547 -0.527637 -0.628497\nv 0.190107 -0.539798 -0.630079\nv 0.186827 -0.612471 -0.624148\nv 0.215814 -0.489092 -0.603713\nv 0.245669 -0.490012 -0.598468\nv 0.187293 -0.498555 -0.607798\nv 0.179318 -0.487095 -0.593372\nv 0.211564 -0.476396 -0.588752\nv 0.245320 -0.477435 -0.582823\nv 0.163547 -0.517260 -0.610232\nv 0.164989 -0.496487 -0.595010\nv 0.152469 -0.508243 -0.596124\nv 0.160468 -0.548481 -0.621234\nv 0.179634 -0.556501 -0.630397\nv 0.147439 -0.542950 -0.610720\nv 0.261440 -0.529358 -0.618678\nv 0.273257 -0.501203 -0.592697\nv 0.275740 -0.542436 -0.615036\nv 0.295251 -0.521317 -0.587096\nv 0.308998 -0.547926 -0.582339\nv 0.287176 -0.579175 -0.609773\nv 0.312840 -0.577822 -0.579001\nv 0.285891 -0.588966 -0.609120\nv 0.310862 -0.592881 -0.577997\nv 0.306314 -0.607399 -0.577485\nv 0.278418 -0.607212 -0.608781\nv 0.299369 -0.620944 -0.577475\nv 0.290206 -0.633088 -0.577974\nv 0.266459 -0.651793 -0.580407\nv 0.237939 -0.661256 -0.584493\nv 0.219065 -0.632825 -0.616754\nv 0.208084 -0.660336 -0.589737\nv 0.201128 -0.625548 -0.620506\nv 0.180496 -0.649145 -0.595508\nv 0.168607 -0.640082 -0.598375\nv 0.158501 -0.629032 -0.601110\nv 0.202825 -0.670013 -0.572951\nv 0.171632 -0.657359 -0.579476\nv 0.158190 -0.647112 -0.582717\nv 0.236580 -0.671052 -0.567021\nv 0.268827 -0.660353 -0.562401\nv 0.295676 -0.639205 -0.559650\nv 0.164073 -0.662857 -0.561655\nv 0.149489 -0.651740 -0.565172\nv 0.197915 -0.676586 -0.554576\nv 0.193181 -0.681607 -0.535407\nv 0.234538 -0.677714 -0.548143\nv 0.232153 -0.682807 -0.528561\nv 0.269523 -0.666105 -0.543131\nv 0.298653 -0.643161 -0.540146\nv 0.300383 -0.646037 -0.520051\nv 0.306036 -0.625474 -0.559086\nv 0.309027 -0.619641 -0.559091\nv 0.313888 -0.610159 -0.559098\nv 0.316804 -0.600852 -0.559426\nv 0.309893 -0.628264 -0.539534\nv 0.307272 -0.626368 -0.552822\nv 0.319031 -0.593745 -0.559676\nv 0.321267 -0.576718 -0.560812\nv 0.316923 -0.542916 -0.564586\nv 0.301380 -0.512830 -0.569964\nv 0.276513 -0.490089 -0.576297\nv 0.321705 -0.538694 -0.545501\nv 0.326418 -0.575367 -0.541407\nv 0.304842 -0.506053 -0.551335\nv 0.277862 -0.481380 -0.558207\nv 0.278258 -0.473873 -0.539271\nv 0.244020 -0.467651 -0.565286\nv 0.207397 -0.466523 -0.571720\nv 0.172412 -0.478132 -0.576732\nv 0.166040 -0.470417 -0.558985\nv 0.242244 -0.459264 -0.546805\nv 0.156866 -0.488321 -0.578509\nv 0.149497 -0.481260 -0.560876\nv 0.322712 -0.593815 -0.545205\nv 0.320507 -0.593773 -0.553875\nv 0.203179 -0.470318 -0.541851\nv 0.239367 -0.472302 -0.546137\nv 0.204965 -0.471242 -0.552180\nv 0.170314 -0.481223 -0.546559\nv 0.157497 -0.491718 -0.558557\nv 0.271157 -0.485198 -0.539486\nv 0.296502 -0.508375 -0.533031\nv 0.294715 -0.507451 -0.522702\nv 0.312343 -0.539037 -0.527551\nv 0.310556 -0.538113 -0.517221\nv 0.316770 -0.573486 -0.523705\nv 0.290688 -0.637171 -0.522520\nv 0.261538 -0.657800 -0.514996\nv 0.196058 -0.668569 -0.536076\nv 0.164267 -0.655673 -0.542726\nv 0.162481 -0.654749 -0.532397\nv 0.138923 -0.632496 -0.549181\nv 0.129655 -0.617891 -0.552089\nv 0.127869 -0.616967 -0.541761\nv 0.193959 -0.459574 -0.494003\nv 0.234775 -0.457269 -0.505663\nv 0.225672 -0.467275 -0.469195\nv 0.196390 -0.456086 -0.512407\nv 0.270246 -0.471658 -0.498243\nv 0.256864 -0.479929 -0.462670\nv 0.298524 -0.497518 -0.491041\nv 0.281732 -0.502670 -0.456336\nv 0.316199 -0.531731 -0.484926\nv 0.297275 -0.532756 -0.450959\nv 0.321139 -0.570169 -0.480634\nv 0.301619 -0.566558 -0.447185\nv 0.318596 -0.589531 -0.479343\nv 0.299383 -0.583584 -0.446049\nv 0.303819 -0.625612 -0.478671\nv 0.286388 -0.615313 -0.445459\nv 0.292037 -0.641226 -0.479313\nv 0.276027 -0.629044 -0.446022\nv 0.261506 -0.665275 -0.482442\nv 0.249179 -0.650192 -0.448774\nv 0.224836 -0.677442 -0.487694\nv 0.216932 -0.660892 -0.453393\nv 0.186451 -0.676259 -0.494438\nv 0.183177 -0.659852 -0.459323\nv 0.150980 -0.661870 -0.501858\nv 0.151984 -0.647199 -0.465848\nv 0.122702 -0.636010 -0.509060\nv 0.127116 -0.624458 -0.472182\nv 0.112360 -0.619714 -0.512305\nv 0.118022 -0.610127 -0.475036\nv 0.140708 -0.606630 -0.438667\nv 0.133855 -0.595831 -0.440818\nv 0.159448 -0.623768 -0.433894\nv 0.182954 -0.633303 -0.428977\nv 0.208392 -0.634087 -0.424508\nv 0.232693 -0.626024 -0.421027\nv 0.252926 -0.610087 -0.418954\nv 0.260734 -0.599739 -0.418529\nv 0.270526 -0.575829 -0.418974\nv 0.272211 -0.562998 -0.419829\nv 0.268938 -0.537525 -0.422673\nv 0.257225 -0.514853 -0.426726\nv 0.238485 -0.497715 -0.431499\nv 0.220413 -0.476951 -0.452409\nv 0.175391 -0.575732 -0.629411\nv 0.154830 -0.574029 -0.619925\nv 0.177889 -0.595170 -0.627241\nv 0.158149 -0.599854 -0.617042\nv 0.170024 -0.622839 -0.612933\nv 0.224078 -0.539912 -0.608885\nv 0.236641 -0.540299 -0.606678\nv 0.212077 -0.543894 -0.610604\nv 0.200709 -0.549148 -0.632624\nv 0.202084 -0.551764 -0.611628\nv 0.195306 -0.562574 -0.611834\nv 0.189472 -0.576588 -0.632113\nv 0.192712 -0.561903 -0.632866\nv 0.192560 -0.575020 -0.611196\nv 0.194177 -0.587600 -0.609791\nv 0.199961 -0.598797 -0.607790\nv 0.191379 -0.591431 -0.630456\nv 0.209125 -0.614629 -0.625314\nv 0.220825 -0.611970 -0.603004\nv 0.233388 -0.612357 -0.600797\nv 0.237645 -0.620642 -0.619844\nv 0.245389 -0.608375 -0.599078\nv 0.251805 -0.615943 -0.617816\nv 0.268145 -0.600627 -0.616359\nv 0.263595 -0.606657 -0.616607\nv 0.259238 -0.595394 -0.597844\nv 0.273851 -0.586694 -0.616619\nv 0.264074 -0.583585 -0.598064\nv 0.274833 -0.579217 -0.617118\nv 0.263289 -0.564668 -0.599891\nv 0.272926 -0.564374 -0.618775\nv 0.257505 -0.553471 -0.601892\nv 0.266100 -0.551163 -0.621136\nv 0.228733 -0.576134 -0.604841\nv 0.248250 -0.545008 -0.604250\nv 0.264906 -0.577249 -0.598487\nv 0.255382 -0.600504 -0.598054\nv 0.209216 -0.607261 -0.605432\nv 0.164254 -0.469493 -0.548655\nv 0.161683 -0.468163 -0.533787\nv 0.323129 -0.533942 -0.515421\nv 0.328144 -0.572968 -0.511064\nv 0.325562 -0.592627 -0.509752\nv 0.191395 -0.680683 -0.525078\nv 0.155381 -0.666074 -0.532612\nv 0.116170 -0.623273 -0.543220\nv 0.172100 -0.482146 -0.556888\nv 0.203271 -0.458063 -0.553651\nv 0.306969 -0.500129 -0.531959\nv 0.324915 -0.534865 -0.525749\nv 0.329930 -0.573892 -0.521393\nv 0.327348 -0.593550 -0.520081\nv 0.263325 -0.658724 -0.525324\nv 0.269384 -0.670454 -0.523228\nv 0.230460 -0.669629 -0.530032\nv 0.157167 -0.666997 -0.542941\nv 0.141647 -0.655166 -0.546683\nv 0.150568 -0.645229 -0.546029\nv 0.240458 -0.458340 -0.536476\nv 0.237581 -0.471378 -0.535808\nv 0.201485 -0.457140 -0.543323\nv 0.147711 -0.480336 -0.550547\nv 0.155711 -0.490795 -0.548228\nv 0.142951 -0.502776 -0.549363\nv 0.133256 -0.493910 -0.551832\nv 0.269371 -0.484274 -0.529157\nv 0.276472 -0.472950 -0.528942\nv 0.305183 -0.499206 -0.521630\nv 0.314983 -0.572563 -0.513376\nv 0.312705 -0.589916 -0.512218\nv 0.310559 -0.629260 -0.509071\nv 0.299461 -0.622253 -0.511617\nv 0.288901 -0.636247 -0.512191\nv 0.298597 -0.645113 -0.509722\nv 0.267598 -0.669530 -0.512899\nv 0.228673 -0.668705 -0.519704\nv 0.230367 -0.681884 -0.518232\nv 0.194271 -0.667645 -0.525747\nv 0.137137 -0.631572 -0.538852\nv 0.126669 -0.639818 -0.539925\nv 0.317457 -0.600082 -0.557846\nv 0.303910 -0.613644 -0.557525\nv 0.309382 -0.619798 -0.557479\nv 0.308065 -0.624918 -0.552639\nv 0.308898 -0.627544 -0.544578\nv 0.301205 -0.621112 -0.544374\nv 0.301213 -0.621500 -0.541988\nv 0.312345 -0.630184 -0.519400\nv 0.301247 -0.623177 -0.521946\nv 0.320171 -0.595358 -0.553189\nv 0.323992 -0.593840 -0.540174\nv 0.314491 -0.590840 -0.522547\nv 0.314658 -0.590899 -0.541938\nv 0.301865 -0.618444 -0.552574\nv 0.314646 -0.590903 -0.544769\nv 0.313920 -0.592420 -0.553020\nv 0.311825 -0.596948 -0.557861\nv -0.236519 -0.535620 -0.626783\nv -0.220640 -0.527225 -0.630050\nv -0.238209 -0.527766 -0.626963\nv -0.221696 -0.535163 -0.629387\nv -0.203856 -0.532794 -0.632453\nv -0.207535 -0.539862 -0.631415\nv -0.189882 -0.543801 -0.633886\nv -0.195745 -0.549148 -0.632624\nv -0.180402 -0.558919 -0.634173\nv -0.176562 -0.576324 -0.633281\nv -0.178823 -0.593918 -0.631317\nv -0.254444 -0.534352 -0.623567\nv -0.267388 -0.546188 -0.620270\nv -0.275478 -0.561848 -0.617471\nv -0.277739 -0.579441 -0.615507\nv -0.268887 -0.586694 -0.616619\nv -0.276575 -0.588303 -0.614916\nv -0.269811 -0.604818 -0.614608\nv -0.264418 -0.611964 -0.614902\nv -0.250444 -0.622972 -0.616334\nv -0.233660 -0.628541 -0.618739\nv -0.217858 -0.620185 -0.622448\nv -0.216091 -0.627999 -0.621825\nv -0.199856 -0.621413 -0.625221\nv -0.186913 -0.609577 -0.628518\nv -0.181863 -0.612471 -0.624148\nv -0.214101 -0.632825 -0.616754\nv -0.252056 -0.627270 -0.610687\nv -0.267496 -0.615108 -0.609105\nv -0.280927 -0.588966 -0.609120\nv -0.279714 -0.559737 -0.611943\nv -0.238538 -0.522082 -0.622431\nv -0.200583 -0.527637 -0.628497\nv -0.170427 -0.575732 -0.629411\nv -0.172925 -0.595170 -0.627241\nv -0.210850 -0.489092 -0.603713\nv -0.219127 -0.521484 -0.625841\nv -0.240705 -0.490012 -0.598468\nv -0.182329 -0.498555 -0.607798\nv -0.174354 -0.487095 -0.593372\nv -0.206601 -0.476396 -0.588752\nv -0.240356 -0.477435 -0.582823\nv -0.158583 -0.517260 -0.610232\nv -0.185144 -0.539798 -0.630079\nv -0.160025 -0.496487 -0.595010\nv -0.147505 -0.508243 -0.596124\nv -0.142475 -0.542950 -0.610720\nv -0.155504 -0.548481 -0.621234\nv -0.174670 -0.556501 -0.630397\nv -0.256476 -0.529358 -0.618678\nv -0.268293 -0.501203 -0.592697\nv -0.270776 -0.542436 -0.615036\nv -0.290287 -0.521317 -0.587096\nv -0.304034 -0.547926 -0.582339\nv -0.282213 -0.579175 -0.609773\nv -0.307876 -0.577822 -0.579001\nv -0.305899 -0.592881 -0.577997\nv -0.301350 -0.607399 -0.577485\nv -0.273454 -0.607212 -0.608781\nv -0.294405 -0.620944 -0.577475\nv -0.285242 -0.633088 -0.577974\nv -0.261495 -0.651793 -0.580407\nv -0.233513 -0.633423 -0.613344\nv -0.232975 -0.661256 -0.584493\nv -0.203120 -0.660336 -0.589737\nv -0.196164 -0.625548 -0.620506\nv -0.175532 -0.649145 -0.595508\nv -0.163643 -0.640082 -0.598375\nv -0.153538 -0.629032 -0.601110\nv -0.197861 -0.670013 -0.572951\nv -0.166668 -0.657359 -0.579476\nv -0.153226 -0.647112 -0.582717\nv -0.231616 -0.671052 -0.567021\nv -0.263863 -0.660353 -0.562401\nv -0.290712 -0.639205 -0.559650\nv -0.159109 -0.662857 -0.561655\nv -0.144525 -0.651740 -0.565172\nv -0.192951 -0.676586 -0.554576\nv -0.188217 -0.681607 -0.535407\nv -0.152203 -0.666997 -0.542941\nv -0.229574 -0.677714 -0.548143\nv -0.264559 -0.666105 -0.543131\nv -0.264420 -0.670454 -0.523228\nv -0.293689 -0.643161 -0.540146\nv -0.295419 -0.646037 -0.520051\nv -0.307381 -0.630184 -0.519400\nv -0.304929 -0.628264 -0.539534\nv -0.303934 -0.627544 -0.544578\nv -0.302308 -0.626368 -0.552822\nv -0.303101 -0.624918 -0.552639\nv -0.304418 -0.619798 -0.557479\nv -0.304063 -0.619641 -0.559091\nv -0.308924 -0.610159 -0.559098\nv -0.311840 -0.600852 -0.559426\nv -0.301073 -0.625474 -0.559086\nv -0.314067 -0.593745 -0.559676\nv -0.316303 -0.576718 -0.560812\nv -0.311959 -0.542916 -0.564586\nv -0.296416 -0.512830 -0.569964\nv -0.271549 -0.490089 -0.576297\nv -0.316741 -0.538694 -0.545501\nv -0.321454 -0.575367 -0.541407\nv -0.324966 -0.573892 -0.521393\nv -0.299878 -0.506053 -0.551335\nv -0.272898 -0.481380 -0.558207\nv -0.239056 -0.467651 -0.565286\nv -0.202433 -0.466523 -0.571720\nv -0.167448 -0.478132 -0.576732\nv -0.237280 -0.459264 -0.546805\nv -0.151902 -0.488321 -0.578509\nv -0.144533 -0.481260 -0.560876\nv -0.317748 -0.593815 -0.545205\nv -0.315543 -0.593773 -0.553875\nv -0.322384 -0.593550 -0.520081\nv -0.198215 -0.470318 -0.541851\nv -0.232617 -0.471378 -0.535808\nv -0.167136 -0.482146 -0.556888\nv -0.266193 -0.485198 -0.539486\nv -0.291538 -0.508375 -0.533031\nv -0.289752 -0.507451 -0.522702\nv -0.307379 -0.539037 -0.527551\nv -0.305592 -0.538113 -0.517221\nv -0.311806 -0.573486 -0.523705\nv -0.309527 -0.590840 -0.522547\nv -0.307741 -0.589916 -0.512218\nv -0.285724 -0.637171 -0.522520\nv -0.258361 -0.658724 -0.525324\nv -0.256574 -0.657800 -0.514996\nv -0.225496 -0.669629 -0.530032\nv -0.159303 -0.655673 -0.542726\nv -0.157517 -0.654749 -0.532397\nv -0.145604 -0.645229 -0.546029\nv -0.133959 -0.632496 -0.549181\nv -0.132173 -0.631572 -0.538852\nv -0.124691 -0.617891 -0.552089\nv -0.122905 -0.616967 -0.541761\nv -0.188995 -0.459574 -0.494003\nv -0.229811 -0.457269 -0.505663\nv -0.191426 -0.456086 -0.512407\nv -0.220708 -0.467275 -0.469195\nv -0.265282 -0.471658 -0.498243\nv -0.251900 -0.479929 -0.462670\nv -0.293560 -0.497518 -0.491041\nv -0.276768 -0.502670 -0.456336\nv -0.311235 -0.531731 -0.484926\nv -0.292311 -0.532756 -0.450959\nv -0.316175 -0.570169 -0.480634\nv -0.296655 -0.566558 -0.447185\nv -0.313632 -0.589531 -0.479343\nv -0.294419 -0.583584 -0.446049\nv -0.298855 -0.625612 -0.478671\nv -0.281424 -0.615313 -0.445459\nv -0.287073 -0.641226 -0.479313\nv -0.271063 -0.629044 -0.446022\nv -0.256542 -0.665275 -0.482442\nv -0.244215 -0.650192 -0.448774\nv -0.219873 -0.677442 -0.487694\nv -0.211968 -0.660892 -0.453393\nv -0.181487 -0.676259 -0.494438\nv -0.178213 -0.659852 -0.459323\nv -0.146016 -0.661870 -0.501858\nv -0.147020 -0.647199 -0.465848\nv -0.117738 -0.636010 -0.509060\nv -0.122152 -0.624458 -0.472182\nv -0.107396 -0.619714 -0.512305\nv -0.113058 -0.610127 -0.475036\nv -0.135744 -0.606630 -0.438667\nv -0.128891 -0.595831 -0.440818\nv -0.154484 -0.623768 -0.433894\nv -0.177990 -0.633303 -0.428977\nv -0.203428 -0.634087 -0.424508\nv -0.227729 -0.626024 -0.421027\nv -0.247962 -0.610087 -0.418954\nv -0.255770 -0.599739 -0.418529\nv -0.265562 -0.575829 -0.418974\nv -0.267247 -0.562998 -0.419829\nv -0.263974 -0.537525 -0.422673\nv -0.252261 -0.514853 -0.426726\nv -0.233521 -0.497715 -0.431499\nv -0.215449 -0.476951 -0.452409\nv -0.149866 -0.574029 -0.619925\nv -0.153185 -0.599854 -0.617042\nv -0.165060 -0.622839 -0.612933\nv -0.231677 -0.540299 -0.606678\nv -0.207113 -0.543894 -0.610604\nv -0.190342 -0.562574 -0.611834\nv -0.187748 -0.561903 -0.632866\nv -0.186415 -0.591431 -0.630456\nv -0.187596 -0.575020 -0.611196\nv -0.184508 -0.576588 -0.632113\nv -0.189213 -0.587600 -0.609791\nv -0.204161 -0.614629 -0.625314\nv -0.193241 -0.604643 -0.628095\nv -0.215861 -0.611970 -0.603004\nv -0.246841 -0.615943 -0.617816\nv -0.232681 -0.620642 -0.619844\nv -0.258631 -0.606657 -0.616607\nv -0.250418 -0.600504 -0.598054\nv -0.263181 -0.600627 -0.616359\nv -0.259110 -0.583585 -0.598064\nv -0.254274 -0.595394 -0.597844\nv -0.269869 -0.579217 -0.617118\nv -0.259942 -0.577249 -0.598487\nv -0.261136 -0.551163 -0.621136\nv -0.252541 -0.553471 -0.601892\nv -0.267962 -0.564374 -0.618775\nv -0.250216 -0.541176 -0.623918\nv -0.243286 -0.545008 -0.604250\nv -0.223769 -0.576134 -0.604841\nv -0.219114 -0.539912 -0.608885\nv -0.258326 -0.564668 -0.599891\nv -0.240425 -0.608375 -0.599078\nv -0.228424 -0.612357 -0.600797\nv -0.204252 -0.607261 -0.605432\nv -0.194997 -0.598797 -0.607790\nv -0.197121 -0.551764 -0.611628\nv -0.196521 -0.457140 -0.543323\nv -0.156719 -0.468163 -0.533787\nv -0.142747 -0.480336 -0.550547\nv -0.300219 -0.499206 -0.521630\nv -0.323180 -0.572968 -0.511064\nv -0.320598 -0.592627 -0.509752\nv -0.121705 -0.639818 -0.539925\nv -0.200001 -0.471242 -0.552180\nv -0.161076 -0.470417 -0.558985\nv -0.198307 -0.458063 -0.553651\nv -0.234403 -0.472302 -0.546137\nv -0.273294 -0.473873 -0.539271\nv -0.302005 -0.500129 -0.531959\nv -0.319951 -0.534865 -0.525749\nv -0.152533 -0.491718 -0.558557\nv -0.227190 -0.682807 -0.528561\nv -0.191094 -0.668569 -0.536076\nv -0.136683 -0.655166 -0.546683\nv -0.235494 -0.458340 -0.536476\nv -0.159290 -0.469493 -0.548655\nv -0.165350 -0.481223 -0.546559\nv -0.150747 -0.490795 -0.548228\nv -0.137987 -0.502776 -0.549363\nv -0.128292 -0.493910 -0.551832\nv -0.264407 -0.484274 -0.529157\nv -0.271508 -0.472950 -0.528942\nv -0.318165 -0.533942 -0.515421\nv -0.310019 -0.572563 -0.513376\nv -0.305595 -0.629260 -0.509071\nv -0.294497 -0.622253 -0.511617\nv -0.283937 -0.636247 -0.512191\nv -0.293633 -0.645113 -0.509722\nv -0.262635 -0.669530 -0.512899\nv -0.223709 -0.668705 -0.519704\nv -0.225403 -0.681884 -0.518232\nv -0.189307 -0.667645 -0.525747\nv -0.186431 -0.680683 -0.525078\nv -0.150417 -0.666074 -0.532612\nv -0.111206 -0.623273 -0.543220\nv -0.298946 -0.613644 -0.557525\nv -0.306861 -0.596948 -0.557861\nv -0.312493 -0.600082 -0.557846\nv -0.296901 -0.618444 -0.552574\nv -0.296241 -0.621112 -0.544374\nv -0.296249 -0.621500 -0.541988\nv -0.296283 -0.623177 -0.521946\nv -0.315207 -0.595358 -0.553189\nv -0.309694 -0.590899 -0.541938\nv -0.319028 -0.593840 -0.540174\nv -0.309682 -0.590903 -0.544769\nv -0.308957 -0.592420 -0.553020\nv 0.117710 0.147172 1.145573\nv 0.114367 0.152559 1.152165\nv 0.119396 0.147189 1.148722\nv 0.112308 0.152943 1.149271\nv 0.109820 0.160483 1.152958\nv 0.112052 0.159578 1.155596\nv 0.133699 0.143976 1.140268\nv 0.110641 0.168602 1.156051\nv 0.114650 0.176111 1.158098\nv 0.122656 0.179439 1.161010\nv 0.121213 0.181823 1.158774\nv 0.129370 0.184902 1.157981\nv 0.130248 0.182304 1.160272\nv 0.138123 0.182266 1.158283\nv 0.137832 0.184861 1.155845\nv 0.145359 0.181706 1.152677\nv 0.150157 0.173959 1.151892\nv 0.150761 0.175935 1.148978\nv 0.153249 0.168395 1.145291\nv 0.152472 0.166941 1.148460\nv 0.151708 0.159384 1.145581\nv 0.152428 0.160275 1.142198\nv 0.148419 0.152767 1.140151\nv 0.147977 0.152395 1.143677\nv 0.141856 0.147055 1.139475\nv 0.139292 0.151211 1.129140\nv 0.131118 0.148126 1.129935\nv 0.122640 0.148167 1.132076\nv 0.125237 0.144017 1.142404\nv 0.145869 0.156934 1.129818\nv 0.149886 0.164458 1.131869\nv 0.150708 0.172594 1.134968\nv 0.148216 0.180150 1.138663\nv 0.142802 0.185932 1.142369\nv 0.135260 0.189093 1.145544\nv 0.126782 0.189135 1.147684\nv 0.118608 0.186050 1.148479\nv 0.112031 0.180326 1.147802\nv 0.108014 0.172802 1.145751\nv 0.107192 0.164667 1.142651\nv 0.109684 0.157111 1.138956\nv 0.115098 0.151329 1.135250\nv 0.117173 0.160510 1.154692\nv 0.112816 0.167134 1.158476\nv 0.117743 0.166152 1.156842\nv 0.126401 0.144252 1.145774\nv 0.133766 0.149039 1.145873\nv 0.134276 0.144214 1.143785\nv 0.141868 0.147079 1.143047\nv 0.146781 0.160366 1.147215\nv 0.141869 0.175258 1.154497\nv 0.145129 0.179329 1.155334\nv 0.125090 0.175340 1.158734\nv 0.116547 0.174123 1.160380\nv 0.117540 0.162809 1.149470\nv 0.118050 0.167851 1.151391\nv 0.117998 0.161614 1.152344\nv 0.119085 0.158127 1.147180\nv 0.119572 0.156844 1.150012\nv 0.122440 0.154543 1.144884\nv 0.133102 0.151172 1.144317\nv 0.120539 0.172514 1.152662\nv 0.124615 0.176062 1.153082\nv 0.130365 0.177060 1.155521\nv 0.129681 0.177974 1.152590\nv 0.135717 0.177034 1.154170\nv 0.134935 0.177948 1.151263\nv 0.139610 0.175989 1.149296\nv 0.144950 0.161482 1.145537\nv 0.144000 0.162680 1.142788\nv 0.141510 0.158017 1.141517\nv 0.137434 0.154470 1.141097\nv 0.118517 0.166750 1.154301\nv 0.118901 0.155270 1.152130\nv 0.122656 0.151261 1.149560\nv 0.122989 0.153194 1.147672\nv 0.127886 0.149068 1.147358\nv 0.120529 0.171370 1.158264\nv 0.121053 0.171500 1.155595\nv 0.125205 0.175113 1.156023\nv 0.130758 0.177479 1.158183\nv 0.136638 0.177450 1.156698\nv 0.140478 0.175038 1.152166\nv 0.143896 0.171388 1.149827\nv 0.145623 0.171248 1.151927\nv 0.147352 0.166008 1.149364\nv 0.145469 0.166618 1.147494\nv 0.143995 0.155148 1.145793\nv 0.142414 0.156733 1.144243\nv 0.138262 0.153120 1.143815\nv 0.139434 0.151179 1.145322\nv 0.127750 0.151198 1.145668\nv 0.132368 0.152558 1.141589\nv 0.127114 0.152584 1.142916\nv 0.144509 0.167722 1.144709\nv 0.142965 0.172405 1.146999\nv 0.524132 0.645325 0.660805\nv 0.475728 0.657273 0.741166\nv 0.541405 0.639825 0.624719\nv 0.539129 0.651194 0.606268\nv 0.522412 0.657582 0.640414\nv 0.475396 0.670368 0.719686\nv 0.423505 0.665297 0.802965\nv 0.421674 0.679872 0.783979\nv 0.475015 0.675822 0.708791\nv 0.404123 0.687257 0.792956\nv 0.399219 0.668000 0.825986\nv 0.537115 0.656209 0.598410\nv 0.550065 0.645797 0.585351\nv 0.567550 0.634469 0.555680\nv 0.552287 0.636578 0.599625\nv 0.551857 0.631859 0.609802\nv 0.567616 0.631925 0.562163\nv 0.568694 0.632371 0.556787\nv 0.466063 0.627674 0.748701\nv 0.425732 0.650640 0.824802\nv 0.482724 0.642593 0.757647\nv 0.404977 0.636074 0.820794\nv 0.407645 0.655256 0.839318\nv 0.513981 0.616728 0.668078\nv 0.531891 0.630882 0.676381\nv 0.530883 0.612080 0.631000\nv 0.549318 0.625924 0.639558\nv 0.559861 0.624323 0.613433\nv 0.541479 0.610285 0.603456\nv 0.559566 0.610743 0.545955\nv 0.577106 0.625463 0.561011\nv 0.578401 0.628351 0.549916\nv 0.560976 0.614728 0.533738\nv 0.554260 0.628828 0.524896\nv 0.547338 0.636811 0.528426\nv 0.521897 0.656519 0.559192\nv 0.509772 0.663564 0.578637\nv 0.517871 0.672917 0.626007\nv 0.492976 0.670199 0.611699\nv 0.447132 0.682700 0.689072\nv 0.388680 0.693644 0.758739\nv 0.414557 0.696522 0.772836\nv 0.369183 0.693687 0.782504\nv 0.391665 0.695533 0.803261\nv 0.364531 0.691400 0.791110\nv 0.360562 0.684103 0.805620\nv 0.367971 0.654648 0.837574\nv 0.375575 0.646346 0.840385\nv 0.383215 0.641466 0.838418\nv 0.388209 0.691044 0.814913\nv 0.394326 0.667354 0.839935\nv 0.395361 0.683474 0.809761\nv 0.398616 0.685999 0.801750\nv 0.402519 0.664678 0.826340\nv 0.400151 0.660364 0.841632\nv 0.410436 0.659969 0.823439\nv 0.396546 0.697248 0.794306\nv 0.420507 0.686116 0.774507\nv 0.471376 0.685921 0.704532\nv 0.521089 0.662759 0.630626\nv 0.534494 0.666305 0.593197\nv 0.545504 0.660216 0.575420\nv 0.547412 0.650297 0.581254\nv 0.566853 0.644526 0.549730\nv 0.565434 0.636680 0.558258\nv 0.572670 0.638561 0.544687\nv 0.541667 0.633472 0.635312\nv 0.524529 0.638246 0.671409\nv 0.475679 0.649632 0.751750\nv 0.424168 0.656966 0.812479\nv 0.285211 0.115302 1.056809\nv 0.285017 0.132299 1.080260\nv 0.294453 0.115386 1.063333\nv 0.275072 0.133474 1.074997\nv 0.273139 0.157307 1.089028\nv 0.283218 0.154480 1.093319\nv 0.279718 0.183034 1.096686\nv 0.293846 0.206887 1.096849\nv 0.313289 0.225098 1.089492\nv 0.335200 0.234999 1.075693\nv 0.340979 0.226790 1.080907\nv 0.356118 0.235027 1.057630\nv 0.372978 0.225176 1.037950\nv 0.385576 0.200735 1.028853\nv 0.383117 0.207004 1.019763\nv 0.385049 0.183172 1.005732\nv 0.381252 0.154609 1.008667\nv 0.378470 0.157445 0.998074\nv 0.364343 0.133591 0.997910\nv 0.368103 0.132408 1.008515\nv 0.350007 0.115459 1.015362\nv 0.344900 0.115381 1.005267\nv 0.322989 0.105479 1.019068\nv 0.329614 0.106243 1.028206\nv 0.320852 0.129713 0.977306\nv 0.298892 0.119790 0.991136\nv 0.277928 0.119762 1.009239\nv 0.302071 0.105451 1.037130\nv 0.340338 0.147965 0.969933\nv 0.354496 0.171871 0.970097\nv 0.361090 0.197655 0.977772\nv 0.359153 0.221540 0.991834\nv 0.348992 0.239752 1.010061\nv 0.332094 0.249625 1.029784\nv 0.311130 0.249597 1.047887\nv 0.289170 0.239674 1.061717\nv 0.269684 0.221423 1.069091\nv 0.255526 0.197516 1.068927\nv 0.248932 0.171733 1.061252\nv 0.250869 0.147847 1.047189\nv 0.261030 0.129635 1.028962\nv 0.310145 0.106218 1.045016\nv 0.289341 0.178425 1.100447\nv 0.300985 0.175408 1.088820\nv 0.297756 0.140969 1.073748\nv 0.304801 0.128341 1.061109\nv 0.316518 0.121495 1.047434\nv 0.331053 0.121514 1.034882\nv 0.346280 0.128395 1.025292\nv 0.359791 0.141050 1.020180\nv 0.387375 0.178553 1.015794\nv 0.365792 0.204693 1.048004\nv 0.376140 0.217648 1.045780\nv 0.354075 0.211538 1.061679\nv 0.360448 0.226816 1.064097\nv 0.339540 0.211519 1.074231\nv 0.324313 0.204639 1.083821\nv 0.320586 0.217575 1.093751\nv 0.302490 0.200626 1.100599\nv 0.290000 0.164817 1.068214\nv 0.294085 0.180793 1.072970\nv 0.295397 0.161040 1.075688\nv 0.291200 0.150017 1.059501\nv 0.297496 0.138731 1.048206\nv 0.303033 0.134470 1.055308\nv 0.302858 0.195606 1.073071\nv 0.314933 0.206915 1.068503\nv 0.341530 0.213081 1.048716\nv 0.364964 0.192476 1.031874\nv 0.366186 0.177401 1.022999\nv 0.362024 0.161128 1.018155\nv 0.355411 0.164902 1.011731\nv 0.353088 0.146039 1.018051\nv 0.346638 0.150089 1.011630\nv 0.320956 0.132631 1.024768\nv 0.313698 0.128239 1.042860\nv 0.307966 0.132614 1.035985\nv 0.299558 0.177314 1.080532\nv 0.296413 0.157530 1.083498\nv 0.296619 0.145965 1.066812\nv 0.310802 0.191984 1.088933\nv 0.308495 0.192402 1.080635\nv 0.320794 0.203922 1.075982\nv 0.334654 0.210185 1.067253\nv 0.347885 0.210202 1.055827\nv 0.358550 0.203971 1.043379\nv 0.372837 0.192065 1.035365\nv 0.374180 0.175504 1.025615\nv 0.369608 0.157626 1.020293\nv 0.340789 0.134520 1.022705\nv 0.326929 0.128256 1.031434\nv 0.359496 0.180879 1.016487\nv 0.334564 0.138780 1.016198\nv 0.328540 0.213064 1.059933\nv 0.352000 0.206964 1.036495\nv 0.358296 0.195679 1.025200\nv 0.924365 -0.080377 0.548857\nv 0.898420 -0.109616 0.587232\nv 0.912767 -0.110170 0.590417\nv 0.910450 -0.079047 0.544346\nv 0.896897 -0.112276 0.595398\nv 0.911329 -0.112971 0.597601\nv 0.896818 -0.110218 0.600840\nv 0.911185 -0.111570 0.602159\nv 0.927718 -0.070128 0.539703\nv 0.914000 -0.068319 0.534909\nv 0.929301 -0.064195 0.537241\nv 0.915733 -0.061982 0.532340\nv 0.897646 -0.106213 0.602252\nv 0.911875 -0.108144 0.603274\nv 0.912786 -0.104074 0.603648\nv 0.930368 -0.059517 0.536682\nv 0.916964 -0.056772 0.531826\nv 0.943892 0.003225 0.543090\nv 0.930461 0.005977 0.538224\nv 0.944773 0.007996 0.544631\nv 0.931492 0.011273 0.539940\nv 0.945614 0.013295 0.548378\nv 0.932424 0.016913 0.543954\nv 0.946445 0.020910 0.559005\nv 0.933329 0.024871 0.555005\nv 0.946968 0.038446 0.602654\nv 0.933817 0.042795 0.599968\nv 0.946547 0.039102 0.610265\nv 0.933207 0.043235 0.608385\nv 0.945555 0.036222 0.614643\nv 0.932000 0.039751 0.613431\nv 0.944600 0.032117 0.615153\nv 0.930754 0.035151 0.614166\nv 0.943566 0.027513 0.614731\nv 0.929547 0.030020 0.613729\nv 0.898740 -0.101560 0.602647\nv 0.946935 0.018497 0.560474\nv 0.947117 0.036384 0.609104\nv 0.946474 0.034924 0.612404\nv 0.945657 0.031685 0.612804\nv 0.913881 -0.104132 0.601365\nv 0.945349 0.006610 0.546999\nv 0.944605 0.002781 0.545686\nv 0.930176 -0.063739 0.539733\nv 0.912736 -0.110635 0.597146\nv 0.912451 -0.110452 0.600246\nv 0.925445 -0.078910 0.550658\nv 0.913939 -0.108257 0.591383\nv 0.931082 -0.059963 0.539285\nv 0.928696 -0.069140 0.541947\nv 0.944662 0.027455 0.612443\nv 0.947459 0.035667 0.602977\nv 0.946131 0.011356 0.550403\nv 0.913010 -0.107833 0.601051\nv 0.752434 0.421542 0.318509\nv 0.787609 0.353997 0.171459\nv 0.748375 0.425150 0.336073\nv 0.752689 0.376619 0.352255\nv 0.724389 0.489717 0.376610\nv 0.724563 0.486055 0.379787\nv 0.620794 0.496399 0.721057\nv 0.625897 0.430061 0.744445\nv 0.696982 0.464433 0.541373\nv 0.745105 0.389378 0.418444\nv 0.741165 0.438390 0.400948\nv 0.569068 0.510167 0.812599\nv 0.755948 0.427714 0.341371\nv 0.689851 0.516144 0.518772\nv 0.734309 0.485557 0.384644\nv 0.614266 0.552049 0.690722\nv 0.507611 0.520315 0.898554\nv 0.503581 0.579803 0.862542\nv 0.392365 0.530914 1.020187\nv 0.287120 0.599695 1.059508\nv 0.284371 0.529356 1.100468\nv 0.395013 0.453639 1.047622\nv 0.512057 0.446482 0.924358\nv 0.290244 0.456592 1.125094\nv 0.265485 0.528138 1.113831\nv 0.729873 0.382151 0.134470\nv 0.727280 0.381476 0.132973\nv 0.744209 0.385915 0.142747\nv 0.781606 0.395622 0.164341\nv 0.773720 0.438649 0.156370\nv 0.744634 0.472436 0.303021\nv 0.717813 0.446135 0.122970\nv 0.682992 0.484667 0.285047\nv 0.715036 0.446379 0.121321\nv 0.663619 0.500583 0.355322\nv 0.619130 0.529411 0.489337\nv 0.546792 0.560494 0.653642\nv 0.553516 0.570893 0.772004\nv 0.499047 0.573510 0.736643\nv 0.494125 0.582612 0.854779\nv 0.443260 0.583187 0.814510\nv 0.343767 0.593249 0.921439\nv 0.217423 0.597763 1.005612\nv 0.205544 0.592144 1.016137\nv 0.198291 0.586430 1.023874\nv 0.194351 0.577716 1.031075\nv 0.257880 0.584460 1.074513\nv 0.190489 0.501067 1.073564\nv 0.260612 0.466506 1.127400\nv 0.202519 0.426627 1.095099\nv 0.265858 0.456192 1.127567\nv 0.208159 0.416572 1.095464\nv 0.228671 0.404389 1.087767\nv 0.279780 0.446248 1.121651\nv 0.359141 0.402613 1.001903\nv 0.390178 0.443727 1.041515\nv 0.464035 0.397159 0.889157\nv 0.521360 0.391299 0.807610\nv 0.618040 0.420704 0.741327\nv 0.569385 0.382936 0.720245\nv 0.640140 0.362744 0.546200\nv 0.683095 0.345062 0.402877\nv 0.702250 0.336129 0.326878\nv 0.757076 0.370605 0.334990\nv 0.736371 0.316598 0.143407\nv 0.738833 0.318257 0.144767\nv 0.679849 0.516615 0.514934\nv 0.679076 0.520449 0.513802\nv 0.603867 0.555604 0.684620\nv 0.554488 0.567142 0.773258\nv 0.495130 0.578895 0.856106\nv 0.384542 0.591906 0.974235\nv 0.383641 0.595569 0.972697\nv 0.275407 0.601919 1.052275\nv 0.268753 0.598595 1.058877\nv 0.261832 0.592978 1.066949\nv 0.260167 0.581451 1.075587\nv 0.254360 0.524205 1.109821\nv 0.263067 0.469978 1.126545\nv 0.281999 0.450431 1.120593\nv 0.504878 0.440763 0.918899\nv 0.505480 0.436812 0.919684\nv 0.566832 0.430031 0.833334\nv 0.617483 0.424674 0.740609\nv 0.692707 0.398780 0.560236\nv 0.736116 0.384317 0.415105\nv 0.737043 0.379932 0.414122\nv 0.741180 0.472607 0.321511\nv 0.749176 0.472555 0.327619\nv 0.604776 0.551820 0.685821\nv 0.563539 0.567737 0.778876\nv 0.391200 0.593254 0.982422\nv 0.277708 0.598097 1.053612\nv 0.271340 0.595160 1.059859\nv 0.281612 0.597115 1.064910\nv 0.274566 0.591689 1.073008\nv 0.264294 0.589772 1.067964\nv 0.270417 0.583373 1.080642\nv 0.255379 0.524265 1.109702\nv 0.272428 0.475897 1.130283\nv 0.277803 0.465689 1.130418\nv 0.268532 0.459832 1.126592\nv 0.389636 0.447658 1.040597\nv 0.574115 0.439550 0.837224\nv 0.566248 0.433992 0.832591\nv 0.692208 0.402765 0.559562\nv 0.701292 0.407830 0.562173\nv 0.760127 0.381250 0.356845\nv 0.760964 0.397907 0.192953\nv 0.767279 0.391809 0.156074\nv 0.771643 0.362456 0.161143\nv 0.765329 0.368554 0.198023\nv 0.743807 0.351124 0.186266\nv 0.737895 0.392014 0.179626\nv 0.750121 0.345026 0.149386\nv 0.736540 0.427460 0.135354\nv 0.730226 0.433559 0.172233\nv 0.761750 0.422669 0.150406\nv 0.755436 0.428767 0.187285\nv -0.109403 0.152559 1.152165\nv -0.112746 0.147172 1.145573\nv -0.114432 0.147189 1.148722\nv -0.107344 0.152943 1.149271\nv -0.104856 0.160483 1.152958\nv -0.121437 0.144252 1.145774\nv -0.128735 0.143976 1.140268\nv -0.105677 0.168602 1.156051\nv -0.109686 0.176111 1.158098\nv -0.117692 0.179439 1.161010\nv -0.116250 0.181823 1.158774\nv -0.124407 0.184902 1.157981\nv -0.125284 0.182304 1.160272\nv -0.133159 0.182266 1.158283\nv -0.132868 0.184861 1.155845\nv -0.140395 0.181706 1.152677\nv -0.145193 0.173959 1.151892\nv -0.145797 0.175935 1.148978\nv -0.148285 0.168395 1.145291\nv -0.146744 0.159384 1.145581\nv -0.147464 0.160275 1.142198\nv -0.143455 0.152767 1.140151\nv -0.136892 0.147055 1.139475\nv -0.129312 0.144214 1.143785\nv -0.126154 0.148126 1.129935\nv -0.117676 0.148167 1.132076\nv -0.120273 0.144017 1.142404\nv -0.134328 0.151211 1.129140\nv -0.140905 0.156934 1.129818\nv -0.144922 0.164458 1.131869\nv -0.145744 0.172594 1.134968\nv -0.143252 0.180150 1.138663\nv -0.137838 0.185932 1.142369\nv -0.130296 0.189093 1.145544\nv -0.121818 0.189135 1.147684\nv -0.113644 0.186050 1.148479\nv -0.107067 0.180326 1.147802\nv -0.103050 0.172802 1.145751\nv -0.102228 0.164667 1.142651\nv -0.104720 0.157111 1.138956\nv -0.110134 0.151329 1.135250\nv -0.107852 0.167134 1.158476\nv -0.112779 0.166152 1.156842\nv -0.107088 0.159578 1.155596\nv -0.128802 0.149039 1.145873\nv -0.134470 0.151179 1.145322\nv -0.136904 0.147079 1.143047\nv -0.143013 0.152395 1.143677\nv -0.141817 0.160366 1.147215\nv -0.142388 0.166008 1.149364\nv -0.147508 0.166941 1.148460\nv -0.140165 0.179329 1.155334\nv -0.115565 0.171370 1.158264\nv -0.111583 0.174123 1.160380\nv -0.113553 0.166750 1.154301\nv -0.113086 0.167851 1.151391\nv -0.113034 0.161614 1.152344\nv -0.114121 0.158127 1.147180\nv -0.117476 0.154543 1.144884\nv -0.122150 0.152584 1.142916\nv -0.122786 0.151198 1.145668\nv -0.128139 0.151172 1.144317\nv -0.116089 0.171500 1.155595\nv -0.119651 0.176062 1.153082\nv -0.125401 0.177060 1.155521\nv -0.124717 0.177974 1.152590\nv -0.130753 0.177034 1.154170\nv -0.129971 0.177948 1.151263\nv -0.138932 0.171388 1.149827\nv -0.139986 0.161482 1.145537\nv -0.139036 0.162680 1.142788\nv -0.137450 0.156733 1.144243\nv -0.133298 0.153120 1.143815\nv -0.132470 0.154470 1.141097\nv -0.127405 0.152558 1.141589\nv -0.112209 0.160510 1.154692\nv -0.114608 0.156844 1.150012\nv -0.113937 0.155270 1.152130\nv -0.117692 0.151261 1.149560\nv -0.118025 0.153194 1.147672\nv -0.122922 0.149068 1.147358\nv -0.120241 0.175113 1.156023\nv -0.120126 0.175340 1.158734\nv -0.125794 0.177479 1.158183\nv -0.131674 0.177450 1.156698\nv -0.136905 0.175258 1.154497\nv -0.135514 0.175038 1.152166\nv -0.140659 0.171248 1.151927\nv -0.140505 0.166618 1.147494\nv -0.139031 0.155148 1.145793\nv -0.112576 0.162809 1.149470\nv -0.139545 0.167722 1.144709\nv -0.115575 0.172514 1.152662\nv -0.134646 0.175989 1.149296\nv -0.138001 0.172405 1.146999\nv -0.136546 0.158017 1.141517\nv -0.519170 0.645325 0.660805\nv -0.470764 0.657273 0.741166\nv -0.536443 0.639825 0.624719\nv -0.536705 0.633472 0.635312\nv -0.534167 0.651194 0.606268\nv -0.517450 0.657582 0.640414\nv -0.470432 0.670368 0.719686\nv -0.419204 0.656966 0.812479\nv -0.418541 0.665297 0.802965\nv -0.416712 0.679872 0.783979\nv -0.399161 0.687257 0.792956\nv -0.394256 0.668000 0.825986\nv -0.532153 0.656209 0.598410\nv -0.405472 0.659969 0.823439\nv -0.542450 0.650297 0.581254\nv -0.545103 0.645797 0.585351\nv -0.547325 0.636578 0.599625\nv -0.546895 0.631859 0.609802\nv -0.400013 0.636074 0.820794\nv -0.461099 0.627674 0.748701\nv -0.420768 0.650640 0.824802\nv -0.378251 0.641466 0.838418\nv -0.402681 0.655256 0.839318\nv -0.526929 0.630882 0.676381\nv -0.509019 0.616728 0.668078\nv -0.544356 0.625924 0.639558\nv -0.525921 0.612080 0.631000\nv -0.536517 0.610285 0.603456\nv -0.554604 0.610743 0.545955\nv -0.573439 0.628351 0.549916\nv -0.556014 0.614728 0.533738\nv -0.567708 0.638561 0.544687\nv -0.549298 0.628828 0.524896\nv -0.561891 0.644526 0.549730\nv -0.542376 0.636811 0.528426\nv -0.516935 0.656519 0.559192\nv -0.529532 0.666305 0.593197\nv -0.504810 0.663564 0.578637\nv -0.512909 0.672917 0.626007\nv -0.488012 0.670199 0.611699\nv -0.466415 0.685921 0.704532\nv -0.442171 0.682700 0.689072\nv -0.409595 0.696522 0.772836\nv -0.383718 0.693644 0.758739\nv -0.364221 0.693687 0.782504\nv -0.386703 0.695533 0.803261\nv -0.359569 0.691400 0.791110\nv -0.355600 0.684103 0.805620\nv -0.363007 0.654648 0.837574\nv -0.370611 0.646346 0.840385\nv -0.383247 0.691044 0.814913\nv -0.389362 0.667354 0.839935\nv -0.390400 0.683474 0.809761\nv -0.393654 0.685999 0.801750\nv -0.397555 0.664678 0.826340\nv -0.395187 0.660364 0.841632\nv -0.391584 0.697248 0.794306\nv -0.415545 0.686116 0.774507\nv -0.470053 0.675822 0.708791\nv -0.516127 0.662759 0.630626\nv -0.540542 0.660216 0.575420\nv -0.560472 0.636680 0.558258\nv -0.562588 0.634469 0.555680\nv -0.563732 0.632371 0.556787\nv -0.572144 0.625463 0.561011\nv -0.562654 0.631925 0.562163\nv -0.554899 0.624323 0.613433\nv -0.519567 0.638246 0.671409\nv -0.470715 0.649632 0.751750\nv -0.477760 0.642593 0.757647\nv -0.280247 0.115302 1.056809\nv -0.289489 0.115386 1.063333\nv -0.270108 0.133474 1.074997\nv -0.268175 0.157307 1.089028\nv -0.284378 0.178425 1.100447\nv -0.274755 0.183034 1.096686\nv -0.288882 0.206887 1.096849\nv -0.315622 0.217575 1.093751\nv -0.308325 0.225098 1.089492\nv -0.330236 0.234999 1.075693\nv -0.355484 0.226816 1.064097\nv -0.351154 0.235027 1.057630\nv -0.368014 0.225176 1.037950\nv -0.371176 0.217648 1.045780\nv -0.378153 0.207004 1.019763\nv -0.380085 0.183172 1.005732\nv -0.382411 0.178553 1.015794\nv -0.376288 0.154609 1.008667\nv -0.373506 0.157445 0.998074\nv -0.359379 0.133591 0.997910\nv -0.363139 0.132408 1.008515\nv -0.345043 0.115459 1.015362\nv -0.339936 0.115381 1.005267\nv -0.324650 0.106243 1.028206\nv -0.293928 0.119790 0.991136\nv -0.272964 0.119762 1.009239\nv -0.297107 0.105451 1.037130\nv -0.315888 0.129713 0.977306\nv -0.335374 0.147965 0.969933\nv -0.349532 0.171871 0.970097\nv -0.356126 0.197655 0.977772\nv -0.354189 0.221540 0.991834\nv -0.344028 0.239752 1.010061\nv -0.327130 0.249625 1.029784\nv -0.306167 0.249597 1.047887\nv -0.284206 0.239674 1.061717\nv -0.264720 0.221423 1.069091\nv -0.250562 0.197516 1.068927\nv -0.243968 0.171733 1.061252\nv -0.245905 0.147847 1.047189\nv -0.256066 0.129635 1.028962\nv -0.318025 0.105479 1.019068\nv -0.291449 0.157530 1.083498\nv -0.296021 0.175408 1.088820\nv -0.278254 0.154480 1.093319\nv -0.280053 0.132299 1.080260\nv -0.299837 0.128341 1.061109\nv -0.311554 0.121495 1.047434\nv -0.305181 0.106218 1.045016\nv -0.367873 0.192065 1.035365\nv -0.380612 0.200735 1.028853\nv -0.360828 0.204693 1.048004\nv -0.336015 0.226790 1.080907\nv -0.297526 0.200626 1.100599\nv -0.285036 0.164817 1.068214\nv -0.290433 0.161040 1.075688\nv -0.286236 0.150017 1.059501\nv -0.292532 0.138731 1.048206\nv -0.303003 0.132614 1.035985\nv -0.303531 0.192402 1.080635\nv -0.297894 0.195606 1.073071\nv -0.323576 0.213064 1.059933\nv -0.353586 0.203971 1.043379\nv -0.347036 0.206964 1.036495\nv -0.353332 0.195679 1.025200\nv -0.357060 0.161128 1.018155\nv -0.350447 0.164902 1.011731\nv -0.341674 0.150089 1.011630\nv -0.335825 0.134520 1.022705\nv -0.329600 0.138780 1.016198\nv -0.315992 0.132631 1.024768\nv -0.294595 0.177314 1.080532\nv -0.291655 0.145965 1.066812\nv -0.292792 0.140969 1.073748\nv -0.298069 0.134470 1.055308\nv -0.305838 0.191984 1.088933\nv -0.315830 0.203922 1.075982\nv -0.319349 0.204639 1.083821\nv -0.334576 0.211519 1.074231\nv -0.329690 0.210185 1.067253\nv -0.342921 0.210202 1.055827\nv -0.349111 0.211538 1.061679\nv -0.360000 0.192476 1.031874\nv -0.369216 0.175504 1.025615\nv -0.361222 0.177401 1.022999\nv -0.364644 0.157626 1.020293\nv -0.354827 0.141050 1.020180\nv -0.348124 0.146039 1.018051\nv -0.341316 0.128395 1.025292\nv -0.308734 0.128239 1.042860\nv -0.326090 0.121514 1.034882\nv -0.321965 0.128256 1.031434\nv -0.354533 0.180879 1.016487\nv -0.289121 0.180793 1.072970\nv -0.309969 0.206915 1.068503\nv -0.336566 0.213081 1.048716\nv -0.916841 -0.081096 0.547119\nv -0.893456 -0.109616 0.587232\nv -0.905486 -0.079047 0.544346\nv -0.904810 -0.111665 0.590006\nv -0.891933 -0.112276 0.595398\nv -0.903287 -0.114325 0.598172\nv -0.891854 -0.110218 0.600840\nv -0.903208 -0.112267 0.603613\nv -0.920391 -0.070368 0.537683\nv -0.909036 -0.068320 0.534909\nv -0.922123 -0.064031 0.535114\nv -0.910769 -0.061982 0.532340\nv -0.892682 -0.106213 0.602252\nv -0.904036 -0.108262 0.605026\nv -0.923355 -0.058821 0.534600\nv -0.912000 -0.056773 0.531826\nv -0.936851 0.003928 0.540998\nv -0.925497 0.005977 0.538224\nv -0.937882 0.009224 0.542714\nv -0.926528 0.011272 0.539940\nv -0.938814 0.014864 0.546728\nv -0.927460 0.016913 0.543954\nv -0.939720 0.022822 0.557779\nv -0.928365 0.024871 0.555005\nv -0.940208 0.040746 0.602742\nv -0.928853 0.042795 0.599968\nv -0.939597 0.041186 0.611159\nv -0.928243 0.043235 0.608385\nv -0.938302 0.037618 0.616205\nv -0.927036 0.039751 0.613431\nv -0.937144 0.033102 0.616939\nv -0.925790 0.035151 0.614166\nv -0.935937 0.027971 0.616503\nv -0.924583 0.030020 0.613729\nv -0.905131 -0.103609 0.605422\nv -0.893776 -0.101560 0.602647\nv -0.941971 0.018497 0.560474\nv -0.941167 0.011356 0.550403\nv -0.939641 0.002780 0.545686\nv -0.926118 -0.059964 0.539285\nv -0.920481 -0.078911 0.550658\nv -0.907772 -0.110635 0.597146\nv -0.908046 -0.107833 0.601051\nv -0.940693 0.031685 0.612804\nv -0.908917 -0.104132 0.601365\nv -0.923732 -0.069140 0.541947\nv -0.908975 -0.108257 0.591383\nv -0.925212 -0.063740 0.539733\nv -0.907487 -0.110452 0.600246\nv -0.942153 0.036383 0.609104\nv -0.941510 0.034924 0.612404\nv -0.942495 0.035666 0.602977\nv -0.940385 0.006609 0.546999\nv -0.939698 0.027454 0.612443\nv -0.747472 0.421087 0.318509\nv -0.776644 0.395168 0.164341\nv -0.739672 0.471982 0.303021\nv -0.743413 0.424696 0.336073\nv -0.747727 0.376165 0.352255\nv -0.719427 0.489262 0.376610\nv -0.615830 0.495945 0.721057\nv -0.692020 0.463978 0.541373\nv -0.736203 0.437936 0.400948\nv -0.564104 0.509713 0.812599\nv -0.569153 0.439096 0.837224\nv -0.609304 0.551595 0.690722\nv -0.558575 0.567283 0.778876\nv -0.502649 0.519861 0.898554\nv -0.386236 0.592800 0.982422\nv -0.387401 0.530459 1.020187\nv -0.279407 0.528902 1.100468\nv -0.507095 0.446028 0.924358\nv -0.272839 0.465235 1.130418\nv -0.260521 0.527683 1.113831\nv -0.267464 0.475442 1.130283\nv -0.265453 0.582918 1.080642\nv -0.269602 0.591235 1.073008\nv -0.276648 0.596660 1.064910\nv -0.722318 0.381476 0.132973\nv -0.712851 0.446135 0.122971\nv -0.724911 0.382151 0.134470\nv -0.710074 0.446379 0.121321\nv -0.731409 0.316598 0.143408\nv -0.733871 0.318257 0.144768\nv -0.782647 0.353542 0.171460\nv -0.756788 0.422669 0.150406\nv -0.731578 0.427460 0.135354\nv -0.768758 0.438195 0.156370\nv -0.678030 0.484667 0.285048\nv -0.658657 0.500583 0.355322\nv -0.614168 0.529411 0.489337\nv -0.598903 0.555149 0.684620\nv -0.541830 0.560494 0.653642\nv -0.548552 0.570438 0.772004\nv -0.494083 0.573510 0.736643\nv -0.438296 0.583187 0.814510\nv -0.338803 0.593249 0.921439\nv -0.270443 0.601464 1.052275\nv -0.212461 0.597763 1.005612\nv -0.200582 0.592144 1.016137\nv -0.256868 0.592524 1.066949\nv -0.193329 0.586430 1.023874\nv -0.189387 0.577716 1.031075\nv -0.185525 0.501067 1.073564\nv -0.249396 0.523751 1.109821\nv -0.197555 0.426627 1.095099\nv -0.260894 0.455738 1.127567\nv -0.203195 0.416572 1.095464\nv -0.223707 0.404389 1.087767\nv -0.274816 0.445793 1.121651\nv -0.385214 0.443273 1.041515\nv -0.354177 0.402613 1.001903\nv -0.500516 0.436358 0.919684\nv -0.459071 0.397159 0.889157\nv -0.561868 0.429576 0.833334\nv -0.516396 0.391299 0.807610\nv -0.564421 0.382936 0.720245\nv -0.687745 0.398326 0.560236\nv -0.635176 0.362744 0.546200\nv -0.678133 0.345062 0.402877\nv -0.697288 0.336129 0.326878\nv -0.752114 0.370150 0.334990\nv -0.674887 0.516160 0.514934\nv -0.674112 0.519995 0.513802\nv -0.489161 0.582158 0.854779\nv -0.379578 0.591451 0.974235\nv -0.378677 0.595115 0.972697\nv -0.263789 0.598141 1.058877\nv -0.266376 0.594706 1.059859\nv -0.259330 0.589317 1.067964\nv -0.252916 0.584005 1.074513\nv -0.255648 0.466052 1.127400\nv -0.561284 0.433538 0.832591\nv -0.612521 0.424220 0.740609\nv -0.613076 0.420250 0.741327\nv -0.687244 0.402311 0.559562\nv -0.732081 0.379477 0.414122\nv -0.750986 0.427260 0.341371\nv -0.736218 0.472152 0.321511\nv -0.729347 0.485103 0.384644\nv -0.744214 0.472100 0.327619\nv -0.719601 0.485601 0.379787\nv -0.684887 0.515690 0.518772\nv -0.599814 0.551366 0.685821\nv -0.549524 0.566687 0.773258\nv -0.498618 0.579349 0.862542\nv -0.490166 0.578441 0.856106\nv -0.282156 0.599241 1.059508\nv -0.272744 0.597643 1.053612\nv -0.255203 0.580997 1.075587\nv -0.250415 0.523810 1.109702\nv -0.258103 0.469523 1.126545\nv -0.263568 0.459377 1.126592\nv -0.285280 0.456137 1.125094\nv -0.277035 0.449976 1.120593\nv -0.390050 0.453184 1.047622\nv -0.384672 0.447204 1.040597\nv -0.499915 0.440308 0.918899\nv -0.620933 0.429606 0.744445\nv -0.696328 0.407376 0.562173\nv -0.740143 0.388923 0.418444\nv -0.731154 0.383862 0.415105\nv -0.755165 0.380796 0.356845\nv -0.732933 0.392014 0.179627\nv -0.756002 0.397907 0.192953\nv -0.760367 0.368554 0.198023\nv -0.750474 0.428767 0.187285\nv -0.762317 0.391809 0.156074\nv -0.766681 0.362456 0.161144\nv -0.745159 0.345026 0.149386\nv -0.738845 0.351124 0.186266\nv -0.739247 0.385915 0.142747\nv -0.725264 0.433559 0.172233\nv 0.615933 -0.234543 -0.072129\nv 0.654051 -0.171171 -0.029940\nv 0.655384 -0.168866 -0.049479\nv 0.614659 -0.236847 -0.052532\nv 0.687757 -0.037979 -0.001779\nv 0.686362 -0.040777 0.017690\nv 0.647383 -0.163113 -0.102313\nv 0.608114 -0.228917 -0.123121\nv 0.640267 -0.160992 -0.119410\nv 0.679205 -0.030134 -0.058159\nv 0.690280 -0.020669 0.025266\nv 0.669927 0.005223 -0.043752\nv 0.683382 -0.009454 -0.051059\nv 0.677147 -0.001131 0.014605\nv 0.691994 -0.017629 0.005867\nv 0.671932 -0.027690 -0.075212\nv 0.600942 -0.226798 -0.140277\nv 0.656315 0.007294 -0.060066\nv 0.675769 -0.007145 -0.068138\nv 0.667655 -0.003385 0.034996\nv 0.460772 0.409407 -0.337481\nv 0.477663 0.414791 -0.342912\nv 0.472474 0.395312 -0.334623\nv 0.443101 0.414791 -0.335892\nv 0.449070 0.423503 -0.340340\nv 0.437951 0.405762 -0.317536\nv 0.443881 0.404024 -0.332051\nv 0.459510 0.426831 -0.343696\nv 0.477601 0.434854 -0.336395\nv 0.470431 0.423503 -0.344678\nv 0.488401 0.421844 -0.333756\nv 0.489567 0.405762 -0.328020\nv 0.478444 0.404024 -0.339071\nv 0.480652 0.392752 -0.321377\nv 0.465062 0.387783 -0.316365\nv 0.462034 0.391984 -0.331267\nv 0.451113 0.395312 -0.330284\nv 0.451558 0.445565 -0.301074\nv 0.436785 0.421844 -0.323272\nv 0.445700 0.434854 -0.329915\nv 0.442643 0.432555 -0.294431\nv 0.443809 0.416474 -0.288695\nv 0.467150 0.450535 -0.306086\nv 0.461291 0.439823 -0.334928\nv 0.483459 0.445565 -0.307554\nv 0.494260 0.432555 -0.304915\nv 0.495424 0.416474 -0.299179\nv 0.486510 0.403464 -0.292536\nv 0.470920 0.398494 -0.287524\nv 0.454609 0.403464 -0.286057\nv 0.448751 0.392752 -0.314898\nv -0.609695 -0.236847 -0.052532\nv -0.650420 -0.168866 -0.049479\nv -0.649087 -0.171171 -0.029940\nv -0.610969 -0.234543 -0.072129\nv -0.682793 -0.037980 -0.001779\nv -0.642419 -0.163113 -0.102313\nv -0.603150 -0.228917 -0.123121\nv -0.666968 -0.027691 -0.075212\nv -0.674241 -0.030134 -0.058159\nv -0.678418 -0.009454 -0.051059\nv -0.664963 0.005222 -0.043752\nv -0.670805 -0.007146 -0.068138\nv -0.687030 -0.017629 0.005867\nv -0.672183 -0.001131 0.014605\nv -0.651351 0.007294 -0.060066\nv -0.595978 -0.226798 -0.140277\nv -0.635303 -0.160992 -0.119410\nv -0.662691 -0.003386 0.034996\nv -0.681398 -0.040778 0.017690\nv -0.685316 -0.020670 0.025266\nv -0.455810 0.409407 -0.337481\nv -0.438139 0.414791 -0.335892\nv -0.465469 0.423503 -0.344678\nv -0.472701 0.414791 -0.342912\nv -0.444108 0.423503 -0.340340\nv -0.438919 0.404024 -0.332051\nv -0.456327 0.439823 -0.334928\nv -0.454546 0.426831 -0.343696\nv -0.472639 0.434854 -0.336395\nv -0.484603 0.405762 -0.328020\nv -0.473480 0.404024 -0.339071\nv -0.467510 0.395312 -0.334623\nv -0.457072 0.391984 -0.331267\nv -0.446151 0.395312 -0.330284\nv -0.437681 0.432555 -0.294431\nv -0.440738 0.434854 -0.329915\nv -0.431823 0.421844 -0.323272\nv -0.446596 0.445565 -0.301074\nv -0.438845 0.416474 -0.288695\nv -0.432987 0.405762 -0.317536\nv -0.462186 0.450535 -0.306086\nv -0.478497 0.445565 -0.307554\nv -0.483439 0.421844 -0.333756\nv -0.489296 0.432555 -0.304915\nv -0.490462 0.416474 -0.299179\nv -0.475688 0.392752 -0.321377\nv -0.481546 0.403464 -0.292536\nv -0.460098 0.387783 -0.316365\nv -0.465956 0.398494 -0.287524\nv -0.449647 0.403464 -0.286057\nv -0.443787 0.392752 -0.314898\nv 0.178000 -0.163695 -0.685242\nv 0.171846 -0.106117 -0.683982\nv 0.173791 -0.163173 -0.682753\nv 0.177269 -0.106634 -0.686121\nv 0.182462 -0.164046 -0.685395\nv 0.183334 -0.106974 -0.685752\nv 0.178797 -0.210391 -0.676593\nv 0.176067 -0.209723 -0.676866\nv 0.173414 -0.208724 -0.675396\nv 0.174444 -0.223061 -0.671407\nv 0.176481 -0.223963 -0.670619\nv 0.173050 -0.218724 -0.671733\nv 0.168669 -0.063395 -0.679593\nv 0.174379 -0.061640 -0.679757\nv 0.181205 -0.060467 -0.677865\nv 0.172586 -0.049510 -0.675148\nv 0.168786 -0.054627 -0.676400\nv 0.179388 -0.047204 -0.672308\nv 0.181076 -0.209733 -0.675041\nv 0.185789 -0.163705 -0.682405\nv 0.182180 -0.208743 -0.672202\nv 0.187422 -0.163189 -0.677788\nv 0.188224 -0.106617 -0.682131\nv 0.191017 -0.106087 -0.677000\nv 0.179920 -0.218731 -0.669231\nv 0.178564 -0.223063 -0.669907\nv 0.187617 -0.061625 -0.674937\nv 0.191835 -0.063368 -0.671156\nv 0.186358 -0.049506 -0.670135\nv 0.189932 -0.054615 -0.668702\nv 0.167136 -0.105944 -0.675297\nv 0.169628 -0.208391 -0.666933\nv 0.171002 -0.227507 -0.661615\nv 0.177093 -0.221753 -0.660906\nv 0.185065 -0.163017 -0.668277\nv 0.188531 -0.052770 -0.660251\nv 0.152999 -0.217635 -0.673844\nv 0.165383 -0.210253 -0.671763\nv 0.153332 -0.164392 -0.683522\nv 0.162958 -0.106375 -0.680683\nv 0.159370 -0.061625 -0.676434\nv 0.195699 -0.106352 -0.668763\nv 0.207623 -0.107323 -0.664497\nv 0.191693 -0.163455 -0.669653\nv 0.203566 -0.164392 -0.665238\nv 0.185971 -0.210268 -0.664267\nv 0.196673 -0.217635 -0.657949\nv 0.182480 -0.225301 -0.661666\nv 0.190910 -0.237497 -0.654438\nv 0.177981 -0.233304 -0.661026\nv 0.181888 -0.247094 -0.654728\nv 0.171524 -0.249326 -0.657658\nv 0.161737 -0.247094 -0.662063\nv 0.166770 -0.163226 -0.674916\nv 0.166877 -0.209270 -0.667680\nv 0.165285 -0.163442 -0.679268\nv 0.164431 -0.106160 -0.676298\nv 0.161049 -0.063195 -0.672391\nv 0.161904 -0.050971 -0.669488\nv 0.160403 -0.047806 -0.673048\nv 0.167475 -0.042593 -0.665464\nv 0.166933 -0.038214 -0.668296\nv 0.175631 -0.039365 -0.661647\nv 0.176489 -0.034474 -0.663789\nv 0.184240 -0.042593 -0.659362\nv 0.186599 -0.038214 -0.661138\nv 0.190860 -0.050965 -0.658947\nv 0.194387 -0.047801 -0.660678\nv 0.193048 -0.063169 -0.660740\nv 0.196977 -0.061604 -0.662742\nv 0.191756 -0.106131 -0.666348\nv 0.187762 -0.163242 -0.667272\nv 0.182218 -0.209289 -0.662092\nv 0.179211 -0.223447 -0.659611\nv 0.175816 -0.230365 -0.658951\nv 0.172412 -0.232015 -0.659663\nv 0.173235 -0.235547 -0.662014\nv 0.169376 -0.230365 -0.661296\nv 0.169002 -0.233304 -0.664294\nv 0.167325 -0.223442 -0.663938\nv 0.166109 -0.225297 -0.667625\nv 0.179646 -0.208412 -0.663283\nv 0.174825 -0.227507 -0.660224\nv 0.172807 -0.228487 -0.660654\nv 0.169809 -0.221748 -0.663558\nv 0.169487 -0.162999 -0.673951\nv 0.163863 -0.063980 -0.671566\nv 0.164475 -0.052778 -0.669008\nv 0.169087 -0.045467 -0.665640\nv 0.175880 -0.042783 -0.662483\nv 0.183037 -0.045466 -0.660562\nv 0.190340 -0.063949 -0.661924\nv 0.189046 -0.105910 -0.667317\nv 0.147697 -0.164392 -0.668040\nv 0.151055 -0.107323 -0.685086\nv 0.145420 -0.107323 -0.669605\nv 0.147364 -0.217635 -0.658363\nv 0.146788 -0.056863 -0.679682\nv 0.141153 -0.056863 -0.664200\nv 0.148751 -0.037783 -0.674461\nv 0.143117 -0.037783 -0.658979\nv 0.159478 -0.023824 -0.666659\nv 0.153843 -0.023823 -0.651178\nv 0.175080 -0.018124 -0.659184\nv 0.169446 -0.018124 -0.643702\nv 0.191672 -0.023823 -0.654942\nv 0.186037 -0.023823 -0.639460\nv 0.204506 -0.037783 -0.654168\nv 0.198871 -0.037783 -0.638686\nv 0.208838 -0.056863 -0.657097\nv 0.203204 -0.056863 -0.641615\nv 0.201988 -0.107323 -0.649016\nv 0.197931 -0.164392 -0.649756\nv 0.191038 -0.217635 -0.642467\nv 0.185275 -0.237497 -0.638956\nv 0.176253 -0.247094 -0.639247\nv 0.165889 -0.249326 -0.642176\nv 0.156102 -0.247094 -0.646581\nv 0.154803 -0.237498 -0.667579\nv 0.149169 -0.237497 -0.652098\nv -0.173036 -0.163695 -0.685242\nv -0.166882 -0.106117 -0.683982\nv -0.172305 -0.106634 -0.686121\nv -0.168827 -0.163173 -0.682753\nv -0.177498 -0.164046 -0.685395\nv -0.178370 -0.106974 -0.685752\nv -0.173833 -0.210391 -0.676593\nv -0.171103 -0.209723 -0.676866\nv -0.168450 -0.208724 -0.675396\nv -0.169480 -0.223061 -0.671407\nv -0.171517 -0.223963 -0.670619\nv -0.168086 -0.218724 -0.671733\nv -0.163705 -0.063395 -0.679593\nv -0.169415 -0.061641 -0.679757\nv -0.176241 -0.060467 -0.677865\nv -0.167622 -0.049510 -0.675148\nv -0.163822 -0.054627 -0.676400\nv -0.174424 -0.047204 -0.672308\nv -0.176112 -0.209733 -0.675041\nv -0.180825 -0.163705 -0.682405\nv -0.177216 -0.208743 -0.672202\nv -0.182458 -0.163189 -0.677788\nv -0.183260 -0.106617 -0.682131\nv -0.186053 -0.106087 -0.677000\nv -0.174956 -0.218731 -0.669231\nv -0.173600 -0.223063 -0.669907\nv -0.182653 -0.061625 -0.674937\nv -0.186871 -0.063368 -0.671156\nv -0.181394 -0.049506 -0.670135\nv -0.184968 -0.054615 -0.668702\nv -0.170916 -0.042783 -0.662483\nv -0.159511 -0.052778 -0.669008\nv -0.158899 -0.063980 -0.671566\nv -0.164523 -0.162999 -0.673951\nv -0.164845 -0.221748 -0.663558\nv -0.167843 -0.228487 -0.660654\nv -0.169861 -0.227507 -0.660224\nv -0.172129 -0.221753 -0.660906\nv -0.148035 -0.217635 -0.673844\nv -0.160321 -0.163442 -0.679268\nv -0.157994 -0.106375 -0.680683\nv -0.154406 -0.061625 -0.676434\nv -0.155439 -0.047806 -0.673048\nv -0.170116 -0.018124 -0.659184\nv -0.186708 -0.023824 -0.654942\nv -0.189423 -0.047801 -0.660678\nv -0.192013 -0.061604 -0.662742\nv -0.190735 -0.106352 -0.668763\nv -0.186729 -0.163455 -0.669653\nv -0.198602 -0.164392 -0.665238\nv -0.181007 -0.210268 -0.664267\nv -0.191709 -0.217635 -0.657949\nv -0.177516 -0.225301 -0.661666\nv -0.173017 -0.233304 -0.661026\nv -0.164038 -0.233304 -0.664294\nv -0.156773 -0.247094 -0.662063\nv -0.149840 -0.237498 -0.667579\nv -0.160419 -0.210253 -0.671763\nv -0.161806 -0.163226 -0.674916\nv -0.161913 -0.209270 -0.667680\nv -0.159467 -0.106160 -0.676298\nv -0.156085 -0.063195 -0.672391\nv -0.156940 -0.050971 -0.669488\nv -0.162511 -0.042593 -0.665464\nv -0.161969 -0.038214 -0.668296\nv -0.170667 -0.039365 -0.661647\nv -0.171525 -0.034475 -0.663789\nv -0.179276 -0.042593 -0.659362\nv -0.181635 -0.038214 -0.661138\nv -0.185896 -0.050965 -0.658947\nv -0.188085 -0.063169 -0.660740\nv -0.186793 -0.106131 -0.666348\nv -0.182798 -0.163242 -0.667272\nv -0.177254 -0.209289 -0.662092\nv -0.174247 -0.223447 -0.659611\nv -0.170852 -0.230365 -0.658951\nv -0.167448 -0.232015 -0.659663\nv -0.168271 -0.235547 -0.662014\nv -0.164412 -0.230365 -0.661296\nv -0.162361 -0.223442 -0.663938\nv -0.161145 -0.225297 -0.667625\nv -0.174682 -0.208412 -0.663283\nv -0.180101 -0.163017 -0.668277\nv -0.184082 -0.105910 -0.667317\nv -0.185376 -0.063949 -0.661924\nv -0.183567 -0.052770 -0.660251\nv -0.178073 -0.045466 -0.660562\nv -0.164123 -0.045467 -0.665640\nv -0.162172 -0.105944 -0.675297\nv -0.164664 -0.208391 -0.666933\nv -0.166038 -0.227507 -0.661615\nv -0.146091 -0.107323 -0.685086\nv -0.142733 -0.164392 -0.668040\nv -0.140456 -0.107323 -0.669605\nv -0.148368 -0.164392 -0.683522\nv -0.142400 -0.217635 -0.658363\nv -0.144205 -0.237497 -0.652098\nv -0.141824 -0.056863 -0.679682\nv -0.136189 -0.056863 -0.664200\nv -0.143787 -0.037783 -0.674461\nv -0.138153 -0.037783 -0.658979\nv -0.154514 -0.023824 -0.666659\nv -0.148879 -0.023824 -0.651178\nv -0.164482 -0.018124 -0.643702\nv -0.181073 -0.023824 -0.639460\nv -0.199542 -0.037783 -0.654168\nv -0.193907 -0.037783 -0.638686\nv -0.203875 -0.056863 -0.657097\nv -0.198240 -0.056863 -0.641615\nv -0.202659 -0.107323 -0.664497\nv -0.197024 -0.107323 -0.649016\nv -0.192968 -0.164392 -0.649756\nv -0.186074 -0.217635 -0.642467\nv -0.185946 -0.237497 -0.654438\nv -0.180311 -0.237497 -0.638956\nv -0.176924 -0.247094 -0.654728\nv -0.171289 -0.247094 -0.639247\nv -0.166560 -0.249326 -0.657658\nv -0.160925 -0.249326 -0.642176\nv -0.151138 -0.247094 -0.646581\nv 0.719260 0.263840 0.345484\nv 0.723662 0.256323 0.327421\nv 0.719647 0.257745 0.344490\nv 0.718713 0.266687 0.346337\nv 0.720982 0.265263 0.336694\nv 0.694051 0.264341 0.447319\nv 0.694063 0.270144 0.446043\nv 0.693559 0.255771 0.443537\nv 0.718012 0.250033 0.344586\nv 0.716538 0.245569 0.344826\nv 0.693027 0.250198 0.439891\nv 0.720905 0.249539 0.331918\nv 0.687000 0.266472 0.474251\nv 0.688480 0.273541 0.465829\nv 0.713378 0.269001 0.321742\nv 0.716339 0.257337 0.313245\nv 0.716515 0.274702 0.329585\nv 0.711656 0.274051 0.329219\nv 0.713425 0.277476 0.342188\nv 0.708479 0.276359 0.339617\nv 0.681647 0.283339 0.447242\nv 0.680644 0.283859 0.472649\nv 0.677290 0.282677 0.466469\nv 0.678680 0.277813 0.482630\nv 0.675129 0.277962 0.474347\nv 0.710927 0.244803 0.322056\nv 0.708072 0.239444 0.329461\nv 0.712439 0.237504 0.330482\nv 0.704796 0.237963 0.338678\nv 0.679128 0.242719 0.442702\nv 0.684434 0.240263 0.442347\nv 0.725595 0.266062 0.327601\nv 0.727050 0.256043 0.322352\nv 0.719636 0.268112 0.319426\nv 0.723524 0.270192 0.334663\nv 0.687208 0.284390 0.447380\nv 0.689496 0.278568 0.470253\nv 0.709341 0.235577 0.341159\nv 0.717098 0.244316 0.320167\nv 0.722655 0.256592 0.310260\nv 0.722579 0.262342 0.331069\nv 0.720949 0.272061 0.345479\nv 0.695569 0.278543 0.447127\nv 0.694117 0.272948 0.444632\nv 0.686685 0.271594 0.473452\nv 0.687630 0.274605 0.478995\nv 0.723226 0.245230 0.328469\nv 0.720123 0.240821 0.335496\nv 0.718524 0.246331 0.337409\nv 0.717735 0.239700 0.344217\nv 0.693575 0.244454 0.442280\nv -0.714298 0.263840 0.345484\nv -0.717617 0.262342 0.331069\nv -0.714685 0.257745 0.344490\nv -0.713751 0.266687 0.346337\nv -0.689087 0.264341 0.447319\nv -0.689101 0.270144 0.446043\nv -0.688595 0.255771 0.443537\nv -0.713050 0.250033 0.344586\nv -0.688065 0.250198 0.439891\nv -0.682036 0.266472 0.474251\nv -0.683518 0.273541 0.465829\nv -0.711377 0.257337 0.313245\nv -0.714674 0.268112 0.319426\nv -0.717693 0.256592 0.310260\nv -0.708416 0.269001 0.321742\nv -0.711553 0.274702 0.329585\nv -0.706694 0.274051 0.329219\nv -0.708463 0.277476 0.342188\nv -0.703517 0.276359 0.339617\nv -0.682244 0.284390 0.447380\nv -0.676685 0.283339 0.447242\nv -0.672326 0.282677 0.466469\nv -0.670167 0.277962 0.474347\nv -0.705965 0.244803 0.322056\nv -0.703110 0.239444 0.329461\nv -0.699834 0.237963 0.338678\nv -0.704379 0.235577 0.341159\nv -0.674166 0.242719 0.442702\nv -0.679470 0.240263 0.442347\nv -0.720633 0.266062 0.327601\nv -0.715987 0.272061 0.345479\nv -0.684534 0.278568 0.470253\nv -0.675680 0.283859 0.472649\nv -0.673718 0.277813 0.482630\nv -0.712136 0.244316 0.320167\nv -0.718264 0.245230 0.328469\nv -0.707477 0.237504 0.330482\nv -0.715161 0.240821 0.335496\nv -0.688613 0.244454 0.442280\nv -0.716020 0.265263 0.336694\nv -0.718562 0.270192 0.334663\nv -0.722088 0.256043 0.322352\nv -0.718700 0.256323 0.327421\nv -0.690605 0.278543 0.447127\nv -0.689153 0.272948 0.444632\nv -0.681721 0.271594 0.473452\nv -0.682666 0.274605 0.478995\nv -0.715943 0.249539 0.331918\nv -0.713562 0.246331 0.337409\nv -0.712773 0.239700 0.344217\nv -0.711576 0.245569 0.344826\nv 0.916950 -0.078916 0.513986\nv 0.942447 0.044155 0.534929\nv 0.940462 0.032288 0.525826\nv 0.944524 0.084473 0.635559\nv 0.887160 -0.161312 0.615377\nv 0.865329 0.032104 0.732133\nv 0.872784 0.043951 0.726293\nv 0.839464 -0.092401 0.720820\nv 0.936727 0.044322 0.510562\nv 0.892397 -0.084639 0.484176\nv 0.909820 -0.084386 0.496777\nv 0.921770 0.054031 0.500156\nv 0.906077 -0.098000 0.502844\nv 0.888631 -0.098336 0.490105\nv 0.913225 -0.092542 0.520057\nv 0.938632 0.056260 0.519645\nv 0.923788 0.066065 0.509260\nv 0.940168 0.103159 0.633961\nv 0.926746 0.117114 0.629132\nv 0.934991 0.103135 0.648332\nv 0.921588 0.117120 0.643349\nv 0.860774 0.055785 0.735503\nv 0.842081 0.065931 0.733877\nv 0.939312 0.084476 0.649925\nv 0.853427 0.043840 0.741390\nv 0.834602 0.053921 0.739695\nv 0.822612 -0.084310 0.736578\nv 0.800300 -0.084537 0.735101\nv 0.838464 -0.078865 0.727770\nv 0.823557 -0.097843 0.729606\nv 0.801180 -0.098142 0.728229\nv 0.851552 -0.182820 0.617655\nv 0.856502 -0.182745 0.604150\nv 0.875883 -0.175921 0.611196\nv 0.882175 -0.161385 0.628976\nv 0.870930 -0.175986 0.624832\nv -0.882196 -0.161312 0.615377\nv -0.908261 -0.092543 0.520057\nv -0.939560 0.084472 0.635559\nv -0.937483 0.044155 0.534929\nv -0.935498 0.032288 0.525826\nv -0.934348 0.084475 0.649925\nv -0.834500 -0.092402 0.720820\nv -0.833500 -0.078865 0.727770\nv -0.931763 0.044321 0.510562\nv -0.887433 -0.084640 0.484176\nv -0.916806 0.054031 0.500156\nv -0.904856 -0.084386 0.496777\nv -0.911986 -0.078916 0.513986\nv -0.883667 -0.098337 0.490105\nv -0.901113 -0.098001 0.502844\nv -0.851538 -0.182745 0.604150\nv -0.933668 0.056259 0.519645\nv -0.918824 0.066064 0.509260\nv -0.935204 0.103159 0.633961\nv -0.921782 0.117114 0.629132\nv -0.930027 0.103135 0.648332\nv -0.916624 0.117120 0.643349\nv -0.855810 0.055785 0.735503\nv -0.837117 0.065931 0.733877\nv -0.867820 0.043951 0.726293\nv -0.848463 0.043840 0.741390\nv -0.829638 0.053920 0.739695\nv -0.817648 -0.084311 0.736578\nv -0.795336 -0.084537 0.735101\nv -0.860365 0.032103 0.732133\nv -0.818593 -0.097843 0.729606\nv -0.796216 -0.098142 0.728229\nv -0.846588 -0.182820 0.617655\nv -0.870919 -0.175921 0.611196\nv -0.877211 -0.161385 0.628976\nv -0.865966 -0.175986 0.624832\nv 0.100006 -0.613804 -0.698136\nv 0.060581 -0.694580 -0.809820\nv 0.085524 -0.604620 -0.701141\nv 0.065388 -0.597396 -0.704450\nv 0.034658 -0.593366 -0.707631\nv 0.002482 -0.593333 -0.708590\nv 0.060584 -0.716768 -0.806255\nv 0.073127 -0.711259 -0.805210\nv 0.060577 -0.703572 -0.810586\nv 0.075107 -0.716815 -0.803719\nv 0.040445 -0.717134 -0.808172\nv 0.040445 -0.699820 -0.812845\nv 0.040445 -0.690806 -0.812782\nv 0.074939 -0.702234 -0.804186\nv 0.075195 -0.829487 -0.771777\nv 0.060584 -0.829487 -0.773833\nv 0.040445 -0.829487 -0.776665\nv 0.078074 -0.707993 -0.801264\nv 0.017911 -0.717134 -0.808172\nv 0.017911 -0.829487 -0.776665\nv 0.017911 -0.690806 -0.812782\nv 0.017911 -0.699820 -0.812845\nv 0.002482 -0.717134 -0.808172\nv 0.002482 -0.699820 -0.812845\nv 0.002482 -0.690806 -0.812782\nv 0.103036 -0.813241 -0.682102\nv 0.059765 -0.829487 -0.768083\nv 0.084727 -0.813241 -0.682102\nv 0.078073 -0.829487 -0.768083\nv 0.065746 -0.813241 -0.682102\nv 0.040784 -0.829487 -0.768083\nv 0.033845 -0.813241 -0.682102\nv 0.017363 -0.829487 -0.768083\nv 0.002482 -0.813241 -0.682102\nv 0.103096 -0.619965 -0.687090\nv 0.002482 -0.619965 -0.687090\nv 0.670395 -0.323122 0.223471\nv 0.671412 -0.311136 0.249562\nv 0.672839 -0.310321 0.215540\nv 0.678261 -0.180752 0.263388\nv 0.682015 -0.067581 0.312425\nv 0.684129 -0.090360 0.348800\nv 0.667572 -0.274583 0.328601\nv 0.662339 -0.323396 0.223078\nv 0.668607 -0.330732 0.238157\nv 0.668065 -0.333219 0.256048\nv 0.685259 -0.069231 0.360640\nv 0.675199 -0.067668 0.361645\nv 0.675679 -0.069531 0.368702\nv 0.685533 -0.071057 0.367567\nv 0.668159 -0.330316 0.275632\nv 0.655437 -0.274720 0.329913\nv 0.659051 -0.330738 0.276538\nv 0.652121 -0.212093 0.376529\nv 0.667195 -0.212337 0.374973\nv 0.653489 -0.307177 0.243469\nv 0.672837 -0.305568 0.234420\nv 0.671950 -0.309325 0.241452\nv 0.654235 -0.303882 0.236745\nv 0.653051 -0.308671 0.251185\nv 0.671521 -0.311516 0.258714\nv 0.653643 -0.308508 0.270114\nv 0.669460 -0.257688 0.313333\nv 0.671991 -0.311026 0.269313\nv 0.647435 -0.200957 0.356455\nv 0.664007 -0.088561 0.325447\nv 0.677160 -0.189630 0.281518\nv 0.657014 -0.188667 0.283747\nv 0.682606 -0.089060 0.323707\nv 0.667054 -0.203084 0.356244\nv 0.684159 -0.091903 0.352298\nv 0.653183 -0.308920 0.259929\nv 0.665699 -0.089715 0.349249\nv 0.665743 -0.091168 0.352603\nv 0.650460 -0.255311 0.313769\nv -0.073109 -0.829487 -0.768083\nv -0.095043 -0.613804 -0.698136\nv -0.069976 -0.702234 -0.804186\nv -0.080560 -0.604620 -0.701141\nv -0.060425 -0.597396 -0.704450\nv -0.012948 -0.690806 -0.812782\nv -0.029695 -0.593366 -0.707631\nv -0.055620 -0.716768 -0.806255\nv -0.068163 -0.711259 -0.805210\nv -0.070144 -0.716815 -0.803719\nv -0.055614 -0.703572 -0.810586\nv -0.035481 -0.717134 -0.808172\nv -0.035481 -0.699820 -0.812845\nv -0.055618 -0.694580 -0.809820\nv -0.035481 -0.690806 -0.812782\nv -0.073111 -0.707993 -0.801264\nv -0.012948 -0.717134 -0.808172\nv -0.012948 -0.829487 -0.776665\nv -0.012948 -0.699820 -0.812845\nv -0.098072 -0.813241 -0.682102\nv -0.054801 -0.829487 -0.768083\nv -0.079764 -0.813241 -0.682102\nv -0.060783 -0.813241 -0.682102\nv -0.035820 -0.829487 -0.768083\nv -0.028882 -0.813241 -0.682102\nv -0.012399 -0.829487 -0.768083\nv 0.002482 -0.829487 -0.768083\nv 0.002482 -0.829487 -0.776665\nv -0.035481 -0.829487 -0.776665\nv -0.055620 -0.829487 -0.773833\nv -0.070232 -0.829487 -0.771777\nv -0.098132 -0.619965 -0.687090\nv -0.666986 -0.309325 0.241452\nv -0.663643 -0.330732 0.238158\nv -0.665431 -0.323122 0.223471\nv -0.673297 -0.180752 0.263388\nv -0.679195 -0.091904 0.352298\nv -0.662090 -0.203084 0.356244\nv -0.662231 -0.212337 0.374973\nv -0.664496 -0.257688 0.313333\nv -0.663101 -0.333219 0.256048\nv -0.667875 -0.310321 0.215540\nv -0.659817 -0.310175 0.214945\nv -0.663195 -0.330316 0.275632\nv -0.677051 -0.067582 0.312425\nv -0.665214 -0.066248 0.312264\nv -0.680295 -0.069232 0.360640\nv -0.670235 -0.067669 0.361645\nv -0.680569 -0.071058 0.367567\nv -0.650473 -0.274720 0.329913\nv -0.662608 -0.274583 0.328601\nv -0.648525 -0.307177 0.243469\nv -0.667873 -0.305568 0.234420\nv -0.666448 -0.311136 0.249562\nv -0.648087 -0.308671 0.251185\nv -0.666557 -0.311516 0.258714\nv -0.648679 -0.308508 0.270114\nv -0.667027 -0.311026 0.269313\nv -0.645496 -0.255311 0.313769\nv -0.660735 -0.089716 0.349249\nv -0.679165 -0.090360 0.348800\nv -0.660779 -0.091169 0.352603\nv -0.672196 -0.189630 0.281518\nv -0.677642 -0.089061 0.323707\nv -0.649271 -0.303882 0.236745\nv -0.659043 -0.088561 0.325447\nv -0.652050 -0.188667 0.283747\nv -0.642471 -0.200957 0.356455\nv -0.648219 -0.308920 0.259929\nv 0.598404 -0.348654 -0.083584\nv 0.612274 -0.289147 -0.071501\nv 0.598202 -0.282142 -0.154001\nv 0.583898 -0.363831 -0.143110\nv 0.623744 -0.276901 -0.024437\nv 0.616434 -0.272494 -0.067055\nv 0.680442 0.016815 0.090682\nv 0.678931 0.018352 0.043778\nv 0.669214 0.021743 -0.051329\nv 0.601988 -0.263557 -0.153471\nv 0.592008 -0.273936 -0.198201\nv 0.575307 -0.385117 -0.160324\nv 0.542660 -0.400812 -0.141164\nv 0.561206 -0.396288 -0.165068\nv 0.535245 -0.397877 -0.164806\nv 0.566117 -0.399182 -0.141744\nv 0.582459 -0.377968 -0.084248\nv 0.566913 -0.379430 -0.082876\nv 0.579486 -0.387730 -0.139365\nv 0.594180 -0.367691 -0.087639\nv 0.590565 -0.362724 -0.061728\nv 0.601801 -0.353027 -0.067964\nv 0.562947 -0.378699 -0.179627\nv 0.576920 -0.369565 -0.173638\nv 0.579905 -0.273319 -0.206482\nv 0.561740 -0.273225 -0.206615\nv 0.537584 -0.379998 -0.179519\nv 0.594853 -0.259028 -0.197270\nv 0.583110 -0.258196 -0.205455\nv 0.651523 0.033291 -0.103813\nv 0.635189 0.034684 -0.103128\nv 0.567066 -0.258071 -0.205568\nv 0.595093 -0.347484 -0.047732\nv 0.583270 -0.348660 -0.045865\nv 0.597871 -0.297005 -0.019854\nv 0.610090 -0.296460 -0.022046\nv 0.602694 -0.280618 -0.013169\nv 0.614936 -0.280158 -0.015409\nv 0.641742 0.028623 0.108768\nv 0.605931 -0.339212 -0.054587\nv 0.619541 -0.292602 -0.030815\nv 0.578875 -0.364104 -0.059965\nv 0.673170 0.027140 0.105426\nv 0.671112 0.028522 0.053831\nv 0.660289 0.031598 -0.050788\nv 0.643407 0.029983 0.056518\nv 0.640130 0.033013 -0.049430\nv 0.661010 0.023596 -0.099533\nv 0.390872 -0.811128 -0.113266\nv 0.382798 -0.744463 -0.102354\nv 0.439970 -0.758205 -0.060048\nv 0.156558 -0.681718 0.203392\nv 0.446026 -0.763303 -0.068232\nv 0.375152 -0.756498 -0.124898\nv 0.229551 -0.772352 -0.232637\nv 0.229551 -0.721501 -0.232637\nv 0.150065 -0.753247 -0.291453\nv 0.150065 -0.702395 -0.291454\nv 0.148072 -0.763409 -0.288707\nv 0.148072 -0.691685 -0.288707\nv 0.221762 -0.705756 -0.221514\nv 0.003528 -0.648074 -0.087379\nv 0.142091 -0.686605 -0.280468\nv 0.227604 -0.710802 -0.229856\nv 0.373134 -0.745782 -0.122170\nv 0.001435 -0.644935 0.090157\nv 0.156558 -0.824703 0.203393\nv 0.439970 -0.838445 -0.060048\nv 0.388854 -0.821285 -0.110538\nv 0.380570 -0.799599 -0.108471\nv 0.378551 -0.809899 -0.105743\nv 0.371560 -0.755521 -0.110916\nv 0.378551 -0.757201 -0.105743\nv 0.365505 -0.811493 -0.102732\nv 0.390872 -0.760277 -0.113266\nv 0.380570 -0.768061 -0.108471\nv 0.152193 -0.805354 0.200163\nv 0.382798 -0.824703 -0.102354\nv 0.372495 -0.813174 -0.097559\nv 0.373579 -0.766381 -0.113644\nv 0.365505 -0.750567 -0.102732\nv 0.372495 -0.752247 -0.097559\nv 0.388854 -0.749560 -0.110538\nv 0.371560 -0.808219 -0.110916\nv 0.373579 -0.797919 -0.113644\nv 0.375152 -0.807350 -0.124898\nv 0.221762 -0.785995 -0.221514\nv 0.373134 -0.817506 -0.122170\nv 0.227604 -0.782526 -0.229856\nv 0.367078 -0.820924 -0.113986\nv 0.142091 -0.766845 -0.280468\nv 0.140838 -0.820924 0.191760\nv 0.003528 -0.767515 -0.087379\nv 0.001435 -0.767515 -0.087379\nv 0.367078 -0.740685 -0.113986\nv 0.440778 -0.774388 -0.061140\nv 0.448045 -0.824870 -0.070960\nv 0.448045 -0.774019 -0.070961\nv 0.438791 -0.770497 -0.058455\nv 0.446026 -0.835027 -0.068232\nv 0.440281 -0.825032 -0.060469\nv 0.213730 -0.816049 0.245698\nv 0.440778 -0.822486 -0.061140\nv 0.440281 -0.771704 -0.060469\nv 0.462923 -0.777146 -0.043714\nv 0.461557 -0.775969 -0.041609\nv 0.213730 -0.717855 0.245698\nv 0.236496 -0.723328 0.262544\nv 0.438791 -0.825826 -0.058455\nv 0.454254 -0.828391 -0.050129\nv 0.452584 -0.829141 -0.048248\nv 0.455291 -0.825974 -0.050401\nv 0.463021 -0.779734 -0.044681\nv -0.593440 -0.348654 -0.083584\nv -0.600967 -0.339212 -0.054587\nv -0.607310 -0.289147 -0.071501\nv -0.593238 -0.282142 -0.154001\nv -0.578934 -0.363831 -0.143110\nv -0.618780 -0.276901 -0.024437\nv -0.611470 -0.272494 -0.067055\nv -0.675478 0.016815 0.090682\nv -0.664250 0.021742 -0.051329\nv -0.597024 -0.263557 -0.153471\nv -0.596837 -0.353027 -0.067964\nv -0.571956 -0.369565 -0.173638\nv -0.589889 -0.259028 -0.197270\nv -0.537696 -0.400812 -0.141164\nv -0.556242 -0.396288 -0.165068\nv -0.561153 -0.399182 -0.141744\nv -0.530281 -0.397877 -0.164806\nv -0.561949 -0.379430 -0.082876\nv -0.577495 -0.377968 -0.084248\nv -0.574522 -0.387730 -0.139365\nv -0.589216 -0.367691 -0.087639\nv -0.585601 -0.362724 -0.061728\nv -0.557983 -0.378699 -0.179627\nv -0.570343 -0.385117 -0.160324\nv -0.587044 -0.273936 -0.198201\nv -0.574941 -0.273319 -0.206482\nv -0.532620 -0.379998 -0.179519\nv -0.556776 -0.273225 -0.206615\nv -0.578146 -0.258196 -0.205455\nv -0.656046 0.023596 -0.099533\nv -0.630225 0.034684 -0.103128\nv -0.562102 -0.258071 -0.205568\nv -0.590129 -0.347484 -0.047732\nv -0.578306 -0.348660 -0.045865\nv -0.573911 -0.364104 -0.059965\nv -0.592907 -0.297005 -0.019854\nv -0.605126 -0.296460 -0.022046\nv -0.597730 -0.280618 -0.013169\nv -0.609972 -0.280158 -0.015409\nv -0.614577 -0.292602 -0.030815\nv -0.673967 0.018352 0.043778\nv -0.668206 0.027140 0.105426\nv -0.666148 0.028522 0.053831\nv -0.655325 0.031597 -0.050788\nv -0.636778 0.028623 0.108768\nv -0.638443 0.029982 0.056518\nv -0.635166 0.033013 -0.049430\nv -0.646559 0.033291 -0.103813\nv -0.443081 -0.774019 -0.070961\nv -0.208766 -0.695460 0.245698\nv -0.377834 -0.744463 -0.102354\nv -0.383890 -0.749560 -0.110538\nv -0.224587 -0.772352 -0.232637\nv -0.224587 -0.721501 -0.232637\nv -0.145101 -0.753247 -0.291453\nv -0.145101 -0.702395 -0.291454\nv -0.216798 -0.705756 -0.221514\nv 0.001435 -0.648074 -0.087379\nv -0.137127 -0.686605 -0.280468\nv -0.222640 -0.710802 -0.229856\nv -0.143108 -0.691685 -0.288707\nv -0.151594 -0.824703 0.203393\nv -0.208766 -0.838445 0.245698\nv -0.441062 -0.835027 -0.068232\nv -0.373587 -0.757201 -0.105743\nv -0.147229 -0.698968 0.200163\nv -0.140238 -0.697288 0.194990\nv -0.367531 -0.813174 -0.097559\nv -0.375606 -0.799599 -0.108471\nv -0.385908 -0.760277 -0.113266\nv -0.375606 -0.768061 -0.108471\nv -0.377834 -0.824703 -0.102354\nv -0.147229 -0.805354 0.200163\nv -0.368615 -0.766381 -0.113644\nv -0.370188 -0.756498 -0.124898\nv -0.368615 -0.797919 -0.113644\nv -0.135874 -0.677939 0.191760\nv -0.367531 -0.752247 -0.097559\nv -0.373587 -0.809899 -0.105743\nv -0.385908 -0.811128 -0.113266\nv -0.366596 -0.808219 -0.110916\nv -0.360541 -0.811493 -0.102732\nv -0.370188 -0.807350 -0.124898\nv -0.135874 -0.820924 0.191760\nv -0.216798 -0.785995 -0.221514\nv -0.368170 -0.817506 -0.122170\nv -0.362114 -0.820924 -0.113986\nv -0.222640 -0.782526 -0.229856\nv -0.137127 -0.766845 -0.280468\nv -0.143108 -0.763409 -0.288707\nv 0.001435 -0.787920 0.090157\nv -0.383890 -0.821285 -0.110538\nv -0.360541 -0.750567 -0.102732\nv -0.368170 -0.745782 -0.122170\nv -0.362114 -0.740685 -0.113986\nv -0.366596 -0.755521 -0.110916\nv -0.443081 -0.824870 -0.070960\nv -0.435814 -0.822486 -0.061140\nv -0.441062 -0.763303 -0.068232\nv -0.435006 -0.758205 -0.060048\nv -0.435317 -0.825032 -0.060469\nv -0.435007 -0.838445 -0.060048\nv -0.435814 -0.774388 -0.061140\nv -0.457959 -0.777146 -0.043714\nv -0.433827 -0.770497 -0.058455\nv -0.456593 -0.775969 -0.041609\nv -0.435317 -0.771704 -0.060469\nv -0.433827 -0.825826 -0.058455\nv -0.208766 -0.816049 0.245698\nv -0.231532 -0.723328 0.262544\nv -0.447620 -0.829141 -0.048248\nv -0.450327 -0.825974 -0.050401\nv -0.458057 -0.779734 -0.044681\nv -0.449290 -0.828391 -0.050129\nv 0.110782 0.777539 -0.011285\nv 0.002481 0.717255 -0.131067\nv 0.108130 0.713724 -0.126224\nv 0.002481 0.783691 -0.012971\nv 0.114659 0.826828 0.105142\nv 0.002481 0.835012 0.106135\nv 0.118977 0.861972 0.214082\nv 0.122952 0.883352 0.306559\nv 0.002481 0.893923 0.311760\nv 0.127725 0.889998 0.419762\nv 0.178745 0.875970 0.408423\nv 0.182129 0.862013 0.454376\nv 0.323938 0.792360 0.376684\nv 0.327577 0.782438 0.392402\nv 0.392168 0.730950 0.290708\nv 0.444687 0.661631 0.183199\nv 0.129620 0.875419 0.467717\nv 0.130032 0.864508 0.486232\nv 0.002481 0.874786 0.497061\nv 0.378722 0.745434 0.259046\nv 0.437247 0.669965 0.173824\nv 0.427408 0.679442 0.161746\nv 0.454039 0.636739 0.118468\nv 0.442899 0.647984 0.108997\nv 0.405381 0.694161 0.135313\nv 0.410366 0.677651 0.098242\nv 0.363507 0.744568 0.188434\nv 0.358758 0.729184 0.130290\nv 0.300225 0.801327 0.245854\nv 0.292692 0.783926 0.171397\nv 0.171524 0.869561 0.299001\nv 0.165993 0.849049 0.209222\nv 0.160167 0.815379 0.103384\nv 0.285880 0.755706 0.083739\nv 0.155096 0.768221 -0.009690\nv 0.280773 0.717151 -0.010005\nv 0.278359 0.668745 -0.102720\nv 0.151831 0.707244 -0.121178\nv 0.355849 0.704241 0.061038\nv 0.415013 0.653033 0.045427\nv 0.418178 0.623704 -0.013706\nv 0.354215 0.671406 -0.014047\nv 0.419941 0.591152 -0.075516\nv 0.353943 0.631984 -0.089768\nv 0.355114 0.587280 -0.160928\nv 0.420380 0.556871 -0.136359\nv 0.357429 0.540578 -0.224994\nv 0.418880 0.523108 -0.192340\nv 0.409583 0.469993 -0.270953\nv 0.365096 0.454160 -0.321870\nv 0.295836 0.433261 -0.375198\nv 0.283602 0.549016 -0.262022\nv 0.279624 0.610974 -0.187290\nv 0.151420 0.632118 -0.222256\nv 0.153167 0.550470 -0.311345\nv 0.160335 0.398128 -0.447236\nv 0.107487 0.635002 -0.230699\nv 0.108398 0.549485 -0.322964\nv 0.113061 0.390516 -0.463876\nv 0.002481 0.546504 -0.335204\nv 0.118571 0.291070 -0.539970\nv 0.002481 0.284528 -0.556749\nv 0.123692 0.219767 -0.583211\nv 0.314113 0.805665 0.337433\nv 0.167491 0.301269 -0.521309\nv 0.307954 0.356497 -0.433308\nv 0.378363 0.393976 -0.367032\nv 0.393537 0.341613 -0.385587\nv 0.451376 0.393539 -0.289302\nv 0.431210 0.438046 -0.283621\nv 0.440529 0.509126 -0.183615\nv 0.443719 0.540303 -0.127427\nv 0.461569 0.555411 -0.061439\nv 0.459147 0.586396 -0.002983\nv 0.453136 0.617235 0.054031\nv 0.120038 -0.247588 -0.662715\nv 0.163530 -0.245827 -0.651046\nv 0.127457 -0.141756 -0.685215\nv 0.174985 -0.068484 -0.665629\nv 0.128524 -0.069144 -0.679718\nv 0.002482 -0.069140 -0.697034\nv 0.112680 -0.316877 -0.629463\nv 0.002482 -0.316789 -0.638588\nv 0.105618 -0.389691 -0.588875\nv 0.125782 0.057650 -0.648810\nv 0.123148 0.118238 -0.627205\nv 0.002481 0.115676 -0.644427\nv 0.118533 0.214106 -0.587672\nv 0.002481 0.213354 -0.600429\nv 0.144116 -0.387321 -0.580242\nv 0.379941 -0.161277 -0.480145\nv 0.214231 -0.126291 -0.648767\nv 0.206788 -0.231966 -0.626263\nv 0.377419 -0.057004 -0.514546\nv 0.370297 0.013598 -0.519471\nv 0.214079 -0.053659 -0.644525\nv 0.208295 0.075195 -0.614943\nv 0.354019 0.138711 -0.504027\nv 0.453714 0.064181 -0.414661\nv 0.461921 -0.004092 -0.403874\nv 0.521035 0.127266 -0.280345\nv 0.528965 0.061715 -0.263602\nv 0.533537 -0.005758 -0.237129\nv 0.467147 -0.106785 -0.364351\nv 0.434830 0.184575 -0.410730\nv 0.560693 0.116423 -0.147385\nv 0.552979 0.180196 -0.168208\nv 0.534761 0.283810 -0.187765\nv 0.501981 0.239376 -0.289873\nv 0.343923 0.197871 -0.490468\nv 0.203719 0.135478 -0.594769\nv 0.195515 0.230400 -0.560847\nv 0.422383 0.242435 -0.403409\nv 0.399068 0.333008 -0.392111\nv 0.457441 0.385183 -0.294178\nv 0.487242 0.294783 -0.290749\nv 0.518080 0.336524 -0.195395\nv 0.174051 0.123631 -0.609167\nv 0.180919 -0.065928 -0.662539\nv 0.198363 -0.301256 -0.593913\nv 0.327928 -0.253654 -0.491928\nv 0.189982 -0.374034 -0.553871\nv 0.379054 -0.195628 -0.462299\nv 0.425548 -0.135506 -0.425588\nv 0.159648 -0.312504 -0.617315\nv 0.405947 0.720849 0.312740\nv 0.436300 0.685472 0.258341\nv 0.419495 0.699070 0.342813\nv 0.333985 0.783454 0.402533\nv 0.353445 0.745098 0.471346\nv 0.185423 0.852882 0.483733\nv 0.194601 0.795083 0.596094\nv 0.273819 0.770935 0.565065\nv 0.131408 0.865881 0.497991\nv 0.136350 0.806121 0.609819\nv 0.002481 0.876028 0.508826\nv 0.129819 0.860840 0.489871\nv 0.399646 0.717661 0.308626\nv 0.429517 0.682785 0.255059\nv 0.328892 0.779383 0.396856\nv 0.183013 0.847958 0.475985\nv 0.129218 0.860890 0.483318\nv 0.002481 0.870925 0.500455\nv 0.165611 0.219767 -0.570979\nv 0.163268 0.222651 -0.568293\nv 0.320617 0.290867 -0.460319\nv 0.390609 0.340168 -0.382014\nv 0.393641 0.335062 -0.385615\nv 0.451010 0.386818 -0.289417\nv 0.325524 0.289021 -0.468389\nv 0.167830 0.220022 -0.572792\nv 0.121404 0.216497 -0.580850\nv 0.161040 0.219496 -0.572806\nv 0.394587 0.717977 0.302886\nv 0.427109 0.685922 0.250328\nv 0.423997 0.683398 0.249658\nv 0.397498 0.720706 0.303896\nv 0.325181 0.779332 0.390723\nv 0.181856 0.847931 0.469459\nv 0.183061 0.851475 0.472170\nv 0.002481 0.871118 0.493997\nv 0.022415 0.216902 -0.589522\nv 0.123041 0.218352 -0.578241\nv 0.002481 0.218235 -0.594856\nv 0.002481 0.216879 -0.592387\nv 0.007465 0.216833 -0.590198\nv 0.164051 0.224587 -0.571150\nv 0.317733 0.295270 -0.457745\nv 0.319956 0.296643 -0.461998\nv 0.447894 0.391887 -0.286537\nv 0.178236 -0.064477 -0.655983\nv 0.174882 -0.068125 -0.662260\nv 0.174894 0.063827 -0.623877\nv 0.171484 0.124216 -0.602232\nv 0.173512 -0.140788 -0.671478\nv 0.163444 -0.244367 -0.647747\nv 0.173394 -0.139949 -0.668101\nv 0.153634 -0.314748 -0.619653\nv 0.153582 -0.313026 -0.616429\nv 0.171470 0.060130 -0.630237\nv 0.171510 0.060378 -0.633517\nv 0.168032 0.121588 -0.611945\nv 0.168017 0.121245 -0.608690\nv 0.161800 0.218257 -0.575289\nv 0.144079 -0.385473 -0.577065\nv 0.177508 0.062939 -0.630590\nv 0.176732 -0.136426 -0.661865\nv 0.179433 -0.138342 -0.668420\nv 0.166828 -0.240957 -0.641909\nv 0.169500 -0.243529 -0.648392\nv 0.157010 -0.309637 -0.610911\nv 0.147516 -0.382071 -0.571660\nv 0.150138 -0.385083 -0.578012\nv 0.002481 0.635303 -0.239246\nv -0.105820 0.777539 -0.011285\nv -0.103168 0.713724 -0.126224\nv -0.109697 0.826828 0.105142\nv -0.114015 0.861972 0.214082\nv 0.002481 0.871622 0.217348\nv -0.117990 0.883352 0.306559\nv 0.002481 0.900995 0.428015\nv -0.122764 0.889998 0.419762\nv -0.173783 0.875970 0.408423\nv -0.177167 0.862013 0.454376\nv -0.318976 0.792360 0.376684\nv -0.322615 0.782438 0.392402\nv -0.387206 0.730950 0.290708\nv -0.422147 0.685922 0.250328\nv -0.439725 0.661631 0.183199\nv -0.124658 0.875419 0.467717\nv -0.125070 0.864508 0.486232\nv 0.002481 0.885982 0.477840\nv -0.373760 0.745434 0.259046\nv -0.432285 0.669965 0.173824\nv -0.422446 0.679442 0.161746\nv -0.449077 0.636739 0.118468\nv -0.437937 0.647984 0.108997\nv -0.400419 0.694161 0.135313\nv -0.405404 0.677651 0.098243\nv -0.358546 0.744568 0.188434\nv -0.353796 0.729184 0.130290\nv -0.295263 0.801327 0.245854\nv -0.287730 0.783926 0.171397\nv -0.166562 0.869561 0.299001\nv -0.161031 0.849049 0.209222\nv -0.155205 0.815379 0.103384\nv -0.280918 0.755706 0.083739\nv -0.150134 0.768221 -0.009690\nv -0.275811 0.717151 -0.010005\nv -0.273397 0.668745 -0.102720\nv -0.146869 0.707244 -0.121178\nv -0.350887 0.704241 0.061038\nv -0.410051 0.653033 0.045427\nv -0.413216 0.623704 -0.013706\nv -0.349253 0.671406 -0.014047\nv -0.414979 0.591152 -0.075516\nv -0.348981 0.631984 -0.089768\nv -0.350152 0.587280 -0.160928\nv -0.415418 0.556871 -0.136359\nv -0.352467 0.540578 -0.224994\nv -0.413918 0.523108 -0.192340\nv -0.404621 0.469993 -0.270953\nv -0.360134 0.454160 -0.321870\nv -0.290872 0.433261 -0.375198\nv -0.278640 0.549016 -0.262022\nv -0.274662 0.610974 -0.187290\nv -0.146459 0.632118 -0.222256\nv -0.148205 0.550470 -0.311345\nv -0.155373 0.398128 -0.447236\nv -0.102525 0.635002 -0.230699\nv -0.103436 0.549485 -0.322964\nv -0.108099 0.390516 -0.463876\nv 0.002481 0.383051 -0.481239\nv -0.113609 0.291070 -0.539970\nv -0.118730 0.219767 -0.583211\nv -0.309151 0.805665 0.337433\nv -0.162529 0.301269 -0.521309\nv -0.302992 0.356497 -0.433308\nv -0.159089 0.224587 -0.571150\nv -0.314994 0.296643 -0.461998\nv -0.373399 0.393976 -0.367032\nv -0.388575 0.341613 -0.385587\nv -0.426246 0.438046 -0.283621\nv -0.435567 0.509126 -0.183615\nv -0.438757 0.540303 -0.127427\nv -0.456607 0.555411 -0.061439\nv -0.454185 0.586396 -0.002983\nv -0.448174 0.617235 0.054031\nv -0.115074 -0.247588 -0.662715\nv -0.168548 -0.140788 -0.671478\nv -0.122493 -0.141756 -0.685215\nv -0.123560 -0.069145 -0.679718\nv 0.002482 -0.141489 -0.700665\nv 0.002482 -0.247392 -0.674552\nv -0.107716 -0.316877 -0.629463\nv -0.100654 -0.389691 -0.588875\nv 0.002482 -0.389798 -0.595177\nv 0.002482 0.055061 -0.667408\nv -0.120818 0.057650 -0.648810\nv -0.118185 0.118238 -0.627205\nv -0.163068 0.121588 -0.611945\nv -0.148670 -0.314748 -0.619653\nv -0.209267 -0.126291 -0.648767\nv -0.374977 -0.161277 -0.480145\nv -0.201824 -0.231966 -0.626263\nv -0.372455 -0.057004 -0.514546\nv -0.365333 0.013598 -0.519471\nv -0.209116 -0.053659 -0.644525\nv -0.203332 0.075194 -0.614943\nv -0.349055 0.138711 -0.504027\nv -0.448750 0.064181 -0.414661\nv -0.456957 -0.004092 -0.403874\nv -0.516073 0.127266 -0.280345\nv -0.524003 0.061714 -0.263602\nv -0.528573 -0.005758 -0.237129\nv -0.462184 -0.106785 -0.364351\nv -0.429866 0.184575 -0.410730\nv -0.555729 0.116423 -0.147385\nv -0.548015 0.180196 -0.168208\nv -0.529799 0.283810 -0.187765\nv -0.497018 0.239376 -0.289873\nv -0.338959 0.197871 -0.490468\nv -0.198755 0.135478 -0.594769\nv -0.320560 0.289021 -0.468389\nv -0.417419 0.242435 -0.403409\nv -0.394106 0.333008 -0.392111\nv -0.452477 0.385183 -0.294178\nv -0.482280 0.294783 -0.290749\nv -0.513118 0.336524 -0.195395\nv -0.175956 -0.065928 -0.662539\nv -0.174469 -0.138342 -0.668420\nv -0.193399 -0.301256 -0.593913\nv -0.322964 -0.253654 -0.491928\nv -0.185018 -0.374034 -0.553871\nv -0.374090 -0.195628 -0.462299\nv -0.420584 -0.135506 -0.425588\nv -0.145174 -0.385083 -0.578012\nv -0.400985 0.720849 0.312740\nv -0.414533 0.699070 0.342813\nv -0.431338 0.685472 0.258341\nv -0.348483 0.745098 0.471346\nv -0.329023 0.783454 0.402533\nv -0.180461 0.852882 0.483733\nv -0.268857 0.770935 0.565065\nv -0.189639 0.795083 0.596094\nv -0.126446 0.865881 0.497991\nv -0.131388 0.806121 0.609819\nv 0.002481 0.814601 0.619099\nv -0.124857 0.860840 0.489871\nv -0.323931 0.779383 0.396856\nv -0.419035 0.683398 0.249658\nv -0.394684 0.717661 0.308626\nv -0.424555 0.682785 0.255059\nv -0.389625 0.717977 0.302886\nv -0.320219 0.779332 0.390723\nv -0.176894 0.847931 0.469459\nv -0.178051 0.847958 0.475985\nv -0.124256 0.860890 0.483318\nv -0.312771 0.295270 -0.457745\nv -0.385645 0.340168 -0.382014\nv -0.446048 0.386818 -0.289417\nv -0.156078 0.219496 -0.572806\nv -0.118079 0.218352 -0.578241\nv -0.017452 0.216902 -0.589522\nv -0.388679 0.335062 -0.385615\nv -0.315655 0.290867 -0.460319\nv -0.160649 0.219767 -0.570979\nv -0.190553 0.230400 -0.560847\nv -0.156838 0.218257 -0.575289\nv -0.116442 0.216497 -0.580850\nv -0.113571 0.214106 -0.587672\nv 0.002481 0.216442 -0.593242\nv -0.392536 0.720706 0.303896\nv -0.178099 0.851475 0.472170\nv 0.002481 0.216833 -0.591609\nv -0.002502 0.216833 -0.590198\nv -0.158306 0.222651 -0.568293\nv -0.446412 0.393539 -0.289302\nv -0.442930 0.391887 -0.286537\nv -0.158480 -0.244367 -0.647747\nv -0.152046 -0.309637 -0.610911\nv -0.148618 -0.313026 -0.616429\nv -0.142553 -0.382071 -0.571660\nv -0.139116 -0.385473 -0.577065\nv -0.169918 -0.068125 -0.662260\nv -0.166507 0.060130 -0.630237\nv -0.163053 0.121245 -0.608690\nv -0.168430 -0.139949 -0.668101\nv -0.158566 -0.245827 -0.651046\nv -0.170021 -0.068484 -0.665629\nv -0.166546 0.060378 -0.633517\nv -0.139152 -0.387321 -0.580242\nv -0.166520 0.124216 -0.602232\nv -0.172544 0.062939 -0.630590\nv -0.169930 0.063827 -0.623877\nv -0.169087 0.123631 -0.609167\nv -0.162869 0.220022 -0.572792\nv -0.173272 -0.064477 -0.655983\nv -0.171768 -0.136426 -0.661865\nv -0.161864 -0.240957 -0.641909\nv -0.164536 -0.243529 -0.648392\nv -0.154684 -0.312504 -0.617315\nv 0.176481 -0.492558 -0.598800\nv 0.165253 -0.351307 -0.624961\nv 0.114773 -0.334324 -0.630954\nv 0.048815 -0.425811 -0.624959\nv 0.106224 -0.612245 -0.692354\nv 0.106285 -0.616894 -0.692250\nv 0.103354 -0.813241 -0.691193\nv 0.103489 -0.604236 -0.693101\nv 0.068858 -0.579584 -0.699547\nv 0.079171 -0.520610 -0.695879\nv 0.114759 -0.542832 -0.689062\nv 0.152527 -0.466373 -0.608811\nv 0.130009 -0.563599 -0.683641\nv 0.100203 -0.439148 -0.619660\nv 0.037766 -0.508739 -0.700177\nv 0.002482 -0.507199 -0.701308\nv 0.150151 -0.471040 -0.569069\nv 0.132860 -0.396869 -0.578101\nv 0.181511 -0.474884 -0.559315\nv 0.121720 -0.322407 -0.592864\nv 0.123795 -0.325945 -0.632414\nv 0.169118 -0.350782 -0.584758\nv 0.159466 -0.414980 -0.612232\nv 0.163843 -0.334216 -0.628654\nv 0.158916 -0.322280 -0.591094\nv 0.156409 -0.325840 -0.630866\nv 0.167424 -0.332177 -0.588649\nv 0.111440 -0.332306 -0.591054\nv 0.106695 -0.346003 -0.588223\nv 0.110450 -0.347068 -0.628377\nv 0.133226 -0.797231 -0.675932\nv 0.106545 -0.813241 -0.673920\nv 0.124625 -0.797239 -0.659230\nv 0.106544 -0.813241 -0.690335\nv 0.152818 -0.755323 -0.594698\nv 0.152824 -0.755323 -0.585324\nv 0.168376 -0.755323 -0.585248\nv 0.168376 -0.755323 -0.468300\nv 0.152973 -0.755323 -0.474643\nv 0.162932 -0.414875 -0.571880\nv 0.002482 -0.365713 -0.626403\nv 0.050693 -0.365104 -0.585576\nv 0.002482 -0.361641 -0.586493\nv 0.050986 -0.369229 -0.625394\nv 0.103348 -0.376047 -0.582424\nv 0.106434 -0.380551 -0.621699\nv 0.133401 -0.633914 -0.679811\nv 0.178631 -0.498185 -0.594746\nv 0.133644 -0.577225 -0.681784\nv 0.184943 -0.524082 -0.585377\nv 0.168376 -0.755323 -0.594533\nv 0.184519 -0.530010 -0.594624\nv 0.185368 -0.518153 -0.473519\nv 0.178631 -0.498185 -0.585459\nv 0.178631 -0.498185 -0.474785\nv 0.086892 -0.598560 -0.706741\nv 0.093104 -0.590871 -0.695460\nv 0.065286 -0.590971 -0.710183\nv 0.098403 -0.605961 -0.704325\nv 0.035078 -0.573480 -0.703037\nv 0.002482 -0.586276 -0.714257\nv 0.084464 -0.604641 -0.707156\nv 0.064064 -0.597795 -0.710338\nv 0.096016 -0.611308 -0.704783\nv 0.034626 -0.586820 -0.713247\nv 0.100933 -0.615773 -0.700428\nv 0.103407 -0.611156 -0.700115\nv 0.002482 -0.593341 -0.714254\nv 0.064064 -0.597795 -0.689920\nv 0.084464 -0.604641 -0.686731\nv 0.096039 -0.611353 -0.684397\nv 0.034477 -0.593865 -0.692839\nv 0.034477 -0.593865 -0.713257\nv 0.101485 -0.616873 -0.683171\nv 0.103096 -0.619965 -0.682757\nv 0.103096 -0.619965 -0.692993\nv 0.002482 -0.593341 -0.693836\nv 0.103354 -0.813241 -0.680956\nv 0.179410 -0.475468 -0.599686\nv 0.125784 -0.456749 -0.544150\nv 0.150151 -0.471040 -0.538340\nv 0.125784 -0.456749 -0.574879\nv 0.178631 -0.498185 -0.526912\nv 0.178631 -0.498185 -0.557641\nv -0.154502 -0.414980 -0.612232\nv -0.095240 -0.439148 -0.619660\nv -0.105486 -0.347068 -0.628377\nv -0.158879 -0.334216 -0.628654\nv -0.109809 -0.334324 -0.630954\nv -0.043851 -0.425811 -0.624959\nv -0.046023 -0.369229 -0.625394\nv 0.002482 -0.421358 -0.626284\nv -0.101260 -0.612245 -0.692354\nv -0.128680 -0.577225 -0.681784\nv -0.098390 -0.813241 -0.691193\nv -0.088141 -0.590871 -0.695460\nv -0.063895 -0.579584 -0.699547\nv -0.032802 -0.508739 -0.700177\nv 0.002482 -0.572681 -0.704086\nv -0.109795 -0.542832 -0.689062\nv -0.147563 -0.466373 -0.608811\nv -0.125045 -0.563599 -0.683641\nv -0.074207 -0.520610 -0.695879\nv -0.127896 -0.396869 -0.578101\nv -0.145187 -0.471040 -0.569069\nv -0.176547 -0.474884 -0.559315\nv -0.151445 -0.325840 -0.630866\nv -0.118831 -0.325945 -0.632414\nv -0.162460 -0.332177 -0.588649\nv -0.160289 -0.351307 -0.624961\nv -0.164154 -0.350782 -0.584758\nv -0.157969 -0.414875 -0.571880\nv -0.153952 -0.322280 -0.591094\nv -0.106476 -0.332306 -0.591054\nv -0.116756 -0.322407 -0.592864\nv -0.101731 -0.346003 -0.588223\nv -0.098384 -0.376047 -0.582424\nv -0.101470 -0.380551 -0.621699\nv -0.101580 -0.813241 -0.690335\nv -0.119661 -0.797239 -0.659230\nv -0.101581 -0.813241 -0.673920\nv -0.128263 -0.797231 -0.675932\nv -0.147854 -0.755323 -0.594698\nv -0.147860 -0.755323 -0.585324\nv -0.148009 -0.755323 -0.474643\nv -0.045729 -0.365104 -0.585576\nv -0.179555 -0.530010 -0.594624\nv -0.128437 -0.633914 -0.679811\nv -0.179980 -0.524082 -0.585377\nv -0.163413 -0.755323 -0.594533\nv -0.163413 -0.755323 -0.585248\nv -0.163413 -0.755323 -0.468300\nv -0.180404 -0.518153 -0.473519\nv -0.173667 -0.498185 -0.585459\nv -0.173667 -0.498185 -0.474785\nv -0.081928 -0.598560 -0.706741\nv -0.060322 -0.590971 -0.710183\nv -0.098525 -0.604236 -0.693101\nv -0.030115 -0.573480 -0.703037\nv -0.098443 -0.611156 -0.700115\nv -0.059100 -0.597795 -0.710338\nv -0.093439 -0.605961 -0.704325\nv -0.029662 -0.586820 -0.713247\nv -0.098132 -0.619965 -0.692993\nv -0.101321 -0.616894 -0.692250\nv -0.079501 -0.604641 -0.686731\nv -0.059100 -0.597795 -0.689920\nv -0.079501 -0.604641 -0.707156\nv -0.091076 -0.611353 -0.684397\nv -0.091052 -0.611308 -0.704783\nv -0.029514 -0.593865 -0.713257\nv -0.029514 -0.593865 -0.692839\nv -0.096521 -0.616873 -0.683171\nv -0.095970 -0.615773 -0.700428\nv -0.098132 -0.619965 -0.682757\nv -0.098390 -0.813241 -0.680956\nv -0.174446 -0.475468 -0.599686\nv -0.173667 -0.498185 -0.594746\nv -0.171517 -0.492558 -0.598800\nv -0.173667 -0.498185 -0.557641\nv -0.120820 -0.456749 -0.544150\nv -0.120820 -0.456749 -0.574879\nv -0.145187 -0.471040 -0.538340\nv -0.173667 -0.498185 -0.526912\nv 0.335640 -0.085917 0.379242\nv 0.341821 -0.120284 0.499972\nv 0.335639 -0.085915 0.499979\nv 0.341821 -0.120286 0.379242\nv 0.317240 -0.056234 0.499989\nv 0.317241 -0.056236 0.379242\nv 0.288568 -0.036304 0.379242\nv 0.254571 -0.028326 0.379242\nv 0.220201 -0.034508 0.379242\nv 0.220200 -0.034508 0.500014\nv 0.190520 -0.052906 0.500018\nv 0.190520 -0.052906 0.379242\nv 0.170588 -0.081580 0.379242\nv 0.170588 -0.081579 0.500018\nv 0.162610 -0.115577 0.379242\nv 0.168792 -0.149946 0.379242\nv 0.168791 -0.149945 0.500006\nv 0.187190 -0.179627 0.379242\nv 0.215864 -0.199559 0.379242\nv 0.249861 -0.207537 0.379242\nv 0.284231 -0.201356 0.379242\nv 0.284230 -0.201355 0.499971\nv 0.313912 -0.182956 0.499968\nv 0.313912 -0.182957 0.379242\nv 0.333843 -0.154284 0.379242\nv 0.296831 -0.075602 0.510170\nv 0.310396 -0.062729 0.510169\nv 0.309454 -0.095966 0.510161\nv 0.332389 -0.120037 0.510153\nv 0.313695 -0.119547 0.510154\nv 0.325251 -0.150456 0.510149\nv 0.308221 -0.142873 0.510150\nv 0.294546 -0.162546 0.510150\nv 0.274181 -0.175170 0.510153\nv 0.250108 -0.198105 0.510159\nv 0.250600 -0.179411 0.510159\nv 0.277157 -0.061926 0.510179\nv 0.284740 -0.044896 0.510179\nv 0.253831 -0.056453 0.510188\nv 0.254321 -0.037758 0.510188\nv 0.230250 -0.060694 0.510194\nv 0.223570 -0.043289 0.510195\nv 0.209886 -0.073317 0.510198\nv 0.196211 -0.092990 0.510197\nv 0.179181 -0.085406 0.510198\nv 0.190737 -0.116316 0.510193\nv 0.172042 -0.115824 0.510194\nv 0.194978 -0.139897 0.510186\nv 0.177573 -0.146575 0.510187\nv 0.207601 -0.160262 0.510178\nv 0.194034 -0.173132 0.510178\nv 0.227275 -0.173937 0.510168\nv 0.326858 -0.089285 0.510160\nv 0.333844 -0.154282 0.499968\nv 0.307418 -0.176112 0.510149\nv 0.280861 -0.192574 0.510152\nv 0.249860 -0.207537 0.499978\nv 0.215863 -0.199559 0.499987\nv 0.288566 -0.036303 0.499998\nv 0.254568 -0.028326 0.500008\nv 0.197014 -0.059751 0.510199\nv 0.162610 -0.115575 0.500013\nv 0.187189 -0.179626 0.499997\nv 0.219690 -0.190966 0.510168\nv 0.168992 -0.302943 0.191785\nv 0.172784 -0.328969 0.286191\nv 0.168159 -0.303260 0.286197\nv 0.173677 -0.328994 0.191784\nv 0.154396 -0.281059 0.286203\nv 0.155046 -0.280445 0.191785\nv 0.133312 -0.265336 0.191785\nv 0.107517 -0.260183 0.286218\nv 0.107542 -0.259289 0.191784\nv 0.081490 -0.263975 0.191785\nv 0.058992 -0.277921 0.191785\nv 0.043884 -0.299655 0.191785\nv 0.044698 -0.300017 0.286225\nv 0.038730 -0.325447 0.286222\nv 0.037837 -0.325425 0.191785\nv 0.042522 -0.351476 0.191784\nv 0.057116 -0.373358 0.286210\nv 0.056468 -0.373974 0.191785\nv 0.078202 -0.389082 0.191785\nv 0.103972 -0.395130 0.191785\nv 0.130024 -0.390444 0.191784\nv 0.152522 -0.376498 0.191785\nv 0.167630 -0.354764 0.191785\nv 0.162335 -0.305496 0.290990\nv 0.140229 -0.294503 0.290990\nv 0.149857 -0.285366 0.290990\nv 0.149983 -0.310238 0.290990\nv 0.166528 -0.328805 0.290990\nv 0.153259 -0.328458 0.290990\nv 0.161117 -0.351863 0.290990\nv 0.149030 -0.346481 0.290990\nv 0.147600 -0.371310 0.290990\nv 0.138464 -0.361681 0.290990\nv 0.127469 -0.383788 0.290990\nv 0.122729 -0.371435 0.290990\nv 0.104160 -0.387980 0.290990\nv 0.104509 -0.374712 0.290990\nv 0.081102 -0.382569 0.290990\nv 0.125028 -0.283937 0.290990\nv 0.130410 -0.271849 0.290990\nv 0.107005 -0.279707 0.290990\nv 0.107353 -0.266439 0.290990\nv 0.088785 -0.282984 0.290990\nv 0.084044 -0.270631 0.290990\nv 0.073050 -0.292738 0.290990\nv 0.063914 -0.283109 0.290990\nv 0.062484 -0.307938 0.290990\nv 0.050397 -0.302555 0.290990\nv 0.058255 -0.325961 0.290990\nv 0.044986 -0.325612 0.290990\nv 0.061531 -0.344181 0.290990\nv 0.049178 -0.348921 0.290990\nv 0.071285 -0.359916 0.290990\nv 0.061656 -0.369051 0.290990\nv 0.086486 -0.370483 0.290990\nv 0.043354 -0.351156 0.286217\nv 0.078564 -0.388268 0.286202\nv 0.059607 -0.278569 0.286226\nv 0.081808 -0.264807 0.286223\nv 0.132947 -0.266150 0.286211\nv 0.166816 -0.354400 0.286188\nv 0.151907 -0.375849 0.286188\nv 0.129705 -0.389612 0.286190\nv 0.103995 -0.394236 0.286195\nv 0.240978 -0.469389 -0.133173\nv 0.268005 -0.474987 -0.133173\nv 0.240978 -0.469389 0.008941\nv 0.291075 -0.490140 -0.133173\nv 0.306228 -0.513209 -0.133173\nv 0.311825 -0.540236 -0.133173\nv 0.306228 -0.567263 -0.133173\nv 0.291074 -0.590333 -0.133173\nv 0.268005 -0.605486 -0.133173\nv 0.240978 -0.611084 -0.133173\nv 0.240978 -0.611084 0.008941\nv 0.213951 -0.605486 0.008941\nv 0.213951 -0.605486 -0.133173\nv 0.190882 -0.590333 -0.133173\nv 0.175729 -0.567264 -0.133173\nv 0.170131 -0.540237 -0.133173\nv 0.170131 -0.540236 0.008941\nv 0.175728 -0.513209 0.008941\nv 0.175728 -0.513209 -0.133173\nv 0.190882 -0.490140 -0.133173\nv 0.213951 -0.474987 -0.133173\nv 0.240978 -0.492409 0.104388\nv 0.259223 -0.496188 0.104388\nv 0.283042 -0.498172 0.104388\nv 0.274797 -0.506417 0.104388\nv 0.285026 -0.521991 0.104388\nv 0.300466 -0.540236 0.104388\nv 0.288805 -0.540236 0.104388\nv 0.285026 -0.558482 0.104388\nv 0.283042 -0.582301 0.104388\nv 0.274797 -0.574055 0.104388\nv 0.259223 -0.584285 0.104388\nv 0.240978 -0.588063 0.104388\nv 0.218284 -0.595024 0.104388\nv 0.222732 -0.584285 0.104388\nv 0.207159 -0.574055 0.104388\nv 0.196929 -0.558482 0.104388\nv 0.193151 -0.540236 0.104388\nv 0.196929 -0.521991 0.104388\nv 0.207159 -0.506417 0.104388\nv 0.218284 -0.485448 0.104388\nv 0.222732 -0.496188 0.104388\nv 0.268005 -0.474987 0.088373\nv 0.240978 -0.469389 0.076024\nv 0.268005 -0.474986 0.076025\nv 0.291074 -0.490140 0.076024\nv 0.306228 -0.567263 0.088373\nv 0.306228 -0.567263 0.076025\nv 0.268005 -0.605486 0.076024\nv 0.190881 -0.590333 0.088373\nv 0.175728 -0.567263 0.088373\nv 0.170131 -0.540236 0.076025\nv 0.175728 -0.513209 0.088373\nv 0.190881 -0.490140 0.076024\nv 0.190881 -0.490140 0.088373\nv 0.213951 -0.474986 0.076025\nv 0.271670 -0.466139 0.070440\nv 0.297867 -0.483347 0.070440\nv 0.315075 -0.509544 0.070440\nv 0.315075 -0.509544 0.051406\nv 0.321432 -0.540236 0.051406\nv 0.315075 -0.570928 0.070440\nv 0.315075 -0.570928 0.051406\nv 0.271670 -0.614333 0.051406\nv 0.240978 -0.620690 0.070440\nv 0.184088 -0.597125 0.070440\nv 0.166881 -0.570928 0.070440\nv 0.166881 -0.570929 0.051406\nv 0.166881 -0.509544 0.070440\nv 0.210286 -0.466139 0.070440\nv 0.240978 -0.469389 0.045822\nv 0.306228 -0.513209 0.045822\nv 0.306228 -0.513209 0.018964\nv 0.311825 -0.540236 0.045822\nv 0.306228 -0.567263 0.045822\nv 0.306228 -0.567263 0.018964\nv 0.291074 -0.590333 0.018964\nv 0.268005 -0.605486 0.018964\nv 0.213951 -0.605486 0.045822\nv 0.175728 -0.567264 0.018964\nv 0.170131 -0.540236 0.018964\nv 0.175728 -0.513209 0.018964\nv 0.190881 -0.490140 0.045822\nv 0.240978 -0.463892 0.012081\nv 0.240978 -0.463892 0.015824\nv 0.294962 -0.486253 0.012081\nv 0.311291 -0.511112 0.015824\nv 0.311291 -0.511112 0.012081\nv 0.317322 -0.540236 0.012081\nv 0.317322 -0.540236 0.015824\nv 0.211854 -0.610549 0.012081\nv 0.186994 -0.594220 0.012081\nv 0.170665 -0.511112 0.015824\nv 0.170665 -0.511112 0.012081\nv 0.186994 -0.486253 0.012081\nv 0.186994 -0.486253 0.015824\nv 0.240978 -0.459783 0.070440\nv 0.306228 -0.513209 0.076025\nv 0.321432 -0.540236 0.070440\nv 0.311825 -0.540236 0.076025\nv 0.297867 -0.597125 0.070440\nv 0.291074 -0.590333 0.076025\nv 0.271670 -0.614333 0.070440\nv 0.240978 -0.611083 0.076024\nv 0.213951 -0.605486 0.076024\nv 0.190881 -0.590333 0.076025\nv 0.210286 -0.614333 0.070440\nv 0.175728 -0.567263 0.076025\nv 0.160524 -0.540236 0.070440\nv 0.175728 -0.513209 0.076025\nv 0.184089 -0.483347 0.070440\nv 0.291074 -0.490140 0.045822\nv 0.271670 -0.466139 0.051406\nv 0.268005 -0.474986 0.045822\nv 0.297867 -0.483347 0.051406\nv 0.240978 -0.459783 0.051406\nv 0.210286 -0.466139 0.051406\nv 0.213951 -0.474986 0.045822\nv 0.184089 -0.483347 0.051406\nv 0.166881 -0.509544 0.051406\nv 0.175728 -0.513209 0.045822\nv 0.160524 -0.540237 0.051406\nv 0.170131 -0.540236 0.045822\nv 0.175728 -0.567263 0.045822\nv 0.184089 -0.597126 0.051406\nv 0.190881 -0.590333 0.045822\nv 0.240978 -0.620690 0.051406\nv 0.240978 -0.611083 0.045822\nv 0.210286 -0.614333 0.051406\nv 0.268005 -0.605486 0.045822\nv 0.297867 -0.597125 0.051406\nv 0.291074 -0.590333 0.045822\nv 0.240978 -0.469389 0.018964\nv 0.270102 -0.469924 0.015824\nv 0.268005 -0.474986 0.018964\nv 0.294962 -0.486253 0.015824\nv 0.291074 -0.490140 0.018964\nv 0.311825 -0.540236 0.018964\nv 0.311291 -0.569360 0.015824\nv 0.294962 -0.594220 0.015824\nv 0.270102 -0.610549 0.015824\nv 0.240978 -0.616581 0.015824\nv 0.240978 -0.611083 0.018964\nv 0.213951 -0.605486 0.018964\nv 0.186994 -0.594220 0.015824\nv 0.190882 -0.590333 0.018964\nv 0.211854 -0.610549 0.015824\nv 0.170665 -0.569361 0.015824\nv 0.164634 -0.540236 0.015824\nv 0.190881 -0.490140 0.018964\nv 0.211854 -0.469924 0.015824\nv 0.213951 -0.474986 0.018964\nv 0.291074 -0.490140 0.008941\nv 0.270102 -0.469924 0.012081\nv 0.268005 -0.474986 0.008941\nv 0.211854 -0.469924 0.012081\nv 0.213951 -0.474986 0.008941\nv 0.190881 -0.490140 0.008941\nv 0.164634 -0.540237 0.012081\nv 0.170666 -0.569361 0.012081\nv 0.175728 -0.567264 0.008941\nv 0.190882 -0.590333 0.008941\nv 0.240978 -0.616580 0.012081\nv 0.270102 -0.610549 0.012081\nv 0.268005 -0.605486 0.008941\nv 0.294962 -0.594220 0.012081\nv 0.291074 -0.590333 0.008941\nv 0.311291 -0.569360 0.012081\nv 0.306228 -0.567263 0.008941\nv 0.311825 -0.540236 0.008941\nv 0.306228 -0.513209 0.008941\nv 0.240978 -0.469389 0.088373\nv 0.263672 -0.485448 0.104388\nv 0.240978 -0.480748 0.104388\nv 0.291074 -0.490140 0.088373\nv 0.295766 -0.517542 0.104388\nv 0.306228 -0.513209 0.088373\nv 0.311825 -0.540236 0.088373\nv 0.295766 -0.562930 0.104388\nv 0.291074 -0.590333 0.088373\nv 0.263672 -0.595024 0.104388\nv 0.268005 -0.605486 0.088373\nv 0.240978 -0.611083 0.088373\nv 0.240978 -0.599724 0.104388\nv 0.213951 -0.605486 0.088373\nv 0.198913 -0.582301 0.104388\nv 0.186190 -0.562930 0.104388\nv 0.170131 -0.540236 0.088373\nv 0.181490 -0.540236 0.104388\nv 0.186190 -0.517542 0.104388\nv 0.198913 -0.498172 0.104388\nv 0.213951 -0.474987 0.088373\nv 0.439599 -0.443034 0.015509\nv 0.439599 -0.443034 0.201620\nv 0.474346 -0.450096 0.015509\nv 0.503910 -0.469672 0.201620\nv 0.503910 -0.469672 0.015509\nv 0.523486 -0.499236 0.015509\nv 0.530548 -0.533983 0.015509\nv 0.523486 -0.568730 0.015509\nv 0.503910 -0.598293 0.015509\nv 0.474346 -0.617869 0.201620\nv 0.474346 -0.617869 0.015509\nv 0.439599 -0.624932 0.201620\nv 0.439599 -0.624932 0.015509\nv 0.404853 -0.617870 0.015509\nv 0.375289 -0.598294 0.201620\nv 0.375289 -0.598294 0.015509\nv 0.355713 -0.568730 0.201620\nv 0.355713 -0.568731 0.015509\nv 0.348651 -0.533984 0.015509\nv 0.355713 -0.499237 0.015509\nv 0.375289 -0.469672 0.015509\nv 0.404852 -0.450096 0.015509\nv 0.439599 -0.474790 0.326707\nv 0.462214 -0.479386 0.326707\nv 0.439599 -0.457616 0.326707\nv 0.493599 -0.479983 0.326707\nv 0.481455 -0.492127 0.326707\nv 0.510036 -0.504807 0.326707\nv 0.494196 -0.511368 0.326707\nv 0.515966 -0.533983 0.326707\nv 0.498792 -0.533983 0.326707\nv 0.494196 -0.556597 0.326707\nv 0.493599 -0.587982 0.326707\nv 0.481455 -0.575838 0.326707\nv 0.468775 -0.604420 0.326707\nv 0.462214 -0.588579 0.326707\nv 0.439599 -0.610350 0.326707\nv 0.439599 -0.593176 0.326707\nv 0.416985 -0.588579 0.326707\nv 0.385600 -0.587982 0.326707\nv 0.397744 -0.575838 0.326707\nv 0.369162 -0.563159 0.326707\nv 0.385003 -0.556597 0.326707\nv 0.380406 -0.533983 0.326707\nv 0.385003 -0.511368 0.326707\nv 0.385600 -0.479983 0.326707\nv 0.397744 -0.492127 0.326707\nv 0.410423 -0.463546 0.326707\nv 0.416985 -0.479386 0.326707\nv 0.439599 -0.443034 0.289473\nv 0.474346 -0.450096 0.305645\nv 0.439599 -0.443034 0.305645\nv 0.503910 -0.469672 0.305645\nv 0.523486 -0.499236 0.305645\nv 0.530548 -0.533983 0.305645\nv 0.530548 -0.533983 0.289473\nv 0.523486 -0.568730 0.305645\nv 0.503910 -0.598293 0.305645\nv 0.474346 -0.617869 0.305645\nv 0.439599 -0.624932 0.305645\nv 0.404852 -0.617869 0.305645\nv 0.404852 -0.617870 0.289473\nv 0.468775 -0.463546 0.326707\nv 0.404852 -0.450096 0.305645\nv 0.404852 -0.450096 0.289473\nv 0.375289 -0.469672 0.289473\nv 0.375289 -0.469672 0.305645\nv 0.355713 -0.499236 0.289473\nv 0.355713 -0.499236 0.305645\nv 0.348650 -0.533983 0.305645\nv 0.355713 -0.568730 0.305645\nv 0.375289 -0.598293 0.289473\nv 0.375289 -0.598293 0.305645\nv 0.410423 -0.604420 0.326707\nv 0.363232 -0.533983 0.326707\nv 0.369162 -0.504807 0.326707\nv 0.479058 -0.438722 0.282160\nv 0.512630 -0.460952 0.257233\nv 0.534860 -0.494524 0.257233\nv 0.534860 -0.573442 0.257233\nv 0.479057 -0.629244 0.282160\nv 0.479058 -0.629244 0.257233\nv 0.439599 -0.637264 0.282160\nv 0.400140 -0.629244 0.282160\nv 0.366569 -0.607014 0.257233\nv 0.336318 -0.533983 0.282160\nv 0.336318 -0.533983 0.257233\nv 0.344338 -0.494524 0.282160\nv 0.344338 -0.494525 0.257233\nv 0.366569 -0.460952 0.282160\nv 0.366569 -0.460952 0.257233\nv 0.400141 -0.438722 0.282160\nv 0.474346 -0.450096 0.214746\nv 0.503910 -0.469672 0.249920\nv 0.503910 -0.469672 0.214746\nv 0.523486 -0.499236 0.249920\nv 0.523486 -0.499236 0.214746\nv 0.530548 -0.533983 0.249920\nv 0.530548 -0.533983 0.214746\nv 0.474346 -0.617869 0.249920\nv 0.474346 -0.617870 0.214746\nv 0.439599 -0.624932 0.249920\nv 0.404852 -0.617870 0.249920\nv 0.375289 -0.598293 0.249920\nv 0.375289 -0.598294 0.214746\nv 0.355713 -0.568730 0.249920\nv 0.355713 -0.568730 0.214746\nv 0.348650 -0.533983 0.249920\nv 0.348650 -0.533983 0.214746\nv 0.355713 -0.499236 0.249920\nv 0.355713 -0.499236 0.214746\nv 0.375289 -0.469672 0.214746\nv 0.404852 -0.450096 0.249920\nv 0.404852 -0.450096 0.214746\nv 0.477010 -0.443666 0.210595\nv 0.439599 -0.436063 0.210595\nv 0.477010 -0.443666 0.205772\nv 0.508839 -0.464743 0.205772\nv 0.529916 -0.496572 0.205771\nv 0.529916 -0.571393 0.205772\nv 0.508839 -0.603223 0.210595\nv 0.477010 -0.624300 0.205772\nv 0.439599 -0.631903 0.210595\nv 0.349283 -0.571394 0.205772\nv 0.349282 -0.496572 0.205772\nv 0.370359 -0.464743 0.205772\nv 0.402189 -0.443666 0.210595\nv 0.402189 -0.443666 0.205772\nv 0.474346 -0.450096 0.289473\nv 0.439599 -0.430702 0.282160\nv 0.512630 -0.460952 0.282160\nv 0.503910 -0.469672 0.289473\nv 0.534860 -0.494524 0.282160\nv 0.523486 -0.499236 0.289473\nv 0.542880 -0.533983 0.282160\nv 0.534860 -0.573442 0.282160\nv 0.523486 -0.568730 0.289473\nv 0.512630 -0.607013 0.282160\nv 0.503910 -0.598293 0.289473\nv 0.474346 -0.617869 0.289473\nv 0.439599 -0.624932 0.289473\nv 0.366568 -0.607013 0.282160\nv 0.344338 -0.573441 0.282160\nv 0.355713 -0.568730 0.289473\nv 0.348650 -0.533983 0.289473\nv 0.479058 -0.438722 0.257233\nv 0.474346 -0.450096 0.249920\nv 0.439599 -0.430702 0.257233\nv 0.439599 -0.443034 0.249920\nv 0.400141 -0.438722 0.257233\nv 0.375289 -0.469672 0.249920\nv 0.344338 -0.573442 0.257233\nv 0.439599 -0.637264 0.257233\nv 0.400141 -0.629244 0.257233\nv 0.512630 -0.607013 0.257233\nv 0.503910 -0.598293 0.249920\nv 0.523486 -0.568730 0.249920\nv 0.542880 -0.533983 0.257233\nv 0.439599 -0.443034 0.214746\nv 0.508839 -0.464743 0.210595\nv 0.529916 -0.496572 0.210595\nv 0.537520 -0.533983 0.210595\nv 0.529916 -0.571393 0.210595\nv 0.523486 -0.568730 0.214746\nv 0.503910 -0.598293 0.214746\nv 0.477010 -0.624300 0.210595\nv 0.439599 -0.624932 0.214746\nv 0.404852 -0.617870 0.214746\nv 0.370359 -0.603223 0.210595\nv 0.402189 -0.624300 0.210595\nv 0.349283 -0.571394 0.210595\nv 0.341679 -0.533983 0.210595\nv 0.349282 -0.496572 0.210595\nv 0.370359 -0.464743 0.210595\nv 0.474346 -0.450096 0.201620\nv 0.439599 -0.436063 0.205771\nv 0.404852 -0.450096 0.201620\nv 0.375289 -0.469672 0.201620\nv 0.355713 -0.499236 0.201620\nv 0.341679 -0.533983 0.205772\nv 0.348650 -0.533983 0.201620\nv 0.370359 -0.603223 0.205771\nv 0.402189 -0.624300 0.205772\nv 0.404852 -0.617870 0.201620\nv 0.439599 -0.631903 0.205771\nv 0.508839 -0.603223 0.205772\nv 0.503910 -0.598293 0.201620\nv 0.523486 -0.568730 0.201620\nv 0.537520 -0.533983 0.205772\nv 0.530548 -0.533983 0.201620\nv 0.523486 -0.499236 0.201620\nv 0.510036 -0.563159 0.326707\nv -0.330676 -0.085917 0.379242\nv -0.336857 -0.120286 0.379242\nv -0.330675 -0.085915 0.499979\nv -0.312278 -0.056236 0.379242\nv -0.283604 -0.036304 0.379242\nv -0.249607 -0.028326 0.379242\nv -0.215237 -0.034508 0.379242\nv -0.185556 -0.052906 0.379242\nv -0.165624 -0.081580 0.379242\nv -0.157646 -0.115575 0.500013\nv -0.157647 -0.115577 0.379242\nv -0.163828 -0.149946 0.379242\nv -0.163827 -0.149945 0.500006\nv -0.182225 -0.179626 0.499997\nv -0.182226 -0.179627 0.379242\nv -0.210900 -0.199559 0.379242\nv -0.244896 -0.207537 0.499978\nv -0.244897 -0.207537 0.379242\nv -0.279267 -0.201356 0.379242\nv -0.308948 -0.182957 0.379242\nv -0.328880 -0.154284 0.379242\nv -0.328880 -0.154282 0.499968\nv -0.291867 -0.075602 0.510170\nv -0.305432 -0.062729 0.510169\nv -0.304490 -0.095966 0.510161\nv -0.327425 -0.120037 0.510153\nv -0.308731 -0.119547 0.510154\nv -0.303257 -0.142873 0.510150\nv -0.289582 -0.162546 0.510150\nv -0.269217 -0.175170 0.510153\nv -0.245636 -0.179411 0.510159\nv -0.272193 -0.061927 0.510179\nv -0.279776 -0.044896 0.510179\nv -0.248868 -0.056453 0.510188\nv -0.225286 -0.060694 0.510194\nv -0.204922 -0.073317 0.510198\nv -0.191247 -0.092991 0.510197\nv -0.174217 -0.085406 0.510198\nv -0.185773 -0.116316 0.510193\nv -0.190014 -0.139897 0.510186\nv -0.172609 -0.146575 0.510187\nv -0.202637 -0.160262 0.510178\nv -0.222311 -0.173937 0.510168\nv -0.321894 -0.089286 0.510160\nv -0.312276 -0.056234 0.499989\nv -0.336857 -0.120284 0.499972\nv -0.320287 -0.150456 0.510149\nv -0.308948 -0.182956 0.499968\nv -0.302454 -0.176112 0.510149\nv -0.275897 -0.192574 0.510152\nv -0.279267 -0.201355 0.499971\nv -0.245145 -0.198105 0.510159\nv -0.214726 -0.190966 0.510168\nv -0.210899 -0.199559 0.499987\nv -0.283602 -0.036303 0.499998\nv -0.249604 -0.028326 0.500008\nv -0.249357 -0.037758 0.510188\nv -0.218606 -0.043289 0.510195\nv -0.215236 -0.034508 0.500014\nv -0.185556 -0.052906 0.500018\nv -0.192050 -0.059751 0.510199\nv -0.165624 -0.081579 0.500018\nv -0.167079 -0.115824 0.510194\nv -0.189070 -0.173132 0.510178\nv -0.167820 -0.328969 0.286191\nv -0.164028 -0.302943 0.191785\nv -0.163195 -0.303260 0.286197\nv -0.168713 -0.328994 0.191784\nv -0.150082 -0.280445 0.191785\nv -0.128348 -0.265336 0.191785\nv -0.102578 -0.259289 0.191784\nv -0.076527 -0.263975 0.191785\nv -0.076845 -0.264807 0.286223\nv -0.054644 -0.278569 0.286226\nv -0.054029 -0.277921 0.191785\nv -0.038920 -0.299655 0.191785\nv -0.032873 -0.325425 0.191785\nv -0.037559 -0.351476 0.191784\nv -0.038390 -0.351156 0.286217\nv -0.051505 -0.373974 0.191785\nv -0.073239 -0.389082 0.191785\nv -0.099008 -0.395130 0.191785\nv -0.125060 -0.390444 0.191784\nv -0.124741 -0.389612 0.286190\nv -0.146943 -0.375849 0.286188\nv -0.147558 -0.376498 0.191785\nv -0.162666 -0.354764 0.191785\nv -0.157371 -0.305496 0.290990\nv -0.135265 -0.294503 0.290990\nv -0.145019 -0.310238 0.290990\nv -0.144893 -0.285366 0.290990\nv -0.161564 -0.328805 0.290990\nv -0.148295 -0.328458 0.290990\nv -0.156153 -0.351863 0.290990\nv -0.144066 -0.346481 0.290990\nv -0.142636 -0.371310 0.290990\nv -0.133500 -0.361681 0.290990\nv -0.122506 -0.383788 0.290990\nv -0.117765 -0.371435 0.290990\nv -0.099196 -0.387980 0.290990\nv -0.099545 -0.374712 0.290990\nv -0.081522 -0.370483 0.290990\nv -0.120064 -0.283937 0.290990\nv -0.125446 -0.271849 0.290990\nv -0.102041 -0.279707 0.290990\nv -0.102389 -0.266439 0.290990\nv -0.083822 -0.282984 0.290990\nv -0.079080 -0.270631 0.290990\nv -0.068087 -0.292738 0.290990\nv -0.058951 -0.283109 0.290990\nv -0.057520 -0.307938 0.290990\nv -0.045433 -0.302555 0.290990\nv -0.053291 -0.325961 0.290990\nv -0.040023 -0.325612 0.290990\nv -0.056568 -0.344181 0.290990\nv -0.044215 -0.348921 0.290990\nv -0.066322 -0.359916 0.290990\nv -0.056692 -0.369051 0.290990\nv -0.076139 -0.382569 0.290990\nv -0.052152 -0.373358 0.286210\nv -0.033767 -0.325447 0.286222\nv -0.039735 -0.300017 0.286225\nv -0.073601 -0.388268 0.286202\nv -0.102553 -0.260183 0.286218\nv -0.127983 -0.266150 0.286211\nv -0.149432 -0.281059 0.286203\nv -0.161852 -0.354400 0.286188\nv -0.099031 -0.394236 0.286195\nv -0.263041 -0.474986 0.008941\nv -0.236014 -0.469389 -0.133173\nv -0.236014 -0.469389 0.008941\nv -0.263041 -0.474987 -0.133173\nv -0.286111 -0.490140 -0.133173\nv -0.301264 -0.513209 -0.133173\nv -0.306861 -0.540236 -0.133173\nv -0.301264 -0.567263 0.008941\nv -0.301264 -0.567263 -0.133173\nv -0.286111 -0.590333 -0.133173\nv -0.263041 -0.605486 0.008941\nv -0.263041 -0.605486 -0.133173\nv -0.236014 -0.611084 -0.133173\nv -0.208987 -0.605486 0.008941\nv -0.185918 -0.590333 -0.133173\nv -0.208987 -0.605486 -0.133173\nv -0.185918 -0.590333 0.008941\nv -0.170764 -0.567264 0.008941\nv -0.170765 -0.567264 -0.133173\nv -0.165167 -0.540237 -0.133173\nv -0.165167 -0.540236 0.008941\nv -0.170764 -0.513209 -0.133173\nv -0.185918 -0.490140 -0.133173\nv -0.185918 -0.490140 0.008941\nv -0.208987 -0.474987 -0.133173\nv -0.236014 -0.492409 0.104388\nv -0.254259 -0.496188 0.104388\nv -0.236014 -0.480748 0.104388\nv -0.278078 -0.498172 0.104388\nv -0.269833 -0.506417 0.104388\nv -0.290802 -0.517542 0.104388\nv -0.280063 -0.521991 0.104388\nv -0.295502 -0.540236 0.104388\nv -0.283841 -0.540236 0.104388\nv -0.280062 -0.558482 0.104388\nv -0.278078 -0.582301 0.104388\nv -0.269833 -0.574055 0.104388\nv -0.254259 -0.584285 0.104388\nv -0.236014 -0.599724 0.104388\nv -0.236014 -0.588063 0.104388\nv -0.213320 -0.595024 0.104388\nv -0.217768 -0.584285 0.104388\nv -0.202195 -0.574055 0.104388\nv -0.191965 -0.558482 0.104388\nv -0.188187 -0.540236 0.104388\nv -0.181226 -0.517542 0.104388\nv -0.191965 -0.521991 0.104388\nv -0.193950 -0.498172 0.104388\nv -0.202195 -0.506417 0.104388\nv -0.213320 -0.485448 0.104388\nv -0.217768 -0.496188 0.104388\nv -0.263041 -0.474987 0.088373\nv -0.236014 -0.469389 0.076024\nv -0.306861 -0.540236 0.076025\nv -0.301264 -0.567263 0.076025\nv -0.286110 -0.590333 0.076025\nv -0.263041 -0.605486 0.088373\nv -0.263041 -0.605486 0.076024\nv -0.236014 -0.611083 0.076024\nv -0.236014 -0.611083 0.088373\nv -0.185917 -0.590333 0.076025\nv -0.165167 -0.540236 0.076025\nv -0.165167 -0.540236 0.088373\nv -0.170764 -0.513209 0.088373\nv -0.170764 -0.513209 0.076025\nv -0.236014 -0.459783 0.051406\nv -0.292903 -0.483347 0.051406\nv -0.292903 -0.483347 0.070440\nv -0.310111 -0.509544 0.070440\nv -0.316468 -0.540236 0.051406\nv -0.310111 -0.570928 0.051406\nv -0.236014 -0.620690 0.051406\nv -0.205322 -0.614333 0.070440\nv -0.205322 -0.614333 0.051406\nv -0.179124 -0.597125 0.070440\nv -0.155560 -0.540236 0.070440\nv -0.179125 -0.483347 0.051406\nv -0.205322 -0.466139 0.051406\nv -0.236014 -0.469389 0.018964\nv -0.236014 -0.469389 0.045822\nv -0.263041 -0.474986 0.018964\nv -0.301264 -0.513209 0.045822\nv -0.301264 -0.513209 0.018964\nv -0.306861 -0.540236 0.018964\nv -0.306861 -0.540236 0.045822\nv -0.301264 -0.567263 0.018964\nv -0.286111 -0.590333 0.018964\nv -0.263041 -0.605486 0.045822\nv -0.263041 -0.605486 0.018964\nv -0.236014 -0.611083 0.045822\nv -0.185918 -0.590333 0.045822\nv -0.170764 -0.567264 0.018964\nv -0.165167 -0.540236 0.045822\nv -0.208987 -0.474986 0.045822\nv -0.306327 -0.569360 0.012081\nv -0.289998 -0.594220 0.012081\nv -0.289998 -0.594220 0.015824\nv -0.236014 -0.616580 0.012081\nv -0.206890 -0.610549 0.012081\nv -0.182031 -0.594220 0.015824\nv -0.165702 -0.569361 0.015824\nv -0.165702 -0.569361 0.012081\nv -0.165701 -0.511112 0.015824\nv -0.165702 -0.511112 0.012081\nv -0.182030 -0.486253 0.015824\nv -0.206890 -0.469924 0.015824\nv -0.206890 -0.469924 0.012081\nv -0.266706 -0.466139 0.070440\nv -0.236014 -0.459783 0.070440\nv -0.263041 -0.474986 0.076025\nv -0.286111 -0.490140 0.076024\nv -0.301264 -0.513209 0.076025\nv -0.316468 -0.540236 0.070440\nv -0.310111 -0.570928 0.070440\nv -0.292903 -0.597125 0.070440\nv -0.266706 -0.614333 0.070440\nv -0.236014 -0.620690 0.070440\nv -0.208987 -0.605486 0.076024\nv -0.161917 -0.570928 0.070440\nv -0.170764 -0.567263 0.076025\nv -0.161917 -0.509544 0.070440\nv -0.179125 -0.483347 0.070440\nv -0.185917 -0.490140 0.076024\nv -0.205322 -0.466139 0.070440\nv -0.208987 -0.474986 0.076025\nv -0.286111 -0.490140 0.045822\nv -0.266706 -0.466139 0.051406\nv -0.263041 -0.474986 0.045822\nv -0.185918 -0.490140 0.045822\nv -0.161917 -0.509544 0.051406\nv -0.170764 -0.513209 0.045822\nv -0.155560 -0.540237 0.051406\nv -0.161917 -0.570929 0.051406\nv -0.170764 -0.567263 0.045822\nv -0.179125 -0.597126 0.051406\nv -0.208987 -0.605486 0.045822\nv -0.266706 -0.614333 0.051406\nv -0.292903 -0.597125 0.051406\nv -0.286110 -0.590333 0.045822\nv -0.301264 -0.567263 0.045822\nv -0.310111 -0.509544 0.051406\nv -0.265139 -0.469924 0.015824\nv -0.236014 -0.463892 0.015824\nv -0.289998 -0.486253 0.015824\nv -0.286111 -0.490140 0.018964\nv -0.306327 -0.511112 0.015824\nv -0.312358 -0.540236 0.015824\nv -0.306327 -0.569360 0.015824\nv -0.265138 -0.610549 0.015824\nv -0.236014 -0.616581 0.015824\nv -0.236014 -0.611083 0.018964\nv -0.206890 -0.610549 0.015824\nv -0.208987 -0.605486 0.018964\nv -0.185918 -0.590333 0.018964\nv -0.159670 -0.540236 0.015824\nv -0.165167 -0.540236 0.018964\nv -0.170764 -0.513209 0.018964\nv -0.185918 -0.490140 0.018964\nv -0.208987 -0.474986 0.018964\nv -0.286111 -0.490140 0.008941\nv -0.265139 -0.469924 0.012081\nv -0.289998 -0.486253 0.012081\nv -0.236014 -0.463892 0.012081\nv -0.208987 -0.474986 0.008941\nv -0.182030 -0.486253 0.012081\nv -0.170764 -0.513209 0.008941\nv -0.159670 -0.540237 0.012081\nv -0.182031 -0.594220 0.012081\nv -0.236014 -0.611084 0.008941\nv -0.265138 -0.610549 0.012081\nv -0.286111 -0.590333 0.008941\nv -0.312358 -0.540236 0.012081\nv -0.306861 -0.540236 0.008941\nv -0.306327 -0.511112 0.012081\nv -0.301264 -0.513209 0.008941\nv -0.258708 -0.485448 0.104388\nv -0.236014 -0.469389 0.088373\nv -0.286111 -0.490140 0.088373\nv -0.301264 -0.513209 0.088373\nv -0.306861 -0.540236 0.088373\nv -0.290802 -0.562930 0.104388\nv -0.301264 -0.567263 0.088373\nv -0.286110 -0.590333 0.088373\nv -0.258708 -0.595024 0.104388\nv -0.208987 -0.605486 0.088373\nv -0.185917 -0.590333 0.088373\nv -0.193950 -0.582301 0.104388\nv -0.181226 -0.562930 0.104388\nv -0.170764 -0.567263 0.088373\nv -0.176526 -0.540236 0.104388\nv -0.185917 -0.490140 0.088373\nv -0.208987 -0.474987 0.088373\nv -0.434635 -0.443034 0.015509\nv -0.469382 -0.450096 0.015509\nv -0.498946 -0.469672 0.015509\nv -0.498946 -0.469672 0.201620\nv -0.518522 -0.499236 0.201620\nv -0.518522 -0.499236 0.015509\nv -0.525584 -0.533983 0.015509\nv -0.525584 -0.533983 0.201620\nv -0.518522 -0.568730 0.015509\nv -0.498946 -0.598293 0.015509\nv -0.469382 -0.617869 0.201620\nv -0.469382 -0.617869 0.015509\nv -0.434636 -0.624932 0.015509\nv -0.399889 -0.617870 0.015509\nv -0.399888 -0.617870 0.201620\nv -0.370325 -0.598294 0.015509\nv -0.370325 -0.598294 0.201620\nv -0.350749 -0.568731 0.015509\nv -0.343687 -0.533984 0.015509\nv -0.343686 -0.533983 0.201620\nv -0.350749 -0.499237 0.015509\nv -0.370325 -0.469672 0.015509\nv -0.399888 -0.450096 0.201620\nv -0.399888 -0.450096 0.015509\nv -0.434635 -0.474790 0.326707\nv -0.457250 -0.479386 0.326707\nv -0.476491 -0.492127 0.326707\nv -0.489232 -0.511368 0.326707\nv -0.493828 -0.533983 0.326707\nv -0.505072 -0.563159 0.326707\nv -0.489232 -0.556597 0.326707\nv -0.476491 -0.575838 0.326707\nv -0.457250 -0.588579 0.326707\nv -0.434635 -0.610350 0.326707\nv -0.434635 -0.593176 0.326707\nv -0.412021 -0.588579 0.326707\nv -0.380636 -0.587982 0.326707\nv -0.392780 -0.575838 0.326707\nv -0.380039 -0.556597 0.326707\nv -0.375442 -0.533983 0.326707\nv -0.364198 -0.504807 0.326707\nv -0.380039 -0.511368 0.326707\nv -0.392780 -0.492127 0.326707\nv -0.405459 -0.463546 0.326707\nv -0.412021 -0.479386 0.326707\nv -0.434635 -0.443034 0.289473\nv -0.469382 -0.450096 0.305645\nv -0.434635 -0.443034 0.305645\nv -0.498946 -0.469672 0.305645\nv -0.518522 -0.499236 0.305645\nv -0.518522 -0.499236 0.289473\nv -0.525584 -0.533983 0.305645\nv -0.525584 -0.533983 0.289473\nv -0.518522 -0.568730 0.305645\nv -0.498946 -0.598293 0.305645\nv -0.469382 -0.617869 0.305645\nv -0.434635 -0.624932 0.305645\nv -0.434635 -0.624932 0.289473\nv -0.399888 -0.617869 0.305645\nv -0.399888 -0.617870 0.289473\nv -0.505072 -0.504807 0.326707\nv -0.511002 -0.533983 0.326707\nv -0.488635 -0.587982 0.326707\nv -0.463811 -0.604420 0.326707\nv -0.405459 -0.604420 0.326707\nv -0.488635 -0.479983 0.326707\nv -0.463811 -0.463546 0.326707\nv -0.434635 -0.457616 0.326707\nv -0.399888 -0.450096 0.305645\nv -0.399888 -0.450096 0.289473\nv -0.370325 -0.469672 0.305645\nv -0.350749 -0.499236 0.305645\nv -0.343686 -0.533983 0.289473\nv -0.343686 -0.533983 0.305645\nv -0.350749 -0.568730 0.289473\nv -0.350749 -0.568730 0.305645\nv -0.370325 -0.598293 0.305645\nv -0.364198 -0.563159 0.326707\nv -0.358268 -0.533983 0.326707\nv -0.380636 -0.479983 0.326707\nv -0.474094 -0.438722 0.282160\nv -0.474094 -0.438722 0.257233\nv -0.507666 -0.460952 0.282160\nv -0.529896 -0.494524 0.282160\nv -0.537916 -0.533983 0.257233\nv -0.529896 -0.573442 0.257233\nv -0.507666 -0.607013 0.257233\nv -0.474094 -0.629244 0.282160\nv -0.434635 -0.637264 0.282160\nv -0.395177 -0.629244 0.257233\nv -0.339374 -0.494524 0.282160\nv -0.339374 -0.494525 0.257233\nv -0.361605 -0.460952 0.282160\nv -0.361605 -0.460952 0.257233\nv -0.395177 -0.438722 0.257233\nv -0.469382 -0.450096 0.249920\nv -0.469382 -0.450096 0.214747\nv -0.434635 -0.443034 0.249920\nv -0.498946 -0.469672 0.249920\nv -0.518522 -0.499236 0.249920\nv -0.518522 -0.499236 0.214747\nv -0.525584 -0.533983 0.249920\nv -0.525584 -0.533983 0.214746\nv -0.518522 -0.568730 0.249920\nv -0.498946 -0.598293 0.249920\nv -0.498946 -0.598293 0.214746\nv -0.469382 -0.617870 0.214747\nv -0.434635 -0.624932 0.249920\nv -0.399888 -0.617870 0.249920\nv -0.370325 -0.598293 0.249920\nv -0.399888 -0.617870 0.214746\nv -0.370325 -0.598294 0.214746\nv -0.350749 -0.568730 0.214746\nv -0.350749 -0.499236 0.214746\nv -0.370325 -0.469672 0.249920\nv -0.370325 -0.469672 0.214746\nv -0.472046 -0.443666 0.205772\nv -0.434635 -0.436063 0.210595\nv -0.503875 -0.464743 0.210595\nv -0.524952 -0.496572 0.210595\nv -0.524952 -0.496572 0.205772\nv -0.532556 -0.533983 0.210595\nv -0.524952 -0.571393 0.210595\nv -0.503875 -0.603223 0.210595\nv -0.503875 -0.603223 0.205772\nv -0.397225 -0.624300 0.210595\nv -0.365395 -0.603223 0.210595\nv -0.397225 -0.624300 0.205772\nv -0.344319 -0.571394 0.205772\nv -0.336715 -0.533983 0.210595\nv -0.344319 -0.496572 0.210595\nv -0.344319 -0.496572 0.205772\nv -0.365395 -0.464743 0.205772\nv -0.397225 -0.443666 0.210595\nv -0.397225 -0.443666 0.205772\nv -0.434635 -0.430702 0.282160\nv -0.469382 -0.450096 0.289473\nv -0.498946 -0.469672 0.289473\nv -0.537916 -0.533983 0.282160\nv -0.529896 -0.573442 0.282160\nv -0.518522 -0.568730 0.289473\nv -0.507666 -0.607013 0.282160\nv -0.498946 -0.598293 0.289473\nv -0.469382 -0.617869 0.289473\nv -0.395176 -0.629244 0.282160\nv -0.361604 -0.607013 0.282160\nv -0.370325 -0.598293 0.289473\nv -0.339374 -0.573441 0.282160\nv -0.331354 -0.533983 0.282160\nv -0.350749 -0.499236 0.289473\nv -0.370325 -0.469672 0.289473\nv -0.395177 -0.438722 0.282160\nv -0.507666 -0.460952 0.257233\nv -0.434635 -0.430702 0.257233\nv -0.399888 -0.450096 0.249920\nv -0.350749 -0.499236 0.249920\nv -0.331354 -0.533983 0.257233\nv -0.343686 -0.533983 0.249920\nv -0.339374 -0.573442 0.257233\nv -0.350749 -0.568730 0.249920\nv -0.361605 -0.607014 0.257233\nv -0.434635 -0.637264 0.257233\nv -0.474094 -0.629244 0.257233\nv -0.469382 -0.617869 0.249920\nv -0.529896 -0.494524 0.257233\nv -0.434635 -0.443034 0.214746\nv -0.472046 -0.443666 0.210595\nv -0.498946 -0.469672 0.214746\nv -0.518522 -0.568730 0.214746\nv -0.472046 -0.624300 0.210595\nv -0.434635 -0.631903 0.210595\nv -0.434635 -0.624932 0.214747\nv -0.344319 -0.571394 0.210595\nv -0.343686 -0.533983 0.214746\nv -0.365395 -0.464743 0.210595\nv -0.399888 -0.450096 0.214746\nv -0.503875 -0.464743 0.205772\nv -0.469382 -0.450096 0.201620\nv -0.434635 -0.436063 0.205771\nv -0.434635 -0.443034 0.201620\nv -0.370325 -0.469672 0.201620\nv -0.350749 -0.499236 0.201620\nv -0.336715 -0.533983 0.205772\nv -0.350749 -0.568730 0.201620\nv -0.365395 -0.603223 0.205772\nv -0.434635 -0.631903 0.205772\nv -0.434635 -0.624932 0.201620\nv -0.472046 -0.624300 0.205772\nv -0.498946 -0.598293 0.201620\nv -0.524952 -0.571393 0.205772\nv -0.518522 -0.568730 0.201620\nv -0.532556 -0.533983 0.205772\nv 0.564126 -0.262833 -0.268519\nv 0.519791 -0.375525 -0.250856\nv 0.537298 -0.380018 -0.241285\nv 0.511473 -0.382778 -0.260100\nv 0.529369 -0.387341 -0.250896\nv 0.417825 -0.453414 -0.347631\nv 0.429444 -0.461183 -0.344175\nv 0.356372 -0.492850 -0.396467\nv 0.327313 -0.522565 -0.419736\nv 0.289852 -0.540984 -0.442694\nv 0.285419 -0.565328 -0.438540\nv 0.242416 -0.564308 -0.471767\nv 0.239384 -0.588776 -0.468819\nv 0.321773 -0.546811 -0.414628\nv 0.315740 -0.570414 -0.409516\nv 0.280488 -0.588304 -0.434376\nv 0.235849 -0.610956 -0.465856\nv 0.359932 -0.526469 -0.387428\nv 0.366304 -0.501696 -0.393908\nv 0.423805 -0.488378 -0.332543\nv 0.353047 -0.551054 -0.380930\nv 0.417583 -0.514896 -0.320484\nv 0.268394 -0.628102 -0.426005\nv 0.226523 -0.645026 -0.459859\nv 0.402517 -0.564887 -0.294446\nv 0.486499 -0.446180 -0.268189\nv 0.487541 -0.419964 -0.292569\nv 0.536892 -0.405538 -0.202687\nv 0.552731 -0.385722 -0.178442\nv 0.589563 -0.282430 -0.129955\nv 0.580908 -0.265972 -0.186459\nv 0.600782 -0.292802 -0.060158\nv 0.572626 -0.379751 -0.103085\nv 0.582608 -0.202305 -0.248701\nv 0.652672 0.050906 -0.088076\nv 0.564021 -0.397379 -0.117695\nv 0.555467 -0.410239 -0.132772\nv 0.542888 -0.423403 -0.154618\nv 0.484892 -0.470950 -0.242360\nv 0.479138 -0.513979 -0.184185\nv 0.301460 -0.614738 -0.399270\nv 0.205225 -0.659319 -0.454859\nv 0.336973 -0.599372 -0.367859\nv 0.462132 -0.522107 -0.174176\nv 0.548569 -0.457634 -0.061201\nv 0.565449 -0.440420 -0.026773\nv 0.562879 -0.429182 0.016053\nv 0.577964 -0.423691 0.000230\nv 0.575842 -0.415415 0.044220\nv 0.589435 -0.403144 0.026024\nv 0.460392 -0.537415 -0.159562\nv 0.533227 -0.459606 -0.046192\nv 0.527566 -0.468884 -0.024235\nv 0.383972 -0.577679 -0.288567\nv 0.384036 -0.597640 -0.279625\nv 0.318125 -0.613893 -0.363645\nv 0.316694 -0.635816 -0.357281\nv 0.282020 -0.629365 -0.395040\nv 0.280958 -0.648002 -0.389870\nv 0.248134 -0.642582 -0.421435\nv 0.247596 -0.653269 -0.418452\nv 0.542440 -0.451186 0.010666\nv 0.549823 -0.442869 -0.011949\nv 0.554195 -0.436592 0.039444\nv 0.565821 -0.421945 0.068328\nv 0.566045 -0.198434 -0.254923\nv 0.625268 0.051190 -0.169065\nv 0.625268 0.051190 -0.150078\nv 0.566046 -0.204647 -0.235935\nv 0.546148 -0.272930 -0.249212\nv 0.546095 -0.262086 -0.276595\nv 0.512027 -0.389553 -0.242361\nv 0.519791 -0.382010 -0.232396\nv 0.472952 -0.413759 -0.298534\nv 0.473047 -0.424354 -0.287220\nv 0.417839 -0.466537 -0.340659\nv 0.356372 -0.506394 -0.390217\nv 0.317127 -0.513645 -0.422311\nv 0.317127 -0.527189 -0.416061\nv 0.278921 -0.545767 -0.439196\nv 0.278921 -0.532223 -0.445446\nv 0.230541 -0.555748 -0.474743\nv 0.643370 0.051189 -0.160799\nv 0.625268 0.051190 -0.140256\nv 0.636039 0.050590 -0.107294\nv 0.656475 0.050196 -0.047501\nv 0.644309 0.049213 -0.030530\nv 0.652265 0.047382 0.067042\nv 0.660252 0.048778 0.015611\nv 0.669374 0.043713 0.240457\nv 0.616382 -0.315393 0.091813\nv 0.599378 -0.315393 0.104981\nv 0.651351 0.043713 0.253626\nv 0.594238 -0.225826 0.400082\nv 0.568911 -0.302107 0.499697\nv 0.639967 -0.327235 0.538742\nv 0.565140 -0.302107 0.510057\nv 0.588310 -0.239638 0.645691\nv 0.520511 -0.225826 0.602646\nv 0.643738 -0.327235 0.528381\nv 0.794477 -0.222440 0.583305\nv 0.672911 -0.239638 0.413248\nv 0.581928 -0.225030 0.650936\nv 0.520908 -0.213023 0.611951\nv 0.671353 -0.224855 0.405845\nv 0.685146 -0.043320 0.375813\nv 0.600266 -0.212784 0.393928\nv 0.790744 -0.222440 0.593561\nv 0.894720 0.114861 0.430829\nv 0.892819 0.199061 0.614649\nv 0.886898 0.199496 0.631837\nv 0.769560 0.114859 0.774698\nv 0.885110 0.108212 0.404623\nv 0.570615 -0.044678 0.695143\nv 0.555626 -0.022288 0.711150\nv 0.880670 0.069232 0.432063\nv 0.848095 -0.063035 0.437679\nv 0.803492 -0.180825 0.564308\nv 0.785439 -0.180825 0.613908\nv 0.718473 -0.071093 0.771016\nv 0.738215 -0.063035 0.739570\nv 0.758345 0.096073 0.783686\nv 0.759584 0.069232 0.764742\nv 0.887221 0.114158 0.467407\nv 0.885936 0.171806 0.592417\nv 0.867450 0.172132 0.643896\nv 0.787407 0.114211 0.741756\nv 0.891901 0.096073 0.416743\nv 0.773258 0.179361 0.291529\nv 0.887797 0.126867 0.418686\nv 0.745352 0.108213 0.788605\nv 0.808608 0.272807 0.603735\nv 0.586976 0.179361 0.803329\nv 0.756451 0.126865 0.779550\nv 0.684405 -0.020209 0.351641\nv 0.844115 -0.070808 0.393247\nv 0.574227 0.162097 0.811062\nv 0.885577 0.212184 0.611993\nv 0.879644 0.212604 0.629213\nv 0.687107 0.182846 0.247805\nv 0.744809 0.058670 0.267731\nv 0.664120 0.079250 0.238365\nv 0.467715 0.072770 0.773460\nv 0.687095 0.201652 0.261015\nv 0.814697 0.272620 0.586236\nv 0.624530 0.320935 0.516517\nv 0.618329 0.321590 0.534012\nv 0.501363 0.201649 0.771325\nv 0.492880 0.182845 0.781456\nv 0.768456 0.162097 0.277412\nv 0.705611 -0.054028 0.781807\nv 0.706203 -0.070845 0.771697\nv 0.695040 -0.058301 0.777282\nv 0.545398 0.040245 0.793458\nv 0.853180 -0.071092 0.400911\nv 0.839134 -0.058228 0.381666\nv 0.850265 -0.054028 0.384374\nv 0.736390 0.046939 0.273148\nv 0.472702 0.059744 0.768489\nv 0.548396 0.052192 0.802823\nv 0.664146 0.066285 0.245568\nv -0.506509 -0.382778 -0.260100\nv -0.482577 -0.419964 -0.292569\nv -0.412861 -0.453414 -0.347631\nv -0.351408 -0.492850 -0.396467\nv -0.237452 -0.564308 -0.471767\nv -0.225577 -0.555748 -0.474743\nv -0.280455 -0.565328 -0.438540\nv -0.284888 -0.540984 -0.442694\nv -0.234420 -0.588776 -0.468819\nv -0.316809 -0.546811 -0.414628\nv -0.322349 -0.522565 -0.419736\nv -0.310776 -0.570414 -0.409516\nv -0.275525 -0.588304 -0.434376\nv -0.230886 -0.610956 -0.465856\nv -0.354968 -0.526469 -0.387428\nv -0.361340 -0.501696 -0.393908\nv -0.418841 -0.488378 -0.332543\nv -0.424480 -0.461183 -0.344175\nv -0.348083 -0.551054 -0.380930\nv -0.412619 -0.514896 -0.320484\nv -0.332009 -0.599372 -0.367859\nv -0.263430 -0.628102 -0.426005\nv -0.481535 -0.446180 -0.268189\nv -0.531928 -0.405538 -0.202687\nv -0.524405 -0.387341 -0.250896\nv -0.547767 -0.385722 -0.178442\nv -0.532334 -0.380018 -0.241285\nv -0.584599 -0.282430 -0.129955\nv -0.575944 -0.265972 -0.186459\nv -0.595818 -0.292802 -0.060158\nv -0.567662 -0.379751 -0.103085\nv -0.584471 -0.403144 0.026024\nv -0.559057 -0.397379 -0.117695\nv -0.550503 -0.410239 -0.132772\nv -0.537924 -0.423403 -0.154618\nv -0.479928 -0.470950 -0.242360\nv -0.573000 -0.423691 0.000230\nv -0.296496 -0.614738 -0.399270\nv -0.221559 -0.645026 -0.459859\nv -0.200261 -0.659319 -0.454859\nv -0.313161 -0.613893 -0.363645\nv -0.397554 -0.564887 -0.294446\nv -0.474174 -0.513979 -0.184185\nv -0.543605 -0.457634 -0.061201\nv -0.560485 -0.440420 -0.026773\nv -0.570878 -0.415415 0.044220\nv -0.522602 -0.468884 -0.024235\nv -0.457168 -0.522107 -0.174176\nv -0.528263 -0.459606 -0.046192\nv -0.455428 -0.537415 -0.159562\nv -0.379008 -0.577679 -0.288567\nv -0.379072 -0.597640 -0.279625\nv -0.311730 -0.635816 -0.357281\nv -0.277057 -0.629365 -0.395040\nv -0.275994 -0.648002 -0.389870\nv -0.243170 -0.642582 -0.421435\nv -0.242632 -0.653269 -0.418452\nv -0.537476 -0.451186 0.010666\nv -0.544859 -0.442869 -0.011949\nv -0.549231 -0.436592 0.039444\nv -0.557915 -0.429182 0.016053\nv -0.560857 -0.421945 0.068328\nv -0.559162 -0.262833 -0.268519\nv -0.577644 -0.202305 -0.248701\nv -0.638406 0.051188 -0.160799\nv -0.620304 0.051189 -0.169065\nv -0.561082 -0.204647 -0.235935\nv -0.561081 -0.198434 -0.254923\nv -0.541184 -0.272930 -0.249212\nv -0.514827 -0.382010 -0.232396\nv -0.541131 -0.262086 -0.276595\nv -0.507063 -0.389553 -0.242361\nv -0.514827 -0.375525 -0.250856\nv -0.468083 -0.424354 -0.287220\nv -0.467988 -0.413759 -0.298534\nv -0.412875 -0.466537 -0.340659\nv -0.351408 -0.506394 -0.390217\nv -0.312163 -0.527189 -0.416061\nv -0.312163 -0.513645 -0.422311\nv -0.273957 -0.545767 -0.439196\nv -0.273957 -0.532223 -0.445446\nv -0.620304 0.051190 -0.150078\nv -0.647708 0.050906 -0.088076\nv -0.631075 0.050589 -0.107294\nv -0.620304 0.051190 -0.140256\nv -0.651511 0.050196 -0.047501\nv -0.639345 0.049213 -0.030530\nv -0.647301 0.047381 0.067042\nv -0.655288 0.048778 0.015611\nv -0.594414 -0.315393 0.104981\nv -0.611418 -0.315393 0.091813\nv -0.646387 0.043713 0.253626\nv -0.664410 0.043713 0.240457\nv -0.563947 -0.302107 0.499697\nv -0.560176 -0.302107 0.510057\nv -0.638774 -0.327235 0.528381\nv -0.785780 -0.222440 0.593561\nv -0.565651 -0.044678 0.695143\nv -0.576964 -0.225030 0.650936\nv -0.515944 -0.213023 0.611951\nv -0.583346 -0.239638 0.645691\nv -0.515547 -0.225826 0.602646\nv -0.666389 -0.224855 0.405845\nv -0.595302 -0.212784 0.393928\nv -0.589274 -0.225826 0.400082\nv -0.667947 -0.239638 0.413248\nv -0.635003 -0.327235 0.538742\nv -0.887857 0.199061 0.614649\nv -0.881936 0.199496 0.631837\nv -0.764596 0.114859 0.774698\nv -0.751487 0.126865 0.779550\nv -0.690076 -0.058302 0.777282\nv -0.550662 -0.022288 0.711150\nv -0.701239 -0.070845 0.771697\nv -0.467738 0.059744 0.768489\nv -0.875706 0.069231 0.432063\nv -0.843131 -0.063035 0.437679\nv -0.789513 -0.222440 0.583305\nv -0.798528 -0.180825 0.564308\nv -0.780475 -0.180825 0.613908\nv -0.733251 -0.063035 0.739570\nv -0.754620 0.069232 0.764742\nv -0.882257 0.114158 0.467407\nv -0.889756 0.114861 0.430829\nv -0.880972 0.171806 0.592417\nv -0.862486 0.172132 0.643896\nv -0.782443 0.114211 0.741756\nv -0.886937 0.096072 0.416743\nv -0.845301 -0.054029 0.384374\nv -0.880613 0.212184 0.611993\nv -0.809733 0.272620 0.586236\nv -0.882833 0.126867 0.418686\nv -0.753381 0.096073 0.783686\nv -0.713509 -0.071093 0.771016\nv -0.740388 0.108213 0.788605\nv -0.680182 -0.043321 0.375813\nv -0.834170 -0.058229 0.381666\nv -0.839151 -0.070808 0.393247\nv -0.679441 -0.020209 0.351641\nv -0.659182 0.066285 0.245569\nv -0.803644 0.272807 0.603735\nv -0.874682 0.212604 0.629213\nv -0.682143 0.182846 0.247805\nv -0.739845 0.058669 0.267731\nv -0.569263 0.162097 0.811062\nv -0.487916 0.182845 0.781456\nv -0.543432 0.052191 0.802823\nv -0.682133 0.201652 0.261016\nv -0.768294 0.179361 0.291529\nv -0.619566 0.320935 0.516517\nv -0.613365 0.321590 0.534012\nv -0.582012 0.179361 0.803329\nv -0.496400 0.201649 0.771325\nv -0.763492 0.162097 0.277412\nv -0.880146 0.108212 0.404623\nv -0.848216 -0.071093 0.400911\nv -0.700647 -0.054029 0.781807\nv -0.462751 0.072770 0.773460\nv -0.540434 0.040244 0.793458\nv -0.731426 0.046938 0.273148\nv -0.659156 0.079250 0.238365\nv 0.773751 -0.101715 0.756737\nv 0.752694 0.108678 0.773159\nv 0.706062 -0.074124 0.765724\nv 0.804099 -0.220519 0.592586\nv 0.838683 -0.216915 0.605202\nv 0.725549 -0.077794 0.773045\nv 0.782455 -0.217887 0.584508\nv 0.783836 -0.101966 0.750195\nv 0.885560 -0.101775 0.449833\nv 0.840265 -0.074124 0.397006\nv 0.900444 0.105007 0.428079\nv 0.859752 -0.077794 0.404327\nv 0.880957 0.108678 0.420758\nv 0.927119 0.076076 0.482131\nv 0.772181 0.105007 0.780480\nv 0.899237 0.195110 0.627133\nv 0.818875 0.082857 0.763212\nv 0.879752 0.198780 0.619813\nv 0.925117 0.082857 0.471313\nv 0.926784 0.153516 0.637204\nv 0.930406 0.142225 0.638518\nv 0.890049 -0.091192 0.486988\nv 0.889047 -0.102051 0.461474\nv 0.922125 0.060239 0.504437\nv 0.925390 0.116565 0.636702\nv 0.837711 0.060114 0.736536\nv 0.827364 0.075993 0.756280\nv 0.800254 -0.091075 0.731519\nv 0.855039 -0.183170 0.611260\nv 0.847173 -0.209729 0.608312\nv -0.720585 -0.077795 0.773045\nv -0.813911 0.082857 0.763212\nv -0.747730 0.108678 0.773159\nv -0.778872 -0.101966 0.750195\nv -0.822400 0.075992 0.756280\nv -0.799135 -0.220519 0.592586\nv -0.768787 -0.101715 0.756737\nv -0.833719 -0.216915 0.605202\nv -0.701098 -0.074124 0.765724\nv -0.842209 -0.209729 0.608312\nv -0.854788 -0.077795 0.404327\nv -0.880596 -0.101775 0.449833\nv -0.777491 -0.217887 0.584508\nv -0.884083 -0.102051 0.461474\nv -0.835301 -0.074124 0.397006\nv -0.875993 0.108678 0.420758\nv -0.922155 0.076075 0.482131\nv -0.921820 0.153516 0.637204\nv -0.767217 0.105007 0.780480\nv -0.894275 0.195110 0.627133\nv -0.925442 0.142225 0.638518\nv -0.920153 0.082857 0.471313\nv -0.895480 0.105007 0.428079\nv -0.874788 0.198780 0.619813\nv -0.917161 0.060238 0.504437\nv -0.920426 0.116565 0.636702\nv -0.832747 0.060114 0.736536\nv -0.795290 -0.091076 0.731519\nv -0.850075 -0.183170 0.611260\nv -0.885085 -0.091192 0.486988\nv 0.488159 -0.360914 -0.277014\nv 0.481273 -0.251992 -0.307364\nv 0.521928 -0.256177 -0.294407\nv 0.362637 -0.459936 -0.379680\nv 0.329551 -0.481057 -0.405777\nv 0.299522 -0.496848 -0.425537\nv 0.213625 -0.541042 -0.480904\nv 0.209607 -0.555747 -0.474738\nv 0.356216 -0.447046 -0.388358\nv 0.380184 -0.434593 -0.369936\nv 0.453503 -0.358776 -0.281243\nv 0.464954 -0.379841 -0.297389\nv 0.434817 -0.376024 -0.300373\nv 0.470606 -0.383939 -0.290934\nv 0.493503 -0.364650 -0.269529\nv 0.424226 -0.419145 -0.330522\nv 0.417878 -0.414755 -0.334580\nv 0.382726 -0.410886 -0.339586\nv 0.517458 -0.253575 -0.302492\nv 0.581667 -0.029589 -0.226223\nv 0.293543 -0.491868 -0.429224\nv 0.208991 -0.534496 -0.484079\nv 0.181653 -0.527349 -0.479677\nv 0.259073 -0.484362 -0.428283\nv 0.274212 -0.475537 -0.418119\nv 0.319400 -0.478792 -0.412404\nv 0.348210 -0.444142 -0.392617\nv 0.281357 -0.457279 -0.416221\nv 0.324703 -0.460350 -0.410307\nv 0.307091 -0.441357 -0.399555\nv 0.373493 -0.430949 -0.372683\nv 0.334353 -0.428439 -0.380647\nv 0.334144 -0.462609 -0.404444\nv 0.352192 -0.431203 -0.363054\nv 0.391230 -0.433603 -0.354869\nv 0.398056 -0.437920 -0.352252\nv 0.546109 -0.268573 -0.257038\nv 0.438163 -0.443354 -0.314473\nv 0.418433 -0.466394 -0.340522\nv 0.447827 -0.444876 -0.313397\nv 0.496109 -0.404339 -0.261522\nv 0.384283 -0.489058 -0.368743\nv 0.375345 -0.487365 -0.369525\nv 0.354649 -0.507574 -0.391676\nv 0.345885 -0.505883 -0.392457\nv 0.319670 -0.525952 -0.414521\nv 0.593902 -0.059843 -0.188115\nv 0.535361 -0.267792 -0.259412\nv 0.597549 -0.093247 -0.197044\nv 0.606692 -0.054433 -0.183522\nv 0.613913 -0.018641 -0.171515\nv 0.608758 0.016838 -0.162874\nv 0.619899 0.016450 -0.160538\nv 0.612206 0.051190 -0.150082\nv 0.493771 -0.375523 -0.250857\nv 0.521892 -0.262085 -0.276595\nv 0.424339 -0.432684 -0.321972\nv 0.407873 -0.453187 -0.347352\nv 0.436746 -0.432681 -0.321965\nv 0.395643 -0.453187 -0.347354\nv 0.483593 -0.395672 -0.276147\nv 0.470939 -0.395688 -0.276171\nv 0.362064 -0.475515 -0.374994\nv 0.344633 -0.494032 -0.397926\nv 0.332823 -0.494034 -0.397926\nv 0.298143 -0.512411 -0.420769\nv 0.220977 -0.555747 -0.474740\nv 0.533822 -0.262086 -0.276595\nv 0.587965 -0.023473 -0.193667\nv 0.599783 -0.023362 -0.193899\nv 0.602801 -0.006990 -0.188270\nv 0.577079 -0.024255 -0.192044\nv 0.579879 -0.012003 -0.186757\nv 0.595059 0.019557 -0.179205\nv 0.607166 0.019556 -0.179204\nv 0.230541 -0.569292 -0.468493\nv 0.311039 -0.524260 -0.415301\nv 0.222173 -0.567598 -0.469272\nv 0.309806 -0.512409 -0.420769\nv 0.374068 -0.475515 -0.374993\nv 0.409201 -0.464743 -0.341377\nv 0.485273 -0.403266 -0.263367\nv 0.508246 -0.381199 -0.234704\nv 0.506596 -0.375524 -0.250856\nv 0.593381 -0.049746 -0.203115\nv 0.600647 -0.031905 -0.178361\nv 0.604190 -0.012523 -0.171996\nv 0.612206 0.051190 -0.168420\nv 0.409379 -0.407250 -0.314419\nv 0.456034 -0.367819 -0.279083\nv 0.374332 -0.244073 -0.472590\nv 0.322586 -0.459129 -0.383261\nv 0.282036 -0.481898 -0.411552\nv 0.222891 -0.513508 -0.449986\nv 0.199008 -0.417274 -0.547621\nv 0.140172 -0.463179 -0.577180\nv 0.154450 -0.549539 -0.493492\nv 0.162114 -0.365961 -0.612887\nv 0.158973 -0.375781 -0.608422\nv 0.432303 -0.203383 -0.420429\nv 0.429569 -0.156747 -0.444292\nv 0.455182 -0.178919 -0.398171\nv 0.498792 -0.260512 -0.284733\nv 0.481318 -0.317603 -0.281603\nv 0.486060 -0.143083 -0.359374\nv 0.515854 -0.102868 -0.313787\nv 0.506428 -0.083208 -0.337389\nv 0.539219 -0.143339 -0.243428\nv 0.519545 -0.201470 -0.268512\nv 0.538103 -0.065262 -0.271157\nv 0.527411 -0.053757 -0.294747\nv 0.555212 -0.035917 -0.237893\nv 0.574279 -0.036508 -0.197331\nv 0.564096 -0.020484 -0.220399\nv 0.556082 -0.088980 -0.219973\nv 0.551690 -0.018690 -0.243974\nv 0.572152 -0.001835 -0.183123\nv 0.568870 -0.012008 -0.210790\nv 0.561415 -0.001832 -0.206820\nv 0.558018 0.000558 -0.177036\nv 0.546851 0.000562 -0.200685\nv 0.295526 -0.309974 -0.504632\nv 0.257168 -0.346985 -0.519684\nv 0.306318 -0.319076 -0.503644\nv 0.361554 -0.238437 -0.476766\nv 0.389224 -0.203912 -0.463952\nv 0.277739 -0.307991 -0.499084\nv 0.344836 -0.237504 -0.471084\nv 0.240298 -0.344556 -0.514930\nv 0.403723 -0.206216 -0.458003\nv 0.385921 -0.159880 -0.460639\nv 0.374491 -0.203582 -0.458930\nv 0.165255 -0.356141 -0.617353\nv 0.164367 -0.346975 -0.611316\nv 0.267695 -0.356221 -0.520111\nv 0.147826 -0.344586 -0.600396\nv 0.547436 -0.001836 -0.233547\nv 0.556287 -0.012052 -0.234362\nv 0.542697 -0.008591 -0.243315\nv 0.534066 -0.020889 -0.261097\nv 0.543321 -0.030776 -0.261473\nv 0.527836 -0.006208 -0.237652\nv 0.532919 0.000564 -0.227863\nv 0.518582 -0.018537 -0.255476\nv 0.517658 -0.044274 -0.294911\nv 0.496115 -0.074242 -0.338243\nv 0.466601 -0.106290 -0.384582\nv 0.477367 -0.114702 -0.382990\nv 0.436813 -0.133830 -0.424496\nv 0.448212 -0.141472 -0.421855\nv 0.417069 -0.150277 -0.448552\nv 0.415619 -0.166275 -0.458515\nv 0.401784 -0.161176 -0.464679\nv 0.400526 -0.148599 -0.443916\nv 0.419645 -0.131845 -0.419386\nv 0.448919 -0.104148 -0.379241\nv 0.478456 -0.072021 -0.332796\nv 0.500986 -0.041979 -0.289366\nv 0.585694 -0.031069 -0.217553\nv 0.585583 -0.034644 -0.197809\nv 0.561091 -0.031069 -0.217553\nv 0.556636 -0.029753 -0.225273\nv 0.550596 -0.028656 -0.231738\nv 0.568631 0.050705 -0.211155\nv 0.553160 0.057339 -0.207010\nv 0.575039 0.034689 -0.212872\nv 0.572855 0.034689 -0.221021\nv 0.573310 0.026048 -0.212409\nv 0.571126 0.026048 -0.220558\nv 0.561507 0.013828 -0.209246\nv 0.559323 0.013829 -0.217395\nv 0.553160 0.010249 -0.207010\nv 0.550977 0.010249 -0.215159\nv 0.542630 0.055550 -0.212922\nv 0.534284 0.051970 -0.210686\nv 0.571789 0.056235 -0.220735\nv 0.559572 0.052193 -0.254101\nv 0.564687 0.025246 -0.255472\nv 0.571789 0.013143 -0.220735\nv 0.562205 0.006626 -0.218167\nv 0.551787 0.011891 -0.252015\nv 0.542665 0.009935 -0.249571\nv 0.528520 0.057937 -0.209141\nv 0.533544 0.011891 -0.247127\nv 0.524423 0.015803 -0.244683\nv 0.528521 0.011441 -0.209141\nv 0.562205 0.062752 -0.218167\nv 0.550977 0.057339 -0.215159\nv 0.550977 0.065160 -0.215159\nv 0.559323 0.055550 -0.217395\nv 0.566447 0.050705 -0.219304\nv 0.578084 0.046313 -0.222422\nv 0.571126 0.043330 -0.220558\nv 0.580409 0.034689 -0.223045\nv 0.578084 0.023065 -0.222422\nv 0.566447 0.018673 -0.219304\nv 0.550977 0.004218 -0.215159\nv 0.542630 0.013828 -0.212922\nv 0.539749 0.006626 -0.212150\nv 0.534284 0.017408 -0.210686\nv 0.539749 0.062752 -0.212150\nv 0.541772 0.034689 -0.252966\nv 0.534688 0.016985 -0.251068\nv 0.524670 0.027356 -0.248384\nv 0.527604 0.020023 -0.249170\nv 0.521737 0.034689 -0.247598\nv 0.524670 0.042022 -0.248384\nv 0.534688 0.052393 -0.251068\nv 0.527604 0.049355 -0.249170\nv 0.558872 0.042022 -0.257548\nv 0.554901 0.048282 -0.256484\nv 0.554901 0.021097 -0.256484\nv 0.561507 0.055550 -0.209246\nv 0.573310 0.043330 -0.212409\nv 0.600081 0.051190 -0.168420\nv 0.544814 0.055550 -0.204773\nv 0.551592 0.083588 -0.155075\nv 0.537145 0.077453 -0.151204\nv 0.536468 0.051970 -0.202537\nv 0.590037 -0.012077 -0.189990\nv 0.563615 -0.012077 -0.180833\nv 0.569853 0.017408 -0.211483\nv 0.553160 0.017408 -0.207010\nv 0.536468 0.017408 -0.202537\nv 0.537193 -0.012077 -0.171676\nv 0.548854 0.016985 -0.254864\nv 0.559572 0.017185 -0.254101\nv 0.541772 0.015466 -0.252966\nv 0.558872 0.027356 -0.257548\nv 0.566576 0.034689 -0.255978\nv 0.560339 0.034689 -0.257942\nv 0.564687 0.044132 -0.255472\nv 0.551787 0.057487 -0.252015\nv 0.548854 0.052393 -0.254864\nv 0.542665 0.059443 -0.249571\nv 0.541772 0.053912 -0.252966\nv 0.533544 0.057487 -0.247127\nv 0.524423 0.053576 -0.244683\nv 0.580486 0.083588 -0.138429\nv 0.591964 0.075704 -0.165937\nv 0.591965 0.075704 -0.138430\nv 0.580486 0.083588 -0.162817\nv 0.566039 0.086655 -0.138428\nv 0.566039 0.086655 -0.158946\nv 0.597507 0.064322 -0.167554\nv 0.597507 0.064322 -0.138430\nv 0.551592 0.083588 -0.138428\nv 0.537146 0.077453 -0.138427\nv 0.600081 0.051190 -0.138430\nv -0.516928 -0.262085 -0.276595\nv -0.580730 -0.031069 -0.217553\nv -0.512494 -0.253575 -0.302492\nv -0.476309 -0.251992 -0.307364\nv -0.488539 -0.364650 -0.269529\nv -0.465975 -0.395688 -0.276171\nv -0.488807 -0.375523 -0.250857\nv -0.419262 -0.419145 -0.330522\nv -0.357673 -0.459936 -0.379680\nv -0.357100 -0.475515 -0.374994\nv -0.327859 -0.494034 -0.397926\nv -0.293179 -0.512411 -0.420769\nv -0.294558 -0.496848 -0.425537\nv -0.351252 -0.447046 -0.388358\nv -0.375220 -0.434593 -0.369936\nv -0.459990 -0.379841 -0.297389\nv -0.448539 -0.358776 -0.281243\nv -0.483195 -0.360914 -0.277014\nv -0.429853 -0.376024 -0.300373\nv -0.465642 -0.383939 -0.290934\nv -0.412914 -0.414755 -0.334580\nv -0.386266 -0.433603 -0.354869\nv -0.377762 -0.410886 -0.339586\nv -0.347229 -0.431203 -0.363054\nv -0.545632 -0.028656 -0.231738\nv -0.516964 -0.256177 -0.294407\nv -0.208661 -0.541042 -0.480904\nv -0.288579 -0.491868 -0.429224\nv -0.204027 -0.534496 -0.484079\nv -0.176689 -0.527349 -0.479677\nv -0.254109 -0.484362 -0.428283\nv -0.314436 -0.478792 -0.412404\nv -0.324587 -0.481057 -0.405777\nv -0.276393 -0.457279 -0.416221\nv -0.343246 -0.444142 -0.392617\nv -0.319739 -0.460350 -0.410307\nv -0.302127 -0.441357 -0.399555\nv -0.368529 -0.430949 -0.372683\nv -0.329389 -0.428439 -0.380647\nv -0.329180 -0.462609 -0.404444\nv -0.269248 -0.475537 -0.418119\nv -0.393092 -0.437920 -0.352252\nv -0.541145 -0.268573 -0.257038\nv -0.433199 -0.443354 -0.314473\nv -0.413469 -0.466394 -0.340522\nv -0.442863 -0.444876 -0.313397\nv -0.491145 -0.404339 -0.261522\nv -0.480309 -0.403266 -0.263367\nv -0.379319 -0.489058 -0.368743\nv -0.349685 -0.507574 -0.391676\nv -0.340921 -0.505883 -0.392457\nv -0.314706 -0.525952 -0.414521\nv -0.306075 -0.524260 -0.415301\nv -0.225577 -0.569292 -0.468493\nv -0.588938 -0.059844 -0.188115\nv -0.592585 -0.093247 -0.197044\nv -0.530397 -0.267792 -0.259412\nv -0.601728 -0.054434 -0.183522\nv -0.599226 -0.012524 -0.171996\nv -0.608949 -0.018642 -0.171515\nv -0.603794 0.016838 -0.162874\nv -0.614935 0.016449 -0.160538\nv -0.501632 -0.375524 -0.250856\nv -0.419376 -0.432684 -0.321972\nv -0.402909 -0.453187 -0.347352\nv -0.390679 -0.453187 -0.347354\nv -0.478629 -0.395672 -0.276147\nv -0.369104 -0.475515 -0.374993\nv -0.204643 -0.555747 -0.474738\nv -0.216014 -0.555747 -0.474740\nv -0.588417 -0.049747 -0.203115\nv -0.528858 -0.262086 -0.276595\nv -0.583001 -0.023473 -0.193667\nv -0.594819 -0.023362 -0.193899\nv -0.597837 -0.006991 -0.188270\nv -0.572115 -0.024256 -0.192044\nv -0.590095 0.019556 -0.179205\nv -0.607242 0.051190 -0.168420\nv -0.595117 0.051190 -0.168420\nv -0.304842 -0.512409 -0.420769\nv -0.217209 -0.567598 -0.469272\nv -0.339669 -0.494032 -0.397926\nv -0.370381 -0.487365 -0.369525\nv -0.404237 -0.464743 -0.341377\nv -0.431782 -0.432681 -0.321965\nv -0.503282 -0.381199 -0.234704\nv -0.595683 -0.031906 -0.178361\nv -0.602202 0.019556 -0.179204\nv -0.607242 0.051190 -0.150082\nv -0.404415 -0.407250 -0.314419\nv -0.451070 -0.367819 -0.279083\nv -0.317622 -0.459129 -0.383261\nv -0.277072 -0.481898 -0.411552\nv -0.262731 -0.356221 -0.520111\nv -0.217927 -0.513508 -0.449986\nv -0.194044 -0.417274 -0.547621\nv -0.149486 -0.549539 -0.493492\nv -0.135208 -0.463179 -0.577180\nv -0.157150 -0.365961 -0.612887\nv -0.154009 -0.375781 -0.608422\nv -0.427339 -0.203383 -0.420429\nv -0.450218 -0.178919 -0.398171\nv -0.443248 -0.141472 -0.421855\nv -0.493828 -0.260512 -0.284733\nv -0.476354 -0.317603 -0.281603\nv -0.481096 -0.143083 -0.359374\nv -0.472403 -0.114702 -0.382990\nv -0.510890 -0.102868 -0.313787\nv -0.534255 -0.143339 -0.243428\nv -0.514581 -0.201470 -0.268512\nv -0.533141 -0.065262 -0.271157\nv -0.522447 -0.053757 -0.294747\nv -0.550248 -0.035917 -0.237893\nv -0.538359 -0.030776 -0.261473\nv -0.569315 -0.036509 -0.197331\nv -0.559132 -0.020485 -0.220399\nv -0.551118 -0.088981 -0.219973\nv -0.551323 -0.012052 -0.234362\nv -0.567188 -0.001835 -0.183123\nv -0.563906 -0.012008 -0.210790\nv -0.556451 -0.001832 -0.206820\nv -0.574915 -0.012003 -0.186757\nv -0.542472 -0.001836 -0.233547\nv -0.541887 0.000562 -0.200685\nv -0.553054 0.000558 -0.177036\nv -0.290562 -0.309974 -0.504632\nv -0.301355 -0.319076 -0.503644\nv -0.356590 -0.238437 -0.476766\nv -0.369369 -0.244073 -0.472590\nv -0.384260 -0.203912 -0.463952\nv -0.272775 -0.307991 -0.499084\nv -0.339872 -0.237504 -0.471084\nv -0.235334 -0.344556 -0.514930\nv -0.398759 -0.206216 -0.458003\nv -0.410655 -0.166275 -0.458515\nv -0.369527 -0.203582 -0.458930\nv -0.160291 -0.356141 -0.617353\nv -0.252204 -0.346985 -0.519684\nv -0.159403 -0.346975 -0.611316\nv -0.142862 -0.344586 -0.600396\nv -0.546726 -0.018690 -0.243974\nv -0.537733 -0.008591 -0.243315\nv -0.529104 -0.020889 -0.261097\nv -0.522872 -0.006208 -0.237652\nv -0.527955 0.000563 -0.227863\nv -0.513618 -0.018537 -0.255476\nv -0.512694 -0.044274 -0.294911\nv -0.491151 -0.074242 -0.338243\nv -0.501466 -0.083208 -0.337389\nv -0.461637 -0.106290 -0.384582\nv -0.431849 -0.133830 -0.424496\nv -0.412105 -0.150277 -0.448552\nv -0.424605 -0.156747 -0.444292\nv -0.396820 -0.161176 -0.464679\nv -0.395562 -0.148599 -0.443916\nv -0.414681 -0.131845 -0.419386\nv -0.380957 -0.159880 -0.460639\nv -0.443955 -0.104148 -0.379241\nv -0.473492 -0.072021 -0.332796\nv -0.496022 -0.041979 -0.289366\nv -0.556127 -0.031069 -0.217553\nv -0.580619 -0.034645 -0.197809\nv -0.576703 -0.029590 -0.226223\nv -0.551672 -0.029754 -0.225273\nv -0.554359 0.055549 -0.217395\nv -0.563667 0.050705 -0.211155\nv -0.546013 0.057339 -0.215159\nv -0.566162 0.043329 -0.220558\nv -0.556543 0.013828 -0.209246\nv -0.554359 0.013828 -0.217395\nv -0.548196 0.010249 -0.207010\nv -0.546013 0.010249 -0.215159\nv -0.537666 0.055549 -0.212922\nv -0.559723 0.044132 -0.255472\nv -0.575445 0.034689 -0.223045\nv -0.554610 0.017185 -0.254101\nv -0.557241 0.006626 -0.218167\nv -0.537703 0.009935 -0.249571\nv -0.528580 0.057487 -0.247127\nv -0.534785 0.006625 -0.212150\nv -0.519459 0.015802 -0.244683\nv -0.523557 0.011440 -0.209141\nv -0.557241 0.062752 -0.218167\nv -0.546013 0.065160 -0.215159\nv -0.566825 0.056235 -0.220735\nv -0.561483 0.050705 -0.219304\nv -0.573120 0.046313 -0.222422\nv -0.567891 0.034689 -0.221021\nv -0.573120 0.023065 -0.222422\nv -0.566162 0.026048 -0.220558\nv -0.566825 0.013143 -0.220735\nv -0.561483 0.018673 -0.219304\nv -0.546013 0.004218 -0.215159\nv -0.537666 0.013828 -0.212922\nv -0.529320 0.017407 -0.210686\nv -0.534785 0.062752 -0.212150\nv -0.529320 0.051970 -0.210686\nv -0.523556 0.057937 -0.209141\nv -0.536808 0.015466 -0.252966\nv -0.536808 0.034689 -0.252966\nv -0.519708 0.027355 -0.248384\nv -0.522642 0.020022 -0.249170\nv -0.516773 0.034689 -0.247598\nv -0.519708 0.042022 -0.248384\nv -0.522642 0.049355 -0.249170\nv -0.555377 0.034689 -0.257942\nv -0.549937 0.021096 -0.256484\nv -0.556543 0.055549 -0.209246\nv -0.587000 0.075704 -0.165937\nv -0.561075 0.086655 -0.158946\nv -0.548196 0.057339 -0.207010\nv -0.568346 0.043329 -0.212409\nv -0.570075 0.034689 -0.212872\nv -0.539850 0.055549 -0.204773\nv -0.546628 0.083588 -0.155075\nv -0.531504 0.051970 -0.202537\nv -0.568346 0.026048 -0.212409\nv -0.564889 0.017407 -0.211483\nv -0.558651 -0.012077 -0.180833\nv -0.585073 -0.012077 -0.189990\nv -0.548196 0.017407 -0.207010\nv -0.531504 0.017407 -0.202537\nv -0.532229 -0.012077 -0.171676\nv -0.543892 0.016985 -0.254864\nv -0.546823 0.011891 -0.252015\nv -0.529726 0.016985 -0.251068\nv -0.528580 0.011891 -0.247127\nv -0.559723 0.025246 -0.255472\nv -0.553910 0.027355 -0.257548\nv -0.561612 0.034689 -0.255978\nv -0.553908 0.042022 -0.257548\nv -0.554610 0.052192 -0.254101\nv -0.549937 0.048281 -0.256484\nv -0.546823 0.057487 -0.252015\nv -0.543892 0.052393 -0.254864\nv -0.537703 0.059443 -0.249571\nv -0.536808 0.053911 -0.252966\nv -0.529724 0.052393 -0.251068\nv -0.519459 0.053575 -0.244683\nv -0.575522 0.083588 -0.138429\nv -0.575522 0.083588 -0.162817\nv -0.587001 0.075704 -0.138430\nv -0.561075 0.086655 -0.138428\nv -0.592543 0.064321 -0.167554\nv -0.592543 0.064321 -0.138430\nv -0.546628 0.083588 -0.138428\nv -0.532182 0.077453 -0.138427\nv -0.532181 0.077453 -0.151204\nv -0.595117 0.051190 -0.138430\nv 0.048398 -0.840304 -0.443603\nv 0.048398 -0.767725 -0.443602\nv 0.127695 -0.836911 -0.443603\nv 0.152661 -0.744039 -0.545404\nv 0.149388 -0.896598 -0.545404\nv 0.152661 -0.690612 -0.071073\nv 0.152661 -0.637803 -0.071073\nv 0.152661 -0.632258 -0.545404\nv 0.026825 -0.799707 -0.071072\nv 0.026825 -0.900974 -0.545404\nv 0.149354 -0.776732 -0.071072\nv 0.131089 -0.767725 -0.443603\nv 0.048398 -0.874412 -0.545404\nv 0.048398 -0.767725 -0.545404\nv 0.127837 -0.870549 -0.545404\nv 0.131088 -0.767725 -0.545404\nv 0.026825 -0.744067 -0.545404\nv 0.002482 -0.744067 -0.545404\nv 0.152661 -0.560998 -0.144139\nv -0.147697 -0.690612 -0.071073\nv -0.147697 -0.744039 -0.545404\nv -0.144390 -0.776732 -0.071072\nv -0.147697 -0.632258 -0.545404\nv -0.021862 -0.799707 -0.071072\nv -0.021861 -0.900974 -0.545404\nv 0.002482 -0.799707 -0.071072\nv -0.126125 -0.767725 -0.443603\nv -0.043434 -0.767725 -0.443602\nv -0.122731 -0.836911 -0.443603\nv -0.043434 -0.840304 -0.443603\nv -0.043434 -0.767725 -0.545404\nv -0.144424 -0.896598 -0.545404\nv -0.043434 -0.874412 -0.545404\nv -0.122873 -0.870549 -0.545404\nv -0.126124 -0.767725 -0.545404\nv -0.021862 -0.744067 -0.545404\nv 0.002482 -0.900973 -0.545404\nv 0.002482 -0.651953 -0.071073\nv -0.147697 -0.637803 -0.071073\nv 0.002482 -0.560998 -0.144139\nv 0.002482 -0.637804 -0.071073\nv -0.147697 -0.560998 -0.144139\nv 0.557963 0.011160 -0.192081\nv 0.547867 0.009810 -0.232028\nv 0.540060 0.011165 -0.229025\nv 0.533393 0.009473 -0.241885\nv 0.536489 0.003038 -0.255704\nv 0.527781 0.004394 -0.252698\nv 0.512797 -0.032738 -0.307447\nv 0.502121 -0.031377 -0.304411\nv 0.494608 -0.057128 -0.342718\nv 0.482230 -0.055779 -0.339690\nv 0.466884 -0.070988 -0.361677\nv 0.454206 -0.084587 -0.381336\nv 0.435905 -0.104158 -0.409629\nv 0.448884 -0.105277 -0.412282\nv 0.416072 -0.123700 -0.437977\nv 0.401150 -0.137214 -0.457803\nv 0.386251 -0.149794 -0.474907\nv 0.378615 -0.158724 -0.478229\nv 0.360572 -0.181355 -0.485115\nv 0.332429 -0.242118 -0.504933\nv 0.313055 -0.241616 -0.502830\nv 0.266561 -0.300578 -0.520164\nv 0.251981 -0.332702 -0.533622\nv 0.239872 -0.329005 -0.531592\nv 0.155813 -0.331630 -0.609493\nv 0.226573 -0.330957 -0.543295\nv 0.163250 -0.335406 -0.614532\nv 0.565751 -0.018001 -0.195409\nv 0.548090 -0.017996 -0.232353\nv 0.564972 0.009806 -0.195076\nv 0.541650 0.008118 -0.244887\nv 0.541454 -0.019689 -0.245213\nv 0.536155 -0.024767 -0.256026\nv 0.510757 -0.060538 -0.307739\nv 0.492863 -0.084437 -0.342216\nv 0.480296 -0.098133 -0.361800\nv 0.481330 -0.072294 -0.364637\nv 0.469411 -0.085816 -0.384170\nv 0.470050 -0.109147 -0.377352\nv 0.454620 -0.124998 -0.399734\nv 0.426263 -0.124694 -0.440425\nv 0.437831 -0.141281 -0.422353\nv 0.410411 -0.138083 -0.460052\nv 0.423605 -0.153590 -0.438614\nv 0.396096 -0.150633 -0.476980\nv 0.409081 -0.166356 -0.452792\nv 0.389999 -0.159567 -0.480320\nv 0.406076 -0.173210 -0.453677\nv 0.375403 -0.182019 -0.487223\nv 0.400223 -0.188885 -0.454143\nv 0.364301 -0.242970 -0.468322\nv 0.301231 -0.312921 -0.496562\nv 0.282512 -0.301649 -0.522267\nv 0.262206 -0.351233 -0.514282\nv 0.237926 -0.334547 -0.545640\nv 0.247059 -0.353075 -0.528982\nv 0.164022 -0.354162 -0.614876\nv -0.552999 0.011160 -0.192081\nv -0.535096 0.011165 -0.229025\nv -0.560008 0.009806 -0.195076\nv -0.528429 0.009473 -0.241885\nv -0.531525 0.003038 -0.255704\nv -0.522817 0.004394 -0.252698\nv -0.497158 -0.031377 -0.304411\nv -0.477266 -0.055780 -0.339690\nv -0.461920 -0.070989 -0.361677\nv -0.464447 -0.085816 -0.384170\nv -0.449243 -0.084587 -0.381336\nv -0.430941 -0.104158 -0.409629\nv -0.443920 -0.105277 -0.412282\nv -0.421299 -0.124694 -0.440425\nv -0.411108 -0.123700 -0.437977\nv -0.396186 -0.137214 -0.457803\nv -0.381287 -0.149794 -0.474907\nv -0.373651 -0.158724 -0.478229\nv -0.355608 -0.181355 -0.485115\nv -0.308091 -0.241616 -0.502830\nv -0.261597 -0.300578 -0.520164\nv -0.234908 -0.329005 -0.531592\nv -0.221609 -0.330957 -0.543295\nv -0.232962 -0.334547 -0.545640\nv -0.150850 -0.331630 -0.609493\nv -0.560787 -0.018002 -0.195409\nv -0.542903 0.009810 -0.232028\nv -0.543126 -0.017996 -0.232353\nv -0.536686 0.008117 -0.244887\nv -0.536490 -0.019689 -0.245213\nv -0.531191 -0.024767 -0.256026\nv -0.507835 -0.032738 -0.307447\nv -0.505795 -0.060538 -0.307739\nv -0.489644 -0.057129 -0.342718\nv -0.487899 -0.084437 -0.342216\nv -0.475332 -0.098133 -0.361800\nv -0.476366 -0.072294 -0.364637\nv -0.465086 -0.109147 -0.377352\nv -0.449656 -0.124998 -0.399734\nv -0.432867 -0.141281 -0.422353\nv -0.405447 -0.138083 -0.460052\nv -0.418641 -0.153590 -0.438614\nv -0.391132 -0.150633 -0.476980\nv -0.404117 -0.166356 -0.452792\nv -0.385035 -0.159567 -0.480320\nv -0.401112 -0.173210 -0.453677\nv -0.370439 -0.182019 -0.487223\nv -0.395259 -0.188885 -0.454143\nv -0.327465 -0.242118 -0.504933\nv -0.359337 -0.242970 -0.468322\nv -0.277548 -0.301649 -0.522267\nv -0.296267 -0.312921 -0.496562\nv -0.247017 -0.332702 -0.533622\nv -0.257243 -0.351233 -0.514282\nv -0.242096 -0.353075 -0.528982\nv -0.159058 -0.354162 -0.614876\nv -0.158286 -0.335406 -0.614532\nv 0.230673 -0.577306 -0.615016\nv 0.233610 -0.560112 -0.613682\nv 0.226945 -0.560215 -0.614852\nv 0.239768 -0.562598 -0.612374\nv 0.244481 -0.567293 -0.611129\nv 0.247032 -0.573483 -0.610136\nv 0.247032 -0.580225 -0.609546\nv 0.244481 -0.586493 -0.609449\nv 0.239768 -0.591333 -0.609860\nv 0.233610 -0.594008 -0.610716\nv 0.226945 -0.594110 -0.611887\nv 0.220787 -0.591625 -0.613194\nv 0.216075 -0.586930 -0.614439\nv 0.213524 -0.580740 -0.615432\nv 0.213524 -0.573998 -0.616022\nv 0.216075 -0.567729 -0.616119\nv 0.220788 -0.562890 -0.615708\nv 0.250888 -0.562097 -0.606653\nv 0.243834 -0.555071 -0.608516\nv 0.254705 -0.571361 -0.605167\nv 0.254705 -0.581451 -0.604284\nv 0.250888 -0.590832 -0.604139\nv 0.243834 -0.598076 -0.604754\nv 0.234619 -0.602079 -0.606035\nv 0.224644 -0.602232 -0.607787\nv 0.215428 -0.598512 -0.609744\nv 0.208374 -0.591486 -0.611607\nv 0.204557 -0.582222 -0.613093\nv 0.204557 -0.572132 -0.613976\nv 0.208374 -0.562751 -0.614121\nv 0.215428 -0.555507 -0.613506\nv 0.224644 -0.551504 -0.612225\nv 0.234619 -0.551351 -0.610473\nv 0.234669 -0.546365 -0.605940\nv 0.222903 -0.546545 -0.608007\nv 0.245540 -0.550752 -0.603632\nv 0.253860 -0.559041 -0.601434\nv 0.258363 -0.569968 -0.599681\nv 0.258363 -0.581870 -0.598640\nv 0.253860 -0.592936 -0.598469\nv 0.245540 -0.601480 -0.599194\nv 0.234669 -0.606202 -0.600705\nv 0.222903 -0.606383 -0.602772\nv 0.212032 -0.601995 -0.605080\nv 0.203712 -0.593707 -0.607277\nv 0.199209 -0.582780 -0.609030\nv 0.199209 -0.570877 -0.610072\nv 0.203712 -0.559811 -0.610243\nv 0.212032 -0.551267 -0.609518\nv -0.225709 -0.577307 -0.615016\nv -0.221981 -0.560215 -0.614852\nv -0.228646 -0.560112 -0.613682\nv -0.234804 -0.562598 -0.612374\nv -0.239517 -0.567293 -0.611129\nv -0.242068 -0.573483 -0.610136\nv -0.242068 -0.580225 -0.609546\nv -0.239517 -0.586493 -0.609449\nv -0.234804 -0.591333 -0.609860\nv -0.228646 -0.594008 -0.610716\nv -0.221981 -0.594110 -0.611887\nv -0.215824 -0.591625 -0.613194\nv -0.211111 -0.586930 -0.614439\nv -0.208560 -0.580740 -0.615432\nv -0.208560 -0.573998 -0.616022\nv -0.211111 -0.567729 -0.616119\nv -0.215824 -0.562890 -0.615708\nv -0.245924 -0.562097 -0.606653\nv -0.249741 -0.571361 -0.605167\nv -0.245924 -0.590832 -0.604139\nv -0.238870 -0.598076 -0.604754\nv -0.219680 -0.602232 -0.607787\nv -0.210464 -0.598512 -0.609744\nv -0.199593 -0.582222 -0.613093\nv -0.199593 -0.572132 -0.613976\nv -0.210464 -0.555507 -0.613506\nv -0.219680 -0.551504 -0.612225\nv -0.229655 -0.551351 -0.610473\nv -0.238870 -0.555071 -0.608516\nv -0.229705 -0.546365 -0.605940\nv -0.217939 -0.546546 -0.608007\nv -0.240576 -0.550752 -0.603632\nv -0.248896 -0.559041 -0.601434\nv -0.253399 -0.569968 -0.599681\nv -0.249741 -0.581451 -0.604284\nv -0.253399 -0.581871 -0.598640\nv -0.248896 -0.592936 -0.598469\nv -0.240576 -0.601480 -0.599194\nv -0.229655 -0.602079 -0.606035\nv -0.229705 -0.606202 -0.600705\nv -0.217939 -0.606383 -0.602772\nv -0.207068 -0.601995 -0.605080\nv -0.203410 -0.591486 -0.611607\nv -0.198748 -0.593707 -0.607277\nv -0.194245 -0.582780 -0.609030\nv -0.194245 -0.570877 -0.610072\nv -0.203410 -0.562751 -0.614121\nv -0.198748 -0.559811 -0.610243\nv -0.207068 -0.551267 -0.609518\nv 0.003528 -0.663824 0.090157\nv 0.140838 -0.677939 0.191760\nv 0.140838 -0.696828 0.191760\nv 0.003528 -0.644935 0.090157\nv 0.140838 -0.802859 0.191760\nv 0.145202 -0.814935 0.194990\nv 0.003528 -0.787920 0.090157\nv 0.003528 -0.769855 0.090157\nv 0.145202 -0.686027 0.194990\nv 0.014440 -0.758652 0.098231\nv 0.014440 -0.680272 0.098231\nv 0.024533 -0.758653 0.084591\nv 0.024533 -0.680272 0.084591\nv 0.129926 -0.786411 0.183686\nv 0.140019 -0.786411 0.170046\nv 0.129926 -0.708031 0.183686\nv 0.140019 -0.708031 0.170046\nv 0.001435 -0.663824 0.090157\nv -0.135874 -0.696828 0.191760\nv -0.135874 -0.802859 0.191760\nv -0.140238 -0.814935 0.194990\nv 0.001435 -0.769855 0.090157\nv -0.140238 -0.686027 0.194990\nv -0.009477 -0.680272 0.098231\nv -0.019570 -0.758653 0.084591\nv -0.019570 -0.680272 0.084591\nv -0.135055 -0.786411 0.170046\nv -0.009477 -0.758652 0.098231\nv -0.135055 -0.708031 0.170046\nv -0.124962 -0.786411 0.183686\nv -0.124962 -0.708031 0.183686\nv 0.700377 0.414075 -0.138541\nv 0.662649 0.397700 -0.151219\nv 0.685757 0.332468 -0.127933\nv 0.683394 0.228542 -0.107815\nv 0.715744 0.194932 -0.089323\nv 0.653468 0.185664 -0.113489\nv 0.570439 0.330936 -0.177841\nv 0.537819 0.470089 -0.216575\nv 0.598791 0.347849 -0.164294\nv 0.638474 0.164180 -0.117022\nv 0.252276 0.826930 0.590186\nv 0.202272 0.841062 0.627104\nv 0.359149 0.781960 0.487182\nv 0.382049 0.780282 0.570650\nv 0.103746 0.852486 0.663399\nv 0.099921 0.829987 0.623678\nv 0.194349 0.825104 0.588977\nv 0.096435 0.800219 0.592678\nv 0.241320 0.810415 0.554372\nv 0.340872 0.769005 0.458201\nv 0.322889 0.753769 0.436248\nv 0.368152 0.727759 0.362015\nv 0.393875 0.742773 0.383308\nv 0.448162 0.708144 0.268481\nv 0.431817 0.700278 0.251862\nv 0.498902 0.669768 0.135229\nv 0.541308 0.673463 0.151684\nv 0.474538 0.714445 0.287400\nv 0.416230 0.752420 0.407670\nv 0.441761 0.754339 0.478747\nv 0.549537 0.679238 0.206603\nv 0.548492 0.651244 0.105701\nv 0.566873 0.650770 0.126830\nv 0.556072 0.572613 -0.046933\nv 0.422885 0.676562 0.203711\nv 0.446283 0.647193 0.115013\nv 0.403001 0.681371 0.242554\nv 0.366320 0.724403 0.355586\nv 0.320408 0.751630 0.433313\nv 0.229606 0.782539 0.523274\nv 0.230795 0.785427 0.526371\nv 0.186209 0.793473 0.555667\nv 0.652353 0.052336 -0.092682\nv 0.650031 0.051535 -0.020564\nv 0.643479 0.051506 -0.088966\nv 0.648195 0.051504 -0.094094\nv 0.627193 0.051506 -0.089101\nv 0.623034 0.051501 -0.107288\nv 0.597198 0.051501 -0.107694\nv 0.601292 0.051506 -0.089317\nv 0.568300 0.051506 -0.089592\nv 0.564337 0.051501 -0.108154\nv 0.633807 0.051535 -0.020564\nv 0.608004 0.051535 -0.020563\nv 0.575137 0.051535 -0.020563\nv 0.587003 0.051501 -0.146312\nv 0.615618 0.051501 -0.145583\nv 0.639459 0.051501 -0.106664\nv 0.635051 0.051501 -0.142177\nv 0.648207 0.051501 -0.102032\nv 0.651444 0.052940 -0.100549\nv 0.658797 0.051535 -0.020564\nv 0.675242 0.098215 -0.089139\nv 0.740451 0.193753 0.025078\nv 0.761408 0.241027 0.039082\nv 0.722069 0.427987 0.037663\nv 0.721551 0.424715 0.028308\nv 0.735344 0.367660 0.043203\nv 0.742836 0.306285 0.037165\nv 0.749202 0.240942 0.039235\nv 0.752271 0.240870 0.049318\nv 0.568953 0.559050 -0.053303\nv 0.703758 0.485750 0.020127\nv 0.650895 0.054892 -0.019350\nv 0.729319 0.194527 0.025496\nv 0.715644 0.490251 0.029381\nv 0.720769 0.447496 0.122019\nv 0.734253 0.428098 0.037574\nv 0.688130 0.487734 0.293523\nv 0.669578 0.567259 0.267592\nv 0.701103 0.412774 0.315547\nv 0.733770 0.382544 0.134122\nv 0.747528 0.367766 0.043094\nv 0.637399 0.595784 0.373156\nv 0.656430 0.513346 0.405874\nv 0.599642 0.548503 0.568808\nv 0.509676 0.656564 0.669121\nv 0.521956 0.579449 0.724134\nv 0.451441 0.592429 0.827785\nv 0.438981 0.669624 0.768205\nv 0.314245 0.599994 0.966222\nv 0.304784 0.680382 0.895225\nv 0.322319 0.513978 1.017209\nv 0.468993 0.509091 0.881655\nv 0.544077 0.497369 0.774505\nv 0.742115 0.317435 0.144426\nv 0.707150 0.337658 0.336633\nv 0.678173 0.262575 0.479779\nv 0.675968 0.352163 0.457545\nv 0.622204 0.375237 0.630939\nv 0.626571 0.271378 0.650208\nv 0.614341 0.467368 0.605650\nv 0.669958 0.434149 0.433271\nv 0.553701 0.396109 0.800225\nv 0.560427 0.279018 0.815971\nv 0.478307 0.404012 0.908812\nv 0.334904 0.282595 1.069080\nv 0.329091 0.406697 1.048037\nv 0.260630 0.407740 1.099355\nv 0.255098 0.515891 1.064999\nv 0.129785 0.517762 1.114929\nv 0.132615 0.408711 1.149635\nv 0.135266 0.282945 1.173400\nv 0.126955 0.605742 1.066922\nv 0.249241 0.602941 1.015871\nv 0.242690 0.684534 0.944877\nv 0.002482 0.518904 1.128398\nv 0.002481 0.607427 1.081353\nv 0.002481 0.690387 1.019366\nv 0.572084 0.603087 0.028989\nv 0.638925 0.568198 0.062891\nv 0.570276 0.567021 -0.046960\nv 0.620233 0.612505 0.196993\nv 0.594626 0.641512 0.289214\nv 0.702385 0.514102 0.106580\nv 0.502408 0.717217 0.340304\nv 0.540727 0.678619 0.433189\nv 0.579957 0.628751 0.522219\nv 0.473549 0.712812 0.578118\nv 0.408102 0.733081 0.673202\nv 0.285874 0.757181 0.790735\nv 0.269918 0.814590 0.685293\nv 0.228825 0.766422 0.836330\nv 0.123868 0.688238 1.000980\nv 0.117131 0.771320 0.886080\nv 0.217126 0.825564 0.721960\nv 0.111446 0.837121 0.772200\nv 0.569501 0.563473 -0.044468\nv 0.569559 0.562675 -0.055988\nv 0.640313 0.533149 -0.001480\nv 0.646154 0.536833 -0.004866\nv 0.703426 0.490127 0.029224\nv 0.745006 0.307333 0.047018\nv 0.757190 0.307434 0.046889\nv 0.731667 0.193394 0.034883\nv 0.742773 0.193458 0.034769\nv 0.689972 0.098264 0.004157\nv 0.681069 0.098242 0.004195\nv 0.680166 0.101502 -0.003797\nv 0.689146 0.099007 -0.004745\nv 0.755021 0.306386 0.037035\nv 0.734000 0.365500 0.033600\nv 0.733735 0.424826 0.028218\nv 0.715971 0.485869 0.020289\nv 0.640176 0.528987 -0.010724\nv 0.645938 0.532491 -0.013948\nv 0.705392 0.417945 -0.131529\nv 0.538924 0.473007 -0.211685\nv 0.735085 0.290587 -0.091509\nv 0.746184 0.365606 0.033490\nv 0.726475 0.337079 -0.104063\nv 0.121920 0.101029 1.108082\nv 0.226581 0.040224 1.024839\nv 0.240879 0.101011 1.058036\nv 0.128342 0.161774 1.137247\nv 0.252915 0.161734 1.086798\nv 0.132396 0.222391 1.157541\nv 0.260428 0.222330 1.106691\nv 0.265679 0.282863 1.122149\nv 0.308107 0.100949 1.006031\nv 0.321410 0.161604 1.034438\nv 0.292182 0.040232 0.973190\nv 0.457481 0.100775 0.864672\nv 0.472177 0.161233 0.892193\nv 0.480396 0.221565 0.910848\nv 0.329468 0.222131 1.053976\nv 0.485377 0.281833 0.925069\nv 0.556290 0.219456 0.800316\nv 0.548670 0.159831 0.780724\nv 0.624482 0.213726 0.629320\nv 0.676632 0.207243 0.455609\nv 0.709601 0.256271 0.356681\nv 0.704391 0.202874 0.336932\nv 0.747709 0.246086 0.153208\nv 0.682182 0.095857 0.295595\nv 0.689863 0.098750 0.113008\nv 0.701386 0.119170 0.056279\nv 0.658874 0.050567 -0.012057\nv 0.668307 0.044166 0.207733\nv 0.665181 0.042236 0.274008\nv 0.730570 0.178745 0.073356\nv 0.730815 0.193519 0.136846\nv 0.695887 0.108381 0.109414\nv 0.497585 0.670585 0.039212\nv 0.520489 0.669804 0.046637\nv 0.498212 0.656038 0.012057\nv 0.522119 0.653615 0.016137\nv 0.473251 0.648364 0.010672\nv 0.473100 0.662667 0.037241\nv 0.539036 0.661687 0.072115\nv 0.543688 0.638507 0.027182\nv 0.536010 0.675953 0.099771\nv 0.554079 0.619345 0.039578\nv 0.521207 0.613568 -0.057384\nv 0.495700 0.615936 -0.061624\nv 0.492853 0.580247 -0.126822\nv 0.519876 0.579342 -0.119781\nv 0.483006 0.521622 -0.226890\nv 0.509896 0.518092 -0.224488\nv 0.476070 0.495029 -0.268279\nv 0.502186 0.490508 -0.266949\nv 0.455066 0.513478 -0.226301\nv 0.448733 0.487055 -0.267465\nv 0.543682 0.571628 -0.095822\nv 0.556029 0.561759 -0.066673\nv 0.522670 0.467624 -0.260794\nv 0.529674 0.441134 -0.252820\nv 0.465725 0.572193 -0.128210\nv 0.544199 0.598997 -0.045825\nv 0.526603 0.430507 -0.265379\nv 0.546978 0.345635 -0.235499\nv 0.644129 0.051501 -0.134644\nv 0.469549 0.608098 -0.062958\nv 0.444284 0.546621 -0.124992\nv 0.434045 0.488476 -0.222220\nv 0.427813 0.462026 -0.263322\nv 0.424952 0.453976 -0.216922\nv 0.418562 0.427526 -0.258024\nv 0.434164 0.512121 -0.119694\nv 0.448140 0.582448 -0.059905\nv 0.437522 0.547948 -0.054607\nv 0.451928 0.622691 0.013692\nv 0.451910 0.636957 0.040201\nv 0.440815 0.588191 0.018990\nv 0.440797 0.602457 0.045499\nv 0.416656 0.419446 -0.270889\nv 0.451682 0.642653 0.057617\nv 0.440395 0.609997 0.060877\nv 0.439204 0.618483 0.081203\nv 0.449993 0.645608 0.084059\nv 0.473342 0.674429 0.057257\nv 0.437619 0.627442 0.104004\nv 0.499421 0.674343 0.093343\nv 0.497163 0.678580 0.053504\nv 0.475034 0.673270 0.089058\nv 0.470222 0.667894 0.127511\nv 0.519662 0.678366 0.062712\nv 0.531179 0.499689 -0.214243\nv 0.472271 0.479381 -0.286500\nv 0.450097 0.475839 -0.279053\nv 0.514007 0.456419 -0.272740\nv 0.518955 0.424329 -0.271950\nv 0.429846 0.446631 -0.281054\nv 0.421164 0.416167 -0.269587\nv 0.516501 0.346386 -0.244455\nv 0.493189 0.345125 -0.233906\nv 0.539785 0.348692 -0.245829\nv 0.498228 0.477550 -0.286637\nv 0.469358 0.474433 -0.304621\nv 0.494473 0.469150 -0.305642\nv 0.472544 0.482536 -0.287938\nv 0.443103 0.466842 -0.301010\nv 0.423221 0.442596 -0.293363\nv 0.424881 0.449649 -0.282747\nv 0.415576 0.415149 -0.277449\nv 0.414902 0.409128 -0.285161\nv 0.514165 0.442791 -0.301216\nv 0.520375 0.413652 -0.294769\nv 0.536140 0.341010 -0.277176\nv 0.509308 0.436841 -0.309896\nv 0.515096 0.408691 -0.303852\nv 0.490635 0.462311 -0.313863\nv 0.467684 0.466967 -0.312489\nv 0.443808 0.459653 -0.308530\nv 0.425895 0.436678 -0.299992\nv 0.419246 0.405133 -0.290903\nv 0.484723 0.453668 -0.315065\nv 0.467060 0.456746 -0.313521\nv 0.447982 0.450682 -0.310875\nv 0.518977 0.350995 -0.293366\nv 0.431478 0.429897 -0.303745\nv 0.489149 0.337999 -0.240875\nv 0.507213 0.337570 -0.272690\nv 0.478286 0.334129 -0.268204\nv 0.545121 0.344373 -0.244984\nv 0.500511 0.338827 -0.283987\nv 0.471984 0.335101 -0.279117\nv 0.529039 0.342553 -0.288857\nv 0.491022 0.347201 -0.288638\nv 0.499358 0.482139 -0.279601\nv 0.495653 0.479332 -0.278643\nv 0.519663 0.458173 -0.273191\nv 0.520229 0.430167 -0.265486\nv 0.541465 0.349932 -0.236941\nv 0.517327 0.347528 -0.235424\nv 0.473665 0.486886 -0.281035\nv 0.473631 0.483457 -0.279815\nv 0.446767 0.478986 -0.280298\nv 0.425959 0.453946 -0.276187\nv 0.430469 0.450667 -0.274885\nv 0.512399 0.451193 -0.279443\nv 0.525406 0.424375 -0.272000\nv 0.518510 0.452620 -0.279980\nv 0.493880 0.475098 -0.285568\nv 0.449280 0.471834 -0.285421\nv 0.445678 0.474681 -0.286983\nv 0.517135 0.341186 -0.242930\nv 0.493216 0.344080 -0.243081\nv 0.420544 0.412131 -0.275756\nv 0.550925 0.051501 -0.146780\nv 0.727133 0.169539 0.063356\nv 0.694762 0.245337 -0.105835\nv 0.653563 0.193734 -0.071016\nv 0.692720 0.294200 -0.117110\nv 0.692815 0.302271 -0.079786\nv 0.678795 0.370735 -0.138756\nv 0.678891 0.378805 -0.101431\nv 0.662745 0.405770 -0.116752\nv 0.598887 0.355919 -0.126969\nv 0.582222 0.438250 -0.151204\nv 0.582126 0.430179 -0.188528\nv 0.621602 0.430313 -0.134395\nv 0.621507 0.422243 -0.171720\nv 0.764477 0.240955 0.049167\nv 0.663590 0.047366 0.097838\nv 0.651074 0.050567 -0.012057\nv 0.653649 0.047366 0.097838\nv 0.515819 0.342949 -0.224266\nv 0.490932 0.339276 -0.231212\nv 0.493024 0.340260 -0.223465\nv 0.518955 0.342456 -0.233355\nv 0.554108 0.349619 -0.214559\nv 0.534115 0.345222 -0.224533\nv 0.547747 0.347672 -0.221753\nv 0.424424 0.401476 -0.296317\nv 0.466287 0.430492 -0.307633\nv 0.467290 0.405147 -0.301656\nv 0.501095 0.431086 -0.311521\nv 0.506258 0.405914 -0.306077\nv 0.463067 0.343407 -0.283911\nv 0.414099 0.007027 0.810685\nv 0.489439 0.007039 0.732283\nv 0.439547 0.040254 0.832717\nv 0.271505 0.007005 0.950220\nv 0.384674 -0.002187 0.785209\nv 0.247595 -0.002209 0.923658\nv 0.208719 0.006998 1.001420\nv 0.188064 -0.002217 0.974341\nv 0.114314 0.040221 1.074481\nv 0.104955 0.006995 1.050134\nv 0.457100 -0.002175 0.707380\nv 0.094133 -0.002219 1.021981\nv 0.002482 -0.002219 1.033129\nv 0.534088 0.100080 0.753256\nv 0.517407 0.040265 0.753820\nv 0.002481 0.852490 0.667992\nv 0.002481 0.797118 0.593658\nv 0.002482 0.161770 1.150477\nv 0.002482 0.222386 1.171034\nv 0.694858 0.253407 -0.068510\nv 0.683490 0.236612 -0.069121\nv 0.638569 0.172251 -0.071965\nv 0.685853 0.340538 -0.090609\nv 0.696465 0.109403 0.109066\nv 0.729766 0.188344 0.131332\nv 0.729959 0.189165 0.132206\nv 0.715207 0.121507 0.070549\nv 0.692606 0.102959 0.111256\nv 0.714887 0.123215 0.075022\nv 0.720129 0.127151 0.064956\nv 0.704396 0.124654 0.050547\nv 0.723163 0.131085 0.064811\nv 0.706629 0.128799 0.050910\nv 0.739571 0.165068 0.072606\nv 0.737275 0.162494 0.075328\nv 0.741265 0.169327 0.074568\nv 0.729001 0.173724 0.065413\nv 0.738979 0.166758 0.077288\nv 0.741441 0.174810 0.082201\nv 0.731365 0.196510 0.140271\nv 0.700019 0.123332 0.076375\nv 0.702381 0.129355 0.070164\nv 0.719775 0.128721 0.069240\nv 0.704523 0.133707 0.069857\nv 0.722868 0.132607 0.068959\nv 0.718421 0.162009 0.075841\nv 0.720417 0.166277 0.077806\nv 0.739168 0.172320 0.084894\nv 0.722919 0.171871 0.085451\nv 0.096082 0.797118 0.589579\nv 0.186974 0.796514 0.558751\nv 0.541750 0.467108 -0.213941\nv 0.615370 0.454646 -0.174991\nv 0.615688 0.447272 -0.178410\nv 0.717754 0.383522 -0.116628\nv 0.712385 0.380629 -0.123937\nv 0.720813 0.335555 -0.111613\nv 0.729400 0.290432 -0.099208\nv 0.742503 0.237905 -0.078383\nv 0.736780 0.238548 -0.086033\nv 0.720252 0.191412 -0.081987\nv 0.673126 0.103332 -0.095618\nv -0.616545 0.422243 -0.171720\nv -0.673833 0.370735 -0.138756\nv -0.715851 0.335555 -0.111613\nv -0.724438 0.290432 -0.099208\nv -0.689800 0.245337 -0.105835\nv -0.731818 0.238548 -0.086033\nv -0.678432 0.228542 -0.107815\nv -0.710782 0.194932 -0.089323\nv -0.648504 0.185664 -0.113489\nv -0.593829 0.347849 -0.164294\nv -0.247314 0.826930 0.590186\nv -0.197310 0.841062 0.627104\nv -0.264956 0.814590 0.685293\nv -0.354187 0.781960 0.487182\nv -0.377087 0.780282 0.570650\nv -0.098784 0.852486 0.663399\nv -0.094958 0.829987 0.623678\nv -0.189387 0.825104 0.588977\nv -0.182012 0.796514 0.558751\nv -0.236358 0.810415 0.554372\nv -0.335910 0.769005 0.458201\nv -0.317927 0.753769 0.436248\nv -0.363190 0.727759 0.362015\nv -0.388913 0.742773 0.383308\nv -0.443200 0.708144 0.268481\nv -0.426855 0.700278 0.251862\nv -0.493940 0.669768 0.135230\nv -0.536346 0.673463 0.151684\nv -0.469576 0.714445 0.287400\nv -0.411268 0.752420 0.407670\nv -0.436799 0.754339 0.478747\nv -0.544575 0.679238 0.206603\nv -0.549117 0.619345 0.039578\nv -0.417923 0.676562 0.203711\nv -0.441321 0.647193 0.115014\nv -0.398039 0.681371 0.242554\nv -0.361358 0.724403 0.355586\nv -0.315446 0.751630 0.433313\nv -0.225833 0.785427 0.526371\nv -0.224644 0.782539 0.523274\nv -0.181247 0.793473 0.555667\nv 0.002481 0.829972 0.627802\nv 0.002481 0.800227 0.596768\nv 0.002481 0.837905 0.785189\nv -0.091119 0.797118 0.589579\nv -0.645067 0.051535 -0.020564\nv -0.638515 0.051506 -0.088966\nv -0.643231 0.051504 -0.094094\nv -0.622229 0.051506 -0.089101\nv -0.618070 0.051501 -0.107288\nv -0.592234 0.051501 -0.107694\nv -0.596328 0.051506 -0.089317\nv -0.563336 0.051506 -0.089592\nv -0.559373 0.051501 -0.108154\nv -0.628843 0.051535 -0.020564\nv -0.603040 0.051535 -0.020563\nv -0.570173 0.051534 -0.020563\nv -0.610654 0.051501 -0.145583\nv -0.634495 0.051501 -0.106664\nv -0.639165 0.051501 -0.134644\nv -0.646480 0.052940 -0.100549\nv -0.643243 0.051501 -0.102032\nv -0.735489 0.193753 0.025078\nv -0.756446 0.241027 0.039082\nv -0.717107 0.427987 0.037663\nv -0.716589 0.424715 0.028308\nv -0.635351 0.533149 -0.001480\nv -0.698464 0.490127 0.029224\nv -0.698796 0.485750 0.020127\nv -0.676105 0.098242 0.004195\nv -0.726705 0.193394 0.034883\nv -0.744240 0.240942 0.039235\nv -0.715807 0.447496 0.122019\nv -0.683168 0.487734 0.293523\nv -0.696141 0.412774 0.315547\nv -0.728808 0.382544 0.134122\nv -0.742566 0.367766 0.043094\nv -0.632437 0.595784 0.373156\nv -0.651468 0.513346 0.405874\nv -0.594680 0.548503 0.568808\nv -0.516994 0.579449 0.724134\nv -0.446477 0.592429 0.827785\nv -0.434017 0.669624 0.768205\nv -0.309281 0.599994 0.966222\nv -0.299822 0.680382 0.895225\nv -0.317355 0.513978 1.017209\nv -0.464029 0.509091 0.881655\nv -0.539115 0.497369 0.774505\nv -0.737153 0.317435 0.144426\nv -0.664996 0.434149 0.433271\nv -0.609379 0.467368 0.605650\nv -0.671006 0.352163 0.457545\nv -0.617240 0.375237 0.630939\nv -0.673211 0.262575 0.479779\nv -0.621607 0.271378 0.650208\nv -0.548737 0.396109 0.800225\nv -0.702188 0.337658 0.336633\nv -0.704639 0.256271 0.356681\nv -0.742747 0.246086 0.153209\nv -0.473343 0.404012 0.908812\nv -0.324127 0.406697 1.048037\nv -0.255666 0.407740 1.099355\nv -0.250134 0.515891 1.064999\nv -0.124821 0.517762 1.114929\nv -0.127651 0.408711 1.149635\nv -0.121992 0.605742 1.066922\nv -0.244277 0.602941 1.015871\nv 0.002482 0.409289 1.163031\nv 0.002482 0.282937 1.187155\nv -0.567122 0.603087 0.028989\nv -0.633963 0.568198 0.062891\nv -0.615271 0.612505 0.196993\nv -0.561911 0.650770 0.126830\nv -0.589664 0.641512 0.289214\nv -0.697423 0.514102 0.106580\nv -0.664616 0.567259 0.267593\nv -0.497446 0.717217 0.340304\nv -0.535765 0.678619 0.433189\nv -0.574995 0.628751 0.522219\nv -0.504714 0.656564 0.669121\nv -0.468587 0.712812 0.578118\nv -0.403140 0.733081 0.673202\nv -0.280912 0.757181 0.790735\nv -0.223863 0.766422 0.836330\nv -0.237728 0.684534 0.944877\nv -0.118906 0.688238 1.000980\nv -0.112169 0.771320 0.886080\nv -0.212164 0.825564 0.721960\nv -0.106484 0.837121 0.772200\nv 0.002481 0.772401 0.900417\nv -0.564597 0.562675 -0.055988\nv -0.565314 0.567021 -0.046960\nv -0.563991 0.559050 -0.053303\nv -0.564539 0.563473 -0.044468\nv -0.641192 0.536833 -0.004866\nv -0.710682 0.490251 0.029381\nv -0.729291 0.428098 0.037574\nv -0.730382 0.367660 0.043203\nv -0.740044 0.307333 0.047018\nv -0.752228 0.307434 0.046889\nv -0.747309 0.240870 0.049318\nv -0.737811 0.193458 0.034769\nv -0.646110 0.050566 -0.012057\nv -0.675202 0.101502 -0.003797\nv -0.653833 0.051535 -0.020564\nv -0.684182 0.099007 -0.004745\nv -0.645931 0.054891 -0.019350\nv -0.724357 0.194527 0.025496\nv -0.737874 0.306285 0.037165\nv -0.729038 0.365500 0.033600\nv -0.741222 0.365606 0.033490\nv -0.728773 0.424826 0.028218\nv -0.635214 0.528987 -0.010724\nv -0.640976 0.532491 -0.013948\nv -0.533962 0.473007 -0.211685\nv -0.750059 0.306386 0.037035\nv -0.712792 0.383522 -0.116628\nv -0.711009 0.485869 0.020289\nv -0.116956 0.101029 1.108082\nv -0.109350 0.040221 1.074481\nv -0.235915 0.101011 1.058036\nv -0.123378 0.161774 1.137247\nv -0.247951 0.161734 1.086798\nv -0.127433 0.222391 1.157541\nv -0.255464 0.222330 1.106691\nv -0.130303 0.282945 1.173400\nv -0.260715 0.282863 1.122149\nv -0.303143 0.100949 1.006031\nv -0.316446 0.161604 1.034438\nv -0.287218 0.040231 0.973190\nv -0.452517 0.100775 0.864672\nv -0.467213 0.161233 0.892193\nv -0.475432 0.221565 0.910848\nv -0.324504 0.222131 1.053976\nv -0.480413 0.281833 0.925069\nv -0.555463 0.279018 0.815971\nv -0.551326 0.219456 0.800316\nv -0.329940 0.282595 1.069080\nv -0.543706 0.159831 0.780724\nv -0.619520 0.213726 0.629320\nv -0.671668 0.207243 0.455609\nv -0.699429 0.202874 0.336932\nv -0.677218 0.095857 0.295595\nv -0.684899 0.098750 0.113009\nv -0.658626 0.047366 0.097838\nv -0.696422 0.119170 0.056279\nv -0.685008 0.098263 0.004157\nv -0.722169 0.169539 0.063356\nv -0.724037 0.173724 0.065413\nv -0.660217 0.042236 0.274008\nv -0.492623 0.670585 0.039212\nv -0.515527 0.669804 0.046637\nv -0.493250 0.656038 0.012057\nv -0.517157 0.653615 0.016137\nv -0.468289 0.648364 0.010672\nv -0.468138 0.662667 0.037241\nv -0.468380 0.674429 0.057257\nv -0.516245 0.613568 -0.057384\nv -0.490738 0.615936 -0.061624\nv -0.487891 0.580247 -0.126822\nv -0.514914 0.579342 -0.119781\nv -0.478044 0.521622 -0.226890\nv -0.504934 0.518092 -0.224488\nv -0.471108 0.495029 -0.268279\nv -0.497224 0.490508 -0.266949\nv -0.450104 0.513478 -0.226301\nv -0.443771 0.487055 -0.267465\nv -0.441805 0.478986 -0.280298\nv -0.460763 0.572193 -0.128210\nv -0.464587 0.608098 -0.062958\nv -0.422851 0.462026 -0.263322\nv -0.429083 0.488476 -0.222220\nv -0.413600 0.427526 -0.258024\nv -0.419988 0.453976 -0.216922\nv -0.439322 0.546621 -0.124992\nv -0.429202 0.512121 -0.119694\nv -0.443178 0.582448 -0.059905\nv -0.432560 0.547948 -0.054607\nv -0.446966 0.622691 0.013692\nv -0.446948 0.636957 0.040201\nv -0.435853 0.588191 0.018990\nv -0.435835 0.602457 0.045499\nv -0.446721 0.642653 0.057617\nv -0.435433 0.609997 0.060877\nv -0.434242 0.618483 0.081203\nv -0.445031 0.645608 0.084059\nv -0.432657 0.627442 0.104004\nv -0.465260 0.667894 0.127511\nv -0.494459 0.674343 0.093343\nv -0.492201 0.678580 0.053504\nv -0.470072 0.673270 0.089058\nv -0.531048 0.675953 0.099771\nv -0.514700 0.678366 0.062712\nv -0.521997 0.676646 0.076026\nv -0.538720 0.571628 -0.095822\nv -0.516427 0.510226 -0.220096\nv -0.526470 0.573639 -0.114523\nv -0.526217 0.499689 -0.214243\nv -0.551067 0.561759 -0.066673\nv -0.507608 0.481797 -0.264604\nv -0.517708 0.467624 -0.260794\nv -0.524712 0.441134 -0.252820\nv -0.539237 0.598997 -0.045825\nv -0.529438 0.606543 -0.051621\nv -0.551110 0.572613 -0.046933\nv -0.514701 0.458173 -0.273191\nv -0.521641 0.430507 -0.265379\nv -0.542016 0.345635 -0.235499\nv -0.549146 0.349619 -0.214559\nv -0.565477 0.330936 -0.177841\nv -0.538726 0.638507 0.027182\nv -0.543530 0.651244 0.105701\nv -0.534074 0.661687 0.072115\nv -0.529693 0.646306 0.021680\nv -0.525953 0.666252 0.058279\nv -0.490689 0.479332 -0.278643\nv -0.467308 0.479381 -0.286500\nv -0.468669 0.483457 -0.279815\nv -0.445133 0.475839 -0.279053\nv -0.416202 0.416167 -0.269587\nv -0.415580 0.412131 -0.275756\nv -0.498541 0.465947 -0.283262\nv -0.500446 0.470283 -0.276310\nv -0.515267 0.430167 -0.265486\nv -0.534823 0.348692 -0.245829\nv -0.511539 0.346386 -0.244455\nv -0.488225 0.345125 -0.233906\nv -0.536503 0.349932 -0.236941\nv -0.464394 0.474433 -0.304621\nv -0.489509 0.469150 -0.305642\nv -0.438139 0.466842 -0.301010\nv -0.418259 0.442596 -0.293363\nv -0.419917 0.449649 -0.282747\nv -0.409938 0.409128 -0.285161\nv -0.462722 0.466967 -0.312489\nv -0.485671 0.462311 -0.313863\nv -0.438844 0.459653 -0.308530\nv -0.420931 0.436678 -0.299992\nv -0.414282 0.405133 -0.290903\nv -0.462096 0.456746 -0.313521\nv -0.426514 0.429897 -0.303745\nv -0.495113 0.453060 -0.312704\nv -0.499089 0.459944 -0.304341\nv -0.504346 0.436841 -0.309896\nv -0.509203 0.442791 -0.301216\nv -0.503205 0.468599 -0.284263\nv -0.515413 0.413652 -0.294769\nv -0.520444 0.424375 -0.272000\nv -0.540159 0.344373 -0.244984\nv -0.531178 0.341010 -0.277176\nv -0.510134 0.408691 -0.303852\nv -0.524077 0.342553 -0.288857\nv -0.496133 0.431086 -0.311521\nv -0.501296 0.405914 -0.306077\nv -0.502251 0.337570 -0.272690\nv -0.473322 0.334129 -0.268204\nv -0.495549 0.338827 -0.283987\nv -0.467020 0.335101 -0.279117\nv -0.509045 0.456419 -0.272740\nv -0.504518 0.473286 -0.277224\nv -0.512365 0.347528 -0.235424\nv -0.513993 0.342456 -0.233355\nv -0.494396 0.482139 -0.279601\nv -0.468703 0.486886 -0.281035\nv -0.420997 0.453946 -0.276187\nv -0.425505 0.450667 -0.274885\nv -0.411692 0.419446 -0.270889\nv -0.507437 0.451193 -0.279443\nv -0.513548 0.452620 -0.279980\nv -0.513993 0.424329 -0.271950\nv -0.512173 0.341186 -0.242930\nv -0.484187 0.337999 -0.240875\nv -0.488255 0.344080 -0.243081\nv -0.488916 0.475098 -0.285568\nv -0.493264 0.477550 -0.286637\nv -0.467583 0.482536 -0.287938\nv -0.444316 0.471834 -0.285421\nv -0.440716 0.474681 -0.286983\nv -0.424884 0.446631 -0.281054\nv -0.410614 0.415149 -0.277449\nv -0.630087 0.051501 -0.142177\nv -0.510857 0.342949 -0.224266\nv -0.582039 0.051501 -0.146312\nv -0.488062 0.340260 -0.223465\nv -0.545961 0.051501 -0.146780\nv -0.701665 0.128799 0.050910\nv -0.678528 0.236612 -0.069121\nv -0.687758 0.294200 -0.117110\nv -0.680795 0.332468 -0.127933\nv -0.633510 0.164180 -0.117022\nv -0.633605 0.172251 -0.071965\nv -0.577164 0.430179 -0.188528\nv -0.616640 0.430313 -0.134395\nv -0.577260 0.438250 -0.151204\nv -0.657687 0.397700 -0.151451\nv -0.759515 0.240955 0.049167\nv -0.653910 0.050566 -0.012057\nv -0.648685 0.047366 0.097838\nv -0.663343 0.044166 0.207733\nv -0.485970 0.339276 -0.231212\nv -0.529153 0.345222 -0.224533\nv -0.542785 0.347672 -0.221753\nv -0.419462 0.401476 -0.296317\nv -0.461323 0.430492 -0.307633\nv -0.462328 0.405147 -0.301656\nv -0.443018 0.450682 -0.310875\nv -0.479759 0.453668 -0.315065\nv -0.488986 0.444291 -0.313855\nv -0.514015 0.350995 -0.293366\nv -0.486060 0.347201 -0.288638\nv -0.458105 0.343407 -0.283911\nv -0.409135 0.007027 0.810685\nv -0.484476 0.007039 0.732283\nv -0.434583 0.040253 0.832717\nv -0.266541 0.007005 0.950220\nv -0.242631 -0.002209 0.923658\nv -0.203755 0.006997 1.001420\nv -0.183100 -0.002217 0.974341\nv -0.379710 -0.002187 0.785209\nv -0.221617 0.040224 1.024839\nv -0.099991 0.006995 1.050134\nv -0.452136 -0.002175 0.707380\nv 0.002482 0.006995 1.062117\nv -0.089169 -0.002219 1.021981\nv -0.529124 0.100080 0.753256\nv -0.512443 0.040265 0.753820\nv 0.002482 0.101028 1.121049\nv 0.002482 0.040221 1.087186\nv -0.593925 0.355919 -0.126969\nv -0.680891 0.340538 -0.090609\nv -0.689896 0.253407 -0.068510\nv -0.648601 0.193734 -0.071016\nv -0.687853 0.302271 -0.079786\nv -0.657783 0.405770 -0.116752\nv -0.673929 0.378805 -0.101431\nv -0.724802 0.188344 0.131332\nv -0.699559 0.133707 0.069857\nv -0.697417 0.129355 0.070164\nv -0.709923 0.123215 0.075022\nv -0.699432 0.124654 0.050547\nv -0.732311 0.162494 0.075328\nv -0.725606 0.178745 0.073356\nv -0.724995 0.189165 0.132206\nv -0.726403 0.196510 0.140271\nv -0.691501 0.109403 0.109066\nv -0.714811 0.128721 0.069240\nv -0.717904 0.132607 0.068959\nv -0.713457 0.162009 0.075841\nv -0.715453 0.166277 0.077806\nv -0.734015 0.166758 0.077288\nv -0.734204 0.172320 0.084894\nv -0.717955 0.171871 0.085451\nv -0.690923 0.108381 0.109414\nv -0.695055 0.123332 0.076375\nv -0.091472 0.800219 0.592678\nv -0.536788 0.467108 -0.213941\nv -0.532857 0.470089 -0.216575\nv -0.610408 0.454646 -0.174991\nv -0.610726 0.447272 -0.178410\nv -0.695415 0.414075 -0.138541\nv -0.700430 0.417945 -0.131529\nv -0.707423 0.380629 -0.123937\nv -0.721513 0.337079 -0.104063\nv -0.730123 0.290587 -0.091509\nv -0.737541 0.237905 -0.078383\nv -0.715288 0.191412 -0.081987\nv -0.668162 0.103332 -0.095618\nv -0.670278 0.098215 -0.089139\nv -0.647389 0.052336 -0.092682\nv 0.484719 -0.469869 0.380223\nv 0.511043 -0.453032 0.451974\nv 0.461445 -0.464887 0.388104\nv 0.532501 -0.458222 0.440575\nv 0.562596 -0.454711 0.476922\nv 0.541867 -0.449297 0.489430\nv 0.593422 -0.455837 0.514675\nv 0.572932 -0.450079 0.527542\nv 0.610235 -0.470438 0.503140\nv 0.579708 -0.468979 0.466021\nv 0.550369 -0.472241 0.430953\nv 0.504397 -0.483591 0.374059\nv 0.561725 -0.493272 0.424676\nv 0.517277 -0.504281 0.370640\nv 0.590399 -0.490247 0.458485\nv 0.620610 -0.491977 0.494786\nv 0.623253 -0.516969 0.490730\nv 0.593326 -0.515068 0.455306\nv 0.565130 -0.517902 0.422547\nv 0.521705 -0.528577 0.370366\nv 0.559730 -0.542454 0.425068\nv 0.516646 -0.552855 0.373411\nv 0.587716 -0.539732 0.457156\nv 0.617436 -0.541672 0.491782\nv 0.604360 -0.562415 0.497581\nv 0.574743 -0.560567 0.463562\nv 0.546677 -0.563269 0.431680\nv 0.503230 -0.573493 0.379189\nv 0.527685 -0.576959 0.441524\nv 0.483196 -0.587137 0.386915\nv 0.556119 -0.574178 0.473715\nv 0.585758 -0.575812 0.507423\nv 0.564623 -0.580155 0.519680\nv 0.505821 -0.581765 0.453003\nv 0.633519 -0.571021 0.532523\nv 0.646966 -0.550532 0.527718\nv 0.652969 -0.525902 0.527486\nv 0.650288 -0.500786 0.532050\nv 0.639666 -0.478951 0.540542\nv 0.622428 -0.463921 0.551802\nv 0.601404 -0.457671 0.564042\nv 0.647938 -0.475730 0.588727\nv 0.625963 -0.468973 0.599411\nv 0.668279 -0.488031 0.625875\nv 0.645288 -0.480888 0.634130\nv 0.681775 -0.497590 0.663671\nv 0.658057 -0.490317 0.668680\nv 0.701302 -0.513327 0.658993\nv 0.687208 -0.503744 0.618011\nv 0.665993 -0.491169 0.578680\nv 0.677163 -0.513249 0.570855\nv 0.698967 -0.525939 0.611775\nv 0.713432 -0.535430 0.655387\nv 0.716648 -0.560352 0.653348\nv 0.702085 -0.551048 0.608033\nv 0.680052 -0.538413 0.566333\nv 0.673874 -0.562882 0.565951\nv 0.695724 -0.575293 0.607469\nv 0.710084 -0.584338 0.653257\nv 0.695105 -0.603846 0.655052\nv 0.681205 -0.595091 0.610041\nv 0.659905 -0.583031 0.569604\nv 0.639998 -0.595555 0.576889\nv 0.614409 -0.584018 0.541342\nv 0.660450 -0.607183 0.615480\nv 0.673692 -0.615664 0.658530\nv 0.649292 -0.618331 0.663106\nv 0.636799 -0.610072 0.622859\nv 0.617354 -0.598886 0.586577\nv 0.592711 -0.587878 0.552702\nv 0.571687 -0.581628 0.564942\nv 0.595379 -0.592129 0.597261\nv 0.613808 -0.602929 0.631114\nv 0.653078 -0.620557 0.708874\nv 0.677648 -0.617755 0.707456\nv 0.699289 -0.605943 0.705852\nv 0.714519 -0.586586 0.704303\nv 0.721321 -0.562869 0.703038\nv 0.718290 -0.538297 0.702266\nv 0.706268 -0.516568 0.702081\nv 0.686752 -0.501174 0.702538\nv 0.662949 -0.494162 0.703542\nv 0.684184 -0.498690 0.741096\nv 0.660849 -0.492328 0.737737\nv 0.675045 -0.490046 0.777964\nv 0.652644 -0.484722 0.770286\nv 0.660309 -0.475147 0.811761\nv 0.639219 -0.471248 0.800212\nv 0.676699 -0.486974 0.825317\nv 0.692936 -0.503519 0.787110\nv 0.703136 -0.513341 0.745409\nv 0.714584 -0.534346 0.750047\nv 0.703356 -0.523383 0.796366\nv 0.685649 -0.505216 0.838857\nv 0.686117 -0.526899 0.850362\nv 0.705043 -0.546424 0.804345\nv 0.717115 -0.558320 0.754304\nv 0.709971 -0.581663 0.757503\nv 0.697379 -0.569192 0.809757\nv 0.677683 -0.548797 0.857962\nv 0.661955 -0.567635 0.860676\nv 0.681874 -0.588303 0.811895\nv 0.694598 -0.600917 0.759210\nv 0.673047 -0.612925 0.759097\nv 0.660614 -0.600639 0.810293\nv 0.641078 -0.580363 0.857884\nv 0.618368 -0.585321 0.850217\nv 0.636999 -0.604625 0.805337\nv 0.648775 -0.616180 0.757253\nv 0.614599 -0.599301 0.797660\nv 0.625441 -0.609818 0.753894\nv 0.597277 -0.581422 0.838668\nv 0.593499 -0.557696 0.888985\nv 0.615165 -0.551564 0.898708\nv 0.635684 -0.538449 0.902322\nv 0.651823 -0.520102 0.899015\nv 0.661347 -0.499465 0.889554\nv 0.662505 -0.479649 0.875156\nv 0.655454 -0.463578 0.858162\nv 0.640953 -0.453902 0.841107\nv 0.621458 -0.451812 0.826535\nv 0.617501 -0.426840 0.865559\nv 0.599864 -0.426915 0.848719\nv 0.590482 -0.394489 0.884678\nv 0.574939 -0.397058 0.866227\nv 0.560421 -0.357377 0.898022\nv 0.547186 -0.362739 0.878522\nv 0.567487 -0.358208 0.920944\nv 0.600267 -0.398604 0.906334\nv 0.629783 -0.433925 0.885288\nv 0.634582 -0.447364 0.904959\nv 0.602539 -0.409039 0.927964\nv 0.567033 -0.365355 0.943869\nv 0.559423 -0.377505 0.963376\nv 0.597256 -0.423988 0.946342\nv 0.631478 -0.464902 0.921641\nv 0.620629 -0.483983 0.932620\nv 0.584927 -0.441315 0.958480\nv 0.545546 -0.392975 0.976298\nv 0.527719 -0.409327 0.980965\nv 0.567669 -0.458341 0.962814\nv 0.603957 -0.501700 0.936483\nv 0.583813 -0.515245 0.932338\nv 0.547961 -0.472409 0.958350\nv 0.508548 -0.424057 0.976314\nv 0.490946 -0.435033 0.963405\nv 0.528839 -0.481538 0.946101\nv 0.563340 -0.522763 0.921120\nv 0.513297 -0.484107 0.927650\nv 0.450607 -0.384263 0.972513\nv 0.466511 -0.371194 0.985803\nv 0.485002 -0.355613 0.990589\nv 0.503315 -0.339839 0.985777\nv 0.518726 -0.326231 0.972464\nv 0.528722 -0.316991 0.952369\nv 0.532024 -0.313327 0.928756\nv 0.527847 -0.316035 0.905149\nv 0.517107 -0.324460 0.885068\nv 0.493937 -0.273220 0.904275\nv 0.485767 -0.284785 0.884191\nv 0.459869 -0.231693 0.893615\nv 0.454231 -0.246276 0.874216\nv 0.426822 -0.194212 0.871385\nv 0.423564 -0.211498 0.853470\nv 0.422460 -0.181407 0.892471\nv 0.458219 -0.221964 0.916414\nv 0.495171 -0.266925 0.927878\nv 0.488994 -0.267091 0.951479\nv 0.449238 -0.218799 0.939212\nv 0.410843 -0.175256 0.913582\nv 0.393989 -0.176415 0.931570\nv 0.434554 -0.222411 0.958608\nv 0.476618 -0.273441 0.971557\nv 0.459712 -0.285242 0.984851\nv 0.416214 -0.232518 0.971451\nv 0.374300 -0.185003 0.943512\nv 0.354827 -0.199447 0.947865\nv 0.397098 -0.247356 0.976082\nv 0.440976 -0.300518 0.989643\nv 0.423245 -0.317039 0.984841\nv 0.380143 -0.264815 0.971446\nv 0.338601 -0.217744 0.943641\nv 0.327915 -0.237011 0.931810\nv 0.367793 -0.282187 0.958600\nv 0.409124 -0.332292 0.971539\nv 0.400954 -0.343857 0.951455\nv 0.362155 -0.296770 0.939201\nv 0.290788 -0.199831 0.889285\nv 0.300011 -0.179046 0.899447\nv 0.315618 -0.160108 0.902946\nv 0.335448 -0.146033 0.898966\nv 0.356376 -0.138729 0.888394\nv 0.375197 -0.139608 0.872602\nv 0.389187 -0.148217 0.854152\nv 0.395974 -0.163536 0.835799\nv 0.394830 -0.183014 0.820279\nv 0.368496 -0.139243 0.790984\nv 0.369161 -0.160441 0.778386\nv 0.345562 -0.120911 0.741064\nv 0.347688 -0.143396 0.731533\nv 0.318012 -0.100442 0.642411\nv 0.321854 -0.124353 0.637927\nv 0.305451 -0.079965 0.648007\nv 0.334997 -0.102105 0.752566\nv 0.359624 -0.121936 0.806003\nv 0.343584 -0.111368 0.821207\nv 0.317286 -0.090051 0.764333\nv 0.285765 -0.066244 0.653889\nv 0.262172 -0.061057 0.659169\nv 0.295354 -0.086280 0.774600\nv 0.323053 -0.108851 0.834323\nv 0.301034 -0.115104 0.843228\nv 0.272433 -0.091717 0.781712\nv 0.238174 -0.065562 0.663003\nv 0.217368 -0.078704 0.664875\nv 0.251981 -0.105189 0.784730\nv 0.280871 -0.128851 0.846758\nv 0.265771 -0.148262 0.844146\nv 0.237277 -0.124933 0.783019\nv 0.203116 -0.098797 0.664415\nv 0.197286 -0.122568 0.661783\nv 0.230286 -0.147756 0.777021\nv 0.257787 -0.170220 0.836023\nv 0.258451 -0.191419 0.823424\nv 0.194576 -0.092262 0.558047\nv 0.208715 -0.072083 0.558106\nv 0.229609 -0.059023 0.557470\nv 0.208715 -0.072083 0.506244\nv 0.229609 -0.059023 0.506240\nv 0.253876 -0.054752 0.556261\nv 0.277885 -0.060292 0.554642\nv 0.253876 -0.054752 0.506234\nv 0.277885 -0.060292 0.506225\nv 0.298065 -0.074431 0.552871\nv 0.311124 -0.095325 0.551218\nv 0.298065 -0.074430 0.506215\nv 0.311124 -0.095325 0.506206\nv 0.315396 -0.119592 0.549925\nv 0.315396 -0.119592 0.506199\nv 0.309856 -0.143601 0.549206\nv 0.309856 -0.143601 0.506195\nv 0.295717 -0.163780 0.549147\nv 0.301772 -0.168217 0.634833\nv 0.274822 -0.176840 0.549783\nv 0.295717 -0.163780 0.506195\nv 0.274822 -0.176840 0.506198\nv 0.250556 -0.181111 0.550993\nv 0.256969 -0.185863 0.640540\nv 0.226547 -0.175571 0.552612\nv 0.250556 -0.181111 0.506205\nv 0.226547 -0.175571 0.506214\nv 0.206367 -0.161432 0.554382\nv 0.213689 -0.166955 0.651702\nv 0.206367 -0.161432 0.506223\nv 0.201128 -0.146479 0.657297\nv 0.232412 -0.170241 0.767490\nv 0.242977 -0.189046 0.755988\nv 0.267323 -0.208726 0.808406\nv 0.289644 -0.219309 0.873765\nv 0.296431 -0.234628 0.855412\nv 0.324656 -0.254298 0.913895\nv 0.329018 -0.267103 0.892809\nv 0.363805 -0.306499 0.916402\nv 0.399720 -0.350152 0.927852\nv 0.439868 -0.392688 0.952433\nv 0.435690 -0.395396 0.928825\nv 0.477711 -0.440395 0.943906\nv 0.470645 -0.439564 0.920984\nv 0.503511 -0.479991 0.905993\nv 0.545702 -0.522839 0.904280\nv 0.533420 -0.515754 0.884551\nv 0.559502 -0.545930 0.857358\nv 0.580888 -0.569596 0.825112\nv 0.596707 -0.585828 0.788513\nv 0.606488 -0.595167 0.749581\nv 0.629275 -0.613545 0.709877\nv 0.609759 -0.598152 0.710334\nv 0.625573 -0.611058 0.668116\nv 0.606047 -0.595322 0.672794\nv 0.594879 -0.587216 0.638979\nv 0.577324 -0.576690 0.607309\nv 0.554448 -0.566599 0.576203\nv 0.544133 -0.574397 0.532547\nv 0.527320 -0.559797 0.544081\nv 0.514117 -0.573407 0.498461\nv 0.534846 -0.578821 0.485953\nv 0.484362 -0.576574 0.464402\nv 0.497005 -0.559139 0.509362\nv 0.466494 -0.562555 0.474024\nv 0.436521 -0.587046 0.403240\nv 0.416843 -0.573324 0.409405\nv 0.455138 -0.541524 0.480301\nv 0.403963 -0.552634 0.412824\nv 0.486314 -0.537871 0.516898\nv 0.516944 -0.538257 0.552435\nv 0.514302 -0.513266 0.556491\nv 0.483387 -0.513050 0.520076\nv 0.451733 -0.516894 0.482430\nv 0.399535 -0.528337 0.413097\nv 0.457134 -0.492342 0.479908\nv 0.404594 -0.504059 0.410052\nv 0.488997 -0.488386 0.518226\nv 0.520119 -0.488562 0.555439\nv 0.533195 -0.467819 0.549640\nv 0.501969 -0.467552 0.511820\nv 0.470186 -0.471528 0.473296\nv 0.418010 -0.483421 0.404274\nv 0.489178 -0.457837 0.463453\nv 0.438044 -0.469777 0.396548\nv 0.520593 -0.453940 0.501667\nv 0.551797 -0.454422 0.539798\nv 0.560596 -0.474528 0.584221\nv 0.547148 -0.495017 0.589026\nv 0.541146 -0.519648 0.589258\nv 0.543827 -0.544763 0.584694\nv 0.566155 -0.554611 0.615133\nv 0.583120 -0.565021 0.645215\nv 0.593917 -0.573218 0.676400\nv 0.590701 -0.548296 0.678438\nv 0.580002 -0.539912 0.648956\nv 0.563265 -0.529446 0.619655\nv 0.569444 -0.504978 0.620036\nv 0.586363 -0.515667 0.649521\nv 0.597265 -0.524311 0.678529\nv 0.612244 -0.504802 0.676735\nv 0.600882 -0.495870 0.646948\nv 0.583412 -0.484828 0.616384\nv 0.603320 -0.472304 0.609099\nv 0.579706 -0.461532 0.575402\nv 0.621637 -0.483777 0.641510\nv 0.633657 -0.492985 0.673257\nv 0.616738 -0.508776 0.706564\nv 0.601508 -0.528134 0.708113\nv 0.594706 -0.551850 0.709377\nv 0.597737 -0.576423 0.710150\nv 0.595040 -0.574162 0.744943\nv 0.586288 -0.565963 0.779258\nv 0.571938 -0.551353 0.811572\nv 0.571470 -0.529670 0.800067\nv 0.584600 -0.542923 0.771278\nv 0.592509 -0.550188 0.740686\nv 0.599653 -0.526845 0.737487\nv 0.592265 -0.520154 0.765866\nv 0.579904 -0.507772 0.792468\nv 0.595631 -0.488933 0.789753\nv 0.607770 -0.501043 0.763728\nv 0.615026 -0.507591 0.735780\nv 0.636578 -0.495583 0.735893\nv 0.638379 -0.496964 0.704960\nv 0.629029 -0.488708 0.765330\nv 0.616509 -0.476206 0.792546\nv 0.579272 -0.471058 0.813199\nv 0.563133 -0.489406 0.816505\nv 0.553609 -0.510043 0.825966\nv 0.552451 -0.529859 0.840365\nv 0.528621 -0.502315 0.864880\nv 0.501239 -0.469556 0.884364\nv 0.471099 -0.432417 0.898060\nv 0.478709 -0.420267 0.878551\nv 0.506522 -0.454607 0.865986\nv 0.531725 -0.484777 0.848199\nv 0.542575 -0.465696 0.837219\nv 0.518851 -0.437280 0.853848\nv 0.492586 -0.404797 0.865630\nv 0.510413 -0.388445 0.860963\nv 0.536109 -0.420255 0.849514\nv 0.559246 -0.447979 0.833356\nv 0.579390 -0.434433 0.837501\nv 0.599791 -0.457944 0.816813\nv 0.555817 -0.406186 0.853978\nv 0.529584 -0.373715 0.865614\nv 0.482713 -0.353109 0.866993\nv 0.464400 -0.368884 0.871805\nv 0.448989 -0.382492 0.885117\nv 0.438993 -0.391731 0.905213\nv 0.405897 -0.349986 0.904251\nv 0.372787 -0.309665 0.893604\nv 0.340636 -0.273253 0.871697\nv 0.357490 -0.272094 0.853710\nv 0.387470 -0.306052 0.874207\nv 0.418273 -0.343636 0.884173\nv 0.435179 -0.331835 0.870880\nv 0.405810 -0.295945 0.861365\nv 0.377178 -0.263506 0.841768\nv 0.396652 -0.249062 0.837415\nv 0.424926 -0.281107 0.856734\nv 0.453915 -0.316560 0.866088\nv 0.471646 -0.300038 0.870890\nv 0.501204 -0.337529 0.871778\nv 0.441881 -0.263648 0.861370\nv 0.412878 -0.230766 0.841638\nv 0.369999 -0.222737 0.806618\nv 0.350169 -0.236812 0.810598\nv 0.329241 -0.244116 0.821170\nv 0.310420 -0.243237 0.836962\nv 0.283363 -0.219294 0.793202\nv 0.260688 -0.201101 0.744221\nv 0.233375 -0.180677 0.645820\nv 0.282620 -0.204872 0.733954\nv 0.303894 -0.221811 0.780086\nv 0.325913 -0.215557 0.771181\nv 0.305541 -0.199434 0.726843\nv 0.280966 -0.181359 0.636706\nv 0.325992 -0.185962 0.723825\nv 0.346077 -0.201811 0.767651\nv 0.361177 -0.182399 0.770263\nv 0.385607 -0.203799 0.810117\nv 0.340697 -0.166219 0.725535\nv 0.316024 -0.148124 0.635294\nv 0.574004 -0.555606 0.874414\nv 0.194576 -0.092262 0.506244\nv 0.189036 -0.116271 0.506240\nv 0.189036 -0.116271 0.557328\nv 0.193308 -0.140538 0.506232\nv 0.193308 -0.140538 0.556035\nv 0.463746 -0.475689 0.333033\nv 0.439600 -0.470781 0.321978\nv 0.463746 -0.475689 0.321978\nv 0.439600 -0.470781 0.335028\nv 0.465843 -0.475107 0.345373\nv 0.441784 -0.470192 0.349353\nv 0.486301 -0.488722 0.342426\nv 0.484290 -0.489293 0.331576\nv 0.484290 -0.489293 0.321978\nv 0.497894 -0.509837 0.330905\nv 0.497894 -0.509837 0.321978\nv 0.499832 -0.509281 0.341009\nv 0.504692 -0.533442 0.341275\nv 0.502801 -0.533983 0.331088\nv 0.502801 -0.533983 0.321978\nv 0.497894 -0.558129 0.332133\nv 0.497894 -0.558129 0.321977\nv 0.499769 -0.557602 0.343251\nv 0.486184 -0.578155 0.346575\nv 0.484290 -0.578673 0.333849\nv 0.484290 -0.578673 0.321977\nv 0.463746 -0.592277 0.335998\nv 0.463746 -0.592277 0.321978\nv 0.465691 -0.591763 0.350786\nv 0.439600 -0.597185 0.338243\nv 0.439600 -0.597185 0.321978\nv 0.415453 -0.592277 0.340237\nv 0.415453 -0.592277 0.321978\nv 0.394909 -0.578673 0.341694\nv 0.397102 -0.578138 0.362149\nv 0.441619 -0.596669 0.355221\nv 0.394909 -0.578673 0.321977\nv 0.381305 -0.558129 0.342366\nv 0.381305 -0.558129 0.321977\nv 0.383571 -0.557580 0.363566\nv 0.378711 -0.533418 0.363300\nv 0.376398 -0.533983 0.342183\nv 0.376398 -0.533983 0.321978\nv 0.381305 -0.509837 0.341138\nv 0.381305 -0.509837 0.321978\nv 0.383634 -0.509259 0.361324\nv 0.397219 -0.488705 0.358000\nv 0.394909 -0.489293 0.339422\nv 0.394909 -0.489293 0.321978\nv 0.415453 -0.475689 0.337273\nv 0.415453 -0.475689 0.321978\nv 0.417712 -0.475098 0.353789\nv 0.459795 -0.592028 0.395359\nv 0.417560 -0.591754 0.359201\nv 0.263984 -0.496504 0.142163\nv 0.253847 -0.495952 0.174048\nv 0.245410 -0.492511 0.147578\nv 0.271900 -0.500030 0.167048\nv 0.278726 -0.504862 0.182832\nv 0.261084 -0.500693 0.190452\nv 0.288116 -0.513048 0.201726\nv 0.270977 -0.508722 0.209963\nv 0.302006 -0.523973 0.194738\nv 0.293259 -0.515638 0.176690\nv 0.286907 -0.510697 0.161634\nv 0.279551 -0.507045 0.138184\nv 0.296524 -0.526400 0.158652\nv 0.289681 -0.522604 0.136255\nv 0.302392 -0.531465 0.172993\nv 0.310430 -0.539939 0.190100\nv 0.312460 -0.558477 0.188387\nv 0.305109 -0.549935 0.172158\nv 0.299677 -0.544777 0.158407\nv 0.293226 -0.540852 0.136538\nv 0.295727 -0.563303 0.161022\nv 0.289478 -0.559295 0.139053\nv 0.300833 -0.568471 0.174407\nv 0.307613 -0.576950 0.189963\nv 0.296788 -0.592644 0.194483\nv 0.290337 -0.584350 0.179326\nv 0.285369 -0.579258 0.166055\nv 0.279096 -0.575223 0.143412\nv 0.269754 -0.590065 0.172892\nv 0.263209 -0.586060 0.149095\nv 0.274831 -0.595010 0.186309\nv 0.281302 -0.603026 0.201387\nv 0.263625 -0.606715 0.209554\nv 0.286803 -0.558462 0.120244\nv 0.290537 -0.539981 0.118747\nv 0.289675 -0.540236 0.099658\nv 0.285893 -0.521631 0.099658\nv 0.286831 -0.521626 0.118475\nv 0.275412 -0.505802 0.099658\nv 0.276465 -0.505994 0.119436\nv 0.259582 -0.495321 0.099658\nv 0.260683 -0.495501 0.121560\nv 0.241986 -0.491604 0.124522\nv 0.240978 -0.491539 0.099658\nv 0.285893 -0.558841 0.099658\nv 0.223109 -0.495298 0.127930\nv 0.226511 -0.496151 0.153700\nv 0.235355 -0.499567 0.181657\nv 0.210235 -0.506639 0.159543\nv 0.219321 -0.510089 0.188666\nv 0.199350 -0.522651 0.164133\nv 0.208476 -0.526188 0.193902\nv 0.195288 -0.541517 0.166811\nv 0.204257 -0.545164 0.196632\nv 0.198965 -0.560345 0.167068\nv 0.207592 -0.564095 0.196319\nv 0.209513 -0.576287 0.164972\nv 0.217657 -0.580121 0.193157\nv 0.225554 -0.586709 0.160769\nv 0.233123 -0.590605 0.187548\nv 0.251415 -0.594195 0.180441\nv 0.224073 -0.584716 0.208191\nv 0.239001 -0.595272 0.201905\nv 0.256816 -0.598979 0.194234\nv 0.232201 -0.592146 0.224831\nv 0.214513 -0.568653 0.212056\nv 0.223378 -0.576058 0.229612\nv 0.221100 -0.557165 0.231446\nv 0.211583 -0.549713 0.212985\nv 0.216058 -0.530754 0.210676\nv 0.226052 -0.538308 0.229883\nv 0.237211 -0.522390 0.225283\nv 0.226976 -0.514693 0.205605\nv 0.242883 -0.504231 0.198463\nv 0.253074 -0.512092 0.218243\nv 0.238760 -0.549695 0.252403\nv 0.233029 -0.568333 0.252880\nv 0.234345 -0.587107 0.249799\nv 0.242152 -0.603200 0.243815\nv 0.255886 -0.619201 0.265129\nv 0.268229 -0.630148 0.256041\nv 0.275365 -0.641473 0.288758\nv 0.302551 -0.671336 0.314692\nv 0.339406 -0.710115 0.342916\nv 0.351136 -0.720793 0.330932\nv 0.380399 -0.751866 0.373614\nv 0.420001 -0.790646 0.406972\nv 0.433331 -0.800668 0.395474\nv 0.452684 -0.820512 0.443170\nv 0.333604 -0.694621 0.353981\nv 0.297042 -0.655556 0.324707\nv 0.373893 -0.736684 0.385106\nv 0.412655 -0.775722 0.417880\nv 0.444640 -0.805715 0.452096\nv 0.443299 -0.788539 0.459303\nv 0.411973 -0.758452 0.426614\nv 0.373995 -0.719197 0.394167\nv 0.334352 -0.676846 0.362485\nv 0.298032 -0.637473 0.332086\nv 0.341793 -0.659489 0.366976\nv 0.305697 -0.619812 0.335523\nv 0.380862 -0.702090 0.399297\nv 0.418146 -0.741519 0.431764\nv 0.448892 -0.771683 0.463662\nv 0.460361 -0.757301 0.464740\nv 0.430040 -0.727160 0.432809\nv 0.393248 -0.687721 0.399957\nv 0.354582 -0.645045 0.366974\nv 0.318643 -0.605194 0.334653\nv 0.370993 -0.635797 0.362321\nv 0.335082 -0.596028 0.329433\nv 0.409533 -0.678251 0.395922\nv 0.446150 -0.717429 0.429499\nv 0.476289 -0.747369 0.462314\nv 0.494359 -0.743331 0.456734\nv 0.464084 -0.713724 0.422350\nv 0.512054 -0.746264 0.448575\nv 0.481278 -0.717054 0.412157\nv 0.427248 -0.675008 0.387865\nv 0.443787 -0.678895 0.376750\nv 0.388482 -0.632999 0.353830\nv 0.404410 -0.637444 0.342595\nv 0.352416 -0.593513 0.320798\nv 0.367974 -0.598360 0.309934\nv 0.526544 -0.755592 0.439200\nv 0.495018 -0.726750 0.400606\nv 0.456588 -0.689121 0.364401\nv 0.416360 -0.648217 0.330442\nv 0.379441 -0.609550 0.298582\nv 0.422204 -0.663912 0.319276\nv 0.384811 -0.625585 0.288528\nv 0.463346 -0.704397 0.352756\nv 0.502820 -0.741638 0.389513\nv 0.535207 -0.770230 0.430092\nv 0.536962 -0.787675 0.422635\nv 0.503749 -0.759182 0.380561\nv 0.463297 -0.722142 0.343572\nv 0.421325 -0.681903 0.310767\nv 0.383550 -0.643812 0.281248\nv 0.413623 -0.699396 0.306371\nv 0.375629 -0.661425 0.278002\nv 0.456203 -0.739589 0.338409\nv 0.497408 -0.776647 0.375264\nv 0.531275 -0.805208 0.418082\nv 0.519337 -0.820192 0.416981\nv 0.485095 -0.791419 0.374234\nv 0.443483 -0.754144 0.337828\nv 0.400608 -0.713804 0.306515\nv 0.362576 -0.675832 0.279048\nv 0.384162 -0.722792 0.311295\nv 0.346278 -0.684699 0.284327\nv 0.426955 -0.763446 0.342050\nv 0.468539 -0.801100 0.377767\nv 0.502795 -0.830189 0.419624\nv 0.484314 -0.833863 0.425489\nv 0.450368 -0.804442 0.385173\nv 0.409198 -0.766358 0.350266\nv 0.366811 -0.725316 0.319818\nv 0.329216 -0.687025 0.292881\nv 0.392875 -0.762204 0.361380\nv 0.466709 -0.830348 0.433807\nv 0.505026 -0.848910 0.472163\nv 0.523602 -0.845152 0.468798\nv 0.540100 -0.835028 0.467316\nv 0.551842 -0.819914 0.468009\nv 0.557219 -0.802274 0.470692\nv 0.555090 -0.784770 0.475039\nv 0.546062 -0.770134 0.480328\nv 0.531288 -0.760865 0.485763\nv 0.513445 -0.758012 0.490466\nv 0.539585 -0.762360 0.522588\nv 0.521933 -0.759489 0.523035\nv 0.537549 -0.752249 0.557917\nv 0.520419 -0.749483 0.553931\nv 0.525786 -0.732033 0.590617\nv 0.509494 -0.729715 0.582645\nv 0.538789 -0.740514 0.600056\nv 0.551562 -0.761339 0.562642\nv 0.554194 -0.771631 0.522104\nv 0.563109 -0.786279 0.521703\nv 0.559905 -0.775775 0.567432\nv 0.546119 -0.754277 0.609577\nv 0.546836 -0.770977 0.617682\nv 0.561496 -0.793098 0.571525\nv 0.565177 -0.803806 0.521426\nv 0.559787 -0.821476 0.521299\nv 0.555788 -0.810609 0.574204\nv 0.540522 -0.788025 0.622979\nv 0.528442 -0.802826 0.624784\nv 0.543961 -0.825655 0.575125\nv 0.548078 -0.836619 0.521333\nv 0.531657 -0.846756 0.521534\nv 0.527656 -0.835769 0.574080\nv 0.512292 -0.812958 0.622682\nv 0.494677 -0.817040 0.617141\nv 0.509515 -0.839576 0.571308\nv 0.513196 -0.850507 0.521876\nv 0.469372 -0.783821 0.656054\nv 0.486262 -0.779091 0.663586\nv 0.502213 -0.768824 0.666403\nv 0.514668 -0.754436 0.663877\nv 0.521854 -0.738270 0.656590\nv 0.522391 -0.722805 0.645485\nv 0.516498 -0.710413 0.632462\nv 0.504901 -0.703214 0.619554\nv 0.489754 -0.701905 0.608668\nv 0.477034 -0.667547 0.644061\nv 0.463293 -0.667729 0.631141\nv 0.444328 -0.626788 0.663469\nv 0.432208 -0.628863 0.649208\nv 0.408924 -0.582694 0.677111\nv 0.398595 -0.586981 0.662013\nv 0.414648 -0.583119 0.695084\nv 0.452214 -0.629848 0.680429\nv 0.486902 -0.672902 0.659404\nv 0.491019 -0.683358 0.674905\nv 0.454301 -0.637937 0.697584\nv 0.414536 -0.588541 0.713270\nv 0.408804 -0.597945 0.728848\nv 0.450456 -0.649623 0.712269\nv 0.488933 -0.697108 0.688150\nv 0.480679 -0.712079 0.696886\nv 0.441006 -0.663187 0.721992\nv 0.398104 -0.609996 0.739183\nv 0.384264 -0.622754 0.742921\nv 0.427623 -0.676490 0.725483\nv 0.467773 -0.725947 0.699974\nv 0.452084 -0.736475 0.696701\nv 0.412275 -0.687418 0.721938\nv 0.369351 -0.634225 0.739206\nv 0.355682 -0.642713 0.728883\nv 0.397372 -0.694393 0.712166\nv 0.436103 -0.742184 0.687810\nv 0.385294 -0.696139 0.697443\nv 0.313534 -0.589408 0.737723\nv 0.325831 -0.579204 0.748413\nv 0.340196 -0.567033 0.752278\nv 0.354424 -0.554740 0.748445\nv 0.366360 -0.544204 0.737793\nv 0.374022 -0.537171 0.721711\nv 0.376417 -0.534581 0.702914\nv 0.372963 -0.537020 0.684317\nv 0.364550 -0.543759 0.668697\nv 0.337144 -0.491856 0.683348\nv 0.330694 -0.501111 0.667635\nv 0.302167 -0.449292 0.672461\nv 0.297648 -0.460948 0.657199\nv 0.268729 -0.411416 0.649916\nv 0.266032 -0.425183 0.635761\nv 0.265539 -0.400882 0.666808\nv 0.301083 -0.441187 0.690642\nv 0.338302 -0.486512 0.702055\nv 0.333615 -0.486263 0.720935\nv 0.294170 -0.438249 0.708971\nv 0.256544 -0.395567 0.683848\nv 0.243378 -0.396077 0.698391\nv 0.282736 -0.440724 0.724608\nv 0.324034 -0.490948 0.737061\nv 0.310896 -0.500018 0.747712\nv 0.268447 -0.448425 0.734916\nv 0.228008 -0.402557 0.707989\nv 0.212845 -0.413775 0.711408\nv 0.253576 -0.459963 0.738566\nv 0.296330 -0.511909 0.751508\nv 0.282574 -0.524852 0.747580\nv 0.240437 -0.473667 0.734728\nv 0.200280 -0.428145 0.707877\nv 0.192151 -0.443366 0.698163\nv 0.230988 -0.487373 0.724243\nv 0.271709 -0.536840 0.736802\nv 0.155979 -0.407183 0.656684\nv 0.162961 -0.390785 0.665045\nv 0.175048 -0.375924 0.667988\nv 0.190507 -0.365013 0.664864\nv 0.206869 -0.359555 0.656369\nv 0.221592 -0.360651 0.643594\nv 0.232451 -0.367875 0.628690\nv 0.237531 -0.380320 0.613971\nv 0.236469 -0.395729 0.601693\nv 0.209741 -0.355599 0.568850\nv 0.210092 -0.372242 0.558900\nv 0.186533 -0.336854 0.518778\nv 0.188035 -0.354379 0.511284\nv 0.158539 -0.315682 0.420672\nv 0.161422 -0.334149 0.417198\nv 0.148917 -0.299685 0.425054\nv 0.178494 -0.321925 0.527936\nv 0.203031 -0.341708 0.580872\nv 0.190571 -0.333009 0.593132\nv 0.164738 -0.312149 0.537382\nv 0.133658 -0.288807 0.429711\nv 0.115286 -0.284536 0.433913\nv 0.147591 -0.308849 0.545643\nv 0.174507 -0.330648 0.603724\nv 0.157278 -0.335281 0.610871\nv 0.129657 -0.312852 0.551336\nv 0.096574 -0.287866 0.436963\nv 0.080367 -0.297991 0.438446\nv 0.113688 -0.323255 0.553714\nv 0.141542 -0.345917 0.613644\nv 0.129843 -0.361117 0.611441\nv 0.102288 -0.338674 0.552271\nv 0.069325 -0.313595 0.438063\nv 0.097023 -0.356572 0.547359\nv 0.123820 -0.378395 0.604763\nv 0.124689 -0.395102 0.594452\nv 0.061233 -0.307385 0.334685\nv 0.072152 -0.291793 0.334732\nv 0.088320 -0.281732 0.334229\nv 0.072229 -0.291872 0.283563\nv 0.088332 -0.281807 0.283563\nv 0.107105 -0.278491 0.333273\nv 0.125679 -0.282859 0.331998\nv 0.107035 -0.278514 0.283563\nv 0.125540 -0.282784 0.283563\nv 0.141265 -0.293858 0.330614\nv 0.151312 -0.310026 0.329339\nv 0.141093 -0.293681 0.283563\nv 0.151159 -0.309784 0.283563\nv 0.154578 -0.328729 0.328351\nv 0.154452 -0.328487 0.283563\nv 0.150323 -0.347159 0.327809\nv 0.150182 -0.346992 0.283563\nv 0.139475 -0.362630 0.327765\nv 0.146122 -0.367541 0.414849\nv 0.123439 -0.372670 0.328242\nv 0.139285 -0.362546 0.283563\nv 0.123180 -0.372611 0.283563\nv 0.104766 -0.375980 0.329160\nv 0.111912 -0.381075 0.419160\nv 0.086206 -0.371742 0.330409\nv 0.104477 -0.375904 0.283563\nv 0.085972 -0.371633 0.283563\nv 0.070547 -0.360857 0.331790\nv 0.078110 -0.366613 0.427883\nv 0.060370 -0.344717 0.333091\nv 0.070419 -0.360736 0.283563\nv 0.060354 -0.344632 0.283563\nv 0.068115 -0.350721 0.432339\nv 0.098998 -0.374220 0.539592\nv 0.107593 -0.388908 0.530318\nv 0.132012 -0.408671 0.582297\nv 0.161172 -0.434636 0.629096\nv 0.189966 -0.457061 0.683510\nv 0.193791 -0.467151 0.666448\nv 0.226911 -0.498909 0.708457\nv 0.228587 -0.506559 0.690087\nv 0.265602 -0.545935 0.720566\nv 0.264972 -0.550836 0.701651\nv 0.302358 -0.597954 0.702776\nv 0.345479 -0.646745 0.713301\nv 0.340157 -0.645888 0.695099\nv 0.377780 -0.692611 0.680259\nv 0.422343 -0.741954 0.674461\nv 0.412841 -0.736075 0.658909\nv 0.442948 -0.774230 0.631705\nv 0.465715 -0.805026 0.599301\nv 0.492331 -0.836174 0.567173\nv 0.478752 -0.826415 0.562353\nv 0.495524 -0.846971 0.522316\nv 0.481379 -0.837034 0.522754\nv 0.472916 -0.835520 0.482396\nv 0.464594 -0.820638 0.487549\nv 0.473197 -0.822086 0.523094\nv 0.471127 -0.811650 0.557584\nv 0.459061 -0.790924 0.589874\nv 0.458914 -0.774343 0.582027\nv 0.470127 -0.794497 0.553607\nv 0.471708 -0.804773 0.523327\nv 0.462989 -0.803383 0.491717\nv 0.468342 -0.786486 0.494270\nv 0.477139 -0.787847 0.523457\nv 0.475923 -0.777685 0.551093\nv 0.465336 -0.757919 0.577045\nv 0.477056 -0.743804 0.575416\nv 0.487348 -0.763374 0.550282\nv 0.488404 -0.773451 0.523464\nv 0.479612 -0.772079 0.494954\nv 0.495398 -0.762109 0.493630\nv 0.504071 -0.763534 0.523329\nv 0.502903 -0.753524 0.551290\nv 0.492490 -0.733964 0.577394\nv 0.458138 -0.716698 0.598878\nv 0.446018 -0.730467 0.601185\nv 0.438737 -0.746101 0.608063\nv 0.437679 -0.761499 0.618816\nv 0.409291 -0.725282 0.643567\nv 0.376209 -0.684178 0.663279\nv 0.340744 -0.640094 0.677106\nv 0.346760 -0.630571 0.661996\nv 0.380427 -0.672442 0.649033\nv 0.411830 -0.711543 0.630726\nv 0.420136 -0.697008 0.622457\nv 0.389853 -0.659220 0.639809\nv 0.357335 -0.618782 0.652187\nv 0.370773 -0.606464 0.648720\nv 0.402883 -0.646398 0.636581\nv 0.432709 -0.683686 0.619617\nv 0.447798 -0.673472 0.622692\nv 0.473425 -0.706736 0.601524\nv 0.417696 -0.635802 0.639913\nv 0.385209 -0.595357 0.652200\nv 0.338492 -0.565515 0.654980\nv 0.324746 -0.577373 0.658539\nv 0.313064 -0.587702 0.668631\nv 0.305207 -0.594934 0.684204\nv 0.270103 -0.550583 0.683028\nv 0.235937 -0.508929 0.672037\nv 0.203212 -0.471857 0.649687\nv 0.216361 -0.470926 0.635693\nv 0.247408 -0.506098 0.656966\nv 0.279795 -0.545617 0.667450\nv 0.292546 -0.536712 0.657388\nv 0.261194 -0.498520 0.647258\nv 0.231149 -0.464519 0.626674\nv 0.245608 -0.453748 0.623502\nv 0.275412 -0.487440 0.643872\nv 0.306540 -0.525268 0.653865\nv 0.319896 -0.512823 0.657470\nv 0.352425 -0.553769 0.658569\nv 0.288176 -0.474300 0.647355\nv 0.257818 -0.439985 0.626676\nv 0.217625 -0.425910 0.591255\nv 0.202870 -0.436428 0.594157\nv 0.187108 -0.441883 0.602143\nv 0.172433 -0.441251 0.614434\nv 0.144841 -0.416795 0.570223\nv 0.121675 -0.398173 0.520993\nv 0.093582 -0.377159 0.423256\nv 0.138761 -0.401000 0.513009\nv 0.160844 -0.418673 0.560015\nv 0.177501 -0.413969 0.553283\nv 0.156187 -0.396860 0.507625\nv 0.130299 -0.377578 0.416247\nv 0.171565 -0.386684 0.505400\nv 0.192573 -0.403648 0.550698\nv 0.203956 -0.389029 0.552661\nv 0.229374 -0.411661 0.593885\nv 0.182674 -0.371789 0.506684\nv 0.156962 -0.352285 0.415193\nv 0.487212 -0.845406 0.476974\nv 0.454170 -0.782014 0.644795\nv 0.478318 -0.814145 0.608886\nv 0.305353 -0.595945 0.721595\nv 0.155452 -0.422588 0.643966\nv 0.064916 -0.332102 0.435940\nv 0.061332 -0.307424 0.283563\nv 0.057062 -0.325929 0.283563\nv 0.056993 -0.325951 0.334115\nv 0.276362 -0.574337 0.122742\nv 0.275412 -0.574670 0.099658\nv 0.260430 -0.585034 0.125949\nv 0.259582 -0.585152 0.099658\nv 0.240978 -0.588933 0.099658\nv 0.222725 -0.585441 0.132421\nv 0.241605 -0.589067 0.129353\nv 0.222373 -0.585152 0.099658\nv 0.206650 -0.575008 0.134687\nv 0.244413 -0.590246 0.155197\nv 0.206544 -0.574670 0.099658\nv 0.196035 -0.559129 0.135747\nv 0.196062 -0.558841 0.099658\nv 0.192259 -0.540415 0.135483\nv 0.192281 -0.540236 0.099658\nv 0.196194 -0.521682 0.133876\nv 0.196062 -0.521631 0.099658\nv 0.206945 -0.505768 0.131231\nv 0.206544 -0.505802 0.099658\nv 0.222373 -0.495321 0.099658\nv 0.300556 -0.525568 0.224393\nv 0.284009 -0.520995 0.233328\nv 0.317226 -0.543344 0.250323\nv 0.301228 -0.538535 0.259972\nv 0.339306 -0.567301 0.279007\nv 0.323681 -0.562366 0.289321\nv 0.350936 -0.578635 0.268679\nv 0.329455 -0.554629 0.241135\nv 0.313608 -0.536689 0.216353\nv 0.321043 -0.552792 0.210479\nv 0.335879 -0.570821 0.233857\nv 0.356586 -0.594820 0.259964\nv 0.355693 -0.613217 0.254114\nv 0.335836 -0.589325 0.229501\nv 0.322063 -0.571342 0.207547\nv 0.316330 -0.589642 0.208120\nv 0.329136 -0.607391 0.228858\nv 0.348185 -0.631038 0.252158\nv 0.335496 -0.645665 0.254180\nv 0.317050 -0.622367 0.231842\nv 0.304920 -0.605005 0.211965\nv 0.289309 -0.614949 0.218612\nv 0.301225 -0.631832 0.238100\nv 0.319424 -0.654731 0.259967\nv 0.302421 -0.657194 0.268505\nv 0.284106 -0.634648 0.246571\nv 0.271948 -0.618213 0.226960\nv 0.255420 -0.614013 0.235790\nv 0.246402 -0.602810 0.217770\nv 0.287002 -0.652478 0.278597\nv 0.313913 -0.682272 0.303536\nv 0.249131 -0.603144 0.272472\nv 0.269457 -0.625512 0.297489\nv 0.270021 -0.607153 0.303491\nv 0.248845 -0.584551 0.276992\nv 0.255434 -0.566211 0.277804\nv 0.277328 -0.589151 0.305655\nv 0.290027 -0.574233 0.303786\nv 0.267645 -0.550931 0.274910\nv 0.250403 -0.534059 0.248563\nv 0.266369 -0.524070 0.241816\nv 0.283790 -0.541297 0.268596\nv 0.306354 -0.564905 0.297997\nv -0.479755 -0.469869 0.380223\nv -0.506079 -0.453032 0.451974\nv -0.527537 -0.458222 0.440575\nv -0.456481 -0.464887 0.388104\nv -0.557632 -0.454711 0.476922\nv -0.536903 -0.449297 0.489430\nv -0.588458 -0.455837 0.514675\nv -0.567968 -0.450079 0.527542\nv -0.605271 -0.470438 0.503140\nv -0.574744 -0.468979 0.466021\nv -0.545405 -0.472241 0.430953\nv -0.499433 -0.483591 0.374059\nv -0.556761 -0.493272 0.424676\nv -0.512313 -0.504281 0.370640\nv -0.585435 -0.490247 0.458485\nv -0.615646 -0.491977 0.494786\nv -0.618289 -0.516969 0.490730\nv -0.588362 -0.515068 0.455306\nv -0.560166 -0.517902 0.422547\nv -0.516741 -0.528577 0.370366\nv -0.554766 -0.542454 0.425068\nv -0.511682 -0.552855 0.373411\nv -0.582752 -0.539732 0.457156\nv -0.612472 -0.541672 0.491782\nv -0.599396 -0.562415 0.497581\nv -0.569779 -0.560567 0.463562\nv -0.541713 -0.563269 0.431680\nv -0.498266 -0.573493 0.379189\nv -0.522721 -0.576959 0.441524\nv -0.478232 -0.587137 0.386915\nv -0.551155 -0.574178 0.473715\nv -0.580794 -0.575812 0.507423\nv -0.628555 -0.571021 0.532523\nv -0.642002 -0.550532 0.527718\nv -0.648005 -0.525902 0.527486\nv -0.645324 -0.500786 0.532050\nv -0.634702 -0.478951 0.540542\nv -0.617464 -0.463921 0.551802\nv -0.596440 -0.457671 0.564042\nv -0.642974 -0.475730 0.588727\nv -0.620999 -0.468973 0.599411\nv -0.663315 -0.488031 0.625875\nv -0.640324 -0.480888 0.634130\nv -0.676811 -0.497590 0.663671\nv -0.653093 -0.490317 0.668680\nv -0.696338 -0.513327 0.658993\nv -0.682244 -0.503744 0.618011\nv -0.661029 -0.491169 0.578680\nv -0.672199 -0.513249 0.570855\nv -0.694003 -0.525939 0.611775\nv -0.708468 -0.535430 0.655387\nv -0.711684 -0.560352 0.653348\nv -0.697121 -0.551048 0.608033\nv -0.675088 -0.538413 0.566333\nv -0.668910 -0.562882 0.565951\nv -0.690760 -0.575293 0.607469\nv -0.705120 -0.584338 0.653257\nv -0.690141 -0.603846 0.655052\nv -0.676241 -0.595091 0.610041\nv -0.654941 -0.583031 0.569604\nv -0.635034 -0.595555 0.576889\nv -0.609445 -0.584018 0.541342\nv -0.655486 -0.607183 0.615480\nv -0.668728 -0.615664 0.658530\nv -0.644328 -0.618331 0.663106\nv -0.631835 -0.610072 0.622859\nv -0.612390 -0.598886 0.586577\nv -0.587747 -0.587878 0.552702\nv -0.566723 -0.581628 0.564942\nv -0.590415 -0.592129 0.597261\nv -0.648114 -0.620557 0.708874\nv -0.672684 -0.617755 0.707456\nv -0.694325 -0.605943 0.705852\nv -0.709555 -0.586586 0.704303\nv -0.716357 -0.562869 0.703038\nv -0.713326 -0.538297 0.702266\nv -0.701304 -0.516568 0.702081\nv -0.681788 -0.501174 0.702538\nv -0.657985 -0.494162 0.703542\nv -0.679220 -0.498690 0.741096\nv -0.655885 -0.492328 0.737737\nv -0.670081 -0.490046 0.777964\nv -0.647680 -0.484722 0.770286\nv -0.655345 -0.475147 0.811761\nv -0.634255 -0.471248 0.800212\nv -0.671735 -0.486974 0.825317\nv -0.687972 -0.503519 0.787110\nv -0.698172 -0.513341 0.745409\nv -0.709620 -0.534346 0.750047\nv -0.698392 -0.523383 0.796366\nv -0.680685 -0.505216 0.838857\nv -0.681153 -0.526899 0.850362\nv -0.700079 -0.546424 0.804345\nv -0.712151 -0.558320 0.754304\nv -0.705007 -0.581663 0.757503\nv -0.692415 -0.569192 0.809757\nv -0.672719 -0.548797 0.857962\nv -0.656991 -0.567635 0.860676\nv -0.676910 -0.588303 0.811895\nv -0.689634 -0.600917 0.759210\nv -0.668083 -0.612925 0.759097\nv -0.655650 -0.600639 0.810293\nv -0.636114 -0.580363 0.857884\nv -0.613404 -0.585321 0.850217\nv -0.632035 -0.604625 0.805337\nv -0.643811 -0.616180 0.757253\nv -0.620477 -0.609818 0.753894\nv -0.609635 -0.599301 0.797660\nv -0.588535 -0.557696 0.888985\nv -0.610201 -0.551564 0.898708\nv -0.630720 -0.538449 0.902322\nv -0.646859 -0.520102 0.899015\nv -0.656383 -0.499465 0.889554\nv -0.657541 -0.479649 0.875156\nv -0.650490 -0.463578 0.858162\nv -0.635989 -0.453902 0.841107\nv -0.616494 -0.451812 0.826535\nv -0.612537 -0.426840 0.865559\nv -0.594900 -0.426915 0.848719\nv -0.585518 -0.394489 0.884678\nv -0.569975 -0.397058 0.866227\nv -0.555457 -0.357377 0.898022\nv -0.542222 -0.362739 0.878522\nv -0.562523 -0.358208 0.920944\nv -0.595303 -0.398604 0.906334\nv -0.624819 -0.433925 0.885288\nv -0.629618 -0.447364 0.904959\nv -0.597575 -0.409039 0.927964\nv -0.562069 -0.365355 0.943869\nv -0.554459 -0.377505 0.963376\nv -0.592292 -0.423988 0.946342\nv -0.626514 -0.464902 0.921641\nv -0.615665 -0.483983 0.932620\nv -0.579963 -0.441315 0.958480\nv -0.540582 -0.392975 0.976298\nv -0.522755 -0.409327 0.980965\nv -0.562705 -0.458341 0.962814\nv -0.598993 -0.501700 0.936483\nv -0.578849 -0.515245 0.932338\nv -0.542997 -0.472409 0.958350\nv -0.503584 -0.424057 0.976314\nv -0.485982 -0.435033 0.963405\nv -0.523875 -0.481538 0.946101\nv -0.558376 -0.522763 0.921120\nv -0.540738 -0.522839 0.904280\nv -0.569040 -0.555606 0.874414\nv -0.472747 -0.440395 0.943906\nv -0.445643 -0.384263 0.972513\nv -0.461547 -0.371194 0.985803\nv -0.480038 -0.355613 0.990589\nv -0.498351 -0.339839 0.985777\nv -0.513762 -0.326231 0.972464\nv -0.523758 -0.316991 0.952369\nv -0.527060 -0.313327 0.928756\nv -0.522883 -0.316035 0.905149\nv -0.512143 -0.324460 0.885068\nv -0.488973 -0.273220 0.904275\nv -0.480803 -0.284785 0.884191\nv -0.454905 -0.231693 0.893615\nv -0.449267 -0.246276 0.874216\nv -0.421858 -0.194212 0.871385\nv -0.418600 -0.211498 0.853470\nv -0.417496 -0.181407 0.892471\nv -0.453255 -0.221964 0.916414\nv -0.490207 -0.266925 0.927878\nv -0.484030 -0.267091 0.951479\nv -0.444274 -0.218799 0.939212\nv -0.405879 -0.175256 0.913582\nv -0.389025 -0.176415 0.931570\nv -0.429590 -0.222411 0.958608\nv -0.471654 -0.273441 0.971557\nv -0.454748 -0.285242 0.984851\nv -0.411250 -0.232518 0.971451\nv -0.369336 -0.185003 0.943512\nv -0.349863 -0.199447 0.947865\nv -0.392134 -0.247356 0.976082\nv -0.436012 -0.300518 0.989643\nv -0.418281 -0.317039 0.984841\nv -0.375179 -0.264815 0.971446\nv -0.333637 -0.217744 0.943641\nv -0.322951 -0.237011 0.931810\nv -0.362829 -0.282187 0.958600\nv -0.404160 -0.332292 0.971539\nv -0.357191 -0.296770 0.939201\nv -0.319692 -0.254298 0.913895\nv -0.285824 -0.199831 0.889285\nv -0.295047 -0.179046 0.899447\nv -0.310654 -0.160108 0.902946\nv -0.330484 -0.146033 0.898966\nv -0.351413 -0.138729 0.888394\nv -0.370234 -0.139608 0.872602\nv -0.384223 -0.148217 0.854152\nv -0.391010 -0.163536 0.835799\nv -0.389866 -0.183014 0.820279\nv -0.363532 -0.139243 0.790984\nv -0.364197 -0.160441 0.778386\nv -0.340598 -0.120911 0.741064\nv -0.342724 -0.143396 0.731533\nv -0.313048 -0.100442 0.642411\nv -0.316890 -0.124353 0.637927\nv -0.300487 -0.079966 0.648007\nv -0.330033 -0.102105 0.752566\nv -0.354660 -0.121936 0.806003\nv -0.338620 -0.111368 0.821207\nv -0.312322 -0.090051 0.764333\nv -0.280801 -0.066244 0.653889\nv -0.257208 -0.061057 0.659169\nv -0.290390 -0.086280 0.774600\nv -0.318089 -0.108851 0.834323\nv -0.296070 -0.115104 0.843228\nv -0.267469 -0.091717 0.781712\nv -0.233210 -0.065562 0.663003\nv -0.212404 -0.078704 0.664875\nv -0.247018 -0.105189 0.784730\nv -0.275907 -0.128851 0.846758\nv -0.260807 -0.148262 0.844146\nv -0.232313 -0.124933 0.783019\nv -0.198152 -0.098797 0.664415\nv -0.225322 -0.147756 0.777021\nv -0.252823 -0.170220 0.836023\nv -0.253487 -0.191419 0.823424\nv -0.189612 -0.092262 0.558047\nv -0.184072 -0.116271 0.557328\nv -0.184072 -0.116271 0.506240\nv -0.189612 -0.092262 0.506244\nv -0.203751 -0.072083 0.506244\nv -0.203751 -0.072083 0.558106\nv -0.224645 -0.059023 0.557470\nv -0.224645 -0.059023 0.506240\nv -0.248912 -0.054752 0.506234\nv -0.248912 -0.054752 0.556261\nv -0.272921 -0.060292 0.554642\nv -0.272921 -0.060292 0.506225\nv -0.293101 -0.074431 0.506215\nv -0.293101 -0.074431 0.552871\nv -0.306160 -0.095325 0.551218\nv -0.306160 -0.095325 0.506206\nv -0.310432 -0.119592 0.506199\nv -0.310432 -0.119592 0.549925\nv -0.304892 -0.143601 0.549206\nv -0.304892 -0.143601 0.506195\nv -0.290753 -0.163780 0.506195\nv -0.290753 -0.163780 0.549147\nv -0.269859 -0.176840 0.549783\nv -0.269859 -0.176840 0.506198\nv -0.245592 -0.181111 0.506205\nv -0.245592 -0.181111 0.550993\nv -0.221583 -0.175571 0.552612\nv -0.221583 -0.175571 0.506214\nv -0.201403 -0.161432 0.506223\nv -0.201403 -0.161432 0.554382\nv -0.188344 -0.140538 0.556035\nv -0.208725 -0.166955 0.651702\nv -0.196164 -0.146479 0.657297\nv -0.238013 -0.189046 0.755988\nv -0.262359 -0.208726 0.808406\nv -0.284680 -0.219309 0.873765\nv -0.291467 -0.234628 0.855412\nv -0.324054 -0.267103 0.892809\nv -0.358841 -0.306499 0.916402\nv -0.395990 -0.343857 0.951455\nv -0.394756 -0.350152 0.927852\nv -0.430726 -0.395396 0.928825\nv -0.465681 -0.439564 0.920984\nv -0.508333 -0.484107 0.927650\nv -0.498547 -0.479991 0.905993\nv -0.528456 -0.515754 0.884551\nv -0.554538 -0.545930 0.857358\nv -0.592313 -0.581422 0.838668\nv -0.575924 -0.569596 0.825112\nv -0.591743 -0.585828 0.788513\nv -0.601524 -0.595167 0.749581\nv -0.624311 -0.613545 0.709877\nv -0.604795 -0.598152 0.710334\nv -0.620609 -0.611058 0.668116\nv -0.601083 -0.595322 0.672794\nv -0.608844 -0.602929 0.631114\nv -0.589915 -0.587216 0.638979\nv -0.572360 -0.576690 0.607309\nv -0.549484 -0.566599 0.576203\nv -0.539169 -0.574397 0.532547\nv -0.522356 -0.559797 0.544081\nv -0.509153 -0.573407 0.498461\nv -0.529882 -0.578821 0.485953\nv -0.500857 -0.581765 0.453003\nv -0.559659 -0.580155 0.519680\nv -0.492041 -0.559139 0.509362\nv -0.461530 -0.562555 0.474024\nv -0.431557 -0.587046 0.403240\nv -0.411879 -0.573324 0.409405\nv -0.450175 -0.541524 0.480301\nv -0.398999 -0.552634 0.412824\nv -0.481350 -0.537871 0.516898\nv -0.511980 -0.538257 0.552435\nv -0.509338 -0.513266 0.556491\nv -0.478423 -0.513050 0.520076\nv -0.446769 -0.516894 0.482430\nv -0.394571 -0.528337 0.413097\nv -0.452170 -0.492342 0.479908\nv -0.399630 -0.504059 0.410052\nv -0.484033 -0.488386 0.518226\nv -0.515155 -0.488562 0.555439\nv -0.528231 -0.467819 0.549640\nv -0.497006 -0.467552 0.511820\nv -0.465222 -0.471528 0.473296\nv -0.413046 -0.483421 0.404274\nv -0.484214 -0.457837 0.463453\nv -0.433080 -0.469777 0.396548\nv -0.515629 -0.453940 0.501667\nv -0.546833 -0.454422 0.539798\nv -0.555632 -0.474528 0.584221\nv -0.542184 -0.495017 0.589026\nv -0.536182 -0.519648 0.589258\nv -0.538863 -0.544763 0.584694\nv -0.561191 -0.554611 0.615133\nv -0.578156 -0.565021 0.645215\nv -0.588953 -0.573218 0.676400\nv -0.585737 -0.548296 0.678438\nv -0.575038 -0.539912 0.648956\nv -0.558301 -0.529446 0.619655\nv -0.564480 -0.504978 0.620036\nv -0.581399 -0.515667 0.649521\nv -0.592301 -0.524311 0.678529\nv -0.607280 -0.504802 0.676735\nv -0.595918 -0.495870 0.646948\nv -0.578448 -0.484828 0.616384\nv -0.598356 -0.472304 0.609099\nv -0.574742 -0.461532 0.575402\nv -0.616673 -0.483777 0.641510\nv -0.628693 -0.492985 0.673257\nv -0.611774 -0.508776 0.706564\nv -0.633415 -0.496964 0.704960\nv -0.631614 -0.495583 0.735893\nv -0.610062 -0.507591 0.735780\nv -0.596544 -0.528134 0.708113\nv -0.594689 -0.526845 0.737487\nv -0.589742 -0.551850 0.709377\nv -0.592773 -0.576423 0.710150\nv -0.590076 -0.574162 0.744943\nv -0.581324 -0.565963 0.779258\nv -0.566974 -0.551353 0.811572\nv -0.566506 -0.529670 0.800067\nv -0.579636 -0.542923 0.771278\nv -0.587545 -0.550188 0.740686\nv -0.587301 -0.520154 0.765866\nv -0.574940 -0.507772 0.792468\nv -0.590667 -0.488933 0.789753\nv -0.602806 -0.501043 0.763728\nv -0.624065 -0.488708 0.765330\nv -0.611545 -0.476206 0.792546\nv -0.574308 -0.471058 0.813199\nv -0.558169 -0.489406 0.816505\nv -0.548645 -0.510043 0.825966\nv -0.547487 -0.529859 0.840365\nv -0.523657 -0.502315 0.864880\nv -0.496275 -0.469556 0.884364\nv -0.466135 -0.432417 0.898060\nv -0.473745 -0.420267 0.878551\nv -0.501558 -0.454607 0.865986\nv -0.526761 -0.484777 0.848199\nv -0.537611 -0.465696 0.837219\nv -0.513887 -0.437280 0.853848\nv -0.487622 -0.404797 0.865630\nv -0.505449 -0.388445 0.860963\nv -0.531145 -0.420255 0.849514\nv -0.554282 -0.447979 0.833356\nv -0.574426 -0.434433 0.837501\nv -0.594827 -0.457944 0.816813\nv -0.550853 -0.406186 0.853978\nv -0.524620 -0.373715 0.865614\nv -0.477749 -0.353109 0.866993\nv -0.496240 -0.337529 0.871778\nv -0.466682 -0.300038 0.870890\nv -0.448951 -0.316560 0.866088\nv -0.459436 -0.368884 0.871805\nv -0.430215 -0.331835 0.870880\nv -0.444025 -0.382492 0.885117\nv -0.434029 -0.391731 0.905213\nv -0.400934 -0.349986 0.904251\nv -0.367823 -0.309665 0.893604\nv -0.335672 -0.273253 0.871697\nv -0.352526 -0.272094 0.853710\nv -0.382506 -0.306052 0.874207\nv -0.413309 -0.343636 0.884173\nv -0.400846 -0.295945 0.861365\nv -0.372214 -0.263506 0.841768\nv -0.391688 -0.249062 0.837415\nv -0.419962 -0.281107 0.856734\nv -0.436917 -0.263648 0.861370\nv -0.407914 -0.230766 0.841638\nv -0.365035 -0.222737 0.806618\nv -0.345205 -0.236812 0.810598\nv -0.324277 -0.244116 0.821170\nv -0.305456 -0.243237 0.836962\nv -0.278399 -0.219294 0.793202\nv -0.255724 -0.201101 0.744221\nv -0.228411 -0.180677 0.645820\nv -0.252005 -0.185863 0.640540\nv -0.277656 -0.204872 0.733954\nv -0.298930 -0.221811 0.780086\nv -0.320949 -0.215557 0.771181\nv -0.300577 -0.199434 0.726843\nv -0.276002 -0.181359 0.636706\nv -0.296808 -0.168217 0.634833\nv -0.321028 -0.185962 0.723825\nv -0.341113 -0.201811 0.767651\nv -0.356213 -0.182399 0.770263\nv -0.380643 -0.203799 0.810117\nv -0.335733 -0.166219 0.725535\nv -0.311060 -0.148124 0.635294\nv -0.479398 -0.576574 0.464402\nv -0.434904 -0.392688 0.952433\nv -0.227448 -0.170241 0.767490\nv -0.192322 -0.122568 0.661783\nv -0.188344 -0.140538 0.506232\nv -0.434636 -0.470781 0.321978\nv -0.458782 -0.475689 0.333033\nv -0.458782 -0.475689 0.321978\nv -0.434636 -0.470781 0.335028\nv -0.460879 -0.475107 0.345373\nv -0.436820 -0.470192 0.349353\nv -0.481337 -0.488722 0.342426\nv -0.479326 -0.489293 0.331576\nv -0.479326 -0.489293 0.321978\nv -0.492930 -0.509837 0.330905\nv -0.492930 -0.509837 0.321978\nv -0.494868 -0.509281 0.341009\nv -0.499728 -0.533442 0.341275\nv -0.497837 -0.533983 0.331088\nv -0.497837 -0.533983 0.321978\nv -0.492930 -0.558129 0.332133\nv -0.492930 -0.558129 0.321977\nv -0.494805 -0.557602 0.343251\nv -0.481220 -0.578155 0.346575\nv -0.479326 -0.578673 0.333849\nv -0.479326 -0.578673 0.321977\nv -0.458782 -0.592277 0.335998\nv -0.458782 -0.592277 0.321978\nv -0.460727 -0.591763 0.350786\nv -0.434636 -0.597185 0.321978\nv -0.410489 -0.592277 0.340237\nv -0.410489 -0.592277 0.321978\nv -0.434636 -0.597185 0.338243\nv -0.389945 -0.578673 0.321977\nv -0.389945 -0.578673 0.341694\nv -0.392138 -0.578138 0.362149\nv -0.436655 -0.596669 0.355221\nv -0.376341 -0.558129 0.342366\nv -0.376341 -0.558129 0.321977\nv -0.378607 -0.557580 0.363566\nv -0.373747 -0.533418 0.363300\nv -0.371434 -0.533983 0.342183\nv -0.371434 -0.533983 0.321978\nv -0.376341 -0.509837 0.341138\nv -0.376341 -0.509837 0.321978\nv -0.378670 -0.509259 0.361324\nv -0.392255 -0.488705 0.358000\nv -0.389945 -0.489293 0.339422\nv -0.389945 -0.489293 0.321978\nv -0.410489 -0.475689 0.337273\nv -0.410489 -0.475689 0.321978\nv -0.412748 -0.475098 0.353789\nv -0.412596 -0.591754 0.359201\nv -0.454831 -0.592028 0.395359\nv -0.259020 -0.496504 0.142163\nv -0.248883 -0.495952 0.174048\nv -0.266936 -0.500030 0.167048\nv -0.240446 -0.492511 0.147578\nv -0.273763 -0.504862 0.182832\nv -0.256120 -0.500693 0.190452\nv -0.283152 -0.513048 0.201726\nv -0.266013 -0.508722 0.209963\nv -0.297042 -0.523973 0.194738\nv -0.288295 -0.515638 0.176690\nv -0.281943 -0.510697 0.161634\nv -0.274587 -0.507045 0.138184\nv -0.291560 -0.526400 0.158652\nv -0.284717 -0.522604 0.136255\nv -0.297428 -0.531465 0.172993\nv -0.305466 -0.539939 0.190100\nv -0.307496 -0.558477 0.188387\nv -0.300145 -0.549935 0.172158\nv -0.294713 -0.544777 0.158407\nv -0.288262 -0.540852 0.136538\nv -0.290763 -0.563303 0.161022\nv -0.284514 -0.559295 0.139053\nv -0.295869 -0.568471 0.174407\nv -0.302649 -0.576950 0.189963\nv -0.291824 -0.592644 0.194483\nv -0.285373 -0.584350 0.179326\nv -0.280405 -0.579258 0.166055\nv -0.274132 -0.575223 0.143412\nv -0.264790 -0.590065 0.172892\nv -0.258245 -0.586060 0.149095\nv -0.269867 -0.595010 0.186309\nv -0.276338 -0.603026 0.201387\nv -0.246451 -0.594195 0.180441\nv -0.239449 -0.590246 0.155197\nv -0.281839 -0.558462 0.120244\nv -0.285573 -0.539981 0.118747\nv -0.284711 -0.540236 0.099658\nv -0.280929 -0.521631 0.099658\nv -0.281867 -0.521626 0.118475\nv -0.270448 -0.505802 0.099658\nv -0.271501 -0.505994 0.119436\nv -0.254618 -0.495321 0.099658\nv -0.255719 -0.495501 0.121560\nv -0.237022 -0.491604 0.124522\nv -0.236014 -0.491539 0.099658\nv -0.218145 -0.495298 0.127930\nv -0.221547 -0.496151 0.153700\nv -0.230391 -0.499567 0.181657\nv -0.205272 -0.506639 0.159543\nv -0.214357 -0.510089 0.188666\nv -0.194386 -0.522651 0.164133\nv -0.203512 -0.526188 0.193902\nv -0.190324 -0.541517 0.166811\nv -0.199293 -0.545164 0.196632\nv -0.194001 -0.560345 0.167068\nv -0.202628 -0.564095 0.196320\nv -0.204549 -0.576287 0.164972\nv -0.212693 -0.580121 0.193157\nv -0.220590 -0.586709 0.160769\nv -0.228159 -0.590605 0.187548\nv -0.219109 -0.584716 0.208191\nv -0.234037 -0.595272 0.201905\nv -0.227237 -0.592146 0.224831\nv -0.241438 -0.602810 0.217770\nv -0.251852 -0.598979 0.194234\nv -0.258661 -0.606715 0.209554\nv -0.209549 -0.568653 0.212056\nv -0.218414 -0.576058 0.229612\nv -0.216136 -0.557165 0.231446\nv -0.206619 -0.549713 0.212985\nv -0.211094 -0.530754 0.210676\nv -0.221088 -0.538308 0.229883\nv -0.232247 -0.522390 0.225283\nv -0.222013 -0.514693 0.205605\nv -0.237919 -0.504231 0.198463\nv -0.248110 -0.512092 0.218243\nv -0.233796 -0.549695 0.252403\nv -0.245439 -0.534059 0.248563\nv -0.262681 -0.550931 0.274910\nv -0.250470 -0.566211 0.277804\nv -0.228065 -0.568333 0.252880\nv -0.229381 -0.587107 0.249799\nv -0.237188 -0.603200 0.243815\nv -0.250922 -0.619201 0.265129\nv -0.270401 -0.641473 0.288758\nv -0.297587 -0.671336 0.314692\nv -0.334442 -0.710115 0.342916\nv -0.346173 -0.720793 0.330932\nv -0.375435 -0.751866 0.373614\nv -0.415037 -0.790646 0.406972\nv -0.447720 -0.820512 0.443170\nv -0.328640 -0.694621 0.353981\nv -0.292078 -0.655556 0.324707\nv -0.368929 -0.736684 0.385106\nv -0.407691 -0.775722 0.417880\nv -0.439676 -0.805715 0.452096\nv -0.438336 -0.788539 0.459303\nv -0.407009 -0.758452 0.426614\nv -0.369031 -0.719197 0.394167\nv -0.329388 -0.676846 0.362485\nv -0.293068 -0.637473 0.332086\nv -0.336829 -0.659489 0.366976\nv -0.300733 -0.619812 0.335523\nv -0.375898 -0.702090 0.399297\nv -0.413182 -0.741519 0.431764\nv -0.443928 -0.771683 0.463662\nv -0.455397 -0.757301 0.464740\nv -0.425076 -0.727160 0.432809\nv -0.388284 -0.687721 0.399957\nv -0.349618 -0.645045 0.366974\nv -0.313679 -0.605194 0.334653\nv -0.366029 -0.635797 0.362321\nv -0.330118 -0.596028 0.329433\nv -0.404569 -0.678251 0.395922\nv -0.441186 -0.717429 0.429499\nv -0.471325 -0.747369 0.462314\nv -0.489395 -0.743331 0.456734\nv -0.459120 -0.713724 0.422350\nv -0.507090 -0.746264 0.448575\nv -0.476314 -0.717054 0.412157\nv -0.422284 -0.675008 0.387865\nv -0.438823 -0.678895 0.376750\nv -0.383518 -0.632999 0.353830\nv -0.399446 -0.637444 0.342595\nv -0.347452 -0.593513 0.320798\nv -0.363010 -0.598360 0.309934\nv -0.521580 -0.755592 0.439200\nv -0.490054 -0.726750 0.400606\nv -0.451624 -0.689121 0.364401\nv -0.411397 -0.648217 0.330442\nv -0.374477 -0.609550 0.298582\nv -0.417240 -0.663912 0.319276\nv -0.379848 -0.625585 0.288528\nv -0.458382 -0.704397 0.352756\nv -0.497856 -0.741638 0.389513\nv -0.530243 -0.770230 0.430092\nv -0.531998 -0.787675 0.422635\nv -0.498785 -0.759182 0.380561\nv -0.458333 -0.722142 0.343572\nv -0.416361 -0.681903 0.310767\nv -0.378587 -0.643812 0.281248\nv -0.408659 -0.699396 0.306371\nv -0.370666 -0.661425 0.278003\nv -0.451239 -0.739589 0.338409\nv -0.492444 -0.776647 0.375264\nv -0.526311 -0.805208 0.418082\nv -0.514373 -0.820192 0.416981\nv -0.480131 -0.791419 0.374234\nv -0.438519 -0.754144 0.337828\nv -0.395644 -0.713804 0.306515\nv -0.357613 -0.675832 0.279048\nv -0.379198 -0.722792 0.311295\nv -0.341314 -0.684699 0.284327\nv -0.421991 -0.763446 0.342050\nv -0.463575 -0.801100 0.377767\nv -0.497831 -0.830189 0.419624\nv -0.479350 -0.833863 0.425489\nv -0.445404 -0.804442 0.385173\nv -0.404234 -0.766358 0.350266\nv -0.361847 -0.725316 0.319818\nv -0.324252 -0.687025 0.292881\nv -0.308949 -0.682272 0.303536\nv -0.428368 -0.800668 0.395474\nv -0.387911 -0.762204 0.361380\nv -0.461745 -0.830348 0.433807\nv -0.500062 -0.848910 0.472163\nv -0.518638 -0.845152 0.468798\nv -0.535136 -0.835028 0.467316\nv -0.546878 -0.819914 0.468009\nv -0.552255 -0.802274 0.470692\nv -0.550126 -0.784770 0.475039\nv -0.541098 -0.770134 0.480328\nv -0.526324 -0.760865 0.485763\nv -0.508481 -0.758012 0.490466\nv -0.534621 -0.762360 0.522588\nv -0.516969 -0.759489 0.523035\nv -0.532585 -0.752249 0.557917\nv -0.515455 -0.749483 0.553931\nv -0.520822 -0.732033 0.590617\nv -0.504530 -0.729715 0.582645\nv -0.533825 -0.740514 0.600056\nv -0.546598 -0.761339 0.562642\nv -0.549230 -0.771631 0.522104\nv -0.558145 -0.786279 0.521703\nv -0.554941 -0.775775 0.567432\nv -0.541155 -0.754277 0.609577\nv -0.541872 -0.770977 0.617682\nv -0.556532 -0.793098 0.571525\nv -0.560213 -0.803806 0.521426\nv -0.554823 -0.821476 0.521299\nv -0.550824 -0.810609 0.574204\nv -0.535558 -0.788025 0.622979\nv -0.523478 -0.802826 0.624784\nv -0.538997 -0.825655 0.575125\nv -0.543114 -0.836619 0.521333\nv -0.526693 -0.846756 0.521534\nv -0.522692 -0.835769 0.574080\nv -0.507328 -0.812958 0.622682\nv -0.489713 -0.817040 0.617141\nv -0.504551 -0.839576 0.571308\nv -0.508232 -0.850507 0.521876\nv -0.490560 -0.846971 0.522316\nv -0.487367 -0.836174 0.567173\nv -0.464408 -0.783821 0.656054\nv -0.481299 -0.779091 0.663586\nv -0.497249 -0.768824 0.666403\nv -0.509704 -0.754436 0.663877\nv -0.516890 -0.738270 0.656590\nv -0.517427 -0.722805 0.645485\nv -0.511534 -0.710413 0.632462\nv -0.499937 -0.703214 0.619554\nv -0.484790 -0.701905 0.608668\nv -0.472070 -0.667547 0.644061\nv -0.458329 -0.667729 0.631141\nv -0.439364 -0.626788 0.663469\nv -0.427244 -0.628863 0.649208\nv -0.403960 -0.582694 0.677111\nv -0.393631 -0.586981 0.662013\nv -0.409684 -0.583119 0.695084\nv -0.447250 -0.629848 0.680429\nv -0.481938 -0.672902 0.659404\nv -0.486055 -0.683358 0.674905\nv -0.449337 -0.637937 0.697584\nv -0.409572 -0.588541 0.713270\nv -0.403840 -0.597945 0.728848\nv -0.445492 -0.649623 0.712269\nv -0.483969 -0.697108 0.688150\nv -0.475715 -0.712079 0.696886\nv -0.436042 -0.663187 0.721992\nv -0.393140 -0.609996 0.739183\nv -0.379300 -0.622754 0.742921\nv -0.422659 -0.676490 0.725483\nv -0.462809 -0.725947 0.699974\nv -0.447120 -0.736475 0.696701\nv -0.407311 -0.687418 0.721938\nv -0.364387 -0.634225 0.739206\nv -0.350718 -0.642713 0.728883\nv -0.392408 -0.694393 0.712166\nv -0.431139 -0.742184 0.687810\nv -0.449206 -0.782014 0.644795\nv -0.380330 -0.696139 0.697443\nv -0.308570 -0.589408 0.737723\nv -0.320868 -0.579204 0.748413\nv -0.335232 -0.567033 0.752278\nv -0.349460 -0.554740 0.748445\nv -0.361396 -0.544204 0.737793\nv -0.369058 -0.537171 0.721711\nv -0.371454 -0.534581 0.702914\nv -0.367999 -0.537020 0.684317\nv -0.359586 -0.543759 0.668697\nv -0.332180 -0.491856 0.683348\nv -0.325730 -0.501111 0.667635\nv -0.297203 -0.449292 0.672461\nv -0.292684 -0.460948 0.657199\nv -0.263765 -0.411416 0.649916\nv -0.261068 -0.425183 0.635761\nv -0.260575 -0.400882 0.666808\nv -0.296119 -0.441187 0.690642\nv -0.333339 -0.486512 0.702055\nv -0.328651 -0.486263 0.720935\nv -0.289206 -0.438249 0.708971\nv -0.251580 -0.395567 0.683848\nv -0.238414 -0.396077 0.698391\nv -0.277772 -0.440724 0.724608\nv -0.319070 -0.490948 0.737061\nv -0.305932 -0.500018 0.747712\nv -0.263484 -0.448425 0.734916\nv -0.223045 -0.402557 0.707989\nv -0.207882 -0.413775 0.711408\nv -0.248612 -0.459963 0.738566\nv -0.291366 -0.511909 0.751508\nv -0.277610 -0.524852 0.747580\nv -0.235473 -0.473667 0.734728\nv -0.195316 -0.428145 0.707877\nv -0.187188 -0.443366 0.698163\nv -0.226024 -0.487373 0.724243\nv -0.266745 -0.536840 0.736802\nv -0.221947 -0.498909 0.708457\nv -0.260638 -0.545935 0.720566\nv -0.151015 -0.407183 0.656684\nv -0.157997 -0.390785 0.665045\nv -0.170084 -0.375924 0.667988\nv -0.185543 -0.365013 0.664864\nv -0.201905 -0.359555 0.656369\nv -0.216628 -0.360651 0.643594\nv -0.227487 -0.367875 0.628690\nv -0.232567 -0.380320 0.613971\nv -0.231505 -0.395729 0.601693\nv -0.204777 -0.355599 0.568850\nv -0.205128 -0.372242 0.558900\nv -0.181569 -0.336854 0.518778\nv -0.183071 -0.354379 0.511284\nv -0.153575 -0.315682 0.420672\nv -0.156458 -0.334149 0.417198\nv -0.143953 -0.299685 0.425054\nv -0.173530 -0.321925 0.527936\nv -0.198068 -0.341708 0.580872\nv -0.185607 -0.333009 0.593132\nv -0.159774 -0.312149 0.537382\nv -0.128694 -0.288807 0.429711\nv -0.110322 -0.284536 0.433913\nv -0.142627 -0.308849 0.545643\nv -0.169543 -0.330648 0.603724\nv -0.152315 -0.335281 0.610871\nv -0.124693 -0.312852 0.551336\nv -0.091610 -0.287866 0.436963\nv -0.075403 -0.297991 0.438446\nv -0.108724 -0.323255 0.553714\nv -0.136578 -0.345917 0.613644\nv -0.124879 -0.361117 0.611441\nv -0.097325 -0.338674 0.552271\nv -0.064361 -0.313595 0.438063\nv -0.092060 -0.356572 0.547359\nv -0.118856 -0.378395 0.604763\nv -0.119725 -0.395102 0.594452\nv -0.094035 -0.374220 0.539592\nv -0.056269 -0.307385 0.334685\nv -0.052029 -0.325951 0.334115\nv -0.052098 -0.325929 0.283563\nv -0.056368 -0.307424 0.283563\nv -0.067265 -0.291872 0.283563\nv -0.067188 -0.291793 0.334732\nv -0.083357 -0.281732 0.334229\nv -0.083369 -0.281807 0.283563\nv -0.102071 -0.278514 0.283563\nv -0.102141 -0.278491 0.333273\nv -0.120715 -0.282859 0.331998\nv -0.120576 -0.282784 0.283563\nv -0.136129 -0.293681 0.283563\nv -0.136301 -0.293858 0.330614\nv -0.146348 -0.310026 0.329339\nv -0.146195 -0.309784 0.283563\nv -0.149488 -0.328487 0.283563\nv -0.149614 -0.328729 0.328351\nv -0.145359 -0.347159 0.327809\nv -0.145218 -0.346992 0.283563\nv -0.134321 -0.362546 0.283563\nv -0.134511 -0.362630 0.327765\nv -0.118475 -0.372670 0.328242\nv -0.118216 -0.372611 0.283563\nv -0.099513 -0.375904 0.283563\nv -0.099802 -0.375980 0.329160\nv -0.081243 -0.371742 0.330409\nv -0.081008 -0.371633 0.283563\nv -0.065455 -0.360736 0.283563\nv -0.065584 -0.360857 0.331790\nv -0.055406 -0.344717 0.333091\nv -0.073147 -0.366613 0.427883\nv -0.102629 -0.388908 0.530318\nv -0.127048 -0.408671 0.582297\nv -0.156208 -0.434636 0.629096\nv -0.188827 -0.467151 0.666448\nv -0.223623 -0.506559 0.690087\nv -0.260008 -0.550836 0.701651\nv -0.300389 -0.595945 0.721595\nv -0.297394 -0.597954 0.702776\nv -0.340515 -0.646745 0.713301\nv -0.335193 -0.645888 0.695099\nv -0.372817 -0.692611 0.680259\nv -0.417379 -0.741954 0.674461\nv -0.407877 -0.736075 0.658909\nv -0.437984 -0.774230 0.631705\nv -0.460751 -0.805026 0.599301\nv -0.473788 -0.826415 0.562353\nv -0.476415 -0.837034 0.522754\nv -0.467952 -0.835520 0.482396\nv -0.459630 -0.820638 0.487549\nv -0.468233 -0.822086 0.523094\nv -0.466163 -0.811650 0.557584\nv -0.454097 -0.790924 0.589874\nv -0.453950 -0.774343 0.582027\nv -0.465163 -0.794497 0.553607\nv -0.466744 -0.804773 0.523327\nv -0.458025 -0.803383 0.491717\nv -0.463378 -0.786486 0.494270\nv -0.472175 -0.787847 0.523457\nv -0.470959 -0.777685 0.551093\nv -0.460372 -0.757919 0.577045\nv -0.472092 -0.743804 0.575416\nv -0.482384 -0.763374 0.550282\nv -0.483440 -0.773451 0.523464\nv -0.474648 -0.772079 0.494954\nv -0.490434 -0.762109 0.493630\nv -0.499107 -0.763534 0.523329\nv -0.497939 -0.753524 0.551290\nv -0.487526 -0.733964 0.577394\nv -0.453174 -0.716698 0.598878\nv -0.468461 -0.706736 0.601524\nv -0.442834 -0.673472 0.622692\nv -0.427745 -0.683686 0.619617\nv -0.441054 -0.730467 0.601185\nv -0.415172 -0.697008 0.622457\nv -0.433773 -0.746101 0.608063\nv -0.432715 -0.761499 0.618816\nv -0.404327 -0.725282 0.643567\nv -0.371245 -0.684178 0.663279\nv -0.335780 -0.640094 0.677106\nv -0.341796 -0.630571 0.661996\nv -0.375463 -0.672442 0.649033\nv -0.406866 -0.711543 0.630726\nv -0.384889 -0.659220 0.639809\nv -0.352371 -0.618782 0.652187\nv -0.365809 -0.606464 0.648720\nv -0.397919 -0.646398 0.636581\nv -0.412732 -0.635802 0.639913\nv -0.380245 -0.595357 0.652200\nv -0.333528 -0.565515 0.654980\nv -0.319782 -0.577373 0.658539\nv -0.308100 -0.587702 0.668631\nv -0.300243 -0.594934 0.684204\nv -0.265139 -0.550583 0.683028\nv -0.230973 -0.508929 0.672037\nv -0.198248 -0.471857 0.649687\nv -0.211397 -0.470926 0.635693\nv -0.242444 -0.506098 0.656966\nv -0.274831 -0.545617 0.667450\nv -0.287582 -0.536712 0.657388\nv -0.256230 -0.498520 0.647258\nv -0.226185 -0.464519 0.626674\nv -0.240644 -0.453748 0.623502\nv -0.270448 -0.487440 0.643872\nv -0.301576 -0.525268 0.653865\nv -0.314932 -0.512823 0.657470\nv -0.347461 -0.553769 0.658569\nv -0.283212 -0.474300 0.647355\nv -0.252854 -0.439985 0.626676\nv -0.212661 -0.425910 0.591255\nv -0.224410 -0.411661 0.593885\nv -0.198992 -0.389029 0.552661\nv -0.187609 -0.403648 0.550698\nv -0.197906 -0.436428 0.594157\nv -0.172538 -0.413969 0.553283\nv -0.182144 -0.441883 0.602143\nv -0.167469 -0.441251 0.614434\nv -0.139877 -0.416795 0.570223\nv -0.116711 -0.398173 0.520993\nv -0.088618 -0.377159 0.423256\nv -0.106948 -0.381075 0.419160\nv -0.133797 -0.401000 0.513009\nv -0.155880 -0.418673 0.560015\nv -0.151223 -0.396860 0.507625\nv -0.125335 -0.377578 0.416247\nv -0.141158 -0.367541 0.414849\nv -0.166601 -0.386684 0.505400\nv -0.177710 -0.371789 0.506684\nv -0.151998 -0.352285 0.415193\nv -0.482248 -0.845406 0.476974\nv -0.473354 -0.814145 0.608886\nv -0.150488 -0.422588 0.643966\nv -0.185002 -0.457061 0.683510\nv -0.059953 -0.332102 0.435940\nv -0.063151 -0.350721 0.432339\nv -0.055390 -0.344632 0.283563\nv -0.280929 -0.558841 0.099658\nv -0.271398 -0.574337 0.122742\nv -0.270448 -0.574670 0.099658\nv -0.255466 -0.585034 0.125949\nv -0.254618 -0.585152 0.099658\nv -0.236014 -0.588933 0.099658\nv -0.217761 -0.585441 0.132421\nv -0.217409 -0.585152 0.099658\nv -0.201686 -0.575008 0.134687\nv -0.236642 -0.589067 0.129353\nv -0.201580 -0.574670 0.099658\nv -0.191071 -0.559129 0.135747\nv -0.191098 -0.558841 0.099658\nv -0.187295 -0.540415 0.135483\nv -0.187317 -0.540236 0.099658\nv -0.191230 -0.521682 0.133876\nv -0.191098 -0.521631 0.099658\nv -0.201981 -0.505768 0.131231\nv -0.201580 -0.505802 0.099658\nv -0.217409 -0.495321 0.099658\nv -0.295592 -0.525568 0.224393\nv -0.279045 -0.520995 0.233328\nv -0.312262 -0.543344 0.250323\nv -0.296264 -0.538535 0.259972\nv -0.334342 -0.567301 0.279007\nv -0.318717 -0.562366 0.289321\nv -0.345972 -0.578635 0.268679\nv -0.324491 -0.554629 0.241135\nv -0.308644 -0.536689 0.216353\nv -0.316079 -0.552792 0.210479\nv -0.330915 -0.570821 0.233857\nv -0.351622 -0.594820 0.259964\nv -0.350729 -0.613217 0.254114\nv -0.330872 -0.589325 0.229501\nv -0.317099 -0.571342 0.207547\nv -0.311366 -0.589642 0.208120\nv -0.324172 -0.607391 0.228858\nv -0.343221 -0.631038 0.252158\nv -0.330532 -0.645665 0.254180\nv -0.312086 -0.622367 0.231842\nv -0.299956 -0.605005 0.211965\nv -0.284345 -0.614949 0.218612\nv -0.296261 -0.631832 0.238100\nv -0.314460 -0.654731 0.259967\nv -0.297457 -0.657194 0.268505\nv -0.279142 -0.634648 0.246571\nv -0.266984 -0.618213 0.226960\nv -0.263265 -0.630148 0.256041\nv -0.250456 -0.614013 0.235790\nv -0.282038 -0.652478 0.278597\nv -0.244167 -0.603144 0.272472\nv -0.264493 -0.625512 0.297489\nv -0.265057 -0.607153 0.303491\nv -0.243881 -0.584551 0.276992\nv -0.272364 -0.589151 0.305655\nv -0.285063 -0.574233 0.303786\nv -0.301390 -0.564905 0.297997\nv -0.278826 -0.541297 0.268596\nv -0.261406 -0.524070 0.241816\nv 0.626760 -0.252166 0.535197\nv 0.570312 -0.134303 0.652757\nv 0.652925 -0.134303 0.665721\nv 0.547777 -0.252166 0.535197\nv 0.621870 -0.337892 0.434558\nv 0.543565 -0.337892 0.434558\nv 0.618134 -0.406340 0.298096\nv 0.540347 -0.406340 0.298096\nv 0.598848 -0.429187 0.118118\nv 0.523736 -0.429187 0.118118\nv 0.562481 -0.508297 -0.039827\nv 0.464701 -0.508297 -0.039827\nv 0.533460 -0.533795 -0.135113\nv 0.416657 -0.533795 -0.135113\nv 0.475334 -0.614090 -0.174941\nv 0.542651 -0.614090 -0.174941\nv 0.286780 -0.252166 0.267764\nv 0.298588 -0.134303 0.267764\nv 0.002482 -0.134303 0.267764\nv 0.002482 -0.252166 0.267764\nv 0.284573 -0.254285 0.182936\nv 0.002482 -0.254285 0.182936\nv 0.282887 -0.352800 0.118118\nv 0.002482 -0.352800 0.118118\nv 0.274183 -0.429187 0.118118\nv 0.002482 -0.429187 0.118118\nv 0.243250 -0.438618 -0.135113\nv 0.002482 -0.438618 -0.135113\nv 0.218076 -0.533795 -0.135113\nv 0.002482 -0.533795 -0.135113\nv 0.002482 -0.614090 -0.174941\nv 0.248822 -0.614090 -0.174941\nv -0.213112 -0.533795 -0.135113\nv -0.243858 -0.614090 -0.174941\nv -0.238287 -0.438618 -0.135113\nv -0.269219 -0.429187 0.118118\nv -0.277923 -0.352800 0.118118\nv -0.279609 -0.254285 0.182936\nv -0.281816 -0.252166 0.267764\nv -0.293624 -0.134303 0.267764\nv -0.565348 -0.134303 0.652757\nv -0.542813 -0.252166 0.535197\nv -0.621796 -0.252166 0.535197\nv -0.647961 -0.134303 0.665721\nv -0.616906 -0.337892 0.434558\nv -0.538601 -0.337892 0.434558\nv -0.613170 -0.406340 0.298096\nv -0.535383 -0.406340 0.298096\nv -0.593884 -0.429187 0.118118\nv -0.518772 -0.429187 0.118118\nv -0.557517 -0.508297 -0.039827\nv -0.459738 -0.508297 -0.039827\nv -0.528496 -0.533795 -0.135113\nv -0.411693 -0.533795 -0.135113\nv -0.470370 -0.614090 -0.174941\nv -0.537687 -0.614090 -0.174941\nv -0.470370 -0.665057 -0.261351\nv -0.218114 -0.665057 -0.462657\nv 0.002482 -0.684998 -0.487387\nv 0.223078 -0.665057 -0.462657\nv 0.475334 -0.665057 -0.261351\nv 0.171923 -0.665057 -0.528834\nv 0.002482 -0.684998 -0.546752\nv -0.166959 -0.665057 -0.528834\nv 0.127359 -0.665057 -0.681536\nv 0.002482 -0.684998 -0.683734\nv -0.122395 -0.665057 -0.681536\nv 0.652177 -0.047064 0.665721\nv 0.569668 -0.047065 0.665721\nv 0.298250 -0.047065 0.267764\nv 0.002482 -0.047065 0.267764\nv -0.293287 -0.047065 0.267764\nv -0.564704 -0.047065 0.665721\nv -0.647213 -0.047065 0.665721\nv 0.651014 0.047538 0.691662\nv 0.568667 0.047538 0.691662\nv 0.297726 0.088653 0.732335\nv 0.002482 0.088653 0.787019\nv -0.646051 0.047538 0.691662\nv -0.563703 0.047538 0.691662\nv -0.292762 0.088653 0.732335\nv -0.563125 0.067919 0.719005\nv -0.292459 0.067919 0.956030\nv 0.650344 0.067919 0.719005\nv 0.568089 0.067919 0.719006\nv 0.297423 0.067919 0.956030\nv 0.002482 0.067919 1.086469\nv -0.645380 0.067919 0.719006\nv 0.002482 -0.254285 0.182936\nv -0.279609 -0.254285 0.182936\nv -0.279609 -0.254285 0.182936\nv -0.306861 -0.540236 0.018964\nv -0.301264 -0.567263 0.018964\nv 0.306969 -0.500129 -0.531959\nv 0.324915 -0.534865 -0.525749\nv 0.737275 0.162494 0.075328\nv 0.738979 0.166758 0.077288\nv 0.738979 0.166758 0.077288\nv 0.664781 -0.310175 0.214945\nv 0.664781 -0.310175 0.214945\nv 0.667921 -0.179885 0.262805\nv 0.611995 -0.483090 0.030941\nv 0.611995 -0.483090 0.030941\nv 0.579505 -0.521758 -0.056274\nv 0.741265 0.169327 0.074568\nv 0.741265 0.169327 0.074568\nv 0.741441 0.174810 0.082201\nv 0.329930 -0.573892 -0.521393\nv 0.640313 0.533149 -0.001480\nv 0.703426 0.490127 0.029224\nv 0.703426 0.490127 0.029224\nv 0.327348 -0.593550 -0.520081\nv 0.327348 -0.593550 -0.520081\nv 0.670178 -0.066248 0.312264\nv 0.670178 -0.066248 0.312264\nv -0.166882 -0.106117 -0.683982\nv -0.168827 -0.163173 -0.682753\nv -0.238287 -0.438618 -0.135113\nv -0.238287 -0.438618 -0.135113\nv -0.459738 -0.508297 -0.039827\nv -0.459738 -0.508297 -0.039827\nv 0.348650 -0.533983 0.214746\nv 0.355713 -0.499236 0.214746\nv 0.040445 -0.690806 -0.812782\nv 0.017911 -0.690806 -0.812782\nv 0.663931 -0.170187 0.238950\nv 0.669697 -0.046399 0.289085\nv 0.348650 -0.533983 0.249920\nv 0.355713 -0.499236 0.249920\nv 0.448045 -0.824870 -0.070960\nv 0.448045 -0.774019 -0.070961\nv -0.177498 -0.164046 -0.685395\nv -0.168450 -0.208724 -0.675396\nv -0.518772 -0.429187 0.118118\nv -0.518772 -0.429187 0.118118\nv -0.518772 -0.429187 0.118118\nv -0.197310 0.841062 0.627104\nv -0.098784 0.852486 0.663399\nv 0.002482 -0.429187 0.118118\nv -0.269219 -0.429187 0.118118\nv 0.325181 0.779332 0.390723\nv 0.181856 0.847931 0.469459\nv -0.524405 -0.387341 -0.250896\nv -0.532334 -0.380018 -0.241285\nv -0.532334 -0.380018 -0.241285\nv -0.139545 0.167722 1.144709\nv -0.138001 0.172405 1.146999\nv -0.377087 0.780282 0.570650\nv 0.332823 -0.494034 -0.397926\nv 0.298143 -0.512411 -0.420769\nv -0.235494 -0.458340 -0.536476\nv -0.271508 -0.472950 -0.528942\nv 0.362064 -0.475515 -0.374994\nv -0.171517 -0.223963 -0.670619\nv -0.171517 -0.223963 -0.670619\nv -0.173600 -0.223063 -0.669907\nv -0.173600 -0.223063 -0.669907\nv 0.739571 0.165068 0.072606\nv -0.331354 -0.533983 0.257233\nv -0.339374 -0.573442 0.257233\nv -0.537916 -0.533983 0.282160\nv -0.529896 -0.573442 0.282160\nv -0.286111 -0.590333 0.018964\nv -0.490689 0.479332 -0.278643\nv -0.490689 0.479332 -0.278643\nv -0.468669 0.483457 -0.279815\nv 0.320956 0.132631 1.024768\nv 0.307966 0.132614 1.035985\nv 0.297867 -0.483347 0.070440\nv 0.315075 -0.509544 0.070440\nv 0.440281 -0.771704 -0.060469\nv 0.440281 -0.771704 -0.060469\nv 0.462923 -0.777146 -0.043714\nv 0.462923 -0.777146 -0.043714\nv 0.464954 -0.379841 -0.297389\nv 0.417878 -0.414755 -0.334580\nv 0.328144 -0.572968 -0.511064\nv 0.325562 -0.592627 -0.509752\nv -0.277923 -0.352800 0.118118\nv -0.277923 -0.352800 0.118118\nv -0.277923 -0.352800 0.118118\nv -0.397554 -0.564887 -0.294446\nv -0.474174 -0.513979 -0.184185\nv 0.474346 -0.450096 0.289473\nv 0.503910 -0.469672 0.289473\nv -0.654087 -0.330738 0.276538\nv -0.654087 -0.330738 0.276538\nv -0.654547 -0.333814 0.256441\nv -0.368529 -0.430949 -0.372683\nv -0.368529 -0.430949 -0.372683\nv -0.368529 -0.430949 -0.372683\nv -0.329389 -0.428439 -0.380647\nv 0.523486 -0.499236 0.289473\nv -0.507666 -0.460952 0.257233\nv -0.529896 -0.494524 0.257233\nv 0.251981 -0.332702 -0.533622\nv 0.251981 -0.332702 -0.533622\nv 0.239872 -0.329005 -0.531592\nv -0.243858 -0.614090 -0.174941\nv -0.470370 -0.614090 -0.174941\nv 0.671422 -0.326672 0.133880\nv 0.679261 -0.290027 0.153432\nv -0.350749 -0.499236 0.249920\nv -0.343686 -0.533983 0.249920\nv 0.002482 -0.438618 -0.135113\nv -0.165350 -0.481223 -0.546559\nv -0.150747 -0.490795 -0.548228\nv 0.060584 -0.829487 -0.773833\nv 0.040445 -0.829487 -0.776665\nv -0.543605 -0.457634 -0.061201\nv -0.646954 -0.349630 0.303059\nv -0.647958 -0.371425 0.267430\nv 0.631983 -0.436573 0.061292\nv 0.729001 0.173724 0.065413\nv 0.729001 0.173724 0.065413\nv -0.370381 -0.487365 -0.369525\nv -0.404237 -0.464743 -0.341377\nv -0.163705 -0.063395 -0.679593\nv -0.163822 -0.054627 -0.676400\nv 0.512630 -0.460952 0.282160\nv 0.534860 -0.494524 0.282160\nv -0.469382 -0.450096 0.289473\nv -0.498946 -0.469672 0.289473\nv -0.263041 -0.605486 0.018964\nv 0.153582 -0.313026 -0.616429\nv 0.144079 -0.385473 -0.577065\nv 0.271670 -0.466139 0.070440\nv 0.367078 -0.820924 -0.113986\nv 0.140838 -0.820924 0.191760\nv 0.140838 -0.820924 0.191760\nv 0.373134 -0.817506 -0.122170\nv 0.373134 -0.817506 -0.122170\nv -0.538601 -0.337892 0.434558\nv -0.171103 -0.209723 -0.676866\nv -0.169480 -0.223061 -0.671407\nv -0.169480 -0.223061 -0.671407\nv 0.375289 -0.469672 0.214746\nv 0.002482 -0.614090 -0.174941\nv 0.619794 -0.465170 0.057004\nv 0.374180 0.175504 1.025615\nv 0.369608 0.157626 1.020293\nv 0.227604 -0.782526 -0.229856\nv 0.653245 -0.311590 0.175766\nv 0.624622 -0.447250 0.083068\nv 0.624622 -0.447250 0.083068\nv -0.263041 -0.605486 0.045822\nv -0.236014 -0.611083 0.045822\nv 0.372837 0.192065 1.035365\nv 0.670395 -0.323122 0.223471\nv 0.670395 -0.323122 0.223471\nv 0.672839 -0.310321 0.215540\nv 0.672839 -0.310321 0.215540\nv 0.359496 0.180879 1.016487\nv 0.358296 0.195679 1.025200\nv 0.624590 -0.416010 0.036486\nv -0.350749 -0.568730 0.249920\nv -0.500446 0.470283 -0.276310\nv 0.240458 -0.458340 -0.536476\nv 0.276472 -0.472950 -0.528942\nv 0.649234 -0.422581 0.168914\nv 0.651965 -0.408932 0.199227\nv -0.445133 0.475839 -0.279053\nv -0.445133 0.475839 -0.279053\nv -0.361605 -0.607014 0.257233\nv 0.165611 0.219767 -0.570979\nv 0.165611 0.219767 -0.570979\nv 0.165611 0.219767 -0.570979\nv 0.320617 0.290867 -0.460319\nv 0.263325 -0.658724 -0.525324\nv 0.230460 -0.669629 -0.530032\nv -0.136905 0.175258 1.154497\nv -0.140659 0.171248 1.151927\nv -0.132470 0.154470 1.141097\nv -0.127405 0.152558 1.141589\nv -0.292903 -0.483347 0.070440\nv -0.310111 -0.509544 0.070440\nv 0.678261 -0.180752 0.263388\nv 0.375289 -0.598293 0.249920\nv 0.355713 -0.568730 0.249920\nv 0.439599 -0.624932 0.249920\nv 0.404852 -0.617870 0.249920\nv -0.574541 -0.521758 -0.056274\nv -0.607031 -0.483090 0.030941\nv -0.607031 -0.483090 0.030941\nv -0.560485 -0.440420 -0.026773\nv -0.302005 -0.500129 -0.531959\nv -0.319951 -0.534865 -0.525749\nv 0.715207 0.121507 0.070549\nv 0.720129 0.127151 0.064956\nv 0.659511 -0.333814 0.256441\nv 0.660427 -0.331270 0.238101\nv -0.236014 -0.469389 0.045822\nv -0.208987 -0.474986 0.045822\nv 0.723163 0.131085 0.064811\nv -0.294497 -0.622253 -0.511617\nv -0.283937 -0.636247 -0.512191\nv -0.489161 0.582158 0.854779\nv -0.378677 0.595115 0.972697\nv 0.455291 -0.825974 -0.050401\nv 0.463021 -0.779734 -0.044681\nv 0.298588 -0.134303 0.267764\nv 0.298250 -0.047065 0.267764\nv 0.298250 -0.047065 0.267764\nv -0.434635 -0.637264 0.257233\nv -0.474094 -0.629244 0.257233\nv -0.293633 -0.645113 -0.509722\nv -0.262635 -0.669530 -0.512899\nv -0.305595 -0.629260 -0.509071\nv 0.599783 -0.023362 -0.193899\nv 0.602801 -0.006990 -0.188270\nv 0.164051 0.224587 -0.571150\nv 0.319956 0.296643 -0.461998\nv -0.467583 0.482536 -0.287938\nv -0.440716 0.474681 -0.286983\nv -0.440716 0.474681 -0.286983\nv 0.646445 -0.402480 0.085004\nv 0.704396 0.124654 0.050547\nv 0.704396 0.124654 0.050547\nv 0.706629 0.128799 0.050910\nv -0.169861 -0.227507 -0.660224\nv -0.169861 -0.227507 -0.660224\nv 0.682015 -0.067581 0.312425\nv 0.682015 -0.067581 0.312425\nv 0.191395 -0.680683 -0.525078\nv 0.155381 -0.666074 -0.532612\nv 0.375289 -0.598294 0.214746\nv 0.355713 -0.568730 0.214746\nv -0.288579 -0.491868 -0.429224\nv -0.204027 -0.534496 -0.484079\nv -0.112209 0.160510 1.154692\nv -0.113937 0.155270 1.152130\nv -0.582039 0.051501 -0.146312\nv -0.545961 0.051501 -0.146780\nv 0.315075 -0.509544 0.051406\nv 0.321432 -0.540236 0.051406\nv 0.352000 0.206964 1.036495\nv 0.474346 -0.617869 0.249920\nv 0.577079 -0.024255 -0.192044\nv 0.579879 -0.012003 -0.186757\nv 0.579879 -0.012003 -0.186757\nv 0.315075 -0.570928 0.051406\nv -0.930027 0.103135 0.648332\nv -0.930027 0.103135 0.648332\nv -0.916624 0.117120 0.643349\nv 0.168376 -0.755323 -0.585248\nv 0.168376 -0.755323 -0.468300\nv 0.302858 0.195606 1.073071\nv 0.314933 0.206915 1.068503\nv 0.607166 0.019556 -0.179204\nv -0.444316 0.471834 -0.285421\nv -0.444316 0.471834 -0.285421\nv -0.424884 0.446631 -0.281054\nv -0.343246 -0.444142 -0.392617\nv -0.319739 -0.460350 -0.410307\nv -0.161076 -0.470417 -0.558985\nv -0.198307 -0.458063 -0.553651\nv -0.510857 0.342949 -0.224266\nv -0.488062 0.340260 -0.223465\nv 0.461557 -0.775969 -0.041609\nv 0.236496 -0.723328 0.262544\nv 0.236496 -0.723328 0.262544\nv -0.134646 0.175989 1.149296\nv 0.190340 -0.063949 -0.661924\nv 0.189046 -0.105910 -0.667317\nv -0.756788 0.422669 0.150406\nv -0.756788 0.422669 0.150406\nv -0.731578 0.427460 0.135354\nv -0.731578 0.427460 0.135354\nv -0.935204 0.103159 0.633961\nv -0.935204 0.103159 0.633961\nv -0.921782 0.117114 0.629132\nv 0.349282 -0.496572 0.205772\nv 0.370359 -0.464743 0.205772\nv 0.237581 -0.471378 -0.535808\nv 0.269371 -0.484274 -0.529157\nv 0.213730 -0.717855 0.245698\nv 0.213730 -0.717855 0.245698\nv -0.147697 -0.637803 -0.071073\nv -0.147697 -0.637803 -0.071073\nv 0.002482 -0.637804 -0.071073\nv -0.585601 -0.362724 -0.061728\nv -0.590129 -0.347484 -0.047732\nv -0.507666 -0.607013 0.282160\nv -0.598903 0.555149 0.684620\nv -0.548552 0.570438 0.772004\nv -0.666458 -0.326672 0.133880\nv -0.674297 -0.290027 0.153432\nv -0.276393 -0.457279 -0.416221\nv 0.402189 -0.443666 0.205772\nv 0.911185 -0.111570 0.602159\nv 0.911185 -0.111570 0.602159\nv 0.911875 -0.108144 0.603274\nv -0.165167 -0.540236 0.076025\nv -0.170764 -0.513209 0.076025\nv -0.147697 -0.560998 -0.144139\nv -0.236014 -0.616580 0.012081\nv -0.206890 -0.610549 0.012081\nv -0.933668 0.056259 0.519645\nv 0.694858 0.253407 -0.068510\nv 0.694858 0.253407 -0.068510\nv 0.683490 0.236612 -0.069121\nv -0.518522 -0.568730 0.289473\nv -0.498946 -0.598293 0.289473\nv 0.075107 -0.716815 -0.803719\nv -0.306327 -0.569360 0.012081\nv -0.289998 -0.594220 0.012081\nv 0.268005 -0.474986 0.076025\nv 0.291074 -0.490140 0.076024\nv 0.240978 -0.469389 0.076024\nv 0.896818 -0.110218 0.600840\nv -0.412861 -0.453414 -0.347631\nv -0.351408 -0.492850 -0.396467\nv 0.536489 0.003038 -0.255704\nv 0.512797 -0.032738 -0.307447\nv -0.117692 0.151261 1.149560\nv -0.273294 -0.473873 -0.539271\nv -0.165167 -0.540236 0.088373\nv -0.170764 -0.513209 0.088373\nv 0.248822 -0.614090 -0.174941\nv 0.896897 -0.112276 0.595398\nv 0.911329 -0.112971 0.597601\nv 0.911329 -0.112971 0.597601\nv 0.201485 -0.457140 -0.543323\nv -0.524952 -0.571393 0.210595\nv -0.503875 -0.603223 0.210595\nv -0.122922 0.149068 1.147358\nv -0.469382 -0.617869 0.289473\nv 0.290000 0.164817 1.068214\nv 0.294085 0.180793 1.072970\nv -0.577644 -0.202305 -0.248701\nv -0.638406 0.051188 -0.160799\nv -0.638406 0.051188 -0.160799\nv -0.167843 -0.228487 -0.660654\nv -0.167843 -0.228487 -0.660654\nv -0.532556 -0.533983 0.210595\nv 0.131408 0.865881 0.497991\nv 0.002481 0.876028 0.508826\nv 0.474346 -0.450096 0.249920\nv 0.439599 -0.443034 0.249920\nv -0.507437 0.451193 -0.279443\nv -0.513993 0.424329 -0.271950\nv 0.243250 -0.438618 -0.135113\nv 0.243250 -0.438618 -0.135113\nv 0.353445 0.745098 0.471346\nv 0.194601 0.795083 0.596094\nv 0.653926 -0.393220 0.231800\nv 0.652922 -0.371425 0.267430\nv 0.479058 -0.438722 0.257233\nv 0.439599 -0.430702 0.257233\nv 0.185423 0.852882 0.483733\nv -0.557983 -0.378699 -0.179627\nv -0.574941 -0.273319 -0.206482\nv 0.291200 0.150017 1.059501\nv 0.924365 -0.080377 0.548857\nv 0.912767 -0.110170 0.590417\nv -0.459990 -0.379841 -0.297389\nv -0.483195 -0.360914 -0.277014\nv -0.483195 -0.360914 -0.277014\nv -0.524952 -0.496572 0.210595\nv -0.438139 0.466842 -0.301010\nv -0.438139 0.466842 -0.301010\nv -0.438844 0.459653 -0.308530\nv -0.438844 0.459653 -0.308530\nv -0.314436 -0.478792 -0.412404\nv 0.323129 -0.533942 -0.515421\nv 0.668607 -0.330732 0.238157\nv 0.668065 -0.333219 0.256048\nv -0.512873 -0.501123 -0.139630\nv -0.497296 -0.499872 -0.127449\nv 0.639293 -0.386114 0.059440\nv 0.663741 -0.311184 0.108426\nv -0.418259 0.442596 -0.293363\nv -0.418259 0.442596 -0.293363\nv -0.409938 0.409128 -0.285161\nv -0.412914 -0.414755 -0.334580\nv 0.163863 -0.063980 -0.671566\nv 0.164475 -0.052778 -0.669008\nv -0.419917 0.449649 -0.282747\nv -0.419917 0.449649 -0.282747\nv -0.322349 -0.522565 -0.419736\nv -0.361340 -0.501696 -0.393908\nv 0.170131 -0.540236 0.008941\nv 0.175728 -0.513209 0.008941\nv 0.169087 -0.045467 -0.665640\nv 0.169087 -0.045467 -0.665640\nv 0.175880 -0.042783 -0.662483\nv 0.175880 -0.042783 -0.662483\nv -0.489509 0.469150 -0.305642\nv -0.485671 0.462311 -0.313863\nv -0.485671 0.462311 -0.313863\nv 0.927718 -0.070128 0.539703\nv 0.297496 0.138731 1.048206\nv 0.183037 -0.045466 -0.660562\nv 0.183037 -0.045466 -0.660562\nv -0.448539 -0.358776 -0.281243\nv -0.731818 0.238548 -0.086033\nv -0.710782 0.194932 -0.089323\nv 0.157167 -0.666997 -0.542941\nv 0.141647 -0.655166 -0.546683\nv -0.043851 -0.425811 -0.624959\nv 0.002482 -0.421358 -0.626284\nv 0.168032 0.121588 -0.611945\nv 0.161800 0.218257 -0.575289\nv 0.161800 0.218257 -0.575289\nv -0.522218 -0.506670 -0.145537\nv -0.522218 -0.506670 -0.145537\nv 0.282887 -0.352800 0.118118\nv 0.282887 -0.352800 0.118118\nv 0.282887 -0.352800 0.118118\nv 0.002482 -0.352800 0.118118\nv 0.344338 -0.494524 0.282160\nv 0.366569 -0.460952 0.282160\nv -0.634329 -0.386114 0.059440\nv -0.658777 -0.311184 0.108426\nv -0.172129 -0.221753 -0.660906\nv -0.620304 0.051189 -0.169065\nv -0.620304 0.051189 -0.169065\nv -0.561081 -0.198434 -0.254923\nv -0.564054 -0.574703 -0.155051\nv -0.534604 -0.540727 -0.143967\nv -0.534604 -0.540727 -0.143967\nv 0.479057 -0.629244 0.282160\nv 0.439599 -0.637264 0.282160\nv -0.678432 0.228542 -0.107815\nv -0.648504 0.185664 -0.113489\nv 0.570312 -0.134303 0.652757\nv 0.570312 -0.134303 0.652757\nv 0.570312 -0.134303 0.652757\nv 0.569668 -0.047065 0.665721\nv 0.569668 -0.047065 0.665721\nv 0.631159 -0.426390 0.098222\nv -0.503875 -0.464743 0.210595\nv 0.400140 -0.629244 0.282160\nv -0.641134 -0.293246 0.361526\nv -0.635314 -0.236862 0.419994\nv 0.171510 0.060378 -0.633517\nv -0.578146 -0.258196 -0.205455\nv 0.154803 -0.237498 -0.667579\nv 0.154803 -0.237498 -0.667579\nv 0.149169 -0.237497 -0.652098\nv 0.336318 -0.533983 0.257233\nv 0.344338 -0.494525 0.257233\nv -0.200001 -0.471242 -0.552180\nv -0.234403 -0.472302 -0.546137\nv -0.182030 -0.486253 0.015824\nv -0.206890 -0.469924 0.015824\nv 0.171470 0.060130 -0.630237\nv 0.168017 0.121245 -0.608690\nv 0.376140 0.217648 1.045780\nv 0.360448 0.226816 1.064097\nv 0.274183 -0.429187 0.118118\nv -0.160419 -0.210253 -0.671763\nv -0.161145 -0.225297 -0.667625\nv 0.179211 -0.223447 -0.659611\nv 0.175816 -0.230365 -0.658951\nv 0.175816 -0.230365 -0.658951\nv -0.420768 0.650640 0.824802\nv -0.402681 0.655256 0.839318\nv -0.402681 0.655256 0.839318\nv 0.371560 -0.755521 -0.110916\nv 0.371560 -0.755521 -0.110916\nv 0.378551 -0.757201 -0.105743\nv 0.378551 -0.757201 -0.105743\nv -0.855810 0.055785 0.735503\nv -0.848463 0.043840 0.741390\nv -0.605126 -0.296460 -0.022046\nv 0.533460 -0.533795 -0.135113\nv 0.416657 -0.533795 -0.135113\nv 0.182218 -0.209289 -0.662092\nv -0.378251 0.641466 0.838418\nv -0.532563 -0.513576 -0.150526\nv -0.532563 -0.513576 -0.150526\nv 0.336318 -0.533983 0.282160\nv -0.263041 -0.474986 0.076025\nv -0.286111 -0.490140 0.076024\nv 0.365792 0.204693 1.048004\nv 0.354075 0.211538 1.061679\nv -0.114121 0.158127 1.147180\nv -0.117476 0.154543 1.144884\nv 0.170131 -0.540236 0.018964\nv 0.175728 -0.513209 0.018964\nv 0.286780 -0.252166 0.267764\nv 0.286780 -0.252166 0.267764\nv 0.286780 -0.252166 0.267764\nv 0.002482 -0.252166 0.267764\nv 0.475334 -0.614090 -0.174941\nv 0.475334 -0.614090 -0.174941\nv 0.542651 -0.614090 -0.174941\nv 0.187762 -0.163242 -0.667272\nv -0.301264 -0.513209 0.076025\nv -0.122150 0.152584 1.142916\nv -0.161913 -0.209270 -0.667680\nv -0.162361 -0.223442 -0.663938\nv -0.550715 -0.649554 -0.143382\nv -0.562337 -0.636404 -0.149737\nv 0.474346 -0.450096 0.214746\nv 0.503910 -0.469672 0.214746\nv -0.715851 0.335555 -0.111613\nv -0.724438 0.290432 -0.099208\nv 0.523736 -0.429187 0.118118\nv 0.523736 -0.429187 0.118118\nv 0.523736 -0.429187 0.118118\nv 0.464701 -0.508297 -0.039827\nv 0.464701 -0.508297 -0.039827\nv 0.172412 -0.232015 -0.659663\nv 0.172412 -0.232015 -0.659663\nv 0.320586 0.217575 1.093751\nv 0.302490 0.200626 1.100599\nv 0.293543 -0.491868 -0.429224\nv 0.319400 -0.478792 -0.412404\nv -0.095240 -0.439148 -0.619660\nv 0.503910 -0.469672 0.249920\nv 0.523486 -0.499236 0.249920\nv -0.088141 -0.590871 -0.695460\nv -0.063895 -0.579584 -0.699547\nv -0.165701 -0.511112 0.015824\nv -0.512173 0.341186 -0.242930\nv -0.484187 0.337999 -0.240875\nv -0.646480 0.052940 -0.100549\nv -0.646480 0.052940 -0.100549\nv -0.643243 0.051501 -0.102032\nv -0.643243 0.051501 -0.102032\nv 0.331053 0.121514 1.034882\nv 0.346280 0.128395 1.025292\nv -0.567835 -0.618346 -0.153238\nv 0.405947 0.720849 0.312740\nv 0.436300 0.685472 0.258341\nv -0.236014 -0.459783 0.051406\nv -0.205322 -0.466139 0.051406\nv -0.309682 -0.590903 -0.544769\nv -0.308957 -0.592420 -0.553020\nv -0.308957 -0.592420 -0.553020\nv 0.366568 -0.607013 0.282160\nv 0.344338 -0.573441 0.282160\nv 0.193048 -0.063169 -0.660740\nv 0.191756 -0.106131 -0.666348\nv 0.530548 -0.533983 0.249920\nv -0.526929 0.630882 0.676381\nv -0.544356 0.625924 0.639558\nv -0.736218 0.472152 0.321511\nv -0.736218 0.472152 0.321511\nv -0.744214 0.472100 0.327619\nv -0.744214 0.472100 0.327619\nv 0.316518 0.121495 1.047434\nv 0.722069 0.427987 0.037663\nv 0.735344 0.367660 0.043203\nv -0.464447 -0.085816 -0.384170\nv -0.443920 -0.105277 -0.412282\nv 0.169002 -0.233304 -0.664294\nv 0.169002 -0.233304 -0.664294\nv 0.166109 -0.225297 -0.667625\nv 0.169376 -0.230365 -0.661296\nv 0.169376 -0.230365 -0.661296\nv 0.333985 0.783454 0.402533\nv -0.316468 -0.540236 0.070440\nv -0.310111 -0.570928 0.070440\nv -0.729347 0.485103 0.384644\nv -0.684887 0.515690 0.518772\nv 0.208991 -0.534496 -0.484079\nv 0.284573 -0.254285 0.182936\nv 0.284573 -0.254285 0.182936\nv 0.213951 -0.474986 0.076025\nv 0.167325 -0.223442 -0.663938\nv -0.284888 -0.540984 -0.442694\nv -0.705554 -0.035130 0.259966\nv -0.707760 0.037702 0.288786\nv 0.002482 -0.365713 -0.626403\nv 0.050986 -0.369229 -0.625394\nv -0.386266 -0.433603 -0.354869\nv -0.386266 -0.433603 -0.354869\nv -0.386266 -0.433603 -0.354869\nv -0.347229 -0.431203 -0.363054\nv 0.106434 -0.380551 -0.621699\nv 0.106434 -0.380551 -0.621699\nv 0.114367 0.152559 1.152165\nv 0.112052 0.159578 1.155596\nv -0.689800 0.245337 -0.105835\nv -0.689800 0.245337 -0.105835\nv -0.236014 -0.459783 0.070440\nv -0.205322 -0.466139 0.070440\nv 0.298597 -0.645113 -0.509722\nv 0.267598 -0.669530 -0.512899\nv 0.494608 -0.057128 -0.342718\nv 0.173235 -0.235547 -0.662014\nv 0.173235 -0.235547 -0.662014\nv -0.105486 -0.347068 -0.628377\nv -0.109809 -0.334324 -0.630954\nv -0.109809 -0.334324 -0.630954\nv 0.523486 -0.499236 0.214746\nv -0.817648 -0.084311 0.736578\nv -0.719601 0.485601 0.379787\nv -0.536755 -0.662443 -0.135003\nv -0.554742 -0.655661 -0.144761\nv 0.299461 -0.622253 -0.511617\nv 0.288901 -0.636247 -0.512191\nv -0.277057 -0.629365 -0.395040\nv -0.243170 -0.642582 -0.421435\nv -0.667473 -0.274843 0.127588\nv 0.348210 -0.444142 -0.392617\nv 0.373493 -0.430949 -0.372683\nv 0.373493 -0.430949 -0.372683\nv 0.373493 -0.430949 -0.372683\nv 0.274212 -0.475537 -0.418119\nv 0.297756 0.140969 1.073748\nv 0.304801 0.128341 1.061109\nv 0.218076 -0.533795 -0.135113\nv 0.328892 0.779383 0.396856\nv 0.183013 0.847958 0.475985\nv -0.292903 -0.597125 0.070440\nv -0.266706 -0.614333 0.070440\nv -0.895480 0.105007 0.428079\nv -0.895480 0.105007 0.428079\nv -0.895480 0.105007 0.428079\nv -0.588417 -0.049747 -0.203115\nv -0.528858 -0.262086 -0.276595\nv -0.528858 -0.262086 -0.276595\nv -0.690435 -0.143947 0.183206\nv -0.559162 -0.262833 -0.268519\nv -0.533871 -0.655463 -0.134618\nv -0.594819 -0.023362 -0.193899\nv -0.597837 -0.006991 -0.188270\nv 0.178236 -0.064477 -0.655983\nv 0.174894 0.063827 -0.623877\nv 0.171484 0.124216 -0.602232\nv 0.171484 0.124216 -0.602232\nv 0.171484 0.124216 -0.602232\nv -0.493264 0.477550 -0.286637\nv -0.493264 0.477550 -0.286637\nv 0.167475 -0.042593 -0.665464\nv 0.175631 -0.039365 -0.661647\nv 0.133401 -0.633914 -0.679811\nv 0.133644 -0.577225 -0.681784\nv -0.655325 0.031597 -0.050788\nv -0.646559 0.033291 -0.103813\nv -0.646559 0.033291 -0.103813\nv -0.646559 0.033291 -0.103813\nv 0.281357 -0.457279 -0.416221\nv 0.324703 -0.460350 -0.410307\nv -0.421299 -0.124694 -0.440425\nv 0.530548 -0.533983 0.214746\nv -0.182031 -0.594220 0.015824\nv -0.165702 -0.569361 0.015824\nv -0.668206 0.027140 0.105426\nv -0.668206 0.027140 0.105426\nv -0.668206 0.027140 0.105426\nv -0.666148 0.028522 0.053831\nv -0.370325 -0.469672 0.201620\nv -0.350749 -0.499236 0.201620\nv -0.549524 0.566687 0.773258\nv -0.490166 0.578441 0.856106\nv 0.311039 -0.524260 -0.415301\nv 0.222173 -0.567598 -0.469272\nv 0.222173 -0.567598 -0.469272\nv -0.636778 0.028623 0.108768\nv 0.380570 -0.799599 -0.108471\nv 0.378551 -0.809899 -0.105743\nv 0.378551 -0.809899 -0.105743\nv 0.166933 -0.038214 -0.668296\nv 0.176489 -0.034474 -0.663789\nv 0.174825 -0.227507 -0.660224\nv 0.174825 -0.227507 -0.660224\nv 0.172807 -0.228487 -0.660654\nv 0.172807 -0.228487 -0.660654\nv -0.518522 -0.568730 0.249920\nv -0.498946 -0.598293 0.249920\nv 0.355713 -0.568730 0.289473\nv 0.348650 -0.533983 0.289473\nv -0.696054 -0.157209 0.211150\nv 0.163444 -0.244367 -0.647747\nv 0.742836 0.306285 0.037165\nv 0.749202 0.240942 0.039235\nv -0.567188 -0.001835 -0.183123\nv -0.556451 -0.001832 -0.206820\nv 0.534860 -0.573442 0.282160\nv 0.512630 -0.607013 0.282160\nv 0.103348 -0.376047 -0.582424\nv -0.350749 -0.499236 0.214746\nv -0.370325 -0.469672 0.214746\nv 0.173394 -0.139949 -0.668101\nv 0.151907 -0.375849 0.286188\nv 0.129705 -0.389612 0.286190\nv -0.542472 -0.001836 -0.233547\nv -0.542472 -0.001836 -0.233547\nv 0.186599 -0.038214 -0.661138\nv -0.525584 -0.533983 0.249920\nv 0.523486 -0.568730 0.289473\nv 0.503910 -0.598293 0.289473\nv 0.184240 -0.042593 -0.659362\nv 0.240978 -0.611084 0.008941\nv 0.213951 -0.605486 0.008941\nv 0.311291 -0.511112 0.012081\nv 0.317322 -0.540236 0.012081\nv 0.542880 -0.533983 0.282160\nv -0.701116 -0.018796 0.233419\nv 0.339540 0.211519 1.074231\nv 0.324313 0.204639 1.083821\nv -0.533981 -0.540876 -0.128114\nv -0.533981 -0.540876 -0.128114\nv -0.532170 -0.513488 -0.134864\nv -0.532170 -0.513488 -0.134864\nv 0.474346 -0.617869 0.289473\nv 0.543565 -0.337892 0.434558\nv -0.599814 0.551366 0.685821\nv 0.230367 -0.681884 -0.518232\nv 0.534115 0.345222 -0.224533\nv 0.534115 0.345222 -0.224533\nv 0.547747 0.347672 -0.221753\nv 0.311291 -0.511112 0.015824\nv 0.317322 -0.540236 0.015824\nv 0.194387 -0.047801 -0.660678\nv 0.196977 -0.061604 -0.662742\nv -0.563906 -0.012008 -0.210790\nv -0.574915 -0.012003 -0.186757\nv -0.574915 -0.012003 -0.186757\nv -0.159511 -0.052778 -0.669008\nv -0.158899 -0.063980 -0.671566\nv 0.103995 -0.394236 0.286195\nv 0.190860 -0.050965 -0.658947\nv -0.398759 -0.206216 -0.458003\nv -0.410655 -0.166275 -0.458515\nv -0.410655 -0.166275 -0.458515\nv -0.818593 -0.097843 0.729606\nv -0.564385 -0.575295 -0.139410\nv 0.119396 0.147189 1.148722\nv 0.706080 -0.018796 0.233419\nv 0.709074 0.057310 0.263812\nv -0.609972 -0.280158 -0.015409\nv 0.228673 -0.668705 -0.519704\nv 0.194271 -0.667645 -0.525747\nv 0.615618 0.051501 -0.145583\nv 0.635051 0.051501 -0.142177\nv -0.870919 -0.175921 0.611196\nv -0.870919 -0.175921 0.611196\nv -0.865966 -0.175986 0.624832\nv -0.865966 -0.175986 0.624832\nv -0.573690 -0.616753 -0.141706\nv -0.572275 -0.596009 -0.141999\nv -0.316468 -0.540236 0.051406\nv -0.310111 -0.570928 0.051406\nv -0.739672 0.471982 0.303021\nv -0.719427 0.489262 0.376610\nv 0.294962 -0.486253 0.012081\nv 0.587003 0.051501 -0.146312\nv 0.632269 -0.443407 0.101328\nv 0.506428 -0.083208 -0.337389\nv 0.527411 -0.053757 -0.294747\nv -0.278078 -0.498172 0.104388\nv -0.290802 -0.517542 0.104388\nv -0.252204 -0.346985 -0.519684\nv -0.252204 -0.346985 -0.519684\nv -0.159403 -0.346975 -0.611316\nv 0.544973 -0.538627 -0.132251\nv 0.544973 -0.538627 -0.132251\nv -0.183260 -0.106617 -0.682131\nv 0.399646 0.717661 0.308626\nv 0.429517 0.682785 0.255059\nv -0.263568 0.459377 1.126592\nv -0.498946 -0.598293 0.214746\nv -0.469382 -0.617870 0.214747\nv -0.182458 -0.163189 -0.677788\nv -0.186053 -0.106087 -0.677000\nv -0.181394 -0.049506 -0.670135\nv -0.181394 -0.049506 -0.670135\nv -0.184968 -0.054615 -0.668702\nv -0.124717 0.177974 1.152590\nv -0.129971 0.177948 1.151263\nv -0.743413 0.424696 0.336073\nv -0.747727 0.376165 0.352255\nv -0.747727 0.376165 0.352255\nv -0.186871 -0.063368 -0.671156\nv -0.529104 -0.020889 -0.261097\nv -0.512694 -0.044274 -0.294911\nv -0.119651 0.176062 1.153082\nv -0.167622 -0.049510 -0.675148\nv -0.167622 -0.049510 -0.675148\nv 0.672437 -0.274843 0.127588\nv -0.259110 -0.583585 -0.598064\nv -0.254274 -0.595394 -0.597844\nv 0.208719 0.006998 1.001420\nv 0.104955 0.006995 1.050134\nv -0.205322 -0.614333 0.070440\nv -0.179124 -0.597125 0.070440\nv -0.255203 0.580997 1.075587\nv 0.106224 -0.612245 -0.692354\nv 0.106285 -0.616894 -0.692250\nv 0.106285 -0.616894 -0.692250\nv 0.740451 0.193753 0.025078\nv 0.761408 0.241027 0.039082\nv 0.761408 0.241027 0.039082\nv 0.695399 -0.143947 0.183206\nv -0.356590 -0.238437 -0.476766\nv -0.174424 -0.047204 -0.672308\nv -0.174424 -0.047204 -0.672308\nv 0.130248 0.182304 1.160272\nv 0.138123 0.182266 1.158283\nv 0.701018 -0.157209 0.211149\nv 0.710518 -0.035130 0.259966\nv -0.399888 -0.617870 0.214746\nv -0.370325 -0.598294 0.214746\nv -0.434635 -0.624932 0.249920\nv -0.399888 -0.617870 0.249920\nv 0.439599 -0.624932 0.289473\nv 0.366569 -0.460952 0.257233\nv 0.305183 -0.499206 -0.521630\nv 0.400141 -0.438722 0.282160\nv -0.350749 -0.568730 0.214746\nv 0.289341 0.178425 1.100447\nv 0.379941 -0.161277 -0.480145\nv 0.467147 -0.106785 -0.364351\nv -0.185896 -0.050965 -0.658947\nv -0.188085 -0.063169 -0.660740\nv -0.128263 -0.797231 -0.675932\nv -0.128263 -0.797231 -0.675932\nv -0.128263 -0.797231 -0.675932\nv -0.147854 -0.755323 -0.594698\nv 0.122656 0.179439 1.161010\nv -0.172599 -0.794624 0.197827\nv -0.172599 -0.794624 0.197827\nv -0.162506 -0.794624 0.211467\nv -0.162506 -0.794624 0.211467\nv -0.537733 -0.008591 -0.243315\nv -0.170916 -0.042783 -0.662483\nv -0.170916 -0.042783 -0.662483\nv 0.909820 -0.084386 0.496777\nv 0.906077 -0.098000 0.502844\nv 0.572152 -0.001835 -0.183123\nv 0.561415 -0.001832 -0.206820\nv 0.310559 -0.629260 -0.509071\nv -0.434635 -0.631903 0.205772\nv -0.472046 -0.624300 0.205772\nv 0.103489 -0.604236 -0.693101\nv -0.266706 -0.466139 0.070440\nv -0.384260 -0.203912 -0.463952\nv -0.384260 -0.203912 -0.463952\nv 0.439970 -0.758205 -0.060048\nv 0.446026 -0.763303 -0.068232\nv 0.446026 -0.763303 -0.068232\nv 0.712724 0.037703 0.288786\nv -0.483440 -0.773451 0.523464\nv -0.531048 0.675953 0.099771\nv -0.514700 0.678366 0.062712\nv -0.514700 0.678366 0.062712\nv 0.359791 0.141050 1.020180\nv -0.101580 -0.813241 -0.690335\nv -0.655463 -0.331270 0.238101\nv -0.657375 -0.323396 0.223078\nv -0.657375 -0.323396 0.223078\nv -0.186793 -0.106131 -0.666348\nv 0.312705 -0.589916 -0.512218\nv 0.118533 0.214106 -0.587672\nv 0.002481 0.213354 -0.600429\nv -0.527686 -0.504054 -0.133993\nv -0.527686 -0.504054 -0.133993\nv -0.182798 -0.163242 -0.667272\nv -0.177254 -0.209289 -0.662092\nv -0.301355 -0.319076 -0.503644\nv -0.369369 -0.244073 -0.472590\nv -0.518518 -0.498433 -0.128213\nv 0.652353 0.052336 -0.092682\nv 0.651444 0.052940 -0.100549\nv 0.651444 0.052940 -0.100549\nv 0.936727 0.044322 0.510562\nv -0.177216 -0.208743 -0.672202\nv -0.537916 -0.533983 0.257233\nv -0.529896 -0.573442 0.257233\nv -0.176112 -0.209733 -0.675041\nv -0.180825 -0.163705 -0.682405\nv -0.507666 -0.460952 0.282160\nv -0.529896 -0.494524 0.282160\nv 0.048398 -0.840304 -0.443603\nv 0.048398 -0.840304 -0.443603\nv 0.048398 -0.767725 -0.443602\nv 0.048398 -0.767725 -0.443602\nv 0.314983 -0.572563 -0.513376\nv -0.647157 -0.212093 0.376529\nv -0.647157 -0.212093 0.376529\nv -0.670715 -0.069532 0.368702\nv -0.670715 -0.069532 0.368702\nv -0.474094 -0.629244 0.282160\nv -0.434635 -0.637264 0.282160\nv -0.170764 -0.567264 0.008941\nv -0.165167 -0.540236 0.008941\nv 0.382798 -0.744463 -0.102354\nv 0.156558 -0.681718 0.203392\nv 0.156558 -0.681718 0.203392\nv 0.127695 -0.836911 -0.443603\nv 0.127695 -0.836911 -0.443603\nv -0.167448 -0.232015 -0.659663\nv -0.167448 -0.232015 -0.659663\nv -0.164412 -0.230365 -0.661296\nv -0.164412 -0.230365 -0.661296\nv 0.600647 -0.031905 -0.178361\nv 0.604190 -0.012523 -0.171996\nv 0.152661 -0.744039 -0.545404\nv 0.149388 -0.896598 -0.545404\nv 0.149388 -0.896598 -0.545404\nv -0.704110 0.057309 0.263812\nv 0.225604 -0.527225 -0.630050\nv 0.243173 -0.527766 -0.626963\nv -0.293287 -0.047065 0.267764\nv -0.293287 -0.047065 0.267764\nv -0.564704 -0.047065 0.665721\nv -0.564704 -0.047065 0.665721\nv -0.168271 -0.235547 -0.662014\nv -0.168271 -0.235547 -0.662014\nv 0.002482 -0.047065 0.267764\nv 0.297867 -0.597125 0.070440\nv 0.271670 -0.614333 0.070440\nv -0.766681 0.362456 0.161144\nv -0.766681 0.362456 0.161144\nv -0.745159 0.345026 0.149386\nv -0.745159 0.345026 0.149386\nv 0.671112 0.028522 0.053831\nv 0.660289 0.031598 -0.050788\nv -0.170852 -0.230365 -0.658951\nv -0.170852 -0.230365 -0.658951\nv -0.492201 0.678580 0.053504\nv 0.485273 -0.403266 -0.263367\nv 0.508246 -0.381199 -0.234704\nv 0.508246 -0.381199 -0.234704\nv 0.568667 0.047538 0.691662\nv 0.568667 0.047538 0.691662\nv 0.297726 0.088653 0.732335\nv -0.197854 -0.728513 0.237623\nv -0.197854 -0.728513 0.237623\nv -0.207947 -0.728513 0.223983\nv -0.207947 -0.728513 0.223983\nv 0.549537 0.679238 0.206603\nv 0.549537 0.679238 0.206603\nv -0.364198 -0.563159 0.326707\nv -0.358268 -0.533983 0.326707\nv 0.651014 0.047538 0.691662\nv -0.572144 0.625463 0.561011\nv -0.554899 0.624323 0.613433\nv -0.180101 -0.163017 -0.668277\nv -0.184082 -0.105910 -0.667317\nv 0.548492 0.651244 0.105701\nv -0.292762 0.088653 0.732335\nv -0.292762 0.088653 0.732335\nv 0.226660 -0.535163 -0.629387\nv 0.212499 -0.539862 -0.631415\nv -0.174682 -0.208412 -0.663283\nv -0.186415 -0.591431 -0.630456\nv -0.184508 -0.576588 -0.632113\nv 0.194846 -0.543801 -0.633886\nv 0.185366 -0.558919 -0.634173\nv -0.563125 0.067919 0.719005\nv -0.174247 -0.223447 -0.659611\nv 0.259408 -0.534352 -0.623567\nv -0.185376 -0.063949 -0.661924\nv 0.355713 -0.499236 0.201620\nv 0.348650 -0.533983 0.201620\nv -0.263041 -0.474986 0.008941\nv -0.236014 -0.469389 0.008941\nv 0.208820 -0.532794 -0.632453\nv 0.541308 0.673463 0.151684\nv -0.383247 0.691044 0.814913\nv -0.389362 0.667354 0.839935\nv -0.389362 0.667354 0.839935\nv -0.098384 -0.376047 -0.582424\nv -0.101470 -0.380551 -0.621699\nv -0.101470 -0.380551 -0.621699\nv 0.744809 0.058670 0.267731\nv 0.664120 0.079250 0.238365\nv 0.679386 -0.452796 0.219410\nv -0.554359 0.055549 -0.217395\nv -0.546013 0.057339 -0.215159\nv 0.404852 -0.450096 0.201620\nv 0.375289 -0.469672 0.201620\nv 0.152527 -0.466373 -0.608811\nv 0.100203 -0.439148 -0.619660\nv 0.241483 -0.535620 -0.626783\nv 0.255180 -0.541176 -0.623918\nv -0.185918 -0.590333 0.008941\nv -0.162506 -0.717768 0.211467\nv -0.162506 -0.717768 0.211467\nv 0.515819 0.342949 -0.224266\nv 0.493024 0.340260 -0.223465\nv 0.654051 -0.171171 -0.029940\nv 0.614659 -0.236847 -0.052532\nv -0.474094 -0.438722 0.282160\nv 0.686362 -0.040777 0.017690\nv -0.756002 0.397907 0.192953\nv -0.760367 0.368554 0.198023\nv -0.760367 0.368554 0.198023\nv 0.306228 -0.513209 0.076025\nv 0.311825 -0.540236 0.076025\nv -0.246841 -0.615943 -0.617816\nv -0.232681 -0.620642 -0.619844\nv 0.183787 -0.593918 -0.631317\nv 0.191876 -0.609577 -0.628518\nv -0.146091 -0.107323 -0.685086\nv -0.141824 -0.056863 -0.679682\nv 0.114759 -0.542832 -0.689062\nv 0.130009 -0.563599 -0.683641\nv 0.490932 0.339276 -0.231212\nv 0.518955 0.342456 -0.233355\nv 0.271670 -0.466139 0.051406\nv 0.297867 -0.483347 0.051406\nv 0.523486 -0.568730 0.201620\nv 0.530548 -0.533983 0.201620\nv -0.395187 0.660364 0.841632\nv -0.395187 0.660364 0.841632\nv 0.240978 -0.459783 0.051406\nv 0.291074 -0.490140 0.045822\nv 0.268005 -0.474986 0.045822\nv 0.605931 -0.339212 -0.054587\nv 0.605931 -0.339212 -0.054587\nv 0.619541 -0.292602 -0.030815\nv 0.152661 -0.690612 -0.071073\nv 0.152661 -0.637803 -0.071073\nv 0.152661 -0.637803 -0.071073\nv 0.493599 -0.587982 0.326707\nv 0.468775 -0.604420 0.326707\nv 0.181526 -0.576324 -0.633281\nv 0.497163 0.678580 0.053504\nv 0.519662 0.678366 0.062712\nv 0.519662 0.678366 0.062712\nv 0.595093 -0.347484 -0.047732\nv 0.610090 -0.296460 -0.022046\nv -0.148368 -0.164392 -0.683522\nv 0.352197 -0.660055 -0.422498\nv 0.338923 -0.665652 -0.404642\nv -0.399888 -0.450096 0.305645\nv -0.370325 -0.469672 0.305645\nv -0.498946 -0.469672 0.249920\nv -0.518522 -0.499236 0.249920\nv 0.439599 -0.610350 0.326707\nv 0.673170 0.027140 0.105426\nv 0.673170 0.027140 0.105426\nv 0.673170 0.027140 0.105426\nv -0.285280 0.456137 1.125094\nv -0.285280 0.456137 1.125094\nv -0.277035 0.449976 1.120593\nv -0.277035 0.449976 1.120593\nv -0.563703 0.047538 0.691662\nv -0.536346 0.673463 0.151684\nv -0.544575 0.679238 0.206603\nv -0.544575 0.679238 0.206603\nv 0.297423 0.067919 0.956030\nv 0.503910 -0.598293 0.201620\nv -0.646051 0.047538 0.691662\nv 0.227604 -0.710802 -0.229856\nv 0.373134 -0.745782 -0.122170\nv 0.373134 -0.745782 -0.122170\nv -0.536808 0.053911 -0.252966\nv -0.529724 0.052393 -0.251068\nv 0.037766 -0.508739 -0.700177\nv 0.002482 -0.507199 -0.701308\nv 0.614936 -0.280158 -0.015409\nv -0.546823 0.057487 -0.252015\nv -0.537703 0.059443 -0.249571\nv -0.109795 -0.542832 -0.689062\nv -0.125045 -0.563599 -0.683641\nv -0.469382 -0.450096 0.249920\nv -0.350749 -0.499236 0.305645\nv -0.542016 0.345635 -0.235499\nv -0.542016 0.345635 -0.235499\nv -0.549146 0.349619 -0.214559\nv -0.549146 0.349619 -0.214559\nv -0.549146 0.349619 -0.214559\nv 0.184089 -0.483347 0.051406\nv 0.166881 -0.509544 0.051406\nv -0.518522 -0.499236 0.214747\nv -0.525584 -0.533983 0.214746\nv 0.336893 -0.675160 -0.411097\nv 0.320707 -0.677556 -0.389401\nv -0.074207 -0.520610 -0.695879\nv 0.175728 -0.513209 0.045822\nv 0.170131 -0.540236 0.045822\nv -0.390050 0.453184 1.047622\nv 0.475034 0.673270 0.089058\nv -0.434635 -0.443034 0.249920\nv -0.289998 -0.486253 0.012081\nv -0.306327 -0.511112 0.012081\nv -0.343686 -0.533983 0.305645\nv -0.350749 -0.568730 0.305645\nv -0.543892 0.052393 -0.254864\nv -0.343686 -0.533983 0.289473\nv -0.350749 -0.568730 0.289473\nv -0.384672 0.447204 1.040597\nv -0.286111 -0.490140 0.008941\nv -0.301264 -0.513209 0.008941\nv 0.160524 -0.540237 0.051406\nv 0.683382 -0.009454 -0.051059\nv 0.691994 -0.017629 0.005867\nv -0.648281 -0.311590 0.175766\nv -0.642997 -0.334801 0.161707\nv -0.339374 -0.494524 0.282160\nv -0.361605 -0.460952 0.282160\nv -0.542813 -0.252166 0.535197\nv -0.542813 -0.252166 0.535197\nv -0.542813 -0.252166 0.535197\nv -0.281816 -0.252166 0.267764\nv -0.281816 -0.252166 0.267764\nv -0.281816 -0.252166 0.267764\nv -0.293624 -0.134303 0.267764\nv 0.534688 0.052393 -0.251068\nv 0.527604 0.049355 -0.249170\nv -0.553908 0.042022 -0.257548\nv -0.549937 0.048281 -0.256484\nv -0.554610 0.052192 -0.254101\nv 0.715971 0.485869 0.020289\nv 0.715971 0.485869 0.020289\nv 0.645938 0.532491 -0.013948\nv -0.058951 -0.283109 0.290990\nv -0.045433 -0.302555 0.290990\nv 0.370359 -0.603223 0.205771\nv 0.402189 -0.624300 0.205772\nv 0.733735 0.424826 0.028218\nv -0.499915 0.440308 0.918899\nv 0.221055 -0.627999 -0.621825\nv 0.204820 -0.621413 -0.625221\nv 0.170665 -0.511112 0.015824\nv 0.186994 -0.486253 0.015824\nv -0.079080 -0.270631 0.290990\nv -0.567708 0.638561 0.544687\nv -0.567708 0.638561 0.544687\nv -0.561891 0.644526 0.549730\nv -0.102389 -0.266439 0.290990\nv -0.528496 -0.533795 -0.135113\nv -0.411693 -0.533795 -0.135113\nv -0.687758 0.294200 -0.117110\nv -0.680795 0.332468 -0.127933\nv -0.265139 -0.469924 0.012081\nv -0.573439 0.628351 0.549916\nv -0.573439 0.628351 0.549916\nv -0.556014 0.614728 0.533738\nv -0.469382 -0.450096 0.201620\nv -0.434635 -0.443034 0.201620\nv 0.176732 -0.136426 -0.661865\nv 0.166828 -0.240957 -0.641909\nv -0.565348 -0.134303 0.652757\nv -0.565348 -0.134303 0.652757\nv -0.565348 -0.134303 0.652757\nv -0.236014 -0.463892 0.012081\nv 0.157010 -0.309637 -0.610911\nv -0.647961 -0.134303 0.665721\nv 0.179433 -0.138342 -0.668420\nv 0.169500 -0.243529 -0.648392\nv 0.541719 -0.662443 -0.135003\nv 0.559706 -0.655661 -0.144761\nv -0.549298 0.628828 0.524896\nv 0.174444 -0.223061 -0.671407\nv 0.174444 -0.223061 -0.671407\nv 0.176481 -0.223963 -0.670619\nv 0.176481 -0.223963 -0.670619\nv 0.173414 -0.208724 -0.675396\nv -0.339374 -0.494525 0.257233\nv -0.361605 -0.460952 0.257233\nv 0.285017 0.132299 1.080260\nv 0.283218 0.154480 1.093319\nv 0.839134 -0.058228 0.381666\nv 0.493599 -0.479983 0.326707\nv 0.510036 -0.504807 0.326707\nv -0.696328 0.407376 0.562173\nv -0.740143 0.388923 0.418444\nv 0.182462 -0.164046 -0.685395\nv 0.210286 -0.466139 0.051406\nv 0.170665 -0.511112 0.012081\nv 0.186994 -0.486253 0.012081\nv 0.515966 -0.533983 0.326707\nv -0.361358 0.724403 0.355586\nv -0.055620 -0.829487 -0.773833\nv -0.070232 -0.829487 -0.771777\nv -0.070232 -0.829487 -0.771777\nv 0.690280 -0.020669 0.025266\nv 0.690280 -0.020669 0.025266\nv 0.294453 0.115386 1.063333\nv -0.569153 0.439096 0.837224\nv -0.507095 0.446028 0.924358\nv 0.147516 -0.382071 -0.571660\nv -0.577495 -0.377968 -0.084248\nv 0.521171 -0.665127 -0.124163\nv 0.176067 -0.209723 -0.676866\nv -0.755165 0.380796 0.356845\nv -0.755165 0.380796 0.356845\nv -0.370325 -0.598293 0.305645\nv -0.574522 -0.387730 -0.139365\nv -0.589216 -0.367691 -0.087639\nv -0.589216 -0.367691 -0.087639\nv -0.395177 -0.438722 0.257233\nv -0.674422 -0.452796 0.219410\nv -0.570343 -0.385117 -0.160324\nv -0.556242 -0.396288 -0.165068\nv -0.556242 -0.396288 -0.165068\nv -0.561153 -0.399182 -0.141744\nv -0.183567 -0.052770 -0.660251\nv -0.178073 -0.045466 -0.660562\nv -0.178073 -0.045466 -0.660562\nv -0.125446 -0.271849 0.290990\nv 0.853180 -0.071092 0.400911\nv 0.853180 -0.071092 0.400911\nv 0.850265 -0.054028 0.384374\nv -0.530281 -0.397877 -0.164806\nv -0.185946 -0.237497 -0.654438\nv -0.185946 -0.237497 -0.654438\nv -0.176924 -0.247094 -0.654728\nv -0.176924 -0.247094 -0.654728\nv 0.171846 -0.106117 -0.683982\nv 0.173791 -0.163173 -0.682753\nv -0.633510 0.164180 -0.117022\nv -0.633510 0.164180 -0.117022\nv -0.633605 0.172251 -0.071965\nv -0.633605 0.172251 -0.071965\nv -0.163827 -0.149945 0.500006\nv -0.182225 -0.179626 0.499997\nv 0.133226 -0.797231 -0.675932\nv 0.133226 -0.797231 -0.675932\nv 0.133226 -0.797231 -0.675932\nv 0.152818 -0.755323 -0.594698\nv 0.571269 -0.597710 -0.153436\nv 0.563389 -0.577134 -0.150826\nv 0.742773 0.193458 0.034769\nv 0.689972 0.098264 0.004157\nv -0.180311 -0.237497 -0.638956\nv 0.474346 -0.617869 0.201620\nv 0.439599 -0.624932 0.201620\nv -0.166560 -0.249326 -0.657658\nv 0.106544 -0.813241 -0.690335\nv -0.620933 0.429606 0.744445\nv -0.663643 -0.330732 0.238158\nv -0.665431 -0.323122 0.223471\nv -0.665431 -0.323122 0.223471\nv 0.572799 -0.618346 -0.153238\nv -0.171289 -0.247094 -0.639247\nv 0.558872 0.042022 -0.257548\nv 0.554901 0.048282 -0.256484\nv -0.704379 0.235577 0.341159\nv -0.679470 0.240263 0.442347\nv 0.163843 -0.334216 -0.628654\nv 0.163843 -0.334216 -0.628654\nv 0.156409 -0.325840 -0.630866\nv 0.156409 -0.325840 -0.630866\nv 0.375289 -0.598294 0.201620\nv 0.355713 -0.568730 0.201620\nv 0.121720 -0.322407 -0.592864\nv 0.123795 -0.325945 -0.632414\nv 0.123795 -0.325945 -0.632414\nv 0.168669 -0.063395 -0.679593\nv -0.236014 -0.469389 0.088373\nv -0.208987 -0.474987 0.088373\nv -0.340921 -0.505883 -0.392457\nv -0.306075 -0.524260 -0.415301\nv 0.167424 -0.332177 -0.588649\nv -0.396820 -0.161176 -0.464679\nv -0.396820 -0.161176 -0.464679\nv -0.396820 -0.161176 -0.464679\nv -0.380957 -0.159880 -0.460639\nv 0.945614 0.013295 0.548378\nv 0.946445 0.020910 0.559005\nv -0.412105 -0.150277 -0.448552\nv 0.158916 -0.322280 -0.591094\nv -0.616640 0.430313 -0.134395\nv -0.577260 0.438250 -0.151204\nv -0.577260 0.438250 -0.151204\nv -0.312163 -0.513645 -0.422311\nv -0.273957 -0.532223 -0.445446\nv 0.944773 0.007996 0.544631\nv -0.472046 -0.624300 0.210595\nv -0.434635 -0.631903 0.210595\nv -0.461637 -0.106290 -0.384582\nv -0.431849 -0.133830 -0.424496\nv 0.572569 -0.640681 -0.152356\nv 0.731667 0.193394 0.034883\nv 0.681069 0.098242 0.004195\nv -0.551067 0.561759 -0.066673\nv -0.551110 0.572613 -0.046933\nv -0.035481 -0.829487 -0.776665\nv 0.946968 0.038446 0.602654\nv 0.946547 0.039102 0.610265\nv 0.946547 0.039102 0.610265\nv -0.531598 -0.499835 -0.137435\nv -0.531598 -0.499835 -0.137435\nv -0.483439 0.421844 -0.333756\nv -0.483439 0.421844 -0.333756\nv -0.483439 0.421844 -0.333756\nv -0.489296 0.432555 -0.304915\nv -0.204161 -0.614629 -0.625314\nv -0.193241 -0.604643 -0.628095\nv -0.609304 0.551595 0.690722\nv -0.558575 0.567283 0.778876\nv -0.433199 -0.443354 -0.314473\nv -0.480309 -0.403266 -0.263367\nv -0.679195 -0.091904 0.352298\nv -0.679195 -0.091904 0.352298\nv -0.662090 -0.203084 0.356244\nv -0.662090 -0.203084 0.356244\nv 0.930368 -0.059517 0.536682\nv 0.943892 0.003225 0.543090\nv 0.933207 0.043235 0.608385\nv 0.196058 -0.668569 -0.536076\nv 0.164267 -0.655673 -0.542726\nv 0.945555 0.036222 0.614643\nv 0.945555 0.036222 0.614643\nv 0.944600 0.032117 0.615153\nv -0.611418 -0.315393 0.091813\nv -0.664410 0.043713 0.240457\nv -0.664410 0.043713 0.240457\nv -0.260521 0.527683 1.113831\nv -0.267464 0.475442 1.130283\nv 0.271505 0.007005 0.950220\nv -0.663101 -0.333219 0.256048\nv 0.399068 0.333008 -0.392111\nv 0.457441 0.385183 -0.294178\nv -0.564597 0.562675 -0.055988\nv -0.564597 0.562675 -0.055988\nv -0.563991 0.559050 -0.053303\nv -0.563991 0.559050 -0.053303\nv -0.521641 0.430507 -0.265379\nv 0.118901 0.155270 1.152130\nv 0.122656 0.151261 1.149560\nv 0.307418 -0.176112 0.510149\nv 0.280861 -0.192574 0.510152\nv 0.366320 0.724403 0.355586\nv -0.141817 0.160366 1.147215\nv -0.142388 0.166008 1.149364\nv -0.347293 -0.676326 -0.398441\nv -0.330936 -0.678753 -0.376789\nv -0.272839 0.465235 1.130418\nv -0.265453 0.582918 1.080642\nv -0.269602 0.591235 1.073008\nv -0.514701 0.458173 -0.273191\nv 0.249860 -0.207537 0.499978\nv 0.215863 -0.199559 0.499987\nv 0.932000 0.039751 0.613431\nv -0.368170 -0.817506 -0.122170\nv -0.368170 -0.817506 -0.122170\nv -0.222640 -0.782526 -0.229856\nv 0.929301 -0.064195 0.537241\nv -0.362114 -0.820924 -0.113986\nv -0.040023 -0.325612 0.290990\nv 0.534688 0.016985 -0.251068\nv 0.527604 0.020023 -0.249170\nv -0.157646 -0.115575 0.500013\nv -0.457072 0.391984 -0.331267\nv -0.457072 0.391984 -0.331267\nv -0.446151 0.395312 -0.330284\nv -0.446151 0.395312 -0.330284\nv -0.341046 -0.665890 -0.399742\nv -0.325893 -0.667675 -0.379911\nv -0.044215 -0.348921 0.290990\nv -0.056692 -0.369051 0.290990\nv 0.414099 0.007027 0.810685\nv 0.489439 0.007039 0.732283\nv -0.491151 -0.074242 -0.338243\nv -0.600967 -0.339212 -0.054587\nv -0.600967 -0.339212 -0.054587\nv -0.596837 -0.353027 -0.067964\nv -0.730382 0.367660 0.043203\nv -0.740044 0.307333 0.047018\nv 0.943566 0.027513 0.614731\nv 0.502260 -0.499872 -0.127449\nv 0.483568 -0.500769 -0.112132\nv -0.647708 0.050906 -0.088076\nv -0.651511 0.050196 -0.047501\nv -0.529532 0.666305 0.593197\nv -0.512909 0.672917 0.626007\nv 0.127886 0.149068 1.147358\nv -0.199542 -0.037783 -0.654168\nv -0.199542 -0.037783 -0.654168\nv -0.203875 -0.056863 -0.657097\nv 0.912786 -0.104074 0.603648\nv -0.151445 -0.325840 -0.630866\nv -0.151445 -0.325840 -0.630866\nv -0.118831 -0.325945 -0.632414\nv -0.118831 -0.325945 -0.632414\nv -0.296249 -0.621500 -0.541988\nv -0.296283 -0.623177 -0.521946\nv -0.296283 -0.623177 -0.521946\nv -0.747309 0.240870 0.049318\nv -0.143108 -0.763409 -0.288707\nv -0.466415 0.685921 0.704532\nv -0.473480 0.404024 -0.339071\nv -0.473480 0.404024 -0.339071\nv -0.467510 0.395312 -0.334623\nv -0.467510 0.395312 -0.334623\nv -0.193907 -0.037783 -0.638686\nv -0.484603 0.405762 -0.328020\nv -0.484603 0.405762 -0.328020\nv -0.484603 0.405762 -0.328020\nv -0.537687 -0.614090 -0.174941\nv -0.360541 -0.750567 -0.102732\nv -0.366596 -0.755521 -0.110916\nv -0.366596 -0.755521 -0.110916\nv -0.296241 -0.621112 -0.544374\nv 0.346791 -0.671607 -0.436861\nv 0.358173 -0.655093 -0.453287\nv -0.641192 0.536833 -0.004866\nv -0.710682 0.490251 0.029381\nv -0.710682 0.490251 0.029381\nv 0.523486 -0.499236 0.201620\nv 0.177573 -0.146575 0.510187\nv 0.194034 -0.173132 0.510178\nv 0.443808 0.459653 -0.308530\nv 0.443808 0.459653 -0.308530\nv 0.677834 -0.431585 0.253639\nv 0.675214 -0.408364 0.290633\nv -0.655288 0.048778 0.015611\nv -0.353209 -0.655093 -0.453287\nv -0.341827 -0.671607 -0.436861\nv -0.368170 -0.745782 -0.122170\nv -0.368170 -0.745782 -0.122170\nv -0.362114 -0.740685 -0.113986\nv -0.033767 -0.325447 0.286222\nv -0.039735 -0.300017 0.286225\nv 0.172042 -0.115824 0.510194\nv 0.151055 -0.107323 -0.685086\nv 0.146788 -0.056863 -0.679682\nv -0.319349 0.204639 1.083821\nv -0.334576 0.211519 1.074231\nv 0.490635 0.462311 -0.313863\nv 0.490635 0.462311 -0.313863\nv 0.467684 0.466967 -0.312489\nv -0.460098 0.387783 -0.316365\nv -0.460098 0.387783 -0.316365\nv -0.460098 0.387783 -0.316365\nv -0.465956 0.398494 -0.287524\nv 0.550977 0.065160 -0.215159\nv 0.539749 0.062752 -0.212150\nv -0.107852 0.167134 1.158476\nv -0.107088 0.159578 1.155596\nv 0.129926 -0.708031 0.183686\nv 0.129926 -0.708031 0.183686\nv 0.140019 -0.708031 0.170046\nv 0.140019 -0.708031 0.170046\nv -0.475688 0.392752 -0.321377\nv -0.475688 0.392752 -0.321377\nv -0.475688 0.392752 -0.321377\nv 0.566045 -0.198434 -0.254923\nv 0.625268 0.051190 -0.169065\nv 0.625268 0.051190 -0.169065\nv -0.481546 0.403464 -0.292536\nv 0.647961 -0.334801 0.161707\nv 0.637451 -0.394089 0.121771\nv -0.565314 0.567021 -0.046960\nv -0.565314 0.567021 -0.046960\nv -0.729291 0.428098 0.037574\nv -0.202659 -0.107323 -0.664497\nv 0.238624 -0.628541 -0.618739\nv 0.571789 0.013143 -0.220735\nv 0.562205 0.006626 -0.218167\nv -0.409595 0.696522 0.772836\nv -0.076139 -0.382569 0.290990\nv -0.127983 -0.266150 0.286211\nv -0.149432 -0.281059 0.286203\nv 0.143995 0.155148 1.145793\nv 0.139434 0.151179 1.145322\nv -0.675680 0.283859 0.472649\nv -0.675680 0.283859 0.472649\nv -0.673718 0.277813 0.482630\nv -0.296901 -0.618444 -0.552574\nv -0.296901 -0.618444 -0.552574\nv 0.542665 0.009935 -0.249571\nv 0.533544 0.011891 -0.247127\nv -0.534785 0.062752 -0.212150\nv -0.523556 0.057937 -0.209141\nv 0.536562 -0.499835 -0.137435\nv 0.536562 -0.499835 -0.137435\nv 0.531858 -0.515986 -0.146555\nv 0.531858 -0.515986 -0.146555\nv 0.527182 -0.506670 -0.145537\nv 0.527182 -0.506670 -0.145537\nv -0.305838 0.191984 1.088933\nv -0.143787 -0.037783 -0.674461\nv -0.143787 -0.037783 -0.674461\nv -0.312493 -0.600082 -0.557846\nv -0.312493 -0.600082 -0.557846\nv -0.315207 -0.595358 -0.553189\nv -0.315207 -0.595358 -0.553189\nv 0.439599 -0.436063 0.210595\nv 0.402189 -0.443666 0.210595\nv 0.103036 -0.813241 -0.682102\nv 0.103036 -0.813241 -0.682102\nv 0.078073 -0.829487 -0.768083\nv -0.306861 -0.540236 0.008941\nv 0.269382 -0.611964 -0.614902\nv 0.255408 -0.622972 -0.616334\nv -0.186431 -0.680683 -0.525078\nv -0.150417 -0.666074 -0.532612\nv 0.190881 -0.590333 0.076025\nv 0.175728 -0.567263 0.076025\nv -0.312358 -0.540236 0.012081\nv 0.179181 -0.085406 0.510198\nv -0.052152 -0.373358 0.286210\nv -0.073601 -0.388268 0.286202\nv 0.001435 -0.663824 0.090157\nv 0.001435 -0.769855 0.090157\nv 0.281539 -0.588303 -0.614916\nv 0.274775 -0.604818 -0.614608\nv -0.618780 -0.276901 -0.024437\nv -0.675478 0.016815 0.090682\nv -0.675478 0.016815 0.090682\nv -0.154514 -0.023824 -0.666659\nv -0.154514 -0.023824 -0.666659\nv -0.148879 -0.023824 -0.651178\nv -0.225403 -0.681884 -0.518232\nv 0.500511 0.338827 -0.283987\nv 0.529039 0.342553 -0.288857\nv 0.529039 0.342553 -0.288857\nv 0.529039 0.342553 -0.288857\nv 0.551787 0.011891 -0.252015\nv 0.148751 -0.037783 -0.674461\nv 0.148751 -0.037783 -0.674461\nv 0.159478 -0.023824 -0.666659\nv 0.159478 -0.023824 -0.666659\nv 0.425548 -0.135506 -0.425588\nv 0.143117 -0.037783 -0.658979\nv -0.741222 0.365606 0.033490\nv -0.728773 0.424826 0.028218\nv -0.731409 0.316598 0.143408\nv -0.733871 0.318257 0.144768\nv -0.782647 0.353542 0.171460\nv -0.782647 0.353542 0.171460\nv -0.298946 -0.613644 -0.557525\nv -0.298946 -0.613644 -0.557525\nv -0.306861 -0.596948 -0.557861\nv -0.306861 -0.596948 -0.557861\nv -0.737541 0.237905 -0.078383\nv 0.130758 0.177479 1.158183\nv 0.136638 0.177450 1.156698\nv 0.477010 -0.443666 0.205772\nv 0.508839 -0.464743 0.205772\nv -0.434635 -0.443034 0.214746\nv -0.399888 -0.450096 0.214746\nv 0.542630 0.055550 -0.212922\nv 0.534284 0.051970 -0.210686\nv -0.432987 0.405762 -0.317536\nv -0.432987 0.405762 -0.317536\nv -0.432987 0.405762 -0.317536\nv -0.443787 0.392752 -0.314898\nv -0.443787 0.392752 -0.314898\nv -0.443787 0.392752 -0.314898\nv -0.556543 0.055549 -0.209246\nv -0.548196 0.057339 -0.207010\nv -0.327758 -0.547363 -0.426264\nv -0.341336 -0.560748 -0.443853\nv 0.213951 -0.605486 0.076024\nv 0.024533 -0.758653 0.084591\nv 0.024533 -0.758653 0.084591\nv 0.024533 -0.680272 0.084591\nv 0.024533 -0.680272 0.084591\nv -0.329600 0.138780 1.016198\nv -0.315992 0.132631 1.024768\nv -0.718264 0.245230 0.328469\nv -0.715161 0.240821 0.335496\nv 0.562205 0.062752 -0.218167\nv -0.712136 0.244316 0.320167\nv -0.707477 0.237504 0.330482\nv 0.529916 -0.496572 0.205771\nv 0.583214 -0.595104 -0.146187\nv 0.574946 -0.572732 -0.143644\nv -0.712851 0.446135 0.122971\nv -0.710074 0.446379 0.121321\nv -0.320219 0.779332 0.390723\nv -0.176894 0.847931 0.469459\nv -0.389625 0.717977 0.302886\nv -0.539850 0.055549 -0.204773\nv -0.124256 0.860890 0.483318\nv 0.350007 0.115459 1.015362\nv 0.329614 0.106243 1.028206\nv 0.272352 -0.546188 -0.620270\nv 0.191672 -0.023823 -0.654942\nv 0.191672 -0.023823 -0.654942\nv 0.204506 -0.037783 -0.654168\nv 0.204506 -0.037783 -0.654168\nv -0.223709 -0.668705 -0.519704\nv -0.189307 -0.667645 -0.525747\nv 0.284230 -0.201355 0.499971\nv 0.313912 -0.182956 0.499968\nv 0.208838 -0.056863 -0.657097\nv 0.368103 0.132408 1.008515\nv -0.136904 0.147079 1.143047\nv -0.143013 0.152395 1.143677\nv 0.495130 0.578895 0.856106\nv 0.384542 0.591906 0.974235\nv -0.102553 -0.260183 0.286218\nv 0.471984 0.335101 -0.279117\nv -0.353081 -0.581548 -0.458245\nv 0.186037 -0.023823 -0.639460\nv 0.509308 0.436841 -0.309896\nv -0.666448 -0.311136 0.249562\nv -0.666557 -0.311516 0.258714\nv -0.566825 0.056235 -0.220735\nv -0.573120 0.046313 -0.222422\nv 0.554488 0.567142 0.773258\nv -0.437681 0.432555 -0.294431\nv -0.431823 0.421844 -0.323272\nv -0.431823 0.421844 -0.323272\nv -0.431823 0.421844 -0.323272\nv -0.245145 -0.198105 0.510159\nv -0.214726 -0.190966 0.510168\nv -0.276648 0.596660 1.064910\nv -0.648525 -0.307177 0.243469\nv -0.648087 -0.308671 0.251185\nv -0.648087 -0.308671 0.251185\nv -0.667027 -0.311026 0.269313\nv -0.667027 -0.311026 0.269313\nv -0.111583 0.174123 1.160380\nv 0.515096 0.408691 -0.303852\nv 0.346300 -0.560748 -0.443853\nv 0.358045 -0.581548 -0.458245\nv 0.516501 0.346386 -0.244455\nv 0.539785 0.348692 -0.245829\nv 0.539785 0.348692 -0.245829\nv 0.198871 -0.037783 -0.638686\nv 0.175080 -0.018124 -0.659184\nv 0.175080 -0.018124 -0.659184\nv 0.270102 -0.610549 0.012081\nv 0.294962 -0.594220 0.012081\nv -0.440738 0.434854 -0.329915\nv -0.440738 0.434854 -0.329915\nv -0.440738 0.434854 -0.329915\nv 0.145623 0.171248 1.151927\nv 0.147352 0.166008 1.149364\nv -0.518522 -0.499236 0.201620\nv -0.525584 -0.533983 0.201620\nv 0.381252 0.154609 1.008667\nv 0.332722 -0.547363 -0.426264\nv -0.446596 0.445565 -0.301074\nv -0.128802 0.149039 1.145873\nv -0.134470 0.151179 1.145322\nv 0.153843 -0.023823 -0.651178\nv -0.359342 -0.606670 -0.464918\nv -0.359569 -0.632417 -0.463417\nv 0.443103 0.466842 -0.301010\nv 0.443103 0.466842 -0.301010\nv 0.494473 0.469150 -0.305642\nv 0.310396 -0.062729 0.510169\nv 0.284740 -0.044896 0.510179\nv -0.690923 0.108381 0.109414\nv -0.695055 0.123332 0.076375\nv -0.498946 -0.469672 0.201620\nv -0.135055 -0.708031 0.170046\nv -0.135055 -0.708031 0.170046\nv -0.124962 -0.708031 0.183686\nv -0.124962 -0.708031 0.183686\nv 0.311291 -0.569360 0.012081\nv -0.312771 0.295270 -0.457745\nv -0.385645 0.340168 -0.382014\nv -0.302454 -0.176112 0.510149\nv -0.275897 -0.192574 0.510152\nv -0.507666 -0.607013 0.257233\nv -0.419035 0.683398 0.249658\nv 0.280442 -0.561848 -0.617471\nv 0.524423 0.015803 -0.244683\nv -0.249604 -0.028326 0.500008\nv -0.215236 -0.034508 0.500014\nv 0.473665 0.486886 -0.281035\nv 0.446767 0.478986 -0.280298\nv 0.446767 0.478986 -0.280298\nv -0.112779 0.166152 1.156842\nv -0.115565 0.171370 1.158264\nv -0.124962 -0.786411 0.183686\nv -0.124962 -0.786411 0.183686\nv 0.317127 -0.513645 -0.422311\nv 0.278921 -0.532223 -0.445446\nv -0.249357 -0.037758 0.510188\nv -0.218606 -0.043289 0.510195\nv -0.569982 -0.572732 -0.143644\nv -0.540009 -0.538627 -0.132251\nv -0.540009 -0.538627 -0.132251\nv 0.282702 -0.579441 -0.615507\nv -0.308948 -0.182956 0.499968\nv -0.279267 -0.201355 0.499971\nv -0.534785 0.006625 -0.212150\nv -0.523557 0.011440 -0.209141\nv 0.268005 -0.605486 0.008941\nv 0.291074 -0.590333 0.008941\nv 0.541465 0.349932 -0.236941\nv 0.541465 0.349932 -0.236941\nv 0.517327 0.347528 -0.235424\nv -0.394684 0.717661 0.308626\nv -0.424555 0.682785 0.255059\nv 0.550977 0.004218 -0.215159\nv 0.539749 0.006626 -0.212150\nv 0.332389 -0.120037 0.510153\nv 0.325251 -0.150456 0.510149\nv 0.499358 0.482139 -0.279601\nv 0.499358 0.482139 -0.279601\nv 0.519663 0.458173 -0.273191\nv 0.175728 -0.567264 0.008941\nv 0.190882 -0.590333 0.008941\nv 0.268753 0.598595 1.058877\nv 0.261832 0.592978 1.066949\nv 0.310105 -0.546856 -0.394397\nv 0.320960 -0.544483 -0.409999\nv -0.496400 0.201649 0.771325\nv -0.138153 -0.037783 -0.658979\nv 0.169446 -0.018124 -0.643702\nv -0.320287 -0.150456 0.510149\nv 0.103746 0.852486 0.663399\nv 0.002481 0.852490 0.667992\nv -0.737874 0.306285 0.037165\nv -0.729038 0.365500 0.033600\nv 0.498228 0.477550 -0.286637\nv 0.498228 0.477550 -0.286637\nv 0.472544 0.482536 -0.287938\nv 0.306228 -0.567263 0.008941\nv 0.311825 -0.540236 0.008941\nv -0.438845 0.416474 -0.288695\nv 0.383641 0.595569 0.972697\nv 0.275407 0.601919 1.052275\nv -0.670250 -0.408364 0.290633\nv -0.715453 0.166277 0.077806\nv -0.715453 0.166277 0.077806\nv -0.717955 0.171871 0.085451\nv 0.804099 -0.220519 0.592586\nv 0.782455 -0.217887 0.584508\nv -0.185917 -0.490140 0.088373\nv 0.717098 0.244316 0.320167\nv 0.722655 0.256592 0.310260\nv 0.722655 0.256592 0.310260\nv 0.722655 0.256592 0.310260\nv -0.557241 0.062752 -0.218167\nv -0.546013 0.065160 -0.215159\nv -0.283602 -0.036303 0.499998\nv -0.441062 -0.763303 -0.068232\nv -0.441062 -0.763303 -0.068232\nv -0.435006 -0.758205 -0.060048\nv 0.572855 0.034689 -0.221021\nv 0.571126 0.026048 -0.220558\nv -0.734015 0.166758 0.077288\nv -0.734015 0.166758 0.077288\nv -0.734015 0.166758 0.077288\nv -0.678418 -0.009454 -0.051059\nv -0.670805 -0.007146 -0.068138\nv -0.670805 -0.007146 -0.068138\nv -0.672870 -0.431585 0.253639\nv 0.291074 -0.490140 0.088373\nv 0.306228 -0.513209 0.088373\nv 0.254321 -0.037758 0.510188\nv -0.653833 0.051535 -0.020564\nv -0.653833 0.051535 -0.020564\nv -0.684182 0.099007 -0.004745\nv -0.734204 0.172320 0.084894\nv -0.734204 0.172320 0.084894\nv 0.720949 0.272061 0.345479\nv 0.695569 0.278543 0.447127\nv -0.675202 0.101502 -0.003797\nv -0.645931 0.054891 -0.019350\nv -0.660735 -0.089716 0.349249\nv -0.660779 -0.091169 0.352603\nv -0.660779 -0.091169 0.352603\nv -0.181226 -0.562930 0.104388\nv -0.176526 -0.540236 0.104388\nv 0.213951 -0.474986 0.008941\nv 0.190881 -0.490140 0.008941\nv -0.347036 0.206964 1.036495\nv -0.353332 0.195679 1.025200\nv 0.362128 -0.583446 -0.451073\nv 0.350996 -0.563803 -0.437566\nv 0.424881 0.449649 -0.282747\nv 0.415576 0.415149 -0.277449\nv 0.679076 0.520449 0.513802\nv 0.603867 0.555604 0.684620\nv 0.190520 -0.052906 0.500018\nv 0.170588 -0.081579 0.500018\nv -0.292532 0.138731 1.048206\nv -0.303003 0.132614 1.035985\nv 0.495653 0.479332 -0.278643\nv 0.495653 0.479332 -0.278643\nv 0.473631 0.483457 -0.279815\nv -0.435814 -0.822486 -0.061140\nv -0.435317 -0.825032 -0.060469\nv -0.435317 -0.825032 -0.060469\nv 0.220200 -0.034508 0.500014\nv 0.550977 0.057339 -0.215159\nv 0.559323 0.055550 -0.217395\nv -0.193950 -0.582301 0.104388\nv 0.338117 -0.551214 -0.421008\nv 0.263672 -0.485448 0.104388\nv 0.240978 -0.480748 0.104388\nv 0.223570 -0.043289 0.510195\nv 0.326935 -0.548653 -0.405591\nv -0.713457 0.162009 0.075841\nv -0.724357 0.194527 0.025496\nv 0.361843 -0.646957 -0.436042\nv 0.366990 -0.628861 -0.444024\nv 0.306228 -0.513209 0.008941\nv -0.185917 -0.590333 0.088373\nv -0.170764 -0.567263 0.088373\nv -0.433827 -0.770497 -0.058455\nv -0.435317 -0.771704 -0.060469\nv -0.435317 -0.771704 -0.060469\nv 0.559323 0.013829 -0.217395\nv 0.550977 0.010249 -0.215159\nv 0.368069 -0.607168 -0.457339\nv -0.310412 -0.681498 -0.394103\nv -0.326984 -0.678867 -0.416473\nv -0.167820 -0.328969 0.286191\nv -0.163195 -0.303260 0.286197\nv 0.656475 0.050196 -0.047501\nv 0.660252 0.048778 0.015611\nv 0.193181 -0.681607 -0.535407\nv 0.232153 -0.682807 -0.528561\nv 0.335639 -0.085915 0.499979\nv 0.317240 -0.056234 0.499989\nv -0.315655 0.290867 -0.460319\nv -0.160649 0.219767 -0.570979\nv -0.160649 0.219767 -0.570979\nv -0.160649 0.219767 -0.570979\nv -0.341674 0.150089 1.011630\nv 0.341821 -0.120284 0.499972\nv 0.566447 0.050705 -0.219304\nv -0.350447 0.164902 1.011731\nv 0.692707 0.398780 0.560236\nv 0.737043 0.379932 0.414122\nv -0.537813 -0.511088 -0.138816\nv 0.520229 0.430167 -0.265486\nv 0.362247 -0.652848 -0.446389\nv 0.368286 -0.631469 -0.455924\nv 0.366766 -0.608275 -0.445192\nv -0.285036 0.164817 1.068214\nv -0.286236 0.150017 1.059501\nv 0.164634 -0.540237 0.012081\nv 0.170666 -0.569361 0.012081\nv -0.667875 -0.310321 0.215540\nv -0.667875 -0.310321 0.215540\nv -0.659817 -0.310175 0.214945\nv -0.659817 -0.310175 0.214945\nv -0.388679 0.335062 -0.385615\nv -0.609695 -0.236847 -0.052532\nv -0.649087 -0.171171 -0.029940\nv 0.680644 0.283859 0.472649\nv 0.680644 0.283859 0.472649\nv 0.678680 0.277813 0.482630\nv 0.488404 -0.773451 0.523464\nv -0.714811 0.128721 0.069240\nv -0.714811 0.128721 0.069240\nv -0.717904 0.132607 0.068959\nv 0.677290 0.282677 0.466469\nv -0.198215 -0.470318 -0.541851\nv -0.232617 -0.471378 -0.535808\nv 0.580409 0.034689 -0.223045\nv 0.578084 0.023065 -0.222422\nv -0.559723 0.025246 -0.255472\nv -0.561612 0.034689 -0.255978\nv -0.357283 -0.652848 -0.446389\nv -0.363322 -0.631469 -0.455924\nv 0.571126 0.043330 -0.220558\nv 0.316601 -0.551107 -0.390745\nv 0.278258 -0.473873 -0.539271\nv 0.242244 -0.459264 -0.546805\nv -0.076845 -0.264807 0.286223\nv -0.054644 -0.278569 0.286226\nv -0.356694 -0.588157 -0.439955\nv -0.347192 -0.571466 -0.428723\nv 0.669374 0.043713 0.240457\nv 0.669374 0.043713 0.240457\nv -0.301264 -0.513209 0.088373\nv -0.306861 -0.540236 0.088373\nv -0.680182 -0.043321 0.375813\nv -0.839151 -0.070808 0.393247\nv -0.301264 -0.567263 0.088373\nv 0.838683 -0.216915 0.605202\nv 0.838683 -0.216915 0.605202\nv 0.838683 -0.216915 0.605202\nv 0.315376 -0.681498 -0.394103\nv 0.331948 -0.678867 -0.416473\nv 0.198913 -0.582301 0.104388\nv 0.186190 -0.562930 0.104388\nv 0.252276 0.826930 0.590186\nv 0.186994 -0.594220 0.015824\nv 0.211854 -0.610549 0.015824\nv -0.554359 0.013828 -0.217395\nv -0.546013 0.010249 -0.215159\nv 0.578084 0.046313 -0.222422\nv -0.336161 -0.560882 -0.414833\nv -0.687030 -0.017629 0.005867\nv -0.118079 0.218352 -0.578241\nv -0.017452 0.216902 -0.589522\nv -0.017452 0.216902 -0.589522\nv -0.017452 0.216902 -0.589522\nv -0.017452 0.216902 -0.589522\nv -0.346361 -0.668385 -0.430768\nv 0.717735 0.239700 0.344217\nv 0.693575 0.244454 0.442280\nv 0.170665 -0.569361 0.015824\nv -0.286110 -0.590333 0.088373\nv -0.834170 -0.058229 0.381666\nv -0.333725 -0.559224 -0.396611\nv -0.324778 -0.561858 -0.383844\nv 0.899237 0.195110 0.627133\nv 0.899237 0.195110 0.627133\nv 0.899237 0.195110 0.627133\nv 0.879752 0.198780 0.619813\nv -0.286111 -0.490140 0.088373\nv 0.202272 0.841062 0.627104\nv 0.598791 0.347849 -0.164294\nv 0.638474 0.164180 -0.117022\nv 0.638474 0.164180 -0.117022\nv 0.772181 0.105007 0.780480\nv 0.772181 0.105007 0.780480\nv 0.772181 0.105007 0.780480\nv 0.364306 -0.606670 -0.464918\nv 0.364533 -0.632417 -0.463417\nv -0.315744 -0.677556 -0.389401\nv -0.331929 -0.675160 -0.411097\nv 0.725595 0.266062 0.327601\nv 0.727050 0.256043 0.322352\nv 0.727050 0.256043 0.322352\nv -0.329023 0.783454 0.402533\nv -0.180461 0.852882 0.483733\nv -0.465469 0.423503 -0.344678\nv -0.465469 0.423503 -0.344678\nv -0.472701 0.414791 -0.342912\nv -0.472701 0.414791 -0.342912\nv -0.664496 -0.257688 0.313333\nv 0.213951 -0.605486 0.018964\nv 0.190882 -0.590333 0.018964\nv 0.181490 -0.540236 0.104388\nv 0.186190 -0.517542 0.104388\nv 0.723524 0.270192 0.334663\nv 0.549318 0.625924 0.639558\nv 0.559861 0.624323 0.613433\nv 0.228671 0.404389 1.087767\nv 0.279780 0.446248 1.121651\nv 0.279780 0.446248 1.121651\nv 0.577106 0.625463 0.561011\nv -0.312276 -0.056234 0.499989\nv -0.285724 -0.637171 -0.522520\nv -0.258361 -0.658724 -0.525324\nv 0.623744 -0.276901 -0.024437\nv 0.680442 0.016815 0.090682\nv 0.680442 0.016815 0.090682\nv -0.444108 0.423503 -0.340340\nv -0.444108 0.423503 -0.340340\nv -0.454546 0.426831 -0.343696\nv -0.454546 0.426831 -0.343696\nv -0.126446 0.865881 0.497991\nv -0.400985 0.720849 0.312740\nv -0.431338 0.685472 0.258341\nv -0.456327 0.439823 -0.334928\nv -0.456327 0.439823 -0.334928\nv -0.456327 0.439823 -0.334928\nv -0.472639 0.434854 -0.336395\nv -0.472639 0.434854 -0.336395\nv -0.472639 0.434854 -0.336395\nv -0.349111 0.211538 1.061679\nv -0.315996 -0.544483 -0.409999\nv -0.225496 -0.669629 -0.530032\nv 0.390178 0.443727 1.041515\nv -0.305141 -0.546856 -0.394397\nv 0.926784 0.153516 0.637204\nv 0.930406 0.142225 0.638518\nv 0.544814 0.055550 -0.204773\nv 0.536468 0.051970 -0.202537\nv 0.694762 0.245337 -0.105835\nv 0.694762 0.245337 -0.105835\nv 0.692720 0.294200 -0.117110\nv 0.570439 0.330936 -0.177841\nv 0.537819 0.470089 -0.216575\nv 0.294962 -0.594220 0.015824\nv 0.270102 -0.610549 0.015824\nv -0.299837 0.128341 1.061109\nv -0.311554 0.121495 1.047434\nv -0.399888 -0.617870 0.201620\nv -0.370325 -0.598294 0.201620\nv -0.648679 -0.308508 0.270114\nv -0.648679 -0.308508 0.270114\nv -0.648679 -0.308508 0.270114\nv 0.720123 0.240821 0.335496\nv 0.311291 -0.569360 0.015824\nv 0.900444 0.105007 0.428079\nv 0.900444 0.105007 0.428079\nv 0.900444 0.105007 0.428079\nv 0.859752 -0.077794 0.404327\nv 0.859752 -0.077794 0.404327\nv 0.678931 0.018352 0.043778\nv 0.669214 0.021743 -0.051329\nv 0.505480 0.436812 0.919684\nv 0.566832 0.430031 0.833334\nv -0.697423 0.514102 0.106580\nv -0.664616 0.567259 0.267593\nv 0.531891 0.630882 0.676381\nv 0.003528 -0.663824 0.090157\nv 0.003528 -0.769855 0.090157\nv 0.288566 -0.036303 0.499998\nv 0.254568 -0.028326 0.500008\nv 0.198913 -0.498172 0.104388\nv 0.723226 0.245230 0.328469\nv 0.383972 -0.577679 -0.288567\nv 0.318125 -0.613893 -0.363645\nv -0.366596 -0.808219 -0.110916\nv -0.366596 -0.808219 -0.110916\nv -0.360541 -0.811493 -0.102732\nv 0.003528 -0.644935 0.090157\nv 0.003528 -0.644935 0.090157\nv -0.333153 -0.551214 -0.421008\nv -0.321971 -0.548653 -0.405591\nv -0.354827 0.141050 1.020180\nv -0.341316 0.128395 1.025292\nv 0.653468 0.185664 -0.113489\nv 0.140838 -0.677939 0.191760\nv 0.140838 -0.677939 0.191760\nv 0.140838 -0.677939 0.191760\nv -0.311637 -0.551107 -0.390745\nv 0.282020 -0.629365 -0.395040\nv 0.248134 -0.642582 -0.421435\nv 0.165255 -0.356141 -0.617353\nv 0.267695 -0.356221 -0.520111\nv 0.267695 -0.356221 -0.520111\nv 0.240978 -0.616580 0.012081\nv 0.240978 -0.616581 0.015824\nv 0.132368 0.152558 1.141589\nv 0.127114 0.152584 1.142916\nv 0.533227 -0.459606 -0.046192\nv 0.382049 0.780282 0.570650\nv 0.441761 0.754339 0.478747\nv 0.489567 0.405762 -0.328020\nv 0.489567 0.405762 -0.328020\nv 0.489567 0.405762 -0.328020\nv 0.478444 0.404024 -0.339071\nv 0.478444 0.404024 -0.339071\nv -0.156153 -0.351863 0.290990\nv -0.142636 -0.371310 0.290990\nv -0.291449 0.157530 1.083498\nv -0.296021 0.175408 1.088820\nv -0.369256 -0.608380 -0.440138\nv -0.364101 -0.588196 -0.434868\nv -0.132173 -0.631572 -0.538852\nv -0.122905 -0.616967 -0.541761\nv 0.561206 -0.396288 -0.165068\nv 0.561206 -0.396288 -0.165068\nv 0.535245 -0.397877 -0.164806\nv 0.590565 -0.362724 -0.061728\nv 0.296502 -0.508375 -0.533031\nv 0.312343 -0.539037 -0.527551\nv -0.364644 0.157626 1.020293\nv -0.305432 -0.062729 0.510169\nv -0.279776 -0.044896 0.510179\nv 0.683394 0.228542 -0.107815\nv -0.122506 -0.383788 0.290990\nv 0.272428 0.475897 1.130283\nv 0.277803 0.465689 1.130418\nv 0.230541 -0.555748 -0.474743\nv 0.230541 -0.555748 -0.474743\nv 0.598887 0.355919 -0.126969\nv 0.582222 0.438250 -0.151204\nv 0.582222 0.438250 -0.151204\nv 0.294715 -0.507451 -0.522702\nv 0.310556 -0.538113 -0.517221\nv -0.361802 -0.608275 -0.445192\nv -0.363105 -0.607168 -0.457339\nv 0.482724 0.642593 0.757647\nv 0.144509 0.167722 1.144709\nv 0.142965 0.172405 1.146999\nv -0.469382 -0.450096 0.305645\nv -0.498946 -0.469672 0.305645\nv 0.566117 -0.399182 -0.141744\nv 0.270102 -0.469924 0.015824\nv 0.294962 -0.486253 0.015824\nv 0.477601 0.434854 -0.336395\nv 0.477601 0.434854 -0.336395\nv 0.477601 0.434854 -0.336395\nv 0.470431 0.423503 -0.344678\nv 0.470431 0.423503 -0.344678\nv -0.099196 -0.387980 0.290990\nv 0.346010 -0.665890 -0.399742\nv 0.359372 -0.660327 -0.417472\nv 0.425732 0.650640 0.824802\nv 0.488401 0.421844 -0.333756\nv 0.488401 0.421844 -0.333756\nv 0.488401 0.421844 -0.333756\nv -0.369454 -0.629055 -0.438993\nv -0.357164 -0.583446 -0.451073\nv -0.537666 0.055549 -0.212922\nv 0.678891 0.378805 -0.101431\nv 0.662745 0.405770 -0.116752\nv -0.161564 -0.328805 0.290990\nv 0.579486 -0.387730 -0.139365\nv 0.594180 -0.367691 -0.087639\nv 0.594180 -0.367691 -0.087639\nv 0.459510 0.426831 -0.343696\nv 0.459510 0.426831 -0.343696\nv -0.324966 -0.573892 -0.521393\nv -0.322384 -0.593550 -0.520081\nv -0.322384 -0.593550 -0.520081\nv 0.003528 -0.787920 0.090157\nv 0.003528 -0.787920 0.090157\nv -0.362026 -0.628861 -0.444024\nv 0.601801 -0.353027 -0.067964\nv -0.159303 -0.655673 -0.542726\nv -0.145604 -0.645229 -0.546029\nv 0.582459 -0.377968 -0.084248\nv -0.278254 0.154480 1.093319\nv -0.280053 0.132299 1.080260\nv -0.536788 0.467108 -0.213941\nv -0.610726 0.447272 -0.178410\nv -0.356879 -0.646957 -0.436042\nv 0.407645 0.655256 0.839318\nv 0.407645 0.655256 0.839318\nv 0.316770 -0.573486 -0.523705\nv 0.240978 -0.469389 0.018964\nv 0.268005 -0.474986 0.018964\nv -0.157371 -0.305496 0.290990\nv -0.369216 0.175504 1.025615\nv -0.347233 -0.660055 -0.422498\nv 0.351325 -0.668385 -0.430768\nv -0.157517 -0.654749 -0.532397\nv 0.562947 -0.378699 -0.179627\nv -0.434635 -0.443034 0.305645\nv -0.346032 -0.563803 -0.437566\nv -0.518522 -0.499236 0.305645\nv -0.525584 -0.533983 0.305645\nv 0.361554 -0.238437 -0.476766\nv 0.389224 -0.203912 -0.463952\nv 0.389224 -0.203912 -0.463952\nv 0.579905 -0.273319 -0.206482\nv 0.583110 -0.258196 -0.205455\nv 0.240978 -0.611083 0.045822\nv 0.268005 -0.605486 0.045822\nv 0.465725 0.572193 -0.128210\nv 0.469549 0.608098 -0.062958\nv -0.532857 0.470089 -0.216575\nv 0.257168 -0.346985 -0.519684\nv 0.257168 -0.346985 -0.519684\nv 0.240298 -0.344556 -0.514930\nv 0.582126 0.430179 -0.188528\nv 0.582126 0.430179 -0.188528\nv 0.621507 0.422243 -0.171720\nv -0.144893 -0.285366 0.290990\nv -0.099991 0.006995 1.050134\nv 0.002482 0.006995 1.062117\nv -0.531504 0.051970 -0.202537\nv 0.566576 0.034689 -0.255978\nv 0.564687 0.044132 -0.255472\nv 0.366861 -0.669486 -0.418083\nv 0.352257 -0.676326 -0.398441\nv 0.443101 0.414791 -0.335892\nv 0.443101 0.414791 -0.335892\nv 0.449070 0.423503 -0.340340\nv 0.449070 0.423503 -0.340340\nv -0.714674 0.268112 0.319426\nv -0.717693 0.256592 0.310260\nv -0.717693 0.256592 0.310260\nv -0.717693 0.256592 0.310260\nv -0.473788 -0.826415 0.562353\nv -0.476415 -0.837034 0.522754\nv 0.443881 0.404024 -0.332051\nv 0.443881 0.404024 -0.332051\nv 0.439599 -0.457616 0.326707\nv 0.410423 -0.463546 0.326707\nv -0.487916 0.182845 0.781456\nv 0.141510 0.158017 1.141517\nv 0.137434 0.154470 1.141097\nv 0.172784 -0.328969 0.286191\nv 0.168159 -0.303260 0.286197\nv 0.717813 0.446135 0.122970\nv 0.715036 0.446379 0.121321\nv 0.240978 -0.620690 0.051406\nv 0.210286 -0.614333 0.051406\nv -0.711553 0.274702 0.329585\nv 0.558872 0.027356 -0.257548\nv 0.560339 0.034689 -0.257942\nv 0.526603 0.430507 -0.265379\nv 0.546978 0.345635 -0.235499\nv 0.546978 0.345635 -0.235499\nv 0.651523 0.033291 -0.103813\nv 0.651523 0.033291 -0.103813\nv 0.651523 0.033291 -0.103813\nv -0.375606 -0.799599 -0.108471\nv -0.375606 -0.768061 -0.108471\nv 0.175728 -0.567263 0.045822\nv 0.190881 -0.590333 0.045822\nv -0.469382 -0.617869 0.305645\nv -0.434635 -0.624932 0.305645\nv -0.708463 0.277476 0.342188\nv -0.203755 0.006997 1.001420\nv 0.553516 0.570893 0.772004\nv 0.494125 0.582612 0.854779\nv 0.171002 -0.227507 -0.661615\nv 0.171002 -0.227507 -0.661615\nv -0.874682 0.212604 0.629213\nv -0.185918 -0.490140 0.018964\nv -0.208987 -0.474986 0.018964\nv -0.409135 0.007027 0.810685\nv -0.484476 0.007039 0.732283\nv 0.577964 -0.423691 0.000230\nv 0.589435 -0.403144 0.026024\nv -0.170764 -0.513209 0.018964\nv 0.716515 0.274702 0.329585\nv 0.713425 0.277476 0.342188\nv -0.266541 0.007005 0.950220\nv -0.498946 -0.598293 0.305645\nv -0.682133 0.201652 0.261016\nv -0.768294 0.179361 0.291529\nv 0.437951 0.405762 -0.317536\nv 0.437951 0.405762 -0.317536\nv 0.437951 0.405762 -0.317536\nv -0.156838 0.218257 -0.575289\nv -0.156838 0.218257 -0.575289\nv -0.113571 0.214106 -0.587672\nv 0.720982 0.265263 0.336694\nv 0.144000 0.162680 1.142788\nv -0.175956 -0.065928 -0.662539\nv -0.174469 -0.138342 -0.668420\nv 0.271340 0.595160 1.059859\nv 0.264294 0.589772 1.067964\nv 0.002481 0.216833 -0.591609\nv 0.002481 0.216833 -0.591609\nv 0.002481 0.216833 -0.591609\nv -0.002502 0.216833 -0.590198\nv 0.342366 -0.548880 -0.392691\nv 0.331981 -0.551315 -0.377801\nv 0.447982 0.450682 -0.310875\nv 0.431478 0.429897 -0.303745\nv 0.274566 0.591689 1.073008\nv 0.270417 0.583373 1.080642\nv 0.281612 0.597115 1.064910\nv 0.129681 0.177974 1.152590\nv 0.134935 0.177948 1.151263\nv -0.518522 -0.499236 0.289473\nv -0.525584 -0.533983 0.289473\nv 0.271157 -0.485198 -0.539486\nv -0.518522 -0.568730 0.305645\nv 0.635189 0.034684 -0.103128\nv 0.880957 0.108678 0.420758\nv -0.904810 -0.111665 0.590006\nv -0.903287 -0.114325 0.598172\nv -0.903287 -0.114325 0.598172\nv -0.916841 -0.081096 0.547119\nv 0.548569 -0.457634 -0.061201\nv 0.565449 -0.440420 -0.026773\nv 0.044698 -0.300017 0.286225\nv 0.038730 -0.325447 0.286222\nv 0.291074 -0.490140 0.018964\nv -0.682244 0.284390 0.447380\nv -0.695415 0.414075 -0.138541\nv -0.695415 0.414075 -0.138541\nv -0.707423 0.380629 -0.123937\nv 0.548854 0.016985 -0.254864\nv 0.541772 0.015466 -0.252966\nv -0.903208 -0.112267 0.603613\nv -0.903208 -0.112267 0.603613\nv -0.903208 -0.112267 0.603613\nv -0.891933 -0.112276 0.595398\nv 0.265858 0.456192 1.127567\nv 0.265858 0.456192 1.127567\nv 0.208159 0.416572 1.095464\nv 0.014440 -0.758652 0.098231\nv 0.014440 -0.758652 0.098231\nv 0.014440 -0.680272 0.098231\nv 0.014440 -0.680272 0.098231\nv -0.434635 -0.443034 0.289473\nv -0.399888 -0.450096 0.289473\nv -0.700430 0.417945 -0.131529\nv -0.700430 0.417945 -0.131529\nv -0.372974 -0.583923 -0.438324\nv -0.361700 -0.564156 -0.424765\nv 0.139610 0.175989 1.149296\nv -0.460763 0.572193 -0.128210\nv -0.464587 0.608098 -0.062958\nv -0.055618 -0.694580 -0.809820\nv -0.035481 -0.690806 -0.812782\nv 0.520489 0.669804 0.046637\nv 0.522119 0.653615 0.016137\nv -0.439564 -0.566252 -0.325318\nv -0.498722 -0.552070 -0.220122\nv -0.165167 -0.540236 0.018964\nv 0.383938 -0.607803 -0.444633\nv 0.377938 -0.583923 -0.438324\nv -0.163413 -0.755323 -0.594533\nv -0.163413 -0.755323 -0.585248\nv -0.463811 -0.463546 0.326707\nv -0.434635 -0.457616 0.326707\nv 0.478752 -0.826415 0.562353\nv -0.438487 -0.545636 -0.321127\nv -0.493061 -0.529286 -0.230766\nv -0.488635 -0.479983 0.326707\nv 0.178564 -0.223063 -0.669907\nv 0.178564 -0.223063 -0.669907\nv 0.366663 -0.564156 -0.424765\nv 0.260612 0.466506 1.127400\nv -0.348669 -0.551482 -0.408155\nv -0.337402 -0.548880 -0.392691\nv 0.277708 0.598097 1.053612\nv 0.127837 -0.870549 -0.545404\nv 0.127837 -0.870549 -0.545404\nv 0.131088 -0.767725 -0.545404\nv 0.131088 -0.767725 -0.545404\nv 0.240978 -0.611083 0.088373\nv 0.213951 -0.605486 0.088373\nv 0.481379 -0.837034 0.522754\nv -0.354499 -0.571517 -0.423618\nv -0.343392 -0.560981 -0.409746\nv 0.168786 -0.054627 -0.676400\nv -0.236014 -0.611083 0.018964\nv -0.208987 -0.605486 0.018964\nv -0.450327 -0.825974 -0.050401\nv -0.458057 -0.779734 -0.044681\nv 0.203179 -0.470318 -0.541851\nv 0.170314 -0.481223 -0.546559\nv 0.384123 -0.632276 -0.443243\nv 0.172586 -0.049510 -0.675148\nv 0.172586 -0.049510 -0.675148\nv 0.179388 -0.047204 -0.672308\nv 0.179388 -0.047204 -0.672308\nv -0.449290 -0.828391 -0.050129\nv -0.449290 -0.828391 -0.050129\nv -0.236014 -0.616581 0.015824\nv -0.206890 -0.610549 0.015824\nv -0.443771 0.487055 -0.267465\nv -0.441805 0.478986 -0.280298\nv -0.441805 0.478986 -0.280298\nv 0.643738 -0.327235 0.528381\nv 0.643738 -0.327235 0.528381\nv 0.643738 -0.327235 0.528381\nv -0.426761 -0.526352 -0.301673\nv 0.639967 -0.327235 0.538742\nv 0.639967 -0.327235 0.538742\nv 0.639967 -0.327235 0.538742\nv 0.565140 -0.302107 0.510057\nv -0.635351 0.533149 -0.001480\nv -0.698464 0.490127 0.029224\nv -0.698464 0.490127 0.029224\nv -0.488635 -0.587982 0.326707\nv -0.463811 -0.604420 0.326707\nv 0.794477 -0.222440 0.583305\nv 0.794477 -0.222440 0.583305\nv 0.239367 -0.472302 -0.546137\nv 0.204965 -0.471242 -0.552180\nv -0.677051 -0.067582 0.312425\nv -0.677051 -0.067582 0.312425\nv -0.665214 -0.066248 0.312264\nv -0.665214 -0.066248 0.312264\nv 0.291074 -0.590333 0.088373\nv 0.268005 -0.605486 0.088373\nv -0.920391 -0.070368 0.537683\nv -0.081928 -0.598560 -0.706741\nv -0.060322 -0.590971 -0.710183\nv -0.070144 -0.716815 -0.803719\nv 0.588310 -0.239638 0.645691\nv 0.566853 0.644526 0.549730\nv 0.572670 0.638561 0.544687\nv 0.572670 0.638561 0.544687\nv 0.521207 0.613568 -0.057384\nv -0.320560 0.289021 -0.468389\nv -0.394106 0.333008 -0.392111\nv 0.385600 -0.587982 0.326707\nv 0.369162 -0.563159 0.326707\nv 0.188224 -0.106617 -0.682131\nv 0.187422 -0.163189 -0.677788\nv 0.191017 -0.106087 -0.677000\nv 0.182180 -0.208743 -0.672202\nv 0.191835 -0.063368 -0.671156\nv -0.265138 -0.610549 0.015824\nv -0.447620 -0.829141 -0.048248\nv -0.698796 0.485750 0.020127\nv -0.698796 0.485750 0.020127\nv 0.545504 0.660216 0.575420\nv 0.473251 0.648364 0.010672\nv 0.473100 0.662667 0.037241\nv -0.486304 -0.517249 -0.227918\nv 0.119085 0.158127 1.147180\nv 0.122440 0.154543 1.144884\nv -0.188217 -0.681607 -0.535407\nv -0.152203 -0.666997 -0.542941\nv 0.181076 -0.209733 -0.675041\nv 0.185789 -0.163705 -0.682405\nv -0.264420 -0.670454 -0.523228\nv -0.295419 -0.646037 -0.520051\nv -0.711377 0.257337 0.313245\nv 0.263672 -0.595024 0.104388\nv 0.240978 -0.599724 0.104388\nv -0.546598 -0.761339 0.562642\nv -0.450104 0.513478 -0.226301\nv -0.433827 -0.825826 -0.058455\nv -0.208766 -0.816049 0.245698\nv -0.208766 -0.816049 0.245698\nv 0.580486 0.083588 -0.162817\nv 0.118050 0.167851 1.151391\nv 0.120539 0.172514 1.152662\nv -0.854788 -0.077795 0.404327\nv -0.854788 -0.077795 0.404327\nv -0.880596 -0.101775 0.449833\nv -0.880596 -0.101775 0.449833\nv -0.307381 -0.630184 -0.519400\nv -0.307381 -0.630184 -0.519400\nv -0.304929 -0.628264 -0.539534\nv 0.338689 -0.559224 -0.396611\nv 0.329742 -0.561858 -0.383844\nv 0.385600 -0.479983 0.326707\nv -0.452477 0.385183 -0.294178\nv -0.399888 -0.617869 0.305645\nv -0.647001 -0.408932 0.199227\nv -0.648962 -0.393220 0.231801\nv -0.124741 -0.389612 0.286190\nv -0.146943 -0.375849 0.286188\nv 0.671932 -0.027690 -0.075212\nv 0.675769 -0.007145 -0.068138\nv 0.675769 -0.007145 -0.068138\nv 0.534494 0.666305 0.593197\nv 0.519876 0.579342 -0.119781\nv -0.163413 -0.755323 -0.468300\nv -0.367873 0.192065 1.035365\nv -0.360828 0.204693 1.048004\nv 0.393537 0.341613 -0.385587\nv 0.451376 0.393539 -0.289302\nv 0.154396 -0.281059 0.286203\nv -0.368615 -0.766381 -0.113644\nv -0.368615 -0.797919 -0.113644\nv 0.938632 0.056260 0.519645\nv 0.186358 -0.049506 -0.670135\nv 0.186358 -0.049506 -0.670135\nv 0.348356 -0.560981 -0.409746\nv 0.542777 -0.511088 -0.138816\nv 0.656315 0.007294 -0.060066\nv 0.311825 -0.540236 0.088373\nv -0.379159 -0.632276 -0.443243\nv -0.378974 -0.607803 -0.444633\nv -0.304418 -0.619798 -0.557479\nv -0.304418 -0.619798 -0.557479\nv -0.308924 -0.610159 -0.559098\nv -0.505072 -0.504807 0.326707\nv 0.166040 -0.470417 -0.558985\nv 0.149497 -0.481260 -0.560876\nv -0.434635 -0.624932 0.289473\nv -0.399888 -0.617870 0.289473\nv 0.341125 -0.560882 -0.414833\nv 0.331436 -0.559086 -0.401622\nv -0.735489 0.193753 0.025078\nv -0.756446 0.241027 0.039082\nv -0.756446 0.241027 0.039082\nv -0.497224 0.490508 -0.266949\nv -0.512494 -0.253575 -0.302492\nv -0.512494 -0.253575 -0.302492\nv -0.476309 -0.251992 -0.307364\nv -0.799135 -0.220519 0.592586\nv -0.833719 -0.216915 0.605202\nv -0.833719 -0.216915 0.605202\nv -0.833719 -0.216915 0.605202\nv -0.511002 -0.533983 0.326707\nv -0.887857 0.199061 0.614649\nv -0.881936 0.199496 0.631837\nv -0.881936 0.199496 0.631837\nv 0.291074 -0.590333 0.045822\nv 0.369065 -0.588196 -0.434868\nv 0.359463 -0.571517 -0.423618\nv -0.842209 -0.209729 0.608312\nv -0.842209 -0.209729 0.608312\nv -0.842209 -0.209729 0.608312\nv -0.768787 -0.101715 0.756737\nv -0.768787 -0.101715 0.756737\nv 0.124615 0.176062 1.153082\nv 0.361658 -0.588157 -0.439955\nv 0.352155 -0.571466 -0.428723\nv -0.676105 0.098242 0.004195\nv -0.726705 0.193394 0.034883\nv -0.681398 -0.040778 0.017690\nv -0.685316 -0.020670 0.025266\nv -0.685316 -0.020670 0.025266\nv 0.240978 -0.469389 0.088373\nv 0.213951 -0.474987 0.088373\nv 0.301460 -0.614738 -0.399270\nv 0.336973 -0.599372 -0.367859\nv -0.764596 0.114859 0.774698\nv -0.465975 -0.395688 -0.276171\nv -0.488807 -0.375523 -0.250857\nv -0.488807 -0.375523 -0.250857\nv -0.468289 0.648364 0.010672\nv 0.189932 -0.054615 -0.668702\nv 0.525252 -0.492252 -0.130945\nv 0.523486 -0.568730 0.305645\nv 0.503910 -0.598293 0.305645\nv -0.921820 0.153516 0.637204\nv -0.894275 0.195110 0.627133\nv -0.894275 0.195110 0.627133\nv -0.894275 0.195110 0.627133\nv 0.667054 -0.203084 0.356244\nv 0.667054 -0.203084 0.356244\nv 0.684159 -0.091903 0.352298\nv 0.684159 -0.091903 0.352298\nv -0.925442 0.142225 0.638518\nv 0.474346 -0.617869 0.305645\nv 0.349282 -0.496572 0.210595\nv 0.370359 -0.464743 0.210595\nv -0.767217 0.105007 0.780480\nv -0.767217 0.105007 0.780480\nv -0.767217 0.105007 0.780480\nv -0.303101 -0.624918 -0.552639\nv -0.303101 -0.624918 -0.552639\nv 0.439599 -0.624932 0.305645\nv 0.665699 -0.089715 0.349249\nv 0.665743 -0.091168 0.352603\nv 0.665743 -0.091168 0.352603\nv -0.680891 0.340538 -0.090609\nv -0.673929 0.378805 -0.101431\nv -0.236014 -0.480748 0.104388\nv -0.213320 -0.485448 0.104388\nv -0.595978 -0.226798 -0.140277\nv -0.635303 -0.160992 -0.119410\nv 0.530548 -0.533983 0.305645\nv 0.349283 -0.571394 0.210595\nv 0.341679 -0.533983 0.210595\nv -0.303934 -0.627544 -0.544578\nv -0.687853 0.302271 -0.079786\nv -0.662691 -0.003386 0.034996\nv -0.216091 -0.627999 -0.621825\nv -0.199856 -0.621413 -0.625221\nv 0.327313 -0.522565 -0.419736\nv 0.289852 -0.540984 -0.442694\nv 0.402517 -0.564887 -0.294446\nv 0.479138 -0.513979 -0.184185\nv 0.104160 -0.387980 0.290990\nv 0.081102 -0.382569 0.290990\nv -0.522447 -0.053757 -0.294747\nv -0.538359 -0.030776 -0.261473\nv 0.474346 -0.450096 0.305645\nv 0.439599 -0.443034 0.305645\nv 0.130410 -0.271849 0.290990\nv 0.107353 -0.266439 0.290990\nv -0.689896 0.253407 -0.068510\nv -0.689896 0.253407 -0.068510\nv 0.417825 -0.453414 -0.347631\nv 0.356372 -0.492850 -0.396467\nv 0.127469 -0.383788 0.290990\nv -0.327859 -0.494034 -0.397926\nv -0.293179 -0.512411 -0.420769\nv -0.377834 -0.744463 -0.102354\nv -0.383890 -0.749560 -0.110538\nv -0.383890 -0.749560 -0.110538\nv 0.503910 -0.469672 0.305645\nv -0.286110 -0.590333 0.045822\nv -0.301264 -0.567263 0.045822\nv -0.361897 -0.669486 -0.418083\nv -0.372993 -0.653820 -0.433705\nv -0.125284 0.182304 1.160272\nv -0.133159 0.182266 1.158283\nv 0.152999 -0.217635 -0.673844\nv 0.153332 -0.164392 -0.683522\nv 0.147600 -0.371310 0.290990\nv 0.162958 -0.106375 -0.680683\nv 0.159370 -0.061625 -0.676434\nv 0.084044 -0.270631 0.290990\nv 0.063914 -0.283109 0.290990\nv -0.161917 -0.570929 0.051406\nv -0.179125 -0.597126 0.051406\nv 0.940168 0.103159 0.633961\nv 0.940168 0.103159 0.633961\nv 0.934991 0.103135 0.648332\nv 0.934991 0.103135 0.648332\nv -0.186913 -0.609577 -0.628518\nv 0.519791 -0.375525 -0.250856\nv 0.519791 -0.375525 -0.250856\nv 0.537298 -0.380018 -0.241285\nv 0.537298 -0.380018 -0.241285\nv -0.222640 -0.710802 -0.229856\nv -0.143108 -0.691685 -0.288707\nv -0.151594 -0.824703 0.203393\nv -0.151594 -0.824703 0.203393\nv -0.151594 -0.824703 0.203393\nv -0.208766 -0.838445 0.245698\nv -0.208766 -0.838445 0.245698\nv -0.155560 -0.540237 0.051406\nv -0.269811 -0.604818 -0.614608\nv -0.264418 -0.611964 -0.614902\nv -0.468138 0.662667 0.037241\nv -0.095043 -0.613804 -0.698136\nv -0.069976 -0.702234 -0.804186\nv -0.069976 -0.702234 -0.804186\nv 0.715644 0.490251 0.029381\nv 0.715644 0.490251 0.029381\nv 0.734253 0.428098 0.037574\nv 0.537134 -0.513488 -0.134864\nv 0.537134 -0.513488 -0.134864\nv 0.532650 -0.504054 -0.133993\nv 0.532650 -0.504054 -0.133993\nv 0.404852 -0.450096 0.305645\nv 0.375289 -0.469672 0.305645\nv 0.224078 -0.539912 -0.608885\nv 0.236641 -0.540299 -0.606678\nv 0.509896 0.518092 -0.224488\nv -0.169087 0.123631 -0.609167\nv -0.162869 0.220022 -0.572792\nv -0.162869 0.220022 -0.572792\nv -0.162869 0.220022 -0.572792\nv 0.439599 -0.624932 0.214746\nv 0.404852 -0.617870 0.214746\nv -0.941971 0.018497 0.560474\nv -0.941167 0.011356 0.550403\nv -0.276575 -0.588303 -0.614916\nv 0.551787 0.057487 -0.252015\nv 0.542665 0.059443 -0.249571\nv -0.468380 0.674429 0.057257\nv -0.468380 0.674429 0.057257\nv 0.538945 -0.540876 -0.128114\nv 0.538945 -0.540876 -0.128114\nv -0.166520 0.124216 -0.602232\nv -0.166520 0.124216 -0.602232\nv -0.166520 0.124216 -0.602232\nv 0.166877 -0.209270 -0.667680\nv -0.117692 0.179439 1.161010\nv -0.266706 -0.614333 0.051406\nv -0.292903 -0.597125 0.051406\nv 0.533544 0.057487 -0.247127\nv -0.277739 -0.579441 -0.615507\nv 0.162335 -0.305496 0.290990\nv 0.149857 -0.285366 0.290990\nv -0.172544 0.062939 -0.630590\nv 0.375289 -0.469672 0.289473\nv 0.355713 -0.499236 0.289473\nv 0.404852 -0.450096 0.289473\nv 0.455066 0.513478 -0.226301\nv -0.939641 0.002780 0.545686\nv -0.926118 -0.059964 0.539285\nv -0.374977 -0.161277 -0.480145\nv -0.420584 -0.135506 -0.425588\nv 0.049178 -0.348921 0.290990\nv 0.061656 -0.369051 0.290990\nv 0.748375 0.425150 0.336073\nv 0.752689 0.376619 0.352255\nv 0.752689 0.376619 0.352255\nv -0.265139 -0.469924 0.015824\nv -0.289998 -0.486253 0.015824\nv 0.161117 -0.351863 0.290990\nv -0.250444 -0.622972 -0.616334\nv 0.166528 -0.328805 0.290990\nv 0.689863 0.098750 0.113008\nv 0.701386 0.119170 0.056279\nv -0.498946 -0.598293 0.201620\nv -0.518522 -0.568730 0.201620\nv 0.548854 0.052393 -0.254864\nv 0.541772 0.053912 -0.252966\nv 0.677160 -0.189630 0.281518\nv 0.682606 -0.089060 0.323707\nv 0.682606 -0.089060 0.323707\nv 0.044986 -0.325612 0.290990\nv 0.533439 -0.542730 -0.139820\nv 0.533439 -0.542730 -0.139820\nv 0.502186 0.490508 -0.266949\nv 0.443451 -0.545636 -0.321127\nv 0.564126 -0.262833 -0.268519\nv -0.267388 -0.546188 -0.620270\nv -0.275478 -0.561848 -0.617471\nv 0.523482 -0.498433 -0.128213\nv 0.669578 0.567259 0.267592\nv 0.637399 0.595784 0.373156\nv 0.689851 0.516144 0.518772\nv 0.614266 0.552049 0.690722\nv -0.524952 -0.571393 0.205772\nv -0.532556 -0.533983 0.205772\nv -0.169930 0.063827 -0.623877\nv -0.306327 -0.511112 0.015824\nv -0.233660 -0.628541 -0.618739\nv 0.591964 0.075704 -0.165937\nv 0.591964 0.075704 -0.165937\nv 0.597507 0.064322 -0.167554\nv -0.286111 -0.490140 0.045822\nv -0.263041 -0.474986 0.045822\nv 0.370359 -0.603223 0.210595\nv 0.523486 -0.499236 0.305645\nv 0.569349 -0.575295 -0.139410\nv 0.926746 0.117114 0.629132\nv 0.050397 -0.302555 0.290990\nv -0.939597 0.041186 0.611159\nv -0.939597 0.041186 0.611159\nv -0.928243 0.043235 0.608385\nv -0.185917 -0.490140 0.076024\nv -0.208987 -0.474986 0.076025\nv -0.147229 -0.698968 0.200163\nv -0.147229 -0.698968 0.200163\nv -0.140238 -0.697288 0.194990\nv -0.140238 -0.697288 0.194990\nv -0.140238 -0.697288 0.194990\nv -0.179276 -0.042593 -0.659362\nv -0.314994 0.296643 -0.461998\nv -0.388575 0.341613 -0.385587\nv -0.312358 -0.540236 0.015824\nv -0.306327 -0.569360 0.015824\nv 0.402189 -0.624300 0.210595\nv 0.524423 0.053576 -0.244683\nv 0.591965 0.075704 -0.138430\nv 0.773258 0.179361 0.291529\nv -0.295502 -0.540236 0.104388\nv 0.547436 -0.001836 -0.233547\nv 0.547436 -0.001836 -0.233547\nv 0.542697 -0.008591 -0.243315\nv -0.170667 -0.039365 -0.661647\nv 0.448733 0.487055 -0.267465\nv -0.179125 -0.483347 0.070440\nv 0.578496 -0.638604 -0.140998\nv 0.584824 -0.618228 -0.145532\nv 0.577239 -0.596009 -0.141999\nv -0.171525 -0.034475 -0.663789\nv -0.181635 -0.038214 -0.661138\nv 0.508839 -0.464743 0.210595\nv 0.529916 -0.496572 0.210595\nv -0.940208 0.040746 0.602742\nv 0.652121 -0.212093 0.376529\nv 0.652121 -0.212093 0.376529\nv 0.667195 -0.212337 0.374973\nv 0.667195 -0.212337 0.374973\nv 0.822612 -0.084310 0.736578\nv 0.823557 -0.097843 0.729606\nv -0.173272 -0.064477 -0.655983\nv 0.126401 0.144252 1.145774\nv 0.134276 0.144214 1.143785\nv -0.159089 0.224587 -0.571150\nv 0.734309 0.485557 0.384644\nv 0.747528 0.367766 0.043094\nv -0.939720 0.022822 0.557779\nv -0.180402 -0.558919 -0.634173\nv -0.176562 -0.576324 -0.633281\nv -0.942153 0.036383 0.609104\nv -0.941510 0.034924 0.612404\nv -0.941510 0.034924 0.612404\nv 0.532919 0.000564 -0.227863\nv 0.166816 -0.354400 0.286188\nv -0.156940 -0.050971 -0.669488\nv -0.162511 -0.042593 -0.665464\nv -0.566305 -0.597710 -0.153436\nv -0.558425 -0.577134 -0.150826\nv -0.942495 0.035666 0.602977\nv -0.884083 -0.102051 0.461474\nv -0.542903 0.009810 -0.232028\nv -0.536686 0.008117 -0.244887\nv 0.439599 -0.443034 0.289473\nv -0.443248 -0.141472 -0.421855\nv -0.472403 -0.114702 -0.382990\nv 0.537520 -0.533983 0.210595\nv 0.529916 -0.571393 0.210595\nv -0.938814 0.014864 0.546728\nv 0.547984 -0.660163 -0.123974\nv 0.527770 -0.662720 -0.113423\nv 0.655437 -0.274720 0.329913\nv 0.659051 -0.330738 0.276538\nv 0.659051 -0.330738 0.276538\nv 0.112816 0.167134 1.158476\nv 0.116547 0.174123 1.160380\nv 0.213951 -0.474986 0.018964\nv 0.534066 -0.020889 -0.261097\nv -0.161969 -0.038214 -0.668296\nv 0.737895 0.392014 0.179626\nv 0.730226 0.433559 0.172233\nv 0.730226 0.433559 0.172233\nv 0.743807 0.351124 0.186266\nv 0.743807 0.351124 0.186266\nv 0.750121 0.345026 0.149386\nv 0.750121 0.345026 0.149386\nv -0.203856 -0.532794 -0.632453\nv -0.189882 -0.543801 -0.633886\nv 0.921588 0.117120 0.643349\nv -0.357100 -0.475515 -0.374994\nv 0.117540 0.162809 1.149470\nv 0.578654 -0.616753 -0.141706\nv 0.431725 -0.526352 -0.301673\nv 0.181888 -0.247094 -0.654728\nv 0.181888 -0.247094 -0.654728\nv 0.171524 -0.249326 -0.657658\nv -0.221696 -0.535163 -0.629387\nv -0.207535 -0.539862 -0.631415\nv 0.141868 0.147079 1.143047\nv -0.236014 -0.599724 0.104388\nv -0.213320 -0.595024 0.104388\nv 0.517658 -0.044274 -0.294911\nv 0.496115 -0.074242 -0.338243\nv 0.503686 -0.552070 -0.220122\nv 0.539568 -0.540727 -0.143967\nv 0.539568 -0.540727 -0.143967\nv -0.161917 -0.509544 0.070440\nv 0.151708 0.159384 1.145581\nv 0.147977 0.152395 1.143677\nv 0.059607 -0.278569 0.286226\nv 0.081808 -0.264807 0.286223\nv -0.923355 -0.058821 0.534600\nv -0.936851 0.003928 0.540998\nv 0.152472 0.166941 1.148460\nv 0.860774 0.055785 0.735503\nv 0.668159 -0.330316 0.275632\nv 0.668159 -0.330316 0.275632\nv 0.466601 -0.106290 -0.384582\nv -0.161806 -0.163226 -0.674916\nv -0.159467 -0.106160 -0.676298\nv 0.761750 0.422669 0.150406\nv 0.761750 0.422669 0.150406\nv 0.755436 0.428767 0.187285\nv 0.755436 0.428767 0.187285\nv 0.498025 -0.529286 -0.230766\nv 0.537527 -0.513576 -0.150526\nv 0.537527 -0.513576 -0.150526\nv -0.462184 -0.106785 -0.364351\nv 0.572967 -0.634756 -0.138100\nv 0.166770 -0.163226 -0.674916\nv 0.164431 -0.106160 -0.676298\nv -0.118730 0.219767 -0.583211\nv -0.699559 0.133707 0.069857\nv -0.697417 0.129355 0.070164\nv -0.697417 0.129355 0.070164\nv -0.434635 -0.436063 0.210595\nv -0.397225 -0.443666 0.210595\nv -0.171768 -0.136426 -0.661865\nv 0.161737 -0.247094 -0.662063\nv 0.161737 -0.247094 -0.662063\nv 0.718473 -0.071093 0.771016\nv 0.718473 -0.071093 0.771016\nv 0.718473 -0.071093 0.771016\nv 0.758345 0.096073 0.783686\nv -0.195745 -0.549148 -0.632624\nv 0.150157 0.173959 1.151892\nv 0.555679 -0.649554 -0.143382\nv 0.567301 -0.636404 -0.149737\nv -0.122873 -0.870549 -0.545404\nv -0.122873 -0.870549 -0.545404\nv -0.126124 -0.767725 -0.545404\nv -0.126124 -0.767725 -0.545404\nv -0.937882 0.009224 0.542714\nv 0.491268 -0.517249 -0.227918\nv 0.531222 -0.502480 -0.149050\nv 0.531222 -0.502480 -0.149050\nv -0.236014 -0.620690 0.070440\nv -0.156773 -0.247094 -0.662063\nv -0.156773 -0.247094 -0.662063\nv -0.149840 -0.237498 -0.667579\nv -0.149840 -0.237498 -0.667579\nv -0.158480 -0.244367 -0.647747\nv -0.148618 -0.313026 -0.616429\nv 0.512630 -0.460952 0.257233\nv 0.534860 -0.494524 0.257233\nv 0.675199 -0.067668 0.361645\nv 0.675679 -0.069531 0.368702\nv 0.675679 -0.069531 0.368702\nv -0.114432 0.147189 1.148722\nv -0.121437 0.144252 1.145774\nv -0.161864 -0.240957 -0.641909\nv 0.417069 -0.150277 -0.448552\nv 0.401784 -0.161176 -0.464679\nv 0.401784 -0.161176 -0.464679\nv 0.401784 -0.161176 -0.464679\nv -0.657783 0.405770 -0.116752\nv -0.560756 -0.653495 -0.133506\nv -0.543020 -0.660163 -0.123974\nv 0.736540 0.427460 0.135354\nv 0.736540 0.427460 0.135354\nv -0.922123 -0.064031 0.535114\nv -0.539894 -0.653366 -0.123375\nv -0.556357 -0.647725 -0.131787\nv -0.355484 0.226816 1.064097\nv -0.371176 0.217648 1.045780\nv -0.236014 -0.463892 0.015824\nv -0.891854 -0.110218 0.600840\nv 0.853427 0.043840 0.741390\nv 0.175728 -0.567264 0.018964\nv -0.156085 -0.063195 -0.672391\nv -0.573532 -0.638604 -0.140998\nv 0.189472 -0.576588 -0.632113\nv 0.192712 -0.561903 -0.632866\nv 0.415619 -0.166275 -0.458515\nv 0.415619 -0.166275 -0.458515\nv -0.261136 -0.551163 -0.621136\nv -0.267962 -0.564374 -0.618775\nv 0.192560 -0.575020 -0.611196\nv 0.194177 -0.587600 -0.609791\nv -0.507835 -0.032738 -0.307447\nv -0.489644 -0.057129 -0.342718\nv 0.152193 -0.805354 0.200163\nv 0.152193 -0.805354 0.200163\nv 0.152193 -0.805354 0.200163\nv 0.372495 -0.813174 -0.097559\nv -0.476366 -0.072294 -0.364637\nv 0.425959 0.453946 -0.276187\nv 0.268964 -0.624286 -0.527101\nv -0.109403 0.152559 1.152165\nv -0.164536 -0.243529 -0.648392\nv -0.154684 -0.312504 -0.617315\nv -0.904036 -0.108262 0.605026\nv 0.444528 -0.566252 -0.325318\nv 0.160403 -0.047806 -0.673048\nv 0.523486 -0.568730 0.214746\nv 0.503910 -0.598293 0.214746\nv -0.043434 -0.874412 -0.545404\nv -0.043434 -0.874412 -0.545404\nv -0.178823 -0.593918 -0.631317\nv 0.161904 -0.050971 -0.669488\nv 0.436746 -0.432681 -0.321965\nv 0.483593 -0.395672 -0.276147\nv 0.161049 -0.063195 -0.672391\nv 0.404852 -0.617869 0.305645\nv -0.923732 -0.069140 0.541947\nv -0.925212 -0.063740 0.539733\nv 0.436813 -0.133830 -0.424496\nv -0.098132 -0.619965 -0.692993\nv -0.098132 -0.619965 -0.692993\nv -0.101321 -0.616894 -0.692250\nv -0.101321 -0.616894 -0.692250\nv 0.424339 -0.432684 -0.321972\nv 0.395643 -0.453187 -0.347354\nv -0.725606 0.178745 0.073356\nv -0.724995 0.189165 0.132206\nv 0.477367 -0.114702 -0.382990\nv 0.448212 -0.141472 -0.421855\nv -0.091052 -0.611308 -0.704783\nv -0.095970 -0.615773 -0.700428\nv -0.095970 -0.615773 -0.700428\nv 0.470939 -0.395688 -0.276171\nv -0.904856 -0.084386 0.496777\nv -0.901113 -0.098001 0.502844\nv 0.781606 0.395622 0.164341\nv 0.773720 0.438649 0.156370\nv 0.773720 0.438649 0.156370\nv -0.722169 0.169539 0.063356\nv -0.722169 0.169539 0.063356\nv -0.724037 0.173724 0.065413\nv -0.724037 0.173724 0.065413\nv 0.400141 -0.438722 0.257233\nv 0.291074 -0.590333 0.018964\nv 0.268005 -0.605486 0.018964\nv -0.526258 -0.502480 -0.149050\nv -0.526258 -0.502480 -0.149050\nv 0.702381 0.129355 0.070164\nv 0.702381 0.129355 0.070164\nv 0.719775 0.128721 0.069240\nv 0.719775 0.128721 0.069240\nv 0.308065 -0.624918 -0.552639\nv 0.308065 -0.624918 -0.552639\nv 0.308898 -0.627544 -0.544578\nv 0.407873 -0.453187 -0.347352\nv 0.394326 0.667354 0.839935\nv 0.394326 0.667354 0.839935\nv 0.400151 0.660364 0.841632\nv -0.152046 -0.309637 -0.610911\nv -0.142553 -0.382071 -0.571660\nv -0.139116 -0.385473 -0.577065\nv 0.892819 0.199061 0.614649\nv 0.886898 0.199496 0.631837\nv 0.886898 0.199496 0.631837\nv 0.704523 0.133707 0.069857\nv 0.894720 0.114861 0.430829\nv -0.306861 -0.540236 0.076025\nv -0.301264 -0.567263 0.076025\nv 0.451113 0.395312 -0.330284\nv 0.451113 0.395312 -0.330284\nv -0.385035 -0.159567 -0.480320\nv -0.370439 -0.182019 -0.487223\nv -0.263041 -0.605486 0.088373\nv -0.236014 -0.611083 0.088373\nv -0.264000 -0.624286 -0.527101\nv -0.079501 -0.604641 -0.707156\nv 0.769560 0.114859 0.774698\nv 0.608758 0.016838 -0.162874\nv 0.612206 0.051190 -0.150082\nv 0.612206 0.051190 -0.150082\nv 0.303910 -0.613644 -0.557525\nv 0.303910 -0.613644 -0.557525\nv 0.309382 -0.619798 -0.557479\nv 0.309382 -0.619798 -0.557479\nv 0.311825 -0.540236 0.045822\nv 0.306228 -0.567263 0.045822\nv -0.327465 -0.242118 -0.504933\nv 0.720417 0.166277 0.077806\nv 0.720417 0.166277 0.077806\nv 0.722919 0.171871 0.085451\nv -0.286110 -0.590333 0.076025\nv 0.130032 0.864508 0.486232\nv 0.002481 0.874786 0.497061\nv -0.126125 -0.767725 -0.443603\nv -0.126125 -0.767725 -0.443603\nv -0.043434 -0.767725 -0.443602\nv -0.043434 -0.767725 -0.443602\nv -0.254444 -0.534352 -0.623567\nv 0.306228 -0.513209 0.045822\nv -0.154406 -0.061625 -0.676434\nv -0.155439 -0.047806 -0.673048\nv -0.166507 0.060130 -0.630237\nv -0.163053 0.121245 -0.608690\nv -0.169918 -0.068125 -0.662260\nv -0.277548 -0.301649 -0.522267\nv -0.247017 -0.332702 -0.533622\nv -0.247017 -0.332702 -0.533622\nv -0.405447 -0.138083 -0.460052\nv -0.391132 -0.150633 -0.476980\nv -0.391132 -0.150633 -0.476980\nv -0.174446 -0.475468 -0.599686\nv -0.174446 -0.475468 -0.599686\nv -0.173667 -0.498185 -0.594746\nv -0.173667 -0.498185 -0.594746\nv 0.512399 0.451193 -0.279443\nv 0.493880 0.475098 -0.285568\nv 0.493880 0.475098 -0.285568\nv -0.263041 -0.605486 0.076024\nv -0.236014 -0.611083 0.076024\nv -0.157994 -0.106375 -0.680683\nv -0.171517 -0.492558 -0.598800\nv 0.388209 0.691044 0.814913\nv 0.585694 -0.031069 -0.217553\nv 0.585583 -0.034644 -0.197809\nv 0.585583 -0.034644 -0.197809\nv -0.931763 0.044321 0.510562\nv -0.612521 0.424220 0.740609\nv -0.687244 0.402311 0.559562\nv 0.593902 -0.059843 -0.188115\nv 0.535361 -0.267792 -0.259412\nv 0.535361 -0.267792 -0.259412\nv -0.434635 -0.430702 0.282160\nv -0.395177 -0.438722 0.282160\nv -0.684899 0.098750 0.113009\nv -0.696422 0.119170 0.056279\nv 0.317457 -0.600082 -0.557846\nv 0.317457 -0.600082 -0.557846\nv 0.320171 -0.595358 -0.553189\nv 0.320171 -0.595358 -0.553189\nv 0.493771 -0.375523 -0.250857\nv 0.493771 -0.375523 -0.250857\nv 0.521892 -0.262085 -0.276595\nv 0.521892 -0.262085 -0.276595\nv 0.525406 0.424375 -0.272000\nv 0.518510 0.452620 -0.279980\nv -0.567891 0.034689 -0.221021\nv -0.566162 0.026048 -0.220558\nv -0.193950 -0.498172 0.104388\nv -0.204252 -0.607261 -0.605432\nv -0.194997 -0.598797 -0.607790\nv 0.569018 -0.574703 -0.155051\nv -0.561483 0.018673 -0.219304\nv -0.561483 0.018673 -0.219304\nv 0.480652 0.392752 -0.321377\nv 0.480652 0.392752 -0.321377\nv 0.480652 0.392752 -0.321377\nv 0.653489 -0.307177 0.243469\nv 0.653051 -0.308671 0.251185\nv 0.653051 -0.308671 0.251185\nv -0.192013 -0.061604 -0.662742\nv -0.190735 -0.106352 -0.668763\nv -0.345043 0.115459 1.015362\nv -0.324650 0.106243 1.028206\nv 0.718421 0.162009 0.075841\nv -0.495549 0.338827 -0.283987\nv -0.467020 0.335101 -0.279117\nv 0.465062 0.387783 -0.316365\nv 0.465062 0.387783 -0.316365\nv 0.465062 0.387783 -0.316365\nv 0.722868 0.132607 0.068959\nv 0.654235 -0.303882 0.236745\nv 0.654235 -0.303882 0.236745\nv 0.654235 -0.303882 0.236745\nv -0.573120 0.023065 -0.222422\nv -0.566825 0.013143 -0.220735\nv -0.019570 -0.758653 0.084591\nv -0.019570 -0.758653 0.084591\nv -0.019570 -0.680272 0.084591\nv -0.019570 -0.680272 0.084591\nv -0.170021 -0.068484 -0.665629\nv -0.166546 0.060378 -0.633517\nv -0.584471 -0.403144 0.026024\nv -0.584471 -0.403144 0.026024\nv -0.573000 -0.423691 0.000230\nv -0.181226 -0.517542 0.104388\nv -0.186729 -0.163455 -0.669653\nv -0.181007 -0.210268 -0.664267\nv 0.462034 0.391984 -0.331267\nv 0.462034 0.391984 -0.331267\nv 0.291074 -0.490140 0.008941\nv -0.376288 0.154609 1.008667\nv -0.363139 0.132408 1.008515\nv 0.301205 -0.621112 -0.544374\nv 0.301213 -0.621500 -0.541988\nv -0.240425 -0.608375 -0.599078\nv -0.228424 -0.612357 -0.600797\nv -0.382411 0.178553 1.015794\nv 0.184088 -0.597125 0.070440\nv 0.166881 -0.570928 0.070440\nv 0.672837 -0.305568 0.234420\nv 0.672837 -0.305568 0.234420\nv 0.671950 -0.309325 0.241452\nv 0.577245 -0.597076 -0.157566\nv -0.198602 -0.164392 -0.665238\nv -0.191709 -0.217635 -0.657949\nv 0.720813 0.335555 -0.111613\nv 0.729400 0.290432 -0.099208\nv 0.712385 0.380629 -0.123937\nv -0.510134 0.408691 -0.303852\nv -0.524077 0.342553 -0.288857\nv -0.524077 0.342553 -0.288857\nv -0.524077 0.342553 -0.288857\nv 0.578889 -0.620240 -0.156915\nv 0.164634 -0.540236 0.015824\nv 0.736780 0.238548 -0.086033\nv 0.312345 -0.630184 -0.519400\nv 0.312345 -0.630184 -0.519400\nv 0.301247 -0.623177 -0.521946\nv 0.301247 -0.623177 -0.521946\nv 0.451558 0.445565 -0.301074\nv 0.445700 0.434854 -0.329915\nv 0.445700 0.434854 -0.329915\nv 0.445700 0.434854 -0.329915\nv -0.540159 0.344373 -0.244984\nv -0.540159 0.344373 -0.244984\nv -0.531178 0.341010 -0.277176\nv -0.619626 -0.416010 0.036486\nv -0.520444 0.424375 -0.272000\nv 0.306228 -0.567263 0.018964\nv -0.561284 0.433538 0.832591\nv 0.578401 0.628351 0.549916\nv 0.578401 0.628351 0.549916\nv 0.560976 0.614728 0.533738\nv -0.659043 -0.088561 0.325447\nv -0.659043 -0.088561 0.325447\nv -0.659043 -0.088561 0.325447\nv -0.652050 -0.188667 0.283747\nv 0.268145 -0.600627 -0.616359\nv 0.263595 -0.606657 -0.616607\nv 0.190881 -0.490140 0.018964\nv -0.177516 -0.225301 -0.661666\nv -0.173017 -0.233304 -0.661026\nv -0.173017 -0.233304 -0.661026\nv -0.160321 -0.163442 -0.679268\nv 0.348650 -0.533983 0.305645\nv 0.355713 -0.568730 0.305645\nv -0.344319 -0.496572 0.205772\nv -0.365395 -0.464743 0.205772\nv 0.395013 0.453639 1.047622\nv 0.512057 0.446482 0.924358\nv -0.672196 -0.189630 0.281518\nv -0.677642 -0.089061 0.323707\nv -0.677642 -0.089061 0.323707\nv 0.290244 0.456592 1.125094\nv 0.290244 0.456592 1.125094\nv 0.355713 -0.499236 0.305645\nv 0.268394 -0.628102 -0.426005\nv 0.226523 -0.645026 -0.459859\nv 0.363232 -0.533983 0.326707\nv 0.369162 -0.504807 0.326707\nv 0.875883 -0.175921 0.611196\nv 0.875883 -0.175921 0.611196\nv 0.870930 -0.175986 0.624832\nv 0.870930 -0.175986 0.624832\nv -0.238209 -0.527766 -0.626963\nv 0.742503 0.237905 -0.078383\nv 0.503910 -0.598293 0.249920\nv 0.523486 -0.568730 0.249920\nv 0.352192 -0.431203 -0.363054\nv 0.391230 -0.433603 -0.354869\nv 0.391230 -0.433603 -0.354869\nv 0.391230 -0.433603 -0.354869\nv -0.336715 -0.533983 0.210595\nv -0.344319 -0.496572 0.210595\nv 0.398056 -0.437920 -0.352252\nv 0.398056 -0.437920 -0.352252\nv -0.631037 -0.407884 0.111687\nv -0.626195 -0.426390 0.098223\nv -0.397225 -0.443666 0.205772\nv -0.641481 -0.402480 0.085004\nv -0.323180 -0.572968 -0.511064\nv -0.320598 -0.592627 -0.509752\nv 0.551562 -0.761339 0.562642\nv 0.426263 -0.124694 -0.440425\nv 0.410411 -0.138083 -0.460052\nv 0.481330 -0.072294 -0.364637\nv 0.469411 -0.085816 -0.384170\nv -0.419376 -0.432684 -0.321972\nv -0.390679 -0.453187 -0.347354\nv -0.504346 0.436841 -0.309896\nv 0.396096 -0.150633 -0.476980\nv 0.396096 -0.150633 -0.476980\nv 0.467150 0.450535 -0.306086\nv 0.461291 0.439823 -0.334928\nv 0.461291 0.439823 -0.334928\nv 0.461291 0.439823 -0.334928\nv 0.439599 -0.637264 0.257233\nv 0.400141 -0.629244 0.257233\nv 0.771643 0.362456 0.161143\nv 0.771643 0.362456 0.161143\nv 0.765329 0.368554 0.198023\nv 0.765329 0.368554 0.198023\nv -0.148035 -0.217635 -0.673844\nv 0.389999 -0.159567 -0.480320\nv 0.190910 -0.237497 -0.654438\nv 0.190910 -0.237497 -0.654438\nv 0.185971 -0.210268 -0.664267\nv 0.182480 -0.225301 -0.661666\nv 0.334353 -0.428439 -0.380647\nv 0.371560 -0.808219 -0.110916\nv 0.371560 -0.808219 -0.110916\nv 0.373579 -0.797919 -0.113644\nv -0.220640 -0.527225 -0.630050\nv -0.402909 -0.453187 -0.347352\nv -0.369104 -0.475515 -0.374993\nv 0.541750 0.467108 -0.213941\nv 0.615688 0.447272 -0.178410\nv 0.196673 -0.217635 -0.657949\nv 0.313920 -0.592420 -0.553020\nv 0.313920 -0.592420 -0.553020\nv 0.311825 -0.596948 -0.557861\nv 0.311825 -0.596948 -0.557861\nv 0.177981 -0.233304 -0.661026\nv 0.177981 -0.233304 -0.661026\nv 0.314646 -0.590903 -0.544769\nv -0.266376 0.594706 1.059859\nv -0.259330 0.589317 1.067964\nv -0.307379 -0.539037 -0.527551\nv -0.311806 -0.573486 -0.523705\nv 0.223078 -0.665057 -0.462657\nv 0.436785 0.421844 -0.323272\nv 0.436785 0.421844 -0.323272\nv 0.436785 0.421844 -0.323272\nv 0.442643 0.432555 -0.294431\nv -0.462722 0.466967 -0.312489\nv 0.203566 -0.164392 -0.665238\nv 0.669460 -0.257688 0.313333\nv 0.671991 -0.311026 0.269313\nv 0.671991 -0.311026 0.269313\nv 0.547777 -0.252166 0.535197\nv 0.547777 -0.252166 0.535197\nv 0.547777 -0.252166 0.535197\nv -0.938302 0.037618 0.616205\nv -0.938302 0.037618 0.616205\nv -0.938302 0.037618 0.616205\nv -0.599226 -0.012524 -0.171996\nv -0.603794 0.016838 -0.162874\nv -0.185556 -0.052906 0.500018\nv -0.309527 -0.590840 -0.522547\nv -0.309527 -0.590840 -0.522547\nv -0.165624 -0.081579 0.500018\nv 0.767279 0.391809 0.156074\nv -0.289752 -0.507451 -0.522702\nv -0.305592 -0.538113 -0.517221\nv 0.268005 -0.474986 0.008941\nv -0.161917 -0.509544 0.051406\nv -0.927036 0.039751 0.613431\nv -0.588938 -0.059844 -0.188115\nv -0.530397 -0.267792 -0.259412\nv -0.530397 -0.267792 -0.259412\nv -0.192050 -0.059751 0.510199\nv -0.937144 0.033102 0.616939\nv -0.935937 0.027971 0.616503\nv 0.375345 -0.487365 -0.369525\nv 0.345885 -0.505883 -0.392457\nv 0.375403 -0.182019 -0.487223\nv 0.538835 -0.655463 -0.134618\nv 0.375289 -0.598293 0.305645\nv -0.236519 -0.535620 -0.626783\nv 0.022415 0.216902 -0.589522\nv 0.022415 0.216902 -0.589522\nv 0.022415 0.216902 -0.589522\nv 0.022415 0.216902 -0.589522\nv 0.007465 0.216833 -0.590198\nv -0.504518 0.473286 -0.277224\nv -0.494396 0.482139 -0.279601\nv -0.494396 0.482139 -0.279601\nv 0.002481 0.216879 -0.592387\nv 0.002481 0.216879 -0.592387\nv 0.002481 0.216879 -0.592387\nv 0.002481 0.216879 -0.592387\nv 0.002481 0.216879 -0.592387\nv 0.084464 -0.604641 -0.707156\nv 0.064064 -0.597795 -0.710338\nv 0.017911 -0.829487 -0.776665\nv 0.096016 -0.611308 -0.704783\nv 0.355411 0.164902 1.011731\nv 0.346638 0.150089 1.011630\nv -0.590095 0.019556 -0.179205\nv -0.595117 0.051190 -0.168420\nv -0.595117 0.051190 -0.168420\nv -0.595117 0.051190 -0.168420\nv -0.627019 -0.436573 0.061292\nv 0.207623 -0.107323 -0.664497\nv 0.074939 -0.702234 -0.804186\nv 0.074939 -0.702234 -0.804186\nv 0.123041 0.218352 -0.578241\nv 0.075195 -0.829487 -0.771777\nv 0.075195 -0.829487 -0.771777\nv -0.185918 -0.490140 0.045822\nv -0.170764 -0.513209 0.045822\nv 0.191693 -0.163455 -0.669653\nv -0.189423 -0.047801 -0.660678\nv 0.394587 0.717977 0.302886\nv 0.423997 0.683398 0.249658\nv 0.100933 -0.615773 -0.700428\nv 0.100933 -0.615773 -0.700428\nv 0.103407 -0.611156 -0.700115\nv 0.103407 -0.611156 -0.700115\nv 0.427109 0.685922 0.250328\nv 0.397498 0.720706 0.303896\nv 0.002482 -0.690806 -0.812782\nv 0.152193 -0.698968 0.200163\nv 0.152193 -0.698968 0.200163\nv 0.145202 -0.697288 0.194990\nv 0.145202 -0.697288 0.194990\nv 0.145202 -0.697288 0.194990\nv -0.607242 0.051190 -0.168420\nv -0.607242 0.051190 -0.168420\nv 0.517458 -0.253575 -0.302492\nv 0.517458 -0.253575 -0.302492\nv 0.581667 -0.029589 -0.226223\nv 0.581667 -0.029589 -0.226223\nv -0.291538 -0.508375 -0.533031\nv 0.190881 -0.590333 0.088373\nv 0.175728 -0.567263 0.088373\nv -0.170116 -0.018124 -0.659184\nv -0.170116 -0.018124 -0.659184\nv -0.186708 -0.023824 -0.654942\nv -0.186708 -0.023824 -0.654942\nv -0.468703 0.486886 -0.281035\nv 0.117173 0.160510 1.154692\nv 0.117743 0.166152 1.156842\nv -0.614830 -0.465170 0.057004\nv 0.195699 -0.106352 -0.668763\nv 0.323836 -0.667498 -0.384629\nv 0.220825 -0.611970 -0.603004\nv 0.233388 -0.612357 -0.600797\nv -0.247314 0.826930 0.590186\nv 0.314658 -0.590899 -0.541938\nv -0.301264 -0.513209 0.045822\nv -0.306861 -0.540236 0.045822\nv -0.905131 -0.103609 0.605422\nv 0.652925 -0.134303 0.665721\nv -0.339374 -0.573441 0.282160\nv -0.331354 -0.533983 0.282160\nv -0.223707 0.404389 1.087767\nv -0.274816 0.445793 1.121651\nv -0.274816 0.445793 1.121651\nv -0.266193 -0.485198 -0.539486\nv -0.436799 0.754339 0.478747\nv -0.236014 -0.469389 0.018964\nv -0.263041 -0.474986 0.018964\nv -0.385214 0.443273 1.041515\nv -0.500516 0.436358 0.919684\nv 0.175728 -0.513209 0.088373\nv 0.190881 -0.490140 0.088373\nv -0.424480 -0.461183 -0.344175\nv -0.131674 0.177450 1.156698\nv 0.086892 -0.598560 -0.706741\nv 0.065286 -0.590971 -0.710183\nv -0.260894 0.455738 1.127567\nv -0.260894 0.455738 1.127567\nv -0.203195 0.416572 1.095464\nv -0.495113 0.453060 -0.312704\nv 0.098403 -0.605961 -0.704325\nv 0.446026 -0.835027 -0.068232\nv 0.446026 -0.835027 -0.068232\nv 0.477010 -0.443666 0.210595\nv -0.350749 -0.499236 0.289473\nv -0.370325 -0.469672 0.289473\nv -0.179125 -0.483347 0.051406\nv -0.304842 -0.512409 -0.420769\nv -0.339669 -0.494032 -0.397926\nv -0.361604 -0.607013 0.282160\nv -0.301264 -0.513209 0.018964\nv -0.420997 0.453946 -0.276187\nv -0.411692 0.419446 -0.270889\nv -0.120126 0.175340 1.158734\nv -0.125794 0.177479 1.158183\nv -0.213112 -0.533795 -0.135113\nv -0.379008 -0.577679 -0.288567\nv -0.561868 0.429576 0.833334\nv 0.190881 -0.490140 0.076024\nv 0.404852 -0.450096 0.214746\nv 0.393641 0.335062 -0.385615\nv 0.451010 0.386818 -0.289417\nv 0.001435 -0.787920 0.090157\nv 0.001435 -0.787920 0.090157\nv -0.046023 -0.369229 -0.625394\nv -0.032802 -0.508739 -0.700177\nv 0.129218 0.860890 0.483318\nv 0.002481 0.871118 0.493997\nv 0.129819 0.860840 0.489871\nv 0.002481 0.870925 0.500455\nv 0.026825 -0.900974 -0.545404\nv 0.002482 -0.900973 -0.545404\nv -0.125070 0.864508 0.486232\nv 0.001435 -0.644935 0.090157\nv 0.001435 -0.644935 0.090157\nv -0.012948 -0.829487 -0.776665\nv 0.002482 -0.829487 -0.776665\nv -0.124857 0.860840 0.489871\nv 0.002481 0.218235 -0.594856\nv 0.123692 0.219767 -0.583211\nv -0.012948 -0.690806 -0.812782\nv 0.048815 -0.425811 -0.624959\nv -0.030115 -0.573480 -0.703037\nv 0.002482 -0.572681 -0.704086\nv -0.029662 -0.586820 -0.713247\nv 0.002482 -0.586276 -0.714257\nv -0.029514 -0.593865 -0.713257\nv 0.002482 -0.593341 -0.714254\nv -0.021861 -0.900974 -0.545404\nv 0.034477 -0.593865 -0.713257\nv 0.034626 -0.586820 -0.713247\nv 0.035078 -0.573480 -0.703037\nv 0.367078 -0.740685 -0.113986\nv -0.482577 -0.419964 -0.292569\nv 0.375289 -0.469672 0.249920\nv 0.404852 -0.450096 0.249920\nv -0.216014 -0.555747 -0.474740\nv -0.216014 -0.555747 -0.474740\nv 0.365505 -0.750567 -0.102732\nv -0.687745 0.398326 0.560236\nv -0.732081 0.379477 0.414122\nv -0.443018 0.450682 -0.310875\nv 0.237926 -0.334547 -0.545640\nv 0.282512 -0.301649 -0.522267\nv 0.662339 -0.323396 0.223078\nv 0.662339 -0.323396 0.223078\nv -0.139031 0.155148 1.145793\nv -0.431782 -0.432681 -0.321965\nv -0.478629 -0.395672 -0.276147\nv 0.185275 -0.237497 -0.638956\nv -0.395176 -0.629244 0.282160\nv 0.332429 -0.242118 -0.504933\nv 0.569501 0.563473 -0.044468\nv 0.569501 0.563473 -0.044468\nv 0.103096 -0.619965 -0.692993\nv 0.103096 -0.619965 -0.692993\nv 0.327577 0.782438 0.392402\nv 0.183061 0.851475 0.472170\nv 0.739168 0.172320 0.084894\nv 0.240978 -0.459783 0.070440\nv 0.290688 -0.637171 -0.522520\nv -0.256868 0.592524 1.066949\nv -0.252916 0.584005 1.074513\nv 0.727133 0.169539 0.063356\nv 0.727133 0.169539 0.063356\nv 0.440778 -0.822486 -0.061140\nv 0.440281 -0.825032 -0.060469\nv 0.440281 -0.825032 -0.060469\nv 0.479058 -0.438722 0.282160\nv 0.300383 -0.646037 -0.520051\nv -0.370325 -0.469672 0.249920\nv -0.191094 -0.668569 -0.536076\nv -0.196521 -0.457140 -0.543323\nv -0.159290 -0.469493 -0.548655\nv 0.440778 -0.774388 -0.061140\nv 0.103096 -0.619965 -0.687090\nv 0.730570 0.178745 0.073356\nv 0.705392 0.417945 -0.131529\nv 0.705392 0.417945 -0.131529\nv -0.112576 0.162809 1.149470\nv 0.569559 0.562675 -0.055988\nv 0.569559 0.562675 -0.055988\nv 0.568953 0.559050 -0.053303\nv 0.568953 0.559050 -0.053303\nv 0.439599 -0.430702 0.282160\nv -0.752114 0.370150 0.334990\nv -0.161917 -0.570928 0.070440\nv 0.646154 0.536833 -0.004866\nv 0.314491 -0.590840 -0.522547\nv 0.314491 -0.590840 -0.522547\nv 0.570276 0.567021 -0.046960\nv 0.570276 0.567021 -0.046960\nv 0.068858 -0.579584 -0.699547\nv 0.103354 -0.813241 -0.691193\nv 0.291074 -0.590333 0.076025\nv 0.268005 -0.605486 0.076024\nv -0.467308 0.479381 -0.286500\nv -0.488916 0.475098 -0.285568\nv -0.488916 0.475098 -0.285568\nv 0.203271 -0.458063 -0.553651\nv -0.269248 -0.475537 -0.418119\nv -0.650473 -0.274720 0.329913\nv 0.344633 -0.494032 -0.397926\nv 0.309806 -0.512409 -0.420769\nv 0.374068 -0.475515 -0.374993\nv 0.163250 -0.335406 -0.614532\nv -0.113086 0.167851 1.151391\nv -0.139036 0.162680 1.142788\nv -0.155560 -0.540236 0.070440\nv -0.142747 -0.480336 -0.550547\nv -0.270443 0.601464 1.052275\nv -0.263789 0.598141 1.058877\nv 0.181511 -0.474884 -0.559315\nv 0.178631 -0.498185 -0.557641\nv 0.178631 -0.498185 -0.557641\nv 0.717754 0.383522 -0.116628\nv -0.208987 -0.605486 0.045822\nv 0.172100 -0.482146 -0.556888\nv 0.178631 -0.498185 -0.594746\nv 0.178631 -0.498185 -0.594746\nv 0.179410 -0.475468 -0.599686\nv 0.179410 -0.475468 -0.599686\nv 0.220977 -0.555747 -0.474740\nv 0.220977 -0.555747 -0.474740\nv 0.439599 -0.631903 0.210595\nv 0.240978 -0.611083 0.076024\nv -0.395177 -0.629244 0.257233\nv 0.636001 -0.407884 0.111687\nv 0.240978 -0.469389 0.045822\nv 0.213951 -0.474986 0.045822\nv 0.646098 -0.293246 0.361526\nv 0.640278 -0.236862 0.419994\nv -0.632487 -0.394089 0.121771\nv 0.439599 -0.631903 0.205771\nv -0.670235 -0.067669 0.361645\nv 0.453503 -0.358776 -0.281243\nv 0.488159 -0.360914 -0.277014\nv 0.488159 -0.360914 -0.277014\nv 0.227523 -0.819365 0.255904\nv 0.227523 -0.819365 0.255904\nv 0.153634 -0.314748 -0.619653\nv 0.144116 -0.387321 -0.580242\nv -0.501632 -0.375524 -0.250856\nv -0.501632 -0.375524 -0.250856\nv -0.136683 -0.655166 -0.546683\nv 0.269384 -0.670454 -0.523228\nv 0.300985 0.175408 1.088820\nv 0.310802 0.191984 1.088933\nv -0.516928 -0.262085 -0.276595\nv -0.516928 -0.262085 -0.276595\nv -0.310019 -0.572563 -0.513376\nv -0.307741 -0.589916 -0.512218\nv 0.150151 -0.471040 -0.569069\nv -0.375220 -0.434593 -0.369936\nv -0.370325 -0.598293 0.249920\nv 0.317733 0.295270 -0.457745\nv 0.163268 0.222651 -0.568293\nv -0.115575 0.172514 1.152662\nv 0.125784 -0.456749 -0.574879\nv 0.209607 -0.555747 -0.474738\nv 0.755021 0.306386 0.037035\nv -0.263430 -0.628102 -0.426005\nv -0.221559 -0.645026 -0.459859\nv -0.542785 0.347672 -0.221753\nv 0.271670 -0.614333 0.051406\nv 0.213730 -0.816049 0.245698\nv 0.213730 -0.816049 0.245698\nv 0.438163 -0.443354 -0.314473\nv -0.613076 0.420250 0.741327\nv 0.506596 -0.375524 -0.250856\nv 0.506596 -0.375524 -0.250856\nv -0.415580 0.412131 -0.275756\nv 0.296413 0.157530 1.083498\nv -0.147563 -0.466373 -0.608811\nv 0.474346 -0.617870 0.214746\nv 0.671412 -0.311136 0.249562\nv 0.671521 -0.311516 0.258714\nv -0.379578 0.591451 0.974235\nv -0.630087 0.051501 -0.142177\nv -0.610654 0.051501 -0.145583\nv 0.240978 -0.620690 0.070440\nv 0.210286 -0.614333 0.070440\nv -0.296496 -0.614738 -0.399270\nv 0.159466 -0.414980 -0.612232\nv 0.409201 -0.464743 -0.341377\nv -0.292903 -0.483347 0.051406\nv -0.310111 -0.509544 0.051406\nv 0.746184 0.365606 0.033490\nv -0.425505 0.450667 -0.274885\nv -0.529153 0.345222 -0.224533\nv -0.529153 0.345222 -0.224533\nv 0.184089 -0.597126 0.051406\nv -0.158286 -0.335406 -0.614532\nv -0.232962 -0.334547 -0.545640\nv 0.166881 -0.570929 0.051406\nv 0.452584 -0.829141 -0.048248\nv 0.176481 -0.492558 -0.598800\nv 0.297867 -0.597125 0.051406\nv -0.147697 -0.690612 -0.071073\nv 0.454254 -0.828391 -0.050129\nv 0.454254 -0.828391 -0.050129\nv 0.126669 -0.639818 -0.539925\nv 0.162932 -0.414875 -0.571880\nv -0.469382 -0.617869 0.249920\nv -0.256574 -0.657800 -0.514996\nv 0.590037 -0.012077 -0.189990\nv 0.590037 -0.012077 -0.189990\nv 0.595059 0.019557 -0.179205\nv 0.328540 0.213064 1.059933\nv 0.729766 0.188344 0.131332\nv -0.662957 -0.179885 0.262805\nv -0.768758 0.438195 0.156370\nv -0.768758 0.438195 0.156370\nv 0.218284 -0.485448 0.104388\nv 0.209216 -0.607261 -0.605432\nv -0.234908 -0.329005 -0.531592\nv -0.154502 -0.414980 -0.612232\nv -0.160289 -0.351307 -0.624961\nv 0.268005 -0.474987 0.088373\nv -0.136546 0.158017 1.141517\nv 0.341530 0.213081 1.048716\nv 0.148072 -0.763409 -0.288707\nv -0.514827 -0.375525 -0.250856\nv -0.514827 -0.375525 -0.250856\nv -0.498541 0.465947 -0.283262\nv -0.266706 -0.466139 0.051406\nv 0.161040 0.219496 -0.572806\nv 0.161040 0.219496 -0.572806\nv 0.161040 0.219496 -0.572806\nv 0.177508 0.062939 -0.630590\nv 0.180919 -0.065928 -0.662539\nv -0.541131 -0.262086 -0.276595\nv -0.309694 -0.590899 -0.541938\nv -0.658967 -0.170187 0.238950\nv -0.664733 -0.046400 0.289085\nv 0.321432 -0.540236 0.070440\nv 0.315075 -0.570928 0.070440\nv 0.388854 -0.821285 -0.110538\nv 0.388854 -0.821285 -0.110538\nv 0.382798 -0.824703 -0.102354\nv -0.666437 0.017330 0.313762\nv -0.509045 0.456419 -0.272740\nv -0.515267 0.430167 -0.265486\nv 0.574279 -0.036508 -0.197331\nv 0.574279 -0.036508 -0.197331\nv -0.410614 0.415149 -0.277449\nv -0.576703 -0.029590 -0.226223\nv -0.576703 -0.029590 -0.226223\nv -0.580730 -0.031069 -0.217553\nv 0.533822 -0.262086 -0.276595\nv 0.533822 -0.262086 -0.276595\nv -0.534823 0.348692 -0.245829\nv -0.534823 0.348692 -0.245829\nv 0.593381 -0.049746 -0.203115\nv -0.237280 -0.459264 -0.546805\nv 0.167830 0.220022 -0.572792\nv 0.167830 0.220022 -0.572792\nv 0.167830 0.220022 -0.572792\nv 0.612206 0.051190 -0.168420\nv 0.612206 0.051190 -0.168420\nv 0.199961 -0.598797 -0.607790\nv 0.600081 0.051190 -0.168420\nv 0.600081 0.051190 -0.168420\nv 0.600081 0.051190 -0.168420\nv -0.416202 0.416167 -0.269587\nv 0.685853 0.340538 -0.090609\nv 0.692815 0.302271 -0.079786\nv 0.164254 -0.469493 -0.548655\nv 0.147711 -0.480336 -0.550547\nv 0.390609 0.340168 -0.382014\nv -0.674112 0.519995 0.513802\nv -0.467988 -0.413759 -0.298534\nv 0.188531 -0.052770 -0.660251\nv 0.174051 0.123631 -0.609167\nv 0.306228 -0.567263 0.076025\nv 0.653563 0.193734 -0.071016\nv 0.638569 0.172251 -0.071965\nv 0.638569 0.172251 -0.071965\nv -0.619658 -0.447250 0.083068\nv -0.619658 -0.447250 0.083068\nv -0.121705 -0.639818 -0.539925\nv 0.438791 -0.825826 -0.058455\nv 0.195306 -0.562574 -0.611834\nv 0.202084 -0.551764 -0.611628\nv 0.349283 -0.571394 0.205772\nv 0.341679 -0.533983 0.205772\nv -0.503205 0.468599 -0.284263\nv -0.111206 -0.623273 -0.543220\nv -0.289998 -0.594220 0.015824\nv 0.621602 0.430313 -0.134395\nv 0.447894 0.391887 -0.286537\nv -0.162172 -0.105944 -0.675297\nv -0.164523 -0.162999 -0.673951\nv -0.170764 -0.567263 0.076025\nv -0.164664 -0.208391 -0.666933\nv -0.164845 -0.221748 -0.663558\nv 0.169487 -0.162999 -0.673951\nv 0.167136 -0.105944 -0.675297\nv 0.213730 -0.838445 0.245698\nv 0.213730 -0.838445 0.245698\nv 0.185065 -0.163017 -0.668277\nv 0.168376 -0.755323 -0.594533\nv 0.210286 -0.466139 0.070440\nv 0.541650 0.008118 -0.244887\nv 0.169628 -0.208391 -0.666933\nv -0.265138 -0.610549 0.012081\nv -0.144533 -0.481260 -0.560876\nv -0.513548 0.452620 -0.279980\nv -0.166038 -0.227507 -0.661615\nv -0.166038 -0.227507 -0.661615\nv 0.729319 0.194527 0.025496\nv -0.167136 -0.482146 -0.556888\nv -0.152533 -0.491718 -0.558557\nv -0.647389 0.052336 -0.092682\nv -0.128437 -0.633914 -0.679811\nv -0.128680 -0.577225 -0.681784\nv -0.674887 0.516160 0.514934\nv -0.593829 0.347849 -0.164294\nv 0.714887 0.123215 0.075022\nv -0.565477 0.330936 -0.177841\nv 0.547867 0.009810 -0.232028\nv 0.651918 -0.349630 0.303059\nv -0.098390 -0.813241 -0.691193\nv -0.318165 -0.533942 -0.515421\nv -0.206890 -0.469924 0.012081\nv -0.577164 0.430179 -0.188528\nv -0.577164 0.430179 -0.188528\nv 0.651074 0.050567 -0.012057\nv 0.651074 0.050567 -0.012057\nv -0.514849 -0.495035 -0.142465\nv -0.497462 -0.492908 -0.129467\nv -0.639165 0.051501 -0.134644\nv -0.639165 0.051501 -0.134644\nv 0.695887 0.108381 0.109414\nv 0.757190 0.307434 0.046889\nv 0.564972 0.009806 -0.195076\nv 0.366569 -0.607014 0.257233\nv 0.344338 -0.573442 0.257233\nv -0.101260 -0.612245 -0.692354\nv -0.524952 -0.496572 0.205772\nv -0.182030 -0.486253 0.012081\nv -0.317748 -0.593815 -0.545205\nv 0.380570 -0.768061 -0.108471\nv -0.098525 -0.604236 -0.693101\nv -0.300219 -0.499206 -0.521630\nv -0.434635 -0.436063 0.205771\nv -0.472046 -0.443666 0.205772\nv -0.511539 0.346386 -0.244455\nv -0.488255 0.344080 -0.243081\nv -0.472046 -0.443666 0.210595\nv 0.159648 -0.312504 -0.617315\nv 0.150138 -0.385083 -0.578012\nv -0.165702 -0.511112 0.012081\nv 0.390872 -0.760277 -0.113266\nv 0.390872 -0.811128 -0.113266\nv -0.503875 -0.464743 0.205772\nv -0.920426 0.116565 0.636702\nv 0.387375 0.178553 1.015794\nv 0.385576 0.200735 1.028853\nv 0.240978 -0.463892 0.015824\nv 0.211854 -0.469924 0.015824\nv 0.680166 0.101502 -0.003797\nv 0.150568 -0.645229 -0.546029\nv 0.640176 0.528987 -0.010724\nv 0.703758 0.485750 0.020127\nv 0.703758 0.485750 0.020127\nv -0.750986 0.427260 0.341371\nv -0.159670 -0.540236 0.015824\nv -0.536503 0.349932 -0.236941\nv -0.536503 0.349932 -0.236941\nv -0.587044 -0.273936 -0.198201\nv -0.589889 -0.259028 -0.197270\nv -0.477760 0.642593 0.757647\nv -0.506509 -0.382778 -0.260100\nv -0.159670 -0.540237 0.012081\nv 0.685259 -0.069231 0.360640\nv 0.685533 -0.071057 0.367567\nv 0.685533 -0.071057 0.367567\nv 0.650895 0.054892 -0.019350\nv -0.620304 0.051190 -0.150078\nv -0.620304 0.051190 -0.150078\nv -0.569315 -0.036509 -0.197331\nv -0.569315 -0.036509 -0.197331\nv -0.572115 -0.024256 -0.192044\nv -0.644270 -0.422581 0.168914\nv 0.512630 -0.607013 0.257233\nv 0.479058 -0.629244 0.257233\nv -0.165702 -0.569361 0.012081\nv -0.546726 -0.018690 -0.243974\nv 0.386251 -0.149794 -0.474907\nv -0.319028 -0.593840 -0.540174\nv 0.174882 -0.068125 -0.662260\nv -0.528475 -0.542730 -0.139820\nv -0.528475 -0.542730 -0.139820\nv -0.526894 -0.515986 -0.146555\nv -0.526894 -0.515986 -0.146555\nv -0.668162 0.103332 -0.095618\nv 0.667572 -0.274583 0.328601\nv 0.671401 0.017330 0.313762\nv -0.313161 -0.613893 -0.363645\nv -0.627305 -0.443407 0.101328\nv -0.264407 -0.484274 -0.529157\nv 0.145202 -0.803674 0.194990\nv 0.145202 -0.803674 0.194990\nv 0.137137 -0.631572 -0.538852\nv 0.127869 -0.616967 -0.541761\nv 0.734000 0.365500 0.033600\nv -0.630225 0.034684 -0.103128\nv 0.264906 -0.577249 -0.598487\nv 0.264074 -0.583585 -0.598064\nv 0.721551 0.424715 0.028308\nv -0.673833 0.370735 -0.138756\nv -0.343686 -0.533983 0.214746\nv 0.684129 -0.090360 0.348800\nv -0.656046 0.023596 -0.099533\nv -0.656046 0.023596 -0.099533\nv -0.551323 -0.012052 -0.234362\nv 0.174985 -0.068484 -0.665629\nv 0.313888 -0.610159 -0.559098\nv 0.263289 -0.564668 -0.599891\nv -0.158879 -0.334216 -0.628654\nv -0.158879 -0.334216 -0.628654\nv 0.439599 -0.443034 0.214746\nv 0.372495 -0.752247 -0.097559\nv 0.190881 -0.490140 0.045822\nv 0.163530 -0.245827 -0.651046\nv 0.365505 -0.811493 -0.102732\nv 0.448884 -0.105277 -0.412282\nv -0.516207 -0.665127 -0.124163\nv 0.162481 -0.654749 -0.532397\nv 0.257505 -0.553471 -0.601892\nv -0.393092 -0.437920 -0.352252\nv -0.393092 -0.437920 -0.352252\nv -0.585073 -0.012077 -0.189990\nv -0.585073 -0.012077 -0.189990\nv 0.212077 -0.543894 -0.610604\nv 0.310145 0.106218 1.045016\nv 0.261538 -0.657800 -0.514996\nv -0.567605 -0.640681 -0.152356\nv -0.573925 -0.620240 -0.156915\nv -0.200261 -0.659319 -0.454859\nv -0.498618 0.579349 0.862542\nv -0.386236 0.592800 0.982422\nv -0.488225 0.345125 -0.233906\nv -0.512365 0.347528 -0.235424\nv 0.375289 -0.598293 0.289473\nv -0.602202 0.019556 -0.179204\nv 0.240978 -0.463892 0.012081\nv 0.270102 -0.469924 0.012081\nv -0.580619 -0.034645 -0.197809\nv -0.580619 -0.034645 -0.197809\nv -0.527955 0.000563 -0.227863\nv 0.179646 -0.208412 -0.663283\nv 0.272926 -0.564374 -0.618775\nv 0.274833 -0.579217 -0.617118\nv -0.502845 -0.497031 -0.116011\nv -0.483921 -0.497738 -0.100597\nv -0.182031 -0.594220 0.012081\nv -0.237452 -0.564308 -0.471767\nv -0.874788 0.198780 0.619813\nv -0.572281 -0.597076 -0.157566\nv 0.248250 -0.545008 -0.604250\nv -0.673967 0.018352 0.043778\nv 0.116170 -0.623273 -0.543220\nv -0.381287 -0.149794 -0.474907\nv -0.399888 -0.450096 0.201620\nv 0.373579 -0.766381 -0.113644\nv 0.700019 0.123332 0.076375\nv 0.169809 -0.221748 -0.663558\nv 0.173512 -0.140788 -0.671478\nv -0.514417 -0.657752 -0.124651\nv -0.225577 -0.555748 -0.474743\nv -0.225577 -0.555748 -0.474743\nv -0.518522 -0.568730 0.214746\nv -0.846588 -0.182820 0.617655\nv 0.745006 0.307333 0.047018\nv 0.340979 0.226790 1.080907\nv -0.545632 -0.028656 -0.231738\nv -0.343686 -0.533983 0.201620\nv 0.439970 -0.838445 -0.060048\nv 0.266100 -0.551163 -0.621136\nv -0.875993 0.108678 0.420758\nv -0.208766 -0.717855 0.245698\nv -0.208766 -0.717855 0.245698\nv -0.208766 -0.695460 0.245698\nv -0.208766 -0.695460 0.245698\nv -0.399888 -0.450096 0.249920\nv 0.424424 0.401476 -0.296317\nv 0.230541 -0.569292 -0.468493\nv 0.230541 -0.569292 -0.468493\nv -0.851538 -0.182745 0.604150\nv -0.336715 -0.533983 0.205772\nv -0.236014 -0.469389 0.076024\nv -0.614577 -0.292602 -0.030815\nv -0.164123 -0.045467 -0.665640\nv -0.164123 -0.045467 -0.665640\nv 0.752271 0.240870 0.049318\nv -0.365395 -0.603223 0.205772\nv -0.397225 -0.624300 0.205772\nv 0.530548 -0.533983 0.289473\nv -0.419462 0.401476 -0.296317\nv -0.426514 0.429897 -0.303745\nv 0.554108 0.349619 -0.214559\nv 0.554108 0.349619 -0.214559\nv 0.554108 0.349619 -0.214559\nv 0.078564 -0.388268 0.286202\nv 0.211854 -0.610549 0.012081\nv 0.913010 -0.107833 0.601051\nv 0.944662 0.027455 0.612443\nv -0.344319 -0.571394 0.205772\nv 0.334564 0.138780 1.016198\nv -0.369527 -0.203582 -0.458930\nv 0.145129 0.179329 1.155334\nv 0.155711 -0.490795 -0.548228\nv -0.579860 -0.618228 -0.145532\nv -0.578250 -0.595104 -0.146187\nv -0.664250 0.021742 -0.051329\nv 0.177093 -0.221753 -0.660906\nv -0.776644 0.395168 0.164341\nv -0.197854 -0.800530 0.237624\nv -0.197854 -0.800530 0.237624\nv -0.350749 -0.568730 0.201620\nv -0.939698 0.027454 0.612443\nv -0.939698 0.027454 0.612443\nv -0.908917 -0.104132 0.601365\nv -0.269869 -0.579217 -0.617118\nv 0.429569 -0.156747 -0.444292\nv 0.844115 -0.070808 0.393247\nv 0.404852 -0.617870 0.289473\nv -0.512443 0.040265 0.753820\nv 0.550925 0.051501 -0.146780\nv -0.785780 -0.222440 0.593561\nv -0.785780 -0.222440 0.593561\nv -0.635003 -0.327235 0.538742\nv -0.635003 -0.327235 0.538742\nv -0.635003 -0.327235 0.538742\nv 0.255382 -0.600504 -0.598054\nv 0.259238 -0.595394 -0.597844\nv -0.789513 -0.222440 0.583305\nv -0.789513 -0.222440 0.583305\nv -0.259942 -0.577249 -0.598487\nv -0.258326 -0.564668 -0.599891\nv 0.048398 -0.874412 -0.545404\nv 0.048398 -0.874412 -0.545404\nv -0.485970 0.339276 -0.231212\nv -0.513993 0.342456 -0.233355\nv 0.240978 -0.469389 0.008941\nv -0.160291 -0.356141 -0.617353\nv -0.262731 -0.356221 -0.520111\nv -0.262731 -0.356221 -0.520111\nv -0.503875 -0.603223 0.205772\nv -0.908046 -0.107833 0.601051\nv -0.908046 -0.107833 0.601051\nv -0.731154 0.383862 0.415105\nv -0.235334 -0.344556 -0.514930\nv 0.658874 0.050567 -0.012057\nv 0.658874 0.050567 -0.012057\nv 0.658797 0.051535 -0.020564\nv 0.658797 0.051535 -0.020564\nv 0.245389 -0.608375 -0.599078\nv -0.268887 -0.586694 -0.616619\nv 0.689146 0.099007 -0.004745\nv 0.507845 -0.489998 -0.117966\nv 0.487391 -0.490408 -0.101742\nv 0.648207 0.051501 -0.102032\nv 0.648207 0.051501 -0.102032\nv 0.685146 -0.043320 0.375813\nv -0.151594 -0.681718 0.203392\nv -0.151594 -0.681718 0.203392\nv 0.663590 0.047366 0.097838\nv 0.764477 0.240955 0.049167\nv 0.507809 -0.497031 -0.116011\nv -0.469382 -0.617869 0.201620\nv -0.434635 -0.624932 0.214747\nv -0.147229 -0.805354 0.200163\nv -0.147229 -0.805354 0.200163\nv -0.147229 -0.805354 0.200163\nv -0.140238 -0.803674 0.194990\nv -0.140238 -0.803674 0.194990\nv 0.543321 -0.030776 -0.261473\nv -0.658626 0.047366 0.097838\nv -0.663343 0.044166 0.207733\nv -0.263181 -0.600627 -0.616359\nv -0.205322 -0.614333 0.051406\nv -0.940385 0.006609 0.546999\nv -0.701239 -0.070845 0.771697\nv -0.258708 -0.485448 0.104388\nv -0.752228 0.307434 0.046889\nv -0.759515 0.240955 0.049167\nv 0.131089 -0.767725 -0.443603\nv 0.131089 -0.767725 -0.443603\nv -0.170764 -0.513209 0.008941\nv 0.175728 -0.513209 0.076025\nv -0.565651 -0.044678 0.695143\nv -0.185918 -0.490140 0.008941\nv 0.374332 -0.244073 -0.472590\nv 0.306318 -0.319076 -0.503644\nv 0.048398 -0.767725 -0.545404\nv 0.048398 -0.767725 -0.545404\nv -0.282156 0.599241 1.059508\nv -0.474094 -0.438722 0.257233\nv -0.258631 -0.606657 -0.616607\nv -0.172599 -0.717768 0.197827\nv -0.172599 -0.717768 0.197827\nv 0.662649 0.397700 -0.151219\nv 0.211854 -0.469924 0.012081\nv -0.434635 -0.624932 0.201620\nv -0.272744 0.597643 1.053612\nv 0.170131 -0.540236 0.076025\nv -0.434635 -0.430702 0.257233\nv 0.170131 -0.540236 0.088373\nv 0.568870 -0.012008 -0.210790\nv 0.556287 -0.012052 -0.234362\nv -0.250418 -0.600504 -0.598054\nv -0.653910 0.050566 -0.012057\nv -0.653910 0.050566 -0.012057\nv -0.157969 -0.414875 -0.571880\nv -0.176547 -0.474884 -0.559315\nv 0.467715 0.072770 0.773460\nv 0.548396 0.052192 0.802823\nv -0.236014 -0.620690 0.051406\nv -0.646110 0.050566 -0.012057\nv -0.646110 0.050566 -0.012057\nv 0.375152 -0.756498 -0.124898\nv 0.375152 -0.807350 -0.124898\nv 0.388854 -0.749560 -0.110538\nv 0.388854 -0.749560 -0.110538\nv 0.439599 -0.436063 0.205771\nv -0.207947 -0.800530 0.223984\nv -0.207947 -0.800530 0.223984\nv -0.208987 -0.474986 0.008941\nv -0.470072 0.673270 0.089058\nv 0.556072 0.572613 -0.046933\nv 0.556029 0.561759 -0.066673\nv 0.687095 0.201652 0.261015\nv -0.583346 -0.239638 0.645691\nv -0.713509 -0.071093 0.771016\nv -0.713509 -0.071093 0.771016\nv -0.713509 -0.071093 0.771016\nv -0.249396 0.523751 1.109821\nv -0.255648 0.466052 1.127400\nv -0.563947 -0.302107 0.499697\nv -0.638774 -0.327235 0.528381\nv -0.638774 -0.327235 0.528381\nv -0.638774 -0.327235 0.528381\nv -0.286111 -0.590333 0.008941\nv -0.263041 -0.605486 0.008941\nv 0.403723 -0.206216 -0.458003\nv 0.503910 -0.469672 0.201620\nv 0.474346 -0.450096 0.201620\nv 0.554079 0.619345 0.039578\nv 0.492880 0.182845 0.781456\nv 0.149354 -0.776732 -0.071072\nv -0.540542 0.660216 0.575420\nv -0.520288 -0.492252 -0.130945\nv -0.116756 -0.322407 -0.592864\nv -0.227190 -0.682807 -0.528561\nv -0.106476 -0.332306 -0.591054\nv 0.213730 -0.695460 0.245698\nv 0.213730 -0.695460 0.245698\nv -0.140165 0.179329 1.155334\nv -0.145193 0.173959 1.151892\nv -0.502881 -0.489998 -0.117966\nv -0.482427 -0.490408 -0.101742\nv 0.439599 -0.443034 0.201620\nv -0.236014 -0.611084 0.008941\nv -0.208987 -0.605486 0.008941\nv -0.738845 0.351124 0.186266\nv -0.738845 0.351124 0.186266\nv -0.336857 -0.120284 0.499972\nv -0.328880 -0.154282 0.499968\nv -0.739247 0.385915 0.142747\nv -0.147508 0.166941 1.148460\nv -0.732933 0.392014 0.179627\nv -0.725264 0.433559 0.172233\nv -0.725264 0.433559 0.172233\nv 0.661010 0.023596 -0.099533\nv 0.661010 0.023596 -0.099533\nv -0.762317 0.391809 0.156074\nv 0.148072 -0.691685 -0.288707\nv 0.668307 0.044166 0.207733\nv -0.164038 -0.233304 -0.664294\nv -0.164038 -0.233304 -0.664294\nv -0.146744 0.159384 1.145581\nv -0.364198 -0.504807 0.326707\nv -0.189213 -0.587600 -0.609791\nv 0.186994 -0.594220 0.012081\nv 0.093104 -0.590871 -0.695460\nv -0.750474 0.428767 0.187285\nv -0.750474 0.428767 0.187285\nv -0.560176 -0.302107 0.510057\nv -0.561483 0.050705 -0.219304\nv -0.566162 0.043329 -0.220558\nv 0.551690 -0.018690 -0.243974\nv 0.510036 -0.563159 0.326707\nv -0.678528 0.236612 -0.069121\nv 0.156558 -0.824703 0.203393\nv 0.156558 -0.824703 0.203393\nv 0.156558 -0.824703 0.203393\nv -0.187596 -0.575020 -0.611196\nv -0.099031 -0.394236 0.286195\nv 0.200709 -0.549148 -0.632624\nv -0.648601 0.193734 -0.071016\nv -0.715987 0.272061 0.345479\nv -0.690605 0.278543 0.447127\nv -0.699432 0.124654 0.050547\nv -0.699432 0.124654 0.050547\nv 0.079171 -0.520610 -0.695879\nv 0.410423 -0.604420 0.326707\nv -0.380636 -0.479983 0.326707\nv -0.217858 -0.620185 -0.622448\nv -0.850075 -0.183170 0.611260\nv -0.178099 0.851475 0.472170\nv 0.160524 -0.540236 0.070440\nv 0.166881 -0.509544 0.070440\nv -0.215861 -0.611970 -0.603004\nv -0.386703 0.695533 0.803261\nv -0.391584 0.697248 0.794306\nv -0.145187 -0.471040 -0.569069\nv -0.173667 -0.498185 -0.557641\nv -0.173667 -0.498185 -0.557641\nv 0.687107 0.182846 0.247805\nv -0.778872 -0.101966 0.750195\nv -0.405459 -0.463546 0.326707\nv -0.701665 0.128799 0.050910\nv 0.641742 0.028623 0.108768\nv -0.187748 -0.561903 -0.632866\nv -0.392536 0.720706 0.303896\nv -0.422147 0.685922 0.250328\nv 0.879644 0.212604 0.629213\nv -0.197121 -0.551764 -0.611628\nv -0.190342 -0.562574 -0.611834\nv 0.191379 -0.591431 -0.630456\nv 0.198205 -0.604643 -0.628095\nv 0.644129 0.051501 -0.134644\nv 0.644129 0.051501 -0.134644\nv -0.848216 -0.071093 0.400911\nv -0.848216 -0.071093 0.400911\nv 0.529916 -0.571393 0.205772\nv 0.537520 -0.533983 0.205772\nv 0.184089 -0.483347 0.070440\nv 0.195515 0.230400 -0.560847\nv 0.705611 -0.054028 0.781807\nv 0.508839 -0.603223 0.205772\nv 0.152661 -0.560998 -0.144139\nv 0.913881 -0.104132 0.601365\nv -0.129312 0.144214 1.143785\nv -0.549117 0.619345 0.039578\nv -0.073109 -0.829487 -0.768083\nv -0.722088 0.256043 0.322352\nv -0.722088 0.256043 0.322352\nv -0.528580 0.057487 -0.247127\nv -0.120820 -0.456749 -0.574879\nv -0.469382 -0.450096 0.214747\nv -0.498946 -0.469672 0.214746\nv 0.473342 0.674429 0.057257\nv 0.473342 0.674429 0.057257\nv -0.522642 0.049355 -0.249170\nv -0.684534 0.278568 0.470253\nv -0.682666 0.274605 0.478995\nv 0.477010 -0.624300 0.205772\nv 0.468775 -0.463546 0.326707\nv -0.559723 0.044132 -0.255472\nv -0.098072 -0.813241 -0.682102\nv -0.098072 -0.813241 -0.682102\nv 0.554901 0.021097 -0.256484\nv -0.587000 0.075704 -0.165937\nv -0.587000 0.075704 -0.165937\nv -0.575522 0.083588 -0.162817\nv 0.380184 -0.434593 -0.369936\nv -0.712773 0.239700 0.344217\nv -0.592543 0.064321 -0.167554\nv 0.488885 -0.497738 -0.100597\nv 0.561507 0.055550 -0.209246\nv 0.553160 0.057339 -0.207010\nv 0.536010 0.675953 0.099771\nv 0.404852 -0.617870 0.201620\nv -0.380636 -0.587982 0.326707\nv -0.405459 -0.604420 0.326707\nv -0.688613 0.244454 0.442280\nv 0.209125 -0.614629 -0.625314\nv -0.543530 0.651244 0.105701\nv 0.481273 -0.251992 -0.307364\nv -0.587001 0.075704 -0.138430\nv -0.571956 -0.369565 -0.173638\nv -0.522806 -0.662720 -0.113423\nv -0.365395 -0.464743 0.210595\nv 0.114773 -0.334324 -0.630954\nv 0.114773 -0.334324 -0.630954\nv -0.657687 0.397700 -0.151451\nv -0.370325 -0.598293 0.289473\nv -0.607242 0.051190 -0.150082\nv -0.607242 0.051190 -0.150082\nv 0.519381 -0.657752 -0.124651\nv 0.111440 -0.332306 -0.591054\nv -0.301264 -0.567263 0.008941\nv -0.503282 -0.381199 -0.234704\nv -0.503282 -0.381199 -0.234704\nv -0.541145 -0.268573 -0.257038\nv -0.098132 -0.619965 -0.687090\nv -0.595117 0.051190 -0.138430\nv -0.514827 -0.382010 -0.232396\nv -0.514827 -0.382010 -0.232396\nv 0.600942 -0.226798 -0.140277\nv 0.640267 -0.160992 -0.119410\nv 0.430469 0.450667 -0.274885\nv 0.421164 0.416167 -0.269587\nv -0.666986 -0.309325 0.241452\nv -0.225577 -0.569292 -0.468493\nv -0.225577 -0.569292 -0.468493\nv 0.429846 0.446631 -0.281054\nv 0.420544 0.412131 -0.275756\nv -0.593925 0.355919 -0.126969\nv -0.667873 -0.305568 0.234420\nv -0.667873 -0.305568 0.234420\nv -0.519459 0.053575 -0.244683\nv -0.424605 -0.156747 -0.444292\nv -0.616545 0.422243 -0.171720\nv -0.720633 0.266062 0.327601\nv -0.718562 0.270192 0.334663\nv -0.365395 -0.603223 0.210595\nv -0.397225 -0.624300 0.210595\nv -0.344319 -0.571394 0.210595\nv 0.518955 0.424329 -0.271950\nv -0.673297 -0.180752 0.263388\nv 0.120529 0.171370 1.158264\nv 0.528521 0.011441 -0.209141\nv 0.283042 -0.498172 0.104388\nv 0.501363 0.201649 0.771325\nv 0.472271 0.479381 -0.286500\nv -0.364191 -0.647210 -0.430997\nv -0.210899 -0.199559 0.499987\nv -0.679165 -0.090360 0.348800\nv 0.250108 -0.198105 0.510159\nv 0.219690 -0.190966 0.510168\nv -0.478497 0.445565 -0.307554\nv -0.217209 -0.567598 -0.469272\nv -0.217209 -0.567598 -0.469272\nv -0.680295 -0.069232 0.360640\nv -0.680569 -0.071058 0.367567\nv -0.680569 -0.071058 0.367567\nv -0.662231 -0.212337 0.374973\nv -0.662231 -0.212337 0.374973\nv -0.564539 0.563473 -0.044468\nv -0.564539 0.563473 -0.044468\nv -0.462186 0.450535 -0.306086\nv -0.322615 0.782438 0.392402\nv 0.450097 0.475839 -0.279053\nv 0.450097 0.475839 -0.279053\nv 0.514007 0.456419 -0.272740\nv 0.449280 0.471834 -0.285421\nv 0.449280 0.471834 -0.285421\nv 0.517407 0.040265 0.753820\nv -0.490462 0.416474 -0.299179\nv 0.110450 -0.347068 -0.628377\nv 0.295766 -0.517542 0.104388\nv 0.300466 -0.540236 0.104388\nv -0.370188 -0.756498 -0.124898\nv 0.333844 -0.154282 0.499968\nv -0.449647 0.403464 -0.286057\nv 0.528520 0.057937 -0.209141\nv 0.295766 -0.562930 0.104388\nv 0.519813 -0.495035 -0.142465\nv 0.502426 -0.492908 -0.129467\nv -0.354408 -0.660327 -0.417472\nv 0.325524 0.289021 -0.468389\nv 0.517837 -0.501123 -0.139630\nv -0.594414 -0.315393 0.104981\nv -0.263041 -0.474987 0.088373\nv 0.125090 0.175340 1.158734\nv -0.845301 -0.054029 0.384374\nv -0.739845 0.058669 0.267731\nv -0.135874 -0.820924 0.191760\nv -0.135874 -0.820924 0.191760\nv -0.742566 0.367766 0.043094\nv -0.367531 -0.813174 -0.097559\nv -0.373587 -0.809899 -0.105743\nv -0.373587 -0.809899 -0.105743\nv -0.153952 -0.322280 -0.591094\nv -0.501466 -0.083208 -0.337389\nv -0.716020 0.265263 0.336694\nv 0.482050 -0.493440 -0.113261\nv -0.717107 0.427987 0.037663\nv 0.565720 -0.653495 -0.133506\nv -0.478604 -0.500769 -0.112132\nv -0.038390 -0.351156 0.286217\nv -0.435814 -0.774388 -0.061140\nv -0.685008 0.098263 0.004157\nv -0.135874 -0.677939 0.191760\nv -0.135874 -0.677939 0.191760\nv -0.135874 -0.677939 0.191760\nv -0.477086 -0.493440 -0.113261\nv -0.737811 0.193458 0.034769\nv -0.462751 0.072770 0.773460\nv -0.543432 0.052191 0.802823\nv 0.222822 -0.620185 -0.622448\nv 0.564687 0.025246 -0.255472\nv 0.559572 0.017185 -0.254101\nv 0.218284 -0.595024 0.104388\nv -0.536808 0.015466 -0.252966\nv -0.529726 0.016985 -0.251068\nv -0.522642 0.020022 -0.249170\nv -0.330675 -0.085915 0.499979\nv -0.165167 -0.540236 0.045822\nv 0.197014 -0.059751 0.510199\nv 0.237645 -0.620642 -0.619844\nv 0.545121 0.344373 -0.244984\nv 0.545121 0.344373 -0.244984\nv -0.543892 0.016985 -0.254864\nv -0.162460 -0.332177 -0.588649\nv 0.133766 0.149039 1.145873\nv 0.326858 -0.089285 0.510160\nv 0.546095 -0.262086 -0.276595\nv 0.582608 -0.202305 -0.248701\nv -0.529320 0.051970 -0.210686\nv 0.129926 -0.786411 0.183686\nv 0.129926 -0.786411 0.183686\nv 0.140019 -0.786411 0.170046\nv 0.140019 -0.786411 0.170046\nv -0.144205 -0.237497 -0.652098\nv 0.643370 0.051189 -0.160799\nv 0.643370 0.051189 -0.160799\nv 0.251805 -0.615943 -0.617816\nv -0.363007 0.654648 0.837574\nv -0.292792 0.140969 1.073748\nv 0.489149 0.337999 -0.240875\nv 0.517135 0.341186 -0.242930\nv 0.146781 0.160366 1.147215\nv -0.185918 -0.590333 0.018964\nv -0.161852 -0.354400 0.286188\nv 0.283042 -0.582301 0.104388\nv -0.370611 0.646346 0.840385\nv -0.549937 0.021096 -0.256484\nv 0.559572 0.052193 -0.254101\nv -0.700647 -0.054029 0.781807\nv 0.536140 0.341010 -0.277176\nv -0.333959 -0.665652 -0.404642\nv -0.318872 -0.667498 -0.384629\nv 0.273851 -0.586694 -0.616619\nv -0.009477 -0.758652 0.098231\nv -0.009477 -0.758652 0.098231\nv -0.219114 -0.539912 -0.608885\nv -0.231677 -0.540299 -0.606678\nv -0.716589 0.424715 0.028308\nv 0.165253 -0.351307 -0.624961\nv -0.164482 -0.018124 -0.643702\nv -0.009477 -0.680272 0.098231\nv -0.009477 -0.680272 0.098231\nv -0.185918 -0.590333 0.045822\nv 0.571789 0.056235 -0.220735\nv -0.178051 0.847958 0.475985\nv -0.181073 -0.023824 -0.639460\nv -0.635214 0.528987 -0.010724\nv -0.383890 -0.821285 -0.110538\nv -0.383890 -0.821285 -0.110538\nv -0.377834 -0.824703 -0.102354\nv 0.604776 0.551820 0.685821\nv -0.170764 -0.567264 0.018964\nv -0.323931 0.779383 0.396856\nv -0.711009 0.485869 0.020289\nv -0.711009 0.485869 0.020289\nv -0.457959 -0.777146 -0.043714\nv -0.457959 -0.777146 -0.043714\nv -0.170764 -0.567263 0.045822\nv -0.649271 -0.303882 0.236745\nv -0.649271 -0.303882 0.236745\nv -0.649271 -0.303882 0.236745\nv -0.575445 0.034689 -0.223045\nv 0.141869 0.175258 1.154497\nv 0.493216 0.344080 -0.243081\nv -0.682143 0.182846 0.247805\nv 0.493189 0.345125 -0.233906\nv 0.625268 0.051190 -0.150078\nv 0.625268 0.051190 -0.150078\nv -0.648219 -0.308920 0.259929\nv -0.632437 0.595784 0.373156\nv -0.222559 -0.819365 0.255904\nv -0.222559 -0.819365 0.255904\nv -0.156078 0.219496 -0.572806\nv -0.156078 0.219496 -0.572806\nv -0.156078 0.219496 -0.572806\nv -0.207113 -0.543894 -0.610604\nv -0.135055 -0.786411 0.170046\nv -0.135055 -0.786411 0.170046\nv -0.244896 -0.207537 0.499978\nv -0.663195 -0.330316 0.275632\nv -0.663195 -0.330316 0.275632\nv -0.662608 -0.274583 0.328601\nv -0.158306 0.222651 -0.568293\nv 0.684434 0.240263 0.442347\nv 0.709341 0.235577 0.341159\nv 0.260167 0.581451 1.075587\nv -0.441062 -0.835027 -0.068232\nv -0.441062 -0.835027 -0.068232\nv -0.435007 -0.838445 -0.060048\nv 0.712439 0.237504 0.330482\nv -0.724802 0.188344 0.131332\nv -0.750059 0.306386 0.037035\nv -0.528580 0.011891 -0.247127\nv -0.519459 0.015802 -0.244683\nv -0.645496 -0.255311 0.313769\nv -0.642471 -0.200957 0.356455\nv -0.642471 -0.200957 0.356455\nv -0.327425 -0.120037 0.510153\nv 0.157497 -0.491718 -0.558557\nv -0.659156 0.079250 0.238365\nv 0.257880 0.584460 1.074513\nv 0.700377 0.414075 -0.138541\nv 0.700377 0.414075 -0.138541\nv 0.689496 0.278568 0.470253\nv 0.687630 0.274605 0.478995\nv 0.752694 0.108678 0.773159\nv 0.566447 0.018673 -0.219304\nv 0.566447 0.018673 -0.219304\nv -0.309969 0.206915 1.068503\nv -0.323576 0.213064 1.059933\nv -0.732311 0.162494 0.075328\nv -0.651351 0.007294 -0.060066\nv -0.554610 0.017185 -0.254101\nv 0.652672 0.050906 -0.088076\nv 0.725549 -0.077794 0.773045\nv 0.725549 -0.077794 0.773045\nv 0.773751 -0.101715 0.756737\nv 0.773751 -0.101715 0.756737\nv 0.847173 -0.209729 0.608312\nv 0.847173 -0.209729 0.608312\nv 0.847173 -0.209729 0.608312\nv -0.167079 -0.115824 0.510194\nv -0.172609 -0.146575 0.510187\nv -0.443081 -0.824870 -0.070960\nv -0.443081 -0.774019 -0.070961\nv -0.744240 0.240942 0.039235\nv -0.546823 0.011891 -0.252015\nv -0.537703 0.009935 -0.249571\nv 0.783836 -0.101966 0.750195\nv -0.336566 0.213081 1.048716\nv -0.553910 0.027355 -0.257548\nv -0.557241 0.006626 -0.218167\nv -0.546013 0.004218 -0.215159\nv 0.268532 0.459832 1.126592\nv -0.666968 -0.027691 -0.075212\nv -0.297894 0.195606 1.073071\nv 0.162610 -0.115575 0.500013\nv -0.231532 -0.723328 0.262544\nv -0.231532 -0.723328 0.262544\nv 0.706062 -0.074124 0.765724\nv -0.189070 -0.173132 0.510178\nv 0.687208 0.284390 0.447380\nv 0.281999 0.450431 1.120593\nv 0.281999 0.450431 1.120593\nv 0.309893 -0.628264 -0.539534\nv 0.445678 0.474681 -0.286983\nv 0.445678 0.474681 -0.286983\nv -0.456593 -0.775969 -0.041609\nv -0.709923 0.123215 0.075022\nv -0.709923 0.123215 0.075022\nv 0.719636 0.268112 0.319426\nv 0.679849 0.516615 0.514934\nv 0.724563 0.486055 0.379787\nv -0.555377 0.034689 -0.257942\nv 0.616382 -0.315393 0.091813\nv 0.616382 -0.315393 0.091813\nv 0.685757 0.332468 -0.127933\nv 0.787609 0.353997 0.171459\nv 0.787609 0.353997 0.171459\nv 0.787609 0.353997 0.171459\nv 0.738833 0.318257 0.144767\nv -0.442930 0.391887 -0.286537\nv -0.208987 -0.605486 0.088373\nv -0.446048 0.386818 -0.289417\nv 0.575842 -0.415415 0.044220\nv 0.724389 0.489717 0.376610\nv 0.678795 0.370735 -0.138756\nv 0.736371 0.316598 0.143407\nv 0.736371 0.316598 0.143407\nv -0.174217 -0.085406 0.510198\nv 0.757076 0.370605 0.334990\nv 0.322417 -0.561684 -0.388751\nv -0.289121 0.180793 1.072970\nv -0.190553 0.230400 -0.560847\nv 0.511473 -0.382778 -0.260100\nv -0.438919 0.404024 -0.332051\nv -0.438919 0.404024 -0.332051\nv -0.438139 0.414791 -0.335892\nv -0.438139 0.414791 -0.335892\nv 0.472952 -0.413759 -0.298534\nv 0.760127 0.381250 0.356845\nv 0.760127 0.381250 0.356845\nv 0.755948 0.427714 0.341371\nv 0.749176 0.472555 0.327619\nv 0.749176 0.472555 0.327619\nv 0.448751 0.392752 -0.314898\nv 0.448751 0.392752 -0.314898\nv 0.448751 0.392752 -0.314898\nv 0.454609 0.403464 -0.286057\nv 0.254360 0.524205 1.109821\nv -0.145174 -0.385083 -0.578012\nv -0.354533 0.180879 1.016487\nv -0.290802 -0.562930 0.104388\nv -0.278078 -0.582301 0.104388\nv 0.569853 0.017408 -0.211483\nv 0.569853 0.017408 -0.211483\nv 0.470920 0.398494 -0.287524\nv -0.258708 -0.595024 0.104388\nv 0.416656 0.419446 -0.270889\nv 0.383215 0.641466 0.838418\nv 0.618040 0.420704 0.741327\nv 0.240978 -0.611083 0.018964\nv -0.326472 -0.559086 -0.401622\nv -0.317453 -0.561684 -0.388751\nv -0.564889 0.017407 -0.211483\nv -0.564889 0.017407 -0.211483\nv 0.570615 -0.044678 0.695143\nv 0.706203 -0.070845 0.771697\nv -0.712792 0.383522 -0.116628\nv 0.205225 -0.659319 -0.454859\nv 0.840265 -0.074124 0.397006\nv 0.692208 0.402765 0.559562\nv 0.736116 0.384317 0.415105\nv -0.326090 0.121514 1.034882\nv -0.321894 -0.089286 0.510160\nv -0.370188 -0.807350 -0.124898\nv 0.617483 0.424674 0.740609\nv -0.289489 0.115386 1.063333\nv -0.305181 0.106218 1.045016\nv 0.462132 -0.522107 -0.174176\nv 0.330857 -0.667675 -0.379911\nv 0.885560 -0.101775 0.449833\nv 0.885560 -0.101775 0.449833\nv 0.504878 0.440763 0.918899\nv 0.566248 0.433992 0.832591\nv 0.369155 -0.647210 -0.430997\nv 0.377957 -0.653820 -0.433705\nv 0.374491 -0.203582 -0.458930\nv 0.389636 0.447658 1.040597\nv 0.673126 0.103332 -0.095618\nv 0.335900 -0.678753 -0.376789\nv -0.284378 0.178425 1.100447\nv 0.715744 0.194932 -0.089323\nv 0.385921 -0.159880 -0.460639\nv -0.385908 -0.760277 -0.113266\nv 0.889047 -0.102051 0.461474\nv -0.640976 0.532491 -0.013948\nv 0.164367 -0.346975 -0.611316\nv -0.373587 -0.757201 -0.105743\nv -0.373587 -0.757201 -0.105743\nv -0.367531 -0.752247 -0.097559\nv 0.594853 -0.259028 -0.197270\nv -0.446412 0.393539 -0.289302\nv -0.151138 -0.247094 -0.646581\nv 0.575307 -0.385117 -0.160324\nv 0.576920 -0.369565 -0.173638\nv 0.592008 -0.273936 -0.198201\nv 0.477663 0.414791 -0.342912\nv 0.477663 0.414791 -0.342912\nv -0.385908 -0.811128 -0.113266\nv 0.168791 -0.149945 0.500006\nv -0.672326 0.282677 0.466469\nv 0.306228 -0.513209 0.018964\nv 0.311825 -0.540236 0.018964\nv 0.265485 0.528138 1.113831\nv 0.213951 -0.605486 0.045822\nv 0.744634 0.472436 0.303021\nv 0.391665 0.695533 0.803261\nv 0.396546 0.697248 0.794306\nv -0.098443 -0.611156 -0.700115\nv -0.098443 -0.611156 -0.700115\nv -0.297526 0.200626 1.100599\nv 0.391200 0.593254 0.982422\nv 0.287120 0.599695 1.059508\nv -0.093439 -0.605961 -0.704325\nv 0.353633 -0.551482 -0.408155\nv 0.187189 -0.179626 0.499997\nv 0.414557 0.696522 0.772836\nv 0.043354 -0.351156 0.286217\nv 0.471376 0.685921 0.704532\nv 0.517871 0.672917 0.626007\nv 0.790744 -0.222440 0.593561\nv 0.790744 -0.222440 0.593561\nv -0.327018 -0.551315 -0.377801\nv 0.374219 -0.608380 -0.440138\nv 0.374418 -0.629055 -0.438993\nv 0.667655 -0.003385 0.034996\nv 0.741180 0.472607 0.321511\nv 0.741180 0.472607 0.321511\nv 0.472474 0.395312 -0.334623\nv 0.472474 0.395312 -0.334623\nv -0.505072 -0.563159 0.326707\nv 0.600081 0.051190 -0.138430\nv -0.777491 -0.217887 0.584508\nv 0.323992 -0.593840 -0.540174\nv 0.322712 -0.593815 -0.545205\nv 0.716339 0.257337 0.313245\nv -0.434635 -0.610350 0.326707\nv 0.563539 0.567737 0.778876\nv 0.503581 0.579803 0.862542\nv -0.380612 0.200735 1.028853\nv 0.306228 -0.567263 0.088373\nv -0.835301 -0.074124 0.397006\nv 0.132947 -0.266150 0.286211\nv 0.107517 -0.260183 0.286218\nv -0.889756 0.114861 0.430829\nv -0.886937 0.096072 0.416743\nv -0.315622 0.217575 1.093751\nv -0.720585 -0.077795 0.773045\nv -0.720585 -0.077795 0.773045\nv 0.653643 -0.308508 0.270114\nv 0.653643 -0.308508 0.270114\nv 0.653643 -0.308508 0.270114\nv 0.664007 -0.088561 0.325447\nv 0.664007 -0.088561 0.325447\nv 0.664007 -0.088561 0.325447\nv 0.568911 -0.302107 0.499697\nv 0.653183 -0.308920 0.259929\nv 0.647435 -0.200957 0.356455\nv 0.647435 -0.200957 0.356455\nv 0.657014 -0.188667 0.283747\nv -0.753381 0.096073 0.783686\nv -0.336015 0.226790 1.080907\nv -0.747730 0.108678 0.773159\nv 0.429444 -0.461183 -0.344175\nv 0.366304 -0.501696 -0.393908\nv -0.701098 -0.074124 0.765724\nv 0.487541 -0.419964 -0.292569\nv -0.144424 -0.896598 -0.545404\nv -0.144424 -0.896598 -0.545404\nv -0.144390 -0.776732 -0.071072\nv 0.242416 -0.564308 -0.471767\nv -0.204643 -0.555747 -0.474738\nv 0.650460 -0.255311 0.313769\nv -0.908975 -0.108257 0.591383\nv -0.907772 -0.110635 0.597146\nv -0.907487 -0.110452 0.600246\nv -0.907487 -0.110452 0.600246\nv 0.574115 0.439550 0.837224\nv -0.147697 -0.744039 -0.545404\nv 0.529369 -0.387341 -0.250896\nv -0.920481 -0.078911 0.550658\nv 0.856502 -0.182745 0.604150\nv 0.625897 0.430061 0.744445\nv 0.165285 -0.163442 -0.679268\nv 0.701292 0.407830 0.562173\nv 0.745105 0.389378 0.418444\nv 0.165383 -0.210253 -0.671763\nv 0.925390 0.116565 0.636702\nv -0.940693 0.031685 0.612804\nv 0.702385 0.514102 0.106580\nv -0.122731 -0.836911 -0.443603\nv -0.122731 -0.836911 -0.443603\nv -0.043434 -0.840304 -0.443603\nv -0.043434 -0.840304 -0.443603\nv -0.521022 -0.655344 -0.113915\nv -0.286111 -0.490140 0.018964\nv -0.531525 0.003038 -0.255704\nv 0.891901 0.096073 0.416743\nv -0.560008 0.009806 -0.195076\nv 0.057116 -0.373358 0.286210\nv 0.544858 -0.653366 -0.123375\nv 0.561321 -0.647725 -0.131787\nv 0.525986 -0.655344 -0.113915\nv 0.851552 -0.182820 0.617655\nv -0.185917 -0.590333 0.076025\nv 0.744209 0.385915 0.142747\nv -0.043434 -0.767725 -0.545404\nv -0.043434 -0.767725 -0.545404\nv -0.208987 -0.605486 0.076024\nv -0.595683 -0.031906 -0.178361\nv -0.568003 -0.634756 -0.138100\nv 0.477010 -0.624300 0.210595\nv -0.059100 -0.597795 -0.710338\nv -0.168430 -0.139949 -0.668101\nv 0.508839 -0.603223 0.210595\nv 0.542880 -0.533983 0.257233\nv -0.252541 -0.553471 -0.601892\nv 0.534860 -0.573442 0.257233\nv -0.139152 -0.387321 -0.580242\nv -0.148670 -0.314748 -0.619653\nv 0.202818 -0.800530 0.237624\nv 0.202818 -0.800530 0.237624\nv 0.212911 -0.800530 0.223984\nv 0.212911 -0.800530 0.223984\nv 0.202818 -0.728513 0.237623\nv 0.202818 -0.728513 0.237623\nv 0.177563 -0.717768 0.197827\nv 0.177563 -0.717768 0.197827\nv 0.212911 -0.728513 0.223983\nv 0.212911 -0.728513 0.223983\nv -0.250216 -0.541176 -0.623918\nv 0.167470 -0.717768 0.211467\nv 0.167470 -0.717768 0.211467\nv -0.163068 0.121588 -0.611945\nv -0.243286 -0.545008 -0.604250\nv 0.301865 -0.618444 -0.552574\nv 0.301865 -0.618444 -0.552574\nv 0.367971 0.654648 0.837574\nv 0.855039 -0.183170 0.611260\nv 0.177563 -0.794624 0.197827\nv 0.177563 -0.794624 0.197827\nv 0.550596 -0.028656 -0.231738\nv 0.167470 -0.794624 0.211467\nv 0.167470 -0.794624 0.211467\nv 0.546109 -0.268573 -0.257038\nv -0.168548 -0.140788 -0.671478\nv 0.554260 0.628828 0.524896\nv -0.158566 -0.245827 -0.651046\nv 0.483459 0.445565 -0.307554\nv 0.519791 -0.382010 -0.232396\nv 0.519791 -0.382010 -0.232396\nv 0.760964 0.397907 0.192953\nv 0.494260 0.432555 -0.304915\nv 0.486510 0.403464 -0.292536\nv 0.443809 0.416474 -0.288695\nv 0.495424 0.416474 -0.299179\nv -0.332009 -0.599372 -0.367859\nv 0.060581 -0.694580 -0.809820\nv 0.438791 -0.770497 -0.058455\nv 0.730815 0.193519 0.136846\nv 0.176253 -0.247094 -0.639247\nv 0.100006 -0.613804 -0.698136\nv 0.156102 -0.247094 -0.646581\nvt 0.979075 0.518769\nvt 0.801209 0.487591\nvt 0.793262 0.885262\nvt 0.337999 0.009132\nvt 0.266998 0.081960\nvt 0.740559 0.818698\nvt 0.364324 0.879193\nvt 0.116869 0.997634\nvt 0.278725 0.687126\nvt 0.388769 0.093367\nvt 0.709753 0.395793\nvt 0.766879 0.292215\nvt 0.891792 0.716338\nvt 0.565964 0.262108\nvt 0.817552 0.514427\nvt 0.695038 0.319630\nvt 0.595676 0.527221\nvt 0.983136 0.493855\nvt 0.582686 0.628999\nvt 0.685953 0.680610\nvt 0.576175 0.206279\nvt 0.729571 0.453533\nvt 0.350164 0.356104\nvt 0.556354 0.208431\nvt 0.062786 0.224295\nvt 0.654763 0.194557\nvt 0.291646 0.199307\nvt 0.772973 0.803776\nvt 0.523779 0.288448\nvt 0.897356 0.251693\nvt 0.819628 0.117390\nvt 0.387694 0.244409\nvt 0.995528 0.528494\nvt 0.388123 0.652054\nvt 0.372654 0.156402\nvt 0.454994 0.914881\nvt 0.279039 0.076016\nvt 0.401217 0.061489\nvt 0.749139 0.378955\nvt 0.542817 0.431280\nvt 0.362741 0.458890\nvt 0.085576 0.230534\nvt 0.555180 0.236490\nvt 0.082952 0.451914\nvt 0.672240 0.242067\nvt 0.932727 0.578444\nvt 0.399536 0.496832\nvt 0.513944 0.057500\nvt 0.024748 0.224295\nvt 0.454731 0.473846\nvt 0.672277 0.453415\nvt 0.383425 0.410596\nvt 0.308895 0.443413\nvt 0.740797 0.035845\nvt 0.501239 0.149157\nvt 0.720256 0.744369\nvt 0.883736 0.451988\nvt 0.451528 0.851113\nvt 0.726412 0.264543\nvt 0.588201 0.117562\nvt 0.293494 0.489823\nvt 0.694365 0.623307\nvt 0.279039 0.064749\nvt 0.411969 0.020341\nvt 0.336340 0.045882\nvt 0.569325 0.460325\nvt 0.734046 0.015053\nvt 0.911240 0.817463\nvt 0.929665 0.799065\nvt 0.650111 0.653209\nvt 0.963851 0.182419\nvt 0.683378 0.254826\nvt 0.949654 0.247860\nvt 0.566555 0.363002\nvt 0.824718 0.995127\nvt 0.183213 0.690885\nvt 0.092991 0.093571\nvt 0.482370 0.286689\nvt 0.151212 0.374382\nvt 0.369117 0.040747\nvt 0.624285 0.206279\nvt 0.393395 0.051739\nvt 0.784137 0.773557\nvt 0.735633 0.517661\nvt 0.685317 0.606417\nvt 0.619159 0.613559\nvt 0.648821 0.091545\nvt 0.459844 0.042421\nvt 0.697708 0.766862\nvt 0.826362 0.545921\nvt 0.821381 0.227389\nvt 0.842386 0.044852\nvt 0.294766 0.234790\nvt 0.159236 0.087776\nvt 0.075532 0.045943\nvt 0.313733 0.410140\nvt 0.226580 0.070223\nvt 0.322627 0.349001\nvt 0.991424 0.516563\nvt 0.038709 0.208585\nvt 0.085737 0.916192\nvt 0.036957 0.468241\nvt 0.123461 0.224295\nvt 0.050688 0.208579\nvt 0.826835 0.185465\nvt 0.759947 0.058450\nvt 0.613597 0.091545\nvt 0.843140 0.836605\nvt 0.824045 0.304752\nvt 0.624285 0.208932\nvt 0.809522 0.594082\nvt 0.538744 0.365073\nvt 0.435533 0.312058\nvt 0.696822 0.272843\nvt 0.654175 0.425043\nvt 0.801209 0.410199\nvt 0.407210 0.036114\nvt 0.210607 0.026961\nvt 0.739167 0.513101\nvt 0.534341 0.751158\nvt 0.646098 0.105103\nvt 0.884421 0.809181\nvt 0.802067 0.906724\nvt 0.878935 0.113641\nvt 0.550114 0.372155\nvt 0.627641 0.250675\nvt 0.605865 0.372172\nvt 0.610037 0.906184\nvt 0.865794 0.431984\nvt 0.016619 0.093566\nvt 0.629444 0.604685\nvt 0.300096 0.220883\nvt 0.390632 0.651675\nvt 0.296190 0.099224\nvt 0.436960 0.432388\nvt 0.409084 0.076433\nvt 0.767842 0.474323\nvt 0.418051 0.045705\nvt 0.956999 0.049755\nvt 0.855023 0.053845\nvt 0.846765 0.861292\nvt 0.266267 0.220950\nvt 0.412251 0.402646\nvt 0.843180 0.302299\nvt 0.786943 0.176172\nvt 0.673544 0.240391\nvt 0.762268 0.979399\nvt 0.948144 0.764621\nvt 0.241579 0.093622\nvt 0.406723 0.466255\nvt 0.387055 0.149599\nvt 0.337303 0.098396\nvt 0.239099 0.304416\nvt 0.391912 0.328320\nvt 0.109512 0.070223\nvt 0.397050 0.082293\nvt 0.709753 0.474323\nvt 0.020988 0.399752\nvt 0.887916 0.789134\nvt 0.266998 0.026961\nvt 0.914049 0.367617\nvt 0.797626 0.052171\nvt 0.857021 0.366624\nvt 0.696260 0.215358\nvt 0.879754 0.209981\nvt 0.508644 0.377911\nvt 0.755932 0.547135\nvt 0.781153 0.238702\nvt 0.784229 0.730398\nvt 0.688493 0.580040\nvt 0.749090 0.383661\nvt 0.412036 0.065894\nvt 0.325389 0.216653\nvt 0.434011 0.328100\nvt 0.176465 0.938240\nvt 0.425123 0.020093\nvt 0.238183 0.150503\nvt 0.228065 0.195371\nvt 0.185293 0.195377\nvt 0.226633 0.199337\nvt 0.019108 0.689377\nvt 0.104645 0.481422\nvt 0.204527 0.245207\nvt 0.170642 0.256705\nvt 0.204527 0.234790\nvt 0.093474 0.154567\nvt 0.062786 0.517804\nvt 0.601427 0.734472\nvt 0.454521 0.932108\nvt 0.622263 0.626485\nvt 0.236157 0.353727\nvt 0.786053 0.889676\nvt 0.368474 0.351492\nvt 0.823952 0.617257\nvt 0.742434 0.163055\nvt 0.510047 0.053753\nvt 0.142431 0.009370\nvt 0.437932 0.474260\nvt 0.361415 0.412479\nvt 0.396628 0.439972\nvt 0.484197 0.555188\nvt 0.426684 0.781498\nvt 0.483714 0.493659\nvt 0.254612 0.015355\nvt 0.396215 0.087890\nvt 0.987422 0.519898\nvt 0.670152 0.176169\nvt 0.306862 0.440855\nvt 0.642555 0.625785\nvt 0.644581 0.087881\nvt 0.682225 0.658188\nvt 0.221362 0.224592\nvt 0.653566 0.208467\nvt 0.994845 0.583041\nvt 0.900533 0.041987\nvt 0.637762 0.369065\nvt 0.653489 0.480224\nvt 0.857475 0.368085\nvt 0.613376 0.631745\nvt 0.155085 0.652510\nvt 0.254612 0.054805\nvt 0.871488 0.800663\nvt 0.043738 0.050276\nvt 0.043738 0.054805\nvt 0.016646 0.076016\nvt 0.043738 0.026961\nvt 0.043738 0.009370\nvt 0.707230 0.628075\nvt 0.690319 0.391229\nvt 0.336780 0.077133\nvt 0.705129 0.632340\nvt 0.807679 0.029845\nvt 0.395441 0.460955\nvt 0.753219 0.904860\nvt 0.674377 0.190259\nvt 0.560086 0.141982\nvt 0.060048 0.437588\nvt 0.291646 0.209192\nvt 0.214203 0.148011\nvt 0.741337 0.522998\nvt 0.946655 0.109504\nvt 0.488189 0.141232\nvt 0.372386 0.436929\nvt 0.484013 0.412511\nvt 0.437213 0.402772\nvt 0.368906 0.082810\nvt 0.547603 0.114080\nvt 0.014516 0.099444\nvt 0.014516 0.154567\nvt 0.187459 0.821756\nvt 0.193698 0.041603\nvt 0.592666 0.417272\nvt 0.987422 0.517393\nvt 0.827339 0.862822\nvt 0.374905 0.677456\nvt 0.752581 0.782549\nvt 0.984604 0.178676\nvt 0.601122 0.220014\nvt 0.769445 0.088597\nvt 0.823516 0.823521\nvt 0.626916 0.236788\nvt 0.953780 0.152698\nvt 0.385603 0.379636\nvt 0.389740 0.014973\nvt 0.403821 0.462861\nvt 0.865794 0.389299\nvt 0.994242 0.509485\nvt 0.403401 0.208300\nvt 0.476050 0.012463\nvt 0.400530 0.103368\nvt 0.497417 0.391511\nvt 0.369436 0.412910\nvt 0.153644 0.361926\nvt 0.451705 0.431953\nvt 0.320744 0.084316\nvt 0.087287 0.614893\nvt 0.091368 0.606616\nvt 0.039988 0.224295\nvt 0.409491 0.003579\nvt 0.801209 0.417547\nvt 0.979240 0.528042\nvt 0.662502 0.355922\nvt 0.967553 0.183731\nvt 0.777188 0.760277\nvt 0.651169 0.597326\nvt 0.741088 0.312158\nvt 0.696504 0.618277\nvt 0.818313 0.030682\nvt 0.347062 0.427803\nvt 0.523128 0.106678\nvt 0.853410 0.322661\nvt 0.690184 0.384531\nvt 0.621324 0.410550\nvt 0.142431 0.041603\nvt 0.749090 0.481004\nvt 0.070193 0.465184\nvt 0.334380 0.584477\nvt 0.959204 0.063947\nvt 0.539125 0.156890\nvt 0.283435 0.950325\nvt 0.761481 0.088597\nvt 0.661821 0.215358\nvt 0.565487 0.537194\nvt 0.858300 0.238860\nvt 0.168715 0.386696\nvt 0.763293 0.064206\nvt 0.561090 0.384349\nvt 0.603284 0.378281\nvt 0.193659 0.093556\nvt 0.734231 0.807473\nvt 0.435685 0.103565\nvt 0.126000 0.059605\nvt 0.696512 0.154206\nvt 0.519392 0.059637\nvt 0.395315 0.650002\nvt 0.504884 0.351329\nvt 0.700336 0.629229\nvt 0.508260 0.217971\nvt 0.958483 0.154730\nvt 0.801758 0.837952\nvt 0.705253 0.178850\nvt 0.667734 0.359979\nvt 0.353517 0.077519\nvt 0.408354 0.653863\nvt 0.178314 0.291414\nvt 0.497660 0.384710\nvt 0.320203 0.074759\nvt 0.021130 0.427566\nvt 0.369031 0.066811\nvt 0.948476 0.452174\nvt 0.710008 0.191584\nvt 0.533859 0.140769\nvt 0.599406 0.298254\nvt 0.325877 0.337969\nvt 0.873842 0.796998\nvt 0.666452 0.087881\nvt 0.753459 0.089864\nvt 0.824428 0.314354\nvt 0.942934 0.254170\nvt 0.653644 0.410967\nvt 0.978503 0.522957\nvt 0.785349 0.410199\nvt 0.857873 0.363743\nvt 0.622280 0.424646\nvt 0.617941 0.378242\nvt 0.827125 0.410199\nvt 0.622795 0.446237\nvt 0.358027 0.436004\nvt 0.432439 0.100120\nvt 0.263607 0.375350\nvt 0.295796 0.398965\nvt 0.425369 0.445956\nvt 0.140335 0.224601\nvt 0.433898 0.410199\nvt 0.389340 0.009431\nvt 0.369687 0.093321\nvt 0.111635 0.917961\nvt 0.408038 0.413470\nvt 0.343748 0.408440\nvt 0.352496 0.341294\nvt 0.126205 0.298055\nvt 0.833788 0.589664\nvt 0.776166 0.032651\nvt 0.945462 0.620932\nvt 0.380007 0.732713\nvt 0.751667 0.131878\nvt 0.939199 0.663715\nvt 0.410233 0.415462\nvt 0.424459 0.328235\nvt 0.776176 0.032696\nvt 0.558100 0.452807\nvt 0.210607 0.021309\nvt 0.799989 0.229420\nvt 0.705157 0.778996\nvt 0.713949 0.759056\nvt 0.799180 0.052171\nvt 0.725192 0.628135\nvt 0.743960 0.305695\nvt 0.783790 0.035979\nvt 0.419109 0.463407\nvt 0.747440 0.240972\nvt 0.487019 0.511791\nvt 0.991770 0.529044\nvt 0.159236 0.045943\nvt 0.075532 0.087776\nvt 0.333711 0.331816\nvt 0.498727 0.203738\nvt 0.217374 0.213187\nvt 0.314056 0.228931\nvt 0.690456 0.418108\nvt 0.755390 0.306850\nvt 0.285403 0.714008\nvt 0.912766 0.800485\nvt 0.816651 0.876359\nvt 0.649673 0.737574\nvt 0.819832 0.030682\nvt 0.805397 0.051284\nvt 0.607125 0.232542\nvt 0.564442 0.068718\nvt 0.944800 0.625968\nvt 0.198650 0.217062\nvt 0.249646 0.245207\nvt 0.827125 0.474323\nvt 0.387270 0.317908\nvt 0.681017 0.729273\nvt 0.059635 0.099444\nvt 0.774732 0.092546\nvt 0.455917 0.079188\nvt 0.221362 0.227449\nvt 0.414267 0.419803\nvt 0.778148 0.973836\nvt 0.397152 0.453043\nvt 0.693916 0.672660\nvt 0.642682 0.091545\nvt 0.580994 0.208932\nvt 0.745547 0.241583\nvt 0.655511 0.332557\nvt 0.925769 0.709657\nvt 0.897574 0.329009\nvt 0.003508 0.427373\nvt 0.143524 0.445851\nvt 0.353361 0.045914\nvt 0.944366 0.723340\nvt 0.418554 0.458118\nvt 0.943658 0.256647\nvt 0.715654 0.254825\nvt 0.955614 0.523821\nvt 0.669279 0.763960\nvt 0.794519 0.051284\nvt 0.803268 0.238702\nvt 0.733117 0.504388\nvt 0.722913 0.763539\nvt 0.987441 0.530009\nvt 0.075532 0.032192\nvt 0.450965 0.203738\nvt 0.305833 0.026961\nvt 0.109512 0.054805\nvt 0.380886 0.077300\nvt 0.110527 0.208583\nvt 0.099009 0.474188\nvt 0.046179 0.548598\nvt 0.057784 0.464627\nvt 0.118705 0.633345\nvt 0.109894 0.093583\nvt 0.075515 0.093566\nvt 0.642235 0.215317\nvt 0.650292 0.032266\nvt 0.340523 0.429699\nvt 0.595443 0.208932\nvt 0.467493 0.040143\nvt 0.565636 0.039528\nvt 0.840092 0.973210\nvt 0.667011 0.011149\nvt 0.721033 0.264543\nvt 0.814517 0.288739\nvt 0.575358 0.397720\nvt 0.636282 0.397120\nvt 0.176410 0.045943\nvt 0.671858 0.473757\nvt 0.379182 0.453434\nvt 0.389389 0.099461\nvt 0.454433 0.870145\nvt 0.827125 0.487591\nvt 0.582096 0.453170\nvt 0.694138 0.264543\nvt 0.607702 0.220014\nvt 0.654148 0.576838\nvt 0.693097 0.176147\nvt 0.899930 0.294593\nvt 0.700288 0.004378\nvt 0.929815 0.377763\nvt 0.828349 0.703588\nvt 0.207102 0.220844\nvt 0.273068 0.203343\nvt 0.868661 0.461057\nvt 0.142431 0.032192\nvt 0.800781 0.378948\nvt 0.074062 0.475941\nvt 0.336495 0.274312\nvt 0.037544 0.766076\nvt 0.729571 0.467595\nvt 0.702426 0.037863\nvt 0.853104 0.862078\nvt 0.768225 0.296021\nvt 0.632231 0.728337\nvt 0.730707 0.595377\nvt 0.975692 0.279621\nvt 0.758721 0.024715\nvt 0.758241 0.859117\nvt 0.569999 0.119888\nvt 0.577183 0.115195\nvt 0.709783 0.378959\nvt 0.749090 0.453533\nvt 0.767842 0.417547\nvt 0.425208 0.415800\nvt 0.452894 0.446275\nvt 0.672127 0.439268\nvt 0.002567 0.686782\nvt 0.983420 0.516565\nvt 0.885464 0.240761\nvt 0.807939 0.925617\nvt 0.692969 0.299671\nvt 0.821186 0.293727\nvt 0.419106 0.463403\nvt 0.665036 0.327768\nvt 0.780030 0.092546\nvt 0.693882 0.118469\nvt 0.792169 0.075096\nvt 0.745378 0.529484\nvt 0.709753 0.453533\nvt 0.671960 0.432186\nvt 0.299413 0.332769\nvt 0.295029 0.331221\nvt 0.307645 0.953970\nvt 0.370159 0.360258\nvt 0.496599 0.372160\nvt 0.483757 0.405519\nvt 0.444824 0.627842\nvt 0.480642 0.035273\nvt 0.407383 0.664285\nvt 0.055938 0.233716\nvt 0.199434 0.199014\nvt 0.128181 0.419979\nvt 0.118948 0.788474\nvt 0.093743 0.435958\nvt 0.240039 0.993894\nvt 0.244788 0.976016\nvt 0.244410 0.280665\nvt 0.096279 0.548564\nvt 0.136597 0.304491\nvt 0.785349 0.402860\nvt 0.159217 0.093571\nvt 0.377375 0.212619\nvt 0.677548 0.543595\nvt 0.550798 0.290239\nvt 0.867747 0.316000\nvt 0.748628 0.783621\nvt 0.610026 0.331027\nvt 0.681749 0.087881\nvt 0.686570 0.578915\nvt 0.702150 0.087881\nvt 0.698719 0.194830\nvt 0.635654 0.486754\nvt 0.241256 0.037031\nvt 0.442703 0.943292\nvt 0.194675 0.208464\nvt 0.494072 0.124874\nvt 0.438359 0.015974\nvt 0.437446 0.395769\nvt 0.193698 0.081960\nvt 0.827125 0.424809\nvt 0.843140 0.848799\nvt 0.871223 0.286023\nvt 0.551783 0.416588\nvt 0.774732 0.089864\nvt 0.379776 0.345754\nvt 0.976067 0.102297\nvt 0.347454 0.670736\nvt 0.425260 0.484132\nvt 0.654427 0.432131\nvt 0.980598 0.509488\nvt 0.176410 0.009370\nvt 0.436069 0.350173\nvt 0.991472 0.517370\nvt 0.271472 0.957372\nvt 0.471216 0.356378\nvt 0.470216 0.372172\nvt 0.117264 0.411203\nvt 0.414086 0.046032\nvt 0.092609 0.076016\nvt 0.055870 0.480063\nvt 0.021249 0.560416\nvt 0.623230 0.650911\nvt 0.853062 0.790116\nvt 0.653902 0.417982\nvt 0.266998 0.070223\nvt 0.815188 0.362216\nvt 0.838139 0.773671\nvt 0.702423 0.037818\nvt 0.592822 0.513863\nvt 0.942327 0.146084\nvt 0.743038 0.242255\nvt 0.615619 0.590791\nvt 0.485816 0.149636\nvt 0.735797 0.105103\nvt 0.671665 0.218169\nvt 0.084048 0.445173\nvt 0.996192 0.520982\nvt 0.277971 0.408438\nvt 0.284759 0.798873\nvt 0.279039 0.026961\nvt 0.381440 0.030343\nvt 0.450965 0.208302\nvt 0.753851 0.232080\nvt 0.708957 0.117305\nvt 0.605785 0.711403\nvt 0.773204 0.132113\nvt 0.716506 0.173770\nvt 0.937769 0.035185\nvt 0.328440 0.393793\nvt 0.788031 0.361048\nvt 0.614668 0.208932\nvt 0.675115 0.743213\nvt 0.882527 0.757037\nvt 0.634049 0.091545\nvt 0.789858 0.051284\nvt 0.671587 0.418065\nvt 0.921203 0.617418\nvt 0.241256 0.041603\nvt 0.991706 0.519986\nvt 0.991212 0.522292\nvt 0.695238 0.304711\nvt 0.229806 0.248481\nvt 0.279370 0.224598\nvt 0.541029 0.764431\nvt 0.714109 0.202707\nvt 0.757871 0.804408\nvt 0.334301 0.422884\nvt 0.575634 0.109560\nvt 0.267803 0.227447\nvt 0.695298 0.302216\nvt 0.767842 0.410199\nvt 0.441907 0.389297\nvt 0.190133 0.497004\nvt 0.280548 0.299293\nvt 0.749090 0.431984\nvt 0.073983 0.700634\nvt 0.041687 0.459683\nvt 0.057505 0.505876\nvt 0.090866 0.461662\nvt 0.091200 0.596721\nvt 0.928724 0.046958\nvt 0.093832 0.233716\nvt 0.072517 0.442661\nvt 0.333919 0.220254\nvt 0.313604 0.224528\nvt 0.415547 0.315849\nvt 0.942078 0.023539\nvt 0.722064 0.229029\nvt 0.503706 0.144481\nvt 0.776568 0.079893\nvt 0.834859 0.844063\nvt 0.828990 0.157595\nvt 0.574118 0.504147\nvt 0.894845 0.479214\nvt 0.635644 0.101333\nvt 0.980660 0.510930\nvt 0.360508 0.244959\nvt 0.408729 0.056370\nvt 0.336417 0.051165\nvt 0.390246 0.020274\nvt 0.997293 0.520887\nvt 0.637743 0.369072\nvt 0.016774 0.093562\nvt 0.553319 0.114192\nvt 0.210607 0.009370\nvt 0.398000 0.076793\nvt 0.996779 0.528379\nvt 0.796907 0.812851\nvt 0.825900 0.030682\nvt 0.407009 0.275733\nvt 0.778268 0.017226\nvt 0.890029 0.375115\nvt 0.557986 0.846073\nvt 0.792709 0.138613\nvt 0.709742 0.790595\nvt 0.688842 0.585725\nvt 0.758941 0.057092\nvt 0.416072 0.035524\nvt 0.215807 0.245207\nvt 0.159236 0.009370\nvt 0.075532 0.021309\nvt 0.989228 0.503368\nvt 0.458608 0.314584\nvt 0.138518 0.200723\nvt 0.378463 0.649021\nvt 0.440433 0.432624\nvt 0.048514 0.451689\nvt 0.654722 0.446346\nvt 0.690454 0.015852\nvt 0.710275 0.264543\nvt 0.683379 0.264544\nvt 0.855112 0.283455\nvt 0.691947 0.087881\nvt 0.757248 0.536536\nvt 0.919210 0.741338\nvt 0.675456 0.364957\nvt 0.691666 0.575754\nvt 0.689340 0.563834\nvt 0.769445 0.089864\nvt 0.794519 0.052171\nvt 0.718462 0.043603\nvt 0.589770 0.486895\nvt 0.416068 0.537865\nvt 0.210607 0.076016\nvt 0.945517 0.457058\nvt 0.810501 0.307577\nvt 0.742795 0.364445\nvt 0.749740 0.908687\nvt 0.852160 0.133764\nvt 0.471564 0.787412\nvt 0.721789 0.530851\nvt 0.366440 0.442004\nvt 0.781566 0.308082\nvt 0.774256 0.925381\nvt 0.546629 0.208302\nvt 0.600253 0.208932\nvt 0.709753 0.487591\nvt 0.452504 0.935569\nvt 0.432775 0.003798\nvt 0.994945 0.779668\nvt 0.856016 0.862751\nvt 0.613305 0.903168\nvt 0.788023 0.089864\nvt 0.703272 0.136407\nvt 0.849813 0.777858\nvt 0.472084 0.418377\nvt 0.521122 0.378041\nvt 0.943607 0.244743\nvt 0.737292 0.208721\nvt 0.260136 0.980407\nvt 0.095667 0.467702\nvt 0.794536 0.194085\nvt 0.996073 0.526758\nvt 0.721486 0.183862\nvt 0.626968 0.965193\nvt 0.706124 0.630342\nvt 0.646742 0.087881\nvt 0.563793 0.043990\nvt 0.273556 0.580643\nvt 0.465680 0.050070\nvt 0.825012 0.835574\nvt 0.742773 0.361047\nvt 0.751301 0.766552\nvt 0.805035 0.772515\nvt 0.767842 0.487591\nvt 0.246711 0.248480\nvt 0.454639 0.384282\nvt 0.395272 0.276874\nvt 0.241256 0.015355\nvt 0.241166 0.093536\nvt 0.095866 0.845998\nvt 0.126000 0.081960\nvt 0.833209 0.358823\nvt 0.542689 0.766879\nvt 0.599566 0.740393\nvt 0.922192 0.783983\nvt 0.009095 0.305029\nvt 0.871223 0.410972\nvt 0.769761 0.326873\nvt 0.462237 0.058424\nvt 0.799180 0.051284\nvt 0.824242 0.877897\nvt 0.370575 0.438731\nvt 0.157890 0.304560\nvt 0.249646 0.234790\nvt 0.479668 0.208302\nvt 0.361311 0.435373\nvt 0.417807 0.451762\nvt 0.374680 0.330037\nvt 0.308665 0.677013\nvt 0.388052 0.239874\nvt 0.973106 0.750435\nvt 0.059914 0.538192\nvt 0.027132 0.533871\nvt 0.837607 0.353954\nvt 0.696926 0.116043\nvt 0.291618 0.009370\nvt 0.571743 0.531583\nvt 0.822479 0.307259\nvt 0.946525 0.016944\nvt 0.847037 0.037820\nvt 0.939236 0.628268\nvt 0.748282 0.092546\nvt 0.909467 0.821001\nvt 0.303065 0.339162\nvt 0.571157 0.109080\nvt 0.951699 0.714311\nvt 0.432945 0.054805\nvt 0.994044 0.513661\nvt 0.598968 0.741015\nvt 0.297067 0.372172\nvt 0.510038 0.384594\nvt 0.606710 0.237688\nvt 0.464443 0.090816\nvt 0.419818 0.305021\nvt 0.291617 0.217169\nvt 0.328831 0.203351\nvt 0.279039 0.009370\nvt 0.569436 0.438172\nvt 0.661856 0.105103\nvt 0.330064 0.372104\nvt 0.657886 0.229067\nvt 0.564275 0.480987\nvt 0.126000 0.041603\nvt 0.379368 0.315239\nvt 0.957193 0.001469\nvt 0.302240 0.770924\nvt 0.667138 0.535452\nvt 0.696057 0.051210\nvt 0.734051 0.015095\nvt 0.899225 0.290982\nvt 0.328129 0.405449\nvt 0.946455 0.034204\nvt 0.605056 0.208932\nvt 0.980798 0.513666\nvt 0.071112 0.515337\nvt 0.208046 0.678788\nvt 0.677710 0.105103\nvt 0.368013 0.347926\nvt 0.226580 0.021309\nvt 0.162190 0.248480\nvt 0.117801 0.616303\nvt 0.340361 0.093350\nvt 0.075910 0.093566\nvt 0.193698 0.045943\nvt 0.208722 0.304413\nvt 0.843586 0.264901\nvt 0.845751 0.302459\nvt 0.539467 0.228007\nvt 0.462449 0.007411\nvt 0.537538 0.157969\nvt 0.612312 0.249542\nvt 0.708904 0.639587\nvt 0.858154 0.202461\nvt 0.608026 0.214330\nvt 0.675778 0.743378\nvt 0.698304 0.798062\nvt 0.690409 0.411311\nvt 0.087805 0.200724\nvt 0.176410 0.032192\nvt 0.736691 0.193636\nvt 0.518119 0.472672\nvt 0.460561 0.217971\nvt 0.117816 0.628018\nvt 0.080840 0.615381\nvt 0.183094 0.330028\nvt 0.079698 0.780731\nvt 0.399120 0.071486\nvt 0.392283 0.036090\nvt 0.966745 0.178461\nvt 0.854411 0.431984\nvt 0.764933 0.048968\nvt 0.757681 0.213981\nvt 0.717125 0.866763\nvt 0.824153 0.871172\nvt 0.901331 0.250495\nvt 0.541228 0.160062\nvt 0.826710 0.063136\nvt 0.613841 0.228816\nvt 0.975797 0.502878\nvt 0.270841 0.158391\nvt 0.416099 0.327949\nvt 0.926612 0.617945\nvt 0.423729 0.454217\nvt 0.887220 0.021552\nvt 0.489991 0.323838\nvt 0.142431 0.045943\nvt 0.639232 0.640784\nvt 0.549304 0.487212\nvt 0.417389 0.392241\nvt 0.492422 0.339161\nvt 0.292052 0.093356\nvt 0.389696 0.194686\nvt 0.043293 0.451951\nvt 0.055393 0.511840\nvt 0.041417 0.551796\nvt 0.045545 0.200724\nvt 0.032392 0.230534\nvt 0.053349 0.444779\nvt 0.817061 0.911264\nvt 0.568449 0.114253\nvt 0.716091 0.720418\nvt 0.854977 0.943591\nvt 0.824178 0.189923\nvt 0.788073 0.845544\nvt 0.778981 0.364443\nvt 0.689720 0.616456\nvt 0.527395 0.217971\nvt 0.483037 0.298963\nvt 0.445355 0.318259\nvt 0.813772 0.693141\nvt 0.854411 0.439128\nvt 0.030810 0.782812\nvt 0.746547 0.107896\nvt 0.798998 0.164738\nvt 0.406732 0.466390\nvt 0.386202 0.668244\nvt 0.433408 0.492971\nvt 0.109512 0.021309\nvt 0.234010 0.372172\nvt 0.654763 0.170117\nvt 0.801209 0.474323\nvt 0.813988 0.833539\nvt 0.591309 0.182138\nvt 0.509667 0.397942\nvt 0.719395 0.037038\nvt 0.634829 0.996662\nvt 0.733711 0.361053\nvt 0.562077 0.402906\nvt 0.526443 0.646827\nvt 0.555237 0.103906\nvt 0.782686 0.092546\nvt 0.327581 0.434082\nvt 0.781250 0.098942\nvt 0.393029 0.117590\nvt 0.195312 0.648489\nvt 0.104709 0.200724\nvt 0.150901 0.369806\nvt 0.140262 0.227448\nvt 0.116621 0.260748\nvt 0.179094 0.256705\nvt 0.158415 0.208584\nvt 0.689276 0.066029\nvt 0.140249 0.466843\nvt 0.178299 0.660554\nvt 0.240552 0.100504\nvt 0.110525 0.221519\nvt 0.228067 0.158391\nvt 0.142518 0.158393\nvt 0.751838 0.364439\nvt 0.894378 0.250063\nvt 0.747204 0.045794\nvt 0.561212 0.396539\nvt 0.998349 0.178676\nvt 0.632210 0.256831\nvt 0.789767 0.372186\nvt 0.835781 0.155256\nvt 0.939508 0.569430\nvt 0.444597 0.122412\nvt 0.596433 0.073408\nvt 0.651977 0.215358\nvt 0.718135 0.714448\nvt 0.140482 0.320946\nvt 0.142431 0.054805\nvt 0.729571 0.439128\nvt 0.314833 0.408872\nvt 0.426033 0.176058\nvt 0.498908 0.335313\nvt 0.454217 0.460369\nvt 0.515566 0.013357\nvt 0.353298 0.019366\nvt 0.143519 0.445978\nvt 0.657954 0.091545\nvt 0.559285 0.052862\nvt 0.655842 0.686418\nvt 0.623800 0.087881\nvt 0.865794 0.481004\nvt 0.575571 0.118145\nvt 0.488033 0.333322\nvt 0.767863 0.074223\nvt 0.962191 0.823190\nvt 0.744349 0.015725\nvt 0.610962 0.849850\nvt 0.273068 0.213229\nvt 0.302387 0.224599\nvt 0.544105 0.052149\nvt 0.957000 0.605414\nvt 0.821967 0.566139\nvt 0.755190 0.665720\nvt 0.811853 0.228012\nvt 0.707251 0.639810\nvt 0.432945 0.032192\nvt 0.146435 0.203303\nvt 0.452235 0.439115\nvt 0.417246 0.040608\nvt 0.254612 0.009370\nvt 0.432945 0.070223\nvt 0.054789 0.432361\nvt 0.039911 0.559607\nvt 0.036845 0.506717\nvt 0.043738 0.059605\nvt 0.016646 0.064749\nvt 0.016646 0.045943\nvt 0.016646 0.032192\nvt 0.043738 0.015355\nvt 0.841136 0.309246\nvt 0.599476 0.290702\nvt 0.809492 0.038665\nvt 0.623367 0.747604\nvt 0.588306 0.120059\nvt 0.946665 0.260604\nvt 0.753872 0.340220\nvt 0.274719 0.220951\nvt 0.741498 0.229366\nvt 0.765913 0.291566\nvt 0.511771 0.052531\nvt 0.797626 0.051284\nvt 0.681506 0.218169\nvt 0.527974 0.189916\nvt 0.893280 0.546176\nvt 0.128668 0.228930\nvt 0.075532 0.009370\nvt 0.159236 0.021309\nvt 0.876884 0.437894\nvt 0.574382 0.629525\nvt 0.274487 0.331317\nvt 0.431102 0.425391\nvt 0.418340 0.050755\nvt 0.805901 0.865254\nvt 0.008784 0.551690\nvt 0.789364 0.804911\nvt 0.310879 0.540941\nvt 0.512639 0.635571\nvt 0.787287 0.838471\nvt 0.702424 0.038275\nvt 0.385562 0.191885\nvt 0.713765 0.787311\nvt 0.709476 0.105103\nvt 0.707066 0.364508\nvt 0.757013 0.177023\nvt 0.877507 0.451236\nvt 0.651340 0.105103\nvt 0.447585 0.372172\nvt 0.769343 0.291891\nvt 0.149872 0.099444\nvt 0.583107 0.532567\nvt 0.873753 0.382315\nvt 0.518388 0.228807\nvt 0.574055 0.118938\nvt 0.801150 0.074515\nvt 0.749090 0.417547\nvt 0.212902 0.256705\nvt 0.560089 0.011472\nvt 0.491676 0.061649\nvt 0.361006 0.349391\nvt 0.433898 0.389299\nvt 0.305833 0.050276\nvt 0.608132 0.453382\nvt 0.027484 0.790306\nvt 0.078004 0.224295\nvt 0.029688 0.438889\nvt 0.096258 0.485380\nvt 0.685076 0.562021\nvt 0.126000 0.032192\nvt 0.802253 0.289531\nvt 0.835648 0.868556\nvt 0.259574 0.299682\nvt 0.878483 0.028610\nvt 0.498262 0.338333\nvt 0.511269 0.984306\nvt 0.937859 0.015872\nvt 0.588201 0.155571\nvt 0.941785 0.323003\nvt 0.725117 0.731239\nvt 0.315364 0.434066\nvt 0.408422 0.357556\nvt 0.702526 0.501163\nvt 0.509719 0.404736\nvt 0.877632 0.805122\nvt 0.557488 0.460077\nvt 0.975388 0.261796\nvt 0.075532 0.076016\nvt 0.392586 0.119713\nvt 0.291618 0.087776\nvt 0.885726 0.126622\nvt 0.327489 0.404156\nvt 0.361838 0.407094\nvt 0.464434 0.308384\nvt 0.438004 0.383799\nvt 0.609215 0.719971\nvt 0.796072 0.051284\nvt 0.754027 0.346628\nvt 0.402902 0.396793\nvt 0.802158 0.287410\nvt 0.377814 0.317229\nvt 0.946282 0.328274\nvt 0.687775 0.173574\nvt 0.819366 0.295745\nvt 0.544696 0.747648\nvt 0.764084 0.550513\nvt 0.134417 0.443737\nvt 0.802274 0.751181\nvt 0.686136 0.709505\nvt 0.693053 0.180795\nvt 0.551809 0.481062\nvt 0.215807 0.234790\nvt 0.176410 0.041603\nvt 0.812242 0.029845\nvt 0.420898 0.429964\nvt 0.352024 0.410893\nvt 0.141018 0.448555\nvt 0.870844 0.305131\nvt 0.720170 0.240422\nvt 0.614142 0.073770\nvt 0.029423 0.427976\nvt 0.785349 0.453533\nvt 0.405567 0.003598\nvt 0.450965 0.217971\nvt 0.178557 0.956951\nvt 0.694802 0.242320\nvt 0.745015 0.198354\nvt 0.695407 0.297081\nvt 0.673942 0.236759\nvt 0.707410 0.572640\nvt 0.843289 0.131156\nvt 0.569749 0.535420\nvt 0.189466 0.398272\nvt 0.781100 0.754423\nvt 0.720851 0.218169\nvt 0.568770 0.193475\nvt 0.510452 0.411641\nvt 0.215554 0.220844\nvt 0.850916 0.877853\nvt 0.380776 0.019804\nvt 0.140262 0.228928\nvt 0.791929 0.807965\nvt 0.873880 0.912262\nvt 0.656506 0.658063\nvt 0.447410 0.314512\nvt 0.647054 0.218169\nvt 0.930340 0.251001\nvt 0.291618 0.050276\nvt 0.093124 0.224295\nvt 0.398585 0.970832\nvt 0.380007 0.349330\nvt 0.605227 0.961959\nvt 0.438131 0.486940\nvt 0.305833 0.070223\nvt 0.092609 0.021309\nvt 0.302597 0.444240\nvt 0.217372 0.195374\nvt 0.256212 0.224595\nvt 0.736540 0.187553\nvt 0.368783 0.077487\nvt 0.801209 0.453533\nvt 0.777377 0.089864\nvt 0.539157 0.162358\nvt 0.513544 0.096644\nvt 0.627114 0.240454\nvt 0.866276 0.832458\nvt 0.687336 0.193253\nvt 0.857125 0.035971\nvt 0.793913 0.078951\nvt 0.607944 0.560087\nvt 0.715930 0.215358\nvt 0.756135 0.089864\nvt 0.592220 0.583772\nvt 0.619469 0.486816\nvt 0.519415 0.011001\nvt 0.927626 0.098527\nvt 0.171069 0.332312\nvt 0.661402 0.078081\nvt 0.618033 0.238178\nvt 0.806952 0.052171\nvt 0.432945 0.081960\nvt 0.470562 0.321111\nvt 0.273823 0.099602\nvt 0.368705 0.750520\nvt 0.451920 0.356370\nvt 0.340651 0.332324\nvt 0.261457 0.489126\nvt 0.437035 0.333440\nvt 0.418395 0.190145\nvt 0.454110 0.543743\nvt 0.388741 0.100049\nvt 0.695286 0.322260\nvt 0.817164 0.297169\nvt 0.667396 0.066302\nvt 0.261472 0.489260\nvt 0.691011 0.661790\nvt 0.382102 0.668119\nvt 0.529252 0.341182\nvt 0.683237 0.589905\nvt 0.687221 0.192250\nvt 0.971060 0.095912\nvt 0.487081 0.315665\nvt 0.830865 0.134262\nvt 0.931948 0.788093\nvt 0.217894 0.649264\nvt 0.672784 0.198977\nvt 0.328768 0.213190\nvt 0.148128 0.245207\nvt 0.311658 0.333726\nvt 0.447643 0.352735\nvt 0.493480 0.372172\nvt 0.464224 0.258806\nvt 0.377820 0.667154\nvt 0.806360 0.067774\nvt 0.408146 0.020443\nvt 0.694943 0.240560\nvt 0.226619 0.203351\nvt 0.914381 0.251091\nvt 0.746998 0.241843\nvt 0.125300 0.266537\nvt 0.670414 0.236858\nvt 0.403409 0.100123\nvt 0.720008 0.815969\nvt 0.854411 0.481004\nvt 0.606770 0.228316\nvt 0.752523 0.190142\nvt 0.420533 0.808353\nvt 0.953882 0.209376\nvt 0.687820 0.042435\nvt 0.687184 0.026721\nvt 0.797823 0.373596\nvt 0.760237 0.769600\nvt 0.937508 0.791373\nvt 0.976485 0.502359\nvt 0.776322 0.189030\nvt 0.622593 0.453400\nvt 0.208723 0.291390\nvt 0.355911 0.667442\nvt 0.319828 0.449160\nvt 0.113161 0.157204\nvt 0.232465 0.217085\nvt 0.082194 0.099444\nvt 0.302461 0.228930\nvt 0.433898 0.383661\nvt 0.319895 0.025550\nvt 0.323923 0.992118\nvt 0.475213 0.486490\nvt 0.755862 0.257471\nvt 0.510019 0.859505\nvt 0.637269 0.220010\nvt 0.961913 0.150600\nvt 0.957746 0.151817\nvt 0.538750 0.417011\nvt 0.489587 0.372151\nvt 0.732086 0.041528\nvt 0.567652 0.111906\nvt 0.897137 0.251252\nvt 0.458358 0.837365\nvt 0.803366 0.276922\nvt 0.368662 0.019352\nvt 0.872431 0.204231\nvt 0.245203 0.209189\nvt 0.319507 0.213200\nvt 0.831544 0.047464\nvt 0.827125 0.383661\nvt 0.397074 0.686203\nvt 0.295329 0.396803\nvt 0.164776 0.405352\nvt 0.154740 0.652954\nvt 0.279039 0.050276\nvt 0.978658 0.520995\nvt 0.447428 0.309401\nvt 0.693025 0.297031\nvt 0.715277 0.001425\nvt 0.003468 0.076016\nvt 0.410434 0.087857\nvt 0.003468 0.070223\nvt 0.003468 0.064749\nvt 0.003468 0.059605\nvt 0.764355 0.372172\nvt 0.107224 0.296105\nvt 0.193514 0.382519\nvt 0.003468 0.054805\nvt 0.912399 0.779700\nvt 0.714486 0.053489\nvt 0.706717 0.176584\nvt 0.330068 0.369003\nvt 0.798248 0.076838\nvt 0.592680 0.353730\nvt 0.979980 0.170661\nvt 0.746475 0.304466\nvt 0.860034 0.173429\nvt 0.383268 0.403829\nvt 0.923211 0.806018\nvt 0.392399 0.422391\nvt 0.804754 0.839895\nvt 0.393516 0.381398\nvt 0.387415 0.951058\nvt 0.800959 0.861282\nvt 0.687443 0.605746\nvt 0.128668 0.227446\nvt 0.073284 0.448898\nvt 0.424622 0.003821\nvt 0.176552 0.492383\nvt 0.510259 0.983208\nvt 0.291618 0.037031\nvt 0.283486 0.234790\nvt 0.460561 0.208302\nvt 0.367718 0.430744\nvt 0.433898 0.439128\nvt 0.433898 0.395793\nvt 0.109512 0.009370\nvt 0.092609 0.026961\nvt 0.044558 0.089449\nvt 0.048407 0.260756\nvt 0.124433 0.309450\nvt 0.045530 0.952049\nvt 0.055185 0.230534\nvt 0.049158 0.552461\nvt 0.084053 0.485142\nvt 0.110940 0.484704\nvt 0.081876 0.572690\nvt 0.987421 0.511783\nvt 0.126000 0.064749\nvt 0.689374 0.378355\nvt 0.851598 0.362217\nvt 0.686789 0.299500\nvt 0.454014 0.252558\nvt 0.732249 0.198320\nvt 0.328767 0.199342\nvt 0.342920 0.978526\nvt 0.566216 0.149257\nvt 0.889047 0.281454\nvt 0.327829 0.391287\nvt 0.389620 0.683018\nvt 0.229177 0.490969\nvt 0.690759 0.241446\nvt 0.568146 0.048333\nvt 0.817697 0.297883\nvt 0.336149 0.035303\nvt 0.724752 0.358831\nvt 0.767734 0.292542\nvt 0.726412 0.254825\nvt 0.861639 0.013337\nvt 0.712581 0.056484\nvt 0.877499 0.109017\nvt 0.773128 0.295136\nvt 0.946808 0.248749\nvt 0.728642 0.513846\nvt 0.256212 0.228927\nvt 0.382343 0.413850\nvt 0.849069 0.862133\nvt 0.792878 0.803160\nvt 0.760884 0.364443\nvt 0.690604 0.352795\nvt 0.697891 0.362985\nvt 0.579109 0.214330\nvt 0.373693 0.314036\nvt 0.812656 0.304875\nvt 0.763416 0.249288\nvt 0.885425 0.258534\nvt 0.838102 0.322759\nvt 0.546629 0.217971\nvt 0.790276 0.819850\nvt 0.171746 0.645439\nvt 0.205577 0.629071\nvt 0.115714 0.230534\nvt 0.122492 0.221533\nvt 0.743244 0.503400\nvt 0.979373 0.155116\nvt 0.687828 0.202016\nvt 0.728147 0.697918\nvt 0.732260 0.194715\nvt 0.889101 0.340496\nvt 0.653423 0.404037\nvt 0.575523 0.378084\nvt 0.420508 0.410100\nvt 0.076797 0.613619\nvt 0.462328 0.160057\nvt 0.471593 0.411675\nvt 0.573586 0.557120\nvt 0.453948 0.623583\nvt 0.328831 0.209181\nvt 0.424155 0.873172\nvt 0.404976 0.454856\nvt 0.038684 0.505856\nvt 0.210607 0.064749\nvt 0.520753 0.311781\nvt 0.972728 0.039354\nvt 0.534701 0.176395\nvt 0.273031 0.494095\nvt 0.675804 0.077915\nvt 0.666740 0.218169\nvt 0.809074 0.860152\nvt 0.622092 0.193412\nvt 0.648257 0.206279\nvt 0.575812 0.136581\nvt 0.767500 0.063960\nvt 0.963032 0.239518\nvt 0.142431 0.076016\nvt 0.954373 0.015420\nvt 0.820843 0.865680\nvt 0.425662 0.895706\nvt 0.433898 0.446311\nvt 0.426276 0.030411\nvt 0.562325 0.487077\nvt 0.026721 0.208583\nvt 0.011422 0.737999\nvt 0.018692 0.830015\nvt 0.012541 0.996373\nvt 0.977153 0.525735\nvt 0.193698 0.050276\nvt 0.842430 0.362216\nvt 0.889259 0.142153\nvt 0.764143 0.092546\nvt 0.669223 0.241688\nvt 0.719414 0.037405\nvt 0.870701 0.810736\nvt 0.100658 0.230534\nvt 0.517725 0.439060\nvt 0.750661 0.774861\nvt 0.404011 0.629137\nvt 0.913326 0.736855\nvt 0.867524 0.307938\nvt 0.772631 0.289139\nvt 0.256679 0.630817\nvt 0.803268 0.233914\nvt 0.808877 0.247846\nvt 0.890546 0.133336\nvt 0.755879 0.253685\nvt 0.887249 0.240510\nvt 0.179094 0.248481\nvt 0.546648 0.188233\nvt 0.860513 0.362309\nvt 0.712170 0.120134\nvt 0.563789 0.517074\nvt 0.251206 0.691919\nvt 0.280961 0.340014\nvt 0.279619 0.975487\nvt 0.478605 0.223305\nvt 0.389832 0.100235\nvt 0.940689 0.454353\nvt 0.593436 0.519641\nvt 0.569395 0.117479\nvt 0.147478 0.304594\nvt 0.186511 0.227450\nvt 0.089452 0.879338\nvt 0.235913 0.209195\nvt 0.232987 0.231781\nvt 0.196508 0.425395\nvt 0.221442 0.359726\nvt 0.183912 0.614880\nvt 0.190821 0.113436\nvt 0.205278 0.700295\nvt 0.132953 0.371227\nvt 0.890140 0.457653\nvt 0.693439 0.577530\nvt 0.764143 0.089864\nvt 0.665102 0.553735\nvt 0.627919 0.996035\nvt 0.630312 0.965674\nvt 0.869172 0.095514\nvt 0.507214 0.326072\nvt 0.585812 0.206279\nvt 0.884003 0.560047\nvt 0.301606 0.607180\nvt 0.858031 0.188961\nvt 0.588201 0.105103\nvt 0.902867 0.727293\nvt 0.647191 0.749521\nvt 0.783646 0.051284\nvt 0.833209 0.364440\nvt 0.417664 0.014793\nvt 0.722375 0.241274\nvt 0.793855 0.850844\nvt 0.142431 0.050276\nvt 0.798321 0.074051\nvt 0.003468 0.050276\nvt 0.331347 0.829642\nvt 0.003468 0.026961\nvt 0.003468 0.009370\nvt 0.809201 0.029845\nvt 0.480688 0.357337\nvt 0.349013 0.352659\nvt 0.423400 0.060515\nvt 0.507856 0.010592\nvt 0.924625 0.685727\nvt 0.236084 0.733984\nvt 0.574497 0.663493\nvt 0.756905 0.236882\nvt 0.912741 0.137961\nvt 0.481521 0.337991\nvt 0.846462 0.185465\nvt 0.747534 0.243041\nvt 0.386764 0.239278\nvt 0.563918 0.530709\nvt 0.929334 0.333057\nvt 0.962513 0.027633\nvt 0.633655 0.220010\nvt 0.881141 0.772451\nvt 0.644883 0.224830\nvt 0.874575 0.525116\nvt 0.654558 0.460337\nvt 0.767842 0.446311\nvt 0.729571 0.424809\nvt 0.767719 0.293686\nvt 0.442549 0.941923\nvt 0.218181 0.629917\nvt 0.245203 0.203346\nvt 0.872550 0.499202\nvt 0.255031 0.093579\nvt 0.579933 0.424069\nvt 0.591234 0.542743\nvt 0.044597 0.748954\nvt 0.469659 0.331883\nvt 0.305833 0.076016\nvt 0.498025 0.340174\nvt 0.335370 0.114104\nvt 0.689577 0.017374\nvt 0.100455 0.468673\nvt 0.193698 0.070223\nvt 0.885982 0.486600\nvt 0.272344 0.539821\nvt 0.520129 0.234893\nvt 0.689153 0.682855\nvt 0.758813 0.092546\nvt 0.772783 0.295906\nvt 0.669562 0.667394\nvt 0.827125 0.453533\nvt 0.656383 0.091545\nvt 0.692514 0.314600\nvt 0.760946 0.534125\nvt 0.586004 0.569148\nvt 0.832725 0.532360\nvt 0.630034 0.130105\nvt 0.888113 0.246761\nvt 0.746353 0.544049\nvt 0.581430 0.196085\nvt 0.475375 0.438833\nvt 0.389457 0.149407\nvt 0.763877 0.987401\nvt 0.498887 0.228847\nvt 0.216421 0.114144\nvt 0.786691 0.691157\nvt 0.075532 0.050276\nvt 0.467948 0.075886\nvt 0.398609 0.427658\nvt 0.382185 0.448930\nvt 0.391947 0.411166\nvt 0.557814 0.049983\nvt 0.304404 0.963775\nvt 0.433898 0.402859\nvt 0.972848 0.694649\nvt 0.433898 0.487591\nvt 0.401004 0.003580\nvt 0.667007 0.567585\nvt 0.019806 0.719753\nvt 0.029856 0.798532\nvt 0.013020 0.549265\nvt 0.025409 0.555371\nvt 0.021828 0.555569\nvt 0.011737 0.157204\nvt 0.026728 0.615888\nvt 0.013238 0.534702\nvt 0.008424 0.719461\nvt 0.003588 0.093555\nvt 0.547514 0.391278\nvt 0.597182 0.214330\nvt 0.815446 0.189784\nvt 0.712369 0.091545\nvt 0.709064 0.353498\nvt 0.785606 0.845827\nvt 0.603978 0.905520\nvt 0.454274 0.064074\nvt 0.317325 0.234789\nvt 0.608391 0.438850\nvt 0.871428 0.817410\nvt 0.948825 0.042621\nvt 0.776885 0.164440\nvt 0.760884 0.358820\nvt 0.159666 0.093577\nvt 0.575815 0.486949\nvt 0.730312 0.810180\nvt 0.698118 0.064249\nvt 0.209737 0.227449\nvt 0.607753 0.543803\nvt 0.541270 0.156498\nvt 0.280326 0.375204\nvt 0.785650 0.748678\nvt 0.765918 0.997433\nvt 0.401705 0.244339\nvt 0.432547 0.646676\nvt 0.303144 0.960383\nvt 0.489404 0.438989\nvt 0.157882 0.299537\nvt 0.233991 0.372110\nvt 0.477581 0.473470\nvt 0.421423 0.070911\nvt 0.047422 0.457708\nvt 0.055087 0.527272\nvt 0.098880 0.635692\nvt 0.267486 0.093465\nvt 0.991881 0.532224\nvt 0.691736 0.775401\nvt 0.674902 0.179240\nvt 0.586338 0.214330\nvt 0.606381 0.410231\nvt 0.991247 0.735653\nvt 0.850384 0.132855\nvt 0.749978 0.024508\nvt 0.735810 0.207433\nvt 0.459113 0.934026\nvt 0.685570 0.034699\nvt 0.683604 0.310710\nvt 0.584135 0.641233\nvt 0.686423 0.215358\nvt 0.877121 0.751674\nvt 0.859809 0.369976\nvt 0.435701 0.913543\nvt 0.802085 0.871223\nvt 0.950656 0.091057\nvt 0.160022 0.594665\nvt 0.873899 0.313051\nvt 0.651977 0.218169\nvt 0.915886 0.333779\nvt 0.175334 0.883052\nvt 0.134877 0.555281\nvt 0.338204 0.203368\nvt 0.338129 0.087985\nvt 0.658862 0.328236\nvt 0.931440 0.935261\nvt 0.613624 0.576935\nvt 0.504796 0.299285\nvt 0.414315 0.051060\nvt 0.987695 0.604345\nvt 0.267438 0.990882\nvt 0.778502 0.016794\nvt 0.232987 0.227449\nvt 0.669892 0.525167\nvt 0.961904 0.040077\nvt 0.347728 0.203247\nvt 0.432945 0.045943\nvt 0.948966 0.008539\nvt 0.904344 0.177679\nvt 0.541645 0.161756\nvt 0.711718 0.175538\nvt 0.894740 0.809309\nvt 0.686404 0.036024\nvt 0.758241 0.217542\nvt 0.806123 0.358827\nvt 0.740860 0.192556\nvt 0.372912 0.326562\nvt 0.670253 0.039241\nvt 0.744364 0.015313\nvt 0.588755 0.378067\nvt 0.656223 0.588253\nvt 0.748595 0.243726\nvt 0.078675 0.233715\nvt 0.159236 0.054805\nvt 0.075532 0.070223\nvt 0.927987 0.449378\nvt 0.653742 0.693024\nvt 0.608352 0.220013\nvt 0.244937 0.260347\nvt 0.701366 0.572903\nvt 0.333133 0.340368\nvt 0.305833 0.087776\nvt 0.226580 0.064749\nvt 0.590728 0.746329\nvt 0.092609 0.037031\nvt 0.381842 0.035723\nvt 0.881492 0.360916\nvt 0.851805 0.018355\nvt 0.038588 0.507653\nvt 0.405450 0.316159\nvt 0.769695 0.773718\nvt 0.605835 0.732379\nvt 0.886169 0.286752\nvt 0.768259 0.290167\nvt 0.842161 0.364429\nvt 0.694984 0.312196\nvt 0.720828 0.348796\nvt 0.572986 0.008910\nvt 0.357951 0.475472\nvt 0.707248 0.014929\nvt 0.715799 0.358821\nvt 0.503470 0.591984\nvt 0.627592 0.224756\nvt 0.671572 0.582687\nvt 0.613613 0.220012\nvt 0.672316 0.271013\nvt 0.574171 0.145940\nvt 0.577398 0.111034\nvt 0.473707 0.035094\nvt 0.425252 0.483994\nvt 0.254491 0.213235\nvt 0.720357 0.707862\nvt 0.002935 0.260751\nvt 0.219256 0.376589\nvt 0.626498 0.623516\nvt 0.871623 0.389291\nvt 0.656896 0.218169\nvt 0.241256 0.021309\nvt 0.757312 0.303876\nvt 0.788023 0.092546\nvt 0.469131 0.061313\nvt 0.971343 0.270062\nvt 0.755024 0.262382\nvt 0.797261 0.030694\nvt 0.513699 0.425541\nvt 0.685843 0.036350\nvt 0.256212 0.231781\nvt 0.313388 0.685383\nvt 0.625195 0.908678\nvt 0.778981 0.358819\nvt 0.727395 0.725493\nvt 0.433898 0.453533\nvt 0.428260 0.050425\nvt 0.353670 0.014235\nvt 0.709753 0.439128\nvt 0.881793 0.348147\nvt 0.726045 0.826554\nvt 0.421817 0.499465\nvt 0.743307 0.001651\nvt 0.645371 0.760810\nvt 0.368600 0.409337\nvt 0.395059 0.444616\nvt 0.805183 0.904904\nvt 0.396415 0.455623\nvt 0.785200 0.051284\nvt 0.049235 0.486796\nvt 0.716449 0.768596\nvt 0.663433 0.322160\nvt 0.761481 0.092546\nvt 0.824387 0.029845\nvt 0.882234 0.133619\nvt 0.369936 0.223579\nvt 0.703669 0.339154\nvt 0.560827 0.390353\nvt 0.282255 0.979308\nvt 0.525119 0.300910\nvt 0.606352 0.522527\nvt 0.340094 0.426981\nvt 0.305833 0.032192\nvt 0.709316 0.739576\nvt 0.752523 0.811889\nvt 0.790063 0.787107\nvt 0.297067 0.369072\nvt 0.818313 0.029845\nvt 0.723907 0.353021\nvt 0.765217 0.229938\nvt 0.709178 0.663967\nvt 0.519350 0.057398\nvt 0.522409 0.157924\nvt 0.432945 0.009370\nvt 0.382486 0.056638\nvt 0.038358 0.439543\nvt 0.404694 0.025729\nvt 0.126000 0.021309\nvt 0.740755 0.676012\nvt 0.822870 0.030682\nvt 0.711016 0.218169\nvt 0.779901 0.780255\nvt 0.588201 0.101333\nvt 0.597737 0.520013\nvt 0.886432 0.281019\nvt 0.936487 0.145447\nvt 0.614309 0.559414\nvt 0.383457 0.592211\nvt 0.780294 0.979634\nvt 0.930605 0.416215\nvt 0.625775 0.220010\nvt 0.106473 0.393873\nvt 0.489661 0.479218\nvt 0.428032 0.060250\nvt 0.279039 0.054805\nvt 0.006135 0.299383\nvt 0.006989 0.536649\nvt 0.006224 0.541782\nvt 0.359810 0.333431\nvt 0.651194 0.707585\nvt 0.860540 0.790003\nvt 0.649014 0.632884\nvt 0.470084 0.372137\nvt 0.570932 0.161833\nvt 0.337057 0.099372\nvt 0.444404 0.029163\nvt 0.942586 0.107125\nvt 0.430574 0.099127\nvt 0.832003 0.837567\nvt 0.767305 0.378947\nvt 0.691791 0.014649\nvt 0.422572 0.316033\nvt 0.129370 0.819434\nvt 0.395404 0.093435\nvt 0.097301 0.304280\nvt 0.926850 0.785548\nvt 0.667131 0.101333\nvt 0.699675 0.625730\nvt 0.918057 0.782637\nvt 0.830491 0.305562\nvt 0.149872 0.154567\nvt 0.821350 0.030682\nvt 0.556195 0.082171\nvt 0.977675 0.263615\nvt 0.860241 0.324643\nvt 0.455650 0.916253\nvt 0.594110 0.460542\nvt 0.690446 0.015795\nvt 0.748285 0.089863\nvt 0.622811 0.220010\nvt 0.556235 0.217971\nvt 0.676957 0.354815\nvt 0.848240 0.876384\nvt 0.869243 0.816411\nvt 0.890386 0.573493\nvt 0.795785 0.065733\nvt 0.607028 0.905796\nvt 0.661293 0.087881\nvt 0.730531 0.105103\nvt 0.711852 0.732610\nvt 0.613124 0.220012\nvt 0.455480 0.493691\nvt 0.437400 0.454058\nvt 0.481784 0.343175\nvt 0.345550 0.407467\nvt 0.393627 0.408370\nvt 0.617063 0.214327\nvt 0.376854 0.395777\nvt 0.697974 0.634016\nvt 0.946807 0.252534\nvt 0.676082 0.241360\nvt 0.703970 0.872391\nvt 0.508878 0.244826\nvt 0.590049 0.396905\nvt 0.445152 0.338419\nvt 0.413228 0.060931\nvt 0.254513 0.093514\nvt 0.491965 0.452104\nvt 0.003588 0.093555\nvt 0.605247 0.480598\nvt 0.859733 0.270110\nvt 0.616506 0.255761\nvt 0.603413 0.091545\nvt 0.800735 0.052171\nvt 0.503424 0.286874\nvt 0.460604 0.930143\nvt 0.535024 0.378071\nvt 0.870499 0.775051\nvt 0.550673 0.580044\nvt 0.291646 0.213228\nvt 0.645132 0.605700\nvt 0.254491 0.209197\nvt 0.301747 0.976376\nvt 0.282357 0.199318\nvt 0.421760 0.035145\nvt 0.196173 0.545125\nvt 0.187546 0.248481\nvt 0.232056 0.363118\nvt 0.053657 0.490441\nvt 0.241015 0.362272\nvt 0.182644 0.369072\nvt 0.246711 0.256705\nvt 0.170404 0.208586\nvt 0.182783 0.261875\nvt 0.191577 0.101208\nvt 0.568039 0.467504\nvt 0.815278 0.030682\nvt 0.983634 0.522301\nvt 0.801209 0.383661\nvt 0.349019 0.275748\nvt 0.501838 0.513460\nvt 0.671552 0.091545\nvt 0.748923 0.736125\nvt 0.336473 0.274304\nvt 0.695538 0.057915\nvt 0.827407 0.030682\nvt 0.698306 0.173352\nvt 0.673826 0.242142\nvt 0.750598 0.564335\nvt 0.435773 0.363298\nvt 0.749304 0.237873\nvt 0.537007 0.208302\nvt 0.609865 0.208932\nvt 0.818573 0.298983\nvt 0.753555 0.298263\nvt 0.765524 0.224144\nvt 0.704599 0.181478\nvt 0.578605 0.417275\nvt 0.168680 0.411102\nvt 0.592144 0.474264\nvt 0.451619 0.073668\nvt 0.043738 0.081960\nvt 0.043738 0.087776\nvt 0.016646 0.041603\nvt 0.043738 0.037031\nvt 0.747383 0.711381\nvt 0.742237 0.509529\nvt 0.353086 0.029852\nvt 0.475033 0.319976\nvt 0.280829 0.704258\nvt 0.711660 0.629844\nvt 0.306046 0.245207\nvt 0.964065 0.077628\nvt 0.625205 0.101333\nvt 0.244605 0.228927\nvt 0.893135 0.296944\nvt 0.648198 0.208684\nvt 0.942940 0.247230\nvt 0.437204 0.446939\nvt 0.116033 0.154567\nvt 0.159236 0.070223\nvt 0.075532 0.054805\nvt 0.489194 0.217971\nvt 0.377642 0.402801\nvt 0.148680 0.366302\nvt 0.421850 0.831624\nvt 0.136960 0.299522\nvt 0.433898 0.481004\nvt 0.404076 0.076543\nvt 0.092609 0.015355\nvt 0.291618 0.070223\nvt 0.029300 0.399750\nvt 0.009987 0.278134\nvt 0.010518 0.260753\nvt 0.009578 0.866991\nvt 0.014699 0.208598\nvt 0.210548 0.093553\nvt 0.987421 0.513031\nvt 0.729275 0.763459\nvt 0.875677 0.767408\nvt 0.311652 0.339065\nvt 0.780030 0.089864\nvt 0.619477 0.208932\nvt 0.622160 0.220010\nvt 0.792965 0.051284\nvt 0.376059 0.412329\nvt 0.523778 0.288439\nvt 0.912175 0.060491\nvt 0.159236 0.081960\nvt 0.639548 0.087881\nvt 0.379014 0.960260\nvt 0.417492 0.431260\nvt 0.314056 0.227445\nvt 0.320034 0.063637\nvt 0.226875 0.093610\nvt 0.142409 0.093579\nvt 0.092609 0.050276\nvt 0.083015 0.571836\nvt 0.043314 0.513181\nvt 0.063911 0.542247\nvt 0.086254 0.233716\nvt 0.121613 0.200724\nvt 0.048355 0.154567\nvt 0.015480 0.663229\nvt 0.108187 0.230534\nvt 0.858238 0.174059\nvt 0.607623 0.460521\nvt 0.655055 0.026155\nvt 0.412569 0.463696\nvt 0.324526 0.984173\nvt 0.619033 0.220010\nvt 0.779484 0.796911\nvt 0.859802 0.140914\nvt 0.779777 0.103817\nvt 0.871785 0.209057\nvt 0.689618 0.009674\nvt 0.922750 0.109083\nvt 0.339192 0.365526\nvt 0.464893 0.347826\nvt 0.431698 0.208302\nvt 0.677998 0.254827\nvt 0.963582 0.609075\nvt 0.729640 0.777660\nvt 0.701392 0.355851\nvt 0.791412 0.052171\nvt 0.900422 0.255147\nvt 0.568185 0.137861\nvt 0.687054 0.026645\nvt 0.518708 0.113902\nvt 0.270208 0.323581\nvt 0.650666 0.715495\nvt 0.827125 0.467595\nvt 0.424821 0.462760\nvt 0.352814 0.339029\nvt 0.146435 0.216257\nvt 0.568975 0.156215\nvt 0.267995 0.977564\nvt 0.847905 0.156816\nvt 0.583049 0.220014\nvt 0.669329 0.608778\nvt 0.576237 0.111969\nvt 0.786752 0.051284\nvt 0.757533 0.774212\nvt 0.782335 0.103135\nvt 0.817586 0.503104\nvt 0.753800 0.284261\nvt 0.593227 0.467552\nvt 0.424850 0.087856\nvt 0.332275 0.420320\nvt 0.270826 0.359882\nvt 0.378144 0.206595\nvt 0.282357 0.209193\nvt 0.433898 0.460670\nvt 0.305833 0.021309\nvt 0.092609 0.070223\nvt 0.380385 0.093327\nvt 0.003236 0.099444\nvt 0.003236 0.154567\nvt 0.002450 0.208462\nvt 0.126000 0.009370\nvt 0.193698 0.026961\nvt 0.883403 0.894780\nvt 0.743158 0.749189\nvt 0.888556 0.095351\nvt 0.895834 0.185574\nvt 0.722823 0.737501\nvt 0.636943 0.214326\nvt 0.402143 0.310518\nvt 0.527174 0.312958\nvt 0.787673 0.853307\nvt 0.782080 0.988376\nvt 0.990713 0.513087\nvt 0.803844 0.051284\nvt 0.056968 0.533061\nvt 0.919168 0.793617\nvt 0.403484 0.020492\nvt 0.361497 0.372172\nvt 0.311592 0.337207\nvt 0.239140 0.291409\nvt 0.277321 0.406300\nvt 0.310222 0.199303\nvt 0.299221 0.336971\nvt 0.456503 0.006795\nvt 0.419862 0.310131\nvt 0.388926 0.112631\nvt 0.460425 0.047710\nvt 0.082194 0.154567\nvt 0.403280 0.409882\nvt 0.401359 0.385407\nvt 0.478667 0.299889\nvt 0.692928 0.683869\nvt 0.729571 0.474323\nvt 0.690391 0.404663\nvt 0.560233 0.138652\nvt 0.603560 0.888527\nvt 0.477951 0.287514\nvt 0.368443 0.804514\nvt 0.608236 0.647182\nvt 0.863976 0.368681\nvt 0.901778 0.111245\nvt 0.297055 0.369006\nvt 0.522485 0.397713\nvt 0.613448 0.214328\nvt 0.142431 0.026961\nvt 0.685398 0.595440\nvt 0.486154 0.310133\nvt 0.104709 0.157204\nvt 0.652375 0.378303\nvt 0.530518 0.473246\nvt 0.681553 0.185863\nvt 0.686113 0.034256\nvt 0.700050 0.001997\nvt 0.044412 0.932394\nvt 0.591612 0.541410\nvt 0.845147 0.868952\nvt 0.550727 0.297791\nvt 0.877108 0.486861\nvt 0.517819 0.203738\nvt 0.661293 0.091545\nvt 0.075532 0.059605\nvt 0.241256 0.059605\nvt 0.597145 0.650759\nvt 0.661856 0.101333\nvt 0.369640 0.971777\nvt 0.475921 0.939368\nvt 0.193248 0.234789\nvt 0.433898 0.474323\nvt 0.406397 0.087823\nvt 0.058857 0.292805\nvt 0.047592 0.230534\nvt 0.009312 0.224295\nvt 0.585812 0.208932\nvt 0.820315 0.291251\nvt 0.643717 0.648296\nvt 0.769445 0.092546\nvt 0.802289 0.051284\nvt 0.272175 0.152784\nvt 0.581087 0.431130\nvt 0.375964 0.393244\nvt 0.759415 0.039960\nvt 0.709890 0.156370\nvt 0.690379 0.398002\nvt 0.977979 0.518622\nvt 0.198606 0.299388\nvt 0.075532 0.026961\nvt 0.292228 0.158391\nvt 0.395121 0.276816\nvt 0.444555 0.333432\nvt 0.464864 0.251880\nvt 0.377313 0.237503\nvt 0.380626 0.088006\nvt 0.007183 0.337193\nvt 0.881964 0.381951\nvt 0.320082 0.020175\nvt 0.747807 0.637022\nvt 0.761244 0.974374\nvt 0.691615 0.609645\nvt 0.693760 0.014466\nvt 0.698672 0.240727\nvt 0.819572 0.114892\nvt 0.914574 0.355579\nvt 0.527077 0.014358\nvt 0.754791 0.027086\nvt 0.221362 0.231784\nvt 0.886856 0.054566\nvt 0.412460 0.217971\nvt 0.315788 0.692111\nvt 0.088208 0.974221\nvt 0.060700 0.469637\nvt 0.123436 0.504669\nvt 0.392797 0.982874\nvt 0.725967 0.333464\nvt 0.182967 0.589748\nvt 0.930137 0.364915\nvt 0.915674 0.691258\nvt 0.362984 0.415928\nvt 0.954859 0.093195\nvt 0.550608 0.336836\nvt 0.888696 0.301448\nvt 0.695569 0.149107\nvt 0.872787 0.172190\nvt 0.564994 0.416444\nvt 0.276086 0.990227\nvt 0.193248 0.245207\nvt 0.369211 0.669403\nvt 0.395084 0.316953\nvt 0.471606 0.107537\nvt 0.440964 0.447368\nvt 0.410917 0.015022\nvt 0.291618 0.076016\nvt 0.996626 0.525456\nvt 0.818896 0.288336\nvt 0.962516 0.023606\nvt 0.581898 0.438383\nvt 0.898924 0.815964\nvt 0.684621 0.331218\nvt 0.573900 0.653890\nvt 0.777377 0.092546\nvt 0.880197 0.099894\nvt 0.947423 0.518344\nvt 0.397166 0.374514\nvt 0.397981 0.389195\nvt 0.092991 0.093570\nvt 0.254612 0.041603\nvt 0.767885 0.378959\nvt 0.656896 0.215358\nvt 0.126404 0.093595\nvt 0.667771 0.546104\nvt 0.579056 0.160155\nvt 0.453292 0.077982\nvt 0.875822 0.967785\nvt 0.566675 0.045454\nvt 0.614582 0.766256\nvt 0.806133 0.361050\nvt 0.844735 0.288781\nvt 0.963507 0.742558\nvt 0.182630 0.369012\nvt 0.580329 0.467584\nvt 0.381062 0.358167\nvt 0.493404 0.372158\nvt 0.428750 0.409313\nvt 0.473851 0.329056\nvt 0.353969 0.677380\nvt 0.785349 0.417547\nvt 0.478118 0.466692\nvt 0.714592 0.056381\nvt 0.738374 0.328845\nvt 0.747821 0.027043\nvt 0.283171 0.217169\nvt 0.519307 0.055159\nvt 0.722608 0.091545\nvt 0.953624 0.768590\nvt 0.478072 0.034187\nvt 0.527395 0.208302\nvt 0.355057 0.114048\nvt 0.725806 0.813038\nvt 0.370389 0.969574\nvt 0.315392 0.495348\nvt 0.169696 0.437622\nvt 0.254612 0.081960\nvt 0.226580 0.059605\nvt 0.147370 0.333774\nvt 0.174599 0.158392\nvt 0.218839 0.299388\nvt 0.182427 0.208597\nvt 0.055163 0.448061\nvt 0.239114 0.299391\nvt 0.117148 0.363169\nvt 0.130183 0.690459\nvt 0.128486 0.290083\nvt 0.156410 0.369004\nvt 0.865794 0.417547\nvt 0.764329 0.971132\nvt 0.176552 0.492517\nvt 0.773142 0.291161\nvt 0.244605 0.224592\nvt 0.911745 0.537564\nvt 0.538592 0.326415\nvt 0.755939 0.330936\nvt 0.885661 0.878576\nvt 0.745937 0.742176\nvt 0.400105 0.440949\nvt 0.976449 0.030490\nvt 0.127312 0.154567\nvt 0.075532 0.081960\nvt 0.003468 0.015355\nvt 0.443925 0.352202\nvt 0.441349 0.217971\nvt 0.413128 0.230804\nvt 0.472954 0.425137\nvt 0.433898 0.467595\nvt 0.109512 0.045943\nvt 0.534164 0.378083\nvt 0.389843 0.082491\nvt 0.769527 0.899514\nvt 0.983347 0.637523\nvt 0.178343 0.304429\nvt 0.789995 0.887209\nvt 0.690411 0.689688\nvt 0.366565 0.396732\nvt 0.402542 0.415117\nvt 0.685590 0.034639\nvt 0.979959 0.968528\nvt 0.877674 0.310621\nvt 0.896260 0.253852\nvt 0.582252 0.445758\nvt 0.987421 0.516501\nvt 0.533264 0.459278\nvt 0.198118 0.228929\nvt 0.261618 0.963416\nvt 0.292228 0.195363\nvt 0.222595 0.979476\nvt 0.016674 0.774332\nvt 0.193698 0.021309\nvt 0.788791 0.726270\nvt 0.545642 0.174485\nvt 0.459522 0.066451\nvt 0.850894 0.364495\nvt 0.704509 0.043611\nvt 0.877176 0.381951\nvt 0.593893 0.220014\nvt 0.397115 0.434894\nvt 0.541507 0.511743\nvt 0.550105 0.369072\nvt 0.188309 0.145151\nvt 0.145285 0.248481\nvt 0.245203 0.213213\nvt 0.181890 0.332151\nvt 0.949674 0.253372\nvt 0.680393 0.500915\nvt 0.415943 0.964376\nvt 0.290908 0.224594\nvt 0.299381 0.310406\nvt 0.396144 0.009474\nvt 0.666379 0.181992\nvt 0.522594 0.230551\nvt 0.299020 0.314174\nvt 0.647054 0.215358\nvt 0.044820 0.483148\nvt 0.043858 0.494584\nvt 0.018988 0.530510\nvt 0.033250 0.260757\nvt 0.018044 0.233716\nvt 0.029146 0.786558\nvt 0.024236 0.487580\nvt 0.045524 0.454778\nvt 0.015708 0.767533\nvt 0.050326 0.439252\nvt 0.546913 0.757616\nvt 0.410129 0.009415\nvt 0.575495 0.214331\nvt 0.342488 0.391800\nvt 0.862040 0.362449\nvt 0.691345 0.215358\nvt 0.817406 0.290121\nvt 0.471245 0.085630\nvt 0.807679 0.030682\nvt 0.469710 0.031783\nvt 0.710531 0.634454\nvt 0.741708 0.313479\nvt 0.817973 0.289415\nvt 0.828921 0.030682\nvt 0.208213 0.199403\nvt 0.388966 0.093316\nvt 0.034131 0.563502\nvt 0.046553 0.537898\nvt 0.056872 0.551433\nvt 0.115003 0.498413\nvt 0.062661 0.216253\nvt 0.013853 0.754605\nvt 0.210607 0.059605\nvt 0.756862 0.181276\nvt 0.263615 0.256705\nvt 0.607680 0.424417\nvt 0.976487 0.020877\nvt 0.761481 0.089864\nvt 0.745126 0.778894\nvt 0.593461 0.196568\nvt 0.535674 0.248126\nvt 0.930935 0.439233\nvt 0.889726 0.844587\nvt 0.570062 0.111303\nvt 0.568602 0.115963\nvt 0.688757 0.254825\nvt 0.854411 0.424809\nvt 0.774732 0.088597\nvt 0.760444 0.168013\nvt 0.498013 0.286344\nvt 0.462814 0.291522\nvt 0.369325 0.009142\nvt 0.673073 0.224958\nvt 0.193859 0.221815\nvt 0.213241 0.330089\nvt 0.854411 0.402860\nvt 0.418105 0.055752\nvt 0.704782 0.675583\nvt 0.323817 0.301010\nvt 0.484832 0.419408\nvt 0.635473 0.597989\nvt 0.719419 0.037449\nvt 0.272573 0.311947\nvt 0.261535 0.442426\nvt 0.671437 0.410982\nvt 0.865794 0.453533\nvt 0.749090 0.395793\nvt 0.767842 0.395793\nvt 0.987423 0.518906\nvt 0.715654 0.264543\nvt 0.311996 0.331788\nvt 0.437592 0.493044\nvt 0.305833 0.037031\nvt 0.092609 0.087776\nvt 0.814218 0.289551\nvt 0.006229 0.578820\nvt 0.857417 0.781036\nvt 0.171290 0.646602\nvt 0.591692 0.410339\nvt 0.666967 0.567445\nvt 0.601409 0.010000\nvt 0.482844 0.956144\nvt 0.572706 0.149244\nvt 0.803574 0.316568\nvt 0.742439 0.802616\nvt 0.930488 0.249276\nvt 0.349648 0.627438\nvt 0.720772 0.179578\nvt 0.950559 0.070792\nvt 0.902222 0.106408\nvt 0.591189 0.542633\nvt 0.608391 0.446128\nvt 0.159236 0.059605\nvt 0.639548 0.091545\nvt 0.720010 0.101333\nvt 0.691783 0.014592\nvt 0.406863 0.234123\nvt 0.418869 0.082187\nvt 0.696811 0.272767\nvt 0.394974 0.460856\nvt 0.767842 0.383661\nvt 0.652715 0.384340\nvt 0.983873 0.510676\nvt 0.574920 0.391107\nvt 0.894400 0.252499\nvt 0.518198 0.878814\nvt 0.962039 0.122782\nvt 0.381199 0.217168\nvt 0.705525 0.846363\nvt 0.775959 0.032285\nvt 0.723669 0.015472\nvt 0.810259 0.871627\nvt 0.522834 0.404331\nvt 0.978773 0.516117\nvt 0.176410 0.081960\nvt 0.484224 0.337408\nvt 0.198118 0.224588\nvt 0.210920 0.093584\nvt 0.522597 0.391147\nvt 0.709753 0.383661\nvt 0.451213 0.417716\nvt 0.725221 0.369072\nvt 0.235003 0.796410\nvt 0.880479 0.310575\nvt 0.847300 0.156028\nvt 0.292130 0.302575\nvt 0.886230 0.340628\nvt 0.792187 0.825348\nvt 0.228966 0.299389\nvt 0.862050 0.988321\nvt 0.683915 0.601077\nvt 0.475470 0.250880\nvt 0.599563 0.624479\nvt 0.747097 0.536758\nvt 0.207102 0.217062\nvt 0.815674 0.762104\nvt 0.603800 0.321188\nvt 0.566709 0.423599\nvt 0.891881 0.812800\nvt 0.648821 0.087881\nvt 0.709152 0.119796\nvt 0.996350 0.522942\nvt 0.108990 0.233716\nvt 0.217373 0.199349\nvt 0.842403 0.038808\nvt 0.472545 0.026542\nvt 0.391049 0.184650\nvt 0.334236 0.152376\nvt 0.379819 0.318451\nvt 0.454955 0.486670\nvt 0.226504 0.093549\nvt 0.092609 0.032192\nvt 0.210607 0.041603\nvt 0.754469 0.947153\nvt 0.417354 0.257364\nvt 0.709476 0.101333\nvt 0.651340 0.101333\nvt 0.759180 0.794594\nvt 0.782826 0.920868\nvt 0.565636 0.019208\nvt 0.459500 0.348710\nvt 0.998349 0.191979\nvt 0.675471 0.597752\nvt 0.928500 0.437285\nvt 0.673278 0.194509\nvt 0.533374 0.452422\nvt 0.241256 0.054805\nvt 0.785349 0.460670\nvt 0.322085 0.352546\nvt 0.290908 0.231782\nvt 0.048359 0.233716\nvt 0.061934 0.442594\nvt 0.126000 0.070223\nvt 0.620321 0.397087\nvt 0.593567 0.214330\nvt 0.824198 0.364438\nvt 0.947447 0.250630\nvt 0.662754 0.074087\nvt 0.897679 0.098049\nvt 0.404163 0.462899\nvt 0.467690 0.010246\nvt 0.306827 0.942409\nvt 0.245237 0.993193\nvt 0.680461 0.586359\nvt 0.591125 0.304896\nvt 0.477414 0.335922\nvt 0.510869 0.353301\nvt 0.453414 0.036638\nvt 0.465071 0.035552\nvt 0.258603 0.398883\nvt 0.259527 0.304708\nvt 0.254612 0.045943\nvt 0.092609 0.059605\nvt 0.760647 0.033792\nvt 0.280645 0.333842\nvt 0.210607 0.081960\nvt 0.693281 0.650022\nvt 0.605879 0.372160\nvt 0.774867 0.010979\nvt 0.687267 0.611548\nvt 0.125476 0.303090\nvt 0.642997 0.686250\nvt 0.781929 0.892364\nvt 0.690656 0.581325\nvt 0.198605 0.304412\nvt 0.698911 0.105103\nvt 0.720851 0.215358\nvt 0.717252 0.784353\nvt 0.133153 0.466770\nvt 0.698604 0.241673\nvt 0.801209 0.431984\nvt 0.198118 0.231787\nvt 0.323844 0.439684\nvt 0.403394 0.481325\nvt 0.482977 0.332538\nvt 0.410592 0.071042\nvt 0.865794 0.383661\nvt 0.083153 0.441640\nvt 0.036390 0.496469\nvt 0.043880 0.529913\nvt 0.104667 0.612584\nvt 0.089796 0.625881\nvt 0.093734 0.622384\nvt 0.032114 0.587553\nvt 0.380656 0.093265\nvt 0.436078 0.171916\nvt 0.873275 0.981404\nvt 0.907976 0.828344\nvt 0.853979 0.289082\nvt 0.400369 0.417555\nvt 0.410729 0.388718\nvt 0.686423 0.218169\nvt 0.787697 0.703439\nvt 0.404020 0.384012\nvt 0.667544 0.770384\nvt 0.997703 0.525715\nvt 0.577286 0.410800\nvt 0.213710 0.260429\nvt 0.153212 0.195372\nvt 0.194773 0.719630\nvt 0.865794 0.410199\nvt 0.801227 0.378960\nvt 0.381754 0.188875\nvt 0.485836 0.511558\nvt 0.353550 0.192989\nvt 0.914421 0.249793\nvt 0.361531 0.326883\nvt 0.305805 0.093562\nvt 0.070505 0.726925\nvt 0.841543 0.129717\nvt 0.767394 0.078995\nvt 0.778926 0.138613\nvt 0.696483 0.024066\nvt 0.471555 0.404848\nvt 0.330090 0.397654\nvt 0.638691 0.208932\nvt 0.149580 0.385852\nvt 0.908290 0.239733\nvt 0.793102 0.130093\nvt 0.740757 0.035390\nvt 0.699517 0.254825\nvt 0.545602 0.445543\nvt 0.545591 0.459695\nvt 0.760684 0.034202\nvt 0.515923 0.052451\nvt 0.677999 0.264544\nvt 0.404981 0.376559\nvt 0.074632 0.221530\nvt 0.495797 0.334594\nvt 0.409977 0.670062\nvt 0.109512 0.087776\nvt 0.690782 0.460456\nvt 0.854411 0.474323\nvt 0.048865 0.497385\nvt 0.054328 0.521143\nvt 0.769715 0.987558\nvt 0.232987 0.224594\nvt 0.959996 0.773384\nvt 0.527395 0.203738\nvt 0.966803 0.015992\nvt 0.407364 0.369072\nvt 0.747656 0.252863\nvt 0.445718 0.121148\nvt 0.652439 0.197377\nvt 0.273068 0.209193\nvt 0.785353 0.092546\nvt 0.749099 0.243056\nvt 0.580009 0.346445\nvt 0.692329 0.630018\nvt 0.738313 0.678719\nvt 0.910043 0.446373\nvt 0.749090 0.474323\nvt 0.176410 0.070223\nvt 0.197501 0.644368\nvt 0.878510 0.279585\nvt 0.854411 0.446311\nvt 0.932330 0.145137\nvt 0.481733 0.339800\nvt 0.483570 0.550310\nvt 0.471796 0.868450\nvt 0.484426 0.813577\nvt 0.240594 0.099400\nvt 0.154722 0.347193\nvt 0.304628 0.446799\nvt 0.232237 0.527729\nvt 0.101411 0.233716\nvt 0.827932 0.539641\nvt 0.698316 0.175594\nvt 0.796311 0.807541\nvt 0.601876 0.733170\nvt 0.631192 0.136460\nvt 0.802685 0.845212\nvt 0.914280 0.792201\nvt 0.963742 0.179440\nvt 0.169397 0.425809\nvt 0.568208 0.135163\nvt 0.945508 0.253742\nvt 0.922759 0.687501\nvt 0.801209 0.460670\nvt 0.743262 0.224560\nvt 0.105076 0.817517\nvt 0.142431 0.059605\nvt 0.434767 0.337085\nvt 0.697325 0.229007\nvt 0.441349 0.208302\nvt 0.477504 0.028075\nvt 0.451041 0.369072\nvt 0.626169 0.607811\nvt 0.788306 0.051284\nvt 0.195998 0.248481\nvt 0.182644 0.372172\nvt 0.195998 0.256705\nvt 0.104753 0.154567\nvt 0.116033 0.099444\nvt 0.188484 0.304403\nvt 0.218841 0.291390\nvt 0.174026 0.920011\nvt 0.182627 0.372112\nvt 0.249453 0.195365\nvt 0.096167 0.461900\nvt 0.848347 0.253691\nvt 0.814392 0.862221\nvt 0.798934 0.169525\nvt 0.741750 0.168371\nvt 0.784360 0.999336\nvt 0.891755 0.129769\nvt 0.754140 0.350903\nvt 0.511625 0.998171\nvt 0.158791 0.535784\nvt 0.510022 0.391250\nvt 0.789773 0.369072\nvt 0.388960 0.100120\nvt 0.768767 0.294939\nvt 0.871489 0.173526\nvt 0.956077 0.861445\nvt 0.696331 0.149021\nvt 0.654481 0.613115\nvt 0.174929 0.339485\nvt 0.471459 0.014885\nvt 0.394945 0.420399\nvt 0.447467 0.369015\nvt 0.790534 0.743223\nvt 0.785349 0.487591\nvt 0.305833 0.064749\nvt 0.627145 0.242216\nvt 0.226580 0.087776\nvt 0.233486 0.541434\nvt 0.304821 0.581722\nvt 0.432945 0.021309\nvt 0.531337 0.438806\nvt 0.593599 0.105103\nvt 0.543890 0.188002\nvt 0.790834 0.024803\nvt 0.114806 0.881054\nvt 0.894849 0.539895\nvt 0.660316 0.528921\nvt 0.821792 0.974344\nvt 0.914129 0.256652\nvt 0.744684 0.775241\nvt 0.633735 0.965750\nvt 0.240008 0.114346\nvt 0.796293 0.783786\nvt 0.690802 0.240555\nvt 0.809770 0.241524\nvt 0.075532 0.015355\nvt 0.686107 0.600661\nvt 0.865794 0.487591\nvt 0.198118 0.227446\nvt 0.470121 0.203738\nvt 0.362734 0.458756\nvt 0.411496 0.234982\nvt 0.272206 0.245207\nvt 0.562642 0.710340\nvt 0.279039 0.045943\nvt 0.016646 0.070223\nvt 0.016646 0.021309\nvt 0.739477 0.260666\nvt 0.672082 0.545038\nvt 0.998349 0.195348\nvt 0.877176 0.369433\nvt 0.683714 0.677406\nvt 0.653014 0.390665\nvt 0.775295 0.971470\nvt 0.832482 0.190327\nvt 0.711016 0.215358\nvt 0.796345 0.987604\nvt 0.718699 0.241461\nvt 0.685824 0.036417\nvt 0.978136 0.743214\nvt 0.625295 0.666033\nvt 0.504272 0.363578\nvt 0.521570 0.378042\nvt 0.694613 0.508521\nvt 0.979343 0.528512\nvt 0.695784 0.154098\nvt 0.867562 0.303000\nvt 0.473161 0.020596\nvt 0.159408 0.234789\nvt 0.305833 0.015355\nvt 0.841411 0.130768\nvt 0.702423 0.038230\nvt 0.954249 0.238334\nvt 0.012905 0.528111\nvt 0.011938 0.555810\nvt 0.554006 0.106010\nvt 0.008752 0.310336\nvt 0.613471 0.719317\nvt 0.249357 0.220930\nvt 0.573471 0.691175\nvt 0.656383 0.087881\nvt 0.898858 0.133052\nvt 0.518223 0.710598\nvt 0.770621 0.747964\nvt 0.398359 0.449513\nvt 0.744355 0.015768\nvt 0.828921 0.029845\nvt 0.353512 0.493548\nvt 0.845802 0.259388\nvt 0.608139 0.431608\nvt 0.550105 0.372172\nvt 0.790150 0.852374\nvt 0.270101 0.304807\nvt 0.589903 0.329532\nvt 0.811793 0.247510\nvt 0.695352 0.299722\nvt 0.893393 0.095795\nvt 0.693192 0.174056\nvt 0.748407 0.664323\nvt 0.918495 0.682156\nvt 0.832999 0.130914\nvt 0.075532 0.064749\nvt 0.310223 0.213232\nvt 0.419113 0.498232\nvt 0.950205 0.035772\nvt 0.865813 0.795623\nvt 0.093879 0.260746\nvt 0.039988 0.230534\nvt 0.055990 0.260755\nvt 0.084560 0.432907\nvt 0.080579 0.270483\nvt 0.743113 0.241491\nvt 0.511834 0.418607\nvt 0.817015 0.873959\nvt 0.578951 0.161616\nvt 0.813243 0.830047\nvt 0.879364 0.016579\nvt 0.930045 0.094490\nvt 0.778510 0.016838\nvt 0.576506 0.119306\nvt 0.772088 0.092546\nvt 0.722118 0.236654\nvt 0.697537 0.236987\nvt 0.929924 0.568909\nvt 0.979851 0.516254\nvt 0.381289 0.071960\nvt 0.153738 0.256705\nvt 0.782686 0.088597\nvt 0.594942 0.445958\nvt 0.422540 0.065604\nvt 0.364530 0.449857\nvt 0.437767 0.389368\nvt 0.407954 0.061231\nvt 0.385576 0.308431\nvt 0.862797 0.369662\nvt 0.984604 0.169891\nvt 0.333095 0.338135\nvt 0.808887 0.189604\nvt 0.817281 0.562841\nvt 0.976857 0.072865\nvt 0.593242 0.220014\nvt 0.775897 0.204804\nvt 0.897177 0.141249\nvt 0.557103 0.438135\nvt 0.785349 0.424809\nvt 0.638236 0.613387\nvt 0.229806 0.256705\nvt 0.864198 0.354498\nvt 0.210819 0.585327\nvt 0.481717 0.286746\nvt 0.527423 0.690706\nvt 0.607525 0.576781\nvt 0.820205 0.293713\nvt 0.657353 0.641388\nvt 0.670717 0.241537\nvt 0.374116 0.299007\nvt 0.672305 0.270936\nvt 0.573025 0.568868\nvt 0.676110 0.242244\nvt 0.733762 0.358835\nvt 0.689278 0.016868\nvt 0.851171 0.135068\nvt 0.982999 0.532231\nvt 0.392865 0.041398\nvt 0.249369 0.217149\nvt 0.334044 0.802041\nvt 0.333478 0.334104\nvt 0.464399 0.313495\nvt 0.174921 0.224589\nvt 0.469933 0.107833\nvt 0.438042 0.480674\nvt 0.290137 0.283851\nvt 0.536826 0.254646\nvt 0.577691 0.145067\nvt 0.021514 0.758336\nvt 0.778981 0.361048\nvt 0.995629 0.528024\nvt 0.203308 0.361229\nvt 0.865794 0.424809\nvt 0.241256 0.050276\nvt 0.302922 0.158391\nvt 0.686092 0.034318\nvt 0.335235 0.393220\nvt 0.728236 0.056375\nvt 0.996262 0.783404\nvt 0.748831 0.776791\nvt 0.251512 0.660154\nvt 0.607716 0.543677\nvt 0.856580 0.187627\nvt 0.756615 0.273119\nvt 0.531081 0.026258\nvt 0.310225 0.203340\nvt 0.720956 0.629949\nvt 0.809602 0.597580\nvt 0.170642 0.248481\nvt 0.660704 0.194537\nvt 0.390885 0.025506\nvt 0.854411 0.389299\nvt 0.772836 0.290379\nvt 0.405722 0.411617\nvt 0.339305 0.355936\nvt 0.347151 0.332408\nvt 0.141013 0.448682\nvt 0.493404 0.369060\nvt 0.470089 0.369040\nvt 0.297052 0.372106\nvt 0.263779 0.209192\nvt 0.361226 0.712047\nvt 0.611662 0.656137\nvt 0.395285 0.405429\nvt 0.684313 0.182019\nvt 0.126000 0.054805\nvt 0.489695 0.369072\nvt 0.749090 0.389299\nvt 0.312302 0.413056\nvt 0.381074 0.025027\nvt 0.333094 0.926511\nvt 0.508260 0.208302\nvt 0.826985 0.900225\nvt 0.802240 0.288715\nvt 0.564403 0.522852\nvt 0.747213 0.671249\nvt 0.909256 0.035023\nvt 0.567889 0.006649\nvt 0.946900 0.260924\nvt 0.576672 0.116828\nvt 0.423985 0.050494\nvt 0.162683 0.339841\nvt 0.894282 0.293244\nvt 0.450793 0.008497\nvt 0.346705 0.199014\nvt 0.226580 0.015355\nvt 0.281190 0.965276\nvt 0.357959 0.475608\nvt 0.257274 0.404613\nvt 0.129186 0.392858\nvt 0.396103 0.139364\nvt 0.207935 0.209168\nvt 0.193831 0.202985\nvt 0.260747 0.683232\nvt 0.297133 0.445615\nvt 0.272032 0.657735\nvt 0.132486 0.486942\nvt 0.330989 0.405212\nvt 0.291618 0.059605\nvt 0.695505 0.236931\nvt 0.507634 0.775586\nvt 0.683176 0.313679\nvt 0.962017 0.011183\nvt 0.633329 0.214326\nvt 0.670858 0.242330\nvt 0.695075 0.309705\nvt 0.935229 0.022120\nvt 0.759412 0.903040\nvt 0.776653 0.314178\nvt 0.891574 0.826771\nvt 0.604272 0.136751\nvt 0.534655 0.313483\nvt 0.365531 0.613109\nvt 0.362933 0.674671\nvt 0.407913 0.425172\nvt 0.439813 0.031586\nvt 0.403403 0.481461\nvt 0.399542 0.185621\nvt 0.116568 0.233716\nvt 0.279885 0.648105\nvt 0.416902 0.003738\nvt 0.876854 0.341657\nvt 0.538019 0.312956\nvt 0.291618 0.064749\nvt 0.786016 0.287928\nvt 0.909608 0.355885\nvt 0.571960 0.147179\nvt 0.766796 0.089864\nvt 0.589953 0.214330\nvt 0.617019 0.354389\nvt 0.795866 0.734516\nvt 0.707221 0.015299\nvt 0.712022 0.117639\nvt 0.843762 0.112964\nvt 0.707066 0.358755\nvt 0.432945 0.041603\nvt 0.245203 0.199322\nvt 0.184346 0.349045\nvt 0.627819 0.756552\nvt 0.670828 0.378354\nvt 0.542471 0.473873\nvt 0.376107 0.444230\nvt 0.281535 0.158391\nvt 0.436731 0.492971\nvt 0.493384 0.332299\nvt 0.382194 0.061654\nvt 0.032874 0.506311\nvt 0.729571 0.481004\nvt 0.933559 0.932191\nvt 0.170789 0.349518\nvt 0.691411 0.014086\nvt 0.476587 0.445812\nvt 0.499906 0.425938\nvt 0.914424 0.248374\nvt 0.961987 0.235480\nvt 0.954307 0.207415\nvt 0.775560 0.025009\nvt 0.802084 0.858160\nvt 0.643466 0.206279\nvt 0.976011 0.279853\nvt 0.522595 0.384562\nvt 0.809968 0.633360\nvt 0.698988 0.237054\nvt 0.614333 0.233024\nvt 0.854411 0.417547\nvt 0.374569 0.242556\nvt 0.819372 0.191373\nvt 0.142431 0.037031\nvt 0.862621 0.270110\nvt 0.822261 0.551876\nvt 0.719613 0.177789\nvt 0.739201 0.224525\nvt 0.328724 0.855642\nvt 0.376187 0.408821\nvt 0.428126 0.468809\nvt 0.489588 0.369057\nvt 0.162550 0.550060\nvt 0.978788 0.526777\nvt 0.753314 0.297288\nvt 0.447585 0.369072\nvt 0.044561 0.556080\nvt 0.102394 0.563540\nvt 0.943209 0.252600\nvt 0.843942 0.263514\nvt 0.762315 0.332285\nvt 0.339974 0.340687\nvt 0.864428 0.328842\nvt 0.749444 0.316566\nvt 0.957411 0.124713\nvt 0.684690 0.715745\nvt 0.722111 0.768636\nvt 0.705126 0.671691\nvt 0.599525 0.660037\nvt 0.385585 0.651965\nvt 0.885965 0.296848\nvt 0.706361 0.361039\nvt 0.322420 0.450123\nvt 0.477556 0.452852\nvt 0.132480 0.487074\nvt 0.453594 0.453378\nvt 0.410867 0.030732\nvt 0.426935 0.035476\nvt 0.226504 0.093548\nvt 0.506429 0.465577\nvt 0.062449 0.157204\nvt 0.771804 0.997540\nvt 0.239406 0.446860\nvt 0.210607 0.015355\nvt 0.706243 0.077571\nvt 0.692672 0.319850\nvt 0.590634 0.206279\nvt 0.273256 0.114249\nvt 0.937137 0.084114\nvt 0.663296 0.539568\nvt 0.643486 0.193754\nvt 0.821632 0.555546\nvt 0.749261 0.775376\nvt 0.754662 0.565249\nvt 0.998349 0.169891\nvt 0.534239 0.308389\nvt 0.266998 0.037031\nvt 0.709753 0.417547\nvt 0.188469 0.673983\nvt 0.207934 0.203368\nvt 0.336434 0.061579\nvt 0.802719 0.850918\nvt 0.432945 0.037031\nvt 0.255277 0.714377\nvt 0.398118 0.406856\nvt 0.388913 0.452735\nvt 0.363566 0.361708\nvt 0.441290 0.395768\nvt 0.279039 0.081960\nvt 0.396118 0.126964\nvt 0.087218 0.953641\nvt 0.193698 0.076016\nvt 0.682309 0.193941\nvt 0.724236 0.210908\nvt 0.241256 0.081960\nvt 0.435201 0.160101\nvt 0.369357 0.056474\nvt 0.181431 0.467796\nvt 0.916652 0.322398\nvt 0.929349 0.144929\nvt 0.498837 0.333552\nvt 0.615994 0.131251\nvt 0.573281 0.095957\nvt 0.305830 0.433859\nvt 0.763559 0.016628\nvt 0.954768 0.241051\nvt 0.836861 0.078475\nvt 0.820340 0.830005\nvt 0.864688 0.367328\nvt 0.127142 0.286925\nvt 0.336222 0.040590\nvt 0.718965 0.174834\nvt 0.746569 0.242460\nvt 0.432945 0.076016\nvt 0.327033 0.397421\nvt 0.479668 0.203738\nvt 0.408622 0.299003\nvt 0.964160 0.830619\nvt 0.363086 0.423761\nvt 0.057203 0.272500\nvt 0.637858 0.460369\nvt 0.708587 0.995142\nvt 0.918441 0.374132\nvt 0.563327 0.147654\nvt 0.560600 0.044499\nvt 0.934362 0.593415\nvt 0.880709 0.279551\nvt 0.850573 0.134020\nvt 0.709662 0.148422\nvt 0.230663 0.494696\nvt 0.695976 0.356291\nvt 0.899987 0.129636\nvt 0.744370 0.015356\nvt 0.362745 0.398270\nvt 0.891165 0.120074\nvt 0.810448 0.246257\nvt 0.591838 0.525227\nvt 0.747927 0.237392\nvt 0.079353 0.200724\nvt 0.159236 0.015355\nvt 0.387860 0.417364\nvt 0.432945 0.026961\nvt 0.131298 0.483742\nvt 0.691656 0.615350\nvt 0.378158 0.189257\nvt 0.282357 0.213217\nvt 0.499292 0.050888\nvt 0.588473 0.160494\nvt 0.353444 0.051195\nvt 0.266998 0.054805\nvt 0.279039 0.041603\nvt 0.928134 0.020674\nvt 0.671239 0.800738\nvt 0.901373 0.252766\nvt 0.894083 0.466163\nvt 0.729571 0.383661\nvt 0.690766 0.446340\nvt 0.820861 0.094992\nvt 0.337928 0.199405\nvt 0.846514 0.794487\nvt 0.497900 0.516361\nvt 0.834841 0.156044\nvt 0.604789 0.326972\nvt 0.379317 0.310129\nvt 0.690111 0.015269\nvt 0.576787 0.162339\nvt 0.811305 0.235426\nvt 0.753051 0.796840\nvt 0.611967 0.220013\nvt 0.910289 0.320293\nvt 0.509840 0.239788\nvt 0.405518 0.003557\nvt 0.426361 0.381210\nvt 0.303876 0.450266\nvt 0.330076 0.369072\nvt 0.368866 0.072120\nvt 0.425557 0.082095\nvt 0.186511 0.224597\nvt 0.124092 0.308615\nvt 0.070914 0.099444\nvt 0.134461 0.216251\nvt 0.228965 0.304415\nvt 0.136849 0.234789\nvt 0.178329 0.299406\nvt 0.090680 0.597581\nvt 0.089911 0.625963\nvt 0.206679 0.195376\nvt 0.120205 0.295980\nvt 0.646742 0.091545\nvt 0.353252 0.334905\nvt 0.570490 0.706572\nvt 0.711215 0.173770\nvt 0.251535 0.688213\nvt 0.723379 0.184344\nvt 0.909243 0.791650\nvt 0.498093 0.223468\nvt 0.688872 0.037671\nvt 0.366067 0.206216\nvt 0.610938 0.733608\nvt 0.676000 0.553528\nvt 0.876706 0.360803\nvt 0.764726 0.201111\nvt 0.159236 0.064749\nvt 0.567644 0.051527\nvt 0.708461 0.775350\nvt 0.303172 0.332679\nvt 0.260147 0.158391\nvt 0.478187 0.340713\nvt 0.321646 0.444481\nvt 0.422384 0.483550\nvt 0.218240 0.382543\nvt 0.336434 0.066730\nvt 0.709753 0.410199\nvt 0.267802 0.224589\nvt 0.962857 0.389255\nvt 0.691345 0.218169\nvt 0.270572 0.347664\nvt 0.704118 0.667915\nvt 0.492518 0.337303\nvt 0.234914 0.319107\nvt 0.673692 0.241264\nvt 0.445562 0.122231\nvt 0.903720 0.920425\nvt 0.706949 0.179577\nvt 0.372842 0.448513\nvt 0.943591 0.031327\nvt 0.778122 0.936088\nvt 0.671265 0.397033\nvt 0.136833 0.256705\nvt 0.208723 0.299388\nvt 0.689777 0.517511\nvt 0.404213 0.667881\nvt 0.527424 0.424936\nvt 0.080548 0.270462\nvt 0.279039 0.032192\nvt 0.537066 0.170117\nvt 0.972709 0.070745\nvt 0.580994 0.206279\nvt 0.039660 0.469740\nvt 0.520236 0.452254\nvt 0.033815 0.451364\nvt 0.721651 0.632358\nvt 0.906190 0.066548\nvt 0.665715 0.778010\nvt 0.996070 0.516109\nvt 0.706096 0.215358\nvt 0.791305 0.814247\nvt 0.738995 0.326949\nvt 0.751707 0.545833\nvt 0.960981 0.019860\nvt 0.761816 0.792175\nvt 0.232786 0.467242\nvt 0.542989 0.149198\nvt 0.813761 0.030682\nvt 0.746267 0.772587\nvt 0.760880 0.362214\nvt 0.591493 0.582795\nvt 0.633281 0.905134\nvt 0.896377 0.406273\nvt 0.637360 0.417782\nvt 0.438344 0.331789\nvt 0.868936 0.978053\nvt 0.840578 0.131308\nvt 0.641409 0.251703\nvt 0.523844 0.411073\nvt 0.558098 0.177380\nvt 0.801956 0.187224\nvt 0.567937 0.653982\nvt 0.488554 0.359427\nvt 0.260146 0.195363\nvt 0.673369 0.182097\nvt 0.920020 0.053870\nvt 0.266998 0.059605\nvt 0.293505 0.489958\nvt 0.510196 0.061397\nvt 0.018093 0.260755\nvt 0.020849 0.740026\nvt 0.003559 0.911304\nvt 0.003284 0.200724\nvt 0.017204 0.778068\nvt 0.016191 0.558867\nvt 0.003284 0.157204\nvt 0.028641 0.200724\nvt 0.030885 0.544935\nvt 0.027154 0.505199\nvt 0.848773 0.133103\nvt 0.654623 0.439239\nvt 0.319883 0.041264\nvt 0.544491 0.438438\nvt 0.080351 0.462459\nvt 0.817926 0.870094\nvt 0.745265 0.242362\nvt 0.764990 0.972136\nvt 0.299484 0.338979\nvt 0.523627 0.194233\nvt 0.786009 0.289228\nvt 0.938792 0.634846\nvt 0.700110 0.198239\nvt 0.715799 0.364442\nvt 0.709753 0.431984\nvt 0.822694 0.293749\nvt 0.646151 0.257973\nvt 0.785780 0.298966\nvt 0.974194 0.098936\nvt 0.723673 0.015060\nvt 0.770915 0.344579\nvt 0.749640 0.303758\nvt 0.080955 0.615463\nvt 0.763578 0.016217\nvt 0.982840 0.494280\nvt 0.696077 0.621874\nvt 0.634449 0.178058\nvt 0.068209 0.459745\nvt 0.057237 0.272523\nvt 0.161151 0.154567\nvt 0.588201 0.077753\nvt 0.768085 0.979591\nvt 0.723202 0.501200\nvt 0.317414 0.436610\nvt 0.946168 0.097998\nvt 0.943906 0.761791\nvt 0.537552 0.237693\nvt 0.728360 0.593526\nvt 0.796764 0.032397\nvt 0.360156 0.443398\nvt 0.689848 0.604997\nvt 0.675777 0.571555\nvt 0.885451 0.246650\nvt 0.742186 0.497015\nvt 0.291618 0.045943\nvt 0.570424 0.019208\nvt 0.496440 0.377922\nvt 0.138104 0.363574\nvt 0.226633 0.213199\nvt 0.827125 0.431984\nvt 0.569461 0.149838\nvt 0.598467 0.059212\nvt 0.146175 0.669504\nvt 0.343052 0.666138\nvt 0.420976 0.435463\nvt 0.498727 0.208302\nvt 0.456983 0.056061\nvt 0.508975 0.059674\nvt 0.344302 0.275487\nvt 0.756024 0.249290\nvt 0.901355 0.249665\nvt 0.650969 0.031534\nvt 0.796838 0.856440\nvt 0.986613 0.765212\nvt 0.759251 0.070139\nvt 0.881102 0.205482\nvt 0.501575 0.369053\nvt 0.600797 0.214330\nvt 0.824051 0.875200\nvt 0.966729 0.035301\nvt 0.539177 0.039846\nvt 0.827407 0.029845\nvt 0.278305 0.630773\nvt 0.561536 0.092374\nvt 0.594331 0.431394\nvt 0.593348 0.727029\nvt 0.571578 0.110510\nvt 0.412327 0.599346\nvt 0.188972 0.672360\nvt 0.881070 0.947896\nvt 0.740523 0.595818\nvt 0.414676 0.030487\nvt 0.240903 0.220899\nvt 0.517839 0.061251\nvt 0.747492 0.043034\nvt 0.828188 0.507822\nvt 0.804635 0.030536\nvt 0.449420 0.960282\nvt 0.353420 0.332518\nvt 0.340023 0.274902\nvt 0.555635 0.430787\nvt 0.440643 0.440053\nvt 0.038865 0.491782\nvt 0.667465 0.175771\nvt 0.182005 0.723915\nvt 0.694713 0.771211\nvt 0.831367 0.844808\nvt 0.503987 0.140479\nvt 0.793389 0.183900\nvt 0.663828 0.181830\nvt 0.671945 0.236821\nvt 0.276605 0.381337\nvt 0.984604 0.191979\nvt 0.770436 0.327937\nvt 0.833324 0.361047\nvt 0.244605 0.231784\nvt 0.679424 0.519060\nvt 0.413898 0.394010\nvt 0.883522 0.129902\nvt 0.826962 0.311963\nvt 0.510392 0.365139\nvt 0.958327 0.210166\nvt 0.758895 0.002556\nvt 0.829997 0.307569\nvt 0.908983 0.397420\nvt 0.816142 0.108934\nvt 0.270571 0.375398\nvt 0.168138 0.299444\nvt 0.306460 0.432733\nvt 0.481097 0.549238\nvt 0.948122 0.719391\nvt 0.380621 0.014606\nvt 0.333202 0.429257\nvt 0.663694 0.645897\nvt 0.481681 0.127278\nvt 0.779084 0.938612\nvt 0.016986 0.230534\nvt 0.716102 0.211145\nvt 0.740789 0.035801\nvt 0.905354 0.774389\nvt 0.346727 0.353459\nvt 0.578665 0.115355\nvt 0.893973 0.251289\nvt 0.451941 0.075897\nvt 0.185292 0.158391\nvt 0.526566 0.353647\nvt 0.630040 0.220010\nvt 0.766447 0.293119\nvt 0.691423 0.014039\nvt 0.241256 0.087776\nvt 0.291618 0.015355\nvt 0.142431 0.015355\nvt 0.987423 0.521351\nvt 0.908044 0.732179\nvt 0.938217 0.718446\nvt 0.326303 0.440952\nvt 0.427894 0.443883\nvt 0.699517 0.264543\nvt 0.839582 0.155766\nvt 0.884603 0.175698\nvt 0.637870 0.073877\nvt 0.669307 0.242485\nvt 0.668970 0.369072\nvt 0.763732 0.761130\nvt 0.564478 0.079414\nvt 0.626950 0.228916\nvt 0.900221 0.072319\nvt 0.805397 0.052171\nvt 0.791313 0.838662\nvt 0.797068 0.756314\nvt 0.291646 0.203343\nvt 0.455163 0.486672\nvt 0.369345 0.088055\nvt 0.519296 0.445656\nvt 0.979702 0.510968\nvt 0.369227 0.061607\nvt 0.159236 0.032192\nvt 0.241256 0.064749\nvt 0.383222 0.329463\nvt 0.368937 0.035330\nvt 0.983139 0.519991\nvt 0.755972 0.723990\nvt 0.377357 0.406072\nvt 0.902640 0.552536\nvt 0.062663 0.221520\nvt 0.556104 0.230835\nvt 0.652189 0.700111\nvt 0.565360 0.053817\nvt 0.853850 0.166420\nvt 0.830188 0.870768\nvt 0.370265 0.428192\nvt 0.473202 0.048309\nvt 0.194055 0.093566\nvt 0.440384 0.417608\nvt 0.831700 0.778166\nvt 0.670560 0.331793\nvt 0.595094 0.668884\nvt 0.944452 0.101925\nvt 0.486781 0.511746\nvt 0.545190 0.034365\nvt 0.618291 0.233290\nvt 0.506199 0.009250\nvt 0.946380 0.634965\nvt 0.773696 0.766758\nvt 0.681506 0.215358\nvt 0.679514 0.507329\nvt 0.383171 0.380211\nvt 0.254491 0.203339\nvt 0.442499 0.480452\nvt 0.305833 0.059605\nvt 0.278937 0.093480\nvt 0.994996 0.512245\nvt 0.730531 0.101333\nvt 0.356085 0.093331\nvt 0.709753 0.402860\nvt 0.676584 0.218169\nvt 0.739330 0.249970\nvt 0.901451 0.482072\nvt 0.575817 0.230466\nvt 0.700348 0.568323\nvt 0.696922 0.241551\nvt 0.962312 0.597234\nvt 0.997508 0.923353\nvt 0.593211 0.087881\nvt 0.454355 0.284621\nvt 0.893010 0.781164\nvt 0.162195 0.755421\nvt 0.370097 0.093228\nvt 0.109512 0.050276\nvt 0.381758 0.066737\nvt 0.865794 0.439128\nvt 0.103958 0.613219\nvt 0.006854 0.546904\nvt 0.028641 0.157204\nvt 0.767842 0.402860\nvt 0.729606 0.378954\nvt 0.931932 0.713836\nvt 0.888329 0.296923\nvt 0.832815 0.706390\nvt 0.573270 0.677212\nvt 0.374313 0.391740\nvt 0.595776 0.194057\nvt 0.810723 0.029845\nvt 0.667735 0.062839\nvt 0.695809 0.026499\nvt 0.496050 0.333121\nvt 0.442593 0.383620\nvt 0.666740 0.215358\nvt 0.764505 0.191365\nvt 0.824387 0.030682\nvt 0.910667 0.115645\nvt 0.740846 0.198345\nvt 0.768788 0.291250\nvt 0.909184 0.411512\nvt 0.640947 0.738385\nvt 0.571008 0.097431\nvt 0.440861 0.402768\nvt 0.266998 0.050276\nvt 0.181968 0.245207\nvt 0.422994 0.852555\nvt 0.454689 0.480240\nvt 0.109512 0.037031\nvt 0.729571 0.402860\nvt 0.336146 0.030060\nvt 0.743532 0.864213\nvt 0.339993 0.338437\nvt 0.944471 0.118341\nvt 0.656177 0.208233\nvt 0.403283 0.627899\nvt 0.703448 0.333464\nvt 0.921494 0.689660\nvt 0.819199 0.157323\nvt 0.347776 0.543905\nvt 0.096527 0.456077\nvt 0.176410 0.021309\nvt 0.785349 0.389299\nvt 0.479435 0.548583\nvt 0.226580 0.050276\nvt 0.614668 0.206279\nvt 0.326468 0.331589\nvt 0.696720 0.326157\nvt 0.687963 0.590461\nvt 0.646098 0.101333\nvt 0.955618 0.042647\nvt 0.842666 0.295706\nvt 0.723665 0.015430\nvt 0.898380 0.250120\nvt 0.803844 0.052171\nvt 0.767469 0.293117\nvt 0.130065 0.200723\nvt 0.316048 0.417642\nvt 0.490747 0.326166\nvt 0.426302 0.076340\nvt 0.985613 0.503368\nvt 0.145285 0.256705\nvt 0.238366 0.245207\nvt 0.139342 0.752378\nvt 0.239650 0.349767\nvt 0.111773 0.493774\nvt 0.140254 0.466713\nvt 0.153616 0.500558\nvt 0.236243 0.630565\nvt 0.204450 0.248481\nvt 0.104753 0.099444\nvt 0.917422 0.630168\nvt 0.683397 0.509182\nvt 0.938693 0.005059\nvt 0.719433 0.829205\nvt 0.577031 0.113486\nvt 0.815278 0.029845\nvt 0.748699 0.799292\nvt 0.584115 0.194109\nvt 0.819241 0.630810\nvt 0.854162 0.110226\nvt 0.544396 0.466803\nvt 0.400515 0.434999\nvt 0.407360 0.372097\nvt 0.396831 0.015124\nvt 0.092609 0.064749\nvt 0.291618 0.032192\nvt 0.226580 0.037031\nvt 0.126000 0.037031\nvt 0.589541 0.390567\nvt 0.897983 0.785309\nvt 0.518266 0.002791\nvt 0.821350 0.029845\nvt 0.525730 0.801440\nvt 0.715106 0.895429\nvt 0.947236 0.255470\nvt 0.963350 0.155477\nvt 0.984604 0.112730\nvt 0.513840 0.052095\nvt 0.704896 0.254825\nvt 0.329638 0.933294\nvt 0.671771 0.425124\nvt 0.159236 0.041603\nvt 0.726563 0.630188\nvt 0.785349 0.467595\nvt 0.452769 0.913547\nvt 0.622616 0.431817\nvt 0.016646 0.081960\nvt 0.016646 0.037031\nvt 0.043738 0.041603\nvt 0.016646 0.087776\nvt 0.366917 0.406082\nvt 0.417341 0.182106\nvt 0.567985 0.864779\nvt 0.474249 0.301112\nvt 0.850894 0.069225\nvt 0.576291 0.598699\nvt 0.786166 0.830426\nvt 0.769286 0.783921\nvt 0.791291 0.860156\nvt 0.875018 0.013568\nvt 0.824249 0.362215\nvt 0.928858 0.591550\nvt 0.854411 0.395793\nvt 0.170404 0.221522\nvt 0.865794 0.467595\nvt 0.342913 0.416408\nvt 0.302461 0.227446\nvt 0.337994 0.320119\nvt 0.354674 0.088076\nvt 0.792965 0.052171\nvt 0.011656 0.538080\nvt 0.011105 0.541852\nvt 0.797077 0.364448\nvt 0.320046 0.057873\nvt 0.478122 0.459846\nvt 0.636975 0.473796\nvt 0.620328 0.480437\nvt 0.684314 0.584276\nvt 0.750798 0.089864\nvt 0.708756 0.174833\nvt 0.654763 0.185014\nvt 0.638691 0.206279\nvt 0.824249 0.361048\nvt 0.619757 0.196063\nvt 0.951493 0.621835\nvt 0.645321 0.066337\nvt 0.510667 0.999157\nvt 0.532700 0.445624\nvt 0.405981 0.030925\nvt 0.431698 0.217971\nvt 0.300257 0.359525\nvt 0.294552 0.263961\nvt 0.453949 0.260510\nvt 0.093124 0.230534\nvt 0.491294 0.472370\nvt 0.418782 0.463441\nvt 0.038330 0.531237\nvt 0.082198 0.473765\nvt 0.090828 0.467385\nvt 0.108865 0.626235\nvt 0.070538 0.564087\nvt 0.324454 0.395015\nvt 0.077992 0.486803\nvt 0.193698 0.064749\nvt 0.546629 0.203738\nvt 0.689226 0.077737\nvt 0.502349 0.280904\nvt 0.864986 0.041149\nvt 0.870801 0.308574\nvt 0.725221 0.372172\nvt 0.518982 0.239859\nvt 0.756298 0.189898\nvt 0.545148 0.171817\nvt 0.870605 0.035343\nvt 0.777626 0.353003\nvt 0.826475 0.377851\nvt 0.428003 0.045513\nvt 0.232797 0.467372\nvt 0.265434 0.398802\nvt 0.390435 0.077062\nvt 0.524410 0.486892\nvt 0.317015 0.220609\nvt 0.761479 0.527674\nvt 0.637743 0.372172\nvt 0.397152 0.390904\nvt 0.579896 0.503534\nvt 0.554392 0.576762\nvt 0.424823 0.462763\nvt 0.625644 0.267031\nvt 0.764389 0.369080\nvt 0.754809 0.214947\nvt 0.142431 0.064749\nvt 0.366596 0.402816\nvt 0.325888 0.608577\nvt 0.259541 0.291669\nvt 0.374144 0.688819\nvt 0.984329 0.511900\nvt 0.900785 0.101784\nvt 0.489695 0.372172\nvt 0.605758 0.500783\nvt 0.586013 0.220014\nvt 0.590634 0.208932\nvt 0.734037 0.015465\nvt 0.535734 0.403481\nvt 0.838947 0.575591\nvt 0.560280 0.524155\nvt 0.943088 0.803270\nvt 0.281238 0.336028\nvt 0.470216 0.369072\nvt 0.113161 0.200724\nvt 0.174921 0.231787\nvt 0.390600 0.240814\nvt 0.382476 0.046404\nvt 0.002453 0.216337\nvt 0.985553 0.730824\nvt 0.721539 0.224694\nvt 0.277591 0.691380\nvt 0.858456 0.369264\nvt 0.429240 0.098814\nvt 0.764618 0.196238\nvt 0.646544 0.754092\nvt 0.356525 0.420227\nvt 0.703127 0.679123\nvt 0.947166 0.518650\nvt 0.997481 0.522965\nvt 0.488668 0.961335\nvt 0.464125 0.350623\nvt 0.344201 0.275469\nvt 0.441170 0.369072\nvt 0.288659 0.334490\nvt 0.336929 0.014388\nvt 0.279537 0.093371\nvt 0.279039 0.021309\nvt 0.715930 0.218169\nvt 0.352259 0.365591\nvt 0.063068 0.401395\nvt 0.461215 0.138423\nvt 0.422052 0.217971\nvt 0.470121 0.217971\nvt 0.347187 0.299820\nvt 0.265294 0.466653\nvt 0.423560 0.186542\nvt 0.474525 0.560735\nvt 0.326793 0.156847\nvt 0.002449 0.224295\nvt 0.002449 0.230534\nvt 0.003294 0.202984\nvt 0.002886 0.233717\nvt 0.983453 0.518948\nvt 0.442056 0.467785\nvt 0.772524 0.297141\nvt 0.617725 0.229093\nvt 0.359192 0.339570\nvt 0.847449 0.831429\nvt 0.376522 0.956719\nvt 0.882042 0.117375\nvt 0.576551 0.595893\nvt 0.579938 0.358297\nvt 0.600253 0.206279\nvt 0.831975 0.188623\nvt 0.401874 0.056624\nvt 0.365859 0.340059\nvt 0.340409 0.334454\nvt 0.367044 0.393278\nvt 0.198378 0.794673\nvt 0.296478 0.250400\nvt 0.125967 0.093579\nvt 0.193698 0.087776\nvt 0.790891 0.914621\nvt 0.886619 0.235975\nvt 0.748110 0.137793\nvt 0.764355 0.369072\nvt 0.629473 0.779215\nvt 0.543505 0.290144\nvt 0.704686 0.754396\nvt 0.671021 0.759065\nvt 0.785200 0.052171\nvt 0.789726 0.372172\nvt 0.520412 0.306681\nvt 0.527923 0.480214\nvt 0.136833 0.248481\nvt 0.249305 0.299479\nvt 0.270775 0.351245\nvt 0.271790 0.447090\nvt 0.291618 0.021309\nvt 0.040781 0.233716\nvt 0.037093 0.200724\nvt 0.858176 0.819710\nvt 0.149166 0.443374\nvt 0.814343 0.229223\nvt 0.767842 0.460670\nvt 0.680666 0.174057\nvt 0.953875 0.154693\nvt 0.252972 0.655263\nvt 0.899675 0.770727\nvt 0.701685 0.627449\nvt 0.503984 0.309858\nvt 0.354109 0.306461\nvt 0.645981 0.748037\nvt 0.572417 0.135199\nvt 0.671665 0.215358\nvt 0.638001 0.432000\nvt 0.204450 0.256705\nvt 0.142431 0.087776\nvt 0.449192 0.782508\nvt 0.866894 0.127748\nvt 0.412317 0.417569\nvt 0.399479 0.276859\nvt 0.397985 0.182255\nvt 0.984604 0.195348\nvt 0.399611 0.276925\nvt 0.766936 0.974556\nvt 0.370788 0.919936\nvt 0.129119 0.231845\nvt 0.533449 0.053087\nvt 0.824873 0.282685\nvt 0.808855 0.102516\nvt 0.839762 0.890599\nvt 0.730132 0.036663\nvt 0.592367 0.073225\nvt 0.648257 0.208932\nvt 0.548942 0.713397\nvt 0.042092 0.443457\nvt 0.769932 0.364440\nvt 0.756135 0.092546\nvt 0.675664 0.516298\nvt 0.233994 0.369009\nvt 0.294766 0.245207\nvt 0.879400 0.459358\nvt 0.797993 0.368812\nvt 0.235915 0.213231\nvt 0.978542 0.662805\nvt 0.955287 0.733314\nvt 0.638127 0.453398\nvt 0.604005 0.384358\nvt 0.402448 0.015097\nvt 0.441349 0.203738\nvt 0.865794 0.446311\nvt 0.063576 0.474591\nvt 0.052161 0.475693\nvt 0.033729 0.465592\nvt 0.086378 0.934569\nvt 0.112731 0.936400\nvt 0.070400 0.230534\nvt 0.037076 0.154567\nvt 0.347305 0.357350\nvt 0.700363 0.681883\nvt 0.079334 0.456750\nvt 0.604186 0.105103\nvt 0.193698 0.032192\nvt 0.876233 0.067717\nvt 0.777649 0.848812\nvt 0.735561 0.706011\nvt 0.813746 0.865722\nvt 0.784860 0.819622\nvt 0.100658 0.224295\nvt 0.445633 0.809719\nvt 0.640710 0.590800\nvt 0.958120 0.016987\nvt 0.619157 0.659179\nvt 0.319798 0.030793\nvt 0.419389 0.025082\nvt 0.409870 0.552002\nvt 0.281534 0.195362\nvt 0.217307 0.203357\nvt 0.417586 0.323277\nvt 0.620811 0.403724\nvt 0.805283 0.106378\nvt 0.661021 0.199057\nvt 0.551291 0.364596\nvt 0.969370 0.267853\nvt 0.563116 0.144021\nvt 0.589628 0.220014\nvt 0.700377 0.663447\nvt 0.958060 0.034243\nvt 0.273068 0.199307\nvt 0.395702 0.121227\nvt 0.571881 0.214331\nvt 0.048407 0.471277\nvt 0.281148 0.342452\nvt 0.124100 0.260750\nvt 0.217307 0.209179\nvt 0.299745 0.431583\nvt 0.043704 0.093568\nvt 0.672240 0.446361\nvt 0.661025 0.129954\nvt 0.891214 0.900199\nvt 0.626100 0.214326\nvt 0.587009 0.662461\nvt 0.423896 0.504383\nvt 0.217067 0.101154\nvt 0.260926 0.234790\nvt 0.930513 0.451552\nvt 0.820188 0.296178\nvt 0.849363 0.846640\nvt 0.801209 0.467595\nvt 0.075532 0.041603\nvt 0.434971 0.324247\nvt 0.377170 0.693436\nvt 0.381941 0.778339\nvt 0.226580 0.054805\nvt 0.978090 0.528401\nvt 0.286358 0.409383\nvt 0.709753 0.481004\nvt 0.764391 0.372179\nvt 0.814625 0.299839\nvt 0.817564 0.096483\nvt 0.562045 0.788628\nvt 0.855369 0.784109\nvt 0.385526 0.443412\nvt 0.346368 0.340854\nvt 0.979980 0.177027\nvt 0.580107 0.248312\nvt 0.615405 0.588131\nvt 0.774246 0.317440\nvt 0.442156 0.008954\nvt 0.758813 0.089864\nvt 0.451881 0.041597\nvt 0.158417 0.203318\nvt 0.134461 0.221517\nvt 0.170402 0.203317\nvt 0.151648 0.637533\nvt 0.191611 0.100081\nvt 0.184846 0.389532\nvt 0.232987 0.228928\nvt 0.240918 0.217117\nvt 0.138591 0.099444\nvt 0.218839 0.304413\nvt 0.701878 0.664711\nvt 0.672221 0.460362\nvt 0.790688 0.089864\nvt 0.643466 0.208932\nvt 0.819284 0.528154\nvt 0.646748 0.621774\nvt 0.262457 0.381432\nvt 0.749737 0.242071\nvt 0.873840 0.305355\nvt 0.765921 0.050338\nvt 0.547792 0.384668\nvt 0.724752 0.364431\nvt 0.998349 0.006850\nvt 0.437068 0.410119\nvt 0.003468 0.045943\nvt 0.003468 0.032192\nvt 0.748498 0.378946\nvt 0.864664 0.127862\nvt 0.326817 0.406346\nvt 0.412460 0.203738\nvt 0.408860 0.046415\nvt 0.407680 0.082071\nvt 0.336486 0.019624\nvt 0.368768 0.029914\nvt 0.503774 0.439216\nvt 0.756606 0.514890\nvt 0.748953 0.190598\nvt 0.266998 0.021309\nvt 0.570011 0.452983\nvt 0.850589 0.854412\nvt 0.571870 0.137556\nvt 0.979586 0.755337\nvt 0.772088 0.088597\nvt 0.909100 0.384535\nvt 0.686445 0.198599\nvt 0.818459 0.312674\nvt 0.998349 0.166709\nvt 0.457820 0.072367\nvt 0.790166 0.719944\nvt 0.266896 0.093485\nvt 0.764143 0.088597\nvt 0.582399 0.220014\nvt 0.768768 0.927216\nvt 0.278223 0.827176\nvt 0.385627 0.313542\nvt 0.798841 0.908819\nvt 0.254612 0.050276\nvt 0.840011 0.308737\nvt 0.045401 0.505052\nvt 0.040833 0.260757\nvt 0.039216 0.457120\nvt 0.873851 0.309202\nvt 0.661344 0.182240\nvt 0.756710 0.778190\nvt 0.660544 0.328002\nvt 0.958696 0.237160\nvt 0.805016 0.856141\nvt 0.842161 0.358834\nvt 0.596857 0.220014\nvt 0.753459 0.088597\nvt 0.719232 0.865848\nvt 0.755104 0.636844\nvt 0.367423 0.830830\nvt 0.118394 0.615169\nvt 0.831401 0.850514\nvt 0.484125 0.398529\nvt 0.131304 0.483609\nvt 0.272463 0.406350\nvt 0.445868 0.494072\nvt 0.801209 0.481004\nvt 0.062449 0.200724\nvt 0.110527 0.216253\nvt 0.074631 0.203306\nvt 0.074284 0.556430\nvt 0.033860 0.488862\nvt 0.090218 0.484643\nvt 0.072142 0.470556\nvt 0.067067 0.493244\nvt 0.046955 0.501145\nvt 0.039758 0.498511\nvt 0.906634 0.916563\nvt 0.284796 0.960451\nvt 0.923201 0.239017\nvt 0.672027 0.241295\nvt 0.900361 0.247299\nvt 0.586575 0.557401\nvt 0.962533 0.206439\nvt 0.539442 0.195504\nvt 0.688431 0.780256\nvt 0.862823 0.030334\nvt 0.585665 0.652992\nvt 0.688313 0.105103\nvt 0.566968 0.114093\nvt 0.736507 0.821264\nvt 0.666452 0.091545\nvt 0.142431 0.021309\nvt 0.629095 0.206279\nvt 0.395551 0.428634\nvt 0.401957 0.189677\nvt 0.369786 0.663034\nvt 0.305833 0.054805\nvt 0.092609 0.009370\nvt 0.109512 0.026961\nvt 0.037474 0.400006\nvt 0.083961 0.402046\nvt 0.109038 0.260747\nvt 0.096257 0.157204\nvt 0.074631 0.216255\nvt 0.794160 0.182501\nvt 0.126000 0.045943\nvt 0.626425 0.220010\nvt 0.959074 0.240146\nvt 0.779324 0.736414\nvt 0.447478 0.372102\nvt 0.752544 0.771058\nvt 0.943026 0.520977\nvt 0.668806 0.236938\nvt 0.697022 0.240631\nvt 0.452578 0.069973\nvt 0.790106 0.823632\nvt 0.850180 0.635224\nvt 0.593426 0.231607\nvt 0.207776 0.681229\nvt 0.811934 0.110831\nvt 0.663255 0.539429\nvt 0.671162 0.390496\nvt 0.376209 0.327491\nvt 0.254612 0.070223\nvt 0.048355 0.099444\nvt 0.984129 0.513089\nvt 0.732586 0.713104\nvt 0.749795 0.779162\nvt 0.996664 0.397901\nvt 0.634161 0.644487\nvt 0.568544 0.641594\nvt 0.567172 0.116383\nvt 0.423095 0.182691\nvt 0.748838 0.770855\nvt 0.496628 0.405224\nvt 0.536850 0.509998\nvt 0.865794 0.402860\nvt 0.749090 0.439128\nvt 0.875955 0.780202\nvt 0.767842 0.439128\nvt 0.184911 0.682019\nvt 0.856536 0.005262\nvt 0.430402 0.755144\nvt 0.812242 0.030682\nvt 0.690532 0.425071\nvt 0.034385 0.506624\nvt 0.291618 0.026961\nvt 0.062580 0.497797\nvt 0.888653 0.286981\nvt 0.539056 0.353228\nvt 0.331209 0.948946\nvt 0.750798 0.088597\nvt 0.814228 0.298586\nvt 0.880684 0.467341\nvt 0.670913 0.291279\nvt 0.442379 0.126296\nvt 0.017706 0.525800\nvt 0.999976 0.583056\nvt 0.715070 0.117668\nvt 0.847140 0.154994\nvt 0.508538 0.057607\nvt 0.652886 0.486718\nvt 0.607541 0.309374\nvt 0.780394 0.847268\nvt 0.453096 0.365704\nvt 0.224587 0.609067\nvt 0.492954 0.828898\nvt 0.272890 0.739488\nvt 0.226580 0.026961\nvt 0.854411 0.383661\nvt 0.718794 0.242305\nvt 0.536982 0.410099\nvt 0.709753 0.460670\nvt 0.690795 0.453446\nvt 0.272399 0.313257\nvt 0.526795 0.307861\nvt 0.573779 0.641898\nvt 0.588201 0.136880\nvt 0.670394 0.037497\nvt 0.734447 0.065644\nvt 0.991938 0.606747\nvt 0.785353 0.088597\nvt 0.716003 0.175538\nvt 0.865082 0.769568\nvt 0.361708 0.352925\nvt 0.081325 0.468112\nvt 0.354608 0.009116\nvt 0.451368 0.424818\nvt 0.172155 0.330186\nvt 0.421913 0.441748\nvt 0.321690 0.361406\nvt 0.364800 0.215916\nvt 0.462195 0.508608\nvt 0.282357 0.203343\nvt 0.394447 0.150402\nvt 0.888087 0.258539\nvt 0.402844 0.082107\nvt 0.681749 0.091545\nvt 0.178285 0.659433\nvt 0.850851 0.165355\nvt 0.950296 0.015402\nvt 0.957160 0.520360\nvt 0.062786 0.230534\nvt 0.636084 0.077956\nvt 0.781732 0.812959\nvt 0.821501 0.296849\nvt 0.438518 0.339083\nvt 0.756135 0.088597\nvt 0.463982 0.002452\nvt 0.624793 0.759228\nvt 0.698526 0.242516\nvt 0.928731 0.676478\nvt 0.382250 0.384882\nvt 0.653245 0.206080\nvt 0.501607 0.372172\nvt 0.684760 0.785721\nvt 0.686443 0.584948\nvt 0.425072 0.469316\nvt 0.556346 0.712319\nvt 0.709738 0.176393\nvt 0.238367 0.234789\nvt 0.767674 0.328211\nvt 0.146435 0.208579\nvt 0.148128 0.234790\nvt 0.473882 0.384874\nvt 0.472811 0.391564\nvt 0.431698 0.203738\nvt 0.361497 0.369072\nvt 0.478730 0.888343\nvt 0.449319 0.325840\nvt 0.767842 0.467595\nvt 0.586257 0.045178\nvt 0.749090 0.467595\nvt 0.497105 0.412092\nvt 0.252842 0.969931\nvt 0.731792 0.254825\nvt 0.813938 0.223757\nvt 0.443259 0.122378\nvt 0.743262 0.236762\nvt 0.818751 0.534605\nvt 0.778673 0.099546\nvt 0.928090 0.030288\nvt 0.774716 0.850502\nvt 0.364954 0.994698\nvt 0.615450 0.616158\nvt 0.228873 0.991521\nvt 0.409455 0.025624\nvt 0.489194 0.203738\nvt 0.456839 0.076083\nvt 0.355956 0.437794\nvt 0.720804 0.066234\nvt 0.634241 0.378248\nvt 0.046918 0.972806\nvt 0.904557 0.797185\nvt 0.590278 0.220014\nvt 0.794035 0.133132\nvt 0.394171 0.121190\nvt 0.370246 0.647028\nvt 0.598501 0.679251\nvt 0.847216 0.007248\nvt 0.544941 0.302598\nvt 0.106381 0.457500\nvt 0.572345 0.119091\nvt 0.885434 0.253917\nvt 0.487548 0.908041\nvt 0.537171 0.197813\nvt 0.769596 0.561671\nvt 0.756298 0.198359\nvt 0.571177 0.160171\nvt 0.535035 0.390911\nvt 0.575587 0.147627\nvt 0.463205 0.171873\nvt 0.024748 0.230534\nvt 0.194671 0.216340\nvt 0.433898 0.417547\nvt 0.829595 0.901840\nvt 0.690250 0.486826\nvt 0.883931 0.096787\nvt 0.391607 0.244921\nvt 0.722468 0.178850\nvt 0.599271 0.831832\nvt 0.650319 0.723467\nvt 0.491692 0.056073\nvt 0.264309 0.404514\nvt 0.864828 0.365800\nvt 0.851398 0.247488\nvt 0.927689 0.387822\nvt 0.711069 0.632291\nvt 0.325993 0.340287\nvt 0.876010 0.411061\nvt 0.983362 0.521383\nvt 0.323304 0.910856\nvt 0.389969 0.450292\nvt 0.156432 0.372172\nvt 0.322799 0.092758\nvt 0.605069 0.396807\nvt 0.123461 0.230534\nvt 0.088991 0.995801\nvt 0.071096 0.233715\nvt 0.063669 0.432624\nvt 0.107320 0.490080\nvt 0.107185 0.304571\nvt 0.050688 0.216257\nvt 0.241256 0.045943\nvt 0.904408 0.818487\nvt 0.767842 0.481004\nvt 0.913944 0.383102\nvt 0.050825 0.545258\nvt 0.722242 0.202470\nvt 0.666909 0.593453\nvt 0.566340 0.207724\nvt 0.954290 0.035787\nvt 0.888097 0.253752\nvt 0.556235 0.203738\nvt 0.603413 0.087881\nvt 0.306185 0.298976\nvt 0.943918 0.449142\nvt 0.640261 0.772273\nvt 0.982007 0.760664\nvt 0.791499 0.022652\nvt 0.321618 0.677809\nvt 0.083637 0.448901\nvt 0.694782 0.570522\nvt 0.961536 0.126505\nvt 0.499609 0.486322\nvt 0.478328 0.020111\nvt 0.698303 0.183453\nvt 0.707222 0.015340\nvt 0.614611 0.364254\nvt 0.566953 0.147188\nvt 0.958691 0.207201\nvt 0.900018 0.827257\nvt 0.062663 0.203317\nvt 0.897529 0.722064\nvt 0.324206 0.445524\nvt 0.766796 0.092546\nvt 0.795363 0.064817\nvt 0.804704 0.029782\nvt 0.410324 0.422968\nvt 0.408497 0.229852\nvt 0.249248 0.304505\nvt 0.701180 0.215358\nvt 0.406182 0.009428\nvt 0.028958 0.485998\nvt 0.193698 0.059605\nvt 0.621833 0.417540\nvt 0.241256 0.070223\nvt 0.732238 0.044294\nvt 0.763011 0.272880\nvt 0.704896 0.264543\nvt 0.632326 0.005534\nvt 0.969380 0.022265\nvt 0.322506 0.745373\nvt 0.782119 0.052184\nvt 0.998349 0.112730\nvt 0.702542 0.202124\nvt 0.544705 0.060622\nvt 0.914020 0.245577\nvt 0.489565 0.069636\nvt 0.370605 0.329376\nvt 0.960616 0.086542\nvt 0.790688 0.088597\nvt 0.462816 0.291532\nvt 0.359732 0.335663\nvt 0.494154 0.632926\nvt 0.488520 0.249798\nvt 0.336445 0.056399\nvt 0.637465 0.467170\nvt 0.450911 0.372115\nvt 0.193698 0.054805\nvt 0.250175 0.662986\nvt 0.670042 0.363350\nvt 0.452698 0.922437\nvt 0.767198 0.024901\nvt 0.772036 0.249065\nvt 0.732859 0.091545\nvt 0.577981 0.117542\nvt 0.788029 0.358823\nvt 0.969355 0.029045\nvt 0.892086 0.791682\nvt 0.662322 0.324413\nvt 0.993312 0.512248\nvt 0.701344 0.623836\nvt 0.241256 0.032192\nvt 0.176410 0.087776\nvt 0.858313 0.232971\nvt 0.422950 0.412894\nvt 0.462028 0.089468\nvt 0.291535 0.093516\nvt 0.593323 0.227349\nvt 0.778808 0.923313\nvt 0.213728 0.260434\nvt 0.110525 0.203316\nvt 0.079353 0.157204\nvt 0.212902 0.248481\nvt 0.205290 0.690659\nvt 0.217373 0.158391\nvt 0.188480 0.299376\nvt 0.122492 0.208579\nvt 0.249050 0.730623\nvt 0.195855 0.339370\nvt 0.234010 0.369072\nvt 0.625205 0.105103\nvt 0.547673 0.378123\nvt 0.801209 0.439128\nvt 0.881468 0.080255\nvt 0.726793 0.241287\nvt 0.056219 0.839753\nvt 0.720235 0.340012\nvt 0.703448 0.301877\nvt 0.729380 0.065674\nvt 0.825900 0.029845\nvt 0.478616 0.330633\nvt 0.235915 0.199304\nvt 0.867845 0.285455\nvt 0.362410 0.441910\nvt 0.683168 0.595553\nvt 0.572815 0.500025\nvt 0.304695 0.307906\nvt 0.810723 0.030682\nvt 0.747803 0.263559\nvt 0.291618 0.081960\nvt 0.122492 0.216257\nvt 0.725246 0.369078\nvt 0.984825 0.731743\nvt 0.708301 0.073531\nvt 0.254491 0.199301\nvt 0.437534 0.023937\nvt 0.456019 0.001627\nvt 0.451041 0.372172\nvt 0.434769 0.331930\nvt 0.442524 0.493060\nvt 0.996518 0.398338\nvt 0.474097 0.431948\nvt 0.272067 0.256705\nvt 0.770931 0.339385\nvt 0.198411 0.203249\nvt 0.126000 0.087776\nvt 0.623940 0.287305\nvt 0.793511 0.858697\nvt 0.864722 0.928001\nvt 0.730125 0.036619\nvt 0.685867 0.320188\nvt 0.382433 0.406977\nvt 0.692840 0.851660\nvt 0.268793 0.917975\nvt 0.428931 0.128193\nvt 0.310225 0.209195\nvt 0.907546 0.798824\nvt 0.356398 0.428426\nvt 0.366903 0.334289\nvt 0.599883 0.557819\nvt 0.902700 0.829788\nvt 0.382200 0.041101\nvt 0.244924 0.260346\nvt 0.215554 0.217062\nvt 0.666663 0.019581\nvt 0.308188 0.431688\nvt 0.422052 0.203738\nvt 0.374760 0.434206\nvt 0.288426 0.338413\nvt 0.341064 0.413716\nvt 0.357249 0.098611\nvt 0.300935 0.203344\nvt 0.416676 0.003672\nvt 0.353435 0.061622\nvt 0.022001 0.772616\nvt 0.043738 0.070223\nvt 0.043738 0.021309\nvt 0.703193 0.625425\nvt 0.749393 0.111669\nvt 0.739681 0.756025\nvt 0.796072 0.052171\nvt 0.554203 0.474361\nvt 0.720360 0.242200\nvt 0.566503 0.541953\nvt 0.698248 0.180497\nvt 0.138780 0.333716\nvt 0.578461 0.113065\nvt 0.892536 0.198055\nvt 0.890511 0.198347\nvt 0.690870 0.546949\nvt 0.733762 0.364428\nvt 0.864383 0.756226\nvt 0.562234 0.378275\nvt 0.770314 0.806170\nvt 0.368568 0.391749\nvt 0.545388 0.069584\nvt 0.677345 0.073955\nvt 0.044029 0.913152\nvt 0.428141 0.468946\nvt 0.590964 0.533051\nvt 0.862713 0.786744\nvt 0.366778 0.442414\nvt 0.441112 0.372099\nvt 0.050688 0.203303\nvt 0.519695 0.465752\nvt 0.608463 0.962180\nvt 0.014698 0.216237\nvt 0.008639 0.481479\nvt 0.545984 0.452615\nvt 0.789726 0.369072\nvt 0.754470 0.235032\nvt 0.631974 0.011273\nvt 0.782920 0.132151\nvt 0.556170 0.185987\nvt 0.640823 0.055066\nvt 0.881342 0.143058\nvt 0.377356 0.242451\nvt 0.731007 0.508608\nvt 0.263780 0.199319\nvt 0.981869 0.965762\nvt 0.852971 0.033181\nvt 0.658198 0.679716\nvt 0.844100 0.635364\nvt 0.381616 0.386691\nvt 0.797077 0.358814\nvt 0.424554 0.009239\nvt 0.859243 0.763716\nvt 0.266998 0.015355\nvt 0.978230 0.525474\nvt 0.300934 0.213216\nvt 0.397886 0.300920\nvt 0.300110 0.639867\nvt 0.432609 0.608056\nvt 0.498893 0.298748\nvt 0.279436 0.970457\nvt 0.854440 0.378953\nvt 0.108187 0.224295\nvt 0.026721 0.216256\nvt 0.101463 0.260746\nvt 0.036170 0.542577\nvt 0.116527 0.304559\nvt 0.459360 0.037253\nvt 0.669119 0.240641\nvt 0.087197 0.511422\nvt 0.584410 0.536690\nvt 0.415834 0.673829\nvt 0.936798 0.866291\nvt 0.573470 0.181672\nvt 0.333838 0.216473\nvt 0.436207 0.353935\nvt 0.445032 0.119029\nvt 0.692603 0.312107\nvt 0.761852 0.971398\nvt 0.689139 0.007508\nvt 0.592175 0.583659\nvt 0.553765 0.423548\nvt 0.612781 0.541544\nvt 0.752277 0.063379\nvt 0.452102 0.920989\nvt 0.768119 0.329620\nvt 0.737274 0.632460\nvt 0.214150 0.919470\nvt 0.176410 0.064749\nvt 0.575821 0.220015\nvt 0.271798 0.447221\nvt 0.409251 0.400514\nvt 0.425782 0.323707\nvt 0.281081 0.304273\nvt 0.441354 0.454477\nvt 0.401445 0.041457\nvt 0.825321 0.859890\nvt 0.863129 0.324643\nvt 0.721287 0.181633\nvt 0.550115 0.369055\nvt 0.903719 0.330021\nvt 0.172431 0.154567\nvt 0.126000 0.076016\nvt 0.627143 0.241442\nvt 0.420556 0.030095\nvt 0.877007 0.348034\nvt 0.447909 0.365988\nvt 0.968023 0.391504\nvt 0.984604 0.006850\nvt 0.266267 0.217169\nvt 0.752303 0.730134\nvt 0.746038 0.236970\nvt 0.757295 0.232142\nvt 0.769932 0.358823\nvt 0.373271 0.238134\nvt 0.854411 0.453533\nvt 0.409590 0.003621\nvt 0.762007 0.330459\nvt 0.745646 0.229540\nvt 0.379627 0.702484\nvt 0.659944 0.324599\nvt 0.300509 0.350892\nvt 0.692169 0.791399\nvt 0.026568 0.560114\nvt 0.023275 0.632378\nvt 0.619853 0.390639\nvt 0.569038 0.506968\nvt 0.718034 0.040868\nvt 0.493806 0.286099\nvt 0.853489 0.243242\nvt 0.995809 0.384092\nvt 0.858279 0.248758\nvt 0.951286 0.684224\nvt 0.238760 0.158390\nvt 0.386728 0.457713\nvt 0.372456 0.448176\nvt 0.386842 0.113805\nvt 0.784063 0.305236\nvt 0.573447 0.108875\nvt 0.754017 0.860819\nvt 0.629408 0.905192\nvt 0.326190 0.333886\nvt 0.163679 0.624014\nvt 0.801209 0.402860\nvt 0.451282 0.410672\nvt 0.351490 0.433348\nvt 0.313275 0.351689\nvt 0.320433 0.079765\nvt 0.614352 0.559555\nvt 0.821818 0.757285\nvt 0.399544 0.496969\nvt 0.636397 0.480296\nvt 0.302922 0.195365\nvt 0.694137 0.254825\nvt 0.751711 0.961955\nvt 0.583355 0.254768\nvt 0.869700 0.009349\nvt 0.535122 0.397144\nvt 0.593307 0.506006\nvt 0.760637 0.033748\nvt 0.928176 0.106914\nvt 0.683050 0.669738\nvt 0.802289 0.052171\nvt 0.687206 0.026666\nvt 0.686746 0.185635\nvt 0.951421 0.818337\nvt 0.742541 0.989437\nvt 0.345881 0.965325\nvt 0.263780 0.213216\nvt 0.669950 0.650271\nvt 0.533884 0.260493\nvt 0.507597 0.320494\nvt 0.788306 0.052171\nvt 0.690486 0.480455\nvt 0.252485 0.657645\nvt 0.475732 0.049478\nvt 0.423911 0.055525\nvt 0.279039 0.070223\nvt 0.457840 0.891048\nvt 0.073854 0.590562\nvt 0.299485 0.330602\nvt 0.232954 0.994894\nvt 0.447893 0.356424\nvt 0.373365 0.274968\nvt 0.441111 0.368998\nvt 0.373072 0.206751\nvt 0.470641 0.784928\nvt 0.394447 0.176058\nvt 0.146796 0.444151\nvt 0.198411 0.209287\nvt 0.692407 0.317231\nvt 0.984977 0.505548\nvt 0.734043 0.015507\nvt 0.841378 0.121736\nvt 0.512700 0.588151\nvt 0.269257 0.381315\nvt 0.668695 0.365491\nvt 0.439533 0.138748\nvt 0.389026 0.244717\nvt 0.726773 0.240300\nvt 0.767021 0.786682\nvt 0.686208 0.625521\nvt 0.724727 0.191090\nvt 0.602874 0.378212\nvt 0.785349 0.431984\nvt 0.839181 0.874056\nvt 0.353469 0.056416\nvt 0.151816 0.231782\nvt 0.799227 0.851663\nvt 0.297697 0.468714\nvt 0.330254 0.403903\nvt 0.257813 0.220950\nvt 0.379685 0.453734\nvt 0.715157 0.120165\nvt 0.766009 0.330886\nvt 0.744665 0.064031\nvt 0.972835 0.011986\nvt 0.291618 0.041603\nvt 0.259215 0.647985\nvt 0.063564 0.260753\nvt 0.193698 0.037031\nvt 0.406812 0.066137\nvt 0.728587 0.889525\nvt 0.266998 0.041603\nvt 0.894275 0.240505\nvt 0.886661 0.175385\nvt 0.406618 0.098819\nvt 0.523816 0.104336\nvt 0.913785 0.397725\nvt 0.864151 0.815092\nvt 0.548592 0.403548\nvt 0.533594 0.280864\nvt 0.688622 0.038093\nvt 0.787691 0.174762\nvt 0.618870 0.214327\nvt 0.740739 0.105103\nvt 0.728925 0.003580\nvt 0.704532 0.210562\nvt 0.102257 0.743072\nvt 0.401743 0.087815\nvt 0.313629 0.348135\nvt 0.316941 0.216828\nvt 0.488090 0.145192\nvt 0.792145 0.832878\nvt 0.399415 0.395038\nvt 0.353133 0.035201\nvt 0.254612 0.026961\nvt 0.042804 0.521579\nvt 0.037093 0.157204\nvt 0.047592 0.224295\nvt 0.009312 0.230534\nvt 0.716349 0.633031\nvt 0.676562 0.236789\nvt 0.730102 0.036252\nvt 0.138591 0.154567\nvt 0.995771 0.518760\nvt 0.636625 0.403853\nvt 0.997968 0.791607\nvt 0.643868 0.768702\nvt 0.765610 0.329277\nvt 0.738373 0.065395\nvt 0.863394 0.363161\nvt 0.524900 0.900112\nvt 0.565623 0.736519\nvt 0.875533 0.076572\nvt 0.501572 0.372161\nvt 0.458647 0.309473\nvt 0.558025 0.304529\nvt 0.225196 0.823383\nvt 0.749301 0.862458\nvt 0.239416 0.446988\nvt 0.769353 0.138370\nvt 0.568269 0.430836\nvt 0.832354 0.158790\nvt 0.238258 0.248480\nvt 0.448370 0.003906\nvt 0.279373 0.227450\nvt 0.801209 0.424809\nvt 0.199434 0.213523\nvt 0.070914 0.154567\nvt 0.580269 0.499233\nvt 0.682307 0.643093\nvt 0.948612 0.104038\nvt 0.690089 0.574187\nvt 0.747983 0.242393\nvt 0.453030 0.315065\nvt 0.807132 0.863148\nvt 0.771711 0.253507\nvt 0.693745 0.014505\nvt 0.668993 0.372170\nvt 0.805373 0.924010\nvt 0.450911 0.369026\nvt 0.902775 0.183698\nvt 0.690702 0.439218\nvt 0.412081 0.463695\nvt 0.598795 0.740067\nvt 0.809396 0.743242\nvt 0.956450 0.084352\nvt 0.715528 0.361038\nvt 0.353229 0.040575\nvt 0.288073 0.411640\nvt 0.422685 0.450493\nvt 0.473345 0.288671\nvt 0.170688 0.234789\nvt 0.424354 0.003817\nvt 0.254513 0.093513\nvt 0.661239 0.603649\nvt 0.119199 0.374523\nvt 0.120128 0.848010\nvt 0.077805 0.401999\nvt 0.887244 0.805952\nvt 0.054754 0.514924\nvt 0.122790 0.611555\nvt 0.115325 0.976054\nvt 0.833650 0.571876\nvt 0.700103 0.116378\nvt 0.375086 0.681942\nvt 0.786752 0.052171\nvt 0.758977 0.042447\nvt 0.876409 0.389379\nvt 0.963402 0.391371\nvt 0.700868 0.570486\nvt 0.273125 0.854498\nvt 0.849644 0.185465\nvt 0.291264 0.297564\nvt 0.692914 0.322480\nvt 0.947386 0.049717\nvt 0.537007 0.217971\nvt 0.730555 0.218645\nvt 0.238780 0.646640\nvt 0.209737 0.228927\nvt 0.736550 0.301877\nvt 0.577329 0.480796\nvt 0.171895 0.308597\nvt 0.194482 0.376215\nvt 0.495158 0.339507\nvt 0.300055 0.217102\nvt 0.393272 0.046634\nvt 0.400252 0.066401\nvt 0.785349 0.439128\nvt 0.590968 0.480685\nvt 0.238759 0.195368\nvt 0.752523 0.198359\nvt 0.541295 0.182661\nvt 0.713748 0.664775\nvt 0.685457 0.590156\nvt 0.642682 0.087881\nvt 0.430871 0.385831\nvt 0.788490 0.815633\nvt 0.603738 0.133660\nvt 0.842622 0.070008\nvt 0.806809 0.069388\nvt 0.752761 0.536567\nvt 0.635936 0.390614\nvt 0.212341 0.404121\nvt 0.919040 0.384257\nvt 0.806157 0.030682\nvt 0.351019 0.775619\nvt 0.761835 0.063724\nvt 0.353381 0.066870\nvt 0.718644 0.236842\nvt 0.274719 0.217169\nvt 0.590002 0.508783\nvt 0.818599 0.038455\nvt 0.670202 0.569748\nvt 0.038708 0.216252\nvt 0.056697 0.451174\nvt 0.671112 0.486718\nvt 0.202900 0.330294\nvt 0.588201 0.087881\nvt 0.263336 0.428823\nvt 0.749090 0.460670\nvt 0.835000 0.804848\nvt 0.814924 0.287479\nvt 0.362341 0.904844\nvt 0.740765 0.035435\nvt 0.846870 0.847327\nvt 0.759208 0.517549\nvt 0.693657 0.014045\nvt 0.959855 0.181666\nvt 0.671644 0.535721\nvt 0.658887 0.252863\nvt 0.688950 0.696766\nvt 0.684807 0.574994\nvt 0.241256 0.076016\nvt 0.495386 0.337656\nvt 0.670280 0.802729\nvt 0.610503 0.299686\nvt 0.784993 0.815285\nvt 0.303489 0.311774\nvt 0.479668 0.217971\nvt 0.487209 0.513383\nvt 0.170688 0.245207\nvt 0.282931 0.730877\nvt 0.226580 0.009370\nvt 0.400638 0.036219\nvt 0.692785 0.307131\nvt 0.996868 0.518611\nvt 0.334980 0.297643\nvt 0.781153 0.233914\nvt 0.380625 0.009291\nvt 0.443026 0.487827\nvt 0.767842 0.389299\nvt 0.867686 0.294997\nvt 0.721033 0.254825\nvt 0.693021 0.178346\nvt 0.697098 0.118536\nvt 0.918365 0.393986\nvt 0.889231 0.211075\nvt 0.479075 0.126985\nvt 0.339961 0.298914\nvt 0.765255 0.293123\nvt 0.942557 0.040002\nvt 0.794832 0.817492\nvt 0.579435 0.220014\nvt 0.758070 0.004704\nvt 0.130065 0.157204\nvt 0.417810 0.424630\nvt 0.288856 0.340436\nvt 0.376990 0.396522\nvt 0.323326 0.705750\nvt 0.305833 0.041603\nvt 0.129119 0.224530\nvt 0.197899 0.348566\nvt 0.136414 0.490168\nvt 0.168162 0.304470\nvt 0.137801 0.291594\nvt 0.147509 0.299566\nvt 0.186511 0.231779\nvt 0.172431 0.099444\nvt 0.134461 0.208585\nvt 0.071301 0.438829\nvt 0.116843 0.417028\nvt 0.566317 0.103796\nvt 0.389737 0.414626\nvt 0.709753 0.389299\nvt 0.492226 0.465588\nvt 0.848156 0.854329\nvt 0.458498 0.350101\nvt 0.317325 0.245207\nvt 0.895610 0.482902\nvt 0.799171 0.223455\nvt 0.084554 0.666245\nvt 0.691388 0.236921\nvt 0.526630 0.238730\nvt 0.605202 0.519184\nvt 0.456227 0.754858\nvt 0.452990 0.390527\nvt 0.730617 0.598284\nvt 0.187546 0.256705\nvt 0.942053 0.027589\nvt 0.844960 0.699350\nvt 0.003468 0.041603\nvt 0.517819 0.208302\nvt 0.819295 0.231635\nvt 0.470414 0.312218\nvt 0.302258 0.415306\nvt 0.578785 0.220014\nvt 0.893796 0.126511\nvt 0.990968 0.510675\nvt 0.589253 0.384389\nvt 0.850369 0.059862\nvt 0.317577 0.413157\nvt 0.591436 0.582684\nvt 0.914446 0.253808\nvt 0.720917 0.511479\nvt 0.529321 0.229240\nvt 0.806157 0.029845\nvt 0.488167 0.338746\nvt 0.601601 0.004719\nvt 0.943213 0.248783\nvt 0.635484 0.384339\nvt 0.711420 0.194981\nvt 0.895789 0.118637\nvt 0.320426 0.014697\nvt 0.978242 0.528854\nvt 0.136419 0.490035\nvt 0.811744 0.867985\nvt 0.981200 0.286470\nvt 0.199958 0.639216\nvt 0.249347 0.291480\nvt 0.723395 0.187669\nvt 0.473949 0.493406\nvt 0.979578 0.755348\nvt 0.786063 0.290042\nvt 0.041379 0.540256\nvt 0.032770 0.532551\nvt 0.764988 0.972134\nvt 0.516914 0.001356\nvt 0.448173 0.033803\nvt 0.238258 0.256705\nvt 0.450966 0.352893\nvt 0.399647 0.030972\nvt 0.864375 0.364340\nvt 0.631306 0.672831\nvt 0.306046 0.234790\nvt 0.765513 0.554204\nvt 0.881840 0.563353\nvt 0.689281 0.016926\nvt 0.768363 0.172919\nvt 0.755728 0.266560\nvt 0.712802 0.510756\nvt 0.930916 0.257208\nvt 0.776108 0.196917\nvt 0.930889 0.244855\nvt 0.777377 0.088597\nvt 0.942980 0.077465\nvt 0.348886 0.275723\nvt 0.176410 0.015355\nvt 0.448696 0.831726\nvt 0.423808 0.190621\nvt 0.492457 0.458759\nvt 0.391210 0.071746\nvt 0.942683 0.011103\nvt 0.321185 0.009195\nvt 0.017441 0.394134\nvt 0.009230 0.531915\nvt 0.022242 0.780116\nvt 0.010465 0.233717\nvt 0.013101 0.370103\nvt 0.018349 0.554488\nvt 0.021376 0.438431\nvt 0.012848 0.438209\nvt 0.003721 0.438116\nvt 0.026213 0.510805\nvt 0.071147 0.260750\nvt 0.749090 0.410199\nvt 0.733711 0.362209\nvt 0.549970 0.409956\nvt 0.728494 0.769880\nvt 0.936851 0.325697\nvt 0.480537 0.333545\nvt 0.719389 0.036994\nvt 0.801309 0.188377\nvt 0.347728 0.209282\nvt 0.866487 0.019897\nvt 0.466402 0.321101\nvt 0.815165 0.364446\nvt 0.809371 0.873786\nvt 0.527674 0.233488\nvt 0.469140 0.358507\nvt 0.267803 0.228929\nvt 0.917096 0.151651\nvt 0.957858 0.121826\nvt 0.702150 0.091545\nvt 0.665918 0.163886\nvt 0.353141 0.024570\nvt 0.945664 0.861042\nvt 0.078404 0.432860\nvt 0.168124 0.291442\nvt 0.142431 0.070223\nvt 0.531132 0.334535\nvt 0.566261 0.503663\nvt 0.479720 0.126176\nvt 0.892664 0.048619\nvt 0.404619 0.457526\nvt 0.398459 0.446374\nvt 0.408801 0.348597\nvt 0.208213 0.213134\nvt 0.305833 0.009370\nvt 0.092609 0.054805\nvt 0.402130 0.051682\nvt 0.636126 0.581915\nvt 0.337211 0.082514\nvt 0.444883 0.365643\nvt 0.990512 0.511898\nvt 0.100689 0.448533\nvt 0.074631 0.208580\nvt 0.071921 0.432772\nvt 0.106973 0.477040\nvt 0.118742 0.627606\nvt 0.100029 0.616727\nvt 0.093926 0.295689\nvt 0.229876 0.669248\nvt 0.633004 0.220010\nvt 0.728530 0.052998\nvt 0.409831 0.239672\nvt 0.800218 0.075441\nvt 0.697042 0.057679\nvt 0.397529 0.648786\nvt 0.784335 0.034028\nvt 0.763552 0.016585\nvt 0.759554 0.027219\nvt 0.559488 0.516701\nvt 0.413980 0.387204\nvt 0.684339 0.176845\nvt 0.824437 0.191554\nvt 0.913992 0.409902\nvt 0.789858 0.052171\nvt 0.066014 0.810444\nvt 0.435516 0.306947\nvt 0.952289 0.025599\nvt 0.936991 0.751781\nvt 0.795939 0.074199\nvt 0.834605 0.078141\nvt 0.679470 0.529048\nvt 0.360742 0.425400\nvt 0.102016 0.487291\nvt 0.254612 0.021309\nvt 0.983371 0.517373\nvt 0.747623 0.329602\nvt 0.755095 0.526088\nvt 0.865794 0.474323\nvt 0.688758 0.264543\nvt 0.308497 0.216983\nvt 0.919582 0.705826\nvt 0.856854 0.277381\nvt 0.766681 0.027469\nvt 0.605938 0.992879\nvt 0.795121 0.828121\nvt 0.295825 0.257300\nvt 0.362642 0.985640\nvt 0.716325 0.630521\nvt 0.674207 0.526769\nvt 0.401937 0.244444\nvt 0.618552 0.378273\nvt 0.737935 0.066735\nvt 0.718458 0.078093\nvt 0.668993 0.369071\nvt 0.537452 0.161659\nvt 0.364895 0.323653\nvt 0.788029 0.364439\nvt 0.664228 0.169506\nvt 0.365691 0.432433\nvt 0.631335 0.996527\nvt 0.767842 0.424809\nvt 0.751828 0.362214\nvt 0.424370 0.457247\nvt 0.422052 0.208302\nvt 0.358780 0.636054\nvt 0.785349 0.474323\nvt 0.578786 0.141927\nvt 0.914766 0.444438\nvt 0.606735 0.312280\nvt 0.299937 0.630603\nvt 0.037762 0.497120\nvt 0.881688 0.784916\nvt 0.687782 0.326882\nvt 0.045083 0.766131\nvt 0.229566 0.326242\nvt 0.176385 0.093562\nvt 0.193698 0.015355\nvt 0.839519 0.310711\nvt 0.557991 0.330182\nvt 0.978102 0.735692\nvt 0.418639 0.250813\nvt 0.877136 0.932363\nvt 0.901232 0.251218\nvt 0.252824 0.652943\nvt 0.915782 0.686531\nvt 0.860320 0.046985\nvt 0.731792 0.264543\nvt 0.749744 0.516927\nvt 0.769931 0.362214\nvt 0.654705 0.453400\nvt 0.133148 0.466900\nvt 0.465019 0.303602\nvt 0.274035 0.098588\nvt 0.689578 0.017431\nvt 0.127312 0.099444\nvt 0.597940 0.336271\nvt 0.575171 0.220015\nvt 0.393255 0.187555\nvt 0.400747 0.408285\nvt 0.515635 0.479670\nvt 0.984664 0.844006\nvt 0.737176 0.219191\nvt 0.886388 0.301380\nvt 0.511966 0.062551\nvt 0.552136 0.175909\nvt 0.529494 0.431907\nvt 0.697202 0.786884\nvt 0.163351 0.227449\nvt 0.753114 0.775661\nvt 0.801990 0.298852\nvt 0.379901 0.439199\nvt 0.159236 0.076016\nvt 0.506891 0.458887\nvt 0.590787 0.403512\nvt 0.320042 0.052179\nvt 0.405255 0.323657\nvt 0.436959 0.417567\nvt 0.437606 0.460978\nvt 0.886839 0.777037\nvt 0.704738 0.130609\nvt 0.535175 0.384526\nvt 0.932398 0.090791\nvt 0.496830 0.398351\nvt 0.897541 0.075438\nvt 0.612521 0.993545\nvt 0.572527 0.085245\nvt 0.342063 0.661682\nvt 0.785860 0.297668\nvt 0.432945 0.015355\nvt 0.749090 0.487591\nvt 0.677298 0.536248\nvt 0.695872 0.572454\nvt 0.569127 0.110142\nvt 0.688614 0.038042\nvt 0.975704 0.266755\nvt 0.605865 0.369072\nvt 0.520790 0.594598\nvt 0.671857 0.240426\nvt 0.563459 0.105795\nvt 0.811888 0.524998\nvt 0.977372 0.522981\nvt 0.454610 0.467227\nvt 0.606119 0.474145\nvt 0.854411 0.487591\nvt 0.417613 0.087918\nvt 0.109512 0.064749\nvt 0.570046 0.445576\nvt 0.607071 0.417278\nvt 0.604535 0.390510\nvt 0.597507 0.220014\nvt 0.744047 0.315353\nvt 0.691947 0.091545\nvt 0.477494 0.334170\nvt 0.312701 0.527413\nvt 0.715528 0.362224\nvt 0.930079 0.403458\nvt 0.874957 0.735511\nvt 0.738750 0.598287\nvt 0.272067 0.248481\nvt 0.423619 0.045406\nvt 0.368674 0.024572\nvt 0.109512 0.076016\nvt 0.537007 0.203738\nvt 0.048643 0.874141\nvt 0.657954 0.087881\nvt 0.605056 0.206279\nvt 0.623800 0.091545\nvt 0.541466 0.306664\nvt 0.748951 0.813838\nvt 0.766924 0.854955\nvt 0.591171 0.627253\nvt 0.667131 0.105103\nvt 0.819045 0.149186\nvt 0.411219 0.127184\nvt 0.785661 0.075592\nvt 0.556404 0.172298\nvt 0.910154 0.332589\nvt 0.389791 0.667504\nvt 0.827125 0.389299\nvt 0.005604 0.703038\nvt 0.987420 0.503337\nvt 0.604001 0.636019\nvt 0.827125 0.417547\nvt 0.517819 0.217971\nvt 0.871299 0.745868\nvt 0.660251 0.578468\nvt 0.534049 0.061560\nvt 0.870830 0.312023\nvt 0.945509 0.247585\nvt 0.780196 0.816534\nvt 0.201428 0.332534\nvt 0.695572 0.293043\nvt 0.858262 0.258488\nvt 0.638234 0.446306\nvt 0.442303 0.474123\nvt 0.342603 0.316181\nvt 0.442454 0.939853\nvt 0.433898 0.431984\nvt 0.279039 0.015355\nvt 0.987420 0.510624\nvt 0.865794 0.395793\nvt 0.036580 0.554997\nvt 0.086597 0.216254\nvt 0.098562 0.216255\nvt 0.093315 0.661913\nvt 0.015328 0.552299\nvt 0.064199 0.517370\nvt 0.098562 0.203306\nvt 0.086597 0.203315\nvt 0.383551 0.446622\nvt 0.672080 0.467147\nvt 0.684704 0.666198\nvt 0.730922 0.207182\nvt 0.659099 0.807517\nvt 0.769931 0.361048\nvt 0.283486 0.245207\nvt 0.793336 0.088415\nvt 0.574981 0.236147\nvt 0.732859 0.087881\nvt 0.665142 0.553875\nvt 0.295474 0.114131\nvt 0.321315 0.088601\nvt 0.749090 0.424809\nvt 0.785378 0.378961\nvt 0.473995 0.331746\nvt 0.397652 0.020495\nvt 0.226580 0.076016\nvt 0.654299 0.467112\nvt 0.827125 0.446311\nvt 0.995424 0.513647\nvt 0.636986 0.410763\nvt 0.661980 0.619088\nvt 0.442702 0.023452\nvt 0.586663 0.220014\nvt 0.755767 0.332886\nvt 0.352161 0.394568\nvt 0.654227 0.178409\nvt 0.927953 0.401863\nvt 0.748948 0.198359\nvt 0.875915 0.499433\nvt 0.471627 0.062528\nvt 0.987422 0.522455\nvt 0.605693 0.403376\nvt 0.505131 0.472301\nvt 0.494405 0.298283\nvt 0.323805 0.392484\nvt 0.492326 0.286095\nvt 0.217693 0.852331\nvt 0.266998 0.009370\nvt 0.854411 0.410199\nvt 0.767842 0.453533\nvt 0.012461 0.400047\nvt 0.414989 0.433361\nvt 0.366565 0.395848\nvt 0.412414 0.458439\nvt 0.698003 0.620242\nvt 0.698185 0.627394\nvt 0.877943 0.104180\nvt 0.857162 0.365097\nvt 0.930477 0.252734\nvt 0.813570 0.243401\nvt 0.856741 0.026665\nvt 0.576180 0.404318\nvt 0.728951 0.378954\nvt 0.409117 0.345042\nvt 0.819832 0.029845\nvt 0.193698 0.009370\nvt 0.126000 0.026961\nvt 0.687920 0.595333\nvt 0.633900 0.206279\nvt 0.529822 0.148945\nvt 0.918767 0.513788\nvt 0.740668 0.724572\nvt 0.594808 0.438630\nvt 0.712369 0.087881\nvt 0.760880 0.361048\nvt 0.703762 0.040947\nvt 0.577953 0.185506\nvt 0.836994 0.889287\nvt 0.176410 0.037031\nvt 0.182363 0.221468\nvt 0.460561 0.203738\nvt 0.196085 0.437939\nvt 0.131869 0.433612\nvt 0.112222 0.640640\nvt 0.066447 0.479548\nvt 0.116558 0.489406\nvt 0.188789 0.446575\nvt 0.138517 0.157203\nvt 0.123933 0.708841\nvt 0.227087 0.245207\nvt 0.114475 0.317264\nvt 0.149199 0.443515\nvt 0.614730 0.101333\nvt 0.436930 0.425011\nvt 0.979417 0.513653\nvt 0.562980 0.049158\nvt 0.863619 0.832541\nvt 0.672684 0.754033\nvt 0.837744 0.871970\nvt 0.283171 0.220950\nvt 0.592702 0.341879\nvt 0.585483 0.505132\nvt 0.879988 0.154971\nvt 0.515767 0.432368\nvt 0.739231 0.973869\nvt 0.325870 0.429732\nvt 0.484517 0.333951\nvt 0.446153 0.012265\nvt 0.265092 0.412931\nvt 0.588201 0.091545\nvt 0.827170 0.378954\nvt 0.437051 0.439699\nvt 0.990629 0.506510\nvt 0.782105 0.051297\nvt 0.358773 0.341797\nvt 0.403391 0.217968\nvt 0.787979 0.767596\nvt 0.654236 0.087881\nvt 0.783646 0.052171\nvt 0.816796 0.030682\nvt 0.609684 0.193045\nvt 0.689317 0.044768\nvt 0.866647 0.203467\nvt 0.997241 0.527033\nvt 0.342926 0.353485\nvt 0.924258 0.795993\nvt 0.043738 0.076016\nvt 0.016646 0.054805\nvt 0.016646 0.050276\nvt 0.016646 0.026961\nvt 0.016646 0.009370\nvt 0.441742 0.461281\nvt 0.694811 0.149165\nvt 0.810737 0.038096\nvt 0.694480 0.619781\nvt 0.604186 0.101333\nvt 0.785353 0.089864\nvt 0.806708 0.805260\nvt 0.764952 0.901296\nvt 0.795586 0.265678\nvt 0.839690 0.129338\nvt 0.751838 0.358824\nvt 0.709753 0.424809\nvt 0.429198 0.421984\nvt 0.224009 0.217063\nvt 0.254612 0.064749\nvt 0.012627 0.427406\nvt 0.009953 0.278110\nvt 0.003265 0.221811\nvt 0.245281 0.349779\nvt 0.838798 0.841718\nvt 0.813761 0.029845\nvt 0.501511 0.260563\nvt 0.545269 0.145442\nvt 0.416106 0.422168\nvt 0.572630 0.016679\nvt 0.995655 0.381645\nvt 0.827125 0.402860\nvt 0.432945 0.064749\nvt 0.176817 0.093568\nvt 0.181428 0.467666\nvt 0.313616 0.158391\nvt 0.195986 0.158391\nvt 0.352388 0.396850\nvt 0.409036 0.051438\nvt 0.254612 0.076016\nvt 0.078004 0.230534\nvt 0.090843 0.455865\nvt 0.085576 0.224295\nvt 0.516286 0.062864\nvt 0.547581 0.747213\nvt 0.661191 0.136123\nvt 0.815609 0.794329\nvt 0.303029 0.336864\nvt 0.852782 0.134821\nvt 0.501523 0.260650\nvt 0.770876 0.257275\nvt 0.745027 0.191473\nvt 0.725246 0.372177\nvt 0.928022 0.375982\nvt 0.606930 0.467457\nvt 0.487184 0.486221\nvt 0.418246 0.455455\nvt 0.317822 0.414785\nvt 0.426033 0.150402\nvt 0.232452 0.220866\nvt 0.224004 0.220844\nvt 0.671337 0.403914\nvt 0.340337 0.093311\nvt 0.651677 0.378293\nvt 0.393219 0.056722\nvt 0.837578 0.156028\nvt 0.603194 0.732602\nvt 0.733866 0.775514\nvt 0.687469 0.663438\nvt 0.691744 0.558263\nvt 0.570392 0.629168\nvt 0.938482 0.798721\nvt 0.360824 0.244925\nvt 0.868654 0.469200\nvt 0.737041 0.866048\nvt 0.159236 0.050276\nvt 0.466215 0.360969\nvt 0.273397 0.328371\nvt 0.452109 0.397013\nvt 0.827125 0.460670\nvt 0.854411 0.460670\nvt 0.422833 0.040265\nvt 0.019015 0.486441\nvt 0.676584 0.215358\nvt 0.210607 0.045943\nvt 0.849644 0.156044\nvt 0.629390 0.220010\nvt 0.616901 0.220011\nvt 0.356054 0.497960\nvt 0.387999 0.619845\nvt 0.706361 0.362224\nvt 0.935194 0.028902\nvt 0.486139 0.426072\nvt 0.748469 0.241458\nvt 0.942693 0.257991\nvt 0.865665 0.378953\nvt 0.536842 0.487116\nvt 0.801879 0.300157\nvt 0.743748 0.560167\nvt 0.738305 0.091545\nvt 0.940256 0.115590\nvt 0.791971 0.844804\nvt 0.645831 0.062044\nvt 0.605880 0.369061\nvt 0.244605 0.227449\nvt 0.619292 0.384367\nvt 0.502966 0.479176\nvt 0.432945 0.059605\nvt 0.568961 0.112620\nvt 0.987420 0.506124\nvt 0.044162 0.509057\nvt 0.413280 0.076405\nvt 0.425059 0.469181\nvt 0.229188 0.491103\nvt 0.290921 0.227449\nvt 0.398617 0.025738\nvt 0.254612 0.087776\nvt 0.572186 0.120573\nvt 0.621027 0.473954\nvt 0.472002 0.398148\nvt 0.462696 0.125993\nvt 0.412460 0.208302\nvt 0.297707 0.468848\nvt 0.163905 0.158392\nvt 0.174921 0.227447\nvt 0.146435 0.221533\nvt 0.050688 0.221534\nvt 0.258626 0.325678\nvt 0.324618 0.722949\nvt 0.614020 0.238004\nvt 0.715266 0.003731\nvt 0.801209 0.446311\nvt 0.637762 0.372164\nvt 0.564734 0.145958\nvt 0.772088 0.089864\nvt 0.444696 0.335189\nvt 0.887921 0.762011\nvt 0.913578 0.702244\nvt 0.562970 0.136588\nvt 0.367460 0.699745\nvt 0.904639 0.240197\nvt 0.209737 0.231781\nvt 0.574952 0.384558\nvt 0.729571 0.446311\nvt 0.689309 0.610654\nvt 0.198607 0.291396\nvt 0.187534 0.403785\nvt 0.376304 0.219250\nvt 0.437780 0.467691\nvt 0.411810 0.082100\nvt 0.305833 0.045943\nvt 0.348176 0.160159\nvt 0.748616 0.277063\nvt 0.484371 0.339232\nvt 0.152053 0.636353\nvt 0.692682 0.621102\nvt 0.600472 0.220014\nvt 0.614730 0.105103\nvt 0.774819 0.742116\nvt 0.329754 0.435802\nvt 0.773602 0.897508\nvt 0.981530 0.512251\nvt 0.176410 0.026961\nvt 0.463932 0.586182\nvt 0.456221 0.078245\nvt 0.308557 0.220765\nvt 0.338204 0.209162\nvt 0.419350 0.427196\nvt 0.347006 0.407033\nvt 0.295262 0.339480\nvt 0.054193 0.400864\nvt 0.044040 0.461879\nvt 0.885475 0.235080\nvt 0.523450 0.288482\nvt 0.677710 0.101333\nvt 0.366809 0.448499\nvt 0.714089 0.726212\nvt 0.896220 0.248667\nvt 0.772020 0.565584\nvt 0.877675 0.570774\nvt 0.861337 0.370116\nvt 0.729027 0.067392\nvt 0.176410 0.059605\nvt 0.334704 0.431575\nvt 0.431654 0.606714\nvt 0.254612 0.032192\nvt 0.004476 0.932716\nvt 0.693839 0.614094\nvt 0.694857 0.241449\nvt 0.562167 0.054326\nvt 0.922884 0.678679\nvt 0.753850 0.217813\nvt 0.850894 0.358768\nvt 0.406137 0.398551\nvt 0.721349 0.064522\nvt 0.851751 0.998924\nvt 0.852543 0.825467\nvt 0.672178 0.359634\nvt 0.224927 0.996270\nvt 0.417918 0.185942\nvt 0.380797 0.650359\nvt 0.469883 0.329012\nvt 0.039995 0.503190\nvt 0.604737 0.220014\nvt 0.673141 0.363003\nvt 0.622800 0.439024\nvt 0.055185 0.224295\nvt 0.075557 0.555750\nvt 0.072264 0.489538\nvt 0.041698 0.498838\nvt 0.120806 0.495519\nvt 0.070901 0.200724\nvt 0.114827 0.311957\nvt 0.053997 0.157204\nvt 0.063782 0.449025\nvt 0.092584 0.093568\nvt 0.221362 0.228928\nvt 0.706237 0.183862\nvt 0.832328 0.857774\nvt 0.712408 0.053586\nvt 0.576175 0.208932\nvt 0.797150 0.885354\nvt 0.755557 0.810276\nvt 0.688587 0.600207\nvt 0.686412 0.035958\nvt 0.926895 0.684215\nvt 0.539908 0.480738\nvt 0.511004 0.983538\nvt 0.512392 0.108880\nvt 0.647780 0.745524\nvt 0.766856 0.294020\nvt 0.319506 0.199333\nvt 0.744491 0.999447\nvt 0.949525 0.691108\nvt 0.182760 0.261865\nvt 0.943466 0.250686\nvt 0.749090 0.402860\nvt 0.810165 0.766973\nvt 0.343213 0.366396\nvt 0.320210 0.629991\nvt 0.226580 0.045943\nvt 0.092609 0.081960\nvt 0.424740 0.014725\nvt 0.058955 0.503044\nvt 0.038708 0.203320\nvt 0.266998 0.076016\nvt 0.841679 0.354296\nvt 0.319409 0.397121\nvt 0.819472 0.291654\nvt 0.784626 0.838098\nvt 0.890982 0.076962\nvt 0.696821 0.683531\nvt 0.793352 0.089794\nvt 0.829960 0.810731\nvt 0.742913 0.550399\nvt 0.431153 0.316646\nvt 0.729571 0.487591\nvt 0.556143 0.467313\nvt 0.163353 0.224596\nvt 0.417183 0.009314\nvt 0.612836 0.541701\nvt 0.834780 0.707037\nvt 0.613674 0.358710\nvt 0.696836 0.661793\nvt 0.750798 0.092546\nvt 0.424437 0.439673\nvt 0.687735 0.182036\nvt 0.931861 0.011815\nvt 0.745899 0.519530\nvt 0.847182 0.043083\nvt 0.713418 0.818952\nvt 0.465494 0.074623\nvt 0.269977 0.299781\nvt 0.427592 0.065366\nvt 0.634911 0.378303\nvt 0.092609 0.041603\nvt 0.146791 0.444278\nvt 0.151801 0.228927\nvt 0.214476 0.345579\nvt 0.149282 0.662298\nvt 0.088756 0.568970\nvt 0.161151 0.099444\nvt 0.036770 0.507178\nvt 0.040355 0.479454\nvt 0.071322 0.401820\nvt 0.237058 0.992345\nvt 0.875166 0.924581\nvt 0.267802 0.231787\nvt 0.850319 0.322287\nvt 0.843982 0.959912\nvt 0.607693 0.620756\nvt 0.629715 0.214327\nvt 0.851733 0.774958\nvt 0.568374 0.663762\nvt 0.788024 0.728551\nvt 0.703533 0.505813\nvt 0.693664 0.014004\nvt 0.801209 0.389299\nvt 0.631684 0.909342\nvt 0.278086 0.678056\nvt 0.671547 0.480248\nvt 0.575128 0.378294\nvt 0.003468 0.021309\nvt 0.737978 0.779448\nvt 0.407366 0.368998\nvt 0.446757 0.558296\nvt 0.414022 0.056023\nvt 0.392737 0.061637\nvt 0.417365 0.060702\nvt 0.767842 0.431984\nvt 0.633900 0.208932\nvt 0.211622 0.332399\nvt 0.653225 0.397250\nvt 0.266998 0.032192\nvt 0.675956 0.240440\nvt 0.704496 0.349154\nvt 0.726861 0.540356\nvt 0.785972 0.296859\nvt 0.973129 0.264996\nvt 0.739776 0.976569\nvt 0.898393 0.252359\nvt 0.676316 0.638919\nvt 0.182356 0.203372\nvt 0.713144 0.637690\nvt 0.670979 0.384289\nvt 0.989864 0.505548\nvt 0.651798 0.091545\nvt 0.319519 0.203349\nvt 0.195986 0.195377\nvt 0.346706 0.213516\nvt 0.735147 0.736381\nvt 0.991392 0.518946\nvt 0.806952 0.051284\nvt 0.330410 0.386337\nvt 0.945852 0.998189\nvt 0.845244 0.295619\nvt 0.868235 0.487124\nvt 0.623138 0.904768\nvt 0.396442 0.191309\nvt 0.711425 0.156541\nvt 0.722261 0.634491\nvt 0.618546 0.220010\nvt 0.700306 0.118869\nvt 0.142431 0.081960\nvt 0.180702 0.977345\nvt 0.365970 0.421554\nvt 0.479306 0.228858\nvt 0.109512 0.059605\nvt 0.031383 0.522079\nvt 0.045545 0.157204\nvt 0.032392 0.224295\nvt 0.014759 0.221464\nvt 0.014768 0.203374\nvt 0.018978 0.701429\nvt 0.045669 0.400377\nvt 0.053590 0.548576\nvt 0.059995 0.547472\nvt 0.061315 0.713390\nvt 0.372204 0.213842\nvt 0.186511 0.228926\nvt 0.210607 0.087776\nvt 0.782686 0.089864\nvt 0.591638 0.541529\nvt 0.604087 0.220014\nvt 0.841101 0.310070\nvt 0.820488 0.788538\nvt 0.740739 0.101333\nvt 0.806198 0.030604\nvt 0.508260 0.203738\nvt 0.295065 0.333378\nvt 0.730830 0.632132\nvt 0.797082 0.362217\nvt 0.729571 0.410199\nvt 0.093710 0.692979\nvt 0.353088 0.431105\nvt 0.349192 0.366469\nvt 0.399345 0.999243\nvt 0.498727 0.217971\nvt 0.378777 0.242646\nvt 0.279039 0.059605\nvt 0.759975 0.717387\nvt 0.033202 0.233716\nvt 0.617390 0.220011\nvt 0.075515 0.093566\nvt 0.361013 0.403938\nvt 0.561549 0.509494\nvt 0.594705 0.453302\nvt 0.622485 0.214326\nvt 0.570028 0.157778\nvt 0.300933 0.199320\nvt 0.082183 0.290827\nvt 0.710457 0.148402\nvt 0.761809 0.063440\nvt 0.954276 0.820662\nvt 0.837915 0.997039\nvt 0.723669 0.015018\nvt 0.897353 0.250806\nvt 0.670134 0.378305\nvt 0.198650 0.220844\nvt 0.221354 0.248481\nvt 0.115714 0.224295\nvt 0.218765 0.340249\nvt 0.865794 0.460670\nvt 0.577720 0.135163\nvt 0.291631 0.220950\nvt 0.316592 0.414225\nvt 0.279039 0.037031\nvt 0.581429 0.460503\nvt 0.979845 0.512249\nvt 0.931737 0.039187\nvt 0.870244 0.762015\nvt 0.720290 0.241371\nvt 0.928342 0.414603\nvt 0.571557 0.220015\nvt 0.694904 0.661452\nvt 0.815986 0.315595\nvt 0.825907 0.782904\nvt 0.730737 0.888698\nvt 0.657567 0.211661\nvt 0.241256 0.026961\nvt 0.786326 0.080056\nvt 0.441555 0.308252\nvt 0.269631 0.291759\nvt 0.854263 0.378949\nvt 0.158417 0.221518\nvt 0.210607 0.032192\nvt 0.604411 0.214330\nvt 0.748624 0.277140\nvt 0.698111 0.559219\nvt 0.722111 0.505830\nvt 0.823265 0.185465\nvt 0.806133 0.362213\nvt 0.742795 0.358818\nvt 0.816254 0.237829\nvt 0.288772 0.289666\nvt 0.713861 0.173387\nvt 0.743875 0.718247\nvt 0.556621 0.226701\nvt 0.763333 0.524969\nvt 0.987420 0.505293\nvt 0.621661 0.467300\nvt 0.336262 0.024847\nvt 0.785349 0.383661\nvt 0.404112 0.327654\nvt 0.433898 0.424809\nvt 0.369377 0.051326\nvt 0.729571 0.389299\nvt 0.003330 0.400494\nvt 0.136849 0.245207\nvt 0.126000 0.050276\nvt 0.767520 0.177710\nvt 0.696260 0.218169\nvt 0.901144 0.812114\nvt 0.594228 0.639215\nvt 0.576015 0.226300\nvt 0.517501 0.223631\nvt 0.930715 0.247655\nvt 0.914428 0.239326\nvt 0.827125 0.439128\nvt 0.827125 0.395793\nvt 0.994181 0.510927\nvt 0.493480 0.369072\nvt 0.427303 0.418827\nvt 0.407043 0.015075\nvt 0.109512 0.041603\nvt 0.313604 0.231848\nvt 0.441554 0.313363\nvt 0.775949 0.032241\nvt 0.718602 0.240527\nvt 0.607488 0.576598\nvt 0.844157 0.854319\nvt 0.762543 0.972612\nvt 0.695063 0.154089\nvt 0.770978 0.852676\nvt 0.825628 0.815973\nvt 0.718089 0.073319\nvt 0.557967 0.445486\nvt 0.558316 0.046789\nvt 0.629887 0.891072\nvt 0.443318 0.017507\nvt 0.611649 0.962704\nvt 0.226619 0.209184\nvt 0.607384 0.195660\nvt 0.561766 0.141730\nvt 0.649502 0.738327\nvt 0.593211 0.091545\nvt 0.698911 0.101333\nvt 0.827125 0.481004\nvt 0.336541 0.071888\nvt 0.983106 0.529055\nvt 0.966058 0.005173\nvt 0.977621 0.527056\nvt 0.734570 0.551042\nvt 0.441170 0.372172\nvt 0.481101 0.334933\nvt 0.011737 0.200724\nvt 0.086201 0.260747\nvt 0.366142 0.855164\nvt 0.478128 0.328040\nvt 0.428931 0.128189\nvt 0.967371 0.389013\nvt 0.872271 0.453132\nvt 0.494676 0.493549\nvt 0.670630 0.240538\nvt 0.960116 0.180109\nvt 0.838832 0.129869\nvt 0.547953 0.141834\nvt 0.294869 0.337437\nvt 0.886553 0.902313\nvt 0.566702 0.351151\nvt 0.845400 0.155766\nvt 0.707464 0.845163\nvt 0.858982 0.181246\nvt 0.484851 0.391677\nvt 0.365749 0.342235\nvt 0.339959 0.274889\nvt 0.271933 0.399535\nvt 0.494774 0.298420\nvt 0.368825 0.014239\nvt 0.673937 0.824285\nvt 0.031185 0.493868\nvt 0.038708 0.221518\nvt 0.050877 0.454427\nvt 0.778121 0.321789\nvt 0.214086 0.398599\nvt 0.698242 0.177933\nvt 0.807613 0.068322\nvt 0.886739 0.375616\nvt 0.610973 0.529702\nvt 0.321877 0.188049\nvt 0.704343 0.184343\nvt 0.857454 0.180792\nvt 0.722762 0.700625\nvt 0.802030 0.298036\nvt 0.758249 0.233640\nvt 0.462190 0.352786\nvt 0.226580 0.041603\nvt 0.214383 0.652697\nvt 0.870462 0.381588\nvt 0.907395 0.698518\nvt 0.515640 0.021671\nvt 0.757534 0.217767\nvt 0.858324 0.227291\nvt 0.547329 0.758537\nvt 0.763334 0.257546\nvt 0.824198 0.358824\nvt 0.567223 0.527932\nvt 0.523954 0.172043\nvt 0.555222 0.028611\nvt 0.767028 0.753991\nvt 0.260926 0.245207\nvt 0.342700 0.357298\nvt 0.498235 0.419073\nvt 0.729571 0.417547\nvt 0.729938 0.749510\nvt 0.215376 0.762980\nvt 0.159236 0.037031\nvt 0.758813 0.088597\nvt 0.326107 0.882036\nvt 0.354313 0.417024\nvt 0.303885 0.450399\nvt 0.361488 0.372101\nvt 0.325626 0.398301\nvt 0.426995 0.070735\nvt 0.751452 0.313188\nvt 0.086597 0.208582\nvt 0.086597 0.221520\nvt 0.098562 0.221529\nvt 0.063020 0.445713\nvt 0.098562 0.208580\nvt 0.732737 0.742719\nvt 0.109479 0.093573\nvt 0.669430 0.359860\nvt 0.906283 0.814663\nvt 0.489466 0.346043\nvt 0.791412 0.051284\nvt 0.553142 0.173821\nvt 0.256212 0.227449\nvt 0.435228 0.913324\nvt 0.611316 0.078087\nvt 0.843195 0.867421\nvt 0.837758 0.154994\nvt 0.880016 0.801399\nvt 0.601505 0.689697\nvt 0.690741 0.242332\nvt 0.579859 0.896407\nvt 0.153211 0.158393\nvt 0.541891 0.311757\nvt 0.227087 0.234790\nvt 0.122492 0.203303\nvt 0.987441 0.534246\nvt 0.156432 0.369072\nvt 0.313616 0.195368\nvt 0.174921 0.228929\nvt 0.323279 0.093345\nvt 0.909333 0.369366\nvt 0.541207 0.157827\nvt 0.664278 0.521623\nvt 0.163350 0.228927\nvt 0.682706 0.673630\nvt 0.751828 0.361049\nvt 0.722424 0.242083\nvt 0.607901 0.559948\nvt 0.816426 0.224971\nvt 0.661821 0.218169\nvt 0.844887 0.111781\nvt 0.377733 0.442160\nvt 0.808012 0.745906\nvt 0.792224 0.761900\nvt 0.366593 0.336441\nvt 0.209737 0.224595\nvt 0.753190 0.948316\nvt 0.554343 0.743108\nvt 0.159236 0.026961\nvt 0.383107 0.651410\nvt 0.163353 0.231780\nvt 0.039133 0.505985\nvt 0.275838 0.606647\nvt 0.226580 0.032192\nvt 0.432945 0.050276\nvt 0.720010 0.105103\nvt 0.540403 0.173561\nvt 0.163906 0.195375\nvt 0.380674 0.082663\nvt 0.592803 0.237068\nvt 0.708108 0.177789\nvt 0.663777 0.259337\nvt 0.326356 0.405061\nvt 0.654236 0.091545\nvt 0.722281 0.240323\nvt 0.539704 0.637381\nvt 0.255162 0.248480\nvt 0.800458 0.778188\nvt 0.582724 0.214330\nvt 0.611641 0.214329\nvt 0.407081 0.275812\nvt 0.644238 0.228990\nvt 0.655513 0.893647\nvt 0.532303 0.466228\nvt 0.415912 0.378463\nvt 0.251955 0.703533\nvt 0.401983 0.046629\nvt 0.729202 0.001334\nvt 0.983224 0.662024\nvt 0.395559 0.093392\nvt 0.839080 0.375070\nvt 0.421822 0.499601\nvt 0.682064 0.192896\nvt 0.991484 0.521376\nvt 0.901867 0.126399\nvt 0.342739 0.394133\nvt 0.831167 0.874681\nvt 0.385894 0.996865\nvt 0.683030 0.722320\nvt 0.350564 0.407974\nvt 0.613597 0.087881\nvt 0.407364 0.372172\nvt 0.576896 0.675667\nvt 0.819461 0.913149\nvt 0.172011 0.711313\nvt 0.351229 0.530237\nvt 0.709753 0.446311\nvt 0.218034 0.937886\nvt 0.402091 0.305408\nvt 0.159408 0.245207\nvt 0.729571 0.460670\nvt 0.180279 0.407706\nvt 0.087805 0.157204\nvt 0.151816 0.224594\nvt 0.155748 0.632255\nvt 0.219115 0.643729\nvt 0.241639 0.582059\nvt 0.249454 0.158391\nvt 0.084656 0.687491\nvt 0.162190 0.256705\nvt 0.170404 0.216253\nvt 0.180815 0.652587\nvt 0.854411 0.467595\nvt 0.801209 0.395793\nvt 0.514048 0.062906\nvt 0.799184 0.844566\nvt 0.883490 0.436764\nvt 0.561208 0.145109\nvt 0.882501 0.953942\nvt 0.492099 0.333858\nvt 0.530540 0.336247\nvt 0.945901 0.662304\nvt 0.417899 0.407458\nvt 0.405576 0.451269\nvt 0.565779 0.203080\nvt 0.899101 0.793629\nvt 0.696856 0.242416\nvt 0.574649 0.802387\nvt 0.563366 0.409432\nvt 0.729571 0.395793\nvt 0.609253 0.993035\nvt 0.561968 0.181765\nvt 0.885983 0.291975\nvt 0.266998 0.045943\nvt 0.383925 0.326506\nvt 0.178938 0.850617\nvt 0.109512 0.032192\nvt 0.947204 0.245826\nvt 0.785349 0.446311\nvt 0.740813 0.981560\nvt 0.027522 0.459384\nvt 0.123712 0.627712\nvt 0.687053 0.026703\nvt 0.691012 0.073750\nvt 0.968226 0.079789\nvt 0.851636 0.040994\nvt 0.866835 0.208482\nvt 0.713861 0.175228\nvt 0.842952 0.329703\nvt 0.663286 0.327777\nvt 0.893553 0.766565\nvt 0.759824 0.138128\nvt 0.803640 0.740005\nvt 0.320063 0.069332\nvt 0.090630 0.473102\nvt 0.176410 0.050276\nvt 0.387187 0.457885\nvt 0.408207 0.041292\nvt 0.742773 0.362216\nvt 0.429884 0.407859\nvt 0.724635 0.362209\nvt 0.425227 0.633015\nvt 0.046301 0.448924\nvt 0.040101 0.498157\nvt 0.040659 0.500309\nvt 0.520401 0.458944\nvt 0.043738 0.045943\nvt 0.043738 0.064749\nvt 0.016646 0.059605\nvt 0.016646 0.015355\nvt 0.043738 0.032192\nvt 0.508449 0.235589\nvt 0.566305 0.474448\nvt 0.729571 0.431984\nvt 0.643882 0.768709\nvt 0.391585 0.030777\nvt 0.967470 0.745998\nvt 0.857432 0.050711\nvt 0.564903 0.282463\nvt 0.689438 0.063422\nvt 0.730095 0.036208\nvt 0.814331 0.745272\nvt 0.617266 0.738971\nvt 0.680558 0.550164\nvt 0.850676 0.288658\nvt 0.788023 0.088597\nvt 0.800735 0.051284\nvt 0.788413 0.831420\nvt 0.829070 0.839585\nvt 0.829332 0.855832\nvt 0.296440 0.098221\nvt 0.549153 0.025914\nvt 0.373220 0.274925\nvt 0.140335 0.231774\nvt 0.393047 0.650968\nvt 0.428277 0.055307\nvt 0.413344 0.040940\nvt 0.356995 0.099580\nvt 0.025597 0.522316\nvt 0.821663 0.290634\nvt 0.003294 0.580473\nvt 0.011130 0.677627\nvt 0.006660 0.953756\nvt 0.006327 0.298406\nvt 0.011579 0.545684\nvt 0.707246 0.014888\nvt 0.820098 0.862187\nvt 0.711255 0.148404\nvt 0.826954 0.832578\nvt 0.291618 0.054805\nvt 0.692856 0.304648\nvt 0.762655 0.929026\nvt 0.541973 0.162542\nvt 0.692694 0.309617\nvt 0.671552 0.087881\nvt 0.046257 0.431935\nvt 0.797082 0.361046\nvt 0.633568 0.633129\nvt 0.593599 0.101333\nvt 0.644581 0.091545\nvt 0.405214 0.099123\nvt 0.929803 0.682823\nvt 0.204916 0.339997\nvt 0.405455 0.071220\nvt 0.519999 0.597486\nvt 0.113811 0.344530\nvt 0.176410 0.076016\nvt 0.440351 0.425130\nvt 0.217082 0.100034\nvt 0.263779 0.203344\nvt 0.759619 0.074913\nvt 0.078963 0.629853\nvt 0.113897 0.955476\nvt 0.038432 0.446509\nvt 0.121613 0.157204\nvt 0.769338 0.294304\nvt 0.653571 0.628518\nvt 0.589072 0.378253\nvt 0.877852 0.155305\nvt 0.670072 0.634449\nvt 0.641187 0.196530\nvt 0.694830 0.317160\nvt 0.843026 0.859892\nvt 0.778276 0.017269\nvt 0.795850 0.262944\nvt 0.315211 0.416568\nvt 0.738305 0.087881\nvt 0.735797 0.101333\nvt 0.729863 0.719576\nvt 0.870667 0.023638\nvt 0.529785 0.339319\nvt 0.863698 0.096235\nvt 0.995139 0.510964\nvt 0.816436 0.517781\nvt 0.754568 0.949468\nvt 0.902192 0.406424\nvt 0.361492 0.369001\nvt 0.433875 0.334357\nvt 0.486694 0.517971\nvt 0.400934 0.660086\nvt 0.476541 0.479978\nvt 0.401607 0.009437\nvt 0.565387 0.511487\nvt 0.806123 0.364436\nvt 0.210607 0.050276\nvt 0.734332 0.067155\nvt 0.530833 0.308421\nvt 0.747064 0.331511\nvt 0.657859 0.322426\nvt 0.442582 0.940131\nvt 0.634471 0.172422\nvt 0.941704 0.331525\nvt 0.525440 0.417961\nvt 0.531235 0.313516\nvt 0.937176 0.579801\nvt 0.744760 0.064990\nvt 0.834902 0.851160\nvt 0.690618 0.432124\nvt 0.093474 0.099444\nvt 0.701180 0.218169\nvt 0.127242 0.410255\nvt 0.396095 0.752725\nvt 0.109512 0.081960\nvt 0.766796 0.088597\nvt 0.270840 0.195362\nvt 0.025796 0.154567\nvt 0.556159 0.071475\nvt 0.575775 0.143994\nvt 0.130138 0.540790\nvt 0.142518 0.195369\nvt 0.625633 0.266951\nvt 0.793624 0.199131\nvt 0.822870 0.029845\nvt 0.816796 0.029845\nvt 0.878826 0.064462\nvt 0.692916 0.302161\nvt 0.680654 0.176828\nvt 0.962633 0.211345\nvt 0.840576 0.799149\nvt 0.570424 0.039528\nvt 0.595443 0.206279\nvt 0.533107 0.993343\nvt 0.815188 0.361047\nvt 0.809003 0.188603\nvt 0.856831 0.026417\nvt 0.840117 0.864848\nvt 0.994992 0.516248\nvt 0.187320 0.361733\nvt 0.568234 0.118414\nvt 0.850357 0.699177\nvt 0.346511 0.338651\nvt 0.408750 0.671904\nvt 0.751477 0.062289\nvt 0.487734 0.432521\nvt 0.813944 0.297777\nvt 0.425640 0.025320\nvt 0.206679 0.158391\nvt 0.183710 0.154567\nvt 0.760675 0.034158\nvt 0.690725 0.467295\nvt 0.934246 0.238662\nvt 0.427810 0.140400\nvt 0.798169 0.864149\nvt 0.353503 0.493412\nvt 0.588187 0.529747\nvt 0.621348 0.721150\nvt 0.721004 0.176584\nvt 0.540801 0.424110\nvt 0.401321 0.300867\nvt 0.807212 0.240512\nvt 0.816686 0.496041\nvt 0.569457 0.147636\nvt 0.501607 0.369072\nvt 0.536264 0.160047\nvt 0.803718 0.868701\nvt 0.796342 0.866025\nvt 0.511398 0.998909\nvt 0.454422 0.933596\nvt 0.861041 0.139408\nvt 0.870027 0.456552\nvt 0.303297 0.330348\nvt 0.373822 0.665340\nvt 0.254612 0.037031\nvt 0.318921 0.413508\nvt 0.183431 0.998703\nvt 0.361438 0.435572\nvt 0.471002 0.006249\nvt 0.265282 0.466522\nvt 0.422372 0.483414\nvt 0.100041 0.629282\nvt 0.294561 0.263957\nvt 0.445551 0.340323\nvt 0.202126 0.611549\nvt 0.210607 0.070223\nvt 0.302387 0.231777\nvt 0.496666 0.372172\nvt 0.712822 0.505015\nvt 0.806747 0.832904\nvt 0.634497 0.616958\nvt 0.817597 0.695923\nvt 0.288495 0.332309\nvt 0.742756 0.003848\nvt 0.757852 0.808974\nvt 0.737750 0.730531\nvt 0.318668 0.310107\nvt 0.496602 0.369058\nvt 0.418406 0.020026\nvt 0.075532 0.037031\nvt 0.849014 0.155256\nvt 0.949328 0.146740\nvt 0.828793 0.561318\nvt 0.270562 0.884130\nvt 0.823163 0.699960\nvt 0.375891 0.237394\nvt 0.346935 0.334619\nvt 0.275682 0.936054\nvt 0.184037 0.282179\nvt 0.440568 0.410108\nvt 0.254612 0.059605\nvt 0.226580 0.081960\nvt 0.092609 0.045943\nvt 0.319988 0.046634\nvt 0.815165 0.358817\nvt 0.863918 0.004523\nvt 0.729523 0.691592\nvt 0.790688 0.092546\nvt 0.886327 0.119630\nvt 0.251745 0.766543\nvt 0.538512 0.232206\nvt 0.157920 0.291533\nvt 0.644935 0.583328\nvt 0.688313 0.101333\nvt 0.642191 0.218128\nvt 0.706435 0.181633\nvt 0.871057 0.295572\nvt 0.562371 0.139156\nvt 0.511967 0.486629\nvt 0.420164 0.076453\nvt 0.743393 0.240458\nvt 0.448628 0.329155\nvt 0.618830 0.642383\nvt 0.690630 0.473950\nvt 0.871204 0.524885\nvt 0.706096 0.218169\nvt 0.960257 0.739346\nvt 0.218034 0.998251\nvt 0.393504 0.666379\nvt 0.413255 0.025454\nvt 0.037075 0.099444\nvt 0.052046 0.730473\nvt 0.059578 0.484434\nvt 0.037636 0.512345\nvt 0.059635 0.154567\nvt 0.815741 0.191061\nvt 0.040995 0.500720\nvt 0.914428 0.252387\nvt 0.272206 0.234789\nvt 0.695166 0.307210\nvt 0.311329 0.398495\nvt 0.819694 0.833506\nvt 0.279373 0.228925\nvt 0.598453 0.055220\nvt 0.624202 0.761424\nvt 0.254672 0.662918\nvt 0.485457 0.384850\nvt 0.688865 0.037621\nvt 0.992892 0.734073\nvt 0.776898 0.075159\nvt 0.449924 0.264820\nvt 0.325468 0.220434\nvt 0.169838 0.320397\nvt 0.757500 0.233072\nvt 0.979350 0.101358\nvt 0.323804 0.427201\nvt 0.437811 0.337074\nvt 0.487384 0.256389\nvt 0.109512 0.015355\nvt 0.003840 0.693296\nvt 0.727736 0.632078\nvt 0.505416 0.445681\nvt 0.147744 0.291568\nvt 0.819379 0.189948\nvt 0.073014 0.445550\nvt 0.613678 0.577106\nvt 0.928431 0.363097\nvt 0.965371 0.602729\nvt 0.532294 0.144610\nvt 0.361004 0.663329\nvt 0.808799 0.234257\nvt 0.193591 0.531129\nvt 0.551544 0.352745\nvt 0.538549 0.187566\nvt 0.929657 0.389483\nvt 0.395840 0.967462\nvt 0.753459 0.092546\nvt 0.619477 0.206279\nvt 0.464831 0.583151\nvt 0.697887 0.224853\nvt 0.839251 0.370286\nvt 0.124148 0.233716\nvt 0.153737 0.248480\nvt 0.592283 0.077978\nvt 0.344880 0.961969\nvt 0.319010 0.394464\nvt 0.142858 0.093590\nvt 0.382578 0.051577\nvt 0.053997 0.200724\nvt 0.070400 0.224295\nvt 0.070901 0.157203\nvt 0.037094 0.521828\nvt 0.081704 0.553285\nvt 0.824476 0.062999\nvt 0.124213 0.627148\nvt 0.523596 0.032954\nvt 0.266998 0.064749\nvt 0.973650 0.264873\nvt 0.501841 0.432679\nvt 0.899524 0.115531\nvt 0.671972 0.555804\nvt 0.182428 0.216242\nvt 0.487902 0.331421\nvt 0.343556 0.299621\nvt 0.788031 0.362214\nvt 0.723123 0.181478\nvt 0.795857 0.737533\nvt 0.599300 0.569565\nvt 0.459997 0.345698\nvt 0.693753 0.115973\nvt 0.745915 0.240625\nvt 0.221354 0.256705\nvt 0.881883 0.060662\nvt 0.873284 0.707654\nvt 0.249666 0.607355\nvt 0.451955 0.821085\nvt 0.319809 0.035998\nvt 0.785349 0.395793\nvt 0.856388 0.110377\nvt 0.188473 0.291378\nvt 0.780030 0.088597\nvt 0.704671 0.511472\nvt 0.587476 0.501294\nvt 0.577329 0.533181\nvt 0.496666 0.369072\nvt 0.565973 0.262191\nvt 0.724635 0.361053\nvt 0.508893 0.055524\nvt 0.807623 0.245909\nvt 0.639647 0.774407\nvt 0.808765 0.835836\nvt 0.548817 0.377940\nvt 0.266998 0.087776\nvt 0.574475 0.120368\nvt 0.497324 0.286418\nvt 0.605582 0.185626\nvt 0.710658 0.156493\nvt 0.950570 0.250603\nvt 0.978995 0.635756\nvt 0.432945 0.087776\nvt 0.977557 0.520901\nvt 0.661622 0.189998\nvt 0.769501 0.348898\nvt 0.489194 0.208302\nvt 0.181968 0.234790\nvt 0.353848 0.082828\nvt 0.305833 0.081960\nvt 0.865003 0.213981\nvt 0.031966 0.511534\nvt 0.126000 0.015355\nvt 0.960946 0.031380\nvt 0.573288 0.110357\nvt 0.330346 0.384266\nvt 0.638188 0.439155\nvt 0.787183 0.699520\nvt 0.984604 0.166709\nvt 0.532891 0.673303\nvt 0.947587 0.001429\nvt 0.640877 0.069966\nvt 0.694209 0.050145\nvt 0.526196 0.365488\nvt 0.574920 0.110868\nvt 0.805966 0.313417\nvt 0.575638 0.623556\nvt 0.775091 0.027997\nvt 0.435546 0.338859\nvt 0.320285 0.638373\nvt 0.353399 0.072177\nvt 0.509080 0.777999\nvt 0.306806 0.092667\nvt 0.776821 0.169227\nvt 0.689978 0.378112\nvt 0.996629 0.528833\nvt 0.704440 0.794233\nvt 0.653943 0.473721\nvt 0.716360 0.635255\nvt 0.936703 0.145554\nvt 0.125328 0.266553\nvt 0.279370 0.231777\nvt 0.969216 0.699916\nvt 0.209360 0.675094\nvt 0.463807 0.906803\nvt 0.628375 0.909269\nvt 0.519362 0.088567\nvt 0.943642 0.019801\nvt 0.444686 0.356059\nvt 0.725342 0.779074\nvt 0.490889 0.445518\nvt 0.563495 0.694496\nvt 0.965897 0.046118\nvt 0.539302 0.321257\nvt 0.279473 0.291400\nvt 0.158415 0.216253\nvt 0.503769 0.304751\nvt 0.300622 0.302364\nvt 0.533893 0.260578\nvt 0.833324 0.362215\nvt 0.763501 0.132039\nvt 0.098766 0.635610\nvt 0.419105 0.498095\nvt 0.416220 0.065722\nvt 0.984211 0.506511\nvt 0.726580 0.236624\nvt 0.146827 0.405508\nvt 0.160769 0.719032\nvt 0.156437 0.372105\nvt 0.183710 0.099444\nvt 0.151801 0.227449\nvt 0.233404 0.348601\nvt 0.221321 0.957509\nvt 0.196741 0.410193\nvt 0.188792 0.446701\nvt 0.133357 0.604151\nvt 0.635644 0.105103\nvt 0.637712 0.424869\nvt 0.891442 0.206397\nvt 0.427540 0.040523\nvt 0.625456 0.880029\nvt 0.475448 0.561307\nvt 0.817044 0.748236\nvt 0.290922 0.228927\nvt 0.740397 0.024262\nvt 0.547792 0.397472\nvt 0.667569 0.005854\nvt 0.888367 0.292137\nvt 0.263615 0.248481\nvt 0.694890 0.314683\nvt 0.683850 0.522707\nvt 0.571394 0.191496\nvt 0.354185 0.151464\nvt 0.712862 0.500291\nvt 0.785349 0.481004\nvt 0.900391 0.485573\nvt 0.576603 0.141628\nvt 0.561537 0.377992\nvt 0.003468 0.037031\nvt 0.003468 0.081960\nvt 0.003468 0.087776\nvt 0.570594 0.162653\nvt 0.362968 0.400555\nvt 0.404341 0.239174\nvt 0.412384 0.452203\nvt 0.330076 0.372172\nvt 0.470430 0.307108\nvt 0.477991 0.338912\nvt 0.457853 0.493243\nvt 0.763209 0.253791\nvt 0.950289 0.524855\nvt 0.517693 0.053605\nvt 0.827331 0.382556\nvt 0.710275 0.254825\nvt 0.998349 0.267716\nvt 0.078722 0.260748\nvt 0.868093 0.792138\nvt 0.763571 0.016173\nvt 0.697098 0.574639\nvt 0.747241 0.554047\nvt 0.696754 0.065585\nvt 0.927657 0.331311\nvt 0.685739 0.819400\nvt 0.735513 0.184013\nvt 0.340109 0.352479\nvt 0.925385 0.745447\nvt 0.778981 0.362214\nvt 0.750740 0.527479\nvt 0.578583 0.138599\nvt 0.176410 0.054805\nvt 0.389360 0.087955\nvt 0.604266 0.486879\nvt 0.449905 0.264734\nvt 0.481078 0.128078\nvt 0.442786 0.486855\nvt 0.400925 0.093482\nvt 0.506517 0.452214\nvt 0.673900 0.359516\nvt 0.750736 0.238416\nvt 0.881964 0.369433\nvt 0.047867 0.994239\nvt 0.537596 0.307863\nvt 0.693163 0.183637\nvt 0.576956 0.537482\nvt 0.726793 0.242081\nvt 0.536642 0.815874\nvt 0.774159 0.013175\nvt 0.757298 0.218486\nvt 0.811294 0.799713\nvt 0.930714 0.254397\nvt 0.576454 0.139138\nvt 0.617196 0.602795\nvt 0.453062 0.309955\nvt 0.953537 0.120382\nvt 0.474568 0.257541\nvt 0.859053 0.362763\nvt 0.858768 0.207550\nvt 0.311526 0.401223\nvt 0.784863 0.378949\nvt 0.922766 0.630052\nvt 0.241256 0.009370\nvt 0.444861 0.037800\nvt 0.412227 0.035829\nvt 0.831998 0.877166\nvt 0.414801 0.070941\nvt 0.020189 0.157204\nvt 0.009635 0.975024\nvt 0.025623 0.233716\nvt 0.022367 0.784225\nvt 0.026721 0.203312\nvt 0.009155 0.577169\nvt 0.016986 0.224295\nvt 0.026719 0.221526\nvt 0.020189 0.200724\nvt 0.025795 0.099444\nvt 0.974887 0.267156\nvt 0.134461 0.203319\nvt 0.210607 0.037031\nvt 0.836664 0.156816\nvt 0.578915 0.474343\nvt 0.536748 0.174465\nvt 0.369291 0.046091\nvt 0.938515 0.046009\nvt 0.605032 0.507868\nvt 0.901338 0.251938\nvt 0.315100 0.313528\nvt 0.214975 0.883953\nvt 0.668970 0.372172\nvt 0.751118 0.556549\nvt 0.502666 0.594995\nvt 0.415147 0.404965\nvt 0.489052 0.026836\nvt 0.829847 0.564809\nvt 0.616967 0.136633\nvt 0.527381 0.180078\nvt 0.243475 0.353700\nvt 0.628824 0.636481\nvt 0.609865 0.206279\nvt 0.719463 0.586454\nvt 0.781726 0.794131\nvt 0.412383 0.455851\nvt 0.294685 0.153177\nvt 0.672379 0.229110\nvt 0.622198 0.460441\nvt 0.696889 0.513795\nvt 0.096257 0.200724\nvt 0.062661 0.208583\nvt 0.015759 0.532072\nvt 0.063517 0.233715\nvt 0.039730 0.432583\nvt 0.460804 0.931680\nvt 0.731885 0.823900\nvt 0.736678 0.198333\nvt 0.709016 0.378110\nvt 0.391648 0.446893\nvt 0.765891 0.294682\nvt 0.486791 0.025680\nvt 0.499018 0.753863\nvt 0.792515 0.811383\nvt 0.666820 0.518960\nvt 0.686366 0.512856\nvt 0.656271 0.027654\nvt 0.337928 0.213125\nvt 0.745809 0.800807\nvt 0.488119 0.336911\nvt 0.391353 0.382655\nvt 0.667631 0.021301\nvt 0.508282 0.586525\nvt 0.701596 0.782711\nvt 0.451553 0.403751\nvt 0.596945 0.512559\nvt 0.300935 0.209191\nvt 0.486082 0.305022\nvt 0.257817 0.217169\nvt 0.279039 0.087776\nvt 0.629095 0.208932\nvt 0.658541 0.224909\nvt 0.433303 0.912123\nvt 0.235913 0.203340\nvt 0.228974 0.291391\nvt 0.210607 0.054805\nvt 0.611481 0.220013\nvt 0.955754 0.008567\nvt 0.570712 0.118580\nvt 0.174600 0.195377\nvt 0.838310 0.123122\nvt 0.334799 0.390793\nvt 0.636629 0.584487\nvt 0.828285 0.138543\nvt 0.750980 0.798054\nvt 0.794942 0.911538\nvt 0.762235 0.162473\nvt 0.687523 0.703264\nvt 0.393017 0.120928\nvt 0.561038 0.135203\nvt 0.761857 0.063950\nvt 0.749090 0.446311\nvt 0.687043 0.817578\nvt 0.940621 0.758986\nvt 0.272560 0.526323\nvt 0.950359 0.100113\nvt 0.690120 0.015326\nvt 0.842430 0.361047\nvt 0.834591 0.039299\nvt 0.722608 0.087881\nvt 0.498912 0.064493\nvt 0.449765 0.919095\nvt 0.392642 0.325070\nvt 0.312829 0.360335\nvt 0.470121 0.208302\nvt 0.392024 0.066609\nvt 0.952785 0.123557\nvt 0.045397 0.095196\nvt 0.534732 0.070522\nvt 0.842151 0.289114\nvt 0.431619 0.911308\nvt 0.720054 0.236742\nvt 0.851598 0.361046\nvt 0.692601 0.504252\nvt 0.255162 0.256705\nvt 0.546060 0.651322\nvt 0.717984 0.176394\nvt 0.425928 0.657286\nvt 0.984604 0.267716\nvt 0.865003 0.220301\nvt 0.214253 0.280794\nvt 0.134939 0.365698\nvt 0.025676 0.260756\nvt 0.593582 0.424280\nvt 0.595720 0.040401\nvt 0.300713 0.347325\nvt 0.809201 0.030682\nvt 0.709753 0.467595\nvt 0.142957 0.790334\nvt 0.346334 0.430460\nvt 0.411113 0.139556\nvt 0.319519 0.209184\nvt 0.371099 0.648341\nvt 0.171372 0.362279\nvt 0.917897 0.802941\nvt 0.634049 0.087881\nvt 0.704686 0.754396\nvt 0.716449 0.768596\nvt 0.704686 0.754396\nvt 0.716449 0.768596\nvt 0.716449 0.768596\nvt 0.725342 0.779074\nvt 0.725342 0.779074\nvt 0.742439 0.802616\nvt 0.725342 0.779074\nvt 0.717252 0.784353\nvt 0.708461 0.775350\nvt 0.717252 0.784353\nvt 0.708461 0.775350\nvt 0.708461 0.775350\nvt 0.717252 0.784353\nvt 0.734231 0.807473\nvt 0.742439 0.802616\nvt 0.742439 0.802616\nvt 0.734231 0.807473\nvt 0.734231 0.807473\nvt 0.758241 0.859117\nvt 0.740559 0.818698\nvt 0.758241 0.859117\nvt 0.766924 0.854955\nvt 0.781929 0.892364\nvt 0.766924 0.854955\nvt 0.748951 0.813838\nvt 0.766924 0.854955\nvt 0.773602 0.897508\nvt 0.758241 0.859117\nvt 0.782826 0.920868\nvt 0.773602 0.897508\nvt 0.773602 0.897508\nvt 0.782826 0.920868\nvt 0.781929 0.892364\nvt 0.781929 0.892364\nvt 0.790891 0.914621\nvt 0.748951 0.813838\nvt 0.748951 0.813838\nvt 0.675778 0.743378\nvt 0.675778 0.743378\nvt 0.675778 0.743378\nvt 0.704686 0.754396\nvt 0.767028 0.753991\nvt 0.767028 0.753991\nvt 0.713949 0.759056\nvt 0.713949 0.759056\nvt 0.722913 0.763539\nvt 0.704686 0.754396\nvt 0.713949 0.759056\nvt 0.704686 0.754396\nvt 0.722913 0.763539\nvt 0.936991 0.751781\nvt 0.912399 0.779700\nvt 0.936991 0.751781\nvt 0.940621 0.758986\nvt 0.918057 0.782637\nvt 0.940621 0.758986\nvt 0.943906 0.761791\nvt 0.912399 0.779700\nvt 0.912399 0.779700\nvt 0.918057 0.782637\nvt 0.918057 0.782637\nvt 0.926850 0.785548\nvt 0.926850 0.785548\nvt 0.926850 0.785548\nvt 0.943906 0.761791\nvt 0.943906 0.761791\nvt 0.963507 0.742558\nvt 0.940621 0.758986\nvt 0.960257 0.739346\nvt 0.936991 0.751781\nvt 0.955287 0.733314\nvt 0.955287 0.733314\nvt 0.647191 0.749521\nvt 0.647191 0.749521\nvt 0.360742 0.425400\nvt 0.365691 0.432433\nvt 0.365691 0.432433\nvt 0.370575 0.438731\nvt 0.370575 0.438731\nvt 0.367718 0.430744\nvt 0.372386 0.436929\nvt 0.372386 0.436929\nvt 0.372386 0.436929\nvt 0.377733 0.442160\nvt 0.423729 0.454217\nvt 0.418246 0.455455\nvt 0.418246 0.455455\nvt 0.424370 0.457247\nvt 0.418554 0.458118\nvt 0.424370 0.457247\nvt 0.418246 0.455455\nvt 0.412383 0.455851\nvt 0.418246 0.455455\nvt 0.412383 0.455851\nvt 0.404976 0.454856\nvt 0.418554 0.458118\nvt 0.412414 0.458439\nvt 0.412414 0.458439\nvt 0.404976 0.454856\nvt 0.412414 0.458439\nvt 0.404619 0.457526\nvt 0.412414 0.458439\nvt 0.404619 0.457526\nvt 0.396415 0.455623\nvt 0.404976 0.454856\nvt 0.404976 0.454856\nvt 0.397152 0.453043\nvt 0.396415 0.455623\nvt 0.396415 0.455623\nvt 0.397152 0.453043\nvt 0.389969 0.450292\nvt 0.389969 0.450292\nvt 0.396415 0.455623\nvt 0.388913 0.452735\nvt 0.389969 0.450292\nvt 0.388913 0.452735\nvt 0.382185 0.448930\nvt 0.382185 0.448930\nvt 0.389969 0.450292\nvt 0.383551 0.446622\nvt 0.383551 0.446622\nvt 0.377733 0.442160\nvt 0.377733 0.442160\nvt 0.382185 0.448930\nvt 0.376107 0.444230\nvt 0.382185 0.448930\nvt 0.377733 0.442160\nvt 0.376107 0.444230\nvt 0.370575 0.438731\nvt 0.370575 0.438731\nvt 0.039730 0.432583\nvt 0.367718 0.430744\nvt 0.367718 0.430744\nvt 0.363086 0.423761\nvt 0.360742 0.425400\nvt 0.311592 0.337207\nvt 0.311658 0.333726\nvt 0.311592 0.337207\nvt 0.303029 0.336864\nvt 0.303172 0.332679\nvt 0.303029 0.336864\nvt 0.299221 0.336971\nvt 0.299413 0.332769\nvt 0.299413 0.332769\nvt 0.359192 0.339570\nvt 0.352814 0.339029\nvt 0.359192 0.339570\nvt 0.365859 0.340059\nvt 0.359192 0.339570\nvt 0.365859 0.340059\nvt 0.352814 0.339029\nvt 0.352814 0.339029\nvt 0.346511 0.338651\nvt 0.346511 0.338651\nvt 0.346511 0.338651\nvt 0.339993 0.338437\nvt 0.339993 0.338437\nvt 0.339993 0.338437\nvt 0.333095 0.338135\nvt 0.333095 0.338135\nvt 0.333095 0.338135\nvt 0.325877 0.337969\nvt 0.325877 0.337969\nvt 0.311592 0.337207\nvt 0.311592 0.337207\nvt 0.311592 0.337207\nvt 0.303029 0.336864\nvt 0.303029 0.336864\nvt 0.303029 0.336864\nvt 0.303029 0.336864\nvt 0.299221 0.336971\nvt 0.299221 0.336971\nvt 0.299221 0.336971\nvt 0.294869 0.337437\nvt 0.294869 0.337437\nvt 0.294869 0.337437\nvt 0.288426 0.338413\nvt 0.288426 0.338413\nvt 0.288426 0.338413\nvt 0.280961 0.340014\nvt 0.359732 0.335663\nvt 0.366593 0.336441\nvt 0.359732 0.335663\nvt 0.353252 0.334905\nvt 0.359732 0.335663\nvt 0.353252 0.334905\nvt 0.346935 0.334619\nvt 0.353252 0.334905\nvt 0.346935 0.334619\nvt 0.340409 0.334454\nvt 0.346935 0.334619\nvt 0.340409 0.334454\nvt 0.333478 0.334104\nvt 0.340409 0.334454\nvt 0.333478 0.334104\nvt 0.326190 0.333886\nvt 0.333478 0.334104\nvt 0.326190 0.333886\nvt 0.311658 0.333726\nvt 0.326190 0.333886\nvt 0.311658 0.333726\nvt 0.303172 0.332679\nvt 0.311658 0.333726\nvt 0.303172 0.332679\nvt 0.299413 0.332769\nvt 0.303172 0.332679\nvt 0.299413 0.332769\nvt 0.295065 0.333378\nvt 0.299413 0.332769\nvt 0.295065 0.333378\nvt 0.288659 0.334490\nvt 0.295065 0.333378\nvt 0.288659 0.334490\nvt 0.281238 0.336028\nvt 0.288659 0.334490\nvt 0.281238 0.336028\nvt 0.787979 0.767596\nvt 0.787979 0.767596\nvt 0.777188 0.760277\nvt 0.787979 0.767596\nvt 0.740559 0.818698\nvt 0.740559 0.818698\nvt 0.777188 0.760277\nvt 0.767028 0.753991\nvt 0.777188 0.760277\nvt 0.675778 0.743378\nvt 0.704686 0.754396\nvt 0.697708 0.766862\nvt 0.697708 0.766862\nvt 0.672684 0.754033\nvt 0.675778 0.743378\nvt 0.671021 0.759065\nvt 0.672684 0.754033\nvt 0.697708 0.766862\nvt 0.697708 0.766862\nvt 0.694713 0.771211\nvt 0.671021 0.759065\nvt 0.671021 0.759065\nvt 0.694713 0.771211\nvt 0.691736 0.775401\nvt 0.691736 0.775401\nvt 0.669279 0.763960\nvt 0.671021 0.759065\nvt 0.667544 0.770384\nvt 0.669279 0.763960\nvt 0.691736 0.775401\nvt 0.691736 0.775401\nvt 0.688431 0.780256\nvt 0.667544 0.770384\nvt 0.665715 0.778010\nvt 0.667544 0.770384\nvt 0.688431 0.780256\nvt 0.688431 0.780256\nvt 0.684760 0.785721\nvt 0.665715 0.778010\nvt 0.697708 0.766862\nvt 0.704686 0.754396\nvt 0.716449 0.768596\nvt 0.722111 0.768636\nvt 0.716449 0.768596\nvt 0.704686 0.754396\nvt 0.704686 0.754396\nvt 0.713949 0.759056\nvt 0.722111 0.768636\nvt 0.716449 0.768596\nvt 0.722111 0.768636\nvt 0.729640 0.777660\nvt 0.729640 0.777660\nvt 0.725342 0.779074\nvt 0.716449 0.768596\nvt 0.733866 0.775514\nvt 0.729640 0.777660\nvt 0.722111 0.768636\nvt 0.722111 0.768636\nvt 0.728494 0.769880\nvt 0.733866 0.775514\nvt 0.728494 0.769880\nvt 0.722111 0.768636\nvt 0.713949 0.759056\nvt 0.713949 0.759056\nvt 0.722913 0.763539\nvt 0.728494 0.769880\nvt 0.725342 0.779074\nvt 0.729640 0.777660\nvt 0.745809 0.800807\nvt 0.745809 0.800807\nvt 0.729640 0.777660\nvt 0.733866 0.775514\nvt 0.745809 0.800807\nvt 0.742439 0.802616\nvt 0.725342 0.779074\nvt 0.733866 0.775514\nvt 0.748699 0.799292\nvt 0.745809 0.800807\nvt 0.708461 0.775350\nvt 0.716449 0.768596\nvt 0.725342 0.779074\nvt 0.725342 0.779074\nvt 0.717252 0.784353\nvt 0.708461 0.775350\nvt 0.717252 0.784353\nvt 0.725342 0.779074\nvt 0.742439 0.802616\nvt 0.716449 0.768596\nvt 0.708461 0.775350\nvt 0.697708 0.766862\nvt 0.705157 0.778996\nvt 0.708461 0.775350\nvt 0.717252 0.784353\nvt 0.717252 0.784353\nvt 0.713765 0.787311\nvt 0.705157 0.778996\nvt 0.708461 0.775350\nvt 0.705157 0.778996\nvt 0.694713 0.771211\nvt 0.694713 0.771211\nvt 0.697708 0.766862\nvt 0.708461 0.775350\nvt 0.691736 0.775401\nvt 0.694713 0.771211\nvt 0.705157 0.778996\nvt 0.705157 0.778996\nvt 0.701596 0.782711\nvt 0.691736 0.775401\nvt 0.701596 0.782711\nvt 0.705157 0.778996\nvt 0.713765 0.787311\nvt 0.713765 0.787311\nvt 0.709742 0.790595\nvt 0.701596 0.782711\nvt 0.697202 0.786884\nvt 0.701596 0.782711\nvt 0.709742 0.790595\nvt 0.709742 0.790595\nvt 0.704440 0.794233\nvt 0.697202 0.786884\nvt 0.701596 0.782711\nvt 0.697202 0.786884\nvt 0.688431 0.780256\nvt 0.688431 0.780256\nvt 0.691736 0.775401\nvt 0.701596 0.782711\nvt 0.684760 0.785721\nvt 0.688431 0.780256\nvt 0.697202 0.786884\nvt 0.697202 0.786884\nvt 0.692169 0.791399\nvt 0.684760 0.785721\nvt 0.692169 0.791399\nvt 0.697202 0.786884\nvt 0.704440 0.794233\nvt 0.704440 0.794233\nvt 0.698304 0.798062\nvt 0.692169 0.791399\nvt 0.713765 0.787311\nvt 0.717252 0.784353\nvt 0.734231 0.807473\nvt 0.742439 0.802616\nvt 0.734231 0.807473\nvt 0.717252 0.784353\nvt 0.734231 0.807473\nvt 0.742439 0.802616\nvt 0.748951 0.813838\nvt 0.748951 0.813838\nvt 0.740559 0.818698\nvt 0.734231 0.807473\nvt 0.740559 0.818698\nvt 0.748951 0.813838\nvt 0.766924 0.854955\nvt 0.766924 0.854955\nvt 0.758241 0.859117\nvt 0.740559 0.818698\nvt 0.736507 0.821264\nvt 0.740559 0.818698\nvt 0.758241 0.859117\nvt 0.758241 0.859117\nvt 0.754017 0.860819\nvt 0.736507 0.821264\nvt 0.736507 0.821264\nvt 0.754017 0.860819\nvt 0.749301 0.862458\nvt 0.749301 0.862458\nvt 0.731885 0.823900\nvt 0.736507 0.821264\nvt 0.726045 0.826554\nvt 0.731885 0.823900\nvt 0.749301 0.862458\nvt 0.749301 0.862458\nvt 0.743532 0.864213\nvt 0.726045 0.826554\nvt 0.719433 0.829205\nvt 0.726045 0.826554\nvt 0.743532 0.864213\nvt 0.743532 0.864213\nvt 0.737041 0.866048\nvt 0.719433 0.829205\nvt 0.758241 0.859117\nvt 0.766924 0.854955\nvt 0.781929 0.892364\nvt 0.786053 0.889676\nvt 0.781929 0.892364\nvt 0.766924 0.854955\nvt 0.766924 0.854955\nvt 0.770978 0.852676\nvt 0.786053 0.889676\nvt 0.770978 0.852676\nvt 0.766924 0.854955\nvt 0.748951 0.813838\nvt 0.786053 0.889676\nvt 0.770978 0.852676\nvt 0.774716 0.850502\nvt 0.774716 0.850502\nvt 0.789995 0.887209\nvt 0.786053 0.889676\nvt 0.781929 0.892364\nvt 0.773602 0.897508\nvt 0.758241 0.859117\nvt 0.754017 0.860819\nvt 0.758241 0.859117\nvt 0.773602 0.897508\nvt 0.782826 0.920868\nvt 0.773602 0.897508\nvt 0.781929 0.892364\nvt 0.781929 0.892364\nvt 0.790891 0.914621\nvt 0.782826 0.920868\nvt 0.769527 0.899514\nvt 0.773602 0.897508\nvt 0.782826 0.920868\nvt 0.773602 0.897508\nvt 0.769527 0.899514\nvt 0.754017 0.860819\nvt 0.782826 0.920868\nvt 0.778808 0.923313\nvt 0.769527 0.899514\nvt 0.769527 0.899514\nvt 0.778808 0.923313\nvt 0.774256 0.925381\nvt 0.774256 0.925381\nvt 0.764952 0.901296\nvt 0.769527 0.899514\nvt 0.759412 0.903040\nvt 0.764952 0.901296\nvt 0.774256 0.925381\nvt 0.764952 0.901296\nvt 0.759412 0.903040\nvt 0.743532 0.864213\nvt 0.737041 0.866048\nvt 0.743532 0.864213\nvt 0.759412 0.903040\nvt 0.774256 0.925381\nvt 0.768768 0.927216\nvt 0.759412 0.903040\nvt 0.753219 0.904860\nvt 0.759412 0.903040\nvt 0.768768 0.927216\nvt 0.759412 0.903040\nvt 0.753219 0.904860\nvt 0.737041 0.866048\nvt 0.768768 0.927216\nvt 0.762655 0.929026\nvt 0.753219 0.904860\nvt 0.754017 0.860819\nvt 0.769527 0.899514\nvt 0.764952 0.901296\nvt 0.764952 0.901296\nvt 0.749301 0.862458\nvt 0.754017 0.860819\nvt 0.743532 0.864213\nvt 0.749301 0.862458\nvt 0.764952 0.901296\nvt 0.793262 0.885262\nvt 0.789995 0.887209\nvt 0.774716 0.850502\nvt 0.798841 0.908819\nvt 0.789995 0.887209\nvt 0.793262 0.885262\nvt 0.793262 0.885262\nvt 0.802067 0.906724\nvt 0.798841 0.908819\nvt 0.805183 0.904904\nvt 0.802067 0.906724\nvt 0.793262 0.885262\nvt 0.793262 0.885262\nvt 0.797150 0.885354\nvt 0.805183 0.904904\nvt 0.797150 0.885354\nvt 0.793262 0.885262\nvt 0.777649 0.848812\nvt 0.774716 0.850502\nvt 0.777649 0.848812\nvt 0.793262 0.885262\nvt 0.757852 0.808974\nvt 0.777649 0.848812\nvt 0.774716 0.850502\nvt 0.780394 0.847268\nvt 0.777649 0.848812\nvt 0.757852 0.808974\nvt 0.777649 0.848812\nvt 0.780394 0.847268\nvt 0.797150 0.885354\nvt 0.757852 0.808974\nvt 0.757871 0.804408\nvt 0.780394 0.847268\nvt 0.753051 0.796840\nvt 0.757871 0.804408\nvt 0.757852 0.808974\nvt 0.757852 0.808974\nvt 0.750980 0.798054\nvt 0.753051 0.796840\nvt 0.750980 0.798054\nvt 0.757852 0.808974\nvt 0.755557 0.810276\nvt 0.774716 0.850502\nvt 0.755557 0.810276\nvt 0.757852 0.808974\nvt 0.755557 0.810276\nvt 0.748699 0.799292\nvt 0.750980 0.798054\nvt 0.750980 0.798054\nvt 0.737978 0.779448\nvt 0.753051 0.796840\nvt 0.737978 0.779448\nvt 0.750980 0.798054\nvt 0.748699 0.799292\nvt 0.786053 0.889676\nvt 0.789995 0.887209\nvt 0.798841 0.908819\nvt 0.798841 0.908819\nvt 0.794942 0.911538\nvt 0.786053 0.889676\nvt 0.781929 0.892364\nvt 0.786053 0.889676\nvt 0.794942 0.911538\nvt 0.794942 0.911538\nvt 0.790891 0.914621\nvt 0.781929 0.892364\nvt 0.745809 0.800807\nvt 0.748699 0.799292\nvt 0.755557 0.810276\nvt 0.755557 0.810276\nvt 0.752523 0.811889\nvt 0.745809 0.800807\nvt 0.752523 0.811889\nvt 0.755557 0.810276\nvt 0.774716 0.850502\nvt 0.774716 0.850502\nvt 0.770978 0.852676\nvt 0.752523 0.811889\nvt 0.748951 0.813838\nvt 0.752523 0.811889\nvt 0.770978 0.852676\nvt 0.742439 0.802616\nvt 0.745809 0.800807\nvt 0.752523 0.811889\nvt 0.752523 0.811889\nvt 0.748951 0.813838\nvt 0.742439 0.802616\nvt 0.748699 0.799292\nvt 0.733866 0.775514\nvt 0.737978 0.779448\nvt 0.655842 0.686418\nvt 0.658198 0.679716\nvt 0.690411 0.689688\nvt 0.690411 0.689688\nvt 0.688950 0.696766\nvt 0.655842 0.686418\nvt 0.655842 0.686418\nvt 0.688950 0.696766\nvt 0.687523 0.703264\nvt 0.687523 0.703264\nvt 0.653742 0.693024\nvt 0.655842 0.686418\nvt 0.652189 0.700111\nvt 0.653742 0.693024\nvt 0.687523 0.703264\nvt 0.687523 0.703264\nvt 0.686136 0.709505\nvt 0.652189 0.700111\nvt 0.652189 0.700111\nvt 0.686136 0.709505\nvt 0.684690 0.715745\nvt 0.684690 0.715745\nvt 0.651194 0.707585\nvt 0.652189 0.700111\nvt 0.650666 0.715495\nvt 0.651194 0.707585\nvt 0.684690 0.715745\nvt 0.684690 0.715745\nvt 0.683030 0.722320\nvt 0.650666 0.715495\nvt 0.650666 0.715495\nvt 0.683030 0.722320\nvt 0.681017 0.729273\nvt 0.681017 0.729273\nvt 0.650319 0.723467\nvt 0.650666 0.715495\nvt 0.649502 0.738327\nvt 0.650319 0.723467\nvt 0.681017 0.729273\nvt 0.681017 0.729273\nvt 0.675778 0.743378\nvt 0.649502 0.738327\nvt 0.688950 0.696766\nvt 0.690411 0.689688\nvt 0.722762 0.700625\nvt 0.722762 0.700625\nvt 0.720357 0.707862\nvt 0.688950 0.696766\nvt 0.718135 0.714448\nvt 0.687523 0.703264\nvt 0.688950 0.696766\nvt 0.688950 0.696766\nvt 0.720357 0.707862\nvt 0.718135 0.714448\nvt 0.686136 0.709505\nvt 0.687523 0.703264\nvt 0.718135 0.714448\nvt 0.718135 0.714448\nvt 0.716091 0.720418\nvt 0.686136 0.709505\nvt 0.714089 0.726212\nvt 0.684690 0.715745\nvt 0.686136 0.709505\nvt 0.686136 0.709505\nvt 0.716091 0.720418\nvt 0.714089 0.726212\nvt 0.683030 0.722320\nvt 0.684690 0.715745\nvt 0.714089 0.726212\nvt 0.714089 0.726212\nvt 0.711852 0.732610\nvt 0.683030 0.722320\nvt 0.709316 0.739576\nvt 0.681017 0.729273\nvt 0.683030 0.722320\nvt 0.683030 0.722320\nvt 0.711852 0.732610\nvt 0.709316 0.739576\nvt 0.675778 0.743378\nvt 0.681017 0.729273\nvt 0.709316 0.739576\nvt 0.709316 0.739576\nvt 0.704686 0.754396\nvt 0.675778 0.743378\nvt 0.720357 0.707862\nvt 0.722762 0.700625\nvt 0.735561 0.706011\nvt 0.735561 0.706011\nvt 0.732586 0.713104\nvt 0.720357 0.707862\nvt 0.718135 0.714448\nvt 0.720357 0.707862\nvt 0.732586 0.713104\nvt 0.732586 0.713104\nvt 0.735561 0.706011\nvt 0.747383 0.711381\nvt 0.747383 0.711381\nvt 0.743875 0.718247\nvt 0.732586 0.713104\nvt 0.743875 0.718247\nvt 0.747383 0.711381\nvt 0.759975 0.717387\nvt 0.759975 0.717387\nvt 0.755972 0.723990\nvt 0.743875 0.718247\nvt 0.755972 0.723990\nvt 0.759975 0.717387\nvt 0.784229 0.730398\nvt 0.784229 0.730398\nvt 0.779324 0.736414\nvt 0.755972 0.723990\nvt 0.740668 0.724572\nvt 0.743875 0.718247\nvt 0.755972 0.723990\nvt 0.755972 0.723990\nvt 0.752303 0.730134\nvt 0.740668 0.724572\nvt 0.752303 0.730134\nvt 0.755972 0.723990\nvt 0.779324 0.736414\nvt 0.779324 0.736414\nvt 0.774819 0.742116\nvt 0.752303 0.730134\nvt 0.748923 0.736125\nvt 0.752303 0.730134\nvt 0.774819 0.742116\nvt 0.774819 0.742116\nvt 0.770621 0.747964\nvt 0.748923 0.736125\nvt 0.752303 0.730134\nvt 0.748923 0.736125\nvt 0.737750 0.730531\nvt 0.737750 0.730531\nvt 0.740668 0.724572\nvt 0.752303 0.730134\nvt 0.735147 0.736381\nvt 0.737750 0.730531\nvt 0.748923 0.736125\nvt 0.748923 0.736125\nvt 0.745937 0.742176\nvt 0.735147 0.736381\nvt 0.745937 0.742176\nvt 0.748923 0.736125\nvt 0.770621 0.747964\nvt 0.770621 0.747964\nvt 0.767028 0.753991\nvt 0.745937 0.742176\nvt 0.743158 0.749189\nvt 0.745937 0.742176\nvt 0.767028 0.753991\nvt 0.767028 0.753991\nvt 0.763732 0.761130\nvt 0.743158 0.749189\nvt 0.745937 0.742176\nvt 0.743158 0.749189\nvt 0.732737 0.742719\nvt 0.732737 0.742719\nvt 0.735147 0.736381\nvt 0.745937 0.742176\nvt 0.729938 0.749510\nvt 0.732737 0.742719\nvt 0.743158 0.749189\nvt 0.743158 0.749189\nvt 0.739681 0.756025\nvt 0.729938 0.749510\nvt 0.763732 0.761130\nvt 0.739681 0.756025\nvt 0.743158 0.749189\nvt 0.763732 0.761130\nvt 0.751301 0.766552\nvt 0.739681 0.756025\nvt 0.763732 0.761130\nvt 0.760237 0.769600\nvt 0.751301 0.766552\nvt 0.740668 0.724572\nvt 0.737750 0.730531\nvt 0.727395 0.725493\nvt 0.725117 0.731239\nvt 0.727395 0.725493\nvt 0.737750 0.730531\nvt 0.737750 0.730531\nvt 0.735147 0.736381\nvt 0.725117 0.731239\nvt 0.727395 0.725493\nvt 0.725117 0.731239\nvt 0.714089 0.726212\nvt 0.714089 0.726212\nvt 0.716091 0.720418\nvt 0.727395 0.725493\nvt 0.729863 0.719576\nvt 0.727395 0.725493\nvt 0.716091 0.720418\nvt 0.727395 0.725493\nvt 0.729863 0.719576\nvt 0.740668 0.724572\nvt 0.743875 0.718247\nvt 0.740668 0.724572\nvt 0.729863 0.719576\nvt 0.729863 0.719576\nvt 0.732586 0.713104\nvt 0.743875 0.718247\nvt 0.732586 0.713104\nvt 0.729863 0.719576\nvt 0.718135 0.714448\nvt 0.716091 0.720418\nvt 0.718135 0.714448\nvt 0.729863 0.719576\nvt 0.711852 0.732610\nvt 0.714089 0.726212\nvt 0.725117 0.731239\nvt 0.725117 0.731239\nvt 0.722823 0.737501\nvt 0.711852 0.732610\nvt 0.735147 0.736381\nvt 0.732737 0.742719\nvt 0.722823 0.737501\nvt 0.722823 0.737501\nvt 0.725117 0.731239\nvt 0.735147 0.736381\nvt 0.709316 0.739576\nvt 0.711852 0.732610\nvt 0.722823 0.737501\nvt 0.722823 0.737501\nvt 0.720256 0.744369\nvt 0.709316 0.739576\nvt 0.720256 0.744369\nvt 0.722823 0.737501\nvt 0.732737 0.742719\nvt 0.732737 0.742719\nvt 0.729938 0.749510\nvt 0.720256 0.744369\nvt 0.713949 0.759056\nvt 0.720256 0.744369\nvt 0.729938 0.749510\nvt 0.729938 0.749510\nvt 0.722913 0.763539\nvt 0.713949 0.759056\nvt 0.720256 0.744369\nvt 0.713949 0.759056\nvt 0.704686 0.754396\nvt 0.704686 0.754396\nvt 0.709316 0.739576\nvt 0.720256 0.744369\nvt 0.729275 0.763459\nvt 0.722913 0.763539\nvt 0.729938 0.749510\nvt 0.729938 0.749510\nvt 0.739681 0.756025\nvt 0.729275 0.763459\nvt 0.729275 0.763459\nvt 0.739681 0.756025\nvt 0.751301 0.766552\nvt 0.877121 0.751674\nvt 0.871299 0.745868\nvt 0.891792 0.716338\nvt 0.891792 0.716338\nvt 0.897529 0.722064\nvt 0.877121 0.751674\nvt 0.877121 0.751674\nvt 0.897529 0.722064\nvt 0.902867 0.727293\nvt 0.902867 0.727293\nvt 0.882527 0.757037\nvt 0.877121 0.751674\nvt 0.887921 0.762011\nvt 0.882527 0.757037\nvt 0.902867 0.727293\nvt 0.902867 0.727293\nvt 0.908044 0.732179\nvt 0.887921 0.762011\nvt 0.887921 0.762011\nvt 0.908044 0.732179\nvt 0.913326 0.736855\nvt 0.913326 0.736855\nvt 0.893553 0.766565\nvt 0.887921 0.762011\nvt 0.899675 0.770727\nvt 0.893553 0.766565\nvt 0.913326 0.736855\nvt 0.913326 0.736855\nvt 0.919210 0.741338\nvt 0.899675 0.770727\nvt 0.899675 0.770727\nvt 0.919210 0.741338\nvt 0.925385 0.745447\nvt 0.925385 0.745447\nvt 0.905354 0.774389\nvt 0.899675 0.770727\nvt 0.912399 0.779700\nvt 0.905354 0.774389\nvt 0.925385 0.745447\nvt 0.925385 0.745447\nvt 0.936991 0.751781\nvt 0.912399 0.779700\nvt 0.918057 0.782637\nvt 0.912399 0.779700\nvt 0.936991 0.751781\nvt 0.936991 0.751781\nvt 0.940621 0.758986\nvt 0.918057 0.782637\nvt 0.922192 0.783983\nvt 0.918057 0.782637\nvt 0.940621 0.758986\nvt 0.940621 0.758986\nvt 0.943906 0.761791\nvt 0.922192 0.783983\nvt 0.922192 0.783983\nvt 0.943906 0.761791\nvt 0.948144 0.764621\nvt 0.948144 0.764621\nvt 0.926850 0.785548\nvt 0.922192 0.783983\nvt 0.887921 0.762011\nvt 0.893553 0.766565\nvt 0.886839 0.777037\nvt 0.893553 0.766565\nvt 0.899675 0.770727\nvt 0.893010 0.781164\nvt 0.893010 0.781164\nvt 0.886839 0.777037\nvt 0.893553 0.766565\nvt 0.886839 0.777037\nvt 0.893010 0.781164\nvt 0.887916 0.789134\nvt 0.887916 0.789134\nvt 0.881688 0.784916\nvt 0.886839 0.777037\nvt 0.881141 0.772451\nvt 0.886839 0.777037\nvt 0.881688 0.784916\nvt 0.881688 0.784916\nvt 0.875955 0.780202\nvt 0.881141 0.772451\nvt 0.875677 0.767408\nvt 0.881141 0.772451\nvt 0.875955 0.780202\nvt 0.881141 0.772451\nvt 0.875677 0.767408\nvt 0.882527 0.757037\nvt 0.877121 0.751674\nvt 0.882527 0.757037\nvt 0.875677 0.767408\nvt 0.875677 0.767408\nvt 0.870244 0.762015\nvt 0.877121 0.751674\nvt 0.871299 0.745868\nvt 0.877121 0.751674\nvt 0.870244 0.762015\nvt 0.870244 0.762015\nvt 0.864383 0.756226\nvt 0.871299 0.745868\nvt 0.864383 0.756226\nvt 0.870244 0.762015\nvt 0.865082 0.769568\nvt 0.865082 0.769568\nvt 0.859243 0.763716\nvt 0.864383 0.756226\nvt 0.870499 0.775051\nvt 0.865082 0.769568\nvt 0.870244 0.762015\nvt 0.870244 0.762015\nvt 0.875677 0.767408\nvt 0.870499 0.775051\nvt 0.875955 0.780202\nvt 0.870499 0.775051\nvt 0.875677 0.767408\nvt 0.882527 0.757037\nvt 0.887921 0.762011\nvt 0.881141 0.772451\nvt 0.886839 0.777037\nvt 0.881141 0.772451\nvt 0.887921 0.762011\nvt 0.892086 0.791682\nvt 0.887916 0.789134\nvt 0.893010 0.781164\nvt 0.893010 0.781164\nvt 0.897983 0.785309\nvt 0.892086 0.791682\nvt 0.887244 0.805952\nvt 0.892086 0.791682\nvt 0.897983 0.785309\nvt 0.897983 0.785309\nvt 0.899101 0.793629\nvt 0.887244 0.805952\nvt 0.904557 0.797185\nvt 0.887244 0.805952\nvt 0.899101 0.793629\nvt 0.899101 0.793629\nvt 0.909243 0.791650\nvt 0.904557 0.797185\nvt 0.909243 0.791650\nvt 0.899101 0.793629\nvt 0.912399 0.779700\nvt 0.912399 0.779700\nvt 0.918057 0.782637\nvt 0.909243 0.791650\nvt 0.914280 0.792201\nvt 0.909243 0.791650\nvt 0.918057 0.782637\nvt 0.918057 0.782637\nvt 0.922192 0.783983\nvt 0.914280 0.792201\nvt 0.909243 0.791650\nvt 0.914280 0.792201\nvt 0.907546 0.798824\nvt 0.907546 0.798824\nvt 0.904557 0.797185\nvt 0.909243 0.791650\nvt 0.912766 0.800485\nvt 0.907546 0.798824\nvt 0.914280 0.792201\nvt 0.914280 0.792201\nvt 0.919168 0.793617\nvt 0.912766 0.800485\nvt 0.919168 0.793617\nvt 0.914280 0.792201\nvt 0.922192 0.783983\nvt 0.922192 0.783983\nvt 0.926850 0.785548\nvt 0.919168 0.793617\nvt 0.905354 0.774389\nvt 0.912399 0.779700\nvt 0.899101 0.793629\nvt 0.899101 0.793629\nvt 0.897983 0.785309\nvt 0.905354 0.774389\nvt 0.899675 0.770727\nvt 0.905354 0.774389\nvt 0.897983 0.785309\nvt 0.897983 0.785309\nvt 0.893010 0.781164\nvt 0.899675 0.770727\nvt 0.894740 0.809309\nvt 0.887244 0.805952\nvt 0.904557 0.797185\nvt 0.904557 0.797185\nvt 0.907546 0.798824\nvt 0.894740 0.809309\nvt 0.894740 0.809309\nvt 0.907546 0.798824\nvt 0.912766 0.800485\nvt 0.912766 0.800485\nvt 0.901144 0.812114\nvt 0.894740 0.809309\nvt 0.906283 0.814663\nvt 0.901144 0.812114\nvt 0.912766 0.800485\nvt 0.912766 0.800485\nvt 0.917897 0.802941\nvt 0.906283 0.814663\nvt 0.917897 0.802941\nvt 0.912766 0.800485\nvt 0.919168 0.793617\nvt 0.911240 0.817463\nvt 0.906283 0.814663\nvt 0.917897 0.802941\nvt 0.917897 0.802941\nvt 0.923211 0.806018\nvt 0.911240 0.817463\nvt 0.924258 0.795993\nvt 0.919168 0.793617\nvt 0.926850 0.785548\nvt 0.919168 0.793617\nvt 0.924258 0.795993\nvt 0.917897 0.802941\nvt 0.923211 0.806018\nvt 0.917897 0.802941\nvt 0.924258 0.795993\nvt 0.926850 0.785548\nvt 0.931948 0.788093\nvt 0.924258 0.795993\nvt 0.931948 0.788093\nvt 0.926850 0.785548\nvt 0.948144 0.764621\nvt 0.948144 0.764621\nvt 0.953624 0.768590\nvt 0.931948 0.788093\nvt 0.953624 0.768590\nvt 0.948144 0.764621\nvt 0.967470 0.745998\nvt 0.967470 0.745998\nvt 0.948144 0.764621\nvt 0.943906 0.761791\nvt 0.943906 0.761791\nvt 0.963507 0.742558\nvt 0.967470 0.745998\nvt 0.960257 0.739346\nvt 0.963507 0.742558\nvt 0.943906 0.761791\nvt 0.943906 0.761791\nvt 0.940621 0.758986\nvt 0.960257 0.739346\nvt 0.955287 0.733314\nvt 0.960257 0.739346\nvt 0.940621 0.758986\nvt 0.940621 0.758986\nvt 0.936991 0.751781\nvt 0.955287 0.733314\nvt 0.955287 0.733314\nvt 0.936991 0.751781\nvt 0.925385 0.745447\nvt 0.925385 0.745447\nvt 0.944366 0.723340\nvt 0.955287 0.733314\nvt 0.944366 0.723340\nvt 0.925385 0.745447\nvt 0.919210 0.741338\nvt 0.919210 0.741338\nvt 0.938217 0.718446\nvt 0.944366 0.723340\nvt 0.931932 0.713836\nvt 0.938217 0.718446\nvt 0.919210 0.741338\nvt 0.919210 0.741338\nvt 0.913326 0.736855\nvt 0.931932 0.713836\nvt 0.931932 0.713836\nvt 0.913326 0.736855\nvt 0.908044 0.732179\nvt 0.908044 0.732179\nvt 0.925769 0.709657\nvt 0.931932 0.713836\nvt 0.919582 0.705826\nvt 0.925769 0.709657\nvt 0.908044 0.732179\nvt 0.908044 0.732179\nvt 0.902867 0.727293\nvt 0.919582 0.705826\nvt 0.919582 0.705826\nvt 0.902867 0.727293\nvt 0.897529 0.722064\nvt 0.897529 0.722064\nvt 0.913578 0.702244\nvt 0.919582 0.705826\nvt 0.907395 0.698518\nvt 0.913578 0.702244\nvt 0.897529 0.722064\nvt 0.897529 0.722064\nvt 0.891792 0.716338\nvt 0.907395 0.698518\nvt 0.362410 0.441910\nvt 0.366809 0.448499\nvt 0.364530 0.449857\nvt 0.364530 0.449857\nvt 0.360156 0.443398\nvt 0.362410 0.441910\nvt 0.362410 0.441910\nvt 0.360156 0.443398\nvt 0.355956 0.437794\nvt 0.355956 0.437794\nvt 0.358027 0.436004\nvt 0.362410 0.441910\nvt 0.353088 0.431105\nvt 0.358027 0.436004\nvt 0.355956 0.437794\nvt 0.355956 0.437794\nvt 0.351490 0.433348\nvt 0.353088 0.431105\nvt 0.353088 0.431105\nvt 0.351490 0.433348\nvt 0.346334 0.430460\nvt 0.346334 0.430460\nvt 0.347062 0.427803\nvt 0.353088 0.431105\nvt 0.340094 0.426981\nvt 0.347062 0.427803\nvt 0.346334 0.430460\nvt 0.346334 0.430460\nvt 0.340523 0.429699\nvt 0.340094 0.426981\nvt 0.340094 0.426981\nvt 0.340523 0.429699\nvt 0.334704 0.431575\nvt 0.334704 0.431575\nvt 0.333202 0.429257\nvt 0.340094 0.426981\nvt 0.327581 0.434082\nvt 0.333202 0.429257\nvt 0.334704 0.431575\nvt 0.334704 0.431575\nvt 0.329754 0.435802\nvt 0.327581 0.434082\nvt 0.327581 0.434082\nvt 0.329754 0.435802\nvt 0.326303 0.440952\nvt 0.326303 0.440952\nvt 0.323844 0.439684\nvt 0.327581 0.434082\nvt 0.321646 0.444481\nvt 0.323844 0.439684\nvt 0.326303 0.440952\nvt 0.326303 0.440952\nvt 0.324206 0.445524\nvt 0.321646 0.444481\nvt 0.321646 0.444481\nvt 0.324206 0.445524\nvt 0.322420 0.450123\nvt 0.322420 0.450123\nvt 0.319828 0.449160\nvt 0.321646 0.444481\nvt 0.675778 0.743378\nvt 0.672684 0.754033\nvt 0.647780 0.745524\nvt 0.647780 0.745524\nvt 0.649673 0.737574\nvt 0.675778 0.743378\nvt 0.647191 0.749521\nvt 0.647780 0.745524\nvt 0.672684 0.754033\nvt 0.672684 0.754033\nvt 0.671021 0.759065\nvt 0.647191 0.749521\nvt 0.647191 0.749521\nvt 0.671021 0.759065\nvt 0.669279 0.763960\nvt 0.669279 0.763960\nvt 0.646544 0.754092\nvt 0.647191 0.749521\nvt 0.645371 0.760810\nvt 0.646544 0.754092\nvt 0.669279 0.763960\nvt 0.669279 0.763960\nvt 0.667544 0.770384\nvt 0.645371 0.760810\nvt 0.645371 0.760810\nvt 0.667544 0.770384\nvt 0.667544 0.770384\nvt 0.665715 0.778010\nvt 0.967470 0.745998\nvt 0.973106 0.750435\nvt 0.953624 0.768590\nvt 0.959996 0.773384\nvt 0.953624 0.768590\nvt 0.973106 0.750435\nvt 0.973106 0.750435\nvt 0.959996 0.773384\nvt 0.953624 0.768590\nvt 0.959996 0.773384\nvt 0.937508 0.791373\nvt 0.937508 0.791373\nvt 0.931948 0.788093\nvt 0.953624 0.768590\nvt 0.931948 0.788093\nvt 0.937508 0.791373\nvt 0.929665 0.799065\nvt 0.929665 0.799065\nvt 0.924258 0.795993\nvt 0.931948 0.788093\nvt 0.924258 0.795993\nvt 0.929665 0.799065\nvt 0.923211 0.806018\nvt 0.361311 0.435373\nvt 0.356398 0.428426\nvt 0.360742 0.425400\nvt 0.360742 0.425400\nvt 0.365691 0.432433\nvt 0.361311 0.435373\nvt 0.365691 0.432433\nvt 0.360742 0.425400\nvt 0.363086 0.423761\nvt 0.363086 0.423761\nvt 0.367718 0.430744\nvt 0.365691 0.432433\nvt 0.370265 0.428192\nvt 0.367718 0.430744\nvt 0.363086 0.423761\nvt 0.367718 0.430744\nvt 0.370265 0.428192\nvt 0.374760 0.434206\nvt 0.374760 0.434206\nvt 0.372386 0.436929\nvt 0.367718 0.430744\nvt 0.372386 0.436929\nvt 0.374760 0.434206\nvt 0.379901 0.439199\nvt 0.379901 0.439199\nvt 0.377733 0.442160\nvt 0.372386 0.436929\nvt 0.377733 0.442160\nvt 0.379901 0.439199\nvt 0.385526 0.443412\nvt 0.385526 0.443412\nvt 0.383551 0.446622\nvt 0.377733 0.442160\nvt 0.383551 0.446622\nvt 0.385526 0.443412\nvt 0.391648 0.446893\nvt 0.391648 0.446893\nvt 0.389969 0.450292\nvt 0.383551 0.446622\nvt 0.389969 0.450292\nvt 0.391648 0.446893\nvt 0.398359 0.449513\nvt 0.398359 0.449513\nvt 0.397152 0.453043\nvt 0.389969 0.450292\nvt 0.397152 0.453043\nvt 0.398359 0.449513\nvt 0.405576 0.451269\nvt 0.405576 0.451269\nvt 0.404976 0.454856\nvt 0.397152 0.453043\nvt 0.404976 0.454856\nvt 0.405576 0.451269\nvt 0.412384 0.452203\nvt 0.412384 0.452203\nvt 0.412383 0.455851\nvt 0.404976 0.454856\nvt 0.412383 0.455851\nvt 0.412384 0.452203\nvt 0.417807 0.451762\nvt 0.417807 0.451762\nvt 0.418246 0.455455\nvt 0.412383 0.455851\nvt 0.418246 0.455455\nvt 0.417807 0.451762\nvt 0.422685 0.450493\nvt 0.422685 0.450493\nvt 0.423729 0.454217\nvt 0.418246 0.455455\nvt 0.418246 0.455455\nvt 0.423729 0.454217\nvt 0.424370 0.457247\nvt 0.424370 0.457247\nvt 0.418554 0.458118\nvt 0.418246 0.455455\nvt 0.418554 0.458118\nvt 0.424370 0.457247\nvt 0.418554 0.458118\nvt 0.412414 0.458439\nvt 0.412383 0.455851\nvt 0.418246 0.455455\nvt 0.418246 0.455455\nvt 0.418554 0.458118\nvt 0.412414 0.458439\nvt 0.404976 0.454856\nvt 0.412383 0.455851\nvt 0.412414 0.458439\nvt 0.412414 0.458439\nvt 0.418554 0.458118\nvt 0.418782 0.463441\nvt 0.418782 0.463441\nvt 0.412569 0.463696\nvt 0.412414 0.458439\nvt 0.412414 0.458439\nvt 0.404619 0.457526\nvt 0.404976 0.454856\nvt 0.404163 0.462899\nvt 0.404619 0.457526\nvt 0.412414 0.458439\nvt 0.412414 0.458439\nvt 0.412081 0.463695\nvt 0.404163 0.462899\nvt 0.396415 0.455623\nvt 0.404619 0.457526\nvt 0.403821 0.462861\nvt 0.403821 0.462861\nvt 0.395441 0.460955\nvt 0.396415 0.455623\nvt 0.404976 0.454856\nvt 0.404619 0.457526\nvt 0.396415 0.455623\nvt 0.396415 0.455623\nvt 0.397152 0.453043\nvt 0.404976 0.454856\nvt 0.389969 0.450292\nvt 0.397152 0.453043\nvt 0.396415 0.455623\nvt 0.396415 0.455623\nvt 0.388913 0.452735\nvt 0.389969 0.450292\nvt 0.387187 0.457885\nvt 0.388913 0.452735\nvt 0.396415 0.455623\nvt 0.396415 0.455623\nvt 0.394974 0.460856\nvt 0.387187 0.457885\nvt 0.389969 0.450292\nvt 0.388913 0.452735\nvt 0.382185 0.448930\nvt 0.382185 0.448930\nvt 0.388913 0.452735\nvt 0.386728 0.457713\nvt 0.386728 0.457713\nvt 0.379685 0.453734\nvt 0.382185 0.448930\nvt 0.382185 0.448930\nvt 0.383551 0.446622\nvt 0.389969 0.450292\nvt 0.377733 0.442160\nvt 0.383551 0.446622\nvt 0.382185 0.448930\nvt 0.382185 0.448930\nvt 0.376107 0.444230\nvt 0.377733 0.442160\nvt 0.372842 0.448513\nvt 0.376107 0.444230\nvt 0.382185 0.448930\nvt 0.382185 0.448930\nvt 0.379182 0.453434\nvt 0.372842 0.448513\nvt 0.377733 0.442160\nvt 0.376107 0.444230\nvt 0.370575 0.438731\nvt 0.370575 0.438731\nvt 0.376107 0.444230\nvt 0.372456 0.448176\nvt 0.372456 0.448176\nvt 0.366778 0.442414\nvt 0.370575 0.438731\nvt 0.370575 0.438731\nvt 0.372386 0.436929\nvt 0.377733 0.442160\nvt 0.367718 0.430744\nvt 0.372386 0.436929\nvt 0.370575 0.438731\nvt 0.370575 0.438731\nvt 0.365691 0.432433\nvt 0.367718 0.430744\nvt 0.361438 0.435572\nvt 0.365691 0.432433\nvt 0.370575 0.438731\nvt 0.370575 0.438731\nvt 0.366440 0.442004\nvt 0.361438 0.435572\nvt 0.362984 0.415928\nvt 0.361415 0.412479\nvt 0.368600 0.409337\nvt 0.368600 0.409337\nvt 0.369436 0.412910\nvt 0.362984 0.415928\nvt 0.361415 0.412479\nvt 0.362984 0.415928\nvt 0.356525 0.420227\nvt 0.356525 0.420227\nvt 0.354313 0.417024\nvt 0.361415 0.412479\nvt 0.369436 0.412910\nvt 0.368600 0.409337\nvt 0.376187 0.408821\nvt 0.376187 0.408821\nvt 0.376059 0.412329\nvt 0.369436 0.412910\nvt 0.376059 0.412329\nvt 0.376187 0.408821\nvt 0.383425 0.410596\nvt 0.383425 0.410596\nvt 0.382343 0.413850\nvt 0.376059 0.412329\nvt 0.382343 0.413850\nvt 0.383425 0.410596\nvt 0.389737 0.414626\nvt 0.389737 0.414626\nvt 0.387860 0.417364\nvt 0.382343 0.413850\nvt 0.387860 0.417364\nvt 0.389737 0.414626\nvt 0.394945 0.420399\nvt 0.394945 0.420399\nvt 0.392399 0.422391\nvt 0.387860 0.417364\nvt 0.392399 0.422391\nvt 0.394945 0.420399\nvt 0.398609 0.427658\nvt 0.398609 0.427658\nvt 0.395551 0.428634\nvt 0.392399 0.422391\nvt 0.395551 0.428634\nvt 0.398609 0.427658\nvt 0.400515 0.434999\nvt 0.400515 0.434999\nvt 0.397115 0.434894\nvt 0.395551 0.428634\nvt 0.397115 0.434894\nvt 0.400515 0.434999\nvt 0.400105 0.440949\nvt 0.400105 0.440949\nvt 0.396628 0.439972\nvt 0.397115 0.434894\nvt 0.396628 0.439972\nvt 0.400105 0.440949\nvt 0.398459 0.446374\nvt 0.398459 0.446374\nvt 0.395059 0.444616\nvt 0.396628 0.439972\nvt 0.855369 0.784109\nvt 0.849813 0.777858\nvt 0.851733 0.774958\nvt 0.851733 0.774958\nvt 0.857417 0.781036\nvt 0.855369 0.784109\nvt 0.855369 0.784109\nvt 0.857417 0.781036\nvt 0.862713 0.786744\nvt 0.862713 0.786744\nvt 0.860540 0.790003\nvt 0.855369 0.784109\nvt 0.865813 0.795623\nvt 0.860540 0.790003\nvt 0.862713 0.786744\nvt 0.862713 0.786744\nvt 0.868093 0.792138\nvt 0.865813 0.795623\nvt 0.865813 0.795623\nvt 0.868093 0.792138\nvt 0.873842 0.796998\nvt 0.873842 0.796998\nvt 0.871488 0.800663\nvt 0.865813 0.795623\nvt 0.877632 0.805122\nvt 0.871488 0.800663\nvt 0.873842 0.796998\nvt 0.873842 0.796998\nvt 0.880016 0.801399\nvt 0.877632 0.805122\nvt 0.877632 0.805122\nvt 0.880016 0.801399\nvt 0.887244 0.805952\nvt 0.887244 0.805952\nvt 0.884421 0.809181\nvt 0.877632 0.805122\nvt 0.891881 0.812800\nvt 0.884421 0.809181\nvt 0.887244 0.805952\nvt 0.887244 0.805952\nvt 0.894740 0.809309\nvt 0.891881 0.812800\nvt 0.891881 0.812800\nvt 0.894740 0.809309\nvt 0.901144 0.812114\nvt 0.901144 0.812114\nvt 0.898924 0.815964\nvt 0.891881 0.812800\nvt 0.904408 0.818487\nvt 0.898924 0.815964\nvt 0.901144 0.812114\nvt 0.901144 0.812114\nvt 0.906283 0.814663\nvt 0.904408 0.818487\nvt 0.904408 0.818487\nvt 0.906283 0.814663\nvt 0.911240 0.817463\nvt 0.911240 0.817463\nvt 0.909467 0.821001\nvt 0.904408 0.818487\nvt 0.881688 0.784916\nvt 0.873842 0.796998\nvt 0.868093 0.792138\nvt 0.880016 0.801399\nvt 0.873842 0.796998\nvt 0.881688 0.784916\nvt 0.868093 0.792138\nvt 0.875955 0.780202\nvt 0.881688 0.784916\nvt 0.881688 0.784916\nvt 0.887916 0.789134\nvt 0.880016 0.801399\nvt 0.887244 0.805952\nvt 0.880016 0.801399\nvt 0.887916 0.789134\nvt 0.887916 0.789134\nvt 0.892086 0.791682\nvt 0.887244 0.805952\nvt 0.870499 0.775051\nvt 0.875955 0.780202\nvt 0.868093 0.792138\nvt 0.868093 0.792138\nvt 0.862713 0.786744\nvt 0.870499 0.775051\nvt 0.870499 0.775051\nvt 0.862713 0.786744\nvt 0.857417 0.781036\nvt 0.857417 0.781036\nvt 0.865082 0.769568\nvt 0.870499 0.775051\nvt 0.859243 0.763716\nvt 0.865082 0.769568\nvt 0.857417 0.781036\nvt 0.857417 0.781036\nvt 0.851733 0.774958\nvt 0.859243 0.763716\nvt 0.012627 0.427406\nvt 0.003508 0.427373\nvt 0.003330 0.400494\nvt 0.003330 0.400494\nvt 0.012461 0.400047\nvt 0.012627 0.427406\nvt 0.012627 0.427406\nvt 0.012461 0.400047\nvt 0.020988 0.399752\nvt 0.020988 0.399752\nvt 0.021130 0.427566\nvt 0.012627 0.427406\nvt 0.029423 0.427976\nvt 0.021130 0.427566\nvt 0.020988 0.399752\nvt 0.020988 0.399752\nvt 0.029300 0.399750\nvt 0.029423 0.427976\nvt 0.029423 0.427976\nvt 0.029300 0.399750\nvt 0.037474 0.400006\nvt 0.037474 0.400006\nvt 0.039730 0.432583\nvt 0.029423 0.427976\nvt 0.046257 0.431935\nvt 0.039730 0.432583\nvt 0.037474 0.400006\nvt 0.037474 0.400006\nvt 0.045669 0.400377\nvt 0.046257 0.431935\nvt 0.046257 0.431935\nvt 0.045669 0.400377\nvt 0.054193 0.400864\nvt 0.054193 0.400864\nvt 0.054789 0.432361\nvt 0.046257 0.431935\nvt 0.063669 0.432624\nvt 0.054789 0.432361\nvt 0.054193 0.400864\nvt 0.054193 0.400864\nvt 0.063068 0.401395\nvt 0.063669 0.432624\nvt 0.063669 0.432624\nvt 0.063068 0.401395\nvt 0.071322 0.401820\nvt 0.071322 0.401820\nvt 0.071921 0.432772\nvt 0.063669 0.432624\nvt 0.078404 0.432860\nvt 0.071921 0.432772\nvt 0.071322 0.401820\nvt 0.071322 0.401820\nvt 0.077805 0.401999\nvt 0.078404 0.432860\nvt 0.078404 0.432860\nvt 0.077805 0.401999\nvt 0.083961 0.402046\nvt 0.083961 0.402046\nvt 0.084560 0.432907\nvt 0.078404 0.432860\nvt 0.029688 0.438889\nvt 0.029423 0.427976\nvt 0.039730 0.432583\nvt 0.039730 0.432583\nvt 0.038358 0.439543\nvt 0.029688 0.438889\nvt 0.029423 0.427976\nvt 0.029688 0.438889\nvt 0.021376 0.438431\nvt 0.021376 0.438431\nvt 0.021130 0.427566\nvt 0.029423 0.427976\nvt 0.021130 0.427566\nvt 0.021376 0.438431\nvt 0.012848 0.438209\nvt 0.012848 0.438209\nvt 0.012627 0.427406\nvt 0.021130 0.427566\nvt 0.012627 0.427406\nvt 0.012848 0.438209\nvt 0.003721 0.438116\nvt 0.003721 0.438116\nvt 0.003508 0.427373\nvt 0.012627 0.427406\nvt 0.363086 0.423761\nvt 0.365970 0.421554\nvt 0.370265 0.428192\nvt 0.359732 0.335663\nvt 0.366593 0.336441\nvt 0.365859 0.340059\nvt 0.365859 0.340059\nvt 0.359192 0.339570\nvt 0.359732 0.335663\nvt 0.359732 0.335663\nvt 0.359192 0.339570\nvt 0.352814 0.339029\nvt 0.352814 0.339029\nvt 0.353252 0.334905\nvt 0.359732 0.335663\nvt 0.346935 0.334619\nvt 0.353252 0.334905\nvt 0.352814 0.339029\nvt 0.352814 0.339029\nvt 0.346511 0.338651\nvt 0.346935 0.334619\nvt 0.346935 0.334619\nvt 0.346511 0.338651\nvt 0.339993 0.338437\nvt 0.339993 0.338437\nvt 0.340409 0.334454\nvt 0.346935 0.334619\nvt 0.333478 0.334104\nvt 0.340409 0.334454\nvt 0.339993 0.338437\nvt 0.339993 0.338437\nvt 0.333095 0.338135\nvt 0.333478 0.334104\nvt 0.333478 0.334104\nvt 0.333095 0.338135\nvt 0.325877 0.337969\nvt 0.325877 0.337969\nvt 0.326190 0.333886\nvt 0.333478 0.334104\nvt 0.311658 0.333726\nvt 0.326190 0.333886\nvt 0.325877 0.337969\nvt 0.325877 0.337969\nvt 0.311592 0.337207\nvt 0.311658 0.333726\nvt 0.303172 0.332679\nvt 0.311658 0.333726\nvt 0.311592 0.337207\nvt 0.311592 0.337207\nvt 0.303029 0.336864\nvt 0.303172 0.332679\nvt 0.299413 0.332769\nvt 0.303172 0.332679\nvt 0.303029 0.336864\nvt 0.303029 0.336864\nvt 0.299221 0.336971\nvt 0.299413 0.332769\nvt 0.299413 0.332769\nvt 0.299221 0.336971\nvt 0.294869 0.337437\nvt 0.294869 0.337437\nvt 0.295065 0.333378\nvt 0.299413 0.332769\nvt 0.288659 0.334490\nvt 0.295065 0.333378\nvt 0.294869 0.337437\nvt 0.294869 0.337437\nvt 0.288426 0.338413\nvt 0.288659 0.334490\nvt 0.288659 0.334490\nvt 0.288426 0.338413\nvt 0.280961 0.340014\nvt 0.280961 0.340014\nvt 0.281238 0.336028\nvt 0.288659 0.334490\nvt 0.359192 0.339570\nvt 0.358773 0.341797\nvt 0.352496 0.341294\nvt 0.352496 0.341294\nvt 0.352814 0.339029\nvt 0.359192 0.339570\nvt 0.358773 0.341797\nvt 0.359192 0.339570\nvt 0.365859 0.340059\nvt 0.365859 0.340059\nvt 0.365749 0.342235\nvt 0.358773 0.341797\nvt 0.352814 0.339029\nvt 0.352496 0.341294\nvt 0.346368 0.340854\nvt 0.346368 0.340854\nvt 0.346511 0.338651\nvt 0.352814 0.339029\nvt 0.346511 0.338651\nvt 0.346368 0.340854\nvt 0.339974 0.340687\nvt 0.339974 0.340687\nvt 0.339993 0.338437\nvt 0.346511 0.338651\nvt 0.339993 0.338437\nvt 0.339974 0.340687\nvt 0.333133 0.340368\nvt 0.333133 0.340368\nvt 0.333095 0.338135\nvt 0.339993 0.338437\nvt 0.333095 0.338135\nvt 0.333133 0.340368\nvt 0.325993 0.340287\nvt 0.325993 0.340287\nvt 0.325877 0.337969\nvt 0.333095 0.338135\nvt 0.311592 0.337207\nvt 0.325877 0.337969\nvt 0.325993 0.340287\nvt 0.325993 0.340287\nvt 0.311652 0.339065\nvt 0.311592 0.337207\nvt 0.303029 0.336864\nvt 0.311592 0.337207\nvt 0.311652 0.339065\nvt 0.311652 0.339065\nvt 0.303065 0.339162\nvt 0.303029 0.336864\nvt 0.303029 0.336864\nvt 0.303065 0.339162\nvt 0.299484 0.338979\nvt 0.299484 0.338979\nvt 0.299221 0.336971\nvt 0.303029 0.336864\nvt 0.299221 0.336971\nvt 0.299484 0.338979\nvt 0.295262 0.339480\nvt 0.295262 0.339480\nvt 0.294869 0.337437\nvt 0.299221 0.336971\nvt 0.294869 0.337437\nvt 0.295262 0.339480\nvt 0.288856 0.340436\nvt 0.288856 0.340436\nvt 0.288426 0.338413\nvt 0.294869 0.337437\nvt 0.288426 0.338413\nvt 0.288856 0.340436\nvt 0.281148 0.342452\nvt 0.281148 0.342452\nvt 0.280961 0.340014\nvt 0.288426 0.338413\nvt 0.359732 0.335663\nvt 0.359810 0.333431\nvt 0.366903 0.334289\nvt 0.366903 0.334289\nvt 0.366593 0.336441\nvt 0.359732 0.335663\nvt 0.359810 0.333431\nvt 0.359732 0.335663\nvt 0.353252 0.334905\nvt 0.353252 0.334905\nvt 0.353420 0.332518\nvt 0.359810 0.333431\nvt 0.353420 0.332518\nvt 0.353252 0.334905\nvt 0.346935 0.334619\nvt 0.346935 0.334619\nvt 0.347151 0.332408\nvt 0.353420 0.332518\nvt 0.347151 0.332408\nvt 0.346935 0.334619\nvt 0.340409 0.334454\nvt 0.340409 0.334454\nvt 0.340651 0.332324\nvt 0.347151 0.332408\nvt 0.340651 0.332324\nvt 0.340409 0.334454\nvt 0.333478 0.334104\nvt 0.333478 0.334104\nvt 0.333711 0.331816\nvt 0.340651 0.332324\nvt 0.333711 0.331816\nvt 0.333478 0.334104\nvt 0.326190 0.333886\nvt 0.326190 0.333886\nvt 0.326468 0.331589\nvt 0.333711 0.331816\nvt 0.326468 0.331589\nvt 0.326190 0.333886\nvt 0.311658 0.333726\nvt 0.311658 0.333726\nvt 0.311996 0.331788\nvt 0.326468 0.331589\nvt 0.311996 0.331788\nvt 0.311658 0.333726\nvt 0.303172 0.332679\nvt 0.303172 0.332679\nvt 0.303297 0.330348\nvt 0.311996 0.331788\nvt 0.303297 0.330348\nvt 0.303172 0.332679\nvt 0.299413 0.332769\nvt 0.299413 0.332769\nvt 0.299485 0.330602\nvt 0.303297 0.330348\nvt 0.299485 0.330602\nvt 0.299413 0.332769\nvt 0.295065 0.333378\nvt 0.295065 0.333378\nvt 0.295029 0.331221\nvt 0.299485 0.330602\nvt 0.295029 0.331221\nvt 0.295065 0.333378\nvt 0.288659 0.334490\nvt 0.288659 0.334490\nvt 0.288495 0.332309\nvt 0.295029 0.331221\nvt 0.288495 0.332309\nvt 0.288659 0.334490\nvt 0.281238 0.336028\nvt 0.281238 0.336028\nvt 0.280645 0.333842\nvt 0.288495 0.332309\nvt 0.821818 0.757285\nvt 0.815674 0.762104\nvt 0.802274 0.751181\nvt 0.802274 0.751181\nvt 0.808012 0.745906\nvt 0.821818 0.757285\nvt 0.808012 0.745906\nvt 0.802274 0.751181\nvt 0.790534 0.743223\nvt 0.790534 0.743223\nvt 0.795857 0.737533\nvt 0.808012 0.745906\nvt 0.785650 0.748678\nvt 0.790534 0.743223\nvt 0.802274 0.751181\nvt 0.802274 0.751181\nvt 0.797068 0.756314\nvt 0.785650 0.748678\nvt 0.797068 0.756314\nvt 0.802274 0.751181\nvt 0.815674 0.762104\nvt 0.815674 0.762104\nvt 0.810165 0.766973\nvt 0.797068 0.756314\nvt 0.792224 0.761900\nvt 0.797068 0.756314\nvt 0.810165 0.766973\nvt 0.810165 0.766973\nvt 0.805035 0.772515\nvt 0.792224 0.761900\nvt 0.797068 0.756314\nvt 0.792224 0.761900\nvt 0.781100 0.754423\nvt 0.781100 0.754423\nvt 0.785650 0.748678\nvt 0.797068 0.756314\nvt 0.777188 0.760277\nvt 0.781100 0.754423\nvt 0.792224 0.761900\nvt 0.792224 0.761900\nvt 0.787979 0.767596\nvt 0.777188 0.760277\nvt 0.787979 0.767596\nvt 0.792224 0.761900\nvt 0.805035 0.772515\nvt 0.805035 0.772515\nvt 0.800458 0.778188\nvt 0.787979 0.767596\nvt 0.784137 0.773557\nvt 0.787979 0.767596\nvt 0.800458 0.778188\nvt 0.800458 0.778188\nvt 0.796293 0.783786\nvt 0.784137 0.773557\nvt 0.787979 0.767596\nvt 0.784137 0.773557\nvt 0.773696 0.766758\nvt 0.773696 0.766758\nvt 0.777188 0.760277\nvt 0.787979 0.767596\nvt 0.769695 0.773718\nvt 0.773696 0.766758\nvt 0.784137 0.773557\nvt 0.784137 0.773557\nvt 0.779901 0.780255\nvt 0.769695 0.773718\nvt 0.779901 0.780255\nvt 0.784137 0.773557\nvt 0.796293 0.783786\nvt 0.796293 0.783786\nvt 0.790063 0.787107\nvt 0.779901 0.780255\nvt 0.820488 0.788538\nvt 0.805035 0.772515\nvt 0.810165 0.766973\nvt 0.810165 0.766973\nvt 0.825907 0.782904\nvt 0.820488 0.788538\nvt 0.825907 0.782904\nvt 0.810165 0.766973\nvt 0.815674 0.762104\nvt 0.815674 0.762104\nvt 0.831700 0.778166\nvt 0.825907 0.782904\nvt 0.831700 0.778166\nvt 0.815674 0.762104\nvt 0.821818 0.757285\nvt 0.821818 0.757285\nvt 0.838139 0.773671\nvt 0.831700 0.778166\nvt 0.840576 0.799149\nvt 0.825907 0.782904\nvt 0.831700 0.778166\nvt 0.831700 0.778166\nvt 0.846514 0.794487\nvt 0.840576 0.799149\nvt 0.846514 0.794487\nvt 0.831700 0.778166\nvt 0.838139 0.773671\nvt 0.838139 0.773671\nvt 0.853062 0.790116\nvt 0.846514 0.794487\nvt 0.835000 0.804848\nvt 0.820488 0.788538\nvt 0.825907 0.782904\nvt 0.825907 0.782904\nvt 0.840576 0.799149\nvt 0.835000 0.804848\nvt 0.820488 0.788538\nvt 0.835000 0.804848\nvt 0.829960 0.810731\nvt 0.829960 0.810731\nvt 0.815609 0.794329\nvt 0.820488 0.788538\nvt 0.805035 0.772515\nvt 0.820488 0.788538\nvt 0.815609 0.794329\nvt 0.815609 0.794329\nvt 0.800458 0.778188\nvt 0.805035 0.772515\nvt 0.800458 0.778188\nvt 0.815609 0.794329\nvt 0.811294 0.799713\nvt 0.811294 0.799713\nvt 0.796293 0.783786\nvt 0.800458 0.778188\nvt 0.796293 0.783786\nvt 0.811294 0.799713\nvt 0.806708 0.805260\nvt 0.806708 0.805260\nvt 0.790063 0.787107\nvt 0.796293 0.783786\nvt 0.823516 0.823521\nvt 0.806708 0.805260\nvt 0.811294 0.799713\nvt 0.811294 0.799713\nvt 0.825628 0.815973\nvt 0.823516 0.823521\nvt 0.825628 0.815973\nvt 0.811294 0.799713\nvt 0.815609 0.794329\nvt 0.815609 0.794329\nvt 0.829960 0.810731\nvt 0.825628 0.815973\nvt 0.840576 0.799149\nvt 0.846514 0.794487\nvt 0.864151 0.815092\nvt 0.864151 0.815092\nvt 0.858176 0.819710\nvt 0.840576 0.799149\nvt 0.835000 0.804848\nvt 0.840576 0.799149\nvt 0.858176 0.819710\nvt 0.846514 0.794487\nvt 0.853062 0.790116\nvt 0.870701 0.810736\nvt 0.870701 0.810736\nvt 0.864151 0.815092\nvt 0.846514 0.794487\nvt 0.829960 0.810731\nvt 0.835000 0.804848\nvt 0.852543 0.825467\nvt 0.858176 0.819710\nvt 0.852543 0.825467\nvt 0.835000 0.804848\nvt 0.852543 0.825467\nvt 0.847449 0.831429\nvt 0.829960 0.810731\nvt 0.825628 0.815973\nvt 0.829960 0.810731\nvt 0.847449 0.831429\nvt 0.823516 0.823521\nvt 0.825628 0.815973\nvt 0.843140 0.836605\nvt 0.847449 0.831429\nvt 0.843140 0.836605\nvt 0.825628 0.815973\nvt 0.843140 0.836605\nvt 0.838798 0.841718\nvt 0.823516 0.823521\nvt 0.740559 0.818698\nvt 0.736507 0.821264\nvt 0.730312 0.810180\nvt 0.730312 0.810180\nvt 0.734231 0.807473\nvt 0.740559 0.818698\nvt 0.734231 0.807473\nvt 0.730312 0.810180\nvt 0.713765 0.787311\nvt 0.725806 0.813038\nvt 0.730312 0.810180\nvt 0.736507 0.821264\nvt 0.713765 0.787311\nvt 0.730312 0.810180\nvt 0.725806 0.813038\nvt 0.736507 0.821264\nvt 0.731885 0.823900\nvt 0.725806 0.813038\nvt 0.720008 0.815969\nvt 0.725806 0.813038\nvt 0.731885 0.823900\nvt 0.731885 0.823900\nvt 0.726045 0.826554\nvt 0.720008 0.815969\nvt 0.725806 0.813038\nvt 0.720008 0.815969\nvt 0.704440 0.794233\nvt 0.704440 0.794233\nvt 0.709742 0.790595\nvt 0.725806 0.813038\nvt 0.725806 0.813038\nvt 0.709742 0.790595\nvt 0.713765 0.787311\nvt 0.713418 0.818952\nvt 0.720008 0.815969\nvt 0.726045 0.826554\nvt 0.726045 0.826554\nvt 0.719433 0.829205\nvt 0.713418 0.818952\nvt 0.720008 0.815969\nvt 0.713418 0.818952\nvt 0.698304 0.798062\nvt 0.698304 0.798062\nvt 0.704440 0.794233\nvt 0.720008 0.815969\nvt 0.795857 0.737533\nvt 0.790534 0.743223\nvt 0.779324 0.736414\nvt 0.779324 0.736414\nvt 0.784229 0.730398\nvt 0.795857 0.737533\nvt 0.774819 0.742116\nvt 0.779324 0.736414\nvt 0.790534 0.743223\nvt 0.790534 0.743223\nvt 0.785650 0.748678\nvt 0.774819 0.742116\nvt 0.770621 0.747964\nvt 0.774819 0.742116\nvt 0.785650 0.748678\nvt 0.785650 0.748678\nvt 0.781100 0.754423\nvt 0.770621 0.747964\nvt 0.767028 0.753991\nvt 0.770621 0.747964\nvt 0.781100 0.754423\nvt 0.781100 0.754423\nvt 0.777188 0.760277\nvt 0.767028 0.753991\nvt 0.763732 0.761130\nvt 0.767028 0.753991\nvt 0.777188 0.760277\nvt 0.777188 0.760277\nvt 0.773696 0.766758\nvt 0.763732 0.761130\nvt 0.760237 0.769600\nvt 0.763732 0.761130\nvt 0.773696 0.766758\nvt 0.773696 0.766758\nvt 0.769695 0.773718\nvt 0.760237 0.769600\nvt 0.283435 0.950325\nvt 0.306827 0.942409\nvt 0.307645 0.953970\nvt 0.307645 0.953970\nvt 0.284796 0.960451\nvt 0.283435 0.950325\nvt 0.307645 0.953970\nvt 0.306827 0.942409\nvt 0.329638 0.933294\nvt 0.329638 0.933294\nvt 0.331209 0.948946\nvt 0.307645 0.953970\nvt 0.283435 0.950325\nvt 0.284796 0.960451\nvt 0.281190 0.965276\nvt 0.281190 0.965276\nvt 0.271472 0.957372\nvt 0.283435 0.950325\nvt 0.261618 0.963416\nvt 0.271472 0.957372\nvt 0.281190 0.965276\nvt 0.281190 0.965276\nvt 0.279436 0.970457\nvt 0.261618 0.963416\nvt 0.370389 0.969574\nvt 0.331209 0.948946\nvt 0.329638 0.933294\nvt 0.329638 0.933294\nvt 0.376522 0.956719\nvt 0.370389 0.969574\nvt 0.267995 0.977564\nvt 0.261618 0.963416\nvt 0.279436 0.970457\nvt 0.279436 0.970457\nvt 0.279619 0.975487\nvt 0.267995 0.977564\nvt 0.267995 0.977564\nvt 0.279619 0.975487\nvt 0.282255 0.979308\nvt 0.282255 0.979308\nvt 0.276086 0.990227\nvt 0.267995 0.977564\nvt 0.276086 0.990227\nvt 0.282255 0.979308\nvt 0.324526 0.984173\nvt 0.324526 0.984173\nvt 0.323923 0.992118\nvt 0.276086 0.990227\nvt 0.323923 0.992118\nvt 0.324526 0.984173\nvt 0.362642 0.985640\nvt 0.362642 0.985640\nvt 0.364954 0.994698\nvt 0.323923 0.992118\nvt 0.364954 0.994698\nvt 0.362642 0.985640\nvt 0.369640 0.971777\nvt 0.369640 0.971777\nvt 0.370389 0.969574\nvt 0.376522 0.956719\nvt 0.369640 0.971777\nvt 0.385894 0.996865\nvt 0.364954 0.994698\nvt 0.267995 0.977564\nvt 0.276086 0.990227\nvt 0.267438 0.990882\nvt 0.267438 0.990882\nvt 0.260136 0.980407\nvt 0.267995 0.977564\nvt 0.261618 0.963416\nvt 0.267995 0.977564\nvt 0.260136 0.980407\nvt 0.260136 0.980407\nvt 0.267438 0.990882\nvt 0.245237 0.993193\nvt 0.245237 0.993193\nvt 0.237058 0.992345\nvt 0.260136 0.980407\nvt 0.237058 0.992345\nvt 0.245237 0.993193\nvt 0.240039 0.993894\nvt 0.240039 0.993894\nvt 0.232954 0.994894\nvt 0.237058 0.992345\nvt 0.228873 0.991521\nvt 0.260136 0.980407\nvt 0.237058 0.992345\nvt 0.228873 0.991521\nvt 0.237058 0.992345\nvt 0.232954 0.994894\nvt 0.228873 0.991521\nvt 0.244788 0.976016\nvt 0.260136 0.980407\nvt 0.244788 0.976016\nvt 0.252842 0.969931\nvt 0.260136 0.980407\nvt 0.232954 0.994894\nvt 0.224927 0.996270\nvt 0.228873 0.991521\nvt 0.260136 0.980407\nvt 0.252842 0.969931\nvt 0.261618 0.963416\nvt 0.392797 0.982874\nvt 0.385894 0.996865\nvt 0.369640 0.971777\nvt 0.369640 0.971777\nvt 0.379014 0.960260\nvt 0.392797 0.982874\nvt 0.376522 0.956719\nvt 0.379014 0.960260\nvt 0.369640 0.971777\nvt 0.672178 0.359634\nvt 0.675456 0.364957\nvt 0.696720 0.326157\nvt 0.701392 0.355851\nvt 0.695976 0.356291\nvt 0.695976 0.356291\nvt 0.687782 0.326882\nvt 0.696720 0.326157\nvt 0.684621 0.331218\nvt 0.687782 0.326882\nvt 0.695976 0.356291\nvt 0.695976 0.356291\nvt 0.690604 0.352795\nvt 0.684621 0.331218\nvt 0.690604 0.352795\nvt 0.695976 0.356291\nvt 0.673900 0.359516\nvt 0.675456 0.364957\nvt 0.673900 0.359516\nvt 0.695976 0.356291\nvt 0.695976 0.356291\nvt 0.697891 0.362985\nvt 0.675456 0.364957\nvt 0.672178 0.359634\nvt 0.673900 0.359516\nvt 0.675456 0.364957\nvt 0.665036 0.327768\nvt 0.673900 0.359516\nvt 0.672178 0.359634\nvt 0.685867 0.320188\nvt 0.687782 0.326882\nvt 0.665036 0.327768\nvt 0.665036 0.327768\nvt 0.663433 0.322160\nvt 0.685867 0.320188\nvt 0.672178 0.359634\nvt 0.663286 0.327777\nvt 0.665036 0.327768\nvt 0.675456 0.364957\nvt 0.673141 0.363003\nvt 0.672178 0.359634\nvt 0.662322 0.324413\nvt 0.663433 0.322160\nvt 0.665036 0.327768\nvt 0.665036 0.327768\nvt 0.663286 0.327777\nvt 0.662322 0.324413\nvt 0.676957 0.354815\nvt 0.673900 0.359516\nvt 0.665036 0.327768\nvt 0.673900 0.359516\nvt 0.676957 0.354815\nvt 0.690604 0.352795\nvt 0.665036 0.327768\nvt 0.670560 0.331793\nvt 0.676957 0.354815\nvt 0.670560 0.331793\nvt 0.665036 0.327768\nvt 0.687782 0.326882\nvt 0.687782 0.326882\nvt 0.684621 0.331218\nvt 0.670560 0.331793\nvt 0.663286 0.327777\nvt 0.672178 0.359634\nvt 0.669430 0.359860\nvt 0.669430 0.359860\nvt 0.660544 0.328002\nvt 0.663286 0.327777\nvt 0.461215 0.138423\nvt 0.439533 0.138748\nvt 0.442379 0.126296\nvt 0.442379 0.126296\nvt 0.462696 0.125993\nvt 0.461215 0.138423\nvt 0.871623 0.389291\nvt 0.876409 0.389379\nvt 0.876010 0.411061\nvt 0.876010 0.411061\nvt 0.871223 0.410972\nvt 0.871623 0.389291\nvt 0.877176 0.369433\nvt 0.881964 0.369433\nvt 0.881964 0.381951\nvt 0.881964 0.381951\nvt 0.877176 0.381951\nvt 0.877176 0.369433\nvt 0.570424 0.039528\nvt 0.565636 0.039528\nvt 0.565636 0.019208\nvt 0.565636 0.019208\nvt 0.570424 0.019208\nvt 0.570424 0.039528\nvt 0.877007 0.348034\nvt 0.881793 0.348147\nvt 0.881492 0.360916\nvt 0.881492 0.360916\nvt 0.876706 0.360803\nvt 0.877007 0.348034\nvt 0.726563 0.630188\nvt 0.721651 0.632358\nvt 0.726563 0.630188\nvt 0.721651 0.632358\nvt 0.716349 0.633031\nvt 0.721651 0.632358\nvt 0.716349 0.633031\nvt 0.711069 0.632291\nvt 0.716349 0.633031\nvt 0.711069 0.632291\nvt 0.706124 0.630342\nvt 0.711069 0.632291\nvt 0.706124 0.630342\nvt 0.701685 0.627449\nvt 0.706124 0.630342\nvt 0.701685 0.627449\nvt 0.701685 0.627449\nvt 0.699675 0.625730\nvt 0.699675 0.625730\nvt 0.699675 0.625730\nvt 0.696077 0.621874\nvt 0.696077 0.621874\nvt 0.696077 0.621874\nvt 0.694480 0.619781\nvt 0.694480 0.619781\nvt 0.694480 0.619781\nvt 0.691656 0.615350\nvt 0.691656 0.615350\nvt 0.691656 0.615350\nvt 0.689309 0.610654\nvt 0.689309 0.610654\nvt 0.689309 0.610654\nvt 0.687443 0.605746\nvt 0.687443 0.605746\nvt 0.687443 0.605746\nvt 0.686107 0.600661\nvt 0.686107 0.600661\nvt 0.686107 0.600661\nvt 0.685398 0.595440\nvt 0.685398 0.595440\nvt 0.685398 0.595440\nvt 0.685457 0.590156\nvt 0.685457 0.590156\nvt 0.685457 0.590156\nvt 0.686443 0.584948\nvt 0.686443 0.584948\nvt 0.686443 0.584948\nvt 0.688493 0.580040\nvt 0.688493 0.580040\nvt 0.688493 0.580040\nvt 0.691666 0.575754\nvt 0.691666 0.575754\nvt 0.691666 0.575754\nvt 0.695872 0.572454\nvt 0.695872 0.572454\nvt 0.695872 0.572454\nvt 0.700868 0.570486\nvt 0.648821 0.091545\nvt 0.648821 0.087881\nvt 0.648821 0.087881\nvt 0.646742 0.091545\nvt 0.646742 0.087881\nvt 0.646742 0.087881\nvt 0.639548 0.091545\nvt 0.639548 0.087881\nvt 0.639548 0.091545\nvt 0.654236 0.087881\nvt 0.654236 0.091545\nvt 0.654236 0.091545\nvt 0.656383 0.087881\nvt 0.656383 0.091545\nvt 0.656383 0.091545\nvt 0.666452 0.087881\nvt 0.666452 0.091545\nvt 0.666452 0.087881\nvt 0.688587 0.600207\nvt 0.686107 0.600661\nvt 0.685398 0.595440\nvt 0.685398 0.595440\nvt 0.687920 0.595333\nvt 0.688587 0.600207\nvt 0.687920 0.595333\nvt 0.685398 0.595440\nvt 0.685457 0.590156\nvt 0.685457 0.590156\nvt 0.687963 0.590461\nvt 0.687920 0.595333\nvt 0.687963 0.590461\nvt 0.685457 0.590156\nvt 0.686443 0.584948\nvt 0.686443 0.584948\nvt 0.688842 0.585725\nvt 0.687963 0.590461\nvt 0.688842 0.585725\nvt 0.686443 0.584948\nvt 0.688493 0.580040\nvt 0.688493 0.580040\nvt 0.690656 0.581325\nvt 0.688842 0.585725\nvt 0.690656 0.581325\nvt 0.688493 0.580040\nvt 0.691666 0.575754\nvt 0.691666 0.575754\nvt 0.693439 0.577530\nvt 0.690656 0.581325\nvt 0.693439 0.577530\nvt 0.691666 0.575754\nvt 0.695872 0.572454\nvt 0.695872 0.572454\nvt 0.697098 0.574639\nvt 0.693439 0.577530\nvt 0.697098 0.574639\nvt 0.695872 0.572454\nvt 0.700868 0.570486\nvt 0.700868 0.570486\nvt 0.701366 0.572903\nvt 0.697098 0.574639\nvt 0.686107 0.600661\nvt 0.688587 0.600207\nvt 0.689848 0.604997\nvt 0.689848 0.604997\nvt 0.687443 0.605746\nvt 0.686107 0.600661\nvt 0.687443 0.605746\nvt 0.689848 0.604997\nvt 0.691615 0.609645\nvt 0.691615 0.609645\nvt 0.689309 0.610654\nvt 0.687443 0.605746\nvt 0.689309 0.610654\nvt 0.691615 0.609645\nvt 0.693839 0.614094\nvt 0.693839 0.614094\nvt 0.691656 0.615350\nvt 0.689309 0.610654\nvt 0.691656 0.615350\nvt 0.693839 0.614094\nvt 0.696504 0.618277\nvt 0.696504 0.618277\nvt 0.694480 0.619781\nvt 0.691656 0.615350\nvt 0.694480 0.619781\nvt 0.696504 0.618277\nvt 0.698003 0.620242\nvt 0.698003 0.620242\nvt 0.696077 0.621874\nvt 0.694480 0.619781\nvt 0.696077 0.621874\nvt 0.698003 0.620242\nvt 0.701344 0.623836\nvt 0.701344 0.623836\nvt 0.699675 0.625730\nvt 0.696077 0.621874\nvt 0.699675 0.625730\nvt 0.701344 0.623836\nvt 0.703193 0.625425\nvt 0.703193 0.625425\nvt 0.701685 0.627449\nvt 0.699675 0.625730\nvt 0.701685 0.627449\nvt 0.703193 0.625425\nvt 0.707230 0.628075\nvt 0.707230 0.628075\nvt 0.706124 0.630342\nvt 0.701685 0.627449\nvt 0.706124 0.630342\nvt 0.707230 0.628075\nvt 0.711660 0.629844\nvt 0.711660 0.629844\nvt 0.711069 0.632291\nvt 0.706124 0.630342\nvt 0.711069 0.632291\nvt 0.711660 0.629844\nvt 0.716325 0.630521\nvt 0.716325 0.630521\nvt 0.716349 0.633031\nvt 0.711069 0.632291\nvt 0.716349 0.633031\nvt 0.716325 0.630521\nvt 0.720956 0.629949\nvt 0.720956 0.629949\nvt 0.721651 0.632358\nvt 0.716349 0.633031\nvt 0.721651 0.632358\nvt 0.720956 0.629949\nvt 0.725192 0.628135\nvt 0.725192 0.628135\nvt 0.726563 0.630188\nvt 0.721651 0.632358\nvt 0.722261 0.634491\nvt 0.721651 0.632358\nvt 0.726563 0.630188\nvt 0.726563 0.630188\nvt 0.727736 0.632078\nvt 0.722261 0.634491\nvt 0.721651 0.632358\nvt 0.722261 0.634491\nvt 0.716360 0.635255\nvt 0.716360 0.635255\nvt 0.716349 0.633031\nvt 0.721651 0.632358\nvt 0.716349 0.633031\nvt 0.716360 0.635255\nvt 0.710531 0.634454\nvt 0.710531 0.634454\nvt 0.711069 0.632291\nvt 0.716349 0.633031\nvt 0.711069 0.632291\nvt 0.710531 0.634454\nvt 0.705129 0.632340\nvt 0.705129 0.632340\nvt 0.706124 0.630342\nvt 0.711069 0.632291\nvt 0.706124 0.630342\nvt 0.705129 0.632340\nvt 0.700336 0.629229\nvt 0.700336 0.629229\nvt 0.701685 0.627449\nvt 0.706124 0.630342\nvt 0.701685 0.627449\nvt 0.700336 0.629229\nvt 0.698185 0.627394\nvt 0.698185 0.627394\nvt 0.699675 0.625730\nvt 0.701685 0.627449\nvt 0.699675 0.625730\nvt 0.698185 0.627394\nvt 0.694365 0.623307\nvt 0.694365 0.623307\nvt 0.696077 0.621874\nvt 0.699675 0.625730\nvt 0.696077 0.621874\nvt 0.694365 0.623307\nvt 0.692682 0.621102\nvt 0.692682 0.621102\nvt 0.694480 0.619781\nvt 0.696077 0.621874\nvt 0.694480 0.619781\nvt 0.692682 0.621102\nvt 0.689720 0.616456\nvt 0.689720 0.616456\nvt 0.691656 0.615350\nvt 0.694480 0.619781\nvt 0.691656 0.615350\nvt 0.689720 0.616456\nvt 0.687267 0.611548\nvt 0.687267 0.611548\nvt 0.689309 0.610654\nvt 0.691656 0.615350\nvt 0.689309 0.610654\nvt 0.687267 0.611548\nvt 0.685317 0.606417\nvt 0.685317 0.606417\nvt 0.687443 0.605746\nvt 0.689309 0.610654\nvt 0.687443 0.605746\nvt 0.685317 0.606417\nvt 0.683915 0.601077\nvt 0.683915 0.601077\nvt 0.686107 0.600661\nvt 0.687443 0.605746\nvt 0.686107 0.600661\nvt 0.683915 0.601077\nvt 0.683168 0.595553\nvt 0.683168 0.595553\nvt 0.685398 0.595440\nvt 0.686107 0.600661\nvt 0.685398 0.595440\nvt 0.683168 0.595553\nvt 0.683237 0.589905\nvt 0.683237 0.589905\nvt 0.685457 0.590156\nvt 0.685398 0.595440\nvt 0.685457 0.590156\nvt 0.683237 0.589905\nvt 0.684314 0.584276\nvt 0.684314 0.584276\nvt 0.686443 0.584948\nvt 0.685457 0.590156\nvt 0.686443 0.584948\nvt 0.684314 0.584276\nvt 0.686570 0.578915\nvt 0.686570 0.578915\nvt 0.688493 0.580040\nvt 0.686443 0.584948\nvt 0.688493 0.580040\nvt 0.686570 0.578915\nvt 0.690089 0.574187\nvt 0.690089 0.574187\nvt 0.691666 0.575754\nvt 0.688493 0.580040\nvt 0.691666 0.575754\nvt 0.690089 0.574187\nvt 0.694782 0.570522\nvt 0.694782 0.570522\nvt 0.695872 0.572454\nvt 0.691666 0.575754\nvt 0.695872 0.572454\nvt 0.694782 0.570522\nvt 0.700348 0.568323\nvt 0.700348 0.568323\nvt 0.700868 0.570486\nvt 0.695872 0.572454\nvt 0.082198 0.473765\nvt 0.084053 0.485142\nvt 0.077992 0.486803\nvt 0.077992 0.486803\nvt 0.074062 0.475941\nvt 0.082198 0.473765\nvt 0.084053 0.485142\nvt 0.082198 0.473765\nvt 0.090630 0.473102\nvt 0.090630 0.473102\nvt 0.090218 0.484643\nvt 0.084053 0.485142\nvt 0.090828 0.467385\nvt 0.090630 0.473102\nvt 0.082198 0.473765\nvt 0.082198 0.473765\nvt 0.081325 0.468112\nvt 0.090828 0.467385\nvt 0.081325 0.468112\nvt 0.082198 0.473765\nvt 0.074062 0.475941\nvt 0.074062 0.475941\nvt 0.072142 0.470556\nvt 0.081325 0.468112\nvt 0.090218 0.484643\nvt 0.090630 0.473102\nvt 0.099009 0.474188\nvt 0.099009 0.474188\nvt 0.096258 0.485380\nvt 0.090218 0.484643\nvt 0.090630 0.473102\nvt 0.090828 0.467385\nvt 0.095667 0.467702\nvt 0.090630 0.473102\nvt 0.095667 0.467702\nvt 0.099009 0.474188\nvt 0.095667 0.467702\nvt 0.100455 0.468673\nvt 0.099009 0.474188\nvt 0.106973 0.477040\nvt 0.096258 0.485380\nvt 0.099009 0.474188\nvt 0.106973 0.477040\nvt 0.104645 0.481422\nvt 0.096258 0.485380\nvt 0.104645 0.481422\nvt 0.102016 0.487291\nvt 0.096258 0.485380\nvt 0.074062 0.475941\nvt 0.077992 0.486803\nvt 0.072264 0.489538\nvt 0.072264 0.489538\nvt 0.066447 0.479548\nvt 0.074062 0.475941\nvt 0.072142 0.470556\nvt 0.074062 0.475941\nvt 0.066447 0.479548\nvt 0.066447 0.479548\nvt 0.072264 0.489538\nvt 0.067067 0.493244\nvt 0.067067 0.493244\nvt 0.059578 0.484434\nvt 0.066447 0.479548\nvt 0.059578 0.484434\nvt 0.067067 0.493244\nvt 0.062580 0.497797\nvt 0.062580 0.497797\nvt 0.053657 0.490441\nvt 0.059578 0.484434\nvt 0.053657 0.490441\nvt 0.062580 0.497797\nvt 0.058955 0.503044\nvt 0.058955 0.503044\nvt 0.048865 0.497385\nvt 0.053657 0.490441\nvt 0.048865 0.497385\nvt 0.058955 0.503044\nvt 0.057505 0.505876\nvt 0.057505 0.505876\nvt 0.046955 0.501145\nvt 0.048865 0.497385\nvt 0.045401 0.505052\nvt 0.046955 0.501145\nvt 0.057505 0.505876\nvt 0.045401 0.505052\nvt 0.057505 0.505876\nvt 0.055393 0.511840\nvt 0.045401 0.505052\nvt 0.055393 0.511840\nvt 0.044162 0.509057\nvt 0.044162 0.509057\nvt 0.055393 0.511840\nvt 0.054754 0.514924\nvt 0.054754 0.514924\nvt 0.043314 0.513181\nvt 0.044162 0.509057\nvt 0.043314 0.513181\nvt 0.054754 0.514924\nvt 0.054328 0.521143\nvt 0.054328 0.521143\nvt 0.042804 0.521579\nvt 0.043314 0.513181\nvt 0.042804 0.521579\nvt 0.054328 0.521143\nvt 0.055087 0.527272\nvt 0.055087 0.527272\nvt 0.043880 0.529913\nvt 0.042804 0.521579\nvt 0.043880 0.529913\nvt 0.055087 0.527272\nvt 0.056968 0.533061\nvt 0.056968 0.533061\nvt 0.046553 0.537898\nvt 0.043880 0.529913\nvt 0.046553 0.537898\nvt 0.056968 0.533061\nvt 0.059914 0.538192\nvt 0.059914 0.538192\nvt 0.050825 0.545258\nvt 0.046553 0.537898\nvt 0.053590 0.548576\nvt 0.050825 0.545258\nvt 0.059914 0.538192\nvt 0.053590 0.548576\nvt 0.059914 0.538192\nvt 0.059995 0.547472\nvt 0.059914 0.538192\nvt 0.063911 0.542247\nvt 0.059995 0.547472\nvt 0.053590 0.548576\nvt 0.059995 0.547472\nvt 0.056872 0.551433\nvt 0.041379 0.540256\nvt 0.046553 0.537898\nvt 0.050825 0.545258\nvt 0.050825 0.545258\nvt 0.046179 0.548598\nvt 0.041379 0.540256\nvt 0.046179 0.548598\nvt 0.050825 0.545258\nvt 0.053590 0.548576\nvt 0.053590 0.548576\nvt 0.049158 0.552461\nvt 0.046179 0.548598\nvt 0.046553 0.537898\nvt 0.041379 0.540256\nvt 0.038330 0.531237\nvt 0.038330 0.531237\nvt 0.043880 0.529913\nvt 0.046553 0.537898\nvt 0.043880 0.529913\nvt 0.038330 0.531237\nvt 0.037094 0.521828\nvt 0.037094 0.521828\nvt 0.042804 0.521579\nvt 0.043880 0.529913\nvt 0.042804 0.521579\nvt 0.037094 0.521828\nvt 0.037636 0.512345\nvt 0.041417 0.551796\nvt 0.046179 0.548598\nvt 0.049158 0.552461\nvt 0.049158 0.552461\nvt 0.044561 0.556080\nvt 0.041417 0.551796\nvt 0.036170 0.542577\nvt 0.041379 0.540256\nvt 0.046179 0.548598\nvt 0.046179 0.548598\nvt 0.041417 0.551796\nvt 0.036170 0.542577\nvt 0.030885 0.544935\nvt 0.036170 0.542577\nvt 0.041417 0.551796\nvt 0.041417 0.551796\nvt 0.036580 0.554997\nvt 0.030885 0.544935\nvt 0.036580 0.554997\nvt 0.041417 0.551796\nvt 0.044561 0.556080\nvt 0.044561 0.556080\nvt 0.039911 0.559607\nvt 0.036580 0.554997\nvt 0.032770 0.532551\nvt 0.038330 0.531237\nvt 0.041379 0.540256\nvt 0.041379 0.540256\nvt 0.036170 0.542577\nvt 0.032770 0.532551\nvt 0.036170 0.542577\nvt 0.030885 0.544935\nvt 0.027132 0.533871\nvt 0.027132 0.533871\nvt 0.032770 0.532551\nvt 0.036170 0.542577\nvt 0.031383 0.522079\nvt 0.037094 0.521828\nvt 0.038330 0.531237\nvt 0.038330 0.531237\nvt 0.032770 0.532551\nvt 0.031383 0.522079\nvt 0.032770 0.532551\nvt 0.027132 0.533871\nvt 0.025597 0.522316\nvt 0.025597 0.522316\nvt 0.031383 0.522079\nvt 0.032770 0.532551\nvt 0.031966 0.511534\nvt 0.037636 0.512345\nvt 0.037094 0.521828\nvt 0.037094 0.521828\nvt 0.031383 0.522079\nvt 0.031966 0.511534\nvt 0.031383 0.522079\nvt 0.025597 0.522316\nvt 0.026213 0.510805\nvt 0.026213 0.510805\nvt 0.031966 0.511534\nvt 0.031383 0.522079\nvt 0.031966 0.511534\nvt 0.026213 0.510805\nvt 0.027154 0.505199\nvt 0.027154 0.505199\nvt 0.032874 0.506311\nvt 0.031966 0.511534\nvt 0.034385 0.506624\nvt 0.031966 0.511534\nvt 0.032874 0.506311\nvt 0.037636 0.512345\nvt 0.031966 0.511534\nvt 0.034385 0.506624\nvt 0.034385 0.506624\nvt 0.036770 0.507178\nvt 0.037636 0.512345\nvt 0.034385 0.506624\nvt 0.036845 0.506717\nvt 0.036770 0.507178\nvt 0.036770 0.507178\nvt 0.036845 0.506717\nvt 0.038684 0.505856\nvt 0.038684 0.505856\nvt 0.039133 0.505985\nvt 0.036770 0.507178\nvt 0.039133 0.505985\nvt 0.038684 0.505856\nvt 0.039995 0.503190\nvt 0.045401 0.505052\nvt 0.039133 0.505985\nvt 0.039995 0.503190\nvt 0.039995 0.503190\nvt 0.040995 0.500720\nvt 0.045401 0.505052\nvt 0.039133 0.505985\nvt 0.045401 0.505052\nvt 0.044162 0.509057\nvt 0.044162 0.509057\nvt 0.038588 0.507653\nvt 0.039133 0.505985\nvt 0.036770 0.507178\nvt 0.039133 0.505985\nvt 0.038588 0.507653\nvt 0.038588 0.507653\nvt 0.044162 0.509057\nvt 0.043314 0.513181\nvt 0.043314 0.513181\nvt 0.037636 0.512345\nvt 0.038588 0.507653\nvt 0.037636 0.512345\nvt 0.036770 0.507178\nvt 0.038588 0.507653\nvt 0.037636 0.512345\nvt 0.043314 0.513181\nvt 0.042804 0.521579\nvt 0.045401 0.505052\nvt 0.040995 0.500720\nvt 0.041698 0.498838\nvt 0.041698 0.498838\nvt 0.046955 0.501145\nvt 0.045401 0.505052\nvt 0.046955 0.501145\nvt 0.041698 0.498838\nvt 0.043858 0.494584\nvt 0.043858 0.494584\nvt 0.048865 0.497385\nvt 0.046955 0.501145\nvt 0.048865 0.497385\nvt 0.043858 0.494584\nvt 0.049235 0.486796\nvt 0.049235 0.486796\nvt 0.053657 0.490441\nvt 0.048865 0.497385\nvt 0.053657 0.490441\nvt 0.049235 0.486796\nvt 0.055870 0.480063\nvt 0.055870 0.480063\nvt 0.059578 0.484434\nvt 0.053657 0.490441\nvt 0.059578 0.484434\nvt 0.055870 0.480063\nvt 0.063576 0.474591\nvt 0.063576 0.474591\nvt 0.066447 0.479548\nvt 0.059578 0.484434\nvt 0.066447 0.479548\nvt 0.063576 0.474591\nvt 0.072142 0.470556\nvt 0.044820 0.483148\nvt 0.049235 0.486796\nvt 0.043858 0.494584\nvt 0.043858 0.494584\nvt 0.038865 0.491782\nvt 0.044820 0.483148\nvt 0.040355 0.479454\nvt 0.044820 0.483148\nvt 0.038865 0.491782\nvt 0.038865 0.491782\nvt 0.033860 0.488862\nvt 0.040355 0.479454\nvt 0.052161 0.475693\nvt 0.055870 0.480063\nvt 0.049235 0.486796\nvt 0.049235 0.486796\nvt 0.044820 0.483148\nvt 0.052161 0.475693\nvt 0.044820 0.483148\nvt 0.040355 0.479454\nvt 0.048407 0.471277\nvt 0.048407 0.471277\nvt 0.052161 0.475693\nvt 0.044820 0.483148\nvt 0.060700 0.469637\nvt 0.063576 0.474591\nvt 0.055870 0.480063\nvt 0.055870 0.480063\nvt 0.052161 0.475693\nvt 0.060700 0.469637\nvt 0.052161 0.475693\nvt 0.048407 0.471277\nvt 0.057784 0.464627\nvt 0.057784 0.464627\nvt 0.060700 0.469637\nvt 0.052161 0.475693\nvt 0.070193 0.465184\nvt 0.072142 0.470556\nvt 0.063576 0.474591\nvt 0.063576 0.474591\nvt 0.060700 0.469637\nvt 0.070193 0.465184\nvt 0.072142 0.470556\nvt 0.070193 0.465184\nvt 0.080351 0.462459\nvt 0.080351 0.462459\nvt 0.081325 0.468112\nvt 0.072142 0.470556\nvt 0.081325 0.468112\nvt 0.080351 0.462459\nvt 0.090866 0.461662\nvt 0.090866 0.461662\nvt 0.090828 0.467385\nvt 0.081325 0.468112\nvt 0.090843 0.455865\nvt 0.090866 0.461662\nvt 0.080351 0.462459\nvt 0.080351 0.462459\nvt 0.079334 0.456750\nvt 0.090843 0.455865\nvt 0.079334 0.456750\nvt 0.080351 0.462459\nvt 0.070193 0.465184\nvt 0.070193 0.465184\nvt 0.068209 0.459745\nvt 0.079334 0.456750\nvt 0.060700 0.469637\nvt 0.057784 0.464627\nvt 0.068209 0.459745\nvt 0.068209 0.459745\nvt 0.070193 0.465184\nvt 0.060700 0.469637\nvt 0.090828 0.467385\nvt 0.090866 0.461662\nvt 0.096167 0.461900\nvt 0.096167 0.461900\nvt 0.095667 0.467702\nvt 0.090828 0.467385\nvt 0.096527 0.456077\nvt 0.096167 0.461900\nvt 0.090866 0.461662\nvt 0.090866 0.461662\nvt 0.090843 0.455865\nvt 0.096527 0.456077\nvt 0.033860 0.488862\nvt 0.038865 0.491782\nvt 0.036390 0.496469\nvt 0.038865 0.491782\nvt 0.037762 0.497120\nvt 0.036390 0.496469\nvt 0.040101 0.498157\nvt 0.037762 0.497120\nvt 0.038865 0.491782\nvt 0.038865 0.491782\nvt 0.043858 0.494584\nvt 0.040101 0.498157\nvt 0.041698 0.498838\nvt 0.040101 0.498157\nvt 0.043858 0.494584\nvt 0.040101 0.498157\nvt 0.039758 0.498511\nvt 0.037762 0.497120\nvt 0.040995 0.500720\nvt 0.040101 0.498157\nvt 0.041698 0.498838\nvt 0.040659 0.500309\nvt 0.039758 0.498511\nvt 0.040101 0.498157\nvt 0.040101 0.498157\nvt 0.040995 0.500720\nvt 0.040659 0.500309\nvt 0.039995 0.503190\nvt 0.040659 0.500309\nvt 0.040995 0.500720\nvt 0.036390 0.496469\nvt 0.031185 0.493868\nvt 0.033860 0.488862\nvt 0.323804 0.427201\nvt 0.325870 0.429732\nvt 0.317414 0.436610\nvt 0.317414 0.436610\nvt 0.315364 0.434066\nvt 0.323804 0.427201\nvt 0.315364 0.434066\nvt 0.317414 0.436610\nvt 0.308895 0.443413\nvt 0.308895 0.443413\nvt 0.306862 0.440855\nvt 0.315364 0.434066\nvt 0.306862 0.440855\nvt 0.308895 0.443413\nvt 0.304628 0.446799\nvt 0.304628 0.446799\nvt 0.302597 0.444240\nvt 0.306862 0.440855\nvt 0.325870 0.429732\nvt 0.323804 0.427201\nvt 0.332275 0.420320\nvt 0.332275 0.420320\nvt 0.334301 0.422884\nvt 0.325870 0.429732\nvt 0.334301 0.422884\nvt 0.332275 0.420320\nvt 0.341064 0.413716\nvt 0.341064 0.413716\nvt 0.342913 0.416408\nvt 0.334301 0.422884\nvt 0.342913 0.416408\nvt 0.341064 0.413716\nvt 0.350564 0.407974\nvt 0.350564 0.407974\nvt 0.352024 0.410893\nvt 0.342913 0.416408\nvt 0.352024 0.410893\nvt 0.350564 0.407974\nvt 0.361013 0.403938\nvt 0.361013 0.403938\nvt 0.361838 0.407094\nvt 0.352024 0.410893\nvt 0.361838 0.407094\nvt 0.361013 0.403938\nvt 0.366596 0.402816\nvt 0.366596 0.402816\nvt 0.366917 0.406082\nvt 0.361838 0.407094\nvt 0.366917 0.406082\nvt 0.366596 0.402816\nvt 0.377642 0.402801\nvt 0.377642 0.402801\nvt 0.377357 0.406072\nvt 0.366917 0.406082\nvt 0.377357 0.406072\nvt 0.377642 0.402801\nvt 0.383268 0.403829\nvt 0.383268 0.403829\nvt 0.382433 0.406977\nvt 0.377357 0.406072\nvt 0.382433 0.406977\nvt 0.383268 0.403829\nvt 0.393627 0.408370\nvt 0.393627 0.408370\nvt 0.391947 0.411166\nvt 0.382433 0.406977\nvt 0.391947 0.411166\nvt 0.393627 0.408370\nvt 0.402542 0.415117\nvt 0.402542 0.415117\nvt 0.400369 0.417555\nvt 0.391947 0.411166\nvt 0.400369 0.417555\nvt 0.402542 0.415117\nvt 0.410324 0.422968\nvt 0.410324 0.422968\nvt 0.407913 0.425172\nvt 0.400369 0.417555\nvt 0.407913 0.425172\nvt 0.410324 0.422968\nvt 0.417492 0.431260\nvt 0.417492 0.431260\nvt 0.414989 0.433361\nvt 0.407913 0.425172\nvt 0.414989 0.433361\nvt 0.417492 0.431260\nvt 0.420976 0.435463\nvt 0.424437 0.439673\nvt 0.414989 0.433361\nvt 0.420976 0.435463\nvt 0.424437 0.439673\nvt 0.421913 0.441748\nvt 0.414989 0.433361\nvt 0.421913 0.441748\nvt 0.424437 0.439673\nvt 0.427894 0.443883\nvt 0.427894 0.443883\nvt 0.425369 0.445956\nvt 0.421913 0.441748\nvt 0.670202 0.569748\nvt 0.675777 0.571555\nvt 0.671572 0.582687\nvt 0.671572 0.582687\nvt 0.660251 0.578468\nvt 0.670202 0.569748\nvt 0.660251 0.578468\nvt 0.671572 0.582687\nvt 0.666909 0.593453\nvt 0.666909 0.593453\nvt 0.656223 0.588253\nvt 0.660251 0.578468\nvt 0.656223 0.588253\nvt 0.666909 0.593453\nvt 0.661239 0.603649\nvt 0.661239 0.603649\nvt 0.651169 0.597326\nvt 0.656223 0.588253\nvt 0.651169 0.597326\nvt 0.661239 0.603649\nvt 0.654481 0.613115\nvt 0.654481 0.613115\nvt 0.645132 0.605700\nvt 0.651169 0.597326\nvt 0.645132 0.605700\nvt 0.654481 0.613115\nvt 0.646748 0.621774\nvt 0.646748 0.621774\nvt 0.638236 0.613387\nvt 0.645132 0.605700\nvt 0.638236 0.613387\nvt 0.646748 0.621774\nvt 0.642555 0.625785\nvt 0.642555 0.625785\nvt 0.634497 0.616958\nvt 0.638236 0.613387\nvt 0.634497 0.616958\nvt 0.642555 0.625785\nvt 0.633568 0.633129\nvt 0.633568 0.633129\nvt 0.626498 0.623516\nvt 0.634497 0.616958\nvt 0.626498 0.623516\nvt 0.633568 0.633129\nvt 0.628824 0.636481\nvt 0.628824 0.636481\nvt 0.622263 0.626485\nvt 0.626498 0.623516\nvt 0.622263 0.626485\nvt 0.628824 0.636481\nvt 0.618830 0.642383\nvt 0.618830 0.642383\nvt 0.613376 0.631745\nvt 0.622263 0.626485\nvt 0.613376 0.631745\nvt 0.618830 0.642383\nvt 0.608236 0.647182\nvt 0.608236 0.647182\nvt 0.604001 0.636019\nvt 0.613376 0.631745\nvt 0.604001 0.636019\nvt 0.608236 0.647182\nvt 0.597145 0.650759\nvt 0.597145 0.650759\nvt 0.594228 0.639215\nvt 0.604001 0.636019\nvt 0.594228 0.639215\nvt 0.597145 0.650759\nvt 0.585665 0.652992\nvt 0.585665 0.652992\nvt 0.584135 0.641233\nvt 0.594228 0.639215\nvt 0.584135 0.641233\nvt 0.585665 0.652992\nvt 0.573900 0.653890\nvt 0.573900 0.653890\nvt 0.573779 0.641898\nvt 0.584135 0.641233\nvt 0.573779 0.641898\nvt 0.573900 0.653890\nvt 0.567937 0.653982\nvt 0.567937 0.653982\nvt 0.568544 0.641594\nvt 0.573779 0.641898\nvt 0.574382 0.629525\nvt 0.573779 0.641898\nvt 0.568544 0.641594\nvt 0.568544 0.641594\nvt 0.570392 0.629168\nvt 0.574382 0.629525\nvt 0.573779 0.641898\nvt 0.574382 0.629525\nvt 0.582686 0.628999\nvt 0.582686 0.628999\nvt 0.584135 0.641233\nvt 0.573779 0.641898\nvt 0.584135 0.641233\nvt 0.582686 0.628999\nvt 0.591171 0.627253\nvt 0.591171 0.627253\nvt 0.594228 0.639215\nvt 0.584135 0.641233\nvt 0.594228 0.639215\nvt 0.591171 0.627253\nvt 0.599563 0.624479\nvt 0.599563 0.624479\nvt 0.604001 0.636019\nvt 0.594228 0.639215\nvt 0.604001 0.636019\nvt 0.599563 0.624479\nvt 0.607693 0.620756\nvt 0.607693 0.620756\nvt 0.613376 0.631745\nvt 0.604001 0.636019\nvt 0.613376 0.631745\nvt 0.607693 0.620756\nvt 0.615450 0.616158\nvt 0.615450 0.616158\nvt 0.622263 0.626485\nvt 0.613376 0.631745\nvt 0.622263 0.626485\nvt 0.615450 0.616158\nvt 0.619159 0.613559\nvt 0.619159 0.613559\nvt 0.626498 0.623516\nvt 0.622263 0.626485\nvt 0.626498 0.623516\nvt 0.619159 0.613559\nvt 0.626169 0.607811\nvt 0.626169 0.607811\nvt 0.634497 0.616958\nvt 0.626498 0.623516\nvt 0.634497 0.616958\nvt 0.626169 0.607811\nvt 0.629444 0.604685\nvt 0.629444 0.604685\nvt 0.638236 0.613387\nvt 0.634497 0.616958\nvt 0.638236 0.613387\nvt 0.629444 0.604685\nvt 0.635473 0.597989\nvt 0.635473 0.597989\nvt 0.645132 0.605700\nvt 0.638236 0.613387\nvt 0.645132 0.605700\nvt 0.635473 0.597989\nvt 0.640710 0.590800\nvt 0.640710 0.590800\nvt 0.651169 0.597326\nvt 0.645132 0.605700\nvt 0.651169 0.597326\nvt 0.640710 0.590800\nvt 0.644935 0.583328\nvt 0.644935 0.583328\nvt 0.656223 0.588253\nvt 0.651169 0.597326\nvt 0.656223 0.588253\nvt 0.644935 0.583328\nvt 0.654148 0.576838\nvt 0.654148 0.576838\nvt 0.660251 0.578468\nvt 0.656223 0.588253\nvt 0.102016 0.487291\nvt 0.104645 0.481422\nvt 0.110940 0.484704\nvt 0.110940 0.484704\nvt 0.107320 0.490080\nvt 0.102016 0.487291\nvt 0.107320 0.490080\nvt 0.110940 0.484704\nvt 0.116558 0.489406\nvt 0.116558 0.489406\nvt 0.111773 0.493774\nvt 0.107320 0.490080\nvt 0.111773 0.493774\nvt 0.116558 0.489406\nvt 0.120806 0.495519\nvt 0.120806 0.495519\nvt 0.115003 0.498413\nvt 0.111773 0.493774\nvt 0.593567 0.214330\nvt 0.597182 0.214330\nvt 0.597507 0.220014\nvt 0.597507 0.220014\nvt 0.593242 0.220014\nvt 0.593567 0.214330\nvt 0.589628 0.220014\nvt 0.589953 0.214330\nvt 0.593567 0.214330\nvt 0.593567 0.214330\nvt 0.593893 0.220014\nvt 0.589628 0.220014\nvt 0.586013 0.220014\nvt 0.586338 0.214330\nvt 0.589953 0.214330\nvt 0.589953 0.214330\nvt 0.590278 0.220014\nvt 0.586013 0.220014\nvt 0.582399 0.220014\nvt 0.582724 0.214330\nvt 0.586338 0.214330\nvt 0.586338 0.214330\nvt 0.586663 0.220014\nvt 0.582399 0.220014\nvt 0.578785 0.220014\nvt 0.579109 0.214330\nvt 0.582724 0.214330\nvt 0.582724 0.214330\nvt 0.583049 0.220014\nvt 0.578785 0.220014\nvt 0.575171 0.220015\nvt 0.575495 0.214331\nvt 0.579109 0.214330\nvt 0.579109 0.214330\nvt 0.579435 0.220014\nvt 0.575171 0.220015\nvt 0.571557 0.220015\nvt 0.571881 0.214331\nvt 0.575495 0.214331\nvt 0.575495 0.214331\nvt 0.575821 0.220015\nvt 0.571557 0.220015\nvt 0.633004 0.220010\nvt 0.633329 0.214326\nvt 0.636943 0.214326\nvt 0.636943 0.214326\nvt 0.637269 0.220010\nvt 0.633004 0.220010\nvt 0.629390 0.220010\nvt 0.629715 0.214327\nvt 0.633329 0.214326\nvt 0.633329 0.214326\nvt 0.633655 0.220010\nvt 0.629390 0.220010\nvt 0.625775 0.220010\nvt 0.626100 0.214326\nvt 0.629715 0.214327\nvt 0.629715 0.214327\nvt 0.630040 0.220010\nvt 0.625775 0.220010\nvt 0.622160 0.220010\nvt 0.622485 0.214326\nvt 0.626100 0.214326\nvt 0.626100 0.214326\nvt 0.626425 0.220010\nvt 0.622160 0.220010\nvt 0.618546 0.220010\nvt 0.618870 0.214327\nvt 0.622485 0.214326\nvt 0.622485 0.214326\nvt 0.622811 0.220010\nvt 0.618546 0.220010\nvt 0.616901 0.220011\nvt 0.617063 0.214327\nvt 0.618870 0.214327\nvt 0.618870 0.214327\nvt 0.619033 0.220010\nvt 0.616901 0.220011\nvt 0.617390 0.220011\nvt 0.613124 0.220012\nvt 0.613448 0.214328\nvt 0.613448 0.214328\nvt 0.617063 0.214327\nvt 0.617390 0.220011\nvt 0.613613 0.220012\nvt 0.611481 0.220013\nvt 0.611641 0.214329\nvt 0.611641 0.214329\nvt 0.613448 0.214328\nvt 0.613613 0.220012\nvt 0.607702 0.220014\nvt 0.608026 0.214330\nvt 0.611641 0.214329\nvt 0.611641 0.214329\nvt 0.611967 0.220013\nvt 0.607702 0.220014\nvt 0.604087 0.220014\nvt 0.604411 0.214330\nvt 0.608026 0.214330\nvt 0.608026 0.214330\nvt 0.608352 0.220013\nvt 0.604087 0.220014\nvt 0.600472 0.220014\nvt 0.600797 0.214330\nvt 0.604411 0.214330\nvt 0.604411 0.214330\nvt 0.604737 0.220014\nvt 0.600472 0.220014\nvt 0.596857 0.220014\nvt 0.597182 0.214330\nvt 0.600797 0.214330\nvt 0.600797 0.214330\nvt 0.601122 0.220014\nvt 0.596857 0.220014\nvt 0.693916 0.672660\nvt 0.700363 0.681883\nvt 0.696821 0.683531\nvt 0.703127 0.679123\nvt 0.700363 0.681883\nvt 0.693916 0.672660\nvt 0.693916 0.672660\nvt 0.704782 0.675583\nvt 0.703127 0.679123\nvt 0.705126 0.671691\nvt 0.704782 0.675583\nvt 0.693916 0.672660\nvt 0.693916 0.672660\nvt 0.704118 0.667915\nvt 0.705126 0.671691\nvt 0.701878 0.664711\nvt 0.704118 0.667915\nvt 0.693916 0.672660\nvt 0.693916 0.672660\nvt 0.700377 0.663447\nvt 0.701878 0.664711\nvt 0.693916 0.672660\nvt 0.694904 0.661452\nvt 0.700377 0.663447\nvt 0.694904 0.661452\nvt 0.696836 0.661793\nvt 0.700377 0.663447\nvt 0.693916 0.672660\nvt 0.691011 0.661790\nvt 0.694904 0.661452\nvt 0.687469 0.663438\nvt 0.691011 0.661790\nvt 0.693916 0.672660\nvt 0.693916 0.672660\nvt 0.684704 0.666198\nvt 0.687469 0.663438\nvt 0.683050 0.669738\nvt 0.684704 0.666198\nvt 0.693916 0.672660\nvt 0.693916 0.672660\nvt 0.682706 0.673630\nvt 0.683050 0.669738\nvt 0.683714 0.677406\nvt 0.682706 0.673630\nvt 0.693916 0.672660\nvt 0.693916 0.672660\nvt 0.685953 0.680610\nvt 0.683714 0.677406\nvt 0.689153 0.682855\nvt 0.685953 0.680610\nvt 0.693916 0.672660\nvt 0.693916 0.672660\nvt 0.692928 0.683869\nvt 0.689153 0.682855\nvt 0.696821 0.683531\nvt 0.692928 0.683869\nvt 0.693916 0.672660\nvt 0.680461 0.586359\nvt 0.671572 0.582687\nvt 0.675777 0.571555\nvt 0.675777 0.571555\nvt 0.684807 0.574994\nvt 0.680461 0.586359\nvt 0.684807 0.574994\nvt 0.675777 0.571555\nvt 0.685076 0.562021\nvt 0.685076 0.562021\nvt 0.689340 0.563834\nvt 0.684807 0.574994\nvt 0.691744 0.558263\nvt 0.689340 0.563834\nvt 0.685076 0.562021\nvt 0.671572 0.582687\nvt 0.680461 0.586359\nvt 0.675471 0.597752\nvt 0.675471 0.597752\nvt 0.666909 0.593453\nvt 0.671572 0.582687\nvt 0.666909 0.593453\nvt 0.675471 0.597752\nvt 0.669329 0.608778\nvt 0.669329 0.608778\nvt 0.661239 0.603649\nvt 0.666909 0.593453\nvt 0.661239 0.603649\nvt 0.669329 0.608778\nvt 0.661980 0.619088\nvt 0.661980 0.619088\nvt 0.654481 0.613115\nvt 0.661239 0.603649\nvt 0.654481 0.613115\nvt 0.661980 0.619088\nvt 0.653571 0.628518\nvt 0.653571 0.628518\nvt 0.646748 0.621774\nvt 0.654481 0.613115\nvt 0.646748 0.621774\nvt 0.653571 0.628518\nvt 0.649014 0.632884\nvt 0.649014 0.632884\nvt 0.642555 0.625785\nvt 0.646748 0.621774\nvt 0.642555 0.625785\nvt 0.649014 0.632884\nvt 0.639232 0.640784\nvt 0.639232 0.640784\nvt 0.633568 0.633129\nvt 0.642555 0.625785\nvt 0.633568 0.633129\nvt 0.639232 0.640784\nvt 0.634161 0.644487\nvt 0.634161 0.644487\nvt 0.628824 0.636481\nvt 0.633568 0.633129\nvt 0.628824 0.636481\nvt 0.634161 0.644487\nvt 0.623230 0.650911\nvt 0.623230 0.650911\nvt 0.618830 0.642383\nvt 0.628824 0.636481\nvt 0.618830 0.642383\nvt 0.623230 0.650911\nvt 0.611662 0.656137\nvt 0.611662 0.656137\nvt 0.608236 0.647182\nvt 0.618830 0.642383\nvt 0.608236 0.647182\nvt 0.611662 0.656137\nvt 0.599525 0.660037\nvt 0.599525 0.660037\nvt 0.597145 0.650759\nvt 0.608236 0.647182\nvt 0.597145 0.650759\nvt 0.599525 0.660037\nvt 0.587009 0.662461\nvt 0.587009 0.662461\nvt 0.585665 0.652992\nvt 0.597145 0.650759\nvt 0.585665 0.652992\nvt 0.587009 0.662461\nvt 0.574497 0.663493\nvt 0.574497 0.663493\nvt 0.573900 0.653890\nvt 0.585665 0.652992\nvt 0.573900 0.653890\nvt 0.574497 0.663493\nvt 0.568374 0.663762\nvt 0.568374 0.663762\nvt 0.567937 0.653982\nvt 0.573900 0.653890\nvt 0.722608 0.087881\nvt 0.732859 0.087881\nvt 0.732859 0.091545\nvt 0.732859 0.091545\nvt 0.722608 0.091545\nvt 0.722608 0.087881\nvt 0.722608 0.087881\nvt 0.722608 0.091545\nvt 0.712369 0.091545\nvt 0.712369 0.091545\nvt 0.712369 0.087881\nvt 0.722608 0.087881\nvt 0.702150 0.087881\nvt 0.712369 0.087881\nvt 0.712369 0.091545\nvt 0.712369 0.091545\nvt 0.702150 0.091545\nvt 0.702150 0.087881\nvt 0.691947 0.087881\nvt 0.702150 0.087881\nvt 0.702150 0.091545\nvt 0.702150 0.091545\nvt 0.691947 0.091545\nvt 0.691947 0.087881\nvt 0.681749 0.087881\nvt 0.691947 0.087881\nvt 0.691947 0.091545\nvt 0.691947 0.091545\nvt 0.681749 0.091545\nvt 0.681749 0.087881\nvt 0.671552 0.087881\nvt 0.681749 0.087881\nvt 0.681749 0.091545\nvt 0.681749 0.091545\nvt 0.671552 0.091545\nvt 0.671552 0.087881\nvt 0.738305 0.091545\nvt 0.732859 0.091545\nvt 0.732859 0.087881\nvt 0.732859 0.087881\nvt 0.738305 0.087881\nvt 0.738305 0.091545\nvt 0.666452 0.087881\nvt 0.671552 0.087881\nvt 0.671552 0.091545\nvt 0.671552 0.091545\nvt 0.666452 0.091545\nvt 0.666452 0.087881\nvt 0.623800 0.087881\nvt 0.634049 0.087881\nvt 0.634049 0.091545\nvt 0.634049 0.091545\nvt 0.623800 0.091545\nvt 0.623800 0.087881\nvt 0.613597 0.087881\nvt 0.623800 0.087881\nvt 0.623800 0.091545\nvt 0.623800 0.091545\nvt 0.613597 0.091545\nvt 0.613597 0.087881\nvt 0.603413 0.087881\nvt 0.613597 0.087881\nvt 0.613597 0.091545\nvt 0.613597 0.091545\nvt 0.603413 0.091545\nvt 0.603413 0.087881\nvt 0.593211 0.087881\nvt 0.603413 0.087881\nvt 0.603413 0.091545\nvt 0.603413 0.091545\nvt 0.593211 0.091545\nvt 0.593211 0.087881\nvt 0.593211 0.087881\nvt 0.593211 0.091545\nvt 0.588201 0.091545\nvt 0.588201 0.091545\nvt 0.588201 0.087881\nvt 0.593211 0.087881\nvt 0.639548 0.091545\nvt 0.634049 0.091545\nvt 0.634049 0.087881\nvt 0.634049 0.087881\nvt 0.639548 0.087881\nvt 0.639548 0.091545\nvt 0.720010 0.105103\nvt 0.709476 0.105103\nvt 0.709476 0.101333\nvt 0.709476 0.101333\nvt 0.720010 0.101333\nvt 0.720010 0.105103\nvt 0.720010 0.105103\nvt 0.720010 0.101333\nvt 0.730531 0.101333\nvt 0.730531 0.101333\nvt 0.730531 0.105103\nvt 0.720010 0.105103\nvt 0.735797 0.101333\nvt 0.730531 0.105103\nvt 0.730531 0.101333\nvt 0.735797 0.101333\nvt 0.735797 0.105103\nvt 0.730531 0.105103\nvt 0.735797 0.101333\nvt 0.740739 0.105103\nvt 0.735797 0.105103\nvt 0.735797 0.101333\nvt 0.740739 0.101333\nvt 0.740739 0.105103\nvt 0.709476 0.101333\nvt 0.709476 0.105103\nvt 0.698911 0.105103\nvt 0.698911 0.105103\nvt 0.698911 0.101333\nvt 0.709476 0.101333\nvt 0.698911 0.101333\nvt 0.698911 0.105103\nvt 0.688313 0.105103\nvt 0.688313 0.105103\nvt 0.688313 0.101333\nvt 0.698911 0.101333\nvt 0.688313 0.101333\nvt 0.688313 0.105103\nvt 0.677710 0.105103\nvt 0.677710 0.105103\nvt 0.677710 0.101333\nvt 0.688313 0.101333\nvt 0.677710 0.101333\nvt 0.677710 0.105103\nvt 0.667131 0.105103\nvt 0.667131 0.105103\nvt 0.667131 0.101333\nvt 0.677710 0.101333\nvt 0.661856 0.101333\nvt 0.667131 0.101333\nvt 0.667131 0.105103\nvt 0.667131 0.105103\nvt 0.661856 0.105103\nvt 0.661856 0.101333\nvt 0.651340 0.101333\nvt 0.661856 0.101333\nvt 0.661856 0.105103\nvt 0.661856 0.105103\nvt 0.651340 0.105103\nvt 0.651340 0.101333\nvt 0.651340 0.101333\nvt 0.651340 0.105103\nvt 0.646098 0.105103\nvt 0.646098 0.105103\nvt 0.646098 0.101333\nvt 0.651340 0.101333\nvt 0.646098 0.101333\nvt 0.646098 0.105103\nvt 0.635644 0.105103\nvt 0.635644 0.105103\nvt 0.635644 0.101333\nvt 0.646098 0.101333\nvt 0.635644 0.101333\nvt 0.635644 0.105103\nvt 0.625205 0.105103\nvt 0.625205 0.105103\nvt 0.625205 0.101333\nvt 0.635644 0.101333\nvt 0.625205 0.101333\nvt 0.625205 0.105103\nvt 0.614730 0.105103\nvt 0.614730 0.105103\nvt 0.614730 0.101333\nvt 0.625205 0.101333\nvt 0.614730 0.101333\nvt 0.614730 0.105103\nvt 0.604186 0.105103\nvt 0.604186 0.105103\nvt 0.604186 0.101333\nvt 0.614730 0.101333\nvt 0.604186 0.101333\nvt 0.604186 0.105103\nvt 0.593599 0.105103\nvt 0.593599 0.105103\nvt 0.593599 0.101333\nvt 0.604186 0.101333\nvt 0.588201 0.101333\nvt 0.593599 0.101333\nvt 0.593599 0.105103\nvt 0.593599 0.105103\nvt 0.588201 0.105103\nvt 0.588201 0.101333\nvt 0.651798 0.091545\nvt 0.648821 0.091545\nvt 0.648821 0.087881\nvt 0.651798 0.091545\nvt 0.648821 0.087881\nvt 0.654236 0.087881\nvt 0.651798 0.091545\nvt 0.654236 0.087881\nvt 0.654236 0.091545\nvt 0.648821 0.087881\nvt 0.648821 0.091545\nvt 0.646742 0.091545\nvt 0.646742 0.091545\nvt 0.646742 0.087881\nvt 0.648821 0.087881\nvt 0.646742 0.087881\nvt 0.646742 0.091545\nvt 0.644581 0.091545\nvt 0.644581 0.091545\nvt 0.644581 0.087881\nvt 0.646742 0.087881\nvt 0.644581 0.087881\nvt 0.644581 0.091545\nvt 0.642682 0.091545\nvt 0.642682 0.091545\nvt 0.642682 0.087881\nvt 0.644581 0.087881\nvt 0.642682 0.087881\nvt 0.642682 0.091545\nvt 0.639548 0.091545\nvt 0.639548 0.091545\nvt 0.639548 0.087881\nvt 0.642682 0.087881\nvt 0.654236 0.091545\nvt 0.654236 0.087881\nvt 0.656383 0.087881\nvt 0.656383 0.087881\nvt 0.656383 0.091545\nvt 0.654236 0.091545\nvt 0.656383 0.091545\nvt 0.656383 0.087881\nvt 0.657954 0.087881\nvt 0.657954 0.087881\nvt 0.657954 0.091545\nvt 0.656383 0.091545\nvt 0.657954 0.091545\nvt 0.657954 0.087881\nvt 0.661293 0.087881\nvt 0.661293 0.087881\nvt 0.661293 0.091545\nvt 0.657954 0.091545\nvt 0.661293 0.091545\nvt 0.661293 0.087881\nvt 0.666452 0.087881\nvt 0.666452 0.087881\nvt 0.666452 0.091545\nvt 0.661293 0.091545\nvt 0.366596 0.402816\nvt 0.366565 0.396732\nvt 0.376990 0.396522\nvt 0.376990 0.396522\nvt 0.377642 0.402801\nvt 0.366596 0.402816\nvt 0.374313 0.391740\nvt 0.376990 0.396522\nvt 0.366565 0.396732\nvt 0.374313 0.391740\nvt 0.375964 0.393244\nvt 0.376990 0.396522\nvt 0.375964 0.393244\nvt 0.376854 0.395777\nvt 0.376990 0.396522\nvt 0.374313 0.391740\nvt 0.366565 0.396732\nvt 0.366565 0.395848\nvt 0.374313 0.391740\nvt 0.366565 0.395848\nvt 0.367044 0.393278\nvt 0.374313 0.391740\nvt 0.367044 0.393278\nvt 0.368568 0.391749\nvt 0.342700 0.357298\nvt 0.343213 0.366396\nvt 0.342700 0.357298\nvt 0.347305 0.357350\nvt 0.349192 0.366469\nvt 0.347305 0.357350\nvt 0.462190 0.352786\nvt 0.466215 0.360969\nvt 0.462190 0.352786\nvt 0.451920 0.356370\nvt 0.462190 0.352786\nvt 0.451920 0.356370\nvt 0.447893 0.356424\nvt 0.451920 0.356370\nvt 0.447893 0.356424\nvt 0.462190 0.352786\nvt 0.462190 0.352786\nvt 0.464125 0.350623\nvt 0.464125 0.350623\nvt 0.464125 0.350623\nvt 0.464893 0.347826\nvt 0.444686 0.356059\nvt 0.447893 0.356424\nvt 0.444686 0.356059\nvt 0.436207 0.353935\nvt 0.444686 0.356059\nvt 0.436207 0.353935\nvt 0.436207 0.353935\nvt 0.408801 0.348597\nvt 0.436207 0.353935\nvt 0.380007 0.349330\nvt 0.408801 0.348597\nvt 0.380007 0.349330\nvt 0.368474 0.351492\nvt 0.380007 0.349330\nvt 0.368474 0.351492\nvt 0.361708 0.352925\nvt 0.368474 0.351492\nvt 0.361708 0.352925\nvt 0.350164 0.356104\nvt 0.361708 0.352925\nvt 0.350164 0.356104\nvt 0.347305 0.357350\nvt 0.350164 0.356104\nvt 0.347305 0.357350\nvt 0.347305 0.357350\nvt 0.342700 0.357298\nvt 0.347305 0.357350\nvt 0.339305 0.355936\nvt 0.342700 0.357298\nvt 0.339305 0.355936\nvt 0.322085 0.352546\nvt 0.339305 0.355936\nvt 0.322085 0.352546\nvt 0.313275 0.351689\nvt 0.322085 0.352546\nvt 0.313275 0.351689\nvt 0.300509 0.350892\nvt 0.313275 0.351689\nvt 0.300509 0.350892\nvt 0.300509 0.350892\nvt 0.270775 0.351245\nvt 0.300509 0.350892\nvt 0.270775 0.351245\nvt 0.243475 0.353700\nvt 0.270775 0.351245\nvt 0.236157 0.353727\nvt 0.243475 0.353700\nvt 0.236157 0.353727\nvt 0.746038 0.236970\nvt 0.745547 0.241583\nvt 0.745547 0.241583\nvt 0.747927 0.237392\nvt 0.746998 0.241843\nvt 0.746998 0.241843\nvt 0.673692 0.241264\nvt 0.673942 0.236759\nvt 0.673942 0.236759\nvt 0.672027 0.241295\nvt 0.671945 0.236821\nvt 0.671945 0.236821\nvt 0.694857 0.241449\nvt 0.690759 0.241446\nvt 0.690759 0.241446\nvt 0.676082 0.241360\nvt 0.690759 0.241446\nvt 0.676082 0.241360\nvt 0.676082 0.241360\nvt 0.673692 0.241264\nvt 0.673692 0.241264\nvt 0.673692 0.241264\nvt 0.672027 0.241295\nvt 0.672027 0.241295\nvt 0.672027 0.241295\nvt 0.670717 0.241537\nvt 0.670717 0.241537\nvt 0.670717 0.241537\nvt 0.669223 0.241688\nvt 0.669223 0.241688\nvt 0.627143 0.241442\nvt 0.627143 0.241442\nvt 0.694857 0.241449\nvt 0.696922 0.241551\nvt 0.694857 0.241449\nvt 0.696922 0.241551\nvt 0.698604 0.241673\nvt 0.696922 0.241551\nvt 0.698604 0.241673\nvt 0.698604 0.241673\nvt 0.718699 0.241461\nvt 0.698604 0.241673\nvt 0.720290 0.241371\nvt 0.718699 0.241461\nvt 0.720290 0.241371\nvt 0.722375 0.241274\nvt 0.720290 0.241371\nvt 0.722375 0.241274\nvt 0.726793 0.241287\nvt 0.722375 0.241274\nvt 0.726793 0.241287\nvt 0.743113 0.241491\nvt 0.726793 0.241287\nvt 0.743113 0.241491\nvt 0.745547 0.241583\nvt 0.743113 0.241491\nvt 0.745547 0.241583\nvt 0.746998 0.241843\nvt 0.745547 0.241583\nvt 0.746998 0.241843\nvt 0.747983 0.242393\nvt 0.746998 0.241843\nvt 0.747983 0.242393\nvt 0.749099 0.243056\nvt 0.747983 0.242393\nvt 0.749099 0.243056\nvt 0.444597 0.122412\nvt 0.395702 0.121227\nvt 0.399479 0.276859\nvt 0.401321 0.300867\nvt 0.399479 0.276859\nvt 0.407009 0.275733\nvt 0.408622 0.299003\nvt 0.407009 0.275733\nvt 0.753555 0.298263\nvt 0.748616 0.277063\nvt 0.422372 0.483414\nvt 0.422372 0.483414\nvt 0.419105 0.498095\nvt 0.425059 0.469181\nvt 0.422372 0.483414\nvt 0.425059 0.469181\nvt 0.441170 0.372172\nvt 0.441170 0.369072\nvt 0.441170 0.369072\nvt 0.785353 0.088597\nvt 0.788023 0.088597\nvt 0.788023 0.089864\nvt 0.788023 0.089864\nvt 0.785353 0.089864\nvt 0.785353 0.088597\nvt 0.785353 0.088597\nvt 0.785353 0.089864\nvt 0.782686 0.089864\nvt 0.782686 0.089864\nvt 0.782686 0.088597\nvt 0.785353 0.088597\nvt 0.788023 0.089864\nvt 0.788023 0.088597\nvt 0.790688 0.088597\nvt 0.790688 0.088597\nvt 0.790688 0.089864\nvt 0.788023 0.089864\nvt 0.793352 0.089794\nvt 0.790688 0.089864\nvt 0.790688 0.088597\nvt 0.790688 0.088597\nvt 0.793336 0.088415\nvt 0.793352 0.089794\nvt 0.780030 0.088597\nvt 0.782686 0.088597\nvt 0.782686 0.089864\nvt 0.782686 0.089864\nvt 0.780030 0.089864\nvt 0.780030 0.088597\nvt 0.780030 0.088597\nvt 0.780030 0.089864\nvt 0.777377 0.089864\nvt 0.777377 0.089864\nvt 0.777377 0.088597\nvt 0.780030 0.088597\nvt 0.774732 0.088597\nvt 0.777377 0.088597\nvt 0.777377 0.089864\nvt 0.777377 0.089864\nvt 0.774732 0.089864\nvt 0.774732 0.088597\nvt 0.774732 0.088597\nvt 0.774732 0.089864\nvt 0.772088 0.089864\nvt 0.772088 0.089864\nvt 0.772088 0.088597\nvt 0.774732 0.088597\nvt 0.769445 0.088597\nvt 0.772088 0.088597\nvt 0.772088 0.089864\nvt 0.772088 0.089864\nvt 0.769445 0.089864\nvt 0.769445 0.088597\nvt 0.769445 0.088597\nvt 0.769445 0.089864\nvt 0.766796 0.089864\nvt 0.766796 0.089864\nvt 0.766796 0.088597\nvt 0.769445 0.088597\nvt 0.764143 0.088597\nvt 0.766796 0.088597\nvt 0.766796 0.089864\nvt 0.766796 0.089864\nvt 0.764143 0.089864\nvt 0.764143 0.088597\nvt 0.764143 0.088597\nvt 0.764143 0.089864\nvt 0.761481 0.089864\nvt 0.761481 0.089864\nvt 0.761481 0.088597\nvt 0.764143 0.088597\nvt 0.758813 0.088597\nvt 0.761481 0.088597\nvt 0.761481 0.089864\nvt 0.761481 0.089864\nvt 0.758813 0.089864\nvt 0.758813 0.088597\nvt 0.758813 0.088597\nvt 0.758813 0.089864\nvt 0.756135 0.089864\nvt 0.756135 0.089864\nvt 0.756135 0.088597\nvt 0.758813 0.088597\nvt 0.753459 0.088597\nvt 0.756135 0.088597\nvt 0.756135 0.089864\nvt 0.756135 0.089864\nvt 0.753459 0.089864\nvt 0.753459 0.088597\nvt 0.753459 0.088597\nvt 0.753459 0.089864\nvt 0.750798 0.089864\nvt 0.750798 0.089864\nvt 0.750798 0.088597\nvt 0.753459 0.088597\nvt 0.750798 0.092546\nvt 0.750798 0.089864\nvt 0.753459 0.089864\nvt 0.750798 0.089864\nvt 0.750798 0.092546\nvt 0.748282 0.092546\nvt 0.748282 0.092546\nvt 0.748285 0.089863\nvt 0.750798 0.089864\nvt 0.753459 0.089864\nvt 0.753459 0.092546\nvt 0.750798 0.092546\nvt 0.753459 0.092546\nvt 0.753459 0.089864\nvt 0.756135 0.089864\nvt 0.756135 0.089864\nvt 0.756135 0.092546\nvt 0.753459 0.092546\nvt 0.756135 0.092546\nvt 0.756135 0.089864\nvt 0.758813 0.089864\nvt 0.758813 0.089864\nvt 0.758813 0.092546\nvt 0.756135 0.092546\nvt 0.758813 0.092546\nvt 0.758813 0.089864\nvt 0.761481 0.089864\nvt 0.761481 0.089864\nvt 0.761481 0.092546\nvt 0.758813 0.092546\nvt 0.764143 0.089864\nvt 0.764143 0.092546\nvt 0.761481 0.092546\nvt 0.761481 0.092546\nvt 0.761481 0.089864\nvt 0.764143 0.089864\nvt 0.764143 0.092546\nvt 0.764143 0.089864\nvt 0.766796 0.089864\nvt 0.766796 0.089864\nvt 0.766796 0.092546\nvt 0.764143 0.092546\nvt 0.766796 0.092546\nvt 0.766796 0.089864\nvt 0.769445 0.089864\nvt 0.769445 0.089864\nvt 0.769445 0.092546\nvt 0.766796 0.092546\nvt 0.769445 0.092546\nvt 0.769445 0.089864\nvt 0.772088 0.089864\nvt 0.772088 0.089864\nvt 0.772088 0.092546\nvt 0.769445 0.092546\nvt 0.772088 0.092546\nvt 0.772088 0.089864\nvt 0.774732 0.089864\nvt 0.774732 0.089864\nvt 0.774732 0.092546\nvt 0.772088 0.092546\nvt 0.774732 0.092546\nvt 0.774732 0.089864\nvt 0.777377 0.089864\nvt 0.777377 0.089864\nvt 0.777377 0.092546\nvt 0.774732 0.092546\nvt 0.777377 0.092546\nvt 0.777377 0.089864\nvt 0.780030 0.089864\nvt 0.780030 0.089864\nvt 0.780030 0.092546\nvt 0.777377 0.092546\nvt 0.780030 0.092546\nvt 0.780030 0.089864\nvt 0.782686 0.089864\nvt 0.782686 0.089864\nvt 0.782686 0.092546\nvt 0.780030 0.092546\nvt 0.782686 0.092546\nvt 0.782686 0.089864\nvt 0.785353 0.089864\nvt 0.785353 0.089864\nvt 0.785353 0.092546\nvt 0.782686 0.092546\nvt 0.785353 0.092546\nvt 0.785353 0.089864\nvt 0.788023 0.089864\nvt 0.788023 0.089864\nvt 0.788023 0.092546\nvt 0.785353 0.092546\nvt 0.788023 0.092546\nvt 0.788023 0.089864\nvt 0.790688 0.089864\nvt 0.790688 0.089864\nvt 0.790688 0.092546\nvt 0.788023 0.092546\nvt 0.577981 0.117542\nvt 0.576672 0.116828\nvt 0.577183 0.115195\nvt 0.577183 0.115195\nvt 0.578665 0.115355\nvt 0.577981 0.117542\nvt 0.578665 0.115355\nvt 0.577183 0.115195\nvt 0.577031 0.113486\nvt 0.577031 0.113486\nvt 0.578461 0.113065\nvt 0.578665 0.115355\nvt 0.578461 0.113065\nvt 0.577031 0.113486\nvt 0.576237 0.111969\nvt 0.576237 0.111969\nvt 0.577398 0.111034\nvt 0.578461 0.113065\nvt 0.577398 0.111034\nvt 0.576237 0.111969\nvt 0.574920 0.110868\nvt 0.574920 0.110868\nvt 0.575634 0.109560\nvt 0.577398 0.111034\nvt 0.575634 0.109560\nvt 0.574920 0.110868\nvt 0.573288 0.110357\nvt 0.573288 0.110357\nvt 0.573447 0.108875\nvt 0.575634 0.109560\nvt 0.573447 0.108875\nvt 0.573288 0.110357\nvt 0.571578 0.110510\nvt 0.571578 0.110510\nvt 0.571157 0.109080\nvt 0.573447 0.108875\nvt 0.571157 0.109080\nvt 0.571578 0.110510\nvt 0.570062 0.111303\nvt 0.570062 0.111303\nvt 0.569127 0.110142\nvt 0.571157 0.109080\nvt 0.569127 0.110142\nvt 0.570062 0.111303\nvt 0.568961 0.112620\nvt 0.568961 0.112620\nvt 0.567652 0.111906\nvt 0.569127 0.110142\nvt 0.567652 0.111906\nvt 0.568961 0.112620\nvt 0.568449 0.114253\nvt 0.568449 0.114253\nvt 0.566968 0.114093\nvt 0.567652 0.111906\nvt 0.566968 0.114093\nvt 0.568449 0.114253\nvt 0.568602 0.115963\nvt 0.568602 0.115963\nvt 0.567172 0.116383\nvt 0.566968 0.114093\nvt 0.567172 0.116383\nvt 0.568602 0.115963\nvt 0.569395 0.117479\nvt 0.569395 0.117479\nvt 0.568234 0.118414\nvt 0.567172 0.116383\nvt 0.568234 0.118414\nvt 0.569395 0.117479\nvt 0.570712 0.118580\nvt 0.570712 0.118580\nvt 0.569999 0.119888\nvt 0.568234 0.118414\nvt 0.569999 0.119888\nvt 0.570712 0.118580\nvt 0.572345 0.119091\nvt 0.572345 0.119091\nvt 0.572186 0.120573\nvt 0.569999 0.119888\nvt 0.572186 0.120573\nvt 0.572345 0.119091\nvt 0.574055 0.118938\nvt 0.574055 0.118938\nvt 0.574475 0.120368\nvt 0.572186 0.120573\nvt 0.574475 0.120368\nvt 0.574055 0.118938\nvt 0.575571 0.118145\nvt 0.575571 0.118145\nvt 0.576506 0.119306\nvt 0.574475 0.120368\nvt 0.576506 0.119306\nvt 0.575571 0.118145\nvt 0.576672 0.116828\nvt 0.576672 0.116828\nvt 0.577981 0.117542\nvt 0.576506 0.119306\nvt 0.789858 0.051284\nvt 0.789858 0.052171\nvt 0.788306 0.052171\nvt 0.788306 0.052171\nvt 0.788306 0.051284\nvt 0.789858 0.051284\nvt 0.788306 0.051284\nvt 0.788306 0.052171\nvt 0.786752 0.052171\nvt 0.786752 0.052171\nvt 0.786752 0.051284\nvt 0.788306 0.051284\nvt 0.786752 0.051284\nvt 0.786752 0.052171\nvt 0.785200 0.052171\nvt 0.785200 0.052171\nvt 0.785200 0.051284\nvt 0.786752 0.051284\nvt 0.785200 0.051284\nvt 0.785200 0.052171\nvt 0.783646 0.052171\nvt 0.783646 0.052171\nvt 0.783646 0.051284\nvt 0.785200 0.051284\nvt 0.783646 0.051284\nvt 0.783646 0.052171\nvt 0.782119 0.052184\nvt 0.782119 0.052184\nvt 0.782105 0.051297\nvt 0.783646 0.051284\nvt 0.789858 0.052171\nvt 0.789858 0.051284\nvt 0.791412 0.051284\nvt 0.791412 0.051284\nvt 0.791412 0.052171\nvt 0.789858 0.052171\nvt 0.791412 0.052171\nvt 0.791412 0.051284\nvt 0.792965 0.051284\nvt 0.792965 0.051284\nvt 0.792965 0.052171\nvt 0.791412 0.052171\nvt 0.792965 0.052171\nvt 0.792965 0.051284\nvt 0.794519 0.051284\nvt 0.794519 0.051284\nvt 0.794519 0.052171\nvt 0.792965 0.052171\nvt 0.794519 0.052171\nvt 0.794519 0.051284\nvt 0.796072 0.051284\nvt 0.796072 0.051284\nvt 0.796072 0.052171\nvt 0.794519 0.052171\nvt 0.796072 0.052171\nvt 0.796072 0.051284\nvt 0.797626 0.051284\nvt 0.797626 0.051284\nvt 0.797626 0.052171\nvt 0.796072 0.052171\nvt 0.797626 0.052171\nvt 0.797626 0.051284\nvt 0.799180 0.051284\nvt 0.799180 0.051284\nvt 0.799180 0.052171\nvt 0.797626 0.052171\nvt 0.799180 0.052171\nvt 0.799180 0.051284\nvt 0.800735 0.051284\nvt 0.800735 0.051284\nvt 0.800735 0.052171\nvt 0.799180 0.052171\nvt 0.800735 0.052171\nvt 0.800735 0.051284\nvt 0.802289 0.051284\nvt 0.802289 0.051284\nvt 0.802289 0.052171\nvt 0.800735 0.052171\nvt 0.802289 0.052171\nvt 0.802289 0.051284\nvt 0.803844 0.051284\nvt 0.803844 0.051284\nvt 0.803844 0.052171\nvt 0.802289 0.052171\nvt 0.803844 0.052171\nvt 0.803844 0.051284\nvt 0.805397 0.051284\nvt 0.805397 0.051284\nvt 0.805397 0.052171\nvt 0.803844 0.052171\nvt 0.805397 0.052171\nvt 0.805397 0.051284\nvt 0.806952 0.051284\nvt 0.806952 0.051284\nvt 0.806952 0.052171\nvt 0.805397 0.052171\nvt 0.824387 0.030682\nvt 0.822870 0.030682\nvt 0.822870 0.029845\nvt 0.822870 0.029845\nvt 0.824387 0.029845\nvt 0.824387 0.030682\nvt 0.824387 0.030682\nvt 0.824387 0.029845\nvt 0.825900 0.029845\nvt 0.825900 0.029845\nvt 0.825900 0.030682\nvt 0.824387 0.030682\nvt 0.827407 0.030682\nvt 0.825900 0.030682\nvt 0.825900 0.029845\nvt 0.825900 0.029845\nvt 0.827407 0.029845\nvt 0.827407 0.030682\nvt 0.827407 0.030682\nvt 0.827407 0.029845\nvt 0.828921 0.029845\nvt 0.828921 0.029845\nvt 0.828921 0.030682\nvt 0.827407 0.030682\nvt 0.822870 0.029845\nvt 0.822870 0.030682\nvt 0.821350 0.030682\nvt 0.821350 0.030682\nvt 0.821350 0.029845\nvt 0.822870 0.029845\nvt 0.819832 0.029845\nvt 0.821350 0.029845\nvt 0.821350 0.030682\nvt 0.821350 0.030682\nvt 0.819832 0.030682\nvt 0.819832 0.029845\nvt 0.819832 0.029845\nvt 0.819832 0.030682\nvt 0.818313 0.030682\nvt 0.818313 0.030682\nvt 0.818313 0.029845\nvt 0.819832 0.029845\nvt 0.816796 0.029845\nvt 0.818313 0.029845\nvt 0.818313 0.030682\nvt 0.818313 0.030682\nvt 0.816796 0.030682\nvt 0.816796 0.029845\nvt 0.816796 0.029845\nvt 0.816796 0.030682\nvt 0.815278 0.030682\nvt 0.815278 0.030682\nvt 0.815278 0.029845\nvt 0.816796 0.029845\nvt 0.813761 0.029845\nvt 0.815278 0.029845\nvt 0.815278 0.030682\nvt 0.815278 0.030682\nvt 0.813761 0.030682\nvt 0.813761 0.029845\nvt 0.813761 0.029845\nvt 0.813761 0.030682\nvt 0.812242 0.030682\nvt 0.812242 0.030682\nvt 0.812242 0.029845\nvt 0.813761 0.029845\nvt 0.810723 0.029845\nvt 0.812242 0.029845\nvt 0.812242 0.030682\nvt 0.812242 0.030682\nvt 0.810723 0.030682\nvt 0.810723 0.029845\nvt 0.810723 0.029845\nvt 0.810723 0.030682\nvt 0.809201 0.030682\nvt 0.809201 0.030682\nvt 0.809201 0.029845\nvt 0.810723 0.029845\nvt 0.807679 0.029845\nvt 0.809201 0.029845\nvt 0.809201 0.030682\nvt 0.809201 0.030682\nvt 0.807679 0.030682\nvt 0.807679 0.029845\nvt 0.807679 0.029845\nvt 0.807679 0.030682\nvt 0.806157 0.030682\nvt 0.806157 0.030682\nvt 0.806157 0.029845\nvt 0.807679 0.029845\nvt 0.804704 0.029782\nvt 0.806157 0.029845\nvt 0.806198 0.030604\nvt 0.806198 0.030604\nvt 0.804635 0.030536\nvt 0.804704 0.029782\nvt 0.864375 0.364340\nvt 0.864828 0.365800\nvt 0.864688 0.367328\nvt 0.864375 0.364340\nvt 0.864688 0.367328\nvt 0.862040 0.362449\nvt 0.864688 0.367328\nvt 0.857162 0.365097\nvt 0.862040 0.362449\nvt 0.864688 0.367328\nvt 0.859809 0.369976\nvt 0.857162 0.365097\nvt 0.864688 0.367328\nvt 0.862797 0.369662\nvt 0.859809 0.369976\nvt 0.864688 0.367328\nvt 0.863976 0.368681\nvt 0.862797 0.369662\nvt 0.862797 0.369662\nvt 0.861337 0.370116\nvt 0.859809 0.369976\nvt 0.859809 0.369976\nvt 0.857475 0.368085\nvt 0.857162 0.365097\nvt 0.859809 0.369976\nvt 0.858456 0.369264\nvt 0.857475 0.368085\nvt 0.857475 0.368085\nvt 0.857021 0.366624\nvt 0.857162 0.365097\nvt 0.857162 0.365097\nvt 0.859053 0.362763\nvt 0.862040 0.362449\nvt 0.857162 0.365097\nvt 0.857873 0.363743\nvt 0.859053 0.362763\nvt 0.859053 0.362763\nvt 0.860513 0.362309\nvt 0.862040 0.362449\nvt 0.864375 0.364340\nvt 0.862040 0.362449\nvt 0.863394 0.363161\nvt 0.805966 0.313417\nvt 0.803574 0.316568\nvt 0.774246 0.317440\nvt 0.774246 0.317440\nvt 0.776653 0.314178\nvt 0.805966 0.313417\nvt 0.803574 0.316568\nvt 0.805966 0.313417\nvt 0.818459 0.312674\nvt 0.818459 0.312674\nvt 0.815986 0.315595\nvt 0.803574 0.316568\nvt 0.822479 0.307259\nvt 0.818459 0.312674\nvt 0.805966 0.313417\nvt 0.805966 0.313417\nvt 0.810501 0.307577\nvt 0.822479 0.307259\nvt 0.810501 0.307577\nvt 0.805966 0.313417\nvt 0.776653 0.314178\nvt 0.776653 0.314178\nvt 0.781566 0.308082\nvt 0.810501 0.307577\nvt 0.776653 0.314178\nvt 0.774246 0.317440\nvt 0.749444 0.316566\nvt 0.749444 0.316566\nvt 0.751452 0.313188\nvt 0.776653 0.314178\nvt 0.781566 0.308082\nvt 0.776653 0.314178\nvt 0.751452 0.313188\nvt 0.751452 0.313188\nvt 0.755390 0.306850\nvt 0.781566 0.308082\nvt 0.784063 0.305236\nvt 0.781566 0.308082\nvt 0.755390 0.306850\nvt 0.810501 0.307577\nvt 0.781566 0.308082\nvt 0.784063 0.305236\nvt 0.755390 0.306850\nvt 0.757312 0.303876\nvt 0.784063 0.305236\nvt 0.757312 0.303876\nvt 0.755390 0.306850\nvt 0.743960 0.305695\nvt 0.757312 0.303876\nvt 0.743960 0.305695\nvt 0.746475 0.304466\nvt 0.757312 0.303876\nvt 0.746475 0.304466\nvt 0.749640 0.303758\nvt 0.755390 0.306850\nvt 0.751452 0.313188\nvt 0.741088 0.312158\nvt 0.741088 0.312158\nvt 0.743960 0.305695\nvt 0.755390 0.306850\nvt 0.741088 0.312158\nvt 0.751452 0.313188\nvt 0.749444 0.316566\nvt 0.822479 0.307259\nvt 0.810501 0.307577\nvt 0.812656 0.304875\nvt 0.784063 0.305236\nvt 0.812656 0.304875\nvt 0.810501 0.307577\nvt 0.812656 0.304875\nvt 0.824045 0.304752\nvt 0.822479 0.307259\nvt 0.741088 0.312158\nvt 0.749444 0.316566\nvt 0.744047 0.315353\nvt 0.741088 0.312158\nvt 0.744047 0.315353\nvt 0.741708 0.313479\nvt 0.822479 0.307259\nvt 0.824045 0.304752\nvt 0.830491 0.305562\nvt 0.829997 0.307569\nvt 0.830491 0.305562\nvt 0.840011 0.308737\nvt 0.840011 0.308737\nvt 0.841136 0.309246\nvt 0.829997 0.307569\nvt 0.829997 0.307569\nvt 0.841136 0.309246\nvt 0.841101 0.310070\nvt 0.841101 0.310070\nvt 0.826962 0.311963\nvt 0.829997 0.307569\nvt 0.822479 0.307259\nvt 0.829997 0.307569\nvt 0.826962 0.311963\nvt 0.830491 0.305562\nvt 0.829997 0.307569\nvt 0.822479 0.307259\nvt 0.826962 0.311963\nvt 0.818459 0.312674\nvt 0.822479 0.307259\nvt 0.818459 0.312674\nvt 0.826962 0.311963\nvt 0.824428 0.314354\nvt 0.824428 0.314354\nvt 0.815986 0.315595\nvt 0.818459 0.312674\nvt 0.826962 0.311963\nvt 0.841101 0.310070\nvt 0.839519 0.310711\nvt 0.839519 0.310711\nvt 0.824428 0.314354\nvt 0.826962 0.311963\nvt 0.270775 0.351245\nvt 0.270826 0.359882\nvt 0.241015 0.362272\nvt 0.241015 0.362272\nvt 0.243475 0.353700\nvt 0.270775 0.351245\nvt 0.243475 0.353700\nvt 0.241015 0.362272\nvt 0.232056 0.363118\nvt 0.232056 0.363118\nvt 0.236157 0.353727\nvt 0.243475 0.353700\nvt 0.270826 0.359882\nvt 0.270775 0.351245\nvt 0.300509 0.350892\nvt 0.300509 0.350892\nvt 0.300257 0.359525\nvt 0.270826 0.359882\nvt 0.300257 0.359525\nvt 0.300509 0.350892\nvt 0.313275 0.351689\nvt 0.313275 0.351689\nvt 0.312829 0.360335\nvt 0.300257 0.359525\nvt 0.321690 0.361406\nvt 0.312829 0.360335\nvt 0.313275 0.351689\nvt 0.313275 0.351689\nvt 0.322085 0.352546\nvt 0.321690 0.361406\nvt 0.321690 0.361406\nvt 0.322085 0.352546\nvt 0.339305 0.355936\nvt 0.339305 0.355936\nvt 0.339192 0.365526\nvt 0.321690 0.361406\nvt 0.339192 0.365526\nvt 0.339305 0.355936\nvt 0.342700 0.357298\nvt 0.342700 0.357298\nvt 0.343213 0.366396\nvt 0.339192 0.365526\nvt 0.343213 0.366396\nvt 0.342700 0.357298\nvt 0.347305 0.357350\nvt 0.347305 0.357350\nvt 0.349192 0.366469\nvt 0.343213 0.366396\nvt 0.349192 0.366469\nvt 0.347305 0.357350\nvt 0.350164 0.356104\nvt 0.350164 0.356104\nvt 0.352259 0.365591\nvt 0.349192 0.366469\nvt 0.352259 0.365591\nvt 0.350164 0.356104\nvt 0.361708 0.352925\nvt 0.361708 0.352925\nvt 0.363566 0.361708\nvt 0.352259 0.365591\nvt 0.363566 0.361708\nvt 0.361708 0.352925\nvt 0.368474 0.351492\nvt 0.368474 0.351492\nvt 0.370159 0.360258\nvt 0.363566 0.361708\nvt 0.370159 0.360258\nvt 0.368474 0.351492\nvt 0.380007 0.349330\nvt 0.380007 0.349330\nvt 0.381062 0.358167\nvt 0.370159 0.360258\nvt 0.381062 0.358167\nvt 0.380007 0.349330\nvt 0.408801 0.348597\nvt 0.408801 0.348597\nvt 0.408422 0.357556\nvt 0.381062 0.358167\nvt 0.408422 0.357556\nvt 0.408801 0.348597\nvt 0.436207 0.353935\nvt 0.436207 0.353935\nvt 0.435773 0.363298\nvt 0.408422 0.357556\nvt 0.435773 0.363298\nvt 0.436207 0.353935\nvt 0.444686 0.356059\nvt 0.444686 0.356059\nvt 0.444883 0.365643\nvt 0.435773 0.363298\nvt 0.444883 0.365643\nvt 0.444686 0.356059\nvt 0.447893 0.356424\nvt 0.447893 0.356424\nvt 0.447909 0.365988\nvt 0.444883 0.365643\nvt 0.447909 0.365988\nvt 0.447893 0.356424\nvt 0.451920 0.356370\nvt 0.451920 0.356370\nvt 0.453096 0.365704\nvt 0.447909 0.365988\nvt 0.453096 0.365704\nvt 0.451920 0.356370\nvt 0.462190 0.352786\nvt 0.462190 0.352786\nvt 0.466215 0.360969\nvt 0.453096 0.365704\nvt 0.466215 0.360969\nvt 0.462190 0.352786\nvt 0.464125 0.350623\nvt 0.464125 0.350623\nvt 0.469140 0.358507\nvt 0.466215 0.360969\nvt 0.469140 0.358507\nvt 0.464125 0.350623\nvt 0.464893 0.347826\nvt 0.464893 0.347826\nvt 0.471216 0.356378\nvt 0.469140 0.358507\nvt 0.458498 0.350101\nvt 0.462190 0.352786\nvt 0.451920 0.356370\nvt 0.451920 0.356370\nvt 0.450966 0.352893\nvt 0.458498 0.350101\nvt 0.450966 0.352893\nvt 0.451920 0.356370\nvt 0.447893 0.356424\nvt 0.447893 0.356424\nvt 0.447643 0.352735\nvt 0.450966 0.352893\nvt 0.462190 0.352786\nvt 0.458498 0.350101\nvt 0.459500 0.348710\nvt 0.459500 0.348710\nvt 0.464125 0.350623\nvt 0.462190 0.352786\nvt 0.464125 0.350623\nvt 0.459500 0.348710\nvt 0.459997 0.345698\nvt 0.459997 0.345698\nvt 0.464893 0.347826\nvt 0.464125 0.350623\nvt 0.447643 0.352735\nvt 0.447893 0.356424\nvt 0.444686 0.356059\nvt 0.444686 0.356059\nvt 0.443925 0.352202\nvt 0.447643 0.352735\nvt 0.443925 0.352202\nvt 0.444686 0.356059\nvt 0.436207 0.353935\nvt 0.436207 0.353935\nvt 0.436069 0.350173\nvt 0.443925 0.352202\nvt 0.409117 0.345042\nvt 0.436069 0.350173\nvt 0.436207 0.353935\nvt 0.436207 0.353935\nvt 0.408801 0.348597\nvt 0.409117 0.345042\nvt 0.409117 0.345042\nvt 0.408801 0.348597\nvt 0.380007 0.349330\nvt 0.380007 0.349330\nvt 0.379776 0.345754\nvt 0.409117 0.345042\nvt 0.379776 0.345754\nvt 0.380007 0.349330\nvt 0.368474 0.351492\nvt 0.368474 0.351492\nvt 0.368013 0.347926\nvt 0.379776 0.345754\nvt 0.368013 0.347926\nvt 0.368474 0.351492\nvt 0.361708 0.352925\nvt 0.361708 0.352925\nvt 0.361006 0.349391\nvt 0.368013 0.347926\nvt 0.361006 0.349391\nvt 0.361708 0.352925\nvt 0.350164 0.356104\nvt 0.350164 0.356104\nvt 0.349013 0.352659\nvt 0.361006 0.349391\nvt 0.349013 0.352659\nvt 0.350164 0.356104\nvt 0.347305 0.357350\nvt 0.347305 0.357350\nvt 0.346727 0.353459\nvt 0.349013 0.352659\nvt 0.342926 0.353485\nvt 0.346727 0.353459\nvt 0.347305 0.357350\nvt 0.347305 0.357350\nvt 0.342700 0.357298\nvt 0.342926 0.353485\nvt 0.342926 0.353485\nvt 0.342700 0.357298\nvt 0.339305 0.355936\nvt 0.339305 0.355936\nvt 0.340109 0.352479\nvt 0.342926 0.353485\nvt 0.340109 0.352479\nvt 0.339305 0.355936\nvt 0.322085 0.352546\nvt 0.322085 0.352546\nvt 0.322627 0.349001\nvt 0.340109 0.352479\nvt 0.322627 0.349001\nvt 0.322085 0.352546\nvt 0.313275 0.351689\nvt 0.313275 0.351689\nvt 0.313629 0.348135\nvt 0.322627 0.349001\nvt 0.313629 0.348135\nvt 0.313275 0.351689\nvt 0.300509 0.350892\nvt 0.300509 0.350892\nvt 0.300713 0.347325\nvt 0.313629 0.348135\nvt 0.270572 0.347664\nvt 0.300713 0.347325\nvt 0.300509 0.350892\nvt 0.300509 0.350892\nvt 0.270775 0.351245\nvt 0.270572 0.347664\nvt 0.245281 0.349779\nvt 0.270572 0.347664\nvt 0.270775 0.351245\nvt 0.270775 0.351245\nvt 0.243475 0.353700\nvt 0.245281 0.349779\nvt 0.245281 0.349779\nvt 0.243475 0.353700\nvt 0.236157 0.353727\nvt 0.236157 0.353727\nvt 0.239650 0.349767\nvt 0.245281 0.349779\nvt 0.537007 0.203738\nvt 0.546629 0.203738\nvt 0.546629 0.208302\nvt 0.546629 0.208302\nvt 0.537007 0.208302\nvt 0.537007 0.203738\nvt 0.537007 0.203738\nvt 0.537007 0.208302\nvt 0.527395 0.208302\nvt 0.527395 0.208302\nvt 0.527395 0.203738\nvt 0.537007 0.203738\nvt 0.546629 0.208302\nvt 0.546629 0.203738\nvt 0.556235 0.203738\nvt 0.556235 0.203738\nvt 0.556354 0.208431\nvt 0.546629 0.208302\nvt 0.517819 0.203738\nvt 0.527395 0.203738\nvt 0.527395 0.208302\nvt 0.527395 0.208302\nvt 0.517819 0.208302\nvt 0.517819 0.203738\nvt 0.517819 0.203738\nvt 0.517819 0.208302\nvt 0.508260 0.208302\nvt 0.508260 0.208302\nvt 0.508260 0.203738\nvt 0.517819 0.203738\nvt 0.498727 0.203738\nvt 0.508260 0.203738\nvt 0.508260 0.208302\nvt 0.508260 0.208302\nvt 0.498727 0.208302\nvt 0.498727 0.203738\nvt 0.498727 0.203738\nvt 0.498727 0.208302\nvt 0.489194 0.208302\nvt 0.489194 0.208302\nvt 0.489194 0.203738\nvt 0.498727 0.203738\nvt 0.479668 0.203738\nvt 0.489194 0.203738\nvt 0.489194 0.208302\nvt 0.489194 0.208302\nvt 0.479668 0.208302\nvt 0.479668 0.203738\nvt 0.479668 0.203738\nvt 0.479668 0.208302\nvt 0.470121 0.208302\nvt 0.470121 0.208302\nvt 0.470121 0.203738\nvt 0.479668 0.203738\nvt 0.460561 0.203738\nvt 0.470121 0.203738\nvt 0.470121 0.208302\nvt 0.470121 0.208302\nvt 0.460561 0.208302\nvt 0.460561 0.203738\nvt 0.460561 0.203738\nvt 0.460561 0.208302\nvt 0.450965 0.208302\nvt 0.450965 0.208302\nvt 0.450965 0.203738\nvt 0.460561 0.203738\nvt 0.441349 0.203738\nvt 0.450965 0.203738\nvt 0.450965 0.208302\nvt 0.450965 0.208302\nvt 0.441349 0.208302\nvt 0.441349 0.203738\nvt 0.441349 0.203738\nvt 0.441349 0.208302\nvt 0.431698 0.208302\nvt 0.431698 0.208302\nvt 0.431698 0.203738\nvt 0.441349 0.203738\nvt 0.422052 0.203738\nvt 0.431698 0.203738\nvt 0.431698 0.208302\nvt 0.431698 0.208302\nvt 0.422052 0.208302\nvt 0.422052 0.203738\nvt 0.422052 0.203738\nvt 0.422052 0.208302\nvt 0.412460 0.208302\nvt 0.412460 0.208302\nvt 0.412460 0.203738\nvt 0.422052 0.203738\nvt 0.412460 0.217971\nvt 0.412460 0.208302\nvt 0.422052 0.208302\nvt 0.412460 0.208302\nvt 0.412460 0.217971\nvt 0.403391 0.217968\nvt 0.403391 0.217968\nvt 0.403401 0.208300\nvt 0.412460 0.208302\nvt 0.422052 0.208302\nvt 0.422052 0.217971\nvt 0.412460 0.217971\nvt 0.422052 0.217971\nvt 0.422052 0.208302\nvt 0.431698 0.208302\nvt 0.431698 0.208302\nvt 0.431698 0.217971\nvt 0.422052 0.217971\nvt 0.431698 0.217971\nvt 0.431698 0.208302\nvt 0.441349 0.208302\nvt 0.441349 0.208302\nvt 0.441349 0.217971\nvt 0.431698 0.217971\nvt 0.441349 0.217971\nvt 0.441349 0.208302\nvt 0.450965 0.208302\nvt 0.450965 0.208302\nvt 0.450965 0.217971\nvt 0.441349 0.217971\nvt 0.460561 0.208302\nvt 0.460561 0.217971\nvt 0.450965 0.217971\nvt 0.450965 0.217971\nvt 0.450965 0.208302\nvt 0.460561 0.208302\nvt 0.460561 0.217971\nvt 0.460561 0.208302\nvt 0.470121 0.208302\nvt 0.470121 0.208302\nvt 0.470121 0.217971\nvt 0.460561 0.217971\nvt 0.470121 0.217971\nvt 0.470121 0.208302\nvt 0.479668 0.208302\nvt 0.479668 0.208302\nvt 0.479668 0.217971\nvt 0.470121 0.217971\nvt 0.479668 0.217971\nvt 0.479668 0.208302\nvt 0.489194 0.208302\nvt 0.489194 0.208302\nvt 0.489194 0.217971\nvt 0.479668 0.217971\nvt 0.489194 0.217971\nvt 0.489194 0.208302\nvt 0.498727 0.208302\nvt 0.498727 0.208302\nvt 0.498727 0.217971\nvt 0.489194 0.217971\nvt 0.498727 0.217971\nvt 0.498727 0.208302\nvt 0.508260 0.208302\nvt 0.508260 0.208302\nvt 0.508260 0.217971\nvt 0.498727 0.217971\nvt 0.508260 0.217971\nvt 0.508260 0.208302\nvt 0.517819 0.208302\nvt 0.517819 0.208302\nvt 0.517819 0.217971\nvt 0.508260 0.217971\nvt 0.517819 0.217971\nvt 0.517819 0.208302\nvt 0.527395 0.208302\nvt 0.527395 0.208302\nvt 0.527395 0.217971\nvt 0.517819 0.217971\nvt 0.527395 0.217971\nvt 0.527395 0.208302\nvt 0.537007 0.208302\nvt 0.537007 0.208302\nvt 0.537007 0.217971\nvt 0.527395 0.217971\nvt 0.537007 0.217971\nvt 0.537007 0.208302\nvt 0.546629 0.208302\nvt 0.546629 0.208302\nvt 0.546629 0.217971\nvt 0.537007 0.217971\nvt 0.546629 0.217971\nvt 0.546629 0.208302\nvt 0.556354 0.208431\nvt 0.556354 0.208431\nvt 0.556235 0.217971\nvt 0.546629 0.217971\nvt 0.566340 0.207724\nvt 0.556354 0.208431\nvt 0.556235 0.203738\nvt 0.556235 0.203738\nvt 0.565779 0.203080\nvt 0.566340 0.207724\nvt 0.442156 0.008954\nvt 0.446153 0.012265\nvt 0.443318 0.017507\nvt 0.443318 0.017507\nvt 0.438359 0.015974\nvt 0.442156 0.008954\nvt 0.438359 0.015974\nvt 0.443318 0.017507\nvt 0.442702 0.023452\nvt 0.442702 0.023452\nvt 0.437534 0.023937\nvt 0.438359 0.015974\nvt 0.437534 0.023937\nvt 0.442702 0.023452\nvt 0.444404 0.029163\nvt 0.444404 0.029163\nvt 0.439813 0.031586\nvt 0.437534 0.023937\nvt 0.439813 0.031586\nvt 0.444404 0.029163\nvt 0.448173 0.033803\nvt 0.448173 0.033803\nvt 0.444861 0.037800\nvt 0.439813 0.031586\nvt 0.444861 0.037800\nvt 0.448173 0.033803\nvt 0.453414 0.036638\nvt 0.453414 0.036638\nvt 0.451881 0.041597\nvt 0.444861 0.037800\nvt 0.451881 0.041597\nvt 0.453414 0.036638\nvt 0.459360 0.037253\nvt 0.459360 0.037253\nvt 0.459844 0.042421\nvt 0.451881 0.041597\nvt 0.459844 0.042421\nvt 0.459360 0.037253\nvt 0.465071 0.035552\nvt 0.465071 0.035552\nvt 0.467493 0.040143\nvt 0.459844 0.042421\nvt 0.467493 0.040143\nvt 0.465071 0.035552\nvt 0.469710 0.031783\nvt 0.469710 0.031783\nvt 0.473707 0.035094\nvt 0.467493 0.040143\nvt 0.473707 0.035094\nvt 0.469710 0.031783\nvt 0.472545 0.026542\nvt 0.472545 0.026542\nvt 0.477504 0.028075\nvt 0.473707 0.035094\nvt 0.477504 0.028075\nvt 0.472545 0.026542\nvt 0.473161 0.020596\nvt 0.473161 0.020596\nvt 0.478328 0.020111\nvt 0.477504 0.028075\nvt 0.478328 0.020111\nvt 0.473161 0.020596\nvt 0.471459 0.014885\nvt 0.471459 0.014885\nvt 0.476050 0.012463\nvt 0.478328 0.020111\nvt 0.476050 0.012463\nvt 0.471459 0.014885\nvt 0.467690 0.010246\nvt 0.467690 0.010246\nvt 0.471002 0.006249\nvt 0.476050 0.012463\nvt 0.471002 0.006249\nvt 0.467690 0.010246\nvt 0.462449 0.007411\nvt 0.462449 0.007411\nvt 0.463982 0.002452\nvt 0.471002 0.006249\nvt 0.463982 0.002452\nvt 0.462449 0.007411\nvt 0.456503 0.006795\nvt 0.456503 0.006795\nvt 0.456019 0.001627\nvt 0.463982 0.002452\nvt 0.456019 0.001627\nvt 0.456503 0.006795\nvt 0.450793 0.008497\nvt 0.450793 0.008497\nvt 0.448370 0.003906\nvt 0.456019 0.001627\nvt 0.448370 0.003906\nvt 0.450793 0.008497\nvt 0.446153 0.012265\nvt 0.446153 0.012265\nvt 0.442156 0.008954\nvt 0.448370 0.003906\nvt 0.701180 0.218169\nvt 0.701180 0.215358\nvt 0.706096 0.215358\nvt 0.706096 0.215358\nvt 0.706096 0.218169\nvt 0.701180 0.218169\nvt 0.706096 0.218169\nvt 0.706096 0.215358\nvt 0.711016 0.215358\nvt 0.711016 0.215358\nvt 0.711016 0.218169\nvt 0.706096 0.218169\nvt 0.711016 0.218169\nvt 0.711016 0.215358\nvt 0.715930 0.215358\nvt 0.715930 0.215358\nvt 0.715930 0.218169\nvt 0.711016 0.218169\nvt 0.715930 0.218169\nvt 0.715930 0.215358\nvt 0.720851 0.215358\nvt 0.720851 0.215358\nvt 0.720851 0.218169\nvt 0.715930 0.218169\nvt 0.701180 0.215358\nvt 0.701180 0.218169\nvt 0.696260 0.218169\nvt 0.696260 0.218169\nvt 0.696260 0.215358\nvt 0.701180 0.215358\nvt 0.696260 0.215358\nvt 0.696260 0.218169\nvt 0.691345 0.218169\nvt 0.691345 0.218169\nvt 0.691345 0.215358\nvt 0.696260 0.215358\nvt 0.691345 0.215358\nvt 0.691345 0.218169\nvt 0.686423 0.218169\nvt 0.686423 0.218169\nvt 0.686423 0.215358\nvt 0.691345 0.215358\nvt 0.686423 0.215358\nvt 0.686423 0.218169\nvt 0.681506 0.218169\nvt 0.681506 0.218169\nvt 0.681506 0.215358\nvt 0.686423 0.215358\nvt 0.681506 0.215358\nvt 0.681506 0.218169\nvt 0.676584 0.218169\nvt 0.676584 0.218169\nvt 0.676584 0.215358\nvt 0.681506 0.215358\nvt 0.676584 0.215358\nvt 0.676584 0.218169\nvt 0.671665 0.218169\nvt 0.671665 0.218169\nvt 0.671665 0.215358\nvt 0.676584 0.215358\nvt 0.671665 0.215358\nvt 0.671665 0.218169\nvt 0.666740 0.218169\nvt 0.666740 0.218169\nvt 0.666740 0.215358\nvt 0.671665 0.215358\nvt 0.666740 0.215358\nvt 0.666740 0.218169\nvt 0.661821 0.218169\nvt 0.661821 0.218169\nvt 0.661821 0.215358\nvt 0.666740 0.215358\nvt 0.661821 0.215358\nvt 0.661821 0.218169\nvt 0.656896 0.218169\nvt 0.656896 0.218169\nvt 0.656896 0.215358\nvt 0.661821 0.215358\nvt 0.656896 0.215358\nvt 0.656896 0.218169\nvt 0.651977 0.218169\nvt 0.651977 0.218169\nvt 0.651977 0.215358\nvt 0.656896 0.215358\nvt 0.651977 0.215358\nvt 0.651977 0.218169\nvt 0.647054 0.218169\nvt 0.647054 0.218169\nvt 0.647054 0.215358\nvt 0.651977 0.215358\nvt 0.647054 0.215358\nvt 0.647054 0.218169\nvt 0.642191 0.218128\nvt 0.642191 0.218128\nvt 0.642235 0.215317\nvt 0.647054 0.215358\nvt 0.633900 0.208932\nvt 0.629095 0.208932\nvt 0.629095 0.206279\nvt 0.629095 0.206279\nvt 0.633900 0.206279\nvt 0.633900 0.208932\nvt 0.633900 0.208932\nvt 0.633900 0.206279\nvt 0.638691 0.206279\nvt 0.638691 0.206279\nvt 0.638691 0.208932\nvt 0.633900 0.208932\nvt 0.643466 0.208932\nvt 0.638691 0.208932\nvt 0.638691 0.206279\nvt 0.638691 0.206279\nvt 0.643466 0.206279\nvt 0.643466 0.208932\nvt 0.643466 0.208932\nvt 0.643466 0.206279\nvt 0.648257 0.206279\nvt 0.648257 0.206279\nvt 0.648257 0.208932\nvt 0.643466 0.208932\nvt 0.629095 0.206279\nvt 0.629095 0.208932\nvt 0.624285 0.208932\nvt 0.624285 0.208932\nvt 0.624285 0.206279\nvt 0.629095 0.206279\nvt 0.619477 0.206279\nvt 0.624285 0.206279\nvt 0.624285 0.208932\nvt 0.624285 0.208932\nvt 0.619477 0.208932\nvt 0.619477 0.206279\nvt 0.619477 0.206279\nvt 0.619477 0.208932\nvt 0.614668 0.208932\nvt 0.614668 0.208932\nvt 0.614668 0.206279\nvt 0.619477 0.206279\nvt 0.609865 0.206279\nvt 0.614668 0.206279\nvt 0.614668 0.208932\nvt 0.614668 0.208932\nvt 0.609865 0.208932\nvt 0.609865 0.206279\nvt 0.609865 0.206279\nvt 0.609865 0.208932\nvt 0.605056 0.208932\nvt 0.605056 0.208932\nvt 0.605056 0.206279\nvt 0.609865 0.206279\nvt 0.600253 0.206279\nvt 0.605056 0.206279\nvt 0.605056 0.208932\nvt 0.605056 0.208932\nvt 0.600253 0.208932\nvt 0.600253 0.206279\nvt 0.600253 0.206279\nvt 0.600253 0.208932\nvt 0.595443 0.208932\nvt 0.595443 0.208932\nvt 0.595443 0.206279\nvt 0.600253 0.206279\nvt 0.590634 0.206279\nvt 0.595443 0.206279\nvt 0.595443 0.208932\nvt 0.595443 0.208932\nvt 0.590634 0.208932\nvt 0.590634 0.206279\nvt 0.590634 0.206279\nvt 0.590634 0.208932\nvt 0.585812 0.208932\nvt 0.585812 0.208932\nvt 0.585812 0.206279\nvt 0.590634 0.206279\nvt 0.580994 0.206279\nvt 0.585812 0.206279\nvt 0.585812 0.208932\nvt 0.585812 0.208932\nvt 0.580994 0.208932\nvt 0.580994 0.206279\nvt 0.580994 0.206279\nvt 0.580994 0.208932\nvt 0.576175 0.208932\nvt 0.576175 0.208932\nvt 0.576175 0.206279\nvt 0.580994 0.206279\nvt 0.648257 0.206279\nvt 0.653245 0.206080\nvt 0.653566 0.208467\nvt 0.653566 0.208467\nvt 0.648198 0.208684\nvt 0.648257 0.206279\nvt 0.883931 0.096787\nvt 0.888556 0.095351\nvt 0.893393 0.095795\nvt 0.883931 0.096787\nvt 0.893393 0.095795\nvt 0.877943 0.104180\nvt 0.893393 0.095795\nvt 0.886327 0.119630\nvt 0.877943 0.104180\nvt 0.893393 0.095795\nvt 0.901778 0.111245\nvt 0.886327 0.119630\nvt 0.893393 0.095795\nvt 0.900785 0.101784\nvt 0.901778 0.111245\nvt 0.893393 0.095795\nvt 0.897679 0.098049\nvt 0.900785 0.101784\nvt 0.900785 0.101784\nvt 0.902222 0.106408\nvt 0.901778 0.111245\nvt 0.901778 0.111245\nvt 0.895789 0.118637\nvt 0.886327 0.119630\nvt 0.901778 0.111245\nvt 0.899524 0.115531\nvt 0.895789 0.118637\nvt 0.895789 0.118637\nvt 0.891165 0.120074\nvt 0.886327 0.119630\nvt 0.886327 0.119630\nvt 0.878935 0.113641\nvt 0.877943 0.104180\nvt 0.886327 0.119630\nvt 0.882042 0.117375\nvt 0.878935 0.113641\nvt 0.878935 0.113641\nvt 0.877499 0.109017\nvt 0.877943 0.104180\nvt 0.883931 0.096787\nvt 0.877943 0.104180\nvt 0.880197 0.099894\nvt 0.726580 0.236624\nvt 0.743262 0.236762\nvt 0.743262 0.236762\nvt 0.743262 0.236762\nvt 0.746038 0.236970\nvt 0.746038 0.236970\nvt 0.745915 0.240625\nvt 0.746038 0.236970\nvt 0.747927 0.237392\nvt 0.747927 0.237392\nvt 0.745915 0.240625\nvt 0.726580 0.236624\nvt 0.722118 0.236654\nvt 0.726580 0.236624\nvt 0.722118 0.236654\nvt 0.720054 0.236742\nvt 0.722118 0.236654\nvt 0.747440 0.240972\nvt 0.747927 0.237392\nvt 0.749304 0.237873\nvt 0.749304 0.237873\nvt 0.747440 0.240972\nvt 0.749304 0.237873\nvt 0.750736 0.238416\nvt 0.750736 0.238416\nvt 0.720054 0.236742\nvt 0.718644 0.236842\nvt 0.720054 0.236742\nvt 0.718644 0.236842\nvt 0.698988 0.237054\nvt 0.718644 0.236842\nvt 0.698988 0.237054\nvt 0.697537 0.236987\nvt 0.698988 0.237054\nvt 0.697537 0.236987\nvt 0.695505 0.236931\nvt 0.697537 0.236987\nvt 0.695505 0.236931\nvt 0.691388 0.236921\nvt 0.695505 0.236931\nvt 0.691388 0.236921\nvt 0.676562 0.236789\nvt 0.691388 0.236921\nvt 0.676562 0.236789\nvt 0.673942 0.236759\nvt 0.676562 0.236789\nvt 0.673942 0.236759\nvt 0.673544 0.240391\nvt 0.671945 0.236821\nvt 0.673942 0.236759\nvt 0.671945 0.236821\nvt 0.671857 0.240426\nvt 0.670414 0.236858\nvt 0.671945 0.236821\nvt 0.670414 0.236858\nvt 0.668806 0.236938\nvt 0.670414 0.236858\nvt 0.668806 0.236938\nvt 0.626916 0.236788\nvt 0.668806 0.236938\nvt 0.690741 0.242332\nvt 0.690802 0.240555\nvt 0.694943 0.240560\nvt 0.694943 0.240560\nvt 0.694802 0.242320\nvt 0.690741 0.242332\nvt 0.694802 0.242320\nvt 0.694943 0.240560\nvt 0.697022 0.240631\nvt 0.697022 0.240631\nvt 0.696856 0.242416\nvt 0.694802 0.242320\nvt 0.696856 0.242416\nvt 0.697022 0.240631\nvt 0.698672 0.240727\nvt 0.698672 0.240727\nvt 0.698526 0.242516\nvt 0.696856 0.242416\nvt 0.698526 0.242516\nvt 0.698672 0.240727\nvt 0.718602 0.240527\nvt 0.718602 0.240527\nvt 0.718794 0.242305\nvt 0.698526 0.242516\nvt 0.718794 0.242305\nvt 0.718602 0.240527\nvt 0.720170 0.240422\nvt 0.720170 0.240422\nvt 0.720360 0.242200\nvt 0.718794 0.242305\nvt 0.720360 0.242200\nvt 0.720170 0.240422\nvt 0.722281 0.240323\nvt 0.722281 0.240323\nvt 0.722424 0.242083\nvt 0.720360 0.242200\nvt 0.722424 0.242083\nvt 0.722281 0.240323\nvt 0.726773 0.240300\nvt 0.726773 0.240300\nvt 0.726793 0.242081\nvt 0.722424 0.242083\nvt 0.726793 0.242081\nvt 0.726773 0.240300\nvt 0.743393 0.240458\nvt 0.743393 0.240458\nvt 0.743038 0.242255\nvt 0.726793 0.242081\nvt 0.743038 0.242255\nvt 0.743393 0.240458\nvt 0.745915 0.240625\nvt 0.745915 0.240625\nvt 0.745265 0.242362\nvt 0.743038 0.242255\nvt 0.745265 0.242362\nvt 0.745915 0.240625\nvt 0.747440 0.240972\nvt 0.747440 0.240972\nvt 0.746569 0.242460\nvt 0.745265 0.242362\nvt 0.746569 0.242460\nvt 0.747440 0.240972\nvt 0.748469 0.241458\nvt 0.748469 0.241458\nvt 0.747534 0.243041\nvt 0.746569 0.242460\nvt 0.747534 0.243041\nvt 0.748469 0.241458\nvt 0.749737 0.242071\nvt 0.749737 0.242071\nvt 0.748595 0.243726\nvt 0.747534 0.243041\nvt 0.690802 0.240555\nvt 0.690741 0.242332\nvt 0.676110 0.242244\nvt 0.676110 0.242244\nvt 0.675956 0.240440\nvt 0.690802 0.240555\nvt 0.675956 0.240440\nvt 0.676110 0.242244\nvt 0.673826 0.242142\nvt 0.673826 0.242142\nvt 0.673544 0.240391\nvt 0.675956 0.240440\nvt 0.673544 0.240391\nvt 0.673826 0.242142\nvt 0.672240 0.242067\nvt 0.672240 0.242067\nvt 0.671857 0.240426\nvt 0.673544 0.240391\nvt 0.671857 0.240426\nvt 0.672240 0.242067\nvt 0.670858 0.242330\nvt 0.670858 0.242330\nvt 0.670630 0.240538\nvt 0.671857 0.240426\nvt 0.670630 0.240538\nvt 0.670858 0.242330\nvt 0.669307 0.242485\nvt 0.669307 0.242485\nvt 0.669119 0.240641\nvt 0.670630 0.240538\nvt 0.669119 0.240641\nvt 0.669307 0.242485\nvt 0.627145 0.242216\nvt 0.627145 0.242216\nvt 0.627114 0.240454\nvt 0.669119 0.240641\nvt 0.432439 0.100120\nvt 0.435685 0.103565\nvt 0.445032 0.119029\nvt 0.432439 0.100120\nvt 0.445032 0.119029\nvt 0.430574 0.099127\nvt 0.445032 0.119029\nvt 0.444597 0.122412\nvt 0.430574 0.099127\nvt 0.445032 0.119029\nvt 0.445718 0.121148\nvt 0.444597 0.122412\nvt 0.445718 0.121148\nvt 0.445562 0.122231\nvt 0.444597 0.122412\nvt 0.444597 0.122412\nvt 0.395702 0.121227\nvt 0.430574 0.099127\nvt 0.395702 0.121227\nvt 0.400530 0.103368\nvt 0.430574 0.099127\nvt 0.395702 0.121227\nvt 0.394171 0.121190\nvt 0.400530 0.103368\nvt 0.394171 0.121190\nvt 0.392586 0.119713\nvt 0.400530 0.103368\nvt 0.394171 0.121190\nvt 0.393017 0.120928\nvt 0.392586 0.119713\nvt 0.392586 0.119713\nvt 0.393029 0.117590\nvt 0.400530 0.103368\nvt 0.400530 0.103368\nvt 0.429240 0.098814\nvt 0.430574 0.099127\nvt 0.400530 0.103368\nvt 0.406618 0.098819\nvt 0.429240 0.098814\nvt 0.400530 0.103368\nvt 0.403409 0.100123\nvt 0.406618 0.098819\nvt 0.403409 0.100123\nvt 0.405214 0.099123\nvt 0.406618 0.098819\nvt 0.444597 0.122412\nvt 0.443259 0.122378\nvt 0.395702 0.121227\nvt 0.104667 0.612584\nvt 0.103958 0.613219\nvt 0.090680 0.597581\nvt 0.090680 0.597581\nvt 0.091200 0.596721\nvt 0.104667 0.612584\nvt 0.103958 0.613219\nvt 0.104667 0.612584\nvt 0.118742 0.627606\nvt 0.118742 0.627606\nvt 0.117816 0.628018\nvt 0.103958 0.613219\nvt 0.100029 0.616727\nvt 0.103958 0.613219\nvt 0.117816 0.628018\nvt 0.117816 0.628018\nvt 0.108865 0.626235\nvt 0.100029 0.616727\nvt 0.108865 0.626235\nvt 0.117816 0.628018\nvt 0.100041 0.629282\nvt 0.108865 0.626235\nvt 0.100041 0.629282\nvt 0.093734 0.622384\nvt 0.100041 0.629282\nvt 0.093734 0.622384\nvt 0.087287 0.614893\nvt 0.093734 0.622384\nvt 0.087287 0.614893\nvt 0.090680 0.597581\nvt 0.103958 0.613219\nvt 0.100029 0.616727\nvt 0.091368 0.606616\nvt 0.091368 0.606616\nvt 0.090680 0.597581\nvt 0.103958 0.613219\nvt 0.090680 0.597581\nvt 0.091368 0.606616\nvt 0.087287 0.614893\nvt 0.006327 0.298406\nvt 0.006135 0.299383\nvt 0.006327 0.298406\nvt 0.006135 0.299383\nvt 0.058857 0.292805\nvt 0.058857 0.292805\nvt 0.082183 0.290827\nvt 0.058857 0.292805\nvt 0.082183 0.290827\nvt 0.127142 0.286925\nvt 0.082183 0.290827\nvt 0.127142 0.286925\nvt 0.184037 0.282179\nvt 0.127142 0.286925\nvt 0.184037 0.282179\nvt 0.214253 0.280794\nvt 0.184037 0.282179\nvt 0.214253 0.280794\nvt 0.244410 0.280665\nvt 0.214253 0.280794\nvt 0.244410 0.280665\nvt 0.290137 0.283851\nvt 0.244410 0.280665\nvt 0.290137 0.283851\nvt 0.334980 0.297643\nvt 0.290137 0.283851\nvt 0.334980 0.297643\nvt 0.339961 0.298914\nvt 0.334980 0.297643\nvt 0.339961 0.298914\nvt 0.343556 0.299621\nvt 0.339961 0.298914\nvt 0.347187 0.299820\nvt 0.343556 0.299621\nvt 0.347187 0.299820\nvt 0.374116 0.299007\nvt 0.347187 0.299820\nvt 0.374116 0.299007\nvt 0.374116 0.299007\nvt 0.397886 0.300920\nvt 0.374116 0.299007\nvt 0.397886 0.300920\nvt 0.401321 0.300867\nvt 0.397886 0.300920\nvt 0.408622 0.299003\nvt 0.401321 0.300867\nvt 0.399611 0.276925\nvt 0.399611 0.276925\nvt 0.408622 0.299003\nvt 0.408622 0.299003\nvt 0.407081 0.275812\nvt 0.454355 0.284621\nvt 0.408622 0.299003\nvt 0.454355 0.284621\nvt 0.502349 0.280904\nvt 0.454355 0.284621\nvt 0.502349 0.280904\nvt 0.533594 0.280864\nvt 0.502349 0.280904\nvt 0.533594 0.280864\nvt 0.564903 0.282463\nvt 0.533594 0.280864\nvt 0.564903 0.282463\nvt 0.623940 0.287305\nvt 0.564903 0.282463\nvt 0.623940 0.287305\nvt 0.670913 0.291279\nvt 0.623940 0.287305\nvt 0.695572 0.293043\nvt 0.670913 0.291279\nvt 0.695572 0.293043\nvt 0.695572 0.293043\nvt 0.695572 0.293043\nvt 0.753314 0.297288\nvt 0.695572 0.293043\nvt 0.753314 0.297288\nvt 0.753555 0.298263\nvt 0.419113 0.498232\nvt 0.422384 0.483550\nvt 0.422384 0.483550\nvt 0.422384 0.483550\nvt 0.425072 0.469316\nvt 0.425072 0.469316\nvt 0.441111 0.368998\nvt 0.441112 0.372099\nvt 0.441111 0.368998\nvt 0.107224 0.296105\nvt 0.107185 0.304571\nvt 0.097301 0.304280\nvt 0.097301 0.304280\nvt 0.093926 0.295689\nvt 0.107224 0.296105\nvt 0.107185 0.304571\nvt 0.107224 0.296105\nvt 0.120205 0.295980\nvt 0.120205 0.295980\nvt 0.116527 0.304559\nvt 0.107185 0.304571\nvt 0.534732 0.070522\nvt 0.534049 0.061560\nvt 0.544705 0.060622\nvt 0.544705 0.060622\nvt 0.545388 0.069584\nvt 0.534732 0.070522\nvt 0.544105 0.052149\nvt 0.544705 0.060622\nvt 0.534049 0.061560\nvt 0.534049 0.061560\nvt 0.533449 0.053087\nvt 0.544105 0.052149\nvt 0.739477 0.260666\nvt 0.739330 0.249970\nvt 0.747656 0.252863\nvt 0.747656 0.252863\nvt 0.747803 0.263559\nvt 0.739477 0.260666\nvt 0.573586 0.557120\nvt 0.586575 0.557401\nvt 0.586004 0.569148\nvt 0.586004 0.569148\nvt 0.573025 0.568868\nvt 0.573586 0.557120\nvt 0.599300 0.569565\nvt 0.586004 0.569148\nvt 0.586575 0.557401\nvt 0.586575 0.557401\nvt 0.599883 0.557819\nvt 0.599300 0.569565\nvt 0.564478 0.079414\nvt 0.556195 0.082171\nvt 0.556159 0.071475\nvt 0.556159 0.071475\nvt 0.564442 0.068718\nvt 0.564478 0.079414\nvt 0.265434 0.398802\nvt 0.264309 0.404514\nvt 0.264309 0.404514\nvt 0.265434 0.398802\nvt 0.269257 0.381315\nvt 0.265434 0.398802\nvt 0.270571 0.375398\nvt 0.269257 0.381315\nvt 0.270571 0.375398\nvt 0.009230 0.531915\nvt 0.013238 0.534702\nvt 0.013238 0.534702\nvt 0.011656 0.538080\nvt 0.006989 0.536649\nvt 0.011656 0.538080\nvt 0.011105 0.541852\nvt 0.006224 0.541782\nvt 0.011105 0.541852\nvt 0.011579 0.545684\nvt 0.006854 0.546904\nvt 0.011579 0.545684\nvt 0.013020 0.549265\nvt 0.008784 0.551690\nvt 0.013020 0.549265\nvt 0.015328 0.552299\nvt 0.011938 0.555810\nvt 0.015328 0.552299\nvt 0.018349 0.554488\nvt 0.016191 0.558867\nvt 0.018349 0.554488\nvt 0.021828 0.555569\nvt 0.021249 0.560416\nvt 0.021828 0.555569\nvt 0.012905 0.528111\nvt 0.015759 0.532072\nvt 0.012905 0.528111\nvt 0.721033 0.254825\nvt 0.721033 0.264543\nvt 0.721033 0.254825\nvt 0.715654 0.264543\nvt 0.715654 0.254825\nvt 0.715654 0.264543\nvt 0.710275 0.264543\nvt 0.710275 0.254825\nvt 0.710275 0.264543\nvt 0.704896 0.264543\nvt 0.704896 0.254825\nvt 0.704896 0.264543\nvt 0.699517 0.264543\nvt 0.699517 0.254825\nvt 0.699517 0.264543\nvt 0.694138 0.264543\nvt 0.694137 0.254825\nvt 0.694138 0.264543\nvt 0.688758 0.264543\nvt 0.688757 0.254825\nvt 0.688758 0.264543\nvt 0.683379 0.264544\nvt 0.683378 0.254826\nvt 0.683379 0.264544\nvt 0.726412 0.254825\nvt 0.726412 0.264543\nvt 0.726412 0.254825\nvt 0.194482 0.376215\nvt 0.219256 0.376589\nvt 0.218240 0.382543\nvt 0.218240 0.382543\nvt 0.193514 0.382519\nvt 0.194482 0.376215\nvt 0.262457 0.381432\nvt 0.218240 0.382543\nvt 0.219256 0.376589\nvt 0.219256 0.376589\nvt 0.263607 0.375350\nvt 0.262457 0.381432\nvt 0.193514 0.382519\nvt 0.218240 0.382543\nvt 0.214086 0.398599\nvt 0.214086 0.398599\nvt 0.218240 0.382543\nvt 0.262457 0.381432\nvt 0.214086 0.398599\nvt 0.189466 0.398272\nvt 0.193514 0.382519\nvt 0.187534 0.403785\nvt 0.189466 0.398272\nvt 0.214086 0.398599\nvt 0.214086 0.398599\nvt 0.212341 0.404121\nvt 0.187534 0.403785\nvt 0.257274 0.404613\nvt 0.212341 0.404121\nvt 0.214086 0.398599\nvt 0.214086 0.398599\nvt 0.258603 0.398883\nvt 0.257274 0.404613\nvt 0.262457 0.381432\nvt 0.258603 0.398883\nvt 0.214086 0.398599\nvt 0.257274 0.404613\nvt 0.258603 0.398883\nvt 0.265434 0.398802\nvt 0.265434 0.398802\nvt 0.258603 0.398883\nvt 0.262457 0.381432\nvt 0.265434 0.398802\nvt 0.264309 0.404514\nvt 0.257274 0.404613\nvt 0.262457 0.381432\nvt 0.263607 0.375350\nvt 0.270571 0.375398\nvt 0.270571 0.375398\nvt 0.269257 0.381315\nvt 0.262457 0.381432\nvt 0.262457 0.381432\nvt 0.269257 0.381315\nvt 0.265434 0.398802\nvt 0.265434 0.398802\nvt 0.271933 0.399535\nvt 0.272463 0.406350\nvt 0.272463 0.406350\nvt 0.264309 0.404514\nvt 0.265434 0.398802\nvt 0.271933 0.399535\nvt 0.265434 0.398802\nvt 0.269257 0.381315\nvt 0.269257 0.381315\nvt 0.276605 0.381337\nvt 0.271933 0.399535\nvt 0.276605 0.381337\nvt 0.269257 0.381315\nvt 0.270571 0.375398\nvt 0.270571 0.375398\nvt 0.280326 0.375204\nvt 0.276605 0.381337\nvt 0.904344 0.177679\nvt 0.902775 0.183698\nvt 0.895834 0.185574\nvt 0.904344 0.177679\nvt 0.895834 0.185574\nvt 0.910667 0.115645\nvt 0.904344 0.177679\nvt 0.910667 0.115645\nvt 0.912741 0.137961\nvt 0.753800 0.284261\nvt 0.756615 0.273119\nvt 0.763011 0.272880\nvt 0.753800 0.284261\nvt 0.763011 0.272880\nvt 0.803366 0.276922\nvt 0.753800 0.284261\nvt 0.803366 0.276922\nvt 0.824873 0.282685\nvt 0.562980 0.049158\nvt 0.567644 0.051527\nvt 0.565360 0.053817\nvt 0.568146 0.048333\nvt 0.567644 0.051527\nvt 0.562980 0.049158\nvt 0.562980 0.049158\nvt 0.566675 0.045454\nvt 0.568146 0.048333\nvt 0.563793 0.043990\nvt 0.566675 0.045454\nvt 0.562980 0.049158\nvt 0.562980 0.049158\nvt 0.560600 0.044499\nvt 0.563793 0.043990\nvt 0.558316 0.046789\nvt 0.560600 0.044499\nvt 0.562980 0.049158\nvt 0.562980 0.049158\nvt 0.557814 0.049983\nvt 0.558316 0.046789\nvt 0.559285 0.052862\nvt 0.557814 0.049983\nvt 0.562980 0.049158\nvt 0.562980 0.049158\nvt 0.562167 0.054326\nvt 0.559285 0.052862\nvt 0.565360 0.053817\nvt 0.562167 0.054326\nvt 0.562980 0.049158\nvt 0.013238 0.534702\nvt 0.011656 0.538080\nvt 0.006989 0.536649\nvt 0.006989 0.536649\nvt 0.009230 0.531915\nvt 0.013238 0.534702\nvt 0.013238 0.534702\nvt 0.009230 0.531915\nvt 0.012905 0.528111\nvt 0.012905 0.528111\nvt 0.015759 0.532072\nvt 0.013238 0.534702\nvt 0.006224 0.541782\nvt 0.006989 0.536649\nvt 0.011656 0.538080\nvt 0.011656 0.538080\nvt 0.011105 0.541852\nvt 0.006224 0.541782\nvt 0.006854 0.546904\nvt 0.006224 0.541782\nvt 0.011105 0.541852\nvt 0.011105 0.541852\nvt 0.011579 0.545684\nvt 0.006854 0.546904\nvt 0.008784 0.551690\nvt 0.006854 0.546904\nvt 0.011579 0.545684\nvt 0.011579 0.545684\nvt 0.013020 0.549265\nvt 0.008784 0.551690\nvt 0.011938 0.555810\nvt 0.008784 0.551690\nvt 0.013020 0.549265\nvt 0.013020 0.549265\nvt 0.015328 0.552299\nvt 0.011938 0.555810\nvt 0.016191 0.558867\nvt 0.011938 0.555810\nvt 0.015328 0.552299\nvt 0.015328 0.552299\nvt 0.018349 0.554488\nvt 0.016191 0.558867\nvt 0.021249 0.560416\nvt 0.016191 0.558867\nvt 0.018349 0.554488\nvt 0.018349 0.554488\nvt 0.021828 0.555569\nvt 0.021249 0.560416\nvt 0.026568 0.560114\nvt 0.021249 0.560416\nvt 0.021828 0.555569\nvt 0.021828 0.555569\nvt 0.025409 0.555371\nvt 0.026568 0.560114\nvt 0.018988 0.530510\nvt 0.015759 0.532072\nvt 0.012905 0.528111\nvt 0.012905 0.528111\nvt 0.017706 0.525800\nvt 0.018988 0.530510\nvt 0.721033 0.254825\nvt 0.721033 0.264543\nvt 0.715654 0.264543\nvt 0.715654 0.264543\nvt 0.715654 0.254825\nvt 0.721033 0.254825\nvt 0.721033 0.264543\nvt 0.721033 0.254825\nvt 0.726412 0.254825\nvt 0.726412 0.254825\nvt 0.726412 0.264543\nvt 0.721033 0.264543\nvt 0.715654 0.254825\nvt 0.715654 0.264543\nvt 0.710275 0.264543\nvt 0.710275 0.264543\nvt 0.710275 0.254825\nvt 0.715654 0.254825\nvt 0.710275 0.254825\nvt 0.710275 0.264543\nvt 0.704896 0.264543\nvt 0.704896 0.264543\nvt 0.704896 0.254825\nvt 0.710275 0.254825\nvt 0.704896 0.254825\nvt 0.704896 0.264543\nvt 0.699517 0.264543\nvt 0.699517 0.264543\nvt 0.699517 0.254825\nvt 0.704896 0.254825\nvt 0.699517 0.254825\nvt 0.699517 0.264543\nvt 0.694138 0.264543\nvt 0.694138 0.264543\nvt 0.694137 0.254825\nvt 0.699517 0.254825\nvt 0.694137 0.254825\nvt 0.694138 0.264543\nvt 0.688758 0.264543\nvt 0.688758 0.264543\nvt 0.688757 0.254825\nvt 0.694137 0.254825\nvt 0.688757 0.254825\nvt 0.688758 0.264543\nvt 0.683379 0.264544\nvt 0.683379 0.264544\nvt 0.683378 0.254826\nvt 0.688757 0.254825\nvt 0.683378 0.254826\nvt 0.683379 0.264544\nvt 0.677999 0.264544\nvt 0.677999 0.264544\nvt 0.677998 0.254827\nvt 0.683378 0.254826\nvt 0.726412 0.264543\nvt 0.726412 0.254825\nvt 0.731792 0.254825\nvt 0.731792 0.254825\nvt 0.731792 0.264543\nvt 0.726412 0.264543\nvt 0.901338 0.251938\nvt 0.901338 0.251938\nvt 0.901338 0.251938\nvt 0.901338 0.251938\nvt 0.897356 0.251693\nvt 0.914381 0.251091\nvt 0.914381 0.251091\nvt 0.914381 0.251091\nvt 0.901331 0.250495\nvt 0.914421 0.249793\nvt 0.914421 0.249793\nvt 0.914421 0.249793\nvt 0.930488 0.249276\nvt 0.930488 0.249276\nvt 0.901331 0.250495\nvt 0.901331 0.250495\nvt 0.897353 0.250806\nvt 0.897353 0.250806\nvt 0.930488 0.249276\nvt 0.946808 0.248749\nvt 0.947447 0.250630\nvt 0.950570 0.250603\nvt 0.947447 0.250630\nvt 0.947447 0.250630\nvt 0.946807 0.252534\nvt 0.949674 0.253372\nvt 0.946807 0.252534\nvt 0.946807 0.252534\nvt 0.945508 0.253742\nvt 0.945508 0.253742\nvt 0.945508 0.253742\nvt 0.942934 0.254170\nvt 0.942934 0.254170\nvt 0.942934 0.254170\nvt 0.930714 0.254397\nvt 0.930714 0.254397\nvt 0.930714 0.254397\nvt 0.914446 0.253808\nvt 0.914446 0.253808\nvt 0.914446 0.253808\nvt 0.901373 0.252766\nvt 0.946808 0.248749\nvt 0.945509 0.247585\nvt 0.946808 0.248749\nvt 0.949654 0.247860\nvt 0.901373 0.252766\nvt 0.901373 0.252766\nvt 0.897356 0.251693\nvt 0.894400 0.252499\nvt 0.897356 0.251693\nvt 0.897356 0.251693\nvt 0.897137 0.251252\nvt 0.893973 0.251289\nvt 0.897137 0.251252\nvt 0.897137 0.251252\nvt 0.897353 0.250806\nvt 0.894378 0.250063\nvt 0.901355 0.249665\nvt 0.901355 0.249665\nvt 0.901355 0.249665\nvt 0.914424 0.248374\nvt 0.914424 0.248374\nvt 0.930715 0.247655\nvt 0.930715 0.247655\nvt 0.930715 0.247655\nvt 0.942940 0.247230\nvt 0.942940 0.247230\nvt 0.942940 0.247230\nvt 0.942940 0.247230\nvt 0.945509 0.247585\nvt 0.949654 0.247860\nvt 0.945509 0.247585\nvt 0.766879 0.292215\nvt 0.765913 0.291566\nvt 0.765913 0.291566\nvt 0.766447 0.293119\nvt 0.765255 0.293123\nvt 0.765255 0.293123\nvt 0.766856 0.294020\nvt 0.765891 0.294682\nvt 0.765891 0.294682\nvt 0.786009 0.289228\nvt 0.772836 0.290379\nvt 0.772836 0.290379\nvt 0.772836 0.290379\nvt 0.768788 0.291250\nvt 0.768788 0.291250\nvt 0.768788 0.291250\nvt 0.766879 0.292215\nvt 0.766879 0.292215\nvt 0.766879 0.292215\nvt 0.766447 0.293119\nvt 0.766447 0.293119\nvt 0.766447 0.293119\nvt 0.766856 0.294020\nvt 0.766856 0.294020\nvt 0.766856 0.294020\nvt 0.768767 0.294939\nvt 0.768767 0.294939\nvt 0.768767 0.294939\nvt 0.772783 0.295906\nvt 0.772783 0.295906\nvt 0.772783 0.295906\nvt 0.785860 0.297668\nvt 0.785860 0.297668\nvt 0.785860 0.297668\nvt 0.801990 0.298852\nvt 0.801990 0.298852\nvt 0.801990 0.298852\nvt 0.814228 0.298586\nvt 0.814228 0.298586\nvt 0.814228 0.298586\nvt 0.817697 0.297883\nvt 0.817697 0.297883\nvt 0.817697 0.297883\nvt 0.820188 0.296178\nvt 0.820188 0.296178\nvt 0.820188 0.296178\nvt 0.821186 0.293727\nvt 0.821186 0.293727\nvt 0.821186 0.293727\nvt 0.820315 0.291251\nvt 0.820315 0.291251\nvt 0.820315 0.291251\nvt 0.817973 0.289415\nvt 0.817973 0.289415\nvt 0.817973 0.289415\nvt 0.814517 0.288739\nvt 0.814517 0.288739\nvt 0.814517 0.288739\nvt 0.802240 0.288715\nvt 0.802240 0.288715\nvt 0.802240 0.288715\nvt 0.786009 0.289228\nvt 0.786009 0.289228\nvt 0.441555 0.308252\nvt 0.441554 0.313363\nvt 0.441554 0.313363\nvt 0.447428 0.309401\nvt 0.447410 0.314512\nvt 0.447410 0.314512\nvt 0.453062 0.309955\nvt 0.453030 0.315065\nvt 0.453030 0.315065\nvt 0.458647 0.309473\nvt 0.458608 0.314584\nvt 0.458608 0.314584\nvt 0.464434 0.308384\nvt 0.464399 0.313495\nvt 0.464399 0.313495\nvt 0.526795 0.307861\nvt 0.527174 0.312958\nvt 0.527174 0.312958\nvt 0.530833 0.308421\nvt 0.531235 0.313516\nvt 0.531235 0.313516\nvt 0.537596 0.307863\nvt 0.538019 0.312956\nvt 0.538019 0.312956\nvt 0.914428 0.252387\nvt 0.930477 0.252734\nvt 0.930714 0.254397\nvt 0.930714 0.254397\nvt 0.914446 0.253808\nvt 0.914428 0.252387\nvt 0.930477 0.252734\nvt 0.914428 0.252387\nvt 0.914381 0.251091\nvt 0.914381 0.251091\nvt 0.930340 0.251001\nvt 0.930477 0.252734\nvt 0.901232 0.251218\nvt 0.914381 0.251091\nvt 0.914428 0.252387\nvt 0.914428 0.252387\nvt 0.901338 0.251938\nvt 0.901232 0.251218\nvt 0.901338 0.251938\nvt 0.914428 0.252387\nvt 0.914446 0.253808\nvt 0.914446 0.253808\nvt 0.901373 0.252766\nvt 0.901338 0.251938\nvt 0.901232 0.251218\nvt 0.901338 0.251938\nvt 0.897356 0.251693\nvt 0.897356 0.251693\nvt 0.897137 0.251252\nvt 0.901232 0.251218\nvt 0.898393 0.252359\nvt 0.897356 0.251693\nvt 0.901338 0.251938\nvt 0.901338 0.251938\nvt 0.901373 0.252766\nvt 0.898393 0.252359\nvt 0.942934 0.254170\nvt 0.930714 0.254397\nvt 0.930477 0.252734\nvt 0.930477 0.252734\nvt 0.943209 0.252600\nvt 0.942934 0.254170\nvt 0.943209 0.252600\nvt 0.930477 0.252734\nvt 0.930340 0.251001\nvt 0.930340 0.251001\nvt 0.943466 0.250686\nvt 0.943209 0.252600\nvt 0.942934 0.254170\nvt 0.943209 0.252600\nvt 0.946807 0.252534\nvt 0.946807 0.252534\nvt 0.945508 0.253742\nvt 0.942934 0.254170\nvt 0.947447 0.250630\nvt 0.946807 0.252534\nvt 0.943209 0.252600\nvt 0.943209 0.252600\nvt 0.943466 0.250686\nvt 0.947447 0.250630\nvt 0.914381 0.251091\nvt 0.901232 0.251218\nvt 0.901331 0.250495\nvt 0.901331 0.250495\nvt 0.914421 0.249793\nvt 0.914381 0.251091\nvt 0.930340 0.251001\nvt 0.914381 0.251091\nvt 0.914421 0.249793\nvt 0.914421 0.249793\nvt 0.901331 0.250495\nvt 0.901355 0.249665\nvt 0.901355 0.249665\nvt 0.914424 0.248374\nvt 0.914421 0.249793\nvt 0.930488 0.249276\nvt 0.914421 0.249793\nvt 0.914424 0.248374\nvt 0.914421 0.249793\nvt 0.930488 0.249276\nvt 0.930340 0.251001\nvt 0.943466 0.250686\nvt 0.930340 0.251001\nvt 0.930488 0.249276\nvt 0.914424 0.248374\nvt 0.930715 0.247655\nvt 0.930488 0.249276\nvt 0.898380 0.250120\nvt 0.901355 0.249665\nvt 0.901331 0.250495\nvt 0.901331 0.250495\nvt 0.897353 0.250806\nvt 0.898380 0.250120\nvt 0.897353 0.250806\nvt 0.901331 0.250495\nvt 0.901232 0.251218\nvt 0.901232 0.251218\nvt 0.897137 0.251252\nvt 0.897353 0.250806\nvt 0.930488 0.249276\nvt 0.943213 0.248783\nvt 0.943466 0.250686\nvt 0.943213 0.248783\nvt 0.930488 0.249276\nvt 0.930715 0.247655\nvt 0.947447 0.250630\nvt 0.943466 0.250686\nvt 0.943213 0.248783\nvt 0.930715 0.247655\nvt 0.942940 0.247230\nvt 0.943213 0.248783\nvt 0.943213 0.248783\nvt 0.946808 0.248749\nvt 0.947447 0.250630\nvt 0.946808 0.248749\nvt 0.943213 0.248783\nvt 0.942940 0.247230\nvt 0.942940 0.247230\nvt 0.945509 0.247585\nvt 0.946808 0.248749\nvt 0.950570 0.250603\nvt 0.947447 0.250630\nvt 0.946808 0.248749\nvt 0.947447 0.250630\nvt 0.950570 0.250603\nvt 0.949674 0.253372\nvt 0.949674 0.253372\nvt 0.946807 0.252534\nvt 0.947447 0.250630\nvt 0.946807 0.252534\nvt 0.949674 0.253372\nvt 0.947236 0.255470\nvt 0.947236 0.255470\nvt 0.945508 0.253742\nvt 0.946807 0.252534\nvt 0.945508 0.253742\nvt 0.947236 0.255470\nvt 0.943658 0.256647\nvt 0.943658 0.256647\nvt 0.942934 0.254170\nvt 0.945508 0.253742\nvt 0.942934 0.254170\nvt 0.943658 0.256647\nvt 0.930916 0.257208\nvt 0.930916 0.257208\nvt 0.930714 0.254397\nvt 0.942934 0.254170\nvt 0.930714 0.254397\nvt 0.930916 0.257208\nvt 0.914129 0.256652\nvt 0.914129 0.256652\nvt 0.914446 0.253808\nvt 0.930714 0.254397\nvt 0.914446 0.253808\nvt 0.914129 0.256652\nvt 0.900422 0.255147\nvt 0.900422 0.255147\nvt 0.901373 0.252766\nvt 0.914446 0.253808\nvt 0.946808 0.248749\nvt 0.949654 0.247860\nvt 0.950570 0.250603\nvt 0.949654 0.247860\nvt 0.946808 0.248749\nvt 0.945509 0.247585\nvt 0.901373 0.252766\nvt 0.900422 0.255147\nvt 0.896260 0.253852\nvt 0.896260 0.253852\nvt 0.898393 0.252359\nvt 0.901373 0.252766\nvt 0.898393 0.252359\nvt 0.896260 0.253852\nvt 0.894400 0.252499\nvt 0.894400 0.252499\nvt 0.897356 0.251693\nvt 0.898393 0.252359\nvt 0.897356 0.251693\nvt 0.894400 0.252499\nvt 0.893973 0.251289\nvt 0.893973 0.251289\nvt 0.897137 0.251252\nvt 0.897356 0.251693\nvt 0.897137 0.251252\nvt 0.893973 0.251289\nvt 0.894378 0.250063\nvt 0.894378 0.250063\nvt 0.897353 0.250806\nvt 0.897137 0.251252\nvt 0.897353 0.250806\nvt 0.894378 0.250063\nvt 0.896220 0.248667\nvt 0.896220 0.248667\nvt 0.898380 0.250120\nvt 0.897353 0.250806\nvt 0.898380 0.250120\nvt 0.896220 0.248667\nvt 0.900361 0.247299\nvt 0.900361 0.247299\nvt 0.901355 0.249665\nvt 0.898380 0.250120\nvt 0.901355 0.249665\nvt 0.900361 0.247299\nvt 0.914020 0.245577\nvt 0.914020 0.245577\nvt 0.914424 0.248374\nvt 0.901355 0.249665\nvt 0.930715 0.247655\nvt 0.914424 0.248374\nvt 0.914020 0.245577\nvt 0.914020 0.245577\nvt 0.930889 0.244855\nvt 0.930715 0.247655\nvt 0.942940 0.247230\nvt 0.930715 0.247655\nvt 0.930889 0.244855\nvt 0.930889 0.244855\nvt 0.943607 0.244743\nvt 0.942940 0.247230\nvt 0.942940 0.247230\nvt 0.943607 0.244743\nvt 0.947204 0.245826\nvt 0.947204 0.245826\nvt 0.945509 0.247585\nvt 0.942940 0.247230\nvt 0.945509 0.247585\nvt 0.947204 0.245826\nvt 0.949654 0.247860\nvt 0.748628 0.783621\nvt 0.752581 0.782549\nvt 0.761816 0.792175\nvt 0.761816 0.792175\nvt 0.759180 0.794594\nvt 0.748628 0.783621\nvt 0.759180 0.794594\nvt 0.761816 0.792175\nvt 0.772973 0.803776\nvt 0.772973 0.803776\nvt 0.770314 0.806170\nvt 0.759180 0.794594\nvt 0.770314 0.806170\nvt 0.772973 0.803776\nvt 0.781732 0.812959\nvt 0.781732 0.812959\nvt 0.780196 0.816534\nvt 0.770314 0.806170\nvt 0.780196 0.816534\nvt 0.781732 0.812959\nvt 0.784993 0.815285\nvt 0.784993 0.815285\nvt 0.784860 0.819622\nvt 0.780196 0.816534\nvt 0.784860 0.819622\nvt 0.784993 0.815285\nvt 0.788490 0.815633\nvt 0.788490 0.815633\nvt 0.790276 0.819850\nvt 0.784860 0.819622\nvt 0.790276 0.819850\nvt 0.788490 0.815633\nvt 0.791305 0.814247\nvt 0.791305 0.814247\nvt 0.794832 0.817492\nvt 0.790276 0.819850\nvt 0.794832 0.817492\nvt 0.791305 0.814247\nvt 0.792515 0.811383\nvt 0.792515 0.811383\nvt 0.796907 0.812851\nvt 0.794832 0.817492\nvt 0.796907 0.812851\nvt 0.792515 0.811383\nvt 0.791929 0.807965\nvt 0.791929 0.807965\nvt 0.796311 0.807541\nvt 0.796907 0.812851\nvt 0.796311 0.807541\nvt 0.791929 0.807965\nvt 0.789364 0.804911\nvt 0.789364 0.804911\nvt 0.792878 0.803160\nvt 0.796311 0.807541\nvt 0.792878 0.803160\nvt 0.789364 0.804911\nvt 0.779484 0.796911\nvt 0.779484 0.796911\nvt 0.781726 0.794131\nvt 0.792878 0.803160\nvt 0.781726 0.794131\nvt 0.779484 0.796911\nvt 0.767021 0.786682\nvt 0.767021 0.786682\nvt 0.769286 0.783921\nvt 0.781726 0.794131\nvt 0.769286 0.783921\nvt 0.767021 0.786682\nvt 0.756710 0.778190\nvt 0.756710 0.778190\nvt 0.757533 0.774212\nvt 0.769286 0.783921\nvt 0.757533 0.774212\nvt 0.756710 0.778190\nvt 0.753114 0.775661\nvt 0.753114 0.775661\nvt 0.752544 0.771058\nvt 0.757533 0.774212\nvt 0.752544 0.771058\nvt 0.753114 0.775661\nvt 0.750661 0.774861\nvt 0.750661 0.774861\nvt 0.748838 0.770855\nvt 0.752544 0.771058\nvt 0.748838 0.770855\nvt 0.750661 0.774861\nvt 0.749261 0.775376\nvt 0.749261 0.775376\nvt 0.746267 0.772587\nvt 0.748838 0.770855\nvt 0.746267 0.772587\nvt 0.749261 0.775376\nvt 0.748831 0.776791\nvt 0.748831 0.776791\nvt 0.744684 0.775241\nvt 0.746267 0.772587\nvt 0.744684 0.775241\nvt 0.748831 0.776791\nvt 0.749795 0.779162\nvt 0.749795 0.779162\nvt 0.745126 0.778894\nvt 0.744684 0.775241\nvt 0.745126 0.778894\nvt 0.749795 0.779162\nvt 0.752581 0.782549\nvt 0.752581 0.782549\nvt 0.748628 0.783621\nvt 0.745126 0.778894\nvt 0.772524 0.297141\nvt 0.772783 0.295906\nvt 0.785860 0.297668\nvt 0.785860 0.297668\nvt 0.785780 0.298966\nvt 0.772524 0.297141\nvt 0.785780 0.298966\nvt 0.785860 0.297668\nvt 0.801990 0.298852\nvt 0.801990 0.298852\nvt 0.801879 0.300157\nvt 0.785780 0.298966\nvt 0.801879 0.300157\nvt 0.801990 0.298852\nvt 0.814228 0.298586\nvt 0.814228 0.298586\nvt 0.814625 0.299839\nvt 0.801879 0.300157\nvt 0.814625 0.299839\nvt 0.814228 0.298586\nvt 0.817697 0.297883\nvt 0.817697 0.297883\nvt 0.818573 0.298983\nvt 0.814625 0.299839\nvt 0.818573 0.298983\nvt 0.817697 0.297883\nvt 0.820188 0.296178\nvt 0.820188 0.296178\nvt 0.821501 0.296849\nvt 0.818573 0.298983\nvt 0.821501 0.296849\nvt 0.820188 0.296178\nvt 0.821186 0.293727\nvt 0.821186 0.293727\nvt 0.822694 0.293749\nvt 0.821501 0.296849\nvt 0.822694 0.293749\nvt 0.821186 0.293727\nvt 0.820315 0.291251\nvt 0.820315 0.291251\nvt 0.821663 0.290634\nvt 0.822694 0.293749\nvt 0.821663 0.290634\nvt 0.820315 0.291251\nvt 0.817973 0.289415\nvt 0.817973 0.289415\nvt 0.818896 0.288336\nvt 0.821663 0.290634\nvt 0.818896 0.288336\nvt 0.817973 0.289415\nvt 0.814517 0.288739\nvt 0.814517 0.288739\nvt 0.814924 0.287479\nvt 0.818896 0.288336\nvt 0.814924 0.287479\nvt 0.814517 0.288739\nvt 0.802240 0.288715\nvt 0.802240 0.288715\nvt 0.802158 0.287410\nvt 0.814924 0.287479\nvt 0.802158 0.287410\nvt 0.802240 0.288715\nvt 0.786009 0.289228\nvt 0.786009 0.289228\nvt 0.786016 0.287928\nvt 0.802158 0.287410\nvt 0.786016 0.287928\nvt 0.786009 0.289228\nvt 0.772836 0.290379\nvt 0.772836 0.290379\nvt 0.772631 0.289139\nvt 0.786016 0.287928\nvt 0.772631 0.289139\nvt 0.772836 0.290379\nvt 0.768788 0.291250\nvt 0.768788 0.291250\nvt 0.768259 0.290167\nvt 0.772631 0.289139\nvt 0.768259 0.290167\nvt 0.768788 0.291250\nvt 0.766879 0.292215\nvt 0.766879 0.292215\nvt 0.765913 0.291566\nvt 0.768259 0.290167\nvt 0.765913 0.291566\nvt 0.766879 0.292215\nvt 0.766447 0.293119\nvt 0.766447 0.293119\nvt 0.765255 0.293123\nvt 0.765913 0.291566\nvt 0.765255 0.293123\nvt 0.766447 0.293119\nvt 0.766856 0.294020\nvt 0.766856 0.294020\nvt 0.765891 0.294682\nvt 0.765255 0.293123\nvt 0.765891 0.294682\nvt 0.766856 0.294020\nvt 0.768767 0.294939\nvt 0.768767 0.294939\nvt 0.768225 0.296021\nvt 0.765891 0.294682\nvt 0.768225 0.296021\nvt 0.768767 0.294939\nvt 0.772783 0.295906\nvt 0.772783 0.295906\nvt 0.772524 0.297141\nvt 0.768225 0.296021\nvt 0.773142 0.291161\nvt 0.772836 0.290379\nvt 0.786009 0.289228\nvt 0.786009 0.289228\nvt 0.786063 0.290042\nvt 0.773142 0.291161\nvt 0.786063 0.290042\nvt 0.786009 0.289228\nvt 0.802240 0.288715\nvt 0.802240 0.288715\nvt 0.802253 0.289531\nvt 0.786063 0.290042\nvt 0.802253 0.289531\nvt 0.802240 0.288715\nvt 0.814517 0.288739\nvt 0.814517 0.288739\nvt 0.814218 0.289551\nvt 0.802253 0.289531\nvt 0.814218 0.289551\nvt 0.814517 0.288739\nvt 0.817973 0.289415\nvt 0.817973 0.289415\nvt 0.817406 0.290121\nvt 0.814218 0.289551\nvt 0.817406 0.290121\nvt 0.817973 0.289415\nvt 0.820315 0.291251\nvt 0.820315 0.291251\nvt 0.819472 0.291654\nvt 0.817406 0.290121\nvt 0.819472 0.291654\nvt 0.820315 0.291251\nvt 0.821186 0.293727\nvt 0.821186 0.293727\nvt 0.820205 0.293713\nvt 0.819472 0.291654\nvt 0.820205 0.293713\nvt 0.821186 0.293727\nvt 0.820188 0.296178\nvt 0.820188 0.296178\nvt 0.819366 0.295745\nvt 0.820205 0.293713\nvt 0.819366 0.295745\nvt 0.820188 0.296178\nvt 0.817697 0.297883\nvt 0.817697 0.297883\nvt 0.817164 0.297169\nvt 0.819366 0.295745\nvt 0.817164 0.297169\nvt 0.817697 0.297883\nvt 0.814228 0.298586\nvt 0.814228 0.298586\nvt 0.813944 0.297777\nvt 0.817164 0.297169\nvt 0.813944 0.297777\nvt 0.814228 0.298586\nvt 0.801990 0.298852\nvt 0.801990 0.298852\nvt 0.802030 0.298036\nvt 0.813944 0.297777\nvt 0.802030 0.298036\nvt 0.801990 0.298852\nvt 0.785860 0.297668\nvt 0.785860 0.297668\nvt 0.785972 0.296859\nvt 0.802030 0.298036\nvt 0.785972 0.296859\nvt 0.785860 0.297668\nvt 0.772783 0.295906\nvt 0.772783 0.295906\nvt 0.773128 0.295136\nvt 0.785972 0.296859\nvt 0.773128 0.295136\nvt 0.772783 0.295906\nvt 0.768767 0.294939\nvt 0.768767 0.294939\nvt 0.769338 0.294304\nvt 0.773128 0.295136\nvt 0.769338 0.294304\nvt 0.768767 0.294939\nvt 0.766856 0.294020\nvt 0.766856 0.294020\nvt 0.767719 0.293686\nvt 0.769338 0.294304\nvt 0.767719 0.293686\nvt 0.766856 0.294020\nvt 0.766447 0.293119\nvt 0.766447 0.293119\nvt 0.767469 0.293117\nvt 0.767719 0.293686\nvt 0.767469 0.293117\nvt 0.766447 0.293119\nvt 0.766879 0.292215\nvt 0.766879 0.292215\nvt 0.767734 0.292542\nvt 0.767469 0.293117\nvt 0.767734 0.292542\nvt 0.766879 0.292215\nvt 0.768788 0.291250\nvt 0.768788 0.291250\nvt 0.769343 0.291891\nvt 0.767734 0.292542\nvt 0.769343 0.291891\nvt 0.768788 0.291250\nvt 0.772836 0.290379\nvt 0.772836 0.290379\nvt 0.773142 0.291161\nvt 0.769343 0.291891\nvt 0.419818 0.305021\nvt 0.419862 0.310131\nvt 0.402143 0.310518\nvt 0.402143 0.310518\nvt 0.402091 0.305408\nvt 0.419818 0.305021\nvt 0.402091 0.305408\nvt 0.402143 0.310518\nvt 0.385627 0.313542\nvt 0.385627 0.313542\nvt 0.385576 0.308431\nvt 0.402091 0.305408\nvt 0.385576 0.308431\nvt 0.385627 0.313542\nvt 0.379368 0.315239\nvt 0.379368 0.315239\nvt 0.379317 0.310129\nvt 0.385576 0.308431\nvt 0.419862 0.310131\nvt 0.419818 0.305021\nvt 0.435516 0.306947\nvt 0.435516 0.306947\nvt 0.435533 0.312058\nvt 0.419862 0.310131\nvt 0.435533 0.312058\nvt 0.435516 0.306947\nvt 0.441555 0.308252\nvt 0.441555 0.308252\nvt 0.441554 0.313363\nvt 0.435533 0.312058\nvt 0.441554 0.313363\nvt 0.441555 0.308252\nvt 0.447428 0.309401\nvt 0.447428 0.309401\nvt 0.447410 0.314512\nvt 0.441554 0.313363\nvt 0.447410 0.314512\nvt 0.447428 0.309401\nvt 0.453062 0.309955\nvt 0.453062 0.309955\nvt 0.453030 0.315065\nvt 0.447410 0.314512\nvt 0.453030 0.315065\nvt 0.453062 0.309955\nvt 0.458647 0.309473\nvt 0.458647 0.309473\nvt 0.458608 0.314584\nvt 0.453030 0.315065\nvt 0.458608 0.314584\nvt 0.458647 0.309473\nvt 0.464434 0.308384\nvt 0.464434 0.308384\nvt 0.464399 0.313495\nvt 0.458608 0.314584\nvt 0.464399 0.313495\nvt 0.464434 0.308384\nvt 0.470430 0.307108\nvt 0.470430 0.307108\nvt 0.470414 0.312218\nvt 0.464399 0.313495\nvt 0.470414 0.312218\nvt 0.470430 0.307108\nvt 0.486082 0.305022\nvt 0.486082 0.305022\nvt 0.486154 0.310133\nvt 0.470414 0.312218\nvt 0.486154 0.310133\nvt 0.486082 0.305022\nvt 0.503769 0.304751\nvt 0.503769 0.304751\nvt 0.503984 0.309858\nvt 0.486154 0.310133\nvt 0.503984 0.309858\nvt 0.503769 0.304751\nvt 0.520412 0.306681\nvt 0.520412 0.306681\nvt 0.520753 0.311781\nvt 0.503984 0.309858\nvt 0.520753 0.311781\nvt 0.520412 0.306681\nvt 0.526795 0.307861\nvt 0.526795 0.307861\nvt 0.527174 0.312958\nvt 0.520753 0.311781\nvt 0.527174 0.312958\nvt 0.526795 0.307861\nvt 0.530833 0.308421\nvt 0.530833 0.308421\nvt 0.531235 0.313516\nvt 0.527174 0.312958\nvt 0.531235 0.313516\nvt 0.530833 0.308421\nvt 0.534239 0.308389\nvt 0.534239 0.308389\nvt 0.534655 0.313483\nvt 0.531235 0.313516\nvt 0.534655 0.313483\nvt 0.534239 0.308389\nvt 0.537596 0.307863\nvt 0.537596 0.307863\nvt 0.538019 0.312956\nvt 0.534655 0.313483\nvt 0.538019 0.312956\nvt 0.537596 0.307863\nvt 0.541466 0.306664\nvt 0.541466 0.306664\nvt 0.541891 0.311757\nvt 0.538019 0.312956\nvt 0.437035 0.333440\nvt 0.438344 0.331789\nvt 0.438344 0.331789\nvt 0.487902 0.331421\nvt 0.488033 0.333322\nvt 0.488033 0.333322\nvt 0.488033 0.333322\nvt 0.488033 0.333322\nvt 0.484517 0.333951\nvt 0.484517 0.333951\nvt 0.484517 0.333951\nvt 0.481101 0.334933\nvt 0.481101 0.334933\nvt 0.481101 0.334933\nvt 0.477414 0.335922\nvt 0.477414 0.335922\nvt 0.477414 0.335922\nvt 0.444696 0.335189\nvt 0.444696 0.335189\nvt 0.444696 0.335189\nvt 0.437035 0.333440\nvt 0.437035 0.333440\nvt 0.437035 0.333440\nvt 0.433875 0.334357\nvt 0.530540 0.336247\nvt 0.498908 0.335313\nvt 0.530540 0.336247\nvt 0.498908 0.335313\nvt 0.498908 0.335313\nvt 0.495797 0.334594\nvt 0.495797 0.334594\nvt 0.495797 0.334594\nvt 0.492099 0.333858\nvt 0.488119 0.336911\nvt 0.492099 0.333858\nvt 0.492099 0.333858\nvt 0.488033 0.333322\nvt 0.488119 0.336911\nvt 0.484224 0.337408\nvt 0.481521 0.337991\nvt 0.484224 0.337408\nvt 0.488119 0.336911\nvt 0.484224 0.337408\nvt 0.488119 0.336911\nvt 0.481521 0.337991\nvt 0.481521 0.337991\nvt 0.477991 0.338912\nvt 0.477991 0.338912\nvt 0.445152 0.338419\nvt 0.445152 0.338419\nvt 0.445152 0.338419\nvt 0.445152 0.338419\nvt 0.437811 0.337074\nvt 0.437811 0.337074\nvt 0.437811 0.337074\nvt 0.434767 0.337085\nvt 0.488119 0.336911\nvt 0.492518 0.337303\nvt 0.488119 0.336911\nvt 0.495386 0.337656\nvt 0.492518 0.337303\nvt 0.495386 0.337656\nvt 0.498262 0.338333\nvt 0.495386 0.337656\nvt 0.498262 0.338333\nvt 0.529785 0.339319\nvt 0.498262 0.338333\nvt 0.529785 0.339319\nvt 0.541645 0.161756\nvt 0.537452 0.161659\nvt 0.536264 0.160047\nvt 0.536264 0.160047\nvt 0.541228 0.160062\nvt 0.541645 0.161756\nvt 0.537452 0.161659\nvt 0.541645 0.161756\nvt 0.541973 0.162542\nvt 0.541973 0.162542\nvt 0.539157 0.162358\nvt 0.537452 0.161659\nvt 0.541645 0.161756\nvt 0.541228 0.160062\nvt 0.571177 0.160171\nvt 0.571177 0.160171\nvt 0.570932 0.161833\nvt 0.541645 0.161756\nvt 0.570028 0.157778\nvt 0.571177 0.160171\nvt 0.541228 0.160062\nvt 0.541228 0.160062\nvt 0.541207 0.157827\nvt 0.570028 0.157778\nvt 0.541207 0.157827\nvt 0.541228 0.160062\nvt 0.536264 0.160047\nvt 0.570028 0.157778\nvt 0.541207 0.157827\nvt 0.541270 0.156498\nvt 0.541270 0.156498\nvt 0.568975 0.156215\nvt 0.570028 0.157778\nvt 0.536264 0.160047\nvt 0.537538 0.157969\nvt 0.541207 0.157827\nvt 0.541270 0.156498\nvt 0.541207 0.157827\nvt 0.537538 0.157969\nvt 0.570932 0.161833\nvt 0.571177 0.160171\nvt 0.579056 0.160155\nvt 0.579056 0.160155\nvt 0.578951 0.161616\nvt 0.570932 0.161833\nvt 0.570932 0.161833\nvt 0.578951 0.161616\nvt 0.576787 0.162339\nvt 0.576787 0.162339\nvt 0.570594 0.162653\nvt 0.570932 0.161833\nvt 0.570594 0.162653\nvt 0.541973 0.162542\nvt 0.541645 0.161756\nvt 0.541645 0.161756\nvt 0.570932 0.161833\nvt 0.570594 0.162653\nvt 0.537538 0.157969\nvt 0.539125 0.156890\nvt 0.541270 0.156498\nvt 0.487902 0.331421\nvt 0.488033 0.333322\nvt 0.484517 0.333951\nvt 0.484517 0.333951\nvt 0.482977 0.332538\nvt 0.487902 0.331421\nvt 0.482977 0.332538\nvt 0.484517 0.333951\nvt 0.481101 0.334933\nvt 0.481101 0.334933\nvt 0.480537 0.333545\nvt 0.482977 0.332538\nvt 0.480537 0.333545\nvt 0.481101 0.334933\nvt 0.477414 0.335922\nvt 0.477414 0.335922\nvt 0.477494 0.334170\nvt 0.480537 0.333545\nvt 0.477494 0.334170\nvt 0.477414 0.335922\nvt 0.444696 0.335189\nvt 0.444696 0.335189\nvt 0.444555 0.333432\nvt 0.477494 0.334170\nvt 0.444555 0.333432\nvt 0.444696 0.335189\nvt 0.437035 0.333440\nvt 0.437035 0.333440\nvt 0.438344 0.331789\nvt 0.444555 0.333432\nvt 0.438344 0.331789\nvt 0.437035 0.333440\nvt 0.433875 0.334357\nvt 0.433875 0.334357\nvt 0.434769 0.331930\nvt 0.438344 0.331789\nvt 0.488033 0.333322\nvt 0.487902 0.331421\nvt 0.493384 0.332299\nvt 0.493384 0.332299\nvt 0.492099 0.333858\nvt 0.488033 0.333322\nvt 0.492099 0.333858\nvt 0.493384 0.332299\nvt 0.496050 0.333121\nvt 0.496050 0.333121\nvt 0.495797 0.334594\nvt 0.492099 0.333858\nvt 0.495797 0.334594\nvt 0.496050 0.333121\nvt 0.498837 0.333552\nvt 0.498837 0.333552\nvt 0.498908 0.335313\nvt 0.495797 0.334594\nvt 0.498908 0.335313\nvt 0.498837 0.333552\nvt 0.531132 0.334535\nvt 0.531132 0.334535\nvt 0.530540 0.336247\nvt 0.498908 0.335313\nvt 0.488033 0.333322\nvt 0.488119 0.336911\nvt 0.484224 0.337408\nvt 0.484224 0.337408\nvt 0.484517 0.333951\nvt 0.488033 0.333322\nvt 0.484517 0.333951\nvt 0.484224 0.337408\nvt 0.481521 0.337991\nvt 0.481521 0.337991\nvt 0.481101 0.334933\nvt 0.484517 0.333951\nvt 0.481101 0.334933\nvt 0.481521 0.337991\nvt 0.477991 0.338912\nvt 0.477991 0.338912\nvt 0.477414 0.335922\nvt 0.481101 0.334933\nvt 0.477414 0.335922\nvt 0.477991 0.338912\nvt 0.445152 0.338419\nvt 0.445152 0.338419\nvt 0.444696 0.335189\nvt 0.477414 0.335922\nvt 0.444696 0.335189\nvt 0.445152 0.338419\nvt 0.437811 0.337074\nvt 0.437811 0.337074\nvt 0.437035 0.333440\nvt 0.444696 0.335189\nvt 0.437035 0.333440\nvt 0.437811 0.337074\nvt 0.434767 0.337085\nvt 0.434767 0.337085\nvt 0.433875 0.334357\nvt 0.437035 0.333440\nvt 0.488119 0.336911\nvt 0.488033 0.333322\nvt 0.492099 0.333858\nvt 0.492099 0.333858\nvt 0.492518 0.337303\nvt 0.488119 0.336911\nvt 0.492518 0.337303\nvt 0.492099 0.333858\nvt 0.495797 0.334594\nvt 0.495797 0.334594\nvt 0.495386 0.337656\nvt 0.492518 0.337303\nvt 0.495386 0.337656\nvt 0.495797 0.334594\nvt 0.498908 0.335313\nvt 0.498908 0.335313\nvt 0.498262 0.338333\nvt 0.495386 0.337656\nvt 0.498262 0.338333\nvt 0.498908 0.335313\nvt 0.530540 0.336247\nvt 0.530540 0.336247\nvt 0.529785 0.339319\nvt 0.498262 0.338333\nvt 0.484224 0.337408\nvt 0.484371 0.339232\nvt 0.481733 0.339800\nvt 0.481733 0.339800\nvt 0.481521 0.337991\nvt 0.484224 0.337408\nvt 0.484371 0.339232\nvt 0.484224 0.337408\nvt 0.488119 0.336911\nvt 0.488119 0.336911\nvt 0.488167 0.338746\nvt 0.484371 0.339232\nvt 0.481521 0.337991\nvt 0.481733 0.339800\nvt 0.478187 0.340713\nvt 0.478187 0.340713\nvt 0.477991 0.338912\nvt 0.481521 0.337991\nvt 0.445152 0.338419\nvt 0.477991 0.338912\nvt 0.478187 0.340713\nvt 0.478187 0.340713\nvt 0.445551 0.340323\nvt 0.445152 0.338419\nvt 0.445152 0.338419\nvt 0.445551 0.340323\nvt 0.438518 0.339083\nvt 0.438518 0.339083\nvt 0.437811 0.337074\nvt 0.445152 0.338419\nvt 0.437811 0.337074\nvt 0.438518 0.339083\nvt 0.435546 0.338859\nvt 0.435546 0.338859\nvt 0.434767 0.337085\nvt 0.437811 0.337074\nvt 0.492422 0.339161\nvt 0.488167 0.338746\nvt 0.488119 0.336911\nvt 0.488119 0.336911\nvt 0.492518 0.337303\nvt 0.492422 0.339161\nvt 0.492422 0.339161\nvt 0.492518 0.337303\nvt 0.495386 0.337656\nvt 0.495386 0.337656\nvt 0.495158 0.339507\nvt 0.492422 0.339161\nvt 0.495158 0.339507\nvt 0.495386 0.337656\nvt 0.498262 0.338333\nvt 0.498262 0.338333\nvt 0.498025 0.340174\nvt 0.495158 0.339507\nvt 0.498025 0.340174\nvt 0.498262 0.338333\nvt 0.529785 0.339319\nvt 0.529785 0.339319\nvt 0.529252 0.341182\nvt 0.498025 0.340174\nvt 0.957411 0.124713\nvt 0.957746 0.151817\nvt 0.957746 0.151817\nvt 0.957858 0.121826\nvt 0.957411 0.124713\nvt 0.974194 0.098936\nvt 0.957858 0.121826\nvt 0.957858 0.121826\nvt 0.974194 0.098936\nvt 0.958483 0.154730\nvt 0.963742 0.179440\nvt 0.958483 0.154730\nvt 0.963742 0.179440\nvt 0.960116 0.180109\nvt 0.960116 0.180109\nvt 0.963851 0.182419\nvt 0.959855 0.181666\nvt 0.959855 0.181666\nvt 0.963851 0.182419\nvt 0.958691 0.207201\nvt 0.963851 0.182419\nvt 0.963742 0.179440\nvt 0.963851 0.182419\nvt 0.963742 0.179440\nvt 0.958327 0.210166\nvt 0.958696 0.237160\nvt 0.958327 0.210166\nvt 0.958691 0.207201\nvt 0.958327 0.210166\nvt 0.958691 0.207201\nvt 0.958696 0.237160\nvt 0.959074 0.240146\nvt 0.959074 0.240146\nvt 0.973129 0.264996\nvt 0.959074 0.240146\nvt 0.959074 0.240146\nvt 0.973129 0.264996\nvt 0.969370 0.267853\nvt 0.969370 0.267853\nvt 0.957746 0.151817\nvt 0.958483 0.154730\nvt 0.957746 0.151817\nvt 0.554392 0.576762\nvt 0.550673 0.580044\nvt 0.512700 0.588151\nvt 0.554392 0.576762\nvt 0.512700 0.588151\nvt 0.541507 0.511743\nvt 0.554392 0.576762\nvt 0.541507 0.511743\nvt 0.565487 0.537194\nvt 0.566503 0.541953\nvt 0.554392 0.576762\nvt 0.565487 0.537194\nvt 0.541507 0.511743\nvt 0.512700 0.588151\nvt 0.508282 0.586525\nvt 0.508282 0.586525\nvt 0.536850 0.509998\nvt 0.541507 0.511743\nvt 0.536850 0.509998\nvt 0.508282 0.586525\nvt 0.497900 0.516361\nvt 0.508282 0.586525\nvt 0.484197 0.555188\nvt 0.497900 0.516361\nvt 0.484197 0.555188\nvt 0.483570 0.550310\nvt 0.497900 0.516361\nvt 0.501838 0.513460\nvt 0.536850 0.509998\nvt 0.497900 0.516361\nvt 0.957746 0.151817\nvt 0.953780 0.152698\nvt 0.952785 0.123557\nvt 0.952785 0.123557\nvt 0.957411 0.124713\nvt 0.957746 0.151817\nvt 0.957746 0.151817\nvt 0.957411 0.124713\nvt 0.961536 0.126505\nvt 0.961536 0.126505\nvt 0.961913 0.150600\nvt 0.957746 0.151817\nvt 0.957411 0.124713\nvt 0.952785 0.123557\nvt 0.953537 0.120382\nvt 0.953537 0.120382\nvt 0.957858 0.121826\nvt 0.957411 0.124713\nvt 0.961536 0.126505\nvt 0.957411 0.124713\nvt 0.957858 0.121826\nvt 0.957858 0.121826\nvt 0.953537 0.120382\nvt 0.971060 0.095912\nvt 0.971060 0.095912\nvt 0.974194 0.098936\nvt 0.957858 0.121826\nvt 0.962039 0.122782\nvt 0.957858 0.121826\nvt 0.974194 0.098936\nvt 0.957858 0.121826\nvt 0.962039 0.122782\nvt 0.961536 0.126505\nvt 0.974194 0.098936\nvt 0.976067 0.102297\nvt 0.962039 0.122782\nvt 0.953780 0.152698\nvt 0.957746 0.151817\nvt 0.958483 0.154730\nvt 0.958483 0.154730\nvt 0.953875 0.154693\nvt 0.953780 0.152698\nvt 0.953875 0.154693\nvt 0.958483 0.154730\nvt 0.963742 0.179440\nvt 0.963742 0.179440\nvt 0.960116 0.180109\nvt 0.953875 0.154693\nvt 0.966745 0.178461\nvt 0.963742 0.179440\nvt 0.958483 0.154730\nvt 0.958483 0.154730\nvt 0.963350 0.155477\nvt 0.966745 0.178461\nvt 0.960116 0.180109\nvt 0.963742 0.179440\nvt 0.963851 0.182419\nvt 0.963851 0.182419\nvt 0.959855 0.181666\nvt 0.960116 0.180109\nvt 0.959855 0.181666\nvt 0.963851 0.182419\nvt 0.958691 0.207201\nvt 0.958691 0.207201\nvt 0.954307 0.207415\nvt 0.959855 0.181666\nvt 0.962533 0.206439\nvt 0.958691 0.207201\nvt 0.963851 0.182419\nvt 0.963851 0.182419\nvt 0.967553 0.183731\nvt 0.962533 0.206439\nvt 0.963742 0.179440\nvt 0.966745 0.178461\nvt 0.967553 0.183731\nvt 0.967553 0.183731\nvt 0.963851 0.182419\nvt 0.963742 0.179440\nvt 0.954307 0.207415\nvt 0.958691 0.207201\nvt 0.958327 0.210166\nvt 0.958327 0.210166\nvt 0.953882 0.209376\nvt 0.954307 0.207415\nvt 0.953882 0.209376\nvt 0.958327 0.210166\nvt 0.958696 0.237160\nvt 0.958696 0.237160\nvt 0.954249 0.238334\nvt 0.953882 0.209376\nvt 0.961987 0.235480\nvt 0.958696 0.237160\nvt 0.958327 0.210166\nvt 0.958327 0.210166\nvt 0.962633 0.211345\nvt 0.961987 0.235480\nvt 0.958691 0.207201\nvt 0.962533 0.206439\nvt 0.962633 0.211345\nvt 0.962633 0.211345\nvt 0.958327 0.210166\nvt 0.958691 0.207201\nvt 0.954249 0.238334\nvt 0.958696 0.237160\nvt 0.959074 0.240146\nvt 0.959074 0.240146\nvt 0.958696 0.237160\nvt 0.961987 0.235480\nvt 0.959074 0.240146\nvt 0.954768 0.241051\nvt 0.954249 0.238334\nvt 0.954768 0.241051\nvt 0.959074 0.240146\nvt 0.973129 0.264996\nvt 0.973129 0.264996\nvt 0.969370 0.267853\nvt 0.954768 0.241051\nvt 0.975388 0.261796\nvt 0.973129 0.264996\nvt 0.959074 0.240146\nvt 0.959074 0.240146\nvt 0.963032 0.239518\nvt 0.975388 0.261796\nvt 0.961987 0.235480\nvt 0.963032 0.239518\nvt 0.959074 0.240146\nvt 0.969370 0.267853\nvt 0.973129 0.264996\nvt 0.974887 0.267156\nvt 0.974887 0.267156\nvt 0.971343 0.270062\nvt 0.969370 0.267853\nvt 0.957746 0.151817\nvt 0.961913 0.150600\nvt 0.963350 0.155477\nvt 0.963350 0.155477\nvt 0.958483 0.154730\nvt 0.957746 0.151817\nvt 0.975704 0.266755\nvt 0.973650 0.264873\nvt 0.975388 0.261796\nvt 0.975388 0.261796\nvt 0.977675 0.263615\nvt 0.975704 0.266755\nvt 0.814331 0.745272\nvt 0.832815 0.706390\nvt 0.814331 0.745272\nvt 0.811793 0.247510\nvt 0.811793 0.247510\nvt 0.843942 0.263514\nvt 0.811793 0.247510\nvt 0.888329 0.296923\nvt 0.885965 0.296848\nvt 0.885965 0.296848\nvt 0.886388 0.301380\nvt 0.888696 0.301448\nvt 0.886388 0.301380\nvt 0.250175 0.662986\nvt 0.252485 0.657645\nvt 0.252485 0.657645\nvt 0.252485 0.657645\nvt 0.252485 0.657645\nvt 0.252824 0.652943\nvt 0.180815 0.652587\nvt 0.250175 0.662986\nvt 0.874957 0.735511\nvt 0.817044 0.748236\nvt 0.834780 0.707037\nvt 0.834780 0.707037\nvt 0.873284 0.707654\nvt 0.874957 0.735511\nvt 0.834780 0.707037\nvt 0.817044 0.748236\nvt 0.814331 0.745272\nvt 0.814331 0.745272\nvt 0.832815 0.706390\nvt 0.834780 0.707037\nvt 0.828349 0.703588\nvt 0.832815 0.706390\nvt 0.814331 0.745272\nvt 0.814331 0.745272\nvt 0.809396 0.743242\nvt 0.828349 0.703588\nvt 0.823163 0.699960\nvt 0.828349 0.703588\nvt 0.809396 0.743242\nvt 0.809396 0.743242\nvt 0.803640 0.740005\nvt 0.823163 0.699960\nvt 0.817597 0.695923\nvt 0.823163 0.699960\nvt 0.803640 0.740005\nvt 0.803640 0.740005\nvt 0.795866 0.734516\nvt 0.817597 0.695923\nvt 0.817597 0.695923\nvt 0.795866 0.734516\nvt 0.817597 0.695923\nvt 0.813570 0.243401\nvt 0.811793 0.247510\nvt 0.810448 0.246257\nvt 0.810448 0.246257\nvt 0.809770 0.241524\nvt 0.813570 0.243401\nvt 0.816254 0.237829\nvt 0.813570 0.243401\nvt 0.809770 0.241524\nvt 0.809770 0.241524\nvt 0.811305 0.235426\nvt 0.816254 0.237829\nvt 0.811305 0.235426\nvt 0.809770 0.241524\nvt 0.807212 0.240512\nvt 0.807212 0.240512\nvt 0.808799 0.234257\nvt 0.811305 0.235426\nvt 0.809770 0.241524\nvt 0.810448 0.246257\nvt 0.807623 0.245909\nvt 0.807623 0.245909\nvt 0.807212 0.240512\nvt 0.809770 0.241524\nvt 0.843942 0.263514\nvt 0.811793 0.247510\nvt 0.813570 0.243401\nvt 0.813570 0.243401\nvt 0.845802 0.259388\nvt 0.843942 0.263514\nvt 0.848347 0.253691\nvt 0.845802 0.259388\nvt 0.813570 0.243401\nvt 0.813570 0.243401\nvt 0.816254 0.237829\nvt 0.848347 0.253691\nvt 0.810448 0.246257\nvt 0.811793 0.247510\nvt 0.808877 0.247846\nvt 0.808877 0.247846\nvt 0.807623 0.245909\nvt 0.810448 0.246257\nvt 0.811793 0.247510\nvt 0.843942 0.263514\nvt 0.843586 0.264901\nvt 0.843586 0.264901\nvt 0.808877 0.247846\nvt 0.811793 0.247510\nvt 0.848347 0.253691\nvt 0.816254 0.237829\nvt 0.819295 0.231635\nvt 0.819295 0.231635\nvt 0.851398 0.247488\nvt 0.848347 0.253691\nvt 0.811305 0.235426\nvt 0.808799 0.234257\nvt 0.811853 0.228012\nvt 0.811853 0.228012\nvt 0.814343 0.229223\nvt 0.811305 0.235426\nvt 0.814343 0.229223\nvt 0.819295 0.231635\nvt 0.816254 0.237829\nvt 0.816254 0.237829\nvt 0.811305 0.235426\nvt 0.814343 0.229223\nvt 0.851398 0.247488\nvt 0.819295 0.231635\nvt 0.819295 0.231635\nvt 0.819295 0.231635\nvt 0.814343 0.229223\nvt 0.814343 0.229223\nvt 0.811853 0.228012\nvt 0.814343 0.229223\nvt 0.811853 0.228012\nvt 0.858324 0.227291\nvt 0.885475 0.235080\nvt 0.885464 0.240761\nvt 0.885464 0.240761\nvt 0.858313 0.232971\nvt 0.858324 0.227291\nvt 0.858300 0.238860\nvt 0.858313 0.232971\nvt 0.885464 0.240761\nvt 0.885464 0.240761\nvt 0.885451 0.246650\nvt 0.858300 0.238860\nvt 0.858279 0.248758\nvt 0.858300 0.238860\nvt 0.885451 0.246650\nvt 0.885451 0.246650\nvt 0.885434 0.253917\nvt 0.858279 0.248758\nvt 0.858279 0.248758\nvt 0.885434 0.253917\nvt 0.885434 0.253917\nvt 0.885434 0.253917\nvt 0.885434 0.253917\nvt 0.888097 0.253752\nvt 0.888097 0.253752\nvt 0.885434 0.253917\nvt 0.885451 0.246650\nvt 0.885451 0.246650\nvt 0.888113 0.246761\nvt 0.888097 0.253752\nvt 0.887249 0.240510\nvt 0.888113 0.246761\nvt 0.885451 0.246650\nvt 0.885451 0.246650\nvt 0.885464 0.240761\nvt 0.887249 0.240510\nvt 0.886619 0.235975\nvt 0.887249 0.240510\nvt 0.885464 0.240761\nvt 0.885464 0.240761\nvt 0.885475 0.235080\nvt 0.886619 0.235975\nvt 0.778121 0.321789\nvt 0.778121 0.321789\nvt 0.838102 0.322759\nvt 0.922759 0.687501\nvt 0.915782 0.686531\nvt 0.918495 0.682156\nvt 0.918495 0.682156\nvt 0.924625 0.685727\nvt 0.922759 0.687501\nvt 0.915782 0.686531\nvt 0.922759 0.687501\nvt 0.921494 0.689660\nvt 0.921494 0.689660\nvt 0.915674 0.691258\nvt 0.915782 0.686531\nvt 0.915674 0.691258\nvt 0.921494 0.689660\nvt 0.951699 0.714311\nvt 0.951699 0.714311\nvt 0.948122 0.719391\nvt 0.915674 0.691258\nvt 0.978136 0.743214\nvt 0.948122 0.719391\nvt 0.951699 0.714311\nvt 0.951699 0.714311\nvt 0.978102 0.735692\nvt 0.978136 0.743214\nvt 0.991247 0.735653\nvt 0.978136 0.743214\nvt 0.978102 0.735692\nvt 0.978102 0.735692\nvt 0.984825 0.731743\nvt 0.991247 0.735653\nvt 0.991247 0.735653\nvt 0.984825 0.731743\nvt 0.985553 0.730824\nvt 0.985553 0.730824\nvt 0.992892 0.734073\nvt 0.991247 0.735653\nvt 0.992892 0.734073\nvt 0.985553 0.730824\nvt 0.969216 0.699916\nvt 0.969216 0.699916\nvt 0.972848 0.694649\nvt 0.992892 0.734073\nvt 0.972848 0.694649\nvt 0.969216 0.699916\nvt 0.949525 0.691108\nvt 0.949525 0.691108\nvt 0.951286 0.684224\nvt 0.972848 0.694649\nvt 0.951286 0.684224\nvt 0.949525 0.691108\nvt 0.929803 0.682823\nvt 0.929803 0.682823\nvt 0.928731 0.676478\nvt 0.951286 0.684224\nvt 0.928731 0.676478\nvt 0.929803 0.682823\nvt 0.926895 0.684215\nvt 0.926895 0.684215\nvt 0.922884 0.678679\nvt 0.928731 0.676478\nvt 0.922884 0.678679\nvt 0.926895 0.684215\nvt 0.924625 0.685727\nvt 0.924625 0.685727\nvt 0.918495 0.682156\nvt 0.922884 0.678679\nvt 0.885983 0.291975\nvt 0.888367 0.292137\nvt 0.888329 0.296923\nvt 0.888329 0.296923\nvt 0.885965 0.296848\nvt 0.885983 0.291975\nvt 0.885965 0.296848\nvt 0.888329 0.296923\nvt 0.888696 0.301448\nvt 0.888696 0.301448\nvt 0.886388 0.301380\nvt 0.885965 0.296848\nvt 0.888367 0.292137\nvt 0.885983 0.291975\nvt 0.886169 0.286752\nvt 0.886169 0.286752\nvt 0.888653 0.286981\nvt 0.888367 0.292137\nvt 0.888653 0.286981\nvt 0.886169 0.286752\nvt 0.886432 0.281019\nvt 0.886432 0.281019\nvt 0.889047 0.281454\nvt 0.888653 0.286981\nvt 0.886388 0.301380\nvt 0.888696 0.301448\nvt 0.889101 0.340496\nvt 0.889101 0.340496\nvt 0.886230 0.340628\nvt 0.886388 0.301380\nvt 0.886230 0.340628\nvt 0.889101 0.340496\nvt 0.890029 0.375115\nvt 0.890029 0.375115\nvt 0.886739 0.375616\nvt 0.886230 0.340628\nvt 0.728530 0.052998\nvt 0.728236 0.056375\nvt 0.714592 0.056381\nvt 0.714592 0.056381\nvt 0.714486 0.053489\nvt 0.728530 0.052998\nvt 0.714486 0.053489\nvt 0.714592 0.056381\nvt 0.712581 0.056484\nvt 0.712581 0.056484\nvt 0.712408 0.053586\nvt 0.714486 0.053489\nvt 0.795850 0.262944\nvt 0.795586 0.265678\nvt 0.755728 0.266560\nvt 0.755728 0.266560\nvt 0.755024 0.262382\nvt 0.795850 0.262944\nvt 0.667396 0.066302\nvt 0.667735 0.062839\nvt 0.689438 0.063422\nvt 0.689438 0.063422\nvt 0.689276 0.066029\nvt 0.667396 0.066302\nvt 0.667735 0.062839\nvt 0.667396 0.066302\nvt 0.645321 0.066337\nvt 0.645321 0.066337\nvt 0.645831 0.062044\nvt 0.667735 0.062839\nvt 0.693097 0.176147\nvt 0.693192 0.174056\nvt 0.698306 0.173352\nvt 0.698306 0.173352\nvt 0.698316 0.175594\nvt 0.693097 0.176147\nvt 0.693097 0.176147\nvt 0.698316 0.175594\nvt 0.698242 0.177933\nvt 0.698242 0.177933\nvt 0.693021 0.178346\nvt 0.693097 0.176147\nvt 0.693021 0.178346\nvt 0.698242 0.177933\nvt 0.698248 0.180497\nvt 0.698248 0.180497\nvt 0.693053 0.180795\nvt 0.693021 0.178346\nvt 0.693163 0.183637\nvt 0.693053 0.180795\nvt 0.698248 0.180497\nvt 0.698248 0.180497\nvt 0.698303 0.183453\nvt 0.693163 0.183637\nvt 0.517501 0.223631\nvt 0.518388 0.228807\nvt 0.498887 0.228847\nvt 0.498887 0.228847\nvt 0.498093 0.223468\nvt 0.517501 0.223631\nvt 0.498093 0.223468\nvt 0.498887 0.228847\nvt 0.479306 0.228858\nvt 0.479306 0.228858\nvt 0.478605 0.223305\nvt 0.498093 0.223468\nvt 0.687221 0.192250\nvt 0.682064 0.192896\nvt 0.681553 0.185863\nvt 0.681553 0.185863\nvt 0.686746 0.185635\nvt 0.687221 0.192250\nvt 0.682064 0.192896\nvt 0.687221 0.192250\nvt 0.687336 0.193253\nvt 0.687336 0.193253\nvt 0.682309 0.193941\nvt 0.682064 0.192896\nvt 0.601409 0.010000\nvt 0.601601 0.004719\nvt 0.632326 0.005534\nvt 0.632326 0.005534\nvt 0.631974 0.011273\nvt 0.601409 0.010000\nvt 0.667011 0.011149\nvt 0.631974 0.011273\nvt 0.632326 0.005534\nvt 0.632326 0.005534\nvt 0.667569 0.005854\nvt 0.667011 0.011149\nvt 0.538592 0.326415\nvt 0.507214 0.326072\nvt 0.507597 0.320494\nvt 0.507597 0.320494\nvt 0.539302 0.321257\nvt 0.538592 0.326415\nvt 0.180815 0.652587\nvt 0.214383 0.652697\nvt 0.252824 0.652943\nvt 0.180815 0.652587\nvt 0.252824 0.652943\nvt 0.252485 0.657645\nvt 0.252824 0.652943\nvt 0.252972 0.655263\nvt 0.252485 0.657645\nvt 0.180815 0.652587\nvt 0.252485 0.657645\nvt 0.209360 0.675094\nvt 0.252485 0.657645\nvt 0.250175 0.662986\nvt 0.209360 0.675094\nvt 0.252485 0.657645\nvt 0.251512 0.660154\nvt 0.250175 0.662986\nvt 0.250175 0.662986\nvt 0.229876 0.669248\nvt 0.209360 0.675094\nvt 0.180815 0.652587\nvt 0.209360 0.675094\nvt 0.178285 0.659433\nvt 0.209360 0.675094\nvt 0.178299 0.660554\nvt 0.178285 0.659433\nvt 0.939236 0.628268\nvt 0.951493 0.621835\nvt 0.385562 0.191885\nvt 0.373072 0.206751\nvt 0.385562 0.191885\nvt 0.385562 0.191885\nvt 0.372204 0.213842\nvt 0.364800 0.215916\nvt 0.372204 0.213842\nvt 0.376304 0.219250\nvt 0.372204 0.213842\nvt 0.373072 0.206751\nvt 0.373072 0.206751\nvt 0.372204 0.213842\nvt 0.376304 0.219250\nvt 0.376304 0.219250\nvt 0.406863 0.234123\nvt 0.364800 0.215916\nvt 0.411496 0.234982\nvt 0.406863 0.234123\nvt 0.509840 0.239788\nvt 0.411496 0.234982\nvt 0.411496 0.234982\nvt 0.411496 0.234982\nvt 0.393255 0.187555\nvt 0.399542 0.185621\nvt 0.399542 0.185621\nvt 0.399542 0.185621\nvt 0.527974 0.189916\nvt 0.423560 0.186542\nvt 0.527974 0.189916\nvt 0.417918 0.185942\nvt 0.417918 0.185942\nvt 0.423560 0.186542\nvt 0.423560 0.186542\nvt 0.417918 0.185942\nvt 0.393255 0.187555\nvt 0.393255 0.187555\nvt 0.704496 0.349154\nvt 0.720828 0.348796\nvt 0.720828 0.348796\nvt 0.720828 0.348796\nvt 0.754027 0.346628\nvt 0.754027 0.346628\nvt 0.754027 0.346628\nvt 0.754027 0.346628\nvt 0.770915 0.344579\nvt 0.984604 0.191979\nvt 0.998349 0.191979\nvt 0.984604 0.191979\nvt 0.630312 0.965674\nvt 0.628375 0.909269\nvt 0.630312 0.965674\nvt 0.751711 0.961955\nvt 0.708587 0.995142\nvt 0.751711 0.961955\nvt 0.631335 0.996527\nvt 0.630312 0.965674\nvt 0.631335 0.996527\nvt 0.998349 0.166709\nvt 0.984604 0.166709\nvt 0.998349 0.166709\nvt 0.696926 0.116043\nvt 0.697098 0.118536\nvt 0.696926 0.116043\nvt 0.712170 0.120134\nvt 0.712022 0.117639\nvt 0.712170 0.120134\nvt 0.984604 0.178676\nvt 0.984604 0.169891\nvt 0.984604 0.178676\nvt 0.610037 0.906184\nvt 0.625195 0.908678\nvt 0.610037 0.906184\nvt 0.608463 0.962180\nvt 0.607028 0.905796\nvt 0.607028 0.905796\nvt 0.608463 0.962180\nvt 0.609253 0.993035\nvt 0.608463 0.962180\nvt 0.488668 0.961335\nvt 0.488668 0.961335\nvt 0.533107 0.993343\nvt 0.984604 0.166709\nvt 0.984604 0.166709\nvt 0.984604 0.112730\nvt 0.628375 0.909269\nvt 0.628375 0.909269\nvt 0.631684 0.909342\nvt 0.710457 0.148402\nvt 0.710658 0.156493\nvt 0.710457 0.148402\nvt 0.695784 0.154098\nvt 0.695784 0.154098\nvt 0.695569 0.149107\nvt 0.945462 0.620932\nvt 0.939236 0.628268\nvt 0.922766 0.630052\nvt 0.922766 0.630052\nvt 0.926612 0.617945\nvt 0.945462 0.620932\nvt 0.945462 0.620932\nvt 0.926612 0.617945\nvt 0.934362 0.593415\nvt 0.934362 0.593415\nvt 0.957000 0.605414\nvt 0.945462 0.620932\nvt 0.926612 0.617945\nvt 0.922766 0.630052\nvt 0.917422 0.630168\nvt 0.917422 0.630168\nvt 0.921203 0.617418\nvt 0.926612 0.617945\nvt 0.934362 0.593415\nvt 0.926612 0.617945\nvt 0.921203 0.617418\nvt 0.921203 0.617418\nvt 0.917422 0.630168\nvt 0.819241 0.630810\nvt 0.819241 0.630810\nvt 0.823952 0.617257\nvt 0.921203 0.617418\nvt 0.921203 0.617418\nvt 0.823952 0.617257\nvt 0.833788 0.589664\nvt 0.833788 0.589664\nvt 0.928858 0.591550\nvt 0.921203 0.617418\nvt 0.921203 0.617418\nvt 0.928858 0.591550\nvt 0.934362 0.593415\nvt 0.939236 0.628268\nvt 0.945462 0.620932\nvt 0.951493 0.621835\nvt 0.951493 0.621835\nvt 0.944800 0.625968\nvt 0.939236 0.628268\nvt 0.945462 0.620932\nvt 0.957000 0.605414\nvt 0.963582 0.609075\nvt 0.963582 0.609075\nvt 0.951493 0.621835\nvt 0.945462 0.620932\nvt 0.962312 0.597234\nvt 0.957000 0.605414\nvt 0.934362 0.593415\nvt 0.963582 0.609075\nvt 0.957000 0.605414\nvt 0.962312 0.597234\nvt 0.934362 0.593415\nvt 0.937176 0.579801\nvt 0.962312 0.597234\nvt 0.932727 0.578444\nvt 0.928858 0.591550\nvt 0.833788 0.589664\nvt 0.934362 0.593415\nvt 0.928858 0.591550\nvt 0.932727 0.578444\nvt 0.932727 0.578444\nvt 0.937176 0.579801\nvt 0.934362 0.593415\nvt 0.833788 0.589664\nvt 0.838947 0.575591\nvt 0.932727 0.578444\nvt 0.962312 0.597234\nvt 0.965371 0.602729\nvt 0.963582 0.609075\nvt 0.366067 0.206216\nvt 0.373072 0.206751\nvt 0.372204 0.213842\nvt 0.372204 0.213842\nvt 0.364800 0.215916\nvt 0.366067 0.206216\nvt 0.373072 0.206751\nvt 0.366067 0.206216\nvt 0.381754 0.188875\nvt 0.381754 0.188875\nvt 0.385562 0.191885\nvt 0.373072 0.206751\nvt 0.378144 0.206595\nvt 0.373072 0.206751\nvt 0.385562 0.191885\nvt 0.385562 0.191885\nvt 0.389696 0.194686\nvt 0.378144 0.206595\nvt 0.389696 0.194686\nvt 0.385562 0.191885\nvt 0.393255 0.187555\nvt 0.393255 0.187555\nvt 0.396442 0.191309\nvt 0.389696 0.194686\nvt 0.364800 0.215916\nvt 0.372204 0.213842\nvt 0.376304 0.219250\nvt 0.381199 0.217168\nvt 0.376304 0.219250\nvt 0.372204 0.213842\nvt 0.372204 0.213842\nvt 0.377375 0.212619\nvt 0.381199 0.217168\nvt 0.373072 0.206751\nvt 0.378144 0.206595\nvt 0.377375 0.212619\nvt 0.377375 0.212619\nvt 0.372204 0.213842\nvt 0.373072 0.206751\nvt 0.376304 0.219250\nvt 0.381199 0.217168\nvt 0.408497 0.229852\nvt 0.408497 0.229852\nvt 0.406863 0.234123\nvt 0.376304 0.219250\nvt 0.369936 0.223579\nvt 0.376304 0.219250\nvt 0.406863 0.234123\nvt 0.376304 0.219250\nvt 0.369936 0.223579\nvt 0.364800 0.215916\nvt 0.406863 0.234123\nvt 0.404341 0.239174\nvt 0.369936 0.223579\nvt 0.406863 0.234123\nvt 0.408497 0.229852\nvt 0.413128 0.230804\nvt 0.413128 0.230804\nvt 0.411496 0.234982\nvt 0.406863 0.234123\nvt 0.404341 0.239174\nvt 0.406863 0.234123\nvt 0.411496 0.234982\nvt 0.411496 0.234982\nvt 0.413128 0.230804\nvt 0.508449 0.235589\nvt 0.508449 0.235589\nvt 0.509840 0.239788\nvt 0.411496 0.234982\nvt 0.411496 0.234982\nvt 0.509840 0.239788\nvt 0.508878 0.244826\nvt 0.508878 0.244826\nvt 0.409831 0.239672\nvt 0.411496 0.234982\nvt 0.411496 0.234982\nvt 0.409831 0.239672\nvt 0.404341 0.239174\nvt 0.396442 0.191309\nvt 0.393255 0.187555\nvt 0.399542 0.185621\nvt 0.397985 0.182255\nvt 0.399542 0.185621\nvt 0.393255 0.187555\nvt 0.393255 0.187555\nvt 0.391049 0.184650\nvt 0.397985 0.182255\nvt 0.399542 0.185621\nvt 0.397985 0.182255\nvt 0.417341 0.182106\nvt 0.417341 0.182106\nvt 0.417918 0.185942\nvt 0.399542 0.185621\nvt 0.417918 0.185942\nvt 0.417341 0.182106\nvt 0.423095 0.182691\nvt 0.423095 0.182691\nvt 0.423560 0.186542\nvt 0.417918 0.185942\nvt 0.527974 0.189916\nvt 0.423560 0.186542\nvt 0.423095 0.182691\nvt 0.423095 0.182691\nvt 0.527381 0.180078\nvt 0.527974 0.189916\nvt 0.423808 0.190621\nvt 0.423560 0.186542\nvt 0.527974 0.189916\nvt 0.527974 0.189916\nvt 0.523627 0.194233\nvt 0.423808 0.190621\nvt 0.401957 0.189677\nvt 0.399542 0.185621\nvt 0.417918 0.185942\nvt 0.417918 0.185942\nvt 0.418395 0.190145\nvt 0.401957 0.189677\nvt 0.423560 0.186542\nvt 0.423808 0.190621\nvt 0.418395 0.190145\nvt 0.418395 0.190145\nvt 0.417918 0.185942\nvt 0.423560 0.186542\nvt 0.399542 0.185621\nvt 0.401957 0.189677\nvt 0.396442 0.191309\nvt 0.391049 0.184650\nvt 0.393255 0.187555\nvt 0.385562 0.191885\nvt 0.385562 0.191885\nvt 0.381754 0.188875\nvt 0.391049 0.184650\nvt 0.723907 0.353021\nvt 0.709064 0.353498\nvt 0.704496 0.349154\nvt 0.704496 0.349154\nvt 0.720828 0.348796\nvt 0.723907 0.353021\nvt 0.723907 0.353021\nvt 0.720828 0.348796\nvt 0.754027 0.346628\nvt 0.754027 0.346628\nvt 0.754140 0.350903\nvt 0.723907 0.353021\nvt 0.720828 0.348796\nvt 0.704496 0.349154\nvt 0.703669 0.339154\nvt 0.703669 0.339154\nvt 0.720235 0.340012\nvt 0.720828 0.348796\nvt 0.753872 0.340220\nvt 0.754027 0.346628\nvt 0.720828 0.348796\nvt 0.720828 0.348796\nvt 0.720235 0.340012\nvt 0.753872 0.340220\nvt 0.769501 0.348898\nvt 0.754140 0.350903\nvt 0.754027 0.346628\nvt 0.754027 0.346628\nvt 0.770915 0.344579\nvt 0.769501 0.348898\nvt 0.770931 0.339385\nvt 0.770915 0.344579\nvt 0.754027 0.346628\nvt 0.754027 0.346628\nvt 0.753872 0.340220\nvt 0.770931 0.339385\nvt 0.984604 0.178676\nvt 0.984604 0.169891\nvt 0.998349 0.169891\nvt 0.998349 0.169891\nvt 0.998349 0.178676\nvt 0.984604 0.178676\nvt 0.998349 0.169891\nvt 0.984604 0.169891\nvt 0.984604 0.166709\nvt 0.984604 0.166709\nvt 0.998349 0.166709\nvt 0.998349 0.169891\nvt 0.984604 0.178676\nvt 0.998349 0.178676\nvt 0.998349 0.191979\nvt 0.998349 0.191979\nvt 0.984604 0.191979\nvt 0.984604 0.178676\nvt 0.998349 0.267716\nvt 0.984604 0.267716\nvt 0.984604 0.195348\nvt 0.984604 0.195348\nvt 0.998349 0.195348\nvt 0.998349 0.267716\nvt 0.998349 0.195348\nvt 0.984604 0.195348\nvt 0.984604 0.191979\nvt 0.984604 0.191979\nvt 0.998349 0.191979\nvt 0.998349 0.195348\nvt 0.625195 0.908678\nvt 0.626968 0.965193\nvt 0.611649 0.962704\nvt 0.611649 0.962704\nvt 0.610037 0.906184\nvt 0.625195 0.908678\nvt 0.610037 0.906184\nvt 0.611649 0.962704\nvt 0.608463 0.962180\nvt 0.608463 0.962180\nvt 0.607028 0.905796\nvt 0.610037 0.906184\nvt 0.612521 0.993545\nvt 0.611649 0.962704\nvt 0.626968 0.965193\nvt 0.626968 0.965193\nvt 0.627919 0.996035\nvt 0.612521 0.993545\nvt 0.611649 0.962704\nvt 0.612521 0.993545\nvt 0.609253 0.993035\nvt 0.609253 0.993035\nvt 0.608463 0.962180\nvt 0.611649 0.962704\nvt 0.626968 0.965193\nvt 0.625195 0.908678\nvt 0.628375 0.909269\nvt 0.628375 0.909269\nvt 0.630312 0.965674\nvt 0.626968 0.965193\nvt 0.627919 0.996035\nvt 0.626968 0.965193\nvt 0.630312 0.965674\nvt 0.630312 0.965674\nvt 0.631335 0.996527\nvt 0.627919 0.996035\nvt 0.749740 0.908687\nvt 0.751711 0.961955\nvt 0.633735 0.965750\nvt 0.633735 0.965750\nvt 0.631684 0.909342\nvt 0.749740 0.908687\nvt 0.633735 0.965750\nvt 0.751711 0.961955\nvt 0.708587 0.995142\nvt 0.708587 0.995142\nvt 0.634829 0.996662\nvt 0.633735 0.965750\nvt 0.631684 0.909342\nvt 0.633735 0.965750\nvt 0.630312 0.965674\nvt 0.630312 0.965674\nvt 0.628375 0.909269\nvt 0.631684 0.909342\nvt 0.631335 0.996527\nvt 0.630312 0.965674\nvt 0.633735 0.965750\nvt 0.633735 0.965750\nvt 0.634829 0.996662\nvt 0.631335 0.996527\nvt 0.984604 0.006850\nvt 0.998349 0.006850\nvt 0.998349 0.112730\nvt 0.998349 0.112730\nvt 0.984604 0.112730\nvt 0.984604 0.006850\nvt 0.984604 0.112730\nvt 0.998349 0.112730\nvt 0.998349 0.166709\nvt 0.998349 0.166709\nvt 0.984604 0.166709\nvt 0.984604 0.112730\nvt 0.700103 0.116378\nvt 0.708957 0.117305\nvt 0.709152 0.119796\nvt 0.709152 0.119796\nvt 0.700306 0.118869\nvt 0.700103 0.116378\nvt 0.700103 0.116378\nvt 0.700306 0.118869\nvt 0.697098 0.118536\nvt 0.697098 0.118536\nvt 0.696926 0.116043\nvt 0.700103 0.116378\nvt 0.709152 0.119796\nvt 0.708957 0.117305\nvt 0.712022 0.117639\nvt 0.712022 0.117639\nvt 0.712170 0.120134\nvt 0.709152 0.119796\nvt 0.588306 0.120059\nvt 0.588201 0.117562\nvt 0.693753 0.115973\nvt 0.693753 0.115973\nvt 0.693882 0.118469\nvt 0.588306 0.120059\nvt 0.693882 0.118469\nvt 0.693753 0.115973\nvt 0.696926 0.116043\nvt 0.696926 0.116043\nvt 0.697098 0.118536\nvt 0.693882 0.118469\nvt 0.819572 0.114892\nvt 0.819628 0.117390\nvt 0.715157 0.120165\nvt 0.715157 0.120165\nvt 0.715070 0.117668\nvt 0.819572 0.114892\nvt 0.715070 0.117668\nvt 0.715157 0.120165\nvt 0.712170 0.120134\nvt 0.712170 0.120134\nvt 0.712022 0.117639\nvt 0.715070 0.117668\nvt 0.979980 0.170661\nvt 0.984604 0.169891\nvt 0.984604 0.178676\nvt 0.984604 0.178676\nvt 0.979980 0.177027\nvt 0.979980 0.170661\nvt 0.828990 0.157595\nvt 0.838832 0.129869\nvt 0.840578 0.131308\nvt 0.840578 0.131308\nvt 0.832354 0.158790\nvt 0.828990 0.157595\nvt 0.623138 0.904768\nvt 0.625195 0.908678\nvt 0.610037 0.906184\nvt 0.610037 0.906184\nvt 0.613305 0.903168\nvt 0.623138 0.904768\nvt 0.823265 0.185465\nvt 0.834841 0.156044\nvt 0.836664 0.156816\nvt 0.836664 0.156816\nvt 0.826835 0.185465\nvt 0.823265 0.185465\nvt 0.850573 0.134020\nvt 0.852160 0.133764\nvt 0.852782 0.134821\nvt 0.852782 0.134821\nvt 0.851171 0.135068\nvt 0.850573 0.134020\nvt 0.852160 0.133764\nvt 0.850573 0.134020\nvt 0.848773 0.133103\nvt 0.848773 0.133103\nvt 0.850384 0.132855\nvt 0.852160 0.133764\nvt 0.850851 0.165355\nvt 0.851171 0.135068\nvt 0.852782 0.134821\nvt 0.852782 0.134821\nvt 0.853850 0.166420\nvt 0.850851 0.165355\nvt 0.841411 0.130768\nvt 0.839690 0.129338\nvt 0.841543 0.129717\nvt 0.841543 0.129717\nvt 0.843289 0.131156\nvt 0.841411 0.130768\nvt 0.847300 0.156028\nvt 0.849014 0.155256\nvt 0.849644 0.156044\nvt 0.849644 0.156044\nvt 0.847905 0.156816\nvt 0.847300 0.156028\nvt 0.849014 0.155256\nvt 0.847300 0.156028\nvt 0.845400 0.155766\nvt 0.845400 0.155766\nvt 0.847140 0.154994\nvt 0.849014 0.155256\nvt 0.846462 0.185465\nvt 0.847905 0.156816\nvt 0.849644 0.156044\nvt 0.849644 0.156044\nvt 0.849644 0.185465\nvt 0.846462 0.185465\nvt 0.837578 0.156028\nvt 0.835781 0.155256\nvt 0.837758 0.154994\nvt 0.837758 0.154994\nvt 0.839582 0.155766\nvt 0.837578 0.156028\nvt 0.605227 0.961959\nvt 0.603978 0.905520\nvt 0.607028 0.905796\nvt 0.607028 0.905796\nvt 0.608463 0.962180\nvt 0.605227 0.961959\nvt 0.605938 0.992879\nvt 0.605227 0.961959\nvt 0.608463 0.962180\nvt 0.608463 0.962180\nvt 0.609253 0.993035\nvt 0.605938 0.992879\nvt 0.603978 0.905520\nvt 0.605227 0.961959\nvt 0.488668 0.961335\nvt 0.488668 0.961335\nvt 0.487548 0.908041\nvt 0.603978 0.905520\nvt 0.533107 0.993343\nvt 0.488668 0.961335\nvt 0.605227 0.961959\nvt 0.605227 0.961959\nvt 0.605938 0.992879\nvt 0.533107 0.993343\nvt 0.979350 0.101358\nvt 0.984604 0.112730\nvt 0.984604 0.166709\nvt 0.984604 0.166709\nvt 0.979373 0.155116\nvt 0.979350 0.101358\nvt 0.633281 0.905134\nvt 0.631684 0.909342\nvt 0.628375 0.909269\nvt 0.628375 0.909269\nvt 0.629408 0.905192\nvt 0.633281 0.905134\nvt 0.757295 0.232142\nvt 0.753851 0.232080\nvt 0.753850 0.217813\nvt 0.753850 0.217813\nvt 0.757298 0.218486\nvt 0.757295 0.232142\nvt 0.753851 0.232080\nvt 0.757295 0.232142\nvt 0.757500 0.233072\nvt 0.757500 0.233072\nvt 0.754470 0.235032\nvt 0.753851 0.232080\nvt 0.754470 0.235032\nvt 0.757500 0.233072\nvt 0.758249 0.233640\nvt 0.758249 0.233640\nvt 0.756905 0.236882\nvt 0.754470 0.235032\nvt 0.756905 0.236882\nvt 0.758249 0.233640\nvt 0.856854 0.277381\nvt 0.856854 0.277381\nvt 0.855112 0.283455\nvt 0.756905 0.236882\nvt 0.757298 0.218486\nvt 0.753850 0.217813\nvt 0.754809 0.214947\nvt 0.754809 0.214947\nvt 0.757534 0.217767\nvt 0.757298 0.218486\nvt 0.757534 0.217767\nvt 0.754809 0.214947\nvt 0.757681 0.213981\nvt 0.757681 0.213981\nvt 0.758241 0.217542\nvt 0.757534 0.217767\nvt 0.758241 0.217542\nvt 0.757681 0.213981\nvt 0.865003 0.213981\nvt 0.865003 0.213981\nvt 0.865003 0.220301\nvt 0.758241 0.217542\nvt 0.696331 0.149021\nvt 0.709662 0.148422\nvt 0.709890 0.156370\nvt 0.709890 0.156370\nvt 0.696512 0.154206\nvt 0.696331 0.149021\nvt 0.710658 0.156493\nvt 0.709890 0.156370\nvt 0.709662 0.148422\nvt 0.709662 0.148422\nvt 0.710457 0.148402\nvt 0.710658 0.156493\nvt 0.695569 0.149107\nvt 0.696331 0.149021\nvt 0.696512 0.154206\nvt 0.696512 0.154206\nvt 0.695784 0.154098\nvt 0.695569 0.149107\nvt 0.710457 0.148402\nvt 0.711255 0.148404\nvt 0.711425 0.156541\nvt 0.711425 0.156541\nvt 0.710658 0.156493\nvt 0.710457 0.148402\nvt 0.819199 0.157323\nvt 0.711425 0.156541\nvt 0.711255 0.148404\nvt 0.711255 0.148404\nvt 0.819045 0.149186\nvt 0.819199 0.157323\nvt 0.694811 0.149165\nvt 0.695569 0.149107\nvt 0.695784 0.154098\nvt 0.695784 0.154098\nvt 0.695063 0.154089\nvt 0.694811 0.149165\nvt 0.588201 0.155571\nvt 0.694811 0.149165\nvt 0.695063 0.154089\nvt 0.695063 0.154089\nvt 0.588473 0.160494\nvt 0.588201 0.155571\nvt 0.398585 0.970832\nvt 0.510259 0.983208\nvt 0.511004 0.983538\nvt 0.398585 0.970832\nvt 0.511004 0.983538\nvt 0.510667 0.999157\nvt 0.511004 0.983538\nvt 0.511625 0.998171\nvt 0.510667 0.999157\nvt 0.511004 0.983538\nvt 0.511269 0.984306\nvt 0.511625 0.998171\nvt 0.511625 0.998171\nvt 0.511398 0.998909\nvt 0.510667 0.999157\nvt 0.398585 0.970832\nvt 0.510667 0.999157\nvt 0.399345 0.999243\nvt 0.579859 0.896407\nvt 0.603560 0.888527\nvt 0.625456 0.880029\nvt 0.575638 0.623556\nvt 0.512639 0.635571\nvt 0.463932 0.586182\nvt 0.502666 0.594995\nvt 0.463932 0.586182\nvt 0.519999 0.597486\nvt 0.576291 0.598699\nvt 0.519999 0.597486\nvt 0.502666 0.594995\nvt 0.519999 0.597486\nvt 0.502666 0.594995\nvt 0.576291 0.598699\nvt 0.615619 0.590791\nvt 0.576291 0.598699\nvt 0.615619 0.590791\nvt 0.615619 0.590791\nvt 0.636629 0.584487\nvt 0.767500 0.063960\nvt 0.767500 0.063960\nvt 0.761835 0.063724\nvt 0.761835 0.063724\nvt 0.471564 0.787412\nvt 0.509080 0.777999\nvt 0.471564 0.787412\nvt 0.509080 0.777999\nvt 0.542689 0.766879\nvt 0.542689 0.766879\nvt 0.542689 0.766879\nvt 0.598968 0.741015\nvt 0.542689 0.766879\nvt 0.590728 0.746329\nvt 0.598968 0.741015\nvt 0.598968 0.741015\nvt 0.386842 0.113805\nvt 0.386842 0.113805\nvt 0.386842 0.113805\nvt 0.387055 0.149599\nvt 0.171746 0.645439\nvt 0.171746 0.645439\nvt 0.152053 0.636353\nvt 0.152053 0.636353\nvt 0.118394 0.615169\nvt 0.118394 0.615169\nvt 0.118394 0.615169\nvt 0.118394 0.615169\nvt 0.083015 0.571836\nvt 0.083015 0.571836\nvt 0.083015 0.571836\nvt 0.075557 0.555750\nvt 0.075557 0.555750\nvt 0.064199 0.517370\nvt 0.064199 0.517370\nvt 0.479435 0.548583\nvt 0.485836 0.511558\nvt 0.479435 0.548583\nvt 0.485836 0.511558\nvt 0.486781 0.511746\nvt 0.486694 0.517971\nvt 0.486694 0.517971\nvt 0.479435 0.548583\nvt 0.479435 0.548583\nvt 0.474525 0.560735\nvt 0.474525 0.560735\nvt 0.474525 0.560735\nvt 0.431654 0.606714\nvt 0.431654 0.606714\nvt 0.431654 0.606714\nvt 0.403283 0.627899\nvt 0.403283 0.627899\nvt 0.403283 0.627899\nvt 0.370246 0.647028\nvt 0.810737 0.038096\nvt 0.824476 0.062999\nvt 0.273823 0.099602\nvt 0.240552 0.100504\nvt 0.273823 0.099602\nvt 0.217067 0.101154\nvt 0.240552 0.100504\nvt 0.217067 0.101154\nvt 0.273823 0.099602\nvt 0.273823 0.099602\nvt 0.296190 0.099224\nvt 0.296190 0.099224\nvt 0.296190 0.099224\nvt 0.337057 0.099372\nvt 0.337057 0.099372\nvt 0.356995 0.099580\nvt 0.356995 0.099580\nvt 0.356995 0.099580\nvt 0.388741 0.100049\nvt 0.388741 0.100049\nvt 0.217067 0.101154\nvt 0.191577 0.101208\nvt 0.217067 0.101154\nvt 0.639647 0.774407\nvt 0.624202 0.761424\nvt 0.639647 0.774407\nvt 0.598968 0.741015\nvt 0.624202 0.761424\nvt 0.624793 0.759228\nvt 0.598968 0.741015\nvt 0.639647 0.774407\nvt 0.670280 0.802729\nvt 0.670280 0.802729\nvt 0.670280 0.802729\nvt 0.670280 0.802729\nvt 0.685739 0.819400\nvt 0.685739 0.819400\nvt 0.685739 0.819400\nvt 0.705525 0.846363\nvt 0.705525 0.846363\nvt 0.717125 0.866763\nvt 0.717125 0.866763\nvt 0.717125 0.866763\nvt 0.717125 0.866763\nvt 0.728587 0.889525\nvt 0.272560 0.526323\nvt 0.232237 0.527729\nvt 0.232237 0.527729\nvt 0.232237 0.527729\nvt 0.193591 0.531129\nvt 0.193591 0.531129\nvt 0.193591 0.531129\nvt 0.158791 0.535784\nvt 0.158791 0.535784\nvt 0.158791 0.535784\nvt 0.130138 0.540790\nvt 0.130138 0.540790\nvt 0.130138 0.540790\nvt 0.130138 0.540790\nvt 0.096279 0.548564\nvt 0.102394 0.563540\nvt 0.096279 0.548564\nvt 0.130138 0.540790\nvt 0.096279 0.548564\nvt 0.102394 0.563540\nvt 0.088756 0.568970\nvt 0.122790 0.611555\nvt 0.088756 0.568970\nvt 0.102394 0.563540\nvt 0.088756 0.568970\nvt 0.122790 0.611555\nvt 0.118394 0.615169\nvt 0.152053 0.636353\nvt 0.118394 0.615169\nvt 0.122790 0.611555\nvt 0.122790 0.611555\nvt 0.155748 0.632255\nvt 0.152053 0.636353\nvt 0.171746 0.645439\nvt 0.152053 0.636353\nvt 0.155748 0.632255\nvt 0.155748 0.632255\nvt 0.195312 0.648489\nvt 0.171746 0.645439\nvt 0.118394 0.615169\nvt 0.083015 0.571836\nvt 0.088756 0.568970\nvt 0.081704 0.553285\nvt 0.088756 0.568970\nvt 0.083015 0.571836\nvt 0.088756 0.568970\nvt 0.081704 0.553285\nvt 0.096279 0.548564\nvt 0.096279 0.548564\nvt 0.081704 0.553285\nvt 0.083015 0.571836\nvt 0.075557 0.555750\nvt 0.081704 0.553285\nvt 0.081704 0.553285\nvt 0.075557 0.555750\nvt 0.081704 0.553285\nvt 0.075557 0.555750\nvt 0.195312 0.648489\nvt 0.155748 0.632255\nvt 0.163679 0.624014\nvt 0.197501 0.644368\nvt 0.195312 0.648489\nvt 0.163679 0.624014\nvt 0.199958 0.639216\nvt 0.197501 0.644368\nvt 0.163679 0.624014\nvt 0.217894 0.649264\nvt 0.197501 0.644368\nvt 0.199958 0.639216\nvt 0.199958 0.639216\nvt 0.219115 0.643729\nvt 0.217894 0.649264\nvt 0.219115 0.643729\nvt 0.199958 0.639216\nvt 0.205577 0.629071\nvt 0.205577 0.629071\nvt 0.199958 0.639216\nvt 0.163679 0.624014\nvt 0.205577 0.629071\nvt 0.218181 0.629917\nvt 0.219115 0.643729\nvt 0.218181 0.629917\nvt 0.205577 0.629071\nvt 0.183912 0.614880\nvt 0.163679 0.624014\nvt 0.183912 0.614880\nvt 0.205577 0.629071\nvt 0.183912 0.614880\nvt 0.202126 0.611549\nvt 0.218181 0.629917\nvt 0.202126 0.611549\nvt 0.183912 0.614880\nvt 0.160022 0.594665\nvt 0.160022 0.594665\nvt 0.183912 0.614880\nvt 0.163679 0.624014\nvt 0.160022 0.594665\nvt 0.182967 0.589748\nvt 0.202126 0.611549\nvt 0.182967 0.589748\nvt 0.160022 0.594665\nvt 0.134877 0.555281\nvt 0.134877 0.555281\nvt 0.162550 0.550060\nvt 0.182967 0.589748\nvt 0.182967 0.589748\nvt 0.162550 0.550060\nvt 0.196173 0.545125\nvt 0.196173 0.545125\nvt 0.210819 0.585327\nvt 0.182967 0.589748\nvt 0.202126 0.611549\nvt 0.182967 0.589748\nvt 0.210819 0.585327\nvt 0.210819 0.585327\nvt 0.196173 0.545125\nvt 0.233486 0.541434\nvt 0.233486 0.541434\nvt 0.241639 0.582059\nvt 0.210819 0.585327\nvt 0.273556 0.580643\nvt 0.241639 0.582059\nvt 0.233486 0.541434\nvt 0.233486 0.541434\nvt 0.272344 0.539821\nvt 0.273556 0.580643\nvt 0.210819 0.585327\nvt 0.224587 0.609067\nvt 0.202126 0.611549\nvt 0.218181 0.629917\nvt 0.202126 0.611549\nvt 0.224587 0.609067\nvt 0.224587 0.609067\nvt 0.236243 0.630565\nvt 0.218181 0.629917\nvt 0.256679 0.630817\nvt 0.236243 0.630565\nvt 0.224587 0.609067\nvt 0.224587 0.609067\nvt 0.249666 0.607355\nvt 0.256679 0.630817\nvt 0.249666 0.607355\nvt 0.224587 0.609067\nvt 0.210819 0.585327\nvt 0.210819 0.585327\nvt 0.241639 0.582059\nvt 0.249666 0.607355\nvt 0.278305 0.630773\nvt 0.256679 0.630817\nvt 0.249666 0.607355\nvt 0.249666 0.607355\nvt 0.275838 0.606647\nvt 0.278305 0.630773\nvt 0.241639 0.582059\nvt 0.273556 0.580643\nvt 0.275838 0.606647\nvt 0.275838 0.606647\nvt 0.249666 0.607355\nvt 0.241639 0.582059\nvt 0.278305 0.630773\nvt 0.275838 0.606647\nvt 0.301606 0.607180\nvt 0.301606 0.607180\nvt 0.275838 0.606647\nvt 0.273556 0.580643\nvt 0.301606 0.607180\nvt 0.299937 0.630603\nvt 0.278305 0.630773\nvt 0.299937 0.630603\nvt 0.301606 0.607180\nvt 0.325888 0.608577\nvt 0.325888 0.608577\nvt 0.320210 0.629991\nvt 0.299937 0.630603\nvt 0.349648 0.627438\nvt 0.320210 0.629991\nvt 0.325888 0.608577\nvt 0.325888 0.608577\nvt 0.365531 0.613109\nvt 0.349648 0.627438\nvt 0.383457 0.592211\nvt 0.365531 0.613109\nvt 0.325888 0.608577\nvt 0.325888 0.608577\nvt 0.334380 0.584477\nvt 0.383457 0.592211\nvt 0.334380 0.584477\nvt 0.325888 0.608577\nvt 0.301606 0.607180\nvt 0.301606 0.607180\nvt 0.304821 0.581722\nvt 0.334380 0.584477\nvt 0.273556 0.580643\nvt 0.304821 0.581722\nvt 0.301606 0.607180\nvt 0.310879 0.540941\nvt 0.304821 0.581722\nvt 0.273556 0.580643\nvt 0.273556 0.580643\nvt 0.272344 0.539821\nvt 0.310879 0.540941\nvt 0.304821 0.581722\nvt 0.310879 0.540941\nvt 0.347776 0.543905\nvt 0.347776 0.543905\nvt 0.334380 0.584477\nvt 0.304821 0.581722\nvt 0.334380 0.584477\nvt 0.347776 0.543905\nvt 0.409870 0.552002\nvt 0.409870 0.552002\nvt 0.383457 0.592211\nvt 0.334380 0.584477\nvt 0.312701 0.527413\nvt 0.310879 0.540941\nvt 0.272344 0.539821\nvt 0.272344 0.539821\nvt 0.272560 0.526323\nvt 0.312701 0.527413\nvt 0.310879 0.540941\nvt 0.312701 0.527413\nvt 0.351229 0.530237\nvt 0.351229 0.530237\nvt 0.347776 0.543905\nvt 0.310879 0.540941\nvt 0.347776 0.543905\nvt 0.351229 0.530237\nvt 0.416068 0.537865\nvt 0.416068 0.537865\nvt 0.409870 0.552002\nvt 0.347776 0.543905\nvt 0.416068 0.537865\nvt 0.351229 0.530237\nvt 0.351229 0.530237\nvt 0.312701 0.527413\nvt 0.416068 0.537865\nvt 0.454110 0.543743\nvt 0.416068 0.537865\nvt 0.409870 0.552002\nvt 0.416068 0.537865\nvt 0.454110 0.543743\nvt 0.454110 0.543743\nvt 0.454110 0.543743\nvt 0.479435 0.548583\nvt 0.454110 0.543743\nvt 0.232237 0.527729\nvt 0.272560 0.526323\nvt 0.272344 0.539821\nvt 0.272344 0.539821\nvt 0.233486 0.541434\nvt 0.232237 0.527729\nvt 0.193591 0.531129\nvt 0.232237 0.527729\nvt 0.233486 0.541434\nvt 0.233486 0.541434\nvt 0.196173 0.545125\nvt 0.193591 0.531129\nvt 0.193591 0.531129\nvt 0.196173 0.545125\nvt 0.162550 0.550060\nvt 0.162550 0.550060\nvt 0.158791 0.535784\nvt 0.193591 0.531129\nvt 0.130138 0.540790\nvt 0.158791 0.535784\nvt 0.162550 0.550060\nvt 0.162550 0.550060\nvt 0.134877 0.555281\nvt 0.130138 0.540790\nvt 0.130138 0.540790\nvt 0.134877 0.555281\nvt 0.102394 0.563540\nvt 0.102394 0.563540\nvt 0.134877 0.555281\nvt 0.160022 0.594665\nvt 0.160022 0.594665\nvt 0.133357 0.604151\nvt 0.102394 0.563540\nvt 0.163679 0.624014\nvt 0.133357 0.604151\nvt 0.160022 0.594665\nvt 0.133357 0.604151\nvt 0.163679 0.624014\nvt 0.155748 0.632255\nvt 0.155748 0.632255\nvt 0.122790 0.611555\nvt 0.133357 0.604151\nvt 0.102394 0.563540\nvt 0.133357 0.604151\nvt 0.122790 0.611555\nvt 0.446757 0.558296\nvt 0.454110 0.543743\nvt 0.479435 0.548583\nvt 0.454110 0.543743\nvt 0.446757 0.558296\nvt 0.409870 0.552002\nvt 0.409870 0.552002\nvt 0.446757 0.558296\nvt 0.412327 0.599346\nvt 0.412327 0.599346\nvt 0.446757 0.558296\nvt 0.474525 0.560735\nvt 0.474525 0.560735\nvt 0.431654 0.606714\nvt 0.412327 0.599346\nvt 0.387999 0.619845\nvt 0.412327 0.599346\nvt 0.431654 0.606714\nvt 0.431654 0.606714\nvt 0.403283 0.627899\nvt 0.387999 0.619845\nvt 0.358780 0.636054\nvt 0.387999 0.619845\nvt 0.403283 0.627899\nvt 0.403283 0.627899\nvt 0.370246 0.647028\nvt 0.358780 0.636054\nvt 0.412327 0.599346\nvt 0.383457 0.592211\nvt 0.409870 0.552002\nvt 0.412327 0.599346\nvt 0.387999 0.619845\nvt 0.365531 0.613109\nvt 0.365531 0.613109\nvt 0.383457 0.592211\nvt 0.412327 0.599346\nvt 0.349648 0.627438\nvt 0.365531 0.613109\nvt 0.387999 0.619845\nvt 0.387999 0.619845\nvt 0.358780 0.636054\nvt 0.349648 0.627438\nvt 0.349648 0.627438\nvt 0.358780 0.636054\nvt 0.320285 0.638373\nvt 0.320285 0.638373\nvt 0.320210 0.629991\nvt 0.349648 0.627438\nvt 0.299937 0.630603\nvt 0.320210 0.629991\nvt 0.320285 0.638373\nvt 0.320285 0.638373\nvt 0.300110 0.639867\nvt 0.299937 0.630603\nvt 0.278305 0.630773\nvt 0.299937 0.630603\nvt 0.300110 0.639867\nvt 0.300110 0.639867\nvt 0.279885 0.648105\nvt 0.278305 0.630773\nvt 0.256679 0.630817\nvt 0.278305 0.630773\nvt 0.279885 0.648105\nvt 0.279885 0.648105\nvt 0.259215 0.647985\nvt 0.256679 0.630817\nvt 0.256679 0.630817\nvt 0.259215 0.647985\nvt 0.238780 0.646640\nvt 0.238780 0.646640\nvt 0.236243 0.630565\nvt 0.256679 0.630817\nvt 0.218181 0.629917\nvt 0.236243 0.630565\nvt 0.238780 0.646640\nvt 0.238780 0.646640\nvt 0.219115 0.643729\nvt 0.218181 0.629917\nvt 0.238780 0.646640\nvt 0.217894 0.649264\nvt 0.219115 0.643729\nvt 0.240008 0.114346\nvt 0.240552 0.100504\nvt 0.273823 0.099602\nvt 0.273823 0.099602\nvt 0.273256 0.114249\nvt 0.240008 0.114346\nvt 0.273256 0.114249\nvt 0.273823 0.099602\nvt 0.296190 0.099224\nvt 0.296190 0.099224\nvt 0.295474 0.114131\nvt 0.273256 0.114249\nvt 0.273256 0.114249\nvt 0.295474 0.114131\nvt 0.240008 0.114346\nvt 0.273256 0.114249\nvt 0.295474 0.114131\nvt 0.240008 0.114346\nvt 0.216421 0.114144\nvt 0.240008 0.114346\nvt 0.240552 0.100504\nvt 0.240008 0.114346\nvt 0.216421 0.114144\nvt 0.216421 0.114144\nvt 0.190821 0.113436\nvt 0.216421 0.114144\nvt 0.190821 0.113436\nvt 0.295474 0.114131\nvt 0.295474 0.114131\nvt 0.335370 0.114104\nvt 0.335370 0.114104\nvt 0.295474 0.114131\nvt 0.296190 0.099224\nvt 0.335370 0.114104\nvt 0.355057 0.114048\nvt 0.355057 0.114048\nvt 0.355057 0.114048\nvt 0.386842 0.113805\nvt 0.386842 0.113805\nvt 0.355057 0.114048\nvt 0.335370 0.114104\nvt 0.337057 0.099372\nvt 0.296190 0.099224\nvt 0.337057 0.099372\nvt 0.335370 0.114104\nvt 0.337057 0.099372\nvt 0.356995 0.099580\nvt 0.355057 0.114048\nvt 0.388741 0.100049\nvt 0.386842 0.113805\nvt 0.355057 0.114048\nvt 0.355057 0.114048\nvt 0.356995 0.099580\nvt 0.388741 0.100049\nvt 0.216421 0.114144\nvt 0.190821 0.113436\nvt 0.191577 0.101208\nvt 0.191577 0.101208\nvt 0.217067 0.101154\nvt 0.216421 0.114144\nvt 0.216421 0.114144\nvt 0.217067 0.101154\nvt 0.240552 0.100504\nvt 0.673937 0.824285\nvt 0.692840 0.851660\nvt 0.625456 0.880029\nvt 0.625456 0.880029\nvt 0.610962 0.849850\nvt 0.673937 0.824285\nvt 0.673937 0.824285\nvt 0.610962 0.849850\nvt 0.599271 0.831832\nvt 0.599271 0.831832\nvt 0.659099 0.807517\nvt 0.673937 0.824285\nvt 0.629473 0.779215\nvt 0.659099 0.807517\nvt 0.599271 0.831832\nvt 0.599271 0.831832\nvt 0.574649 0.802387\nvt 0.629473 0.779215\nvt 0.557986 0.846073\nvt 0.599271 0.831832\nvt 0.610962 0.849850\nvt 0.610962 0.849850\nvt 0.567985 0.864779\nvt 0.557986 0.846073\nvt 0.510019 0.859505\nvt 0.557986 0.846073\nvt 0.567985 0.864779\nvt 0.567985 0.864779\nvt 0.518198 0.878814\nvt 0.510019 0.859505\nvt 0.524900 0.900112\nvt 0.518198 0.878814\nvt 0.567985 0.864779\nvt 0.567985 0.864779\nvt 0.579859 0.896407\nvt 0.524900 0.900112\nvt 0.579859 0.896407\nvt 0.567985 0.864779\nvt 0.610962 0.849850\nvt 0.625456 0.880029\nvt 0.579859 0.896407\nvt 0.610962 0.849850\nvt 0.536642 0.815874\nvt 0.574649 0.802387\nvt 0.599271 0.831832\nvt 0.599271 0.831832\nvt 0.557986 0.846073\nvt 0.536642 0.815874\nvt 0.536642 0.815874\nvt 0.557986 0.846073\nvt 0.510019 0.859505\nvt 0.518198 0.878814\nvt 0.524900 0.900112\nvt 0.478730 0.888343\nvt 0.510019 0.859505\nvt 0.518198 0.878814\nvt 0.478730 0.888343\nvt 0.478730 0.888343\nvt 0.471796 0.868450\nvt 0.510019 0.859505\nvt 0.510019 0.859505\nvt 0.471796 0.868450\nvt 0.458358 0.837365\nvt 0.458358 0.837365\nvt 0.492954 0.828898\nvt 0.510019 0.859505\nvt 0.510019 0.859505\nvt 0.492954 0.828898\nvt 0.536642 0.815874\nvt 0.629473 0.779215\nvt 0.574649 0.802387\nvt 0.562045 0.788628\nvt 0.562045 0.788628\nvt 0.614582 0.766256\nvt 0.629473 0.779215\nvt 0.614582 0.766256\nvt 0.562045 0.788628\nvt 0.542689 0.766879\nvt 0.542689 0.766879\nvt 0.590728 0.746329\nvt 0.614582 0.766256\nvt 0.574649 0.802387\nvt 0.536642 0.815874\nvt 0.525730 0.801440\nvt 0.525730 0.801440\nvt 0.562045 0.788628\nvt 0.574649 0.802387\nvt 0.562045 0.788628\nvt 0.525730 0.801440\nvt 0.509080 0.777999\nvt 0.509080 0.777999\nvt 0.542689 0.766879\nvt 0.562045 0.788628\nvt 0.471564 0.787412\nvt 0.509080 0.777999\nvt 0.525730 0.801440\nvt 0.525730 0.801440\nvt 0.484426 0.813577\nvt 0.471564 0.787412\nvt 0.484426 0.813577\nvt 0.525730 0.801440\nvt 0.536642 0.815874\nvt 0.536642 0.815874\nvt 0.492954 0.828898\nvt 0.484426 0.813577\nvt 0.492954 0.828898\nvt 0.458358 0.837365\nvt 0.451955 0.821085\nvt 0.451955 0.821085\nvt 0.484426 0.813577\nvt 0.492954 0.828898\nvt 0.471564 0.787412\nvt 0.484426 0.813577\nvt 0.451955 0.821085\nvt 0.624202 0.761424\nvt 0.614582 0.766256\nvt 0.590728 0.746329\nvt 0.629473 0.779215\nvt 0.614582 0.766256\nvt 0.624202 0.761424\nvt 0.624202 0.761424\nvt 0.639647 0.774407\nvt 0.629473 0.779215\nvt 0.590728 0.746329\nvt 0.598968 0.741015\nvt 0.624202 0.761424\nvt 0.629473 0.779215\nvt 0.639647 0.774407\nvt 0.670280 0.802729\nvt 0.670280 0.802729\nvt 0.659099 0.807517\nvt 0.629473 0.779215\nvt 0.659099 0.807517\nvt 0.670280 0.802729\nvt 0.685739 0.819400\nvt 0.685739 0.819400\nvt 0.673937 0.824285\nvt 0.659099 0.807517\nvt 0.692840 0.851660\nvt 0.673937 0.824285\nvt 0.685739 0.819400\nvt 0.685739 0.819400\nvt 0.705525 0.846363\nvt 0.692840 0.851660\nvt 0.703970 0.872391\nvt 0.692840 0.851660\nvt 0.705525 0.846363\nvt 0.703970 0.872391\nvt 0.655513 0.893647\nvt 0.692840 0.851660\nvt 0.655513 0.893647\nvt 0.703970 0.872391\nvt 0.715106 0.895429\nvt 0.655513 0.893647\nvt 0.625456 0.880029\nvt 0.692840 0.851660\nvt 0.655513 0.893647\nvt 0.629887 0.891072\nvt 0.625456 0.880029\nvt 0.629887 0.891072\nvt 0.603560 0.888527\nvt 0.625456 0.880029\nvt 0.625456 0.880029\nvt 0.603560 0.888527\nvt 0.579859 0.896407\nvt 0.705525 0.846363\nvt 0.717125 0.866763\nvt 0.703970 0.872391\nvt 0.715106 0.895429\nvt 0.703970 0.872391\nvt 0.717125 0.866763\nvt 0.717125 0.866763\nvt 0.728587 0.889525\nvt 0.715106 0.895429\nvt 0.615619 0.590791\nvt 0.636629 0.584487\nvt 0.617196 0.602795\nvt 0.615619 0.590791\nvt 0.617196 0.602795\nvt 0.575638 0.623556\nvt 0.575638 0.623556\nvt 0.576291 0.598699\nvt 0.615619 0.590791\nvt 0.575638 0.623556\nvt 0.519999 0.597486\nvt 0.576291 0.598699\nvt 0.575638 0.623556\nvt 0.539704 0.637381\nvt 0.519999 0.597486\nvt 0.539704 0.637381\nvt 0.512639 0.635571\nvt 0.519999 0.597486\nvt 0.502666 0.594995\nvt 0.519999 0.597486\nvt 0.512639 0.635571\nvt 0.512639 0.635571\nvt 0.494154 0.632926\nvt 0.502666 0.594995\nvt 0.502666 0.594995\nvt 0.494154 0.632926\nvt 0.502666 0.594995\nvt 0.503470 0.591984\nvt 0.502666 0.594995\nvt 0.463932 0.586182\nvt 0.463932 0.586182\nvt 0.503470 0.591984\nvt 0.576551 0.595893\nvt 0.576291 0.598699\nvt 0.519999 0.597486\nvt 0.519999 0.597486\nvt 0.520790 0.594598\nvt 0.576551 0.595893\nvt 0.520790 0.594598\nvt 0.519999 0.597486\nvt 0.502666 0.594995\nvt 0.502666 0.594995\nvt 0.503470 0.591984\nvt 0.520790 0.594598\nvt 0.615405 0.588131\nvt 0.615619 0.590791\nvt 0.576291 0.598699\nvt 0.576291 0.598699\nvt 0.576551 0.595893\nvt 0.615405 0.588131\nvt 0.636126 0.581915\nvt 0.636629 0.584487\nvt 0.615619 0.590791\nvt 0.615619 0.590791\nvt 0.615405 0.588131\nvt 0.636126 0.581915\nvt 0.277971 0.408438\nvt 0.277321 0.406300\nvt 0.295329 0.396803\nvt 0.295329 0.396803\nvt 0.295796 0.398965\nvt 0.277971 0.408438\nvt 0.330410 0.386337\nvt 0.295796 0.398965\nvt 0.295329 0.396803\nvt 0.295329 0.396803\nvt 0.330346 0.384266\nvt 0.330410 0.386337\nvt 0.381616 0.386691\nvt 0.330410 0.386337\nvt 0.330346 0.384266\nvt 0.330346 0.384266\nvt 0.382250 0.384882\nvt 0.381616 0.386691\nvt 0.397152 0.390904\nvt 0.381616 0.386691\nvt 0.382250 0.384882\nvt 0.382250 0.384882\nvt 0.397981 0.389195\nvt 0.397152 0.390904\nvt 0.397152 0.390904\nvt 0.397981 0.389195\nvt 0.397981 0.389195\nvt 0.807613 0.068322\nvt 0.844887 0.111781\nvt 0.843762 0.112964\nvt 0.843762 0.112964\nvt 0.806809 0.069388\nvt 0.807613 0.068322\nvt 0.859802 0.140914\nvt 0.843762 0.112964\nvt 0.844887 0.111781\nvt 0.844887 0.111781\nvt 0.861041 0.139408\nvt 0.859802 0.140914\nvt 0.871489 0.173526\nvt 0.859802 0.140914\nvt 0.861041 0.139408\nvt 0.861041 0.139408\nvt 0.872787 0.172190\nvt 0.871489 0.173526\nvt 0.807613 0.068322\nvt 0.806809 0.069388\nvt 0.806360 0.067774\nvt 0.795363 0.064817\nvt 0.806360 0.067774\nvt 0.806809 0.069388\nvt 0.806809 0.069388\nvt 0.795785 0.065733\nvt 0.795363 0.064817\nvt 0.795363 0.064817\nvt 0.795785 0.065733\nvt 0.767500 0.063960\nvt 0.795363 0.064817\nvt 0.767500 0.063960\nvt 0.761835 0.063724\nvt 0.767500 0.063960\nvt 0.763293 0.064206\nvt 0.763293 0.064206\nvt 0.761857 0.063950\nvt 0.761835 0.063724\nvt 0.795363 0.064817\nvt 0.470641 0.784928\nvt 0.507634 0.775586\nvt 0.509080 0.777999\nvt 0.509080 0.777999\nvt 0.471564 0.787412\nvt 0.470641 0.784928\nvt 0.542689 0.766879\nvt 0.509080 0.777999\nvt 0.507634 0.775586\nvt 0.507634 0.775586\nvt 0.541029 0.764431\nvt 0.542689 0.766879\nvt 0.541029 0.764431\nvt 0.598968 0.741015\nvt 0.542689 0.766879\nvt 0.541029 0.764431\nvt 0.598795 0.740067\nvt 0.598968 0.741015\nvt 0.598968 0.741015\nvt 0.590728 0.746329\nvt 0.542689 0.766879\nvt 0.388960 0.100120\nvt 0.389832 0.100235\nvt 0.388926 0.112631\nvt 0.388926 0.112631\nvt 0.386842 0.113805\nvt 0.388960 0.100120\nvt 0.386842 0.113805\nvt 0.388926 0.112631\nvt 0.387055 0.149599\nvt 0.386842 0.113805\nvt 0.151648 0.637533\nvt 0.152053 0.636353\nvt 0.171746 0.645439\nvt 0.171746 0.645439\nvt 0.171290 0.646602\nvt 0.151648 0.637533\nvt 0.118394 0.615169\nvt 0.152053 0.636353\nvt 0.151648 0.637533\nvt 0.151648 0.637533\nvt 0.117801 0.616303\nvt 0.118394 0.615169\nvt 0.118394 0.615169\nvt 0.117801 0.616303\nvt 0.081876 0.572690\nvt 0.081876 0.572690\nvt 0.083015 0.571836\nvt 0.118394 0.615169\nvt 0.083015 0.571836\nvt 0.081876 0.572690\nvt 0.074284 0.556430\nvt 0.074284 0.556430\nvt 0.075557 0.555750\nvt 0.083015 0.571836\nvt 0.064199 0.517370\nvt 0.075557 0.555750\nvt 0.074284 0.556430\nvt 0.074284 0.556430\nvt 0.064199 0.517370\nvt 0.486694 0.517971\nvt 0.481097 0.549238\nvt 0.479435 0.548583\nvt 0.486694 0.517971\nvt 0.479435 0.548583\nvt 0.485836 0.511558\nvt 0.486694 0.517971\nvt 0.485836 0.511558\nvt 0.486694 0.517971\nvt 0.486781 0.511746\nvt 0.487019 0.511791\nvt 0.487019 0.511791\nvt 0.487209 0.513383\nvt 0.486694 0.517971\nvt 0.479435 0.548583\nvt 0.481097 0.549238\nvt 0.475448 0.561307\nvt 0.475448 0.561307\nvt 0.474525 0.560735\nvt 0.479435 0.548583\nvt 0.474525 0.560735\nvt 0.475448 0.561307\nvt 0.432609 0.608056\nvt 0.432609 0.608056\nvt 0.431654 0.606714\nvt 0.474525 0.560735\nvt 0.431654 0.606714\nvt 0.432609 0.608056\nvt 0.404011 0.629137\nvt 0.404011 0.629137\nvt 0.403283 0.627899\nvt 0.431654 0.606714\nvt 0.370246 0.647028\nvt 0.403283 0.627899\nvt 0.404011 0.629137\nvt 0.404011 0.629137\nvt 0.371099 0.648341\nvt 0.370246 0.647028\nvt 0.877852 0.155305\nvt 0.864664 0.127862\nvt 0.866894 0.127748\nvt 0.866894 0.127748\nvt 0.879988 0.154971\nvt 0.877852 0.155305\nvt 0.884603 0.175698\nvt 0.877852 0.155305\nvt 0.879988 0.154971\nvt 0.879988 0.154971\nvt 0.886661 0.175385\nvt 0.884603 0.175698\nvt 0.890511 0.198347\nvt 0.884603 0.175698\nvt 0.886661 0.175385\nvt 0.886661 0.175385\nvt 0.892536 0.198055\nvt 0.890511 0.198347\nvt 0.866894 0.127748\nvt 0.864664 0.127862\nvt 0.854162 0.110226\nvt 0.854162 0.110226\nvt 0.856388 0.110377\nvt 0.866894 0.127748\nvt 0.836861 0.078475\nvt 0.856388 0.110377\nvt 0.854162 0.110226\nvt 0.854162 0.110226\nvt 0.834605 0.078141\nvt 0.836861 0.078475\nvt 0.826710 0.063136\nvt 0.836861 0.078475\nvt 0.834605 0.078141\nvt 0.834605 0.078141\nvt 0.824476 0.062999\nvt 0.826710 0.063136\nvt 0.810737 0.038096\nvt 0.826710 0.063136\nvt 0.824476 0.062999\nvt 0.824476 0.062999\nvt 0.809492 0.038665\nvt 0.810737 0.038096\nvt 0.240594 0.099400\nvt 0.274035 0.098588\nvt 0.273823 0.099602\nvt 0.273823 0.099602\nvt 0.240552 0.100504\nvt 0.240594 0.099400\nvt 0.240594 0.099400\nvt 0.240552 0.100504\nvt 0.217067 0.101154\nvt 0.217067 0.101154\nvt 0.217082 0.100034\nvt 0.240594 0.099400\nvt 0.273823 0.099602\nvt 0.274035 0.098588\nvt 0.296440 0.098221\nvt 0.296440 0.098221\nvt 0.296190 0.099224\nvt 0.273823 0.099602\nvt 0.296190 0.099224\nvt 0.296440 0.098221\nvt 0.337303 0.098396\nvt 0.337303 0.098396\nvt 0.337057 0.099372\nvt 0.296190 0.099224\nvt 0.356995 0.099580\nvt 0.337057 0.099372\nvt 0.337303 0.098396\nvt 0.337303 0.098396\nvt 0.357249 0.098611\nvt 0.356995 0.099580\nvt 0.388741 0.100049\nvt 0.356995 0.099580\nvt 0.357249 0.098611\nvt 0.357249 0.098611\nvt 0.389389 0.099461\nvt 0.388741 0.100049\nvt 0.191611 0.100081\nvt 0.217082 0.100034\nvt 0.217067 0.101154\nvt 0.217067 0.101154\nvt 0.191577 0.101208\nvt 0.191611 0.100081\nvt 0.624793 0.759228\nvt 0.640261 0.772273\nvt 0.639647 0.774407\nvt 0.639647 0.774407\nvt 0.624202 0.761424\nvt 0.624793 0.759228\nvt 0.624793 0.759228\nvt 0.624202 0.761424\nvt 0.598968 0.741015\nvt 0.598968 0.741015\nvt 0.599566 0.740393\nvt 0.624793 0.759228\nvt 0.670280 0.802729\nvt 0.639647 0.774407\nvt 0.640261 0.772273\nvt 0.640261 0.772273\nvt 0.671239 0.800738\nvt 0.670280 0.802729\nvt 0.670280 0.802729\nvt 0.671239 0.800738\nvt 0.687043 0.817578\nvt 0.687043 0.817578\nvt 0.685739 0.819400\nvt 0.670280 0.802729\nvt 0.685739 0.819400\nvt 0.687043 0.817578\nvt 0.707464 0.845163\nvt 0.707464 0.845163\nvt 0.705525 0.846363\nvt 0.685739 0.819400\nvt 0.717125 0.866763\nvt 0.705525 0.846363\nvt 0.707464 0.845163\nvt 0.707464 0.845163\nvt 0.719232 0.865848\nvt 0.717125 0.866763\nvt 0.717125 0.866763\nvt 0.719232 0.865848\nvt 0.730737 0.888698\nvt 0.730737 0.888698\nvt 0.728587 0.889525\nvt 0.717125 0.866763\nvt 0.312701 0.527413\nvt 0.272560 0.526323\nvt 0.312701 0.527413\nvt 0.312701 0.527413\nvt 0.479435 0.548583\nvt 0.474525 0.560735\nvt 0.446757 0.558296\nvt 0.498893 0.298748\nvt 0.483037 0.298963\nvt 0.478667 0.299889\nvt 0.477951 0.287514\nvt 0.477951 0.287514\nvt 0.808855 0.102516\nvt 0.782335 0.103135\nvt 0.782335 0.103135\nvt 0.730707 0.595377\nvt 0.767674 0.328211\nvt 0.768119 0.329620\nvt 0.768119 0.329620\nvt 0.730922 0.207182\nvt 0.737292 0.208721\nvt 0.127242 0.410255\nvt 0.129186 0.392858\nvt 0.149580 0.385852\nvt 0.149580 0.385852\nvt 0.146827 0.405508\nvt 0.127242 0.410255\nvt 0.117264 0.411203\nvt 0.129186 0.392858\nvt 0.127242 0.410255\nvt 0.127242 0.410255\nvt 0.116843 0.417028\nvt 0.117264 0.411203\nvt 0.149580 0.385852\nvt 0.129186 0.392858\nvt 0.132953 0.371227\nvt 0.132953 0.371227\nvt 0.151212 0.374382\nvt 0.149580 0.385852\nvt 0.151212 0.374382\nvt 0.132953 0.371227\nvt 0.134939 0.365698\nvt 0.134939 0.365698\nvt 0.150901 0.369806\nvt 0.151212 0.374382\nvt 0.148680 0.366302\nvt 0.150901 0.369806\nvt 0.134939 0.365698\nvt 0.134939 0.365698\nvt 0.138104 0.363574\nvt 0.148680 0.366302\nvt 0.164776 0.405352\nvt 0.146827 0.405508\nvt 0.149580 0.385852\nvt 0.149580 0.385852\nvt 0.168715 0.386696\nvt 0.164776 0.405352\nvt 0.164776 0.405352\nvt 0.168715 0.386696\nvt 0.168715 0.386696\nvt 0.603194 0.732602\nvt 0.601876 0.733170\nvt 0.593348 0.727029\nvt 0.593348 0.727029\nvt 0.609215 0.719971\nvt 0.603194 0.732602\nvt 0.547581 0.747213\nvt 0.593348 0.727029\nvt 0.601876 0.733170\nvt 0.601876 0.733170\nvt 0.546913 0.757616\nvt 0.547581 0.747213\nvt 0.547329 0.758537\nvt 0.546913 0.757616\nvt 0.601876 0.733170\nvt 0.601876 0.733170\nvt 0.601427 0.734472\nvt 0.547329 0.758537\nvt 0.603194 0.732602\nvt 0.609215 0.719971\nvt 0.613471 0.719317\nvt 0.613471 0.719317\nvt 0.605835 0.732379\nvt 0.603194 0.732602\nvt 0.605835 0.732379\nvt 0.613471 0.719317\nvt 0.621348 0.721150\nvt 0.621348 0.721150\nvt 0.610938 0.733608\nvt 0.605835 0.732379\nvt 0.617266 0.738971\nvt 0.610938 0.733608\nvt 0.621348 0.721150\nvt 0.621348 0.721150\nvt 0.632231 0.728337\nvt 0.617266 0.738971\nvt 0.623367 0.747604\nvt 0.617266 0.738971\nvt 0.632231 0.728337\nvt 0.632231 0.728337\nvt 0.640947 0.738385\nvt 0.623367 0.747604\nvt 0.623367 0.747604\nvt 0.640947 0.738385\nvt 0.640947 0.738385\nvt 0.728360 0.593526\nvt 0.719463 0.586454\nvt 0.743748 0.560167\nvt 0.743748 0.560167\nvt 0.750598 0.564335\nvt 0.728360 0.593526\nvt 0.743748 0.560167\nvt 0.719463 0.586454\nvt 0.707410 0.572640\nvt 0.707410 0.572640\nvt 0.734570 0.551042\nvt 0.743748 0.560167\nvt 0.726861 0.540356\nvt 0.734570 0.551042\nvt 0.707410 0.572640\nvt 0.707410 0.572640\nvt 0.698111 0.559219\nvt 0.726861 0.540356\nvt 0.730707 0.595377\nvt 0.728360 0.593526\nvt 0.750598 0.564335\nvt 0.750598 0.564335\nvt 0.754662 0.565249\nvt 0.730707 0.595377\nvt 0.726861 0.540356\nvt 0.698111 0.559219\nvt 0.726861 0.540356\nvt 0.539177 0.039846\nvt 0.523596 0.032954\nvt 0.531081 0.026258\nvt 0.531081 0.026258\nvt 0.545190 0.034365\nvt 0.539177 0.039846\nvt 0.545190 0.034365\nvt 0.531081 0.026258\nvt 0.549153 0.025914\nvt 0.549153 0.025914\nvt 0.555222 0.028611\nvt 0.545190 0.034365\nvt 0.483037 0.298963\nvt 0.482370 0.286689\nvt 0.492326 0.286095\nvt 0.492326 0.286095\nvt 0.494405 0.298283\nvt 0.483037 0.298963\nvt 0.498893 0.298748\nvt 0.498013 0.286344\nvt 0.503424 0.286874\nvt 0.503424 0.286874\nvt 0.504796 0.299285\nvt 0.498893 0.298748\nvt 0.504796 0.299285\nvt 0.503424 0.286874\nvt 0.525119 0.300910\nvt 0.504796 0.299285\nvt 0.494774 0.298420\nvt 0.493806 0.286099\nvt 0.497324 0.286418\nvt 0.497324 0.286418\nvt 0.498893 0.298748\nvt 0.494774 0.298420\nvt 0.478667 0.299889\nvt 0.477951 0.287514\nvt 0.481717 0.286746\nvt 0.481717 0.286746\nvt 0.483037 0.298963\nvt 0.478667 0.299889\nvt 0.477951 0.287514\nvt 0.478667 0.299889\nvt 0.474249 0.301112\nvt 0.474249 0.301112\nvt 0.473345 0.288671\nvt 0.477951 0.287514\nvt 0.473345 0.288671\nvt 0.474249 0.301112\nvt 0.465019 0.303602\nvt 0.465019 0.303602\nvt 0.473345 0.288671\nvt 0.816142 0.108934\nvt 0.811934 0.110831\nvt 0.805283 0.106378\nvt 0.805283 0.106378\nvt 0.808855 0.102516\nvt 0.816142 0.108934\nvt 0.808855 0.102516\nvt 0.805283 0.106378\nvt 0.782335 0.103135\nvt 0.782335 0.103135\nvt 0.781250 0.098942\nvt 0.808855 0.102516\nvt 0.781250 0.098942\nvt 0.782335 0.103135\nvt 0.779777 0.103817\nvt 0.779777 0.103817\nvt 0.778673 0.099546\nvt 0.781250 0.098942\nvt 0.778673 0.099546\nvt 0.779777 0.103817\nvt 0.749393 0.111669\nvt 0.749393 0.111669\nvt 0.746547 0.107896\nvt 0.778673 0.099546\nvt 0.525119 0.300910\nvt 0.523450 0.288482\nvt 0.543505 0.290144\nvt 0.543505 0.290144\nvt 0.544941 0.302598\nvt 0.525119 0.300910\nvt 0.411219 0.127184\nvt 0.411219 0.127184\nvt 0.411113 0.139556\nvt 0.411113 0.139556\nvt 0.411219 0.127184\nvt 0.427810 0.140400\nvt 0.411113 0.139556\nvt 0.740523 0.595818\nvt 0.772020 0.565584\nvt 0.821967 0.566139\nvt 0.821967 0.566139\nvt 0.809522 0.594082\nvt 0.740523 0.595818\nvt 0.772020 0.565584\nvt 0.740523 0.595818\nvt 0.730707 0.595377\nvt 0.730707 0.595377\nvt 0.754662 0.565249\nvt 0.772020 0.565584\nvt 0.738750 0.598287\nvt 0.740523 0.595818\nvt 0.809522 0.594082\nvt 0.809522 0.594082\nvt 0.809602 0.597580\nvt 0.738750 0.598287\nvt 0.738750 0.598287\nvt 0.809602 0.597580\nvt 0.809968 0.633360\nvt 0.809968 0.633360\nvt 0.737274 0.632460\nvt 0.738750 0.598287\nvt 0.740523 0.595818\nvt 0.738750 0.598287\nvt 0.730617 0.598284\nvt 0.730617 0.598284\nvt 0.738750 0.598287\nvt 0.737274 0.632460\nvt 0.730617 0.598284\nvt 0.730707 0.595377\nvt 0.740523 0.595818\nvt 0.737274 0.632460\nvt 0.730830 0.632132\nvt 0.730617 0.598284\nvt 0.786326 0.080056\nvt 0.785661 0.075592\nvt 0.792169 0.075096\nvt 0.792169 0.075096\nvt 0.793913 0.078951\nvt 0.786326 0.080056\nvt 0.793913 0.078951\nvt 0.792169 0.075096\nvt 0.795939 0.074199\nvt 0.795939 0.074199\nvt 0.798248 0.076838\nvt 0.793913 0.078951\nvt 0.785661 0.075592\nvt 0.786326 0.080056\nvt 0.776568 0.079893\nvt 0.776568 0.079893\nvt 0.776898 0.075159\nvt 0.785661 0.075592\nvt 0.798248 0.076838\nvt 0.795939 0.074199\nvt 0.798321 0.074051\nvt 0.798321 0.074051\nvt 0.800218 0.075441\nvt 0.798248 0.076838\nvt 0.800218 0.075441\nvt 0.798321 0.074051\nvt 0.801150 0.074515\nvt 0.776898 0.075159\nvt 0.776568 0.079893\nvt 0.776898 0.075159\nvt 0.755767 0.332886\nvt 0.755939 0.330936\nvt 0.762007 0.330459\nvt 0.762007 0.330459\nvt 0.762315 0.332285\nvt 0.755767 0.332886\nvt 0.762315 0.332285\nvt 0.762007 0.330459\nvt 0.765610 0.329277\nvt 0.765610 0.329277\nvt 0.766009 0.330886\nvt 0.762315 0.332285\nvt 0.755939 0.330936\nvt 0.755767 0.332886\nvt 0.747064 0.331511\nvt 0.747064 0.331511\nvt 0.747623 0.329602\nvt 0.755939 0.330936\nvt 0.766009 0.330886\nvt 0.765610 0.329277\nvt 0.767674 0.328211\nvt 0.767674 0.328211\nvt 0.768119 0.329620\nvt 0.766009 0.330886\nvt 0.747623 0.329602\nvt 0.747064 0.331511\nvt 0.747623 0.329602\nvt 0.769761 0.326873\nvt 0.770436 0.327937\nvt 0.768119 0.329620\nvt 0.768119 0.329620\nvt 0.767674 0.328211\nvt 0.769761 0.326873\nvt 0.454274 0.064074\nvt 0.459522 0.066451\nvt 0.457820 0.072367\nvt 0.457820 0.072367\nvt 0.452578 0.069973\nvt 0.454274 0.064074\nvt 0.452578 0.069973\nvt 0.457820 0.072367\nvt 0.456839 0.076083\nvt 0.456839 0.076083\nvt 0.451619 0.073668\nvt 0.452578 0.069973\nvt 0.459522 0.066451\nvt 0.454274 0.064074\nvt 0.456983 0.056061\nvt 0.456983 0.056061\nvt 0.462237 0.058424\nvt 0.459522 0.066451\nvt 0.451619 0.073668\nvt 0.456839 0.076083\nvt 0.456221 0.078245\nvt 0.456221 0.078245\nvt 0.451941 0.075897\nvt 0.451619 0.073668\nvt 0.451941 0.075897\nvt 0.456221 0.078245\nvt 0.455917 0.079188\nvt 0.455917 0.079188\nvt 0.453292 0.077982\nvt 0.451941 0.075897\nvt 0.462237 0.058424\nvt 0.456983 0.056061\nvt 0.462237 0.058424\nvt 0.863129 0.324643\nvt 0.860241 0.324643\nvt 0.859733 0.270110\nvt 0.859733 0.270110\nvt 0.862621 0.270110\nvt 0.863129 0.324643\nvt 0.730922 0.207182\nvt 0.735810 0.207433\nvt 0.737292 0.208721\nvt 0.730922 0.207182\nvt 0.737292 0.208721\nvt 0.730555 0.218645\nvt 0.737292 0.208721\nvt 0.737176 0.219191\nvt 0.730555 0.218645\nvt 0.722242 0.202470\nvt 0.724236 0.210908\nvt 0.716102 0.211145\nvt 0.716102 0.211145\nvt 0.714109 0.202707\nvt 0.722242 0.202470\nvt 0.714109 0.202707\nvt 0.716102 0.211145\nvt 0.704532 0.210562\nvt 0.704532 0.210562\nvt 0.702542 0.202124\nvt 0.714109 0.202707\nvt 0.722111 0.505830\nvt 0.731007 0.508608\nvt 0.731007 0.508608\nvt 0.731007 0.508608\nvt 0.731007 0.508608\nvt 0.739167 0.513101\nvt 0.739167 0.513101\nvt 0.745899 0.519530\nvt 0.745899 0.519530\nvt 0.745899 0.519530\nvt 0.745899 0.519530\nvt 0.750740 0.527479\nvt 0.750740 0.527479\nvt 0.752761 0.536567\nvt 0.752761 0.536567\nvt 0.752761 0.536567\nvt 0.752761 0.536567\nvt 0.751707 0.545833\nvt 0.751707 0.545833\nvt 0.747241 0.554047\nvt 0.747241 0.554047\nvt 0.722111 0.505830\nvt 0.712822 0.505015\nvt 0.722111 0.505830\nvt 0.712822 0.505015\nvt 0.703533 0.505813\nvt 0.712822 0.505015\nvt 0.694613 0.508521\nvt 0.703533 0.505813\nvt 0.694613 0.508521\nvt 0.694613 0.508521\nvt 0.686366 0.512856\nvt 0.694613 0.508521\nvt 0.679424 0.519060\nvt 0.686366 0.512856\nvt 0.679424 0.519060\nvt 0.679424 0.519060\nvt 0.674207 0.526769\nvt 0.679424 0.519060\nvt 0.671644 0.535721\nvt 0.674207 0.526769\nvt 0.671644 0.535721\nvt 0.671644 0.535721\nvt 0.672082 0.545038\nvt 0.671644 0.535721\nvt 0.676000 0.553528\nvt 0.672082 0.545038\nvt 0.676000 0.553528\nvt 0.848156 0.854329\nvt 0.846765 0.861292\nvt 0.846870 0.847327\nvt 0.848156 0.854329\nvt 0.846765 0.861292\nvt 0.843195 0.867421\nvt 0.837744 0.871970\nvt 0.846765 0.861292\nvt 0.843195 0.867421\nvt 0.846765 0.861292\nvt 0.837744 0.871970\nvt 0.846870 0.847327\nvt 0.837744 0.871970\nvt 0.831167 0.874681\nvt 0.837744 0.871970\nvt 0.831167 0.874681\nvt 0.824051 0.875200\nvt 0.824051 0.875200\nvt 0.824051 0.875200\nvt 0.824051 0.875200\nvt 0.817015 0.873959\nvt 0.817015 0.873959\nvt 0.810259 0.871627\nvt 0.810259 0.871627\nvt 0.810259 0.871627\nvt 0.803718 0.868701\nvt 0.803718 0.868701\nvt 0.803718 0.868701\nvt 0.798169 0.864149\nvt 0.798169 0.864149\nvt 0.798169 0.864149\nvt 0.798169 0.864149\nvt 0.793511 0.858697\nvt 0.793511 0.858697\nvt 0.790150 0.852374\nvt 0.790150 0.852374\nvt 0.790150 0.852374\nvt 0.790150 0.852374\nvt 0.788073 0.845544\nvt 0.788073 0.845544\nvt 0.787287 0.838471\nvt 0.787287 0.838471\nvt 0.787287 0.838471\nvt 0.787287 0.838471\nvt 0.788413 0.831420\nvt 0.788413 0.831420\nvt 0.792187 0.825348\nvt 0.792187 0.825348\nvt 0.273068 0.203343\nvt 0.273068 0.203343\nvt 0.282357 0.203343\nvt 0.263779 0.203344\nvt 0.273068 0.203343\nvt 0.263779 0.203344\nvt 0.254491 0.203339\nvt 0.263779 0.203344\nvt 0.254491 0.203339\nvt 0.245203 0.203346\nvt 0.254491 0.203339\nvt 0.245203 0.203346\nvt 0.235913 0.203340\nvt 0.245203 0.203346\nvt 0.235913 0.203340\nvt 0.226619 0.203351\nvt 0.235913 0.203340\nvt 0.226619 0.203351\nvt 0.217307 0.203357\nvt 0.226619 0.203351\nvt 0.217307 0.203357\nvt 0.207934 0.203368\nvt 0.217307 0.203357\nvt 0.207934 0.203368\nvt 0.198411 0.203249\nvt 0.207934 0.203368\nvt 0.198411 0.203249\nvt 0.338204 0.203368\nvt 0.338204 0.203368\nvt 0.347728 0.203247\nvt 0.328831 0.203351\nvt 0.338204 0.203368\nvt 0.328831 0.203351\nvt 0.319519 0.203349\nvt 0.328831 0.203351\nvt 0.319519 0.203349\nvt 0.310225 0.203340\nvt 0.319519 0.203349\nvt 0.310225 0.203340\nvt 0.300935 0.203344\nvt 0.310225 0.203340\nvt 0.300935 0.203344\nvt 0.291646 0.203343\nvt 0.300935 0.203344\nvt 0.291646 0.203343\nvt 0.282357 0.203343\nvt 0.291646 0.203343\nvt 0.282357 0.203343\nvt 0.273068 0.209193\nvt 0.273068 0.209193\nvt 0.263779 0.209192\nvt 0.282357 0.209193\nvt 0.273068 0.209193\nvt 0.282357 0.209193\nvt 0.291646 0.209192\nvt 0.282357 0.209193\nvt 0.291646 0.209192\nvt 0.300935 0.209191\nvt 0.291646 0.209192\nvt 0.300935 0.209191\nvt 0.310225 0.209195\nvt 0.300935 0.209191\nvt 0.310225 0.209195\nvt 0.319519 0.209184\nvt 0.310225 0.209195\nvt 0.319519 0.209184\nvt 0.328831 0.209181\nvt 0.319519 0.209184\nvt 0.328831 0.209181\nvt 0.338204 0.209162\nvt 0.328831 0.209181\nvt 0.338204 0.209162\nvt 0.347728 0.209282\nvt 0.338204 0.209162\nvt 0.347728 0.209282\nvt 0.207935 0.209168\nvt 0.207935 0.209168\nvt 0.198411 0.209287\nvt 0.217307 0.209179\nvt 0.207935 0.209168\nvt 0.217307 0.209179\nvt 0.226619 0.209184\nvt 0.217307 0.209179\nvt 0.226619 0.209184\nvt 0.235913 0.209195\nvt 0.226619 0.209184\nvt 0.235913 0.209195\nvt 0.245203 0.209189\nvt 0.235913 0.209195\nvt 0.245203 0.209189\nvt 0.254491 0.209197\nvt 0.245203 0.209189\nvt 0.254491 0.209197\nvt 0.263779 0.209192\nvt 0.254491 0.209197\nvt 0.263779 0.209192\nvt 0.778981 0.362214\nvt 0.778981 0.362214\nvt 0.769931 0.362214\nvt 0.788031 0.362214\nvt 0.778981 0.362214\nvt 0.788031 0.362214\nvt 0.797082 0.362217\nvt 0.788031 0.362214\nvt 0.797082 0.362217\nvt 0.806133 0.362213\nvt 0.797082 0.362217\nvt 0.806133 0.362213\nvt 0.815188 0.362216\nvt 0.806133 0.362213\nvt 0.815188 0.362216\nvt 0.824249 0.362215\nvt 0.815188 0.362216\nvt 0.824249 0.362215\nvt 0.833324 0.362215\nvt 0.824249 0.362215\nvt 0.833324 0.362215\nvt 0.842430 0.362216\nvt 0.833324 0.362215\nvt 0.842430 0.362216\nvt 0.851598 0.362217\nvt 0.842430 0.362216\nvt 0.851598 0.362217\nvt 0.715528 0.362224\nvt 0.715528 0.362224\nvt 0.706361 0.362224\nvt 0.724635 0.362209\nvt 0.715528 0.362224\nvt 0.724635 0.362209\nvt 0.733711 0.362209\nvt 0.724635 0.362209\nvt 0.733711 0.362209\nvt 0.742773 0.362216\nvt 0.733711 0.362209\nvt 0.742773 0.362216\nvt 0.751828 0.362214\nvt 0.742773 0.362216\nvt 0.751828 0.362214\nvt 0.760880 0.362214\nvt 0.751828 0.362214\nvt 0.760880 0.362214\nvt 0.769931 0.362214\nvt 0.760880 0.362214\nvt 0.769931 0.362214\nvt 0.778981 0.361048\nvt 0.778981 0.361048\nvt 0.788031 0.361048\nvt 0.769931 0.361048\nvt 0.778981 0.361048\nvt 0.769931 0.361048\nvt 0.760880 0.361048\nvt 0.769931 0.361048\nvt 0.760880 0.361048\nvt 0.751828 0.361049\nvt 0.760880 0.361048\nvt 0.751828 0.361049\nvt 0.742773 0.361047\nvt 0.751828 0.361049\nvt 0.742773 0.361047\nvt 0.733711 0.361053\nvt 0.742773 0.361047\nvt 0.733711 0.361053\nvt 0.724635 0.361053\nvt 0.733711 0.361053\nvt 0.724635 0.361053\nvt 0.715528 0.361038\nvt 0.724635 0.361053\nvt 0.715528 0.361038\nvt 0.706361 0.361039\nvt 0.715528 0.361038\nvt 0.706361 0.361039\nvt 0.842430 0.361047\nvt 0.842430 0.361047\nvt 0.851598 0.361046\nvt 0.833324 0.361047\nvt 0.842430 0.361047\nvt 0.833324 0.361047\nvt 0.824249 0.361048\nvt 0.833324 0.361047\nvt 0.824249 0.361048\nvt 0.815188 0.361047\nvt 0.824249 0.361048\nvt 0.815188 0.361047\nvt 0.806133 0.361050\nvt 0.815188 0.361047\nvt 0.806133 0.361050\nvt 0.797082 0.361046\nvt 0.806133 0.361050\nvt 0.797082 0.361046\nvt 0.788031 0.361048\nvt 0.797082 0.361046\nvt 0.788031 0.361048\nvt 0.188480 0.299376\nvt 0.198606 0.299388\nvt 0.198606 0.299388\nvt 0.198606 0.299388\nvt 0.208723 0.299388\nvt 0.208723 0.299388\nvt 0.208723 0.299388\nvt 0.218839 0.299388\nvt 0.218839 0.299388\nvt 0.147509 0.299566\nvt 0.157882 0.299537\nvt 0.157882 0.299537\nvt 0.147509 0.299566\nvt 0.136960 0.299522\nvt 0.147509 0.299566\nvt 0.136960 0.299522\nvt 0.126205 0.298055\nvt 0.136960 0.299522\nvt 0.218839 0.299388\nvt 0.228966 0.299389\nvt 0.228966 0.299389\nvt 0.228966 0.299389\nvt 0.280548 0.299293\nvt 0.291264 0.297564\nvt 0.291264 0.297564\nvt 0.280548 0.299293\nvt 0.269977 0.299781\nvt 0.280548 0.299293\nvt 0.269977 0.299781\nvt 0.259574 0.299682\nvt 0.269977 0.299781\nvt 0.259574 0.299682\nvt 0.249305 0.299479\nvt 0.259574 0.299682\nvt 0.249305 0.299479\nvt 0.239114 0.299391\nvt 0.249305 0.299479\nvt 0.239114 0.299391\nvt 0.239114 0.299391\nvt 0.098562 0.216255\nvt 0.098562 0.216255\nvt 0.086597 0.216254\nvt 0.110527 0.216253\nvt 0.098562 0.216255\nvt 0.110527 0.216253\nvt 0.122492 0.216257\nvt 0.110527 0.216253\nvt 0.122492 0.216257\nvt 0.134461 0.216251\nvt 0.122492 0.216257\nvt 0.134461 0.216251\nvt 0.146435 0.216257\nvt 0.134461 0.216251\nvt 0.146435 0.216257\nvt 0.158415 0.216253\nvt 0.146435 0.216257\nvt 0.158415 0.216253\nvt 0.170404 0.216253\nvt 0.158415 0.216253\nvt 0.170404 0.216253\nvt 0.182428 0.216242\nvt 0.170404 0.216253\nvt 0.182428 0.216242\nvt 0.194671 0.216340\nvt 0.182428 0.216242\nvt 0.194671 0.216340\nvt 0.014698 0.216237\nvt 0.014698 0.216237\nvt 0.002453 0.216337\nvt 0.026721 0.216256\nvt 0.014698 0.216237\nvt 0.026721 0.216256\nvt 0.038708 0.216252\nvt 0.026721 0.216256\nvt 0.038708 0.216252\nvt 0.050688 0.216257\nvt 0.038708 0.216252\nvt 0.050688 0.216257\nvt 0.062661 0.216253\nvt 0.050688 0.216257\nvt 0.062661 0.216253\nvt 0.074631 0.216255\nvt 0.062661 0.216253\nvt 0.074631 0.216255\nvt 0.086597 0.216254\nvt 0.074631 0.216255\nvt 0.086597 0.216254\nvt 0.098562 0.208580\nvt 0.098562 0.208580\nvt 0.110527 0.208583\nvt 0.086597 0.208582\nvt 0.098562 0.208580\nvt 0.086597 0.208582\nvt 0.074631 0.208580\nvt 0.086597 0.208582\nvt 0.074631 0.208580\nvt 0.062661 0.208583\nvt 0.074631 0.208580\nvt 0.062661 0.208583\nvt 0.050688 0.208579\nvt 0.062661 0.208583\nvt 0.050688 0.208579\nvt 0.038709 0.208585\nvt 0.050688 0.208579\nvt 0.038709 0.208585\nvt 0.026721 0.208583\nvt 0.038709 0.208585\nvt 0.026721 0.208583\nvt 0.014699 0.208598\nvt 0.026721 0.208583\nvt 0.014699 0.208598\nvt 0.002450 0.208462\nvt 0.014699 0.208598\nvt 0.002450 0.208462\nvt 0.182427 0.208597\nvt 0.182427 0.208597\nvt 0.194675 0.208464\nvt 0.170404 0.208586\nvt 0.182427 0.208597\nvt 0.170404 0.208586\nvt 0.158415 0.208584\nvt 0.170404 0.208586\nvt 0.158415 0.208584\nvt 0.146435 0.208579\nvt 0.158415 0.208584\nvt 0.146435 0.208579\nvt 0.134461 0.208585\nvt 0.146435 0.208579\nvt 0.134461 0.208585\nvt 0.122492 0.208579\nvt 0.134461 0.208585\nvt 0.122492 0.208579\nvt 0.110527 0.208583\nvt 0.122492 0.208579\nvt 0.110527 0.208583\nvt 0.221362 0.227449\nvt 0.221362 0.227449\nvt 0.232987 0.227449\nvt 0.209737 0.227449\nvt 0.221362 0.227449\nvt 0.209737 0.227449\nvt 0.198118 0.227446\nvt 0.209737 0.227449\nvt 0.198118 0.227446\nvt 0.186511 0.227450\nvt 0.198118 0.227446\nvt 0.186511 0.227450\nvt 0.174921 0.227447\nvt 0.186511 0.227450\nvt 0.174921 0.227447\nvt 0.163351 0.227449\nvt 0.174921 0.227447\nvt 0.163351 0.227449\nvt 0.151801 0.227449\nvt 0.163351 0.227449\nvt 0.151801 0.227449\nvt 0.140262 0.227448\nvt 0.151801 0.227449\nvt 0.140262 0.227448\nvt 0.128668 0.227446\nvt 0.140262 0.227448\nvt 0.128668 0.227446\nvt 0.302461 0.227446\nvt 0.302461 0.227446\nvt 0.314056 0.227445\nvt 0.290921 0.227449\nvt 0.302461 0.227446\nvt 0.290921 0.227449\nvt 0.279373 0.227450\nvt 0.290921 0.227449\nvt 0.279373 0.227450\nvt 0.267803 0.227447\nvt 0.279373 0.227450\nvt 0.267803 0.227447\nvt 0.256212 0.227449\nvt 0.267803 0.227447\nvt 0.256212 0.227449\nvt 0.244605 0.227449\nvt 0.256212 0.227449\nvt 0.244605 0.227449\nvt 0.232987 0.227449\nvt 0.244605 0.227449\nvt 0.232987 0.227449\nvt 0.221362 0.228928\nvt 0.221362 0.228928\nvt 0.209737 0.228927\nvt 0.232987 0.228928\nvt 0.221362 0.228928\nvt 0.232987 0.228928\nvt 0.244605 0.228927\nvt 0.232987 0.228928\nvt 0.244605 0.228927\nvt 0.256212 0.228927\nvt 0.244605 0.228927\nvt 0.256212 0.228927\nvt 0.267803 0.228929\nvt 0.256212 0.228927\nvt 0.267803 0.228929\nvt 0.279373 0.228925\nvt 0.267803 0.228929\nvt 0.279373 0.228925\nvt 0.290922 0.228927\nvt 0.279373 0.228925\nvt 0.290922 0.228927\nvt 0.302461 0.228930\nvt 0.290922 0.228927\nvt 0.302461 0.228930\nvt 0.314056 0.228931\nvt 0.302461 0.228930\nvt 0.314056 0.228931\nvt 0.140262 0.228928\nvt 0.140262 0.228928\nvt 0.128668 0.228930\nvt 0.151801 0.228927\nvt 0.140262 0.228928\nvt 0.151801 0.228927\nvt 0.163350 0.228927\nvt 0.151801 0.228927\nvt 0.163350 0.228927\nvt 0.174921 0.228929\nvt 0.163350 0.228927\nvt 0.174921 0.228929\nvt 0.186511 0.228926\nvt 0.174921 0.228929\nvt 0.186511 0.228926\nvt 0.198118 0.228929\nvt 0.186511 0.228926\nvt 0.198118 0.228929\nvt 0.209737 0.228927\nvt 0.198118 0.228929\nvt 0.209737 0.228927\nvt 0.188480 0.299376\nvt 0.178329 0.299406\nvt 0.188480 0.299376\nvt 0.178329 0.299406\nvt 0.168138 0.299444\nvt 0.178329 0.299406\nvt 0.168138 0.299444\nvt 0.157882 0.299537\nvt 0.168138 0.299444\nvt 0.249454 0.158391\nvt 0.260147 0.158391\nvt 0.260146 0.195363\nvt 0.260146 0.195363\nvt 0.249453 0.195365\nvt 0.249454 0.158391\nvt 0.249454 0.158391\nvt 0.249453 0.195365\nvt 0.238759 0.195368\nvt 0.238759 0.195368\nvt 0.238760 0.158390\nvt 0.249454 0.158391\nvt 0.228067 0.158391\nvt 0.238760 0.158390\nvt 0.238759 0.195368\nvt 0.238759 0.195368\nvt 0.228065 0.195371\nvt 0.228067 0.158391\nvt 0.228067 0.158391\nvt 0.228065 0.195371\nvt 0.217372 0.195374\nvt 0.217372 0.195374\nvt 0.217373 0.158391\nvt 0.228067 0.158391\nvt 0.206679 0.158391\nvt 0.217373 0.158391\nvt 0.217372 0.195374\nvt 0.217372 0.195374\nvt 0.206679 0.195376\nvt 0.206679 0.158391\nvt 0.206679 0.158391\nvt 0.206679 0.195376\nvt 0.195986 0.195377\nvt 0.195986 0.195377\nvt 0.195986 0.158391\nvt 0.206679 0.158391\nvt 0.185292 0.158391\nvt 0.195986 0.158391\nvt 0.195986 0.195377\nvt 0.195986 0.195377\nvt 0.185293 0.195377\nvt 0.185292 0.158391\nvt 0.185292 0.158391\nvt 0.185293 0.195377\nvt 0.174600 0.195377\nvt 0.174600 0.195377\nvt 0.174599 0.158392\nvt 0.185292 0.158391\nvt 0.163905 0.158392\nvt 0.174599 0.158392\nvt 0.174600 0.195377\nvt 0.174600 0.195377\nvt 0.163906 0.195375\nvt 0.163905 0.158392\nvt 0.163905 0.158392\nvt 0.163906 0.195375\nvt 0.153212 0.195372\nvt 0.153212 0.195372\nvt 0.153211 0.158393\nvt 0.163905 0.158392\nvt 0.142518 0.158393\nvt 0.153211 0.158393\nvt 0.153212 0.195372\nvt 0.153212 0.195372\nvt 0.142518 0.195369\nvt 0.142518 0.158393\nvt 0.313616 0.158391\nvt 0.313616 0.195368\nvt 0.302922 0.195365\nvt 0.302922 0.195365\nvt 0.302922 0.158391\nvt 0.313616 0.158391\nvt 0.292228 0.158391\nvt 0.302922 0.158391\nvt 0.302922 0.195365\nvt 0.302922 0.195365\nvt 0.292228 0.195363\nvt 0.292228 0.158391\nvt 0.292228 0.158391\nvt 0.292228 0.195363\nvt 0.281534 0.195362\nvt 0.281534 0.195362\nvt 0.281535 0.158391\nvt 0.292228 0.158391\nvt 0.270841 0.158391\nvt 0.281535 0.158391\nvt 0.281534 0.195362\nvt 0.281534 0.195362\nvt 0.270840 0.195362\nvt 0.270841 0.158391\nvt 0.260147 0.158391\nvt 0.270841 0.158391\nvt 0.270840 0.195362\nvt 0.270840 0.195362\nvt 0.260146 0.195363\nvt 0.260147 0.158391\nvt 0.720917 0.511479\nvt 0.722111 0.505830\nvt 0.731007 0.508608\nvt 0.731007 0.508608\nvt 0.728642 0.513846\nvt 0.720917 0.511479\nvt 0.728642 0.513846\nvt 0.731007 0.508608\nvt 0.739167 0.513101\nvt 0.739167 0.513101\nvt 0.735633 0.517661\nvt 0.728642 0.513846\nvt 0.735633 0.517661\nvt 0.739167 0.513101\nvt 0.745899 0.519530\nvt 0.745899 0.519530\nvt 0.741337 0.522998\nvt 0.735633 0.517661\nvt 0.741337 0.522998\nvt 0.745899 0.519530\nvt 0.750740 0.527479\nvt 0.750740 0.527479\nvt 0.745378 0.529484\nvt 0.741337 0.522998\nvt 0.745378 0.529484\nvt 0.750740 0.527479\nvt 0.752761 0.536567\nvt 0.752761 0.536567\nvt 0.747097 0.536758\nvt 0.745378 0.529484\nvt 0.747097 0.536758\nvt 0.752761 0.536567\nvt 0.751707 0.545833\nvt 0.751707 0.545833\nvt 0.746353 0.544049\nvt 0.747097 0.536758\nvt 0.746353 0.544049\nvt 0.751707 0.545833\nvt 0.747241 0.554047\nvt 0.747241 0.554047\nvt 0.742913 0.550399\nvt 0.746353 0.544049\nvt 0.722111 0.505830\nvt 0.720917 0.511479\nvt 0.712802 0.510756\nvt 0.712802 0.510756\nvt 0.712822 0.505015\nvt 0.722111 0.505830\nvt 0.712822 0.505015\nvt 0.712802 0.510756\nvt 0.704671 0.511472\nvt 0.704671 0.511472\nvt 0.703533 0.505813\nvt 0.712822 0.505015\nvt 0.703533 0.505813\nvt 0.704671 0.511472\nvt 0.696889 0.513795\nvt 0.696889 0.513795\nvt 0.694613 0.508521\nvt 0.703533 0.505813\nvt 0.694613 0.508521\nvt 0.696889 0.513795\nvt 0.689777 0.517511\nvt 0.689777 0.517511\nvt 0.686366 0.512856\nvt 0.694613 0.508521\nvt 0.686366 0.512856\nvt 0.689777 0.517511\nvt 0.683850 0.522707\nvt 0.683850 0.522707\nvt 0.679424 0.519060\nvt 0.686366 0.512856\nvt 0.679424 0.519060\nvt 0.683850 0.522707\nvt 0.679470 0.529048\nvt 0.679470 0.529048\nvt 0.674207 0.526769\nvt 0.679424 0.519060\nvt 0.674207 0.526769\nvt 0.679470 0.529048\nvt 0.677298 0.536248\nvt 0.677298 0.536248\nvt 0.671644 0.535721\nvt 0.674207 0.526769\nvt 0.671644 0.535721\nvt 0.677298 0.536248\nvt 0.677548 0.543595\nvt 0.677548 0.543595\nvt 0.672082 0.545038\nvt 0.671644 0.535721\nvt 0.672082 0.545038\nvt 0.677548 0.543595\nvt 0.680558 0.550164\nvt 0.680558 0.550164\nvt 0.676000 0.553528\nvt 0.672082 0.545038\nvt 0.731007 0.508608\nvt 0.722111 0.505830\nvt 0.723202 0.501200\nvt 0.723202 0.501200\nvt 0.733117 0.504388\nvt 0.731007 0.508608\nvt 0.731007 0.508608\nvt 0.733117 0.504388\nvt 0.742237 0.509529\nvt 0.742237 0.509529\nvt 0.739167 0.513101\nvt 0.731007 0.508608\nvt 0.745899 0.519530\nvt 0.739167 0.513101\nvt 0.742237 0.509529\nvt 0.742237 0.509529\nvt 0.749744 0.516927\nvt 0.745899 0.519530\nvt 0.745899 0.519530\nvt 0.749744 0.516927\nvt 0.755095 0.526088\nvt 0.755095 0.526088\nvt 0.750740 0.527479\nvt 0.745899 0.519530\nvt 0.752761 0.536567\nvt 0.750740 0.527479\nvt 0.755095 0.526088\nvt 0.755095 0.526088\nvt 0.757248 0.536536\nvt 0.752761 0.536567\nvt 0.752761 0.536567\nvt 0.757248 0.536536\nvt 0.755932 0.547135\nvt 0.755932 0.547135\nvt 0.751707 0.545833\nvt 0.752761 0.536567\nvt 0.747241 0.554047\nvt 0.751707 0.545833\nvt 0.755932 0.547135\nvt 0.755932 0.547135\nvt 0.751118 0.556549\nvt 0.747241 0.554047\nvt 0.712862 0.500291\nvt 0.723202 0.501200\nvt 0.722111 0.505830\nvt 0.722111 0.505830\nvt 0.712822 0.505015\nvt 0.712862 0.500291\nvt 0.702526 0.501163\nvt 0.712862 0.500291\nvt 0.712822 0.505015\nvt 0.712822 0.505015\nvt 0.703533 0.505813\nvt 0.702526 0.501163\nvt 0.702526 0.501163\nvt 0.703533 0.505813\nvt 0.694613 0.508521\nvt 0.694613 0.508521\nvt 0.692601 0.504252\nvt 0.702526 0.501163\nvt 0.683397 0.509182\nvt 0.692601 0.504252\nvt 0.694613 0.508521\nvt 0.694613 0.508521\nvt 0.686366 0.512856\nvt 0.683397 0.509182\nvt 0.683397 0.509182\nvt 0.686366 0.512856\nvt 0.679424 0.519060\nvt 0.679424 0.519060\nvt 0.675664 0.516298\nvt 0.683397 0.509182\nvt 0.669892 0.525167\nvt 0.675664 0.516298\nvt 0.679424 0.519060\nvt 0.679424 0.519060\nvt 0.674207 0.526769\nvt 0.669892 0.525167\nvt 0.669892 0.525167\nvt 0.674207 0.526769\nvt 0.671644 0.535721\nvt 0.671644 0.535721\nvt 0.667138 0.535452\nvt 0.669892 0.525167\nvt 0.667771 0.546104\nvt 0.667138 0.535452\nvt 0.671644 0.535721\nvt 0.671644 0.535721\nvt 0.672082 0.545038\nvt 0.667771 0.546104\nvt 0.667771 0.546104\nvt 0.672082 0.545038\nvt 0.676000 0.553528\nvt 0.676000 0.553528\nvt 0.671972 0.555804\nvt 0.667771 0.546104\nvt 0.086201 0.260747\nvt 0.078722 0.260748\nvt 0.078675 0.233715\nvt 0.078675 0.233715\nvt 0.086254 0.233716\nvt 0.086201 0.260747\nvt 0.078675 0.233715\nvt 0.078722 0.260748\nvt 0.071147 0.260750\nvt 0.071147 0.260750\nvt 0.071096 0.233715\nvt 0.078675 0.233715\nvt 0.063517 0.233715\nvt 0.071096 0.233715\nvt 0.071147 0.260750\nvt 0.071147 0.260750\nvt 0.063564 0.260753\nvt 0.063517 0.233715\nvt 0.063517 0.233715\nvt 0.063564 0.260753\nvt 0.055990 0.260755\nvt 0.055990 0.260755\nvt 0.055938 0.233716\nvt 0.063517 0.233715\nvt 0.048359 0.233716\nvt 0.055938 0.233716\nvt 0.055990 0.260755\nvt 0.055990 0.260755\nvt 0.048407 0.260756\nvt 0.048359 0.233716\nvt 0.048359 0.233716\nvt 0.048407 0.260756\nvt 0.040833 0.260757\nvt 0.040833 0.260757\nvt 0.040781 0.233716\nvt 0.048359 0.233716\nvt 0.033202 0.233716\nvt 0.040781 0.233716\nvt 0.040833 0.260757\nvt 0.040833 0.260757\nvt 0.033250 0.260757\nvt 0.033202 0.233716\nvt 0.033202 0.233716\nvt 0.033250 0.260757\nvt 0.025676 0.260756\nvt 0.025676 0.260756\nvt 0.025623 0.233716\nvt 0.033202 0.233716\nvt 0.018044 0.233716\nvt 0.025623 0.233716\nvt 0.025676 0.260756\nvt 0.025676 0.260756\nvt 0.018093 0.260755\nvt 0.018044 0.233716\nvt 0.018044 0.233716\nvt 0.018093 0.260755\nvt 0.010518 0.260753\nvt 0.010518 0.260753\nvt 0.010465 0.233717\nvt 0.018044 0.233716\nvt 0.002886 0.233717\nvt 0.010465 0.233717\nvt 0.010518 0.260753\nvt 0.010518 0.260753\nvt 0.002935 0.260751\nvt 0.002886 0.233717\nvt 0.124148 0.233716\nvt 0.124100 0.260750\nvt 0.116621 0.260748\nvt 0.116621 0.260748\nvt 0.116568 0.233716\nvt 0.124148 0.233716\nvt 0.108990 0.233716\nvt 0.116568 0.233716\nvt 0.116621 0.260748\nvt 0.116621 0.260748\nvt 0.109038 0.260747\nvt 0.108990 0.233716\nvt 0.108990 0.233716\nvt 0.109038 0.260747\nvt 0.101463 0.260746\nvt 0.101463 0.260746\nvt 0.101411 0.233716\nvt 0.108990 0.233716\nvt 0.093832 0.233716\nvt 0.101411 0.233716\nvt 0.101463 0.260746\nvt 0.101463 0.260746\nvt 0.093879 0.260746\nvt 0.093832 0.233716\nvt 0.086254 0.233716\nvt 0.093832 0.233716\nvt 0.093879 0.260746\nvt 0.093879 0.260746\nvt 0.086201 0.260747\nvt 0.086254 0.233716\nvt 0.798169 0.864149\nvt 0.800959 0.861282\nvt 0.805901 0.865254\nvt 0.805901 0.865254\nvt 0.803718 0.868701\nvt 0.798169 0.864149\nvt 0.800959 0.861282\nvt 0.798169 0.864149\nvt 0.793511 0.858697\nvt 0.793511 0.858697\nvt 0.796838 0.856440\nvt 0.800959 0.861282\nvt 0.796838 0.856440\nvt 0.793511 0.858697\nvt 0.790150 0.852374\nvt 0.790150 0.852374\nvt 0.793855 0.850844\nvt 0.796838 0.856440\nvt 0.793855 0.850844\nvt 0.790150 0.852374\nvt 0.788073 0.845544\nvt 0.788073 0.845544\nvt 0.791971 0.844804\nvt 0.793855 0.850844\nvt 0.791971 0.844804\nvt 0.788073 0.845544\nvt 0.787287 0.838471\nvt 0.787287 0.838471\nvt 0.791313 0.838662\nvt 0.791971 0.844804\nvt 0.791313 0.838662\nvt 0.787287 0.838471\nvt 0.788413 0.831420\nvt 0.788413 0.831420\nvt 0.792145 0.832878\nvt 0.791313 0.838662\nvt 0.792145 0.832878\nvt 0.788413 0.831420\nvt 0.792187 0.825348\nvt 0.792187 0.825348\nvt 0.795121 0.828121\nvt 0.792145 0.832878\nvt 0.803718 0.868701\nvt 0.805901 0.865254\nvt 0.811744 0.867985\nvt 0.811744 0.867985\nvt 0.810259 0.871627\nvt 0.803718 0.868701\nvt 0.810259 0.871627\nvt 0.811744 0.867985\nvt 0.817926 0.870094\nvt 0.817926 0.870094\nvt 0.817015 0.873959\nvt 0.810259 0.871627\nvt 0.817015 0.873959\nvt 0.817926 0.870094\nvt 0.824153 0.871172\nvt 0.824153 0.871172\nvt 0.824051 0.875200\nvt 0.817015 0.873959\nvt 0.824051 0.875200\nvt 0.824153 0.871172\nvt 0.830188 0.870768\nvt 0.830188 0.870768\nvt 0.831167 0.874681\nvt 0.824051 0.875200\nvt 0.831167 0.874681\nvt 0.830188 0.870768\nvt 0.835648 0.868556\nvt 0.835648 0.868556\nvt 0.837744 0.871970\nvt 0.831167 0.874681\nvt 0.837744 0.871970\nvt 0.835648 0.868556\nvt 0.840117 0.864848\nvt 0.840117 0.864848\nvt 0.843195 0.867421\nvt 0.837744 0.871970\nvt 0.843195 0.867421\nvt 0.840117 0.864848\nvt 0.843026 0.859892\nvt 0.843026 0.859892\nvt 0.846765 0.861292\nvt 0.843195 0.867421\nvt 0.846765 0.861292\nvt 0.843026 0.859892\nvt 0.844157 0.854319\nvt 0.844157 0.854319\nvt 0.848156 0.854329\nvt 0.846765 0.861292\nvt 0.848156 0.854329\nvt 0.844157 0.854319\nvt 0.843140 0.848799\nvt 0.843140 0.848799\nvt 0.846870 0.847327\nvt 0.848156 0.854329\nvt 0.846765 0.861292\nvt 0.848156 0.854329\nvt 0.850589 0.854412\nvt 0.850589 0.854412\nvt 0.848156 0.854329\nvt 0.846870 0.847327\nvt 0.850589 0.854412\nvt 0.849069 0.862133\nvt 0.846765 0.861292\nvt 0.837744 0.871970\nvt 0.843195 0.867421\nvt 0.845147 0.868952\nvt 0.845147 0.868952\nvt 0.843195 0.867421\nvt 0.846765 0.861292\nvt 0.846765 0.861292\nvt 0.849069 0.862133\nvt 0.845147 0.868952\nvt 0.845147 0.868952\nvt 0.839181 0.874056\nvt 0.837744 0.871970\nvt 0.846870 0.847327\nvt 0.849363 0.846640\nvt 0.850589 0.854412\nvt 0.831998 0.877166\nvt 0.831167 0.874681\nvt 0.837744 0.871970\nvt 0.837744 0.871970\nvt 0.839181 0.874056\nvt 0.831998 0.877166\nvt 0.824051 0.875200\nvt 0.831167 0.874681\nvt 0.831998 0.877166\nvt 0.831998 0.877166\nvt 0.824242 0.877897\nvt 0.824051 0.875200\nvt 0.824051 0.875200\nvt 0.824242 0.877897\nvt 0.816651 0.876359\nvt 0.816651 0.876359\nvt 0.817015 0.873959\nvt 0.824051 0.875200\nvt 0.810259 0.871627\nvt 0.817015 0.873959\nvt 0.816651 0.876359\nvt 0.816651 0.876359\nvt 0.809371 0.873786\nvt 0.810259 0.871627\nvt 0.803718 0.868701\nvt 0.810259 0.871627\nvt 0.809371 0.873786\nvt 0.809371 0.873786\nvt 0.802085 0.871223\nvt 0.803718 0.868701\nvt 0.798169 0.864149\nvt 0.803718 0.868701\nvt 0.802085 0.871223\nvt 0.802085 0.871223\nvt 0.796342 0.866025\nvt 0.798169 0.864149\nvt 0.798169 0.864149\nvt 0.796342 0.866025\nvt 0.791291 0.860156\nvt 0.791291 0.860156\nvt 0.793511 0.858697\nvt 0.798169 0.864149\nvt 0.790150 0.852374\nvt 0.793511 0.858697\nvt 0.791291 0.860156\nvt 0.791291 0.860156\nvt 0.787673 0.853307\nvt 0.790150 0.852374\nvt 0.790150 0.852374\nvt 0.787673 0.853307\nvt 0.785606 0.845827\nvt 0.785606 0.845827\nvt 0.788073 0.845544\nvt 0.790150 0.852374\nvt 0.787287 0.838471\nvt 0.788073 0.845544\nvt 0.785606 0.845827\nvt 0.785606 0.845827\nvt 0.784626 0.838098\nvt 0.787287 0.838471\nvt 0.787287 0.838471\nvt 0.784626 0.838098\nvt 0.786166 0.830426\nvt 0.786166 0.830426\nvt 0.788413 0.831420\nvt 0.787287 0.838471\nvt 0.792187 0.825348\nvt 0.788413 0.831420\nvt 0.786166 0.830426\nvt 0.786166 0.830426\nvt 0.790106 0.823632\nvt 0.792187 0.825348\nvt 0.070901 0.200724\nvt 0.062449 0.200724\nvt 0.062449 0.157204\nvt 0.062449 0.157204\nvt 0.070901 0.157203\nvt 0.070901 0.200724\nvt 0.070901 0.200724\nvt 0.070901 0.157203\nvt 0.079353 0.157204\nvt 0.079353 0.157204\nvt 0.079353 0.200724\nvt 0.070901 0.200724\nvt 0.087805 0.200724\nvt 0.079353 0.200724\nvt 0.079353 0.157204\nvt 0.079353 0.157204\nvt 0.087805 0.157204\nvt 0.087805 0.200724\nvt 0.087805 0.200724\nvt 0.087805 0.157204\nvt 0.096257 0.157204\nvt 0.096257 0.157204\nvt 0.096257 0.200724\nvt 0.087805 0.200724\nvt 0.104709 0.200724\nvt 0.096257 0.200724\nvt 0.096257 0.157204\nvt 0.096257 0.157204\nvt 0.104709 0.157204\nvt 0.104709 0.200724\nvt 0.104709 0.200724\nvt 0.104709 0.157204\nvt 0.113161 0.157204\nvt 0.113161 0.157204\nvt 0.113161 0.200724\nvt 0.104709 0.200724\nvt 0.121613 0.200724\nvt 0.113161 0.200724\nvt 0.113161 0.157204\nvt 0.113161 0.157204\nvt 0.121613 0.157204\nvt 0.121613 0.200724\nvt 0.121613 0.200724\nvt 0.121613 0.157204\nvt 0.130065 0.157204\nvt 0.130065 0.157204\nvt 0.130065 0.200723\nvt 0.121613 0.200724\nvt 0.138518 0.200723\nvt 0.130065 0.200723\nvt 0.130065 0.157204\nvt 0.130065 0.157204\nvt 0.138517 0.157203\nvt 0.138518 0.200723\nvt 0.003284 0.200724\nvt 0.003284 0.157204\nvt 0.011737 0.157204\nvt 0.011737 0.157204\nvt 0.011737 0.200724\nvt 0.003284 0.200724\nvt 0.020189 0.200724\nvt 0.011737 0.200724\nvt 0.011737 0.157204\nvt 0.011737 0.157204\nvt 0.020189 0.157204\nvt 0.020189 0.200724\nvt 0.020189 0.200724\nvt 0.020189 0.157204\nvt 0.028641 0.157204\nvt 0.028641 0.157204\nvt 0.028641 0.200724\nvt 0.020189 0.200724\nvt 0.037093 0.200724\nvt 0.028641 0.200724\nvt 0.028641 0.157204\nvt 0.028641 0.157204\nvt 0.037093 0.157204\nvt 0.037093 0.200724\nvt 0.037093 0.200724\nvt 0.037093 0.157204\nvt 0.045545 0.157204\nvt 0.045545 0.157204\nvt 0.045545 0.200724\nvt 0.037093 0.200724\nvt 0.053997 0.200724\nvt 0.045545 0.200724\nvt 0.045545 0.157204\nvt 0.045545 0.157204\nvt 0.053997 0.157204\nvt 0.053997 0.200724\nvt 0.062449 0.200724\nvt 0.053997 0.200724\nvt 0.053997 0.157204\nvt 0.053997 0.157204\nvt 0.062449 0.157204\nvt 0.062449 0.200724\nvt 0.802084 0.858160\nvt 0.805016 0.856141\nvt 0.809074 0.860152\nvt 0.809074 0.860152\nvt 0.807132 0.863148\nvt 0.802084 0.858160\nvt 0.805016 0.856141\nvt 0.802084 0.858160\nvt 0.799227 0.851663\nvt 0.799227 0.851663\nvt 0.802719 0.850918\nvt 0.805016 0.856141\nvt 0.802719 0.850918\nvt 0.799227 0.851663\nvt 0.799184 0.844566\nvt 0.799184 0.844566\nvt 0.802685 0.845212\nvt 0.802719 0.850918\nvt 0.802685 0.845212\nvt 0.799184 0.844566\nvt 0.801758 0.837952\nvt 0.801758 0.837952\nvt 0.804754 0.839895\nvt 0.802685 0.845212\nvt 0.804754 0.839895\nvt 0.801758 0.837952\nvt 0.806747 0.832904\nvt 0.806747 0.832904\nvt 0.808765 0.835836\nvt 0.804754 0.839895\nvt 0.808765 0.835836\nvt 0.806747 0.832904\nvt 0.813243 0.830047\nvt 0.813243 0.830047\nvt 0.813988 0.833539\nvt 0.808765 0.835836\nvt 0.813988 0.833539\nvt 0.813243 0.830047\nvt 0.820340 0.830005\nvt 0.820340 0.830005\nvt 0.819694 0.833506\nvt 0.813988 0.833539\nvt 0.819694 0.833506\nvt 0.820340 0.830005\nvt 0.826954 0.832578\nvt 0.826954 0.832578\nvt 0.825012 0.835574\nvt 0.819694 0.833506\nvt 0.825012 0.835574\nvt 0.826954 0.832578\nvt 0.832003 0.837567\nvt 0.832003 0.837567\nvt 0.829070 0.839585\nvt 0.825012 0.835574\nvt 0.829070 0.839585\nvt 0.832003 0.837567\nvt 0.834859 0.844063\nvt 0.834859 0.844063\nvt 0.831367 0.844808\nvt 0.829070 0.839585\nvt 0.831367 0.844808\nvt 0.834859 0.844063\nvt 0.834902 0.851160\nvt 0.834902 0.851160\nvt 0.831401 0.850514\nvt 0.831367 0.844808\nvt 0.831401 0.850514\nvt 0.834902 0.851160\nvt 0.832328 0.857774\nvt 0.832328 0.857774\nvt 0.829332 0.855832\nvt 0.831401 0.850514\nvt 0.829332 0.855832\nvt 0.832328 0.857774\nvt 0.827339 0.862822\nvt 0.827339 0.862822\nvt 0.825321 0.859890\nvt 0.829332 0.855832\nvt 0.825321 0.859890\nvt 0.827339 0.862822\nvt 0.820843 0.865680\nvt 0.820843 0.865680\nvt 0.820098 0.862187\nvt 0.825321 0.859890\nvt 0.820098 0.862187\nvt 0.820843 0.865680\nvt 0.813746 0.865722\nvt 0.813746 0.865722\nvt 0.814392 0.862221\nvt 0.820098 0.862187\nvt 0.814392 0.862221\nvt 0.813746 0.865722\nvt 0.807132 0.863148\nvt 0.807132 0.863148\nvt 0.809074 0.860152\nvt 0.814392 0.862221\nvt 0.266267 0.217169\nvt 0.274719 0.217169\nvt 0.274719 0.220951\nvt 0.274719 0.220951\nvt 0.266267 0.220950\nvt 0.266267 0.217169\nvt 0.266267 0.217169\nvt 0.266267 0.220950\nvt 0.257813 0.220950\nvt 0.257813 0.220950\nvt 0.257817 0.217169\nvt 0.266267 0.217169\nvt 0.249369 0.217149\nvt 0.257817 0.217169\nvt 0.257813 0.220950\nvt 0.257813 0.220950\nvt 0.249357 0.220930\nvt 0.249369 0.217149\nvt 0.249369 0.217149\nvt 0.249357 0.220930\nvt 0.240903 0.220899\nvt 0.240903 0.220899\nvt 0.240918 0.217117\nvt 0.249369 0.217149\nvt 0.232465 0.217085\nvt 0.240918 0.217117\nvt 0.240903 0.220899\nvt 0.240903 0.220899\nvt 0.232452 0.220866\nvt 0.232465 0.217085\nvt 0.232465 0.217085\nvt 0.232452 0.220866\nvt 0.224004 0.220844\nvt 0.224004 0.220844\nvt 0.224009 0.217063\nvt 0.232465 0.217085\nvt 0.215554 0.217062\nvt 0.224009 0.217063\nvt 0.224004 0.220844\nvt 0.224004 0.220844\nvt 0.215554 0.220844\nvt 0.215554 0.217062\nvt 0.215554 0.217062\nvt 0.215554 0.220844\nvt 0.207102 0.220844\nvt 0.207102 0.220844\nvt 0.207102 0.217062\nvt 0.215554 0.217062\nvt 0.198650 0.217062\nvt 0.207102 0.217062\nvt 0.207102 0.220844\nvt 0.207102 0.220844\nvt 0.198650 0.220844\nvt 0.198650 0.217062\nvt 0.333838 0.216473\nvt 0.333919 0.220254\nvt 0.325468 0.220434\nvt 0.325468 0.220434\nvt 0.325389 0.216653\nvt 0.333838 0.216473\nvt 0.316941 0.216828\nvt 0.325389 0.216653\nvt 0.325468 0.220434\nvt 0.325468 0.220434\nvt 0.317015 0.220609\nvt 0.316941 0.216828\nvt 0.316941 0.216828\nvt 0.317015 0.220609\nvt 0.308557 0.220765\nvt 0.308557 0.220765\nvt 0.308497 0.216983\nvt 0.316941 0.216828\nvt 0.300055 0.217102\nvt 0.308497 0.216983\nvt 0.308557 0.220765\nvt 0.308557 0.220765\nvt 0.300096 0.220883\nvt 0.300055 0.217102\nvt 0.300055 0.217102\nvt 0.300096 0.220883\nvt 0.291631 0.220950\nvt 0.291631 0.220950\nvt 0.291617 0.217169\nvt 0.300055 0.217102\nvt 0.283171 0.217169\nvt 0.291617 0.217169\nvt 0.291631 0.220950\nvt 0.291631 0.220950\nvt 0.283171 0.220950\nvt 0.283171 0.217169\nvt 0.274719 0.217169\nvt 0.283171 0.217169\nvt 0.283171 0.220950\nvt 0.283171 0.220950\nvt 0.274719 0.220951\nvt 0.274719 0.217169\nvt 0.273068 0.203343\nvt 0.282357 0.203343\nvt 0.282357 0.209193\nvt 0.282357 0.209193\nvt 0.273068 0.209193\nvt 0.273068 0.203343\nvt 0.273068 0.203343\nvt 0.273068 0.209193\nvt 0.263779 0.209192\nvt 0.263779 0.209192\nvt 0.263779 0.203344\nvt 0.273068 0.203343\nvt 0.254491 0.203339\nvt 0.263779 0.203344\nvt 0.263779 0.209192\nvt 0.263779 0.209192\nvt 0.254491 0.209197\nvt 0.254491 0.203339\nvt 0.254491 0.203339\nvt 0.254491 0.209197\nvt 0.245203 0.209189\nvt 0.245203 0.209189\nvt 0.245203 0.203346\nvt 0.254491 0.203339\nvt 0.235913 0.203340\nvt 0.245203 0.203346\nvt 0.245203 0.209189\nvt 0.245203 0.209189\nvt 0.235913 0.209195\nvt 0.235913 0.203340\nvt 0.235913 0.203340\nvt 0.235913 0.209195\nvt 0.226619 0.209184\nvt 0.226619 0.209184\nvt 0.226619 0.203351\nvt 0.235913 0.203340\nvt 0.217307 0.203357\nvt 0.226619 0.203351\nvt 0.226619 0.209184\nvt 0.226619 0.209184\nvt 0.217307 0.209179\nvt 0.217307 0.203357\nvt 0.217307 0.203357\nvt 0.217307 0.209179\nvt 0.207935 0.209168\nvt 0.207935 0.209168\nvt 0.207934 0.203368\nvt 0.217307 0.203357\nvt 0.198411 0.203249\nvt 0.207934 0.203368\nvt 0.207935 0.209168\nvt 0.207935 0.209168\nvt 0.198411 0.209287\nvt 0.198411 0.203249\nvt 0.347728 0.203247\nvt 0.347728 0.209282\nvt 0.338204 0.209162\nvt 0.338204 0.209162\nvt 0.338204 0.203368\nvt 0.347728 0.203247\nvt 0.328831 0.203351\nvt 0.338204 0.203368\nvt 0.338204 0.209162\nvt 0.338204 0.209162\nvt 0.328831 0.209181\nvt 0.328831 0.203351\nvt 0.328831 0.203351\nvt 0.328831 0.209181\nvt 0.319519 0.209184\nvt 0.319519 0.209184\nvt 0.319519 0.203349\nvt 0.328831 0.203351\nvt 0.310225 0.203340\nvt 0.319519 0.203349\nvt 0.319519 0.209184\nvt 0.319519 0.209184\nvt 0.310225 0.209195\nvt 0.310225 0.203340\nvt 0.310225 0.203340\nvt 0.310225 0.209195\nvt 0.300935 0.209191\nvt 0.300935 0.209191\nvt 0.300935 0.203344\nvt 0.310225 0.203340\nvt 0.291646 0.203343\nvt 0.300935 0.203344\nvt 0.300935 0.209191\nvt 0.300935 0.209191\nvt 0.291646 0.209192\nvt 0.291646 0.203343\nvt 0.282357 0.203343\nvt 0.291646 0.203343\nvt 0.291646 0.209192\nvt 0.291646 0.209192\nvt 0.282357 0.209193\nvt 0.282357 0.203343\nvt 0.204450 0.256705\nvt 0.195998 0.256705\nvt 0.195998 0.248481\nvt 0.195998 0.248481\nvt 0.204450 0.248481\nvt 0.204450 0.256705\nvt 0.204450 0.256705\nvt 0.204450 0.248481\nvt 0.212902 0.248481\nvt 0.212902 0.248481\nvt 0.212902 0.256705\nvt 0.204450 0.256705\nvt 0.221354 0.256705\nvt 0.212902 0.256705\nvt 0.212902 0.248481\nvt 0.212902 0.248481\nvt 0.221354 0.248481\nvt 0.221354 0.256705\nvt 0.221354 0.256705\nvt 0.221354 0.248481\nvt 0.229806 0.248481\nvt 0.229806 0.248481\nvt 0.229806 0.256705\nvt 0.221354 0.256705\nvt 0.238258 0.256705\nvt 0.229806 0.256705\nvt 0.229806 0.248481\nvt 0.229806 0.248481\nvt 0.238258 0.248480\nvt 0.238258 0.256705\nvt 0.238258 0.256705\nvt 0.238258 0.248480\nvt 0.246711 0.248480\nvt 0.246711 0.248480\nvt 0.246711 0.256705\nvt 0.238258 0.256705\nvt 0.255162 0.256705\nvt 0.246711 0.256705\nvt 0.246711 0.248480\nvt 0.246711 0.248480\nvt 0.255162 0.248480\nvt 0.255162 0.256705\nvt 0.255162 0.256705\nvt 0.255162 0.248480\nvt 0.263615 0.248481\nvt 0.263615 0.248481\nvt 0.263615 0.256705\nvt 0.255162 0.256705\nvt 0.272067 0.256705\nvt 0.263615 0.256705\nvt 0.263615 0.248481\nvt 0.263615 0.248481\nvt 0.272067 0.248481\nvt 0.272067 0.256705\nvt 0.136833 0.256705\nvt 0.136833 0.248481\nvt 0.145285 0.248481\nvt 0.145285 0.248481\nvt 0.145285 0.256705\nvt 0.136833 0.256705\nvt 0.153738 0.256705\nvt 0.145285 0.256705\nvt 0.145285 0.248481\nvt 0.145285 0.248481\nvt 0.153737 0.248480\nvt 0.153738 0.256705\nvt 0.153738 0.256705\nvt 0.153737 0.248480\nvt 0.162190 0.248480\nvt 0.162190 0.248480\nvt 0.162190 0.256705\nvt 0.153738 0.256705\nvt 0.170642 0.256705\nvt 0.162190 0.256705\nvt 0.162190 0.248480\nvt 0.162190 0.248480\nvt 0.170642 0.248481\nvt 0.170642 0.256705\nvt 0.170642 0.256705\nvt 0.170642 0.248481\nvt 0.179094 0.248481\nvt 0.179094 0.248481\nvt 0.179094 0.256705\nvt 0.170642 0.256705\nvt 0.187546 0.256705\nvt 0.179094 0.256705\nvt 0.179094 0.248481\nvt 0.179094 0.248481\nvt 0.187546 0.248481\nvt 0.187546 0.256705\nvt 0.195998 0.256705\nvt 0.187546 0.256705\nvt 0.187546 0.248481\nvt 0.187546 0.248481\nvt 0.195998 0.248481\nvt 0.195998 0.256705\nvt 0.778981 0.362214\nvt 0.769931 0.362214\nvt 0.769931 0.361048\nvt 0.769931 0.361048\nvt 0.778981 0.361048\nvt 0.778981 0.362214\nvt 0.778981 0.362214\nvt 0.778981 0.361048\nvt 0.788031 0.361048\nvt 0.788031 0.361048\nvt 0.788031 0.362214\nvt 0.778981 0.362214\nvt 0.797082 0.362217\nvt 0.788031 0.362214\nvt 0.788031 0.361048\nvt 0.788031 0.361048\nvt 0.797082 0.361046\nvt 0.797082 0.362217\nvt 0.797082 0.362217\nvt 0.797082 0.361046\nvt 0.806133 0.361050\nvt 0.806133 0.361050\nvt 0.806133 0.362213\nvt 0.797082 0.362217\nvt 0.815188 0.362216\nvt 0.806133 0.362213\nvt 0.806133 0.361050\nvt 0.806133 0.361050\nvt 0.815188 0.361047\nvt 0.815188 0.362216\nvt 0.815188 0.362216\nvt 0.815188 0.361047\nvt 0.824249 0.361048\nvt 0.824249 0.361048\nvt 0.824249 0.362215\nvt 0.815188 0.362216\nvt 0.833324 0.362215\nvt 0.824249 0.362215\nvt 0.824249 0.361048\nvt 0.824249 0.361048\nvt 0.833324 0.361047\nvt 0.833324 0.362215\nvt 0.833324 0.362215\nvt 0.833324 0.361047\nvt 0.842430 0.361047\nvt 0.842430 0.361047\nvt 0.842430 0.362216\nvt 0.833324 0.362215\nvt 0.851598 0.362217\nvt 0.842430 0.362216\nvt 0.842430 0.361047\nvt 0.842430 0.361047\nvt 0.851598 0.361046\nvt 0.851598 0.362217\nvt 0.715528 0.361038\nvt 0.715528 0.362224\nvt 0.706361 0.362224\nvt 0.706361 0.362224\nvt 0.706361 0.361039\nvt 0.715528 0.361038\nvt 0.724635 0.362209\nvt 0.715528 0.362224\nvt 0.715528 0.361038\nvt 0.715528 0.361038\nvt 0.724635 0.361053\nvt 0.724635 0.362209\nvt 0.724635 0.362209\nvt 0.724635 0.361053\nvt 0.733711 0.361053\nvt 0.733711 0.361053\nvt 0.733711 0.362209\nvt 0.724635 0.362209\nvt 0.742773 0.362216\nvt 0.733711 0.362209\nvt 0.733711 0.361053\nvt 0.733711 0.361053\nvt 0.742773 0.361047\nvt 0.742773 0.362216\nvt 0.742773 0.362216\nvt 0.742773 0.361047\nvt 0.751828 0.361049\nvt 0.751828 0.361049\nvt 0.751828 0.362214\nvt 0.742773 0.362216\nvt 0.760880 0.362214\nvt 0.751828 0.362214\nvt 0.751828 0.361049\nvt 0.751828 0.361049\nvt 0.760880 0.361048\nvt 0.760880 0.362214\nvt 0.769931 0.362214\nvt 0.760880 0.362214\nvt 0.760880 0.361048\nvt 0.760880 0.361048\nvt 0.769931 0.361048\nvt 0.769931 0.362214\nvt 0.282357 0.199318\nvt 0.282357 0.203343\nvt 0.273068 0.203343\nvt 0.273068 0.203343\nvt 0.273068 0.199307\nvt 0.282357 0.199318\nvt 0.273068 0.199307\nvt 0.273068 0.203343\nvt 0.263779 0.203344\nvt 0.263779 0.203344\nvt 0.263780 0.199319\nvt 0.273068 0.199307\nvt 0.263780 0.199319\nvt 0.263779 0.203344\nvt 0.254491 0.203339\nvt 0.254491 0.203339\nvt 0.254491 0.199301\nvt 0.263780 0.199319\nvt 0.254491 0.199301\nvt 0.254491 0.203339\nvt 0.245203 0.203346\nvt 0.245203 0.203346\nvt 0.245203 0.199322\nvt 0.254491 0.199301\nvt 0.245203 0.199322\nvt 0.245203 0.203346\nvt 0.235913 0.203340\nvt 0.235913 0.203340\nvt 0.235915 0.199304\nvt 0.245203 0.199322\nvt 0.235915 0.199304\nvt 0.235913 0.203340\nvt 0.226619 0.203351\nvt 0.226619 0.203351\nvt 0.226633 0.199337\nvt 0.235915 0.199304\nvt 0.226633 0.199337\nvt 0.226619 0.203351\nvt 0.217307 0.203357\nvt 0.217307 0.203357\nvt 0.217373 0.199349\nvt 0.226633 0.199337\nvt 0.217373 0.199349\nvt 0.217307 0.203357\nvt 0.207934 0.203368\nvt 0.207934 0.203368\nvt 0.208213 0.199403\nvt 0.217373 0.199349\nvt 0.208213 0.199403\nvt 0.207934 0.203368\nvt 0.198411 0.203249\nvt 0.198411 0.203249\nvt 0.199434 0.199014\nvt 0.208213 0.199403\nvt 0.346705 0.199014\nvt 0.347728 0.203247\nvt 0.338204 0.203368\nvt 0.338204 0.203368\nvt 0.337928 0.199405\nvt 0.346705 0.199014\nvt 0.337928 0.199405\nvt 0.338204 0.203368\nvt 0.328831 0.203351\nvt 0.328831 0.203351\nvt 0.328767 0.199342\nvt 0.337928 0.199405\nvt 0.328767 0.199342\nvt 0.328831 0.203351\nvt 0.319519 0.203349\nvt 0.319519 0.203349\nvt 0.319506 0.199333\nvt 0.328767 0.199342\nvt 0.319506 0.199333\nvt 0.319519 0.203349\nvt 0.310225 0.203340\nvt 0.310225 0.203340\nvt 0.310222 0.199303\nvt 0.319506 0.199333\nvt 0.310222 0.199303\nvt 0.310225 0.203340\nvt 0.300935 0.203344\nvt 0.300935 0.203344\nvt 0.300933 0.199320\nvt 0.310222 0.199303\nvt 0.300933 0.199320\nvt 0.300935 0.203344\nvt 0.291646 0.203343\nvt 0.291646 0.203343\nvt 0.291646 0.199307\nvt 0.300933 0.199320\nvt 0.291646 0.199307\nvt 0.291646 0.203343\nvt 0.282357 0.203343\nvt 0.282357 0.203343\nvt 0.282357 0.199318\nvt 0.291646 0.199307\nvt 0.263780 0.213216\nvt 0.263779 0.209192\nvt 0.273068 0.209193\nvt 0.273068 0.209193\nvt 0.273068 0.213229\nvt 0.263780 0.213216\nvt 0.273068 0.213229\nvt 0.273068 0.209193\nvt 0.282357 0.209193\nvt 0.282357 0.209193\nvt 0.282357 0.213217\nvt 0.273068 0.213229\nvt 0.282357 0.213217\nvt 0.282357 0.209193\nvt 0.291646 0.209192\nvt 0.291646 0.209192\nvt 0.291646 0.213228\nvt 0.282357 0.213217\nvt 0.291646 0.213228\nvt 0.291646 0.209192\nvt 0.300935 0.209191\nvt 0.300935 0.209191\nvt 0.300934 0.213216\nvt 0.291646 0.213228\nvt 0.300934 0.213216\nvt 0.300935 0.209191\nvt 0.310225 0.209195\nvt 0.310225 0.209195\nvt 0.310223 0.213232\nvt 0.300934 0.213216\nvt 0.310223 0.213232\nvt 0.310225 0.209195\nvt 0.319519 0.209184\nvt 0.319519 0.209184\nvt 0.319507 0.213200\nvt 0.310223 0.213232\nvt 0.319507 0.213200\nvt 0.319519 0.209184\nvt 0.328831 0.209181\nvt 0.328831 0.209181\nvt 0.328768 0.213190\nvt 0.319507 0.213200\nvt 0.328768 0.213190\nvt 0.328831 0.209181\nvt 0.338204 0.209162\nvt 0.338204 0.209162\nvt 0.337928 0.213125\nvt 0.328768 0.213190\nvt 0.337928 0.213125\nvt 0.338204 0.209162\nvt 0.347728 0.209282\nvt 0.347728 0.209282\nvt 0.346706 0.213516\nvt 0.337928 0.213125\nvt 0.199434 0.213523\nvt 0.198411 0.209287\nvt 0.207935 0.209168\nvt 0.207935 0.209168\nvt 0.208213 0.213134\nvt 0.199434 0.213523\nvt 0.208213 0.213134\nvt 0.207935 0.209168\nvt 0.217307 0.209179\nvt 0.217307 0.209179\nvt 0.217374 0.213187\nvt 0.208213 0.213134\nvt 0.217374 0.213187\nvt 0.217307 0.209179\nvt 0.226619 0.209184\nvt 0.226619 0.209184\nvt 0.226633 0.213199\nvt 0.217374 0.213187\nvt 0.226633 0.213199\nvt 0.226619 0.209184\nvt 0.235913 0.209195\nvt 0.235913 0.209195\nvt 0.235915 0.213231\nvt 0.226633 0.213199\nvt 0.235915 0.213231\nvt 0.235913 0.209195\nvt 0.245203 0.209189\nvt 0.245203 0.209189\nvt 0.245203 0.213213\nvt 0.235915 0.213231\nvt 0.245203 0.213213\nvt 0.245203 0.209189\nvt 0.254491 0.209197\nvt 0.254491 0.209197\nvt 0.254491 0.213235\nvt 0.245203 0.213213\nvt 0.254491 0.213235\nvt 0.254491 0.209197\nvt 0.263779 0.209192\nvt 0.263779 0.209192\nvt 0.263780 0.213216\nvt 0.254491 0.213235\nvt 0.769932 0.364440\nvt 0.769931 0.362214\nvt 0.778981 0.362214\nvt 0.778981 0.362214\nvt 0.778981 0.364443\nvt 0.769932 0.364440\nvt 0.778981 0.364443\nvt 0.778981 0.362214\nvt 0.788031 0.362214\nvt 0.788031 0.362214\nvt 0.788029 0.364439\nvt 0.778981 0.364443\nvt 0.788029 0.364439\nvt 0.788031 0.362214\nvt 0.797082 0.362217\nvt 0.797082 0.362217\nvt 0.797077 0.364448\nvt 0.788029 0.364439\nvt 0.797077 0.364448\nvt 0.797082 0.362217\nvt 0.806133 0.362213\nvt 0.806133 0.362213\nvt 0.806123 0.364436\nvt 0.797077 0.364448\nvt 0.806123 0.364436\nvt 0.806133 0.362213\nvt 0.815188 0.362216\nvt 0.815188 0.362216\nvt 0.815165 0.364446\nvt 0.806123 0.364436\nvt 0.815165 0.364446\nvt 0.815188 0.362216\nvt 0.824249 0.362215\nvt 0.824249 0.362215\nvt 0.824198 0.364438\nvt 0.815165 0.364446\nvt 0.824198 0.364438\nvt 0.824249 0.362215\nvt 0.833324 0.362215\nvt 0.833324 0.362215\nvt 0.833209 0.364440\nvt 0.824198 0.364438\nvt 0.833209 0.364440\nvt 0.833324 0.362215\nvt 0.842430 0.362216\nvt 0.842430 0.362216\nvt 0.842161 0.364429\nvt 0.833209 0.364440\nvt 0.842161 0.364429\nvt 0.842430 0.362216\nvt 0.851598 0.362217\nvt 0.851598 0.362217\nvt 0.850894 0.364495\nvt 0.842161 0.364429\nvt 0.707066 0.364508\nvt 0.706361 0.362224\nvt 0.715528 0.362224\nvt 0.715528 0.362224\nvt 0.715799 0.364442\nvt 0.707066 0.364508\nvt 0.715799 0.364442\nvt 0.715528 0.362224\nvt 0.724635 0.362209\nvt 0.724635 0.362209\nvt 0.724752 0.364431\nvt 0.715799 0.364442\nvt 0.724752 0.364431\nvt 0.724635 0.362209\nvt 0.733711 0.362209\nvt 0.733711 0.362209\nvt 0.733762 0.364428\nvt 0.724752 0.364431\nvt 0.733762 0.364428\nvt 0.733711 0.362209\nvt 0.742773 0.362216\nvt 0.742773 0.362216\nvt 0.742795 0.364445\nvt 0.733762 0.364428\nvt 0.742795 0.364445\nvt 0.742773 0.362216\nvt 0.751828 0.362214\nvt 0.751828 0.362214\nvt 0.751838 0.364439\nvt 0.742795 0.364445\nvt 0.751838 0.364439\nvt 0.751828 0.362214\nvt 0.760880 0.362214\nvt 0.760880 0.362214\nvt 0.760884 0.364443\nvt 0.751838 0.364439\nvt 0.760884 0.364443\nvt 0.760880 0.362214\nvt 0.769931 0.362214\nvt 0.769931 0.362214\nvt 0.769932 0.364440\nvt 0.760884 0.364443\nvt 0.788029 0.358823\nvt 0.788031 0.361048\nvt 0.778981 0.361048\nvt 0.778981 0.361048\nvt 0.778981 0.358819\nvt 0.788029 0.358823\nvt 0.778981 0.358819\nvt 0.778981 0.361048\nvt 0.769931 0.361048\nvt 0.769931 0.361048\nvt 0.769932 0.358823\nvt 0.778981 0.358819\nvt 0.769932 0.358823\nvt 0.769931 0.361048\nvt 0.760880 0.361048\nvt 0.760880 0.361048\nvt 0.760884 0.358820\nvt 0.769932 0.358823\nvt 0.760884 0.358820\nvt 0.760880 0.361048\nvt 0.751828 0.361049\nvt 0.751828 0.361049\nvt 0.751838 0.358824\nvt 0.760884 0.358820\nvt 0.751838 0.358824\nvt 0.751828 0.361049\nvt 0.742773 0.361047\nvt 0.742773 0.361047\nvt 0.742795 0.358818\nvt 0.751838 0.358824\nvt 0.742795 0.358818\nvt 0.742773 0.361047\nvt 0.733711 0.361053\nvt 0.733711 0.361053\nvt 0.733762 0.358835\nvt 0.742795 0.358818\nvt 0.733762 0.358835\nvt 0.733711 0.361053\nvt 0.724635 0.361053\nvt 0.724635 0.361053\nvt 0.724752 0.358831\nvt 0.733762 0.358835\nvt 0.724752 0.358831\nvt 0.724635 0.361053\nvt 0.715528 0.361038\nvt 0.715528 0.361038\nvt 0.715799 0.358821\nvt 0.724752 0.358831\nvt 0.715799 0.358821\nvt 0.715528 0.361038\nvt 0.706361 0.361039\nvt 0.706361 0.361039\nvt 0.707066 0.358755\nvt 0.715799 0.358821\nvt 0.850894 0.358768\nvt 0.851598 0.361046\nvt 0.842430 0.361047\nvt 0.842430 0.361047\nvt 0.842161 0.358834\nvt 0.850894 0.358768\nvt 0.842161 0.358834\nvt 0.842430 0.361047\nvt 0.833324 0.361047\nvt 0.833324 0.361047\nvt 0.833209 0.358823\nvt 0.842161 0.358834\nvt 0.833209 0.358823\nvt 0.833324 0.361047\nvt 0.824249 0.361048\nvt 0.824249 0.361048\nvt 0.824198 0.358824\nvt 0.833209 0.358823\nvt 0.824198 0.358824\nvt 0.824249 0.361048\nvt 0.815188 0.361047\nvt 0.815188 0.361047\nvt 0.815165 0.358817\nvt 0.824198 0.358824\nvt 0.815165 0.358817\nvt 0.815188 0.361047\nvt 0.806133 0.361050\nvt 0.806133 0.361050\nvt 0.806123 0.358827\nvt 0.815165 0.358817\nvt 0.806123 0.358827\nvt 0.806133 0.361050\nvt 0.797082 0.361046\nvt 0.797082 0.361046\nvt 0.797077 0.358814\nvt 0.806123 0.358827\nvt 0.797077 0.358814\nvt 0.797082 0.361046\nvt 0.788031 0.361048\nvt 0.788031 0.361048\nvt 0.788029 0.358823\nvt 0.797077 0.358814\nvt 0.062786 0.224295\nvt 0.070400 0.224295\nvt 0.070400 0.230534\nvt 0.070400 0.230534\nvt 0.062786 0.230534\nvt 0.062786 0.224295\nvt 0.062786 0.224295\nvt 0.062786 0.230534\nvt 0.055185 0.230534\nvt 0.055185 0.230534\nvt 0.055185 0.224295\nvt 0.062786 0.224295\nvt 0.047592 0.224295\nvt 0.055185 0.224295\nvt 0.055185 0.230534\nvt 0.055185 0.230534\nvt 0.047592 0.230534\nvt 0.047592 0.224295\nvt 0.047592 0.224295\nvt 0.047592 0.230534\nvt 0.039988 0.230534\nvt 0.039988 0.230534\nvt 0.039988 0.224295\nvt 0.047592 0.224295\nvt 0.032392 0.224295\nvt 0.039988 0.224295\nvt 0.039988 0.230534\nvt 0.039988 0.230534\nvt 0.032392 0.230534\nvt 0.032392 0.224295\nvt 0.032392 0.224295\nvt 0.032392 0.230534\nvt 0.024748 0.230534\nvt 0.024748 0.230534\nvt 0.024748 0.224295\nvt 0.032392 0.224295\nvt 0.016986 0.224295\nvt 0.024748 0.224295\nvt 0.024748 0.230534\nvt 0.024748 0.230534\nvt 0.016986 0.230534\nvt 0.016986 0.224295\nvt 0.016986 0.224295\nvt 0.016986 0.230534\nvt 0.009312 0.230534\nvt 0.009312 0.230534\nvt 0.009312 0.224295\nvt 0.016986 0.224295\nvt 0.002449 0.224295\nvt 0.009312 0.224295\nvt 0.009312 0.230534\nvt 0.009312 0.230534\nvt 0.002449 0.230534\nvt 0.002449 0.224295\nvt 0.115714 0.230534\nvt 0.115714 0.224295\nvt 0.123461 0.224295\nvt 0.123461 0.224295\nvt 0.123461 0.230534\nvt 0.115714 0.230534\nvt 0.108187 0.224295\nvt 0.115714 0.224295\nvt 0.115714 0.230534\nvt 0.115714 0.230534\nvt 0.108187 0.230534\nvt 0.108187 0.224295\nvt 0.108187 0.224295\nvt 0.108187 0.230534\nvt 0.100658 0.230534\nvt 0.100658 0.230534\nvt 0.100658 0.224295\nvt 0.108187 0.224295\nvt 0.093124 0.224295\nvt 0.100658 0.224295\nvt 0.100658 0.230534\nvt 0.100658 0.230534\nvt 0.093124 0.230534\nvt 0.093124 0.224295\nvt 0.093124 0.224295\nvt 0.093124 0.230534\nvt 0.085576 0.230534\nvt 0.085576 0.230534\nvt 0.085576 0.224295\nvt 0.093124 0.224295\nvt 0.078004 0.224295\nvt 0.085576 0.224295\nvt 0.085576 0.230534\nvt 0.085576 0.230534\nvt 0.078004 0.230534\nvt 0.078004 0.224295\nvt 0.070400 0.224295\nvt 0.078004 0.224295\nvt 0.078004 0.230534\nvt 0.078004 0.230534\nvt 0.070400 0.230534\nvt 0.070400 0.224295\nvt 0.082194 0.099444\nvt 0.093474 0.099444\nvt 0.093474 0.154567\nvt 0.093474 0.154567\nvt 0.082194 0.154567\nvt 0.082194 0.099444\nvt 0.093474 0.154567\nvt 0.093474 0.099444\nvt 0.104753 0.099444\nvt 0.104753 0.099444\nvt 0.104753 0.154567\nvt 0.093474 0.154567\nvt 0.116033 0.154567\nvt 0.104753 0.154567\nvt 0.104753 0.099444\nvt 0.104753 0.099444\nvt 0.116033 0.099444\nvt 0.116033 0.154567\nvt 0.116033 0.154567\nvt 0.116033 0.099444\nvt 0.127312 0.099444\nvt 0.127312 0.099444\nvt 0.127312 0.154567\nvt 0.116033 0.154567\nvt 0.138591 0.154567\nvt 0.127312 0.154567\nvt 0.127312 0.099444\nvt 0.127312 0.099444\nvt 0.138591 0.099444\nvt 0.138591 0.154567\nvt 0.138591 0.154567\nvt 0.138591 0.099444\nvt 0.149872 0.099444\nvt 0.149872 0.099444\nvt 0.149872 0.154567\nvt 0.138591 0.154567\nvt 0.161151 0.154567\nvt 0.149872 0.154567\nvt 0.149872 0.099444\nvt 0.149872 0.099444\nvt 0.161151 0.099444\nvt 0.161151 0.154567\nvt 0.161151 0.154567\nvt 0.161151 0.099444\nvt 0.172431 0.099444\nvt 0.172431 0.099444\nvt 0.172431 0.154567\nvt 0.161151 0.154567\nvt 0.183710 0.154567\nvt 0.172431 0.154567\nvt 0.172431 0.099444\nvt 0.172431 0.099444\nvt 0.183710 0.099444\nvt 0.183710 0.154567\nvt 0.003236 0.154567\nvt 0.003236 0.099444\nvt 0.014516 0.099444\nvt 0.014516 0.099444\nvt 0.014516 0.154567\nvt 0.003236 0.154567\nvt 0.025796 0.154567\nvt 0.014516 0.154567\nvt 0.014516 0.099444\nvt 0.014516 0.099444\nvt 0.025795 0.099444\nvt 0.025796 0.154567\nvt 0.025796 0.154567\nvt 0.025795 0.099444\nvt 0.037075 0.099444\nvt 0.037075 0.099444\nvt 0.037076 0.154567\nvt 0.025796 0.154567\nvt 0.048355 0.154567\nvt 0.037076 0.154567\nvt 0.037075 0.099444\nvt 0.037075 0.099444\nvt 0.048355 0.099444\nvt 0.048355 0.154567\nvt 0.048355 0.154567\nvt 0.048355 0.099444\nvt 0.059635 0.099444\nvt 0.059635 0.099444\nvt 0.059635 0.154567\nvt 0.048355 0.154567\nvt 0.070914 0.154567\nvt 0.059635 0.154567\nvt 0.059635 0.099444\nvt 0.059635 0.099444\nvt 0.070914 0.099444\nvt 0.070914 0.154567\nvt 0.070914 0.154567\nvt 0.070914 0.099444\nvt 0.082194 0.099444\nvt 0.082194 0.099444\nvt 0.082194 0.154567\nvt 0.070914 0.154567\nvt 0.592822 0.513863\nvt 0.596945 0.512559\nvt 0.597737 0.520013\nvt 0.597737 0.520013\nvt 0.593436 0.519641\nvt 0.592822 0.513863\nvt 0.593436 0.519641\nvt 0.597737 0.520013\nvt 0.595676 0.527221\nvt 0.595676 0.527221\nvt 0.591838 0.525227\nvt 0.593436 0.519641\nvt 0.591838 0.525227\nvt 0.595676 0.527221\nvt 0.590964 0.533051\nvt 0.590964 0.533051\nvt 0.588187 0.529747\nvt 0.591838 0.525227\nvt 0.588187 0.529747\nvt 0.590964 0.533051\nvt 0.584410 0.536690\nvt 0.584410 0.536690\nvt 0.583107 0.532567\nvt 0.588187 0.529747\nvt 0.583107 0.532567\nvt 0.584410 0.536690\nvt 0.576956 0.537482\nvt 0.576956 0.537482\nvt 0.577329 0.533181\nvt 0.583107 0.532567\nvt 0.577329 0.533181\nvt 0.576956 0.537482\nvt 0.569749 0.535420\nvt 0.569749 0.535420\nvt 0.571743 0.531583\nvt 0.577329 0.533181\nvt 0.571743 0.531583\nvt 0.569749 0.535420\nvt 0.563918 0.530709\nvt 0.563918 0.530709\nvt 0.567223 0.527932\nvt 0.571743 0.531583\nvt 0.567223 0.527932\nvt 0.563918 0.530709\nvt 0.560280 0.524155\nvt 0.560280 0.524155\nvt 0.564403 0.522852\nvt 0.567223 0.527932\nvt 0.564403 0.522852\nvt 0.560280 0.524155\nvt 0.559488 0.516701\nvt 0.559488 0.516701\nvt 0.563789 0.517074\nvt 0.564403 0.522852\nvt 0.563789 0.517074\nvt 0.559488 0.516701\nvt 0.561549 0.509494\nvt 0.561549 0.509494\nvt 0.565387 0.511487\nvt 0.563789 0.517074\nvt 0.565387 0.511487\nvt 0.561549 0.509494\nvt 0.566261 0.503663\nvt 0.566261 0.503663\nvt 0.569038 0.506968\nvt 0.565387 0.511487\nvt 0.569038 0.506968\nvt 0.566261 0.503663\nvt 0.572815 0.500025\nvt 0.572815 0.500025\nvt 0.574118 0.504147\nvt 0.569038 0.506968\nvt 0.574118 0.504147\nvt 0.572815 0.500025\nvt 0.580269 0.499233\nvt 0.580269 0.499233\nvt 0.579896 0.503534\nvt 0.574118 0.504147\nvt 0.579896 0.503534\nvt 0.580269 0.499233\nvt 0.587476 0.501294\nvt 0.587476 0.501294\nvt 0.585483 0.505132\nvt 0.579896 0.503534\nvt 0.585483 0.505132\nvt 0.587476 0.501294\nvt 0.593307 0.506006\nvt 0.593307 0.506006\nvt 0.590002 0.508783\nvt 0.585483 0.505132\nvt 0.590002 0.508783\nvt 0.593307 0.506006\nvt 0.596945 0.512559\nvt 0.596945 0.512559\nvt 0.592822 0.513863\nvt 0.590002 0.508783\nvt 0.218839 0.304413\nvt 0.208722 0.304413\nvt 0.208723 0.299388\nvt 0.208723 0.299388\nvt 0.218839 0.299388\nvt 0.218839 0.304413\nvt 0.198606 0.299388\nvt 0.208723 0.299388\nvt 0.208722 0.304413\nvt 0.208722 0.304413\nvt 0.198605 0.304412\nvt 0.198606 0.299388\nvt 0.188480 0.299376\nvt 0.198606 0.299388\nvt 0.198605 0.304412\nvt 0.198605 0.304412\nvt 0.188484 0.304403\nvt 0.188480 0.299376\nvt 0.178329 0.299406\nvt 0.188480 0.299376\nvt 0.188484 0.304403\nvt 0.188484 0.304403\nvt 0.178343 0.304429\nvt 0.178329 0.299406\nvt 0.168138 0.299444\nvt 0.178329 0.299406\nvt 0.178343 0.304429\nvt 0.178343 0.304429\nvt 0.168162 0.304470\nvt 0.168138 0.299444\nvt 0.157882 0.299537\nvt 0.168138 0.299444\nvt 0.168162 0.304470\nvt 0.168162 0.304470\nvt 0.157890 0.304560\nvt 0.157882 0.299537\nvt 0.147509 0.299566\nvt 0.157882 0.299537\nvt 0.157890 0.304560\nvt 0.157890 0.304560\nvt 0.147478 0.304594\nvt 0.147509 0.299566\nvt 0.136960 0.299522\nvt 0.147509 0.299566\nvt 0.147478 0.304594\nvt 0.147478 0.304594\nvt 0.136597 0.304491\nvt 0.136960 0.299522\nvt 0.126205 0.298055\nvt 0.136960 0.299522\nvt 0.136597 0.304491\nvt 0.136597 0.304491\nvt 0.125476 0.303090\nvt 0.126205 0.298055\nvt 0.198606 0.299388\nvt 0.188480 0.299376\nvt 0.188473 0.291378\nvt 0.178314 0.291414\nvt 0.188473 0.291378\nvt 0.188480 0.299376\nvt 0.188480 0.299376\nvt 0.178329 0.299406\nvt 0.178314 0.291414\nvt 0.178329 0.299406\nvt 0.168138 0.299444\nvt 0.168124 0.291442\nvt 0.168124 0.291442\nvt 0.178314 0.291414\nvt 0.178329 0.299406\nvt 0.157920 0.291533\nvt 0.168124 0.291442\nvt 0.168138 0.299444\nvt 0.168138 0.299444\nvt 0.157882 0.299537\nvt 0.157920 0.291533\nvt 0.157882 0.299537\nvt 0.147509 0.299566\nvt 0.147744 0.291568\nvt 0.147744 0.291568\nvt 0.157920 0.291533\nvt 0.157882 0.299537\nvt 0.137801 0.291594\nvt 0.147744 0.291568\nvt 0.147509 0.299566\nvt 0.147509 0.299566\nvt 0.136960 0.299522\nvt 0.137801 0.291594\nvt 0.136960 0.299522\nvt 0.126205 0.298055\nvt 0.128486 0.290083\nvt 0.128486 0.290083\nvt 0.137801 0.291594\nvt 0.136960 0.299522\nvt 0.188473 0.291378\nvt 0.198607 0.291396\nvt 0.198606 0.299388\nvt 0.208723 0.299388\nvt 0.198606 0.299388\nvt 0.198607 0.291396\nvt 0.198607 0.291396\nvt 0.208723 0.291390\nvt 0.208723 0.299388\nvt 0.218839 0.299388\nvt 0.208723 0.299388\nvt 0.208723 0.291390\nvt 0.208723 0.291390\nvt 0.218841 0.291390\nvt 0.218839 0.299388\nvt 0.228966 0.299389\nvt 0.218839 0.299388\nvt 0.218841 0.291390\nvt 0.218839 0.299388\nvt 0.228966 0.299389\nvt 0.228965 0.304415\nvt 0.239099 0.304416\nvt 0.228965 0.304415\nvt 0.228966 0.299389\nvt 0.228966 0.299389\nvt 0.239114 0.299391\nvt 0.239099 0.304416\nvt 0.249248 0.304505\nvt 0.239099 0.304416\nvt 0.239114 0.299391\nvt 0.239114 0.299391\nvt 0.249305 0.299479\nvt 0.249248 0.304505\nvt 0.259527 0.304708\nvt 0.249248 0.304505\nvt 0.249305 0.299479\nvt 0.249305 0.299479\nvt 0.259574 0.299682\nvt 0.259527 0.304708\nvt 0.270101 0.304807\nvt 0.259527 0.304708\nvt 0.259574 0.299682\nvt 0.259574 0.299682\nvt 0.269977 0.299781\nvt 0.270101 0.304807\nvt 0.281081 0.304273\nvt 0.270101 0.304807\nvt 0.269977 0.299781\nvt 0.269977 0.299781\nvt 0.280548 0.299293\nvt 0.281081 0.304273\nvt 0.292130 0.302575\nvt 0.281081 0.304273\nvt 0.280548 0.299293\nvt 0.280548 0.299293\nvt 0.291264 0.297564\nvt 0.292130 0.302575\nvt 0.228965 0.304415\nvt 0.218839 0.304413\nvt 0.218839 0.299388\nvt 0.291264 0.297564\nvt 0.280548 0.299293\nvt 0.279473 0.291400\nvt 0.279473 0.291400\nvt 0.288772 0.289666\nvt 0.291264 0.297564\nvt 0.280548 0.299293\nvt 0.269977 0.299781\nvt 0.269631 0.291759\nvt 0.269631 0.291759\nvt 0.279473 0.291400\nvt 0.280548 0.299293\nvt 0.259541 0.291669\nvt 0.269631 0.291759\nvt 0.269977 0.299781\nvt 0.269977 0.299781\nvt 0.259574 0.299682\nvt 0.259541 0.291669\nvt 0.259574 0.299682\nvt 0.249305 0.299479\nvt 0.249347 0.291480\nvt 0.249347 0.291480\nvt 0.259541 0.291669\nvt 0.259574 0.299682\nvt 0.239140 0.291409\nvt 0.249347 0.291480\nvt 0.249305 0.299479\nvt 0.249305 0.299479\nvt 0.239114 0.299391\nvt 0.239140 0.291409\nvt 0.228974 0.291391\nvt 0.239140 0.291409\nvt 0.239114 0.299391\nvt 0.239114 0.299391\nvt 0.228966 0.299389\nvt 0.228974 0.291391\nvt 0.218841 0.291390\nvt 0.228974 0.291391\nvt 0.228966 0.299389\nvt 0.086597 0.208582\nvt 0.098562 0.208580\nvt 0.098562 0.216255\nvt 0.098562 0.216255\nvt 0.086597 0.216254\nvt 0.086597 0.208582\nvt 0.110527 0.216253\nvt 0.098562 0.216255\nvt 0.098562 0.208580\nvt 0.098562 0.208580\nvt 0.110527 0.208583\nvt 0.110527 0.216253\nvt 0.122492 0.216257\nvt 0.110527 0.216253\nvt 0.110527 0.208583\nvt 0.110527 0.208583\nvt 0.122492 0.208579\nvt 0.122492 0.216257\nvt 0.134461 0.216251\nvt 0.122492 0.216257\nvt 0.122492 0.208579\nvt 0.122492 0.208579\nvt 0.134461 0.208585\nvt 0.134461 0.216251\nvt 0.146435 0.216257\nvt 0.134461 0.216251\nvt 0.134461 0.208585\nvt 0.134461 0.208585\nvt 0.146435 0.208579\nvt 0.146435 0.216257\nvt 0.158415 0.216253\nvt 0.146435 0.216257\nvt 0.146435 0.208579\nvt 0.146435 0.208579\nvt 0.158415 0.208584\nvt 0.158415 0.216253\nvt 0.170404 0.216253\nvt 0.158415 0.216253\nvt 0.158415 0.208584\nvt 0.158415 0.208584\nvt 0.170404 0.208586\nvt 0.170404 0.216253\nvt 0.182428 0.216242\nvt 0.170404 0.216253\nvt 0.170404 0.208586\nvt 0.170404 0.208586\nvt 0.182427 0.208597\nvt 0.182428 0.216242\nvt 0.194671 0.216340\nvt 0.182428 0.216242\nvt 0.182427 0.208597\nvt 0.182427 0.208597\nvt 0.194675 0.208464\nvt 0.194671 0.216340\nvt 0.014698 0.216237\nvt 0.002453 0.216337\nvt 0.002450 0.208462\nvt 0.002450 0.208462\nvt 0.014699 0.208598\nvt 0.014698 0.216237\nvt 0.026721 0.216256\nvt 0.014698 0.216237\nvt 0.014699 0.208598\nvt 0.014699 0.208598\nvt 0.026721 0.208583\nvt 0.026721 0.216256\nvt 0.038708 0.216252\nvt 0.026721 0.216256\nvt 0.026721 0.208583\nvt 0.026721 0.208583\nvt 0.038709 0.208585\nvt 0.038708 0.216252\nvt 0.050688 0.216257\nvt 0.038708 0.216252\nvt 0.038709 0.208585\nvt 0.038709 0.208585\nvt 0.050688 0.208579\nvt 0.050688 0.216257\nvt 0.062661 0.216253\nvt 0.050688 0.216257\nvt 0.050688 0.208579\nvt 0.050688 0.208579\nvt 0.062661 0.208583\nvt 0.062661 0.216253\nvt 0.074631 0.216255\nvt 0.062661 0.216253\nvt 0.062661 0.208583\nvt 0.062661 0.208583\nvt 0.074631 0.208580\nvt 0.074631 0.216255\nvt 0.086597 0.216254\nvt 0.074631 0.216255\nvt 0.074631 0.208580\nvt 0.074631 0.208580\nvt 0.086597 0.208582\nvt 0.086597 0.216254\nvt 0.215807 0.234790\nvt 0.227087 0.234790\nvt 0.227087 0.245207\nvt 0.227087 0.245207\nvt 0.215807 0.245207\nvt 0.215807 0.234790\nvt 0.238366 0.245207\nvt 0.227087 0.245207\nvt 0.227087 0.234790\nvt 0.227087 0.234790\nvt 0.238367 0.234789\nvt 0.238366 0.245207\nvt 0.249646 0.245207\nvt 0.238366 0.245207\nvt 0.238367 0.234789\nvt 0.238367 0.234789\nvt 0.249646 0.234790\nvt 0.249646 0.245207\nvt 0.260926 0.245207\nvt 0.249646 0.245207\nvt 0.249646 0.234790\nvt 0.249646 0.234790\nvt 0.260926 0.234790\nvt 0.260926 0.245207\nvt 0.272206 0.245207\nvt 0.260926 0.245207\nvt 0.260926 0.234790\nvt 0.260926 0.234790\nvt 0.272206 0.234789\nvt 0.272206 0.245207\nvt 0.283486 0.245207\nvt 0.272206 0.245207\nvt 0.272206 0.234789\nvt 0.272206 0.234789\nvt 0.283486 0.234790\nvt 0.283486 0.245207\nvt 0.294766 0.245207\nvt 0.283486 0.245207\nvt 0.283486 0.234790\nvt 0.283486 0.234790\nvt 0.294766 0.234790\nvt 0.294766 0.245207\nvt 0.306046 0.245207\nvt 0.294766 0.245207\nvt 0.294766 0.234790\nvt 0.294766 0.234790\nvt 0.306046 0.234790\nvt 0.306046 0.245207\nvt 0.317325 0.245207\nvt 0.306046 0.245207\nvt 0.306046 0.234790\nvt 0.306046 0.234790\nvt 0.317325 0.234789\nvt 0.317325 0.245207\nvt 0.148128 0.245207\nvt 0.136849 0.245207\nvt 0.136849 0.234789\nvt 0.136849 0.234789\nvt 0.148128 0.234790\nvt 0.148128 0.245207\nvt 0.159408 0.245207\nvt 0.148128 0.245207\nvt 0.148128 0.234790\nvt 0.148128 0.234790\nvt 0.159408 0.234789\nvt 0.159408 0.245207\nvt 0.170688 0.245207\nvt 0.159408 0.245207\nvt 0.159408 0.234789\nvt 0.159408 0.234789\nvt 0.170688 0.234789\nvt 0.170688 0.245207\nvt 0.181968 0.245207\nvt 0.170688 0.245207\nvt 0.170688 0.234789\nvt 0.170688 0.234789\nvt 0.181968 0.234790\nvt 0.181968 0.245207\nvt 0.193248 0.245207\nvt 0.181968 0.245207\nvt 0.181968 0.234790\nvt 0.181968 0.234790\nvt 0.193248 0.234789\nvt 0.193248 0.245207\nvt 0.204527 0.245207\nvt 0.193248 0.245207\nvt 0.193248 0.234789\nvt 0.193248 0.234789\nvt 0.204527 0.234790\nvt 0.204527 0.245207\nvt 0.215807 0.245207\nvt 0.204527 0.245207\nvt 0.204527 0.234790\nvt 0.204527 0.234790\nvt 0.215807 0.234790\nvt 0.215807 0.245207\nvt 0.232987 0.228928\nvt 0.221362 0.228928\nvt 0.221362 0.227449\nvt 0.221362 0.227449\nvt 0.232987 0.227449\nvt 0.232987 0.228928\nvt 0.209737 0.227449\nvt 0.221362 0.227449\nvt 0.221362 0.228928\nvt 0.221362 0.228928\nvt 0.209737 0.228927\nvt 0.209737 0.227449\nvt 0.198118 0.227446\nvt 0.209737 0.227449\nvt 0.209737 0.228927\nvt 0.209737 0.228927\nvt 0.198118 0.228929\nvt 0.198118 0.227446\nvt 0.186511 0.227450\nvt 0.198118 0.227446\nvt 0.198118 0.228929\nvt 0.198118 0.228929\nvt 0.186511 0.228926\nvt 0.186511 0.227450\nvt 0.174921 0.227447\nvt 0.186511 0.227450\nvt 0.186511 0.228926\nvt 0.186511 0.228926\nvt 0.174921 0.228929\nvt 0.174921 0.227447\nvt 0.163351 0.227449\nvt 0.174921 0.227447\nvt 0.174921 0.228929\nvt 0.174921 0.228929\nvt 0.163350 0.228927\nvt 0.163351 0.227449\nvt 0.151801 0.227449\nvt 0.163351 0.227449\nvt 0.163350 0.228927\nvt 0.163350 0.228927\nvt 0.151801 0.228927\nvt 0.151801 0.227449\nvt 0.140262 0.227448\nvt 0.151801 0.227449\nvt 0.151801 0.228927\nvt 0.151801 0.228927\nvt 0.140262 0.228928\nvt 0.140262 0.227448\nvt 0.128668 0.227446\nvt 0.140262 0.227448\nvt 0.140262 0.228928\nvt 0.140262 0.228928\nvt 0.128668 0.228930\nvt 0.128668 0.227446\nvt 0.302461 0.227446\nvt 0.314056 0.227445\nvt 0.314056 0.228931\nvt 0.314056 0.228931\nvt 0.302461 0.228930\nvt 0.302461 0.227446\nvt 0.290921 0.227449\nvt 0.302461 0.227446\nvt 0.302461 0.228930\nvt 0.302461 0.228930\nvt 0.290922 0.228927\nvt 0.290921 0.227449\nvt 0.279373 0.227450\nvt 0.290921 0.227449\nvt 0.290922 0.228927\nvt 0.290922 0.228927\nvt 0.279373 0.228925\nvt 0.279373 0.227450\nvt 0.267803 0.227447\nvt 0.279373 0.227450\nvt 0.279373 0.228925\nvt 0.279373 0.228925\nvt 0.267803 0.228929\nvt 0.267803 0.227447\nvt 0.256212 0.227449\nvt 0.267803 0.227447\nvt 0.267803 0.228929\nvt 0.267803 0.228929\nvt 0.256212 0.228927\nvt 0.256212 0.227449\nvt 0.244605 0.227449\nvt 0.256212 0.227449\nvt 0.256212 0.228927\nvt 0.256212 0.228927\nvt 0.244605 0.228927\nvt 0.244605 0.227449\nvt 0.232987 0.227449\nvt 0.244605 0.227449\nvt 0.244605 0.228927\nvt 0.244605 0.228927\nvt 0.232987 0.228928\nvt 0.232987 0.227449\nvt 0.086597 0.221520\nvt 0.086597 0.216254\nvt 0.098562 0.216255\nvt 0.098562 0.216255\nvt 0.098562 0.221529\nvt 0.086597 0.221520\nvt 0.098562 0.221529\nvt 0.098562 0.216255\nvt 0.110527 0.216253\nvt 0.110527 0.216253\nvt 0.110525 0.221519\nvt 0.098562 0.221529\nvt 0.110525 0.221519\nvt 0.110527 0.216253\nvt 0.122492 0.216257\nvt 0.122492 0.216257\nvt 0.122492 0.221533\nvt 0.110525 0.221519\nvt 0.122492 0.221533\nvt 0.122492 0.216257\nvt 0.134461 0.216251\nvt 0.134461 0.216251\nvt 0.134461 0.221517\nvt 0.122492 0.221533\nvt 0.134461 0.221517\nvt 0.134461 0.216251\nvt 0.146435 0.216257\nvt 0.146435 0.216257\nvt 0.146435 0.221533\nvt 0.134461 0.221517\nvt 0.146435 0.221533\nvt 0.146435 0.216257\nvt 0.158415 0.216253\nvt 0.158415 0.216253\nvt 0.158417 0.221518\nvt 0.146435 0.221533\nvt 0.158417 0.221518\nvt 0.158415 0.216253\nvt 0.170404 0.216253\nvt 0.170404 0.216253\nvt 0.170404 0.221522\nvt 0.158417 0.221518\nvt 0.170404 0.221522\nvt 0.170404 0.216253\nvt 0.182428 0.216242\nvt 0.182428 0.216242\nvt 0.182363 0.221468\nvt 0.170404 0.221522\nvt 0.182363 0.221468\nvt 0.182428 0.216242\nvt 0.194671 0.216340\nvt 0.194671 0.216340\nvt 0.193859 0.221815\nvt 0.182363 0.221468\nvt 0.003265 0.221811\nvt 0.002453 0.216337\nvt 0.014698 0.216237\nvt 0.014698 0.216237\nvt 0.014759 0.221464\nvt 0.003265 0.221811\nvt 0.014759 0.221464\nvt 0.014698 0.216237\nvt 0.026721 0.216256\nvt 0.026721 0.216256\nvt 0.026719 0.221526\nvt 0.014759 0.221464\nvt 0.026719 0.221526\nvt 0.026721 0.216256\nvt 0.038708 0.216252\nvt 0.038708 0.216252\nvt 0.038708 0.221518\nvt 0.026719 0.221526\nvt 0.038708 0.221518\nvt 0.038708 0.216252\nvt 0.050688 0.216257\nvt 0.050688 0.216257\nvt 0.050688 0.221534\nvt 0.038708 0.221518\nvt 0.050688 0.221534\nvt 0.050688 0.216257\nvt 0.062661 0.216253\nvt 0.062661 0.216253\nvt 0.062663 0.221520\nvt 0.050688 0.221534\nvt 0.062663 0.221520\nvt 0.062661 0.216253\nvt 0.074631 0.216255\nvt 0.074631 0.216255\nvt 0.074632 0.221530\nvt 0.062663 0.221520\nvt 0.074632 0.221530\nvt 0.074631 0.216255\nvt 0.086597 0.216254\nvt 0.086597 0.216254\nvt 0.086597 0.221520\nvt 0.074632 0.221530\nvt 0.110525 0.203316\nvt 0.110527 0.208583\nvt 0.098562 0.208580\nvt 0.098562 0.208580\nvt 0.098562 0.203306\nvt 0.110525 0.203316\nvt 0.098562 0.203306\nvt 0.098562 0.208580\nvt 0.086597 0.208582\nvt 0.086597 0.208582\nvt 0.086597 0.203315\nvt 0.098562 0.203306\nvt 0.086597 0.203315\nvt 0.086597 0.208582\nvt 0.074631 0.208580\nvt 0.074631 0.208580\nvt 0.074631 0.203306\nvt 0.086597 0.203315\nvt 0.074631 0.203306\nvt 0.074631 0.208580\nvt 0.062661 0.208583\nvt 0.062661 0.208583\nvt 0.062663 0.203317\nvt 0.074631 0.203306\nvt 0.062663 0.203317\nvt 0.062661 0.208583\nvt 0.050688 0.208579\nvt 0.050688 0.208579\nvt 0.050688 0.203303\nvt 0.062663 0.203317\nvt 0.050688 0.203303\nvt 0.050688 0.208579\nvt 0.038709 0.208585\nvt 0.038709 0.208585\nvt 0.038708 0.203320\nvt 0.050688 0.203303\nvt 0.038708 0.203320\nvt 0.038709 0.208585\nvt 0.026721 0.208583\nvt 0.026721 0.208583\nvt 0.026721 0.203312\nvt 0.038708 0.203320\nvt 0.026721 0.203312\nvt 0.026721 0.208583\nvt 0.014699 0.208598\nvt 0.014699 0.208598\nvt 0.014768 0.203374\nvt 0.026721 0.203312\nvt 0.014768 0.203374\nvt 0.014699 0.208598\nvt 0.002450 0.208462\nvt 0.002450 0.208462\nvt 0.003294 0.202984\nvt 0.014768 0.203374\nvt 0.193831 0.202985\nvt 0.194675 0.208464\nvt 0.182427 0.208597\nvt 0.182427 0.208597\nvt 0.182356 0.203372\nvt 0.193831 0.202985\nvt 0.182356 0.203372\nvt 0.182427 0.208597\nvt 0.170404 0.208586\nvt 0.170404 0.208586\nvt 0.170402 0.203317\nvt 0.182356 0.203372\nvt 0.170402 0.203317\nvt 0.170404 0.208586\nvt 0.158415 0.208584\nvt 0.158415 0.208584\nvt 0.158417 0.203318\nvt 0.170402 0.203317\nvt 0.158417 0.203318\nvt 0.158415 0.208584\nvt 0.146435 0.208579\nvt 0.146435 0.208579\nvt 0.146435 0.203303\nvt 0.158417 0.203318\nvt 0.146435 0.203303\nvt 0.146435 0.208579\nvt 0.134461 0.208585\nvt 0.134461 0.208585\nvt 0.134461 0.203319\nvt 0.146435 0.203303\nvt 0.134461 0.203319\nvt 0.134461 0.208585\nvt 0.122492 0.208579\nvt 0.122492 0.208579\nvt 0.122492 0.203303\nvt 0.134461 0.203319\nvt 0.122492 0.203303\nvt 0.122492 0.208579\nvt 0.110527 0.208583\nvt 0.110527 0.208583\nvt 0.110525 0.203316\nvt 0.122492 0.203303\nvt 0.232987 0.224594\nvt 0.232987 0.227449\nvt 0.221362 0.227449\nvt 0.221362 0.227449\nvt 0.221362 0.224592\nvt 0.232987 0.224594\nvt 0.221362 0.224592\nvt 0.221362 0.227449\nvt 0.209737 0.227449\nvt 0.209737 0.227449\nvt 0.209737 0.224595\nvt 0.221362 0.224592\nvt 0.209737 0.224595\nvt 0.209737 0.227449\nvt 0.198118 0.227446\nvt 0.198118 0.227446\nvt 0.198118 0.224588\nvt 0.209737 0.224595\nvt 0.198118 0.224588\nvt 0.198118 0.227446\nvt 0.186511 0.227450\nvt 0.186511 0.227450\nvt 0.186511 0.224597\nvt 0.198118 0.224588\nvt 0.186511 0.224597\nvt 0.186511 0.227450\nvt 0.174921 0.227447\nvt 0.174921 0.227447\nvt 0.174921 0.224589\nvt 0.186511 0.224597\nvt 0.174921 0.224589\nvt 0.174921 0.227447\nvt 0.163351 0.227449\nvt 0.163351 0.227449\nvt 0.163353 0.224596\nvt 0.174921 0.224589\nvt 0.163353 0.224596\nvt 0.163351 0.227449\nvt 0.151801 0.227449\nvt 0.151801 0.227449\nvt 0.151816 0.224594\nvt 0.163353 0.224596\nvt 0.151816 0.224594\nvt 0.151801 0.227449\nvt 0.140262 0.227448\nvt 0.140262 0.227448\nvt 0.140335 0.224601\nvt 0.151816 0.224594\nvt 0.140335 0.224601\nvt 0.140262 0.227448\nvt 0.128668 0.227446\nvt 0.128668 0.227446\nvt 0.129119 0.224530\nvt 0.140335 0.224601\nvt 0.313604 0.224528\nvt 0.314056 0.227445\nvt 0.302461 0.227446\nvt 0.302461 0.227446\nvt 0.302387 0.224599\nvt 0.313604 0.224528\nvt 0.302387 0.224599\nvt 0.302461 0.227446\nvt 0.290921 0.227449\nvt 0.290921 0.227449\nvt 0.290908 0.224594\nvt 0.302387 0.224599\nvt 0.290908 0.224594\nvt 0.290921 0.227449\nvt 0.279373 0.227450\nvt 0.279373 0.227450\nvt 0.279370 0.224598\nvt 0.290908 0.224594\nvt 0.279370 0.224598\nvt 0.279373 0.227450\nvt 0.267803 0.227447\nvt 0.267803 0.227447\nvt 0.267802 0.224589\nvt 0.279370 0.224598\nvt 0.267802 0.224589\nvt 0.267803 0.227447\nvt 0.256212 0.227449\nvt 0.256212 0.227449\nvt 0.256212 0.224595\nvt 0.267802 0.224589\nvt 0.256212 0.224595\nvt 0.256212 0.227449\nvt 0.244605 0.227449\nvt 0.244605 0.227449\nvt 0.244605 0.224592\nvt 0.256212 0.224595\nvt 0.244605 0.224592\nvt 0.244605 0.227449\nvt 0.232987 0.227449\nvt 0.232987 0.227449\nvt 0.232987 0.224594\nvt 0.244605 0.224592\nvt 0.209737 0.231781\nvt 0.209737 0.228927\nvt 0.221362 0.228928\nvt 0.221362 0.228928\nvt 0.221362 0.231784\nvt 0.209737 0.231781\nvt 0.221362 0.231784\nvt 0.221362 0.228928\nvt 0.232987 0.228928\nvt 0.232987 0.228928\nvt 0.232987 0.231781\nvt 0.221362 0.231784\nvt 0.232987 0.231781\nvt 0.232987 0.228928\nvt 0.244605 0.228927\nvt 0.244605 0.228927\nvt 0.244605 0.231784\nvt 0.232987 0.231781\nvt 0.244605 0.231784\nvt 0.244605 0.228927\nvt 0.256212 0.228927\nvt 0.256212 0.228927\nvt 0.256212 0.231781\nvt 0.244605 0.231784\nvt 0.256212 0.231781\nvt 0.256212 0.228927\nvt 0.267803 0.228929\nvt 0.267803 0.228929\nvt 0.267802 0.231787\nvt 0.256212 0.231781\nvt 0.267802 0.231787\nvt 0.267803 0.228929\nvt 0.279373 0.228925\nvt 0.279373 0.228925\nvt 0.279370 0.231777\nvt 0.267802 0.231787\nvt 0.279370 0.231777\nvt 0.279373 0.228925\nvt 0.290922 0.228927\nvt 0.290922 0.228927\nvt 0.290908 0.231782\nvt 0.279370 0.231777\nvt 0.290908 0.231782\nvt 0.290922 0.228927\nvt 0.302461 0.228930\nvt 0.302461 0.228930\nvt 0.302387 0.231777\nvt 0.290908 0.231782\nvt 0.302387 0.231777\nvt 0.302461 0.228930\nvt 0.314056 0.228931\nvt 0.314056 0.228931\nvt 0.313604 0.231848\nvt 0.302387 0.231777\nvt 0.129119 0.231845\nvt 0.128668 0.228930\nvt 0.140262 0.228928\nvt 0.140262 0.228928\nvt 0.140335 0.231774\nvt 0.129119 0.231845\nvt 0.140335 0.231774\nvt 0.140262 0.228928\nvt 0.151801 0.228927\nvt 0.151801 0.228927\nvt 0.151816 0.231782\nvt 0.140335 0.231774\nvt 0.151816 0.231782\nvt 0.151801 0.228927\nvt 0.163350 0.228927\nvt 0.163350 0.228927\nvt 0.163353 0.231780\nvt 0.151816 0.231782\nvt 0.163353 0.231780\nvt 0.163350 0.228927\nvt 0.174921 0.228929\nvt 0.174921 0.228929\nvt 0.174921 0.231787\nvt 0.163353 0.231780\nvt 0.174921 0.231787\nvt 0.174921 0.228929\nvt 0.186511 0.228926\nvt 0.186511 0.228926\nvt 0.186511 0.231779\nvt 0.174921 0.231787\nvt 0.186511 0.231779\nvt 0.186511 0.228926\nvt 0.198118 0.228929\nvt 0.198118 0.228929\nvt 0.198118 0.231787\nvt 0.186511 0.231779\nvt 0.198118 0.231787\nvt 0.198118 0.228929\nvt 0.209737 0.228927\nvt 0.209737 0.228927\nvt 0.209737 0.231781\nvt 0.198118 0.231787\nvt 0.418639 0.250813\nvt 0.453949 0.260510\nvt 0.418639 0.250813\nvt 0.418639 0.250813\nvt 0.874575 0.525116\nvt 0.875915 0.499433\nvt 0.874575 0.525116\nvt 0.871204 0.524885\nvt 0.872550 0.499202\nvt 0.871204 0.524885\nvt 0.955614 0.523821\nvt 0.931440 0.935261\nvt 0.979959 0.968528\nvt 0.981869 0.965762\nvt 0.981869 0.965762\nvt 0.933559 0.932191\nvt 0.931440 0.935261\nvt 0.962857 0.389255\nvt 0.967371 0.389013\nvt 0.967371 0.389013\nvt 0.939508 0.569430\nvt 0.955614 0.523821\nvt 0.939508 0.569430\nvt 0.967371 0.389013\nvt 0.936798 0.866291\nvt 0.902700 0.829788\nvt 0.936798 0.866291\nvt 0.938792 0.634846\nvt 0.939199 0.663715\nvt 0.946380 0.634965\nvt 0.938792 0.634846\nvt 0.755104 0.636844\nvt 0.747807 0.637022\nvt 0.747807 0.637022\nvt 0.899930 0.294593\nvt 0.893135 0.296944\nvt 0.899930 0.294593\nvt 0.899930 0.294593\nvt 0.894845 0.479214\nvt 0.901451 0.482072\nvt 0.894845 0.479214\nvt 0.901451 0.482072\nvt 0.901451 0.482072\nvt 0.713144 0.637690\nvt 0.713748 0.664775\nvt 0.713144 0.637690\nvt 0.978995 0.635756\nvt 0.978542 0.662805\nvt 0.978995 0.635756\nvt 0.799171 0.223455\nvt 0.799989 0.229420\nvt 0.765217 0.229938\nvt 0.765217 0.229938\nvt 0.765524 0.224144\nvt 0.799171 0.223455\nvt 0.596433 0.073408\nvt 0.592283 0.077978\nvt 0.588201 0.077753\nvt 0.588201 0.077753\nvt 0.592367 0.073225\nvt 0.596433 0.073408\nvt 0.592283 0.077978\nvt 0.596433 0.073408\nvt 0.614142 0.073770\nvt 0.614142 0.073770\nvt 0.611316 0.078087\nvt 0.592283 0.077978\nvt 0.611316 0.078087\nvt 0.614142 0.073770\nvt 0.637870 0.073877\nvt 0.637870 0.073877\nvt 0.636084 0.077956\nvt 0.611316 0.078087\nvt 0.636084 0.077956\nvt 0.637870 0.073877\nvt 0.662754 0.074087\nvt 0.662754 0.074087\nvt 0.661402 0.078081\nvt 0.636084 0.077956\nvt 0.661402 0.078081\nvt 0.662754 0.074087\nvt 0.677345 0.073955\nvt 0.677345 0.073955\nvt 0.675804 0.077915\nvt 0.661402 0.078081\nvt 0.689226 0.077737\nvt 0.675804 0.077915\nvt 0.677345 0.073955\nvt 0.677345 0.073955\nvt 0.691012 0.073750\nvt 0.689226 0.077737\nvt 0.706243 0.077571\nvt 0.689226 0.077737\nvt 0.691012 0.073750\nvt 0.691012 0.073750\nvt 0.708301 0.073531\nvt 0.706243 0.077571\nvt 0.676316 0.638919\nvt 0.670072 0.634449\nvt 0.686208 0.625521\nvt 0.686208 0.625521\nvt 0.692329 0.630018\nvt 0.676316 0.638919\nvt 0.670072 0.634449\nvt 0.676316 0.638919\nvt 0.663694 0.645897\nvt 0.663694 0.645897\nvt 0.657353 0.641388\nvt 0.670072 0.634449\nvt 0.669950 0.650271\nvt 0.663694 0.645897\nvt 0.676316 0.638919\nvt 0.676316 0.638919\nvt 0.682307 0.643093\nvt 0.669950 0.650271\nvt 0.682307 0.643093\nvt 0.676316 0.638919\nvt 0.692329 0.630018\nvt 0.692329 0.630018\nvt 0.697974 0.634016\nvt 0.682307 0.643093\nvt 0.657353 0.641388\nvt 0.663694 0.645897\nvt 0.650111 0.653209\nvt 0.650111 0.653209\nvt 0.643717 0.648296\nvt 0.657353 0.641388\nvt 0.643717 0.648296\nvt 0.650111 0.653209\nvt 0.625295 0.666033\nvt 0.625295 0.666033\nvt 0.619157 0.659179\nvt 0.643717 0.648296\nvt 0.625295 0.666033\nvt 0.650111 0.653209\nvt 0.656506 0.658063\nvt 0.656506 0.658063\nvt 0.650111 0.653209\nvt 0.663694 0.645897\nvt 0.663694 0.645897\nvt 0.669950 0.650271\nvt 0.656506 0.658063\nvt 0.656506 0.658063\nvt 0.631306 0.672831\nvt 0.625295 0.666033\nvt 0.669562 0.667394\nvt 0.656506 0.658063\nvt 0.669950 0.650271\nvt 0.669950 0.650271\nvt 0.682225 0.658188\nvt 0.669562 0.667394\nvt 0.682225 0.658188\nvt 0.669950 0.650271\nvt 0.682307 0.643093\nvt 0.682307 0.643093\nvt 0.693281 0.650022\nvt 0.682225 0.658188\nvt 0.707251 0.639810\nvt 0.693281 0.650022\nvt 0.682307 0.643093\nvt 0.682307 0.643093\nvt 0.697974 0.634016\nvt 0.707251 0.639810\nvt 0.642997 0.686250\nvt 0.631306 0.672831\nvt 0.656506 0.658063\nvt 0.656506 0.658063\nvt 0.669562 0.667394\nvt 0.642997 0.686250\nvt 0.619157 0.659179\nvt 0.625295 0.666033\nvt 0.598501 0.679251\nvt 0.598501 0.679251\nvt 0.625295 0.666033\nvt 0.631306 0.672831\nvt 0.598501 0.679251\nvt 0.595094 0.668884\nvt 0.619157 0.659179\nvt 0.595094 0.668884\nvt 0.598501 0.679251\nvt 0.573471 0.691175\nvt 0.573471 0.691175\nvt 0.576896 0.675667\nvt 0.595094 0.668884\nvt 0.576896 0.675667\nvt 0.573471 0.691175\nvt 0.563495 0.694496\nvt 0.563495 0.694496\nvt 0.573270 0.677212\nvt 0.576896 0.675667\nvt 0.573270 0.677212\nvt 0.563495 0.694496\nvt 0.527423 0.690706\nvt 0.527423 0.690706\nvt 0.532891 0.673303\nvt 0.573270 0.677212\nvt 0.518223 0.710598\nvt 0.527423 0.690706\nvt 0.563495 0.694496\nvt 0.563495 0.694496\nvt 0.548942 0.713397\nvt 0.518223 0.710598\nvt 0.573270 0.677212\nvt 0.532891 0.673303\nvt 0.526443 0.646827\nvt 0.526443 0.646827\nvt 0.546060 0.651322\nvt 0.573270 0.677212\nvt 0.526443 0.646827\nvt 0.532891 0.673303\nvt 0.432547 0.646676\nvt 0.432547 0.646676\nvt 0.532891 0.673303\nvt 0.527423 0.690706\nvt 0.432547 0.646676\nvt 0.444824 0.627842\nvt 0.526443 0.646827\nvt 0.499018 0.753863\nvt 0.518223 0.710598\nvt 0.548942 0.713397\nvt 0.548942 0.713397\nvt 0.534341 0.751158\nvt 0.499018 0.753863\nvt 0.527423 0.690706\nvt 0.518223 0.710598\nvt 0.415834 0.673829\nvt 0.415834 0.673829\nvt 0.425928 0.657286\nvt 0.527423 0.690706\nvt 0.527423 0.690706\nvt 0.425928 0.657286\nvt 0.432547 0.646676\nvt 0.380007 0.732713\nvt 0.415834 0.673829\nvt 0.518223 0.710598\nvt 0.518223 0.710598\nvt 0.499018 0.753863\nvt 0.380007 0.732713\nvt 0.548942 0.713397\nvt 0.563495 0.694496\nvt 0.556346 0.712319\nvt 0.556346 0.712319\nvt 0.563495 0.694496\nvt 0.562642 0.710340\nvt 0.562642 0.710340\nvt 0.563495 0.694496\nvt 0.573471 0.691175\nvt 0.573471 0.691175\nvt 0.570490 0.706572\nvt 0.562642 0.710340\nvt 0.570490 0.706572\nvt 0.573471 0.691175\nvt 0.598501 0.679251\nvt 0.598501 0.679251\nvt 0.601505 0.689697\nvt 0.570490 0.706572\nvt 0.565623 0.736519\nvt 0.570490 0.706572\nvt 0.601505 0.689697\nvt 0.601505 0.689697\nvt 0.605785 0.711403\nvt 0.565623 0.736519\nvt 0.631306 0.672831\nvt 0.601505 0.689697\nvt 0.598501 0.679251\nvt 0.605785 0.711403\nvt 0.601505 0.689697\nvt 0.631306 0.672831\nvt 0.631306 0.672831\nvt 0.642997 0.686250\nvt 0.605785 0.711403\nvt 0.570490 0.706572\nvt 0.565623 0.736519\nvt 0.554343 0.743108\nvt 0.554343 0.743108\nvt 0.562642 0.710340\nvt 0.570490 0.706572\nvt 0.562642 0.710340\nvt 0.554343 0.743108\nvt 0.544696 0.747648\nvt 0.544696 0.747648\nvt 0.556346 0.712319\nvt 0.562642 0.710340\nvt 0.548942 0.713397\nvt 0.556346 0.712319\nvt 0.544696 0.747648\nvt 0.544696 0.747648\nvt 0.534341 0.751158\nvt 0.548942 0.713397\nvt 0.641409 0.251703\nvt 0.646151 0.257973\nvt 0.632210 0.256831\nvt 0.632210 0.256831\nvt 0.627641 0.250675\nvt 0.641409 0.251703\nvt 0.646151 0.257973\nvt 0.641409 0.251703\nvt 0.658887 0.252863\nvt 0.658887 0.252863\nvt 0.663777 0.259337\nvt 0.646151 0.257973\nvt 0.627641 0.250675\nvt 0.632210 0.256831\nvt 0.616506 0.255761\nvt 0.616506 0.255761\nvt 0.612312 0.249542\nvt 0.627641 0.250675\nvt 0.612312 0.249542\nvt 0.616506 0.255761\nvt 0.583355 0.254768\nvt 0.583355 0.254768\nvt 0.580107 0.248312\nvt 0.612312 0.249542\nvt 0.580107 0.248312\nvt 0.583355 0.254768\nvt 0.536826 0.254646\nvt 0.536826 0.254646\nvt 0.535674 0.248126\nvt 0.580107 0.248312\nvt 0.535674 0.248126\nvt 0.536826 0.254646\nvt 0.487384 0.256389\nvt 0.487384 0.256389\nvt 0.488520 0.249798\nvt 0.535674 0.248126\nvt 0.488520 0.249798\nvt 0.487384 0.256389\nvt 0.474568 0.257541\nvt 0.474568 0.257541\nvt 0.475470 0.250880\nvt 0.488520 0.249798\nvt 0.475470 0.250880\nvt 0.474568 0.257541\nvt 0.464224 0.258806\nvt 0.464224 0.258806\nvt 0.464864 0.251880\nvt 0.475470 0.250880\nvt 0.464864 0.251880\nvt 0.464224 0.258806\nvt 0.453949 0.260510\nvt 0.453949 0.260510\nvt 0.454014 0.252558\nvt 0.464864 0.251880\nvt 0.751667 0.131878\nvt 0.748110 0.137793\nvt 0.703272 0.136407\nvt 0.703272 0.136407\nvt 0.704738 0.130609\nvt 0.751667 0.131878\nvt 0.704738 0.130609\nvt 0.703272 0.136407\nvt 0.661191 0.136123\nvt 0.661191 0.136123\nvt 0.661025 0.129954\nvt 0.704738 0.130609\nvt 0.661025 0.129954\nvt 0.661191 0.136123\nvt 0.631192 0.136460\nvt 0.631192 0.136460\nvt 0.630034 0.130105\nvt 0.661025 0.129954\nvt 0.630034 0.130105\nvt 0.631192 0.136460\nvt 0.616967 0.136633\nvt 0.616967 0.136633\nvt 0.615994 0.131251\nvt 0.630034 0.130105\nvt 0.615994 0.131251\nvt 0.616967 0.136633\nvt 0.604272 0.136751\nvt 0.604272 0.136751\nvt 0.603738 0.133660\nvt 0.615994 0.131251\nvt 0.588201 0.136880\nvt 0.603738 0.133660\nvt 0.604272 0.136751\nvt 0.748110 0.137793\nvt 0.751667 0.131878\nvt 0.763501 0.132039\nvt 0.763501 0.132039\nvt 0.759824 0.138128\nvt 0.748110 0.137793\nvt 0.759824 0.138128\nvt 0.763501 0.132039\nvt 0.773204 0.132113\nvt 0.773204 0.132113\nvt 0.769353 0.138370\nvt 0.759824 0.138128\nvt 0.769353 0.138370\nvt 0.773204 0.132113\nvt 0.782920 0.132151\nvt 0.782920 0.132151\nvt 0.778926 0.138613\nvt 0.769353 0.138370\nvt 0.760444 0.168013\nvt 0.741750 0.168371\nvt 0.742434 0.163055\nvt 0.742434 0.163055\nvt 0.762235 0.162473\nvt 0.760444 0.168013\nvt 0.742434 0.163055\nvt 0.741750 0.168371\nvt 0.664228 0.169506\nvt 0.664228 0.169506\nvt 0.665918 0.163886\nvt 0.742434 0.163055\nvt 0.558098 0.177380\nvt 0.556404 0.172298\nvt 0.634471 0.172422\nvt 0.634471 0.172422\nvt 0.634449 0.178058\nvt 0.558098 0.177380\nvt 0.634449 0.178058\nvt 0.634471 0.172422\nvt 0.654763 0.170117\nvt 0.654763 0.170117\nvt 0.654227 0.178409\nvt 0.634449 0.178058\nvt 0.850894 0.069225\nvt 0.869172 0.095514\nvt 0.863698 0.096235\nvt 0.863698 0.096235\nvt 0.842622 0.070008\nvt 0.850894 0.069225\nvt 0.741498 0.229366\nvt 0.739201 0.224525\nvt 0.743262 0.224560\nvt 0.743262 0.224560\nvt 0.745646 0.229540\nvt 0.741498 0.229366\nvt 0.739201 0.224525\nvt 0.741498 0.229366\nvt 0.722064 0.229029\nvt 0.722064 0.229029\nvt 0.721539 0.224694\nvt 0.739201 0.224525\nvt 0.721539 0.224694\nvt 0.722064 0.229029\nvt 0.697325 0.229007\nvt 0.697325 0.229007\nvt 0.697887 0.224853\nvt 0.721539 0.224694\nvt 0.697887 0.224853\nvt 0.697325 0.229007\nvt 0.672379 0.229110\nvt 0.672379 0.229110\nvt 0.673073 0.224958\nvt 0.697887 0.224853\nvt 0.673073 0.224958\nvt 0.672379 0.229110\nvt 0.657886 0.229067\nvt 0.657886 0.229067\nvt 0.658541 0.224909\nvt 0.673073 0.224958\nvt 0.658541 0.224909\nvt 0.657886 0.229067\nvt 0.644238 0.228990\nvt 0.644238 0.228990\nvt 0.644883 0.224830\nvt 0.658541 0.224909\nvt 0.644883 0.224830\nvt 0.644238 0.228990\nvt 0.626950 0.228916\nvt 0.626950 0.228916\nvt 0.627592 0.224756\nvt 0.644883 0.224830\nvt 0.541295 0.182661\nvt 0.543890 0.188002\nvt 0.538549 0.187566\nvt 0.561968 0.181765\nvt 0.543890 0.188002\nvt 0.541295 0.182661\nvt 0.561968 0.181765\nvt 0.556170 0.185987\nvt 0.543890 0.188002\nvt 0.556170 0.185987\nvt 0.546648 0.188233\nvt 0.543890 0.188002\nvt 0.556170 0.185987\nvt 0.561968 0.181765\nvt 0.573470 0.181672\nvt 0.573470 0.181672\nvt 0.577953 0.185506\nvt 0.556170 0.185987\nvt 0.605582 0.185626\nvt 0.577953 0.185506\nvt 0.573470 0.181672\nvt 0.573470 0.181672\nvt 0.591309 0.182138\nvt 0.605582 0.185626\nvt 0.654763 0.185014\nvt 0.605582 0.185626\nvt 0.591309 0.182138\nvt 0.417354 0.257364\nvt 0.418639 0.250813\nvt 0.454014 0.252558\nvt 0.454014 0.252558\nvt 0.453949 0.260510\nvt 0.417354 0.257364\nvt 0.418639 0.250813\nvt 0.417354 0.257364\nvt 0.295825 0.257300\nvt 0.295825 0.257300\nvt 0.296478 0.250400\nvt 0.418639 0.250813\nvt 0.918767 0.513788\nvt 0.911745 0.537564\nvt 0.874575 0.525116\nvt 0.874575 0.525116\nvt 0.875915 0.499433\nvt 0.918767 0.513788\nvt 0.872550 0.499202\nvt 0.875915 0.499433\nvt 0.874575 0.525116\nvt 0.874575 0.525116\nvt 0.871204 0.524885\nvt 0.872550 0.499202\nvt 0.872550 0.499202\nvt 0.871204 0.524885\nvt 0.832725 0.532360\nvt 0.832725 0.532360\nvt 0.828188 0.507822\nvt 0.872550 0.499202\nvt 0.956077 0.861445\nvt 0.997508 0.923353\nvt 0.981869 0.965762\nvt 0.981869 0.965762\nvt 0.933559 0.932191\nvt 0.956077 0.861445\nvt 0.931440 0.935261\nvt 0.979959 0.968528\nvt 0.945852 0.998189\nvt 0.945852 0.998189\nvt 0.873275 0.981404\nvt 0.931440 0.935261\nvt 0.939508 0.569430\nvt 0.955614 0.523821\nvt 0.994845 0.583041\nvt 0.994845 0.583041\nvt 0.987695 0.604345\nvt 0.939508 0.569430\nvt 0.987695 0.604345\nvt 0.994845 0.583041\nvt 0.999976 0.583056\nvt 0.999976 0.583056\nvt 0.991938 0.606747\nvt 0.987695 0.604345\nvt 0.957160 0.520360\nvt 0.999976 0.583056\nvt 0.994845 0.583041\nvt 0.994845 0.583041\nvt 0.955614 0.523821\nvt 0.957160 0.520360\nvt 0.936798 0.866291\nvt 0.906634 0.916563\nvt 0.891214 0.900199\nvt 0.891214 0.900199\nvt 0.902700 0.829788\nvt 0.936798 0.866291\nvt 0.891214 0.900199\nvt 0.906634 0.916563\nvt 0.903720 0.920425\nvt 0.903720 0.920425\nvt 0.886553 0.902313\nvt 0.891214 0.900199\nvt 0.902700 0.829788\nvt 0.891214 0.900199\nvt 0.886553 0.902313\nvt 0.886553 0.902313\nvt 0.900018 0.827257\nvt 0.902700 0.829788\nvt 0.931440 0.935261\nvt 0.933559 0.932191\nvt 0.981869 0.965762\nvt 0.981869 0.965762\nvt 0.979959 0.968528\nvt 0.931440 0.935261\nvt 0.968023 0.391504\nvt 0.948476 0.452174\nvt 0.943918 0.449142\nvt 0.943918 0.449142\nvt 0.963402 0.391371\nvt 0.968023 0.391504\nvt 0.968023 0.391504\nvt 0.963402 0.391371\nvt 0.962857 0.389255\nvt 0.962857 0.389255\nvt 0.967371 0.389013\nvt 0.968023 0.391504\nvt 0.967371 0.389013\nvt 0.962857 0.389255\nvt 0.941704 0.331525\nvt 0.941704 0.331525\nvt 0.946282 0.328274\nvt 0.967371 0.389013\nvt 0.943918 0.449142\nvt 0.948476 0.452174\nvt 0.945517 0.457058\nvt 0.945517 0.457058\nvt 0.940689 0.454353\nvt 0.943918 0.449142\nvt 0.946282 0.328274\nvt 0.941704 0.331525\nvt 0.936851 0.325697\nvt 0.936851 0.325697\nvt 0.941785 0.323003\nvt 0.946282 0.328274\nvt 0.939508 0.569430\nvt 0.929924 0.568909\nvt 0.950289 0.524855\nvt 0.950289 0.524855\nvt 0.955614 0.523821\nvt 0.939508 0.569430\nvt 0.902640 0.552536\nvt 0.950289 0.524855\nvt 0.929924 0.568909\nvt 0.929924 0.568909\nvt 0.890386 0.573493\nvt 0.902640 0.552536\nvt 0.572630 0.016679\nvt 0.572986 0.008910\nvt 0.595720 0.040401\nvt 0.595720 0.040401\nvt 0.586257 0.045178\nvt 0.572630 0.016679\nvt 0.586257 0.045178\nvt 0.595720 0.040401\nvt 0.573281 0.095957\nvt 0.573281 0.095957\nvt 0.572527 0.085245\nvt 0.586257 0.045178\nvt 0.572527 0.085245\nvt 0.573281 0.095957\nvt 0.571008 0.097431\nvt 0.571008 0.097431\nvt 0.561536 0.092374\nvt 0.572527 0.085245\nvt 0.561536 0.092374\nvt 0.571008 0.097431\nvt 0.513544 0.096644\nvt 0.513544 0.096644\nvt 0.519362 0.088567\nvt 0.561536 0.092374\nvt 0.519362 0.088567\nvt 0.513544 0.096644\nvt 0.491676 0.061649\nvt 0.491676 0.061649\nvt 0.498912 0.064493\nvt 0.519362 0.088567\nvt 0.572986 0.008910\nvt 0.572630 0.016679\nvt 0.560089 0.011472\nvt 0.560089 0.011472\nvt 0.567889 0.006649\nvt 0.572986 0.008910\nvt 0.567889 0.006649\nvt 0.560089 0.011472\nvt 0.527077 0.014358\nvt 0.527077 0.014358\nvt 0.519415 0.011001\nvt 0.567889 0.006649\nvt 0.519415 0.011001\nvt 0.527077 0.014358\nvt 0.515640 0.021671\nvt 0.515640 0.021671\nvt 0.515566 0.013357\nvt 0.519415 0.011001\nvt 0.515566 0.013357\nvt 0.515640 0.021671\nvt 0.499292 0.050888\nvt 0.499292 0.050888\nvt 0.491692 0.056073\nvt 0.515566 0.013357\nvt 0.491692 0.056073\nvt 0.499292 0.050888\nvt 0.498912 0.064493\nvt 0.498912 0.064493\nvt 0.491676 0.061649\nvt 0.491692 0.056073\nvt 0.901451 0.482072\nvt 0.894845 0.479214\nvt 0.940689 0.454353\nvt 0.940689 0.454353\nvt 0.945517 0.457058\nvt 0.901451 0.482072\nvt 0.968023 0.391504\nvt 0.996518 0.398338\nvt 0.983136 0.493855\nvt 0.983136 0.493855\nvt 0.948476 0.452174\nvt 0.968023 0.391504\nvt 0.941785 0.323003\nvt 0.936851 0.325697\nvt 0.893135 0.296944\nvt 0.893135 0.296944\nvt 0.899930 0.294593\nvt 0.941785 0.323003\nvt 0.946282 0.328274\nvt 0.981200 0.286470\nvt 0.995655 0.381645\nvt 0.995655 0.381645\nvt 0.967371 0.389013\nvt 0.946282 0.328274\nvt 0.941785 0.323003\nvt 0.976011 0.279853\nvt 0.981200 0.286470\nvt 0.981200 0.286470\nvt 0.946282 0.328274\nvt 0.941785 0.323003\nvt 0.936798 0.866291\nvt 0.902700 0.829788\nvt 0.907976 0.828344\nvt 0.907976 0.828344\nvt 0.945664 0.861042\nvt 0.936798 0.866291\nvt 0.945664 0.861042\nvt 0.907976 0.828344\nvt 0.964160 0.830619\nvt 0.964160 0.830619\nvt 0.984664 0.844006\nvt 0.945664 0.861042\nvt 0.945517 0.457058\nvt 0.975797 0.502878\nvt 0.947423 0.518344\nvt 0.947423 0.518344\nvt 0.901451 0.482072\nvt 0.945517 0.457058\nvt 0.946900 0.260924\nvt 0.975692 0.279621\nvt 0.941785 0.323003\nvt 0.941785 0.323003\nvt 0.899930 0.294593\nvt 0.946900 0.260924\nvt 0.995809 0.384092\nvt 0.996664 0.397901\nvt 0.968023 0.391504\nvt 0.968023 0.391504\nvt 0.967371 0.389013\nvt 0.995809 0.384092\nvt 0.946380 0.634965\nvt 0.978995 0.635756\nvt 0.978542 0.662805\nvt 0.978542 0.662805\nvt 0.945901 0.662304\nvt 0.946380 0.634965\nvt 0.713144 0.637690\nvt 0.747807 0.637022\nvt 0.748407 0.664323\nvt 0.748407 0.664323\nvt 0.713748 0.664775\nvt 0.713144 0.637690\nvt 0.938792 0.634846\nvt 0.939199 0.663715\nvt 0.850357 0.699177\nvt 0.850357 0.699177\nvt 0.850180 0.635224\nvt 0.938792 0.634846\nvt 0.850180 0.635224\nvt 0.850357 0.699177\nvt 0.844960 0.699350\nvt 0.844960 0.699350\nvt 0.844100 0.635364\nvt 0.850180 0.635224\nvt 0.844100 0.635364\nvt 0.844960 0.699350\nvt 0.755190 0.665720\nvt 0.755190 0.665720\nvt 0.755104 0.636844\nvt 0.844100 0.635364\nvt 0.939199 0.663715\nvt 0.938792 0.634846\nvt 0.946380 0.634965\nvt 0.946380 0.634965\nvt 0.945901 0.662304\nvt 0.939199 0.663715\nvt 0.755104 0.636844\nvt 0.755190 0.665720\nvt 0.748407 0.664323\nvt 0.748407 0.664323\nvt 0.747807 0.637022\nvt 0.755104 0.636844\nvt 0.948476 0.452174\nvt 0.982840 0.494280\nvt 0.976485 0.502359\nvt 0.976485 0.502359\nvt 0.945517 0.457058\nvt 0.948476 0.452174\nvt 0.894282 0.293244\nvt 0.899225 0.290982\nvt 0.899930 0.294593\nvt 0.899930 0.294593\nvt 0.893135 0.296944\nvt 0.894282 0.293244\nvt 0.894845 0.479214\nvt 0.901451 0.482072\nvt 0.900391 0.485573\nvt 0.900391 0.485573\nvt 0.895610 0.482902\nvt 0.894845 0.479214\nvt 0.899225 0.290982\nvt 0.942693 0.257991\nvt 0.946665 0.260604\nvt 0.946665 0.260604\nvt 0.899930 0.294593\nvt 0.899225 0.290982\nvt 0.709178 0.663967\nvt 0.708904 0.639587\nvt 0.713144 0.637690\nvt 0.713144 0.637690\nvt 0.713748 0.664775\nvt 0.709178 0.663967\nvt 0.901451 0.482072\nvt 0.947166 0.518650\nvt 0.943026 0.520977\nvt 0.943026 0.520977\nvt 0.900391 0.485573\nvt 0.901451 0.482072\nvt 0.983347 0.637523\nvt 0.983224 0.662024\nvt 0.978542 0.662805\nvt 0.978542 0.662805\nvt 0.978995 0.635756\nvt 0.983347 0.637523\nvt 0.943088 0.803270\nvt 0.986613 0.765212\nvt 0.943088 0.803270\nvt 0.666820 0.518960\nvt 0.605202 0.519184\nvt 0.605202 0.519184\nvt 0.817552 0.514427\nvt 0.756606 0.514890\nvt 0.756606 0.514890\nvt 0.760946 0.534125\nvt 0.818751 0.534605\nvt 0.760946 0.534125\nvt 0.790166 0.719944\nvt 0.729523 0.691592\nvt 0.790166 0.719944\nvt 0.826362 0.545921\nvt 0.893280 0.546176\nvt 0.826362 0.545921\nvt 0.664278 0.521623\nvt 0.606352 0.522527\nvt 0.606352 0.522527\nvt 0.816436 0.517781\nvt 0.759208 0.517549\nvt 0.759208 0.517549\nvt 0.943088 0.803270\nvt 0.986613 0.765212\nvt 0.994945 0.779668\nvt 0.994945 0.779668\nvt 0.951421 0.818337\nvt 0.943088 0.803270\nvt 0.982007 0.760664\nvt 0.986613 0.765212\nvt 0.943088 0.803270\nvt 0.943088 0.803270\nvt 0.938482 0.798721\nvt 0.982007 0.760664\nvt 0.954276 0.820662\nvt 0.951421 0.818337\nvt 0.994945 0.779668\nvt 0.994945 0.779668\nvt 0.996262 0.783404\nvt 0.954276 0.820662\nvt 0.605032 0.507868\nvt 0.679514 0.507329\nvt 0.666820 0.518960\nvt 0.666820 0.518960\nvt 0.605202 0.519184\nvt 0.605032 0.507868\nvt 0.680393 0.500915\nvt 0.679514 0.507329\nvt 0.605032 0.507868\nvt 0.605032 0.507868\nvt 0.605758 0.500783\nvt 0.680393 0.500915\nvt 0.605202 0.519184\nvt 0.666820 0.518960\nvt 0.664278 0.521623\nvt 0.664278 0.521623\nvt 0.606352 0.522527\nvt 0.605202 0.519184\nvt 0.743244 0.503400\nvt 0.817586 0.503104\nvt 0.817552 0.514427\nvt 0.817552 0.514427\nvt 0.756606 0.514890\nvt 0.743244 0.503400\nvt 0.816686 0.496041\nvt 0.817586 0.503104\nvt 0.743244 0.503400\nvt 0.743244 0.503400\nvt 0.742186 0.497015\nvt 0.816686 0.496041\nvt 0.756606 0.514890\nvt 0.817552 0.514427\nvt 0.816436 0.517781\nvt 0.816436 0.517781\nvt 0.759208 0.517549\nvt 0.756606 0.514890\nvt 0.760946 0.534125\nvt 0.818751 0.534605\nvt 0.822261 0.551876\nvt 0.822261 0.551876\nvt 0.764084 0.550513\nvt 0.760946 0.534125\nvt 0.819284 0.528154\nvt 0.818751 0.534605\nvt 0.760946 0.534125\nvt 0.760946 0.534125\nvt 0.761479 0.527674\nvt 0.819284 0.528154\nvt 0.765513 0.554204\nvt 0.764084 0.550513\nvt 0.822261 0.551876\nvt 0.822261 0.551876\nvt 0.821632 0.555546\nvt 0.765513 0.554204\nvt 0.738313 0.678719\nvt 0.787697 0.703439\nvt 0.790166 0.719944\nvt 0.790166 0.719944\nvt 0.729523 0.691592\nvt 0.738313 0.678719\nvt 0.728147 0.697918\nvt 0.729523 0.691592\nvt 0.790166 0.719944\nvt 0.790166 0.719944\nvt 0.788791 0.726270\nvt 0.728147 0.697918\nvt 0.787697 0.703439\nvt 0.738313 0.678719\nvt 0.740755 0.676012\nvt 0.740755 0.676012\nvt 0.787183 0.699520\nvt 0.787697 0.703439\nvt 0.884003 0.560047\nvt 0.828793 0.561318\nvt 0.826362 0.545921\nvt 0.826362 0.545921\nvt 0.893280 0.546176\nvt 0.884003 0.560047\nvt 0.894849 0.539895\nvt 0.893280 0.546176\nvt 0.826362 0.545921\nvt 0.826362 0.545921\nvt 0.827932 0.539641\nvt 0.894849 0.539895\nvt 0.829847 0.564809\nvt 0.828793 0.561318\nvt 0.884003 0.560047\nvt 0.884003 0.560047\nvt 0.881840 0.563353\nvt 0.829847 0.564809\nvt 0.817281 0.562841\nvt 0.769596 0.561671\nvt 0.765513 0.554204\nvt 0.765513 0.554204\nvt 0.821632 0.555546\nvt 0.817281 0.562841\nvt 0.877675 0.570774\nvt 0.833650 0.571876\nvt 0.829847 0.564809\nvt 0.829847 0.564809\nvt 0.881840 0.563353\nvt 0.877675 0.570774\nvt 0.747213 0.671249\nvt 0.786691 0.691157\nvt 0.787183 0.699520\nvt 0.787183 0.699520\nvt 0.740755 0.676012\nvt 0.747213 0.671249\nvt 0.997968 0.791607\nvt 0.962191 0.823190\nvt 0.954276 0.820662\nvt 0.954276 0.820662\nvt 0.996262 0.783404\nvt 0.997968 0.791607\nvt 0.660316 0.528921\nvt 0.610973 0.529702\nvt 0.606352 0.522527\nvt 0.606352 0.522527\nvt 0.664278 0.521623\nvt 0.660316 0.528921\nvt 0.811888 0.524998\nvt 0.763333 0.524969\nvt 0.759208 0.517549\nvt 0.759208 0.517549\nvt 0.816436 0.517781\nvt 0.811888 0.524998\nvt 0.304404 0.963775\nvt 0.345881 0.965325\nvt 0.345881 0.965325\nvt 0.201428 0.332534\nvt 0.211622 0.332399\nvt 0.211622 0.332399\nvt 0.201428 0.332534\nvt 0.201428 0.332534\nvt 0.181890 0.332151\nvt 0.181890 0.332151\nvt 0.181890 0.332151\nvt 0.171069 0.332312\nvt 0.181890 0.332151\nvt 0.683604 0.310710\nvt 0.607541 0.309374\nvt 0.607541 0.309374\nvt 0.554006 0.106010\nvt 0.523128 0.106678\nvt 0.554006 0.106010\nvt 0.554006 0.106010\nvt 0.554006 0.106010\nvt 0.563459 0.105795\nvt 0.404020 0.384012\nvt 0.393516 0.381398\nvt 0.404020 0.384012\nvt 0.413980 0.387204\nvt 0.404020 0.384012\nvt 0.413980 0.387204\nvt 0.413980 0.387204\nvt 0.413980 0.387204\nvt 0.426361 0.381210\nvt 0.413980 0.387204\nvt 0.426361 0.381210\nvt 0.393516 0.381398\nvt 0.404981 0.376559\nvt 0.393516 0.381398\nvt 0.391353 0.382655\nvt 0.393516 0.381398\nvt 0.385603 0.379636\nvt 0.385603 0.379636\nvt 0.391353 0.382655\nvt 0.755879 0.253685\nvt 0.763209 0.253791\nvt 0.763209 0.253791\nvt 0.763209 0.253791\nvt 0.771711 0.253507\nvt 0.771711 0.253507\nvt 0.532294 0.144610\nvt 0.532294 0.144610\nvt 0.545269 0.145442\nvt 0.532294 0.144610\nvt 0.545269 0.145442\nvt 0.660704 0.194537\nvt 0.673278 0.194509\nvt 0.673278 0.194509\nvt 0.830865 0.134262\nvt 0.794035 0.133132\nvt 0.830865 0.134262\nvt 0.618291 0.233290\nvt 0.614333 0.233024\nvt 0.618291 0.233290\nvt 0.614333 0.233024\nvt 0.614333 0.233024\nvt 0.607125 0.232542\nvt 0.538512 0.232206\nvt 0.527674 0.233488\nvt 0.538512 0.232206\nvt 0.556104 0.230835\nvt 0.538512 0.232206\nvt 0.527674 0.233488\nvt 0.527674 0.233488\nvt 0.520129 0.234893\nvt 0.575817 0.230466\nvt 0.556104 0.230835\nvt 0.556104 0.230835\nvt 0.575817 0.230466\nvt 0.593426 0.231607\nvt 0.575817 0.230466\nvt 0.593426 0.231607\nvt 0.607125 0.232542\nvt 0.593426 0.231607\nvt 0.607125 0.232542\nvt 0.694830 0.317160\nvt 0.692407 0.317231\nvt 0.694830 0.317160\nvt 0.748953 0.190598\nvt 0.748948 0.198359\nvt 0.748948 0.198359\nvt 0.896377 0.406273\nvt 0.902192 0.406424\nvt 0.883490 0.436764\nvt 0.883490 0.436764\nvt 0.876884 0.437894\nvt 0.896377 0.406273\nvt 0.903719 0.330021\nvt 0.902192 0.406424\nvt 0.896377 0.406273\nvt 0.896377 0.406273\nvt 0.897574 0.329009\nvt 0.903719 0.330021\nvt 0.301747 0.976376\nvt 0.304404 0.963775\nvt 0.345881 0.965325\nvt 0.345881 0.965325\nvt 0.342920 0.978526\nvt 0.301747 0.976376\nvt 0.345881 0.965325\nvt 0.304404 0.963775\nvt 0.303144 0.960383\nvt 0.303144 0.960383\nvt 0.344880 0.961969\nvt 0.345881 0.965325\nvt 0.916652 0.322398\nvt 0.915886 0.333779\nvt 0.910154 0.332589\nvt 0.910154 0.332589\nvt 0.910289 0.320293\nvt 0.916652 0.322398\nvt 0.910154 0.332589\nvt 0.915886 0.333779\nvt 0.914574 0.355579\nvt 0.914574 0.355579\nvt 0.909608 0.355885\nvt 0.910154 0.332589\nvt 0.909608 0.355885\nvt 0.914574 0.355579\nvt 0.914049 0.367617\nvt 0.914049 0.367617\nvt 0.909333 0.369366\nvt 0.909608 0.355885\nvt 0.909333 0.369366\nvt 0.914049 0.367617\nvt 0.913944 0.383102\nvt 0.913944 0.383102\nvt 0.909100 0.384535\nvt 0.909333 0.369366\nvt 0.909100 0.384535\nvt 0.913944 0.383102\nvt 0.913785 0.397725\nvt 0.913785 0.397725\nvt 0.908983 0.397420\nvt 0.909100 0.384535\nvt 0.909184 0.411512\nvt 0.908983 0.397420\nvt 0.913785 0.397725\nvt 0.913785 0.397725\nvt 0.913992 0.409902\nvt 0.909184 0.411512\nvt 0.909184 0.411512\nvt 0.913992 0.409902\nvt 0.914766 0.444438\nvt 0.914766 0.444438\nvt 0.910043 0.446373\nvt 0.909184 0.411512\nvt 0.919040 0.384257\nvt 0.913944 0.383102\nvt 0.914049 0.367617\nvt 0.914049 0.367617\nvt 0.918441 0.374132\nvt 0.919040 0.384257\nvt 0.913944 0.383102\nvt 0.919040 0.384257\nvt 0.918365 0.393986\nvt 0.918365 0.393986\nvt 0.913785 0.397725\nvt 0.913944 0.383102\nvt 0.201428 0.332534\nvt 0.211622 0.332399\nvt 0.204916 0.339997\nvt 0.204916 0.339997\nvt 0.195855 0.339370\nvt 0.201428 0.332534\nvt 0.211622 0.332399\nvt 0.201428 0.332534\nvt 0.202900 0.330294\nvt 0.202900 0.330294\nvt 0.213241 0.330089\nvt 0.211622 0.332399\nvt 0.183094 0.330028\nvt 0.202900 0.330294\nvt 0.201428 0.332534\nvt 0.201428 0.332534\nvt 0.181890 0.332151\nvt 0.183094 0.330028\nvt 0.181890 0.332151\nvt 0.201428 0.332534\nvt 0.195855 0.339370\nvt 0.183094 0.330028\nvt 0.181890 0.332151\nvt 0.171069 0.332312\nvt 0.171069 0.332312\nvt 0.172155 0.330186\nvt 0.183094 0.330028\nvt 0.195855 0.339370\nvt 0.174929 0.339485\nvt 0.181890 0.332151\nvt 0.162683 0.339841\nvt 0.171069 0.332312\nvt 0.181890 0.332151\nvt 0.181890 0.332151\nvt 0.174929 0.339485\nvt 0.162683 0.339841\nvt 0.610503 0.299686\nvt 0.686789 0.299500\nvt 0.683604 0.310710\nvt 0.683604 0.310710\nvt 0.607541 0.309374\nvt 0.610503 0.299686\nvt 0.607541 0.309374\nvt 0.683604 0.310710\nvt 0.683176 0.313679\nvt 0.683176 0.313679\nvt 0.606735 0.312280\nvt 0.607541 0.309374\nvt 0.523816 0.104336\nvt 0.555237 0.103906\nvt 0.554006 0.106010\nvt 0.554006 0.106010\nvt 0.523128 0.106678\nvt 0.523816 0.104336\nvt 0.518708 0.113902\nvt 0.523128 0.106678\nvt 0.554006 0.106010\nvt 0.554006 0.106010\nvt 0.547603 0.114080\nvt 0.518708 0.113902\nvt 0.553319 0.114192\nvt 0.547603 0.114080\nvt 0.554006 0.106010\nvt 0.554006 0.106010\nvt 0.563459 0.105795\nvt 0.553319 0.114192\nvt 0.554006 0.106010\nvt 0.555237 0.103906\nvt 0.566317 0.103796\nvt 0.566317 0.103796\nvt 0.563459 0.105795\nvt 0.554006 0.106010\nvt 0.426361 0.381210\nvt 0.413980 0.387204\nvt 0.404020 0.384012\nvt 0.404020 0.384012\nvt 0.415912 0.378463\nvt 0.426361 0.381210\nvt 0.415912 0.378463\nvt 0.404020 0.384012\nvt 0.393516 0.381398\nvt 0.393516 0.381398\nvt 0.404981 0.376559\nvt 0.415912 0.378463\nvt 0.391353 0.382655\nvt 0.393516 0.381398\nvt 0.404020 0.384012\nvt 0.404020 0.384012\nvt 0.401359 0.385407\nvt 0.391353 0.382655\nvt 0.401359 0.385407\nvt 0.404020 0.384012\nvt 0.413980 0.387204\nvt 0.413980 0.387204\nvt 0.410729 0.388718\nvt 0.401359 0.385407\nvt 0.413898 0.394010\nvt 0.410729 0.388718\nvt 0.413980 0.387204\nvt 0.413980 0.387204\nvt 0.417389 0.392241\nvt 0.413898 0.394010\nvt 0.417389 0.392241\nvt 0.413980 0.387204\nvt 0.426361 0.381210\nvt 0.426361 0.381210\nvt 0.430871 0.385831\nvt 0.417389 0.392241\nvt 0.397166 0.374514\nvt 0.404981 0.376559\nvt 0.393516 0.381398\nvt 0.393516 0.381398\nvt 0.385603 0.379636\nvt 0.397166 0.374514\nvt 0.385603 0.379636\nvt 0.393516 0.381398\nvt 0.391353 0.382655\nvt 0.391353 0.382655\nvt 0.383171 0.380211\nvt 0.385603 0.379636\nvt 0.853979 0.289082\nvt 0.853410 0.322661\nvt 0.850319 0.322287\nvt 0.850319 0.322287\nvt 0.850676 0.288658\nvt 0.853979 0.289082\nvt 0.928342 0.414603\nvt 0.927953 0.401863\nvt 0.930079 0.403458\nvt 0.930079 0.403458\nvt 0.930605 0.416215\nvt 0.928342 0.414603\nvt 0.928342 0.414603\nvt 0.930605 0.416215\nvt 0.930935 0.439233\nvt 0.930935 0.439233\nvt 0.928500 0.437285\nvt 0.928342 0.414603\nvt 0.929657 0.389483\nvt 0.930079 0.403458\nvt 0.927953 0.401863\nvt 0.927953 0.401863\nvt 0.927689 0.387822\nvt 0.929657 0.389483\nvt 0.929815 0.377763\nvt 0.929657 0.389483\nvt 0.927689 0.387822\nvt 0.927689 0.387822\nvt 0.928022 0.375982\nvt 0.929815 0.377763\nvt 0.927987 0.449378\nvt 0.928500 0.437285\nvt 0.930935 0.439233\nvt 0.930935 0.439233\nvt 0.930513 0.451552\nvt 0.927987 0.449378\nvt 0.930137 0.364915\nvt 0.929815 0.377763\nvt 0.928022 0.375982\nvt 0.928022 0.375982\nvt 0.928431 0.363097\nvt 0.930137 0.364915\nvt 0.930137 0.364915\nvt 0.928431 0.363097\nvt 0.927657 0.331311\nvt 0.927657 0.331311\nvt 0.929334 0.333057\nvt 0.930137 0.364915\nvt 0.696483 0.024066\nvt 0.740397 0.024262\nvt 0.747821 0.027043\nvt 0.747821 0.027043\nvt 0.695809 0.026499\nvt 0.696483 0.024066\nvt 0.754791 0.027086\nvt 0.747821 0.027043\nvt 0.740397 0.024262\nvt 0.740397 0.024262\nvt 0.749978 0.024508\nvt 0.754791 0.027086\nvt 0.759554 0.027219\nvt 0.754791 0.027086\nvt 0.749978 0.024508\nvt 0.749978 0.024508\nvt 0.758721 0.024715\nvt 0.759554 0.027219\nvt 0.766681 0.027469\nvt 0.759554 0.027219\nvt 0.758721 0.024715\nvt 0.758721 0.024715\nvt 0.767198 0.024901\nvt 0.766681 0.027469\nvt 0.766681 0.027469\nvt 0.767198 0.024901\nvt 0.775560 0.025009\nvt 0.775560 0.025009\nvt 0.775091 0.027997\nvt 0.766681 0.027469\nvt 0.841378 0.121736\nvt 0.838310 0.123122\nvt 0.817564 0.096483\nvt 0.817564 0.096483\nvt 0.820861 0.094992\nvt 0.841378 0.121736\nvt 0.619757 0.196063\nvt 0.607384 0.195660\nvt 0.609684 0.193045\nvt 0.609684 0.193045\nvt 0.622092 0.193412\nvt 0.619757 0.196063\nvt 0.619757 0.196063\nvt 0.622092 0.193412\nvt 0.643486 0.193754\nvt 0.643486 0.193754\nvt 0.641187 0.196530\nvt 0.619757 0.196063\nvt 0.595776 0.194057\nvt 0.609684 0.193045\nvt 0.607384 0.195660\nvt 0.607384 0.195660\nvt 0.593461 0.196568\nvt 0.595776 0.194057\nvt 0.584115 0.194109\nvt 0.595776 0.194057\nvt 0.593461 0.196568\nvt 0.593461 0.196568\nvt 0.581430 0.196085\nvt 0.584115 0.194109\nvt 0.652439 0.197377\nvt 0.641187 0.196530\nvt 0.643486 0.193754\nvt 0.643486 0.193754\nvt 0.654763 0.194557\nvt 0.652439 0.197377\nvt 0.571394 0.191496\nvt 0.584115 0.194109\nvt 0.581430 0.196085\nvt 0.581430 0.196085\nvt 0.568770 0.193475\nvt 0.571394 0.191496\nvt 0.571394 0.191496\nvt 0.568770 0.193475\nvt 0.537171 0.197813\nvt 0.537171 0.197813\nvt 0.539442 0.195504\nvt 0.571394 0.191496\nvt 0.867747 0.316000\nvt 0.870830 0.312023\nvt 0.873753 0.382315\nvt 0.873753 0.382315\nvt 0.870462 0.381588\nvt 0.867747 0.316000\nvt 0.870801 0.308574\nvt 0.870830 0.312023\nvt 0.867747 0.316000\nvt 0.867747 0.316000\nvt 0.867524 0.307938\nvt 0.870801 0.308574\nvt 0.870801 0.308574\nvt 0.867524 0.307938\nvt 0.867562 0.303000\nvt 0.867562 0.303000\nvt 0.870844 0.305131\nvt 0.870801 0.308574\nvt 0.873851 0.309202\nvt 0.870801 0.308574\nvt 0.870844 0.305131\nvt 0.870844 0.305131\nvt 0.873840 0.305355\nvt 0.873851 0.309202\nvt 0.873899 0.313051\nvt 0.870830 0.312023\nvt 0.870801 0.308574\nvt 0.870801 0.308574\nvt 0.873851 0.309202\nvt 0.873899 0.313051\nvt 0.871057 0.295572\nvt 0.870844 0.305131\nvt 0.867562 0.303000\nvt 0.867562 0.303000\nvt 0.867686 0.294997\nvt 0.871057 0.295572\nvt 0.871057 0.295572\nvt 0.867686 0.294997\nvt 0.867845 0.285455\nvt 0.867845 0.285455\nvt 0.871223 0.286023\nvt 0.871057 0.295572\nvt 0.571870 0.137556\nvt 0.568185 0.137861\nvt 0.568208 0.135163\nvt 0.568208 0.135163\nvt 0.572417 0.135199\nvt 0.571870 0.137556\nvt 0.686445 0.198599\nvt 0.687828 0.202016\nvt 0.657567 0.211661\nvt 0.657567 0.211661\nvt 0.656177 0.208233\nvt 0.686445 0.198599\nvt 0.687828 0.202016\nvt 0.686445 0.198599\nvt 0.698719 0.194830\nvt 0.698719 0.194830\nvt 0.700110 0.198239\nvt 0.687828 0.202016\nvt 0.700110 0.198239\nvt 0.698719 0.194830\nvt 0.710008 0.191584\nvt 0.710008 0.191584\nvt 0.711420 0.194981\nvt 0.700110 0.198239\nvt 0.711420 0.194981\nvt 0.710008 0.191584\nvt 0.723395 0.187669\nvt 0.723395 0.187669\nvt 0.724727 0.191090\nvt 0.711420 0.194981\nvt 0.724727 0.191090\nvt 0.723395 0.187669\nvt 0.735513 0.184013\nvt 0.735513 0.184013\nvt 0.736540 0.187553\nvt 0.724727 0.191090\nvt 0.736540 0.187553\nvt 0.735513 0.184013\nvt 0.757013 0.177023\nvt 0.757013 0.177023\nvt 0.756862 0.181276\nvt 0.736540 0.187553\nvt 0.756862 0.181276\nvt 0.757013 0.177023\nvt 0.768363 0.172919\nvt 0.768363 0.172919\nvt 0.767520 0.177710\nvt 0.756862 0.181276\nvt 0.767520 0.177710\nvt 0.768363 0.172919\nvt 0.794536 0.194085\nvt 0.794536 0.194085\nvt 0.793624 0.199131\nvt 0.767520 0.177710\nvt 0.793624 0.199131\nvt 0.794536 0.194085\nvt 0.858154 0.202461\nvt 0.858154 0.202461\nvt 0.858768 0.207550\nvt 0.793624 0.199131\nvt 0.858768 0.207550\nvt 0.858154 0.202461\nvt 0.866647 0.203467\nvt 0.866647 0.203467\nvt 0.866835 0.208482\nvt 0.858768 0.207550\nvt 0.866835 0.208482\nvt 0.866647 0.203467\nvt 0.872431 0.204231\nvt 0.872431 0.204231\nvt 0.871785 0.209057\nvt 0.866835 0.208482\nvt 0.879754 0.209981\nvt 0.871785 0.209057\nvt 0.872431 0.204231\nvt 0.872431 0.204231\nvt 0.881102 0.205482\nvt 0.879754 0.209981\nvt 0.879754 0.209981\nvt 0.881102 0.205482\nvt 0.891442 0.206397\nvt 0.891442 0.206397\nvt 0.889231 0.211075\nvt 0.879754 0.209981\nvt 0.084554 0.666245\nvt 0.084656 0.687491\nvt 0.011130 0.677627\nvt 0.011130 0.677627\nvt 0.015480 0.663229\nvt 0.084554 0.666245\nvt 0.084554 0.666245\nvt 0.015480 0.663229\nvt 0.023275 0.632378\nvt 0.023275 0.632378\nvt 0.078963 0.629853\nvt 0.084554 0.666245\nvt 0.076797 0.613619\nvt 0.078963 0.629853\nvt 0.023275 0.632378\nvt 0.023275 0.632378\nvt 0.026728 0.615888\nvt 0.076797 0.613619\nvt 0.073854 0.590562\nvt 0.076797 0.613619\nvt 0.026728 0.615888\nvt 0.026728 0.615888\nvt 0.032114 0.587553\nvt 0.073854 0.590562\nvt 0.070538 0.564087\nvt 0.073854 0.590562\nvt 0.032114 0.587553\nvt 0.032114 0.587553\nvt 0.034131 0.563502\nvt 0.070538 0.564087\nvt 0.006229 0.578820\nvt 0.032114 0.587553\nvt 0.026728 0.615888\nvt 0.026728 0.615888\nvt 0.003294 0.580473\nvt 0.006229 0.578820\nvt 0.009155 0.577169\nvt 0.034131 0.563502\nvt 0.032114 0.587553\nvt 0.032114 0.587553\nvt 0.006229 0.578820\nvt 0.009155 0.577169\nvt 0.019108 0.689377\nvt 0.011130 0.677627\nvt 0.084656 0.687491\nvt 0.011130 0.677627\nvt 0.019108 0.689377\nvt 0.003840 0.693296\nvt 0.003840 0.693296\nvt 0.002567 0.686782\nvt 0.011130 0.677627\nvt 0.003840 0.693296\nvt 0.019108 0.689377\nvt 0.018978 0.701429\nvt 0.018978 0.701429\nvt 0.005604 0.703038\nvt 0.003840 0.693296\nvt 0.061315 0.713390\nvt 0.018978 0.701429\nvt 0.019108 0.689377\nvt 0.019108 0.689377\nvt 0.073983 0.700634\nvt 0.061315 0.713390\nvt 0.084656 0.687491\nvt 0.073983 0.700634\nvt 0.019108 0.689377\nvt 0.005604 0.703038\nvt 0.018978 0.701429\nvt 0.019806 0.719753\nvt 0.019806 0.719753\nvt 0.008424 0.719461\nvt 0.005604 0.703038\nvt 0.008424 0.719461\nvt 0.019806 0.719753\nvt 0.020849 0.740026\nvt 0.020849 0.740026\nvt 0.011422 0.737999\nvt 0.008424 0.719461\nvt 0.044597 0.748954\nvt 0.020849 0.740026\nvt 0.019806 0.719753\nvt 0.019806 0.719753\nvt 0.052046 0.730473\nvt 0.044597 0.748954\nvt 0.052046 0.730473\nvt 0.019806 0.719753\nvt 0.018978 0.701429\nvt 0.018978 0.701429\nvt 0.061315 0.713390\nvt 0.052046 0.730473\nvt 0.011422 0.737999\nvt 0.020849 0.740026\nvt 0.021514 0.758336\nvt 0.021514 0.758336\nvt 0.013853 0.754605\nvt 0.011422 0.737999\nvt 0.013853 0.754605\nvt 0.021514 0.758336\nvt 0.022001 0.772616\nvt 0.022001 0.772616\nvt 0.015708 0.767533\nvt 0.013853 0.754605\nvt 0.030810 0.782812\nvt 0.022001 0.772616\nvt 0.021514 0.758336\nvt 0.022001 0.772616\nvt 0.030810 0.782812\nvt 0.029146 0.786558\nvt 0.029146 0.786558\nvt 0.022242 0.780116\nvt 0.022001 0.772616\nvt 0.015708 0.767533\nvt 0.022001 0.772616\nvt 0.022242 0.780116\nvt 0.022242 0.780116\nvt 0.029146 0.786558\nvt 0.027484 0.790306\nvt 0.027484 0.790306\nvt 0.022367 0.784225\nvt 0.022242 0.780116\nvt 0.021514 0.758336\nvt 0.037544 0.766076\nvt 0.030810 0.782812\nvt 0.037544 0.766076\nvt 0.021514 0.758336\nvt 0.020849 0.740026\nvt 0.020849 0.740026\nvt 0.044597 0.748954\nvt 0.037544 0.766076\nvt 0.022242 0.780116\nvt 0.016674 0.774332\nvt 0.015708 0.767533\nvt 0.022242 0.780116\nvt 0.022367 0.784225\nvt 0.017204 0.778068\nvt 0.017204 0.778068\nvt 0.016674 0.774332\nvt 0.022242 0.780116\nvt 0.755879 0.253685\nvt 0.763209 0.253791\nvt 0.763334 0.257546\nvt 0.763334 0.257546\nvt 0.755862 0.257471\nvt 0.755879 0.253685\nvt 0.770876 0.257275\nvt 0.763334 0.257546\nvt 0.763209 0.253791\nvt 0.763209 0.253791\nvt 0.771711 0.253507\nvt 0.770876 0.257275\nvt 0.763416 0.249288\nvt 0.763209 0.253791\nvt 0.755879 0.253685\nvt 0.771711 0.253507\nvt 0.763209 0.253791\nvt 0.763416 0.249288\nvt 0.755879 0.253685\nvt 0.756024 0.249290\nvt 0.763416 0.249288\nvt 0.763416 0.249288\nvt 0.772036 0.249065\nvt 0.771711 0.253507\nvt 0.503706 0.144481\nvt 0.488090 0.145192\nvt 0.488189 0.141232\nvt 0.488189 0.141232\nvt 0.503987 0.140479\nvt 0.503706 0.144481\nvt 0.532294 0.144610\nvt 0.503706 0.144481\nvt 0.503987 0.140479\nvt 0.503987 0.140479\nvt 0.533859 0.140769\nvt 0.532294 0.144610\nvt 0.532294 0.144610\nvt 0.533859 0.140769\nvt 0.547953 0.141834\nvt 0.547953 0.141834\nvt 0.545269 0.145442\nvt 0.532294 0.144610\nvt 0.501239 0.149157\nvt 0.503706 0.144481\nvt 0.532294 0.144610\nvt 0.532294 0.144610\nvt 0.529822 0.148945\nvt 0.501239 0.149157\nvt 0.529822 0.148945\nvt 0.532294 0.144610\nvt 0.545269 0.145442\nvt 0.485816 0.149636\nvt 0.488090 0.145192\nvt 0.503706 0.144481\nvt 0.503706 0.144481\nvt 0.501239 0.149157\nvt 0.485816 0.149636\nvt 0.545269 0.145442\nvt 0.542989 0.149198\nvt 0.529822 0.148945\nvt 0.660704 0.194537\nvt 0.673278 0.194509\nvt 0.672784 0.198977\nvt 0.672784 0.198977\nvt 0.661021 0.199057\nvt 0.660704 0.194537\nvt 0.673278 0.194509\nvt 0.660704 0.194537\nvt 0.661622 0.189998\nvt 0.661622 0.189998\nvt 0.674377 0.190259\nvt 0.673278 0.194509\nvt 0.793102 0.130093\nvt 0.832999 0.130914\nvt 0.830865 0.134262\nvt 0.830865 0.134262\nvt 0.794035 0.133132\nvt 0.793102 0.130093\nvt 0.792709 0.138613\nvt 0.794035 0.133132\nvt 0.830865 0.134262\nvt 0.830865 0.134262\nvt 0.828285 0.138543\nvt 0.792709 0.138613\nvt 0.613841 0.228816\nvt 0.617725 0.229093\nvt 0.618291 0.233290\nvt 0.618291 0.233290\nvt 0.614333 0.233024\nvt 0.613841 0.228816\nvt 0.613841 0.228816\nvt 0.614333 0.233024\nvt 0.607125 0.232542\nvt 0.607125 0.232542\nvt 0.606770 0.228316\nvt 0.613841 0.228816\nvt 0.614020 0.238004\nvt 0.614333 0.233024\nvt 0.618291 0.233290\nvt 0.618291 0.233290\nvt 0.618033 0.238178\nvt 0.614020 0.238004\nvt 0.606710 0.237688\nvt 0.607125 0.232542\nvt 0.614333 0.233024\nvt 0.614333 0.233024\nvt 0.614020 0.238004\nvt 0.606710 0.237688\nvt 0.606770 0.228316\nvt 0.607125 0.232542\nvt 0.593426 0.231607\nvt 0.593426 0.231607\nvt 0.593323 0.227349\nvt 0.606770 0.228316\nvt 0.593323 0.227349\nvt 0.593426 0.231607\nvt 0.575817 0.230466\nvt 0.575817 0.230466\nvt 0.576015 0.226300\nvt 0.593323 0.227349\nvt 0.576015 0.226300\nvt 0.575817 0.230466\nvt 0.556104 0.230835\nvt 0.556104 0.230835\nvt 0.556621 0.226701\nvt 0.576015 0.226300\nvt 0.556621 0.226701\nvt 0.556104 0.230835\nvt 0.538512 0.232206\nvt 0.538512 0.232206\nvt 0.539467 0.228007\nvt 0.556621 0.226701\nvt 0.539467 0.228007\nvt 0.538512 0.232206\nvt 0.527674 0.233488\nvt 0.527674 0.233488\nvt 0.529321 0.229240\nvt 0.539467 0.228007\nvt 0.522594 0.230551\nvt 0.529321 0.229240\nvt 0.527674 0.233488\nvt 0.527674 0.233488\nvt 0.520129 0.234893\nvt 0.522594 0.230551\nvt 0.526630 0.238730\nvt 0.527674 0.233488\nvt 0.538512 0.232206\nvt 0.538512 0.232206\nvt 0.537552 0.237693\nvt 0.526630 0.238730\nvt 0.537552 0.237693\nvt 0.538512 0.232206\nvt 0.556104 0.230835\nvt 0.518982 0.239859\nvt 0.520129 0.234893\nvt 0.527674 0.233488\nvt 0.527674 0.233488\nvt 0.526630 0.238730\nvt 0.518982 0.239859\nvt 0.555180 0.236490\nvt 0.556104 0.230835\nvt 0.575817 0.230466\nvt 0.556104 0.230835\nvt 0.555180 0.236490\nvt 0.537552 0.237693\nvt 0.575817 0.230466\nvt 0.574981 0.236147\nvt 0.555180 0.236490\nvt 0.574981 0.236147\nvt 0.575817 0.230466\nvt 0.593426 0.231607\nvt 0.593426 0.231607\nvt 0.592803 0.237068\nvt 0.574981 0.236147\nvt 0.592803 0.237068\nvt 0.593426 0.231607\nvt 0.607125 0.232542\nvt 0.607125 0.232542\nvt 0.606710 0.237688\nvt 0.592803 0.237068\nvt 0.673369 0.182097\nvt 0.666379 0.181992\nvt 0.670152 0.176169\nvt 0.670152 0.176169\nvt 0.674902 0.179240\nvt 0.673369 0.182097\nvt 0.667465 0.175771\nvt 0.670152 0.176169\nvt 0.666379 0.181992\nvt 0.666379 0.181992\nvt 0.663828 0.181830\nvt 0.667465 0.175771\nvt 0.663828 0.181830\nvt 0.661344 0.182240\nvt 0.667465 0.175771\nvt 0.695238 0.304711\nvt 0.695166 0.307210\nvt 0.692785 0.307131\nvt 0.692785 0.307131\nvt 0.692856 0.304648\nvt 0.695238 0.304711\nvt 0.695238 0.304711\nvt 0.692856 0.304648\nvt 0.692916 0.302161\nvt 0.692916 0.302161\nvt 0.695298 0.302216\nvt 0.695238 0.304711\nvt 0.692694 0.309617\nvt 0.692785 0.307131\nvt 0.695166 0.307210\nvt 0.695166 0.307210\nvt 0.695075 0.309705\nvt 0.692694 0.309617\nvt 0.692603 0.312107\nvt 0.692694 0.309617\nvt 0.695075 0.309705\nvt 0.695075 0.309705\nvt 0.694984 0.312196\nvt 0.692603 0.312107\nvt 0.692514 0.314600\nvt 0.692603 0.312107\nvt 0.694984 0.312196\nvt 0.694984 0.312196\nvt 0.694890 0.314683\nvt 0.692514 0.314600\nvt 0.692407 0.317231\nvt 0.692514 0.314600\nvt 0.694890 0.314683\nvt 0.694890 0.314683\nvt 0.694830 0.317160\nvt 0.692407 0.317231\nvt 0.692672 0.319850\nvt 0.692407 0.317231\nvt 0.694830 0.317160\nvt 0.694830 0.317160\nvt 0.695038 0.319630\nvt 0.692672 0.319850\nvt 0.692914 0.322480\nvt 0.692672 0.319850\nvt 0.695038 0.319630\nvt 0.695038 0.319630\nvt 0.695286 0.322260\nvt 0.692914 0.322480\nvt 0.695352 0.299722\nvt 0.695298 0.302216\nvt 0.692916 0.302161\nvt 0.692916 0.302161\nvt 0.692969 0.299671\nvt 0.695352 0.299722\nvt 0.695352 0.299722\nvt 0.692969 0.299671\nvt 0.693025 0.297031\nvt 0.693025 0.297031\nvt 0.695407 0.297081\nvt 0.695352 0.299722\nvt 0.416106 0.422168\nvt 0.414267 0.419803\nvt 0.422950 0.412894\nvt 0.422950 0.412894\nvt 0.425208 0.415800\nvt 0.416106 0.422168\nvt 0.416106 0.422168\nvt 0.425208 0.415800\nvt 0.427303 0.418827\nvt 0.427303 0.418827\nvt 0.417810 0.424630\nvt 0.416106 0.422168\nvt 0.420508 0.410100\nvt 0.422950 0.412894\nvt 0.414267 0.419803\nvt 0.414267 0.419803\nvt 0.412317 0.417569\nvt 0.420508 0.410100\nvt 0.417899 0.407458\nvt 0.420508 0.410100\nvt 0.412317 0.417569\nvt 0.412317 0.417569\nvt 0.410233 0.415462\nvt 0.417899 0.407458\nvt 0.415147 0.404965\nvt 0.417899 0.407458\nvt 0.410233 0.415462\nvt 0.410233 0.415462\nvt 0.408038 0.413470\nvt 0.415147 0.404965\nvt 0.412251 0.402646\nvt 0.415147 0.404965\nvt 0.408038 0.413470\nvt 0.408038 0.413470\nvt 0.405722 0.411617\nvt 0.412251 0.402646\nvt 0.409251 0.400514\nvt 0.412251 0.402646\nvt 0.405722 0.411617\nvt 0.405722 0.411617\nvt 0.403280 0.409882\nvt 0.409251 0.400514\nvt 0.406137 0.398551\nvt 0.409251 0.400514\nvt 0.403280 0.409882\nvt 0.403280 0.409882\nvt 0.400747 0.408285\nvt 0.406137 0.398551\nvt 0.419350 0.427196\nvt 0.417810 0.424630\nvt 0.427303 0.418827\nvt 0.427303 0.418827\nvt 0.429198 0.421984\nvt 0.419350 0.427196\nvt 0.419350 0.427196\nvt 0.429198 0.421984\nvt 0.431102 0.425391\nvt 0.431102 0.425391\nvt 0.420898 0.429964\nvt 0.419350 0.427196\nvt 0.406137 0.398551\nvt 0.400747 0.408285\nvt 0.398118 0.406856\nvt 0.398118 0.406856\nvt 0.402902 0.396793\nvt 0.406137 0.398551\nvt 0.402902 0.396793\nvt 0.398118 0.406856\nvt 0.395285 0.405429\nvt 0.395285 0.405429\nvt 0.399415 0.395038\nvt 0.402902 0.396793\nvt 0.577691 0.145067\nvt 0.575775 0.143994\nvt 0.576603 0.141628\nvt 0.576603 0.141628\nvt 0.578786 0.141927\nvt 0.577691 0.145067\nvt 0.575775 0.143994\nvt 0.577691 0.145067\nvt 0.575587 0.147627\nvt 0.575587 0.147627\nvt 0.574171 0.145940\nvt 0.575775 0.143994\nvt 0.574171 0.145940\nvt 0.575587 0.147627\nvt 0.572706 0.149244\nvt 0.572706 0.149244\nvt 0.571960 0.147179\nvt 0.574171 0.145940\nvt 0.571960 0.147179\nvt 0.572706 0.149244\nvt 0.569461 0.149838\nvt 0.569461 0.149838\nvt 0.569457 0.147636\nvt 0.571960 0.147179\nvt 0.569457 0.147636\nvt 0.569461 0.149838\nvt 0.566216 0.149257\nvt 0.566216 0.149257\nvt 0.566953 0.147188\nvt 0.569457 0.147636\nvt 0.566953 0.147188\nvt 0.566216 0.149257\nvt 0.563327 0.147654\nvt 0.563327 0.147654\nvt 0.564734 0.145958\nvt 0.566953 0.147188\nvt 0.564734 0.145958\nvt 0.563327 0.147654\nvt 0.561208 0.145109\nvt 0.561208 0.145109\nvt 0.563116 0.144021\nvt 0.564734 0.145958\nvt 0.563116 0.144021\nvt 0.561208 0.145109\nvt 0.560086 0.141982\nvt 0.560086 0.141982\nvt 0.561766 0.141730\nvt 0.563116 0.144021\nvt 0.562371 0.139156\nvt 0.561766 0.141730\nvt 0.560086 0.141982\nvt 0.560086 0.141982\nvt 0.560233 0.138652\nvt 0.562371 0.139156\nvt 0.562970 0.136588\nvt 0.562371 0.139156\nvt 0.560233 0.138652\nvt 0.560233 0.138652\nvt 0.561038 0.135203\nvt 0.562970 0.136588\nvt 0.578583 0.138599\nvt 0.578786 0.141927\nvt 0.576603 0.141628\nvt 0.576603 0.141628\nvt 0.576454 0.139138\nvt 0.578583 0.138599\nvt 0.578583 0.138599\nvt 0.576454 0.139138\nvt 0.575812 0.136581\nvt 0.575812 0.136581\nvt 0.577720 0.135163\nvt 0.578583 0.138599\nvt 0.511966 0.062551\nvt 0.510196 0.061397\nvt 0.513944 0.057500\nvt 0.513944 0.057500\nvt 0.514048 0.062906\nvt 0.511966 0.062551\nvt 0.514048 0.062906\nvt 0.513944 0.057500\nvt 0.517839 0.061251\nvt 0.517839 0.061251\nvt 0.516286 0.062864\nvt 0.514048 0.062906\nvt 0.519392 0.059637\nvt 0.517839 0.061251\nvt 0.513944 0.057500\nvt 0.513944 0.057500\nvt 0.519350 0.057398\nvt 0.519392 0.059637\nvt 0.519350 0.057398\nvt 0.513944 0.057500\nvt 0.517693 0.053605\nvt 0.517693 0.053605\nvt 0.519307 0.055159\nvt 0.519350 0.057398\nvt 0.515923 0.052451\nvt 0.517693 0.053605\nvt 0.513944 0.057500\nvt 0.513944 0.057500\nvt 0.513840 0.052095\nvt 0.515923 0.052451\nvt 0.513840 0.052095\nvt 0.513944 0.057500\nvt 0.510047 0.053753\nvt 0.510047 0.053753\nvt 0.511771 0.052531\nvt 0.513840 0.052095\nvt 0.508893 0.055524\nvt 0.510047 0.053753\nvt 0.513944 0.057500\nvt 0.513944 0.057500\nvt 0.508538 0.057607\nvt 0.508893 0.055524\nvt 0.508538 0.057607\nvt 0.513944 0.057500\nvt 0.510196 0.061397\nvt 0.510196 0.061397\nvt 0.508975 0.059674\nvt 0.508538 0.057607\nvt 0.385585 0.651965\nvt 0.388123 0.652054\nvt 0.386202 0.668244\nvt 0.386202 0.668244\nvt 0.382102 0.668119\nvt 0.385585 0.651965\nvt 0.385585 0.651965\nvt 0.382102 0.668119\nvt 0.377820 0.667154\nvt 0.377820 0.667154\nvt 0.383107 0.651410\nvt 0.385585 0.651965\nvt 0.389791 0.667504\nvt 0.386202 0.668244\nvt 0.388123 0.652054\nvt 0.388123 0.652054\nvt 0.390632 0.651675\nvt 0.389791 0.667504\nvt 0.393504 0.666379\nvt 0.389791 0.667504\nvt 0.390632 0.651675\nvt 0.390632 0.651675\nvt 0.393047 0.650968\nvt 0.393504 0.666379\nvt 0.380797 0.650359\nvt 0.383107 0.651410\nvt 0.377820 0.667154\nvt 0.377820 0.667154\nvt 0.373822 0.665340\nvt 0.380797 0.650359\nvt 0.380797 0.650359\nvt 0.373822 0.665340\nvt 0.369786 0.663034\nvt 0.369786 0.663034\nvt 0.378463 0.649021\nvt 0.380797 0.650359\nvt 0.400934 0.660086\nvt 0.393504 0.666379\nvt 0.393047 0.650968\nvt 0.393047 0.650968\nvt 0.395315 0.650002\nvt 0.400934 0.660086\nvt 0.400934 0.660086\nvt 0.395315 0.650002\nvt 0.397529 0.648786\nvt 0.397529 0.648786\nvt 0.408354 0.653863\nvt 0.400934 0.660086\nvt 0.776108 0.196917\nvt 0.775897 0.204804\nvt 0.764726 0.201111\nvt 0.764726 0.201111\nvt 0.764618 0.196238\nvt 0.776108 0.196917\nvt 0.776108 0.196917\nvt 0.764618 0.196238\nvt 0.764505 0.191365\nvt 0.764505 0.191365\nvt 0.776322 0.189030\nvt 0.776108 0.196917\nvt 0.708108 0.177789\nvt 0.706717 0.176584\nvt 0.708756 0.174833\nvt 0.708756 0.174833\nvt 0.709738 0.176393\nvt 0.708108 0.177789\nvt 0.706717 0.176584\nvt 0.708108 0.177789\nvt 0.706949 0.179577\nvt 0.706949 0.179577\nvt 0.705253 0.178850\nvt 0.706717 0.176584\nvt 0.705253 0.178850\nvt 0.706949 0.179577\nvt 0.706435 0.181633\nvt 0.706435 0.181633\nvt 0.704599 0.181478\nvt 0.705253 0.178850\nvt 0.704599 0.181478\nvt 0.706435 0.181633\nvt 0.706237 0.183862\nvt 0.706237 0.183862\nvt 0.704343 0.184343\nvt 0.704599 0.181478\nvt 0.709738 0.176393\nvt 0.708756 0.174833\nvt 0.711215 0.173770\nvt 0.711215 0.173770\nvt 0.711718 0.175538\nvt 0.709738 0.176393\nvt 0.711718 0.175538\nvt 0.711215 0.173770\nvt 0.713861 0.173387\nvt 0.713861 0.173387\nvt 0.713861 0.175228\nvt 0.711718 0.175538\nvt 0.713861 0.175228\nvt 0.713861 0.173387\nvt 0.716506 0.173770\nvt 0.716506 0.173770\nvt 0.716003 0.175538\nvt 0.713861 0.175228\nvt 0.716003 0.175538\nvt 0.716506 0.173770\nvt 0.718965 0.174834\nvt 0.718965 0.174834\nvt 0.717984 0.176394\nvt 0.716003 0.175538\nvt 0.717984 0.176394\nvt 0.718965 0.174834\nvt 0.721004 0.176584\nvt 0.721004 0.176584\nvt 0.719613 0.177789\nvt 0.717984 0.176394\nvt 0.719613 0.177789\nvt 0.721004 0.176584\nvt 0.722468 0.178850\nvt 0.722468 0.178850\nvt 0.720772 0.179578\nvt 0.719613 0.177789\nvt 0.720772 0.179578\nvt 0.722468 0.178850\nvt 0.723123 0.181478\nvt 0.723123 0.181478\nvt 0.721287 0.181633\nvt 0.720772 0.179578\nvt 0.721287 0.181633\nvt 0.723123 0.181478\nvt 0.723379 0.184344\nvt 0.723379 0.184344\nvt 0.721486 0.183862\nvt 0.721287 0.181633\nvt 0.745015 0.198354\nvt 0.745027 0.191473\nvt 0.748953 0.190598\nvt 0.748953 0.190598\nvt 0.748948 0.198359\nvt 0.745015 0.198354\nvt 0.745027 0.191473\nvt 0.745015 0.198354\nvt 0.740846 0.198345\nvt 0.740846 0.198345\nvt 0.740860 0.192556\nvt 0.745027 0.191473\nvt 0.748948 0.198359\nvt 0.748953 0.190598\nvt 0.752523 0.190142\nvt 0.752523 0.190142\nvt 0.752523 0.198359\nvt 0.748948 0.198359\nvt 0.752523 0.198359\nvt 0.752523 0.190142\nvt 0.756298 0.189898\nvt 0.756298 0.189898\nvt 0.756298 0.198359\nvt 0.752523 0.198359\nvt 0.740860 0.192556\nvt 0.740846 0.198345\nvt 0.736678 0.198333\nvt 0.736678 0.198333\nvt 0.736691 0.193636\nvt 0.740860 0.192556\nvt 0.736691 0.193636\nvt 0.736678 0.198333\nvt 0.732249 0.198320\nvt 0.732249 0.198320\nvt 0.732260 0.194715\nvt 0.736691 0.193636\nvt 0.684313 0.182019\nvt 0.684339 0.176845\nvt 0.687775 0.173574\nvt 0.687775 0.173574\nvt 0.687735 0.182036\nvt 0.684313 0.182019\nvt 0.680666 0.174057\nvt 0.687775 0.173574\nvt 0.684339 0.176845\nvt 0.684339 0.176845\nvt 0.680654 0.176828\nvt 0.680666 0.174057\nvt 0.007183 0.337193\nvt 0.007183 0.337193\nvt 0.113811 0.344530\nvt 0.348176 0.160159\nvt 0.353550 0.192989\nvt 0.353550 0.192989\nvt 0.842952 0.329703\nvt 0.864428 0.328842\nvt 0.864198 0.354498\nvt 0.864198 0.354498\nvt 0.841679 0.354296\nvt 0.842952 0.329703\nvt 0.117148 0.363169\nvt 0.119199 0.374523\nvt 0.013101 0.370103\nvt 0.117148 0.363169\nvt 0.013101 0.370103\nvt 0.007183 0.337193\nvt 0.117148 0.363169\nvt 0.007183 0.337193\nvt 0.113811 0.344530\nvt 0.017441 0.394134\nvt 0.013101 0.370103\nvt 0.119199 0.374523\nvt 0.119199 0.374523\nvt 0.106473 0.393873\nvt 0.017441 0.394134\nvt 0.114475 0.317264\nvt 0.113811 0.344530\nvt 0.007183 0.337193\nvt 0.007183 0.337193\nvt 0.008752 0.310336\nvt 0.114475 0.317264\nvt 0.114475 0.317264\nvt 0.008752 0.310336\nvt 0.114475 0.317264\nvt 0.426033 0.176058\nvt 0.394447 0.176058\nvt 0.394447 0.150402\nvt 0.394447 0.150402\nvt 0.426033 0.150402\nvt 0.426033 0.176058\nvt 0.353550 0.192989\nvt 0.321877 0.188049\nvt 0.326793 0.156847\nvt 0.326793 0.156847\nvt 0.348176 0.160159\nvt 0.353550 0.192989\nvt 0.372654 0.156402\nvt 0.378158 0.189257\nvt 0.353550 0.192989\nvt 0.353550 0.192989\nvt 0.348176 0.160159\nvt 0.372654 0.156402\nvt 0.725967 0.333464\nvt 0.703448 0.333464\nvt 0.703448 0.301877\nvt 0.703448 0.301877\nvt 0.736550 0.301877\nvt 0.725967 0.333464\nvt 0.597940 0.336271\nvt 0.589903 0.329532\nvt 0.591125 0.304896\nvt 0.591125 0.304896\nvt 0.599406 0.298254\nvt 0.597940 0.336271\nvt 0.589903 0.329532\nvt 0.597940 0.336271\nvt 0.550608 0.336836\nvt 0.550608 0.336836\nvt 0.557991 0.330182\nvt 0.589903 0.329532\nvt 0.550727 0.297791\nvt 0.599406 0.298254\nvt 0.591125 0.304896\nvt 0.557991 0.330182\nvt 0.550608 0.336836\nvt 0.550727 0.297791\nvt 0.599406 0.298254\nvt 0.550727 0.297791\nvt 0.550727 0.297791\nvt 0.591125 0.304896\nvt 0.558025 0.304529\nvt 0.550727 0.297791\nvt 0.550727 0.297791\nvt 0.558025 0.304529\nvt 0.557991 0.330182\nvt 0.640823 0.055066\nvt 0.640823 0.055066\nvt 0.640877 0.069966\nvt 0.260747 0.683232\nvt 0.278086 0.678056\nvt 0.260747 0.683232\nvt 0.374680 0.330037\nvt 0.376209 0.327491\nvt 0.374680 0.330037\nvt 0.304695 0.307906\nvt 0.303489 0.311774\nvt 0.304695 0.307906\nvt 0.478128 0.328040\nvt 0.478128 0.328040\nvt 0.489991 0.323838\nvt 0.473851 0.329056\nvt 0.478128 0.328040\nvt 0.473851 0.329056\nvt 0.469883 0.329012\nvt 0.473851 0.329056\nvt 0.469883 0.329012\nvt 0.449319 0.325840\nvt 0.469883 0.329012\nvt 0.449319 0.325840\nvt 0.434971 0.324247\nvt 0.449319 0.325840\nvt 0.434971 0.324247\nvt 0.434971 0.324247\nvt 0.425782 0.323707\nvt 0.434971 0.324247\nvt 0.417586 0.323277\nvt 0.425782 0.323707\nvt 0.417586 0.323277\nvt 0.405255 0.323657\nvt 0.417586 0.323277\nvt 0.405255 0.323657\nvt 0.392642 0.325070\nvt 0.405255 0.323657\nvt 0.392642 0.325070\nvt 0.383925 0.326506\nvt 0.392642 0.325070\nvt 0.383925 0.326506\nvt 0.376209 0.327491\nvt 0.383925 0.326506\nvt 0.376209 0.327491\nvt 0.372912 0.326562\nvt 0.376209 0.327491\nvt 0.372912 0.326562\nvt 0.364895 0.323653\nvt 0.372912 0.326562\nvt 0.364895 0.323653\nvt 0.342603 0.316181\nvt 0.364895 0.323653\nvt 0.342603 0.316181\nvt 0.342603 0.316181\nvt 0.318668 0.310107\nvt 0.342603 0.316181\nvt 0.304695 0.307906\nvt 0.318668 0.310107\nvt 0.304695 0.307906\nvt 0.299381 0.310406\nvt 0.304695 0.307906\nvt 0.299381 0.310406\nvt 0.299381 0.310406\nvt 0.273397 0.328371\nvt 0.299381 0.310406\nvt 0.490747 0.326166\nvt 0.478616 0.330633\nvt 0.478128 0.328040\nvt 0.478128 0.328040\nvt 0.489991 0.323838\nvt 0.490747 0.326166\nvt 0.473851 0.329056\nvt 0.478128 0.328040\nvt 0.478616 0.330633\nvt 0.478616 0.330633\nvt 0.473995 0.331746\nvt 0.473851 0.329056\nvt 0.469883 0.329012\nvt 0.473851 0.329056\nvt 0.473995 0.331746\nvt 0.473995 0.331746\nvt 0.469659 0.331883\nvt 0.469883 0.329012\nvt 0.449319 0.325840\nvt 0.469883 0.329012\nvt 0.469659 0.331883\nvt 0.469659 0.331883\nvt 0.448628 0.329155\nvt 0.449319 0.325840\nvt 0.434971 0.324247\nvt 0.449319 0.325840\nvt 0.448628 0.329155\nvt 0.448628 0.329155\nvt 0.434011 0.328100\nvt 0.434971 0.324247\nvt 0.434971 0.324247\nvt 0.434011 0.328100\nvt 0.424459 0.328235\nvt 0.424459 0.328235\nvt 0.425782 0.323707\nvt 0.434971 0.324247\nvt 0.417586 0.323277\nvt 0.425782 0.323707\nvt 0.424459 0.328235\nvt 0.424459 0.328235\nvt 0.416099 0.327949\nvt 0.417586 0.323277\nvt 0.417586 0.323277\nvt 0.416099 0.327949\nvt 0.404112 0.327654\nvt 0.404112 0.327654\nvt 0.405255 0.323657\nvt 0.417586 0.323277\nvt 0.392642 0.325070\nvt 0.405255 0.323657\nvt 0.404112 0.327654\nvt 0.404112 0.327654\nvt 0.391912 0.328320\nvt 0.392642 0.325070\nvt 0.392642 0.325070\nvt 0.391912 0.328320\nvt 0.383222 0.329463\nvt 0.383222 0.329463\nvt 0.383925 0.326506\nvt 0.392642 0.325070\nvt 0.376209 0.327491\nvt 0.383925 0.326506\nvt 0.383222 0.329463\nvt 0.383222 0.329463\nvt 0.374680 0.330037\nvt 0.376209 0.327491\nvt 0.372912 0.326562\nvt 0.376209 0.327491\nvt 0.374680 0.330037\nvt 0.374680 0.330037\nvt 0.370605 0.329376\nvt 0.372912 0.326562\nvt 0.364895 0.323653\nvt 0.372912 0.326562\nvt 0.370605 0.329376\nvt 0.370605 0.329376\nvt 0.361531 0.326883\nvt 0.364895 0.323653\nvt 0.364895 0.323653\nvt 0.361531 0.326883\nvt 0.337994 0.320119\nvt 0.337994 0.320119\nvt 0.342603 0.316181\nvt 0.364895 0.323653\nvt 0.342603 0.316181\nvt 0.337994 0.320119\nvt 0.315100 0.313528\nvt 0.315100 0.313528\nvt 0.318668 0.310107\nvt 0.342603 0.316181\nvt 0.318668 0.310107\nvt 0.315100 0.313528\nvt 0.303489 0.311774\nvt 0.303489 0.311774\nvt 0.304695 0.307906\nvt 0.318668 0.310107\nvt 0.273397 0.328371\nvt 0.299381 0.310406\nvt 0.299020 0.314174\nvt 0.299020 0.314174\nvt 0.274487 0.331317\nvt 0.273397 0.328371\nvt 0.299020 0.314174\nvt 0.299381 0.310406\nvt 0.304695 0.307906\nvt 0.304695 0.307906\nvt 0.303489 0.311774\nvt 0.299020 0.314174\nvt 0.487081 0.315665\nvt 0.489991 0.323838\nvt 0.478128 0.328040\nvt 0.478128 0.328040\nvt 0.475033 0.319976\nvt 0.487081 0.315665\nvt 0.475033 0.319976\nvt 0.478128 0.328040\nvt 0.473851 0.329056\nvt 0.473851 0.329056\nvt 0.470562 0.321111\nvt 0.475033 0.319976\nvt 0.470562 0.321111\nvt 0.473851 0.329056\nvt 0.469883 0.329012\nvt 0.469883 0.329012\nvt 0.466402 0.321101\nvt 0.470562 0.321111\nvt 0.466402 0.321101\nvt 0.469883 0.329012\nvt 0.449319 0.325840\nvt 0.449319 0.325840\nvt 0.445355 0.318259\nvt 0.466402 0.321101\nvt 0.445355 0.318259\nvt 0.449319 0.325840\nvt 0.434971 0.324247\nvt 0.434971 0.324247\nvt 0.431153 0.316646\nvt 0.445355 0.318259\nvt 0.422572 0.316033\nvt 0.431153 0.316646\nvt 0.434971 0.324247\nvt 0.434971 0.324247\nvt 0.425782 0.323707\nvt 0.422572 0.316033\nvt 0.422572 0.316033\nvt 0.425782 0.323707\nvt 0.417586 0.323277\nvt 0.417586 0.323277\nvt 0.415547 0.315849\nvt 0.422572 0.316033\nvt 0.415547 0.315849\nvt 0.417586 0.323277\nvt 0.405255 0.323657\nvt 0.405255 0.323657\nvt 0.405450 0.316159\nvt 0.415547 0.315849\nvt 0.405450 0.316159\nvt 0.405255 0.323657\nvt 0.392642 0.325070\nvt 0.392642 0.325070\nvt 0.395084 0.316953\nvt 0.405450 0.316159\nvt 0.395084 0.316953\nvt 0.392642 0.325070\nvt 0.383925 0.326506\nvt 0.383925 0.326506\nvt 0.387270 0.317908\nvt 0.395084 0.316953\nvt 0.387270 0.317908\nvt 0.383925 0.326506\nvt 0.376209 0.327491\nvt 0.376209 0.327491\nvt 0.379819 0.318451\nvt 0.387270 0.317908\nvt 0.379819 0.318451\nvt 0.376209 0.327491\nvt 0.372912 0.326562\nvt 0.372912 0.326562\nvt 0.377814 0.317229\nvt 0.379819 0.318451\nvt 0.377814 0.317229\nvt 0.372912 0.326562\nvt 0.364895 0.323653\nvt 0.364895 0.323653\nvt 0.373693 0.314036\nvt 0.377814 0.317229\nvt 0.373693 0.314036\nvt 0.364895 0.323653\nvt 0.342603 0.316181\nvt 0.342603 0.316181\nvt 0.354109 0.306461\nvt 0.373693 0.314036\nvt 0.354109 0.306461\nvt 0.342603 0.316181\nvt 0.318668 0.310107\nvt 0.318668 0.310107\nvt 0.323817 0.301010\nvt 0.354109 0.306461\nvt 0.323817 0.301010\nvt 0.318668 0.310107\nvt 0.304695 0.307906\nvt 0.304695 0.307906\nvt 0.306185 0.298976\nvt 0.323817 0.301010\nvt 0.306185 0.298976\nvt 0.304695 0.307906\nvt 0.299381 0.310406\nvt 0.299381 0.310406\nvt 0.300622 0.302364\nvt 0.306185 0.298976\nvt 0.270208 0.323581\nvt 0.300622 0.302364\nvt 0.299381 0.310406\nvt 0.299381 0.310406\nvt 0.273397 0.328371\nvt 0.270208 0.323581\nvt 0.952289 0.025599\nvt 0.950296 0.015402\nvt 0.954373 0.015420\nvt 0.952289 0.025599\nvt 0.946525 0.016944\nvt 0.950296 0.015402\nvt 0.952289 0.025599\nvt 0.943642 0.019801\nvt 0.946525 0.016944\nvt 0.952289 0.025599\nvt 0.942078 0.023539\nvt 0.943642 0.019801\nvt 0.952289 0.025599\nvt 0.942053 0.027589\nvt 0.942078 0.023539\nvt 0.952289 0.025599\nvt 0.943591 0.031327\nvt 0.942053 0.027589\nvt 0.952289 0.025599\nvt 0.946455 0.034204\nvt 0.943591 0.031327\nvt 0.952289 0.025599\nvt 0.950205 0.035772\nvt 0.946455 0.034204\nvt 0.952289 0.025599\nvt 0.954290 0.035787\nvt 0.950205 0.035772\nvt 0.952289 0.025599\nvt 0.958060 0.034243\nvt 0.954290 0.035787\nvt 0.952289 0.025599\nvt 0.960946 0.031380\nvt 0.958060 0.034243\nvt 0.952289 0.025599\nvt 0.962513 0.027633\nvt 0.960946 0.031380\nvt 0.952289 0.025599\nvt 0.962516 0.023606\nvt 0.962513 0.027633\nvt 0.952289 0.025599\nvt 0.960981 0.019860\nvt 0.962516 0.023606\nvt 0.952289 0.025599\nvt 0.958120 0.016987\nvt 0.960981 0.019860\nvt 0.952289 0.025599\nvt 0.954373 0.015420\nvt 0.958120 0.016987\nvt 0.946525 0.016944\nvt 0.943642 0.019801\nvt 0.937859 0.015872\nvt 0.943642 0.019801\nvt 0.942078 0.023539\nvt 0.935229 0.022120\nvt 0.935229 0.022120\nvt 0.937859 0.015872\nvt 0.943642 0.019801\nvt 0.942053 0.027589\nvt 0.943591 0.031327\nvt 0.937769 0.035185\nvt 0.943591 0.031327\nvt 0.946455 0.034204\nvt 0.942557 0.040002\nvt 0.942557 0.040002\nvt 0.937769 0.035185\nvt 0.943591 0.031327\nvt 0.950205 0.035772\nvt 0.954290 0.035787\nvt 0.955618 0.042647\nvt 0.954290 0.035787\nvt 0.958060 0.034243\nvt 0.961904 0.040077\nvt 0.961904 0.040077\nvt 0.955618 0.042647\nvt 0.954290 0.035787\nvt 0.960946 0.031380\nvt 0.962513 0.027633\nvt 0.969355 0.029045\nvt 0.962513 0.027633\nvt 0.962516 0.023606\nvt 0.969380 0.022265\nvt 0.969380 0.022265\nvt 0.969355 0.029045\nvt 0.962513 0.027633\nvt 0.960981 0.019860\nvt 0.958120 0.016987\nvt 0.962017 0.011183\nvt 0.958120 0.016987\nvt 0.954373 0.015420\nvt 0.955754 0.008567\nvt 0.948966 0.008539\nvt 0.955754 0.008567\nvt 0.954373 0.015420\nvt 0.954373 0.015420\nvt 0.950296 0.015402\nvt 0.948966 0.008539\nvt 0.942683 0.011103\nvt 0.948966 0.008539\nvt 0.950296 0.015402\nvt 0.950296 0.015402\nvt 0.946525 0.016944\nvt 0.942683 0.011103\nvt 0.937859 0.015872\nvt 0.942683 0.011103\nvt 0.946525 0.016944\nvt 0.955754 0.008567\nvt 0.962017 0.011183\nvt 0.958120 0.016987\nvt 0.955754 0.008567\nvt 0.948966 0.008539\nvt 0.947587 0.001429\nvt 0.947587 0.001429\nvt 0.948966 0.008539\nvt 0.942683 0.011103\nvt 0.947587 0.001429\nvt 0.957193 0.001469\nvt 0.955754 0.008567\nvt 0.942683 0.011103\nvt 0.938693 0.005059\nvt 0.947587 0.001429\nvt 0.938693 0.005059\nvt 0.942683 0.011103\nvt 0.937859 0.015872\nvt 0.937859 0.015872\nvt 0.931861 0.011815\nvt 0.938693 0.005059\nvt 0.931861 0.011815\nvt 0.937859 0.015872\nvt 0.935229 0.022120\nvt 0.935229 0.022120\nvt 0.928134 0.020674\nvt 0.931861 0.011815\nvt 0.928134 0.020674\nvt 0.935229 0.022120\nvt 0.935194 0.028902\nvt 0.935194 0.028902\nvt 0.935229 0.022120\nvt 0.942078 0.023539\nvt 0.942078 0.023539\nvt 0.942053 0.027589\nvt 0.935194 0.028902\nvt 0.937769 0.035185\nvt 0.935194 0.028902\nvt 0.942053 0.027589\nvt 0.935194 0.028902\nvt 0.928090 0.030288\nvt 0.928134 0.020674\nvt 0.928090 0.030288\nvt 0.935194 0.028902\nvt 0.937769 0.035185\nvt 0.937769 0.035185\nvt 0.931737 0.039187\nvt 0.928090 0.030288\nvt 0.931737 0.039187\nvt 0.937769 0.035185\nvt 0.942557 0.040002\nvt 0.942557 0.040002\nvt 0.938515 0.046009\nvt 0.931737 0.039187\nvt 0.938515 0.046009\nvt 0.942557 0.040002\nvt 0.948825 0.042621\nvt 0.948825 0.042621\nvt 0.942557 0.040002\nvt 0.946455 0.034204\nvt 0.946455 0.034204\nvt 0.950205 0.035772\nvt 0.948825 0.042621\nvt 0.955618 0.042647\nvt 0.948825 0.042621\nvt 0.950205 0.035772\nvt 0.948825 0.042621\nvt 0.947386 0.049717\nvt 0.938515 0.046009\nvt 0.947386 0.049717\nvt 0.948825 0.042621\nvt 0.955618 0.042647\nvt 0.955618 0.042647\nvt 0.956999 0.049755\nvt 0.947386 0.049717\nvt 0.956999 0.049755\nvt 0.955618 0.042647\nvt 0.961904 0.040077\nvt 0.961904 0.040077\nvt 0.965897 0.046118\nvt 0.956999 0.049755\nvt 0.965897 0.046118\nvt 0.961904 0.040077\nvt 0.966729 0.035301\nvt 0.966729 0.035301\nvt 0.961904 0.040077\nvt 0.958060 0.034243\nvt 0.958060 0.034243\nvt 0.960946 0.031380\nvt 0.966729 0.035301\nvt 0.969355 0.029045\nvt 0.966729 0.035301\nvt 0.960946 0.031380\nvt 0.966729 0.035301\nvt 0.972728 0.039354\nvt 0.965897 0.046118\nvt 0.972728 0.039354\nvt 0.966729 0.035301\nvt 0.969355 0.029045\nvt 0.969355 0.029045\nvt 0.976449 0.030490\nvt 0.972728 0.039354\nvt 0.976449 0.030490\nvt 0.969355 0.029045\nvt 0.969380 0.022265\nvt 0.969380 0.022265\nvt 0.976487 0.020877\nvt 0.976449 0.030490\nvt 0.976487 0.020877\nvt 0.969380 0.022265\nvt 0.966803 0.015992\nvt 0.966803 0.015992\nvt 0.969380 0.022265\nvt 0.962516 0.023606\nvt 0.962516 0.023606\nvt 0.960981 0.019860\nvt 0.966803 0.015992\nvt 0.962017 0.011183\nvt 0.966803 0.015992\nvt 0.960981 0.019860\nvt 0.966803 0.015992\nvt 0.972835 0.011986\nvt 0.976487 0.020877\nvt 0.972835 0.011986\nvt 0.966803 0.015992\nvt 0.962017 0.011183\nvt 0.962017 0.011183\nvt 0.966058 0.005173\nvt 0.972835 0.011986\nvt 0.966058 0.005173\nvt 0.962017 0.011183\nvt 0.955754 0.008567\nvt 0.955754 0.008567\nvt 0.957193 0.001469\nvt 0.966058 0.005173\nvt 0.660544 0.328002\nvt 0.657859 0.322426\nvt 0.604789 0.326972\nvt 0.604789 0.326972\nvt 0.603800 0.321188\nvt 0.603800 0.321188\nvt 0.603800 0.321188\nvt 0.604789 0.326972\nvt 0.604789 0.326972\nvt 0.604789 0.326972\nvt 0.613674 0.358710\nvt 0.613674 0.358710\nvt 0.613674 0.358710\nvt 0.604789 0.326972\nvt 0.613674 0.358710\nvt 0.613674 0.358710\nvt 0.614611 0.364254\nvt 0.614611 0.364254\nvt 0.614611 0.364254\nvt 0.613674 0.358710\nvt 0.604789 0.326972\nvt 0.603800 0.321188\nvt 0.657859 0.322426\nvt 0.657859 0.322426\nvt 0.658862 0.328236\nvt 0.604789 0.326972\nvt 0.660544 0.328002\nvt 0.658862 0.328236\nvt 0.657859 0.322426\nvt 0.667734 0.359979\nvt 0.658862 0.328236\nvt 0.660544 0.328002\nvt 0.660544 0.328002\nvt 0.669430 0.359860\nvt 0.667734 0.359979\nvt 0.667734 0.359979\nvt 0.669430 0.359860\nvt 0.670042 0.363350\nvt 0.670042 0.363350\nvt 0.668695 0.365491\nvt 0.667734 0.359979\nvt 0.667734 0.359979\nvt 0.668695 0.365491\nvt 0.614611 0.364254\nvt 0.614611 0.364254\nvt 0.613674 0.358710\nvt 0.667734 0.359979\nvt 0.657859 0.322426\nvt 0.659944 0.324599\nvt 0.660544 0.328002\nvt 0.617019 0.354389\nvt 0.613674 0.358710\nvt 0.604789 0.326972\nvt 0.604789 0.326972\nvt 0.610026 0.331027\nvt 0.617019 0.354389\nvt 0.610026 0.331027\nvt 0.604789 0.326972\nvt 0.658862 0.328236\nvt 0.662502 0.355922\nvt 0.667734 0.359979\nvt 0.613674 0.358710\nvt 0.613674 0.358710\nvt 0.617019 0.354389\nvt 0.662502 0.355922\nvt 0.655511 0.332557\nvt 0.658862 0.328236\nvt 0.667734 0.359979\nvt 0.667734 0.359979\nvt 0.662502 0.355922\nvt 0.655511 0.332557\nvt 0.658862 0.328236\nvt 0.655511 0.332557\nvt 0.610026 0.331027\nvt 0.471245 0.085630\nvt 0.489565 0.069636\nvt 0.512392 0.108880\nvt 0.512392 0.108880\nvt 0.494072 0.124874\nvt 0.471245 0.085630\nvt 0.798998 0.164738\nvt 0.798934 0.169525\nvt 0.776821 0.169227\nvt 0.776821 0.169227\nvt 0.776885 0.164440\nvt 0.798998 0.164738\nvt 0.797823 0.373596\nvt 0.797993 0.368812\nvt 0.839251 0.370286\nvt 0.839251 0.370286\nvt 0.839080 0.375070\nvt 0.797823 0.373596\nvt 0.781153 0.238702\nvt 0.781153 0.233914\nvt 0.803268 0.233914\nvt 0.803268 0.233914\nvt 0.803268 0.238702\nvt 0.781153 0.238702\nvt 0.718458 0.078093\nvt 0.718089 0.073319\nvt 0.759251 0.070139\nvt 0.759251 0.070139\nvt 0.759619 0.074913\nvt 0.718458 0.078093\nvt 0.146175 0.669504\nvt 0.183213 0.690885\nvt 0.183213 0.690885\nvt 0.205278 0.700295\nvt 0.183213 0.690885\nvt 0.183213 0.690885\nvt 0.205278 0.700295\nvt 0.367460 0.699745\nvt 0.361226 0.712047\nvt 0.361226 0.712047\nvt 0.377170 0.693436\nvt 0.377170 0.693436\nvt 0.278725 0.687126\nvt 0.278725 0.687126\nvt 0.278725 0.687126\nvt 0.758895 0.002556\nvt 0.758895 0.002556\nvt 0.758070 0.004704\nvt 0.420533 0.808353\nvt 0.420533 0.808353\nvt 0.368443 0.804514\nvt 0.420533 0.808353\nvt 0.368443 0.804514\nvt 0.420533 0.808353\nvt 0.445633 0.809719\nvt 0.334044 0.802041\nvt 0.334044 0.802041\nvt 0.368443 0.804514\nvt 0.334044 0.802041\nvt 0.479720 0.126176\nvt 0.479075 0.126985\nvt 0.479720 0.126176\nvt 0.883403 0.894780\nvt 0.850916 0.877853\nvt 0.850916 0.877853\nvt 0.843982 0.959912\nvt 0.807939 0.925617\nvt 0.843982 0.959912\nvt 0.860320 0.046985\nvt 0.851636 0.040994\nvt 0.860320 0.046985\nvt 0.851636 0.040994\nvt 0.851636 0.040994\nvt 0.847037 0.037820\nvt 0.932398 0.090791\nvt 0.900221 0.072319\nvt 0.932398 0.090791\nvt 0.946168 0.097998\nvt 0.932398 0.090791\nvt 0.946168 0.097998\nvt 0.950359 0.100113\nvt 0.946168 0.097998\nvt 0.900221 0.072319\nvt 0.900221 0.072319\nvt 0.881883 0.060662\nvt 0.950359 0.100113\nvt 0.881883 0.060662\nvt 0.860320 0.046985\nvt 0.860320 0.046985\nvt 0.892664 0.048619\nvt 0.912175 0.060491\nvt 0.912175 0.060491\nvt 0.912175 0.060491\nvt 0.942980 0.077465\nvt 0.942980 0.077465\nvt 0.942980 0.077465\nvt 0.956450 0.084352\nvt 0.892664 0.048619\nvt 0.870605 0.035343\nvt 0.892664 0.048619\nvt 0.870605 0.035343\nvt 0.870605 0.035343\nvt 0.862823 0.030334\nvt 0.870605 0.035343\nvt 0.956450 0.084352\nvt 0.956450 0.084352\nvt 0.960616 0.086542\nvt 0.856741 0.026665\nvt 0.862823 0.030334\nvt 0.856741 0.026665\nvt 0.328440 0.393793\nvt 0.327829 0.391287\nvt 0.328440 0.393793\nvt 0.342488 0.391800\nvt 0.342739 0.394133\nvt 0.342488 0.391800\nvt 0.060048 0.437588\nvt 0.061934 0.442594\nvt 0.060048 0.437588\nvt 0.046301 0.448924\nvt 0.042092 0.443457\nvt 0.046301 0.448924\nvt 0.046301 0.448924\nvt 0.048514 0.451689\nvt 0.061934 0.442594\nvt 0.063020 0.445713\nvt 0.061934 0.442594\nvt 0.041687 0.459683\nvt 0.036957 0.468241\nvt 0.036957 0.468241\nvt 0.036957 0.468241\nvt 0.024236 0.487580\nvt 0.048514 0.451689\nvt 0.041687 0.459683\nvt 0.041687 0.459683\nvt 0.048514 0.451689\nvt 0.055163 0.448061\nvt 0.048514 0.451689\nvt 0.063020 0.445713\nvt 0.055163 0.448061\nvt 0.063020 0.445713\nvt 0.024236 0.487580\nvt 0.063020 0.445713\nvt 0.063020 0.445713\nvt 0.891755 0.129769\nvt 0.899987 0.129636\nvt 0.883522 0.129902\nvt 0.891755 0.129769\nvt 0.899987 0.129636\nvt 0.883522 0.129902\nvt 0.929349 0.144929\nvt 0.904639 0.240197\nvt 0.904639 0.240197\nvt 0.460804 0.931680\nvt 0.455650 0.916253\nvt 0.510869 0.353301\nvt 0.510392 0.365139\nvt 0.510392 0.365139\nvt 0.534701 0.176395\nvt 0.540403 0.173561\nvt 0.263336 0.428823\nvt 0.196508 0.425395\nvt 0.299745 0.431583\nvt 0.263336 0.428823\nvt 0.196508 0.425395\nvt 0.196508 0.425395\nvt 0.169397 0.425809\nvt 0.169397 0.425809\nvt 0.169397 0.425809\nvt 0.169397 0.425809\nvt 0.299745 0.431583\nvt 0.131869 0.433612\nvt 0.100689 0.448533\nvt 0.131869 0.433612\nvt 0.100689 0.448533\nvt 0.112222 0.640640\nvt 0.146175 0.669504\nvt 0.112222 0.640640\nvt 0.347006 0.407033\nvt 0.330254 0.403903\nvt 0.330254 0.403903\nvt 0.327489 0.404156\nvt 0.326356 0.405061\nvt 0.317577 0.413157\nvt 0.326356 0.405061\nvt 0.327489 0.404156\nvt 0.326356 0.405061\nvt 0.327489 0.404156\nvt 0.317577 0.413157\nvt 0.316592 0.414225\nvt 0.317577 0.413157\nvt 0.316592 0.414225\nvt 0.313733 0.410140\nvt 0.313733 0.410140\nvt 0.312302 0.413056\nvt 0.306460 0.432733\nvt 0.315211 0.416568\nvt 0.306460 0.432733\nvt 0.315211 0.416568\nvt 0.316592 0.414225\nvt 0.315211 0.416568\nvt 0.316592 0.414225\nvt 0.401937 0.244444\nvt 0.391607 0.244921\nvt 0.391607 0.244921\nvt 0.389026 0.244717\nvt 0.388052 0.239874\nvt 0.388052 0.239874\nvt 0.377356 0.242451\nvt 0.375891 0.237394\nvt 0.377356 0.242451\nvt 0.373271 0.238134\nvt 0.360824 0.244925\nvt 0.805373 0.924010\nvt 0.807939 0.925617\nvt 0.819461 0.913149\nvt 0.819461 0.913149\nvt 0.805373 0.924010\nvt 0.819461 0.913149\nvt 0.819461 0.913149\nvt 0.850916 0.877853\nvt 0.850916 0.877853\nvt 0.850916 0.877853\nvt 0.153644 0.361926\nvt 0.138780 0.333716\nvt 0.147370 0.333774\nvt 0.147370 0.333774\nvt 0.154722 0.347193\nvt 0.153644 0.361926\nvt 0.153644 0.361926\nvt 0.154722 0.347193\nvt 0.170789 0.349518\nvt 0.170789 0.349518\nvt 0.171372 0.362279\nvt 0.153644 0.361926\nvt 0.171372 0.362279\nvt 0.170789 0.349518\nvt 0.184346 0.349045\nvt 0.184346 0.349045\nvt 0.187320 0.361733\nvt 0.171372 0.362279\nvt 0.187320 0.361733\nvt 0.184346 0.349045\nvt 0.197899 0.348566\nvt 0.197899 0.348566\nvt 0.203308 0.361229\nvt 0.187320 0.361733\nvt 0.203308 0.361229\nvt 0.197899 0.348566\nvt 0.214476 0.345579\nvt 0.214476 0.345579\nvt 0.221442 0.359726\nvt 0.203308 0.361229\nvt 0.221442 0.359726\nvt 0.214476 0.345579\nvt 0.218765 0.340249\nvt 0.218765 0.340249\nvt 0.233404 0.348601\nvt 0.221442 0.359726\nvt 0.233404 0.348601\nvt 0.218765 0.340249\nvt 0.229566 0.326242\nvt 0.229566 0.326242\nvt 0.258626 0.325678\nvt 0.233404 0.348601\nvt 0.147370 0.333774\nvt 0.138780 0.333716\nvt 0.124433 0.309450\nvt 0.124433 0.309450\nvt 0.140482 0.320946\nvt 0.147370 0.333774\nvt 0.171895 0.308597\nvt 0.140482 0.320946\nvt 0.124433 0.309450\nvt 0.171895 0.308597\nvt 0.169838 0.320397\nvt 0.140482 0.320946\nvt 0.171895 0.308597\nvt 0.124433 0.309450\nvt 0.124092 0.308615\nvt 0.234914 0.319107\nvt 0.169838 0.320397\nvt 0.171895 0.308597\nvt 0.258626 0.325678\nvt 0.229566 0.326242\nvt 0.234914 0.319107\nvt 0.234914 0.319107\nvt 0.171895 0.308597\nvt 0.272573 0.311947\nvt 0.234914 0.319107\nvt 0.272399 0.313257\nvt 0.258626 0.325678\nvt 0.234914 0.319107\nvt 0.272573 0.311947\nvt 0.272399 0.313257\nvt 0.172011 0.711313\nvt 0.183213 0.690885\nvt 0.205278 0.700295\nvt 0.205278 0.700295\nvt 0.194773 0.719630\nvt 0.172011 0.711313\nvt 0.194773 0.719630\nvt 0.205278 0.700295\nvt 0.255277 0.714377\nvt 0.255277 0.714377\nvt 0.249050 0.730623\nvt 0.194773 0.719630\nvt 0.146175 0.669504\nvt 0.183213 0.690885\nvt 0.172011 0.711313\nvt 0.172011 0.711313\nvt 0.130183 0.690459\nvt 0.146175 0.669504\nvt 0.183213 0.690885\nvt 0.146175 0.669504\nvt 0.149282 0.662298\nvt 0.149282 0.662298\nvt 0.184911 0.682019\nvt 0.183213 0.690885\nvt 0.184911 0.682019\nvt 0.149282 0.662298\nvt 0.155085 0.652510\nvt 0.155085 0.652510\nvt 0.188469 0.673983\nvt 0.184911 0.682019\nvt 0.255277 0.714377\nvt 0.205278 0.700295\nvt 0.205290 0.690659\nvt 0.183213 0.690885\nvt 0.184911 0.682019\nvt 0.205290 0.690659\nvt 0.205290 0.690659\nvt 0.205278 0.700295\nvt 0.183213 0.690885\nvt 0.205290 0.690659\nvt 0.251955 0.703533\nvt 0.255277 0.714377\nvt 0.251206 0.691919\nvt 0.251955 0.703533\nvt 0.205290 0.690659\nvt 0.251955 0.703533\nvt 0.251206 0.691919\nvt 0.277591 0.691380\nvt 0.277591 0.691380\nvt 0.280829 0.704258\nvt 0.251955 0.703533\nvt 0.255277 0.714377\nvt 0.251955 0.703533\nvt 0.280829 0.704258\nvt 0.315788 0.692111\nvt 0.280829 0.704258\nvt 0.277591 0.691380\nvt 0.277591 0.691380\nvt 0.313388 0.685383\nvt 0.315788 0.692111\nvt 0.353969 0.677380\nvt 0.315788 0.692111\nvt 0.313388 0.685383\nvt 0.315788 0.692111\nvt 0.353969 0.677380\nvt 0.367460 0.699745\nvt 0.367460 0.699745\nvt 0.323326 0.705750\nvt 0.315788 0.692111\nvt 0.280829 0.704258\nvt 0.315788 0.692111\nvt 0.323326 0.705750\nvt 0.313388 0.685383\nvt 0.347454 0.670736\nvt 0.353969 0.677380\nvt 0.323326 0.705750\nvt 0.285403 0.714008\nvt 0.280829 0.704258\nvt 0.282931 0.730877\nvt 0.285403 0.714008\nvt 0.323326 0.705750\nvt 0.323326 0.705750\nvt 0.324618 0.722949\nvt 0.282931 0.730877\nvt 0.324618 0.722949\nvt 0.323326 0.705750\nvt 0.367460 0.699745\nvt 0.367460 0.699745\nvt 0.361226 0.712047\nvt 0.324618 0.722949\nvt 0.361226 0.712047\nvt 0.367460 0.699745\nvt 0.377170 0.693436\nvt 0.377170 0.693436\nvt 0.379627 0.702484\nvt 0.361226 0.712047\nvt 0.379627 0.702484\nvt 0.377170 0.693436\nvt 0.389620 0.683018\nvt 0.389620 0.683018\nvt 0.397074 0.686203\nvt 0.379627 0.702484\nvt 0.280829 0.704258\nvt 0.285403 0.714008\nvt 0.255277 0.714377\nvt 0.397074 0.686203\nvt 0.389620 0.683018\nvt 0.404213 0.667881\nvt 0.404213 0.667881\nvt 0.408750 0.671904\nvt 0.397074 0.686203\nvt 0.408750 0.671904\nvt 0.404213 0.667881\nvt 0.407383 0.664285\nvt 0.407383 0.664285\nvt 0.409977 0.670062\nvt 0.408750 0.671904\nvt 0.409977 0.670062\nvt 0.407383 0.664285\nvt 0.425227 0.633015\nvt 0.249050 0.730623\nvt 0.255277 0.714377\nvt 0.285403 0.714008\nvt 0.285403 0.714008\nvt 0.282931 0.730877\nvt 0.249050 0.730623\nvt 0.321618 0.677809\nvt 0.343052 0.666138\nvt 0.347454 0.670736\nvt 0.347454 0.670736\nvt 0.313388 0.685383\nvt 0.321618 0.677809\nvt 0.343052 0.666138\nvt 0.321618 0.677809\nvt 0.308665 0.677013\nvt 0.308665 0.677013\nvt 0.342063 0.661682\nvt 0.343052 0.666138\nvt 0.321618 0.677809\nvt 0.313388 0.685383\nvt 0.278725 0.687126\nvt 0.321618 0.677809\nvt 0.278725 0.687126\nvt 0.308665 0.677013\nvt 0.313388 0.685383\nvt 0.277591 0.691380\nvt 0.278725 0.687126\nvt 0.251535 0.688213\nvt 0.278725 0.687126\nvt 0.277591 0.691380\nvt 0.277591 0.691380\nvt 0.251206 0.691919\nvt 0.251535 0.688213\nvt 0.251535 0.688213\nvt 0.251206 0.691919\nvt 0.207776 0.681229\nvt 0.205290 0.690659\nvt 0.207776 0.681229\nvt 0.251206 0.691919\nvt 0.207776 0.681229\nvt 0.205290 0.690659\nvt 0.184911 0.682019\nvt 0.184911 0.682019\nvt 0.188469 0.673983\nvt 0.207776 0.681229\nvt 0.207776 0.681229\nvt 0.208046 0.678788\nvt 0.251535 0.688213\nvt 0.188972 0.672360\nvt 0.208046 0.678788\nvt 0.207776 0.681229\nvt 0.207776 0.681229\nvt 0.188469 0.673983\nvt 0.188972 0.672360\nvt 0.188972 0.672360\nvt 0.188469 0.673983\nvt 0.155085 0.652510\nvt 0.155085 0.652510\nvt 0.149282 0.662298\nvt 0.155085 0.652510\nvt 0.112222 0.640640\nvt 0.149282 0.662298\nvt 0.149282 0.662298\nvt 0.146175 0.669504\nvt 0.112222 0.640640\nvt 0.146175 0.669504\nvt 0.130183 0.690459\nvt 0.130183 0.690459\nvt 0.154740 0.652954\nvt 0.739776 0.976569\nvt 0.739231 0.973869\nvt 0.761852 0.971398\nvt 0.739776 0.976569\nvt 0.761852 0.971398\nvt 0.761244 0.974374\nvt 0.761852 0.971398\nvt 0.762543 0.972612\nvt 0.761244 0.974374\nvt 0.739776 0.976569\nvt 0.761244 0.974374\nvt 0.762268 0.979399\nvt 0.768085 0.979591\nvt 0.762268 0.979399\nvt 0.761244 0.974374\nvt 0.762268 0.979399\nvt 0.768085 0.979591\nvt 0.769715 0.987558\nvt 0.769715 0.987558\nvt 0.763877 0.987401\nvt 0.762268 0.979399\nvt 0.765918 0.997433\nvt 0.763877 0.987401\nvt 0.769715 0.987558\nvt 0.769715 0.987558\nvt 0.771804 0.997540\nvt 0.765918 0.997433\nvt 0.740813 0.981560\nvt 0.762268 0.979399\nvt 0.763877 0.987401\nvt 0.762268 0.979399\nvt 0.740813 0.981560\nvt 0.739776 0.976569\nvt 0.763877 0.987401\nvt 0.742541 0.989437\nvt 0.740813 0.981560\nvt 0.744491 0.999447\nvt 0.742541 0.989437\nvt 0.763877 0.987401\nvt 0.763877 0.987401\nvt 0.765918 0.997433\nvt 0.744491 0.999447\nvt 0.782080 0.988376\nvt 0.769715 0.987558\nvt 0.768085 0.979591\nvt 0.771804 0.997540\nvt 0.769715 0.987558\nvt 0.782080 0.988376\nvt 0.768085 0.979591\nvt 0.780294 0.979634\nvt 0.782080 0.988376\nvt 0.782080 0.988376\nvt 0.784360 0.999336\nvt 0.771804 0.997540\nvt 0.761244 0.974374\nvt 0.766936 0.974556\nvt 0.768085 0.979591\nvt 0.780294 0.979634\nvt 0.768085 0.979591\nvt 0.766936 0.974556\nvt 0.766936 0.974556\nvt 0.778148 0.973836\nvt 0.780294 0.979634\nvt 0.775295 0.971470\nvt 0.778148 0.973836\nvt 0.766936 0.974556\nvt 0.766936 0.974556\nvt 0.764988 0.972134\nvt 0.775295 0.971470\nvt 0.764988 0.972134\nvt 0.766936 0.974556\nvt 0.761244 0.974374\nvt 0.764988 0.972134\nvt 0.761244 0.974374\nvt 0.762543 0.972612\nvt 0.764329 0.971132\nvt 0.764990 0.972136\nvt 0.762543 0.972612\nvt 0.762543 0.972612\nvt 0.761852 0.971398\nvt 0.764329 0.971132\nvt 0.866276 0.832458\nvt 0.871428 0.817410\nvt 0.891574 0.826771\nvt 0.891574 0.826771\nvt 0.889726 0.844587\nvt 0.866276 0.832458\nvt 0.866276 0.832458\nvt 0.889726 0.844587\nvt 0.885661 0.878576\nvt 0.885661 0.878576\nvt 0.856016 0.862751\nvt 0.866276 0.832458\nvt 0.856016 0.862751\nvt 0.885661 0.878576\nvt 0.883403 0.894780\nvt 0.883403 0.894780\nvt 0.850916 0.877853\nvt 0.856016 0.862751\nvt 0.743307 0.001651\nvt 0.758895 0.002556\nvt 0.758070 0.004704\nvt 0.758070 0.004704\nvt 0.742756 0.003848\nvt 0.743307 0.001651\nvt 0.743307 0.001651\nvt 0.742756 0.003848\nvt 0.728925 0.003580\nvt 0.728925 0.003580\nvt 0.729202 0.001334\nvt 0.743307 0.001651\nvt 0.729202 0.001334\nvt 0.728925 0.003580\nvt 0.715266 0.003731\nvt 0.715266 0.003731\nvt 0.715277 0.001425\nvt 0.729202 0.001334\nvt 0.715277 0.001425\nvt 0.715266 0.003731\nvt 0.700288 0.004378\nvt 0.700288 0.004378\nvt 0.700050 0.001997\nvt 0.715277 0.001425\nvt 0.790834 0.024803\nvt 0.774159 0.013175\nvt 0.774867 0.010979\nvt 0.774867 0.010979\nvt 0.791499 0.022652\nvt 0.790834 0.024803\nvt 0.758895 0.002556\nvt 0.774867 0.010979\nvt 0.774159 0.013175\nvt 0.774159 0.013175\nvt 0.758070 0.004704\nvt 0.758895 0.002556\nvt 0.667631 0.021301\nvt 0.656271 0.027654\nvt 0.655055 0.026155\nvt 0.655055 0.026155\nvt 0.666663 0.019581\nvt 0.667631 0.021301\nvt 0.667631 0.021301\nvt 0.666663 0.019581\nvt 0.689139 0.007508\nvt 0.689139 0.007508\nvt 0.689618 0.009674\nvt 0.667631 0.021301\nvt 0.700288 0.004378\nvt 0.689618 0.009674\nvt 0.689139 0.007508\nvt 0.689139 0.007508\nvt 0.700050 0.001997\nvt 0.700288 0.004378\nvt 0.421850 0.831624\nvt 0.420533 0.808353\nvt 0.445633 0.809719\nvt 0.445633 0.809719\nvt 0.448696 0.831726\nvt 0.421850 0.831624\nvt 0.420533 0.808353\nvt 0.421850 0.831624\nvt 0.367423 0.830830\nvt 0.367423 0.830830\nvt 0.368443 0.804514\nvt 0.420533 0.808353\nvt 0.366142 0.855164\nvt 0.367423 0.830830\nvt 0.421850 0.831624\nvt 0.421850 0.831624\nvt 0.422994 0.852555\nvt 0.366142 0.855164\nvt 0.421850 0.831624\nvt 0.448696 0.831726\nvt 0.451528 0.851113\nvt 0.451528 0.851113\nvt 0.422994 0.852555\nvt 0.421850 0.831624\nvt 0.334044 0.802041\nvt 0.368443 0.804514\nvt 0.367423 0.830830\nvt 0.367423 0.830830\nvt 0.331347 0.829642\nvt 0.334044 0.802041\nvt 0.284759 0.798873\nvt 0.334044 0.802041\nvt 0.331347 0.829642\nvt 0.331347 0.829642\nvt 0.278223 0.827176\nvt 0.284759 0.798873\nvt 0.235003 0.796410\nvt 0.284759 0.798873\nvt 0.278223 0.827176\nvt 0.278223 0.827176\nvt 0.225196 0.823383\nvt 0.235003 0.796410\nvt 0.235003 0.796410\nvt 0.225196 0.823383\nvt 0.187459 0.821756\nvt 0.187459 0.821756\nvt 0.198378 0.794673\nvt 0.235003 0.796410\nvt 0.198378 0.794673\nvt 0.187459 0.821756\nvt 0.129370 0.819434\nvt 0.129370 0.819434\nvt 0.142957 0.790334\nvt 0.198378 0.794673\nvt 0.120128 0.848010\nvt 0.129370 0.819434\nvt 0.187459 0.821756\nvt 0.187459 0.821756\nvt 0.178938 0.850617\nvt 0.120128 0.848010\nvt 0.178938 0.850617\nvt 0.187459 0.821756\nvt 0.225196 0.823383\nvt 0.225196 0.823383\nvt 0.217693 0.852331\nvt 0.178938 0.850617\nvt 0.366142 0.855164\nvt 0.422994 0.852555\nvt 0.424155 0.873172\nvt 0.424155 0.873172\nvt 0.422994 0.852555\nvt 0.451528 0.851113\nvt 0.278223 0.827176\nvt 0.331347 0.829642\nvt 0.328724 0.855642\nvt 0.328724 0.855642\nvt 0.273125 0.854498\nvt 0.278223 0.827176\nvt 0.225196 0.823383\nvt 0.278223 0.827176\nvt 0.273125 0.854498\nvt 0.273125 0.854498\nvt 0.217693 0.852331\nvt 0.225196 0.823383\nvt 0.273125 0.854498\nvt 0.328724 0.855642\nvt 0.326107 0.882036\nvt 0.326107 0.882036\nvt 0.270562 0.884130\nvt 0.273125 0.854498\nvt 0.217693 0.852331\nvt 0.273125 0.854498\nvt 0.270562 0.884130\nvt 0.270562 0.884130\nvt 0.326107 0.882036\nvt 0.323304 0.910856\nvt 0.323304 0.910856\nvt 0.268793 0.917975\nvt 0.270562 0.884130\nvt 0.270562 0.884130\nvt 0.214975 0.883953\nvt 0.217693 0.852331\nvt 0.214975 0.883953\nvt 0.270562 0.884130\nvt 0.268793 0.917975\nvt 0.268793 0.917975\nvt 0.214150 0.919470\nvt 0.214975 0.883953\nvt 0.323304 0.910856\nvt 0.326107 0.882036\nvt 0.364324 0.879193\nvt 0.364324 0.879193\nvt 0.326107 0.882036\nvt 0.328724 0.855642\nvt 0.364324 0.879193\nvt 0.362341 0.904844\nvt 0.323304 0.910856\nvt 0.362341 0.904844\nvt 0.364324 0.879193\nvt 0.424155 0.873172\nvt 0.424155 0.873172\nvt 0.425662 0.895706\nvt 0.362341 0.904844\nvt 0.175334 0.883052\nvt 0.214975 0.883953\nvt 0.214150 0.919470\nvt 0.120128 0.848010\nvt 0.178938 0.850617\nvt 0.175334 0.883052\nvt 0.217693 0.852331\nvt 0.214975 0.883953\nvt 0.175334 0.883052\nvt 0.175334 0.883052\nvt 0.178938 0.850617\nvt 0.217693 0.852331\nvt 0.214150 0.919470\nvt 0.174026 0.920011\nvt 0.175334 0.883052\nvt 0.175334 0.883052\nvt 0.174026 0.920011\nvt 0.111635 0.917961\nvt 0.111635 0.917961\nvt 0.114806 0.881054\nvt 0.175334 0.883052\nvt 0.328724 0.855642\nvt 0.366142 0.855164\nvt 0.364324 0.879193\nvt 0.424155 0.873172\nvt 0.364324 0.879193\nvt 0.366142 0.855164\nvt 0.089452 0.879338\nvt 0.114806 0.881054\nvt 0.111635 0.917961\nvt 0.114806 0.881054\nvt 0.089452 0.879338\nvt 0.095866 0.845998\nvt 0.056219 0.839753\nvt 0.095866 0.845998\nvt 0.089452 0.879338\nvt 0.089452 0.879338\nvt 0.048643 0.874141\nvt 0.056219 0.839753\nvt 0.048643 0.874141\nvt 0.089452 0.879338\nvt 0.085737 0.916192\nvt 0.111635 0.917961\nvt 0.085737 0.916192\nvt 0.089452 0.879338\nvt 0.085737 0.916192\nvt 0.044029 0.913152\nvt 0.048643 0.874141\nvt 0.095866 0.845998\nvt 0.056219 0.839753\nvt 0.066014 0.810444\nvt 0.066014 0.810444\nvt 0.105076 0.817517\nvt 0.095866 0.845998\nvt 0.105076 0.817517\nvt 0.066014 0.810444\nvt 0.079698 0.780731\nvt 0.079698 0.780731\nvt 0.118948 0.788474\nvt 0.105076 0.817517\nvt 0.095866 0.845998\nvt 0.120128 0.848010\nvt 0.114806 0.881054\nvt 0.175334 0.883052\nvt 0.114806 0.881054\nvt 0.120128 0.848010\nvt 0.105076 0.817517\nvt 0.118948 0.788474\nvt 0.142957 0.790334\nvt 0.142957 0.790334\nvt 0.129370 0.819434\nvt 0.105076 0.817517\nvt 0.095866 0.845998\nvt 0.105076 0.817517\nvt 0.129370 0.819434\nvt 0.129370 0.819434\nvt 0.120128 0.848010\nvt 0.095866 0.845998\nvt 0.056219 0.839753\nvt 0.048643 0.874141\nvt 0.048643 0.874141\nvt 0.044029 0.913152\nvt 0.056219 0.839753\nvt 0.066014 0.810444\nvt 0.056219 0.839753\nvt 0.044029 0.913152\nvt 0.079698 0.780731\nvt 0.066014 0.810444\nvt 0.066014 0.810444\nvt 0.079698 0.780731\nvt 0.449192 0.782508\nvt 0.426684 0.781498\nvt 0.430402 0.755144\nvt 0.430402 0.755144\nvt 0.456227 0.754858\nvt 0.449192 0.782508\nvt 0.430402 0.755144\nvt 0.426684 0.781498\nvt 0.381941 0.778339\nvt 0.381941 0.778339\nvt 0.396095 0.752725\nvt 0.430402 0.755144\nvt 0.396095 0.752725\nvt 0.381941 0.778339\nvt 0.351019 0.775619\nvt 0.351019 0.775619\nvt 0.368705 0.750520\nvt 0.396095 0.752725\nvt 0.381941 0.778339\nvt 0.426684 0.781498\nvt 0.420533 0.808353\nvt 0.420533 0.808353\nvt 0.426684 0.781498\nvt 0.449192 0.782508\nvt 0.420533 0.808353\nvt 0.368443 0.804514\nvt 0.381941 0.778339\nvt 0.351019 0.775619\nvt 0.381941 0.778339\nvt 0.368443 0.804514\nvt 0.449192 0.782508\nvt 0.445633 0.809719\nvt 0.420533 0.808353\nvt 0.322506 0.745373\nvt 0.368705 0.750520\nvt 0.351019 0.775619\nvt 0.351019 0.775619\nvt 0.302240 0.770924\nvt 0.322506 0.745373\nvt 0.302240 0.770924\nvt 0.351019 0.775619\nvt 0.334044 0.802041\nvt 0.368443 0.804514\nvt 0.334044 0.802041\nvt 0.351019 0.775619\nvt 0.334044 0.802041\nvt 0.284759 0.798873\nvt 0.302240 0.770924\nvt 0.302240 0.770924\nvt 0.284759 0.798873\nvt 0.235003 0.796410\nvt 0.235003 0.796410\nvt 0.251745 0.766543\nvt 0.302240 0.770924\nvt 0.322506 0.745373\nvt 0.302240 0.770924\nvt 0.251745 0.766543\nvt 0.251745 0.766543\nvt 0.272890 0.739488\nvt 0.322506 0.745373\nvt 0.272890 0.739488\nvt 0.251745 0.766543\nvt 0.215376 0.762980\nvt 0.215376 0.762980\nvt 0.251745 0.766543\nvt 0.235003 0.796410\nvt 0.215376 0.762980\nvt 0.236084 0.733984\nvt 0.272890 0.739488\nvt 0.236084 0.733984\nvt 0.215376 0.762980\nvt 0.162195 0.755421\nvt 0.162195 0.755421\nvt 0.182005 0.723915\nvt 0.236084 0.733984\nvt 0.142957 0.790334\nvt 0.162195 0.755421\nvt 0.215376 0.762980\nvt 0.139342 0.752378\nvt 0.162195 0.755421\nvt 0.142957 0.790334\nvt 0.142957 0.790334\nvt 0.118948 0.788474\nvt 0.139342 0.752378\nvt 0.139342 0.752378\nvt 0.118948 0.788474\nvt 0.079698 0.780731\nvt 0.079698 0.780731\nvt 0.102257 0.743072\nvt 0.139342 0.752378\nvt 0.160769 0.719032\nvt 0.139342 0.752378\nvt 0.102257 0.743072\nvt 0.160769 0.719032\nvt 0.182005 0.723915\nvt 0.162195 0.755421\nvt 0.162195 0.755421\nvt 0.139342 0.752378\nvt 0.160769 0.719032\nvt 0.102257 0.743072\nvt 0.123933 0.708841\nvt 0.160769 0.719032\nvt 0.215376 0.762980\nvt 0.198378 0.794673\nvt 0.142957 0.790334\nvt 0.235003 0.796410\nvt 0.198378 0.794673\nvt 0.215376 0.762980\nvt 0.102257 0.743072\nvt 0.079698 0.780731\nvt 0.102257 0.743072\nvt 0.123933 0.708841\nvt 0.102257 0.743072\nvt 0.123933 0.708841\nvt 0.481681 0.127278\nvt 0.481078 0.128078\nvt 0.479075 0.126985\nvt 0.479075 0.126985\nvt 0.479720 0.126176\nvt 0.481681 0.127278\nvt 0.650292 0.032266\nvt 0.650969 0.031534\nvt 0.670394 0.037497\nvt 0.670394 0.037497\nvt 0.670253 0.039241\nvt 0.650292 0.032266\nvt 0.670253 0.039241\nvt 0.670394 0.037497\nvt 0.687820 0.042435\nvt 0.687820 0.042435\nvt 0.689317 0.044768\nvt 0.670253 0.039241\nvt 0.689317 0.044768\nvt 0.687820 0.042435\nvt 0.703762 0.040947\nvt 0.703762 0.040947\nvt 0.704509 0.043611\nvt 0.689317 0.044768\nvt 0.704509 0.043611\nvt 0.703762 0.040947\nvt 0.718034 0.040868\nvt 0.718034 0.040868\nvt 0.718462 0.043603\nvt 0.704509 0.043611\nvt 0.718462 0.043603\nvt 0.718034 0.040868\nvt 0.732086 0.041528\nvt 0.732086 0.041528\nvt 0.732238 0.044294\nvt 0.718462 0.043603\nvt 0.732238 0.044294\nvt 0.732086 0.041528\nvt 0.747492 0.043034\nvt 0.747492 0.043034\nvt 0.747204 0.045794\nvt 0.732238 0.044294\nvt 0.747204 0.045794\nvt 0.747492 0.043034\nvt 0.759415 0.039960\nvt 0.759415 0.039960\nvt 0.758977 0.042447\nvt 0.747204 0.045794\nvt 0.783790 0.035979\nvt 0.758977 0.042447\nvt 0.759415 0.039960\nvt 0.759415 0.039960\nvt 0.784335 0.034028\nvt 0.783790 0.035979\nvt 0.783790 0.035979\nvt 0.784335 0.034028\nvt 0.797261 0.030694\nvt 0.797261 0.030694\nvt 0.796764 0.032397\nvt 0.783790 0.035979\nvt 0.507856 0.010592\nvt 0.506199 0.009250\nvt 0.516914 0.001356\nvt 0.516914 0.001356\nvt 0.518266 0.002791\nvt 0.507856 0.010592\nvt 0.506199 0.009250\nvt 0.507856 0.010592\nvt 0.489052 0.026836\nvt 0.489052 0.026836\nvt 0.486791 0.025680\nvt 0.506199 0.009250\nvt 0.486791 0.025680\nvt 0.489052 0.026836\nvt 0.480642 0.035273\nvt 0.480642 0.035273\nvt 0.478072 0.034187\nvt 0.486791 0.025680\nvt 0.478072 0.034187\nvt 0.480642 0.035273\nvt 0.475732 0.049478\nvt 0.475732 0.049478\nvt 0.473202 0.048309\nvt 0.478072 0.034187\nvt 0.473202 0.048309\nvt 0.475732 0.049478\nvt 0.471627 0.062528\nvt 0.471627 0.062528\nvt 0.469131 0.061313\nvt 0.473202 0.048309\nvt 0.469131 0.061313\nvt 0.471627 0.062528\nvt 0.467948 0.075886\nvt 0.467948 0.075886\nvt 0.465494 0.074623\nvt 0.469131 0.061313\nvt 0.465494 0.074623\nvt 0.467948 0.075886\nvt 0.464443 0.090816\nvt 0.464443 0.090816\nvt 0.462028 0.089468\nvt 0.465494 0.074623\nvt 0.462028 0.089468\nvt 0.464443 0.090816\nvt 0.471606 0.107537\nvt 0.471606 0.107537\nvt 0.469933 0.107833\nvt 0.462028 0.089468\nvt 0.469933 0.107833\nvt 0.471606 0.107537\nvt 0.479720 0.126176\nvt 0.479720 0.126176\nvt 0.479075 0.126985\nvt 0.469933 0.107833\nvt 0.843982 0.959912\nvt 0.821792 0.974344\nvt 0.779084 0.938612\nvt 0.779084 0.938612\nvt 0.807939 0.925617\nvt 0.843982 0.959912\nvt 0.754568 0.949468\nvt 0.779084 0.938612\nvt 0.821792 0.974344\nvt 0.821792 0.974344\nvt 0.796345 0.987604\nvt 0.754568 0.949468\nvt 0.850916 0.877853\nvt 0.883403 0.894780\nvt 0.873880 0.912262\nvt 0.873880 0.912262\nvt 0.839762 0.890599\nvt 0.850916 0.877853\nvt 0.839762 0.890599\nvt 0.873880 0.912262\nvt 0.864722 0.928001\nvt 0.864722 0.928001\nvt 0.829595 0.901840\nvt 0.839762 0.890599\nvt 0.829595 0.901840\nvt 0.864722 0.928001\nvt 0.854977 0.943591\nvt 0.854977 0.943591\nvt 0.819461 0.913149\nvt 0.829595 0.901840\nvt 0.819461 0.913149\nvt 0.854977 0.943591\nvt 0.843982 0.959912\nvt 0.843982 0.959912\nvt 0.807939 0.925617\nvt 0.819461 0.913149\nvt 0.088991 0.995801\nvt 0.047867 0.994239\nvt 0.046918 0.972806\nvt 0.046918 0.972806\nvt 0.088208 0.974221\nvt 0.088991 0.995801\nvt 0.088208 0.974221\nvt 0.046918 0.972806\nvt 0.045530 0.952049\nvt 0.045530 0.952049\nvt 0.087218 0.953641\nvt 0.088208 0.974221\nvt 0.087218 0.953641\nvt 0.045530 0.952049\nvt 0.044412 0.932394\nvt 0.044412 0.932394\nvt 0.086378 0.934569\nvt 0.087218 0.953641\nvt 0.086378 0.934569\nvt 0.044412 0.932394\nvt 0.044029 0.913152\nvt 0.044029 0.913152\nvt 0.085737 0.916192\nvt 0.086378 0.934569\nvt 0.115325 0.976054\nvt 0.088208 0.974221\nvt 0.087218 0.953641\nvt 0.087218 0.953641\nvt 0.113897 0.955476\nvt 0.115325 0.976054\nvt 0.088208 0.974221\nvt 0.115325 0.976054\nvt 0.116869 0.997634\nvt 0.116869 0.997634\nvt 0.088991 0.995801\nvt 0.088208 0.974221\nvt 0.116869 0.997634\nvt 0.115325 0.976054\nvt 0.180702 0.977345\nvt 0.180702 0.977345\nvt 0.115325 0.976054\nvt 0.113897 0.955476\nvt 0.180702 0.977345\nvt 0.183431 0.998703\nvt 0.116869 0.997634\nvt 0.113897 0.955476\nvt 0.178557 0.956951\nvt 0.180702 0.977345\nvt 0.176465 0.938240\nvt 0.178557 0.956951\nvt 0.113897 0.955476\nvt 0.113897 0.955476\nvt 0.112731 0.936400\nvt 0.176465 0.938240\nvt 0.087218 0.953641\nvt 0.086378 0.934569\nvt 0.112731 0.936400\nvt 0.112731 0.936400\nvt 0.113897 0.955476\nvt 0.087218 0.953641\nvt 0.174026 0.920011\nvt 0.176465 0.938240\nvt 0.112731 0.936400\nvt 0.176465 0.938240\nvt 0.174026 0.920011\nvt 0.214150 0.919470\nvt 0.214150 0.919470\nvt 0.218034 0.937886\nvt 0.176465 0.938240\nvt 0.178557 0.956951\nvt 0.176465 0.938240\nvt 0.218034 0.937886\nvt 0.112731 0.936400\nvt 0.111635 0.917961\nvt 0.174026 0.920011\nvt 0.111635 0.917961\nvt 0.112731 0.936400\nvt 0.086378 0.934569\nvt 0.086378 0.934569\nvt 0.085737 0.916192\nvt 0.111635 0.917961\nvt 0.218034 0.937886\nvt 0.221321 0.957509\nvt 0.178557 0.956951\nvt 0.180702 0.977345\nvt 0.178557 0.956951\nvt 0.221321 0.957509\nvt 0.275682 0.936054\nvt 0.218034 0.937886\nvt 0.214150 0.919470\nvt 0.218034 0.937886\nvt 0.275682 0.936054\nvt 0.221321 0.957509\nvt 0.214150 0.919470\nvt 0.268793 0.917975\nvt 0.275682 0.936054\nvt 0.333094 0.926511\nvt 0.275682 0.936054\nvt 0.268793 0.917975\nvt 0.268793 0.917975\nvt 0.323304 0.910856\nvt 0.333094 0.926511\nvt 0.333094 0.926511\nvt 0.323304 0.910856\nvt 0.362341 0.904844\nvt 0.362341 0.904844\nvt 0.370788 0.919936\nvt 0.333094 0.926511\nvt 0.370788 0.919936\nvt 0.362341 0.904844\nvt 0.425662 0.895706\nvt 0.425662 0.895706\nvt 0.431619 0.911308\nvt 0.370788 0.919936\nvt 0.387415 0.951058\nvt 0.370788 0.919936\nvt 0.431619 0.911308\nvt 0.431619 0.911308\nvt 0.442703 0.943292\nvt 0.387415 0.951058\nvt 0.449420 0.960282\nvt 0.387415 0.951058\nvt 0.442703 0.943292\nvt 0.449420 0.960282\nvt 0.442703 0.943292\nvt 0.459113 0.934026\nvt 0.475921 0.939368\nvt 0.449420 0.960282\nvt 0.459113 0.934026\nvt 0.475921 0.939368\nvt 0.482844 0.956144\nvt 0.449420 0.960282\nvt 0.460804 0.931680\nvt 0.475921 0.939368\nvt 0.459113 0.934026\nvt 0.460804 0.931680\nvt 0.455650 0.916253\nvt 0.475921 0.939368\nvt 0.455650 0.916253\nvt 0.463807 0.906803\nvt 0.475921 0.939368\nvt 0.455650 0.916253\nvt 0.454994 0.914881\nvt 0.463807 0.906803\nvt 0.449420 0.960282\nvt 0.415943 0.964376\nvt 0.387415 0.951058\nvt 0.415943 0.964376\nvt 0.395840 0.967462\nvt 0.387415 0.951058\nvt 0.431619 0.911308\nvt 0.425662 0.895706\nvt 0.457840 0.891048\nvt 0.454994 0.914881\nvt 0.457840 0.891048\nvt 0.463807 0.906803\nvt 0.452769 0.913547\nvt 0.431619 0.911308\nvt 0.457840 0.891048\nvt 0.454994 0.914881\nvt 0.452769 0.913547\nvt 0.457840 0.891048\nvt 0.442582 0.940131\nvt 0.442703 0.943292\nvt 0.431619 0.911308\nvt 0.431619 0.911308\nvt 0.435228 0.913324\nvt 0.442582 0.940131\nvt 0.847037 0.037820\nvt 0.852971 0.033181\nvt 0.857125 0.035971\nvt 0.857125 0.035971\nvt 0.851636 0.040994\nvt 0.847037 0.037820\nvt 0.851636 0.040994\nvt 0.857125 0.035971\nvt 0.864986 0.041149\nvt 0.864986 0.041149\nvt 0.860320 0.046985\nvt 0.851636 0.040994\nvt 0.870605 0.035343\nvt 0.864986 0.041149\nvt 0.857125 0.035971\nvt 0.857125 0.035971\nvt 0.862823 0.030334\nvt 0.870605 0.035343\nvt 0.862823 0.030334\nvt 0.857125 0.035971\nvt 0.852971 0.033181\nvt 0.852971 0.033181\nvt 0.856741 0.026665\nvt 0.862823 0.030334\nvt 0.881883 0.060662\nvt 0.860320 0.046985\nvt 0.864986 0.041149\nvt 0.864986 0.041149\nvt 0.886856 0.054566\nvt 0.881883 0.060662\nvt 0.886856 0.054566\nvt 0.864986 0.041149\nvt 0.870605 0.035343\nvt 0.881883 0.060662\nvt 0.886856 0.054566\nvt 0.906190 0.066548\nvt 0.906190 0.066548\nvt 0.900221 0.072319\nvt 0.881883 0.060662\nvt 0.900221 0.072319\nvt 0.906190 0.066548\nvt 0.937137 0.084114\nvt 0.937137 0.084114\nvt 0.932398 0.090791\nvt 0.900221 0.072319\nvt 0.932398 0.090791\nvt 0.937137 0.084114\nvt 0.950656 0.091057\nvt 0.950656 0.091057\nvt 0.946168 0.097998\nvt 0.932398 0.090791\nvt 0.950656 0.091057\nvt 0.937137 0.084114\nvt 0.942980 0.077465\nvt 0.942980 0.077465\nvt 0.956450 0.084352\nvt 0.950656 0.091057\nvt 0.946168 0.097998\nvt 0.950656 0.091057\nvt 0.954859 0.093195\nvt 0.954859 0.093195\nvt 0.950656 0.091057\nvt 0.956450 0.084352\nvt 0.954859 0.093195\nvt 0.950359 0.100113\nvt 0.946168 0.097998\nvt 0.956450 0.084352\nvt 0.960616 0.086542\nvt 0.954859 0.093195\nvt 0.937137 0.084114\nvt 0.906190 0.066548\nvt 0.912175 0.060491\nvt 0.912175 0.060491\nvt 0.942980 0.077465\nvt 0.937137 0.084114\nvt 0.892664 0.048619\nvt 0.912175 0.060491\nvt 0.906190 0.066548\nvt 0.906190 0.066548\nvt 0.886856 0.054566\nvt 0.892664 0.048619\nvt 0.870605 0.035343\nvt 0.892664 0.048619\nvt 0.886856 0.054566\nvt 0.964065 0.077628\nvt 0.956450 0.084352\nvt 0.942980 0.077465\nvt 0.942980 0.077465\nvt 0.950559 0.070792\nvt 0.964065 0.077628\nvt 0.950559 0.070792\nvt 0.942980 0.077465\nvt 0.912175 0.060491\nvt 0.972709 0.070745\nvt 0.964065 0.077628\nvt 0.950559 0.070792\nvt 0.950559 0.070792\nvt 0.959204 0.063947\nvt 0.972709 0.070745\nvt 0.912175 0.060491\nvt 0.920020 0.053870\nvt 0.950559 0.070792\nvt 0.959204 0.063947\nvt 0.950559 0.070792\nvt 0.920020 0.053870\nvt 0.920020 0.053870\nvt 0.912175 0.060491\nvt 0.892664 0.048619\nvt 0.920020 0.053870\nvt 0.928724 0.046958\nvt 0.959204 0.063947\nvt 0.892664 0.048619\nvt 0.900533 0.041987\nvt 0.920020 0.053870\nvt 0.900533 0.041987\nvt 0.892664 0.048619\nvt 0.870605 0.035343\nvt 0.920020 0.053870\nvt 0.900533 0.041987\nvt 0.909256 0.035023\nvt 0.909256 0.035023\nvt 0.928724 0.046958\nvt 0.920020 0.053870\nvt 0.870605 0.035343\nvt 0.878483 0.028610\nvt 0.900533 0.041987\nvt 0.870667 0.023638\nvt 0.878483 0.028610\nvt 0.870605 0.035343\nvt 0.870605 0.035343\nvt 0.862823 0.030334\nvt 0.870667 0.023638\nvt 0.900533 0.041987\nvt 0.878483 0.028610\nvt 0.887220 0.021552\nvt 0.887220 0.021552\nvt 0.909256 0.035023\nvt 0.900533 0.041987\nvt 0.887220 0.021552\nvt 0.878483 0.028610\nvt 0.870667 0.023638\nvt 0.870667 0.023638\nvt 0.879364 0.016579\nvt 0.887220 0.021552\nvt 0.964065 0.077628\nvt 0.972709 0.070745\nvt 0.976857 0.072865\nvt 0.976857 0.072865\nvt 0.968226 0.079789\nvt 0.964065 0.077628\nvt 0.956450 0.084352\nvt 0.964065 0.077628\nvt 0.968226 0.079789\nvt 0.968226 0.079789\nvt 0.960616 0.086542\nvt 0.956450 0.084352\nvt 0.870667 0.023638\nvt 0.862823 0.030334\nvt 0.856741 0.026665\nvt 0.856741 0.026665\nvt 0.866487 0.019897\nvt 0.870667 0.023638\nvt 0.879364 0.016579\nvt 0.870667 0.023638\nvt 0.866487 0.019897\nvt 0.866487 0.019897\nvt 0.875018 0.013568\nvt 0.879364 0.016579\nvt 0.869700 0.009349\nvt 0.875018 0.013568\nvt 0.866487 0.019897\nvt 0.866487 0.019897\nvt 0.861639 0.013337\nvt 0.869700 0.009349\nvt 0.861639 0.013337\nvt 0.866487 0.019897\nvt 0.856831 0.026417\nvt 0.856831 0.026417\nvt 0.851805 0.018355\nvt 0.861639 0.013337\nvt 0.863918 0.004523\nvt 0.869700 0.009349\nvt 0.861639 0.013337\nvt 0.861639 0.013337\nvt 0.856536 0.005262\nvt 0.863918 0.004523\nvt 0.856536 0.005262\nvt 0.861639 0.013337\nvt 0.851805 0.018355\nvt 0.851805 0.018355\nvt 0.847216 0.007248\nvt 0.856536 0.005262\nvt 0.361004 0.663329\nvt 0.369211 0.669403\nvt 0.362933 0.674671\nvt 0.362933 0.674671\nvt 0.355911 0.667442\nvt 0.361004 0.663329\nvt 0.355911 0.667442\nvt 0.362933 0.674671\nvt 0.353969 0.677380\nvt 0.353969 0.677380\nvt 0.347454 0.670736\nvt 0.355911 0.667442\nvt 0.367460 0.699745\nvt 0.353969 0.677380\nvt 0.362933 0.674671\nvt 0.362933 0.674671\nvt 0.374144 0.688819\nvt 0.367460 0.699745\nvt 0.374144 0.688819\nvt 0.362933 0.674671\nvt 0.369211 0.669403\nvt 0.374144 0.688819\nvt 0.369211 0.669403\nvt 0.374905 0.677456\nvt 0.374144 0.688819\nvt 0.374905 0.677456\nvt 0.890982 0.076962\nvt 0.927626 0.098527\nvt 0.890982 0.076962\nvt 0.881468 0.080255\nvt 0.890982 0.076962\nvt 0.927626 0.098527\nvt 0.927626 0.098527\nvt 0.928176 0.106914\nvt 0.881468 0.080255\nvt 0.927626 0.098527\nvt 0.942586 0.107125\nvt 0.927626 0.098527\nvt 0.942586 0.107125\nvt 0.940256 0.115590\nvt 0.927626 0.098527\nvt 0.940256 0.115590\nvt 0.922750 0.109083\nvt 0.927626 0.098527\nvt 0.890982 0.076962\nvt 0.876233 0.067717\nvt 0.876233 0.067717\nvt 0.890982 0.076962\nvt 0.881468 0.080255\nvt 0.875533 0.076572\nvt 0.875533 0.076572\nvt 0.876233 0.067717\nvt 0.890982 0.076962\nvt 0.942586 0.107125\nvt 0.946655 0.109504\nvt 0.942586 0.107125\nvt 0.944471 0.118341\nvt 0.940256 0.115590\nvt 0.942586 0.107125\nvt 0.942586 0.107125\nvt 0.946655 0.109504\nvt 0.944471 0.118341\nvt 0.940256 0.115590\nvt 0.944471 0.118341\nvt 0.936487 0.145447\nvt 0.936487 0.145447\nvt 0.929349 0.144929\nvt 0.940256 0.115590\nvt 0.922750 0.109083\nvt 0.940256 0.115590\nvt 0.929349 0.144929\nvt 0.929349 0.144929\nvt 0.917096 0.151651\nvt 0.922750 0.109083\nvt 0.894275 0.240505\nvt 0.917096 0.151651\nvt 0.929349 0.144929\nvt 0.929349 0.144929\nvt 0.904639 0.240197\nvt 0.894275 0.240505\nvt 0.876233 0.067717\nvt 0.875533 0.076572\nvt 0.850369 0.059862\nvt 0.850369 0.059862\nvt 0.855023 0.053845\nvt 0.876233 0.067717\nvt 0.855023 0.053845\nvt 0.850369 0.059862\nvt 0.831544 0.047464\nvt 0.831544 0.047464\nvt 0.842386 0.044852\nvt 0.855023 0.053845\nvt 0.855023 0.053845\nvt 0.842386 0.044852\nvt 0.876233 0.067717\nvt 0.855023 0.053845\nvt 0.876233 0.067717\nvt 0.842386 0.044852\nvt 0.842386 0.044852\nvt 0.834591 0.039299\nvt 0.834591 0.039299\nvt 0.818599 0.038455\nvt 0.834591 0.039299\nvt 0.842386 0.044852\nvt 0.842386 0.044852\nvt 0.831544 0.047464\nvt 0.818599 0.038455\nvt 0.847037 0.037820\nvt 0.847037 0.037820\nvt 0.851636 0.040994\nvt 0.851636 0.040994\nvt 0.851636 0.040994\nvt 0.860320 0.046985\nvt 0.860320 0.046985\nvt 0.881883 0.060662\nvt 0.881883 0.060662\nvt 0.881883 0.060662\nvt 0.881883 0.060662\nvt 0.900221 0.072319\nvt 0.900221 0.072319\nvt 0.932398 0.090791\nvt 0.932398 0.090791\nvt 0.932398 0.090791\nvt 0.946168 0.097998\nvt 0.946168 0.097998\nvt 0.946168 0.097998\nvt 0.950359 0.100113\nvt 0.950359 0.100113\nvt 0.922750 0.109083\nvt 0.928176 0.106914\nvt 0.927626 0.098527\nvt 0.327829 0.391287\nvt 0.334799 0.390793\nvt 0.335235 0.393220\nvt 0.335235 0.393220\nvt 0.328440 0.393793\nvt 0.327829 0.391287\nvt 0.335235 0.393220\nvt 0.334799 0.390793\nvt 0.342488 0.391800\nvt 0.342488 0.391800\nvt 0.342739 0.394133\nvt 0.335235 0.393220\nvt 0.352388 0.396850\nvt 0.342739 0.394133\nvt 0.342488 0.391800\nvt 0.342488 0.391800\nvt 0.352161 0.394568\nvt 0.352388 0.396850\nvt 0.352388 0.396850\nvt 0.352161 0.394568\nvt 0.362745 0.398270\nvt 0.362745 0.398270\nvt 0.362968 0.400555\nvt 0.352388 0.396850\nvt 0.327829 0.391287\nvt 0.328440 0.393793\nvt 0.327829 0.391287\nvt 0.319010 0.394464\nvt 0.319409 0.397121\nvt 0.319010 0.394464\nvt 0.319010 0.394464\nvt 0.319409 0.397121\nvt 0.311526 0.401223\nvt 0.311526 0.401223\nvt 0.311329 0.398495\nvt 0.319010 0.394464\nvt 0.286358 0.409383\nvt 0.311329 0.398495\nvt 0.311526 0.401223\nvt 0.311526 0.401223\nvt 0.288073 0.411640\nvt 0.286358 0.409383\nvt 0.842666 0.295706\nvt 0.842151 0.289114\nvt 0.844735 0.288781\nvt 0.844735 0.288781\nvt 0.845244 0.295619\nvt 0.842666 0.295706\nvt 0.842666 0.295706\nvt 0.845244 0.295619\nvt 0.845751 0.302459\nvt 0.845751 0.302459\nvt 0.843180 0.302299\nvt 0.842666 0.295706\nvt 0.042092 0.443457\nvt 0.050326 0.439252\nvt 0.053349 0.444779\nvt 0.053349 0.444779\nvt 0.046301 0.448924\nvt 0.042092 0.443457\nvt 0.053349 0.444779\nvt 0.050326 0.439252\nvt 0.060048 0.437588\nvt 0.060048 0.437588\nvt 0.061934 0.442594\nvt 0.053349 0.444779\nvt 0.072517 0.442661\nvt 0.061934 0.442594\nvt 0.060048 0.437588\nvt 0.060048 0.437588\nvt 0.071301 0.438829\nvt 0.072517 0.442661\nvt 0.084048 0.445173\nvt 0.072517 0.442661\nvt 0.071301 0.438829\nvt 0.071301 0.438829\nvt 0.083153 0.441640\nvt 0.084048 0.445173\nvt 0.046301 0.448924\nvt 0.053349 0.444779\nvt 0.055163 0.448061\nvt 0.055163 0.448061\nvt 0.053349 0.444779\nvt 0.061934 0.442594\nvt 0.055163 0.448061\nvt 0.048514 0.451689\nvt 0.046301 0.448924\nvt 0.061934 0.442594\nvt 0.063020 0.445713\nvt 0.055163 0.448061\nvt 0.073014 0.445550\nvt 0.063020 0.445713\nvt 0.061934 0.442594\nvt 0.061934 0.442594\nvt 0.072517 0.442661\nvt 0.073014 0.445550\nvt 0.072517 0.442661\nvt 0.084048 0.445173\nvt 0.083637 0.448901\nvt 0.083637 0.448901\nvt 0.073014 0.445550\nvt 0.072517 0.442661\nvt 0.048514 0.451689\nvt 0.055163 0.448061\nvt 0.056697 0.451174\nvt 0.056697 0.451174\nvt 0.055163 0.448061\nvt 0.063020 0.445713\nvt 0.056697 0.451174\nvt 0.050877 0.454427\nvt 0.048514 0.451689\nvt 0.063020 0.445713\nvt 0.063782 0.449025\nvt 0.056697 0.451174\nvt 0.073284 0.448898\nvt 0.063782 0.449025\nvt 0.063020 0.445713\nvt 0.063020 0.445713\nvt 0.073014 0.445550\nvt 0.073284 0.448898\nvt 0.073014 0.445550\nvt 0.083637 0.448901\nvt 0.082952 0.451914\nvt 0.082952 0.451914\nvt 0.073284 0.448898\nvt 0.073014 0.445550\nvt 0.048514 0.451689\nvt 0.050877 0.454427\nvt 0.048514 0.451689\nvt 0.045524 0.454778\nvt 0.045524 0.454778\nvt 0.041687 0.459683\nvt 0.041687 0.459683\nvt 0.039216 0.457120\nvt 0.039216 0.457120\nvt 0.033815 0.451364\nvt 0.033815 0.451364\nvt 0.033815 0.451364\nvt 0.039216 0.457120\nvt 0.033729 0.465592\nvt 0.033729 0.465592\nvt 0.039216 0.457120\nvt 0.041687 0.459683\nvt 0.033729 0.465592\nvt 0.027522 0.459384\nvt 0.033815 0.451364\nvt 0.008639 0.481479\nvt 0.027522 0.459384\nvt 0.033729 0.465592\nvt 0.033729 0.465592\nvt 0.019015 0.486441\nvt 0.008639 0.481479\nvt 0.041687 0.459683\nvt 0.036957 0.468241\nvt 0.033729 0.465592\nvt 0.019015 0.486441\nvt 0.033729 0.465592\nvt 0.036957 0.468241\nvt 0.036957 0.468241\nvt 0.024236 0.487580\nvt 0.019015 0.486441\nvt 0.036957 0.468241\nvt 0.041687 0.459683\nvt 0.044040 0.461879\nvt 0.044040 0.461879\nvt 0.041687 0.459683\nvt 0.044040 0.461879\nvt 0.039660 0.469740\nvt 0.036957 0.468241\nvt 0.024236 0.487580\nvt 0.036957 0.468241\nvt 0.039660 0.469740\nvt 0.044040 0.461879\nvt 0.039660 0.469740\nvt 0.028958 0.485998\nvt 0.024236 0.487580\nvt 0.046301 0.448924\nvt 0.042092 0.443457\nvt 0.046301 0.448924\nvt 0.046301 0.448924\nvt 0.048514 0.451689\nvt 0.050877 0.454427\nvt 0.890546 0.133336\nvt 0.898858 0.133052\nvt 0.897177 0.141249\nvt 0.897177 0.141249\nvt 0.889259 0.142153\nvt 0.890546 0.133336\nvt 0.890546 0.133336\nvt 0.889259 0.142153\nvt 0.881342 0.143058\nvt 0.881342 0.143058\nvt 0.882234 0.133619\nvt 0.890546 0.133336\nvt 0.898858 0.133052\nvt 0.890546 0.133336\nvt 0.891755 0.129769\nvt 0.891755 0.129769\nvt 0.890546 0.133336\nvt 0.882234 0.133619\nvt 0.891755 0.129769\nvt 0.899987 0.129636\nvt 0.898858 0.133052\nvt 0.882234 0.133619\nvt 0.883522 0.129902\nvt 0.891755 0.129769\nvt 0.899987 0.129636\nvt 0.891755 0.129769\nvt 0.893796 0.126511\nvt 0.893796 0.126511\nvt 0.891755 0.129769\nvt 0.883522 0.129902\nvt 0.893796 0.126511\nvt 0.901867 0.126399\nvt 0.899987 0.129636\nvt 0.883522 0.129902\nvt 0.885726 0.126622\nvt 0.893796 0.126511\nvt 0.824178 0.189923\nvt 0.824437 0.191554\nvt 0.824178 0.189923\nvt 0.824437 0.191554\nvt 0.824178 0.189923\nvt 0.831975 0.188623\nvt 0.831975 0.188623\nvt 0.832482 0.190327\nvt 0.824437 0.191554\nvt 0.832482 0.190327\nvt 0.831975 0.188623\nvt 0.856580 0.187627\nvt 0.856580 0.187627\nvt 0.858031 0.188961\nvt 0.832482 0.190327\nvt 0.858031 0.188961\nvt 0.856580 0.187627\nvt 0.857454 0.180792\nvt 0.857454 0.180792\nvt 0.858982 0.181246\nvt 0.858031 0.188961\nvt 0.858982 0.181246\nvt 0.857454 0.180792\nvt 0.858238 0.174059\nvt 0.858238 0.174059\nvt 0.860034 0.173429\nvt 0.858982 0.181246\nvt 0.815741 0.191061\nvt 0.815741 0.191061\nvt 0.815446 0.189784\nvt 0.815446 0.189784\nvt 0.815741 0.191061\nvt 0.808887 0.189604\nvt 0.808887 0.189604\nvt 0.809003 0.188603\nvt 0.815446 0.189784\nvt 0.809003 0.188603\nvt 0.808887 0.189604\nvt 0.801309 0.188377\nvt 0.801309 0.188377\nvt 0.801956 0.187224\nvt 0.809003 0.188603\nvt 0.801956 0.187224\nvt 0.801309 0.188377\nvt 0.793389 0.183900\nvt 0.793389 0.183900\nvt 0.794160 0.182501\nvt 0.801956 0.187224\nvt 0.794160 0.182501\nvt 0.793389 0.183900\nvt 0.786943 0.176172\nvt 0.786943 0.176172\nvt 0.787691 0.174762\nvt 0.794160 0.182501\nvt 0.729380 0.065674\nvt 0.729027 0.067392\nvt 0.720804 0.066234\nvt 0.720804 0.066234\nvt 0.721349 0.064522\nvt 0.729380 0.065674\nvt 0.729027 0.067392\nvt 0.729380 0.065674\nvt 0.729027 0.067392\nvt 0.721349 0.064522\nvt 0.720804 0.066234\nvt 0.696754 0.065585\nvt 0.696754 0.065585\nvt 0.698118 0.064249\nvt 0.721349 0.064522\nvt 0.698118 0.064249\nvt 0.696754 0.065585\nvt 0.695538 0.057915\nvt 0.695538 0.057915\nvt 0.697042 0.057679\nvt 0.698118 0.064249\nvt 0.697042 0.057679\nvt 0.695538 0.057915\nvt 0.694209 0.050145\nvt 0.694209 0.050145\nvt 0.696057 0.051210\nvt 0.697042 0.057679\nvt 0.738373 0.065395\nvt 0.738373 0.065395\nvt 0.737935 0.066735\nvt 0.737935 0.066735\nvt 0.738373 0.065395\nvt 0.744665 0.064031\nvt 0.744665 0.064031\nvt 0.744760 0.064990\nvt 0.737935 0.066735\nvt 0.744760 0.064990\nvt 0.744665 0.064031\nvt 0.751477 0.062289\nvt 0.751477 0.062289\nvt 0.752277 0.063379\nvt 0.744760 0.064990\nvt 0.759947 0.058450\nvt 0.752277 0.063379\nvt 0.751477 0.062289\nvt 0.751477 0.062289\nvt 0.758941 0.057092\nvt 0.759947 0.058450\nvt 0.759947 0.058450\nvt 0.758941 0.057092\nvt 0.764933 0.048968\nvt 0.764933 0.048968\nvt 0.765921 0.050338\nvt 0.759947 0.058450\nvt 0.932330 0.145137\nvt 0.908290 0.239733\nvt 0.904639 0.240197\nvt 0.904639 0.240197\nvt 0.929349 0.144929\nvt 0.932330 0.145137\nvt 0.908290 0.239733\nvt 0.932330 0.145137\nvt 0.936703 0.145554\nvt 0.936703 0.145554\nvt 0.914428 0.239326\nvt 0.908290 0.239733\nvt 0.914428 0.239326\nvt 0.936703 0.145554\nvt 0.942327 0.146084\nvt 0.942327 0.146084\nvt 0.923201 0.239017\nvt 0.914428 0.239326\nvt 0.923201 0.239017\nvt 0.942327 0.146084\nvt 0.949328 0.146740\nvt 0.949328 0.146740\nvt 0.934246 0.238662\nvt 0.923201 0.239017\nvt 0.460804 0.931680\nvt 0.460604 0.930143\nvt 0.455650 0.916253\nvt 0.504272 0.363578\nvt 0.504884 0.351329\nvt 0.510869 0.353301\nvt 0.510869 0.353301\nvt 0.510392 0.365139\nvt 0.504272 0.363578\nvt 0.504884 0.351329\nvt 0.504272 0.363578\nvt 0.488554 0.359427\nvt 0.488554 0.359427\nvt 0.489466 0.346043\nvt 0.504884 0.351329\nvt 0.510392 0.365139\nvt 0.510869 0.353301\nvt 0.526566 0.353647\nvt 0.526566 0.353647\nvt 0.526196 0.365488\nvt 0.510392 0.365139\nvt 0.526196 0.365488\nvt 0.526566 0.353647\nvt 0.539056 0.353228\nvt 0.539056 0.353228\nvt 0.538744 0.365073\nvt 0.526196 0.365488\nvt 0.538744 0.365073\nvt 0.539056 0.353228\nvt 0.551544 0.352745\nvt 0.551544 0.352745\nvt 0.551291 0.364596\nvt 0.538744 0.365073\nvt 0.551291 0.364596\nvt 0.551544 0.352745\nvt 0.566702 0.351151\nvt 0.566702 0.351151\nvt 0.566555 0.363002\nvt 0.551291 0.364596\nvt 0.489466 0.346043\nvt 0.488554 0.359427\nvt 0.480688 0.357337\nvt 0.480688 0.357337\nvt 0.481784 0.343175\nvt 0.489466 0.346043\nvt 0.463205 0.171873\nvt 0.462328 0.160057\nvt 0.522409 0.157924\nvt 0.522409 0.157924\nvt 0.523954 0.172043\nvt 0.463205 0.171873\nvt 0.462328 0.160057\nvt 0.463205 0.171873\nvt 0.436078 0.171916\nvt 0.436078 0.171916\nvt 0.435201 0.160101\nvt 0.462328 0.160057\nvt 0.592702 0.341879\nvt 0.592680 0.353730\nvt 0.579938 0.358297\nvt 0.579938 0.358297\nvt 0.580009 0.346445\nvt 0.592702 0.341879\nvt 0.580009 0.346445\nvt 0.579938 0.358297\nvt 0.566555 0.363002\nvt 0.566555 0.363002\nvt 0.566702 0.351151\nvt 0.580009 0.346445\nvt 0.328724 0.855642\nvt 0.331347 0.829642\nvt 0.367423 0.830830\nvt 0.367423 0.830830\nvt 0.366142 0.855164\nvt 0.328724 0.855642\nvt 0.425662 0.895706\nvt 0.424155 0.873172\nvt 0.454433 0.870145\nvt 0.454433 0.870145\nvt 0.457840 0.891048\nvt 0.425662 0.895706\nvt 0.451528 0.851113\nvt 0.454433 0.870145\nvt 0.424155 0.873172\nvt 0.878510 0.279585\nvt 0.880709 0.279551\nvt 0.880479 0.310575\nvt 0.880479 0.310575\nvt 0.877674 0.310621\nvt 0.878510 0.279585\nvt 0.877674 0.310621\nvt 0.880479 0.310575\nvt 0.876854 0.341657\nvt 0.545642 0.174485\nvt 0.545148 0.171817\nvt 0.553142 0.173821\nvt 0.553142 0.173821\nvt 0.552136 0.175909\nvt 0.545642 0.174485\nvt 0.545148 0.171817\nvt 0.545642 0.174485\nvt 0.540403 0.173561\nvt 0.540403 0.173561\nvt 0.537066 0.170117\nvt 0.545148 0.171817\nvt 0.534701 0.176395\nvt 0.537066 0.170117\nvt 0.540403 0.173561\nvt 0.540403 0.173561\nvt 0.536748 0.174465\nvt 0.534701 0.176395\nvt 0.894083 0.466163\nvt 0.880684 0.467341\nvt 0.879400 0.459358\nvt 0.879400 0.459358\nvt 0.890140 0.457653\nvt 0.894083 0.466163\nvt 0.890140 0.457653\nvt 0.879400 0.459358\nvt 0.877507 0.451236\nvt 0.877507 0.451236\nvt 0.883736 0.451988\nvt 0.890140 0.457653\nvt 0.879400 0.459358\nvt 0.872271 0.453132\nvt 0.877507 0.451236\nvt 0.879400 0.459358\nvt 0.872271 0.453132\nvt 0.879400 0.459358\nvt 0.868661 0.461057\nvt 0.868661 0.461057\nvt 0.879400 0.459358\nvt 0.880684 0.467341\nvt 0.880684 0.467341\nvt 0.868654 0.469200\nvt 0.868661 0.461057\nvt 0.868235 0.487124\nvt 0.868654 0.469200\nvt 0.880684 0.467341\nvt 0.880684 0.467341\nvt 0.877108 0.486861\nvt 0.868235 0.487124\nvt 0.877108 0.486861\nvt 0.880684 0.467341\nvt 0.894083 0.466163\nvt 0.894083 0.466163\nvt 0.885982 0.486600\nvt 0.877108 0.486861\nvt 0.302258 0.415306\nvt 0.299745 0.431583\nvt 0.263336 0.428823\nvt 0.263336 0.428823\nvt 0.265092 0.412931\nvt 0.302258 0.415306\nvt 0.265092 0.412931\nvt 0.263336 0.428823\nvt 0.196508 0.425395\nvt 0.196508 0.425395\nvt 0.196741 0.410193\nvt 0.265092 0.412931\nvt 0.196085 0.437939\nvt 0.196508 0.425395\nvt 0.263336 0.428823\nvt 0.169397 0.425809\nvt 0.196508 0.425395\nvt 0.196085 0.437939\nvt 0.196741 0.410193\nvt 0.196508 0.425395\nvt 0.169397 0.425809\nvt 0.196085 0.437939\nvt 0.169696 0.437622\nvt 0.169397 0.425809\nvt 0.263336 0.428823\nvt 0.261535 0.442426\nvt 0.196085 0.437939\nvt 0.169397 0.425809\nvt 0.168680 0.411102\nvt 0.196741 0.410193\nvt 0.128181 0.419979\nvt 0.168680 0.411102\nvt 0.169397 0.425809\nvt 0.169397 0.425809\nvt 0.131869 0.433612\nvt 0.128181 0.419979\nvt 0.297133 0.445615\nvt 0.261535 0.442426\nvt 0.263336 0.428823\nvt 0.263336 0.428823\nvt 0.299745 0.431583\nvt 0.297133 0.445615\nvt 0.128181 0.419979\nvt 0.131869 0.433612\nvt 0.100689 0.448533\nvt 0.131869 0.433612\nvt 0.131869 0.433612\nvt 0.134417 0.443737\nvt 0.134417 0.443737\nvt 0.131869 0.433612\nvt 0.169397 0.425809\nvt 0.169397 0.425809\nvt 0.169696 0.437622\nvt 0.134417 0.443737\nvt 0.128181 0.419979\nvt 0.183431 0.998703\nvt 0.180702 0.977345\nvt 0.222595 0.979476\nvt 0.222595 0.979476\nvt 0.218034 0.998251\nvt 0.183431 0.998703\nvt 0.221321 0.957509\nvt 0.222595 0.979476\nvt 0.180702 0.977345\nvt 0.045530 0.952049\nvt 0.045530 0.952049\nvt 0.046918 0.972806\nvt 0.046918 0.972806\nvt 0.047867 0.994239\nvt 0.047867 0.994239\nvt 0.044412 0.932394\nvt 0.045530 0.952049\nvt 0.044412 0.932394\nvt 0.044029 0.913152\nvt 0.044412 0.932394\nvt 0.044029 0.913152\nvt 0.837915 0.997039\nvt 0.824718 0.995127\nvt 0.840092 0.973210\nvt 0.837915 0.997039\nvt 0.840092 0.973210\nvt 0.868936 0.978053\nvt 0.840092 0.973210\nvt 0.882501 0.953942\nvt 0.868936 0.978053\nvt 0.840092 0.973210\nvt 0.877136 0.932363\nvt 0.882501 0.953942\nvt 0.840092 0.973210\nvt 0.875166 0.924581\nvt 0.877136 0.932363\nvt 0.877136 0.932363\nvt 0.881070 0.947896\nvt 0.882501 0.953942\nvt 0.882501 0.953942\nvt 0.875822 0.967785\nvt 0.868936 0.978053\nvt 0.851751 0.998924\nvt 0.837915 0.997039\nvt 0.868936 0.978053\nvt 0.851751 0.998924\nvt 0.868936 0.978053\nvt 0.862050 0.988321\nvt 0.449765 0.919095\nvt 0.452102 0.920989\nvt 0.452698 0.922437\nvt 0.435701 0.913543\nvt 0.449765 0.919095\nvt 0.452698 0.922437\nvt 0.442454 0.939853\nvt 0.435701 0.913543\nvt 0.452698 0.922437\nvt 0.442454 0.939853\nvt 0.452698 0.922437\nvt 0.454521 0.932108\nvt 0.442454 0.939853\nvt 0.454521 0.932108\nvt 0.454422 0.933596\nvt 0.452504 0.935569\nvt 0.442454 0.939853\nvt 0.454422 0.933596\nvt 0.435228 0.913324\nvt 0.435701 0.913543\nvt 0.442454 0.939853\nvt 0.347006 0.407033\nvt 0.343748 0.408440\nvt 0.330989 0.405212\nvt 0.330989 0.405212\nvt 0.330090 0.397654\nvt 0.347006 0.407033\nvt 0.330090 0.397654\nvt 0.330989 0.405212\nvt 0.328129 0.405449\nvt 0.328129 0.405449\nvt 0.327033 0.397421\nvt 0.330090 0.397654\nvt 0.327033 0.397421\nvt 0.328129 0.405449\nvt 0.326817 0.406346\nvt 0.326817 0.406346\nvt 0.325626 0.398301\nvt 0.327033 0.397421\nvt 0.325626 0.398301\nvt 0.326817 0.406346\nvt 0.318921 0.413508\nvt 0.318921 0.413508\nvt 0.314833 0.408872\nvt 0.325626 0.398301\nvt 0.314833 0.408872\nvt 0.318921 0.413508\nvt 0.317822 0.414785\nvt 0.317822 0.414785\nvt 0.313733 0.410140\nvt 0.314833 0.408872\nvt 0.313733 0.410140\nvt 0.317822 0.414785\nvt 0.316048 0.417642\nvt 0.316048 0.417642\nvt 0.312302 0.413056\nvt 0.313733 0.410140\nvt 0.312302 0.413056\nvt 0.316048 0.417642\nvt 0.308188 0.431688\nvt 0.308188 0.431688\nvt 0.305830 0.433859\nvt 0.312302 0.413056\nvt 0.442454 0.939853\nvt 0.442582 0.940131\nvt 0.435228 0.913324\nvt 0.391607 0.244921\nvt 0.390600 0.240814\nvt 0.401937 0.244444\nvt 0.390600 0.240814\nvt 0.391607 0.244921\nvt 0.389026 0.244717\nvt 0.389026 0.244717\nvt 0.388052 0.239874\nvt 0.390600 0.240814\nvt 0.388052 0.239874\nvt 0.389026 0.244717\nvt 0.387694 0.244409\nvt 0.387694 0.244409\nvt 0.386764 0.239278\nvt 0.388052 0.239874\nvt 0.386764 0.239278\nvt 0.387694 0.244409\nvt 0.378777 0.242646\nvt 0.378777 0.242646\nvt 0.377313 0.237503\nvt 0.386764 0.239278\nvt 0.377313 0.237503\nvt 0.378777 0.242646\nvt 0.377356 0.242451\nvt 0.377356 0.242451\nvt 0.375891 0.237394\nvt 0.377313 0.237503\nvt 0.373271 0.238134\nvt 0.375891 0.237394\nvt 0.377356 0.242451\nvt 0.377356 0.242451\nvt 0.374569 0.242556\nvt 0.373271 0.238134\nvt 0.373271 0.238134\nvt 0.374569 0.242556\nvt 0.360824 0.244925\nvt 0.360824 0.244925\nvt 0.360508 0.244959\nvt 0.373271 0.238134\nvt 0.401937 0.244444\nvt 0.401705 0.244339\nvt 0.391607 0.244921\nvt 0.155085 0.652510\nvt 0.154740 0.652954\nvt 0.188972 0.672360\nvt 0.154740 0.652954\nvt 0.155085 0.652510\nvt 0.754469 0.947153\nvt 0.754568 0.949468\nvt 0.753190 0.948316\nvt 0.779084 0.938612\nvt 0.754568 0.949468\nvt 0.754469 0.947153\nvt 0.754469 0.947153\nvt 0.778122 0.936088\nvt 0.779084 0.938612\nvt 0.779084 0.938612\nvt 0.778122 0.936088\nvt 0.805373 0.924010\nvt 0.805373 0.924010\nvt 0.807939 0.925617\nvt 0.779084 0.938612\nvt 0.819461 0.913149\nvt 0.807939 0.925617\nvt 0.805373 0.924010\nvt 0.805373 0.924010\nvt 0.817061 0.911264\nvt 0.819461 0.913149\nvt 0.819461 0.913149\nvt 0.817061 0.911264\nvt 0.826985 0.900225\nvt 0.826985 0.900225\nvt 0.829595 0.901840\nvt 0.819461 0.913149\nvt 0.829595 0.901840\nvt 0.826985 0.900225\nvt 0.836994 0.889287\nvt 0.836994 0.889287\nvt 0.839762 0.890599\nvt 0.829595 0.901840\nvt 0.850916 0.877853\nvt 0.839762 0.890599\nvt 0.836994 0.889287\nvt 0.836994 0.889287\nvt 0.848240 0.876384\nvt 0.850916 0.877853\nvt 0.856016 0.862751\nvt 0.850916 0.877853\nvt 0.848240 0.876384\nvt 0.848240 0.876384\nvt 0.853104 0.862078\nvt 0.856016 0.862751\nvt 0.856016 0.862751\nvt 0.853104 0.862078\nvt 0.863619 0.832541\nvt 0.863619 0.832541\nvt 0.866276 0.832458\nvt 0.856016 0.862751\nvt 0.871428 0.817410\nvt 0.866276 0.832458\nvt 0.863619 0.832541\nvt 0.863619 0.832541\nvt 0.869243 0.816411\nvt 0.871428 0.817410\nvt 0.266998 0.054805\nvt 0.266998 0.054805\nvt 0.266998 0.054805\nvt 0.279039 0.015355\nvt 0.279039 0.015355\nvt 0.279039 0.015355\nvt 0.266998 0.015355\nvt 0.266998 0.015355\nvt 0.266998 0.015355\nvt 0.279039 0.037031\nvt 0.279039 0.037031\nvt 0.279039 0.037031\nvt 0.451705 0.431953\nvt 0.474097 0.431948\nvt 0.475375 0.438833\nvt 0.475375 0.438833\nvt 0.452235 0.439115\nvt 0.451705 0.431953\nvt 0.475375 0.438833\nvt 0.474097 0.431948\nvt 0.487734 0.432521\nvt 0.487734 0.432521\nvt 0.489404 0.438989\nvt 0.475375 0.438833\nvt 0.489404 0.438989\nvt 0.487734 0.432521\nvt 0.501841 0.432679\nvt 0.501841 0.432679\nvt 0.503774 0.439216\nvt 0.489404 0.438989\nvt 0.499906 0.425938\nvt 0.501841 0.432679\nvt 0.487734 0.432521\nvt 0.487734 0.432521\nvt 0.486139 0.426072\nvt 0.499906 0.425938\nvt 0.486139 0.426072\nvt 0.487734 0.432521\nvt 0.474097 0.431948\nvt 0.474097 0.431948\nvt 0.472954 0.425137\nvt 0.486139 0.426072\nvt 0.472954 0.425137\nvt 0.474097 0.431948\nvt 0.451705 0.431953\nvt 0.451705 0.431953\nvt 0.451368 0.424818\nvt 0.472954 0.425137\nvt 0.472084 0.418377\nvt 0.472954 0.425137\nvt 0.451368 0.424818\nvt 0.451368 0.424818\nvt 0.451213 0.417716\nvt 0.472084 0.418377\nvt 0.472954 0.425137\nvt 0.472084 0.418377\nvt 0.484832 0.419408\nvt 0.484832 0.419408\nvt 0.486139 0.426072\nvt 0.472954 0.425137\nvt 0.486139 0.426072\nvt 0.484832 0.419408\nvt 0.498235 0.419073\nvt 0.498235 0.419073\nvt 0.499906 0.425938\nvt 0.486139 0.426072\nvt 0.497105 0.412092\nvt 0.498235 0.419073\nvt 0.484832 0.419408\nvt 0.484832 0.419408\nvt 0.484013 0.412511\nvt 0.497105 0.412092\nvt 0.484013 0.412511\nvt 0.484832 0.419408\nvt 0.472084 0.418377\nvt 0.472084 0.418377\nvt 0.471593 0.411675\nvt 0.484013 0.412511\nvt 0.471593 0.411675\nvt 0.472084 0.418377\nvt 0.451213 0.417716\nvt 0.451213 0.417716\nvt 0.451282 0.410672\nvt 0.471593 0.411675\nvt 0.471555 0.404848\nvt 0.471593 0.411675\nvt 0.451282 0.410672\nvt 0.451282 0.410672\nvt 0.451553 0.403751\nvt 0.471555 0.404848\nvt 0.471593 0.411675\nvt 0.471555 0.404848\nvt 0.483757 0.405519\nvt 0.483757 0.405519\nvt 0.484013 0.412511\nvt 0.471593 0.411675\nvt 0.484013 0.412511\nvt 0.483757 0.405519\nvt 0.496628 0.405224\nvt 0.496628 0.405224\nvt 0.497105 0.412092\nvt 0.484013 0.412511\nvt 0.496830 0.398351\nvt 0.496628 0.405224\nvt 0.483757 0.405519\nvt 0.483757 0.405519\nvt 0.484125 0.398529\nvt 0.496830 0.398351\nvt 0.484125 0.398529\nvt 0.483757 0.405519\nvt 0.471555 0.404848\nvt 0.471555 0.404848\nvt 0.472002 0.398148\nvt 0.484125 0.398529\nvt 0.472002 0.398148\nvt 0.471555 0.404848\nvt 0.451553 0.403751\nvt 0.451553 0.403751\nvt 0.452109 0.397013\nvt 0.472002 0.398148\nvt 0.472811 0.391564\nvt 0.472002 0.398148\nvt 0.452109 0.397013\nvt 0.452109 0.397013\nvt 0.452990 0.390527\nvt 0.472811 0.391564\nvt 0.472002 0.398148\nvt 0.472811 0.391564\nvt 0.484851 0.391677\nvt 0.484851 0.391677\nvt 0.484125 0.398529\nvt 0.472002 0.398148\nvt 0.484125 0.398529\nvt 0.484851 0.391677\nvt 0.497417 0.391511\nvt 0.497417 0.391511\nvt 0.496830 0.398351\nvt 0.484125 0.398529\nvt 0.497660 0.384710\nvt 0.497417 0.391511\nvt 0.484851 0.391677\nvt 0.484851 0.391677\nvt 0.485457 0.384850\nvt 0.497660 0.384710\nvt 0.485457 0.384850\nvt 0.484851 0.391677\nvt 0.472811 0.391564\nvt 0.472811 0.391564\nvt 0.473882 0.384874\nvt 0.485457 0.384850\nvt 0.473882 0.384874\nvt 0.472811 0.391564\nvt 0.452990 0.390527\nvt 0.452990 0.390527\nvt 0.454639 0.384282\nvt 0.473882 0.384874\nvt 0.496628 0.405224\nvt 0.496830 0.398351\nvt 0.509667 0.397942\nvt 0.509667 0.397942\nvt 0.509719 0.404736\nvt 0.496628 0.405224\nvt 0.497105 0.412092\nvt 0.496628 0.405224\nvt 0.509719 0.404736\nvt 0.509719 0.404736\nvt 0.510452 0.411641\nvt 0.497105 0.412092\nvt 0.498235 0.419073\nvt 0.497105 0.412092\nvt 0.510452 0.411641\nvt 0.510452 0.411641\nvt 0.511834 0.418607\nvt 0.498235 0.419073\nvt 0.499906 0.425938\nvt 0.498235 0.419073\nvt 0.511834 0.418607\nvt 0.511834 0.418607\nvt 0.513699 0.425541\nvt 0.499906 0.425938\nvt 0.501841 0.432679\nvt 0.499906 0.425938\nvt 0.513699 0.425541\nvt 0.513699 0.425541\nvt 0.515767 0.432368\nvt 0.501841 0.432679\nvt 0.503774 0.439216\nvt 0.501841 0.432679\nvt 0.515767 0.432368\nvt 0.515767 0.432368\nvt 0.517725 0.439060\nvt 0.503774 0.439216\nvt 0.517725 0.439060\nvt 0.515767 0.432368\nvt 0.529494 0.431907\nvt 0.529494 0.431907\nvt 0.531337 0.438806\nvt 0.517725 0.439060\nvt 0.531337 0.438806\nvt 0.529494 0.431907\nvt 0.542817 0.431280\nvt 0.542817 0.431280\nvt 0.544491 0.438438\nvt 0.531337 0.438806\nvt 0.544491 0.438438\nvt 0.542817 0.431280\nvt 0.555635 0.430787\nvt 0.555635 0.430787\nvt 0.557103 0.438135\nvt 0.544491 0.438438\nvt 0.553765 0.423548\nvt 0.555635 0.430787\nvt 0.542817 0.431280\nvt 0.542817 0.431280\nvt 0.540801 0.424110\nvt 0.553765 0.423548\nvt 0.540801 0.424110\nvt 0.542817 0.431280\nvt 0.529494 0.431907\nvt 0.529494 0.431907\nvt 0.527424 0.424936\nvt 0.540801 0.424110\nvt 0.527424 0.424936\nvt 0.529494 0.431907\nvt 0.515767 0.432368\nvt 0.515767 0.432368\nvt 0.513699 0.425541\nvt 0.527424 0.424936\nvt 0.513699 0.425541\nvt 0.511834 0.418607\nvt 0.525440 0.417961\nvt 0.525440 0.417961\nvt 0.527424 0.424936\nvt 0.513699 0.425541\nvt 0.527424 0.424936\nvt 0.525440 0.417961\nvt 0.538750 0.417011\nvt 0.538750 0.417011\nvt 0.540801 0.424110\nvt 0.527424 0.424936\nvt 0.540801 0.424110\nvt 0.538750 0.417011\nvt 0.551783 0.416588\nvt 0.551783 0.416588\nvt 0.553765 0.423548\nvt 0.540801 0.424110\nvt 0.549970 0.409956\nvt 0.551783 0.416588\nvt 0.538750 0.417011\nvt 0.538750 0.417011\nvt 0.536982 0.410099\nvt 0.549970 0.409956\nvt 0.536982 0.410099\nvt 0.538750 0.417011\nvt 0.525440 0.417961\nvt 0.525440 0.417961\nvt 0.523844 0.411073\nvt 0.536982 0.410099\nvt 0.523844 0.411073\nvt 0.525440 0.417961\nvt 0.511834 0.418607\nvt 0.511834 0.418607\nvt 0.510452 0.411641\nvt 0.523844 0.411073\nvt 0.522834 0.404331\nvt 0.523844 0.411073\nvt 0.510452 0.411641\nvt 0.510452 0.411641\nvt 0.509719 0.404736\nvt 0.522834 0.404331\nvt 0.523844 0.411073\nvt 0.522834 0.404331\nvt 0.535734 0.403481\nvt 0.535734 0.403481\nvt 0.536982 0.410099\nvt 0.523844 0.411073\nvt 0.536982 0.410099\nvt 0.535734 0.403481\nvt 0.548592 0.403548\nvt 0.548592 0.403548\nvt 0.549970 0.409956\nvt 0.536982 0.410099\nvt 0.547792 0.397472\nvt 0.548592 0.403548\nvt 0.535734 0.403481\nvt 0.535734 0.403481\nvt 0.535122 0.397144\nvt 0.547792 0.397472\nvt 0.535122 0.397144\nvt 0.535734 0.403481\nvt 0.522834 0.404331\nvt 0.522834 0.404331\nvt 0.522485 0.397713\nvt 0.535122 0.397144\nvt 0.522485 0.397713\nvt 0.522834 0.404331\nvt 0.509719 0.404736\nvt 0.509719 0.404736\nvt 0.509667 0.397942\nvt 0.522485 0.397713\nvt 0.522597 0.391147\nvt 0.522485 0.397713\nvt 0.509667 0.397942\nvt 0.509667 0.397942\nvt 0.510022 0.391250\nvt 0.522597 0.391147\nvt 0.510022 0.391250\nvt 0.509667 0.397942\nvt 0.496830 0.398351\nvt 0.496830 0.398351\nvt 0.497417 0.391511\nvt 0.510022 0.391250\nvt 0.522485 0.397713\nvt 0.522597 0.391147\nvt 0.535035 0.390911\nvt 0.535035 0.390911\nvt 0.535122 0.397144\nvt 0.522485 0.397713\nvt 0.535122 0.397144\nvt 0.535035 0.390911\nvt 0.547514 0.391278\nvt 0.547514 0.391278\nvt 0.547792 0.397472\nvt 0.535122 0.397144\nvt 0.547792 0.384668\nvt 0.547514 0.391278\nvt 0.535035 0.390911\nvt 0.535035 0.390911\nvt 0.535175 0.384526\nvt 0.547792 0.384668\nvt 0.535175 0.384526\nvt 0.535035 0.390911\nvt 0.522597 0.391147\nvt 0.522597 0.391147\nvt 0.522595 0.384562\nvt 0.535175 0.384526\nvt 0.522595 0.384562\nvt 0.522597 0.391147\nvt 0.510022 0.391250\nvt 0.510022 0.391250\nvt 0.510038 0.384594\nvt 0.522595 0.384562\nvt 0.510038 0.384594\nvt 0.510022 0.391250\nvt 0.497417 0.391511\nvt 0.497417 0.391511\nvt 0.497660 0.384710\nvt 0.510038 0.384594\nvt 0.508644 0.377911\nvt 0.510038 0.384594\nvt 0.497660 0.384710\nvt 0.497660 0.384710\nvt 0.496440 0.377922\nvt 0.508644 0.377911\nvt 0.510038 0.384594\nvt 0.508644 0.377911\nvt 0.521122 0.378041\nvt 0.521122 0.378041\nvt 0.522595 0.384562\nvt 0.510038 0.384594\nvt 0.534164 0.378083\nvt 0.535175 0.384526\nvt 0.522595 0.384562\nvt 0.522595 0.384562\nvt 0.521570 0.378042\nvt 0.534164 0.378083\nvt 0.547673 0.378123\nvt 0.547792 0.384668\nvt 0.535175 0.384526\nvt 0.535175 0.384526\nvt 0.535024 0.378071\nvt 0.547673 0.378123\nvt 0.547514 0.391278\nvt 0.547792 0.384668\nvt 0.561090 0.384349\nvt 0.561090 0.384349\nvt 0.560827 0.390353\nvt 0.547514 0.391278\nvt 0.547792 0.397472\nvt 0.547514 0.391278\nvt 0.560827 0.390353\nvt 0.560827 0.390353\nvt 0.561212 0.396539\nvt 0.547792 0.397472\nvt 0.548592 0.403548\nvt 0.547792 0.397472\nvt 0.561212 0.396539\nvt 0.561212 0.396539\nvt 0.562077 0.402906\nvt 0.548592 0.403548\nvt 0.549970 0.409956\nvt 0.548592 0.403548\nvt 0.562077 0.402906\nvt 0.562077 0.402906\nvt 0.563366 0.409432\nvt 0.549970 0.409956\nvt 0.551783 0.416588\nvt 0.549970 0.409956\nvt 0.563366 0.409432\nvt 0.563366 0.409432\nvt 0.564994 0.416444\nvt 0.551783 0.416588\nvt 0.553765 0.423548\nvt 0.551783 0.416588\nvt 0.564994 0.416444\nvt 0.564994 0.416444\nvt 0.566709 0.423599\nvt 0.553765 0.423548\nvt 0.555635 0.430787\nvt 0.553765 0.423548\nvt 0.566709 0.423599\nvt 0.566709 0.423599\nvt 0.568269 0.430836\nvt 0.555635 0.430787\nvt 0.557103 0.438135\nvt 0.555635 0.430787\nvt 0.568269 0.430836\nvt 0.568269 0.430836\nvt 0.569436 0.438172\nvt 0.557103 0.438135\nvt 0.569436 0.438172\nvt 0.568269 0.430836\nvt 0.581087 0.431130\nvt 0.581087 0.431130\nvt 0.581898 0.438383\nvt 0.569436 0.438172\nvt 0.581898 0.438383\nvt 0.581087 0.431130\nvt 0.594331 0.431394\nvt 0.594331 0.431394\nvt 0.594808 0.438630\nvt 0.581898 0.438383\nvt 0.594808 0.438630\nvt 0.594331 0.431394\nvt 0.608139 0.431608\nvt 0.608139 0.431608\nvt 0.608391 0.438850\nvt 0.594808 0.438630\nvt 0.607680 0.424417\nvt 0.608139 0.431608\nvt 0.594331 0.431394\nvt 0.594331 0.431394\nvt 0.593582 0.424280\nvt 0.607680 0.424417\nvt 0.593582 0.424280\nvt 0.594331 0.431394\nvt 0.581087 0.431130\nvt 0.581087 0.431130\nvt 0.579933 0.424069\nvt 0.593582 0.424280\nvt 0.579933 0.424069\nvt 0.581087 0.431130\nvt 0.568269 0.430836\nvt 0.568269 0.430836\nvt 0.566709 0.423599\nvt 0.579933 0.424069\nvt 0.566709 0.423599\nvt 0.564994 0.416444\nvt 0.578605 0.417275\nvt 0.578605 0.417275\nvt 0.579933 0.424069\nvt 0.566709 0.423599\nvt 0.579933 0.424069\nvt 0.578605 0.417275\nvt 0.592666 0.417272\nvt 0.592666 0.417272\nvt 0.593582 0.424280\nvt 0.579933 0.424069\nvt 0.593582 0.424280\nvt 0.592666 0.417272\nvt 0.607071 0.417278\nvt 0.607071 0.417278\nvt 0.607680 0.424417\nvt 0.593582 0.424280\nvt 0.606381 0.410231\nvt 0.607071 0.417278\nvt 0.592666 0.417272\nvt 0.592666 0.417272\nvt 0.591692 0.410339\nvt 0.606381 0.410231\nvt 0.591692 0.410339\nvt 0.592666 0.417272\nvt 0.578605 0.417275\nvt 0.578605 0.417275\nvt 0.577286 0.410800\nvt 0.591692 0.410339\nvt 0.577286 0.410800\nvt 0.578605 0.417275\nvt 0.564994 0.416444\nvt 0.564994 0.416444\nvt 0.563366 0.409432\nvt 0.577286 0.410800\nvt 0.576180 0.404318\nvt 0.577286 0.410800\nvt 0.563366 0.409432\nvt 0.563366 0.409432\nvt 0.562077 0.402906\nvt 0.576180 0.404318\nvt 0.577286 0.410800\nvt 0.576180 0.404318\nvt 0.590787 0.403512\nvt 0.590787 0.403512\nvt 0.591692 0.410339\nvt 0.577286 0.410800\nvt 0.591692 0.410339\nvt 0.590787 0.403512\nvt 0.605693 0.403376\nvt 0.605693 0.403376\nvt 0.606381 0.410231\nvt 0.591692 0.410339\nvt 0.605069 0.396807\nvt 0.605693 0.403376\nvt 0.590787 0.403512\nvt 0.590787 0.403512\nvt 0.590049 0.396905\nvt 0.605069 0.396807\nvt 0.590049 0.396905\nvt 0.590787 0.403512\nvt 0.576180 0.404318\nvt 0.576180 0.404318\nvt 0.575358 0.397720\nvt 0.590049 0.396905\nvt 0.575358 0.397720\nvt 0.576180 0.404318\nvt 0.562077 0.402906\nvt 0.562077 0.402906\nvt 0.561212 0.396539\nvt 0.575358 0.397720\nvt 0.574920 0.391107\nvt 0.575358 0.397720\nvt 0.561212 0.396539\nvt 0.561212 0.396539\nvt 0.560827 0.390353\nvt 0.574920 0.391107\nvt 0.575358 0.397720\nvt 0.574920 0.391107\nvt 0.589541 0.390567\nvt 0.589541 0.390567\nvt 0.590049 0.396905\nvt 0.575358 0.397720\nvt 0.590049 0.396905\nvt 0.589541 0.390567\nvt 0.604535 0.390510\nvt 0.604535 0.390510\nvt 0.605069 0.396807\nvt 0.590049 0.396905\nvt 0.604005 0.384358\nvt 0.604535 0.390510\nvt 0.589541 0.390567\nvt 0.589541 0.390567\nvt 0.589253 0.384389\nvt 0.604005 0.384358\nvt 0.589253 0.384389\nvt 0.589541 0.390567\nvt 0.574920 0.391107\nvt 0.574920 0.391107\nvt 0.574952 0.384558\nvt 0.589253 0.384389\nvt 0.574952 0.384558\nvt 0.574920 0.391107\nvt 0.560827 0.390353\nvt 0.560827 0.390353\nvt 0.561090 0.384349\nvt 0.574952 0.384558\nvt 0.575128 0.378294\nvt 0.574952 0.384558\nvt 0.561090 0.384349\nvt 0.561090 0.384349\nvt 0.562234 0.378275\nvt 0.575128 0.378294\nvt 0.588755 0.378067\nvt 0.589253 0.384389\nvt 0.574952 0.384558\nvt 0.574952 0.384558\nvt 0.575523 0.378084\nvt 0.588755 0.378067\nvt 0.602874 0.378212\nvt 0.604005 0.384358\nvt 0.589253 0.384389\nvt 0.589253 0.384389\nvt 0.589072 0.378253\nvt 0.602874 0.378212\nvt 0.604535 0.390510\nvt 0.604005 0.384358\nvt 0.619292 0.384367\nvt 0.619292 0.384367\nvt 0.619853 0.390639\nvt 0.604535 0.390510\nvt 0.605069 0.396807\nvt 0.604535 0.390510\nvt 0.619853 0.390639\nvt 0.619853 0.390639\nvt 0.620321 0.397087\nvt 0.605069 0.396807\nvt 0.605693 0.403376\nvt 0.605069 0.396807\nvt 0.620321 0.397087\nvt 0.620321 0.397087\nvt 0.620811 0.403724\nvt 0.605693 0.403376\nvt 0.606381 0.410231\nvt 0.605693 0.403376\nvt 0.620811 0.403724\nvt 0.620811 0.403724\nvt 0.621324 0.410550\nvt 0.606381 0.410231\nvt 0.607071 0.417278\nvt 0.606381 0.410231\nvt 0.621324 0.410550\nvt 0.621324 0.410550\nvt 0.621833 0.417540\nvt 0.607071 0.417278\nvt 0.607680 0.424417\nvt 0.607071 0.417278\nvt 0.621833 0.417540\nvt 0.621833 0.417540\nvt 0.622280 0.424646\nvt 0.607680 0.424417\nvt 0.608139 0.431608\nvt 0.607680 0.424417\nvt 0.622280 0.424646\nvt 0.622280 0.424646\nvt 0.622616 0.431817\nvt 0.608139 0.431608\nvt 0.608391 0.438850\nvt 0.608139 0.431608\nvt 0.622616 0.431817\nvt 0.622616 0.431817\nvt 0.622800 0.439024\nvt 0.608391 0.438850\nvt 0.622800 0.439024\nvt 0.622616 0.431817\nvt 0.638001 0.432000\nvt 0.638001 0.432000\nvt 0.638188 0.439155\nvt 0.622800 0.439024\nvt 0.638188 0.439155\nvt 0.638001 0.432000\nvt 0.654427 0.432131\nvt 0.654427 0.432131\nvt 0.654623 0.439239\nvt 0.638188 0.439155\nvt 0.654623 0.439239\nvt 0.654427 0.432131\nvt 0.671960 0.432186\nvt 0.671960 0.432186\nvt 0.672127 0.439268\nvt 0.654623 0.439239\nvt 0.671771 0.425124\nvt 0.671960 0.432186\nvt 0.654427 0.432131\nvt 0.654427 0.432131\nvt 0.654175 0.425043\nvt 0.671771 0.425124\nvt 0.654175 0.425043\nvt 0.654427 0.432131\nvt 0.638001 0.432000\nvt 0.638001 0.432000\nvt 0.637712 0.424869\nvt 0.654175 0.425043\nvt 0.637712 0.424869\nvt 0.638001 0.432000\nvt 0.622616 0.431817\nvt 0.622616 0.431817\nvt 0.622280 0.424646\nvt 0.637712 0.424869\nvt 0.622280 0.424646\nvt 0.621833 0.417540\nvt 0.637360 0.417782\nvt 0.637360 0.417782\nvt 0.637712 0.424869\nvt 0.622280 0.424646\nvt 0.637712 0.424869\nvt 0.637360 0.417782\nvt 0.653902 0.417982\nvt 0.653902 0.417982\nvt 0.654175 0.425043\nvt 0.637712 0.424869\nvt 0.654175 0.425043\nvt 0.653902 0.417982\nvt 0.671587 0.418065\nvt 0.671587 0.418065\nvt 0.671771 0.425124\nvt 0.654175 0.425043\nvt 0.671437 0.410982\nvt 0.671587 0.418065\nvt 0.653902 0.417982\nvt 0.653902 0.417982\nvt 0.653644 0.410967\nvt 0.671437 0.410982\nvt 0.653644 0.410967\nvt 0.653902 0.417982\nvt 0.637360 0.417782\nvt 0.637360 0.417782\nvt 0.636986 0.410763\nvt 0.653644 0.410967\nvt 0.636986 0.410763\nvt 0.637360 0.417782\nvt 0.621833 0.417540\nvt 0.621833 0.417540\nvt 0.621324 0.410550\nvt 0.636986 0.410763\nvt 0.636625 0.403853\nvt 0.636986 0.410763\nvt 0.621324 0.410550\nvt 0.621324 0.410550\nvt 0.620811 0.403724\nvt 0.636625 0.403853\nvt 0.636986 0.410763\nvt 0.636625 0.403853\nvt 0.653423 0.404037\nvt 0.653423 0.404037\nvt 0.653644 0.410967\nvt 0.636986 0.410763\nvt 0.653644 0.410967\nvt 0.653423 0.404037\nvt 0.671337 0.403914\nvt 0.671337 0.403914\nvt 0.671437 0.410982\nvt 0.653644 0.410967\nvt 0.671265 0.397033\nvt 0.671337 0.403914\nvt 0.653423 0.404037\nvt 0.653423 0.404037\nvt 0.653225 0.397250\nvt 0.671265 0.397033\nvt 0.653225 0.397250\nvt 0.653423 0.404037\nvt 0.636625 0.403853\nvt 0.636625 0.403853\nvt 0.636282 0.397120\nvt 0.653225 0.397250\nvt 0.636282 0.397120\nvt 0.636625 0.403853\nvt 0.620811 0.403724\nvt 0.620811 0.403724\nvt 0.620321 0.397087\nvt 0.636282 0.397120\nvt 0.635936 0.390614\nvt 0.636282 0.397120\nvt 0.620321 0.397087\nvt 0.620321 0.397087\nvt 0.619853 0.390639\nvt 0.635936 0.390614\nvt 0.636282 0.397120\nvt 0.635936 0.390614\nvt 0.653014 0.390665\nvt 0.653014 0.390665\nvt 0.653225 0.397250\nvt 0.636282 0.397120\nvt 0.653225 0.397250\nvt 0.653014 0.390665\nvt 0.671162 0.390496\nvt 0.671162 0.390496\nvt 0.671265 0.397033\nvt 0.653225 0.397250\nvt 0.670979 0.384289\nvt 0.671162 0.390496\nvt 0.653014 0.390665\nvt 0.653014 0.390665\nvt 0.652715 0.384340\nvt 0.670979 0.384289\nvt 0.652715 0.384340\nvt 0.653014 0.390665\nvt 0.635936 0.390614\nvt 0.635936 0.390614\nvt 0.635484 0.384339\nvt 0.652715 0.384340\nvt 0.635484 0.384339\nvt 0.635936 0.390614\nvt 0.619853 0.390639\nvt 0.619853 0.390639\nvt 0.619292 0.384367\nvt 0.635484 0.384339\nvt 0.634241 0.378248\nvt 0.635484 0.384339\nvt 0.619292 0.384367\nvt 0.619292 0.384367\nvt 0.618552 0.378273\nvt 0.634241 0.378248\nvt 0.651677 0.378293\nvt 0.652715 0.384340\nvt 0.635484 0.384339\nvt 0.635484 0.384339\nvt 0.634911 0.378303\nvt 0.651677 0.378293\nvt 0.670134 0.378305\nvt 0.670979 0.384289\nvt 0.652715 0.384340\nvt 0.652715 0.384340\nvt 0.652375 0.378303\nvt 0.670134 0.378305\nvt 0.671162 0.390496\nvt 0.670979 0.384289\nvt 0.690184 0.384531\nvt 0.690184 0.384531\nvt 0.690319 0.391229\nvt 0.671162 0.390496\nvt 0.671265 0.397033\nvt 0.671162 0.390496\nvt 0.690319 0.391229\nvt 0.690319 0.391229\nvt 0.690379 0.398002\nvt 0.671265 0.397033\nvt 0.671337 0.403914\nvt 0.671265 0.397033\nvt 0.690379 0.398002\nvt 0.690379 0.398002\nvt 0.690391 0.404663\nvt 0.671337 0.403914\nvt 0.671437 0.410982\nvt 0.671337 0.403914\nvt 0.690391 0.404663\nvt 0.690391 0.404663\nvt 0.690409 0.411311\nvt 0.671437 0.410982\nvt 0.671587 0.418065\nvt 0.671437 0.410982\nvt 0.690409 0.411311\nvt 0.690409 0.411311\nvt 0.690456 0.418108\nvt 0.671587 0.418065\nvt 0.671771 0.425124\nvt 0.671587 0.418065\nvt 0.690456 0.418108\nvt 0.690456 0.418108\nvt 0.690532 0.425071\nvt 0.671771 0.425124\nvt 0.671960 0.432186\nvt 0.671771 0.425124\nvt 0.690532 0.425071\nvt 0.690532 0.425071\nvt 0.690618 0.432124\nvt 0.671960 0.432186\nvt 0.672127 0.439268\nvt 0.671960 0.432186\nvt 0.690618 0.432124\nvt 0.690618 0.432124\nvt 0.690702 0.439218\nvt 0.672127 0.439268\nvt 0.690702 0.439218\nvt 0.690618 0.432124\nvt 0.709753 0.431984\nvt 0.709753 0.431984\nvt 0.709753 0.439128\nvt 0.690702 0.439218\nvt 0.709753 0.439128\nvt 0.709753 0.431984\nvt 0.729571 0.431984\nvt 0.729571 0.431984\nvt 0.729571 0.439128\nvt 0.709753 0.439128\nvt 0.729571 0.439128\nvt 0.729571 0.431984\nvt 0.749090 0.431984\nvt 0.749090 0.431984\nvt 0.749090 0.439128\nvt 0.729571 0.439128\nvt 0.749090 0.424809\nvt 0.749090 0.431984\nvt 0.729571 0.431984\nvt 0.729571 0.431984\nvt 0.729571 0.424809\nvt 0.749090 0.424809\nvt 0.729571 0.424809\nvt 0.729571 0.431984\nvt 0.709753 0.431984\nvt 0.709753 0.431984\nvt 0.709753 0.424809\nvt 0.729571 0.424809\nvt 0.709753 0.424809\nvt 0.709753 0.431984\nvt 0.690618 0.432124\nvt 0.690618 0.432124\nvt 0.690532 0.425071\nvt 0.709753 0.424809\nvt 0.690532 0.425071\nvt 0.690456 0.418108\nvt 0.709753 0.417547\nvt 0.709753 0.417547\nvt 0.709753 0.424809\nvt 0.690532 0.425071\nvt 0.709753 0.424809\nvt 0.709753 0.417547\nvt 0.729571 0.417547\nvt 0.729571 0.417547\nvt 0.729571 0.424809\nvt 0.709753 0.424809\nvt 0.729571 0.424809\nvt 0.729571 0.417547\nvt 0.749090 0.417547\nvt 0.749090 0.417547\nvt 0.749090 0.424809\nvt 0.729571 0.424809\nvt 0.749090 0.410199\nvt 0.749090 0.417547\nvt 0.729571 0.417547\nvt 0.729571 0.417547\nvt 0.729571 0.410199\nvt 0.749090 0.410199\nvt 0.729571 0.410199\nvt 0.729571 0.417547\nvt 0.709753 0.417547\nvt 0.709753 0.417547\nvt 0.709753 0.410199\nvt 0.729571 0.410199\nvt 0.709753 0.410199\nvt 0.709753 0.417547\nvt 0.690456 0.418108\nvt 0.690456 0.418108\nvt 0.690409 0.411311\nvt 0.709753 0.410199\nvt 0.709753 0.402860\nvt 0.709753 0.410199\nvt 0.690409 0.411311\nvt 0.690409 0.411311\nvt 0.690391 0.404663\nvt 0.709753 0.402860\nvt 0.709753 0.410199\nvt 0.709753 0.402860\nvt 0.729571 0.402860\nvt 0.729571 0.402860\nvt 0.729571 0.410199\nvt 0.709753 0.410199\nvt 0.729571 0.410199\nvt 0.729571 0.402860\nvt 0.749090 0.402860\nvt 0.749090 0.402860\nvt 0.749090 0.410199\nvt 0.729571 0.410199\nvt 0.749090 0.395793\nvt 0.749090 0.402860\nvt 0.729571 0.402860\nvt 0.729571 0.402860\nvt 0.729571 0.395793\nvt 0.749090 0.395793\nvt 0.729571 0.395793\nvt 0.729571 0.402860\nvt 0.709753 0.402860\nvt 0.709753 0.402860\nvt 0.709753 0.395793\nvt 0.729571 0.395793\nvt 0.709753 0.395793\nvt 0.709753 0.402860\nvt 0.690391 0.404663\nvt 0.690391 0.404663\nvt 0.690379 0.398002\nvt 0.709753 0.395793\nvt 0.709753 0.389299\nvt 0.709753 0.395793\nvt 0.690379 0.398002\nvt 0.690379 0.398002\nvt 0.690319 0.391229\nvt 0.709753 0.389299\nvt 0.709753 0.395793\nvt 0.709753 0.389299\nvt 0.729571 0.389299\nvt 0.729571 0.389299\nvt 0.729571 0.395793\nvt 0.709753 0.395793\nvt 0.729571 0.395793\nvt 0.729571 0.389299\nvt 0.749090 0.389299\nvt 0.749090 0.389299\nvt 0.749090 0.395793\nvt 0.729571 0.395793\nvt 0.749090 0.383661\nvt 0.749090 0.389299\nvt 0.729571 0.389299\nvt 0.729571 0.389299\nvt 0.729571 0.383661\nvt 0.749090 0.383661\nvt 0.729571 0.383661\nvt 0.729571 0.389299\nvt 0.709753 0.389299\nvt 0.709753 0.389299\nvt 0.709753 0.383661\nvt 0.729571 0.383661\nvt 0.709753 0.383661\nvt 0.709753 0.389299\nvt 0.690319 0.391229\nvt 0.690319 0.391229\nvt 0.690184 0.384531\nvt 0.709753 0.383661\nvt 0.709016 0.378110\nvt 0.709753 0.383661\nvt 0.690184 0.384531\nvt 0.690184 0.384531\nvt 0.689978 0.378112\nvt 0.709016 0.378110\nvt 0.728951 0.378954\nvt 0.729571 0.383661\nvt 0.709753 0.383661\nvt 0.709753 0.383661\nvt 0.709783 0.378959\nvt 0.728951 0.378954\nvt 0.748498 0.378946\nvt 0.749090 0.383661\nvt 0.729571 0.383661\nvt 0.729571 0.383661\nvt 0.729606 0.378954\nvt 0.748498 0.378946\nvt 0.749090 0.389299\nvt 0.749090 0.383661\nvt 0.767842 0.383661\nvt 0.767842 0.383661\nvt 0.767842 0.389299\nvt 0.749090 0.389299\nvt 0.749090 0.395793\nvt 0.749090 0.389299\nvt 0.767842 0.389299\nvt 0.767842 0.389299\nvt 0.767842 0.395793\nvt 0.749090 0.395793\nvt 0.749090 0.402860\nvt 0.749090 0.395793\nvt 0.767842 0.395793\nvt 0.767842 0.395793\nvt 0.767842 0.402860\nvt 0.749090 0.402860\nvt 0.749090 0.410199\nvt 0.749090 0.402860\nvt 0.767842 0.402860\nvt 0.767842 0.402860\nvt 0.767842 0.410199\nvt 0.749090 0.410199\nvt 0.749090 0.417547\nvt 0.749090 0.410199\nvt 0.767842 0.410199\nvt 0.767842 0.410199\nvt 0.767842 0.417547\nvt 0.749090 0.417547\nvt 0.749090 0.424809\nvt 0.749090 0.417547\nvt 0.767842 0.417547\nvt 0.767842 0.417547\nvt 0.767842 0.424809\nvt 0.749090 0.424809\nvt 0.749090 0.431984\nvt 0.749090 0.424809\nvt 0.767842 0.424809\nvt 0.767842 0.424809\nvt 0.767842 0.431984\nvt 0.749090 0.431984\nvt 0.749090 0.439128\nvt 0.749090 0.431984\nvt 0.767842 0.431984\nvt 0.767842 0.431984\nvt 0.767842 0.439128\nvt 0.749090 0.439128\nvt 0.767842 0.439128\nvt 0.767842 0.431984\nvt 0.785349 0.431984\nvt 0.785349 0.431984\nvt 0.785349 0.439128\nvt 0.767842 0.439128\nvt 0.785349 0.439128\nvt 0.785349 0.431984\nvt 0.801209 0.431984\nvt 0.801209 0.431984\nvt 0.801209 0.439128\nvt 0.785349 0.439128\nvt 0.801209 0.439128\nvt 0.801209 0.431984\nvt 0.827125 0.431984\nvt 0.827125 0.431984\nvt 0.827125 0.439128\nvt 0.801209 0.439128\nvt 0.827125 0.424809\nvt 0.827125 0.431984\nvt 0.801209 0.431984\nvt 0.801209 0.431984\nvt 0.801209 0.424809\nvt 0.827125 0.424809\nvt 0.801209 0.424809\nvt 0.801209 0.431984\nvt 0.785349 0.431984\nvt 0.785349 0.431984\nvt 0.785349 0.424809\nvt 0.801209 0.424809\nvt 0.785349 0.424809\nvt 0.785349 0.431984\nvt 0.767842 0.431984\nvt 0.767842 0.431984\nvt 0.767842 0.424809\nvt 0.785349 0.424809\nvt 0.767842 0.424809\nvt 0.767842 0.417547\nvt 0.785349 0.417547\nvt 0.785349 0.417547\nvt 0.785349 0.424809\nvt 0.767842 0.424809\nvt 0.785349 0.424809\nvt 0.785349 0.417547\nvt 0.801209 0.417547\nvt 0.801209 0.417547\nvt 0.801209 0.424809\nvt 0.785349 0.424809\nvt 0.801209 0.424809\nvt 0.801209 0.417547\nvt 0.827125 0.417547\nvt 0.827125 0.417547\nvt 0.827125 0.424809\nvt 0.801209 0.424809\nvt 0.827125 0.410199\nvt 0.827125 0.417547\nvt 0.801209 0.417547\nvt 0.801209 0.417547\nvt 0.801209 0.410199\nvt 0.827125 0.410199\nvt 0.801209 0.410199\nvt 0.801209 0.417547\nvt 0.785349 0.417547\nvt 0.785349 0.417547\nvt 0.785349 0.410199\nvt 0.801209 0.410199\nvt 0.785349 0.410199\nvt 0.785349 0.417547\nvt 0.767842 0.417547\nvt 0.767842 0.417547\nvt 0.767842 0.410199\nvt 0.785349 0.410199\nvt 0.785349 0.402860\nvt 0.785349 0.410199\nvt 0.767842 0.410199\nvt 0.767842 0.410199\nvt 0.767842 0.402860\nvt 0.785349 0.402860\nvt 0.785349 0.410199\nvt 0.785349 0.402860\nvt 0.801209 0.402860\nvt 0.801209 0.402860\nvt 0.801209 0.410199\nvt 0.785349 0.410199\nvt 0.801209 0.410199\nvt 0.801209 0.402860\nvt 0.827125 0.402860\nvt 0.827125 0.402860\nvt 0.827125 0.410199\nvt 0.801209 0.410199\nvt 0.827125 0.395793\nvt 0.827125 0.402860\nvt 0.801209 0.402860\nvt 0.801209 0.402860\nvt 0.801209 0.395793\nvt 0.827125 0.395793\nvt 0.801209 0.395793\nvt 0.801209 0.402860\nvt 0.785349 0.402860\nvt 0.785349 0.402860\nvt 0.785349 0.395793\nvt 0.801209 0.395793\nvt 0.785349 0.395793\nvt 0.785349 0.402860\nvt 0.767842 0.402860\nvt 0.767842 0.402860\nvt 0.767842 0.395793\nvt 0.785349 0.395793\nvt 0.785349 0.389299\nvt 0.785349 0.395793\nvt 0.767842 0.395793\nvt 0.767842 0.395793\nvt 0.767842 0.389299\nvt 0.785349 0.389299\nvt 0.785349 0.395793\nvt 0.785349 0.389299\nvt 0.801209 0.389299\nvt 0.801209 0.389299\nvt 0.801209 0.395793\nvt 0.785349 0.395793\nvt 0.801209 0.395793\nvt 0.801209 0.389299\nvt 0.827125 0.389299\nvt 0.827125 0.389299\nvt 0.827125 0.395793\nvt 0.801209 0.395793\nvt 0.827125 0.383661\nvt 0.827125 0.389299\nvt 0.801209 0.389299\nvt 0.801209 0.389299\nvt 0.801209 0.383661\nvt 0.827125 0.383661\nvt 0.801209 0.383661\nvt 0.801209 0.389299\nvt 0.785349 0.389299\nvt 0.785349 0.389299\nvt 0.785349 0.383661\nvt 0.801209 0.383661\nvt 0.785349 0.383661\nvt 0.785349 0.389299\nvt 0.767842 0.389299\nvt 0.767842 0.389299\nvt 0.767842 0.383661\nvt 0.785349 0.383661\nvt 0.784863 0.378949\nvt 0.785349 0.383661\nvt 0.767842 0.383661\nvt 0.767842 0.383661\nvt 0.767885 0.378959\nvt 0.784863 0.378949\nvt 0.800781 0.378948\nvt 0.801209 0.383661\nvt 0.785349 0.383661\nvt 0.785349 0.383661\nvt 0.785378 0.378961\nvt 0.800781 0.378948\nvt 0.827125 0.395793\nvt 0.827125 0.389299\nvt 0.854411 0.389299\nvt 0.854411 0.389299\nvt 0.827125 0.389299\nvt 0.827125 0.383661\nvt 0.827125 0.383661\nvt 0.854411 0.383661\nvt 0.854411 0.389299\nvt 0.854411 0.389299\nvt 0.854411 0.383661\nvt 0.865794 0.383661\nvt 0.865794 0.383661\nvt 0.865794 0.389299\nvt 0.854411 0.389299\nvt 0.854411 0.389299\nvt 0.865794 0.389299\nvt 0.865794 0.395793\nvt 0.865794 0.395793\nvt 0.854411 0.395793\nvt 0.854411 0.389299\nvt 0.854411 0.402860\nvt 0.854411 0.395793\nvt 0.865794 0.395793\nvt 0.865794 0.395793\nvt 0.865794 0.402860\nvt 0.854411 0.402860\nvt 0.854411 0.402860\nvt 0.865794 0.402860\nvt 0.865794 0.410199\nvt 0.865794 0.410199\nvt 0.854411 0.410199\nvt 0.854411 0.402860\nvt 0.854411 0.417547\nvt 0.854411 0.410199\nvt 0.865794 0.410199\nvt 0.865794 0.410199\nvt 0.865794 0.417547\nvt 0.854411 0.417547\nvt 0.854411 0.417547\nvt 0.865794 0.417547\nvt 0.865794 0.424809\nvt 0.865794 0.424809\nvt 0.854411 0.424809\nvt 0.854411 0.417547\nvt 0.854411 0.431984\nvt 0.854411 0.424809\nvt 0.865794 0.424809\nvt 0.865794 0.424809\nvt 0.865794 0.431984\nvt 0.854411 0.431984\nvt 0.854411 0.431984\nvt 0.865794 0.431984\nvt 0.865794 0.439128\nvt 0.865794 0.439128\nvt 0.854411 0.439128\nvt 0.854411 0.431984\nvt 0.854411 0.431984\nvt 0.854411 0.439128\nvt 0.827125 0.439128\nvt 0.827125 0.439128\nvt 0.827125 0.431984\nvt 0.854411 0.431984\nvt 0.854411 0.431984\nvt 0.827125 0.431984\nvt 0.827125 0.424809\nvt 0.827125 0.424809\nvt 0.854411 0.424809\nvt 0.854411 0.431984\nvt 0.854411 0.417547\nvt 0.854411 0.424809\nvt 0.827125 0.424809\nvt 0.827125 0.424809\nvt 0.827125 0.417547\nvt 0.854411 0.417547\nvt 0.854411 0.417547\nvt 0.827125 0.417547\nvt 0.827125 0.410199\nvt 0.827125 0.410199\nvt 0.854411 0.410199\nvt 0.854411 0.417547\nvt 0.854411 0.402860\nvt 0.854411 0.410199\nvt 0.827125 0.410199\nvt 0.827125 0.410199\nvt 0.827125 0.402860\nvt 0.854411 0.402860\nvt 0.854411 0.402860\nvt 0.827125 0.402860\nvt 0.827125 0.395793\nvt 0.827125 0.395793\nvt 0.854411 0.395793\nvt 0.854411 0.402860\nvt 0.854411 0.389299\nvt 0.854411 0.395793\nvt 0.827125 0.395793\nvt 0.854411 0.446311\nvt 0.854411 0.439128\nvt 0.865794 0.439128\nvt 0.865794 0.439128\nvt 0.865794 0.446311\nvt 0.854411 0.446311\nvt 0.854411 0.446311\nvt 0.865794 0.446311\nvt 0.865794 0.453533\nvt 0.865794 0.453533\nvt 0.854411 0.453533\nvt 0.854411 0.446311\nvt 0.854411 0.460670\nvt 0.854411 0.453533\nvt 0.865794 0.453533\nvt 0.865794 0.453533\nvt 0.865794 0.460670\nvt 0.854411 0.460670\nvt 0.854411 0.460670\nvt 0.865794 0.460670\nvt 0.865794 0.467595\nvt 0.865794 0.467595\nvt 0.854411 0.467595\nvt 0.854411 0.460670\nvt 0.854411 0.474323\nvt 0.854411 0.467595\nvt 0.865794 0.467595\nvt 0.865794 0.467595\nvt 0.865794 0.474323\nvt 0.854411 0.474323\nvt 0.854411 0.474323\nvt 0.865794 0.474323\nvt 0.865794 0.481004\nvt 0.865794 0.481004\nvt 0.854411 0.481004\nvt 0.854411 0.474323\nvt 0.854411 0.487591\nvt 0.854411 0.481004\nvt 0.865794 0.481004\nvt 0.865794 0.481004\nvt 0.865794 0.487591\nvt 0.854411 0.487591\nvt 0.827125 0.481004\nvt 0.854411 0.481004\nvt 0.854411 0.487591\nvt 0.854411 0.474323\nvt 0.854411 0.481004\nvt 0.827125 0.481004\nvt 0.854411 0.487591\nvt 0.827125 0.487591\nvt 0.827125 0.481004\nvt 0.827125 0.481004\nvt 0.827125 0.487591\nvt 0.801209 0.487591\nvt 0.801209 0.487591\nvt 0.801209 0.481004\nvt 0.827125 0.481004\nvt 0.801209 0.481004\nvt 0.801209 0.487591\nvt 0.785349 0.487591\nvt 0.785349 0.487591\nvt 0.785349 0.481004\nvt 0.801209 0.481004\nvt 0.785349 0.481004\nvt 0.785349 0.487591\nvt 0.767842 0.487591\nvt 0.767842 0.487591\nvt 0.767842 0.481004\nvt 0.785349 0.481004\nvt 0.767842 0.481004\nvt 0.767842 0.487591\nvt 0.749090 0.487591\nvt 0.749090 0.487591\nvt 0.749090 0.481004\nvt 0.767842 0.481004\nvt 0.749090 0.481004\nvt 0.749090 0.487591\nvt 0.729571 0.487591\nvt 0.729571 0.487591\nvt 0.729571 0.481004\nvt 0.749090 0.481004\nvt 0.729571 0.481004\nvt 0.729571 0.487591\nvt 0.709753 0.487591\nvt 0.709753 0.487591\nvt 0.709753 0.481004\nvt 0.729571 0.481004\nvt 0.709753 0.481004\nvt 0.709753 0.487591\nvt 0.690250 0.486826\nvt 0.690250 0.486826\nvt 0.690486 0.480455\nvt 0.709753 0.481004\nvt 0.690486 0.480455\nvt 0.690250 0.486826\nvt 0.671112 0.486718\nvt 0.671112 0.486718\nvt 0.671547 0.480248\nvt 0.690486 0.480455\nvt 0.671547 0.480248\nvt 0.671112 0.486718\nvt 0.652886 0.486718\nvt 0.652886 0.486718\nvt 0.653489 0.480224\nvt 0.671547 0.480248\nvt 0.653489 0.480224\nvt 0.652886 0.486718\nvt 0.635654 0.486754\nvt 0.635654 0.486754\nvt 0.636397 0.480296\nvt 0.653489 0.480224\nvt 0.636397 0.480296\nvt 0.635654 0.486754\nvt 0.619469 0.486816\nvt 0.619469 0.486816\nvt 0.620328 0.480437\nvt 0.636397 0.480296\nvt 0.620328 0.480437\nvt 0.619469 0.486816\nvt 0.604266 0.486879\nvt 0.604266 0.486879\nvt 0.605247 0.480598\nvt 0.620328 0.480437\nvt 0.605247 0.480598\nvt 0.604266 0.486879\nvt 0.589770 0.486895\nvt 0.589770 0.486895\nvt 0.590968 0.480685\nvt 0.605247 0.480598\nvt 0.590968 0.480685\nvt 0.589770 0.486895\nvt 0.575815 0.486949\nvt 0.575815 0.486949\nvt 0.577329 0.480796\nvt 0.590968 0.480685\nvt 0.577329 0.480796\nvt 0.575815 0.486949\nvt 0.562325 0.487077\nvt 0.562325 0.487077\nvt 0.564275 0.480987\nvt 0.577329 0.480796\nvt 0.564275 0.480987\nvt 0.562325 0.487077\nvt 0.549304 0.487212\nvt 0.549304 0.487212\nvt 0.551809 0.481062\nvt 0.564275 0.480987\nvt 0.551809 0.481062\nvt 0.549304 0.487212\nvt 0.536842 0.487116\nvt 0.536842 0.487116\nvt 0.539908 0.480738\nvt 0.551809 0.481062\nvt 0.539908 0.480738\nvt 0.536842 0.487116\nvt 0.524410 0.486892\nvt 0.524410 0.486892\nvt 0.527923 0.480214\nvt 0.539908 0.480738\nvt 0.527923 0.480214\nvt 0.524410 0.486892\nvt 0.511967 0.486629\nvt 0.511967 0.486629\nvt 0.515635 0.479670\nvt 0.527923 0.480214\nvt 0.515635 0.479670\nvt 0.511967 0.486629\nvt 0.499609 0.486322\nvt 0.499609 0.486322\nvt 0.502966 0.479176\nvt 0.515635 0.479670\nvt 0.502966 0.479176\nvt 0.499609 0.486322\nvt 0.487184 0.486221\nvt 0.483714 0.493659\nvt 0.487184 0.486221\nvt 0.499609 0.486322\nvt 0.487184 0.486221\nvt 0.483714 0.493659\nvt 0.473949 0.493406\nvt 0.473949 0.493406\nvt 0.475213 0.486490\nvt 0.487184 0.486221\nvt 0.499609 0.486322\nvt 0.494676 0.493549\nvt 0.483714 0.493659\nvt 0.487184 0.486221\nvt 0.489661 0.479218\nvt 0.502966 0.479176\nvt 0.489661 0.479218\nvt 0.487184 0.486221\nvt 0.475213 0.486490\nvt 0.475213 0.486490\nvt 0.476541 0.479978\nvt 0.489661 0.479218\nvt 0.476541 0.479978\nvt 0.475213 0.486490\nvt 0.455163 0.486672\nvt 0.455163 0.486672\nvt 0.454689 0.480240\nvt 0.476541 0.479978\nvt 0.477581 0.473470\nvt 0.476541 0.479978\nvt 0.454689 0.480240\nvt 0.454689 0.480240\nvt 0.454731 0.473846\nvt 0.477581 0.473470\nvt 0.476541 0.479978\nvt 0.477581 0.473470\nvt 0.491294 0.472370\nvt 0.491294 0.472370\nvt 0.489661 0.479218\nvt 0.476541 0.479978\nvt 0.489661 0.479218\nvt 0.491294 0.472370\nvt 0.505131 0.472301\nvt 0.505131 0.472301\nvt 0.502966 0.479176\nvt 0.489661 0.479218\nvt 0.506429 0.465577\nvt 0.505131 0.472301\nvt 0.491294 0.472370\nvt 0.491294 0.472370\nvt 0.492226 0.465588\nvt 0.506429 0.465577\nvt 0.492226 0.465588\nvt 0.491294 0.472370\nvt 0.477581 0.473470\nvt 0.477581 0.473470\nvt 0.478118 0.466692\nvt 0.492226 0.465588\nvt 0.478118 0.466692\nvt 0.477581 0.473470\nvt 0.454731 0.473846\nvt 0.454731 0.473846\nvt 0.454610 0.467227\nvt 0.478118 0.466692\nvt 0.478122 0.459846\nvt 0.478118 0.466692\nvt 0.454610 0.467227\nvt 0.454610 0.467227\nvt 0.454217 0.460369\nvt 0.478122 0.459846\nvt 0.478118 0.466692\nvt 0.478122 0.459846\nvt 0.492457 0.458759\nvt 0.492457 0.458759\nvt 0.492226 0.465588\nvt 0.478118 0.466692\nvt 0.492226 0.465588\nvt 0.492457 0.458759\nvt 0.506891 0.458887\nvt 0.506891 0.458887\nvt 0.506429 0.465577\nvt 0.492226 0.465588\nvt 0.506517 0.452214\nvt 0.506891 0.458887\nvt 0.492457 0.458759\nvt 0.492457 0.458759\nvt 0.491965 0.452104\nvt 0.506517 0.452214\nvt 0.491965 0.452104\nvt 0.492457 0.458759\nvt 0.478122 0.459846\nvt 0.478122 0.459846\nvt 0.477556 0.452852\nvt 0.491965 0.452104\nvt 0.477556 0.452852\nvt 0.478122 0.459846\nvt 0.454217 0.460369\nvt 0.454217 0.460369\nvt 0.453594 0.453378\nvt 0.477556 0.452852\nvt 0.476587 0.445812\nvt 0.477556 0.452852\nvt 0.453594 0.453378\nvt 0.453594 0.453378\nvt 0.452894 0.446275\nvt 0.476587 0.445812\nvt 0.477556 0.452852\nvt 0.476587 0.445812\nvt 0.490889 0.445518\nvt 0.490889 0.445518\nvt 0.491965 0.452104\nvt 0.477556 0.452852\nvt 0.491965 0.452104\nvt 0.490889 0.445518\nvt 0.505416 0.445681\nvt 0.505416 0.445681\nvt 0.506517 0.452214\nvt 0.491965 0.452104\nvt 0.503774 0.439216\nvt 0.505416 0.445681\nvt 0.490889 0.445518\nvt 0.490889 0.445518\nvt 0.489404 0.438989\nvt 0.503774 0.439216\nvt 0.489404 0.438989\nvt 0.490889 0.445518\nvt 0.476587 0.445812\nvt 0.476587 0.445812\nvt 0.475375 0.438833\nvt 0.489404 0.438989\nvt 0.475375 0.438833\nvt 0.476587 0.445812\nvt 0.452894 0.446275\nvt 0.452894 0.446275\nvt 0.452235 0.439115\nvt 0.475375 0.438833\nvt 0.506891 0.458887\nvt 0.506517 0.452214\nvt 0.520236 0.452254\nvt 0.520236 0.452254\nvt 0.520401 0.458944\nvt 0.506891 0.458887\nvt 0.506429 0.465577\nvt 0.506891 0.458887\nvt 0.520401 0.458944\nvt 0.520401 0.458944\nvt 0.519695 0.465752\nvt 0.506429 0.465577\nvt 0.505131 0.472301\nvt 0.506429 0.465577\nvt 0.519695 0.465752\nvt 0.519695 0.465752\nvt 0.518119 0.472672\nvt 0.505131 0.472301\nvt 0.502966 0.479176\nvt 0.505131 0.472301\nvt 0.518119 0.472672\nvt 0.518119 0.472672\nvt 0.515635 0.479670\nvt 0.502966 0.479176\nvt 0.515635 0.479670\nvt 0.518119 0.472672\nvt 0.530518 0.473246\nvt 0.530518 0.473246\nvt 0.527923 0.480214\nvt 0.515635 0.479670\nvt 0.527923 0.480214\nvt 0.530518 0.473246\nvt 0.542471 0.473873\nvt 0.542471 0.473873\nvt 0.539908 0.480738\nvt 0.527923 0.480214\nvt 0.539908 0.480738\nvt 0.542471 0.473873\nvt 0.554203 0.474361\nvt 0.554203 0.474361\nvt 0.551809 0.481062\nvt 0.539908 0.480738\nvt 0.556143 0.467313\nvt 0.554203 0.474361\nvt 0.542471 0.473873\nvt 0.542471 0.473873\nvt 0.544396 0.466803\nvt 0.556143 0.467313\nvt 0.544396 0.466803\nvt 0.542471 0.473873\nvt 0.530518 0.473246\nvt 0.530518 0.473246\nvt 0.532303 0.466228\nvt 0.544396 0.466803\nvt 0.532303 0.466228\nvt 0.530518 0.473246\nvt 0.518119 0.472672\nvt 0.518119 0.472672\nvt 0.519695 0.465752\nvt 0.532303 0.466228\nvt 0.519695 0.465752\nvt 0.520401 0.458944\nvt 0.533264 0.459278\nvt 0.533264 0.459278\nvt 0.532303 0.466228\nvt 0.519695 0.465752\nvt 0.532303 0.466228\nvt 0.533264 0.459278\nvt 0.545591 0.459695\nvt 0.545591 0.459695\nvt 0.544396 0.466803\nvt 0.532303 0.466228\nvt 0.544396 0.466803\nvt 0.545591 0.459695\nvt 0.557488 0.460077\nvt 0.557488 0.460077\nvt 0.556143 0.467313\nvt 0.544396 0.466803\nvt 0.558100 0.452807\nvt 0.557488 0.460077\nvt 0.545591 0.459695\nvt 0.545591 0.459695\nvt 0.545984 0.452615\nvt 0.558100 0.452807\nvt 0.545984 0.452615\nvt 0.545591 0.459695\nvt 0.533264 0.459278\nvt 0.533264 0.459278\nvt 0.533374 0.452422\nvt 0.545984 0.452615\nvt 0.533374 0.452422\nvt 0.533264 0.459278\nvt 0.520401 0.458944\nvt 0.520401 0.458944\nvt 0.520236 0.452254\nvt 0.533374 0.452422\nvt 0.532700 0.445624\nvt 0.533374 0.452422\nvt 0.520236 0.452254\nvt 0.520236 0.452254\nvt 0.519296 0.445656\nvt 0.532700 0.445624\nvt 0.519296 0.445656\nvt 0.520236 0.452254\nvt 0.506517 0.452214\nvt 0.506517 0.452214\nvt 0.505416 0.445681\nvt 0.519296 0.445656\nvt 0.533374 0.452422\nvt 0.532700 0.445624\nvt 0.545602 0.445543\nvt 0.545602 0.445543\nvt 0.545984 0.452615\nvt 0.533374 0.452422\nvt 0.545984 0.452615\nvt 0.545602 0.445543\nvt 0.557967 0.445486\nvt 0.557967 0.445486\nvt 0.558100 0.452807\nvt 0.545984 0.452615\nvt 0.557103 0.438135\nvt 0.557967 0.445486\nvt 0.545602 0.445543\nvt 0.545602 0.445543\nvt 0.544491 0.438438\nvt 0.557103 0.438135\nvt 0.544491 0.438438\nvt 0.545602 0.445543\nvt 0.532700 0.445624\nvt 0.532700 0.445624\nvt 0.531337 0.438806\nvt 0.544491 0.438438\nvt 0.531337 0.438806\nvt 0.532700 0.445624\nvt 0.519296 0.445656\nvt 0.519296 0.445656\nvt 0.517725 0.439060\nvt 0.531337 0.438806\nvt 0.517725 0.439060\nvt 0.519296 0.445656\nvt 0.505416 0.445681\nvt 0.505416 0.445681\nvt 0.503774 0.439216\nvt 0.517725 0.439060\nvt 0.557488 0.460077\nvt 0.558100 0.452807\nvt 0.570011 0.452983\nvt 0.558100 0.452807\nvt 0.557967 0.445486\nvt 0.570046 0.445576\nvt 0.570046 0.445576\nvt 0.570011 0.452983\nvt 0.558100 0.452807\nvt 0.570011 0.452983\nvt 0.570046 0.445576\nvt 0.582252 0.445758\nvt 0.582252 0.445758\nvt 0.582096 0.453170\nvt 0.570011 0.452983\nvt 0.569325 0.460325\nvt 0.570011 0.452983\nvt 0.582096 0.453170\nvt 0.582096 0.453170\nvt 0.581429 0.460503\nvt 0.569325 0.460325\nvt 0.568039 0.467504\nvt 0.569325 0.460325\nvt 0.581429 0.460503\nvt 0.569325 0.460325\nvt 0.568039 0.467504\nvt 0.556143 0.467313\nvt 0.554203 0.474361\nvt 0.556143 0.467313\nvt 0.568039 0.467504\nvt 0.568039 0.467504\nvt 0.566305 0.474448\nvt 0.554203 0.474361\nvt 0.551809 0.481062\nvt 0.554203 0.474361\nvt 0.566305 0.474448\nvt 0.566305 0.474448\nvt 0.564275 0.480987\nvt 0.551809 0.481062\nvt 0.564275 0.480987\nvt 0.566305 0.474448\nvt 0.578915 0.474343\nvt 0.578915 0.474343\nvt 0.577329 0.480796\nvt 0.564275 0.480987\nvt 0.577329 0.480796\nvt 0.578915 0.474343\nvt 0.592144 0.474264\nvt 0.592144 0.474264\nvt 0.590968 0.480685\nvt 0.577329 0.480796\nvt 0.590968 0.480685\nvt 0.592144 0.474264\nvt 0.606119 0.474145\nvt 0.606119 0.474145\nvt 0.605247 0.480598\nvt 0.590968 0.480685\nvt 0.606930 0.467457\nvt 0.606119 0.474145\nvt 0.592144 0.474264\nvt 0.592144 0.474264\nvt 0.593227 0.467552\nvt 0.606930 0.467457\nvt 0.593227 0.467552\nvt 0.592144 0.474264\nvt 0.578915 0.474343\nvt 0.578915 0.474343\nvt 0.580329 0.467584\nvt 0.593227 0.467552\nvt 0.580329 0.467584\nvt 0.578915 0.474343\nvt 0.566305 0.474448\nvt 0.566305 0.474448\nvt 0.568039 0.467504\nvt 0.580329 0.467584\nvt 0.581429 0.460503\nvt 0.580329 0.467584\nvt 0.568039 0.467504\nvt 0.580329 0.467584\nvt 0.581429 0.460503\nvt 0.594110 0.460542\nvt 0.594110 0.460542\nvt 0.593227 0.467552\nvt 0.580329 0.467584\nvt 0.593227 0.467552\nvt 0.594110 0.460542\nvt 0.607623 0.460521\nvt 0.607623 0.460521\nvt 0.606930 0.467457\nvt 0.593227 0.467552\nvt 0.608132 0.453382\nvt 0.607623 0.460521\nvt 0.594110 0.460542\nvt 0.594110 0.460542\nvt 0.594705 0.453302\nvt 0.608132 0.453382\nvt 0.594705 0.453302\nvt 0.594110 0.460542\nvt 0.581429 0.460503\nvt 0.581429 0.460503\nvt 0.582096 0.453170\nvt 0.594705 0.453302\nvt 0.594942 0.445958\nvt 0.594705 0.453302\nvt 0.582096 0.453170\nvt 0.582096 0.453170\nvt 0.582252 0.445758\nvt 0.594942 0.445958\nvt 0.594705 0.453302\nvt 0.594942 0.445958\nvt 0.608391 0.446128\nvt 0.608391 0.446128\nvt 0.608132 0.453382\nvt 0.594705 0.453302\nvt 0.608391 0.438850\nvt 0.608391 0.446128\nvt 0.594942 0.445958\nvt 0.594942 0.445958\nvt 0.594808 0.438630\nvt 0.608391 0.438850\nvt 0.594808 0.438630\nvt 0.594942 0.445958\nvt 0.582252 0.445758\nvt 0.582252 0.445758\nvt 0.581898 0.438383\nvt 0.594808 0.438630\nvt 0.581898 0.438383\nvt 0.582252 0.445758\nvt 0.570046 0.445576\nvt 0.570046 0.445576\nvt 0.569436 0.438172\nvt 0.581898 0.438383\nvt 0.569436 0.438172\nvt 0.570046 0.445576\nvt 0.557967 0.445486\nvt 0.557967 0.445486\nvt 0.557103 0.438135\nvt 0.569436 0.438172\nvt 0.607623 0.460521\nvt 0.608132 0.453382\nvt 0.622593 0.453400\nvt 0.622593 0.453400\nvt 0.622198 0.460441\nvt 0.607623 0.460521\nvt 0.606930 0.467457\nvt 0.607623 0.460521\nvt 0.622198 0.460441\nvt 0.622198 0.460441\nvt 0.621661 0.467300\nvt 0.606930 0.467457\nvt 0.606119 0.474145\nvt 0.606930 0.467457\nvt 0.621661 0.467300\nvt 0.621661 0.467300\nvt 0.621027 0.473954\nvt 0.606119 0.474145\nvt 0.605247 0.480598\nvt 0.606119 0.474145\nvt 0.621027 0.473954\nvt 0.621027 0.473954\nvt 0.620328 0.480437\nvt 0.605247 0.480598\nvt 0.620328 0.480437\nvt 0.621027 0.473954\nvt 0.636975 0.473796\nvt 0.636975 0.473796\nvt 0.636397 0.480296\nvt 0.620328 0.480437\nvt 0.636397 0.480296\nvt 0.636975 0.473796\nvt 0.653943 0.473721\nvt 0.653943 0.473721\nvt 0.653489 0.480224\nvt 0.636397 0.480296\nvt 0.653489 0.480224\nvt 0.653943 0.473721\nvt 0.671858 0.473757\nvt 0.671858 0.473757\nvt 0.671547 0.480248\nvt 0.653489 0.480224\nvt 0.672080 0.467147\nvt 0.671858 0.473757\nvt 0.653943 0.473721\nvt 0.653943 0.473721\nvt 0.654299 0.467112\nvt 0.672080 0.467147\nvt 0.654299 0.467112\nvt 0.653943 0.473721\nvt 0.636975 0.473796\nvt 0.636975 0.473796\nvt 0.637465 0.467170\nvt 0.654299 0.467112\nvt 0.637465 0.467170\nvt 0.636975 0.473796\nvt 0.621027 0.473954\nvt 0.621027 0.473954\nvt 0.621661 0.467300\nvt 0.637465 0.467170\nvt 0.637858 0.460369\nvt 0.637465 0.467170\nvt 0.621661 0.467300\nvt 0.621661 0.467300\nvt 0.622198 0.460441\nvt 0.637858 0.460369\nvt 0.637465 0.467170\nvt 0.637858 0.460369\nvt 0.654558 0.460337\nvt 0.654558 0.460337\nvt 0.654299 0.467112\nvt 0.637465 0.467170\nvt 0.654299 0.467112\nvt 0.654558 0.460337\nvt 0.672221 0.460362\nvt 0.672221 0.460362\nvt 0.672080 0.467147\nvt 0.654299 0.467112\nvt 0.672277 0.453415\nvt 0.672221 0.460362\nvt 0.654558 0.460337\nvt 0.654558 0.460337\nvt 0.654705 0.453400\nvt 0.672277 0.453415\nvt 0.654705 0.453400\nvt 0.654558 0.460337\nvt 0.637858 0.460369\nvt 0.637858 0.460369\nvt 0.638127 0.453398\nvt 0.654705 0.453400\nvt 0.638127 0.453398\nvt 0.637858 0.460369\nvt 0.622198 0.460441\nvt 0.622198 0.460441\nvt 0.622593 0.453400\nvt 0.638127 0.453398\nvt 0.638234 0.446306\nvt 0.638127 0.453398\nvt 0.622593 0.453400\nvt 0.622593 0.453400\nvt 0.622795 0.446237\nvt 0.638234 0.446306\nvt 0.622795 0.446237\nvt 0.622593 0.453400\nvt 0.608132 0.453382\nvt 0.608132 0.453382\nvt 0.608391 0.446128\nvt 0.622795 0.446237\nvt 0.638127 0.453398\nvt 0.638234 0.446306\nvt 0.654722 0.446346\nvt 0.654722 0.446346\nvt 0.654705 0.453400\nvt 0.638127 0.453398\nvt 0.654705 0.453400\nvt 0.654722 0.446346\nvt 0.672240 0.446361\nvt 0.672240 0.446361\nvt 0.672277 0.453415\nvt 0.654705 0.453400\nvt 0.672127 0.439268\nvt 0.672240 0.446361\nvt 0.654722 0.446346\nvt 0.654722 0.446346\nvt 0.654623 0.439239\nvt 0.672127 0.439268\nvt 0.654623 0.439239\nvt 0.654722 0.446346\nvt 0.638234 0.446306\nvt 0.638234 0.446306\nvt 0.638188 0.439155\nvt 0.654623 0.439239\nvt 0.638188 0.439155\nvt 0.638234 0.446306\nvt 0.622795 0.446237\nvt 0.622795 0.446237\nvt 0.622800 0.439024\nvt 0.638188 0.439155\nvt 0.622800 0.439024\nvt 0.622795 0.446237\nvt 0.608391 0.446128\nvt 0.608391 0.446128\nvt 0.608391 0.438850\nvt 0.622800 0.439024\nvt 0.672221 0.460362\nvt 0.672277 0.453415\nvt 0.690795 0.453446\nvt 0.672277 0.453415\nvt 0.672240 0.446361\nvt 0.690766 0.446340\nvt 0.690766 0.446340\nvt 0.690795 0.453446\nvt 0.672277 0.453415\nvt 0.690795 0.453446\nvt 0.690766 0.446340\nvt 0.709753 0.446311\nvt 0.709753 0.446311\nvt 0.709753 0.453533\nvt 0.690795 0.453446\nvt 0.690782 0.460456\nvt 0.690795 0.453446\nvt 0.709753 0.453533\nvt 0.709753 0.453533\nvt 0.709753 0.460670\nvt 0.690782 0.460456\nvt 0.690725 0.467295\nvt 0.690782 0.460456\nvt 0.709753 0.460670\nvt 0.690782 0.460456\nvt 0.690725 0.467295\nvt 0.672080 0.467147\nvt 0.671858 0.473757\nvt 0.672080 0.467147\nvt 0.690725 0.467295\nvt 0.690725 0.467295\nvt 0.690630 0.473950\nvt 0.671858 0.473757\nvt 0.671547 0.480248\nvt 0.671858 0.473757\nvt 0.690630 0.473950\nvt 0.690630 0.473950\nvt 0.690486 0.480455\nvt 0.671547 0.480248\nvt 0.690486 0.480455\nvt 0.690630 0.473950\nvt 0.709753 0.474323\nvt 0.709753 0.474323\nvt 0.709753 0.481004\nvt 0.690486 0.480455\nvt 0.709753 0.481004\nvt 0.709753 0.474323\nvt 0.729571 0.474323\nvt 0.729571 0.474323\nvt 0.729571 0.481004\nvt 0.709753 0.481004\nvt 0.729571 0.481004\nvt 0.729571 0.474323\nvt 0.749090 0.474323\nvt 0.749090 0.474323\nvt 0.749090 0.481004\nvt 0.729571 0.481004\nvt 0.749090 0.467595\nvt 0.749090 0.474323\nvt 0.729571 0.474323\nvt 0.729571 0.474323\nvt 0.729571 0.467595\nvt 0.749090 0.467595\nvt 0.729571 0.467595\nvt 0.729571 0.474323\nvt 0.709753 0.474323\nvt 0.709753 0.474323\nvt 0.709753 0.467595\nvt 0.729571 0.467595\nvt 0.709753 0.467595\nvt 0.709753 0.474323\nvt 0.690630 0.473950\nvt 0.690630 0.473950\nvt 0.690725 0.467295\nvt 0.709753 0.467595\nvt 0.709753 0.460670\nvt 0.709753 0.467595\nvt 0.690725 0.467295\nvt 0.709753 0.467595\nvt 0.709753 0.460670\nvt 0.729571 0.460670\nvt 0.729571 0.460670\nvt 0.729571 0.467595\nvt 0.709753 0.467595\nvt 0.729571 0.467595\nvt 0.729571 0.460670\nvt 0.749090 0.460670\nvt 0.749090 0.460670\nvt 0.749090 0.467595\nvt 0.729571 0.467595\nvt 0.749090 0.453533\nvt 0.749090 0.460670\nvt 0.729571 0.460670\nvt 0.729571 0.460670\nvt 0.729571 0.453533\nvt 0.749090 0.453533\nvt 0.729571 0.453533\nvt 0.729571 0.460670\nvt 0.709753 0.460670\nvt 0.709753 0.460670\nvt 0.709753 0.453533\nvt 0.729571 0.453533\nvt 0.729571 0.446311\nvt 0.729571 0.453533\nvt 0.709753 0.453533\nvt 0.709753 0.453533\nvt 0.709753 0.446311\nvt 0.729571 0.446311\nvt 0.729571 0.453533\nvt 0.729571 0.446311\nvt 0.749090 0.446311\nvt 0.749090 0.446311\nvt 0.749090 0.453533\nvt 0.729571 0.453533\nvt 0.749090 0.439128\nvt 0.749090 0.446311\nvt 0.729571 0.446311\nvt 0.729571 0.446311\nvt 0.729571 0.439128\nvt 0.749090 0.439128\nvt 0.729571 0.439128\nvt 0.729571 0.446311\nvt 0.709753 0.446311\nvt 0.709753 0.446311\nvt 0.709753 0.439128\nvt 0.729571 0.439128\nvt 0.709753 0.439128\nvt 0.709753 0.446311\nvt 0.690766 0.446340\nvt 0.690766 0.446340\nvt 0.690702 0.439218\nvt 0.709753 0.439128\nvt 0.690702 0.439218\nvt 0.690766 0.446340\nvt 0.672240 0.446361\nvt 0.672240 0.446361\nvt 0.672127 0.439268\nvt 0.690702 0.439218\nvt 0.749090 0.460670\nvt 0.749090 0.453533\nvt 0.767842 0.453533\nvt 0.767842 0.453533\nvt 0.767842 0.460670\nvt 0.749090 0.460670\nvt 0.749090 0.467595\nvt 0.749090 0.460670\nvt 0.767842 0.460670\nvt 0.767842 0.460670\nvt 0.767842 0.467595\nvt 0.749090 0.467595\nvt 0.749090 0.474323\nvt 0.749090 0.467595\nvt 0.767842 0.467595\nvt 0.767842 0.467595\nvt 0.767842 0.474323\nvt 0.749090 0.474323\nvt 0.749090 0.481004\nvt 0.749090 0.474323\nvt 0.767842 0.474323\nvt 0.767842 0.474323\nvt 0.767842 0.481004\nvt 0.749090 0.481004\nvt 0.767842 0.481004\nvt 0.767842 0.474323\nvt 0.785349 0.474323\nvt 0.785349 0.474323\nvt 0.785349 0.481004\nvt 0.767842 0.481004\nvt 0.785349 0.481004\nvt 0.785349 0.474323\nvt 0.801209 0.474323\nvt 0.801209 0.474323\nvt 0.801209 0.481004\nvt 0.785349 0.481004\nvt 0.801209 0.481004\nvt 0.801209 0.474323\nvt 0.827125 0.474323\nvt 0.827125 0.474323\nvt 0.827125 0.481004\nvt 0.801209 0.481004\nvt 0.827125 0.467595\nvt 0.827125 0.474323\nvt 0.801209 0.474323\nvt 0.801209 0.474323\nvt 0.801209 0.467595\nvt 0.827125 0.467595\nvt 0.801209 0.467595\nvt 0.801209 0.474323\nvt 0.785349 0.474323\nvt 0.785349 0.474323\nvt 0.785349 0.467595\nvt 0.801209 0.467595\nvt 0.785349 0.467595\nvt 0.785349 0.474323\nvt 0.767842 0.474323\nvt 0.767842 0.474323\nvt 0.767842 0.467595\nvt 0.785349 0.467595\nvt 0.785349 0.460670\nvt 0.785349 0.467595\nvt 0.767842 0.467595\nvt 0.767842 0.467595\nvt 0.767842 0.460670\nvt 0.785349 0.460670\nvt 0.785349 0.467595\nvt 0.785349 0.460670\nvt 0.801209 0.460670\nvt 0.801209 0.460670\nvt 0.801209 0.467595\nvt 0.785349 0.467595\nvt 0.801209 0.467595\nvt 0.801209 0.460670\nvt 0.827125 0.460670\nvt 0.827125 0.460670\nvt 0.827125 0.467595\nvt 0.801209 0.467595\nvt 0.827125 0.453533\nvt 0.827125 0.460670\nvt 0.801209 0.460670\nvt 0.801209 0.460670\nvt 0.801209 0.453533\nvt 0.827125 0.453533\nvt 0.801209 0.453533\nvt 0.801209 0.460670\nvt 0.785349 0.460670\nvt 0.785349 0.460670\nvt 0.785349 0.453533\nvt 0.801209 0.453533\nvt 0.785349 0.453533\nvt 0.785349 0.460670\nvt 0.767842 0.460670\nvt 0.767842 0.460670\nvt 0.767842 0.453533\nvt 0.785349 0.453533\nvt 0.785349 0.446311\nvt 0.785349 0.453533\nvt 0.767842 0.453533\nvt 0.767842 0.453533\nvt 0.767842 0.446311\nvt 0.785349 0.446311\nvt 0.767842 0.446311\nvt 0.767842 0.453533\nvt 0.749090 0.453533\nvt 0.749090 0.453533\nvt 0.749090 0.446311\nvt 0.767842 0.446311\nvt 0.785349 0.453533\nvt 0.785349 0.446311\nvt 0.801209 0.446311\nvt 0.801209 0.446311\nvt 0.801209 0.453533\nvt 0.785349 0.453533\nvt 0.801209 0.453533\nvt 0.801209 0.446311\nvt 0.827125 0.446311\nvt 0.827125 0.446311\nvt 0.827125 0.453533\nvt 0.801209 0.453533\nvt 0.827125 0.439128\nvt 0.827125 0.446311\nvt 0.801209 0.446311\nvt 0.801209 0.446311\nvt 0.801209 0.439128\nvt 0.827125 0.439128\nvt 0.801209 0.439128\nvt 0.801209 0.446311\nvt 0.785349 0.446311\nvt 0.785349 0.446311\nvt 0.785349 0.439128\nvt 0.801209 0.439128\nvt 0.785349 0.439128\nvt 0.785349 0.446311\nvt 0.767842 0.446311\nvt 0.767842 0.446311\nvt 0.767842 0.439128\nvt 0.785349 0.439128\nvt 0.767842 0.439128\nvt 0.767842 0.446311\nvt 0.749090 0.446311\nvt 0.749090 0.446311\nvt 0.749090 0.439128\nvt 0.767842 0.439128\nvt 0.854411 0.460670\nvt 0.827125 0.460670\nvt 0.827125 0.453533\nvt 0.827125 0.467595\nvt 0.827125 0.460670\nvt 0.854411 0.460670\nvt 0.854411 0.460670\nvt 0.854411 0.467595\nvt 0.827125 0.467595\nvt 0.827125 0.467595\nvt 0.854411 0.467595\nvt 0.854411 0.474323\nvt 0.854411 0.474323\nvt 0.827125 0.474323\nvt 0.827125 0.467595\nvt 0.827125 0.481004\nvt 0.827125 0.474323\nvt 0.854411 0.474323\nvt 0.827125 0.446311\nvt 0.827125 0.439128\nvt 0.854411 0.439128\nvt 0.854411 0.439128\nvt 0.854411 0.446311\nvt 0.827125 0.446311\nvt 0.827125 0.453533\nvt 0.827125 0.446311\nvt 0.854411 0.446311\nvt 0.827125 0.453533\nvt 0.854411 0.453533\nvt 0.854411 0.460670\nvt 0.854411 0.446311\nvt 0.854411 0.453533\nvt 0.827125 0.453533\nvt 0.455480 0.493691\nvt 0.454955 0.486670\nvt 0.475213 0.486490\nvt 0.475213 0.486490\nvt 0.473949 0.493406\nvt 0.455480 0.493691\nvt 0.547792 0.384668\nvt 0.548817 0.377940\nvt 0.561537 0.377992\nvt 0.561537 0.377992\nvt 0.561090 0.384349\nvt 0.547792 0.384668\nvt 0.556143 0.467313\nvt 0.557488 0.460077\nvt 0.569325 0.460325\nvt 0.570011 0.452983\nvt 0.569325 0.460325\nvt 0.557488 0.460077\nvt 0.604005 0.384358\nvt 0.603284 0.378281\nvt 0.617941 0.378242\nvt 0.617941 0.378242\nvt 0.619292 0.384367\nvt 0.604005 0.384358\nvt 0.670979 0.384289\nvt 0.670828 0.378354\nvt 0.689374 0.378355\nvt 0.689374 0.378355\nvt 0.690184 0.384531\nvt 0.670979 0.384289\nvt 0.672080 0.467147\nvt 0.672221 0.460362\nvt 0.690782 0.460456\nvt 0.690795 0.453446\nvt 0.690782 0.460456\nvt 0.672221 0.460362\nvt 0.749090 0.383661\nvt 0.749139 0.378955\nvt 0.767305 0.378947\nvt 0.767305 0.378947\nvt 0.767842 0.383661\nvt 0.749090 0.383661\nvt 0.801209 0.383661\nvt 0.801227 0.378960\nvt 0.826475 0.377851\nvt 0.826475 0.377851\nvt 0.827331 0.382556\nvt 0.801209 0.383661\nvt 0.827125 0.383661\nvt 0.827170 0.378954\nvt 0.854263 0.378949\nvt 0.854263 0.378949\nvt 0.854411 0.383661\nvt 0.827125 0.383661\nvt 0.865794 0.383661\nvt 0.854411 0.383661\nvt 0.854440 0.378953\nvt 0.854440 0.378953\nvt 0.865665 0.378953\nvt 0.865794 0.383661\nvt 0.433898 0.439128\nvt 0.433898 0.431984\nvt 0.436960 0.432388\nvt 0.436960 0.432388\nvt 0.437051 0.439699\nvt 0.433898 0.439128\nvt 0.437051 0.439699\nvt 0.436960 0.432388\nvt 0.440433 0.432624\nvt 0.440433 0.432624\nvt 0.440643 0.440053\nvt 0.437051 0.439699\nvt 0.452235 0.439115\nvt 0.440643 0.440053\nvt 0.440433 0.432624\nvt 0.440433 0.432624\nvt 0.451705 0.431953\nvt 0.452235 0.439115\nvt 0.451368 0.424818\nvt 0.451705 0.431953\nvt 0.440433 0.432624\nvt 0.440433 0.432624\nvt 0.440351 0.425130\nvt 0.451368 0.424818\nvt 0.440351 0.425130\nvt 0.440433 0.432624\nvt 0.436960 0.432388\nvt 0.436960 0.432388\nvt 0.436930 0.425011\nvt 0.440351 0.425130\nvt 0.433898 0.424809\nvt 0.436930 0.425011\nvt 0.436960 0.432388\nvt 0.436960 0.432388\nvt 0.433898 0.431984\nvt 0.433898 0.424809\nvt 0.436959 0.417567\nvt 0.436930 0.425011\nvt 0.433898 0.424809\nvt 0.433898 0.424809\nvt 0.433898 0.417547\nvt 0.436959 0.417567\nvt 0.436930 0.425011\nvt 0.436959 0.417567\nvt 0.440384 0.417608\nvt 0.440384 0.417608\nvt 0.440351 0.425130\nvt 0.436930 0.425011\nvt 0.440351 0.425130\nvt 0.440384 0.417608\nvt 0.451213 0.417716\nvt 0.451213 0.417716\nvt 0.451368 0.424818\nvt 0.440351 0.425130\nvt 0.451282 0.410672\nvt 0.451213 0.417716\nvt 0.440384 0.417608\nvt 0.440384 0.417608\nvt 0.440568 0.410108\nvt 0.451282 0.410672\nvt 0.440568 0.410108\nvt 0.440384 0.417608\nvt 0.436959 0.417567\nvt 0.436959 0.417567\nvt 0.437068 0.410119\nvt 0.440568 0.410108\nvt 0.433898 0.410199\nvt 0.437068 0.410119\nvt 0.436959 0.417567\nvt 0.436959 0.417567\nvt 0.433898 0.417547\nvt 0.433898 0.410199\nvt 0.437213 0.402772\nvt 0.437068 0.410119\nvt 0.433898 0.410199\nvt 0.433898 0.410199\nvt 0.433898 0.402859\nvt 0.437213 0.402772\nvt 0.437068 0.410119\nvt 0.437213 0.402772\nvt 0.440861 0.402768\nvt 0.440861 0.402768\nvt 0.440568 0.410108\nvt 0.437068 0.410119\nvt 0.440568 0.410108\nvt 0.440861 0.402768\nvt 0.451553 0.403751\nvt 0.451553 0.403751\nvt 0.451282 0.410672\nvt 0.440568 0.410108\nvt 0.452109 0.397013\nvt 0.451553 0.403751\nvt 0.440861 0.402768\nvt 0.440861 0.402768\nvt 0.441290 0.395768\nvt 0.452109 0.397013\nvt 0.441290 0.395768\nvt 0.440861 0.402768\nvt 0.437213 0.402772\nvt 0.437213 0.402772\nvt 0.437446 0.395769\nvt 0.441290 0.395768\nvt 0.433898 0.395793\nvt 0.437446 0.395769\nvt 0.437213 0.402772\nvt 0.437213 0.402772\nvt 0.433898 0.402859\nvt 0.433898 0.395793\nvt 0.437767 0.389368\nvt 0.437446 0.395769\nvt 0.433898 0.395793\nvt 0.433898 0.395793\nvt 0.433898 0.389299\nvt 0.437767 0.389368\nvt 0.437446 0.395769\nvt 0.437767 0.389368\nvt 0.441907 0.389297\nvt 0.441907 0.389297\nvt 0.441290 0.395768\nvt 0.437446 0.395769\nvt 0.441290 0.395768\nvt 0.441907 0.389297\nvt 0.452990 0.390527\nvt 0.452990 0.390527\nvt 0.452109 0.397013\nvt 0.441290 0.395768\nvt 0.454639 0.384282\nvt 0.452990 0.390527\nvt 0.441907 0.389297\nvt 0.441907 0.389297\nvt 0.442593 0.383620\nvt 0.454639 0.384282\nvt 0.442593 0.383620\nvt 0.441907 0.389297\nvt 0.437767 0.389368\nvt 0.437767 0.389368\nvt 0.438004 0.383799\nvt 0.442593 0.383620\nvt 0.433898 0.383661\nvt 0.438004 0.383799\nvt 0.437767 0.389368\nvt 0.437767 0.389368\nvt 0.433898 0.389299\nvt 0.433898 0.383661\nvt 0.433408 0.492971\nvt 0.433898 0.487591\nvt 0.438131 0.486940\nvt 0.438131 0.486940\nvt 0.436731 0.492971\nvt 0.433408 0.492971\nvt 0.438131 0.486940\nvt 0.433898 0.487591\nvt 0.433898 0.481004\nvt 0.433898 0.481004\nvt 0.438042 0.480674\nvt 0.438131 0.486940\nvt 0.438131 0.486940\nvt 0.438042 0.480674\nvt 0.442499 0.480452\nvt 0.442499 0.480452\nvt 0.442786 0.486855\nvt 0.438131 0.486940\nvt 0.437592 0.493044\nvt 0.438131 0.486940\nvt 0.442786 0.486855\nvt 0.442786 0.486855\nvt 0.442524 0.493060\nvt 0.437592 0.493044\nvt 0.442786 0.486855\nvt 0.442499 0.480452\nvt 0.454689 0.480240\nvt 0.454689 0.480240\nvt 0.455163 0.486672\nvt 0.442786 0.486855\nvt 0.437932 0.474260\nvt 0.438042 0.480674\nvt 0.433898 0.481004\nvt 0.433898 0.481004\nvt 0.433898 0.474323\nvt 0.437932 0.474260\nvt 0.438042 0.480674\nvt 0.437932 0.474260\nvt 0.442303 0.474123\nvt 0.442303 0.474123\nvt 0.442499 0.480452\nvt 0.438042 0.480674\nvt 0.442499 0.480452\nvt 0.442303 0.474123\nvt 0.454731 0.473846\nvt 0.454731 0.473846\nvt 0.454689 0.480240\nvt 0.442499 0.480452\nvt 0.454610 0.467227\nvt 0.454731 0.473846\nvt 0.442303 0.474123\nvt 0.442303 0.474123\nvt 0.442056 0.467785\nvt 0.454610 0.467227\nvt 0.442056 0.467785\nvt 0.442303 0.474123\nvt 0.437932 0.474260\nvt 0.437932 0.474260\nvt 0.437780 0.467691\nvt 0.442056 0.467785\nvt 0.433898 0.467595\nvt 0.437780 0.467691\nvt 0.437932 0.474260\nvt 0.437932 0.474260\nvt 0.433898 0.474323\nvt 0.433898 0.467595\nvt 0.437606 0.460978\nvt 0.437780 0.467691\nvt 0.433898 0.467595\nvt 0.433898 0.467595\nvt 0.433898 0.460670\nvt 0.437606 0.460978\nvt 0.437780 0.467691\nvt 0.437606 0.460978\nvt 0.441742 0.461281\nvt 0.441742 0.461281\nvt 0.442056 0.467785\nvt 0.437780 0.467691\nvt 0.442056 0.467785\nvt 0.441742 0.461281\nvt 0.454217 0.460369\nvt 0.454217 0.460369\nvt 0.454610 0.467227\nvt 0.442056 0.467785\nvt 0.453594 0.453378\nvt 0.454217 0.460369\nvt 0.441742 0.461281\nvt 0.441742 0.461281\nvt 0.441354 0.454477\nvt 0.453594 0.453378\nvt 0.441354 0.454477\nvt 0.441742 0.461281\nvt 0.437606 0.460978\nvt 0.437606 0.460978\nvt 0.437400 0.454058\nvt 0.441354 0.454477\nvt 0.433898 0.453533\nvt 0.437400 0.454058\nvt 0.437606 0.460978\nvt 0.437606 0.460978\nvt 0.433898 0.460670\nvt 0.433898 0.453533\nvt 0.437204 0.446939\nvt 0.437400 0.454058\nvt 0.433898 0.453533\nvt 0.433898 0.453533\nvt 0.433898 0.446311\nvt 0.437204 0.446939\nvt 0.437400 0.454058\nvt 0.437204 0.446939\nvt 0.440964 0.447368\nvt 0.440964 0.447368\nvt 0.441354 0.454477\nvt 0.437400 0.454058\nvt 0.441354 0.454477\nvt 0.440964 0.447368\nvt 0.452894 0.446275\nvt 0.452894 0.446275\nvt 0.453594 0.453378\nvt 0.441354 0.454477\nvt 0.452235 0.439115\nvt 0.452894 0.446275\nvt 0.440964 0.447368\nvt 0.440964 0.447368\nvt 0.440643 0.440053\nvt 0.452235 0.439115\nvt 0.440643 0.440053\nvt 0.440964 0.447368\nvt 0.437204 0.446939\nvt 0.437204 0.446939\nvt 0.437051 0.439699\nvt 0.440643 0.440053\nvt 0.433898 0.439128\nvt 0.437051 0.439699\nvt 0.437204 0.446939\nvt 0.437204 0.446939\nvt 0.433898 0.446311\nvt 0.433898 0.439128\nvt 0.445868 0.494072\nvt 0.443026 0.487827\nvt 0.455163 0.486672\nvt 0.455163 0.486672\nvt 0.457853 0.493243\nvt 0.445868 0.494072\nvt 0.423985 0.050494\nvt 0.418340 0.050755\nvt 0.418051 0.045705\nvt 0.418051 0.045705\nvt 0.423619 0.045406\nvt 0.423985 0.050494\nvt 0.418051 0.045705\nvt 0.418340 0.050755\nvt 0.414315 0.051060\nvt 0.414315 0.051060\nvt 0.414086 0.046032\nvt 0.418051 0.045705\nvt 0.414086 0.046032\nvt 0.414315 0.051060\nvt 0.409036 0.051438\nvt 0.409036 0.051438\nvt 0.408860 0.046415\nvt 0.414086 0.046032\nvt 0.408729 0.056370\nvt 0.409036 0.051438\nvt 0.414315 0.051060\nvt 0.414315 0.051060\nvt 0.414022 0.056023\nvt 0.408729 0.056370\nvt 0.414022 0.056023\nvt 0.414315 0.051060\nvt 0.418340 0.050755\nvt 0.418340 0.050755\nvt 0.418105 0.055752\nvt 0.414022 0.056023\nvt 0.418105 0.055752\nvt 0.418340 0.050755\nvt 0.423985 0.050494\nvt 0.423985 0.050494\nvt 0.423911 0.055525\nvt 0.418105 0.055752\nvt 0.417365 0.060702\nvt 0.418105 0.055752\nvt 0.423911 0.055525\nvt 0.423911 0.055525\nvt 0.423400 0.060515\nvt 0.417365 0.060702\nvt 0.418105 0.055752\nvt 0.417365 0.060702\nvt 0.413228 0.060931\nvt 0.413228 0.060931\nvt 0.414022 0.056023\nvt 0.418105 0.055752\nvt 0.414022 0.056023\nvt 0.413228 0.060931\nvt 0.407954 0.061231\nvt 0.407954 0.061231\nvt 0.408729 0.056370\nvt 0.414022 0.056023\nvt 0.406812 0.066137\nvt 0.407954 0.061231\nvt 0.413228 0.060931\nvt 0.413228 0.060931\nvt 0.412036 0.065894\nvt 0.406812 0.066137\nvt 0.412036 0.065894\nvt 0.413228 0.060931\nvt 0.417365 0.060702\nvt 0.417365 0.060702\nvt 0.416220 0.065722\nvt 0.412036 0.065894\nvt 0.416220 0.065722\nvt 0.417365 0.060702\nvt 0.423400 0.060515\nvt 0.423400 0.060515\nvt 0.422540 0.065604\nvt 0.416220 0.065722\nvt 0.414801 0.070941\nvt 0.416220 0.065722\nvt 0.422540 0.065604\nvt 0.422540 0.065604\nvt 0.421423 0.070911\nvt 0.414801 0.070941\nvt 0.416220 0.065722\nvt 0.414801 0.070941\nvt 0.410592 0.071042\nvt 0.410592 0.071042\nvt 0.412036 0.065894\nvt 0.416220 0.065722\nvt 0.412036 0.065894\nvt 0.410592 0.071042\nvt 0.405455 0.071220\nvt 0.405455 0.071220\nvt 0.406812 0.066137\nvt 0.412036 0.065894\nvt 0.404076 0.076543\nvt 0.405455 0.071220\nvt 0.410592 0.071042\nvt 0.410592 0.071042\nvt 0.409084 0.076433\nvt 0.404076 0.076543\nvt 0.409084 0.076433\nvt 0.410592 0.071042\nvt 0.414801 0.070941\nvt 0.414801 0.070941\nvt 0.413280 0.076405\nvt 0.409084 0.076433\nvt 0.413280 0.076405\nvt 0.414801 0.070941\nvt 0.421423 0.070911\nvt 0.421423 0.070911\nvt 0.420164 0.076453\nvt 0.413280 0.076405\nvt 0.411810 0.082100\nvt 0.413280 0.076405\nvt 0.420164 0.076453\nvt 0.420164 0.076453\nvt 0.418869 0.082187\nvt 0.411810 0.082100\nvt 0.413280 0.076405\nvt 0.411810 0.082100\nvt 0.407680 0.082071\nvt 0.407680 0.082071\nvt 0.409084 0.076433\nvt 0.413280 0.076405\nvt 0.409084 0.076433\nvt 0.407680 0.082071\nvt 0.402844 0.082107\nvt 0.402844 0.082107\nvt 0.404076 0.076543\nvt 0.409084 0.076433\nvt 0.401743 0.087815\nvt 0.402844 0.082107\nvt 0.407680 0.082071\nvt 0.407680 0.082071\nvt 0.406397 0.087823\nvt 0.401743 0.087815\nvt 0.406397 0.087823\nvt 0.407680 0.082071\nvt 0.411810 0.082100\nvt 0.411810 0.082100\nvt 0.410434 0.087857\nvt 0.406397 0.087823\nvt 0.410434 0.087857\nvt 0.411810 0.082100\nvt 0.418869 0.082187\nvt 0.418869 0.082187\nvt 0.417613 0.087918\nvt 0.410434 0.087857\nvt 0.420164 0.076453\nvt 0.421423 0.070911\nvt 0.426995 0.070735\nvt 0.427592 0.065366\nvt 0.426995 0.070735\nvt 0.421423 0.070911\nvt 0.426995 0.070735\nvt 0.427592 0.065366\nvt 0.432945 0.064749\nvt 0.432945 0.059605\nvt 0.432945 0.064749\nvt 0.427592 0.065366\nvt 0.427592 0.065366\nvt 0.428032 0.060250\nvt 0.432945 0.059605\nvt 0.432945 0.054805\nvt 0.432945 0.059605\nvt 0.428032 0.060250\nvt 0.428032 0.060250\nvt 0.428277 0.055307\nvt 0.432945 0.054805\nvt 0.432945 0.050276\nvt 0.432945 0.054805\nvt 0.428277 0.055307\nvt 0.428277 0.055307\nvt 0.428260 0.050425\nvt 0.432945 0.050276\nvt 0.432945 0.050276\nvt 0.428260 0.050425\nvt 0.428003 0.045513\nvt 0.428003 0.045513\nvt 0.432945 0.045943\nvt 0.432945 0.050276\nvt 0.423619 0.045406\nvt 0.428003 0.045513\nvt 0.428260 0.050425\nvt 0.428260 0.050425\nvt 0.423985 0.050494\nvt 0.423619 0.045406\nvt 0.423911 0.055525\nvt 0.423985 0.050494\nvt 0.428260 0.050425\nvt 0.428260 0.050425\nvt 0.428277 0.055307\nvt 0.423911 0.055525\nvt 0.428277 0.055307\nvt 0.428032 0.060250\nvt 0.423400 0.060515\nvt 0.423400 0.060515\nvt 0.423911 0.055525\nvt 0.428277 0.055307\nvt 0.422540 0.065604\nvt 0.423400 0.060515\nvt 0.428032 0.060250\nvt 0.428032 0.060250\nvt 0.427592 0.065366\nvt 0.422540 0.065604\nvt 0.421423 0.070911\nvt 0.422540 0.065604\nvt 0.427592 0.065366\nvt 0.427540 0.040523\nvt 0.428003 0.045513\nvt 0.423619 0.045406\nvt 0.423619 0.045406\nvt 0.422833 0.040265\nvt 0.427540 0.040523\nvt 0.422833 0.040265\nvt 0.423619 0.045406\nvt 0.418051 0.045705\nvt 0.418051 0.045705\nvt 0.417246 0.040608\nvt 0.422833 0.040265\nvt 0.421760 0.035145\nvt 0.422833 0.040265\nvt 0.417246 0.040608\nvt 0.417246 0.040608\nvt 0.416072 0.035524\nvt 0.421760 0.035145\nvt 0.420556 0.030095\nvt 0.421760 0.035145\nvt 0.416072 0.035524\nvt 0.416072 0.035524\nvt 0.414676 0.030487\nvt 0.420556 0.030095\nvt 0.419389 0.025082\nvt 0.420556 0.030095\nvt 0.414676 0.030487\nvt 0.414676 0.030487\nvt 0.413255 0.025454\nvt 0.419389 0.025082\nvt 0.418406 0.020026\nvt 0.419389 0.025082\nvt 0.413255 0.025454\nvt 0.413255 0.025454\nvt 0.411969 0.020341\nvt 0.418406 0.020026\nvt 0.417664 0.014793\nvt 0.418406 0.020026\nvt 0.411969 0.020341\nvt 0.411969 0.020341\nvt 0.410917 0.015022\nvt 0.417664 0.014793\nvt 0.417183 0.009314\nvt 0.417664 0.014793\nvt 0.410917 0.015022\nvt 0.410917 0.015022\nvt 0.410129 0.009415\nvt 0.417183 0.009314\nvt 0.416676 0.003672\nvt 0.417183 0.009314\nvt 0.410129 0.009415\nvt 0.410129 0.009415\nvt 0.409590 0.003621\nvt 0.416676 0.003672\nvt 0.410129 0.009415\nvt 0.410917 0.015022\nvt 0.407043 0.015075\nvt 0.407043 0.015075\nvt 0.406182 0.009428\nvt 0.410129 0.009415\nvt 0.409491 0.003579\nvt 0.410129 0.009415\nvt 0.406182 0.009428\nvt 0.406182 0.009428\nvt 0.409491 0.003579\nvt 0.406182 0.009428\nvt 0.407043 0.015075\nvt 0.402448 0.015097\nvt 0.402448 0.015097\nvt 0.401607 0.009437\nvt 0.406182 0.009428\nvt 0.405518 0.003557\nvt 0.406182 0.009428\nvt 0.401607 0.009437\nvt 0.401607 0.009437\nvt 0.401004 0.003580\nvt 0.405518 0.003557\nvt 0.410917 0.015022\nvt 0.411969 0.020341\nvt 0.408146 0.020443\nvt 0.408146 0.020443\nvt 0.407043 0.015075\nvt 0.410917 0.015022\nvt 0.407043 0.015075\nvt 0.408146 0.020443\nvt 0.403484 0.020492\nvt 0.403484 0.020492\nvt 0.402448 0.015097\nvt 0.407043 0.015075\nvt 0.404694 0.025729\nvt 0.403484 0.020492\nvt 0.408146 0.020443\nvt 0.408146 0.020443\nvt 0.409455 0.025624\nvt 0.404694 0.025729\nvt 0.409455 0.025624\nvt 0.408146 0.020443\nvt 0.411969 0.020341\nvt 0.411969 0.020341\nvt 0.413255 0.025454\nvt 0.409455 0.025624\nvt 0.410867 0.030732\nvt 0.409455 0.025624\nvt 0.413255 0.025454\nvt 0.413255 0.025454\nvt 0.414676 0.030487\nvt 0.410867 0.030732\nvt 0.409455 0.025624\nvt 0.410867 0.030732\nvt 0.405981 0.030925\nvt 0.405981 0.030925\nvt 0.404694 0.025729\nvt 0.409455 0.025624\nvt 0.407210 0.036114\nvt 0.405981 0.030925\nvt 0.410867 0.030732\nvt 0.410867 0.030732\nvt 0.412227 0.035829\nvt 0.407210 0.036114\nvt 0.412227 0.035829\nvt 0.410867 0.030732\nvt 0.414676 0.030487\nvt 0.414676 0.030487\nvt 0.416072 0.035524\nvt 0.412227 0.035829\nvt 0.413344 0.040940\nvt 0.412227 0.035829\nvt 0.416072 0.035524\nvt 0.416072 0.035524\nvt 0.417246 0.040608\nvt 0.413344 0.040940\nvt 0.412227 0.035829\nvt 0.413344 0.040940\nvt 0.408207 0.041292\nvt 0.408207 0.041292\nvt 0.407210 0.036114\nvt 0.412227 0.035829\nvt 0.408860 0.046415\nvt 0.408207 0.041292\nvt 0.413344 0.040940\nvt 0.413344 0.040940\nvt 0.414086 0.046032\nvt 0.408860 0.046415\nvt 0.414086 0.046032\nvt 0.413344 0.040940\nvt 0.417246 0.040608\nvt 0.417246 0.040608\nvt 0.418051 0.045705\nvt 0.414086 0.046032\nvt 0.404694 0.025729\nvt 0.405981 0.030925\nvt 0.399647 0.030972\nvt 0.400638 0.036219\nvt 0.399647 0.030972\nvt 0.405981 0.030925\nvt 0.405981 0.030925\nvt 0.407210 0.036114\nvt 0.400638 0.036219\nvt 0.399647 0.030972\nvt 0.400638 0.036219\nvt 0.392283 0.036090\nvt 0.392283 0.036090\nvt 0.391585 0.030777\nvt 0.399647 0.030972\nvt 0.398617 0.025738\nvt 0.399647 0.030972\nvt 0.391585 0.030777\nvt 0.399647 0.030972\nvt 0.398617 0.025738\nvt 0.404694 0.025729\nvt 0.403484 0.020492\nvt 0.404694 0.025729\nvt 0.398617 0.025738\nvt 0.398617 0.025738\nvt 0.397652 0.020495\nvt 0.403484 0.020492\nvt 0.402448 0.015097\nvt 0.403484 0.020492\nvt 0.397652 0.020495\nvt 0.397652 0.020495\nvt 0.396831 0.015124\nvt 0.402448 0.015097\nvt 0.401607 0.009437\nvt 0.402448 0.015097\nvt 0.396831 0.015124\nvt 0.396831 0.015124\nvt 0.396144 0.009474\nvt 0.401607 0.009437\nvt 0.396144 0.009474\nvt 0.396831 0.015124\nvt 0.389740 0.014973\nvt 0.389740 0.014973\nvt 0.389340 0.009431\nvt 0.396144 0.009474\nvt 0.389340 0.009431\nvt 0.389740 0.014973\nvt 0.380621 0.014606\nvt 0.380621 0.014606\nvt 0.380625 0.009291\nvt 0.389340 0.009431\nvt 0.380625 0.009291\nvt 0.380621 0.014606\nvt 0.368825 0.014239\nvt 0.368825 0.014239\nvt 0.369325 0.009142\nvt 0.380625 0.009291\nvt 0.369325 0.009142\nvt 0.368825 0.014239\nvt 0.353670 0.014235\nvt 0.353670 0.014235\nvt 0.354608 0.009116\nvt 0.369325 0.009142\nvt 0.354608 0.009116\nvt 0.353670 0.014235\nvt 0.336929 0.014388\nvt 0.336929 0.014388\nvt 0.337999 0.009132\nvt 0.354608 0.009116\nvt 0.337999 0.009132\nvt 0.336929 0.014388\nvt 0.320426 0.014697\nvt 0.320426 0.014697\nvt 0.321185 0.009195\nvt 0.337999 0.009132\nvt 0.321185 0.009195\nvt 0.320426 0.014697\nvt 0.305833 0.015355\nvt 0.305833 0.015355\nvt 0.305833 0.009370\nvt 0.321185 0.009195\nvt 0.353298 0.019366\nvt 0.353670 0.014235\nvt 0.368825 0.014239\nvt 0.368825 0.014239\nvt 0.368662 0.019352\nvt 0.353298 0.019366\nvt 0.368662 0.019352\nvt 0.368825 0.014239\nvt 0.380621 0.014606\nvt 0.353670 0.014235\nvt 0.353298 0.019366\nvt 0.336486 0.019624\nvt 0.336486 0.019624\nvt 0.336929 0.014388\nvt 0.353670 0.014235\nvt 0.336929 0.014388\nvt 0.336486 0.019624\nvt 0.320082 0.020175\nvt 0.320082 0.020175\nvt 0.320426 0.014697\nvt 0.336929 0.014388\nvt 0.320426 0.014697\nvt 0.320082 0.020175\nvt 0.305833 0.021309\nvt 0.305833 0.021309\nvt 0.305833 0.015355\nvt 0.320426 0.014697\nvt 0.305833 0.026961\nvt 0.305833 0.021309\nvt 0.320082 0.020175\nvt 0.320082 0.020175\nvt 0.319895 0.025550\nvt 0.305833 0.026961\nvt 0.319895 0.025550\nvt 0.320082 0.020175\nvt 0.336486 0.019624\nvt 0.336486 0.019624\nvt 0.336262 0.024847\nvt 0.319895 0.025550\nvt 0.336262 0.024847\nvt 0.336486 0.019624\nvt 0.353298 0.019366\nvt 0.353298 0.019366\nvt 0.353141 0.024570\nvt 0.336262 0.024847\nvt 0.353141 0.024570\nvt 0.353298 0.019366\nvt 0.368662 0.019352\nvt 0.368662 0.019352\nvt 0.368674 0.024572\nvt 0.353141 0.024570\nvt 0.353086 0.029852\nvt 0.353141 0.024570\nvt 0.368674 0.024572\nvt 0.368674 0.024572\nvt 0.368768 0.029914\nvt 0.353086 0.029852\nvt 0.353141 0.024570\nvt 0.353086 0.029852\nvt 0.336146 0.030060\nvt 0.336146 0.030060\nvt 0.336262 0.024847\nvt 0.353141 0.024570\nvt 0.336262 0.024847\nvt 0.336146 0.030060\nvt 0.319798 0.030793\nvt 0.319798 0.030793\nvt 0.319895 0.025550\nvt 0.336262 0.024847\nvt 0.319895 0.025550\nvt 0.319798 0.030793\nvt 0.305833 0.032192\nvt 0.305833 0.032192\nvt 0.305833 0.026961\nvt 0.319895 0.025550\nvt 0.305833 0.037031\nvt 0.305833 0.032192\nvt 0.319798 0.030793\nvt 0.319798 0.030793\nvt 0.319809 0.035998\nvt 0.305833 0.037031\nvt 0.319809 0.035998\nvt 0.319798 0.030793\nvt 0.336146 0.030060\nvt 0.336146 0.030060\nvt 0.336149 0.035303\nvt 0.319809 0.035998\nvt 0.336149 0.035303\nvt 0.336146 0.030060\nvt 0.353086 0.029852\nvt 0.353086 0.029852\nvt 0.353133 0.035201\nvt 0.336149 0.035303\nvt 0.353133 0.035201\nvt 0.353086 0.029852\nvt 0.368768 0.029914\nvt 0.368768 0.029914\nvt 0.368937 0.035330\nvt 0.353133 0.035201\nvt 0.353229 0.040575\nvt 0.353133 0.035201\nvt 0.368937 0.035330\nvt 0.368937 0.035330\nvt 0.369117 0.040747\nvt 0.353229 0.040575\nvt 0.353133 0.035201\nvt 0.353229 0.040575\nvt 0.336222 0.040590\nvt 0.336222 0.040590\nvt 0.336149 0.035303\nvt 0.353133 0.035201\nvt 0.336149 0.035303\nvt 0.336222 0.040590\nvt 0.319883 0.041264\nvt 0.319883 0.041264\nvt 0.319809 0.035998\nvt 0.336149 0.035303\nvt 0.319809 0.035998\nvt 0.319883 0.041264\nvt 0.305833 0.041603\nvt 0.305833 0.041603\nvt 0.305833 0.037031\nvt 0.319809 0.035998\nvt 0.305833 0.045943\nvt 0.305833 0.041603\nvt 0.319883 0.041264\nvt 0.319883 0.041264\nvt 0.319988 0.046634\nvt 0.305833 0.045943\nvt 0.319988 0.046634\nvt 0.319883 0.041264\nvt 0.336222 0.040590\nvt 0.305833 0.050276\nvt 0.305833 0.045943\nvt 0.319988 0.046634\nvt 0.319988 0.046634\nvt 0.320042 0.052179\nvt 0.305833 0.050276\nvt 0.320042 0.052179\nvt 0.319988 0.046634\nvt 0.336340 0.045882\nvt 0.336222 0.040590\nvt 0.336340 0.045882\nvt 0.319988 0.046634\nvt 0.336340 0.045882\nvt 0.336222 0.040590\nvt 0.353229 0.040575\nvt 0.336340 0.045882\nvt 0.336417 0.051165\nvt 0.320042 0.052179\nvt 0.336417 0.051165\nvt 0.336340 0.045882\nvt 0.353361 0.045914\nvt 0.353229 0.040575\nvt 0.353361 0.045914\nvt 0.336340 0.045882\nvt 0.353361 0.045914\nvt 0.353229 0.040575\nvt 0.369117 0.040747\nvt 0.353361 0.045914\nvt 0.353444 0.051195\nvt 0.336417 0.051165\nvt 0.353444 0.051195\nvt 0.353361 0.045914\nvt 0.369291 0.046091\nvt 0.369117 0.040747\nvt 0.369291 0.046091\nvt 0.353361 0.045914\nvt 0.369291 0.046091\nvt 0.369377 0.051326\nvt 0.353444 0.051195\nvt 0.305833 0.054805\nvt 0.305833 0.050276\nvt 0.320042 0.052179\nvt 0.320042 0.052179\nvt 0.320046 0.057873\nvt 0.305833 0.054805\nvt 0.320046 0.057873\nvt 0.320042 0.052179\nvt 0.336417 0.051165\nvt 0.336417 0.051165\nvt 0.336445 0.056399\nvt 0.320046 0.057873\nvt 0.336445 0.056399\nvt 0.336417 0.051165\nvt 0.353444 0.051195\nvt 0.353444 0.051195\nvt 0.353469 0.056416\nvt 0.336445 0.056399\nvt 0.353469 0.056416\nvt 0.353444 0.051195\nvt 0.369377 0.051326\nvt 0.369377 0.051326\nvt 0.369357 0.056474\nvt 0.353469 0.056416\nvt 0.353435 0.061622\nvt 0.353469 0.056416\nvt 0.369357 0.056474\nvt 0.369357 0.056474\nvt 0.369227 0.061607\nvt 0.353435 0.061622\nvt 0.353469 0.056416\nvt 0.353435 0.061622\nvt 0.336434 0.061579\nvt 0.336434 0.061579\nvt 0.336445 0.056399\nvt 0.353469 0.056416\nvt 0.336445 0.056399\nvt 0.336434 0.061579\nvt 0.320034 0.063637\nvt 0.320034 0.063637\nvt 0.320046 0.057873\nvt 0.336445 0.056399\nvt 0.320046 0.057873\nvt 0.320034 0.063637\nvt 0.305833 0.059605\nvt 0.305833 0.059605\nvt 0.305833 0.054805\nvt 0.320046 0.057873\nvt 0.305833 0.064749\nvt 0.305833 0.059605\nvt 0.320034 0.063637\nvt 0.320034 0.063637\nvt 0.320063 0.069332\nvt 0.305833 0.064749\nvt 0.320063 0.069332\nvt 0.320034 0.063637\nvt 0.336434 0.061579\nvt 0.336434 0.061579\nvt 0.336434 0.066730\nvt 0.320063 0.069332\nvt 0.336434 0.066730\nvt 0.336434 0.061579\nvt 0.353435 0.061622\nvt 0.353435 0.061622\nvt 0.353381 0.066870\nvt 0.336434 0.066730\nvt 0.353381 0.066870\nvt 0.353435 0.061622\nvt 0.369227 0.061607\nvt 0.369227 0.061607\nvt 0.369031 0.066811\nvt 0.353381 0.066870\nvt 0.353399 0.072177\nvt 0.353381 0.066870\nvt 0.369031 0.066811\nvt 0.369031 0.066811\nvt 0.368866 0.072120\nvt 0.353399 0.072177\nvt 0.353381 0.066870\nvt 0.353399 0.072177\nvt 0.336541 0.071888\nvt 0.336541 0.071888\nvt 0.336434 0.066730\nvt 0.353381 0.066870\nvt 0.336434 0.066730\nvt 0.336541 0.071888\nvt 0.320203 0.074759\nvt 0.320203 0.074759\nvt 0.320063 0.069332\nvt 0.336434 0.066730\nvt 0.320063 0.069332\nvt 0.320203 0.074759\nvt 0.305833 0.070223\nvt 0.305833 0.070223\nvt 0.305833 0.064749\nvt 0.320063 0.069332\nvt 0.305833 0.076016\nvt 0.305833 0.070223\nvt 0.320203 0.074759\nvt 0.320203 0.074759\nvt 0.320433 0.079765\nvt 0.305833 0.076016\nvt 0.320433 0.079765\nvt 0.320203 0.074759\nvt 0.336541 0.071888\nvt 0.336541 0.071888\nvt 0.336780 0.077133\nvt 0.320433 0.079765\nvt 0.336780 0.077133\nvt 0.336541 0.071888\nvt 0.353399 0.072177\nvt 0.353399 0.072177\nvt 0.353517 0.077519\nvt 0.336780 0.077133\nvt 0.353517 0.077519\nvt 0.353399 0.072177\nvt 0.368866 0.072120\nvt 0.368866 0.072120\nvt 0.368783 0.077487\nvt 0.353517 0.077519\nvt 0.353848 0.082828\nvt 0.353517 0.077519\nvt 0.368783 0.077487\nvt 0.368783 0.077487\nvt 0.368906 0.082810\nvt 0.353848 0.082828\nvt 0.353517 0.077519\nvt 0.353848 0.082828\nvt 0.337211 0.082514\nvt 0.337211 0.082514\nvt 0.336780 0.077133\nvt 0.353517 0.077519\nvt 0.336780 0.077133\nvt 0.337211 0.082514\nvt 0.320744 0.084316\nvt 0.320744 0.084316\nvt 0.320433 0.079765\nvt 0.336780 0.077133\nvt 0.320433 0.079765\nvt 0.320744 0.084316\nvt 0.305833 0.081960\nvt 0.305833 0.081960\nvt 0.305833 0.076016\nvt 0.320433 0.079765\nvt 0.305833 0.087776\nvt 0.305833 0.081960\nvt 0.320744 0.084316\nvt 0.320744 0.084316\nvt 0.321315 0.088601\nvt 0.305833 0.087776\nvt 0.321315 0.088601\nvt 0.320744 0.084316\nvt 0.337211 0.082514\nvt 0.337211 0.082514\nvt 0.338129 0.087985\nvt 0.321315 0.088601\nvt 0.338129 0.087985\nvt 0.337211 0.082514\nvt 0.353848 0.082828\nvt 0.353848 0.082828\nvt 0.354674 0.088076\nvt 0.338129 0.087985\nvt 0.354674 0.088076\nvt 0.353848 0.082828\nvt 0.368906 0.082810\nvt 0.368906 0.082810\nvt 0.369345 0.088055\nvt 0.354674 0.088076\nvt 0.356085 0.093331\nvt 0.354674 0.088076\nvt 0.369345 0.088055\nvt 0.369345 0.088055\nvt 0.370097 0.093228\nvt 0.356085 0.093331\nvt 0.354674 0.088076\nvt 0.356085 0.093331\nvt 0.340337 0.093311\nvt 0.340337 0.093311\nvt 0.338129 0.087985\nvt 0.354674 0.088076\nvt 0.323279 0.093345\nvt 0.321315 0.088601\nvt 0.338129 0.087985\nvt 0.338129 0.087985\nvt 0.340361 0.093350\nvt 0.323279 0.093345\nvt 0.306806 0.092667\nvt 0.305833 0.087776\nvt 0.321315 0.088601\nvt 0.321315 0.088601\nvt 0.322799 0.092758\nvt 0.306806 0.092667\nvt 0.305833 0.081960\nvt 0.305833 0.087776\nvt 0.291618 0.087776\nvt 0.291618 0.087776\nvt 0.291618 0.081960\nvt 0.305833 0.081960\nvt 0.305833 0.076016\nvt 0.305833 0.081960\nvt 0.291618 0.081960\nvt 0.291618 0.081960\nvt 0.291618 0.076016\nvt 0.305833 0.076016\nvt 0.305833 0.070223\nvt 0.305833 0.076016\nvt 0.291618 0.076016\nvt 0.291618 0.076016\nvt 0.291618 0.070223\nvt 0.305833 0.070223\nvt 0.305833 0.064749\nvt 0.305833 0.070223\nvt 0.291618 0.070223\nvt 0.291618 0.070223\nvt 0.291618 0.064749\nvt 0.305833 0.064749\nvt 0.305833 0.059605\nvt 0.305833 0.064749\nvt 0.291618 0.064749\nvt 0.291618 0.064749\nvt 0.291618 0.059605\nvt 0.305833 0.059605\nvt 0.305833 0.054805\nvt 0.305833 0.059605\nvt 0.291618 0.059605\nvt 0.291618 0.059605\nvt 0.291618 0.054805\nvt 0.305833 0.054805\nvt 0.305833 0.050276\nvt 0.305833 0.054805\nvt 0.291618 0.054805\nvt 0.291618 0.054805\nvt 0.291618 0.050276\nvt 0.305833 0.050276\nvt 0.305833 0.045943\nvt 0.305833 0.050276\nvt 0.291618 0.050276\nvt 0.291618 0.050276\nvt 0.291618 0.045943\nvt 0.305833 0.045943\nvt 0.291618 0.045943\nvt 0.291618 0.050276\nvt 0.279039 0.050276\nvt 0.279039 0.050276\nvt 0.279039 0.045943\nvt 0.291618 0.045943\nvt 0.279039 0.045943\nvt 0.279039 0.050276\nvt 0.266998 0.050276\nvt 0.266998 0.050276\nvt 0.266998 0.045943\nvt 0.279039 0.045943\nvt 0.266998 0.045943\nvt 0.266998 0.050276\nvt 0.254612 0.050276\nvt 0.254612 0.050276\nvt 0.254612 0.045943\nvt 0.266998 0.045943\nvt 0.254612 0.054805\nvt 0.254612 0.050276\nvt 0.266998 0.050276\nvt 0.266998 0.050276\nvt 0.266998 0.054805\nvt 0.254612 0.054805\nvt 0.266998 0.054805\nvt 0.266998 0.050276\nvt 0.279039 0.050276\nvt 0.279039 0.050276\nvt 0.279039 0.054805\nvt 0.266998 0.054805\nvt 0.279039 0.054805\nvt 0.279039 0.050276\nvt 0.291618 0.050276\nvt 0.291618 0.050276\nvt 0.291618 0.054805\nvt 0.279039 0.054805\nvt 0.291618 0.054805\nvt 0.291618 0.059605\nvt 0.279039 0.059605\nvt 0.279039 0.059605\nvt 0.279039 0.054805\nvt 0.291618 0.054805\nvt 0.279039 0.054805\nvt 0.279039 0.059605\nvt 0.266998 0.059605\nvt 0.266998 0.059605\nvt 0.266998 0.054805\nvt 0.279039 0.054805\nvt 0.266998 0.054805\nvt 0.266998 0.059605\nvt 0.254612 0.059605\nvt 0.254612 0.059605\nvt 0.254612 0.054805\nvt 0.266998 0.054805\nvt 0.254612 0.064749\nvt 0.254612 0.059605\nvt 0.266998 0.059605\nvt 0.266998 0.059605\nvt 0.266998 0.064749\nvt 0.254612 0.064749\nvt 0.266998 0.064749\nvt 0.266998 0.059605\nvt 0.279039 0.059605\nvt 0.279039 0.059605\nvt 0.279039 0.064749\nvt 0.266998 0.064749\nvt 0.279039 0.064749\nvt 0.279039 0.059605\nvt 0.291618 0.059605\nvt 0.291618 0.059605\nvt 0.291618 0.064749\nvt 0.279039 0.064749\nvt 0.279039 0.070223\nvt 0.279039 0.064749\nvt 0.291618 0.064749\nvt 0.291618 0.064749\nvt 0.291618 0.070223\nvt 0.279039 0.070223\nvt 0.279039 0.064749\nvt 0.279039 0.070223\nvt 0.266998 0.070223\nvt 0.266998 0.070223\nvt 0.266998 0.064749\nvt 0.279039 0.064749\nvt 0.266998 0.064749\nvt 0.266998 0.070223\nvt 0.254612 0.070223\nvt 0.254612 0.070223\nvt 0.254612 0.064749\nvt 0.266998 0.064749\nvt 0.254612 0.076016\nvt 0.254612 0.070223\nvt 0.266998 0.070223\nvt 0.266998 0.070223\nvt 0.266998 0.076016\nvt 0.254612 0.076016\nvt 0.266998 0.076016\nvt 0.266998 0.070223\nvt 0.279039 0.070223\nvt 0.279039 0.070223\nvt 0.279039 0.076016\nvt 0.266998 0.076016\nvt 0.279039 0.076016\nvt 0.279039 0.070223\nvt 0.291618 0.070223\nvt 0.291618 0.070223\nvt 0.291618 0.076016\nvt 0.279039 0.076016\nvt 0.279039 0.081960\nvt 0.279039 0.076016\nvt 0.291618 0.076016\nvt 0.291618 0.076016\nvt 0.291618 0.081960\nvt 0.279039 0.081960\nvt 0.279039 0.076016\nvt 0.279039 0.081960\nvt 0.266998 0.081960\nvt 0.266998 0.081960\nvt 0.266998 0.076016\nvt 0.279039 0.076016\nvt 0.266998 0.076016\nvt 0.266998 0.081960\nvt 0.254612 0.081960\nvt 0.254612 0.081960\nvt 0.254612 0.076016\nvt 0.266998 0.076016\nvt 0.254612 0.087776\nvt 0.254612 0.081960\nvt 0.266998 0.081960\nvt 0.266998 0.081960\nvt 0.266998 0.087776\nvt 0.254612 0.087776\nvt 0.266998 0.087776\nvt 0.266998 0.081960\nvt 0.279039 0.081960\nvt 0.279039 0.081960\nvt 0.279039 0.087776\nvt 0.266998 0.087776\nvt 0.279039 0.087776\nvt 0.279039 0.081960\nvt 0.291618 0.081960\nvt 0.291618 0.081960\nvt 0.291618 0.087776\nvt 0.279039 0.087776\nvt 0.279537 0.093371\nvt 0.279039 0.087776\nvt 0.291618 0.087776\nvt 0.291618 0.087776\nvt 0.291535 0.093516\nvt 0.279537 0.093371\nvt 0.267486 0.093465\nvt 0.266998 0.087776\nvt 0.279039 0.087776\nvt 0.279039 0.087776\nvt 0.278937 0.093480\nvt 0.267486 0.093465\nvt 0.255031 0.093579\nvt 0.254612 0.087776\nvt 0.266998 0.087776\nvt 0.266998 0.087776\nvt 0.266896 0.093485\nvt 0.255031 0.093579\nvt 0.254612 0.081960\nvt 0.254612 0.087776\nvt 0.241256 0.087776\nvt 0.241256 0.087776\nvt 0.241256 0.081960\nvt 0.254612 0.081960\nvt 0.254612 0.076016\nvt 0.254612 0.081960\nvt 0.241256 0.081960\nvt 0.241256 0.081960\nvt 0.241256 0.076016\nvt 0.254612 0.076016\nvt 0.254612 0.070223\nvt 0.254612 0.076016\nvt 0.241256 0.076016\nvt 0.241256 0.076016\nvt 0.241256 0.070223\nvt 0.254612 0.070223\nvt 0.254612 0.064749\nvt 0.254612 0.070223\nvt 0.241256 0.070223\nvt 0.241256 0.070223\nvt 0.241256 0.064749\nvt 0.254612 0.064749\nvt 0.254612 0.059605\nvt 0.254612 0.064749\nvt 0.241256 0.064749\nvt 0.241256 0.064749\nvt 0.241256 0.059605\nvt 0.254612 0.059605\nvt 0.254612 0.054805\nvt 0.254612 0.059605\nvt 0.241256 0.059605\nvt 0.241256 0.059605\nvt 0.241256 0.054805\nvt 0.254612 0.054805\nvt 0.254612 0.050276\nvt 0.254612 0.054805\nvt 0.241256 0.054805\nvt 0.241256 0.054805\nvt 0.241256 0.050276\nvt 0.254612 0.050276\nvt 0.254612 0.045943\nvt 0.254612 0.050276\nvt 0.241256 0.050276\nvt 0.241256 0.050276\nvt 0.241256 0.045943\nvt 0.254612 0.045943\nvt 0.241256 0.045943\nvt 0.241256 0.050276\nvt 0.226580 0.050276\nvt 0.226580 0.050276\nvt 0.226580 0.045943\nvt 0.241256 0.045943\nvt 0.226580 0.045943\nvt 0.226580 0.050276\nvt 0.210607 0.050276\nvt 0.210607 0.050276\nvt 0.210607 0.045943\nvt 0.226580 0.045943\nvt 0.210607 0.045943\nvt 0.210607 0.050276\nvt 0.193698 0.050276\nvt 0.193698 0.050276\nvt 0.193698 0.045943\nvt 0.210607 0.045943\nvt 0.193698 0.054805\nvt 0.193698 0.050276\nvt 0.210607 0.050276\nvt 0.210607 0.050276\nvt 0.210607 0.054805\nvt 0.193698 0.054805\nvt 0.210607 0.054805\nvt 0.210607 0.050276\nvt 0.226580 0.050276\nvt 0.226580 0.050276\nvt 0.226580 0.054805\nvt 0.210607 0.054805\nvt 0.226580 0.054805\nvt 0.226580 0.050276\nvt 0.241256 0.050276\nvt 0.241256 0.050276\nvt 0.241256 0.054805\nvt 0.226580 0.054805\nvt 0.241256 0.054805\nvt 0.241256 0.059605\nvt 0.226580 0.059605\nvt 0.226580 0.059605\nvt 0.226580 0.054805\nvt 0.241256 0.054805\nvt 0.226580 0.054805\nvt 0.226580 0.059605\nvt 0.210607 0.059605\nvt 0.210607 0.059605\nvt 0.210607 0.054805\nvt 0.226580 0.054805\nvt 0.210607 0.054805\nvt 0.210607 0.059605\nvt 0.193698 0.059605\nvt 0.193698 0.059605\nvt 0.193698 0.054805\nvt 0.210607 0.054805\nvt 0.193698 0.064749\nvt 0.193698 0.059605\nvt 0.210607 0.059605\nvt 0.210607 0.059605\nvt 0.210607 0.064749\nvt 0.193698 0.064749\nvt 0.210607 0.064749\nvt 0.210607 0.059605\nvt 0.226580 0.059605\nvt 0.226580 0.059605\nvt 0.226580 0.064749\nvt 0.210607 0.064749\nvt 0.226580 0.064749\nvt 0.226580 0.059605\nvt 0.241256 0.059605\nvt 0.241256 0.059605\nvt 0.241256 0.064749\nvt 0.226580 0.064749\nvt 0.226580 0.070223\nvt 0.226580 0.064749\nvt 0.241256 0.064749\nvt 0.241256 0.064749\nvt 0.241256 0.070223\nvt 0.226580 0.070223\nvt 0.226580 0.064749\nvt 0.226580 0.070223\nvt 0.210607 0.070223\nvt 0.210607 0.070223\nvt 0.210607 0.064749\nvt 0.226580 0.064749\nvt 0.210607 0.064749\nvt 0.210607 0.070223\nvt 0.193698 0.070223\nvt 0.193698 0.070223\nvt 0.193698 0.064749\nvt 0.210607 0.064749\nvt 0.193698 0.076016\nvt 0.193698 0.070223\nvt 0.210607 0.070223\nvt 0.210607 0.070223\nvt 0.210607 0.076016\nvt 0.193698 0.076016\nvt 0.210607 0.076016\nvt 0.210607 0.070223\nvt 0.226580 0.070223\nvt 0.226580 0.070223\nvt 0.226580 0.076016\nvt 0.210607 0.076016\nvt 0.226580 0.076016\nvt 0.226580 0.070223\nvt 0.241256 0.070223\nvt 0.241256 0.070223\nvt 0.241256 0.076016\nvt 0.226580 0.076016\nvt 0.226580 0.081960\nvt 0.226580 0.076016\nvt 0.241256 0.076016\nvt 0.241256 0.076016\nvt 0.241256 0.081960\nvt 0.226580 0.081960\nvt 0.226580 0.076016\nvt 0.226580 0.081960\nvt 0.210607 0.081960\nvt 0.210607 0.081960\nvt 0.210607 0.076016\nvt 0.226580 0.076016\nvt 0.210607 0.076016\nvt 0.210607 0.081960\nvt 0.193698 0.081960\nvt 0.193698 0.081960\nvt 0.193698 0.076016\nvt 0.210607 0.076016\nvt 0.193698 0.087776\nvt 0.193698 0.081960\nvt 0.210607 0.081960\nvt 0.210607 0.081960\nvt 0.210607 0.087776\nvt 0.193698 0.087776\nvt 0.210607 0.087776\nvt 0.210607 0.081960\nvt 0.226580 0.081960\nvt 0.226580 0.081960\nvt 0.226580 0.087776\nvt 0.210607 0.087776\nvt 0.226580 0.087776\nvt 0.226580 0.081960\nvt 0.241256 0.081960\nvt 0.241256 0.081960\nvt 0.241256 0.087776\nvt 0.226580 0.087776\nvt 0.226875 0.093610\nvt 0.226580 0.087776\nvt 0.241256 0.087776\nvt 0.241256 0.087776\nvt 0.241166 0.093536\nvt 0.226875 0.093610\nvt 0.210920 0.093584\nvt 0.210607 0.087776\nvt 0.226580 0.087776\nvt 0.226580 0.087776\nvt 0.210920 0.093584\nvt 0.194055 0.093566\nvt 0.193698 0.087776\nvt 0.210607 0.087776\nvt 0.210607 0.087776\nvt 0.210548 0.093553\nvt 0.194055 0.093566\nvt 0.193698 0.081960\nvt 0.193698 0.087776\nvt 0.176410 0.087776\nvt 0.176410 0.087776\nvt 0.176410 0.081960\nvt 0.193698 0.081960\nvt 0.193698 0.076016\nvt 0.193698 0.081960\nvt 0.176410 0.081960\nvt 0.176410 0.081960\nvt 0.176410 0.076016\nvt 0.193698 0.076016\nvt 0.193698 0.070223\nvt 0.193698 0.076016\nvt 0.176410 0.076016\nvt 0.176410 0.076016\nvt 0.176410 0.070223\nvt 0.193698 0.070223\nvt 0.193698 0.064749\nvt 0.193698 0.070223\nvt 0.176410 0.070223\nvt 0.176410 0.070223\nvt 0.176410 0.064749\nvt 0.193698 0.064749\nvt 0.193698 0.059605\nvt 0.193698 0.064749\nvt 0.176410 0.064749\nvt 0.176410 0.064749\nvt 0.176410 0.059605\nvt 0.193698 0.059605\nvt 0.193698 0.054805\nvt 0.193698 0.059605\nvt 0.176410 0.059605\nvt 0.176410 0.059605\nvt 0.176410 0.054805\nvt 0.193698 0.054805\nvt 0.193698 0.050276\nvt 0.193698 0.054805\nvt 0.176410 0.054805\nvt 0.176410 0.054805\nvt 0.176410 0.050276\nvt 0.193698 0.050276\nvt 0.193698 0.045943\nvt 0.193698 0.050276\nvt 0.176410 0.050276\nvt 0.176410 0.050276\nvt 0.176410 0.045943\nvt 0.193698 0.045943\nvt 0.176410 0.045943\nvt 0.176410 0.050276\nvt 0.159236 0.050276\nvt 0.159236 0.050276\nvt 0.159236 0.045943\nvt 0.176410 0.045943\nvt 0.159236 0.045943\nvt 0.159236 0.050276\nvt 0.142431 0.050276\nvt 0.142431 0.050276\nvt 0.142431 0.045943\nvt 0.159236 0.045943\nvt 0.142431 0.045943\nvt 0.142431 0.050276\nvt 0.126000 0.050276\nvt 0.126000 0.050276\nvt 0.126000 0.045943\nvt 0.142431 0.045943\nvt 0.126000 0.054805\nvt 0.126000 0.050276\nvt 0.142431 0.050276\nvt 0.142431 0.050276\nvt 0.142431 0.054805\nvt 0.126000 0.054805\nvt 0.142431 0.054805\nvt 0.142431 0.050276\nvt 0.159236 0.050276\nvt 0.159236 0.050276\nvt 0.159236 0.054805\nvt 0.142431 0.054805\nvt 0.159236 0.054805\nvt 0.159236 0.050276\nvt 0.176410 0.050276\nvt 0.176410 0.050276\nvt 0.176410 0.054805\nvt 0.159236 0.054805\nvt 0.176410 0.054805\nvt 0.176410 0.059605\nvt 0.159236 0.059605\nvt 0.159236 0.059605\nvt 0.159236 0.054805\nvt 0.176410 0.054805\nvt 0.159236 0.054805\nvt 0.159236 0.059605\nvt 0.142431 0.059605\nvt 0.142431 0.059605\nvt 0.142431 0.054805\nvt 0.159236 0.054805\nvt 0.142431 0.054805\nvt 0.142431 0.059605\nvt 0.126000 0.059605\nvt 0.126000 0.059605\nvt 0.126000 0.054805\nvt 0.142431 0.054805\nvt 0.126000 0.064749\nvt 0.126000 0.059605\nvt 0.142431 0.059605\nvt 0.142431 0.059605\nvt 0.142431 0.064749\nvt 0.126000 0.064749\nvt 0.142431 0.064749\nvt 0.142431 0.059605\nvt 0.159236 0.059605\nvt 0.159236 0.059605\nvt 0.159236 0.064749\nvt 0.142431 0.064749\nvt 0.159236 0.064749\nvt 0.159236 0.059605\nvt 0.176410 0.059605\nvt 0.176410 0.059605\nvt 0.176410 0.064749\nvt 0.159236 0.064749\nvt 0.159236 0.070223\nvt 0.159236 0.064749\nvt 0.176410 0.064749\nvt 0.176410 0.064749\nvt 0.176410 0.070223\nvt 0.159236 0.070223\nvt 0.159236 0.064749\nvt 0.159236 0.070223\nvt 0.142431 0.070223\nvt 0.142431 0.070223\nvt 0.142431 0.064749\nvt 0.159236 0.064749\nvt 0.142431 0.064749\nvt 0.142431 0.070223\nvt 0.126000 0.070223\nvt 0.126000 0.070223\nvt 0.126000 0.064749\nvt 0.142431 0.064749\nvt 0.126000 0.076016\nvt 0.126000 0.070223\nvt 0.142431 0.070223\nvt 0.142431 0.070223\nvt 0.142431 0.076016\nvt 0.126000 0.076016\nvt 0.142431 0.076016\nvt 0.142431 0.070223\nvt 0.159236 0.070223\nvt 0.159236 0.070223\nvt 0.159236 0.076016\nvt 0.142431 0.076016\nvt 0.159236 0.076016\nvt 0.159236 0.070223\nvt 0.176410 0.070223\nvt 0.176410 0.070223\nvt 0.176410 0.076016\nvt 0.159236 0.076016\nvt 0.159236 0.081960\nvt 0.159236 0.076016\nvt 0.176410 0.076016\nvt 0.176410 0.076016\nvt 0.176410 0.081960\nvt 0.159236 0.081960\nvt 0.159236 0.076016\nvt 0.159236 0.081960\nvt 0.142431 0.081960\nvt 0.142431 0.081960\nvt 0.142431 0.076016\nvt 0.159236 0.076016\nvt 0.142431 0.076016\nvt 0.142431 0.081960\nvt 0.126000 0.081960\nvt 0.126000 0.081960\nvt 0.126000 0.076016\nvt 0.142431 0.076016\nvt 0.126000 0.087776\nvt 0.126000 0.081960\nvt 0.142431 0.081960\nvt 0.142431 0.081960\nvt 0.142431 0.087776\nvt 0.126000 0.087776\nvt 0.142431 0.087776\nvt 0.142431 0.081960\nvt 0.159236 0.081960\nvt 0.159236 0.081960\nvt 0.159236 0.087776\nvt 0.142431 0.087776\nvt 0.159236 0.087776\nvt 0.159236 0.081960\nvt 0.176410 0.081960\nvt 0.176410 0.081960\nvt 0.176410 0.087776\nvt 0.159236 0.087776\nvt 0.159666 0.093577\nvt 0.159236 0.087776\nvt 0.176410 0.087776\nvt 0.176410 0.087776\nvt 0.176385 0.093562\nvt 0.159666 0.093577\nvt 0.142858 0.093590\nvt 0.142431 0.087776\nvt 0.159236 0.087776\nvt 0.159236 0.087776\nvt 0.159217 0.093571\nvt 0.142858 0.093590\nvt 0.126404 0.093595\nvt 0.126000 0.087776\nvt 0.142431 0.087776\nvt 0.142431 0.087776\nvt 0.142409 0.093579\nvt 0.126404 0.093595\nvt 0.126000 0.081960\nvt 0.126000 0.087776\nvt 0.109512 0.087776\nvt 0.109512 0.087776\nvt 0.109512 0.081960\nvt 0.126000 0.081960\nvt 0.126000 0.076016\nvt 0.126000 0.081960\nvt 0.109512 0.081960\nvt 0.109512 0.081960\nvt 0.109512 0.076016\nvt 0.126000 0.076016\nvt 0.126000 0.070223\nvt 0.126000 0.076016\nvt 0.109512 0.076016\nvt 0.109512 0.076016\nvt 0.109512 0.070223\nvt 0.126000 0.070223\nvt 0.126000 0.064749\nvt 0.126000 0.070223\nvt 0.109512 0.070223\nvt 0.109512 0.070223\nvt 0.109512 0.064749\nvt 0.126000 0.064749\nvt 0.126000 0.059605\nvt 0.126000 0.064749\nvt 0.109512 0.064749\nvt 0.109512 0.064749\nvt 0.109512 0.059605\nvt 0.126000 0.059605\nvt 0.126000 0.054805\nvt 0.126000 0.059605\nvt 0.109512 0.059605\nvt 0.109512 0.059605\nvt 0.109512 0.054805\nvt 0.126000 0.054805\nvt 0.126000 0.050276\nvt 0.126000 0.054805\nvt 0.109512 0.054805\nvt 0.109512 0.054805\nvt 0.109512 0.050276\nvt 0.126000 0.050276\nvt 0.126000 0.045943\nvt 0.126000 0.050276\nvt 0.109512 0.050276\nvt 0.109512 0.050276\nvt 0.109512 0.045943\nvt 0.126000 0.045943\nvt 0.109512 0.045943\nvt 0.109512 0.050276\nvt 0.092609 0.050276\nvt 0.092609 0.050276\nvt 0.092609 0.045943\nvt 0.109512 0.045943\nvt 0.092609 0.045943\nvt 0.092609 0.050276\nvt 0.075532 0.050276\nvt 0.075532 0.050276\nvt 0.075532 0.045943\nvt 0.092609 0.045943\nvt 0.075532 0.045943\nvt 0.075532 0.050276\nvt 0.043738 0.050276\nvt 0.043738 0.050276\nvt 0.043738 0.045943\nvt 0.075532 0.045943\nvt 0.043738 0.054805\nvt 0.043738 0.050276\nvt 0.075532 0.050276\nvt 0.075532 0.050276\nvt 0.075532 0.054805\nvt 0.043738 0.054805\nvt 0.075532 0.054805\nvt 0.075532 0.050276\nvt 0.092609 0.050276\nvt 0.092609 0.050276\nvt 0.092609 0.054805\nvt 0.075532 0.054805\nvt 0.092609 0.054805\nvt 0.092609 0.050276\nvt 0.109512 0.050276\nvt 0.109512 0.050276\nvt 0.109512 0.054805\nvt 0.092609 0.054805\nvt 0.109512 0.054805\nvt 0.109512 0.059605\nvt 0.092609 0.059605\nvt 0.092609 0.059605\nvt 0.092609 0.054805\nvt 0.109512 0.054805\nvt 0.092609 0.054805\nvt 0.092609 0.059605\nvt 0.075532 0.059605\nvt 0.075532 0.059605\nvt 0.075532 0.054805\nvt 0.092609 0.054805\nvt 0.075532 0.054805\nvt 0.075532 0.059605\nvt 0.043738 0.059605\nvt 0.043738 0.059605\nvt 0.043738 0.054805\nvt 0.075532 0.054805\nvt 0.043738 0.064749\nvt 0.043738 0.059605\nvt 0.075532 0.059605\nvt 0.075532 0.059605\nvt 0.075532 0.064749\nvt 0.043738 0.064749\nvt 0.075532 0.064749\nvt 0.075532 0.059605\nvt 0.092609 0.059605\nvt 0.092609 0.059605\nvt 0.092609 0.064749\nvt 0.075532 0.064749\nvt 0.092609 0.064749\nvt 0.092609 0.059605\nvt 0.109512 0.059605\nvt 0.109512 0.059605\nvt 0.109512 0.064749\nvt 0.092609 0.064749\nvt 0.092609 0.070223\nvt 0.092609 0.064749\nvt 0.109512 0.064749\nvt 0.109512 0.064749\nvt 0.109512 0.070223\nvt 0.092609 0.070223\nvt 0.092609 0.064749\nvt 0.092609 0.070223\nvt 0.075532 0.070223\nvt 0.075532 0.070223\nvt 0.075532 0.064749\nvt 0.092609 0.064749\nvt 0.075532 0.064749\nvt 0.075532 0.070223\nvt 0.043738 0.070223\nvt 0.043738 0.070223\nvt 0.043738 0.064749\nvt 0.075532 0.064749\nvt 0.043738 0.076016\nvt 0.043738 0.070223\nvt 0.075532 0.070223\nvt 0.075532 0.070223\nvt 0.075532 0.076016\nvt 0.043738 0.076016\nvt 0.075532 0.076016\nvt 0.075532 0.070223\nvt 0.092609 0.070223\nvt 0.092609 0.070223\nvt 0.092609 0.076016\nvt 0.075532 0.076016\nvt 0.092609 0.076016\nvt 0.092609 0.070223\nvt 0.109512 0.070223\nvt 0.109512 0.070223\nvt 0.109512 0.076016\nvt 0.092609 0.076016\nvt 0.092609 0.081960\nvt 0.092609 0.076016\nvt 0.109512 0.076016\nvt 0.109512 0.076016\nvt 0.109512 0.081960\nvt 0.092609 0.081960\nvt 0.092609 0.076016\nvt 0.092609 0.081960\nvt 0.075532 0.081960\nvt 0.075532 0.081960\nvt 0.075532 0.076016\nvt 0.092609 0.076016\nvt 0.075532 0.076016\nvt 0.075532 0.081960\nvt 0.043738 0.081960\nvt 0.043738 0.081960\nvt 0.043738 0.076016\nvt 0.075532 0.076016\nvt 0.043738 0.087776\nvt 0.043738 0.081960\nvt 0.075532 0.081960\nvt 0.075532 0.081960\nvt 0.075532 0.087776\nvt 0.043738 0.087776\nvt 0.075532 0.087776\nvt 0.075532 0.081960\nvt 0.092609 0.081960\nvt 0.092609 0.081960\nvt 0.092609 0.087776\nvt 0.075532 0.087776\nvt 0.092609 0.087776\nvt 0.092609 0.081960\nvt 0.109512 0.081960\nvt 0.109512 0.081960\nvt 0.109512 0.087776\nvt 0.092609 0.087776\nvt 0.092609 0.087776\nvt 0.109512 0.087776\nvt 0.109512 0.087776\nvt 0.109479 0.093573\nvt 0.075910 0.093566\nvt 0.075532 0.087776\nvt 0.092609 0.087776\nvt 0.092609 0.087776\nvt 0.092584 0.093568\nvt 0.075910 0.093566\nvt 0.043738 0.076016\nvt 0.043738 0.081960\nvt 0.016646 0.081960\nvt 0.016646 0.081960\nvt 0.043738 0.081960\nvt 0.043738 0.087776\nvt 0.043738 0.087776\nvt 0.016646 0.087776\nvt 0.016646 0.081960\nvt 0.016646 0.081960\nvt 0.016646 0.087776\nvt 0.003468 0.087776\nvt 0.003468 0.087776\nvt 0.003468 0.081960\nvt 0.016646 0.081960\nvt 0.016646 0.081960\nvt 0.003468 0.081960\nvt 0.003468 0.076016\nvt 0.003468 0.076016\nvt 0.016646 0.076016\nvt 0.016646 0.081960\nvt 0.016646 0.070223\nvt 0.016646 0.076016\nvt 0.003468 0.076016\nvt 0.003468 0.076016\nvt 0.003468 0.070223\nvt 0.016646 0.070223\nvt 0.016646 0.070223\nvt 0.003468 0.070223\nvt 0.003468 0.064749\nvt 0.003468 0.064749\nvt 0.016646 0.064749\nvt 0.016646 0.070223\nvt 0.016646 0.059605\nvt 0.016646 0.064749\nvt 0.003468 0.064749\nvt 0.003468 0.064749\nvt 0.003468 0.059605\nvt 0.016646 0.059605\nvt 0.016646 0.059605\nvt 0.003468 0.059605\nvt 0.003468 0.054805\nvt 0.003468 0.054805\nvt 0.016646 0.054805\nvt 0.016646 0.059605\nvt 0.016646 0.050276\nvt 0.016646 0.054805\nvt 0.003468 0.054805\nvt 0.003468 0.054805\nvt 0.003468 0.050276\nvt 0.016646 0.050276\nvt 0.016646 0.050276\nvt 0.003468 0.050276\nvt 0.003468 0.045943\nvt 0.003468 0.045943\nvt 0.016646 0.045943\nvt 0.016646 0.050276\nvt 0.016646 0.050276\nvt 0.016646 0.045943\nvt 0.043738 0.045943\nvt 0.043738 0.045943\nvt 0.043738 0.050276\nvt 0.016646 0.050276\nvt 0.016646 0.050276\nvt 0.043738 0.050276\nvt 0.043738 0.054805\nvt 0.043738 0.054805\nvt 0.016646 0.054805\nvt 0.016646 0.050276\nvt 0.016646 0.059605\nvt 0.016646 0.054805\nvt 0.043738 0.054805\nvt 0.043738 0.054805\nvt 0.043738 0.059605\nvt 0.016646 0.059605\nvt 0.016646 0.059605\nvt 0.043738 0.059605\nvt 0.043738 0.064749\nvt 0.043738 0.064749\nvt 0.016646 0.064749\nvt 0.016646 0.059605\nvt 0.016646 0.070223\nvt 0.016646 0.064749\nvt 0.043738 0.064749\nvt 0.043738 0.064749\nvt 0.043738 0.070223\nvt 0.016646 0.070223\nvt 0.016646 0.070223\nvt 0.043738 0.070223\nvt 0.043738 0.076016\nvt 0.043738 0.076016\nvt 0.016646 0.076016\nvt 0.016646 0.070223\nvt 0.016646 0.081960\nvt 0.016646 0.076016\nvt 0.043738 0.076016\nvt 0.016646 0.041603\nvt 0.016646 0.045943\nvt 0.003468 0.045943\nvt 0.003468 0.045943\nvt 0.003468 0.041603\nvt 0.016646 0.041603\nvt 0.016646 0.041603\nvt 0.003468 0.041603\nvt 0.003468 0.037031\nvt 0.003468 0.037031\nvt 0.016646 0.037031\nvt 0.016646 0.041603\nvt 0.016646 0.032192\nvt 0.016646 0.037031\nvt 0.003468 0.037031\nvt 0.003468 0.037031\nvt 0.003468 0.032192\nvt 0.016646 0.032192\nvt 0.016646 0.032192\nvt 0.003468 0.032192\nvt 0.003468 0.026961\nvt 0.003468 0.026961\nvt 0.016646 0.026961\nvt 0.016646 0.032192\nvt 0.016646 0.021309\nvt 0.016646 0.026961\nvt 0.003468 0.026961\nvt 0.003468 0.026961\nvt 0.003468 0.021309\nvt 0.016646 0.021309\nvt 0.016646 0.021309\nvt 0.003468 0.021309\nvt 0.003468 0.015355\nvt 0.003468 0.015355\nvt 0.016646 0.015355\nvt 0.016646 0.021309\nvt 0.016646 0.009370\nvt 0.016646 0.015355\nvt 0.003468 0.015355\nvt 0.003468 0.015355\nvt 0.003468 0.009370\nvt 0.016646 0.009370\nvt 0.043738 0.015355\nvt 0.016646 0.015355\nvt 0.016646 0.009370\nvt 0.016646 0.021309\nvt 0.016646 0.015355\nvt 0.043738 0.015355\nvt 0.016646 0.009370\nvt 0.043738 0.009370\nvt 0.043738 0.015355\nvt 0.043738 0.015355\nvt 0.043738 0.009370\nvt 0.075532 0.009370\nvt 0.075532 0.009370\nvt 0.075532 0.015355\nvt 0.043738 0.015355\nvt 0.075532 0.015355\nvt 0.075532 0.009370\nvt 0.092609 0.009370\nvt 0.092609 0.009370\nvt 0.092609 0.015355\nvt 0.075532 0.015355\nvt 0.092609 0.015355\nvt 0.092609 0.009370\nvt 0.109512 0.009370\nvt 0.109512 0.009370\nvt 0.109512 0.015355\nvt 0.092609 0.015355\nvt 0.109512 0.015355\nvt 0.109512 0.009370\nvt 0.126000 0.009370\nvt 0.126000 0.009370\nvt 0.126000 0.015355\nvt 0.109512 0.015355\nvt 0.126000 0.015355\nvt 0.126000 0.009370\nvt 0.142431 0.009370\nvt 0.142431 0.009370\nvt 0.142431 0.015355\nvt 0.126000 0.015355\nvt 0.142431 0.015355\nvt 0.142431 0.009370\nvt 0.159236 0.009370\nvt 0.159236 0.009370\nvt 0.159236 0.015355\nvt 0.142431 0.015355\nvt 0.159236 0.015355\nvt 0.159236 0.009370\nvt 0.176410 0.009370\nvt 0.176410 0.009370\nvt 0.176410 0.015355\nvt 0.159236 0.015355\nvt 0.176410 0.015355\nvt 0.176410 0.009370\nvt 0.193698 0.009370\nvt 0.193698 0.009370\nvt 0.193698 0.015355\nvt 0.176410 0.015355\nvt 0.193698 0.015355\nvt 0.193698 0.009370\nvt 0.210607 0.009370\nvt 0.210607 0.009370\nvt 0.210607 0.015355\nvt 0.193698 0.015355\nvt 0.210607 0.015355\nvt 0.210607 0.009370\nvt 0.226580 0.009370\nvt 0.226580 0.009370\nvt 0.226580 0.015355\nvt 0.210607 0.015355\nvt 0.226580 0.015355\nvt 0.226580 0.009370\nvt 0.241256 0.009370\nvt 0.241256 0.009370\nvt 0.241256 0.015355\nvt 0.226580 0.015355\nvt 0.241256 0.015355\nvt 0.241256 0.009370\nvt 0.254612 0.009370\nvt 0.254612 0.009370\nvt 0.254612 0.015355\nvt 0.241256 0.015355\nvt 0.254612 0.015355\nvt 0.254612 0.009370\nvt 0.266998 0.009370\nvt 0.266998 0.009370\nvt 0.266998 0.015355\nvt 0.254612 0.015355\nvt 0.266998 0.015355\nvt 0.266998 0.009370\nvt 0.279039 0.009370\nvt 0.279039 0.009370\nvt 0.279039 0.015355\nvt 0.266998 0.015355\nvt 0.279039 0.015355\nvt 0.279039 0.009370\nvt 0.291618 0.009370\nvt 0.291618 0.009370\nvt 0.291618 0.015355\nvt 0.279039 0.015355\nvt 0.291618 0.015355\nvt 0.291618 0.009370\nvt 0.305833 0.009370\nvt 0.305833 0.009370\nvt 0.305833 0.015355\nvt 0.291618 0.015355\nvt 0.291618 0.021309\nvt 0.291618 0.015355\nvt 0.305833 0.015355\nvt 0.305833 0.015355\nvt 0.305833 0.021309\nvt 0.291618 0.021309\nvt 0.291618 0.015355\nvt 0.291618 0.021309\nvt 0.279039 0.021309\nvt 0.279039 0.021309\nvt 0.279039 0.015355\nvt 0.291618 0.015355\nvt 0.279039 0.015355\nvt 0.279039 0.021309\nvt 0.266998 0.021309\nvt 0.266998 0.021309\nvt 0.266998 0.015355\nvt 0.279039 0.015355\nvt 0.266998 0.015355\nvt 0.266998 0.021309\nvt 0.254612 0.021309\nvt 0.254612 0.021309\nvt 0.254612 0.015355\nvt 0.266998 0.015355\nvt 0.254612 0.026961\nvt 0.254612 0.021309\nvt 0.266998 0.021309\nvt 0.266998 0.021309\nvt 0.266998 0.026961\nvt 0.254612 0.026961\nvt 0.266998 0.026961\nvt 0.266998 0.021309\nvt 0.279039 0.021309\nvt 0.279039 0.021309\nvt 0.279039 0.026961\nvt 0.266998 0.026961\nvt 0.279039 0.026961\nvt 0.279039 0.021309\nvt 0.291618 0.021309\nvt 0.291618 0.021309\nvt 0.291618 0.026961\nvt 0.279039 0.026961\nvt 0.291618 0.026961\nvt 0.291618 0.021309\nvt 0.305833 0.021309\nvt 0.305833 0.021309\nvt 0.305833 0.026961\nvt 0.291618 0.026961\nvt 0.291618 0.032192\nvt 0.291618 0.026961\nvt 0.305833 0.026961\nvt 0.305833 0.026961\nvt 0.305833 0.032192\nvt 0.291618 0.032192\nvt 0.291618 0.026961\nvt 0.291618 0.032192\nvt 0.279039 0.032192\nvt 0.279039 0.032192\nvt 0.279039 0.026961\nvt 0.291618 0.026961\nvt 0.279039 0.026961\nvt 0.279039 0.032192\nvt 0.266998 0.032192\nvt 0.266998 0.032192\nvt 0.266998 0.026961\nvt 0.279039 0.026961\nvt 0.266998 0.026961\nvt 0.266998 0.032192\nvt 0.254612 0.032192\nvt 0.254612 0.032192\nvt 0.254612 0.026961\nvt 0.266998 0.026961\nvt 0.254612 0.037031\nvt 0.254612 0.032192\nvt 0.266998 0.032192\nvt 0.266998 0.032192\nvt 0.266998 0.037031\nvt 0.254612 0.037031\nvt 0.266998 0.037031\nvt 0.266998 0.032192\nvt 0.279039 0.032192\nvt 0.279039 0.032192\nvt 0.279039 0.037031\nvt 0.266998 0.037031\nvt 0.279039 0.037031\nvt 0.279039 0.032192\nvt 0.291618 0.032192\nvt 0.291618 0.032192\nvt 0.291618 0.037031\nvt 0.279039 0.037031\nvt 0.291618 0.037031\nvt 0.291618 0.032192\nvt 0.305833 0.032192\nvt 0.305833 0.032192\nvt 0.305833 0.037031\nvt 0.291618 0.037031\nvt 0.291618 0.041603\nvt 0.291618 0.037031\nvt 0.305833 0.037031\nvt 0.305833 0.037031\nvt 0.305833 0.041603\nvt 0.291618 0.041603\nvt 0.291618 0.037031\nvt 0.291618 0.041603\nvt 0.279039 0.041603\nvt 0.279039 0.041603\nvt 0.279039 0.037031\nvt 0.291618 0.037031\nvt 0.279039 0.037031\nvt 0.279039 0.041603\nvt 0.266998 0.041603\nvt 0.266998 0.041603\nvt 0.266998 0.037031\nvt 0.279039 0.037031\nvt 0.266998 0.037031\nvt 0.266998 0.041603\nvt 0.254612 0.041603\nvt 0.254612 0.041603\nvt 0.254612 0.037031\nvt 0.266998 0.037031\nvt 0.254612 0.045943\nvt 0.254612 0.041603\nvt 0.266998 0.041603\nvt 0.266998 0.041603\nvt 0.266998 0.045943\nvt 0.254612 0.045943\nvt 0.266998 0.045943\nvt 0.266998 0.041603\nvt 0.279039 0.041603\nvt 0.279039 0.041603\nvt 0.279039 0.045943\nvt 0.266998 0.045943\nvt 0.279039 0.045943\nvt 0.279039 0.041603\nvt 0.291618 0.041603\nvt 0.291618 0.041603\nvt 0.291618 0.045943\nvt 0.279039 0.045943\nvt 0.291618 0.045943\nvt 0.291618 0.041603\nvt 0.305833 0.041603\nvt 0.305833 0.041603\nvt 0.305833 0.045943\nvt 0.291618 0.045943\nvt 0.254612 0.032192\nvt 0.254612 0.037031\nvt 0.241256 0.037031\nvt 0.254612 0.037031\nvt 0.254612 0.041603\nvt 0.241256 0.041603\nvt 0.241256 0.041603\nvt 0.241256 0.037031\nvt 0.254612 0.037031\nvt 0.241256 0.037031\nvt 0.241256 0.041603\nvt 0.226580 0.041603\nvt 0.226580 0.041603\nvt 0.226580 0.037031\nvt 0.241256 0.037031\nvt 0.241256 0.032192\nvt 0.241256 0.037031\nvt 0.226580 0.037031\nvt 0.226580 0.037031\nvt 0.226580 0.032192\nvt 0.241256 0.032192\nvt 0.241256 0.026961\nvt 0.241256 0.032192\nvt 0.226580 0.032192\nvt 0.241256 0.032192\nvt 0.241256 0.026961\nvt 0.254612 0.026961\nvt 0.254612 0.021309\nvt 0.254612 0.026961\nvt 0.241256 0.026961\nvt 0.241256 0.026961\nvt 0.241256 0.021309\nvt 0.254612 0.021309\nvt 0.254612 0.015355\nvt 0.254612 0.021309\nvt 0.241256 0.021309\nvt 0.241256 0.021309\nvt 0.241256 0.015355\nvt 0.254612 0.015355\nvt 0.241256 0.015355\nvt 0.241256 0.021309\nvt 0.226580 0.021309\nvt 0.226580 0.021309\nvt 0.226580 0.015355\nvt 0.241256 0.015355\nvt 0.226580 0.015355\nvt 0.226580 0.021309\nvt 0.210607 0.021309\nvt 0.210607 0.021309\nvt 0.210607 0.015355\nvt 0.226580 0.015355\nvt 0.210607 0.015355\nvt 0.210607 0.021309\nvt 0.193698 0.021309\nvt 0.193698 0.021309\nvt 0.193698 0.015355\nvt 0.210607 0.015355\nvt 0.193698 0.026961\nvt 0.193698 0.021309\nvt 0.210607 0.021309\nvt 0.210607 0.021309\nvt 0.210607 0.026961\nvt 0.193698 0.026961\nvt 0.210607 0.026961\nvt 0.210607 0.021309\nvt 0.226580 0.021309\nvt 0.226580 0.021309\nvt 0.226580 0.026961\nvt 0.210607 0.026961\nvt 0.226580 0.026961\nvt 0.226580 0.021309\nvt 0.241256 0.021309\nvt 0.241256 0.021309\nvt 0.241256 0.026961\nvt 0.226580 0.026961\nvt 0.226580 0.032192\nvt 0.226580 0.026961\nvt 0.241256 0.026961\nvt 0.226580 0.026961\nvt 0.226580 0.032192\nvt 0.210607 0.032192\nvt 0.210607 0.032192\nvt 0.210607 0.026961\nvt 0.226580 0.026961\nvt 0.210607 0.026961\nvt 0.210607 0.032192\nvt 0.193698 0.032192\nvt 0.193698 0.032192\nvt 0.193698 0.026961\nvt 0.210607 0.026961\nvt 0.193698 0.037031\nvt 0.193698 0.032192\nvt 0.210607 0.032192\nvt 0.210607 0.032192\nvt 0.210607 0.037031\nvt 0.193698 0.037031\nvt 0.210607 0.037031\nvt 0.210607 0.032192\nvt 0.226580 0.032192\nvt 0.226580 0.032192\nvt 0.226580 0.037031\nvt 0.210607 0.037031\nvt 0.210607 0.041603\nvt 0.210607 0.037031\nvt 0.226580 0.037031\nvt 0.226580 0.037031\nvt 0.226580 0.041603\nvt 0.210607 0.041603\nvt 0.210607 0.037031\nvt 0.210607 0.041603\nvt 0.193698 0.041603\nvt 0.193698 0.041603\nvt 0.193698 0.037031\nvt 0.210607 0.037031\nvt 0.193698 0.045943\nvt 0.193698 0.041603\nvt 0.210607 0.041603\nvt 0.210607 0.041603\nvt 0.210607 0.045943\nvt 0.193698 0.045943\nvt 0.210607 0.045943\nvt 0.210607 0.041603\nvt 0.226580 0.041603\nvt 0.226580 0.041603\nvt 0.226580 0.045943\nvt 0.210607 0.045943\nvt 0.226580 0.045943\nvt 0.226580 0.041603\nvt 0.241256 0.041603\nvt 0.241256 0.041603\nvt 0.241256 0.045943\nvt 0.226580 0.045943\nvt 0.241256 0.045943\nvt 0.241256 0.041603\nvt 0.254612 0.041603\nvt 0.254612 0.041603\nvt 0.254612 0.045943\nvt 0.241256 0.045943\nvt 0.193698 0.032192\nvt 0.193698 0.037031\nvt 0.176410 0.037031\nvt 0.176410 0.037031\nvt 0.176410 0.032192\nvt 0.193698 0.032192\nvt 0.193698 0.026961\nvt 0.193698 0.032192\nvt 0.176410 0.032192\nvt 0.176410 0.032192\nvt 0.176410 0.026961\nvt 0.193698 0.026961\nvt 0.193698 0.021309\nvt 0.193698 0.026961\nvt 0.176410 0.026961\nvt 0.176410 0.026961\nvt 0.176410 0.021309\nvt 0.193698 0.021309\nvt 0.193698 0.015355\nvt 0.193698 0.021309\nvt 0.176410 0.021309\nvt 0.176410 0.021309\nvt 0.176410 0.015355\nvt 0.193698 0.015355\nvt 0.176410 0.015355\nvt 0.176410 0.021309\nvt 0.159236 0.021309\nvt 0.159236 0.021309\nvt 0.159236 0.015355\nvt 0.176410 0.015355\nvt 0.159236 0.015355\nvt 0.159236 0.021309\nvt 0.142431 0.021309\nvt 0.142431 0.021309\nvt 0.142431 0.015355\nvt 0.159236 0.015355\nvt 0.142431 0.015355\nvt 0.142431 0.021309\nvt 0.126000 0.021309\nvt 0.126000 0.021309\nvt 0.126000 0.015355\nvt 0.142431 0.015355\nvt 0.126000 0.026961\nvt 0.126000 0.021309\nvt 0.142431 0.021309\nvt 0.142431 0.021309\nvt 0.142431 0.026961\nvt 0.126000 0.026961\nvt 0.142431 0.026961\nvt 0.142431 0.021309\nvt 0.159236 0.021309\nvt 0.159236 0.021309\nvt 0.159236 0.026961\nvt 0.142431 0.026961\nvt 0.159236 0.026961\nvt 0.159236 0.021309\nvt 0.176410 0.021309\nvt 0.176410 0.021309\nvt 0.176410 0.026961\nvt 0.159236 0.026961\nvt 0.159236 0.032192\nvt 0.159236 0.026961\nvt 0.176410 0.026961\nvt 0.176410 0.026961\nvt 0.176410 0.032192\nvt 0.159236 0.032192\nvt 0.159236 0.026961\nvt 0.159236 0.032192\nvt 0.142431 0.032192\nvt 0.142431 0.032192\nvt 0.142431 0.026961\nvt 0.159236 0.026961\nvt 0.142431 0.026961\nvt 0.142431 0.032192\nvt 0.126000 0.032192\nvt 0.126000 0.032192\nvt 0.126000 0.026961\nvt 0.142431 0.026961\nvt 0.126000 0.037031\nvt 0.126000 0.032192\nvt 0.142431 0.032192\nvt 0.142431 0.032192\nvt 0.142431 0.037031\nvt 0.126000 0.037031\nvt 0.142431 0.037031\nvt 0.142431 0.032192\nvt 0.159236 0.032192\nvt 0.159236 0.032192\nvt 0.159236 0.037031\nvt 0.142431 0.037031\nvt 0.159236 0.037031\nvt 0.159236 0.032192\nvt 0.176410 0.032192\nvt 0.176410 0.032192\nvt 0.176410 0.037031\nvt 0.159236 0.037031\nvt 0.159236 0.041603\nvt 0.159236 0.037031\nvt 0.176410 0.037031\nvt 0.176410 0.037031\nvt 0.176410 0.041603\nvt 0.159236 0.041603\nvt 0.176410 0.041603\nvt 0.176410 0.037031\nvt 0.193698 0.037031\nvt 0.193698 0.037031\nvt 0.193698 0.041603\nvt 0.176410 0.041603\nvt 0.159236 0.037031\nvt 0.159236 0.041603\nvt 0.142431 0.041603\nvt 0.142431 0.041603\nvt 0.142431 0.037031\nvt 0.159236 0.037031\nvt 0.142431 0.037031\nvt 0.142431 0.041603\nvt 0.126000 0.041603\nvt 0.126000 0.041603\nvt 0.126000 0.037031\nvt 0.142431 0.037031\nvt 0.126000 0.045943\nvt 0.126000 0.041603\nvt 0.142431 0.041603\nvt 0.142431 0.041603\nvt 0.142431 0.045943\nvt 0.126000 0.045943\nvt 0.142431 0.045943\nvt 0.142431 0.041603\nvt 0.159236 0.041603\nvt 0.159236 0.041603\nvt 0.159236 0.045943\nvt 0.142431 0.045943\nvt 0.159236 0.045943\nvt 0.159236 0.041603\nvt 0.176410 0.041603\nvt 0.176410 0.041603\nvt 0.176410 0.045943\nvt 0.159236 0.045943\nvt 0.176410 0.045943\nvt 0.176410 0.041603\nvt 0.193698 0.041603\nvt 0.193698 0.041603\nvt 0.193698 0.045943\nvt 0.176410 0.045943\nvt 0.126000 0.032192\nvt 0.126000 0.037031\nvt 0.109512 0.037031\nvt 0.126000 0.037031\nvt 0.126000 0.041603\nvt 0.109512 0.041603\nvt 0.109512 0.041603\nvt 0.109512 0.037031\nvt 0.126000 0.037031\nvt 0.109512 0.037031\nvt 0.109512 0.041603\nvt 0.092609 0.041603\nvt 0.092609 0.041603\nvt 0.092609 0.037031\nvt 0.109512 0.037031\nvt 0.109512 0.032192\nvt 0.109512 0.037031\nvt 0.092609 0.037031\nvt 0.092609 0.037031\nvt 0.092609 0.032192\nvt 0.109512 0.032192\nvt 0.109512 0.026961\nvt 0.109512 0.032192\nvt 0.092609 0.032192\nvt 0.109512 0.032192\nvt 0.109512 0.026961\nvt 0.126000 0.026961\nvt 0.126000 0.021309\nvt 0.126000 0.026961\nvt 0.109512 0.026961\nvt 0.109512 0.026961\nvt 0.109512 0.021309\nvt 0.126000 0.021309\nvt 0.126000 0.015355\nvt 0.126000 0.021309\nvt 0.109512 0.021309\nvt 0.109512 0.021309\nvt 0.109512 0.015355\nvt 0.126000 0.015355\nvt 0.109512 0.015355\nvt 0.109512 0.021309\nvt 0.092609 0.021309\nvt 0.092609 0.021309\nvt 0.092609 0.015355\nvt 0.109512 0.015355\nvt 0.092609 0.015355\nvt 0.092609 0.021309\nvt 0.075532 0.021309\nvt 0.075532 0.021309\nvt 0.075532 0.015355\nvt 0.092609 0.015355\nvt 0.075532 0.015355\nvt 0.075532 0.021309\nvt 0.043738 0.021309\nvt 0.043738 0.021309\nvt 0.043738 0.015355\nvt 0.075532 0.015355\nvt 0.043738 0.026961\nvt 0.043738 0.021309\nvt 0.075532 0.021309\nvt 0.075532 0.021309\nvt 0.075532 0.026961\nvt 0.043738 0.026961\nvt 0.075532 0.026961\nvt 0.075532 0.021309\nvt 0.092609 0.021309\nvt 0.092609 0.021309\nvt 0.092609 0.026961\nvt 0.075532 0.026961\nvt 0.092609 0.026961\nvt 0.092609 0.021309\nvt 0.109512 0.021309\nvt 0.109512 0.021309\nvt 0.109512 0.026961\nvt 0.092609 0.026961\nvt 0.092609 0.032192\nvt 0.092609 0.026961\nvt 0.109512 0.026961\nvt 0.092609 0.026961\nvt 0.092609 0.032192\nvt 0.075532 0.032192\nvt 0.075532 0.032192\nvt 0.075532 0.026961\nvt 0.092609 0.026961\nvt 0.075532 0.026961\nvt 0.075532 0.032192\nvt 0.043738 0.032192\nvt 0.043738 0.032192\nvt 0.043738 0.026961\nvt 0.075532 0.026961\nvt 0.043738 0.037031\nvt 0.043738 0.032192\nvt 0.075532 0.032192\nvt 0.075532 0.032192\nvt 0.075532 0.037031\nvt 0.043738 0.037031\nvt 0.075532 0.037031\nvt 0.075532 0.032192\nvt 0.092609 0.032192\nvt 0.092609 0.032192\nvt 0.092609 0.037031\nvt 0.075532 0.037031\nvt 0.075532 0.041603\nvt 0.075532 0.037031\nvt 0.092609 0.037031\nvt 0.092609 0.037031\nvt 0.092609 0.041603\nvt 0.075532 0.041603\nvt 0.075532 0.037031\nvt 0.075532 0.041603\nvt 0.043738 0.041603\nvt 0.043738 0.041603\nvt 0.043738 0.037031\nvt 0.075532 0.037031\nvt 0.043738 0.045943\nvt 0.043738 0.041603\nvt 0.075532 0.041603\nvt 0.075532 0.041603\nvt 0.075532 0.045943\nvt 0.043738 0.045943\nvt 0.075532 0.045943\nvt 0.075532 0.041603\nvt 0.092609 0.041603\nvt 0.092609 0.041603\nvt 0.092609 0.045943\nvt 0.075532 0.045943\nvt 0.092609 0.045943\nvt 0.092609 0.041603\nvt 0.109512 0.041603\nvt 0.109512 0.041603\nvt 0.109512 0.045943\nvt 0.092609 0.045943\nvt 0.109512 0.045943\nvt 0.109512 0.041603\nvt 0.126000 0.041603\nvt 0.126000 0.041603\nvt 0.126000 0.045943\nvt 0.109512 0.045943\nvt 0.016646 0.032192\nvt 0.043738 0.032192\nvt 0.043738 0.037031\nvt 0.043738 0.026961\nvt 0.043738 0.032192\nvt 0.016646 0.032192\nvt 0.016646 0.032192\nvt 0.016646 0.026961\nvt 0.043738 0.026961\nvt 0.043738 0.026961\nvt 0.016646 0.026961\nvt 0.016646 0.021309\nvt 0.016646 0.021309\nvt 0.043738 0.021309\nvt 0.043738 0.026961\nvt 0.043738 0.015355\nvt 0.043738 0.021309\nvt 0.016646 0.021309\nvt 0.043738 0.041603\nvt 0.043738 0.045943\nvt 0.016646 0.045943\nvt 0.016646 0.045943\nvt 0.016646 0.041603\nvt 0.043738 0.041603\nvt 0.043738 0.037031\nvt 0.043738 0.041603\nvt 0.016646 0.041603\nvt 0.043738 0.037031\nvt 0.016646 0.037031\nvt 0.016646 0.032192\nvt 0.016646 0.041603\nvt 0.016646 0.037031\nvt 0.043738 0.037031\nvt 0.305833 0.087776\nvt 0.305805 0.093562\nvt 0.292052 0.093356\nvt 0.292052 0.093356\nvt 0.291618 0.087776\nvt 0.305833 0.087776\nvt 0.254612 0.087776\nvt 0.241579 0.093622\nvt 0.241579 0.093622\nvt 0.241256 0.087776\nvt 0.254612 0.087776\nvt 0.254612 0.026961\nvt 0.254612 0.032192\nvt 0.241256 0.032192\nvt 0.241256 0.037031\nvt 0.241256 0.032192\nvt 0.254612 0.032192\nvt 0.193698 0.087776\nvt 0.193659 0.093556\nvt 0.176817 0.093568\nvt 0.176817 0.093568\nvt 0.176410 0.087776\nvt 0.193698 0.087776\nvt 0.126000 0.087776\nvt 0.125967 0.093579\nvt 0.109894 0.093583\nvt 0.109894 0.093583\nvt 0.109512 0.087776\nvt 0.126000 0.087776\nvt 0.075532 0.087776\nvt 0.045397 0.095196\nvt 0.045397 0.095196\nvt 0.044558 0.089449\nvt 0.075532 0.087776\nvt 0.126000 0.026961\nvt 0.126000 0.032192\nvt 0.109512 0.032192\nvt 0.109512 0.037031\nvt 0.109512 0.032192\nvt 0.126000 0.032192\nvt 0.043738 0.087776\nvt 0.043704 0.093568\nvt 0.016774 0.093562\nvt 0.016774 0.093562\nvt 0.016646 0.087776\nvt 0.043738 0.087776\nvt 0.003468 0.087776\nvt 0.016646 0.087776\nvt 0.016619 0.093566\nvt 0.016619 0.093566\nvt 0.003468 0.087776\nvt 0.432945 0.064749\nvt 0.432945 0.070223\nvt 0.426995 0.070735\nvt 0.426302 0.076340\nvt 0.426995 0.070735\nvt 0.432945 0.070223\nvt 0.426995 0.070735\nvt 0.426302 0.076340\nvt 0.420164 0.076453\nvt 0.432945 0.070223\nvt 0.432945 0.076016\nvt 0.426302 0.076340\nvt 0.425557 0.082095\nvt 0.426302 0.076340\nvt 0.432945 0.076016\nvt 0.432945 0.076016\nvt 0.432945 0.081960\nvt 0.425557 0.082095\nvt 0.426302 0.076340\nvt 0.425557 0.082095\nvt 0.418869 0.082187\nvt 0.418869 0.082187\nvt 0.420164 0.076453\nvt 0.426302 0.076340\nvt 0.417613 0.087918\nvt 0.418869 0.082187\nvt 0.425557 0.082095\nvt 0.425557 0.082095\nvt 0.424850 0.087856\nvt 0.417613 0.087918\nvt 0.424850 0.087856\nvt 0.425557 0.082095\nvt 0.432945 0.081960\nvt 0.432945 0.081960\nvt 0.432945 0.087776\nvt 0.424850 0.087856\nvt 0.432775 0.003798\nvt 0.432945 0.009370\nvt 0.424554 0.009239\nvt 0.424554 0.009239\nvt 0.424622 0.003821\nvt 0.432775 0.003798\nvt 0.424740 0.014725\nvt 0.424554 0.009239\nvt 0.432945 0.009370\nvt 0.424554 0.009239\nvt 0.424740 0.014725\nvt 0.417664 0.014793\nvt 0.417664 0.014793\nvt 0.417183 0.009314\nvt 0.424554 0.009239\nvt 0.424354 0.003817\nvt 0.424554 0.009239\nvt 0.417183 0.009314\nvt 0.417183 0.009314\nvt 0.416902 0.003738\nvt 0.424354 0.003817\nvt 0.432945 0.009370\nvt 0.432945 0.015355\nvt 0.424740 0.014725\nvt 0.425123 0.020093\nvt 0.424740 0.014725\nvt 0.432945 0.015355\nvt 0.432945 0.015355\nvt 0.432945 0.021309\nvt 0.425123 0.020093\nvt 0.424740 0.014725\nvt 0.425123 0.020093\nvt 0.418406 0.020026\nvt 0.418406 0.020026\nvt 0.417664 0.014793\nvt 0.424740 0.014725\nvt 0.419389 0.025082\nvt 0.418406 0.020026\nvt 0.425123 0.020093\nvt 0.425123 0.020093\nvt 0.425640 0.025320\nvt 0.419389 0.025082\nvt 0.425640 0.025320\nvt 0.425123 0.020093\nvt 0.432945 0.021309\nvt 0.432945 0.021309\nvt 0.432945 0.026961\nvt 0.425640 0.025320\nvt 0.426276 0.030411\nvt 0.425640 0.025320\nvt 0.432945 0.026961\nvt 0.432945 0.026961\nvt 0.432945 0.032192\nvt 0.426276 0.030411\nvt 0.425640 0.025320\nvt 0.426276 0.030411\nvt 0.420556 0.030095\nvt 0.420556 0.030095\nvt 0.419389 0.025082\nvt 0.425640 0.025320\nvt 0.421760 0.035145\nvt 0.420556 0.030095\nvt 0.426276 0.030411\nvt 0.426276 0.030411\nvt 0.426935 0.035476\nvt 0.421760 0.035145\nvt 0.426935 0.035476\nvt 0.426276 0.030411\nvt 0.432945 0.032192\nvt 0.432945 0.032192\nvt 0.432945 0.037031\nvt 0.426935 0.035476\nvt 0.427540 0.040523\nvt 0.426935 0.035476\nvt 0.432945 0.037031\nvt 0.432945 0.037031\nvt 0.432945 0.041603\nvt 0.427540 0.040523\nvt 0.426935 0.035476\nvt 0.427540 0.040523\nvt 0.422833 0.040265\nvt 0.422833 0.040265\nvt 0.421760 0.035145\nvt 0.426935 0.035476\nvt 0.428003 0.045513\nvt 0.427540 0.040523\nvt 0.432945 0.041603\nvt 0.432945 0.041603\nvt 0.432945 0.045943\nvt 0.428003 0.045513\nvt 0.408860 0.046415\nvt 0.409036 0.051438\nvt 0.402130 0.051682\nvt 0.402130 0.051682\nvt 0.401983 0.046629\nvt 0.408860 0.046415\nvt 0.401983 0.046629\nvt 0.402130 0.051682\nvt 0.393395 0.051739\nvt 0.393395 0.051739\nvt 0.393272 0.046634\nvt 0.401983 0.046629\nvt 0.393272 0.046634\nvt 0.393395 0.051739\nvt 0.382578 0.051577\nvt 0.382578 0.051577\nvt 0.382476 0.046404\nvt 0.393272 0.046634\nvt 0.382476 0.046404\nvt 0.382578 0.051577\nvt 0.369377 0.051326\nvt 0.369377 0.051326\nvt 0.369291 0.046091\nvt 0.382476 0.046404\nvt 0.369357 0.056474\nvt 0.369377 0.051326\nvt 0.382578 0.051577\nvt 0.382578 0.051577\nvt 0.382486 0.056638\nvt 0.369357 0.056474\nvt 0.382486 0.056638\nvt 0.382578 0.051577\nvt 0.393395 0.051739\nvt 0.393395 0.051739\nvt 0.393219 0.056722\nvt 0.382486 0.056638\nvt 0.393219 0.056722\nvt 0.393395 0.051739\nvt 0.402130 0.051682\nvt 0.402130 0.051682\nvt 0.401874 0.056624\nvt 0.393219 0.056722\nvt 0.401874 0.056624\nvt 0.402130 0.051682\nvt 0.409036 0.051438\nvt 0.409036 0.051438\nvt 0.408729 0.056370\nvt 0.401874 0.056624\nvt 0.401217 0.061489\nvt 0.401874 0.056624\nvt 0.408729 0.056370\nvt 0.408729 0.056370\nvt 0.407954 0.061231\nvt 0.401217 0.061489\nvt 0.401874 0.056624\nvt 0.401217 0.061489\nvt 0.392737 0.061637\nvt 0.392737 0.061637\nvt 0.393219 0.056722\nvt 0.401874 0.056624\nvt 0.393219 0.056722\nvt 0.392737 0.061637\nvt 0.382194 0.061654\nvt 0.382194 0.061654\nvt 0.382486 0.056638\nvt 0.393219 0.056722\nvt 0.382486 0.056638\nvt 0.382194 0.061654\nvt 0.369227 0.061607\nvt 0.369227 0.061607\nvt 0.369357 0.056474\nvt 0.382486 0.056638\nvt 0.369031 0.066811\nvt 0.369227 0.061607\nvt 0.382194 0.061654\nvt 0.382194 0.061654\nvt 0.381758 0.066737\nvt 0.369031 0.066811\nvt 0.381758 0.066737\nvt 0.382194 0.061654\nvt 0.392737 0.061637\nvt 0.392737 0.061637\nvt 0.392024 0.066609\nvt 0.381758 0.066737\nvt 0.392024 0.066609\nvt 0.392737 0.061637\nvt 0.401217 0.061489\nvt 0.401217 0.061489\nvt 0.400252 0.066401\nvt 0.392024 0.066609\nvt 0.400252 0.066401\nvt 0.401217 0.061489\nvt 0.407954 0.061231\nvt 0.407954 0.061231\nvt 0.406812 0.066137\nvt 0.400252 0.066401\nvt 0.399120 0.071486\nvt 0.400252 0.066401\nvt 0.406812 0.066137\nvt 0.406812 0.066137\nvt 0.405455 0.071220\nvt 0.399120 0.071486\nvt 0.400252 0.066401\nvt 0.399120 0.071486\nvt 0.391210 0.071746\nvt 0.391210 0.071746\nvt 0.392024 0.066609\nvt 0.400252 0.066401\nvt 0.392024 0.066609\nvt 0.391210 0.071746\nvt 0.381289 0.071960\nvt 0.381289 0.071960\nvt 0.381758 0.066737\nvt 0.392024 0.066609\nvt 0.381758 0.066737\nvt 0.381289 0.071960\nvt 0.368866 0.072120\nvt 0.368866 0.072120\nvt 0.369031 0.066811\nvt 0.381758 0.066737\nvt 0.368783 0.077487\nvt 0.368866 0.072120\nvt 0.381289 0.071960\nvt 0.381289 0.071960\nvt 0.380886 0.077300\nvt 0.368783 0.077487\nvt 0.380886 0.077300\nvt 0.381289 0.071960\nvt 0.391210 0.071746\nvt 0.391210 0.071746\nvt 0.390435 0.077062\nvt 0.380886 0.077300\nvt 0.390435 0.077062\nvt 0.391210 0.071746\nvt 0.399120 0.071486\nvt 0.399120 0.071486\nvt 0.398000 0.076793\nvt 0.390435 0.077062\nvt 0.398000 0.076793\nvt 0.399120 0.071486\nvt 0.405455 0.071220\nvt 0.405455 0.071220\nvt 0.404076 0.076543\nvt 0.398000 0.076793\nvt 0.397050 0.082293\nvt 0.398000 0.076793\nvt 0.404076 0.076543\nvt 0.404076 0.076543\nvt 0.402844 0.082107\nvt 0.397050 0.082293\nvt 0.398000 0.076793\nvt 0.397050 0.082293\nvt 0.389843 0.082491\nvt 0.389843 0.082491\nvt 0.390435 0.077062\nvt 0.398000 0.076793\nvt 0.390435 0.077062\nvt 0.389843 0.082491\nvt 0.380674 0.082663\nvt 0.380674 0.082663\nvt 0.380886 0.077300\nvt 0.390435 0.077062\nvt 0.380886 0.077300\nvt 0.380674 0.082663\nvt 0.368906 0.082810\nvt 0.368906 0.082810\nvt 0.368783 0.077487\nvt 0.380886 0.077300\nvt 0.369345 0.088055\nvt 0.368906 0.082810\nvt 0.380674 0.082663\nvt 0.380674 0.082663\nvt 0.380626 0.088006\nvt 0.369345 0.088055\nvt 0.380626 0.088006\nvt 0.380674 0.082663\nvt 0.389843 0.082491\nvt 0.389843 0.082491\nvt 0.389360 0.087955\nvt 0.380626 0.088006\nvt 0.389360 0.087955\nvt 0.389843 0.082491\nvt 0.397050 0.082293\nvt 0.397050 0.082293\nvt 0.396215 0.087890\nvt 0.389360 0.087955\nvt 0.396215 0.087890\nvt 0.397050 0.082293\nvt 0.402844 0.082107\nvt 0.402844 0.082107\nvt 0.401743 0.087815\nvt 0.396215 0.087890\nvt 0.395404 0.093435\nvt 0.396215 0.087890\nvt 0.401743 0.087815\nvt 0.401743 0.087815\nvt 0.400925 0.093482\nvt 0.395404 0.093435\nvt 0.388769 0.093367\nvt 0.389360 0.087955\nvt 0.396215 0.087890\nvt 0.396215 0.087890\nvt 0.395559 0.093392\nvt 0.388769 0.093367\nvt 0.380385 0.093327\nvt 0.380626 0.088006\nvt 0.389360 0.087955\nvt 0.389360 0.087955\nvt 0.388966 0.093316\nvt 0.380385 0.093327\nvt 0.369687 0.093321\nvt 0.369345 0.088055\nvt 0.380626 0.088006\nvt 0.380626 0.088006\nvt 0.380656 0.093265\nvt 0.369687 0.093321\nvt 0.396831 0.015124\nvt 0.397652 0.020495\nvt 0.390246 0.020274\nvt 0.390246 0.020274\nvt 0.389740 0.014973\nvt 0.396831 0.015124\nvt 0.389740 0.014973\nvt 0.390246 0.020274\nvt 0.380776 0.019804\nvt 0.380776 0.019804\nvt 0.380621 0.014606\nvt 0.389740 0.014973\nvt 0.380621 0.014606\nvt 0.380776 0.019804\nvt 0.368662 0.019352\nvt 0.368674 0.024572\nvt 0.368662 0.019352\nvt 0.380776 0.019804\nvt 0.380776 0.019804\nvt 0.381074 0.025027\nvt 0.368674 0.024572\nvt 0.381074 0.025027\nvt 0.380776 0.019804\nvt 0.390246 0.020274\nvt 0.390246 0.020274\nvt 0.390885 0.025506\nvt 0.381074 0.025027\nvt 0.390885 0.025506\nvt 0.390246 0.020274\nvt 0.397652 0.020495\nvt 0.397652 0.020495\nvt 0.398617 0.025738\nvt 0.390885 0.025506\nvt 0.391585 0.030777\nvt 0.390885 0.025506\nvt 0.398617 0.025738\nvt 0.390885 0.025506\nvt 0.391585 0.030777\nvt 0.381440 0.030343\nvt 0.381440 0.030343\nvt 0.381074 0.025027\nvt 0.390885 0.025506\nvt 0.381074 0.025027\nvt 0.381440 0.030343\nvt 0.368768 0.029914\nvt 0.368768 0.029914\nvt 0.368674 0.024572\nvt 0.381074 0.025027\nvt 0.368937 0.035330\nvt 0.368768 0.029914\nvt 0.381440 0.030343\nvt 0.381440 0.030343\nvt 0.381842 0.035723\nvt 0.368937 0.035330\nvt 0.381842 0.035723\nvt 0.381440 0.030343\nvt 0.391585 0.030777\nvt 0.391585 0.030777\nvt 0.392283 0.036090\nvt 0.381842 0.035723\nvt 0.382200 0.041101\nvt 0.381842 0.035723\nvt 0.392283 0.036090\nvt 0.392283 0.036090\nvt 0.392865 0.041398\nvt 0.382200 0.041101\nvt 0.392865 0.041398\nvt 0.392283 0.036090\nvt 0.400638 0.036219\nvt 0.400638 0.036219\nvt 0.401445 0.041457\nvt 0.392865 0.041398\nvt 0.401445 0.041457\nvt 0.400638 0.036219\nvt 0.407210 0.036114\nvt 0.407210 0.036114\nvt 0.408207 0.041292\nvt 0.401445 0.041457\nvt 0.381842 0.035723\nvt 0.382200 0.041101\nvt 0.369117 0.040747\nvt 0.369117 0.040747\nvt 0.368937 0.035330\nvt 0.381842 0.035723\nvt 0.369291 0.046091\nvt 0.369117 0.040747\nvt 0.382200 0.041101\nvt 0.382200 0.041101\nvt 0.382476 0.046404\nvt 0.369291 0.046091\nvt 0.382476 0.046404\nvt 0.382200 0.041101\nvt 0.392865 0.041398\nvt 0.392865 0.041398\nvt 0.393272 0.046634\nvt 0.382476 0.046404\nvt 0.393272 0.046634\nvt 0.392865 0.041398\nvt 0.401445 0.041457\nvt 0.401445 0.041457\nvt 0.401983 0.046629\nvt 0.393272 0.046634\nvt 0.401983 0.046629\nvt 0.401445 0.041457\nvt 0.408207 0.041292\nvt 0.408207 0.041292\nvt 0.408860 0.046415\nvt 0.401983 0.046629\nvt 0.979845 0.512249\nvt 0.981530 0.512251\nvt 0.979845 0.512249\nvt 0.978503 0.522957\nvt 0.978230 0.525474\nvt 0.978230 0.525474\nvt 0.983139 0.519991\nvt 0.983139 0.519991\nvt 0.983362 0.521383\nvt 0.983139 0.519991\nvt 0.983139 0.519991\nvt 0.987422 0.519898\nvt 0.987422 0.519898\nvt 0.983453 0.518948\nvt 0.987423 0.518906\nvt 0.983371 0.517373\nvt 0.987423 0.518906\nvt 0.983371 0.517373\nvt 0.987422 0.517393\nvt 0.983371 0.517373\nvt 0.979851 0.516254\nvt 0.987422 0.517393\nvt 0.983420 0.516565\nvt 0.987421 0.516501\nvt 0.987421 0.516501\nvt 0.984129 0.513089\nvt 0.987421 0.513031\nvt 0.987421 0.513031\nvt 0.981530 0.512251\nvt 0.981530 0.512251\nvt 0.984329 0.511900\nvt 0.980798 0.513666\nvt 0.984129 0.513089\nvt 0.984129 0.513089\nvt 0.980798 0.513666\nvt 0.979851 0.516254\nvt 0.979851 0.516254\nvt 0.983420 0.516565\nvt 0.978658 0.520995\nvt 0.983453 0.518948\nvt 0.983371 0.517373\nvt 0.983453 0.518948\nvt 0.978658 0.520995\nvt 0.978503 0.522957\nvt 0.978503 0.522957\nvt 0.983139 0.519991\nvt 0.987421 0.513031\nvt 0.987421 0.513031\nvt 0.990713 0.513087\nvt 0.987421 0.516501\nvt 0.987421 0.516501\nvt 0.990713 0.513087\nvt 0.991424 0.516563\nvt 0.987422 0.517393\nvt 0.987422 0.517393\nvt 0.991424 0.516563\nvt 0.991472 0.517370\nvt 0.987423 0.518906\nvt 0.987423 0.518906\nvt 0.991472 0.517370\nvt 0.991392 0.518946\nvt 0.987422 0.519898\nvt 0.987422 0.519898\nvt 0.991392 0.518946\nvt 0.991706 0.519986\nvt 0.991706 0.519986\nvt 0.991706 0.519986\nvt 0.991484 0.521376\nvt 0.996626 0.525456\nvt 0.991706 0.519986\nvt 0.991392 0.518946\nvt 0.996350 0.522942\nvt 0.996350 0.522942\nvt 0.996626 0.525456\nvt 0.996626 0.525456\nvt 0.996350 0.522942\nvt 0.996350 0.522942\nvt 0.996350 0.522942\nvt 0.996192 0.520982\nvt 0.991392 0.518946\nvt 0.991472 0.517370\nvt 0.991392 0.518946\nvt 0.996192 0.520982\nvt 0.991472 0.517370\nvt 0.993312 0.512248\nvt 0.994996 0.512245\nvt 0.994996 0.512245\nvt 0.991472 0.517370\nvt 0.994992 0.516248\nvt 0.991424 0.516563\nvt 0.993312 0.512248\nvt 0.993312 0.512248\nvt 0.990512 0.511898\nvt 0.994044 0.513661\nvt 0.990713 0.513087\nvt 0.994992 0.516248\nvt 0.994992 0.516248\nvt 0.994044 0.513661\nvt 0.990713 0.513087\nvt 0.994181 0.510927\nvt 0.995139 0.510964\nvt 0.990968 0.510675\nvt 0.994181 0.510927\nvt 0.990968 0.510675\nvt 0.987420 0.510624\nvt 0.990968 0.510675\nvt 0.987420 0.510624\nvt 0.983873 0.510676\nvt 0.987420 0.510624\nvt 0.983873 0.510676\nvt 0.980660 0.510930\nvt 0.983873 0.510676\nvt 0.984211 0.506511\nvt 0.980660 0.510930\nvt 0.980660 0.510930\nvt 0.979702 0.510968\nvt 0.983371 0.517373\nvt 0.978230 0.525474\nvt 0.978230 0.525474\nvt 0.977153 0.525735\nvt 0.978230 0.525474\nvt 0.978788 0.526777\nvt 0.978788 0.526777\nvt 0.983362 0.521383\nvt 0.983634 0.522301\nvt 0.983634 0.522301\nvt 0.991484 0.521376\nvt 0.991212 0.522292\nvt 0.991484 0.521376\nvt 0.996626 0.525456\nvt 0.996073 0.526758\nvt 0.997703 0.525715\nvt 0.996626 0.525456\nvt 0.987422 0.522455\nvt 0.983634 0.522301\nvt 0.983106 0.529055\nvt 0.983634 0.522301\nvt 0.978788 0.526777\nvt 0.987422 0.522455\nvt 0.996073 0.526758\nvt 0.996073 0.526758\nvt 0.987422 0.522455\nvt 0.991212 0.522292\nvt 0.987422 0.522455\nvt 0.996073 0.526758\nvt 0.991212 0.522292\nvt 0.991770 0.529044\nvt 0.996073 0.526758\nvt 0.995629 0.528024\nvt 0.991770 0.529044\nvt 0.995528 0.528494\nvt 0.979240 0.528042\nvt 0.978090 0.528401\nvt 0.979240 0.528042\nvt 0.979240 0.528042\nvt 0.979240 0.528042\nvt 0.982999 0.532231\nvt 0.995629 0.528024\nvt 0.996779 0.528379\nvt 0.995629 0.528024\nvn 0.918321 -0.096837 -0.383809\nvn 0.918697 0.064610 -0.389642\nvn 0.880823 0.162211 -0.444791\nvn 0.880823 0.162211 -0.444791\nvn 0.865150 0.056308 -0.498343\nvn 0.918321 -0.096837 -0.383809\nvn 0.865150 0.056308 -0.498343\nvn 0.880823 0.162211 -0.444791\nvn 0.669933 0.501710 -0.547245\nvn 0.669933 0.501710 -0.547245\nvn 0.631444 0.422448 -0.650244\nvn 0.865150 0.056308 -0.498343\nvn 0.275681 0.683146 -0.676248\nvn 0.631444 0.422448 -0.650244\nvn 0.669933 0.501710 -0.547245\nvn 0.669933 0.501710 -0.547245\nvn 0.203533 0.823230 -0.529969\nvn 0.275681 0.683146 -0.676248\nvn 0.275681 0.683146 -0.676248\nvn 0.203533 0.823230 -0.529969\nvn -0.112677 0.876265 -0.468469\nvn -0.112677 0.876265 -0.468469\nvn 0.006439 0.765532 -0.643366\nvn 0.275681 0.683146 -0.676248\nvn -0.083592 0.770703 -0.631688\nvn 0.006439 0.765532 -0.643366\nvn -0.112677 0.876265 -0.468469\nvn -0.112677 0.876265 -0.468469\nvn -0.235818 0.860260 -0.452043\nvn -0.083592 0.770703 -0.631688\nvn 0.912733 -0.133246 -0.386218\nvn 0.918321 -0.096837 -0.383809\nvn 0.865150 0.056308 -0.498343\nvn 0.924253 -0.381768 0.002960\nvn 0.905300 -0.420711 0.058597\nvn 0.882162 -0.447352 0.147195\nvn 0.882162 -0.447352 0.147195\nvn 0.936696 -0.349292 -0.024385\nvn 0.924253 -0.381768 0.002960\nvn 0.854788 -0.464352 0.231764\nvn 0.882162 -0.447352 0.147195\nvn 0.905300 -0.420711 0.058597\nvn 0.905300 -0.420711 0.058597\nvn 0.897818 -0.424921 0.115607\nvn 0.854788 -0.464352 0.231764\nvn 0.882162 -0.447352 0.147195\nvn 0.854788 -0.464352 0.231764\nvn 0.783401 -0.503660 0.364157\nvn 0.783401 -0.503660 0.364157\nvn 0.899123 -0.393116 0.192453\nvn 0.882162 -0.447352 0.147195\nvn 0.936696 -0.349292 -0.024385\nvn 0.882162 -0.447352 0.147195\nvn 0.899123 -0.393116 0.192453\nvn 0.899123 -0.393116 0.192453\nvn 0.940190 -0.335889 0.056765\nvn 0.936696 -0.349292 -0.024385\nvn 0.870300 -0.394467 0.294912\nvn 0.854788 -0.464352 0.231764\nvn 0.897818 -0.424921 0.115607\nvn 0.783401 -0.503660 0.364157\nvn 0.854788 -0.464352 0.231764\nvn 0.870300 -0.394467 0.294912\nvn 0.897818 -0.424921 0.115607\nvn 0.931334 -0.333456 0.146372\nvn 0.870300 -0.394467 0.294912\nvn 0.870300 -0.394467 0.294912\nvn 0.677765 -0.484549 0.553034\nvn 0.783401 -0.503660 0.364157\nvn 0.929463 -0.123542 -0.347614\nvn 0.912733 -0.133246 -0.386218\nvn 0.911949 -0.145608 -0.383598\nvn 0.911949 -0.145608 -0.383598\nvn 0.927469 -0.136022 -0.348281\nvn 0.929463 -0.123542 -0.347614\nvn 0.944790 -0.062900 -0.321583\nvn 0.929463 -0.123542 -0.347614\nvn 0.927469 -0.136022 -0.348281\nvn 0.865150 0.056308 -0.498343\nvn 0.911949 -0.145608 -0.383598\nvn 0.912733 -0.133246 -0.386218\nvn 0.667159 0.236863 -0.706254\nvn 0.698034 0.223278 -0.680364\nvn 0.566737 0.360490 -0.740848\nvn 0.566737 0.360490 -0.740848\nvn 0.534851 0.340992 -0.773084\nvn 0.667159 0.236863 -0.706254\nvn 0.698034 0.223278 -0.680364\nvn 0.865150 0.056308 -0.498343\nvn 0.631444 0.422448 -0.650244\nvn 0.631444 0.422448 -0.650244\nvn 0.566737 0.360490 -0.740848\nvn 0.698034 0.223278 -0.680364\nvn 0.566737 0.360490 -0.740848\nvn 0.631444 0.422448 -0.650244\nvn 0.275681 0.683146 -0.676248\nvn 0.275681 0.683146 -0.676248\nvn 0.259288 0.567986 -0.781129\nvn 0.566737 0.360490 -0.740848\nvn 0.534851 0.340992 -0.773084\nvn 0.566737 0.360490 -0.740848\nvn 0.259288 0.567986 -0.781129\nvn 0.259288 0.567986 -0.781129\nvn 0.255415 0.492305 -0.832105\nvn 0.534851 0.340992 -0.773084\nvn 0.255415 0.492305 -0.832105\nvn 0.259288 0.567986 -0.781129\nvn 0.039645 0.630928 -0.774828\nvn 0.039645 0.630928 -0.774828\nvn 0.083867 0.543947 -0.834918\nvn 0.255415 0.492305 -0.832105\nvn 0.259288 0.567986 -0.781129\nvn 0.275681 0.683146 -0.676248\nvn 0.006439 0.765532 -0.643366\nvn 0.006439 0.765532 -0.643366\nvn 0.039645 0.630928 -0.774828\nvn 0.259288 0.567986 -0.781129\nvn 0.039645 0.630928 -0.774828\nvn 0.006439 0.765532 -0.643366\nvn -0.083592 0.770703 -0.631688\nvn -0.083592 0.770703 -0.631688\nvn -0.009003 0.611206 -0.791421\nvn 0.039645 0.630928 -0.774828\nvn 0.083867 0.543947 -0.834918\nvn 0.039645 0.630928 -0.774828\nvn -0.009003 0.611206 -0.791421\nvn -0.009003 0.611206 -0.791421\nvn 0.044101 0.540380 -0.840265\nvn 0.083867 0.543947 -0.834918\nvn 0.677675 0.220256 -0.701601\nvn 0.667159 0.236863 -0.706254\nvn 0.534851 0.340992 -0.773084\nvn 0.927469 -0.136022 -0.348281\nvn 0.944771 -0.069705 -0.320234\nvn 0.944790 -0.062900 -0.321583\nvn 0.956247 -0.048433 -0.288525\nvn 0.944790 -0.062900 -0.321583\nvn 0.944771 -0.069705 -0.320234\nvn 0.944771 -0.069705 -0.320234\nvn 0.957781 -0.057040 -0.281783\nvn 0.956247 -0.048433 -0.288525\nvn 0.975704 -0.033571 -0.216504\nvn 0.956247 -0.048433 -0.288525\nvn 0.957781 -0.057040 -0.281783\nvn 0.957781 -0.057040 -0.281783\nvn 0.976807 -0.035830 -0.211103\nvn 0.975704 -0.033571 -0.216504\nvn 0.707529 0.188213 -0.681160\nvn 0.684750 0.189980 -0.703580\nvn 0.543917 0.260483 -0.797686\nvn 0.543917 0.260483 -0.797686\nvn 0.558385 0.252244 -0.790303\nvn 0.707529 0.188213 -0.681160\nvn 0.231063 0.345785 -0.909419\nvn 0.558385 0.252244 -0.790303\nvn 0.543917 0.260483 -0.797686\nvn 0.543917 0.260483 -0.797686\nvn 0.240676 0.369742 -0.897422\nvn 0.231063 0.345785 -0.909419\nvn 0.231063 0.345785 -0.909419\nvn 0.240676 0.369742 -0.897422\nvn 0.044649 0.423633 -0.904733\nvn 0.044649 0.423633 -0.904733\nvn 0.010712 0.385297 -0.922730\nvn 0.231063 0.345785 -0.909419\nvn -0.046756 0.395016 -0.917483\nvn 0.010712 0.385297 -0.922730\nvn 0.044649 0.423633 -0.904733\nvn 0.044649 0.423633 -0.904733\nvn -0.008149 0.442921 -0.896524\nvn -0.046756 0.395016 -0.917483\nvn 0.986616 0.002900 -0.163032\nvn 0.975704 -0.033571 -0.216504\nvn 0.976807 -0.035830 -0.211103\nvn 0.895459 -0.255932 0.364214\nvn 0.889023 -0.206981 0.408407\nvn 0.802956 -0.255994 0.538264\nvn 0.802956 -0.255994 0.538264\nvn 0.812996 -0.302809 0.497338\nvn 0.895459 -0.255932 0.364214\nvn 0.935357 -0.275437 0.221906\nvn 0.895459 -0.255932 0.364214\nvn 0.812996 -0.302809 0.497338\nvn 0.574650 -0.369620 0.730177\nvn 0.812996 -0.302809 0.497338\nvn 0.802956 -0.255994 0.538264\nvn 0.802956 -0.255994 0.538264\nvn 0.550355 -0.333027 0.765638\nvn 0.574650 -0.369620 0.730177\nvn 0.976807 -0.035830 -0.211103\nvn 0.986846 0.005494 -0.161570\nvn 0.986616 0.002900 -0.163032\nvn 0.714416 0.220346 -0.664121\nvn 0.707529 0.188213 -0.681160\nvn 0.558385 0.252244 -0.790303\nvn 0.986616 0.002900 -0.163032\nvn 0.986846 0.005494 -0.161570\nvn 0.990661 0.021059 -0.134713\nvn 0.990661 0.021059 -0.134713\nvn 0.991485 0.020815 -0.128548\nvn 0.986616 0.002900 -0.163032\nvn 0.715484 0.234812 -0.657986\nvn 0.714416 0.220346 -0.664121\nvn 0.557682 0.279100 -0.781725\nvn 0.558385 0.252244 -0.790303\nvn 0.557682 0.279100 -0.781725\nvn 0.714416 0.220346 -0.664121\nvn 0.557682 0.279100 -0.781725\nvn 0.539053 0.294537 -0.789094\nvn 0.715484 0.234812 -0.657986\nvn 0.203414 0.359339 -0.910768\nvn 0.539053 0.294537 -0.789094\nvn 0.557682 0.279100 -0.781725\nvn 0.557682 0.279100 -0.781725\nvn 0.216196 0.353745 -0.910013\nvn 0.203414 0.359339 -0.910768\nvn 0.203414 0.359339 -0.910768\nvn 0.216196 0.353745 -0.910013\nvn -0.016206 0.378524 -0.925450\nvn 0.010712 0.385297 -0.922730\nvn -0.016206 0.378524 -0.925450\nvn 0.216196 0.353745 -0.910013\nvn -0.016206 0.378524 -0.925450\nvn -0.028414 0.377525 -0.925563\nvn 0.203414 0.359339 -0.910768\nvn -0.093328 0.379080 -0.920645\nvn -0.028414 0.377525 -0.925563\nvn -0.016206 0.378524 -0.925450\nvn -0.016206 0.378524 -0.925450\nvn -0.077823 0.383104 -0.920421\nvn -0.093328 0.379080 -0.920645\nvn 0.216196 0.353745 -0.910013\nvn 0.557682 0.279100 -0.781725\nvn 0.558385 0.252244 -0.790303\nvn 0.558385 0.252244 -0.790303\nvn 0.231063 0.345785 -0.909419\nvn 0.216196 0.353745 -0.910013\nvn 0.216196 0.353745 -0.910013\nvn 0.231063 0.345785 -0.909419\nvn 0.010712 0.385297 -0.922730\nvn -0.077823 0.383104 -0.920421\nvn -0.016206 0.378524 -0.925450\nvn 0.010712 0.385297 -0.922730\nvn 0.010712 0.385297 -0.922730\nvn -0.046756 0.395016 -0.917483\nvn -0.077823 0.383104 -0.920421\nvn 0.281568 -0.367905 0.886208\nvn 0.550355 -0.333027 0.765638\nvn 0.561705 -0.316849 0.764260\nvn 0.561705 -0.316849 0.764260\nvn 0.275373 -0.357926 0.892221\nvn 0.281568 -0.367905 0.886208\nvn 0.281568 -0.367905 0.886208\nvn 0.275373 -0.357926 0.892221\nvn 0.151101 -0.364399 0.918903\nvn 0.151101 -0.364399 0.918903\nvn 0.175060 -0.366539 0.913785\nvn 0.281568 -0.367905 0.886208\nvn 0.312978 -0.396845 0.862878\nvn 0.281568 -0.367905 0.886208\nvn 0.175060 -0.366539 0.913785\nvn 0.175060 -0.366539 0.913785\nvn 0.202950 -0.401200 0.893224\nvn 0.312978 -0.396845 0.862878\nvn 0.495364 -0.425383 0.757406\nvn 0.312978 -0.396845 0.862878\nvn 0.202950 -0.401200 0.893224\nvn 0.202950 -0.401200 0.893224\nvn 0.631791 -0.479008 0.609420\nvn 0.495364 -0.425383 0.757406\nvn 0.495364 -0.425383 0.757406\nvn 0.631791 -0.479008 0.609420\nvn 0.377675 -0.526699 0.761544\nvn 0.377675 -0.526699 0.761544\nvn 0.457852 -0.521912 0.719708\nvn 0.495364 -0.425383 0.757406\nvn 0.664046 -0.411068 0.624553\nvn 0.495364 -0.425383 0.757406\nvn 0.457852 -0.521912 0.719708\nvn 0.457852 -0.521912 0.719708\nvn 0.677765 -0.484549 0.553034\nvn 0.664046 -0.411068 0.624553\nvn 0.457852 -0.521912 0.719708\nvn 0.377675 -0.526699 0.761544\nvn 0.467919 -0.553434 0.689030\nvn 0.677765 -0.484549 0.553034\nvn 0.457852 -0.521912 0.719708\nvn 0.467919 -0.553434 0.689030\nvn 0.495364 -0.425383 0.757406\nvn 0.664046 -0.411068 0.624553\nvn 0.574650 -0.369620 0.730177\nvn 0.574650 -0.369620 0.730177\nvn 0.312978 -0.396845 0.862878\nvn 0.495364 -0.425383 0.757406\nvn 0.574650 -0.369620 0.730177\nvn 0.550355 -0.333027 0.765638\nvn 0.281568 -0.367905 0.886208\nvn 0.281568 -0.367905 0.886208\nvn 0.312978 -0.396845 0.862878\nvn 0.574650 -0.369620 0.730177\nvn 0.561705 -0.316849 0.764260\nvn 0.550355 -0.333027 0.765638\nvn 0.802956 -0.255994 0.538264\nvn 0.802956 -0.255994 0.538264\nvn 0.811437 -0.235331 0.534966\nvn 0.561705 -0.316849 0.764260\nvn 0.811437 -0.235331 0.534966\nvn 0.802956 -0.255994 0.538264\nvn 0.889023 -0.206981 0.408407\nvn 0.889023 -0.206981 0.408407\nvn 0.884105 -0.194833 0.424733\nvn 0.811437 -0.235331 0.534966\nvn 0.574650 -0.369620 0.730177\nvn 0.664046 -0.411068 0.624553\nvn 0.868471 -0.329754 0.370162\nvn 0.868471 -0.329754 0.370162\nvn 0.812996 -0.302809 0.497338\nvn 0.574650 -0.369620 0.730177\nvn 0.812996 -0.302809 0.497338\nvn 0.868471 -0.329754 0.370162\nvn 0.935357 -0.275437 0.221906\nvn 0.931334 -0.333456 0.146372\nvn 0.935357 -0.275437 0.221906\nvn 0.868471 -0.329754 0.370162\nvn 0.868471 -0.329754 0.370162\nvn 0.870300 -0.394467 0.294912\nvn 0.931334 -0.333456 0.146372\nvn 0.664046 -0.411068 0.624553\nvn 0.677765 -0.484549 0.553034\nvn 0.870300 -0.394467 0.294912\nvn 0.870300 -0.394467 0.294912\nvn 0.868471 -0.329754 0.370162\nvn 0.664046 -0.411068 0.624553\nvn 0.467919 -0.553434 0.689030\nvn 0.783401 -0.503660 0.364157\nvn 0.677765 -0.484549 0.553034\nvn 0.231395 -0.941416 0.245341\nvn 0.205791 -0.965380 0.160286\nvn 0.295729 -0.948406 0.114324\nvn 0.295729 -0.948406 0.114324\nvn 0.314102 -0.925824 0.210215\nvn 0.231395 -0.941416 0.245341\nvn 0.565154 -0.822186 0.067905\nvn 0.314102 -0.925824 0.210215\nvn 0.295729 -0.948406 0.114324\nvn 0.295729 -0.948406 0.114324\nvn 0.556635 -0.829931 -0.037050\nvn 0.565154 -0.822186 0.067905\nvn 0.565154 -0.822186 0.067905\nvn 0.556635 -0.829931 -0.037050\nvn 0.802624 -0.547758 -0.236127\nvn 0.802624 -0.547758 -0.236127\nvn 0.813722 -0.567130 -0.127355\nvn 0.565154 -0.822186 0.067905\nvn 0.929388 -0.196693 -0.312329\nvn 0.813722 -0.567130 -0.127355\nvn 0.802624 -0.547758 -0.236127\nvn 0.802624 -0.547758 -0.236127\nvn 0.903307 -0.171670 -0.393148\nvn 0.929388 -0.196693 -0.312329\nvn 0.929388 -0.196693 -0.312329\nvn 0.903307 -0.171670 -0.393148\nvn 0.863891 0.184217 -0.468783\nvn 0.863891 0.184217 -0.468783\nvn 0.887588 0.172739 -0.427024\nvn 0.929388 -0.196693 -0.312329\nvn 0.707802 0.527861 -0.469447\nvn 0.887588 0.172739 -0.427024\nvn 0.863891 0.184217 -0.468783\nvn 0.863891 0.184217 -0.468783\nvn 0.714582 0.507874 -0.481078\nvn 0.707802 0.527861 -0.469447\nvn 0.707802 0.527861 -0.469447\nvn 0.714582 0.507874 -0.481078\nvn 0.577425 0.685006 -0.444239\nvn 0.577425 0.685006 -0.444239\nvn 0.547882 0.708627 -0.444605\nvn 0.707802 0.527861 -0.469447\nvn 0.225935 -0.899862 0.373099\nvn 0.231395 -0.941416 0.245341\nvn 0.314102 -0.925824 0.210215\nvn 0.314102 -0.925824 0.210215\nvn 0.298720 -0.888375 0.348648\nvn 0.225935 -0.899862 0.373099\nvn 0.314102 -0.925824 0.210215\nvn 0.565154 -0.822186 0.067905\nvn 0.540182 -0.807984 0.235300\nvn 0.540182 -0.807984 0.235300\nvn 0.565154 -0.822186 0.067905\nvn 0.813722 -0.567130 -0.127355\nvn 0.540182 -0.807984 0.235300\nvn 0.298720 -0.888375 0.348648\nvn 0.314102 -0.925824 0.210215\nvn 0.813722 -0.567130 -0.127355\nvn 0.816879 -0.575379 0.040591\nvn 0.540182 -0.807984 0.235300\nvn 0.813722 -0.567130 -0.127355\nvn 0.929388 -0.196693 -0.312329\nvn 0.962698 -0.198863 -0.183482\nvn 0.962698 -0.198863 -0.183482\nvn 0.816879 -0.575379 0.040591\nvn 0.813722 -0.567130 -0.127355\nvn 0.962698 -0.198863 -0.183482\nvn 0.929388 -0.196693 -0.312329\nvn 0.887588 0.172739 -0.427024\nvn 0.887588 0.172739 -0.427024\nvn 0.919662 0.174722 -0.351702\nvn 0.962698 -0.198863 -0.183482\nvn 0.887588 0.172739 -0.427024\nvn 0.707802 0.527861 -0.469447\nvn 0.731310 0.504611 -0.458862\nvn 0.731310 0.504611 -0.458862\nvn 0.919662 0.174722 -0.351702\nvn 0.887588 0.172739 -0.427024\nvn 0.731310 0.504611 -0.458862\nvn 0.707802 0.527861 -0.469447\nvn 0.547882 0.708627 -0.444605\nvn 0.547882 0.708627 -0.444605\nvn 0.581425 0.626503 -0.519075\nvn 0.731310 0.504611 -0.458862\nvn 0.228986 -0.881180 0.413627\nvn 0.225935 -0.899862 0.373099\nvn 0.298720 -0.888375 0.348648\nvn 0.298720 -0.888375 0.348648\nvn 0.306563 -0.867073 0.392687\nvn 0.228986 -0.881180 0.413627\nvn 0.306563 -0.867073 0.392687\nvn 0.298720 -0.888375 0.348648\nvn 0.540182 -0.807984 0.235300\nvn 0.235517 -0.870897 0.431359\nvn 0.228986 -0.881180 0.413627\nvn 0.306563 -0.867073 0.392687\nvn 0.306563 -0.867073 0.392687\nvn 0.318412 -0.852385 0.414793\nvn 0.235517 -0.870897 0.431359\nvn 0.246020 -0.856599 0.453555\nvn 0.235517 -0.870897 0.431359\nvn 0.318412 -0.852385 0.414793\nvn 0.318412 -0.852385 0.414793\nvn 0.331806 -0.834885 0.439172\nvn 0.246020 -0.856599 0.453555\nvn 0.246020 -0.856599 0.453555\nvn 0.331806 -0.834885 0.439172\nvn 0.360034 -0.807322 0.467553\nvn 0.360034 -0.807322 0.467553\nvn 0.267321 -0.837304 0.476929\nvn 0.246020 -0.856599 0.453555\nvn 0.331806 -0.834885 0.439172\nvn 0.318412 -0.852385 0.414793\nvn 0.573121 -0.747110 0.336688\nvn 0.573121 -0.747110 0.336688\nvn 0.594859 -0.714312 0.368647\nvn 0.331806 -0.834885 0.439172\nvn 0.360034 -0.807322 0.467553\nvn 0.331806 -0.834885 0.439172\nvn 0.594859 -0.714312 0.368647\nvn 0.594859 -0.714312 0.368647\nvn 0.627933 -0.665594 0.403342\nvn 0.360034 -0.807322 0.467553\nvn 0.627933 -0.665594 0.403342\nvn 0.594859 -0.714312 0.368647\nvn 0.881443 -0.424760 0.206490\nvn 0.881443 -0.424760 0.206490\nvn 0.905235 -0.353566 0.235671\nvn 0.627933 -0.665594 0.403342\nvn 0.594859 -0.714312 0.368647\nvn 0.573121 -0.747110 0.336688\nvn 0.857076 -0.486112 0.170634\nvn 0.857076 -0.486112 0.170634\nvn 0.881443 -0.424760 0.206490\nvn 0.594859 -0.714312 0.368647\nvn 0.881443 -0.424760 0.206490\nvn 0.857076 -0.486112 0.170634\nvn 0.994010 -0.097325 -0.049716\nvn 0.994010 -0.097325 -0.049716\nvn 0.999704 0.006104 -0.023561\nvn 0.881443 -0.424760 0.206490\nvn 0.905235 -0.353566 0.235671\nvn 0.881443 -0.424760 0.206490\nvn 0.999704 0.006104 -0.023561\nvn 0.999704 0.006104 -0.023561\nvn 0.980390 -0.154242 0.122656\nvn 0.905235 -0.353566 0.235671\nvn 0.924695 0.339250 -0.172768\nvn 0.999704 0.006104 -0.023561\nvn 0.906516 0.368735 -0.205578\nvn 0.906516 0.368735 -0.205578\nvn 0.872460 0.430264 -0.231704\nvn 0.924695 0.339250 -0.172768\nvn 0.999704 0.006104 -0.023561\nvn 0.994010 -0.097325 -0.049716\nvn 0.933799 0.274186 -0.229871\nvn 0.933799 0.274186 -0.229871\nvn 0.906516 0.368735 -0.205578\nvn 0.999704 0.006104 -0.023561\nvn 0.906516 0.368735 -0.205578\nvn 0.933799 0.274186 -0.229871\nvn 0.776497 0.517940 -0.358874\nvn 0.776497 0.517940 -0.358874\nvn 0.771044 0.555333 -0.311604\nvn 0.906516 0.368735 -0.205578\nvn 0.906516 0.368735 -0.205578\nvn 0.771044 0.555333 -0.311604\nvn 0.872460 0.430264 -0.231704\nvn 0.771044 0.555333 -0.311604\nvn 0.778936 0.552455 -0.296736\nvn 0.872460 0.430264 -0.231704\nvn 0.778936 0.552455 -0.296736\nvn 0.815329 0.500093 -0.291797\nvn 0.872460 0.430264 -0.231704\nvn 0.835923 -0.535064 0.122230\nvn 0.857076 -0.486112 0.170634\nvn 0.573121 -0.747110 0.336688\nvn 0.573121 -0.747110 0.336688\nvn 0.551761 -0.777360 0.302112\nvn 0.835923 -0.535064 0.122230\nvn 0.551761 -0.777360 0.302112\nvn 0.573121 -0.747110 0.336688\nvn 0.318412 -0.852385 0.414793\nvn 0.318412 -0.852385 0.414793\nvn 0.306563 -0.867073 0.392687\nvn 0.551761 -0.777360 0.302112\nvn 0.540182 -0.807984 0.235300\nvn 0.551761 -0.777360 0.302112\nvn 0.306563 -0.867073 0.392687\nvn 0.551761 -0.777360 0.302112\nvn 0.540182 -0.807984 0.235300\nvn 0.816879 -0.575379 0.040591\nvn 0.816879 -0.575379 0.040591\nvn 0.835923 -0.535064 0.122230\nvn 0.551761 -0.777360 0.302112\nvn 0.835923 -0.535064 0.122230\nvn 0.816879 -0.575379 0.040591\nvn 0.962698 -0.198863 -0.183482\nvn 0.962698 -0.198863 -0.183482\nvn 0.980719 -0.164343 -0.105747\nvn 0.835923 -0.535064 0.122230\nvn 0.857076 -0.486112 0.170634\nvn 0.835923 -0.535064 0.122230\nvn 0.980719 -0.164343 -0.105747\nvn 0.980719 -0.164343 -0.105747\nvn 0.994010 -0.097325 -0.049716\nvn 0.857076 -0.486112 0.170634\nvn 0.994010 -0.097325 -0.049716\nvn 0.980719 -0.164343 -0.105747\nvn 0.933746 0.205000 -0.293415\nvn 0.933746 0.205000 -0.293415\nvn 0.933799 0.274186 -0.229871\nvn 0.994010 -0.097325 -0.049716\nvn 0.980719 -0.164343 -0.105747\nvn 0.962698 -0.198863 -0.183482\nvn 0.919662 0.174722 -0.351702\nvn 0.919662 0.174722 -0.351702\nvn 0.933746 0.205000 -0.293415\nvn 0.980719 -0.164343 -0.105747\nvn 0.933746 0.205000 -0.293415\nvn 0.919662 0.174722 -0.351702\nvn 0.731310 0.504611 -0.458862\nvn 0.731310 0.504611 -0.458862\nvn 0.755209 0.497166 -0.427184\nvn 0.933746 0.205000 -0.293415\nvn 0.933799 0.274186 -0.229871\nvn 0.933746 0.205000 -0.293415\nvn 0.755209 0.497166 -0.427184\nvn 0.755209 0.497166 -0.427184\nvn 0.776497 0.517940 -0.358874\nvn 0.933799 0.274186 -0.229871\nvn 0.776497 0.517940 -0.358874\nvn 0.755209 0.497166 -0.427184\nvn 0.628905 0.574277 -0.524103\nvn 0.628905 0.574277 -0.524103\nvn 0.668025 0.580070 -0.466113\nvn 0.776497 0.517940 -0.358874\nvn 0.581425 0.626503 -0.519075\nvn 0.628905 0.574277 -0.524103\nvn 0.755209 0.497166 -0.427184\nvn 0.755209 0.497166 -0.427184\nvn 0.731310 0.504611 -0.458862\nvn 0.581425 0.626503 -0.519075\nvn 0.776497 0.517940 -0.358874\nvn 0.668025 0.580070 -0.466113\nvn 0.682931 0.618963 -0.387931\nvn 0.682931 0.618963 -0.387931\nvn 0.771044 0.555333 -0.311604\nvn 0.776497 0.517940 -0.358874\nvn 0.778936 0.552455 -0.296736\nvn 0.771044 0.555333 -0.311604\nvn 0.682931 0.618963 -0.387931\nvn 0.137764 -0.990379 0.013093\nvn 0.085637 -0.995380 -0.043429\nvn 0.160900 -0.981937 -0.099555\nvn 0.160900 -0.981937 -0.099555\nvn 0.208356 -0.977138 -0.042300\nvn 0.137764 -0.990379 0.013093\nvn 0.434008 -0.877752 -0.202950\nvn 0.208356 -0.977138 -0.042300\nvn 0.160900 -0.981937 -0.099555\nvn 0.160900 -0.981937 -0.099555\nvn 0.394027 -0.879060 -0.268320\nvn 0.434008 -0.877752 -0.202950\nvn 0.434008 -0.877752 -0.202950\nvn 0.394027 -0.879060 -0.268320\nvn 0.645971 -0.614017 -0.453547\nvn 0.645971 -0.614017 -0.453547\nvn 0.692358 -0.609681 -0.385915\nvn 0.434008 -0.877752 -0.202950\nvn 0.836357 -0.230880 -0.497193\nvn 0.692358 -0.609681 -0.385915\nvn 0.645971 -0.614017 -0.453547\nvn 0.645971 -0.614017 -0.453547\nvn 0.792801 -0.237623 -0.561251\nvn 0.836357 -0.230880 -0.497193\nvn 0.836357 -0.230880 -0.497193\nvn 0.792801 -0.237623 -0.561251\nvn 0.813479 0.124242 -0.568169\nvn 0.813479 0.124242 -0.568169\nvn 0.840721 0.150248 -0.520205\nvn 0.836357 -0.230880 -0.497193\nvn 0.738199 0.481105 -0.472865\nvn 0.840721 0.150248 -0.520205\nvn 0.813479 0.124242 -0.568169\nvn 0.813479 0.124242 -0.568169\nvn 0.719152 0.488581 -0.494074\nvn 0.738199 0.481105 -0.472865\nvn 0.738199 0.481105 -0.472865\nvn 0.719152 0.488581 -0.494074\nvn 0.602698 0.680462 -0.416805\nvn 0.602698 0.680462 -0.416805\nvn 0.640199 0.644716 -0.417715\nvn 0.738199 0.481105 -0.472865\nvn 0.887008 0.014070 -0.461541\nvn 0.843087 0.166054 -0.511498\nvn 0.846546 0.137154 -0.514343\nvn 0.846546 0.137154 -0.514343\nvn 0.876662 -0.012207 -0.480951\nvn 0.887008 0.014070 -0.461541\nvn 0.703260 0.515108 -0.489990\nvn 0.625064 0.597627 -0.502133\nvn 0.493256 0.740678 -0.456175\nvn 0.493256 0.740678 -0.456175\nvn 0.707832 0.510831 -0.487880\nvn 0.703260 0.515108 -0.489990\nvn 0.177924 0.942417 -0.283183\nvn 0.374075 0.848621 -0.374045\nvn 0.493256 0.740678 -0.456175\nvn 0.493256 0.740678 -0.456175\nvn 0.328659 0.861431 -0.387195\nvn 0.177924 0.942417 -0.283183\nvn 0.766004 -0.239180 -0.596683\nvn 0.792801 -0.237623 -0.561251\nvn 0.645971 -0.614017 -0.453547\nvn 0.645971 -0.614017 -0.453547\nvn 0.620521 -0.614813 -0.486784\nvn 0.766004 -0.239180 -0.596683\nvn 0.620521 -0.614813 -0.486784\nvn 0.645971 -0.614017 -0.453547\nvn 0.394027 -0.879060 -0.268320\nvn 0.394027 -0.879060 -0.268320\nvn 0.372209 -0.880226 -0.294385\nvn 0.620521 -0.614813 -0.486784\nvn 0.372209 -0.880226 -0.294385\nvn 0.394027 -0.879060 -0.268320\nvn 0.160900 -0.981937 -0.099555\nvn 0.160900 -0.981937 -0.099555\nvn 0.143807 -0.982627 -0.117316\nvn 0.372209 -0.880226 -0.294385\nvn 0.143807 -0.982627 -0.117316\nvn 0.160900 -0.981937 -0.099555\nvn 0.085637 -0.995380 -0.043429\nvn 0.085637 -0.995380 -0.043429\nvn 0.069308 -0.995855 -0.058901\nvn 0.143807 -0.982627 -0.117316\nvn 0.136788 -0.983030 -0.122230\nvn 0.143807 -0.982627 -0.117316\nvn 0.069308 -0.995855 -0.058901\nvn 0.069308 -0.995855 -0.058901\nvn 0.063602 -0.995929 -0.063876\nvn 0.136788 -0.983030 -0.122230\nvn 0.362047 -0.881846 -0.302108\nvn 0.372209 -0.880226 -0.294385\nvn 0.143807 -0.982627 -0.117316\nvn 0.143807 -0.982627 -0.117316\nvn 0.136788 -0.983030 -0.122230\nvn 0.362047 -0.881846 -0.302108\nvn 0.372209 -0.880226 -0.294385\nvn 0.362047 -0.881846 -0.302108\nvn 0.609526 -0.616942 -0.497857\nvn 0.609526 -0.616942 -0.497857\nvn 0.620521 -0.614813 -0.486784\nvn 0.372209 -0.880226 -0.294385\nvn 0.755315 -0.241863 -0.609099\nvn 0.766004 -0.239180 -0.596683\nvn 0.620521 -0.614813 -0.486784\nvn 0.620521 -0.614813 -0.486784\nvn 0.609526 -0.616942 -0.497857\nvn 0.755315 -0.241863 -0.609099\nvn 0.766004 -0.239180 -0.596683\nvn 0.755315 -0.241863 -0.609099\nvn 0.770611 0.102362 -0.629032\nvn 0.770611 0.102362 -0.629032\nvn 0.788685 0.102943 -0.606118\nvn 0.766004 -0.239180 -0.596683\nvn 0.792801 -0.237623 -0.561251\nvn 0.766004 -0.239180 -0.596683\nvn 0.788685 0.102943 -0.606118\nvn 0.788685 0.102943 -0.606118\nvn 0.813479 0.124242 -0.568169\nvn 0.792801 -0.237623 -0.561251\nvn 0.788685 0.102943 -0.606118\nvn 0.770611 0.102362 -0.629032\nvn 0.733775 0.287217 -0.615696\nvn 0.733775 0.287217 -0.615696\nvn 0.714025 0.450950 -0.535549\nvn 0.788685 0.102943 -0.606118\nvn 0.813479 0.124242 -0.568169\nvn 0.788685 0.102943 -0.606118\nvn 0.714025 0.450950 -0.535549\nvn 0.714025 0.450950 -0.535549\nvn 0.719152 0.488581 -0.494074\nvn 0.813479 0.124242 -0.568169\nvn 0.719152 0.488581 -0.494074\nvn 0.714025 0.450950 -0.535549\nvn 0.699070 0.508631 -0.502588\nvn 0.699070 0.508631 -0.502588\nvn 0.602698 0.680462 -0.416805\nvn 0.719152 0.488581 -0.494074\nvn 0.843087 0.166054 -0.511498\nvn 0.699070 0.508631 -0.502588\nvn 0.707618 0.481624 -0.517026\nvn 0.707618 0.481624 -0.517026\nvn 0.846546 0.137154 -0.514343\nvn 0.843087 0.166054 -0.511498\nvn 0.623074 0.566248 -0.539575\nvn 0.707618 0.481624 -0.517026\nvn 0.699070 0.508631 -0.502588\nvn 0.699070 0.508631 -0.502588\nvn 0.645385 0.486167 -0.589169\nvn 0.623074 0.566248 -0.539575\nvn 0.645385 0.486167 -0.589169\nvn 0.699070 0.508631 -0.502588\nvn 0.714025 0.450950 -0.535549\nvn 0.714025 0.450950 -0.535549\nvn 0.733775 0.287217 -0.615696\nvn 0.645385 0.486167 -0.589169\nvn 0.645385 0.486167 -0.589169\nvn 0.733775 0.287217 -0.615696\nvn 0.770611 0.102362 -0.629032\nvn 0.625064 0.597627 -0.502133\nvn 0.707618 0.481624 -0.517026\nvn 0.436758 0.786996 -0.435752\nvn 0.436758 0.786996 -0.435752\nvn 0.493256 0.740678 -0.456175\nvn 0.625064 0.597627 -0.502133\nvn 0.707618 0.481624 -0.517026\nvn 0.623074 0.566248 -0.539575\nvn 0.373649 0.807697 -0.456083\nvn 0.373649 0.807697 -0.456083\nvn 0.436758 0.786996 -0.435752\nvn 0.707618 0.481624 -0.517026\nvn 0.436758 0.786996 -0.435752\nvn 0.373649 0.807697 -0.456083\nvn 0.092626 0.956229 -0.277573\nvn 0.092626 0.956229 -0.277573\nvn 0.104648 0.958072 -0.266733\nvn 0.436758 0.786996 -0.435752\nvn 0.493256 0.740678 -0.456175\nvn 0.436758 0.786996 -0.435752\nvn 0.104648 0.958072 -0.266733\nvn 0.104648 0.958072 -0.266733\nvn 0.328659 0.861431 -0.387195\nvn 0.493256 0.740678 -0.456175\nvn 0.623074 0.566248 -0.539575\nvn 0.645385 0.486167 -0.589169\nvn 0.411977 0.731573 -0.543209\nvn 0.411977 0.731573 -0.543209\nvn 0.373649 0.807697 -0.456083\nvn 0.623074 0.566248 -0.539575\nvn 0.092626 0.956229 -0.277573\nvn 0.373649 0.807697 -0.456083\nvn 0.411977 0.731573 -0.543209\nvn 0.411977 0.731573 -0.543209\nvn 0.119422 0.921256 -0.370169\nvn 0.092626 0.956229 -0.277573\nvn 0.092626 0.956229 -0.277573\nvn 0.119422 0.921256 -0.370169\nvn -0.159216 0.976840 -0.142949\nvn -0.159216 0.976840 -0.142949\nvn -0.154732 0.983387 -0.094914\nvn 0.092626 0.956229 -0.277573\nvn 0.104648 0.958072 -0.266733\nvn 0.092626 0.956229 -0.277573\nvn -0.154732 0.983387 -0.094914\nvn -0.225839 0.973182 -0.043733\nvn -0.154732 0.983387 -0.094914\nvn -0.159216 0.976840 -0.142949\nvn -0.159216 0.976840 -0.142949\nvn -0.266860 0.962941 -0.039126\nvn -0.225839 0.973182 -0.043733\nvn -0.087834 0.983388 -0.158852\nvn 0.104648 0.958072 -0.266733\nvn -0.158576 0.982184 -0.100834\nvn -0.154732 0.983387 -0.094914\nvn -0.158576 0.982184 -0.100834\nvn 0.104648 0.958072 -0.266733\nvn -0.158576 0.982184 -0.100834\nvn -0.154732 0.983387 -0.094914\nvn -0.225839 0.973182 -0.043733\nvn -0.158576 0.982184 -0.100834\nvn -0.159036 0.979087 -0.126869\nvn -0.087834 0.983388 -0.158852\nvn 0.177924 0.942417 -0.283183\nvn -0.087834 0.983388 -0.158852\nvn -0.159036 0.979087 -0.126869\nvn -0.159036 0.979087 -0.126869\nvn -0.099219 0.983917 -0.148538\nvn 0.177924 0.942417 -0.283183\nvn 0.165841 0.952108 -0.256880\nvn 0.177924 0.942417 -0.283183\nvn -0.099219 0.983917 -0.148538\nvn 0.374075 0.848621 -0.374045\nvn 0.177924 0.942417 -0.283183\nvn 0.165841 0.952108 -0.256880\nvn 0.165841 0.952108 -0.256880\nvn 0.364184 0.864513 -0.346391\nvn 0.374075 0.848621 -0.374045\nvn 0.707832 0.510831 -0.487880\nvn 0.741232 0.483158 -0.465975\nvn 0.739664 0.486294 -0.465205\nvn 0.739664 0.486294 -0.465205\nvn 0.703260 0.515108 -0.489990\nvn 0.707832 0.510831 -0.487880\nvn 0.876662 -0.012207 -0.480951\nvn 0.899442 -0.037569 -0.435423\nvn 0.900295 -0.026948 -0.434445\nvn 0.900295 -0.026948 -0.434445\nvn 0.887008 0.014070 -0.461541\nvn 0.876662 -0.012207 -0.480951\nvn 0.738199 0.481105 -0.472865\nvn 0.640199 0.644716 -0.417715\nvn 0.627416 0.663155 -0.408135\nvn 0.627416 0.663155 -0.408135\nvn 0.725478 0.516939 -0.454374\nvn 0.738199 0.481105 -0.472865\nvn 0.840721 0.150248 -0.520205\nvn 0.738199 0.481105 -0.472865\nvn 0.725478 0.516939 -0.454374\nvn 0.725478 0.516939 -0.454374\nvn 0.847429 0.205487 -0.489530\nvn 0.840721 0.150248 -0.520205\nvn 0.840721 0.150248 -0.520205\nvn 0.847429 0.205487 -0.489530\nvn 0.869148 -0.156226 -0.469228\nvn 0.869148 -0.156226 -0.469228\nvn 0.836357 -0.230880 -0.497193\nvn 0.840721 0.150248 -0.520205\nvn 0.692358 -0.609681 -0.385915\nvn 0.836357 -0.230880 -0.497193\nvn 0.869148 -0.156226 -0.469228\nvn 0.869148 -0.156226 -0.469228\nvn 0.762140 -0.529884 -0.371975\nvn 0.692358 -0.609681 -0.385915\nvn 0.692358 -0.609681 -0.385915\nvn 0.762140 -0.529884 -0.371975\nvn 0.509765 -0.841266 -0.180034\nvn 0.509765 -0.841266 -0.180034\nvn 0.434008 -0.877752 -0.202950\nvn 0.692358 -0.609681 -0.385915\nvn 0.208356 -0.977138 -0.042300\nvn 0.434008 -0.877752 -0.202950\nvn 0.509765 -0.841266 -0.180034\nvn 0.509765 -0.841266 -0.180034\nvn 0.253764 -0.967263 -0.002258\nvn 0.208356 -0.977138 -0.042300\nvn 0.137764 -0.990379 0.013093\nvn 0.208356 -0.977138 -0.042300\nvn 0.253764 -0.967263 -0.002258\nvn 0.253764 -0.967263 -0.002258\nvn 0.163950 -0.984185 0.067081\nvn 0.137764 -0.990379 0.013093\nvn 0.067448 -0.987153 -0.144845\nvn 0.069247 -0.986549 -0.148077\nvn 0.023164 -0.996991 -0.073978\nvn 0.023164 -0.996991 -0.073978\nvn 0.024324 -0.996993 -0.073581\nvn 0.067448 -0.987153 -0.144845\nvn 0.230939 -0.896380 -0.378377\nvn 0.069247 -0.986549 -0.148077\nvn 0.067448 -0.987153 -0.144845\nvn 0.067448 -0.987153 -0.144845\nvn 0.230204 -0.897073 -0.377183\nvn 0.230939 -0.896380 -0.378377\nvn 0.230939 -0.896380 -0.378377\nvn 0.230204 -0.897073 -0.377183\nvn 0.422238 -0.637462 -0.644482\nvn 0.422238 -0.637462 -0.644482\nvn 0.420282 -0.641944 -0.641303\nvn 0.230939 -0.896380 -0.378377\nvn 0.536530 -0.265274 -0.801102\nvn 0.420282 -0.641944 -0.641303\nvn 0.422238 -0.637462 -0.644482\nvn 0.422238 -0.637462 -0.644482\nvn 0.538028 -0.252793 -0.804128\nvn 0.536530 -0.265274 -0.801102\nvn 0.536530 -0.265274 -0.801102\nvn 0.538028 -0.252793 -0.804128\nvn 0.555849 0.159159 -0.815905\nvn 0.555849 0.159159 -0.815905\nvn 0.556756 0.144232 -0.818059\nvn 0.536530 -0.265274 -0.801102\nvn 0.492188 0.500734 -0.712051\nvn 0.556756 0.144232 -0.818059\nvn 0.555849 0.159159 -0.815905\nvn 0.555849 0.159159 -0.815905\nvn 0.487366 0.514254 -0.705703\nvn 0.492188 0.500734 -0.712051\nvn 0.492188 0.500734 -0.712051\nvn 0.487366 0.514254 -0.705703\nvn 0.366510 0.773611 -0.516911\nvn 0.366510 0.773611 -0.516911\nvn 0.371632 0.766124 -0.524351\nvn 0.492188 0.500734 -0.712051\nvn 0.194099 0.946446 -0.258005\nvn 0.371632 0.766124 -0.524351\nvn 0.366510 0.773611 -0.516911\nvn 0.366510 0.773611 -0.516911\nvn 0.188730 0.949727 -0.249800\nvn 0.194099 0.946446 -0.258005\nvn 0.194099 0.946446 -0.258005\nvn 0.188730 0.949727 -0.249800\nvn -0.004273 0.999393 0.034578\nvn -0.004273 0.999393 0.034578\nvn -0.003449 0.999465 0.032533\nvn 0.194099 0.946446 -0.258005\nvn -0.077121 0.986215 0.146399\nvn -0.003449 0.999465 0.032533\nvn -0.004273 0.999393 0.034578\nvn -0.004273 0.999393 0.034578\nvn -0.074803 0.986357 0.146646\nvn -0.077121 0.986215 0.146399\nvn 0.918697 0.064610 -0.389642\nvn 0.912162 -0.024781 -0.409081\nvn 0.866241 0.226304 -0.445435\nvn 0.866241 0.226304 -0.445435\nvn 0.880823 0.162211 -0.444791\nvn 0.918697 0.064610 -0.389642\nvn 0.880823 0.162211 -0.444791\nvn 0.866241 0.226304 -0.445435\nvn 0.763407 0.451654 -0.461756\nvn 0.763407 0.451654 -0.461756\nvn 0.669933 0.501710 -0.547245\nvn 0.880823 0.162211 -0.444791\nvn 0.203533 0.823230 -0.529969\nvn 0.669933 0.501710 -0.547245\nvn 0.302140 0.813093 -0.497585\nvn 0.302140 0.813093 -0.497585\nvn 0.098181 0.886649 -0.451901\nvn 0.203533 0.823230 -0.529969\nvn 0.203533 0.823230 -0.529969\nvn 0.098181 0.886649 -0.451901\nvn -0.195812 0.905200 -0.377187\nvn -0.195812 0.905200 -0.377187\nvn -0.112677 0.876265 -0.468469\nvn 0.203533 0.823230 -0.529969\nvn -0.235818 0.860260 -0.452043\nvn -0.112677 0.876265 -0.468469\nvn -0.195812 0.905200 -0.377187\nvn -0.195812 0.905200 -0.377187\nvn -0.311047 0.875398 -0.370039\nvn -0.235818 0.860260 -0.452043\nvn -0.099219 0.983917 -0.148538\nvn -0.069034 0.987657 -0.140601\nvn 0.165841 0.952108 -0.256880\nvn -0.125862 0.985562 -0.113257\nvn -0.069034 0.987657 -0.140601\nvn -0.099219 0.983917 -0.148538\nvn -0.099219 0.983917 -0.148538\nvn -0.173408 0.978281 -0.113561\nvn -0.125862 0.985562 -0.113257\nvn -0.173408 0.978281 -0.113561\nvn -0.099219 0.983917 -0.148538\nvn -0.159036 0.979087 -0.126869\nvn -0.159036 0.979087 -0.126869\nvn -0.248790 0.964089 -0.092930\nvn -0.173408 0.978281 -0.113561\nvn -0.228676 0.971774 -0.057985\nvn -0.248790 0.964089 -0.092930\nvn -0.159036 0.979087 -0.126869\nvn -0.159036 0.979087 -0.126869\nvn -0.158576 0.982184 -0.100834\nvn -0.228676 0.971774 -0.057985\nvn -0.225839 0.973182 -0.043733\nvn -0.228676 0.971774 -0.057985\nvn -0.158576 0.982184 -0.100834\nvn -0.130468 -0.970138 -0.204477\nvn -0.050020 -0.988194 -0.144811\nvn 0.002228 -0.975342 -0.220686\nvn 0.002228 -0.975342 -0.220686\nvn -0.072361 -0.956502 -0.282608\nvn -0.130468 -0.970138 -0.204477\nvn 0.436332 -0.870466 0.227825\nvn 0.485014 -0.861867 0.148141\nvn 0.477837 -0.864604 0.155342\nvn 0.477837 -0.864604 0.155342\nvn 0.485014 -0.861867 0.148141\nvn 0.628337 -0.775899 -0.056339\nvn 0.081334 -0.862535 -0.499417\nvn -0.072361 -0.956502 -0.282608\nvn 0.002228 -0.975342 -0.220686\nvn 0.002228 -0.975342 -0.220686\nvn 0.156501 -0.880685 -0.447103\nvn 0.081334 -0.862535 -0.499417\nvn 0.628337 -0.775899 -0.056339\nvn 0.617617 -0.785228 -0.044344\nvn 0.477837 -0.864604 0.155342\nvn 0.754741 -0.475062 0.452417\nvn 0.843558 -0.423061 0.330801\nvn 0.831748 -0.429257 0.352042\nvn 0.931831 -0.296154 0.209725\nvn 0.831748 -0.429257 0.352042\nvn 0.843558 -0.423061 0.330801\nvn 0.843558 -0.423061 0.330801\nvn 0.936676 -0.287769 0.199567\nvn 0.931831 -0.296154 0.209725\nvn 0.784242 -0.553275 -0.280804\nvn 0.617617 -0.785228 -0.044344\nvn 0.628337 -0.775899 -0.056339\nvn 0.986808 -0.097203 0.129463\nvn 0.931831 -0.296154 0.209725\nvn 0.936676 -0.287769 0.199567\nvn 0.936676 -0.287769 0.199567\nvn 0.987361 -0.092870 0.128425\nvn 0.986808 -0.097203 0.129463\nvn 0.986412 0.116431 0.115912\nvn 0.986808 -0.097203 0.129463\nvn 0.987361 -0.092870 0.128425\nvn 0.987361 -0.092870 0.128425\nvn 0.986686 0.112799 0.117163\nvn 0.986412 0.116431 0.115912\nvn 0.940234 0.297959 0.164864\nvn 0.986412 0.116431 0.115912\nvn 0.986686 0.112799 0.117163\nvn 0.986686 0.112799 0.117163\nvn 0.941945 0.292435 0.164987\nvn 0.940234 0.297959 0.164864\nvn 0.870148 0.423736 0.251574\nvn 0.940234 0.297959 0.164864\nvn 0.941945 0.292435 0.164987\nvn 0.941945 0.292435 0.164987\nvn 0.870911 0.420776 0.253894\nvn 0.870148 0.423736 0.251574\nvn 0.782674 0.490938 0.382624\nvn 0.870148 0.423736 0.251574\nvn 0.870911 0.420776 0.253894\nvn 0.870911 0.420776 0.253894\nvn 0.786217 0.484012 0.384182\nvn 0.782674 0.490938 0.382624\nvn 0.696825 0.501103 0.513158\nvn 0.782674 0.490938 0.382624\nvn 0.786217 0.484012 0.384182\nvn 0.786217 0.484012 0.384182\nvn 0.707712 0.492704 0.506346\nvn 0.696825 0.501103 0.513158\nvn 0.673410 0.486205 0.556887\nvn 0.696825 0.501103 0.513158\nvn 0.707712 0.492704 0.506346\nvn 0.707712 0.492704 0.506346\nvn 0.681361 0.478992 0.553457\nvn 0.673410 0.486205 0.556887\nvn 0.343069 0.860009 0.377740\nvn 0.345781 0.856884 0.382343\nvn 0.402554 0.871673 0.279530\nvn 0.402554 0.871673 0.279530\nvn 0.404589 0.871774 0.276257\nvn 0.343069 0.860009 0.377740\nvn -0.225140 0.974322 -0.002960\nvn -0.144814 0.982657 -0.115820\nvn -0.066379 0.996450 -0.051791\nvn -0.066379 0.996450 -0.051791\nvn -0.144690 0.987621 0.060580\nvn -0.225140 0.974322 -0.002960\nvn 0.402554 0.871673 0.279530\nvn 0.552574 0.832371 0.042665\nvn 0.549619 0.833936 0.049685\nvn 0.549619 0.833936 0.049685\nvn 0.404589 0.871774 0.276257\nvn 0.402554 0.871673 0.279530\nvn 0.549619 0.833936 0.049685\nvn 0.552574 0.832371 0.042665\nvn 0.698547 0.691284 -0.184822\nvn -0.066379 0.996450 -0.051791\nvn -0.144814 0.982657 -0.115820\nvn 0.042665 0.923440 -0.381364\nvn 0.042665 0.923440 -0.381364\nvn 0.119117 0.938225 -0.324878\nvn -0.066379 0.996450 -0.051791\nvn 0.698547 0.691284 -0.184822\nvn 0.694589 0.696421 -0.180400\nvn 0.549619 0.833936 0.049685\nvn 0.042665 0.923440 -0.381364\nvn 0.216841 0.747393 -0.628000\nvn 0.288497 0.762643 -0.578918\nvn 0.288497 0.762643 -0.578918\nvn 0.119117 0.938225 -0.324878\nvn 0.042665 0.923440 -0.381364\nvn 0.288497 0.762643 -0.578918\nvn 0.216841 0.747393 -0.628000\nvn 0.330831 0.485138 -0.809439\nvn 0.330831 0.485138 -0.809439\nvn 0.403924 0.503661 -0.763656\nvn 0.288497 0.762643 -0.578918\nvn 0.813673 0.472896 -0.338092\nvn 0.694589 0.696421 -0.180400\nvn 0.698547 0.691284 -0.184822\nvn 0.698547 0.691284 -0.184822\nvn 0.815328 0.468535 -0.340170\nvn 0.813673 0.472896 -0.338092\nvn 0.813673 0.472896 -0.338092\nvn 0.815328 0.468535 -0.340170\nvn 0.889371 0.150950 -0.431547\nvn 0.889371 0.150950 -0.431547\nvn 0.888693 0.156595 -0.430933\nvn 0.813673 0.472896 -0.338092\nvn 0.330831 0.485138 -0.809439\nvn 0.388720 0.130133 -0.912120\nvn 0.466247 0.145456 -0.872615\nvn 0.466247 0.145456 -0.872615\nvn 0.403924 0.503661 -0.763656\nvn 0.330831 0.485138 -0.809439\nvn 0.885032 -0.208020 -0.416468\nvn 0.888693 0.156595 -0.430933\nvn 0.889371 0.150950 -0.431547\nvn 0.466247 0.145456 -0.872615\nvn 0.388720 0.130133 -0.912120\nvn 0.363724 -0.267468 -0.892281\nvn 0.363724 -0.267468 -0.892281\nvn 0.446587 -0.262526 -0.855360\nvn 0.466247 0.145456 -0.872615\nvn 0.889371 0.150950 -0.431547\nvn 0.883264 -0.218794 -0.414698\nvn 0.885032 -0.208020 -0.416468\nvn 0.885032 -0.208020 -0.416468\nvn 0.883264 -0.218794 -0.414698\nvn 0.784242 -0.553275 -0.280804\nvn 0.784242 -0.553275 -0.280804\nvn 0.788121 -0.543725 -0.288495\nvn 0.885032 -0.208020 -0.416468\nvn 0.363724 -0.267468 -0.892281\nvn 0.256728 -0.619022 -0.742228\nvn 0.333975 -0.628457 -0.702497\nvn 0.333975 -0.628457 -0.702497\nvn 0.446587 -0.262526 -0.855360\nvn 0.363724 -0.267468 -0.892281\nvn 0.628337 -0.775899 -0.056339\nvn 0.788121 -0.543725 -0.288495\nvn 0.784242 -0.553275 -0.280804\nvn 0.333975 -0.628457 -0.702497\nvn 0.256728 -0.619022 -0.742228\nvn 0.081334 -0.862535 -0.499417\nvn 0.081334 -0.862535 -0.499417\nvn 0.156501 -0.880685 -0.447103\nvn 0.333975 -0.628457 -0.702497\nvn -0.655621 -0.468658 -0.592048\nvn -0.580945 -0.430239 -0.690939\nvn -0.580630 -0.425501 -0.694131\nvn -0.580630 -0.425501 -0.694131\nvn -0.654052 -0.464652 -0.596921\nvn -0.655621 -0.468658 -0.592048\nvn -0.678633 -0.470307 -0.564154\nvn -0.655621 -0.468658 -0.592048\nvn -0.654052 -0.464652 -0.596921\nvn -0.654052 -0.464652 -0.596921\nvn -0.678920 -0.468402 -0.565391\nvn -0.678633 -0.470307 -0.564154\nvn -0.492180 -0.322067 -0.808723\nvn -0.580630 -0.425501 -0.694131\nvn -0.580945 -0.430239 -0.690939\nvn -0.580945 -0.430239 -0.690939\nvn -0.490136 -0.318711 -0.811289\nvn -0.492180 -0.322067 -0.808723\nvn -0.438472 -0.157084 -0.884911\nvn -0.492180 -0.322067 -0.808723\nvn -0.490136 -0.318711 -0.811289\nvn -0.490136 -0.318711 -0.811289\nvn -0.437215 -0.145973 -0.887432\nvn -0.438472 -0.157084 -0.884911\nvn -0.420983 0.031709 -0.906514\nvn -0.438472 -0.157084 -0.884911\nvn -0.437215 -0.145973 -0.887432\nvn -0.437215 -0.145973 -0.887432\nvn -0.420371 0.043734 -0.906298\nvn -0.420983 0.031709 -0.906514\nvn -0.443322 0.213146 -0.870652\nvn -0.420983 0.031709 -0.906514\nvn -0.420371 0.043734 -0.906298\nvn -0.420371 0.043734 -0.906298\nvn -0.441894 0.220779 -0.869475\nvn -0.443322 0.213146 -0.870652\nvn -0.499297 0.361929 -0.787217\nvn -0.443322 0.213146 -0.870652\nvn -0.441894 0.220779 -0.869475\nvn -0.441894 0.220779 -0.869475\nvn -0.492516 0.360247 -0.792244\nvn -0.499297 0.361929 -0.787217\nvn -0.612739 0.447903 -0.651102\nvn -0.499297 0.361929 -0.787217\nvn -0.492516 0.360247 -0.792244\nvn -0.492516 0.360247 -0.792244\nvn -0.602547 0.443112 -0.663769\nvn -0.612739 0.447903 -0.651102\nvn -0.728065 0.455529 -0.512264\nvn -0.612739 0.447903 -0.651102\nvn -0.602547 0.443112 -0.663769\nvn -0.602547 0.443112 -0.663769\nvn -0.728497 0.450465 -0.516113\nvn -0.728065 0.455529 -0.512264\nvn -0.773975 0.435910 -0.459288\nvn -0.728065 0.455529 -0.512264\nvn -0.728497 0.450465 -0.516113\nvn -0.728497 0.450465 -0.516113\nvn -0.779286 0.427914 -0.457824\nvn -0.773975 0.435910 -0.459288\nvn 0.149970 -0.980053 -0.130407\nvn 0.137701 -0.983039 -0.121129\nvn 0.064427 -0.995936 -0.062931\nvn 0.064427 -0.995936 -0.062931\nvn 0.064487 -0.995934 -0.062900\nvn 0.149970 -0.980053 -0.130407\nvn 0.363427 -0.881923 -0.300221\nvn 0.137701 -0.983039 -0.121129\nvn 0.149970 -0.980053 -0.130407\nvn 0.149970 -0.980053 -0.130407\nvn 0.387415 -0.865532 -0.317433\nvn 0.363427 -0.881923 -0.300221\nvn 0.363427 -0.881923 -0.300221\nvn 0.387415 -0.865532 -0.317433\nvn 0.624674 -0.597389 -0.502901\nvn 0.624674 -0.597389 -0.502901\nvn 0.611181 -0.617803 -0.494749\nvn 0.363427 -0.881923 -0.300221\nvn 0.756438 -0.244791 -0.606530\nvn 0.611181 -0.617803 -0.494749\nvn 0.624674 -0.597389 -0.502901\nvn 0.624674 -0.597389 -0.502901\nvn 0.760755 -0.228986 -0.607304\nvn 0.756438 -0.244791 -0.606530\nvn 0.756438 -0.244791 -0.606530\nvn 0.760755 -0.228986 -0.607304\nvn 0.769117 0.150399 -0.621159\nvn 0.769117 0.150399 -0.621159\nvn 0.773929 0.145636 -0.616299\nvn 0.756438 -0.244791 -0.606530\nvn 0.645385 0.486167 -0.589169\nvn 0.773929 0.145636 -0.616299\nvn 0.769117 0.150399 -0.621159\nvn 0.769117 0.150399 -0.621159\nvn 0.636471 0.487936 -0.597346\nvn 0.645385 0.486167 -0.589169\nvn 0.645385 0.486167 -0.589169\nvn 0.636471 0.487936 -0.597346\nvn 0.373798 0.726844 -0.576171\nvn 0.373798 0.726844 -0.576171\nvn 0.411977 0.731573 -0.543209\nvn 0.645385 0.486167 -0.589169\nvn 0.119422 0.921256 -0.370169\nvn 0.411977 0.731573 -0.543209\nvn 0.373798 0.726844 -0.576171\nvn 0.373798 0.726844 -0.576171\nvn 0.028322 0.916801 -0.398339\nvn 0.119422 0.921256 -0.370169\nvn 0.119422 0.921256 -0.370169\nvn 0.028322 0.916801 -0.398339\nvn -0.195598 0.969140 -0.150033\nvn -0.195598 0.969140 -0.150033\nvn -0.159216 0.976840 -0.142949\nvn 0.119422 0.921256 -0.370169\nvn -0.266860 0.962941 -0.039126\nvn -0.159216 0.976840 -0.142949\nvn -0.195598 0.969140 -0.150033\nvn -0.195598 0.969140 -0.150033\nvn -0.289227 0.956186 -0.045351\nvn -0.266860 0.962941 -0.039126\nvn 0.611181 -0.617803 -0.494749\nvn 0.756438 -0.244791 -0.606530\nvn 0.755315 -0.241863 -0.609099\nvn 0.755315 -0.241863 -0.609099\nvn 0.756438 -0.244791 -0.606530\nvn 0.773929 0.145636 -0.616299\nvn 0.755315 -0.241863 -0.609099\nvn 0.609526 -0.616942 -0.497857\nvn 0.611181 -0.617803 -0.494749\nvn 0.773929 0.145636 -0.616299\nvn 0.770611 0.102362 -0.629032\nvn 0.755315 -0.241863 -0.609099\nvn 0.770611 0.102362 -0.629032\nvn 0.773929 0.145636 -0.616299\nvn 0.645385 0.486167 -0.589169\nvn 0.611181 -0.617803 -0.494749\nvn 0.609526 -0.616942 -0.497857\nvn 0.362047 -0.881846 -0.302108\nvn 0.362047 -0.881846 -0.302108\nvn 0.363427 -0.881923 -0.300221\nvn 0.611181 -0.617803 -0.494749\nvn 0.137701 -0.983039 -0.121129\nvn 0.363427 -0.881923 -0.300221\nvn 0.362047 -0.881846 -0.302108\nvn 0.362047 -0.881846 -0.302108\nvn 0.136788 -0.983030 -0.122230\nvn 0.137701 -0.983039 -0.121129\nvn 0.137701 -0.983039 -0.121129\nvn 0.136788 -0.983030 -0.122230\nvn 0.063602 -0.995929 -0.063876\nvn 0.063602 -0.995929 -0.063876\nvn 0.064427 -0.995936 -0.062931\nvn 0.137701 -0.983039 -0.121129\nvn 0.072332 -0.983372 -0.166576\nvn 0.002228 -0.975342 -0.220686\nvn -0.050020 -0.988194 -0.144811\nvn -0.050020 -0.988194 -0.144811\nvn 0.021760 -0.995576 -0.091403\nvn 0.072332 -0.983372 -0.166576\nvn 0.156501 -0.880685 -0.447103\nvn 0.002228 -0.975342 -0.220686\nvn 0.072332 -0.983372 -0.166576\nvn 0.072332 -0.983372 -0.166576\nvn 0.229812 -0.887872 -0.398584\nvn 0.156501 -0.880685 -0.447103\nvn 0.156501 -0.880685 -0.447103\nvn 0.229812 -0.887872 -0.398584\nvn 0.405513 -0.648020 -0.644693\nvn 0.405513 -0.648020 -0.644693\nvn 0.333975 -0.628457 -0.702497\nvn 0.156501 -0.880685 -0.447103\nvn 0.446587 -0.262526 -0.855360\nvn 0.333975 -0.628457 -0.702497\nvn 0.405513 -0.648020 -0.644693\nvn 0.405513 -0.648020 -0.644693\nvn 0.507073 -0.537317 -0.673920\nvn 0.446587 -0.262526 -0.855360\nvn 0.446587 -0.262526 -0.855360\nvn 0.584375 0.154059 -0.796725\nvn 0.553524 0.232189 -0.799812\nvn 0.553524 0.232189 -0.799812\nvn 0.466247 0.145456 -0.872615\nvn 0.446587 -0.262526 -0.855360\nvn 0.403924 0.503661 -0.763656\nvn 0.466247 0.145456 -0.872615\nvn 0.553524 0.232189 -0.799812\nvn 0.553524 0.232189 -0.799812\nvn 0.476406 0.515654 -0.712137\nvn 0.403924 0.503661 -0.763656\nvn 0.403924 0.503661 -0.763656\nvn 0.476406 0.515654 -0.712137\nvn 0.360004 0.771220 -0.524992\nvn 0.360004 0.771220 -0.524992\nvn 0.288497 0.762643 -0.578918\nvn 0.403924 0.503661 -0.763656\nvn 0.119117 0.938225 -0.324878\nvn 0.288497 0.762643 -0.578918\nvn 0.360004 0.771220 -0.524992\nvn 0.360004 0.771220 -0.524992\nvn 0.194074 0.944550 -0.264879\nvn 0.119117 0.938225 -0.324878\nvn 0.119117 0.938225 -0.324878\nvn 0.194074 0.944550 -0.264879\nvn 0.014344 0.999826 0.011902\nvn 0.014344 0.999826 0.011902\nvn -0.066379 0.996450 -0.051791\nvn 0.119117 0.938225 -0.324878\nvn -0.144690 0.987621 0.060580\nvn -0.066379 0.996450 -0.051791\nvn 0.014344 0.999826 0.011902\nvn 0.014344 0.999826 0.011902\nvn -0.057650 0.990879 0.121800\nvn -0.144690 0.987621 0.060580\nvn 0.507073 -0.537317 -0.673920\nvn 0.405513 -0.648020 -0.644693\nvn 0.429931 -0.664566 -0.611156\nvn 0.429931 -0.664566 -0.611156\nvn 0.591134 -0.612375 -0.524936\nvn 0.507073 -0.537317 -0.673920\nvn 0.227643 -0.883379 -0.409659\nvn 0.429931 -0.664566 -0.611156\nvn 0.405513 -0.648020 -0.644693\nvn 0.405513 -0.648020 -0.644693\nvn 0.229812 -0.887872 -0.398584\nvn 0.227643 -0.883379 -0.409659\nvn 0.064792 -0.982624 -0.173928\nvn 0.227643 -0.883379 -0.409659\nvn 0.229812 -0.887872 -0.398584\nvn 0.229812 -0.887872 -0.398584\nvn 0.072332 -0.983372 -0.166576\nvn 0.064792 -0.982624 -0.173928\nvn 0.012513 -0.995201 -0.097051\nvn 0.064792 -0.982624 -0.173928\nvn 0.072332 -0.983372 -0.166576\nvn 0.072332 -0.983372 -0.166576\nvn 0.021760 -0.995576 -0.091403\nvn 0.012513 -0.995201 -0.097051\nvn 0.831748 -0.429257 0.352042\nvn 0.748247 -0.471923 0.466277\nvn 0.754741 -0.475062 0.452417\nvn 0.726476 -0.471001 0.500391\nvn 0.754741 -0.475062 0.452417\nvn 0.748247 -0.471923 0.466277\nvn 0.748247 -0.471923 0.466277\nvn 0.726777 -0.465657 0.504935\nvn 0.726476 -0.471001 0.500391\nvn 0.477837 -0.864604 0.155342\nvn 0.438374 -0.868569 0.231120\nvn 0.436332 -0.870466 0.227825\nvn 0.241681 -0.968892 0.053287\nvn 0.243544 -0.968591 0.050174\nvn 0.166542 -0.979993 0.108983\nvn 0.166542 -0.979993 0.108983\nvn 0.173014 -0.978418 0.112982\nvn 0.241681 -0.968892 0.053287\nvn 0.519284 -0.846204 -0.119513\nvn 0.243544 -0.968591 0.050174\nvn 0.241681 -0.968892 0.053287\nvn 0.241681 -0.968892 0.053287\nvn 0.511414 -0.851675 -0.114478\nvn 0.519284 -0.846204 -0.119513\nvn 0.519284 -0.846204 -0.119513\nvn 0.511414 -0.851675 -0.114478\nvn 0.780646 -0.546107 -0.303908\nvn 0.780646 -0.546107 -0.303908\nvn 0.788076 -0.532841 -0.308248\nvn 0.519284 -0.846204 -0.119513\nvn 0.891410 -0.133461 -0.433101\nvn 0.788076 -0.532841 -0.308248\nvn 0.780646 -0.546107 -0.303908\nvn 0.780646 -0.546107 -0.303908\nvn 0.889707 -0.150980 -0.430845\nvn 0.891410 -0.133461 -0.433101\nvn 0.891410 -0.133461 -0.433101\nvn 0.889707 -0.150980 -0.430845\nvn 0.855305 0.206098 -0.475370\nvn 0.855305 0.206098 -0.475370\nvn 0.851158 0.219313 -0.476898\nvn 0.891410 -0.133461 -0.433101\nvn 0.715056 0.530722 -0.455005\nvn 0.851158 0.219313 -0.476898\nvn 0.855305 0.206098 -0.475370\nvn 0.855305 0.206098 -0.475370\nvn 0.719095 0.521391 -0.459406\nvn 0.715056 0.530722 -0.455005\nvn 0.715056 0.530722 -0.455005\nvn 0.719095 0.521391 -0.459406\nvn 0.617316 0.675670 -0.402978\nvn 0.617316 0.675670 -0.402978\nvn 0.618685 0.677222 -0.398245\nvn 0.715056 0.530722 -0.455005\nvn 0.908896 -0.048098 -0.414239\nvn 0.906821 -0.051730 -0.418329\nvn 0.911968 -0.042635 -0.408039\nvn 0.911968 -0.042635 -0.408039\nvn 0.913902 -0.039126 -0.404046\nvn 0.908896 -0.048098 -0.414239\nvn 0.781271 0.425626 -0.456573\nvn 0.779528 0.440000 -0.445798\nvn 0.780858 0.429219 -0.453908\nvn 0.780858 0.429219 -0.453908\nvn 0.782400 0.414761 -0.464569\nvn 0.781271 0.425626 -0.456573\nvn 0.096165 0.957346 -0.272472\nvn 0.318867 0.880579 -0.350577\nvn 0.308947 0.882832 -0.353780\nvn 0.308947 0.882832 -0.353780\nvn 0.140081 0.946056 -0.292158\nvn 0.096165 0.957346 -0.272472\nvn 0.096165 0.957346 -0.272472\nvn 0.140081 0.946056 -0.292158\nvn -0.116368 0.975685 -0.185737\nvn -0.116368 0.975685 -0.185737\nvn -0.127050 0.975320 -0.180580\nvn 0.096165 0.957346 -0.272472\nvn -0.179150 0.969665 -0.166301\nvn -0.127050 0.975320 -0.180580\nvn -0.116368 0.975685 -0.185737\nvn -0.116368 0.975685 -0.185737\nvn -0.185005 0.968084 -0.169074\nvn -0.179150 0.969665 -0.166301\nvn -0.434691 -0.116097 -0.893065\nvn -0.441490 -0.061924 -0.895127\nvn -0.439239 -0.075017 -0.895233\nvn -0.439239 -0.075017 -0.895233\nvn -0.434995 -0.125832 -0.891597\nvn -0.434691 -0.116097 -0.893065\nvn -0.438899 -0.156595 -0.884786\nvn -0.434691 -0.116097 -0.893065\nvn -0.434995 -0.125832 -0.891597\nvn -0.434995 -0.125832 -0.891597\nvn -0.439843 -0.165262 -0.882738\nvn -0.438899 -0.156595 -0.884786\nvn -0.474848 -0.034029 -0.879410\nvn -0.439239 -0.075017 -0.895233\nvn -0.441490 -0.061924 -0.895127\nvn -0.441490 -0.061924 -0.895127\nvn -0.481955 -0.021791 -0.875925\nvn -0.474848 -0.034029 -0.879410\nvn -0.527182 -0.036379 -0.848973\nvn -0.474848 -0.034029 -0.879410\nvn -0.481955 -0.021791 -0.875925\nvn -0.481955 -0.021791 -0.875925\nvn -0.535390 -0.032106 -0.843995\nvn -0.527182 -0.036379 -0.848973\nvn -0.560331 -0.081395 -0.824260\nvn -0.527182 -0.036379 -0.848973\nvn -0.535390 -0.032106 -0.843995\nvn -0.535390 -0.032106 -0.843995\nvn -0.564151 -0.083288 -0.821460\nvn -0.560331 -0.081395 -0.824260\nvn -0.549861 -0.149238 -0.821816\nvn -0.560331 -0.081395 -0.824260\nvn -0.564151 -0.083288 -0.821460\nvn -0.564151 -0.083288 -0.821460\nvn -0.547360 -0.161294 -0.821208\nvn -0.549861 -0.149238 -0.821816\nvn -0.549861 -0.149238 -0.821816\nvn -0.547360 -0.161294 -0.821208\nvn -0.501397 -0.207591 -0.839945\nvn -0.501397 -0.207591 -0.839945\nvn -0.500935 -0.204262 -0.841036\nvn -0.549861 -0.149238 -0.821816\nvn -0.500935 -0.204262 -0.841036\nvn -0.501397 -0.207591 -0.839945\nvn -0.501550 -0.211986 -0.838755\nvn -0.501550 -0.211986 -0.838755\nvn -0.500784 -0.206613 -0.840551\nvn -0.500935 -0.204262 -0.841036\nvn -0.543455 -0.161569 -0.823743\nvn -0.500784 -0.206613 -0.840551\nvn -0.501550 -0.211986 -0.838755\nvn -0.501550 -0.211986 -0.838755\nvn -0.554419 -0.163890 -0.815941\nvn -0.543455 -0.161569 -0.823743\nvn -0.594940 -0.167550 -0.786112\nvn -0.543455 -0.161569 -0.823743\nvn -0.554419 -0.163890 -0.815941\nvn -0.554419 -0.163890 -0.815941\nvn -0.602327 -0.176401 -0.778515\nvn -0.594940 -0.167550 -0.786112\nvn -0.607993 -0.205544 -0.766874\nvn -0.594940 -0.167550 -0.786112\nvn -0.602327 -0.176401 -0.778515\nvn -0.602327 -0.176401 -0.778515\nvn -0.608552 -0.212597 -0.764505\nvn -0.607993 -0.205544 -0.766874\nvn -0.606932 -0.236157 -0.758856\nvn -0.607993 -0.205544 -0.766874\nvn -0.608552 -0.212597 -0.764505\nvn -0.608552 -0.212597 -0.764505\nvn -0.607301 -0.241987 -0.756722\nvn -0.606932 -0.236157 -0.758856\nvn 0.435543 0.134255 0.890100\nvn 0.434441 0.164041 0.885636\nvn 0.437245 0.158516 0.885263\nvn 0.437245 0.158516 0.885263\nvn 0.437248 0.126532 0.890396\nvn 0.435543 0.134255 0.890100\nvn 0.429976 0.085605 0.898773\nvn 0.435543 0.134255 0.890100\nvn 0.437248 0.126532 0.890396\nvn 0.437248 0.126532 0.890396\nvn 0.438527 0.077915 0.895334\nvn 0.429976 0.085605 0.898773\nvn 0.462646 0.038455 0.885709\nvn 0.429976 0.085605 0.898773\nvn 0.438527 0.077915 0.895334\nvn 0.438527 0.077915 0.895334\nvn 0.475516 0.035860 0.878976\nvn 0.462646 0.038455 0.885709\nvn 0.520053 0.038516 0.853265\nvn 0.462646 0.038455 0.885709\nvn 0.475516 0.035860 0.878976\nvn 0.475516 0.035860 0.878976\nvn 0.529051 0.038821 0.847702\nvn 0.520053 0.038516 0.853265\nvn 0.557007 0.086370 0.826004\nvn 0.520053 0.038516 0.853265\nvn 0.529051 0.038821 0.847702\nvn 0.529051 0.038821 0.847702\nvn 0.561151 0.084995 0.823338\nvn 0.557007 0.086370 0.826004\nvn 0.545865 0.162148 0.822033\nvn 0.557007 0.086370 0.826004\nvn 0.561151 0.084995 0.823338\nvn 0.561151 0.084995 0.823338\nvn 0.549747 0.150095 0.821736\nvn 0.545865 0.162148 0.822033\nvn 0.501954 0.208906 0.839286\nvn 0.545865 0.162148 0.822033\nvn 0.549747 0.150095 0.821736\nvn 0.549747 0.150095 0.821736\nvn 0.501761 0.204232 0.840551\nvn 0.501954 0.208906 0.839286\nvn 0.500976 0.206830 0.840383\nvn 0.501954 0.208906 0.839286\nvn 0.501761 0.204232 0.840551\nvn 0.501761 0.204232 0.840551\nvn 0.505297 0.204567 0.838348\nvn 0.500976 0.206830 0.840383\nvn 0.553250 0.148109 0.819743\nvn 0.500976 0.206830 0.840383\nvn 0.505297 0.204567 0.838348\nvn 0.505297 0.204567 0.838348\nvn 0.550906 0.166911 0.817706\nvn 0.553250 0.148109 0.819743\nvn 0.599893 0.162486 0.783407\nvn 0.553250 0.148109 0.819743\nvn 0.550906 0.166911 0.817706\nvn 0.550906 0.166911 0.817706\nvn 0.593202 0.178232 0.785076\nvn 0.599893 0.162486 0.783407\nvn 0.610023 0.203199 0.765886\nvn 0.599893 0.162486 0.783407\nvn 0.593202 0.178232 0.785076\nvn 0.593202 0.178232 0.785076\nvn 0.606114 0.211072 0.766860\nvn 0.610023 0.203199 0.765886\nvn 0.602550 0.235826 0.762443\nvn 0.610023 0.203199 0.765886\nvn 0.606114 0.211072 0.766860\nvn 0.606114 0.211072 0.766860\nvn 0.600133 0.241744 0.762496\nvn 0.602550 0.235826 0.762443\nvn 0.322924 -0.716256 0.618625\nvn 0.301961 -0.787526 0.537236\nvn 0.395863 -0.754400 0.523615\nvn 0.395863 -0.754400 0.523615\nvn 0.414056 -0.684610 0.599889\nvn 0.322924 -0.716256 0.618625\nvn 0.377159 -0.788468 0.485869\nvn 0.395863 -0.754400 0.523615\nvn 0.301961 -0.787526 0.537236\nvn 0.301961 -0.787526 0.537236\nvn 0.281295 -0.823315 0.492976\nvn 0.377159 -0.788468 0.485869\nvn 0.395863 -0.754400 0.523615\nvn 0.377159 -0.788468 0.485869\nvn 0.641722 -0.638609 0.424702\nvn 0.641722 -0.638609 0.424702\nvn 0.653727 -0.602759 0.457517\nvn 0.395863 -0.754400 0.523615\nvn 0.414056 -0.684610 0.599889\nvn 0.395863 -0.754400 0.523615\nvn 0.653727 -0.602759 0.457517\nvn 0.653727 -0.602759 0.457517\nvn 0.663624 -0.536478 0.521340\nvn 0.414056 -0.684610 0.599889\nvn 0.663624 -0.536478 0.521340\nvn 0.653727 -0.602759 0.457517\nvn 0.904340 -0.309737 0.293654\nvn 0.904340 -0.309737 0.293654\nvn 0.899803 -0.270096 0.342641\nvn 0.663624 -0.536478 0.521340\nvn 0.653727 -0.602759 0.457517\nvn 0.641722 -0.638609 0.424702\nvn 0.906424 -0.331378 0.261886\nvn 0.906424 -0.331378 0.261886\nvn 0.904340 -0.309737 0.293654\nvn 0.653727 -0.602759 0.457517\nvn 0.904340 -0.309737 0.293654\nvn 0.906424 -0.331378 0.261886\nvn 0.976626 -0.151224 0.152750\nvn 0.976626 -0.151224 0.152750\nvn 0.972788 -0.139288 0.185158\nvn 0.904340 -0.309737 0.293654\nvn 0.899803 -0.270096 0.342641\nvn 0.904340 -0.309737 0.293654\nvn 0.972788 -0.139288 0.185158\nvn 0.972788 -0.139288 0.185158\nvn 0.995332 0.075200 0.060490\nvn 0.899803 -0.270096 0.342641\nvn 0.995332 0.075200 0.060490\nvn 0.938556 0.316118 -0.138496\nvn 0.894851 0.395650 -0.206645\nvn 0.894851 0.395650 -0.206645\nvn 0.906005 0.364374 -0.215377\nvn 0.995332 0.075200 0.060490\nvn 0.938556 0.316118 -0.138496\nvn 0.928456 0.334522 -0.161447\nvn 0.882698 0.414966 -0.220560\nvn 0.882698 0.414966 -0.220560\nvn 0.894851 0.395650 -0.206645\nvn 0.938556 0.316118 -0.138496\nvn 0.894851 0.395650 -0.206645\nvn 0.882698 0.414966 -0.220560\nvn 0.822668 0.494956 -0.279706\nvn 0.822668 0.494956 -0.279706\nvn 0.829389 0.484278 -0.278548\nvn 0.894851 0.395650 -0.206645\nvn 0.906005 0.364374 -0.215377\nvn 0.894851 0.395650 -0.206645\nvn 0.829389 0.484278 -0.278548\nvn 0.829389 0.484278 -0.278548\nvn 0.822707 0.479030 -0.306077\nvn 0.906005 0.364374 -0.215377\nvn 0.663624 -0.536478 0.521340\nvn 0.899803 -0.270096 0.342641\nvn 0.894665 -0.242534 0.375170\nvn 0.894665 -0.242534 0.375170\nvn 0.669310 -0.486013 0.561975\nvn 0.663624 -0.536478 0.521340\nvn 0.414056 -0.684610 0.599889\nvn 0.663624 -0.536478 0.521340\nvn 0.669310 -0.486013 0.561975\nvn 0.669310 -0.486013 0.561975\nvn 0.422234 -0.629886 0.651891\nvn 0.414056 -0.684610 0.599889\nvn 0.322924 -0.716256 0.618625\nvn 0.414056 -0.684610 0.599889\nvn 0.422234 -0.629886 0.651891\nvn 0.422234 -0.629886 0.651891\nvn 0.331226 -0.663611 0.670753\nvn 0.322924 -0.716256 0.618625\nvn 0.422234 -0.629886 0.651891\nvn 0.669310 -0.486013 0.561975\nvn 0.672127 -0.470180 0.571993\nvn 0.672127 -0.470180 0.571993\nvn 0.423757 -0.608642 0.670809\nvn 0.422234 -0.629886 0.651891\nvn 0.331226 -0.663611 0.670753\nvn 0.422234 -0.629886 0.651891\nvn 0.423757 -0.608642 0.670809\nvn 0.423757 -0.608642 0.670809\nvn 0.332266 -0.641580 0.691357\nvn 0.331226 -0.663611 0.670753\nvn 0.893384 -0.240887 0.379260\nvn 0.672127 -0.470180 0.571993\nvn 0.669310 -0.486013 0.561975\nvn 0.669310 -0.486013 0.561975\nvn 0.894665 -0.242534 0.375170\nvn 0.893384 -0.240887 0.379260\nvn 0.992726 0.032228 0.116003\nvn 0.893384 -0.240887 0.379260\nvn 0.894665 -0.242534 0.375170\nvn 0.894665 -0.242534 0.375170\nvn 0.993381 0.059267 0.098392\nvn 0.992726 0.032228 0.116003\nvn 0.993381 0.059267 0.098392\nvn 0.894665 -0.242534 0.375170\nvn 0.899803 -0.270096 0.342641\nvn 0.899803 -0.270096 0.342641\nvn 0.995332 0.075200 0.060490\nvn 0.993381 0.059267 0.098392\nvn 0.935807 0.309037 -0.169595\nvn 0.993381 0.059267 0.098392\nvn 0.995332 0.075200 0.060490\nvn 0.995332 0.075200 0.060490\nvn 0.906005 0.364374 -0.215377\nvn 0.935807 0.309037 -0.169595\nvn 0.882083 0.386655 -0.269124\nvn 0.935807 0.309037 -0.169595\nvn 0.906005 0.364374 -0.215377\nvn 0.906005 0.364374 -0.215377\nvn 0.822707 0.479030 -0.306077\nvn 0.882083 0.386655 -0.269124\nvn 0.935807 0.309037 -0.169595\nvn 0.882083 0.386655 -0.269124\nvn 0.910694 0.339618 -0.235151\nvn 0.910694 0.339618 -0.235151\nvn 0.954371 0.265580 -0.136544\nvn 0.935807 0.309037 -0.169595\nvn 0.954371 0.265580 -0.136544\nvn 0.992726 0.032228 0.116003\nvn 0.993381 0.059267 0.098392\nvn 0.993381 0.059267 0.098392\nvn 0.935807 0.309037 -0.169595\nvn 0.954371 0.265580 -0.136544\nvn 0.421346 -0.603025 0.677369\nvn 0.423757 -0.608642 0.670809\nvn 0.672127 -0.470180 0.571993\nvn 0.332266 -0.641580 0.691357\nvn 0.423757 -0.608642 0.670809\nvn 0.421346 -0.603025 0.677369\nvn 0.672127 -0.470180 0.571993\nvn 0.679178 -0.462429 0.569980\nvn 0.421346 -0.603025 0.677369\nvn 0.679178 -0.462429 0.569980\nvn 0.672127 -0.470180 0.571993\nvn 0.893384 -0.240887 0.379260\nvn 0.421346 -0.603025 0.677369\nvn 0.332506 -0.634889 0.697392\nvn 0.332266 -0.641580 0.691357\nvn 0.901756 -0.233198 0.363944\nvn 0.893384 -0.240887 0.379260\nvn 0.992726 0.032228 0.116003\nvn 0.893384 -0.240887 0.379260\nvn 0.901756 -0.233198 0.363944\nvn 0.679178 -0.462429 0.569980\nvn 0.992726 0.032228 0.116003\nvn 0.995054 0.032564 0.093847\nvn 0.901756 -0.233198 0.363944\nvn 0.995054 0.032564 0.093847\nvn 0.992726 0.032228 0.116003\nvn 0.954371 0.265580 -0.136544\nvn 0.956437 0.251111 -0.148903\nvn 0.954371 0.265580 -0.136544\nvn 0.910694 0.339618 -0.235151\nvn 0.954371 0.265580 -0.136544\nvn 0.956437 0.251111 -0.148903\nvn 0.995054 0.032564 0.093847\nvn 0.910694 0.339618 -0.235151\nvn 0.920725 0.316909 -0.227671\nvn 0.956437 0.251111 -0.148903\nvn 0.684750 0.189980 -0.703580\nvn 0.677675 0.220256 -0.701601\nvn 0.542879 0.302752 -0.783341\nvn 0.542879 0.302752 -0.783341\nvn 0.543917 0.260483 -0.797686\nvn 0.684750 0.189980 -0.703580\nvn 0.534851 0.340992 -0.773084\nvn 0.542879 0.302752 -0.783341\nvn 0.677675 0.220256 -0.701601\nvn 0.543917 0.260483 -0.797686\nvn 0.542879 0.302752 -0.783341\nvn 0.252514 0.428761 -0.867410\nvn 0.252514 0.428761 -0.867410\nvn 0.542879 0.302752 -0.783341\nvn 0.534851 0.340992 -0.773084\nvn 0.252514 0.428761 -0.867410\nvn 0.240676 0.369742 -0.897422\nvn 0.543917 0.260483 -0.797686\nvn 0.240676 0.369742 -0.897422\nvn 0.252514 0.428761 -0.867410\nvn 0.067447 0.485894 -0.871411\nvn 0.067447 0.485894 -0.871411\nvn 0.044649 0.423633 -0.904733\nvn 0.240676 0.369742 -0.897422\nvn 0.083867 0.543947 -0.834918\nvn 0.067447 0.485894 -0.871411\nvn 0.252514 0.428761 -0.867410\nvn 0.252514 0.428761 -0.867410\nvn 0.255415 0.492305 -0.832105\nvn 0.083867 0.543947 -0.834918\nvn 0.534851 0.340992 -0.773084\nvn 0.255415 0.492305 -0.832105\nvn 0.252514 0.428761 -0.867410\nvn 0.044649 0.423633 -0.904733\nvn 0.067447 0.485894 -0.871411\nvn 0.017396 0.504451 -0.863265\nvn 0.017396 0.504451 -0.863265\nvn 0.067447 0.485894 -0.871411\nvn 0.083867 0.543947 -0.834918\nvn 0.017396 0.504451 -0.863265\nvn -0.008149 0.442921 -0.896524\nvn 0.044649 0.423633 -0.904733\nvn 0.083867 0.543947 -0.834918\nvn 0.044101 0.540380 -0.840265\nvn 0.017396 0.504451 -0.863265\nvn 0.281295 -0.823315 0.492976\nvn 0.267321 -0.837304 0.476929\nvn 0.360034 -0.807322 0.467553\nvn 0.360034 -0.807322 0.467553\nvn 0.377159 -0.788468 0.485869\nvn 0.281295 -0.823315 0.492976\nvn 0.377159 -0.788468 0.485869\nvn 0.360034 -0.807322 0.467553\nvn 0.627933 -0.665594 0.403342\nvn 0.627933 -0.665594 0.403342\nvn 0.641722 -0.638609 0.424702\nvn 0.377159 -0.788468 0.485869\nvn 0.641722 -0.638609 0.424702\nvn 0.627933 -0.665594 0.403342\nvn 0.905235 -0.353566 0.235671\nvn 0.905235 -0.353566 0.235671\nvn 0.906424 -0.331378 0.261886\nvn 0.641722 -0.638609 0.424702\nvn 0.906424 -0.331378 0.261886\nvn 0.905235 -0.353566 0.235671\nvn 0.980390 -0.154242 0.122656\nvn 0.980390 -0.154242 0.122656\nvn 0.976626 -0.151224 0.152750\nvn 0.906424 -0.331378 0.261886\nvn 0.928456 0.334522 -0.161447\nvn 0.924695 0.339250 -0.172768\nvn 0.872460 0.430264 -0.231704\nvn 0.872460 0.430264 -0.231704\nvn 0.882698 0.414966 -0.220560\nvn 0.928456 0.334522 -0.161447\nvn 0.882698 0.414966 -0.220560\nvn 0.872460 0.430264 -0.231704\nvn 0.815329 0.500093 -0.291797\nvn 0.815329 0.500093 -0.291797\nvn 0.822668 0.494956 -0.279706\nvn 0.882698 0.414966 -0.220560\nvn 0.978126 -0.138036 0.155615\nvn 0.970885 -0.213178 0.109260\nvn 0.970778 -0.117681 0.209146\nvn 0.970778 -0.117681 0.209146\nvn 0.969018 -0.122413 0.214520\nvn 0.978126 -0.138036 0.155615\nvn 0.975995 -0.135504 0.170509\nvn 0.969018 -0.122413 0.214520\nvn 0.970778 -0.117681 0.209146\nvn 0.970778 -0.117681 0.209146\nvn 0.972951 -0.129554 0.191264\nvn 0.975995 -0.135504 0.170509\nvn 0.986255 -0.146735 0.075962\nvn 0.970885 -0.213178 0.109260\nvn 0.978126 -0.138036 0.155615\nvn 0.978126 -0.138036 0.155615\nvn 0.983785 -0.139320 0.112951\nvn 0.986255 -0.146735 0.075962\nvn 0.986255 -0.146735 0.075962\nvn 0.983785 -0.139320 0.112951\nvn 0.996293 -0.077060 -0.038240\nvn 0.996293 -0.077060 -0.038240\nvn 0.989197 -0.146005 -0.013093\nvn 0.986255 -0.146735 0.075962\nvn 0.975995 -0.135504 0.170509\nvn 0.972951 -0.129554 0.191264\nvn 0.999359 -0.014466 -0.032747\nvn 0.999359 -0.014466 -0.032747\nvn 0.987049 -0.153267 -0.047366\nvn 0.975995 -0.135504 0.170509\nvn 0.989197 -0.146005 -0.013093\nvn 0.996293 -0.077060 -0.038240\nvn 0.982751 -0.109594 -0.148964\nvn 0.982751 -0.109594 -0.148964\nvn 0.973033 -0.228555 -0.031129\nvn 0.989197 -0.146005 -0.013093\nvn 0.971017 -0.045717 -0.234598\nvn 0.973033 -0.228555 -0.031129\nvn 0.982751 -0.109594 -0.148964\nvn 0.982751 -0.109594 -0.148964\nvn 0.966277 -0.051791 -0.252243\nvn 0.971017 -0.045717 -0.234598\nvn 0.985830 0.028047 -0.165383\nvn 0.971017 -0.045717 -0.234598\nvn 0.966277 -0.051791 -0.252243\nvn 0.966277 -0.051791 -0.252243\nvn 0.988690 0.016297 -0.149085\nvn 0.985830 0.028047 -0.165383\nvn 0.994493 -0.063815 -0.083134\nvn 0.985830 0.028047 -0.165383\nvn 0.988690 0.016297 -0.149085\nvn 0.988690 0.016297 -0.149085\nvn 0.997488 -0.023133 -0.066959\nvn 0.994493 -0.063815 -0.083134\nvn 0.996838 -0.024567 -0.075565\nvn 0.994493 -0.063815 -0.083134\nvn 0.997488 -0.023133 -0.066959\nvn 0.987049 -0.153267 -0.047366\nvn 0.999359 -0.014466 -0.032747\nvn 0.996838 -0.024567 -0.075565\nvn 0.997488 -0.023133 -0.066959\nvn 0.994018 -0.016419 -0.107978\nvn 0.996838 -0.024567 -0.075565\nvn 0.977658 -0.066379 -0.199444\nvn 0.966277 -0.051791 -0.252243\nvn 0.982751 -0.109594 -0.148964\nvn 0.982751 -0.109594 -0.148964\nvn 0.986405 -0.032838 -0.161018\nvn 0.977658 -0.066379 -0.199444\nvn 0.986405 -0.032838 -0.161018\nvn 0.982751 -0.109594 -0.148964\nvn 0.996293 -0.077060 -0.038240\nvn 0.982285 -0.030580 -0.184884\nvn 0.977658 -0.066379 -0.199444\nvn 0.986405 -0.032838 -0.161018\nvn 0.986405 -0.032838 -0.161018\nvn 0.978341 -0.048097 -0.201333\nvn 0.982285 -0.030580 -0.184884\nvn 0.993706 -0.103826 -0.042055\nvn 0.982285 -0.030580 -0.184884\nvn 0.978341 -0.048097 -0.201333\nvn 0.978341 -0.048097 -0.201333\nvn 0.954820 -0.008118 -0.297073\nvn 0.993706 -0.103826 -0.042055\nvn 0.947779 0.000824 -0.318927\nvn 0.978341 -0.048097 -0.201333\nvn 0.986405 -0.032838 -0.161018\nvn 0.954820 -0.008118 -0.297073\nvn 0.978341 -0.048097 -0.201333\nvn 0.947779 0.000824 -0.318927\nvn 0.947779 0.000824 -0.318927\nvn 0.986405 -0.032838 -0.161018\nvn 0.977899 0.032961 -0.206463\nvn 0.986405 -0.032838 -0.161018\nvn 0.996655 0.012971 -0.080692\nvn 0.977899 0.032961 -0.206463\nvn 0.947779 0.000824 -0.318927\nvn 0.923080 -0.009949 -0.384479\nvn 0.954820 -0.008118 -0.297073\nvn 0.996293 -0.077060 -0.038240\nvn 0.996655 0.012971 -0.080692\nvn 0.986405 -0.032838 -0.161018\nvn 0.996838 -0.024567 -0.075565\nvn 0.994018 -0.016419 -0.107978\nvn 0.992874 -0.033204 -0.114446\nvn 0.992874 -0.033204 -0.114446\nvn 0.997437 -0.048892 -0.052249\nvn 0.996838 -0.024567 -0.075565\nvn 0.996838 -0.024567 -0.075565\nvn 0.997437 -0.048892 -0.052249\nvn 0.987049 -0.153267 -0.047366\nvn -0.912695 0.033784 -0.407243\nvn -0.929866 -0.104194 -0.352835\nvn -0.867791 0.072941 -0.491547\nvn -0.867791 0.072941 -0.491547\nvn -0.868239 0.169564 -0.466271\nvn -0.912695 0.033784 -0.407243\nvn -0.669933 0.501710 -0.547245\nvn -0.868239 0.169564 -0.466271\nvn -0.867791 0.072941 -0.491547\nvn -0.867791 0.072941 -0.491547\nvn -0.631444 0.422448 -0.650244\nvn -0.669933 0.501710 -0.547245\nvn -0.669933 0.501710 -0.547245\nvn -0.631444 0.422448 -0.650244\nvn -0.275682 0.683146 -0.676248\nvn -0.275682 0.683146 -0.676248\nvn -0.203534 0.823229 -0.529969\nvn -0.669933 0.501710 -0.547245\nvn 0.126104 0.878399 -0.460990\nvn -0.203534 0.823229 -0.529969\nvn -0.275682 0.683146 -0.676248\nvn -0.275682 0.683146 -0.676248\nvn 0.008789 0.760045 -0.649811\nvn 0.126104 0.878399 -0.460990\nvn 0.199838 0.866313 -0.457785\nvn 0.126104 0.878399 -0.460990\nvn 0.008789 0.760045 -0.649811\nvn 0.008789 0.760045 -0.649811\nvn 0.074710 0.746948 -0.660672\nvn 0.199838 0.866313 -0.457785\nvn -0.867791 0.072941 -0.491547\nvn -0.929866 -0.104194 -0.352835\nvn -0.912733 -0.133246 -0.386218\nvn -0.882162 -0.447353 0.147195\nvn -0.905300 -0.420712 0.058597\nvn -0.924253 -0.381769 0.002960\nvn -0.924253 -0.381769 0.002960\nvn -0.936696 -0.349293 -0.024385\nvn -0.882162 -0.447353 0.147195\nvn -0.905300 -0.420712 0.058597\nvn -0.882162 -0.447353 0.147195\nvn -0.854787 -0.464353 0.231764\nvn -0.854787 -0.464353 0.231764\nvn -0.897818 -0.424921 0.115607\nvn -0.905300 -0.420712 0.058597\nvn -0.783400 -0.503661 0.364157\nvn -0.854787 -0.464353 0.231764\nvn -0.882162 -0.447353 0.147195\nvn -0.882162 -0.447353 0.147195\nvn -0.899112 -0.393142 0.192451\nvn -0.783400 -0.503661 0.364157\nvn -0.899112 -0.393142 0.192451\nvn -0.882162 -0.447353 0.147195\nvn -0.936696 -0.349293 -0.024385\nvn -0.936696 -0.349293 -0.024385\nvn -0.940190 -0.335889 0.056765\nvn -0.899112 -0.393142 0.192451\nvn -0.897818 -0.424921 0.115607\nvn -0.854787 -0.464353 0.231764\nvn -0.870300 -0.394468 0.294912\nvn -0.870300 -0.394468 0.294912\nvn -0.854787 -0.464353 0.231764\nvn -0.783400 -0.503661 0.364157\nvn -0.870300 -0.394468 0.294912\nvn -0.931333 -0.333457 0.146372\nvn -0.897818 -0.424921 0.115607\nvn -0.783400 -0.503661 0.364157\nvn -0.677765 -0.484550 0.553034\nvn -0.870300 -0.394468 0.294912\nvn -0.911949 -0.145608 -0.383598\nvn -0.912733 -0.133246 -0.386218\nvn -0.929463 -0.123542 -0.347614\nvn -0.929463 -0.123542 -0.347614\nvn -0.927469 -0.136023 -0.348281\nvn -0.911949 -0.145608 -0.383598\nvn -0.927469 -0.136023 -0.348281\nvn -0.929463 -0.123542 -0.347614\nvn -0.944790 -0.062901 -0.321583\nvn -0.912733 -0.133246 -0.386218\nvn -0.911949 -0.145608 -0.383598\nvn -0.867791 0.072941 -0.491547\nvn -0.566737 0.360490 -0.740848\nvn -0.698034 0.223278 -0.680364\nvn -0.667154 0.236891 -0.706249\nvn -0.667154 0.236891 -0.706249\nvn -0.534851 0.340992 -0.773084\nvn -0.566737 0.360490 -0.740848\nvn -0.698034 0.223278 -0.680364\nvn -0.566737 0.360490 -0.740848\nvn -0.631444 0.422448 -0.650244\nvn -0.631444 0.422448 -0.650244\nvn -0.867791 0.072941 -0.491547\nvn -0.698034 0.223278 -0.680364\nvn -0.275682 0.683146 -0.676248\nvn -0.631444 0.422448 -0.650244\nvn -0.566737 0.360490 -0.740848\nvn -0.566737 0.360490 -0.740848\nvn -0.259288 0.567985 -0.781129\nvn -0.275682 0.683146 -0.676248\nvn -0.259288 0.567985 -0.781129\nvn -0.566737 0.360490 -0.740848\nvn -0.534851 0.340992 -0.773084\nvn -0.534851 0.340992 -0.773084\nvn -0.255415 0.492305 -0.832105\nvn -0.259288 0.567985 -0.781129\nvn -0.039645 0.630928 -0.774828\nvn -0.259288 0.567985 -0.781129\nvn -0.255415 0.492305 -0.832105\nvn -0.255415 0.492305 -0.832105\nvn -0.084508 0.542724 -0.835649\nvn -0.039645 0.630928 -0.774828\nvn -0.259288 0.567985 -0.781129\nvn -0.039645 0.630928 -0.774828\nvn 0.008789 0.760045 -0.649811\nvn 0.008789 0.760045 -0.649811\nvn -0.275682 0.683146 -0.676248\nvn -0.259288 0.567985 -0.781129\nvn 0.074710 0.746948 -0.660672\nvn 0.008789 0.760045 -0.649811\nvn -0.039645 0.630928 -0.774828\nvn -0.039645 0.630928 -0.774828\nvn 0.009003 0.611206 -0.791421\nvn 0.074710 0.746948 -0.660672\nvn 0.009003 0.611206 -0.791421\nvn -0.039645 0.630928 -0.774828\nvn -0.084508 0.542724 -0.835649\nvn -0.084508 0.542724 -0.835649\nvn -0.042300 0.539098 -0.841180\nvn 0.009003 0.611206 -0.791421\nvn -0.534851 0.340992 -0.773084\nvn -0.667154 0.236891 -0.706249\nvn -0.677675 0.220255 -0.701601\nvn -0.944790 -0.062901 -0.321583\nvn -0.944771 -0.069705 -0.320234\nvn -0.927469 -0.136023 -0.348281\nvn -0.944771 -0.069705 -0.320234\nvn -0.944790 -0.062901 -0.321583\nvn -0.956247 -0.048434 -0.288525\nvn -0.956247 -0.048434 -0.288525\nvn -0.957781 -0.057041 -0.281783\nvn -0.944771 -0.069705 -0.320234\nvn -0.957781 -0.057041 -0.281783\nvn -0.956247 -0.048434 -0.288525\nvn -0.975704 -0.033572 -0.216504\nvn -0.975704 -0.033572 -0.216504\nvn -0.976807 -0.035830 -0.211103\nvn -0.957781 -0.057041 -0.281783\nvn -0.543917 0.260483 -0.797686\nvn -0.684734 0.189983 -0.703595\nvn -0.707529 0.188212 -0.681160\nvn -0.707529 0.188212 -0.681160\nvn -0.558385 0.252244 -0.790303\nvn -0.543917 0.260483 -0.797686\nvn -0.543917 0.260483 -0.797686\nvn -0.558385 0.252244 -0.790303\nvn -0.231063 0.345785 -0.909419\nvn -0.231063 0.345785 -0.909419\nvn -0.240676 0.369742 -0.897422\nvn -0.543917 0.260483 -0.797686\nvn -0.045443 0.422231 -0.905348\nvn -0.240676 0.369742 -0.897422\nvn -0.231063 0.345785 -0.909419\nvn -0.231063 0.345785 -0.909419\nvn -0.012421 0.385149 -0.922771\nvn -0.045443 0.422231 -0.905348\nvn 0.010163 0.441027 -0.897436\nvn -0.045443 0.422231 -0.905348\nvn -0.012421 0.385149 -0.922771\nvn -0.012421 0.385149 -0.922771\nvn 0.050143 0.396538 -0.916648\nvn 0.010163 0.441027 -0.897436\nvn -0.976807 -0.035830 -0.211103\nvn -0.975704 -0.033572 -0.216504\nvn -0.986616 0.002899 -0.163032\nvn -0.802956 -0.255994 0.538264\nvn -0.889023 -0.206981 0.408407\nvn -0.895459 -0.255933 0.364214\nvn -0.895459 -0.255933 0.364214\nvn -0.812995 -0.302810 0.497338\nvn -0.802956 -0.255994 0.538264\nvn -0.812995 -0.302810 0.497338\nvn -0.895459 -0.255933 0.364214\nvn -0.935357 -0.275437 0.221906\nvn -0.802956 -0.255994 0.538264\nvn -0.812995 -0.302810 0.497338\nvn -0.574650 -0.369621 0.730177\nvn -0.574650 -0.369621 0.730177\nvn -0.550355 -0.333027 0.765638\nvn -0.802956 -0.255994 0.538264\nvn -0.986616 0.002899 -0.163032\nvn -0.986846 0.005493 -0.161570\nvn -0.976807 -0.035830 -0.211103\nvn -0.558385 0.252244 -0.790303\nvn -0.707529 0.188212 -0.681160\nvn -0.714416 0.220346 -0.664121\nvn -0.990661 0.021058 -0.134713\nvn -0.986846 0.005493 -0.161570\nvn -0.986616 0.002899 -0.163032\nvn -0.986616 0.002899 -0.163032\nvn -0.991485 0.020814 -0.128548\nvn -0.990661 0.021058 -0.134713\nvn -0.557682 0.279100 -0.781725\nvn -0.714416 0.220346 -0.664121\nvn -0.715484 0.234812 -0.657986\nvn -0.714416 0.220346 -0.664121\nvn -0.557682 0.279100 -0.781725\nvn -0.558385 0.252244 -0.790303\nvn -0.715484 0.234812 -0.657986\nvn -0.539054 0.294537 -0.789094\nvn -0.557682 0.279100 -0.781725\nvn -0.557682 0.279100 -0.781725\nvn -0.539054 0.294537 -0.789094\nvn -0.203414 0.359339 -0.910768\nvn -0.203414 0.359339 -0.910768\nvn -0.216196 0.353745 -0.910013\nvn -0.557682 0.279100 -0.781725\nvn 0.014802 0.378558 -0.925459\nvn -0.216196 0.353745 -0.910013\nvn -0.203414 0.359339 -0.910768\nvn -0.216196 0.353745 -0.910013\nvn 0.014802 0.378558 -0.925459\nvn -0.012421 0.385149 -0.922771\nvn 0.050143 0.396538 -0.916648\nvn -0.012421 0.385149 -0.922771\nvn 0.014802 0.378558 -0.925459\nvn -0.203414 0.359339 -0.910768\nvn 0.027193 0.379049 -0.924977\nvn 0.014802 0.378558 -0.925459\nvn 0.080632 0.383963 -0.919821\nvn 0.014802 0.378558 -0.925459\nvn 0.027193 0.379049 -0.924977\nvn 0.014802 0.378558 -0.925459\nvn 0.080632 0.383963 -0.919821\nvn 0.050143 0.396538 -0.916648\nvn 0.027193 0.379049 -0.924977\nvn 0.095921 0.382372 -0.919016\nvn 0.080632 0.383963 -0.919821\nvn -0.558385 0.252244 -0.790303\nvn -0.557682 0.279100 -0.781725\nvn -0.216196 0.353745 -0.910013\nvn -0.216196 0.353745 -0.910013\nvn -0.231063 0.345785 -0.909419\nvn -0.558385 0.252244 -0.790303\nvn -0.012421 0.385149 -0.922771\nvn -0.231063 0.345785 -0.909419\nvn -0.216196 0.353745 -0.910013\nvn -0.281567 -0.367906 0.886208\nvn -0.550355 -0.333027 0.765638\nvn -0.574650 -0.369621 0.730177\nvn -0.561705 -0.316850 0.764260\nvn -0.550355 -0.333027 0.765638\nvn -0.281567 -0.367906 0.886208\nvn -0.281567 -0.367906 0.886208\nvn -0.275372 -0.357926 0.892221\nvn -0.561705 -0.316850 0.764260\nvn -0.151100 -0.364399 0.918903\nvn -0.275372 -0.357926 0.892221\nvn -0.281567 -0.367906 0.886208\nvn -0.281567 -0.367906 0.886208\nvn -0.175060 -0.366539 0.913785\nvn -0.151100 -0.364399 0.918903\nvn -0.175060 -0.366539 0.913785\nvn -0.281567 -0.367906 0.886208\nvn -0.312978 -0.396845 0.862878\nvn -0.574650 -0.369621 0.730177\nvn -0.312978 -0.396845 0.862878\nvn -0.281567 -0.367906 0.886208\nvn -0.495364 -0.425383 0.757406\nvn -0.312978 -0.396845 0.862878\nvn -0.574650 -0.369621 0.730177\nvn -0.202979 -0.401198 0.893219\nvn -0.312978 -0.396845 0.862878\nvn -0.495364 -0.425383 0.757406\nvn -0.312978 -0.396845 0.862878\nvn -0.202979 -0.401198 0.893219\nvn -0.175060 -0.366539 0.913785\nvn -0.495364 -0.425383 0.757406\nvn -0.631790 -0.479008 0.609419\nvn -0.202979 -0.401198 0.893219\nvn -0.377674 -0.526699 0.761544\nvn -0.631790 -0.479008 0.609419\nvn -0.495364 -0.425383 0.757406\nvn -0.495364 -0.425383 0.757406\nvn -0.457852 -0.521912 0.719708\nvn -0.377674 -0.526699 0.761544\nvn -0.457852 -0.521912 0.719708\nvn -0.495364 -0.425383 0.757406\nvn -0.664045 -0.411069 0.624553\nvn -0.574650 -0.369621 0.730177\nvn -0.664045 -0.411069 0.624553\nvn -0.495364 -0.425383 0.757406\nvn -0.664045 -0.411069 0.624553\nvn -0.677765 -0.484550 0.553034\nvn -0.457852 -0.521912 0.719708\nvn -0.457852 -0.521912 0.719708\nvn -0.467919 -0.553434 0.689030\nvn -0.377674 -0.526699 0.761544\nvn -0.467919 -0.553434 0.689030\nvn -0.457852 -0.521912 0.719708\nvn -0.677765 -0.484550 0.553034\nvn -0.802956 -0.255994 0.538264\nvn -0.550355 -0.333027 0.765638\nvn -0.561705 -0.316850 0.764260\nvn -0.561705 -0.316850 0.764260\nvn -0.811437 -0.235332 0.534966\nvn -0.802956 -0.255994 0.538264\nvn -0.889023 -0.206981 0.408407\nvn -0.802956 -0.255994 0.538264\nvn -0.811437 -0.235332 0.534966\nvn -0.811437 -0.235332 0.534966\nvn -0.884105 -0.194834 0.424733\nvn -0.889023 -0.206981 0.408407\nvn -0.870300 -0.394468 0.294912\nvn -0.677765 -0.484550 0.553034\nvn -0.664045 -0.411069 0.624553\nvn -0.664045 -0.411069 0.624553\nvn -0.868480 -0.329728 0.370165\nvn -0.870300 -0.394468 0.294912\nvn -0.868480 -0.329728 0.370165\nvn -0.664045 -0.411069 0.624553\nvn -0.574650 -0.369621 0.730177\nvn -0.574650 -0.369621 0.730177\nvn -0.812995 -0.302810 0.497338\nvn -0.868480 -0.329728 0.370165\nvn -0.935357 -0.275437 0.221906\nvn -0.868480 -0.329728 0.370165\nvn -0.812995 -0.302810 0.497338\nvn -0.931333 -0.333457 0.146372\nvn -0.870300 -0.394468 0.294912\nvn -0.868480 -0.329728 0.370165\nvn -0.868480 -0.329728 0.370165\nvn -0.935357 -0.275437 0.221906\nvn -0.931333 -0.333457 0.146372\nvn -0.677765 -0.484550 0.553034\nvn -0.783400 -0.503661 0.364157\nvn -0.467919 -0.553434 0.689030\nvn -0.295728 -0.948407 0.114324\nvn -0.205790 -0.965380 0.160286\nvn -0.231394 -0.941416 0.245341\nvn -0.231394 -0.941416 0.245341\nvn -0.314101 -0.925824 0.210215\nvn -0.295728 -0.948407 0.114324\nvn -0.295728 -0.948407 0.114324\nvn -0.314101 -0.925824 0.210215\nvn -0.565154 -0.822186 0.067905\nvn -0.565154 -0.822186 0.067905\nvn -0.556634 -0.829931 -0.037050\nvn -0.295728 -0.948407 0.114324\nvn -0.802624 -0.547758 -0.236127\nvn -0.556634 -0.829931 -0.037050\nvn -0.565154 -0.822186 0.067905\nvn -0.565154 -0.822186 0.067905\nvn -0.813722 -0.567131 -0.127355\nvn -0.802624 -0.547758 -0.236127\nvn -0.802624 -0.547758 -0.236127\nvn -0.813722 -0.567131 -0.127355\nvn -0.929388 -0.196694 -0.312329\nvn -0.929388 -0.196694 -0.312329\nvn -0.903302 -0.171700 -0.393146\nvn -0.802624 -0.547758 -0.236127\nvn -0.863891 0.184217 -0.468783\nvn -0.903302 -0.171700 -0.393146\nvn -0.929388 -0.196694 -0.312329\nvn -0.929388 -0.196694 -0.312329\nvn -0.887588 0.172738 -0.427024\nvn -0.863891 0.184217 -0.468783\nvn -0.863891 0.184217 -0.468783\nvn -0.887588 0.172738 -0.427024\nvn -0.707802 0.527860 -0.469447\nvn -0.707802 0.527860 -0.469447\nvn -0.714583 0.507874 -0.481078\nvn -0.863891 0.184217 -0.468783\nvn -0.577425 0.685005 -0.444239\nvn -0.714583 0.507874 -0.481078\nvn -0.707802 0.527860 -0.469447\nvn -0.707802 0.527860 -0.469447\nvn -0.547882 0.708627 -0.444605\nvn -0.577425 0.685005 -0.444239\nvn -0.314101 -0.925824 0.210215\nvn -0.231394 -0.941416 0.245341\nvn -0.225934 -0.899862 0.373099\nvn -0.225934 -0.899862 0.373099\nvn -0.298719 -0.888376 0.348648\nvn -0.314101 -0.925824 0.210215\nvn -0.540182 -0.807984 0.235300\nvn -0.565154 -0.822186 0.067905\nvn -0.314101 -0.925824 0.210215\nvn -0.314101 -0.925824 0.210215\nvn -0.298719 -0.888376 0.348648\nvn -0.540182 -0.807984 0.235300\nvn -0.813722 -0.567131 -0.127355\nvn -0.565154 -0.822186 0.067905\nvn -0.540182 -0.807984 0.235300\nvn -0.540182 -0.807984 0.235300\nvn -0.816878 -0.575380 0.040591\nvn -0.813722 -0.567131 -0.127355\nvn -0.962698 -0.198864 -0.183482\nvn -0.929388 -0.196694 -0.312329\nvn -0.813722 -0.567131 -0.127355\nvn -0.813722 -0.567131 -0.127355\nvn -0.816878 -0.575380 0.040591\nvn -0.962698 -0.198864 -0.183482\nvn -0.887588 0.172738 -0.427024\nvn -0.929388 -0.196694 -0.312329\nvn -0.962698 -0.198864 -0.183482\nvn -0.962698 -0.198864 -0.183482\nvn -0.919662 0.174721 -0.351702\nvn -0.887588 0.172738 -0.427024\nvn -0.731310 0.504610 -0.458862\nvn -0.707802 0.527860 -0.469447\nvn -0.887588 0.172738 -0.427024\nvn -0.887588 0.172738 -0.427024\nvn -0.919662 0.174721 -0.351702\nvn -0.731310 0.504610 -0.458862\nvn -0.547882 0.708627 -0.444605\nvn -0.707802 0.527860 -0.469447\nvn -0.731310 0.504610 -0.458862\nvn -0.731310 0.504610 -0.458862\nvn -0.581426 0.626503 -0.519075\nvn -0.547882 0.708627 -0.444605\nvn -0.298719 -0.888376 0.348648\nvn -0.225934 -0.899862 0.373099\nvn -0.228985 -0.881180 0.413627\nvn -0.228985 -0.881180 0.413627\nvn -0.306562 -0.867073 0.392687\nvn -0.298719 -0.888376 0.348648\nvn -0.540182 -0.807984 0.235300\nvn -0.298719 -0.888376 0.348648\nvn -0.306562 -0.867073 0.392687\nvn -0.306562 -0.867073 0.392687\nvn -0.228985 -0.881180 0.413627\nvn -0.235517 -0.870897 0.431359\nvn -0.235517 -0.870897 0.431359\nvn -0.318412 -0.852385 0.414793\nvn -0.306562 -0.867073 0.392687\nvn -0.318412 -0.852385 0.414793\nvn -0.235517 -0.870897 0.431359\nvn -0.243942 -0.858210 0.451628\nvn -0.243942 -0.858210 0.451628\nvn -0.332446 -0.835191 0.438104\nvn -0.318412 -0.852385 0.414793\nvn -0.332446 -0.835191 0.438104\nvn -0.243942 -0.858210 0.451628\nvn -0.265977 -0.836600 0.478912\nvn -0.265977 -0.836600 0.478912\nvn -0.361045 -0.806355 0.468443\nvn -0.332446 -0.835191 0.438104\nvn -0.573120 -0.747111 0.336688\nvn -0.318412 -0.852385 0.414793\nvn -0.332446 -0.835191 0.438104\nvn -0.332446 -0.835191 0.438104\nvn -0.594858 -0.714313 0.368647\nvn -0.573120 -0.747111 0.336688\nvn -0.594858 -0.714313 0.368647\nvn -0.332446 -0.835191 0.438104\nvn -0.361045 -0.806355 0.468443\nvn -0.361045 -0.806355 0.468443\nvn -0.627933 -0.665594 0.403342\nvn -0.594858 -0.714313 0.368647\nvn -0.881442 -0.424760 0.206490\nvn -0.594858 -0.714313 0.368647\nvn -0.627933 -0.665594 0.403342\nvn -0.627933 -0.665594 0.403342\nvn -0.905235 -0.353567 0.235671\nvn -0.881442 -0.424760 0.206490\nvn -0.594858 -0.714313 0.368647\nvn -0.881442 -0.424760 0.206490\nvn -0.857075 -0.486113 0.170634\nvn -0.857075 -0.486113 0.170634\nvn -0.573120 -0.747111 0.336688\nvn -0.594858 -0.714313 0.368647\nvn -0.994010 -0.097326 -0.049716\nvn -0.857075 -0.486113 0.170634\nvn -0.881442 -0.424760 0.206490\nvn -0.881442 -0.424760 0.206490\nvn -0.999704 0.006103 -0.023561\nvn -0.994010 -0.097326 -0.049716\nvn -0.999704 0.006103 -0.023561\nvn -0.881442 -0.424760 0.206490\nvn -0.905235 -0.353567 0.235671\nvn -0.905235 -0.353567 0.235671\nvn -0.980390 -0.154243 0.122656\nvn -0.999704 0.006103 -0.023561\nvn -0.906517 0.368735 -0.205578\nvn -0.999704 0.006103 -0.023561\nvn -0.924695 0.339249 -0.172768\nvn -0.924695 0.339249 -0.172768\nvn -0.872460 0.430263 -0.231704\nvn -0.906517 0.368735 -0.205578\nvn -0.999704 0.006103 -0.023561\nvn -0.906517 0.368735 -0.205578\nvn -0.933800 0.274185 -0.229871\nvn -0.933800 0.274185 -0.229871\nvn -0.994010 -0.097326 -0.049716\nvn -0.999704 0.006103 -0.023561\nvn -0.776498 0.517939 -0.358874\nvn -0.933800 0.274185 -0.229871\nvn -0.906517 0.368735 -0.205578\nvn -0.906517 0.368735 -0.205578\nvn -0.771044 0.555332 -0.311604\nvn -0.776498 0.517939 -0.358874\nvn -0.872460 0.430263 -0.231704\nvn -0.771044 0.555332 -0.311604\nvn -0.906517 0.368735 -0.205578\nvn -0.872460 0.430263 -0.231704\nvn -0.778936 0.552454 -0.296736\nvn -0.771044 0.555332 -0.311604\nvn -0.872460 0.430263 -0.231704\nvn -0.815329 0.500093 -0.291797\nvn -0.778936 0.552454 -0.296736\nvn -0.573120 -0.747111 0.336688\nvn -0.857075 -0.486113 0.170634\nvn -0.835923 -0.535064 0.122230\nvn -0.980718 -0.164344 -0.105747\nvn -0.835923 -0.535064 0.122230\nvn -0.857075 -0.486113 0.170634\nvn -0.857075 -0.486113 0.170634\nvn -0.994010 -0.097326 -0.049716\nvn -0.980718 -0.164344 -0.105747\nvn -0.835923 -0.535064 0.122230\nvn -0.980718 -0.164344 -0.105747\nvn -0.962698 -0.198864 -0.183482\nvn -0.962698 -0.198864 -0.183482\nvn -0.816878 -0.575380 0.040591\nvn -0.835923 -0.535064 0.122230\nvn -0.551760 -0.777360 0.302112\nvn -0.835923 -0.535064 0.122230\nvn -0.816878 -0.575380 0.040591\nvn -0.835923 -0.535064 0.122230\nvn -0.551760 -0.777360 0.302112\nvn -0.573120 -0.747111 0.336688\nvn -0.318412 -0.852385 0.414793\nvn -0.573120 -0.747111 0.336688\nvn -0.551760 -0.777360 0.302112\nvn -0.551760 -0.777360 0.302112\nvn -0.306562 -0.867073 0.392687\nvn -0.318412 -0.852385 0.414793\nvn -0.306562 -0.867073 0.392687\nvn -0.551760 -0.777360 0.302112\nvn -0.540182 -0.807984 0.235300\nvn -0.816878 -0.575380 0.040591\nvn -0.540182 -0.807984 0.235300\nvn -0.551760 -0.777360 0.302112\nvn -0.919662 0.174721 -0.351702\nvn -0.962698 -0.198864 -0.183482\nvn -0.980718 -0.164344 -0.105747\nvn -0.980718 -0.164344 -0.105747\nvn -0.933747 0.205000 -0.293415\nvn -0.919662 0.174721 -0.351702\nvn -0.994010 -0.097326 -0.049716\nvn -0.933800 0.274185 -0.229871\nvn -0.933747 0.205000 -0.293415\nvn -0.933747 0.205000 -0.293415\nvn -0.980718 -0.164344 -0.105747\nvn -0.994010 -0.097326 -0.049716\nvn -0.731310 0.504610 -0.458862\nvn -0.919662 0.174721 -0.351702\nvn -0.933747 0.205000 -0.293415\nvn -0.933747 0.205000 -0.293415\nvn -0.755209 0.497165 -0.427184\nvn -0.731310 0.504610 -0.458862\nvn -0.755209 0.497165 -0.427184\nvn -0.933747 0.205000 -0.293415\nvn -0.933800 0.274185 -0.229871\nvn -0.933800 0.274185 -0.229871\nvn -0.776498 0.517939 -0.358874\nvn -0.755209 0.497165 -0.427184\nvn -0.628906 0.574276 -0.524103\nvn -0.755209 0.497165 -0.427184\nvn -0.776498 0.517939 -0.358874\nvn -0.776498 0.517939 -0.358874\nvn -0.668025 0.580070 -0.466113\nvn -0.628906 0.574276 -0.524103\nvn -0.755209 0.497165 -0.427184\nvn -0.628906 0.574276 -0.524103\nvn -0.581426 0.626503 -0.519075\nvn -0.581426 0.626503 -0.519075\nvn -0.731310 0.504610 -0.458862\nvn -0.755209 0.497165 -0.427184\nvn -0.682931 0.618962 -0.387931\nvn -0.668025 0.580070 -0.466113\nvn -0.776498 0.517939 -0.358874\nvn -0.776498 0.517939 -0.358874\nvn -0.771044 0.555332 -0.311604\nvn -0.682931 0.618962 -0.387931\nvn -0.682931 0.618962 -0.387931\nvn -0.771044 0.555332 -0.311604\nvn -0.778936 0.552454 -0.296736\nvn -0.160899 -0.981937 -0.099555\nvn -0.085636 -0.995380 -0.043429\nvn -0.140694 -0.989957 0.013795\nvn -0.140694 -0.989957 0.013795\nvn -0.208412 -0.977177 -0.041109\nvn -0.160899 -0.981937 -0.099555\nvn -0.160899 -0.981937 -0.099555\nvn -0.208412 -0.977177 -0.041109\nvn -0.434008 -0.877752 -0.202950\nvn -0.434008 -0.877752 -0.202950\nvn -0.394027 -0.879061 -0.268320\nvn -0.160899 -0.981937 -0.099555\nvn -0.645971 -0.614017 -0.453547\nvn -0.394027 -0.879061 -0.268320\nvn -0.434008 -0.877752 -0.202950\nvn -0.434008 -0.877752 -0.202950\nvn -0.692357 -0.609681 -0.385915\nvn -0.645971 -0.614017 -0.453547\nvn -0.645971 -0.614017 -0.453547\nvn -0.692357 -0.609681 -0.385915\nvn -0.836357 -0.230880 -0.497193\nvn -0.836357 -0.230880 -0.497193\nvn -0.792801 -0.237624 -0.561251\nvn -0.645971 -0.614017 -0.453547\nvn -0.813479 0.124242 -0.568169\nvn -0.792801 -0.237624 -0.561251\nvn -0.836357 -0.230880 -0.497193\nvn -0.836357 -0.230880 -0.497193\nvn -0.840721 0.150247 -0.520205\nvn -0.813479 0.124242 -0.568169\nvn -0.813479 0.124242 -0.568169\nvn -0.840721 0.150247 -0.520205\nvn -0.738199 0.481105 -0.472865\nvn -0.738199 0.481105 -0.472865\nvn -0.719153 0.488580 -0.494074\nvn -0.813479 0.124242 -0.568169\nvn -0.602699 0.680462 -0.416804\nvn -0.719153 0.488580 -0.494074\nvn -0.738199 0.481105 -0.472865\nvn -0.738199 0.481105 -0.472865\nvn -0.640200 0.644716 -0.417715\nvn -0.602699 0.680462 -0.416804\nvn -0.846546 0.137154 -0.514343\nvn -0.843087 0.166054 -0.511498\nvn -0.887008 0.014069 -0.461541\nvn -0.887008 0.014069 -0.461541\nvn -0.876662 -0.012208 -0.480951\nvn -0.846546 0.137154 -0.514343\nvn -0.493279 0.740666 -0.456168\nvn -0.625064 0.597627 -0.502133\nvn -0.703260 0.515107 -0.489990\nvn -0.703260 0.515107 -0.489990\nvn -0.707832 0.510830 -0.487880\nvn -0.493279 0.740666 -0.456168\nvn -0.493279 0.740666 -0.456168\nvn -0.374076 0.848621 -0.374045\nvn -0.177924 0.942417 -0.283183\nvn -0.177924 0.942417 -0.283183\nvn -0.328660 0.861431 -0.387195\nvn -0.493279 0.740666 -0.456168\nvn -0.645971 -0.614017 -0.453547\nvn -0.792801 -0.237624 -0.561251\nvn -0.765999 -0.239209 -0.596679\nvn -0.792801 -0.237624 -0.561251\nvn -0.813479 0.124242 -0.568169\nvn -0.788685 0.102942 -0.606118\nvn -0.788685 0.102942 -0.606118\nvn -0.765999 -0.239209 -0.596679\nvn -0.792801 -0.237624 -0.561251\nvn -0.765999 -0.239209 -0.596679\nvn -0.788685 0.102942 -0.606118\nvn -0.770613 0.102331 -0.629034\nvn -0.770613 0.102331 -0.629034\nvn -0.755302 -0.241869 -0.609113\nvn -0.765999 -0.239209 -0.596679\nvn -0.620520 -0.614814 -0.486784\nvn -0.765999 -0.239209 -0.596679\nvn -0.755302 -0.241869 -0.609113\nvn -0.755302 -0.241869 -0.609113\nvn -0.609526 -0.616942 -0.497857\nvn -0.620520 -0.614814 -0.486784\nvn -0.372208 -0.880226 -0.294385\nvn -0.620520 -0.614814 -0.486784\nvn -0.609526 -0.616942 -0.497857\nvn -0.620520 -0.614814 -0.486784\nvn -0.372208 -0.880226 -0.294385\nvn -0.394027 -0.879061 -0.268320\nvn -0.160899 -0.981937 -0.099555\nvn -0.394027 -0.879061 -0.268320\nvn -0.372208 -0.880226 -0.294385\nvn -0.372208 -0.880226 -0.294385\nvn -0.143806 -0.982628 -0.117316\nvn -0.160899 -0.981937 -0.099555\nvn -0.085636 -0.995380 -0.043429\nvn -0.160899 -0.981937 -0.099555\nvn -0.143806 -0.982628 -0.117316\nvn -0.143806 -0.982628 -0.117316\nvn -0.069308 -0.995857 -0.058871\nvn -0.085636 -0.995380 -0.043429\nvn -0.069308 -0.995857 -0.058871\nvn -0.143806 -0.982628 -0.117316\nvn -0.136788 -0.983030 -0.122230\nvn -0.136788 -0.983030 -0.122230\nvn -0.063601 -0.995929 -0.063876\nvn -0.069308 -0.995857 -0.058871\nvn -0.362047 -0.881847 -0.302108\nvn -0.136788 -0.983030 -0.122230\nvn -0.143806 -0.982628 -0.117316\nvn -0.143806 -0.982628 -0.117316\nvn -0.372208 -0.880226 -0.294385\nvn -0.362047 -0.881847 -0.302108\nvn -0.609526 -0.616942 -0.497857\nvn -0.362047 -0.881847 -0.302108\nvn -0.372208 -0.880226 -0.294385\nvn -0.394027 -0.879061 -0.268320\nvn -0.645971 -0.614017 -0.453547\nvn -0.620520 -0.614814 -0.486784\nvn -0.765999 -0.239209 -0.596679\nvn -0.620520 -0.614814 -0.486784\nvn -0.645971 -0.614017 -0.453547\nvn -0.733768 0.287245 -0.615690\nvn -0.770613 0.102331 -0.629034\nvn -0.788685 0.102942 -0.606118\nvn -0.788685 0.102942 -0.606118\nvn -0.714025 0.450950 -0.535549\nvn -0.733768 0.287245 -0.615690\nvn -0.645385 0.486167 -0.589169\nvn -0.733768 0.287245 -0.615690\nvn -0.714025 0.450950 -0.535549\nvn -0.714025 0.450950 -0.535549\nvn -0.699071 0.508631 -0.502588\nvn -0.645385 0.486167 -0.589169\nvn -0.623075 0.566248 -0.539575\nvn -0.645385 0.486167 -0.589169\nvn -0.699071 0.508631 -0.502588\nvn -0.699071 0.508631 -0.502588\nvn -0.707618 0.481623 -0.517026\nvn -0.623075 0.566248 -0.539575\nvn -0.707618 0.481623 -0.517026\nvn -0.699071 0.508631 -0.502588\nvn -0.843087 0.166054 -0.511498\nvn -0.843087 0.166054 -0.511498\nvn -0.846546 0.137154 -0.514343\nvn -0.707618 0.481623 -0.517026\nvn -0.436759 0.786996 -0.435752\nvn -0.707618 0.481623 -0.517026\nvn -0.625064 0.597627 -0.502133\nvn -0.625064 0.597627 -0.502133\nvn -0.493279 0.740666 -0.456168\nvn -0.436759 0.786996 -0.435752\nvn -0.707618 0.481623 -0.517026\nvn -0.436759 0.786996 -0.435752\nvn -0.373650 0.807697 -0.456083\nvn -0.373650 0.807697 -0.456083\nvn -0.623075 0.566248 -0.539575\nvn -0.707618 0.481623 -0.517026\nvn -0.092626 0.956229 -0.277573\nvn -0.373650 0.807697 -0.456083\nvn -0.436759 0.786996 -0.435752\nvn -0.436759 0.786996 -0.435752\nvn -0.104652 0.958070 -0.266741\nvn -0.092626 0.956229 -0.277573\nvn -0.104652 0.958070 -0.266741\nvn -0.436759 0.786996 -0.435752\nvn -0.493279 0.740666 -0.456168\nvn -0.493279 0.740666 -0.456168\nvn -0.328660 0.861431 -0.387195\nvn -0.104652 0.958070 -0.266741\nvn -0.719153 0.488580 -0.494074\nvn -0.602699 0.680462 -0.416804\nvn -0.699071 0.508631 -0.502588\nvn -0.699071 0.508631 -0.502588\nvn -0.714025 0.450950 -0.535549\nvn -0.719153 0.488580 -0.494074\nvn -0.813479 0.124242 -0.568169\nvn -0.719153 0.488580 -0.494074\nvn -0.714025 0.450950 -0.535549\nvn -0.714025 0.450950 -0.535549\nvn -0.788685 0.102942 -0.606118\nvn -0.813479 0.124242 -0.568169\nvn -0.411984 0.731585 -0.543188\nvn -0.645385 0.486167 -0.589169\nvn -0.623075 0.566248 -0.539575\nvn -0.623075 0.566248 -0.539575\nvn -0.373650 0.807697 -0.456083\nvn -0.411984 0.731585 -0.543188\nvn -0.411984 0.731585 -0.543188\nvn -0.373650 0.807697 -0.456083\nvn -0.092626 0.956229 -0.277573\nvn -0.092626 0.956229 -0.277573\nvn -0.119422 0.921256 -0.370169\nvn -0.411984 0.731585 -0.543188\nvn 0.159128 0.977138 -0.140999\nvn -0.119422 0.921256 -0.370169\nvn -0.092626 0.956229 -0.277573\nvn -0.092626 0.956229 -0.277573\nvn 0.157844 0.982833 -0.095524\nvn 0.159128 0.977138 -0.140999\nvn 0.157844 0.982833 -0.095524\nvn -0.092626 0.956229 -0.277573\nvn -0.104652 0.958070 -0.266741\nvn 0.260693 0.964675 -0.037966\nvn 0.159128 0.977138 -0.140999\nvn 0.157844 0.982833 -0.095524\nvn 0.157844 0.982833 -0.095524\nvn 0.225963 0.972978 -0.047488\nvn 0.260693 0.964675 -0.037966\nvn 0.158575 0.982185 -0.100834\nvn -0.104652 0.958070 -0.266741\nvn 0.087834 0.983388 -0.158852\nvn -0.104652 0.958070 -0.266741\nvn 0.158575 0.982185 -0.100834\nvn 0.157844 0.982833 -0.095524\nvn 0.225963 0.972978 -0.047488\nvn 0.157844 0.982833 -0.095524\nvn 0.158575 0.982185 -0.100834\nvn 0.087834 0.983388 -0.158852\nvn 0.159158 0.979577 -0.122871\nvn 0.158575 0.982185 -0.100834\nvn 0.159158 0.979577 -0.122871\nvn 0.087834 0.983388 -0.158852\nvn -0.177924 0.942417 -0.283183\nvn -0.177924 0.942417 -0.283183\nvn 0.104497 0.983449 -0.148018\nvn 0.159158 0.979577 -0.122871\nvn 0.104497 0.983449 -0.148018\nvn -0.177924 0.942417 -0.283183\nvn -0.165842 0.952108 -0.256880\nvn -0.165842 0.952108 -0.256880\nvn -0.177924 0.942417 -0.283183\nvn -0.374076 0.848621 -0.374045\nvn -0.374076 0.848621 -0.374045\nvn -0.364184 0.864513 -0.346391\nvn -0.165842 0.952108 -0.256880\nvn -0.739664 0.486293 -0.465205\nvn -0.741222 0.483181 -0.465968\nvn -0.707832 0.510830 -0.487880\nvn -0.707832 0.510830 -0.487880\nvn -0.703260 0.515107 -0.489990\nvn -0.739664 0.486293 -0.465205\nvn -0.900295 -0.026949 -0.434445\nvn -0.899442 -0.037570 -0.435423\nvn -0.876662 -0.012208 -0.480951\nvn -0.876662 -0.012208 -0.480951\nvn -0.887008 0.014069 -0.461541\nvn -0.900295 -0.026949 -0.434445\nvn -0.627417 0.663155 -0.408135\nvn -0.640200 0.644716 -0.417715\nvn -0.738199 0.481105 -0.472865\nvn -0.738199 0.481105 -0.472865\nvn -0.725478 0.516939 -0.454374\nvn -0.627417 0.663155 -0.408135\nvn -0.725478 0.516939 -0.454374\nvn -0.738199 0.481105 -0.472865\nvn -0.840721 0.150247 -0.520205\nvn -0.840721 0.150247 -0.520205\nvn -0.847429 0.205486 -0.489530\nvn -0.725478 0.516939 -0.454374\nvn -0.869148 -0.156227 -0.469228\nvn -0.847429 0.205486 -0.489530\nvn -0.840721 0.150247 -0.520205\nvn -0.840721 0.150247 -0.520205\nvn -0.836357 -0.230880 -0.497193\nvn -0.869148 -0.156227 -0.469228\nvn -0.869148 -0.156227 -0.469228\nvn -0.836357 -0.230880 -0.497193\nvn -0.692357 -0.609681 -0.385915\nvn -0.692357 -0.609681 -0.385915\nvn -0.762140 -0.529885 -0.371975\nvn -0.869148 -0.156227 -0.469228\nvn -0.509764 -0.841266 -0.180034\nvn -0.762140 -0.529885 -0.371975\nvn -0.692357 -0.609681 -0.385915\nvn -0.692357 -0.609681 -0.385915\nvn -0.434008 -0.877752 -0.202950\nvn -0.509764 -0.841266 -0.180034\nvn -0.509764 -0.841266 -0.180034\nvn -0.434008 -0.877752 -0.202950\nvn -0.208412 -0.977177 -0.041109\nvn -0.208412 -0.977177 -0.041109\nvn -0.251385 -0.967882 -0.003143\nvn -0.509764 -0.841266 -0.180034\nvn -0.164497 -0.984514 0.060611\nvn -0.251385 -0.967882 -0.003143\nvn -0.208412 -0.977177 -0.041109\nvn -0.208412 -0.977177 -0.041109\nvn -0.140694 -0.989957 0.013795\nvn -0.164497 -0.984514 0.060611\nvn -0.067448 -0.987153 -0.144845\nvn -0.024323 -0.996993 -0.073581\nvn -0.023164 -0.996991 -0.073978\nvn -0.023164 -0.996991 -0.073978\nvn -0.069247 -0.986549 -0.148077\nvn -0.067448 -0.987153 -0.144845\nvn -0.067448 -0.987153 -0.144845\nvn -0.069247 -0.986549 -0.148077\nvn -0.230941 -0.896391 -0.378351\nvn -0.230941 -0.896391 -0.378351\nvn -0.230204 -0.897073 -0.377183\nvn -0.067448 -0.987153 -0.144845\nvn -0.422263 -0.637454 -0.644473\nvn -0.230204 -0.897073 -0.377183\nvn -0.230941 -0.896391 -0.378351\nvn -0.230941 -0.896391 -0.378351\nvn -0.420282 -0.641945 -0.641303\nvn -0.422263 -0.637454 -0.644473\nvn -0.422263 -0.637454 -0.644473\nvn -0.420282 -0.641945 -0.641303\nvn -0.536530 -0.265274 -0.801102\nvn -0.536530 -0.265274 -0.801102\nvn -0.538028 -0.252793 -0.804128\nvn -0.422263 -0.637454 -0.644473\nvn -0.555814 0.159157 -0.815929\nvn -0.538028 -0.252793 -0.804128\nvn -0.536530 -0.265274 -0.801102\nvn -0.536530 -0.265274 -0.801102\nvn -0.556700 0.144233 -0.818097\nvn -0.555814 0.159157 -0.815929\nvn -0.555814 0.159157 -0.815929\nvn -0.556700 0.144233 -0.818097\nvn -0.492178 0.500723 -0.712066\nvn -0.492178 0.500723 -0.712066\nvn -0.487366 0.514254 -0.705703\nvn -0.555814 0.159157 -0.815929\nvn -0.366537 0.773602 -0.516905\nvn -0.487366 0.514254 -0.705703\nvn -0.492178 0.500723 -0.712066\nvn -0.492178 0.500723 -0.712066\nvn -0.371639 0.766136 -0.524329\nvn -0.366537 0.773602 -0.516905\nvn -0.366537 0.773602 -0.516905\nvn -0.371639 0.766136 -0.524329\nvn -0.194099 0.946445 -0.258005\nvn -0.194099 0.946445 -0.258005\nvn -0.188731 0.949727 -0.249800\nvn -0.366537 0.773602 -0.516905\nvn 0.004272 0.999393 0.034578\nvn -0.188731 0.949727 -0.249800\nvn -0.194099 0.946445 -0.258005\nvn -0.194099 0.946445 -0.258005\nvn 0.003448 0.999465 0.032533\nvn 0.004272 0.999393 0.034578\nvn 0.004272 0.999393 0.034578\nvn 0.003448 0.999465 0.032533\nvn 0.077121 0.986215 0.146399\nvn 0.077121 0.986215 0.146399\nvn 0.074803 0.986357 0.146646\nvn 0.004272 0.999393 0.034578\nvn -0.912695 0.033784 -0.407243\nvn -0.868239 0.169564 -0.466271\nvn -0.866241 0.226303 -0.445435\nvn -0.866241 0.226303 -0.445435\nvn -0.912161 -0.024782 -0.409081\nvn -0.912695 0.033784 -0.407243\nvn -0.763408 0.451653 -0.461756\nvn -0.866241 0.226303 -0.445435\nvn -0.868239 0.169564 -0.466271\nvn -0.868239 0.169564 -0.466271\nvn -0.669933 0.501710 -0.547245\nvn -0.763408 0.451653 -0.461756\nvn -0.302141 0.813093 -0.497585\nvn -0.669933 0.501710 -0.547245\nvn -0.203534 0.823229 -0.529969\nvn -0.203534 0.823229 -0.529969\nvn -0.098181 0.886649 -0.451901\nvn -0.302141 0.813093 -0.497585\nvn 0.198525 0.910410 -0.362962\nvn -0.098181 0.886649 -0.451901\nvn -0.203534 0.823229 -0.529969\nvn -0.203534 0.823229 -0.529969\nvn 0.126104 0.878399 -0.460990\nvn 0.198525 0.910410 -0.362962\nvn 0.272960 0.893256 -0.357193\nvn 0.198525 0.910410 -0.362962\nvn 0.126104 0.878399 -0.460990\nvn 0.126104 0.878399 -0.460990\nvn 0.199838 0.866313 -0.457785\nvn 0.272960 0.893256 -0.357193\nvn -0.165842 0.952108 -0.256880\nvn 0.075962 0.986779 -0.143166\nvn 0.104497 0.983449 -0.148018\nvn 0.165629 0.979097 -0.118050\nvn 0.104497 0.983449 -0.148018\nvn 0.075962 0.986779 -0.143166\nvn 0.075962 0.986779 -0.143166\nvn 0.124822 0.984323 -0.124608\nvn 0.165629 0.979097 -0.118050\nvn 0.104497 0.983449 -0.148018\nvn 0.165629 0.979097 -0.118050\nvn 0.234231 0.968177 -0.088138\nvn 0.234231 0.968177 -0.088138\nvn 0.159158 0.979577 -0.122871\nvn 0.104497 0.983449 -0.148018\nvn 0.159158 0.979577 -0.122871\nvn 0.234231 0.968177 -0.088138\nvn 0.228676 0.971774 -0.057985\nvn 0.228676 0.971774 -0.057985\nvn 0.158575 0.982185 -0.100834\nvn 0.159158 0.979577 -0.122871\nvn 0.158575 0.982185 -0.100834\nvn 0.228676 0.971774 -0.057985\nvn 0.225963 0.972978 -0.047488\nvn -0.002228 -0.975342 -0.220686\nvn 0.050020 -0.988194 -0.144811\nvn 0.130469 -0.970138 -0.204477\nvn 0.130469 -0.970138 -0.204477\nvn 0.072361 -0.956502 -0.282608\nvn -0.002228 -0.975342 -0.220686\nvn -0.484767 -0.861466 0.151253\nvn -0.442528 -0.867874 0.225751\nvn -0.438899 -0.870078 0.224348\nvn -0.438899 -0.870078 0.224348\nvn -0.474487 -0.866266 0.156352\nvn -0.484767 -0.861466 0.151253\nvn -0.748247 -0.471924 0.466277\nvn -0.754741 -0.475063 0.452417\nvn -0.726486 -0.470977 0.500398\nvn -0.754741 -0.475063 0.452417\nvn -0.748247 -0.471924 0.466277\nvn -0.831748 -0.429257 0.352042\nvn -0.831748 -0.429257 0.352042\nvn -0.843558 -0.423061 0.330801\nvn -0.754741 -0.475063 0.452417\nvn -0.843558 -0.423061 0.330801\nvn -0.831748 -0.429257 0.352042\nvn -0.931830 -0.296155 0.209725\nvn -0.931830 -0.296155 0.209725\nvn -0.936676 -0.287769 0.199567\nvn -0.843558 -0.423061 0.330801\nvn -0.936676 -0.287769 0.199567\nvn -0.931830 -0.296155 0.209725\nvn -0.986808 -0.097204 0.129463\nvn -0.986808 -0.097204 0.129463\nvn -0.987361 -0.092871 0.128425\nvn -0.936676 -0.287769 0.199567\nvn -0.987361 -0.092871 0.128425\nvn -0.986808 -0.097204 0.129463\nvn -0.986412 0.116431 0.115912\nvn -0.986412 0.116431 0.115912\nvn -0.986686 0.112799 0.117163\nvn -0.987361 -0.092871 0.128425\nvn -0.986686 0.112799 0.117163\nvn -0.986412 0.116431 0.115912\nvn -0.940243 0.297930 0.164866\nvn -0.940243 0.297930 0.164866\nvn -0.941945 0.292435 0.164987\nvn -0.986686 0.112799 0.117163\nvn -0.941945 0.292435 0.164987\nvn -0.940243 0.297930 0.164866\nvn -0.870133 0.423789 0.251539\nvn -0.870133 0.423789 0.251539\nvn -0.870896 0.420829 0.253859\nvn -0.941945 0.292435 0.164987\nvn -0.870896 0.420829 0.253859\nvn -0.870133 0.423789 0.251539\nvn -0.782675 0.490938 0.382624\nvn -0.782675 0.490938 0.382624\nvn -0.786229 0.484000 0.384172\nvn -0.870896 0.420829 0.253859\nvn -0.786229 0.484000 0.384172\nvn -0.782675 0.490938 0.382624\nvn -0.696825 0.501102 0.513158\nvn -0.696825 0.501102 0.513158\nvn -0.707713 0.492704 0.506346\nvn -0.786229 0.484000 0.384172\nvn -0.707713 0.492704 0.506346\nvn -0.696825 0.501102 0.513158\nvn -0.673411 0.486204 0.556887\nvn -0.673411 0.486204 0.556887\nvn -0.681361 0.478991 0.553457\nvn -0.707713 0.492704 0.506346\nvn -0.402555 0.871672 0.279530\nvn -0.345781 0.856884 0.382343\nvn -0.343070 0.860009 0.377740\nvn -0.343070 0.860009 0.377740\nvn -0.404590 0.871773 0.276257\nvn -0.402555 0.871672 0.279530\nvn 0.147802 0.982277 -0.115269\nvn 0.226082 0.974065 -0.009125\nvn 0.141547 0.988112 0.060000\nvn 0.141547 0.988112 0.060000\nvn 0.066105 0.996554 -0.050113\nvn 0.147802 0.982277 -0.115269\nvn -0.549619 0.833935 0.049716\nvn -0.552574 0.832371 0.042665\nvn -0.402555 0.871672 0.279530\nvn -0.402555 0.871672 0.279530\nvn -0.404590 0.871773 0.276257\nvn -0.549619 0.833935 0.049716\nvn -0.698547 0.691283 -0.184822\nvn -0.552574 0.832371 0.042665\nvn -0.549619 0.833935 0.049716\nvn -0.042666 0.923440 -0.381364\nvn 0.147802 0.982277 -0.115269\nvn 0.066105 0.996554 -0.050113\nvn 0.066105 0.996554 -0.050113\nvn -0.119117 0.938225 -0.324878\nvn -0.042666 0.923440 -0.381364\nvn -0.549619 0.833935 0.049716\nvn -0.694590 0.696420 -0.180400\nvn -0.698547 0.691283 -0.184822\nvn -0.288498 0.762643 -0.578918\nvn -0.216841 0.747392 -0.628000\nvn -0.042666 0.923440 -0.381364\nvn -0.042666 0.923440 -0.381364\nvn -0.119117 0.938225 -0.324878\nvn -0.288498 0.762643 -0.578918\nvn -0.330832 0.485138 -0.809439\nvn -0.216841 0.747392 -0.628000\nvn -0.288498 0.762643 -0.578918\nvn -0.288498 0.762643 -0.578918\nvn -0.403924 0.503661 -0.763656\nvn -0.330832 0.485138 -0.809439\nvn -0.698547 0.691283 -0.184822\nvn -0.694590 0.696420 -0.180400\nvn -0.813673 0.472895 -0.338092\nvn -0.813673 0.472895 -0.338092\nvn -0.815328 0.468535 -0.340170\nvn -0.698547 0.691283 -0.184822\nvn -0.889371 0.150950 -0.431547\nvn -0.815328 0.468535 -0.340170\nvn -0.813673 0.472895 -0.338092\nvn -0.813673 0.472895 -0.338092\nvn -0.888693 0.156594 -0.430933\nvn -0.889371 0.150950 -0.431547\nvn -0.466247 0.145456 -0.872615\nvn -0.388720 0.130133 -0.912120\nvn -0.330832 0.485138 -0.809439\nvn -0.330832 0.485138 -0.809439\nvn -0.403924 0.503661 -0.763656\nvn -0.466247 0.145456 -0.872615\nvn -0.889371 0.150950 -0.431547\nvn -0.888693 0.156594 -0.430933\nvn -0.885032 -0.208021 -0.416468\nvn -0.363734 -0.267475 -0.892275\nvn -0.388720 0.130133 -0.912120\nvn -0.466247 0.145456 -0.872615\nvn -0.466247 0.145456 -0.872615\nvn -0.446587 -0.262526 -0.855360\nvn -0.363734 -0.267475 -0.892275\nvn -0.885032 -0.208021 -0.416468\nvn -0.883263 -0.218794 -0.414698\nvn -0.889371 0.150950 -0.431547\nvn -0.784242 -0.553276 -0.280804\nvn -0.883263 -0.218794 -0.414698\nvn -0.885032 -0.208021 -0.416468\nvn -0.885032 -0.208021 -0.416468\nvn -0.788120 -0.543725 -0.288495\nvn -0.784242 -0.553276 -0.280804\nvn -0.333974 -0.628457 -0.702497\nvn -0.256728 -0.619022 -0.742228\nvn -0.363734 -0.267475 -0.892275\nvn -0.363734 -0.267475 -0.892275\nvn -0.446587 -0.262526 -0.855360\nvn -0.333974 -0.628457 -0.702497\nvn -0.784242 -0.553276 -0.280804\nvn -0.788120 -0.543725 -0.288495\nvn -0.628337 -0.775899 -0.056339\nvn -0.081332 -0.862522 -0.499440\nvn -0.256728 -0.619022 -0.742228\nvn -0.333974 -0.628457 -0.702497\nvn -0.333974 -0.628457 -0.702497\nvn -0.156471 -0.880690 -0.447105\nvn -0.081332 -0.862522 -0.499440\nvn -0.628337 -0.775899 -0.056339\nvn -0.617617 -0.785228 -0.044344\nvn -0.784242 -0.553276 -0.280804\nvn -0.474487 -0.866266 0.156352\nvn -0.617617 -0.785228 -0.044344\nvn -0.628337 -0.775899 -0.056339\nvn -0.628337 -0.775899 -0.056339\nvn -0.484767 -0.861466 0.151253\nvn -0.474487 -0.866266 0.156352\nvn -0.002228 -0.975342 -0.220686\nvn 0.072361 -0.956502 -0.282608\nvn -0.081332 -0.862522 -0.499440\nvn -0.081332 -0.862522 -0.499440\nvn -0.156471 -0.880690 -0.447105\nvn -0.002228 -0.975342 -0.220686\nvn 0.655621 -0.468658 -0.592048\nvn 0.654052 -0.464651 -0.596921\nvn 0.580630 -0.425500 -0.694131\nvn 0.580630 -0.425500 -0.694131\nvn 0.580946 -0.430238 -0.690939\nvn 0.655621 -0.468658 -0.592048\nvn 0.654052 -0.464651 -0.596921\nvn 0.655621 -0.468658 -0.592048\nvn 0.678633 -0.470306 -0.564154\nvn 0.678633 -0.470306 -0.564154\nvn 0.678921 -0.468402 -0.565391\nvn 0.654052 -0.464651 -0.596921\nvn 0.580946 -0.430238 -0.690939\nvn 0.580630 -0.425500 -0.694131\nvn 0.492180 -0.322067 -0.808723\nvn 0.492180 -0.322067 -0.808723\nvn 0.490137 -0.318711 -0.811289\nvn 0.580946 -0.430238 -0.690939\nvn 0.490137 -0.318711 -0.811289\nvn 0.492180 -0.322067 -0.808723\nvn 0.438473 -0.157083 -0.884911\nvn 0.438473 -0.157083 -0.884911\nvn 0.437215 -0.145972 -0.887432\nvn 0.490137 -0.318711 -0.811289\nvn 0.437215 -0.145972 -0.887432\nvn 0.438473 -0.157083 -0.884911\nvn 0.421008 0.031709 -0.906503\nvn 0.421008 0.031709 -0.906503\nvn 0.420408 0.043735 -0.906281\nvn 0.437215 -0.145972 -0.887432\nvn 0.420408 0.043735 -0.906281\nvn 0.421008 0.031709 -0.906503\nvn 0.443346 0.213143 -0.870640\nvn 0.443346 0.213143 -0.870640\nvn 0.441882 0.220773 -0.869482\nvn 0.420408 0.043735 -0.906281\nvn 0.441882 0.220773 -0.869482\nvn 0.443346 0.213143 -0.870640\nvn 0.499233 0.361958 -0.787244\nvn 0.499233 0.361958 -0.787244\nvn 0.492465 0.360284 -0.792259\nvn 0.441882 0.220773 -0.869482\nvn 0.492465 0.360284 -0.792259\nvn 0.499233 0.361958 -0.787244\nvn 0.612739 0.447903 -0.651102\nvn 0.612739 0.447903 -0.651102\nvn 0.602546 0.443113 -0.663769\nvn 0.492465 0.360284 -0.792259\nvn 0.602546 0.443113 -0.663769\nvn 0.612739 0.447903 -0.651102\nvn 0.728065 0.455529 -0.512264\nvn 0.728065 0.455529 -0.512264\nvn 0.728498 0.450497 -0.516083\nvn 0.602546 0.443113 -0.663769\nvn 0.728498 0.450497 -0.516083\nvn 0.728065 0.455529 -0.512264\nvn 0.773975 0.435941 -0.459258\nvn 0.773975 0.435941 -0.459258\nvn 0.779276 0.427971 -0.457788\nvn 0.728498 0.450497 -0.516083\nvn -0.149969 -0.980053 -0.130407\nvn -0.064487 -0.995934 -0.062900\nvn -0.064426 -0.995936 -0.062931\nvn -0.064426 -0.995936 -0.062931\nvn -0.137670 -0.983040 -0.121159\nvn -0.149969 -0.980053 -0.130407\nvn -0.149969 -0.980053 -0.130407\nvn -0.137670 -0.983040 -0.121159\nvn -0.363453 -0.881914 -0.300217\nvn -0.363453 -0.881914 -0.300217\nvn -0.387414 -0.865533 -0.317433\nvn -0.149969 -0.980053 -0.130407\nvn -0.624673 -0.597389 -0.502901\nvn -0.387414 -0.865533 -0.317433\nvn -0.363453 -0.881914 -0.300217\nvn -0.363453 -0.881914 -0.300217\nvn -0.611181 -0.617804 -0.494749\nvn -0.624673 -0.597389 -0.502901\nvn -0.624673 -0.597389 -0.502901\nvn -0.611181 -0.617804 -0.494749\nvn -0.756438 -0.244791 -0.606530\nvn -0.756438 -0.244791 -0.606530\nvn -0.760767 -0.228981 -0.607289\nvn -0.624673 -0.597389 -0.502901\nvn -0.769117 0.150399 -0.621159\nvn -0.760767 -0.228981 -0.607289\nvn -0.756438 -0.244791 -0.606530\nvn -0.756438 -0.244791 -0.606530\nvn -0.773917 0.145639 -0.616313\nvn -0.769117 0.150399 -0.621159\nvn -0.769117 0.150399 -0.621159\nvn -0.773917 0.145639 -0.616313\nvn -0.645385 0.486167 -0.589169\nvn -0.645385 0.486167 -0.589169\nvn -0.636472 0.487936 -0.597346\nvn -0.769117 0.150399 -0.621159\nvn -0.373825 0.726835 -0.576164\nvn -0.636472 0.487936 -0.597346\nvn -0.645385 0.486167 -0.589169\nvn -0.645385 0.486167 -0.589169\nvn -0.411984 0.731585 -0.543188\nvn -0.373825 0.726835 -0.576164\nvn -0.373825 0.726835 -0.576164\nvn -0.411984 0.731585 -0.543188\nvn -0.119422 0.921256 -0.370169\nvn -0.119422 0.921256 -0.370169\nvn -0.028322 0.916817 -0.398302\nvn -0.373825 0.726835 -0.576164\nvn 0.195598 0.969140 -0.150033\nvn -0.028322 0.916817 -0.398302\nvn -0.119422 0.921256 -0.370169\nvn -0.119422 0.921256 -0.370169\nvn 0.159128 0.977138 -0.140999\nvn 0.195598 0.969140 -0.150033\nvn 0.195598 0.969140 -0.150033\nvn 0.159128 0.977138 -0.140999\nvn 0.260693 0.964675 -0.037966\nvn 0.260693 0.964675 -0.037966\nvn 0.289255 0.956177 -0.045351\nvn 0.195598 0.969140 -0.150033\nvn -0.755302 -0.241869 -0.609113\nvn -0.756438 -0.244791 -0.606530\nvn -0.611181 -0.617804 -0.494749\nvn -0.773917 0.145639 -0.616313\nvn -0.756438 -0.244791 -0.606530\nvn -0.755302 -0.241869 -0.609113\nvn -0.611181 -0.617804 -0.494749\nvn -0.609526 -0.616942 -0.497857\nvn -0.755302 -0.241869 -0.609113\nvn -0.755302 -0.241869 -0.609113\nvn -0.770613 0.102331 -0.629034\nvn -0.773917 0.145639 -0.616313\nvn -0.645385 0.486167 -0.589169\nvn -0.773917 0.145639 -0.616313\nvn -0.770613 0.102331 -0.629034\nvn -0.770613 0.102331 -0.629034\nvn -0.733768 0.287245 -0.615690\nvn -0.645385 0.486167 -0.589169\nvn -0.362047 -0.881847 -0.302108\nvn -0.609526 -0.616942 -0.497857\nvn -0.611181 -0.617804 -0.494749\nvn -0.611181 -0.617804 -0.494749\nvn -0.363453 -0.881914 -0.300217\nvn -0.362047 -0.881847 -0.302108\nvn -0.362047 -0.881847 -0.302108\nvn -0.363453 -0.881914 -0.300217\nvn -0.137670 -0.983040 -0.121159\nvn -0.137670 -0.983040 -0.121159\nvn -0.136788 -0.983030 -0.122230\nvn -0.362047 -0.881847 -0.302108\nvn -0.063601 -0.995929 -0.063876\nvn -0.136788 -0.983030 -0.122230\nvn -0.137670 -0.983040 -0.121159\nvn -0.137670 -0.983040 -0.121159\nvn -0.064426 -0.995936 -0.062931\nvn -0.063601 -0.995929 -0.063876\nvn -0.072331 -0.983372 -0.166576\nvn -0.021759 -0.995576 -0.091403\nvn 0.050020 -0.988194 -0.144811\nvn 0.050020 -0.988194 -0.144811\nvn -0.002228 -0.975342 -0.220686\nvn -0.072331 -0.983372 -0.166576\nvn -0.072331 -0.983372 -0.166576\nvn -0.002228 -0.975342 -0.220686\nvn -0.156471 -0.880690 -0.447105\nvn -0.156471 -0.880690 -0.447105\nvn -0.229811 -0.887873 -0.398584\nvn -0.072331 -0.983372 -0.166576\nvn -0.405512 -0.648020 -0.644693\nvn -0.229811 -0.887873 -0.398584\nvn -0.156471 -0.880690 -0.447105\nvn -0.156471 -0.880690 -0.447105\nvn -0.333974 -0.628457 -0.702497\nvn -0.405512 -0.648020 -0.644693\nvn -0.405512 -0.648020 -0.644693\nvn -0.333974 -0.628457 -0.702497\nvn -0.446587 -0.262526 -0.855360\nvn -0.446587 -0.262526 -0.855360\nvn -0.507081 -0.537295 -0.673931\nvn -0.405512 -0.648020 -0.644693\nvn -0.553537 0.232194 -0.799801\nvn -0.584373 0.154089 -0.796722\nvn -0.446587 -0.262526 -0.855360\nvn -0.446587 -0.262526 -0.855360\nvn -0.466247 0.145456 -0.872615\nvn -0.553537 0.232194 -0.799801\nvn -0.553537 0.232194 -0.799801\nvn -0.466247 0.145456 -0.872615\nvn -0.403924 0.503661 -0.763656\nvn -0.403924 0.503661 -0.763656\nvn -0.476406 0.515653 -0.712137\nvn -0.553537 0.232194 -0.799801\nvn -0.360005 0.771220 -0.524992\nvn -0.476406 0.515653 -0.712137\nvn -0.403924 0.503661 -0.763656\nvn -0.403924 0.503661 -0.763656\nvn -0.288498 0.762643 -0.578918\nvn -0.360005 0.771220 -0.524992\nvn -0.360005 0.771220 -0.524992\nvn -0.288498 0.762643 -0.578918\nvn -0.119117 0.938225 -0.324878\nvn -0.119117 0.938225 -0.324878\nvn -0.194074 0.944550 -0.264879\nvn -0.360005 0.771220 -0.524992\nvn -0.014344 0.999826 0.011902\nvn -0.194074 0.944550 -0.264879\nvn -0.119117 0.938225 -0.324878\nvn -0.119117 0.938225 -0.324878\nvn 0.066105 0.996554 -0.050113\nvn -0.014344 0.999826 0.011902\nvn -0.014344 0.999826 0.011902\nvn 0.066105 0.996554 -0.050113\nvn 0.141547 0.988112 0.060000\nvn 0.141547 0.988112 0.060000\nvn 0.057649 0.990879 0.121800\nvn -0.014344 0.999826 0.011902\nvn -0.429930 -0.664566 -0.611156\nvn -0.405512 -0.648020 -0.644693\nvn -0.507081 -0.537295 -0.673931\nvn -0.507081 -0.537295 -0.673931\nvn -0.591135 -0.612346 -0.524968\nvn -0.429930 -0.664566 -0.611156\nvn -0.405512 -0.648020 -0.644693\nvn -0.429930 -0.664566 -0.611156\nvn -0.227643 -0.883379 -0.409659\nvn -0.227643 -0.883379 -0.409659\nvn -0.229811 -0.887873 -0.398584\nvn -0.405512 -0.648020 -0.644693\nvn -0.229811 -0.887873 -0.398584\nvn -0.227643 -0.883379 -0.409659\nvn -0.064792 -0.982625 -0.173928\nvn -0.064792 -0.982625 -0.173928\nvn -0.072331 -0.983372 -0.166576\nvn -0.229811 -0.887873 -0.398584\nvn -0.072331 -0.983372 -0.166576\nvn -0.064792 -0.982625 -0.173928\nvn -0.012513 -0.995201 -0.097051\nvn -0.012513 -0.995201 -0.097051\nvn -0.021759 -0.995576 -0.091403\nvn -0.072331 -0.983372 -0.166576\nvn -0.726486 -0.470977 0.500398\nvn -0.726797 -0.465610 0.504949\nvn -0.748247 -0.471924 0.466277\nvn -0.241681 -0.968892 0.053287\nvn -0.173014 -0.978418 0.112982\nvn -0.166541 -0.979993 0.108983\nvn -0.166541 -0.979993 0.108983\nvn -0.243544 -0.968591 0.050174\nvn -0.241681 -0.968892 0.053287\nvn -0.241681 -0.968892 0.053287\nvn -0.243544 -0.968591 0.050174\nvn -0.519285 -0.846207 -0.119483\nvn -0.519285 -0.846207 -0.119483\nvn -0.511401 -0.851684 -0.114475\nvn -0.241681 -0.968892 0.053287\nvn -0.780645 -0.546107 -0.303908\nvn -0.511401 -0.851684 -0.114475\nvn -0.519285 -0.846207 -0.119483\nvn -0.519285 -0.846207 -0.119483\nvn -0.788076 -0.532841 -0.308248\nvn -0.780645 -0.546107 -0.303908\nvn -0.780645 -0.546107 -0.303908\nvn -0.788076 -0.532841 -0.308248\nvn -0.891410 -0.133462 -0.433101\nvn -0.891410 -0.133462 -0.433101\nvn -0.889702 -0.151010 -0.430843\nvn -0.780645 -0.546107 -0.303908\nvn -0.855306 0.206097 -0.475370\nvn -0.889702 -0.151010 -0.430843\nvn -0.891410 -0.133462 -0.433101\nvn -0.891410 -0.133462 -0.433101\nvn -0.851158 0.219313 -0.476898\nvn -0.855306 0.206097 -0.475370\nvn -0.855306 0.206097 -0.475370\nvn -0.851158 0.219313 -0.476898\nvn -0.715068 0.530700 -0.455012\nvn -0.715068 0.530700 -0.455012\nvn -0.719095 0.521391 -0.459406\nvn -0.855306 0.206097 -0.475370\nvn -0.617316 0.675669 -0.402978\nvn -0.719095 0.521391 -0.459406\nvn -0.715068 0.530700 -0.455012\nvn -0.715068 0.530700 -0.455012\nvn -0.618686 0.677221 -0.398245\nvn -0.617316 0.675669 -0.402978\nvn -0.911968 -0.042635 -0.408039\nvn -0.906821 -0.051731 -0.418329\nvn -0.908896 -0.048099 -0.414239\nvn -0.908896 -0.048099 -0.414239\nvn -0.913902 -0.039126 -0.404046\nvn -0.911968 -0.042635 -0.408039\nvn -0.780858 0.429218 -0.453908\nvn -0.779529 0.439999 -0.445798\nvn -0.781271 0.425626 -0.456573\nvn -0.781271 0.425626 -0.456573\nvn -0.782400 0.414761 -0.464569\nvn -0.780858 0.429218 -0.453908\nvn -0.308947 0.882832 -0.353780\nvn -0.318868 0.880579 -0.350577\nvn -0.096165 0.957346 -0.272472\nvn -0.096165 0.957346 -0.272472\nvn -0.140082 0.946056 -0.292158\nvn -0.308947 0.882832 -0.353780\nvn 0.116368 0.975685 -0.185737\nvn -0.140082 0.946056 -0.292158\nvn -0.096165 0.957346 -0.272472\nvn -0.096165 0.957346 -0.272472\nvn 0.127049 0.975320 -0.180580\nvn 0.116368 0.975685 -0.185737\nvn 0.116368 0.975685 -0.185737\nvn 0.127049 0.975320 -0.180580\nvn 0.179149 0.969665 -0.166301\nvn 0.179149 0.969665 -0.166301\nvn 0.185004 0.968085 -0.169074\nvn 0.116368 0.975685 -0.185737\nvn 0.434691 -0.116097 -0.893065\nvn 0.434995 -0.125832 -0.891597\nvn 0.439239 -0.075017 -0.895233\nvn 0.439239 -0.075017 -0.895233\nvn 0.441490 -0.061923 -0.895127\nvn 0.434691 -0.116097 -0.893065\nvn 0.434995 -0.125832 -0.891597\nvn 0.434691 -0.116097 -0.893065\nvn 0.438899 -0.156595 -0.884786\nvn 0.438899 -0.156595 -0.884786\nvn 0.439843 -0.165262 -0.882738\nvn 0.434995 -0.125832 -0.891597\nvn 0.441490 -0.061923 -0.895127\nvn 0.439239 -0.075017 -0.895233\nvn 0.474848 -0.034029 -0.879410\nvn 0.474848 -0.034029 -0.879410\nvn 0.481955 -0.021790 -0.875925\nvn 0.441490 -0.061923 -0.895127\nvn 0.481955 -0.021790 -0.875925\nvn 0.474848 -0.034029 -0.879410\nvn 0.527182 -0.036378 -0.848973\nvn 0.527182 -0.036378 -0.848973\nvn 0.535390 -0.032106 -0.843995\nvn 0.481955 -0.021790 -0.875925\nvn 0.535390 -0.032106 -0.843995\nvn 0.527182 -0.036378 -0.848973\nvn 0.560331 -0.081394 -0.824260\nvn 0.560331 -0.081394 -0.824260\nvn 0.564151 -0.083287 -0.821460\nvn 0.535390 -0.032106 -0.843995\nvn 0.564151 -0.083287 -0.821460\nvn 0.560331 -0.081394 -0.824260\nvn 0.549861 -0.149238 -0.821816\nvn 0.549861 -0.149238 -0.821816\nvn 0.547360 -0.161293 -0.821207\nvn 0.564151 -0.083287 -0.821460\nvn 0.501397 -0.207590 -0.839945\nvn 0.547360 -0.161293 -0.821207\nvn 0.549861 -0.149238 -0.821816\nvn 0.549861 -0.149238 -0.821816\nvn 0.500938 -0.204233 -0.841041\nvn 0.501397 -0.207590 -0.839945\nvn 0.501550 -0.211985 -0.838755\nvn 0.501397 -0.207590 -0.839945\nvn 0.500938 -0.204233 -0.841041\nvn 0.500938 -0.204233 -0.841041\nvn 0.500784 -0.206613 -0.840551\nvn 0.501550 -0.211985 -0.838755\nvn 0.501550 -0.211985 -0.838755\nvn 0.500784 -0.206613 -0.840551\nvn 0.543455 -0.161568 -0.823743\nvn 0.543455 -0.161568 -0.823743\nvn 0.554419 -0.163890 -0.815941\nvn 0.501550 -0.211985 -0.838755\nvn 0.554419 -0.163890 -0.815941\nvn 0.543455 -0.161568 -0.823743\nvn 0.594941 -0.167550 -0.786112\nvn 0.594941 -0.167550 -0.786112\nvn 0.602327 -0.176401 -0.778515\nvn 0.554419 -0.163890 -0.815941\nvn 0.602327 -0.176401 -0.778515\nvn 0.594941 -0.167550 -0.786112\nvn 0.607994 -0.205543 -0.766874\nvn 0.607994 -0.205543 -0.766874\nvn 0.608552 -0.212596 -0.764505\nvn 0.602327 -0.176401 -0.778515\nvn 0.608552 -0.212596 -0.764505\nvn 0.607994 -0.205543 -0.766874\nvn 0.606933 -0.236156 -0.758856\nvn 0.606933 -0.236156 -0.758856\nvn 0.607301 -0.241986 -0.756722\nvn 0.608552 -0.212596 -0.764505\nvn -0.435543 0.134255 0.890100\nvn -0.437246 0.126562 0.890392\nvn -0.437220 0.158517 0.885274\nvn -0.437220 0.158517 0.885274\nvn -0.434441 0.164041 0.885636\nvn -0.435543 0.134255 0.890100\nvn -0.437246 0.126562 0.890392\nvn -0.435543 0.134255 0.890100\nvn -0.429976 0.085605 0.898773\nvn -0.429976 0.085605 0.898773\nvn -0.438527 0.077915 0.895334\nvn -0.437246 0.126562 0.890392\nvn -0.438527 0.077915 0.895334\nvn -0.429976 0.085605 0.898773\nvn -0.462646 0.038455 0.885709\nvn -0.462646 0.038455 0.885709\nvn -0.475516 0.035860 0.878976\nvn -0.438527 0.077915 0.895334\nvn -0.475516 0.035860 0.878976\nvn -0.462646 0.038455 0.885709\nvn -0.520053 0.038516 0.853265\nvn -0.520053 0.038516 0.853265\nvn -0.529029 0.038821 0.847716\nvn -0.475516 0.035860 0.878976\nvn -0.529029 0.038821 0.847716\nvn -0.520053 0.038516 0.853265\nvn -0.557007 0.086369 0.826004\nvn -0.557007 0.086369 0.826004\nvn -0.561151 0.084995 0.823338\nvn -0.529029 0.038821 0.847716\nvn -0.561151 0.084995 0.823338\nvn -0.557007 0.086369 0.826004\nvn -0.545866 0.162148 0.822033\nvn -0.545866 0.162148 0.822033\nvn -0.549747 0.150095 0.821736\nvn -0.561151 0.084995 0.823338\nvn -0.549747 0.150095 0.821736\nvn -0.545866 0.162148 0.822033\nvn -0.501954 0.208906 0.839286\nvn -0.501954 0.208906 0.839286\nvn -0.501738 0.204235 0.840564\nvn -0.549747 0.150095 0.821736\nvn -0.501738 0.204235 0.840564\nvn -0.501954 0.208906 0.839286\nvn -0.500977 0.206830 0.840383\nvn -0.500977 0.206830 0.840383\nvn -0.505311 0.204572 0.838339\nvn -0.501738 0.204235 0.840564\nvn -0.505311 0.204572 0.838339\nvn -0.500977 0.206830 0.840383\nvn -0.553250 0.148109 0.819743\nvn -0.553250 0.148109 0.819743\nvn -0.550906 0.166911 0.817706\nvn -0.505311 0.204572 0.838339\nvn -0.550906 0.166911 0.817706\nvn -0.553250 0.148109 0.819743\nvn -0.599893 0.162486 0.783407\nvn -0.599893 0.162486 0.783407\nvn -0.593202 0.178232 0.785076\nvn -0.550906 0.166911 0.817706\nvn -0.593202 0.178232 0.785076\nvn -0.599893 0.162486 0.783407\nvn -0.610009 0.203194 0.765899\nvn -0.610009 0.203194 0.765899\nvn -0.606114 0.211072 0.766860\nvn -0.593202 0.178232 0.785076\nvn -0.606114 0.211072 0.766860\nvn -0.610009 0.203194 0.765899\nvn -0.602574 0.235792 0.762434\nvn -0.602574 0.235792 0.762434\nvn -0.600133 0.241744 0.762496\nvn -0.606114 0.211072 0.766860\nvn -0.322924 -0.716256 0.618625\nvn -0.414056 -0.684610 0.599889\nvn -0.395862 -0.754400 0.523615\nvn -0.395862 -0.754400 0.523615\nvn -0.301960 -0.787526 0.537236\nvn -0.322924 -0.716256 0.618625\nvn -0.301960 -0.787526 0.537236\nvn -0.395862 -0.754400 0.523615\nvn -0.377158 -0.788469 0.485869\nvn -0.377158 -0.788469 0.485869\nvn -0.281295 -0.823315 0.492976\nvn -0.301960 -0.787526 0.537236\nvn -0.641722 -0.638609 0.424702\nvn -0.377158 -0.788469 0.485869\nvn -0.395862 -0.754400 0.523615\nvn -0.395862 -0.754400 0.523615\nvn -0.653727 -0.602760 0.457517\nvn -0.641722 -0.638609 0.424702\nvn -0.653727 -0.602760 0.457517\nvn -0.395862 -0.754400 0.523615\nvn -0.414056 -0.684610 0.599889\nvn -0.414056 -0.684610 0.599889\nvn -0.663623 -0.536478 0.521340\nvn -0.653727 -0.602760 0.457517\nvn -0.904340 -0.309738 0.293654\nvn -0.653727 -0.602760 0.457517\nvn -0.663623 -0.536478 0.521340\nvn -0.663623 -0.536478 0.521340\nvn -0.899803 -0.270097 0.342641\nvn -0.904340 -0.309738 0.293654\nvn -0.653727 -0.602760 0.457517\nvn -0.904340 -0.309738 0.293654\nvn -0.906424 -0.331379 0.261886\nvn -0.906424 -0.331379 0.261886\nvn -0.641722 -0.638609 0.424702\nvn -0.653727 -0.602760 0.457517\nvn -0.976626 -0.151225 0.152750\nvn -0.906424 -0.331379 0.261886\nvn -0.904340 -0.309738 0.293654\nvn -0.904340 -0.309738 0.293654\nvn -0.972787 -0.139288 0.185158\nvn -0.976626 -0.151225 0.152750\nvn -0.972787 -0.139288 0.185158\nvn -0.904340 -0.309738 0.293654\nvn -0.899803 -0.270097 0.342641\nvn -0.899803 -0.270097 0.342641\nvn -0.995332 0.075200 0.060490\nvn -0.972787 -0.139288 0.185158\nvn -0.894851 0.395650 -0.206645\nvn -0.938557 0.316117 -0.138496\nvn -0.995332 0.075200 0.060490\nvn -0.995332 0.075200 0.060490\nvn -0.906005 0.364373 -0.215377\nvn -0.894851 0.395650 -0.206645\nvn -0.938557 0.316117 -0.138496\nvn -0.894851 0.395650 -0.206645\nvn -0.882699 0.414965 -0.220560\nvn -0.882699 0.414965 -0.220560\nvn -0.928456 0.334521 -0.161447\nvn -0.938557 0.316117 -0.138496\nvn -0.822668 0.494956 -0.279706\nvn -0.882699 0.414965 -0.220560\nvn -0.894851 0.395650 -0.206645\nvn -0.894851 0.395650 -0.206645\nvn -0.829389 0.484278 -0.278548\nvn -0.822668 0.494956 -0.279706\nvn -0.829389 0.484278 -0.278548\nvn -0.894851 0.395650 -0.206645\nvn -0.906005 0.364373 -0.215377\nvn -0.906005 0.364373 -0.215377\nvn -0.822707 0.479030 -0.306077\nvn -0.829389 0.484278 -0.278548\nvn -0.894664 -0.242535 0.375170\nvn -0.899803 -0.270097 0.342641\nvn -0.663623 -0.536478 0.521340\nvn -0.663623 -0.536478 0.521340\nvn -0.669310 -0.486013 0.561975\nvn -0.894664 -0.242535 0.375170\nvn -0.669310 -0.486013 0.561975\nvn -0.663623 -0.536478 0.521340\nvn -0.414056 -0.684610 0.599889\nvn -0.414056 -0.684610 0.599889\nvn -0.422233 -0.629887 0.651891\nvn -0.669310 -0.486013 0.561975\nvn -0.422233 -0.629887 0.651891\nvn -0.414056 -0.684610 0.599889\nvn -0.322924 -0.716256 0.618625\nvn -0.322924 -0.716256 0.618625\nvn -0.331226 -0.663611 0.670753\nvn -0.422233 -0.629887 0.651891\nvn -0.672127 -0.470181 0.571993\nvn -0.669310 -0.486013 0.561975\nvn -0.422233 -0.629887 0.651891\nvn -0.422233 -0.629887 0.651891\nvn -0.423757 -0.608642 0.670809\nvn -0.672127 -0.470181 0.571993\nvn -0.423757 -0.608642 0.670809\nvn -0.422233 -0.629887 0.651891\nvn -0.331226 -0.663611 0.670753\nvn -0.331226 -0.663611 0.670753\nvn -0.332265 -0.641580 0.691357\nvn -0.423757 -0.608642 0.670809\nvn -0.893384 -0.240887 0.379260\nvn -0.894664 -0.242535 0.375170\nvn -0.669310 -0.486013 0.561975\nvn -0.669310 -0.486013 0.561975\nvn -0.672127 -0.470181 0.571993\nvn -0.893384 -0.240887 0.379260\nvn -0.894664 -0.242535 0.375170\nvn -0.893384 -0.240887 0.379260\nvn -0.992726 0.032228 0.116003\nvn -0.992726 0.032228 0.116003\nvn -0.993381 0.059267 0.098392\nvn -0.894664 -0.242535 0.375170\nvn -0.899803 -0.270097 0.342641\nvn -0.894664 -0.242535 0.375170\nvn -0.993381 0.059267 0.098392\nvn -0.993381 0.059267 0.098392\nvn -0.995332 0.075200 0.060490\nvn -0.899803 -0.270097 0.342641\nvn -0.995332 0.075200 0.060490\nvn -0.993381 0.059267 0.098392\nvn -0.935807 0.309036 -0.169595\nvn -0.935807 0.309036 -0.169595\nvn -0.906005 0.364373 -0.215377\nvn -0.995332 0.075200 0.060490\nvn -0.906005 0.364373 -0.215377\nvn -0.935807 0.309036 -0.169595\nvn -0.882073 0.386681 -0.269120\nvn -0.882073 0.386681 -0.269120\nvn -0.822707 0.479030 -0.306077\nvn -0.906005 0.364373 -0.215377\nvn -0.910694 0.339618 -0.235151\nvn -0.882073 0.386681 -0.269120\nvn -0.935807 0.309036 -0.169595\nvn -0.935807 0.309036 -0.169595\nvn -0.954371 0.265579 -0.136544\nvn -0.910694 0.339618 -0.235151\nvn -0.954371 0.265579 -0.136544\nvn -0.935807 0.309036 -0.169595\nvn -0.993381 0.059267 0.098392\nvn -0.993381 0.059267 0.098392\nvn -0.992726 0.032228 0.116003\nvn -0.954371 0.265579 -0.136544\nvn -0.672127 -0.470181 0.571993\nvn -0.423757 -0.608642 0.670809\nvn -0.421345 -0.603025 0.677369\nvn -0.421345 -0.603025 0.677369\nvn -0.679178 -0.462429 0.569980\nvn -0.672127 -0.470181 0.571993\nvn -0.893384 -0.240887 0.379260\nvn -0.672127 -0.470181 0.571993\nvn -0.679178 -0.462429 0.569980\nvn -0.423757 -0.608642 0.670809\nvn -0.332265 -0.641580 0.691357\nvn -0.332505 -0.634889 0.697392\nvn -0.332505 -0.634889 0.697392\nvn -0.421345 -0.603025 0.677369\nvn -0.423757 -0.608642 0.670809\nvn -0.992726 0.032228 0.116003\nvn -0.893384 -0.240887 0.379260\nvn -0.901756 -0.233199 0.363944\nvn -0.679178 -0.462429 0.569980\nvn -0.901756 -0.233199 0.363944\nvn -0.893384 -0.240887 0.379260\nvn -0.901756 -0.233199 0.363944\nvn -0.995054 0.032564 0.093847\nvn -0.992726 0.032228 0.116003\nvn -0.954371 0.265579 -0.136544\nvn -0.992726 0.032228 0.116003\nvn -0.995054 0.032564 0.093847\nvn -0.910694 0.339618 -0.235151\nvn -0.954371 0.265579 -0.136544\nvn -0.956437 0.251111 -0.148903\nvn -0.995054 0.032564 0.093847\nvn -0.956437 0.251111 -0.148903\nvn -0.954371 0.265579 -0.136544\nvn -0.956437 0.251111 -0.148903\nvn -0.920725 0.316908 -0.227671\nvn -0.910694 0.339618 -0.235151\nvn -0.684734 0.189983 -0.703595\nvn -0.543917 0.260483 -0.797686\nvn -0.542879 0.302752 -0.783341\nvn -0.542879 0.302752 -0.783341\nvn -0.677675 0.220255 -0.701601\nvn -0.684734 0.189983 -0.703595\nvn -0.677675 0.220255 -0.701601\nvn -0.542879 0.302752 -0.783341\nvn -0.534851 0.340992 -0.773084\nvn -0.252514 0.428761 -0.867410\nvn -0.542879 0.302752 -0.783341\nvn -0.543917 0.260483 -0.797686\nvn -0.534851 0.340992 -0.773084\nvn -0.542879 0.302752 -0.783341\nvn -0.252514 0.428761 -0.867410\nvn -0.543917 0.260483 -0.797686\nvn -0.240676 0.369742 -0.897422\nvn -0.252514 0.428761 -0.867410\nvn -0.068333 0.486572 -0.870964\nvn -0.252514 0.428761 -0.867410\nvn -0.240676 0.369742 -0.897422\nvn -0.240676 0.369742 -0.897422\nvn -0.045443 0.422231 -0.905348\nvn -0.068333 0.486572 -0.870964\nvn -0.252514 0.428761 -0.867410\nvn -0.068333 0.486572 -0.870964\nvn -0.084508 0.542724 -0.835649\nvn -0.084508 0.542724 -0.835649\nvn -0.255415 0.492305 -0.832105\nvn -0.252514 0.428761 -0.867410\nvn -0.252514 0.428761 -0.867410\nvn -0.255415 0.492305 -0.832105\nvn -0.534851 0.340992 -0.773084\nvn -0.016023 0.507010 -0.861791\nvn -0.068333 0.486572 -0.870964\nvn -0.045443 0.422231 -0.905348\nvn -0.045443 0.422231 -0.905348\nvn 0.010163 0.441027 -0.897436\nvn -0.016023 0.507010 -0.861791\nvn -0.068333 0.486572 -0.870964\nvn -0.016023 0.507010 -0.861791\nvn -0.042300 0.539098 -0.841180\nvn -0.042300 0.539098 -0.841180\nvn -0.084508 0.542724 -0.835649\nvn -0.068333 0.486572 -0.870964\nvn -0.281295 -0.823315 0.492976\nvn -0.377158 -0.788469 0.485869\nvn -0.361045 -0.806355 0.468443\nvn -0.361045 -0.806355 0.468443\nvn -0.265977 -0.836600 0.478912\nvn -0.281295 -0.823315 0.492976\nvn -0.627933 -0.665594 0.403342\nvn -0.361045 -0.806355 0.468443\nvn -0.377158 -0.788469 0.485869\nvn -0.377158 -0.788469 0.485869\nvn -0.641722 -0.638609 0.424702\nvn -0.627933 -0.665594 0.403342\nvn -0.905235 -0.353567 0.235671\nvn -0.627933 -0.665594 0.403342\nvn -0.641722 -0.638609 0.424702\nvn -0.641722 -0.638609 0.424702\nvn -0.906424 -0.331379 0.261886\nvn -0.905235 -0.353567 0.235671\nvn -0.980390 -0.154243 0.122656\nvn -0.905235 -0.353567 0.235671\nvn -0.906424 -0.331379 0.261886\nvn -0.906424 -0.331379 0.261886\nvn -0.976626 -0.151225 0.152750\nvn -0.980390 -0.154243 0.122656\nvn -0.872460 0.430263 -0.231704\nvn -0.924695 0.339249 -0.172768\nvn -0.928456 0.334521 -0.161447\nvn -0.928456 0.334521 -0.161447\nvn -0.882699 0.414965 -0.220560\nvn -0.872460 0.430263 -0.231704\nvn -0.815329 0.500093 -0.291797\nvn -0.872460 0.430263 -0.231704\nvn -0.882699 0.414965 -0.220560\nvn -0.882699 0.414965 -0.220560\nvn -0.822668 0.494956 -0.279706\nvn -0.815329 0.500093 -0.291797\nvn -0.978126 -0.138037 0.155615\nvn -0.969018 -0.122413 0.214520\nvn -0.970777 -0.117681 0.209146\nvn -0.970777 -0.117681 0.209146\nvn -0.970885 -0.213179 0.109260\nvn -0.978126 -0.138037 0.155615\nvn -0.970777 -0.117681 0.209146\nvn -0.969018 -0.122413 0.214520\nvn -0.975994 -0.135504 0.170509\nvn -0.975994 -0.135504 0.170509\nvn -0.972951 -0.129554 0.191264\nvn -0.970777 -0.117681 0.209146\nvn -0.978126 -0.138037 0.155615\nvn -0.970885 -0.213179 0.109260\nvn -0.986255 -0.146736 0.075962\nvn -0.986255 -0.146736 0.075962\nvn -0.983784 -0.139320 0.112951\nvn -0.978126 -0.138037 0.155615\nvn -0.996293 -0.077061 -0.038240\nvn -0.983784 -0.139320 0.112951\nvn -0.986255 -0.146736 0.075962\nvn -0.986255 -0.146736 0.075962\nvn -0.989197 -0.146005 -0.013093\nvn -0.996293 -0.077061 -0.038240\nvn -0.999359 -0.014436 -0.032747\nvn -0.972951 -0.129554 0.191264\nvn -0.975994 -0.135504 0.170509\nvn -0.975994 -0.135504 0.170509\nvn -0.987049 -0.153267 -0.047366\nvn -0.999359 -0.014436 -0.032747\nvn -0.982750 -0.109595 -0.148964\nvn -0.996293 -0.077061 -0.038240\nvn -0.989197 -0.146005 -0.013093\nvn -0.989197 -0.146005 -0.013093\nvn -0.973033 -0.228556 -0.031129\nvn -0.982750 -0.109595 -0.148964\nvn -0.982750 -0.109595 -0.148964\nvn -0.973033 -0.228556 -0.031129\nvn -0.971017 -0.045717 -0.234598\nvn -0.971017 -0.045717 -0.234598\nvn -0.966277 -0.051792 -0.252243\nvn -0.982750 -0.109595 -0.148964\nvn -0.966277 -0.051792 -0.252243\nvn -0.971017 -0.045717 -0.234598\nvn -0.985831 0.028047 -0.165383\nvn -0.985831 0.028047 -0.165383\nvn -0.988690 0.016297 -0.149085\nvn -0.966277 -0.051792 -0.252243\nvn -0.988690 0.016297 -0.149085\nvn -0.985831 0.028047 -0.165383\nvn -0.994493 -0.063816 -0.083134\nvn -0.994493 -0.063816 -0.083134\nvn -0.997488 -0.023134 -0.066959\nvn -0.988690 0.016297 -0.149085\nvn -0.997488 -0.023134 -0.066959\nvn -0.994493 -0.063816 -0.083134\nvn -0.996839 -0.024538 -0.075565\nvn -0.996839 -0.024538 -0.075565\nvn -0.999359 -0.014436 -0.032747\nvn -0.987049 -0.153267 -0.047366\nvn -0.996839 -0.024538 -0.075565\nvn -0.994018 -0.016420 -0.107978\nvn -0.997488 -0.023134 -0.066959\nvn -0.982750 -0.109595 -0.148964\nvn -0.966277 -0.051792 -0.252243\nvn -0.977658 -0.066380 -0.199444\nvn -0.977658 -0.066380 -0.199444\nvn -0.986405 -0.032839 -0.161018\nvn -0.982750 -0.109595 -0.148964\nvn -0.996293 -0.077061 -0.038240\nvn -0.982750 -0.109595 -0.148964\nvn -0.986405 -0.032839 -0.161018\nvn -0.986405 -0.032839 -0.161018\nvn -0.977658 -0.066380 -0.199444\nvn -0.982285 -0.030580 -0.184884\nvn -0.982285 -0.030580 -0.184884\nvn -0.978341 -0.048098 -0.201333\nvn -0.986405 -0.032839 -0.161018\nvn -0.978341 -0.048098 -0.201333\nvn -0.982285 -0.030580 -0.184884\nvn -0.993709 -0.103797 -0.042056\nvn -0.993709 -0.103797 -0.042056\nvn -0.954820 -0.008118 -0.297073\nvn -0.978341 -0.048098 -0.201333\nvn -0.947779 0.000824 -0.318927\nvn -0.986405 -0.032839 -0.161018\nvn -0.978341 -0.048098 -0.201333\nvn -0.947779 0.000824 -0.318927\nvn -0.978341 -0.048098 -0.201333\nvn -0.954820 -0.008118 -0.297073\nvn -0.947779 0.000824 -0.318927\nvn -0.977899 0.032961 -0.206463\nvn -0.986405 -0.032839 -0.161018\nvn -0.977899 0.032961 -0.206463\nvn -0.996655 0.012970 -0.080692\nvn -0.986405 -0.032839 -0.161018\nvn -0.954820 -0.008118 -0.297073\nvn -0.923080 -0.009950 -0.384479\nvn -0.947779 0.000824 -0.318927\nvn -0.986405 -0.032839 -0.161018\nvn -0.996655 0.012970 -0.080692\nvn -0.996293 -0.077061 -0.038240\nvn -0.992874 -0.033205 -0.114446\nvn -0.994018 -0.016420 -0.107978\nvn -0.996839 -0.024538 -0.075565\nvn -0.996839 -0.024538 -0.075565\nvn -0.997437 -0.048892 -0.052249\nvn -0.992874 -0.033205 -0.114446\nvn -0.987049 -0.153267 -0.047366\nvn -0.997437 -0.048892 -0.052249\nvn -0.996839 -0.024538 -0.075565\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594811 -0.000000 0.803865\nvn -0.594811 -0.000000 0.803865\nvn -0.594811 -0.000000 0.803865\nvn -0.594826 -0.000000 0.803854\nvn -0.594811 -0.000000 0.803865\nvn -0.594826 -0.000000 0.803854\nvn -0.594811 -0.000000 0.803865\nvn -0.594826 -0.000000 0.803854\nvn -0.594811 -0.000000 0.803865\nvn -0.594811 -0.000000 0.803865\nvn -0.594811 -0.000000 0.803865\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594811 -0.000000 0.803865\nvn -0.594811 -0.000000 0.803865\nvn -0.594792 -0.000000 0.803880\nvn -0.594792 -0.000000 0.803880\nvn -0.594811 -0.000000 0.803865\nvn -0.594792 -0.000000 0.803880\nvn -0.594792 -0.000000 0.803880\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594811 -0.000000 0.803865\nvn -0.594792 -0.000000 0.803880\nvn -0.594792 -0.000000 0.803880\nvn -0.594792 -0.000000 0.803880\nvn -0.594792 -0.000000 0.803880\nvn -0.594792 -0.000000 0.803880\nvn -0.594792 -0.000000 0.803880\nvn -0.594792 -0.000000 0.803880\nvn -0.594757 -0.000000 0.803905\nvn -0.594792 -0.000000 0.803880\nvn -0.594792 -0.000000 0.803880\nvn -0.594792 -0.000000 0.803880\nvn -0.594811 -0.000000 0.803865\nvn -0.594757 -0.000000 0.803905\nvn -0.594792 -0.000000 0.803880\nvn -0.594811 -0.000000 0.803865\nvn -0.594826 -0.000000 0.803854\nvn -0.594811 -0.000000 0.803865\nvn -0.594826 -0.000000 0.803854\nvn -0.594811 -0.000000 0.803865\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594792 -0.000000 0.803880\nvn -0.594826 -0.000000 0.803854\nvn -0.594811 -0.000000 0.803865\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594792 -0.000000 0.803880\nvn -0.594826 -0.000000 0.803854\nvn -0.594846 -0.000000 0.803840\nvn -0.594792 -0.000000 0.803880\nvn -0.594792 -0.000000 0.803880\nvn -0.594792 -0.000000 0.803880\nvn -0.594880 -0.000000 0.803814\nvn -0.594846 -0.000000 0.803840\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn 0.803865 0.000000 0.594811\nvn 0.803865 0.000000 0.594811\nvn 0.803865 0.000000 0.594811\nvn 0.803865 0.000000 0.594811\nvn 0.803865 0.000000 0.594811\nvn 0.803865 0.000000 0.594811\nvn 0.106999 0.991102 0.079166\nvn 0.106999 0.991102 0.079166\nvn 0.106999 0.991102 0.079166\nvn 0.106999 0.991102 0.079166\nvn 0.106999 0.991102 0.079166\nvn 0.106999 0.991102 0.079166\nvn -0.803865 -0.000000 -0.594811\nvn -0.803865 -0.000000 -0.594811\nvn -0.803865 -0.000000 -0.594811\nvn -0.803865 -0.000000 -0.594811\nvn -0.803865 -0.000000 -0.594811\nvn -0.803865 -0.000000 -0.594811\nvn -0.190805 -0.971422 -0.141181\nvn -0.190805 -0.971422 -0.141181\nvn -0.190805 -0.971422 -0.141181\nvn -0.190805 -0.971422 -0.141181\nvn -0.190805 -0.971422 -0.141181\nvn -0.190805 -0.971422 -0.141181\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594811 0.000000 0.803865\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594811 0.000000 0.803865\nvn 0.594811 0.000000 0.803865\nvn 0.594811 0.000000 0.803865\nvn 0.594826 0.000000 0.803854\nvn 0.594811 0.000000 0.803865\nvn 0.594811 0.000000 0.803865\nvn 0.594811 0.000000 0.803865\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594811 0.000000 0.803865\nvn 0.594792 0.000000 0.803880\nvn 0.594811 0.000000 0.803865\nvn 0.594811 0.000000 0.803865\nvn 0.594792 0.000000 0.803880\nvn 0.594811 0.000000 0.803865\nvn 0.594792 0.000000 0.803880\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594792 0.000000 0.803880\nvn 0.594792 0.000000 0.803880\nvn 0.594811 0.000000 0.803865\nvn 0.594826 0.000000 0.803854\nvn 0.594792 0.000000 0.803880\nvn 0.594792 0.000000 0.803880\nvn 0.594792 0.000000 0.803880\nvn 0.594792 0.000000 0.803880\nvn 0.594792 0.000000 0.803880\nvn 0.594792 0.000000 0.803880\nvn 0.594757 0.000000 0.803905\nvn 0.594811 0.000000 0.803865\nvn 0.594792 0.000000 0.803880\nvn 0.594792 0.000000 0.803880\nvn 0.594792 0.000000 0.803880\nvn 0.594757 0.000000 0.803905\nvn 0.594826 0.000000 0.803854\nvn 0.594811 0.000000 0.803865\nvn 0.594792 0.000000 0.803880\nvn 0.594811 0.000000 0.803865\nvn 0.594826 0.000000 0.803854\nvn 0.594811 0.000000 0.803865\nvn 0.594792 0.000000 0.803880\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594792 0.000000 0.803880\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594811 0.000000 0.803865\nvn 0.594826 0.000000 0.803854\nvn 0.594792 0.000000 0.803880\nvn 0.594792 0.000000 0.803880\nvn 0.594846 0.000000 0.803840\nvn 0.594846 0.000000 0.803840\nvn 0.594860 0.000000 0.803829\nvn 0.594792 0.000000 0.803880\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn -0.803865 -0.000000 0.594811\nvn -0.803865 -0.000000 0.594811\nvn -0.803865 -0.000000 0.594811\nvn -0.803865 -0.000000 0.594811\nvn -0.803865 -0.000000 0.594811\nvn -0.803865 -0.000000 0.594811\nvn -0.107000 0.991102 0.079166\nvn -0.107000 0.991102 0.079166\nvn -0.107000 0.991102 0.079166\nvn -0.107000 0.991102 0.079166\nvn -0.107000 0.991102 0.079166\nvn -0.107000 0.991102 0.079166\nvn 0.803865 0.000000 -0.594811\nvn 0.803865 0.000000 -0.594811\nvn 0.803865 0.000000 -0.594811\nvn 0.803865 0.000000 -0.594811\nvn 0.803865 0.000000 -0.594811\nvn 0.803865 0.000000 -0.594811\nvn 0.190806 -0.971422 -0.141181\nvn 0.190806 -0.971422 -0.141181\nvn 0.190806 -0.971422 -0.141181\nvn 0.190806 -0.971422 -0.141181\nvn 0.190806 -0.971422 -0.141181\nvn 0.190806 -0.971422 -0.141181\nvn 0.166056 -0.060093 -0.984284\nvn 0.175699 -0.060306 -0.982595\nvn 0.175699 -0.060336 -0.982593\nvn 0.175699 -0.060336 -0.982593\nvn 0.166056 -0.060093 -0.984284\nvn 0.166056 -0.060093 -0.984284\nvn 0.156901 -0.063053 -0.985600\nvn 0.166056 -0.060093 -0.984284\nvn 0.166056 -0.060093 -0.984284\nvn 0.166056 -0.060093 -0.984284\nvn 0.156896 -0.063052 -0.985600\nvn 0.156901 -0.063053 -0.985600\nvn 0.149299 -0.069095 -0.986375\nvn 0.156901 -0.063053 -0.985600\nvn 0.156896 -0.063052 -0.985600\nvn 0.156896 -0.063052 -0.985600\nvn 0.149269 -0.069095 -0.986380\nvn 0.149299 -0.069095 -0.986375\nvn 0.144082 -0.077366 -0.986537\nvn 0.149299 -0.069095 -0.986375\nvn 0.149269 -0.069095 -0.986380\nvn 0.149269 -0.069095 -0.986380\nvn 0.144082 -0.077366 -0.986537\nvn 0.144082 -0.077366 -0.986537\nvn 0.142036 -0.086858 -0.986043\nvn 0.144082 -0.077366 -0.986537\nvn 0.144082 -0.077366 -0.986537\nvn 0.144082 -0.077366 -0.986537\nvn 0.142036 -0.086858 -0.986043\nvn 0.142036 -0.086858 -0.986043\nvn 0.143286 -0.096470 -0.984968\nvn 0.142036 -0.086858 -0.986043\nvn 0.142036 -0.086858 -0.986043\nvn 0.142036 -0.086858 -0.986043\nvn 0.143286 -0.096470 -0.984968\nvn 0.143286 -0.096470 -0.984968\nvn 0.147651 -0.105047 -0.983445\nvn 0.143286 -0.096470 -0.984968\nvn 0.143286 -0.096470 -0.984968\nvn 0.143286 -0.096470 -0.984968\nvn 0.147621 -0.105047 -0.983450\nvn 0.147651 -0.105047 -0.983445\nvn 0.184581 -0.063907 -0.980737\nvn 0.175699 -0.060336 -0.982593\nvn 0.175699 -0.060306 -0.982595\nvn 0.175699 -0.060306 -0.982595\nvn 0.184580 -0.063938 -0.980736\nvn 0.184581 -0.063907 -0.980737\nvn 0.191631 -0.070408 -0.978938\nvn 0.184581 -0.063907 -0.980737\nvn 0.184580 -0.063938 -0.980736\nvn 0.184580 -0.063938 -0.980736\nvn 0.191631 -0.070408 -0.978938\nvn 0.191631 -0.070408 -0.978938\nvn 0.196085 -0.078953 -0.977403\nvn 0.191631 -0.070408 -0.978938\nvn 0.191631 -0.070408 -0.978938\nvn 0.191631 -0.070408 -0.978938\nvn 0.196114 -0.078952 -0.977398\nvn 0.196085 -0.078953 -0.977403\nvn 0.197398 -0.087255 -0.976433\nvn 0.196085 -0.078953 -0.977403\nvn 0.196114 -0.078952 -0.977398\nvn 0.196114 -0.078952 -0.977398\nvn 0.197395 -0.087436 -0.976417\nvn 0.197398 -0.087255 -0.976433\nvn 0.196361 -0.094732 -0.975945\nvn 0.197398 -0.087255 -0.976433\nvn 0.197395 -0.087436 -0.976417\nvn 0.197395 -0.087436 -0.976417\nvn 0.196388 -0.094517 -0.975960\nvn 0.196361 -0.094732 -0.975945\nvn 0.193675 -0.101293 -0.975823\nvn 0.196361 -0.094732 -0.975945\nvn 0.196388 -0.094517 -0.975960\nvn 0.196388 -0.094517 -0.975960\nvn 0.193554 -0.101477 -0.975827\nvn 0.193675 -0.101293 -0.975823\nvn 0.189129 -0.107306 -0.976072\nvn 0.193675 -0.101293 -0.975823\nvn 0.193554 -0.101477 -0.975827\nvn 0.193554 -0.101477 -0.975827\nvn 0.189278 -0.107182 -0.976056\nvn 0.189129 -0.107306 -0.976072\nvn 0.182415 -0.112403 -0.976776\nvn 0.189129 -0.107306 -0.976072\nvn 0.189278 -0.107182 -0.976056\nvn 0.189278 -0.107182 -0.976056\nvn 0.182415 -0.112403 -0.976776\nvn 0.182415 -0.112403 -0.976776\nvn 0.173226 -0.115362 -0.978103\nvn 0.182415 -0.112403 -0.976776\nvn 0.182415 -0.112403 -0.976776\nvn 0.182415 -0.112403 -0.976776\nvn 0.173226 -0.115362 -0.978103\nvn 0.173226 -0.115362 -0.978103\nvn 0.163613 -0.115088 -0.979788\nvn 0.173226 -0.115362 -0.978103\nvn 0.173226 -0.115362 -0.978103\nvn 0.173226 -0.115362 -0.978103\nvn 0.163613 -0.115118 -0.979785\nvn 0.163613 -0.115088 -0.979788\nvn 0.154671 -0.111578 -0.981645\nvn 0.163613 -0.115088 -0.979788\nvn 0.163613 -0.115118 -0.979785\nvn 0.163613 -0.115118 -0.979785\nvn 0.154670 -0.111608 -0.981642\nvn 0.154671 -0.111578 -0.981645\nvn 0.147621 -0.105047 -0.983450\nvn 0.154671 -0.111578 -0.981645\nvn 0.154670 -0.111608 -0.981642\nvn 0.154670 -0.111608 -0.981642\nvn 0.147651 -0.105047 -0.983445\nvn 0.147621 -0.105047 -0.983450\nvn -0.400714 -0.479606 -0.780645\nvn -0.231367 -0.634407 -0.737562\nvn -0.205548 -0.625160 -0.752944\nvn -0.205548 -0.625160 -0.752944\nvn -0.350607 -0.450253 -0.821186\nvn -0.400714 -0.479606 -0.780645\nvn -0.231367 -0.634407 -0.737562\nvn -0.018983 -0.720535 -0.693159\nvn -0.014161 -0.708728 -0.705340\nvn -0.014161 -0.708728 -0.705340\nvn -0.205548 -0.625160 -0.752944\nvn -0.231367 -0.634407 -0.737562\nvn -0.018983 -0.720535 -0.693159\nvn 0.210795 -0.727665 -0.652740\nvn 0.211163 -0.715676 -0.665746\nvn 0.211163 -0.715676 -0.665746\nvn -0.014161 -0.708728 -0.705340\nvn -0.018983 -0.720535 -0.693159\nvn 0.210795 -0.727665 -0.652740\nvn 0.430389 -0.654830 -0.621259\nvn 0.426417 -0.644265 -0.634895\nvn 0.426417 -0.644265 -0.634895\nvn 0.211163 -0.715676 -0.665746\nvn 0.210795 -0.727665 -0.652740\nvn 0.430389 -0.654830 -0.621259\nvn 0.591805 -0.534001 -0.603830\nvn 0.585965 -0.524774 -0.617460\nvn 0.585965 -0.524774 -0.617460\nvn 0.426417 -0.644265 -0.634895\nvn 0.430389 -0.654830 -0.621259\nvn 0.685556 -0.388786 -0.615514\nvn 0.585965 -0.524774 -0.617460\nvn 0.591805 -0.534001 -0.603830\nvn 0.591805 -0.534001 -0.603830\nvn 0.699777 -0.390739 -0.598026\nvn 0.685556 -0.388786 -0.615514\nvn 0.753301 -0.223430 -0.618560\nvn 0.685556 -0.388786 -0.615514\nvn 0.699777 -0.390739 -0.598026\nvn 0.699777 -0.390739 -0.598026\nvn 0.765059 -0.231459 -0.600926\nvn 0.753301 -0.223430 -0.618560\nvn 0.777653 -0.056765 -0.626126\nvn 0.753301 -0.223430 -0.618560\nvn 0.765059 -0.231459 -0.600926\nvn 0.765059 -0.231459 -0.600926\nvn 0.788482 -0.053865 -0.612694\nvn 0.777653 -0.056765 -0.626126\nvn 0.747476 0.139626 -0.649449\nvn 0.777653 -0.056765 -0.626126\nvn 0.788482 -0.053865 -0.612694\nvn 0.788482 -0.053865 -0.612694\nvn 0.757919 0.144754 -0.636086\nvn 0.747476 0.139626 -0.649449\nvn 0.643712 0.340443 -0.685371\nvn 0.747476 0.139626 -0.649449\nvn 0.757919 0.144754 -0.636086\nvn 0.757919 0.144754 -0.636086\nvn 0.652052 0.349633 -0.672744\nvn 0.643712 0.340443 -0.685371\nvn 0.477688 0.492246 -0.727673\nvn 0.643712 0.340443 -0.685371\nvn 0.652052 0.349633 -0.672744\nvn 0.652052 0.349633 -0.672744\nvn 0.482691 0.504451 -0.715918\nvn 0.477688 0.492246 -0.727673\nvn 0.269483 0.576718 -0.771216\nvn 0.477688 0.492246 -0.727673\nvn 0.482691 0.504451 -0.715918\nvn 0.482691 0.504451 -0.715918\nvn 0.270340 0.590609 -0.760327\nvn 0.269483 0.576718 -0.771216\nvn 0.044161 0.583649 -0.810804\nvn 0.269483 0.576718 -0.771216\nvn 0.270340 0.590609 -0.760327\nvn 0.270340 0.590609 -0.760327\nvn 0.040499 0.597690 -0.800704\nvn 0.044161 0.583649 -0.810804\nvn -0.171060 0.512203 -0.841657\nvn 0.044161 0.583649 -0.810804\nvn 0.040499 0.597690 -0.800704\nvn 0.040499 0.597690 -0.800704\nvn -0.179026 0.524779 -0.832200\nvn -0.171060 0.512203 -0.841657\nvn -0.332786 0.374933 -0.865262\nvn -0.171060 0.512203 -0.841657\nvn -0.179026 0.524779 -0.832200\nvn -0.179026 0.524779 -0.832200\nvn -0.361803 0.380877 -0.850900\nvn -0.332786 0.374933 -0.865262\nvn -0.428887 0.159096 -0.889238\nvn -0.332786 0.374933 -0.865262\nvn -0.361803 0.380877 -0.850900\nvn -0.361803 0.380877 -0.850900\nvn -0.485802 0.183053 -0.854686\nvn -0.428887 0.159096 -0.889238\nvn -0.475095 -0.050235 -0.878500\nvn -0.428887 0.159096 -0.889238\nvn -0.485802 0.183053 -0.854686\nvn -0.485802 0.183053 -0.854686\nvn -0.536067 -0.044589 -0.842997\nvn -0.475095 -0.050235 -0.878500\nvn -0.447874 -0.261888 -0.854882\nvn -0.475095 -0.050235 -0.878500\nvn -0.536067 -0.044589 -0.842997\nvn -0.536067 -0.044589 -0.842997\nvn -0.506496 -0.274734 -0.817303\nvn -0.447874 -0.261888 -0.854882\nvn -0.350607 -0.450253 -0.821186\nvn -0.447874 -0.261888 -0.854882\nvn -0.506496 -0.274734 -0.817303\nvn -0.506496 -0.274734 -0.817303\nvn -0.400714 -0.479606 -0.780645\nvn -0.350607 -0.450253 -0.821186\nvn 0.017884 0.679167 -0.733766\nvn 0.273602 0.671264 -0.688873\nvn 0.269483 0.576718 -0.771216\nvn 0.269483 0.576718 -0.771216\nvn 0.044161 0.583649 -0.810804\nvn 0.017884 0.679167 -0.733766\nvn -0.214245 0.596712 -0.773327\nvn 0.017884 0.679167 -0.733766\nvn 0.044161 0.583649 -0.810804\nvn 0.044161 0.583649 -0.810804\nvn -0.171060 0.512203 -0.841657\nvn -0.214245 0.596712 -0.773327\nvn 0.017884 0.679167 -0.733766\nvn -0.214245 0.596712 -0.773327\nvn -0.277699 0.738668 -0.614209\nvn -0.277699 0.738668 -0.614209\nvn -0.027193 0.816182 -0.577154\nvn 0.017884 0.679167 -0.733766\nvn 0.273602 0.671264 -0.688873\nvn 0.017884 0.679167 -0.733766\nvn -0.027193 0.816182 -0.577154\nvn -0.027193 0.816182 -0.577154\nvn 0.270764 0.807012 -0.524804\nvn 0.273602 0.671264 -0.688873\nvn -0.366873 0.456661 -0.810472\nvn -0.214245 0.596712 -0.773327\nvn -0.171060 0.512203 -0.841657\nvn -0.171060 0.512203 -0.841657\nvn -0.332786 0.374933 -0.865262\nvn -0.366873 0.456661 -0.810472\nvn -0.214245 0.596712 -0.773327\nvn -0.366873 0.456661 -0.810472\nvn -0.395560 0.633793 -0.664709\nvn -0.214245 0.596712 -0.773327\nvn -0.395560 0.633793 -0.664709\nvn -0.277699 0.738668 -0.614209\nvn -0.366873 0.456661 -0.810472\nvn -0.451472 0.547577 -0.704508\nvn -0.395560 0.633793 -0.664709\nvn -0.366873 0.456661 -0.810472\nvn -0.332786 0.374933 -0.865262\nvn -0.414911 0.232130 -0.879752\nvn -0.332786 0.374933 -0.865262\nvn -0.428887 0.159096 -0.889238\nvn -0.414911 0.232130 -0.879752\nvn -0.366873 0.456661 -0.810472\nvn -0.414911 0.232130 -0.879752\nvn -0.503568 0.330890 -0.798079\nvn 0.477688 0.492246 -0.727673\nvn 0.269483 0.576718 -0.771216\nvn 0.273602 0.671264 -0.688873\nvn 0.273602 0.671264 -0.688873\nvn 0.509950 0.575414 -0.639414\nvn 0.477688 0.492246 -0.727673\nvn 0.509950 0.575414 -0.639414\nvn 0.273602 0.671264 -0.688873\nvn 0.270764 0.807012 -0.524804\nvn 0.643712 0.340443 -0.685371\nvn 0.477688 0.492246 -0.727673\nvn 0.509950 0.575414 -0.639414\nvn 0.509950 0.575414 -0.639414\nvn 0.698370 0.403098 -0.591431\nvn 0.643712 0.340443 -0.685371\nvn 0.747476 0.139626 -0.649449\nvn 0.643712 0.340443 -0.685371\nvn 0.698370 0.403098 -0.591431\nvn 0.698370 0.403098 -0.591431\nvn 0.816123 0.175152 -0.550695\nvn 0.747476 0.139626 -0.649449\nvn 0.777653 -0.056765 -0.626126\nvn 0.747476 0.139626 -0.649449\nvn 0.816123 0.175152 -0.550695\nvn 0.816123 0.175152 -0.550695\nvn 0.848801 -0.048129 -0.526518\nvn 0.777653 -0.056765 -0.626126\nvn 0.753301 -0.223430 -0.618560\nvn 0.777653 -0.056765 -0.626126\nvn 0.848801 -0.048129 -0.526518\nvn 0.848801 -0.048129 -0.526518\nvn 0.829580 -0.209546 -0.517579\nvn 0.753301 -0.223430 -0.618560\nvn 0.790354 -0.333238 -0.514095\nvn 0.753301 -0.223430 -0.618560\nvn 0.829580 -0.209546 -0.517579\nvn 0.790354 -0.333238 -0.514095\nvn 0.685556 -0.388786 -0.615514\nvn 0.753301 -0.223430 -0.618560\nvn 0.790354 -0.333238 -0.514095\nvn 0.731547 -0.448938 -0.513121\nvn 0.685556 -0.388786 -0.615514\nvn 0.585965 -0.524774 -0.617460\nvn 0.685556 -0.388786 -0.615514\nvn 0.731547 -0.448938 -0.513121\nvn 0.731547 -0.448938 -0.513121\nvn 0.631911 -0.577677 -0.516699\nvn 0.585965 -0.524774 -0.617460\nvn 0.426417 -0.644265 -0.634895\nvn 0.585965 -0.524774 -0.617460\nvn 0.631911 -0.577677 -0.516699\nvn 0.631911 -0.577677 -0.516699\nvn 0.451710 -0.714599 -0.534141\nvn 0.426417 -0.644265 -0.634895\nvn 0.211163 -0.715676 -0.665746\nvn 0.426417 -0.644265 -0.634895\nvn 0.451710 -0.714599 -0.534141\nvn 0.451710 -0.714599 -0.534141\nvn 0.207408 -0.795665 -0.569121\nvn 0.211163 -0.715676 -0.665746\nvn -0.014161 -0.708728 -0.705340\nvn 0.211163 -0.715676 -0.665746\nvn 0.207408 -0.795665 -0.569121\nvn 0.207408 -0.795665 -0.569121\nvn -0.048312 -0.787765 -0.614079\nvn -0.014161 -0.708728 -0.705340\nvn -0.205548 -0.625160 -0.752944\nvn -0.014161 -0.708728 -0.705340\nvn -0.048312 -0.787765 -0.614079\nvn -0.048312 -0.787765 -0.614079\nvn -0.255935 -0.707653 -0.658578\nvn -0.205548 -0.625160 -0.752944\nvn -0.338825 -0.634588 -0.694619\nvn -0.205548 -0.625160 -0.752944\nvn -0.255935 -0.707653 -0.658578\nvn -0.338825 -0.634588 -0.694619\nvn -0.312550 -0.510622 -0.800985\nvn -0.205548 -0.625160 -0.752944\nvn -0.338825 -0.634588 -0.694619\nvn -0.424363 -0.563529 -0.708767\nvn -0.312550 -0.510622 -0.800985\nvn -0.312550 -0.510622 -0.800985\nvn -0.350607 -0.450253 -0.821186\nvn -0.205548 -0.625160 -0.752944\nvn -0.255935 -0.707653 -0.658578\nvn -0.048312 -0.787765 -0.614079\nvn -0.104345 -0.893057 -0.437678\nvn -0.104345 -0.893057 -0.437678\nvn -0.347184 -0.800453 -0.488609\nvn -0.255935 -0.707653 -0.658578\nvn -0.338825 -0.634588 -0.694619\nvn -0.255935 -0.707653 -0.658578\nvn -0.347184 -0.800453 -0.488609\nvn -0.347184 -0.800453 -0.488609\nvn -0.440239 -0.738869 -0.510158\nvn -0.338825 -0.634588 -0.694619\nvn -0.048312 -0.787765 -0.614079\nvn 0.207408 -0.795665 -0.569121\nvn 0.193616 -0.902247 -0.385308\nvn 0.193616 -0.902247 -0.385308\nvn -0.104345 -0.893057 -0.437678\nvn -0.048312 -0.787765 -0.614079\nvn 0.207408 -0.795665 -0.569121\nvn 0.451710 -0.714599 -0.534141\nvn 0.478295 -0.807809 -0.344499\nvn 0.478295 -0.807809 -0.344499\nvn 0.193616 -0.902247 -0.385308\nvn 0.207408 -0.795665 -0.569121\nvn 0.689034 -0.648778 -0.322985\nvn 0.478295 -0.807809 -0.344499\nvn 0.451710 -0.714599 -0.534141\nvn 0.451710 -0.714599 -0.534141\nvn 0.631911 -0.577677 -0.516699\nvn 0.689034 -0.648778 -0.322985\nvn -0.440239 -0.738869 -0.510158\nvn -0.347184 -0.800453 -0.488609\nvn -0.394127 -0.838582 -0.376091\nvn -0.394127 -0.838582 -0.376091\nvn -0.493278 -0.773199 -0.398547\nvn -0.440239 -0.738869 -0.510158\nvn -0.347184 -0.800453 -0.488609\nvn -0.104345 -0.893057 -0.437678\nvn -0.135659 -0.936798 -0.322500\nvn -0.135659 -0.936798 -0.322500\nvn -0.394127 -0.838582 -0.376091\nvn -0.347184 -0.800453 -0.488609\nvn -0.394127 -0.838582 -0.376091\nvn -0.135659 -0.936798 -0.322500\nvn -0.145301 -0.947711 -0.284133\nvn -0.145301 -0.947711 -0.284133\nvn -0.408933 -0.847501 -0.338402\nvn -0.394127 -0.838582 -0.376091\nvn -0.493278 -0.773199 -0.398547\nvn -0.394127 -0.838582 -0.376091\nvn -0.408933 -0.847501 -0.338402\nvn -0.408933 -0.847501 -0.338402\nvn -0.508881 -0.781634 -0.360679\nvn -0.493278 -0.773199 -0.398547\nvn -0.104345 -0.893057 -0.437678\nvn 0.193616 -0.902247 -0.385308\nvn 0.181192 -0.946549 -0.266859\nvn 0.181192 -0.946549 -0.266859\nvn -0.135659 -0.936798 -0.322500\nvn -0.104345 -0.893057 -0.437678\nvn -0.135659 -0.936798 -0.322500\nvn 0.181192 -0.946549 -0.266859\nvn 0.176494 -0.957638 -0.227553\nvn 0.176494 -0.957638 -0.227553\nvn -0.145301 -0.947711 -0.284133\nvn -0.135659 -0.936798 -0.322500\nvn 0.193616 -0.902247 -0.385308\nvn 0.478295 -0.807809 -0.344499\nvn 0.483859 -0.846127 -0.223495\nvn 0.483859 -0.846127 -0.223495\nvn 0.181192 -0.946549 -0.266859\nvn 0.193616 -0.902247 -0.385308\nvn 0.181192 -0.946549 -0.266859\nvn 0.483859 -0.846127 -0.223495\nvn 0.484002 -0.855602 -0.183542\nvn 0.484002 -0.855602 -0.183542\nvn 0.176494 -0.957638 -0.227553\nvn 0.181192 -0.946549 -0.266859\nvn 0.478295 -0.807809 -0.344499\nvn 0.689034 -0.648778 -0.322985\nvn 0.708056 -0.677261 -0.199934\nvn 0.708056 -0.677261 -0.199934\nvn 0.483859 -0.846127 -0.223495\nvn 0.478295 -0.807809 -0.344499\nvn 0.483859 -0.846127 -0.223495\nvn 0.708056 -0.677261 -0.199934\nvn 0.712533 -0.683356 -0.159127\nvn 0.712533 -0.683356 -0.159127\nvn 0.484002 -0.855602 -0.183542\nvn 0.483859 -0.846127 -0.223495\nvn 0.806077 -0.499418 -0.317523\nvn 0.689034 -0.648778 -0.322985\nvn 0.631911 -0.577677 -0.516699\nvn 0.631911 -0.577677 -0.516699\nvn 0.731547 -0.448938 -0.513121\nvn 0.806077 -0.499418 -0.317523\nvn 0.843710 -0.432796 -0.317555\nvn 0.806077 -0.499418 -0.317523\nvn 0.731547 -0.448938 -0.513121\nvn 0.731547 -0.448938 -0.513121\nvn 0.790354 -0.333238 -0.514095\nvn 0.843710 -0.432796 -0.317555\nvn 0.850987 -0.355679 -0.386412\nvn 0.843710 -0.432796 -0.317555\nvn 0.790354 -0.333238 -0.514095\nvn 0.790354 -0.333238 -0.514095\nvn 0.900704 -0.293469 -0.320326\nvn 0.850987 -0.355679 -0.386412\nvn 0.791885 -0.591250 -0.152780\nvn 0.712533 -0.683356 -0.159127\nvn 0.708056 -0.677261 -0.199934\nvn 0.708056 -0.677261 -0.199934\nvn 0.786935 -0.585752 -0.193979\nvn 0.791885 -0.591250 -0.152780\nvn 0.785796 -0.571462 -0.236550\nvn 0.786935 -0.585752 -0.193979\nvn 0.708056 -0.677261 -0.199934\nvn 0.785796 -0.571462 -0.236550\nvn 0.708056 -0.677261 -0.199934\nvn 0.689034 -0.648778 -0.322985\nvn 0.689034 -0.648778 -0.322985\nvn 0.825322 -0.512992 -0.235972\nvn 0.785796 -0.571462 -0.236550\nvn 0.689034 -0.648778 -0.322985\nvn 0.806077 -0.499418 -0.317523\nvn 0.825322 -0.512992 -0.235972\nvn 0.825322 -0.512992 -0.235972\nvn 0.806077 -0.499418 -0.317523\nvn 0.843710 -0.432796 -0.317555\nvn 0.920642 -0.219677 -0.322740\nvn 0.900704 -0.293469 -0.320326\nvn 0.790354 -0.333238 -0.514095\nvn 0.790354 -0.333238 -0.514095\nvn 0.829580 -0.209546 -0.517579\nvn 0.920642 -0.219677 -0.322740\nvn 0.941878 -0.031343 -0.334489\nvn 0.920642 -0.219677 -0.322740\nvn 0.829580 -0.209546 -0.517579\nvn 0.829580 -0.209546 -0.517579\nvn 0.848801 -0.048129 -0.526518\nvn 0.941878 -0.031343 -0.334489\nvn 0.902902 0.228923 -0.363816\nvn 0.941878 -0.031343 -0.334489\nvn 0.848801 -0.048129 -0.526518\nvn 0.848801 -0.048129 -0.526518\nvn 0.816123 0.175152 -0.550695\nvn 0.902902 0.228923 -0.363816\nvn 0.765695 0.494533 -0.411276\nvn 0.902902 0.228923 -0.363816\nvn 0.816123 0.175152 -0.550695\nvn 0.816123 0.175152 -0.550695\nvn 0.698370 0.403098 -0.591431\nvn 0.765695 0.494533 -0.411276\nvn 0.546173 0.695291 -0.467189\nvn 0.765695 0.494533 -0.411276\nvn 0.698370 0.403098 -0.591431\nvn 0.698370 0.403098 -0.591431\nvn 0.509950 0.575414 -0.639414\nvn 0.546173 0.695291 -0.467189\nvn 0.270764 0.807012 -0.524804\nvn 0.546173 0.695291 -0.467189\nvn 0.509950 0.575414 -0.639414\nvn 0.941878 -0.031343 -0.334489\nvn 0.902902 0.228923 -0.363816\nvn 0.935326 0.256180 -0.244002\nvn 0.935326 0.256180 -0.244002\nvn 0.977025 -0.020508 -0.212135\nvn 0.941878 -0.031343 -0.334489\nvn 0.977025 -0.020508 -0.212135\nvn 0.935326 0.256180 -0.244002\nvn 0.942587 0.264114 -0.204387\nvn 0.942587 0.264114 -0.204387\nvn 0.985017 -0.018006 -0.171514\nvn 0.977025 -0.020508 -0.212135\nvn 0.902902 0.228923 -0.363816\nvn 0.765695 0.494533 -0.411276\nvn 0.789429 0.538596 -0.294476\nvn 0.789429 0.538596 -0.294476\nvn 0.935326 0.256180 -0.244002\nvn 0.902902 0.228923 -0.363816\nvn 0.935326 0.256180 -0.244002\nvn 0.789429 0.538596 -0.294476\nvn 0.794383 0.550993 -0.255659\nvn 0.794383 0.550993 -0.255659\nvn 0.942587 0.264114 -0.204387\nvn 0.935326 0.256180 -0.244002\nvn 0.765695 0.494533 -0.411276\nvn 0.546173 0.695291 -0.467189\nvn 0.556002 0.752059 -0.353933\nvn 0.556002 0.752059 -0.353933\nvn 0.789429 0.538596 -0.294476\nvn 0.765695 0.494533 -0.411276\nvn 0.789429 0.538596 -0.294476\nvn 0.556002 0.752059 -0.353933\nvn 0.557275 0.767825 -0.316054\nvn 0.557275 0.767825 -0.316054\nvn 0.794383 0.550993 -0.255659\nvn 0.789429 0.538596 -0.294476\nvn 0.546173 0.695291 -0.467189\nvn 0.270764 0.807012 -0.524804\nvn 0.263229 0.870837 -0.415154\nvn 0.263229 0.870837 -0.415154\nvn 0.556002 0.752059 -0.353933\nvn 0.546173 0.695291 -0.467189\nvn -0.053622 0.880586 -0.470842\nvn 0.263229 0.870837 -0.415154\nvn 0.270764 0.807012 -0.524804\nvn 0.270764 0.807012 -0.524804\nvn -0.027193 0.816182 -0.577154\nvn -0.053622 0.880586 -0.470842\nvn -0.320237 0.798533 -0.509700\nvn -0.053622 0.880586 -0.470842\nvn -0.027193 0.816182 -0.577154\nvn -0.027193 0.816182 -0.577154\nvn -0.277699 0.738668 -0.614209\nvn -0.320237 0.798533 -0.509700\nvn -0.053622 0.880586 -0.470842\nvn -0.320237 0.798533 -0.509700\nvn -0.333915 0.814719 -0.474060\nvn -0.333915 0.814719 -0.474060\nvn -0.061985 0.898401 -0.434780\nvn -0.053622 0.880586 -0.470842\nvn 0.263229 0.870837 -0.415154\nvn -0.053622 0.880586 -0.470842\nvn -0.061985 0.898401 -0.434780\nvn -0.061985 0.898401 -0.434780\nvn 0.259846 0.888493 -0.378232\nvn 0.263229 0.870837 -0.415154\nvn 0.556002 0.752059 -0.353933\nvn 0.263229 0.870837 -0.415154\nvn 0.259846 0.888493 -0.378232\nvn 0.259846 0.888493 -0.378232\nvn 0.557275 0.767825 -0.316054\nvn 0.556002 0.752059 -0.353933\nvn -0.425005 0.739501 -0.522024\nvn -0.320237 0.798533 -0.509700\nvn -0.277699 0.738668 -0.614209\nvn -0.277699 0.738668 -0.614209\nvn -0.395560 0.633793 -0.664709\nvn -0.425005 0.739501 -0.522024\nvn -0.439481 0.755327 -0.486145\nvn -0.333915 0.814719 -0.474060\nvn -0.320237 0.798533 -0.509700\nvn -0.320237 0.798533 -0.509700\nvn -0.425005 0.739501 -0.522024\nvn -0.439481 0.755327 -0.486145\nvn 0.985017 -0.018006 -0.171514\nvn 0.977078 -0.139077 -0.161173\nvn 0.969166 -0.140754 -0.202250\nvn 0.969166 -0.140754 -0.202250\nvn 0.977025 -0.020508 -0.212135\nvn 0.985017 -0.018006 -0.171514\nvn 0.977025 -0.020508 -0.212135\nvn 0.969166 -0.140754 -0.202250\nvn 0.957767 -0.151555 -0.244363\nvn 0.977025 -0.020508 -0.212135\nvn 0.957767 -0.151555 -0.244363\nvn 0.944935 -0.220989 -0.241376\nvn 0.944935 -0.220989 -0.241376\nvn 0.941878 -0.031343 -0.334489\nvn 0.977025 -0.020508 -0.212135\nvn 0.920642 -0.219677 -0.322740\nvn 0.941878 -0.031343 -0.334489\nvn 0.944935 -0.220989 -0.241376\nvn 0.944935 -0.220989 -0.241376\nvn 0.957767 -0.151555 -0.244363\nvn 0.924700 -0.298355 -0.236462\nvn 0.900704 -0.293469 -0.320326\nvn 0.920642 -0.219677 -0.322740\nvn 0.944935 -0.220989 -0.241376\nvn 0.924711 -0.297931 -0.236953\nvn 0.900704 -0.293469 -0.320326\nvn 0.944935 -0.220989 -0.241376\nvn 0.944935 -0.220989 -0.241376\nvn 0.924700 -0.298355 -0.236462\nvn 0.924711 -0.297931 -0.236953\nvn 0.850987 -0.355679 -0.386412\nvn 0.900704 -0.293469 -0.320326\nvn 0.924711 -0.297931 -0.236953\nvn 0.843710 -0.432796 -0.317555\nvn 0.850987 -0.355679 -0.386412\nvn 0.865203 -0.443604 -0.233750\nvn 0.825322 -0.512992 -0.235972\nvn 0.843710 -0.432796 -0.317555\nvn 0.865203 -0.443604 -0.233750\nvn 0.865203 -0.443604 -0.233750\nvn 0.865159 -0.443627 -0.233869\nvn 0.825322 -0.512992 -0.235972\nvn 0.785796 -0.571462 -0.236550\nvn 0.825322 -0.512992 -0.235972\nvn 0.865159 -0.443627 -0.233869\nvn -0.126684 0.985816 -0.110081\nvn 0.215217 0.975284 -0.050020\nvn 0.215217 0.975284 -0.050020\nvn 0.215217 0.975284 -0.050020\nvn -0.126684 0.985816 -0.110081\nvn -0.126684 0.985816 -0.110081\nvn -0.414422 0.897330 -0.151834\nvn -0.126684 0.985816 -0.110081\nvn -0.126684 0.985816 -0.110081\nvn -0.126684 0.985816 -0.110081\nvn -0.414422 0.897330 -0.151834\nvn -0.414422 0.897330 -0.151834\nvn -0.527318 0.833368 -0.165630\nvn -0.414422 0.897330 -0.151834\nvn -0.414422 0.897330 -0.151834\nvn -0.414422 0.897330 -0.151834\nvn -0.527318 0.833368 -0.165630\nvn -0.527318 0.833368 -0.165630\nvn 0.531156 0.847122 0.016053\nvn 0.215217 0.975284 -0.050020\nvn 0.215217 0.975284 -0.050020\nvn 0.215217 0.975284 -0.050020\nvn 0.531156 0.847122 0.016053\nvn 0.531156 0.847122 0.016053\nvn 0.783040 0.616770 0.080266\nvn 0.531156 0.847122 0.016053\nvn 0.531156 0.847122 0.016053\nvn 0.531156 0.847122 0.016053\nvn 0.783025 0.616789 0.080265\nvn 0.783040 0.616770 0.080266\nvn 0.940463 0.312033 0.134775\nvn 0.783040 0.616770 0.080266\nvn 0.783025 0.616789 0.080265\nvn 0.783025 0.616789 0.080265\nvn 0.940454 0.312061 0.134774\nvn 0.940463 0.312033 0.134775\nvn 0.985475 0.013459 0.169286\nvn 0.940463 0.312033 0.134775\nvn 0.940454 0.312061 0.134774\nvn 0.940454 0.312061 0.134774\nvn 0.985480 0.013459 0.169257\nvn 0.985475 0.013459 0.169286\nvn 0.946886 -0.297347 0.122443\nvn 0.985475 0.013459 0.169286\nvn 0.985480 0.013459 0.169257\nvn 0.985480 0.013459 0.169257\nvn 0.951495 -0.244763 0.186411\nvn 0.946886 -0.297347 0.122443\nvn 0.882076 -0.455656 0.119667\nvn 0.946886 -0.297347 0.122443\nvn 0.951495 -0.244763 0.186411\nvn 0.951495 -0.244763 0.186411\nvn 0.852314 -0.486936 0.190929\nvn 0.882076 -0.455656 0.119667\nvn 0.695208 -0.695269 0.182447\nvn 0.882076 -0.455656 0.119667\nvn 0.852314 -0.486936 0.190929\nvn 0.852314 -0.486936 0.190929\nvn 0.695190 -0.695281 0.182472\nvn 0.695208 -0.695269 0.182447\nvn 0.453305 -0.877432 0.156931\nvn 0.695208 -0.695269 0.182447\nvn 0.695190 -0.695281 0.182472\nvn 0.695190 -0.695281 0.182472\nvn 0.453268 -0.877452 0.156929\nvn 0.453305 -0.877432 0.156931\nvn 0.126683 -0.985813 0.110111\nvn 0.453305 -0.877432 0.156931\nvn 0.453268 -0.877452 0.156929\nvn 0.453268 -0.877452 0.156929\nvn 0.126653 -0.985817 0.110112\nvn 0.126683 -0.985813 0.110111\nvn -0.215188 -0.975292 0.049990\nvn 0.126683 -0.985813 0.110111\nvn 0.126653 -0.985817 0.110112\nvn 0.126653 -0.985817 0.110112\nvn -0.215218 -0.975286 0.049990\nvn -0.215188 -0.975292 0.049990\nvn -0.494164 -0.869335 -0.007660\nvn -0.215188 -0.975292 0.049990\nvn -0.215218 -0.975286 0.049990\nvn -0.215218 -0.975286 0.049990\nvn -0.516715 -0.856085 0.011139\nvn -0.494164 -0.869335 -0.007660\nvn -0.727183 -0.664741 0.171244\nvn -0.494164 -0.869335 -0.007660\nvn -0.516715 -0.856085 0.011139\nvn -0.765513 -0.641697 -0.047061\nvn -0.727183 -0.664741 0.171244\nvn -0.516715 -0.856085 0.011139\nvn -0.765513 -0.641697 -0.047061\nvn -0.516715 -0.856085 0.011139\nvn -0.755994 -0.650550 -0.072514\nvn -0.831873 -0.546790 -0.094916\nvn -0.765513 -0.641697 -0.047061\nvn -0.755994 -0.650550 -0.072514\nvn -0.755994 -0.650550 -0.072514\nvn -0.831873 -0.546790 -0.094916\nvn -0.831873 -0.546790 -0.094916\nvn 0.009033 0.974475 0.224315\nvn 0.204935 0.894148 0.398121\nvn 0.184275 0.972343 0.143501\nvn 0.184275 0.972343 0.143501\nvn -0.069614 0.997117 0.030183\nvn 0.009033 0.974475 0.224315\nvn 0.486321 0.847515 0.212626\nvn 0.184275 0.972343 0.143501\nvn 0.204935 0.894148 0.398121\nvn 0.204935 0.894148 0.398121\nvn 0.387133 0.787450 0.479636\nvn 0.486321 0.847515 0.212626\nvn 0.733077 0.621864 0.275468\nvn 0.486321 0.847515 0.212626\nvn 0.387133 0.787450 0.479636\nvn 0.387133 0.787450 0.479636\nvn 0.608916 0.584654 0.536098\nvn 0.733077 0.621864 0.275468\nvn 0.887322 0.323293 0.328847\nvn 0.733077 0.621864 0.275468\nvn 0.608916 0.584654 0.536098\nvn 0.608916 0.584654 0.536098\nvn 0.747529 0.316328 0.584070\nvn 0.887322 0.323293 0.328847\nvn 0.931201 0.030367 0.363239\nvn 0.887322 0.323293 0.328847\nvn 0.747529 0.316328 0.584070\nvn 0.747529 0.316328 0.584070\nvn 0.786240 0.053440 0.615606\nvn 0.931201 0.030367 0.363239\nvn 0.898003 -0.221693 0.380058\nvn 0.931201 0.030367 0.363239\nvn 0.786240 0.053440 0.615606\nvn 0.786240 0.053440 0.615606\nvn 0.756333 -0.173442 0.630776\nvn 0.898003 -0.221693 0.380058\nvn 0.800502 -0.459732 0.384504\nvn 0.898003 -0.221693 0.380058\nvn 0.756333 -0.173442 0.630776\nvn 0.756333 -0.173442 0.630776\nvn 0.668983 -0.386740 0.634740\nvn 0.800502 -0.459732 0.384504\nvn 0.647193 -0.663063 0.376151\nvn 0.800502 -0.459732 0.384504\nvn 0.668983 -0.386740 0.634740\nvn 0.668983 -0.386740 0.634740\nvn 0.530979 -0.569800 0.627207\nvn 0.647193 -0.663063 0.376151\nvn 0.410054 -0.842020 0.350511\nvn 0.647193 -0.663063 0.376151\nvn 0.530979 -0.569800 0.627207\nvn 0.530979 -0.569800 0.627207\nvn 0.318619 -0.730901 0.603545\nvn 0.410054 -0.842020 0.350511\nvn 0.090061 -0.948191 0.304670\nvn 0.410054 -0.842020 0.350511\nvn 0.318619 -0.730901 0.603545\nvn 0.318619 -0.730901 0.603545\nvn 0.031039 -0.826315 0.562352\nvn 0.090061 -0.948191 0.304670\nvn -0.244882 -0.937871 0.245828\nvn 0.090061 -0.948191 0.304670\nvn 0.031039 -0.826315 0.562352\nvn 0.031039 -0.826315 0.562352\nvn -0.269942 -0.817059 0.509456\nvn -0.244882 -0.937871 0.245828\nvn -0.554415 -0.812304 0.181072\nvn -0.244882 -0.937871 0.245828\nvn -0.269942 -0.817059 0.509456\nvn -0.269942 -0.817059 0.509456\nvn -0.548125 -0.704201 0.451288\nvn -0.554415 -0.812304 0.181072\nvn -0.774950 -0.619271 0.126320\nvn -0.554415 -0.812304 0.181072\nvn -0.548125 -0.704201 0.451288\nvn -0.548125 -0.704201 0.451288\nvn -0.745835 -0.530459 0.402918\nvn -0.774950 -0.619271 0.126320\nvn -0.848986 -0.517943 0.104681\nvn -0.774950 -0.619271 0.126320\nvn -0.745835 -0.530459 0.402918\nvn -0.745835 -0.530459 0.402918\nvn -0.812359 -0.439049 0.383809\nvn -0.848986 -0.517943 0.104681\nvn -0.812359 -0.439049 0.383809\nvn -0.745835 -0.530459 0.402918\nvn -0.704258 -0.467491 0.534297\nvn -0.704258 -0.467491 0.534297\nvn -0.766457 -0.383808 0.515010\nvn -0.812359 -0.439049 0.383809\nvn -0.745835 -0.530459 0.402918\nvn -0.548125 -0.704201 0.451288\nvn -0.525974 -0.622600 0.579414\nvn -0.525974 -0.622600 0.579414\nvn -0.704258 -0.467491 0.534297\nvn -0.745835 -0.530459 0.402918\nvn -0.548125 -0.704201 0.451288\nvn -0.269942 -0.817059 0.509456\nvn -0.274032 -0.724802 0.632115\nvn -0.274032 -0.724802 0.632115\nvn -0.525974 -0.622600 0.579414\nvn -0.548125 -0.704201 0.451288\nvn -0.269942 -0.817059 0.509456\nvn 0.031039 -0.826315 0.562352\nvn -0.001373 -0.733204 0.680008\nvn -0.001373 -0.733204 0.680008\nvn -0.274032 -0.724802 0.632115\nvn -0.269942 -0.817059 0.509456\nvn 0.031039 -0.826315 0.562352\nvn 0.318619 -0.730901 0.603545\nvn 0.259104 -0.646783 0.717312\nvn 0.259104 -0.646783 0.717312\nvn -0.001373 -0.733204 0.680008\nvn 0.031039 -0.826315 0.562352\nvn 0.450982 -0.503109 0.737222\nvn 0.259104 -0.646783 0.717312\nvn 0.318619 -0.730901 0.603545\nvn 0.318619 -0.730901 0.603545\nvn 0.530979 -0.569800 0.627207\nvn 0.450982 -0.503109 0.737222\nvn 0.578518 -0.333878 0.744206\nvn 0.450982 -0.503109 0.737222\nvn 0.530979 -0.569800 0.627207\nvn 0.530979 -0.569800 0.627207\nvn 0.668983 -0.386740 0.634740\nvn 0.578518 -0.333878 0.744206\nvn 0.656204 -0.144175 0.740682\nvn 0.578518 -0.333878 0.744206\nvn 0.668983 -0.386740 0.634740\nvn 0.668983 -0.386740 0.634740\nvn 0.756333 -0.173442 0.630776\nvn 0.656204 -0.144175 0.740682\nvn 0.683869 0.065524 0.726657\nvn 0.656204 -0.144175 0.740682\nvn 0.756333 -0.173442 0.630776\nvn 0.756333 -0.173442 0.630776\nvn 0.786240 0.053440 0.615606\nvn 0.683869 0.065524 0.726657\nvn 0.647597 0.301809 0.699664\nvn 0.683869 0.065524 0.726657\nvn 0.786240 0.053440 0.615606\nvn 0.786240 0.053440 0.615606\nvn 0.747529 0.316328 0.584070\nvn 0.647597 0.301809 0.699664\nvn 0.522035 0.544833 0.656229\nvn 0.647597 0.301809 0.699664\nvn 0.747529 0.316328 0.584070\nvn 0.747529 0.316328 0.584070\nvn 0.608916 0.584654 0.536098\nvn 0.522035 0.544833 0.656229\nvn 0.356013 0.710439 0.607068\nvn 0.522035 0.544833 0.656229\nvn 0.608916 0.584654 0.536098\nvn 0.608916 0.584654 0.536098\nvn 0.387133 0.787450 0.479636\nvn 0.356013 0.710439 0.607068\nvn 0.356013 0.710439 0.607068\nvn 0.387133 0.787450 0.479636\nvn 0.204935 0.894148 0.398121\nvn 0.204935 0.894148 0.398121\nvn 0.279894 0.791188 0.543766\nvn 0.356013 0.710439 0.607068\nvn -0.414911 0.232130 -0.879752\nvn -0.428887 0.159096 -0.889238\nvn -0.475095 -0.050235 -0.878500\nvn -0.475095 -0.050235 -0.878500\nvn -0.422022 -0.054782 -0.904929\nvn -0.414911 0.232130 -0.879752\nvn -0.422022 -0.054782 -0.904929\nvn -0.475095 -0.050235 -0.878500\nvn -0.447874 -0.261888 -0.854882\nvn -0.447874 -0.261888 -0.854882\nvn -0.396929 -0.250072 -0.883126\nvn -0.422022 -0.054782 -0.904929\nvn -0.396929 -0.250072 -0.883126\nvn -0.447874 -0.261888 -0.854882\nvn -0.350607 -0.450253 -0.821186\nvn -0.350607 -0.450253 -0.821186\nvn -0.312550 -0.510622 -0.800985\nvn -0.396929 -0.250072 -0.883126\nvn -0.151560 -0.954040 -0.258531\nvn -0.151560 -0.954040 -0.258531\nvn 0.173289 -0.964046 -0.201458\nvn 0.173289 -0.964046 -0.201458\nvn 0.173289 -0.964046 -0.201458\nvn -0.151560 -0.954040 -0.258531\nvn 0.173289 -0.964046 -0.201458\nvn 0.483604 -0.861093 -0.156990\nvn 0.483638 -0.861068 -0.157021\nvn 0.483638 -0.861068 -0.157021\nvn 0.173289 -0.964046 -0.201458\nvn 0.173289 -0.964046 -0.201458\nvn 0.483604 -0.861093 -0.156990\nvn 0.742011 -0.657564 -0.130500\nvn 0.742023 -0.657544 -0.130532\nvn 0.742023 -0.657544 -0.130532\nvn 0.483638 -0.861068 -0.157021\nvn 0.483604 -0.861093 -0.156990\nvn 0.742011 -0.657564 -0.130500\nvn 0.917311 -0.377978 -0.125189\nvn 0.917311 -0.377978 -0.125189\nvn 0.917311 -0.377978 -0.125189\nvn 0.742023 -0.657544 -0.130532\nvn 0.742011 -0.657564 -0.130500\nvn 0.917311 -0.377978 -0.125189\nvn 0.988316 -0.056154 -0.141698\nvn 0.988320 -0.056154 -0.141668\nvn 0.988320 -0.056154 -0.141668\nvn 0.917311 -0.377978 -0.125189\nvn 0.917311 -0.377978 -0.125189\nvn 0.988316 -0.056154 -0.141698\nvn 0.946513 0.269116 -0.178017\nvn 0.946513 0.269116 -0.178017\nvn 0.946513 0.269116 -0.178017\nvn 0.988320 -0.056154 -0.141668\nvn 0.988316 -0.056154 -0.141698\nvn 0.946513 0.269116 -0.178017\nvn 0.796946 0.558653 -0.229748\nvn 0.796916 0.558684 -0.229779\nvn 0.796916 0.558684 -0.229779\nvn 0.946513 0.269116 -0.178017\nvn 0.946513 0.269116 -0.178017\nvn 0.796946 0.558653 -0.229748\nvn 0.557615 0.777536 -0.290695\nvn 0.557594 0.777549 -0.290700\nvn 0.557594 0.777549 -0.290700\nvn 0.796916 0.558684 -0.229779\nvn 0.796946 0.558653 -0.229748\nvn 0.557615 0.777536 -0.290695\nvn 0.257402 0.899320 -0.353508\nvn 0.257402 0.899320 -0.353508\nvn 0.257402 0.899320 -0.353508\nvn 0.557594 0.777549 -0.290700\nvn 0.557615 0.777536 -0.290695\nvn 0.257402 0.899320 -0.353508\nvn -0.067447 0.909316 -0.410604\nvn -0.067447 0.909316 -0.410604\nvn -0.067447 0.909316 -0.410604\nvn 0.257402 0.899320 -0.353508\nvn 0.257402 0.899320 -0.353508\nvn -0.067447 0.909316 -0.410604\nvn -0.377799 0.806352 -0.455044\nvn -0.377799 0.806352 -0.455044\nvn -0.377799 0.806352 -0.455044\nvn -0.067447 0.909316 -0.410604\nvn -0.067447 0.909316 -0.410604\nvn -0.377799 0.806352 -0.455044\nvn -0.606965 0.634157 -0.478998\nvn -0.608463 0.632603 -0.479152\nvn -0.608463 0.632603 -0.479152\nvn -0.377799 0.806352 -0.455044\nvn -0.377799 0.806352 -0.455044\nvn -0.756504 0.436238 -0.487235\nvn -0.608463 0.632603 -0.479152\nvn -0.606965 0.634157 -0.478998\nvn -0.606965 0.634157 -0.478998\nvn -0.757585 0.434383 -0.487213\nvn -0.756504 0.436238 -0.487235\nvn -0.756504 0.436238 -0.487235\nvn -0.757585 0.434383 -0.487213\nvn -0.850996 0.206279 -0.482965\nvn -0.850996 0.206279 -0.482965\nvn -0.851521 0.204235 -0.482908\nvn -0.756504 0.436238 -0.487235\nvn -0.851521 0.204235 -0.482908\nvn -0.850996 0.206279 -0.482965\nvn -0.883597 -0.041262 -0.466427\nvn -0.883597 -0.041262 -0.466427\nvn -0.883587 -0.039065 -0.466636\nvn -0.851521 0.204235 -0.482908\nvn -0.883597 -0.041262 -0.466427\nvn -0.840677 -0.323838 -0.434041\nvn -0.840677 -0.323838 -0.434041\nvn -0.840677 -0.323838 -0.434041\nvn -0.883587 -0.039065 -0.466636\nvn -0.883597 -0.041262 -0.466427\nvn -0.840677 -0.323838 -0.434041\nvn -0.691103 -0.613402 -0.382250\nvn -0.691103 -0.613402 -0.382250\nvn -0.691103 -0.613402 -0.382250\nvn -0.840677 -0.323838 -0.434041\nvn -0.840677 -0.323838 -0.434041\nvn -0.691103 -0.613402 -0.382250\nvn -0.451741 -0.832282 -0.321303\nvn -0.451741 -0.832282 -0.321303\nvn -0.451741 -0.832282 -0.321303\nvn -0.691103 -0.613402 -0.382250\nvn -0.691103 -0.613402 -0.382250\nvn -0.451741 -0.832282 -0.321303\nvn -0.151560 -0.954040 -0.258531\nvn -0.151560 -0.954040 -0.258531\nvn -0.151560 -0.954040 -0.258531\nvn -0.451741 -0.832282 -0.321303\nvn -0.451741 -0.832282 -0.321303\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169716 -0.087742 -0.981579\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169716 -0.087742 -0.981579\nvn 0.169715 -0.087772 -0.981577\nvn 0.169745 -0.087772 -0.981572\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169745 -0.087772 -0.981572\nvn 0.169716 -0.087712 -0.981582\nvn 0.169686 -0.087773 -0.981582\nvn 0.169715 -0.087772 -0.981577\nvn 0.169716 -0.087712 -0.981582\nvn 0.169715 -0.087772 -0.981577\nvn 0.169686 -0.087773 -0.981582\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169808 -0.087834 -0.981555\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169716 -0.087742 -0.981579\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169716 -0.087742 -0.981579\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169745 -0.087772 -0.981572\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169745 -0.087772 -0.981572\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169745 -0.087741 -0.981574\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169745 -0.087741 -0.981574\nvn 0.169716 -0.087742 -0.981579\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169716 -0.087742 -0.981579\nvn -0.069614 0.997117 0.030183\nvn 0.184275 0.972343 0.143501\nvn 0.205578 0.978633 0.003876\nvn 0.205578 0.978633 0.003876\nvn -0.135779 0.989150 -0.056094\nvn -0.069614 0.997117 0.030183\nvn -0.069614 0.997117 0.030183\nvn -0.135779 0.989150 -0.056094\nvn -0.405324 0.903547 -0.138984\nvn -0.405324 0.903547 -0.138984\nvn -0.344472 0.927910 -0.142556\nvn -0.069614 0.997117 0.030183\nvn -0.344472 0.927910 -0.142556\nvn -0.405324 0.903547 -0.138984\nvn -0.527275 0.833378 -0.165717\nvn 0.521053 0.850661 0.069858\nvn 0.205578 0.978633 0.003876\nvn 0.184275 0.972343 0.143501\nvn 0.184275 0.972343 0.143501\nvn 0.486321 0.847515 0.212626\nvn 0.521053 0.850661 0.069858\nvn 0.772556 0.620664 0.133917\nvn 0.521053 0.850661 0.069858\nvn 0.486321 0.847515 0.212626\nvn 0.486321 0.847515 0.212626\nvn 0.733077 0.621864 0.275468\nvn 0.772556 0.620664 0.133917\nvn 0.929744 0.316395 0.188335\nvn 0.772556 0.620664 0.133917\nvn 0.733077 0.621864 0.275468\nvn 0.733077 0.621864 0.275468\nvn 0.887322 0.323293 0.328847\nvn 0.929744 0.316395 0.188335\nvn 0.974721 0.018037 0.222698\nvn 0.929744 0.316395 0.188335\nvn 0.887322 0.323293 0.328847\nvn 0.887322 0.323293 0.328847\nvn 0.931201 0.030367 0.363239\nvn 0.974721 0.018037 0.222698\nvn 0.940816 -0.239423 0.239881\nvn 0.974721 0.018037 0.222698\nvn 0.931201 0.030367 0.363239\nvn 0.931201 0.030367 0.363239\nvn 0.898003 -0.221693 0.380058\nvn 0.940816 -0.239423 0.239881\nvn 0.841656 -0.481561 0.244366\nvn 0.940816 -0.239423 0.239881\nvn 0.898003 -0.221693 0.380058\nvn 0.898003 -0.221693 0.380058\nvn 0.800502 -0.459732 0.384504\nvn 0.841656 -0.481561 0.244366\nvn 0.685030 -0.689271 0.235881\nvn 0.841656 -0.481561 0.244366\nvn 0.800502 -0.459732 0.384504\nvn 0.800502 -0.459732 0.384504\nvn 0.647193 -0.663063 0.376151\nvn 0.685030 -0.689271 0.235881\nvn 0.443321 -0.871320 0.210399\nvn 0.685030 -0.689271 0.235881\nvn 0.647193 -0.663063 0.376151\nvn 0.647193 -0.663063 0.376151\nvn 0.410054 -0.842020 0.350511\nvn 0.443321 -0.871320 0.210399\nvn 0.117192 -0.979529 0.163672\nvn 0.443321 -0.871320 0.210399\nvn 0.410054 -0.842020 0.350511\nvn 0.410054 -0.842020 0.350511\nvn 0.090061 -0.948191 0.304670\nvn 0.117192 -0.979529 0.163672\nvn -0.224192 -0.969008 0.103734\nvn 0.117192 -0.979529 0.163672\nvn 0.090061 -0.948191 0.304670\nvn 0.090061 -0.948191 0.304670\nvn -0.244882 -0.937871 0.245828\nvn -0.224192 -0.969008 0.103734\nvn -0.539641 -0.841050 0.037722\nvn -0.224192 -0.969008 0.103734\nvn -0.244882 -0.937871 0.245828\nvn -0.244882 -0.937871 0.245828\nvn -0.554415 -0.812304 0.181072\nvn -0.539641 -0.841050 0.037722\nvn -0.764266 -0.644631 -0.018678\nvn -0.539641 -0.841050 0.037722\nvn -0.554415 -0.812304 0.181072\nvn -0.554415 -0.812304 0.181072\nvn -0.774950 -0.619271 0.126320\nvn -0.764266 -0.644631 -0.018678\nvn -0.839888 -0.541197 -0.041170\nvn -0.764266 -0.644631 -0.018678\nvn -0.774950 -0.619271 0.126320\nvn -0.774950 -0.619271 0.126320\nvn -0.848986 -0.517943 0.104681\nvn -0.839888 -0.541197 -0.041170\nvn -0.169745 0.087772 0.981572\nvn -0.169715 0.087772 0.981577\nvn -0.169716 0.087742 0.981579\nvn -0.169716 0.087742 0.981579\nvn -0.169716 0.087742 0.981579\nvn -0.169745 0.087772 0.981572\nvn -0.169716 0.087742 0.981579\nvn -0.169716 0.087742 0.981579\nvn -0.169716 0.087742 0.981579\nvn -0.169716 0.087742 0.981579\nvn -0.169716 0.087742 0.981579\nvn -0.169716 0.087742 0.981579\nvn -0.169716 0.087742 0.981579\nvn -0.169716 0.087742 0.981579\nvn -0.169715 0.087772 0.981577\nvn -0.169715 0.087772 0.981577\nvn -0.169715 0.087772 0.981577\nvn -0.169716 0.087742 0.981579\nvn -0.169715 0.087772 0.981577\nvn -0.169715 0.087772 0.981577\nvn -0.169686 0.087773 0.981582\nvn -0.169686 0.087773 0.981582\nvn -0.169686 0.087773 0.981582\nvn -0.169715 0.087772 0.981577\nvn -0.169686 0.087773 0.981582\nvn -0.169686 0.087773 0.981582\nvn -0.169780 0.087744 0.981568\nvn -0.169780 0.087744 0.981568\nvn -0.169780 0.087744 0.981568\nvn -0.169686 0.087773 0.981582\nvn -0.169780 0.087744 0.981568\nvn -0.169780 0.087744 0.981568\nvn -0.169716 0.087742 0.981579\nvn -0.169716 0.087742 0.981579\nvn -0.169715 0.087772 0.981577\nvn -0.169780 0.087744 0.981568\nvn -0.169715 0.087772 0.981577\nvn -0.169745 0.087772 0.981572\nvn -0.169744 0.087802 0.981569\nvn -0.169744 0.087802 0.981569\nvn -0.169715 0.087802 0.981574\nvn -0.169715 0.087772 0.981577\nvn -0.169715 0.087772 0.981577\nvn -0.169716 0.087742 0.981579\nvn -0.169745 0.087772 0.981572\nvn -0.169745 0.087772 0.981572\nvn -0.169749 0.087805 0.981568\nvn -0.169715 0.087772 0.981577\nvn -0.169716 0.087742 0.981579\nvn -0.169715 0.087772 0.981577\nvn -0.169716 0.087712 0.981582\nvn -0.169716 0.087712 0.981582\nvn -0.169716 0.087712 0.981582\nvn -0.169716 0.087742 0.981579\nvn -0.169716 0.087712 0.981582\nvn -0.169716 0.087712 0.981582\nvn -0.169716 0.087742 0.981579\nvn -0.169716 0.087742 0.981579\nvn -0.169716 0.087742 0.981579\nvn -0.169716 0.087712 0.981582\nvn -0.169716 0.087742 0.981579\nvn -0.169716 0.087742 0.981579\nvn -0.169715 0.087802 0.981574\nvn -0.169715 0.087802 0.981574\nvn -0.169715 0.087802 0.981574\nvn -0.169716 0.087742 0.981579\nvn -0.169715 0.087802 0.981574\nvn -0.169715 0.087802 0.981574\nvn -0.169715 0.087772 0.981577\nvn -0.169715 0.087772 0.981577\nvn -0.169715 0.087772 0.981577\nvn -0.169715 0.087802 0.981574\nvn -0.169745 0.087772 0.981572\nvn -0.169715 0.087772 0.981577\nvn -0.169715 0.087772 0.981577\nvn -0.169715 0.087772 0.981577\nvn -0.169745 0.087772 0.981572\nvn -0.169745 0.087772 0.981572\nvn -0.169715 0.087772 0.981577\nvn -0.169716 0.087742 0.981579\nvn -0.169715 0.087772 0.981577\nvn -0.169715 0.087772 0.981577\nvn -0.169715 0.087802 0.981574\nvn -0.169715 0.087772 0.981577\nvn 0.169716 -0.087742 -0.981579\nvn 0.169716 -0.087742 -0.981579\nvn 0.169715 -0.087802 -0.981574\nvn 0.169715 -0.087802 -0.981574\nvn 0.169715 -0.087802 -0.981574\nvn 0.169716 -0.087742 -0.981579\nvn 0.169716 -0.087712 -0.981582\nvn 0.169715 -0.087802 -0.981574\nvn 0.169715 -0.087802 -0.981574\nvn 0.169715 -0.087802 -0.981574\nvn 0.169716 -0.087712 -0.981582\nvn 0.169716 -0.087712 -0.981582\nvn 0.169715 -0.087772 -0.981577\nvn 0.169716 -0.087712 -0.981582\nvn 0.169716 -0.087712 -0.981582\nvn 0.169715 -0.087772 -0.981577\nvn 0.169716 -0.087712 -0.981582\nvn 0.169744 -0.087802 -0.981569\nvn 0.169715 -0.087772 -0.981577\nvn 0.169744 -0.087802 -0.981569\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169686 -0.087773 -0.981582\nvn 0.169715 -0.087772 -0.981577\nvn 0.169716 -0.087742 -0.981579\nvn 0.169716 -0.087742 -0.981579\nvn 0.169716 -0.087742 -0.981579\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169685 -0.087803 -0.981579\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169655 -0.087803 -0.981584\nvn 0.169685 -0.087803 -0.981579\nvn 0.169656 -0.087773 -0.981587\nvn 0.169685 -0.087803 -0.981579\nvn 0.169655 -0.087803 -0.981584\nvn 0.169655 -0.087803 -0.981584\nvn 0.169656 -0.087773 -0.981587\nvn 0.169656 -0.087773 -0.981587\nvn 0.169715 -0.087772 -0.981577\nvn 0.169656 -0.087773 -0.981587\nvn 0.169656 -0.087773 -0.981587\nvn 0.169656 -0.087773 -0.981587\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169745 -0.087772 -0.981572\nvn 0.169745 -0.087772 -0.981572\nvn 0.169745 -0.087772 -0.981572\nvn 0.169715 -0.087772 -0.981577\nvn 0.169745 -0.087772 -0.981572\nvn 0.169745 -0.087772 -0.981572\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169745 -0.087772 -0.981572\nvn 0.169745 -0.087772 -0.981572\nvn 0.169716 -0.087742 -0.981579\nvn 0.169745 -0.087772 -0.981572\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169716 -0.087742 -0.981579\nvn 0.169716 -0.087742 -0.981579\nvn 0.169715 -0.087772 -0.981577\nvn 0.169716 -0.087742 -0.981579\nvn 0.169716 -0.087742 -0.981579\nvn 0.169716 -0.087742 -0.981579\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087802 -0.981574\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087802 -0.981574\nvn 0.169715 -0.087802 -0.981574\nvn 0.169715 -0.087802 -0.981574\nvn 0.169715 -0.087802 -0.981574\nvn 0.169715 -0.087802 -0.981574\nvn 0.169715 -0.087802 -0.981574\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087802 -0.981574\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087802 -0.981574\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169745 -0.087772 -0.981572\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169745 -0.087741 -0.981574\nvn 0.169745 -0.087772 -0.981572\nvn 0.169745 -0.087772 -0.981572\nvn 0.169745 -0.087741 -0.981574\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169715 -0.087772 -0.981577\nvn 0.169745 -0.087772 -0.981572\nvn 0.123602 -0.024812 0.992022\nvn -0.059513 -0.102270 0.992975\nvn 0.035341 -0.087680 0.995522\nvn 0.123602 -0.024812 0.992022\nvn 0.035341 -0.087680 0.995522\nvn 0.141702 0.040682 0.989073\nvn 0.123602 -0.024812 0.992022\nvn 0.141702 0.040682 0.989073\nvn 0.116735 0.111180 0.986920\nvn 0.537353 0.494199 0.683388\nvn 0.550378 0.494407 0.672790\nvn 0.534551 0.494143 0.685623\nvn 0.534551 0.494143 0.685623\nvn 0.522912 0.493828 0.694764\nvn 0.537353 0.494199 0.683388\nvn 0.657931 0.748421 0.083622\nvn 0.714939 0.683200 0.148658\nvn 0.663674 0.712658 0.227278\nvn 0.663674 0.712658 0.227278\nvn 0.615240 0.763900 0.194775\nvn 0.657931 0.748421 0.083622\nvn 0.621348 0.783529 0.002991\nvn 0.657931 0.748421 0.083622\nvn 0.615240 0.763900 0.194775\nvn 0.615240 0.763900 0.194775\nvn 0.584431 0.806729 0.087344\nvn 0.621348 0.783529 0.002991\nvn 0.552894 0.831906 0.047336\nvn 0.621348 0.783529 0.002991\nvn 0.584431 0.806729 0.087344\nvn 0.584431 0.806729 0.087344\nvn 0.520957 0.850684 0.070285\nvn 0.552894 0.831906 0.047336\nvn -0.298112 -0.603457 0.739573\nvn -0.340566 -0.608619 0.716658\nvn -0.300976 -0.603844 0.738096\nvn -0.300976 -0.603844 0.738096\nvn -0.260453 -0.597786 0.758166\nvn -0.298112 -0.603457 0.739573\nvn -0.350843 -0.928623 0.120701\nvn -0.412371 -0.888862 0.199685\nvn -0.363359 -0.900708 0.238109\nvn -0.363359 -0.900708 0.238109\nvn -0.317432 -0.935114 0.157480\nvn -0.350843 -0.928623 0.120701\nvn -0.317706 -0.948084 0.014100\nvn -0.350843 -0.928623 0.120701\nvn -0.317432 -0.935114 0.157480\nvn -0.317432 -0.935114 0.157480\nvn -0.286728 -0.957204 0.039339\nvn -0.317706 -0.948084 0.014100\nvn -0.240061 -0.970102 0.035677\nvn -0.317706 -0.948084 0.014100\nvn -0.286728 -0.957204 0.039339\nvn -0.286728 -0.957204 0.039339\nvn -0.215159 -0.975299 0.049990\nvn -0.240061 -0.970102 0.035677\nvn 0.946886 -0.297347 0.122443\nvn 0.882076 -0.455656 0.119667\nvn 0.915807 -0.400101 -0.034883\nvn 0.915807 -0.400101 -0.034883\nvn 0.912188 -0.409750 -0.004303\nvn 0.946886 -0.297347 0.122443\nvn 0.912188 -0.409750 -0.004303\nvn 0.915807 -0.400101 -0.034883\nvn 0.908820 -0.415483 -0.037691\nvn 0.915807 -0.400101 -0.034883\nvn 0.885935 -0.457296 -0.077457\nvn 0.908820 -0.415483 -0.037691\nvn 0.915807 -0.400101 -0.034883\nvn 0.886313 -0.456600 -0.077244\nvn 0.885935 -0.457296 -0.077457\nvn 0.912188 -0.409750 -0.004303\nvn 0.908820 -0.415483 -0.037691\nvn 0.904857 -0.425709 -0.002594\nvn 0.908820 -0.415483 -0.037691\nvn 0.904353 -0.426784 0.001221\nvn 0.904857 -0.425709 -0.002594\nvn 0.908820 -0.415483 -0.037691\nvn 0.903642 -0.428184 0.009461\nvn 0.904353 -0.426784 0.001221\nvn -0.175699 -0.060336 -0.982593\nvn -0.175699 -0.060306 -0.982595\nvn -0.166086 -0.060093 -0.984279\nvn -0.166086 -0.060093 -0.984279\nvn -0.166086 -0.060093 -0.984279\nvn -0.175699 -0.060336 -0.982593\nvn -0.166086 -0.060093 -0.984279\nvn -0.166086 -0.060093 -0.984279\nvn -0.156901 -0.063054 -0.985600\nvn -0.156901 -0.063054 -0.985600\nvn -0.156896 -0.063052 -0.985600\nvn -0.166086 -0.060093 -0.984279\nvn -0.156896 -0.063052 -0.985600\nvn -0.156901 -0.063054 -0.985600\nvn -0.149270 -0.069065 -0.986382\nvn -0.149270 -0.069065 -0.986382\nvn -0.149270 -0.069065 -0.986382\nvn -0.156896 -0.063052 -0.985600\nvn -0.149270 -0.069065 -0.986382\nvn -0.149270 -0.069065 -0.986382\nvn -0.144082 -0.077367 -0.986537\nvn -0.144082 -0.077367 -0.986537\nvn -0.144082 -0.077367 -0.986537\nvn -0.149270 -0.069065 -0.986382\nvn -0.144082 -0.077367 -0.986537\nvn -0.144082 -0.077367 -0.986537\nvn -0.142036 -0.086858 -0.986043\nvn -0.142036 -0.086858 -0.986043\nvn -0.142036 -0.086888 -0.986041\nvn -0.144082 -0.077367 -0.986537\nvn -0.142036 -0.086888 -0.986041\nvn -0.142036 -0.086858 -0.986043\nvn -0.143286 -0.096470 -0.984968\nvn -0.143286 -0.096470 -0.984968\nvn -0.143286 -0.096470 -0.984968\nvn -0.142036 -0.086888 -0.986041\nvn -0.143286 -0.096470 -0.984968\nvn -0.143286 -0.096470 -0.984968\nvn -0.147651 -0.105047 -0.983445\nvn -0.147651 -0.105047 -0.983445\nvn -0.147621 -0.105047 -0.983450\nvn -0.143286 -0.096470 -0.984968\nvn -0.175699 -0.060306 -0.982595\nvn -0.175699 -0.060336 -0.982593\nvn -0.184610 -0.063907 -0.980732\nvn -0.184610 -0.063907 -0.980732\nvn -0.184610 -0.063907 -0.980732\nvn -0.175699 -0.060306 -0.982595\nvn -0.184610 -0.063907 -0.980732\nvn -0.184610 -0.063907 -0.980732\nvn -0.191631 -0.070408 -0.978938\nvn -0.191631 -0.070408 -0.978938\nvn -0.191631 -0.070408 -0.978938\nvn -0.184610 -0.063907 -0.980732\nvn -0.191631 -0.070408 -0.978938\nvn -0.191631 -0.070408 -0.978938\nvn -0.196085 -0.078953 -0.977403\nvn -0.196085 -0.078953 -0.977403\nvn -0.196114 -0.078952 -0.977398\nvn -0.191631 -0.070408 -0.978938\nvn -0.196114 -0.078952 -0.977398\nvn -0.196085 -0.078953 -0.977403\nvn -0.197398 -0.087255 -0.976433\nvn -0.197398 -0.087255 -0.976433\nvn -0.197366 -0.087437 -0.976423\nvn -0.196114 -0.078952 -0.977398\nvn -0.197366 -0.087437 -0.976423\nvn -0.197398 -0.087255 -0.976433\nvn -0.196361 -0.094732 -0.975945\nvn -0.196361 -0.094732 -0.975945\nvn -0.196388 -0.094517 -0.975960\nvn -0.197366 -0.087437 -0.976423\nvn -0.196388 -0.094517 -0.975960\nvn -0.196361 -0.094732 -0.975945\nvn -0.193675 -0.101294 -0.975823\nvn -0.193675 -0.101294 -0.975823\nvn -0.193554 -0.101477 -0.975827\nvn -0.196388 -0.094517 -0.975960\nvn -0.193554 -0.101477 -0.975827\nvn -0.193675 -0.101294 -0.975823\nvn -0.189129 -0.107306 -0.976072\nvn -0.189129 -0.107306 -0.976072\nvn -0.189278 -0.107183 -0.976056\nvn -0.193554 -0.101477 -0.975827\nvn -0.189278 -0.107183 -0.976056\nvn -0.189129 -0.107306 -0.976072\nvn -0.182415 -0.112403 -0.976776\nvn -0.182415 -0.112403 -0.976776\nvn -0.182415 -0.112403 -0.976776\nvn -0.189278 -0.107183 -0.976056\nvn -0.182415 -0.112403 -0.976776\nvn -0.182415 -0.112403 -0.976776\nvn -0.173226 -0.115362 -0.978103\nvn -0.173226 -0.115362 -0.978103\nvn -0.173226 -0.115362 -0.978103\nvn -0.182415 -0.112403 -0.976776\nvn -0.173226 -0.115362 -0.978103\nvn -0.173226 -0.115362 -0.978103\nvn -0.163613 -0.115088 -0.979788\nvn -0.163613 -0.115088 -0.979788\nvn -0.163613 -0.115118 -0.979785\nvn -0.173226 -0.115362 -0.978103\nvn -0.163613 -0.115118 -0.979785\nvn -0.163613 -0.115088 -0.979788\nvn -0.154700 -0.111577 -0.981641\nvn -0.154700 -0.111577 -0.981641\nvn -0.154670 -0.111608 -0.981642\nvn -0.163613 -0.115118 -0.979785\nvn -0.154670 -0.111608 -0.981642\nvn -0.154700 -0.111577 -0.981641\nvn -0.147621 -0.105047 -0.983450\nvn -0.147621 -0.105047 -0.983450\nvn -0.147651 -0.105047 -0.983445\nvn -0.154670 -0.111608 -0.981642\nvn 0.205548 -0.625160 -0.752944\nvn 0.231368 -0.634406 -0.737562\nvn 0.400689 -0.479612 -0.780654\nvn 0.400689 -0.479612 -0.780654\nvn 0.350572 -0.450247 -0.821205\nvn 0.205548 -0.625160 -0.752944\nvn 0.231368 -0.634406 -0.737562\nvn 0.205548 -0.625160 -0.752944\nvn 0.014161 -0.708728 -0.705340\nvn 0.014161 -0.708728 -0.705340\nvn 0.018983 -0.720520 -0.693175\nvn 0.231368 -0.634406 -0.737562\nvn 0.018983 -0.720520 -0.693175\nvn 0.014161 -0.708728 -0.705340\nvn -0.211162 -0.715676 -0.665746\nvn -0.211162 -0.715676 -0.665746\nvn -0.210795 -0.727665 -0.652740\nvn 0.018983 -0.720520 -0.693175\nvn -0.210795 -0.727665 -0.652740\nvn -0.211162 -0.715676 -0.665746\nvn -0.426417 -0.644265 -0.634895\nvn -0.426417 -0.644265 -0.634895\nvn -0.430388 -0.654831 -0.621259\nvn -0.210795 -0.727665 -0.652740\nvn -0.430388 -0.654831 -0.621259\nvn -0.426417 -0.644265 -0.634895\nvn -0.585965 -0.524774 -0.617460\nvn -0.585965 -0.524774 -0.617460\nvn -0.591805 -0.534001 -0.603830\nvn -0.430388 -0.654831 -0.621259\nvn -0.591805 -0.534001 -0.603830\nvn -0.585965 -0.524774 -0.617460\nvn -0.685556 -0.388786 -0.615514\nvn -0.685556 -0.388786 -0.615514\nvn -0.699806 -0.390738 -0.597994\nvn -0.591805 -0.534001 -0.603830\nvn -0.699806 -0.390738 -0.597994\nvn -0.685556 -0.388786 -0.615514\nvn -0.753296 -0.223459 -0.618556\nvn -0.753296 -0.223459 -0.618556\nvn -0.765048 -0.231517 -0.600917\nvn -0.699806 -0.390738 -0.597994\nvn -0.765048 -0.231517 -0.600917\nvn -0.753296 -0.223459 -0.618556\nvn -0.777651 -0.056796 -0.626125\nvn -0.777651 -0.056796 -0.626125\nvn -0.788471 -0.053867 -0.612709\nvn -0.765048 -0.231517 -0.600917\nvn -0.788471 -0.053867 -0.612709\nvn -0.777651 -0.056796 -0.626125\nvn -0.747473 0.139655 -0.649446\nvn -0.747473 0.139655 -0.649446\nvn -0.757916 0.144783 -0.636083\nvn -0.788471 -0.053867 -0.612709\nvn -0.757916 0.144783 -0.636083\nvn -0.747473 0.139655 -0.649446\nvn -0.643712 0.340442 -0.685371\nvn -0.643712 0.340442 -0.685371\nvn -0.652052 0.349633 -0.672744\nvn -0.757916 0.144783 -0.636083\nvn -0.652052 0.349633 -0.672744\nvn -0.643712 0.340442 -0.685371\nvn -0.477689 0.492246 -0.727673\nvn -0.477689 0.492246 -0.727673\nvn -0.482691 0.504451 -0.715918\nvn -0.652052 0.349633 -0.672744\nvn -0.482691 0.504451 -0.715918\nvn -0.477689 0.492246 -0.727673\nvn -0.269483 0.576718 -0.771216\nvn -0.269483 0.576718 -0.771216\nvn -0.270305 0.590600 -0.760346\nvn -0.482691 0.504451 -0.715918\nvn -0.270305 0.590600 -0.760346\nvn -0.269483 0.576718 -0.771216\nvn -0.044131 0.583650 -0.810805\nvn -0.044131 0.583650 -0.810805\nvn -0.040499 0.597690 -0.800704\nvn -0.270305 0.590600 -0.760346\nvn -0.040499 0.597690 -0.800704\nvn -0.044131 0.583650 -0.810805\nvn 0.171060 0.512203 -0.841657\nvn 0.171060 0.512203 -0.841657\nvn 0.179026 0.524779 -0.832200\nvn -0.040499 0.597690 -0.800704\nvn 0.179026 0.524779 -0.832200\nvn 0.171060 0.512203 -0.841657\nvn 0.340293 0.375788 -0.861965\nvn 0.340293 0.375788 -0.861965\nvn 0.361839 0.380883 -0.850883\nvn 0.179026 0.524779 -0.832200\nvn 0.361839 0.380883 -0.850883\nvn 0.340293 0.375788 -0.861965\nvn 0.428884 0.159126 -0.889234\nvn 0.428884 0.159126 -0.889234\nvn 0.485802 0.183053 -0.854686\nvn 0.361839 0.380883 -0.850883\nvn 0.485802 0.183053 -0.854686\nvn 0.428884 0.159126 -0.889234\nvn 0.475058 -0.050265 -0.878518\nvn 0.475058 -0.050265 -0.878518\nvn 0.536067 -0.044588 -0.842997\nvn 0.485802 0.183053 -0.854686\nvn 0.536067 -0.044588 -0.842997\nvn 0.475058 -0.050265 -0.878518\nvn 0.447878 -0.261859 -0.854889\nvn 0.447878 -0.261859 -0.854889\nvn 0.506496 -0.274733 -0.817303\nvn 0.536067 -0.044588 -0.842997\nvn 0.506496 -0.274733 -0.817303\nvn 0.447878 -0.261859 -0.854889\nvn 0.350572 -0.450247 -0.821205\nvn 0.350572 -0.450247 -0.821205\nvn 0.400689 -0.479612 -0.780654\nvn 0.506496 -0.274733 -0.817303\nvn -0.017884 0.679167 -0.733766\nvn -0.044131 0.583650 -0.810805\nvn -0.269483 0.576718 -0.771216\nvn -0.269483 0.576718 -0.771216\nvn -0.273602 0.671264 -0.688873\nvn -0.017884 0.679167 -0.733766\nvn -0.044131 0.583650 -0.810805\nvn -0.017884 0.679167 -0.733766\nvn 0.214245 0.596712 -0.773327\nvn 0.214245 0.596712 -0.773327\nvn 0.171060 0.512203 -0.841657\nvn -0.044131 0.583650 -0.810805\nvn 0.277698 0.738668 -0.614209\nvn 0.214245 0.596712 -0.773327\nvn -0.017884 0.679167 -0.733766\nvn -0.017884 0.679167 -0.733766\nvn 0.027193 0.816182 -0.577154\nvn 0.277698 0.738668 -0.614209\nvn 0.027193 0.816182 -0.577154\nvn -0.017884 0.679167 -0.733766\nvn -0.273602 0.671264 -0.688873\nvn -0.273602 0.671264 -0.688873\nvn -0.270771 0.807001 -0.524816\nvn 0.027193 0.816182 -0.577154\nvn 0.171060 0.512203 -0.841657\nvn 0.214245 0.596712 -0.773327\nvn 0.367329 0.438103 -0.820448\nvn 0.367329 0.438103 -0.820448\nvn 0.340293 0.375788 -0.861965\nvn 0.171060 0.512203 -0.841657\nvn 0.214245 0.596712 -0.773327\nvn 0.277698 0.738668 -0.614209\nvn 0.395560 0.633793 -0.664709\nvn 0.214245 0.596712 -0.773327\nvn 0.395560 0.633793 -0.664709\nvn 0.367329 0.438103 -0.820448\nvn 0.395560 0.633793 -0.664709\nvn 0.451472 0.547578 -0.704508\nvn 0.367329 0.438103 -0.820448\nvn 0.407369 0.360095 -0.839275\nvn 0.340293 0.375788 -0.861965\nvn 0.367329 0.438103 -0.820448\nvn 0.407369 0.360095 -0.839275\nvn 0.397574 0.345691 -0.849960\nvn 0.340293 0.375788 -0.861965\nvn 0.397574 0.345691 -0.849960\nvn 0.428884 0.159126 -0.889234\nvn 0.340293 0.375788 -0.861965\nvn -0.273602 0.671264 -0.688873\nvn -0.269483 0.576718 -0.771216\nvn -0.477689 0.492246 -0.727673\nvn -0.477689 0.492246 -0.727673\nvn -0.509950 0.575414 -0.639414\nvn -0.273602 0.671264 -0.688873\nvn -0.270771 0.807001 -0.524816\nvn -0.273602 0.671264 -0.688873\nvn -0.509950 0.575414 -0.639414\nvn -0.509950 0.575414 -0.639414\nvn -0.477689 0.492246 -0.727673\nvn -0.643712 0.340442 -0.685371\nvn -0.643712 0.340442 -0.685371\nvn -0.698371 0.403097 -0.591431\nvn -0.509950 0.575414 -0.639414\nvn -0.698371 0.403097 -0.591431\nvn -0.643712 0.340442 -0.685371\nvn -0.747473 0.139655 -0.649446\nvn -0.747473 0.139655 -0.649446\nvn -0.816123 0.175151 -0.550695\nvn -0.698371 0.403097 -0.591431\nvn -0.816123 0.175151 -0.550695\nvn -0.747473 0.139655 -0.649446\nvn -0.777651 -0.056796 -0.626125\nvn -0.777651 -0.056796 -0.626125\nvn -0.848802 -0.048099 -0.526519\nvn -0.816123 0.175151 -0.550695\nvn -0.848802 -0.048099 -0.526519\nvn -0.777651 -0.056796 -0.626125\nvn -0.753296 -0.223459 -0.618556\nvn -0.753296 -0.223459 -0.618556\nvn -0.829574 -0.209576 -0.517576\nvn -0.848802 -0.048099 -0.526519\nvn -0.790346 -0.333266 -0.514089\nvn -0.829574 -0.209576 -0.517576\nvn -0.753296 -0.223459 -0.618556\nvn -0.790346 -0.333266 -0.514089\nvn -0.753296 -0.223459 -0.618556\nvn -0.685556 -0.388786 -0.615514\nvn -0.790346 -0.333266 -0.514089\nvn -0.685556 -0.388786 -0.615514\nvn -0.731547 -0.448939 -0.513121\nvn -0.731547 -0.448939 -0.513121\nvn -0.685556 -0.388786 -0.615514\nvn -0.585965 -0.524774 -0.617460\nvn -0.585965 -0.524774 -0.617460\nvn -0.631900 -0.577698 -0.516690\nvn -0.731547 -0.448939 -0.513121\nvn -0.631900 -0.577698 -0.516690\nvn -0.585965 -0.524774 -0.617460\nvn -0.426417 -0.644265 -0.634895\nvn -0.426417 -0.644265 -0.634895\nvn -0.451719 -0.714584 -0.534153\nvn -0.631900 -0.577698 -0.516690\nvn -0.451719 -0.714584 -0.534153\nvn -0.426417 -0.644265 -0.634895\nvn -0.211162 -0.715676 -0.665746\nvn -0.211162 -0.715676 -0.665746\nvn -0.207408 -0.795665 -0.569121\nvn -0.451719 -0.714584 -0.534153\nvn -0.207408 -0.795665 -0.569121\nvn -0.211162 -0.715676 -0.665746\nvn 0.014161 -0.708728 -0.705340\nvn 0.014161 -0.708728 -0.705340\nvn 0.048312 -0.787765 -0.614079\nvn -0.207408 -0.795665 -0.569121\nvn 0.048312 -0.787765 -0.614079\nvn 0.014161 -0.708728 -0.705340\nvn 0.205548 -0.625160 -0.752944\nvn 0.205548 -0.625160 -0.752944\nvn 0.255936 -0.707653 -0.658578\nvn 0.048312 -0.787765 -0.614079\nvn 0.338825 -0.634588 -0.694619\nvn 0.255936 -0.707653 -0.658578\nvn 0.205548 -0.625160 -0.752944\nvn 0.338825 -0.634588 -0.694619\nvn 0.205548 -0.625160 -0.752944\nvn 0.312551 -0.510622 -0.800985\nvn 0.205548 -0.625160 -0.752944\nvn 0.350572 -0.450247 -0.821205\nvn 0.312551 -0.510622 -0.800985\nvn 0.338825 -0.634588 -0.694619\nvn 0.312551 -0.510622 -0.800985\nvn 0.424380 -0.563520 -0.708764\nvn 0.104346 -0.893057 -0.437678\nvn 0.048312 -0.787765 -0.614079\nvn 0.255936 -0.707653 -0.658578\nvn 0.255936 -0.707653 -0.658578\nvn 0.347184 -0.800452 -0.488609\nvn 0.104346 -0.893057 -0.437678\nvn 0.347184 -0.800452 -0.488609\nvn 0.255936 -0.707653 -0.658578\nvn 0.338825 -0.634588 -0.694619\nvn 0.338825 -0.634588 -0.694619\nvn 0.440239 -0.738869 -0.510159\nvn 0.347184 -0.800452 -0.488609\nvn 0.048312 -0.787765 -0.614079\nvn 0.104346 -0.893057 -0.437678\nvn -0.193645 -0.902242 -0.385306\nvn -0.193645 -0.902242 -0.385306\nvn -0.207408 -0.795665 -0.569121\nvn 0.048312 -0.787765 -0.614079\nvn -0.207408 -0.795665 -0.569121\nvn -0.193645 -0.902242 -0.385306\nvn -0.478294 -0.807809 -0.344499\nvn -0.478294 -0.807809 -0.344499\nvn -0.451719 -0.714584 -0.534153\nvn -0.207408 -0.795665 -0.569121\nvn -0.451719 -0.714584 -0.534153\nvn -0.478294 -0.807809 -0.344499\nvn -0.689004 -0.648810 -0.322986\nvn 0.394128 -0.838582 -0.376091\nvn 0.347184 -0.800452 -0.488609\nvn 0.440239 -0.738869 -0.510159\nvn 0.440239 -0.738869 -0.510159\nvn 0.493279 -0.773198 -0.398547\nvn 0.394128 -0.838582 -0.376091\nvn 0.135660 -0.936798 -0.322500\nvn 0.104346 -0.893057 -0.437678\nvn 0.347184 -0.800452 -0.488609\nvn 0.347184 -0.800452 -0.488609\nvn 0.394128 -0.838582 -0.376091\nvn 0.135660 -0.936798 -0.322500\nvn 0.145302 -0.947711 -0.284133\nvn 0.135660 -0.936798 -0.322500\nvn 0.394128 -0.838582 -0.376091\nvn 0.394128 -0.838582 -0.376091\nvn 0.408923 -0.847509 -0.338393\nvn 0.145302 -0.947711 -0.284133\nvn 0.408923 -0.847509 -0.338393\nvn 0.394128 -0.838582 -0.376091\nvn 0.493279 -0.773198 -0.398547\nvn 0.493279 -0.773198 -0.398547\nvn 0.508881 -0.781633 -0.360679\nvn 0.408923 -0.847509 -0.338393\nvn -0.181192 -0.946550 -0.266859\nvn -0.193645 -0.902242 -0.385306\nvn 0.104346 -0.893057 -0.437678\nvn 0.104346 -0.893057 -0.437678\nvn 0.135660 -0.936798 -0.322500\nvn -0.181192 -0.946550 -0.266859\nvn 0.135660 -0.936798 -0.322500\nvn 0.145302 -0.947711 -0.284133\nvn -0.176522 -0.957626 -0.227580\nvn -0.176522 -0.957626 -0.227580\nvn -0.181192 -0.946550 -0.266859\nvn 0.135660 -0.936798 -0.322500\nvn -0.483858 -0.846127 -0.223495\nvn -0.478294 -0.807809 -0.344499\nvn -0.193645 -0.902242 -0.385306\nvn -0.193645 -0.902242 -0.385306\nvn -0.181192 -0.946550 -0.266859\nvn -0.483858 -0.846127 -0.223495\nvn -0.181192 -0.946550 -0.266859\nvn -0.176522 -0.957626 -0.227580\nvn -0.483999 -0.855597 -0.183571\nvn -0.483999 -0.855597 -0.183571\nvn -0.483858 -0.846127 -0.223495\nvn -0.181192 -0.946550 -0.266859\nvn -0.708056 -0.677262 -0.199934\nvn -0.689004 -0.648810 -0.322986\nvn -0.478294 -0.807809 -0.344499\nvn -0.478294 -0.807809 -0.344499\nvn -0.483858 -0.846127 -0.223495\nvn -0.708056 -0.677262 -0.199934\nvn -0.483858 -0.846127 -0.223495\nvn -0.483999 -0.855597 -0.183571\nvn -0.712532 -0.683357 -0.159127\nvn -0.712532 -0.683357 -0.159127\nvn -0.708056 -0.677262 -0.199934\nvn -0.483858 -0.846127 -0.223495\nvn -0.708056 -0.677262 -0.199934\nvn -0.712532 -0.683357 -0.159127\nvn -0.791884 -0.591251 -0.152780\nvn -0.791884 -0.591251 -0.152780\nvn -0.786934 -0.585753 -0.193979\nvn -0.708056 -0.677262 -0.199934\nvn -0.785815 -0.571446 -0.236526\nvn -0.708056 -0.677262 -0.199934\nvn -0.786934 -0.585753 -0.193979\nvn -0.689004 -0.648810 -0.322986\nvn -0.708056 -0.677262 -0.199934\nvn -0.785815 -0.571446 -0.236526\nvn -0.785815 -0.571446 -0.236526\nvn -0.825341 -0.512973 -0.235947\nvn -0.689004 -0.648810 -0.322986\nvn -0.785815 -0.571446 -0.236526\nvn -0.865133 -0.443661 -0.233901\nvn -0.825341 -0.512973 -0.235947\nvn -0.825341 -0.512973 -0.235947\nvn -0.865133 -0.443661 -0.233901\nvn -0.865185 -0.443626 -0.233776\nvn -0.865185 -0.443626 -0.233776\nvn -0.843730 -0.432761 -0.317551\nvn -0.825341 -0.512973 -0.235947\nvn -0.843730 -0.432761 -0.317551\nvn -0.865185 -0.443626 -0.233776\nvn -0.850976 -0.355675 -0.386438\nvn -0.790346 -0.333266 -0.514089\nvn -0.843730 -0.432761 -0.317551\nvn -0.850976 -0.355675 -0.386438\nvn -0.850976 -0.355675 -0.386438\nvn -0.900703 -0.293470 -0.320326\nvn -0.790346 -0.333266 -0.514089\nvn -0.843730 -0.432761 -0.317551\nvn -0.790346 -0.333266 -0.514089\nvn -0.731547 -0.448939 -0.513121\nvn -0.731547 -0.448939 -0.513121\nvn -0.806108 -0.499388 -0.317493\nvn -0.843730 -0.432761 -0.317551\nvn -0.825341 -0.512973 -0.235947\nvn -0.843730 -0.432761 -0.317551\nvn -0.806108 -0.499388 -0.317493\nvn -0.806108 -0.499388 -0.317493\nvn -0.731547 -0.448939 -0.513121\nvn -0.631900 -0.577698 -0.516690\nvn -0.631900 -0.577698 -0.516690\nvn -0.689004 -0.648810 -0.322986\nvn -0.806108 -0.499388 -0.317493\nvn -0.689004 -0.648810 -0.322986\nvn -0.825341 -0.512973 -0.235947\nvn -0.806108 -0.499388 -0.317493\nvn -0.689004 -0.648810 -0.322986\nvn -0.631900 -0.577698 -0.516690\nvn -0.451719 -0.714584 -0.534153\nvn -0.790346 -0.333266 -0.514089\nvn -0.900703 -0.293470 -0.320326\nvn -0.920650 -0.219680 -0.322713\nvn -0.920650 -0.219680 -0.322713\nvn -0.829574 -0.209576 -0.517576\nvn -0.790346 -0.333266 -0.514089\nvn -0.829574 -0.209576 -0.517576\nvn -0.920650 -0.219680 -0.322713\nvn -0.941888 -0.031344 -0.334462\nvn -0.941888 -0.031344 -0.334462\nvn -0.848802 -0.048099 -0.526519\nvn -0.829574 -0.209576 -0.517576\nvn -0.848802 -0.048099 -0.526519\nvn -0.941888 -0.031344 -0.334462\nvn -0.902912 0.228925 -0.363790\nvn -0.902912 0.228925 -0.363790\nvn -0.816123 0.175151 -0.550695\nvn -0.848802 -0.048099 -0.526519\nvn -0.816123 0.175151 -0.550695\nvn -0.902912 0.228925 -0.363790\nvn -0.765696 0.494532 -0.411276\nvn -0.765696 0.494532 -0.411276\nvn -0.698371 0.403097 -0.591431\nvn -0.816123 0.175151 -0.550695\nvn -0.698371 0.403097 -0.591431\nvn -0.765696 0.494532 -0.411276\nvn -0.546174 0.695290 -0.467189\nvn -0.546174 0.695290 -0.467189\nvn -0.509950 0.575414 -0.639414\nvn -0.698371 0.403097 -0.591431\nvn -0.509950 0.575414 -0.639414\nvn -0.546174 0.695290 -0.467189\nvn -0.270771 0.807001 -0.524816\nvn -0.935326 0.256179 -0.244002\nvn -0.902912 0.228925 -0.363790\nvn -0.941888 -0.031344 -0.334462\nvn -0.941888 -0.031344 -0.334462\nvn -0.977025 -0.020509 -0.212135\nvn -0.935326 0.256179 -0.244002\nvn -0.942587 0.264113 -0.204387\nvn -0.935326 0.256179 -0.244002\nvn -0.977025 -0.020509 -0.212135\nvn -0.977025 -0.020509 -0.212135\nvn -0.985017 -0.018006 -0.171514\nvn -0.942587 0.264113 -0.204387\nvn -0.789430 0.538595 -0.294476\nvn -0.765696 0.494532 -0.411276\nvn -0.902912 0.228925 -0.363790\nvn -0.902912 0.228925 -0.363790\nvn -0.935326 0.256179 -0.244002\nvn -0.789430 0.538595 -0.294476\nvn -0.935326 0.256179 -0.244002\nvn -0.942587 0.264113 -0.204387\nvn -0.794384 0.550993 -0.255659\nvn -0.794384 0.550993 -0.255659\nvn -0.789430 0.538595 -0.294476\nvn -0.935326 0.256179 -0.244002\nvn -0.556003 0.752059 -0.353933\nvn -0.546174 0.695290 -0.467189\nvn -0.765696 0.494532 -0.411276\nvn -0.765696 0.494532 -0.411276\nvn -0.789430 0.538595 -0.294476\nvn -0.556003 0.752059 -0.353933\nvn -0.789430 0.538595 -0.294476\nvn -0.794384 0.550993 -0.255659\nvn -0.557275 0.767824 -0.316054\nvn -0.557275 0.767824 -0.316054\nvn -0.556003 0.752059 -0.353933\nvn -0.789430 0.538595 -0.294476\nvn -0.263229 0.870837 -0.415154\nvn -0.270771 0.807001 -0.524816\nvn -0.546174 0.695290 -0.467189\nvn -0.546174 0.695290 -0.467189\nvn -0.556003 0.752059 -0.353933\nvn -0.263229 0.870837 -0.415154\nvn -0.270771 0.807001 -0.524816\nvn -0.263229 0.870837 -0.415154\nvn 0.053621 0.880586 -0.470842\nvn 0.053621 0.880586 -0.470842\nvn 0.027193 0.816182 -0.577154\nvn -0.270771 0.807001 -0.524816\nvn 0.027193 0.816182 -0.577154\nvn 0.053621 0.880586 -0.470842\nvn 0.320237 0.798533 -0.509700\nvn 0.320237 0.798533 -0.509700\nvn 0.277698 0.738668 -0.614209\nvn 0.027193 0.816182 -0.577154\nvn 0.333914 0.814720 -0.474060\nvn 0.320237 0.798533 -0.509700\nvn 0.053621 0.880586 -0.470842\nvn 0.053621 0.880586 -0.470842\nvn 0.061985 0.898401 -0.434780\nvn 0.333914 0.814720 -0.474060\nvn 0.061985 0.898401 -0.434780\nvn 0.053621 0.880586 -0.470842\nvn -0.263229 0.870837 -0.415154\nvn -0.263229 0.870837 -0.415154\nvn -0.259846 0.888493 -0.378232\nvn 0.061985 0.898401 -0.434780\nvn -0.556003 0.752059 -0.353933\nvn -0.557275 0.767824 -0.316054\nvn -0.259846 0.888493 -0.378232\nvn -0.259846 0.888493 -0.378232\nvn -0.263229 0.870837 -0.415154\nvn -0.556003 0.752059 -0.353933\nvn 0.277698 0.738668 -0.614209\nvn 0.320237 0.798533 -0.509700\nvn 0.425005 0.739501 -0.522024\nvn 0.425005 0.739501 -0.522024\nvn 0.395560 0.633793 -0.664709\nvn 0.277698 0.738668 -0.614209\nvn 0.439481 0.755327 -0.486145\nvn 0.425005 0.739501 -0.522024\nvn 0.320237 0.798533 -0.509700\nvn 0.320237 0.798533 -0.509700\nvn 0.333914 0.814720 -0.474060\nvn 0.439481 0.755327 -0.486145\nvn -0.985017 -0.018006 -0.171514\nvn -0.977025 -0.020509 -0.212135\nvn -0.969166 -0.140755 -0.202250\nvn -0.977025 -0.020509 -0.212135\nvn -0.957767 -0.151556 -0.244363\nvn -0.969166 -0.140755 -0.202250\nvn -0.944935 -0.220990 -0.241376\nvn -0.957767 -0.151556 -0.244363\nvn -0.977025 -0.020509 -0.212135\nvn -0.977025 -0.020509 -0.212135\nvn -0.941888 -0.031344 -0.334462\nvn -0.944935 -0.220990 -0.241376\nvn -0.920650 -0.219680 -0.322713\nvn -0.944935 -0.220990 -0.241376\nvn -0.941888 -0.031344 -0.334462\nvn -0.944935 -0.220990 -0.241376\nvn -0.924700 -0.298356 -0.236462\nvn -0.957767 -0.151556 -0.244363\nvn -0.900703 -0.293470 -0.320326\nvn -0.944935 -0.220990 -0.241376\nvn -0.920650 -0.219680 -0.322713\nvn -0.924730 -0.297898 -0.236920\nvn -0.924700 -0.298356 -0.236462\nvn -0.944935 -0.220990 -0.241376\nvn -0.944935 -0.220990 -0.241376\nvn -0.900703 -0.293470 -0.320326\nvn -0.924730 -0.297898 -0.236920\nvn -0.850976 -0.355675 -0.386438\nvn -0.924730 -0.297898 -0.236920\nvn -0.900703 -0.293470 -0.320326\nvn -0.969166 -0.140755 -0.202250\nvn -0.977078 -0.139077 -0.161173\nvn -0.985017 -0.018006 -0.171514\nvn -0.215218 0.975284 -0.050020\nvn -0.215218 0.975284 -0.050020\nvn 0.126683 0.985816 -0.110081\nvn 0.126683 0.985816 -0.110081\nvn 0.126683 0.985816 -0.110081\nvn -0.215218 0.975284 -0.050020\nvn 0.126683 0.985816 -0.110081\nvn 0.126683 0.985816 -0.110081\nvn 0.414422 0.897330 -0.151834\nvn 0.414422 0.897330 -0.151834\nvn 0.414422 0.897330 -0.151834\nvn 0.126683 0.985816 -0.110081\nvn 0.414422 0.897330 -0.151834\nvn 0.414422 0.897330 -0.151834\nvn 0.527317 0.833369 -0.165630\nvn 0.527317 0.833369 -0.165630\nvn 0.527317 0.833369 -0.165630\nvn 0.414422 0.897330 -0.151834\nvn -0.215218 0.975284 -0.050020\nvn -0.215218 0.975284 -0.050020\nvn -0.531157 0.847122 0.016053\nvn -0.531157 0.847122 0.016053\nvn -0.531157 0.847122 0.016053\nvn -0.215218 0.975284 -0.050020\nvn -0.531157 0.847122 0.016053\nvn -0.531157 0.847122 0.016053\nvn -0.783030 0.616792 0.080204\nvn -0.783030 0.616792 0.080204\nvn -0.783030 0.616792 0.080204\nvn -0.531157 0.847122 0.016053\nvn -0.783030 0.616792 0.080204\nvn -0.783030 0.616792 0.080204\nvn -0.940467 0.312024 0.134771\nvn -0.940467 0.312024 0.134771\nvn -0.940463 0.312033 0.134775\nvn -0.783030 0.616792 0.080204\nvn -0.940463 0.312033 0.134775\nvn -0.940467 0.312024 0.134771\nvn -0.985480 0.013458 0.169257\nvn -0.985480 0.013458 0.169257\nvn -0.985480 0.013458 0.169257\nvn -0.940463 0.312033 0.134775\nvn -0.985480 0.013458 0.169257\nvn -0.985480 0.013458 0.169257\nvn -0.946885 -0.297348 0.122443\nvn -0.946885 -0.297348 0.122443\nvn -0.951495 -0.244764 0.186411\nvn -0.985480 0.013458 0.169257\nvn -0.951495 -0.244764 0.186411\nvn -0.946885 -0.297348 0.122443\nvn -0.882075 -0.455657 0.119667\nvn -0.882075 -0.455657 0.119667\nvn -0.852314 -0.486937 0.190929\nvn -0.951495 -0.244764 0.186411\nvn -0.852314 -0.486937 0.190929\nvn -0.882075 -0.455657 0.119667\nvn -0.695208 -0.695269 0.182447\nvn -0.695208 -0.695269 0.182447\nvn -0.695189 -0.695281 0.182472\nvn -0.852314 -0.486937 0.190929\nvn -0.695189 -0.695281 0.182472\nvn -0.695208 -0.695269 0.182447\nvn -0.453304 -0.877433 0.156931\nvn -0.453304 -0.877433 0.156931\nvn -0.453268 -0.877452 0.156929\nvn -0.695189 -0.695281 0.182472\nvn -0.453268 -0.877452 0.156929\nvn -0.453304 -0.877433 0.156931\nvn -0.126683 -0.985813 0.110111\nvn -0.126683 -0.985813 0.110111\nvn -0.126653 -0.985820 0.110082\nvn -0.453268 -0.877452 0.156929\nvn -0.126653 -0.985820 0.110082\nvn -0.126683 -0.985813 0.110111\nvn 0.215189 -0.975292 0.049990\nvn 0.215189 -0.975292 0.049990\nvn 0.215218 -0.975286 0.049990\nvn -0.126653 -0.985820 0.110082\nvn 0.215218 -0.975286 0.049990\nvn 0.215189 -0.975292 0.049990\nvn 0.494165 -0.869335 -0.007660\nvn 0.494165 -0.869335 -0.007660\nvn 0.516715 -0.856085 0.011139\nvn 0.215218 -0.975286 0.049990\nvn 0.516715 -0.856085 0.011139\nvn 0.494165 -0.869335 -0.007660\nvn 0.727183 -0.664741 0.171244\nvn 0.765513 -0.641697 -0.047061\nvn 0.516715 -0.856085 0.011139\nvn 0.727183 -0.664741 0.171244\nvn 0.765513 -0.641697 -0.047061\nvn 0.755994 -0.650550 -0.072514\nvn 0.516715 -0.856085 0.011139\nvn 0.755994 -0.650550 -0.072514\nvn 0.765513 -0.641697 -0.047061\nvn 0.831873 -0.546789 -0.094916\nvn 0.831873 -0.546789 -0.094916\nvn 0.831873 -0.546789 -0.094916\nvn 0.755994 -0.650550 -0.072514\nvn -0.009034 0.974475 0.224315\nvn 0.067324 0.997146 0.034181\nvn -0.184275 0.972342 0.143501\nvn -0.184275 0.972342 0.143501\nvn -0.199746 0.899510 0.388565\nvn -0.009034 0.974475 0.224315\nvn -0.199746 0.899510 0.388565\nvn -0.184275 0.972342 0.143501\nvn -0.486322 0.847515 0.212626\nvn -0.486322 0.847515 0.212626\nvn -0.391871 0.786640 0.477111\nvn -0.199746 0.899510 0.388565\nvn -0.391871 0.786640 0.477111\nvn -0.486322 0.847515 0.212626\nvn -0.733091 0.621850 0.275462\nvn -0.733091 0.621850 0.275462\nvn -0.608917 0.584654 0.536098\nvn -0.391871 0.786640 0.477111\nvn -0.608917 0.584654 0.536098\nvn -0.733091 0.621850 0.275462\nvn -0.887323 0.323292 0.328847\nvn -0.887323 0.323292 0.328847\nvn -0.747529 0.316328 0.584070\nvn -0.608917 0.584654 0.536098\nvn -0.747529 0.316328 0.584070\nvn -0.887323 0.323292 0.328847\nvn -0.931201 0.030366 0.363239\nvn -0.931201 0.030366 0.363239\nvn -0.786240 0.053439 0.615606\nvn -0.747529 0.316328 0.584070\nvn -0.786240 0.053439 0.615606\nvn -0.931201 0.030366 0.363239\nvn -0.898002 -0.221693 0.380058\nvn -0.898002 -0.221693 0.380058\nvn -0.756333 -0.173442 0.630776\nvn -0.786240 0.053439 0.615606\nvn -0.756333 -0.173442 0.630776\nvn -0.898002 -0.221693 0.380058\nvn -0.800511 -0.459737 0.384478\nvn -0.800511 -0.459737 0.384478\nvn -0.668982 -0.386740 0.634740\nvn -0.756333 -0.173442 0.630776\nvn -0.668982 -0.386740 0.634740\nvn -0.800511 -0.459737 0.384478\nvn -0.647193 -0.663063 0.376151\nvn -0.647193 -0.663063 0.376151\nvn -0.530979 -0.569800 0.627207\nvn -0.668982 -0.386740 0.634740\nvn -0.530979 -0.569800 0.627207\nvn -0.647193 -0.663063 0.376151\nvn -0.410054 -0.842020 0.350511\nvn -0.410054 -0.842020 0.350511\nvn -0.318619 -0.730901 0.603545\nvn -0.530979 -0.569800 0.627207\nvn -0.318619 -0.730901 0.603545\nvn -0.410054 -0.842020 0.350511\nvn -0.090061 -0.948191 0.304670\nvn -0.090061 -0.948191 0.304670\nvn -0.031038 -0.826315 0.562352\nvn -0.318619 -0.730901 0.603545\nvn -0.031038 -0.826315 0.562352\nvn -0.090061 -0.948191 0.304670\nvn 0.244882 -0.937871 0.245828\nvn 0.244882 -0.937871 0.245828\nvn 0.269942 -0.817059 0.509456\nvn -0.031038 -0.826315 0.562352\nvn 0.269942 -0.817059 0.509456\nvn 0.244882 -0.937871 0.245828\nvn 0.554415 -0.812304 0.181072\nvn 0.554415 -0.812304 0.181072\nvn 0.548125 -0.704200 0.451288\nvn 0.269942 -0.817059 0.509456\nvn 0.548125 -0.704200 0.451288\nvn 0.554415 -0.812304 0.181072\nvn 0.774962 -0.619255 0.126317\nvn 0.774962 -0.619255 0.126317\nvn 0.745849 -0.530447 0.402909\nvn 0.548125 -0.704200 0.451288\nvn 0.745849 -0.530447 0.402909\nvn 0.774962 -0.619255 0.126317\nvn 0.848986 -0.517943 0.104681\nvn 0.848986 -0.517943 0.104681\nvn 0.812359 -0.439048 0.383809\nvn 0.745849 -0.530447 0.402909\nvn 0.704258 -0.467491 0.534297\nvn 0.745849 -0.530447 0.402909\nvn 0.812359 -0.439048 0.383809\nvn 0.812359 -0.439048 0.383809\nvn 0.766469 -0.383814 0.514988\nvn 0.704258 -0.467491 0.534297\nvn 0.745849 -0.530447 0.402909\nvn 0.704258 -0.467491 0.534297\nvn 0.525975 -0.622599 0.579414\nvn 0.525975 -0.622599 0.579414\nvn 0.548125 -0.704200 0.451288\nvn 0.745849 -0.530447 0.402909\nvn 0.548125 -0.704200 0.451288\nvn 0.525975 -0.622599 0.579414\nvn 0.274033 -0.724801 0.632115\nvn 0.274033 -0.724801 0.632115\nvn 0.269942 -0.817059 0.509456\nvn 0.548125 -0.704200 0.451288\nvn 0.269942 -0.817059 0.509456\nvn 0.274033 -0.724801 0.632115\nvn 0.001374 -0.733204 0.680008\nvn 0.001374 -0.733204 0.680008\nvn -0.031038 -0.826315 0.562352\nvn 0.269942 -0.817059 0.509456\nvn -0.031038 -0.826315 0.562352\nvn 0.001374 -0.733204 0.680008\nvn -0.259104 -0.646783 0.717312\nvn -0.259104 -0.646783 0.717312\nvn -0.318619 -0.730901 0.603545\nvn -0.031038 -0.826315 0.562352\nvn -0.318619 -0.730901 0.603545\nvn -0.259104 -0.646783 0.717312\nvn -0.450982 -0.503109 0.737222\nvn -0.450982 -0.503109 0.737222\nvn -0.530979 -0.569800 0.627207\nvn -0.318619 -0.730901 0.603545\nvn -0.530979 -0.569800 0.627207\nvn -0.450982 -0.503109 0.737222\nvn -0.578518 -0.333878 0.744206\nvn -0.578518 -0.333878 0.744206\nvn -0.668982 -0.386740 0.634740\nvn -0.530979 -0.569800 0.627207\nvn -0.668982 -0.386740 0.634740\nvn -0.578518 -0.333878 0.744206\nvn -0.656204 -0.144175 0.740682\nvn -0.656204 -0.144175 0.740682\nvn -0.756333 -0.173442 0.630776\nvn -0.668982 -0.386740 0.634740\nvn -0.756333 -0.173442 0.630776\nvn -0.656204 -0.144175 0.740682\nvn -0.683869 0.065524 0.726657\nvn -0.683869 0.065524 0.726657\nvn -0.786240 0.053439 0.615606\nvn -0.756333 -0.173442 0.630776\nvn -0.786240 0.053439 0.615606\nvn -0.683869 0.065524 0.726657\nvn -0.647597 0.301809 0.699664\nvn -0.647597 0.301809 0.699664\nvn -0.747529 0.316328 0.584070\nvn -0.786240 0.053439 0.615606\nvn -0.747529 0.316328 0.584070\nvn -0.647597 0.301809 0.699664\nvn -0.522035 0.544833 0.656229\nvn -0.522035 0.544833 0.656229\nvn -0.608917 0.584654 0.536098\nvn -0.747529 0.316328 0.584070\nvn -0.608917 0.584654 0.536098\nvn -0.522035 0.544833 0.656229\nvn -0.356586 0.705297 0.612702\nvn -0.356586 0.705297 0.612702\nvn -0.391871 0.786640 0.477111\nvn -0.608917 0.584654 0.536098\nvn -0.391871 0.786640 0.477111\nvn -0.356586 0.705297 0.612702\nvn -0.222763 0.798150 0.559761\nvn -0.222763 0.798150 0.559761\nvn -0.199746 0.899510 0.388565\nvn -0.391871 0.786640 0.477111\nvn 0.428884 0.159126 -0.889234\nvn 0.397574 0.345691 -0.849960\nvn 0.422022 -0.054782 -0.904929\nvn 0.422022 -0.054782 -0.904929\nvn 0.475058 -0.050265 -0.878518\nvn 0.428884 0.159126 -0.889234\nvn 0.475058 -0.050265 -0.878518\nvn 0.422022 -0.054782 -0.904929\nvn 0.396929 -0.250072 -0.883126\nvn 0.396929 -0.250072 -0.883126\nvn 0.447878 -0.261859 -0.854889\nvn 0.475058 -0.050265 -0.878518\nvn 0.447878 -0.261859 -0.854889\nvn 0.396929 -0.250072 -0.883126\nvn 0.312551 -0.510622 -0.800985\nvn 0.312551 -0.510622 -0.800985\nvn 0.350572 -0.450247 -0.821205\nvn 0.447878 -0.261859 -0.854889\nvn -0.173289 -0.964046 -0.201458\nvn 0.151560 -0.954040 -0.258531\nvn 0.151560 -0.954040 -0.258531\nvn 0.151560 -0.954040 -0.258531\nvn -0.173288 -0.964041 -0.201488\nvn -0.173289 -0.964046 -0.201458\nvn -0.483637 -0.861069 -0.157021\nvn -0.483614 -0.861081 -0.157024\nvn -0.173289 -0.964046 -0.201458\nvn -0.173289 -0.964046 -0.201458\nvn -0.173288 -0.964041 -0.201488\nvn -0.483637 -0.861069 -0.157021\nvn -0.742022 -0.657544 -0.130532\nvn -0.742007 -0.657562 -0.130530\nvn -0.483614 -0.861081 -0.157024\nvn -0.483614 -0.861081 -0.157024\nvn -0.483637 -0.861069 -0.157021\nvn -0.742022 -0.657544 -0.130532\nvn -0.917311 -0.377979 -0.125189\nvn -0.917296 -0.378016 -0.125191\nvn -0.742007 -0.657562 -0.130530\nvn -0.742007 -0.657562 -0.130530\nvn -0.742022 -0.657544 -0.130532\nvn -0.917311 -0.377979 -0.125189\nvn -0.988320 -0.056155 -0.141668\nvn -0.988316 -0.056155 -0.141698\nvn -0.917296 -0.378016 -0.125191\nvn -0.917296 -0.378016 -0.125191\nvn -0.917311 -0.377979 -0.125189\nvn -0.988320 -0.056155 -0.141668\nvn -0.946513 0.269115 -0.178017\nvn -0.946513 0.269115 -0.178017\nvn -0.988316 -0.056155 -0.141698\nvn -0.988316 -0.056155 -0.141698\nvn -0.988320 -0.056155 -0.141668\nvn -0.946513 0.269115 -0.178017\nvn -0.796916 0.558683 -0.229779\nvn -0.796946 0.558652 -0.229748\nvn -0.946513 0.269115 -0.178017\nvn -0.946513 0.269115 -0.178017\nvn -0.946513 0.269115 -0.178017\nvn -0.796916 0.558683 -0.229779\nvn -0.557594 0.777549 -0.290700\nvn -0.557615 0.777536 -0.290695\nvn -0.796946 0.558652 -0.229748\nvn -0.796946 0.558652 -0.229748\nvn -0.796916 0.558683 -0.229779\nvn -0.557594 0.777549 -0.290700\nvn -0.257402 0.899320 -0.353508\nvn -0.257402 0.899320 -0.353508\nvn -0.557615 0.777536 -0.290695\nvn -0.557615 0.777536 -0.290695\nvn -0.557594 0.777549 -0.290700\nvn -0.257402 0.899320 -0.353508\nvn 0.067447 0.909316 -0.410604\nvn 0.067447 0.909316 -0.410604\nvn -0.257402 0.899320 -0.353508\nvn -0.257402 0.899320 -0.353508\nvn -0.257402 0.899320 -0.353508\nvn 0.067447 0.909316 -0.410604\nvn 0.377799 0.806352 -0.455044\nvn 0.377799 0.806352 -0.455044\nvn 0.067447 0.909316 -0.410604\nvn 0.067447 0.909316 -0.410604\nvn 0.067447 0.909316 -0.410604\nvn 0.377799 0.806352 -0.455044\nvn 0.608462 0.632603 -0.479152\nvn 0.606964 0.634157 -0.478998\nvn 0.377799 0.806352 -0.455044\nvn 0.377799 0.806352 -0.455044\nvn 0.377799 0.806352 -0.455044\nvn 0.608462 0.632603 -0.479152\nvn 0.756504 0.436238 -0.487235\nvn 0.757585 0.434384 -0.487213\nvn 0.606964 0.634157 -0.478998\nvn 0.606964 0.634157 -0.478998\nvn 0.608462 0.632603 -0.479152\nvn 0.756504 0.436238 -0.487235\nvn 0.756504 0.436238 -0.487235\nvn 0.851521 0.204236 -0.482908\nvn 0.850996 0.206279 -0.482965\nvn 0.850996 0.206279 -0.482965\nvn 0.757585 0.434384 -0.487213\nvn 0.756504 0.436238 -0.487235\nvn 0.851521 0.204236 -0.482908\nvn 0.883587 -0.039064 -0.466636\nvn 0.883598 -0.041231 -0.466428\nvn 0.883598 -0.041231 -0.466428\nvn 0.850996 0.206279 -0.482965\nvn 0.851521 0.204236 -0.482908\nvn 0.840688 -0.323841 -0.434017\nvn 0.840688 -0.323841 -0.434017\nvn 0.883598 -0.041231 -0.466428\nvn 0.883598 -0.041231 -0.466428\nvn 0.883587 -0.039064 -0.466636\nvn 0.840688 -0.323841 -0.434017\nvn 0.691111 -0.613408 -0.382224\nvn 0.691087 -0.613414 -0.382259\nvn 0.840688 -0.323841 -0.434017\nvn 0.840688 -0.323841 -0.434017\nvn 0.840688 -0.323841 -0.434017\nvn 0.691111 -0.613408 -0.382224\nvn 0.451753 -0.832273 -0.321312\nvn 0.451717 -0.832294 -0.321308\nvn 0.691087 -0.613414 -0.382259\nvn 0.691087 -0.613414 -0.382259\nvn 0.691111 -0.613408 -0.382224\nvn 0.451753 -0.832273 -0.321312\nvn 0.151560 -0.954040 -0.258531\nvn 0.151560 -0.954040 -0.258531\nvn 0.451717 -0.832294 -0.321308\nvn 0.451717 -0.832294 -0.321308\nvn 0.451753 -0.832273 -0.321312\nvn 0.151560 -0.954040 -0.258531\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169686 -0.087742 -0.981584\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169686 -0.087742 -0.981584\nvn -0.169745 -0.087772 -0.981572\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169686 -0.087712 -0.981587\nvn -0.169745 -0.087772 -0.981572\nvn -0.169715 -0.087772 -0.981577\nvn -0.169686 -0.087712 -0.981587\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.170020 -0.087894 -0.981513\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169716 -0.087742 -0.981579\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169686 -0.087742 -0.981584\nvn -0.169716 -0.087742 -0.981579\nvn -0.169715 -0.087772 -0.981577\nvn -0.169686 -0.087742 -0.981584\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169745 -0.087772 -0.981572\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169745 -0.087772 -0.981572\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169745 -0.087772 -0.981572\nvn -0.169715 -0.087772 -0.981577\nvn -0.169745 -0.087741 -0.981574\nvn -0.169745 -0.087772 -0.981572\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169716 -0.087742 -0.981579\nvn -0.169745 -0.087741 -0.981574\nvn -0.169715 -0.087772 -0.981577\nvn -0.169716 -0.087742 -0.981579\nvn -0.169715 -0.087772 -0.981577\nvn -0.205579 0.978633 0.003876\nvn -0.184275 0.972342 0.143501\nvn 0.067324 0.997146 0.034181\nvn 0.067324 0.997146 0.034181\nvn 0.127021 0.990013 -0.061161\nvn -0.205579 0.978633 0.003876\nvn 0.127021 0.990013 -0.061161\nvn 0.067324 0.997146 0.034181\nvn 0.368940 0.920108 -0.131475\nvn 0.368940 0.920108 -0.131475\nvn 0.414391 0.897329 -0.151925\nvn 0.127021 0.990013 -0.061161\nvn 0.527274 0.833379 -0.165717\nvn 0.414391 0.897329 -0.151925\nvn 0.368940 0.920108 -0.131475\nvn -0.184275 0.972342 0.143501\nvn -0.205579 0.978633 0.003876\nvn -0.521054 0.850660 0.069858\nvn -0.521054 0.850660 0.069858\nvn -0.486322 0.847515 0.212626\nvn -0.184275 0.972342 0.143501\nvn -0.486322 0.847515 0.212626\nvn -0.521054 0.850660 0.069858\nvn -0.772556 0.620663 0.133917\nvn -0.772556 0.620663 0.133917\nvn -0.733091 0.621850 0.275462\nvn -0.486322 0.847515 0.212626\nvn -0.733091 0.621850 0.275462\nvn -0.772556 0.620663 0.133917\nvn -0.929744 0.316395 0.188335\nvn -0.929744 0.316395 0.188335\nvn -0.887323 0.323292 0.328847\nvn -0.733091 0.621850 0.275462\nvn -0.887323 0.323292 0.328847\nvn -0.929744 0.316395 0.188335\nvn -0.974721 0.018037 0.222698\nvn -0.974721 0.018037 0.222698\nvn -0.931201 0.030366 0.363239\nvn -0.887323 0.323292 0.328847\nvn -0.931201 0.030366 0.363239\nvn -0.974721 0.018037 0.222698\nvn -0.940815 -0.239423 0.239881\nvn -0.940815 -0.239423 0.239881\nvn -0.898002 -0.221693 0.380058\nvn -0.931201 0.030366 0.363239\nvn -0.898002 -0.221693 0.380058\nvn -0.940815 -0.239423 0.239881\nvn -0.841655 -0.481561 0.244366\nvn -0.841655 -0.481561 0.244366\nvn -0.800511 -0.459737 0.384478\nvn -0.898002 -0.221693 0.380058\nvn -0.800511 -0.459737 0.384478\nvn -0.841655 -0.481561 0.244366\nvn -0.685029 -0.689272 0.235881\nvn -0.685029 -0.689272 0.235881\nvn -0.647193 -0.663063 0.376151\nvn -0.800511 -0.459737 0.384478\nvn -0.647193 -0.663063 0.376151\nvn -0.685029 -0.689272 0.235881\nvn -0.443320 -0.871321 0.210399\nvn -0.443320 -0.871321 0.210399\nvn -0.410054 -0.842020 0.350511\nvn -0.647193 -0.663063 0.376151\nvn -0.410054 -0.842020 0.350511\nvn -0.443320 -0.871321 0.210399\nvn -0.117162 -0.979533 0.163673\nvn -0.117162 -0.979533 0.163673\nvn -0.090061 -0.948191 0.304670\nvn -0.410054 -0.842020 0.350511\nvn -0.090061 -0.948191 0.304670\nvn -0.117162 -0.979533 0.163673\nvn 0.224193 -0.969008 0.103734\nvn 0.224193 -0.969008 0.103734\nvn 0.244882 -0.937871 0.245828\nvn -0.090061 -0.948191 0.304670\nvn 0.244882 -0.937871 0.245828\nvn 0.224193 -0.969008 0.103734\nvn 0.539642 -0.841049 0.037722\nvn 0.539642 -0.841049 0.037722\nvn 0.554415 -0.812304 0.181072\nvn 0.244882 -0.937871 0.245828\nvn 0.554415 -0.812304 0.181072\nvn 0.539642 -0.841049 0.037722\nvn 0.764267 -0.644630 -0.018678\nvn 0.764267 -0.644630 -0.018678\nvn 0.774962 -0.619255 0.126317\nvn 0.554415 -0.812304 0.181072\nvn 0.774962 -0.619255 0.126317\nvn 0.764267 -0.644630 -0.018678\nvn 0.839888 -0.541196 -0.041170\nvn 0.839888 -0.541196 -0.041170\nvn 0.848986 -0.517943 0.104681\nvn 0.774962 -0.619255 0.126317\nvn 0.169716 0.087742 0.981579\nvn 0.169715 0.087772 0.981577\nvn 0.169715 0.087772 0.981577\nvn 0.169715 0.087772 0.981577\nvn 0.169716 0.087712 0.981582\nvn 0.169716 0.087742 0.981579\nvn 0.169716 0.087742 0.981579\nvn 0.169716 0.087712 0.981582\nvn 0.169716 0.087742 0.981579\nvn 0.169716 0.087742 0.981579\nvn 0.169716 0.087742 0.981579\nvn 0.169716 0.087742 0.981579\nvn 0.169715 0.087772 0.981577\nvn 0.169716 0.087742 0.981579\nvn 0.169716 0.087742 0.981579\nvn 0.169716 0.087742 0.981579\nvn 0.169715 0.087772 0.981577\nvn 0.169715 0.087772 0.981577\nvn 0.169685 0.087773 0.981582\nvn 0.169715 0.087772 0.981577\nvn 0.169715 0.087772 0.981577\nvn 0.169715 0.087772 0.981577\nvn 0.169685 0.087773 0.981582\nvn 0.169685 0.087773 0.981582\nvn 0.169810 0.087743 0.981563\nvn 0.169685 0.087773 0.981582\nvn 0.169685 0.087773 0.981582\nvn 0.169685 0.087773 0.981582\nvn 0.169810 0.087743 0.981563\nvn 0.169810 0.087743 0.981563\nvn 0.169745 0.087741 0.981574\nvn 0.169810 0.087743 0.981563\nvn 0.169810 0.087743 0.981563\nvn 0.169810 0.087743 0.981563\nvn 0.169716 0.087742 0.981579\nvn 0.169745 0.087741 0.981574\nvn 0.169745 0.087772 0.981572\nvn 0.169715 0.087772 0.981577\nvn 0.169715 0.087772 0.981577\nvn 0.169715 0.087772 0.981577\nvn 0.169745 0.087772 0.981572\nvn 0.169745 0.087772 0.981572\nvn 0.169715 0.087772 0.981577\nvn 0.169745 0.087741 0.981574\nvn 0.169716 0.087742 0.981579\nvn 0.169716 0.087742 0.981579\nvn 0.169715 0.087803 0.981574\nvn 0.169715 0.087772 0.981577\nvn 0.169716 0.087712 0.981582\nvn 0.169715 0.087772 0.981577\nvn 0.169716 0.087742 0.981579\nvn 0.169716 0.087742 0.981579\nvn 0.169686 0.087712 0.981587\nvn 0.169716 0.087712 0.981582\nvn 0.169716 0.087742 0.981579\nvn 0.169716 0.087712 0.981582\nvn 0.169686 0.087712 0.981587\nvn 0.169686 0.087712 0.981587\nvn 0.169716 0.087742 0.981579\nvn 0.169716 0.087742 0.981579\nvn 0.169715 0.087803 0.981574\nvn 0.169716 0.087742 0.981579\nvn 0.169716 0.087742 0.981579\nvn 0.169716 0.087742 0.981579\nvn 0.169715 0.087803 0.981574\nvn 0.169715 0.087803 0.981574\nvn 0.169715 0.087772 0.981577\nvn 0.169715 0.087803 0.981574\nvn 0.169715 0.087803 0.981574\nvn 0.169715 0.087803 0.981574\nvn 0.169715 0.087772 0.981577\nvn 0.169715 0.087772 0.981577\nvn 0.169715 0.087772 0.981577\nvn 0.169715 0.087772 0.981577\nvn 0.169745 0.087772 0.981572\nvn 0.169745 0.087772 0.981572\nvn 0.169745 0.087741 0.981574\nvn 0.169715 0.087772 0.981577\nvn 0.169715 0.087772 0.981577\nvn 0.169716 0.087742 0.981579\nvn 0.169715 0.087772 0.981577\nvn 0.169715 0.087772 0.981577\nvn 0.169744 0.087802 0.981569\nvn 0.169715 0.087772 0.981577\nvn -0.169715 -0.087803 -0.981574\nvn -0.169716 -0.087742 -0.981579\nvn -0.169716 -0.087742 -0.981579\nvn -0.169716 -0.087742 -0.981579\nvn -0.169715 -0.087803 -0.981574\nvn -0.169715 -0.087803 -0.981574\nvn -0.169715 -0.087803 -0.981574\nvn -0.169715 -0.087803 -0.981574\nvn -0.169716 -0.087712 -0.981582\nvn -0.169716 -0.087712 -0.981582\nvn -0.169716 -0.087712 -0.981582\nvn -0.169715 -0.087803 -0.981574\nvn -0.169715 -0.087772 -0.981577\nvn -0.169716 -0.087712 -0.981582\nvn -0.169716 -0.087712 -0.981582\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169716 -0.087712 -0.981582\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169685 -0.087773 -0.981582\nvn -0.169715 -0.087772 -0.981577\nvn -0.169716 -0.087742 -0.981579\nvn -0.169716 -0.087742 -0.981579\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169716 -0.087742 -0.981579\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169685 -0.087803 -0.981579\nvn -0.169685 -0.087803 -0.981579\nvn -0.169655 -0.087803 -0.981584\nvn -0.169715 -0.087772 -0.981577\nvn -0.169655 -0.087803 -0.981584\nvn -0.169685 -0.087803 -0.981579\nvn -0.169626 -0.087774 -0.981592\nvn -0.169626 -0.087774 -0.981592\nvn -0.169626 -0.087774 -0.981592\nvn -0.169655 -0.087803 -0.981584\nvn -0.169626 -0.087774 -0.981592\nvn -0.169626 -0.087774 -0.981592\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169626 -0.087774 -0.981592\nvn -0.169745 -0.087772 -0.981572\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169745 -0.087772 -0.981572\nvn -0.169745 -0.087772 -0.981572\nvn -0.169745 -0.087772 -0.981572\nvn -0.169745 -0.087772 -0.981572\nvn -0.169745 -0.087772 -0.981572\nvn -0.169745 -0.087772 -0.981572\nvn -0.169750 -0.087774 -0.981570\nvn -0.169745 -0.087772 -0.981572\nvn -0.169745 -0.087772 -0.981572\nvn -0.169750 -0.087774 -0.981570\nvn -0.169716 -0.087742 -0.981579\nvn -0.169716 -0.087742 -0.981579\nvn -0.169716 -0.087742 -0.981579\nvn -0.169745 -0.087772 -0.981572\nvn -0.169716 -0.087742 -0.981579\nvn -0.169716 -0.087742 -0.981579\nvn -0.169716 -0.087742 -0.981579\nvn -0.169716 -0.087742 -0.981579\nvn -0.169715 -0.087772 -0.981577\nvn -0.169716 -0.087742 -0.981579\nvn -0.169715 -0.087772 -0.981577\nvn -0.169716 -0.087742 -0.981579\nvn -0.169715 -0.087803 -0.981574\nvn -0.169715 -0.087803 -0.981574\nvn -0.169715 -0.087803 -0.981574\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087803 -0.981574\nvn -0.169715 -0.087803 -0.981574\nvn -0.169715 -0.087803 -0.981574\nvn -0.169715 -0.087803 -0.981574\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087803 -0.981574\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087803 -0.981574\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169715 -0.087772 -0.981577\nvn -0.169745 -0.087772 -0.981572\nvn -0.169745 -0.087772 -0.981572\nvn -0.169745 -0.087741 -0.981574\nvn -0.169715 -0.087772 -0.981577\nvn -0.169745 -0.087772 -0.981572\nvn -0.169745 -0.087741 -0.981574\nvn -0.169745 -0.087772 -0.981572\nvn -0.169745 -0.087772 -0.981572\nvn -0.169715 -0.087803 -0.981574\nvn -0.169745 -0.087772 -0.981572\nvn -0.123602 -0.024812 0.992022\nvn -0.116735 0.111180 0.986920\nvn -0.141702 0.040682 0.989073\nvn -0.123602 -0.024812 0.992022\nvn -0.141702 0.040682 0.989073\nvn -0.035341 -0.087680 0.995522\nvn -0.123602 -0.024812 0.992022\nvn -0.035341 -0.087680 0.995522\nvn 0.059513 -0.102270 0.992975\nvn -0.534551 0.494143 0.685623\nvn -0.550378 0.494406 0.672790\nvn -0.537365 0.494209 0.683372\nvn -0.537365 0.494209 0.683372\nvn -0.522912 0.493827 0.694764\nvn -0.534551 0.494143 0.685623\nvn -0.663692 0.712643 0.227273\nvn -0.714940 0.683200 0.148658\nvn -0.657932 0.748420 0.083622\nvn -0.657932 0.748420 0.083622\nvn -0.615240 0.763900 0.194775\nvn -0.663692 0.712643 0.227273\nvn -0.615240 0.763900 0.194775\nvn -0.657932 0.748420 0.083622\nvn -0.621348 0.783529 0.002991\nvn -0.621348 0.783529 0.002991\nvn -0.584447 0.806720 0.087316\nvn -0.615240 0.763900 0.194775\nvn -0.584447 0.806720 0.087316\nvn -0.621348 0.783529 0.002991\nvn -0.552895 0.831905 0.047336\nvn -0.552895 0.831905 0.047336\nvn -0.520958 0.850684 0.070285\nvn -0.584447 0.806720 0.087316\nvn 0.300982 -0.603824 0.738110\nvn 0.340565 -0.608586 0.716686\nvn 0.298146 -0.603432 0.739580\nvn 0.298146 -0.603432 0.739580\nvn 0.260482 -0.597781 0.758160\nvn 0.300982 -0.603824 0.738110\nvn 0.363389 -0.900704 0.238078\nvn 0.412436 -0.888839 0.199656\nvn 0.350843 -0.928623 0.120701\nvn 0.350843 -0.928623 0.120701\nvn 0.317432 -0.935113 0.157480\nvn 0.363389 -0.900704 0.238078\nvn 0.317432 -0.935113 0.157480\nvn 0.350843 -0.928623 0.120701\nvn 0.317707 -0.948084 0.014100\nvn 0.317707 -0.948084 0.014100\nvn 0.286728 -0.957204 0.039339\nvn 0.317432 -0.935113 0.157480\nvn 0.286728 -0.957204 0.039339\nvn 0.317707 -0.948084 0.014100\nvn 0.240061 -0.970102 0.035677\nvn 0.240061 -0.970102 0.035677\nvn 0.215160 -0.975299 0.049990\nvn 0.286728 -0.957204 0.039339\nvn -0.946885 -0.297348 0.122443\nvn -0.912187 -0.409751 -0.004303\nvn -0.915807 -0.400101 -0.034883\nvn -0.915807 -0.400101 -0.034883\nvn -0.882075 -0.455657 0.119667\nvn -0.946885 -0.297348 0.122443\nvn -0.908814 -0.415495 -0.037692\nvn -0.915807 -0.400101 -0.034883\nvn -0.912187 -0.409751 -0.004303\nvn -0.908814 -0.415495 -0.037692\nvn -0.885918 -0.457334 -0.077428\nvn -0.915807 -0.400101 -0.034883\nvn -0.885918 -0.457334 -0.077428\nvn -0.886362 -0.456503 -0.077243\nvn -0.915807 -0.400101 -0.034883\nvn -0.908814 -0.415495 -0.037692\nvn -0.912187 -0.409751 -0.004303\nvn -0.904839 -0.425746 -0.002564\nvn -0.908814 -0.415495 -0.037692\nvn -0.904839 -0.425746 -0.002564\nvn -0.904341 -0.426809 0.001282\nvn -0.908814 -0.415495 -0.037692\nvn -0.904341 -0.426809 0.001282\nvn -0.903632 -0.428210 0.009247\nvn -0.552365 -0.832500 0.042849\nvn -0.457172 -0.853703 0.249369\nvn -0.674998 -0.621284 0.397974\nvn -0.674998 -0.621284 0.397974\nvn -0.788100 -0.580752 0.204022\nvn -0.552365 -0.832500 0.042849\nvn -0.896248 -0.252849 0.364426\nvn -0.788100 -0.580752 0.204022\nvn -0.674998 -0.621284 0.397974\nvn -0.674998 -0.621284 0.397974\nvn -0.774739 -0.318594 0.546148\nvn -0.896248 -0.252849 0.364426\nvn -0.155188 -0.980325 0.121984\nvn -0.457172 -0.853703 0.249369\nvn -0.552365 -0.832500 0.042849\nvn -0.552365 -0.832500 0.042849\nvn -0.225017 -0.969712 -0.095006\nvn -0.155188 -0.980325 0.121984\nvn -0.155188 -0.980325 0.121984\nvn -0.225017 -0.969712 -0.095006\nvn 0.144080 -0.971509 -0.188180\nvn 0.144080 -0.971509 -0.188180\nvn 0.185525 -0.981979 0.036013\nvn -0.155188 -0.980325 0.121984\nvn -0.896248 -0.252849 0.364426\nvn -0.774739 -0.318594 0.546148\nvn -0.741829 0.008454 0.670536\nvn -0.741829 0.008454 0.670536\nvn -0.860488 0.101323 0.499294\nvn -0.896248 -0.252849 0.364426\nvn -0.686100 0.427877 0.588377\nvn -0.860488 0.101323 0.499294\nvn -0.741829 0.008454 0.670536\nvn -0.741829 0.008454 0.670536\nvn -0.580843 0.309801 0.752758\nvn -0.686100 0.427877 0.588377\nvn -0.686100 0.427877 0.588377\nvn -0.580843 0.309801 0.752758\nvn -0.316519 0.539891 0.779958\nvn -0.316519 0.539891 0.779958\nvn -0.399807 0.677047 0.617869\nvn -0.686100 0.427877 0.588377\nvn -0.045047 0.810929 0.583408\nvn -0.399807 0.677047 0.617869\nvn -0.316519 0.539891 0.779958\nvn -0.316519 0.539891 0.779958\nvn 0.010926 0.663433 0.748156\nvn -0.045047 0.810929 0.583408\nvn -0.045047 0.810929 0.583408\nvn 0.010926 0.663433 0.748156\nvn 0.351676 0.661633 0.662243\nvn 0.351676 0.661633 0.662243\nvn 0.324025 0.809103 0.490265\nvn -0.045047 0.810929 0.583408\nvn 0.651426 0.671874 0.352463\nvn 0.324025 0.809103 0.490265\nvn 0.351676 0.661633 0.662243\nvn 0.351676 0.661633 0.662243\nvn 0.653844 0.534911 0.535124\nvn 0.651426 0.671874 0.352463\nvn 0.651426 0.671874 0.352463\nvn 0.653844 0.534911 0.535124\nvn 0.871438 0.302687 0.385973\nvn 0.871438 0.302687 0.385973\nvn 0.887098 0.420187 0.191049\nvn 0.651426 0.671874 0.352463\nvn 0.995260 0.092260 0.030763\nvn 0.887098 0.420187 0.191049\nvn 0.871438 0.302687 0.385973\nvn 0.871438 0.302687 0.385973\nvn 0.971245 -0.000030 0.238081\nvn 0.995260 0.092260 0.030763\nvn 0.995260 0.092260 0.030763\nvn 0.971245 -0.000030 0.238081\nvn 0.938190 -0.326982 0.113501\nvn 0.938190 -0.326982 0.113501\nvn 0.959449 -0.261942 -0.104130\nvn 0.995260 0.092260 0.030763\nvn 0.785112 -0.588444 -0.193218\nvn 0.959449 -0.261942 -0.104130\nvn 0.938190 -0.326982 0.113501\nvn 0.938190 -0.326982 0.113501\nvn 0.777297 -0.628363 0.031130\nvn 0.785112 -0.588444 -0.193218\nvn 0.785112 -0.588444 -0.193218\nvn 0.777297 -0.628363 0.031130\nvn 0.512961 -0.858403 0.004029\nvn 0.512961 -0.858403 0.004029\nvn 0.498835 -0.837597 -0.222698\nvn 0.785112 -0.588444 -0.193218\nvn 0.144080 -0.971509 -0.188180\nvn 0.498835 -0.837597 -0.222698\nvn 0.512961 -0.858403 0.004029\nvn 0.512961 -0.858403 0.004029\nvn 0.185525 -0.981979 0.036013\nvn 0.144080 -0.971509 -0.188180\nvn 0.461332 -0.777635 -0.427150\nvn 0.498835 -0.837597 -0.222698\nvn 0.144080 -0.971509 -0.188180\nvn 0.785112 -0.588444 -0.193218\nvn 0.498835 -0.837597 -0.222698\nvn 0.461332 -0.777635 -0.427150\nvn 0.144080 -0.971509 -0.188180\nvn 0.097785 -0.914822 -0.391840\nvn 0.461332 -0.777635 -0.427150\nvn -0.280499 -0.912974 -0.296308\nvn 0.097785 -0.914822 -0.391840\nvn 0.144080 -0.971509 -0.188180\nvn 0.144080 -0.971509 -0.188180\nvn -0.225017 -0.969712 -0.095006\nvn -0.280499 -0.912974 -0.296308\nvn 0.461332 -0.777635 -0.427150\nvn 0.754800 -0.522274 -0.396871\nvn 0.785112 -0.588444 -0.193218\nvn 0.785112 -0.588444 -0.193218\nvn 0.754800 -0.522274 -0.396871\nvn 0.933474 -0.187573 -0.305685\nvn 0.933474 -0.187573 -0.305685\nvn 0.959449 -0.261942 -0.104130\nvn 0.785112 -0.588444 -0.193218\nvn 0.995260 0.092260 0.030763\nvn 0.959449 -0.261942 -0.104130\nvn 0.933474 -0.187573 -0.305685\nvn 0.933474 -0.187573 -0.305685\nvn 0.970156 0.175396 -0.167430\nvn 0.995260 0.092260 0.030763\nvn 0.995260 0.092260 0.030763\nvn 0.970156 0.175396 -0.167430\nvn 0.859309 0.511447 -0.003083\nvn 0.859309 0.511447 -0.003083\nvn 0.887098 0.420187 0.191049\nvn 0.995260 0.092260 0.030763\nvn 0.651426 0.671874 0.352463\nvn 0.887098 0.420187 0.191049\nvn 0.859309 0.511447 -0.003083\nvn 0.859309 0.511447 -0.003083\nvn 0.617713 0.769486 0.162241\nvn 0.651426 0.671874 0.352463\nvn 0.651426 0.671874 0.352463\nvn 0.617713 0.769486 0.162241\nvn 0.282245 0.910094 0.303426\nvn 0.282245 0.910094 0.303426\nvn 0.324025 0.809103 0.490265\nvn 0.651426 0.671874 0.352463\nvn -0.045047 0.810929 0.583408\nvn 0.324025 0.809103 0.490265\nvn 0.282245 0.910094 0.303426\nvn 0.282245 0.910094 0.303426\nvn -0.095954 0.911924 0.398982\nvn -0.045047 0.810929 0.583408\nvn -0.045047 0.810929 0.583408\nvn -0.095954 0.911924 0.398982\nvn -0.459531 0.774705 0.434353\nvn -0.459531 0.774705 0.434353\nvn -0.399807 0.677047 0.617869\nvn -0.045047 0.810929 0.583408\nvn -0.686100 0.427877 0.588377\nvn -0.399807 0.677047 0.617869\nvn -0.459531 0.774705 0.434353\nvn -0.459531 0.774705 0.434353\nvn -0.752979 0.519321 0.404140\nvn -0.686100 0.427877 0.588377\nvn -0.686100 0.427877 0.588377\nvn -0.752979 0.519321 0.404140\nvn -0.931666 0.184612 0.312916\nvn -0.931666 0.184612 0.312916\nvn -0.860488 0.101323 0.499294\nvn -0.686100 0.427877 0.588377\nvn -0.860488 0.101323 0.499294\nvn -0.931666 0.184612 0.312916\nvn -0.968379 -0.178264 0.174540\nvn -0.968379 -0.178264 0.174540\nvn -0.896248 -0.252849 0.364426\nvn -0.860488 0.101323 0.499294\nvn -0.896248 -0.252849 0.364426\nvn -0.968379 -0.178264 0.174540\nvn -0.857513 -0.514361 0.010224\nvn -0.857513 -0.514361 0.010224\nvn -0.788100 -0.580752 0.204022\nvn -0.896248 -0.252849 0.364426\nvn -0.552365 -0.832500 0.042849\nvn -0.788100 -0.580752 0.204022\nvn -0.857513 -0.514361 0.010224\nvn -0.857513 -0.514361 0.010224\nvn -0.615964 -0.772343 -0.155158\nvn -0.552365 -0.832500 0.042849\nvn -0.552365 -0.832500 0.042849\nvn -0.615964 -0.772343 -0.155158\nvn -0.280499 -0.912974 -0.296308\nvn -0.280499 -0.912974 -0.296308\nvn -0.225017 -0.969712 -0.095006\nvn -0.552365 -0.832500 0.042849\nvn 0.226091 -0.366725 0.902439\nvn 0.226180 -0.366691 0.902430\nvn 0.226180 -0.366691 0.902430\nvn 0.226180 -0.366691 0.902430\nvn 0.226084 -0.366715 0.902444\nvn 0.226091 -0.366725 0.902439\nvn 0.226150 -0.366631 0.902462\nvn 0.226091 -0.366725 0.902439\nvn 0.226084 -0.366715 0.902444\nvn 0.226084 -0.366715 0.902444\nvn 0.226150 -0.366631 0.902462\nvn 0.226150 -0.366631 0.902462\nvn 0.226146 -0.366747 0.902416\nvn 0.226150 -0.366631 0.902462\nvn 0.226150 -0.366631 0.902462\nvn 0.226150 -0.366631 0.902462\nvn 0.226148 -0.366720 0.902426\nvn 0.226146 -0.366747 0.902416\nvn 0.226117 -0.366597 0.902484\nvn 0.226146 -0.366747 0.902416\nvn 0.226148 -0.366720 0.902426\nvn 0.226148 -0.366720 0.902426\nvn 0.226149 -0.366568 0.902488\nvn 0.226117 -0.366597 0.902484\nvn 0.226117 -0.366597 0.902484\nvn 0.226117 -0.366597 0.902484\nvn 0.226149 -0.366568 0.902488\nvn 0.226149 -0.366568 0.902488\nvn 0.226117 -0.366597 0.902484\nvn 0.226117 -0.366597 0.902484\nvn 0.225964 -0.366626 0.902511\nvn 0.226117 -0.366597 0.902484\nvn 0.226117 -0.366597 0.902484\nvn 0.226117 -0.366597 0.902484\nvn 0.225993 -0.366623 0.902505\nvn 0.225964 -0.366626 0.902511\nvn 0.225996 -0.366660 0.902489\nvn 0.225964 -0.366626 0.902511\nvn 0.225993 -0.366623 0.902505\nvn 0.225993 -0.366623 0.902505\nvn 0.226054 -0.366655 0.902476\nvn 0.225996 -0.366660 0.902489\nvn 0.226179 -0.366628 0.902456\nvn 0.225996 -0.366660 0.902489\nvn 0.226054 -0.366655 0.902476\nvn 0.226054 -0.366655 0.902476\nvn 0.226179 -0.366628 0.902456\nvn 0.226179 -0.366628 0.902456\nvn 0.226151 -0.366694 0.902436\nvn 0.226179 -0.366628 0.902456\nvn 0.226179 -0.366628 0.902456\nvn 0.226179 -0.366628 0.902456\nvn 0.226145 -0.366684 0.902442\nvn 0.226151 -0.366694 0.902436\nvn 0.226176 -0.366655 0.902446\nvn 0.226151 -0.366694 0.902436\nvn 0.226145 -0.366684 0.902442\nvn 0.226145 -0.366684 0.902442\nvn 0.226176 -0.366655 0.902446\nvn 0.226176 -0.366655 0.902446\nvn 0.226115 -0.366623 0.902474\nvn 0.226176 -0.366655 0.902446\nvn 0.226176 -0.366655 0.902446\nvn 0.226176 -0.366655 0.902446\nvn 0.226147 -0.366657 0.902452\nvn 0.226115 -0.366623 0.902474\nvn 0.226087 -0.366689 0.902454\nvn 0.226115 -0.366623 0.902474\nvn 0.226147 -0.366657 0.902452\nvn 0.226147 -0.366657 0.902452\nvn 0.226119 -0.366723 0.902433\nvn 0.226087 -0.366689 0.902454\nvn 0.226114 -0.366776 0.902412\nvn 0.226087 -0.366689 0.902454\nvn 0.226119 -0.366723 0.902433\nvn 0.226119 -0.366723 0.902433\nvn 0.226150 -0.366783 0.902400\nvn 0.226114 -0.366776 0.902412\nvn 0.226179 -0.366781 0.902394\nvn 0.226114 -0.366776 0.902412\nvn 0.226150 -0.366783 0.902400\nvn 0.226150 -0.366783 0.902400\nvn 0.226143 -0.366773 0.902406\nvn 0.226179 -0.366781 0.902394\nvn 0.226116 -0.366686 0.902448\nvn 0.226179 -0.366781 0.902394\nvn 0.226143 -0.366773 0.902406\nvn 0.226143 -0.366773 0.902406\nvn 0.226089 -0.366662 0.902465\nvn 0.226116 -0.366686 0.902448\nvn 0.226180 -0.366691 0.902430\nvn 0.226116 -0.366686 0.902448\nvn 0.226089 -0.366662 0.902465\nvn 0.226089 -0.366662 0.902465\nvn 0.226180 -0.366691 0.902430\nvn 0.226180 -0.366691 0.902430\nvn 0.984589 0.146128 -0.096075\nvn 0.948046 -0.215739 -0.233807\nvn 0.956389 -0.291918 -0.010193\nvn 0.956389 -0.291918 -0.010193\nvn 0.991241 0.052829 0.121040\nvn 0.984589 0.146128 -0.096075\nvn 0.874104 0.481016 0.067570\nvn 0.984589 0.146128 -0.096075\nvn 0.991241 0.052829 0.121040\nvn 0.991241 0.052829 0.121040\nvn 0.885984 0.371759 0.277179\nvn 0.874104 0.481016 0.067570\nvn 0.633394 0.738106 0.232403\nvn 0.874104 0.481016 0.067570\nvn 0.885984 0.371759 0.277179\nvn 0.885984 0.371759 0.277179\nvn 0.656714 0.616796 0.433923\nvn 0.633394 0.738106 0.232403\nvn 0.299092 0.878233 0.373163\nvn 0.633394 0.738106 0.232403\nvn 0.656714 0.616796 0.433923\nvn 0.656714 0.616796 0.433923\nvn 0.338244 0.750224 0.568115\nvn 0.299092 0.878233 0.373163\nvn -0.078007 0.880175 0.468196\nvn 0.299092 0.878233 0.373163\nvn 0.338244 0.750224 0.568115\nvn 0.338244 0.750224 0.568115\nvn -0.020967 0.751931 0.658908\nvn -0.078007 0.880175 0.468196\nvn 0.786766 -0.609599 -0.096900\nvn 0.956389 -0.291918 -0.010193\nvn 0.948046 -0.215739 -0.233807\nvn 0.948046 -0.215739 -0.233807\nvn 0.770006 -0.549167 -0.324818\nvn 0.786766 -0.609599 -0.096900\nvn 0.508149 -0.852072 -0.125526\nvn 0.786766 -0.609599 -0.096900\nvn 0.770006 -0.549167 -0.324818\nvn 0.770006 -0.549167 -0.324818\nvn 0.477500 -0.803656 -0.355149\nvn 0.508149 -0.852072 -0.125526\nvn 0.162973 -0.982325 -0.092077\nvn 0.508149 -0.852072 -0.125526\nvn 0.477500 -0.803656 -0.355149\nvn 0.477500 -0.803656 -0.355149\nvn 0.115120 -0.940367 -0.320089\nvn 0.162973 -0.982325 -0.092077\nvn -0.196174 -0.980568 -0.001312\nvn 0.162973 -0.982325 -0.092077\nvn 0.115120 -0.940367 -0.320089\nvn 0.115120 -0.940367 -0.320089\nvn -0.261855 -0.938589 -0.224683\nvn -0.196174 -0.980568 -0.001312\nvn -0.514637 -0.847078 0.132695\nvn -0.196174 -0.980568 -0.001312\nvn -0.261855 -0.938589 -0.224683\nvn -0.261855 -0.938589 -0.224683\nvn -0.596194 -0.798416 -0.084172\nvn -0.514637 -0.847078 0.132695\nvn -0.743973 -0.602119 0.289752\nvn -0.514637 -0.847078 0.132695\nvn -0.596194 -0.798416 -0.084172\nvn -0.596194 -0.798416 -0.084172\nvn -0.836958 -0.541258 0.080876\nvn -0.743973 -0.602119 0.289752\nvn -0.849160 -0.283094 0.445852\nvn -0.743973 -0.602119 0.289752\nvn -0.836958 -0.541258 0.080876\nvn -0.836958 -0.541258 0.080876\nvn -0.947375 -0.206401 0.244702\nvn -0.849160 -0.283094 0.445852\nvn -0.814399 0.061648 0.577022\nvn -0.849160 -0.283094 0.445852\nvn -0.947375 -0.206401 0.244702\nvn -0.947375 -0.206401 0.244702\nvn -0.910848 0.155312 0.382406\nvn -0.814399 0.061648 0.577022\nvn -0.644771 0.379348 0.663601\nvn -0.814399 0.061648 0.577022\nvn -0.910848 0.155312 0.382406\nvn -0.910848 0.155312 0.382406\nvn -0.732744 0.488954 0.473297\nvn -0.644771 0.379348 0.663601\nvn -0.366170 0.621738 0.692359\nvn -0.644771 0.379348 0.663601\nvn -0.732744 0.488954 0.473297\nvn -0.732744 0.488954 0.473297\nvn -0.440306 0.743457 0.503390\nvn -0.366170 0.621738 0.692359\nvn -0.020967 0.751931 0.658908\nvn -0.366170 0.621738 0.692359\nvn -0.440306 0.743457 0.503390\nvn -0.440306 0.743457 0.503390\nvn -0.078007 0.880175 0.468196\nvn -0.020967 0.751931 0.658908\nvn 0.956389 -0.291918 -0.010193\nvn 0.916555 -0.347828 0.197338\nvn 0.948018 -0.036226 0.316148\nvn 0.948018 -0.036226 0.316148\nvn 0.991241 0.052829 0.121040\nvn 0.956389 -0.291918 -0.010193\nvn 0.885984 0.371759 0.277179\nvn 0.991241 0.052829 0.121040\nvn 0.948018 -0.036226 0.316148\nvn 0.948018 -0.036226 0.316148\nvn 0.852752 0.252054 0.457474\nvn 0.885984 0.371759 0.277179\nvn 0.885984 0.371759 0.277179\nvn 0.852752 0.252054 0.457474\nvn 0.645608 0.473692 0.599005\nvn 0.645608 0.473692 0.599005\nvn 0.656714 0.616796 0.433923\nvn 0.885984 0.371759 0.277179\nvn 0.338244 0.750224 0.568115\nvn 0.656714 0.616796 0.433923\nvn 0.645608 0.473692 0.599005\nvn 0.645608 0.473692 0.599005\nvn 0.357594 0.594331 0.720345\nvn 0.338244 0.750224 0.568115\nvn 0.763179 -0.635148 0.118936\nvn 0.916555 -0.347828 0.197338\nvn 0.956389 -0.291918 -0.010193\nvn 0.956389 -0.291918 -0.010193\nvn 0.786766 -0.609599 -0.096900\nvn 0.763179 -0.635148 0.118936\nvn 0.763179 -0.635148 0.118936\nvn 0.786766 -0.609599 -0.096900\nvn 0.508149 -0.852072 -0.125526\nvn 0.508149 -0.852072 -0.125526\nvn 0.511282 -0.854344 0.093205\nvn 0.763179 -0.635148 0.118936\nvn 0.199166 -0.972144 0.123570\nvn 0.511282 -0.854344 0.093205\nvn 0.508149 -0.852072 -0.125526\nvn 0.508149 -0.852072 -0.125526\nvn 0.162973 -0.982325 -0.092077\nvn 0.199166 -0.972144 0.123570\nvn 0.199166 -0.972144 0.123570\nvn 0.162973 -0.982325 -0.092077\nvn -0.196174 -0.980568 -0.001312\nvn -0.196174 -0.980568 -0.001312\nvn -0.125523 -0.970584 0.205452\nvn 0.199166 -0.972144 0.123570\nvn -0.413469 -0.849828 0.326857\nvn -0.125523 -0.970584 0.205452\nvn -0.196174 -0.980568 -0.001312\nvn -0.196174 -0.980568 -0.001312\nvn -0.514637 -0.847078 0.132695\nvn -0.413469 -0.849828 0.326857\nvn -0.413469 -0.849828 0.326857\nvn -0.514637 -0.847078 0.132695\nvn -0.743973 -0.602119 0.289752\nvn -0.743973 -0.602119 0.289752\nvn -0.620820 -0.628450 0.468652\nvn -0.413469 -0.849828 0.326857\nvn -0.715930 -0.339959 0.609813\nvn -0.620820 -0.628450 0.468652\nvn -0.743973 -0.602119 0.289752\nvn -0.743973 -0.602119 0.289752\nvn -0.849160 -0.283094 0.445852\nvn -0.715930 -0.339959 0.609813\nvn -0.715930 -0.339959 0.609813\nvn -0.849160 -0.283094 0.445852\nvn -0.814399 0.061648 0.577022\nvn -0.814399 0.061648 0.577022\nvn -0.684667 -0.028200 0.728310\nvn -0.715930 -0.339959 0.609813\nvn -0.531155 0.259016 0.806712\nvn -0.684667 -0.028200 0.728310\nvn -0.814399 0.061648 0.577022\nvn -0.814399 0.061648 0.577022\nvn -0.644771 0.379348 0.663601\nvn -0.531155 0.259016 0.806712\nvn -0.531155 0.259016 0.806712\nvn -0.644771 0.379348 0.663601\nvn -0.366170 0.621738 0.692359\nvn -0.366170 0.621738 0.692359\nvn -0.279251 0.477962 0.832809\nvn -0.531155 0.259016 0.806712\nvn 0.032838 0.595704 0.802532\nvn -0.279251 0.477962 0.832809\nvn -0.366170 0.621738 0.692359\nvn -0.366170 0.621738 0.692359\nvn -0.020967 0.751931 0.658908\nvn 0.032838 0.595704 0.802532\nvn 0.032838 0.595704 0.802532\nvn -0.020967 0.751931 0.658908\nvn 0.338244 0.750224 0.568115\nvn 0.338244 0.750224 0.568115\nvn 0.357594 0.594331 0.720345\nvn 0.032838 0.595704 0.802532\nvn 0.226087 -0.366689 0.902454\nvn 0.225354 -0.366993 0.902514\nvn 0.226150 -0.366631 0.902462\nvn 0.226087 -0.366689 0.902454\nvn 0.226150 -0.366631 0.902462\nvn 0.226116 -0.366686 0.902448\nvn 0.226150 -0.366631 0.902462\nvn 0.226088 -0.367056 0.902305\nvn 0.226116 -0.366686 0.902448\nvn 0.226087 -0.366689 0.902454\nvn 0.226116 -0.366686 0.902448\nvn 0.226087 -0.366689 0.902454\nvn 0.226116 -0.366686 0.902448\nvn 0.226023 -0.366684 0.902473\nvn 0.226087 -0.366689 0.902454\nvn 0.226116 -0.366686 0.902448\nvn 0.225993 -0.366623 0.902505\nvn 0.226023 -0.366684 0.902473\nvn 0.226023 -0.366684 0.902473\nvn 0.225938 -0.366665 0.902501\nvn 0.226087 -0.366689 0.902454\nvn 0.226087 -0.366689 0.902454\nvn 0.226087 -0.366689 0.902454\nvn 0.226089 -0.366662 0.902465\nvn 0.226087 -0.366689 0.902454\nvn 0.226055 -0.366718 0.902451\nvn 0.226089 -0.366662 0.902465\nvn 0.226087 -0.366689 0.902454\nvn 0.226085 -0.366778 0.902418\nvn 0.226055 -0.366718 0.902451\nvn 0.226055 -0.366718 0.902451\nvn 0.226117 -0.366597 0.902484\nvn 0.226089 -0.366662 0.902465\nvn 0.226087 -0.366689 0.902454\nvn 0.226089 -0.366662 0.902465\nvn 0.226054 -0.366655 0.902476\nvn 0.226089 -0.366662 0.902465\nvn 0.225961 -0.366500 0.902563\nvn 0.226054 -0.366655 0.902476\nvn 0.226393 -0.366720 0.902365\nvn 0.226087 -0.366689 0.902454\nvn 0.226054 -0.366655 0.902476\nvn 0.753793 0.574799 0.318437\nvn 0.682441 0.611149 0.400962\nvn 0.611143 0.703189 0.363359\nvn 0.611143 0.703189 0.363359\nvn 0.684210 0.670477 0.286911\nvn 0.753793 0.574799 0.318437\nvn 0.782851 0.555177 0.280930\nvn 0.753793 0.574799 0.318437\nvn 0.684210 0.670477 0.286911\nvn 0.684210 0.670477 0.286911\nvn 0.715652 0.651684 0.251298\nvn 0.782851 0.555177 0.280930\nvn 0.753793 0.574799 0.318437\nvn 0.782851 0.555177 0.280930\nvn 0.750371 0.614043 0.244732\nvn 0.750371 0.614043 0.244732\nvn 0.723278 0.631507 0.279405\nvn 0.753793 0.574799 0.318437\nvn 0.682441 0.611149 0.400962\nvn 0.753793 0.574799 0.318437\nvn 0.723278 0.631507 0.279405\nvn 0.723278 0.631507 0.279405\nvn 0.651326 0.670127 0.355954\nvn 0.682441 0.611149 0.400962\nvn 0.548551 0.722083 0.421530\nvn 0.611143 0.703189 0.363359\nvn 0.682441 0.611149 0.400962\nvn 0.682441 0.611149 0.400962\nvn 0.594945 0.645851 0.478452\nvn 0.548551 0.722083 0.421530\nvn 0.594945 0.645851 0.478452\nvn 0.682441 0.611149 0.400962\nvn 0.651326 0.670127 0.355954\nvn 0.651326 0.670127 0.355954\nvn 0.575599 0.693771 0.432859\nvn 0.594945 0.645851 0.478452\nvn 0.575599 0.693771 0.432859\nvn 0.651326 0.670127 0.355954\nvn 0.711952 0.583009 0.391439\nvn 0.711952 0.583009 0.391439\nvn 0.651326 0.670127 0.355954\nvn 0.723278 0.631507 0.279405\nvn 0.711952 0.583009 0.391439\nvn 0.642126 0.602665 0.473782\nvn 0.575599 0.693771 0.432859\nvn 0.642126 0.602665 0.473782\nvn 0.702925 0.572149 0.422542\nvn 0.575599 0.693771 0.432859\nvn 0.642126 0.602665 0.473782\nvn 0.658741 0.586226 0.471593\nvn 0.702925 0.572149 0.422542\nvn 0.642126 0.602665 0.473782\nvn 0.637389 0.580929 0.506218\nvn 0.658741 0.586226 0.471593\nvn 0.575599 0.693771 0.432859\nvn 0.702925 0.572149 0.422542\nvn 0.684388 0.625792 0.374163\nvn 0.684388 0.625792 0.374163\nvn 0.594945 0.645851 0.478452\nvn 0.575599 0.693771 0.432859\nvn 0.684388 0.625792 0.374163\nvn 0.548551 0.722083 0.421530\nvn 0.594945 0.645851 0.478452\nvn 0.775800 0.547364 0.313891\nvn 0.723278 0.631507 0.279405\nvn 0.750371 0.614043 0.244732\nvn 0.723278 0.631507 0.279405\nvn 0.775800 0.547364 0.313891\nvn 0.711952 0.583009 0.391439\nvn 0.750371 0.614043 0.244732\nvn 0.799331 0.522491 0.296770\nvn 0.775800 0.547364 0.313891\nvn 0.684388 0.625792 0.374163\nvn 0.530663 0.736117 0.420154\nvn 0.548551 0.722083 0.421530\nvn 0.684388 0.625792 0.374163\nvn 0.604741 0.687663 0.401757\nvn 0.530663 0.736117 0.420154\nvn 0.798374 0.510886 0.318739\nvn 0.799331 0.522491 0.296770\nvn 0.750371 0.614043 0.244732\nvn 0.750371 0.614043 0.244732\nvn 0.762338 0.603822 0.232892\nvn 0.798374 0.510886 0.318739\nvn 0.835382 0.374872 0.402004\nvn 0.798374 0.510886 0.318739\nvn 0.762338 0.603822 0.232892\nvn 0.762338 0.603822 0.232892\nvn 0.771623 0.466704 0.432186\nvn 0.835382 0.374872 0.402004\nvn 0.795332 0.546082 0.263137\nvn 0.762338 0.603822 0.232892\nvn 0.750371 0.614043 0.244732\nvn 0.750371 0.614043 0.244732\nvn 0.782851 0.555177 0.280930\nvn 0.795332 0.546082 0.263137\nvn 0.718799 0.651015 0.243943\nvn 0.795332 0.546082 0.263137\nvn 0.782851 0.555177 0.280930\nvn 0.782851 0.555177 0.280930\nvn 0.715652 0.651684 0.251298\nvn 0.718799 0.651015 0.243943\nvn 0.795332 0.546082 0.263137\nvn 0.718799 0.651015 0.243943\nvn 0.633831 0.747761 0.197767\nvn 0.633831 0.747761 0.197767\nvn 0.654085 0.683537 0.323960\nvn 0.795332 0.546082 0.263137\nvn 0.654085 0.683537 0.323960\nvn 0.771623 0.466704 0.432186\nvn 0.762338 0.603822 0.232892\nvn 0.762338 0.603822 0.232892\nvn 0.795332 0.546082 0.263137\nvn 0.654085 0.683537 0.323960\nvn 0.463040 -0.774458 0.431055\nvn 0.460810 -0.776988 0.428886\nvn 0.413110 -0.735271 0.537323\nvn 0.413110 -0.735271 0.537323\nvn 0.390004 -0.715276 0.579894\nvn 0.463040 -0.774458 0.431055\nvn 0.353131 -0.674857 0.647971\nvn 0.390004 -0.715276 0.579894\nvn 0.413110 -0.735271 0.537323\nvn 0.413110 -0.735271 0.537323\nvn 0.353662 -0.669236 0.653488\nvn 0.353131 -0.674857 0.647971\nvn 0.460810 -0.776988 0.428886\nvn 0.463040 -0.774458 0.431055\nvn 0.474365 -0.804616 0.357170\nvn 0.474365 -0.804616 0.357170\nvn 0.466858 -0.808279 0.358788\nvn 0.460810 -0.776988 0.428886\nvn 0.466858 -0.808279 0.358788\nvn 0.474365 -0.804616 0.357170\nvn 0.488307 -0.823925 0.287582\nvn 0.488307 -0.823925 0.287582\nvn 0.482999 -0.824845 0.293840\nvn 0.466858 -0.808279 0.358788\nvn 0.521093 -0.827175 0.210342\nvn 0.482999 -0.824845 0.293840\nvn 0.488307 -0.823925 0.287582\nvn 0.488307 -0.823925 0.287582\nvn 0.523123 -0.828128 0.201363\nvn 0.521093 -0.827175 0.210342\nvn 0.521093 -0.827175 0.210342\nvn 0.523123 -0.828128 0.201363\nvn 0.643445 -0.765249 -0.019288\nvn 0.643445 -0.765249 -0.019288\nvn 0.612731 -0.788246 0.056827\nvn 0.521093 -0.827175 0.210342\nvn 0.691231 -0.713143 -0.116736\nvn 0.612731 -0.788246 0.056827\nvn 0.643445 -0.765249 -0.019288\nvn 0.643445 -0.765249 -0.019288\nvn 0.691845 -0.706189 -0.150491\nvn 0.691231 -0.713143 -0.116736\nvn 0.719578 -0.003937 -0.694400\nvn 0.715618 -0.093237 -0.692241\nvn 0.718138 -0.052645 -0.693906\nvn 0.718138 -0.052645 -0.693906\nvn 0.719237 0.048769 -0.693051\nvn 0.719578 -0.003937 -0.694400\nvn 0.324144 0.743448 -0.584992\nvn 0.387071 0.632352 -0.671050\nvn 0.271013 0.780872 -0.562841\nvn 0.271013 0.780872 -0.562841\nvn 0.207501 0.843434 -0.495543\nvn 0.324144 0.743448 -0.584992\nvn 0.099979 0.925393 -0.365585\nvn 0.207501 0.843434 -0.495543\nvn 0.271013 0.780872 -0.562841\nvn 0.271013 0.780872 -0.562841\nvn 0.113350 0.922425 -0.369166\nvn 0.099979 0.925393 -0.365585\nvn 0.032777 0.969006 -0.244853\nvn 0.099979 0.925393 -0.365585\nvn 0.113350 0.922425 -0.369166\nvn 0.113350 0.922425 -0.369166\nvn 0.039308 0.967634 -0.249279\nvn 0.032777 0.969006 -0.244853\nvn -0.004334 0.983472 -0.181008\nvn 0.032777 0.969006 -0.244853\nvn 0.039308 0.967634 -0.249279\nvn 0.039308 0.967634 -0.249279\nvn -0.003479 0.983521 -0.180761\nvn -0.004334 0.983472 -0.181008\nvn -0.004334 0.983472 -0.181008\nvn -0.003479 0.983521 -0.180761\nvn -0.019533 0.984790 -0.172647\nvn -0.019533 0.984790 -0.172647\nvn -0.019899 0.984719 -0.173011\nvn -0.004334 0.983472 -0.181008\nvn -0.019899 0.984719 -0.173011\nvn -0.019533 0.984790 -0.172647\nvn -0.050722 0.992587 -0.110447\nvn -0.050722 0.992587 -0.110447\nvn -0.045291 0.990349 -0.130989\nvn -0.019899 0.984719 -0.173011\nvn -0.045291 0.990349 -0.130989\nvn -0.050722 0.992587 -0.110447\nvn -0.150457 0.987825 0.039552\nvn -0.150457 0.987825 0.039552\nvn -0.122167 0.992379 -0.016114\nvn -0.045291 0.990349 -0.130989\nvn -0.221934 0.956065 0.191536\nvn -0.122167 0.992379 -0.016114\nvn -0.150457 0.987825 0.039552\nvn -0.150457 0.987825 0.039552\nvn -0.266892 0.933708 0.238661\nvn -0.221934 0.956065 0.191536\nvn -0.345139 0.785650 0.513451\nvn -0.221934 0.956065 0.191536\nvn -0.266892 0.933708 0.238661\nvn -0.266892 0.933708 0.238661\nvn -0.366869 0.777472 0.510827\nvn -0.345139 0.785650 0.513451\nvn -0.345139 0.785650 0.513451\nvn -0.366869 0.777472 0.510827\nvn -0.373866 0.631086 0.679673\nvn -0.373866 0.631086 0.679673\nvn -0.365075 0.629862 0.685561\nvn -0.345139 0.785650 0.513451\nvn -0.135872 0.142250 0.980461\nvn -0.170145 0.172648 0.970177\nvn -0.063786 0.008973 0.997923\nvn -0.063786 0.008973 0.997923\nvn 0.012299 -0.109991 0.993856\nvn -0.135872 0.142250 0.980461\nvn 0.105779 -0.266034 0.958142\nvn 0.012299 -0.109991 0.993856\nvn -0.063786 0.008973 0.997923\nvn -0.063786 0.008973 0.997923\nvn 0.097843 -0.236428 0.966710\nvn 0.105779 -0.266034 0.958142\nvn 0.789234 0.497255 0.360344\nvn 0.731919 0.614602 0.294208\nvn 0.684388 0.625792 0.374163\nvn 0.684388 0.625792 0.374163\nvn 0.702925 0.572149 0.422542\nvn 0.789234 0.497255 0.360344\nvn 0.757015 0.465398 0.458622\nvn 0.789234 0.497255 0.360344\nvn 0.702925 0.572149 0.422542\nvn 0.702925 0.572149 0.422542\nvn 0.658741 0.586226 0.471593\nvn 0.757015 0.465398 0.458622\nvn 0.604741 0.687663 0.401757\nvn 0.684388 0.625792 0.374163\nvn 0.731919 0.614602 0.294208\nvn 0.731919 0.614602 0.294208\nvn 0.643472 0.701825 0.305591\nvn 0.604741 0.687663 0.401757\nvn 0.530663 0.736117 0.420154\nvn 0.604741 0.687663 0.401757\nvn 0.643472 0.701825 0.305591\nvn 0.643472 0.701825 0.305591\nvn 0.556731 0.762950 0.328570\nvn 0.530663 0.736117 0.420154\nvn 0.715506 0.460025 0.525764\nvn 0.757015 0.465398 0.458622\nvn 0.658741 0.586226 0.471593\nvn 0.658741 0.586226 0.471593\nvn 0.637389 0.580929 0.506218\nvn 0.715506 0.460025 0.525764\nvn 0.690554 0.475884 0.544673\nvn 0.715506 0.460025 0.525764\nvn 0.637389 0.580929 0.506218\nvn 0.637389 0.580929 0.506218\nvn 0.642126 0.602665 0.473782\nvn 0.690554 0.475884 0.544673\nvn 0.690554 0.475884 0.544673\nvn 0.642126 0.602665 0.473782\nvn 0.711952 0.583009 0.391439\nvn 0.711952 0.583009 0.391439\nvn 0.756666 0.466031 0.458553\nvn 0.690554 0.475884 0.544673\nvn 0.823684 0.429925 0.369741\nvn 0.756666 0.466031 0.458553\nvn 0.711952 0.583009 0.391439\nvn 0.711952 0.583009 0.391439\nvn 0.775800 0.547364 0.313891\nvn 0.823684 0.429925 0.369741\nvn 0.840075 0.406335 0.359396\nvn 0.823684 0.429925 0.369741\nvn 0.775800 0.547364 0.313891\nvn 0.775800 0.547364 0.313891\nvn 0.799331 0.522491 0.296770\nvn 0.840075 0.406335 0.359396\nvn 0.825281 0.398770 0.399868\nvn 0.840075 0.406335 0.359396\nvn 0.799331 0.522491 0.296770\nvn 0.799331 0.522491 0.296770\nvn 0.798374 0.510886 0.318739\nvn 0.825281 0.398770 0.399868\nvn 0.808332 0.365407 0.461603\nvn 0.825281 0.398770 0.399868\nvn 0.798374 0.510886 0.318739\nvn 0.798374 0.510886 0.318739\nvn 0.835382 0.374872 0.402004\nvn 0.808332 0.365407 0.461603\nvn 0.715337 0.486841 0.501276\nvn 0.808332 0.365407 0.461603\nvn 0.835382 0.374872 0.402004\nvn 0.835382 0.374872 0.402004\nvn 0.771623 0.466704 0.432186\nvn 0.715337 0.486841 0.501276\nvn 0.715337 0.486841 0.501276\nvn 0.771623 0.466704 0.432186\nvn 0.654085 0.683537 0.323960\nvn 0.654085 0.683537 0.323960\nvn 0.579769 0.706636 0.405627\nvn 0.715337 0.486841 0.501276\nvn 0.551549 0.802573 0.227310\nvn 0.579769 0.706636 0.405627\nvn 0.654085 0.683537 0.323960\nvn 0.654085 0.683537 0.323960\nvn 0.633831 0.747761 0.197767\nvn 0.551549 0.802573 0.227310\nvn 0.616577 0.760170 0.204875\nvn 0.551549 0.802573 0.227310\nvn 0.633831 0.747761 0.197767\nvn 0.633831 0.747761 0.197767\nvn 0.718799 0.651015 0.243943\nvn 0.616577 0.760170 0.204875\nvn 0.628471 0.751554 0.200477\nvn 0.616577 0.760170 0.204875\nvn 0.718799 0.651015 0.243943\nvn 0.718799 0.651015 0.243943\nvn 0.715652 0.651684 0.251298\nvn 0.628471 0.751554 0.200477\nvn 0.609197 0.760695 0.224104\nvn 0.628471 0.751554 0.200477\nvn 0.715652 0.651684 0.251298\nvn 0.715652 0.651684 0.251298\nvn 0.684210 0.670477 0.286911\nvn 0.609197 0.760695 0.224104\nvn 0.609197 0.760695 0.224104\nvn 0.684210 0.670477 0.286911\nvn 0.611143 0.703189 0.363359\nvn 0.611143 0.703189 0.363359\nvn 0.545744 0.786968 0.287827\nvn 0.609197 0.760695 0.224104\nvn 0.545744 0.786968 0.287827\nvn 0.611143 0.703189 0.363359\nvn 0.548551 0.722083 0.421530\nvn 0.548551 0.722083 0.421530\nvn 0.494236 0.797266 0.346551\nvn 0.545744 0.786968 0.287827\nvn 0.556731 0.762950 0.328570\nvn 0.494236 0.797266 0.346551\nvn 0.548551 0.722083 0.421530\nvn 0.548551 0.722083 0.421530\nvn 0.530663 0.736117 0.420154\nvn 0.556731 0.762950 0.328570\nvn -0.470139 -0.835753 0.283701\nvn -0.292584 -0.856359 0.425494\nvn -0.421470 -0.625277 0.656804\nvn -0.421470 -0.625277 0.656804\nvn -0.609778 -0.585454 0.534242\nvn -0.470139 -0.835753 0.283701\nvn -0.636332 -0.258134 0.726945\nvn -0.609778 -0.585454 0.534242\nvn -0.421470 -0.625277 0.656804\nvn -0.421470 -0.625277 0.656804\nvn -0.445983 -0.323202 0.834650\nvn -0.636332 -0.258134 0.726945\nvn -0.078800 -0.981214 0.176094\nvn -0.292584 -0.856359 0.425494\nvn -0.470139 -0.835753 0.283701\nvn -0.470139 -0.835753 0.283701\nvn -0.238569 -0.971032 0.013459\nvn -0.078800 -0.981214 0.176094\nvn -0.636332 -0.258134 0.726945\nvn -0.445983 -0.323202 0.834650\nvn -0.362356 0.003998 0.932031\nvn -0.362356 0.003998 0.932031\nvn -0.545720 0.096259 0.832421\nvn -0.636332 -0.258134 0.726945\nvn -0.351700 0.423847 0.834662\nvn -0.545720 0.096259 0.832421\nvn -0.362356 0.003998 0.932031\nvn -0.362356 0.003998 0.932031\nvn -0.183268 0.306382 0.934100\nvn -0.351700 0.423847 0.834662\nvn -0.351700 0.423847 0.834662\nvn -0.183268 0.306382 0.934100\nvn 0.063968 0.537931 0.840559\nvn 0.063968 0.537931 0.840559\nvn -0.083866 0.674677 0.733333\nvn -0.351700 0.423847 0.834662\nvn 0.217022 0.810653 0.543823\nvn -0.083866 0.674677 0.733333\nvn 0.063968 0.537931 0.840559\nvn 0.063968 0.537931 0.840559\nvn 0.341756 0.663401 0.665659\nvn 0.217022 0.810653 0.543823\nvn 0.217022 0.810653 0.543823\nvn 0.341756 0.663401 0.665659\nvn 0.607738 0.663803 0.435912\nvn 0.607738 0.663803 0.435912\nvn 0.505157 0.811054 0.294970\nvn 0.217022 0.810653 0.543823\nvn 0.736707 0.675760 0.024721\nvn 0.505157 0.811054 0.294970\nvn 0.607738 0.663803 0.435912\nvn 0.607738 0.663803 0.435912\nvn 0.821453 0.538938 0.186441\nvn 0.736707 0.675760 0.024721\nvn 0.736707 0.675760 0.024721\nvn 0.821453 0.538938 0.186441\nvn 0.950391 0.307815 -0.044802\nvn 0.950391 0.307815 -0.044802\nvn 0.876386 0.425406 -0.225780\nvn 0.736707 0.675760 0.024721\nvn 0.902908 0.098150 -0.418478\nvn 0.876386 0.425406 -0.225780\nvn 0.950391 0.307815 -0.044802\nvn 0.950391 0.307815 -0.044802\nvn 0.974871 0.005768 -0.222698\nvn 0.902908 0.098150 -0.418478\nvn 0.902908 0.098150 -0.418478\nvn 0.974871 0.005768 -0.222698\nvn 0.891210 -0.321393 -0.320081\nvn 0.891210 -0.321393 -0.320081\nvn 0.812276 -0.256211 -0.523989\nvn 0.902908 0.098150 -0.418478\nvn 0.618287 -0.583800 -0.526211\nvn 0.812276 -0.256211 -0.523989\nvn 0.891210 -0.321393 -0.320081\nvn 0.891210 -0.321393 -0.320081\nvn 0.712161 -0.623778 -0.322067\nvn 0.618287 -0.583800 -0.526211\nvn 0.618287 -0.583800 -0.526211\nvn 0.712161 -0.623778 -0.322067\nvn 0.464872 -0.855368 -0.228560\nvn 0.464872 -0.855368 -0.228560\nvn 0.350427 -0.834681 -0.424863\nvn 0.618287 -0.583800 -0.526211\nvn 0.049532 -0.970652 -0.235331\nvn 0.350427 -0.834681 -0.424863\nvn 0.464872 -0.855368 -0.228560\nvn 0.464872 -0.855368 -0.228560\nvn 0.187111 -0.980873 -0.053652\nvn 0.049532 -0.970652 -0.235331\nvn 0.224960 -0.774893 -0.590707\nvn 0.350427 -0.834681 -0.424863\nvn 0.049532 -0.970652 -0.235331\nvn 0.618287 -0.583800 -0.526211\nvn 0.350427 -0.834681 -0.424863\nvn 0.224960 -0.774893 -0.590707\nvn 0.049532 -0.970652 -0.235331\nvn -0.083377 -0.914254 -0.396470\nvn 0.224960 -0.774893 -0.590707\nvn -0.378716 -0.914639 -0.141458\nvn -0.083377 -0.914254 -0.396470\nvn 0.049532 -0.970652 -0.235331\nvn 0.049532 -0.970652 -0.235331\nvn -0.238569 -0.971032 0.013459\nvn -0.378716 -0.914639 -0.141458\nvn 0.224960 -0.774893 -0.590707\nvn 0.499477 -0.517758 -0.694586\nvn 0.618287 -0.583800 -0.526211\nvn 0.618287 -0.583800 -0.526211\nvn 0.499477 -0.517758 -0.694586\nvn 0.698286 -0.182079 -0.692274\nvn 0.698286 -0.182079 -0.692274\nvn 0.812276 -0.256211 -0.523989\nvn 0.618287 -0.583800 -0.526211\nvn 0.902908 0.098150 -0.418478\nvn 0.812276 -0.256211 -0.523989\nvn 0.698286 -0.182079 -0.692274\nvn 0.698286 -0.182079 -0.692274\nvn 0.791188 0.181103 -0.584143\nvn 0.902908 0.098150 -0.418478\nvn 0.902908 0.098150 -0.418478\nvn 0.791188 0.181103 -0.584143\nvn 0.763984 0.516536 -0.386677\nvn 0.763984 0.516536 -0.386677\nvn 0.876386 0.425406 -0.225780\nvn 0.902908 0.098150 -0.418478\nvn 0.736707 0.675760 0.024721\nvn 0.876386 0.425406 -0.225780\nvn 0.763984 0.516536 -0.386677\nvn 0.763984 0.516536 -0.386677\nvn 0.620842 0.773101 -0.129888\nvn 0.736707 0.675760 0.024721\nvn 0.736707 0.675760 0.024721\nvn 0.620842 0.773101 -0.129888\nvn 0.383540 0.911743 0.147043\nvn 0.383540 0.911743 0.147043\nvn 0.505157 0.811054 0.294970\nvn 0.736707 0.675760 0.024721\nvn 0.217022 0.810653 0.543823\nvn 0.505157 0.811054 0.294970\nvn 0.383540 0.911743 0.147043\nvn 0.383540 0.911743 0.147043\nvn 0.088230 0.911354 0.402056\nvn 0.217022 0.810653 0.543823\nvn 0.217022 0.810653 0.543823\nvn 0.088230 0.911354 0.402056\nvn -0.220138 0.771994 0.596292\nvn -0.220138 0.771994 0.596292\nvn -0.083866 0.674677 0.733333\nvn 0.217022 0.810653 0.543823\nvn -0.351700 0.423847 0.834662\nvn -0.083866 0.674677 0.733333\nvn -0.220138 0.771994 0.596292\nvn -0.220138 0.771994 0.596292\nvn -0.494624 0.514888 0.700170\nvn -0.351700 0.423847 0.834662\nvn -0.351700 0.423847 0.834662\nvn -0.494624 0.514888 0.700170\nvn -0.693462 0.179179 0.697857\nvn -0.693462 0.179179 0.697857\nvn -0.545720 0.096259 0.832421\nvn -0.351700 0.423847 0.834662\nvn -0.545720 0.096259 0.832421\nvn -0.693462 0.179179 0.697857\nvn -0.786363 -0.184002 0.589726\nvn -0.786363 -0.184002 0.589726\nvn -0.636332 -0.258134 0.726945\nvn -0.545720 0.096259 0.832421\nvn -0.636332 -0.258134 0.726945\nvn -0.786363 -0.184002 0.589726\nvn -0.759159 -0.519433 0.392260\nvn -0.759159 -0.519433 0.392260\nvn -0.609778 -0.585454 0.534242\nvn -0.636332 -0.258134 0.726945\nvn -0.470139 -0.835753 0.283701\nvn -0.609778 -0.585454 0.534242\nvn -0.759159 -0.519433 0.392260\nvn -0.759159 -0.519433 0.392260\nvn -0.616010 -0.775995 0.135508\nvn -0.470139 -0.835753 0.283701\nvn -0.470139 -0.835753 0.283701\nvn -0.616010 -0.775995 0.135508\nvn -0.378716 -0.914639 -0.141458\nvn -0.378716 -0.914639 -0.141458\nvn -0.238569 -0.971032 0.013459\nvn -0.470139 -0.835753 0.283701\nvn -0.078800 -0.981214 0.176094\nvn -0.238569 -0.971032 0.013459\nvn 0.049532 -0.970652 -0.235331\nvn 0.049532 -0.970652 -0.235331\nvn 0.187111 -0.980873 -0.053652\nvn -0.078800 -0.981214 0.176094\nvn 0.608672 -0.365313 0.704319\nvn 0.608653 -0.365320 0.704332\nvn 0.608653 -0.365320 0.704332\nvn 0.608653 -0.365320 0.704332\nvn 0.608679 -0.365286 0.704327\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608679 -0.365286 0.704327\nvn 0.608679 -0.365286 0.704327\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608686 -0.365260 0.704334\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608679 -0.365286 0.704327\nvn 0.608686 -0.365260 0.704334\nvn 0.608678 -0.365347 0.704295\nvn 0.608686 -0.365260 0.704334\nvn 0.608679 -0.365286 0.704327\nvn 0.608679 -0.365286 0.704327\nvn 0.608646 -0.365346 0.704324\nvn 0.608678 -0.365347 0.704295\nvn 0.608647 -0.365285 0.704355\nvn 0.608678 -0.365347 0.704295\nvn 0.608646 -0.365346 0.704324\nvn 0.608646 -0.365346 0.704324\nvn 0.608653 -0.365259 0.704363\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608653 -0.365259 0.704363\nvn 0.608653 -0.365259 0.704363\nvn 0.608660 -0.365293 0.704340\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608660 -0.365293 0.704340\nvn 0.608660 -0.365293 0.704340\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608672 -0.365313 0.704319\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608679 -0.365286 0.704327\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608679 -0.365286 0.704327\nvn 0.608679 -0.365286 0.704327\nvn 0.608678 -0.365347 0.704295\nvn 0.608679 -0.365286 0.704327\nvn 0.608679 -0.365286 0.704327\nvn 0.608679 -0.365286 0.704327\nvn 0.608665 -0.365339 0.704311\nvn 0.608678 -0.365347 0.704295\nvn 0.608647 -0.365285 0.704355\nvn 0.608678 -0.365347 0.704295\nvn 0.608665 -0.365339 0.704311\nvn 0.608665 -0.365339 0.704311\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608660 -0.365293 0.704340\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608672 -0.365313 0.704319\nvn 0.608660 -0.365293 0.704340\nvn 0.608679 -0.365286 0.704327\nvn 0.608660 -0.365293 0.704340\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608679 -0.365286 0.704327\nvn 0.608679 -0.365286 0.704327\nvn 0.608653 -0.365320 0.704332\nvn 0.608679 -0.365286 0.704327\nvn 0.608679 -0.365286 0.704327\nvn 0.608679 -0.365286 0.704327\nvn 0.608653 -0.365320 0.704332\nvn 0.608653 -0.365320 0.704332\nvn 0.836174 0.151896 -0.527011\nvn 0.743577 -0.210035 -0.634806\nvn 0.851817 -0.286207 -0.438741\nvn 0.851817 -0.286207 -0.438741\nvn 0.940029 0.058628 -0.336019\nvn 0.836174 0.151896 -0.527011\nvn 0.809068 0.486173 -0.330219\nvn 0.836174 0.151896 -0.527011\nvn 0.940029 0.058628 -0.336019\nvn 0.940029 0.058628 -0.336019\nvn 0.914186 0.377071 -0.148600\nvn 0.809068 0.486173 -0.330219\nvn 0.666354 0.741920 -0.074345\nvn 0.809068 0.486173 -0.330219\nvn 0.914186 0.377071 -0.148600\nvn 0.914186 0.377071 -0.148600\nvn 0.778269 0.620669 0.095220\nvn 0.666354 0.741920 -0.074345\nvn 0.429866 0.880089 0.201642\nvn 0.666354 0.741920 -0.074345\nvn 0.778269 0.620669 0.095220\nvn 0.778269 0.620669 0.095220\nvn 0.553010 0.752271 0.358144\nvn 0.429866 0.880089 0.201642\nvn 0.663063 -0.604954 -0.440882\nvn 0.851817 -0.286207 -0.438741\nvn 0.743577 -0.210035 -0.634806\nvn 0.743577 -0.210035 -0.634806\nvn 0.545408 -0.544584 -0.637149\nvn 0.663063 -0.604954 -0.440882\nvn 0.402462 -0.849054 -0.342246\nvn 0.663063 -0.604954 -0.440882\nvn 0.545408 -0.544584 -0.637149\nvn 0.545408 -0.544584 -0.637149\nvn 0.271862 -0.800876 -0.533562\nvn 0.402462 -0.849054 -0.342246\nvn 0.109657 -0.981351 -0.157877\nvn 0.402462 -0.849054 -0.342246\nvn 0.271862 -0.800876 -0.533562\nvn 0.271862 -0.800876 -0.533562\nvn -0.035463 -0.939764 -0.339979\nvn 0.109657 -0.981351 -0.157877\nvn -0.170695 -0.981719 0.084203\nvn 0.109657 -0.981351 -0.157877\nvn -0.035463 -0.939764 -0.339979\nvn -0.035463 -0.939764 -0.339979\nvn -0.329817 -0.940133 -0.085849\nvn -0.170695 -0.981719 0.084203\nvn -0.395958 -0.850117 0.347158\nvn -0.170695 -0.981719 0.084203\nvn -0.329817 -0.940133 -0.085849\nvn -0.329817 -0.940133 -0.085849\nvn -0.566282 -0.801981 0.190134\nvn -0.395958 -0.850117 0.347158\nvn -0.531886 -0.606506 0.590972\nvn -0.395958 -0.850117 0.347158\nvn -0.566282 -0.801981 0.190134\nvn -0.566282 -0.801981 0.190134\nvn -0.708922 -0.546287 0.446094\nvn -0.531886 -0.606506 0.590972\nvn -0.557688 -0.288046 0.778469\nvn -0.531886 -0.606506 0.590972\nvn -0.708922 -0.546287 0.446094\nvn -0.708922 -0.546287 0.446094\nvn -0.736033 -0.212017 0.642888\nvn -0.557688 -0.288046 0.778469\nvn -0.469536 0.056765 0.881086\nvn -0.557688 -0.288046 0.778469\nvn -0.736033 -0.212017 0.642888\nvn -0.736033 -0.212017 0.642888\nvn -0.643527 0.149971 0.750588\nvn -0.469536 0.056765 0.881086\nvn -0.280779 0.375511 0.883264\nvn -0.469536 0.056765 0.881086\nvn -0.643527 0.149971 0.750588\nvn -0.643527 0.149971 0.750588\nvn -0.445315 0.484563 0.752923\nvn -0.280779 0.375511 0.883264\nvn -0.020174 0.619605 0.784654\nvn -0.280779 0.375511 0.883264\nvn -0.445315 0.484563 0.752923\nvn -0.445315 0.484563 0.752923\nvn -0.171794 0.740796 0.649391\nvn -0.020174 0.619605 0.784654\nvn 0.272630 0.751908 0.600256\nvn -0.020174 0.619605 0.784654\nvn -0.171794 0.740796 0.649391\nvn -0.171794 0.740796 0.649391\nvn 0.135595 0.879677 0.455831\nvn 0.272630 0.751908 0.600256\nvn 0.553010 0.752271 0.358144\nvn 0.272630 0.751908 0.600256\nvn 0.135595 0.879677 0.455831\nvn 0.135595 0.879677 0.455831\nvn 0.429866 0.880089 0.201642\nvn 0.553010 0.752271 0.358144\nvn 0.851817 -0.286207 -0.438741\nvn 0.909588 -0.342423 -0.235362\nvn 0.989320 -0.030672 -0.142496\nvn 0.989320 -0.030672 -0.142496\nvn 0.940029 0.058628 -0.336019\nvn 0.851817 -0.286207 -0.438741\nvn 0.914186 0.377071 -0.148600\nvn 0.940029 0.058628 -0.336019\nvn 0.989320 -0.030672 -0.142496\nvn 0.989320 -0.030672 -0.142496\nvn 0.965970 0.257248 0.026949\nvn 0.914186 0.377071 -0.148600\nvn 0.914186 0.377071 -0.148600\nvn 0.965970 0.257248 0.026949\nvn 0.843125 0.477413 0.247420\nvn 0.843125 0.477413 0.247420\nvn 0.778269 0.620669 0.095220\nvn 0.914186 0.377071 -0.148600\nvn 0.553010 0.752271 0.358144\nvn 0.778269 0.620669 0.095220\nvn 0.843125 0.477413 0.247420\nvn 0.843125 0.477413 0.247420\nvn 0.639410 0.596439 0.485196\nvn 0.553010 0.752271 0.358144\nvn 0.738926 -0.630645 -0.237224\nvn 0.909588 -0.342423 -0.235362\nvn 0.851817 -0.286207 -0.438741\nvn 0.851817 -0.286207 -0.438741\nvn 0.663063 -0.604954 -0.440882\nvn 0.738926 -0.630645 -0.237224\nvn 0.738926 -0.630645 -0.237224\nvn 0.663063 -0.604954 -0.440882\nvn 0.402462 -0.849054 -0.342246\nvn 0.402462 -0.849054 -0.342246\nvn 0.503316 -0.851321 -0.148077\nvn 0.738926 -0.630645 -0.237224\nvn 0.238535 -0.970956 0.018586\nvn 0.503316 -0.851321 -0.148077\nvn 0.402462 -0.849054 -0.342246\nvn 0.402462 -0.849054 -0.342246\nvn 0.109657 -0.981351 -0.157877\nvn 0.238535 -0.970956 0.018586\nvn 0.238535 -0.970956 0.018586\nvn 0.109657 -0.981351 -0.157877\nvn -0.170695 -0.981719 0.084203\nvn -0.170695 -0.981719 0.084203\nvn -0.014863 -0.971281 0.237472\nvn 0.238535 -0.970956 0.018586\nvn -0.218548 -0.852279 0.475245\nvn -0.014863 -0.971281 0.237472\nvn -0.170695 -0.981719 0.084203\nvn -0.170695 -0.981719 0.084203\nvn -0.395958 -0.850117 0.347158\nvn -0.218548 -0.852279 0.475245\nvn -0.218548 -0.852279 0.475245\nvn -0.395958 -0.850117 0.347158\nvn -0.531886 -0.606506 0.590972\nvn -0.531886 -0.606506 0.590972\nvn -0.341447 -0.632080 0.695621\nvn -0.218548 -0.852279 0.475245\nvn -0.364799 -0.344107 0.865166\nvn -0.341447 -0.632080 0.695621\nvn -0.531886 -0.606506 0.590972\nvn -0.531886 -0.606506 0.590972\nvn -0.557688 -0.288046 0.778469\nvn -0.364799 -0.344107 0.865166\nvn -0.364799 -0.344107 0.865166\nvn -0.557688 -0.288046 0.778469\nvn -0.469536 0.056765 0.881086\nvn -0.469536 0.056765 0.881086\nvn -0.285021 -0.032381 0.957974\nvn -0.364799 -0.344107 0.865166\nvn -0.114417 0.255843 0.959924\nvn -0.285021 -0.032381 0.957974\nvn -0.469536 0.056765 0.881086\nvn -0.469536 0.056765 0.881086\nvn -0.280779 0.375511 0.883264\nvn -0.114417 0.255843 0.959924\nvn -0.114417 0.255843 0.959924\nvn -0.280779 0.375511 0.883264\nvn -0.020174 0.619605 0.784654\nvn -0.020174 0.619605 0.784654\nvn 0.121191 0.476464 0.870801\nvn -0.114417 0.255843 0.959924\nvn 0.385944 0.596129 0.704044\nvn 0.121191 0.476464 0.870801\nvn -0.020174 0.619605 0.784654\nvn -0.020174 0.619605 0.784654\nvn 0.272630 0.751908 0.600256\nvn 0.385944 0.596129 0.704044\nvn 0.385944 0.596129 0.704044\nvn 0.272630 0.751908 0.600256\nvn 0.553010 0.752271 0.358144\nvn 0.553010 0.752271 0.358144\nvn 0.639410 0.596439 0.485196\nvn 0.385944 0.596129 0.704044\nvn 0.608672 -0.365313 0.704319\nvn 0.608737 -0.365254 0.704293\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608647 -0.365285 0.704355\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608653 -0.365320 0.704332\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608647 -0.365285 0.704355\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608737 -0.365254 0.704293\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608679 -0.365286 0.704327\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608672 -0.365313 0.704319\nvn 0.608647 -0.365285 0.704355\nvn 0.608672 -0.365313 0.704319\nvn 0.608703 -0.365435 0.704228\nvn 0.608647 -0.365285 0.704355\nvn 0.608743 -0.365289 0.704270\nvn 0.608672 -0.365313 0.704319\nvn 0.608647 -0.365285 0.704355\nvn 0.131906 -0.761709 -0.634350\nvn 0.055576 -0.888233 -0.456019\nvn 0.063693 -0.896309 -0.438831\nvn 0.063693 -0.896309 -0.438831\nvn 0.133980 -0.755321 -0.641514\nvn 0.131906 -0.761709 -0.634350\nvn 0.024385 -0.946299 -0.322371\nvn 0.063693 -0.896309 -0.438831\nvn 0.055576 -0.888233 -0.456019\nvn 0.055576 -0.888233 -0.456019\nvn 0.010255 -0.932338 -0.361442\nvn 0.024385 -0.946299 -0.322371\nvn -0.101904 -0.935447 0.338459\nvn -0.098362 -0.931287 0.350755\nvn -0.111852 -0.946337 0.303208\nvn -0.111852 -0.946337 0.303208\nvn -0.115910 -0.950449 0.288464\nvn -0.101904 -0.935447 0.338459\nvn 0.206156 -0.565943 -0.798253\nvn 0.131906 -0.761709 -0.634350\nvn 0.133980 -0.755321 -0.641514\nvn 0.133980 -0.755321 -0.641514\nvn 0.206954 -0.555853 -0.805107\nvn 0.206156 -0.565943 -0.798253\nvn 0.279682 -0.306875 -0.909729\nvn 0.206156 -0.565943 -0.798253\nvn 0.206954 -0.555853 -0.805107\nvn 0.206954 -0.555853 -0.805107\nvn 0.278887 -0.297595 -0.913050\nvn 0.279682 -0.306875 -0.909729\nvn -0.099186 -0.194374 0.975900\nvn -0.115730 -0.308888 0.944031\nvn -0.108893 -0.291734 0.950281\nvn -0.108893 -0.291734 0.950281\nvn -0.095190 -0.174723 0.980006\nvn -0.099186 -0.194374 0.975900\nvn -0.081639 -0.065647 0.994498\nvn -0.099186 -0.194374 0.975900\nvn -0.095190 -0.174723 0.980006\nvn -0.095190 -0.174723 0.980006\nvn -0.083104 -0.068363 0.994193\nvn -0.081639 -0.065647 0.994498\nvn 0.327711 -0.077823 -0.941567\nvn 0.279682 -0.306875 -0.909729\nvn 0.278887 -0.297595 -0.913050\nvn 0.278887 -0.297595 -0.913050\nvn 0.326430 -0.073093 -0.942391\nvn 0.327711 -0.077823 -0.941567\nvn 0.360710 0.126656 -0.924038\nvn 0.327711 -0.077823 -0.941567\nvn 0.326430 -0.073093 -0.942391\nvn 0.326430 -0.073093 -0.942391\nvn 0.359726 0.117193 -0.925669\nvn 0.360710 0.126656 -0.924038\nvn 0.388540 0.365499 -0.845841\nvn 0.360710 0.126656 -0.924038\nvn 0.359726 0.117193 -0.925669\nvn 0.359726 0.117193 -0.925669\nvn 0.387474 0.349905 -0.852895\nvn 0.388540 0.365499 -0.845841\nvn 0.396873 0.629522 -0.667977\nvn 0.388540 0.365499 -0.845841\nvn 0.387474 0.349905 -0.852895\nvn 0.387474 0.349905 -0.852895\nvn 0.397995 0.608514 -0.686520\nvn 0.396873 0.629522 -0.667977\nvn 0.380176 0.809213 -0.447929\nvn 0.396873 0.629522 -0.667977\nvn 0.397995 0.608514 -0.686520\nvn 0.397995 0.608514 -0.686520\nvn 0.382376 0.796767 -0.467922\nvn 0.380176 0.809213 -0.447929\nvn 0.345050 0.916950 -0.200359\nvn 0.380176 0.809213 -0.447929\nvn 0.382376 0.796767 -0.467922\nvn 0.382376 0.796767 -0.467922\nvn 0.338611 0.918112 -0.205944\nvn 0.345050 0.916950 -0.200359\nvn 0.316152 0.947329 -0.051151\nvn 0.345050 0.916950 -0.200359\nvn 0.338611 0.918112 -0.205944\nvn 0.338611 0.918112 -0.205944\nvn 0.299426 0.953703 -0.028170\nvn 0.316152 0.947329 -0.051151\nvn 0.165445 0.802660 0.573032\nvn 0.169412 0.805280 0.568176\nvn 0.158152 0.797722 0.581917\nvn 0.158152 0.797722 0.581917\nvn 0.154640 0.795330 0.586121\nvn 0.165445 0.802660 0.573032\nvn -0.068119 0.035860 0.997033\nvn -0.053226 0.135292 0.989375\nvn -0.037325 0.160804 0.986280\nvn -0.037325 0.160804 0.986280\nvn -0.059513 0.048190 0.997064\nvn -0.068119 0.035860 0.997033\nvn -0.084203 -0.067417 0.994165\nvn -0.068119 0.035860 0.997033\nvn -0.059513 0.048190 0.997064\nvn -0.059513 0.048190 0.997064\nvn -0.082646 -0.064792 0.994471\nvn -0.084203 -0.067417 0.994165\nvn -0.083104 -0.068363 0.994193\nvn -0.084203 -0.067417 0.994165\nvn -0.082646 -0.064792 0.994471\nvn -0.082646 -0.064792 0.994471\nvn -0.081639 -0.065647 0.994498\nvn -0.083104 -0.068363 0.994193\nvn 0.979040 0.057192 -0.195472\nvn 0.984775 0.130010 -0.115391\nvn 0.999206 -0.030092 -0.026125\nvn 0.984775 0.130010 -0.115391\nvn 0.984671 0.173624 -0.016663\nvn 0.999616 -0.011810 0.025087\nvn 0.999616 -0.011810 0.025087\nvn 0.999206 -0.030092 -0.026125\nvn 0.984775 0.130010 -0.115391\nvn 0.994189 -0.010285 0.107152\nvn 0.999616 -0.011810 0.025087\nvn 0.984671 0.173624 -0.016663\nvn 0.984671 0.173624 -0.016663\nvn 0.974740 0.149024 0.166358\nvn 0.994189 -0.010285 0.107152\nvn 0.958145 -0.085636 0.273176\nvn 0.994189 -0.010285 0.107152\nvn 0.974740 0.149024 0.166358\nvn 0.974740 0.149024 0.166358\nvn 0.922195 -0.023591 0.386005\nvn 0.958145 -0.085636 0.273176\nvn 0.935691 -0.220532 0.275406\nvn 0.958145 -0.085636 0.273176\nvn 0.922195 -0.023591 0.386005\nvn 0.922195 -0.023591 0.386005\nvn 0.881305 -0.194987 0.430444\nvn 0.935691 -0.220532 0.275406\nvn 0.935205 -0.238142 0.262070\nvn 0.935691 -0.220532 0.275406\nvn 0.881305 -0.194987 0.430444\nvn 0.881305 -0.194987 0.430444\nvn 0.873715 -0.237595 0.424466\nvn 0.935205 -0.238142 0.262070\nvn 0.935205 -0.238142 0.262070\nvn 0.873715 -0.237595 0.424466\nvn 0.873865 -0.239486 0.423092\nvn 0.873865 -0.239486 0.423092\nvn 0.872737 -0.240677 0.424741\nvn 0.935205 -0.238142 0.262070\nvn 0.999206 -0.030092 -0.026125\nvn 0.995124 -0.064791 -0.074374\nvn 0.979040 0.057192 -0.195472\nvn 0.965481 -0.037447 -0.257767\nvn 0.979040 0.057192 -0.195472\nvn 0.995124 -0.064791 -0.074374\nvn 0.995124 -0.064791 -0.074374\nvn 0.986585 -0.123052 -0.107274\nvn 0.965481 -0.037447 -0.257767\nvn 0.949305 -0.133583 -0.284563\nvn 0.965481 -0.037447 -0.257767\nvn 0.986585 -0.123052 -0.107274\nvn 0.986585 -0.123052 -0.107274\nvn 0.978162 -0.174080 -0.113561\nvn 0.949305 -0.133583 -0.284563\nvn 0.949305 -0.133583 -0.284563\nvn 0.978162 -0.174080 -0.113561\nvn 0.968296 -0.224526 -0.109501\nvn 0.968296 -0.224526 -0.109501\nvn 0.933851 -0.207132 -0.291579\nvn 0.949305 -0.133583 -0.284563\nvn 0.915194 -0.299550 -0.269611\nvn 0.933851 -0.207132 -0.291579\nvn 0.968296 -0.224526 -0.109501\nvn 0.968296 -0.224526 -0.109501\nvn 0.958830 -0.268388 -0.092810\nvn 0.915194 -0.299550 -0.269611\nvn 0.891927 -0.397575 -0.215405\nvn 0.915194 -0.299550 -0.269611\nvn 0.958830 -0.268388 -0.092810\nvn 0.958830 -0.268388 -0.092810\nvn 0.943827 -0.324019 -0.064822\nvn 0.891927 -0.397575 -0.215405\nvn 0.871787 -0.468656 -0.142648\nvn 0.891927 -0.397575 -0.215405\nvn 0.943827 -0.324019 -0.064822\nvn 0.943827 -0.324019 -0.064822\nvn 0.932913 -0.359395 -0.022554\nvn 0.871787 -0.468656 -0.142648\nvn 0.864494 -0.498840 -0.061710\nvn 0.871787 -0.468656 -0.142648\nvn 0.932913 -0.359395 -0.022554\nvn 0.932913 -0.359395 -0.022554\nvn 0.925302 -0.379014 0.012879\nvn 0.864494 -0.498840 -0.061710\nvn 0.861378 -0.499510 0.092291\nvn 0.864494 -0.498840 -0.061710\nvn 0.925302 -0.379014 0.012879\nvn 0.925302 -0.379014 0.012879\nvn 0.911368 -0.405845 0.068546\nvn 0.861378 -0.499510 0.092291\nvn 0.858969 -0.416773 0.297442\nvn 0.861378 -0.499510 0.092291\nvn 0.911368 -0.405845 0.068546\nvn 0.911368 -0.405845 0.068546\nvn 0.876697 -0.437707 0.199535\nvn 0.858969 -0.416773 0.297442\nvn 0.872446 -0.271130 0.406604\nvn 0.858969 -0.416773 0.297442\nvn 0.876697 -0.437707 0.199535\nvn 0.876697 -0.437707 0.199535\nvn 0.927877 -0.257918 0.269302\nvn 0.872446 -0.271130 0.406604\nvn 0.873865 -0.239486 0.423092\nvn 0.872446 -0.271130 0.406604\nvn 0.927877 -0.257918 0.269302\nvn 0.927877 -0.257918 0.269302\nvn 0.872737 -0.240677 0.424741\nvn 0.873865 -0.239486 0.423092\nvn 0.927877 -0.257918 0.269302\nvn 0.876697 -0.437707 0.199535\nvn 0.911368 -0.405845 0.068546\nvn 0.927877 -0.257918 0.269302\nvn 0.911368 -0.405845 0.068546\nvn 0.932913 -0.359395 -0.022554\nvn 0.911368 -0.405845 0.068546\nvn 0.925302 -0.379014 0.012879\nvn 0.932913 -0.359395 -0.022554\nvn 0.927877 -0.257918 0.269302\nvn 0.932913 -0.359395 -0.022554\nvn 0.968296 -0.224526 -0.109501\nvn 0.932913 -0.359395 -0.022554\nvn 0.943827 -0.324019 -0.064822\nvn 0.968296 -0.224526 -0.109501\nvn 0.943827 -0.324019 -0.064822\nvn 0.958830 -0.268388 -0.092810\nvn 0.968296 -0.224526 -0.109501\nvn 0.927877 -0.257918 0.269302\nvn 0.968296 -0.224526 -0.109501\nvn 0.935205 -0.238142 0.262070\nvn 0.968296 -0.224526 -0.109501\nvn 0.999616 -0.011810 0.025087\nvn 0.935205 -0.238142 0.262070\nvn 0.968296 -0.224526 -0.109501\nvn 0.986585 -0.123052 -0.107274\nvn 0.999616 -0.011810 0.025087\nvn 0.968296 -0.224526 -0.109501\nvn 0.978162 -0.174080 -0.113561\nvn 0.986585 -0.123052 -0.107274\nvn 0.986585 -0.123052 -0.107274\nvn 0.995124 -0.064791 -0.074374\nvn 0.999616 -0.011810 0.025087\nvn 0.995124 -0.064791 -0.074374\nvn 0.999206 -0.030092 -0.026125\nvn 0.999616 -0.011810 0.025087\nvn 0.999616 -0.011810 0.025087\nvn 0.935691 -0.220532 0.275406\nvn 0.935205 -0.238142 0.262070\nvn 0.999616 -0.011810 0.025087\nvn 0.994189 -0.010285 0.107152\nvn 0.935691 -0.220532 0.275406\nvn 0.994189 -0.010285 0.107152\nvn 0.958145 -0.085636 0.273176\nvn 0.935691 -0.220532 0.275406\nvn 0.404256 -0.019227 -0.914444\nvn 0.404256 -0.019227 -0.914444\nvn 0.838848 0.024355 0.543820\nvn 0.967954 0.202558 0.148446\nvn 0.964336 0.209268 0.162055\nvn 0.969718 0.173472 0.171915\nvn 0.969718 0.173472 0.171915\nvn 0.970696 0.185771 0.152444\nvn 0.967954 0.202558 0.148446\nvn 0.973946 0.162269 0.158423\nvn 0.970696 0.185771 0.152444\nvn 0.969718 0.173472 0.171915\nvn 0.969718 0.173472 0.171915\nvn 0.972924 0.137551 0.185740\nvn 0.973946 0.162269 0.158423\nvn 0.972924 0.137551 0.185740\nvn 0.969718 0.173472 0.171915\nvn 0.966555 0.174964 0.187506\nvn 0.966555 0.174964 0.187506\nvn 0.972073 0.058109 0.227370\nvn 0.972924 0.137551 0.185740\nvn 0.938771 0.297685 0.173471\nvn 0.966555 0.174964 0.187506\nvn 0.969718 0.173472 0.171915\nvn 0.969718 0.173472 0.171915\nvn 0.964336 0.209268 0.162055\nvn 0.938771 0.297685 0.173471\nvn 0.938771 0.297685 0.173471\nvn 0.964336 0.209268 0.162055\nvn 0.942300 0.245799 0.227274\nvn 0.942300 0.245799 0.227274\nvn 0.938296 0.250986 0.237923\nvn 0.938771 0.297685 0.173471\nvn 0.957838 0.143806 0.248730\nvn 0.972924 0.137551 0.185740\nvn 0.972073 0.058109 0.227370\nvn 0.972073 0.058109 0.227370\nvn 0.955489 0.144508 0.257214\nvn 0.957838 0.143806 0.248730\nvn 0.880785 0.261398 0.394827\nvn 0.886756 0.211710 0.410906\nvn 0.930464 0.186258 0.315506\nvn 0.930464 0.186258 0.315506\nvn 0.927405 0.220407 0.302227\nvn 0.880785 0.261398 0.394827\nvn 0.927405 0.220407 0.302227\nvn 0.930464 0.186258 0.315506\nvn 0.955989 0.164256 0.243117\nvn 0.955989 0.164256 0.243117\nvn 0.953305 0.190411 0.234420\nvn 0.927405 0.220407 0.302227\nvn 0.886756 0.211710 0.410906\nvn 0.880785 0.261398 0.394827\nvn 0.821273 0.295976 0.487759\nvn 0.821273 0.295976 0.487759\nvn 0.828985 0.234416 0.507773\nvn 0.886756 0.211710 0.410906\nvn 0.961204 0.182750 0.206615\nvn 0.953305 0.190411 0.234420\nvn 0.955989 0.164256 0.243117\nvn 0.955989 0.164256 0.243117\nvn 0.963919 0.158029 0.214214\nvn 0.961204 0.182750 0.206615\nvn 0.922625 0.253950 0.290298\nvn 0.927405 0.220407 0.302227\nvn 0.953305 0.190411 0.234420\nvn 0.880785 0.261398 0.394827\nvn 0.927405 0.220407 0.302227\nvn 0.922625 0.253950 0.290298\nvn 0.953305 0.190411 0.234420\nvn 0.948719 0.217266 0.229626\nvn 0.922625 0.253950 0.290298\nvn 0.922625 0.253950 0.290298\nvn 0.875207 0.306538 0.374230\nvn 0.880785 0.261398 0.394827\nvn 0.821273 0.295976 0.487759\nvn 0.880785 0.261398 0.394827\nvn 0.875207 0.306538 0.374230\nvn 0.875207 0.306538 0.374230\nvn 0.816628 0.346758 0.461387\nvn 0.821273 0.295976 0.487759\nvn 0.745322 0.322349 0.583598\nvn 0.821273 0.295976 0.487759\nvn 0.816628 0.346758 0.461387\nvn 0.828985 0.234416 0.507773\nvn 0.821273 0.295976 0.487759\nvn 0.745322 0.322349 0.583598\nvn 0.816628 0.346758 0.461387\nvn 0.745096 0.381612 0.546996\nvn 0.745322 0.322349 0.583598\nvn 0.745322 0.322349 0.583598\nvn 0.745096 0.381612 0.546996\nvn 0.633347 0.412873 0.654528\nvn 0.633347 0.412873 0.654528\nvn 0.630201 0.344751 0.695696\nvn 0.745322 0.322349 0.583598\nvn 0.630201 0.344751 0.695696\nvn 0.633347 0.412873 0.654528\nvn 0.541104 0.415060 0.731390\nvn 0.541104 0.415060 0.731390\nvn 0.540765 0.358293 0.761051\nvn 0.630201 0.344751 0.695696\nvn 0.745322 0.322349 0.583598\nvn 0.630201 0.344751 0.695696\nvn 0.635046 0.281541 0.719341\nvn 0.635046 0.281541 0.719341\nvn 0.630201 0.344751 0.695696\nvn 0.540765 0.358293 0.761051\nvn 0.635046 0.281541 0.719341\nvn 0.749551 0.258162 0.609529\nvn 0.745322 0.322349 0.583598\nvn 0.745322 0.322349 0.583598\nvn 0.749551 0.258162 0.609529\nvn 0.828985 0.234416 0.507773\nvn 0.540765 0.358293 0.761051\nvn 0.564828 0.305075 0.766746\nvn 0.635046 0.281541 0.719341\nvn 0.564828 0.305075 0.766746\nvn 0.540765 0.358293 0.761051\nvn 0.555756 0.308581 0.771954\nvn 0.540765 0.358293 0.761051\nvn 0.526282 0.353114 0.773523\nvn 0.555756 0.308581 0.771954\nvn 0.526282 0.353114 0.773523\nvn 0.577574 0.314042 0.753516\nvn 0.555756 0.308581 0.771954\nvn 0.531313 0.409846 0.741440\nvn 0.526282 0.353114 0.773523\nvn 0.540765 0.358293 0.761051\nvn 0.541104 0.415060 0.731390\nvn 0.531313 0.409846 0.741440\nvn 0.540765 0.358293 0.761051\nvn 0.541104 0.415060 0.731390\nvn 0.531244 0.413686 0.739354\nvn 0.531313 0.409846 0.741440\nvn 0.541104 0.415060 0.731390\nvn 0.531669 0.412982 0.739442\nvn 0.531244 0.413686 0.739354\nvn 0.957357 0.207348 0.201183\nvn 0.948719 0.217266 0.229626\nvn 0.953305 0.190411 0.234420\nvn 0.953305 0.190411 0.234420\nvn 0.961204 0.182750 0.206615\nvn 0.957357 0.207348 0.201183\nvn 0.506032 -0.059237 -0.860478\nvn 0.506314 -0.059757 -0.860276\nvn 0.511041 -0.062106 -0.857310\nvn 0.511041 -0.062106 -0.857310\nvn 0.510988 -0.061924 -0.857354\nvn 0.506032 -0.059237 -0.860478\nvn 0.515715 -0.065342 -0.854265\nvn 0.510988 -0.061924 -0.857354\nvn 0.511041 -0.062106 -0.857310\nvn 0.511041 -0.062106 -0.857310\nvn 0.515137 -0.066654 -0.854512\nvn 0.515715 -0.065342 -0.854265\nvn 0.515137 -0.066654 -0.854512\nvn 0.511041 -0.062106 -0.857310\nvn 0.510918 -0.062289 -0.857370\nvn 0.510918 -0.062289 -0.857370\nvn 0.513385 -0.068270 -0.855438\nvn 0.515137 -0.066654 -0.854512\nvn 0.516112 -0.069248 -0.853717\nvn 0.515137 -0.066654 -0.854512\nvn 0.513385 -0.068270 -0.855438\nvn 0.513385 -0.068270 -0.855438\nvn 0.515651 -0.067844 -0.854108\nvn 0.516112 -0.069248 -0.853717\nvn 0.512423 -0.068303 -0.856012\nvn 0.516112 -0.069248 -0.853717\nvn 0.515651 -0.067844 -0.854108\nvn 0.515651 -0.067844 -0.854108\nvn 0.512389 -0.068241 -0.856037\nvn 0.512423 -0.068303 -0.856012\nvn 0.509400 -0.061497 -0.858329\nvn 0.512423 -0.068303 -0.856012\nvn 0.512389 -0.068241 -0.856037\nvn 0.512389 -0.068241 -0.856037\nvn 0.509612 -0.062351 -0.858142\nvn 0.509400 -0.061497 -0.858329\nvn 0.506314 -0.059757 -0.860276\nvn 0.509400 -0.061497 -0.858329\nvn 0.509612 -0.062351 -0.858142\nvn 0.505703 -0.063510 -0.860367\nvn 0.510918 -0.062289 -0.857370\nvn 0.511041 -0.062106 -0.857310\nvn 0.511041 -0.062106 -0.857310\nvn 0.506314 -0.059757 -0.860276\nvn 0.505703 -0.063510 -0.860367\nvn 0.509612 -0.062351 -0.858142\nvn 0.505703 -0.063510 -0.860367\nvn 0.506314 -0.059757 -0.860276\nvn 0.235330 0.957620 -0.166084\nvn 0.232280 0.956894 -0.174355\nvn 0.211500 0.960297 -0.181927\nvn 0.237531 0.957418 -0.164102\nvn 0.235330 0.957620 -0.166084\nvn 0.211500 0.960297 -0.181927\nvn 0.195567 0.962728 -0.186839\nvn 0.237531 0.957418 -0.164102\nvn 0.211500 0.960297 -0.181927\nvn 0.235330 0.957620 -0.166084\nvn 0.237531 0.957418 -0.164102\nvn 0.225717 0.963111 -0.146521\nvn 0.225717 0.963111 -0.146521\nvn 0.222267 0.963292 -0.150549\nvn 0.235330 0.957620 -0.166084\nvn 0.222267 0.963292 -0.150549\nvn 0.225717 0.963111 -0.146521\nvn 0.196514 0.971737 -0.130806\nvn 0.196514 0.971737 -0.130806\nvn 0.199166 0.970990 -0.132330\nvn 0.222267 0.963292 -0.150549\nvn 0.147252 0.983341 -0.106571\nvn 0.199166 0.970990 -0.132330\nvn 0.196514 0.971737 -0.130806\nvn 0.196514 0.971737 -0.130806\nvn 0.137612 0.984680 -0.107093\nvn 0.147252 0.983341 -0.106571\nvn 0.106662 0.990819 -0.083072\nvn 0.147252 0.983341 -0.106571\nvn 0.137612 0.984680 -0.107093\nvn 0.137612 0.984680 -0.107093\nvn 0.096897 0.991827 -0.083011\nvn 0.106662 0.990819 -0.083072\nvn 0.067874 0.995564 -0.065158\nvn 0.106662 0.990819 -0.083072\nvn 0.096897 0.991827 -0.083011\nvn 0.096897 0.991827 -0.083011\nvn 0.059572 0.996011 -0.066439\nvn 0.067874 0.995564 -0.065158\nvn 0.025697 0.997812 -0.060916\nvn 0.067874 0.995564 -0.065158\nvn 0.059572 0.996011 -0.066439\nvn 0.059572 0.996011 -0.066439\nvn 0.018159 0.997728 -0.064884\nvn 0.025697 0.997812 -0.060916\nvn -0.114936 0.991450 0.061771\nvn 0.025697 0.997812 -0.060916\nvn 0.018159 0.997728 -0.064884\nvn 0.018159 0.997728 -0.064884\nvn -0.151650 0.983265 0.100957\nvn -0.114936 0.991450 0.061771\nvn -0.281021 0.918933 0.276748\nvn -0.114936 0.991450 0.061771\nvn -0.151650 0.983265 0.100957\nvn -0.151650 0.983265 0.100957\nvn -0.292525 0.909895 0.294143\nvn -0.281021 0.918933 0.276748\nvn -0.389117 0.804205 0.449269\nvn -0.281021 0.918933 0.276748\nvn -0.292525 0.909895 0.294143\nvn -0.292525 0.909895 0.294143\nvn -0.400967 0.785055 0.472138\nvn -0.389117 0.804205 0.449269\nvn -0.389117 0.804205 0.449269\nvn -0.400967 0.785055 0.472138\nvn -0.502705 0.569113 0.650690\nvn -0.502705 0.569113 0.650690\nvn -0.510007 0.567749 0.646184\nvn -0.389117 0.804205 0.449269\nvn -0.510007 0.567749 0.646184\nvn -0.502705 0.569113 0.650690\nvn -0.554112 0.299915 0.776538\nvn -0.554112 0.299915 0.776538\nvn -0.553252 0.326128 0.766520\nvn -0.510007 0.567749 0.646184\nvn -0.483204 0.017121 0.875340\nvn -0.553252 0.326128 0.766520\nvn -0.554112 0.299915 0.776538\nvn -0.554112 0.299915 0.776538\nvn -0.466884 -0.035769 0.883595\nvn -0.483204 0.017121 0.875340\nvn -0.381185 -0.179331 0.906939\nvn -0.483204 0.017121 0.875340\nvn -0.466884 -0.035769 0.883595\nvn -0.466884 -0.035769 0.883595\nvn -0.380605 -0.180552 0.906940\nvn -0.381185 -0.179331 0.906939\nvn -0.062655 -0.579368 0.812654\nvn -0.045900 -0.587668 0.807799\nvn -0.048830 -0.586241 0.808664\nvn -0.048830 -0.586241 0.808664\nvn -0.066592 -0.577384 0.813752\nvn -0.062655 -0.579368 0.812654\nvn 0.330858 -0.794719 0.508876\nvn 0.321365 -0.801122 0.504905\nvn 0.394463 -0.780411 0.485136\nvn 0.394463 -0.780411 0.485136\nvn 0.398245 -0.774363 0.491694\nvn 0.330858 -0.794719 0.508876\nvn 0.450282 -0.788405 0.419122\nvn 0.398245 -0.774363 0.491694\nvn 0.394463 -0.780411 0.485136\nvn 0.394463 -0.780411 0.485136\nvn 0.448510 -0.791606 0.414969\nvn 0.450282 -0.788405 0.419122\nvn 0.474631 -0.799016 0.369188\nvn 0.450282 -0.788405 0.419122\nvn 0.448510 -0.791606 0.414969\nvn 0.448510 -0.791606 0.414969\nvn 0.473286 -0.801577 0.365341\nvn 0.474631 -0.799016 0.369188\nvn 0.489956 -0.809034 0.324664\nvn 0.474631 -0.799016 0.369188\nvn 0.473286 -0.801577 0.365341\nvn 0.473286 -0.801577 0.365341\nvn 0.488161 -0.811515 0.321158\nvn 0.489956 -0.809034 0.324664\nvn 0.493714 -0.824423 0.276720\nvn 0.489956 -0.809034 0.324664\nvn 0.488161 -0.811515 0.321158\nvn 0.488161 -0.811515 0.321158\nvn 0.491108 -0.826692 0.274577\nvn 0.493714 -0.824423 0.276720\nvn 0.493256 -0.836721 0.237899\nvn 0.493714 -0.824423 0.276720\nvn 0.491108 -0.826692 0.274577\nvn 0.491108 -0.826692 0.274577\nvn 0.492179 -0.837745 0.236522\nvn 0.493256 -0.836721 0.237899\nvn 0.493256 -0.836721 0.237899\nvn 0.492179 -0.837745 0.236522\nvn 0.500792 -0.841540 0.202526\nvn 0.500792 -0.841540 0.202526\nvn 0.499726 -0.842276 0.202100\nvn 0.493256 -0.836721 0.237899\nvn 0.500792 -0.841540 0.202526\nvn 0.510126 -0.840281 0.183572\nvn 0.499726 -0.842276 0.202100\nvn 0.500792 -0.841540 0.202526\nvn 0.511561 -0.839214 0.184458\nvn 0.510126 -0.840281 0.183572\nvn -0.520171 0.074375 0.850817\nvn -0.520171 0.074375 0.850817\nvn -0.520171 0.074375 0.850817\nvn 0.916549 0.271651 0.293502\nvn 0.938296 0.250986 0.237923\nvn 0.942300 0.245799 0.227274\nvn 0.942300 0.245799 0.227274\nvn 0.916545 0.271863 0.293318\nvn 0.916549 0.271651 0.293502\nvn 0.866703 0.327509 0.376249\nvn 0.916549 0.271651 0.293502\nvn 0.916545 0.271863 0.293318\nvn 0.916545 0.271863 0.293318\nvn 0.866693 0.327963 0.375878\nvn 0.866703 0.327509 0.376249\nvn 0.808153 0.363944 0.463070\nvn 0.866703 0.327509 0.376249\nvn 0.866693 0.327963 0.375878\nvn 0.866693 0.327963 0.375878\nvn 0.808250 0.364343 0.462586\nvn 0.808153 0.363944 0.463070\nvn 0.733659 0.395381 0.552647\nvn 0.808153 0.363944 0.463070\nvn 0.808250 0.364343 0.462586\nvn 0.808250 0.364343 0.462586\nvn 0.733867 0.395683 0.552155\nvn 0.733659 0.395381 0.552647\nvn 0.620427 0.428247 0.657020\nvn 0.733659 0.395381 0.552647\nvn 0.733867 0.395683 0.552155\nvn 0.733867 0.395683 0.552155\nvn 0.622417 0.429320 0.654432\nvn 0.620427 0.428247 0.657020\nvn 0.487059 0.535952 0.689586\nvn 0.620427 0.428247 0.657020\nvn 0.622417 0.429320 0.654432\nvn 0.622417 0.429320 0.654432\nvn 0.484287 0.534004 0.693042\nvn 0.487059 0.535952 0.689586\nvn 0.487059 0.535952 0.689586\nvn 0.484287 0.534004 0.693042\nvn 0.438679 0.536095 0.721223\nvn 0.438679 0.536095 0.721223\nvn 0.439173 0.536744 0.720439\nvn 0.487059 0.535952 0.689586\nvn 0.385276 0.531831 0.754134\nvn 0.439173 0.536744 0.720439\nvn 0.438679 0.536095 0.721223\nvn 0.438679 0.536095 0.721223\nvn 0.390795 0.538752 0.746342\nvn 0.385276 0.531831 0.754134\nvn 0.268357 0.497100 0.825152\nvn 0.385276 0.531831 0.754134\nvn 0.390795 0.538752 0.746342\nvn 0.390795 0.538752 0.746342\nvn 0.312421 0.521018 0.794313\nvn 0.268357 0.497100 0.825152\nvn 0.268357 0.497100 0.825152\nvn 0.312421 0.521018 0.794313\nvn 0.084842 0.400286 0.912454\nvn 0.084842 0.400286 0.912454\nvn -0.185556 0.391042 0.901474\nvn 0.268357 0.497100 0.825152\nvn -0.185556 0.391042 0.901474\nvn 0.084842 0.400286 0.912454\nvn 0.125615 0.155585 0.979803\nvn 0.125615 0.155585 0.979803\nvn -0.168102 0.134836 0.976505\nvn -0.185556 0.391042 0.901474\nvn 0.283886 0.046236 0.957743\nvn -0.168102 0.134836 0.976505\nvn 0.125615 0.155585 0.979803\nvn 0.125615 0.155585 0.979803\nvn 0.308915 0.034639 0.950459\nvn 0.283886 0.046236 0.957743\nvn 0.511412 -0.058871 0.857317\nvn 0.283886 0.046236 0.957743\nvn 0.308915 0.034639 0.950459\nvn 0.308915 0.034639 0.950459\nvn 0.483949 -0.031221 0.874539\nvn 0.511412 -0.058871 0.857317\nvn 0.644625 0.253553 0.721228\nvn 0.511412 -0.058871 0.857317\nvn 0.483949 -0.031221 0.874539\nvn 0.483949 -0.031221 0.874539\nvn 0.642307 0.257063 0.722053\nvn 0.644625 0.253553 0.721228\nvn 0.758612 0.236157 0.607238\nvn 0.644625 0.253553 0.721228\nvn 0.642307 0.257063 0.722053\nvn 0.642307 0.257063 0.722053\nvn 0.758414 0.235978 0.607555\nvn 0.758612 0.236157 0.607238\nvn 0.834122 0.218121 0.506620\nvn 0.758612 0.236157 0.607238\nvn 0.758414 0.235978 0.607555\nvn 0.758414 0.235978 0.607555\nvn 0.834030 0.217908 0.506864\nvn 0.834122 0.218121 0.506620\nvn 0.891126 0.198740 0.407918\nvn 0.834122 0.218121 0.506620\nvn 0.834030 0.217908 0.506864\nvn 0.834030 0.217908 0.506864\nvn 0.891102 0.198528 0.408073\nvn 0.891126 0.198740 0.407918\nvn 0.934493 0.170236 0.312637\nvn 0.891126 0.198740 0.407918\nvn 0.891102 0.198528 0.408073\nvn 0.891102 0.198528 0.408073\nvn 0.934542 0.169903 0.312674\nvn 0.934493 0.170236 0.312637\nvn 0.955489 0.144508 0.257214\nvn 0.934493 0.170236 0.312637\nvn 0.934542 0.169903 0.312674\nvn 0.934542 0.169903 0.312674\nvn 0.957838 0.143806 0.248730\nvn 0.955489 0.144508 0.257214\nvn 0.603127 -0.202771 -0.771442\nvn 0.603588 -0.176343 -0.777550\nvn 0.603432 -0.176494 -0.777637\nvn 0.603432 -0.176494 -0.777637\nvn 0.602604 -0.202831 -0.771834\nvn 0.603127 -0.202771 -0.771442\nvn 0.599610 -0.150307 -0.786051\nvn 0.603432 -0.176494 -0.777637\nvn 0.603588 -0.176343 -0.777550\nvn 0.603588 -0.176343 -0.777550\nvn 0.599522 -0.150308 -0.786117\nvn 0.599610 -0.150307 -0.786051\nvn 0.145757 0.972146 -0.183540\nvn 0.139291 0.973601 -0.180828\nvn 0.139656 0.973719 -0.179911\nvn 0.139656 0.973719 -0.179911\nvn 0.146430 0.972062 -0.183450\nvn 0.145757 0.972146 -0.183540\nvn 0.111976 0.979036 -0.170146\nvn 0.139656 0.973719 -0.179911\nvn 0.139291 0.973601 -0.180828\nvn 0.139291 0.973601 -0.180828\nvn 0.110691 0.979135 -0.170417\nvn 0.111976 0.979036 -0.170146\nvn 0.059450 0.985422 -0.159400\nvn 0.111976 0.979036 -0.170146\nvn 0.110691 0.979135 -0.170417\nvn 0.110691 0.979135 -0.170417\nvn 0.058139 0.985372 -0.160195\nvn 0.059450 0.985422 -0.159400\nvn 0.024537 0.989430 -0.142921\nvn 0.059450 0.985422 -0.159400\nvn 0.058139 0.985372 -0.160195\nvn 0.058139 0.985372 -0.160195\nvn 0.023255 0.989399 -0.143348\nvn 0.024537 0.989430 -0.142921\nvn -0.006287 0.991316 -0.131354\nvn 0.024537 0.989430 -0.142921\nvn 0.023255 0.989399 -0.143348\nvn 0.023255 0.989399 -0.143348\nvn -0.006745 0.991361 -0.130989\nvn -0.006287 0.991316 -0.131354\nvn -0.006287 0.991316 -0.131354\nvn -0.006745 0.991361 -0.130989\nvn -0.033601 0.990086 -0.136388\nvn -0.033601 0.990086 -0.136388\nvn -0.033511 0.990176 -0.135751\nvn -0.006287 0.991316 -0.131354\nvn -0.148780 0.988509 -0.026735\nvn -0.033511 0.990176 -0.135751\nvn -0.033601 0.990086 -0.136388\nvn -0.033601 0.990086 -0.136388\nvn -0.191173 0.980768 0.039339\nvn -0.148780 0.988509 -0.026735\nvn -0.148780 0.988509 -0.026735\nvn -0.191173 0.980768 0.039339\nvn -0.302598 0.916704 0.260939\nvn -0.302598 0.916704 0.260939\nvn -0.291245 0.927783 0.233228\nvn -0.148780 0.988509 -0.026735\nvn -0.364795 0.827769 0.426290\nvn -0.291245 0.927783 0.233228\nvn -0.302598 0.916704 0.260939\nvn -0.302598 0.916704 0.260939\nvn -0.377163 0.802699 0.461977\nvn -0.364795 0.827769 0.426290\nvn -0.439937 0.612616 0.656625\nvn -0.364795 0.827769 0.426290\nvn -0.377163 0.802699 0.461977\nvn -0.377163 0.802699 0.461977\nvn -0.440970 0.602751 0.665009\nvn -0.439937 0.612616 0.656625\nvn -0.439937 0.612616 0.656625\nvn -0.440970 0.602751 0.665009\nvn -0.185556 0.391042 0.901474\nvn -0.185556 0.391042 0.901474\nvn -0.470094 0.361475 0.805200\nvn -0.439937 0.612616 0.656625\nvn -0.470094 0.361475 0.805200\nvn -0.185556 0.391042 0.901474\nvn -0.168102 0.134836 0.976505\nvn -0.168102 0.134836 0.976505\nvn -0.399066 0.053042 0.915387\nvn -0.470094 0.361475 0.805200\nvn -0.153754 -0.354142 0.922466\nvn -0.399066 0.053042 0.915387\nvn -0.168102 0.134836 0.976505\nvn -0.168102 0.134836 0.976505\nvn -0.170756 -0.345906 0.922600\nvn -0.153754 -0.354142 0.922466\nvn -0.024538 -0.550420 0.834527\nvn -0.153754 -0.354142 0.922466\nvn -0.170756 -0.345906 0.922600\nvn -0.170756 -0.345906 0.922600\nvn -0.027498 -0.565436 0.824334\nvn -0.024538 -0.550420 0.834527\nvn 0.350671 -0.827815 0.437896\nvn 0.336903 -0.806198 0.486356\nvn 0.335864 -0.807660 0.484645\nvn 0.335864 -0.807660 0.484645\nvn 0.353014 -0.828592 0.434530\nvn 0.350671 -0.827815 0.437896\nvn 0.386162 -0.842457 0.375694\nvn 0.350671 -0.827815 0.437896\nvn 0.353014 -0.828592 0.434530\nvn 0.353014 -0.828592 0.434530\nvn 0.385551 -0.842913 0.375296\nvn 0.386162 -0.842457 0.375694\nvn 0.405288 -0.851136 0.333630\nvn 0.386162 -0.842457 0.375694\nvn 0.385551 -0.842913 0.375296\nvn 0.385551 -0.842913 0.375296\nvn 0.404954 -0.851534 0.333021\nvn 0.405288 -0.851136 0.333630\nvn 0.415245 -0.859910 0.296861\nvn 0.405288 -0.851136 0.333630\nvn 0.404954 -0.851534 0.333021\nvn 0.404954 -0.851534 0.333021\nvn 0.415646 -0.859979 0.296100\nvn 0.415245 -0.859910 0.296861\nvn 0.415245 -0.859910 0.296861\nvn 0.415646 -0.859979 0.296100\nvn 0.413140 -0.873524 0.257431\nvn 0.413140 -0.873524 0.257431\nvn 0.413082 -0.873560 0.257402\nvn 0.415245 -0.859910 0.296861\nvn 0.412159 -0.882058 0.228251\nvn 0.413082 -0.873560 0.257402\nvn 0.413140 -0.873524 0.257431\nvn 0.413140 -0.873524 0.257431\nvn 0.412531 -0.882316 0.226576\nvn 0.412159 -0.882058 0.228251\nvn 0.415545 -0.883123 0.217752\nvn 0.412159 -0.882058 0.228251\nvn 0.412531 -0.882316 0.226576\nvn 0.412531 -0.882316 0.226576\nvn 0.415486 -0.883158 0.217723\nvn 0.415545 -0.883123 0.217752\nvn 0.506277 -0.062380 -0.860112\nvn 0.513390 -0.066196 -0.855599\nvn 0.509699 -0.064242 -0.857951\nvn 0.509699 -0.064242 -0.857951\nvn 0.503203 -0.060489 -0.862049\nvn 0.506277 -0.062380 -0.860112\nvn 0.516324 -0.067295 -0.853745\nvn 0.509699 -0.064242 -0.857951\nvn 0.513390 -0.066196 -0.855599\nvn 0.513390 -0.066196 -0.855599\nvn 0.520996 -0.069462 -0.850728\nvn 0.516324 -0.067295 -0.853745\nvn -0.973494 -0.183663 -0.136298\nvn -0.973451 -0.183911 -0.136270\nvn -0.970990 -0.198434 -0.133429\nvn -0.970990 -0.198434 -0.133429\nvn -0.970988 -0.198464 -0.133398\nvn -0.973494 -0.183663 -0.136298\nvn -0.973451 -0.183911 -0.136270\nvn -0.973494 -0.183663 -0.136298\nvn -0.975732 -0.169108 -0.139107\nvn -0.975732 -0.169108 -0.139107\nvn -0.975736 -0.169108 -0.139077\nvn -0.973451 -0.183911 -0.136270\nvn -0.535425 0.813727 -0.226207\nvn -0.535425 0.813727 -0.226207\nvn -0.535425 0.813727 -0.226207\nvn -0.535425 0.813727 -0.226207\nvn -0.535425 0.813727 -0.226207\nvn -0.535425 0.813727 -0.226207\nvn 0.973596 0.183055 0.136391\nvn 0.973505 0.183605 0.136299\nvn 0.976482 0.163917 0.140051\nvn 0.976482 0.163917 0.140051\nvn 0.976482 0.163917 0.140051\nvn 0.973596 0.183055 0.136391\nvn 0.973505 0.183605 0.136299\nvn 0.973596 0.183055 0.136391\nvn 0.970230 0.202677 0.132575\nvn 0.970230 0.202677 0.132575\nvn 0.970230 0.202677 0.132575\nvn 0.973505 0.183605 0.136299\nvn -0.251754 -0.960840 0.115790\nvn -0.251754 -0.960843 0.115760\nvn -0.251754 -0.960843 0.115760\nvn -0.251754 -0.960843 0.115760\nvn -0.251725 -0.960847 0.115791\nvn -0.251754 -0.960840 0.115790\nvn 0.675015 -0.621271 0.397965\nvn 0.457181 -0.853688 0.249404\nvn 0.552366 -0.832500 0.042849\nvn 0.552366 -0.832500 0.042849\nvn 0.788126 -0.580718 0.204020\nvn 0.675015 -0.621271 0.397965\nvn 0.675015 -0.621271 0.397965\nvn 0.788126 -0.580718 0.204020\nvn 0.896235 -0.252884 0.364433\nvn 0.896235 -0.252884 0.364433\nvn 0.774739 -0.318593 0.546148\nvn 0.675015 -0.621271 0.397965\nvn 0.552366 -0.832500 0.042849\nvn 0.457181 -0.853688 0.249404\nvn 0.155188 -0.980325 0.121984\nvn 0.155188 -0.980325 0.121984\nvn 0.225017 -0.969712 -0.095006\nvn 0.552366 -0.832500 0.042849\nvn -0.144109 -0.971505 -0.188179\nvn 0.225017 -0.969712 -0.095006\nvn 0.155188 -0.980325 0.121984\nvn 0.155188 -0.980325 0.121984\nvn -0.185525 -0.981981 0.035982\nvn -0.144109 -0.971505 -0.188179\nvn 0.741829 0.008454 0.670536\nvn 0.774739 -0.318593 0.546148\nvn 0.896235 -0.252884 0.364433\nvn 0.896235 -0.252884 0.364433\nvn 0.860467 0.101325 0.499330\nvn 0.741829 0.008454 0.670536\nvn 0.741829 0.008454 0.670536\nvn 0.860467 0.101325 0.499330\nvn 0.686100 0.427878 0.588377\nvn 0.686100 0.427878 0.588377\nvn 0.580843 0.309801 0.752758\nvn 0.741829 0.008454 0.670536\nvn 0.316543 0.539942 0.779913\nvn 0.580843 0.309801 0.752758\nvn 0.686100 0.427878 0.588377\nvn 0.686100 0.427878 0.588377\nvn 0.399772 0.677101 0.617832\nvn 0.316543 0.539942 0.779913\nvn 0.316543 0.539942 0.779913\nvn 0.399772 0.677101 0.617832\nvn 0.045045 0.810940 0.583393\nvn 0.045045 0.810940 0.583393\nvn -0.010895 0.663419 0.748169\nvn 0.316543 0.539942 0.779913\nvn -0.351677 0.661633 0.662243\nvn -0.010895 0.663419 0.748169\nvn 0.045045 0.810940 0.583393\nvn 0.045045 0.810940 0.583393\nvn -0.324058 0.809107 0.490237\nvn -0.351677 0.661633 0.662243\nvn -0.351677 0.661633 0.662243\nvn -0.324058 0.809107 0.490237\nvn -0.651426 0.671873 0.352463\nvn -0.651426 0.671873 0.352463\nvn -0.653855 0.534919 0.535103\nvn -0.351677 0.661633 0.662243\nvn -0.871439 0.302687 0.385973\nvn -0.653855 0.534919 0.535103\nvn -0.651426 0.671873 0.352463\nvn -0.651426 0.671873 0.352463\nvn -0.887098 0.420186 0.191049\nvn -0.871439 0.302687 0.385973\nvn -0.871439 0.302687 0.385973\nvn -0.887098 0.420186 0.191049\nvn -0.995260 0.092259 0.030763\nvn -0.995260 0.092259 0.030763\nvn -0.971245 -0.000031 0.238081\nvn -0.871439 0.302687 0.385973\nvn -0.938190 -0.326983 0.113501\nvn -0.971245 -0.000031 0.238081\nvn -0.995260 0.092259 0.030763\nvn -0.995260 0.092259 0.030763\nvn -0.959449 -0.261943 -0.104130\nvn -0.938190 -0.326983 0.113501\nvn -0.938190 -0.326983 0.113501\nvn -0.959449 -0.261943 -0.104130\nvn -0.785111 -0.588445 -0.193218\nvn -0.785111 -0.588445 -0.193218\nvn -0.777297 -0.628363 0.031130\nvn -0.938190 -0.326983 0.113501\nvn -0.512960 -0.858403 0.004029\nvn -0.777297 -0.628363 0.031130\nvn -0.785111 -0.588445 -0.193218\nvn -0.785111 -0.588445 -0.193218\nvn -0.498835 -0.837598 -0.222698\nvn -0.512960 -0.858403 0.004029\nvn -0.512960 -0.858403 0.004029\nvn -0.498835 -0.837598 -0.222698\nvn -0.144109 -0.971505 -0.188179\nvn -0.144109 -0.971505 -0.188179\nvn -0.185525 -0.981981 0.035982\nvn -0.512960 -0.858403 0.004029\nvn -0.097814 -0.914820 -0.391839\nvn -0.144109 -0.971505 -0.188179\nvn -0.498835 -0.837598 -0.222698\nvn -0.144109 -0.971505 -0.188179\nvn -0.097814 -0.914820 -0.391839\nvn 0.280500 -0.912974 -0.296308\nvn 0.280500 -0.912974 -0.296308\nvn 0.225017 -0.969712 -0.095006\nvn -0.144109 -0.971505 -0.188179\nvn -0.498835 -0.837598 -0.222698\nvn -0.461331 -0.777635 -0.427150\nvn -0.097814 -0.914820 -0.391839\nvn -0.461331 -0.777635 -0.427150\nvn -0.498835 -0.837598 -0.222698\nvn -0.785111 -0.588445 -0.193218\nvn -0.785111 -0.588445 -0.193218\nvn -0.754777 -0.522280 -0.396906\nvn -0.461331 -0.777635 -0.427150\nvn -0.754777 -0.522280 -0.396906\nvn -0.785111 -0.588445 -0.193218\nvn -0.959449 -0.261943 -0.104130\nvn -0.959449 -0.261943 -0.104130\nvn -0.933465 -0.187572 -0.305712\nvn -0.754777 -0.522280 -0.396906\nvn -0.933465 -0.187572 -0.305712\nvn -0.959449 -0.261943 -0.104130\nvn -0.995260 0.092259 0.030763\nvn -0.995260 0.092259 0.030763\nvn -0.970163 0.175391 -0.167396\nvn -0.933465 -0.187572 -0.305712\nvn -0.887098 0.420186 0.191049\nvn -0.859331 0.511411 -0.003052\nvn -0.970163 0.175391 -0.167396\nvn -0.970163 0.175391 -0.167396\nvn -0.995260 0.092259 0.030763\nvn -0.887098 0.420186 0.191049\nvn -0.859331 0.511411 -0.003052\nvn -0.887098 0.420186 0.191049\nvn -0.651426 0.671873 0.352463\nvn -0.651426 0.671873 0.352463\nvn -0.617716 0.769490 0.162211\nvn -0.859331 0.511411 -0.003052\nvn -0.617716 0.769490 0.162211\nvn -0.651426 0.671873 0.352463\nvn -0.324058 0.809107 0.490237\nvn -0.324058 0.809107 0.490237\nvn -0.282245 0.910094 0.303426\nvn -0.617716 0.769490 0.162211\nvn -0.282245 0.910094 0.303426\nvn -0.324058 0.809107 0.490237\nvn 0.045045 0.810940 0.583393\nvn 0.045045 0.810940 0.583393\nvn 0.095982 0.911911 0.399007\nvn -0.282245 0.910094 0.303426\nvn 0.095982 0.911911 0.399007\nvn 0.045045 0.810940 0.583393\nvn 0.399772 0.677101 0.617832\nvn 0.399772 0.677101 0.617832\nvn 0.459501 0.774706 0.434384\nvn 0.095982 0.911911 0.399007\nvn 0.459501 0.774706 0.434384\nvn 0.399772 0.677101 0.617832\nvn 0.686100 0.427878 0.588377\nvn 0.686100 0.427878 0.588377\nvn 0.752979 0.519321 0.404140\nvn 0.459501 0.774706 0.434384\nvn 0.752979 0.519321 0.404140\nvn 0.686100 0.427878 0.588377\nvn 0.860467 0.101325 0.499330\nvn 0.860467 0.101325 0.499330\nvn 0.931670 0.184644 0.312886\nvn 0.752979 0.519321 0.404140\nvn 0.931670 0.184644 0.312886\nvn 0.860467 0.101325 0.499330\nvn 0.896235 -0.252884 0.364433\nvn 0.896235 -0.252884 0.364433\nvn 0.968369 -0.178322 0.174538\nvn 0.931670 0.184644 0.312886\nvn 0.968369 -0.178322 0.174538\nvn 0.896235 -0.252884 0.364433\nvn 0.788126 -0.580718 0.204020\nvn 0.788126 -0.580718 0.204020\nvn 0.857526 -0.514338 0.010254\nvn 0.968369 -0.178322 0.174538\nvn 0.857526 -0.514338 0.010254\nvn 0.788126 -0.580718 0.204020\nvn 0.552366 -0.832500 0.042849\nvn 0.552366 -0.832500 0.042849\nvn 0.615967 -0.772347 -0.155129\nvn 0.857526 -0.514338 0.010254\nvn 0.615967 -0.772347 -0.155129\nvn 0.552366 -0.832500 0.042849\nvn 0.225017 -0.969712 -0.095006\nvn 0.225017 -0.969712 -0.095006\nvn 0.280500 -0.912974 -0.296308\nvn 0.615967 -0.772347 -0.155129\nvn -0.226180 -0.366691 0.902430\nvn -0.226180 -0.366691 0.902430\nvn -0.226084 -0.366715 0.902444\nvn -0.226084 -0.366715 0.902444\nvn -0.226084 -0.366715 0.902444\nvn -0.226180 -0.366691 0.902430\nvn -0.226084 -0.366715 0.902444\nvn -0.226084 -0.366715 0.902444\nvn -0.226150 -0.366631 0.902462\nvn -0.226150 -0.366631 0.902462\nvn -0.226150 -0.366631 0.902462\nvn -0.226084 -0.366715 0.902444\nvn -0.226150 -0.366631 0.902462\nvn -0.226150 -0.366631 0.902462\nvn -0.226146 -0.366747 0.902416\nvn -0.226146 -0.366747 0.902416\nvn -0.226148 -0.366720 0.902426\nvn -0.226150 -0.366631 0.902462\nvn -0.226148 -0.366720 0.902426\nvn -0.226146 -0.366747 0.902416\nvn -0.226117 -0.366597 0.902484\nvn -0.226117 -0.366597 0.902484\nvn -0.226148 -0.366568 0.902488\nvn -0.226148 -0.366720 0.902426\nvn -0.226148 -0.366568 0.902488\nvn -0.226117 -0.366597 0.902484\nvn -0.226117 -0.366597 0.902484\nvn -0.226117 -0.366597 0.902484\nvn -0.226146 -0.366595 0.902478\nvn -0.226148 -0.366568 0.902488\nvn -0.226146 -0.366595 0.902478\nvn -0.226117 -0.366597 0.902484\nvn -0.225963 -0.366626 0.902511\nvn -0.225963 -0.366626 0.902511\nvn -0.225992 -0.366623 0.902505\nvn -0.226146 -0.366595 0.902478\nvn -0.225992 -0.366623 0.902505\nvn -0.225963 -0.366626 0.902511\nvn -0.225993 -0.366686 0.902479\nvn -0.225993 -0.366686 0.902479\nvn -0.226054 -0.366655 0.902476\nvn -0.225992 -0.366623 0.902505\nvn -0.226054 -0.366655 0.902476\nvn -0.225993 -0.366686 0.902479\nvn -0.226178 -0.366628 0.902456\nvn -0.226178 -0.366628 0.902456\nvn -0.226178 -0.366628 0.902456\nvn -0.226054 -0.366655 0.902476\nvn -0.226178 -0.366628 0.902456\nvn -0.226178 -0.366628 0.902456\nvn -0.226151 -0.366694 0.902436\nvn -0.226151 -0.366694 0.902436\nvn -0.226144 -0.366684 0.902442\nvn -0.226178 -0.366628 0.902456\nvn -0.226144 -0.366684 0.902442\nvn -0.226151 -0.366694 0.902436\nvn -0.226176 -0.366655 0.902446\nvn -0.226176 -0.366655 0.902446\nvn -0.226176 -0.366655 0.902446\nvn -0.226144 -0.366684 0.902442\nvn -0.226176 -0.366655 0.902446\nvn -0.226176 -0.366655 0.902446\nvn -0.226114 -0.366623 0.902474\nvn -0.226114 -0.366623 0.902474\nvn -0.226147 -0.366657 0.902452\nvn -0.226176 -0.366655 0.902446\nvn -0.226147 -0.366657 0.902452\nvn -0.226114 -0.366623 0.902474\nvn -0.226087 -0.366689 0.902454\nvn -0.226087 -0.366689 0.902454\nvn -0.226119 -0.366723 0.902433\nvn -0.226147 -0.366657 0.902452\nvn -0.226119 -0.366723 0.902433\nvn -0.226087 -0.366689 0.902454\nvn -0.226114 -0.366776 0.902412\nvn -0.226114 -0.366776 0.902412\nvn -0.226149 -0.366783 0.902400\nvn -0.226119 -0.366723 0.902433\nvn -0.226149 -0.366783 0.902400\nvn -0.226114 -0.366776 0.902412\nvn -0.226178 -0.366781 0.902394\nvn -0.226178 -0.366781 0.902394\nvn -0.226143 -0.366773 0.902406\nvn -0.226149 -0.366783 0.902400\nvn -0.226143 -0.366773 0.902406\nvn -0.226178 -0.366781 0.902394\nvn -0.226116 -0.366686 0.902448\nvn -0.226116 -0.366686 0.902448\nvn -0.226118 -0.366660 0.902458\nvn -0.226143 -0.366773 0.902406\nvn -0.226118 -0.366660 0.902458\nvn -0.226116 -0.366686 0.902448\nvn -0.226180 -0.366691 0.902430\nvn -0.226180 -0.366691 0.902430\nvn -0.226180 -0.366691 0.902430\nvn -0.226118 -0.366660 0.902458\nvn -0.956389 -0.291919 -0.010193\nvn -0.948046 -0.215740 -0.233807\nvn -0.984590 0.146127 -0.096075\nvn -0.984590 0.146127 -0.096075\nvn -0.991241 0.052829 0.121040\nvn -0.956389 -0.291919 -0.010193\nvn -0.991241 0.052829 0.121040\nvn -0.984590 0.146127 -0.096075\nvn -0.874117 0.480992 0.067571\nvn -0.874117 0.480992 0.067571\nvn -0.885990 0.371749 0.277171\nvn -0.991241 0.052829 0.121040\nvn -0.885990 0.371749 0.277171\nvn -0.874117 0.480992 0.067571\nvn -0.633395 0.738106 0.232403\nvn -0.633395 0.738106 0.232403\nvn -0.656715 0.616795 0.433924\nvn -0.885990 0.371749 0.277171\nvn -0.656715 0.616795 0.433924\nvn -0.633395 0.738106 0.232403\nvn -0.299085 0.878240 0.373153\nvn -0.299085 0.878240 0.373153\nvn -0.338218 0.750231 0.568121\nvn -0.656715 0.616795 0.433924\nvn -0.338218 0.750231 0.568121\nvn -0.299085 0.878240 0.373153\nvn 0.078037 0.880173 0.468194\nvn 0.078037 0.880173 0.468194\nvn 0.021027 0.751902 0.658940\nvn -0.338218 0.750231 0.568121\nvn -0.948046 -0.215740 -0.233807\nvn -0.956389 -0.291919 -0.010193\nvn -0.786765 -0.609599 -0.096900\nvn -0.786765 -0.609599 -0.096900\nvn -0.770018 -0.549146 -0.324824\nvn -0.948046 -0.215740 -0.233807\nvn -0.770018 -0.549146 -0.324824\nvn -0.786765 -0.609599 -0.096900\nvn -0.508149 -0.852073 -0.125526\nvn -0.508149 -0.852073 -0.125526\nvn -0.477500 -0.803656 -0.355149\nvn -0.770018 -0.549146 -0.324824\nvn -0.477500 -0.803656 -0.355149\nvn -0.508149 -0.852073 -0.125526\nvn -0.162973 -0.982325 -0.092077\nvn -0.162973 -0.982325 -0.092077\nvn -0.115149 -0.940364 -0.320088\nvn -0.477500 -0.803656 -0.355149\nvn -0.115149 -0.940364 -0.320088\nvn -0.162973 -0.982325 -0.092077\nvn 0.196175 -0.980568 -0.001312\nvn 0.196175 -0.980568 -0.001312\nvn 0.261855 -0.938589 -0.224683\nvn -0.115149 -0.940364 -0.320088\nvn 0.261855 -0.938589 -0.224683\nvn 0.196175 -0.980568 -0.001312\nvn 0.514637 -0.847078 0.132695\nvn 0.514637 -0.847078 0.132695\nvn 0.596195 -0.798415 -0.084172\nvn 0.261855 -0.938589 -0.224683\nvn 0.596195 -0.798415 -0.084172\nvn 0.514637 -0.847078 0.132695\nvn 0.743974 -0.602119 0.289752\nvn 0.743974 -0.602119 0.289752\nvn 0.836958 -0.541258 0.080876\nvn 0.596195 -0.798415 -0.084172\nvn 0.836958 -0.541258 0.080876\nvn 0.743974 -0.602119 0.289752\nvn 0.849161 -0.283094 0.445852\nvn 0.849161 -0.283094 0.445852\nvn 0.947375 -0.206401 0.244702\nvn 0.836958 -0.541258 0.080876\nvn 0.947375 -0.206401 0.244702\nvn 0.849161 -0.283094 0.445852\nvn 0.814399 0.061649 0.577022\nvn 0.814399 0.061649 0.577022\nvn 0.910837 0.155311 0.382433\nvn 0.947375 -0.206401 0.244702\nvn 0.910837 0.155311 0.382433\nvn 0.814399 0.061649 0.577022\nvn 0.644770 0.379349 0.663601\nvn 0.644770 0.379349 0.663601\nvn 0.732744 0.488954 0.473297\nvn 0.910837 0.155311 0.382433\nvn 0.732744 0.488954 0.473297\nvn 0.644770 0.379349 0.663601\nvn 0.366177 0.621719 0.692373\nvn 0.366177 0.621719 0.692373\nvn 0.440331 0.743448 0.503383\nvn 0.732744 0.488954 0.473297\nvn 0.440331 0.743448 0.503383\nvn 0.366177 0.621719 0.692373\nvn 0.021027 0.751902 0.658940\nvn 0.021027 0.751902 0.658940\nvn 0.078037 0.880173 0.468194\nvn 0.440331 0.743448 0.503383\nvn -0.948027 -0.036227 0.316121\nvn -0.916555 -0.347829 0.197338\nvn -0.956389 -0.291919 -0.010193\nvn -0.956389 -0.291919 -0.010193\nvn -0.991241 0.052829 0.121040\nvn -0.948027 -0.036227 0.316121\nvn -0.948027 -0.036227 0.316121\nvn -0.991241 0.052829 0.121040\nvn -0.885990 0.371749 0.277171\nvn -0.885990 0.371749 0.277171\nvn -0.852771 0.252028 0.457454\nvn -0.948027 -0.036227 0.316121\nvn -0.645608 0.473692 0.599005\nvn -0.852771 0.252028 0.457454\nvn -0.885990 0.371749 0.277171\nvn -0.885990 0.371749 0.277171\nvn -0.656715 0.616795 0.433924\nvn -0.645608 0.473692 0.599005\nvn -0.645608 0.473692 0.599005\nvn -0.656715 0.616795 0.433924\nvn -0.338218 0.750231 0.568121\nvn -0.338218 0.750231 0.568121\nvn -0.357628 0.594338 0.720323\nvn -0.645608 0.473692 0.599005\nvn -0.956389 -0.291919 -0.010193\nvn -0.916555 -0.347829 0.197338\nvn -0.763191 -0.635133 0.118933\nvn -0.763191 -0.635133 0.118933\nvn -0.786765 -0.609599 -0.096900\nvn -0.956389 -0.291919 -0.010193\nvn -0.508149 -0.852073 -0.125526\nvn -0.786765 -0.609599 -0.096900\nvn -0.763191 -0.635133 0.118933\nvn -0.763191 -0.635133 0.118933\nvn -0.511259 -0.854357 0.093206\nvn -0.508149 -0.852073 -0.125526\nvn -0.508149 -0.852073 -0.125526\nvn -0.511259 -0.854357 0.093206\nvn -0.199165 -0.972144 0.123570\nvn -0.199165 -0.972144 0.123570\nvn -0.162973 -0.982325 -0.092077\nvn -0.508149 -0.852073 -0.125526\nvn 0.196175 -0.980568 -0.001312\nvn -0.162973 -0.982325 -0.092077\nvn -0.199165 -0.972144 0.123570\nvn -0.199165 -0.972144 0.123570\nvn 0.125523 -0.970584 0.205452\nvn 0.196175 -0.980568 -0.001312\nvn 0.196175 -0.980568 -0.001312\nvn 0.125523 -0.970584 0.205452\nvn 0.413470 -0.849828 0.326857\nvn 0.413470 -0.849828 0.326857\nvn 0.514637 -0.847078 0.132695\nvn 0.196175 -0.980568 -0.001312\nvn 0.743974 -0.602119 0.289752\nvn 0.514637 -0.847078 0.132695\nvn 0.413470 -0.849828 0.326857\nvn 0.413470 -0.849828 0.326857\nvn 0.620820 -0.628449 0.468652\nvn 0.743974 -0.602119 0.289752\nvn 0.743974 -0.602119 0.289752\nvn 0.620820 -0.628449 0.468652\nvn 0.715917 -0.339952 0.609832\nvn 0.715917 -0.339952 0.609832\nvn 0.849161 -0.283094 0.445852\nvn 0.743974 -0.602119 0.289752\nvn 0.814399 0.061649 0.577022\nvn 0.849161 -0.283094 0.445852\nvn 0.715917 -0.339952 0.609832\nvn 0.715917 -0.339952 0.609832\nvn 0.684637 -0.028169 0.728340\nvn 0.814399 0.061649 0.577022\nvn 0.814399 0.061649 0.577022\nvn 0.684637 -0.028169 0.728340\nvn 0.531159 0.258988 0.806719\nvn 0.531159 0.258988 0.806719\nvn 0.644770 0.379349 0.663601\nvn 0.814399 0.061649 0.577022\nvn 0.366177 0.621719 0.692373\nvn 0.644770 0.379349 0.663601\nvn 0.531159 0.258988 0.806719\nvn 0.531159 0.258988 0.806719\nvn 0.279251 0.477962 0.832809\nvn 0.366177 0.621719 0.692373\nvn 0.366177 0.621719 0.692373\nvn 0.279251 0.477962 0.832809\nvn -0.032869 0.595703 0.802532\nvn -0.032869 0.595703 0.802532\nvn 0.021027 0.751902 0.658940\nvn 0.366177 0.621719 0.692373\nvn -0.338218 0.750231 0.568121\nvn 0.021027 0.751902 0.658940\nvn -0.032869 0.595703 0.802532\nvn -0.032869 0.595703 0.802532\nvn -0.357628 0.594338 0.720323\nvn -0.338218 0.750231 0.568121\nvn -0.226147 -0.366657 0.902452\nvn -0.225354 -0.366993 0.902514\nvn -0.226087 -0.366689 0.902454\nvn -0.226147 -0.366657 0.902452\nvn -0.226087 -0.366689 0.902454\nvn -0.226113 -0.366713 0.902438\nvn -0.226087 -0.366689 0.902454\nvn -0.226087 -0.366689 0.902454\nvn -0.226113 -0.366713 0.902438\nvn -0.226087 -0.366689 0.902454\nvn -0.226087 -0.366689 0.902454\nvn -0.226087 -0.366689 0.902454\nvn -0.226087 -0.366689 0.902454\nvn -0.226054 -0.366655 0.902476\nvn -0.226087 -0.366689 0.902454\nvn -0.226087 -0.366689 0.902454\nvn -0.226392 -0.366720 0.902365\nvn -0.226054 -0.366655 0.902476\nvn -0.226054 -0.366655 0.902476\nvn -0.225932 -0.366503 0.902569\nvn -0.226087 -0.366689 0.902454\nvn -0.226087 -0.366689 0.902454\nvn -0.226055 -0.366718 0.902451\nvn -0.226087 -0.366689 0.902454\nvn -0.226087 -0.366689 0.902454\nvn -0.226117 -0.366597 0.902484\nvn -0.226055 -0.366718 0.902451\nvn -0.226055 -0.366718 0.902451\nvn -0.226085 -0.366778 0.902418\nvn -0.226087 -0.366689 0.902454\nvn -0.226087 -0.366689 0.902454\nvn -0.226058 -0.366691 0.902461\nvn -0.226113 -0.366713 0.902438\nvn -0.226087 -0.366689 0.902454\nvn -0.225938 -0.366665 0.902501\nvn -0.226058 -0.366691 0.902461\nvn -0.226058 -0.366691 0.902461\nvn -0.226084 -0.366715 0.902444\nvn -0.226113 -0.366713 0.902438\nvn -0.226147 -0.366657 0.902452\nvn -0.226113 -0.366713 0.902438\nvn -0.226022 -0.367141 0.902287\nvn -0.753794 0.574798 0.318437\nvn -0.684210 0.670476 0.286911\nvn -0.611157 0.703173 0.363367\nvn -0.611157 0.703173 0.363367\nvn -0.682442 0.611148 0.400962\nvn -0.753794 0.574798 0.318437\nvn -0.684210 0.670476 0.286911\nvn -0.753794 0.574798 0.318437\nvn -0.782852 0.555177 0.280930\nvn -0.782852 0.555177 0.280930\nvn -0.715652 0.651683 0.251298\nvn -0.684210 0.670476 0.286911\nvn -0.750372 0.614043 0.244732\nvn -0.782852 0.555177 0.280930\nvn -0.753794 0.574798 0.318437\nvn -0.753794 0.574798 0.318437\nvn -0.723279 0.631507 0.279405\nvn -0.750372 0.614043 0.244732\nvn -0.723279 0.631507 0.279405\nvn -0.753794 0.574798 0.318437\nvn -0.682442 0.611148 0.400962\nvn -0.682442 0.611148 0.400962\nvn -0.651327 0.670127 0.355954\nvn -0.723279 0.631507 0.279405\nvn -0.682442 0.611148 0.400962\nvn -0.611157 0.703173 0.363367\nvn -0.548551 0.722083 0.421530\nvn -0.548551 0.722083 0.421530\nvn -0.594945 0.645851 0.478452\nvn -0.682442 0.611148 0.400962\nvn -0.651327 0.670127 0.355954\nvn -0.682442 0.611148 0.400962\nvn -0.594945 0.645851 0.478452\nvn -0.594945 0.645851 0.478452\nvn -0.575620 0.693759 0.432852\nvn -0.651327 0.670127 0.355954\nvn -0.711953 0.583008 0.391440\nvn -0.651327 0.670127 0.355954\nvn -0.575620 0.693759 0.432852\nvn -0.723279 0.631507 0.279405\nvn -0.651327 0.670127 0.355954\nvn -0.711953 0.583008 0.391440\nvn -0.575620 0.693759 0.432852\nvn -0.642126 0.602665 0.473782\nvn -0.711953 0.583008 0.391440\nvn -0.642126 0.602665 0.473782\nvn -0.575620 0.693759 0.432852\nvn -0.702897 0.572182 0.422544\nvn -0.642126 0.602665 0.473782\nvn -0.702897 0.572182 0.422544\nvn -0.658727 0.586274 0.471552\nvn -0.642126 0.602665 0.473782\nvn -0.658727 0.586274 0.471552\nvn -0.637371 0.580940 0.506228\nvn -0.575620 0.693759 0.432852\nvn -0.594945 0.645851 0.478452\nvn -0.684394 0.625766 0.374196\nvn -0.684394 0.625766 0.374196\nvn -0.702897 0.572182 0.422544\nvn -0.575620 0.693759 0.432852\nvn -0.684394 0.625766 0.374196\nvn -0.594945 0.645851 0.478452\nvn -0.548551 0.722083 0.421530\nvn -0.750372 0.614043 0.244732\nvn -0.723279 0.631507 0.279405\nvn -0.775800 0.547363 0.313891\nvn -0.711953 0.583008 0.391440\nvn -0.775800 0.547363 0.313891\nvn -0.723279 0.631507 0.279405\nvn -0.775800 0.547363 0.313891\nvn -0.799332 0.522491 0.296770\nvn -0.750372 0.614043 0.244732\nvn -0.684394 0.625766 0.374196\nvn -0.548551 0.722083 0.421530\nvn -0.530675 0.736102 0.420163\nvn -0.684394 0.625766 0.374196\nvn -0.530675 0.736102 0.420163\nvn -0.604789 0.687555 0.401870\nvn -0.750372 0.614043 0.244732\nvn -0.799332 0.522491 0.296770\nvn -0.798382 0.510891 0.318712\nvn -0.762339 0.603822 0.232892\nvn -0.798382 0.510891 0.318712\nvn -0.835374 0.374929 0.401969\nvn -0.835374 0.374929 0.401969\nvn -0.771646 0.466699 0.432151\nvn -0.762339 0.603822 0.232892\nvn -0.762339 0.603822 0.232892\nvn -0.771646 0.466699 0.432151\nvn -0.654099 0.683520 0.323967\nvn -0.654099 0.683520 0.323967\nvn -0.795357 0.546047 0.263135\nvn -0.762339 0.603822 0.232892\nvn -0.750372 0.614043 0.244732\nvn -0.762339 0.603822 0.232892\nvn -0.795357 0.546047 0.263135\nvn -0.798382 0.510891 0.318712\nvn -0.762339 0.603822 0.232892\nvn -0.750372 0.614043 0.244732\nvn -0.795357 0.546047 0.263135\nvn -0.782852 0.555177 0.280930\nvn -0.750372 0.614043 0.244732\nvn -0.782852 0.555177 0.280930\nvn -0.795357 0.546047 0.263135\nvn -0.718785 0.651032 0.243939\nvn -0.718785 0.651032 0.243939\nvn -0.715652 0.651683 0.251298\nvn -0.782852 0.555177 0.280930\nvn -0.795357 0.546047 0.263135\nvn -0.654099 0.683520 0.323967\nvn -0.633831 0.747761 0.197767\nvn -0.633831 0.747761 0.197767\nvn -0.718785 0.651032 0.243939\nvn -0.795357 0.546047 0.263135\nvn -0.461755 -0.774120 0.433037\nvn -0.458761 -0.776342 0.432240\nvn -0.389271 -0.715429 0.580198\nvn -0.389271 -0.715429 0.580198\nvn -0.413016 -0.734231 0.538816\nvn -0.461755 -0.774120 0.433037\nvn -0.413016 -0.734231 0.538816\nvn -0.389271 -0.715429 0.580198\nvn -0.353104 -0.674865 0.647978\nvn -0.353104 -0.674865 0.647978\nvn -0.353689 -0.669229 0.653481\nvn -0.413016 -0.734231 0.538816\nvn -0.458761 -0.776342 0.432240\nvn -0.461755 -0.774120 0.433037\nvn -0.472101 -0.804028 0.361469\nvn -0.472101 -0.804028 0.361469\nvn -0.468596 -0.808676 0.355613\nvn -0.458761 -0.776342 0.432240\nvn -0.468596 -0.808676 0.355613\nvn -0.472101 -0.804028 0.361469\nvn -0.488035 -0.823626 0.288896\nvn -0.488035 -0.823626 0.288896\nvn -0.489252 -0.825482 0.281447\nvn -0.468596 -0.808676 0.355613\nvn -0.525016 -0.826757 0.202066\nvn -0.489252 -0.825482 0.281447\nvn -0.488035 -0.823626 0.288896\nvn -0.488035 -0.823626 0.288896\nvn -0.518760 -0.828680 0.210184\nvn -0.525016 -0.826757 0.202066\nvn -0.525016 -0.826757 0.202066\nvn -0.518760 -0.828680 0.210184\nvn -0.611143 -0.789405 0.057834\nvn -0.611143 -0.789405 0.057834\nvn -0.643708 -0.765053 -0.018281\nvn -0.525016 -0.826757 0.202066\nvn -0.643708 -0.765053 -0.018281\nvn -0.611143 -0.789405 0.057834\nvn -0.691230 -0.713143 -0.116736\nvn -0.691230 -0.713143 -0.116736\nvn -0.691845 -0.706189 -0.150491\nvn -0.643708 -0.765053 -0.018281\nvn -0.728618 -0.043460 -0.683541\nvn -0.678464 0.004578 -0.734619\nvn -0.702282 -0.017610 -0.711681\nvn -0.702282 -0.017610 -0.711681\nvn -0.745616 -0.060978 -0.663580\nvn -0.728618 -0.043460 -0.683541\nvn -0.394337 0.673220 -0.625519\nvn -0.250653 0.755834 -0.604887\nvn -0.203780 0.828759 -0.521183\nvn -0.203780 0.828759 -0.521183\nvn -0.303638 0.776201 -0.552554\nvn -0.394337 0.673220 -0.625519\nvn -0.303638 0.776201 -0.552554\nvn -0.203780 0.828759 -0.521183\nvn -0.099980 0.925393 -0.365585\nvn -0.099980 0.925393 -0.365585\nvn -0.113350 0.922425 -0.369166\nvn -0.303638 0.776201 -0.552554\nvn -0.113350 0.922425 -0.369166\nvn -0.099980 0.925393 -0.365585\nvn -0.032778 0.969006 -0.244853\nvn -0.032778 0.969006 -0.244853\nvn -0.039309 0.967634 -0.249279\nvn -0.113350 0.922425 -0.369166\nvn -0.039309 0.967634 -0.249279\nvn -0.032778 0.969006 -0.244853\nvn 0.002716 0.983359 -0.181650\nvn 0.002716 0.983359 -0.181650\nvn 0.003692 0.983221 -0.182380\nvn -0.039309 0.967634 -0.249279\nvn 0.003692 0.983221 -0.182380\nvn 0.002716 0.983359 -0.181650\nvn 0.020417 0.985033 -0.171151\nvn 0.020417 0.985033 -0.171151\nvn 0.021119 0.985008 -0.171213\nvn 0.003692 0.983221 -0.182380\nvn 0.021119 0.985008 -0.171213\nvn 0.020417 0.985033 -0.171151\nvn 0.038057 0.990340 -0.133337\nvn 0.038057 0.990340 -0.133337\nvn 0.052217 0.991248 -0.121251\nvn 0.021119 0.985008 -0.171213\nvn 0.052217 0.991248 -0.121251\nvn 0.038057 0.990340 -0.133337\nvn 0.119359 0.992842 -0.004334\nvn 0.119359 0.992842 -0.004334\nvn 0.156931 0.986755 0.041079\nvn 0.052217 0.991248 -0.121251\nvn 0.156931 0.986755 0.041079\nvn 0.119359 0.992842 -0.004334\nvn 0.221933 0.956065 0.191536\nvn 0.221933 0.956065 0.191536\nvn 0.266891 0.933708 0.238661\nvn 0.156931 0.986755 0.041079\nvn 0.266891 0.933708 0.238661\nvn 0.221933 0.956065 0.191536\nvn 0.349904 0.781204 0.516998\nvn 0.349904 0.781204 0.516998\nvn 0.363789 0.776562 0.514402\nvn 0.266891 0.933708 0.238661\nvn 0.363789 0.776562 0.514402\nvn 0.349904 0.781204 0.516998\nvn 0.374861 0.632683 0.677637\nvn 0.374861 0.632683 0.677637\nvn 0.368677 0.639325 0.674789\nvn 0.363789 0.776562 0.514402\nvn 0.153146 0.171366 0.973232\nvn 0.144785 0.117806 0.982425\nvn 0.147529 0.135108 0.979786\nvn 0.147529 0.135108 0.979786\nvn 0.155401 0.186133 0.970157\nvn 0.153146 0.171366 0.973232\nvn -0.100225 -0.245312 0.964250\nvn -0.108009 -0.274371 0.955539\nvn -0.105779 -0.266034 0.958142\nvn -0.105779 -0.266034 0.958142\nvn -0.097846 -0.236435 0.966708\nvn -0.100225 -0.245312 0.964250\nvn -0.684394 0.625766 0.374196\nvn -0.731913 0.614596 0.294236\nvn -0.789202 0.497283 0.360373\nvn -0.789202 0.497283 0.360373\nvn -0.702897 0.572182 0.422544\nvn -0.684394 0.625766 0.374196\nvn -0.702897 0.572182 0.422544\nvn -0.789202 0.497283 0.360373\nvn -0.757004 0.465421 0.458615\nvn -0.757004 0.465421 0.458615\nvn -0.658727 0.586274 0.471552\nvn -0.702897 0.572182 0.422544\nvn -0.731913 0.614596 0.294236\nvn -0.684394 0.625766 0.374196\nvn -0.604789 0.687555 0.401870\nvn -0.604789 0.687555 0.401870\nvn -0.643472 0.701825 0.305591\nvn -0.731913 0.614596 0.294236\nvn -0.643472 0.701825 0.305591\nvn -0.604789 0.687555 0.401870\nvn -0.530675 0.736102 0.420163\nvn -0.530675 0.736102 0.420163\nvn -0.556732 0.762950 0.328570\nvn -0.643472 0.701825 0.305591\nvn -0.658727 0.586274 0.471552\nvn -0.757004 0.465421 0.458615\nvn -0.715521 0.460015 0.525753\nvn -0.715521 0.460015 0.525753\nvn -0.637371 0.580940 0.506228\nvn -0.658727 0.586274 0.471552\nvn -0.637371 0.580940 0.506228\nvn -0.715521 0.460015 0.525753\nvn -0.690555 0.475883 0.544673\nvn -0.690555 0.475883 0.544673\nvn -0.642126 0.602665 0.473782\nvn -0.637371 0.580940 0.506228\nvn -0.711953 0.583008 0.391440\nvn -0.642126 0.602665 0.473782\nvn -0.690555 0.475883 0.544673\nvn -0.690555 0.475883 0.544673\nvn -0.756678 0.465976 0.458591\nvn -0.711953 0.583008 0.391440\nvn -0.711953 0.583008 0.391440\nvn -0.756678 0.465976 0.458591\nvn -0.823695 0.429900 0.369746\nvn -0.823695 0.429900 0.369746\nvn -0.775800 0.547363 0.313891\nvn -0.711953 0.583008 0.391440\nvn -0.775800 0.547363 0.313891\nvn -0.823695 0.429900 0.369746\nvn -0.840086 0.406309 0.359400\nvn -0.840086 0.406309 0.359400\nvn -0.799332 0.522491 0.296770\nvn -0.775800 0.547363 0.313891\nvn -0.799332 0.522491 0.296770\nvn -0.840086 0.406309 0.359400\nvn -0.825281 0.398769 0.399868\nvn -0.825281 0.398769 0.399868\nvn -0.798382 0.510891 0.318712\nvn -0.799332 0.522491 0.296770\nvn -0.798382 0.510891 0.318712\nvn -0.825281 0.398769 0.399868\nvn -0.808341 0.365380 0.461608\nvn -0.808341 0.365380 0.461608\nvn -0.835374 0.374929 0.401969\nvn -0.798382 0.510891 0.318712\nvn -0.835374 0.374929 0.401969\nvn -0.808341 0.365380 0.461608\nvn -0.715348 0.486817 0.501284\nvn -0.715348 0.486817 0.501284\nvn -0.771646 0.466699 0.432151\nvn -0.835374 0.374929 0.401969\nvn -0.654099 0.683520 0.323967\nvn -0.771646 0.466699 0.432151\nvn -0.715348 0.486817 0.501284\nvn -0.715348 0.486817 0.501284\nvn -0.579769 0.706636 0.405627\nvn -0.654099 0.683520 0.323967\nvn -0.654099 0.683520 0.323967\nvn -0.579769 0.706636 0.405627\nvn -0.551550 0.802573 0.227310\nvn -0.551550 0.802573 0.227310\nvn -0.633831 0.747761 0.197767\nvn -0.654099 0.683520 0.323967\nvn -0.633831 0.747761 0.197767\nvn -0.551550 0.802573 0.227310\nvn -0.616582 0.760175 0.204846\nvn -0.616582 0.760175 0.204846\nvn -0.718785 0.651032 0.243939\nvn -0.633831 0.747761 0.197767\nvn -0.718785 0.651032 0.243939\nvn -0.616582 0.760175 0.204846\nvn -0.628453 0.751568 0.200481\nvn -0.628453 0.751568 0.200481\nvn -0.715652 0.651683 0.251298\nvn -0.718785 0.651032 0.243939\nvn -0.715652 0.651683 0.251298\nvn -0.628453 0.751568 0.200481\nvn -0.609197 0.760695 0.224104\nvn -0.609197 0.760695 0.224104\nvn -0.684210 0.670476 0.286911\nvn -0.715652 0.651683 0.251298\nvn -0.611157 0.703173 0.363367\nvn -0.684210 0.670476 0.286911\nvn -0.609197 0.760695 0.224104\nvn -0.609197 0.760695 0.224104\nvn -0.545745 0.786968 0.287827\nvn -0.611157 0.703173 0.363367\nvn -0.548551 0.722083 0.421530\nvn -0.611157 0.703173 0.363367\nvn -0.545745 0.786968 0.287827\nvn -0.545745 0.786968 0.287827\nvn -0.494236 0.797266 0.346551\nvn -0.548551 0.722083 0.421530\nvn -0.548551 0.722083 0.421530\nvn -0.494236 0.797266 0.346551\nvn -0.556732 0.762950 0.328570\nvn -0.556732 0.762950 0.328570\nvn -0.530675 0.736102 0.420163\nvn -0.548551 0.722083 0.421530\nvn 0.421470 -0.625277 0.656804\nvn 0.292584 -0.856358 0.425494\nvn 0.470152 -0.835743 0.283708\nvn 0.470152 -0.835743 0.283708\nvn 0.609789 -0.585434 0.534252\nvn 0.421470 -0.625277 0.656804\nvn 0.421470 -0.625277 0.656804\nvn 0.609789 -0.585434 0.534252\nvn 0.636332 -0.258134 0.726945\nvn 0.636332 -0.258134 0.726945\nvn 0.445987 -0.323175 0.834658\nvn 0.421470 -0.625277 0.656804\nvn 0.470152 -0.835743 0.283708\nvn 0.292584 -0.856358 0.425494\nvn 0.078800 -0.981214 0.176094\nvn 0.078800 -0.981214 0.176094\nvn 0.238570 -0.971032 0.013459\nvn 0.470152 -0.835743 0.283708\nvn 0.362320 0.003998 0.932045\nvn 0.445987 -0.323175 0.834658\nvn 0.636332 -0.258134 0.726945\nvn 0.636332 -0.258134 0.726945\nvn 0.545706 0.096256 0.832430\nvn 0.362320 0.003998 0.932045\nvn 0.362320 0.003998 0.932045\nvn 0.545706 0.096256 0.832430\nvn 0.351705 0.423822 0.834673\nvn 0.351705 0.423822 0.834673\nvn 0.183297 0.306380 0.934095\nvn 0.362320 0.003998 0.932045\nvn -0.063968 0.537931 0.840559\nvn 0.183297 0.306380 0.934095\nvn 0.351705 0.423822 0.834673\nvn 0.351705 0.423822 0.834673\nvn 0.083867 0.674692 0.733319\nvn -0.063968 0.537931 0.840559\nvn -0.063968 0.537931 0.840559\nvn 0.083867 0.674692 0.733319\nvn -0.217023 0.810653 0.543823\nvn -0.217023 0.810653 0.543823\nvn -0.341757 0.663401 0.665659\nvn -0.063968 0.537931 0.840559\nvn -0.607726 0.663820 0.435904\nvn -0.341757 0.663401 0.665659\nvn -0.217023 0.810653 0.543823\nvn -0.217023 0.810653 0.543823\nvn -0.505158 0.811054 0.294970\nvn -0.607726 0.663820 0.435904\nvn -0.607726 0.663820 0.435904\nvn -0.505158 0.811054 0.294970\nvn -0.736707 0.675760 0.024721\nvn -0.736707 0.675760 0.024721\nvn -0.821430 0.538973 0.186443\nvn -0.607726 0.663820 0.435904\nvn -0.950391 0.307814 -0.044802\nvn -0.821430 0.538973 0.186443\nvn -0.736707 0.675760 0.024721\nvn -0.736707 0.675760 0.024721\nvn -0.876375 0.425430 -0.225777\nvn -0.950391 0.307814 -0.044802\nvn -0.950391 0.307814 -0.044802\nvn -0.876375 0.425430 -0.225777\nvn -0.902908 0.098149 -0.418478\nvn -0.902908 0.098149 -0.418478\nvn -0.974871 0.005768 -0.222698\nvn -0.950391 0.307814 -0.044802\nvn -0.891209 -0.321394 -0.320081\nvn -0.974871 0.005768 -0.222698\nvn -0.902908 0.098149 -0.418478\nvn -0.902908 0.098149 -0.418478\nvn -0.812276 -0.256211 -0.523989\nvn -0.891209 -0.321394 -0.320081\nvn -0.891209 -0.321394 -0.320081\nvn -0.812276 -0.256211 -0.523989\nvn -0.618287 -0.583801 -0.526211\nvn -0.618287 -0.583801 -0.526211\nvn -0.712161 -0.623778 -0.322067\nvn -0.891209 -0.321394 -0.320081\nvn -0.464872 -0.855368 -0.228560\nvn -0.712161 -0.623778 -0.322067\nvn -0.618287 -0.583801 -0.526211\nvn -0.618287 -0.583801 -0.526211\nvn -0.350426 -0.834681 -0.424864\nvn -0.464872 -0.855368 -0.228560\nvn -0.464872 -0.855368 -0.228560\nvn -0.350426 -0.834681 -0.424864\nvn -0.049532 -0.970652 -0.235331\nvn -0.049532 -0.970652 -0.235331\nvn -0.187110 -0.980873 -0.053652\nvn -0.464872 -0.855368 -0.228560\nvn 0.083378 -0.914253 -0.396470\nvn -0.049532 -0.970652 -0.235331\nvn -0.350426 -0.834681 -0.424864\nvn -0.049532 -0.970652 -0.235331\nvn 0.083378 -0.914253 -0.396470\nvn 0.378717 -0.914639 -0.141458\nvn 0.378717 -0.914639 -0.141458\nvn 0.238570 -0.971032 0.013459\nvn -0.049532 -0.970652 -0.235331\nvn -0.350426 -0.834681 -0.424864\nvn -0.224954 -0.774905 -0.590693\nvn 0.083378 -0.914253 -0.396470\nvn -0.224954 -0.774905 -0.590693\nvn -0.350426 -0.834681 -0.424864\nvn -0.618287 -0.583801 -0.526211\nvn -0.618287 -0.583801 -0.526211\nvn -0.499477 -0.517758 -0.694586\nvn -0.224954 -0.774905 -0.590693\nvn -0.499477 -0.517758 -0.694586\nvn -0.618287 -0.583801 -0.526211\nvn -0.812276 -0.256211 -0.523989\nvn -0.812276 -0.256211 -0.523989\nvn -0.698302 -0.182076 -0.692259\nvn -0.499477 -0.517758 -0.694586\nvn -0.698302 -0.182076 -0.692259\nvn -0.812276 -0.256211 -0.523989\nvn -0.902908 0.098149 -0.418478\nvn -0.902908 0.098149 -0.418478\nvn -0.791188 0.181103 -0.584143\nvn -0.698302 -0.182076 -0.692259\nvn -0.876375 0.425430 -0.225777\nvn -0.763985 0.516535 -0.386677\nvn -0.791188 0.181103 -0.584143\nvn -0.791188 0.181103 -0.584143\nvn -0.902908 0.098149 -0.418478\nvn -0.876375 0.425430 -0.225777\nvn -0.763985 0.516535 -0.386677\nvn -0.876375 0.425430 -0.225777\nvn -0.736707 0.675760 0.024721\nvn -0.736707 0.675760 0.024721\nvn -0.620843 0.773100 -0.129888\nvn -0.763985 0.516535 -0.386677\nvn -0.620843 0.773100 -0.129888\nvn -0.736707 0.675760 0.024721\nvn -0.505158 0.811054 0.294970\nvn -0.505158 0.811054 0.294970\nvn -0.383540 0.911743 0.147043\nvn -0.620843 0.773100 -0.129888\nvn -0.383540 0.911743 0.147043\nvn -0.505158 0.811054 0.294970\nvn -0.217023 0.810653 0.543823\nvn -0.217023 0.810653 0.543823\nvn -0.088230 0.911354 0.402056\nvn -0.383540 0.911743 0.147043\nvn -0.088230 0.911354 0.402056\nvn -0.217023 0.810653 0.543823\nvn 0.083867 0.674692 0.733319\nvn 0.083867 0.674692 0.733319\nvn 0.220109 0.771999 0.596296\nvn -0.088230 0.911354 0.402056\nvn 0.220109 0.771999 0.596296\nvn 0.083867 0.674692 0.733319\nvn 0.351705 0.423822 0.834673\nvn 0.351705 0.423822 0.834673\nvn 0.494623 0.514888 0.700170\nvn 0.220109 0.771999 0.596296\nvn 0.494623 0.514888 0.700170\nvn 0.351705 0.423822 0.834673\nvn 0.545706 0.096256 0.832430\nvn 0.545706 0.096256 0.832430\nvn 0.693462 0.179180 0.697857\nvn 0.494623 0.514888 0.700170\nvn 0.693462 0.179180 0.697857\nvn 0.545706 0.096256 0.832430\nvn 0.636332 -0.258134 0.726945\nvn 0.636332 -0.258134 0.726945\nvn 0.786363 -0.184001 0.589726\nvn 0.693462 0.179180 0.697857\nvn 0.786363 -0.184001 0.589726\nvn 0.636332 -0.258134 0.726945\nvn 0.609789 -0.585434 0.534252\nvn 0.609789 -0.585434 0.534252\nvn 0.759168 -0.519438 0.392234\nvn 0.786363 -0.184001 0.589726\nvn 0.759168 -0.519438 0.392234\nvn 0.609789 -0.585434 0.534252\nvn 0.470152 -0.835743 0.283708\nvn 0.470152 -0.835743 0.283708\nvn 0.616011 -0.775995 0.135508\nvn 0.759168 -0.519438 0.392234\nvn 0.616011 -0.775995 0.135508\nvn 0.470152 -0.835743 0.283708\nvn 0.238570 -0.971032 0.013459\nvn 0.238570 -0.971032 0.013459\nvn 0.378717 -0.914639 -0.141458\nvn 0.616011 -0.775995 0.135508\nvn -0.049532 -0.970652 -0.235331\nvn 0.238570 -0.971032 0.013459\nvn 0.078800 -0.981214 0.176094\nvn 0.078800 -0.981214 0.176094\nvn -0.187110 -0.980873 -0.053652\nvn -0.049532 -0.970652 -0.235331\nvn -0.608672 -0.365313 0.704319\nvn -0.608672 -0.365313 0.704319\nvn -0.608672 -0.365313 0.704319\nvn -0.608672 -0.365313 0.704319\nvn -0.608672 -0.365313 0.704319\nvn -0.608672 -0.365313 0.704319\nvn -0.608672 -0.365313 0.704319\nvn -0.608672 -0.365313 0.704319\nvn -0.608672 -0.365313 0.704319\nvn -0.608672 -0.365313 0.704319\nvn -0.608672 -0.365313 0.704319\nvn -0.608672 -0.365313 0.704319\nvn -0.608672 -0.365313 0.704319\nvn -0.608672 -0.365313 0.704319\nvn -0.608679 -0.365287 0.704327\nvn -0.608679 -0.365287 0.704327\nvn -0.608679 -0.365287 0.704327\nvn -0.608672 -0.365313 0.704319\nvn -0.608679 -0.365287 0.704327\nvn -0.608679 -0.365287 0.704327\nvn -0.608646 -0.365346 0.704324\nvn -0.608646 -0.365346 0.704324\nvn -0.608639 -0.365373 0.704316\nvn -0.608679 -0.365287 0.704327\nvn -0.608639 -0.365373 0.704316\nvn -0.608646 -0.365346 0.704324\nvn -0.608672 -0.365313 0.704319\nvn -0.608672 -0.365313 0.704319\nvn -0.608646 -0.365286 0.704355\nvn -0.608639 -0.365373 0.704316\nvn -0.608646 -0.365286 0.704355\nvn -0.608672 -0.365313 0.704319\nvn -0.608679 -0.365287 0.704327\nvn -0.608679 -0.365287 0.704327\nvn -0.608646 -0.365286 0.704355\nvn -0.608646 -0.365286 0.704355\nvn -0.608646 -0.365286 0.704355\nvn -0.608679 -0.365287 0.704327\nvn -0.608646 -0.365286 0.704355\nvn -0.608646 -0.365286 0.704355\nvn -0.608646 -0.365286 0.704355\nvn -0.608646 -0.365286 0.704355\nvn -0.608646 -0.365286 0.704355\nvn -0.608646 -0.365286 0.704355\nvn -0.608646 -0.365286 0.704355\nvn -0.608646 -0.365286 0.704355\nvn -0.608646 -0.365286 0.704355\nvn -0.608646 -0.365286 0.704355\nvn -0.608646 -0.365286 0.704355\nvn -0.608646 -0.365286 0.704355\nvn -0.608640 -0.365312 0.704347\nvn -0.608640 -0.365312 0.704347\nvn -0.608646 -0.365286 0.704355\nvn -0.608646 -0.365286 0.704355\nvn -0.608646 -0.365286 0.704355\nvn -0.608640 -0.365312 0.704347\nvn -0.608672 -0.365313 0.704319\nvn -0.608672 -0.365313 0.704319\nvn -0.608672 -0.365313 0.704319\nvn -0.608646 -0.365286 0.704355\nvn -0.608672 -0.365313 0.704319\nvn -0.608672 -0.365313 0.704319\nvn -0.608679 -0.365287 0.704327\nvn -0.608679 -0.365287 0.704327\nvn -0.608679 -0.365287 0.704327\nvn -0.608672 -0.365313 0.704319\nvn -0.608679 -0.365287 0.704327\nvn -0.608679 -0.365287 0.704327\nvn -0.608678 -0.365347 0.704295\nvn -0.608678 -0.365347 0.704295\nvn -0.608665 -0.365340 0.704311\nvn -0.608679 -0.365287 0.704327\nvn -0.608665 -0.365340 0.704311\nvn -0.608678 -0.365347 0.704295\nvn -0.608646 -0.365286 0.704355\nvn -0.608646 -0.365286 0.704355\nvn -0.608646 -0.365286 0.704355\nvn -0.608665 -0.365340 0.704311\nvn -0.608646 -0.365286 0.704355\nvn -0.608646 -0.365286 0.704355\nvn -0.608679 -0.365287 0.704327\nvn -0.608679 -0.365287 0.704327\nvn -0.608672 -0.365313 0.704319\nvn -0.608646 -0.365286 0.704355\nvn -0.608672 -0.365313 0.704319\nvn -0.608679 -0.365287 0.704327\nvn -0.608685 -0.365321 0.704303\nvn -0.608685 -0.365321 0.704303\nvn -0.608704 -0.365314 0.704290\nvn -0.608672 -0.365313 0.704319\nvn -0.608704 -0.365314 0.704290\nvn -0.608685 -0.365321 0.704303\nvn -0.608672 -0.365313 0.704319\nvn -0.608672 -0.365313 0.704319\nvn -0.608672 -0.365313 0.704319\nvn -0.608704 -0.365314 0.704290\nvn -0.851828 -0.286212 -0.438717\nvn -0.743539 -0.210003 -0.634861\nvn -0.836161 0.151893 -0.527033\nvn -0.836161 0.151893 -0.527033\nvn -0.940021 0.058596 -0.336047\nvn -0.851828 -0.286212 -0.438717\nvn -0.940021 0.058596 -0.336047\nvn -0.836161 0.151893 -0.527033\nvn -0.809060 0.486168 -0.330247\nvn -0.809060 0.486168 -0.330247\nvn -0.914191 0.377060 -0.148596\nvn -0.940021 0.058596 -0.336047\nvn -0.914191 0.377060 -0.148596\nvn -0.809060 0.486168 -0.330247\nvn -0.666355 0.741919 -0.074345\nvn -0.666355 0.741919 -0.074345\nvn -0.778270 0.620668 0.095220\nvn -0.914191 0.377060 -0.148596\nvn -0.778270 0.620668 0.095220\nvn -0.666355 0.741919 -0.074345\nvn -0.429864 0.880083 0.201671\nvn -0.429864 0.880083 0.201671\nvn -0.553011 0.752271 0.358144\nvn -0.778270 0.620668 0.095220\nvn -0.743539 -0.210003 -0.634861\nvn -0.851828 -0.286212 -0.438717\nvn -0.663066 -0.604927 -0.440915\nvn -0.663066 -0.604927 -0.440915\nvn -0.545399 -0.544606 -0.637138\nvn -0.743539 -0.210003 -0.634861\nvn -0.545399 -0.544606 -0.637138\nvn -0.663066 -0.604927 -0.440915\nvn -0.402461 -0.849054 -0.342246\nvn -0.402461 -0.849054 -0.342246\nvn -0.271862 -0.800877 -0.533562\nvn -0.545399 -0.544606 -0.637138\nvn -0.271862 -0.800877 -0.533562\nvn -0.402461 -0.849054 -0.342246\nvn -0.109656 -0.981351 -0.157877\nvn -0.109656 -0.981351 -0.157877\nvn 0.035463 -0.939764 -0.339979\nvn -0.271862 -0.800877 -0.533562\nvn 0.035463 -0.939764 -0.339979\nvn -0.109656 -0.981351 -0.157877\nvn 0.170696 -0.981719 0.084203\nvn 0.170696 -0.981719 0.084203\nvn 0.329817 -0.940131 -0.085880\nvn 0.035463 -0.939764 -0.339979\nvn 0.329817 -0.940131 -0.085880\nvn 0.170696 -0.981719 0.084203\nvn 0.395959 -0.850117 0.347158\nvn 0.395959 -0.850117 0.347158\nvn 0.566282 -0.801981 0.190134\nvn 0.329817 -0.940131 -0.085880\nvn 0.566282 -0.801981 0.190134\nvn 0.395959 -0.850117 0.347158\nvn 0.531865 -0.606515 0.590981\nvn 0.531865 -0.606515 0.590981\nvn 0.708922 -0.546287 0.446094\nvn 0.566282 -0.801981 0.190134\nvn 0.708922 -0.546287 0.446094\nvn 0.531865 -0.606515 0.590981\nvn 0.557709 -0.288041 0.778455\nvn 0.557709 -0.288041 0.778455\nvn 0.736066 -0.211987 0.642860\nvn 0.708922 -0.546287 0.446094\nvn 0.736066 -0.211987 0.642860\nvn 0.557709 -0.288041 0.778455\nvn 0.469536 0.056766 0.881086\nvn 0.469536 0.056766 0.881086\nvn 0.643506 0.150004 0.750599\nvn 0.736066 -0.211987 0.642860\nvn 0.643506 0.150004 0.750599\nvn 0.469536 0.056766 0.881086\nvn 0.280779 0.375512 0.883264\nvn 0.280779 0.375512 0.883264\nvn 0.445314 0.484563 0.752923\nvn 0.643506 0.150004 0.750599\nvn 0.445314 0.484563 0.752923\nvn 0.280779 0.375512 0.883264\nvn 0.020173 0.619605 0.784654\nvn 0.020173 0.619605 0.784654\nvn 0.171793 0.740796 0.649391\nvn 0.445314 0.484563 0.752923\nvn 0.171793 0.740796 0.649391\nvn 0.020173 0.619605 0.784654\nvn -0.272596 0.751927 0.600248\nvn -0.272596 0.751927 0.600248\nvn -0.135596 0.879677 0.455831\nvn 0.171793 0.740796 0.649391\nvn -0.135596 0.879677 0.455831\nvn -0.272596 0.751927 0.600248\nvn -0.553011 0.752271 0.358144\nvn -0.553011 0.752271 0.358144\nvn -0.429864 0.880083 0.201671\nvn -0.135596 0.879677 0.455831\nvn -0.989319 -0.030703 -0.142495\nvn -0.909610 -0.342451 -0.235238\nvn -0.851828 -0.286212 -0.438717\nvn -0.851828 -0.286212 -0.438717\nvn -0.940021 0.058596 -0.336047\nvn -0.989319 -0.030703 -0.142495\nvn -0.989319 -0.030703 -0.142495\nvn -0.940021 0.058596 -0.336047\nvn -0.914191 0.377060 -0.148596\nvn -0.914191 0.377060 -0.148596\nvn -0.965970 0.257248 0.026949\nvn -0.989319 -0.030703 -0.142495\nvn -0.843126 0.477413 0.247420\nvn -0.965970 0.257248 0.026949\nvn -0.914191 0.377060 -0.148596\nvn -0.914191 0.377060 -0.148596\nvn -0.778270 0.620668 0.095220\nvn -0.843126 0.477413 0.247420\nvn -0.843126 0.477413 0.247420\nvn -0.778270 0.620668 0.095220\nvn -0.553011 0.752271 0.358144\nvn -0.553011 0.752271 0.358144\nvn -0.639410 0.596439 0.485196\nvn -0.843126 0.477413 0.247420\nvn -0.851828 -0.286212 -0.438717\nvn -0.909610 -0.342451 -0.235238\nvn -0.738931 -0.630650 -0.237195\nvn -0.738931 -0.630650 -0.237195\nvn -0.663066 -0.604927 -0.440915\nvn -0.851828 -0.286212 -0.438717\nvn -0.402461 -0.849054 -0.342246\nvn -0.663066 -0.604927 -0.440915\nvn -0.738931 -0.630650 -0.237195\nvn -0.738931 -0.630650 -0.237195\nvn -0.503317 -0.851325 -0.148047\nvn -0.402461 -0.849054 -0.342246\nvn -0.402461 -0.849054 -0.342246\nvn -0.503317 -0.851325 -0.148047\nvn -0.238535 -0.970956 0.018586\nvn -0.238535 -0.970956 0.018586\nvn -0.109656 -0.981351 -0.157877\nvn -0.402461 -0.849054 -0.342246\nvn 0.170696 -0.981719 0.084203\nvn -0.109656 -0.981351 -0.157877\nvn -0.238535 -0.970956 0.018586\nvn -0.238535 -0.970956 0.018586\nvn 0.014863 -0.971281 0.237472\nvn 0.170696 -0.981719 0.084203\nvn 0.170696 -0.981719 0.084203\nvn 0.014863 -0.971281 0.237472\nvn 0.218548 -0.852279 0.475245\nvn 0.218548 -0.852279 0.475245\nvn 0.395959 -0.850117 0.347158\nvn 0.170696 -0.981719 0.084203\nvn 0.531865 -0.606515 0.590981\nvn 0.395959 -0.850117 0.347158\nvn 0.218548 -0.852279 0.475245\nvn 0.218548 -0.852279 0.475245\nvn 0.341454 -0.632062 0.695634\nvn 0.531865 -0.606515 0.590981\nvn 0.531865 -0.606515 0.590981\nvn 0.341454 -0.632062 0.695634\nvn 0.364773 -0.344111 0.865176\nvn 0.364773 -0.344111 0.865176\nvn 0.557709 -0.288041 0.778455\nvn 0.531865 -0.606515 0.590981\nvn 0.469536 0.056766 0.881086\nvn 0.557709 -0.288041 0.778455\nvn 0.364773 -0.344111 0.865176\nvn 0.364773 -0.344111 0.865176\nvn 0.285021 -0.032381 0.957974\nvn 0.469536 0.056766 0.881086\nvn 0.469536 0.056766 0.881086\nvn 0.285021 -0.032381 0.957974\nvn 0.114417 0.255843 0.959924\nvn 0.114417 0.255843 0.959924\nvn 0.280779 0.375512 0.883264\nvn 0.469536 0.056766 0.881086\nvn 0.020173 0.619605 0.784654\nvn 0.280779 0.375512 0.883264\nvn 0.114417 0.255843 0.959924\nvn 0.114417 0.255843 0.959924\nvn -0.121191 0.476464 0.870801\nvn 0.020173 0.619605 0.784654\nvn 0.020173 0.619605 0.784654\nvn -0.121191 0.476464 0.870801\nvn -0.385911 0.596155 0.704039\nvn -0.385911 0.596155 0.704039\nvn -0.272596 0.751927 0.600248\nvn 0.020173 0.619605 0.784654\nvn -0.553011 0.752271 0.358144\nvn -0.272596 0.751927 0.600248\nvn -0.385911 0.596155 0.704039\nvn -0.385911 0.596155 0.704039\nvn -0.639410 0.596439 0.485196\nvn -0.553011 0.752271 0.358144\nvn -0.608679 -0.365287 0.704327\nvn -0.608769 -0.365256 0.704264\nvn -0.608672 -0.365313 0.704319\nvn -0.608679 -0.365287 0.704327\nvn -0.608672 -0.365313 0.704319\nvn -0.608679 -0.365287 0.704327\nvn -0.608672 -0.365313 0.704319\nvn -0.608679 -0.365287 0.704327\nvn -0.608679 -0.365287 0.704327\nvn -0.608672 -0.365313 0.704319\nvn -0.608672 -0.365313 0.704319\nvn -0.608679 -0.365287 0.704327\nvn -0.608672 -0.365313 0.704319\nvn -0.608640 -0.365312 0.704347\nvn -0.608672 -0.365313 0.704319\nvn -0.608672 -0.365313 0.704319\nvn -0.608704 -0.365314 0.704290\nvn -0.608640 -0.365312 0.704347\nvn -0.608640 -0.365312 0.704347\nvn -0.608710 -0.365470 0.704205\nvn -0.608672 -0.365313 0.704319\nvn -0.608672 -0.365313 0.704319\nvn -0.608679 -0.365287 0.704327\nvn -0.608679 -0.365287 0.704327\nvn -0.608672 -0.365313 0.704319\nvn -0.608679 -0.365287 0.704327\nvn -0.608679 -0.365287 0.704327\nvn -0.608679 -0.365287 0.704327\nvn -0.608802 -0.365196 0.704267\nvn -0.608679 -0.365287 0.704327\nvn -0.608679 -0.365287 0.704327\nvn -0.608640 -0.365312 0.704347\nvn -0.608679 -0.365287 0.704327\nvn -0.608679 -0.365287 0.704327\nvn -0.608704 -0.365314 0.704290\nvn -0.608640 -0.365312 0.704347\nvn -0.608640 -0.365312 0.704347\nvn -0.608672 -0.365313 0.704319\nvn -0.608679 -0.365287 0.704327\nvn -0.608679 -0.365287 0.704327\nvn -0.608679 -0.365287 0.704327\nvn -0.608731 -0.365160 0.704347\nvn -0.026399 -0.749283 -0.661723\nvn -0.028780 -0.744005 -0.667554\nvn 0.045932 -0.884108 -0.465020\nvn 0.045932 -0.884108 -0.465020\nvn 0.050754 -0.891319 -0.450527\nvn -0.026399 -0.749283 -0.661723\nvn 0.050754 -0.891319 -0.450527\nvn 0.045932 -0.884108 -0.465020\nvn 0.090855 -0.941783 -0.323714\nvn 0.090855 -0.941783 -0.323714\nvn 0.090855 -0.941783 -0.323714\nvn 0.050754 -0.891319 -0.450527\nvn 0.246745 -0.907600 0.339675\nvn 0.246750 -0.907619 0.339621\nvn 0.246748 -0.907609 0.339648\nvn 0.246748 -0.907609 0.339648\nvn 0.246749 -0.907585 0.339711\nvn 0.246745 -0.907600 0.339675\nvn -0.028780 -0.744005 -0.667554\nvn -0.026399 -0.749283 -0.661723\nvn -0.104071 -0.547363 -0.830399\nvn -0.104071 -0.547363 -0.830399\nvn -0.105505 -0.543089 -0.833021\nvn -0.028780 -0.744005 -0.667554\nvn -0.105505 -0.543089 -0.833021\nvn -0.104071 -0.547363 -0.830399\nvn -0.180553 -0.277116 -0.943720\nvn -0.180553 -0.277116 -0.943720\nvn -0.180062 -0.279127 -0.943221\nvn -0.105505 -0.543089 -0.833021\nvn 0.274096 -0.269029 0.923306\nvn 0.274035 -0.268877 0.923369\nvn 0.260725 -0.154945 0.952898\nvn 0.260725 -0.154945 0.952898\nvn 0.259046 -0.141792 0.955401\nvn 0.274096 -0.269029 0.923306\nvn 0.259046 -0.141792 0.955401\nvn 0.260725 -0.154945 0.952898\nvn 0.241589 -0.025331 0.970048\nvn 0.241589 -0.025331 0.970048\nvn 0.241646 -0.025361 0.970033\nvn 0.259046 -0.141792 0.955401\nvn -0.180062 -0.279127 -0.943221\nvn -0.180553 -0.277116 -0.943720\nvn -0.229016 -0.047152 -0.972280\nvn -0.229016 -0.047152 -0.972280\nvn -0.228067 -0.052309 -0.972239\nvn -0.180062 -0.279127 -0.943221\nvn -0.228067 -0.052309 -0.972239\nvn -0.229016 -0.047152 -0.972280\nvn -0.260419 0.152443 -0.953385\nvn -0.260419 0.152443 -0.953385\nvn -0.259232 0.143441 -0.955104\nvn -0.228067 -0.052309 -0.972239\nvn -0.259232 0.143441 -0.955104\nvn -0.260419 0.152443 -0.953385\nvn -0.284924 0.398942 -0.871587\nvn -0.284924 0.398942 -0.871587\nvn -0.283704 0.380693 -0.880105\nvn -0.259232 0.143441 -0.955104\nvn -0.283704 0.380693 -0.880105\nvn -0.284924 0.398942 -0.871587\nvn -0.288282 0.665313 -0.688660\nvn -0.288282 0.665313 -0.688660\nvn -0.289233 0.643472 -0.708723\nvn -0.283704 0.380693 -0.880105\nvn -0.289233 0.643472 -0.708723\nvn -0.288282 0.665313 -0.688660\nvn -0.265453 0.846591 -0.461322\nvn -0.265453 0.846591 -0.461322\nvn -0.268382 0.833376 -0.483173\nvn -0.289233 0.643472 -0.708723\nvn -0.268382 0.833376 -0.483173\nvn -0.265453 0.846591 -0.461322\nvn -0.218185 0.958104 -0.185560\nvn -0.218185 0.958104 -0.185560\nvn -0.224775 0.949515 -0.218854\nvn -0.268382 0.833376 -0.483173\nvn -0.224775 0.949515 -0.218854\nvn -0.218185 0.958104 -0.185560\nvn -0.186353 0.981755 -0.037814\nvn -0.186353 0.981755 -0.037814\nvn -0.186382 0.981748 -0.037844\nvn -0.224775 0.949515 -0.218854\nvn -0.012086 0.819430 0.573052\nvn -0.005860 0.815727 0.578407\nvn -0.008729 0.817441 0.575947\nvn -0.008729 0.817441 0.575947\nvn -0.015016 0.821145 0.570522\nvn -0.012086 0.819430 0.573052\nvn 0.196849 0.206432 0.958455\nvn 0.196912 0.206313 0.958468\nvn 0.220012 0.094884 0.970872\nvn 0.220012 0.094884 0.970872\nvn 0.221601 0.086675 0.971278\nvn 0.196849 0.206432 0.958455\nvn 0.221601 0.086675 0.971278\nvn 0.220012 0.094884 0.970872\nvn 0.241531 -0.025392 0.970061\nvn 0.241531 -0.025392 0.970061\nvn 0.241588 -0.025422 0.970046\nvn 0.221601 0.086675 0.971278\nvn 0.241588 -0.025422 0.970046\nvn 0.241531 -0.025392 0.970061\nvn 0.241646 -0.025361 0.970033\nvn 0.241646 -0.025361 0.970033\nvn 0.241589 -0.025331 0.970048\nvn 0.241588 -0.025422 0.970046\nvn -0.914199 0.338334 -0.223094\nvn -0.914201 0.334703 -0.228497\nvn -0.904628 0.226485 -0.361045\nvn -0.904628 0.226485 -0.361045\nvn -0.904554 0.234752 -0.355913\nvn -0.914199 0.338334 -0.223094\nvn -0.904554 0.234752 -0.355913\nvn -0.904628 0.226485 -0.361045\nvn -0.880850 0.076390 -0.467191\nvn -0.880850 0.076390 -0.467191\nvn -0.880042 0.080417 -0.468037\nvn -0.904554 0.234752 -0.355913\nvn -0.880042 0.080417 -0.468037\nvn -0.880850 0.076390 -0.467191\nvn -0.851310 -0.065892 -0.520509\nvn -0.851310 -0.065892 -0.520509\nvn -0.851910 -0.056278 -0.520656\nvn -0.880042 0.080417 -0.468037\nvn -0.851910 -0.056278 -0.520656\nvn -0.851310 -0.065892 -0.520509\nvn -0.826713 -0.182507 -0.532200\nvn -0.826713 -0.182507 -0.532200\nvn -0.825739 -0.193006 -0.530004\nvn -0.851910 -0.056278 -0.520656\nvn -0.825739 -0.193006 -0.530004\nvn -0.826713 -0.182507 -0.532200\nvn -0.792746 -0.329642 -0.512729\nvn -0.792746 -0.329642 -0.512729\nvn -0.793142 -0.335258 -0.508456\nvn -0.825739 -0.193006 -0.530004\nvn -0.793142 -0.335258 -0.508456\nvn -0.792746 -0.329642 -0.512729\nvn -0.747313 -0.494313 -0.444048\nvn -0.747313 -0.494313 -0.444048\nvn -0.745942 -0.501425 -0.438342\nvn -0.793142 -0.335258 -0.508456\nvn -0.745942 -0.501425 -0.438342\nvn -0.747313 -0.494313 -0.444048\nvn -0.702675 -0.625920 -0.338337\nvn -0.702675 -0.625920 -0.338337\nvn -0.701581 -0.629189 -0.334523\nvn -0.745942 -0.501425 -0.438342\nvn -0.701581 -0.629189 -0.334523\nvn -0.702675 -0.625920 -0.338337\nvn -0.660073 -0.723676 -0.201489\nvn -0.660073 -0.723676 -0.201489\nvn -0.652164 -0.719337 -0.239240\nvn -0.701581 -0.629189 -0.334523\nvn -0.652164 -0.719337 -0.239240\nvn -0.660073 -0.723676 -0.201489\nvn -0.653874 -0.749887 0.100591\nvn -0.653874 -0.749887 0.100591\nvn -0.597953 -0.800445 -0.041719\nvn -0.652164 -0.719337 -0.239240\nvn -0.597953 -0.800445 -0.041719\nvn -0.653874 -0.749887 0.100591\nvn -0.600275 -0.765902 0.230356\nvn -0.600275 -0.765902 0.230356\nvn -0.450470 -0.887848 0.093818\nvn -0.597953 -0.800445 -0.041719\nvn -0.674264 -0.353170 0.648567\nvn -0.666416 -0.366749 0.649142\nvn -0.685319 -0.295552 0.665573\nvn -0.685319 -0.295552 0.665573\nvn -0.690771 -0.280288 0.666539\nvn -0.674264 -0.353170 0.648567\nvn -0.690771 -0.280288 0.666539\nvn -0.685319 -0.295552 0.665573\nvn -0.698496 -0.221540 0.680459\nvn -0.698496 -0.221540 0.680459\nvn -0.698581 -0.221477 0.680392\nvn -0.690771 -0.280288 0.666539\nvn -0.914201 0.334703 -0.228497\nvn -0.914199 0.338334 -0.223094\nvn -0.909876 0.404352 -0.092871\nvn -0.909876 0.404352 -0.092871\nvn -0.905991 0.418478 -0.063693\nvn -0.914201 0.334703 -0.228497\nvn -0.905991 0.418478 -0.063693\nvn -0.909876 0.404352 -0.092871\nvn -0.903883 0.399708 0.152412\nvn -0.903883 0.399708 0.152412\nvn -0.883069 0.397114 0.249981\nvn -0.905991 0.418478 -0.063693\nvn -0.883069 0.397114 0.249981\nvn -0.903883 0.399708 0.152412\nvn -0.857045 0.338917 0.388084\nvn -0.857045 0.338917 0.388084\nvn -0.823500 0.341571 0.452966\nvn -0.883069 0.397114 0.249981\nvn -0.736270 -0.087864 0.670959\nvn -0.724890 -0.098638 0.681766\nvn -0.717610 -0.160534 0.677691\nvn -0.717610 -0.160534 0.677691\nvn -0.724377 -0.149576 0.672982\nvn -0.736270 -0.087864 0.670959\nvn -0.724377 -0.149576 0.672982\nvn -0.717610 -0.160534 0.677691\nvn -0.701037 -0.221817 0.677750\nvn -0.701037 -0.221817 0.677750\nvn -0.701057 -0.221783 0.677740\nvn -0.724377 -0.149576 0.672982\nvn -0.701057 -0.221783 0.677740\nvn -0.701037 -0.221817 0.677750\nvn -0.698581 -0.221477 0.680392\nvn -0.698581 -0.221477 0.680392\nvn -0.698496 -0.221540 0.680459\nvn -0.701057 -0.221783 0.677740\nvn -0.968991 -0.217634 0.117011\nvn -0.968816 -0.219033 0.115849\nvn -0.966859 -0.233383 0.103522\nvn -0.968991 -0.217634 0.117011\nvn -0.966859 -0.233383 0.103522\nvn -0.968515 -0.227915 0.100163\nvn -0.966859 -0.233383 0.103522\nvn -0.966368 -0.235794 0.102637\nvn -0.968515 -0.227915 0.100163\nvn -0.966859 -0.233383 0.103522\nvn -0.965715 -0.238232 0.103154\nvn -0.966368 -0.235794 0.102637\nvn -0.965715 -0.238232 0.103154\nvn -0.965840 -0.237867 0.102819\nvn -0.966368 -0.235794 0.102637\nvn -0.966368 -0.235794 0.102637\nvn -0.969182 -0.230935 0.085758\nvn -0.968515 -0.227915 0.100163\nvn -0.969182 -0.230935 0.085758\nvn -0.972419 -0.219217 0.079654\nvn -0.968515 -0.227915 0.100163\nvn -0.969182 -0.230935 0.085758\nvn -0.968445 -0.234878 0.083349\nvn -0.972419 -0.219217 0.079654\nvn -0.968445 -0.234878 0.083349\nvn -0.968498 -0.234693 0.083257\nvn -0.972419 -0.219217 0.079654\nvn -0.968445 -0.234878 0.083349\nvn -0.968565 -0.233657 0.085363\nvn -0.968498 -0.234693 0.083257\nvn -0.968498 -0.234693 0.083257\nvn -0.969739 -0.230296 0.081058\nvn -0.972419 -0.219217 0.079654\nvn -0.972419 -0.219217 0.079654\nvn -0.970668 -0.221418 0.093694\nvn -0.968515 -0.227915 0.100163\nvn -0.972419 -0.219217 0.079654\nvn -0.973036 -0.217204 0.077610\nvn -0.970668 -0.221418 0.093694\nvn -0.972419 -0.219217 0.079654\nvn -0.974013 -0.214030 0.074100\nvn -0.973036 -0.217204 0.077610\nvn -0.974013 -0.214030 0.074100\nvn -0.973480 -0.215468 0.076879\nvn -0.973036 -0.217204 0.077610\nvn -0.420102 -0.024996 -0.907133\nvn -0.420102 -0.024996 -0.907133\nvn -0.420102 -0.024996 -0.907133\nvn -0.967954 0.202557 0.148446\nvn -0.970696 0.185770 0.152444\nvn -0.969718 0.173471 0.171915\nvn -0.969718 0.173471 0.171915\nvn -0.964337 0.209268 0.162055\nvn -0.967954 0.202557 0.148446\nvn -0.969718 0.173471 0.171915\nvn -0.970696 0.185770 0.152444\nvn -0.973946 0.162268 0.158423\nvn -0.973946 0.162268 0.158423\nvn -0.972928 0.137520 0.185741\nvn -0.969718 0.173471 0.171915\nvn -0.966561 0.174964 0.187477\nvn -0.969718 0.173471 0.171915\nvn -0.972928 0.137520 0.185741\nvn -0.972928 0.137520 0.185741\nvn -0.972073 0.058109 0.227370\nvn -0.966561 0.174964 0.187477\nvn -0.969718 0.173471 0.171915\nvn -0.966561 0.174964 0.187477\nvn -0.938784 0.297627 0.173504\nvn -0.938784 0.297627 0.173504\nvn -0.964337 0.209268 0.162055\nvn -0.969718 0.173471 0.171915\nvn -0.942289 0.245865 0.227248\nvn -0.964337 0.209268 0.162055\nvn -0.938784 0.297627 0.173504\nvn -0.938784 0.297627 0.173504\nvn -0.938285 0.251051 0.237898\nvn -0.942289 0.245865 0.227248\nvn -0.972073 0.058109 0.227370\nvn -0.972928 0.137520 0.185741\nvn -0.957838 0.143805 0.248730\nvn -0.957838 0.143805 0.248730\nvn -0.955489 0.144507 0.257214\nvn -0.972073 0.058109 0.227370\nvn -0.930465 0.186257 0.315506\nvn -0.886756 0.211709 0.410906\nvn -0.880785 0.261397 0.394827\nvn -0.880785 0.261397 0.394827\nvn -0.927405 0.220406 0.302227\nvn -0.930465 0.186257 0.315506\nvn -0.955989 0.164255 0.243117\nvn -0.930465 0.186257 0.315506\nvn -0.927405 0.220406 0.302227\nvn -0.927405 0.220406 0.302227\nvn -0.953305 0.190411 0.234420\nvn -0.955989 0.164255 0.243117\nvn -0.821273 0.295976 0.487759\nvn -0.880785 0.261397 0.394827\nvn -0.886756 0.211709 0.410906\nvn -0.886756 0.211709 0.410906\nvn -0.828985 0.234415 0.507773\nvn -0.821273 0.295976 0.487759\nvn -0.955989 0.164255 0.243117\nvn -0.953305 0.190411 0.234420\nvn -0.961204 0.182749 0.206615\nvn -0.961204 0.182749 0.206615\nvn -0.963919 0.158028 0.214214\nvn -0.955989 0.164255 0.243117\nvn -0.953305 0.190411 0.234420\nvn -0.927405 0.220406 0.302227\nvn -0.922625 0.253950 0.290298\nvn -0.922625 0.253950 0.290298\nvn -0.927405 0.220406 0.302227\nvn -0.880785 0.261397 0.394827\nvn -0.922625 0.253950 0.290298\nvn -0.948719 0.217266 0.229626\nvn -0.953305 0.190411 0.234420\nvn -0.880785 0.261397 0.394827\nvn -0.875207 0.306537 0.374230\nvn -0.922625 0.253950 0.290298\nvn -0.875207 0.306537 0.374230\nvn -0.880785 0.261397 0.394827\nvn -0.821273 0.295976 0.487759\nvn -0.821273 0.295976 0.487759\nvn -0.816628 0.346757 0.461387\nvn -0.875207 0.306537 0.374230\nvn -0.816628 0.346757 0.461387\nvn -0.821273 0.295976 0.487759\nvn -0.745322 0.322349 0.583598\nvn -0.745322 0.322349 0.583598\nvn -0.821273 0.295976 0.487759\nvn -0.828985 0.234415 0.507773\nvn -0.745322 0.322349 0.583598\nvn -0.745096 0.381612 0.546996\nvn -0.816628 0.346757 0.461387\nvn -0.633348 0.412872 0.654528\nvn -0.745096 0.381612 0.546996\nvn -0.745322 0.322349 0.583598\nvn -0.745322 0.322349 0.583598\nvn -0.630201 0.344750 0.695696\nvn -0.633348 0.412872 0.654528\nvn -0.541104 0.415060 0.731390\nvn -0.633348 0.412872 0.654528\nvn -0.630201 0.344750 0.695696\nvn -0.630201 0.344750 0.695696\nvn -0.540766 0.358292 0.761051\nvn -0.541104 0.415060 0.731390\nvn -0.635041 0.281569 0.719335\nvn -0.630201 0.344750 0.695696\nvn -0.745322 0.322349 0.583598\nvn -0.540766 0.358292 0.761051\nvn -0.630201 0.344750 0.695696\nvn -0.635041 0.281569 0.719335\nvn -0.745322 0.322349 0.583598\nvn -0.749551 0.258162 0.609529\nvn -0.635041 0.281569 0.719335\nvn -0.828985 0.234415 0.507773\nvn -0.749551 0.258162 0.609529\nvn -0.745322 0.322349 0.583598\nvn -0.635041 0.281569 0.719335\nvn -0.564849 0.305069 0.766733\nvn -0.540766 0.358292 0.761051\nvn -0.564849 0.305069 0.766733\nvn -0.555756 0.308580 0.771954\nvn -0.540766 0.358292 0.761051\nvn -0.555756 0.308580 0.771954\nvn -0.526264 0.353132 0.773527\nvn -0.540766 0.358292 0.761051\nvn -0.555756 0.308580 0.771954\nvn -0.577460 0.314076 0.753588\nvn -0.526264 0.353132 0.773527\nvn -0.540766 0.358292 0.761051\nvn -0.526264 0.353132 0.773527\nvn -0.531279 0.409843 0.741465\nvn -0.541104 0.415060 0.731390\nvn -0.540766 0.358292 0.761051\nvn -0.531279 0.409843 0.741465\nvn -0.541104 0.415060 0.731390\nvn -0.531279 0.409843 0.741465\nvn -0.531330 0.413589 0.739346\nvn -0.541104 0.415060 0.731390\nvn -0.531330 0.413589 0.739346\nvn -0.531428 0.413502 0.739324\nvn -0.953305 0.190411 0.234420\nvn -0.948719 0.217266 0.229626\nvn -0.957357 0.207347 0.201183\nvn -0.957357 0.207347 0.201183\nvn -0.961204 0.182749 0.206615\nvn -0.953305 0.190411 0.234420\nvn -0.510926 -0.062046 -0.857383\nvn -0.511097 -0.062167 -0.857272\nvn -0.506338 -0.059726 -0.860265\nvn -0.506338 -0.059726 -0.860265\nvn -0.505885 -0.059055 -0.860577\nvn -0.510926 -0.062046 -0.857383\nvn -0.511097 -0.062167 -0.857272\nvn -0.510926 -0.062046 -0.857383\nvn -0.515715 -0.065342 -0.854265\nvn -0.515715 -0.065342 -0.854265\nvn -0.515008 -0.066623 -0.854593\nvn -0.511097 -0.062167 -0.857272\nvn -0.510918 -0.062289 -0.857370\nvn -0.511097 -0.062167 -0.857272\nvn -0.515008 -0.066623 -0.854593\nvn -0.515008 -0.066623 -0.854593\nvn -0.513031 -0.067997 -0.855673\nvn -0.510918 -0.062289 -0.857370\nvn -0.513031 -0.067997 -0.855673\nvn -0.515008 -0.066623 -0.854593\nvn -0.514987 -0.068883 -0.854426\nvn -0.514987 -0.068883 -0.854426\nvn -0.514432 -0.067448 -0.854874\nvn -0.513031 -0.067997 -0.855673\nvn -0.514432 -0.067448 -0.854874\nvn -0.514987 -0.068883 -0.854426\nvn -0.510869 -0.068792 -0.856902\nvn -0.510869 -0.068792 -0.856902\nvn -0.510826 -0.068607 -0.856942\nvn -0.514432 -0.067448 -0.854874\nvn -0.510826 -0.068607 -0.856942\nvn -0.510869 -0.068792 -0.856902\nvn -0.508446 -0.062350 -0.858834\nvn -0.508446 -0.062350 -0.858834\nvn -0.508625 -0.063082 -0.858674\nvn -0.510826 -0.068607 -0.856942\nvn -0.508625 -0.063082 -0.858674\nvn -0.508446 -0.062350 -0.858834\nvn -0.506338 -0.059726 -0.860265\nvn -0.511097 -0.062167 -0.857272\nvn -0.510918 -0.062289 -0.857370\nvn -0.505703 -0.063511 -0.860367\nvn -0.505703 -0.063511 -0.860367\nvn -0.506338 -0.059726 -0.860265\nvn -0.511097 -0.062167 -0.857272\nvn -0.506338 -0.059726 -0.860265\nvn -0.505703 -0.063511 -0.860367\nvn -0.508625 -0.063082 -0.858674\nvn -0.200086 0.965208 -0.168345\nvn -0.238904 0.955555 -0.172739\nvn -0.243817 0.955521 -0.165932\nvn -0.202097 0.964704 -0.168831\nvn -0.200086 0.965208 -0.168345\nvn -0.243817 0.955521 -0.165932\nvn -0.202097 0.964704 -0.168831\nvn -0.243817 0.955521 -0.165932\nvn -0.242747 0.955910 -0.165259\nvn -0.242747 0.955910 -0.165259\nvn -0.243817 0.955521 -0.165932\nvn -0.232985 0.961178 -0.147836\nvn -0.232985 0.961178 -0.147836\nvn -0.228010 0.962548 -0.146676\nvn -0.242747 0.955910 -0.165259\nvn -0.228010 0.962548 -0.146676\nvn -0.232985 0.961178 -0.147836\nvn -0.206614 0.970262 -0.126105\nvn -0.206614 0.970262 -0.126105\nvn -0.199351 0.971760 -0.126258\nvn -0.228010 0.962548 -0.146676\nvn -0.199351 0.971760 -0.126258\nvn -0.206614 0.970262 -0.126105\nvn -0.153329 0.982751 -0.103399\nvn -0.153329 0.982751 -0.103399\nvn -0.143685 0.984152 -0.103918\nvn -0.199351 0.971760 -0.126258\nvn -0.143685 0.984152 -0.103918\nvn -0.153329 0.982751 -0.103399\nvn -0.112492 0.990484 -0.079288\nvn -0.112492 0.990484 -0.079288\nvn -0.102696 0.991553 -0.079227\nvn -0.143685 0.984152 -0.103918\nvn -0.102696 0.991553 -0.079227\nvn -0.112492 0.990484 -0.079288\nvn -0.073245 0.995463 -0.060733\nvn -0.073245 0.995463 -0.060733\nvn -0.064945 0.995960 -0.062015\nvn -0.102696 0.991553 -0.079227\nvn -0.064945 0.995960 -0.062015\nvn -0.073245 0.995463 -0.060733\nvn -0.030336 0.997987 -0.055696\nvn -0.030336 0.997987 -0.055696\nvn -0.022737 0.997956 -0.059727\nvn -0.064945 0.995960 -0.062015\nvn -0.022737 0.997956 -0.059727\nvn -0.030336 0.997987 -0.055696\nvn 0.111059 0.991570 0.066745\nvn 0.111059 0.991570 0.066745\nvn 0.147774 0.983358 0.105688\nvn -0.022737 0.997956 -0.059727\nvn 0.147774 0.983358 0.105688\nvn 0.111059 0.991570 0.066745\nvn 0.277020 0.918955 0.280682\nvn 0.277020 0.918955 0.280682\nvn 0.288592 0.909908 0.297962\nvn 0.147774 0.983358 0.105688\nvn 0.288592 0.909908 0.297962\nvn 0.277020 0.918955 0.280682\nvn 0.385490 0.804186 0.452419\nvn 0.385490 0.804186 0.452419\nvn 0.397179 0.785417 0.474729\nvn 0.288592 0.909908 0.297962\nvn 0.499746 0.569970 0.652218\nvn 0.397179 0.785417 0.474729\nvn 0.385490 0.804186 0.452419\nvn 0.385490 0.804186 0.452419\nvn 0.507359 0.567850 0.648177\nvn 0.499746 0.569970 0.652218\nvn 0.552620 0.300833 0.777245\nvn 0.499746 0.569970 0.652218\nvn 0.507359 0.567850 0.648177\nvn 0.507359 0.567850 0.648177\nvn 0.551631 0.326157 0.767675\nvn 0.552620 0.300833 0.777245\nvn 0.552620 0.300833 0.777245\nvn 0.551631 0.326157 0.767675\nvn 0.482838 0.016511 0.875554\nvn 0.482838 0.016511 0.875554\nvn 0.467313 -0.035372 0.883384\nvn 0.552620 0.300833 0.777245\nvn 0.467313 -0.035372 0.883384\nvn 0.482838 0.016511 0.875554\nvn 0.382016 -0.179792 0.906498\nvn 0.382016 -0.179792 0.906498\nvn 0.381460 -0.181040 0.906483\nvn 0.467313 -0.035372 0.883384\nvn 0.050906 -0.588534 0.806869\nvn 0.047947 -0.589977 0.805996\nvn 0.064914 -0.581541 0.810923\nvn 0.064914 -0.581541 0.810923\nvn 0.068913 -0.579498 0.812055\nvn 0.050906 -0.588534 0.806869\nvn -0.335314 -0.798900 0.499324\nvn -0.333519 -0.808498 0.484867\nvn -0.385038 -0.782406 0.489477\nvn -0.385038 -0.782406 0.489477\nvn -0.388268 -0.779680 0.491271\nvn -0.335314 -0.798900 0.499324\nvn -0.388268 -0.779680 0.491271\nvn -0.385038 -0.782406 0.489477\nvn -0.446800 -0.791788 0.416464\nvn -0.446800 -0.791788 0.416464\nvn -0.444995 -0.794956 0.412341\nvn -0.388268 -0.779680 0.491271\nvn -0.444995 -0.794956 0.412341\nvn -0.446800 -0.791788 0.416464\nvn -0.470696 -0.802348 0.366992\nvn -0.470696 -0.802348 0.366992\nvn -0.469329 -0.804892 0.363152\nvn -0.444995 -0.794956 0.412341\nvn -0.469329 -0.804892 0.363152\nvn -0.470696 -0.802348 0.366992\nvn -0.485655 -0.812304 0.322956\nvn -0.485655 -0.812304 0.322956\nvn -0.483826 -0.814780 0.319448\nvn -0.469329 -0.804892 0.363152\nvn -0.483826 -0.814780 0.319448\nvn -0.485655 -0.812304 0.322956\nvn -0.489076 -0.827600 0.275470\nvn -0.489076 -0.827600 0.275470\nvn -0.486449 -0.829854 0.273332\nvn -0.483826 -0.814780 0.319448\nvn -0.486449 -0.829854 0.273332\nvn -0.489076 -0.827600 0.275470\nvn -0.488369 -0.839860 0.236921\nvn -0.488369 -0.839860 0.236921\nvn -0.487300 -0.840866 0.235547\nvn -0.486449 -0.829854 0.273332\nvn -0.495812 -0.844645 0.201853\nvn -0.487300 -0.840866 0.235547\nvn -0.488369 -0.839860 0.236921\nvn -0.488369 -0.839860 0.236921\nvn -0.494774 -0.845377 0.201334\nvn -0.495812 -0.844645 0.201853\nvn -0.495812 -0.844645 0.201853\nvn -0.494774 -0.845377 0.201334\nvn -0.506096 -0.842721 0.183541\nvn -0.495812 -0.844645 0.201853\nvn -0.506096 -0.842721 0.183541\nvn -0.490681 -0.852084 0.182167\nvn -0.495812 -0.844645 0.201853\nvn -0.490681 -0.852084 0.182167\nvn -0.479115 -0.858983 0.180549\nvn -0.942289 0.245865 0.227248\nvn -0.938285 0.251051 0.237898\nvn -0.916565 0.271624 0.293477\nvn -0.916565 0.271624 0.293477\nvn -0.916545 0.271863 0.293318\nvn -0.942289 0.245865 0.227248\nvn -0.916545 0.271863 0.293318\nvn -0.916565 0.271624 0.293477\nvn -0.866663 0.327657 0.376214\nvn -0.866663 0.327657 0.376214\nvn -0.866662 0.328115 0.375817\nvn -0.916545 0.271863 0.293318\nvn -0.866662 0.328115 0.375817\nvn -0.866663 0.327657 0.376214\nvn -0.808153 0.363943 0.463070\nvn -0.808153 0.363943 0.463070\nvn -0.808251 0.364343 0.462586\nvn -0.866662 0.328115 0.375817\nvn -0.808251 0.364343 0.462586\nvn -0.808153 0.363943 0.463070\nvn -0.733650 0.395406 0.552641\nvn -0.733650 0.395406 0.552641\nvn -0.733844 0.395717 0.552161\nvn -0.808251 0.364343 0.462586\nvn -0.733844 0.395717 0.552161\nvn -0.733650 0.395406 0.552641\nvn -0.620450 0.428180 0.657042\nvn -0.620450 0.428180 0.657042\nvn -0.622448 0.429228 0.654463\nvn -0.733844 0.395717 0.552161\nvn -0.622448 0.429228 0.654463\nvn -0.620450 0.428180 0.657042\nvn -0.487023 0.536036 0.689547\nvn -0.487023 0.536036 0.689547\nvn -0.484227 0.534096 0.693012\nvn -0.622448 0.429228 0.654463\nvn -0.438654 0.536102 0.721233\nvn -0.484227 0.534096 0.693012\nvn -0.487023 0.536036 0.689547\nvn -0.487023 0.536036 0.689547\nvn -0.439171 0.536710 0.720466\nvn -0.438654 0.536102 0.721233\nvn -0.438654 0.536102 0.721233\nvn -0.439171 0.536710 0.720466\nvn -0.385335 0.531796 0.754128\nvn -0.385335 0.531796 0.754128\nvn -0.390886 0.538689 0.746339\nvn -0.438654 0.536102 0.721233\nvn -0.390886 0.538689 0.746339\nvn -0.385335 0.531796 0.754128\nvn -0.268290 0.497118 0.825163\nvn -0.268290 0.497118 0.825163\nvn -0.312334 0.521055 0.794324\nvn -0.390886 0.538689 0.746339\nvn -0.085606 0.400319 0.912368\nvn -0.312334 0.521055 0.794324\nvn -0.268290 0.497118 0.825163\nvn -0.268290 0.497118 0.825163\nvn 0.185192 0.391047 0.901547\nvn -0.085606 0.400319 0.912368\nvn -0.125648 0.155618 0.979794\nvn -0.085606 0.400319 0.912368\nvn 0.185192 0.391047 0.901547\nvn 0.185192 0.391047 0.901547\nvn 0.168097 0.134832 0.976506\nvn -0.125648 0.155618 0.979794\nvn -0.125648 0.155618 0.979794\nvn 0.168097 0.134832 0.976506\nvn -0.283950 0.046267 0.957722\nvn -0.283950 0.046267 0.957722\nvn -0.308943 0.034639 0.950450\nvn -0.125648 0.155618 0.979794\nvn -0.308943 0.034639 0.950450\nvn -0.283950 0.046267 0.957722\nvn -0.511411 -0.058902 0.857315\nvn -0.511411 -0.058902 0.857315\nvn -0.483949 -0.031252 0.874538\nvn -0.308943 0.034639 0.950450\nvn -0.483949 -0.031252 0.874538\nvn -0.511411 -0.058902 0.857315\nvn -0.644630 0.253524 0.721233\nvn -0.644630 0.253524 0.721233\nvn -0.642307 0.257063 0.722053\nvn -0.483949 -0.031252 0.874538\nvn -0.642307 0.257063 0.722053\nvn -0.644630 0.253524 0.721233\nvn -0.758607 0.236185 0.607233\nvn -0.758607 0.236185 0.607233\nvn -0.758414 0.235978 0.607555\nvn -0.642307 0.257063 0.722053\nvn -0.758414 0.235978 0.607555\nvn -0.758607 0.236185 0.607233\nvn -0.834120 0.218059 0.506649\nvn -0.834120 0.218059 0.506649\nvn -0.834023 0.217875 0.506890\nvn -0.758414 0.235978 0.607555\nvn -0.834023 0.217875 0.506890\nvn -0.834120 0.218059 0.506649\nvn -0.891126 0.198679 0.407948\nvn -0.891126 0.198679 0.407948\nvn -0.891113 0.198469 0.408078\nvn -0.834023 0.217875 0.506890\nvn -0.891113 0.198469 0.408078\nvn -0.891126 0.198679 0.407948\nvn -0.934489 0.170265 0.312636\nvn -0.934489 0.170265 0.312636\nvn -0.934532 0.169962 0.312670\nvn -0.891113 0.198469 0.408078\nvn -0.934532 0.169962 0.312670\nvn -0.934489 0.170265 0.312636\nvn -0.955489 0.144507 0.257214\nvn -0.955489 0.144507 0.257214\nvn -0.957838 0.143805 0.248730\nvn -0.934532 0.169962 0.312670\nvn -0.603123 -0.202801 -0.771437\nvn -0.602604 -0.202832 -0.771834\nvn -0.603432 -0.176495 -0.777637\nvn -0.603432 -0.176495 -0.777637\nvn -0.603588 -0.176343 -0.777550\nvn -0.603123 -0.202801 -0.771437\nvn -0.603588 -0.176343 -0.777550\nvn -0.603432 -0.176495 -0.777637\nvn -0.599610 -0.150307 -0.786051\nvn -0.599610 -0.150307 -0.786051\nvn -0.599522 -0.150308 -0.786117\nvn -0.603588 -0.176343 -0.777550\nvn -0.145758 0.972146 -0.183540\nvn -0.146461 0.972058 -0.183449\nvn -0.139657 0.973719 -0.179911\nvn -0.139657 0.973719 -0.179911\nvn -0.139291 0.973601 -0.180828\nvn -0.145758 0.972146 -0.183540\nvn -0.139291 0.973601 -0.180828\nvn -0.139657 0.973719 -0.179911\nvn -0.111882 0.979042 -0.170173\nvn -0.111882 0.979042 -0.170173\nvn -0.110601 0.979140 -0.170448\nvn -0.139291 0.973601 -0.180828\nvn -0.110601 0.979140 -0.170448\nvn -0.111882 0.979042 -0.170173\nvn -0.059451 0.985418 -0.159430\nvn -0.059451 0.985418 -0.159430\nvn -0.058139 0.985372 -0.160195\nvn -0.110601 0.979140 -0.170448\nvn -0.058139 0.985372 -0.160195\nvn -0.059451 0.985418 -0.159430\nvn -0.024446 0.989428 -0.142951\nvn -0.024446 0.989428 -0.142951\nvn -0.023164 0.989392 -0.143408\nvn -0.058139 0.985372 -0.160195\nvn -0.023164 0.989392 -0.143408\nvn -0.024446 0.989428 -0.142951\nvn 0.006287 0.991316 -0.131354\nvn 0.006287 0.991316 -0.131354\nvn 0.006744 0.991361 -0.130989\nvn -0.023164 0.989392 -0.143408\nvn 0.033662 0.990075 -0.136452\nvn 0.006744 0.991361 -0.130989\nvn 0.006287 0.991316 -0.131354\nvn 0.006287 0.991316 -0.131354\nvn 0.033571 0.990162 -0.135841\nvn 0.033662 0.990075 -0.136452\nvn 0.033662 0.990075 -0.136452\nvn 0.033571 0.990162 -0.135841\nvn 0.148780 0.988510 -0.026704\nvn 0.148780 0.988510 -0.026704\nvn 0.191173 0.980768 0.039339\nvn 0.033662 0.990075 -0.136452\nvn 0.302595 0.916697 0.260967\nvn 0.191173 0.980768 0.039339\nvn 0.148780 0.988510 -0.026704\nvn 0.148780 0.988510 -0.026704\nvn 0.291212 0.927778 0.233287\nvn 0.302595 0.916697 0.260967\nvn 0.302595 0.916697 0.260967\nvn 0.291212 0.927778 0.233287\nvn 0.364825 0.827739 0.426321\nvn 0.364825 0.827739 0.426321\nvn 0.377183 0.802679 0.461996\nvn 0.302595 0.916697 0.260967\nvn 0.377183 0.802679 0.461996\nvn 0.364825 0.827739 0.426321\nvn 0.439904 0.612612 0.656651\nvn 0.439904 0.612612 0.656651\nvn 0.440937 0.602778 0.665006\nvn 0.377183 0.802679 0.461996\nvn 0.185192 0.391047 0.901547\nvn 0.440937 0.602778 0.665006\nvn 0.439904 0.612612 0.656651\nvn 0.439904 0.612612 0.656651\nvn 0.470118 0.361470 0.805189\nvn 0.185192 0.391047 0.901547\nvn 0.168097 0.134832 0.976506\nvn 0.185192 0.391047 0.901547\nvn 0.470118 0.361470 0.805189\nvn 0.470118 0.361470 0.805189\nvn 0.399041 0.053043 0.915398\nvn 0.168097 0.134832 0.976506\nvn 0.168097 0.134832 0.976506\nvn 0.399041 0.053043 0.915398\nvn 0.153756 -0.354115 0.922476\nvn 0.153756 -0.354115 0.922476\nvn 0.170726 -0.345908 0.922605\nvn 0.168097 0.134832 0.976506\nvn 0.170726 -0.345908 0.922605\nvn 0.153756 -0.354115 0.922476\nvn 0.024537 -0.550406 0.834536\nvn 0.024537 -0.550406 0.834536\nvn 0.027498 -0.565436 0.824334\nvn 0.170726 -0.345908 0.922605\nvn -0.335836 -0.807669 0.484650\nvn -0.336902 -0.806198 0.486356\nvn -0.350609 -0.827874 0.437834\nvn -0.350609 -0.827874 0.437834\nvn -0.352952 -0.828651 0.434468\nvn -0.335836 -0.807669 0.484650\nvn -0.352952 -0.828651 0.434468\nvn -0.350609 -0.827874 0.437834\nvn -0.386214 -0.842409 0.375747\nvn -0.386214 -0.842409 0.375747\nvn -0.385604 -0.842866 0.375350\nvn -0.352952 -0.828651 0.434468\nvn -0.385604 -0.842866 0.375350\nvn -0.386214 -0.842409 0.375747\nvn -0.405288 -0.851136 0.333630\nvn -0.405288 -0.851136 0.333630\nvn -0.404953 -0.851534 0.333021\nvn -0.385604 -0.842866 0.375350\nvn -0.404953 -0.851534 0.333021\nvn -0.405288 -0.851136 0.333630\nvn -0.415187 -0.859948 0.296833\nvn -0.415187 -0.859948 0.296833\nvn -0.415576 -0.860025 0.296065\nvn -0.404953 -0.851534 0.333021\nvn -0.413140 -0.873524 0.257431\nvn -0.415576 -0.860025 0.296065\nvn -0.415187 -0.859948 0.296833\nvn -0.415187 -0.859948 0.296833\nvn -0.413082 -0.873561 0.257402\nvn -0.413140 -0.873524 0.257431\nvn -0.413140 -0.873524 0.257431\nvn -0.413082 -0.873561 0.257402\nvn -0.412158 -0.882059 0.228251\nvn -0.412158 -0.882059 0.228251\nvn -0.412531 -0.882316 0.226576\nvn -0.413140 -0.873524 0.257431\nvn -0.412531 -0.882316 0.226576\nvn -0.412158 -0.882059 0.228251\nvn -0.415547 -0.883129 0.217723\nvn -0.415547 -0.883129 0.217723\nvn -0.415485 -0.883159 0.217723\nvn -0.412531 -0.882316 0.226576\nvn -0.509699 -0.064243 -0.857951\nvn -0.513390 -0.066196 -0.855599\nvn -0.506277 -0.062381 -0.860112\nvn -0.506277 -0.062381 -0.860112\nvn -0.503202 -0.060520 -0.862047\nvn -0.509699 -0.064243 -0.857951\nvn -0.513390 -0.066196 -0.855599\nvn -0.509699 -0.064243 -0.857951\nvn -0.516324 -0.067295 -0.853745\nvn -0.516324 -0.067295 -0.853745\nvn -0.520996 -0.069462 -0.850728\nvn -0.513390 -0.066196 -0.855599\nvn 0.970990 -0.198434 -0.133429\nvn 0.973451 -0.183910 -0.136270\nvn 0.973494 -0.183663 -0.136298\nvn 0.973494 -0.183663 -0.136298\nvn 0.970988 -0.198464 -0.133398\nvn 0.970990 -0.198434 -0.133429\nvn 0.975732 -0.169107 -0.139107\nvn 0.973494 -0.183663 -0.136298\nvn 0.973451 -0.183910 -0.136270\nvn 0.973451 -0.183910 -0.136270\nvn 0.975736 -0.169108 -0.139077\nvn 0.975732 -0.169107 -0.139107\nvn 0.535424 0.813727 -0.226207\nvn 0.535424 0.813727 -0.226207\nvn 0.535424 0.813727 -0.226207\nvn 0.535424 0.813727 -0.226207\nvn 0.535424 0.813727 -0.226207\nvn 0.535424 0.813727 -0.226207\nvn -0.976482 0.163917 0.140051\nvn -0.973505 0.183604 0.136299\nvn -0.973596 0.183054 0.136391\nvn -0.973596 0.183054 0.136391\nvn -0.976482 0.163917 0.140051\nvn -0.976482 0.163917 0.140051\nvn -0.970230 0.202676 0.132575\nvn -0.973596 0.183054 0.136391\nvn -0.973505 0.183604 0.136299\nvn -0.973505 0.183604 0.136299\nvn -0.970230 0.202676 0.132575\nvn -0.970230 0.202676 0.132575\nvn 0.251755 -0.960843 0.115760\nvn 0.251755 -0.960843 0.115760\nvn 0.251754 -0.960840 0.115790\nvn 0.251754 -0.960840 0.115790\nvn 0.251726 -0.960847 0.115791\nvn 0.251755 -0.960843 0.115760\nvn 0.867945 -0.485291 -0.105659\nvn 0.932310 -0.352439 -0.081151\nvn 0.927950 -0.372217 0.019044\nvn 0.927950 -0.372217 0.019044\nvn 0.858254 -0.513206 -0.004517\nvn 0.867945 -0.485291 -0.105659\nvn 0.927950 -0.372217 0.019044\nvn 0.932310 -0.352439 -0.081151\nvn 0.978348 -0.196237 -0.065768\nvn 0.978348 -0.196237 -0.065768\nvn 0.973409 -0.226025 0.037264\nvn 0.927950 -0.372217 0.019044\nvn 0.916004 -0.278060 -0.289170\nvn 0.932310 -0.352439 -0.081151\nvn 0.867945 -0.485291 -0.105659\nvn 0.978348 -0.196237 -0.065768\nvn 0.932310 -0.352439 -0.081151\nvn 0.916004 -0.278060 -0.289170\nvn 0.867945 -0.485291 -0.105659\nvn 0.856094 -0.412344 -0.311570\nvn 0.916004 -0.278060 -0.289170\nvn 0.916004 -0.278060 -0.289170\nvn 0.856094 -0.412344 -0.311570\nvn 0.838073 -0.374813 -0.396421\nvn 0.838073 -0.374813 -0.396421\nvn 0.879192 -0.261395 -0.398365\nvn 0.916004 -0.278060 -0.289170\nvn 0.916004 -0.278060 -0.289170\nvn 0.879192 -0.261395 -0.398365\nvn 0.913340 -0.066012 -0.401812\nvn 0.913340 -0.066012 -0.401812\nvn 0.951310 -0.112737 -0.286879\nvn 0.916004 -0.278060 -0.289170\nvn 0.916004 -0.278060 -0.289170\nvn 0.951310 -0.112737 -0.286879\nvn 0.978348 -0.196237 -0.065768\nvn 0.957764 -0.097235 -0.270617\nvn 0.951310 -0.112737 -0.286879\nvn 0.913340 -0.066012 -0.401812\nvn 0.978348 -0.196237 -0.065768\nvn 0.951310 -0.112737 -0.286879\nvn 0.957764 -0.097235 -0.270617\nvn 0.913340 -0.066012 -0.401812\nvn 0.911518 -0.028962 -0.410239\nvn 0.957764 -0.097235 -0.270617\nvn 0.975638 -0.214458 0.046237\nvn 0.973409 -0.226025 0.037264\nvn 0.978348 -0.196237 -0.065768\nvn 0.978348 -0.196237 -0.065768\nvn 0.981221 -0.187906 -0.043551\nvn 0.975638 -0.214458 0.046237\nvn 0.957764 -0.097235 -0.270617\nvn 0.981221 -0.187906 -0.043551\nvn 0.978348 -0.196237 -0.065768\nvn 0.656386 0.740986 -0.141764\nvn 0.704378 0.700716 -0.113348\nvn 0.583858 0.771886 -0.251598\nvn 0.583858 0.771886 -0.251598\nvn 0.484977 0.821326 -0.300368\nvn 0.656386 0.740986 -0.141764\nvn 0.704378 0.700716 -0.113348\nvn 0.656386 0.740986 -0.141764\nvn 0.728442 0.661269 0.179150\nvn 0.728442 0.661269 0.179150\nvn 0.757642 0.649879 0.060306\nvn 0.704378 0.700716 -0.113348\nvn 0.730262 0.632174 0.258985\nvn 0.757642 0.649879 0.060306\nvn 0.728442 0.661269 0.179150\nvn 0.728442 0.661269 0.179150\nvn 0.659184 0.649692 0.378651\nvn 0.730262 0.632174 0.258985\nvn -0.121343 0.346207 -0.930278\nvn -0.037996 0.322584 -0.945778\nvn -0.068607 0.331897 -0.940817\nvn -0.121343 0.346207 -0.930278\nvn -0.068607 0.331897 -0.940817\nvn -0.126076 0.346183 -0.929657\nvn -0.130133 0.344406 -0.929758\nvn -0.121343 0.346207 -0.930278\nvn -0.126076 0.346183 -0.929657\nvn 0.112006 -0.370963 0.921868\nvn 0.112830 -0.371175 0.921682\nvn 0.078464 -0.361373 0.929114\nvn 0.112006 -0.370963 0.921868\nvn 0.078464 -0.361373 0.929114\nvn 0.099247 -0.367478 0.924722\nvn 0.078464 -0.361373 0.929114\nvn 0.056430 -0.354848 0.933219\nvn 0.099247 -0.367478 0.924722\nvn -0.187022 -0.342030 -0.920890\nvn -0.187022 -0.342030 -0.920890\nvn -0.187022 -0.342030 -0.920890\nvn -0.187022 -0.342030 -0.920890\nvn -0.187022 -0.342030 -0.920890\nvn -0.187022 -0.342030 -0.920890\nvn -0.187022 -0.342030 -0.920890\nvn -0.187022 -0.342030 -0.920890\nvn -0.186993 -0.342032 -0.920895\nvn -0.187054 -0.342001 -0.920894\nvn -0.187022 -0.342030 -0.920890\nvn -0.186993 -0.342032 -0.920895\nvn -0.187022 -0.342030 -0.920890\nvn -0.187054 -0.342001 -0.920894\nvn -0.187052 -0.342028 -0.920885\nvn -0.187052 -0.342028 -0.920885\nvn -0.187022 -0.342030 -0.920890\nvn -0.187052 -0.342028 -0.920885\nvn -0.187022 -0.342030 -0.920890\nvn -0.187052 -0.342028 -0.920885\nvn -0.187019 -0.341994 -0.920904\nvn -0.187054 -0.342001 -0.920894\nvn -0.187022 -0.342030 -0.920890\nvn -0.187019 -0.341994 -0.920904\nvn -0.187022 -0.342030 -0.920890\nvn -0.187054 -0.342001 -0.920894\nvn -0.187054 -0.342001 -0.920894\nvn -0.187022 -0.342030 -0.920890\nvn -0.187022 -0.342030 -0.920890\nvn -0.187054 -0.342001 -0.920894\nvn -0.794541 0.265579 -0.546052\nvn -0.794554 0.265583 -0.546031\nvn -0.794541 0.265579 -0.546052\nvn -0.794541 0.265579 -0.546052\nvn -0.794510 0.265609 -0.546082\nvn -0.794541 0.265579 -0.546052\nvn -0.916358 -0.191750 -0.351455\nvn -0.916363 -0.191721 -0.351457\nvn -0.916358 -0.191750 -0.351455\nvn -0.916358 -0.191750 -0.351455\nvn -0.916358 -0.191750 -0.351455\nvn -0.916358 -0.191750 -0.351455\nvn -0.409263 0.548309 -0.729288\nvn -0.409263 0.548309 -0.729288\nvn -0.409263 0.548309 -0.729288\nvn -0.409263 0.548309 -0.729288\nvn -0.409254 0.548297 -0.729302\nvn -0.409263 0.548309 -0.729288\nvn 0.092290 0.548277 -0.831189\nvn 0.092258 0.548299 -0.831178\nvn 0.092290 0.548277 -0.831189\nvn 0.092290 0.548277 -0.831189\nvn 0.092289 0.548241 -0.831213\nvn 0.092290 0.548277 -0.831189\nvn 0.518525 0.265611 -0.812763\nvn 0.518520 0.265547 -0.812786\nvn 0.518512 0.265604 -0.812773\nvn 0.518512 0.265604 -0.812773\nvn 0.518494 0.265672 -0.812762\nvn 0.518525 0.265611 -0.812763\nvn 0.706655 -0.191756 -0.681079\nvn 0.706674 -0.191722 -0.681068\nvn 0.706674 -0.191722 -0.681068\nvn 0.706674 -0.191722 -0.681068\nvn 0.706640 -0.191752 -0.681096\nvn 0.706655 -0.191756 -0.681079\nvn 0.584778 -0.649112 -0.486506\nvn 0.584778 -0.649112 -0.486506\nvn 0.584778 -0.649112 -0.486506\nvn 0.584778 -0.649112 -0.486506\nvn 0.584778 -0.649112 -0.486506\nvn 0.584778 -0.649112 -0.486506\nvn 0.199536 -0.931789 -0.303241\nvn 0.199472 -0.931804 -0.303236\nvn 0.199536 -0.931789 -0.303241\nvn 0.199536 -0.931789 -0.303241\nvn 0.199567 -0.931792 -0.303211\nvn 0.199536 -0.931789 -0.303241\nvn -0.302021 -0.931791 -0.201368\nvn -0.301959 -0.931818 -0.201336\nvn -0.302021 -0.931791 -0.201368\nvn -0.302021 -0.931791 -0.201368\nvn -0.302045 -0.931771 -0.201424\nvn -0.302021 -0.931791 -0.201368\nvn -0.728242 -0.649107 -0.219828\nvn -0.728242 -0.649107 -0.219828\nvn -0.728242 -0.649107 -0.219828\nvn -0.728242 -0.649107 -0.219828\nvn -0.728242 -0.649107 -0.219828\nvn -0.728242 -0.649107 -0.219828\nvn -0.832844 0.552340 -0.035952\nvn -0.832844 0.552340 -0.035952\nvn -0.832844 0.552340 -0.035952\nvn -0.832844 0.552340 -0.035952\nvn -0.832844 0.552340 -0.035952\nvn -0.832844 0.552340 -0.035952\nvn -0.979991 -0.000000 0.199044\nvn -0.979991 -0.000000 0.199044\nvn -0.979991 -0.000000 0.199044\nvn -0.979991 -0.000000 0.199044\nvn -0.979991 -0.000000 0.199044\nvn -0.979991 -0.000000 0.199044\nvn -0.367568 0.893711 -0.257243\nvn -0.367568 0.893711 -0.257243\nvn -0.367568 0.893711 -0.257243\nvn -0.367568 0.893711 -0.257243\nvn -0.367568 0.893711 -0.257243\nvn -0.367568 0.893711 -0.257243\nvn 0.238048 0.893718 -0.380266\nvn 0.238083 0.893705 -0.380274\nvn 0.238083 0.893705 -0.380274\nvn 0.238083 0.893705 -0.380274\nvn 0.238048 0.893718 -0.380266\nvn 0.238048 0.893718 -0.380266\nvn 0.752834 0.552319 -0.358029\nvn 0.752821 0.552340 -0.358023\nvn 0.752821 0.552340 -0.358023\nvn 0.752821 0.552340 -0.358023\nvn 0.752834 0.552319 -0.358029\nvn 0.752834 0.552319 -0.358029\nvn 0.979991 0.000000 -0.199044\nvn 0.979991 0.000000 -0.199044\nvn 0.979991 0.000000 -0.199044\nvn 0.979991 0.000000 -0.199044\nvn 0.979991 0.000000 -0.199044\nvn 0.979991 0.000000 -0.199044\nvn 0.832843 -0.552339 0.035982\nvn 0.832852 -0.552325 0.035981\nvn 0.832852 -0.552325 0.035981\nvn 0.832852 -0.552325 0.035981\nvn 0.832843 -0.552339 0.035982\nvn 0.832843 -0.552339 0.035982\nvn 0.367568 -0.893711 0.257243\nvn 0.367605 -0.893695 0.257247\nvn 0.367578 -0.893705 0.257250\nvn 0.367578 -0.893705 0.257250\nvn 0.367542 -0.893721 0.257246\nvn 0.367568 -0.893711 0.257243\nvn -0.238083 -0.893705 0.380274\nvn -0.238112 -0.893698 0.380271\nvn -0.238083 -0.893705 0.380274\nvn -0.238083 -0.893705 0.380274\nvn -0.238051 -0.893701 0.380303\nvn -0.238083 -0.893705 0.380274\nvn -0.752800 -0.552347 0.358058\nvn -0.752813 -0.552334 0.358050\nvn -0.752813 -0.552334 0.358050\nvn -0.752813 -0.552334 0.358050\nvn -0.752779 -0.552362 0.358078\nvn -0.752800 -0.552347 0.358058\nvn -0.857924 -0.513760 -0.004242\nvn -0.928012 -0.372053 0.019257\nvn -0.932371 -0.352256 -0.081243\nvn -0.932371 -0.352256 -0.081243\nvn -0.867839 -0.485436 -0.105870\nvn -0.857924 -0.513760 -0.004242\nvn -0.978348 -0.196238 -0.065768\nvn -0.932371 -0.352256 -0.081243\nvn -0.928012 -0.372053 0.019257\nvn -0.928012 -0.372053 0.019257\nvn -0.973408 -0.226025 0.037264\nvn -0.978348 -0.196238 -0.065768\nvn -0.867839 -0.485436 -0.105870\nvn -0.932371 -0.352256 -0.081243\nvn -0.916004 -0.278061 -0.289170\nvn -0.916004 -0.278061 -0.289170\nvn -0.932371 -0.352256 -0.081243\nvn -0.978348 -0.196238 -0.065768\nvn -0.916004 -0.278061 -0.289170\nvn -0.856093 -0.412345 -0.311570\nvn -0.867839 -0.485436 -0.105870\nvn -0.838072 -0.374813 -0.396421\nvn -0.856093 -0.412345 -0.311570\nvn -0.916004 -0.278061 -0.289170\nvn -0.916004 -0.278061 -0.289170\nvn -0.879192 -0.261396 -0.398365\nvn -0.838072 -0.374813 -0.396421\nvn -0.913340 -0.066013 -0.401812\nvn -0.879192 -0.261396 -0.398365\nvn -0.916004 -0.278061 -0.289170\nvn -0.916004 -0.278061 -0.289170\nvn -0.951310 -0.112738 -0.286879\nvn -0.913340 -0.066013 -0.401812\nvn -0.978348 -0.196238 -0.065768\nvn -0.951310 -0.112738 -0.286879\nvn -0.916004 -0.278061 -0.289170\nvn -0.913340 -0.066013 -0.401812\nvn -0.951310 -0.112738 -0.286879\nvn -0.957764 -0.097236 -0.270617\nvn -0.957764 -0.097236 -0.270617\nvn -0.951310 -0.112738 -0.286879\nvn -0.978348 -0.196238 -0.065768\nvn -0.957764 -0.097236 -0.270617\nvn -0.911518 -0.028963 -0.410239\nvn -0.913340 -0.066013 -0.401812\nvn -0.978348 -0.196238 -0.065768\nvn -0.973408 -0.226025 0.037264\nvn -0.975638 -0.214459 0.046237\nvn -0.975638 -0.214459 0.046237\nvn -0.981221 -0.187907 -0.043551\nvn -0.978348 -0.196238 -0.065768\nvn -0.978348 -0.196238 -0.065768\nvn -0.981221 -0.187907 -0.043551\nvn -0.957764 -0.097236 -0.270617\nvn -0.655251 0.742811 -0.137398\nvn -0.668491 0.714391 -0.206798\nvn -0.570164 0.775254 -0.271836\nvn -0.570164 0.775254 -0.271836\nvn -0.553566 0.821681 -0.135660\nvn -0.655251 0.742811 -0.137398\nvn -0.668491 0.714391 -0.206798\nvn -0.655251 0.742811 -0.137398\nvn -0.756701 0.651072 0.059238\nvn -0.756701 0.651072 0.059238\nvn -0.728851 0.661068 0.178230\nvn -0.668491 0.714391 -0.206798\nvn -0.728851 0.661068 0.178230\nvn -0.756701 0.651072 0.059238\nvn -0.730262 0.632173 0.258985\nvn -0.730262 0.632173 0.258985\nvn -0.659184 0.649692 0.378651\nvn -0.728851 0.661068 0.178230\nvn 0.121343 0.346207 -0.930278\nvn 0.130132 0.344406 -0.929758\nvn 0.126076 0.346184 -0.929657\nvn 0.121343 0.346207 -0.930278\nvn 0.126076 0.346184 -0.929657\nvn 0.068607 0.331897 -0.940817\nvn 0.121343 0.346207 -0.930278\nvn 0.068607 0.331897 -0.940817\nvn 0.037996 0.322584 -0.945778\nvn -0.112373 -0.367791 0.923094\nvn -0.114141 -0.369647 0.922135\nvn -0.119055 -0.367328 0.922440\nvn -0.112373 -0.367791 0.923094\nvn -0.119055 -0.367328 0.922440\nvn -0.079289 -0.365375 0.927477\nvn -0.112373 -0.367791 0.923094\nvn -0.079289 -0.365375 0.927477\nvn -0.076938 -0.365280 0.927713\nvn 0.187022 -0.342030 -0.920890\nvn 0.187022 -0.342030 -0.920890\nvn 0.187022 -0.342030 -0.920890\nvn 0.186993 -0.342032 -0.920895\nvn 0.187022 -0.342030 -0.920890\nvn 0.187022 -0.342030 -0.920890\nvn 0.187022 -0.342030 -0.920890\nvn 0.186993 -0.342032 -0.920895\nvn 0.186993 -0.342032 -0.920895\nvn 0.187054 -0.342001 -0.920894\nvn 0.186993 -0.342032 -0.920895\nvn 0.187022 -0.342030 -0.920890\nvn 0.187022 -0.342030 -0.920890\nvn 0.187052 -0.342028 -0.920885\nvn 0.187054 -0.342001 -0.920894\nvn 0.187052 -0.342028 -0.920885\nvn 0.187052 -0.342028 -0.920885\nvn 0.187022 -0.342030 -0.920890\nvn 0.187022 -0.342030 -0.920890\nvn 0.187019 -0.341993 -0.920904\nvn 0.187052 -0.342028 -0.920885\nvn 0.187054 -0.342001 -0.920894\nvn 0.187019 -0.341993 -0.920904\nvn 0.187022 -0.342030 -0.920890\nvn 0.187022 -0.342030 -0.920890\nvn 0.187054 -0.342001 -0.920894\nvn 0.187054 -0.342001 -0.920894\nvn 0.187022 -0.342030 -0.920890\nvn 0.187054 -0.342001 -0.920894\nvn 0.187022 -0.342030 -0.920890\nvn 0.794541 0.265580 -0.546052\nvn 0.794554 0.265584 -0.546031\nvn 0.794541 0.265580 -0.546052\nvn 0.794541 0.265580 -0.546052\nvn 0.794510 0.265610 -0.546082\nvn 0.794541 0.265580 -0.546052\nvn 0.916358 -0.191749 -0.351455\nvn 0.916363 -0.191720 -0.351457\nvn 0.916358 -0.191749 -0.351455\nvn 0.916358 -0.191749 -0.351455\nvn 0.916353 -0.191755 -0.351464\nvn 0.916358 -0.191749 -0.351455\nvn 0.409263 0.548309 -0.729288\nvn 0.409263 0.548309 -0.729288\nvn 0.409263 0.548309 -0.729288\nvn 0.409263 0.548309 -0.729288\nvn 0.409270 0.548288 -0.729300\nvn 0.409263 0.548309 -0.729288\nvn -0.092290 0.548276 -0.831189\nvn -0.092258 0.548299 -0.831178\nvn -0.092290 0.548276 -0.831189\nvn -0.092290 0.548276 -0.831189\nvn -0.092289 0.548241 -0.831213\nvn -0.092290 0.548276 -0.831189\nvn -0.518525 0.265610 -0.812763\nvn -0.518516 0.265575 -0.812780\nvn -0.518525 0.265610 -0.812763\nvn -0.518525 0.265610 -0.812763\nvn -0.518494 0.265671 -0.812762\nvn -0.518525 0.265610 -0.812763\nvn -0.706670 -0.191752 -0.681064\nvn -0.706674 -0.191722 -0.681068\nvn -0.706670 -0.191752 -0.681064\nvn -0.706670 -0.191752 -0.681064\nvn -0.706636 -0.191781 -0.681092\nvn -0.706670 -0.191752 -0.681064\nvn -0.584778 -0.649112 -0.486506\nvn -0.584778 -0.649112 -0.486506\nvn -0.584778 -0.649112 -0.486506\nvn -0.584778 -0.649112 -0.486506\nvn -0.584778 -0.649112 -0.486506\nvn -0.584778 -0.649112 -0.486506\nvn -0.199536 -0.931789 -0.303241\nvn -0.199471 -0.931804 -0.303236\nvn -0.199536 -0.931789 -0.303241\nvn -0.199536 -0.931789 -0.303241\nvn -0.199567 -0.931792 -0.303211\nvn -0.199536 -0.931789 -0.303241\nvn 0.302021 -0.931791 -0.201368\nvn 0.301959 -0.931818 -0.201336\nvn 0.302021 -0.931791 -0.201368\nvn 0.302021 -0.931791 -0.201368\nvn 0.302045 -0.931771 -0.201424\nvn 0.302021 -0.931791 -0.201368\nvn 0.728242 -0.649106 -0.219828\nvn 0.728242 -0.649106 -0.219828\nvn 0.728242 -0.649106 -0.219828\nvn 0.728242 -0.649106 -0.219828\nvn 0.728242 -0.649106 -0.219828\nvn 0.728242 -0.649106 -0.219828\nvn 0.832829 0.552361 -0.035951\nvn 0.832843 0.552340 -0.035952\nvn 0.832843 0.552340 -0.035952\nvn 0.832843 0.552340 -0.035952\nvn 0.832820 0.552375 -0.035952\nvn 0.832829 0.552361 -0.035951\nvn 0.979991 0.000000 0.199044\nvn 0.979991 0.000000 0.199044\nvn 0.979991 0.000000 0.199044\nvn 0.979991 0.000000 0.199044\nvn 0.979991 0.000000 0.199044\nvn 0.979991 0.000000 0.199044\nvn 0.367578 0.893705 -0.257250\nvn 0.367571 0.893719 -0.257214\nvn 0.367571 0.893719 -0.257214\nvn 0.367571 0.893719 -0.257214\nvn 0.367604 0.893695 -0.257247\nvn 0.367578 0.893705 -0.257250\nvn -0.238083 0.893705 -0.380274\nvn -0.238048 0.893717 -0.380266\nvn -0.238048 0.893717 -0.380266\nvn -0.238048 0.893717 -0.380266\nvn -0.238083 0.893705 -0.380274\nvn -0.238083 0.893705 -0.380274\nvn -0.752848 0.552306 -0.358021\nvn -0.752835 0.552318 -0.358029\nvn -0.752835 0.552318 -0.358029\nvn -0.752835 0.552318 -0.358029\nvn -0.752848 0.552306 -0.358021\nvn -0.752848 0.552306 -0.358021\nvn -0.979991 -0.000000 -0.199044\nvn -0.979991 -0.000000 -0.199044\nvn -0.979991 -0.000000 -0.199044\nvn -0.979991 -0.000000 -0.199044\nvn -0.979991 -0.000000 -0.199044\nvn -0.979991 -0.000000 -0.199044\nvn -0.832843 -0.552340 0.035952\nvn -0.832843 -0.552340 0.035952\nvn -0.832843 -0.552340 0.035952\nvn -0.832843 -0.552340 0.035952\nvn -0.832843 -0.552340 0.035952\nvn -0.832843 -0.552340 0.035952\nvn -0.367578 -0.893705 0.257250\nvn -0.367548 -0.893708 0.257281\nvn -0.367578 -0.893705 0.257250\nvn -0.367578 -0.893705 0.257250\nvn -0.367607 -0.893702 0.257218\nvn -0.367578 -0.893705 0.257250\nvn 0.238083 -0.893705 0.380274\nvn 0.238048 -0.893717 0.380266\nvn 0.238077 -0.893711 0.380264\nvn 0.238077 -0.893711 0.380264\nvn 0.238110 -0.893688 0.380297\nvn 0.238083 -0.893705 0.380274\nvn 0.752814 -0.552334 0.358050\nvn 0.752788 -0.552367 0.358052\nvn 0.752788 -0.552367 0.358052\nvn 0.752788 -0.552367 0.358052\nvn 0.752818 -0.552306 0.358082\nvn 0.752814 -0.552334 0.358050\nvn -0.276564 -0.093785 -0.956408\nvn -0.514855 -0.082066 -0.853340\nvn -0.368248 0.028597 -0.929288\nvn -0.368248 0.028597 -0.929288\nvn -0.144142 0.049838 -0.988301\nvn -0.276564 -0.093785 -0.956408\nvn -0.038698 -0.100864 -0.994147\nvn -0.276564 -0.093785 -0.956408\nvn -0.144142 0.049838 -0.988301\nvn -0.144142 0.049838 -0.988301\nvn 0.345842 0.068698 -0.935775\nvn -0.038698 -0.100864 -0.994147\nvn -0.276564 -0.093785 -0.956408\nvn -0.038698 -0.100864 -0.994147\nvn 0.323350 -0.312119 -0.893324\nvn 0.323350 -0.312119 -0.893324\nvn 0.030061 -0.270338 -0.962296\nvn -0.276564 -0.093785 -0.956408\nvn -0.514855 -0.082066 -0.853340\nvn -0.276564 -0.093785 -0.956408\nvn -0.535666 -0.205544 -0.819032\nvn -0.535666 -0.205544 -0.819032\nvn -0.530575 -0.195139 -0.824870\nvn -0.514855 -0.082066 -0.853340\nvn 0.143623 -0.416768 -0.897595\nvn 0.030061 -0.270338 -0.962296\nvn 0.323350 -0.312119 -0.893324\nvn 0.323350 -0.312119 -0.893324\nvn 0.308216 -0.426845 -0.850180\nvn 0.143623 -0.416768 -0.897595\nvn -0.776250 -0.220347 -0.590664\nvn -0.530575 -0.195139 -0.824870\nvn -0.535666 -0.205544 -0.819032\nvn -0.535666 -0.205544 -0.819032\nvn -0.803061 -0.296955 -0.516635\nvn -0.776250 -0.220347 -0.590664\nvn -0.144142 0.049838 -0.988301\nvn -0.368248 0.028597 -0.929288\nvn -0.109776 0.218087 -0.969736\nvn -0.109776 0.218087 -0.969736\nvn 0.058718 0.265513 -0.962317\nvn -0.144142 0.049838 -0.988301\nvn 0.345842 0.068698 -0.935775\nvn -0.144142 0.049838 -0.988301\nvn 0.058718 0.265513 -0.962317\nvn 0.058718 0.265513 -0.962317\nvn 0.329215 0.295063 -0.896970\nvn 0.345842 0.068698 -0.935775\nvn 0.134651 0.370475 -0.919031\nvn 0.058718 0.265513 -0.962317\nvn -0.109776 0.218087 -0.969736\nvn -0.109776 0.218087 -0.969736\nvn -0.152047 0.339984 -0.928059\nvn 0.134651 0.370475 -0.919031\nvn 0.316329 0.385272 -0.866892\nvn 0.329215 0.295063 -0.896970\nvn 0.058718 0.265513 -0.962317\nvn 0.058718 0.265513 -0.962317\nvn 0.134651 0.370475 -0.919031\nvn 0.316329 0.385272 -0.866892\nvn 0.596681 -0.279647 -0.752176\nvn 0.323350 -0.312119 -0.893324\nvn 0.669268 -0.102455 -0.735923\nvn 0.669268 -0.102455 -0.735923\nvn 0.668427 -0.095799 -0.737583\nvn 0.596681 -0.279647 -0.752176\nvn 0.668427 -0.095799 -0.737583\nvn 0.669268 -0.102455 -0.735923\nvn 0.345842 0.068698 -0.935775\nvn 0.933830 -0.209057 -0.290269\nvn 0.933771 -0.220258 -0.282060\nvn 0.941828 -0.094732 -0.322468\nvn 0.941828 -0.094732 -0.322468\nvn 0.940409 -0.090305 -0.327834\nvn 0.933830 -0.209057 -0.290269\nvn 0.940409 -0.090305 -0.327834\nvn 0.941828 -0.094732 -0.322468\nvn 0.879843 0.012696 -0.475095\nvn 0.345842 0.068698 -0.935775\nvn 0.583013 0.076787 -0.808826\nvn 0.668427 -0.095799 -0.737583\nvn 0.583013 0.076787 -0.808826\nvn 0.345842 0.068698 -0.935775\nvn 0.329215 0.295063 -0.896970\nvn 0.879843 0.012696 -0.475095\nvn 0.870842 0.027681 -0.490783\nvn 0.940409 -0.090305 -0.327834\nvn 0.933771 -0.220258 -0.282060\nvn 0.933830 -0.209057 -0.290269\nvn 0.970682 -0.236032 0.045443\nvn 0.970682 -0.236032 0.045443\nvn 0.941856 -0.317004 0.111426\nvn 0.933771 -0.220258 -0.282060\nvn 0.323350 -0.312119 -0.893324\nvn 0.596681 -0.279647 -0.752176\nvn 0.465940 -0.419580 -0.779007\nvn 0.465940 -0.419580 -0.779007\nvn 0.308216 -0.426845 -0.850180\nvn 0.323350 -0.312119 -0.893324\nvn 0.329215 0.295063 -0.896970\nvn 0.576145 0.245467 -0.779617\nvn 0.583013 0.076787 -0.808826\nvn 0.870842 0.027681 -0.490783\nvn 0.879843 0.012696 -0.475095\nvn 0.576145 0.245467 -0.779617\nvn 0.576145 0.245467 -0.779617\nvn 0.329215 0.295063 -0.896970\nvn 0.316329 0.385272 -0.866892\nvn 0.576145 0.245467 -0.779617\nvn 0.698884 0.189523 -0.689668\nvn 0.870842 0.027681 -0.490783\nvn 0.316329 0.385272 -0.866892\nvn 0.490595 0.365772 -0.790903\nvn 0.576145 0.245467 -0.779617\nvn 0.698884 0.189523 -0.689668\nvn 0.576145 0.245467 -0.779617\nvn 0.490595 0.365772 -0.790903\nvn 0.490595 0.365772 -0.790903\nvn 0.716314 0.328355 -0.615692\nvn 0.698884 0.189523 -0.689668\nvn 0.383838 0.887707 -0.254254\nvn 0.375906 0.887867 -0.265304\nvn 0.388145 0.887535 -0.248245\nvn -0.134988 0.887840 -0.439907\nvn -0.140815 0.883066 -0.447622\nvn -0.131384 0.890756 -0.435078\nvn -0.131384 0.890756 -0.435078\nvn -0.125311 0.895546 -0.426959\nvn -0.134988 0.887840 -0.439907\nvn -0.726669 0.443417 -0.524722\nvn -0.618206 0.615276 -0.489139\nvn -0.621832 0.601903 -0.501037\nvn -0.621832 0.601903 -0.501037\nvn -0.769291 0.361771 -0.526604\nvn -0.726669 0.443417 -0.524722\nvn -0.853225 0.084538 -0.514645\nvn -0.726669 0.443417 -0.524722\nvn -0.769291 0.361771 -0.526604\nvn -0.769291 0.361771 -0.526604\nvn -0.859684 0.075351 -0.505239\nvn -0.853225 0.084538 -0.514645\nvn -0.877451 -0.031526 -0.478629\nvn -0.853225 0.084538 -0.514645\nvn -0.859684 0.075351 -0.505239\nvn -0.859684 0.075351 -0.505239\nvn -0.879998 -0.032320 -0.473876\nvn -0.877451 -0.031526 -0.478629\nvn -0.896412 -0.056064 -0.439661\nvn -0.877451 -0.031526 -0.478629\nvn -0.879998 -0.032320 -0.473876\nvn -0.879998 -0.032320 -0.473876\nvn -0.898456 -0.053806 -0.435754\nvn -0.896412 -0.056064 -0.439661\nvn -0.909578 -0.089237 -0.405837\nvn -0.896412 -0.056064 -0.439661\nvn -0.898456 -0.053806 -0.435754\nvn -0.898456 -0.053806 -0.435754\nvn -0.910909 -0.082128 -0.404350\nvn -0.909578 -0.089237 -0.405837\nvn 0.388145 0.887535 -0.248245\nvn 0.396138 0.887099 -0.236920\nvn 0.383838 0.887707 -0.254254\nvn 0.928697 0.361652 0.082035\nvn 0.813838 0.579874 0.037600\nvn 0.805366 0.592557 0.016175\nvn -0.861982 -0.257246 -0.436820\nvn -0.909578 -0.089237 -0.405837\nvn -0.910909 -0.082128 -0.404350\nvn -0.910909 -0.082128 -0.404350\nvn -0.776250 -0.220347 -0.590664\nvn -0.861982 -0.257246 -0.436820\nvn -0.837176 -0.317676 -0.445216\nvn -0.861982 -0.257246 -0.436820\nvn -0.776250 -0.220347 -0.590664\nvn -0.776250 -0.220347 -0.590664\nvn -0.803061 -0.296955 -0.516635\nvn -0.837176 -0.317676 -0.445216\nvn -0.215192 -0.858299 -0.465849\nvn -0.217603 -0.857658 -0.465910\nvn -0.203594 -0.861257 -0.465603\nvn -0.203594 -0.861257 -0.465603\nvn -0.201519 -0.861777 -0.465543\nvn -0.215192 -0.858299 -0.465849\nvn 0.462060 -0.859296 -0.219341\nvn 0.463588 -0.858598 -0.218853\nvn 0.451470 -0.864057 -0.222667\nvn 0.451470 -0.864057 -0.222667\nvn 0.449910 -0.864753 -0.223124\nvn 0.462060 -0.859296 -0.219341\nvn 0.936093 -0.270311 0.225081\nvn 0.919467 -0.338757 0.199562\nvn 0.941856 -0.317004 0.111426\nvn 0.941856 -0.317004 0.111426\nvn 0.970682 -0.236032 0.045443\nvn 0.936093 -0.270311 0.225081\nvn 0.954937 -0.110905 0.275311\nvn 0.936093 -0.270311 0.225081\nvn 0.970682 -0.236032 0.045443\nvn 0.970682 -0.236032 0.045443\nvn 0.956263 -0.105200 0.272935\nvn 0.954937 -0.110905 0.275311\nvn 0.967691 -0.073794 0.241099\nvn 0.954937 -0.110905 0.275311\nvn 0.956263 -0.105200 0.272935\nvn 0.956263 -0.105200 0.272935\nvn 0.967768 -0.072666 0.241133\nvn 0.967691 -0.073794 0.241099\nvn 0.967691 -0.073794 0.241099\nvn 0.967768 -0.072666 0.241133\nvn 0.977505 -0.059085 0.202466\nvn 0.977505 -0.059085 0.202466\nvn 0.978615 -0.058474 0.197212\nvn 0.967691 -0.073794 0.241099\nvn 0.978615 -0.058474 0.197212\nvn 0.977505 -0.059085 0.202466\nvn 0.986668 0.040132 0.157720\nvn 0.986668 0.040132 0.157720\nvn 0.985618 0.046328 0.162515\nvn 0.978615 -0.058474 0.197212\nvn 0.897491 0.436813 0.060854\nvn 0.985618 0.046328 0.162515\nvn 0.986668 0.040132 0.157720\nvn 0.986668 0.040132 0.157720\nvn 0.928697 0.361652 0.082035\nvn 0.897491 0.436813 0.060854\nvn 0.805366 0.592557 0.016175\nvn 0.897491 0.436813 0.060854\nvn 0.928697 0.361652 0.082035\nvn 0.333607 -0.087713 -0.938623\nvn 0.265973 -0.189340 -0.945203\nvn 0.296008 -0.223860 -0.928583\nvn 0.296008 -0.223860 -0.928583\nvn 0.341147 -0.091528 -0.935544\nvn 0.333607 -0.087713 -0.938623\nvn 0.341878 0.053409 -0.938226\nvn 0.333607 -0.087713 -0.938623\nvn 0.341147 -0.091528 -0.935544\nvn 0.341147 -0.091528 -0.935544\nvn 0.339128 0.051760 -0.939315\nvn 0.341878 0.053409 -0.938226\nvn 0.306011 0.156958 -0.939000\nvn 0.341878 0.053409 -0.938226\nvn 0.339128 0.051760 -0.939315\nvn 0.339128 0.051760 -0.939315\nvn 0.303358 0.178139 -0.936077\nvn 0.306011 0.156958 -0.939000\nvn 0.312088 0.224651 -0.923111\nvn 0.306011 0.156958 -0.939000\nvn 0.303358 0.178139 -0.936077\nvn 0.303358 0.178139 -0.936077\nvn 0.311148 0.241868 -0.919069\nvn 0.312088 0.224651 -0.923111\nvn 0.318712 0.261306 -0.911121\nvn 0.312088 0.224651 -0.923111\nvn 0.311148 0.241868 -0.919069\nvn 0.311148 0.241868 -0.919069\nvn 0.321428 0.272903 -0.906757\nvn 0.318712 0.261306 -0.911121\nvn 0.332571 0.279162 -0.900814\nvn 0.318712 0.261306 -0.911121\nvn 0.321428 0.272903 -0.906757\nvn 0.321428 0.272903 -0.906757\nvn 0.329823 0.279771 -0.901635\nvn 0.332571 0.279162 -0.900814\nvn 0.351796 0.265610 -0.897603\nvn 0.332571 0.279162 -0.900814\nvn 0.329823 0.279771 -0.901635\nvn 0.329823 0.279771 -0.901635\nvn 0.334646 0.266222 -0.903957\nvn 0.351796 0.265610 -0.897603\nvn 0.364945 0.226023 -0.903177\nvn 0.351796 0.265610 -0.897603\nvn 0.334646 0.266222 -0.903957\nvn 0.334646 0.266222 -0.903957\nvn 0.343217 0.238659 -0.908429\nvn 0.364945 0.226023 -0.903177\nvn 0.378007 0.152869 -0.913095\nvn 0.364945 0.226023 -0.903177\nvn 0.343217 0.238659 -0.908429\nvn 0.343217 0.238659 -0.908429\nvn 0.360373 0.178447 -0.915581\nvn 0.378007 0.152869 -0.913095\nvn 0.344259 0.058719 -0.937037\nvn 0.378007 0.152869 -0.913095\nvn 0.360373 0.178447 -0.915581\nvn 0.360373 0.178447 -0.915581\nvn 0.341355 0.059298 -0.938062\nvn 0.344259 0.058719 -0.937037\nvn 0.341022 -0.080113 -0.936635\nvn 0.344259 0.058719 -0.937037\nvn 0.341355 0.059298 -0.938062\nvn 0.341355 0.059298 -0.938062\nvn 0.348136 -0.082860 -0.933775\nvn 0.341022 -0.080113 -0.936635\nvn 0.387040 -0.196907 -0.900793\nvn 0.341022 -0.080113 -0.936635\nvn 0.348136 -0.082860 -0.933775\nvn 0.348136 -0.082860 -0.933775\nvn 0.384239 -0.224714 -0.895469\nvn 0.387040 -0.196907 -0.900793\nvn 0.369254 -0.262344 -0.891531\nvn 0.387040 -0.196907 -0.900793\nvn 0.384239 -0.224714 -0.895469\nvn 0.384239 -0.224714 -0.895469\nvn 0.362933 -0.285200 -0.887097\nvn 0.369254 -0.262344 -0.891531\nvn 0.349022 -0.296772 -0.888882\nvn 0.369254 -0.262344 -0.891531\nvn 0.362933 -0.285200 -0.887097\nvn 0.362933 -0.285200 -0.887097\nvn 0.336292 -0.312792 -0.888295\nvn 0.349022 -0.296772 -0.888882\nvn 0.320025 -0.318437 -0.892290\nvn 0.349022 -0.296772 -0.888882\nvn 0.336292 -0.312792 -0.888295\nvn 0.336292 -0.312792 -0.888295\nvn 0.322958 -0.319631 -0.890805\nvn 0.320025 -0.318437 -0.892290\nvn 0.285537 -0.300461 -0.910050\nvn 0.320025 -0.318437 -0.892290\nvn 0.322958 -0.319631 -0.890805\nvn 0.322958 -0.319631 -0.890805\nvn 0.315631 -0.305925 -0.898213\nvn 0.285537 -0.300461 -0.910050\nvn 0.269789 -0.259718 -0.927233\nvn 0.285537 -0.300461 -0.910050\nvn 0.315631 -0.305925 -0.898213\nvn 0.315631 -0.305925 -0.898213\nvn 0.304185 -0.279983 -0.910539\nvn 0.269789 -0.259718 -0.927233\nvn 0.265973 -0.189340 -0.945203\nvn 0.269789 -0.259718 -0.927233\nvn 0.304185 -0.279983 -0.910539\nvn 0.304185 -0.279983 -0.910539\nvn 0.296008 -0.223860 -0.928583\nvn 0.265973 -0.189340 -0.945203\nvn 0.946400 -0.010376 -0.322832\nvn 0.942909 -0.048219 -0.329542\nvn 0.941851 -0.048128 -0.332567\nvn 0.941851 -0.048128 -0.332567\nvn 0.946548 -0.007996 -0.322464\nvn 0.946400 -0.010376 -0.322832\nvn 0.944669 0.068364 -0.320821\nvn 0.946400 -0.010376 -0.322832\nvn 0.946548 -0.007996 -0.322464\nvn 0.946548 -0.007996 -0.322464\nvn 0.944638 0.065739 -0.321461\nvn 0.944669 0.068364 -0.320821\nvn 0.930969 0.070745 -0.358178\nvn 0.944669 0.068364 -0.320821\nvn 0.944638 0.065739 -0.321461\nvn 0.944638 0.065739 -0.321461\nvn 0.930135 0.060306 -0.362233\nvn 0.930969 0.070745 -0.358178\nvn 0.882615 -0.097844 -0.459802\nvn 0.930969 0.070745 -0.358178\nvn 0.930135 0.060306 -0.362233\nvn 0.930135 0.060306 -0.362233\nvn 0.859672 -0.144998 -0.489837\nvn 0.882615 -0.097844 -0.459802\nvn 0.678380 -0.337115 -0.652805\nvn 0.882615 -0.097844 -0.459802\nvn 0.859672 -0.144998 -0.489837\nvn 0.859672 -0.144998 -0.489837\nvn 0.645051 -0.356859 -0.675692\nvn 0.678380 -0.337115 -0.652805\nvn 0.310716 -0.426749 -0.849318\nvn 0.678380 -0.337115 -0.652805\nvn 0.645051 -0.356859 -0.675692\nvn 0.645051 -0.356859 -0.675692\nvn 0.307114 -0.426748 -0.850628\nvn 0.310716 -0.426749 -0.849318\nvn -0.101201 -0.326400 -0.939799\nvn 0.310716 -0.426749 -0.849318\nvn 0.307114 -0.426748 -0.850628\nvn 0.307114 -0.426748 -0.850628\nvn -0.062198 -0.345261 -0.936444\nvn -0.101201 -0.326400 -0.939799\nvn -0.382100 -0.079075 -0.920732\nvn -0.101201 -0.326400 -0.939799\nvn -0.062198 -0.345261 -0.936444\nvn -0.062198 -0.345261 -0.936444\nvn -0.341902 -0.127569 -0.931037\nvn -0.382100 -0.079075 -0.920732\nvn -0.481130 0.091190 -0.871893\nvn -0.382100 -0.079075 -0.920732\nvn -0.341902 -0.127569 -0.931037\nvn -0.341902 -0.127569 -0.931037\nvn -0.478480 0.080113 -0.874436\nvn -0.481130 0.091190 -0.871893\nvn -0.515767 0.090549 -0.851931\nvn -0.481130 0.091190 -0.871893\nvn -0.478480 0.080113 -0.874436\nvn -0.478480 0.080113 -0.874436\nvn -0.516534 0.088383 -0.851693\nvn -0.515767 0.090549 -0.851931\nvn -0.517941 0.006439 -0.855392\nvn -0.515767 0.090549 -0.851931\nvn -0.516534 0.088383 -0.851693\nvn -0.516534 0.088383 -0.851693\nvn -0.517355 0.009522 -0.855718\nvn -0.517941 0.006439 -0.855392\nvn -0.509085 -0.039522 -0.859808\nvn -0.517941 0.006439 -0.855392\nvn -0.517355 0.009522 -0.855718\nvn -0.517355 0.009522 -0.855718\nvn -0.511625 -0.037630 -0.858385\nvn -0.509085 -0.039522 -0.859808\nvn -0.504815 0.056155 -0.861399\nvn -0.509085 -0.039522 -0.859808\nvn -0.511625 -0.037630 -0.858385\nvn -0.511625 -0.037630 -0.858385\nvn -0.510432 0.078403 -0.856336\nvn -0.504815 0.056155 -0.861399\nvn -0.495471 0.198616 -0.845612\nvn -0.504815 0.056155 -0.861399\nvn -0.510432 0.078403 -0.856336\nvn -0.510432 0.078403 -0.856336\nvn -0.505367 0.217296 -0.835097\nvn -0.495471 0.198616 -0.845612\nvn -0.081272 0.536797 -0.839788\nvn -0.082524 0.533475 -0.841780\nvn -0.081364 0.536528 -0.839951\nvn -0.081364 0.536528 -0.839951\nvn -0.080326 0.539269 -0.838294\nvn -0.081272 0.536797 -0.839788\nvn 0.604273 0.532157 -0.593012\nvn 0.606852 0.533544 -0.589120\nvn 0.604458 0.532251 -0.592739\nvn 0.604458 0.532251 -0.592739\nvn 0.602395 0.531132 -0.595834\nvn 0.604273 0.532157 -0.593012\nvn 0.944079 0.054691 -0.325151\nvn 0.943217 0.170662 -0.284985\nvn 0.931768 0.170020 -0.320783\nvn 0.931768 0.170020 -0.320783\nvn 0.935630 0.066777 -0.346608\nvn 0.944079 0.054691 -0.325151\nvn 0.942909 -0.048219 -0.329542\nvn 0.944079 0.054691 -0.325151\nvn 0.935630 0.066777 -0.346608\nvn 0.935630 0.066777 -0.346608\nvn 0.941851 -0.048128 -0.332567\nvn 0.942909 -0.048219 -0.329542\nvn 0.343373 -0.076359 -0.936090\nvn 0.358386 -0.194010 -0.913192\nvn 0.360370 -0.182657 -0.914751\nvn 0.358662 -0.238966 -0.902362\nvn 0.360370 -0.182657 -0.914751\nvn 0.358386 -0.194010 -0.913192\nvn 0.358386 -0.194010 -0.913192\nvn 0.360159 -0.245253 -0.900076\nvn 0.358662 -0.238966 -0.902362\nvn 0.353505 -0.272018 -0.895009\nvn 0.358662 -0.238966 -0.902362\nvn 0.360159 -0.245253 -0.900076\nvn 0.360159 -0.245253 -0.900076\nvn 0.343650 -0.281055 -0.896054\nvn 0.353505 -0.272018 -0.895009\nvn 0.326035 -0.288527 -0.900252\nvn 0.353505 -0.272018 -0.895009\nvn 0.343650 -0.281055 -0.896054\nvn 0.343650 -0.281055 -0.896054\nvn 0.327170 -0.288624 -0.899809\nvn 0.326035 -0.288527 -0.900252\nvn 0.291916 -0.269423 -0.917712\nvn 0.326035 -0.288527 -0.900252\nvn 0.327170 -0.288624 -0.899809\nvn 0.327170 -0.288624 -0.899809\nvn 0.314587 -0.276835 -0.907963\nvn 0.291916 -0.269423 -0.917712\nvn 0.301168 -0.239732 -0.922945\nvn 0.291916 -0.269423 -0.917712\nvn 0.314587 -0.276835 -0.907963\nvn 0.314587 -0.276835 -0.907963\nvn 0.310167 -0.246382 -0.918201\nvn 0.301168 -0.239732 -0.922945\nvn 0.310101 -0.182044 -0.933111\nvn 0.301168 -0.239732 -0.922945\nvn 0.310167 -0.246382 -0.918201\nvn 0.310167 -0.246382 -0.918201\nvn 0.315323 -0.194895 -0.928756\nvn 0.310101 -0.182044 -0.933111\nvn 0.338553 -0.075719 -0.937896\nvn 0.310101 -0.182044 -0.933111\nvn 0.315323 -0.194895 -0.928756\nvn 0.315323 -0.194895 -0.928756\nvn 0.339647 -0.078129 -0.937302\nvn 0.338553 -0.075719 -0.937896\nvn 0.342758 0.051699 -0.938000\nvn 0.338553 -0.075719 -0.937896\nvn 0.339647 -0.078129 -0.937302\nvn 0.339647 -0.078129 -0.937302\nvn 0.342513 0.049441 -0.938211\nvn 0.342758 0.051699 -0.938000\nvn 0.316303 0.146280 -0.937312\nvn 0.342758 0.051699 -0.938000\nvn 0.342513 0.049441 -0.938211\nvn 0.342513 0.049441 -0.938211\nvn 0.317157 0.158579 -0.935021\nvn 0.316303 0.146280 -0.937312\nvn 0.319320 0.206888 -0.924787\nvn 0.316303 0.146280 -0.937312\nvn 0.317157 0.158579 -0.935021\nvn 0.317157 0.158579 -0.935021\nvn 0.319050 0.211958 -0.923732\nvn 0.319320 0.206888 -0.924787\nvn 0.322190 0.235027 -0.917037\nvn 0.319320 0.206888 -0.924787\nvn 0.319050 0.211958 -0.923732\nvn 0.319050 0.211958 -0.923732\nvn 0.322924 0.238142 -0.915974\nvn 0.322190 0.235027 -0.917037\nvn 0.332664 0.246202 -0.910340\nvn 0.322190 0.235027 -0.917037\nvn 0.322924 0.238142 -0.915974\nvn 0.322924 0.238142 -0.915974\nvn 0.332112 0.246078 -0.910576\nvn 0.332664 0.246202 -0.910340\nvn 0.345779 0.235301 -0.908334\nvn 0.332664 0.246202 -0.910340\nvn 0.332112 0.246078 -0.910576\nvn 0.332112 0.246078 -0.910576\nvn 0.340836 0.235424 -0.910168\nvn 0.345779 0.235301 -0.908334\nvn 0.352255 0.207318 -0.912653\nvn 0.345779 0.235301 -0.908334\nvn 0.340836 0.235424 -0.910168\nvn 0.340836 0.235424 -0.910168\nvn 0.346332 0.211498 -0.913960\nvn 0.352255 0.207318 -0.912653\nvn 0.361926 0.145057 -0.920852\nvn 0.352255 0.207318 -0.912653\nvn 0.346332 0.211498 -0.913960\nvn 0.346332 0.211498 -0.913960\nvn 0.355949 0.159434 -0.920805\nvn 0.361926 0.145057 -0.920852\nvn 0.340656 0.052096 -0.938743\nvn 0.361926 0.145057 -0.920852\nvn 0.355949 0.159434 -0.920805\nvn 0.355949 0.159434 -0.920805\nvn 0.340199 0.051791 -0.938926\nvn 0.340656 0.052096 -0.938743\nvn 0.342455 -0.075718 -0.936478\nvn 0.340656 0.052096 -0.938743\nvn 0.340199 0.051791 -0.938926\nvn 0.340199 0.051791 -0.938926\nvn 0.343373 -0.076359 -0.936090\nvn 0.342455 -0.075718 -0.936478\nvn 0.360370 -0.182657 -0.914751\nvn 0.342455 -0.075718 -0.936478\nvn 0.343373 -0.076359 -0.936090\nvn -0.938430 -0.051761 -0.341569\nvn -0.938747 -0.044711 -0.341695\nvn -0.938740 -0.044864 -0.341693\nvn -0.938740 -0.044864 -0.341693\nvn -0.938460 -0.051211 -0.341569\nvn -0.938430 -0.051761 -0.341569\nvn -0.938430 -0.051761 -0.341569\nvn -0.938460 -0.051211 -0.341569\nvn -0.933576 -0.113897 -0.339799\nvn -0.933576 -0.113897 -0.339799\nvn -0.931453 -0.132088 -0.339040\nvn -0.938430 -0.051761 -0.341569\nvn -0.922639 -0.189710 -0.335777\nvn -0.931453 -0.132088 -0.339040\nvn -0.933576 -0.113897 -0.339799\nvn -0.933576 -0.113897 -0.339799\nvn -0.922649 -0.189676 -0.335770\nvn -0.922639 -0.189710 -0.335777\nvn -0.938025 0.059542 -0.341414\nvn -0.938740 -0.044864 -0.341693\nvn -0.938747 -0.044711 -0.341695\nvn -0.938747 -0.044711 -0.341695\nvn -0.936311 0.084841 -0.340771\nvn -0.938025 0.059542 -0.341414\nvn -0.923143 0.186929 -0.335955\nvn -0.938025 0.059542 -0.341414\nvn -0.936311 0.084841 -0.340771\nvn -0.936311 0.084841 -0.340771\nvn -0.923152 0.186931 -0.335927\nvn -0.923143 0.186929 -0.335955\nvn -0.693913 0.674319 -0.252546\nvn -0.693904 0.674341 -0.252512\nvn -0.693913 0.674319 -0.252546\nvn -0.693913 0.674319 -0.252546\nvn -0.693907 0.674314 -0.252574\nvn -0.693913 0.674319 -0.252546\nvn -0.295307 0.949340 -0.107459\nvn -0.295306 0.949337 -0.107489\nvn -0.295307 0.949340 -0.107459\nvn -0.295307 0.949340 -0.107459\nvn -0.295299 0.949343 -0.107456\nvn -0.295307 0.949340 -0.107459\nvn 0.298054 0.948366 0.108467\nvn 0.298046 0.948370 0.108463\nvn 0.298046 0.948370 0.108463\nvn 0.298046 0.948370 0.108463\nvn 0.298054 0.948366 0.108467\nvn 0.298054 0.948366 0.108467\nvn 0.704441 0.661836 0.256391\nvn 0.704441 0.661836 0.256391\nvn 0.704441 0.661836 0.256391\nvn 0.704441 0.661836 0.256391\nvn 0.704441 0.661836 0.256391\nvn 0.704441 0.661836 0.256391\nvn 0.939281 0.030275 0.341812\nvn 0.927777 0.158791 0.337662\nvn 0.927772 0.158820 0.337660\nvn 0.927772 0.158820 0.337660\nvn 0.938243 0.055819 0.341446\nvn 0.939281 0.030275 0.341812\nvn 0.937268 -0.071780 0.341141\nvn 0.939281 0.030275 0.341812\nvn 0.938243 0.055819 0.341446\nvn 0.938243 0.055819 0.341446\nvn 0.937264 -0.071841 0.341139\nvn 0.937268 -0.071780 0.341141\nvn 0.937206 -0.072726 0.341110\nvn 0.937268 -0.071780 0.341141\nvn 0.937264 -0.071841 0.341139\nvn 0.937264 -0.071841 0.341139\nvn 0.937190 -0.072911 0.341115\nvn 0.937206 -0.072726 0.341110\nvn 0.931455 -0.132149 0.339011\nvn 0.937206 -0.072726 0.341110\nvn 0.937190 -0.072911 0.341115\nvn 0.937190 -0.072911 0.341115\nvn 0.929041 -0.150186 0.338124\nvn 0.931455 -0.132149 0.339011\nvn 0.919236 -0.207560 0.334551\nvn 0.931455 -0.132149 0.339011\nvn 0.929041 -0.150186 0.338124\nvn 0.929041 -0.150186 0.338124\nvn 0.919236 -0.207560 0.334551\nvn 0.919236 -0.207560 0.334551\nvn 0.700634 -0.666391 0.255020\nvn 0.700650 -0.666377 0.255015\nvn 0.700634 -0.666391 0.255020\nvn 0.700634 -0.666391 0.255020\nvn 0.700634 -0.666391 0.255020\nvn 0.700634 -0.666391 0.255020\nvn -0.000335 -1.000000 -0.000122\nvn 0.191173 -0.979087 0.069584\nvn 0.191173 -0.979087 0.069584\nvn 0.191173 -0.979087 0.069584\nvn -0.000305 -1.000000 -0.000091\nvn -0.000335 -1.000000 -0.000122\nvn -0.191815 -0.978946 -0.069798\nvn -0.000335 -1.000000 -0.000122\nvn -0.000305 -1.000000 -0.000091\nvn -0.000305 -1.000000 -0.000091\nvn -0.191815 -0.978946 -0.069798\nvn -0.191815 -0.978946 -0.069798\nvn -0.707012 -0.658731 -0.257309\nvn -0.706983 -0.658762 -0.257309\nvn -0.707033 -0.658722 -0.257275\nvn -0.707033 -0.658722 -0.257275\nvn -0.707062 -0.658690 -0.257274\nvn -0.707012 -0.658731 -0.257309\nvn 0.276564 -0.093785 -0.956408\nvn 0.144142 0.049838 -0.988301\nvn 0.368248 0.028597 -0.929288\nvn 0.368248 0.028597 -0.929288\nvn 0.514855 -0.082065 -0.853340\nvn 0.276564 -0.093785 -0.956408\nvn 0.144142 0.049838 -0.988301\nvn 0.276564 -0.093785 -0.956408\nvn 0.038698 -0.100864 -0.994147\nvn 0.038698 -0.100864 -0.994147\nvn -0.345842 0.068698 -0.935775\nvn 0.144142 0.049838 -0.988301\nvn -0.323349 -0.312119 -0.893324\nvn 0.038698 -0.100864 -0.994147\nvn 0.276564 -0.093785 -0.956408\nvn 0.276564 -0.093785 -0.956408\nvn -0.030061 -0.270338 -0.962296\nvn -0.323349 -0.312119 -0.893324\nvn 0.535666 -0.205544 -0.819032\nvn 0.276564 -0.093785 -0.956408\nvn 0.514855 -0.082065 -0.853340\nvn 0.514855 -0.082065 -0.853340\nvn 0.530575 -0.195139 -0.824870\nvn 0.535666 -0.205544 -0.819032\nvn -0.323349 -0.312119 -0.893324\nvn -0.030061 -0.270338 -0.962296\nvn -0.143622 -0.416768 -0.897595\nvn -0.143622 -0.416768 -0.897595\nvn -0.308216 -0.426845 -0.850180\nvn -0.323349 -0.312119 -0.893324\nvn 0.776250 -0.220347 -0.590664\nvn 0.803061 -0.296955 -0.516635\nvn 0.535666 -0.205544 -0.819032\nvn 0.535666 -0.205544 -0.819032\nvn 0.530575 -0.195139 -0.824870\nvn 0.776250 -0.220347 -0.590664\nvn 0.109776 0.218087 -0.969736\nvn 0.368248 0.028597 -0.929288\nvn 0.144142 0.049838 -0.988301\nvn 0.144142 0.049838 -0.988301\nvn -0.058718 0.265513 -0.962318\nvn 0.109776 0.218087 -0.969736\nvn -0.058718 0.265513 -0.962318\nvn 0.144142 0.049838 -0.988301\nvn -0.345842 0.068698 -0.935775\nvn -0.345842 0.068698 -0.935775\nvn -0.329215 0.295063 -0.896970\nvn -0.058718 0.265513 -0.962318\nvn 0.109776 0.218087 -0.969736\nvn -0.058718 0.265513 -0.962318\nvn -0.134652 0.370475 -0.919031\nvn -0.134652 0.370475 -0.919031\nvn 0.152047 0.339984 -0.928059\nvn 0.109776 0.218087 -0.969736\nvn -0.316329 0.385272 -0.866892\nvn -0.134652 0.370475 -0.919031\nvn -0.058718 0.265513 -0.962318\nvn -0.058718 0.265513 -0.962318\nvn -0.329215 0.295063 -0.896970\nvn -0.316329 0.385272 -0.866892\nvn -0.669285 -0.102453 -0.735908\nvn -0.323349 -0.312119 -0.893324\nvn -0.596681 -0.279648 -0.752176\nvn -0.596681 -0.279648 -0.752176\nvn -0.668427 -0.095799 -0.737583\nvn -0.669285 -0.102453 -0.735908\nvn -0.345842 0.068698 -0.935775\nvn -0.669285 -0.102453 -0.735908\nvn -0.668427 -0.095799 -0.737583\nvn -0.941828 -0.094732 -0.322468\nvn -0.933771 -0.220259 -0.282060\nvn -0.933830 -0.209058 -0.290269\nvn -0.933830 -0.209058 -0.290269\nvn -0.940409 -0.090306 -0.327834\nvn -0.941828 -0.094732 -0.322468\nvn -0.879830 0.012696 -0.475119\nvn -0.941828 -0.094732 -0.322468\nvn -0.940409 -0.090306 -0.327834\nvn -0.668427 -0.095799 -0.737583\nvn -0.583033 0.076785 -0.808812\nvn -0.345842 0.068698 -0.935775\nvn -0.329215 0.295063 -0.896970\nvn -0.345842 0.068698 -0.935775\nvn -0.583033 0.076785 -0.808812\nvn -0.940409 -0.090306 -0.327834\nvn -0.870842 0.027681 -0.490783\nvn -0.879830 0.012696 -0.475119\nvn -0.970682 -0.236033 0.045443\nvn -0.933830 -0.209058 -0.290269\nvn -0.933771 -0.220259 -0.282060\nvn -0.933771 -0.220259 -0.282060\nvn -0.941856 -0.317004 0.111426\nvn -0.970682 -0.236033 0.045443\nvn -0.465939 -0.419581 -0.779007\nvn -0.596681 -0.279648 -0.752176\nvn -0.323349 -0.312119 -0.893324\nvn -0.323349 -0.312119 -0.893324\nvn -0.308216 -0.426845 -0.850180\nvn -0.465939 -0.419581 -0.779007\nvn -0.583033 0.076785 -0.808812\nvn -0.576140 0.245496 -0.779611\nvn -0.329215 0.295063 -0.896970\nvn -0.576140 0.245496 -0.779611\nvn -0.879830 0.012696 -0.475119\nvn -0.870842 0.027681 -0.490783\nvn -0.316329 0.385272 -0.866892\nvn -0.329215 0.295063 -0.896970\nvn -0.576140 0.245496 -0.779611\nvn -0.870842 0.027681 -0.490783\nvn -0.698899 0.189527 -0.689652\nvn -0.576140 0.245496 -0.779611\nvn -0.576140 0.245496 -0.779611\nvn -0.490595 0.365772 -0.790903\nvn -0.316329 0.385272 -0.866892\nvn -0.490595 0.365772 -0.790903\nvn -0.576140 0.245496 -0.779611\nvn -0.698899 0.189527 -0.689652\nvn -0.698899 0.189527 -0.689652\nvn -0.716314 0.328355 -0.615692\nvn -0.490595 0.365772 -0.790903\nvn -0.388146 0.887534 -0.248245\nvn -0.375906 0.887867 -0.265304\nvn -0.383838 0.887707 -0.254254\nvn 0.131384 0.890756 -0.435078\nvn 0.140784 0.883070 -0.447624\nvn 0.134987 0.887840 -0.439907\nvn 0.134987 0.887840 -0.439907\nvn 0.125310 0.895546 -0.426959\nvn 0.131384 0.890756 -0.435078\nvn 0.621832 0.601903 -0.501037\nvn 0.618197 0.615267 -0.489162\nvn 0.726669 0.443418 -0.524722\nvn 0.726669 0.443418 -0.524722\nvn 0.769291 0.361772 -0.526604\nvn 0.621832 0.601903 -0.501037\nvn 0.769291 0.361772 -0.526604\nvn 0.726669 0.443418 -0.524722\nvn 0.853225 0.084538 -0.514645\nvn 0.853225 0.084538 -0.514645\nvn 0.859684 0.075351 -0.505239\nvn 0.769291 0.361772 -0.526604\nvn 0.859684 0.075351 -0.505239\nvn 0.853225 0.084538 -0.514645\nvn 0.877451 -0.031526 -0.478629\nvn 0.877451 -0.031526 -0.478629\nvn 0.879986 -0.032319 -0.473899\nvn 0.859684 0.075351 -0.505239\nvn 0.879986 -0.032319 -0.473899\nvn 0.877451 -0.031526 -0.478629\nvn 0.896412 -0.056064 -0.439661\nvn 0.896412 -0.056064 -0.439661\nvn 0.898456 -0.053805 -0.435754\nvn 0.879986 -0.032319 -0.473899\nvn 0.898456 -0.053805 -0.435754\nvn 0.896412 -0.056064 -0.439661\nvn 0.909573 -0.089239 -0.405849\nvn 0.909573 -0.089239 -0.405849\nvn 0.910909 -0.082127 -0.404350\nvn 0.898456 -0.053805 -0.435754\nvn -0.383838 0.887707 -0.254254\nvn -0.396138 0.887098 -0.236920\nvn -0.388146 0.887534 -0.248245\nvn -0.805366 0.592557 0.016175\nvn -0.813838 0.579874 0.037600\nvn -0.928697 0.361651 0.082035\nvn 0.910909 -0.082127 -0.404350\nvn 0.909573 -0.089239 -0.405849\nvn 0.861982 -0.257245 -0.436820\nvn 0.861982 -0.257245 -0.436820\nvn 0.776250 -0.220347 -0.590664\nvn 0.910909 -0.082127 -0.404350\nvn 0.776250 -0.220347 -0.590664\nvn 0.861982 -0.257245 -0.436820\nvn 0.837177 -0.317676 -0.445216\nvn 0.837177 -0.317676 -0.445216\nvn 0.803061 -0.296955 -0.516635\nvn 0.776250 -0.220347 -0.590664\nvn 0.203595 -0.861256 -0.465603\nvn 0.217604 -0.857658 -0.465910\nvn 0.215193 -0.858299 -0.465849\nvn 0.215193 -0.858299 -0.465849\nvn 0.201520 -0.861777 -0.465543\nvn 0.203595 -0.861256 -0.465603\nvn -0.451469 -0.864057 -0.222667\nvn -0.463587 -0.858598 -0.218853\nvn -0.462035 -0.859309 -0.219344\nvn -0.462035 -0.859309 -0.219344\nvn -0.449909 -0.864753 -0.223124\nvn -0.451469 -0.864057 -0.222667\nvn -0.941856 -0.317004 0.111426\nvn -0.919466 -0.338758 0.199562\nvn -0.936093 -0.270311 0.225081\nvn -0.936093 -0.270311 0.225081\nvn -0.970682 -0.236033 0.045443\nvn -0.941856 -0.317004 0.111426\nvn -0.970682 -0.236033 0.045443\nvn -0.936093 -0.270311 0.225081\nvn -0.954937 -0.110906 0.275311\nvn -0.954937 -0.110906 0.275311\nvn -0.956263 -0.105201 0.272935\nvn -0.970682 -0.236033 0.045443\nvn -0.956263 -0.105201 0.272935\nvn -0.954937 -0.110906 0.275311\nvn -0.967691 -0.073795 0.241099\nvn -0.967691 -0.073795 0.241099\nvn -0.967768 -0.072667 0.241133\nvn -0.956263 -0.105201 0.272935\nvn -0.977505 -0.059086 0.202466\nvn -0.967768 -0.072667 0.241133\nvn -0.967691 -0.073795 0.241099\nvn -0.967691 -0.073795 0.241099\nvn -0.978615 -0.058474 0.197212\nvn -0.977505 -0.059086 0.202466\nvn -0.986668 0.040132 0.157720\nvn -0.977505 -0.059086 0.202466\nvn -0.978615 -0.058474 0.197212\nvn -0.978615 -0.058474 0.197212\nvn -0.985618 0.046328 0.162515\nvn -0.986668 0.040132 0.157720\nvn -0.986668 0.040132 0.157720\nvn -0.985618 0.046328 0.162515\nvn -0.897492 0.436813 0.060854\nvn -0.897492 0.436813 0.060854\nvn -0.928697 0.361651 0.082035\nvn -0.986668 0.040132 0.157720\nvn -0.928697 0.361651 0.082035\nvn -0.897492 0.436813 0.060854\nvn -0.805366 0.592557 0.016175\nvn -0.296008 -0.223860 -0.928583\nvn -0.265973 -0.189340 -0.945203\nvn -0.333607 -0.087713 -0.938623\nvn -0.333607 -0.087713 -0.938623\nvn -0.341147 -0.091528 -0.935544\nvn -0.296008 -0.223860 -0.928583\nvn -0.341147 -0.091528 -0.935544\nvn -0.333607 -0.087713 -0.938623\nvn -0.341878 0.053409 -0.938226\nvn -0.341878 0.053409 -0.938226\nvn -0.339128 0.051760 -0.939315\nvn -0.341147 -0.091528 -0.935544\nvn -0.339128 0.051760 -0.939315\nvn -0.341878 0.053409 -0.938226\nvn -0.306011 0.156958 -0.939000\nvn -0.306011 0.156958 -0.939000\nvn -0.303358 0.178139 -0.936077\nvn -0.339128 0.051760 -0.939315\nvn -0.303358 0.178139 -0.936077\nvn -0.306011 0.156958 -0.939000\nvn -0.312088 0.224651 -0.923111\nvn -0.312088 0.224651 -0.923111\nvn -0.311148 0.241868 -0.919069\nvn -0.303358 0.178139 -0.936077\nvn -0.311148 0.241868 -0.919069\nvn -0.312088 0.224651 -0.923111\nvn -0.318712 0.261306 -0.911121\nvn -0.318712 0.261306 -0.911121\nvn -0.321429 0.272903 -0.906757\nvn -0.311148 0.241868 -0.919069\nvn -0.321429 0.272903 -0.906757\nvn -0.318712 0.261306 -0.911121\nvn -0.332571 0.279162 -0.900814\nvn -0.332571 0.279162 -0.900814\nvn -0.329823 0.279771 -0.901635\nvn -0.321429 0.272903 -0.906757\nvn -0.329823 0.279771 -0.901635\nvn -0.332571 0.279162 -0.900814\nvn -0.351796 0.265609 -0.897603\nvn -0.351796 0.265609 -0.897603\nvn -0.334646 0.266221 -0.903957\nvn -0.329823 0.279771 -0.901635\nvn -0.334646 0.266221 -0.903957\nvn -0.351796 0.265609 -0.897603\nvn -0.364945 0.226023 -0.903177\nvn -0.364945 0.226023 -0.903177\nvn -0.343190 0.238661 -0.908439\nvn -0.334646 0.266221 -0.903957\nvn -0.343190 0.238661 -0.908439\nvn -0.364945 0.226023 -0.903177\nvn -0.377981 0.152871 -0.913105\nvn -0.377981 0.152871 -0.913105\nvn -0.360346 0.178448 -0.915591\nvn -0.343190 0.238661 -0.908439\nvn -0.360346 0.178448 -0.915591\nvn -0.377981 0.152871 -0.913105\nvn -0.344259 0.058719 -0.937037\nvn -0.344259 0.058719 -0.937037\nvn -0.341355 0.059298 -0.938062\nvn -0.360346 0.178448 -0.915591\nvn -0.341355 0.059298 -0.938062\nvn -0.344259 0.058719 -0.937037\nvn -0.341022 -0.080113 -0.936635\nvn -0.341022 -0.080113 -0.936635\nvn -0.348136 -0.082861 -0.933775\nvn -0.341355 0.059298 -0.938062\nvn -0.348136 -0.082861 -0.933775\nvn -0.341022 -0.080113 -0.936635\nvn -0.387013 -0.196910 -0.900804\nvn -0.387013 -0.196910 -0.900804\nvn -0.384239 -0.224714 -0.895469\nvn -0.348136 -0.082861 -0.933775\nvn -0.384239 -0.224714 -0.895469\nvn -0.387013 -0.196910 -0.900804\nvn -0.369253 -0.262344 -0.891531\nvn -0.369253 -0.262344 -0.891531\nvn -0.362932 -0.285201 -0.887097\nvn -0.384239 -0.224714 -0.895469\nvn -0.362932 -0.285201 -0.887097\nvn -0.369253 -0.262344 -0.891531\nvn -0.349021 -0.296772 -0.888882\nvn -0.349021 -0.296772 -0.888882\nvn -0.336292 -0.312793 -0.888295\nvn -0.362932 -0.285201 -0.887097\nvn -0.336292 -0.312793 -0.888295\nvn -0.349021 -0.296772 -0.888882\nvn -0.320028 -0.318410 -0.892299\nvn -0.320028 -0.318410 -0.892299\nvn -0.322958 -0.319632 -0.890805\nvn -0.336292 -0.312793 -0.888295\nvn -0.322958 -0.319632 -0.890805\nvn -0.320028 -0.318410 -0.892299\nvn -0.285537 -0.300461 -0.910050\nvn -0.285537 -0.300461 -0.910050\nvn -0.315630 -0.305926 -0.898213\nvn -0.322958 -0.319632 -0.890805\nvn -0.315630 -0.305926 -0.898213\nvn -0.285537 -0.300461 -0.910050\nvn -0.269789 -0.259718 -0.927233\nvn -0.269789 -0.259718 -0.927233\nvn -0.304184 -0.279983 -0.910539\nvn -0.315630 -0.305926 -0.898213\nvn -0.304184 -0.279983 -0.910539\nvn -0.269789 -0.259718 -0.927233\nvn -0.265973 -0.189340 -0.945203\nvn -0.265973 -0.189340 -0.945203\nvn -0.296008 -0.223860 -0.928583\nvn -0.304184 -0.279983 -0.910539\nvn -0.941841 -0.048128 -0.332594\nvn -0.942909 -0.048220 -0.329542\nvn -0.946409 -0.010377 -0.322804\nvn -0.946409 -0.010377 -0.322804\nvn -0.946557 -0.007996 -0.322437\nvn -0.941841 -0.048128 -0.332594\nvn -0.946557 -0.007996 -0.322437\nvn -0.946409 -0.010377 -0.322804\nvn -0.944673 0.068361 -0.320812\nvn -0.944673 0.068361 -0.320812\nvn -0.944651 0.065737 -0.321425\nvn -0.946557 -0.007996 -0.322437\nvn -0.944651 0.065737 -0.321425\nvn -0.944673 0.068361 -0.320812\nvn -0.930969 0.070744 -0.358178\nvn -0.930969 0.070744 -0.358178\nvn -0.930135 0.060306 -0.362233\nvn -0.944651 0.065737 -0.321425\nvn -0.930135 0.060306 -0.362233\nvn -0.930969 0.070744 -0.358178\nvn -0.882615 -0.097845 -0.459802\nvn -0.882615 -0.097845 -0.459802\nvn -0.859659 -0.144996 -0.489860\nvn -0.930135 0.060306 -0.362233\nvn -0.859659 -0.144996 -0.489860\nvn -0.882615 -0.097845 -0.459802\nvn -0.678380 -0.337115 -0.652805\nvn -0.678380 -0.337115 -0.652805\nvn -0.645051 -0.356860 -0.675692\nvn -0.859659 -0.144996 -0.489860\nvn -0.645051 -0.356860 -0.675692\nvn -0.678380 -0.337115 -0.652805\nvn -0.310715 -0.426750 -0.849318\nvn -0.310715 -0.426750 -0.849318\nvn -0.307113 -0.426748 -0.850628\nvn -0.645051 -0.356860 -0.675692\nvn -0.307113 -0.426748 -0.850628\nvn -0.310715 -0.426750 -0.849318\nvn 0.101201 -0.326400 -0.939799\nvn 0.101201 -0.326400 -0.939799\nvn 0.062198 -0.345261 -0.936444\nvn -0.307113 -0.426748 -0.850628\nvn 0.062198 -0.345261 -0.936444\nvn 0.101201 -0.326400 -0.939799\nvn 0.382074 -0.079076 -0.920743\nvn 0.382074 -0.079076 -0.920743\nvn 0.341912 -0.127572 -0.931033\nvn 0.062198 -0.345261 -0.936444\nvn 0.341912 -0.127572 -0.931033\nvn 0.382074 -0.079076 -0.920743\nvn 0.481190 0.091190 -0.871861\nvn 0.481190 0.091190 -0.871861\nvn 0.478565 0.080081 -0.874393\nvn 0.341912 -0.127572 -0.931033\nvn 0.478565 0.080081 -0.874393\nvn 0.481190 0.091190 -0.871861\nvn 0.515861 0.090550 -0.851874\nvn 0.515861 0.090550 -0.851874\nvn 0.516628 0.088383 -0.851636\nvn 0.478565 0.080081 -0.874393\nvn 0.516628 0.088383 -0.851636\nvn 0.515861 0.090550 -0.851874\nvn 0.517941 0.006440 -0.855392\nvn 0.517941 0.006440 -0.855392\nvn 0.517355 0.009522 -0.855718\nvn 0.516628 0.088383 -0.851636\nvn 0.517355 0.009522 -0.855718\nvn 0.517941 0.006440 -0.855392\nvn 0.509085 -0.039522 -0.859808\nvn 0.509085 -0.039522 -0.859808\nvn 0.511625 -0.037630 -0.858385\nvn 0.517355 0.009522 -0.855718\nvn 0.511625 -0.037630 -0.858385\nvn 0.509085 -0.039522 -0.859808\nvn 0.504815 0.056155 -0.861399\nvn 0.504815 0.056155 -0.861399\nvn 0.510432 0.078404 -0.856336\nvn 0.511625 -0.037630 -0.858385\nvn 0.510432 0.078404 -0.856336\nvn 0.504815 0.056155 -0.861399\nvn 0.495448 0.198619 -0.845625\nvn 0.495448 0.198619 -0.845625\nvn 0.505367 0.217297 -0.835097\nvn 0.510432 0.078404 -0.856336\nvn 0.081394 0.536527 -0.839949\nvn 0.082524 0.533475 -0.841780\nvn 0.081272 0.536797 -0.839788\nvn 0.081272 0.536797 -0.839788\nvn 0.080326 0.539269 -0.838294\nvn 0.081394 0.536527 -0.839949\nvn -0.604459 0.532250 -0.592739\nvn -0.606852 0.533543 -0.589120\nvn -0.604284 0.532166 -0.592992\nvn -0.604284 0.532166 -0.592992\nvn -0.602396 0.531132 -0.595834\nvn -0.604459 0.532250 -0.592739\nvn -0.931768 0.170020 -0.320783\nvn -0.943217 0.170661 -0.284985\nvn -0.944079 0.054690 -0.325151\nvn -0.944079 0.054690 -0.325151\nvn -0.935630 0.066776 -0.346608\nvn -0.931768 0.170020 -0.320783\nvn -0.935630 0.066776 -0.346608\nvn -0.944079 0.054690 -0.325151\nvn -0.942909 -0.048220 -0.329542\nvn -0.942909 -0.048220 -0.329542\nvn -0.941841 -0.048128 -0.332594\nvn -0.935630 0.066776 -0.346608\nvn -0.360370 -0.182657 -0.914751\nvn -0.358386 -0.194010 -0.913192\nvn -0.343373 -0.076360 -0.936090\nvn -0.343373 -0.076360 -0.936090\nvn -0.342455 -0.075718 -0.936478\nvn -0.360370 -0.182657 -0.914751\nvn -0.342455 -0.075718 -0.936478\nvn -0.343373 -0.076360 -0.936090\nvn -0.340071 0.051790 -0.938973\nvn -0.340071 0.051790 -0.938973\nvn -0.340529 0.052095 -0.938790\nvn -0.342455 -0.075718 -0.936478\nvn -0.340529 0.052095 -0.938790\nvn -0.340071 0.051790 -0.938973\nvn -0.355821 0.159462 -0.920849\nvn -0.355821 0.159462 -0.920849\nvn -0.361836 0.145058 -0.920887\nvn -0.340529 0.052095 -0.938790\nvn -0.361836 0.145058 -0.920887\nvn -0.355821 0.159462 -0.920849\nvn -0.346306 0.211500 -0.913969\nvn -0.346306 0.211500 -0.913969\nvn -0.352255 0.207318 -0.912653\nvn -0.361836 0.145058 -0.920887\nvn -0.352255 0.207318 -0.912653\nvn -0.346306 0.211500 -0.913969\nvn -0.340836 0.235423 -0.910168\nvn -0.340836 0.235423 -0.910168\nvn -0.345779 0.235301 -0.908334\nvn -0.352255 0.207318 -0.912653\nvn -0.345779 0.235301 -0.908334\nvn -0.340836 0.235423 -0.910168\nvn -0.332112 0.246077 -0.910576\nvn -0.332112 0.246077 -0.910576\nvn -0.332664 0.246202 -0.910340\nvn -0.345779 0.235301 -0.908334\nvn -0.332664 0.246202 -0.910340\nvn -0.332112 0.246077 -0.910576\nvn -0.322924 0.238141 -0.915974\nvn -0.322924 0.238141 -0.915974\nvn -0.322190 0.235027 -0.917037\nvn -0.332664 0.246202 -0.910340\nvn -0.322190 0.235027 -0.917037\nvn -0.322924 0.238141 -0.915974\nvn -0.319050 0.211957 -0.923732\nvn -0.319050 0.211957 -0.923732\nvn -0.319321 0.206888 -0.924787\nvn -0.322190 0.235027 -0.917037\nvn -0.319321 0.206888 -0.924787\nvn -0.319050 0.211957 -0.923732\nvn -0.317157 0.158578 -0.935021\nvn -0.317157 0.158578 -0.935021\nvn -0.316303 0.146279 -0.937312\nvn -0.319321 0.206888 -0.924787\nvn -0.316303 0.146279 -0.937312\nvn -0.317157 0.158578 -0.935021\nvn -0.342513 0.049440 -0.938211\nvn -0.342513 0.049440 -0.938211\nvn -0.342758 0.051699 -0.938000\nvn -0.316303 0.146279 -0.937312\nvn -0.342758 0.051699 -0.938000\nvn -0.342513 0.049440 -0.938211\nvn -0.339647 -0.078129 -0.937302\nvn -0.339647 -0.078129 -0.937302\nvn -0.338543 -0.075717 -0.937899\nvn -0.342758 0.051699 -0.938000\nvn -0.338543 -0.075717 -0.937899\nvn -0.339647 -0.078129 -0.937302\nvn -0.315323 -0.194895 -0.928756\nvn -0.315323 -0.194895 -0.928756\nvn -0.310101 -0.182045 -0.933112\nvn -0.338543 -0.075717 -0.937899\nvn -0.310101 -0.182045 -0.933112\nvn -0.315323 -0.194895 -0.928756\nvn -0.310167 -0.246382 -0.918201\nvn -0.310167 -0.246382 -0.918201\nvn -0.301168 -0.239732 -0.922944\nvn -0.310101 -0.182045 -0.933112\nvn -0.301168 -0.239732 -0.922944\nvn -0.310167 -0.246382 -0.918201\nvn -0.314587 -0.276836 -0.907963\nvn -0.314587 -0.276836 -0.907963\nvn -0.291916 -0.269424 -0.917712\nvn -0.301168 -0.239732 -0.922944\nvn -0.291916 -0.269424 -0.917712\nvn -0.314587 -0.276836 -0.907963\nvn -0.327170 -0.288624 -0.899809\nvn -0.327170 -0.288624 -0.899809\nvn -0.326035 -0.288527 -0.900252\nvn -0.291916 -0.269424 -0.917712\nvn -0.326035 -0.288527 -0.900252\nvn -0.327170 -0.288624 -0.899809\nvn -0.343650 -0.281055 -0.896054\nvn -0.343650 -0.281055 -0.896054\nvn -0.353505 -0.272019 -0.895009\nvn -0.326035 -0.288527 -0.900252\nvn -0.353505 -0.272019 -0.895009\nvn -0.343650 -0.281055 -0.896054\nvn -0.360185 -0.245251 -0.900066\nvn -0.360185 -0.245251 -0.900066\nvn -0.358662 -0.238966 -0.902362\nvn -0.353505 -0.272019 -0.895009\nvn -0.358662 -0.238966 -0.902362\nvn -0.360185 -0.245251 -0.900066\nvn -0.358386 -0.194010 -0.913192\nvn -0.358386 -0.194010 -0.913192\nvn -0.360370 -0.182657 -0.914751\nvn -0.358662 -0.238966 -0.902362\nvn 0.938740 -0.044863 -0.341693\nvn 0.938747 -0.044711 -0.341695\nvn 0.938430 -0.051760 -0.341569\nvn 0.938430 -0.051760 -0.341569\nvn 0.938460 -0.051211 -0.341569\nvn 0.938740 -0.044863 -0.341693\nvn 0.938460 -0.051211 -0.341569\nvn 0.938430 -0.051760 -0.341569\nvn 0.931453 -0.132088 -0.339040\nvn 0.931453 -0.132088 -0.339040\nvn 0.933573 -0.113927 -0.339797\nvn 0.938460 -0.051211 -0.341569\nvn 0.933573 -0.113927 -0.339797\nvn 0.931453 -0.132088 -0.339040\nvn 0.922625 -0.189737 -0.335802\nvn 0.922625 -0.189737 -0.335802\nvn 0.922625 -0.189737 -0.335802\nvn 0.933573 -0.113927 -0.339797\nvn 0.938747 -0.044711 -0.341695\nvn 0.938740 -0.044863 -0.341693\nvn 0.938025 0.059542 -0.341414\nvn 0.938025 0.059542 -0.341414\nvn 0.936307 0.084844 -0.340780\nvn 0.938747 -0.044711 -0.341695\nvn 0.936307 0.084844 -0.340780\nvn 0.938025 0.059542 -0.341414\nvn 0.923142 0.186930 -0.335955\nvn 0.923142 0.186930 -0.335955\nvn 0.923152 0.186932 -0.335927\nvn 0.936307 0.084844 -0.340780\nvn 0.693912 0.674319 -0.252546\nvn 0.693903 0.674341 -0.252512\nvn 0.693912 0.674319 -0.252546\nvn 0.693912 0.674319 -0.252546\nvn 0.693907 0.674314 -0.252574\nvn 0.693912 0.674319 -0.252546\nvn 0.295307 0.949340 -0.107459\nvn 0.295306 0.949337 -0.107489\nvn 0.295307 0.949340 -0.107459\nvn 0.295307 0.949340 -0.107459\nvn 0.295298 0.949343 -0.107456\nvn 0.295307 0.949340 -0.107459\nvn -0.298046 0.948369 0.108463\nvn -0.298046 0.948369 0.108463\nvn -0.298046 0.948369 0.108463\nvn -0.298046 0.948369 0.108463\nvn -0.298055 0.948366 0.108467\nvn -0.298046 0.948369 0.108463\nvn -0.704441 0.661836 0.256391\nvn -0.704441 0.661836 0.256391\nvn -0.704441 0.661836 0.256391\nvn -0.704441 0.661836 0.256391\nvn -0.704441 0.661836 0.256391\nvn -0.704441 0.661836 0.256391\nvn -0.927764 0.158854 0.337668\nvn -0.927764 0.158854 0.337668\nvn -0.939267 0.030275 0.341849\nvn -0.939267 0.030275 0.341849\nvn -0.938229 0.055820 0.341482\nvn -0.927764 0.158854 0.337668\nvn -0.938229 0.055820 0.341482\nvn -0.939267 0.030275 0.341849\nvn -0.937265 -0.071811 0.341140\nvn -0.937265 -0.071811 0.341140\nvn -0.937263 -0.071842 0.341139\nvn -0.938229 0.055820 0.341482\nvn -0.937263 -0.071842 0.341139\nvn -0.937265 -0.071811 0.341140\nvn -0.937225 -0.072728 0.341056\nvn -0.937225 -0.072728 0.341056\nvn -0.937213 -0.072911 0.341052\nvn -0.937263 -0.071842 0.341139\nvn -0.937213 -0.072911 0.341052\nvn -0.937225 -0.072728 0.341056\nvn -0.931455 -0.132150 0.339011\nvn -0.931455 -0.132150 0.339011\nvn -0.929040 -0.150186 0.338124\nvn -0.937213 -0.072911 0.341052\nvn -0.929040 -0.150186 0.338124\nvn -0.931455 -0.132150 0.339011\nvn -0.919236 -0.207561 0.334551\nvn -0.919236 -0.207561 0.334551\nvn -0.919236 -0.207561 0.334551\nvn -0.929040 -0.150186 0.338124\nvn -0.700634 -0.666391 0.255020\nvn -0.700649 -0.666377 0.255015\nvn -0.700634 -0.666391 0.255020\nvn -0.700634 -0.666391 0.255020\nvn -0.700634 -0.666391 0.255020\nvn -0.700634 -0.666391 0.255020\nvn -0.191172 -0.979087 0.069584\nvn -0.191172 -0.979087 0.069584\nvn 0.000336 -1.000000 -0.000122\nvn 0.000336 -1.000000 -0.000122\nvn 0.000306 -1.000000 -0.000091\nvn -0.191172 -0.979087 0.069584\nvn 0.000306 -1.000000 -0.000091\nvn 0.000336 -1.000000 -0.000122\nvn 0.191816 -0.978946 -0.069798\nvn 0.191816 -0.978946 -0.069798\nvn 0.191816 -0.978946 -0.069798\nvn 0.000306 -1.000000 -0.000091\nvn 0.707042 -0.658699 -0.257309\nvn 0.707012 -0.658730 -0.257309\nvn 0.707012 -0.658730 -0.257309\nvn 0.707012 -0.658730 -0.257309\nvn 0.707042 -0.658699 -0.257309\nvn 0.707042 -0.658699 -0.257309\nvn 0.971153 0.073491 0.226850\nvn 0.967090 -0.086613 0.239239\nvn 0.882851 -0.086765 0.461568\nvn 0.882851 -0.086765 0.461568\nvn 0.918230 -0.124976 0.375813\nvn 0.971153 0.073491 0.226850\nvn 0.961152 -0.119148 0.248978\nvn 0.971153 0.073491 0.226850\nvn 0.918230 -0.124976 0.375813\nvn 0.918230 -0.124976 0.375813\nvn 0.969559 0.126929 0.209391\nvn 0.961152 -0.119148 0.248978\nvn 0.969047 -0.005707 0.246809\nvn 0.967090 -0.086613 0.239239\nvn 0.971153 0.073491 0.226850\nvn 0.971153 0.073491 0.226850\nvn 0.966127 0.079931 0.245377\nvn 0.969047 -0.005707 0.246809\nvn 0.967090 -0.086613 0.239239\nvn 0.969047 -0.005707 0.246809\nvn 0.949469 -0.193702 0.246958\nvn 0.949469 -0.193702 0.246958\nvn 0.938958 -0.248580 0.237837\nvn 0.967090 -0.086613 0.239239\nvn 0.882851 -0.086765 0.461568\nvn 0.967090 -0.086613 0.239239\nvn 0.938958 -0.248580 0.237837\nvn 0.967174 -0.053347 0.248454\nvn 0.938958 -0.248580 0.237837\nvn 0.949469 -0.193702 0.246958\nvn 0.949469 -0.193702 0.246958\nvn 0.969129 -0.047243 0.241985\nvn 0.967174 -0.053347 0.248454\nvn 0.938958 -0.248580 0.237837\nvn 0.918117 -0.073857 0.389367\nvn 0.882851 -0.086765 0.461568\nvn 0.918117 -0.073857 0.389367\nvn 0.938958 -0.248580 0.237837\nvn 0.967174 -0.053347 0.248454\nvn 0.962976 0.092596 0.253188\nvn 0.969047 -0.005707 0.246809\nvn 0.966127 0.079931 0.245377\nvn 0.966127 0.079931 0.245377\nvn 0.976207 -0.144690 0.161506\nvn 0.962976 0.092596 0.253188\nvn 0.960751 -0.150064 0.233321\nvn 0.976207 -0.144690 0.161506\nvn 0.966127 0.079931 0.245377\nvn 0.966127 0.079931 0.245377\nvn 0.959329 -0.126927 0.252147\nvn 0.960751 -0.150064 0.233321\nvn 0.959329 -0.126927 0.252147\nvn 0.966127 0.079931 0.245377\nvn 0.971153 0.073491 0.226850\nvn 0.971153 0.073491 0.226850\nvn 0.961152 -0.119148 0.248978\nvn 0.959329 -0.126927 0.252147\nvn 0.967174 -0.053347 0.248454\nvn 0.950604 -0.062289 0.304091\nvn 0.918117 -0.073857 0.389367\nvn -0.140544 0.745353 -0.651688\nvn -0.176096 0.660923 -0.729500\nvn -0.287795 0.525599 -0.800575\nvn -0.287795 0.525599 -0.800575\nvn -0.319930 0.503440 -0.802617\nvn -0.140544 0.745353 -0.651688\nvn -0.093145 0.901388 -0.422876\nvn -0.176096 0.660923 -0.729500\nvn -0.140544 0.745353 -0.651688\nvn -0.140544 0.745353 -0.651688\nvn -0.089665 0.912460 -0.399220\nvn -0.093145 0.901388 -0.422876\nvn -0.138008 0.976920 -0.163034\nvn -0.093145 0.901388 -0.422876\nvn -0.089665 0.912460 -0.399220\nvn -0.089665 0.912460 -0.399220\nvn -0.124365 0.974866 -0.184853\nvn -0.138008 0.976920 -0.163034\nvn -0.183207 0.980305 -0.073734\nvn -0.138008 0.976920 -0.163034\nvn -0.124365 0.974866 -0.184853\nvn -0.124365 0.974866 -0.184853\nvn -0.189771 0.979798 -0.063114\nvn -0.183207 0.980305 -0.073734\nvn -0.254316 0.966662 -0.029817\nvn -0.183207 0.980305 -0.073734\nvn -0.189771 0.979798 -0.063114\nvn -0.189771 0.979798 -0.063114\nvn -0.281324 0.959121 -0.030733\nvn -0.254316 0.966662 -0.029817\nvn -0.657532 0.703981 0.268445\nvn -0.708179 0.656936 0.258685\nvn -0.671673 0.691480 0.265916\nvn -0.671673 0.691480 0.265916\nvn -0.612091 0.741156 0.275740\nvn -0.657532 0.703981 0.268445\nvn -0.281478 -0.654057 -0.702125\nvn -0.430900 -0.387013 -0.815197\nvn -0.393943 -0.424036 -0.815477\nvn -0.393943 -0.424036 -0.815477\nvn -0.272108 -0.602447 -0.750343\nvn -0.281478 -0.654057 -0.702125\nvn -0.280804 -0.847845 -0.449787\nvn -0.281478 -0.654057 -0.702125\nvn -0.272108 -0.602447 -0.750343\nvn -0.272108 -0.602447 -0.750343\nvn -0.276654 -0.855843 -0.437031\nvn -0.280804 -0.847845 -0.449787\nvn -0.380577 -0.907435 -0.178111\nvn -0.280804 -0.847845 -0.449787\nvn -0.276654 -0.855843 -0.437031\nvn -0.276654 -0.855843 -0.437031\nvn -0.394399 -0.906785 -0.148964\nvn -0.380577 -0.907435 -0.178111\nvn -0.423233 -0.903873 -0.062350\nvn -0.380577 -0.907435 -0.178111\nvn -0.394399 -0.906785 -0.148964\nvn -0.394399 -0.906785 -0.148964\nvn -0.422719 -0.904126 -0.062167\nvn -0.423233 -0.903873 -0.062350\nvn 0.714626 0.625725 -0.312695\nvn 0.902049 0.295729 -0.314407\nvn 0.835368 0.410360 -0.365740\nvn 0.835368 0.410360 -0.365740\nvn 0.707927 0.610052 -0.355917\nvn 0.714626 0.625725 -0.312695\nvn 0.593388 0.794664 -0.128059\nvn 0.714626 0.625725 -0.312695\nvn 0.707927 0.610052 -0.355917\nvn 0.707927 0.610052 -0.355917\nvn 0.618625 0.770489 -0.153787\nvn 0.593388 0.794664 -0.128059\nvn 0.566588 0.823315 0.033632\nvn 0.593388 0.794664 -0.128059\nvn 0.618625 0.770489 -0.153787\nvn 0.618625 0.770489 -0.153787\nvn 0.577249 0.816188 0.024935\nvn 0.566588 0.823315 0.033632\nvn 0.571200 0.812823 0.114234\nvn 0.566588 0.823315 0.033632\nvn 0.577249 0.816188 0.024935\nvn 0.577249 0.816188 0.024935\nvn 0.566954 0.814251 0.124732\nvn 0.571200 0.812823 0.114234\nvn 0.551179 0.787582 0.275529\nvn 0.571200 0.812823 0.114234\nvn 0.566954 0.814251 0.124732\nvn 0.566954 0.814251 0.124732\nvn 0.527365 0.772035 0.354751\nvn 0.551179 0.787582 0.275529\nvn 0.505096 0.713911 0.484984\nvn 0.551179 0.787582 0.275529\nvn 0.527365 0.772035 0.354751\nvn 0.527365 0.772035 0.354751\nvn 0.467864 0.712142 0.523409\nvn 0.505096 0.713911 0.484984\nvn 0.411946 -0.899608 0.144935\nvn 0.414082 -0.908428 0.057406\nvn 0.417954 -0.905338 0.075351\nvn 0.417954 -0.905338 0.075351\nvn 0.413171 -0.898977 0.145364\nvn 0.411946 -0.899608 0.144935\nvn 0.479245 -0.866351 -0.140572\nvn 0.417954 -0.905338 0.075351\nvn 0.414082 -0.908428 0.057406\nvn 0.414082 -0.908428 0.057406\nvn 0.478480 -0.861099 -0.171945\nvn 0.479245 -0.866351 -0.140572\nvn 0.614881 -0.696002 -0.370814\nvn 0.479245 -0.866351 -0.140572\nvn 0.478480 -0.861099 -0.171945\nvn 0.478480 -0.861099 -0.171945\nvn 0.658718 -0.660641 -0.360061\nvn 0.614881 -0.696002 -0.370814\nvn 0.742471 -0.562194 -0.364246\nvn 0.614881 -0.696002 -0.370814\nvn 0.658718 -0.660641 -0.360061\nvn 0.658718 -0.660641 -0.360061\nvn 0.754092 -0.583949 -0.300581\nvn 0.742471 -0.562194 -0.364246\nvn 0.846483 -0.228620 0.480832\nvn 0.884592 -0.308607 0.349656\nvn 0.885050 -0.326674 0.331619\nvn 0.885050 -0.326674 0.331619\nvn 0.918230 -0.124976 0.375813\nvn 0.846483 -0.228620 0.480832\nvn 0.830206 -0.078922 0.551843\nvn 0.846483 -0.228620 0.480832\nvn 0.918230 -0.124976 0.375813\nvn 0.918230 -0.124976 0.375813\nvn 0.882851 -0.086765 0.461568\nvn 0.830206 -0.078922 0.551843\nvn 0.961152 -0.119148 0.248978\nvn 0.885050 -0.326674 0.331619\nvn 0.884592 -0.308607 0.349656\nvn 0.884592 -0.308607 0.349656\nvn 0.905283 -0.334914 0.261334\nvn 0.961152 -0.119148 0.248978\nvn 0.961152 -0.119148 0.248978\nvn 0.905283 -0.334914 0.261334\nvn 0.903529 -0.349386 0.248123\nvn 0.903529 -0.349386 0.248123\nvn 0.959329 -0.126927 0.252147\nvn 0.961152 -0.119148 0.248978\nvn 0.960751 -0.150064 0.233321\nvn 0.959329 -0.126927 0.252147\nvn 0.903529 -0.349386 0.248123\nvn 0.903529 -0.349386 0.248123\nvn 0.924728 -0.351335 0.146431\nvn 0.960751 -0.150064 0.233321\nvn 0.976207 -0.144690 0.161506\nvn 0.960751 -0.150064 0.233321\nvn 0.924728 -0.351335 0.146431\nvn 0.924728 -0.351335 0.146431\nvn 0.932507 -0.359330 0.036226\nvn 0.976207 -0.144690 0.161506\nvn 0.830206 -0.078922 0.551843\nvn 0.882851 -0.086765 0.461568\nvn 0.918117 -0.073857 0.389367\nvn 0.918117 -0.073857 0.389367\nvn 0.861620 0.060764 0.503904\nvn 0.830206 -0.078922 0.551843\nvn 0.917429 0.139685 0.372575\nvn 0.861620 0.060764 0.503904\nvn 0.918117 -0.073857 0.389367\nvn 0.918117 -0.073857 0.389367\nvn 0.950604 -0.062289 0.304091\nvn 0.917429 0.139685 0.372575\nvn 0.952206 0.170787 0.253250\nvn 0.917429 0.139685 0.372575\nvn 0.950604 -0.062289 0.304091\nvn 0.950604 -0.062289 0.304091\nvn 0.967174 -0.053347 0.248454\nvn 0.952206 0.170787 0.253250\nvn 0.956055 0.185101 0.227370\nvn 0.952206 0.170787 0.253250\nvn 0.967174 -0.053347 0.248454\nvn 0.967174 -0.053347 0.248454\nvn 0.969129 -0.047243 0.241985\nvn 0.956055 0.185101 0.227370\nvn -0.971155 0.073460 0.226850\nvn -0.918230 -0.124976 0.375813\nvn -0.882851 -0.086766 0.461568\nvn -0.882851 -0.086766 0.461568\nvn -0.967083 -0.086613 0.239268\nvn -0.971155 0.073460 0.226850\nvn -0.918230 -0.124976 0.375813\nvn -0.971155 0.073460 0.226850\nvn -0.961152 -0.119149 0.248979\nvn -0.961152 -0.119149 0.248979\nvn -0.969559 0.126928 0.209391\nvn -0.918230 -0.124976 0.375813\nvn -0.971155 0.073460 0.226850\nvn -0.967083 -0.086613 0.239268\nvn -0.969047 -0.005738 0.246809\nvn -0.969047 -0.005738 0.246809\nvn -0.966125 0.079961 0.245377\nvn -0.971155 0.073460 0.226850\nvn -0.949475 -0.193673 0.246959\nvn -0.969047 -0.005738 0.246809\nvn -0.967083 -0.086613 0.239268\nvn -0.967083 -0.086613 0.239268\nvn -0.938958 -0.248580 0.237837\nvn -0.949475 -0.193673 0.246959\nvn -0.938958 -0.248580 0.237837\nvn -0.967083 -0.086613 0.239268\nvn -0.882851 -0.086766 0.461568\nvn -0.949475 -0.193673 0.246959\nvn -0.938958 -0.248580 0.237837\nvn -0.967174 -0.053347 0.248454\nvn -0.967174 -0.053347 0.248454\nvn -0.969129 -0.047244 0.241985\nvn -0.949475 -0.193673 0.246959\nvn -0.882851 -0.086766 0.461568\nvn -0.918117 -0.073857 0.389367\nvn -0.938958 -0.248580 0.237837\nvn -0.967174 -0.053347 0.248454\nvn -0.938958 -0.248580 0.237837\nvn -0.918117 -0.073857 0.389367\nvn -0.966125 0.079961 0.245377\nvn -0.969047 -0.005738 0.246809\nvn -0.962968 0.092595 0.253217\nvn -0.962968 0.092595 0.253217\nvn -0.976198 -0.144719 0.161535\nvn -0.966125 0.079961 0.245377\nvn -0.966125 0.079961 0.245377\nvn -0.976198 -0.144719 0.161535\nvn -0.960751 -0.150064 0.233321\nvn -0.960751 -0.150064 0.233321\nvn -0.959336 -0.126868 0.252148\nvn -0.966125 0.079961 0.245377\nvn -0.959336 -0.126868 0.252148\nvn -0.961152 -0.119149 0.248979\nvn -0.971155 0.073460 0.226850\nvn -0.971155 0.073460 0.226850\nvn -0.966125 0.079961 0.245377\nvn -0.959336 -0.126868 0.252148\nvn -0.918117 -0.073857 0.389367\nvn -0.950604 -0.062289 0.304091\nvn -0.967174 -0.053347 0.248454\nvn 0.287824 0.541284 -0.790044\nvn 0.305808 0.542428 -0.782466\nvn 0.199717 0.638032 -0.743659\nvn 0.199717 0.638032 -0.743659\nvn 0.134224 0.740338 -0.658699\nvn 0.287824 0.541284 -0.790044\nvn 0.134224 0.740338 -0.658699\nvn 0.199717 0.638032 -0.743659\nvn 0.093145 0.901388 -0.422876\nvn 0.093145 0.901388 -0.422876\nvn 0.089665 0.912460 -0.399220\nvn 0.134224 0.740338 -0.658699\nvn 0.089665 0.912460 -0.399220\nvn 0.093145 0.901388 -0.422876\nvn 0.138008 0.976921 -0.163034\nvn 0.138008 0.976921 -0.163034\nvn 0.124364 0.974866 -0.184853\nvn 0.089665 0.912460 -0.399220\nvn 0.124364 0.974866 -0.184853\nvn 0.138008 0.976921 -0.163034\nvn 0.183206 0.980305 -0.073734\nvn 0.183206 0.980305 -0.073734\nvn 0.189770 0.979798 -0.063114\nvn 0.124364 0.974866 -0.184853\nvn 0.189770 0.979798 -0.063114\nvn 0.183206 0.980305 -0.073734\nvn 0.254315 0.966662 -0.029817\nvn 0.254315 0.966662 -0.029817\nvn 0.281352 0.959112 -0.030732\nvn 0.189770 0.979798 -0.063114\nvn 0.671689 0.691466 0.265911\nvn 0.708179 0.656936 0.258685\nvn 0.657540 0.703960 0.268479\nvn 0.657540 0.703960 0.268479\nvn 0.612124 0.741129 0.275741\nvn 0.671689 0.691466 0.265911\nvn 0.393944 -0.424036 -0.815477\nvn 0.430905 -0.386987 -0.815206\nvn 0.281479 -0.654057 -0.702125\nvn 0.281479 -0.654057 -0.702125\nvn 0.272109 -0.602447 -0.750343\nvn 0.393944 -0.424036 -0.815477\nvn 0.272109 -0.602447 -0.750343\nvn 0.281479 -0.654057 -0.702125\nvn 0.280804 -0.847845 -0.449787\nvn 0.280804 -0.847845 -0.449787\nvn 0.276654 -0.855842 -0.437031\nvn 0.272109 -0.602447 -0.750343\nvn 0.276654 -0.855842 -0.437031\nvn 0.280804 -0.847845 -0.449787\nvn 0.380578 -0.907434 -0.178111\nvn 0.380578 -0.907434 -0.178111\nvn 0.394399 -0.906785 -0.148964\nvn 0.276654 -0.855842 -0.437031\nvn 0.394399 -0.906785 -0.148964\nvn 0.380578 -0.907434 -0.178111\nvn 0.423245 -0.903867 -0.062351\nvn 0.423245 -0.903867 -0.062351\nvn 0.422719 -0.904126 -0.062167\nvn 0.394399 -0.906785 -0.148964\nvn -0.835368 0.410359 -0.365740\nvn -0.902041 0.295726 -0.314434\nvn -0.714626 0.625725 -0.312695\nvn -0.714626 0.625725 -0.312695\nvn -0.707927 0.610051 -0.355917\nvn -0.835368 0.410359 -0.365740\nvn -0.707927 0.610051 -0.355917\nvn -0.714626 0.625725 -0.312695\nvn -0.593389 0.794664 -0.128059\nvn -0.593389 0.794664 -0.128059\nvn -0.618625 0.770489 -0.153787\nvn -0.707927 0.610051 -0.355917\nvn -0.618625 0.770489 -0.153787\nvn -0.593389 0.794664 -0.128059\nvn -0.566588 0.823315 0.033632\nvn -0.566588 0.823315 0.033632\nvn -0.577249 0.816187 0.024935\nvn -0.618625 0.770489 -0.153787\nvn -0.577249 0.816187 0.024935\nvn -0.566588 0.823315 0.033632\nvn -0.571201 0.812822 0.114234\nvn -0.571201 0.812822 0.114234\nvn -0.566934 0.814265 0.124734\nvn -0.577249 0.816187 0.024935\nvn -0.566934 0.814265 0.124734\nvn -0.571201 0.812822 0.114234\nvn -0.551175 0.787575 0.275557\nvn -0.551175 0.787575 0.275557\nvn -0.527366 0.772035 0.354751\nvn -0.566934 0.814265 0.124734\nvn -0.527366 0.772035 0.354751\nvn -0.551175 0.787575 0.275557\nvn -0.505097 0.713910 0.484984\nvn -0.505097 0.713910 0.484984\nvn -0.467888 0.712132 0.523402\nvn -0.527366 0.772035 0.354751\nvn -0.742471 -0.562194 -0.364246\nvn -0.754092 -0.583949 -0.300581\nvn -0.658725 -0.660648 -0.360034\nvn -0.658725 -0.660648 -0.360034\nvn -0.614880 -0.696002 -0.370814\nvn -0.742471 -0.562194 -0.364246\nvn -0.614880 -0.696002 -0.370814\nvn -0.658725 -0.660648 -0.360034\nvn -0.478480 -0.861099 -0.171945\nvn -0.478480 -0.861099 -0.171945\nvn -0.479244 -0.866351 -0.140572\nvn -0.614880 -0.696002 -0.370814\nvn -0.479244 -0.866351 -0.140572\nvn -0.478480 -0.861099 -0.171945\nvn -0.414081 -0.908428 0.057406\nvn -0.414081 -0.908428 0.057406\nvn -0.417954 -0.905338 0.075351\nvn -0.479244 -0.866351 -0.140572\nvn -0.417954 -0.905338 0.075351\nvn -0.414081 -0.908428 0.057406\nvn -0.411920 -0.899620 0.144937\nvn -0.411920 -0.899620 0.144937\nvn -0.413170 -0.898977 0.145364\nvn -0.417954 -0.905338 0.075351\nvn -0.846483 -0.228620 0.480832\nvn -0.918230 -0.124976 0.375813\nvn -0.885049 -0.326675 0.331619\nvn -0.885049 -0.326675 0.331619\nvn -0.884592 -0.308608 0.349656\nvn -0.846483 -0.228620 0.480832\nvn -0.918230 -0.124976 0.375813\nvn -0.846483 -0.228620 0.480832\nvn -0.830207 -0.078892 0.551844\nvn -0.830207 -0.078892 0.551844\nvn -0.882851 -0.086766 0.461568\nvn -0.918230 -0.124976 0.375813\nvn -0.884592 -0.308608 0.349656\nvn -0.885049 -0.326675 0.331619\nvn -0.961152 -0.119149 0.248979\nvn -0.961152 -0.119149 0.248979\nvn -0.905268 -0.334951 0.261338\nvn -0.884592 -0.308608 0.349656\nvn -0.903529 -0.349387 0.248123\nvn -0.905268 -0.334951 0.261338\nvn -0.961152 -0.119149 0.248979\nvn -0.961152 -0.119149 0.248979\nvn -0.959336 -0.126868 0.252148\nvn -0.903529 -0.349387 0.248123\nvn -0.903529 -0.349387 0.248123\nvn -0.959336 -0.126868 0.252148\nvn -0.960751 -0.150064 0.233321\nvn -0.960751 -0.150064 0.233321\nvn -0.924728 -0.351336 0.146431\nvn -0.903529 -0.349387 0.248123\nvn -0.924728 -0.351336 0.146431\nvn -0.960751 -0.150064 0.233321\nvn -0.976198 -0.144719 0.161535\nvn -0.976198 -0.144719 0.161535\nvn -0.932507 -0.359331 0.036226\nvn -0.924728 -0.351336 0.146431\nvn -0.918117 -0.073857 0.389367\nvn -0.882851 -0.086766 0.461568\nvn -0.830207 -0.078892 0.551844\nvn -0.830207 -0.078892 0.551844\nvn -0.861633 0.060765 0.503881\nvn -0.918117 -0.073857 0.389367\nvn -0.918117 -0.073857 0.389367\nvn -0.861633 0.060765 0.503881\nvn -0.917429 0.139685 0.372575\nvn -0.917429 0.139685 0.372575\nvn -0.950604 -0.062289 0.304091\nvn -0.918117 -0.073857 0.389367\nvn -0.950604 -0.062289 0.304091\nvn -0.917429 0.139685 0.372575\nvn -0.952206 0.170786 0.253250\nvn -0.952206 0.170786 0.253250\nvn -0.967174 -0.053347 0.248454\nvn -0.950604 -0.062289 0.304091\nvn -0.967174 -0.053347 0.248454\nvn -0.952206 0.170786 0.253250\nvn -0.956048 0.185099 0.227399\nvn -0.956048 0.185099 0.227399\nvn -0.969129 -0.047244 0.241985\nvn -0.967174 -0.053347 0.248454\nvn 0.959757 -0.243906 -0.139197\nvn 0.978643 -0.140691 -0.149877\nvn 0.997740 -0.022737 -0.063236\nvn 0.959757 -0.243906 -0.139197\nvn 0.997740 -0.022737 -0.063236\nvn 0.986569 0.025972 0.161264\nvn 0.959757 -0.243906 -0.139197\nvn 0.986569 0.025972 0.161264\nvn 0.877460 -0.466182 0.112860\nvn 0.959757 -0.243906 -0.139197\nvn 0.877460 -0.466182 0.112860\nvn 0.925369 -0.371447 -0.075626\nvn 0.747259 -0.465110 0.474633\nvn 0.877460 -0.466182 0.112860\nvn 0.986569 0.025972 0.161264\nvn 0.986569 0.025972 0.161264\nvn 0.859233 0.024843 0.510980\nvn 0.747259 -0.465110 0.474633\nvn 0.859233 0.024843 0.510980\nvn 0.668453 -0.147100 0.729063\nvn 0.747259 -0.465110 0.474633\nvn 0.859233 0.024843 0.510980\nvn 0.730541 -0.029542 0.682229\nvn 0.668453 -0.147100 0.729063\nvn 0.668453 -0.147100 0.729063\nvn 0.669804 -0.363422 0.647525\nvn 0.747259 -0.465110 0.474633\nvn 0.668453 -0.147100 0.729063\nvn 0.662326 -0.237133 0.710699\nvn 0.669804 -0.363422 0.647525\nvn 0.634274 0.164222 -0.755465\nvn 0.570951 -0.241650 -0.784615\nvn 0.567145 -0.269762 -0.778187\nvn 0.567145 -0.269762 -0.778187\nvn 0.642924 0.192487 -0.741349\nvn 0.634274 0.164222 -0.755465\nvn 0.959757 -0.243906 -0.139197\nvn 0.915439 -0.278178 -0.290843\nvn 0.958721 -0.055331 -0.278912\nvn 0.958721 -0.055331 -0.278912\nvn 0.978643 -0.140691 -0.149877\nvn 0.959757 -0.243906 -0.139197\nvn 0.567145 -0.269762 -0.778187\nvn 0.570951 -0.241650 -0.784615\nvn 0.454375 -0.657117 -0.601449\nvn 0.870253 -0.440024 -0.221447\nvn 0.915439 -0.278178 -0.290843\nvn 0.959757 -0.243906 -0.139197\nvn 0.454375 -0.657117 -0.601449\nvn 0.469332 -0.622450 -0.626326\nvn 0.567145 -0.269762 -0.778187\nvn 0.429746 -0.784932 -0.446318\nvn 0.469332 -0.622450 -0.626326\nvn 0.454375 -0.657117 -0.601449\nvn 0.454375 -0.657117 -0.601449\nvn 0.436576 -0.783670 -0.441886\nvn 0.429746 -0.784932 -0.446318\nvn 0.780464 -0.620910 0.073124\nvn 0.870253 -0.440024 -0.221447\nvn 0.925369 -0.371447 -0.075626\nvn 0.959757 -0.243906 -0.139197\nvn 0.925369 -0.371447 -0.075626\nvn 0.870253 -0.440024 -0.221447\nvn 0.925369 -0.371447 -0.075626\nvn 0.877460 -0.466182 0.112860\nvn 0.780464 -0.620910 0.073124\nvn 0.689434 0.560246 -0.459135\nvn 0.634274 0.164222 -0.755465\nvn 0.642924 0.192487 -0.741349\nvn 0.642924 0.192487 -0.741349\nvn 0.696735 0.519691 -0.494451\nvn 0.689434 0.560246 -0.459135\nvn 0.731617 0.621166 -0.280872\nvn 0.689434 0.560246 -0.459135\nvn 0.696735 0.519691 -0.494451\nvn 0.696735 0.519691 -0.494451\nvn 0.738499 0.613585 -0.279524\nvn 0.731617 0.621166 -0.280872\nvn 0.980339 0.089025 -0.176096\nvn 0.961816 0.235640 0.139229\nvn 0.986569 0.025972 0.161264\nvn 0.986569 0.025972 0.161264\nvn 0.997740 -0.022737 -0.063236\nvn 0.980339 0.089025 -0.176096\nvn 0.657481 0.714858 0.238113\nvn 0.657539 0.714824 0.238051\nvn 0.657476 0.714852 0.238142\nvn 0.657476 0.714852 0.238142\nvn 0.657403 0.714901 0.238198\nvn 0.657481 0.714858 0.238113\nvn 0.237011 0.554165 0.797951\nvn 0.397088 0.621254 0.675548\nvn 0.388386 0.628053 0.674319\nvn 0.388386 0.628053 0.674319\nvn 0.210676 0.523959 0.825277\nvn 0.237011 0.554165 0.797951\nvn 0.828897 0.232861 0.508631\nvn 0.653803 0.074496 0.752989\nvn 0.730541 -0.029542 0.682229\nvn 0.730541 -0.029542 0.682229\nvn 0.859233 0.024843 0.510980\nvn 0.828897 0.232861 0.508631\nvn 0.961816 0.235640 0.139229\nvn 0.828897 0.232861 0.508631\nvn 0.859233 0.024843 0.510980\nvn 0.859233 0.024843 0.510980\nvn 0.986569 0.025972 0.161264\nvn 0.961816 0.235640 0.139229\nvn 0.004975 0.171915 0.985099\nvn 0.237011 0.554165 0.797951\nvn 0.210676 0.523959 0.825277\nvn 0.210676 0.523959 0.825277\nvn 0.020143 0.198893 0.979814\nvn 0.004975 0.171915 0.985099\nvn -0.063357 -0.229836 0.971165\nvn 0.004975 0.171915 0.985099\nvn 0.020143 0.198893 0.979814\nvn 0.020143 0.198893 0.979814\nvn -0.059208 -0.260972 0.963529\nvn -0.063357 -0.229836 0.971165\nvn 0.576079 -0.059909 0.815196\nvn 0.537324 -0.274094 0.797593\nvn 0.662326 -0.237133 0.710699\nvn 0.662326 -0.237133 0.710699\nvn 0.668453 -0.147100 0.729063\nvn 0.576079 -0.059909 0.815196\nvn 0.653803 0.074496 0.752989\nvn 0.576079 -0.059909 0.815196\nvn 0.668453 -0.147100 0.729063\nvn 0.668453 -0.147100 0.729063\nvn 0.730541 -0.029542 0.682229\nvn 0.653803 0.074496 0.752989\nvn -0.038576 -0.665807 0.745126\nvn -0.063357 -0.229836 0.971165\nvn -0.059208 -0.260972 0.963529\nvn 0.662326 -0.237133 0.710699\nvn 0.537324 -0.274094 0.797593\nvn 0.543578 -0.429771 0.720986\nvn -0.059208 -0.260972 0.963529\nvn -0.035646 -0.626380 0.778702\nvn -0.038576 -0.665807 0.745126\nvn 0.040011 -0.785103 0.618072\nvn -0.038576 -0.665807 0.745126\nvn -0.035646 -0.626380 0.778702\nvn -0.035646 -0.626380 0.778702\nvn 0.046236 -0.782810 0.620541\nvn 0.040011 -0.785103 0.618072\nvn 0.543578 -0.429771 0.720986\nvn 0.647554 -0.623169 0.438559\nvn 0.747259 -0.465110 0.474633\nvn 0.747259 -0.465110 0.474633\nvn 0.669804 -0.363422 0.647525\nvn 0.543578 -0.429771 0.720986\nvn 0.543578 -0.429771 0.720986\nvn 0.669804 -0.363422 0.647525\nvn 0.662326 -0.237133 0.710699\nvn 0.296618 -0.949395 0.103278\nvn 0.296584 -0.949416 0.103185\nvn 0.296616 -0.949389 0.103338\nvn 0.296616 -0.949389 0.103338\nvn 0.296649 -0.949366 0.103461\nvn 0.296618 -0.949395 0.103278\nvn 0.958721 -0.055331 -0.278912\nvn 0.980339 0.089025 -0.176096\nvn 0.997740 -0.022737 -0.063236\nvn 0.997740 -0.022737 -0.063236\nvn 0.978643 -0.140691 -0.149877\nvn 0.958721 -0.055331 -0.278912\nvn 0.780464 -0.620910 0.073124\nvn 0.877460 -0.466182 0.112860\nvn 0.747259 -0.465110 0.474633\nvn 0.747259 -0.465110 0.474633\nvn 0.647554 -0.623169 0.438559\nvn 0.780464 -0.620910 0.073124\nvn -0.959757 -0.243907 -0.139197\nvn -0.925369 -0.371448 -0.075626\nvn -0.877460 -0.466183 0.112860\nvn -0.959757 -0.243907 -0.139197\nvn -0.877460 -0.466183 0.112860\nvn -0.986569 0.025972 0.161264\nvn -0.959757 -0.243907 -0.139197\nvn -0.986569 0.025972 0.161264\nvn -0.997740 -0.022737 -0.063236\nvn -0.978648 -0.140692 -0.149848\nvn -0.959757 -0.243907 -0.139197\nvn -0.997740 -0.022737 -0.063236\nvn -0.986569 0.025972 0.161264\nvn -0.877460 -0.466183 0.112860\nvn -0.747259 -0.465111 0.474632\nvn -0.747259 -0.465111 0.474632\nvn -0.859233 0.024842 0.510980\nvn -0.986569 0.025972 0.161264\nvn -0.859233 0.024842 0.510980\nvn -0.747259 -0.465111 0.474632\nvn -0.668450 -0.147130 0.729060\nvn -0.747259 -0.465111 0.474632\nvn -0.669811 -0.363396 0.647532\nvn -0.668450 -0.147130 0.729060\nvn -0.669811 -0.363396 0.647532\nvn -0.662326 -0.237134 0.710699\nvn -0.668450 -0.147130 0.729060\nvn -0.730541 -0.029543 0.682229\nvn -0.859233 0.024842 0.510980\nvn -0.668450 -0.147130 0.729060\nvn -0.634289 0.164226 -0.755452\nvn -0.642924 0.192486 -0.741349\nvn -0.565826 -0.268142 -0.779705\nvn -0.565826 -0.268142 -0.779705\nvn -0.572544 -0.240127 -0.783921\nvn -0.634289 0.164226 -0.755452\nvn -0.958721 -0.055331 -0.278912\nvn -0.915433 -0.278186 -0.290851\nvn -0.959757 -0.243907 -0.139197\nvn -0.959757 -0.243907 -0.139197\nvn -0.978648 -0.140692 -0.149848\nvn -0.958721 -0.055331 -0.278912\nvn -0.572544 -0.240127 -0.783921\nvn -0.565826 -0.268142 -0.779705\nvn -0.467102 -0.623882 -0.626567\nvn -0.467102 -0.623882 -0.626567\nvn -0.455169 -0.658156 -0.599710\nvn -0.572544 -0.240127 -0.783921\nvn -0.959757 -0.243907 -0.139197\nvn -0.915433 -0.278186 -0.290851\nvn -0.870253 -0.440025 -0.221447\nvn -0.455169 -0.658156 -0.599710\nvn -0.467102 -0.623882 -0.626567\nvn -0.429746 -0.784933 -0.446318\nvn -0.429746 -0.784933 -0.446318\nvn -0.436576 -0.783670 -0.441886\nvn -0.455169 -0.658156 -0.599710\nvn -0.925369 -0.371448 -0.075626\nvn -0.870253 -0.440025 -0.221447\nvn -0.780463 -0.620910 0.073124\nvn -0.870253 -0.440025 -0.221447\nvn -0.925369 -0.371448 -0.075626\nvn -0.959757 -0.243907 -0.139197\nvn -0.780463 -0.620910 0.073124\nvn -0.877460 -0.466183 0.112860\nvn -0.925369 -0.371448 -0.075626\nvn -0.642924 0.192486 -0.741349\nvn -0.634289 0.164226 -0.755452\nvn -0.689423 0.560266 -0.459127\nvn -0.689423 0.560266 -0.459127\nvn -0.696736 0.519690 -0.494451\nvn -0.642924 0.192486 -0.741349\nvn -0.696736 0.519690 -0.494451\nvn -0.689423 0.560266 -0.459127\nvn -0.731617 0.621166 -0.280872\nvn -0.731617 0.621166 -0.280872\nvn -0.738513 0.613565 -0.279529\nvn -0.696736 0.519690 -0.494451\nvn -0.986569 0.025972 0.161264\nvn -0.961816 0.235639 0.139229\nvn -0.980342 0.088994 -0.176097\nvn -0.980342 0.088994 -0.176097\nvn -0.997740 -0.022737 -0.063236\nvn -0.986569 0.025972 0.161264\nvn -0.657445 0.714881 0.238141\nvn -0.657540 0.714824 0.238051\nvn -0.657481 0.714857 0.238113\nvn -0.657481 0.714857 0.238113\nvn -0.657386 0.714915 0.238203\nvn -0.657445 0.714881 0.238141\nvn -0.388386 0.628052 0.674319\nvn -0.397089 0.621254 0.675548\nvn -0.237017 0.554179 0.797940\nvn -0.237017 0.554179 0.797940\nvn -0.210676 0.523959 0.825277\nvn -0.388386 0.628052 0.674319\nvn -0.730541 -0.029543 0.682229\nvn -0.653801 0.074526 0.752987\nvn -0.828898 0.232860 0.508631\nvn -0.828898 0.232860 0.508631\nvn -0.859233 0.024842 0.510980\nvn -0.730541 -0.029543 0.682229\nvn -0.961816 0.235639 0.139229\nvn -0.986569 0.025972 0.161264\nvn -0.859233 0.024842 0.510980\nvn -0.859233 0.024842 0.510980\nvn -0.828898 0.232860 0.508631\nvn -0.961816 0.235639 0.139229\nvn -0.210676 0.523959 0.825277\nvn -0.237017 0.554179 0.797940\nvn -0.004975 0.171915 0.985099\nvn -0.004975 0.171915 0.985099\nvn -0.020112 0.198893 0.979815\nvn -0.210676 0.523959 0.825277\nvn -0.020112 0.198893 0.979815\nvn -0.004975 0.171915 0.985099\nvn 0.063357 -0.229836 0.971165\nvn 0.063357 -0.229836 0.971165\nvn 0.059208 -0.260972 0.963529\nvn -0.020112 0.198893 0.979815\nvn -0.662326 -0.237134 0.710699\nvn -0.537324 -0.274095 0.797593\nvn -0.576079 -0.059909 0.815196\nvn -0.576079 -0.059909 0.815196\nvn -0.668450 -0.147130 0.729060\nvn -0.662326 -0.237134 0.710699\nvn -0.653801 0.074526 0.752987\nvn -0.730541 -0.029543 0.682229\nvn -0.668450 -0.147130 0.729060\nvn -0.668450 -0.147130 0.729060\nvn -0.576079 -0.059909 0.815196\nvn -0.653801 0.074526 0.752987\nvn 0.059208 -0.260972 0.963529\nvn 0.063357 -0.229836 0.971165\nvn 0.038576 -0.665807 0.745126\nvn -0.543577 -0.429771 0.720986\nvn -0.537324 -0.274095 0.797593\nvn -0.662326 -0.237134 0.710699\nvn 0.038576 -0.665807 0.745126\nvn 0.035647 -0.626380 0.778702\nvn 0.059208 -0.260972 0.963529\nvn 0.035647 -0.626380 0.778702\nvn 0.038576 -0.665807 0.745126\nvn -0.040010 -0.785103 0.618072\nvn -0.040010 -0.785103 0.618072\nvn -0.046236 -0.782810 0.620541\nvn 0.035647 -0.626380 0.778702\nvn -0.747259 -0.465111 0.474632\nvn -0.647554 -0.623169 0.438559\nvn -0.543577 -0.429771 0.720986\nvn -0.543577 -0.429771 0.720986\nvn -0.669811 -0.363396 0.647532\nvn -0.747259 -0.465111 0.474632\nvn -0.662326 -0.237134 0.710699\nvn -0.669811 -0.363396 0.647532\nvn -0.543577 -0.429771 0.720986\nvn -0.296615 -0.949390 0.103338\nvn -0.296584 -0.949416 0.103185\nvn -0.296617 -0.949396 0.103278\nvn -0.296617 -0.949396 0.103278\nvn -0.296649 -0.949369 0.103431\nvn -0.296615 -0.949390 0.103338\nvn -0.958721 -0.055331 -0.278912\nvn -0.978648 -0.140692 -0.149848\nvn -0.997740 -0.022737 -0.063236\nvn -0.997740 -0.022737 -0.063236\nvn -0.980342 0.088994 -0.176097\nvn -0.958721 -0.055331 -0.278912\nvn -0.780463 -0.620910 0.073124\nvn -0.647554 -0.623169 0.438559\nvn -0.747259 -0.465111 0.474632\nvn -0.747259 -0.465111 0.474632\nvn -0.877460 -0.466183 0.112860\nvn -0.780463 -0.620910 0.073124\nvn 0.970212 -0.040346 -0.238875\nvn 0.896747 -0.118933 -0.426262\nvn 0.859945 0.030245 -0.509491\nvn 0.859945 0.030245 -0.509491\nvn 0.973007 0.021455 -0.229778\nvn 0.970212 -0.040346 -0.238875\nvn 0.966723 0.049655 -0.250959\nvn 0.973007 0.021455 -0.229778\nvn 0.859945 0.030245 -0.509491\nvn 0.859945 0.030245 -0.509491\nvn 0.869011 0.259141 -0.421504\nvn 0.966723 0.049655 -0.250959\nvn 0.512026 0.599984 -0.614694\nvn 0.545785 0.575573 -0.608962\nvn 0.379081 0.666574 -0.641854\nvn 0.379081 0.666574 -0.641854\nvn 0.425685 0.640878 -0.638802\nvn 0.512026 0.599984 -0.614694\nvn 0.425685 0.640878 -0.638802\nvn 0.379081 0.666574 -0.641854\nvn 0.109868 0.745212 -0.657714\nvn 0.109868 0.745212 -0.657714\nvn 0.256207 0.694644 -0.672182\nvn 0.425685 0.640878 -0.638802\nvn 0.256207 0.694644 -0.672182\nvn 0.109868 0.745212 -0.657714\nvn 0.012299 0.740596 -0.671838\nvn 0.012299 0.740596 -0.671838\nvn 0.098272 0.722084 -0.684790\nvn 0.256207 0.694644 -0.672182\nvn -0.000000 0.731704 -0.681622\nvn 0.098272 0.722084 -0.684790\nvn 0.012299 0.740596 -0.671838\nvn 0.012299 0.740596 -0.671838\nvn -0.000000 0.730260 -0.683169\nvn -0.000000 0.731704 -0.681622\nvn 0.140172 -0.281962 -0.949131\nvn 0.223068 -0.093176 -0.970340\nvn 0.418597 -0.097142 -0.902962\nvn 0.418597 -0.097142 -0.902962\nvn 0.166239 -0.239455 -0.956570\nvn 0.140172 -0.281962 -0.949131\nvn 0.223068 -0.093176 -0.970340\nvn 0.140172 -0.281962 -0.949131\nvn 0.042391 -0.269973 -0.961934\nvn 0.042391 -0.269973 -0.961934\nvn 0.053347 -0.114323 -0.992010\nvn 0.223068 -0.093176 -0.970340\nvn 0.240185 0.070591 -0.968157\nvn 0.223068 -0.093176 -0.970340\nvn 0.053347 -0.114323 -0.992010\nvn 0.053347 -0.114323 -0.992010\nvn 0.069035 0.006958 -0.997590\nvn 0.240185 0.070591 -0.968157\nvn 0.223068 -0.093176 -0.970340\nvn 0.240185 0.070591 -0.968157\nvn 0.484284 0.013215 -0.874811\nvn 0.484284 0.013215 -0.874811\nvn 0.418597 -0.097142 -0.902962\nvn 0.223068 -0.093176 -0.970340\nvn 0.140172 -0.281962 -0.949131\nvn 0.166239 -0.239455 -0.956570\nvn 0.136482 -0.273513 -0.952136\nvn 0.136482 -0.273513 -0.952136\nvn 0.133948 -0.273938 -0.952374\nvn 0.140172 -0.281962 -0.949131\nvn 0.065831 -0.272295 -0.959959\nvn 0.042391 -0.269973 -0.961934\nvn 0.140172 -0.281962 -0.949131\nvn 0.140172 -0.281962 -0.949131\nvn 0.133948 -0.273938 -0.952374\nvn 0.065831 -0.272295 -0.959959\nvn 0.418597 -0.097142 -0.902962\nvn 0.484284 0.013215 -0.874811\nvn 0.859945 0.030245 -0.509491\nvn 0.859945 0.030245 -0.509491\nvn 0.799410 -0.105137 -0.591515\nvn 0.418597 -0.097142 -0.902962\nvn 0.799410 -0.105137 -0.591515\nvn 0.859945 0.030245 -0.509491\nvn 0.896747 -0.118933 -0.426262\nvn 0.896747 -0.118933 -0.426262\nvn 0.777255 -0.171028 -0.605495\nvn 0.799410 -0.105137 -0.591515\nvn 0.000000 -0.265276 -0.964173\nvn 0.042391 -0.269973 -0.961934\nvn 0.065831 -0.272295 -0.959959\nvn 0.065831 -0.272295 -0.959959\nvn 0.000000 -0.270006 -0.962859\nvn 0.000000 -0.265276 -0.964173\nvn -0.000000 0.006989 -0.999976\nvn 0.069035 0.006958 -0.997590\nvn 0.053347 -0.114323 -0.992010\nvn 0.053347 -0.114323 -0.992010\nvn 0.000000 -0.127937 -0.991782\nvn -0.000000 0.006989 -0.999976\nvn 0.000000 -0.127937 -0.991782\nvn 0.053347 -0.114323 -0.992010\nvn 0.042391 -0.269973 -0.961934\nvn 0.042391 -0.269973 -0.961934\nvn 0.000000 -0.265276 -0.964173\nvn 0.000000 -0.127937 -0.991782\nvn 0.000000 -0.265276 -0.964173\nvn 0.000000 -0.270006 -0.962859\nvn 0.000000 -0.270006 -0.962859\nvn 0.000000 -0.270006 -0.962859\nvn 0.000000 -0.265276 -0.964173\nvn 0.000000 -0.265276 -0.964173\nvn 0.000000 -0.127937 -0.991782\nvn 0.000000 -0.265276 -0.964173\nvn 0.000000 -0.265276 -0.964173\nvn -0.000000 0.006989 -0.999976\nvn 0.000000 -0.127937 -0.991782\nvn 0.000000 -0.127937 -0.991782\nvn 0.000000 -0.265276 -0.964173\nvn 0.000000 -0.127937 -0.991782\nvn 0.000000 -0.127937 -0.991782\nvn 0.000000 -0.127937 -0.991782\nvn -0.000000 0.006989 -0.999976\nvn -0.000000 0.006989 -0.999976\nvn 0.000000 -0.982617 0.185646\nvn 0.000000 -0.982617 0.185646\nvn 0.000000 -0.995647 0.093205\nvn 0.000000 -0.995647 0.093205\nvn 0.000000 -0.992164 0.124944\nvn 0.000000 -0.982617 0.185646\nvn 0.000000 -0.995647 0.093205\nvn 0.000000 -0.982617 0.185646\nvn 0.000000 -0.982617 0.185646\nvn 0.000000 -0.982617 0.185646\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.995647 0.093205\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.982617 0.185646\nvn 0.000000 -0.982617 0.185646\nvn 0.000000 -0.982617 0.185646\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.982617 0.185646\nvn 0.000000 -0.628117 0.778119\nvn 0.000000 -0.628117 0.778119\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -0.995647 0.093205\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -0.992164 0.124944\nvn 0.000000 -0.995647 0.093205\nvn 0.000000 -0.995647 0.093205\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -0.628117 0.778119\nvn -0.000000 0.025788 0.999667\nvn -0.000000 0.025788 0.999667\nvn -0.000000 0.025788 0.999667\nvn -0.000000 0.025788 0.999667\nvn 0.000000 -0.628117 0.778119\nvn 0.987724 -0.154274 0.024507\nvn 0.986144 -0.161234 0.039034\nvn 0.986553 -0.159766 0.034456\nvn 0.986553 -0.159766 0.034456\nvn 0.987956 -0.154578 0.006958\nvn 0.987724 -0.154274 0.024507\nvn 0.994216 -0.104314 0.025544\nvn 0.986553 -0.159766 0.034456\nvn 0.986144 -0.161234 0.039034\nvn 0.986144 -0.161234 0.039034\nvn 0.993361 -0.111211 0.029420\nvn 0.994216 -0.104314 0.025544\nvn 0.998348 -0.049838 0.028597\nvn 0.994216 -0.104314 0.025544\nvn 0.993361 -0.111211 0.029420\nvn 0.993361 -0.111211 0.029420\nvn 0.998046 -0.051516 0.035372\nvn 0.998348 -0.049838 0.028597\nvn 0.998348 -0.049838 0.028597\nvn 0.998046 -0.051516 0.035372\nvn 0.997714 -0.015045 -0.065890\nvn 0.997714 -0.015045 -0.065890\nvn 0.996979 -0.014405 -0.076329\nvn 0.998348 -0.049838 0.028597\nvn 0.996979 -0.014405 -0.076329\nvn 0.997714 -0.015045 -0.065890\nvn 0.998300 -0.024873 -0.052706\nvn 0.998300 -0.024873 -0.052706\nvn 0.998546 -0.027314 -0.046480\nvn 0.996979 -0.014405 -0.076329\nvn 0.993398 -0.101628 0.053225\nvn 0.998546 -0.027314 -0.046480\nvn 0.998300 -0.024873 -0.052706\nvn 0.998300 -0.024873 -0.052706\nvn 0.997360 -0.072574 -0.002625\nvn 0.993398 -0.101628 0.053225\nvn 0.998079 -0.054965 -0.028597\nvn 0.993398 -0.101628 0.053225\nvn 0.997360 -0.072574 -0.002625\nvn 0.997360 -0.072574 -0.002625\nvn 0.998716 -0.047183 -0.018434\nvn 0.998079 -0.054965 -0.028597\nvn 0.996668 -0.031526 0.075230\nvn 0.998079 -0.054965 -0.028597\nvn 0.998716 -0.047183 -0.018434\nvn 0.998716 -0.047183 -0.018434\nvn 0.994986 -0.046816 0.088384\nvn 0.996668 -0.031526 0.075230\nvn 0.984561 -0.162608 0.064793\nvn 0.996668 -0.031526 0.075230\nvn 0.994986 -0.046816 0.088384\nvn 0.994986 -0.046816 0.088384\nvn 0.984515 -0.159889 0.071872\nvn 0.984561 -0.162608 0.064793\nvn 0.985309 -0.170296 -0.012849\nvn 0.984561 -0.162608 0.064793\nvn 0.984515 -0.159889 0.071872\nvn 0.984515 -0.159889 0.071872\nvn 0.988036 -0.153909 0.009858\nvn 0.985309 -0.170296 -0.012849\nvn 0.987956 -0.154578 0.006958\nvn 0.985309 -0.170296 -0.012849\nvn 0.988036 -0.153909 0.009858\nvn 0.988036 -0.153909 0.009858\nvn 0.987724 -0.154274 0.024507\nvn 0.987956 -0.154578 0.006958\nvn 0.063541 -0.955362 -0.288525\nvn 0.052493 -0.887226 -0.458339\nvn 0.055117 -0.887825 -0.456868\nvn 0.055117 -0.887825 -0.456868\nvn 0.064122 -0.949825 -0.306140\nvn 0.063541 -0.955362 -0.288525\nvn 0.054843 -0.531397 -0.845346\nvn 0.059238 -0.533871 -0.843488\nvn 0.057223 -0.532741 -0.844341\nvn 0.057223 -0.532741 -0.844341\nvn 0.052891 -0.530308 -0.846154\nvn 0.054843 -0.531397 -0.845346\nvn 0.070561 -0.997373 0.016389\nvn 0.063541 -0.955362 -0.288525\nvn 0.064122 -0.949825 -0.306140\nvn 0.064122 -0.949825 -0.306140\nvn 0.067508 -0.997716 0.002472\nvn 0.070561 -0.997373 0.016389\nvn 0.064365 -0.986920 0.147803\nvn 0.070561 -0.997373 0.016389\nvn 0.067508 -0.997716 0.002472\nvn 0.067508 -0.997716 0.002472\nvn 0.060275 -0.987437 0.146063\nvn 0.064365 -0.986920 0.147803\nvn 0.075688 0.342610 -0.936424\nvn 0.082219 0.368733 -0.925892\nvn 0.082890 0.367665 -0.926257\nvn 0.082890 0.367665 -0.926257\nvn 0.075381 0.342635 -0.936440\nvn 0.075688 0.342610 -0.936424\nvn 0.058628 0.397271 -0.915827\nvn 0.082890 0.367665 -0.926257\nvn 0.082219 0.368733 -0.925892\nvn 0.082219 0.368733 -0.925892\nvn 0.057223 0.397447 -0.915839\nvn 0.058628 0.397271 -0.915827\nvn 0.117590 0.992758 0.024568\nvn 0.165628 0.977899 0.127601\nvn 0.161478 0.978420 0.128914\nvn 0.161478 0.978420 0.128914\nvn 0.111548 0.993406 0.026491\nvn 0.117590 0.992758 0.024568\nvn 0.173777 0.954373 0.242843\nvn 0.161478 0.978420 0.128914\nvn 0.165628 0.977899 0.127601\nvn 0.165628 0.977899 0.127601\nvn 0.175484 0.954757 0.240093\nvn 0.173777 0.954373 0.242843\nvn 0.118812 0.036501 0.992246\nvn 0.103186 0.037508 0.993955\nvn 0.103887 0.037447 0.993884\nvn 0.103887 0.037447 0.993884\nvn 0.119910 0.036440 0.992116\nvn 0.118812 0.036501 0.992246\nvn 0.101814 -0.682938 0.723346\nvn 0.088353 -0.642062 0.761545\nvn 0.090641 -0.636501 0.765931\nvn 0.090641 -0.636501 0.765931\nvn 0.103612 -0.682587 0.723422\nvn 0.101814 -0.682938 0.723346\nvn 0.075047 -0.595124 0.800122\nvn 0.090641 -0.636501 0.765931\nvn 0.088353 -0.642062 0.761545\nvn 0.088353 -0.642062 0.761545\nvn 0.072911 -0.595552 0.800001\nvn 0.075047 -0.595124 0.800122\nvn 0.144141 0.935868 0.321519\nvn 0.147012 0.918117 0.368034\nvn 0.148690 0.868731 0.472438\nvn 0.148690 0.868731 0.472438\nvn 0.136083 0.883578 0.448076\nvn 0.144141 0.935868 0.321519\nvn 0.138558 0.981200 0.134346\nvn 0.147012 0.918117 0.368034\nvn 0.144141 0.935868 0.321519\nvn 0.144141 0.935868 0.321519\nvn 0.144142 0.983602 0.108404\nvn 0.138558 0.981200 0.134346\nvn 0.136422 0.990632 -0.006043\nvn 0.138558 0.981200 0.134346\nvn 0.144142 0.983602 0.108404\nvn 0.144142 0.983602 0.108404\nvn 0.139443 0.990170 -0.010926\nvn 0.136422 0.990632 -0.006043\nvn 0.136422 0.990632 -0.006043\nvn 0.139443 0.990170 -0.010926\nvn 0.135872 0.989563 -0.048007\nvn 0.135872 0.989563 -0.048007\nvn 0.133550 0.989694 -0.051668\nvn 0.136422 0.990632 -0.006043\nvn 0.060030 0.627865 -0.776004\nvn 0.053835 0.637110 -0.768890\nvn 0.055087 0.636844 -0.769022\nvn 0.055087 0.636844 -0.769022\nvn 0.060397 0.626093 -0.777406\nvn 0.060030 0.627865 -0.776004\nvn 0.058749 0.618556 -0.783541\nvn 0.060030 0.627865 -0.776004\nvn 0.060397 0.626093 -0.777406\nvn 0.060397 0.626093 -0.777406\nvn 0.058627 0.618594 -0.783520\nvn 0.058749 0.618556 -0.783541\nvn -0.038454 -0.974010 -0.223215\nvn -0.031129 -0.998447 -0.046205\nvn -0.033205 -0.998315 -0.047579\nvn -0.033205 -0.998315 -0.047579\nvn -0.040254 -0.971910 -0.231884\nvn -0.038454 -0.974010 -0.223215\nvn -0.041903 -0.916624 -0.397548\nvn -0.038454 -0.974010 -0.223215\nvn -0.040254 -0.971910 -0.231884\nvn -0.040254 -0.971910 -0.231884\nvn -0.043154 -0.914140 -0.403097\nvn -0.041903 -0.916624 -0.397548\nvn 0.076297 -0.389085 0.918037\nvn 0.083471 -0.383264 0.919859\nvn 0.082951 -0.383045 0.919998\nvn 0.082951 -0.383045 0.919998\nvn 0.075414 -0.389214 0.918055\nvn 0.076297 -0.389085 0.918037\nvn 0.082951 -0.383045 0.919998\nvn 0.083471 -0.383264 0.919859\nvn 0.081334 -0.377767 0.922321\nvn 0.081334 -0.377767 0.922321\nvn 0.081028 -0.377703 0.922375\nvn 0.082951 -0.383045 0.919998\nvn -0.017457 -0.032716 -0.999312\nvn -0.017853 -0.032716 -0.999305\nvn -0.014649 -0.032656 -0.999359\nvn -0.014649 -0.032656 -0.999359\nvn -0.014283 -0.032655 -0.999365\nvn -0.017457 -0.032716 -0.999312\nvn 0.916270 -0.399767 -0.025209\nvn 0.916270 -0.399767 -0.025209\nvn 0.916270 -0.399767 -0.025209\nvn 0.996105 0.082493 -0.031129\nvn 0.998100 -0.038545 0.048068\nvn 0.986843 -0.100530 0.126625\nvn 0.998100 -0.038545 0.048068\nvn 0.989579 -0.143988 -0.000641\nvn 0.986843 -0.100530 0.126625\nvn 0.998100 -0.038545 0.048068\nvn 0.995359 -0.078587 0.055545\nvn 0.989579 -0.143988 -0.000641\nvn 0.998100 -0.038545 0.048068\nvn 0.983481 -0.179788 0.020997\nvn 0.995359 -0.078587 0.055545\nvn 0.171793 0.368551 -0.913596\nvn 0.171793 0.368551 -0.913596\nvn 0.171793 0.368551 -0.913596\nvn 0.989579 -0.143988 -0.000641\nvn 0.982712 -0.166572 -0.080814\nvn 0.986843 -0.100530 0.126625\nvn 0.982712 -0.166572 -0.080814\nvn 0.982310 -0.166785 -0.085148\nvn 0.986843 -0.100530 0.126625\nvn 0.996105 0.082493 -0.031129\nvn 0.986843 -0.100530 0.126625\nvn 0.992377 -0.036988 0.117558\nvn -0.970212 -0.040347 -0.238875\nvn -0.973007 0.021455 -0.229778\nvn -0.859945 0.030244 -0.509491\nvn -0.859945 0.030244 -0.509491\nvn -0.896747 -0.118934 -0.426262\nvn -0.970212 -0.040347 -0.238875\nvn -0.859945 0.030244 -0.509491\nvn -0.973007 0.021455 -0.229778\nvn -0.966723 0.049654 -0.250959\nvn -0.966723 0.049654 -0.250959\nvn -0.869011 0.259140 -0.421504\nvn -0.859945 0.030244 -0.509491\nvn -0.379082 0.666574 -0.641854\nvn -0.545786 0.575573 -0.608962\nvn -0.512026 0.599983 -0.614694\nvn -0.512026 0.599983 -0.614694\nvn -0.425685 0.640877 -0.638802\nvn -0.379082 0.666574 -0.641854\nvn -0.109868 0.745212 -0.657714\nvn -0.379082 0.666574 -0.641854\nvn -0.425685 0.640877 -0.638802\nvn -0.425685 0.640877 -0.638802\nvn -0.256207 0.694644 -0.672182\nvn -0.109868 0.745212 -0.657714\nvn -0.012299 0.740596 -0.671838\nvn -0.109868 0.745212 -0.657714\nvn -0.256207 0.694644 -0.672182\nvn -0.256207 0.694644 -0.672182\nvn -0.098272 0.722084 -0.684790\nvn -0.012299 0.740596 -0.671838\nvn -0.012299 0.740596 -0.671838\nvn -0.098272 0.722084 -0.684790\nvn -0.000000 0.731704 -0.681622\nvn -0.000000 0.731704 -0.681622\nvn -0.000000 0.730260 -0.683169\nvn -0.012299 0.740596 -0.671838\nvn -0.140172 -0.281962 -0.949131\nvn -0.166239 -0.239455 -0.956570\nvn -0.418597 -0.097142 -0.902962\nvn -0.418597 -0.097142 -0.902962\nvn -0.223068 -0.093176 -0.970340\nvn -0.140172 -0.281962 -0.949131\nvn -0.042391 -0.269973 -0.961934\nvn -0.140172 -0.281962 -0.949131\nvn -0.223068 -0.093176 -0.970340\nvn -0.223068 -0.093176 -0.970340\nvn -0.053347 -0.114323 -0.992010\nvn -0.042391 -0.269973 -0.961934\nvn -0.053347 -0.114323 -0.992010\nvn -0.223068 -0.093176 -0.970340\nvn -0.240185 0.070591 -0.968157\nvn -0.240185 0.070591 -0.968157\nvn -0.069065 0.006958 -0.997588\nvn -0.053347 -0.114323 -0.992010\nvn -0.223068 -0.093176 -0.970340\nvn -0.418597 -0.097142 -0.902962\nvn -0.484284 0.013215 -0.874811\nvn -0.484284 0.013215 -0.874811\nvn -0.240185 0.070591 -0.968157\nvn -0.223068 -0.093176 -0.970340\nvn -0.136482 -0.273513 -0.952136\nvn -0.166239 -0.239455 -0.956570\nvn -0.140172 -0.281962 -0.949131\nvn -0.140172 -0.281962 -0.949131\nvn -0.133948 -0.273938 -0.952374\nvn -0.136482 -0.273513 -0.952136\nvn -0.065830 -0.272295 -0.959959\nvn -0.133948 -0.273938 -0.952374\nvn -0.140172 -0.281962 -0.949131\nvn -0.140172 -0.281962 -0.949131\nvn -0.042391 -0.269973 -0.961934\nvn -0.065830 -0.272295 -0.959959\nvn -0.418597 -0.097142 -0.902962\nvn -0.799412 -0.105107 -0.591517\nvn -0.859945 0.030244 -0.509491\nvn -0.859945 0.030244 -0.509491\nvn -0.484284 0.013215 -0.874811\nvn -0.418597 -0.097142 -0.902962\nvn -0.799412 -0.105107 -0.591517\nvn -0.777255 -0.171028 -0.605495\nvn -0.896747 -0.118934 -0.426262\nvn -0.896747 -0.118934 -0.426262\nvn -0.859945 0.030244 -0.509491\nvn -0.799412 -0.105107 -0.591517\nvn -0.065830 -0.272295 -0.959959\nvn -0.042391 -0.269973 -0.961934\nvn 0.000000 -0.265276 -0.964173\nvn 0.000000 -0.265276 -0.964173\nvn 0.000000 -0.270006 -0.962859\nvn -0.065830 -0.272295 -0.959959\nvn -0.053347 -0.114323 -0.992010\nvn -0.069065 0.006958 -0.997588\nvn -0.000000 0.006989 -0.999976\nvn -0.000000 0.006989 -0.999976\nvn 0.000000 -0.127937 -0.991782\nvn -0.053347 -0.114323 -0.992010\nvn 0.000000 -0.127937 -0.991782\nvn 0.000000 -0.265276 -0.964173\nvn -0.042391 -0.269973 -0.961934\nvn -0.042391 -0.269973 -0.961934\nvn -0.053347 -0.114323 -0.992010\nvn 0.000000 -0.127937 -0.991782\nvn 0.000000 -0.270006 -0.962859\nvn 0.000000 -0.270006 -0.962859\nvn 0.000000 -0.265276 -0.964173\nvn 0.000000 -0.265276 -0.964173\nvn 0.000000 -0.265276 -0.964173\nvn 0.000000 -0.270006 -0.962859\nvn 0.000000 -0.265276 -0.964173\nvn 0.000000 -0.265276 -0.964173\nvn 0.000000 -0.127937 -0.991782\nvn 0.000000 -0.127937 -0.991782\nvn 0.000000 -0.127937 -0.991782\nvn -0.000000 0.006989 -0.999976\nvn 0.000000 -0.127937 -0.991782\nvn 0.000000 -0.127937 -0.991782\nvn 0.000000 -0.265276 -0.964173\nvn -0.000000 0.006989 -0.999976\nvn -0.000000 0.006989 -0.999976\nvn 0.000000 -0.127937 -0.991782\nvn 0.000000 -0.982617 0.185646\nvn 0.000000 -0.992164 0.124944\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.982617 0.185646\nvn 0.000000 -0.982617 0.185646\nvn 0.000000 -0.982617 0.185646\nvn 0.000000 -0.982617 0.185646\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.982617 0.185646\nvn 0.000000 -0.982617 0.185646\nvn 0.000000 -0.982617 0.185646\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.982617 0.185646\nvn 0.000000 -0.628117 0.778119\nvn 0.000000 -0.982617 0.185646\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.628117 0.778119\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.995644 0.093235\nvn 0.000000 -0.992164 0.124944\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -0.628117 0.778119\nvn -0.000000 0.025788 0.999667\nvn -0.000000 0.025788 0.999667\nvn -0.000000 0.025788 0.999667\nvn -0.000000 0.025788 0.999667\nvn 0.000000 -0.628117 0.778119\nvn -0.986553 -0.159767 0.034456\nvn -0.986149 -0.161205 0.039035\nvn -0.987724 -0.154275 0.024507\nvn -0.987724 -0.154275 0.024507\nvn -0.987956 -0.154578 0.006958\nvn -0.986553 -0.159767 0.034456\nvn -0.986149 -0.161205 0.039035\nvn -0.986553 -0.159767 0.034456\nvn -0.994216 -0.104314 0.025544\nvn -0.994216 -0.104314 0.025544\nvn -0.993361 -0.111211 0.029420\nvn -0.986149 -0.161205 0.039035\nvn -0.993361 -0.111211 0.029420\nvn -0.994216 -0.104314 0.025544\nvn -0.998348 -0.049838 0.028597\nvn -0.998348 -0.049838 0.028597\nvn -0.998046 -0.051517 0.035372\nvn -0.993361 -0.111211 0.029420\nvn -0.997714 -0.015046 -0.065890\nvn -0.998046 -0.051517 0.035372\nvn -0.998348 -0.049838 0.028597\nvn -0.998348 -0.049838 0.028597\nvn -0.996979 -0.014405 -0.076329\nvn -0.997714 -0.015046 -0.065890\nvn -0.998300 -0.024873 -0.052706\nvn -0.997714 -0.015046 -0.065890\nvn -0.996979 -0.014405 -0.076329\nvn -0.996979 -0.014405 -0.076329\nvn -0.998546 -0.027315 -0.046480\nvn -0.998300 -0.024873 -0.052706\nvn -0.998300 -0.024873 -0.052706\nvn -0.998546 -0.027315 -0.046480\nvn -0.993398 -0.101629 0.053225\nvn -0.993398 -0.101629 0.053225\nvn -0.997360 -0.072574 -0.002625\nvn -0.998300 -0.024873 -0.052706\nvn -0.997360 -0.072574 -0.002625\nvn -0.993398 -0.101629 0.053225\nvn -0.998079 -0.054966 -0.028597\nvn -0.998079 -0.054966 -0.028597\nvn -0.998718 -0.047153 -0.018434\nvn -0.997360 -0.072574 -0.002625\nvn -0.998718 -0.047153 -0.018434\nvn -0.998079 -0.054966 -0.028597\nvn -0.996668 -0.031527 0.075230\nvn -0.996668 -0.031527 0.075230\nvn -0.994984 -0.046847 0.088383\nvn -0.998718 -0.047153 -0.018434\nvn -0.994984 -0.046847 0.088383\nvn -0.996668 -0.031527 0.075230\nvn -0.984561 -0.162609 0.064793\nvn -0.984561 -0.162609 0.064793\nvn -0.984515 -0.159890 0.071872\nvn -0.994984 -0.046847 0.088383\nvn -0.984515 -0.159890 0.071872\nvn -0.984561 -0.162609 0.064793\nvn -0.985309 -0.170297 -0.012849\nvn -0.985309 -0.170297 -0.012849\nvn -0.988036 -0.153910 0.009858\nvn -0.984515 -0.159890 0.071872\nvn -0.988036 -0.153910 0.009858\nvn -0.985309 -0.170297 -0.012849\nvn -0.987956 -0.154578 0.006958\nvn -0.987956 -0.154578 0.006958\nvn -0.987724 -0.154275 0.024507\nvn -0.988036 -0.153910 0.009858\nvn -0.063540 -0.955362 -0.288525\nvn -0.064121 -0.949825 -0.306140\nvn -0.055117 -0.887825 -0.456868\nvn -0.055117 -0.887825 -0.456868\nvn -0.052493 -0.887226 -0.458339\nvn -0.063540 -0.955362 -0.288525\nvn -0.057223 -0.532741 -0.844341\nvn -0.059237 -0.533871 -0.843488\nvn -0.054842 -0.531397 -0.845346\nvn -0.054842 -0.531397 -0.845346\nvn -0.052890 -0.530308 -0.846154\nvn -0.057223 -0.532741 -0.844341\nvn -0.064121 -0.949825 -0.306140\nvn -0.063540 -0.955362 -0.288525\nvn -0.070560 -0.997373 0.016389\nvn -0.070560 -0.997373 0.016389\nvn -0.067507 -0.997716 0.002472\nvn -0.064121 -0.949825 -0.306140\nvn -0.067507 -0.997716 0.002472\nvn -0.070560 -0.997373 0.016389\nvn -0.064364 -0.986920 0.147803\nvn -0.064364 -0.986920 0.147803\nvn -0.060274 -0.987437 0.146063\nvn -0.067507 -0.997716 0.002472\nvn -0.075688 0.342610 -0.936424\nvn -0.075382 0.342635 -0.936440\nvn -0.082890 0.367664 -0.926257\nvn -0.082890 0.367664 -0.926257\nvn -0.082219 0.368733 -0.925892\nvn -0.075688 0.342610 -0.936424\nvn -0.082219 0.368733 -0.925892\nvn -0.082890 0.367664 -0.926257\nvn -0.058628 0.397271 -0.915827\nvn -0.058628 0.397271 -0.915827\nvn -0.057223 0.397447 -0.915839\nvn -0.082219 0.368733 -0.925892\nvn -0.117591 0.992758 0.024568\nvn -0.111549 0.993406 0.026491\nvn -0.161478 0.978420 0.128914\nvn -0.161478 0.978420 0.128914\nvn -0.165628 0.977898 0.127601\nvn -0.117591 0.992758 0.024568\nvn -0.165628 0.977898 0.127601\nvn -0.161478 0.978420 0.128914\nvn -0.173778 0.954373 0.242843\nvn -0.173778 0.954373 0.242843\nvn -0.175485 0.954757 0.240093\nvn -0.165628 0.977898 0.127601\nvn -0.118812 0.036501 0.992246\nvn -0.119910 0.036440 0.992116\nvn -0.103887 0.037447 0.993884\nvn -0.103887 0.037447 0.993884\nvn -0.103186 0.037508 0.993955\nvn -0.118812 0.036501 0.992246\nvn -0.090641 -0.636501 0.765931\nvn -0.088353 -0.642062 0.761545\nvn -0.101813 -0.682938 0.723346\nvn -0.101813 -0.682938 0.723346\nvn -0.103612 -0.682587 0.723422\nvn -0.090641 -0.636501 0.765931\nvn -0.088353 -0.642062 0.761545\nvn -0.090641 -0.636501 0.765931\nvn -0.075047 -0.595124 0.800122\nvn -0.075047 -0.595124 0.800122\nvn -0.072910 -0.595552 0.800001\nvn -0.088353 -0.642062 0.761545\nvn -0.144142 0.935868 0.321519\nvn -0.136083 0.883578 0.448076\nvn -0.148690 0.868731 0.472438\nvn -0.148690 0.868731 0.472438\nvn -0.147013 0.918117 0.368034\nvn -0.144142 0.935868 0.321519\nvn -0.144142 0.935868 0.321519\nvn -0.147013 0.918117 0.368034\nvn -0.138559 0.981200 0.134346\nvn -0.138559 0.981200 0.134346\nvn -0.144142 0.983601 0.108404\nvn -0.144142 0.935868 0.321519\nvn -0.144142 0.983601 0.108404\nvn -0.138559 0.981200 0.134346\nvn -0.136422 0.990632 -0.006043\nvn -0.136422 0.990632 -0.006043\nvn -0.139443 0.990170 -0.010926\nvn -0.144142 0.983601 0.108404\nvn -0.135873 0.989562 -0.048007\nvn -0.139443 0.990170 -0.010926\nvn -0.136422 0.990632 -0.006043\nvn -0.136422 0.990632 -0.006043\nvn -0.133551 0.989694 -0.051668\nvn -0.135873 0.989562 -0.048007\nvn -0.055087 0.636844 -0.769022\nvn -0.053837 0.637125 -0.768878\nvn -0.060031 0.627865 -0.776004\nvn -0.060031 0.627865 -0.776004\nvn -0.060397 0.626093 -0.777406\nvn -0.055087 0.636844 -0.769022\nvn -0.060397 0.626093 -0.777406\nvn -0.060031 0.627865 -0.776004\nvn -0.058749 0.618556 -0.783541\nvn -0.058749 0.618556 -0.783541\nvn -0.058628 0.618594 -0.783520\nvn -0.060397 0.626093 -0.777406\nvn 0.038454 -0.974010 -0.223215\nvn 0.040255 -0.971910 -0.231884\nvn 0.033205 -0.998315 -0.047579\nvn 0.033205 -0.998315 -0.047579\nvn 0.031129 -0.998447 -0.046205\nvn 0.038454 -0.974010 -0.223215\nvn 0.040255 -0.971910 -0.231884\nvn 0.038454 -0.974010 -0.223215\nvn 0.041904 -0.916624 -0.397548\nvn 0.041904 -0.916624 -0.397548\nvn 0.043154 -0.914139 -0.403097\nvn 0.040255 -0.971910 -0.231884\nvn -0.076297 -0.389085 0.918037\nvn -0.075413 -0.389214 0.918055\nvn -0.082951 -0.383045 0.919998\nvn -0.082951 -0.383045 0.919998\nvn -0.083471 -0.383264 0.919859\nvn -0.076297 -0.389085 0.918037\nvn -0.081303 -0.377768 0.922324\nvn -0.083471 -0.383264 0.919859\nvn -0.082951 -0.383045 0.919998\nvn -0.082951 -0.383045 0.919998\nvn -0.081028 -0.377703 0.922375\nvn -0.081303 -0.377768 0.922324\nvn 0.017457 -0.032716 -0.999312\nvn 0.014283 -0.032655 -0.999365\nvn 0.014649 -0.032656 -0.999359\nvn 0.014649 -0.032656 -0.999359\nvn 0.017853 -0.032716 -0.999305\nvn 0.017457 -0.032716 -0.999312\nvn -0.171793 0.368551 -0.913596\nvn -0.171793 0.368551 -0.913596\nvn -0.171793 0.368551 -0.913596\nvn -0.989579 -0.143989 -0.000641\nvn -0.995359 -0.078588 0.055545\nvn -0.998100 -0.038546 0.048068\nvn -0.995359 -0.078588 0.055545\nvn -0.983481 -0.179789 0.020997\nvn -0.998100 -0.038546 0.048068\nvn -0.989579 -0.143989 -0.000641\nvn -0.998100 -0.038546 0.048068\nvn -0.986843 -0.100531 0.126625\nvn -0.998100 -0.038546 0.048068\nvn -0.996105 0.082492 -0.031129\nvn -0.986843 -0.100531 0.126625\nvn -0.916270 -0.399768 -0.025209\nvn -0.916270 -0.399768 -0.025209\nvn -0.916270 -0.399768 -0.025209\nvn -0.996105 0.082492 -0.031129\nvn -0.992376 -0.037019 0.117558\nvn -0.986843 -0.100531 0.126625\nvn -0.989579 -0.143989 -0.000641\nvn -0.986843 -0.100531 0.126625\nvn -0.982712 -0.166573 -0.080814\nvn -0.986843 -0.100531 0.126625\nvn -0.982310 -0.166786 -0.085148\nvn -0.982712 -0.166573 -0.080814\nvn 0.964838 -0.183573 -0.188121\nvn 0.964443 -0.182902 -0.190777\nvn 0.964578 -0.182289 -0.190682\nvn 0.964578 -0.182289 -0.190682\nvn 0.964570 -0.189221 -0.183850\nvn 0.964838 -0.183573 -0.188121\nvn 0.965140 -0.191813 -0.178080\nvn 0.964570 -0.189221 -0.183850\nvn 0.964578 -0.182289 -0.190682\nvn 0.964578 -0.182289 -0.190682\nvn 0.962597 -0.199776 -0.183022\nvn 0.965140 -0.191813 -0.178080\nvn 0.972403 -0.144996 -0.182780\nvn 0.964838 -0.183573 -0.188121\nvn 0.964570 -0.189221 -0.183850\nvn 0.964570 -0.189221 -0.183850\nvn 0.969682 -0.170662 -0.174905\nvn 0.972403 -0.144996 -0.182780\nvn 0.969682 -0.170662 -0.174905\nvn 0.964570 -0.189221 -0.183850\nvn 0.965140 -0.191813 -0.178080\nvn 0.980692 -0.188423 -0.052340\nvn 0.972403 -0.144996 -0.182780\nvn 0.969682 -0.170662 -0.174905\nvn 0.969682 -0.170662 -0.174905\nvn 0.980420 -0.185951 -0.064792\nvn 0.980692 -0.188423 -0.052340\nvn 0.975823 -0.168680 -0.138985\nvn 0.980420 -0.185951 -0.064792\nvn 0.969682 -0.170662 -0.174905\nvn 0.969682 -0.170662 -0.174905\nvn 0.967729 -0.178414 -0.177957\nvn 0.975823 -0.168680 -0.138985\nvn 0.965140 -0.191813 -0.178080\nvn 0.967729 -0.178414 -0.177957\nvn 0.969682 -0.170662 -0.174905\nvn 0.963862 -0.170206 -0.204937\nvn 0.964578 -0.182289 -0.190682\nvn 0.964443 -0.182902 -0.190777\nvn 0.837933 0.229107 -0.495356\nvn 0.837933 0.229107 -0.495356\nvn 0.837933 0.229107 -0.495356\nvn 0.964578 -0.182289 -0.190682\nvn 0.963862 -0.170206 -0.204937\nvn 0.958140 -0.214456 -0.189675\nvn 0.958140 -0.214456 -0.189675\nvn 0.962597 -0.199776 -0.183022\nvn 0.964578 -0.182289 -0.190682\nvn 0.965140 -0.191813 -0.178080\nvn 0.962597 -0.199776 -0.183022\nvn 0.959435 -0.211102 -0.186870\nvn 0.959435 -0.211102 -0.186870\nvn 0.962597 -0.199776 -0.183022\nvn 0.958140 -0.214456 -0.189675\nvn 0.959435 -0.211102 -0.186870\nvn 0.968233 -0.183605 -0.169750\nvn 0.965140 -0.191813 -0.178080\nvn 0.975823 -0.168680 -0.138985\nvn 0.967729 -0.178414 -0.177957\nvn 0.969681 -0.173073 -0.172524\nvn 0.965140 -0.191813 -0.178080\nvn 0.968233 -0.183605 -0.169750\nvn 0.969681 -0.173073 -0.172524\nvn 0.969681 -0.173073 -0.172524\nvn 0.967729 -0.178414 -0.177957\nvn 0.965140 -0.191813 -0.178080\nvn 0.969681 -0.173073 -0.172524\nvn 0.970749 -0.167854 -0.171670\nvn 0.975823 -0.168680 -0.138985\nvn 0.958140 -0.214456 -0.189675\nvn 0.932156 -0.286364 -0.221541\nvn 0.959435 -0.211102 -0.186870\nvn 0.071262 -0.996480 0.044161\nvn 0.059055 -0.988221 -0.141183\nvn 0.062107 -0.988367 -0.138832\nvn 0.062107 -0.988367 -0.138832\nvn 0.071903 -0.988938 0.129736\nvn 0.071262 -0.996480 0.044161\nvn 0.071262 -0.996480 0.044161\nvn 0.071903 -0.988938 0.129736\nvn 0.124335 -0.897289 0.423573\nvn 0.124335 -0.897289 0.423573\nvn 0.119849 -0.916673 0.381245\nvn 0.071262 -0.996480 0.044161\nvn 0.672705 -0.724892 0.148323\nvn 0.656020 -0.747090 -0.107215\nvn 0.655704 -0.754586 -0.025544\nvn 0.655704 -0.754586 -0.025544\nvn 0.682419 -0.709794 0.174633\nvn 0.672705 -0.724892 0.148323\nvn 0.707979 -0.640501 0.297529\nvn 0.672705 -0.724892 0.148323\nvn 0.682419 -0.709794 0.174633\nvn 0.682419 -0.709794 0.174633\nvn 0.711587 -0.621616 0.327472\nvn 0.707979 -0.640501 0.297529\nvn 0.018709 -0.433988 -0.900724\nvn 0.031343 -0.639158 -0.768436\nvn 0.030306 -0.638247 -0.769235\nvn 0.644739 -0.648096 -0.405319\nvn 0.585904 -0.457816 -0.668671\nvn 0.570017 -0.392666 -0.721730\nvn 0.570017 -0.392666 -0.721730\nvn 0.649155 -0.645767 -0.401975\nvn 0.644739 -0.648096 -0.405319\nvn 0.649155 -0.645767 -0.401975\nvn 0.655704 -0.754586 -0.025544\nvn 0.656020 -0.747090 -0.107215\nvn 0.656020 -0.747090 -0.107215\nvn 0.644739 -0.648096 -0.405319\nvn 0.649155 -0.645767 -0.401975\nvn 0.550530 -0.169990 -0.817325\nvn 0.570017 -0.392666 -0.721730\nvn 0.585904 -0.457816 -0.668671\nvn 0.585904 -0.457816 -0.668671\nvn 0.550665 -0.180004 -0.815087\nvn 0.550530 -0.169990 -0.817325\nvn 0.006806 -0.120429 -0.992699\nvn 0.006897 -0.074496 -0.997197\nvn 0.018709 -0.433988 -0.900724\nvn 0.018709 -0.433988 -0.900724\nvn 0.020875 -0.480492 -0.876751\nvn 0.006806 -0.120429 -0.992699\nvn 0.030306 -0.638247 -0.769235\nvn 0.020875 -0.480492 -0.876751\nvn 0.018709 -0.433988 -0.900724\nvn 0.572233 0.056308 -0.818156\nvn 0.550530 -0.169990 -0.817325\nvn 0.550665 -0.180004 -0.815087\nvn 0.550665 -0.180004 -0.815087\nvn 0.572332 0.024294 -0.819662\nvn 0.572233 0.056308 -0.818156\nvn 0.008240 0.216445 -0.976260\nvn 0.006897 -0.074496 -0.997197\nvn 0.006806 -0.120429 -0.992699\nvn 0.539307 0.161570 -0.826464\nvn 0.572233 0.056308 -0.818156\nvn 0.572332 0.024294 -0.819662\nvn 0.572332 0.024294 -0.819662\nvn 0.538544 0.161936 -0.826890\nvn 0.539307 0.161570 -0.826464\nvn -0.010651 0.331495 -0.943397\nvn -0.011262 0.331593 -0.943355\nvn 0.008240 0.216445 -0.976260\nvn 0.008240 0.216445 -0.976260\nvn 0.008301 0.177104 -0.984157\nvn -0.010651 0.331495 -0.943397\nvn 0.006806 -0.120429 -0.992699\nvn 0.008301 0.177104 -0.984157\nvn 0.008240 0.216445 -0.976260\nvn 0.707524 -0.545620 0.449119\nvn 0.707979 -0.640501 0.297529\nvn 0.711587 -0.621616 0.327472\nvn 0.182170 -0.762862 0.620367\nvn 0.182537 -0.578741 0.794820\nvn 0.183847 -0.607939 0.772406\nvn 0.177377 -0.454795 0.872754\nvn 0.183847 -0.607939 0.772406\nvn 0.182537 -0.578741 0.794820\nvn 0.182537 -0.578741 0.794820\nvn 0.177349 -0.445281 0.877652\nvn 0.177377 -0.454795 0.872754\nvn 0.176433 -0.403680 0.897727\nvn 0.177377 -0.454795 0.872754\nvn 0.177349 -0.445281 0.877652\nvn 0.177349 -0.445281 0.877652\nvn 0.179425 -0.401118 0.898282\nvn 0.176433 -0.403680 0.897727\nvn 0.176433 -0.403680 0.897727\nvn 0.179425 -0.401118 0.898282\nvn 0.083043 -0.374839 0.923363\nvn 0.083043 -0.374839 0.923363\nvn 0.080571 -0.374410 0.923756\nvn 0.176433 -0.403680 0.897727\nvn 0.702567 -0.373044 0.606002\nvn 0.720623 -0.398338 0.567477\nvn 0.725128 -0.390000 0.567529\nvn 0.725128 -0.390000 0.567529\nvn 0.701205 -0.373400 0.607359\nvn 0.702567 -0.373044 0.606002\nvn 0.698004 -0.459649 0.549101\nvn 0.707524 -0.545620 0.449119\nvn 0.703139 -0.523714 0.480957\nvn 0.703139 -0.523714 0.480957\nvn 0.702689 -0.451327 0.550029\nvn 0.698004 -0.459649 0.549101\nvn 0.702689 -0.451327 0.550029\nvn 0.725128 -0.390000 0.567529\nvn 0.720623 -0.398338 0.567477\nvn 0.720623 -0.398338 0.567477\nvn 0.698004 -0.459649 0.549101\nvn 0.702689 -0.451327 0.550029\nvn 0.711587 -0.621616 0.327472\nvn 0.703139 -0.523714 0.480957\nvn 0.707524 -0.545620 0.449119\nvn 0.183847 -0.607939 0.772406\nvn 0.173532 -0.787210 0.591766\nvn 0.182170 -0.762862 0.620367\nvn 0.124335 -0.897289 0.423573\nvn 0.182170 -0.762862 0.620367\nvn 0.173532 -0.787210 0.591766\nvn 0.173532 -0.787210 0.591766\nvn 0.119849 -0.916673 0.381245\nvn 0.124335 -0.897289 0.423573\nvn 0.805223 0.592900 -0.009247\nvn 0.812761 0.582554 -0.007081\nvn 0.770470 0.635879 -0.045108\nvn 0.770470 0.635879 -0.045108\nvn 0.778476 0.627011 -0.028840\nvn 0.805223 0.592900 -0.009247\nvn 0.737829 0.670596 -0.076878\nvn 0.778476 0.627011 -0.028840\nvn 0.770470 0.635879 -0.045108\nvn 0.770470 0.635879 -0.045108\nvn 0.737128 0.671665 -0.074223\nvn 0.737829 0.670596 -0.076878\nvn 0.051516 0.998342 0.025697\nvn 0.049715 0.998457 0.024751\nvn 0.054140 0.998217 0.025148\nvn 0.054140 0.998217 0.025148\nvn 0.056093 0.998088 0.025971\nvn 0.051516 0.998342 0.025697\nvn 0.056093 0.998088 0.025971\nvn 0.054140 0.998217 0.025148\nvn 0.071598 0.997132 0.024538\nvn 0.071598 0.997132 0.024538\nvn 0.071718 0.997102 0.025361\nvn 0.056093 0.998088 0.025971\nvn 0.737829 0.670596 -0.076878\nvn 0.737128 0.671665 -0.074223\nvn 0.733098 0.672793 -0.099584\nvn 0.733098 0.672793 -0.099584\nvn 0.732831 0.673075 -0.099646\nvn 0.737829 0.670596 -0.076878\nvn 0.082401 0.996414 0.019227\nvn 0.071718 0.997102 0.025361\nvn 0.071598 0.997132 0.024538\nvn 0.071598 0.997132 0.024538\nvn 0.085666 0.996168 0.017640\nvn 0.082401 0.996414 0.019227\nvn 0.612275 0.170633 -0.772013\nvn 0.610102 0.134497 -0.780824\nvn 0.556970 -0.179298 -0.810948\nvn 0.556970 -0.179298 -0.810948\nvn 0.566683 -0.141335 -0.811723\nvn 0.612275 0.170633 -0.772013\nvn 0.514008 -0.316273 -0.797350\nvn 0.566683 -0.141335 -0.811723\nvn 0.556970 -0.179298 -0.810948\nvn 0.556970 -0.179298 -0.810948\nvn 0.513981 -0.316305 -0.797355\nvn 0.514008 -0.316273 -0.797350\nvn 0.612918 0.301439 -0.730387\nvn 0.610102 0.134497 -0.780824\nvn 0.612275 0.170633 -0.772013\nvn 0.612275 0.170633 -0.772013\nvn 0.612922 0.301349 -0.730422\nvn 0.612918 0.301439 -0.730387\nvn 0.245615 0.969216 -0.017121\nvn 0.328841 0.933787 -0.141089\nvn 0.323075 0.937089 -0.132239\nvn 0.323075 0.937089 -0.132239\nvn 0.245615 0.969216 -0.017121\nvn 0.245615 0.969216 -0.017121\nvn 0.399250 0.881146 -0.253339\nvn 0.323075 0.937089 -0.132239\nvn 0.328841 0.933787 -0.141089\nvn 0.328841 0.933787 -0.141089\nvn 0.399283 0.881122 -0.253371\nvn 0.399250 0.881146 -0.253339\nvn 0.610104 0.134467 -0.780827\nvn 0.556970 -0.179298 -0.810948\nvn 0.561944 -0.160285 -0.811497\nvn 0.561944 -0.160285 -0.811497\nvn 0.611299 0.152535 -0.776561\nvn 0.610104 0.134467 -0.780827\nvn 0.513981 -0.316305 -0.797355\nvn 0.561944 -0.160285 -0.811497\nvn 0.556970 -0.179298 -0.810948\nvn 0.556970 -0.179298 -0.810948\nvn 0.513968 -0.316297 -0.797366\nvn 0.513981 -0.316305 -0.797355\nvn 0.611299 0.152535 -0.776561\nvn 0.561944 -0.160285 -0.811497\nvn 0.566716 -0.141183 -0.811727\nvn 0.566716 -0.141183 -0.811727\nvn 0.612270 0.170540 -0.772037\nvn 0.611299 0.152535 -0.776561\nvn 0.561944 -0.160285 -0.811497\nvn 0.513981 -0.316305 -0.797355\nvn 0.513973 -0.316270 -0.797374\nvn 0.513973 -0.316270 -0.797374\nvn 0.566716 -0.141183 -0.811727\nvn 0.561944 -0.160285 -0.811497\nvn 0.612922 0.301349 -0.730422\nvn 0.610104 0.134467 -0.780827\nvn 0.611299 0.152535 -0.776561\nvn 0.611299 0.152535 -0.776561\nvn 0.612916 0.301377 -0.730415\nvn 0.612922 0.301349 -0.730422\nvn 0.612916 0.301377 -0.730415\nvn 0.611299 0.152535 -0.776561\nvn 0.612270 0.170540 -0.772037\nvn 0.612270 0.170540 -0.772037\nvn 0.612916 0.301377 -0.730415\nvn 0.612916 0.301377 -0.730415\nvn 0.245615 0.969216 -0.017121\nvn 0.328815 0.933800 -0.141060\nvn 0.326038 0.935417 -0.136727\nvn 0.326038 0.935417 -0.136727\nvn 0.144112 0.989407 -0.017488\nvn 0.245615 0.969216 -0.017121\nvn 0.152077 0.988214 -0.017457\nvn 0.144112 0.989407 -0.017488\nvn 0.326038 0.935417 -0.136727\nvn 0.326038 0.935417 -0.136727\nvn 0.323684 0.936749 -0.133154\nvn 0.152077 0.988214 -0.017457\nvn 0.399283 0.881122 -0.253371\nvn 0.326038 0.935417 -0.136727\nvn 0.328815 0.933800 -0.141060\nvn 0.328815 0.933800 -0.141060\nvn 0.399250 0.881146 -0.253339\nvn 0.399283 0.881122 -0.253371\nvn -0.144113 0.989407 -0.017488\nvn 0.144112 0.989407 -0.017488\nvn 0.152077 0.988214 -0.017457\nvn 0.152077 0.988214 -0.017457\nvn -0.152078 0.988214 -0.017457\nvn -0.144113 0.989407 -0.017488\nvn 0.399306 0.881104 -0.253397\nvn 0.323684 0.936749 -0.133154\nvn 0.326038 0.935417 -0.136727\nvn 0.326038 0.935417 -0.136727\nvn 0.399283 0.881122 -0.253371\nvn 0.399306 0.881104 -0.253397\nvn -0.152476 -0.981845 -0.112831\nvn -0.054415 -0.968951 -0.241192\nvn -0.058168 -0.969914 -0.236398\nvn -0.058168 -0.969914 -0.236398\nvn -0.152476 -0.981845 -0.112831\nvn -0.152476 -0.981845 -0.112831\nvn 0.041385 -0.932490 -0.358817\nvn -0.058168 -0.969914 -0.236398\nvn -0.054415 -0.968951 -0.241192\nvn -0.054415 -0.968951 -0.241192\nvn 0.041385 -0.932490 -0.358817\nvn 0.041385 -0.932490 -0.358817\nvn 0.612152 0.168588 -0.772560\nvn 0.609988 0.132820 -0.781200\nvn 0.557590 -0.177013 -0.811024\nvn 0.557590 -0.177013 -0.811024\nvn 0.567103 -0.139532 -0.811742\nvn 0.612152 0.168588 -0.772560\nvn 0.613038 0.297776 -0.731788\nvn 0.609988 0.132820 -0.781200\nvn 0.612152 0.168588 -0.772560\nvn 0.612152 0.168588 -0.772560\nvn 0.613038 0.297776 -0.731788\nvn 0.613038 0.297776 -0.731788\nvn 0.515409 -0.312364 -0.797986\nvn 0.567103 -0.139532 -0.811742\nvn 0.557590 -0.177013 -0.811024\nvn 0.557590 -0.177013 -0.811024\nvn 0.515409 -0.312364 -0.797986\nvn 0.515409 -0.312364 -0.797986\nvn 0.234139 0.972203 -0.000702\nvn 0.320569 0.938483 -0.128393\nvn 0.314896 0.941545 -0.119726\nvn 0.314896 0.941545 -0.119726\nvn 0.234139 0.972203 -0.000702\nvn 0.234139 0.972203 -0.000702\nvn 0.394000 0.885937 -0.244702\nvn 0.314896 0.941545 -0.119726\nvn 0.320569 0.938483 -0.128393\nvn 0.320569 0.938483 -0.128393\nvn 0.394000 0.885937 -0.244702\nvn 0.394000 0.885937 -0.244702\nvn -0.164741 -0.981641 -0.096134\nvn -0.064761 -0.971475 -0.228128\nvn -0.068240 -0.972266 -0.223702\nvn -0.068240 -0.972266 -0.223702\nvn -0.164741 -0.981644 -0.096104\nvn -0.164741 -0.981641 -0.096134\nvn 0.033694 -0.936271 -0.349659\nvn -0.068240 -0.972266 -0.223702\nvn -0.064761 -0.971475 -0.228128\nvn -0.064761 -0.971475 -0.228128\nvn 0.033693 -0.936285 -0.349623\nvn 0.033694 -0.936271 -0.349659\nvn -0.471556 0.083318 -0.877891\nvn -0.499108 -0.088200 -0.862040\nvn -0.455766 -0.037386 -0.889314\nvn -0.455766 -0.037386 -0.889314\nvn -0.449359 0.045595 -0.892187\nvn -0.471556 0.083318 -0.877891\nvn -0.773263 -0.273726 -0.571959\nvn -0.715530 -0.403041 -0.570592\nvn -0.700226 -0.367875 -0.611843\nvn -0.700226 -0.367875 -0.611843\nvn -0.773966 -0.270186 -0.572692\nvn -0.773263 -0.273726 -0.571959\nvn 0.973807 -0.087834 0.209728\nvn 0.974132 0.084385 0.209634\nvn 0.984274 0.039431 0.172189\nvn 0.984274 0.039431 0.172189\nvn 0.983951 -0.042939 0.173193\nvn 0.973807 -0.087834 0.209728\nvn 0.799173 0.273024 0.535519\nvn 0.792651 0.399439 0.460600\nvn 0.818331 0.368332 0.441210\nvn 0.818331 0.368332 0.441210\nvn 0.799689 0.269880 0.536341\nvn 0.799173 0.273024 0.535519\nvn -0.561831 0.263229 -0.784256\nvn -0.637826 0.458859 -0.618568\nvn -0.623439 0.422869 -0.657651\nvn -0.623439 0.422869 -0.657651\nvn -0.557128 0.254469 -0.790477\nvn -0.561831 0.263229 -0.784256\nvn -0.449359 0.045595 -0.892187\nvn -0.561831 0.263229 -0.784256\nvn -0.557128 0.254469 -0.790477\nvn -0.557128 0.254469 -0.790477\nvn -0.471556 0.083318 -0.877891\nvn -0.449359 0.045595 -0.892187\nvn -0.738834 0.304091 -0.601376\nvn -0.623439 0.422869 -0.657651\nvn -0.637826 0.458859 -0.618568\nvn -0.637826 0.458859 -0.618568\nvn -0.740391 0.299971 -0.601530\nvn -0.738834 0.304091 -0.601376\nvn -0.610822 -0.233598 -0.756524\nvn -0.455766 -0.037386 -0.889314\nvn -0.499108 -0.088200 -0.862040\nvn -0.499108 -0.088200 -0.862040\nvn -0.617042 -0.241531 -0.748947\nvn -0.610822 -0.233598 -0.756524\nvn 0.899734 -0.265424 0.346453\nvn 0.735844 -0.463126 0.494012\nvn 0.779041 -0.423915 0.461943\nvn 0.779041 -0.423915 0.461943\nvn 0.903661 -0.259287 0.340834\nvn 0.899734 -0.265424 0.346453\nvn 0.983951 -0.042939 0.173193\nvn 0.899734 -0.265424 0.346453\nvn 0.903661 -0.259287 0.340834\nvn 0.903661 -0.259287 0.340834\nvn 0.973807 -0.087834 0.209728\nvn 0.983951 -0.042939 0.173193\nvn 0.762090 -0.304030 0.571651\nvn 0.779041 -0.423915 0.461943\nvn 0.735844 -0.463126 0.494012\nvn 0.735844 -0.463126 0.494012\nvn 0.762987 -0.300189 0.572484\nvn 0.762090 -0.304030 0.571651\nvn 0.915784 0.231090 0.328537\nvn 0.984274 0.039431 0.172189\nvn 0.974132 0.084385 0.209634\nvn 0.974132 0.084385 0.209634\nvn 0.911293 0.238810 0.335433\nvn 0.915784 0.231090 0.328537\nvn -0.056276 -0.969427 -0.238839\nvn 0.041353 -0.932506 -0.358780\nvn 0.041354 -0.932491 -0.358817\nvn 0.041354 -0.932491 -0.358817\nvn -0.058170 -0.969912 -0.236405\nvn -0.056276 -0.969427 -0.238839\nvn 0.041353 -0.932506 -0.358780\nvn -0.056276 -0.969427 -0.238839\nvn -0.053682 -0.968756 -0.242136\nvn -0.053682 -0.968756 -0.242136\nvn 0.041384 -0.932480 -0.358843\nvn 0.041353 -0.932506 -0.358780\nvn -0.089480 -0.989476 -0.113712\nvn -0.056276 -0.969427 -0.238839\nvn -0.058170 -0.969912 -0.236405\nvn -0.058170 -0.969912 -0.236405\nvn -0.152476 -0.981845 -0.112831\nvn -0.089480 -0.989476 -0.113712\nvn -0.094059 -0.989058 -0.113653\nvn -0.053682 -0.968756 -0.242136\nvn -0.056276 -0.969427 -0.238839\nvn -0.056276 -0.969427 -0.238839\nvn -0.089480 -0.989476 -0.113712\nvn -0.094059 -0.989058 -0.113653\nvn -0.094059 -0.989058 -0.113653\nvn -0.089480 -0.989476 -0.113712\nvn 0.089481 -0.989476 -0.113712\nvn 0.089481 -0.989476 -0.113712\nvn 0.094060 -0.989058 -0.113652\nvn -0.094059 -0.989058 -0.113653\nvn -0.715530 -0.403041 -0.570592\nvn -0.610822 -0.233598 -0.756524\nvn -0.617042 -0.241531 -0.748947\nvn -0.617042 -0.241531 -0.748947\nvn -0.700226 -0.367875 -0.611843\nvn -0.715530 -0.403041 -0.570592\nvn 0.792651 0.399439 0.460600\nvn 0.915784 0.231090 0.328537\nvn 0.911293 0.238810 0.335433\nvn 0.911293 0.238810 0.335433\nvn 0.818331 0.368332 0.441210\nvn 0.792651 0.399439 0.460600\nvn 0.803854 0.000061 0.594826\nvn 0.803814 -0.000030 0.594880\nvn 0.803840 0.000000 0.594846\nvn 0.803840 0.000000 0.594846\nvn 0.803854 0.000000 0.594826\nvn 0.803854 0.000061 0.594826\nvn 0.803865 0.000000 0.594811\nvn 0.803854 0.000061 0.594826\nvn 0.803854 0.000000 0.594826\nvn 0.803854 0.000000 0.594826\nvn 0.803854 0.000000 0.594826\nvn 0.803865 0.000000 0.594811\nvn 0.803865 -0.000030 0.594811\nvn 0.803865 0.000000 0.594811\nvn 0.803854 0.000000 0.594826\nvn 0.803854 0.000000 0.594826\nvn 0.803854 0.000000 0.594826\nvn 0.803865 -0.000030 0.594811\nvn 0.803854 0.000000 0.594826\nvn 0.803865 -0.000030 0.594811\nvn 0.803854 0.000000 0.594826\nvn 0.803854 0.000000 0.594826\nvn 0.803854 0.000000 0.594826\nvn 0.803854 0.000000 0.594826\nvn 0.803840 0.000000 0.594846\nvn 0.803840 0.000000 0.594846\nvn 0.803814 -0.000030 0.594880\nvn 0.803814 -0.000030 0.594880\nvn 0.803814 -0.000030 0.594880\nvn 0.803840 0.000000 0.594846\nvn 0.803854 0.000000 0.594826\nvn 0.803840 0.000000 0.594846\nvn 0.803814 -0.000030 0.594880\nvn 0.803814 -0.000030 0.594880\nvn 0.803880 0.000000 0.594792\nvn 0.803854 0.000000 0.594826\nvn 0.803865 0.000000 0.594811\nvn 0.803854 0.000000 0.594826\nvn 0.803880 0.000000 0.594792\nvn 0.803880 0.000000 0.594792\nvn 0.803865 0.000000 0.594811\nvn 0.803865 0.000000 0.594811\nvn 0.563785 -0.152963 -0.811633\nvn 0.567252 -0.138952 -0.811737\nvn 0.612152 0.167886 -0.772713\nvn 0.612152 0.167886 -0.772713\nvn 0.611184 0.150767 -0.776997\nvn 0.563785 -0.152963 -0.811633\nvn 0.611184 0.150767 -0.776997\nvn 0.612152 0.167886 -0.772713\nvn 0.613128 0.296615 -0.732184\nvn 0.613128 0.296615 -0.732184\nvn 0.613095 0.296767 -0.732150\nvn 0.611184 0.150767 -0.776997\nvn 0.567252 -0.138952 -0.811737\nvn 0.563785 -0.152963 -0.811633\nvn 0.515836 -0.311113 -0.798199\nvn 0.515836 -0.311113 -0.798199\nvn 0.515868 -0.311053 -0.798202\nvn 0.567252 -0.138952 -0.811737\nvn 0.392203 0.887562 -0.241682\nvn 0.392205 0.887536 -0.241775\nvn 0.312730 0.942679 -0.116431\nvn 0.312730 0.942679 -0.116431\nvn 0.316937 0.940466 -0.122777\nvn 0.392203 0.887562 -0.241682\nvn 0.316937 0.940466 -0.122777\nvn 0.312730 0.942679 -0.116431\nvn 0.231611 0.972804 0.003021\nvn 0.231611 0.972804 0.003021\nvn 0.231611 0.972804 0.003021\nvn 0.316937 0.940466 -0.122777\nvn -0.068087 -0.972269 -0.223734\nvn -0.067446 -0.972117 -0.224588\nvn 0.031099 -0.937508 -0.346572\nvn 0.031099 -0.937508 -0.346572\nvn 0.030916 -0.937594 -0.346356\nvn -0.068087 -0.972269 -0.223734\nvn -0.067446 -0.972117 -0.224588\nvn -0.068087 -0.972269 -0.223734\nvn -0.167549 -0.981523 -0.092412\nvn -0.167549 -0.981523 -0.092412\nvn -0.167549 -0.981523 -0.092412\nvn -0.067446 -0.972117 -0.224588\nvn 0.766059 -0.207468 0.608367\nvn 0.771105 -0.265702 0.578619\nvn 0.749122 -0.213969 0.626924\nvn 0.766059 -0.207468 0.608367\nvn 0.749122 -0.213969 0.626924\nvn 0.767836 -0.202343 0.607853\nvn 0.749122 -0.213969 0.626924\nvn 0.756969 -0.203349 0.621005\nvn 0.767836 -0.202343 0.607853\nvn 0.766059 -0.207468 0.608367\nvn 0.767836 -0.202343 0.607853\nvn 0.794398 -0.124093 0.594586\nvn 0.767836 -0.202343 0.607853\nvn 0.774913 -0.182749 0.605073\nvn 0.794398 -0.124093 0.594586\nvn 0.766059 -0.207468 0.608367\nvn 0.794398 -0.124093 0.594586\nvn 0.796710 -0.115424 0.593237\nvn -0.964578 -0.182289 -0.190682\nvn -0.964443 -0.182903 -0.190777\nvn -0.964837 -0.183574 -0.188121\nvn -0.964837 -0.183574 -0.188121\nvn -0.964570 -0.189221 -0.183850\nvn -0.964578 -0.182289 -0.190682\nvn -0.964578 -0.182289 -0.190682\nvn -0.964570 -0.189221 -0.183850\nvn -0.965140 -0.191814 -0.178080\nvn -0.965140 -0.191814 -0.178080\nvn -0.962597 -0.199777 -0.183022\nvn -0.964578 -0.182289 -0.190682\nvn -0.964570 -0.189221 -0.183850\nvn -0.964837 -0.183574 -0.188121\nvn -0.972403 -0.144997 -0.182780\nvn -0.972403 -0.144997 -0.182780\nvn -0.969682 -0.170663 -0.174905\nvn -0.964570 -0.189221 -0.183850\nvn -0.965140 -0.191814 -0.178080\nvn -0.964570 -0.189221 -0.183850\nvn -0.969682 -0.170663 -0.174905\nvn -0.969682 -0.170663 -0.174905\nvn -0.972403 -0.144997 -0.182780\nvn -0.980692 -0.188424 -0.052340\nvn -0.980692 -0.188424 -0.052340\nvn -0.980420 -0.185952 -0.064792\nvn -0.969682 -0.170663 -0.174905\nvn -0.969682 -0.170663 -0.174905\nvn -0.980420 -0.185952 -0.064792\nvn -0.975823 -0.168680 -0.138985\nvn -0.975823 -0.168680 -0.138985\nvn -0.967729 -0.178415 -0.177957\nvn -0.969682 -0.170663 -0.174905\nvn -0.969682 -0.170663 -0.174905\nvn -0.967729 -0.178415 -0.177957\nvn -0.965140 -0.191814 -0.178080\nvn -0.964443 -0.182903 -0.190777\nvn -0.964578 -0.182289 -0.190682\nvn -0.963862 -0.170207 -0.204937\nvn -0.837933 0.229107 -0.495356\nvn -0.837933 0.229107 -0.495356\nvn -0.837933 0.229107 -0.495356\nvn -0.964578 -0.182289 -0.190682\nvn -0.962597 -0.199777 -0.183022\nvn -0.958140 -0.214456 -0.189675\nvn -0.958140 -0.214456 -0.189675\nvn -0.963862 -0.170207 -0.204937\nvn -0.964578 -0.182289 -0.190682\nvn -0.959435 -0.211102 -0.186870\nvn -0.962597 -0.199777 -0.183022\nvn -0.965140 -0.191814 -0.178080\nvn -0.958140 -0.214456 -0.189675\nvn -0.962597 -0.199777 -0.183022\nvn -0.959435 -0.211102 -0.186870\nvn -0.965140 -0.191814 -0.178080\nvn -0.968227 -0.183635 -0.169749\nvn -0.959435 -0.211102 -0.186870\nvn -0.969681 -0.173074 -0.172524\nvn -0.967729 -0.178415 -0.177957\nvn -0.975823 -0.168680 -0.138985\nvn -0.965140 -0.191814 -0.178080\nvn -0.967729 -0.178415 -0.177957\nvn -0.969681 -0.173074 -0.172524\nvn -0.969681 -0.173074 -0.172524\nvn -0.968227 -0.183635 -0.169749\nvn -0.965140 -0.191814 -0.178080\nvn -0.975823 -0.168680 -0.138985\nvn -0.970749 -0.167855 -0.171670\nvn -0.969681 -0.173074 -0.172524\nvn -0.959435 -0.211102 -0.186870\nvn -0.932156 -0.286365 -0.221541\nvn -0.958140 -0.214456 -0.189675\nvn -0.068302 -0.996788 0.041811\nvn -0.075228 -0.989503 0.123387\nvn -0.062106 -0.988367 -0.138832\nvn -0.062106 -0.988367 -0.138832\nvn -0.059055 -0.988221 -0.141183\nvn -0.068302 -0.996788 0.041811\nvn -0.075228 -0.989503 0.123387\nvn -0.068302 -0.996788 0.041811\nvn -0.115239 -0.913340 0.390551\nvn -0.115239 -0.913340 0.390551\nvn -0.128761 -0.895010 0.427057\nvn -0.075228 -0.989503 0.123387\nvn -0.655704 -0.754586 -0.025544\nvn -0.656019 -0.747090 -0.107215\nvn -0.672704 -0.724893 0.148323\nvn -0.672704 -0.724893 0.148323\nvn -0.682418 -0.709795 0.174633\nvn -0.655704 -0.754586 -0.025544\nvn -0.682418 -0.709795 0.174633\nvn -0.672704 -0.724893 0.148323\nvn -0.707979 -0.640502 0.297529\nvn -0.707979 -0.640502 0.297529\nvn -0.711587 -0.621616 0.327472\nvn -0.682418 -0.709795 0.174633\nvn -0.030305 -0.638247 -0.769235\nvn -0.031343 -0.639158 -0.768436\nvn -0.018860 -0.434221 -0.900609\nvn -0.570016 -0.392667 -0.721730\nvn -0.585904 -0.457816 -0.668671\nvn -0.644739 -0.648096 -0.405319\nvn -0.644739 -0.648096 -0.405319\nvn -0.649154 -0.645767 -0.401975\nvn -0.570016 -0.392667 -0.721730\nvn -0.656019 -0.747090 -0.107215\nvn -0.655704 -0.754586 -0.025544\nvn -0.649154 -0.645767 -0.401975\nvn -0.649154 -0.645767 -0.401975\nvn -0.644739 -0.648096 -0.405319\nvn -0.656019 -0.747090 -0.107215\nvn -0.585904 -0.457816 -0.668671\nvn -0.570016 -0.392667 -0.721730\nvn -0.550527 -0.170020 -0.817321\nvn -0.550527 -0.170020 -0.817321\nvn -0.550665 -0.180005 -0.815087\nvn -0.585904 -0.457816 -0.668671\nvn -0.020722 -0.480613 -0.876688\nvn -0.018860 -0.434221 -0.900609\nvn -0.007080 -0.074284 -0.997212\nvn -0.018860 -0.434221 -0.900609\nvn -0.020722 -0.480613 -0.876688\nvn -0.030305 -0.638247 -0.769235\nvn -0.007080 -0.074284 -0.997212\nvn -0.006623 -0.120061 -0.992745\nvn -0.020722 -0.480613 -0.876688\nvn -0.550665 -0.180005 -0.815087\nvn -0.550527 -0.170020 -0.817321\nvn -0.572233 0.056307 -0.818156\nvn -0.572233 0.056307 -0.818156\nvn -0.572332 0.024293 -0.819662\nvn -0.550665 -0.180005 -0.815087\nvn -0.006623 -0.120061 -0.992745\nvn -0.007080 -0.074284 -0.997212\nvn -0.008240 0.216445 -0.976260\nvn -0.572332 0.024293 -0.819662\nvn -0.572233 0.056307 -0.818156\nvn -0.539310 0.161540 -0.826468\nvn -0.539310 0.161540 -0.826468\nvn -0.538544 0.161935 -0.826890\nvn -0.572332 0.024293 -0.819662\nvn -0.008240 0.216445 -0.976260\nvn 0.011262 0.331593 -0.943355\nvn 0.010651 0.331495 -0.943397\nvn 0.010651 0.331495 -0.943397\nvn -0.008301 0.177104 -0.984157\nvn -0.008240 0.216445 -0.976260\nvn -0.008240 0.216445 -0.976260\nvn -0.008301 0.177104 -0.984157\nvn -0.006623 -0.120061 -0.992745\nvn -0.711587 -0.621616 0.327472\nvn -0.707979 -0.640502 0.297529\nvn -0.707524 -0.545621 0.449119\nvn -0.183846 -0.607939 0.772406\nvn -0.182537 -0.578742 0.794820\nvn -0.182170 -0.762862 0.620367\nvn -0.182170 -0.762862 0.620367\nvn -0.173532 -0.787210 0.591766\nvn -0.183846 -0.607939 0.772406\nvn -0.182537 -0.578742 0.794820\nvn -0.183846 -0.607939 0.772406\nvn -0.177377 -0.454795 0.872754\nvn -0.177377 -0.454795 0.872754\nvn -0.177347 -0.445305 0.877640\nvn -0.182537 -0.578742 0.794820\nvn -0.177347 -0.445305 0.877640\nvn -0.177377 -0.454795 0.872754\nvn -0.176432 -0.403680 0.897727\nvn -0.176432 -0.403680 0.897727\nvn -0.179424 -0.401119 0.898282\nvn -0.177347 -0.445305 0.877640\nvn -0.083043 -0.374839 0.923363\nvn -0.179424 -0.401119 0.898282\nvn -0.176432 -0.403680 0.897727\nvn -0.176432 -0.403680 0.897727\nvn -0.080571 -0.374410 0.923756\nvn -0.083043 -0.374839 0.923363\nvn -0.725128 -0.390001 0.567529\nvn -0.720622 -0.398339 0.567477\nvn -0.702567 -0.373044 0.606002\nvn -0.702567 -0.373044 0.606002\nvn -0.701205 -0.373400 0.607359\nvn -0.725128 -0.390001 0.567529\nvn -0.703138 -0.523715 0.480957\nvn -0.707524 -0.545621 0.449119\nvn -0.698004 -0.459650 0.549101\nvn -0.698004 -0.459650 0.549101\nvn -0.702689 -0.451328 0.550029\nvn -0.703138 -0.523715 0.480957\nvn -0.720622 -0.398339 0.567477\nvn -0.725128 -0.390001 0.567529\nvn -0.702689 -0.451328 0.550029\nvn -0.702689 -0.451328 0.550029\nvn -0.698004 -0.459650 0.549101\nvn -0.720622 -0.398339 0.567477\nvn -0.707524 -0.545621 0.449119\nvn -0.703138 -0.523715 0.480957\nvn -0.711587 -0.621616 0.327472\nvn -0.173532 -0.787210 0.591766\nvn -0.182170 -0.762862 0.620367\nvn -0.128761 -0.895010 0.427057\nvn -0.128761 -0.895010 0.427057\nvn -0.115239 -0.913340 0.390551\nvn -0.173532 -0.787210 0.591766\nvn -0.770470 0.635878 -0.045108\nvn -0.812762 0.582554 -0.007081\nvn -0.805223 0.592900 -0.009247\nvn -0.805223 0.592900 -0.009247\nvn -0.778477 0.627011 -0.028840\nvn -0.770470 0.635878 -0.045108\nvn -0.770470 0.635878 -0.045108\nvn -0.778477 0.627011 -0.028840\nvn -0.737829 0.670595 -0.076878\nvn -0.737829 0.670595 -0.076878\nvn -0.737143 0.671648 -0.074224\nvn -0.770470 0.635878 -0.045108\nvn -0.055300 0.998119 0.026460\nvn -0.049716 0.998457 0.024751\nvn -0.051517 0.998342 0.025697\nvn -0.051517 0.998342 0.025697\nvn -0.055240 0.998099 0.027315\nvn -0.055300 0.998119 0.026460\nvn -0.070256 0.997251 0.023561\nvn -0.072880 0.997087 0.022492\nvn -0.055300 0.998119 0.026460\nvn -0.055300 0.998119 0.026460\nvn -0.055240 0.998099 0.027315\nvn -0.070256 0.997251 0.023561\nvn -0.733099 0.672792 -0.099584\nvn -0.737143 0.671648 -0.074224\nvn -0.737829 0.670595 -0.076878\nvn -0.737829 0.670595 -0.076878\nvn -0.732831 0.673074 -0.099646\nvn -0.733099 0.672792 -0.099584\nvn -0.082402 0.996414 0.019227\nvn -0.085667 0.996168 0.017640\nvn -0.072880 0.997087 0.022492\nvn -0.072880 0.997087 0.022492\nvn -0.070256 0.997251 0.023561\nvn -0.082402 0.996414 0.019227\nvn -0.612275 0.170632 -0.772013\nvn -0.566683 -0.141335 -0.811723\nvn -0.556970 -0.179299 -0.810948\nvn -0.556970 -0.179299 -0.810948\nvn -0.610102 0.134496 -0.780824\nvn -0.612275 0.170632 -0.772013\nvn -0.556970 -0.179299 -0.810948\nvn -0.566683 -0.141335 -0.811723\nvn -0.514008 -0.316273 -0.797350\nvn -0.514008 -0.316273 -0.797350\nvn -0.513976 -0.316333 -0.797347\nvn -0.556970 -0.179299 -0.810948\nvn -0.612275 0.170632 -0.772013\nvn -0.610102 0.134496 -0.780824\nvn -0.612913 0.301466 -0.730381\nvn -0.612913 0.301466 -0.730381\nvn -0.612922 0.301349 -0.730422\nvn -0.612275 0.170632 -0.772013\nvn -0.245616 0.969216 -0.017121\nvn -0.245616 0.969216 -0.017121\nvn -0.323075 0.937089 -0.132239\nvn -0.323075 0.937089 -0.132239\nvn -0.328841 0.933787 -0.141089\nvn -0.245616 0.969216 -0.017121\nvn -0.328841 0.933787 -0.141089\nvn -0.323075 0.937089 -0.132239\nvn -0.399251 0.881146 -0.253339\nvn -0.399251 0.881146 -0.253339\nvn -0.399284 0.881122 -0.253371\nvn -0.328841 0.933787 -0.141089\nvn -0.610104 0.134466 -0.780827\nvn -0.611299 0.152535 -0.776561\nvn -0.561944 -0.160285 -0.811497\nvn -0.561944 -0.160285 -0.811497\nvn -0.556970 -0.179299 -0.810948\nvn -0.610104 0.134466 -0.780827\nvn -0.556970 -0.179299 -0.810948\nvn -0.561944 -0.160285 -0.811497\nvn -0.513980 -0.316305 -0.797355\nvn -0.513980 -0.316305 -0.797355\nvn -0.513980 -0.316305 -0.797355\nvn -0.556970 -0.179299 -0.810948\nvn -0.566716 -0.141183 -0.811727\nvn -0.561944 -0.160285 -0.811497\nvn -0.611299 0.152535 -0.776561\nvn -0.611299 0.152535 -0.776561\nvn -0.612271 0.170539 -0.772037\nvn -0.566716 -0.141183 -0.811727\nvn -0.561944 -0.160285 -0.811497\nvn -0.566716 -0.141183 -0.811727\nvn -0.513973 -0.316270 -0.797374\nvn -0.513973 -0.316270 -0.797374\nvn -0.513980 -0.316305 -0.797355\nvn -0.561944 -0.160285 -0.811497\nvn -0.611299 0.152535 -0.776561\nvn -0.610104 0.134466 -0.780827\nvn -0.612916 0.301376 -0.730415\nvn -0.612916 0.301376 -0.730415\nvn -0.612916 0.301376 -0.730415\nvn -0.611299 0.152535 -0.776561\nvn -0.612271 0.170539 -0.772037\nvn -0.611299 0.152535 -0.776561\nvn -0.612916 0.301376 -0.730415\nvn -0.612916 0.301376 -0.730415\nvn -0.612916 0.301376 -0.730415\nvn -0.612271 0.170539 -0.772037\nvn -0.245616 0.969216 -0.017121\nvn -0.144113 0.989407 -0.017488\nvn -0.326038 0.935417 -0.136727\nvn -0.326038 0.935417 -0.136727\nvn -0.328816 0.933800 -0.141060\nvn -0.245616 0.969216 -0.017121\nvn -0.326038 0.935417 -0.136727\nvn -0.144113 0.989407 -0.017488\nvn -0.152078 0.988214 -0.017457\nvn -0.152078 0.988214 -0.017457\nvn -0.323684 0.936749 -0.133154\nvn -0.326038 0.935417 -0.136727\nvn -0.328816 0.933800 -0.141060\nvn -0.326038 0.935417 -0.136727\nvn -0.399284 0.881122 -0.253371\nvn -0.399284 0.881122 -0.253371\nvn -0.399251 0.881146 -0.253339\nvn -0.328816 0.933800 -0.141060\nvn -0.399281 0.881115 -0.253400\nvn -0.399284 0.881122 -0.253371\nvn -0.326038 0.935417 -0.136727\nvn -0.326038 0.935417 -0.136727\nvn -0.323684 0.936749 -0.133154\nvn -0.399281 0.881115 -0.253400\nvn 0.152476 -0.981845 -0.112831\nvn 0.152476 -0.981845 -0.112831\nvn 0.058169 -0.969914 -0.236398\nvn 0.058169 -0.969914 -0.236398\nvn 0.054416 -0.968951 -0.241192\nvn 0.152476 -0.981845 -0.112831\nvn 0.054416 -0.968951 -0.241192\nvn 0.058169 -0.969914 -0.236398\nvn -0.041384 -0.932490 -0.358817\nvn -0.041384 -0.932490 -0.358817\nvn -0.041384 -0.932490 -0.358817\nvn 0.054416 -0.968951 -0.241192\nvn -0.612152 0.168587 -0.772560\nvn -0.567102 -0.139533 -0.811742\nvn -0.557576 -0.177009 -0.811034\nvn -0.557576 -0.177009 -0.811034\nvn -0.609968 0.132822 -0.781215\nvn -0.612152 0.168587 -0.772560\nvn -0.612152 0.168587 -0.772560\nvn -0.609968 0.132822 -0.781215\nvn -0.613038 0.297775 -0.731788\nvn -0.613038 0.297775 -0.731788\nvn -0.613038 0.297775 -0.731788\nvn -0.612152 0.168587 -0.772560\nvn -0.557576 -0.177009 -0.811034\nvn -0.567102 -0.139533 -0.811742\nvn -0.515409 -0.312365 -0.797986\nvn -0.515409 -0.312365 -0.797986\nvn -0.515409 -0.312365 -0.797986\nvn -0.557576 -0.177009 -0.811034\nvn -0.234140 0.972203 -0.000702\nvn -0.234140 0.972203 -0.000702\nvn -0.314895 0.941541 -0.119757\nvn -0.314895 0.941541 -0.119757\nvn -0.320570 0.938483 -0.128393\nvn -0.234140 0.972203 -0.000702\nvn -0.320570 0.938483 -0.128393\nvn -0.314895 0.941541 -0.119757\nvn -0.393998 0.885930 -0.244730\nvn -0.393998 0.885930 -0.244730\nvn -0.393972 0.885941 -0.244733\nvn -0.320570 0.938483 -0.128393\nvn 0.164742 -0.981644 -0.096104\nvn 0.164742 -0.981644 -0.096104\nvn 0.068240 -0.972266 -0.223702\nvn 0.068240 -0.972266 -0.223702\nvn 0.064761 -0.971475 -0.228128\nvn 0.164742 -0.981644 -0.096104\nvn 0.064761 -0.971475 -0.228128\nvn 0.068240 -0.972266 -0.223702\nvn -0.033663 -0.936272 -0.349660\nvn -0.033663 -0.936272 -0.349660\nvn -0.033693 -0.936295 -0.349596\nvn 0.064761 -0.971475 -0.228128\nvn 0.455766 -0.037385 -0.889314\nvn 0.499108 -0.088200 -0.862040\nvn 0.471556 0.083318 -0.877891\nvn 0.471556 0.083318 -0.877891\nvn 0.449359 0.045595 -0.892187\nvn 0.455766 -0.037385 -0.889314\nvn 0.776470 -0.273666 -0.567627\nvn 0.698158 -0.368642 -0.613742\nvn 0.714216 -0.396234 -0.576970\nvn 0.714216 -0.396234 -0.576970\nvn 0.777341 -0.270182 -0.568105\nvn 0.776470 -0.273666 -0.567627\nvn -0.984274 0.039430 0.172189\nvn -0.974132 0.084384 0.209634\nvn -0.973807 -0.087835 0.209728\nvn -0.973807 -0.087835 0.209728\nvn -0.983950 -0.042941 0.173198\nvn -0.984274 0.039430 0.172189\nvn -0.796062 0.273696 0.539792\nvn -0.819657 0.368764 0.438379\nvn -0.797298 0.392728 0.458346\nvn -0.797298 0.392728 0.458346\nvn -0.796492 0.269943 0.541046\nvn -0.796062 0.273696 0.539792\nvn 0.561831 0.263229 -0.784256\nvn 0.557128 0.254469 -0.790477\nvn 0.625916 0.422567 -0.655489\nvn 0.625916 0.422567 -0.655489\nvn 0.638002 0.467583 -0.611817\nvn 0.561831 0.263229 -0.784256\nvn 0.557128 0.254469 -0.790477\nvn 0.561831 0.263229 -0.784256\nvn 0.449359 0.045595 -0.892187\nvn 0.449359 0.045595 -0.892187\nvn 0.471556 0.083318 -0.877891\nvn 0.557128 0.254469 -0.790477\nvn 0.735268 0.303331 -0.606111\nvn 0.638002 0.467583 -0.611817\nvn 0.625916 0.422567 -0.655489\nvn 0.625916 0.422567 -0.655489\nvn 0.736402 0.299884 -0.606450\nvn 0.735268 0.303331 -0.606111\nvn 0.610842 -0.233594 -0.756510\nvn 0.617061 -0.241526 -0.748933\nvn 0.499108 -0.088200 -0.862040\nvn 0.499108 -0.088200 -0.862040\nvn 0.455766 -0.037385 -0.889314\nvn 0.610842 -0.233594 -0.756510\nvn -0.899733 -0.265425 0.346453\nvn -0.903661 -0.259288 0.340834\nvn -0.777788 -0.423213 0.464689\nvn -0.777788 -0.423213 0.464689\nvn -0.728096 -0.471857 0.497219\nvn -0.899733 -0.265425 0.346453\nvn -0.903661 -0.259288 0.340834\nvn -0.899733 -0.265425 0.346453\nvn -0.983950 -0.042941 0.173198\nvn -0.983950 -0.042941 0.173198\nvn -0.973807 -0.087835 0.209728\nvn -0.903661 -0.259288 0.340834\nvn -0.765673 -0.304096 0.566808\nvn -0.728096 -0.471857 0.497219\nvn -0.777788 -0.423213 0.464689\nvn -0.777788 -0.423213 0.464689\nvn -0.766784 -0.300213 0.567375\nvn -0.765673 -0.304096 0.566808\nvn -0.915784 0.231090 0.328537\nvn -0.911293 0.238810 0.335433\nvn -0.974132 0.084384 0.209634\nvn -0.974132 0.084384 0.209634\nvn -0.984274 0.039430 0.172189\nvn -0.915784 0.231090 0.328537\nvn 0.056277 -0.969427 -0.238839\nvn 0.058171 -0.969912 -0.236405\nvn -0.041354 -0.932491 -0.358817\nvn -0.041354 -0.932491 -0.358817\nvn -0.041352 -0.932495 -0.358807\nvn 0.056277 -0.969427 -0.238839\nvn 0.053683 -0.968756 -0.242136\nvn 0.056277 -0.969427 -0.238839\nvn -0.041352 -0.932495 -0.358807\nvn -0.041352 -0.932495 -0.358807\nvn -0.041384 -0.932480 -0.358843\nvn 0.053683 -0.968756 -0.242136\nvn 0.058171 -0.969912 -0.236405\nvn 0.056277 -0.969427 -0.238839\nvn 0.089481 -0.989476 -0.113712\nvn 0.089481 -0.989476 -0.113712\nvn 0.152476 -0.981845 -0.112831\nvn 0.058171 -0.969912 -0.236405\nvn 0.094060 -0.989058 -0.113652\nvn 0.089481 -0.989476 -0.113712\nvn 0.056277 -0.969427 -0.238839\nvn 0.056277 -0.969427 -0.238839\nvn 0.053683 -0.968756 -0.242136\nvn 0.094060 -0.989058 -0.113652\nvn 0.714216 -0.396234 -0.576970\nvn 0.698158 -0.368642 -0.613742\nvn 0.617061 -0.241526 -0.748933\nvn 0.617061 -0.241526 -0.748933\nvn 0.610842 -0.233594 -0.756510\nvn 0.714216 -0.396234 -0.576970\nvn -0.797298 0.392728 0.458346\nvn -0.819657 0.368764 0.438379\nvn -0.911293 0.238810 0.335433\nvn -0.911293 0.238810 0.335433\nvn -0.915784 0.231090 0.328537\nvn -0.797298 0.392728 0.458346\nvn -0.803854 0.000061 0.594826\nvn -0.803854 -0.000000 0.594826\nvn -0.803840 -0.000000 0.594846\nvn -0.803840 -0.000000 0.594846\nvn -0.803814 -0.000031 0.594880\nvn -0.803854 0.000061 0.594826\nvn -0.803854 -0.000000 0.594826\nvn -0.803854 0.000061 0.594826\nvn -0.803865 -0.000000 0.594811\nvn -0.803865 -0.000000 0.594811\nvn -0.803854 -0.000031 0.594826\nvn -0.803854 -0.000000 0.594826\nvn -0.803854 -0.000031 0.594826\nvn -0.803865 -0.000000 0.594811\nvn -0.803865 -0.000031 0.594811\nvn -0.803865 -0.000031 0.594811\nvn -0.803854 -0.000000 0.594826\nvn -0.803854 -0.000031 0.594826\nvn -0.803854 -0.000000 0.594826\nvn -0.803865 -0.000031 0.594811\nvn -0.803854 -0.000000 0.594826\nvn -0.803854 -0.000000 0.594826\nvn -0.803854 -0.000000 0.594826\nvn -0.803854 -0.000000 0.594826\nvn -0.803814 -0.000031 0.594880\nvn -0.803840 -0.000000 0.594846\nvn -0.803854 0.000030 0.594826\nvn -0.803854 0.000030 0.594826\nvn -0.803814 -0.000000 0.594880\nvn -0.803814 -0.000031 0.594880\nvn -0.803814 -0.000000 0.594880\nvn -0.803854 0.000030 0.594826\nvn -0.803865 0.000061 0.594811\nvn -0.803865 0.000061 0.594811\nvn -0.803880 0.000061 0.594792\nvn -0.803814 -0.000000 0.594880\nvn -0.803880 0.000061 0.594792\nvn -0.803865 0.000061 0.594811\nvn -0.803854 -0.000000 0.594826\nvn -0.803854 -0.000000 0.594826\nvn -0.803854 -0.000000 0.594826\nvn -0.803880 0.000061 0.594792\nvn -0.563785 -0.152964 -0.811633\nvn -0.611184 0.150766 -0.776997\nvn -0.612152 0.167885 -0.772713\nvn -0.612152 0.167885 -0.772713\nvn -0.567252 -0.138952 -0.811738\nvn -0.563785 -0.152964 -0.811633\nvn -0.613134 0.296587 -0.732190\nvn -0.612152 0.167885 -0.772713\nvn -0.611184 0.150766 -0.776997\nvn -0.611184 0.150766 -0.776997\nvn -0.613104 0.296801 -0.732129\nvn -0.613134 0.296587 -0.732190\nvn -0.515836 -0.311113 -0.798199\nvn -0.563785 -0.152964 -0.811633\nvn -0.567252 -0.138952 -0.811738\nvn -0.567252 -0.138952 -0.811738\nvn -0.515868 -0.311053 -0.798202\nvn -0.515836 -0.311113 -0.798199\nvn -0.392204 0.887562 -0.241682\nvn -0.316938 0.940466 -0.122777\nvn -0.312731 0.942679 -0.116431\nvn -0.312731 0.942679 -0.116431\nvn -0.392206 0.887536 -0.241775\nvn -0.392204 0.887562 -0.241682\nvn -0.231612 0.972804 0.003021\nvn -0.312731 0.942679 -0.116431\nvn -0.316938 0.940466 -0.122777\nvn -0.316938 0.940466 -0.122777\nvn -0.231612 0.972804 0.003021\nvn -0.231612 0.972804 0.003021\nvn 0.068088 -0.972269 -0.223734\nvn -0.030915 -0.937604 -0.346329\nvn -0.031099 -0.937518 -0.346545\nvn -0.031099 -0.937518 -0.346545\nvn 0.067447 -0.972124 -0.224559\nvn 0.068088 -0.972269 -0.223734\nvn 0.167550 -0.981523 -0.092412\nvn 0.068088 -0.972269 -0.223734\nvn 0.067447 -0.972124 -0.224559\nvn 0.067447 -0.972124 -0.224559\nvn 0.167550 -0.981523 -0.092412\nvn 0.167550 -0.981523 -0.092412\nvn -0.794398 -0.124093 0.594586\nvn -0.774907 -0.182687 0.605099\nvn -0.767836 -0.202343 0.607853\nvn -0.794398 -0.124093 0.594586\nvn -0.767836 -0.202343 0.607853\nvn -0.766059 -0.207469 0.608367\nvn -0.767836 -0.202343 0.607853\nvn -0.749122 -0.213970 0.626924\nvn -0.766059 -0.207469 0.608367\nvn -0.767836 -0.202343 0.607853\nvn -0.756983 -0.203354 0.620987\nvn -0.749122 -0.213970 0.626924\nvn -0.749122 -0.213970 0.626924\nvn -0.771105 -0.265703 0.578619\nvn -0.766059 -0.207469 0.608367\nvn -0.794398 -0.124093 0.594586\nvn -0.766059 -0.207469 0.608367\nvn -0.796710 -0.115425 0.593237\nvn 0.127538 0.890569 -0.436602\nvn 0.118110 0.831901 -0.542210\nvn -0.000000 0.836836 -0.547453\nvn -0.000000 0.836836 -0.547453\nvn -0.000000 0.896934 -0.442165\nvn 0.127538 0.890569 -0.436602\nvn 0.139838 0.926740 -0.348710\nvn 0.127538 0.890569 -0.436602\nvn -0.000000 0.896934 -0.442165\nvn -0.000000 0.896934 -0.442165\nvn -0.000000 0.935687 -0.352832\nvn 0.139838 0.926740 -0.348710\nvn 0.150641 0.951547 -0.268078\nvn 0.139838 0.926740 -0.348710\nvn -0.000000 0.935687 -0.352832\nvn -0.000000 0.935687 -0.352832\nvn -0.000000 0.962895 -0.269877\nvn 0.150641 0.951547 -0.268078\nvn 0.163645 0.975737 -0.145456\nvn 0.150641 0.951547 -0.268078\nvn -0.000000 0.962895 -0.269877\nvn -0.000000 0.962895 -0.269877\nvn -0.000000 0.989743 -0.142861\nvn 0.163645 0.975737 -0.145456\nvn 0.163645 0.975737 -0.145456\nvn -0.000000 0.989743 -0.142861\nvn -0.000000 0.992626 0.121221\nvn -0.000000 0.992626 0.121221\nvn 0.188210 0.975570 0.113317\nvn 0.163645 0.975737 -0.145456\nvn 0.163645 0.975737 -0.145456\nvn 0.188210 0.975570 0.113317\nvn 0.385394 0.918652 0.086888\nvn 0.434508 0.832606 0.343468\nvn 0.385394 0.918652 0.086888\nvn 0.188210 0.975570 0.113317\nvn 0.385394 0.918652 0.086888\nvn 0.434508 0.832606 0.343468\nvn 0.649420 0.733166 0.201794\nvn 0.667943 0.688391 0.282791\nvn 0.649420 0.733166 0.201794\nvn 0.434508 0.832606 0.343468\nvn 0.649420 0.733166 0.201794\nvn 0.667943 0.688391 0.282791\nvn 0.800735 0.587222 0.118293\nvn 0.800735 0.587222 0.118293\nvn 0.776017 0.627479 0.063785\nvn 0.649420 0.733166 0.201794\nvn 0.768696 0.638683 -0.034518\nvn 0.776017 0.627479 0.063785\nvn 0.800735 0.587222 0.118293\nvn 0.800735 0.587222 0.118293\nvn 0.701020 0.709383 -0.073123\nvn 0.768696 0.638683 -0.034518\nvn 0.434508 0.832606 0.343468\nvn 0.442444 0.781212 0.440399\nvn 0.667943 0.688391 0.282791\nvn 0.442444 0.781212 0.440399\nvn 0.434508 0.832606 0.343468\nvn 0.212507 0.896021 0.389856\nvn 0.188210 0.975570 0.113317\nvn 0.212507 0.896021 0.389856\nvn 0.434508 0.832606 0.343468\nvn 0.212507 0.896021 0.389856\nvn 0.188210 0.975570 0.113317\nvn -0.000000 0.992626 0.121221\nvn 0.212507 0.896021 0.389856\nvn 0.217083 0.843185 0.491848\nvn 0.442444 0.781212 0.440399\nvn 0.217083 0.843185 0.491848\nvn 0.212507 0.896021 0.389856\nvn -0.000000 0.915870 0.401475\nvn -0.000000 0.992626 0.121221\nvn -0.000000 0.915870 0.401475\nvn 0.212507 0.896021 0.389856\nvn -0.000000 0.915870 0.401475\nvn -0.000000 0.864096 0.503326\nvn 0.217083 0.843185 0.491848\nvn 0.768696 0.638683 -0.034518\nvn 0.683787 0.726148 -0.071721\nvn 0.776017 0.627479 0.063785\nvn 0.768696 0.638683 -0.034518\nvn 0.760818 0.643532 -0.083806\nvn 0.683787 0.726148 -0.071721\nvn 0.760818 0.643532 -0.083806\nvn 0.723311 0.675427 -0.143594\nvn 0.683787 0.726148 -0.071721\nvn 0.723311 0.675427 -0.143594\nvn 0.760818 0.643532 -0.083806\nvn 0.768685 0.616944 -0.168832\nvn 0.768685 0.616944 -0.168832\nvn 0.734845 0.647682 -0.201275\nvn 0.723311 0.675427 -0.143594\nvn 0.647407 0.730756 -0.216474\nvn 0.723311 0.675427 -0.143594\nvn 0.734845 0.647682 -0.201275\nvn 0.683787 0.726148 -0.071721\nvn 0.723311 0.675427 -0.143594\nvn 0.647407 0.730756 -0.216474\nvn 0.734845 0.647682 -0.201275\nvn 0.640542 0.722548 -0.260056\nvn 0.647407 0.730756 -0.216474\nvn 0.591462 0.780682 -0.201763\nvn 0.647407 0.730756 -0.216474\nvn 0.640542 0.722548 -0.260056\nvn 0.647407 0.730756 -0.216474\nvn 0.591462 0.780682 -0.201763\nvn 0.683787 0.726148 -0.071721\nvn 0.640542 0.722548 -0.260056\nvn 0.546301 0.790032 -0.278217\nvn 0.591462 0.780682 -0.201763\nvn 0.480398 0.858832 -0.177834\nvn 0.591462 0.780682 -0.201763\nvn 0.546301 0.790032 -0.278217\nvn 0.683787 0.726148 -0.071721\nvn 0.591462 0.780682 -0.201763\nvn 0.480398 0.858832 -0.177834\nvn 0.546301 0.790032 -0.278217\nvn 0.442531 0.854452 -0.272172\nvn 0.480398 0.858832 -0.177834\nvn 0.333296 0.930764 -0.150305\nvn 0.480398 0.858832 -0.177834\nvn 0.442531 0.854452 -0.272172\nvn 0.442531 0.854452 -0.272172\nvn 0.304337 0.914997 -0.264876\nvn 0.333296 0.930764 -0.150305\nvn 0.287341 0.894771 -0.341788\nvn 0.304337 0.914997 -0.264876\nvn 0.442531 0.854452 -0.272172\nvn 0.442531 0.854452 -0.272172\nvn 0.421865 0.841595 -0.337266\nvn 0.287341 0.894771 -0.341788\nvn 0.421865 0.841595 -0.337266\nvn 0.442531 0.854452 -0.272172\nvn 0.546301 0.790032 -0.278217\nvn 0.269972 0.865218 -0.422507\nvn 0.287341 0.894771 -0.341788\nvn 0.421865 0.841595 -0.337266\nvn 0.421865 0.841595 -0.337266\nvn 0.406736 0.822567 -0.397428\nvn 0.269972 0.865218 -0.422507\nvn 0.269972 0.865218 -0.422507\nvn 0.406736 0.822567 -0.397428\nvn 0.377557 0.791340 -0.480865\nvn 0.377557 0.791340 -0.480865\nvn 0.249921 0.812601 -0.526516\nvn 0.269972 0.865218 -0.422507\nvn 0.546301 0.790032 -0.278217\nvn 0.526185 0.783494 -0.330556\nvn 0.421865 0.841595 -0.337266\nvn 0.526185 0.783494 -0.330556\nvn 0.546301 0.790032 -0.278217\nvn 0.640542 0.722548 -0.260056\nvn 0.640542 0.722548 -0.260056\nvn 0.630835 0.715008 -0.301348\nvn 0.526185 0.783494 -0.330556\nvn 0.526185 0.783494 -0.330556\nvn 0.630835 0.715008 -0.301348\nvn 0.623021 0.706949 -0.334766\nvn 0.623021 0.706949 -0.334766\nvn 0.514036 0.771741 -0.374410\nvn 0.526185 0.783494 -0.330556\nvn 0.421865 0.841595 -0.337266\nvn 0.526185 0.783494 -0.330556\nvn 0.514036 0.771741 -0.374410\nvn 0.514036 0.771741 -0.374410\nvn 0.406736 0.822567 -0.397428\nvn 0.421865 0.841595 -0.337266\nvn 0.514036 0.771741 -0.374410\nvn 0.623021 0.706949 -0.334766\nvn 0.605725 0.702320 -0.373958\nvn 0.605725 0.702320 -0.373958\nvn 0.498076 0.752944 -0.430110\nvn 0.514036 0.771741 -0.374410\nvn 0.498076 0.752944 -0.430110\nvn 0.377557 0.791340 -0.480865\nvn 0.406736 0.822567 -0.397428\nvn 0.406736 0.822567 -0.397428\nvn 0.514036 0.771741 -0.374410\nvn 0.498076 0.752944 -0.430110\nvn 0.466298 0.733614 -0.494345\nvn 0.498076 0.752944 -0.430110\nvn 0.605725 0.702320 -0.373958\nvn 0.377557 0.791340 -0.480865\nvn 0.498076 0.752944 -0.430110\nvn 0.466298 0.733614 -0.494345\nvn 0.605725 0.702320 -0.373958\nvn 0.564271 0.709085 -0.422845\nvn 0.466298 0.733614 -0.494345\nvn 0.416617 0.721932 -0.552489\nvn 0.466298 0.733614 -0.494345\nvn 0.564271 0.709085 -0.422845\nvn 0.564271 0.709085 -0.422845\nvn 0.540737 0.691959 -0.478326\nvn 0.416617 0.721932 -0.552489\nvn 0.416617 0.721932 -0.552489\nvn 0.540737 0.691959 -0.478326\nvn 0.524470 0.643770 -0.557218\nvn 0.524470 0.643770 -0.557218\nvn 0.389238 0.658445 -0.644162\nvn 0.416617 0.721932 -0.552489\nvn 0.416617 0.721932 -0.552489\nvn 0.389238 0.658445 -0.644162\nvn 0.279866 0.651842 -0.704824\nvn 0.279866 0.651842 -0.704824\nvn 0.316731 0.708815 -0.630288\nvn 0.416617 0.721932 -0.552489\nvn 0.466298 0.733614 -0.494345\nvn 0.416617 0.721932 -0.552489\nvn 0.316731 0.708815 -0.630288\nvn 0.316731 0.708815 -0.630288\nvn 0.344561 0.751809 -0.562193\nvn 0.466298 0.733614 -0.494345\nvn 0.466298 0.733614 -0.494345\nvn 0.344561 0.751809 -0.562193\nvn 0.377557 0.791340 -0.480865\nvn 0.377557 0.791340 -0.480865\nvn 0.344561 0.751809 -0.562193\nvn 0.231794 0.752669 -0.616247\nvn 0.231794 0.752669 -0.616247\nvn 0.249921 0.812601 -0.526516\nvn 0.377557 0.791340 -0.480865\nvn 0.218791 0.691316 -0.688631\nvn 0.231794 0.752669 -0.616247\nvn 0.344561 0.751809 -0.562193\nvn 0.344561 0.751809 -0.562193\nvn 0.316731 0.708815 -0.630288\nvn 0.218791 0.691316 -0.688631\nvn 0.316731 0.708815 -0.630288\nvn 0.279866 0.651842 -0.704824\nvn 0.199226 0.634729 -0.746611\nvn 0.199226 0.634729 -0.746611\nvn 0.218791 0.691316 -0.688631\nvn 0.316731 0.708815 -0.630288\nvn 0.249921 0.812601 -0.526516\nvn 0.231794 0.752669 -0.616247\nvn 0.113804 0.762326 -0.637108\nvn 0.113804 0.762326 -0.637108\nvn 0.118110 0.831901 -0.542210\nvn 0.249921 0.812601 -0.526516\nvn 0.115819 0.695617 -0.709015\nvn 0.113804 0.762326 -0.637108\nvn 0.231794 0.752669 -0.616247\nvn 0.231794 0.752669 -0.616247\nvn 0.218791 0.691316 -0.688631\nvn 0.115819 0.695617 -0.709015\nvn 0.218791 0.691316 -0.688631\nvn 0.199226 0.634729 -0.746611\nvn 0.121863 0.633914 -0.763743\nvn 0.121863 0.633914 -0.763743\nvn 0.115819 0.695617 -0.709015\nvn 0.218791 0.691316 -0.688631\nvn -0.000000 0.698015 -0.716083\nvn 0.115819 0.695617 -0.709015\nvn 0.121863 0.633914 -0.763743\nvn 0.113804 0.762326 -0.637108\nvn 0.115819 0.695617 -0.709015\nvn -0.000000 0.698015 -0.716083\nvn 0.121863 0.633914 -0.763743\nvn -0.000000 0.635598 -0.772020\nvn -0.000000 0.698015 -0.716083\nvn -0.000000 0.635598 -0.772020\nvn 0.121863 0.633914 -0.763743\nvn 0.137762 0.559379 -0.817384\nvn 0.137762 0.559379 -0.817384\nvn 0.121863 0.633914 -0.763743\nvn 0.199226 0.634729 -0.746611\nvn 0.137762 0.559379 -0.817384\nvn -0.000000 0.550142 -0.835071\nvn -0.000000 0.635598 -0.772020\nvn -0.000000 0.508023 -0.861344\nvn -0.000000 0.550142 -0.835071\nvn 0.137762 0.559379 -0.817384\nvn 0.137762 0.559379 -0.817384\nvn 0.130317 0.524198 -0.841567\nvn -0.000000 0.508023 -0.861344\nvn 0.249921 0.812601 -0.526516\nvn 0.118110 0.831901 -0.542210\nvn 0.127538 0.890569 -0.436602\nvn 0.127538 0.890569 -0.436602\nvn 0.269972 0.865218 -0.422507\nvn 0.249921 0.812601 -0.526516\nvn 0.269972 0.865218 -0.422507\nvn 0.127538 0.890569 -0.436602\nvn 0.139838 0.926740 -0.348710\nvn 0.139838 0.926740 -0.348710\nvn 0.287341 0.894771 -0.341788\nvn 0.269972 0.865218 -0.422507\nvn 0.304337 0.914997 -0.264876\nvn 0.287341 0.894771 -0.341788\nvn 0.139838 0.926740 -0.348710\nvn 0.139838 0.926740 -0.348710\nvn 0.150641 0.951547 -0.268078\nvn 0.304337 0.914997 -0.264876\nvn 0.304337 0.914997 -0.264876\nvn 0.150641 0.951547 -0.268078\nvn 0.163645 0.975737 -0.145456\nvn 0.163645 0.975737 -0.145456\nvn 0.333296 0.930764 -0.150305\nvn 0.304337 0.914997 -0.264876\nvn 0.385394 0.918652 0.086888\nvn 0.333296 0.930764 -0.150305\nvn 0.163645 0.975737 -0.145456\nvn 0.480398 0.858832 -0.177834\nvn 0.333296 0.930764 -0.150305\nvn 0.385394 0.918652 0.086888\nvn 0.385394 0.918652 0.086888\nvn 0.564364 0.825519 0.003266\nvn 0.480398 0.858832 -0.177834\nvn 0.480398 0.858832 -0.177834\nvn 0.564364 0.825519 0.003266\nvn 0.683787 0.726148 -0.071721\nvn 0.776017 0.627479 0.063785\nvn 0.683787 0.726148 -0.071721\nvn 0.564364 0.825519 0.003266\nvn 0.564364 0.825519 0.003266\nvn 0.649420 0.733166 0.201794\nvn 0.776017 0.627479 0.063785\nvn 0.649420 0.733166 0.201794\nvn 0.564364 0.825519 0.003266\nvn 0.385394 0.918652 0.086888\nvn 0.234630 0.557673 -0.796210\nvn 0.228805 0.519840 -0.823052\nvn 0.130317 0.524198 -0.841567\nvn 0.228805 0.519840 -0.823052\nvn 0.234630 0.557673 -0.796210\nvn 0.356468 0.534764 -0.766132\nvn 0.356468 0.534764 -0.766132\nvn 0.401821 0.455657 -0.794303\nvn 0.228805 0.519840 -0.823052\nvn 0.401821 0.455657 -0.794303\nvn 0.356468 0.534764 -0.766132\nvn 0.511804 0.512262 -0.689669\nvn 0.511804 0.512262 -0.689669\nvn 0.572607 0.416225 -0.706313\nvn 0.401821 0.455657 -0.794303\nvn 0.671365 0.392876 -0.628424\nvn 0.572607 0.416225 -0.706313\nvn 0.511804 0.512262 -0.689669\nvn 0.511804 0.512262 -0.689669\nvn 0.587797 0.534389 -0.607390\nvn 0.671365 0.392876 -0.628424\nvn 0.356468 0.534764 -0.766132\nvn 0.234630 0.557673 -0.796210\nvn 0.199226 0.634729 -0.746611\nvn 0.199226 0.634729 -0.746611\nvn 0.279866 0.651842 -0.704824\nvn 0.356468 0.534764 -0.766132\nvn 0.356468 0.534764 -0.766132\nvn 0.279866 0.651842 -0.704824\nvn 0.389238 0.658445 -0.644162\nvn 0.389238 0.658445 -0.644162\nvn 0.511804 0.512262 -0.689669\nvn 0.356468 0.534764 -0.766132\nvn 0.524470 0.643770 -0.557218\nvn 0.587797 0.534389 -0.607390\nvn 0.511804 0.512262 -0.689669\nvn 0.511804 0.512262 -0.689669\nvn 0.389238 0.658445 -0.644162\nvn 0.524470 0.643770 -0.557218\nvn 0.587797 0.534389 -0.607390\nvn 0.524470 0.643770 -0.557218\nvn 0.540737 0.691959 -0.478326\nvn 0.540737 0.691959 -0.478326\nvn 0.608137 0.648637 -0.457644\nvn 0.587797 0.534389 -0.607390\nvn 0.608137 0.648637 -0.457644\nvn 0.540737 0.691959 -0.478326\nvn 0.564271 0.709085 -0.422845\nvn 0.564271 0.709085 -0.422845\nvn 0.638981 0.668707 -0.380178\nvn 0.608137 0.648637 -0.457644\nvn 0.638981 0.668707 -0.380178\nvn 0.564271 0.709085 -0.422845\nvn 0.605725 0.702320 -0.373958\nvn 0.605725 0.702320 -0.373958\nvn 0.677949 0.657563 -0.328629\nvn 0.638981 0.668707 -0.380178\nvn 0.677949 0.657563 -0.328629\nvn 0.605725 0.702320 -0.373958\nvn 0.623021 0.706949 -0.334766\nvn 0.623021 0.706949 -0.334766\nvn 0.683479 0.662391 -0.306749\nvn 0.677949 0.657563 -0.328629\nvn 0.697332 0.664677 -0.268202\nvn 0.683479 0.662391 -0.306749\nvn 0.623021 0.706949 -0.334766\nvn 0.623021 0.706949 -0.334766\nvn 0.630835 0.715008 -0.301348\nvn 0.697332 0.664677 -0.268202\nvn 0.697332 0.664677 -0.268202\nvn 0.630835 0.715008 -0.301348\nvn 0.640542 0.722548 -0.260056\nvn 0.640542 0.722548 -0.260056\nvn 0.734845 0.647682 -0.201275\nvn 0.697332 0.664677 -0.268202\nvn 0.697332 0.664677 -0.268202\nvn 0.734845 0.647682 -0.201275\nvn 0.768685 0.616944 -0.168832\nvn 0.283735 -0.067477 -0.956526\nvn 0.254651 -0.320267 -0.912459\nvn 0.180246 -0.331773 -0.925980\nvn 0.180246 -0.331773 -0.925980\nvn 0.205396 -0.073857 -0.975888\nvn 0.283735 -0.067477 -0.956526\nvn 0.285664 0.155375 -0.945651\nvn 0.283735 -0.067477 -0.956526\nvn 0.205396 -0.073857 -0.975888\nvn 0.205396 -0.073857 -0.975888\nvn 0.209237 0.150031 -0.966287\nvn 0.285664 0.155375 -0.945651\nvn 0.209237 0.150031 -0.966287\nvn 0.205396 -0.073857 -0.975888\nvn 0.000000 -0.085026 -0.996379\nvn 0.000000 -0.085026 -0.996379\nvn 0.205396 -0.073857 -0.975888\nvn 0.180246 -0.331773 -0.925980\nvn 0.000000 -0.085026 -0.996379\nvn -0.000000 0.140571 -0.990071\nvn 0.209237 0.150031 -0.966287\nvn 0.180246 -0.331773 -0.925980\nvn 0.000000 -0.345746 -0.938328\nvn 0.000000 -0.085026 -0.996379\nvn 0.000000 -0.345746 -0.938328\nvn 0.180246 -0.331773 -0.925980\nvn 0.151893 -0.468437 -0.870342\nvn 0.151893 -0.468437 -0.870342\nvn 0.180246 -0.331773 -0.925980\nvn 0.254651 -0.320267 -0.912459\nvn 0.151893 -0.468437 -0.870342\nvn 0.002320 -0.483113 -0.875555\nvn 0.000000 -0.345746 -0.938328\nvn 0.005341 -0.506920 -0.861977\nvn 0.002320 -0.483113 -0.875555\nvn 0.151893 -0.468437 -0.870342\nvn 0.151893 -0.468437 -0.870342\nvn 0.134742 -0.492397 -0.859878\nvn 0.005341 -0.506920 -0.861977\nvn 0.209237 0.150031 -0.966287\nvn -0.000000 0.140571 -0.990071\nvn -0.000000 0.291335 -0.956621\nvn -0.000000 0.291335 -0.956621\nvn 0.212567 0.286423 -0.934225\nvn 0.209237 0.150031 -0.966287\nvn 0.285664 0.155375 -0.945651\nvn 0.209237 0.150031 -0.966287\nvn 0.212567 0.286423 -0.934225\nvn 0.199868 0.356033 -0.912849\nvn 0.212567 0.286423 -0.934225\nvn -0.000000 0.291335 -0.956621\nvn -0.000000 0.291335 -0.956621\nvn -0.000000 0.376032 -0.926607\nvn 0.199868 0.356033 -0.912849\nvn 0.168435 0.388265 -0.906024\nvn 0.199868 0.356033 -0.912849\nvn -0.000000 0.376032 -0.926607\nvn -0.000000 0.376032 -0.926607\nvn -0.000000 0.410689 -0.911775\nvn 0.168435 0.388265 -0.906024\nvn 0.288006 0.289410 -0.912849\nvn 0.212567 0.286423 -0.934225\nvn 0.199868 0.356033 -0.912849\nvn 0.212567 0.286423 -0.934225\nvn 0.288006 0.289410 -0.912849\nvn 0.285664 0.155375 -0.945651\nvn 0.199868 0.356033 -0.912849\nvn 0.278825 0.345632 -0.895988\nvn 0.288006 0.289410 -0.912849\nvn 0.236403 0.374106 -0.896749\nvn 0.278825 0.345632 -0.895988\nvn 0.199868 0.356033 -0.912849\nvn 0.199868 0.356033 -0.912849\nvn 0.168435 0.388265 -0.906024\nvn 0.236403 0.374106 -0.896749\nvn 0.221601 -0.490140 -0.843004\nvn 0.134742 -0.492397 -0.859878\nvn 0.151893 -0.468437 -0.870342\nvn 0.151893 -0.468437 -0.870342\nvn 0.229504 -0.458244 -0.858685\nvn 0.221601 -0.490140 -0.843004\nvn 0.254651 -0.320267 -0.912459\nvn 0.229504 -0.458244 -0.858685\nvn 0.151893 -0.468437 -0.870342\nvn 0.752763 -0.247726 -0.609901\nvn 0.612064 -0.295030 -0.733714\nvn 0.582479 -0.081546 -0.808745\nvn 0.582479 -0.081546 -0.808745\nvn 0.733527 -0.088353 -0.673893\nvn 0.752763 -0.247726 -0.609901\nvn 0.671686 0.100376 -0.734005\nvn 0.733527 -0.088353 -0.673893\nvn 0.582479 -0.081546 -0.808745\nvn 0.582479 -0.081546 -0.808745\nvn 0.510953 0.134926 -0.848954\nvn 0.671686 0.100376 -0.734005\nvn 0.671686 0.100376 -0.734005\nvn 0.510953 0.134926 -0.848954\nvn 0.434531 0.265883 -0.860517\nvn 0.434531 0.265883 -0.860517\nvn 0.604523 0.222332 -0.764932\nvn 0.671686 0.100376 -0.734005\nvn 0.733527 -0.088353 -0.673893\nvn 0.671686 0.100376 -0.734005\nvn 0.821186 0.082464 -0.564671\nvn 0.821186 0.082464 -0.564671\nvn 0.859628 -0.062838 -0.507042\nvn 0.733527 -0.088353 -0.673893\nvn 0.859628 -0.062838 -0.507042\nvn 0.821186 0.082464 -0.564671\nvn 0.914571 0.071629 -0.398032\nvn 0.914571 0.071629 -0.398032\nvn 0.939178 -0.021394 -0.342765\nvn 0.859628 -0.062838 -0.507042\nvn 0.859628 -0.062838 -0.507042\nvn 0.939178 -0.021394 -0.342765\nvn 0.936656 -0.073642 -0.342422\nvn 0.936656 -0.073642 -0.342422\nvn 0.866678 -0.138556 -0.479240\nvn 0.859628 -0.062838 -0.507042\nvn 0.866678 -0.138556 -0.479240\nvn 0.752763 -0.247726 -0.609901\nvn 0.733527 -0.088353 -0.673893\nvn 0.866678 -0.138556 -0.479240\nvn 0.733527 -0.088353 -0.673893\nvn 0.859628 -0.062838 -0.507042\nvn 0.671686 0.100376 -0.734005\nvn 0.604523 0.222332 -0.764932\nvn 0.767193 0.187480 -0.613406\nvn 0.767193 0.187480 -0.613406\nvn 0.821186 0.082464 -0.564671\nvn 0.671686 0.100376 -0.734005\nvn 0.914571 0.071629 -0.398032\nvn 0.821186 0.082464 -0.564671\nvn 0.767193 0.187480 -0.613406\nvn 0.939178 -0.021394 -0.342765\nvn 0.961100 0.015443 -0.275768\nvn 0.936656 -0.073642 -0.342422\nvn 0.961100 0.015443 -0.275768\nvn 0.939178 -0.021394 -0.342765\nvn 0.914571 0.071629 -0.398032\nvn 0.914571 0.071629 -0.398032\nvn 0.950573 0.068149 -0.302931\nvn 0.961100 0.015443 -0.275768\nvn 0.914545 0.177440 -0.363486\nvn 0.950573 0.068149 -0.302931\nvn 0.914571 0.071629 -0.398032\nvn 0.914571 0.071629 -0.398032\nvn 0.875435 0.166573 -0.453725\nvn 0.914545 0.177440 -0.363486\nvn 0.767193 0.187480 -0.613406\nvn 0.875435 0.166573 -0.453725\nvn 0.914571 0.071629 -0.398032\nvn 0.562966 0.284688 -0.775901\nvn 0.604523 0.222332 -0.764932\nvn 0.434531 0.265883 -0.860517\nvn 0.434531 0.265883 -0.860517\nvn 0.384940 0.327045 -0.863055\nvn 0.562966 0.284688 -0.775901\nvn 0.546742 0.304821 -0.779844\nvn 0.562966 0.284688 -0.775901\nvn 0.384940 0.327045 -0.863055\nvn 0.384940 0.327045 -0.863055\nvn 0.376583 0.343561 -0.860321\nvn 0.546742 0.304821 -0.779844\nvn 0.722674 0.250475 -0.644208\nvn 0.767193 0.187480 -0.613406\nvn 0.604523 0.222332 -0.764932\nvn 0.604523 0.222332 -0.764932\nvn 0.562966 0.284688 -0.775901\nvn 0.722674 0.250475 -0.644208\nvn 0.562966 0.284688 -0.775901\nvn 0.546742 0.304821 -0.779844\nvn 0.708931 0.272476 -0.650518\nvn 0.708931 0.272476 -0.650518\nvn 0.722674 0.250475 -0.644208\nvn 0.562966 0.284688 -0.775901\nvn 0.722674 0.250475 -0.644208\nvn 0.708931 0.272476 -0.650518\nvn 0.822709 0.261001 -0.505003\nvn 0.822709 0.261001 -0.505003\nvn 0.845065 0.239878 -0.477833\nvn 0.722674 0.250475 -0.644208\nvn 0.845065 0.239878 -0.477833\nvn 0.875435 0.166573 -0.453725\nvn 0.767193 0.187480 -0.613406\nvn 0.767193 0.187480 -0.613406\nvn 0.722674 0.250475 -0.644208\nvn 0.845065 0.239878 -0.477833\nvn 0.886527 0.244766 -0.392632\nvn 0.914545 0.177440 -0.363486\nvn 0.875435 0.166573 -0.453725\nvn 0.875435 0.166573 -0.453725\nvn 0.845065 0.239878 -0.477833\nvn 0.886527 0.244766 -0.392632\nvn 0.886527 0.244766 -0.392632\nvn 0.845065 0.239878 -0.477833\nvn 0.822709 0.261001 -0.505003\nvn 0.376583 0.343561 -0.860321\nvn 0.384940 0.327045 -0.863055\nvn 0.301252 0.333266 -0.893410\nvn 0.301252 0.333266 -0.893410\nvn 0.384940 0.327045 -0.863055\nvn 0.434531 0.265883 -0.860517\nvn 0.434531 0.265883 -0.860517\nvn 0.348899 0.269487 -0.897578\nvn 0.301252 0.333266 -0.893410\nvn 0.301252 0.333266 -0.893410\nvn 0.254594 0.355767 -0.899229\nvn 0.376583 0.343561 -0.860321\nvn 0.435718 0.123876 -0.891518\nvn 0.348899 0.269487 -0.897578\nvn 0.434531 0.265883 -0.860517\nvn 0.434531 0.265883 -0.860517\nvn 0.510953 0.134926 -0.848954\nvn 0.435718 0.123876 -0.891518\nvn 0.516111 -0.105566 -0.849991\nvn 0.435718 0.123876 -0.891518\nvn 0.510953 0.134926 -0.848954\nvn 0.510953 0.134926 -0.848954\nvn 0.582479 -0.081546 -0.808745\nvn 0.516111 -0.105566 -0.849991\nvn 0.516111 -0.105566 -0.849991\nvn 0.582479 -0.081546 -0.808745\nvn 0.612064 -0.295030 -0.733714\nvn 0.612064 -0.295030 -0.733714\nvn 0.554968 -0.320486 -0.767659\nvn 0.516111 -0.105566 -0.849991\nvn 0.554968 -0.320486 -0.767659\nvn 0.612064 -0.295030 -0.733714\nvn 0.604546 -0.416245 -0.679164\nvn 0.604546 -0.416245 -0.679164\nvn 0.612064 -0.295030 -0.733714\nvn 0.680387 -0.333418 -0.652615\nvn 0.593059 -0.440277 -0.674119\nvn 0.604546 -0.416245 -0.679164\nvn 0.680387 -0.333418 -0.652615\nvn 0.612064 -0.295030 -0.733714\nvn 0.752763 -0.247726 -0.609901\nvn 0.680387 -0.333418 -0.652615\nvn 0.752763 -0.247726 -0.609901\nvn 0.751806 -0.319168 -0.576993\nvn 0.680387 -0.333418 -0.652615\nvn 0.751806 -0.319168 -0.576993\nvn 0.752763 -0.247726 -0.609901\nvn 0.797070 -0.294480 -0.527219\nvn -0.019471 0.910226 -0.413653\nvn -0.019471 0.910226 -0.413653\nvn -0.019471 0.910226 -0.413653\nvn 0.604546 -0.416245 -0.679164\nvn 0.554686 -0.429679 -0.712531\nvn 0.554968 -0.320486 -0.767659\nvn 0.554686 -0.429679 -0.712531\nvn 0.604546 -0.416245 -0.679164\nvn 0.593059 -0.440277 -0.674119\nvn 0.593059 -0.440277 -0.674119\nvn 0.550561 -0.452137 -0.701751\nvn 0.554686 -0.429679 -0.712531\nvn 0.777325 0.621158 0.099645\nvn 0.765190 0.633071 0.117074\nvn 0.804565 0.590293 0.065035\nvn 0.765190 0.633071 0.117074\nvn 0.777325 0.621158 0.099645\nvn 0.652773 0.725409 0.218334\nvn 0.652773 0.725409 0.218334\nvn 0.617433 0.743814 0.255964\nvn 0.765190 0.633071 0.117074\nvn 0.617433 0.743814 0.255964\nvn 0.652773 0.725409 0.218334\nvn 0.429833 0.820237 0.377432\nvn 0.617433 0.743814 0.255964\nvn 0.429833 0.820237 0.377432\nvn 0.386525 0.828139 0.405936\nvn 0.282883 0.958854 -0.023988\nvn 0.282883 0.958854 -0.023988\nvn 0.282883 0.958854 -0.023988\nvn 0.386525 0.828139 0.405936\nvn 0.429833 0.820237 0.377432\nvn 0.203256 0.869273 0.450613\nvn 0.203256 0.869273 0.450613\nvn 0.176187 0.871382 0.457878\nvn 0.386525 0.828139 0.405936\nvn -0.000000 0.878582 0.477592\nvn 0.176187 0.871382 0.457878\nvn 0.203256 0.869273 0.450613\nvn 0.203256 0.869273 0.450613\nvn -0.000000 0.873610 0.486627\nvn -0.000000 0.878582 0.477592\nvn -0.000000 0.853539 -0.521029\nvn 0.041842 0.844682 -0.533630\nvn 0.043947 0.845041 -0.532893\nvn 0.043947 0.845041 -0.532893\nvn -0.000000 0.853861 -0.520502\nvn -0.000000 0.853539 -0.521029\nvn 0.069186 0.831397 -0.551355\nvn 0.018555 0.804236 -0.594021\nvn 0.014130 0.807326 -0.589937\nvn 0.014130 0.807326 -0.589937\nvn 0.074987 0.831329 -0.550699\nvn 0.069186 0.831397 -0.551355\nvn 0.041842 0.844682 -0.533630\nvn 0.069186 0.831397 -0.551355\nvn 0.074987 0.831329 -0.550699\nvn 0.074987 0.831329 -0.550699\nvn 0.043947 0.845041 -0.532893\nvn 0.041842 0.844682 -0.533630\nvn 0.018555 0.804236 -0.594021\nvn -0.036745 0.816266 -0.576507\nvn -0.038759 0.818088 -0.573785\nvn -0.038759 0.818088 -0.573785\nvn 0.014130 0.807326 -0.589937\nvn 0.018555 0.804236 -0.594021\nvn -0.052493 0.823501 -0.564881\nvn -0.038759 0.818088 -0.573785\nvn -0.036745 0.816266 -0.576507\nvn -0.036745 0.816266 -0.576507\nvn -0.052767 0.823427 -0.564964\nvn -0.052493 0.823501 -0.564881\nvn 0.412489 0.851286 -0.324291\nvn 0.406667 0.858960 -0.311142\nvn 0.403772 0.861595 -0.307606\nvn 0.403772 0.861595 -0.307606\nvn 0.412074 0.851402 -0.324514\nvn 0.412489 0.851286 -0.324291\nvn 0.403772 0.861595 -0.307606\nvn 0.406667 0.858960 -0.311142\nvn 0.380698 0.893362 -0.238692\nvn 0.380698 0.893362 -0.238692\nvn 0.373520 0.898322 -0.231302\nvn 0.403772 0.861595 -0.307606\nvn 0.373520 0.898322 -0.231302\nvn 0.380698 0.893362 -0.238692\nvn 0.319438 0.945560 -0.062258\nvn 0.319438 0.945560 -0.062258\nvn 0.300374 0.952181 -0.055912\nvn 0.373520 0.898322 -0.231302\nvn 0.300374 0.952181 -0.055912\nvn 0.319438 0.945560 -0.062258\nvn 0.159982 0.987086 -0.008240\nvn 0.159982 0.987086 -0.008240\nvn 0.152868 0.988228 -0.005982\nvn 0.300374 0.952181 -0.055912\nvn 0.152868 0.988228 -0.005982\nvn 0.159982 0.987086 -0.008240\nvn -0.000000 0.999581 0.028932\nvn -0.000000 0.999581 0.028932\nvn -0.000000 0.999555 0.029847\nvn 0.152868 0.988228 -0.005982\nvn 0.170694 0.740732 -0.649754\nvn 0.134133 0.757125 -0.639351\nvn 0.302418 0.622018 -0.722244\nvn 0.302418 0.622018 -0.722244\nvn 0.292160 0.618838 -0.729165\nvn 0.170694 0.740732 -0.649754\nvn 0.292160 0.618838 -0.729165\nvn 0.302418 0.622018 -0.722244\nvn 0.371817 0.671762 -0.640693\nvn 0.371817 0.671762 -0.640693\nvn 0.340746 0.667881 -0.661685\nvn 0.292160 0.618838 -0.729165\nvn 0.340746 0.667881 -0.661685\nvn 0.371817 0.671762 -0.640693\nvn 0.460567 0.637396 -0.617742\nvn 0.460567 0.637396 -0.617742\nvn 0.462740 0.635634 -0.617933\nvn 0.340746 0.667881 -0.661685\nvn 0.170694 0.740732 -0.649754\nvn 0.073459 0.832646 -0.548912\nvn 0.134133 0.757125 -0.639351\nvn 0.134133 0.757125 -0.639351\nvn 0.073459 0.832646 -0.548912\nvn 0.036409 0.881904 -0.470021\nvn 0.036409 0.881904 -0.470021\nvn 0.062105 0.794612 -0.603932\nvn 0.134133 0.757125 -0.639351\nvn 0.055941 0.796795 -0.601655\nvn 0.062105 0.794612 -0.603932\nvn 0.036409 0.881904 -0.470021\nvn -0.000000 0.894982 -0.446102\nvn 0.012207 0.995586 -0.093052\nvn 0.036409 0.881904 -0.470021\nvn -0.006684 0.999321 0.036226\nvn -0.006196 0.999365 0.035096\nvn -0.014680 0.998407 0.054477\nvn -0.014680 0.998407 0.054477\nvn -0.016694 0.998117 0.059023\nvn -0.006684 0.999321 0.036226\nvn -0.000000 0.906400 -0.422421\nvn -0.000000 0.894982 -0.446102\nvn 0.036409 0.881904 -0.470021\nvn -0.091558 0.898764 -0.428766\nvn -0.133675 0.907339 -0.398582\nvn -0.135659 0.907070 -0.398524\nvn -0.135659 0.907070 -0.398524\nvn -0.089787 0.898449 -0.429799\nvn -0.091558 0.898764 -0.428766\nvn -0.135659 0.907070 -0.398524\nvn -0.133675 0.907339 -0.398582\nvn -0.196546 0.922545 -0.332083\nvn -0.196546 0.922545 -0.332083\nvn -0.201247 0.921421 -0.332390\nvn -0.135659 0.907070 -0.398524\nvn -0.196546 0.922545 -0.332083\nvn -0.274368 0.936879 -0.216748\nvn -0.201247 0.921421 -0.332390\nvn -0.196546 0.922545 -0.332083\nvn -0.241195 0.936487 -0.254593\nvn -0.274368 0.936879 -0.216748\nvn -0.274368 0.936879 -0.216748\nvn -0.279497 0.936824 -0.210340\nvn -0.201247 0.921421 -0.332390\nvn 0.020051 0.902059 -0.431146\nvn 0.026063 0.939505 -0.341541\nvn 0.036409 0.881904 -0.470021\nvn 0.036409 0.881904 -0.470021\nvn 0.073459 0.832646 -0.548912\nvn 0.020051 0.902059 -0.431146\nvn -0.000000 0.906400 -0.422421\nvn 0.036409 0.881904 -0.470021\nvn 0.026063 0.939505 -0.341541\nvn 0.026063 0.939505 -0.341541\nvn -0.000000 0.918782 -0.394766\nvn -0.000000 0.906400 -0.422421\nvn 0.369308 -0.642572 0.671352\nvn 0.393640 -0.656199 0.643778\nvn 0.393607 -0.656224 0.643773\nvn 0.393607 -0.656224 0.643773\nvn 0.364030 -0.639067 0.677551\nvn 0.369308 -0.642572 0.671352\nvn 0.369308 -0.642572 0.671352\nvn 0.364030 -0.639067 0.677551\nvn 0.241621 -0.599643 0.762921\nvn 0.241621 -0.599643 0.762921\nvn 0.258350 -0.606000 0.752343\nvn 0.369308 -0.642572 0.671352\nvn 0.093449 -0.624296 0.775578\nvn 0.258350 -0.606000 0.752343\nvn 0.241621 -0.599643 0.762921\nvn 0.241621 -0.599643 0.762921\nvn 0.083409 -0.623660 0.777233\nvn 0.093449 -0.624296 0.775578\nvn 0.032870 -0.631171 0.774947\nvn 0.093449 -0.624296 0.775578\nvn 0.083409 -0.623660 0.777233\nvn 0.083409 -0.623660 0.777233\nvn 0.031587 -0.631252 0.774935\nvn 0.032870 -0.631171 0.774947\nvn 0.032870 -0.631171 0.774947\nvn 0.031587 -0.631252 0.774935\nvn 0.000000 -0.640788 0.767718\nvn 0.000000 -0.640788 0.767718\nvn 0.000000 -0.641087 0.767468\nvn 0.032870 -0.631171 0.774947\nvn 0.105016 -0.957382 -0.269056\nvn 0.105137 -0.959995 -0.259531\nvn 0.052462 -0.905893 -0.420245\nvn 0.000000 -0.880492 -0.474062\nvn 0.105016 -0.957382 -0.269056\nvn 0.052462 -0.905893 -0.420245\nvn 0.000000 -0.876499 -0.481403\nvn 0.000000 -0.880492 -0.474062\nvn 0.052462 -0.905893 -0.420245\nvn 0.009217 -0.998427 -0.055300\nvn 0.009614 -0.998214 -0.058963\nvn 0.007111 -0.999362 -0.035005\nvn 0.007111 -0.999362 -0.035005\nvn 0.005463 -0.999797 -0.019410\nvn 0.009217 -0.998427 -0.055300\nvn 0.422658 -0.805030 -0.416279\nvn 0.105137 -0.959995 -0.259531\nvn 0.105016 -0.957382 -0.269056\nvn 0.105016 -0.957382 -0.269056\nvn 0.423149 -0.801099 -0.423302\nvn 0.422658 -0.805030 -0.416279\nvn 0.490866 -0.870826 -0.026673\nvn 0.422658 -0.805030 -0.416279\nvn 0.423149 -0.801099 -0.423302\nvn 0.423149 -0.801099 -0.423302\nvn 0.484735 -0.874218 -0.027833\nvn 0.490866 -0.870826 -0.026673\nvn 0.521144 -0.849467 0.082554\nvn 0.490866 -0.870826 -0.026673\nvn 0.484735 -0.874218 -0.027833\nvn 0.484735 -0.874218 -0.027833\nvn 0.517029 -0.852222 0.079991\nvn 0.521144 -0.849467 0.082554\nvn 0.516787 -0.843803 0.144663\nvn 0.521144 -0.849467 0.082554\nvn 0.517029 -0.852222 0.079991\nvn 0.517029 -0.852222 0.079991\nvn 0.515937 -0.844208 0.145335\nvn 0.516787 -0.843803 0.144663\nvn 0.899025 -0.097660 -0.426868\nvn 0.891363 -0.046327 -0.450916\nvn 0.894483 -0.217753 -0.390491\nvn 0.894483 -0.217753 -0.390491\nvn 0.893870 -0.236888 -0.380632\nvn 0.899025 -0.097660 -0.426868\nvn 0.893870 -0.236888 -0.380632\nvn 0.894483 -0.217753 -0.390491\nvn 0.882150 -0.300855 -0.362351\nvn 0.882150 -0.300855 -0.362351\nvn 0.881671 -0.302507 -0.362141\nvn 0.893870 -0.236888 -0.380632\nvn 0.881671 -0.302507 -0.362141\nvn 0.882150 -0.300855 -0.362351\nvn 0.878499 -0.311846 -0.361929\nvn 0.878499 -0.311846 -0.361929\nvn 0.878344 -0.311998 -0.362172\nvn 0.881671 -0.302507 -0.362141\nvn 0.847211 0.113837 -0.518917\nvn 0.891363 -0.046327 -0.450916\nvn 0.899025 -0.097660 -0.426868\nvn 0.899025 -0.097660 -0.426868\nvn 0.865156 0.061100 -0.497767\nvn 0.847211 0.113837 -0.518917\nvn 0.847211 0.113837 -0.518917\nvn 0.865156 0.061100 -0.497767\nvn 0.818596 0.180157 -0.545385\nvn 0.818596 0.180157 -0.545385\nvn 0.800639 0.219341 -0.557554\nvn 0.847211 0.113837 -0.518917\nvn 0.800639 0.219341 -0.557554\nvn 0.818596 0.180157 -0.545385\nvn 0.802351 0.244795 -0.544342\nvn 0.802351 0.244795 -0.544342\nvn 0.799918 0.251237 -0.544988\nvn 0.800639 0.219341 -0.557554\nvn 0.799918 0.251237 -0.544988\nvn 0.802351 0.244795 -0.544342\nvn 0.797682 0.256057 -0.546020\nvn 0.336725 0.311332 -0.888644\nvn 0.336725 0.311332 -0.888644\nvn 0.336725 0.311332 -0.888644\nvn 0.997113 -0.057864 0.049166\nvn 0.997583 -0.050753 0.047457\nvn 0.993197 -0.094732 0.067723\nvn 0.993197 -0.094732 0.067723\nvn 0.992971 -0.096471 0.068577\nvn 0.997113 -0.057864 0.049166\nvn 0.992381 -0.101322 0.070102\nvn 0.992971 -0.096471 0.068577\nvn 0.993197 -0.094732 0.067723\nvn 0.993197 -0.094732 0.067723\nvn 0.992350 -0.101536 0.070224\nvn 0.992381 -0.101322 0.070102\nvn 0.999535 0.001648 0.030458\nvn 0.997583 -0.050753 0.047457\nvn 0.997113 -0.057864 0.049166\nvn 0.997113 -0.057864 0.049166\nvn 0.999504 -0.005554 0.031008\nvn 0.999535 0.001648 0.030458\nvn 0.999120 0.039125 0.015137\nvn 0.999535 0.001648 0.030458\nvn 0.999504 -0.005554 0.031008\nvn 0.999504 -0.005554 0.031008\nvn 0.999266 0.035311 0.014832\nvn 0.999120 0.039125 0.015137\nvn 0.999120 0.039125 0.015137\nvn 0.999266 0.035311 0.014832\nvn 0.998382 0.055881 0.010560\nvn 0.998382 0.055881 0.010560\nvn 0.998330 0.056399 0.012482\nvn 0.999120 0.039125 0.015137\nvn 0.998330 0.056399 0.012482\nvn 0.998382 0.055881 0.010560\nvn 0.949581 -0.045931 0.310138\nvn 0.949581 -0.045931 0.310138\nvn 0.948291 -0.047304 0.313859\nvn 0.998330 0.056399 0.012482\nvn 0.992381 -0.101322 0.070102\nvn 0.992350 -0.101536 0.070224\nvn 0.993339 -0.094212 0.066349\nvn 0.993339 -0.094212 0.066349\nvn 0.993337 -0.094212 0.066379\nvn 0.992381 -0.101322 0.070102\nvn -0.926433 0.071780 -0.369554\nvn -0.925615 0.075748 -0.370808\nvn -0.933153 0.072177 -0.352160\nvn -0.933153 0.072177 -0.352160\nvn -0.933441 0.071444 -0.351544\nvn -0.926433 0.071780 -0.369554\nvn -0.933350 0.072423 -0.351586\nvn -0.933441 0.071444 -0.351544\nvn -0.933153 0.072177 -0.352160\nvn -0.633300 0.205149 -0.746221\nvn -0.633300 0.205149 -0.746221\nvn -0.633300 0.205149 -0.746221\nvn -0.925615 0.075748 -0.370808\nvn -0.926433 0.071780 -0.369554\nvn -0.919229 0.059664 -0.389177\nvn -0.919229 0.059664 -0.389177\nvn -0.918412 0.065005 -0.390248\nvn -0.925615 0.075748 -0.370808\nvn -0.920516 0.034486 -0.389179\nvn -0.918412 0.065005 -0.390248\nvn -0.919229 0.059664 -0.389177\nvn -0.919229 0.059664 -0.389177\nvn -0.921047 0.029939 -0.388299\nvn -0.920516 0.034486 -0.389179\nvn -0.925878 -0.009644 -0.377700\nvn -0.920516 0.034486 -0.389179\nvn -0.921047 0.029939 -0.388299\nvn -0.921047 0.029939 -0.388299\nvn -0.925954 -0.010468 -0.377492\nvn -0.925878 -0.009644 -0.377700\nvn -0.925878 -0.009644 -0.377700\nvn -0.925954 -0.010468 -0.377492\nvn -0.931181 -0.050266 -0.361076\nvn -0.931181 -0.050266 -0.361076\nvn -0.931378 -0.052096 -0.360307\nvn -0.925878 -0.009644 -0.377700\nvn -0.933218 -0.068699 -0.352681\nvn -0.931378 -0.052096 -0.360307\nvn -0.931181 -0.050266 -0.361076\nvn -0.931181 -0.050266 -0.361076\nvn -0.933234 -0.068668 -0.352645\nvn -0.933218 -0.068699 -0.352681\nvn -0.000000 0.836836 -0.547453\nvn 0.118110 0.831901 -0.542210\nvn 0.113804 0.762326 -0.637108\nvn 0.113804 0.762326 -0.637108\nvn -0.000000 0.765241 -0.643744\nvn -0.000000 0.836836 -0.547453\nvn -0.000000 0.698015 -0.716083\nvn -0.000000 0.765241 -0.643744\nvn 0.113804 0.762326 -0.637108\nvn 0.130317 0.524198 -0.841567\nvn 0.137762 0.559379 -0.817384\nvn 0.234630 0.557673 -0.796210\nvn 0.199226 0.634729 -0.746611\nvn 0.234630 0.557673 -0.796210\nvn 0.137762 0.559379 -0.817384\nvn -0.000000 0.836836 -0.547453\nvn -0.118111 0.831901 -0.542210\nvn -0.127538 0.890569 -0.436602\nvn -0.127538 0.890569 -0.436602\nvn -0.000000 0.896934 -0.442165\nvn -0.000000 0.836836 -0.547453\nvn -0.000000 0.896934 -0.442165\nvn -0.127538 0.890569 -0.436602\nvn -0.139838 0.926740 -0.348710\nvn -0.139838 0.926740 -0.348710\nvn -0.000000 0.935687 -0.352832\nvn -0.000000 0.896934 -0.442165\nvn -0.000000 0.935687 -0.352832\nvn -0.139838 0.926740 -0.348710\nvn -0.150641 0.951547 -0.268078\nvn -0.150641 0.951547 -0.268078\nvn -0.000000 0.962895 -0.269877\nvn -0.000000 0.935687 -0.352832\nvn -0.000000 0.962895 -0.269877\nvn -0.150641 0.951547 -0.268078\nvn -0.163646 0.975737 -0.145456\nvn -0.163646 0.975737 -0.145456\nvn -0.000000 0.989743 -0.142861\nvn -0.000000 0.962895 -0.269877\nvn -0.000000 0.992626 0.121221\nvn -0.000000 0.989743 -0.142861\nvn -0.163646 0.975737 -0.145456\nvn -0.163646 0.975737 -0.145456\nvn -0.188211 0.975570 0.113317\nvn -0.000000 0.992626 0.121221\nvn -0.385394 0.918652 0.086888\nvn -0.188211 0.975570 0.113317\nvn -0.163646 0.975737 -0.145456\nvn -0.188211 0.975570 0.113317\nvn -0.385394 0.918652 0.086888\nvn -0.434508 0.832606 0.343468\nvn -0.649421 0.733166 0.201794\nvn -0.434508 0.832606 0.343468\nvn -0.385394 0.918652 0.086888\nvn -0.434508 0.832606 0.343468\nvn -0.649421 0.733166 0.201794\nvn -0.667937 0.688385 0.282819\nvn -0.796972 0.588253 0.137091\nvn -0.667937 0.688385 0.282819\nvn -0.649421 0.733166 0.201794\nvn -0.649421 0.733166 0.201794\nvn -0.768228 0.636782 0.065830\nvn -0.796972 0.588253 0.137091\nvn -0.784981 0.619414 -0.011475\nvn -0.796972 0.588253 0.137091\nvn -0.768228 0.636782 0.065830\nvn -0.768228 0.636782 0.065830\nvn -0.769471 0.637629 -0.036653\nvn -0.784981 0.619414 -0.011475\nvn -0.667937 0.688385 0.282819\nvn -0.442444 0.781212 0.440399\nvn -0.434508 0.832606 0.343468\nvn -0.212507 0.896021 0.389856\nvn -0.434508 0.832606 0.343468\nvn -0.442444 0.781212 0.440399\nvn -0.434508 0.832606 0.343468\nvn -0.212507 0.896021 0.389856\nvn -0.188211 0.975570 0.113317\nvn -0.000000 0.992626 0.121221\nvn -0.188211 0.975570 0.113317\nvn -0.212507 0.896021 0.389856\nvn -0.442444 0.781212 0.440399\nvn -0.217083 0.843185 0.491848\nvn -0.212507 0.896021 0.389856\nvn -0.000000 0.915870 0.401475\nvn -0.212507 0.896021 0.389856\nvn -0.217083 0.843185 0.491848\nvn -0.212507 0.896021 0.389856\nvn -0.000000 0.915870 0.401475\nvn -0.000000 0.992626 0.121221\nvn -0.217083 0.843185 0.491848\nvn -0.000000 0.864096 0.503326\nvn -0.000000 0.915870 0.401475\nvn -0.769471 0.637629 -0.036653\nvn -0.768228 0.636782 0.065830\nvn -0.683804 0.726133 -0.071719\nvn -0.760818 0.643531 -0.083806\nvn -0.769471 0.637629 -0.036653\nvn -0.683804 0.726133 -0.071719\nvn -0.723312 0.675426 -0.143594\nvn -0.760818 0.643531 -0.083806\nvn -0.683804 0.726133 -0.071719\nvn -0.768685 0.616944 -0.168832\nvn -0.760818 0.643531 -0.083806\nvn -0.723312 0.675426 -0.143594\nvn -0.723312 0.675426 -0.143594\nvn -0.734845 0.647681 -0.201275\nvn -0.768685 0.616944 -0.168832\nvn -0.734845 0.647681 -0.201275\nvn -0.723312 0.675426 -0.143594\nvn -0.647425 0.730741 -0.216470\nvn -0.647425 0.730741 -0.216470\nvn -0.723312 0.675426 -0.143594\nvn -0.683804 0.726133 -0.071719\nvn -0.647425 0.730741 -0.216470\nvn -0.640543 0.722548 -0.260056\nvn -0.734845 0.647681 -0.201275\nvn -0.640543 0.722548 -0.260056\nvn -0.647425 0.730741 -0.216470\nvn -0.591463 0.780682 -0.201763\nvn -0.683804 0.726133 -0.071719\nvn -0.591463 0.780682 -0.201763\nvn -0.647425 0.730741 -0.216470\nvn -0.591463 0.780682 -0.201763\nvn -0.546302 0.790031 -0.278217\nvn -0.640543 0.722548 -0.260056\nvn -0.546302 0.790031 -0.278217\nvn -0.591463 0.780682 -0.201763\nvn -0.480398 0.858832 -0.177834\nvn -0.480398 0.858832 -0.177834\nvn -0.591463 0.780682 -0.201763\nvn -0.683804 0.726133 -0.071719\nvn -0.480398 0.858832 -0.177834\nvn -0.442532 0.854452 -0.272172\nvn -0.546302 0.790031 -0.278217\nvn -0.442532 0.854452 -0.272172\nvn -0.480398 0.858832 -0.177834\nvn -0.333297 0.930764 -0.150305\nvn -0.333297 0.930764 -0.150305\nvn -0.304338 0.914997 -0.264876\nvn -0.442532 0.854452 -0.272172\nvn -0.442532 0.854452 -0.272172\nvn -0.304338 0.914997 -0.264876\nvn -0.287342 0.894771 -0.341788\nvn -0.287342 0.894771 -0.341788\nvn -0.421866 0.841594 -0.337266\nvn -0.442532 0.854452 -0.272172\nvn -0.546302 0.790031 -0.278217\nvn -0.442532 0.854452 -0.272172\nvn -0.421866 0.841594 -0.337266\nvn -0.421866 0.841594 -0.337266\nvn -0.287342 0.894771 -0.341788\nvn -0.269973 0.865218 -0.422507\nvn -0.269973 0.865218 -0.422507\nvn -0.406762 0.822557 -0.397423\nvn -0.421866 0.841594 -0.337266\nvn -0.377557 0.791340 -0.480865\nvn -0.406762 0.822557 -0.397423\nvn -0.269973 0.865218 -0.422507\nvn -0.269973 0.865218 -0.422507\nvn -0.249921 0.812601 -0.526516\nvn -0.377557 0.791340 -0.480865\nvn -0.421866 0.841594 -0.337266\nvn -0.526185 0.783494 -0.330556\nvn -0.546302 0.790031 -0.278217\nvn -0.640543 0.722548 -0.260056\nvn -0.546302 0.790031 -0.278217\nvn -0.526185 0.783494 -0.330556\nvn -0.526185 0.783494 -0.330556\nvn -0.630836 0.715008 -0.301348\nvn -0.640543 0.722548 -0.260056\nvn -0.623021 0.706949 -0.334766\nvn -0.630836 0.715008 -0.301348\nvn -0.526185 0.783494 -0.330556\nvn -0.526185 0.783494 -0.330556\nvn -0.514036 0.771741 -0.374410\nvn -0.623021 0.706949 -0.334766\nvn -0.514036 0.771741 -0.374410\nvn -0.526185 0.783494 -0.330556\nvn -0.421866 0.841594 -0.337266\nvn -0.421866 0.841594 -0.337266\nvn -0.406762 0.822557 -0.397423\nvn -0.514036 0.771741 -0.374410\nvn -0.605725 0.702320 -0.373958\nvn -0.623021 0.706949 -0.334766\nvn -0.514036 0.771741 -0.374410\nvn -0.514036 0.771741 -0.374410\nvn -0.498077 0.752944 -0.430110\nvn -0.605725 0.702320 -0.373958\nvn -0.406762 0.822557 -0.397423\nvn -0.377557 0.791340 -0.480865\nvn -0.498077 0.752944 -0.430110\nvn -0.498077 0.752944 -0.430110\nvn -0.514036 0.771741 -0.374410\nvn -0.406762 0.822557 -0.397423\nvn -0.605725 0.702320 -0.373958\nvn -0.498077 0.752944 -0.430110\nvn -0.466299 0.733613 -0.494345\nvn -0.466299 0.733613 -0.494345\nvn -0.498077 0.752944 -0.430110\nvn -0.377557 0.791340 -0.480865\nvn -0.466299 0.733613 -0.494345\nvn -0.564271 0.709084 -0.422845\nvn -0.605725 0.702320 -0.373958\nvn -0.564271 0.709084 -0.422845\nvn -0.466299 0.733613 -0.494345\nvn -0.416618 0.721932 -0.552489\nvn -0.416618 0.721932 -0.552489\nvn -0.540009 0.693094 -0.477505\nvn -0.564271 0.709084 -0.422845\nvn -0.522332 0.643950 -0.559016\nvn -0.540009 0.693094 -0.477505\nvn -0.416618 0.721932 -0.552489\nvn -0.416618 0.721932 -0.552489\nvn -0.389238 0.658445 -0.644162\nvn -0.522332 0.643950 -0.559016\nvn -0.279867 0.651842 -0.704824\nvn -0.389238 0.658445 -0.644162\nvn -0.416618 0.721932 -0.552489\nvn -0.416618 0.721932 -0.552489\nvn -0.316731 0.708815 -0.630288\nvn -0.279867 0.651842 -0.704824\nvn -0.316731 0.708815 -0.630288\nvn -0.416618 0.721932 -0.552489\nvn -0.466299 0.733613 -0.494345\nvn -0.466299 0.733613 -0.494345\nvn -0.344561 0.751809 -0.562193\nvn -0.316731 0.708815 -0.630288\nvn -0.377557 0.791340 -0.480865\nvn -0.344561 0.751809 -0.562193\nvn -0.466299 0.733613 -0.494345\nvn -0.231795 0.752669 -0.616247\nvn -0.344561 0.751809 -0.562193\nvn -0.377557 0.791340 -0.480865\nvn -0.377557 0.791340 -0.480865\nvn -0.249921 0.812601 -0.526516\nvn -0.231795 0.752669 -0.616247\nvn -0.344561 0.751809 -0.562193\nvn -0.231795 0.752669 -0.616247\nvn -0.218791 0.691316 -0.688631\nvn -0.218791 0.691316 -0.688631\nvn -0.316731 0.708815 -0.630288\nvn -0.344561 0.751809 -0.562193\nvn -0.316731 0.708815 -0.630288\nvn -0.218791 0.691316 -0.688631\nvn -0.199227 0.634729 -0.746611\nvn -0.199227 0.634729 -0.746611\nvn -0.279867 0.651842 -0.704824\nvn -0.316731 0.708815 -0.630288\nvn -0.113804 0.762326 -0.637108\nvn -0.231795 0.752669 -0.616247\nvn -0.249921 0.812601 -0.526516\nvn -0.249921 0.812601 -0.526516\nvn -0.118111 0.831901 -0.542210\nvn -0.113804 0.762326 -0.637108\nvn -0.231795 0.752669 -0.616247\nvn -0.113804 0.762326 -0.637108\nvn -0.115819 0.695617 -0.709015\nvn -0.115819 0.695617 -0.709015\nvn -0.218791 0.691316 -0.688631\nvn -0.231795 0.752669 -0.616247\nvn -0.218791 0.691316 -0.688631\nvn -0.115819 0.695617 -0.709015\nvn -0.121863 0.633914 -0.763743\nvn -0.121863 0.633914 -0.763743\nvn -0.199227 0.634729 -0.746611\nvn -0.218791 0.691316 -0.688631\nvn -0.121863 0.633914 -0.763743\nvn -0.115819 0.695617 -0.709015\nvn -0.000000 0.698015 -0.716083\nvn -0.000000 0.698015 -0.716083\nvn -0.115819 0.695617 -0.709015\nvn -0.113804 0.762326 -0.637108\nvn -0.000000 0.698015 -0.716083\nvn -0.000000 0.635598 -0.772020\nvn -0.121863 0.633914 -0.763743\nvn -0.137762 0.559379 -0.817384\nvn -0.121863 0.633914 -0.763743\nvn -0.000000 0.635598 -0.772020\nvn -0.199227 0.634729 -0.746611\nvn -0.121863 0.633914 -0.763743\nvn -0.137762 0.559379 -0.817384\nvn -0.000000 0.635598 -0.772020\nvn -0.000000 0.550142 -0.835071\nvn -0.137762 0.559379 -0.817384\nvn -0.137762 0.559379 -0.817384\nvn -0.000000 0.550142 -0.835071\nvn -0.000000 0.508023 -0.861344\nvn -0.000000 0.508023 -0.861344\nvn -0.130317 0.524197 -0.841567\nvn -0.137762 0.559379 -0.817384\nvn -0.127538 0.890569 -0.436602\nvn -0.118111 0.831901 -0.542210\nvn -0.249921 0.812601 -0.526516\nvn -0.249921 0.812601 -0.526516\nvn -0.269973 0.865218 -0.422507\nvn -0.127538 0.890569 -0.436602\nvn -0.139838 0.926740 -0.348710\nvn -0.127538 0.890569 -0.436602\nvn -0.269973 0.865218 -0.422507\nvn -0.269973 0.865218 -0.422507\nvn -0.287342 0.894771 -0.341788\nvn -0.139838 0.926740 -0.348710\nvn -0.139838 0.926740 -0.348710\nvn -0.287342 0.894771 -0.341788\nvn -0.304338 0.914997 -0.264876\nvn -0.304338 0.914997 -0.264876\nvn -0.150641 0.951547 -0.268078\nvn -0.139838 0.926740 -0.348710\nvn -0.163646 0.975737 -0.145456\nvn -0.150641 0.951547 -0.268078\nvn -0.304338 0.914997 -0.264876\nvn -0.304338 0.914997 -0.264876\nvn -0.333297 0.930764 -0.150305\nvn -0.163646 0.975737 -0.145456\nvn -0.163646 0.975737 -0.145456\nvn -0.333297 0.930764 -0.150305\nvn -0.385394 0.918652 0.086888\nvn -0.385394 0.918652 0.086888\nvn -0.333297 0.930764 -0.150305\nvn -0.480398 0.858832 -0.177834\nvn -0.480398 0.858832 -0.177834\nvn -0.564365 0.825519 0.003266\nvn -0.385394 0.918652 0.086888\nvn -0.683804 0.726133 -0.071719\nvn -0.564365 0.825519 0.003266\nvn -0.480398 0.858832 -0.177834\nvn -0.564365 0.825519 0.003266\nvn -0.683804 0.726133 -0.071719\nvn -0.768228 0.636782 0.065830\nvn -0.768228 0.636782 0.065830\nvn -0.649421 0.733166 0.201794\nvn -0.564365 0.825519 0.003266\nvn -0.385394 0.918652 0.086888\nvn -0.564365 0.825519 0.003266\nvn -0.649421 0.733166 0.201794\nvn -0.234630 0.557673 -0.796210\nvn -0.137762 0.559379 -0.817384\nvn -0.130317 0.524197 -0.841567\nvn -0.137762 0.559379 -0.817384\nvn -0.234630 0.557673 -0.796210\nvn -0.199227 0.634729 -0.746611\nvn -0.199227 0.634729 -0.746611\nvn -0.234630 0.557673 -0.796210\nvn -0.356468 0.534763 -0.766132\nvn -0.356468 0.534763 -0.766132\nvn -0.234630 0.557673 -0.796210\nvn -0.228805 0.519840 -0.823052\nvn -0.228805 0.519840 -0.823052\nvn -0.401821 0.455657 -0.794303\nvn -0.356468 0.534763 -0.766132\nvn -0.506928 0.514008 -0.691968\nvn -0.356468 0.534763 -0.766132\nvn -0.401821 0.455657 -0.794303\nvn -0.401821 0.455657 -0.794303\nvn -0.571934 0.413568 -0.708416\nvn -0.506928 0.514008 -0.691968\nvn -0.588071 0.536646 -0.605131\nvn -0.506928 0.514008 -0.691968\nvn -0.571934 0.413568 -0.708416\nvn -0.571934 0.413568 -0.708416\nvn -0.682427 0.388257 -0.619314\nvn -0.588071 0.536646 -0.605131\nvn -0.356468 0.534763 -0.766132\nvn -0.279867 0.651842 -0.704824\nvn -0.199227 0.634729 -0.746611\nvn -0.356468 0.534763 -0.766132\nvn -0.506928 0.514008 -0.691968\nvn -0.389238 0.658445 -0.644162\nvn -0.389238 0.658445 -0.644162\nvn -0.279867 0.651842 -0.704824\nvn -0.356468 0.534763 -0.766132\nvn -0.522332 0.643950 -0.559016\nvn -0.389238 0.658445 -0.644162\nvn -0.506928 0.514008 -0.691968\nvn -0.506928 0.514008 -0.691968\nvn -0.588071 0.536646 -0.605131\nvn -0.522332 0.643950 -0.559016\nvn -0.522332 0.643950 -0.559016\nvn -0.588071 0.536646 -0.605131\nvn -0.609525 0.648955 -0.455343\nvn -0.609525 0.648955 -0.455343\nvn -0.540009 0.693094 -0.477505\nvn -0.522332 0.643950 -0.559016\nvn -0.564271 0.709084 -0.422845\nvn -0.540009 0.693094 -0.477505\nvn -0.609525 0.648955 -0.455343\nvn -0.609525 0.648955 -0.455343\nvn -0.638981 0.668706 -0.380178\nvn -0.564271 0.709084 -0.422845\nvn -0.605725 0.702320 -0.373958\nvn -0.564271 0.709084 -0.422845\nvn -0.638981 0.668706 -0.380178\nvn -0.638981 0.668706 -0.380178\nvn -0.677949 0.657562 -0.328629\nvn -0.605725 0.702320 -0.373958\nvn -0.623021 0.706949 -0.334766\nvn -0.605725 0.702320 -0.373958\nvn -0.677949 0.657562 -0.328629\nvn -0.677949 0.657562 -0.328629\nvn -0.683479 0.662390 -0.306749\nvn -0.623021 0.706949 -0.334766\nvn -0.623021 0.706949 -0.334766\nvn -0.683479 0.662390 -0.306749\nvn -0.697333 0.664677 -0.268202\nvn -0.697333 0.664677 -0.268202\nvn -0.630836 0.715008 -0.301348\nvn -0.623021 0.706949 -0.334766\nvn -0.640543 0.722548 -0.260056\nvn -0.630836 0.715008 -0.301348\nvn -0.697333 0.664677 -0.268202\nvn -0.697333 0.664677 -0.268202\nvn -0.734845 0.647681 -0.201275\nvn -0.640543 0.722548 -0.260056\nvn -0.697333 0.664677 -0.268202\nvn -0.768685 0.616944 -0.168832\nvn -0.734845 0.647681 -0.201275\nvn -0.180246 -0.331773 -0.925980\nvn -0.254651 -0.320267 -0.912459\nvn -0.283735 -0.067478 -0.956526\nvn -0.283735 -0.067478 -0.956526\nvn -0.205366 -0.073858 -0.975894\nvn -0.180246 -0.331773 -0.925980\nvn -0.205366 -0.073858 -0.975894\nvn -0.283735 -0.067478 -0.956526\nvn -0.285664 0.155375 -0.945651\nvn -0.285664 0.155375 -0.945651\nvn -0.209237 0.150030 -0.966287\nvn -0.205366 -0.073858 -0.975894\nvn 0.000000 -0.085026 -0.996379\nvn -0.205366 -0.073858 -0.975894\nvn -0.209237 0.150030 -0.966287\nvn -0.180246 -0.331773 -0.925980\nvn -0.205366 -0.073858 -0.975894\nvn 0.000000 -0.085026 -0.996379\nvn -0.209237 0.150030 -0.966287\nvn -0.000000 0.140571 -0.990071\nvn 0.000000 -0.085026 -0.996379\nvn 0.000000 -0.085026 -0.996379\nvn 0.000000 -0.345746 -0.938328\nvn -0.180246 -0.331773 -0.925980\nvn -0.154398 -0.466399 -0.870996\nvn -0.180246 -0.331773 -0.925980\nvn 0.000000 -0.345746 -0.938328\nvn -0.254651 -0.320267 -0.912459\nvn -0.180246 -0.331773 -0.925980\nvn -0.154398 -0.466399 -0.870996\nvn 0.000000 -0.345746 -0.938328\nvn 0.002320 -0.483113 -0.875555\nvn -0.154398 -0.466399 -0.870996\nvn -0.139898 -0.496755 -0.856541\nvn -0.154398 -0.466399 -0.870996\nvn 0.002320 -0.483113 -0.875555\nvn 0.002320 -0.483113 -0.875555\nvn 0.005341 -0.506920 -0.861977\nvn -0.139898 -0.496755 -0.856541\nvn -0.000000 0.291335 -0.956621\nvn -0.000000 0.140571 -0.990071\nvn -0.209237 0.150030 -0.966287\nvn -0.209237 0.150030 -0.966287\nvn -0.212567 0.286423 -0.934225\nvn -0.000000 0.291335 -0.956621\nvn -0.212567 0.286423 -0.934225\nvn -0.209237 0.150030 -0.966287\nvn -0.285664 0.155375 -0.945651\nvn -0.000000 0.291335 -0.956621\nvn -0.212567 0.286423 -0.934225\nvn -0.199868 0.356033 -0.912849\nvn -0.199868 0.356033 -0.912849\nvn -0.000000 0.376032 -0.926607\nvn -0.000000 0.291335 -0.956621\nvn -0.000000 0.376032 -0.926607\nvn -0.199868 0.356033 -0.912849\nvn -0.168436 0.388265 -0.906024\nvn -0.168436 0.388265 -0.906024\nvn -0.000000 0.410689 -0.911775\nvn -0.000000 0.376032 -0.926607\nvn -0.199868 0.356033 -0.912849\nvn -0.212567 0.286423 -0.934225\nvn -0.288007 0.289410 -0.912849\nvn -0.285664 0.155375 -0.945651\nvn -0.288007 0.289410 -0.912849\nvn -0.212567 0.286423 -0.934225\nvn -0.288007 0.289410 -0.912849\nvn -0.278825 0.345632 -0.895988\nvn -0.199868 0.356033 -0.912849\nvn -0.236403 0.374106 -0.896749\nvn -0.168436 0.388265 -0.906024\nvn -0.199868 0.356033 -0.912849\nvn -0.199868 0.356033 -0.912849\nvn -0.278825 0.345632 -0.895988\nvn -0.236403 0.374106 -0.896749\nvn -0.154398 -0.466399 -0.870996\nvn -0.139898 -0.496755 -0.856541\nvn -0.221601 -0.490140 -0.843004\nvn -0.221601 -0.490140 -0.843004\nvn -0.229503 -0.458244 -0.858685\nvn -0.154398 -0.466399 -0.870996\nvn -0.154398 -0.466399 -0.870996\nvn -0.229503 -0.458244 -0.858685\nvn -0.254651 -0.320267 -0.912459\nvn -0.582479 -0.081546 -0.808745\nvn -0.612064 -0.295030 -0.733714\nvn -0.752763 -0.247727 -0.609901\nvn -0.752763 -0.247727 -0.609901\nvn -0.733527 -0.088353 -0.673893\nvn -0.582479 -0.081546 -0.808745\nvn -0.582479 -0.081546 -0.808745\nvn -0.733527 -0.088353 -0.673893\nvn -0.671686 0.100376 -0.734005\nvn -0.671686 0.100376 -0.734005\nvn -0.510976 0.134923 -0.848940\nvn -0.582479 -0.081546 -0.808745\nvn -0.434531 0.265882 -0.860517\nvn -0.510976 0.134923 -0.848940\nvn -0.671686 0.100376 -0.734005\nvn -0.671686 0.100376 -0.734005\nvn -0.604523 0.222332 -0.764932\nvn -0.434531 0.265882 -0.860517\nvn -0.821186 0.082463 -0.564671\nvn -0.671686 0.100376 -0.734005\nvn -0.733527 -0.088353 -0.673893\nvn -0.733527 -0.088353 -0.673893\nvn -0.859628 -0.062839 -0.507042\nvn -0.821186 0.082463 -0.564671\nvn -0.914571 0.071628 -0.398032\nvn -0.821186 0.082463 -0.564671\nvn -0.859628 -0.062839 -0.507042\nvn -0.859628 -0.062839 -0.507042\nvn -0.939177 -0.021425 -0.342765\nvn -0.914571 0.071628 -0.398032\nvn -0.936656 -0.073642 -0.342422\nvn -0.939177 -0.021425 -0.342765\nvn -0.859628 -0.062839 -0.507042\nvn -0.859628 -0.062839 -0.507042\nvn -0.866678 -0.138557 -0.479240\nvn -0.936656 -0.073642 -0.342422\nvn -0.866678 -0.138557 -0.479240\nvn -0.859628 -0.062839 -0.507042\nvn -0.733527 -0.088353 -0.673893\nvn -0.752763 -0.247727 -0.609901\nvn -0.866678 -0.138557 -0.479240\nvn -0.733527 -0.088353 -0.673893\nvn -0.767193 0.187479 -0.613406\nvn -0.604523 0.222332 -0.764932\nvn -0.671686 0.100376 -0.734005\nvn -0.671686 0.100376 -0.734005\nvn -0.821186 0.082463 -0.564671\nvn -0.767193 0.187479 -0.613406\nvn -0.767193 0.187479 -0.613406\nvn -0.821186 0.082463 -0.564671\nvn -0.914571 0.071628 -0.398032\nvn -0.939177 -0.021425 -0.342765\nvn -0.936656 -0.073642 -0.342422\nvn -0.961100 0.015442 -0.275768\nvn -0.914571 0.071628 -0.398032\nvn -0.939177 -0.021425 -0.342765\nvn -0.961100 0.015442 -0.275768\nvn -0.961100 0.015442 -0.275768\nvn -0.950573 0.068148 -0.302931\nvn -0.914571 0.071628 -0.398032\nvn -0.914571 0.071628 -0.398032\nvn -0.950573 0.068148 -0.302931\nvn -0.914545 0.177440 -0.363486\nvn -0.914545 0.177440 -0.363486\nvn -0.875436 0.166572 -0.453725\nvn -0.914571 0.071628 -0.398032\nvn -0.914571 0.071628 -0.398032\nvn -0.875436 0.166572 -0.453725\nvn -0.767193 0.187479 -0.613406\nvn -0.434531 0.265882 -0.860517\nvn -0.604523 0.222332 -0.764932\nvn -0.562966 0.284687 -0.775901\nvn -0.562966 0.284687 -0.775901\nvn -0.384936 0.327072 -0.863046\nvn -0.434531 0.265882 -0.860517\nvn -0.384936 0.327072 -0.863046\nvn -0.562966 0.284687 -0.775901\nvn -0.546743 0.304821 -0.779844\nvn -0.546743 0.304821 -0.779844\nvn -0.376583 0.343560 -0.860321\nvn -0.384936 0.327072 -0.863046\nvn -0.604523 0.222332 -0.764932\nvn -0.767193 0.187479 -0.613406\nvn -0.722674 0.250474 -0.644208\nvn -0.722674 0.250474 -0.644208\nvn -0.562966 0.284687 -0.775901\nvn -0.604523 0.222332 -0.764932\nvn -0.562966 0.284687 -0.775901\nvn -0.722674 0.250474 -0.644208\nvn -0.708946 0.272481 -0.650500\nvn -0.708946 0.272481 -0.650500\nvn -0.546743 0.304821 -0.779844\nvn -0.562966 0.284687 -0.775901\nvn -0.822709 0.261001 -0.505003\nvn -0.708946 0.272481 -0.650500\nvn -0.722674 0.250474 -0.644208\nvn -0.722674 0.250474 -0.644208\nvn -0.845065 0.239877 -0.477833\nvn -0.822709 0.261001 -0.505003\nvn -0.845065 0.239877 -0.477833\nvn -0.722674 0.250474 -0.644208\nvn -0.767193 0.187479 -0.613406\nvn -0.767193 0.187479 -0.613406\nvn -0.875436 0.166572 -0.453725\nvn -0.845065 0.239877 -0.477833\nvn -0.875436 0.166572 -0.453725\nvn -0.914545 0.177440 -0.363486\nvn -0.886527 0.244765 -0.392632\nvn -0.886527 0.244765 -0.392632\nvn -0.845065 0.239877 -0.477833\nvn -0.875436 0.166572 -0.453725\nvn -0.822709 0.261001 -0.505003\nvn -0.845065 0.239877 -0.477833\nvn -0.886527 0.244765 -0.392632\nvn -0.301252 0.333266 -0.893410\nvn -0.384936 0.327072 -0.863046\nvn -0.376583 0.343560 -0.860321\nvn -0.434531 0.265882 -0.860517\nvn -0.384936 0.327072 -0.863046\nvn -0.301252 0.333266 -0.893410\nvn -0.301252 0.333266 -0.893410\nvn -0.348889 0.269480 -0.897584\nvn -0.434531 0.265882 -0.860517\nvn -0.376583 0.343560 -0.860321\nvn -0.254623 0.355764 -0.899222\nvn -0.301252 0.333266 -0.893410\nvn -0.434531 0.265882 -0.860517\nvn -0.348889 0.269480 -0.897584\nvn -0.435718 0.123876 -0.891518\nvn -0.435718 0.123876 -0.891518\nvn -0.510976 0.134923 -0.848940\nvn -0.434531 0.265882 -0.860517\nvn -0.510976 0.134923 -0.848940\nvn -0.435718 0.123876 -0.891518\nvn -0.516111 -0.105566 -0.849991\nvn -0.516111 -0.105566 -0.849991\nvn -0.582479 -0.081546 -0.808745\nvn -0.510976 0.134923 -0.848940\nvn -0.612064 -0.295030 -0.733714\nvn -0.582479 -0.081546 -0.808745\nvn -0.516111 -0.105566 -0.849991\nvn -0.516111 -0.105566 -0.849991\nvn -0.554968 -0.320486 -0.767658\nvn -0.612064 -0.295030 -0.733714\nvn -0.604546 -0.416245 -0.679164\nvn -0.612064 -0.295030 -0.733714\nvn -0.554968 -0.320486 -0.767658\nvn -0.604546 -0.416245 -0.679164\nvn -0.680387 -0.333419 -0.652615\nvn -0.612064 -0.295030 -0.733714\nvn -0.680387 -0.333419 -0.652615\nvn -0.604546 -0.416245 -0.679164\nvn -0.593079 -0.440270 -0.674107\nvn -0.680387 -0.333419 -0.652615\nvn -0.752763 -0.247727 -0.609901\nvn -0.612064 -0.295030 -0.733714\nvn -0.680387 -0.333419 -0.652615\nvn -0.751805 -0.319168 -0.576993\nvn -0.752763 -0.247727 -0.609901\nvn -0.751805 -0.319168 -0.576993\nvn -0.797070 -0.294480 -0.527220\nvn -0.752763 -0.247727 -0.609901\nvn 0.019471 0.910226 -0.413653\nvn 0.019471 0.910226 -0.413653\nvn 0.019471 0.910226 -0.413653\nvn -0.554968 -0.320486 -0.767658\nvn -0.554685 -0.429679 -0.712531\nvn -0.604546 -0.416245 -0.679164\nvn -0.593079 -0.440270 -0.674107\nvn -0.604546 -0.416245 -0.679164\nvn -0.554685 -0.429679 -0.712531\nvn -0.554685 -0.429679 -0.712531\nvn -0.550561 -0.452138 -0.701751\nvn -0.593079 -0.440270 -0.674107\nvn -0.776869 0.621251 0.102575\nvn -0.804565 0.590293 0.065035\nvn -0.761917 0.636848 0.117927\nvn -0.776869 0.621251 0.102575\nvn -0.761917 0.636848 0.117927\nvn -0.615246 0.754751 0.227646\nvn -0.615246 0.754751 0.227646\nvn -0.654517 0.723826 0.218365\nvn -0.776869 0.621251 0.102575\nvn -0.615246 0.754751 0.227646\nvn -0.409748 0.838509 0.359178\nvn -0.654517 0.723826 0.218365\nvn -0.615246 0.754751 0.227646\nvn -0.488615 0.820786 0.295915\nvn -0.409748 0.838509 0.359178\nvn -0.488615 0.820786 0.295915\nvn -0.339802 0.843247 0.416496\nvn -0.409748 0.838509 0.359178\nvn -0.203257 0.869272 0.450613\nvn -0.409748 0.838509 0.359178\nvn -0.339802 0.843247 0.416496\nvn -0.339802 0.843247 0.416496\nvn -0.176187 0.871382 0.457878\nvn -0.203257 0.869272 0.450613\nvn -0.203257 0.869272 0.450613\nvn -0.176187 0.871382 0.457878\nvn -0.000000 0.878582 0.477592\nvn -0.000000 0.878582 0.477592\nvn -0.000000 0.873610 0.486627\nvn -0.203257 0.869272 0.450613\nvn -0.043948 0.845041 -0.532893\nvn -0.041842 0.844705 -0.533594\nvn -0.000000 0.853539 -0.521029\nvn -0.000000 0.853539 -0.521029\nvn -0.000000 0.853861 -0.520502\nvn -0.043948 0.845041 -0.532893\nvn -0.014130 0.807311 -0.589957\nvn -0.018556 0.804236 -0.594021\nvn -0.069187 0.831397 -0.551355\nvn -0.069187 0.831397 -0.551355\nvn -0.074985 0.831338 -0.550685\nvn -0.014130 0.807311 -0.589957\nvn -0.074985 0.831338 -0.550685\nvn -0.069187 0.831397 -0.551355\nvn -0.041842 0.844705 -0.533594\nvn -0.041842 0.844705 -0.533594\nvn -0.043948 0.845041 -0.532893\nvn -0.074985 0.831338 -0.550685\nvn 0.038759 0.818103 -0.573765\nvn 0.036745 0.816265 -0.576507\nvn -0.018556 0.804236 -0.594021\nvn -0.018556 0.804236 -0.594021\nvn -0.014130 0.807311 -0.589957\nvn 0.038759 0.818103 -0.573765\nvn 0.052493 0.823501 -0.564881\nvn 0.052767 0.823427 -0.564964\nvn 0.036745 0.816265 -0.576507\nvn 0.036745 0.816265 -0.576507\nvn 0.038759 0.818103 -0.573765\nvn 0.052493 0.823501 -0.564881\nvn -0.412490 0.851286 -0.324291\nvn -0.412074 0.851402 -0.324514\nvn -0.403773 0.861595 -0.307606\nvn -0.403773 0.861595 -0.307606\nvn -0.406667 0.858960 -0.311142\nvn -0.412490 0.851286 -0.324291\nvn -0.380667 0.893359 -0.238752\nvn -0.406667 0.858960 -0.311142\nvn -0.403773 0.861595 -0.307606\nvn -0.403773 0.861595 -0.307606\nvn -0.373491 0.898326 -0.231334\nvn -0.380667 0.893359 -0.238752\nvn -0.319412 0.945569 -0.062259\nvn -0.380667 0.893359 -0.238752\nvn -0.373491 0.898326 -0.231334\nvn -0.373491 0.898326 -0.231334\nvn -0.300374 0.952180 -0.055942\nvn -0.319412 0.945569 -0.062259\nvn -0.159982 0.987086 -0.008240\nvn -0.319412 0.945569 -0.062259\nvn -0.300374 0.952180 -0.055942\nvn -0.300374 0.952180 -0.055942\nvn -0.152869 0.988228 -0.005982\nvn -0.159982 0.987086 -0.008240\nvn -0.000000 0.999581 0.028932\nvn -0.159982 0.987086 -0.008240\nvn -0.152869 0.988228 -0.005982\nvn -0.152869 0.988228 -0.005982\nvn -0.000000 0.999555 0.029847\nvn -0.000000 0.999581 0.028932\nvn -0.170694 0.740732 -0.649754\nvn -0.292161 0.618838 -0.729165\nvn -0.302418 0.622018 -0.722244\nvn -0.302418 0.622018 -0.722244\nvn -0.134133 0.757125 -0.639351\nvn -0.170694 0.740732 -0.649754\nvn -0.371791 0.671769 -0.640701\nvn -0.302418 0.622018 -0.722244\nvn -0.292161 0.618838 -0.729165\nvn -0.292161 0.618838 -0.729165\nvn -0.340746 0.667881 -0.661685\nvn -0.371791 0.671769 -0.640701\nvn -0.460567 0.637396 -0.617742\nvn -0.371791 0.671769 -0.640701\nvn -0.340746 0.667881 -0.661685\nvn -0.340746 0.667881 -0.661685\nvn -0.462740 0.635634 -0.617933\nvn -0.460567 0.637396 -0.617742\nvn -0.170694 0.740732 -0.649754\nvn -0.134133 0.757125 -0.639351\nvn -0.073459 0.832646 -0.548912\nvn -0.036409 0.881904 -0.470021\nvn -0.073459 0.832646 -0.548912\nvn -0.134133 0.757125 -0.639351\nvn -0.134133 0.757125 -0.639351\nvn -0.062107 0.794627 -0.603913\nvn -0.036409 0.881904 -0.470021\nvn -0.036409 0.881904 -0.470021\nvn -0.062107 0.794627 -0.603913\nvn -0.055942 0.796820 -0.601621\nvn -0.000000 0.894982 -0.446102\nvn -0.036409 0.881904 -0.470021\nvn -0.012208 0.995589 -0.093022\nvn 0.014679 0.998407 0.054477\nvn 0.006195 0.999365 0.035096\nvn 0.006683 0.999321 0.036226\nvn 0.006683 0.999321 0.036226\nvn 0.016693 0.998119 0.058993\nvn 0.014679 0.998407 0.054477\nvn -0.000000 0.894982 -0.446102\nvn -0.000000 0.906400 -0.422421\nvn -0.036409 0.881904 -0.470021\nvn 0.089908 0.900152 -0.426195\nvn 0.138405 0.906361 -0.399192\nvn 0.133795 0.906718 -0.399951\nvn 0.133795 0.906718 -0.399951\nvn 0.087529 0.899892 -0.427240\nvn 0.089908 0.900152 -0.426195\nvn 0.196546 0.922546 -0.332083\nvn 0.133795 0.906718 -0.399951\nvn 0.138405 0.906361 -0.399192\nvn 0.138405 0.906361 -0.399192\nvn 0.201247 0.921421 -0.332390\nvn 0.196546 0.922546 -0.332083\nvn 0.201247 0.921421 -0.332390\nvn 0.274336 0.936875 -0.216808\nvn 0.196546 0.922546 -0.332083\nvn 0.201247 0.921421 -0.332390\nvn 0.279463 0.936814 -0.210429\nvn 0.274336 0.936875 -0.216808\nvn 0.274336 0.936875 -0.216808\nvn 0.241225 0.936487 -0.254562\nvn 0.196546 0.922546 -0.332083\nvn -0.020051 0.902059 -0.431146\nvn -0.073459 0.832646 -0.548912\nvn -0.036409 0.881904 -0.470021\nvn -0.036409 0.881904 -0.470021\nvn -0.026064 0.939505 -0.341541\nvn -0.020051 0.902059 -0.431146\nvn -0.026064 0.939505 -0.341541\nvn -0.036409 0.881904 -0.470021\nvn -0.000000 0.906400 -0.422421\nvn -0.000000 0.906400 -0.422421\nvn -0.000000 0.918782 -0.394766\nvn -0.026064 0.939505 -0.341541\nvn -0.369288 -0.642593 0.671342\nvn -0.364037 -0.639080 0.677535\nvn -0.393606 -0.656225 0.643773\nvn -0.393606 -0.656225 0.643773\nvn -0.393640 -0.656199 0.643778\nvn -0.369288 -0.642593 0.671342\nvn -0.241625 -0.599623 0.762935\nvn -0.364037 -0.639080 0.677535\nvn -0.369288 -0.642593 0.671342\nvn -0.369288 -0.642593 0.671342\nvn -0.258378 -0.605995 0.752337\nvn -0.241625 -0.599623 0.762935\nvn -0.241625 -0.599623 0.762935\nvn -0.258378 -0.605995 0.752337\nvn -0.093449 -0.624296 0.775578\nvn -0.093449 -0.624296 0.775578\nvn -0.083409 -0.623660 0.777233\nvn -0.241625 -0.599623 0.762935\nvn -0.083409 -0.623660 0.777233\nvn -0.093449 -0.624296 0.775578\nvn -0.032869 -0.631171 0.774947\nvn -0.032869 -0.631171 0.774947\nvn -0.031556 -0.631252 0.774935\nvn -0.083409 -0.623660 0.777233\nvn 0.000000 -0.640788 0.767718\nvn -0.031556 -0.631252 0.774935\nvn -0.032869 -0.631171 0.774947\nvn -0.032869 -0.631171 0.774947\nvn 0.000000 -0.641087 0.767468\nvn 0.000000 -0.640788 0.767718\nvn -0.052462 -0.905893 -0.420245\nvn -0.105136 -0.959995 -0.259531\nvn -0.105016 -0.957382 -0.269056\nvn -0.052462 -0.905893 -0.420245\nvn -0.105016 -0.957382 -0.269056\nvn 0.000000 -0.880492 -0.474062\nvn -0.052462 -0.905893 -0.420245\nvn 0.000000 -0.880492 -0.474062\nvn 0.000000 -0.876499 -0.481403\nvn -0.007111 -0.999362 -0.035005\nvn -0.009613 -0.998214 -0.058963\nvn -0.009247 -0.998427 -0.055300\nvn -0.009247 -0.998427 -0.055300\nvn -0.005463 -0.999797 -0.019379\nvn -0.007111 -0.999362 -0.035005\nvn -0.105016 -0.957382 -0.269056\nvn -0.105136 -0.959995 -0.259531\nvn -0.422657 -0.805030 -0.416279\nvn -0.422657 -0.805030 -0.416279\nvn -0.423149 -0.801100 -0.423302\nvn -0.105016 -0.957382 -0.269056\nvn -0.423149 -0.801100 -0.423302\nvn -0.422657 -0.805030 -0.416279\nvn -0.490866 -0.870827 -0.026673\nvn -0.490866 -0.870827 -0.026673\nvn -0.484711 -0.874232 -0.027803\nvn -0.423149 -0.801100 -0.423302\nvn -0.484711 -0.874232 -0.027803\nvn -0.490866 -0.870827 -0.026673\nvn -0.520174 -0.850090 0.082250\nvn -0.520174 -0.850090 0.082250\nvn -0.516933 -0.852369 0.079045\nvn -0.484711 -0.874232 -0.027803\nvn -0.517606 -0.843064 0.146035\nvn -0.516933 -0.852369 0.079045\nvn -0.520174 -0.850090 0.082250\nvn -0.520174 -0.850090 0.082250\nvn -0.516761 -0.843445 0.146831\nvn -0.517606 -0.843064 0.146035\nvn -0.894483 -0.217754 -0.390491\nvn -0.891363 -0.046328 -0.450916\nvn -0.899025 -0.097661 -0.426868\nvn -0.899025 -0.097661 -0.426868\nvn -0.893870 -0.236888 -0.380632\nvn -0.894483 -0.217754 -0.390491\nvn -0.882149 -0.300856 -0.362351\nvn -0.894483 -0.217754 -0.390491\nvn -0.893870 -0.236888 -0.380632\nvn -0.893870 -0.236888 -0.380632\nvn -0.881661 -0.302504 -0.362168\nvn -0.882149 -0.300856 -0.362351\nvn -0.878498 -0.311847 -0.361929\nvn -0.882149 -0.300856 -0.362351\nvn -0.881661 -0.302504 -0.362168\nvn -0.881661 -0.302504 -0.362168\nvn -0.878352 -0.311971 -0.362175\nvn -0.878498 -0.311847 -0.361929\nvn -0.899025 -0.097661 -0.426868\nvn -0.891363 -0.046328 -0.450916\nvn -0.847225 0.113838 -0.518894\nvn -0.847225 0.113838 -0.518894\nvn -0.865156 0.061099 -0.497767\nvn -0.899025 -0.097661 -0.426868\nvn -0.818671 0.180123 -0.545282\nvn -0.865156 0.061099 -0.497767\nvn -0.847225 0.113838 -0.518894\nvn -0.847225 0.113838 -0.518894\nvn -0.800702 0.219341 -0.557464\nvn -0.818671 0.180123 -0.545282\nvn -0.802351 0.244795 -0.544342\nvn -0.818671 0.180123 -0.545282\nvn -0.800702 0.219341 -0.557464\nvn -0.800702 0.219341 -0.557464\nvn -0.799904 0.251233 -0.545009\nvn -0.802351 0.244795 -0.544342\nvn -0.797682 0.256056 -0.546020\nvn -0.802351 0.244795 -0.544342\nvn -0.799904 0.251233 -0.545009\nvn -0.336716 0.311324 -0.888651\nvn -0.336716 0.311324 -0.888651\nvn -0.336712 0.311351 -0.888642\nvn -0.993196 -0.094733 0.067723\nvn -0.997583 -0.050754 0.047457\nvn -0.997113 -0.057864 0.049166\nvn -0.997113 -0.057864 0.049166\nvn -0.992971 -0.096471 0.068577\nvn -0.993196 -0.094733 0.067723\nvn -0.993196 -0.094733 0.067723\nvn -0.992971 -0.096471 0.068577\nvn -0.992384 -0.101293 0.070102\nvn -0.992384 -0.101293 0.070102\nvn -0.992350 -0.101536 0.070224\nvn -0.993196 -0.094733 0.067723\nvn -0.997113 -0.057864 0.049166\nvn -0.997583 -0.050754 0.047457\nvn -0.999535 0.001648 0.030458\nvn -0.999535 0.001648 0.030458\nvn -0.999504 -0.005555 0.031008\nvn -0.997113 -0.057864 0.049166\nvn -0.999504 -0.005555 0.031008\nvn -0.999535 0.001648 0.030458\nvn -0.999120 0.039216 0.014863\nvn -0.999120 0.039216 0.014863\nvn -0.999267 0.035402 0.014558\nvn -0.999504 -0.005555 0.031008\nvn -0.998380 0.055911 0.010560\nvn -0.999267 0.035402 0.014558\nvn -0.999120 0.039216 0.014863\nvn -0.999120 0.039216 0.014863\nvn -0.998329 0.056429 0.012482\nvn -0.998380 0.055911 0.010560\nvn -0.949572 -0.045932 0.310166\nvn -0.998380 0.055911 0.010560\nvn -0.998329 0.056429 0.012482\nvn -0.998329 0.056429 0.012482\nvn -0.948291 -0.047305 0.313859\nvn -0.949572 -0.045932 0.310166\nvn -0.993341 -0.094335 0.066135\nvn -0.992350 -0.101536 0.070224\nvn -0.992384 -0.101293 0.070102\nvn -0.992384 -0.101293 0.070102\nvn -0.993341 -0.094335 0.066135\nvn -0.993341 -0.094335 0.066135\nvn 0.933153 0.072178 -0.352160\nvn 0.925615 0.075749 -0.370808\nvn 0.926443 0.071782 -0.369527\nvn 0.926443 0.071782 -0.369527\nvn 0.933441 0.071444 -0.351544\nvn 0.933153 0.072178 -0.352160\nvn 0.933153 0.072178 -0.352160\nvn 0.933441 0.071444 -0.351544\nvn 0.933348 0.072454 -0.351585\nvn 0.633125 0.205213 -0.746352\nvn 0.633125 0.205213 -0.746352\nvn 0.633125 0.205213 -0.746352\nvn 0.919176 0.059665 -0.389302\nvn 0.926443 0.071782 -0.369527\nvn 0.925615 0.075749 -0.370808\nvn 0.925615 0.075749 -0.370808\nvn 0.918357 0.065037 -0.390373\nvn 0.919176 0.059665 -0.389302\nvn 0.919176 0.059665 -0.389302\nvn 0.918357 0.065037 -0.390373\nvn 0.920516 0.034487 -0.389179\nvn 0.920516 0.034487 -0.389179\nvn 0.921047 0.029940 -0.388299\nvn 0.919176 0.059665 -0.389302\nvn 0.921047 0.029940 -0.388299\nvn 0.920516 0.034487 -0.389179\nvn 0.925878 -0.009644 -0.377700\nvn 0.925878 -0.009644 -0.377700\nvn 0.925954 -0.010468 -0.377492\nvn 0.921047 0.029940 -0.388299\nvn 0.931181 -0.050265 -0.361076\nvn 0.925954 -0.010468 -0.377492\nvn 0.925878 -0.009644 -0.377700\nvn 0.925878 -0.009644 -0.377700\nvn 0.931378 -0.052096 -0.360307\nvn 0.931181 -0.050265 -0.361076\nvn 0.931181 -0.050265 -0.361076\nvn 0.931378 -0.052096 -0.360307\nvn 0.933257 -0.068638 -0.352592\nvn 0.933257 -0.068638 -0.352592\nvn 0.933272 -0.068607 -0.352556\nvn 0.931181 -0.050265 -0.361076\nvn -0.113804 0.762326 -0.637108\nvn -0.118111 0.831901 -0.542210\nvn -0.000000 0.836836 -0.547453\nvn -0.000000 0.836836 -0.547453\nvn -0.000000 0.765241 -0.643744\nvn -0.113804 0.762326 -0.637108\nvn -0.113804 0.762326 -0.637108\nvn -0.000000 0.765241 -0.643744\nvn -0.000000 0.698015 -0.716083\nvn -0.130317 0.524197 -0.841567\nvn -0.228805 0.519840 -0.823052\nvn -0.234630 0.557673 -0.796210\nvn 0.240307 -0.090092 -0.966507\nvn 0.140420 -0.049320 -0.988863\nvn 0.081151 -0.109840 -0.990631\nvn 0.081151 -0.109840 -0.990631\nvn 0.121800 -0.120854 -0.985170\nvn 0.240307 -0.090092 -0.966507\nvn 0.240307 -0.090092 -0.966507\nvn 0.121800 -0.120854 -0.985170\nvn 0.289256 -0.100132 -0.952000\nvn 0.289256 -0.100132 -0.952000\nvn 0.289653 -0.098972 -0.952001\nvn 0.240307 -0.090092 -0.966507\nvn 0.045015 -0.203529 -0.978033\nvn 0.121800 -0.120854 -0.985170\nvn 0.081151 -0.109840 -0.990631\nvn 0.081151 -0.109840 -0.990631\nvn 0.045657 -0.205668 -0.977556\nvn 0.045015 -0.203529 -0.978033\nvn 0.045626 -0.211130 -0.976393\nvn 0.045015 -0.203529 -0.978033\nvn 0.045657 -0.205668 -0.977556\nvn 0.045657 -0.205668 -0.977556\nvn 0.046176 -0.214886 -0.975547\nvn 0.045626 -0.211130 -0.976393\nvn 0.045626 -0.211130 -0.976393\nvn 0.046176 -0.214886 -0.975547\nvn 0.046236 -0.219157 -0.974594\nvn 0.046236 -0.219157 -0.974594\nvn 0.046969 -0.215861 -0.975294\nvn 0.045626 -0.211130 -0.976393\nvn 0.081151 -0.109840 -0.990631\nvn 0.140420 -0.049320 -0.988863\nvn 0.055026 -0.019013 -0.998304\nvn 0.055026 -0.019013 -0.998304\nvn 0.042757 -0.007416 -0.999058\nvn 0.081151 -0.109840 -0.990631\nvn 0.042757 -0.007416 -0.999058\nvn 0.055026 -0.019013 -0.998304\nvn 0.000000 -0.005768 -0.999983\nvn 0.000000 -0.005768 -0.999983\nvn 0.000000 -0.002136 -0.999998\nvn 0.042757 -0.007416 -0.999058\nvn 0.379475 -0.015839 -0.925066\nvn 0.387899 -0.025636 -0.921345\nvn 0.402883 -0.025300 -0.914902\nvn 0.402883 -0.025300 -0.914902\nvn 0.376452 -0.015046 -0.926314\nvn 0.379475 -0.015839 -0.925066\nvn 0.376452 -0.015046 -0.926314\nvn 0.402883 -0.025300 -0.914902\nvn 0.472961 -0.009064 -0.881037\nvn 0.472961 -0.009064 -0.881037\nvn 0.351980 -0.008637 -0.935968\nvn 0.376452 -0.015046 -0.926314\nvn 0.376452 -0.015046 -0.926314\nvn 0.351980 -0.008637 -0.935968\nvn 0.259471 -0.009064 -0.965708\nvn 0.259471 -0.009064 -0.965708\nvn 0.234842 -0.008728 -0.971994\nvn 0.376452 -0.015046 -0.926314\nvn 0.348251 -0.005310 -0.937387\nvn 0.387899 -0.025636 -0.921345\nvn 0.379475 -0.015839 -0.925066\nvn 0.379475 -0.015839 -0.925066\nvn 0.297927 0.015992 -0.954455\nvn 0.348251 -0.005310 -0.937387\nvn 0.245283 0.020692 -0.969231\nvn 0.348251 -0.005310 -0.937387\nvn 0.297927 0.015992 -0.954455\nvn 0.297927 0.015992 -0.954455\nvn 0.219495 0.030916 -0.975124\nvn 0.245283 0.020692 -0.969231\nvn 0.245283 0.020692 -0.969231\nvn 0.219495 0.030916 -0.975124\nvn 0.155069 0.040102 -0.987089\nvn 0.155069 0.040102 -0.987089\nvn 0.150947 0.033968 -0.987958\nvn 0.245283 0.020692 -0.969231\nvn 0.150947 0.033968 -0.987958\nvn 0.155069 0.040102 -0.987089\nvn 0.073886 0.041964 -0.996383\nvn 0.073886 0.041964 -0.996383\nvn 0.070773 0.040956 -0.996651\nvn 0.150947 0.033968 -0.987958\nvn 0.070773 0.040956 -0.996651\nvn 0.073886 0.041964 -0.996383\nvn -0.000000 0.042635 -0.999091\nvn -0.000000 0.042635 -0.999091\nvn -0.000000 0.042360 -0.999102\nvn 0.070773 0.040956 -0.996651\nvn 0.580394 0.437714 -0.686694\nvn 0.556758 0.454673 -0.695193\nvn 0.792400 0.026949 -0.609407\nvn 0.792400 0.026949 -0.609407\nvn 0.768604 0.223281 -0.599495\nvn 0.580394 0.437714 -0.686694\nvn 0.344900 0.589818 -0.730177\nvn 0.556758 0.454673 -0.695193\nvn 0.580394 0.437714 -0.686694\nvn 0.580394 0.437714 -0.686694\nvn 0.366970 0.583264 -0.724663\nvn 0.344900 0.589818 -0.730177\nvn 0.344900 0.589818 -0.730177\nvn 0.366970 0.583264 -0.724663\nvn 0.155373 0.646214 -0.747172\nvn 0.155373 0.646214 -0.747172\nvn 0.163796 0.650697 -0.741461\nvn 0.344900 0.589818 -0.730177\nvn 0.768604 0.223281 -0.599495\nvn 0.792400 0.026949 -0.609407\nvn 0.839798 0.004883 -0.542877\nvn 0.839798 0.004883 -0.542877\nvn 0.874107 0.035922 -0.484404\nvn 0.768604 0.223281 -0.599495\nvn -0.000000 0.664091 -0.747652\nvn 0.163796 0.650697 -0.741461\nvn 0.155373 0.646214 -0.747172\nvn 0.155373 0.646214 -0.747172\nvn -0.000000 0.658072 -0.752955\nvn -0.000000 0.664091 -0.747652\nvn -0.174418 0.084477 0.981041\nvn -0.244886 0.102392 0.964130\nvn -0.192181 0.084783 0.977690\nvn -0.192181 0.084783 0.977690\nvn -0.160562 0.071934 0.984401\nvn -0.174418 0.084477 0.981041\nvn -0.283305 0.107029 0.953039\nvn -0.192181 0.084783 0.977690\nvn -0.244886 0.102392 0.964130\nvn -0.244886 0.102392 0.964130\nvn -0.283801 0.103553 0.953276\nvn -0.283305 0.107029 0.953039\nvn 0.000915 0.996021 -0.089116\nvn 0.001007 0.996029 -0.089025\nvn 0.000915 0.996021 -0.089116\nvn 0.000915 0.996021 -0.089116\nvn 0.000824 0.996013 -0.089207\nvn 0.000915 0.996021 -0.089116\nvn 0.995639 -0.013214 -0.092349\nvn 0.993813 0.062075 -0.092106\nvn 0.993113 0.068179 -0.095280\nvn 0.993113 0.068179 -0.095280\nvn 0.994904 -0.033235 -0.095190\nvn 0.995639 -0.013214 -0.092349\nvn 0.995639 -0.013214 -0.092349\nvn 0.994904 -0.033235 -0.095190\nvn 0.989512 0.119604 -0.080997\nvn 0.989512 0.119604 -0.080997\nvn 0.993872 0.070010 -0.085544\nvn 0.995639 -0.013214 -0.092349\nvn 0.759145 0.642469 -0.104560\nvn 0.757399 0.644387 -0.105414\nvn 0.765118 0.635809 -0.101690\nvn 0.765118 0.635809 -0.101690\nvn 0.766640 0.634096 -0.100927\nvn 0.759145 0.642469 -0.104560\nvn -0.688721 0.718751 -0.095189\nvn -0.685613 0.721900 -0.093785\nvn -0.696534 0.710695 -0.098759\nvn -0.696534 0.710695 -0.098759\nvn -0.699232 0.707869 -0.099982\nvn -0.688721 0.718751 -0.095189\nvn -0.977275 0.190163 -0.093662\nvn -0.946558 0.308337 -0.094641\nvn -0.947938 0.303578 -0.096198\nvn -0.947938 0.303578 -0.096198\nvn -0.972042 0.214032 -0.096563\nvn -0.977275 0.190163 -0.093662\nvn -0.977275 0.190163 -0.093662\nvn -0.972042 0.214032 -0.096563\nvn -0.990965 0.097112 -0.092504\nvn -0.990965 0.097112 -0.092504\nvn -0.991680 0.093357 -0.088627\nvn -0.977275 0.190163 -0.093662\nvn 0.525453 -0.823048 0.215620\nvn 0.529604 -0.803332 0.272355\nvn 0.517268 -0.852214 0.078526\nvn 0.517268 -0.852214 0.078526\nvn 0.514527 -0.857474 -0.000030\nvn 0.525453 -0.823048 0.215620\nvn 0.541627 -0.793137 0.278520\nvn 0.529604 -0.803332 0.272355\nvn 0.525453 -0.823048 0.215620\nvn -0.004852 -0.888217 0.459399\nvn -0.002136 -0.979104 0.203347\nvn -0.002655 -0.967542 0.252697\nvn 0.000000 -1.000000 0.000000\nvn -0.002655 -0.967542 0.252697\nvn -0.002136 -0.979104 0.203347\nvn -0.002136 -0.979104 0.203347\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.987679 0.144873 -0.059176\nvn 0.993872 0.070010 -0.085544\nvn 0.989512 0.119604 -0.080997\nvn 0.989512 0.119604 -0.080997\nvn 0.996163 0.080204 -0.035036\nvn 0.987679 0.144873 -0.059176\nvn -0.000214 0.994813 -0.101718\nvn -0.000214 0.994813 -0.101718\nvn 0.141945 0.984735 -0.100744\nvn 0.141945 0.984735 -0.100744\nvn 0.139901 0.985077 -0.100257\nvn -0.000214 0.994813 -0.101718\nvn 0.139901 0.985077 -0.100257\nvn 0.141945 0.984735 -0.100744\nvn 0.206371 0.973655 -0.096990\nvn 0.206371 0.973655 -0.096990\nvn 0.205238 0.974036 -0.095554\nvn 0.139901 0.985077 -0.100257\nvn 0.943841 0.061771 -0.324573\nvn 0.975072 -0.069920 -0.210585\nvn 0.910398 -0.049747 -0.410732\nvn 0.910398 -0.049747 -0.410732\nvn 0.867264 -0.006989 -0.497799\nvn 0.943841 0.061771 -0.324573\nvn 0.839798 0.004883 -0.542877\nvn 0.943841 0.061771 -0.324573\nvn 0.867264 -0.006989 -0.497799\nvn 0.867264 -0.006989 -0.497799\nvn 0.874107 0.035922 -0.484404\nvn 0.839798 0.004883 -0.542877\nvn 0.991749 0.107489 -0.069858\nvn 0.997445 -0.071444 0.000000\nvn 0.975072 -0.069920 -0.210585\nvn 0.975072 -0.069920 -0.210585\nvn 0.943841 0.061771 -0.324573\nvn 0.991749 0.107489 -0.069858\nvn 0.997445 -0.071444 0.000000\nvn 0.997445 -0.071444 0.000000\nvn 0.991749 0.107489 -0.069858\nvn 0.991749 0.107489 -0.069858\nvn 0.992606 0.121375 -0.001251\nvn 0.997445 -0.071444 0.000000\nvn 0.975394 0.219098 -0.024537\nvn 0.991749 0.107489 -0.069858\nvn 0.943841 0.061771 -0.324573\nvn 0.992606 0.121375 -0.001251\nvn 0.991749 0.107489 -0.069858\nvn 0.975394 0.219098 -0.024537\nvn 0.943841 0.061771 -0.324573\nvn 0.983313 0.181922 -0.000000\nvn 0.975394 0.219098 -0.024537\nvn 0.975394 0.219098 -0.024537\nvn 0.947523 0.319687 -0.000000\nvn 0.992606 0.121375 -0.001251\nvn 0.278796 0.623179 -0.730699\nvn 0.529263 0.592133 -0.607667\nvn 0.431177 0.597996 -0.675638\nvn 0.431177 0.597996 -0.675638\nvn 0.248856 0.610757 -0.751696\nvn 0.278796 0.623179 -0.730699\nvn 0.697936 0.507956 -0.504843\nvn 0.431177 0.597996 -0.675638\nvn 0.529263 0.592133 -0.607667\nvn 0.529263 0.592133 -0.607667\nvn 0.821278 0.421626 -0.384362\nvn 0.697936 0.507956 -0.504843\nvn 0.104557 0.609032 -0.786224\nvn 0.278796 0.623179 -0.730699\nvn 0.248856 0.610757 -0.751696\nvn 0.248856 0.610757 -0.751696\nvn 0.099036 0.601451 -0.792748\nvn 0.104557 0.609032 -0.786224\nvn 0.871997 0.315447 -0.374319\nvn 0.697936 0.507956 -0.504843\nvn 0.821278 0.421626 -0.384362\nvn 0.821278 0.421626 -0.384362\nvn 0.938231 0.123543 -0.323202\nvn 0.871997 0.315447 -0.374319\nvn 0.938231 0.123543 -0.323202\nvn 0.940199 0.004700 -0.340592\nvn 0.871997 0.315447 -0.374319\nvn -0.000000 0.601469 -0.798896\nvn 0.104557 0.609032 -0.786224\nvn 0.099036 0.601451 -0.792748\nvn 0.099036 0.601451 -0.792748\nvn -0.000000 0.599028 -0.800728\nvn -0.000000 0.601469 -0.798896\nvn 0.125920 0.000916 -0.992040\nvn 0.176980 -0.002503 -0.984211\nvn 0.176767 -0.004395 -0.984243\nvn 0.176767 -0.004395 -0.984243\nvn 0.126930 -0.000580 -0.991912\nvn 0.125920 0.000916 -0.992040\nvn 0.404103 -0.103612 -0.908827\nvn 0.176767 -0.004395 -0.984243\nvn 0.176980 -0.002503 -0.984211\nvn 0.176980 -0.002503 -0.984211\nvn 0.351249 -0.086828 -0.932247\nvn 0.404103 -0.103612 -0.908827\nvn 0.063723 0.000458 -0.997968\nvn 0.125920 0.000916 -0.992040\nvn 0.126930 -0.000580 -0.991912\nvn 0.126930 -0.000580 -0.991912\nvn 0.065861 -0.000031 -0.997829\nvn 0.063723 0.000458 -0.997968\nvn 0.519376 -0.196361 -0.831680\nvn 0.404103 -0.103612 -0.908827\nvn 0.351249 -0.086828 -0.932247\nvn 0.351249 -0.086828 -0.932247\nvn 0.494479 -0.207655 -0.844020\nvn 0.519376 -0.196361 -0.831680\nvn 0.000000 -0.000244 -1.000000\nvn 0.063723 0.000458 -0.997968\nvn 0.065861 -0.000031 -0.997829\nvn 0.065861 -0.000031 -0.997829\nvn 0.000000 -0.000427 -1.000000\nvn 0.000000 -0.000244 -1.000000\nvn 0.679963 -0.475363 -0.558284\nvn 0.797317 -0.396232 -0.455287\nvn 0.746465 -0.434102 -0.504327\nvn 0.746465 -0.434102 -0.504327\nvn 0.624541 -0.504235 -0.596402\nvn 0.679963 -0.475363 -0.558284\nvn -0.401537 -0.915843 0.000000\nvn -0.420824 -0.907142 -0.000458\nvn -0.233103 -0.972452 0.000000\nvn -0.233103 -0.972452 0.000000\nvn -0.218520 -0.975833 0.000000\nvn -0.401537 -0.915843 0.000000\nvn -0.420824 -0.907142 -0.000458\nvn -0.401537 -0.915843 0.000000\nvn -0.567649 -0.823243 -0.006745\nvn -0.567649 -0.823243 -0.006745\nvn -0.623324 -0.781963 -0.001007\nvn -0.420824 -0.907142 -0.000458\nvn -0.218520 -0.975833 0.000000\nvn -0.233103 -0.972452 0.000000\nvn -0.076449 -0.997074 0.000000\nvn -0.076449 -0.997074 0.000000\nvn -0.071720 -0.997425 0.000000\nvn -0.218520 -0.975833 0.000000\nvn -0.816153 -0.577826 -0.003327\nvn -0.623324 -0.781963 -0.001007\nvn -0.567649 -0.823243 -0.006745\nvn -0.567649 -0.823243 -0.006745\nvn -0.707922 -0.705939 -0.022279\nvn -0.816153 -0.577826 -0.003327\nvn -0.973610 -0.228220 -0.000427\nvn -0.816153 -0.577826 -0.003327\nvn -0.707922 -0.705939 -0.022279\nvn -0.707922 -0.705939 -0.022279\nvn -0.955912 -0.293653 0.000000\nvn -0.973610 -0.228220 -0.000427\nvn 0.000000 -1.000000 0.000000\nvn -0.071720 -0.997425 0.000000\nvn -0.076449 -0.997074 0.000000\nvn -0.076449 -0.997074 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.999999 -0.001313 0.000000\nvn -0.973610 -0.228220 -0.000427\nvn -0.955912 -0.293653 0.000000\nvn -0.955912 -0.293653 0.000000\nvn -0.999999 -0.001313 0.000000\nvn -0.999999 -0.001313 0.000000\nvn 0.996163 0.080204 -0.035036\nvn 0.992449 -0.122656 0.000000\nvn 0.996898 -0.070742 -0.034486\nvn 0.987679 0.144873 -0.059176\nvn 0.996163 0.080204 -0.035036\nvn 0.996898 -0.070742 -0.034486\nvn 0.760026 -0.162852 -0.629158\nvn 0.839798 0.004883 -0.542877\nvn 0.792400 0.026949 -0.609407\nvn 0.505888 0.862599 -0.000000\nvn 0.615785 0.787914 -0.000000\nvn 0.587129 0.809493 -0.000000\nvn 0.587129 0.809493 -0.000000\nvn 0.505888 0.862599 -0.000000\nvn 0.505888 0.862599 -0.000000\nvn 0.587129 0.809493 -0.000000\nvn 0.615785 0.787914 -0.000000\nvn 0.689935 0.723872 -0.000000\nvn 0.689935 0.723872 -0.000000\nvn 0.689950 0.723857 -0.000000\nvn 0.587129 0.809493 -0.000000\nvn -0.240307 -0.090092 -0.966507\nvn -0.121800 -0.120854 -0.985170\nvn -0.081151 -0.109840 -0.990631\nvn -0.081151 -0.109840 -0.990631\nvn -0.140420 -0.049320 -0.988863\nvn -0.240307 -0.090092 -0.966507\nvn -0.289256 -0.100132 -0.952000\nvn -0.121800 -0.120854 -0.985170\nvn -0.240307 -0.090092 -0.966507\nvn -0.240307 -0.090092 -0.966507\nvn -0.289625 -0.098973 -0.952009\nvn -0.289256 -0.100132 -0.952000\nvn -0.081151 -0.109840 -0.990631\nvn -0.121800 -0.120854 -0.985170\nvn -0.045015 -0.203529 -0.978033\nvn -0.045015 -0.203529 -0.978033\nvn -0.045656 -0.205668 -0.977556\nvn -0.081151 -0.109840 -0.990631\nvn -0.045656 -0.205668 -0.977556\nvn -0.045015 -0.203529 -0.978033\nvn -0.045626 -0.211130 -0.976393\nvn -0.045626 -0.211130 -0.976393\nvn -0.046176 -0.214886 -0.975547\nvn -0.045656 -0.205668 -0.977556\nvn -0.046236 -0.219157 -0.974594\nvn -0.046176 -0.214886 -0.975547\nvn -0.045626 -0.211130 -0.976393\nvn -0.045626 -0.211130 -0.976393\nvn -0.046969 -0.215861 -0.975294\nvn -0.046236 -0.219157 -0.974594\nvn -0.055056 -0.019013 -0.998302\nvn -0.140420 -0.049320 -0.988863\nvn -0.081151 -0.109840 -0.990631\nvn -0.081151 -0.109840 -0.990631\nvn -0.042787 -0.007416 -0.999057\nvn -0.055056 -0.019013 -0.998302\nvn 0.000000 -0.005768 -0.999983\nvn -0.055056 -0.019013 -0.998302\nvn -0.042787 -0.007416 -0.999057\nvn -0.042787 -0.007416 -0.999057\nvn 0.000000 -0.002136 -0.999998\nvn 0.000000 -0.005768 -0.999983\nvn -0.379475 -0.015840 -0.925066\nvn -0.376479 -0.015046 -0.926303\nvn -0.402883 -0.025301 -0.914902\nvn -0.402883 -0.025301 -0.914902\nvn -0.387899 -0.025636 -0.921345\nvn -0.379475 -0.015840 -0.925066\nvn -0.472948 -0.009034 -0.881044\nvn -0.402883 -0.025301 -0.914902\nvn -0.376479 -0.015046 -0.926303\nvn -0.376479 -0.015046 -0.926303\nvn -0.351943 -0.008637 -0.935982\nvn -0.472948 -0.009034 -0.881044\nvn -0.259471 -0.009064 -0.965708\nvn -0.351943 -0.008637 -0.935982\nvn -0.376479 -0.015046 -0.926303\nvn -0.376479 -0.015046 -0.926303\nvn -0.234907 -0.008729 -0.971979\nvn -0.259471 -0.009064 -0.965708\nvn -0.379475 -0.015840 -0.925066\nvn -0.387899 -0.025636 -0.921345\nvn -0.348251 -0.005310 -0.937387\nvn -0.348251 -0.005310 -0.937387\nvn -0.297927 0.015992 -0.954455\nvn -0.379475 -0.015840 -0.925066\nvn -0.297927 0.015992 -0.954455\nvn -0.348251 -0.005310 -0.937387\nvn -0.245283 0.020692 -0.969231\nvn -0.245283 0.020692 -0.969231\nvn -0.219495 0.030916 -0.975124\nvn -0.297927 0.015992 -0.954455\nvn -0.155069 0.040102 -0.987089\nvn -0.219495 0.030916 -0.975124\nvn -0.245283 0.020692 -0.969231\nvn -0.245283 0.020692 -0.969231\nvn -0.150947 0.033967 -0.987958\nvn -0.155069 0.040102 -0.987089\nvn -0.073886 0.041963 -0.996383\nvn -0.155069 0.040102 -0.987089\nvn -0.150947 0.033967 -0.987958\nvn -0.150947 0.033967 -0.987958\nvn -0.070773 0.040956 -0.996651\nvn -0.073886 0.041963 -0.996383\nvn -0.000000 0.042635 -0.999091\nvn -0.073886 0.041963 -0.996383\nvn -0.070773 0.040956 -0.996651\nvn -0.070773 0.040956 -0.996651\nvn -0.000000 0.042360 -0.999102\nvn -0.000000 0.042635 -0.999091\nvn -0.792400 0.026918 -0.609407\nvn -0.556759 0.454672 -0.695193\nvn -0.580394 0.437714 -0.686694\nvn -0.580394 0.437714 -0.686694\nvn -0.768604 0.223281 -0.599495\nvn -0.792400 0.026918 -0.609407\nvn -0.580394 0.437714 -0.686694\nvn -0.556759 0.454672 -0.695193\nvn -0.344900 0.589818 -0.730177\nvn -0.344900 0.589818 -0.730177\nvn -0.366970 0.583264 -0.724663\nvn -0.580394 0.437714 -0.686694\nvn -0.155374 0.646214 -0.747172\nvn -0.366970 0.583264 -0.724663\nvn -0.344900 0.589818 -0.730177\nvn -0.344900 0.589818 -0.730177\nvn -0.163796 0.650697 -0.741461\nvn -0.155374 0.646214 -0.747172\nvn -0.839812 0.004883 -0.542855\nvn -0.792400 0.026918 -0.609407\nvn -0.768604 0.223281 -0.599495\nvn -0.768604 0.223281 -0.599495\nvn -0.874107 0.035921 -0.484404\nvn -0.839812 0.004883 -0.542855\nvn -0.155374 0.646214 -0.747172\nvn -0.163796 0.650697 -0.741461\nvn -0.000000 0.664091 -0.747652\nvn -0.000000 0.664091 -0.747652\nvn -0.000000 0.658072 -0.752955\nvn -0.155374 0.646214 -0.747172\nvn 0.174417 0.084477 0.981041\nvn 0.160562 0.071934 0.984401\nvn 0.192181 0.084783 0.977690\nvn 0.192181 0.084783 0.977690\nvn 0.244914 0.102391 0.964123\nvn 0.174417 0.084477 0.981041\nvn 0.244914 0.102391 0.964123\nvn 0.192181 0.084783 0.977690\nvn 0.283305 0.107029 0.953039\nvn 0.283305 0.107029 0.953039\nvn 0.283801 0.103553 0.953276\nvn 0.244914 0.102391 0.964123\nvn -0.000916 0.996021 -0.089116\nvn -0.001007 0.996029 -0.089025\nvn -0.000916 0.996021 -0.089116\nvn -0.000916 0.996021 -0.089116\nvn -0.000824 0.996013 -0.089207\nvn -0.000916 0.996021 -0.089116\nvn -0.993113 0.068179 -0.095280\nvn -0.993813 0.062075 -0.092106\nvn -0.995521 -0.011903 -0.093784\nvn -0.995521 -0.011903 -0.093784\nvn -0.995141 -0.030825 -0.093511\nvn -0.993113 0.068179 -0.095280\nvn -0.995141 -0.030825 -0.093511\nvn -0.995521 -0.011903 -0.093784\nvn -0.993885 0.067599 -0.087315\nvn -0.993885 0.067599 -0.087315\nvn -0.989780 0.118320 -0.079593\nvn -0.995141 -0.030825 -0.093511\nvn -0.765119 0.635808 -0.101690\nvn -0.757400 0.644386 -0.105414\nvn -0.759145 0.642468 -0.104560\nvn -0.759145 0.642468 -0.104560\nvn -0.766640 0.634095 -0.100927\nvn -0.765119 0.635808 -0.101690\nvn 0.696534 0.710695 -0.098759\nvn 0.685612 0.721900 -0.093785\nvn 0.688735 0.718737 -0.095191\nvn 0.688735 0.718737 -0.095191\nvn 0.699232 0.707869 -0.099982\nvn 0.696534 0.710695 -0.098759\nvn 0.947929 0.303606 -0.096197\nvn 0.946558 0.308337 -0.094641\nvn 0.977522 0.187875 -0.095677\nvn 0.977522 0.187875 -0.095677\nvn 0.972431 0.212932 -0.095067\nvn 0.947929 0.303606 -0.096197\nvn 0.972431 0.212932 -0.095067\nvn 0.977522 0.187875 -0.095677\nvn 0.991060 0.096106 -0.092535\nvn 0.991060 0.096106 -0.092535\nvn 0.990861 0.100988 -0.089421\nvn 0.972431 0.212932 -0.095067\nvn -0.565187 -0.819688 0.093145\nvn -0.662780 -0.748814 -0.000030\nvn -0.520381 -0.821666 0.232525\nvn -0.520381 -0.821666 0.232525\nvn -0.460076 -0.855788 0.236554\nvn -0.565187 -0.819688 0.093145\nvn -0.460076 -0.855788 0.236554\nvn -0.520381 -0.821666 0.232525\nvn -0.541601 -0.793144 0.278553\nvn 0.002655 -0.967542 0.252697\nvn 0.002137 -0.979104 0.203347\nvn 0.004853 -0.888217 0.459399\nvn 0.002137 -0.979104 0.203347\nvn 0.002655 -0.967542 0.252697\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.002137 -0.979104 0.203347\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.989780 0.118320 -0.079593\nvn -0.993885 0.067599 -0.087315\nvn -0.987679 0.144872 -0.059176\nvn -0.987679 0.144872 -0.059176\nvn -0.996163 0.080203 -0.035036\nvn -0.989780 0.118320 -0.079593\nvn -0.000214 0.994813 -0.101718\nvn -0.000214 0.994813 -0.101718\nvn -0.138894 0.985163 -0.100805\nvn -0.138894 0.985163 -0.100805\nvn -0.140847 0.984948 -0.100195\nvn -0.000214 0.994813 -0.101718\nvn -0.140847 0.984948 -0.100195\nvn -0.138894 0.985163 -0.100805\nvn -0.206952 0.973538 -0.096930\nvn -0.206952 0.973538 -0.096930\nvn -0.208020 0.973473 -0.095281\nvn -0.140847 0.984948 -0.100195\nvn -0.943819 0.061771 -0.324637\nvn -0.867251 -0.006989 -0.497822\nvn -0.910387 -0.049747 -0.410757\nvn -0.910387 -0.049747 -0.410757\nvn -0.975065 -0.069920 -0.210615\nvn -0.943819 0.061771 -0.324637\nvn -0.867251 -0.006989 -0.497822\nvn -0.943819 0.061771 -0.324637\nvn -0.839812 0.004883 -0.542855\nvn -0.839812 0.004883 -0.542855\nvn -0.874107 0.035921 -0.484404\nvn -0.867251 -0.006989 -0.497822\nvn -0.991747 0.107488 -0.069889\nvn -0.943819 0.061771 -0.324637\nvn -0.975065 -0.069920 -0.210615\nvn -0.975065 -0.069920 -0.210615\nvn -0.997445 -0.071445 0.000000\nvn -0.991747 0.107488 -0.069889\nvn -0.991747 0.107488 -0.069889\nvn -0.997445 -0.071445 0.000000\nvn -0.997445 -0.071445 0.000000\nvn -0.997445 -0.071445 0.000000\nvn -0.992606 0.121375 -0.001251\nvn -0.991747 0.107488 -0.069889\nvn -0.943819 0.061771 -0.324637\nvn -0.991747 0.107488 -0.069889\nvn -0.975387 0.219126 -0.024568\nvn -0.975387 0.219126 -0.024568\nvn -0.991747 0.107488 -0.069889\nvn -0.992606 0.121375 -0.001251\nvn -0.975387 0.219126 -0.024568\nvn -0.983313 0.181922 -0.000000\nvn -0.943819 0.061771 -0.324637\nvn -0.992606 0.121375 -0.001251\nvn -0.947524 0.319686 -0.000000\nvn -0.975387 0.219126 -0.024568\nvn -0.278796 0.623179 -0.730699\nvn -0.248856 0.610757 -0.751696\nvn -0.431178 0.597996 -0.675638\nvn -0.431178 0.597996 -0.675638\nvn -0.529263 0.592133 -0.607667\nvn -0.278796 0.623179 -0.730699\nvn -0.529263 0.592133 -0.607667\nvn -0.431178 0.597996 -0.675638\nvn -0.697936 0.507956 -0.504843\nvn -0.697936 0.507956 -0.504843\nvn -0.821278 0.421626 -0.384362\nvn -0.529263 0.592133 -0.607667\nvn -0.248856 0.610757 -0.751696\nvn -0.278796 0.623179 -0.730699\nvn -0.104557 0.609032 -0.786224\nvn -0.104557 0.609032 -0.786224\nvn -0.099036 0.601451 -0.792748\nvn -0.248856 0.610757 -0.751696\nvn -0.821278 0.421626 -0.384362\nvn -0.697936 0.507956 -0.504843\nvn -0.871987 0.315443 -0.374345\nvn -0.871987 0.315443 -0.374345\nvn -0.938231 0.123543 -0.323202\nvn -0.821278 0.421626 -0.384362\nvn -0.938231 0.123543 -0.323202\nvn -0.871987 0.315443 -0.374345\nvn -0.940199 0.004700 -0.340592\nvn -0.099036 0.601451 -0.792748\nvn -0.104557 0.609032 -0.786224\nvn -0.000000 0.601469 -0.798896\nvn -0.000000 0.601469 -0.798896\nvn -0.000000 0.599028 -0.800728\nvn -0.099036 0.601451 -0.792748\nvn -0.125920 0.000915 -0.992040\nvn -0.126930 -0.000580 -0.991912\nvn -0.176767 -0.004364 -0.984243\nvn -0.176767 -0.004364 -0.984243\nvn -0.177010 -0.002503 -0.984206\nvn -0.125920 0.000915 -0.992040\nvn -0.177010 -0.002503 -0.984206\nvn -0.176767 -0.004364 -0.984243\nvn -0.404103 -0.103612 -0.908827\nvn -0.404103 -0.103612 -0.908827\nvn -0.351248 -0.086858 -0.932245\nvn -0.177010 -0.002503 -0.984206\nvn -0.126930 -0.000580 -0.991912\nvn -0.125920 0.000915 -0.992040\nvn -0.063723 0.000458 -0.997968\nvn -0.063723 0.000458 -0.997968\nvn -0.065830 -0.000031 -0.997831\nvn -0.126930 -0.000580 -0.991912\nvn -0.351248 -0.086858 -0.932245\nvn -0.404103 -0.103612 -0.908827\nvn -0.519376 -0.196361 -0.831680\nvn -0.519376 -0.196361 -0.831680\nvn -0.494499 -0.207682 -0.844002\nvn -0.351248 -0.086858 -0.932245\nvn -0.065830 -0.000031 -0.997831\nvn -0.063723 0.000458 -0.997968\nvn 0.000000 -0.000244 -1.000000\nvn 0.000000 -0.000244 -1.000000\nvn 0.000000 -0.000427 -1.000000\nvn -0.065830 -0.000031 -0.997831\nvn -0.679972 -0.475340 -0.558292\nvn -0.624550 -0.504212 -0.596412\nvn -0.746474 -0.434078 -0.504333\nvn -0.746474 -0.434078 -0.504333\nvn -0.797307 -0.396258 -0.455281\nvn -0.679972 -0.475340 -0.558292\nvn 0.218520 -0.975832 0.000000\nvn 0.233103 -0.972452 0.000000\nvn 0.421258 -0.906941 0.000000\nvn 0.421258 -0.906941 0.000000\nvn 0.401813 -0.915722 -0.000366\nvn 0.218520 -0.975832 0.000000\nvn 0.401813 -0.915722 -0.000366\nvn 0.421258 -0.906941 0.000000\nvn 0.623120 -0.782126 -0.000610\nvn 0.623120 -0.782126 -0.000610\nvn 0.567173 -0.823566 -0.007294\nvn 0.401813 -0.915722 -0.000366\nvn 0.233103 -0.972452 0.000000\nvn 0.218520 -0.975832 0.000000\nvn 0.071720 -0.997425 0.000000\nvn 0.071720 -0.997425 0.000000\nvn 0.076449 -0.997074 0.000000\nvn 0.233103 -0.972452 0.000000\nvn 0.567173 -0.823566 -0.007294\nvn 0.623120 -0.782126 -0.000610\nvn 0.816153 -0.577826 -0.003327\nvn 0.816153 -0.577826 -0.003327\nvn 0.707953 -0.705908 -0.022279\nvn 0.567173 -0.823566 -0.007294\nvn 0.707953 -0.705908 -0.022279\nvn 0.816153 -0.577826 -0.003327\nvn 0.973610 -0.228219 -0.000427\nvn 0.973610 -0.228219 -0.000427\nvn 0.955912 -0.293652 0.000000\nvn 0.707953 -0.705908 -0.022279\nvn 0.076449 -0.997074 0.000000\nvn 0.071720 -0.997425 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.076449 -0.997074 0.000000\nvn 0.999999 -0.001312 0.000000\nvn 0.999999 -0.001312 0.000000\nvn 0.955912 -0.293652 0.000000\nvn 0.955912 -0.293652 0.000000\nvn 0.973610 -0.228219 -0.000427\nvn 0.999999 -0.001312 0.000000\nvn -0.760053 -0.162851 -0.629125\nvn -0.792400 0.026918 -0.609407\nvn -0.839812 0.004883 -0.542855\nvn -0.987679 0.144872 -0.059176\nvn -0.996898 -0.070743 -0.034486\nvn -0.996163 0.080203 -0.035036\nvn -0.996898 -0.070743 -0.034486\nvn -0.992449 -0.122656 0.000000\nvn -0.996163 0.080203 -0.035036\nvn -0.505889 0.862599 -0.000000\nvn -0.505889 0.862599 -0.000000\nvn -0.587130 0.809493 -0.000000\nvn -0.587130 0.809493 -0.000000\nvn -0.615786 0.787914 -0.000000\nvn -0.505889 0.862599 -0.000000\nvn -0.615786 0.787914 -0.000000\nvn -0.587130 0.809493 -0.000000\nvn -0.689950 0.723857 -0.000000\nvn -0.689950 0.723857 -0.000000\nvn -0.689950 0.723857 -0.000000\nvn -0.615786 0.787914 -0.000000\nvn 0.933619 0.358268 -0.000000\nvn 0.933599 0.358321 -0.000000\nvn 0.999656 -0.026216 0.000000\nvn 0.999656 -0.026216 0.000000\nvn 0.999655 -0.026246 0.000000\nvn 0.933619 0.358268 -0.000000\nvn 0.725404 0.688324 -0.000000\nvn 0.933599 0.358321 -0.000000\nvn 0.933619 0.358268 -0.000000\nvn 0.933619 0.358268 -0.000000\nvn 0.725433 0.688292 -0.000000\nvn 0.725404 0.688324 -0.000000\nvn 0.725404 0.688324 -0.000000\nvn 0.725433 0.688292 -0.000000\nvn 0.406823 0.913507 -0.000000\nvn 0.406823 0.913507 -0.000000\nvn 0.406761 0.913535 -0.000000\nvn 0.725404 0.688324 -0.000000\nvn 0.026216 0.999656 -0.000000\nvn 0.406761 0.913535 -0.000000\nvn 0.406823 0.913507 -0.000000\nvn 0.406823 0.913507 -0.000000\nvn 0.026246 0.999655 -0.000000\nvn 0.026216 0.999656 -0.000000\nvn 0.026216 0.999656 -0.000000\nvn 0.026246 0.999655 -0.000000\nvn -0.358268 0.933619 -0.000000\nvn -0.358268 0.933619 -0.000000\nvn -0.358294 0.933609 -0.000000\nvn 0.026216 0.999656 -0.000000\nvn -0.688292 0.725433 -0.000000\nvn -0.358294 0.933609 -0.000000\nvn -0.358268 0.933619 -0.000000\nvn -0.358268 0.933619 -0.000000\nvn -0.688292 0.725433 -0.000000\nvn -0.688292 0.725433 -0.000000\nvn -0.688292 0.725433 -0.000000\nvn -0.688292 0.725433 -0.000000\nvn -0.913507 0.406823 -0.000000\nvn -0.913507 0.406823 -0.000000\nvn -0.913507 0.406823 -0.000000\nvn -0.688292 0.725433 -0.000000\nvn -0.999655 0.026277 -0.000000\nvn -0.913507 0.406823 -0.000000\nvn -0.913507 0.406823 -0.000000\nvn -0.913507 0.406823 -0.000000\nvn -0.999655 0.026246 -0.000000\nvn -0.999655 0.026277 -0.000000\nvn -0.999655 0.026277 -0.000000\nvn -0.999655 0.026246 -0.000000\nvn -0.933619 -0.358268 0.000000\nvn -0.933619 -0.358268 0.000000\nvn -0.933633 -0.358231 0.000000\nvn -0.999655 0.026277 -0.000000\nvn -0.725478 -0.688245 0.000000\nvn -0.933633 -0.358231 0.000000\nvn -0.933619 -0.358268 0.000000\nvn -0.933619 -0.358268 0.000000\nvn -0.725433 -0.688292 0.000000\nvn -0.725478 -0.688245 0.000000\nvn -0.725478 -0.688245 0.000000\nvn -0.725433 -0.688292 0.000000\nvn -0.406823 -0.913507 0.000000\nvn -0.406823 -0.913507 0.000000\nvn -0.406849 -0.913496 0.000000\nvn -0.725478 -0.688245 0.000000\nvn -0.406823 -0.913507 0.000000\nvn -0.026277 -0.999655 0.000000\nvn -0.026277 -0.999655 0.000000\nvn -0.026277 -0.999655 0.000000\nvn -0.406849 -0.913496 0.000000\nvn -0.406823 -0.913507 0.000000\nvn -0.026277 -0.999655 0.000000\nvn -0.026277 -0.999655 0.000000\nvn 0.358268 -0.933619 0.000000\nvn 0.358268 -0.933619 0.000000\nvn 0.358268 -0.933619 0.000000\nvn -0.026277 -0.999655 0.000000\nvn 0.688292 -0.725433 0.000000\nvn 0.358268 -0.933619 0.000000\nvn 0.358268 -0.933619 0.000000\nvn 0.358268 -0.933619 0.000000\nvn 0.688292 -0.725433 0.000000\nvn 0.688292 -0.725433 0.000000\nvn 0.688292 -0.725433 0.000000\nvn 0.688292 -0.725433 0.000000\nvn 0.913507 -0.406823 0.000000\nvn 0.913507 -0.406823 0.000000\nvn 0.913523 -0.406787 0.000000\nvn 0.688292 -0.725433 0.000000\nvn 0.913523 -0.406787 0.000000\nvn 0.913507 -0.406823 0.000000\nvn 0.999655 -0.026246 0.000000\nvn 0.999655 -0.026246 0.000000\nvn 0.999656 -0.026216 0.000000\nvn 0.913523 -0.406787 0.000000\nvn 0.000153 -0.000214 1.000000\nvn 0.000244 -0.000183 1.000000\nvn 0.000244 -0.000214 1.000000\nvn 0.000244 -0.000214 1.000000\nvn 0.000122 -0.000275 1.000000\nvn 0.000153 -0.000214 1.000000\nvn 0.000061 -0.000183 1.000000\nvn 0.000153 -0.000214 1.000000\nvn 0.000122 -0.000275 1.000000\nvn 0.000122 -0.000275 1.000000\nvn 0.000031 -0.000214 1.000000\nvn 0.000061 -0.000183 1.000000\nvn 0.000031 -0.000091 1.000000\nvn 0.000061 -0.000183 1.000000\nvn 0.000031 -0.000214 1.000000\nvn 0.000031 -0.000214 1.000000\nvn 0.000000 -0.000091 1.000000\nvn 0.000031 -0.000091 1.000000\nvn 0.000061 0.000000 1.000000\nvn 0.000031 -0.000091 1.000000\nvn 0.000000 -0.000091 1.000000\nvn 0.000000 -0.000091 1.000000\nvn 0.000061 0.000000 1.000000\nvn 0.000061 0.000000 1.000000\nvn 0.000153 0.000000 1.000000\nvn 0.000061 0.000000 1.000000\nvn 0.000061 0.000000 1.000000\nvn 0.000061 0.000000 1.000000\nvn 0.000183 0.000000 1.000000\nvn 0.000153 0.000000 1.000000\nvn 0.000244 0.000000 1.000000\nvn 0.000153 0.000000 1.000000\nvn 0.000183 0.000000 1.000000\nvn 0.000183 0.000000 1.000000\nvn 0.000275 -0.000030 1.000000\nvn 0.000244 0.000000 1.000000\nvn 0.000305 -0.000091 1.000000\nvn 0.000244 0.000000 1.000000\nvn 0.000275 -0.000030 1.000000\nvn 0.000275 -0.000030 1.000000\nvn 0.000305 -0.000153 1.000000\nvn 0.000305 -0.000091 1.000000\nvn 0.000305 -0.000153 1.000000\nvn 0.000244 -0.000214 1.000000\nvn 0.000244 -0.000183 1.000000\nvn 0.000244 -0.000183 1.000000\nvn 0.000305 -0.000091 1.000000\nvn 0.000305 -0.000153 1.000000\nvn 0.000275 -0.000030 1.000000\nvn 0.000305 -0.000153 1.000000\nvn 0.000305 -0.000091 1.000000\nvn 0.000305 -0.000091 1.000000\nvn 0.000244 0.000000 1.000000\nvn 0.000275 -0.000030 1.000000\nvn 0.000183 0.000000 1.000000\nvn 0.000275 -0.000030 1.000000\nvn 0.000244 0.000000 1.000000\nvn 0.000244 0.000000 1.000000\nvn 0.000183 0.000000 1.000000\nvn 0.000183 0.000000 1.000000\nvn 0.000061 0.000000 1.000000\nvn 0.000183 0.000000 1.000000\nvn 0.000183 0.000000 1.000000\nvn 0.000183 0.000000 1.000000\nvn 0.000061 0.000000 1.000000\nvn 0.000061 0.000000 1.000000\nvn 0.000000 -0.000091 1.000000\nvn 0.000061 0.000000 1.000000\nvn 0.000061 0.000000 1.000000\nvn 0.000061 0.000000 1.000000\nvn 0.000000 -0.000091 1.000000\nvn 0.000000 -0.000091 1.000000\nvn 0.000031 -0.000214 1.000000\nvn 0.000000 -0.000091 1.000000\nvn 0.000000 -0.000091 1.000000\nvn 0.000000 -0.000091 1.000000\nvn 0.000061 -0.000183 1.000000\nvn 0.000031 -0.000214 1.000000\nvn 0.000122 -0.000244 1.000000\nvn 0.000031 -0.000214 1.000000\nvn 0.000061 -0.000183 1.000000\nvn 0.000061 -0.000183 1.000000\nvn 0.000153 -0.000214 1.000000\nvn 0.000122 -0.000244 1.000000\nvn 0.000214 -0.000244 1.000000\nvn 0.000122 -0.000244 1.000000\nvn 0.000153 -0.000214 1.000000\nvn 0.000153 -0.000214 1.000000\nvn 0.000244 -0.000214 1.000000\nvn 0.000214 -0.000244 1.000000\nvn 0.000305 -0.000153 1.000000\nvn 0.000214 -0.000244 1.000000\nvn 0.000244 -0.000214 1.000000\nvn 0.000244 -0.000214 1.000000\nvn 0.000305 -0.000091 1.000000\nvn 0.000305 -0.000153 1.000000\nvn 0.532187 0.504660 0.679776\nvn 0.532168 0.504701 0.679760\nvn 0.685802 0.263017 0.678600\nvn 0.685802 0.263017 0.678600\nvn 0.685818 0.263011 0.678585\nvn 0.532187 0.504660 0.679776\nvn 0.733203 -0.019380 0.679733\nvn 0.685818 0.263011 0.678585\nvn 0.685802 0.263017 0.678600\nvn 0.685802 0.263017 0.678600\nvn 0.733204 -0.019349 0.679734\nvn 0.733203 -0.019380 0.679733\nvn 0.733203 -0.019380 0.679733\nvn 0.733204 -0.019349 0.679734\nvn 0.670968 -0.298845 0.678597\nvn 0.670968 -0.298845 0.678597\nvn 0.670960 -0.298811 0.678620\nvn 0.733203 -0.019380 0.679733\nvn 0.504872 -0.532064 0.679714\nvn 0.670960 -0.298811 0.678620\nvn 0.670968 -0.298845 0.678597\nvn 0.670968 -0.298845 0.678597\nvn 0.504872 -0.532064 0.679714\nvn 0.504872 -0.532064 0.679714\nvn 0.504872 -0.532064 0.679714\nvn 0.504872 -0.532064 0.679714\nvn 0.263260 -0.685740 0.678568\nvn 0.263260 -0.685740 0.678568\nvn 0.263260 -0.685740 0.678568\nvn 0.504872 -0.532064 0.679714\nvn -0.019074 -0.733222 0.679722\nvn 0.263260 -0.685740 0.678568\nvn 0.263260 -0.685740 0.678568\nvn 0.263260 -0.685740 0.678568\nvn -0.019105 -0.733221 0.679722\nvn -0.019074 -0.733222 0.679722\nvn -0.019074 -0.733222 0.679722\nvn -0.019105 -0.733221 0.679722\nvn -0.298660 -0.671024 0.678623\nvn -0.298660 -0.671024 0.678623\nvn -0.298632 -0.671030 0.678629\nvn -0.019074 -0.733222 0.679722\nvn 0.532168 0.504701 0.679760\nvn 0.532187 0.504660 0.679776\nvn 0.298996 0.670903 0.678594\nvn 0.298996 0.670903 0.678594\nvn 0.298968 0.670910 0.678600\nvn 0.532168 0.504701 0.679760\nvn 0.298968 0.670910 0.678600\nvn 0.298996 0.670903 0.678594\nvn 0.019410 0.733159 0.679781\nvn 0.019410 0.733159 0.679781\nvn 0.019410 0.733159 0.679781\nvn 0.298968 0.670910 0.678600\nvn -0.263079 0.685775 0.678603\nvn 0.019410 0.733159 0.679781\nvn 0.019410 0.733159 0.679781\nvn 0.019410 0.733159 0.679781\nvn -0.263045 0.685797 0.678594\nvn -0.263079 0.685775 0.678603\nvn -0.263079 0.685775 0.678603\nvn -0.263045 0.685797 0.678594\nvn -0.504785 0.532100 0.679751\nvn -0.504785 0.532100 0.679751\nvn -0.504819 0.532103 0.679724\nvn -0.263079 0.685775 0.678603\nvn -0.670958 0.298749 0.678649\nvn -0.504819 0.532103 0.679724\nvn -0.504785 0.532100 0.679751\nvn -0.504785 0.532100 0.679751\nvn -0.670941 0.298755 0.678663\nvn -0.670958 0.298749 0.678649\nvn -0.670958 0.298749 0.678649\nvn -0.670941 0.298755 0.678663\nvn -0.733192 0.019135 0.679753\nvn -0.733192 0.019135 0.679753\nvn -0.733221 0.019135 0.679721\nvn -0.670958 0.298749 0.678649\nvn -0.685674 -0.263289 0.678624\nvn -0.733221 0.019135 0.679721\nvn -0.733192 0.019135 0.679753\nvn -0.733192 0.019135 0.679753\nvn -0.685674 -0.263289 0.678624\nvn -0.685674 -0.263289 0.678624\nvn -0.685674 -0.263289 0.678624\nvn -0.685674 -0.263289 0.678624\nvn -0.531919 -0.504971 0.679755\nvn -0.531919 -0.504971 0.679755\nvn -0.531960 -0.504951 0.679738\nvn -0.685674 -0.263289 0.678624\nvn -0.298660 -0.671024 0.678623\nvn -0.531960 -0.504951 0.679738\nvn -0.531919 -0.504971 0.679755\nvn -0.531919 -0.504971 0.679755\nvn -0.298632 -0.671030 0.678629\nvn -0.298660 -0.671024 0.678623\nvn 0.933574 0.358262 0.009430\nvn 0.933549 0.358325 0.009430\nvn 0.999612 -0.026215 0.009461\nvn 0.999612 -0.026215 0.009461\nvn 0.999611 -0.026246 0.009461\nvn 0.933574 0.358262 0.009430\nvn 0.725358 0.688307 0.009461\nvn 0.933549 0.358325 0.009430\nvn 0.933574 0.358262 0.009430\nvn 0.933574 0.358262 0.009430\nvn 0.725417 0.688245 0.009461\nvn 0.725358 0.688307 0.009461\nvn 0.725358 0.688307 0.009461\nvn 0.725417 0.688245 0.009461\nvn 0.406791 0.913473 0.009430\nvn 0.406791 0.913473 0.009430\nvn 0.406754 0.913489 0.009430\nvn 0.725358 0.688307 0.009461\nvn 0.026215 0.999612 0.009461\nvn 0.406754 0.913489 0.009430\nvn 0.406791 0.913473 0.009430\nvn 0.406791 0.913473 0.009430\nvn 0.026246 0.999611 0.009461\nvn 0.026215 0.999612 0.009461\nvn 0.026215 0.999612 0.009461\nvn 0.026246 0.999611 0.009461\nvn -0.358262 0.933574 0.009430\nvn -0.358262 0.933574 0.009430\nvn -0.358288 0.933563 0.009430\nvn 0.026215 0.999612 0.009461\nvn -0.688261 0.725402 0.009461\nvn -0.358288 0.933563 0.009430\nvn -0.358262 0.933574 0.009430\nvn -0.358262 0.933574 0.009430\nvn -0.688261 0.725402 0.009430\nvn -0.688261 0.725402 0.009461\nvn -0.688261 0.725402 0.009461\nvn -0.688261 0.725402 0.009430\nvn -0.913473 0.406791 0.009430\nvn -0.913473 0.406791 0.009430\nvn -0.913461 0.406817 0.009430\nvn -0.688261 0.725402 0.009461\nvn -0.999610 0.026276 0.009461\nvn -0.913461 0.406817 0.009430\nvn -0.913473 0.406791 0.009430\nvn -0.913473 0.406791 0.009430\nvn -0.999611 0.026246 0.009461\nvn -0.999610 0.026276 0.009461\nvn -0.999610 0.026276 0.009461\nvn -0.999611 0.026246 0.009461\nvn -0.933574 -0.358262 0.009430\nvn -0.933574 -0.358262 0.009430\nvn -0.933594 -0.358209 0.009431\nvn -0.999610 0.026276 0.009461\nvn -0.725447 -0.688213 0.009461\nvn -0.933594 -0.358209 0.009431\nvn -0.933574 -0.358262 0.009430\nvn -0.933574 -0.358262 0.009430\nvn -0.725402 -0.688261 0.009461\nvn -0.725447 -0.688213 0.009461\nvn -0.725447 -0.688213 0.009461\nvn -0.725402 -0.688261 0.009461\nvn -0.406817 -0.913461 0.009430\nvn -0.406817 -0.913461 0.009430\nvn -0.406853 -0.913445 0.009431\nvn -0.725447 -0.688213 0.009461\nvn -0.026276 -0.999610 0.009461\nvn -0.406853 -0.913445 0.009431\nvn -0.406817 -0.913461 0.009430\nvn -0.406817 -0.913461 0.009430\nvn -0.026246 -0.999611 0.009461\nvn -0.026276 -0.999610 0.009461\nvn -0.026276 -0.999610 0.009461\nvn -0.026246 -0.999611 0.009461\nvn 0.358262 -0.933574 0.009430\nvn 0.358262 -0.933574 0.009430\nvn 0.358262 -0.933574 0.009430\nvn -0.026276 -0.999610 0.009461\nvn 0.688261 -0.725402 0.009461\nvn 0.358262 -0.933574 0.009430\nvn 0.358262 -0.933574 0.009430\nvn 0.358262 -0.933574 0.009430\nvn 0.688261 -0.725402 0.009461\nvn 0.688261 -0.725402 0.009461\nvn 0.688261 -0.725402 0.009461\nvn 0.688261 -0.725402 0.009461\nvn 0.913473 -0.406791 0.009430\nvn 0.913473 -0.406791 0.009430\nvn 0.913473 -0.406791 0.009430\nvn 0.688261 -0.725402 0.009461\nvn 0.913473 -0.406791 0.009430\nvn 0.913473 -0.406791 0.009430\nvn 0.999611 -0.026246 0.009461\nvn 0.999611 -0.026246 0.009461\nvn 0.999612 -0.026215 0.009461\nvn 0.913473 -0.406791 0.009430\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.440304 -0.417842 0.794695\nvn -0.440359 -0.417805 0.794684\nvn -0.567261 -0.217847 0.794203\nvn -0.247484 -0.556221 0.793328\nvn -0.440359 -0.417805 0.794684\nvn -0.440304 -0.417842 0.794695\nvn -0.567261 -0.217847 0.794203\nvn -0.567237 -0.217879 0.794211\nvn -0.440304 -0.417842 0.794695\nvn -0.605841 0.015870 0.795428\nvn -0.605807 0.015900 0.795453\nvn -0.554513 0.246905 0.794703\nvn -0.567261 -0.217847 0.794203\nvn -0.605807 0.015900 0.795453\nvn -0.605841 0.015870 0.795428\nvn -0.605841 0.015870 0.795428\nvn -0.567237 -0.217879 0.794211\nvn -0.567261 -0.217847 0.794203\nvn -0.554513 0.246905 0.794703\nvn -0.554504 0.246870 0.794721\nvn -0.605841 0.015870 0.795428\nvn -0.440304 -0.417842 0.794695\nvn -0.247451 -0.556246 0.793321\nvn -0.247484 -0.556221 0.793328\nvn -0.554513 0.246905 0.794703\nvn -0.416924 0.439416 0.795668\nvn -0.416918 0.439441 0.795657\nvn -0.416918 0.439441 0.795657\nvn -0.554504 0.246870 0.794721\nvn -0.554513 0.246905 0.794703\nvn -0.416918 0.439441 0.795657\nvn -0.416924 0.439416 0.795668\nvn -0.217421 0.566901 0.794576\nvn -0.217421 0.566901 0.794576\nvn -0.217416 0.566887 0.794588\nvn -0.416918 0.439441 0.795657\nvn 0.015992 0.606170 0.795174\nvn -0.217416 0.566887 0.794588\nvn -0.217421 0.566901 0.794576\nvn -0.217421 0.566901 0.794576\nvn 0.015900 0.606171 0.795176\nvn 0.015992 0.606170 0.795174\nvn 0.015992 0.606170 0.795174\nvn 0.015900 0.606171 0.795176\nvn 0.247452 0.555456 0.793874\nvn 0.247452 0.555456 0.793874\nvn 0.247544 0.555547 0.793782\nvn 0.015992 0.606170 0.795174\nvn 0.247544 0.555547 0.793782\nvn 0.247452 0.555456 0.793874\nvn 0.440791 0.418085 0.794297\nvn 0.440791 0.418085 0.794297\nvn 0.440916 0.418118 0.794210\nvn 0.247544 0.555547 0.793782\nvn 0.440916 0.418118 0.794210\nvn 0.440791 0.418085 0.794297\nvn 0.568883 0.218153 0.792957\nvn 0.568883 0.218153 0.792957\nvn 0.568887 0.218124 0.792963\nvn 0.440916 0.418118 0.794210\nvn 0.608279 -0.016022 0.793562\nvn 0.568887 0.218124 0.792963\nvn 0.568883 0.218153 0.792957\nvn 0.568883 0.218153 0.792957\nvn 0.608314 -0.015961 0.793536\nvn 0.608279 -0.016022 0.793562\nvn 0.608279 -0.016022 0.793562\nvn 0.608314 -0.015961 0.793536\nvn 0.557189 -0.248182 0.792431\nvn 0.557189 -0.248182 0.792431\nvn 0.557223 -0.248184 0.792406\nvn 0.608279 -0.016022 0.793562\nvn 0.419057 -0.441641 0.793312\nvn 0.557223 -0.248184 0.792406\nvn 0.557189 -0.248182 0.792431\nvn 0.557189 -0.248182 0.792431\nvn 0.419062 -0.441676 0.793290\nvn 0.419057 -0.441641 0.793312\nvn 0.419057 -0.441641 0.793312\nvn 0.419062 -0.441676 0.793290\nvn 0.218549 -0.569247 0.792587\nvn 0.218549 -0.569247 0.792587\nvn 0.218578 -0.569243 0.792582\nvn 0.419057 -0.441641 0.793312\nvn -0.015900 -0.607936 0.793827\nvn 0.218578 -0.569243 0.792582\nvn 0.218549 -0.569247 0.792587\nvn 0.218549 -0.569247 0.792587\nvn -0.015962 -0.607950 0.793815\nvn -0.015900 -0.607936 0.793827\nvn -0.015900 -0.607936 0.793827\nvn -0.015962 -0.607950 0.793815\nvn -0.247484 -0.556221 0.793328\nvn -0.247484 -0.556221 0.793328\nvn -0.247451 -0.556246 0.793321\nvn -0.015900 -0.607936 0.793827\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.707091 -0.707122 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707091 -0.707122 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.707092 0.707122 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707092 0.707122 -0.000000\nvn -0.707092 0.707122 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.707092 0.707122 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn 0.382681 0.923880 0.000030\nvn 0.382681 0.923880 0.000061\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 0.000030\nvn 0.707091 0.707122 -0.000000\nvn 0.382681 0.923880 0.000061\nvn 0.382681 0.923880 0.000030\nvn 0.382681 0.923880 0.000030\nvn 0.707091 0.707122 -0.000000\nvn 0.707091 0.707122 -0.000000\nvn 0.707091 0.707122 -0.000000\nvn 0.707091 0.707122 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.707091 0.707122 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.382655 -0.923891 0.000000\nvn -0.382655 -0.923891 0.000000\nvn -0.382644 -0.923896 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.382655 -0.923891 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.382644 -0.923896 0.000000\nvn -0.382655 -0.923891 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.923891 -0.382656 0.000000\nvn -0.923891 -0.382656 0.000000\nvn -0.923891 -0.382656 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923891 -0.382656 0.000000\nvn -0.923891 -0.382656 0.000000\nvn -0.923891 -0.382656 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.707092 0.707122 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707092 0.707122 -0.000000\nvn -0.382682 0.923880 0.000061\nvn -0.382682 0.923880 0.000061\nvn -0.382682 0.923880 0.000061\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 0.000061\nvn -0.382682 0.923880 0.000061\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 0.000061\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.707122 -0.707092 0.000000\nvn -0.707091 -0.707122 0.000000\nvn -0.707091 -0.707122 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.707091 -0.707122 0.000000\nvn -0.707122 -0.707092 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.707091 -0.707122 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.382655 -0.923891 0.000000\nvn -0.382655 -0.923891 0.000000\nvn -0.382681 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.382655 -0.923891 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707091 -0.707122 0.000000\nvn -0.707091 -0.707122 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382655 -0.923891 0.000000\nvn -0.707091 -0.707122 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.707091 -0.707122 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.707091 0.707122 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707091 0.707122 -0.000000\nvn 0.707091 0.707122 -0.000000\nvn 0.707091 0.707122 -0.000000\nvn 0.707091 0.707122 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.707091 0.707122 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923896 -0.382644 0.000000\nvn 0.923896 -0.382644 0.000000\nvn 0.923896 -0.382644 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.923896 -0.382644 0.000000\nvn 0.923896 -0.382644 0.000000\nvn 0.923896 -0.382644 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.382656 -0.923891 0.000000\nvn 0.382656 -0.923891 0.000000\nvn 0.382656 -0.923891 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.000000 -1.000000 -0.000244\nvn 0.382656 -0.923891 0.000000\nvn 0.382656 -0.923891 0.000000\nvn 0.382656 -0.923891 0.000000\nvn 0.000000 -1.000000 -0.000244\nvn 0.000000 -1.000000 -0.000244\nvn 0.000000 -1.000000 -0.000244\nvn 0.000000 -1.000000 -0.000244\nvn -0.382655 -0.923891 0.000000\nvn -0.382655 -0.923891 0.000000\nvn -0.382655 -0.923891 0.000000\nvn 0.000000 -1.000000 -0.000244\nvn -0.382655 -0.923891 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.382655 -0.923891 0.000000\nvn -0.382655 -0.923891 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.923895 -0.382645 -0.000214\nvn -0.923895 -0.382645 -0.000214\nvn -0.923880 -0.382682 -0.000244\nvn -0.707107 -0.707107 0.000000\nvn -1.000000 -0.000031 0.000000\nvn -0.923880 -0.382682 -0.000244\nvn -0.923895 -0.382645 -0.000214\nvn -0.923895 -0.382645 -0.000214\nvn -1.000000 0.000030 -0.000000\nvn -1.000000 -0.000031 0.000000\nvn -1.000000 -0.000031 0.000000\nvn -1.000000 0.000030 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000031 0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 0.502557 0.864544\nvn 0.192756 0.465442 0.863834\nvn 0.192762 0.465454 0.863826\nvn 0.192762 0.465454 0.863826\nvn -0.000000 0.502557 0.864544\nvn -0.000000 0.502557 0.864544\nvn 0.355367 0.355337 0.864552\nvn 0.192762 0.465454 0.863826\nvn 0.192756 0.465442 0.863834\nvn 0.192756 0.465442 0.863834\nvn 0.355367 0.355337 0.864552\nvn 0.355367 0.355337 0.864552\nvn 0.465415 0.192789 0.863841\nvn 0.355367 0.355337 0.864552\nvn 0.355367 0.355337 0.864552\nvn 0.355367 0.355337 0.864552\nvn 0.465425 0.192823 0.863828\nvn 0.465415 0.192789 0.863841\nvn 0.502593 0.000000 0.864523\nvn 0.465415 0.192789 0.863841\nvn 0.465425 0.192823 0.863828\nvn 0.465425 0.192823 0.863828\nvn 0.502593 0.000000 0.864523\nvn 0.502593 0.000000 0.864523\nvn 0.465451 -0.192791 0.863821\nvn 0.502593 0.000000 0.864523\nvn 0.502593 0.000000 0.864523\nvn 0.502593 0.000000 0.864523\nvn 0.465451 -0.192791 0.863821\nvn 0.465451 -0.192791 0.863821\nvn 0.355396 -0.355395 0.864516\nvn 0.465451 -0.192791 0.863821\nvn 0.465451 -0.192791 0.863821\nvn 0.465451 -0.192791 0.863821\nvn 0.355396 -0.355395 0.864516\nvn 0.355396 -0.355395 0.864516\nvn 0.192762 -0.465394 0.863858\nvn 0.355396 -0.355395 0.864516\nvn 0.355396 -0.355395 0.864516\nvn 0.355396 -0.355395 0.864516\nvn 0.192728 -0.465384 0.863871\nvn 0.192762 -0.465394 0.863858\nvn 0.000000 -0.502521 0.864565\nvn 0.192762 -0.465394 0.863858\nvn 0.192728 -0.465384 0.863871\nvn 0.192728 -0.465384 0.863871\nvn 0.000000 -0.502521 0.864565\nvn 0.000000 -0.502521 0.864565\nvn -0.192757 -0.465382 0.863866\nvn 0.000000 -0.502521 0.864565\nvn 0.000000 -0.502521 0.864565\nvn 0.000000 -0.502521 0.864565\nvn -0.192762 -0.465394 0.863858\nvn -0.192757 -0.465382 0.863866\nvn -0.192762 -0.465394 0.863858\nvn -0.355392 -0.355422 0.864507\nvn -0.355395 -0.355396 0.864516\nvn -0.355395 -0.355396 0.864516\nvn -0.192757 -0.465382 0.863866\nvn -0.192762 -0.465394 0.863858\nvn -0.465451 -0.192791 0.863821\nvn -0.355395 -0.355396 0.864516\nvn -0.355392 -0.355422 0.864507\nvn -0.355392 -0.355422 0.864507\nvn -0.465451 -0.192791 0.863821\nvn -0.465451 -0.192791 0.863821\nvn -0.502593 -0.000000 0.864523\nvn -0.465451 -0.192791 0.863821\nvn -0.465451 -0.192791 0.863821\nvn -0.465451 -0.192791 0.863821\nvn -0.502593 -0.000000 0.864523\nvn -0.502593 -0.000000 0.864523\nvn -0.465451 0.192791 0.863821\nvn -0.502593 -0.000000 0.864523\nvn -0.502593 -0.000000 0.864523\nvn -0.502593 -0.000000 0.864523\nvn -0.465451 0.192791 0.863821\nvn -0.465451 0.192791 0.863821\nvn -0.355363 0.355363 0.864542\nvn -0.465451 0.192791 0.863821\nvn -0.465451 0.192791 0.863821\nvn -0.465451 0.192791 0.863821\nvn -0.355363 0.355363 0.864542\nvn -0.355363 0.355363 0.864542\nvn -0.192794 0.465427 0.863833\nvn -0.355363 0.355363 0.864542\nvn -0.355363 0.355363 0.864542\nvn -0.355363 0.355363 0.864542\nvn -0.192791 0.465451 0.863821\nvn -0.192794 0.465427 0.863833\nvn -0.000000 0.502557 0.864544\nvn -0.192794 0.465427 0.863833\nvn -0.192791 0.465451 0.863821\nvn -0.192791 0.465451 0.863821\nvn -0.000000 0.502557 0.864544\nvn -0.000000 0.502557 0.864544\nvn 0.355340 0.355341 -0.864561\nvn 0.192757 0.465382 -0.863866\nvn 0.192757 0.465382 -0.863866\nvn 0.192757 0.465382 -0.863866\nvn 0.355340 0.355341 -0.864561\nvn 0.355340 0.355341 -0.864561\nvn -0.000000 0.502557 -0.864544\nvn 0.192757 0.465382 -0.863866\nvn 0.192757 0.465382 -0.863866\nvn 0.192757 0.465382 -0.863866\nvn -0.000000 0.502557 -0.864544\nvn -0.000000 0.502557 -0.864544\nvn -0.192757 0.465382 -0.863866\nvn -0.000000 0.502557 -0.864544\nvn -0.000000 0.502557 -0.864544\nvn -0.000000 0.502557 -0.864544\nvn -0.192757 0.465382 -0.863866\nvn -0.192757 0.465382 -0.863866\nvn -0.355363 0.355363 -0.864543\nvn -0.192757 0.465382 -0.863866\nvn -0.192757 0.465382 -0.863866\nvn -0.192757 0.465382 -0.863866\nvn -0.355367 0.355337 -0.864552\nvn -0.355363 0.355363 -0.864543\nvn -0.465382 0.192757 -0.863866\nvn -0.355363 0.355363 -0.864543\nvn -0.355367 0.355337 -0.864552\nvn -0.355367 0.355337 -0.864552\nvn -0.465382 0.192757 -0.863866\nvn -0.465382 0.192757 -0.863866\nvn -0.502521 -0.000000 -0.864565\nvn -0.465382 0.192757 -0.863866\nvn -0.465382 0.192757 -0.863866\nvn -0.465382 0.192757 -0.863866\nvn -0.502521 -0.000000 -0.864565\nvn -0.502521 -0.000000 -0.864565\nvn -0.465358 -0.192760 -0.863878\nvn -0.502521 -0.000000 -0.864565\nvn -0.502521 -0.000000 -0.864565\nvn -0.502521 -0.000000 -0.864565\nvn -0.465384 -0.192728 -0.863871\nvn -0.465358 -0.192760 -0.863878\nvn -0.355337 -0.355367 -0.864552\nvn -0.465358 -0.192760 -0.863878\nvn -0.465384 -0.192728 -0.863871\nvn -0.465384 -0.192728 -0.863871\nvn -0.355363 -0.355364 -0.864542\nvn -0.355337 -0.355367 -0.864552\nvn -0.192757 -0.465382 -0.863866\nvn -0.355337 -0.355367 -0.864552\nvn -0.355363 -0.355364 -0.864542\nvn -0.355363 -0.355364 -0.864542\nvn -0.192757 -0.465382 -0.863866\nvn -0.192757 -0.465382 -0.863866\nvn -0.192757 -0.465382 -0.863866\nvn 0.000000 -0.502521 -0.864565\nvn 0.000000 -0.502521 -0.864565\nvn 0.000000 -0.502521 -0.864565\nvn -0.192757 -0.465382 -0.863866\nvn -0.192757 -0.465382 -0.863866\nvn 0.192757 -0.465382 -0.863866\nvn 0.000000 -0.502521 -0.864565\nvn 0.000000 -0.502521 -0.864565\nvn 0.000000 -0.502521 -0.864565\nvn 0.192757 -0.465382 -0.863866\nvn 0.192757 -0.465382 -0.863866\nvn 0.355363 -0.355363 -0.864542\nvn 0.192757 -0.465382 -0.863866\nvn 0.192757 -0.465382 -0.863866\nvn 0.192757 -0.465382 -0.863866\nvn 0.355363 -0.355363 -0.864542\nvn 0.355363 -0.355363 -0.864542\nvn 0.465382 -0.192757 -0.863866\nvn 0.355363 -0.355363 -0.864542\nvn 0.355363 -0.355363 -0.864542\nvn 0.355363 -0.355363 -0.864542\nvn 0.465382 -0.192757 -0.863866\nvn 0.465382 -0.192757 -0.863866\nvn 0.502521 0.000000 -0.864565\nvn 0.465382 -0.192757 -0.863866\nvn 0.465382 -0.192757 -0.863866\nvn 0.465382 -0.192757 -0.863866\nvn 0.502521 0.000000 -0.864565\nvn 0.502521 0.000000 -0.864565\nvn 0.465382 0.192757 -0.863866\nvn 0.502521 0.000000 -0.864565\nvn 0.502521 0.000000 -0.864565\nvn 0.502521 0.000000 -0.864565\nvn 0.465382 0.192757 -0.863866\nvn 0.465382 0.192757 -0.863866\nvn 0.355340 0.355341 -0.864561\nvn 0.465382 0.192757 -0.863866\nvn 0.465382 0.192757 -0.863866\nvn 0.465382 0.192757 -0.863866\nvn 0.355340 0.355341 -0.864561\nvn 0.355340 0.355341 -0.864561\nvn -0.000000 0.495994 0.868326\nvn 0.190256 0.459374 0.867628\nvn 0.190256 0.459374 0.867628\nvn 0.190256 0.459374 0.867628\nvn -0.000000 0.495994 0.868326\nvn -0.000000 0.495994 0.868326\nvn 0.350691 0.350691 0.868350\nvn 0.190256 0.459374 0.867628\nvn 0.190256 0.459374 0.867628\nvn 0.190256 0.459374 0.867628\nvn 0.350691 0.350691 0.868350\nvn 0.350691 0.350691 0.868350\nvn 0.459316 0.190227 0.867665\nvn 0.350691 0.350691 0.868350\nvn 0.350691 0.350691 0.868350\nvn 0.350691 0.350691 0.868350\nvn 0.459313 0.190257 0.867660\nvn 0.459316 0.190227 0.867665\nvn 0.495994 0.000000 0.868326\nvn 0.459316 0.190227 0.867665\nvn 0.459313 0.190257 0.867660\nvn 0.459313 0.190257 0.867660\nvn 0.495994 0.000000 0.868326\nvn 0.495994 0.000000 0.868326\nvn 0.459316 -0.190227 0.867665\nvn 0.495994 0.000000 0.868326\nvn 0.495994 0.000000 0.868326\nvn 0.495994 0.000000 0.868326\nvn 0.459316 -0.190227 0.867665\nvn 0.459316 -0.190227 0.867665\nvn 0.350691 -0.350691 0.868350\nvn 0.459316 -0.190227 0.867665\nvn 0.459316 -0.190227 0.867665\nvn 0.459316 -0.190227 0.867665\nvn 0.350664 -0.350695 0.868359\nvn 0.350691 -0.350691 0.868350\nvn 0.190257 -0.459313 0.867660\nvn 0.350691 -0.350691 0.868350\nvn 0.350664 -0.350695 0.868359\nvn 0.350664 -0.350695 0.868359\nvn 0.190257 -0.459313 0.867660\nvn 0.190257 -0.459313 0.867660\nvn 0.000000 -0.495935 0.868360\nvn 0.190257 -0.459313 0.867660\nvn 0.190257 -0.459313 0.867660\nvn 0.190257 -0.459313 0.867660\nvn 0.000000 -0.495935 0.868360\nvn 0.000000 -0.495935 0.868360\nvn -0.190227 -0.459316 0.867665\nvn 0.000000 -0.495935 0.868360\nvn 0.000000 -0.495935 0.868360\nvn 0.000000 -0.495935 0.868360\nvn -0.190227 -0.459316 0.867665\nvn -0.190227 -0.459316 0.867665\nvn -0.190227 -0.459316 0.867665\nvn -0.350664 -0.350695 0.868359\nvn -0.350695 -0.350664 0.868359\nvn -0.350695 -0.350664 0.868359\nvn -0.190227 -0.459316 0.867665\nvn -0.190227 -0.459316 0.867665\nvn -0.459316 -0.190227 0.867665\nvn -0.350695 -0.350664 0.868359\nvn -0.350664 -0.350695 0.868359\nvn -0.350664 -0.350695 0.868359\nvn -0.459313 -0.190257 0.867660\nvn -0.459316 -0.190227 0.867665\nvn -0.495994 -0.000000 0.868326\nvn -0.459316 -0.190227 0.867665\nvn -0.459313 -0.190257 0.867660\nvn -0.459313 -0.190257 0.867660\nvn -0.495994 -0.000000 0.868326\nvn -0.495994 -0.000000 0.868326\nvn -0.459316 0.190227 0.867665\nvn -0.495994 -0.000000 0.868326\nvn -0.495994 -0.000000 0.868326\nvn -0.495994 -0.000000 0.868326\nvn -0.459316 0.190227 0.867665\nvn -0.459316 0.190227 0.867665\nvn -0.350697 0.350727 0.868333\nvn -0.459316 0.190227 0.867665\nvn -0.459316 0.190227 0.867665\nvn -0.459316 0.190227 0.867665\nvn -0.350723 0.350723 0.868324\nvn -0.350697 0.350727 0.868333\nvn -0.190256 0.459374 0.867628\nvn -0.350697 0.350727 0.868333\nvn -0.350723 0.350723 0.868324\nvn -0.350723 0.350723 0.868324\nvn -0.190256 0.459374 0.867628\nvn -0.190256 0.459374 0.867628\nvn -0.000000 0.495994 0.868326\nvn -0.190256 0.459374 0.867628\nvn -0.190256 0.459374 0.867628\nvn -0.190256 0.459374 0.867628\nvn -0.000000 0.495994 0.868326\nvn -0.000000 0.495994 0.868326\nvn 0.350664 0.350695 -0.868359\nvn 0.190285 0.459371 -0.867623\nvn 0.190288 0.459347 -0.867635\nvn 0.190288 0.459347 -0.867635\nvn 0.350691 0.350691 -0.868350\nvn 0.350664 0.350695 -0.868359\nvn -0.000000 0.495994 -0.868326\nvn 0.190288 0.459347 -0.867635\nvn 0.190285 0.459371 -0.867623\nvn 0.190285 0.459371 -0.867623\nvn -0.000000 0.495994 -0.868326\nvn -0.000000 0.495994 -0.868326\nvn -0.190256 0.459374 -0.867628\nvn -0.000000 0.495994 -0.868326\nvn -0.000000 0.495994 -0.868326\nvn -0.000000 0.495994 -0.868326\nvn -0.190256 0.459374 -0.867628\nvn -0.190256 0.459374 -0.867628\nvn -0.350723 0.350723 -0.868324\nvn -0.190256 0.459374 -0.867628\nvn -0.190256 0.459374 -0.867628\nvn -0.190256 0.459374 -0.867628\nvn -0.350723 0.350723 -0.868324\nvn -0.350723 0.350723 -0.868324\nvn -0.459316 0.190227 -0.867665\nvn -0.350723 0.350723 -0.868324\nvn -0.350723 0.350723 -0.868324\nvn -0.350723 0.350723 -0.868324\nvn -0.459316 0.190227 -0.867665\nvn -0.459316 0.190227 -0.867665\nvn -0.495994 -0.000000 -0.868326\nvn -0.459316 0.190227 -0.867665\nvn -0.459316 0.190227 -0.867665\nvn -0.459316 0.190227 -0.867665\nvn -0.495994 -0.000000 -0.868326\nvn -0.495994 -0.000000 -0.868326\nvn -0.459374 -0.190256 -0.867628\nvn -0.495994 -0.000000 -0.868326\nvn -0.495994 -0.000000 -0.868326\nvn -0.495994 -0.000000 -0.868326\nvn -0.459374 -0.190256 -0.867628\nvn -0.459374 -0.190256 -0.867628\nvn -0.350691 -0.350691 -0.868350\nvn -0.459374 -0.190256 -0.867628\nvn -0.459374 -0.190256 -0.867628\nvn -0.459374 -0.190256 -0.867628\nvn -0.350664 -0.350695 -0.868359\nvn -0.350691 -0.350691 -0.868350\nvn -0.190227 -0.459316 -0.867665\nvn -0.350691 -0.350691 -0.868350\nvn -0.350664 -0.350695 -0.868359\nvn -0.350664 -0.350695 -0.868359\nvn -0.190227 -0.459316 -0.867665\nvn -0.190227 -0.459316 -0.867665\nvn -0.190227 -0.459316 -0.867665\nvn 0.000000 -0.496054 -0.868292\nvn 0.000000 -0.496054 -0.868292\nvn 0.000000 -0.496054 -0.868292\nvn -0.190227 -0.459316 -0.867665\nvn -0.190227 -0.459316 -0.867665\nvn 0.190257 -0.459313 -0.867660\nvn 0.000000 -0.496054 -0.868292\nvn 0.000000 -0.496054 -0.868292\nvn 0.000000 -0.496054 -0.868292\nvn 0.190257 -0.459313 -0.867660\nvn 0.190257 -0.459313 -0.867660\nvn 0.350695 -0.350664 -0.868359\nvn 0.190257 -0.459313 -0.867660\nvn 0.190257 -0.459313 -0.867660\nvn 0.190257 -0.459313 -0.867660\nvn 0.350691 -0.350691 -0.868350\nvn 0.350695 -0.350664 -0.868359\nvn 0.459316 -0.190227 -0.867665\nvn 0.350695 -0.350664 -0.868359\nvn 0.350691 -0.350691 -0.868350\nvn 0.350691 -0.350691 -0.868350\nvn 0.459316 -0.190227 -0.867665\nvn 0.459316 -0.190227 -0.867665\nvn 0.495994 0.000000 -0.868326\nvn 0.459316 -0.190227 -0.867665\nvn 0.459316 -0.190227 -0.867665\nvn 0.459316 -0.190227 -0.867665\nvn 0.495994 0.000000 -0.868326\nvn 0.495994 0.000000 -0.868326\nvn 0.459316 0.190227 -0.867665\nvn 0.495994 0.000000 -0.868326\nvn 0.495994 0.000000 -0.868326\nvn 0.495994 0.000000 -0.868326\nvn 0.459316 0.190227 -0.867665\nvn 0.459316 0.190227 -0.867665\nvn 0.350691 0.350691 -0.868350\nvn 0.459316 0.190227 -0.867665\nvn 0.459316 0.190227 -0.867665\nvn 0.459316 0.190227 -0.867665\nvn 0.350664 0.350695 -0.868359\nvn 0.350691 0.350691 -0.868350\nvn -0.000000 0.815663 0.578527\nvn -0.000000 0.815674 0.578512\nvn 0.312458 0.754380 0.577306\nvn 0.312458 0.754380 0.577306\nvn 0.312458 0.754380 0.577306\nvn -0.000000 0.815663 0.578527\nvn 0.576759 0.576760 0.578530\nvn 0.312458 0.754380 0.577306\nvn 0.312458 0.754380 0.577306\nvn 0.312458 0.754380 0.577306\nvn 0.576759 0.576760 0.578530\nvn 0.576759 0.576760 0.578530\nvn 0.576759 0.576760 0.578530\nvn 0.576759 0.576760 0.578530\nvn 0.754353 0.312460 0.577339\nvn 0.754353 0.312460 0.577339\nvn 0.754353 0.312460 0.577339\nvn 0.576759 0.576760 0.578530\nvn 0.815649 0.000000 0.578547\nvn 0.754353 0.312460 0.577339\nvn 0.754353 0.312460 0.577339\nvn 0.754353 0.312460 0.577339\nvn 0.815663 0.000000 0.578527\nvn 0.815649 0.000000 0.578547\nvn 0.815649 0.000000 0.578547\nvn 0.815663 0.000000 0.578527\nvn 0.754353 -0.312459 0.577339\nvn 0.754353 -0.312459 0.577339\nvn 0.754353 -0.312459 0.577339\nvn 0.815649 0.000000 0.578547\nvn 0.576760 -0.576759 0.578530\nvn 0.754353 -0.312459 0.577339\nvn 0.754353 -0.312459 0.577339\nvn 0.754353 -0.312459 0.577339\nvn 0.576760 -0.576759 0.578530\nvn 0.576760 -0.576759 0.578530\nvn 0.576760 -0.576759 0.578530\nvn 0.576760 -0.576759 0.578530\nvn 0.312453 -0.754366 0.577326\nvn 0.312453 -0.754366 0.577326\nvn 0.312453 -0.754366 0.577326\nvn 0.576760 -0.576759 0.578530\nvn 0.000000 -0.815663 0.578527\nvn 0.312453 -0.754366 0.577326\nvn 0.312453 -0.754366 0.577326\nvn 0.312453 -0.754366 0.577326\nvn 0.000000 -0.815663 0.578527\nvn 0.000000 -0.815663 0.578527\nvn 0.000000 -0.815663 0.578527\nvn 0.000000 -0.815663 0.578527\nvn -0.312452 -0.754366 0.577326\nvn -0.312452 -0.754366 0.577326\nvn -0.312425 -0.754373 0.577332\nvn 0.000000 -0.815663 0.578527\nvn -0.312452 -0.754366 0.577326\nvn -0.576759 -0.576760 0.578530\nvn -0.576759 -0.576760 0.578530\nvn -0.576759 -0.576760 0.578530\nvn -0.312425 -0.754373 0.577332\nvn -0.312452 -0.754366 0.577326\nvn -0.576759 -0.576760 0.578530\nvn -0.576759 -0.576760 0.578530\nvn -0.754366 -0.312453 0.577326\nvn -0.754366 -0.312453 0.577326\nvn -0.754366 -0.312453 0.577326\nvn -0.576759 -0.576760 0.578530\nvn -0.815649 -0.000000 0.578547\nvn -0.754366 -0.312453 0.577326\nvn -0.754366 -0.312453 0.577326\nvn -0.754366 -0.312453 0.577326\nvn -0.815663 -0.000000 0.578527\nvn -0.815649 -0.000000 0.578547\nvn -0.815649 -0.000000 0.578547\nvn -0.815663 -0.000000 0.578527\nvn -0.754353 0.312459 0.577339\nvn -0.754353 0.312459 0.577339\nvn -0.754353 0.312459 0.577339\nvn -0.815649 -0.000000 0.578547\nvn -0.576760 0.576760 0.578530\nvn -0.754353 0.312459 0.577339\nvn -0.754353 0.312459 0.577339\nvn -0.754353 0.312459 0.577339\nvn -0.576760 0.576760 0.578530\nvn -0.576760 0.576760 0.578530\nvn -0.576760 0.576760 0.578530\nvn -0.576760 0.576760 0.578530\nvn -0.312458 0.754379 0.577306\nvn -0.312458 0.754379 0.577306\nvn -0.312458 0.754379 0.577306\nvn -0.576760 0.576760 0.578530\nvn -0.312458 0.754379 0.577306\nvn -0.312458 0.754379 0.577306\nvn -0.000000 0.815674 0.578512\nvn -0.000000 0.815674 0.578512\nvn -0.000000 0.815663 0.578527\nvn -0.312458 0.754379 0.577306\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923891 0.382655 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923891 0.382655 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707122 0.707091 -0.000000\nvn -0.923891 0.382655 -0.000000\nvn -0.707122 0.707091 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.707122 0.707091 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.382681 -0.923880 0.000031\nvn -0.382681 -0.923880 0.000031\nvn -0.382681 -0.923880 0.000031\nvn 0.000000 -1.000000 0.000000\nvn 0.760011 0.314772 0.568597\nvn 0.759991 0.314806 0.568604\nvn 0.581371 0.581371 0.569224\nvn 0.581371 0.581371 0.569224\nvn 0.581371 0.581371 0.569224\nvn 0.760011 0.314772 0.568597\nvn 0.581371 0.581371 0.569224\nvn 0.581371 0.581371 0.569224\nvn 0.314771 0.760011 0.568597\nvn 0.314771 0.760011 0.568597\nvn 0.314771 0.760011 0.568597\nvn 0.581371 0.581371 0.569224\nvn 0.314771 0.760011 0.568597\nvn 0.314771 0.760011 0.568597\nvn -0.000000 0.822189 0.569215\nvn -0.000000 0.822189 0.569215\nvn -0.000000 0.822189 0.569215\nvn 0.314771 0.760011 0.568597\nvn 0.314805 -0.760017 0.568571\nvn 0.314805 -0.760017 0.568571\nvn 0.581371 -0.581371 0.569224\nvn 0.581371 -0.581371 0.569224\nvn 0.581371 -0.581371 0.569224\nvn 0.314805 -0.760017 0.568571\nvn 0.314805 -0.760017 0.568571\nvn 0.314805 -0.760017 0.568571\nvn 0.000000 -0.822189 0.569215\nvn 0.000000 -0.822189 0.569215\nvn 0.000000 -0.822189 0.569215\nvn 0.314805 -0.760017 0.568571\nvn 0.000000 -0.822189 0.569215\nvn 0.000000 -0.822189 0.569215\nvn -0.314804 -0.760017 0.568571\nvn -0.314804 -0.760017 0.568571\nvn -0.314804 -0.760017 0.568571\nvn 0.000000 -0.822189 0.569215\nvn -0.000000 0.822189 0.569215\nvn -0.000000 0.822189 0.569215\nvn -0.314806 0.759991 0.568604\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.707122 -0.707092 0.000000\nvn -0.707122 -0.707092 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707122 -0.707092 0.000000\nvn -0.382681 -0.923880 0.000031\nvn -0.382681 -0.923880 0.000031\nvn -0.382681 -0.923880 0.000031\nvn -0.707107 -0.707107 0.000000\nvn -0.581371 -0.581371 0.569224\nvn -0.581371 -0.581371 0.569224\nvn -0.314804 -0.760017 0.568571\nvn -0.314804 -0.760017 0.568571\nvn -0.314804 -0.760017 0.568571\nvn -0.581371 -0.581371 0.569224\nvn -0.581371 -0.581371 0.569224\nvn -0.581371 -0.581371 0.569224\nvn -0.760017 -0.314805 0.568571\nvn -0.760017 -0.314805 0.568571\nvn -0.760017 -0.314805 0.568571\nvn -0.581371 -0.581371 0.569224\nvn -0.760017 -0.314805 0.568571\nvn -0.760017 -0.314805 0.568571\nvn -0.822189 -0.000000 0.569215\nvn -0.822189 -0.000000 0.569215\nvn -0.822189 -0.000000 0.569215\nvn -0.760017 -0.314805 0.568571\nvn -0.822189 -0.000000 0.569215\nvn -0.822189 -0.000000 0.569215\nvn -0.760017 0.314804 0.568571\nvn -0.760017 0.314804 0.568571\nvn -0.760017 0.314804 0.568571\nvn -0.822189 -0.000000 0.569215\nvn -0.760017 0.314804 0.568571\nvn -0.760017 0.314804 0.568571\nvn -0.581371 0.581371 0.569224\nvn -0.581371 0.581371 0.569224\nvn -0.581371 0.581371 0.569224\nvn -0.760017 0.314804 0.568571\nvn -0.581371 0.581371 0.569224\nvn -0.581371 0.581371 0.569224\nvn -0.314806 0.759991 0.568604\nvn -0.314806 0.759991 0.568604\nvn -0.314806 0.759991 0.568604\nvn -0.581371 0.581371 0.569224\nvn -0.314806 0.759991 0.568604\nvn -0.314806 0.759991 0.568604\nvn -0.000000 0.822189 0.569215\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.707122 -0.707092 0.000000\nvn -0.707091 -0.707122 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.707122 -0.707092 0.000000\nvn -0.707091 -0.707122 0.000000\nvn -0.707122 -0.707092 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.707091 -0.707122 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 0.510095 0.860118\nvn 0.195415 0.471830 0.859761\nvn 0.195445 0.471827 0.859756\nvn 0.195445 0.471827 0.859756\nvn -0.000000 0.510095 0.860118\nvn -0.000000 0.510095 0.860118\nvn 0.360678 0.360679 0.860129\nvn 0.195445 0.471827 0.859756\nvn 0.195415 0.471830 0.859761\nvn 0.195415 0.471830 0.859761\nvn 0.360678 0.360679 0.860129\nvn 0.360678 0.360679 0.860129\nvn 0.471827 0.195445 0.859756\nvn 0.360678 0.360679 0.860129\nvn 0.360678 0.360679 0.860129\nvn 0.360678 0.360679 0.860129\nvn 0.471830 0.195416 0.859761\nvn 0.471827 0.195445 0.859756\nvn 0.510073 0.000000 0.860131\nvn 0.471827 0.195445 0.859756\nvn 0.471830 0.195416 0.859761\nvn 0.471830 0.195416 0.859761\nvn 0.510073 0.000000 0.860131\nvn 0.510073 0.000000 0.860131\nvn 0.471827 -0.195445 0.859756\nvn 0.510073 0.000000 0.860131\nvn 0.510073 0.000000 0.860131\nvn 0.510073 0.000000 0.860131\nvn 0.471827 -0.195445 0.859756\nvn 0.471827 -0.195445 0.859756\nvn 0.360679 -0.360678 0.860129\nvn 0.471827 -0.195445 0.859756\nvn 0.471827 -0.195445 0.859756\nvn 0.471827 -0.195445 0.859756\nvn 0.360679 -0.360678 0.860129\nvn 0.360679 -0.360678 0.860129\nvn 0.195416 -0.471829 0.859761\nvn 0.360679 -0.360678 0.860129\nvn 0.360679 -0.360678 0.860129\nvn 0.360679 -0.360678 0.860129\nvn 0.195419 -0.471806 0.859774\nvn 0.195416 -0.471829 0.859761\nvn 0.000000 -0.510073 0.860131\nvn 0.195416 -0.471829 0.859761\nvn 0.195419 -0.471806 0.859774\nvn 0.195419 -0.471806 0.859774\nvn 0.000000 -0.510073 0.860131\nvn 0.000000 -0.510073 0.860131\nvn -0.195445 -0.471827 0.859756\nvn 0.000000 -0.510073 0.860131\nvn 0.000000 -0.510073 0.860131\nvn 0.000000 -0.510073 0.860131\nvn -0.195415 -0.471830 0.859761\nvn -0.195445 -0.471827 0.859756\nvn -0.195415 -0.471830 0.859761\nvn -0.360673 -0.360643 0.860146\nvn -0.360673 -0.360643 0.860146\nvn -0.360673 -0.360643 0.860146\nvn -0.195445 -0.471827 0.859756\nvn -0.195415 -0.471830 0.859761\nvn -0.471830 -0.195416 0.859761\nvn -0.360673 -0.360643 0.860146\nvn -0.360673 -0.360643 0.860146\nvn -0.360673 -0.360643 0.860146\nvn -0.471827 -0.195445 0.859756\nvn -0.471830 -0.195416 0.859761\nvn -0.510073 -0.000000 0.860131\nvn -0.471830 -0.195416 0.859761\nvn -0.471827 -0.195445 0.859756\nvn -0.471827 -0.195445 0.859756\nvn -0.510073 -0.000000 0.860131\nvn -0.510073 -0.000000 0.860131\nvn -0.471803 0.195448 0.859769\nvn -0.510073 -0.000000 0.860131\nvn -0.510073 -0.000000 0.860131\nvn -0.510073 -0.000000 0.860131\nvn -0.471803 0.195448 0.859769\nvn -0.471803 0.195448 0.859769\nvn -0.360679 0.360679 0.860129\nvn -0.471803 0.195448 0.859769\nvn -0.471803 0.195448 0.859769\nvn -0.471803 0.195448 0.859769\nvn -0.360679 0.360679 0.860129\nvn -0.360679 0.360679 0.860129\nvn -0.195445 0.471827 0.859756\nvn -0.360679 0.360679 0.860129\nvn -0.360679 0.360679 0.860129\nvn -0.360679 0.360679 0.860129\nvn -0.195445 0.471827 0.859756\nvn -0.195445 0.471827 0.859756\nvn -0.000000 0.510095 0.860118\nvn -0.195445 0.471827 0.859756\nvn -0.195445 0.471827 0.859756\nvn -0.195445 0.471827 0.859756\nvn -0.000000 0.510095 0.860118\nvn -0.000000 0.510095 0.860118\nvn 0.360669 0.360669 -0.860137\nvn 0.195415 0.471830 -0.859761\nvn 0.195415 0.471830 -0.859761\nvn 0.195415 0.471830 -0.859761\nvn 0.360669 0.360669 -0.860137\nvn 0.360669 0.360669 -0.860137\nvn -0.000000 0.510073 -0.860131\nvn 0.195415 0.471830 -0.859761\nvn 0.195415 0.471830 -0.859761\nvn 0.195415 0.471830 -0.859761\nvn -0.000000 0.510073 -0.860131\nvn -0.000000 0.510073 -0.860131\nvn -0.195416 0.471829 -0.859761\nvn -0.000000 0.510073 -0.860131\nvn -0.000000 0.510073 -0.860131\nvn -0.000000 0.510073 -0.860131\nvn -0.195416 0.471829 -0.859761\nvn -0.195416 0.471829 -0.859761\nvn -0.360669 0.360669 -0.860137\nvn -0.195416 0.471829 -0.859761\nvn -0.195416 0.471829 -0.859761\nvn -0.195416 0.471829 -0.859761\nvn -0.360669 0.360669 -0.860137\nvn -0.360669 0.360669 -0.860137\nvn -0.471794 0.195413 -0.859782\nvn -0.360669 0.360669 -0.860137\nvn -0.360669 0.360669 -0.860137\nvn -0.360669 0.360669 -0.860137\nvn -0.471794 0.195413 -0.859782\nvn -0.471794 0.195413 -0.859782\nvn -0.510059 -0.000000 -0.860139\nvn -0.471794 0.195413 -0.859782\nvn -0.471794 0.195413 -0.859782\nvn -0.471794 0.195413 -0.859782\nvn -0.510059 -0.000000 -0.860139\nvn -0.510059 -0.000000 -0.860139\nvn -0.471793 -0.195413 -0.859782\nvn -0.510059 -0.000000 -0.860139\nvn -0.510059 -0.000000 -0.860139\nvn -0.510059 -0.000000 -0.860139\nvn -0.471793 -0.195413 -0.859782\nvn -0.471793 -0.195413 -0.859782\nvn -0.360646 -0.360647 -0.860156\nvn -0.471793 -0.195413 -0.859782\nvn -0.471793 -0.195413 -0.859782\nvn -0.471793 -0.195413 -0.859782\nvn -0.360646 -0.360647 -0.860156\nvn -0.360646 -0.360647 -0.860156\nvn -0.195418 -0.471806 -0.859774\nvn -0.360646 -0.360647 -0.860156\nvn -0.360646 -0.360647 -0.860156\nvn -0.360646 -0.360647 -0.860156\nvn -0.195418 -0.471806 -0.859774\nvn -0.195418 -0.471806 -0.859774\nvn -0.195418 -0.471806 -0.859774\nvn 0.000000 -0.510059 -0.860139\nvn 0.000000 -0.510059 -0.860139\nvn 0.000000 -0.510059 -0.860139\nvn -0.195418 -0.471806 -0.859774\nvn -0.195418 -0.471806 -0.859774\nvn 0.195413 -0.471793 -0.859782\nvn 0.000000 -0.510059 -0.860139\nvn 0.000000 -0.510059 -0.860139\nvn 0.000000 -0.510059 -0.860139\nvn 0.195413 -0.471793 -0.859782\nvn 0.195413 -0.471793 -0.859782\nvn 0.360643 -0.360673 -0.860146\nvn 0.195413 -0.471793 -0.859782\nvn 0.195413 -0.471793 -0.859782\nvn 0.195413 -0.471793 -0.859782\nvn 0.360643 -0.360673 -0.860146\nvn 0.360643 -0.360673 -0.860146\nvn 0.471794 -0.195413 -0.859782\nvn 0.360643 -0.360673 -0.860146\nvn 0.360643 -0.360673 -0.860146\nvn 0.360643 -0.360673 -0.860146\nvn 0.471794 -0.195413 -0.859782\nvn 0.471794 -0.195413 -0.859782\nvn 0.510059 0.000000 -0.860139\nvn 0.471794 -0.195413 -0.859782\nvn 0.471794 -0.195413 -0.859782\nvn 0.471794 -0.195413 -0.859782\nvn 0.510059 0.000000 -0.860139\nvn 0.510059 0.000000 -0.860139\nvn 0.471793 0.195413 -0.859782\nvn 0.510059 0.000000 -0.860139\nvn 0.510059 0.000000 -0.860139\nvn 0.510059 0.000000 -0.860139\nvn 0.471793 0.195413 -0.859782\nvn 0.471793 0.195413 -0.859782\nvn 0.360669 0.360669 -0.860137\nvn 0.471793 0.195413 -0.859782\nvn 0.471793 0.195413 -0.859782\nvn 0.471793 0.195413 -0.859782\nvn 0.360669 0.360669 -0.860137\nvn 0.360669 0.360669 -0.860137\nvn -0.000000 0.511661 0.859187\nvn 0.196026 0.473295 0.858816\nvn 0.196055 0.473292 0.858811\nvn 0.196055 0.473292 0.858811\nvn -0.000000 0.511684 0.859174\nvn -0.000000 0.511661 0.859187\nvn 0.361807 0.361807 0.859181\nvn 0.196055 0.473292 0.858811\nvn 0.196026 0.473295 0.858816\nvn 0.196026 0.473295 0.858816\nvn 0.361807 0.361807 0.859181\nvn 0.361807 0.361807 0.859181\nvn 0.473259 0.196024 0.858837\nvn 0.361807 0.361807 0.859181\nvn 0.361807 0.361807 0.859181\nvn 0.361807 0.361807 0.859181\nvn 0.473259 0.196024 0.858837\nvn 0.473259 0.196024 0.858837\nvn 0.511625 0.000000 0.859209\nvn 0.473259 0.196024 0.858837\nvn 0.473259 0.196024 0.858837\nvn 0.473259 0.196024 0.858837\nvn 0.511625 0.000000 0.859209\nvn 0.511625 0.000000 0.859209\nvn 0.473259 -0.196024 0.858837\nvn 0.511625 0.000000 0.859209\nvn 0.511625 0.000000 0.859209\nvn 0.511625 0.000000 0.859209\nvn 0.473259 -0.196024 0.858837\nvn 0.473259 -0.196024 0.858837\nvn 0.361807 -0.361807 0.859181\nvn 0.473259 -0.196024 0.858837\nvn 0.473259 -0.196024 0.858837\nvn 0.473259 -0.196024 0.858837\nvn 0.361811 -0.361780 0.859190\nvn 0.361807 -0.361807 0.859181\nvn 0.196024 -0.473259 0.858837\nvn 0.361807 -0.361807 0.859181\nvn 0.361811 -0.361780 0.859190\nvn 0.361811 -0.361780 0.859190\nvn 0.196024 -0.473259 0.858837\nvn 0.196024 -0.473259 0.858837\nvn 0.000000 -0.511661 0.859188\nvn 0.196024 -0.473259 0.858837\nvn 0.196024 -0.473259 0.858837\nvn 0.196024 -0.473259 0.858837\nvn 0.000000 -0.511661 0.859188\nvn 0.000000 -0.511661 0.859188\nvn -0.196024 -0.473259 0.858837\nvn 0.000000 -0.511661 0.859188\nvn 0.000000 -0.511661 0.859188\nvn 0.000000 -0.511661 0.859188\nvn -0.196024 -0.473259 0.858837\nvn -0.196024 -0.473259 0.858837\nvn -0.196024 -0.473259 0.858837\nvn -0.361807 -0.361807 0.859181\nvn -0.361807 -0.361807 0.859181\nvn -0.361807 -0.361807 0.859181\nvn -0.196024 -0.473259 0.858837\nvn -0.196024 -0.473259 0.858837\nvn -0.473259 -0.196024 0.858837\nvn -0.361807 -0.361807 0.859181\nvn -0.361807 -0.361807 0.859181\nvn -0.361807 -0.361807 0.859181\nvn -0.473259 -0.196024 0.858837\nvn -0.473259 -0.196024 0.858837\nvn -0.511625 -0.000000 0.859209\nvn -0.473259 -0.196024 0.858837\nvn -0.473259 -0.196024 0.858837\nvn -0.473259 -0.196024 0.858837\nvn -0.511625 -0.000000 0.859209\nvn -0.511625 -0.000000 0.859209\nvn -0.473223 0.196021 0.858857\nvn -0.511625 -0.000000 0.859209\nvn -0.511625 -0.000000 0.859209\nvn -0.511625 -0.000000 0.859209\nvn -0.473223 0.196021 0.858857\nvn -0.473223 0.196021 0.858857\nvn -0.361775 0.361775 0.859208\nvn -0.473223 0.196021 0.858857\nvn -0.473223 0.196021 0.858857\nvn -0.473223 0.196021 0.858857\nvn -0.361775 0.361775 0.859208\nvn -0.361775 0.361775 0.859208\nvn -0.196056 0.473292 0.858811\nvn -0.361775 0.361775 0.859208\nvn -0.361775 0.361775 0.859208\nvn -0.361775 0.361775 0.859208\nvn -0.196056 0.473292 0.858811\nvn -0.196056 0.473292 0.858811\nvn -0.000000 0.511684 0.859174\nvn -0.196056 0.473292 0.858811\nvn -0.196056 0.473292 0.858811\nvn -0.196056 0.473292 0.858811\nvn -0.000000 0.511661 0.859187\nvn -0.000000 0.511684 0.859174\nvn 0.361807 0.361807 -0.859181\nvn 0.196024 0.473259 -0.858837\nvn 0.196024 0.473259 -0.858837\nvn 0.196024 0.473259 -0.858837\nvn 0.361807 0.361807 -0.859181\nvn 0.361807 0.361807 -0.859181\nvn -0.000000 0.511625 -0.859209\nvn 0.196024 0.473259 -0.858837\nvn 0.196024 0.473259 -0.858837\nvn 0.196024 0.473259 -0.858837\nvn -0.000000 0.511625 -0.859209\nvn -0.000000 0.511625 -0.859209\nvn -0.196026 0.473295 -0.858816\nvn -0.000000 0.511625 -0.859209\nvn -0.000000 0.511625 -0.859209\nvn -0.000000 0.511625 -0.859209\nvn -0.196026 0.473295 -0.858816\nvn -0.196026 0.473295 -0.858816\nvn -0.361775 0.361775 -0.859208\nvn -0.196026 0.473295 -0.858816\nvn -0.196026 0.473295 -0.858816\nvn -0.196026 0.473295 -0.858816\nvn -0.361775 0.361775 -0.859208\nvn -0.361775 0.361775 -0.859208\nvn -0.473202 0.195995 -0.858875\nvn -0.361775 0.361775 -0.859208\nvn -0.361775 0.361775 -0.859208\nvn -0.361775 0.361775 -0.859208\nvn -0.473226 0.195992 -0.858862\nvn -0.473202 0.195995 -0.858875\nvn -0.511648 -0.000000 -0.859195\nvn -0.473202 0.195995 -0.858875\nvn -0.473226 0.195992 -0.858862\nvn -0.473226 0.195992 -0.858862\nvn -0.511648 -0.000000 -0.859195\nvn -0.511648 -0.000000 -0.859195\nvn -0.473259 -0.196024 -0.858837\nvn -0.511648 -0.000000 -0.859195\nvn -0.511648 -0.000000 -0.859195\nvn -0.511648 -0.000000 -0.859195\nvn -0.473259 -0.196024 -0.858837\nvn -0.473259 -0.196024 -0.858837\nvn -0.361779 -0.361749 -0.859217\nvn -0.473259 -0.196024 -0.858837\nvn -0.473259 -0.196024 -0.858837\nvn -0.473259 -0.196024 -0.858837\nvn -0.361748 -0.361779 -0.859217\nvn -0.361779 -0.361749 -0.859217\nvn -0.196026 -0.473295 -0.858816\nvn -0.361779 -0.361749 -0.859217\nvn -0.361748 -0.361779 -0.859217\nvn -0.361748 -0.361779 -0.859217\nvn -0.196026 -0.473295 -0.858816\nvn -0.196026 -0.473295 -0.858816\nvn -0.196026 -0.473295 -0.858816\nvn 0.000000 -0.511625 -0.859209\nvn 0.000000 -0.511625 -0.859209\nvn 0.000000 -0.511625 -0.859209\nvn -0.196026 -0.473295 -0.858816\nvn -0.196026 -0.473295 -0.858816\nvn 0.195995 -0.473202 -0.858875\nvn 0.000000 -0.511625 -0.859209\nvn 0.000000 -0.511625 -0.859209\nvn 0.000000 -0.511625 -0.859209\nvn 0.195995 -0.473202 -0.858875\nvn 0.195995 -0.473202 -0.858875\nvn 0.361775 -0.361775 -0.859208\nvn 0.195995 -0.473202 -0.858875\nvn 0.195995 -0.473202 -0.858875\nvn 0.195995 -0.473202 -0.858875\nvn 0.361775 -0.361775 -0.859208\nvn 0.361775 -0.361775 -0.859208\nvn 0.473295 -0.196026 -0.858816\nvn 0.361775 -0.361775 -0.859208\nvn 0.361775 -0.361775 -0.859208\nvn 0.361775 -0.361775 -0.859208\nvn 0.473292 -0.196055 -0.858811\nvn 0.473295 -0.196026 -0.858816\nvn 0.511589 0.000000 -0.859230\nvn 0.473295 -0.196026 -0.858816\nvn 0.473292 -0.196055 -0.858811\nvn 0.473292 -0.196055 -0.858811\nvn 0.511589 0.000000 -0.859230\nvn 0.511589 0.000000 -0.859230\nvn 0.473235 0.196027 -0.858849\nvn 0.511589 0.000000 -0.859230\nvn 0.511589 0.000000 -0.859230\nvn 0.511589 0.000000 -0.859230\nvn 0.473235 0.196027 -0.858849\nvn 0.473235 0.196027 -0.858849\nvn 0.361807 0.361807 -0.859181\nvn 0.473235 0.196027 -0.858849\nvn 0.473235 0.196027 -0.858849\nvn 0.473235 0.196027 -0.858849\nvn 0.361807 0.361807 -0.859181\nvn 0.361807 0.361807 -0.859181\nvn 0.759991 0.314806 0.568604\nvn 0.760011 0.314772 0.568597\nvn 0.822189 0.000000 0.569215\nvn 0.822189 0.000000 0.569215\nvn 0.822189 0.000000 0.569215\nvn 0.759991 0.314806 0.568604\nvn 0.822189 0.000000 0.569215\nvn 0.822189 0.000000 0.569215\nvn 0.759991 -0.314806 0.568604\nvn 0.759991 -0.314806 0.568604\nvn 0.759991 -0.314806 0.568604\nvn 0.822189 0.000000 0.569215\nvn 0.759991 -0.314806 0.568604\nvn 0.759991 -0.314806 0.568604\nvn 0.581371 -0.581371 0.569224\nvn 0.581371 -0.581371 0.569224\nvn 0.581371 -0.581371 0.569224\nvn 0.759991 -0.314806 0.568604\nvn -0.933619 0.358267 -0.000000\nvn -0.999655 -0.026247 0.000000\nvn -0.999656 -0.026216 0.000000\nvn -0.999656 -0.026216 0.000000\nvn -0.933599 0.358320 -0.000000\nvn -0.933619 0.358267 -0.000000\nvn -0.933619 0.358267 -0.000000\nvn -0.933599 0.358320 -0.000000\nvn -0.725404 0.688323 -0.000000\nvn -0.725404 0.688323 -0.000000\nvn -0.725449 0.688276 -0.000000\nvn -0.933619 0.358267 -0.000000\nvn -0.406824 0.913507 -0.000000\nvn -0.725449 0.688276 -0.000000\nvn -0.725404 0.688323 -0.000000\nvn -0.725404 0.688323 -0.000000\nvn -0.406762 0.913534 -0.000000\nvn -0.406824 0.913507 -0.000000\nvn -0.406824 0.913507 -0.000000\nvn -0.406762 0.913534 -0.000000\nvn -0.026216 0.999656 -0.000000\nvn -0.026216 0.999656 -0.000000\nvn -0.026247 0.999655 -0.000000\nvn -0.406824 0.913507 -0.000000\nvn 0.358267 0.933619 -0.000000\nvn -0.026247 0.999655 -0.000000\nvn -0.026216 0.999656 -0.000000\nvn -0.026216 0.999656 -0.000000\nvn 0.358294 0.933609 -0.000000\nvn 0.358267 0.933619 -0.000000\nvn 0.358267 0.933619 -0.000000\nvn 0.358294 0.933609 -0.000000\nvn 0.688292 0.725434 -0.000000\nvn 0.688292 0.725434 -0.000000\nvn 0.688292 0.725434 -0.000000\nvn 0.358267 0.933619 -0.000000\nvn 0.913512 0.406813 -0.000000\nvn 0.688292 0.725434 -0.000000\nvn 0.688292 0.725434 -0.000000\nvn 0.688292 0.725434 -0.000000\nvn 0.913507 0.406824 -0.000000\nvn 0.913512 0.406813 -0.000000\nvn 0.913512 0.406813 -0.000000\nvn 0.913507 0.406824 -0.000000\nvn 0.999655 0.026277 -0.000000\nvn 0.999655 0.026277 -0.000000\nvn 0.999655 0.026247 -0.000000\nvn 0.913512 0.406813 -0.000000\nvn 0.933619 -0.358267 0.000000\nvn 0.999655 0.026247 -0.000000\nvn 0.999655 0.026277 -0.000000\nvn 0.999655 0.026277 -0.000000\nvn 0.933633 -0.358230 0.000000\nvn 0.933619 -0.358267 0.000000\nvn 0.933619 -0.358267 0.000000\nvn 0.933633 -0.358230 0.000000\nvn 0.725479 -0.688245 0.000000\nvn 0.725479 -0.688245 0.000000\nvn 0.725434 -0.688292 0.000000\nvn 0.933619 -0.358267 0.000000\nvn 0.406824 -0.913507 0.000000\nvn 0.725434 -0.688292 0.000000\nvn 0.725479 -0.688245 0.000000\nvn 0.725479 -0.688245 0.000000\nvn 0.406849 -0.913495 0.000000\nvn 0.406824 -0.913507 0.000000\nvn 0.406824 -0.913507 0.000000\nvn 0.406849 -0.913495 0.000000\nvn 0.026277 -0.999655 0.000000\nvn 0.026277 -0.999655 0.000000\nvn 0.026277 -0.999655 0.000000\nvn 0.406824 -0.913507 0.000000\nvn -0.358267 -0.933619 0.000000\nvn 0.026277 -0.999655 0.000000\nvn 0.026277 -0.999655 0.000000\nvn 0.026277 -0.999655 0.000000\nvn -0.358267 -0.933619 0.000000\nvn -0.358267 -0.933619 0.000000\nvn -0.358267 -0.933619 0.000000\nvn -0.358267 -0.933619 0.000000\nvn -0.688292 -0.725434 0.000000\nvn -0.688292 -0.725434 0.000000\nvn -0.688292 -0.725434 0.000000\nvn -0.358267 -0.933619 0.000000\nvn -0.913512 -0.406813 0.000000\nvn -0.688292 -0.725434 0.000000\nvn -0.688292 -0.725434 0.000000\nvn -0.688292 -0.725434 0.000000\nvn -0.913523 -0.406787 0.000000\nvn -0.913512 -0.406813 0.000000\nvn -0.999655 -0.026247 0.000000\nvn -0.913512 -0.406813 0.000000\nvn -0.913523 -0.406787 0.000000\nvn -0.913523 -0.406787 0.000000\nvn -0.999656 -0.026216 0.000000\nvn -0.999655 -0.026247 0.000000\nvn -0.000244 -0.000214 1.000000\nvn -0.000244 -0.000183 1.000000\nvn -0.000153 -0.000214 1.000000\nvn -0.000153 -0.000214 1.000000\nvn -0.000122 -0.000275 1.000000\nvn -0.000244 -0.000214 1.000000\nvn -0.000122 -0.000275 1.000000\nvn -0.000153 -0.000214 1.000000\nvn -0.000061 -0.000183 1.000000\nvn -0.000061 -0.000183 1.000000\nvn -0.000031 -0.000214 1.000000\nvn -0.000122 -0.000275 1.000000\nvn -0.000031 -0.000214 1.000000\nvn -0.000061 -0.000183 1.000000\nvn 0.000000 -0.000091 1.000000\nvn 0.000000 -0.000091 1.000000\nvn 0.000000 -0.000091 1.000000\nvn -0.000031 -0.000214 1.000000\nvn 0.000000 -0.000091 1.000000\nvn 0.000000 -0.000091 1.000000\nvn -0.000061 0.000000 1.000000\nvn -0.000061 0.000000 1.000000\nvn -0.000061 0.000000 1.000000\nvn 0.000000 -0.000091 1.000000\nvn -0.000061 0.000000 1.000000\nvn -0.000061 0.000000 1.000000\nvn -0.000153 0.000000 1.000000\nvn -0.000153 0.000000 1.000000\nvn -0.000183 0.000000 1.000000\nvn -0.000061 0.000000 1.000000\nvn -0.000183 0.000000 1.000000\nvn -0.000153 0.000000 1.000000\nvn -0.000244 0.000000 1.000000\nvn -0.000244 0.000000 1.000000\nvn -0.000275 -0.000030 1.000000\nvn -0.000183 0.000000 1.000000\nvn -0.000275 -0.000030 1.000000\nvn -0.000244 0.000000 1.000000\nvn -0.000305 -0.000091 1.000000\nvn -0.000305 -0.000091 1.000000\nvn -0.000305 -0.000153 1.000000\nvn -0.000275 -0.000030 1.000000\nvn -0.000244 -0.000183 1.000000\nvn -0.000244 -0.000214 1.000000\nvn -0.000305 -0.000153 1.000000\nvn -0.000305 -0.000153 1.000000\nvn -0.000305 -0.000091 1.000000\nvn -0.000244 -0.000183 1.000000\nvn -0.000305 -0.000091 1.000000\nvn -0.000305 -0.000153 1.000000\nvn -0.000275 -0.000030 1.000000\nvn -0.000275 -0.000030 1.000000\nvn -0.000244 0.000000 1.000000\nvn -0.000305 -0.000091 1.000000\nvn -0.000244 0.000000 1.000000\nvn -0.000275 -0.000030 1.000000\nvn -0.000183 0.000000 1.000000\nvn -0.000183 0.000000 1.000000\nvn -0.000183 0.000000 1.000000\nvn -0.000244 0.000000 1.000000\nvn -0.000183 0.000000 1.000000\nvn -0.000183 0.000000 1.000000\nvn -0.000061 0.000000 1.000000\nvn -0.000061 0.000000 1.000000\nvn -0.000061 0.000000 1.000000\nvn -0.000183 0.000000 1.000000\nvn -0.000061 0.000000 1.000000\nvn -0.000061 0.000000 1.000000\nvn 0.000000 -0.000091 1.000000\nvn 0.000000 -0.000091 1.000000\nvn 0.000000 -0.000091 1.000000\nvn -0.000061 0.000000 1.000000\nvn 0.000000 -0.000091 1.000000\nvn 0.000000 -0.000091 1.000000\nvn -0.000031 -0.000214 1.000000\nvn -0.000031 -0.000214 1.000000\nvn -0.000061 -0.000183 1.000000\nvn 0.000000 -0.000091 1.000000\nvn -0.000061 -0.000183 1.000000\nvn -0.000031 -0.000214 1.000000\nvn -0.000122 -0.000244 1.000000\nvn -0.000122 -0.000244 1.000000\nvn -0.000153 -0.000214 1.000000\nvn -0.000061 -0.000183 1.000000\nvn -0.000153 -0.000214 1.000000\nvn -0.000122 -0.000244 1.000000\nvn -0.000214 -0.000244 1.000000\nvn -0.000214 -0.000244 1.000000\nvn -0.000244 -0.000214 1.000000\nvn -0.000153 -0.000214 1.000000\nvn -0.000244 -0.000214 1.000000\nvn -0.000214 -0.000244 1.000000\nvn -0.000305 -0.000153 1.000000\nvn -0.000305 -0.000153 1.000000\nvn -0.000305 -0.000091 1.000000\nvn -0.000244 -0.000214 1.000000\nvn -0.685802 0.263016 0.678600\nvn -0.532168 0.504701 0.679760\nvn -0.532198 0.504670 0.679760\nvn -0.532198 0.504670 0.679760\nvn -0.685819 0.263011 0.678586\nvn -0.685802 0.263016 0.678600\nvn -0.685802 0.263016 0.678600\nvn -0.685819 0.263011 0.678586\nvn -0.733203 -0.019380 0.679733\nvn -0.733203 -0.019380 0.679733\nvn -0.733204 -0.019350 0.679734\nvn -0.685802 0.263016 0.678600\nvn -0.670967 -0.298845 0.678597\nvn -0.733204 -0.019350 0.679734\nvn -0.733203 -0.019380 0.679733\nvn -0.733203 -0.019380 0.679733\nvn -0.670973 -0.298818 0.678603\nvn -0.670967 -0.298845 0.678597\nvn -0.670967 -0.298845 0.678597\nvn -0.670973 -0.298818 0.678603\nvn -0.504880 -0.532043 0.679725\nvn -0.504880 -0.532043 0.679725\nvn -0.504872 -0.532065 0.679714\nvn -0.670967 -0.298845 0.678597\nvn -0.263260 -0.685740 0.678568\nvn -0.504872 -0.532065 0.679714\nvn -0.504880 -0.532043 0.679725\nvn -0.504880 -0.532043 0.679725\nvn -0.263260 -0.685740 0.678568\nvn -0.263260 -0.685740 0.678568\nvn -0.263260 -0.685740 0.678568\nvn -0.263260 -0.685740 0.678568\nvn 0.019075 -0.733222 0.679722\nvn 0.019075 -0.733222 0.679722\nvn 0.019105 -0.733221 0.679722\nvn -0.263260 -0.685740 0.678568\nvn 0.298660 -0.671024 0.678623\nvn 0.019105 -0.733221 0.679722\nvn 0.019075 -0.733222 0.679722\nvn 0.019075 -0.733222 0.679722\nvn 0.298632 -0.671030 0.678629\nvn 0.298660 -0.671024 0.678623\nvn -0.298997 0.670903 0.678594\nvn -0.532198 0.504670 0.679760\nvn -0.532168 0.504701 0.679760\nvn -0.532168 0.504701 0.679760\nvn -0.298969 0.670909 0.678600\nvn -0.298997 0.670903 0.678594\nvn -0.019410 0.733159 0.679781\nvn -0.298997 0.670903 0.678594\nvn -0.298969 0.670909 0.678600\nvn -0.298969 0.670909 0.678600\nvn -0.019410 0.733159 0.679781\nvn -0.019410 0.733159 0.679781\nvn -0.019410 0.733159 0.679781\nvn -0.019410 0.733159 0.679781\nvn 0.263079 0.685775 0.678603\nvn 0.263079 0.685775 0.678603\nvn 0.263045 0.685797 0.678594\nvn -0.019410 0.733159 0.679781\nvn 0.504785 0.532100 0.679751\nvn 0.263045 0.685797 0.678594\nvn 0.263079 0.685775 0.678603\nvn 0.263079 0.685775 0.678603\nvn 0.504818 0.532103 0.679724\nvn 0.504785 0.532100 0.679751\nvn 0.504785 0.532100 0.679751\nvn 0.504818 0.532103 0.679724\nvn 0.670958 0.298750 0.678649\nvn 0.670958 0.298750 0.678649\nvn 0.670941 0.298756 0.678663\nvn 0.504785 0.532100 0.679751\nvn 0.733162 0.019136 0.679784\nvn 0.670941 0.298756 0.678663\nvn 0.670958 0.298750 0.678649\nvn 0.670958 0.298750 0.678649\nvn 0.733162 0.019136 0.679784\nvn 0.733162 0.019136 0.679784\nvn 0.733162 0.019136 0.679784\nvn 0.733162 0.019136 0.679784\nvn 0.685679 -0.263260 0.678629\nvn 0.685679 -0.263260 0.678629\nvn 0.685674 -0.263288 0.678624\nvn 0.733162 0.019136 0.679784\nvn 0.531920 -0.504971 0.679755\nvn 0.685674 -0.263288 0.678624\nvn 0.685679 -0.263260 0.678629\nvn 0.685679 -0.263260 0.678629\nvn 0.531950 -0.504940 0.679754\nvn 0.531920 -0.504971 0.679755\nvn 0.531920 -0.504971 0.679755\nvn 0.531950 -0.504940 0.679754\nvn 0.298660 -0.671024 0.678623\nvn 0.298660 -0.671024 0.678623\nvn 0.298632 -0.671030 0.678629\nvn 0.531920 -0.504971 0.679755\nvn -0.999611 -0.026216 0.009461\nvn -0.933549 0.358325 0.009430\nvn -0.933574 0.358261 0.009430\nvn -0.933574 0.358261 0.009430\nvn -0.999611 -0.026246 0.009461\nvn -0.999611 -0.026216 0.009461\nvn -0.933574 0.358261 0.009430\nvn -0.933549 0.358325 0.009430\nvn -0.725358 0.688307 0.009461\nvn -0.725358 0.688307 0.009461\nvn -0.725417 0.688244 0.009461\nvn -0.933574 0.358261 0.009430\nvn -0.406792 0.913472 0.009430\nvn -0.725417 0.688244 0.009461\nvn -0.725358 0.688307 0.009461\nvn -0.725358 0.688307 0.009461\nvn -0.406755 0.913489 0.009430\nvn -0.406792 0.913472 0.009430\nvn -0.406792 0.913472 0.009430\nvn -0.406755 0.913489 0.009430\nvn -0.026216 0.999611 0.009461\nvn -0.026216 0.999611 0.009461\nvn -0.026246 0.999611 0.009461\nvn -0.406792 0.913472 0.009430\nvn 0.358261 0.933574 0.009430\nvn -0.026246 0.999611 0.009461\nvn -0.026216 0.999611 0.009461\nvn -0.026216 0.999611 0.009461\nvn 0.358288 0.933564 0.009430\nvn 0.358261 0.933574 0.009430\nvn 0.358261 0.933574 0.009430\nvn 0.358288 0.933564 0.009430\nvn 0.688260 0.725402 0.009461\nvn 0.688260 0.725402 0.009461\nvn 0.688260 0.725402 0.009430\nvn 0.358261 0.933574 0.009430\nvn 0.913472 0.406792 0.009430\nvn 0.688260 0.725402 0.009430\nvn 0.688260 0.725402 0.009461\nvn 0.688260 0.725402 0.009461\nvn 0.913461 0.406817 0.009430\nvn 0.913472 0.406792 0.009430\nvn 0.913472 0.406792 0.009430\nvn 0.913461 0.406817 0.009430\nvn 0.999610 0.026277 0.009461\nvn 0.999610 0.026277 0.009461\nvn 0.999611 0.026246 0.009461\nvn 0.913472 0.406792 0.009430\nvn 0.933574 -0.358261 0.009430\nvn 0.999611 0.026246 0.009461\nvn 0.999610 0.026277 0.009461\nvn 0.999610 0.026277 0.009461\nvn 0.933594 -0.358208 0.009431\nvn 0.933574 -0.358261 0.009430\nvn 0.933574 -0.358261 0.009430\nvn 0.933594 -0.358208 0.009431\nvn 0.725447 -0.688213 0.009461\nvn 0.725447 -0.688213 0.009461\nvn 0.725402 -0.688260 0.009461\nvn 0.933574 -0.358261 0.009430\nvn 0.406817 -0.913461 0.009430\nvn 0.725402 -0.688260 0.009461\nvn 0.725447 -0.688213 0.009461\nvn 0.725447 -0.688213 0.009461\nvn 0.406854 -0.913445 0.009431\nvn 0.406817 -0.913461 0.009430\nvn 0.406817 -0.913461 0.009430\nvn 0.406854 -0.913445 0.009431\nvn 0.026277 -0.999610 0.009461\nvn 0.026277 -0.999610 0.009461\nvn 0.026246 -0.999611 0.009461\nvn 0.406817 -0.913461 0.009430\nvn -0.358261 -0.933574 0.009430\nvn 0.026246 -0.999611 0.009461\nvn 0.026277 -0.999610 0.009461\nvn 0.026277 -0.999610 0.009461\nvn -0.358261 -0.933574 0.009430\nvn -0.358261 -0.933574 0.009430\nvn -0.358261 -0.933574 0.009430\nvn -0.358261 -0.933574 0.009430\nvn -0.688260 -0.725402 0.009461\nvn -0.688260 -0.725402 0.009461\nvn -0.688260 -0.725402 0.009461\nvn -0.358261 -0.933574 0.009430\nvn -0.913472 -0.406792 0.009430\nvn -0.688260 -0.725402 0.009461\nvn -0.688260 -0.725402 0.009461\nvn -0.688260 -0.725402 0.009461\nvn -0.913472 -0.406792 0.009430\nvn -0.913472 -0.406792 0.009430\nvn -0.999611 -0.026246 0.009461\nvn -0.913472 -0.406792 0.009430\nvn -0.913472 -0.406792 0.009430\nvn -0.913472 -0.406792 0.009430\nvn -0.999611 -0.026216 0.009461\nvn -0.999611 -0.026246 0.009461\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn 0.567261 -0.217846 0.794203\nvn 0.440359 -0.417805 0.794684\nvn 0.440298 -0.417866 0.794685\nvn 0.440298 -0.417866 0.794685\nvn 0.440359 -0.417805 0.794684\nvn 0.247484 -0.556221 0.793328\nvn 0.440298 -0.417866 0.794685\nvn 0.567237 -0.217879 0.794211\nvn 0.567261 -0.217846 0.794203\nvn 0.554534 0.246901 0.794690\nvn 0.605807 0.015901 0.795453\nvn 0.605826 0.015870 0.795439\nvn 0.605826 0.015870 0.795439\nvn 0.605807 0.015901 0.795453\nvn 0.567261 -0.217846 0.794203\nvn 0.567261 -0.217846 0.794203\nvn 0.567237 -0.217879 0.794211\nvn 0.605826 0.015870 0.795439\nvn 0.605826 0.015870 0.795439\nvn 0.554504 0.246870 0.794721\nvn 0.554534 0.246901 0.794690\nvn 0.247484 -0.556221 0.793328\nvn 0.247451 -0.556246 0.793321\nvn 0.440298 -0.417866 0.794685\nvn 0.416918 0.439441 0.795657\nvn 0.416924 0.439417 0.795668\nvn 0.554534 0.246901 0.794690\nvn 0.554534 0.246901 0.794690\nvn 0.554504 0.246870 0.794721\nvn 0.416918 0.439441 0.795657\nvn 0.217421 0.566901 0.794576\nvn 0.416924 0.439417 0.795668\nvn 0.416918 0.439441 0.795657\nvn 0.416918 0.439441 0.795657\nvn 0.217416 0.566887 0.794588\nvn 0.217421 0.566901 0.794576\nvn 0.217421 0.566901 0.794576\nvn 0.217416 0.566887 0.794588\nvn -0.015992 0.606170 0.795174\nvn -0.015992 0.606170 0.795174\nvn -0.015901 0.606171 0.795175\nvn 0.217421 0.566901 0.794576\nvn -0.247453 0.555456 0.793874\nvn -0.015901 0.606171 0.795175\nvn -0.015992 0.606170 0.795174\nvn -0.015992 0.606170 0.795174\nvn -0.247544 0.555547 0.793782\nvn -0.247453 0.555456 0.793874\nvn -0.440816 0.418079 0.794287\nvn -0.247453 0.555456 0.793874\nvn -0.247544 0.555547 0.793782\nvn -0.247544 0.555547 0.793782\nvn -0.440916 0.418118 0.794210\nvn -0.440816 0.418079 0.794287\nvn -0.568883 0.218153 0.792957\nvn -0.440816 0.418079 0.794287\nvn -0.440916 0.418118 0.794210\nvn -0.440916 0.418118 0.794210\nvn -0.568887 0.218124 0.792962\nvn -0.568883 0.218153 0.792957\nvn -0.568883 0.218153 0.792957\nvn -0.568887 0.218124 0.792962\nvn -0.608279 -0.016023 0.793562\nvn -0.608279 -0.016023 0.793562\nvn -0.608314 -0.015962 0.793536\nvn -0.568883 0.218153 0.792957\nvn -0.557189 -0.248182 0.792431\nvn -0.608314 -0.015962 0.793536\nvn -0.608279 -0.016023 0.793562\nvn -0.608279 -0.016023 0.793562\nvn -0.557223 -0.248184 0.792406\nvn -0.557189 -0.248182 0.792431\nvn -0.557189 -0.248182 0.792431\nvn -0.557223 -0.248184 0.792406\nvn -0.419063 -0.441617 0.793323\nvn -0.419063 -0.441617 0.793323\nvn -0.419061 -0.441676 0.793290\nvn -0.557189 -0.248182 0.792431\nvn -0.218578 -0.569243 0.792582\nvn -0.419061 -0.441676 0.793290\nvn -0.419063 -0.441617 0.793323\nvn -0.419063 -0.441617 0.793323\nvn -0.218579 -0.569277 0.792557\nvn -0.218578 -0.569243 0.792582\nvn -0.218578 -0.569243 0.792582\nvn -0.218579 -0.569277 0.792557\nvn 0.015901 -0.607936 0.793827\nvn 0.015901 -0.607936 0.793827\nvn 0.015962 -0.607950 0.793815\nvn -0.218578 -0.569243 0.792582\nvn 0.247484 -0.556221 0.793328\nvn 0.015962 -0.607950 0.793815\nvn 0.015901 -0.607936 0.793827\nvn 0.015901 -0.607936 0.793827\nvn 0.247451 -0.556246 0.793321\nvn 0.247484 -0.556221 0.793328\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923891 -0.382656 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923891 -0.382656 0.000000\nvn -0.923891 -0.382656 0.000000\nvn -0.923891 -0.382656 0.000000\nvn -0.923891 -0.382656 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.923891 -0.382656 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.382681 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707092 -0.707122 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707092 -0.707122 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.707091 0.707122 -0.000000\nvn 0.707091 0.707122 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707091 0.707122 -0.000000\nvn 0.707091 0.707122 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.382682 0.923880 0.000030\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 0.000061\nvn -0.382682 0.923880 0.000030\nvn -0.382682 0.923880 0.000030\nvn -0.382682 0.923880 0.000061\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707092 0.707122 -0.000000\nvn -0.382682 0.923880 0.000030\nvn -0.923880 0.382681 -0.000000\nvn -0.707092 0.707122 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.382681 -0.923880 0.000000\nvn 0.382656 -0.923891 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.382645 -0.923895 0.000000\nvn 0.382656 -0.923891 0.000000\nvn 0.382656 -0.923891 0.000000\nvn 0.382645 -0.923895 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.382656 -0.923891 0.000000\nvn 0.923891 -0.382655 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.923891 -0.382655 0.000000\nvn 0.923891 -0.382655 0.000000\nvn 0.923891 -0.382655 0.000000\nvn 0.923891 -0.382655 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923891 -0.382655 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.382681 0.923880 0.000061\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.382681 0.923880 0.000061\nvn 0.382681 0.923880 0.000061\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 0.000061\nvn 0.382681 0.923880 0.000061\nvn 0.382681 0.923880 0.000061\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.382681 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.707092 -0.707122 0.000000\nvn 0.707092 -0.707122 0.000000\nvn 0.707122 -0.707091 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707122 -0.707091 0.000000\nvn 0.707092 -0.707122 0.000000\nvn 0.707092 -0.707122 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923891 -0.382656 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923891 -0.382656 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.382655 -0.923891 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.382655 -0.923891 0.000000\nvn -0.382655 -0.923891 0.000000\nvn -0.382655 -0.923891 0.000000\nvn -0.382655 -0.923891 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.382655 -0.923891 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.707092 -0.707122 0.000000\nvn 0.707092 -0.707122 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707092 -0.707122 0.000000\nvn 0.707092 -0.707122 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923895 -0.382645 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923895 -0.382645 0.000000\nvn -0.923895 -0.382645 0.000000\nvn -0.923895 -0.382645 0.000000\nvn -0.923895 -0.382645 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.923895 -0.382645 0.000000\nvn -0.382655 -0.923891 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.382655 -0.923891 0.000000\nvn -0.382655 -0.923891 0.000000\nvn -0.382655 -0.923891 0.000000\nvn -0.382655 -0.923891 0.000000\nvn 0.000000 -1.000000 -0.000214\nvn 0.000000 -1.000000 -0.000214\nvn 0.000000 -1.000000 -0.000244\nvn -0.382655 -0.923891 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.000000 -1.000000 -0.000244\nvn 0.000000 -1.000000 -0.000214\nvn 0.000000 -1.000000 -0.000214\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 1.000000 -0.000030 0.000000\nvn 1.000000 -0.000030 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923895 0.382645 -0.000214\nvn 1.000000 0.000000 0.000000\nvn 1.000000 -0.000030 0.000000\nvn 1.000000 -0.000030 0.000000\nvn 0.923880 0.382682 -0.000214\nvn 0.923895 0.382645 -0.000214\nvn 0.923895 0.382645 -0.000214\nvn 0.923880 0.382682 -0.000214\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707091 0.707122 -0.000000\nvn 0.923895 0.382645 -0.000214\nvn 0.382681 0.923880 -0.000000\nvn 0.707091 0.707122 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 0.502557 0.864544\nvn -0.000000 0.502557 0.864544\nvn -0.192762 0.465454 0.863826\nvn -0.192762 0.465454 0.863826\nvn -0.192762 0.465454 0.863826\nvn -0.000000 0.502557 0.864544\nvn -0.192762 0.465454 0.863826\nvn -0.192762 0.465454 0.863826\nvn -0.355363 0.355363 0.864542\nvn -0.355363 0.355363 0.864542\nvn -0.355367 0.355337 0.864552\nvn -0.192762 0.465454 0.863826\nvn -0.355367 0.355337 0.864552\nvn -0.355363 0.355363 0.864542\nvn -0.465427 0.192794 0.863833\nvn -0.465427 0.192794 0.863833\nvn -0.465451 0.192791 0.863821\nvn -0.355367 0.355337 0.864552\nvn -0.465451 0.192791 0.863821\nvn -0.465427 0.192794 0.863833\nvn -0.502593 -0.000000 0.864523\nvn -0.502593 -0.000000 0.864523\nvn -0.502593 -0.000000 0.864523\nvn -0.465451 0.192791 0.863821\nvn -0.502593 -0.000000 0.864523\nvn -0.502593 -0.000000 0.864523\nvn -0.465451 -0.192791 0.863821\nvn -0.465451 -0.192791 0.863821\nvn -0.465451 -0.192791 0.863821\nvn -0.502593 -0.000000 0.864523\nvn -0.465451 -0.192791 0.863821\nvn -0.465451 -0.192791 0.863821\nvn -0.355395 -0.355396 0.864516\nvn -0.355395 -0.355396 0.864516\nvn -0.355395 -0.355396 0.864516\nvn -0.465451 -0.192791 0.863821\nvn -0.355395 -0.355396 0.864516\nvn -0.355395 -0.355396 0.864516\nvn -0.192762 -0.465394 0.863858\nvn -0.192762 -0.465394 0.863858\nvn -0.192727 -0.465384 0.863871\nvn -0.355395 -0.355396 0.864516\nvn -0.192727 -0.465384 0.863871\nvn -0.192762 -0.465394 0.863858\nvn 0.000000 -0.502521 0.864565\nvn 0.000000 -0.502521 0.864565\nvn 0.000000 -0.502521 0.864565\nvn -0.192727 -0.465384 0.863871\nvn 0.000000 -0.502521 0.864565\nvn 0.000000 -0.502521 0.864565\nvn 0.192757 -0.465382 0.863866\nvn 0.192757 -0.465382 0.863866\nvn 0.192762 -0.465394 0.863858\nvn 0.000000 -0.502521 0.864565\nvn 0.192762 -0.465394 0.863858\nvn 0.192757 -0.465382 0.863866\nvn 0.355396 -0.355395 0.864516\nvn 0.355396 -0.355395 0.864516\nvn 0.355392 -0.355422 0.864507\nvn 0.192762 -0.465394 0.863858\nvn 0.355392 -0.355422 0.864507\nvn 0.355396 -0.355395 0.864516\nvn 0.465451 -0.192791 0.863821\nvn 0.465451 -0.192791 0.863821\nvn 0.465451 -0.192791 0.863821\nvn 0.355392 -0.355422 0.864507\nvn 0.465451 -0.192791 0.863821\nvn 0.465451 -0.192791 0.863821\nvn 0.502593 0.000000 0.864523\nvn 0.502593 0.000000 0.864523\nvn 0.502593 0.000000 0.864523\nvn 0.465451 -0.192791 0.863821\nvn 0.502593 0.000000 0.864523\nvn 0.502593 0.000000 0.864523\nvn 0.465451 0.192791 0.863821\nvn 0.465451 0.192791 0.863821\nvn 0.465451 0.192791 0.863821\nvn 0.502593 0.000000 0.864523\nvn 0.465451 0.192791 0.863821\nvn 0.465451 0.192791 0.863821\nvn 0.355363 0.355364 0.864542\nvn 0.355363 0.355364 0.864542\nvn 0.355363 0.355364 0.864542\nvn 0.465451 0.192791 0.863821\nvn 0.355363 0.355364 0.864542\nvn 0.355363 0.355364 0.864542\nvn 0.192794 0.465428 0.863833\nvn 0.192794 0.465428 0.863833\nvn 0.192791 0.465451 0.863821\nvn 0.355363 0.355364 0.864542\nvn 0.192791 0.465451 0.863821\nvn 0.192794 0.465428 0.863833\nvn -0.000000 0.502557 0.864544\nvn -0.000000 0.502557 0.864544\nvn -0.000000 0.502557 0.864544\nvn 0.192791 0.465451 0.863821\nvn -0.355367 0.355337 -0.864552\nvn -0.355363 0.355363 -0.864543\nvn -0.192757 0.465382 -0.863866\nvn -0.192757 0.465382 -0.863866\nvn -0.192757 0.465382 -0.863866\nvn -0.355367 0.355337 -0.864552\nvn -0.192757 0.465382 -0.863866\nvn -0.192757 0.465382 -0.863866\nvn -0.000000 0.502557 -0.864544\nvn -0.000000 0.502557 -0.864544\nvn -0.000000 0.502557 -0.864544\nvn -0.192757 0.465382 -0.863866\nvn -0.000000 0.502557 -0.864544\nvn -0.000000 0.502557 -0.864544\nvn 0.192757 0.465382 -0.863866\nvn 0.192757 0.465382 -0.863866\nvn 0.192757 0.465382 -0.863866\nvn -0.000000 0.502557 -0.864544\nvn 0.192757 0.465382 -0.863866\nvn 0.192757 0.465382 -0.863866\nvn 0.355340 0.355341 -0.864561\nvn 0.355340 0.355341 -0.864561\nvn 0.355340 0.355341 -0.864561\nvn 0.192757 0.465382 -0.863866\nvn 0.355340 0.355341 -0.864561\nvn 0.355340 0.355341 -0.864561\nvn 0.465382 0.192757 -0.863866\nvn 0.465382 0.192757 -0.863866\nvn 0.465382 0.192757 -0.863866\nvn 0.355340 0.355341 -0.864561\nvn 0.465382 0.192757 -0.863866\nvn 0.465382 0.192757 -0.863866\nvn 0.502521 0.000000 -0.864565\nvn 0.502521 0.000000 -0.864565\nvn 0.502521 0.000000 -0.864565\nvn 0.465382 0.192757 -0.863866\nvn 0.502521 0.000000 -0.864565\nvn 0.502521 0.000000 -0.864565\nvn 0.465358 -0.192760 -0.863878\nvn 0.465358 -0.192760 -0.863878\nvn 0.465385 -0.192727 -0.863871\nvn 0.502521 0.000000 -0.864565\nvn 0.465385 -0.192727 -0.863871\nvn 0.465358 -0.192760 -0.863878\nvn 0.355341 -0.355341 -0.864561\nvn 0.355341 -0.355341 -0.864561\nvn 0.355341 -0.355341 -0.864561\nvn 0.465385 -0.192727 -0.863871\nvn 0.355341 -0.355341 -0.864561\nvn 0.355341 -0.355341 -0.864561\nvn 0.192757 -0.465382 -0.863866\nvn 0.192757 -0.465382 -0.863866\nvn 0.192757 -0.465382 -0.863866\nvn 0.355341 -0.355341 -0.864561\nvn 0.192757 -0.465382 -0.863866\nvn 0.192757 -0.465382 -0.863866\nvn 0.000000 -0.502521 -0.864565\nvn 0.000000 -0.502521 -0.864565\nvn 0.000000 -0.502521 -0.864565\nvn 0.192757 -0.465382 -0.863866\nvn 0.000000 -0.502521 -0.864565\nvn 0.000000 -0.502521 -0.864565\nvn -0.192757 -0.465382 -0.863866\nvn -0.192757 -0.465382 -0.863866\nvn -0.192757 -0.465382 -0.863866\nvn 0.000000 -0.502521 -0.864565\nvn -0.192757 -0.465382 -0.863866\nvn -0.192757 -0.465382 -0.863866\nvn -0.355363 -0.355364 -0.864542\nvn -0.355363 -0.355364 -0.864542\nvn -0.355363 -0.355364 -0.864542\nvn -0.192757 -0.465382 -0.863866\nvn -0.355363 -0.355364 -0.864542\nvn -0.355363 -0.355364 -0.864542\nvn -0.465382 -0.192757 -0.863866\nvn -0.465382 -0.192757 -0.863866\nvn -0.465382 -0.192757 -0.863866\nvn -0.355363 -0.355364 -0.864542\nvn -0.465382 -0.192757 -0.863866\nvn -0.465382 -0.192757 -0.863866\nvn -0.502521 -0.000000 -0.864565\nvn -0.502521 -0.000000 -0.864565\nvn -0.502521 -0.000000 -0.864565\nvn -0.465382 -0.192757 -0.863866\nvn -0.502521 -0.000000 -0.864565\nvn -0.502521 -0.000000 -0.864565\nvn -0.465382 0.192757 -0.863866\nvn -0.465382 0.192757 -0.863866\nvn -0.465382 0.192757 -0.863866\nvn -0.502521 -0.000000 -0.864565\nvn -0.465382 0.192757 -0.863866\nvn -0.465382 0.192757 -0.863866\nvn -0.355363 0.355363 -0.864543\nvn -0.355363 0.355363 -0.864543\nvn -0.355367 0.355337 -0.864552\nvn -0.465382 0.192757 -0.863866\nvn -0.000000 0.495994 0.868326\nvn -0.000000 0.495994 0.868326\nvn -0.190259 0.459350 0.867640\nvn -0.190259 0.459350 0.867640\nvn -0.190259 0.459350 0.867640\nvn -0.000000 0.495994 0.868326\nvn -0.190259 0.459350 0.867640\nvn -0.190259 0.459350 0.867640\nvn -0.350723 0.350723 0.868324\nvn -0.350723 0.350723 0.868324\nvn -0.350723 0.350723 0.868324\nvn -0.190259 0.459350 0.867640\nvn -0.350723 0.350723 0.868324\nvn -0.350723 0.350723 0.868324\nvn -0.459316 0.190227 0.867665\nvn -0.459316 0.190227 0.867665\nvn -0.459316 0.190227 0.867665\nvn -0.350723 0.350723 0.868324\nvn -0.459316 0.190227 0.867665\nvn -0.459316 0.190227 0.867665\nvn -0.495994 -0.000000 0.868326\nvn -0.495994 -0.000000 0.868326\nvn -0.495994 -0.000000 0.868326\nvn -0.459316 0.190227 0.867665\nvn -0.495994 -0.000000 0.868326\nvn -0.495994 -0.000000 0.868326\nvn -0.459316 -0.190227 0.867665\nvn -0.459316 -0.190227 0.867665\nvn -0.459316 -0.190227 0.867665\nvn -0.495994 -0.000000 0.868326\nvn -0.459316 -0.190227 0.867665\nvn -0.459316 -0.190227 0.867665\nvn -0.350723 -0.350723 0.868324\nvn -0.350723 -0.350723 0.868324\nvn -0.350723 -0.350723 0.868324\nvn -0.459316 -0.190227 0.867665\nvn -0.350723 -0.350723 0.868324\nvn -0.350723 -0.350723 0.868324\nvn -0.190227 -0.459316 0.867665\nvn -0.190227 -0.459316 0.867665\nvn -0.190227 -0.459316 0.867665\nvn -0.350723 -0.350723 0.868324\nvn -0.190227 -0.459316 0.867665\nvn -0.190227 -0.459316 0.867665\nvn 0.000000 -0.495935 0.868360\nvn 0.000000 -0.495935 0.868360\nvn 0.000000 -0.495935 0.868360\nvn -0.190227 -0.459316 0.867665\nvn 0.000000 -0.495935 0.868360\nvn 0.000000 -0.495935 0.868360\nvn 0.190227 -0.459316 0.867665\nvn 0.190227 -0.459316 0.867665\nvn 0.190257 -0.459313 0.867660\nvn 0.000000 -0.495935 0.868360\nvn 0.190257 -0.459313 0.867660\nvn 0.190227 -0.459316 0.867665\nvn 0.350723 -0.350723 0.868324\nvn 0.350723 -0.350723 0.868324\nvn 0.350723 -0.350723 0.868324\nvn 0.190257 -0.459313 0.867660\nvn 0.350723 -0.350723 0.868324\nvn 0.350723 -0.350723 0.868324\nvn 0.459371 -0.190285 0.867623\nvn 0.459371 -0.190285 0.867623\nvn 0.459371 -0.190285 0.867623\nvn 0.350723 -0.350723 0.868324\nvn 0.459371 -0.190285 0.867623\nvn 0.459371 -0.190285 0.867623\nvn 0.495994 0.000000 0.868326\nvn 0.495994 0.000000 0.868326\nvn 0.495994 0.000000 0.868326\nvn 0.459371 -0.190285 0.867623\nvn 0.495994 0.000000 0.868326\nvn 0.495994 0.000000 0.868326\nvn 0.459316 0.190227 0.867665\nvn 0.459316 0.190227 0.867665\nvn 0.459316 0.190227 0.867665\nvn 0.495994 0.000000 0.868326\nvn 0.459316 0.190227 0.867665\nvn 0.459316 0.190227 0.867665\nvn 0.350691 0.350691 0.868350\nvn 0.350691 0.350691 0.868350\nvn 0.350664 0.350695 0.868359\nvn 0.459316 0.190227 0.867665\nvn 0.350664 0.350695 0.868359\nvn 0.350691 0.350691 0.868350\nvn 0.190288 0.459347 0.867635\nvn 0.190288 0.459347 0.867635\nvn 0.190285 0.459371 0.867623\nvn 0.350664 0.350695 0.868359\nvn 0.190285 0.459371 0.867623\nvn 0.190288 0.459347 0.867635\nvn -0.000000 0.495994 0.868326\nvn -0.000000 0.495994 0.868326\nvn -0.000000 0.495994 0.868326\nvn 0.190285 0.459371 0.867623\nvn -0.350723 0.350723 -0.868324\nvn -0.350723 0.350723 -0.868324\nvn -0.190259 0.459350 -0.867640\nvn -0.190259 0.459350 -0.867640\nvn -0.190259 0.459350 -0.867640\nvn -0.350723 0.350723 -0.868324\nvn -0.190259 0.459350 -0.867640\nvn -0.190259 0.459350 -0.867640\nvn -0.000000 0.495994 -0.868326\nvn -0.000000 0.495994 -0.868326\nvn -0.000000 0.495994 -0.868326\nvn -0.190259 0.459350 -0.867640\nvn -0.000000 0.495994 -0.868326\nvn -0.000000 0.495994 -0.868326\nvn 0.190256 0.459374 -0.867628\nvn 0.190256 0.459374 -0.867628\nvn 0.190256 0.459374 -0.867628\nvn -0.000000 0.495994 -0.868326\nvn 0.190256 0.459374 -0.867628\nvn 0.190256 0.459374 -0.867628\nvn 0.350695 0.350664 -0.868359\nvn 0.350695 0.350664 -0.868359\nvn 0.350691 0.350691 -0.868350\nvn 0.190256 0.459374 -0.867628\nvn 0.350691 0.350691 -0.868350\nvn 0.350695 0.350664 -0.868359\nvn 0.459350 0.190259 -0.867640\nvn 0.459350 0.190259 -0.867640\nvn 0.459350 0.190259 -0.867640\nvn 0.350691 0.350691 -0.868350\nvn 0.459350 0.190259 -0.867640\nvn 0.459350 0.190259 -0.867640\nvn 0.495994 0.000000 -0.868326\nvn 0.495994 0.000000 -0.868326\nvn 0.495994 0.000000 -0.868326\nvn 0.459350 0.190259 -0.867640\nvn 0.495994 0.000000 -0.868326\nvn 0.495994 0.000000 -0.868326\nvn 0.459374 -0.190256 -0.867628\nvn 0.459374 -0.190256 -0.867628\nvn 0.459374 -0.190256 -0.867628\nvn 0.495994 0.000000 -0.868326\nvn 0.459374 -0.190256 -0.867628\nvn 0.459374 -0.190256 -0.867628\nvn 0.350723 -0.350723 -0.868324\nvn 0.350723 -0.350723 -0.868324\nvn 0.350723 -0.350723 -0.868324\nvn 0.459374 -0.190256 -0.867628\nvn 0.350723 -0.350723 -0.868324\nvn 0.350723 -0.350723 -0.868324\nvn 0.190227 -0.459316 -0.867665\nvn 0.190227 -0.459316 -0.867665\nvn 0.190227 -0.459316 -0.867665\nvn 0.350723 -0.350723 -0.868324\nvn 0.190227 -0.459316 -0.867665\nvn 0.190227 -0.459316 -0.867665\nvn 0.000000 -0.496054 -0.868292\nvn 0.000000 -0.496054 -0.868292\nvn 0.000000 -0.496054 -0.868292\nvn 0.190227 -0.459316 -0.867665\nvn 0.000000 -0.496054 -0.868292\nvn 0.000000 -0.496054 -0.868292\nvn -0.190256 -0.459314 -0.867660\nvn -0.190256 -0.459314 -0.867660\nvn -0.190256 -0.459314 -0.867660\nvn 0.000000 -0.496054 -0.868292\nvn -0.190256 -0.459314 -0.867660\nvn -0.190256 -0.459314 -0.867660\nvn -0.350723 -0.350723 -0.868324\nvn -0.350723 -0.350723 -0.868324\nvn -0.350723 -0.350723 -0.868324\nvn -0.190256 -0.459314 -0.867660\nvn -0.350723 -0.350723 -0.868324\nvn -0.350723 -0.350723 -0.868324\nvn -0.459316 -0.190227 -0.867665\nvn -0.459316 -0.190227 -0.867665\nvn -0.459316 -0.190227 -0.867665\nvn -0.350723 -0.350723 -0.868324\nvn -0.459316 -0.190227 -0.867665\nvn -0.459316 -0.190227 -0.867665\nvn -0.495994 -0.000000 -0.868326\nvn -0.495994 -0.000000 -0.868326\nvn -0.495994 -0.000000 -0.868326\nvn -0.459316 -0.190227 -0.867665\nvn -0.495994 -0.000000 -0.868326\nvn -0.495994 -0.000000 -0.868326\nvn -0.459316 0.190227 -0.867665\nvn -0.459316 0.190227 -0.867665\nvn -0.459314 0.190256 -0.867660\nvn -0.495994 -0.000000 -0.868326\nvn -0.459314 0.190256 -0.867660\nvn -0.459316 0.190227 -0.867665\nvn -0.350723 0.350723 -0.868324\nvn -0.350723 0.350723 -0.868324\nvn -0.350723 0.350723 -0.868324\nvn -0.459314 0.190256 -0.867660\nvn -0.312458 0.754379 0.577306\nvn -0.000000 0.815674 0.578512\nvn -0.000000 0.815663 0.578527\nvn -0.000000 0.815663 0.578527\nvn -0.312458 0.754379 0.577306\nvn -0.312458 0.754379 0.577306\nvn -0.312458 0.754379 0.577306\nvn -0.312458 0.754379 0.577306\nvn -0.576750 0.576749 0.578550\nvn -0.576750 0.576749 0.578550\nvn -0.576750 0.576749 0.578550\nvn -0.312458 0.754379 0.577306\nvn -0.754353 0.312459 0.577339\nvn -0.576750 0.576749 0.578550\nvn -0.576750 0.576749 0.578550\nvn -0.576750 0.576749 0.578550\nvn -0.754353 0.312459 0.577339\nvn -0.754353 0.312459 0.577339\nvn -0.754353 0.312459 0.577339\nvn -0.754353 0.312459 0.577339\nvn -0.815649 -0.000000 0.578547\nvn -0.815649 -0.000000 0.578547\nvn -0.815663 -0.000000 0.578527\nvn -0.754353 0.312459 0.577339\nvn -0.754353 -0.312460 0.577339\nvn -0.815663 -0.000000 0.578527\nvn -0.815649 -0.000000 0.578547\nvn -0.815649 -0.000000 0.578547\nvn -0.754353 -0.312460 0.577339\nvn -0.754353 -0.312460 0.577339\nvn -0.754353 -0.312460 0.577339\nvn -0.754353 -0.312460 0.577339\nvn -0.576759 -0.576760 0.578530\nvn -0.576759 -0.576760 0.578530\nvn -0.576759 -0.576760 0.578530\nvn -0.754353 -0.312460 0.577339\nvn -0.312452 -0.754366 0.577326\nvn -0.576759 -0.576760 0.578530\nvn -0.576759 -0.576760 0.578530\nvn -0.576759 -0.576760 0.578530\nvn -0.312452 -0.754366 0.577326\nvn -0.312452 -0.754366 0.577326\nvn -0.312452 -0.754366 0.577326\nvn -0.312452 -0.754366 0.577326\nvn 0.000000 -0.815663 0.578527\nvn 0.000000 -0.815663 0.578527\nvn 0.000000 -0.815663 0.578527\nvn -0.312452 -0.754366 0.577326\nvn 0.312453 -0.754366 0.577326\nvn 0.000000 -0.815663 0.578527\nvn 0.000000 -0.815663 0.578527\nvn 0.000000 -0.815663 0.578527\nvn 0.312453 -0.754366 0.577326\nvn 0.312453 -0.754366 0.577326\nvn 0.576750 -0.576749 0.578550\nvn 0.576750 -0.576749 0.578550\nvn 0.312453 -0.754366 0.577326\nvn 0.312453 -0.754366 0.577326\nvn 0.312453 -0.754366 0.577326\nvn 0.576750 -0.576749 0.578550\nvn 0.754353 -0.312459 0.577339\nvn 0.576750 -0.576749 0.578550\nvn 0.576750 -0.576749 0.578550\nvn 0.576750 -0.576749 0.578550\nvn 0.754353 -0.312459 0.577339\nvn 0.754353 -0.312459 0.577339\nvn 0.754353 -0.312459 0.577339\nvn 0.754353 -0.312459 0.577339\nvn 0.815649 0.000000 0.578547\nvn 0.815649 0.000000 0.578547\nvn 0.815663 0.000000 0.578527\nvn 0.754353 -0.312459 0.577339\nvn 0.754353 0.312460 0.577339\nvn 0.815663 0.000000 0.578527\nvn 0.815649 0.000000 0.578547\nvn 0.815649 0.000000 0.578547\nvn 0.754353 0.312460 0.577339\nvn 0.754353 0.312460 0.577339\nvn 0.754353 0.312460 0.577339\nvn 0.754353 0.312460 0.577339\nvn 0.576759 0.576760 0.578530\nvn 0.576759 0.576760 0.578530\nvn 0.576749 0.576750 0.578550\nvn 0.754353 0.312460 0.577339\nvn 0.312458 0.754380 0.577306\nvn 0.576749 0.576750 0.578550\nvn 0.576759 0.576760 0.578530\nvn 0.576759 0.576760 0.578530\nvn 0.312458 0.754380 0.577306\nvn 0.312458 0.754380 0.577306\nvn -0.000000 0.815674 0.578512\nvn 0.312458 0.754380 0.577306\nvn 0.312458 0.754380 0.577306\nvn 0.312458 0.754380 0.577306\nvn -0.000000 0.815663 0.578527\nvn -0.000000 0.815674 0.578512\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.382681 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923891 0.382656 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923891 0.382656 -0.000000\nvn 0.707122 0.707092 -0.000000\nvn 0.707122 0.707092 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707122 0.707092 -0.000000\nvn 0.707122 0.707092 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.382682 -0.923880 0.000031\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.382682 -0.923880 0.000031\nvn 0.382682 -0.923880 0.000031\nvn -0.581371 0.581371 0.569224\nvn -0.759998 0.314779 0.568610\nvn -0.759991 0.314806 0.568605\nvn -0.822189 -0.000000 0.569215\nvn -0.759991 0.314806 0.568605\nvn -0.759998 0.314779 0.568610\nvn -0.759998 0.314779 0.568610\nvn -0.822189 -0.000000 0.569215\nvn -0.822189 -0.000000 0.569215\nvn -0.822189 -0.000000 0.569215\nvn -0.759991 -0.314806 0.568605\nvn -0.759991 -0.314806 0.568605\nvn -0.759991 -0.314806 0.568605\nvn -0.822189 -0.000000 0.569215\nvn -0.822189 -0.000000 0.569215\nvn -0.581371 -0.581371 0.569224\nvn -0.759991 -0.314806 0.568605\nvn -0.759991 -0.314806 0.568605\nvn -0.759991 -0.314806 0.568605\nvn -0.581371 -0.581371 0.569224\nvn -0.581371 -0.581371 0.569224\nvn -0.581371 -0.581371 0.569224\nvn -0.314804 -0.760017 0.568571\nvn -0.314804 -0.760017 0.568571\nvn -0.314804 -0.760017 0.568571\nvn -0.581371 -0.581371 0.569224\nvn -0.581371 -0.581371 0.569224\nvn 0.000000 -0.822189 0.569215\nvn -0.314804 -0.760017 0.568571\nvn -0.314804 -0.760017 0.568571\nvn -0.314804 -0.760017 0.568571\nvn 0.000000 -0.822189 0.569215\nvn 0.000000 -0.822189 0.569215\nvn 0.000000 -0.822189 0.569215\nvn 0.314805 -0.760017 0.568571\nvn 0.314805 -0.760017 0.568571\nvn 0.314805 -0.760017 0.568571\nvn 0.000000 -0.822189 0.569215\nvn 0.000000 -0.822189 0.569215\nvn -0.759991 0.314806 0.568605\nvn -0.581371 0.581371 0.569224\nvn -0.581371 0.581371 0.569224\nvn -0.314772 0.760011 0.568597\nvn -0.581371 0.581371 0.569224\nvn -0.581371 0.581371 0.569224\nvn -0.581371 0.581371 0.569224\nvn -0.314779 0.759998 0.568610\nvn -0.314772 0.760011 0.568597\nvn -0.000000 0.822189 0.569215\nvn -0.314772 0.760011 0.568597\nvn -0.314779 0.759998 0.568610\nvn -0.314779 0.759998 0.568610\nvn -0.000000 0.822189 0.569215\nvn -0.000000 0.822189 0.569215\nvn 0.314806 0.759991 0.568604\nvn -0.000000 0.822189 0.569215\nvn -0.000000 0.822189 0.569215\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707122 -0.707091 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707122 -0.707091 0.000000\nvn 0.382682 -0.923880 0.000031\nvn 0.707122 -0.707091 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.382682 -0.923880 0.000031\nvn 0.382682 -0.923880 0.000031\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.314805 -0.760017 0.568571\nvn 0.581371 -0.581371 0.569224\nvn 0.581371 -0.581371 0.569224\nvn 0.581371 -0.581371 0.569224\nvn 0.314805 -0.760017 0.568571\nvn 0.314805 -0.760017 0.568571\nvn 0.581371 -0.581371 0.569224\nvn 0.760017 -0.314804 0.568571\nvn 0.760017 -0.314804 0.568571\nvn 0.760017 -0.314804 0.568571\nvn 0.581371 -0.581371 0.569224\nvn 0.581371 -0.581371 0.569224\nvn 0.822189 0.000000 0.569215\nvn 0.760017 -0.314804 0.568571\nvn 0.760017 -0.314804 0.568571\nvn 0.760017 -0.314804 0.568571\nvn 0.822189 0.000000 0.569215\nvn 0.822189 0.000000 0.569215\nvn 0.822189 0.000000 0.569215\nvn 0.760017 0.314805 0.568571\nvn 0.760017 0.314805 0.568571\nvn 0.760017 0.314805 0.568571\nvn 0.822189 0.000000 0.569215\nvn 0.822189 0.000000 0.569215\nvn 0.581371 0.581371 0.569224\nvn 0.760017 0.314805 0.568571\nvn 0.760017 0.314805 0.568571\nvn 0.760017 0.314805 0.568571\nvn 0.581371 0.581371 0.569224\nvn 0.581371 0.581371 0.569224\nvn 0.314806 0.759991 0.568604\nvn 0.581371 0.581371 0.569224\nvn 0.581371 0.581371 0.569224\nvn 0.581371 0.581371 0.569224\nvn 0.314806 0.759991 0.568604\nvn 0.314806 0.759991 0.568604\nvn -0.000000 0.822189 0.569215\nvn 0.314806 0.759991 0.568604\nvn 0.314806 0.759991 0.568604\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.707092 -0.707122 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707092 -0.707122 0.000000\nvn 0.707092 -0.707122 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.382681 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 0.510095 0.860118\nvn -0.000000 0.510095 0.860118\nvn -0.195445 0.471827 0.859756\nvn -0.195445 0.471827 0.859756\nvn -0.195416 0.471830 0.859761\nvn -0.000000 0.510095 0.860118\nvn -0.195416 0.471830 0.859761\nvn -0.195445 0.471827 0.859756\nvn -0.360679 0.360679 0.860129\nvn -0.360679 0.360679 0.860129\nvn -0.360679 0.360679 0.860129\nvn -0.195416 0.471830 0.859761\nvn -0.360679 0.360679 0.860129\nvn -0.360679 0.360679 0.860129\nvn -0.471827 0.195445 0.859756\nvn -0.471827 0.195445 0.859756\nvn -0.471830 0.195415 0.859761\nvn -0.360679 0.360679 0.860129\nvn -0.471830 0.195415 0.859761\nvn -0.471827 0.195445 0.859756\nvn -0.510073 -0.000000 0.860131\nvn -0.510073 -0.000000 0.860131\nvn -0.510073 -0.000000 0.860131\nvn -0.471830 0.195415 0.859761\nvn -0.510073 -0.000000 0.860131\nvn -0.510073 -0.000000 0.860131\nvn -0.471827 -0.195445 0.859756\nvn -0.471827 -0.195445 0.859756\nvn -0.471830 -0.195416 0.859761\nvn -0.510073 -0.000000 0.860131\nvn -0.471830 -0.195416 0.859761\nvn -0.471827 -0.195445 0.859756\nvn -0.360678 -0.360679 0.860129\nvn -0.360678 -0.360679 0.860129\nvn -0.360678 -0.360679 0.860129\nvn -0.471830 -0.195416 0.859761\nvn -0.360678 -0.360679 0.860129\nvn -0.360678 -0.360679 0.860129\nvn -0.195413 -0.471793 0.859782\nvn -0.195413 -0.471793 0.859782\nvn -0.195413 -0.471793 0.859782\nvn -0.360678 -0.360679 0.860129\nvn -0.195413 -0.471793 0.859782\nvn -0.195413 -0.471793 0.859782\nvn 0.000000 -0.510073 0.860131\nvn 0.000000 -0.510073 0.860131\nvn 0.000000 -0.510073 0.860131\nvn -0.195413 -0.471793 0.859782\nvn 0.000000 -0.510073 0.860131\nvn 0.000000 -0.510073 0.860131\nvn 0.195445 -0.471827 0.859756\nvn 0.195445 -0.471827 0.859756\nvn 0.195416 -0.471829 0.859761\nvn 0.000000 -0.510073 0.860131\nvn 0.195416 -0.471829 0.859761\nvn 0.195445 -0.471827 0.859756\nvn 0.360673 -0.360642 0.860146\nvn 0.360673 -0.360642 0.860146\nvn 0.360673 -0.360642 0.860146\nvn 0.195416 -0.471829 0.859761\nvn 0.360673 -0.360642 0.860146\nvn 0.360673 -0.360642 0.860146\nvn 0.471830 -0.195415 0.859761\nvn 0.471830 -0.195415 0.859761\nvn 0.471827 -0.195445 0.859756\nvn 0.360673 -0.360642 0.860146\nvn 0.471827 -0.195445 0.859756\nvn 0.471830 -0.195415 0.859761\nvn 0.510073 0.000000 0.860131\nvn 0.510073 0.000000 0.860131\nvn 0.510073 0.000000 0.860131\nvn 0.471827 -0.195445 0.859756\nvn 0.510073 0.000000 0.860131\nvn 0.510073 0.000000 0.860131\nvn 0.471803 0.195448 0.859769\nvn 0.471803 0.195448 0.859769\nvn 0.471803 0.195448 0.859769\nvn 0.510073 0.000000 0.860131\nvn 0.471803 0.195448 0.859769\nvn 0.471803 0.195448 0.859769\nvn 0.360678 0.360679 0.860129\nvn 0.360678 0.360679 0.860129\nvn 0.360678 0.360679 0.860129\nvn 0.471803 0.195448 0.859769\nvn 0.360678 0.360679 0.860129\nvn 0.360678 0.360679 0.860129\nvn 0.195445 0.471827 0.859756\nvn 0.195445 0.471827 0.859756\nvn 0.195445 0.471827 0.859756\nvn 0.360678 0.360679 0.860129\nvn 0.195445 0.471827 0.859756\nvn 0.195445 0.471827 0.859756\nvn -0.000000 0.510095 0.860118\nvn -0.000000 0.510095 0.860118\nvn -0.000000 0.510095 0.860118\nvn 0.195445 0.471827 0.859756\nvn -0.360669 0.360669 -0.860137\nvn -0.360669 0.360669 -0.860137\nvn -0.195416 0.471829 -0.859761\nvn -0.195416 0.471829 -0.859761\nvn -0.195416 0.471829 -0.859761\nvn -0.360669 0.360669 -0.860137\nvn -0.195416 0.471829 -0.859761\nvn -0.195416 0.471829 -0.859761\nvn -0.000000 0.510073 -0.860131\nvn -0.000000 0.510073 -0.860131\nvn -0.000000 0.510073 -0.860131\nvn -0.195416 0.471829 -0.859761\nvn -0.000000 0.510073 -0.860131\nvn -0.000000 0.510073 -0.860131\nvn 0.195415 0.471830 -0.859761\nvn 0.195415 0.471830 -0.859761\nvn 0.195415 0.471830 -0.859761\nvn -0.000000 0.510073 -0.860131\nvn 0.195415 0.471830 -0.859761\nvn 0.195415 0.471830 -0.859761\nvn 0.360669 0.360669 -0.860137\nvn 0.360669 0.360669 -0.860137\nvn 0.360669 0.360669 -0.860137\nvn 0.195415 0.471830 -0.859761\nvn 0.360669 0.360669 -0.860137\nvn 0.360669 0.360669 -0.860137\nvn 0.471793 0.195413 -0.859782\nvn 0.471793 0.195413 -0.859782\nvn 0.471793 0.195413 -0.859782\nvn 0.360669 0.360669 -0.860137\nvn 0.471793 0.195413 -0.859782\nvn 0.471793 0.195413 -0.859782\nvn 0.510059 0.000000 -0.860139\nvn 0.510059 0.000000 -0.860139\nvn 0.510059 0.000000 -0.860139\nvn 0.471793 0.195413 -0.859782\nvn 0.510059 0.000000 -0.860139\nvn 0.510059 0.000000 -0.860139\nvn 0.471794 -0.195413 -0.859782\nvn 0.471794 -0.195413 -0.859782\nvn 0.471794 -0.195413 -0.859782\nvn 0.510059 0.000000 -0.860139\nvn 0.471794 -0.195413 -0.859782\nvn 0.471794 -0.195413 -0.859782\nvn 0.360647 -0.360646 -0.860156\nvn 0.360647 -0.360646 -0.860156\nvn 0.360647 -0.360646 -0.860156\nvn 0.471794 -0.195413 -0.859782\nvn 0.360647 -0.360646 -0.860156\nvn 0.360647 -0.360646 -0.860156\nvn 0.195419 -0.471806 -0.859774\nvn 0.195419 -0.471806 -0.859774\nvn 0.195448 -0.471803 -0.859769\nvn 0.360647 -0.360646 -0.860156\nvn 0.195448 -0.471803 -0.859769\nvn 0.195419 -0.471806 -0.859774\nvn 0.000000 -0.510059 -0.860139\nvn 0.000000 -0.510059 -0.860139\nvn 0.000000 -0.510059 -0.860139\nvn 0.195448 -0.471803 -0.859769\nvn 0.000000 -0.510059 -0.860139\nvn 0.000000 -0.510059 -0.860139\nvn -0.195413 -0.471794 -0.859782\nvn -0.195413 -0.471794 -0.859782\nvn -0.195413 -0.471794 -0.859782\nvn 0.000000 -0.510059 -0.860139\nvn -0.195413 -0.471794 -0.859782\nvn -0.195413 -0.471794 -0.859782\nvn -0.360642 -0.360673 -0.860146\nvn -0.360642 -0.360673 -0.860146\nvn -0.360642 -0.360673 -0.860146\nvn -0.195413 -0.471794 -0.859782\nvn -0.360642 -0.360673 -0.860146\nvn -0.360642 -0.360673 -0.860146\nvn -0.471793 -0.195413 -0.859782\nvn -0.471793 -0.195413 -0.859782\nvn -0.471793 -0.195413 -0.859782\nvn -0.360642 -0.360673 -0.860146\nvn -0.471793 -0.195413 -0.859782\nvn -0.471793 -0.195413 -0.859782\nvn -0.510059 -0.000000 -0.860139\nvn -0.510059 -0.000000 -0.860139\nvn -0.510059 -0.000000 -0.860139\nvn -0.471793 -0.195413 -0.859782\nvn -0.510059 -0.000000 -0.860139\nvn -0.510059 -0.000000 -0.860139\nvn -0.471794 0.195413 -0.859782\nvn -0.471794 0.195413 -0.859782\nvn -0.471806 0.195418 -0.859774\nvn -0.510059 -0.000000 -0.860139\nvn -0.471806 0.195418 -0.859774\nvn -0.471794 0.195413 -0.859782\nvn -0.360669 0.360669 -0.860137\nvn -0.360669 0.360669 -0.860137\nvn -0.360669 0.360669 -0.860137\nvn -0.471806 0.195418 -0.859774\nvn -0.000000 0.511661 0.859187\nvn -0.000000 0.511684 0.859174\nvn -0.196026 0.473295 0.858816\nvn -0.196026 0.473295 0.858816\nvn -0.196026 0.473295 0.858816\nvn -0.000000 0.511661 0.859187\nvn -0.196026 0.473295 0.858816\nvn -0.196026 0.473295 0.858816\nvn -0.361807 0.361807 0.859181\nvn -0.361807 0.361807 0.859181\nvn -0.361807 0.361807 0.859181\nvn -0.196026 0.473295 0.858816\nvn -0.361807 0.361807 0.859181\nvn -0.361807 0.361807 0.859181\nvn -0.473259 0.196024 0.858837\nvn -0.473259 0.196024 0.858837\nvn -0.473259 0.196024 0.858837\nvn -0.361807 0.361807 0.859181\nvn -0.473259 0.196024 0.858837\nvn -0.473259 0.196024 0.858837\nvn -0.511625 -0.000000 0.859209\nvn -0.511625 -0.000000 0.859209\nvn -0.511625 -0.000000 0.859209\nvn -0.473259 0.196024 0.858837\nvn -0.511625 -0.000000 0.859209\nvn -0.511625 -0.000000 0.859209\nvn -0.473259 -0.196024 0.858837\nvn -0.473259 -0.196024 0.858837\nvn -0.473259 -0.196024 0.858837\nvn -0.511625 -0.000000 0.859209\nvn -0.473259 -0.196024 0.858837\nvn -0.473259 -0.196024 0.858837\nvn -0.361807 -0.361807 0.859181\nvn -0.361807 -0.361807 0.859181\nvn -0.361811 -0.361780 0.859190\nvn -0.473259 -0.196024 0.858837\nvn -0.361811 -0.361780 0.859190\nvn -0.361807 -0.361807 0.859181\nvn -0.196024 -0.473259 0.858837\nvn -0.196024 -0.473259 0.858837\nvn -0.196024 -0.473259 0.858837\nvn -0.361811 -0.361780 0.859190\nvn -0.196024 -0.473259 0.858837\nvn -0.196024 -0.473259 0.858837\nvn 0.000000 -0.511661 0.859188\nvn 0.000000 -0.511661 0.859188\nvn 0.000000 -0.511661 0.859188\nvn -0.196024 -0.473259 0.858837\nvn 0.000000 -0.511661 0.859188\nvn 0.000000 -0.511661 0.859188\nvn 0.196024 -0.473259 0.858837\nvn 0.196024 -0.473259 0.858837\nvn 0.196024 -0.473259 0.858837\nvn 0.000000 -0.511661 0.859188\nvn 0.196024 -0.473259 0.858837\nvn 0.196024 -0.473259 0.858837\nvn 0.361807 -0.361807 0.859181\nvn 0.361807 -0.361807 0.859181\nvn 0.361807 -0.361807 0.859181\nvn 0.196024 -0.473259 0.858837\nvn 0.361807 -0.361807 0.859181\nvn 0.361807 -0.361807 0.859181\nvn 0.473259 -0.196024 0.858837\nvn 0.473259 -0.196024 0.858837\nvn 0.473259 -0.196024 0.858837\nvn 0.361807 -0.361807 0.859181\nvn 0.473259 -0.196024 0.858837\nvn 0.473259 -0.196024 0.858837\nvn 0.511625 0.000000 0.859209\nvn 0.511625 0.000000 0.859209\nvn 0.511625 0.000000 0.859209\nvn 0.473259 -0.196024 0.858837\nvn 0.511625 0.000000 0.859209\nvn 0.511625 0.000000 0.859209\nvn 0.473259 0.196024 0.858837\nvn 0.473259 0.196024 0.858837\nvn 0.473259 0.196024 0.858837\nvn 0.511625 0.000000 0.859209\nvn 0.473259 0.196024 0.858837\nvn 0.473259 0.196024 0.858837\nvn 0.361775 0.361775 0.859208\nvn 0.361775 0.361775 0.859208\nvn 0.361775 0.361775 0.859208\nvn 0.473259 0.196024 0.858837\nvn 0.361775 0.361775 0.859208\nvn 0.361775 0.361775 0.859208\nvn 0.196055 0.473292 0.858811\nvn 0.196055 0.473292 0.858811\nvn 0.196055 0.473292 0.858811\nvn 0.361775 0.361775 0.859208\nvn 0.196055 0.473292 0.858811\nvn 0.196055 0.473292 0.858811\nvn -0.000000 0.511684 0.859174\nvn -0.000000 0.511684 0.859174\nvn -0.000000 0.511661 0.859187\nvn 0.196055 0.473292 0.858811\nvn -0.361807 0.361807 -0.859181\nvn -0.361807 0.361807 -0.859181\nvn -0.196024 0.473259 -0.858837\nvn -0.196024 0.473259 -0.858837\nvn -0.196024 0.473259 -0.858837\nvn -0.361807 0.361807 -0.859181\nvn -0.196024 0.473259 -0.858837\nvn -0.196024 0.473259 -0.858837\nvn -0.000000 0.511625 -0.859209\nvn -0.000000 0.511625 -0.859209\nvn -0.000000 0.511625 -0.859209\nvn -0.196024 0.473259 -0.858837\nvn -0.000000 0.511625 -0.859209\nvn -0.000000 0.511625 -0.859209\nvn 0.196026 0.473295 -0.858816\nvn 0.196026 0.473295 -0.858816\nvn 0.196026 0.473295 -0.858816\nvn -0.000000 0.511625 -0.859209\nvn 0.196026 0.473295 -0.858816\nvn 0.196026 0.473295 -0.858816\nvn 0.361775 0.361775 -0.859208\nvn 0.361775 0.361775 -0.859208\nvn 0.361775 0.361775 -0.859208\nvn 0.196026 0.473295 -0.858816\nvn 0.361775 0.361775 -0.859208\nvn 0.361775 0.361775 -0.859208\nvn 0.473259 0.196024 -0.858837\nvn 0.473259 0.196024 -0.858837\nvn 0.473259 0.196024 -0.858837\nvn 0.361775 0.361775 -0.859208\nvn 0.473259 0.196024 -0.858837\nvn 0.473259 0.196024 -0.858837\nvn 0.511648 0.000000 -0.859195\nvn 0.511648 0.000000 -0.859195\nvn 0.511648 0.000000 -0.859195\nvn 0.473259 0.196024 -0.858837\nvn 0.511648 0.000000 -0.859195\nvn 0.511648 0.000000 -0.859195\nvn 0.473259 -0.196024 -0.858837\nvn 0.473259 -0.196024 -0.858837\nvn 0.473259 -0.196024 -0.858837\nvn 0.511648 0.000000 -0.859195\nvn 0.473259 -0.196024 -0.858837\nvn 0.473259 -0.196024 -0.858837\nvn 0.361779 -0.361748 -0.859217\nvn 0.361779 -0.361748 -0.859217\nvn 0.361748 -0.361779 -0.859217\nvn 0.473259 -0.196024 -0.858837\nvn 0.361748 -0.361779 -0.859217\nvn 0.361779 -0.361748 -0.859217\nvn 0.196026 -0.473295 -0.858816\nvn 0.196026 -0.473295 -0.858816\nvn 0.196026 -0.473295 -0.858816\nvn 0.361748 -0.361779 -0.859217\nvn 0.196026 -0.473295 -0.858816\nvn 0.196026 -0.473295 -0.858816\nvn 0.000000 -0.511625 -0.859209\nvn 0.000000 -0.511625 -0.859209\nvn 0.000000 -0.511625 -0.859209\nvn 0.196026 -0.473295 -0.858816\nvn 0.000000 -0.511625 -0.859209\nvn 0.000000 -0.511625 -0.859209\nvn -0.195995 -0.473202 -0.858875\nvn -0.195995 -0.473202 -0.858875\nvn -0.195995 -0.473202 -0.858875\nvn 0.000000 -0.511625 -0.859209\nvn -0.195995 -0.473202 -0.858875\nvn -0.195995 -0.473202 -0.858875\nvn -0.361775 -0.361775 -0.859208\nvn -0.361775 -0.361775 -0.859208\nvn -0.361775 -0.361775 -0.859208\nvn -0.195995 -0.473202 -0.858875\nvn -0.361775 -0.361775 -0.859208\nvn -0.361775 -0.361775 -0.859208\nvn -0.473295 -0.196026 -0.858816\nvn -0.473295 -0.196026 -0.858816\nvn -0.473292 -0.196056 -0.858811\nvn -0.361775 -0.361775 -0.859208\nvn -0.473292 -0.196056 -0.858811\nvn -0.473295 -0.196026 -0.858816\nvn -0.511589 -0.000000 -0.859230\nvn -0.511589 -0.000000 -0.859230\nvn -0.511589 -0.000000 -0.859230\nvn -0.473292 -0.196056 -0.858811\nvn -0.511589 -0.000000 -0.859230\nvn -0.511589 -0.000000 -0.859230\nvn -0.473235 0.196027 -0.858849\nvn -0.473235 0.196027 -0.858849\nvn -0.473235 0.196027 -0.858849\nvn -0.511589 -0.000000 -0.859230\nvn -0.473235 0.196027 -0.858849\nvn -0.473235 0.196027 -0.858849\nvn -0.361807 0.361807 -0.859181\nvn -0.361807 0.361807 -0.859181\nvn -0.361807 0.361807 -0.859181\nvn -0.473235 0.196027 -0.858849\nvn 0.406480 -0.027558 -0.913244\nvn 0.399531 -0.293323 -0.868525\nvn 0.397820 -0.292772 -0.869496\nvn 0.397820 -0.292772 -0.869496\nvn 0.403744 -0.093360 -0.910096\nvn 0.406480 -0.027558 -0.913244\nvn 0.505036 0.418849 -0.754655\nvn 0.496646 0.422849 -0.757985\nvn 0.500699 0.372732 -0.781263\nvn 0.500699 0.372732 -0.781263\nvn 0.516848 0.383020 -0.765613\nvn 0.505036 0.418849 -0.754655\nvn 0.479764 0.352620 -0.803421\nvn 0.500699 0.372732 -0.781263\nvn 0.496646 0.422849 -0.757985\nvn 0.496646 0.422849 -0.757985\nvn 0.482084 0.371085 -0.793657\nvn 0.479764 0.352620 -0.803421\nvn 0.463645 0.326554 -0.823648\nvn 0.479764 0.352620 -0.803421\nvn 0.482084 0.371085 -0.793657\nvn 0.482084 0.371085 -0.793657\nvn 0.468409 0.334826 -0.817609\nvn 0.463645 0.326554 -0.823648\nvn 0.451775 0.262282 -0.852706\nvn 0.463645 0.326554 -0.823648\nvn 0.468409 0.334826 -0.817609\nvn 0.468409 0.334826 -0.817609\nvn 0.459491 0.271953 -0.845523\nvn 0.451775 0.262282 -0.852706\nvn 0.428033 0.238509 -0.871723\nvn 0.451775 0.262282 -0.852706\nvn 0.459491 0.271953 -0.845523\nvn 0.459491 0.271953 -0.845523\nvn 0.432584 0.243363 -0.868128\nvn 0.428033 0.238509 -0.871723\nvn 0.428033 0.238509 -0.871723\nvn 0.432584 0.243363 -0.868128\nvn 0.414694 0.241376 -0.877364\nvn 0.414694 0.241376 -0.877364\nvn 0.414206 0.241101 -0.877669\nvn 0.428033 0.238509 -0.871723\nvn 0.408867 0.257827 -0.875416\nvn 0.414206 0.241101 -0.877669\nvn 0.414694 0.241376 -0.877364\nvn 0.414694 0.241376 -0.877364\nvn 0.407682 0.261401 -0.874908\nvn 0.408867 0.257827 -0.875416\nvn 0.617073 -0.253067 -0.745102\nvn 0.618807 -0.197795 -0.760233\nvn 0.598268 -0.183726 -0.779949\nvn 0.598268 -0.183726 -0.779949\nvn 0.604132 -0.249404 -0.756850\nvn 0.617073 -0.253067 -0.745102\nvn 0.640016 -0.304642 -0.705388\nvn 0.617073 -0.253067 -0.745102\nvn 0.604132 -0.249404 -0.756850\nvn 0.604132 -0.249404 -0.756850\nvn 0.633119 -0.303787 -0.711950\nvn 0.640016 -0.304642 -0.705388\nvn 0.617073 -0.253067 -0.745102\nvn 0.640016 -0.304642 -0.705388\nvn 0.663256 -0.341608 -0.665880\nvn 0.663256 -0.341608 -0.665880\nvn 0.645089 -0.304492 -0.700817\nvn 0.617073 -0.253067 -0.745102\nvn 0.618807 -0.197795 -0.760233\nvn 0.617073 -0.253067 -0.745102\nvn 0.645089 -0.304492 -0.700817\nvn 0.645089 -0.304492 -0.700817\nvn 0.653165 -0.276196 -0.705047\nvn 0.618807 -0.197795 -0.760233\nvn 0.687123 -0.347895 -0.637833\nvn 0.640016 -0.304642 -0.705388\nvn 0.633119 -0.303787 -0.711950\nvn 0.633119 -0.303787 -0.711950\nvn 0.692758 -0.349751 -0.630682\nvn 0.687123 -0.347895 -0.637833\nvn 0.748490 -0.394525 -0.533022\nvn 0.687123 -0.347895 -0.637833\nvn 0.692758 -0.349751 -0.630682\nvn 0.692758 -0.349751 -0.630682\nvn 0.747833 -0.396317 -0.532614\nvn 0.748490 -0.394525 -0.533022\nvn 0.710604 -0.384233 -0.589413\nvn 0.687123 -0.347895 -0.637833\nvn 0.748490 -0.394525 -0.533022\nvn 0.710604 -0.384233 -0.589413\nvn 0.663256 -0.341608 -0.665880\nvn 0.640016 -0.304642 -0.705388\nvn 0.640016 -0.304642 -0.705388\nvn 0.687123 -0.347895 -0.637833\nvn 0.710604 -0.384233 -0.589413\nvn 0.748490 -0.394525 -0.533022\nvn 0.764349 -0.447256 -0.464469\nvn 0.710604 -0.384233 -0.589413\nvn 0.663256 -0.341608 -0.665880\nvn 0.710604 -0.384233 -0.589413\nvn 0.722820 -0.386130 -0.573092\nvn 0.722820 -0.386130 -0.573092\nvn 0.676613 -0.358846 -0.642981\nvn 0.663256 -0.341608 -0.665880\nvn 0.645089 -0.304492 -0.700817\nvn 0.663256 -0.341608 -0.665880\nvn 0.676613 -0.358846 -0.642981\nvn 0.676613 -0.358846 -0.642981\nvn 0.662597 -0.333328 -0.670715\nvn 0.645089 -0.304492 -0.700817\nvn 0.653165 -0.276196 -0.705047\nvn 0.645089 -0.304492 -0.700817\nvn 0.662597 -0.333328 -0.670715\nvn 0.662597 -0.333328 -0.670715\nvn 0.670227 -0.302717 -0.677612\nvn 0.653165 -0.276196 -0.705047\nvn 0.780293 -0.446562 -0.437864\nvn 0.722820 -0.386130 -0.573092\nvn 0.710604 -0.384233 -0.589413\nvn 0.710604 -0.384233 -0.589413\nvn 0.764349 -0.447256 -0.464469\nvn 0.780293 -0.446562 -0.437864\nvn 0.802488 -0.436935 -0.406325\nvn 0.748490 -0.394525 -0.533022\nvn 0.747833 -0.396317 -0.532614\nvn 0.764349 -0.447256 -0.464469\nvn 0.748490 -0.394525 -0.533022\nvn 0.802488 -0.436935 -0.406325\nvn 0.747833 -0.396317 -0.532614\nvn 0.781306 -0.457674 -0.424377\nvn 0.802488 -0.436935 -0.406325\nvn 0.845038 -0.447315 -0.292951\nvn 0.802488 -0.436935 -0.406325\nvn 0.781306 -0.457674 -0.424377\nvn 0.781306 -0.457674 -0.424377\nvn 0.789309 -0.531760 -0.306958\nvn 0.845038 -0.447315 -0.292951\nvn 0.919895 -0.301931 -0.250262\nvn 0.845038 -0.447315 -0.292951\nvn 0.789309 -0.531760 -0.306958\nvn 0.789309 -0.531760 -0.306958\nvn 0.875908 -0.417811 -0.241287\nvn 0.919895 -0.301931 -0.250262\nvn 0.960748 -0.200573 -0.191661\nvn 0.919895 -0.301931 -0.250262\nvn 0.875908 -0.417811 -0.241287\nvn 0.875908 -0.417811 -0.241287\nvn 0.954638 -0.216289 -0.204661\nvn 0.960748 -0.200573 -0.191661\nvn 0.919895 -0.301931 -0.250262\nvn 0.960748 -0.200573 -0.191661\nvn 0.971745 -0.182318 -0.149908\nvn 0.971745 -0.182318 -0.149908\nvn 0.948989 -0.245678 -0.197641\nvn 0.919895 -0.301931 -0.250262\nvn 0.965215 -0.201881 -0.166144\nvn 0.954638 -0.216289 -0.204661\nvn 0.875908 -0.417811 -0.241287\nvn 0.875908 -0.417811 -0.241287\nvn 0.959342 -0.250044 -0.130927\nvn 0.965215 -0.201881 -0.166144\nvn 0.977291 -0.178080 -0.114844\nvn 0.954638 -0.216289 -0.204661\nvn 0.965215 -0.201881 -0.166144\nvn 0.960748 -0.200573 -0.191661\nvn 0.954638 -0.216289 -0.204661\nvn 0.977291 -0.178080 -0.114844\nvn 0.965215 -0.201881 -0.166144\nvn 0.973768 -0.189950 -0.125280\nvn 0.977291 -0.178080 -0.114844\nvn 0.948989 -0.245678 -0.197641\nvn 0.971745 -0.182318 -0.149908\nvn 0.982011 -0.138709 -0.128119\nvn 0.982011 -0.138709 -0.128119\nvn 0.962621 -0.215316 -0.164318\nvn 0.948989 -0.245678 -0.197641\nvn 0.984095 -0.167551 -0.059024\nvn 0.971745 -0.182318 -0.149908\nvn 0.960748 -0.200573 -0.191661\nvn 0.960748 -0.200573 -0.191661\nvn 0.980989 -0.178356 -0.076482\nvn 0.984095 -0.167551 -0.059024\nvn 0.977291 -0.178080 -0.114844\nvn 0.980989 -0.178356 -0.076482\nvn 0.960748 -0.200573 -0.191661\nvn 0.987481 -0.144264 -0.063785\nvn 0.982011 -0.138709 -0.128119\nvn 0.971745 -0.182318 -0.149908\nvn 0.971745 -0.182318 -0.149908\nvn 0.984095 -0.167551 -0.059024\nvn 0.987481 -0.144264 -0.063785\nvn 0.948989 -0.245678 -0.197641\nvn 0.923208 -0.323779 -0.207012\nvn 0.919895 -0.301931 -0.250262\nvn 0.923208 -0.323779 -0.207012\nvn 0.888456 -0.400203 -0.224685\nvn 0.919895 -0.301931 -0.250262\nvn 0.948989 -0.245678 -0.197641\nvn 0.962621 -0.215316 -0.164318\nvn 0.929886 -0.320420 -0.180673\nvn 0.929886 -0.320420 -0.180673\nvn 0.923208 -0.323779 -0.207012\nvn 0.948989 -0.245678 -0.197641\nvn 0.888456 -0.400203 -0.224685\nvn 0.923208 -0.323779 -0.207012\nvn 0.929886 -0.320420 -0.180673\nvn 0.929886 -0.320420 -0.180673\nvn 0.899922 -0.389120 -0.196788\nvn 0.888456 -0.400203 -0.224685\nvn 0.844017 -0.471739 -0.255143\nvn 0.888456 -0.400203 -0.224685\nvn 0.899922 -0.389120 -0.196788\nvn 0.888456 -0.400203 -0.224685\nvn 0.844017 -0.471739 -0.255143\nvn 0.845038 -0.447315 -0.292951\nvn 0.802488 -0.436935 -0.406325\nvn 0.845038 -0.447315 -0.292951\nvn 0.844017 -0.471739 -0.255143\nvn 0.844017 -0.471739 -0.255143\nvn 0.806356 -0.485138 -0.338278\nvn 0.802488 -0.436935 -0.406325\nvn 0.806356 -0.485138 -0.338278\nvn 0.844017 -0.471739 -0.255143\nvn 0.862341 -0.454365 -0.223429\nvn 0.899922 -0.389120 -0.196788\nvn 0.862341 -0.454365 -0.223429\nvn 0.844017 -0.471739 -0.255143\nvn 0.862341 -0.454365 -0.223429\nvn 0.821221 -0.488160 -0.295460\nvn 0.806356 -0.485138 -0.338278\nvn 0.845038 -0.447315 -0.292951\nvn 0.919895 -0.301931 -0.250262\nvn 0.888456 -0.400203 -0.224685\nvn 0.802488 -0.436935 -0.406325\nvn 0.806356 -0.485138 -0.338278\nvn 0.764349 -0.447256 -0.464469\nvn 0.764349 -0.447256 -0.464469\nvn 0.806356 -0.485138 -0.338278\nvn 0.821221 -0.488160 -0.295460\nvn 0.821221 -0.488160 -0.295460\nvn 0.780293 -0.446562 -0.437864\nvn 0.764349 -0.447256 -0.464469\nvn 0.526334 -0.809856 -0.259047\nvn 0.548838 -0.798368 -0.247760\nvn 0.539707 -0.800649 -0.260148\nvn 0.539707 -0.800649 -0.260148\nvn 0.522006 -0.816305 -0.247299\nvn 0.526334 -0.809856 -0.259047\nvn 0.508724 -0.828686 -0.233410\nvn 0.526334 -0.809856 -0.259047\nvn 0.522006 -0.816305 -0.247299\nvn 0.522006 -0.816305 -0.247299\nvn 0.504302 -0.832141 -0.230696\nvn 0.508724 -0.828686 -0.233410\nvn 0.566074 -0.797716 -0.207868\nvn 0.539707 -0.800649 -0.260148\nvn 0.548838 -0.798368 -0.247760\nvn 0.548838 -0.798368 -0.247760\nvn 0.576388 -0.801406 -0.159768\nvn 0.566074 -0.797716 -0.207868\nvn 0.557099 -0.828231 -0.060611\nvn 0.566074 -0.797716 -0.207868\nvn 0.576388 -0.801406 -0.159768\nvn 0.576388 -0.801406 -0.159768\nvn 0.557346 -0.829976 -0.022462\nvn 0.557099 -0.828231 -0.060611\nvn 0.485215 -0.867947 0.105991\nvn 0.557099 -0.828231 -0.060611\nvn 0.557346 -0.829976 -0.022462\nvn 0.557346 -0.829976 -0.022462\nvn 0.476586 -0.870954 0.119604\nvn 0.485215 -0.867947 0.105991\nvn 0.362349 -0.900180 0.241617\nvn 0.485215 -0.867947 0.105991\nvn 0.476586 -0.870954 0.119604\nvn 0.476586 -0.870954 0.119604\nvn 0.353442 -0.904128 0.240063\nvn 0.362349 -0.900180 0.241617\nvn 0.570954 -0.810529 0.130592\nvn 0.362349 -0.900180 0.241617\nvn 0.353442 -0.904128 0.240063\nvn 0.353442 -0.904128 0.240063\nvn 0.410478 -0.875584 0.254679\nvn 0.570954 -0.810529 0.130592\nvn 0.601109 -0.789047 0.126777\nvn 0.570954 -0.810529 0.130592\nvn 0.410478 -0.875584 0.254679\nvn 0.410478 -0.875584 0.254679\nvn 0.581730 -0.785172 0.212354\nvn 0.601109 -0.789047 0.126777\nvn 0.717725 -0.677714 0.159922\nvn 0.601109 -0.789047 0.126777\nvn 0.581730 -0.785172 0.212354\nvn 0.581730 -0.785172 0.212354\nvn 0.802296 -0.552066 0.227034\nvn 0.717725 -0.677714 0.159922\nvn 0.855980 -0.407374 -0.318349\nvn 0.848587 -0.412589 -0.331164\nvn 0.781963 -0.619936 -0.064914\nvn 0.781963 -0.619936 -0.064914\nvn 0.794841 -0.604707 -0.050570\nvn 0.855980 -0.407374 -0.318349\nvn 0.829171 -0.236125 -0.506676\nvn 0.848587 -0.412589 -0.331164\nvn 0.855980 -0.407374 -0.318349\nvn 0.855980 -0.407374 -0.318349\nvn 0.828577 -0.224594 -0.512852\nvn 0.829171 -0.236125 -0.506676\nvn 0.747446 -0.231824 -0.622561\nvn 0.829171 -0.236125 -0.506676\nvn 0.828577 -0.224594 -0.512852\nvn 0.828577 -0.224594 -0.512852\nvn 0.738838 -0.230236 -0.633333\nvn 0.747446 -0.231824 -0.622561\nvn 0.677275 -0.234141 -0.697479\nvn 0.747446 -0.231824 -0.622561\nvn 0.738838 -0.230236 -0.633333\nvn 0.738838 -0.230236 -0.633333\nvn 0.674871 -0.232495 -0.700354\nvn 0.677275 -0.234141 -0.697479\nvn 0.653049 -0.234296 -0.720161\nvn 0.677275 -0.234141 -0.697479\nvn 0.674871 -0.232495 -0.700354\nvn 0.674871 -0.232495 -0.700354\nvn 0.653116 -0.233901 -0.720229\nvn 0.653049 -0.234296 -0.720161\nvn 0.652621 -0.233990 -0.720648\nvn 0.653049 -0.234296 -0.720161\nvn 0.653116 -0.233901 -0.720229\nvn 0.762404 -0.647101 0.000549\nvn 0.794841 -0.604707 -0.050570\nvn 0.781963 -0.619936 -0.064914\nvn 0.781963 -0.619936 -0.064914\nvn 0.570954 -0.810529 0.130592\nvn 0.762404 -0.647101 0.000549\nvn 0.726812 -0.685458 0.043490\nvn 0.762404 -0.647101 0.000549\nvn 0.570954 -0.810529 0.130592\nvn 0.570954 -0.810529 0.130592\nvn 0.601109 -0.789047 0.126777\nvn 0.726812 -0.685458 0.043490\nvn 0.686081 -0.724901 0.061741\nvn 0.726812 -0.685458 0.043490\nvn 0.601109 -0.789047 0.126777\nvn 0.601109 -0.789047 0.126777\nvn 0.717725 -0.677714 0.159922\nvn 0.686081 -0.724901 0.061741\nvn 0.406480 -0.027558 -0.913244\nvn 0.403744 -0.093360 -0.910096\nvn 0.387504 0.196758 -0.900626\nvn 0.387504 0.196758 -0.900626\nvn 0.385247 0.200574 -0.900752\nvn 0.406480 -0.027558 -0.913244\nvn 0.405178 0.209975 -0.889799\nvn 0.385247 0.200574 -0.900752\nvn 0.387504 0.196758 -0.900626\nvn 0.387504 0.196758 -0.900626\nvn 0.406151 0.209546 -0.889456\nvn 0.405178 0.209975 -0.889799\nvn -0.968995 0.234542 0.077703\nvn -0.969052 0.234602 0.076817\nvn -0.973344 0.229320 0.003815\nvn -0.973344 0.229320 0.003815\nvn -0.972990 0.230849 -0.000000\nvn -0.968995 0.234542 0.077703\nvn -0.962196 0.253306 0.100071\nvn -0.969052 0.234602 0.076817\nvn -0.968995 0.234542 0.077703\nvn -0.968995 0.234542 0.077703\nvn -0.960735 0.257335 0.103764\nvn -0.962196 0.253306 0.100071\nvn -0.896037 0.414508 0.159065\nvn -0.899861 0.411522 0.144570\nvn -0.962196 0.253306 0.100071\nvn -0.962196 0.253306 0.100071\nvn -0.960735 0.257335 0.103764\nvn -0.896037 0.414508 0.159065\nvn -0.783854 0.572509 0.240430\nvn -0.899861 0.411522 0.144570\nvn -0.896037 0.414508 0.159065\nvn -0.896037 0.414508 0.159065\nvn -0.758957 0.600042 0.252853\nvn -0.783854 0.572509 0.240430\nvn -0.783854 0.572509 0.240430\nvn -0.758957 0.600042 0.252853\nvn -0.780560 0.465235 0.417472\nvn -0.780560 0.465235 0.417472\nvn -0.791882 0.434807 0.428795\nvn -0.783854 0.572509 0.240430\nvn -0.791882 0.434807 0.428795\nvn -0.780560 0.465235 0.417472\nvn -0.743174 0.323778 0.585542\nvn -0.743174 0.323778 0.585542\nvn -0.737928 0.314166 0.597295\nvn -0.791882 0.434807 0.428795\nvn -0.737928 0.314166 0.597295\nvn -0.743174 0.323778 0.585542\nvn -0.676001 0.310655 0.668219\nvn -0.676001 0.310655 0.668219\nvn -0.668119 0.311750 0.675596\nvn -0.737928 0.314166 0.597295\nvn -0.668119 0.311750 0.675596\nvn -0.676001 0.310655 0.668219\nvn -0.619625 0.328871 0.712677\nvn -0.619625 0.328871 0.712677\nvn -0.616494 0.329885 0.714920\nvn -0.668119 0.311750 0.675596\nvn -0.601820 0.334619 0.725150\nvn -0.616494 0.329885 0.714920\nvn -0.619625 0.328871 0.712677\nvn -0.619625 0.328871 0.712677\nvn -0.601820 0.334619 0.725150\nvn -0.601820 0.334619 0.725150\nvn -0.601839 0.334613 0.725137\nvn -0.601820 0.334619 0.725150\nvn -0.601820 0.334619 0.725150\nvn -0.601820 0.334619 0.725150\nvn -0.601839 0.334613 0.725137\nvn -0.601839 0.334613 0.725137\nvn 0.000030 1.000000 -0.000000\nvn 0.001709 0.999998 0.001282\nvn 0.001220 0.999997 0.001953\nvn -0.039980 0.998985 0.020753\nvn 0.001220 0.999997 0.001953\nvn 0.001709 0.999998 0.001282\nvn -0.039980 0.998985 0.020753\nvn 0.001709 0.999998 0.001282\nvn 0.003723 0.999992 0.001465\nvn -0.039980 0.998985 0.020753\nvn 0.003723 0.999992 0.001465\nvn -0.060825 0.997496 0.036074\nvn -0.047366 0.998614 0.022950\nvn -0.039980 0.998985 0.020753\nvn -0.060825 0.997496 0.036074\nvn -0.060825 0.997496 0.036074\nvn -0.048831 0.998547 0.022798\nvn -0.047366 0.998614 0.022950\nvn -0.047366 0.998614 0.022950\nvn -0.048831 0.998547 0.022798\nvn -0.024476 0.999426 0.023438\nvn -0.024476 0.999426 0.023438\nvn -0.021822 0.999481 0.023714\nvn -0.047366 0.998614 0.022950\nvn -0.021822 0.999481 0.023714\nvn -0.024476 0.999426 0.023438\nvn -0.023592 0.999446 0.023469\nvn 0.717725 -0.677714 0.159922\nvn 0.802296 -0.552066 0.227034\nvn 0.827524 -0.476585 0.296767\nvn 0.543006 -0.460877 0.701952\nvn 0.546272 -0.451660 0.705401\nvn 0.519351 -0.529605 0.670666\nvn 0.544487 -0.388078 0.743592\nvn 0.546272 -0.451660 0.705401\nvn 0.543006 -0.460877 0.701952\nvn 0.543006 -0.460877 0.701952\nvn 0.543665 -0.388232 0.744113\nvn 0.544487 -0.388078 0.743592\nvn -0.032747 -0.790217 -0.611951\nvn -0.030397 -0.789843 -0.612556\nvn 0.016786 -0.645052 -0.763954\nvn 0.016786 -0.645052 -0.763954\nvn 0.304984 -0.673052 -0.673785\nvn -0.032747 -0.790217 -0.611951\nvn -0.281174 -0.954185 -0.102331\nvn -0.281174 -0.954185 -0.102331\nvn -0.281174 -0.954185 -0.102331\nvn -0.281174 -0.954185 -0.102331\nvn -0.281174 -0.954185 -0.102331\nvn -0.281174 -0.954185 -0.102331\nvn -0.433983 -0.787853 0.436974\nvn -0.432400 -0.788653 0.437100\nvn -0.442681 -0.615268 0.652288\nvn -0.442681 -0.615268 0.652288\nvn -0.494166 -0.658695 0.567381\nvn -0.433983 -0.787853 0.436974\nvn 0.546175 -0.601903 -0.582585\nvn 0.617382 -0.691483 -0.375086\nvn 0.619171 -0.691471 -0.372150\nvn 0.619171 -0.691471 -0.372150\nvn 0.304984 -0.673052 -0.673785\nvn 0.546175 -0.601903 -0.582585\nvn 0.234661 -0.691561 0.683138\nvn 0.234875 -0.690280 0.684359\nvn 0.234603 -0.691874 0.682841\nvn 0.234603 -0.691874 0.682841\nvn 0.234324 -0.693542 0.681243\nvn 0.234661 -0.691561 0.683138\nvn -0.521082 -0.233868 0.820840\nvn -0.549717 -0.382623 0.742570\nvn -0.453943 -0.382803 0.804610\nvn -0.453943 -0.382803 0.804610\nvn -0.511865 -0.234661 0.826395\nvn -0.521082 -0.233868 0.820840\nvn -0.453943 -0.382803 0.804610\nvn -0.549717 -0.382623 0.742570\nvn -0.494166 -0.658695 0.567381\nvn -0.494166 -0.658695 0.567381\nvn -0.442681 -0.615268 0.652288\nvn -0.453943 -0.382803 0.804610\nvn 0.024812 -0.572380 0.819613\nvn -0.085943 -0.604104 0.792257\nvn -0.453943 -0.382803 0.804610\nvn -0.453943 -0.382803 0.804610\nvn -0.442681 -0.615268 0.652288\nvn 0.024812 -0.572380 0.819613\nvn 0.166481 -0.336472 -0.926861\nvn 0.099797 -0.336656 -0.936324\nvn 0.090427 -0.169226 -0.981420\nvn 0.090427 -0.169226 -0.981420\nvn 0.480406 -0.457486 -0.748275\nvn 0.166481 -0.336472 -0.926861\nvn 0.016786 -0.645052 -0.763954\nvn 0.099797 -0.336656 -0.936324\nvn 0.166481 -0.336472 -0.926861\nvn 0.166481 -0.336472 -0.926861\nvn 0.304984 -0.673052 -0.673785\nvn 0.016786 -0.645052 -0.763954\nvn 0.304984 -0.673052 -0.673785\nvn 0.166481 -0.336472 -0.926861\nvn 0.480406 -0.457486 -0.748275\nvn 0.480406 -0.457486 -0.748275\nvn 0.546175 -0.601903 -0.582585\nvn 0.304984 -0.673052 -0.673785\nvn 0.513880 -0.837228 0.187021\nvn 0.513880 -0.837228 0.187021\nvn 0.513880 -0.837228 0.187021\nvn 0.513880 -0.837228 0.187021\nvn 0.513880 -0.837228 0.187021\nvn 0.513880 -0.837228 0.187021\nvn 0.772287 0.635257 -0.004608\nvn 0.873283 0.486663 0.023164\nvn 0.926529 0.272109 -0.259809\nvn 0.926529 0.272109 -0.259809\nvn 0.825451 0.435051 -0.359668\nvn 0.772287 0.635257 -0.004608\nvn 0.818830 0.506833 0.269515\nvn 0.873283 0.486663 0.023164\nvn 0.772287 0.635257 -0.004608\nvn 0.772287 0.635257 -0.004608\nvn 0.718485 0.655890 0.231489\nvn 0.818830 0.506833 0.269515\nvn 0.541161 0.272076 0.795688\nvn 0.545289 0.444087 0.710948\nvn 0.440089 0.572391 0.691874\nvn 0.440089 0.572391 0.691874\nvn 0.403523 0.429037 0.808144\nvn 0.541161 0.272076 0.795688\nvn 0.820331 0.096472 -0.563693\nvn 0.825451 0.435051 -0.359668\nvn 0.926529 0.272109 -0.259809\nvn 0.926529 0.272109 -0.259809\nvn 0.875035 -0.005615 -0.484028\nvn 0.820331 0.096472 -0.563693\nvn 0.339284 -0.016023 0.940547\nvn 0.541161 0.272076 0.795688\nvn 0.403523 0.429037 0.808144\nvn 0.403523 0.429037 0.808144\nvn 0.269486 0.089941 0.958795\nvn 0.339284 -0.016023 0.940547\nvn -0.446652 -0.696973 0.561009\nvn -0.085943 -0.604104 0.792257\nvn -0.308579 -0.587647 0.747964\nvn -0.308579 -0.587647 0.747964\nvn -0.428733 -0.730263 0.531888\nvn -0.446652 -0.696973 0.561009\nvn -0.428733 -0.730263 0.531888\nvn -0.308579 -0.587647 0.747964\nvn -0.372184 -0.629218 0.682322\nvn -0.372184 -0.629218 0.682322\nvn -0.399497 -0.561188 0.724893\nvn -0.428733 -0.730263 0.531888\nvn 0.938388 -0.253671 0.234689\nvn 0.964783 -0.193768 0.177898\nvn 0.961571 -0.205089 0.182536\nvn 0.961571 -0.205089 0.182536\nvn 0.938949 -0.274396 0.207560\nvn 0.938388 -0.253671 0.234689\nvn 0.944907 -0.059817 0.321826\nvn 0.961571 -0.205089 0.182536\nvn 0.964783 -0.193768 0.177898\nvn 0.964783 -0.193768 0.177898\nvn 0.957162 -0.080356 0.278179\nvn 0.944907 -0.059817 0.321826\nvn 0.930352 -0.058383 0.361990\nvn 0.944907 -0.059817 0.321826\nvn 0.957162 -0.080356 0.278179\nvn 0.957162 -0.080356 0.278179\nvn 0.900964 -0.094183 0.423549\nvn 0.930352 -0.058383 0.361990\nvn 0.852660 -0.211471 0.477756\nvn 0.930352 -0.058383 0.361990\nvn 0.900964 -0.094183 0.423549\nvn 0.900964 -0.094183 0.423549\nvn 0.853150 -0.205184 0.479619\nvn 0.852660 -0.211471 0.477756\nvn 0.853277 -0.270488 0.445819\nvn 0.852660 -0.211471 0.477756\nvn 0.853150 -0.205184 0.479619\nvn 0.853150 -0.205184 0.479619\nvn 0.887766 -0.237071 0.394549\nvn 0.853277 -0.270488 0.445819\nvn 0.938388 -0.253671 0.234689\nvn 0.938949 -0.274396 0.207560\nvn 0.935228 -0.300582 0.187082\nvn 0.935228 -0.300582 0.187082\nvn 0.920038 -0.347036 0.181926\nvn 0.938388 -0.253671 0.234689\nvn 0.889994 -0.401263 0.216563\nvn 0.920038 -0.347036 0.181926\nvn 0.935228 -0.300582 0.187082\nvn 0.935228 -0.300582 0.187082\nvn 0.850713 -0.444934 0.279858\nvn 0.889994 -0.401263 0.216563\nvn 0.821347 -0.407377 0.399290\nvn 0.889994 -0.401263 0.216563\nvn 0.850713 -0.444934 0.279858\nvn 0.850713 -0.444934 0.279858\nvn 0.832418 -0.446835 0.327748\nvn 0.821347 -0.407377 0.399290\nvn 0.821245 -0.348897 0.451473\nvn 0.821347 -0.407377 0.399290\nvn 0.832418 -0.446835 0.327748\nvn 0.832418 -0.446835 0.327748\nvn 0.836623 -0.300492 0.458002\nvn 0.821245 -0.348897 0.451473\nvn 0.836623 -0.300492 0.458002\nvn 0.853277 -0.270488 0.445819\nvn 0.887766 -0.237071 0.394549\nvn 0.887766 -0.237071 0.394549\nvn 0.821245 -0.348897 0.451473\nvn 0.836623 -0.300492 0.458002\nvn 0.860951 -0.140328 -0.488950\nvn 0.820331 0.096472 -0.563693\nvn 0.875035 -0.005615 -0.484028\nvn 0.875035 -0.005615 -0.484028\nvn 0.920011 -0.180126 -0.348044\nvn 0.860951 -0.140328 -0.488950\nvn 0.446226 0.834129 -0.324209\nvn 0.498710 0.862313 -0.087773\nvn 0.772287 0.635257 -0.004608\nvn 0.772287 0.635257 -0.004608\nvn 0.825451 0.435051 -0.359668\nvn 0.446226 0.834129 -0.324209\nvn 0.269486 0.089941 0.958795\nvn 0.363822 -0.127784 0.922662\nvn 0.479483 -0.156562 0.863472\nvn 0.479483 -0.156562 0.863472\nvn 0.339284 -0.016023 0.940547\nvn 0.269486 0.089941 0.958795\nvn 0.332968 0.867122 0.370447\nvn 0.092444 0.617809 0.780875\nvn 0.403523 0.429037 0.808144\nvn 0.403523 0.429037 0.808144\nvn 0.440089 0.572391 0.691874\nvn 0.332968 0.867122 0.370447\nvn 0.269486 0.089941 0.958795\nvn 0.403523 0.429037 0.808144\nvn 0.092444 0.617809 0.780875\nvn 0.092444 0.617809 0.780875\nvn -0.078281 0.193336 0.978005\nvn 0.269486 0.089941 0.958795\nvn -0.043458 -0.720667 -0.691918\nvn -0.032441 -0.740539 -0.671230\nvn -0.042330 -0.701665 -0.711248\nvn -0.042330 -0.701665 -0.711248\nvn -0.038668 -0.685033 -0.727485\nvn -0.043458 -0.720667 -0.691918\nvn 0.135932 -0.638002 -0.757942\nvn -0.042330 -0.701665 -0.711248\nvn -0.032441 -0.740539 -0.671230\nvn -0.032441 -0.740539 -0.671230\nvn 0.147591 -0.585327 -0.797251\nvn 0.135932 -0.638002 -0.757942\nvn 0.820331 0.096472 -0.563693\nvn 0.860951 -0.140328 -0.488950\nvn 0.561886 -0.043123 -0.826090\nvn 0.561886 -0.043123 -0.826090\nvn 0.568824 0.194898 -0.799033\nvn 0.820331 0.096472 -0.563693\nvn 0.269486 0.089941 0.958795\nvn -0.078281 0.193336 0.978005\nvn -0.102575 -0.042269 0.993827\nvn -0.102575 -0.042269 0.993827\nvn 0.363822 -0.127784 0.922662\nvn 0.269486 0.089941 0.958795\nvn 0.772287 0.635257 -0.004608\nvn 0.498710 0.862313 -0.087773\nvn 0.332968 0.867122 0.370447\nvn 0.332968 0.867122 0.370447\nvn 0.718485 0.655890 0.231489\nvn 0.772287 0.635257 -0.004608\nvn 0.344048 0.009186 -0.938907\nvn 0.568824 0.194898 -0.799033\nvn 0.561886 -0.043123 -0.826090\nvn 0.561886 -0.043123 -0.826090\nvn 0.344048 0.009186 -0.938907\nvn 0.344048 0.009186 -0.938907\nvn -0.339865 0.009369 0.940428\nvn -0.102575 -0.042269 0.993827\nvn -0.078281 0.193336 0.978005\nvn -0.078281 0.193336 0.978005\nvn -0.339865 0.009369 0.940428\nvn -0.339865 0.009369 0.940428\nvn 0.343523 0.880417 -0.326891\nvn 0.292921 0.945233 -0.143988\nvn 0.498710 0.862313 -0.087773\nvn 0.498710 0.862313 -0.087773\nvn 0.446226 0.834129 -0.324209\nvn 0.343523 0.880417 -0.326891\nvn 0.498710 0.862313 -0.087773\nvn 0.292921 0.945233 -0.143988\nvn 0.145730 0.952909 0.265946\nvn 0.145730 0.952909 0.265946\nvn 0.332968 0.867122 0.370447\nvn 0.498710 0.862313 -0.087773\nvn 0.092444 0.617809 0.780875\nvn 0.332968 0.867122 0.370447\nvn 0.145730 0.952909 0.265946\nvn 0.145730 0.952909 0.265946\nvn 0.053073 0.880451 0.471157\nvn 0.092444 0.617809 0.780875\nvn 0.405387 0.523070 -0.749706\nvn 0.634714 0.375634 -0.675305\nvn 0.568824 0.194898 -0.799033\nvn 0.568824 0.194898 -0.799033\nvn 0.406114 0.525443 -0.747651\nvn 0.405387 0.523070 -0.749706\nvn 0.092444 0.617809 0.780875\nvn -0.173900 0.526735 0.832051\nvn -0.174387 0.524016 0.833665\nvn -0.174387 0.524016 0.833665\nvn -0.078281 0.193336 0.978005\nvn 0.092444 0.617809 0.780875\nvn 0.568824 0.194898 -0.799033\nvn 0.634714 0.375634 -0.675305\nvn 0.825451 0.435051 -0.359668\nvn 0.825451 0.435051 -0.359668\nvn 0.820331 0.096472 -0.563693\nvn 0.568824 0.194898 -0.799033\nvn -0.130744 -0.491390 0.861070\nvn -0.308579 -0.587647 0.747964\nvn -0.085943 -0.604104 0.792257\nvn -0.085943 -0.604104 0.792257\nvn 0.024812 -0.572380 0.819613\nvn -0.130744 -0.491390 0.861070\nvn -0.308579 -0.587647 0.747964\nvn -0.130744 -0.491390 0.861070\nvn -0.343674 -0.521722 0.780829\nvn -0.343674 -0.521722 0.780829\nvn -0.372184 -0.629218 0.682322\nvn -0.308579 -0.587647 0.747964\nvn 0.546175 -0.601903 -0.582585\nvn 0.480406 -0.457486 -0.748275\nvn 0.401725 -0.506986 -0.762615\nvn 0.401725 -0.506986 -0.762615\nvn 0.384451 -0.551085 -0.740610\nvn 0.546175 -0.601903 -0.582585\nvn 0.384451 -0.551085 -0.740610\nvn 0.401725 -0.506986 -0.762615\nvn 0.135932 -0.638002 -0.757942\nvn 0.135932 -0.638002 -0.757942\nvn 0.220778 -0.534976 -0.815511\nvn 0.384451 -0.551085 -0.740610\nvn -0.397606 -0.462398 0.792526\nvn -0.399497 -0.561188 0.724893\nvn -0.372184 -0.629218 0.682322\nvn -0.372184 -0.629218 0.682322\nvn -0.343674 -0.521722 0.780829\nvn -0.397606 -0.462398 0.792526\nvn 0.196056 -0.481229 -0.854389\nvn 0.220778 -0.534976 -0.815511\nvn 0.135932 -0.638002 -0.757942\nvn 0.135932 -0.638002 -0.757942\nvn 0.147591 -0.585327 -0.797251\nvn 0.196056 -0.481229 -0.854389\nvn -0.397820 -0.292772 -0.869496\nvn -0.399531 -0.293324 -0.868525\nvn -0.406479 -0.027589 -0.913243\nvn -0.406479 -0.027589 -0.913243\nvn -0.403744 -0.093360 -0.910096\nvn -0.397820 -0.292772 -0.869496\nvn -0.500728 0.372700 -0.781260\nvn -0.496634 0.422839 -0.757998\nvn -0.505036 0.418849 -0.754655\nvn -0.505036 0.418849 -0.754655\nvn -0.516842 0.383046 -0.765604\nvn -0.500728 0.372700 -0.781260\nvn -0.496634 0.422839 -0.757998\nvn -0.500728 0.372700 -0.781260\nvn -0.479764 0.352620 -0.803421\nvn -0.479764 0.352620 -0.803421\nvn -0.482084 0.371085 -0.793657\nvn -0.496634 0.422839 -0.757998\nvn -0.482084 0.371085 -0.793657\nvn -0.479764 0.352620 -0.803421\nvn -0.463645 0.326554 -0.823648\nvn -0.463645 0.326554 -0.823648\nvn -0.468409 0.334826 -0.817609\nvn -0.482084 0.371085 -0.793657\nvn -0.468409 0.334826 -0.817609\nvn -0.463645 0.326554 -0.823648\nvn -0.451775 0.262282 -0.852706\nvn -0.451775 0.262282 -0.852706\nvn -0.459491 0.271953 -0.845523\nvn -0.468409 0.334826 -0.817609\nvn -0.459491 0.271953 -0.845523\nvn -0.451775 0.262282 -0.852706\nvn -0.428033 0.238508 -0.871723\nvn -0.428033 0.238508 -0.871723\nvn -0.432584 0.243362 -0.868128\nvn -0.459491 0.271953 -0.845523\nvn -0.415857 0.241347 -0.876821\nvn -0.432584 0.243362 -0.868128\nvn -0.428033 0.238508 -0.871723\nvn -0.428033 0.238508 -0.871723\nvn -0.414855 0.244341 -0.876466\nvn -0.415857 0.241347 -0.876821\nvn -0.406822 0.256392 -0.876789\nvn -0.415857 0.241347 -0.876821\nvn -0.414855 0.244341 -0.876466\nvn -0.414855 0.244341 -0.876466\nvn -0.405632 0.257857 -0.876911\nvn -0.406822 0.256392 -0.876789\nvn -0.617078 -0.253039 -0.745108\nvn -0.604131 -0.249405 -0.756850\nvn -0.598268 -0.183726 -0.779949\nvn -0.598268 -0.183726 -0.779949\nvn -0.618788 -0.197799 -0.760248\nvn -0.617078 -0.253039 -0.745108\nvn -0.604131 -0.249405 -0.756850\nvn -0.617078 -0.253039 -0.745108\nvn -0.640016 -0.304642 -0.705388\nvn -0.640016 -0.304642 -0.705388\nvn -0.633119 -0.303788 -0.711950\nvn -0.604131 -0.249405 -0.756850\nvn -0.663255 -0.341608 -0.665880\nvn -0.640016 -0.304642 -0.705388\nvn -0.617078 -0.253039 -0.745108\nvn -0.617078 -0.253039 -0.745108\nvn -0.646977 -0.302171 -0.700081\nvn -0.663255 -0.341608 -0.665880\nvn -0.646977 -0.302171 -0.700081\nvn -0.617078 -0.253039 -0.745108\nvn -0.618788 -0.197799 -0.760248\nvn -0.618788 -0.197799 -0.760248\nvn -0.641963 -0.265422 -0.719329\nvn -0.646977 -0.302171 -0.700081\nvn -0.633119 -0.303788 -0.711950\nvn -0.640016 -0.304642 -0.705388\nvn -0.687123 -0.347895 -0.637833\nvn -0.687123 -0.347895 -0.637833\nvn -0.692758 -0.349752 -0.630682\nvn -0.633119 -0.303788 -0.711950\nvn -0.692758 -0.349752 -0.630682\nvn -0.687123 -0.347895 -0.637833\nvn -0.748499 -0.394500 -0.533029\nvn -0.748499 -0.394500 -0.533029\nvn -0.747833 -0.396318 -0.532614\nvn -0.692758 -0.349752 -0.630682\nvn -0.748499 -0.394500 -0.533029\nvn -0.687123 -0.347895 -0.637833\nvn -0.710603 -0.384234 -0.589413\nvn -0.710603 -0.384234 -0.589413\nvn -0.687123 -0.347895 -0.637833\nvn -0.640016 -0.304642 -0.705388\nvn -0.640016 -0.304642 -0.705388\nvn -0.663255 -0.341608 -0.665880\nvn -0.710603 -0.384234 -0.589413\nvn -0.710603 -0.384234 -0.589413\nvn -0.764360 -0.447232 -0.464476\nvn -0.748499 -0.394500 -0.533029\nvn -0.722820 -0.386131 -0.573092\nvn -0.710603 -0.384234 -0.589413\nvn -0.663255 -0.341608 -0.665880\nvn -0.663255 -0.341608 -0.665880\nvn -0.676613 -0.358846 -0.642981\nvn -0.722820 -0.386131 -0.573092\nvn -0.676613 -0.358846 -0.642981\nvn -0.663255 -0.341608 -0.665880\nvn -0.646977 -0.302171 -0.700081\nvn -0.646977 -0.302171 -0.700081\nvn -0.670535 -0.342211 -0.658236\nvn -0.676613 -0.358846 -0.642981\nvn -0.657118 -0.318198 -0.683335\nvn -0.670535 -0.342211 -0.658236\nvn -0.646977 -0.302171 -0.700081\nvn -0.646977 -0.302171 -0.700081\nvn -0.641963 -0.265422 -0.719329\nvn -0.657118 -0.318198 -0.683335\nvn -0.780293 -0.446562 -0.437864\nvn -0.764360 -0.447232 -0.464476\nvn -0.710603 -0.384234 -0.589413\nvn -0.710603 -0.384234 -0.589413\nvn -0.722820 -0.386131 -0.573092\nvn -0.780293 -0.446562 -0.437864\nvn -0.747833 -0.396318 -0.532614\nvn -0.748499 -0.394500 -0.533029\nvn -0.802488 -0.436936 -0.406325\nvn -0.802488 -0.436936 -0.406325\nvn -0.748499 -0.394500 -0.533029\nvn -0.764360 -0.447232 -0.464476\nvn -0.802488 -0.436936 -0.406325\nvn -0.781305 -0.457674 -0.424377\nvn -0.747833 -0.396318 -0.532614\nvn -0.781305 -0.457674 -0.424377\nvn -0.802488 -0.436936 -0.406325\nvn -0.845038 -0.447316 -0.292951\nvn -0.845038 -0.447316 -0.292951\nvn -0.789308 -0.531760 -0.306958\nvn -0.781305 -0.457674 -0.424377\nvn -0.789308 -0.531760 -0.306958\nvn -0.845038 -0.447316 -0.292951\nvn -0.919895 -0.301932 -0.250262\nvn -0.919895 -0.301932 -0.250262\nvn -0.875908 -0.417811 -0.241287\nvn -0.789308 -0.531760 -0.306958\nvn -0.875908 -0.417811 -0.241287\nvn -0.919895 -0.301932 -0.250262\nvn -0.960748 -0.200573 -0.191661\nvn -0.960748 -0.200573 -0.191661\nvn -0.954638 -0.216289 -0.204661\nvn -0.875908 -0.417811 -0.241287\nvn -0.971745 -0.182319 -0.149908\nvn -0.960748 -0.200573 -0.191661\nvn -0.919895 -0.301932 -0.250262\nvn -0.919895 -0.301932 -0.250262\nvn -0.948989 -0.245678 -0.197641\nvn -0.971745 -0.182319 -0.149908\nvn -0.875908 -0.417811 -0.241287\nvn -0.954638 -0.216289 -0.204661\nvn -0.965215 -0.201882 -0.166144\nvn -0.965215 -0.201882 -0.166144\nvn -0.959341 -0.250044 -0.130927\nvn -0.875908 -0.417811 -0.241287\nvn -0.965215 -0.201882 -0.166144\nvn -0.954638 -0.216289 -0.204661\nvn -0.977291 -0.178081 -0.114844\nvn -0.977291 -0.178081 -0.114844\nvn -0.954638 -0.216289 -0.204661\nvn -0.960748 -0.200573 -0.191661\nvn -0.977291 -0.178081 -0.114844\nvn -0.973768 -0.189950 -0.125280\nvn -0.965215 -0.201882 -0.166144\nvn -0.982011 -0.138709 -0.128119\nvn -0.971745 -0.182319 -0.149908\nvn -0.948989 -0.245678 -0.197641\nvn -0.948989 -0.245678 -0.197641\nvn -0.962621 -0.215317 -0.164318\nvn -0.982011 -0.138709 -0.128119\nvn -0.960748 -0.200573 -0.191661\nvn -0.971745 -0.182319 -0.149908\nvn -0.984095 -0.167551 -0.059024\nvn -0.984095 -0.167551 -0.059024\nvn -0.980989 -0.178356 -0.076482\nvn -0.960748 -0.200573 -0.191661\nvn -0.960748 -0.200573 -0.191661\nvn -0.980989 -0.178356 -0.076482\nvn -0.977291 -0.178081 -0.114844\nvn -0.987481 -0.144265 -0.063785\nvn -0.984095 -0.167551 -0.059024\nvn -0.971745 -0.182319 -0.149908\nvn -0.971745 -0.182319 -0.149908\nvn -0.982011 -0.138709 -0.128119\nvn -0.987481 -0.144265 -0.063785\nvn -0.948989 -0.245678 -0.197641\nvn -0.919895 -0.301932 -0.250262\nvn -0.923208 -0.323779 -0.207012\nvn -0.923208 -0.323779 -0.207012\nvn -0.919895 -0.301932 -0.250262\nvn -0.888456 -0.400204 -0.224685\nvn -0.888456 -0.400204 -0.224685\nvn -0.919895 -0.301932 -0.250262\nvn -0.845038 -0.447316 -0.292951\nvn -0.845038 -0.447316 -0.292951\nvn -0.844016 -0.471740 -0.255143\nvn -0.888456 -0.400204 -0.224685\nvn -0.844016 -0.471740 -0.255143\nvn -0.845038 -0.447316 -0.292951\nvn -0.802488 -0.436936 -0.406325\nvn -0.802488 -0.436936 -0.406325\nvn -0.806355 -0.485138 -0.338278\nvn -0.844016 -0.471740 -0.255143\nvn -0.862341 -0.454365 -0.223429\nvn -0.844016 -0.471740 -0.255143\nvn -0.806355 -0.485138 -0.338278\nvn -0.806355 -0.485138 -0.338278\nvn -0.821220 -0.488161 -0.295460\nvn -0.862341 -0.454365 -0.223429\nvn -0.764360 -0.447232 -0.464476\nvn -0.806355 -0.485138 -0.338278\nvn -0.802488 -0.436936 -0.406325\nvn -0.821220 -0.488161 -0.295460\nvn -0.806355 -0.485138 -0.338278\nvn -0.764360 -0.447232 -0.464476\nvn -0.764360 -0.447232 -0.464476\nvn -0.780293 -0.446562 -0.437864\nvn -0.821220 -0.488161 -0.295460\nvn -0.844016 -0.471740 -0.255143\nvn -0.862341 -0.454365 -0.223429\nvn -0.899922 -0.389121 -0.196788\nvn -0.899922 -0.389121 -0.196788\nvn -0.888456 -0.400204 -0.224685\nvn -0.844016 -0.471740 -0.255143\nvn -0.888456 -0.400204 -0.224685\nvn -0.899922 -0.389121 -0.196788\nvn -0.929886 -0.320420 -0.180673\nvn -0.929886 -0.320420 -0.180673\nvn -0.923208 -0.323779 -0.207012\nvn -0.888456 -0.400204 -0.224685\nvn -0.948989 -0.245678 -0.197641\nvn -0.923208 -0.323779 -0.207012\nvn -0.929886 -0.320420 -0.180673\nvn -0.929886 -0.320420 -0.180673\nvn -0.962621 -0.215317 -0.164318\nvn -0.948989 -0.245678 -0.197641\nvn -0.526329 -0.809850 -0.259075\nvn -0.522005 -0.816305 -0.247299\nvn -0.539729 -0.800636 -0.260144\nvn -0.539729 -0.800636 -0.260144\nvn -0.548859 -0.798355 -0.247756\nvn -0.526329 -0.809850 -0.259075\nvn -0.522005 -0.816305 -0.247299\nvn -0.526329 -0.809850 -0.259075\nvn -0.508723 -0.828686 -0.233410\nvn -0.508723 -0.828686 -0.233410\nvn -0.504289 -0.832151 -0.230690\nvn -0.522005 -0.816305 -0.247299\nvn -0.548859 -0.798355 -0.247756\nvn -0.539729 -0.800636 -0.260144\nvn -0.566074 -0.797716 -0.207868\nvn -0.566074 -0.797716 -0.207868\nvn -0.576387 -0.801406 -0.159768\nvn -0.548859 -0.798355 -0.247756\nvn -0.576387 -0.801406 -0.159768\nvn -0.566074 -0.797716 -0.207868\nvn -0.557099 -0.828233 -0.060581\nvn -0.557099 -0.828233 -0.060581\nvn -0.557311 -0.830000 -0.022462\nvn -0.576387 -0.801406 -0.159768\nvn -0.557311 -0.830000 -0.022462\nvn -0.557099 -0.828233 -0.060581\nvn -0.715363 -0.690583 -0.106542\nvn -0.715363 -0.690583 -0.106542\nvn -0.476586 -0.870954 0.119604\nvn -0.557311 -0.830000 -0.022462\nvn -0.476586 -0.870954 0.119604\nvn -0.715363 -0.690583 -0.106542\nvn -0.579431 -0.809880 0.091404\nvn -0.579431 -0.809880 0.091404\nvn -0.353442 -0.904129 0.240063\nvn -0.476586 -0.870954 0.119604\nvn -0.353442 -0.904129 0.240063\nvn -0.579431 -0.809880 0.091404\nvn -0.570953 -0.810530 0.130592\nvn -0.570953 -0.810530 0.130592\nvn -0.410477 -0.875584 0.254679\nvn -0.353442 -0.904129 0.240063\nvn -0.410477 -0.875584 0.254679\nvn -0.570953 -0.810530 0.130592\nvn -0.601109 -0.789047 0.126777\nvn -0.601109 -0.789047 0.126777\nvn -0.581730 -0.785173 0.212354\nvn -0.410477 -0.875584 0.254679\nvn -0.581730 -0.785173 0.212354\nvn -0.601109 -0.789047 0.126777\nvn -0.731434 -0.657180 0.181989\nvn -0.731434 -0.657180 0.181989\nvn -0.811843 -0.527220 0.250899\nvn -0.581730 -0.785173 0.212354\nvn -0.792306 -0.606628 -0.065219\nvn -0.579431 -0.809880 0.091404\nvn -0.715363 -0.690583 -0.106542\nvn -0.715363 -0.690583 -0.106542\nvn -0.871902 -0.379598 -0.309342\nvn -0.792306 -0.606628 -0.065219\nvn -0.871902 -0.379598 -0.309342\nvn -0.715363 -0.690583 -0.106542\nvn -0.829170 -0.236126 -0.506676\nvn -0.829170 -0.236126 -0.506676\nvn -0.828577 -0.224594 -0.512852\nvn -0.871902 -0.379598 -0.309342\nvn -0.828577 -0.224594 -0.512852\nvn -0.829170 -0.236126 -0.506676\nvn -0.747460 -0.231829 -0.622543\nvn -0.747460 -0.231829 -0.622543\nvn -0.738837 -0.230237 -0.633333\nvn -0.828577 -0.224594 -0.512852\nvn -0.738837 -0.230237 -0.633333\nvn -0.747460 -0.231829 -0.622543\nvn -0.677285 -0.234175 -0.697458\nvn -0.677285 -0.234175 -0.697458\nvn -0.674870 -0.232495 -0.700354\nvn -0.738837 -0.230237 -0.633333\nvn -0.674870 -0.232495 -0.700354\nvn -0.677285 -0.234175 -0.697458\nvn -0.653049 -0.234296 -0.720161\nvn -0.653049 -0.234296 -0.720161\nvn -0.653116 -0.233901 -0.720229\nvn -0.674870 -0.232495 -0.700354\nvn -0.652621 -0.233991 -0.720648\nvn -0.653116 -0.233901 -0.720229\nvn -0.653049 -0.234296 -0.720161\nvn -0.579431 -0.809880 0.091404\nvn -0.792306 -0.606628 -0.065219\nvn -0.762403 -0.647102 0.000549\nvn -0.762403 -0.647102 0.000549\nvn -0.570953 -0.810530 0.130592\nvn -0.579431 -0.809880 0.091404\nvn -0.570953 -0.810530 0.130592\nvn -0.762403 -0.647102 0.000549\nvn -0.726812 -0.685459 0.043490\nvn -0.726812 -0.685459 0.043490\nvn -0.601109 -0.789047 0.126777\nvn -0.570953 -0.810530 0.130592\nvn -0.601109 -0.789047 0.126777\nvn -0.726812 -0.685459 0.043490\nvn -0.686080 -0.724901 0.061741\nvn -0.686080 -0.724901 0.061741\nvn -0.731434 -0.657180 0.181989\nvn -0.601109 -0.789047 0.126777\nvn -0.406479 -0.027589 -0.913243\nvn -0.385248 0.200574 -0.900752\nvn -0.387530 0.196756 -0.900615\nvn -0.387530 0.196756 -0.900615\nvn -0.403744 -0.093360 -0.910096\nvn -0.406479 -0.027589 -0.913243\nvn -0.387530 0.196756 -0.900615\nvn -0.385248 0.200574 -0.900752\nvn -0.405178 0.209975 -0.889799\nvn -0.405178 0.209975 -0.889799\nvn -0.406152 0.209546 -0.889456\nvn -0.387530 0.196756 -0.900615\nvn 0.974386 0.224866 0.002625\nvn 0.974241 0.225508 -0.000000\nvn 0.968509 0.237069 0.076083\nvn 0.968509 0.237069 0.076083\nvn 0.968448 0.236100 0.079778\nvn 0.974386 0.224866 0.002625\nvn 0.968448 0.236100 0.079778\nvn 0.968509 0.237069 0.076083\nvn 0.962196 0.253306 0.100071\nvn 0.962196 0.253306 0.100071\nvn 0.960735 0.257336 0.103764\nvn 0.968448 0.236100 0.079778\nvn 0.962196 0.253306 0.100071\nvn 0.899861 0.411522 0.144570\nvn 0.896036 0.414509 0.159065\nvn 0.896036 0.414509 0.159065\nvn 0.960735 0.257336 0.103764\nvn 0.962196 0.253306 0.100071\nvn 0.790487 0.569526 0.225326\nvn 0.784439 0.563907 0.258194\nvn 0.896036 0.414509 0.159065\nvn 0.896036 0.414509 0.159065\nvn 0.899861 0.411522 0.144570\nvn 0.790487 0.569526 0.225326\nvn 0.784439 0.563907 0.258194\nvn 0.790487 0.569526 0.225326\nvn 0.781759 0.464692 0.415830\nvn 0.781759 0.464692 0.415830\nvn 0.778741 0.446687 0.440491\nvn 0.784439 0.563907 0.258194\nvn 0.778741 0.446687 0.440491\nvn 0.781759 0.464692 0.415830\nvn 0.731098 0.329521 0.597422\nvn 0.731098 0.329521 0.597422\nvn 0.731209 0.317674 0.603669\nvn 0.778741 0.446687 0.440491\nvn 0.731209 0.317674 0.603669\nvn 0.731098 0.329521 0.597422\nvn 0.666413 0.314193 0.676148\nvn 0.666413 0.314193 0.676148\nvn 0.673279 0.309799 0.671357\nvn 0.731209 0.317674 0.603669\nvn 0.673279 0.309799 0.671357\nvn 0.666413 0.314193 0.676148\nvn 0.616488 0.329913 0.714913\nvn 0.616488 0.329913 0.714913\nvn 0.619638 0.328879 0.712662\nvn 0.673279 0.309799 0.671357\nvn 0.619638 0.328879 0.712662\nvn 0.616488 0.329913 0.714913\nvn 0.601820 0.334619 0.725150\nvn 0.601820 0.334619 0.725150\nvn 0.601820 0.334619 0.725150\nvn 0.619638 0.328879 0.712662\nvn 0.601820 0.334619 0.725150\nvn 0.601820 0.334619 0.725150\nvn 0.601839 0.334613 0.725137\nvn 0.601839 0.334613 0.725137\nvn 0.601839 0.334613 0.725137\nvn 0.601820 0.334619 0.725150\nvn -0.001221 0.999997 0.001953\nvn -0.001923 0.999996 0.002228\nvn -0.000031 1.000000 -0.000000\nvn 0.040224 0.998983 0.020387\nvn -0.001923 0.999996 0.002228\nvn -0.001221 0.999997 0.001953\nvn 0.040224 0.998983 0.020387\nvn 0.046725 0.998591 0.025148\nvn -0.001923 0.999996 0.002228\nvn 0.046725 0.998591 0.025148\nvn -0.035189 0.999381 -0.000000\nvn -0.001923 0.999996 0.002228\nvn 0.046725 0.998591 0.025148\nvn 0.040224 0.998983 0.020387\nvn 0.047365 0.998614 0.022950\nvn 0.047365 0.998614 0.022950\nvn 0.048830 0.998547 0.022798\nvn 0.046725 0.998591 0.025148\nvn 0.024476 0.999426 0.023438\nvn 0.048830 0.998547 0.022798\nvn 0.047365 0.998614 0.022950\nvn 0.047365 0.998614 0.022950\nvn 0.021821 0.999481 0.023714\nvn 0.024476 0.999426 0.023438\nvn 0.023591 0.999446 0.023469\nvn 0.024476 0.999426 0.023438\nvn 0.021821 0.999481 0.023714\nvn -0.535432 -0.485075 0.691386\nvn -0.524441 -0.515072 0.677984\nvn -0.482603 -0.615424 0.623176\nvn -0.811843 -0.527220 0.250899\nvn -0.731434 -0.657180 0.181989\nvn -0.841208 -0.411219 0.351096\nvn -0.524441 -0.515072 0.677984\nvn -0.535432 -0.485075 0.691386\nvn -0.544487 -0.388078 0.743592\nvn -0.544487 -0.388078 0.743592\nvn -0.543665 -0.388232 0.744113\nvn -0.524441 -0.515072 0.677984\nvn -0.305526 -0.672609 -0.673982\nvn -0.016083 -0.644100 -0.764772\nvn 0.033114 -0.790753 -0.611239\nvn 0.033114 -0.790753 -0.611239\nvn 0.031832 -0.791540 -0.610288\nvn -0.305526 -0.672609 -0.673982\nvn 0.281174 -0.954185 -0.102331\nvn 0.281174 -0.954185 -0.102331\nvn 0.281174 -0.954185 -0.102331\nvn 0.281174 -0.954185 -0.102331\nvn 0.281174 -0.954185 -0.102331\nvn 0.281174 -0.954185 -0.102331\nvn 0.434175 -0.787319 0.437745\nvn 0.432822 -0.786964 0.439719\nvn 0.493225 -0.659709 0.567021\nvn 0.493225 -0.659709 0.567021\nvn 0.442990 -0.615882 0.651498\nvn 0.434175 -0.787319 0.437745\nvn -0.546175 -0.601904 -0.582585\nvn -0.305526 -0.672609 -0.673982\nvn -0.619171 -0.691471 -0.372150\nvn -0.619171 -0.691471 -0.372150\nvn -0.617382 -0.691484 -0.375086\nvn -0.546175 -0.601904 -0.582585\nvn -0.234661 -0.691561 0.683138\nvn -0.234324 -0.693542 0.681243\nvn -0.234602 -0.691874 0.682841\nvn -0.234602 -0.691874 0.682841\nvn -0.234874 -0.690280 0.684359\nvn -0.234661 -0.691561 0.683138\nvn 0.521082 -0.233867 0.820840\nvn 0.511865 -0.234661 0.826395\nvn 0.453818 -0.382708 0.804726\nvn 0.453818 -0.382708 0.804726\nvn 0.549952 -0.382372 0.742526\nvn 0.521082 -0.233867 0.820840\nvn 0.549952 -0.382372 0.742526\nvn 0.453818 -0.382708 0.804726\nvn 0.442990 -0.615882 0.651498\nvn 0.442990 -0.615882 0.651498\nvn 0.493225 -0.659709 0.567021\nvn 0.549952 -0.382372 0.742526\nvn -0.024812 -0.572380 0.819613\nvn 0.442990 -0.615882 0.651498\nvn 0.453818 -0.382708 0.804726\nvn 0.453818 -0.382708 0.804726\nvn 0.085943 -0.604104 0.792258\nvn -0.024812 -0.572380 0.819613\nvn -0.090427 -0.169226 -0.981420\nvn -0.099797 -0.336656 -0.936324\nvn -0.166481 -0.336472 -0.926861\nvn -0.166481 -0.336472 -0.926861\nvn -0.480406 -0.457487 -0.748275\nvn -0.090427 -0.169226 -0.981420\nvn -0.166481 -0.336472 -0.926861\nvn -0.099797 -0.336656 -0.936324\nvn -0.016083 -0.644100 -0.764772\nvn -0.016083 -0.644100 -0.764772\nvn -0.305526 -0.672609 -0.673982\nvn -0.166481 -0.336472 -0.926861\nvn -0.480406 -0.457487 -0.748275\nvn -0.166481 -0.336472 -0.926861\nvn -0.305526 -0.672609 -0.673982\nvn -0.305526 -0.672609 -0.673982\nvn -0.546175 -0.601904 -0.582585\nvn -0.480406 -0.457487 -0.748275\nvn -0.513876 -0.837224 0.187050\nvn -0.513876 -0.837224 0.187050\nvn -0.513879 -0.837229 0.187021\nvn -0.513879 -0.837229 0.187021\nvn -0.513879 -0.837229 0.187021\nvn -0.513876 -0.837224 0.187050\nvn -0.772273 0.635274 -0.004608\nvn -0.825451 0.435050 -0.359668\nvn -0.926529 0.272108 -0.259809\nvn -0.926529 0.272108 -0.259809\nvn -0.873270 0.486686 0.023164\nvn -0.772273 0.635274 -0.004608\nvn -0.772273 0.635274 -0.004608\nvn -0.873270 0.486686 0.023164\nvn -0.818837 0.506836 0.269487\nvn -0.818837 0.506836 0.269487\nvn -0.718485 0.655890 0.231489\nvn -0.772273 0.635274 -0.004608\nvn -0.440090 0.572391 0.691874\nvn -0.545289 0.444087 0.710948\nvn -0.541161 0.272076 0.795688\nvn -0.541161 0.272076 0.795688\nvn -0.403523 0.429037 0.808144\nvn -0.440090 0.572391 0.691874\nvn -0.926529 0.272108 -0.259809\nvn -0.825451 0.435050 -0.359668\nvn -0.820331 0.096472 -0.563693\nvn -0.820331 0.096472 -0.563693\nvn -0.875035 -0.005616 -0.484028\nvn -0.926529 0.272108 -0.259809\nvn -0.403523 0.429037 0.808144\nvn -0.541161 0.272076 0.795688\nvn -0.339284 -0.016023 0.940547\nvn -0.339284 -0.016023 0.940547\nvn -0.269486 0.089910 0.958798\nvn -0.403523 0.429037 0.808144\nvn 0.446652 -0.696973 0.561009\nvn 0.428733 -0.730262 0.531888\nvn 0.308552 -0.587652 0.747971\nvn 0.308552 -0.587652 0.747971\nvn 0.085943 -0.604104 0.792258\nvn 0.446652 -0.696973 0.561009\nvn 0.372184 -0.629218 0.682322\nvn 0.308552 -0.587652 0.747971\nvn 0.428733 -0.730262 0.531888\nvn 0.428733 -0.730262 0.531888\nvn 0.399497 -0.561188 0.724893\nvn 0.372184 -0.629218 0.682322\nvn -0.938304 -0.254009 0.234660\nvn -0.939353 -0.274552 0.205517\nvn -0.961566 -0.205089 0.182565\nvn -0.961566 -0.205089 0.182565\nvn -0.964783 -0.193769 0.177898\nvn -0.938304 -0.254009 0.234660\nvn -0.964783 -0.193769 0.177898\nvn -0.961566 -0.205089 0.182565\nvn -0.944900 -0.059787 0.321854\nvn -0.944900 -0.059787 0.321854\nvn -0.957162 -0.080356 0.278179\nvn -0.964783 -0.193769 0.177898\nvn -0.957162 -0.080356 0.278179\nvn -0.944900 -0.059787 0.321854\nvn -0.930342 -0.058383 0.362017\nvn -0.930342 -0.058383 0.362017\nvn -0.900961 -0.094213 0.423547\nvn -0.957162 -0.080356 0.278179\nvn -0.900961 -0.094213 0.423547\nvn -0.930342 -0.058383 0.362017\nvn -0.852648 -0.211468 0.477779\nvn -0.852648 -0.211468 0.477779\nvn -0.853150 -0.205185 0.479619\nvn -0.900961 -0.094213 0.423547\nvn -0.853150 -0.205185 0.479619\nvn -0.852648 -0.211468 0.477779\nvn -0.853288 -0.270492 0.445795\nvn -0.853288 -0.270492 0.445795\nvn -0.887776 -0.237074 0.394523\nvn -0.853150 -0.205185 0.479619\nvn -0.939353 -0.274552 0.205517\nvn -0.938304 -0.254009 0.234660\nvn -0.920030 -0.346912 0.182199\nvn -0.920030 -0.346912 0.182199\nvn -0.936059 -0.298480 0.186290\nvn -0.939353 -0.274552 0.205517\nvn -0.936059 -0.298480 0.186290\nvn -0.920030 -0.346912 0.182199\nvn -0.890004 -0.401238 0.216565\nvn -0.890004 -0.401238 0.216565\nvn -0.850713 -0.444935 0.279858\nvn -0.936059 -0.298480 0.186290\nvn -0.850713 -0.444935 0.279858\nvn -0.890004 -0.401238 0.216565\nvn -0.821347 -0.407378 0.399290\nvn -0.821347 -0.407378 0.399290\nvn -0.832418 -0.446835 0.327748\nvn -0.850713 -0.444935 0.279858\nvn -0.832418 -0.446835 0.327748\nvn -0.821347 -0.407378 0.399290\nvn -0.821245 -0.348897 0.451473\nvn -0.821245 -0.348897 0.451473\nvn -0.836623 -0.300493 0.458002\nvn -0.832418 -0.446835 0.327748\nvn -0.836623 -0.300493 0.458002\nvn -0.821245 -0.348897 0.451473\nvn -0.887776 -0.237074 0.394523\nvn -0.887776 -0.237074 0.394523\nvn -0.853288 -0.270492 0.445795\nvn -0.836623 -0.300493 0.458002\nvn -0.860950 -0.140328 -0.488950\nvn -0.920011 -0.180126 -0.348045\nvn -0.875035 -0.005616 -0.484028\nvn -0.875035 -0.005616 -0.484028\nvn -0.820331 0.096472 -0.563693\nvn -0.860950 -0.140328 -0.488950\nvn -0.772273 0.635274 -0.004608\nvn -0.498218 0.862610 -0.087650\nvn -0.446226 0.834129 -0.324209\nvn -0.446226 0.834129 -0.324209\nvn -0.825451 0.435050 -0.359668\nvn -0.772273 0.635274 -0.004608\nvn -0.269486 0.089910 0.958798\nvn -0.339284 -0.016023 0.940547\nvn -0.479483 -0.156562 0.863472\nvn -0.479483 -0.156562 0.863472\nvn -0.363822 -0.127785 0.922662\nvn -0.269486 0.089910 0.958798\nvn -0.403523 0.429037 0.808144\nvn -0.091315 0.617747 0.781057\nvn -0.332689 0.867414 0.370014\nvn -0.332689 0.867414 0.370014\nvn -0.440090 0.572391 0.691874\nvn -0.403523 0.429037 0.808144\nvn -0.269486 0.089910 0.958798\nvn 0.079135 0.194832 0.977639\nvn -0.091315 0.617747 0.781057\nvn -0.091315 0.617747 0.781057\nvn -0.403523 0.429037 0.808144\nvn -0.269486 0.089910 0.958798\nvn 0.043459 -0.720667 -0.691918\nvn 0.038668 -0.685033 -0.727485\nvn 0.042300 -0.701666 -0.711249\nvn 0.042300 -0.701666 -0.711249\nvn 0.032442 -0.740539 -0.671230\nvn 0.043459 -0.720667 -0.691918\nvn 0.032442 -0.740539 -0.671230\nvn 0.042300 -0.701666 -0.711249\nvn -0.137064 -0.639661 -0.756338\nvn -0.137064 -0.639661 -0.756338\nvn -0.140907 -0.588045 -0.796460\nvn 0.032442 -0.740539 -0.671230\nvn -0.820331 0.096472 -0.563693\nvn -0.569709 0.193433 -0.798759\nvn -0.561886 -0.043124 -0.826090\nvn -0.561886 -0.043124 -0.826090\nvn -0.860950 -0.140328 -0.488950\nvn -0.820331 0.096472 -0.563693\nvn 0.102575 -0.042269 0.993827\nvn 0.079135 0.194832 0.977639\nvn -0.269486 0.089910 0.958798\nvn -0.269486 0.089910 0.958798\nvn -0.363822 -0.127785 0.922662\nvn 0.102575 -0.042269 0.993827\nvn -0.332689 0.867414 0.370014\nvn -0.498218 0.862610 -0.087650\nvn -0.772273 0.635274 -0.004608\nvn -0.772273 0.635274 -0.004608\nvn -0.718485 0.655890 0.231489\nvn -0.332689 0.867414 0.370014\nvn -0.344048 0.009186 -0.938907\nvn -0.344048 0.009186 -0.938907\nvn -0.561886 -0.043124 -0.826090\nvn -0.561886 -0.043124 -0.826090\nvn -0.569709 0.193433 -0.798759\nvn -0.344048 0.009186 -0.938907\nvn 0.339865 0.009370 0.940428\nvn 0.339865 0.009370 0.940428\nvn 0.079135 0.194832 0.977639\nvn 0.079135 0.194832 0.977639\nvn 0.102575 -0.042269 0.993827\nvn 0.339865 0.009370 0.940428\nvn -0.343524 0.880417 -0.326891\nvn -0.446226 0.834129 -0.324209\nvn -0.498218 0.862610 -0.087650\nvn -0.498218 0.862610 -0.087650\nvn -0.293654 0.945144 -0.143073\nvn -0.343524 0.880417 -0.326891\nvn -0.293654 0.945144 -0.143073\nvn -0.498218 0.862610 -0.087650\nvn -0.332689 0.867414 0.370014\nvn -0.332689 0.867414 0.370014\nvn -0.146888 0.952801 0.265698\nvn -0.293654 0.945144 -0.143073\nvn -0.146888 0.952801 0.265698\nvn -0.332689 0.867414 0.370014\nvn -0.091315 0.617747 0.781057\nvn -0.091315 0.617747 0.781057\nvn -0.053073 0.880451 0.471157\nvn -0.146888 0.952801 0.265698\nvn -0.636112 0.375966 -0.673803\nvn -0.401580 0.526589 -0.749292\nvn -0.402247 0.523867 -0.750840\nvn -0.402247 0.523867 -0.750840\nvn -0.569709 0.193433 -0.798759\nvn -0.636112 0.375966 -0.673803\nvn 0.171242 0.523218 0.834817\nvn -0.091315 0.617747 0.781057\nvn 0.079135 0.194832 0.977639\nvn 0.079135 0.194832 0.977639\nvn 0.169348 0.525593 0.833710\nvn 0.171242 0.523218 0.834817\nvn -0.825451 0.435050 -0.359668\nvn -0.636112 0.375966 -0.673803\nvn -0.569709 0.193433 -0.798759\nvn -0.569709 0.193433 -0.798759\nvn -0.820331 0.096472 -0.563693\nvn -0.825451 0.435050 -0.359668\nvn 0.085943 -0.604104 0.792258\nvn 0.308552 -0.587652 0.747971\nvn 0.130745 -0.491390 0.861070\nvn 0.130745 -0.491390 0.861070\nvn -0.024812 -0.572380 0.819613\nvn 0.085943 -0.604104 0.792258\nvn -0.546175 -0.601904 -0.582585\nvn -0.384450 -0.551086 -0.740610\nvn -0.401725 -0.506986 -0.762615\nvn -0.401725 -0.506986 -0.762615\nvn -0.480406 -0.457487 -0.748275\nvn -0.546175 -0.601904 -0.582585\nvn 0.308552 -0.587652 0.747971\nvn 0.372184 -0.629218 0.682322\nvn 0.343675 -0.521722 0.780829\nvn 0.343675 -0.521722 0.780829\nvn 0.130745 -0.491390 0.861070\nvn 0.308552 -0.587652 0.747971\nvn 0.372184 -0.629218 0.682322\nvn 0.399497 -0.561188 0.724893\nvn 0.397606 -0.462398 0.792526\nvn 0.397606 -0.462398 0.792526\nvn 0.343675 -0.521722 0.780829\nvn 0.372184 -0.629218 0.682322\nvn -0.384450 -0.551086 -0.740610\nvn -0.224771 -0.533988 -0.815067\nvn -0.137064 -0.639661 -0.756338\nvn -0.137064 -0.639661 -0.756338\nvn -0.401725 -0.506986 -0.762615\nvn -0.384450 -0.551086 -0.740610\nvn -0.140907 -0.588045 -0.796460\nvn -0.137064 -0.639661 -0.756338\nvn -0.224771 -0.533988 -0.815067\nvn -0.224771 -0.533988 -0.815067\nvn -0.190804 -0.476493 -0.858224\nvn -0.140907 -0.588045 -0.796460\nvn 0.277481 -0.102728 0.955223\nvn 0.411462 -0.132210 0.901787\nvn 0.508053 0.150033 0.848158\nvn 0.508053 0.150033 0.848158\nvn 0.296462 -0.114172 0.948196\nvn 0.277481 -0.102728 0.955223\nvn -0.343095 0.049349 0.938003\nvn -0.343095 0.049349 0.938003\nvn -0.343095 0.049349 0.938003\nvn -0.343095 0.049349 0.938003\nvn -0.343095 0.049349 0.938003\nvn -0.343095 0.049349 0.938003\nvn 0.508053 0.150033 0.848158\nvn 0.411462 -0.132210 0.901787\nvn 0.688783 -0.205118 0.695345\nvn 0.688783 -0.205118 0.695345\nvn 0.695622 -0.067325 0.715246\nvn 0.508053 0.150033 0.848158\nvn -0.211347 -0.812945 0.542635\nvn -0.121955 -0.814625 0.567021\nvn -0.209942 -0.810073 0.547455\nvn -0.209942 -0.810073 0.547455\nvn -0.300611 -0.807379 0.507713\nvn -0.211347 -0.812945 0.542635\nvn -0.211347 -0.812945 0.542635\nvn -0.300611 -0.807379 0.507713\nvn -0.332749 -0.804573 0.491875\nvn -0.332749 -0.804573 0.491875\nvn -0.290697 -0.805467 0.516448\nvn -0.211347 -0.812945 0.542635\nvn 0.408382 -0.633769 0.656933\nvn 0.410301 -0.632694 0.656774\nvn 0.332633 -0.673688 0.659924\nvn 0.332633 -0.673688 0.659924\nvn 0.329670 -0.675118 0.659950\nvn 0.408382 -0.633769 0.656933\nvn 0.116157 -0.807482 -0.578342\nvn 0.200847 -0.815076 -0.543425\nvn 0.268817 -0.804802 -0.529180\nvn 0.268817 -0.804802 -0.529180\nvn 0.200512 -0.808333 -0.553528\nvn 0.116157 -0.807482 -0.578342\nvn 0.116157 -0.807482 -0.578342\nvn 0.200512 -0.808333 -0.553528\nvn 0.115025 -0.807523 -0.578511\nvn 0.115025 -0.807523 -0.578511\nvn 0.071658 -0.802092 -0.592886\nvn 0.116157 -0.807482 -0.578342\nvn 0.679724 -0.672277 -0.293290\nvn 0.677962 -0.673506 -0.294545\nvn 0.744697 -0.621583 -0.243024\nvn 0.744697 -0.621583 -0.243024\nvn 0.749377 -0.617471 -0.239090\nvn 0.679724 -0.672277 -0.293290\nvn 0.835830 -0.116583 -0.536467\nvn 0.935106 0.146340 -0.322740\nvn 0.899857 -0.144599 -0.411520\nvn 0.899857 -0.144599 -0.411520\nvn 0.836308 -0.116551 -0.535728\nvn 0.835830 -0.116583 -0.536467\nvn 0.358202 0.041445 -0.932724\nvn 0.358202 0.041445 -0.932724\nvn 0.358202 0.041445 -0.932724\nvn 0.358202 0.041445 -0.932724\nvn 0.358202 0.041445 -0.932724\nvn 0.358202 0.041445 -0.932724\nvn 0.899857 -0.144599 -0.411520\nvn 0.935106 0.146340 -0.322740\nvn 0.992444 -0.072482 -0.099003\nvn 0.992444 -0.072482 -0.099003\nvn 0.972623 -0.212079 -0.095007\nvn 0.899857 -0.144599 -0.411520\nvn 0.564817 0.412436 0.714758\nvn 0.498289 0.501281 0.707408\nvn 0.498803 0.500391 0.707676\nvn 0.498803 0.500391 0.707676\nvn 0.508053 0.150033 0.848158\nvn 0.564817 0.412436 0.714758\nvn -0.021455 0.869654 0.493196\nvn -0.021455 0.869654 0.493196\nvn -0.021455 0.869654 0.493196\nvn -0.021455 0.869654 0.493196\nvn -0.021455 0.869654 0.493196\nvn -0.021455 0.869654 0.493196\nvn 0.721536 0.107397 0.683997\nvn 0.564817 0.412436 0.714758\nvn 0.508053 0.150033 0.848158\nvn 0.508053 0.150033 0.848158\nvn 0.695622 -0.067325 0.715246\nvn 0.721536 0.107397 0.683997\nvn 0.935106 0.146340 -0.322740\nvn 0.837073 0.500297 -0.221384\nvn 0.836895 0.500514 -0.221569\nvn 0.836895 0.500514 -0.221569\nvn 0.892219 0.412188 -0.184517\nvn 0.935106 0.146340 -0.322740\nvn 0.309950 0.866861 -0.390490\nvn 0.309986 0.866845 -0.390497\nvn 0.309986 0.866845 -0.390497\nvn 0.309986 0.866845 -0.390497\nvn 0.309950 0.866861 -0.390490\nvn 0.309950 0.866861 -0.390490\nvn 0.935106 0.146340 -0.322740\nvn 0.892219 0.412188 -0.184517\nvn 0.992425 0.106635 -0.061008\nvn 0.992425 0.106635 -0.061008\nvn 0.992444 -0.072482 -0.099003\nvn 0.935106 0.146340 -0.322740\nvn 0.968708 -0.239697 0.064426\nvn 0.972623 -0.212079 -0.095007\nvn 0.992444 -0.072482 -0.099003\nvn 0.992444 -0.072482 -0.099003\nvn 0.974994 -0.211863 0.067081\nvn 0.968708 -0.239697 0.064426\nvn 0.974994 -0.211863 0.067081\nvn 0.992444 -0.072482 -0.099003\nvn 0.992425 0.106635 -0.061008\nvn 0.992425 0.106635 -0.061008\nvn 0.978916 -0.195533 0.059084\nvn 0.974994 -0.211863 0.067081\nvn 0.789918 -0.196175 0.580986\nvn 0.721536 0.107397 0.683997\nvn 0.695622 -0.067325 0.715246\nvn 0.695622 -0.067325 0.715246\nvn 0.787768 -0.208204 0.579717\nvn 0.789918 -0.196175 0.580986\nvn 0.787768 -0.208204 0.579717\nvn 0.695622 -0.067325 0.715246\nvn 0.688783 -0.205118 0.695345\nvn 0.688783 -0.205118 0.695345\nvn 0.793064 -0.236765 0.561242\nvn 0.787768 -0.208204 0.579717\nvn 0.793064 -0.236765 0.561242\nvn 0.688783 -0.205118 0.695345\nvn 0.770855 -0.286148 0.569123\nvn 0.770855 -0.286148 0.569123\nvn 0.767010 -0.290665 0.572022\nvn 0.793064 -0.236765 0.561242\nvn 0.955701 -0.287946 0.061007\nvn 0.955266 -0.289592 0.060030\nvn 0.972623 -0.212079 -0.095007\nvn 0.972623 -0.212079 -0.095007\nvn 0.968708 -0.239697 0.064426\nvn 0.955701 -0.287946 0.061007\nvn -0.277481 -0.102728 0.955223\nvn -0.296462 -0.114172 0.948196\nvn -0.508053 0.150032 0.848158\nvn -0.508053 0.150032 0.848158\nvn -0.411462 -0.132210 0.901787\nvn -0.277481 -0.102728 0.955223\nvn 0.343068 0.049350 0.938013\nvn 0.343068 0.049350 0.938013\nvn 0.343095 0.049349 0.938003\nvn 0.343095 0.049349 0.938003\nvn 0.343095 0.049349 0.938003\nvn 0.343068 0.049350 0.938013\nvn -0.688783 -0.205118 0.695345\nvn -0.411462 -0.132210 0.901787\nvn -0.508053 0.150032 0.848158\nvn -0.508053 0.150032 0.848158\nvn -0.695622 -0.067325 0.715246\nvn -0.688783 -0.205118 0.695345\nvn 0.211347 -0.812945 0.542635\nvn 0.300584 -0.807386 0.507718\nvn 0.209942 -0.810073 0.547455\nvn 0.209942 -0.810073 0.547455\nvn 0.121956 -0.814625 0.567021\nvn 0.211347 -0.812945 0.542635\nvn 0.332722 -0.804581 0.491880\nvn 0.300584 -0.807386 0.507718\nvn 0.211347 -0.812945 0.542635\nvn 0.211347 -0.812945 0.542635\nvn 0.290697 -0.805466 0.516448\nvn 0.332722 -0.804581 0.491880\nvn -0.332632 -0.673688 0.659924\nvn -0.410292 -0.632681 0.656791\nvn -0.408382 -0.633769 0.656933\nvn -0.408382 -0.633769 0.656933\nvn -0.329670 -0.675118 0.659950\nvn -0.332632 -0.673688 0.659924\nvn -0.116157 -0.807482 -0.578342\nvn -0.200511 -0.808333 -0.553528\nvn -0.268817 -0.804802 -0.529180\nvn -0.268817 -0.804802 -0.529180\nvn -0.200847 -0.815077 -0.543425\nvn -0.116157 -0.807482 -0.578342\nvn -0.115025 -0.807523 -0.578511\nvn -0.200511 -0.808333 -0.553528\nvn -0.116157 -0.807482 -0.578342\nvn -0.116157 -0.807482 -0.578342\nvn -0.071658 -0.802092 -0.592886\nvn -0.115025 -0.807523 -0.578511\nvn -0.744664 -0.621612 -0.243053\nvn -0.677962 -0.673507 -0.294545\nvn -0.679724 -0.672277 -0.293290\nvn -0.679724 -0.672277 -0.293290\nvn -0.749357 -0.617486 -0.239114\nvn -0.744664 -0.621612 -0.243053\nvn -0.835830 -0.116584 -0.536467\nvn -0.836322 -0.116554 -0.535706\nvn -0.899845 -0.144598 -0.411545\nvn -0.899845 -0.144598 -0.411545\nvn -0.935106 0.146339 -0.322740\nvn -0.835830 -0.116584 -0.536467\nvn -0.358202 0.041445 -0.932724\nvn -0.358202 0.041445 -0.932724\nvn -0.358202 0.041445 -0.932724\nvn -0.358202 0.041445 -0.932724\nvn -0.358202 0.041445 -0.932724\nvn -0.358202 0.041445 -0.932724\nvn -0.992444 -0.072483 -0.099003\nvn -0.935106 0.146339 -0.322740\nvn -0.899845 -0.144598 -0.411545\nvn -0.899845 -0.144598 -0.411545\nvn -0.972620 -0.212079 -0.095037\nvn -0.992444 -0.072483 -0.099003\nvn -0.564817 0.412435 0.714758\nvn -0.508053 0.150032 0.848158\nvn -0.498804 0.500390 0.707676\nvn -0.498804 0.500390 0.707676\nvn -0.498289 0.501280 0.707408\nvn -0.564817 0.412435 0.714758\nvn 0.021455 0.869654 0.493195\nvn 0.021455 0.869654 0.493195\nvn 0.021455 0.869654 0.493195\nvn 0.021455 0.869654 0.493195\nvn 0.021455 0.869654 0.493195\nvn 0.021455 0.869654 0.493195\nvn -0.508053 0.150032 0.848158\nvn -0.564817 0.412435 0.714758\nvn -0.721536 0.107397 0.683997\nvn -0.721536 0.107397 0.683997\nvn -0.695622 -0.067325 0.715246\nvn -0.508053 0.150032 0.848158\nvn -0.935106 0.146339 -0.322740\nvn -0.892219 0.412187 -0.184517\nvn -0.836895 0.500513 -0.221569\nvn -0.836895 0.500513 -0.221569\nvn -0.837074 0.500297 -0.221384\nvn -0.935106 0.146339 -0.322740\nvn -0.309987 0.866845 -0.390497\nvn -0.309987 0.866845 -0.390497\nvn -0.309951 0.866861 -0.390490\nvn -0.309951 0.866861 -0.390490\nvn -0.309951 0.866861 -0.390490\nvn -0.309987 0.866845 -0.390497\nvn -0.992422 0.106664 -0.061008\nvn -0.892219 0.412187 -0.184517\nvn -0.935106 0.146339 -0.322740\nvn -0.935106 0.146339 -0.322740\nvn -0.992444 -0.072483 -0.099003\nvn -0.992422 0.106664 -0.061008\nvn -0.968708 -0.239698 0.064426\nvn -0.974994 -0.211864 0.067081\nvn -0.992444 -0.072483 -0.099003\nvn -0.992444 -0.072483 -0.099003\nvn -0.972620 -0.212079 -0.095037\nvn -0.968708 -0.239698 0.064426\nvn -0.974994 -0.211864 0.067081\nvn -0.978916 -0.195533 0.059084\nvn -0.992422 0.106664 -0.061008\nvn -0.992422 0.106664 -0.061008\nvn -0.992444 -0.072483 -0.099003\nvn -0.974994 -0.211864 0.067081\nvn -0.789918 -0.196175 0.580986\nvn -0.787768 -0.208204 0.579717\nvn -0.695622 -0.067325 0.715246\nvn -0.695622 -0.067325 0.715246\nvn -0.721536 0.107397 0.683997\nvn -0.789918 -0.196175 0.580986\nvn -0.787768 -0.208204 0.579717\nvn -0.793063 -0.236766 0.561242\nvn -0.688783 -0.205118 0.695345\nvn -0.688783 -0.205118 0.695345\nvn -0.695622 -0.067325 0.715246\nvn -0.787768 -0.208204 0.579717\nvn -0.793063 -0.236766 0.561242\nvn -0.767010 -0.290666 0.572022\nvn -0.770855 -0.286149 0.569123\nvn -0.770855 -0.286149 0.569123\nvn -0.688783 -0.205118 0.695345\nvn -0.793063 -0.236766 0.561242\nvn -0.955701 -0.287947 0.061007\nvn -0.968708 -0.239698 0.064426\nvn -0.972620 -0.212079 -0.095037\nvn -0.972620 -0.212079 -0.095037\nvn -0.955274 -0.289564 0.060031\nvn -0.955701 -0.287947 0.061007\nvn 0.961392 -0.261002 -0.087194\nvn 0.868638 -0.422630 -0.258559\nvn 0.850597 -0.352342 -0.390308\nvn 0.850597 -0.352342 -0.390308\nvn 0.907700 -0.236126 -0.346880\nvn 0.961392 -0.261002 -0.087194\nvn 0.961392 -0.261002 -0.087194\nvn 0.907700 -0.236126 -0.346880\nvn 0.956391 -0.194745 -0.217696\nvn 0.956391 -0.194745 -0.217696\nvn 0.965746 -0.256238 -0.040957\nvn 0.961392 -0.261002 -0.087194\nvn 0.104100 -0.260815 -0.959760\nvn 0.101019 -0.261092 -0.960014\nvn 0.114722 -0.259903 -0.958796\nvn 0.114722 -0.259903 -0.958796\nvn 0.117682 -0.259626 -0.958512\nvn 0.104100 -0.260815 -0.959760\nvn 0.850597 -0.352342 -0.390308\nvn 0.716344 -0.258100 -0.648256\nvn 0.828142 -0.194896 -0.525543\nvn 0.828142 -0.194896 -0.525543\nvn 0.907700 -0.236126 -0.346880\nvn 0.850597 -0.352342 -0.390308\nvn 0.850597 -0.352342 -0.390308\nvn 0.868638 -0.422630 -0.258559\nvn 0.773702 -0.488893 -0.402950\nvn 0.773702 -0.488893 -0.402950\nvn 0.757159 -0.323324 -0.567602\nvn 0.850597 -0.352342 -0.390308\nvn 0.695349 -0.143349 -0.704230\nvn 0.757159 -0.323324 -0.567602\nvn 0.773702 -0.488893 -0.402950\nvn 0.773702 -0.488893 -0.402950\nvn 0.758775 -0.337942 -0.556827\nvn 0.695349 -0.143349 -0.704230\nvn 0.717168 -0.298446 -0.629762\nvn 0.695349 -0.143349 -0.704230\nvn 0.758775 -0.337942 -0.556827\nvn 0.758775 -0.337942 -0.556827\nvn 0.716040 -0.304062 -0.628358\nvn 0.717168 -0.298446 -0.629762\nvn 0.680450 -0.198007 -0.705536\nvn 0.717168 -0.298446 -0.629762\nvn 0.716040 -0.304062 -0.628358\nvn 0.716040 -0.304062 -0.628358\nvn 0.695504 -0.231214 -0.680305\nvn 0.680450 -0.198007 -0.705536\nvn 0.618931 -0.163827 -0.768170\nvn 0.680450 -0.198007 -0.705536\nvn 0.695504 -0.231214 -0.680305\nvn 0.695504 -0.231214 -0.680305\nvn 0.659893 -0.260087 -0.704909\nvn 0.618931 -0.163827 -0.768170\nvn 0.618931 -0.163827 -0.768170\nvn 0.659893 -0.260087 -0.704909\nvn 0.621460 -0.287246 -0.728888\nvn 0.621460 -0.287246 -0.728888\nvn 0.588818 -0.130106 -0.797726\nvn 0.618931 -0.163827 -0.768170\nvn 0.598733 -0.232071 -0.766591\nvn 0.588818 -0.130106 -0.797726\nvn 0.621460 -0.287246 -0.728888\nvn 0.621460 -0.287246 -0.728888\nvn 0.614604 -0.441924 -0.653425\nvn 0.598733 -0.232071 -0.766591\nvn 0.717168 -0.298446 -0.629762\nvn 0.680450 -0.198007 -0.705536\nvn 0.599526 0.025514 -0.799948\nvn 0.599526 0.025514 -0.799948\nvn 0.639952 -0.097691 -0.762180\nvn 0.717168 -0.298446 -0.629762\nvn 0.582640 -0.024629 -0.812357\nvn 0.599526 0.025514 -0.799948\nvn 0.680450 -0.198007 -0.705536\nvn 0.680450 -0.198007 -0.705536\nvn 0.618931 -0.163827 -0.768170\nvn 0.582640 -0.024629 -0.812357\nvn 0.143043 0.649903 -0.746435\nvn 0.131539 0.647107 -0.750966\nvn 0.146829 0.640634 -0.753678\nvn 0.146829 0.640634 -0.753678\nvn 0.158243 0.625221 -0.764237\nvn 0.143043 0.649903 -0.746435\nvn 0.757159 -0.323324 -0.567602\nvn 0.699679 -0.122778 -0.703829\nvn 0.716344 -0.258100 -0.648256\nvn 0.716344 -0.258100 -0.648256\nvn 0.850597 -0.352342 -0.390308\nvn 0.757159 -0.323324 -0.567602\nvn 0.699679 -0.122778 -0.703829\nvn 0.757159 -0.323324 -0.567602\nvn 0.695349 -0.143349 -0.704230\nvn 0.695349 -0.143349 -0.704230\nvn 0.573857 0.076024 -0.815419\nvn 0.699679 -0.122778 -0.703829\nvn 0.158243 0.625221 -0.764237\nvn 0.146829 0.640634 -0.753678\nvn 0.176888 0.605528 -0.775916\nvn 0.505120 0.242168 -0.828377\nvn 0.573857 0.076024 -0.815419\nvn 0.695349 -0.143349 -0.704230\nvn 0.695349 -0.143349 -0.704230\nvn 0.490414 0.273941 -0.827316\nvn 0.505120 0.242168 -0.828377\nvn 0.176888 0.605528 -0.775916\nvn 0.177101 0.615505 -0.767977\nvn 0.158243 0.625221 -0.764237\nvn 0.176888 0.605528 -0.775916\nvn 0.201919 0.571026 -0.795713\nvn 0.189647 0.594853 -0.781143\nvn 0.189647 0.594853 -0.781143\nvn 0.177101 0.615505 -0.767977\nvn 0.176888 0.605528 -0.775916\nvn 0.173256 0.272199 -0.946515\nvn 0.176093 0.271678 -0.946141\nvn 0.142614 0.277813 -0.949990\nvn 0.142614 0.277813 -0.949990\nvn 0.140111 0.278269 -0.950229\nvn 0.173256 0.272199 -0.946515\nvn 0.907700 -0.236126 -0.346880\nvn 0.828142 -0.194896 -0.525543\nvn 0.894253 -0.104804 -0.435117\nvn 0.894253 -0.104804 -0.435117\nvn 0.956391 -0.194745 -0.217696\nvn 0.907700 -0.236126 -0.346880\nvn 0.598733 -0.232071 -0.766591\nvn 0.549797 -0.015839 -0.835148\nvn 0.537530 0.017915 -0.843055\nvn 0.537530 0.017915 -0.843055\nvn 0.588818 -0.130106 -0.797726\nvn 0.598733 -0.232071 -0.766591\nvn 0.129796 0.665646 -0.734893\nvn 0.079075 0.724377 -0.684854\nvn 0.088750 0.711407 -0.697154\nvn 0.088750 0.711407 -0.697154\nvn 0.123205 0.658904 -0.742069\nvn 0.129796 0.665646 -0.734893\nvn 0.129796 0.665646 -0.734893\nvn 0.123205 0.658904 -0.742069\nvn 0.127998 0.656839 -0.743087\nvn 0.127998 0.656839 -0.743087\nvn 0.140631 0.665160 -0.733339\nvn 0.129796 0.665646 -0.734893\nvn 0.537530 0.017915 -0.843055\nvn 0.426779 0.004883 -0.904343\nvn 0.618931 -0.163827 -0.768170\nvn 0.618931 -0.163827 -0.768170\nvn 0.588818 -0.130106 -0.797726\nvn 0.537530 0.017915 -0.843055\nvn 0.162668 0.689739 -0.705548\nvn 0.148904 0.622535 -0.768296\nvn 0.162609 0.591472 -0.789759\nvn 0.162609 0.591472 -0.789759\nvn 0.175273 0.589451 -0.788560\nvn 0.162668 0.689739 -0.705548\nvn 0.174844 0.692205 -0.700201\nvn 0.162668 0.689739 -0.705548\nvn 0.175273 0.589451 -0.788560\nvn 0.175273 0.589451 -0.788560\nvn 0.190071 0.661160 -0.725769\nvn 0.174844 0.692205 -0.700201\nvn 0.512235 0.190654 -0.837417\nvn 0.494470 0.290297 -0.819284\nvn 0.639952 -0.097691 -0.762180\nvn 0.639952 -0.097691 -0.762180\nvn 0.599526 0.025514 -0.799948\nvn 0.512235 0.190654 -0.837417\nvn 0.395191 0.020051 -0.918380\nvn 0.512235 0.190654 -0.837417\nvn 0.599526 0.025514 -0.799948\nvn 0.599526 0.025514 -0.799948\nvn 0.582640 -0.024629 -0.812357\nvn 0.395191 0.020051 -0.918380\nvn 0.395191 0.020051 -0.918380\nvn 0.582640 -0.024629 -0.812357\nvn 0.618931 -0.163827 -0.768170\nvn 0.618931 -0.163827 -0.768170\nvn 0.426779 0.004883 -0.904343\nvn 0.395191 0.020051 -0.918380\nvn 0.131566 0.057070 -0.989663\nvn 0.395191 0.020051 -0.918380\nvn 0.426779 0.004883 -0.904343\nvn 0.426779 0.004883 -0.904343\nvn 0.129005 0.052432 -0.990257\nvn 0.131566 0.057070 -0.989663\nvn 0.038515 0.993030 0.111395\nvn 0.040193 0.992535 0.115148\nvn 0.039644 0.992701 0.113898\nvn 0.039644 0.992701 0.113898\nvn 0.037935 0.993188 0.110174\nvn 0.038515 0.993030 0.111395\nvn 0.565635 0.684658 -0.459674\nvn 0.562778 0.688244 -0.457822\nvn 0.590553 0.651837 -0.475769\nvn 0.590553 0.651837 -0.475769\nvn 0.593081 0.648352 -0.477383\nvn 0.565635 0.684658 -0.459674\nvn 0.174022 -0.249069 -0.952723\nvn 0.173013 -0.248976 -0.952931\nvn 0.190317 -0.250470 -0.949234\nvn 0.190317 -0.250470 -0.949234\nvn 0.191386 -0.250563 -0.948994\nvn 0.174022 -0.249069 -0.952723\nvn 0.185527 0.668405 -0.720288\nvn 0.185892 0.676762 -0.712347\nvn 0.185161 0.657419 -0.730422\nvn 0.185161 0.657419 -0.730422\nvn 0.184675 0.650254 -0.736930\nvn 0.185527 0.668405 -0.720288\nvn 0.186991 0.695046 -0.694222\nvn 0.185892 0.676762 -0.712347\nvn 0.185527 0.668405 -0.720288\nvn 0.185527 0.668405 -0.720288\nvn 0.187539 0.686920 -0.702118\nvn 0.186991 0.695046 -0.694222\nvn 0.184675 0.650254 -0.736930\nvn 0.185161 0.657419 -0.730422\nvn 0.186380 0.640993 -0.744574\nvn 0.186380 0.640993 -0.744574\nvn 0.186198 0.636114 -0.748792\nvn 0.184675 0.650254 -0.736930\nvn 0.186198 0.636114 -0.748792\nvn 0.186380 0.640993 -0.744574\nvn 0.187907 0.625219 -0.757490\nvn 0.187907 0.625219 -0.757490\nvn 0.186842 0.613203 -0.767511\nvn 0.186198 0.636114 -0.748792\nvn 0.186991 0.695046 -0.694222\nvn 0.187539 0.686920 -0.702118\nvn 0.186872 0.700365 -0.688889\nvn 0.186872 0.700365 -0.688889\nvn 0.186901 0.700361 -0.688885\nvn 0.186991 0.695046 -0.694222\nvn 0.186842 0.613203 -0.767511\nvn 0.187907 0.625219 -0.757490\nvn 0.188056 0.601769 -0.776214\nvn 0.188056 0.601769 -0.776214\nvn 0.187328 0.595465 -0.781236\nvn 0.186842 0.613203 -0.767511\nvn 0.191568 0.586301 -0.787117\nvn 0.187328 0.595465 -0.781236\nvn 0.188056 0.601769 -0.776214\nvn 0.188056 0.601769 -0.776214\nvn 0.191906 0.585850 -0.787370\nvn 0.191568 0.586301 -0.787117\nvn 0.224654 0.258775 -0.939450\nvn 0.226209 0.258316 -0.939203\nvn 0.214337 0.273758 -0.937612\nvn 0.214337 0.273758 -0.937612\nvn 0.180704 0.272322 -0.945086\nvn 0.224654 0.258775 -0.939450\nvn 0.180704 0.272322 -0.945086\nvn 0.214337 0.273758 -0.937612\nvn 0.209026 0.271376 -0.939502\nvn 0.209026 0.271376 -0.939502\nvn 0.220223 0.273418 -0.936346\nvn 0.180704 0.272322 -0.945086\nvn 0.220223 0.273418 -0.936346\nvn 0.209026 0.271376 -0.939502\nvn 0.212079 0.264237 -0.940851\nvn 0.212079 0.264237 -0.940851\nvn 0.213940 0.266647 -0.939749\nvn 0.220223 0.273418 -0.936346\nvn 0.213940 0.266647 -0.939749\nvn 0.212079 0.264237 -0.940851\nvn 0.186318 0.267132 -0.945477\nvn 0.186318 0.267132 -0.945477\nvn 0.206921 0.255783 -0.944330\nvn 0.213940 0.266647 -0.939749\nvn 0.041322 0.331252 -0.942637\nvn 0.206921 0.255783 -0.944330\nvn 0.186318 0.267132 -0.945477\nvn 0.186318 0.267132 -0.945477\nvn 0.000275 0.348925 -0.937151\nvn 0.041322 0.331252 -0.942637\nvn 0.000031 -0.221265 -0.975214\nvn 0.000000 -0.221265 -0.975214\nvn 0.000000 -0.221265 -0.975214\nvn 0.000000 -0.221265 -0.975214\nvn 0.000031 -0.221265 -0.975214\nvn 0.000031 -0.221265 -0.975214\nvn 0.000152 0.777831 -0.628473\nvn 0.000152 0.777846 -0.628454\nvn 0.000091 0.777846 -0.628454\nvn 0.000091 0.777846 -0.628454\nvn 0.000091 0.777846 -0.628454\nvn 0.000152 0.777831 -0.628473\nvn 0.000183 0.780851 -0.624717\nvn 0.000152 0.777846 -0.628454\nvn 0.000152 0.777831 -0.628473\nvn 0.000152 0.777831 -0.628473\nvn 0.000183 0.779100 -0.626900\nvn 0.000183 0.780851 -0.624717\nvn 0.000091 0.777846 -0.628454\nvn 0.000091 0.777846 -0.628454\nvn 0.000030 0.777900 -0.628388\nvn 0.000030 0.777900 -0.628388\nvn 0.000030 0.777969 -0.628302\nvn 0.000091 0.777846 -0.628454\nvn 0.000030 0.777969 -0.628302\nvn 0.000030 0.777900 -0.628388\nvn -0.000092 0.778337 -0.627846\nvn -0.000092 0.778337 -0.627846\nvn -0.000122 0.778978 -0.627052\nvn 0.000030 0.777969 -0.628302\nvn 0.000183 0.780851 -0.624717\nvn 0.000183 0.779100 -0.626900\nvn 0.000122 0.782085 -0.623172\nvn 0.000122 0.782085 -0.623172\nvn 0.000091 0.782100 -0.623153\nvn 0.000183 0.780851 -0.624717\nvn -0.000122 0.778978 -0.627052\nvn -0.000092 0.778337 -0.627846\nvn -0.000122 0.779399 -0.626528\nvn -0.000122 0.779399 -0.626528\nvn -0.000122 0.779724 -0.626123\nvn -0.000122 0.778978 -0.627052\nvn -0.000092 0.779820 -0.626004\nvn -0.000122 0.779724 -0.626123\nvn -0.000122 0.779399 -0.626528\nvn -0.000122 0.779399 -0.626528\nvn -0.000092 0.779820 -0.626004\nvn -0.000092 0.779820 -0.626004\nvn -0.000183 0.327075 -0.944998\nvn -0.025697 0.349562 -0.936561\nvn -0.005280 0.330707 -0.943719\nvn -0.005280 0.330707 -0.943719\nvn -0.000000 0.327011 -0.945021\nvn -0.000183 0.327075 -0.944998\nvn -0.005280 0.330707 -0.943719\nvn -0.025697 0.349562 -0.936561\nvn -0.080631 0.345015 -0.935127\nvn -0.080631 0.345015 -0.935127\nvn -0.021608 0.331102 -0.943347\nvn -0.005280 0.330707 -0.943719\nvn -0.003357 0.321394 -0.946940\nvn -0.021608 0.331102 -0.943347\nvn -0.080631 0.345015 -0.935127\nvn -0.080631 0.345015 -0.935127\nvn -0.070378 0.339040 -0.938136\nvn -0.003357 0.321394 -0.946940\nvn -0.070378 0.339040 -0.938136\nvn -0.080631 0.345015 -0.935127\nvn -0.185131 0.403649 -0.895988\nvn -0.185131 0.403649 -0.895988\nvn -0.270524 0.432856 -0.859914\nvn -0.070378 0.339040 -0.938136\nvn -0.130285 0.392656 -0.910410\nvn -0.185131 0.403649 -0.895988\nvn -0.080631 0.345015 -0.935127\nvn -0.080631 0.345015 -0.935127\nvn -0.025697 0.349562 -0.936561\nvn -0.130285 0.392656 -0.910410\nvn -0.003357 0.321394 -0.946940\nvn -0.070378 0.339040 -0.938136\nvn -0.000061 0.322894 -0.946435\nvn -0.000061 0.322894 -0.946435\nvn 0.000061 0.322894 -0.946435\nvn -0.003357 0.321394 -0.946940\nvn -0.000000 0.322675 -0.946510\nvn 0.000061 0.322894 -0.946435\nvn -0.000061 0.322894 -0.946435\nvn -0.000061 0.322894 -0.946435\nvn -0.000000 0.322675 -0.946510\nvn -0.000000 0.322675 -0.946510\nvn 0.000275 0.418991 0.907991\nvn 0.000275 0.418991 0.907991\nvn 0.000305 0.418965 0.908002\nvn 0.000305 0.418965 0.908002\nvn 0.000305 0.418965 0.908002\nvn 0.000275 0.418991 0.907991\nvn 0.609073 -0.279190 -0.742350\nvn 0.595485 -0.286237 -0.750644\nvn 0.595473 -0.286123 -0.750697\nvn 0.595473 -0.286123 -0.750697\nvn 0.610507 -0.278488 -0.741435\nvn 0.609073 -0.279190 -0.742350\nvn 0.653938 -0.259018 -0.710827\nvn 0.609073 -0.279190 -0.742350\nvn 0.610507 -0.278488 -0.741435\nvn 0.610507 -0.278488 -0.741435\nvn 0.657659 -0.257124 -0.708076\nvn 0.653938 -0.259018 -0.710827\nvn 0.696939 -0.237288 -0.676735\nvn 0.653938 -0.259018 -0.710827\nvn 0.657659 -0.257124 -0.708076\nvn 0.657659 -0.257124 -0.708076\nvn 0.698402 -0.238721 -0.674719\nvn 0.696939 -0.237288 -0.676735\nvn 0.727854 -0.244825 -0.640538\nvn 0.696939 -0.237288 -0.676735\nvn 0.698402 -0.238721 -0.674719\nvn 0.698402 -0.238721 -0.674719\nvn 0.729493 -0.253490 -0.635281\nvn 0.727854 -0.244825 -0.640538\nvn 0.775460 -0.283675 -0.564084\nvn 0.727854 -0.244825 -0.640538\nvn 0.729493 -0.253490 -0.635281\nvn 0.729493 -0.253490 -0.635281\nvn 0.773821 -0.304645 -0.555332\nvn 0.775460 -0.283675 -0.564084\nvn 0.818309 -0.432669 -0.378376\nvn 0.775460 -0.283675 -0.564084\nvn 0.773821 -0.304645 -0.555332\nvn 0.773821 -0.304645 -0.555332\nvn 0.796636 -0.476126 -0.372392\nvn 0.818309 -0.432669 -0.378376\nvn 0.885077 -0.395097 -0.246043\nvn 0.818309 -0.432669 -0.378376\nvn 0.796636 -0.476126 -0.372392\nvn 0.796636 -0.476126 -0.372392\nvn 0.878441 -0.415918 -0.235274\nvn 0.885077 -0.395097 -0.246043\nvn 0.954894 -0.245163 -0.167552\nvn 0.885077 -0.395097 -0.246043\nvn 0.878441 -0.415918 -0.235274\nvn 0.878441 -0.415918 -0.235274\nvn 0.957319 -0.237254 -0.165077\nvn 0.954894 -0.245163 -0.167552\nvn 0.966183 -0.197399 -0.165903\nvn 0.954894 -0.245163 -0.167552\nvn 0.957319 -0.237254 -0.165077\nvn 0.957319 -0.237254 -0.165077\nvn 0.967554 -0.192973 -0.163095\nvn 0.966183 -0.197399 -0.165903\nvn 0.976397 -0.161476 -0.143440\nvn 0.966183 -0.197399 -0.165903\nvn 0.967554 -0.192973 -0.163095\nvn 0.967554 -0.192973 -0.163095\nvn 0.977496 -0.157051 -0.140846\nvn 0.976397 -0.161476 -0.143440\nvn 0.983800 -0.127690 -0.125828\nvn 0.976397 -0.161476 -0.143440\nvn 0.977496 -0.157051 -0.140846\nvn 0.977496 -0.157051 -0.140846\nvn 0.983568 -0.127905 -0.127417\nvn 0.983800 -0.127690 -0.125828\nvn 0.983800 -0.127690 -0.125828\nvn 0.983568 -0.127905 -0.127417\nvn 0.989481 -0.105137 -0.099369\nvn 0.989481 -0.105137 -0.099369\nvn 0.990157 -0.085575 -0.110753\nvn 0.983800 -0.127690 -0.125828\nvn 0.991357 -0.126746 -0.033876\nvn 0.990157 -0.085575 -0.110753\nvn 0.989481 -0.105137 -0.099369\nvn 0.989481 -0.105137 -0.099369\nvn 0.987547 -0.157327 0.000000\nvn 0.991357 -0.126746 -0.033876\nvn 0.761979 -0.322712 -0.561466\nvn 0.733778 -0.380729 -0.562686\nvn 0.725582 -0.392257 -0.565389\nvn 0.725582 -0.392257 -0.565389\nvn 0.732931 -0.385739 -0.560373\nvn 0.761979 -0.322712 -0.561466\nvn 0.693791 -0.420431 -0.584715\nvn 0.732931 -0.385739 -0.560373\nvn 0.725582 -0.392257 -0.565389\nvn 0.725582 -0.392257 -0.565389\nvn 0.687054 -0.426082 -0.588567\nvn 0.693791 -0.420431 -0.584715\nvn 0.693791 -0.420431 -0.584715\nvn 0.687054 -0.426082 -0.588567\nvn 0.656465 -0.447775 -0.607085\nvn 0.656465 -0.447775 -0.607085\nvn 0.655472 -0.438751 -0.614698\nvn 0.693791 -0.420431 -0.584715\nvn 0.655472 -0.438751 -0.614698\nvn 0.656465 -0.447775 -0.607085\nvn 0.644748 -0.462121 -0.608888\nvn 0.644748 -0.462121 -0.608888\nvn 0.640390 -0.425777 -0.639230\nvn 0.655472 -0.438751 -0.614698\nvn 0.644304 -0.430543 -0.632065\nvn 0.640390 -0.425777 -0.639230\nvn 0.644748 -0.462121 -0.608888\nvn 0.644748 -0.462121 -0.608888\nvn 0.636480 -0.479885 -0.603824\nvn 0.644304 -0.430543 -0.632065\nvn 0.655472 -0.438751 -0.614698\nvn 0.640390 -0.425777 -0.639230\nvn 0.592319 -0.464626 -0.658241\nvn 0.592319 -0.464626 -0.658241\nvn 0.603034 -0.481963 -0.635659\nvn 0.655472 -0.438751 -0.614698\nvn 0.569407 -0.454408 -0.685046\nvn 0.592319 -0.464626 -0.658241\nvn 0.640390 -0.425777 -0.639230\nvn 0.640390 -0.425777 -0.639230\nvn 0.644304 -0.430543 -0.632065\nvn 0.569407 -0.454408 -0.685046\nvn 0.733778 -0.380729 -0.562686\nvn 0.761979 -0.322712 -0.561466\nvn 0.780403 -0.298202 -0.549587\nvn 0.791900 -0.228005 -0.566488\nvn 0.780403 -0.298202 -0.549587\nvn 0.761979 -0.322712 -0.561466\nvn 0.761979 -0.322712 -0.561466\nvn 0.768143 -0.236403 -0.595037\nvn 0.791900 -0.228005 -0.566488\nvn 0.826119 -0.226604 -0.515924\nvn 0.780403 -0.298202 -0.549587\nvn 0.791900 -0.228005 -0.566488\nvn 0.791900 -0.228005 -0.566488\nvn 0.827984 -0.181650 -0.530514\nvn 0.826119 -0.226604 -0.515924\nvn 0.780403 -0.298202 -0.549587\nvn 0.826119 -0.226604 -0.515924\nvn 0.835477 -0.239030 -0.494816\nvn 0.835477 -0.239030 -0.494816\nvn 0.751115 -0.354544 -0.556889\nvn 0.780403 -0.298202 -0.549587\nvn 0.780403 -0.298202 -0.549587\nvn 0.751115 -0.354544 -0.556889\nvn 0.733778 -0.380729 -0.562686\nvn 0.866373 -0.175484 -0.467551\nvn 0.826119 -0.226604 -0.515924\nvn 0.827984 -0.181650 -0.530514\nvn 0.827984 -0.181650 -0.530514\nvn 0.856942 -0.150123 -0.493065\nvn 0.866373 -0.175484 -0.467551\nvn 0.899330 -0.130590 -0.417315\nvn 0.866373 -0.175484 -0.467551\nvn 0.856942 -0.150123 -0.493065\nvn 0.856942 -0.150123 -0.493065\nvn 0.888433 -0.105686 -0.446673\nvn 0.899330 -0.130590 -0.417315\nvn 0.866373 -0.175484 -0.467551\nvn 0.899330 -0.130590 -0.417315\nvn 0.908767 -0.136176 -0.394459\nvn 0.908767 -0.136176 -0.394459\nvn 0.883155 -0.161292 -0.440479\nvn 0.866373 -0.175484 -0.467551\nvn 0.826119 -0.226604 -0.515924\nvn 0.866373 -0.175484 -0.467551\nvn 0.883155 -0.161292 -0.440479\nvn 0.883155 -0.161292 -0.440479\nvn 0.835477 -0.239030 -0.494816\nvn 0.826119 -0.226604 -0.515924\nvn 0.910503 -0.079074 -0.405872\nvn 0.899330 -0.130590 -0.417315\nvn 0.888433 -0.105686 -0.446673\nvn 0.888433 -0.105686 -0.446673\nvn 0.903605 -0.027070 -0.427510\nvn 0.910503 -0.079074 -0.405872\nvn 0.899548 -0.023133 -0.436208\nvn 0.910503 -0.079074 -0.405872\nvn 0.903605 -0.027070 -0.427510\nvn 0.903605 -0.027070 -0.427510\nvn 0.893638 0.025118 -0.448085\nvn 0.899548 -0.023133 -0.436208\nvn 0.910503 -0.079074 -0.405872\nvn 0.899548 -0.023133 -0.436208\nvn 0.907118 -0.055544 -0.417195\nvn 0.906595 -0.027558 -0.421100\nvn 0.907118 -0.055544 -0.417195\nvn 0.899548 -0.023133 -0.436208\nvn 0.899548 -0.023133 -0.436208\nvn 0.896325 -0.003235 -0.443386\nvn 0.906595 -0.027558 -0.421100\nvn 0.896325 -0.003235 -0.443386\nvn 0.899548 -0.023133 -0.436208\nvn 0.893638 0.025118 -0.448085\nvn 0.907757 -0.029237 -0.418476\nvn 0.906595 -0.027558 -0.421100\nvn 0.896325 -0.003235 -0.443386\nvn 0.896325 -0.003235 -0.443386\nvn 0.903445 -0.023560 -0.428055\nvn 0.907757 -0.029237 -0.418476\nvn 0.907118 -0.055544 -0.417195\nvn 0.914116 -0.134834 -0.382377\nvn 0.910503 -0.079074 -0.405872\nvn 0.899330 -0.130590 -0.417315\nvn 0.910503 -0.079074 -0.405872\nvn 0.914116 -0.134834 -0.382377\nvn 0.914116 -0.134834 -0.382377\nvn 0.908767 -0.136176 -0.394459\nvn 0.899330 -0.130590 -0.417315\nvn 0.893638 0.025118 -0.448085\nvn 0.885322 0.055453 -0.461659\nvn 0.896325 -0.003235 -0.443386\nvn 0.896325 -0.003235 -0.443386\nvn 0.885322 0.055453 -0.461659\nvn 0.884639 0.051914 -0.463378\nvn 0.884639 0.051914 -0.463378\nvn 0.903445 -0.023560 -0.428055\nvn 0.896325 -0.003235 -0.443386\nvn 0.697765 0.641549 -0.318653\nvn 0.696177 0.643074 -0.319050\nvn 0.689191 0.639262 -0.341116\nvn 0.689191 0.639262 -0.341116\nvn 0.692030 0.636791 -0.339988\nvn 0.697765 0.641549 -0.318653\nvn 0.692030 0.636791 -0.339988\nvn 0.689191 0.639262 -0.341116\nvn 0.631440 0.590056 -0.503107\nvn 0.631440 0.590056 -0.503107\nvn 0.629894 0.587380 -0.508151\nvn 0.692030 0.636791 -0.339988\nvn 0.138465 0.988331 -0.063480\nvn 0.139992 0.988127 -0.063297\nvn 0.135170 0.988582 -0.066593\nvn 0.135170 0.988582 -0.066593\nvn 0.134773 0.988616 -0.066899\nvn 0.138465 0.988331 -0.063480\nvn 0.134773 0.988616 -0.066899\nvn 0.135170 0.988582 -0.066593\nvn 0.135170 0.988367 -0.069706\nvn 0.135170 0.988367 -0.069706\nvn 0.136055 0.988248 -0.069676\nvn 0.134773 0.988616 -0.066899\nvn 0.171240 0.218483 -0.960699\nvn -0.029542 0.402694 -0.914858\nvn 0.018647 0.360276 -0.932659\nvn 0.018647 0.360276 -0.932659\nvn 0.236585 0.166879 -0.957173\nvn 0.171240 0.218483 -0.960699\nvn 0.236585 0.166879 -0.957173\nvn 0.018647 0.360276 -0.932659\nvn 0.340803 0.083286 -0.936438\nvn 0.340803 0.083286 -0.936438\nvn 0.343771 0.086584 -0.935054\nvn 0.236585 0.166879 -0.957173\nvn 0.367688 -0.058138 -0.928130\nvn 0.343771 0.086584 -0.935054\nvn 0.340803 0.083286 -0.936438\nvn 0.340803 0.083286 -0.936438\nvn 0.375533 -0.028627 -0.926367\nvn 0.367688 -0.058138 -0.928130\nvn -0.246442 0.519892 -0.817911\nvn 0.018647 0.360276 -0.932659\nvn -0.197735 0.538483 -0.819108\nvn -0.197735 0.538483 -0.819108\nvn -0.246046 0.535582 -0.807845\nvn -0.246442 0.519892 -0.817911\nvn -0.261305 0.518185 -0.814373\nvn -0.246442 0.519892 -0.817911\nvn -0.246046 0.535582 -0.807845\nvn -0.170480 0.521266 -0.836193\nvn -0.197735 0.538483 -0.819108\nvn 0.018647 0.360276 -0.932659\nvn 0.018647 0.360276 -0.932659\nvn -0.029542 0.402694 -0.914858\nvn -0.170480 0.521266 -0.836193\nvn -0.246046 0.535582 -0.807845\nvn -0.264695 0.521943 -0.810871\nvn -0.261305 0.518185 -0.814373\nvn 0.364976 -0.121099 -0.923107\nvn 0.366448 -0.120949 -0.922544\nvn 0.367688 -0.058138 -0.928130\nvn 0.367688 -0.058138 -0.928130\nvn 0.375533 -0.028627 -0.926367\nvn 0.364976 -0.121099 -0.923107\nvn -0.258158 0.053194 -0.964637\nvn -0.242230 0.054690 -0.968676\nvn -0.305406 0.048617 -0.950980\nvn -0.305406 0.048617 -0.950980\nvn -0.321338 0.047061 -0.945794\nvn -0.258158 0.053194 -0.964637\nvn 0.613748 0.484925 -0.623026\nvn 0.619111 0.472894 -0.626955\nvn 0.536502 0.627969 -0.563756\nvn 0.536502 0.627969 -0.563756\nvn 0.532988 0.633428 -0.560975\nvn 0.613748 0.484925 -0.623026\nvn 0.105716 0.987856 -0.113865\nvn 0.085941 0.992502 -0.086918\nvn 0.087863 0.992100 -0.089542\nvn 0.087863 0.992100 -0.089542\nvn 0.108831 0.987022 -0.118079\nvn 0.105716 0.987856 -0.113865\nvn 0.629894 0.587380 -0.508151\nvn 0.631440 0.590056 -0.503107\nvn 0.554079 0.535463 -0.637398\nvn 0.554079 0.535463 -0.637398\nvn 0.553652 0.534669 -0.638435\nvn 0.629894 0.587380 -0.508151\nvn 0.550692 0.538332 -0.637917\nvn 0.553652 0.534669 -0.638435\nvn 0.554079 0.535463 -0.637398\nvn 0.554079 0.535463 -0.637398\nvn 0.549375 0.540006 -0.637637\nvn 0.550692 0.538332 -0.637917\nvn -0.073093 0.836984 -0.542323\nvn -0.072148 0.836687 -0.542908\nvn -0.072665 0.837282 -0.541921\nvn -0.072665 0.837282 -0.541921\nvn -0.073459 0.837624 -0.541285\nvn -0.073093 0.836984 -0.542323\nvn -0.070439 0.836812 -0.542940\nvn -0.072665 0.837282 -0.541921\nvn -0.072148 0.836687 -0.542908\nvn -0.072148 0.836687 -0.542908\nvn -0.069735 0.836364 -0.543721\nvn -0.070439 0.836812 -0.542940\nvn 0.541590 0.544460 -0.640503\nvn 0.550692 0.538332 -0.637917\nvn 0.549375 0.540006 -0.637637\nvn 0.549375 0.540006 -0.637637\nvn 0.540226 0.545658 -0.640635\nvn 0.541590 0.544460 -0.640503\nvn 0.521444 0.535422 -0.664394\nvn 0.541590 0.544460 -0.640503\nvn 0.540226 0.545658 -0.640635\nvn 0.540226 0.545658 -0.640635\nvn 0.521270 0.536560 -0.663612\nvn 0.521444 0.535422 -0.664394\nvn 0.501035 0.508604 -0.700204\nvn 0.521444 0.535422 -0.664394\nvn 0.521270 0.536560 -0.663612\nvn 0.521270 0.536560 -0.663612\nvn 0.502720 0.510991 -0.697252\nvn 0.501035 0.508604 -0.700204\nvn 0.492345 0.485112 -0.722678\nvn 0.501035 0.508604 -0.700204\nvn 0.502720 0.510991 -0.697252\nvn 0.502720 0.510991 -0.697252\nvn 0.494317 0.487481 -0.719731\nvn 0.492345 0.485112 -0.722678\nvn 0.488737 0.444636 -0.750623\nvn 0.492345 0.485112 -0.722678\nvn 0.494317 0.487481 -0.719731\nvn 0.494317 0.487481 -0.719731\nvn 0.489987 0.458461 -0.741436\nvn 0.488737 0.444636 -0.750623\nvn 0.488737 0.444636 -0.750623\nvn 0.489987 0.458461 -0.741436\nvn 0.490932 0.428032 -0.758799\nvn 0.490932 0.428032 -0.758799\nvn 0.494603 0.426697 -0.757164\nvn 0.488737 0.444636 -0.750623\nvn -0.061405 0.843913 -0.532954\nvn -0.061558 0.848838 -0.525057\nvn -0.060520 0.849198 -0.524595\nvn -0.060520 0.849198 -0.524595\nvn -0.060703 0.844157 -0.532649\nvn -0.061405 0.843913 -0.532954\nvn -0.061222 0.840136 -0.538910\nvn -0.061405 0.843913 -0.532954\nvn -0.060703 0.844157 -0.532649\nvn -0.061222 0.852347 -0.519380\nvn -0.060520 0.849198 -0.524595\nvn -0.061558 0.848838 -0.525057\nvn -0.061558 0.848838 -0.525057\nvn -0.062136 0.853273 -0.517750\nvn -0.061222 0.852347 -0.519380\nvn -0.062503 0.836892 -0.543788\nvn -0.061222 0.840136 -0.538910\nvn -0.060825 0.840402 -0.538539\nvn -0.060703 0.844157 -0.532649\nvn -0.060825 0.840402 -0.538539\nvn -0.061222 0.840136 -0.538910\nvn -0.060825 0.840402 -0.538539\nvn -0.062535 0.837241 -0.543247\nvn -0.062503 0.836892 -0.543788\nvn -0.065922 0.835772 -0.545106\nvn -0.062503 0.836892 -0.543788\nvn -0.062535 0.837241 -0.543247\nvn -0.062535 0.837241 -0.543247\nvn -0.066532 0.836066 -0.544580\nvn -0.065922 0.835772 -0.545106\nvn -0.069735 0.836364 -0.543721\nvn -0.065922 0.835772 -0.545106\nvn -0.066532 0.836066 -0.544580\nvn -0.066532 0.836066 -0.544580\nvn -0.070439 0.836812 -0.542940\nvn -0.069735 0.836364 -0.543721\nvn -0.074315 0.972738 0.219677\nvn -0.152960 0.972571 0.175239\nvn -0.028261 0.978092 0.206245\nvn -0.028261 0.978092 0.206245\nvn -0.000031 0.980176 0.198129\nvn -0.074315 0.972738 0.219677\nvn -0.000031 0.980176 0.198129\nvn -0.028261 0.978092 0.206245\nvn -0.000000 0.985765 0.168129\nvn -0.000000 0.985765 0.168129\nvn -0.000092 0.985848 0.167640\nvn -0.000031 0.980176 0.198129\nvn -0.000092 0.985848 0.167640\nvn -0.000000 0.985765 0.168129\nvn -0.000092 0.985879 0.167457\nvn 0.369622 0.923889 -0.099036\nvn 0.369621 0.923886 -0.099066\nvn 0.615138 0.676420 -0.405046\nvn 0.615138 0.676420 -0.405046\nvn 0.683015 0.707095 -0.183053\nvn 0.369622 0.923889 -0.099036\nvn -0.000000 1.000000 -0.000000\nvn 0.369621 0.923886 -0.099066\nvn 0.369622 0.923889 -0.099036\nvn 0.369622 0.923889 -0.099036\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.683015 0.707095 -0.183053\nvn 0.615138 0.676420 -0.405046\nvn 0.837081 0.360829 -0.411216\nvn 0.837081 0.360829 -0.411216\nvn 0.892390 0.382684 -0.239151\nvn 0.683015 0.707095 -0.183053\nvn 0.892390 0.382684 -0.239151\nvn 0.837081 0.360829 -0.411216\nvn 0.911492 0.005616 -0.411279\nvn 0.911492 0.005616 -0.411279\nvn 0.965915 0.000000 -0.258859\nvn 0.892390 0.382684 -0.239151\nvn 0.965915 0.000000 -0.258859\nvn 0.911492 0.005616 -0.411279\nvn 0.863814 -0.287643 -0.413626\nvn 0.863814 -0.287643 -0.413626\nvn 0.895975 -0.335403 -0.291090\nvn 0.965915 0.000000 -0.258859\nvn 0.895975 -0.335403 -0.291090\nvn 0.863814 -0.287643 -0.413626\nvn 0.810866 -0.311296 -0.495571\nvn 0.810866 -0.311296 -0.495571\nvn 0.737831 -0.537503 -0.408285\nvn 0.895975 -0.335403 -0.291090\nvn 0.418323 -0.881478 -0.219095\nvn 0.312945 -0.906637 -0.282975\nvn 0.399401 -0.903298 -0.156623\nvn 0.399401 -0.903298 -0.156623\nvn 0.451960 -0.883776 -0.121131\nvn 0.418323 -0.881478 -0.219095\nvn 0.451960 -0.883776 -0.121131\nvn 0.399401 -0.903298 -0.156623\nvn 0.369623 -0.923889 -0.099036\nvn 0.369623 -0.923889 -0.099036\nvn 0.369649 -0.923879 -0.099035\nvn 0.451960 -0.883776 -0.121131\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.284010 0.955795 0.076114\nvn -0.284010 0.955795 0.076114\nvn -0.284010 0.955795 0.076114\nvn -0.000000 1.000000 -0.000000\nvn -0.369648 0.923876 0.099065\nvn -0.284010 0.955795 0.076114\nvn -0.284010 0.955795 0.076114\nvn -0.284010 0.955795 0.076114\nvn -0.369648 0.923876 0.099065\nvn -0.369648 0.923876 0.099065\nvn 0.329152 0.912410 -0.243240\nvn 0.324354 0.914436 -0.242076\nvn 0.637663 0.701417 -0.318435\nvn 0.637663 0.701417 -0.318435\nvn 0.640724 0.698285 -0.319172\nvn 0.329152 0.912410 -0.243240\nvn -0.044192 0.987192 -0.153296\nvn 0.324354 0.914436 -0.242076\nvn 0.329152 0.912410 -0.243240\nvn 0.329152 0.912410 -0.243240\nvn -0.038119 0.987211 -0.154794\nvn -0.044192 0.987192 -0.153296\nvn 0.640724 0.698285 -0.319172\nvn 0.637663 0.701417 -0.318435\nvn 0.848212 0.380052 -0.368913\nvn 0.848212 0.380052 -0.368913\nvn 0.849033 0.378037 -0.369095\nvn 0.640724 0.698285 -0.319172\nvn 0.849033 0.378037 -0.369095\nvn 0.848212 0.380052 -0.368913\nvn 0.921973 0.000000 -0.387253\nvn 0.921973 0.000000 -0.387253\nvn 0.921973 0.000000 -0.387253\nvn 0.849033 0.378037 -0.369095\nvn 0.921973 0.000000 -0.387253\nvn 0.921973 0.000000 -0.387253\nvn 0.848222 -0.380056 -0.368886\nvn 0.848222 -0.380056 -0.368886\nvn 0.849033 -0.378036 -0.369094\nvn 0.921973 0.000000 -0.387253\nvn 0.849033 -0.378036 -0.369094\nvn 0.848222 -0.380056 -0.368886\nvn 0.637663 -0.701417 -0.318435\nvn 0.637663 -0.701417 -0.318435\nvn 0.640725 -0.698284 -0.319172\nvn 0.849033 -0.378036 -0.369094\nvn 0.640725 -0.698284 -0.319172\nvn 0.637663 -0.701417 -0.318435\nvn 0.324355 -0.914436 -0.242075\nvn 0.324355 -0.914436 -0.242075\nvn 0.329153 -0.912410 -0.243240\nvn 0.640725 -0.698284 -0.319172\nvn 0.329153 -0.912410 -0.243240\nvn 0.324355 -0.914436 -0.242075\nvn -0.044191 -0.987192 -0.153296\nvn -0.044191 -0.987192 -0.153296\nvn -0.038118 -0.987211 -0.154794\nvn 0.329153 -0.912410 -0.243240\nvn -0.044192 0.987192 -0.153296\nvn -0.038119 0.987211 -0.154794\nvn -0.320761 0.943330 -0.085089\nvn -0.320761 0.943330 -0.085089\nvn -0.324969 0.941974 -0.084141\nvn -0.044192 0.987192 -0.153296\nvn -0.407882 0.910737 -0.064730\nvn -0.324969 0.941974 -0.084141\nvn -0.320761 0.943330 -0.085089\nvn -0.320761 0.943330 -0.085089\nvn -0.407893 0.910732 -0.064732\nvn -0.407882 0.910737 -0.064730\nvn -0.320761 -0.943331 -0.085089\nvn -0.038118 -0.987211 -0.154794\nvn -0.044191 -0.987192 -0.153296\nvn -0.044191 -0.987192 -0.153296\nvn -0.324968 -0.941975 -0.084141\nvn -0.320761 -0.943331 -0.085089\nvn -0.407918 -0.910721 -0.064731\nvn -0.320761 -0.943331 -0.085089\nvn -0.324968 -0.941975 -0.084141\nvn -0.324968 -0.941975 -0.084141\nvn -0.407893 -0.910732 -0.064732\nvn -0.407918 -0.910721 -0.064731\nvn 0.258774 0.000000 0.965938\nvn 0.258802 0.000000 0.965930\nvn 0.258802 0.000000 0.965930\nvn 0.258802 0.000000 0.965930\nvn 0.258774 0.000000 0.965938\nvn 0.258774 0.000000 0.965938\nvn 0.258802 -0.000030 0.965930\nvn 0.258774 0.000000 0.965938\nvn 0.258774 0.000000 0.965938\nvn 0.258774 0.000000 0.965938\nvn 0.258802 -0.000030 0.965930\nvn 0.258802 -0.000030 0.965930\nvn 0.258774 -0.000030 0.965938\nvn 0.258802 -0.000030 0.965930\nvn 0.258802 -0.000030 0.965930\nvn 0.258802 -0.000030 0.965930\nvn 0.258774 0.000000 0.965938\nvn 0.258774 -0.000030 0.965938\nvn 0.258802 0.000000 0.965930\nvn 0.258774 -0.000030 0.965938\nvn 0.258774 0.000000 0.965938\nvn 0.258774 0.000000 0.965938\nvn 0.258802 0.000000 0.965930\nvn 0.258802 0.000000 0.965930\nvn 0.258774 0.000000 0.965938\nvn 0.258802 0.000000 0.965930\nvn 0.258802 0.000000 0.965930\nvn 0.258802 0.000000 0.965930\nvn 0.258774 0.000000 0.965938\nvn 0.258774 0.000000 0.965938\nvn 0.258774 0.000031 0.965938\nvn 0.258774 0.000000 0.965938\nvn 0.258774 0.000000 0.965938\nvn 0.258774 0.000000 0.965938\nvn 0.258802 0.000031 0.965930\nvn 0.258774 0.000031 0.965938\nvn 0.258774 0.000000 0.965938\nvn 0.258774 0.000031 0.965938\nvn 0.258802 0.000031 0.965930\nvn 0.258802 0.000031 0.965930\nvn 0.258774 0.000000 0.965938\nvn 0.258774 0.000000 0.965938\nvn 0.258802 0.000000 0.965930\nvn 0.258774 0.000000 0.965938\nvn 0.258774 0.000000 0.965938\nvn 0.258774 0.000000 0.965938\nvn 0.258802 0.000000 0.965930\nvn 0.258802 0.000000 0.965930\nvn 0.258802 0.000000 0.965930\nvn 0.258802 0.000000 0.965930\nvn 0.258831 0.000000 0.965923\nvn 0.258831 0.000000 0.965923\nvn 0.258831 0.000000 0.965923\nvn 0.258802 0.000000 0.965930\nvn 0.258831 0.000000 0.965923\nvn 0.258831 0.000000 0.965923\nvn 0.258831 0.000031 0.965923\nvn 0.258831 0.000031 0.965923\nvn 0.258867 0.000061 0.965913\nvn 0.258831 0.000000 0.965923\nvn 0.258831 0.000000 0.965923\nvn 0.258831 0.000000 0.965923\nvn 0.258802 0.000000 0.965930\nvn 0.258802 0.000000 0.965930\nvn 0.258802 0.000000 0.965930\nvn 0.258831 0.000000 0.965923\nvn 0.258831 -0.000030 0.965923\nvn 0.258831 0.000000 0.965923\nvn 0.258831 0.000000 0.965923\nvn 0.258831 0.000000 0.965923\nvn 0.258859 -0.000030 0.965915\nvn 0.258831 -0.000030 0.965923\nvn -0.258831 -0.000000 -0.965923\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258831 -0.000000 -0.965923\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258831 -0.000000 -0.965923\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258831 0.000030 -0.965923\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258774 -0.000000 -0.965938\nvn -0.258831 0.000030 -0.965923\nvn -0.258802 -0.000000 -0.965930\nvn -0.258831 0.000030 -0.965923\nvn -0.258831 -0.000000 -0.965923\nvn -0.258831 -0.000000 -0.965923\nvn -0.258831 -0.000031 -0.965923\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn -0.258831 -0.000031 -0.965923\nvn -0.258831 -0.000031 -0.965923\nvn -0.258802 0.000061 -0.965930\nvn -0.258802 -0.000000 -0.965930\nvn 0.202402 0.799752 -0.565182\nvn 0.185619 0.805711 -0.562472\nvn 0.507483 0.615889 -0.602613\nvn 0.507483 0.615889 -0.602613\nvn 0.615138 0.676420 -0.405046\nvn 0.202402 0.799752 -0.565182\nvn -0.047579 0.967911 -0.246747\nvn 0.185619 0.805711 -0.562472\nvn 0.202402 0.799752 -0.565182\nvn 0.202402 0.799752 -0.565182\nvn -0.131385 0.861583 -0.490319\nvn -0.047579 0.967911 -0.246747\nvn 0.615138 0.676420 -0.405046\nvn 0.507483 0.615889 -0.602613\nvn 0.747415 0.337878 -0.572022\nvn 0.747415 0.337878 -0.572022\nvn 0.837081 0.360829 -0.411216\nvn 0.615138 0.676420 -0.405046\nvn 0.837081 0.360829 -0.411216\nvn 0.747415 0.337878 -0.572022\nvn 0.838860 0.142954 -0.525241\nvn 0.838860 0.142954 -0.525241\nvn 0.911492 0.005616 -0.411279\nvn 0.837081 0.360829 -0.411216\nvn -0.047579 0.967911 -0.246747\nvn -0.131385 0.861583 -0.490319\nvn -0.376855 0.827719 -0.415767\nvn -0.376855 0.827719 -0.415767\nvn -0.336499 0.917879 -0.210396\nvn -0.047579 0.967911 -0.246747\nvn -0.425680 0.885969 -0.184000\nvn -0.336499 0.917879 -0.210396\nvn -0.376855 0.827719 -0.415767\nvn -0.376855 0.827719 -0.415767\nvn -0.449299 0.802555 -0.392473\nvn -0.425680 0.885969 -0.184000\nvn 0.911492 0.005616 -0.411279\nvn 0.838860 0.142954 -0.525241\nvn 0.830433 0.009309 -0.557040\nvn 0.830433 0.009309 -0.557040\nvn 0.863814 -0.287643 -0.413626\nvn 0.911492 0.005616 -0.411279\nvn 0.810866 -0.311296 -0.495571\nvn 0.863814 -0.287643 -0.413626\nvn 0.830433 0.009309 -0.557040\nvn 0.830433 0.009309 -0.557040\nvn 0.782455 0.086034 -0.616735\nvn 0.810866 -0.311296 -0.495571\nvn -0.224502 -0.689835 -0.688278\nvn -0.187690 -0.688502 -0.700526\nvn -0.206801 -0.683733 -0.699816\nvn -0.206801 -0.683733 -0.699816\nvn -0.241836 -0.674236 -0.697797\nvn -0.224502 -0.689835 -0.688278\nvn -0.204052 -0.695229 -0.689217\nvn -0.187690 -0.688502 -0.700526\nvn -0.224502 -0.689835 -0.688278\nvn -0.224502 -0.689835 -0.688278\nvn -0.231886 -0.706064 -0.669105\nvn -0.204052 -0.695229 -0.689217\nvn -0.019410 -0.496516 -0.867811\nvn 0.148202 -0.379386 -0.913292\nvn 0.148047 -0.379562 -0.913244\nvn 0.148047 -0.379562 -0.913244\nvn -0.019654 -0.496608 -0.867752\nvn -0.019410 -0.496516 -0.867811\nvn -0.218335 -0.535889 -0.815569\nvn -0.019410 -0.496516 -0.867811\nvn -0.019654 -0.496608 -0.867752\nvn -0.019654 -0.496608 -0.867752\nvn -0.218637 -0.535880 -0.815494\nvn -0.218335 -0.535889 -0.815569\nvn -0.368401 -0.515658 -0.773548\nvn -0.218335 -0.535889 -0.815569\nvn -0.218637 -0.535880 -0.815494\nvn -0.218637 -0.535880 -0.815494\nvn -0.373245 -0.513754 -0.772493\nvn -0.368401 -0.515658 -0.773548\nvn -0.416772 -0.495817 -0.761884\nvn -0.368401 -0.515658 -0.773548\nvn -0.373245 -0.513754 -0.772493\nvn -0.373245 -0.513754 -0.772493\nvn -0.416772 -0.495817 -0.761884\nvn -0.416772 -0.495817 -0.761884\nvn 0.261916 -0.205944 -0.942861\nvn 0.148047 -0.379562 -0.913244\nvn 0.148202 -0.379386 -0.913292\nvn 0.148202 -0.379386 -0.913292\nvn 0.261980 -0.205824 -0.942870\nvn 0.261916 -0.205944 -0.942861\nvn 0.300335 -0.000030 -0.953834\nvn 0.261916 -0.205944 -0.942861\nvn 0.261980 -0.205824 -0.942870\nvn 0.261980 -0.205824 -0.942870\nvn 0.300335 -0.000030 -0.953834\nvn 0.300335 -0.000030 -0.953834\nvn 0.261886 0.205975 -0.942863\nvn 0.300335 -0.000030 -0.953834\nvn 0.300335 -0.000030 -0.953834\nvn 0.300335 -0.000030 -0.953834\nvn 0.261918 0.205915 -0.942867\nvn 0.261886 0.205975 -0.942863\nvn 0.148048 0.379536 -0.913255\nvn 0.261886 0.205975 -0.942863\nvn 0.261918 0.205915 -0.942867\nvn 0.261918 0.205915 -0.942867\nvn 0.148233 0.379358 -0.913298\nvn 0.148048 0.379536 -0.913255\nvn -0.019655 0.496608 -0.867752\nvn 0.148048 0.379536 -0.913255\nvn 0.148233 0.379358 -0.913298\nvn 0.148233 0.379358 -0.913298\nvn -0.019410 0.496515 -0.867811\nvn -0.019655 0.496608 -0.867752\nvn -0.218637 0.535880 -0.815494\nvn -0.019655 0.496608 -0.867752\nvn -0.019410 0.496515 -0.867811\nvn -0.019410 0.496515 -0.867811\nvn -0.218307 0.535893 -0.815574\nvn -0.218637 0.535880 -0.815494\nvn -0.373248 0.513788 -0.772468\nvn -0.218637 0.535880 -0.815494\nvn -0.218307 0.535893 -0.815574\nvn -0.218307 0.535893 -0.815574\nvn -0.368431 0.515687 -0.773515\nvn -0.373248 0.513788 -0.772468\nvn -0.416772 0.495816 -0.761884\nvn -0.373248 0.513788 -0.772468\nvn -0.368431 0.515687 -0.773515\nvn -0.368431 0.515687 -0.773515\nvn -0.416772 0.495816 -0.761884\nvn -0.416772 0.495816 -0.761884\nvn 0.394490 0.918900 -0.000000\nvn 0.566127 0.824318 -0.000000\nvn 0.566162 0.824294 -0.000000\nvn 0.566162 0.824294 -0.000000\nvn 0.422384 0.906417 -0.000000\nvn 0.394490 0.918900 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.394490 0.918900 -0.000000\nvn 0.422384 0.906417 -0.000000\nvn 0.422384 0.906417 -0.000000\nvn -0.047579 0.967911 -0.246747\nvn -0.000000 1.000000 -0.000000\nvn 0.950723 0.310041 -0.000000\nvn 0.899060 0.437826 -0.000031\nvn 0.899090 0.437765 -0.000000\nvn 0.899090 0.437765 -0.000000\nvn 0.948191 0.317702 -0.000000\nvn 0.950723 0.310041 -0.000000\nvn 0.981325 0.192359 -0.000000\nvn 0.950723 0.310041 -0.000000\nvn 0.948191 0.317702 -0.000000\nvn 0.948191 0.317702 -0.000000\nvn 0.981330 0.192329 -0.000000\nvn 0.981325 0.192359 -0.000000\nvn -0.300676 0.953726 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.047579 0.967911 -0.246747\nvn -0.047579 0.967911 -0.246747\nvn -0.336499 0.917879 -0.210396\nvn -0.300676 0.953726 -0.000000\nvn -0.390857 0.920452 -0.000000\nvn -0.300676 0.953726 -0.000000\nvn -0.336499 0.917879 -0.210396\nvn -0.336499 0.917879 -0.210396\nvn -0.425680 0.885969 -0.184000\nvn -0.390857 0.920452 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.003723 0.999992 0.001465\nvn 0.003723 0.999992 0.001465\nvn 0.001709 0.999998 0.001282\nvn -0.000000 1.000000 -0.000000\nvn -0.961392 -0.261002 -0.087194\nvn -0.907700 -0.236127 -0.346880\nvn -0.850596 -0.352343 -0.390308\nvn -0.850596 -0.352343 -0.390308\nvn -0.868638 -0.422630 -0.258559\nvn -0.961392 -0.261002 -0.087194\nvn -0.956391 -0.194745 -0.217696\nvn -0.907700 -0.236127 -0.346880\nvn -0.961392 -0.261002 -0.087194\nvn -0.961392 -0.261002 -0.087194\nvn -0.965746 -0.256238 -0.040957\nvn -0.956391 -0.194745 -0.217696\nvn -0.104772 -0.257703 -0.960527\nvn -0.101507 -0.255904 -0.961358\nvn -0.114111 -0.262891 -0.958054\nvn -0.114111 -0.262891 -0.958054\nvn -0.117284 -0.264629 -0.957192\nvn -0.104772 -0.257703 -0.960527\nvn -0.828142 -0.194897 -0.525543\nvn -0.716344 -0.258100 -0.648256\nvn -0.850596 -0.352343 -0.390308\nvn -0.850596 -0.352343 -0.390308\nvn -0.907700 -0.236127 -0.346880\nvn -0.828142 -0.194897 -0.525543\nvn -0.850596 -0.352343 -0.390308\nvn -0.757159 -0.323324 -0.567602\nvn -0.773692 -0.488888 -0.402976\nvn -0.773692 -0.488888 -0.402976\nvn -0.868638 -0.422630 -0.258559\nvn -0.850596 -0.352343 -0.390308\nvn -0.773692 -0.488888 -0.402976\nvn -0.757159 -0.323324 -0.567602\nvn -0.695337 -0.143316 -0.704249\nvn -0.695337 -0.143316 -0.704249\nvn -0.758769 -0.337909 -0.556854\nvn -0.773692 -0.488888 -0.402976\nvn -0.758769 -0.337909 -0.556854\nvn -0.695337 -0.143316 -0.704249\nvn -0.717153 -0.298453 -0.629775\nvn -0.717153 -0.298453 -0.629775\nvn -0.716011 -0.304063 -0.628390\nvn -0.758769 -0.337909 -0.556854\nvn -0.716011 -0.304063 -0.628390\nvn -0.717153 -0.298453 -0.629775\nvn -0.680454 -0.197978 -0.705541\nvn -0.680454 -0.197978 -0.705541\nvn -0.695504 -0.231214 -0.680305\nvn -0.716011 -0.304063 -0.628390\nvn -0.695504 -0.231214 -0.680305\nvn -0.680454 -0.197978 -0.705541\nvn -0.618928 -0.163857 -0.768166\nvn -0.618928 -0.163857 -0.768166\nvn -0.659893 -0.260087 -0.704909\nvn -0.695504 -0.231214 -0.680305\nvn -0.621460 -0.287246 -0.728888\nvn -0.659893 -0.260087 -0.704909\nvn -0.618928 -0.163857 -0.768166\nvn -0.618928 -0.163857 -0.768166\nvn -0.588818 -0.130106 -0.797726\nvn -0.621460 -0.287246 -0.728888\nvn -0.621460 -0.287246 -0.728888\nvn -0.588818 -0.130106 -0.797726\nvn -0.598733 -0.232071 -0.766591\nvn -0.598733 -0.232071 -0.766591\nvn -0.614623 -0.441916 -0.653413\nvn -0.621460 -0.287246 -0.728888\nvn -0.599512 0.025513 -0.799959\nvn -0.680454 -0.197978 -0.705541\nvn -0.717153 -0.298453 -0.629775\nvn -0.717153 -0.298453 -0.629775\nvn -0.639952 -0.097691 -0.762180\nvn -0.599512 0.025513 -0.799959\nvn -0.680454 -0.197978 -0.705541\nvn -0.599512 0.025513 -0.799959\nvn -0.582640 -0.024629 -0.812357\nvn -0.582640 -0.024629 -0.812357\nvn -0.618928 -0.163857 -0.768166\nvn -0.680454 -0.197978 -0.705541\nvn -0.146829 0.640633 -0.753678\nvn -0.131537 0.647125 -0.750951\nvn -0.143043 0.649903 -0.746435\nvn -0.143043 0.649903 -0.746435\nvn -0.158243 0.625221 -0.764237\nvn -0.146829 0.640633 -0.753678\nvn -0.716344 -0.258100 -0.648256\nvn -0.699679 -0.122778 -0.703829\nvn -0.757159 -0.323324 -0.567602\nvn -0.757159 -0.323324 -0.567602\nvn -0.850596 -0.352343 -0.390308\nvn -0.716344 -0.258100 -0.648256\nvn -0.695337 -0.143316 -0.704249\nvn -0.757159 -0.323324 -0.567602\nvn -0.699679 -0.122778 -0.703829\nvn -0.699679 -0.122778 -0.703829\nvn -0.573856 0.076054 -0.815417\nvn -0.695337 -0.143316 -0.704249\nvn -0.176889 0.605528 -0.775916\nvn -0.146829 0.640633 -0.753678\nvn -0.158243 0.625221 -0.764237\nvn -0.695337 -0.143316 -0.704249\nvn -0.573856 0.076054 -0.815417\nvn -0.505120 0.242168 -0.828377\nvn -0.505120 0.242168 -0.828377\nvn -0.490418 0.273912 -0.827322\nvn -0.695337 -0.143316 -0.704249\nvn -0.158243 0.625221 -0.764237\nvn -0.177101 0.615505 -0.767977\nvn -0.176889 0.605528 -0.775916\nvn -0.189647 0.594853 -0.781143\nvn -0.201949 0.571022 -0.795708\nvn -0.176889 0.605528 -0.775916\nvn -0.176889 0.605528 -0.775916\nvn -0.177101 0.615505 -0.767977\nvn -0.189647 0.594853 -0.781143\nvn -0.173256 0.272198 -0.946515\nvn -0.140111 0.278269 -0.950229\nvn -0.142615 0.277813 -0.949990\nvn -0.142615 0.277813 -0.949990\nvn -0.176093 0.271677 -0.946141\nvn -0.173256 0.272198 -0.946515\nvn -0.894253 -0.104804 -0.435117\nvn -0.828142 -0.194897 -0.525543\nvn -0.907700 -0.236127 -0.346880\nvn -0.907700 -0.236127 -0.346880\nvn -0.956391 -0.194745 -0.217696\nvn -0.894253 -0.104804 -0.435117\nvn -0.598733 -0.232071 -0.766591\nvn -0.588818 -0.130106 -0.797726\nvn -0.537530 0.017914 -0.843055\nvn -0.537530 0.017914 -0.843055\nvn -0.549797 -0.015840 -0.835148\nvn -0.598733 -0.232071 -0.766591\nvn -0.088751 0.711407 -0.697154\nvn -0.079076 0.724377 -0.684854\nvn -0.129797 0.665646 -0.734893\nvn -0.129797 0.665646 -0.734893\nvn -0.123205 0.658904 -0.742069\nvn -0.088751 0.711407 -0.697154\nvn -0.127999 0.656839 -0.743087\nvn -0.123205 0.658904 -0.742069\nvn -0.129797 0.665646 -0.734893\nvn -0.129797 0.665646 -0.734893\nvn -0.140661 0.665157 -0.733336\nvn -0.127999 0.656839 -0.743087\nvn -0.537530 0.017914 -0.843055\nvn -0.588818 -0.130106 -0.797726\nvn -0.618928 -0.163857 -0.768166\nvn -0.618928 -0.163857 -0.768166\nvn -0.426779 0.004883 -0.904343\nvn -0.537530 0.017914 -0.843055\nvn -0.162609 0.591472 -0.789759\nvn -0.148904 0.622535 -0.768296\nvn -0.162669 0.689739 -0.705548\nvn -0.162669 0.689739 -0.705548\nvn -0.175273 0.589451 -0.788560\nvn -0.162609 0.591472 -0.789759\nvn -0.175273 0.589451 -0.788560\nvn -0.162669 0.689739 -0.705548\nvn -0.174845 0.692205 -0.700201\nvn -0.174845 0.692205 -0.700201\nvn -0.190072 0.661160 -0.725769\nvn -0.175273 0.589451 -0.788560\nvn -0.639952 -0.097691 -0.762180\nvn -0.494447 0.290302 -0.819297\nvn -0.512235 0.190653 -0.837417\nvn -0.512235 0.190653 -0.837417\nvn -0.599512 0.025513 -0.799959\nvn -0.639952 -0.097691 -0.762180\nvn -0.599512 0.025513 -0.799959\nvn -0.512235 0.190653 -0.837417\nvn -0.395191 0.020051 -0.918380\nvn -0.395191 0.020051 -0.918380\nvn -0.582640 -0.024629 -0.812357\nvn -0.599512 0.025513 -0.799959\nvn -0.618928 -0.163857 -0.768166\nvn -0.582640 -0.024629 -0.812357\nvn -0.395191 0.020051 -0.918380\nvn -0.395191 0.020051 -0.918380\nvn -0.426779 0.004883 -0.904343\nvn -0.618928 -0.163857 -0.768166\nvn -0.426779 0.004883 -0.904343\nvn -0.395191 0.020051 -0.918380\nvn -0.131567 0.057070 -0.989663\nvn -0.131567 0.057070 -0.989663\nvn -0.129005 0.052432 -0.990257\nvn -0.426779 0.004883 -0.904343\nvn -0.039645 0.992701 0.113898\nvn -0.040194 0.992538 0.115118\nvn -0.038515 0.993030 0.111395\nvn -0.038515 0.993030 0.111395\nvn -0.037936 0.993191 0.110144\nvn -0.039645 0.992701 0.113898\nvn -0.590553 0.651836 -0.475769\nvn -0.562779 0.688244 -0.457822\nvn -0.565643 0.684668 -0.459650\nvn -0.565643 0.684668 -0.459650\nvn -0.593082 0.648352 -0.477383\nvn -0.590553 0.651836 -0.475769\nvn -0.174021 -0.249069 -0.952723\nvn -0.191386 -0.250563 -0.948994\nvn -0.190317 -0.250470 -0.949234\nvn -0.190317 -0.250470 -0.949234\nvn -0.173013 -0.248976 -0.952931\nvn -0.174021 -0.249069 -0.952723\nvn -0.185528 0.668405 -0.720288\nvn -0.184675 0.650254 -0.736930\nvn -0.185162 0.657419 -0.730422\nvn -0.185162 0.657419 -0.730422\nvn -0.185892 0.676761 -0.712347\nvn -0.185528 0.668405 -0.720288\nvn -0.185528 0.668405 -0.720288\nvn -0.185892 0.676761 -0.712347\nvn -0.186992 0.695046 -0.694222\nvn -0.186992 0.695046 -0.694222\nvn -0.187539 0.686920 -0.702118\nvn -0.185528 0.668405 -0.720288\nvn -0.186380 0.640992 -0.744574\nvn -0.185162 0.657419 -0.730422\nvn -0.184675 0.650254 -0.736930\nvn -0.184675 0.650254 -0.736930\nvn -0.186199 0.636114 -0.748792\nvn -0.186380 0.640992 -0.744574\nvn -0.187908 0.625219 -0.757490\nvn -0.186380 0.640992 -0.744574\nvn -0.186199 0.636114 -0.748792\nvn -0.186199 0.636114 -0.748792\nvn -0.186838 0.613188 -0.767523\nvn -0.187908 0.625219 -0.757490\nvn -0.186872 0.700365 -0.688889\nvn -0.187539 0.686920 -0.702118\nvn -0.186992 0.695046 -0.694222\nvn -0.186992 0.695046 -0.694222\nvn -0.186901 0.700361 -0.688885\nvn -0.186872 0.700365 -0.688889\nvn -0.188057 0.601769 -0.776214\nvn -0.187908 0.625219 -0.757490\nvn -0.186838 0.613188 -0.767523\nvn -0.186838 0.613188 -0.767523\nvn -0.187324 0.595450 -0.781248\nvn -0.188057 0.601769 -0.776214\nvn -0.188057 0.601769 -0.776214\nvn -0.187324 0.595450 -0.781248\nvn -0.191568 0.586301 -0.787117\nvn -0.191568 0.586301 -0.787117\nvn -0.191906 0.585850 -0.787370\nvn -0.188057 0.601769 -0.776214\nvn -0.224654 0.258774 -0.939450\nvn -0.180704 0.272322 -0.945086\nvn -0.214337 0.273757 -0.937612\nvn -0.214337 0.273757 -0.937612\nvn -0.226210 0.258316 -0.939203\nvn -0.224654 0.258774 -0.939450\nvn -0.209026 0.271376 -0.939502\nvn -0.214337 0.273757 -0.937612\nvn -0.180704 0.272322 -0.945086\nvn -0.180704 0.272322 -0.945086\nvn -0.220224 0.273418 -0.936346\nvn -0.209026 0.271376 -0.939502\nvn -0.212079 0.264237 -0.940851\nvn -0.209026 0.271376 -0.939502\nvn -0.220224 0.273418 -0.936346\nvn -0.220224 0.273418 -0.936346\nvn -0.213940 0.266647 -0.939749\nvn -0.212079 0.264237 -0.940851\nvn -0.186318 0.267132 -0.945477\nvn -0.212079 0.264237 -0.940851\nvn -0.213940 0.266647 -0.939749\nvn -0.213940 0.266647 -0.939749\nvn -0.206921 0.255783 -0.944330\nvn -0.186318 0.267132 -0.945477\nvn -0.186318 0.267132 -0.945477\nvn -0.206921 0.255783 -0.944330\nvn -0.041323 0.331252 -0.942637\nvn -0.041323 0.331252 -0.942637\nvn -0.000275 0.348925 -0.937151\nvn -0.186318 0.267132 -0.945477\nvn 0.000000 -0.221265 -0.975214\nvn 0.000000 -0.221265 -0.975214\nvn -0.000030 -0.221265 -0.975214\nvn -0.000030 -0.221265 -0.975214\nvn -0.000030 -0.221265 -0.975214\nvn 0.000000 -0.221265 -0.975214\nvn -0.000153 0.777831 -0.628473\nvn -0.000092 0.777846 -0.628454\nvn -0.000092 0.777846 -0.628454\nvn -0.000092 0.777846 -0.628454\nvn -0.000153 0.777846 -0.628454\nvn -0.000153 0.777831 -0.628473\nvn -0.000153 0.777831 -0.628473\nvn -0.000153 0.777846 -0.628454\nvn -0.000183 0.780851 -0.624717\nvn -0.000183 0.780851 -0.624717\nvn -0.000183 0.779100 -0.626900\nvn -0.000153 0.777831 -0.628473\nvn -0.000031 0.777900 -0.628388\nvn -0.000092 0.777846 -0.628454\nvn -0.000092 0.777846 -0.628454\nvn -0.000092 0.777846 -0.628454\nvn -0.000031 0.777969 -0.628302\nvn -0.000031 0.777900 -0.628388\nvn 0.000091 0.778337 -0.627846\nvn -0.000031 0.777900 -0.628388\nvn -0.000031 0.777969 -0.628302\nvn -0.000031 0.777969 -0.628302\nvn 0.000122 0.778978 -0.627052\nvn 0.000091 0.778337 -0.627846\nvn -0.000092 0.782085 -0.623172\nvn -0.000183 0.779100 -0.626900\nvn -0.000183 0.780851 -0.624717\nvn -0.000183 0.780851 -0.624717\nvn -0.000092 0.782100 -0.623153\nvn -0.000092 0.782085 -0.623172\nvn 0.000122 0.779399 -0.626528\nvn 0.000091 0.778337 -0.627846\nvn 0.000122 0.778978 -0.627052\nvn 0.000122 0.778978 -0.627052\nvn 0.000122 0.779724 -0.626123\nvn 0.000122 0.779399 -0.626528\nvn 0.000122 0.779399 -0.626528\nvn 0.000122 0.779724 -0.626123\nvn 0.000091 0.779835 -0.625986\nvn 0.000091 0.779835 -0.625986\nvn 0.000091 0.779820 -0.626004\nvn 0.000122 0.779399 -0.626528\nvn 0.005280 0.330707 -0.943719\nvn 0.025697 0.349562 -0.936561\nvn 0.000183 0.327075 -0.944998\nvn 0.000183 0.327075 -0.944998\nvn -0.000000 0.327011 -0.945021\nvn 0.005280 0.330707 -0.943719\nvn 0.080631 0.345015 -0.935127\nvn 0.025697 0.349562 -0.936561\nvn 0.005280 0.330707 -0.943719\nvn 0.005280 0.330707 -0.943719\nvn 0.021607 0.331102 -0.943347\nvn 0.080631 0.345015 -0.935127\nvn 0.080631 0.345015 -0.935127\nvn 0.021607 0.331102 -0.943347\nvn 0.003357 0.321394 -0.946940\nvn 0.003357 0.321394 -0.946940\nvn 0.070378 0.339040 -0.938136\nvn 0.080631 0.345015 -0.935127\nvn 0.185130 0.403649 -0.895988\nvn 0.080631 0.345015 -0.935127\nvn 0.070378 0.339040 -0.938136\nvn 0.070378 0.339040 -0.938136\nvn 0.270524 0.432856 -0.859914\nvn 0.185130 0.403649 -0.895988\nvn 0.130255 0.392658 -0.910414\nvn 0.025697 0.349562 -0.936561\nvn 0.080631 0.345015 -0.935127\nvn 0.080631 0.345015 -0.935127\nvn 0.185130 0.403649 -0.895988\nvn 0.130255 0.392658 -0.910414\nvn 0.000061 0.322894 -0.946435\nvn 0.070378 0.339040 -0.938136\nvn 0.003357 0.321394 -0.946940\nvn 0.003357 0.321394 -0.946940\nvn -0.000061 0.322894 -0.946435\nvn 0.000061 0.322894 -0.946435\nvn 0.000061 0.322894 -0.946435\nvn -0.000061 0.322894 -0.946435\nvn -0.000000 0.322675 -0.946510\nvn -0.000000 0.322675 -0.946510\nvn -0.000000 0.322675 -0.946510\nvn 0.000061 0.322894 -0.946435\nvn -0.000275 0.418991 0.907991\nvn -0.000305 0.418965 0.908002\nvn -0.000305 0.418965 0.908002\nvn -0.000305 0.418965 0.908002\nvn -0.000275 0.418991 0.907991\nvn -0.000275 0.418991 0.907991\nvn -0.609067 -0.279218 -0.742344\nvn -0.610507 -0.278488 -0.741435\nvn -0.595482 -0.286175 -0.750670\nvn -0.595482 -0.286175 -0.750670\nvn -0.595494 -0.286272 -0.750624\nvn -0.609067 -0.279218 -0.742344\nvn -0.610507 -0.278488 -0.741435\nvn -0.609067 -0.279218 -0.742344\nvn -0.653938 -0.259018 -0.710827\nvn -0.653938 -0.259018 -0.710827\nvn -0.657659 -0.257125 -0.708076\nvn -0.610507 -0.278488 -0.741435\nvn -0.657659 -0.257125 -0.708076\nvn -0.653938 -0.259018 -0.710827\nvn -0.696939 -0.237288 -0.676735\nvn -0.696939 -0.237288 -0.676735\nvn -0.698402 -0.238722 -0.674719\nvn -0.657659 -0.257125 -0.708076\nvn -0.698402 -0.238722 -0.674719\nvn -0.696939 -0.237288 -0.676735\nvn -0.727854 -0.244826 -0.640538\nvn -0.727854 -0.244826 -0.640538\nvn -0.729493 -0.253490 -0.635281\nvn -0.698402 -0.238722 -0.674719\nvn -0.729493 -0.253490 -0.635281\nvn -0.727854 -0.244826 -0.640538\nvn -0.775459 -0.283675 -0.564084\nvn -0.775459 -0.283675 -0.564084\nvn -0.773820 -0.304645 -0.555332\nvn -0.729493 -0.253490 -0.635281\nvn -0.773820 -0.304645 -0.555332\nvn -0.775459 -0.283675 -0.564084\nvn -0.818309 -0.432670 -0.378376\nvn -0.818309 -0.432670 -0.378376\nvn -0.796636 -0.476126 -0.372392\nvn -0.773820 -0.304645 -0.555332\nvn -0.796636 -0.476126 -0.372392\nvn -0.818309 -0.432670 -0.378376\nvn -0.885077 -0.395097 -0.246043\nvn -0.885077 -0.395097 -0.246043\nvn -0.878440 -0.415919 -0.235274\nvn -0.796636 -0.476126 -0.372392\nvn -0.878440 -0.415919 -0.235274\nvn -0.885077 -0.395097 -0.246043\nvn -0.954893 -0.245163 -0.167552\nvn -0.954893 -0.245163 -0.167552\nvn -0.957319 -0.237255 -0.165077\nvn -0.878440 -0.415919 -0.235274\nvn -0.957319 -0.237255 -0.165077\nvn -0.954893 -0.245163 -0.167552\nvn -0.966183 -0.197400 -0.165903\nvn -0.966183 -0.197400 -0.165903\nvn -0.967554 -0.192974 -0.163095\nvn -0.957319 -0.237255 -0.165077\nvn -0.967554 -0.192974 -0.163095\nvn -0.966183 -0.197400 -0.165903\nvn -0.976397 -0.161477 -0.143440\nvn -0.976397 -0.161477 -0.143440\nvn -0.977495 -0.157051 -0.140846\nvn -0.967554 -0.192974 -0.163095\nvn -0.977495 -0.157051 -0.140846\nvn -0.976397 -0.161477 -0.143440\nvn -0.983799 -0.127694 -0.125832\nvn -0.983799 -0.127694 -0.125832\nvn -0.983568 -0.127906 -0.127417\nvn -0.977495 -0.157051 -0.140846\nvn -0.989481 -0.105138 -0.099369\nvn -0.983568 -0.127906 -0.127417\nvn -0.983799 -0.127694 -0.125832\nvn -0.983799 -0.127694 -0.125832\nvn -0.990157 -0.085575 -0.110753\nvn -0.989481 -0.105138 -0.099369\nvn -0.989481 -0.105138 -0.099369\nvn -0.990157 -0.085575 -0.110753\nvn -0.991356 -0.126747 -0.033876\nvn -0.991356 -0.126747 -0.033876\nvn -0.987547 -0.157328 0.000000\nvn -0.989481 -0.105138 -0.099369\nvn -0.725582 -0.392257 -0.565389\nvn -0.733778 -0.380730 -0.562686\nvn -0.761979 -0.322713 -0.561466\nvn -0.761979 -0.322713 -0.561466\nvn -0.732945 -0.385730 -0.560360\nvn -0.725582 -0.392257 -0.565389\nvn -0.725582 -0.392257 -0.565389\nvn -0.732945 -0.385730 -0.560360\nvn -0.693791 -0.420431 -0.584715\nvn -0.693791 -0.420431 -0.584715\nvn -0.687054 -0.426082 -0.588567\nvn -0.725582 -0.392257 -0.565389\nvn -0.656464 -0.447776 -0.607085\nvn -0.687054 -0.426082 -0.588567\nvn -0.693791 -0.420431 -0.584715\nvn -0.693791 -0.420431 -0.584715\nvn -0.655472 -0.438752 -0.614698\nvn -0.656464 -0.447776 -0.607085\nvn -0.641315 -0.460821 -0.613481\nvn -0.656464 -0.447776 -0.607085\nvn -0.655472 -0.438752 -0.614698\nvn -0.655472 -0.438752 -0.614698\nvn -0.639044 -0.429254 -0.638250\nvn -0.641315 -0.460821 -0.613481\nvn -0.643897 -0.465420 -0.607274\nvn -0.641315 -0.460821 -0.613481\nvn -0.639044 -0.429254 -0.638250\nvn -0.639044 -0.429254 -0.638250\nvn -0.650879 -0.432424 -0.623992\nvn -0.643897 -0.465420 -0.607274\nvn -0.592307 -0.464617 -0.658258\nvn -0.639044 -0.429254 -0.638250\nvn -0.655472 -0.438752 -0.614698\nvn -0.655472 -0.438752 -0.614698\nvn -0.603033 -0.481963 -0.635659\nvn -0.592307 -0.464617 -0.658258\nvn -0.569399 -0.454433 -0.685037\nvn -0.650879 -0.432424 -0.623992\nvn -0.639044 -0.429254 -0.638250\nvn -0.639044 -0.429254 -0.638250\nvn -0.592307 -0.464617 -0.658258\nvn -0.569399 -0.454433 -0.685037\nvn -0.780403 -0.298202 -0.549587\nvn -0.761979 -0.322713 -0.561466\nvn -0.733778 -0.380730 -0.562686\nvn -0.761979 -0.322713 -0.561466\nvn -0.780403 -0.298202 -0.549587\nvn -0.791899 -0.228006 -0.566488\nvn -0.791899 -0.228006 -0.566488\nvn -0.768143 -0.236404 -0.595037\nvn -0.761979 -0.322713 -0.561466\nvn -0.791899 -0.228006 -0.566488\nvn -0.780403 -0.298202 -0.549587\nvn -0.826119 -0.226604 -0.515924\nvn -0.826119 -0.226604 -0.515924\nvn -0.827984 -0.181650 -0.530514\nvn -0.791899 -0.228006 -0.566488\nvn -0.835477 -0.239031 -0.494816\nvn -0.826119 -0.226604 -0.515924\nvn -0.780403 -0.298202 -0.549587\nvn -0.780403 -0.298202 -0.549587\nvn -0.751114 -0.354545 -0.556889\nvn -0.835477 -0.239031 -0.494816\nvn -0.733778 -0.380730 -0.562686\nvn -0.751114 -0.354545 -0.556889\nvn -0.780403 -0.298202 -0.549587\nvn -0.827984 -0.181650 -0.530514\nvn -0.826119 -0.226604 -0.515924\nvn -0.866373 -0.175484 -0.467551\nvn -0.866373 -0.175484 -0.467551\nvn -0.856942 -0.150123 -0.493065\nvn -0.827984 -0.181650 -0.530514\nvn -0.856942 -0.150123 -0.493065\nvn -0.866373 -0.175484 -0.467551\nvn -0.899330 -0.130591 -0.417315\nvn -0.899330 -0.130591 -0.417315\nvn -0.888433 -0.105687 -0.446673\nvn -0.856942 -0.150123 -0.493065\nvn -0.908767 -0.136177 -0.394459\nvn -0.899330 -0.130591 -0.417315\nvn -0.866373 -0.175484 -0.467551\nvn -0.866373 -0.175484 -0.467551\nvn -0.883155 -0.161293 -0.440479\nvn -0.908767 -0.136177 -0.394459\nvn -0.883155 -0.161293 -0.440479\nvn -0.866373 -0.175484 -0.467551\nvn -0.826119 -0.226604 -0.515924\nvn -0.826119 -0.226604 -0.515924\nvn -0.835477 -0.239031 -0.494816\nvn -0.883155 -0.161293 -0.440479\nvn -0.888433 -0.105687 -0.446673\nvn -0.899330 -0.130591 -0.417315\nvn -0.910503 -0.079075 -0.405872\nvn -0.910503 -0.079075 -0.405872\nvn -0.903605 -0.027071 -0.427510\nvn -0.888433 -0.105687 -0.446673\nvn -0.903605 -0.027071 -0.427510\nvn -0.910503 -0.079075 -0.405872\nvn -0.899548 -0.023134 -0.436208\nvn -0.899548 -0.023134 -0.436208\nvn -0.893657 0.025086 -0.448049\nvn -0.903605 -0.027071 -0.427510\nvn -0.907118 -0.055545 -0.417195\nvn -0.899548 -0.023134 -0.436208\nvn -0.910503 -0.079075 -0.405872\nvn -0.899548 -0.023134 -0.436208\nvn -0.907118 -0.055545 -0.417195\nvn -0.906595 -0.027559 -0.421100\nvn -0.906595 -0.027559 -0.421100\nvn -0.896325 -0.003235 -0.443386\nvn -0.899548 -0.023134 -0.436208\nvn -0.893657 0.025086 -0.448049\nvn -0.899548 -0.023134 -0.436208\nvn -0.896325 -0.003235 -0.443386\nvn -0.896325 -0.003235 -0.443386\nvn -0.906595 -0.027559 -0.421100\nvn -0.907757 -0.029238 -0.418476\nvn -0.907757 -0.029238 -0.418476\nvn -0.903445 -0.023561 -0.428055\nvn -0.896325 -0.003235 -0.443386\nvn -0.910503 -0.079075 -0.405872\nvn -0.914116 -0.134835 -0.382377\nvn -0.907118 -0.055545 -0.417195\nvn -0.914116 -0.134835 -0.382377\nvn -0.910503 -0.079075 -0.405872\nvn -0.899330 -0.130591 -0.417315\nvn -0.899330 -0.130591 -0.417315\nvn -0.908767 -0.136177 -0.394459\nvn -0.914116 -0.134835 -0.382377\nvn -0.896325 -0.003235 -0.443386\nvn -0.885323 0.055453 -0.461659\nvn -0.893657 0.025086 -0.448049\nvn -0.896325 -0.003235 -0.443386\nvn -0.903445 -0.023561 -0.428055\nvn -0.884639 0.051913 -0.463378\nvn -0.884639 0.051913 -0.463378\nvn -0.885323 0.055453 -0.461659\nvn -0.896325 -0.003235 -0.443386\nvn -0.697765 0.641548 -0.318653\nvn -0.692031 0.636790 -0.339988\nvn -0.689191 0.639261 -0.341116\nvn -0.689191 0.639261 -0.341116\nvn -0.696178 0.643074 -0.319050\nvn -0.697765 0.641548 -0.318653\nvn -0.631440 0.590056 -0.503107\nvn -0.689191 0.639261 -0.341116\nvn -0.692031 0.636790 -0.339988\nvn -0.692031 0.636790 -0.339988\nvn -0.629894 0.587380 -0.508151\nvn -0.631440 0.590056 -0.503107\nvn -0.135629 0.988525 -0.066502\nvn -0.134863 0.988691 -0.065585\nvn -0.138160 0.988330 -0.064151\nvn -0.135170 0.988367 -0.069706\nvn -0.134863 0.988691 -0.065585\nvn -0.135629 0.988525 -0.066502\nvn -0.138160 0.988330 -0.064151\nvn -0.139075 0.988114 -0.065494\nvn -0.135629 0.988525 -0.066502\nvn -0.135629 0.988525 -0.066502\nvn -0.136056 0.988248 -0.069676\nvn -0.135170 0.988367 -0.069706\nvn -0.018647 0.360303 -0.932649\nvn 0.029542 0.402694 -0.914858\nvn -0.171241 0.218483 -0.960699\nvn -0.171241 0.218483 -0.960699\nvn -0.236585 0.166879 -0.957173\nvn -0.018647 0.360303 -0.932649\nvn -0.340802 0.083316 -0.936436\nvn -0.018647 0.360303 -0.932649\nvn -0.236585 0.166879 -0.957173\nvn -0.236585 0.166879 -0.957173\nvn -0.343770 0.086614 -0.935051\nvn -0.340802 0.083316 -0.936436\nvn -0.340802 0.083316 -0.936436\nvn -0.343770 0.086614 -0.935051\nvn -0.367661 -0.058139 -0.928141\nvn -0.367661 -0.058139 -0.928141\nvn -0.375533 -0.028627 -0.926367\nvn -0.340802 0.083316 -0.936436\nvn 0.197764 0.538479 -0.819103\nvn -0.018647 0.360303 -0.932649\nvn 0.246441 0.519892 -0.817911\nvn 0.246441 0.519892 -0.817911\nvn 0.246046 0.535582 -0.807845\nvn 0.197764 0.538479 -0.819103\nvn 0.246046 0.535582 -0.807845\nvn 0.246441 0.519892 -0.817911\nvn 0.261305 0.518185 -0.814373\nvn 0.170480 0.521266 -0.836193\nvn 0.029542 0.402694 -0.914858\nvn -0.018647 0.360303 -0.932649\nvn -0.018647 0.360303 -0.932649\nvn 0.197764 0.538479 -0.819103\nvn 0.170480 0.521266 -0.836193\nvn 0.261305 0.518185 -0.814373\nvn 0.264695 0.521943 -0.810871\nvn 0.246046 0.535582 -0.807845\nvn -0.364976 -0.121099 -0.923107\nvn -0.375533 -0.028627 -0.926367\nvn -0.367661 -0.058139 -0.928141\nvn -0.367661 -0.058139 -0.928141\nvn -0.366448 -0.120949 -0.922544\nvn -0.364976 -0.121099 -0.923107\nvn 0.305406 0.048617 -0.950980\nvn 0.242230 0.054690 -0.968676\nvn 0.258130 0.053195 -0.964645\nvn 0.258130 0.053195 -0.964645\nvn 0.321339 0.047030 -0.945796\nvn 0.305406 0.048617 -0.950980\nvn -0.613748 0.484925 -0.623026\nvn -0.532989 0.633427 -0.560975\nvn -0.536502 0.627969 -0.563756\nvn -0.536502 0.627969 -0.563756\nvn -0.619112 0.472894 -0.626955\nvn -0.613748 0.484925 -0.623026\nvn -0.087863 0.992100 -0.089542\nvn -0.085941 0.992502 -0.086918\nvn -0.105717 0.987856 -0.113865\nvn -0.105717 0.987856 -0.113865\nvn -0.108832 0.987022 -0.118079\nvn -0.087863 0.992100 -0.089542\nvn -0.554080 0.535462 -0.637398\nvn -0.631440 0.590056 -0.503107\nvn -0.629894 0.587380 -0.508151\nvn -0.629894 0.587380 -0.508151\nvn -0.553652 0.534669 -0.638435\nvn -0.554080 0.535462 -0.637398\nvn -0.554080 0.535462 -0.637398\nvn -0.553652 0.534669 -0.638435\nvn -0.550692 0.538331 -0.637917\nvn -0.550692 0.538331 -0.637917\nvn -0.549375 0.540006 -0.637637\nvn -0.554080 0.535462 -0.637398\nvn 0.072665 0.837282 -0.541921\nvn 0.072147 0.836687 -0.542908\nvn 0.073093 0.836984 -0.542323\nvn 0.073093 0.836984 -0.542323\nvn 0.073459 0.837624 -0.541285\nvn 0.072665 0.837282 -0.541921\nvn 0.070439 0.836812 -0.542940\nvn 0.069735 0.836364 -0.543721\nvn 0.072147 0.836687 -0.542908\nvn 0.072147 0.836687 -0.542908\nvn 0.072665 0.837282 -0.541921\nvn 0.070439 0.836812 -0.542940\nvn -0.549375 0.540006 -0.637637\nvn -0.550692 0.538331 -0.637917\nvn -0.541600 0.544438 -0.640513\nvn -0.541600 0.544438 -0.640513\nvn -0.540226 0.545658 -0.640635\nvn -0.549375 0.540006 -0.637637\nvn -0.540226 0.545658 -0.640635\nvn -0.541600 0.544438 -0.640513\nvn -0.521444 0.535422 -0.664394\nvn -0.521444 0.535422 -0.664394\nvn -0.521270 0.536560 -0.663612\nvn -0.540226 0.545658 -0.640635\nvn -0.521270 0.536560 -0.663612\nvn -0.521444 0.535422 -0.664394\nvn -0.501035 0.508604 -0.700204\nvn -0.501035 0.508604 -0.700204\nvn -0.502720 0.510991 -0.697252\nvn -0.521270 0.536560 -0.663612\nvn -0.502720 0.510991 -0.697252\nvn -0.501035 0.508604 -0.700204\nvn -0.492345 0.485112 -0.722678\nvn -0.492345 0.485112 -0.722678\nvn -0.494317 0.487481 -0.719731\nvn -0.502720 0.510991 -0.697252\nvn -0.494317 0.487481 -0.719731\nvn -0.492345 0.485112 -0.722678\nvn -0.488743 0.444612 -0.750633\nvn -0.488743 0.444612 -0.750633\nvn -0.489987 0.458460 -0.741436\nvn -0.494317 0.487481 -0.719731\nvn -0.490932 0.428031 -0.758799\nvn -0.489987 0.458460 -0.741436\nvn -0.488743 0.444612 -0.750633\nvn -0.488743 0.444612 -0.750633\nvn -0.494603 0.426696 -0.757164\nvn -0.490932 0.428031 -0.758799\nvn 0.060519 0.849198 -0.524595\nvn 0.061558 0.848838 -0.525057\nvn 0.061404 0.843913 -0.532954\nvn 0.061404 0.843913 -0.532954\nvn 0.060702 0.844157 -0.532649\nvn 0.060519 0.849198 -0.524595\nvn 0.060702 0.844157 -0.532649\nvn 0.061404 0.843913 -0.532954\nvn 0.061221 0.840136 -0.538910\nvn 0.061222 0.852347 -0.519380\nvn 0.062136 0.853273 -0.517750\nvn 0.061558 0.848838 -0.525057\nvn 0.061558 0.848838 -0.525057\nvn 0.060519 0.849198 -0.524595\nvn 0.061222 0.852347 -0.519380\nvn 0.060824 0.840402 -0.538539\nvn 0.061221 0.840136 -0.538910\nvn 0.062503 0.836892 -0.543788\nvn 0.061221 0.840136 -0.538910\nvn 0.060824 0.840402 -0.538539\nvn 0.060702 0.844157 -0.532649\nvn 0.062503 0.836892 -0.543788\nvn 0.062534 0.837241 -0.543247\nvn 0.060824 0.840402 -0.538539\nvn 0.062534 0.837241 -0.543247\nvn 0.062503 0.836892 -0.543788\nvn 0.065921 0.835772 -0.545106\nvn 0.065921 0.835772 -0.545106\nvn 0.066531 0.836066 -0.544580\nvn 0.062534 0.837241 -0.543247\nvn 0.066531 0.836066 -0.544580\nvn 0.065921 0.835772 -0.545106\nvn 0.069735 0.836364 -0.543721\nvn 0.069735 0.836364 -0.543721\nvn 0.070439 0.836812 -0.542940\nvn 0.066531 0.836066 -0.544580\nvn 0.074314 0.972738 0.219677\nvn 0.000030 0.980176 0.198129\nvn 0.028260 0.978092 0.206245\nvn 0.028260 0.978092 0.206245\nvn 0.152960 0.972571 0.175239\nvn 0.074314 0.972738 0.219677\nvn -0.000000 0.985765 0.168129\nvn 0.028260 0.978092 0.206245\nvn 0.000030 0.980176 0.198129\nvn 0.000030 0.980176 0.198129\nvn 0.000091 0.985848 0.167640\nvn -0.000000 0.985765 0.168129\nvn 0.000091 0.985848 0.167640\nvn 0.000091 0.985879 0.167457\nvn -0.000000 0.985765 0.168129\nvn -0.369623 0.923889 -0.099036\nvn -0.683015 0.707094 -0.183053\nvn -0.615138 0.676419 -0.405046\nvn -0.615138 0.676419 -0.405046\nvn -0.369622 0.923886 -0.099066\nvn -0.369623 0.923889 -0.099036\nvn -0.369623 0.923889 -0.099036\nvn -0.369622 0.923886 -0.099066\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.369623 0.923889 -0.099036\nvn -0.837081 0.360828 -0.411216\nvn -0.615138 0.676419 -0.405046\nvn -0.683015 0.707094 -0.183053\nvn -0.683015 0.707094 -0.183053\nvn -0.892390 0.382684 -0.239151\nvn -0.837081 0.360828 -0.411216\nvn -0.911492 0.005615 -0.411279\nvn -0.837081 0.360828 -0.411216\nvn -0.892390 0.382684 -0.239151\nvn -0.892390 0.382684 -0.239151\nvn -0.965915 -0.000000 -0.258859\nvn -0.911492 0.005615 -0.411279\nvn -0.863814 -0.287643 -0.413626\nvn -0.911492 0.005615 -0.411279\nvn -0.965915 -0.000000 -0.258859\nvn -0.965915 -0.000000 -0.258859\nvn -0.895975 -0.335404 -0.291090\nvn -0.863814 -0.287643 -0.413626\nvn -0.810858 -0.311324 -0.495567\nvn -0.863814 -0.287643 -0.413626\nvn -0.895975 -0.335404 -0.291090\nvn -0.895975 -0.335404 -0.291090\nvn -0.737830 -0.537503 -0.408285\nvn -0.810858 -0.311324 -0.495567\nvn -0.399401 -0.903299 -0.156623\nvn -0.312945 -0.906637 -0.282975\nvn -0.418323 -0.881478 -0.219095\nvn -0.418323 -0.881478 -0.219095\nvn -0.451959 -0.883776 -0.121131\nvn -0.399401 -0.903299 -0.156623\nvn -0.369649 -0.923879 -0.099035\nvn -0.399401 -0.903299 -0.156623\nvn -0.451959 -0.883776 -0.121131\nvn -0.451959 -0.883776 -0.121131\nvn -0.369649 -0.923879 -0.099035\nvn -0.369649 -0.923879 -0.099035\nvn 0.284010 0.955795 0.076114\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.284010 0.955795 0.076114\nvn 0.284010 0.955795 0.076114\nvn 0.284010 0.955795 0.076114\nvn 0.284010 0.955795 0.076114\nvn 0.369648 0.923876 0.099065\nvn 0.369648 0.923876 0.099065\nvn 0.369648 0.923876 0.099065\nvn 0.284010 0.955795 0.076114\nvn -0.329153 0.912410 -0.243240\nvn -0.640725 0.698284 -0.319172\nvn -0.637663 0.701417 -0.318435\nvn -0.637663 0.701417 -0.318435\nvn -0.324355 0.914436 -0.242076\nvn -0.329153 0.912410 -0.243240\nvn -0.329153 0.912410 -0.243240\nvn -0.324355 0.914436 -0.242076\nvn 0.044191 0.987192 -0.153296\nvn 0.044191 0.987192 -0.153296\nvn 0.038118 0.987211 -0.154794\nvn -0.329153 0.912410 -0.243240\nvn -0.848222 0.380056 -0.368886\nvn -0.637663 0.701417 -0.318435\nvn -0.640725 0.698284 -0.319172\nvn -0.640725 0.698284 -0.319172\nvn -0.849043 0.378010 -0.369099\nvn -0.848222 0.380056 -0.368886\nvn -0.921973 -0.000000 -0.387253\nvn -0.848222 0.380056 -0.368886\nvn -0.849043 0.378010 -0.369099\nvn -0.849043 0.378010 -0.369099\nvn -0.921973 -0.000000 -0.387253\nvn -0.921973 -0.000000 -0.387253\nvn -0.848222 -0.380057 -0.368886\nvn -0.921973 -0.000000 -0.387253\nvn -0.921973 -0.000000 -0.387253\nvn -0.921973 -0.000000 -0.387253\nvn -0.849043 -0.378011 -0.369099\nvn -0.848222 -0.380057 -0.368886\nvn -0.637663 -0.701417 -0.318435\nvn -0.848222 -0.380057 -0.368886\nvn -0.849043 -0.378011 -0.369099\nvn -0.849043 -0.378011 -0.369099\nvn -0.640725 -0.698285 -0.319172\nvn -0.637663 -0.701417 -0.318435\nvn -0.324354 -0.914436 -0.242075\nvn -0.637663 -0.701417 -0.318435\nvn -0.640725 -0.698285 -0.319172\nvn -0.640725 -0.698285 -0.319172\nvn -0.329152 -0.912411 -0.243240\nvn -0.324354 -0.914436 -0.242075\nvn 0.044192 -0.987192 -0.153296\nvn -0.324354 -0.914436 -0.242075\nvn -0.329152 -0.912411 -0.243240\nvn -0.329152 -0.912411 -0.243240\nvn 0.038119 -0.987211 -0.154794\nvn 0.044192 -0.987192 -0.153296\nvn 0.320761 0.943331 -0.085089\nvn 0.038118 0.987211 -0.154794\nvn 0.044191 0.987192 -0.153296\nvn 0.044191 0.987192 -0.153296\nvn 0.324968 0.941975 -0.084141\nvn 0.320761 0.943331 -0.085089\nvn 0.320761 0.943331 -0.085089\nvn 0.324968 0.941975 -0.084141\nvn 0.407881 0.910738 -0.064730\nvn 0.407881 0.910738 -0.064730\nvn 0.407893 0.910732 -0.064732\nvn 0.320761 0.943331 -0.085089\nvn 0.044192 -0.987192 -0.153296\nvn 0.038119 -0.987211 -0.154794\nvn 0.320761 -0.943330 -0.085089\nvn 0.320761 -0.943330 -0.085089\nvn 0.324996 -0.941965 -0.084140\nvn 0.044192 -0.987192 -0.153296\nvn 0.324996 -0.941965 -0.084140\nvn 0.320761 -0.943330 -0.085089\nvn 0.407893 -0.910732 -0.064732\nvn 0.407893 -0.910732 -0.064732\nvn 0.407893 -0.910732 -0.064732\nvn 0.324996 -0.941965 -0.084140\nvn -0.258774 -0.000000 0.965938\nvn -0.258774 -0.000000 0.965938\nvn -0.258802 -0.000000 0.965930\nvn -0.258802 -0.000000 0.965930\nvn -0.258802 -0.000000 0.965930\nvn -0.258774 -0.000000 0.965938\nvn -0.258774 -0.000000 0.965938\nvn -0.258774 -0.000000 0.965938\nvn -0.258802 -0.000031 0.965930\nvn -0.258802 -0.000031 0.965930\nvn -0.258802 -0.000031 0.965930\nvn -0.258774 -0.000000 0.965938\nvn -0.258802 -0.000031 0.965930\nvn -0.258802 -0.000031 0.965930\nvn -0.258774 -0.000031 0.965938\nvn -0.258774 -0.000031 0.965938\nvn -0.258774 -0.000000 0.965938\nvn -0.258802 -0.000031 0.965930\nvn -0.258774 -0.000000 0.965938\nvn -0.258774 -0.000031 0.965938\nvn -0.258802 -0.000000 0.965930\nvn -0.258802 -0.000000 0.965930\nvn -0.258802 -0.000000 0.965930\nvn -0.258774 -0.000000 0.965938\nvn -0.258802 -0.000000 0.965930\nvn -0.258802 -0.000000 0.965930\nvn -0.258774 -0.000000 0.965938\nvn -0.258774 -0.000000 0.965938\nvn -0.258774 -0.000000 0.965938\nvn -0.258802 -0.000000 0.965930\nvn -0.258774 -0.000000 0.965938\nvn -0.258774 -0.000000 0.965938\nvn -0.258774 0.000031 0.965938\nvn -0.258774 0.000031 0.965938\nvn -0.258802 0.000031 0.965930\nvn -0.258774 -0.000000 0.965938\nvn -0.258802 0.000031 0.965930\nvn -0.258774 0.000031 0.965938\nvn -0.258774 -0.000000 0.965938\nvn -0.258774 -0.000000 0.965938\nvn -0.258802 -0.000000 0.965930\nvn -0.258802 0.000031 0.965930\nvn -0.258802 -0.000000 0.965930\nvn -0.258774 -0.000000 0.965938\nvn -0.258802 -0.000000 0.965930\nvn -0.258802 -0.000000 0.965930\nvn -0.258802 -0.000000 0.965930\nvn -0.258802 -0.000000 0.965930\nvn -0.258802 -0.000000 0.965930\nvn -0.258802 -0.000000 0.965930\nvn -0.258802 -0.000000 0.965930\nvn -0.258802 -0.000000 0.965930\nvn -0.258831 -0.000000 0.965923\nvn -0.258802 -0.000000 0.965930\nvn -0.258831 0.000031 0.965923\nvn -0.258802 -0.000000 0.965930\nvn -0.258831 -0.000000 0.965923\nvn -0.258831 -0.000000 0.965923\nvn -0.258867 0.000061 0.965913\nvn -0.258831 0.000031 0.965923\nvn -0.258831 -0.000000 0.965923\nvn -0.258802 -0.000000 0.965930\nvn -0.258802 -0.000000 0.965930\nvn -0.258802 -0.000000 0.965930\nvn -0.258831 -0.000000 0.965923\nvn -0.258831 -0.000000 0.965923\nvn -0.258831 -0.000000 0.965923\nvn -0.258831 -0.000000 0.965923\nvn -0.258831 -0.000031 0.965923\nvn -0.258831 -0.000031 0.965923\nvn -0.258831 -0.000031 0.965923\nvn -0.258831 -0.000000 0.965923\nvn 0.258831 0.000000 -0.965923\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258831 0.000000 -0.965923\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258831 0.000031 -0.965923\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258831 0.000000 -0.965923\nvn 0.258802 0.000000 -0.965930\nvn 0.258831 0.000000 -0.965923\nvn 0.258802 0.000000 -0.965930\nvn 0.258831 0.000031 -0.965923\nvn 0.258831 0.000031 -0.965923\nvn 0.258831 0.000000 -0.965923\nvn 0.258831 0.000000 -0.965923\nvn 0.258831 0.000000 -0.965923\nvn 0.258831 0.000031 -0.965923\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258831 -0.000031 -0.965923\nvn 0.258831 0.000000 -0.965923\nvn 0.258831 -0.000031 -0.965923\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258802 0.000000 -0.965930\nvn 0.258895 0.000092 -0.965905\nvn 0.258831 -0.000031 -0.965923\nvn -0.202403 0.799751 -0.565182\nvn -0.615138 0.676419 -0.405046\nvn -0.507483 0.615889 -0.602613\nvn -0.507483 0.615889 -0.602613\nvn -0.185619 0.805711 -0.562472\nvn -0.202403 0.799751 -0.565182\nvn -0.202403 0.799751 -0.565182\nvn -0.185619 0.805711 -0.562472\nvn 0.047579 0.967911 -0.246747\nvn 0.047579 0.967911 -0.246747\nvn 0.131384 0.861583 -0.490319\nvn -0.202403 0.799751 -0.565182\nvn -0.747416 0.337878 -0.572022\nvn -0.507483 0.615889 -0.602613\nvn -0.615138 0.676419 -0.405046\nvn -0.615138 0.676419 -0.405046\nvn -0.837081 0.360828 -0.411216\nvn -0.747416 0.337878 -0.572022\nvn -0.838860 0.142953 -0.525241\nvn -0.747416 0.337878 -0.572022\nvn -0.837081 0.360828 -0.411216\nvn -0.837081 0.360828 -0.411216\nvn -0.911492 0.005615 -0.411279\nvn -0.838860 0.142953 -0.525241\nvn 0.376854 0.827719 -0.415767\nvn 0.131384 0.861583 -0.490319\nvn 0.047579 0.967911 -0.246747\nvn 0.047579 0.967911 -0.246747\nvn 0.336498 0.917879 -0.210396\nvn 0.376854 0.827719 -0.415767\nvn 0.376854 0.827719 -0.415767\nvn 0.336498 0.917879 -0.210396\nvn 0.425680 0.885969 -0.184000\nvn 0.425680 0.885969 -0.184000\nvn 0.449299 0.802556 -0.392473\nvn 0.376854 0.827719 -0.415767\nvn -0.830433 0.009308 -0.557040\nvn -0.838860 0.142953 -0.525241\nvn -0.911492 0.005615 -0.411279\nvn -0.911492 0.005615 -0.411279\nvn -0.863814 -0.287643 -0.413626\nvn -0.830433 0.009308 -0.557040\nvn -0.830433 0.009308 -0.557040\nvn -0.863814 -0.287643 -0.413626\nvn -0.810858 -0.311324 -0.495567\nvn -0.810858 -0.311324 -0.495567\nvn -0.782455 0.086034 -0.616735\nvn -0.830433 0.009308 -0.557040\nvn 0.224502 -0.689835 -0.688278\nvn 0.241831 -0.674222 -0.697813\nvn 0.206802 -0.683733 -0.699816\nvn 0.206802 -0.683733 -0.699816\nvn 0.187694 -0.688517 -0.700511\nvn 0.224502 -0.689835 -0.688278\nvn 0.224502 -0.689835 -0.688278\nvn 0.187694 -0.688517 -0.700511\nvn 0.204052 -0.695229 -0.689217\nvn 0.204052 -0.695229 -0.689217\nvn 0.231886 -0.706064 -0.669105\nvn 0.224502 -0.689835 -0.688278\nvn 0.019410 -0.496516 -0.867811\nvn 0.019655 -0.496608 -0.867752\nvn -0.148048 -0.379536 -0.913255\nvn -0.148048 -0.379536 -0.913255\nvn -0.148202 -0.379386 -0.913292\nvn 0.019410 -0.496516 -0.867811\nvn 0.019655 -0.496608 -0.867752\nvn 0.019410 -0.496516 -0.867811\nvn 0.218336 -0.535889 -0.815569\nvn 0.218336 -0.535889 -0.815569\nvn 0.218637 -0.535880 -0.815494\nvn 0.019655 -0.496608 -0.867752\nvn 0.218637 -0.535880 -0.815494\nvn 0.218336 -0.535889 -0.815569\nvn 0.368402 -0.515658 -0.773548\nvn 0.368402 -0.515658 -0.773548\nvn 0.373251 -0.513731 -0.772505\nvn 0.218637 -0.535880 -0.815494\nvn 0.373251 -0.513731 -0.772505\nvn 0.368402 -0.515658 -0.773548\nvn 0.416743 -0.495788 -0.761918\nvn 0.416743 -0.495788 -0.761918\nvn 0.416772 -0.495817 -0.761884\nvn 0.373251 -0.513731 -0.772505\nvn -0.148202 -0.379386 -0.913292\nvn -0.148048 -0.379536 -0.913255\nvn -0.261944 -0.205942 -0.942854\nvn -0.261944 -0.205942 -0.942854\nvn -0.262006 -0.205851 -0.942856\nvn -0.148202 -0.379386 -0.913292\nvn -0.262006 -0.205851 -0.942856\nvn -0.261944 -0.205942 -0.942854\nvn -0.300372 -0.000031 -0.953822\nvn -0.300372 -0.000031 -0.953822\nvn -0.300335 -0.000031 -0.953834\nvn -0.262006 -0.205851 -0.942856\nvn -0.300335 -0.000031 -0.953834\nvn -0.300372 -0.000031 -0.953822\nvn -0.261914 0.205973 -0.942855\nvn -0.261914 0.205973 -0.942855\nvn -0.261918 0.205914 -0.942867\nvn -0.300335 -0.000031 -0.953834\nvn -0.261918 0.205914 -0.942867\nvn -0.261914 0.205973 -0.942855\nvn -0.148048 0.379536 -0.913255\nvn -0.148048 0.379536 -0.913255\nvn -0.148234 0.379358 -0.913298\nvn -0.261918 0.205914 -0.942867\nvn -0.148234 0.379358 -0.913298\nvn -0.148048 0.379536 -0.913255\nvn 0.019654 0.496631 -0.867739\nvn 0.019654 0.496631 -0.867739\nvn 0.019410 0.496515 -0.867811\nvn -0.148234 0.379358 -0.913298\nvn 0.019410 0.496515 -0.867811\nvn 0.019654 0.496631 -0.867739\nvn 0.218637 0.535880 -0.815494\nvn 0.218637 0.535880 -0.815494\nvn 0.218306 0.535893 -0.815574\nvn 0.019410 0.496515 -0.867811\nvn 0.218306 0.535893 -0.815574\nvn 0.218637 0.535880 -0.815494\nvn 0.373248 0.513789 -0.772468\nvn 0.373248 0.513789 -0.772468\nvn 0.368431 0.515687 -0.773515\nvn 0.218306 0.535893 -0.815574\nvn 0.368431 0.515687 -0.773515\nvn 0.373248 0.513789 -0.772468\nvn 0.416772 0.495817 -0.761884\nvn 0.416772 0.495817 -0.761884\nvn 0.416778 0.495794 -0.761896\nvn 0.368431 0.515687 -0.773515\nvn -0.394490 0.918900 -0.000000\nvn -0.422384 0.906417 -0.000000\nvn -0.566162 0.824294 -0.000000\nvn -0.566162 0.824294 -0.000000\nvn -0.566127 0.824318 -0.000000\nvn -0.394490 0.918900 -0.000000\nvn -0.422384 0.906417 -0.000000\nvn -0.394490 0.918900 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.047579 0.967911 -0.246747\nvn -0.422384 0.906417 -0.000000\nvn -0.899090 0.437764 -0.000000\nvn -0.899060 0.437826 -0.000031\nvn -0.950723 0.310041 -0.000000\nvn -0.950723 0.310041 -0.000000\nvn -0.948191 0.317701 -0.000000\nvn -0.899090 0.437764 -0.000000\nvn -0.948191 0.317701 -0.000000\nvn -0.950723 0.310041 -0.000000\nvn -0.981331 0.192329 -0.000000\nvn -0.981331 0.192329 -0.000000\nvn -0.981331 0.192329 -0.000000\nvn -0.948191 0.317701 -0.000000\nvn 0.047579 0.967911 -0.246747\nvn -0.000000 1.000000 -0.000000\nvn 0.300675 0.953727 -0.000000\nvn 0.300675 0.953727 -0.000000\nvn 0.336498 0.917879 -0.210396\nvn 0.047579 0.967911 -0.246747\nvn 0.336498 0.917879 -0.210396\nvn 0.300675 0.953727 -0.000000\nvn 0.390856 0.920452 -0.000000\nvn 0.390856 0.920452 -0.000000\nvn 0.425680 0.885969 -0.184000\nvn 0.336498 0.917879 -0.210396\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.035189 0.999381 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.001923 0.999996 0.002228\nvn -0.035189 0.999381 -0.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.999363 -0.035401 0.004517\nvn 0.999756 -0.021424 0.005463\nvn 0.999918 -0.012451 0.002869\nvn 0.999363 -0.035401 0.004517\nvn 0.999918 -0.012451 0.002869\nvn 0.999840 -0.017792 0.001984\nvn 0.999918 -0.012451 0.002869\nvn 1.000000 0.000000 0.000000\nvn 0.999840 -0.017792 0.001984\nvn 1.000000 0.000000 0.000000\nvn 0.999918 -0.012451 0.002869\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.079655 -0.971446 0.223490\nvn 0.017366 -0.977814 0.208753\nvn 0.057895 -0.975089 0.214123\nvn 0.057895 -0.975089 0.214123\nvn 0.178846 -0.953893 0.241045\nvn 0.079655 -0.971446 0.223490\nvn 0.000000 -0.977962 0.208783\nvn 0.017366 -0.977814 0.208753\nvn 0.079655 -0.971446 0.223490\nvn 0.079655 -0.971446 0.223490\nvn 0.000000 -0.977962 0.208783\nvn 0.000000 -0.977962 0.208783\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.999243 0.038209 -0.007324\nvn -0.999431 0.031587 -0.011811\nvn -0.999161 0.040559 -0.005707\nvn -0.999161 0.040559 -0.005707\nvn -0.998800 0.048983 -0.000000\nvn -0.999243 0.038209 -0.007324\nvn -0.042788 0.948101 -0.315077\nvn -0.040591 0.948713 -0.313522\nvn -0.043826 0.947808 -0.315814\nvn -0.043826 0.947808 -0.315814\nvn -0.046054 0.947193 -0.317339\nvn -0.042788 0.948101 -0.315077\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.689247 0.724527\nvn -0.000000 0.689247 0.724527\nvn -0.000000 0.689247 0.724527\nvn -0.000000 0.689247 0.724527\nvn -0.000000 0.689247 0.724527\nvn -0.000000 0.689247 0.724527\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn -0.999861 -0.016206 0.003815\nvn -1.000000 -0.000000 -0.000000\nvn -0.999933 -0.011476 0.001282\nvn -0.999861 -0.016206 0.003815\nvn -0.999933 -0.011476 0.001282\nvn -0.999718 -0.023500 0.003296\nvn -0.999861 -0.016206 0.003815\nvn -0.999718 -0.023500 0.003296\nvn -0.999216 -0.038362 0.009766\nvn -1.000000 -0.000000 -0.000000\nvn -0.999933 -0.011476 0.001282\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.079654 -0.971446 0.223490\nvn -0.178845 -0.953893 0.241045\nvn -0.057895 -0.975089 0.214123\nvn -0.057895 -0.975089 0.214123\nvn -0.017365 -0.977814 0.208753\nvn -0.079654 -0.971446 0.223490\nvn -0.079654 -0.971446 0.223490\nvn -0.017365 -0.977814 0.208753\nvn 0.000000 -0.977962 0.208783\nvn 0.000000 -0.977962 0.208783\nvn 0.000000 -0.977962 0.208783\nvn -0.079654 -0.971446 0.223490\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.999250 0.038149 -0.006592\nvn 0.999501 0.031588 -0.000000\nvn 0.999153 0.040224 -0.008728\nvn 0.999153 0.040224 -0.008728\nvn 0.998645 0.048983 -0.017579\nvn 0.999250 0.038149 -0.006592\nvn 0.042787 0.948101 -0.315077\nvn 0.046053 0.947193 -0.317339\nvn 0.043825 0.947808 -0.315814\nvn 0.043825 0.947808 -0.315814\nvn 0.040590 0.948713 -0.313522\nvn 0.042787 0.948101 -0.315077\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn 0.000000 -0.000000 -1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.689247 0.724527\nvn -0.000000 0.689247 0.724527\nvn -0.000000 0.689247 0.724527\nvn -0.000000 0.689247 0.724527\nvn -0.000000 0.689247 0.724527\nvn -0.000000 0.689247 0.724527\nvn 0.157018 0.984896 -0.072970\nvn 0.158821 0.984573 -0.073429\nvn 0.124947 0.984621 -0.122109\nvn 0.124947 0.984621 -0.122109\nvn 0.120976 0.984472 -0.127202\nvn 0.157018 0.984896 -0.072970\nvn 0.120976 0.984472 -0.127202\nvn 0.124947 0.984621 -0.122109\nvn 0.048524 0.952916 -0.299327\nvn 0.048524 0.952916 -0.299327\nvn 0.043031 0.949629 -0.310409\nvn 0.120976 0.984472 -0.127202\nvn 0.043031 0.949629 -0.310409\nvn 0.048524 0.952916 -0.299327\nvn -0.032015 0.873071 -0.486542\nvn -0.032015 0.873071 -0.486542\nvn -0.032869 0.871198 -0.489831\nvn 0.043031 0.949629 -0.310409\nvn -0.032869 0.871198 -0.489831\nvn -0.032015 0.873071 -0.486542\nvn -0.050815 0.833180 -0.550662\nvn -0.050815 0.833180 -0.550662\nvn -0.049839 0.833156 -0.550788\nvn -0.032869 0.871198 -0.489831\nvn -0.049839 0.833156 -0.550788\nvn -0.050815 0.833180 -0.550662\nvn -0.043429 0.833759 -0.550417\nvn -0.043429 0.833759 -0.550417\nvn -0.043460 0.834424 -0.549406\nvn -0.049839 0.833156 -0.550788\nvn -0.038180 0.832747 -0.552336\nvn -0.043460 0.834424 -0.549406\nvn -0.043429 0.833759 -0.550417\nvn -0.043429 0.833759 -0.550417\nvn -0.038058 0.832385 -0.552889\nvn -0.038180 0.832747 -0.552336\nvn -0.038180 0.832747 -0.552336\nvn -0.038058 0.832385 -0.552889\nvn -0.036562 0.832741 -0.552455\nvn -0.036562 0.832741 -0.552455\nvn -0.035738 0.832555 -0.552788\nvn -0.038180 0.832747 -0.552336\nvn -0.040041 0.836025 -0.547228\nvn -0.035738 0.832555 -0.552788\nvn -0.036562 0.832741 -0.552455\nvn -0.036562 0.832741 -0.552455\nvn -0.039858 0.835790 -0.547600\nvn -0.040041 0.836025 -0.547228\nvn -0.040041 0.836025 -0.547228\nvn -0.039858 0.835790 -0.547600\nvn -0.047489 0.839471 -0.541326\nvn -0.047489 0.839471 -0.541326\nvn -0.047824 0.840104 -0.540313\nvn -0.040041 0.836025 -0.547228\nvn -0.054049 0.832254 -0.551754\nvn -0.047824 0.840104 -0.540313\nvn -0.047489 0.839471 -0.541326\nvn -0.047489 0.839471 -0.541326\nvn -0.053896 0.836520 -0.545279\nvn -0.054049 0.832254 -0.551754\nvn -0.054049 0.832254 -0.551754\nvn -0.053896 0.836520 -0.545279\nvn -0.050570 0.824502 -0.563595\nvn -0.050570 0.824502 -0.563595\nvn -0.048496 0.824329 -0.564029\nvn -0.054049 0.832254 -0.551754\nvn -0.140482 0.437925 -0.887967\nvn -0.149970 0.434375 -0.888160\nvn -0.139840 0.415002 -0.899009\nvn -0.139840 0.415002 -0.899009\nvn -0.132911 0.395924 -0.908614\nvn -0.140482 0.437925 -0.887967\nvn -0.132911 0.395924 -0.908614\nvn -0.139840 0.415002 -0.899009\nvn -0.118535 0.366530 -0.922825\nvn -0.118535 0.366530 -0.922825\nvn -0.113593 0.360373 -0.925866\nvn -0.132911 0.395924 -0.908614\nvn -0.113593 0.360373 -0.925866\nvn -0.118535 0.366530 -0.922825\nvn -0.093693 0.348221 -0.932719\nvn -0.093693 0.348221 -0.932719\nvn -0.092656 0.348496 -0.932720\nvn -0.113593 0.360373 -0.925866\nvn -0.092656 0.348496 -0.932720\nvn -0.093693 0.348221 -0.932719\nvn -0.096135 0.372394 -0.923082\nvn -0.096135 0.372394 -0.923082\nvn -0.087682 0.396016 -0.914048\nvn -0.092656 0.348496 -0.932720\nvn -0.087682 0.396016 -0.914048\nvn -0.096135 0.372394 -0.923082\nvn -0.042421 0.402361 -0.914498\nvn -0.042421 0.402361 -0.914498\nvn -0.031984 0.398515 -0.916604\nvn -0.087682 0.396016 -0.914048\nvn 0.262400 0.918615 -0.295452\nvn 0.230235 0.924483 -0.303848\nvn 0.218150 0.912581 -0.345842\nvn 0.218150 0.912581 -0.345842\nvn 0.264083 0.917411 -0.297686\nvn 0.262400 0.918615 -0.295452\nvn 0.208139 0.899364 -0.384478\nvn 0.218150 0.912581 -0.345842\nvn 0.230235 0.924483 -0.303848\nvn 0.230235 0.924483 -0.303848\nvn 0.209150 0.897854 -0.387446\nvn 0.208139 0.899364 -0.384478\nvn 0.905245 0.023500 -0.424240\nvn 0.896951 0.007447 -0.442067\nvn 0.901956 0.015870 -0.431537\nvn 0.901956 0.015870 -0.431537\nvn 0.907067 0.030428 -0.419886\nvn 0.905245 0.023500 -0.424240\nvn 0.899021 0.004425 -0.437883\nvn 0.901956 0.015870 -0.431537\nvn 0.896951 0.007447 -0.442067\nvn 0.896951 0.007447 -0.442067\nvn 0.895282 -0.003052 -0.445489\nvn 0.899021 0.004425 -0.437883\nvn 0.904894 -0.003632 -0.425621\nvn 0.899021 0.004425 -0.437883\nvn 0.895282 -0.003052 -0.445489\nvn 0.895282 -0.003052 -0.445489\nvn 0.907129 -0.013123 -0.420649\nvn 0.904894 -0.003632 -0.425621\nvn 0.909691 -0.054874 -0.411645\nvn 0.904894 -0.003632 -0.425621\nvn 0.907129 -0.013123 -0.420649\nvn 0.907129 -0.013123 -0.420649\nvn 0.906455 -0.062870 -0.417596\nvn 0.909691 -0.054874 -0.411645\nvn 0.892955 -0.068088 -0.444967\nvn 0.909691 -0.054874 -0.411645\nvn 0.906455 -0.062870 -0.417596\nvn 0.906455 -0.062870 -0.417596\nvn 0.874656 -0.064701 -0.480406\nvn 0.892955 -0.068088 -0.444967\nvn 0.892955 -0.068088 -0.444967\nvn 0.874656 -0.064701 -0.480406\nvn 0.870605 -0.093326 -0.483049\nvn 0.870605 -0.093326 -0.483049\nvn 0.877051 -0.086948 -0.472463\nvn 0.892955 -0.068088 -0.444967\nvn 0.859381 -0.113469 -0.498587\nvn 0.877051 -0.086948 -0.472463\nvn 0.870605 -0.093326 -0.483049\nvn 0.870605 -0.093326 -0.483049\nvn 0.853010 -0.116644 -0.508693\nvn 0.859381 -0.113469 -0.498587\nvn 0.828866 -0.115240 -0.547450\nvn 0.859381 -0.113469 -0.498587\nvn 0.853010 -0.116644 -0.508693\nvn 0.853010 -0.116644 -0.508693\nvn 0.833035 -0.092230 -0.545478\nvn 0.828866 -0.115240 -0.547450\nvn 0.807966 -0.083714 -0.583253\nvn 0.828866 -0.115240 -0.547450\nvn 0.833035 -0.092230 -0.545478\nvn 0.833035 -0.092230 -0.545478\nvn 0.812048 -0.073978 -0.578883\nvn 0.807966 -0.083714 -0.583253\nvn 0.800864 -0.120552 -0.586586\nvn 0.807966 -0.083714 -0.583253\nvn 0.812048 -0.073978 -0.578883\nvn 0.812048 -0.073978 -0.578883\nvn 0.793661 -0.158732 -0.587288\nvn 0.800864 -0.120552 -0.586586\nvn 0.768877 -0.247665 -0.589483\nvn 0.800864 -0.120552 -0.586586\nvn 0.793661 -0.158732 -0.587288\nvn 0.793661 -0.158732 -0.587288\nvn 0.770581 -0.254012 -0.584536\nvn 0.768877 -0.247665 -0.589483\nvn 0.747140 -0.292465 -0.596864\nvn 0.768877 -0.247665 -0.589483\nvn 0.770581 -0.254012 -0.584536\nvn 0.770581 -0.254012 -0.584536\nvn 0.753092 -0.266616 -0.601472\nvn 0.747140 -0.292465 -0.596864\nvn 0.728460 -0.316605 -0.607543\nvn 0.747140 -0.292465 -0.596864\nvn 0.753092 -0.266616 -0.601472\nvn 0.753092 -0.266616 -0.601472\nvn 0.734086 -0.288043 -0.614938\nvn 0.728460 -0.316605 -0.607543\nvn 0.697483 -0.358599 -0.620422\nvn 0.728460 -0.316605 -0.607543\nvn 0.734086 -0.288043 -0.614938\nvn 0.734086 -0.288043 -0.614938\nvn 0.708137 -0.330065 -0.624179\nvn 0.697483 -0.358599 -0.620422\nvn 0.697483 -0.358599 -0.620422\nvn 0.708137 -0.330065 -0.624179\nvn 0.664309 -0.375324 -0.646394\nvn 0.664309 -0.375324 -0.646394\nvn 0.655582 -0.388234 -0.647678\nvn 0.697483 -0.358599 -0.620422\nvn 0.639257 -0.364705 -0.677009\nvn 0.655582 -0.388234 -0.647678\nvn 0.664309 -0.375324 -0.646394\nvn 0.664309 -0.375324 -0.646394\nvn 0.655127 -0.333942 -0.677711\nvn 0.639257 -0.364705 -0.677009\nvn 0.686100 -0.261548 -0.678867\nvn 0.639257 -0.364705 -0.677009\nvn 0.655127 -0.333942 -0.677711\nvn 0.655127 -0.333942 -0.677711\nvn 0.689848 -0.265483 -0.673520\nvn 0.686100 -0.261548 -0.678867\nvn 0.686100 -0.261548 -0.678867\nvn 0.689848 -0.265483 -0.673520\nvn 0.682874 0.005616 -0.730515\nvn 0.682874 0.005616 -0.730515\nvn 0.677232 0.041324 -0.734609\nvn 0.686100 -0.261548 -0.678867\nvn -0.157019 0.984896 -0.072970\nvn -0.120976 0.984472 -0.127202\nvn -0.124947 0.984621 -0.122109\nvn -0.124947 0.984621 -0.122109\nvn -0.158851 0.984568 -0.073428\nvn -0.157019 0.984896 -0.072970\nvn -0.048525 0.952916 -0.299327\nvn -0.124947 0.984621 -0.122109\nvn -0.120976 0.984472 -0.127202\nvn -0.120976 0.984472 -0.127202\nvn -0.043032 0.949629 -0.310409\nvn -0.048525 0.952916 -0.299327\nvn 0.032015 0.873071 -0.486542\nvn -0.048525 0.952916 -0.299327\nvn -0.043032 0.949629 -0.310409\nvn -0.043032 0.949629 -0.310409\nvn 0.032869 0.871198 -0.489831\nvn 0.032015 0.873071 -0.486542\nvn 0.050815 0.833180 -0.550662\nvn 0.032015 0.873071 -0.486542\nvn 0.032869 0.871198 -0.489831\nvn 0.032869 0.871198 -0.489831\nvn 0.049838 0.833156 -0.550788\nvn 0.050815 0.833180 -0.550662\nvn 0.043429 0.833759 -0.550417\nvn 0.050815 0.833180 -0.550662\nvn 0.049838 0.833156 -0.550788\nvn 0.049838 0.833156 -0.550788\nvn 0.043459 0.834424 -0.549406\nvn 0.043429 0.833759 -0.550417\nvn 0.043429 0.833759 -0.550417\nvn 0.043459 0.834424 -0.549406\nvn 0.038179 0.832747 -0.552336\nvn 0.038179 0.832747 -0.552336\nvn 0.038057 0.832385 -0.552889\nvn 0.043429 0.833759 -0.550417\nvn 0.036561 0.832741 -0.552455\nvn 0.038057 0.832385 -0.552889\nvn 0.038179 0.832747 -0.552336\nvn 0.038179 0.832747 -0.552336\nvn 0.035737 0.832555 -0.552788\nvn 0.036561 0.832741 -0.552455\nvn 0.036561 0.832741 -0.552455\nvn 0.035737 0.832555 -0.552788\nvn 0.040041 0.836016 -0.547242\nvn 0.040041 0.836016 -0.547242\nvn 0.039857 0.835790 -0.547600\nvn 0.036561 0.832741 -0.552455\nvn 0.047488 0.839471 -0.541326\nvn 0.039857 0.835790 -0.547600\nvn 0.040041 0.836016 -0.547242\nvn 0.040041 0.836016 -0.547242\nvn 0.047823 0.840104 -0.540313\nvn 0.047488 0.839471 -0.541326\nvn 0.047488 0.839471 -0.541326\nvn 0.047823 0.840104 -0.540313\nvn 0.054049 0.832254 -0.551754\nvn 0.054049 0.832254 -0.551754\nvn 0.053896 0.836520 -0.545279\nvn 0.047488 0.839471 -0.541326\nvn 0.050570 0.824502 -0.563595\nvn 0.053896 0.836520 -0.545279\nvn 0.054049 0.832254 -0.551754\nvn 0.054049 0.832254 -0.551754\nvn 0.048495 0.824329 -0.564029\nvn 0.050570 0.824502 -0.563595\nvn 0.139840 0.415002 -0.899009\nvn 0.149974 0.434387 -0.888153\nvn 0.140482 0.437925 -0.887967\nvn 0.140482 0.437925 -0.887967\nvn 0.132940 0.395922 -0.908610\nvn 0.139840 0.415002 -0.899009\nvn 0.116917 0.367507 -0.922643\nvn 0.139840 0.415002 -0.899009\nvn 0.132940 0.395922 -0.908610\nvn 0.132940 0.395922 -0.908610\nvn 0.114903 0.365524 -0.923683\nvn 0.116917 0.367507 -0.922643\nvn 0.116917 0.367507 -0.922643\nvn 0.114903 0.365524 -0.923683\nvn 0.093450 0.346454 -0.933401\nvn 0.093450 0.346454 -0.933401\nvn 0.092870 0.343800 -0.934439\nvn 0.116917 0.367507 -0.922643\nvn 0.092870 0.343800 -0.934439\nvn 0.093450 0.346454 -0.933401\nvn 0.091253 0.413449 -0.905943\nvn 0.091253 0.413449 -0.905943\nvn 0.092047 0.376031 -0.922024\nvn 0.092870 0.343800 -0.934439\nvn 0.092047 0.376031 -0.922024\nvn 0.091253 0.413449 -0.905943\nvn 0.050448 0.391807 -0.918663\nvn 0.050448 0.391807 -0.918663\nvn 0.039858 0.377464 -0.925166\nvn 0.092047 0.376031 -0.922024\nvn -0.264970 0.918696 -0.292895\nvn -0.217051 0.912670 -0.346299\nvn -0.230269 0.923241 -0.307574\nvn -0.230269 0.923241 -0.307574\nvn -0.266587 0.917780 -0.294299\nvn -0.264970 0.918696 -0.292895\nvn -0.230269 0.923241 -0.307574\nvn -0.217051 0.912670 -0.346299\nvn -0.208140 0.899363 -0.384478\nvn -0.208140 0.899363 -0.384478\nvn -0.209151 0.897854 -0.387446\nvn -0.230269 0.923241 -0.307574\nvn -0.905245 0.023499 -0.424240\nvn -0.907067 0.030428 -0.419886\nvn -0.901956 0.015870 -0.431537\nvn -0.901956 0.015870 -0.431537\nvn -0.896951 0.007446 -0.442067\nvn -0.905245 0.023499 -0.424240\nvn -0.896951 0.007446 -0.442067\nvn -0.901956 0.015870 -0.431537\nvn -0.899021 0.004425 -0.437883\nvn -0.899021 0.004425 -0.437883\nvn -0.895282 -0.003052 -0.445489\nvn -0.896951 0.007446 -0.442067\nvn -0.895282 -0.003052 -0.445489\nvn -0.899021 0.004425 -0.437883\nvn -0.904894 -0.003632 -0.425621\nvn -0.904894 -0.003632 -0.425621\nvn -0.907129 -0.013124 -0.420649\nvn -0.895282 -0.003052 -0.445489\nvn -0.907129 -0.013124 -0.420649\nvn -0.904894 -0.003632 -0.425621\nvn -0.909691 -0.054874 -0.411645\nvn -0.909691 -0.054874 -0.411645\nvn -0.906455 -0.062870 -0.417596\nvn -0.907129 -0.013124 -0.420649\nvn -0.906455 -0.062870 -0.417596\nvn -0.909691 -0.054874 -0.411645\nvn -0.892937 -0.068089 -0.445003\nvn -0.892937 -0.068089 -0.445003\nvn -0.874656 -0.064701 -0.480406\nvn -0.906455 -0.062870 -0.417596\nvn -0.870605 -0.093326 -0.483049\nvn -0.874656 -0.064701 -0.480406\nvn -0.892937 -0.068089 -0.445003\nvn -0.892937 -0.068089 -0.445003\nvn -0.877051 -0.086949 -0.472463\nvn -0.870605 -0.093326 -0.483049\nvn -0.870605 -0.093326 -0.483049\nvn -0.877051 -0.086949 -0.472463\nvn -0.859381 -0.113470 -0.498587\nvn -0.859381 -0.113470 -0.498587\nvn -0.853010 -0.116644 -0.508693\nvn -0.870605 -0.093326 -0.483049\nvn -0.853010 -0.116644 -0.508693\nvn -0.859381 -0.113470 -0.498587\nvn -0.828869 -0.115210 -0.547452\nvn -0.828869 -0.115210 -0.547452\nvn -0.833035 -0.092231 -0.545478\nvn -0.853010 -0.116644 -0.508693\nvn -0.833035 -0.092231 -0.545478\nvn -0.828869 -0.115210 -0.547452\nvn -0.807966 -0.083714 -0.583253\nvn -0.807966 -0.083714 -0.583253\nvn -0.812048 -0.073978 -0.578883\nvn -0.833035 -0.092231 -0.545478\nvn -0.812048 -0.073978 -0.578883\nvn -0.807966 -0.083714 -0.583253\nvn -0.800864 -0.120553 -0.586586\nvn -0.800864 -0.120553 -0.586586\nvn -0.793661 -0.158732 -0.587288\nvn -0.812048 -0.073978 -0.578883\nvn -0.793661 -0.158732 -0.587288\nvn -0.800864 -0.120553 -0.586586\nvn -0.768877 -0.247666 -0.589483\nvn -0.768877 -0.247666 -0.589483\nvn -0.770581 -0.254012 -0.584536\nvn -0.793661 -0.158732 -0.587288\nvn -0.770581 -0.254012 -0.584536\nvn -0.768877 -0.247666 -0.589483\nvn -0.747140 -0.292466 -0.596864\nvn -0.747140 -0.292466 -0.596864\nvn -0.753092 -0.266616 -0.601472\nvn -0.770581 -0.254012 -0.584536\nvn -0.753092 -0.266616 -0.601472\nvn -0.747140 -0.292466 -0.596864\nvn -0.728459 -0.316605 -0.607543\nvn -0.728459 -0.316605 -0.607543\nvn -0.734086 -0.288044 -0.614938\nvn -0.753092 -0.266616 -0.601472\nvn -0.734086 -0.288044 -0.614938\nvn -0.728459 -0.316605 -0.607543\nvn -0.696682 -0.374099 -0.612115\nvn -0.696682 -0.374099 -0.612115\nvn -0.705376 -0.331782 -0.626391\nvn -0.734086 -0.288044 -0.614938\nvn -0.705376 -0.331782 -0.626391\nvn -0.696682 -0.374099 -0.612115\nvn -0.661473 -0.385641 -0.643222\nvn -0.661473 -0.385641 -0.643222\nvn -0.666821 -0.361412 -0.651714\nvn -0.705376 -0.331782 -0.626391\nvn -0.666821 -0.361412 -0.651714\nvn -0.661473 -0.385641 -0.643222\nvn -0.639264 -0.364679 -0.677016\nvn -0.639264 -0.364679 -0.677016\nvn -0.655133 -0.333915 -0.677718\nvn -0.666821 -0.361412 -0.651714\nvn -0.655133 -0.333915 -0.677718\nvn -0.639264 -0.364679 -0.677016\nvn -0.686105 -0.261520 -0.678872\nvn -0.686105 -0.261520 -0.678872\nvn -0.689853 -0.265455 -0.673525\nvn -0.655133 -0.333915 -0.677718\nvn -0.682874 0.005615 -0.730515\nvn -0.689853 -0.265455 -0.673525\nvn -0.686105 -0.261520 -0.678872\nvn -0.686105 -0.261520 -0.678872\nvn -0.677232 0.041323 -0.734609\nvn -0.682874 0.005615 -0.730515\nvn 0.173653 -0.085819 -0.981061\nvn 0.112373 0.192273 -0.974886\nvn 0.220744 0.193948 -0.955854\nvn 0.173653 -0.085819 -0.981061\nvn 0.220744 0.193948 -0.955854\nvn 0.320879 0.153542 -0.934591\nvn 0.173653 -0.085819 -0.981061\nvn 0.320879 0.153542 -0.934591\nvn 0.397456 0.077215 -0.914367\nvn 0.173653 -0.085819 -0.981061\nvn 0.397456 0.077215 -0.914367\nvn 0.438931 -0.023347 -0.898218\nvn 0.173653 -0.085819 -0.981061\nvn 0.438931 -0.023347 -0.898218\nvn 0.438928 -0.132972 -0.888629\nvn 0.173653 -0.085819 -0.981061\nvn 0.438928 -0.132972 -0.888629\nvn 0.397449 -0.234843 -0.887064\nvn 0.173653 -0.085819 -0.981061\nvn 0.397449 -0.234843 -0.887064\nvn 0.320881 -0.313496 -0.893731\nvn 0.173653 -0.085819 -0.981061\nvn 0.320881 -0.313496 -0.893731\nvn 0.220777 -0.356985 -0.907645\nvn 0.173653 -0.085819 -0.981061\nvn 0.220777 -0.356985 -0.907645\nvn 0.112433 -0.358631 -0.926684\nvn 0.173653 -0.085819 -0.981061\nvn 0.112433 -0.358631 -0.926684\nvn 0.012330 -0.318254 -0.947925\nvn 0.173653 -0.085819 -0.981061\nvn 0.012330 -0.318254 -0.947925\nvn -0.064243 -0.241927 -0.968165\nvn 0.173653 -0.085819 -0.981061\nvn -0.064243 -0.241927 -0.968165\nvn -0.105718 -0.141334 -0.984301\nvn 0.173653 -0.085819 -0.981061\nvn -0.105718 -0.141334 -0.984301\nvn -0.105688 -0.031740 -0.993893\nvn 0.173653 -0.085819 -0.981061\nvn -0.105688 -0.031740 -0.993893\nvn -0.064212 0.070133 -0.995469\nvn 0.173653 -0.085819 -0.981061\nvn -0.064212 0.070133 -0.995469\nvn 0.012360 0.148811 -0.988788\nvn 0.173653 -0.085819 -0.981061\nvn 0.012360 0.148811 -0.988788\nvn 0.112373 0.192273 -0.974886\nvn 0.621250 0.262801 -0.738230\nvn 0.397456 0.077215 -0.914367\nvn 0.320879 0.153542 -0.934591\nvn 0.320879 0.153542 -0.934591\nvn 0.461762 0.421629 -0.780388\nvn 0.621250 0.262801 -0.738230\nvn 0.397456 0.077215 -0.914367\nvn 0.621250 0.262801 -0.738230\nvn 0.707550 0.053286 -0.704651\nvn 0.707550 0.053286 -0.704651\nvn 0.438931 -0.023347 -0.898218\nvn 0.397456 0.077215 -0.914367\nvn 0.438931 -0.023347 -0.898218\nvn 0.707550 0.053286 -0.704651\nvn 0.707550 -0.174843 -0.684692\nvn 0.707550 -0.174843 -0.684692\nvn 0.438928 -0.132972 -0.888629\nvn 0.438931 -0.023347 -0.898218\nvn 0.438928 -0.132972 -0.888629\nvn 0.707550 -0.174843 -0.684692\nvn 0.621252 -0.386954 -0.681405\nvn 0.621252 -0.386954 -0.681405\nvn 0.397449 -0.234843 -0.887064\nvn 0.438928 -0.132972 -0.888629\nvn 0.397449 -0.234843 -0.887064\nvn 0.621252 -0.386954 -0.681405\nvn 0.461755 -0.550779 -0.695287\nvn 0.461755 -0.550779 -0.695287\nvn 0.320881 -0.313496 -0.893731\nvn 0.397449 -0.234843 -0.887064\nvn 0.320881 -0.313496 -0.893731\nvn 0.461755 -0.550779 -0.695287\nvn 0.253370 -0.641299 -0.724250\nvn 0.253370 -0.641299 -0.724250\nvn 0.220777 -0.356985 -0.907645\nvn 0.320881 -0.313496 -0.893731\nvn 0.220777 -0.356985 -0.907645\nvn 0.253370 -0.641299 -0.724250\nvn 0.027803 -0.644745 -0.763892\nvn 0.027803 -0.644745 -0.763892\nvn 0.112433 -0.358631 -0.926684\nvn 0.220777 -0.356985 -0.907645\nvn 0.112433 -0.358631 -0.926684\nvn 0.027803 -0.644745 -0.763892\nvn -0.180554 -0.560647 -0.808131\nvn -0.180554 -0.560647 -0.808131\nvn 0.012330 -0.318254 -0.947925\nvn 0.112433 -0.358631 -0.926684\nvn 0.012330 -0.318254 -0.947925\nvn -0.180554 -0.560647 -0.808131\nvn -0.340110 -0.401759 -0.850244\nvn -0.340110 -0.401759 -0.850244\nvn -0.064243 -0.241927 -0.968165\nvn 0.012330 -0.318254 -0.947925\nvn -0.064243 -0.241927 -0.968165\nvn -0.340110 -0.401759 -0.850244\nvn -0.426386 -0.192272 -0.883870\nvn -0.426386 -0.192272 -0.883870\nvn -0.105718 -0.141334 -0.984301\nvn -0.064243 -0.241927 -0.968165\nvn -0.105718 -0.141334 -0.984301\nvn -0.426386 -0.192272 -0.883870\nvn -0.426386 0.035860 -0.903830\nvn -0.426386 0.035860 -0.903830\nvn -0.105688 -0.031740 -0.993893\nvn -0.105718 -0.141334 -0.984301\nvn -0.105688 -0.031740 -0.993893\nvn -0.426386 0.035860 -0.903830\nvn -0.340071 0.247996 -0.907111\nvn -0.340071 0.247996 -0.907111\nvn -0.064212 0.070133 -0.995469\nvn -0.105688 -0.031740 -0.993893\nvn -0.064212 0.070133 -0.995469\nvn -0.340071 0.247996 -0.907111\nvn -0.180550 0.411761 -0.893227\nvn -0.180550 0.411761 -0.893227\nvn 0.012360 0.148811 -0.988788\nvn -0.064212 0.070133 -0.995469\nvn 0.012360 0.148811 -0.988788\nvn -0.180550 0.411761 -0.893227\nvn 0.027834 0.502290 -0.864251\nvn 0.027834 0.502290 -0.864251\nvn 0.112373 0.192273 -0.974886\nvn 0.012360 0.148811 -0.988788\nvn 0.112373 0.192273 -0.974886\nvn 0.027834 0.502290 -0.864251\nvn 0.253372 0.505798 -0.824604\nvn 0.253372 0.505798 -0.824604\nvn 0.220744 0.193948 -0.955854\nvn 0.112373 0.192273 -0.974886\nvn 0.220744 0.193948 -0.955854\nvn 0.253372 0.505798 -0.824604\nvn 0.461762 0.421629 -0.780388\nvn 0.461762 0.421629 -0.780388\nvn 0.320879 0.153542 -0.934591\nvn 0.220744 0.193948 -0.955854\nvn 0.258835 0.648324 -0.716017\nvn 0.253372 0.505798 -0.824604\nvn 0.027834 0.502290 -0.864251\nvn 0.027834 0.502290 -0.864251\nvn -0.018556 0.644004 -0.764797\nvn 0.258835 0.648324 -0.716017\nvn -0.018556 0.644004 -0.764797\nvn 0.027834 0.502290 -0.864251\nvn -0.180550 0.411761 -0.893227\nvn 0.253372 0.505798 -0.824604\nvn 0.258835 0.648324 -0.716017\nvn 0.515198 0.544772 -0.661661\nvn 0.515198 0.544772 -0.661661\nvn 0.461762 0.421629 -0.780388\nvn 0.253372 0.505798 -0.824604\nvn 0.461762 0.421629 -0.780388\nvn 0.515198 0.544772 -0.661661\nvn 0.711436 0.349385 -0.609745\nvn 0.711436 0.349385 -0.609745\nvn 0.621250 0.262801 -0.738230\nvn 0.461762 0.421629 -0.780388\nvn 0.621250 0.262801 -0.738230\nvn 0.711436 0.349385 -0.609745\nvn 0.817599 0.091679 -0.568443\nvn 0.817599 0.091679 -0.568443\nvn 0.707550 0.053286 -0.704651\nvn 0.621250 0.262801 -0.738230\nvn 0.707550 0.053286 -0.704651\nvn 0.817599 0.091679 -0.568443\nvn 0.817584 -0.188976 -0.543916\nvn 0.817584 -0.188976 -0.543916\nvn 0.707550 -0.174843 -0.684692\nvn 0.707550 0.053286 -0.704651\nvn 0.707550 -0.174843 -0.684692\nvn 0.817584 -0.188976 -0.543916\nvn 0.711408 -0.449948 -0.539858\nvn 0.711408 -0.449948 -0.539858\nvn 0.621252 -0.386954 -0.681405\nvn 0.707550 -0.174843 -0.684692\nvn 0.621252 -0.386954 -0.681405\nvn 0.711408 -0.449948 -0.539858\nvn 0.515223 -0.651429 -0.556942\nvn 0.515223 -0.651429 -0.556942\nvn 0.461755 -0.550779 -0.695287\nvn 0.621252 -0.386954 -0.681405\nvn 0.461755 -0.550779 -0.695287\nvn 0.515223 -0.651429 -0.556942\nvn 0.258863 -0.762824 -0.592528\nvn 0.258863 -0.762824 -0.592528\nvn 0.253370 -0.641299 -0.724250\nvn 0.461755 -0.550779 -0.695287\nvn 0.253370 -0.641299 -0.724250\nvn 0.258863 -0.762824 -0.592528\nvn -0.018586 -0.767040 -0.641331\nvn -0.018586 -0.767040 -0.641331\nvn 0.027803 -0.644745 -0.763892\nvn 0.253370 -0.641299 -0.724250\nvn 0.027803 -0.644745 -0.763892\nvn -0.018586 -0.767040 -0.641331\nvn -0.274953 -0.663563 -0.695762\nvn -0.274953 -0.663563 -0.695762\nvn -0.180554 -0.560647 -0.808131\nvn 0.027803 -0.644745 -0.763892\nvn -0.180554 -0.560647 -0.808131\nvn -0.274953 -0.663563 -0.695762\nvn -0.471219 -0.468167 -0.747511\nvn -0.471219 -0.468167 -0.747511\nvn -0.340110 -0.401759 -0.850244\nvn -0.180554 -0.560647 -0.808131\nvn -0.340110 -0.401759 -0.850244\nvn -0.471219 -0.468167 -0.747511\nvn -0.577386 -0.210458 -0.788881\nvn -0.577386 -0.210458 -0.788881\nvn -0.426386 -0.192272 -0.883870\nvn -0.340110 -0.401759 -0.850244\nvn -0.426386 -0.192272 -0.883870\nvn -0.577386 -0.210458 -0.788881\nvn -0.577364 0.070225 -0.813461\nvn -0.577364 0.070225 -0.813461\nvn -0.426386 0.035860 -0.903830\nvn -0.426386 -0.192272 -0.883870\nvn -0.426386 0.035860 -0.903830\nvn -0.577364 0.070225 -0.813461\nvn -0.471153 0.331192 -0.817513\nvn -0.471153 0.331192 -0.817513\nvn -0.340071 0.247996 -0.907111\nvn -0.426386 0.035860 -0.903830\nvn -0.340071 0.247996 -0.907111\nvn -0.471153 0.331192 -0.817513\nvn -0.274948 0.532652 -0.800428\nvn -0.274948 0.532652 -0.800428\nvn -0.180550 0.411761 -0.893227\nvn -0.340071 0.247996 -0.907111\nvn -0.180550 0.411761 -0.893227\nvn -0.274948 0.532652 -0.800428\nvn -0.018556 0.644004 -0.764797\nvn -0.173653 -0.085819 -0.981061\nvn -0.220744 0.193948 -0.955854\nvn -0.112373 0.192273 -0.974886\nvn -0.173653 -0.085819 -0.981061\nvn -0.320880 0.153542 -0.934591\nvn -0.220744 0.193948 -0.955854\nvn -0.173653 -0.085819 -0.981061\nvn -0.397456 0.077245 -0.914364\nvn -0.320880 0.153542 -0.934591\nvn -0.173653 -0.085819 -0.981061\nvn -0.438931 -0.023348 -0.898218\nvn -0.397456 0.077245 -0.914364\nvn -0.173653 -0.085819 -0.981061\nvn -0.438928 -0.132973 -0.888629\nvn -0.438931 -0.023348 -0.898218\nvn -0.173653 -0.085819 -0.981061\nvn -0.397449 -0.234844 -0.887064\nvn -0.438928 -0.132973 -0.888629\nvn -0.173653 -0.085819 -0.981061\nvn -0.320881 -0.313496 -0.893731\nvn -0.397449 -0.234844 -0.887064\nvn -0.173653 -0.085819 -0.981061\nvn -0.220748 -0.356987 -0.907651\nvn -0.320881 -0.313496 -0.893731\nvn -0.173653 -0.085819 -0.981061\nvn -0.112431 -0.358657 -0.926674\nvn -0.220748 -0.356987 -0.907651\nvn -0.173653 -0.085819 -0.981061\nvn -0.012330 -0.318227 -0.947935\nvn -0.112431 -0.358657 -0.926674\nvn -0.173653 -0.085819 -0.981061\nvn 0.064243 -0.241927 -0.968165\nvn -0.012330 -0.318227 -0.947935\nvn -0.173653 -0.085819 -0.981061\nvn 0.105718 -0.141334 -0.984301\nvn 0.064243 -0.241927 -0.968165\nvn -0.173653 -0.085819 -0.981061\nvn 0.105719 -0.031740 -0.993889\nvn 0.105718 -0.141334 -0.984301\nvn -0.173653 -0.085819 -0.981061\nvn 0.064212 0.070133 -0.995469\nvn 0.105719 -0.031740 -0.993889\nvn -0.173653 -0.085819 -0.981061\nvn -0.012360 0.148811 -0.988788\nvn 0.064212 0.070133 -0.995469\nvn -0.173653 -0.085819 -0.981061\nvn -0.112373 0.192273 -0.974886\nvn -0.012360 0.148811 -0.988788\nvn -0.320880 0.153542 -0.934591\nvn -0.397456 0.077245 -0.914364\nvn -0.621255 0.262773 -0.738236\nvn -0.397456 0.077245 -0.914364\nvn -0.438931 -0.023348 -0.898218\nvn -0.707550 0.053286 -0.704651\nvn -0.707550 0.053286 -0.704651\nvn -0.621255 0.262773 -0.738236\nvn -0.397456 0.077245 -0.914364\nvn -0.438928 -0.132973 -0.888629\nvn -0.397449 -0.234844 -0.887064\nvn -0.621251 -0.386955 -0.681405\nvn -0.397449 -0.234844 -0.887064\nvn -0.320881 -0.313496 -0.893731\nvn -0.461762 -0.550758 -0.695299\nvn -0.461762 -0.550758 -0.695299\nvn -0.621251 -0.386955 -0.681405\nvn -0.397449 -0.234844 -0.887064\nvn -0.220748 -0.356987 -0.907651\nvn -0.112431 -0.358657 -0.926674\nvn -0.027803 -0.644745 -0.763892\nvn -0.112431 -0.358657 -0.926674\nvn -0.012330 -0.318227 -0.947935\nvn 0.180550 -0.560633 -0.808141\nvn 0.180550 -0.560633 -0.808141\nvn -0.027803 -0.644745 -0.763892\nvn -0.112431 -0.358657 -0.926674\nvn 0.064243 -0.241927 -0.968165\nvn 0.105718 -0.141334 -0.984301\nvn 0.426411 -0.192269 -0.883859\nvn 0.105718 -0.141334 -0.984301\nvn 0.105719 -0.031740 -0.993889\nvn 0.426386 0.035830 -0.903831\nvn 0.426386 0.035830 -0.903831\nvn 0.426411 -0.192269 -0.883859\nvn 0.105718 -0.141334 -0.984301\nvn 0.064212 0.070133 -0.995469\nvn -0.012360 0.148811 -0.988788\nvn 0.180550 0.411761 -0.893227\nvn -0.012360 0.148811 -0.988788\nvn -0.112373 0.192273 -0.974886\nvn -0.027803 0.502313 -0.864239\nvn -0.253401 0.505794 -0.824597\nvn -0.027803 0.502313 -0.864239\nvn -0.112373 0.192273 -0.974886\nvn -0.112373 0.192273 -0.974886\nvn -0.220744 0.193948 -0.955854\nvn -0.253401 0.505794 -0.824597\nvn -0.461721 0.421650 -0.780400\nvn -0.253401 0.505794 -0.824597\nvn -0.220744 0.193948 -0.955854\nvn -0.220744 0.193948 -0.955854\nvn -0.320880 0.153542 -0.934591\nvn -0.461721 0.421650 -0.780400\nvn -0.621255 0.262773 -0.738236\nvn -0.461721 0.421650 -0.780400\nvn -0.320880 0.153542 -0.934591\nvn -0.027803 0.502313 -0.864239\nvn 0.180550 0.411761 -0.893227\nvn -0.012360 0.148811 -0.988788\nvn -0.027803 0.502313 -0.864239\nvn -0.253401 0.505794 -0.824597\nvn -0.258864 0.648319 -0.716011\nvn -0.258864 0.648319 -0.716011\nvn -0.253401 0.505794 -0.824597\nvn -0.461721 0.421650 -0.780400\nvn -0.258864 0.648319 -0.716011\nvn 0.018586 0.644070 -0.764741\nvn -0.027803 0.502313 -0.864239\nvn -0.461721 0.421650 -0.780400\nvn -0.515167 0.544801 -0.661660\nvn -0.258864 0.648319 -0.716011\nvn -0.515167 0.544801 -0.661660\nvn -0.461721 0.421650 -0.780400\nvn -0.621255 0.262773 -0.738236\nvn -0.621255 0.262773 -0.738236\nvn -0.711472 0.349357 -0.609719\nvn -0.515167 0.544801 -0.661660\nvn -0.711472 0.349357 -0.609719\nvn -0.621255 0.262773 -0.738236\nvn -0.707550 0.053286 -0.704651\nvn -0.707550 0.053286 -0.704651\nvn -0.817599 0.091678 -0.568443\nvn -0.711472 0.349357 -0.609719\nvn -0.817599 0.091678 -0.568443\nvn -0.707550 0.053286 -0.704651\nvn -0.707550 -0.174843 -0.684692\nvn -0.707550 -0.174843 -0.684692\nvn -0.707550 0.053286 -0.704651\nvn -0.438931 -0.023348 -0.898218\nvn -0.438931 -0.023348 -0.898218\nvn -0.438928 -0.132973 -0.888629\nvn -0.707550 -0.174843 -0.684692\nvn -0.621251 -0.386955 -0.681405\nvn -0.707550 -0.174843 -0.684692\nvn -0.438928 -0.132973 -0.888629\nvn -0.707550 -0.174843 -0.684692\nvn -0.817584 -0.188976 -0.543916\nvn -0.817599 0.091678 -0.568443\nvn -0.817584 -0.188976 -0.543916\nvn -0.707550 -0.174843 -0.684692\nvn -0.621251 -0.386955 -0.681405\nvn -0.621251 -0.386955 -0.681405\nvn -0.711407 -0.449948 -0.539858\nvn -0.817584 -0.188976 -0.543916\nvn -0.711407 -0.449948 -0.539858\nvn -0.621251 -0.386955 -0.681405\nvn -0.461762 -0.550758 -0.695299\nvn -0.461762 -0.550758 -0.695299\nvn -0.515231 -0.651441 -0.556921\nvn -0.711407 -0.449948 -0.539858\nvn -0.515231 -0.651441 -0.556921\nvn -0.461762 -0.550758 -0.695299\nvn -0.253341 -0.641304 -0.724256\nvn -0.253341 -0.641304 -0.724256\nvn -0.461762 -0.550758 -0.695299\nvn -0.320881 -0.313496 -0.893731\nvn -0.320881 -0.313496 -0.893731\nvn -0.220748 -0.356987 -0.907651\nvn -0.253341 -0.641304 -0.724256\nvn -0.027803 -0.644745 -0.763892\nvn -0.253341 -0.641304 -0.724256\nvn -0.220748 -0.356987 -0.907651\nvn -0.253341 -0.641304 -0.724256\nvn -0.258834 -0.762830 -0.592532\nvn -0.515231 -0.651441 -0.556921\nvn -0.258834 -0.762830 -0.592532\nvn -0.253341 -0.641304 -0.724256\nvn -0.027803 -0.644745 -0.763892\nvn -0.027803 -0.644745 -0.763892\nvn 0.018586 -0.767039 -0.641331\nvn -0.258834 -0.762830 -0.592532\nvn 0.018586 -0.767039 -0.641331\nvn -0.027803 -0.644745 -0.763892\nvn 0.180550 -0.560633 -0.808141\nvn 0.180550 -0.560633 -0.808141\nvn 0.274982 -0.663589 -0.695726\nvn 0.018586 -0.767039 -0.641331\nvn 0.274982 -0.663589 -0.695726\nvn 0.180550 -0.560633 -0.808141\nvn 0.340110 -0.401759 -0.850244\nvn 0.340110 -0.401759 -0.850244\nvn 0.180550 -0.560633 -0.808141\nvn -0.012330 -0.318227 -0.947935\nvn -0.012330 -0.318227 -0.947935\nvn 0.064243 -0.241927 -0.968165\nvn 0.340110 -0.401759 -0.850244\nvn 0.426411 -0.192269 -0.883859\nvn 0.340110 -0.401759 -0.850244\nvn 0.064243 -0.241927 -0.968165\nvn 0.340110 -0.401759 -0.850244\nvn 0.471250 -0.468136 -0.747511\nvn 0.274982 -0.663589 -0.695726\nvn 0.471250 -0.468136 -0.747511\nvn 0.340110 -0.401759 -0.850244\nvn 0.426411 -0.192269 -0.883859\nvn 0.426411 -0.192269 -0.883859\nvn 0.577365 -0.210461 -0.788895\nvn 0.471250 -0.468136 -0.747511\nvn 0.577365 -0.210461 -0.788895\nvn 0.426411 -0.192269 -0.883859\nvn 0.426386 0.035830 -0.903831\nvn 0.426386 0.035830 -0.903831\nvn 0.577364 0.070225 -0.813461\nvn 0.577365 -0.210461 -0.788895\nvn 0.577364 0.070225 -0.813461\nvn 0.426386 0.035830 -0.903831\nvn 0.340071 0.247996 -0.907111\nvn 0.340071 0.247996 -0.907111\nvn 0.426386 0.035830 -0.903831\nvn 0.105719 -0.031740 -0.993889\nvn 0.105719 -0.031740 -0.993889\nvn 0.064212 0.070133 -0.995469\nvn 0.340071 0.247996 -0.907111\nvn 0.180550 0.411761 -0.893227\nvn 0.340071 0.247996 -0.907111\nvn 0.064212 0.070133 -0.995469\nvn 0.340071 0.247996 -0.907111\nvn 0.471152 0.331192 -0.817513\nvn 0.577364 0.070225 -0.813461\nvn 0.471152 0.331192 -0.817513\nvn 0.340071 0.247996 -0.907111\nvn 0.180550 0.411761 -0.893227\nvn 0.180550 0.411761 -0.893227\nvn 0.274948 0.532652 -0.800428\nvn 0.471152 0.331192 -0.817513\nvn 0.274948 0.532652 -0.800428\nvn 0.180550 0.411761 -0.893227\nvn -0.027803 0.502313 -0.864239\nvn -0.027803 0.502313 -0.864239\nvn 0.018586 0.644070 -0.764741\nvn 0.274948 0.532652 -0.800428\nvn -0.594811 -0.000000 0.803865\nvn -0.594846 -0.000000 0.803840\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594811 -0.000000 0.803865\nvn -0.594811 -0.000000 0.803865\nvn -0.594826 -0.000000 0.803854\nvn -0.594846 -0.000000 0.803840\nvn -0.594880 -0.000000 0.803814\nvn -0.594880 -0.000000 0.803814\nvn -0.594846 -0.000000 0.803840\nvn -0.594846 -0.000000 0.803840\nvn -0.594846 -0.000000 0.803840\nvn -0.594846 -0.000000 0.803840\nvn -0.594880 -0.000000 0.803814\nvn -0.594880 -0.000000 0.803814\nvn -0.594846 -0.000000 0.803840\nvn -0.594846 -0.000000 0.803840\nvn -0.594846 -0.000000 0.803840\nvn -0.594846 -0.000000 0.803840\nvn -0.594880 -0.000000 0.803814\nvn -0.594826 -0.000000 0.803854\nvn -0.594846 -0.000000 0.803840\nvn -0.594846 -0.000000 0.803840\nvn -0.594846 -0.000000 0.803840\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594880 -0.000000 0.803814\nvn -0.594880 -0.000000 0.803814\nvn -0.594880 -0.000000 0.803814\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.594811 -0.000000 0.803865\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594811 -0.000000 0.803865\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594846 -0.000000 0.803840\nvn -0.594811 -0.000000 0.803865\nvn -0.594811 -0.000000 0.803865\nvn -0.594811 -0.000000 0.803865\nvn -0.594846 -0.000000 0.803840\nvn -0.594846 -0.000000 0.803840\nvn -0.594846 -0.000000 0.803840\nvn -0.594811 -0.000000 0.803865\nvn -0.594811 -0.000000 0.803865\nvn -0.594811 -0.000000 0.803865\nvn -0.594846 -0.000000 0.803840\nvn -0.594826 -0.000000 0.803854\nvn -0.594811 -0.000000 0.803865\nvn -0.594811 -0.000000 0.803865\nvn -0.594846 -0.000000 0.803840\nvn -0.594811 -0.000000 0.803865\nvn -0.594811 -0.000000 0.803865\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn -0.594826 -0.000000 0.803854\nvn 0.803865 0.000000 0.594811\nvn 0.803865 0.000000 0.594811\nvn 0.803865 0.000000 0.594811\nvn 0.803865 0.000000 0.594811\nvn 0.803865 0.000000 0.594811\nvn 0.803865 0.000000 0.594811\nvn 0.152505 0.981841 0.112830\nvn 0.152506 0.981848 0.112770\nvn 0.152506 0.981844 0.112800\nvn 0.152506 0.981844 0.112800\nvn 0.152505 0.981841 0.112830\nvn 0.152505 0.981841 0.112830\nvn -0.803865 -0.000000 -0.594811\nvn -0.803865 -0.000000 -0.594811\nvn -0.803865 -0.000000 -0.594811\nvn -0.803865 -0.000000 -0.594811\nvn -0.803865 -0.000000 -0.594811\nvn -0.803865 -0.000000 -0.594811\nvn -0.152505 -0.981841 -0.112830\nvn -0.152505 -0.981841 -0.112830\nvn -0.152505 -0.981841 -0.112830\nvn -0.152505 -0.981841 -0.112830\nvn -0.152505 -0.981841 -0.112830\nvn -0.152505 -0.981841 -0.112830\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594846 0.000000 0.803840\nvn 0.594826 0.000000 0.803854\nvn 0.594860 0.000000 0.803829\nvn 0.594846 0.000000 0.803840\nvn 0.594826 0.000000 0.803854\nvn 0.594846 0.000000 0.803840\nvn 0.594846 0.000000 0.803840\nvn 0.594860 0.000000 0.803829\nvn 0.594860 0.000000 0.803829\nvn 0.594846 0.000000 0.803840\nvn 0.594846 0.000000 0.803840\nvn 0.594846 0.000000 0.803840\nvn 0.594846 0.000000 0.803840\nvn 0.594880 0.000000 0.803814\nvn 0.594880 0.000000 0.803814\nvn 0.594846 0.000000 0.803840\nvn 0.594846 0.000000 0.803840\nvn 0.594846 0.000000 0.803840\nvn 0.594846 0.000000 0.803840\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594811 0.000000 0.803865\nvn 0.594846 0.000000 0.803840\nvn 0.594880 0.000000 0.803814\nvn 0.594880 0.000000 0.803814\nvn 0.594880 0.000000 0.803814\nvn 0.594811 0.000000 0.803865\nvn 0.594811 0.000000 0.803865\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594811 0.000000 0.803865\nvn 0.594811 0.000000 0.803865\nvn 0.594811 0.000000 0.803865\nvn 0.594826 0.000000 0.803854\nvn 0.594846 0.000000 0.803840\nvn 0.594811 0.000000 0.803865\nvn 0.594846 0.000000 0.803840\nvn 0.594811 0.000000 0.803865\nvn 0.594811 0.000000 0.803865\nvn 0.594811 0.000000 0.803865\nvn 0.594811 0.000000 0.803865\nvn 0.594811 0.000000 0.803865\nvn 0.594846 0.000000 0.803840\nvn 0.594846 0.000000 0.803840\nvn 0.594846 0.000000 0.803840\nvn 0.594811 0.000000 0.803865\nvn 0.594811 0.000000 0.803865\nvn 0.594846 0.000000 0.803840\nvn 0.594811 0.000000 0.803865\nvn 0.594811 0.000000 0.803865\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn 0.594826 0.000000 0.803854\nvn -0.803865 -0.000000 0.594811\nvn -0.803865 -0.000000 0.594811\nvn -0.803865 -0.000000 0.594811\nvn -0.803865 -0.000000 0.594811\nvn -0.803865 -0.000000 0.594811\nvn -0.803865 -0.000000 0.594811\nvn -0.152506 0.981841 0.112830\nvn -0.152506 0.981841 0.112830\nvn -0.152506 0.981844 0.112800\nvn -0.152506 0.981844 0.112800\nvn -0.152537 0.981843 0.112769\nvn -0.152506 0.981841 0.112830\nvn 0.803854 0.000000 -0.594826\nvn 0.803854 0.000000 -0.594826\nvn 0.803854 0.000000 -0.594826\nvn 0.803854 0.000000 -0.594826\nvn 0.803854 0.000000 -0.594826\nvn 0.803854 0.000000 -0.594826\nvn 0.152506 -0.981841 -0.112830\nvn 0.152506 -0.981841 -0.112830\nvn 0.152506 -0.981841 -0.112830\nvn 0.152506 -0.981841 -0.112830\nvn 0.152506 -0.981841 -0.112830\nvn 0.152506 -0.981841 -0.112830\nvn 0.403864 -0.187145 -0.895472\nvn 0.376276 -0.160472 -0.912505\nvn 0.372483 -0.163673 -0.913492\nvn 0.372483 -0.163673 -0.913492\nvn 0.387167 -0.152993 -0.909228\nvn 0.403864 -0.187145 -0.895472\nvn 0.425197 -0.187389 -0.885490\nvn 0.376276 -0.160472 -0.912505\nvn 0.403864 -0.187145 -0.895472\nvn 0.403864 -0.187145 -0.895472\nvn 0.440151 -0.190594 -0.877463\nvn 0.425197 -0.187389 -0.885490\nvn 0.430844 -0.168956 -0.886469\nvn 0.425197 -0.187389 -0.885490\nvn 0.440151 -0.190594 -0.877463\nvn 0.440151 -0.190594 -0.877463\nvn 0.425589 -0.166604 -0.889448\nvn 0.430844 -0.168956 -0.886469\nvn 0.419728 -0.176766 -0.890271\nvn 0.430844 -0.168956 -0.886469\nvn 0.425589 -0.166604 -0.889448\nvn 0.425589 -0.166604 -0.889448\nvn 0.411463 -0.175029 -0.894463\nvn 0.419728 -0.176766 -0.890271\nvn 0.401605 -0.170970 -0.899713\nvn 0.419728 -0.176766 -0.890271\nvn 0.411463 -0.175029 -0.894463\nvn 0.411463 -0.175029 -0.894463\nvn 0.396348 -0.151618 -0.905494\nvn 0.401605 -0.170970 -0.899713\nvn 0.387436 -0.141424 -0.910985\nvn 0.401605 -0.170970 -0.899713\nvn 0.396348 -0.151618 -0.905494\nvn 0.396348 -0.151618 -0.905494\nvn 0.382830 -0.123632 -0.915509\nvn 0.387436 -0.141424 -0.910985\nvn 0.374805 -0.118658 -0.919479\nvn 0.387436 -0.141424 -0.910985\nvn 0.382830 -0.123632 -0.915509\nvn 0.382830 -0.123632 -0.915509\nvn 0.397694 -0.094457 -0.912643\nvn 0.374805 -0.118658 -0.919479\nvn 0.459708 -0.140387 -0.876903\nvn 0.387167 -0.152993 -0.909228\nvn 0.372483 -0.163673 -0.913492\nvn 0.372483 -0.163673 -0.913492\nvn 0.386283 -0.204052 -0.899527\nvn 0.459708 -0.140387 -0.876903\nvn 0.487112 -0.129705 -0.863654\nvn 0.459708 -0.140387 -0.876903\nvn 0.386283 -0.204052 -0.899527\nvn 0.487112 -0.129705 -0.863654\nvn 0.483427 -0.127723 -0.866017\nvn 0.459708 -0.140387 -0.876903\nvn 0.487112 -0.129705 -0.863654\nvn 0.386283 -0.204052 -0.899527\nvn 0.492183 -0.136482 -0.859726\nvn 0.487112 -0.129705 -0.863654\nvn 0.492183 -0.136482 -0.859726\nvn 0.493350 -0.081609 -0.865994\nvn 0.493350 -0.081609 -0.865994\nvn 0.374805 -0.118658 -0.919479\nvn 0.397694 -0.094457 -0.912643\nvn 0.487112 -0.129705 -0.863654\nvn 0.493350 -0.081609 -0.865994\nvn 0.465053 -0.077122 -0.881917\nvn 0.397694 -0.094457 -0.912643\nvn 0.435845 -0.081883 -0.896289\nvn 0.493350 -0.081609 -0.865994\nvn 0.493350 -0.081609 -0.865994\nvn 0.435845 -0.081883 -0.896289\nvn 0.465053 -0.077122 -0.881917\nvn 0.379590 0.923311 0.058382\nvn 0.267104 0.956840 0.114508\nvn 0.298872 0.915021 0.270948\nvn 0.298872 0.915021 0.270948\nvn 0.417747 0.883318 0.212688\nvn 0.379590 0.923311 0.058382\nvn 0.176276 0.958534 -0.223916\nvn 0.379590 0.923311 0.058382\nvn 0.417747 0.883318 0.212688\nvn 0.417747 0.883318 0.212688\nvn 0.267225 0.961625 -0.062198\nvn 0.176276 0.958534 -0.223916\nvn 0.298872 0.915021 0.270948\nvn 0.267104 0.956840 0.114508\nvn 0.091496 0.986652 0.134711\nvn 0.091496 0.986652 0.134711\nvn 0.149910 0.933246 0.326464\nvn 0.298872 0.915021 0.270948\nvn -0.081394 0.814949 -0.573788\nvn -0.047794 0.871086 -0.488800\nvn -0.058536 0.915581 -0.397851\nvn -0.058536 0.915581 -0.397851\nvn -0.121437 0.855486 -0.503385\nvn -0.081394 0.814949 -0.573788\nvn -0.123388 0.717409 -0.685639\nvn -0.081394 0.814949 -0.573788\nvn -0.121437 0.855486 -0.503385\nvn -0.121437 0.855486 -0.503385\nvn -0.247967 0.727145 -0.640135\nvn -0.123388 0.717409 -0.685639\nvn -0.120430 0.856739 -0.501494\nvn -0.033938 0.911484 -0.409933\nvn 0.176276 0.958534 -0.223916\nvn -0.120430 0.856739 -0.501494\nvn -0.121437 0.855486 -0.503385\nvn -0.058536 0.915581 -0.397851\nvn -0.058536 0.915581 -0.397851\nvn -0.033938 0.911484 -0.409933\nvn -0.120430 0.856739 -0.501494\nvn 0.176276 0.958534 -0.223916\nvn -0.096135 0.899275 -0.426687\nvn -0.120430 0.856739 -0.501494\nvn -0.120430 0.856739 -0.501494\nvn -0.096135 0.899275 -0.426687\nvn -0.192240 0.864028 -0.465295\nvn -0.197920 0.894375 -0.401149\nvn -0.192240 0.864028 -0.465295\nvn -0.096135 0.899275 -0.426687\nvn -0.096135 0.899275 -0.426687\nvn -0.109839 0.922228 -0.370716\nvn -0.197920 0.894375 -0.401149\nvn -0.109839 0.922228 -0.370716\nvn -0.096135 0.899275 -0.426687\nvn 0.176276 0.958534 -0.223916\nvn -0.197920 0.894375 -0.401149\nvn -0.109839 0.922228 -0.370716\nvn -0.074804 0.948638 -0.307393\nvn -0.074804 0.948638 -0.307393\nvn -0.206154 0.916171 -0.343702\nvn -0.197920 0.894375 -0.401149\nvn -0.206154 0.916171 -0.343702\nvn -0.074804 0.948638 -0.307393\nvn -0.055148 0.995925 -0.071353\nvn 0.032167 0.990610 -0.132879\nvn -0.055148 0.995925 -0.071353\nvn -0.074804 0.948638 -0.307393\nvn -0.074804 0.948638 -0.307393\nvn 0.110539 0.965467 -0.235912\nvn 0.032167 0.990610 -0.132879\nvn 0.110539 0.965467 -0.235912\nvn -0.074804 0.948638 -0.307393\nvn -0.109839 0.922228 -0.370716\nvn -0.055148 0.995925 -0.071353\nvn -0.317097 0.937830 -0.141152\nvn -0.206154 0.916171 -0.343702\nvn -0.109839 0.922228 -0.370716\nvn 0.154032 0.959503 -0.235855\nvn 0.110539 0.965467 -0.235912\nvn 0.110539 0.965467 -0.235912\nvn 0.154032 0.959503 -0.235855\nvn 0.255473 0.959024 -0.122503\nvn 0.255473 0.959024 -0.122503\nvn 0.450007 0.891195 -0.057132\nvn 0.110539 0.965467 -0.235912\nvn 0.032167 0.990610 -0.132879\nvn 0.110539 0.965467 -0.235912\nvn 0.450007 0.891195 -0.057132\nvn 0.450007 0.891195 -0.057132\nvn 0.545443 0.832174 -0.099890\nvn 0.032167 0.990610 -0.132879\nvn 0.873099 0.475310 -0.108527\nvn 0.790502 0.589810 -0.165016\nvn 0.764574 0.618997 -0.179638\nvn 0.318346 0.912618 -0.256484\nvn 0.566278 0.787175 -0.244304\nvn 0.407674 0.849225 -0.335588\nvn 0.486934 0.789959 -0.372640\nvn 0.407674 0.849225 -0.335588\nvn 0.566278 0.787175 -0.244304\nvn 0.566278 0.787175 -0.244304\nvn 0.523251 0.779979 -0.343280\nvn 0.486934 0.789959 -0.372640\nvn 0.176276 0.958534 -0.223916\nvn 0.154032 0.959503 -0.235855\nvn -0.109839 0.922228 -0.370716\nvn 0.340142 0.835568 -0.431427\nvn 0.486934 0.789959 -0.372640\nvn 0.523251 0.779979 -0.343280\nvn 0.523251 0.779979 -0.343280\nvn 0.380082 0.825291 -0.417651\nvn 0.340142 0.835568 -0.431427\nvn 0.343498 0.796348 -0.497835\nvn 0.340142 0.835568 -0.431427\nvn 0.380082 0.825291 -0.417651\nvn 0.380082 0.825291 -0.417651\nvn 0.400415 0.782214 -0.477294\nvn 0.343498 0.796348 -0.497835\nvn 0.343498 0.796348 -0.497835\nvn 0.400415 0.782214 -0.477294\nvn 0.760640 0.450317 -0.467591\nvn 0.154032 0.959503 -0.235855\nvn 0.176276 0.958534 -0.223916\nvn 0.267225 0.961625 -0.062198\nvn 0.267225 0.961625 -0.062198\nvn 0.255473 0.959024 -0.122503\nvn 0.154032 0.959503 -0.235855\nvn -0.496450 0.781617 -0.377640\nvn -0.206154 0.916171 -0.343702\nvn -0.317097 0.937830 -0.141152\nvn -0.317097 0.937830 -0.141152\nvn -0.719003 0.647404 -0.252791\nvn -0.496450 0.781617 -0.377640\nvn -0.719655 0.542426 -0.433441\nvn -0.496450 0.781617 -0.377640\nvn -0.719003 0.647404 -0.252791\nvn -0.719003 0.647404 -0.252791\nvn -0.856478 0.459856 -0.234475\nvn -0.719655 0.542426 -0.433441\nvn -0.496450 0.781617 -0.377640\nvn -0.719655 0.542426 -0.433441\nvn -0.726516 0.529879 -0.437497\nvn -0.496450 0.781617 -0.377640\nvn -0.254713 0.885085 -0.389546\nvn -0.206154 0.916171 -0.343702\nvn -0.254713 0.885085 -0.389546\nvn -0.197920 0.894375 -0.401149\nvn -0.206154 0.916171 -0.343702\nvn -0.197920 0.894375 -0.401149\nvn -0.254713 0.885085 -0.389546\nvn -0.205733 0.866023 -0.455718\nvn -0.205733 0.866023 -0.455718\nvn -0.192240 0.864028 -0.465295\nvn -0.197920 0.894375 -0.401149\nvn -0.192240 0.864028 -0.465295\nvn -0.205733 0.866023 -0.455718\nvn -0.290539 0.754089 -0.589013\nvn -0.290539 0.754089 -0.589013\nvn -0.276288 0.757144 -0.591945\nvn -0.192240 0.864028 -0.465295\nvn -0.192240 0.864028 -0.465295\nvn -0.276288 0.757144 -0.591945\nvn -0.120430 0.856739 -0.501494\nvn -0.121437 0.855486 -0.503385\nvn -0.120430 0.856739 -0.501494\nvn -0.276288 0.757144 -0.591945\nvn -0.276288 0.757144 -0.591945\nvn -0.247967 0.727145 -0.640135\nvn -0.121437 0.855486 -0.503385\nvn -0.258042 0.719984 -0.644235\nvn -0.247967 0.727145 -0.640135\nvn -0.276288 0.757144 -0.591945\nvn -0.276288 0.757144 -0.591945\nvn -0.290539 0.754089 -0.589013\nvn -0.258042 0.719984 -0.644235\nvn -0.247967 0.727145 -0.640135\nvn -0.258042 0.719984 -0.644235\nvn -0.132578 0.708423 -0.693224\nvn 0.151740 -0.988382 -0.008698\nvn 0.000000 -0.999938 -0.011109\nvn 0.003663 -0.999978 -0.005554\nvn 0.151740 -0.988382 -0.008698\nvn 0.003663 -0.999978 -0.005554\nvn 0.037142 -0.999283 0.007386\nvn 0.151740 -0.988382 -0.008698\nvn 0.037142 -0.999283 0.007386\nvn 0.131812 -0.991044 0.021394\nvn 0.000000 -1.000000 0.000336\nvn 0.037142 -0.999283 0.007386\nvn 0.003663 -0.999978 -0.005554\nvn 0.037142 -0.999283 0.007386\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000092\nvn 0.000000 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000397\nvn 0.003663 -0.999978 -0.005554\nvn 0.000000 -1.000000 0.000397\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000397\nvn 0.000000 -1.000000 0.000397\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000397\nvn 0.000000 -1.000000 0.000397\nvn 0.000000 -1.000000 0.000397\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000092\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000122\nvn -0.000030 -1.000000 0.000122\nvn 0.037142 -0.999283 0.007386\nvn -0.000030 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.000030 -1.000000 0.000122\nvn -0.000030 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.115790 -0.993274 0.000427\nvn -0.000030 -1.000000 0.000122\nvn 0.115790 -0.993274 0.000427\nvn 0.037142 -0.999283 0.007386\nvn -0.000030 -1.000000 0.000122\nvn 0.115790 -0.993274 0.000427\nvn 0.131812 -0.991044 0.021394\nvn 0.037142 -0.999283 0.007386\nvn 0.356616 -0.933824 -0.028261\nvn 0.151740 -0.988382 -0.008698\nvn 0.131812 -0.991044 0.021394\nvn 0.131812 -0.991044 0.021394\nvn 0.115790 -0.993274 0.000427\nvn 0.356616 -0.933824 -0.028261\nvn 0.869071 -0.480284 -0.118507\nvn 0.903249 -0.408958 -0.129982\nvn 0.851341 -0.405176 -0.333242\nvn 0.851341 -0.405176 -0.333242\nvn 0.876020 -0.461510 -0.139991\nvn 0.869071 -0.480284 -0.118507\nvn 0.908965 -0.384760 -0.160442\nvn 0.876020 -0.461510 -0.139991\nvn 0.851341 -0.405176 -0.333242\nvn 0.851341 -0.405176 -0.333242\nvn 0.844525 -0.370898 -0.386280\nvn 0.908965 -0.384760 -0.160442\nvn 0.912829 -0.377552 -0.155556\nvn 0.908965 -0.384760 -0.160442\nvn 0.844525 -0.370898 -0.386280\nvn 0.844525 -0.370898 -0.386280\nvn 0.897939 -0.419426 -0.133369\nvn 0.912829 -0.377552 -0.155556\nvn 0.956808 0.272720 -0.100713\nvn 0.956865 0.273909 -0.096868\nvn 0.963400 0.231763 -0.134712\nvn 0.963400 0.231763 -0.134712\nvn 0.966081 0.222393 -0.131262\nvn 0.956808 0.272720 -0.100713\nvn 0.971799 0.163432 -0.169993\nvn 0.966081 0.222393 -0.131262\nvn 0.963400 0.231763 -0.134712\nvn 0.963400 0.231763 -0.134712\nvn 0.969771 0.168221 -0.176766\nvn 0.971799 0.163432 -0.169993\nvn 0.968431 0.113043 -0.222179\nvn 0.971799 0.163432 -0.169993\nvn 0.969771 0.168221 -0.176766\nvn 0.969771 0.168221 -0.176766\nvn 0.966751 0.114569 -0.228618\nvn 0.968431 0.113043 -0.222179\nvn 0.949658 -0.127691 -0.286085\nvn 0.968431 0.113043 -0.222179\nvn 0.966751 0.114569 -0.228618\nvn 0.966751 0.114569 -0.228618\nvn 0.952857 -0.087161 -0.290630\nvn 0.949658 -0.127691 -0.286085\nvn 0.553426 0.732846 -0.395797\nvn 0.555026 0.729537 -0.399652\nvn 0.594849 0.728798 -0.339129\nvn 0.594849 0.728798 -0.339129\nvn 0.579496 0.740027 -0.341386\nvn 0.553426 0.732846 -0.395797\nvn 0.579496 0.740027 -0.341386\nvn 0.594849 0.728798 -0.339129\nvn 0.633772 0.705494 -0.317192\nvn 0.633772 0.705494 -0.317192\nvn 0.633625 0.705927 -0.316523\nvn 0.579496 0.740027 -0.341386\nvn 0.869624 -0.414669 -0.267962\nvn 0.869456 -0.415241 -0.267621\nvn 0.852132 -0.441005 -0.281755\nvn 0.852132 -0.441005 -0.281755\nvn 0.852025 -0.440844 -0.282330\nvn 0.869624 -0.414669 -0.267962\nvn 0.901019 -0.341693 -0.267226\nvn 0.869456 -0.415241 -0.267621\nvn 0.869624 -0.414669 -0.267962\nvn 0.869624 -0.414669 -0.267962\nvn 0.896531 -0.353534 -0.266921\nvn 0.901019 -0.341693 -0.267226\nvn 0.901019 -0.341693 -0.267226\nvn 0.896531 -0.353534 -0.266921\nvn 0.949658 -0.127691 -0.286085\nvn 0.949658 -0.127691 -0.286085\nvn 0.952857 -0.087161 -0.290630\nvn 0.901019 -0.341693 -0.267226\nvn 0.953610 0.289935 0.081029\nvn 0.954807 0.281260 0.096103\nvn 0.961272 0.252702 0.109992\nvn 0.961272 0.252702 0.109992\nvn 0.961990 0.256116 0.094762\nvn 0.953610 0.289935 0.081029\nvn 0.954247 0.248794 0.165872\nvn 0.961272 0.252702 0.109992\nvn 0.954807 0.281260 0.096103\nvn 0.954807 0.281260 0.096103\nvn 0.948502 0.273421 0.159950\nvn 0.954247 0.248794 0.165872\nvn 0.961272 0.252702 0.109992\nvn 0.954247 0.248794 0.165872\nvn 0.966694 0.177072 0.184793\nvn 0.966694 0.177072 0.184793\nvn 0.974440 0.182199 0.131415\nvn 0.961272 0.252702 0.109992\nvn 0.975124 0.186565 0.119697\nvn 0.961990 0.256116 0.094762\nvn 0.961272 0.252702 0.109992\nvn 0.961272 0.252702 0.109992\nvn 0.974440 0.182199 0.131415\nvn 0.975124 0.186565 0.119697\nvn 0.954247 0.248794 0.165872\nvn 0.948502 0.273421 0.159950\nvn 0.922013 0.304947 0.238537\nvn 0.922013 0.304947 0.238537\nvn 0.930479 0.279345 0.237014\nvn 0.954247 0.248794 0.165872\nvn 0.930479 0.279345 0.237014\nvn 0.922013 0.304947 0.238537\nvn 0.786758 0.577426 0.218152\nvn 0.786758 0.577426 0.218152\nvn 0.891189 0.339373 0.301010\nvn 0.930479 0.279345 0.237014\nvn 0.891189 0.339373 0.301010\nvn 0.786758 0.577426 0.218152\nvn 0.734141 0.596927 0.323596\nvn 0.734141 0.596927 0.323596\nvn 0.811450 0.426784 0.399255\nvn 0.891189 0.339373 0.301010\nvn 0.685249 0.496213 0.533110\nvn 0.811450 0.426784 0.399255\nvn 0.734141 0.596927 0.323596\nvn 0.734141 0.596927 0.323596\nvn 0.604252 0.657905 0.449489\nvn 0.685249 0.496213 0.533110\nvn 0.575378 0.515836 0.634708\nvn 0.685249 0.496213 0.533110\nvn 0.604252 0.657905 0.449489\nvn 0.604252 0.657905 0.449489\nvn 0.523623 0.666730 0.530368\nvn 0.575378 0.515836 0.634708\nvn 0.685249 0.496213 0.533110\nvn 0.575378 0.515836 0.634708\nvn 0.598108 0.361038 0.715484\nvn 0.598108 0.361038 0.715484\nvn 0.711437 0.369132 0.597996\nvn 0.685249 0.496213 0.533110\nvn 0.811450 0.426784 0.399255\nvn 0.685249 0.496213 0.533110\nvn 0.711437 0.369132 0.597996\nvn 0.711437 0.369132 0.597996\nvn 0.843610 0.329027 0.424338\nvn 0.811450 0.426784 0.399255\nvn 0.981191 0.120673 0.150673\nvn 0.974440 0.182199 0.131415\nvn 0.966694 0.177072 0.184793\nvn 0.966694 0.177072 0.184793\nvn 0.973604 0.106022 0.202125\nvn 0.981191 0.120673 0.150673\nvn 0.981191 0.120673 0.150673\nvn 0.973604 0.106022 0.202125\nvn 0.975372 -0.041506 0.216627\nvn 0.961423 -0.029237 0.273515\nvn 0.975372 -0.041506 0.216627\nvn 0.973604 0.106022 0.202125\nvn 0.973604 0.106022 0.202125\nvn 0.958987 0.117314 0.258035\nvn 0.961423 -0.029237 0.273515\nvn 0.961423 -0.029237 0.273515\nvn 0.958987 0.117314 0.258035\nvn 0.938405 0.133125 0.318865\nvn 0.938405 0.133125 0.318865\nvn 0.941203 -0.029359 0.336563\nvn 0.961423 -0.029237 0.273515\nvn 0.919825 0.243362 0.307727\nvn 0.938405 0.133125 0.318865\nvn 0.958987 0.117314 0.258035\nvn 0.938405 0.133125 0.318865\nvn 0.919825 0.243362 0.307727\nvn 0.843610 0.329027 0.424338\nvn 0.958987 0.117314 0.258035\nvn 0.949088 0.196361 0.246321\nvn 0.919825 0.243362 0.307727\nvn 0.949088 0.196361 0.246321\nvn 0.958987 0.117314 0.258035\nvn 0.973604 0.106022 0.202125\nvn 0.973604 0.106022 0.202125\nvn 0.966694 0.177072 0.184793\nvn 0.949088 0.196361 0.246321\nvn 0.843610 0.329027 0.424338\nvn 0.873494 0.156412 0.461025\nvn 0.938405 0.133125 0.318865\nvn 0.941203 -0.029359 0.336563\nvn 0.938405 0.133125 0.318865\nvn 0.873494 0.156412 0.461025\nvn 0.873494 0.156412 0.461025\nvn 0.876508 -0.035249 0.480096\nvn 0.941203 -0.029359 0.336563\nvn 0.975372 -0.041506 0.216627\nvn 0.979667 -0.117224 0.162820\nvn 0.981191 0.120673 0.150673\nvn 0.876508 -0.035249 0.480096\nvn 0.873494 0.156412 0.461025\nvn 0.747256 0.181893 0.639158\nvn 0.747256 0.181893 0.639158\nvn 0.873494 0.156412 0.461025\nvn 0.843610 0.329027 0.424338\nvn 0.747256 0.181893 0.639158\nvn 0.756261 -0.041475 0.652954\nvn 0.876508 -0.035249 0.480096\nvn 0.645784 -0.043032 0.762306\nvn 0.756261 -0.041475 0.652954\nvn 0.747256 0.181893 0.639158\nvn 0.747256 0.181893 0.639158\nvn 0.627513 0.207838 0.750354\nvn 0.645784 -0.043032 0.762306\nvn 0.891189 0.339373 0.301010\nvn 0.919825 0.243362 0.307727\nvn 0.949088 0.196361 0.246321\nvn 0.949088 0.196361 0.246321\nvn 0.930479 0.279345 0.237014\nvn 0.891189 0.339373 0.301010\nvn 0.919825 0.243362 0.307727\nvn 0.891189 0.339373 0.301010\nvn 0.811450 0.426784 0.399255\nvn 0.811450 0.426784 0.399255\nvn 0.843610 0.329027 0.424338\nvn 0.919825 0.243362 0.307727\nvn 0.645784 -0.043032 0.762306\nvn 0.627513 0.207838 0.750354\nvn 0.475957 0.230272 0.848787\nvn 0.455006 0.374925 0.807713\nvn 0.475957 0.230272 0.848787\nvn 0.627513 0.207838 0.750354\nvn 0.475957 0.230272 0.848787\nvn 0.455006 0.374925 0.807713\nvn 0.223002 0.386249 0.895032\nvn 0.223002 0.386249 0.895032\nvn 0.229507 0.242448 0.942627\nvn 0.475957 0.230272 0.848787\nvn 0.487697 -0.040224 0.872086\nvn 0.475957 0.230272 0.848787\nvn 0.229507 0.242448 0.942627\nvn 0.475957 0.230272 0.848787\nvn 0.487697 -0.040224 0.872086\nvn 0.645784 -0.043032 0.762306\nvn 0.229507 0.242448 0.942627\nvn 0.235483 -0.036378 0.971198\nvn 0.487697 -0.040224 0.872086\nvn 0.216409 0.543723 0.810884\nvn 0.223002 0.386249 0.895032\nvn 0.455006 0.374925 0.807713\nvn 0.455006 0.374925 0.807713\nvn 0.442403 0.533930 0.720554\nvn 0.216409 0.543723 0.810884\nvn 0.210979 0.709051 0.672855\nvn 0.216409 0.543723 0.810884\nvn 0.442403 0.533930 0.720554\nvn 0.442403 0.533930 0.720554\nvn 0.409504 0.687136 0.600126\nvn 0.210979 0.709051 0.672855\nvn 0.627513 0.207838 0.750354\nvn 0.598108 0.361038 0.715484\nvn 0.455006 0.374925 0.807713\nvn 0.598108 0.361038 0.715484\nvn 0.627513 0.207838 0.750354\nvn 0.747256 0.181893 0.639158\nvn 0.747256 0.181893 0.639158\nvn 0.711437 0.369132 0.597996\nvn 0.598108 0.361038 0.715484\nvn 0.843610 0.329027 0.424338\nvn 0.711437 0.369132 0.597996\nvn 0.747256 0.181893 0.639158\nvn 0.523623 0.666730 0.530368\nvn 0.409504 0.687136 0.600126\nvn 0.442403 0.533930 0.720554\nvn 0.442403 0.533930 0.720554\nvn 0.575378 0.515836 0.634708\nvn 0.523623 0.666730 0.530368\nvn 0.455006 0.374925 0.807713\nvn 0.598108 0.361038 0.715484\nvn 0.575378 0.515836 0.634708\nvn 0.575378 0.515836 0.634708\nvn 0.442403 0.533930 0.720554\nvn 0.455006 0.374925 0.807713\nvn -0.000000 0.245127 0.969491\nvn 0.229507 0.242448 0.942627\nvn 0.223002 0.386249 0.895032\nvn 0.235483 -0.036378 0.971198\nvn 0.229507 0.242448 0.942627\nvn -0.000000 0.245127 0.969491\nvn 0.223002 0.386249 0.895032\nvn -0.000000 0.387807 0.921740\nvn -0.000000 0.245127 0.969491\nvn -0.000000 0.387807 0.921740\nvn 0.223002 0.386249 0.895032\nvn 0.216409 0.543723 0.810884\nvn -0.000000 0.245127 0.969491\nvn 0.000000 -0.035249 0.999379\nvn 0.235483 -0.036378 0.971198\nvn -0.000000 0.539972 0.841683\nvn 0.216409 0.543723 0.810884\nvn 0.210979 0.709051 0.672855\nvn 0.216409 0.543723 0.810884\nvn -0.000000 0.539972 0.841683\nvn -0.000000 0.387807 0.921740\nvn 0.210979 0.709051 0.672855\nvn -0.000000 0.710456 0.703742\nvn -0.000000 0.539972 0.841683\nvn 0.523251 0.779979 -0.343280\nvn 0.628419 0.746864 -0.217449\nvn 0.599756 0.752992 -0.270733\nvn 0.599756 0.752992 -0.270733\nvn 0.380082 0.825291 -0.417651\nvn 0.523251 0.779979 -0.343280\nvn 0.682500 0.724495 -0.096441\nvn 0.628419 0.746864 -0.217449\nvn 0.523251 0.779979 -0.343280\nvn 0.523251 0.779979 -0.343280\nvn 0.566278 0.787175 -0.244304\nvn 0.682500 0.724495 -0.096441\nvn 0.674072 0.738651 0.004669\nvn 0.682500 0.724495 -0.096441\nvn 0.566278 0.787175 -0.244304\nvn 0.566278 0.787175 -0.244304\nvn 0.545443 0.832174 -0.099890\nvn 0.674072 0.738651 0.004669\nvn 0.684364 0.714609 -0.144845\nvn 0.628419 0.746864 -0.217449\nvn 0.682500 0.724495 -0.096441\nvn 0.599756 0.752992 -0.270733\nvn 0.628419 0.746864 -0.217449\nvn 0.684364 0.714609 -0.144845\nvn 0.682500 0.724495 -0.096441\nvn 0.713561 0.699981 -0.029268\nvn 0.684364 0.714609 -0.144845\nvn 0.713561 0.699981 -0.029268\nvn 0.682500 0.724495 -0.096441\nvn 0.674072 0.738651 0.004669\nvn 0.684364 0.714609 -0.144845\nvn 0.598236 0.788828 -0.140937\nvn 0.599756 0.752992 -0.270733\nvn 0.674072 0.738651 0.004669\nvn 0.545443 0.832174 -0.099890\nvn 0.450007 0.891195 -0.057132\nvn 0.450007 0.891195 -0.057132\nvn 0.642456 0.760596 0.093510\nvn 0.674072 0.738651 0.004669\nvn 0.686191 0.725042 0.058780\nvn 0.674072 0.738651 0.004669\nvn 0.642456 0.760596 0.093510\nvn 0.674072 0.738651 0.004669\nvn 0.686191 0.725042 0.058780\nvn 0.713561 0.699981 -0.029268\nvn 0.642456 0.760596 0.093510\nvn 0.786758 0.577426 0.218152\nvn 0.686191 0.725042 0.058780\nvn 0.734141 0.596927 0.323596\nvn 0.786758 0.577426 0.218152\nvn 0.642456 0.760596 0.093510\nvn 0.642456 0.760596 0.093510\nvn 0.612516 0.771490 0.172127\nvn 0.734141 0.596927 0.323596\nvn 0.612516 0.771490 0.172127\nvn 0.642456 0.760596 0.093510\nvn 0.450007 0.891195 -0.057132\nvn 0.450007 0.891195 -0.057132\nvn 0.638585 0.759350 0.124885\nvn 0.612516 0.771490 0.172127\nvn 0.519439 0.802720 0.292955\nvn 0.612516 0.771490 0.172127\nvn 0.638585 0.759350 0.124885\nvn 0.734141 0.596927 0.323596\nvn 0.612516 0.771490 0.172127\nvn 0.519439 0.802720 0.292955\nvn 0.638585 0.759350 0.124885\nvn 0.577848 0.782753 0.231060\nvn 0.519439 0.802720 0.292955\nvn 0.497276 0.770697 0.398426\nvn 0.519439 0.802720 0.292955\nvn 0.577848 0.782753 0.231060\nvn 0.577848 0.782753 0.231060\nvn 0.417747 0.883318 0.212688\nvn 0.497276 0.770697 0.398426\nvn 0.519439 0.802720 0.292955\nvn 0.497276 0.770697 0.398426\nvn 0.523623 0.666730 0.530368\nvn 0.523623 0.666730 0.530368\nvn 0.497276 0.770697 0.398426\nvn 0.356859 0.810891 0.463798\nvn 0.356859 0.810891 0.463798\nvn 0.409504 0.687136 0.600126\nvn 0.523623 0.666730 0.530368\nvn 0.210979 0.709051 0.672855\nvn 0.409504 0.687136 0.600126\nvn 0.356859 0.810891 0.463798\nvn 0.356859 0.810891 0.463798\nvn 0.177743 0.832957 0.524013\nvn 0.210979 0.709051 0.672855\nvn 0.177743 0.832957 0.524013\nvn 0.356859 0.810891 0.463798\nvn 0.298872 0.915021 0.270948\nvn 0.497276 0.770697 0.398426\nvn 0.417747 0.883318 0.212688\nvn 0.298872 0.915021 0.270948\nvn 0.298872 0.915021 0.270948\nvn 0.356859 0.810891 0.463798\nvn 0.497276 0.770697 0.398426\nvn 0.298872 0.915021 0.270948\nvn 0.149910 0.933246 0.326464\nvn 0.177743 0.832957 0.524013\nvn 0.523623 0.666730 0.530368\nvn 0.604252 0.657905 0.449489\nvn 0.519439 0.802720 0.292955\nvn 0.519439 0.802720 0.292955\nvn 0.604252 0.657905 0.449489\nvn 0.734141 0.596927 0.323596\nvn -0.000000 0.710456 0.703742\nvn 0.210979 0.709051 0.672855\nvn 0.177743 0.832957 0.524013\nvn 0.177743 0.832957 0.524013\nvn -0.000000 0.845081 0.534638\nvn -0.000000 0.710456 0.703742\nvn -0.000000 0.845081 0.534638\nvn 0.177743 0.832957 0.524013\nvn 0.149910 0.933246 0.326464\nvn 0.149910 0.933246 0.326464\nvn -0.000000 0.944755 0.327777\nvn -0.000000 0.845081 0.534638\nvn 0.982076 -0.187632 0.017915\nvn 0.988009 -0.153605 0.015596\nvn 0.985865 -0.166727 0.016511\nvn 0.985865 -0.166727 0.016511\nvn 0.979473 -0.200692 0.018830\nvn 0.982076 -0.187632 0.017915\nvn 0.207930 -0.603554 -0.769732\nvn 0.005463 -0.677953 -0.735085\nvn 0.022920 -0.692572 -0.720985\nvn 0.022920 -0.692572 -0.720985\nvn 0.217298 -0.592380 -0.775801\nvn 0.207930 -0.603554 -0.769732\nvn 0.014222 -0.435177 -0.900233\nvn 0.022920 -0.692572 -0.720985\nvn 0.005463 -0.677953 -0.735085\nvn 0.005463 -0.677953 -0.735085\nvn 0.013520 -0.258165 -0.966006\nvn 0.014222 -0.435177 -0.900233\nvn -0.005005 -0.115544 -0.993290\nvn 0.014222 -0.435177 -0.900233\nvn 0.013520 -0.258165 -0.966006\nvn 0.013520 -0.258165 -0.966006\nvn -0.006348 -0.109532 -0.993963\nvn -0.005005 -0.115544 -0.993290\nvn -0.008087 -0.080234 -0.996743\nvn -0.005005 -0.115544 -0.993290\nvn -0.006348 -0.109532 -0.993963\nvn -0.006348 -0.109532 -0.993963\nvn -0.008332 -0.077000 -0.996996\nvn -0.008087 -0.080234 -0.996743\nvn -0.010041 -0.051150 -0.998641\nvn -0.008087 -0.080234 -0.996743\nvn -0.008332 -0.077000 -0.996996\nvn -0.008332 -0.077000 -0.996996\nvn -0.010254 -0.048860 -0.998753\nvn -0.010041 -0.051150 -0.998641\nvn -0.013154 0.145881 -0.989215\nvn -0.010041 -0.051150 -0.998641\nvn -0.010254 -0.048860 -0.998753\nvn -0.010254 -0.048860 -0.998753\nvn -0.012910 0.112037 -0.993620\nvn -0.013154 0.145881 -0.989215\nvn -0.011506 0.305741 -0.952045\nvn -0.013154 0.145881 -0.989215\nvn -0.012910 0.112037 -0.993620\nvn -0.012910 0.112037 -0.993620\nvn -0.011506 0.300885 -0.953591\nvn -0.011506 0.305741 -0.952045\nvn -0.011506 0.305741 -0.952045\nvn -0.011506 0.300885 -0.953591\nvn -0.004822 0.314530 -0.949235\nvn -0.004822 0.314530 -0.949235\nvn -0.004792 0.319838 -0.947460\nvn -0.011506 0.305741 -0.952045\nvn -0.000549 0.322255 -0.946653\nvn -0.004792 0.319838 -0.947460\nvn -0.004822 0.314530 -0.949235\nvn -0.004822 0.314530 -0.949235\nvn -0.000000 0.321826 -0.946799\nvn -0.000549 0.322255 -0.946653\nvn 0.012330 -0.315782 0.948752\nvn 0.008881 -0.321521 0.946861\nvn 0.009034 -0.321575 0.946841\nvn 0.009034 -0.321575 0.946841\nvn 0.013032 -0.313764 0.949412\nvn 0.012330 -0.315782 0.948752\nvn 0.014924 -0.300521 0.953659\nvn 0.012330 -0.315782 0.948752\nvn 0.013032 -0.313764 0.949412\nvn 0.013032 -0.313764 0.949412\nvn 0.015077 -0.296586 0.954887\nvn 0.014924 -0.300521 0.953659\nvn 0.013489 -0.143835 0.989510\nvn 0.014924 -0.300521 0.953659\nvn 0.015077 -0.296586 0.954887\nvn 0.015077 -0.296586 0.954887\nvn 0.013093 -0.110693 0.993768\nvn 0.013489 -0.143835 0.989510\nvn 0.010346 0.048037 0.998792\nvn 0.013489 -0.143835 0.989510\nvn 0.013093 -0.110693 0.993768\nvn 0.013093 -0.110693 0.993768\nvn 0.010163 0.045840 0.998897\nvn 0.010346 0.048037 0.998792\nvn 0.008423 0.077457 0.996960\nvn 0.010346 0.048037 0.998792\nvn 0.010163 0.045840 0.998897\nvn 0.010163 0.045840 0.998897\nvn 0.008240 0.074192 0.997210\nvn 0.008423 0.077457 0.996960\nvn 0.006378 0.115606 0.993275\nvn 0.008423 0.077457 0.996960\nvn 0.008240 0.074192 0.997210\nvn 0.008240 0.074192 0.997210\nvn 0.005188 0.108373 0.994097\nvn 0.006378 0.115606 0.993275\nvn -0.015168 0.423236 0.905892\nvn 0.006378 0.115606 0.993275\nvn 0.005188 0.108373 0.994097\nvn 0.005188 0.108373 0.994097\nvn -0.013306 0.252669 0.967461\nvn -0.015168 0.423236 0.905892\nvn -0.028779 0.698943 0.714599\nvn -0.015168 0.423236 0.905892\nvn -0.013306 0.252669 0.967461\nvn -0.013306 0.252669 0.967461\nvn -0.009675 0.682284 0.731023\nvn -0.028779 0.698943 0.714599\nvn -0.183146 0.610691 0.770398\nvn -0.028779 0.698943 0.714599\nvn -0.009675 0.682284 0.731023\nvn -0.009675 0.682284 0.731023\nvn -0.187114 0.604710 0.774154\nvn -0.183146 0.610691 0.770398\nvn 0.592678 0.689912 -0.415638\nvn 0.520536 0.703071 -0.484493\nvn 0.495511 0.606022 -0.622258\nvn 0.495511 0.606022 -0.622258\nvn 0.586854 0.670538 -0.453851\nvn 0.592678 0.689912 -0.415638\nvn 0.586854 0.670538 -0.453851\nvn 0.495511 0.606022 -0.622258\nvn 0.760640 0.450317 -0.467591\nvn 0.760640 0.450317 -0.467591\nvn 0.400415 0.782214 -0.477294\nvn 0.586854 0.670538 -0.453851\nvn 0.979569 0.114996 -0.164986\nvn 0.982816 0.091009 -0.160593\nvn 0.898740 -0.068669 -0.433072\nvn 0.898740 -0.068669 -0.433072\nvn 0.919833 0.048769 -0.389266\nvn 0.979569 0.114996 -0.164986\nvn 0.971296 0.163216 -0.173043\nvn 0.979569 0.114996 -0.164986\nvn 0.919833 0.048769 -0.389266\nvn 0.919833 0.048769 -0.389266\nvn 0.917402 0.068882 -0.391956\nvn 0.971296 0.163216 -0.173043\nvn 0.959944 0.219188 -0.174538\nvn 0.971296 0.163216 -0.173043\nvn 0.917402 0.068882 -0.391956\nvn 0.917402 0.068882 -0.391956\nvn 0.964574 0.204750 -0.166357\nvn 0.959944 0.219188 -0.174538\nvn 0.950363 0.255017 -0.178262\nvn 0.959944 0.219188 -0.174538\nvn 0.964574 0.204750 -0.166357\nvn 0.964574 0.204750 -0.166357\nvn 0.947803 0.261183 -0.182901\nvn 0.950363 0.255017 -0.178262\nvn 0.223798 -0.467860 0.854998\nvn 0.223402 -0.553989 0.801990\nvn 0.420857 -0.581722 0.696046\nvn 0.420857 -0.581722 0.696046\nvn 0.441460 -0.479425 0.758462\nvn 0.223798 -0.467860 0.854998\nvn 0.226454 -0.381858 0.896049\nvn 0.223798 -0.467860 0.854998\nvn 0.441460 -0.479425 0.758462\nvn 0.441460 -0.479425 0.758462\nvn 0.456049 -0.389456 0.800215\nvn 0.226454 -0.381858 0.896049\nvn 0.229534 -0.289809 0.929153\nvn 0.226454 -0.381858 0.896049\nvn 0.456049 -0.389456 0.800215\nvn 0.456049 -0.389456 0.800215\nvn 0.470877 -0.290449 0.833015\nvn 0.229534 -0.289809 0.929153\nvn 0.235483 -0.036378 0.971198\nvn 0.229534 -0.289809 0.929153\nvn 0.470877 -0.290449 0.833015\nvn 0.470877 -0.290449 0.833015\nvn 0.487697 -0.040224 0.872086\nvn 0.235483 -0.036378 0.971198\nvn 0.456049 -0.389456 0.800215\nvn 0.441460 -0.479425 0.758462\nvn 0.572026 -0.473692 0.669628\nvn 0.572026 -0.473692 0.669628\nvn 0.598882 -0.380912 0.704448\nvn 0.456049 -0.389456 0.800215\nvn 0.441460 -0.479425 0.758462\nvn 0.420857 -0.581722 0.696046\nvn 0.529601 -0.591891 0.607608\nvn 0.529601 -0.591891 0.607608\nvn 0.572026 -0.473692 0.669628\nvn 0.441460 -0.479425 0.758462\nvn 0.673337 -0.462543 0.576776\nvn 0.572026 -0.473692 0.669628\nvn 0.529601 -0.591891 0.607608\nvn 0.598882 -0.380912 0.704448\nvn 0.572026 -0.473692 0.669628\nvn 0.673337 -0.462543 0.576776\nvn 0.529601 -0.591891 0.607608\nvn 0.590918 -0.588049 0.552281\nvn 0.673337 -0.462543 0.576776\nvn 0.673337 -0.462543 0.576776\nvn 0.706517 -0.362170 0.608002\nvn 0.598882 -0.380912 0.704448\nvn 0.598882 -0.380912 0.704448\nvn 0.706517 -0.362170 0.608002\nvn 0.733904 -0.251695 0.630900\nvn 0.733904 -0.251695 0.630900\nvn 0.623203 -0.277237 0.731272\nvn 0.598882 -0.380912 0.704448\nvn 0.456049 -0.389456 0.800215\nvn 0.598882 -0.380912 0.704448\nvn 0.623203 -0.277237 0.731272\nvn 0.623203 -0.277237 0.731272\nvn 0.470877 -0.290449 0.833015\nvn 0.456049 -0.389456 0.800215\nvn 0.623203 -0.277237 0.731272\nvn 0.733904 -0.251695 0.630900\nvn 0.756261 -0.041475 0.652954\nvn 0.876508 -0.035249 0.480096\nvn 0.756261 -0.041475 0.652954\nvn 0.733904 -0.251695 0.630900\nvn 0.733904 -0.251695 0.630900\nvn 0.858116 -0.220472 0.463713\nvn 0.876508 -0.035249 0.480096\nvn 0.858116 -0.220472 0.463713\nvn 0.733904 -0.251695 0.630900\nvn 0.706517 -0.362170 0.608002\nvn 0.756261 -0.041475 0.652954\nvn 0.645784 -0.043032 0.762306\nvn 0.623203 -0.277237 0.731272\nvn 0.645784 -0.043032 0.762306\nvn 0.487697 -0.040224 0.872086\nvn 0.470877 -0.290449 0.833015\nvn 0.470877 -0.290449 0.833015\nvn 0.623203 -0.277237 0.731272\nvn 0.645784 -0.043032 0.762306\nvn 0.706517 -0.362170 0.608002\nvn 0.815451 -0.321920 0.481049\nvn 0.858116 -0.220472 0.463713\nvn 0.815451 -0.321920 0.481049\nvn 0.706517 -0.362170 0.608002\nvn 0.673337 -0.462543 0.576776\nvn 0.876508 -0.035249 0.480096\nvn 0.858116 -0.220472 0.463713\nvn 0.931835 -0.158454 0.326461\nvn 0.858116 -0.220472 0.463713\nvn 0.815451 -0.321920 0.481049\nvn 0.931835 -0.158454 0.326461\nvn 0.931835 -0.158454 0.326461\nvn 0.941203 -0.029359 0.336563\nvn 0.876508 -0.035249 0.480096\nvn 0.941203 -0.029359 0.336563\nvn 0.931835 -0.158454 0.326461\nvn 0.953217 -0.148294 0.263414\nvn 0.953217 -0.148294 0.263414\nvn 0.961423 -0.029237 0.273515\nvn 0.941203 -0.029359 0.336563\nvn 0.975372 -0.041506 0.216627\nvn 0.961423 -0.029237 0.273515\nvn 0.953217 -0.148294 0.263414\nvn 0.953217 -0.148294 0.263414\nvn 0.961413 -0.204356 0.184183\nvn 0.975372 -0.041506 0.216627\nvn 0.979667 -0.117224 0.162820\nvn 0.975372 -0.041506 0.216627\nvn 0.961413 -0.204356 0.184183\nvn 0.961413 -0.204356 0.184183\nvn 0.924398 -0.360585 0.124366\nvn 0.979667 -0.117224 0.162820\nvn 0.924398 -0.360585 0.124366\nvn 0.961413 -0.204356 0.184183\nvn 0.948970 -0.307330 0.070744\nvn 0.948970 -0.307330 0.070744\nvn 0.892171 -0.445307 0.075718\nvn 0.924398 -0.360585 0.124366\nvn 0.891682 -0.452662 -0.000427\nvn 0.892171 -0.445307 0.075718\nvn 0.948970 -0.307330 0.070744\nvn 0.882246 -0.470787 0.000732\nvn 0.892171 -0.445307 0.075718\nvn 0.891682 -0.452662 -0.000427\nvn 0.867424 -0.497192 -0.019410\nvn 0.882246 -0.470787 0.000732\nvn 0.891682 -0.452662 -0.000427\nvn 0.867424 -0.497192 -0.019410\nvn 0.887408 -0.460779 -0.013764\nvn 0.882246 -0.470787 0.000732\nvn 0.867424 -0.497192 -0.019410\nvn 0.891682 -0.452662 -0.000427\nvn 0.844522 -0.533014 -0.051760\nvn 0.887408 -0.460779 -0.013764\nvn 0.867424 -0.497192 -0.019410\nvn 0.877571 -0.474813 0.066501\nvn 0.867424 -0.497192 -0.019410\nvn 0.882054 -0.461383 0.095432\nvn 0.877571 -0.474813 0.066501\nvn 0.882054 -0.461383 0.095432\nvn 0.888262 -0.446221 0.108984\nvn 0.877571 -0.474813 0.066501\nvn 0.891682 -0.452662 -0.000427\nvn 0.948970 -0.307330 0.070744\nvn 0.977632 -0.207862 -0.032075\nvn 0.948970 -0.307330 0.070744\nvn 0.948419 -0.315020 0.035555\nvn 0.977632 -0.207862 -0.032075\nvn 0.888262 -0.446221 0.108984\nvn 0.882054 -0.461383 0.095432\nvn 0.973128 -0.180153 0.143409\nvn 0.979667 -0.117224 0.162820\nvn 0.924398 -0.360585 0.124366\nvn 0.973128 -0.180153 0.143409\nvn 0.890777 -0.442016 0.105537\nvn 0.888262 -0.446221 0.108984\nvn 0.973128 -0.180153 0.143409\nvn 0.924398 -0.360585 0.124366\nvn 0.890777 -0.442016 0.105537\nvn 0.973128 -0.180153 0.143409\nvn 0.924398 -0.360585 0.124366\nvn 0.892171 -0.445307 0.075718\nvn 0.855123 -0.439509 0.274949\nvn 0.855123 -0.439509 0.274949\nvn 0.916380 -0.361992 0.170909\nvn 0.924398 -0.360585 0.124366\nvn 0.916380 -0.361992 0.170909\nvn 0.855123 -0.439509 0.274949\nvn 0.869188 -0.445306 0.214978\nvn 0.869188 -0.445306 0.214978\nvn 0.832253 -0.474326 0.287001\nvn 0.916380 -0.361992 0.170909\nvn -0.026125 0.877741 -0.478424\nvn 0.000244 0.871353 -0.490657\nvn 0.186838 0.866716 -0.462488\nvn 0.186838 0.866716 -0.462488\nvn 0.175728 0.871988 -0.456899\nvn -0.026125 0.877741 -0.478424\nvn -0.031679 0.880256 -0.473440\nvn -0.026125 0.877741 -0.478424\nvn 0.175728 0.871988 -0.456899\nvn 0.175728 0.871988 -0.456899\nvn 0.167307 0.870014 -0.463772\nvn -0.031679 0.880256 -0.473440\nvn -0.026125 0.877741 -0.478424\nvn -0.031679 0.880256 -0.473440\nvn -0.237473 0.855677 -0.459808\nvn -0.237473 0.855677 -0.459808\nvn -0.234445 0.849581 -0.472491\nvn -0.026125 0.877741 -0.478424\nvn 0.000244 0.871353 -0.490657\nvn -0.026125 0.877741 -0.478424\nvn -0.234445 0.849581 -0.472491\nvn -0.234445 0.849581 -0.472491\nvn -0.224074 0.841423 -0.491730\nvn 0.000244 0.871353 -0.490657\nvn 0.654514 0.679022 -0.332476\nvn 0.703652 0.645208 -0.297624\nvn 0.803078 0.560269 -0.202891\nvn 0.803078 0.560269 -0.202891\nvn 0.797705 0.549983 -0.247356\nvn 0.654514 0.679022 -0.332476\nvn 0.896008 0.426015 -0.125220\nvn 0.803078 0.560269 -0.202891\nvn 0.703652 0.645208 -0.297624\nvn 0.703652 0.645208 -0.297624\nvn 0.739376 0.609306 -0.286479\nvn 0.896008 0.426015 -0.125220\nvn 0.803078 0.560269 -0.202891\nvn 0.896008 0.426015 -0.125220\nvn 0.790502 0.589810 -0.165016\nvn 0.790502 0.589810 -0.165016\nvn 0.873099 0.475310 -0.108527\nvn 0.803078 0.560269 -0.202891\nvn 0.797705 0.549983 -0.247356\nvn 0.803078 0.560269 -0.202891\nvn 0.873099 0.475310 -0.108527\nvn 0.873099 0.475310 -0.108527\nvn 0.905327 0.394768 -0.156656\nvn 0.797705 0.549983 -0.247356\nvn -0.031679 0.880256 -0.473440\nvn 0.167307 0.870014 -0.463772\nvn 0.159736 0.864175 -0.477164\nvn 0.159736 0.864175 -0.477164\nvn -0.037447 0.877882 -0.477410\nvn -0.031679 0.880256 -0.473440\nvn -0.237473 0.855677 -0.459808\nvn -0.031679 0.880256 -0.473440\nvn -0.037447 0.877882 -0.477410\nvn -0.033480 0.870448 -0.491121\nvn -0.037447 0.877882 -0.477410\nvn 0.159736 0.864175 -0.477164\nvn 0.159736 0.864175 -0.477164\nvn 0.156411 0.856708 -0.491514\nvn -0.033480 0.870448 -0.491121\nvn -0.044893 0.853277 -0.519523\nvn -0.033480 0.870448 -0.491121\nvn 0.156411 0.856708 -0.491514\nvn 0.156411 0.856708 -0.491514\nvn 0.158548 0.832753 -0.530458\nvn -0.044893 0.853277 -0.519523\nvn -0.044558 0.843792 -0.534817\nvn -0.044893 0.853277 -0.519523\nvn 0.158548 0.832753 -0.530458\nvn 0.158548 0.832753 -0.530458\nvn 0.172402 0.809579 -0.561123\nvn -0.044558 0.843792 -0.534817\nvn -0.254777 0.836144 -0.485749\nvn -0.044893 0.853277 -0.519523\nvn -0.044558 0.843792 -0.534817\nvn -0.044558 0.843792 -0.534817\nvn -0.257860 0.833398 -0.488832\nvn -0.254777 0.836144 -0.485749\nvn -0.069340 0.844951 -0.530330\nvn -0.044558 0.843792 -0.534817\nvn 0.172402 0.809579 -0.561123\nvn -0.257860 0.833398 -0.488832\nvn -0.044558 0.843792 -0.534817\nvn -0.069340 0.844951 -0.530330\nvn 0.172402 0.809579 -0.561123\nvn 0.179910 0.801463 -0.570342\nvn -0.069340 0.844951 -0.530330\nvn -0.069340 0.844951 -0.530330\nvn -0.258559 0.835127 -0.485500\nvn -0.257860 0.833398 -0.488832\nvn 0.694357 0.560436 -0.451419\nvn 0.633067 0.652050 -0.417202\nvn 0.785358 0.515566 -0.342643\nvn 0.785358 0.515566 -0.342643\nvn 0.832190 0.403643 -0.380174\nvn 0.694357 0.560436 -0.451419\nvn 0.709111 0.511470 -0.485345\nvn 0.694357 0.560436 -0.451419\nvn 0.832190 0.403643 -0.380174\nvn 0.832190 0.403643 -0.380174\nvn 0.785358 0.515566 -0.342643\nvn 0.890642 0.383108 -0.244917\nvn 0.890642 0.383108 -0.244917\nvn 0.760640 0.450317 -0.467591\nvn 0.832190 0.403643 -0.380174\nvn 0.832190 0.403643 -0.380174\nvn 0.847115 0.331772 -0.415119\nvn 0.709111 0.511470 -0.485345\nvn 0.711308 0.492089 -0.501886\nvn 0.709111 0.511470 -0.485345\nvn 0.847115 0.331772 -0.415119\nvn 0.935566 0.137672 -0.325212\nvn 0.847115 0.331772 -0.415119\nvn 0.832190 0.403643 -0.380174\nvn 0.878489 0.277296 -0.389056\nvn 0.935566 0.137672 -0.325212\nvn 0.832190 0.403643 -0.380174\nvn -0.044893 0.853277 -0.519523\nvn -0.254777 0.836144 -0.485749\nvn -0.231552 0.852626 -0.468415\nvn 0.885086 0.409568 -0.221081\nvn 0.890642 0.383108 -0.244917\nvn 0.785358 0.515566 -0.342643\nvn 0.785358 0.515566 -0.342643\nvn 0.775077 0.555061 -0.301931\nvn 0.885086 0.409568 -0.221081\nvn 0.775077 0.555061 -0.301931\nvn 0.785358 0.515566 -0.342643\nvn 0.633067 0.652050 -0.417202\nvn 0.633067 0.652050 -0.417202\nvn 0.624144 0.680971 -0.383044\nvn 0.775077 0.555061 -0.301931\nvn 0.847115 0.331772 -0.415119\nvn 0.859085 0.284653 -0.425377\nvn 0.711308 0.492089 -0.501886\nvn 0.847115 0.331772 -0.415119\nvn 0.935566 0.137672 -0.325212\nvn 0.935599 0.122901 -0.330982\nvn 0.935599 0.122901 -0.330982\nvn 0.859085 0.284653 -0.425377\nvn 0.847115 0.331772 -0.415119\nvn 0.935112 0.108222 -0.337422\nvn 0.935599 0.122901 -0.330982\nvn 0.935566 0.137672 -0.325212\nvn 0.935566 0.137672 -0.325212\nvn 0.933130 0.127266 -0.336262\nvn 0.935112 0.108222 -0.337422\nvn 0.933130 0.127266 -0.336262\nvn 0.935566 0.137672 -0.325212\nvn 0.878489 0.277296 -0.389056\nvn 0.878489 0.277296 -0.389056\nvn 0.929574 0.157172 -0.333449\nvn 0.933130 0.127266 -0.336262\nvn 0.933130 0.127266 -0.336262\nvn 0.929574 0.157172 -0.333449\nvn 0.958366 0.251326 -0.135536\nvn 0.958366 0.251326 -0.135536\nvn 0.958849 0.257368 -0.119879\nvn 0.933130 0.127266 -0.336262\nvn 0.905327 0.394768 -0.156656\nvn 0.885086 0.409568 -0.221081\nvn 0.775077 0.555061 -0.301931\nvn 0.775077 0.555061 -0.301931\nvn 0.797705 0.549983 -0.247356\nvn 0.905327 0.394768 -0.156656\nvn 0.775077 0.555061 -0.301931\nvn 0.624144 0.680971 -0.383044\nvn 0.654514 0.679022 -0.332476\nvn 0.654514 0.679022 -0.332476\nvn 0.797705 0.549983 -0.247356\nvn 0.775077 0.555061 -0.301931\nvn -0.231552 0.852626 -0.468415\nvn -0.033480 0.870448 -0.491121\nvn -0.044893 0.853277 -0.519523\nvn -0.233352 0.857628 -0.458281\nvn -0.037447 0.877882 -0.477410\nvn -0.033480 0.870448 -0.491121\nvn -0.033480 0.870448 -0.491121\nvn -0.231552 0.852626 -0.468415\nvn -0.233352 0.857628 -0.458281\nvn -0.037447 0.877882 -0.477410\nvn -0.233352 0.857628 -0.458281\nvn -0.237473 0.855677 -0.459808\nvn -0.752206 0.593994 -0.285232\nvn -0.752898 0.595299 -0.280650\nvn -0.874978 0.446339 -0.187600\nvn -0.884850 0.436916 -0.161692\nvn -0.874978 0.446339 -0.187600\nvn -0.752898 0.595299 -0.280650\nvn -0.752898 0.595299 -0.280650\nvn -0.758555 0.593079 -0.269912\nvn -0.884850 0.436916 -0.161692\nvn -0.888576 0.435544 -0.143991\nvn -0.884850 0.436916 -0.161692\nvn -0.758555 0.593079 -0.269912\nvn -0.758555 0.593079 -0.269912\nvn -0.761894 0.592692 -0.261218\nvn -0.888576 0.435544 -0.143991\nvn -0.967412 0.251382 -0.030366\nvn -0.884850 0.436916 -0.161692\nvn -0.888576 0.435544 -0.143991\nvn -0.888576 0.435544 -0.143991\nvn -0.966225 0.257090 -0.017701\nvn -0.967412 0.251382 -0.030366\nvn -0.884850 0.436916 -0.161692\nvn -0.967412 0.251382 -0.030366\nvn -0.960685 0.267409 -0.074681\nvn -0.960685 0.267409 -0.074681\nvn -0.874978 0.446339 -0.187600\nvn -0.884850 0.436916 -0.161692\nvn -0.874978 0.446339 -0.187600\nvn -0.872270 0.446832 -0.198711\nvn -0.752206 0.593994 -0.285232\nvn -0.750643 0.586695 -0.303846\nvn -0.752206 0.593994 -0.285232\nvn -0.872270 0.446832 -0.198711\nvn -0.874978 0.446339 -0.187600\nvn -0.960685 0.267409 -0.074681\nvn -0.955685 0.276292 -0.101630\nvn -0.955685 0.276292 -0.101630\nvn -0.872270 0.446832 -0.198711\nvn -0.874978 0.446339 -0.187600\nvn -0.872270 0.446832 -0.198711\nvn -0.866558 0.447257 -0.221446\nvn -0.750643 0.586695 -0.303846\nvn -0.750643 0.586695 -0.303846\nvn -0.866558 0.447257 -0.221446\nvn -0.869714 0.445523 -0.212385\nvn -0.869714 0.445523 -0.212385\nvn -0.747822 0.578926 -0.324973\nvn -0.750643 0.586695 -0.303846\nvn -0.950256 0.284747 -0.126229\nvn -0.866558 0.447257 -0.221446\nvn -0.872270 0.446832 -0.198711\nvn -0.872270 0.446832 -0.198711\nvn -0.955685 0.276292 -0.101630\nvn -0.950256 0.284747 -0.126229\nvn -0.869714 0.445523 -0.212385\nvn -0.866558 0.447257 -0.221446\nvn -0.950256 0.284747 -0.126229\nvn -0.950256 0.284747 -0.126229\nvn -0.945002 0.289476 -0.152231\nvn -0.869714 0.445523 -0.212385\nvn -0.913149 0.391628 -0.113075\nvn -0.888576 0.435544 -0.143991\nvn -0.761894 0.592692 -0.261218\nvn -0.966225 0.257090 -0.017701\nvn -0.888576 0.435544 -0.143991\nvn -0.913149 0.391628 -0.113075\nvn -0.761894 0.592692 -0.261218\nvn -0.763766 0.592707 -0.255657\nvn -0.913149 0.391628 -0.113075\nvn -0.913149 0.391628 -0.113075\nvn -0.966061 0.257644 -0.018617\nvn -0.966225 0.257090 -0.017701\nvn -0.784000 0.608119 -0.124639\nvn -0.747822 0.578926 -0.324973\nvn -0.869714 0.445523 -0.212385\nvn -0.869714 0.445523 -0.212385\nvn -0.880823 0.450559 -0.145425\nvn -0.784000 0.608119 -0.124639\nvn -0.880823 0.450559 -0.145425\nvn -0.869714 0.445523 -0.212385\nvn -0.945002 0.289476 -0.152231\nvn -0.945002 0.289476 -0.152231\nvn -0.935454 0.305592 -0.177593\nvn -0.880823 0.450559 -0.145425\nvn -0.880823 0.450559 -0.145425\nvn -0.935454 0.305592 -0.177593\nvn -0.920162 0.351553 -0.172374\nvn -0.920162 0.351553 -0.172374\nvn -0.841555 0.529195 -0.108342\nvn -0.880823 0.450559 -0.145425\nvn -0.784000 0.608119 -0.124639\nvn -0.880823 0.450559 -0.145425\nvn -0.841555 0.529195 -0.108342\nvn -0.841555 0.529195 -0.108342\nvn -0.720526 0.693394 0.006928\nvn -0.784000 0.608119 -0.124639\nvn -0.841555 0.529195 -0.108342\nvn -0.920162 0.351553 -0.172374\nvn -0.856478 0.459856 -0.234475\nvn -0.856478 0.459856 -0.234475\nvn -0.719003 0.647404 -0.252791\nvn -0.841555 0.529195 -0.108342\nvn -0.720526 0.693394 0.006928\nvn -0.841555 0.529195 -0.108342\nvn -0.719003 0.647404 -0.252791\nvn -0.719003 0.647404 -0.252791\nvn -0.317097 0.937830 -0.141152\nvn -0.720526 0.693394 0.006928\nvn -0.074985 0.992808 0.093326\nvn -0.106053 0.988809 0.104924\nvn -0.118538 0.989041 0.088018\nvn -0.118538 0.989041 0.088018\nvn -0.062717 0.995290 0.073917\nvn -0.074985 0.992808 0.093326\nvn -0.055148 0.995925 -0.071353\nvn -0.074985 0.992808 0.093326\nvn -0.062717 0.995290 0.073917\nvn -0.062717 0.995290 0.073917\nvn -0.317097 0.937830 -0.141152\nvn -0.055148 0.995925 -0.071353\nvn -0.074985 0.992808 0.093326\nvn -0.055148 0.995925 -0.071353\nvn 0.032167 0.990610 -0.132879\nvn 0.032167 0.990610 -0.132879\nvn -0.052371 0.996226 0.069217\nvn -0.074985 0.992808 0.093326\nvn -0.106053 0.988809 0.104924\nvn -0.074985 0.992808 0.093326\nvn -0.052371 0.996226 0.069217\nvn -0.052371 0.996226 0.069217\nvn -0.020845 0.997033 0.074101\nvn -0.106053 0.988809 0.104924\nvn 0.878489 0.277296 -0.389056\nvn 0.832190 0.403643 -0.380174\nvn 0.760640 0.450317 -0.467591\nvn 0.184793 0.817913 -0.544858\nvn 0.185405 0.816548 -0.546695\nvn -0.082829 0.856155 -0.510037\nvn -0.082829 0.856155 -0.510037\nvn -0.019777 0.855426 -0.517547\nvn 0.184793 0.817913 -0.544858\nvn -0.292554 0.828831 -0.476918\nvn -0.019777 0.855426 -0.517547\nvn -0.082829 0.856155 -0.510037\nvn -0.082829 0.856155 -0.510037\nvn -0.293625 0.825726 -0.481623\nvn -0.292554 0.828831 -0.476918\nvn 0.740705 0.465329 -0.484587\nvn 0.741558 0.470944 -0.477811\nvn 0.835803 0.322956 -0.443996\nvn 0.835803 0.322956 -0.443996\nvn 0.868672 0.267502 -0.416955\nvn 0.740705 0.465329 -0.484587\nvn 0.940929 0.139807 -0.308394\nvn 0.868672 0.267502 -0.416955\nvn 0.835803 0.322956 -0.443996\nvn 0.835803 0.322956 -0.443996\nvn 0.940728 0.137826 -0.309894\nvn 0.940929 0.139807 -0.308394\nvn 0.940929 0.139807 -0.308394\nvn 0.940728 0.137826 -0.309894\nvn 0.958118 0.188395 -0.215679\nvn 0.958118 0.188395 -0.215679\nvn 0.959034 0.192241 -0.208080\nvn 0.940929 0.139807 -0.308394\nvn -0.785460 0.562276 -0.258646\nvn -0.786858 0.562874 -0.253038\nvn -0.915334 0.373739 -0.149941\nvn -0.915334 0.373739 -0.149941\nvn -0.865375 0.454859 -0.210308\nvn -0.785460 0.562276 -0.258646\nvn -0.965903 0.250227 -0.066471\nvn -0.865375 0.454859 -0.210308\nvn -0.915334 0.373739 -0.149941\nvn -0.915334 0.373739 -0.149941\nvn -0.965903 0.250227 -0.066471\nvn -0.965903 0.250227 -0.066471\nvn 0.105353 -0.987731 0.115272\nvn 0.105565 -0.987712 0.115239\nvn 0.104740 -0.988012 0.113408\nvn 0.104740 -0.988012 0.113408\nvn 0.104496 -0.988104 0.112828\nvn 0.105353 -0.987731 0.115272\nvn 0.104955 -0.987537 0.117285\nvn 0.105565 -0.987712 0.115239\nvn 0.105353 -0.987731 0.115272\nvn 0.105353 -0.987731 0.115272\nvn 0.104742 -0.987479 0.117957\nvn 0.104955 -0.987537 0.117285\nvn 0.178570 0.880429 -0.439269\nvn 0.145120 0.824456 -0.547003\nvn -0.070622 0.830644 -0.552308\nvn -0.070622 0.830644 -0.552308\nvn -0.010957 0.900281 -0.435171\nvn 0.178570 0.880429 -0.439269\nvn -0.293163 0.865694 -0.405746\nvn -0.010957 0.900281 -0.435171\nvn -0.070622 0.830644 -0.552308\nvn -0.070622 0.830644 -0.552308\nvn -0.311663 0.771770 -0.554290\nvn -0.293163 0.865694 -0.405746\nvn -0.781995 0.588289 -0.205913\nvn -0.787738 0.587927 -0.183880\nvn -0.876185 0.345023 -0.336539\nvn -0.876185 0.345023 -0.336539\nvn -0.857472 0.480130 -0.184978\nvn -0.781995 0.588289 -0.205913\nvn -0.971030 0.226788 -0.075291\nvn -0.857472 0.480130 -0.184978\nvn -0.876185 0.345023 -0.336539\nvn -0.876185 0.345023 -0.336539\nvn -0.911082 0.098362 -0.400317\nvn -0.971030 0.226788 -0.075291\nvn 0.728147 0.463580 -0.504872\nvn 0.764393 0.520176 -0.380946\nvn 0.874734 0.345750 -0.339554\nvn 0.874734 0.345750 -0.339554\nvn 0.838087 0.288406 -0.463068\nvn 0.728147 0.463580 -0.504872\nvn 0.908511 0.102940 -0.404983\nvn 0.838087 0.288406 -0.463068\nvn 0.874734 0.345750 -0.339554\nvn 0.874734 0.345750 -0.339554\nvn 0.949065 0.146738 -0.278826\nvn 0.908511 0.102940 -0.404983\nvn 0.908511 0.102940 -0.404983\nvn 0.949065 0.146738 -0.278826\nvn 0.950226 0.139017 -0.278827\nvn 0.950226 0.139017 -0.278827\nvn 0.920316 0.109687 -0.375482\nvn 0.908511 0.102940 -0.404983\nvn 0.781627 0.214611 -0.585663\nvn 0.838087 0.288406 -0.463068\nvn 0.908511 0.102940 -0.404983\nvn 0.908511 0.102940 -0.404983\nvn 0.849118 0.059453 -0.524847\nvn 0.781627 0.214611 -0.585663\nvn 0.849118 0.059453 -0.524847\nvn 0.908511 0.102940 -0.404983\nvn 0.920316 0.109687 -0.375482\nvn 0.665599 0.390100 -0.636239\nvn 0.728147 0.463580 -0.504872\nvn 0.838087 0.288406 -0.463068\nvn 0.838087 0.288406 -0.463068\nvn 0.781627 0.214611 -0.585663\nvn 0.665599 0.390100 -0.636239\nvn 0.145120 0.824456 -0.547003\nvn 0.109930 0.738258 -0.665500\nvn -0.105903 0.730120 -0.675063\nvn -0.105903 0.730120 -0.675063\nvn -0.070622 0.830644 -0.552308\nvn 0.145120 0.824456 -0.547003\nvn -0.311663 0.771770 -0.554290\nvn -0.070622 0.830644 -0.552308\nvn -0.105903 0.730120 -0.675063\nvn -0.105903 0.730120 -0.675063\nvn -0.316638 0.670632 -0.670815\nvn -0.311663 0.771770 -0.554290\nvn 0.920316 0.109687 -0.375482\nvn 0.856483 0.064426 -0.512138\nvn 0.849118 0.059453 -0.524847\nvn -0.755797 0.414048 -0.507283\nvn -0.770279 0.423334 -0.476926\nvn -0.717194 0.127782 -0.685058\nvn -0.717194 0.127782 -0.685058\nvn -0.876185 0.345023 -0.336539\nvn -0.755797 0.414048 -0.507283\nvn -0.911082 0.098362 -0.400317\nvn -0.876185 0.345023 -0.336539\nvn -0.717194 0.127782 -0.685058\nvn -0.717194 0.127782 -0.685058\nvn -0.751388 -0.010987 -0.659769\nvn -0.911082 0.098362 -0.400317\nvn 0.096654 -0.149696 -0.983996\nvn 0.240249 -0.068089 -0.968320\nvn 0.285877 -0.149882 -0.946472\nvn 0.285877 -0.149882 -0.946472\nvn 0.090886 -0.199411 -0.975692\nvn 0.096654 -0.149696 -0.983996\nvn 0.090886 -0.199411 -0.975692\nvn 0.285877 -0.149882 -0.946472\nvn 0.294933 -0.150396 -0.943608\nvn 0.001831 -0.029634 -0.999559\nvn 0.081731 0.071171 -0.994110\nvn 0.240249 -0.068089 -0.968320\nvn 0.240249 -0.068089 -0.968320\nvn 0.096654 -0.149696 -0.983996\nvn 0.001831 -0.029634 -0.999559\nvn 0.081731 0.071171 -0.994110\nvn 0.001831 -0.029634 -0.999559\nvn -0.117530 -0.025972 -0.992730\nvn -0.117530 -0.025972 -0.992730\nvn -0.111732 0.106574 -0.988007\nvn 0.081731 0.071171 -0.994110\nvn -0.312699 0.101201 -0.944446\nvn -0.111732 0.106574 -0.988007\nvn -0.117530 -0.025972 -0.992730\nvn -0.117530 -0.025972 -0.992730\nvn -0.320270 0.097296 -0.942317\nvn -0.312699 0.101201 -0.944446\nvn 0.294933 -0.150396 -0.943608\nvn 0.069095 -0.322340 -0.944099\nvn 0.090886 -0.199411 -0.975692\nvn -0.312699 0.101201 -0.944446\nvn -0.320270 0.097296 -0.942317\nvn -0.579984 -0.019197 -0.814401\nvn -0.579984 -0.019197 -0.814401\nvn -0.717194 0.127782 -0.685058\nvn -0.312699 0.101201 -0.944446\nvn -0.751388 -0.010987 -0.659769\nvn -0.717194 0.127782 -0.685058\nvn -0.579984 -0.019197 -0.814401\nvn -0.579984 -0.019197 -0.814401\nvn -0.722992 -0.001129 -0.690856\nvn -0.751388 -0.010987 -0.659769\nvn 0.124550 -0.988647 0.084051\nvn 0.113805 -0.992043 -0.053835\nvn 0.108832 -0.993159 -0.042330\nvn 0.108832 -0.993159 -0.042330\nvn 0.118596 -0.989659 0.080691\nvn 0.124550 -0.988647 0.084051\nvn 0.123268 -0.989587 0.074314\nvn 0.118596 -0.989659 0.080691\nvn 0.108832 -0.993159 -0.042330\nvn 0.108832 -0.993159 -0.042330\nvn 0.115088 -0.992731 -0.035219\nvn 0.123268 -0.989587 0.074314\nvn 0.093633 -0.982010 -0.163979\nvn 0.108832 -0.993159 -0.042330\nvn 0.113805 -0.992043 -0.053835\nvn 0.115088 -0.992731 -0.035219\nvn 0.108832 -0.993159 -0.042330\nvn 0.093633 -0.982010 -0.163979\nvn 0.113805 -0.992043 -0.053835\nvn 0.103307 -0.983685 -0.147284\nvn 0.093633 -0.982010 -0.163979\nvn 0.093633 -0.982010 -0.163979\nvn 0.095709 -0.977629 -0.187298\nvn 0.115088 -0.992731 -0.035219\nvn -0.096441 -0.411950 -0.906088\nvn -0.071414 -0.544946 -0.835425\nvn -0.067141 -0.549583 -0.832737\nvn -0.070500 -0.537201 -0.840503\nvn -0.071414 -0.544946 -0.835425\nvn -0.096441 -0.411950 -0.906088\nvn -0.067141 -0.549583 -0.832737\nvn -0.104008 -0.379075 -0.919502\nvn -0.096441 -0.411950 -0.906088\nvn -0.096441 -0.411950 -0.906088\nvn 0.069095 -0.322340 -0.944099\nvn -0.070500 -0.537201 -0.840503\nvn 0.002014 -0.261397 -0.965229\nvn -0.019074 -0.301345 -0.953324\nvn -0.023408 -0.289872 -0.956779\nvn -0.023408 -0.289872 -0.956779\nvn 0.006073 -0.261243 -0.965254\nvn 0.002014 -0.261397 -0.965229\nvn 0.029970 -0.292283 -0.955862\nvn 0.002014 -0.261397 -0.965229\nvn 0.006073 -0.261243 -0.965254\nvn 0.006073 -0.261243 -0.965254\nvn 0.031221 -0.299822 -0.953484\nvn 0.029970 -0.292283 -0.955862\nvn -0.018769 -0.340377 -0.940102\nvn 0.029970 -0.292283 -0.955862\nvn 0.031221 -0.299822 -0.953484\nvn 0.031221 -0.299822 -0.953484\nvn -0.020509 -0.346333 -0.937888\nvn -0.018769 -0.340377 -0.940102\nvn -0.022889 -0.381793 -0.923964\nvn -0.018769 -0.340377 -0.940102\nvn -0.020509 -0.346333 -0.937888\nvn -0.020509 -0.346333 -0.937888\nvn -0.023988 -0.386216 -0.922096\nvn -0.022889 -0.381793 -0.923964\nvn -0.022706 -0.407893 -0.912747\nvn -0.022889 -0.381793 -0.923964\nvn -0.023988 -0.386216 -0.922096\nvn -0.023988 -0.386216 -0.922096\nvn -0.023042 -0.410881 -0.911398\nvn -0.022706 -0.407893 -0.912747\nvn 0.028749 -0.334213 -0.942059\nvn -0.023408 -0.289872 -0.956779\nvn -0.019074 -0.301345 -0.953324\nvn -0.019074 -0.301345 -0.953324\nvn 0.031343 -0.333970 -0.942062\nvn 0.028749 -0.334213 -0.942059\nvn 0.096928 -0.277601 -0.955794\nvn 0.028749 -0.334213 -0.942059\nvn 0.031343 -0.333970 -0.942062\nvn 0.031343 -0.333970 -0.942062\nvn 0.089728 -0.281512 -0.955353\nvn 0.096928 -0.277601 -0.955794\nvn 0.121954 -0.218638 -0.968155\nvn 0.096928 -0.277601 -0.955794\nvn 0.089728 -0.281512 -0.955353\nvn 0.089728 -0.281512 -0.955353\nvn 0.125985 -0.211562 -0.969211\nvn 0.121954 -0.218638 -0.968155\nvn 0.143838 -0.187969 -0.971585\nvn 0.121954 -0.218638 -0.968155\nvn 0.125985 -0.211562 -0.969211\nvn 0.125985 -0.211562 -0.969211\nvn 0.143838 -0.187969 -0.971585\nvn 0.143838 -0.187969 -0.971585\nvn 0.020723 0.269547 0.962764\nvn 0.007386 0.292342 0.956285\nvn 0.006195 0.299602 0.954044\nvn 0.006195 0.299602 0.954044\nvn 0.023347 0.273630 0.961552\nvn 0.020723 0.269547 0.962764\nvn 0.040438 0.333731 0.941801\nvn 0.020723 0.269547 0.962764\nvn 0.023347 0.273630 0.961552\nvn 0.023347 0.273630 0.961552\nvn 0.052462 0.323044 0.944929\nvn 0.040438 0.333731 0.941801\nvn -0.035738 0.414943 0.909145\nvn 0.040438 0.333731 0.941801\nvn 0.052462 0.323044 0.944929\nvn 0.052462 0.323044 0.944929\nvn -0.024415 0.414997 0.909495\nvn -0.035738 0.414943 0.909145\nvn -0.120886 0.354935 0.927043\nvn -0.035738 0.414943 0.909145\nvn -0.024415 0.414997 0.909495\nvn -0.024415 0.414997 0.909495\nvn -0.136207 0.338519 0.931049\nvn -0.120886 0.354935 0.927043\nvn 0.081913 0.293807 0.952348\nvn 0.006195 0.299602 0.954044\nvn 0.007386 0.292342 0.956285\nvn 0.007386 0.292342 0.956285\nvn 0.094885 0.305529 0.947443\nvn 0.081913 0.293807 0.952348\nvn 0.034120 0.282207 0.958747\nvn 0.081913 0.293807 0.952348\nvn 0.094885 0.305529 0.947443\nvn 0.094885 0.305529 0.947443\nvn 0.032136 0.287762 0.957163\nvn 0.034120 0.282207 0.958747\nvn 0.026460 0.318131 0.947678\nvn 0.034120 0.282207 0.958747\nvn 0.032136 0.287762 0.957163\nvn 0.032136 0.287762 0.957163\nvn 0.023347 0.327071 0.944711\nvn 0.026460 0.318131 0.947678\nvn -0.120886 0.354935 0.927043\nvn -0.136207 0.338519 0.931049\nvn -0.177101 0.246012 0.952950\nvn -0.177101 0.246012 0.952950\nvn -0.179880 0.239240 0.954153\nvn -0.120886 0.354935 0.927043\nvn -0.203749 0.202040 0.957949\nvn -0.179880 0.239240 0.954153\nvn -0.177101 0.246012 0.952950\nvn -0.177101 0.246012 0.952950\nvn -0.203749 0.202040 0.957949\nvn -0.203749 0.202040 0.957949\nvn 0.481467 -0.089665 -0.871866\nvn 0.742327 0.044925 -0.668530\nvn 0.641269 -0.016938 -0.767130\nvn 0.641269 -0.016938 -0.767130\nvn 0.472322 -0.097327 -0.876036\nvn 0.481467 -0.089665 -0.871866\nvn 0.113409 -0.226726 -0.967333\nvn 0.481467 -0.089665 -0.871866\nvn 0.472322 -0.097327 -0.876036\nvn 0.472322 -0.097327 -0.876036\nvn 0.109807 -0.229289 -0.967145\nvn 0.113409 -0.226726 -0.967333\nvn 0.006562 -0.257152 -0.966349\nvn 0.113409 -0.226726 -0.967333\nvn 0.109807 -0.229289 -0.967145\nvn 0.109807 -0.229289 -0.967145\nvn 0.019105 -0.253491 -0.967149\nvn 0.006562 -0.257152 -0.966349\nvn -0.002167 -0.258773 -0.965936\nvn 0.006562 -0.257152 -0.966349\nvn 0.019105 -0.253491 -0.967149\nvn 0.019105 -0.253491 -0.967149\nvn 0.012543 -0.254283 -0.967049\nvn -0.002167 -0.258773 -0.965936\nvn -0.866393 0.479098 -0.140818\nvn -0.866393 0.479098 -0.140818\nvn -0.866393 0.479098 -0.140818\nvn -0.815958 0.566006 -0.117682\nvn -0.820262 0.559506 -0.118841\nvn -0.817328 0.564204 -0.116827\nvn -0.817328 0.564204 -0.116827\nvn -0.812817 0.571166 -0.114447\nvn -0.815958 0.566006 -0.117682\nvn -0.811285 0.574275 -0.109655\nvn -0.815958 0.566006 -0.117682\nvn -0.812817 0.571166 -0.114447\nvn -0.812817 0.571166 -0.114447\nvn -0.809045 0.578194 -0.105537\nvn -0.811285 0.574275 -0.109655\nvn -0.994099 -0.105474 0.025331\nvn -0.999171 -0.039187 0.011017\nvn -0.999170 -0.039218 0.011017\nvn -0.999170 -0.039218 0.011017\nvn -0.994442 -0.102362 0.024660\nvn -0.994099 -0.105474 0.025331\nvn -0.984987 -0.168193 0.038882\nvn -0.994099 -0.105474 0.025331\nvn -0.994442 -0.102362 0.024660\nvn -0.994442 -0.102362 0.024660\nvn -0.984988 -0.168188 0.038881\nvn -0.984987 -0.168193 0.038882\nvn -0.938059 -0.338150 0.075504\nvn -0.984987 -0.168193 0.038882\nvn -0.984988 -0.168188 0.038881\nvn -0.984988 -0.168188 0.038881\nvn -0.949543 -0.305619 0.070469\nvn -0.938059 -0.338150 0.075504\nvn -0.720496 -0.675206 0.158059\nvn -0.938059 -0.338150 0.075504\nvn -0.949543 -0.305619 0.070469\nvn -0.949543 -0.305619 0.070469\nvn -0.767418 -0.624372 0.145701\nvn -0.720496 -0.675206 0.158059\nvn -0.811330 0.575017 -0.105353\nvn -0.811285 0.574275 -0.109655\nvn -0.809045 0.578194 -0.105537\nvn -0.809045 0.578194 -0.105537\nvn -0.807760 0.580572 -0.102271\nvn -0.811330 0.575017 -0.105353\nvn 0.980177 0.193246 -0.043703\nvn 0.979032 0.200147 -0.037905\nvn 0.979010 0.200081 -0.038820\nvn 0.979010 0.200081 -0.038820\nvn 0.980270 0.192667 -0.044161\nvn 0.980177 0.193246 -0.043703\nvn 0.981600 0.186103 -0.042757\nvn 0.980177 0.193246 -0.043703\nvn 0.980270 0.192667 -0.044161\nvn 0.980270 0.192667 -0.044161\nvn 0.981600 0.186103 -0.042757\nvn 0.981600 0.186103 -0.042757\nvn -0.276260 -0.939231 0.203777\nvn -0.396048 -0.896808 0.197185\nvn -0.450343 -0.872456 0.189769\nvn -0.450343 -0.872456 0.189769\nvn -0.276287 -0.939217 0.203805\nvn -0.276260 -0.939231 0.203777\nvn -0.767418 -0.624372 0.145701\nvn -0.450343 -0.872456 0.189769\nvn -0.396048 -0.896808 0.197185\nvn -0.396048 -0.896808 0.197185\nvn -0.720496 -0.675206 0.158059\nvn -0.767418 -0.624372 0.145701\nvn 0.949088 0.196361 0.246321\nvn 0.966694 0.177072 0.184793\nvn 0.954247 0.248794 0.165872\nvn 0.954247 0.248794 0.165872\nvn 0.930479 0.279345 0.237014\nvn 0.949088 0.196361 0.246321\nvn 0.979667 -0.117224 0.162820\nvn 0.973128 -0.180153 0.143409\nvn 0.980750 0.134161 0.141882\nvn 0.980750 0.134161 0.141882\nvn 0.981191 0.120673 0.150673\nvn 0.979667 -0.117224 0.162820\nvn 0.981191 0.120673 0.150673\nvn 0.980750 0.134161 0.141882\nvn 0.975124 0.186565 0.119697\nvn 0.975124 0.186565 0.119697\nvn 0.974440 0.182199 0.131415\nvn 0.981191 0.120673 0.150673\nvn 0.000000 -0.999577 -0.029084\nvn 0.000000 -0.999577 -0.029084\nvn 0.000000 -0.999577 -0.029084\nvn 0.000000 -0.999577 -0.029084\nvn 0.000000 -0.999577 -0.029084\nvn 0.000000 -0.999577 -0.029084\nvn 0.000000 -0.999577 -0.029084\nvn 0.000000 -0.999577 -0.029084\nvn 0.000000 -0.999577 -0.029084\nvn 0.121285 -0.988037 0.095251\nvn 0.119847 -0.988411 0.093174\nvn 0.119726 -0.988388 0.093571\nvn 0.119726 -0.988388 0.093571\nvn 0.121529 -0.987823 0.097143\nvn 0.121285 -0.988037 0.095251\nvn 0.129492 -0.985119 0.113012\nvn 0.121285 -0.988037 0.095251\nvn 0.121529 -0.987823 0.097143\nvn 0.121529 -0.987823 0.097143\nvn 0.138037 -0.982522 0.124883\nvn 0.129492 -0.985119 0.113012\nvn 0.129492 -0.985119 0.113012\nvn 0.138037 -0.982522 0.124883\nvn 0.147501 -0.979647 0.136148\nvn -0.148840 0.979802 -0.133550\nvn -0.148840 0.979802 -0.133550\nvn -0.148840 0.979802 -0.133550\nvn -0.103641 -0.245859 -0.963749\nvn -0.098334 -0.230819 -0.968015\nvn -0.105535 -0.224651 -0.968708\nvn -0.105535 -0.224651 -0.968708\nvn -0.102819 -0.243146 -0.964525\nvn -0.103641 -0.245859 -0.963749\nvn -0.117530 -0.025972 -0.992730\nvn -0.105535 -0.224651 -0.968708\nvn -0.098334 -0.230819 -0.968015\nvn -0.098334 -0.230819 -0.968015\nvn -0.037844 -0.297225 -0.954057\nvn -0.117530 -0.025972 -0.992730\nvn -0.105535 -0.224651 -0.968708\nvn -0.117530 -0.025972 -0.992730\nvn 0.001831 -0.029634 -0.999559\nvn 0.001831 -0.029634 -0.999559\nvn 0.096654 -0.149696 -0.983996\nvn -0.105535 -0.224651 -0.968708\nvn -0.102819 -0.243146 -0.964525\nvn -0.105535 -0.224651 -0.968708\nvn 0.096654 -0.149696 -0.983996\nvn 0.096654 -0.149696 -0.983996\nvn 0.090886 -0.199411 -0.975692\nvn -0.102819 -0.243146 -0.964525\nvn -0.102819 -0.243146 -0.964525\nvn 0.090886 -0.199411 -0.975692\nvn 0.069095 -0.322340 -0.944099\nvn 0.069095 -0.322340 -0.944099\nvn -0.096441 -0.411950 -0.906088\nvn -0.102819 -0.243146 -0.964525\nvn -0.103641 -0.245859 -0.963749\nvn -0.102819 -0.243146 -0.964525\nvn -0.096441 -0.411950 -0.906088\nvn -0.096441 -0.411950 -0.906088\nvn -0.104008 -0.379075 -0.919502\nvn -0.103641 -0.245859 -0.963749\nvn 0.495699 -0.712692 0.496339\nvn 0.495821 -0.726121 0.476350\nvn 0.497123 -0.722108 0.481070\nvn 0.497123 -0.722108 0.481070\nvn 0.590918 -0.588049 0.552281\nvn 0.495699 -0.712692 0.496339\nvn 0.483453 -0.683231 0.547238\nvn 0.495699 -0.712692 0.496339\nvn 0.590918 -0.588049 0.552281\nvn 0.590918 -0.588049 0.552281\nvn 0.529601 -0.591891 0.607608\nvn 0.483453 -0.683231 0.547238\nvn 0.164407 -0.972984 0.162088\nvn 0.164135 -0.972994 0.162303\nvn 0.166880 -0.968650 0.184031\nvn 0.162971 -0.974740 0.152716\nvn 0.164135 -0.972994 0.162303\nvn 0.164407 -0.972984 0.162088\nvn 0.166880 -0.968650 0.184031\nvn 0.169473 -0.967944 0.185373\nvn 0.164407 -0.972984 0.162088\nvn 0.169473 -0.967944 0.185373\nvn 0.166880 -0.968650 0.184031\nvn 0.145028 -0.964961 0.218671\nvn 0.386619 -0.659858 0.644293\nvn 0.483453 -0.683231 0.547238\nvn 0.529601 -0.591891 0.607608\nvn 0.145028 -0.964961 0.218671\nvn 0.143960 -0.965142 0.218579\nvn 0.169473 -0.967944 0.185373\nvn 0.529601 -0.591891 0.607608\nvn 0.420857 -0.581722 0.696046\nvn 0.386619 -0.659858 0.644293\nvn 0.386619 -0.659858 0.644293\nvn 0.420857 -0.581722 0.696046\nvn 0.223402 -0.553989 0.801990\nvn 0.223402 -0.553989 0.801990\nvn 0.211281 -0.615745 0.759091\nvn 0.386619 -0.659858 0.644293\nvn 0.164407 -0.972984 0.162088\nvn 0.161937 -0.975249 0.150553\nvn 0.162971 -0.974740 0.152716\nvn 0.000000 -0.603554 0.797322\nvn 0.211281 -0.615745 0.759091\nvn 0.223402 -0.553989 0.801990\nvn 0.077793 -0.956616 0.280774\nvn 0.082493 -0.956097 0.281201\nvn 0.000489 -0.953147 0.302507\nvn 0.077793 -0.956616 0.280774\nvn 0.143960 -0.965142 0.218579\nvn 0.145028 -0.964961 0.218671\nvn 0.145028 -0.964961 0.218671\nvn 0.082493 -0.956097 0.281201\nvn 0.077793 -0.956616 0.280774\nvn 0.000489 -0.953147 0.302507\nvn 0.000611 -0.953138 0.302535\nvn 0.077793 -0.956616 0.280774\nvn 0.223402 -0.553989 0.801990\nvn 0.000000 -0.543459 0.839436\nvn 0.000000 -0.603554 0.797322\nvn 0.590918 -0.588049 0.552281\nvn 0.699034 -0.188423 0.689817\nvn 0.734472 -0.358629 0.576139\nvn 0.734472 -0.358629 0.576139\nvn 0.673337 -0.462543 0.576776\nvn 0.590918 -0.588049 0.552281\nvn 0.673337 -0.462543 0.576776\nvn 0.734472 -0.358629 0.576139\nvn 0.815451 -0.321920 0.481049\nvn 0.149910 0.933246 0.326464\nvn 0.091496 0.986652 0.134711\nvn -0.000000 0.991319 0.131476\nvn -0.000000 0.991319 0.131476\nvn -0.000000 0.944755 0.327777\nvn 0.149910 0.933246 0.326464\nvn -0.000000 0.872023 -0.489466\nvn -0.047794 0.871086 -0.488800\nvn -0.081394 0.814949 -0.573788\nvn -0.081394 0.814949 -0.573788\nvn -0.000000 0.805369 -0.592773\nvn -0.000000 0.872023 -0.489466\nvn -0.000000 0.805369 -0.592773\nvn -0.081394 0.814949 -0.573788\nvn -0.123388 0.717409 -0.685639\nvn -0.123388 0.717409 -0.685639\nvn -0.000000 0.714786 -0.699343\nvn -0.000000 0.805369 -0.592773\nvn 0.000030 0.707244 -0.706969\nvn -0.000000 0.714786 -0.699343\nvn -0.123388 0.717409 -0.685639\nvn 0.226454 -0.381858 0.896049\nvn 0.000000 -0.378190 0.925728\nvn 0.000000 -0.462541 0.886598\nvn 0.000000 -0.462541 0.886598\nvn 0.223798 -0.467860 0.854998\nvn 0.226454 -0.381858 0.896049\nvn 0.223402 -0.553989 0.801990\nvn 0.223798 -0.467860 0.854998\nvn 0.000000 -0.462541 0.886598\nvn 0.000000 -0.462541 0.886598\nvn 0.000000 -0.543459 0.839436\nvn 0.223402 -0.553989 0.801990\nvn 0.000000 -0.378190 0.925728\nvn 0.226454 -0.381858 0.896049\nvn 0.229534 -0.289809 0.929153\nvn 0.229534 -0.289809 0.929153\nvn 0.000000 -0.288831 0.957380\nvn 0.000000 -0.378190 0.925728\nvn 0.000000 -0.288831 0.957380\nvn 0.229534 -0.289809 0.929153\nvn 0.235483 -0.036378 0.971198\nvn 0.235483 -0.036378 0.971198\nvn 0.000000 -0.035249 0.999379\nvn 0.000000 -0.288831 0.957380\nvn 0.345665 -0.199110 -0.916990\nvn 0.340628 -0.197095 -0.919308\nvn 0.344802 -0.200142 -0.917090\nvn 0.345665 -0.199110 -0.916990\nvn 0.344802 -0.200142 -0.917090\nvn 0.348075 -0.198010 -0.916317\nvn 0.344802 -0.200142 -0.917090\nvn 0.344775 -0.200144 -0.917100\nvn 0.348075 -0.198010 -0.916317\nvn 0.345665 -0.199110 -0.916990\nvn 0.348075 -0.198010 -0.916317\nvn 0.350640 -0.201613 -0.914551\nvn 0.348075 -0.198010 -0.916317\nvn 0.333056 -0.211406 -0.918902\nvn 0.350640 -0.201613 -0.914551\nvn 0.348075 -0.198010 -0.916317\nvn 0.350666 -0.198406 -0.915242\nvn 0.333056 -0.211406 -0.918902\nvn 0.333056 -0.211406 -0.918902\nvn 0.250475 -0.282368 -0.926029\nvn 0.350640 -0.201613 -0.914551\nvn 0.250475 -0.282368 -0.926029\nvn 0.560146 -0.129462 -0.818215\nvn 0.350640 -0.201613 -0.914551\nvn 0.345665 -0.199110 -0.916990\nvn 0.350640 -0.201613 -0.914551\nvn 0.341418 -0.197764 -0.918871\nvn 0.885734 -0.463315 0.028536\nvn 0.890328 -0.445698 -0.093113\nvn 0.890745 -0.444945 -0.092719\nvn 0.885734 -0.463315 0.028536\nvn 0.890745 -0.444945 -0.092719\nvn 0.897962 -0.432119 -0.083286\nvn 0.885734 -0.463315 0.028536\nvn 0.897962 -0.432119 -0.083286\nvn 0.912958 -0.407709 -0.016786\nvn 0.885734 -0.463315 0.028536\nvn 0.912958 -0.407709 -0.016786\nvn 0.845935 -0.478176 0.236097\nvn 0.912958 -0.407709 -0.016786\nvn 0.902087 -0.431084 0.020143\nvn 0.845935 -0.478176 0.236097\nvn 0.912958 -0.407709 -0.016786\nvn 0.902025 -0.431205 0.020326\nvn 0.902087 -0.431084 0.020143\nvn 0.885734 -0.463315 0.028536\nvn 0.845935 -0.478176 0.236097\nvn 0.832253 -0.474326 0.287001\nvn 0.839121 -0.484947 0.246380\nvn 0.855123 -0.439509 0.274949\nvn 0.892171 -0.445307 0.075718\nvn 0.396288 -0.886574 -0.238627\nvn 0.471893 -0.808706 -0.351158\nvn 0.447599 -0.844078 -0.295276\nvn 0.855123 -0.439509 0.274949\nvn 0.839121 -0.484947 0.246380\nvn 0.839789 -0.483633 0.246684\nvn 0.839789 -0.483633 0.246684\nvn 0.869188 -0.445306 0.214978\nvn 0.855123 -0.439509 0.274949\nvn 0.584964 -0.628485 -0.512664\nvn 0.447599 -0.844078 -0.295276\nvn 0.471893 -0.808706 -0.351158\nvn 0.471893 -0.808706 -0.351158\nvn 0.586745 -0.581648 -0.563397\nvn 0.584964 -0.628485 -0.512664\nvn 0.839121 -0.484947 0.246380\nvn 0.799824 -0.540103 0.261857\nvn 0.804217 -0.533601 0.261734\nvn 0.804217 -0.533601 0.261734\nvn 0.839789 -0.483633 0.246684\nvn 0.839121 -0.484947 0.246380\nvn 0.651652 -0.250076 -0.716109\nvn 0.584964 -0.628485 -0.512664\nvn 0.586745 -0.581648 -0.563397\nvn 0.586745 -0.581648 -0.563397\nvn 0.638949 -0.230236 -0.733986\nvn 0.651652 -0.250076 -0.716109\nvn 0.614097 0.033693 -0.788511\nvn 0.651652 -0.250076 -0.716109\nvn 0.638949 -0.230236 -0.733986\nvn 0.638949 -0.230236 -0.733986\nvn 0.600952 0.016603 -0.799113\nvn 0.614097 0.033693 -0.788511\nvn 0.803107 -0.538141 0.255780\nvn 0.843114 -0.464039 0.271710\nvn 0.843007 -0.466092 0.268510\nvn 0.843007 -0.466092 0.268510\nvn 0.821643 -0.513061 0.248336\nvn 0.803107 -0.538141 0.255780\nvn 0.799824 -0.540103 0.261857\nvn 0.803107 -0.538141 0.255780\nvn 0.821643 -0.513061 0.248336\nvn 0.821643 -0.513061 0.248336\nvn 0.804217 -0.533601 0.261734\nvn 0.799824 -0.540103 0.261857\nvn 0.618712 0.110937 -0.777746\nvn 0.614097 0.033693 -0.788511\nvn 0.600952 0.016603 -0.799113\nvn 0.600952 0.016603 -0.799113\nvn 0.618993 0.106207 -0.778182\nvn 0.618712 0.110937 -0.777746\nvn 0.843114 -0.464039 0.271710\nvn 0.845570 -0.449550 0.287950\nvn 0.845698 -0.451018 0.285267\nvn 0.845698 -0.451018 0.285267\nvn 0.843007 -0.466092 0.268510\nvn 0.843114 -0.464039 0.271710\nvn 0.533267 0.784046 -0.317647\nvn 0.590711 0.648821 -0.479680\nvn 0.611364 0.618963 -0.493071\nvn 0.611364 0.618963 -0.493071\nvn 0.587286 0.696790 -0.411799\nvn 0.533267 0.784046 -0.317647\nvn 0.474047 0.857180 -0.201302\nvn 0.533267 0.784046 -0.317647\nvn 0.587286 0.696790 -0.411799\nvn 0.890777 -0.442016 0.105537\nvn 0.924398 -0.360585 0.124366\nvn 0.916380 -0.361992 0.170909\nvn 0.843471 -0.440764 0.307058\nvn 0.916380 -0.361992 0.170909\nvn 0.832253 -0.474326 0.287001\nvn 0.832253 -0.474326 0.287001\nvn 0.845186 -0.435075 0.310437\nvn 0.843471 -0.440764 0.307058\nvn 0.845570 -0.449550 0.287950\nvn 0.843471 -0.440764 0.307058\nvn 0.845186 -0.435075 0.310437\nvn 0.845186 -0.435075 0.310437\nvn 0.845698 -0.451018 0.285267\nvn 0.845570 -0.449550 0.287950\nvn 0.832253 -0.474326 0.287001\nvn 0.869188 -0.445306 0.214978\nvn 0.885734 -0.463315 0.028536\nvn 0.890328 -0.445698 -0.093113\nvn 0.885734 -0.463315 0.028536\nvn 0.869188 -0.445306 0.214978\nvn 0.045046 0.908007 0.416526\nvn 0.059634 0.775980 0.627932\nvn 0.056215 0.836090 0.545705\nvn 0.067936 0.700481 0.710430\nvn 0.056215 0.836090 0.545705\nvn 0.059634 0.775980 0.627932\nvn 0.059634 0.775980 0.627932\nvn 0.063358 0.695419 0.715806\nvn 0.067936 0.700481 0.710430\nvn 0.047030 -0.058322 0.997189\nvn 0.054567 0.043489 0.997563\nvn 0.051242 0.033236 0.998133\nvn 0.051242 0.033236 0.998133\nvn 0.039614 -0.139870 0.989377\nvn 0.047030 -0.058322 0.997189\nvn 0.034029 -0.300308 0.953235\nvn 0.047030 -0.058322 0.997189\nvn 0.039614 -0.139870 0.989377\nvn 0.039614 -0.139870 0.989377\nvn 0.034944 -0.356188 0.933761\nvn 0.034029 -0.300308 0.953235\nvn 0.035707 -0.431321 0.901492\nvn 0.034029 -0.300308 0.953235\nvn 0.034944 -0.356188 0.933761\nvn 0.034944 -0.356188 0.933761\nvn 0.036288 -0.429315 0.902426\nvn 0.035707 -0.431321 0.901492\nvn 0.040591 -0.810836 0.583864\nvn 0.037356 -0.807077 0.589263\nvn 0.038577 -0.879962 0.473476\nvn 0.038577 -0.879962 0.473476\nvn 0.040561 -0.878932 0.475220\nvn 0.040591 -0.810836 0.583864\nvn 0.037417 -0.942283 0.332721\nvn 0.040561 -0.878932 0.475220\nvn 0.038577 -0.879962 0.473476\nvn 0.845186 -0.435075 0.310437\nvn 0.832253 -0.474326 0.287001\nvn 0.845935 -0.478176 0.236097\nvn -0.132578 0.708423 -0.693224\nvn -0.123388 0.717409 -0.685639\nvn -0.247967 0.727145 -0.640135\nvn -0.123388 0.717409 -0.685639\nvn -0.132578 0.708423 -0.693224\nvn 0.000030 0.707244 -0.706969\nvn 0.554756 0.511784 -0.655990\nvn 0.878489 0.277296 -0.389056\nvn 0.760640 0.450317 -0.467591\nvn 0.554756 0.511784 -0.655990\nvn 0.760640 0.450317 -0.467591\nvn 0.495511 0.606022 -0.622258\nvn 0.495511 0.606022 -0.622258\nvn 0.497832 0.382378 -0.778428\nvn 0.554756 0.511784 -0.655990\nvn 0.533355 0.513793 -0.671974\nvn 0.497832 0.382378 -0.778428\nvn 0.495511 0.606022 -0.622258\nvn 0.495511 0.606022 -0.622258\nvn 0.520536 0.703071 -0.484493\nvn 0.533355 0.513793 -0.671974\nvn 0.803907 0.031221 -0.593935\nvn 0.804482 0.032137 -0.593107\nvn 0.804498 0.007081 -0.593913\nvn 0.804498 0.007081 -0.593913\nvn 0.804147 0.009186 -0.594359\nvn 0.803907 0.031221 -0.593935\nvn 0.801529 -0.011628 -0.597843\nvn 0.804147 0.009186 -0.594359\nvn 0.804498 0.007081 -0.593913\nvn 0.804498 0.007081 -0.593913\nvn 0.917402 0.068882 -0.391956\nvn 0.801529 -0.011628 -0.597843\nvn 0.803992 -0.021119 -0.594265\nvn 0.801529 -0.011628 -0.597843\nvn 0.917402 0.068882 -0.391956\nvn 0.917402 0.068882 -0.391956\nvn 0.919833 0.048769 -0.389266\nvn 0.803992 -0.021119 -0.594265\nvn 0.803992 -0.021119 -0.594265\nvn 0.919833 0.048769 -0.389266\nvn 0.898740 -0.068669 -0.433072\nvn 0.898740 -0.068669 -0.433072\nvn 0.780861 -0.173928 -0.600005\nvn 0.803992 -0.021119 -0.594265\nvn 0.780861 -0.173928 -0.600005\nvn 0.898740 -0.068669 -0.433072\nvn 0.844525 -0.370898 -0.386280\nvn 0.844525 -0.370898 -0.386280\nvn 0.738284 -0.306685 -0.600735\nvn 0.780861 -0.173928 -0.600005\nvn 0.788430 -0.343004 -0.510615\nvn 0.738284 -0.306685 -0.600735\nvn 0.844525 -0.370898 -0.386280\nvn 0.844525 -0.370898 -0.386280\nvn 0.851341 -0.405176 -0.333242\nvn 0.788430 -0.343004 -0.510615\nvn 0.788430 -0.343004 -0.510615\nvn 0.851341 -0.405176 -0.333242\nvn 0.903249 -0.408958 -0.129982\nvn 0.903249 -0.408958 -0.129982\nvn 0.914909 -0.380454 -0.134895\nvn 0.788430 -0.343004 -0.510615\nvn -0.406031 -0.185955 -0.894740\nvn -0.387166 -0.152993 -0.909228\nvn -0.372672 -0.162485 -0.913627\nvn -0.372672 -0.162485 -0.913627\nvn -0.379421 -0.155040 -0.912142\nvn -0.406031 -0.185955 -0.894740\nvn -0.406031 -0.185955 -0.894740\nvn -0.379421 -0.155040 -0.912142\nvn -0.426870 -0.188242 -0.884504\nvn -0.426870 -0.188242 -0.884504\nvn -0.440151 -0.190594 -0.877463\nvn -0.406031 -0.185955 -0.894740\nvn -0.440151 -0.190594 -0.877463\nvn -0.426870 -0.188242 -0.884504\nvn -0.430844 -0.168956 -0.886469\nvn -0.430844 -0.168956 -0.886469\nvn -0.425588 -0.166604 -0.889448\nvn -0.440151 -0.190594 -0.877463\nvn -0.425588 -0.166604 -0.889448\nvn -0.430844 -0.168956 -0.886469\nvn -0.419728 -0.176766 -0.890271\nvn -0.419728 -0.176766 -0.890271\nvn -0.411463 -0.175029 -0.894463\nvn -0.425588 -0.166604 -0.889448\nvn -0.411463 -0.175029 -0.894463\nvn -0.419728 -0.176766 -0.890271\nvn -0.401605 -0.170970 -0.899713\nvn -0.401605 -0.170970 -0.899713\nvn -0.396348 -0.151618 -0.905494\nvn -0.411463 -0.175029 -0.894463\nvn -0.396348 -0.151618 -0.905494\nvn -0.401605 -0.170970 -0.899713\nvn -0.387435 -0.141424 -0.910985\nvn -0.387435 -0.141424 -0.910985\nvn -0.382830 -0.123633 -0.915509\nvn -0.396348 -0.151618 -0.905494\nvn -0.382830 -0.123633 -0.915509\nvn -0.387435 -0.141424 -0.910985\nvn -0.374831 -0.118657 -0.919468\nvn -0.374831 -0.118657 -0.919468\nvn -0.397694 -0.094457 -0.912643\nvn -0.382830 -0.123633 -0.915509\nvn -0.372672 -0.162485 -0.913627\nvn -0.387166 -0.152993 -0.909228\nvn -0.459708 -0.140388 -0.876903\nvn -0.459708 -0.140388 -0.876903\nvn -0.386283 -0.204052 -0.899527\nvn -0.372672 -0.162485 -0.913627\nvn -0.487112 -0.129706 -0.863654\nvn -0.386283 -0.204052 -0.899527\nvn -0.459708 -0.140388 -0.876903\nvn -0.487112 -0.129706 -0.863654\nvn -0.492185 -0.136452 -0.859729\nvn -0.386283 -0.204052 -0.899527\nvn -0.487112 -0.129706 -0.863654\nvn -0.459708 -0.140388 -0.876903\nvn -0.483426 -0.127724 -0.866017\nvn -0.493350 -0.081610 -0.865994\nvn -0.492185 -0.136452 -0.859729\nvn -0.487112 -0.129706 -0.863654\nvn -0.397694 -0.094457 -0.912643\nvn -0.374831 -0.118657 -0.919468\nvn -0.493350 -0.081610 -0.865994\nvn -0.493350 -0.081610 -0.865994\nvn -0.487112 -0.129706 -0.863654\nvn -0.465053 -0.077123 -0.881917\nvn -0.493350 -0.081610 -0.865994\nvn -0.435845 -0.081883 -0.896289\nvn -0.397694 -0.094457 -0.912643\nvn -0.493350 -0.081610 -0.865994\nvn -0.465053 -0.077123 -0.881917\nvn -0.435845 -0.081883 -0.896289\nvn -0.298873 0.915021 0.270948\nvn -0.267105 0.956840 0.114508\nvn -0.379591 0.923311 0.058382\nvn -0.379591 0.923311 0.058382\nvn -0.417747 0.883318 0.212688\nvn -0.298873 0.915021 0.270948\nvn -0.417747 0.883318 0.212688\nvn -0.379591 0.923311 0.058382\nvn -0.176277 0.958534 -0.223917\nvn -0.176277 0.958534 -0.223917\nvn -0.267225 0.961625 -0.062198\nvn -0.417747 0.883318 0.212688\nvn -0.091497 0.986652 0.134711\nvn -0.267105 0.956840 0.114508\nvn -0.298873 0.915021 0.270948\nvn -0.298873 0.915021 0.270948\nvn -0.149911 0.933246 0.326464\nvn -0.091497 0.986652 0.134711\nvn 0.058536 0.915581 -0.397851\nvn 0.047793 0.871086 -0.488800\nvn 0.081394 0.814949 -0.573788\nvn 0.081394 0.814949 -0.573788\nvn 0.121436 0.855486 -0.503385\nvn 0.058536 0.915581 -0.397851\nvn 0.121436 0.855486 -0.503385\nvn 0.081394 0.814949 -0.573788\nvn 0.123603 0.717569 -0.685432\nvn 0.123603 0.717569 -0.685432\nvn 0.247571 0.727302 -0.640109\nvn 0.121436 0.855486 -0.503385\nvn -0.176277 0.958534 -0.223917\nvn 0.033937 0.911484 -0.409933\nvn 0.120429 0.856739 -0.501494\nvn 0.058536 0.915581 -0.397851\nvn 0.121436 0.855486 -0.503385\nvn 0.120429 0.856739 -0.501494\nvn 0.120429 0.856739 -0.501494\nvn 0.033937 0.911484 -0.409933\nvn 0.058536 0.915581 -0.397851\nvn 0.120429 0.856739 -0.501494\nvn 0.096135 0.899275 -0.426687\nvn -0.176277 0.958534 -0.223917\nvn 0.190226 0.864243 -0.465723\nvn 0.096135 0.899275 -0.426687\nvn 0.120429 0.856739 -0.501494\nvn 0.096135 0.899275 -0.426687\nvn 0.190226 0.864243 -0.465723\nvn 0.197919 0.894376 -0.401149\nvn 0.197919 0.894376 -0.401149\nvn 0.109838 0.922228 -0.370716\nvn 0.096135 0.899275 -0.426687\nvn -0.176277 0.958534 -0.223917\nvn 0.096135 0.899275 -0.426687\nvn 0.109838 0.922228 -0.370716\nvn 0.074803 0.948638 -0.307393\nvn 0.109838 0.922228 -0.370716\nvn 0.197919 0.894376 -0.401149\nvn 0.197919 0.894376 -0.401149\nvn 0.206154 0.916171 -0.343702\nvn 0.074803 0.948638 -0.307393\nvn 0.055147 0.995925 -0.071353\nvn 0.074803 0.948638 -0.307393\nvn 0.206154 0.916171 -0.343702\nvn 0.074803 0.948638 -0.307393\nvn 0.055147 0.995925 -0.071353\nvn -0.032167 0.990610 -0.132879\nvn -0.032167 0.990610 -0.132879\nvn -0.110540 0.965467 -0.235912\nvn 0.074803 0.948638 -0.307393\nvn 0.109838 0.922228 -0.370716\nvn 0.074803 0.948638 -0.307393\nvn -0.110540 0.965467 -0.235912\nvn 0.206154 0.916171 -0.343702\nvn 0.317096 0.937831 -0.141152\nvn 0.055147 0.995925 -0.071353\nvn -0.110540 0.965467 -0.235912\nvn -0.154032 0.959503 -0.235855\nvn 0.109838 0.922228 -0.370716\nvn -0.255473 0.959024 -0.122503\nvn -0.154032 0.959503 -0.235855\nvn -0.110540 0.965467 -0.235912\nvn -0.110540 0.965467 -0.235912\nvn -0.450008 0.891195 -0.057132\nvn -0.255473 0.959024 -0.122503\nvn -0.450008 0.891195 -0.057132\nvn -0.110540 0.965467 -0.235912\nvn -0.032167 0.990610 -0.132879\nvn -0.032167 0.990610 -0.132879\nvn -0.545444 0.832174 -0.099890\nvn -0.450008 0.891195 -0.057132\nvn -0.764574 0.618996 -0.179638\nvn -0.790503 0.589810 -0.165016\nvn -0.873100 0.475309 -0.108527\nvn -0.407674 0.849224 -0.335588\nvn -0.566279 0.787175 -0.244304\nvn -0.318347 0.912618 -0.256484\nvn -0.566279 0.787175 -0.244304\nvn -0.407674 0.849224 -0.335588\nvn -0.486934 0.789959 -0.372640\nvn -0.486934 0.789959 -0.372640\nvn -0.523252 0.779979 -0.343280\nvn -0.566279 0.787175 -0.244304\nvn 0.109838 0.922228 -0.370716\nvn -0.154032 0.959503 -0.235855\nvn -0.176277 0.958534 -0.223917\nvn -0.523252 0.779979 -0.343280\nvn -0.486934 0.789959 -0.372640\nvn -0.340142 0.835568 -0.431427\nvn -0.340142 0.835568 -0.431427\nvn -0.380082 0.825291 -0.417651\nvn -0.523252 0.779979 -0.343280\nvn -0.380082 0.825291 -0.417651\nvn -0.340142 0.835568 -0.431427\nvn -0.343498 0.796347 -0.497835\nvn -0.343498 0.796347 -0.497835\nvn -0.400416 0.782214 -0.477294\nvn -0.380082 0.825291 -0.417651\nvn -0.400416 0.782214 -0.477294\nvn -0.343498 0.796347 -0.497835\nvn -0.760640 0.450317 -0.467591\nvn -0.267225 0.961625 -0.062198\nvn -0.176277 0.958534 -0.223917\nvn -0.154032 0.959503 -0.235855\nvn -0.154032 0.959503 -0.235855\nvn -0.255473 0.959024 -0.122503\nvn -0.267225 0.961625 -0.062198\nvn 0.496461 0.781606 -0.377649\nvn 0.719002 0.647405 -0.252791\nvn 0.317096 0.937831 -0.141152\nvn 0.317096 0.937831 -0.141152\nvn 0.206154 0.916171 -0.343702\nvn 0.496461 0.781606 -0.377649\nvn 0.719002 0.647405 -0.252791\nvn 0.496461 0.781606 -0.377649\nvn 0.719654 0.542427 -0.433441\nvn 0.719654 0.542427 -0.433441\nvn 0.856469 0.459868 -0.234481\nvn 0.719002 0.647405 -0.252791\nvn 0.496461 0.781606 -0.377649\nvn 0.206154 0.916171 -0.343702\nvn 0.254712 0.885085 -0.389546\nvn 0.496461 0.781606 -0.377649\nvn 0.726516 0.529879 -0.437497\nvn 0.719654 0.542427 -0.433441\nvn 0.206154 0.916171 -0.343702\nvn 0.197919 0.894376 -0.401149\nvn 0.254712 0.885085 -0.389546\nvn 0.205000 0.864924 -0.458129\nvn 0.254712 0.885085 -0.389546\nvn 0.197919 0.894376 -0.401149\nvn 0.197919 0.894376 -0.401149\nvn 0.190226 0.864243 -0.465723\nvn 0.205000 0.864924 -0.458129\nvn 0.205000 0.864924 -0.458129\nvn 0.190226 0.864243 -0.465723\nvn 0.276749 0.757733 -0.590975\nvn 0.120429 0.856739 -0.501494\nvn 0.276749 0.757733 -0.590975\nvn 0.190226 0.864243 -0.465723\nvn 0.276749 0.757733 -0.590975\nvn 0.120429 0.856739 -0.501494\nvn 0.121436 0.855486 -0.503385\nvn 0.121436 0.855486 -0.503385\nvn 0.247571 0.727302 -0.640109\nvn 0.276749 0.757733 -0.590975\nvn 0.276749 0.757733 -0.590975\nvn 0.296064 0.752628 -0.588131\nvn 0.205000 0.864924 -0.458129\nvn 0.257645 0.719770 -0.644632\nvn 0.296064 0.752628 -0.588131\nvn 0.276749 0.757733 -0.590975\nvn 0.276749 0.757733 -0.590975\nvn 0.247571 0.727302 -0.640109\nvn 0.257645 0.719770 -0.644632\nvn 0.257645 0.719770 -0.644632\nvn 0.247571 0.727302 -0.640109\nvn 0.123603 0.717569 -0.685432\nvn 0.123603 0.717569 -0.685432\nvn 0.081394 0.814949 -0.573788\nvn -0.000000 0.805369 -0.592773\nvn -0.000000 0.805369 -0.592773\nvn -0.000000 0.714786 -0.699343\nvn 0.123603 0.717569 -0.685432\nvn -0.000000 0.872023 -0.489466\nvn -0.000000 0.805369 -0.592773\nvn 0.081394 0.814949 -0.573788\nvn 0.081394 0.814949 -0.573788\nvn 0.047793 0.871086 -0.488800\nvn -0.000000 0.872023 -0.489466\nvn -0.000000 0.991319 0.131476\nvn -0.091497 0.986652 0.134711\nvn -0.149911 0.933246 0.326464\nvn -0.149911 0.933246 0.326464\nvn -0.000000 0.944755 0.327777\nvn -0.000000 0.991319 0.131476\nvn -0.000000 0.714786 -0.699343\nvn 0.000030 0.707244 -0.706969\nvn 0.133309 0.708112 -0.693402\nvn -0.003662 -0.999978 -0.005554\nvn 0.000000 -0.999938 -0.011109\nvn -0.151739 -0.988382 -0.008698\nvn -0.003662 -0.999978 -0.005554\nvn -0.151739 -0.988382 -0.008698\nvn -0.037141 -0.999283 0.007386\nvn -0.151739 -0.988382 -0.008698\nvn -0.131811 -0.991044 0.021394\nvn -0.037141 -0.999283 0.007386\nvn -0.003662 -0.999978 -0.005554\nvn -0.037141 -0.999283 0.007386\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000336\nvn -0.037141 -0.999283 0.007386\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000092\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000397\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000397\nvn -0.003662 -0.999978 -0.005554\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000397\nvn 0.000000 -1.000000 0.000397\nvn 0.000000 -1.000000 0.000397\nvn 0.000000 -1.000000 0.000397\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000336\nvn 0.000000 -1.000000 0.000397\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000092\nvn 0.000000 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000092\nvn -0.037141 -0.999283 0.007386\nvn 0.000031 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000122\nvn 0.000031 -1.000000 0.000122\nvn 0.000031 -1.000000 0.000122\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000031 -1.000000 0.000122\nvn 0.000031 -1.000000 0.000122\nvn -0.115789 -0.993274 0.000427\nvn 0.000000 -1.000000 0.000000\nvn -0.115789 -0.993274 0.000427\nvn 0.000031 -1.000000 0.000122\nvn -0.037141 -0.999283 0.007386\nvn -0.115789 -0.993274 0.000427\nvn -0.037141 -0.999283 0.007386\nvn -0.131811 -0.991044 0.021394\nvn -0.356615 -0.933824 -0.028261\nvn -0.115789 -0.993274 0.000427\nvn -0.131811 -0.991044 0.021394\nvn -0.131811 -0.991044 0.021394\nvn -0.151739 -0.988382 -0.008698\nvn -0.356615 -0.933824 -0.028261\nvn -0.851341 -0.405177 -0.333242\nvn -0.903248 -0.408959 -0.129982\nvn -0.869070 -0.480284 -0.118507\nvn -0.869070 -0.480284 -0.118507\nvn -0.876020 -0.461510 -0.139991\nvn -0.851341 -0.405177 -0.333242\nvn -0.851341 -0.405177 -0.333242\nvn -0.876020 -0.461510 -0.139991\nvn -0.908965 -0.384761 -0.160442\nvn -0.908965 -0.384761 -0.160442\nvn -0.844524 -0.370899 -0.386280\nvn -0.851341 -0.405177 -0.333242\nvn -0.844524 -0.370899 -0.386280\nvn -0.908965 -0.384761 -0.160442\nvn -0.912829 -0.377553 -0.155556\nvn -0.912829 -0.377553 -0.155556\nvn -0.897939 -0.419427 -0.133369\nvn -0.844524 -0.370899 -0.386280\nvn -0.963400 0.231762 -0.134712\nvn -0.956865 0.273909 -0.096868\nvn -0.956808 0.272719 -0.100713\nvn -0.956808 0.272719 -0.100713\nvn -0.966081 0.222392 -0.131262\nvn -0.963400 0.231762 -0.134712\nvn -0.963400 0.231762 -0.134712\nvn -0.966081 0.222392 -0.131262\nvn -0.971799 0.163431 -0.169993\nvn -0.971799 0.163431 -0.169993\nvn -0.969771 0.168220 -0.176766\nvn -0.963400 0.231762 -0.134712\nvn -0.969771 0.168220 -0.176766\nvn -0.971799 0.163431 -0.169993\nvn -0.968431 0.113042 -0.222179\nvn -0.968431 0.113042 -0.222179\nvn -0.966751 0.114568 -0.228618\nvn -0.969771 0.168220 -0.176766\nvn -0.966751 0.114568 -0.228618\nvn -0.968431 0.113042 -0.222179\nvn -0.949658 -0.127692 -0.286085\nvn -0.949658 -0.127692 -0.286085\nvn -0.952857 -0.087162 -0.290630\nvn -0.966751 0.114568 -0.228618\nvn -0.553433 0.732855 -0.395772\nvn -0.579497 0.740026 -0.341386\nvn -0.594849 0.728798 -0.339129\nvn -0.594849 0.728798 -0.339129\nvn -0.555027 0.729537 -0.399652\nvn -0.553433 0.732855 -0.395772\nvn -0.633773 0.705494 -0.317192\nvn -0.594849 0.728798 -0.339129\nvn -0.579497 0.740026 -0.341386\nvn -0.579497 0.740026 -0.341386\nvn -0.633625 0.705927 -0.316523\nvn -0.633773 0.705494 -0.317192\nvn -0.869624 -0.414669 -0.267962\nvn -0.852025 -0.440845 -0.282330\nvn -0.852132 -0.441005 -0.281755\nvn -0.852132 -0.441005 -0.281755\nvn -0.869456 -0.415242 -0.267621\nvn -0.869624 -0.414669 -0.267962\nvn -0.869624 -0.414669 -0.267962\nvn -0.869456 -0.415242 -0.267621\nvn -0.901010 -0.341721 -0.267224\nvn -0.901010 -0.341721 -0.267224\nvn -0.896531 -0.353534 -0.266921\nvn -0.869624 -0.414669 -0.267962\nvn -0.949658 -0.127692 -0.286085\nvn -0.896531 -0.353534 -0.266921\nvn -0.901010 -0.341721 -0.267224\nvn -0.901010 -0.341721 -0.267224\nvn -0.952857 -0.087162 -0.290630\nvn -0.949658 -0.127692 -0.286085\nvn -0.961272 0.252701 0.109992\nvn -0.954807 0.281260 0.096103\nvn -0.953610 0.289934 0.081029\nvn -0.953610 0.289934 0.081029\nvn -0.961990 0.256115 0.094762\nvn -0.961272 0.252701 0.109992\nvn -0.954807 0.281260 0.096103\nvn -0.961272 0.252701 0.109992\nvn -0.954248 0.248793 0.165872\nvn -0.954248 0.248793 0.165872\nvn -0.948503 0.273420 0.159950\nvn -0.954807 0.281260 0.096103\nvn -0.966694 0.177072 0.184793\nvn -0.954248 0.248793 0.165872\nvn -0.961272 0.252701 0.109992\nvn -0.961272 0.252701 0.109992\nvn -0.974440 0.182198 0.131415\nvn -0.966694 0.177072 0.184793\nvn -0.961272 0.252701 0.109992\nvn -0.961990 0.256115 0.094762\nvn -0.975124 0.186565 0.119697\nvn -0.975124 0.186565 0.119697\nvn -0.974440 0.182198 0.131415\nvn -0.961272 0.252701 0.109992\nvn -0.922013 0.304947 0.238537\nvn -0.948503 0.273420 0.159950\nvn -0.954248 0.248793 0.165872\nvn -0.954248 0.248793 0.165872\nvn -0.930479 0.279345 0.237014\nvn -0.922013 0.304947 0.238537\nvn -0.786758 0.577426 0.218152\nvn -0.922013 0.304947 0.238537\nvn -0.930479 0.279345 0.237014\nvn -0.930479 0.279345 0.237014\nvn -0.891190 0.339373 0.301010\nvn -0.786758 0.577426 0.218152\nvn -0.734142 0.596927 0.323596\nvn -0.786758 0.577426 0.218152\nvn -0.891190 0.339373 0.301010\nvn -0.891190 0.339373 0.301010\nvn -0.811450 0.426783 0.399255\nvn -0.734142 0.596927 0.323596\nvn -0.734142 0.596927 0.323596\nvn -0.811450 0.426783 0.399255\nvn -0.685249 0.496213 0.533110\nvn -0.685249 0.496213 0.533110\nvn -0.604252 0.657905 0.449489\nvn -0.734142 0.596927 0.323596\nvn -0.604252 0.657905 0.449489\nvn -0.685249 0.496213 0.533110\nvn -0.575378 0.515835 0.634708\nvn -0.575378 0.515835 0.634708\nvn -0.523624 0.666729 0.530368\nvn -0.604252 0.657905 0.449489\nvn -0.598109 0.361038 0.715484\nvn -0.575378 0.515835 0.634708\nvn -0.685249 0.496213 0.533110\nvn -0.685249 0.496213 0.533110\nvn -0.711437 0.369131 0.597996\nvn -0.598109 0.361038 0.715484\nvn -0.711437 0.369131 0.597996\nvn -0.685249 0.496213 0.533110\nvn -0.811450 0.426783 0.399255\nvn -0.811450 0.426783 0.399255\nvn -0.843610 0.329027 0.424338\nvn -0.711437 0.369131 0.597996\nvn -0.966694 0.177072 0.184793\nvn -0.974440 0.182198 0.131415\nvn -0.981191 0.120672 0.150673\nvn -0.981191 0.120672 0.150673\nvn -0.974440 0.182198 0.131415\nvn -0.975124 0.186565 0.119697\nvn -0.891190 0.339373 0.301010\nvn -0.930479 0.279345 0.237014\nvn -0.949088 0.196361 0.246321\nvn -0.949088 0.196361 0.246321\nvn -0.919825 0.243362 0.307727\nvn -0.891190 0.339373 0.301010\nvn -0.811450 0.426783 0.399255\nvn -0.891190 0.339373 0.301010\nvn -0.919825 0.243362 0.307727\nvn -0.919825 0.243362 0.307727\nvn -0.843610 0.329027 0.424338\nvn -0.811450 0.426783 0.399255\nvn -0.919825 0.243362 0.307727\nvn -0.949088 0.196361 0.246321\nvn -0.958987 0.117313 0.258035\nvn -0.958987 0.117313 0.258035\nvn -0.938405 0.133125 0.318865\nvn -0.919825 0.243362 0.307727\nvn -0.843610 0.329027 0.424338\nvn -0.919825 0.243362 0.307727\nvn -0.938405 0.133125 0.318865\nvn -0.938405 0.133125 0.318865\nvn -0.958987 0.117313 0.258035\nvn -0.961423 -0.029238 0.273515\nvn -0.961423 -0.029238 0.273515\nvn -0.941203 -0.029359 0.336563\nvn -0.938405 0.133125 0.318865\nvn -0.938405 0.133125 0.318865\nvn -0.873494 0.156411 0.461025\nvn -0.843610 0.329027 0.424338\nvn -0.873494 0.156411 0.461025\nvn -0.938405 0.133125 0.318865\nvn -0.941203 -0.029359 0.336563\nvn -0.941203 -0.029359 0.336563\nvn -0.876508 -0.035250 0.480096\nvn -0.873494 0.156411 0.461025\nvn -0.961423 -0.029238 0.273515\nvn -0.958987 0.117313 0.258035\nvn -0.973604 0.106021 0.202125\nvn -0.973604 0.106021 0.202125\nvn -0.958987 0.117313 0.258035\nvn -0.949088 0.196361 0.246321\nvn -0.973604 0.106021 0.202125\nvn -0.975372 -0.041507 0.216627\nvn -0.961423 -0.029238 0.273515\nvn -0.975372 -0.041507 0.216627\nvn -0.973604 0.106021 0.202125\nvn -0.981191 0.120672 0.150673\nvn -0.981191 0.120672 0.150673\nvn -0.979667 -0.117225 0.162820\nvn -0.975372 -0.041507 0.216627\nvn -0.747256 0.181893 0.639158\nvn -0.873494 0.156411 0.461025\nvn -0.876508 -0.035250 0.480096\nvn -0.598109 0.361038 0.715484\nvn -0.711437 0.369131 0.597996\nvn -0.747256 0.181893 0.639158\nvn -0.843610 0.329027 0.424338\nvn -0.873494 0.156411 0.461025\nvn -0.747256 0.181893 0.639158\nvn -0.747256 0.181893 0.639158\nvn -0.711437 0.369131 0.597996\nvn -0.843610 0.329027 0.424338\nvn -0.876508 -0.035250 0.480096\nvn -0.756261 -0.041476 0.652954\nvn -0.747256 0.181893 0.639158\nvn -0.747256 0.181893 0.639158\nvn -0.756261 -0.041476 0.652954\nvn -0.645784 -0.043032 0.762306\nvn -0.645784 -0.043032 0.762306\nvn -0.627513 0.207838 0.750354\nvn -0.747256 0.181893 0.639158\nvn -0.949088 0.196361 0.246321\nvn -0.966694 0.177072 0.184793\nvn -0.973604 0.106021 0.202125\nvn -0.981191 0.120672 0.150673\nvn -0.973604 0.106021 0.202125\nvn -0.966694 0.177072 0.184793\nvn -0.475957 0.230272 0.848787\nvn -0.627513 0.207838 0.750354\nvn -0.645784 -0.043032 0.762306\nvn -0.627513 0.207838 0.750354\nvn -0.475957 0.230272 0.848787\nvn -0.455006 0.374925 0.807713\nvn -0.223003 0.386249 0.895032\nvn -0.455006 0.374925 0.807713\nvn -0.475957 0.230272 0.848787\nvn -0.475957 0.230272 0.848787\nvn -0.229507 0.242447 0.942627\nvn -0.223003 0.386249 0.895032\nvn -0.229507 0.242447 0.942627\nvn -0.475957 0.230272 0.848787\nvn -0.487697 -0.040224 0.872086\nvn -0.645784 -0.043032 0.762306\nvn -0.487697 -0.040224 0.872086\nvn -0.475957 0.230272 0.848787\nvn -0.487697 -0.040224 0.872086\nvn -0.235483 -0.036378 0.971198\nvn -0.229507 0.242447 0.942627\nvn -0.455006 0.374925 0.807713\nvn -0.223003 0.386249 0.895032\nvn -0.216409 0.543723 0.810884\nvn -0.216409 0.543723 0.810884\nvn -0.442404 0.533930 0.720554\nvn -0.455006 0.374925 0.807713\nvn -0.442404 0.533930 0.720554\nvn -0.216409 0.543723 0.810884\nvn -0.210979 0.709051 0.672855\nvn -0.210979 0.709051 0.672855\nvn -0.409504 0.687136 0.600126\nvn -0.442404 0.533930 0.720554\nvn -0.455006 0.374925 0.807713\nvn -0.598109 0.361038 0.715484\nvn -0.627513 0.207838 0.750354\nvn -0.747256 0.181893 0.639158\nvn -0.627513 0.207838 0.750354\nvn -0.598109 0.361038 0.715484\nvn -0.442404 0.533930 0.720554\nvn -0.409504 0.687136 0.600126\nvn -0.523624 0.666729 0.530368\nvn -0.523624 0.666729 0.530368\nvn -0.575378 0.515835 0.634708\nvn -0.442404 0.533930 0.720554\nvn -0.455006 0.374925 0.807713\nvn -0.442404 0.533930 0.720554\nvn -0.575378 0.515835 0.634708\nvn -0.575378 0.515835 0.634708\nvn -0.598109 0.361038 0.715484\nvn -0.455006 0.374925 0.807713\nvn -0.223003 0.386249 0.895032\nvn -0.229507 0.242447 0.942627\nvn -0.000000 0.245127 0.969491\nvn -0.000000 0.245127 0.969491\nvn -0.229507 0.242447 0.942627\nvn -0.235483 -0.036378 0.971198\nvn -0.000000 0.245127 0.969491\nvn -0.000000 0.387807 0.921740\nvn -0.223003 0.386249 0.895032\nvn -0.216409 0.543723 0.810884\nvn -0.223003 0.386249 0.895032\nvn -0.000000 0.387807 0.921740\nvn -0.235483 -0.036378 0.971198\nvn 0.000000 -0.035249 0.999379\nvn -0.000000 0.245127 0.969491\nvn -0.210979 0.709051 0.672855\nvn -0.216409 0.543723 0.810884\nvn -0.000000 0.539972 0.841683\nvn -0.000000 0.387807 0.921740\nvn -0.000000 0.539972 0.841683\nvn -0.216409 0.543723 0.810884\nvn -0.000000 0.539972 0.841683\nvn -0.000000 0.710456 0.703742\nvn -0.210979 0.709051 0.672855\nvn -0.599757 0.752991 -0.270733\nvn -0.628419 0.746864 -0.217449\nvn -0.523252 0.779979 -0.343280\nvn -0.523252 0.779979 -0.343280\nvn -0.380082 0.825291 -0.417651\nvn -0.599757 0.752991 -0.270733\nvn -0.523252 0.779979 -0.343280\nvn -0.628419 0.746864 -0.217449\nvn -0.682501 0.724495 -0.096441\nvn -0.682501 0.724495 -0.096441\nvn -0.566279 0.787175 -0.244304\nvn -0.523252 0.779979 -0.343280\nvn -0.566279 0.787175 -0.244304\nvn -0.682501 0.724495 -0.096441\nvn -0.674073 0.738650 0.004669\nvn -0.674073 0.738650 0.004669\nvn -0.545444 0.832174 -0.099890\nvn -0.566279 0.787175 -0.244304\nvn -0.682501 0.724495 -0.096441\nvn -0.628419 0.746864 -0.217449\nvn -0.684364 0.714609 -0.144845\nvn -0.684364 0.714609 -0.144845\nvn -0.628419 0.746864 -0.217449\nvn -0.599757 0.752991 -0.270733\nvn -0.684364 0.714609 -0.144845\nvn -0.713562 0.699981 -0.029268\nvn -0.682501 0.724495 -0.096441\nvn -0.674073 0.738650 0.004669\nvn -0.682501 0.724495 -0.096441\nvn -0.713562 0.699981 -0.029268\nvn -0.599757 0.752991 -0.270733\nvn -0.598236 0.788828 -0.140937\nvn -0.684364 0.714609 -0.144845\nvn -0.450008 0.891195 -0.057132\nvn -0.545444 0.832174 -0.099890\nvn -0.674073 0.738650 0.004669\nvn -0.674073 0.738650 0.004669\nvn -0.642457 0.760595 0.093510\nvn -0.450008 0.891195 -0.057132\nvn -0.642457 0.760595 0.093510\nvn -0.674073 0.738650 0.004669\nvn -0.686192 0.725042 0.058780\nvn -0.713562 0.699981 -0.029268\nvn -0.686192 0.725042 0.058780\nvn -0.674073 0.738650 0.004669\nvn -0.686192 0.725042 0.058780\nvn -0.786758 0.577426 0.218152\nvn -0.642457 0.760595 0.093510\nvn -0.642457 0.760595 0.093510\nvn -0.786758 0.577426 0.218152\nvn -0.734142 0.596927 0.323596\nvn -0.734142 0.596927 0.323596\nvn -0.612516 0.771489 0.172127\nvn -0.642457 0.760595 0.093510\nvn -0.450008 0.891195 -0.057132\nvn -0.642457 0.760595 0.093510\nvn -0.612516 0.771489 0.172127\nvn -0.612516 0.771489 0.172127\nvn -0.638586 0.759350 0.124885\nvn -0.450008 0.891195 -0.057132\nvn -0.638586 0.759350 0.124885\nvn -0.612516 0.771489 0.172127\nvn -0.519440 0.802720 0.292955\nvn -0.519440 0.802720 0.292955\nvn -0.612516 0.771489 0.172127\nvn -0.734142 0.596927 0.323596\nvn -0.519440 0.802720 0.292955\nvn -0.577848 0.782753 0.231060\nvn -0.638586 0.759350 0.124885\nvn -0.577848 0.782753 0.231060\nvn -0.519440 0.802720 0.292955\nvn -0.497277 0.770696 0.398426\nvn -0.497277 0.770696 0.398426\nvn -0.417747 0.883318 0.212688\nvn -0.577848 0.782753 0.231060\nvn -0.523624 0.666729 0.530368\nvn -0.497277 0.770696 0.398426\nvn -0.519440 0.802720 0.292955\nvn -0.356859 0.810890 0.463798\nvn -0.497277 0.770696 0.398426\nvn -0.523624 0.666729 0.530368\nvn -0.523624 0.666729 0.530368\nvn -0.409504 0.687136 0.600126\nvn -0.356859 0.810890 0.463798\nvn -0.356859 0.810890 0.463798\nvn -0.409504 0.687136 0.600126\nvn -0.210979 0.709051 0.672855\nvn -0.210979 0.709051 0.672855\nvn -0.177743 0.832957 0.524013\nvn -0.356859 0.810890 0.463798\nvn -0.298873 0.915021 0.270948\nvn -0.356859 0.810890 0.463798\nvn -0.177743 0.832957 0.524013\nvn -0.298873 0.915021 0.270948\nvn -0.417747 0.883318 0.212688\nvn -0.497277 0.770696 0.398426\nvn -0.497277 0.770696 0.398426\nvn -0.356859 0.810890 0.463798\nvn -0.298873 0.915021 0.270948\nvn -0.177743 0.832957 0.524013\nvn -0.149911 0.933246 0.326464\nvn -0.298873 0.915021 0.270948\nvn -0.519440 0.802720 0.292955\nvn -0.604252 0.657905 0.449489\nvn -0.523624 0.666729 0.530368\nvn -0.734142 0.596927 0.323596\nvn -0.604252 0.657905 0.449489\nvn -0.519440 0.802720 0.292955\nvn -0.177743 0.832957 0.524013\nvn -0.210979 0.709051 0.672855\nvn -0.000000 0.710456 0.703742\nvn -0.000000 0.710456 0.703742\nvn -0.000000 0.845081 0.534638\nvn -0.177743 0.832957 0.524013\nvn -0.149911 0.933246 0.326464\nvn -0.177743 0.832957 0.524013\nvn -0.000000 0.845081 0.534638\nvn -0.000000 0.845081 0.534638\nvn -0.000000 0.944755 0.327777\nvn -0.149911 0.933246 0.326464\nvn -0.982076 -0.187632 0.017915\nvn -0.979473 -0.200693 0.018830\nvn -0.985865 -0.166727 0.016511\nvn -0.985865 -0.166727 0.016511\nvn -0.988009 -0.153605 0.015596\nvn -0.982076 -0.187632 0.017915\nvn -0.207929 -0.603554 -0.769732\nvn -0.217297 -0.592380 -0.775801\nvn -0.022920 -0.692572 -0.720985\nvn -0.022920 -0.692572 -0.720985\nvn -0.005463 -0.677953 -0.735085\nvn -0.207929 -0.603554 -0.769732\nvn -0.005463 -0.677953 -0.735085\nvn -0.022920 -0.692572 -0.720985\nvn -0.014222 -0.435177 -0.900233\nvn -0.014222 -0.435177 -0.900233\nvn -0.013520 -0.258165 -0.966006\nvn -0.005463 -0.677953 -0.735085\nvn -0.013520 -0.258165 -0.966006\nvn -0.014222 -0.435177 -0.900233\nvn 0.005005 -0.115544 -0.993290\nvn 0.005005 -0.115544 -0.993290\nvn 0.006348 -0.109532 -0.993963\nvn -0.013520 -0.258165 -0.966006\nvn 0.006348 -0.109532 -0.993963\nvn 0.005005 -0.115544 -0.993290\nvn 0.008088 -0.080234 -0.996743\nvn 0.008088 -0.080234 -0.996743\nvn 0.008332 -0.077000 -0.996996\nvn 0.006348 -0.109532 -0.993963\nvn 0.008332 -0.077000 -0.996996\nvn 0.008088 -0.080234 -0.996743\nvn 0.010041 -0.051150 -0.998641\nvn 0.010041 -0.051150 -0.998641\nvn 0.010254 -0.048860 -0.998753\nvn 0.008332 -0.077000 -0.996996\nvn 0.010254 -0.048860 -0.998753\nvn 0.010041 -0.051150 -0.998641\nvn 0.013154 0.145881 -0.989215\nvn 0.013154 0.145881 -0.989215\nvn 0.012910 0.112037 -0.993620\nvn 0.010254 -0.048860 -0.998753\nvn 0.012910 0.112037 -0.993620\nvn 0.013154 0.145881 -0.989215\nvn 0.011506 0.305741 -0.952045\nvn 0.011506 0.305741 -0.952045\nvn 0.011506 0.300885 -0.953591\nvn 0.012910 0.112037 -0.993620\nvn 0.004822 0.314530 -0.949235\nvn 0.011506 0.300885 -0.953591\nvn 0.011506 0.305741 -0.952045\nvn 0.011506 0.305741 -0.952045\nvn 0.004791 0.319838 -0.947460\nvn 0.004822 0.314530 -0.949235\nvn 0.004822 0.314530 -0.949235\nvn 0.004791 0.319838 -0.947460\nvn 0.000549 0.322255 -0.946653\nvn 0.000549 0.322255 -0.946653\nvn -0.000000 0.321853 -0.946790\nvn 0.004822 0.314530 -0.949235\nvn -0.012330 -0.315755 0.948761\nvn -0.013031 -0.313764 0.949412\nvn -0.009033 -0.321575 0.946841\nvn -0.009033 -0.321575 0.946841\nvn -0.008881 -0.321521 0.946861\nvn -0.012330 -0.315755 0.948761\nvn -0.013031 -0.313764 0.949412\nvn -0.012330 -0.315755 0.948761\nvn -0.014924 -0.300521 0.953659\nvn -0.014924 -0.300521 0.953659\nvn -0.015076 -0.296586 0.954887\nvn -0.013031 -0.313764 0.949412\nvn -0.015076 -0.296586 0.954887\nvn -0.014924 -0.300521 0.953659\nvn -0.013489 -0.143835 0.989510\nvn -0.013489 -0.143835 0.989510\nvn -0.013093 -0.110693 0.993768\nvn -0.015076 -0.296586 0.954887\nvn -0.013093 -0.110693 0.993768\nvn -0.013489 -0.143835 0.989510\nvn -0.010346 0.048037 0.998792\nvn -0.010346 0.048037 0.998792\nvn -0.010163 0.045840 0.998897\nvn -0.013093 -0.110693 0.993768\nvn -0.010163 0.045840 0.998897\nvn -0.010346 0.048037 0.998792\nvn -0.008423 0.077457 0.996960\nvn -0.008423 0.077457 0.996960\nvn -0.008240 0.074192 0.997210\nvn -0.010163 0.045840 0.998897\nvn -0.008240 0.074192 0.997210\nvn -0.008423 0.077457 0.996960\nvn -0.006379 0.115606 0.993275\nvn -0.006379 0.115606 0.993275\nvn -0.005188 0.108373 0.994097\nvn -0.008240 0.074192 0.997210\nvn -0.005188 0.108373 0.994097\nvn -0.006379 0.115606 0.993275\nvn 0.015168 0.423236 0.905892\nvn 0.015168 0.423236 0.905892\nvn 0.013306 0.252669 0.967461\nvn -0.005188 0.108373 0.994097\nvn 0.013306 0.252669 0.967461\nvn 0.015168 0.423236 0.905892\nvn 0.028780 0.698958 0.714584\nvn 0.028780 0.698958 0.714584\nvn 0.009674 0.682284 0.731023\nvn 0.013306 0.252669 0.967461\nvn 0.009674 0.682284 0.731023\nvn 0.028780 0.698958 0.714584\nvn 0.183146 0.610691 0.770398\nvn 0.183146 0.610691 0.770398\nvn 0.187114 0.604710 0.774154\nvn 0.009674 0.682284 0.731023\nvn -0.592678 0.689911 -0.415638\nvn -0.586854 0.670538 -0.453851\nvn -0.495512 0.606022 -0.622258\nvn -0.495512 0.606022 -0.622258\nvn -0.520536 0.703071 -0.484493\nvn -0.592678 0.689911 -0.415638\nvn -0.760640 0.450317 -0.467591\nvn -0.495512 0.606022 -0.622258\nvn -0.586854 0.670538 -0.453851\nvn -0.586854 0.670538 -0.453851\nvn -0.400416 0.782214 -0.477294\nvn -0.760640 0.450317 -0.467591\nvn -0.898740 -0.068669 -0.433072\nvn -0.982816 0.091009 -0.160593\nvn -0.979569 0.114995 -0.164986\nvn -0.979569 0.114995 -0.164986\nvn -0.919833 0.048769 -0.389266\nvn -0.898740 -0.068669 -0.433072\nvn -0.919833 0.048769 -0.389266\nvn -0.979569 0.114995 -0.164986\nvn -0.971297 0.163215 -0.173043\nvn -0.971297 0.163215 -0.173043\nvn -0.917402 0.068881 -0.391956\nvn -0.919833 0.048769 -0.389266\nvn -0.917402 0.068881 -0.391956\nvn -0.971297 0.163215 -0.173043\nvn -0.959945 0.219187 -0.174538\nvn -0.959945 0.219187 -0.174538\nvn -0.964574 0.204750 -0.166357\nvn -0.917402 0.068881 -0.391956\nvn -0.964574 0.204750 -0.166357\nvn -0.959945 0.219187 -0.174538\nvn -0.950363 0.255017 -0.178262\nvn -0.950363 0.255017 -0.178262\nvn -0.947803 0.261183 -0.182901\nvn -0.964574 0.204750 -0.166357\nvn -0.420856 -0.581722 0.696046\nvn -0.223402 -0.553989 0.801990\nvn -0.223798 -0.467861 0.854998\nvn -0.223798 -0.467861 0.854998\nvn -0.441459 -0.479426 0.758462\nvn -0.420856 -0.581722 0.696046\nvn -0.441459 -0.479426 0.758462\nvn -0.223798 -0.467861 0.854998\nvn -0.226454 -0.381858 0.896049\nvn -0.226454 -0.381858 0.896049\nvn -0.456049 -0.389456 0.800215\nvn -0.441459 -0.479426 0.758462\nvn -0.456049 -0.389456 0.800215\nvn -0.226454 -0.381858 0.896049\nvn -0.229534 -0.289809 0.929153\nvn -0.229534 -0.289809 0.929153\nvn -0.470877 -0.290449 0.833015\nvn -0.456049 -0.389456 0.800215\nvn -0.470877 -0.290449 0.833015\nvn -0.229534 -0.289809 0.929153\nvn -0.235483 -0.036378 0.971198\nvn -0.235483 -0.036378 0.971198\nvn -0.487697 -0.040224 0.872086\nvn -0.470877 -0.290449 0.833015\nvn -0.572026 -0.473693 0.669628\nvn -0.441459 -0.479426 0.758462\nvn -0.456049 -0.389456 0.800215\nvn -0.456049 -0.389456 0.800215\nvn -0.598881 -0.380912 0.704448\nvn -0.572026 -0.473693 0.669628\nvn -0.441459 -0.479426 0.758462\nvn -0.572026 -0.473693 0.669628\nvn -0.529601 -0.591891 0.607608\nvn -0.529601 -0.591891 0.607608\nvn -0.420856 -0.581722 0.696046\nvn -0.441459 -0.479426 0.758462\nvn -0.529601 -0.591891 0.607608\nvn -0.572026 -0.473693 0.669628\nvn -0.673337 -0.462544 0.576776\nvn -0.673337 -0.462544 0.576776\nvn -0.572026 -0.473693 0.669628\nvn -0.598881 -0.380912 0.704448\nvn -0.673337 -0.462544 0.576776\nvn -0.590918 -0.588049 0.552281\nvn -0.529601 -0.591891 0.607608\nvn -0.598881 -0.380912 0.704448\nvn -0.706517 -0.362170 0.608002\nvn -0.673337 -0.462544 0.576776\nvn -0.733904 -0.251695 0.630900\nvn -0.706517 -0.362170 0.608002\nvn -0.598881 -0.380912 0.704448\nvn -0.598881 -0.380912 0.704448\nvn -0.623203 -0.277237 0.731272\nvn -0.733904 -0.251695 0.630900\nvn -0.456049 -0.389456 0.800215\nvn -0.470877 -0.290449 0.833015\nvn -0.623203 -0.277237 0.731272\nvn -0.623203 -0.277237 0.731272\nvn -0.598881 -0.380912 0.704448\nvn -0.456049 -0.389456 0.800215\nvn -0.756261 -0.041476 0.652954\nvn -0.733904 -0.251695 0.630900\nvn -0.623203 -0.277237 0.731272\nvn -0.733904 -0.251695 0.630900\nvn -0.756261 -0.041476 0.652954\nvn -0.876508 -0.035250 0.480096\nvn -0.876508 -0.035250 0.480096\nvn -0.858116 -0.220473 0.463713\nvn -0.733904 -0.251695 0.630900\nvn -0.706517 -0.362170 0.608002\nvn -0.733904 -0.251695 0.630900\nvn -0.858116 -0.220473 0.463713\nvn -0.623203 -0.277237 0.731272\nvn -0.645784 -0.043032 0.762306\nvn -0.756261 -0.041476 0.652954\nvn -0.645784 -0.043032 0.762306\nvn -0.623203 -0.277237 0.731272\nvn -0.470877 -0.290449 0.833015\nvn -0.470877 -0.290449 0.833015\nvn -0.487697 -0.040224 0.872086\nvn -0.645784 -0.043032 0.762306\nvn -0.858116 -0.220473 0.463713\nvn -0.815451 -0.321920 0.481049\nvn -0.706517 -0.362170 0.608002\nvn -0.673337 -0.462544 0.576776\nvn -0.706517 -0.362170 0.608002\nvn -0.815451 -0.321920 0.481049\nvn -0.931834 -0.158455 0.326461\nvn -0.858116 -0.220473 0.463713\nvn -0.876508 -0.035250 0.480096\nvn -0.858116 -0.220473 0.463713\nvn -0.931834 -0.158455 0.326461\nvn -0.815451 -0.321920 0.481049\nvn -0.876508 -0.035250 0.480096\nvn -0.941203 -0.029359 0.336563\nvn -0.931834 -0.158455 0.326461\nvn -0.953216 -0.148295 0.263414\nvn -0.931834 -0.158455 0.326461\nvn -0.941203 -0.029359 0.336563\nvn -0.941203 -0.029359 0.336563\nvn -0.961423 -0.029238 0.273515\nvn -0.953216 -0.148295 0.263414\nvn -0.953216 -0.148295 0.263414\nvn -0.961423 -0.029238 0.273515\nvn -0.975372 -0.041507 0.216627\nvn -0.975372 -0.041507 0.216627\nvn -0.961413 -0.204356 0.184183\nvn -0.953216 -0.148295 0.263414\nvn -0.961413 -0.204356 0.184183\nvn -0.975372 -0.041507 0.216627\nvn -0.979667 -0.117225 0.162820\nvn -0.979667 -0.117225 0.162820\nvn -0.924451 -0.360460 0.124334\nvn -0.961413 -0.204356 0.184183\nvn -0.948970 -0.307331 0.070744\nvn -0.961413 -0.204356 0.184183\nvn -0.924451 -0.360460 0.124334\nvn -0.924451 -0.360460 0.124334\nvn -0.893190 -0.443650 0.073397\nvn -0.948970 -0.307331 0.070744\nvn -0.891682 -0.452662 -0.000427\nvn -0.948970 -0.307331 0.070744\nvn -0.893190 -0.443650 0.073397\nvn -0.891682 -0.452662 -0.000427\nvn -0.893190 -0.443650 0.073397\nvn -0.882246 -0.470788 0.000732\nvn -0.867423 -0.497192 -0.019410\nvn -0.891682 -0.452662 -0.000427\nvn -0.882246 -0.470788 0.000732\nvn -0.867423 -0.497192 -0.019410\nvn -0.844521 -0.533015 -0.051760\nvn -0.891682 -0.452662 -0.000427\nvn -0.887408 -0.460780 -0.013764\nvn -0.867423 -0.497192 -0.019410\nvn -0.882246 -0.470788 0.000732\nvn -0.887408 -0.460780 -0.013764\nvn -0.877571 -0.474813 0.066501\nvn -0.867423 -0.497192 -0.019410\nvn -0.877571 -0.474813 0.066501\nvn -0.882054 -0.461383 0.095432\nvn -0.867423 -0.497192 -0.019410\nvn -0.877571 -0.474813 0.066501\nvn -0.888262 -0.446222 0.108984\nvn -0.882054 -0.461383 0.095432\nvn -0.891682 -0.452662 -0.000427\nvn -0.977632 -0.207862 -0.032075\nvn -0.948970 -0.307331 0.070744\nvn -0.977632 -0.207862 -0.032075\nvn -0.948419 -0.315021 0.035555\nvn -0.948970 -0.307331 0.070744\nvn -0.924451 -0.360460 0.124334\nvn -0.979667 -0.117225 0.162820\nvn -0.973128 -0.180154 0.143409\nvn -0.888262 -0.446222 0.108984\nvn -0.973128 -0.180154 0.143409\nvn -0.882054 -0.461383 0.095432\nvn -0.892276 -0.439165 0.104771\nvn -0.924451 -0.360460 0.124334\nvn -0.973128 -0.180154 0.143409\nvn -0.888262 -0.446222 0.108984\nvn -0.892276 -0.439165 0.104771\nvn -0.973128 -0.180154 0.143409\nvn -0.866565 -0.449214 0.217420\nvn -0.893190 -0.443650 0.073397\nvn -0.924451 -0.360460 0.124334\nvn -0.924451 -0.360460 0.124334\nvn -0.912866 -0.369743 0.173106\nvn -0.866565 -0.449214 0.217420\nvn -0.186836 0.866703 -0.462512\nvn -0.000244 0.871353 -0.490657\nvn 0.026124 0.877741 -0.478424\nvn 0.026124 0.877741 -0.478424\nvn -0.405485 0.817469 -0.409055\nvn -0.186836 0.866703 -0.462512\nvn -0.405485 0.817469 -0.409055\nvn 0.026124 0.877741 -0.478424\nvn 0.031678 0.880256 -0.473440\nvn 0.031678 0.880256 -0.473440\nvn -0.389517 0.814374 -0.430199\nvn -0.405485 0.817469 -0.409055\nvn 0.237473 0.855677 -0.459808\nvn 0.031678 0.880256 -0.473440\nvn 0.026124 0.877741 -0.478424\nvn 0.026124 0.877741 -0.478424\nvn 0.234448 0.849593 -0.472468\nvn 0.237473 0.855677 -0.459808\nvn 0.234448 0.849593 -0.472468\nvn 0.026124 0.877741 -0.478424\nvn -0.000244 0.871353 -0.490657\nvn -0.000244 0.871353 -0.490657\nvn 0.224074 0.841423 -0.491730\nvn 0.234448 0.849593 -0.472468\nvn -0.369709 0.813122 -0.449608\nvn -0.389517 0.814374 -0.430199\nvn 0.031678 0.880256 -0.473440\nvn 0.031678 0.880256 -0.473440\nvn 0.037447 0.877882 -0.477410\nvn -0.369709 0.813122 -0.449608\nvn 0.037447 0.877882 -0.477410\nvn 0.031678 0.880256 -0.473440\nvn 0.237473 0.855677 -0.459808\nvn -0.369709 0.813122 -0.449608\nvn 0.037447 0.877882 -0.477410\nvn 0.033480 0.870448 -0.491121\nvn 0.033480 0.870448 -0.491121\nvn -0.364556 0.800772 -0.475251\nvn -0.369709 0.813122 -0.449608\nvn -0.364556 0.800772 -0.475251\nvn 0.033480 0.870448 -0.491121\nvn 0.044893 0.853277 -0.519523\nvn 0.044893 0.853277 -0.519523\nvn -0.400473 0.753824 -0.520932\nvn -0.364556 0.800772 -0.475251\nvn -0.400473 0.753824 -0.520932\nvn 0.044893 0.853277 -0.519523\nvn 0.044558 0.843792 -0.534817\nvn 0.044558 0.843792 -0.534817\nvn -0.172402 0.809579 -0.561123\nvn -0.400473 0.753824 -0.520932\nvn 0.044558 0.843792 -0.534817\nvn 0.044893 0.853277 -0.519523\nvn 0.254777 0.836144 -0.485749\nvn 0.254777 0.836144 -0.485749\nvn 0.257860 0.833398 -0.488832\nvn 0.044558 0.843792 -0.534817\nvn -0.172402 0.809579 -0.561123\nvn 0.044558 0.843792 -0.534817\nvn 0.069340 0.844965 -0.530308\nvn 0.069340 0.844965 -0.530308\nvn 0.044558 0.843792 -0.534817\nvn 0.257860 0.833398 -0.488832\nvn 0.069340 0.844965 -0.530308\nvn -0.179911 0.801463 -0.570342\nvn -0.172402 0.809579 -0.561123\nvn 0.257860 0.833398 -0.488832\nvn 0.258558 0.835127 -0.485500\nvn 0.069340 0.844965 -0.530308\nvn 0.044893 0.853277 -0.519523\nvn 0.033480 0.870448 -0.491121\nvn 0.231552 0.852626 -0.468415\nvn 0.231552 0.852626 -0.468415\nvn 0.254777 0.836144 -0.485749\nvn 0.044893 0.853277 -0.519523\nvn 0.233352 0.857628 -0.458281\nvn 0.231552 0.852626 -0.468415\nvn 0.033480 0.870448 -0.491121\nvn 0.033480 0.870448 -0.491121\nvn 0.037447 0.877882 -0.477410\nvn 0.233352 0.857628 -0.458281\nvn 0.237473 0.855677 -0.459808\nvn 0.233352 0.857628 -0.458281\nvn 0.037447 0.877882 -0.477410\nvn 0.888204 0.436000 -0.144906\nvn 0.761893 0.592692 -0.261218\nvn 0.758554 0.593080 -0.269912\nvn 0.758554 0.593080 -0.269912\nvn 0.885631 0.436575 -0.158302\nvn 0.888204 0.436000 -0.144906\nvn 0.885631 0.436575 -0.158302\nvn 0.758554 0.593080 -0.269912\nvn 0.752897 0.595299 -0.280650\nvn 0.966560 0.255870 -0.017121\nvn 0.888204 0.436000 -0.144906\nvn 0.885631 0.436575 -0.158302\nvn 0.885631 0.436575 -0.158302\nvn 0.967072 0.253068 -0.026979\nvn 0.966560 0.255870 -0.017121\nvn 0.752897 0.595299 -0.280650\nvn 0.875393 0.445189 -0.188397\nvn 0.885631 0.436575 -0.158302\nvn 0.967072 0.253068 -0.026979\nvn 0.885631 0.436575 -0.158302\nvn 0.875393 0.445189 -0.188397\nvn 0.875393 0.445189 -0.188397\nvn 0.752897 0.595299 -0.280650\nvn 0.752205 0.593995 -0.285232\nvn 0.875393 0.445189 -0.188397\nvn 0.959714 0.269060 -0.080968\nvn 0.967072 0.253068 -0.026979\nvn 0.752205 0.593995 -0.285232\nvn 0.872270 0.446832 -0.198711\nvn 0.875393 0.445189 -0.188397\nvn 0.872270 0.446832 -0.198711\nvn 0.752205 0.593995 -0.285232\nvn 0.750643 0.586696 -0.303846\nvn 0.875393 0.445189 -0.188397\nvn 0.872270 0.446832 -0.198711\nvn 0.955685 0.276293 -0.101630\nvn 0.955685 0.276293 -0.101630\nvn 0.959714 0.269060 -0.080968\nvn 0.875393 0.445189 -0.188397\nvn 0.750643 0.586696 -0.303846\nvn 0.866558 0.447257 -0.221446\nvn 0.872270 0.446832 -0.198711\nvn 0.869726 0.445515 -0.212350\nvn 0.866558 0.447257 -0.221446\nvn 0.750643 0.586696 -0.303846\nvn 0.750643 0.586696 -0.303846\nvn 0.747822 0.578926 -0.324973\nvn 0.869726 0.445515 -0.212350\nvn 0.872270 0.446832 -0.198711\nvn 0.866558 0.447257 -0.221446\nvn 0.950255 0.284747 -0.126229\nvn 0.950255 0.284747 -0.126229\nvn 0.955685 0.276293 -0.101630\nvn 0.872270 0.446832 -0.198711\nvn 0.950255 0.284747 -0.126229\nvn 0.866558 0.447257 -0.221446\nvn 0.869726 0.445515 -0.212350\nvn 0.869726 0.445515 -0.212350\nvn 0.944994 0.289505 -0.152229\nvn 0.950255 0.284747 -0.126229\nvn 0.888204 0.436000 -0.144906\nvn 0.966560 0.255870 -0.017121\nvn 0.966329 0.256606 -0.019013\nvn 0.966329 0.256606 -0.019013\nvn 0.912818 0.392136 -0.113988\nvn 0.888204 0.436000 -0.144906\nvn 0.761893 0.592692 -0.261218\nvn 0.888204 0.436000 -0.144906\nvn 0.912818 0.392136 -0.113988\nvn 0.912818 0.392136 -0.113988\nvn 0.763765 0.592707 -0.255657\nvn 0.761893 0.592692 -0.261218\nvn 0.869726 0.445515 -0.212350\nvn 0.747822 0.578926 -0.324973\nvn 0.784014 0.608101 -0.124642\nvn 0.784014 0.608101 -0.124642\nvn 0.880822 0.450559 -0.145425\nvn 0.869726 0.445515 -0.212350\nvn 0.944994 0.289505 -0.152229\nvn 0.869726 0.445515 -0.212350\nvn 0.880822 0.450559 -0.145425\nvn 0.880822 0.450559 -0.145425\nvn 0.935440 0.305618 -0.177621\nvn 0.944994 0.289505 -0.152229\nvn 0.920161 0.351554 -0.172374\nvn 0.935440 0.305618 -0.177621\nvn 0.880822 0.450559 -0.145425\nvn 0.880822 0.450559 -0.145425\nvn 0.841552 0.529194 -0.108372\nvn 0.920161 0.351554 -0.172374\nvn 0.841552 0.529194 -0.108372\nvn 0.880822 0.450559 -0.145425\nvn 0.784014 0.608101 -0.124642\nvn 0.784014 0.608101 -0.124642\nvn 0.720525 0.693394 0.006928\nvn 0.841552 0.529194 -0.108372\nvn 0.856469 0.459868 -0.234481\nvn 0.920161 0.351554 -0.172374\nvn 0.841552 0.529194 -0.108372\nvn 0.841552 0.529194 -0.108372\nvn 0.719002 0.647405 -0.252791\nvn 0.856469 0.459868 -0.234481\nvn 0.719002 0.647405 -0.252791\nvn 0.841552 0.529194 -0.108372\nvn 0.720525 0.693394 0.006928\nvn 0.720525 0.693394 0.006928\nvn 0.317096 0.937831 -0.141152\nvn 0.719002 0.647405 -0.252791\nvn 0.118537 0.989041 0.088018\nvn 0.106053 0.988809 0.104924\nvn 0.074984 0.992808 0.093326\nvn 0.074984 0.992808 0.093326\nvn 0.062717 0.995290 0.073917\nvn 0.118537 0.989041 0.088018\nvn 0.062717 0.995290 0.073917\nvn 0.074984 0.992808 0.093326\nvn 0.055147 0.995925 -0.071353\nvn 0.055147 0.995925 -0.071353\nvn 0.317096 0.937831 -0.141152\nvn 0.062717 0.995290 0.073917\nvn -0.032167 0.990610 -0.132879\nvn 0.055147 0.995925 -0.071353\nvn 0.074984 0.992808 0.093326\nvn 0.074984 0.992808 0.093326\nvn 0.052370 0.996226 0.069217\nvn -0.032167 0.990610 -0.132879\nvn 0.052370 0.996226 0.069217\nvn 0.074984 0.992808 0.093326\nvn 0.106053 0.988809 0.104924\nvn 0.052370 0.996226 0.069217\nvn 0.106053 0.988809 0.104924\nvn 0.020844 0.997033 0.074101\nvn -0.896766 0.427294 -0.115026\nvn -0.637579 0.712473 -0.293046\nvn -0.603210 0.768532 -0.213298\nvn -0.806799 0.491752 -0.327499\nvn -0.632389 0.652866 -0.416953\nvn -0.695936 0.559636 -0.449979\nvn -0.695936 0.559636 -0.449979\nvn -0.859449 0.363452 -0.359515\nvn -0.806799 0.491752 -0.327499\nvn -0.890643 0.383108 -0.244917\nvn -0.806799 0.491752 -0.327499\nvn -0.859449 0.363452 -0.359515\nvn -0.859449 0.363452 -0.359515\nvn -0.760640 0.450317 -0.467591\nvn -0.890643 0.383108 -0.244917\nvn -0.859449 0.363452 -0.359515\nvn -0.695936 0.559636 -0.449979\nvn -0.702046 0.514868 -0.491978\nvn -0.702046 0.514868 -0.491978\nvn -0.871693 0.292711 -0.393028\nvn -0.859449 0.363452 -0.359515\nvn -0.871693 0.292711 -0.393028\nvn -0.935566 0.137672 -0.325212\nvn -0.859449 0.363452 -0.359515\nvn -0.935566 0.137672 -0.325212\nvn -0.878489 0.277295 -0.389056\nvn -0.859449 0.363452 -0.359515\nvn -0.632389 0.652866 -0.416953\nvn -0.806799 0.491752 -0.327499\nvn -0.802342 0.524467 -0.284924\nvn -0.802342 0.524467 -0.284924\nvn -0.629970 0.678586 -0.377701\nvn -0.632389 0.652866 -0.416953\nvn -0.806799 0.491752 -0.327499\nvn -0.890643 0.383108 -0.244917\nvn -0.885087 0.409567 -0.221081\nvn -0.885087 0.409567 -0.221081\nvn -0.802342 0.524467 -0.284924\nvn -0.806799 0.491752 -0.327499\nvn -0.871693 0.292711 -0.393028\nvn -0.702046 0.514868 -0.491978\nvn -0.709152 0.486817 -0.510012\nvn -0.709152 0.486817 -0.510012\nvn -0.879995 0.249861 -0.403954\nvn -0.871693 0.292711 -0.393028\nvn -0.935605 0.122932 -0.330953\nvn -0.935566 0.137672 -0.325212\nvn -0.871693 0.292711 -0.393028\nvn -0.871693 0.292711 -0.393028\nvn -0.879995 0.249861 -0.403954\nvn -0.935605 0.122932 -0.330953\nvn -0.935566 0.137672 -0.325212\nvn -0.935605 0.122932 -0.330953\nvn -0.935112 0.108221 -0.337422\nvn -0.935112 0.108221 -0.337422\nvn -0.933130 0.127265 -0.336262\nvn -0.935566 0.137672 -0.325212\nvn -0.878489 0.277295 -0.389056\nvn -0.935566 0.137672 -0.325212\nvn -0.933130 0.127265 -0.336262\nvn -0.933130 0.127265 -0.336262\nvn -0.929574 0.157172 -0.333449\nvn -0.878489 0.277295 -0.389056\nvn -0.958366 0.251326 -0.135536\nvn -0.929574 0.157172 -0.333449\nvn -0.933130 0.127265 -0.336262\nvn -0.933130 0.127265 -0.336262\nvn -0.958849 0.257367 -0.119879\nvn -0.958366 0.251326 -0.135536\nvn -0.802342 0.524467 -0.284924\nvn -0.885087 0.409567 -0.221081\nvn -0.905327 0.394768 -0.156656\nvn -0.905327 0.394768 -0.156656\nvn -0.826071 0.515596 -0.227523\nvn -0.802342 0.524467 -0.284924\nvn -0.826071 0.515596 -0.227523\nvn -0.905327 0.394768 -0.156656\nvn -0.873100 0.475309 -0.108527\nvn -0.873100 0.475309 -0.108527\nvn -0.832921 0.523582 -0.179176\nvn -0.826071 0.515596 -0.227523\nvn -0.659394 0.674134 -0.332779\nvn -0.826071 0.515596 -0.227523\nvn -0.832921 0.523582 -0.179176\nvn -0.802342 0.524467 -0.284924\nvn -0.826071 0.515596 -0.227523\nvn -0.659394 0.674134 -0.332779\nvn -0.659394 0.674134 -0.332779\nvn -0.629970 0.678586 -0.377701\nvn -0.802342 0.524467 -0.284924\nvn -0.832921 0.523582 -0.179176\nvn -0.693299 0.663146 -0.282087\nvn -0.659394 0.674134 -0.332779\nvn -0.693299 0.663146 -0.282087\nvn -0.832921 0.523582 -0.179176\nvn -0.896766 0.427294 -0.115026\nvn -0.896766 0.427294 -0.115026\nvn -0.603210 0.768532 -0.213298\nvn -0.693299 0.663146 -0.282087\nvn -0.790503 0.589810 -0.165016\nvn -0.896766 0.427294 -0.115026\nvn -0.832921 0.523582 -0.179176\nvn -0.832921 0.523582 -0.179176\nvn -0.873100 0.475309 -0.108527\nvn -0.790503 0.589810 -0.165016\nvn -0.693299 0.663146 -0.282087\nvn -0.603210 0.768532 -0.213298\nvn -0.637579 0.712473 -0.293046\nvn -0.637579 0.712473 -0.293046\nvn -0.405485 0.817469 -0.409055\nvn -0.693299 0.663146 -0.282087\nvn -0.659394 0.674134 -0.332779\nvn -0.693299 0.663146 -0.282087\nvn -0.405485 0.817469 -0.409055\nvn -0.405485 0.817469 -0.409055\nvn -0.389517 0.814374 -0.430199\nvn -0.659394 0.674134 -0.332779\nvn -0.659394 0.674134 -0.332779\nvn -0.389517 0.814374 -0.430199\nvn -0.369709 0.813122 -0.449608\nvn -0.369709 0.813122 -0.449608\nvn -0.629970 0.678586 -0.377701\nvn -0.659394 0.674134 -0.332779\nvn -0.632389 0.652866 -0.416953\nvn -0.629970 0.678586 -0.377701\nvn -0.369709 0.813122 -0.449608\nvn -0.369709 0.813122 -0.449608\nvn -0.364556 0.800772 -0.475251\nvn -0.632389 0.652866 -0.416953\nvn -0.632389 0.652866 -0.416953\nvn -0.364556 0.800772 -0.475251\nvn -0.400473 0.753824 -0.520932\nvn -0.400473 0.753824 -0.520932\nvn -0.695936 0.559636 -0.449979\nvn -0.632389 0.652866 -0.416953\nvn -0.695936 0.559636 -0.449979\nvn -0.400473 0.753824 -0.520932\nvn -0.615214 0.595986 -0.516055\nvn -0.615214 0.595986 -0.516055\nvn -0.702046 0.514868 -0.491978\nvn -0.695936 0.559636 -0.449979\nvn -0.702046 0.514868 -0.491978\nvn -0.615214 0.595986 -0.516055\nvn -0.618712 0.578182 -0.531885\nvn -0.618712 0.578182 -0.531885\nvn -0.709152 0.486817 -0.510012\nvn -0.702046 0.514868 -0.491978\nvn -0.878489 0.277295 -0.389056\nvn -0.760640 0.450317 -0.467591\nvn -0.859449 0.363452 -0.359515\nvn -0.184794 0.817913 -0.544858\nvn 0.019807 0.855426 -0.517547\nvn 0.082829 0.856155 -0.510037\nvn 0.082829 0.856155 -0.510037\nvn -0.185406 0.816547 -0.546695\nvn -0.184794 0.817913 -0.544858\nvn 0.082829 0.856155 -0.510037\nvn 0.019807 0.855426 -0.517547\nvn 0.292554 0.828831 -0.476918\nvn 0.292554 0.828831 -0.476918\nvn 0.293625 0.825726 -0.481623\nvn 0.082829 0.856155 -0.510037\nvn 0.915334 0.373739 -0.149941\nvn 0.786869 0.562860 -0.253032\nvn 0.785460 0.562277 -0.258646\nvn 0.785460 0.562277 -0.258646\nvn 0.865369 0.454857 -0.210338\nvn 0.915334 0.373739 -0.149941\nvn 0.915334 0.373739 -0.149941\nvn 0.865369 0.454857 -0.210338\nvn 0.965897 0.250256 -0.066440\nvn 0.965897 0.250256 -0.066440\nvn 0.965903 0.250227 -0.066471\nvn 0.915334 0.373739 -0.149941\nvn -0.650060 0.558960 -0.514768\nvn -0.653937 0.559357 -0.509398\nvn -0.735314 0.465122 -0.492925\nvn -0.735314 0.465122 -0.492925\nvn -0.724341 0.478143 -0.496699\nvn -0.650060 0.558960 -0.514768\nvn -0.866452 0.276080 -0.415982\nvn -0.724341 0.478143 -0.496699\nvn -0.735314 0.465122 -0.492925\nvn -0.735314 0.465122 -0.492925\nvn -0.889778 0.231027 -0.393602\nvn -0.866452 0.276080 -0.415982\nvn -0.866452 0.276080 -0.415982\nvn -0.889778 0.231027 -0.393602\nvn -0.940929 0.139807 -0.308394\nvn -0.940929 0.139807 -0.308394\nvn -0.940729 0.137825 -0.309894\nvn -0.866452 0.276080 -0.415982\nvn -0.958118 0.188394 -0.215679\nvn -0.940729 0.137825 -0.309894\nvn -0.940929 0.139807 -0.308394\nvn -0.940929 0.139807 -0.308394\nvn -0.959034 0.192240 -0.208080\nvn -0.958118 0.188394 -0.215679\nvn -0.105353 -0.987731 0.115272\nvn -0.104495 -0.988101 0.112858\nvn -0.104773 -0.988005 0.113441\nvn -0.104773 -0.988005 0.113441\nvn -0.105564 -0.987713 0.115239\nvn -0.105353 -0.987731 0.115272\nvn -0.105353 -0.987731 0.115272\nvn -0.105564 -0.987713 0.115239\nvn -0.104955 -0.987537 0.117285\nvn -0.104955 -0.987537 0.117285\nvn -0.104742 -0.987479 0.117957\nvn -0.105353 -0.987731 0.115272\nvn -0.178568 0.880417 -0.439293\nvn 0.010926 0.900281 -0.435171\nvn 0.070621 0.830644 -0.552308\nvn 0.070621 0.830644 -0.552308\nvn -0.145121 0.824456 -0.547003\nvn -0.178568 0.880417 -0.439293\nvn 0.070621 0.830644 -0.552308\nvn 0.010926 0.900281 -0.435171\nvn 0.293166 0.865705 -0.405721\nvn 0.293166 0.865705 -0.405721\nvn 0.311690 0.771763 -0.554285\nvn 0.070621 0.830644 -0.552308\nvn 0.771216 0.588194 -0.243420\nvn 0.787737 0.587927 -0.183880\nvn 0.781994 0.588289 -0.205913\nvn 0.781994 0.588289 -0.205913\nvn 0.762392 0.587550 -0.271191\nvn 0.771216 0.588194 -0.243420\nvn 0.966680 0.242868 -0.080905\nvn 0.970865 0.239512 -0.007416\nvn 0.970323 0.240460 -0.025544\nvn 0.970323 0.240460 -0.025544\nvn 0.964047 0.243728 -0.105872\nvn 0.966680 0.242868 -0.080905\nvn -0.145121 0.824456 -0.547003\nvn 0.070621 0.830644 -0.552308\nvn 0.105903 0.730120 -0.675063\nvn 0.105903 0.730120 -0.675063\nvn 0.070621 0.830644 -0.552308\nvn 0.311690 0.771763 -0.554285\nvn 0.105903 0.730120 -0.675063\nvn -0.109930 0.738258 -0.665500\nvn -0.145121 0.824456 -0.547003\nvn 0.311690 0.771763 -0.554285\nvn 0.316638 0.670632 -0.670815\nvn 0.105903 0.730120 -0.675063\nvn 0.729960 0.126411 -0.671699\nvn 0.770279 0.423335 -0.476926\nvn 0.755808 0.414054 -0.507260\nvn 0.755808 0.414054 -0.507260\nvn 0.787519 0.251601 -0.562592\nvn 0.729960 0.126411 -0.671699\nvn 0.787519 0.251601 -0.562592\nvn 0.782424 0.042239 -0.621312\nvn 0.769036 -0.000488 -0.639205\nvn 0.769036 -0.000488 -0.639205\nvn 0.729960 0.126411 -0.671699\nvn 0.787519 0.251601 -0.562592\nvn -0.061129 0.086001 -0.994418\nvn 0.111732 0.106574 -0.988007\nvn 0.117530 -0.025972 -0.992730\nvn 0.117530 -0.025972 -0.992730\nvn 0.111732 0.106574 -0.988007\nvn 0.312699 0.101202 -0.944446\nvn 0.117530 -0.025972 -0.992730\nvn 0.019837 -0.025758 -0.999471\nvn -0.061129 0.086001 -0.994418\nvn 0.312699 0.101202 -0.944446\nvn 0.320270 0.097296 -0.942317\nvn 0.117530 -0.025972 -0.992730\nvn 0.556395 -0.007386 -0.830885\nvn 0.320270 0.097296 -0.942317\nvn 0.312699 0.101202 -0.944446\nvn 0.312699 0.101202 -0.944446\nvn 0.729960 0.126411 -0.671699\nvn 0.556395 -0.007386 -0.830885\nvn 0.729960 0.126411 -0.671699\nvn 0.769036 -0.000488 -0.639205\nvn 0.715008 -0.042971 -0.697795\nvn 0.715008 -0.042971 -0.697795\nvn 0.556395 -0.007386 -0.830885\nvn 0.729960 0.126411 -0.671699\nvn -0.185341 -0.000397 -0.982674\nvn -0.061129 0.086001 -0.994418\nvn 0.019837 -0.025758 -0.999471\nvn -0.560638 0.488673 -0.668493\nvn -0.660900 0.394128 -0.638651\nvn -0.707684 0.478788 -0.519562\nvn -0.707684 0.478788 -0.519562\nvn -0.660900 0.394128 -0.638651\nvn -0.803435 0.176123 -0.568746\nvn -0.803435 0.176123 -0.568746\nvn -0.859629 0.244365 -0.448691\nvn -0.707684 0.478788 -0.519562\nvn -0.707684 0.478788 -0.519562\nvn -0.859629 0.244365 -0.448691\nvn -0.897599 0.300522 -0.322496\nvn -0.897599 0.300522 -0.322496\nvn -0.749951 0.537231 -0.385947\nvn -0.707684 0.478788 -0.519562\nvn -0.897599 0.300522 -0.322496\nvn -0.859629 0.244365 -0.448691\nvn -0.908511 0.102939 -0.404983\nvn -0.908511 0.102939 -0.404983\nvn -0.859629 0.244365 -0.448691\nvn -0.803435 0.176123 -0.568746\nvn -0.908511 0.102939 -0.404983\nvn -0.949065 0.146737 -0.278826\nvn -0.897599 0.300522 -0.322496\nvn -0.950226 0.139016 -0.278827\nvn -0.949065 0.146737 -0.278826\nvn -0.908511 0.102939 -0.404983\nvn -0.908511 0.102939 -0.404983\nvn -0.920316 0.109687 -0.375482\nvn -0.950226 0.139016 -0.278827\nvn -0.803435 0.176123 -0.568746\nvn -0.849104 0.059451 -0.524869\nvn -0.908511 0.102939 -0.404983\nvn -0.920316 0.109687 -0.375482\nvn -0.908511 0.102939 -0.404983\nvn -0.849104 0.059451 -0.524869\nvn -0.849104 0.059451 -0.524869\nvn -0.856483 0.064425 -0.512138\nvn -0.920316 0.109687 -0.375482\nvn -0.285906 -0.149851 -0.946468\nvn -0.250747 -0.085607 -0.964260\nvn -0.096990 -0.162179 -0.981983\nvn -0.096990 -0.162179 -0.981983\nvn -0.250747 -0.085607 -0.964260\nvn -0.185341 -0.000397 -0.982674\nvn -0.096990 -0.162179 -0.981983\nvn -0.090885 -0.199411 -0.975692\nvn -0.285906 -0.149851 -0.946468\nvn -0.294933 -0.150396 -0.943608\nvn -0.285906 -0.149851 -0.946468\nvn -0.090885 -0.199411 -0.975692\nvn -0.185341 -0.000397 -0.982674\nvn -0.065037 -0.113868 -0.991365\nvn -0.096990 -0.162179 -0.981983\nvn -0.090885 -0.199411 -0.975692\nvn -0.069094 -0.322340 -0.944099\nvn -0.294933 -0.150396 -0.943608\nvn -0.621380 0.569771 -0.537817\nvn -0.707684 0.478788 -0.519562\nvn -0.749951 0.537231 -0.385947\nvn -0.749951 0.537231 -0.385947\nvn -0.662752 0.627685 -0.408376\nvn -0.621380 0.569771 -0.537817\nvn -0.707684 0.478788 -0.519562\nvn -0.621380 0.569771 -0.537817\nvn -0.560638 0.488673 -0.668493\nvn 0.019837 -0.025758 -0.999471\nvn -0.065037 -0.113868 -0.991365\nvn -0.185341 -0.000397 -0.982674\nvn -0.108831 -0.993159 -0.042330\nvn -0.113774 -0.992047 -0.053835\nvn -0.124550 -0.988647 0.084051\nvn -0.124550 -0.988647 0.084051\nvn -0.118595 -0.989659 0.080691\nvn -0.108831 -0.993159 -0.042330\nvn -0.108831 -0.993159 -0.042330\nvn -0.118595 -0.989659 0.080691\nvn -0.123267 -0.989587 0.074314\nvn -0.123267 -0.989587 0.074314\nvn -0.115088 -0.992731 -0.035219\nvn -0.108831 -0.993159 -0.042330\nvn -0.113774 -0.992047 -0.053835\nvn -0.108831 -0.993159 -0.042330\nvn -0.093632 -0.982005 -0.164008\nvn -0.093632 -0.982005 -0.164008\nvn -0.108831 -0.993159 -0.042330\nvn -0.115088 -0.992731 -0.035219\nvn -0.093632 -0.982005 -0.164008\nvn -0.103306 -0.983685 -0.147284\nvn -0.113774 -0.992047 -0.053835\nvn -0.115088 -0.992731 -0.035219\nvn -0.095709 -0.977629 -0.187298\nvn -0.093632 -0.982005 -0.164008\nvn 0.067142 -0.549583 -0.832737\nvn 0.071414 -0.544946 -0.835425\nvn 0.096441 -0.411950 -0.906088\nvn 0.096441 -0.411950 -0.906088\nvn 0.071414 -0.544946 -0.835425\nvn 0.070500 -0.537201 -0.840503\nvn 0.096441 -0.411950 -0.906088\nvn 0.104008 -0.379075 -0.919502\nvn 0.067142 -0.549583 -0.832737\nvn 0.070500 -0.537201 -0.840503\nvn -0.069094 -0.322340 -0.944099\nvn 0.096441 -0.411950 -0.906088\nvn -0.001709 -0.261061 -0.965321\nvn -0.005921 -0.261000 -0.965321\nvn 0.015656 -0.267380 -0.963464\nvn 0.015656 -0.267380 -0.963464\nvn 0.020295 -0.269271 -0.962851\nvn -0.001709 -0.261061 -0.965321\nvn -0.005921 -0.261000 -0.965321\nvn -0.001709 -0.261061 -0.965321\nvn -0.030000 -0.292282 -0.955861\nvn -0.030000 -0.292282 -0.955861\nvn -0.031221 -0.299822 -0.953484\nvn -0.005921 -0.261000 -0.965321\nvn -0.031221 -0.299822 -0.953484\nvn -0.030000 -0.292282 -0.955861\nvn 0.018769 -0.340377 -0.940102\nvn 0.018769 -0.340377 -0.940102\nvn 0.020479 -0.346333 -0.937888\nvn -0.031221 -0.299822 -0.953484\nvn 0.020479 -0.346333 -0.937888\nvn 0.018769 -0.340377 -0.940102\nvn 0.022889 -0.381793 -0.923964\nvn 0.022889 -0.381793 -0.923964\nvn 0.023988 -0.386216 -0.922096\nvn 0.020479 -0.346333 -0.937888\nvn 0.023988 -0.386216 -0.922096\nvn 0.022889 -0.381793 -0.923964\nvn 0.022707 -0.407893 -0.912747\nvn 0.022707 -0.407893 -0.912747\nvn 0.023073 -0.410881 -0.911397\nvn 0.023988 -0.386216 -0.922096\nvn 0.020295 -0.269271 -0.962851\nvn 0.015656 -0.267380 -0.963464\nvn 0.021241 -0.292954 -0.955891\nvn 0.021241 -0.292954 -0.955891\nvn 0.016602 -0.304367 -0.952410\nvn 0.020295 -0.269271 -0.962851\nvn 0.016602 -0.304367 -0.952410\nvn 0.021241 -0.292954 -0.955891\nvn -0.028749 -0.334250 -0.942046\nvn -0.028749 -0.334250 -0.942046\nvn -0.031344 -0.334007 -0.942049\nvn 0.016602 -0.304367 -0.952410\nvn -0.031344 -0.334007 -0.942049\nvn -0.028749 -0.334250 -0.942046\nvn -0.096928 -0.277601 -0.955794\nvn -0.096928 -0.277601 -0.955794\nvn -0.089757 -0.281540 -0.955342\nvn -0.031344 -0.334007 -0.942049\nvn -0.089757 -0.281540 -0.955342\nvn -0.096928 -0.277601 -0.955794\nvn -0.121954 -0.218638 -0.968155\nvn -0.121954 -0.218638 -0.968155\nvn -0.125985 -0.211562 -0.969211\nvn -0.089757 -0.281540 -0.955342\nvn -0.125985 -0.211562 -0.969211\nvn -0.121954 -0.218638 -0.968155\nvn -0.143838 -0.187969 -0.971585\nvn -0.143838 -0.187969 -0.971585\nvn -0.143838 -0.187969 -0.971585\nvn -0.125985 -0.211562 -0.969211\nvn -0.020814 0.269083 0.962892\nvn -0.023317 0.272719 0.961811\nvn -0.006195 0.299602 0.954044\nvn -0.006195 0.299602 0.954044\nvn -0.007386 0.292342 0.956285\nvn -0.020814 0.269083 0.962892\nvn -0.023317 0.272719 0.961811\nvn -0.020814 0.269083 0.962892\nvn -0.041293 0.283677 0.958031\nvn -0.041293 0.283677 0.958031\nvn -0.044650 0.288497 0.956439\nvn -0.023317 0.272719 0.961811\nvn -0.007386 0.292342 0.956285\nvn -0.006195 0.299602 0.954044\nvn -0.081913 0.293807 0.952348\nvn -0.081913 0.293807 0.952348\nvn -0.094855 0.305530 0.947446\nvn -0.007386 0.292342 0.956285\nvn -0.094855 0.305530 0.947446\nvn -0.081913 0.293807 0.952348\nvn -0.034120 0.282207 0.958747\nvn -0.034120 0.282207 0.958747\nvn -0.032137 0.287734 0.957171\nvn -0.094855 0.305530 0.947446\nvn -0.032137 0.287734 0.957171\nvn -0.034120 0.282207 0.958747\nvn -0.026491 0.318103 0.947686\nvn -0.026491 0.318103 0.947686\nvn -0.023347 0.327071 0.944711\nvn -0.032137 0.287734 0.957171\nvn -0.044650 0.288497 0.956439\nvn -0.041293 0.283677 0.958031\nvn -0.038027 0.337479 0.940565\nvn -0.038027 0.337479 0.940565\nvn -0.048770 0.328540 0.943230\nvn -0.044650 0.288497 0.956439\nvn -0.048770 0.328540 0.943230\nvn -0.038027 0.337479 0.940565\nvn 0.035738 0.414943 0.909145\nvn 0.035738 0.414943 0.909145\nvn 0.024385 0.414997 0.909496\nvn -0.048770 0.328540 0.943230\nvn 0.024385 0.414997 0.909496\nvn 0.035738 0.414943 0.909145\nvn 0.120885 0.354935 0.927043\nvn 0.120885 0.354935 0.927043\nvn 0.136206 0.338546 0.931040\nvn 0.024385 0.414997 0.909496\nvn 0.177071 0.246014 0.952955\nvn 0.136206 0.338546 0.931040\nvn 0.120885 0.354935 0.927043\nvn 0.120885 0.354935 0.927043\nvn 0.179880 0.239240 0.954153\nvn 0.177071 0.246014 0.952955\nvn 0.177071 0.246014 0.952955\nvn 0.179880 0.239240 0.954153\nvn 0.203749 0.202040 0.957949\nvn 0.203749 0.202040 0.957949\nvn 0.203743 0.202034 0.957952\nvn 0.177071 0.246014 0.952955\nvn -0.481467 -0.089665 -0.871866\nvn -0.472322 -0.097327 -0.876036\nvn -0.641269 -0.016938 -0.767130\nvn -0.641269 -0.016938 -0.767130\nvn -0.742327 0.044924 -0.668530\nvn -0.481467 -0.089665 -0.871866\nvn -0.472322 -0.097327 -0.876036\nvn -0.481467 -0.089665 -0.871866\nvn -0.113409 -0.226726 -0.967333\nvn -0.113409 -0.226726 -0.967333\nvn -0.109807 -0.229289 -0.967145\nvn -0.472322 -0.097327 -0.876036\nvn -0.109807 -0.229289 -0.967145\nvn -0.113409 -0.226726 -0.967333\nvn -0.006561 -0.257152 -0.966349\nvn -0.006561 -0.257152 -0.966349\nvn -0.019105 -0.253491 -0.967149\nvn -0.109807 -0.229289 -0.967145\nvn -0.019105 -0.253491 -0.967149\nvn -0.006561 -0.257152 -0.966349\nvn 0.002167 -0.258773 -0.965936\nvn 0.002167 -0.258773 -0.965936\nvn -0.012543 -0.254283 -0.967049\nvn -0.019105 -0.253491 -0.967149\nvn 0.866400 0.479085 -0.140814\nvn 0.866400 0.479085 -0.140814\nvn 0.866400 0.479085 -0.140814\nvn 0.815958 0.566007 -0.117682\nvn 0.812817 0.571166 -0.114447\nvn 0.817328 0.564204 -0.116827\nvn 0.817328 0.564204 -0.116827\nvn 0.820262 0.559507 -0.118841\nvn 0.815958 0.566007 -0.117682\nvn 0.812817 0.571166 -0.114447\nvn 0.815958 0.566007 -0.117682\nvn 0.811285 0.574275 -0.109655\nvn 0.811285 0.574275 -0.109655\nvn 0.809044 0.578194 -0.105537\nvn 0.812817 0.571166 -0.114447\nvn 0.999170 -0.039217 0.011017\nvn 0.999171 -0.039186 0.011017\nvn 0.994099 -0.105474 0.025331\nvn 0.994099 -0.105474 0.025331\nvn 0.994442 -0.102361 0.024660\nvn 0.999170 -0.039217 0.011017\nvn 0.994442 -0.102361 0.024660\nvn 0.994099 -0.105474 0.025331\nvn 0.984987 -0.168193 0.038882\nvn 0.984987 -0.168193 0.038882\nvn 0.984988 -0.168188 0.038881\nvn 0.994442 -0.102361 0.024660\nvn 0.984988 -0.168188 0.038881\nvn 0.984987 -0.168193 0.038882\nvn 0.938092 -0.338058 0.075504\nvn 0.938092 -0.338058 0.075504\nvn 0.949576 -0.305558 0.070286\nvn 0.984988 -0.168188 0.038881\nvn 0.949576 -0.305558 0.070286\nvn 0.938092 -0.338058 0.075504\nvn 0.719804 -0.676100 0.157389\nvn 0.719804 -0.676100 0.157389\nvn 0.767258 -0.624732 0.144998\nvn 0.949576 -0.305558 0.070286\nvn 0.809044 0.578194 -0.105537\nvn 0.811285 0.574275 -0.109655\nvn 0.811329 0.575018 -0.105353\nvn 0.811329 0.575018 -0.105353\nvn 0.807760 0.580573 -0.102271\nvn 0.809044 0.578194 -0.105537\nvn -0.980177 0.193246 -0.043703\nvn -0.980270 0.192666 -0.044161\nvn -0.979010 0.200080 -0.038820\nvn -0.979010 0.200080 -0.038820\nvn -0.979033 0.200146 -0.037905\nvn -0.980177 0.193246 -0.043703\nvn -0.980270 0.192666 -0.044161\nvn -0.980177 0.193246 -0.043703\nvn -0.981600 0.186102 -0.042757\nvn -0.981600 0.186102 -0.042757\nvn -0.981600 0.186102 -0.042757\nvn -0.980270 0.192666 -0.044161\nvn 0.276261 -0.939231 0.203777\nvn 0.276287 -0.939217 0.203805\nvn 0.450343 -0.872456 0.189769\nvn 0.450343 -0.872456 0.189769\nvn 0.396114 -0.896818 0.197004\nvn 0.276261 -0.939231 0.203777\nvn 0.396114 -0.896818 0.197004\nvn 0.450343 -0.872456 0.189769\nvn 0.767258 -0.624732 0.144998\nvn 0.767258 -0.624732 0.144998\nvn 0.719804 -0.676100 0.157389\nvn 0.396114 -0.896818 0.197004\nvn -0.949088 0.196361 0.246321\nvn -0.930479 0.279345 0.237014\nvn -0.954248 0.248793 0.165872\nvn -0.954248 0.248793 0.165872\nvn -0.966694 0.177072 0.184793\nvn -0.949088 0.196361 0.246321\nvn -0.979667 -0.117225 0.162820\nvn -0.981191 0.120672 0.150673\nvn -0.980750 0.134160 0.141882\nvn -0.980750 0.134160 0.141882\nvn -0.973128 -0.180154 0.143409\nvn -0.979667 -0.117225 0.162820\nvn -0.975124 0.186565 0.119697\nvn -0.980750 0.134160 0.141882\nvn -0.981191 0.120672 0.150673\nvn 0.000000 -0.999577 -0.029084\nvn 0.000000 -0.999577 -0.029084\nvn 0.000000 -0.999577 -0.029084\nvn 0.000000 -0.999577 -0.029084\nvn 0.000000 -0.999577 -0.029084\nvn 0.000000 -0.999577 -0.029084\nvn 0.000000 -0.999577 -0.029084\nvn 0.000000 -0.999577 -0.029084\nvn 0.000000 -0.999577 -0.029084\nvn -0.121284 -0.988037 0.095251\nvn -0.121528 -0.987823 0.097143\nvn -0.119726 -0.988388 0.093571\nvn -0.119726 -0.988388 0.093571\nvn -0.119847 -0.988411 0.093174\nvn -0.121284 -0.988037 0.095251\nvn -0.121528 -0.987823 0.097143\nvn -0.121284 -0.988037 0.095251\nvn -0.129491 -0.985119 0.113012\nvn -0.129491 -0.985119 0.113012\nvn -0.138036 -0.982522 0.124883\nvn -0.121528 -0.987823 0.097143\nvn -0.147501 -0.979647 0.136148\nvn -0.138036 -0.982522 0.124883\nvn -0.129491 -0.985119 0.113012\nvn 0.148839 0.979802 -0.133550\nvn 0.148839 0.979802 -0.133550\nvn 0.148839 0.979802 -0.133550\nvn 0.103641 -0.245858 -0.963749\nvn 0.102789 -0.243146 -0.964528\nvn 0.105535 -0.224651 -0.968708\nvn 0.105535 -0.224651 -0.968708\nvn 0.098334 -0.230818 -0.968015\nvn 0.103641 -0.245858 -0.963749\nvn 0.098334 -0.230818 -0.968015\nvn 0.105535 -0.224651 -0.968708\nvn 0.117530 -0.025972 -0.992730\nvn 0.117530 -0.025972 -0.992730\nvn 0.037844 -0.297225 -0.954057\nvn 0.098334 -0.230818 -0.968015\nvn 0.105535 -0.224651 -0.968708\nvn 0.019837 -0.025758 -0.999471\nvn 0.117530 -0.025972 -0.992730\nvn 0.105535 -0.224651 -0.968708\nvn -0.065037 -0.113868 -0.991365\nvn 0.019837 -0.025758 -0.999471\nvn 0.105535 -0.224651 -0.968708\nvn -0.096990 -0.162179 -0.981983\nvn -0.065037 -0.113868 -0.991365\nvn -0.096990 -0.162179 -0.981983\nvn 0.105535 -0.224651 -0.968708\nvn 0.102789 -0.243146 -0.964528\nvn 0.102789 -0.243146 -0.964528\nvn -0.090885 -0.199411 -0.975692\nvn -0.096990 -0.162179 -0.981983\nvn -0.069094 -0.322340 -0.944099\nvn -0.090885 -0.199411 -0.975692\nvn 0.102789 -0.243146 -0.964528\nvn 0.102789 -0.243146 -0.964528\nvn 0.096441 -0.411950 -0.906088\nvn -0.069094 -0.322340 -0.944099\nvn 0.096441 -0.411950 -0.906088\nvn 0.102789 -0.243146 -0.964528\nvn 0.103641 -0.245858 -0.963749\nvn 0.103641 -0.245858 -0.963749\nvn 0.104008 -0.379075 -0.919502\nvn 0.096441 -0.411950 -0.906088\nvn -0.497134 -0.722094 0.481081\nvn -0.495821 -0.726122 0.476350\nvn -0.495698 -0.712692 0.496339\nvn -0.495698 -0.712692 0.496339\nvn -0.590918 -0.588049 0.552281\nvn -0.497134 -0.722094 0.481081\nvn -0.590918 -0.588049 0.552281\nvn -0.495698 -0.712692 0.496339\nvn -0.483453 -0.683231 0.547238\nvn -0.483453 -0.683231 0.547238\nvn -0.529601 -0.591891 0.607608\nvn -0.590918 -0.588049 0.552281\nvn -0.167336 -0.968251 0.185709\nvn -0.166451 -0.968340 0.186044\nvn -0.166084 -0.973038 0.160042\nvn -0.145028 -0.964961 0.218671\nvn -0.166451 -0.968340 0.186044\nvn -0.167336 -0.968251 0.185709\nvn -0.529601 -0.591891 0.607608\nvn -0.483453 -0.683231 0.547238\nvn -0.386618 -0.659858 0.644293\nvn -0.167336 -0.968251 0.185709\nvn -0.143959 -0.965142 0.218579\nvn -0.145028 -0.964961 0.218671\nvn -0.166084 -0.973038 0.160042\nvn -0.166389 -0.973036 0.159736\nvn -0.167336 -0.968251 0.185709\nvn -0.386618 -0.659858 0.644293\nvn -0.420856 -0.581722 0.696046\nvn -0.529601 -0.591891 0.607608\nvn -0.223402 -0.553989 0.801990\nvn -0.420856 -0.581722 0.696046\nvn -0.386618 -0.659858 0.644293\nvn -0.386618 -0.659858 0.644293\nvn -0.211281 -0.615745 0.759091\nvn -0.223402 -0.553989 0.801990\nvn -0.161721 -0.974722 0.154153\nvn -0.166389 -0.973036 0.159736\nvn -0.166084 -0.973038 0.160042\nvn -0.166084 -0.973038 0.160042\nvn -0.159736 -0.975175 0.153358\nvn -0.161721 -0.974722 0.154153\nvn -0.223402 -0.553989 0.801990\nvn -0.211281 -0.615745 0.759091\nvn 0.000000 -0.603554 0.797322\nvn 0.000611 -0.953138 0.302535\nvn 0.000489 -0.953147 0.302507\nvn -0.083012 -0.955979 0.281447\nvn -0.083012 -0.955979 0.281447\nvn -0.078312 -0.956751 0.280168\nvn 0.000611 -0.953138 0.302535\nvn -0.078312 -0.956751 0.280168\nvn -0.083012 -0.955979 0.281447\nvn -0.145028 -0.964961 0.218671\nvn -0.145028 -0.964961 0.218671\nvn -0.143959 -0.965142 0.218579\nvn -0.078312 -0.956751 0.280168\nvn 0.000000 -0.603554 0.797322\nvn 0.000000 -0.543459 0.839436\nvn -0.223402 -0.553989 0.801990\nvn -0.590918 -0.588049 0.552281\nvn -0.673337 -0.462544 0.576776\nvn -0.734472 -0.358630 0.576139\nvn -0.734472 -0.358630 0.576139\nvn -0.699034 -0.188423 0.689817\nvn -0.590918 -0.588049 0.552281\nvn -0.815451 -0.321920 0.481049\nvn -0.734472 -0.358630 0.576139\nvn -0.673337 -0.462544 0.576776\nvn 0.000000 -0.462541 0.886598\nvn 0.000000 -0.378190 0.925728\nvn -0.226454 -0.381858 0.896049\nvn -0.226454 -0.381858 0.896049\nvn -0.223798 -0.467861 0.854998\nvn 0.000000 -0.462541 0.886598\nvn 0.000000 -0.462541 0.886598\nvn -0.223798 -0.467861 0.854998\nvn -0.223402 -0.553989 0.801990\nvn -0.223402 -0.553989 0.801990\nvn 0.000000 -0.543459 0.839436\nvn 0.000000 -0.462541 0.886598\nvn -0.229534 -0.289809 0.929153\nvn -0.226454 -0.381858 0.896049\nvn 0.000000 -0.378190 0.925728\nvn 0.000000 -0.378190 0.925728\nvn 0.000000 -0.288831 0.957380\nvn -0.229534 -0.289809 0.929153\nvn -0.235483 -0.036378 0.971198\nvn -0.229534 -0.289809 0.929153\nvn 0.000000 -0.288831 0.957380\nvn 0.000000 -0.288831 0.957380\nvn 0.000000 -0.035249 0.999379\nvn -0.235483 -0.036378 0.971198\nvn -0.333056 -0.211407 -0.918902\nvn -0.350666 -0.198406 -0.915242\nvn -0.348074 -0.198011 -0.916317\nvn -0.333056 -0.211407 -0.918902\nvn -0.348074 -0.198011 -0.916317\nvn -0.350640 -0.201613 -0.914551\nvn -0.348074 -0.198011 -0.916317\nvn -0.345664 -0.199110 -0.916990\nvn -0.350640 -0.201613 -0.914551\nvn -0.348074 -0.198011 -0.916317\nvn -0.344802 -0.200143 -0.917090\nvn -0.345664 -0.199110 -0.916990\nvn -0.348074 -0.198011 -0.916317\nvn -0.344775 -0.200145 -0.917100\nvn -0.344802 -0.200143 -0.917090\nvn -0.344802 -0.200143 -0.917090\nvn -0.340626 -0.197124 -0.919302\nvn -0.345664 -0.199110 -0.916990\nvn -0.345664 -0.199110 -0.916990\nvn -0.341418 -0.197764 -0.918871\nvn -0.350640 -0.201613 -0.914551\nvn -0.250475 -0.282369 -0.926029\nvn -0.333056 -0.211407 -0.918902\nvn -0.350640 -0.201613 -0.914551\nvn -0.250475 -0.282369 -0.926029\nvn -0.350640 -0.201613 -0.914551\nvn -0.560146 -0.129462 -0.818215\nvn -0.902087 -0.431084 0.020143\nvn -0.902013 -0.431231 0.020326\nvn -0.912958 -0.407709 -0.016786\nvn -0.845913 -0.478213 0.236100\nvn -0.902087 -0.431084 0.020143\nvn -0.912958 -0.407709 -0.016786\nvn -0.885753 -0.463279 0.028535\nvn -0.845913 -0.478213 0.236100\nvn -0.912958 -0.407709 -0.016786\nvn -0.885753 -0.463279 0.028535\nvn -0.912958 -0.407709 -0.016786\nvn -0.897962 -0.432120 -0.083286\nvn -0.885753 -0.463279 0.028535\nvn -0.897962 -0.432120 -0.083286\nvn -0.890745 -0.444946 -0.092719\nvn -0.890328 -0.445698 -0.093113\nvn -0.885753 -0.463279 0.028535\nvn -0.890745 -0.444946 -0.092719\nvn -0.912866 -0.369743 0.173106\nvn -0.845913 -0.478213 0.236100\nvn -0.885753 -0.463279 0.028535\nvn -0.893190 -0.443650 0.073397\nvn -0.866565 -0.449214 0.217420\nvn -0.856490 -0.427971 0.288559\nvn -0.546749 -0.808023 -0.219463\nvn -0.579499 -0.763805 -0.284225\nvn -0.519012 -0.832415 -0.194195\nvn -0.579499 -0.763805 -0.284225\nvn -0.546749 -0.808023 -0.219463\nvn -0.649152 -0.665053 -0.369196\nvn -0.649152 -0.665053 -0.369196\nvn -0.678135 -0.577819 -0.454155\nvn -0.579499 -0.763805 -0.284225\nvn -0.678135 -0.577819 -0.454155\nvn -0.649152 -0.665053 -0.369196\nvn -0.741616 -0.337603 -0.579681\nvn -0.741616 -0.337603 -0.579681\nvn -0.735472 -0.300213 -0.607415\nvn -0.678135 -0.577819 -0.454155\nvn -0.735472 -0.300213 -0.607415\nvn -0.741616 -0.337603 -0.579681\nvn -0.744567 -0.083866 -0.662258\nvn -0.744567 -0.083866 -0.662258\nvn -0.735060 -0.087652 -0.672312\nvn -0.735472 -0.300213 -0.607415\nvn -0.735060 -0.087652 -0.672312\nvn -0.744567 -0.083866 -0.662258\nvn -0.760960 -0.008637 -0.648742\nvn -0.760960 -0.008637 -0.648742\nvn -0.759753 -0.019685 -0.649913\nvn -0.735060 -0.087652 -0.672312\nvn -0.815430 0.423081 -0.395065\nvn -0.787946 0.487544 -0.376088\nvn -0.746238 0.627516 -0.222153\nvn -0.746238 0.627516 -0.222153\nvn -0.807173 0.490627 -0.328265\nvn -0.815430 0.423081 -0.395065\nvn -0.807173 0.490627 -0.328265\nvn -0.746238 0.627516 -0.222153\nvn -0.691808 0.712225 -0.118903\nvn -0.912866 -0.369743 0.173106\nvn -0.924451 -0.360460 0.124334\nvn -0.892276 -0.439165 0.104771\nvn -0.885753 -0.463279 0.028535\nvn -0.866565 -0.449214 0.217420\nvn -0.912866 -0.369743 0.173106\nvn -0.056216 0.836090 0.545705\nvn -0.059635 0.775980 0.627932\nvn -0.045047 0.908007 0.416526\nvn -0.059635 0.775980 0.627932\nvn -0.056216 0.836090 0.545705\nvn -0.067936 0.700481 0.710430\nvn -0.067936 0.700481 0.710430\nvn -0.063359 0.695419 0.715806\nvn -0.059635 0.775980 0.627932\nvn -0.051242 0.033236 0.998133\nvn -0.054567 0.043489 0.997563\nvn -0.047030 -0.058322 0.997189\nvn -0.047030 -0.058322 0.997189\nvn -0.039614 -0.139870 0.989377\nvn -0.051242 0.033236 0.998133\nvn -0.039614 -0.139870 0.989377\nvn -0.047030 -0.058322 0.997189\nvn -0.034029 -0.300308 0.953235\nvn -0.034029 -0.300308 0.953235\nvn -0.034944 -0.356188 0.933761\nvn -0.039614 -0.139870 0.989377\nvn -0.034944 -0.356188 0.933761\nvn -0.034029 -0.300308 0.953235\nvn -0.035707 -0.431321 0.901492\nvn -0.035707 -0.431321 0.901492\nvn -0.036287 -0.429315 0.902426\nvn -0.034944 -0.356188 0.933761\nvn -0.038576 -0.879962 0.473476\nvn -0.037355 -0.807078 0.589263\nvn -0.040590 -0.810836 0.583864\nvn -0.040590 -0.810836 0.583864\nvn -0.040560 -0.878932 0.475220\nvn -0.038576 -0.879962 0.473476\nvn -0.038576 -0.879962 0.473476\nvn -0.040560 -0.878932 0.475220\nvn -0.037416 -0.942283 0.332721\nvn -0.845913 -0.478213 0.236100\nvn -0.912866 -0.369743 0.173106\nvn -0.764990 -0.545162 0.342912\nvn -0.866565 -0.449214 0.217420\nvn -0.885753 -0.463279 0.028535\nvn -0.890328 -0.445698 -0.093113\nvn 0.123603 0.717569 -0.685432\nvn 0.133309 0.708112 -0.693402\nvn 0.257645 0.719770 -0.644632\nvn 0.133309 0.708112 -0.693402\nvn 0.123603 0.717569 -0.685432\nvn -0.000000 0.714786 -0.699343\nvn -0.554756 0.511784 -0.655990\nvn -0.760640 0.450317 -0.467591\nvn -0.878489 0.277295 -0.389056\nvn -0.495512 0.606022 -0.622258\nvn -0.760640 0.450317 -0.467591\nvn -0.554756 0.511784 -0.655990\nvn -0.554756 0.511784 -0.655990\nvn -0.497833 0.382377 -0.778428\nvn -0.495512 0.606022 -0.622258\nvn -0.495512 0.606022 -0.622258\nvn -0.497833 0.382377 -0.778428\nvn -0.533356 0.513792 -0.671974\nvn -0.533356 0.513792 -0.671974\nvn -0.520536 0.703071 -0.484493\nvn -0.495512 0.606022 -0.622258\nvn -0.804498 0.007080 -0.593913\nvn -0.804482 0.032136 -0.593107\nvn -0.803907 0.031221 -0.593935\nvn -0.803907 0.031221 -0.593935\nvn -0.804147 0.009186 -0.594359\nvn -0.804498 0.007080 -0.593913\nvn -0.804498 0.007080 -0.593913\nvn -0.804147 0.009186 -0.594359\nvn -0.801529 -0.011628 -0.597843\nvn -0.801529 -0.011628 -0.597843\nvn -0.917402 0.068881 -0.391956\nvn -0.804498 0.007080 -0.593913\nvn -0.917402 0.068881 -0.391956\nvn -0.801529 -0.011628 -0.597843\nvn -0.803992 -0.021119 -0.594265\nvn -0.803992 -0.021119 -0.594265\nvn -0.919833 0.048769 -0.389266\nvn -0.917402 0.068881 -0.391956\nvn -0.898740 -0.068669 -0.433072\nvn -0.919833 0.048769 -0.389266\nvn -0.803992 -0.021119 -0.594265\nvn -0.803992 -0.021119 -0.594265\nvn -0.780861 -0.173928 -0.600005\nvn -0.898740 -0.068669 -0.433072\nvn -0.844524 -0.370899 -0.386280\nvn -0.898740 -0.068669 -0.433072\nvn -0.780861 -0.173928 -0.600005\nvn -0.780861 -0.173928 -0.600005\nvn -0.738283 -0.306685 -0.600735\nvn -0.844524 -0.370899 -0.386280\nvn -0.844524 -0.370899 -0.386280\nvn -0.738283 -0.306685 -0.600735\nvn -0.788429 -0.343004 -0.510614\nvn -0.788429 -0.343004 -0.510614\nvn -0.851341 -0.405177 -0.333242\nvn -0.844524 -0.370899 -0.386280\nvn -0.903248 -0.408959 -0.129982\nvn -0.851341 -0.405177 -0.333242\nvn -0.788429 -0.343004 -0.510614\nvn -0.788429 -0.343004 -0.510614\nvn -0.914909 -0.380454 -0.134895\nvn -0.903248 -0.408959 -0.129982\nvn 0.271652 0.903187 -0.332355\nvn -0.050784 0.990809 -0.125373\nvn -0.046267 0.993448 -0.104496\nvn -0.046267 0.993448 -0.104496\nvn 0.257152 0.905312 -0.338058\nvn 0.271652 0.903187 -0.332355\nvn 0.301011 0.912830 -0.275924\nvn 0.257152 0.905312 -0.338058\nvn -0.046267 0.993448 -0.104496\nvn -0.046267 0.993448 -0.104496\nvn -0.001831 0.999343 -0.036196\nvn 0.301011 0.912830 -0.275924\nvn 0.371481 0.910117 -0.183543\nvn 0.301011 0.912830 -0.275924\nvn -0.001831 0.999343 -0.036196\nvn -0.001831 0.999343 -0.036196\nvn 0.070164 0.995850 0.057956\nvn 0.371481 0.910117 -0.183543\nvn 0.301011 0.912830 -0.275924\nvn 0.371481 0.910117 -0.183543\nvn 0.608487 0.687073 -0.397082\nvn 0.608487 0.687073 -0.397082\nvn 0.551788 0.685707 -0.474696\nvn 0.301011 0.912830 -0.275924\nvn 0.257152 0.905312 -0.338058\nvn 0.301011 0.912830 -0.275924\nvn 0.551788 0.685707 -0.474696\nvn 0.551788 0.685707 -0.474696\nvn 0.518839 0.676231 -0.522990\nvn 0.257152 0.905312 -0.338058\nvn 0.271652 0.903187 -0.332355\nvn 0.257152 0.905312 -0.338058\nvn 0.518839 0.676231 -0.522990\nvn 0.518839 0.676231 -0.522990\nvn 0.552427 0.668552 -0.497859\nvn 0.271652 0.903187 -0.332355\nvn 0.552427 0.668552 -0.497859\nvn 0.518839 0.676231 -0.522990\nvn 0.694724 0.346645 -0.630235\nvn 0.694724 0.346645 -0.630235\nvn 0.740798 0.335073 -0.582189\nvn 0.552427 0.668552 -0.497859\nvn 0.711320 0.358148 -0.604776\nvn 0.694724 0.346645 -0.630235\nvn 0.518839 0.676231 -0.522990\nvn 0.518839 0.676231 -0.522990\nvn 0.551788 0.685707 -0.474696\nvn 0.711320 0.358148 -0.604776\nvn 0.746630 0.366632 -0.555090\nvn 0.711320 0.358148 -0.604776\nvn 0.551788 0.685707 -0.474696\nvn 0.551788 0.685707 -0.474696\nvn 0.608487 0.687073 -0.397082\nvn 0.746630 0.366632 -0.555090\nvn 0.711320 0.358148 -0.604776\nvn 0.746630 0.366632 -0.555090\nvn 0.770915 -0.001587 -0.636936\nvn 0.770915 -0.001587 -0.636936\nvn 0.760662 -0.016755 -0.648931\nvn 0.711320 0.358148 -0.604776\nvn 0.694724 0.346645 -0.630235\nvn 0.711320 0.358148 -0.604776\nvn 0.760662 -0.016755 -0.648931\nvn 0.760662 -0.016755 -0.648931\nvn 0.764555 -0.030122 -0.643854\nvn 0.694724 0.346645 -0.630235\nvn 0.740798 0.335073 -0.582189\nvn 0.694724 0.346645 -0.630235\nvn 0.764555 -0.030122 -0.643854\nvn 0.764555 -0.030122 -0.643854\nvn 0.819658 -0.043490 -0.571200\nvn 0.740798 0.335073 -0.582189\nvn 0.819658 -0.043490 -0.571200\nvn 0.764555 -0.030122 -0.643854\nvn 0.723239 -0.402362 -0.561275\nvn 0.723239 -0.402362 -0.561275\nvn 0.779946 -0.416097 -0.467491\nvn 0.819658 -0.043490 -0.571200\nvn 0.699126 -0.388779 -0.600061\nvn 0.723239 -0.402362 -0.561275\nvn 0.764555 -0.030122 -0.643854\nvn 0.764555 -0.030122 -0.643854\nvn 0.760662 -0.016755 -0.648931\nvn 0.699126 -0.388779 -0.600061\nvn 0.682784 -0.370813 -0.629527\nvn 0.699126 -0.388779 -0.600061\nvn 0.760662 -0.016755 -0.648931\nvn 0.760662 -0.016755 -0.648931\nvn 0.770915 -0.001587 -0.636936\nvn 0.682784 -0.370813 -0.629527\nvn 0.699126 -0.388779 -0.600061\nvn 0.682784 -0.370813 -0.629527\nvn 0.494442 -0.692084 -0.525877\nvn 0.494442 -0.692084 -0.525877\nvn 0.536289 -0.708388 -0.458891\nvn 0.699126 -0.388779 -0.600061\nvn 0.723239 -0.402362 -0.561275\nvn 0.699126 -0.388779 -0.600061\nvn 0.536289 -0.708388 -0.458891\nvn 0.536289 -0.708388 -0.458891\nvn 0.575109 -0.718397 -0.391351\nvn 0.723239 -0.402362 -0.561275\nvn 0.779946 -0.416097 -0.467491\nvn 0.723239 -0.402362 -0.561275\nvn 0.575109 -0.718397 -0.391351\nvn 0.575109 -0.718397 -0.391351\nvn 0.618322 -0.729809 -0.291643\nvn 0.779946 -0.416097 -0.467491\nvn 0.618322 -0.729809 -0.291643\nvn 0.575109 -0.718397 -0.391351\nvn 0.336356 -0.928557 -0.156992\nvn 0.336356 -0.928557 -0.156992\nvn 0.353782 -0.931883 -0.080205\nvn 0.618322 -0.729809 -0.291643\nvn 0.291058 -0.926641 -0.237955\nvn 0.336356 -0.928557 -0.156992\nvn 0.575109 -0.718397 -0.391351\nvn 0.575109 -0.718397 -0.391351\nvn 0.536289 -0.708388 -0.458891\nvn 0.291058 -0.926641 -0.237955\nvn 0.228709 -0.915690 -0.330459\nvn 0.291058 -0.926641 -0.237955\nvn 0.536289 -0.708388 -0.458891\nvn 0.536289 -0.708388 -0.458891\nvn 0.494442 -0.692084 -0.525877\nvn 0.228709 -0.915690 -0.330459\nvn 0.291058 -0.926641 -0.237955\nvn 0.228709 -0.915690 -0.330459\nvn -0.075321 -0.994649 -0.070713\nvn -0.075321 -0.994649 -0.070713\nvn -0.002533 -0.999575 0.029023\nvn 0.291058 -0.926641 -0.237955\nvn 0.336356 -0.928557 -0.156992\nvn 0.291058 -0.926641 -0.237955\nvn -0.002533 -0.999575 0.029023\nvn -0.002533 -0.999575 0.029023\nvn 0.040347 -0.993897 0.102668\nvn 0.336356 -0.928557 -0.156992\nvn 0.353782 -0.931883 -0.080205\nvn 0.336356 -0.928557 -0.156992\nvn 0.040347 -0.993897 0.102668\nvn 0.040347 -0.993897 0.102668\nvn 0.027101 -0.991206 0.129524\nvn 0.353782 -0.931883 -0.080205\nvn 0.473382 -0.680515 -0.559293\nvn 0.494442 -0.692084 -0.525877\nvn 0.682784 -0.370813 -0.629527\nvn 0.682784 -0.370813 -0.629527\nvn 0.689527 -0.362907 -0.626779\nvn 0.473382 -0.680515 -0.559293\nvn 0.689527 -0.362907 -0.626779\nvn 0.682784 -0.370813 -0.629527\nvn 0.770915 -0.001587 -0.636936\nvn 0.770915 -0.001587 -0.636936\nvn 0.800635 0.002289 -0.599148\nvn 0.689527 -0.362907 -0.626779\nvn 0.800635 0.002289 -0.599148\nvn 0.770915 -0.001587 -0.636936\nvn 0.746630 0.366632 -0.555090\nvn 0.746630 0.366632 -0.555090\nvn 0.793719 0.363822 -0.487487\nvn 0.800635 0.002289 -0.599148\nvn 0.793719 0.363822 -0.487487\nvn 0.746630 0.366632 -0.555090\nvn 0.608487 0.687073 -0.397082\nvn 0.608487 0.687073 -0.397082\nvn 0.669603 0.675341 -0.309104\nvn 0.793719 0.363822 -0.487487\nvn 0.669603 0.675341 -0.309104\nvn 0.608487 0.687073 -0.397082\nvn 0.371481 0.910117 -0.183543\nvn 0.371481 0.910117 -0.183543\nvn 0.442067 0.892802 -0.086491\nvn 0.669603 0.675341 -0.309104\nvn 0.442067 0.892802 -0.086491\nvn 0.371481 0.910117 -0.183543\nvn 0.070164 0.995850 0.057956\nvn 0.070164 0.995850 0.057956\nvn 0.140970 0.978244 0.152201\nvn 0.442067 0.892802 -0.086491\nvn 0.481989 0.876053 -0.014741\nvn 0.442067 0.892802 -0.086491\nvn 0.140970 0.978244 0.152201\nvn 0.140970 0.978244 0.152201\nvn 0.173349 0.962608 0.208172\nvn 0.481989 0.876053 -0.014741\nvn 0.494688 0.868612 0.028230\nvn 0.481989 0.876053 -0.014741\nvn 0.173349 0.962608 0.208172\nvn 0.173349 0.962608 0.208172\nvn 0.168037 0.961897 0.215678\nvn 0.494688 0.868612 0.028230\nvn 0.488703 0.871901 0.030946\nvn 0.494688 0.868612 0.028230\nvn 0.168037 0.961897 0.215678\nvn 0.168037 0.961897 0.215678\nvn 0.136970 0.979147 0.150032\nvn 0.488703 0.871901 0.030946\nvn 0.494688 0.868612 0.028230\nvn 0.488703 0.871901 0.030946\nvn 0.767263 0.636701 -0.076940\nvn 0.767263 0.636701 -0.076940\nvn 0.746933 0.647715 -0.150186\nvn 0.494688 0.868612 0.028230\nvn 0.481989 0.876053 -0.014741\nvn 0.494688 0.868612 0.028230\nvn 0.746933 0.647715 -0.150186\nvn 0.746933 0.647715 -0.150186\nvn 0.714919 0.661144 -0.227553\nvn 0.481989 0.876053 -0.014741\nvn 0.442067 0.892802 -0.086491\nvn 0.481989 0.876053 -0.014741\nvn 0.714919 0.661144 -0.227553\nvn 0.714919 0.661144 -0.227553\nvn 0.669603 0.675341 -0.309104\nvn 0.442067 0.892802 -0.086491\nvn 0.844191 0.353626 -0.402853\nvn 0.793719 0.363822 -0.487487\nvn 0.669603 0.675341 -0.309104\nvn 0.669603 0.675341 -0.309104\nvn 0.714919 0.661144 -0.227553\nvn 0.844191 0.353626 -0.402853\nvn 0.894876 0.334549 -0.295423\nvn 0.844191 0.353626 -0.402853\nvn 0.714919 0.661144 -0.227553\nvn 0.714919 0.661144 -0.227553\nvn 0.746933 0.647715 -0.150186\nvn 0.894876 0.334549 -0.295423\nvn 0.937390 0.310165 -0.158424\nvn 0.894876 0.334549 -0.295423\nvn 0.746933 0.647715 -0.150186\nvn 0.746933 0.647715 -0.150186\nvn 0.767263 0.636701 -0.076940\nvn 0.937390 0.310165 -0.158424\nvn 0.894876 0.334549 -0.295423\nvn 0.937390 0.310165 -0.158424\nvn 0.975810 -0.067446 -0.207956\nvn 0.975810 -0.067446 -0.207956\nvn 0.918967 -0.032442 -0.392997\nvn 0.894876 0.334549 -0.295423\nvn 0.844191 0.353626 -0.402853\nvn 0.894876 0.334549 -0.295423\nvn 0.918967 -0.032442 -0.392997\nvn 0.918967 -0.032442 -0.392997\nvn 0.853855 -0.006683 -0.520468\nvn 0.844191 0.353626 -0.402853\nvn 0.793719 0.363822 -0.487487\nvn 0.844191 0.353626 -0.402853\nvn 0.853855 -0.006683 -0.520468\nvn 0.853855 -0.006683 -0.520468\nvn 0.800635 0.002289 -0.599148\nvn 0.793719 0.363822 -0.487487\nvn 0.800635 0.002289 -0.599148\nvn 0.853855 -0.006683 -0.520468\nvn 0.737046 -0.372795 -0.563726\nvn 0.737046 -0.372795 -0.563726\nvn 0.689527 -0.362907 -0.626779\nvn 0.800635 0.002289 -0.599148\nvn 0.806718 -0.403344 -0.431879\nvn 0.737046 -0.372795 -0.563726\nvn 0.853855 -0.006683 -0.520468\nvn 0.853855 -0.006683 -0.520468\nvn 0.918967 -0.032442 -0.392997\nvn 0.806718 -0.403344 -0.431879\nvn 0.868854 -0.441705 -0.223584\nvn 0.806718 -0.403344 -0.431879\nvn 0.918967 -0.032442 -0.392997\nvn 0.918967 -0.032442 -0.392997\nvn 0.975810 -0.067446 -0.207956\nvn 0.868854 -0.441705 -0.223584\nvn 0.806718 -0.403344 -0.431879\nvn 0.868854 -0.441705 -0.223584\nvn 0.625163 -0.752490 -0.207197\nvn 0.625163 -0.752490 -0.207197\nvn 0.564663 -0.718264 -0.406513\nvn 0.806718 -0.403344 -0.431879\nvn 0.737046 -0.372795 -0.563726\nvn 0.806718 -0.403344 -0.431879\nvn 0.564663 -0.718264 -0.406513\nvn 0.564663 -0.718264 -0.406513\nvn 0.503266 -0.688763 -0.521852\nvn 0.737046 -0.372795 -0.563726\nvn 0.689527 -0.362907 -0.626779\nvn 0.737046 -0.372795 -0.563726\nvn 0.503266 -0.688763 -0.521852\nvn 0.503266 -0.688763 -0.521852\nvn 0.473382 -0.680515 -0.559293\nvn 0.689527 -0.362907 -0.626779\nvn 0.473382 -0.680515 -0.559293\nvn 0.503266 -0.688763 -0.521852\nvn 0.186257 -0.898658 -0.397142\nvn 0.186257 -0.898658 -0.397142\nvn 0.181286 -0.899104 -0.398432\nvn 0.473382 -0.680515 -0.559293\nvn 0.494442 -0.692084 -0.525877\nvn 0.473382 -0.680515 -0.559293\nvn 0.181286 -0.899104 -0.398432\nvn 0.181286 -0.899104 -0.398432\nvn 0.228709 -0.915690 -0.330459\nvn 0.494442 -0.692084 -0.525877\nvn 0.229230 -0.918812 -0.321306\nvn 0.186257 -0.898658 -0.397142\nvn 0.503266 -0.688763 -0.521852\nvn 0.503266 -0.688763 -0.521852\nvn 0.564663 -0.718264 -0.406513\nvn 0.229230 -0.918812 -0.321306\nvn 0.282270 -0.945111 -0.164589\nvn 0.229230 -0.918812 -0.321306\nvn 0.564663 -0.718264 -0.406513\nvn 0.564663 -0.718264 -0.406513\nvn 0.625163 -0.752490 -0.207197\nvn 0.282270 -0.945111 -0.164589\nvn 0.229230 -0.918812 -0.321306\nvn 0.282270 -0.945111 -0.164589\nvn -0.099280 -0.989685 -0.103278\nvn -0.099280 -0.989685 -0.103278\nvn -0.137610 -0.971911 -0.190927\nvn 0.229230 -0.918812 -0.321306\nvn 0.186257 -0.898658 -0.397142\nvn 0.229230 -0.918812 -0.321306\nvn -0.137610 -0.971911 -0.190927\nvn -0.137610 -0.971911 -0.190927\nvn -0.157843 -0.965128 -0.208840\nvn 0.186257 -0.898658 -0.397142\nvn 0.181286 -0.899104 -0.398432\nvn 0.186257 -0.898658 -0.397142\nvn -0.157843 -0.965128 -0.208840\nvn -0.157843 -0.965128 -0.208840\nvn -0.139562 -0.976139 -0.166357\nvn 0.181286 -0.899104 -0.398432\nvn 0.228709 -0.915690 -0.330459\nvn 0.181286 -0.899104 -0.398432\nvn -0.139562 -0.976139 -0.166357\nvn -0.139562 -0.976139 -0.166357\nvn -0.075321 -0.994649 -0.070713\nvn 0.228709 -0.915690 -0.330459\nvn -0.075321 -0.994649 -0.070713\nvn -0.139562 -0.976139 -0.166357\nvn -0.434477 -0.895658 0.095008\nvn -0.434477 -0.895658 0.095008\nvn -0.365372 -0.908699 0.201913\nvn -0.075321 -0.994649 -0.070713\nvn -0.471485 -0.881780 0.012910\nvn -0.434477 -0.895658 0.095008\nvn -0.139562 -0.976139 -0.166357\nvn -0.139562 -0.976139 -0.166357\nvn -0.157843 -0.965128 -0.208840\nvn -0.471485 -0.881780 0.012910\nvn -0.157843 -0.965128 -0.208840\nvn -0.137610 -0.971911 -0.190927\nvn -0.476591 -0.878501 -0.033113\nvn -0.476591 -0.878501 -0.033113\nvn -0.471485 -0.881780 0.012910\nvn -0.157843 -0.965128 -0.208840\nvn -0.137610 -0.971911 -0.190927\nvn -0.099280 -0.989685 -0.103278\nvn -0.460807 -0.887037 -0.028688\nvn -0.460807 -0.887037 -0.028688\nvn -0.476591 -0.878501 -0.033113\nvn -0.137610 -0.971911 -0.190927\nvn -0.074131 -0.997004 0.022066\nvn -0.099280 -0.989685 -0.103278\nvn 0.282270 -0.945111 -0.164589\nvn 0.282270 -0.945111 -0.164589\nvn 0.310351 -0.950280 0.025514\nvn -0.074131 -0.997004 0.022066\nvn 0.310351 -0.950280 0.025514\nvn 0.282270 -0.945111 -0.164589\nvn 0.625163 -0.752490 -0.207197\nvn 0.625163 -0.752490 -0.207197\nvn 0.649111 -0.760414 0.020631\nvn 0.310351 -0.950280 0.025514\nvn 0.649111 -0.760414 0.020631\nvn 0.625163 -0.752490 -0.207197\nvn 0.868854 -0.441705 -0.223584\nvn 0.868854 -0.441705 -0.223584\nvn 0.889620 -0.456620 0.008667\nvn 0.649111 -0.760414 0.020631\nvn 0.889620 -0.456620 0.008667\nvn 0.868854 -0.441705 -0.223584\nvn 0.975810 -0.067446 -0.207956\nvn 0.975810 -0.067446 -0.207956\nvn 0.996310 -0.085635 -0.005676\nvn 0.889620 -0.456620 0.008667\nvn 0.996310 -0.085635 -0.005676\nvn 0.975810 -0.067446 -0.207956\nvn 0.937390 0.310165 -0.158424\nvn 0.937390 0.310165 -0.158424\nvn 0.954579 0.297532 -0.015931\nvn 0.996310 -0.085635 -0.005676\nvn 0.954579 0.297532 -0.015931\nvn 0.937390 0.310165 -0.158424\nvn 0.767263 0.636701 -0.076940\nvn 0.767263 0.636701 -0.076940\nvn 0.771972 0.635462 -0.015748\nvn 0.954579 0.297532 -0.015931\nvn 0.771972 0.635462 -0.015748\nvn 0.767263 0.636701 -0.076940\nvn 0.488703 0.871901 0.030946\nvn 0.488703 0.871901 0.030946\nvn 0.473351 0.880873 -0.001434\nvn 0.771972 0.635462 -0.015748\nvn 0.473351 0.880873 -0.001434\nvn 0.488703 0.871901 0.030946\nvn 0.136970 0.979147 0.150032\nvn 0.136970 0.979147 0.150032\nvn 0.101963 0.994483 0.024629\nvn 0.473351 0.880873 -0.001434\nvn 0.466055 0.882945 -0.056582\nvn 0.473351 0.880873 -0.001434\nvn 0.101963 0.994483 0.024629\nvn 0.101963 0.994483 0.024629\nvn 0.092074 0.988009 -0.123936\nvn 0.466055 0.882945 -0.056582\nvn 0.475480 0.870361 -0.128026\nvn 0.466055 0.882945 -0.056582\nvn 0.092074 0.988009 -0.123936\nvn 0.092074 0.988009 -0.123936\nvn 0.116856 0.953252 -0.278666\nvn 0.475480 0.870361 -0.128026\nvn 0.504944 0.838186 -0.206098\nvn 0.475480 0.870361 -0.128026\nvn 0.116856 0.953252 -0.278666\nvn 0.116856 0.953252 -0.278666\nvn 0.173929 0.889848 -0.421806\nvn 0.504944 0.838186 -0.206098\nvn 0.475480 0.870361 -0.128026\nvn 0.504944 0.838186 -0.206098\nvn 0.759053 0.650068 0.035372\nvn 0.759053 0.650068 0.035372\nvn 0.760811 0.647860 0.037996\nvn 0.475480 0.870361 -0.128026\nvn 0.466055 0.882945 -0.056582\nvn 0.475480 0.870361 -0.128026\nvn 0.760811 0.647860 0.037996\nvn 0.760811 0.647860 0.037996\nvn 0.767444 0.640727 0.022340\nvn 0.466055 0.882945 -0.056582\nvn 0.473351 0.880873 -0.001434\nvn 0.466055 0.882945 -0.056582\nvn 0.767444 0.640727 0.022340\nvn 0.767444 0.640727 0.022340\nvn 0.771972 0.635462 -0.015748\nvn 0.473351 0.880873 -0.001434\nvn 0.947523 0.303237 0.101231\nvn 0.954579 0.297532 -0.015931\nvn 0.771972 0.635462 -0.015748\nvn 0.771972 0.635462 -0.015748\nvn 0.767444 0.640727 0.022340\nvn 0.947523 0.303237 0.101231\nvn 0.925119 0.326766 0.193337\nvn 0.947523 0.303237 0.101231\nvn 0.767444 0.640727 0.022340\nvn 0.767444 0.640727 0.022340\nvn 0.760811 0.647860 0.037996\nvn 0.925119 0.326766 0.193337\nvn 0.894486 0.361439 0.263167\nvn 0.925119 0.326766 0.193337\nvn 0.760811 0.647860 0.037996\nvn 0.760811 0.647860 0.037996\nvn 0.759053 0.650068 0.035372\nvn 0.894486 0.361439 0.263167\nvn 0.925119 0.326766 0.193337\nvn 0.894486 0.361439 0.263167\nvn 0.894398 0.021150 0.446772\nvn 0.894398 0.021150 0.446772\nvn 0.947554 -0.039186 0.317184\nvn 0.925119 0.326766 0.193337\nvn 0.947523 0.303237 0.101231\nvn 0.925119 0.326766 0.193337\nvn 0.947554 -0.039186 0.317184\nvn 0.947554 -0.039186 0.317184\nvn 0.982832 -0.076328 0.167976\nvn 0.947523 0.303237 0.101231\nvn 0.954579 0.297532 -0.015931\nvn 0.947523 0.303237 0.101231\nvn 0.982832 -0.076328 0.167976\nvn 0.982832 -0.076328 0.167976\nvn 0.996310 -0.085635 -0.005676\nvn 0.954579 0.297532 -0.015931\nvn 0.996310 -0.085635 -0.005676\nvn 0.982832 -0.076328 0.167976\nvn 0.872767 -0.439908 0.211561\nvn 0.872767 -0.439908 0.211561\nvn 0.889620 -0.456620 0.008667\nvn 0.996310 -0.085635 -0.005676\nvn 0.830658 -0.393217 0.394194\nvn 0.872767 -0.439908 0.211561\nvn 0.982832 -0.076328 0.167976\nvn 0.982832 -0.076328 0.167976\nvn 0.947554 -0.039186 0.317184\nvn 0.830658 -0.393217 0.394194\nvn 0.762965 -0.317131 0.563304\nvn 0.830658 -0.393217 0.394194\nvn 0.947554 -0.039186 0.317184\nvn 0.947554 -0.039186 0.317184\nvn 0.894398 0.021150 0.446772\nvn 0.762965 -0.317131 0.563304\nvn 0.830658 -0.393217 0.394194\nvn 0.762965 -0.317131 0.563304\nvn 0.520480 -0.607552 0.599984\nvn 0.520480 -0.607552 0.599984\nvn 0.594327 -0.688325 0.415913\nvn 0.830658 -0.393217 0.394194\nvn 0.872767 -0.439908 0.211561\nvn 0.830658 -0.393217 0.394194\nvn 0.594327 -0.688325 0.415913\nvn 0.594327 -0.688325 0.415913\nvn 0.636267 -0.737988 0.224806\nvn 0.872767 -0.439908 0.211561\nvn 0.889620 -0.456620 0.008667\nvn 0.872767 -0.439908 0.211561\nvn 0.636267 -0.737988 0.224806\nvn 0.636267 -0.737988 0.224806\nvn 0.649111 -0.760414 0.020631\nvn 0.889620 -0.456620 0.008667\nvn 0.649111 -0.760414 0.020631\nvn 0.636267 -0.737988 0.224806\nvn 0.306258 -0.929789 0.204202\nvn 0.306258 -0.929789 0.204202\nvn 0.310351 -0.950280 0.025514\nvn 0.649111 -0.760414 0.020631\nvn 0.270490 -0.885081 0.378771\nvn 0.306258 -0.929789 0.204202\nvn 0.636267 -0.737988 0.224806\nvn 0.636267 -0.737988 0.224806\nvn 0.594327 -0.688325 0.415913\nvn 0.270490 -0.885081 0.378771\nvn 0.200208 -0.809864 0.551395\nvn 0.270490 -0.885081 0.378771\nvn 0.594327 -0.688325 0.415913\nvn 0.594327 -0.688325 0.415913\nvn 0.520480 -0.607552 0.599984\nvn 0.200208 -0.809864 0.551395\nvn 0.270490 -0.885081 0.378771\nvn 0.200208 -0.809864 0.551395\nvn -0.153268 -0.894068 0.420894\nvn -0.153268 -0.894068 0.420894\nvn -0.097357 -0.953646 0.284748\nvn 0.270490 -0.885081 0.378771\nvn 0.306258 -0.929789 0.204202\nvn 0.270490 -0.885081 0.378771\nvn -0.097357 -0.953646 0.284748\nvn -0.097357 -0.953646 0.284748\nvn -0.071842 -0.985923 0.150979\nvn 0.306258 -0.929789 0.204202\nvn 0.310351 -0.950280 0.025514\nvn 0.306258 -0.929789 0.204202\nvn -0.071842 -0.985923 0.150979\nvn -0.071842 -0.985923 0.150979\nvn -0.074131 -0.997004 0.022066\nvn 0.310351 -0.950280 0.025514\nvn -0.074131 -0.997004 0.022066\nvn -0.071842 -0.985923 0.150979\nvn -0.443715 -0.893291 0.071750\nvn -0.443715 -0.893291 0.071750\nvn -0.447625 -0.894121 0.013398\nvn -0.074131 -0.997004 0.022066\nvn -0.071842 -0.985923 0.150979\nvn -0.097357 -0.953646 0.284748\nvn -0.455713 -0.878528 0.143227\nvn -0.455713 -0.878528 0.143227\nvn -0.443715 -0.893291 0.071750\nvn -0.071842 -0.985923 0.150979\nvn -0.097357 -0.953646 0.284748\nvn -0.153268 -0.894068 0.420894\nvn -0.487206 -0.844463 0.222515\nvn -0.487206 -0.844463 0.222515\nvn -0.455713 -0.878528 0.143227\nvn -0.097357 -0.953646 0.284748\nvn -0.227825 -0.812327 0.536862\nvn -0.153268 -0.894068 0.420894\nvn 0.200208 -0.809864 0.551395\nvn 0.200208 -0.809864 0.551395\nvn 0.106604 -0.708443 0.697670\nvn -0.227825 -0.812327 0.536862\nvn 0.106604 -0.708443 0.697670\nvn 0.200208 -0.809864 0.551395\nvn 0.520480 -0.607552 0.599984\nvn 0.520480 -0.607552 0.599984\nvn 0.422383 -0.501183 0.755254\nvn 0.106604 -0.708443 0.697670\nvn 0.422383 -0.501183 0.755254\nvn 0.520480 -0.607552 0.599984\nvn 0.762965 -0.317131 0.563304\nvn 0.762965 -0.317131 0.563304\nvn 0.674958 -0.220225 0.704225\nvn 0.422383 -0.501183 0.755254\nvn 0.674958 -0.220225 0.704225\nvn 0.762965 -0.317131 0.563304\nvn 0.894398 0.021150 0.446772\nvn 0.894398 0.021150 0.446772\nvn 0.828894 0.095280 0.551233\nvn 0.674958 -0.220225 0.704225\nvn 0.828894 0.095280 0.551233\nvn 0.894398 0.021150 0.446772\nvn 0.894486 0.361439 0.263167\nvn 0.894486 0.361439 0.263167\nvn 0.860608 0.400960 0.313981\nvn 0.828894 0.095280 0.551233\nvn 0.860608 0.400960 0.313981\nvn 0.894486 0.361439 0.263167\nvn 0.759053 0.650068 0.035372\nvn 0.759053 0.650068 0.035372\nvn 0.761882 0.647252 0.024507\nvn 0.860608 0.400960 0.313981\nvn 0.761882 0.647252 0.024507\nvn 0.759053 0.650068 0.035372\nvn 0.504944 0.838186 -0.206098\nvn 0.504944 0.838186 -0.206098\nvn 0.545159 0.791783 -0.275464\nvn 0.761882 0.647252 0.024507\nvn 0.545159 0.791783 -0.275464\nvn 0.504944 0.838186 -0.206098\nvn 0.173929 0.889848 -0.421806\nvn 0.173929 0.889848 -0.421806\nvn 0.246198 0.807658 -0.535794\nvn 0.545159 0.791783 -0.275464\nvn 0.587647 0.740427 -0.326250\nvn 0.545159 0.791783 -0.275464\nvn 0.246198 0.807658 -0.535794\nvn 0.246198 0.807658 -0.535794\nvn 0.319143 0.720170 -0.616038\nvn 0.587647 0.740427 -0.326250\nvn 0.629826 0.687966 -0.360585\nvn 0.587647 0.740427 -0.326250\nvn 0.319143 0.720170 -0.616038\nvn 0.319143 0.720170 -0.616038\nvn 0.389063 0.632731 -0.669538\nvn 0.629826 0.687966 -0.360585\nvn 0.671184 0.636576 -0.379846\nvn 0.629826 0.687966 -0.360585\nvn 0.389063 0.632731 -0.669538\nvn 0.389063 0.632731 -0.669538\nvn 0.456596 0.548153 -0.700749\nvn 0.671184 0.636576 -0.379846\nvn 0.629826 0.687966 -0.360585\nvn 0.671184 0.636576 -0.379846\nvn 0.781195 0.624267 0.005097\nvn 0.781195 0.624267 0.005097\nvn 0.773632 0.633580 0.008362\nvn 0.629826 0.687966 -0.360585\nvn 0.587647 0.740427 -0.326250\nvn 0.629826 0.687966 -0.360585\nvn 0.773632 0.633580 0.008362\nvn 0.773632 0.633580 0.008362\nvn 0.766984 0.641488 0.015138\nvn 0.587647 0.740427 -0.326250\nvn 0.545159 0.791783 -0.275464\nvn 0.587647 0.740427 -0.326250\nvn 0.766984 0.641488 0.015138\nvn 0.766984 0.641488 0.015138\nvn 0.761882 0.647252 0.024507\nvn 0.545159 0.791783 -0.275464\nvn 0.826800 0.440517 0.349782\nvn 0.860608 0.400960 0.313981\nvn 0.761882 0.647252 0.024507\nvn 0.761882 0.647252 0.024507\nvn 0.766984 0.641488 0.015138\nvn 0.826800 0.440517 0.349782\nvn 0.795330 0.477778 0.373067\nvn 0.826800 0.440517 0.349782\nvn 0.766984 0.641488 0.015138\nvn 0.766984 0.641488 0.015138\nvn 0.773632 0.633580 0.008362\nvn 0.795330 0.477778 0.373067\nvn 0.767010 0.511961 0.386771\nvn 0.795330 0.477778 0.373067\nvn 0.773632 0.633580 0.008362\nvn 0.773632 0.633580 0.008362\nvn 0.781195 0.624267 0.005097\nvn 0.767010 0.511961 0.386771\nvn 0.795330 0.477778 0.373067\nvn 0.767010 0.511961 0.386771\nvn 0.635162 0.321061 0.702488\nvn 0.635162 0.321061 0.702488\nvn 0.694922 0.249006 0.674596\nvn 0.795330 0.477778 0.373067\nvn 0.826800 0.440517 0.349782\nvn 0.795330 0.477778 0.373067\nvn 0.694922 0.249006 0.674596\nvn 0.694922 0.249006 0.674596\nvn 0.760415 0.172861 0.626009\nvn 0.826800 0.440517 0.349782\nvn 0.860608 0.400960 0.313981\nvn 0.826800 0.440517 0.349782\nvn 0.760415 0.172861 0.626009\nvn 0.760415 0.172861 0.626009\nvn 0.828894 0.095280 0.551233\nvn 0.860608 0.400960 0.313981\nvn 0.828894 0.095280 0.551233\nvn 0.760415 0.172861 0.626009\nvn 0.582216 -0.116522 0.804641\nvn 0.582216 -0.116522 0.804641\nvn 0.674958 -0.220225 0.704225\nvn 0.828894 0.095280 0.551233\nvn 0.493616 -0.013123 0.869581\nvn 0.582216 -0.116522 0.804641\nvn 0.760415 0.172861 0.626009\nvn 0.760415 0.172861 0.626009\nvn 0.694922 0.249006 0.674596\nvn 0.493616 -0.013123 0.869581\nvn 0.412379 0.085638 0.906978\nvn 0.493616 -0.013123 0.869581\nvn 0.694922 0.249006 0.674596\nvn 0.694922 0.249006 0.674596\nvn 0.635162 0.321061 0.702488\nvn 0.412379 0.085638 0.906978\nvn 0.493616 -0.013123 0.869581\nvn 0.412379 0.085638 0.906978\nvn 0.133216 -0.159523 0.978165\nvn 0.133216 -0.159523 0.978165\nvn 0.223191 -0.270374 0.936528\nvn 0.493616 -0.013123 0.869581\nvn 0.582216 -0.116522 0.804641\nvn 0.493616 -0.013123 0.869581\nvn 0.223191 -0.270374 0.936528\nvn 0.223191 -0.270374 0.936528\nvn 0.320175 -0.386004 0.865153\nvn 0.582216 -0.116522 0.804641\nvn 0.674958 -0.220225 0.704225\nvn 0.582216 -0.116522 0.804641\nvn 0.320175 -0.386004 0.865153\nvn 0.320175 -0.386004 0.865153\nvn 0.422383 -0.501183 0.755254\nvn 0.674958 -0.220225 0.704225\nvn 0.422383 -0.501183 0.755254\nvn 0.320175 -0.386004 0.865153\nvn 0.010957 -0.598581 0.800987\nvn 0.010957 -0.598581 0.800987\nvn 0.106604 -0.708443 0.697670\nvn 0.422383 -0.501183 0.755254\nvn -0.079654 -0.488209 0.869084\nvn 0.010957 -0.598581 0.800987\nvn 0.320175 -0.386004 0.865153\nvn 0.320175 -0.386004 0.865153\nvn 0.223191 -0.270374 0.936528\nvn -0.079654 -0.488209 0.869084\nvn -0.165260 -0.381822 0.909341\nvn -0.079654 -0.488209 0.869084\nvn 0.223191 -0.270374 0.936528\nvn 0.223191 -0.270374 0.936528\nvn 0.133216 -0.159523 0.978165\nvn -0.165260 -0.381822 0.909341\nvn -0.079654 -0.488209 0.869084\nvn -0.165260 -0.381822 0.909341\nvn -0.444119 -0.550785 0.706678\nvn -0.444119 -0.550785 0.706678\nvn -0.374840 -0.636545 0.674022\nvn -0.079654 -0.488209 0.869084\nvn 0.010957 -0.598581 0.800987\nvn -0.079654 -0.488209 0.869084\nvn -0.374840 -0.636545 0.674022\nvn -0.374840 -0.636545 0.674022\nvn -0.303025 -0.724587 0.618991\nvn 0.010957 -0.598581 0.800987\nvn 0.106604 -0.708443 0.697670\nvn 0.010957 -0.598581 0.800987\nvn -0.303025 -0.724587 0.618991\nvn -0.303025 -0.724587 0.618991\nvn -0.227825 -0.812327 0.536862\nvn 0.106604 -0.708443 0.697670\nvn -0.227825 -0.812327 0.536862\nvn -0.303025 -0.724587 0.618991\nvn -0.575708 -0.743440 0.340377\nvn -0.575708 -0.743440 0.340377\nvn -0.531187 -0.795545 0.291459\nvn -0.227825 -0.812327 0.536862\nvn -0.303025 -0.724587 0.618991\nvn -0.374840 -0.636545 0.674022\nvn -0.619023 -0.690927 0.373404\nvn -0.619023 -0.690927 0.373404\nvn -0.575708 -0.743440 0.340377\nvn -0.303025 -0.724587 0.618991\nvn -0.374840 -0.636545 0.674022\nvn -0.444119 -0.550785 0.706678\nvn -0.661664 -0.638836 0.392543\nvn -0.661664 -0.638836 0.392543\nvn -0.619023 -0.690927 0.373404\nvn -0.374840 -0.636545 0.674022\nvn -0.513911 -0.467156 0.719487\nvn -0.444119 -0.550785 0.706678\nvn -0.165260 -0.381822 0.909341\nvn -0.165260 -0.381822 0.909341\nvn -0.253247 -0.276289 0.927109\nvn -0.513911 -0.467156 0.719487\nvn -0.253247 -0.276289 0.927109\nvn -0.165260 -0.381822 0.909341\nvn 0.133216 -0.159523 0.978165\nvn 0.133216 -0.159523 0.978165\nvn 0.040834 -0.047212 0.998050\nvn -0.253247 -0.276289 0.927109\nvn 0.040834 -0.047212 0.998050\nvn 0.133216 -0.159523 0.978165\nvn 0.412379 0.085638 0.906978\nvn 0.412379 0.085638 0.906978\nvn 0.329026 0.188547 0.925307\nvn 0.040834 -0.047212 0.998050\nvn 0.329026 0.188547 0.925307\nvn 0.412379 0.085638 0.906978\nvn 0.635162 0.321061 0.702488\nvn 0.635162 0.321061 0.702488\nvn 0.572540 0.398916 0.716285\nvn 0.329026 0.188547 0.925307\nvn 0.572540 0.398916 0.716285\nvn 0.635162 0.321061 0.702488\nvn 0.767010 0.511961 0.386771\nvn 0.767010 0.511961 0.386771\nvn 0.734382 0.552061 0.394857\nvn 0.572540 0.398916 0.716285\nvn 0.734382 0.552061 0.394857\nvn 0.767010 0.511961 0.386771\nvn 0.781195 0.624267 0.005097\nvn 0.781195 0.624267 0.005097\nvn 0.784332 0.620294 0.007660\nvn 0.734382 0.552061 0.394857\nvn 0.784332 0.620294 0.007660\nvn 0.781195 0.624267 0.005097\nvn 0.671184 0.636576 -0.379846\nvn 0.671184 0.636576 -0.379846\nvn 0.710760 0.590057 -0.382954\nvn 0.784332 0.620294 0.007660\nvn 0.710760 0.590057 -0.382954\nvn 0.671184 0.636576 -0.379846\nvn 0.456596 0.548153 -0.700749\nvn 0.456596 0.548153 -0.700749\nvn 0.526514 0.467460 -0.710116\nvn 0.710760 0.590057 -0.382954\nvn 0.746898 0.550049 -0.373617\nvn 0.710760 0.590057 -0.382954\nvn 0.526514 0.467460 -0.710116\nvn 0.526514 0.467460 -0.710116\nvn 0.601653 0.386799 -0.698856\nvn 0.746898 0.550049 -0.373617\nvn 0.780690 0.514438 -0.354790\nvn 0.746898 0.550049 -0.373617\nvn 0.601653 0.386799 -0.698856\nvn 0.601653 0.386799 -0.698856\nvn 0.684144 0.302077 -0.663849\nvn 0.780690 0.514438 -0.354790\nvn 0.811809 0.482355 -0.329088\nvn 0.780690 0.514438 -0.354790\nvn 0.684144 0.302077 -0.663849\nvn 0.684144 0.302077 -0.663849\nvn 0.770710 0.212996 -0.600533\nvn 0.811809 0.482355 -0.329088\nvn 0.780690 0.514438 -0.354790\nvn 0.811809 0.482355 -0.329088\nvn 0.733462 0.679688 -0.007569\nvn 0.733462 0.679688 -0.007569\nvn 0.760551 0.649216 0.009003\nvn 0.780690 0.514438 -0.354790\nvn 0.746898 0.550049 -0.373617\nvn 0.780690 0.514438 -0.354790\nvn 0.760551 0.649216 0.009003\nvn 0.760551 0.649216 0.009003\nvn 0.777594 0.628662 0.011475\nvn 0.746898 0.550049 -0.373617\nvn 0.710760 0.590057 -0.382954\nvn 0.746898 0.550049 -0.373617\nvn 0.777594 0.628662 0.011475\nvn 0.777594 0.628662 0.011475\nvn 0.784332 0.620294 0.007660\nvn 0.710760 0.590057 -0.382954\nvn 0.688242 0.609442 0.393578\nvn 0.734382 0.552061 0.394857\nvn 0.784332 0.620294 0.007660\nvn 0.784332 0.620294 0.007660\nvn 0.777594 0.628662 0.011475\nvn 0.688242 0.609442 0.393578\nvn 0.625763 0.685611 0.371966\nvn 0.688242 0.609442 0.393578\nvn 0.777594 0.628662 0.011475\nvn 0.777594 0.628662 0.011475\nvn 0.760551 0.649216 0.009003\nvn 0.625763 0.685611 0.371966\nvn 0.546166 0.775517 0.316664\nvn 0.625763 0.685611 0.371966\nvn 0.760551 0.649216 0.009003\nvn 0.760551 0.649216 0.009003\nvn 0.733462 0.679688 -0.007569\nvn 0.546166 0.775517 0.316664\nvn 0.625763 0.685611 0.371966\nvn 0.546166 0.775517 0.316664\nvn 0.274091 0.754246 0.596646\nvn 0.274091 0.754246 0.596646\nvn 0.395040 0.617494 0.680180\nvn 0.625763 0.685611 0.371966\nvn 0.688242 0.609442 0.393578\nvn 0.625763 0.685611 0.371966\nvn 0.395040 0.617494 0.680180\nvn 0.395040 0.617494 0.680180\nvn 0.494291 0.496611 0.713481\nvn 0.688242 0.609442 0.393578\nvn 0.734382 0.552061 0.394857\nvn 0.688242 0.609442 0.393578\nvn 0.494291 0.496611 0.713481\nvn 0.494291 0.496611 0.713481\nvn 0.572540 0.398916 0.716285\nvn 0.734382 0.552061 0.394857\nvn 0.572540 0.398916 0.716285\nvn 0.494291 0.496611 0.713481\nvn 0.228742 0.310168 0.922753\nvn 0.228742 0.310168 0.922753\nvn 0.329026 0.188547 0.925307\nvn 0.572540 0.398916 0.716285\nvn 0.105077 0.455557 0.883983\nvn 0.228742 0.310168 0.922753\nvn 0.494291 0.496611 0.713481\nvn 0.494291 0.496611 0.713481\nvn 0.395040 0.617494 0.680180\nvn 0.105077 0.455557 0.883983\nvn -0.040316 0.617619 0.785444\nvn 0.105077 0.455557 0.883983\nvn 0.395040 0.617494 0.680180\nvn 0.395040 0.617494 0.680180\nvn 0.274091 0.754246 0.596646\nvn -0.040316 0.617619 0.785444\nvn 0.105077 0.455557 0.883983\nvn -0.040316 0.617619 0.785444\nvn -0.347468 0.388029 0.853639\nvn -0.347468 0.388029 0.853639\nvn -0.198984 0.225840 0.953626\nvn 0.105077 0.455557 0.883983\nvn 0.228742 0.310168 0.922753\nvn 0.105077 0.455557 0.883983\nvn -0.198984 0.225840 0.953626\nvn -0.198984 0.225840 0.953626\nvn -0.068027 0.079259 0.994530\nvn 0.228742 0.310168 0.922753\nvn 0.329026 0.188547 0.925307\nvn 0.228742 0.310168 0.922753\nvn -0.068027 0.079259 0.994530\nvn -0.068027 0.079259 0.994530\nvn 0.040834 -0.047212 0.998050\nvn 0.329026 0.188547 0.925307\nvn 0.040834 -0.047212 0.998050\nvn -0.068027 0.079259 0.994530\nvn -0.354019 -0.162757 0.920967\nvn -0.354019 -0.162757 0.920967\nvn -0.253247 -0.276289 0.927109\nvn 0.040834 -0.047212 0.998050\nvn -0.471224 -0.035800 0.881287\nvn -0.354019 -0.162757 0.920967\nvn -0.068027 0.079259 0.994530\nvn -0.068027 0.079259 0.994530\nvn -0.198984 0.225840 0.953626\nvn -0.471224 -0.035800 0.881287\nvn -0.599909 0.103093 0.793398\nvn -0.471224 -0.035800 0.881287\nvn -0.198984 0.225840 0.953626\nvn -0.198984 0.225840 0.953626\nvn -0.347468 0.388029 0.853639\nvn -0.599909 0.103093 0.793398\nvn -0.471224 -0.035800 0.881287\nvn -0.599909 0.103093 0.793398\nvn -0.761815 -0.193491 0.618223\nvn -0.761815 -0.193491 0.618223\nvn -0.672790 -0.290632 0.680358\nvn -0.471224 -0.035800 0.881287\nvn -0.354019 -0.162757 0.920967\nvn -0.471224 -0.035800 0.881287\nvn -0.672790 -0.290632 0.680358\nvn -0.672790 -0.290632 0.680358\nvn -0.589361 -0.381798 0.711958\nvn -0.354019 -0.162757 0.920967\nvn -0.253247 -0.276289 0.927109\nvn -0.354019 -0.162757 0.920967\nvn -0.589361 -0.381798 0.711958\nvn -0.589361 -0.381798 0.711958\nvn -0.513911 -0.467156 0.719487\nvn -0.253247 -0.276289 0.927109\nvn -0.513911 -0.467156 0.719487\nvn -0.589361 -0.381798 0.711958\nvn -0.739477 -0.546078 0.393666\nvn -0.739477 -0.546078 0.393666\nvn -0.701844 -0.590176 0.398883\nvn -0.513911 -0.467156 0.719487\nvn -0.589361 -0.381798 0.711958\nvn -0.672790 -0.290632 0.680358\nvn -0.776316 -0.503964 0.378621\nvn -0.776316 -0.503964 0.378621\nvn -0.739477 -0.546078 0.393666\nvn -0.589361 -0.381798 0.711958\nvn -0.672790 -0.290632 0.680358\nvn -0.761815 -0.193491 0.618223\nvn -0.812909 -0.462763 0.353595\nvn -0.812909 -0.462763 0.353595\nvn -0.776316 -0.503964 0.378621\nvn -0.672790 -0.290632 0.680358\nvn -0.837660 -0.113074 0.534360\nvn -0.761815 -0.193491 0.618223\nvn -0.599909 0.103093 0.793398\nvn -0.599909 0.103093 0.793398\nvn -0.707404 0.218883 0.672063\nvn -0.837660 -0.113074 0.534360\nvn -0.707404 0.218883 0.672063\nvn -0.599909 0.103093 0.793398\nvn -0.347468 0.388029 0.853639\nvn -0.347468 0.388029 0.853639\nvn -0.472129 0.520501 0.711458\nvn -0.707404 0.218883 0.672063\nvn -0.472129 0.520501 0.711458\nvn -0.347468 0.388029 0.853639\nvn -0.040316 0.617619 0.785444\nvn -0.040316 0.617619 0.785444\nvn -0.164984 0.746914 0.644127\nvn -0.472129 0.520501 0.711458\nvn -0.164984 0.746914 0.644127\nvn -0.040316 0.617619 0.785444\nvn 0.274091 0.754246 0.596646\nvn 0.274091 0.754246 0.596646\nvn 0.168526 0.861980 0.478111\nvn -0.164984 0.746914 0.644127\nvn 0.168526 0.861980 0.478111\nvn 0.274091 0.754246 0.596646\nvn 0.546166 0.775517 0.316664\nvn 0.546166 0.775517 0.316664\nvn 0.477232 0.845877 0.238204\nvn 0.168526 0.861980 0.478111\nvn 0.477232 0.845877 0.238204\nvn 0.546166 0.775517 0.316664\nvn 0.733462 0.679688 -0.007569\nvn 0.733462 0.679688 -0.007569\nvn 0.712369 0.700864 -0.036317\nvn 0.477232 0.845877 0.238204\nvn 0.712369 0.700864 -0.036317\nvn 0.733462 0.679688 -0.007569\nvn 0.811809 0.482355 -0.329088\nvn 0.811809 0.482355 -0.329088\nvn 0.840259 0.449001 -0.303912\nvn 0.712369 0.700864 -0.036317\nvn 0.840259 0.449001 -0.303912\nvn 0.811809 0.482355 -0.329088\nvn 0.770710 0.212996 -0.600533\nvn 0.770710 0.212996 -0.600533\nvn 0.842065 0.129525 -0.523593\nvn 0.840259 0.449001 -0.303912\nvn 0.865410 0.420955 -0.271776\nvn 0.840259 0.449001 -0.303912\nvn 0.842065 0.129525 -0.523593\nvn 0.842065 0.129525 -0.523593\nvn 0.893415 0.070377 -0.443686\nvn 0.865410 0.420955 -0.271776\nvn 0.892660 0.396507 -0.214337\nvn 0.865410 0.420955 -0.271776\nvn 0.893415 0.070377 -0.443686\nvn 0.893415 0.070377 -0.443686\nvn 0.941662 0.023500 -0.335739\nvn 0.892660 0.396507 -0.214337\nvn 0.919085 0.378041 -0.111212\nvn 0.892660 0.396507 -0.214337\nvn 0.941662 0.023500 -0.335739\nvn 0.941662 0.023500 -0.335739\nvn 0.985395 -0.006897 -0.170143\nvn 0.919085 0.378041 -0.111212\nvn 0.892660 0.396507 -0.214337\nvn 0.919085 0.378041 -0.111212\nvn 0.710897 0.702535 -0.032717\nvn 0.710897 0.702535 -0.032717\nvn 0.704717 0.707251 -0.056308\nvn 0.892660 0.396507 -0.214337\nvn 0.865410 0.420955 -0.271776\nvn 0.892660 0.396507 -0.214337\nvn 0.704717 0.707251 -0.056308\nvn 0.704717 0.707251 -0.056308\nvn 0.704779 0.707251 -0.055514\nvn 0.865410 0.420955 -0.271776\nvn 0.840259 0.449001 -0.303912\nvn 0.865410 0.420955 -0.271776\nvn 0.704779 0.707251 -0.055514\nvn 0.704779 0.707251 -0.055514\nvn 0.712369 0.700864 -0.036317\nvn 0.840259 0.449001 -0.303912\nvn 0.437039 0.883173 0.170299\nvn 0.477232 0.845877 0.238204\nvn 0.712369 0.700864 -0.036317\nvn 0.712369 0.700864 -0.036317\nvn 0.704779 0.707251 -0.055514\nvn 0.437039 0.883173 0.170299\nvn 0.410448 0.905006 0.111790\nvn 0.437039 0.883173 0.170299\nvn 0.704779 0.707251 -0.055514\nvn 0.704779 0.707251 -0.055514\nvn 0.704717 0.707251 -0.056308\nvn 0.410448 0.905006 0.111790\nvn 0.704717 0.707251 -0.056308\nvn 0.710897 0.702535 -0.032717\nvn 0.397515 0.916102 0.052341\nvn 0.397515 0.916102 0.052341\nvn 0.410448 0.905006 0.111790\nvn 0.704717 0.707251 -0.056308\nvn 0.410448 0.905006 0.111790\nvn 0.397515 0.916102 0.052341\nvn 0.026552 0.991000 0.131203\nvn 0.026552 0.991000 0.131203\nvn 0.056857 0.963131 0.262955\nvn 0.410448 0.905006 0.111790\nvn 0.437039 0.883173 0.170299\nvn 0.410448 0.905006 0.111790\nvn 0.056857 0.963131 0.262955\nvn 0.056857 0.963131 0.262955\nvn 0.103735 0.923154 0.370171\nvn 0.437039 0.883173 0.170299\nvn 0.477232 0.845877 0.238204\nvn 0.437039 0.883173 0.170299\nvn 0.103735 0.923154 0.370171\nvn 0.103735 0.923154 0.370171\nvn 0.168526 0.861980 0.478111\nvn 0.477232 0.845877 0.238204\nvn 0.168526 0.861980 0.478111\nvn 0.103735 0.923154 0.370171\nvn -0.242505 0.823803 0.512386\nvn -0.242505 0.823803 0.512386\nvn -0.164984 0.746914 0.644127\nvn 0.168526 0.861980 0.478111\nvn -0.301011 0.877579 0.373158\nvn -0.242505 0.823803 0.512386\nvn 0.103735 0.923154 0.370171\nvn 0.103735 0.923154 0.370171\nvn 0.056857 0.963131 0.262955\nvn -0.301011 0.877579 0.373158\nvn 0.056857 0.963131 0.262955\nvn 0.026552 0.991000 0.131203\nvn -0.346334 0.918571 0.190471\nvn -0.346334 0.918571 0.190471\nvn -0.301011 0.877579 0.373158\nvn 0.056857 0.963131 0.262955\nvn -0.301011 0.877579 0.373158\nvn -0.346334 0.918571 0.190471\nvn -0.668454 0.710326 0.220468\nvn -0.668454 0.710326 0.220468\nvn -0.613458 0.664302 0.427049\nvn -0.301011 0.877579 0.373158\nvn -0.242505 0.823803 0.512386\nvn -0.301011 0.877579 0.373158\nvn -0.613458 0.664302 0.427049\nvn -0.613458 0.664302 0.427049\nvn -0.550966 0.603063 0.576846\nvn -0.242505 0.823803 0.512386\nvn -0.164984 0.746914 0.644127\nvn -0.242505 0.823803 0.512386\nvn -0.550966 0.603063 0.576846\nvn -0.550966 0.603063 0.576846\nvn -0.472129 0.520501 0.711458\nvn -0.164984 0.746914 0.644127\nvn -0.472129 0.520501 0.711458\nvn -0.550966 0.603063 0.576846\nvn -0.777757 0.294451 0.555331\nvn -0.777757 0.294451 0.555331\nvn -0.707404 0.218883 0.672063\nvn -0.472129 0.520501 0.711458\nvn -0.836918 0.354323 0.417162\nvn -0.777757 0.294451 0.555331\nvn -0.550966 0.603063 0.576846\nvn -0.550966 0.603063 0.576846\nvn -0.613458 0.664302 0.427049\nvn -0.836918 0.354323 0.417162\nvn -0.613458 0.664302 0.427049\nvn -0.668454 0.710326 0.220468\nvn -0.891891 0.396810 0.216961\nvn -0.891891 0.396810 0.216961\nvn -0.836918 0.354323 0.417162\nvn -0.613458 0.664302 0.427049\nvn -0.836918 0.354323 0.417162\nvn -0.891891 0.396810 0.216961\nvn -0.983346 0.023041 0.180275\nvn -0.983346 0.023041 0.180275\nvn -0.938499 -0.009766 0.345143\nvn -0.836918 0.354323 0.417162\nvn -0.777757 0.294451 0.555331\nvn -0.836918 0.354323 0.417162\nvn -0.938499 -0.009766 0.345143\nvn -0.938499 -0.009766 0.345143\nvn -0.890282 -0.058109 0.451687\nvn -0.777757 0.294451 0.555331\nvn -0.707404 0.218883 0.672063\nvn -0.777757 0.294451 0.555331\nvn -0.890282 -0.058109 0.451687\nvn -0.890282 -0.058109 0.451687\nvn -0.837660 -0.113074 0.534360\nvn -0.707404 0.218883 0.672063\nvn -0.837660 -0.113074 0.534360\nvn -0.890282 -0.058109 0.451687\nvn -0.870059 -0.405594 0.280162\nvn -0.870059 -0.405594 0.280162\nvn -0.844708 -0.430533 0.317979\nvn -0.837660 -0.113074 0.534360\nvn -0.890282 -0.058109 0.451687\nvn -0.938499 -0.009766 0.345143\nvn -0.899424 -0.376970 0.221201\nvn -0.899424 -0.376970 0.221201\nvn -0.870059 -0.405594 0.280162\nvn -0.890282 -0.058109 0.451687\nvn -0.911987 0.407284 0.048984\nvn -0.891891 0.396810 0.216961\nvn -0.668454 0.710326 0.220468\nvn -0.983346 0.023041 0.180275\nvn -0.891891 0.396810 0.216961\nvn -0.911987 0.407284 0.048984\nvn -0.668454 0.710326 0.220468\nvn -0.687726 0.724226 0.050296\nvn -0.911987 0.407284 0.048984\nvn -0.359603 0.932104 0.043215\nvn -0.687726 0.724226 0.050296\nvn -0.668454 0.710326 0.220468\nvn -0.688276 0.725449 -0.000000\nvn -0.687726 0.724226 0.050296\nvn -0.359603 0.932104 0.043215\nvn -0.359603 0.932104 0.043215\nvn -0.358268 0.933619 -0.000000\nvn -0.688276 0.725449 -0.000000\nvn -0.358268 0.933619 -0.000000\nvn -0.359603 0.932104 0.043215\nvn 0.022706 0.999306 0.029542\nvn 0.026552 0.991000 0.131203\nvn 0.022706 0.999306 0.029542\nvn -0.359603 0.932104 0.043215\nvn 0.401908 0.915609 0.011445\nvn 0.022706 0.999306 0.029542\nvn 0.026552 0.991000 0.131203\nvn 0.026307 0.999654 -0.000000\nvn 0.022706 0.999306 0.029542\nvn 0.401908 0.915609 0.011445\nvn 0.022706 0.999306 0.029542\nvn 0.026307 0.999654 -0.000000\nvn -0.358268 0.933619 -0.000000\nvn 0.401908 0.915609 0.011445\nvn 0.406849 0.913496 -0.000000\nvn 0.026307 0.999654 -0.000000\nvn 0.406849 0.913496 -0.000000\nvn 0.401908 0.915609 0.011445\nvn 0.720864 0.693031 -0.007905\nvn 0.710897 0.702535 -0.032717\nvn 0.720864 0.693031 -0.007905\nvn 0.401908 0.915609 0.011445\nvn 0.931201 0.363667 -0.024721\nvn 0.720864 0.693031 -0.007905\nvn 0.710897 0.702535 -0.032717\nvn 0.725478 0.688245 -0.000000\nvn 0.720864 0.693031 -0.007905\nvn 0.931201 0.363667 -0.024721\nvn 0.720864 0.693031 -0.007905\nvn 0.725478 0.688245 -0.000000\nvn 0.406849 0.913496 -0.000000\nvn 0.931201 0.363667 -0.024721\nvn 0.933633 0.358231 -0.000000\nvn 0.725478 0.688245 -0.000000\nvn 0.933633 0.358231 -0.000000\nvn 0.931201 0.363667 -0.024721\nvn 0.999090 -0.021760 -0.036683\nvn 0.985395 -0.006897 -0.170143\nvn 0.999090 -0.021760 -0.036683\nvn 0.931201 0.363667 -0.024721\nvn 0.931201 0.363667 -0.024721\nvn 0.919085 0.378041 -0.111212\nvn 0.985395 -0.006897 -0.170143\nvn 0.710897 0.702535 -0.032717\nvn 0.919085 0.378041 -0.111212\nvn 0.931201 0.363667 -0.024721\nvn 0.999090 -0.021760 -0.036683\nvn 0.999655 -0.026277 0.000000\nvn 0.933633 0.358231 -0.000000\nvn 0.401908 0.915609 0.011445\nvn 0.397515 0.916102 0.052341\nvn 0.710897 0.702535 -0.032717\nvn 0.026552 0.991000 0.131203\nvn 0.397515 0.916102 0.052341\nvn 0.401908 0.915609 0.011445\nvn 0.999655 -0.026277 0.000000\nvn 0.999090 -0.021760 -0.036683\nvn 0.913327 -0.404963 -0.042880\nvn 0.913327 -0.404963 -0.042880\nvn 0.913507 -0.406823 0.000000\nvn 0.999655 -0.026277 0.000000\nvn 0.913507 -0.406823 0.000000\nvn 0.913327 -0.404963 -0.042880\nvn 0.686578 -0.725794 -0.042818\nvn 0.667942 -0.716436 -0.201426\nvn 0.686578 -0.725794 -0.042818\nvn 0.913327 -0.404963 -0.042880\nvn 0.354271 -0.934416 -0.036868\nvn 0.686578 -0.725794 -0.042818\nvn 0.667942 -0.716436 -0.201426\nvn 0.688292 -0.725433 0.000000\nvn 0.686578 -0.725794 -0.042818\nvn 0.354271 -0.934416 -0.036868\nvn 0.686578 -0.725794 -0.042818\nvn 0.688292 -0.725433 0.000000\nvn 0.913507 -0.406823 0.000000\nvn 0.354271 -0.934416 -0.036868\nvn 0.358294 -0.933609 0.000000\nvn 0.688292 -0.725433 0.000000\nvn 0.358294 -0.933609 0.000000\nvn 0.354271 -0.934416 -0.036868\nvn -0.032289 -0.999158 -0.025331\nvn -0.049410 -0.991829 -0.117619\nvn -0.032289 -0.999158 -0.025331\nvn 0.354271 -0.934416 -0.036868\nvn -0.412074 -0.911098 -0.009797\nvn -0.032289 -0.999158 -0.025331\nvn -0.049410 -0.991829 -0.117619\nvn -0.026216 -0.999656 0.000000\nvn -0.032289 -0.999158 -0.025331\nvn -0.412074 -0.911098 -0.009797\nvn -0.032289 -0.999158 -0.025331\nvn -0.026216 -0.999656 0.000000\nvn 0.358294 -0.933609 0.000000\nvn -0.412074 -0.911098 -0.009797\nvn -0.406761 -0.913535 0.000000\nvn -0.026216 -0.999656 0.000000\nvn -0.406761 -0.913535 0.000000\nvn -0.412074 -0.911098 -0.009797\nvn -0.729072 -0.684392 0.007813\nvn -0.731514 -0.680761 0.038088\nvn -0.729072 -0.684392 0.007813\nvn -0.412074 -0.911098 -0.009797\nvn -0.934665 -0.354597 0.025727\nvn -0.729072 -0.684392 0.007813\nvn -0.731514 -0.680761 0.038088\nvn -0.725404 -0.688324 0.000000\nvn -0.729072 -0.684392 0.007813\nvn -0.934665 -0.354597 0.025727\nvn -0.729072 -0.684392 0.007813\nvn -0.725404 -0.688324 0.000000\nvn -0.406761 -0.913535 0.000000\nvn -0.934665 -0.354597 0.025727\nvn -0.933599 -0.358321 0.000000\nvn -0.725404 -0.688324 0.000000\nvn -0.731514 -0.680761 0.038088\nvn -0.927486 -0.355125 0.116859\nvn -0.934665 -0.354597 0.025727\nvn -0.899424 -0.376970 0.221201\nvn -0.927486 -0.355125 0.116859\nvn -0.731514 -0.680761 0.038088\nvn -0.731514 -0.680761 0.038088\nvn -0.721298 -0.689588 0.064793\nvn -0.899424 -0.376970 0.221201\nvn -0.870059 -0.405594 0.280162\nvn -0.899424 -0.376970 0.221201\nvn -0.721298 -0.689588 0.064793\nvn -0.721298 -0.689588 0.064793\nvn -0.716317 -0.694649 0.065983\nvn -0.870059 -0.405594 0.280162\nvn -0.844708 -0.430533 0.317979\nvn -0.870059 -0.405594 0.280162\nvn -0.716317 -0.694649 0.065983\nvn -0.716317 -0.694649 0.065983\nvn -0.724791 -0.686887 0.053530\nvn -0.844708 -0.430533 0.317979\nvn -0.812909 -0.462763 0.353595\nvn -0.844708 -0.430533 0.317979\nvn -0.724791 -0.686887 0.053530\nvn -0.724791 -0.686887 0.053530\nvn -0.744455 -0.666692 0.036165\nvn -0.812909 -0.462763 0.353595\nvn -0.776316 -0.503964 0.378621\nvn -0.812909 -0.462763 0.353595\nvn -0.744455 -0.666692 0.036165\nvn -0.744455 -0.666692 0.036165\nvn -0.764630 -0.644202 0.018556\nvn -0.776316 -0.503964 0.378621\nvn -0.739477 -0.546078 0.393666\nvn -0.776316 -0.503964 0.378621\nvn -0.764630 -0.644202 0.018556\nvn -0.764630 -0.644202 0.018556\nvn -0.777823 -0.628369 0.011964\nvn -0.739477 -0.546078 0.393666\nvn -0.701844 -0.590176 0.398883\nvn -0.739477 -0.546078 0.393666\nvn -0.777823 -0.628369 0.011964\nvn -0.777823 -0.628369 0.011964\nvn -0.782670 -0.622321 0.011994\nvn -0.701844 -0.590176 0.398883\nvn -0.661664 -0.638836 0.392543\nvn -0.701844 -0.590176 0.398883\nvn -0.782670 -0.622321 0.011994\nvn -0.782670 -0.622321 0.011994\nvn -0.778471 -0.627556 0.012513\nvn -0.661664 -0.638836 0.392543\nvn -0.619023 -0.690927 0.373404\nvn -0.661664 -0.638836 0.392543\nvn -0.778471 -0.627556 0.012513\nvn -0.778471 -0.627556 0.012513\nvn -0.769509 -0.638552 0.010346\nvn -0.619023 -0.690927 0.373404\nvn -0.575708 -0.743440 0.340377\nvn -0.619023 -0.690927 0.373404\nvn -0.769509 -0.638552 0.010346\nvn -0.769509 -0.638552 0.010346\nvn -0.760809 -0.648957 0.004944\nvn -0.575708 -0.743440 0.340377\nvn -0.531187 -0.795545 0.291459\nvn -0.575708 -0.743440 0.340377\nvn -0.760809 -0.648957 0.004944\nvn -0.760809 -0.648957 0.004944\nvn -0.752509 -0.658572 -0.003632\nvn -0.531187 -0.795545 0.291459\nvn -0.487206 -0.844463 0.222515\nvn -0.531187 -0.795545 0.291459\nvn -0.752509 -0.658572 -0.003632\nvn -0.752509 -0.658572 -0.003632\nvn -0.745247 -0.666599 -0.015900\nvn -0.487206 -0.844463 0.222515\nvn -0.455713 -0.878528 0.143227\nvn -0.487206 -0.844463 0.222515\nvn -0.745247 -0.666599 -0.015900\nvn -0.745247 -0.666599 -0.015900\nvn -0.744208 -0.667453 -0.025728\nvn -0.455713 -0.878528 0.143227\nvn -0.443715 -0.893291 0.071750\nvn -0.455713 -0.878528 0.143227\nvn -0.744208 -0.667453 -0.025728\nvn -0.744208 -0.667453 -0.025728\nvn -0.748850 -0.662451 -0.019563\nvn -0.443715 -0.893291 0.071750\nvn -0.447625 -0.894121 0.013398\nvn -0.443715 -0.893291 0.071750\nvn -0.748850 -0.662451 -0.019563\nvn -0.748850 -0.662451 -0.019563\nvn -0.753123 -0.657842 0.007081\nvn -0.447625 -0.894121 0.013398\nvn -0.460807 -0.887037 -0.028688\nvn -0.447625 -0.894121 0.013398\nvn -0.753123 -0.657842 0.007081\nvn -0.753123 -0.657842 0.007081\nvn -0.750368 -0.658568 0.056887\nvn -0.460807 -0.887037 -0.028688\nvn -0.476591 -0.878501 -0.033113\nvn -0.460807 -0.887037 -0.028688\nvn -0.750368 -0.658568 0.056887\nvn -0.750368 -0.658568 0.056887\nvn -0.738604 -0.660505 0.134897\nvn -0.476591 -0.878501 -0.033113\nvn -0.471485 -0.881780 0.012910\nvn -0.476591 -0.878501 -0.033113\nvn -0.738604 -0.660505 0.134897\nvn -0.738604 -0.660505 0.134897\nvn -0.706743 -0.667953 0.233139\nvn -0.471485 -0.881780 0.012910\nvn -0.434477 -0.895658 0.095008\nvn -0.471485 -0.881780 0.012910\nvn -0.706743 -0.667953 0.233139\nvn -0.706743 -0.667953 0.233139\nvn -0.656075 -0.676188 0.335164\nvn -0.434477 -0.895658 0.095008\nvn -0.365372 -0.908699 0.201913\nvn -0.434477 -0.895658 0.095008\nvn -0.656075 -0.676188 0.335164\nvn -0.656075 -0.676188 0.335164\nvn -0.593636 -0.679121 0.431730\nvn -0.365372 -0.908699 0.201913\nvn -0.296158 -0.909838 0.290665\nvn -0.365372 -0.908699 0.201913\nvn -0.593636 -0.679121 0.431730\nvn -0.365372 -0.908699 0.201913\nvn -0.296158 -0.909838 0.290665\nvn -0.002533 -0.999575 0.029023\nvn 0.040347 -0.993897 0.102668\nvn -0.002533 -0.999575 0.029023\nvn -0.296158 -0.909838 0.290665\nvn -0.296158 -0.909838 0.290665\nvn -0.264599 -0.901865 0.341507\nvn 0.040347 -0.993897 0.102668\nvn -0.002533 -0.999575 0.029023\nvn -0.075321 -0.994649 -0.070713\nvn -0.365372 -0.908699 0.201913\nvn -0.593636 -0.679121 0.431730\nvn -0.541566 -0.677713 0.497405\nvn -0.296158 -0.909838 0.290665\nvn -0.264599 -0.901865 0.341507\nvn -0.296158 -0.909838 0.290665\nvn -0.541566 -0.677713 0.497405\nvn -0.541566 -0.677713 0.497405\nvn -0.528839 -0.670113 0.520843\nvn -0.264599 -0.901865 0.341507\nvn -0.307447 -0.900612 0.307203\nvn -0.264599 -0.901865 0.341507\nvn -0.528839 -0.670113 0.520843\nvn -0.528839 -0.670113 0.520843\nvn -0.598330 -0.673286 0.434381\nvn -0.307447 -0.900612 0.307203\nvn -0.598330 -0.673286 0.434381\nvn -0.528839 -0.670113 0.520843\nvn -0.710936 -0.339187 0.616053\nvn -0.710936 -0.339187 0.616053\nvn -0.796247 -0.344135 0.497555\nvn -0.598330 -0.673286 0.434381\nvn -0.704407 -0.347916 0.618680\nvn -0.710936 -0.339187 0.616053\nvn -0.528839 -0.670113 0.520843\nvn -0.528839 -0.670113 0.520843\nvn -0.541566 -0.677713 0.497405\nvn -0.704407 -0.347916 0.618680\nvn -0.731870 -0.353468 0.582603\nvn -0.704407 -0.347916 0.618680\nvn -0.541566 -0.677713 0.497405\nvn -0.541566 -0.677713 0.497405\nvn -0.593636 -0.679121 0.431730\nvn -0.731870 -0.353468 0.582603\nvn -0.704407 -0.347916 0.618680\nvn -0.731870 -0.353468 0.582603\nvn -0.767171 0.019197 0.641155\nvn -0.767171 0.019197 0.641155\nvn -0.764801 0.029054 0.643611\nvn -0.704407 -0.347916 0.618680\nvn -0.710936 -0.339187 0.616053\nvn -0.704407 -0.347916 0.618680\nvn -0.764801 0.029054 0.643611\nvn -0.764801 0.029054 0.643611\nvn -0.785227 0.039431 0.617951\nvn -0.710936 -0.339187 0.616053\nvn -0.796247 -0.344135 0.497555\nvn -0.710936 -0.339187 0.616053\nvn -0.785227 0.039431 0.617951\nvn -0.785227 0.039431 0.617951\nvn -0.870665 0.035188 0.490617\nvn -0.796247 -0.344135 0.497555\nvn -0.870665 0.035188 0.490617\nvn -0.785227 0.039431 0.617951\nvn -0.742211 0.410338 0.529854\nvn -0.742211 0.410338 0.529854\nvn -0.813970 0.406237 0.415240\nvn -0.870665 0.035188 0.490617\nvn -0.713579 0.401333 0.574227\nvn -0.742211 0.410338 0.529854\nvn -0.785227 0.039431 0.617951\nvn -0.785227 0.039431 0.617951\nvn -0.764801 0.029054 0.643611\nvn -0.713579 0.401333 0.574227\nvn -0.693015 0.390210 0.606190\nvn -0.713579 0.401333 0.574227\nvn -0.764801 0.029054 0.643611\nvn -0.764801 0.029054 0.643611\nvn -0.767171 0.019197 0.641155\nvn -0.693015 0.390210 0.606190\nvn -0.713579 0.401333 0.574227\nvn -0.693015 0.390210 0.606190\nvn -0.511260 0.710032 0.484219\nvn -0.511260 0.710032 0.484219\nvn -0.553460 0.718079 0.421954\nvn -0.713579 0.401333 0.574227\nvn -0.742211 0.410338 0.529854\nvn -0.713579 0.401333 0.574227\nvn -0.553460 0.718079 0.421954\nvn -0.553460 0.718079 0.421954\nvn -0.588351 0.721750 0.364583\nvn -0.742211 0.410338 0.529854\nvn -0.813970 0.406237 0.415240\nvn -0.742211 0.410338 0.529854\nvn -0.588351 0.721750 0.364583\nvn -0.588351 0.721750 0.364583\nvn -0.640052 0.716014 0.278672\nvn -0.813970 0.406237 0.415240\nvn -0.640052 0.716014 0.278672\nvn -0.588351 0.721750 0.364583\nvn -0.344598 0.927675 0.143778\nvn -0.344598 0.927675 0.143778\nvn -0.373922 0.922842 0.092443\nvn -0.640052 0.716014 0.278672\nvn -0.303850 0.929617 0.208538\nvn -0.344598 0.927675 0.143778\nvn -0.588351 0.721750 0.364583\nvn -0.588351 0.721750 0.364583\nvn -0.553460 0.718079 0.421954\nvn -0.303850 0.929617 0.208538\nvn -0.242869 0.924932 0.292431\nvn -0.303850 0.929617 0.208538\nvn -0.553460 0.718079 0.421954\nvn -0.553460 0.718079 0.421954\nvn -0.511260 0.710032 0.484219\nvn -0.242869 0.924932 0.292431\nvn -0.303850 0.929617 0.208538\nvn -0.242869 0.924932 0.292431\nvn 0.070164 0.995850 0.057956\nvn 0.070164 0.995850 0.057956\nvn -0.001831 0.999343 -0.036196\nvn -0.303850 0.929617 0.208538\nvn -0.344598 0.927675 0.143778\nvn -0.303850 0.929617 0.208538\nvn -0.001831 0.999343 -0.036196\nvn -0.001831 0.999343 -0.036196\nvn -0.046267 0.993448 -0.104496\nvn -0.344598 0.927675 0.143778\nvn -0.373922 0.922842 0.092443\nvn -0.344598 0.927675 0.143778\nvn -0.046267 0.993448 -0.104496\nvn -0.046267 0.993448 -0.104496\nvn -0.050784 0.990809 -0.125373\nvn -0.373922 0.922842 0.092443\nvn -0.477417 0.695448 0.537052\nvn -0.511260 0.710032 0.484219\nvn -0.693015 0.390210 0.606190\nvn -0.693015 0.390210 0.606190\nvn -0.687664 0.375664 0.621284\nvn -0.477417 0.695448 0.537052\nvn -0.687664 0.375664 0.621284\nvn -0.693015 0.390210 0.606190\nvn -0.767171 0.019197 0.641155\nvn -0.767171 0.019197 0.641155\nvn -0.789554 0.006836 0.613643\nvn -0.687664 0.375664 0.621284\nvn -0.789554 0.006836 0.613643\nvn -0.767171 0.019197 0.641155\nvn -0.731870 -0.353468 0.582603\nvn -0.731870 -0.353468 0.582603\nvn -0.777995 -0.359669 0.515133\nvn -0.789554 0.006836 0.613643\nvn -0.777995 -0.359669 0.515133\nvn -0.731870 -0.353468 0.582603\nvn -0.593636 -0.679121 0.431730\nvn -0.593636 -0.679121 0.431730\nvn -0.656075 -0.676188 0.335164\nvn -0.777995 -0.359669 0.515133\nvn -0.833935 -0.357440 0.420462\nvn -0.777995 -0.359669 0.515133\nvn -0.656075 -0.676188 0.335164\nvn -0.656075 -0.676188 0.335164\nvn -0.706743 -0.667953 0.233139\nvn -0.833935 -0.357440 0.420462\nvn -0.889691 -0.346696 0.297072\nvn -0.833935 -0.357440 0.420462\nvn -0.706743 -0.667953 0.233139\nvn -0.706743 -0.667953 0.233139\nvn -0.738604 -0.660505 0.134897\nvn -0.889691 -0.346696 0.297072\nvn -0.930676 -0.332810 0.151923\nvn -0.889691 -0.346696 0.297072\nvn -0.738604 -0.660505 0.134897\nvn -0.738604 -0.660505 0.134897\nvn -0.750368 -0.658568 0.056887\nvn -0.930676 -0.332810 0.151923\nvn -0.889691 -0.346696 0.297072\nvn -0.930676 -0.332810 0.151923\nvn -0.968509 0.048617 0.244187\nvn -0.968509 0.048617 0.244187\nvn -0.903556 0.022431 0.427882\nvn -0.889691 -0.346696 0.297072\nvn -0.833935 -0.357440 0.420462\nvn -0.889691 -0.346696 0.297072\nvn -0.903556 0.022431 0.427882\nvn -0.903556 0.022431 0.427882\nvn -0.837157 0.006409 0.546925\nvn -0.833935 -0.357440 0.420462\nvn -0.777995 -0.359669 0.515133\nvn -0.833935 -0.357440 0.420462\nvn -0.837157 0.006409 0.546925\nvn -0.837157 0.006409 0.546925\nvn -0.789554 0.006836 0.613643\nvn -0.777995 -0.359669 0.515133\nvn -0.714918 0.373680 0.590979\nvn -0.687664 0.375664 0.621284\nvn -0.789554 0.006836 0.613643\nvn -0.789554 0.006836 0.613643\nvn -0.837157 0.006409 0.546925\nvn -0.714918 0.373680 0.590979\nvn -0.774123 0.393150 0.496153\nvn -0.714918 0.373680 0.590979\nvn -0.837157 0.006409 0.546925\nvn -0.837157 0.006409 0.546925\nvn -0.903556 0.022431 0.427882\nvn -0.774123 0.393150 0.496153\nvn -0.849143 0.429561 0.307300\nvn -0.774123 0.393150 0.496153\nvn -0.903556 0.022431 0.427882\nvn -0.903556 0.022431 0.427882\nvn -0.968509 0.048617 0.244187\nvn -0.849143 0.429561 0.307300\nvn -0.774123 0.393150 0.496153\nvn -0.849143 0.429561 0.307300\nvn -0.591249 0.743143 0.313310\nvn -0.591249 0.743143 0.313310\nvn -0.521944 0.705244 0.479797\nvn -0.774123 0.393150 0.496153\nvn -0.714918 0.373680 0.590979\nvn -0.774123 0.393150 0.496153\nvn -0.521944 0.705244 0.479797\nvn -0.521944 0.705244 0.479797\nvn -0.480070 0.689646 0.542146\nvn -0.714918 0.373680 0.590979\nvn -0.687664 0.375664 0.621284\nvn -0.714918 0.373680 0.590979\nvn -0.480070 0.689646 0.542146\nvn -0.480070 0.689646 0.542146\nvn -0.477417 0.695448 0.537052\nvn -0.687664 0.375664 0.621284\nvn -0.477417 0.695448 0.537052\nvn -0.480070 0.689646 0.542146\nvn -0.166693 0.898437 0.406233\nvn -0.166693 0.898437 0.406233\nvn -0.185157 0.909519 0.372145\nvn -0.477417 0.695448 0.537052\nvn -0.511260 0.710032 0.484219\nvn -0.477417 0.695448 0.537052\nvn -0.185157 0.909519 0.372145\nvn -0.185157 0.909519 0.372145\nvn -0.242869 0.924932 0.292431\nvn -0.511260 0.710032 0.484219\nvn -0.189888 0.905917 0.378493\nvn -0.166693 0.898437 0.406233\nvn -0.480070 0.689646 0.542146\nvn -0.480070 0.689646 0.542146\nvn -0.521944 0.705244 0.479797\nvn -0.189888 0.905917 0.378493\nvn -0.242964 0.936055 0.254500\nvn -0.189888 0.905917 0.378493\nvn -0.521944 0.705244 0.479797\nvn -0.521944 0.705244 0.479797\nvn -0.591249 0.743143 0.313310\nvn -0.242964 0.936055 0.254500\nvn -0.189888 0.905917 0.378493\nvn -0.242964 0.936055 0.254500\nvn 0.136970 0.979147 0.150032\nvn 0.136970 0.979147 0.150032\nvn 0.168037 0.961897 0.215678\nvn -0.189888 0.905917 0.378493\nvn -0.166693 0.898437 0.406233\nvn -0.189888 0.905917 0.378493\nvn 0.168037 0.961897 0.215678\nvn 0.168037 0.961897 0.215678\nvn 0.173349 0.962608 0.208172\nvn -0.166693 0.898437 0.406233\nvn -0.185157 0.909519 0.372145\nvn -0.166693 0.898437 0.406233\nvn 0.173349 0.962608 0.208172\nvn 0.173349 0.962608 0.208172\nvn 0.140970 0.978244 0.152201\nvn -0.185157 0.909519 0.372145\nvn -0.242869 0.924932 0.292431\nvn -0.185157 0.909519 0.372145\nvn 0.140970 0.978244 0.152201\nvn 0.140970 0.978244 0.152201\nvn 0.070164 0.995850 0.057956\nvn -0.242869 0.924932 0.292431\nvn -0.640140 0.765664 0.063083\nvn -0.591249 0.743143 0.313310\nvn -0.849143 0.429561 0.307300\nvn -0.849143 0.429561 0.307300\nvn -0.890112 0.452716 0.052431\nvn -0.640140 0.765664 0.063083\nvn -0.890112 0.452716 0.052431\nvn -0.849143 0.429561 0.307300\nvn -0.968509 0.048617 0.244187\nvn -0.968509 0.048617 0.244187\nvn -0.997189 0.068882 0.029482\nvn -0.890112 0.452716 0.052431\nvn -0.997189 0.068882 0.029482\nvn -0.968509 0.048617 0.244187\nvn -0.930676 -0.332810 0.151923\nvn -0.930676 -0.332810 0.151923\nvn -0.947165 -0.320544 0.011414\nvn -0.997189 0.068882 0.029482\nvn -0.947165 -0.320544 0.011414\nvn -0.930676 -0.332810 0.151923\nvn -0.750368 -0.658568 0.056887\nvn -0.750368 -0.658568 0.056887\nvn -0.753123 -0.657842 0.007081\nvn -0.947165 -0.320544 0.011414\nvn -0.938956 -0.327381 -0.105749\nvn -0.947165 -0.320544 0.011414\nvn -0.753123 -0.657842 0.007081\nvn -0.753123 -0.657842 0.007081\nvn -0.748850 -0.662451 -0.019563\nvn -0.938956 -0.327381 -0.105749\nvn -0.915018 -0.352738 -0.195748\nvn -0.938956 -0.327381 -0.105749\nvn -0.748850 -0.662451 -0.019563\nvn -0.748850 -0.662451 -0.019563\nvn -0.744208 -0.667453 -0.025728\nvn -0.915018 -0.352738 -0.195748\nvn -0.884751 -0.387624 -0.258772\nvn -0.915018 -0.352738 -0.195748\nvn -0.744208 -0.667453 -0.025728\nvn -0.744208 -0.667453 -0.025728\nvn -0.745247 -0.666599 -0.015900\nvn -0.884751 -0.387624 -0.258772\nvn -0.915018 -0.352738 -0.195748\nvn -0.884751 -0.387624 -0.258772\nvn -0.883959 -0.053958 -0.464441\nvn -0.883959 -0.053958 -0.464441\nvn -0.941650 0.012085 -0.336376\nvn -0.915018 -0.352738 -0.195748\nvn -0.938956 -0.327381 -0.105749\nvn -0.915018 -0.352738 -0.195748\nvn -0.941650 0.012085 -0.336376\nvn -0.941650 0.012085 -0.336376\nvn -0.983886 0.057163 -0.169413\nvn -0.938956 -0.327381 -0.105749\nvn -0.947165 -0.320544 0.011414\nvn -0.938956 -0.327381 -0.105749\nvn -0.983886 0.057163 -0.169413\nvn -0.983886 0.057163 -0.169413\nvn -0.997189 0.068882 0.029482\nvn -0.947165 -0.320544 0.011414\nvn -0.878174 0.433990 -0.201155\nvn -0.890112 0.452716 0.052431\nvn -0.997189 0.068882 0.029482\nvn -0.997189 0.068882 0.029482\nvn -0.983886 0.057163 -0.169413\nvn -0.878174 0.433990 -0.201155\nvn -0.825328 0.373492 -0.423483\nvn -0.878174 0.433990 -0.201155\nvn -0.983886 0.057163 -0.169413\nvn -0.983886 0.057163 -0.169413\nvn -0.941650 0.012085 -0.336376\nvn -0.825328 0.373492 -0.423483\nvn -0.748246 0.285998 -0.598609\nvn -0.825328 0.373492 -0.423483\nvn -0.941650 0.012085 -0.336376\nvn -0.941650 0.012085 -0.336376\nvn -0.883959 -0.053958 -0.464441\nvn -0.748246 0.285998 -0.598609\nvn -0.825328 0.373492 -0.423483\nvn -0.748246 0.285998 -0.598609\nvn -0.502097 0.584131 -0.637722\nvn -0.502097 0.584131 -0.637722\nvn -0.585998 0.679142 -0.442009\nvn -0.825328 0.373492 -0.423483\nvn -0.878174 0.433990 -0.201155\nvn -0.825328 0.373492 -0.423483\nvn -0.585998 0.679142 -0.442009\nvn -0.585998 0.679142 -0.442009\nvn -0.637177 0.744146 -0.200632\nvn -0.878174 0.433990 -0.201155\nvn -0.890112 0.452716 0.052431\nvn -0.878174 0.433990 -0.201155\nvn -0.637177 0.744146 -0.200632\nvn -0.637177 0.744146 -0.200632\nvn -0.640140 0.765664 0.063083\nvn -0.890112 0.452716 0.052431\nvn -0.640140 0.765664 0.063083\nvn -0.637177 0.744146 -0.200632\nvn -0.296523 0.939162 -0.173348\nvn -0.296523 0.939162 -0.173348\nvn -0.290080 0.955630 0.051241\nvn -0.640140 0.765664 0.063083\nvn -0.591249 0.743143 0.313310\nvn -0.640140 0.765664 0.063083\nvn -0.290080 0.955630 0.051241\nvn -0.290080 0.955630 0.051241\nvn -0.242964 0.936055 0.254500\nvn -0.591249 0.743143 0.313310\nvn -0.256759 0.884264 -0.390066\nvn -0.296523 0.939162 -0.173348\nvn -0.637177 0.744146 -0.200632\nvn -0.637177 0.744146 -0.200632\nvn -0.585998 0.679142 -0.442009\nvn -0.256759 0.884264 -0.390066\nvn -0.180187 0.798053 -0.575017\nvn -0.256759 0.884264 -0.390066\nvn -0.585998 0.679142 -0.442009\nvn -0.585998 0.679142 -0.442009\nvn -0.502097 0.584131 -0.637722\nvn -0.180187 0.798053 -0.575017\nvn -0.256759 0.884264 -0.390066\nvn -0.180187 0.798053 -0.575017\nvn 0.173929 0.889848 -0.421806\nvn 0.173929 0.889848 -0.421806\nvn 0.116856 0.953252 -0.278666\nvn -0.256759 0.884264 -0.390066\nvn -0.296523 0.939162 -0.173348\nvn -0.256759 0.884264 -0.390066\nvn 0.116856 0.953252 -0.278666\nvn 0.116856 0.953252 -0.278666\nvn 0.092074 0.988009 -0.123936\nvn -0.296523 0.939162 -0.173348\nvn -0.290080 0.955630 0.051241\nvn -0.296523 0.939162 -0.173348\nvn 0.092074 0.988009 -0.123936\nvn 0.092074 0.988009 -0.123936\nvn 0.101963 0.994483 0.024629\nvn -0.290080 0.955630 0.051241\nvn -0.242964 0.936055 0.254500\nvn -0.290080 0.955630 0.051241\nvn 0.101963 0.994483 0.024629\nvn 0.101963 0.994483 0.024629\nvn 0.136970 0.979147 0.150032\nvn -0.242964 0.936055 0.254500\nvn -0.403798 0.477409 -0.780402\nvn -0.502097 0.584131 -0.637722\nvn -0.748246 0.285998 -0.598609\nvn -0.748246 0.285998 -0.598609\nvn -0.660768 0.191293 -0.725804\nvn -0.403798 0.477409 -0.780402\nvn -0.660768 0.191293 -0.725804\nvn -0.748246 0.285998 -0.598609\nvn -0.883959 -0.053958 -0.464441\nvn -0.883959 -0.053958 -0.464441\nvn -0.820564 -0.123419 -0.558070\nvn -0.660768 0.191293 -0.725804\nvn -0.820564 -0.123419 -0.558070\nvn -0.883959 -0.053958 -0.464441\nvn -0.884751 -0.387624 -0.258772\nvn -0.884751 -0.387624 -0.258772\nvn -0.854418 -0.421502 -0.303819\nvn -0.820564 -0.123419 -0.558070\nvn -0.854418 -0.421502 -0.303819\nvn -0.884751 -0.387624 -0.258772\nvn -0.745247 -0.666599 -0.015900\nvn -0.745247 -0.666599 -0.015900\nvn -0.752509 -0.658572 -0.003632\nvn -0.854418 -0.421502 -0.303819\nvn -0.825430 -0.454191 -0.335226\nvn -0.854418 -0.421502 -0.303819\nvn -0.752509 -0.658572 -0.003632\nvn -0.752509 -0.658572 -0.003632\nvn -0.760809 -0.648957 0.004944\nvn -0.825430 -0.454191 -0.335226\nvn -0.797921 -0.485681 -0.356982\nvn -0.825430 -0.454191 -0.335226\nvn -0.760809 -0.648957 0.004944\nvn -0.760809 -0.648957 0.004944\nvn -0.769509 -0.638552 0.010346\nvn -0.797921 -0.485681 -0.356982\nvn -0.771478 -0.516700 -0.371273\nvn -0.797921 -0.485681 -0.356982\nvn -0.769509 -0.638552 0.010346\nvn -0.769509 -0.638552 0.010346\nvn -0.778471 -0.627556 0.012513\nvn -0.771478 -0.516700 -0.371273\nvn -0.797921 -0.485681 -0.356982\nvn -0.771478 -0.516700 -0.371273\nvn -0.642731 -0.327225 -0.692691\nvn -0.642731 -0.327225 -0.692691\nvn -0.699677 -0.259625 -0.665618\nvn -0.797921 -0.485681 -0.356982\nvn -0.825430 -0.454191 -0.335226\nvn -0.797921 -0.485681 -0.356982\nvn -0.699677 -0.259625 -0.665618\nvn -0.699677 -0.259625 -0.665618\nvn -0.758784 -0.192031 -0.622391\nvn -0.825430 -0.454191 -0.335226\nvn -0.854418 -0.421502 -0.303819\nvn -0.825430 -0.454191 -0.335226\nvn -0.758784 -0.192031 -0.622391\nvn -0.758784 -0.192031 -0.622391\nvn -0.820564 -0.123419 -0.558070\nvn -0.854418 -0.421502 -0.303819\nvn -0.575429 0.096561 -0.812131\nvn -0.660768 0.191293 -0.725804\nvn -0.820564 -0.123419 -0.558070\nvn -0.820564 -0.123419 -0.558070\nvn -0.758784 -0.192031 -0.622391\nvn -0.575429 0.096561 -0.812131\nvn -0.494378 0.002350 -0.869244\nvn -0.575429 0.096561 -0.812131\nvn -0.758784 -0.192031 -0.622391\nvn -0.758784 -0.192031 -0.622391\nvn -0.699677 -0.259625 -0.665618\nvn -0.494378 0.002350 -0.869244\nvn -0.416648 -0.091649 -0.904436\nvn -0.494378 0.002350 -0.869244\nvn -0.699677 -0.259625 -0.665618\nvn -0.699677 -0.259625 -0.665618\nvn -0.642731 -0.327225 -0.692691\nvn -0.416648 -0.091649 -0.904436\nvn -0.494378 0.002350 -0.869244\nvn -0.416648 -0.091649 -0.904436\nvn -0.130712 0.154059 -0.979378\nvn -0.130712 0.154059 -0.979378\nvn -0.217266 0.260786 -0.940631\nvn -0.494378 0.002350 -0.869244\nvn -0.575429 0.096561 -0.812131\nvn -0.494378 0.002350 -0.869244\nvn -0.217266 0.260786 -0.940631\nvn -0.217266 0.260786 -0.940631\nvn -0.307721 0.368911 -0.877048\nvn -0.575429 0.096561 -0.812131\nvn -0.660768 0.191293 -0.725804\nvn -0.575429 0.096561 -0.812131\nvn -0.307721 0.368911 -0.877048\nvn -0.307721 0.368911 -0.877048\nvn -0.403798 0.477409 -0.780402\nvn -0.660768 0.191293 -0.725804\nvn -0.403798 0.477409 -0.780402\nvn -0.307721 0.368911 -0.877048\nvn 0.004791 0.587918 -0.808906\nvn 0.004791 0.587918 -0.808906\nvn -0.087102 0.694926 -0.713787\nvn -0.403798 0.477409 -0.780402\nvn -0.502097 0.584131 -0.637722\nvn -0.403798 0.477409 -0.780402\nvn -0.087102 0.694926 -0.713787\nvn -0.087102 0.694926 -0.713787\nvn -0.180187 0.798053 -0.575017\nvn -0.502097 0.584131 -0.637722\nvn 0.091435 0.481407 -0.871715\nvn 0.004791 0.587918 -0.808906\nvn -0.307721 0.368911 -0.877048\nvn -0.307721 0.368911 -0.877048\nvn -0.217266 0.260786 -0.940631\nvn 0.091435 0.481407 -0.871715\nvn 0.174508 0.377673 -0.909346\nvn 0.091435 0.481407 -0.871715\nvn -0.217266 0.260786 -0.940631\nvn -0.217266 0.260786 -0.940631\nvn -0.130712 0.154059 -0.979378\nvn 0.174508 0.377673 -0.909346\nvn 0.091435 0.481407 -0.871715\nvn 0.174508 0.377673 -0.909346\nvn 0.456596 0.548153 -0.700749\nvn 0.456596 0.548153 -0.700749\nvn 0.389063 0.632731 -0.669538\nvn 0.091435 0.481407 -0.871715\nvn 0.004791 0.587918 -0.808906\nvn 0.091435 0.481407 -0.871715\nvn 0.389063 0.632731 -0.669538\nvn 0.389063 0.632731 -0.669538\nvn 0.319143 0.720170 -0.616038\nvn 0.004791 0.587918 -0.808906\nvn -0.087102 0.694926 -0.713787\nvn 0.004791 0.587918 -0.808906\nvn 0.319143 0.720170 -0.616038\nvn 0.319143 0.720170 -0.616038\nvn 0.246198 0.807658 -0.535794\nvn -0.087102 0.694926 -0.713787\nvn -0.180187 0.798053 -0.575017\nvn -0.087102 0.694926 -0.713787\nvn 0.246198 0.807658 -0.535794\nvn 0.246198 0.807658 -0.535794\nvn 0.173929 0.889848 -0.421806\nvn -0.180187 0.798053 -0.575017\nvn -0.037477 0.043734 -0.998340\nvn -0.130712 0.154059 -0.979378\nvn -0.416648 -0.091649 -0.904436\nvn -0.416648 -0.091649 -0.904436\nvn -0.332783 -0.193646 -0.922907\nvn -0.037477 0.043734 -0.998340\nvn -0.332783 -0.193646 -0.922907\nvn -0.416648 -0.091649 -0.904436\nvn -0.642731 -0.327225 -0.692691\nvn -0.642731 -0.327225 -0.692691\nvn -0.580234 -0.404626 -0.706828\nvn -0.332783 -0.193646 -0.922907\nvn -0.580234 -0.404626 -0.706828\nvn -0.642731 -0.327225 -0.692691\nvn -0.771478 -0.516700 -0.371273\nvn -0.771478 -0.516700 -0.371273\nvn -0.739583 -0.556282 -0.378902\nvn -0.580234 -0.404626 -0.706828\nvn -0.739583 -0.556282 -0.378902\nvn -0.771478 -0.516700 -0.371273\nvn -0.778471 -0.627556 0.012513\nvn -0.778471 -0.627556 0.012513\nvn -0.782670 -0.622321 0.011994\nvn -0.739583 -0.556282 -0.378902\nvn -0.694656 -0.613718 -0.375238\nvn -0.739583 -0.556282 -0.378902\nvn -0.782670 -0.622321 0.011994\nvn -0.782670 -0.622321 0.011994\nvn -0.777823 -0.628369 0.011964\nvn -0.694656 -0.613718 -0.375238\nvn -0.634964 -0.688709 -0.350001\nvn -0.694656 -0.613718 -0.375238\nvn -0.777823 -0.628369 0.011964\nvn -0.777823 -0.628369 0.011964\nvn -0.764630 -0.644202 0.018556\nvn -0.634964 -0.688709 -0.350001\nvn -0.560578 -0.774610 -0.292802\nvn -0.634964 -0.688709 -0.350001\nvn -0.764630 -0.644202 0.018556\nvn -0.764630 -0.644202 0.018556\nvn -0.744455 -0.666692 0.036165\nvn -0.560578 -0.774610 -0.292802\nvn -0.634964 -0.688709 -0.350001\nvn -0.560578 -0.774610 -0.292802\nvn -0.284748 -0.762746 -0.580635\nvn -0.284748 -0.762746 -0.580635\nvn -0.403593 -0.626235 -0.667040\nvn -0.634964 -0.688709 -0.350001\nvn -0.694656 -0.613718 -0.375238\nvn -0.634964 -0.688709 -0.350001\nvn -0.403593 -0.626235 -0.667040\nvn -0.403593 -0.626235 -0.667040\nvn -0.502048 -0.503697 -0.703020\nvn -0.694656 -0.613718 -0.375238\nvn -0.739583 -0.556282 -0.378902\nvn -0.694656 -0.613718 -0.375238\nvn -0.502048 -0.503697 -0.703020\nvn -0.502048 -0.503697 -0.703020\nvn -0.580234 -0.404626 -0.706828\nvn -0.739583 -0.556282 -0.378902\nvn -0.231337 -0.316243 -0.920040\nvn -0.332783 -0.193646 -0.922907\nvn -0.580234 -0.404626 -0.706828\nvn -0.580234 -0.404626 -0.706828\nvn -0.502048 -0.503697 -0.703020\nvn -0.231337 -0.316243 -0.920040\nvn -0.106025 -0.463623 -0.879666\nvn -0.231337 -0.316243 -0.920040\nvn -0.502048 -0.503697 -0.703020\nvn -0.502048 -0.503697 -0.703020\nvn -0.403593 -0.626235 -0.667040\nvn -0.106025 -0.463623 -0.879666\nvn 0.040590 -0.626975 -0.777981\nvn -0.106025 -0.463623 -0.879666\nvn -0.403593 -0.626235 -0.667040\nvn -0.403593 -0.626235 -0.667040\nvn -0.284748 -0.762746 -0.580635\nvn 0.040590 -0.626975 -0.777981\nvn -0.106025 -0.463623 -0.879666\nvn 0.040590 -0.626975 -0.777981\nvn 0.357743 -0.389391 -0.848761\nvn 0.357743 -0.389391 -0.848761\nvn 0.206644 -0.227702 -0.951551\nvn -0.106025 -0.463623 -0.879666\nvn -0.231337 -0.316243 -0.920040\nvn -0.106025 -0.463623 -0.879666\nvn 0.206644 -0.227702 -0.951551\nvn 0.206644 -0.227702 -0.951551\nvn 0.073033 -0.081609 -0.993985\nvn -0.231337 -0.316243 -0.920040\nvn -0.332783 -0.193646 -0.922907\nvn -0.231337 -0.316243 -0.920040\nvn 0.073033 -0.081609 -0.993985\nvn 0.073033 -0.081609 -0.993985\nvn -0.037477 0.043734 -0.998340\nvn -0.332783 -0.193646 -0.922907\nvn -0.037477 0.043734 -0.998340\nvn 0.073033 -0.081609 -0.993985\nvn 0.364885 0.164741 -0.916362\nvn 0.364885 0.164741 -0.916362\nvn 0.263164 0.274914 -0.924752\nvn -0.037477 0.043734 -0.998340\nvn -0.130712 0.154059 -0.979378\nvn -0.037477 0.043734 -0.998340\nvn 0.263164 0.274914 -0.924752\nvn 0.263164 0.274914 -0.924752\nvn 0.174508 0.377673 -0.909346\nvn -0.130712 0.154059 -0.979378\nvn 0.483576 0.041628 -0.874312\nvn 0.364885 0.164741 -0.916362\nvn 0.073033 -0.081609 -0.993985\nvn 0.073033 -0.081609 -0.993985\nvn 0.206644 -0.227702 -0.951551\nvn 0.483576 0.041628 -0.874312\nvn 0.613193 -0.093023 -0.784437\nvn 0.483576 0.041628 -0.874312\nvn 0.206644 -0.227702 -0.951551\nvn 0.206644 -0.227702 -0.951551\nvn 0.357743 -0.389391 -0.848761\nvn 0.613193 -0.093023 -0.784437\nvn 0.483576 0.041628 -0.874312\nvn 0.613193 -0.093023 -0.784437\nvn 0.770710 0.212996 -0.600533\nvn 0.770710 0.212996 -0.600533\nvn 0.684144 0.302077 -0.663849\nvn 0.483576 0.041628 -0.874312\nvn 0.364885 0.164741 -0.916362\nvn 0.483576 0.041628 -0.874312\nvn 0.684144 0.302077 -0.663849\nvn 0.684144 0.302077 -0.663849\nvn 0.601653 0.386799 -0.698856\nvn 0.364885 0.164741 -0.916362\nvn 0.263164 0.274914 -0.924752\nvn 0.364885 0.164741 -0.916362\nvn 0.601653 0.386799 -0.698856\nvn 0.601653 0.386799 -0.698856\nvn 0.526514 0.467460 -0.710116\nvn 0.263164 0.274914 -0.924752\nvn 0.174508 0.377673 -0.909346\nvn 0.263164 0.274914 -0.924752\nvn 0.526514 0.467460 -0.710116\nvn 0.526514 0.467460 -0.710116\nvn 0.456596 0.548153 -0.700749\nvn 0.174508 0.377673 -0.909346\nvn 0.480160 -0.523467 -0.703867\nvn 0.357743 -0.389391 -0.848761\nvn 0.040590 -0.626975 -0.777981\nvn 0.040590 -0.626975 -0.777981\nvn 0.165660 -0.755142 -0.634285\nvn 0.480160 -0.523467 -0.703867\nvn 0.165660 -0.755142 -0.634285\nvn 0.040590 -0.626975 -0.777981\nvn -0.284748 -0.762746 -0.580635\nvn -0.284748 -0.762746 -0.580635\nvn -0.177254 -0.867718 -0.464378\nvn 0.165660 -0.755142 -0.634285\nvn -0.177254 -0.867718 -0.464378\nvn -0.284748 -0.762746 -0.580635\nvn -0.560578 -0.774610 -0.292802\nvn -0.560578 -0.774610 -0.292802\nvn -0.490773 -0.842533 -0.221994\nvn -0.177254 -0.867718 -0.464378\nvn -0.490773 -0.842533 -0.221994\nvn -0.560578 -0.774610 -0.292802\nvn -0.744455 -0.666692 0.036165\nvn -0.744455 -0.666692 0.036165\nvn -0.724791 -0.686887 0.053530\nvn -0.490773 -0.842533 -0.221994\nvn -0.449117 -0.879283 -0.158607\nvn -0.490773 -0.842533 -0.221994\nvn -0.724791 -0.686887 0.053530\nvn -0.724791 -0.686887 0.053530\nvn -0.716317 -0.694649 0.065983\nvn -0.449117 -0.879283 -0.158607\nvn -0.428823 -0.897870 -0.099706\nvn -0.449117 -0.879283 -0.158607\nvn -0.716317 -0.694649 0.065983\nvn -0.716317 -0.694649 0.065983\nvn -0.721298 -0.689588 0.064793\nvn -0.428823 -0.897870 -0.099706\nvn -0.422844 -0.905109 -0.044497\nvn -0.428823 -0.897870 -0.099706\nvn -0.721298 -0.689588 0.064793\nvn -0.721298 -0.689588 0.064793\nvn -0.731514 -0.680761 0.038088\nvn -0.422844 -0.905109 -0.044497\nvn -0.428823 -0.897870 -0.099706\nvn -0.422844 -0.905109 -0.044497\nvn -0.049410 -0.991829 -0.117619\nvn -0.049410 -0.991829 -0.117619\nvn -0.070499 -0.966722 -0.245923\nvn -0.428823 -0.897870 -0.099706\nvn -0.449117 -0.879283 -0.158607\nvn -0.428823 -0.897870 -0.099706\nvn -0.070499 -0.966722 -0.245923\nvn -0.070499 -0.966722 -0.245923\nvn -0.111363 -0.927345 -0.357253\nvn -0.449117 -0.879283 -0.158607\nvn -0.490773 -0.842533 -0.221994\nvn -0.449117 -0.879283 -0.158607\nvn -0.111363 -0.927345 -0.357253\nvn -0.111363 -0.927345 -0.357253\nvn -0.177254 -0.867718 -0.464378\nvn -0.490773 -0.842533 -0.221994\nvn 0.242963 -0.831249 -0.499994\nvn 0.165660 -0.755142 -0.634285\nvn -0.177254 -0.867718 -0.464378\nvn -0.177254 -0.867718 -0.464378\nvn -0.111363 -0.927345 -0.357253\nvn 0.242963 -0.831249 -0.499994\nvn 0.297683 -0.886731 -0.353685\nvn 0.242963 -0.831249 -0.499994\nvn -0.111363 -0.927345 -0.357253\nvn -0.111363 -0.927345 -0.357253\nvn -0.070499 -0.966722 -0.245923\nvn 0.297683 -0.886731 -0.353685\nvn -0.070499 -0.966722 -0.245923\nvn -0.049410 -0.991829 -0.117619\nvn 0.334949 -0.926381 -0.172128\nvn 0.334949 -0.926381 -0.172128\nvn 0.297683 -0.886731 -0.353685\nvn -0.070499 -0.966722 -0.245923\nvn 0.297683 -0.886731 -0.353685\nvn 0.334949 -0.926381 -0.172128\nvn 0.667942 -0.716436 -0.201426\nvn 0.667942 -0.716436 -0.201426\nvn 0.618383 -0.671364 -0.408501\nvn 0.297683 -0.886731 -0.353685\nvn 0.242963 -0.831249 -0.499994\nvn 0.297683 -0.886731 -0.353685\nvn 0.618383 -0.671364 -0.408501\nvn 0.618383 -0.671364 -0.408501\nvn 0.557445 -0.607436 -0.565929\nvn 0.242963 -0.831249 -0.499994\nvn 0.165660 -0.755142 -0.634285\nvn 0.242963 -0.831249 -0.499994\nvn 0.557445 -0.607436 -0.565929\nvn 0.557445 -0.607436 -0.565929\nvn 0.480160 -0.523467 -0.703867\nvn 0.165660 -0.755142 -0.634285\nvn 0.480160 -0.523467 -0.703867\nvn 0.557445 -0.607436 -0.565929\nvn 0.785297 -0.291033 -0.546451\nvn 0.785297 -0.291033 -0.546451\nvn 0.716707 -0.212106 -0.664336\nvn 0.480160 -0.523467 -0.703867\nvn 0.357743 -0.389391 -0.848761\nvn 0.480160 -0.523467 -0.703867\nvn 0.716707 -0.212106 -0.664336\nvn 0.716707 -0.212106 -0.664336\nvn 0.613193 -0.093023 -0.784437\nvn 0.357743 -0.389391 -0.848761\nvn 0.844642 -0.352341 -0.403033\nvn 0.785297 -0.291033 -0.546451\nvn 0.557445 -0.607436 -0.565929\nvn 0.557445 -0.607436 -0.565929\nvn 0.618383 -0.671364 -0.408501\nvn 0.844642 -0.352341 -0.403033\nvn 0.618383 -0.671364 -0.408501\nvn 0.667942 -0.716436 -0.201426\nvn 0.897279 -0.392941 -0.201216\nvn 0.897279 -0.392941 -0.201216\nvn 0.844642 -0.352341 -0.403033\nvn 0.618383 -0.671364 -0.408501\nvn 0.844642 -0.352341 -0.403033\nvn 0.897279 -0.392941 -0.201216\nvn 0.985395 -0.006897 -0.170143\nvn 0.985395 -0.006897 -0.170143\nvn 0.941662 0.023500 -0.335739\nvn 0.844642 -0.352341 -0.403033\nvn 0.785297 -0.291033 -0.546451\nvn 0.844642 -0.352341 -0.403033\nvn 0.941662 0.023500 -0.335739\nvn 0.941662 0.023500 -0.335739\nvn 0.893415 0.070377 -0.443686\nvn 0.785297 -0.291033 -0.546451\nvn 0.716707 -0.212106 -0.664336\nvn 0.785297 -0.291033 -0.546451\nvn 0.893415 0.070377 -0.443686\nvn 0.893415 0.070377 -0.443686\nvn 0.842065 0.129525 -0.523593\nvn 0.716707 -0.212106 -0.664336\nvn 0.613193 -0.093023 -0.784437\nvn 0.716707 -0.212106 -0.664336\nvn 0.842065 0.129525 -0.523593\nvn 0.842065 0.129525 -0.523593\nvn 0.770710 0.212996 -0.600533\nvn 0.613193 -0.093023 -0.784437\nvn 0.667942 -0.716436 -0.201426\nvn 0.334949 -0.926381 -0.172128\nvn 0.354271 -0.934416 -0.036868\nvn 0.354271 -0.934416 -0.036868\nvn 0.334949 -0.926381 -0.172128\nvn -0.049410 -0.991829 -0.117619\nvn 0.999090 -0.021760 -0.036683\nvn 0.985395 -0.006897 -0.170143\nvn 0.897279 -0.392941 -0.201216\nvn 0.897279 -0.392941 -0.201216\nvn 0.913327 -0.404963 -0.042880\nvn 0.999090 -0.021760 -0.036683\nvn 0.913327 -0.404963 -0.042880\nvn 0.897279 -0.392941 -0.201216\nvn 0.667942 -0.716436 -0.201426\nvn -0.049410 -0.991829 -0.117619\nvn -0.422844 -0.905109 -0.044497\nvn -0.412074 -0.911098 -0.009797\nvn -0.412074 -0.911098 -0.009797\nvn -0.422844 -0.905109 -0.044497\nvn -0.731514 -0.680761 0.038088\nvn 0.027101 -0.991206 0.129524\nvn 0.040347 -0.993897 0.102668\nvn -0.264599 -0.901865 0.341507\nvn -0.264599 -0.901865 0.341507\nvn -0.307447 -0.900612 0.307203\nvn 0.027101 -0.991206 0.129524\nvn -0.447625 -0.894121 0.013398\nvn -0.460807 -0.887037 -0.028688\nvn -0.099280 -0.989685 -0.103278\nvn -0.099280 -0.989685 -0.103278\nvn -0.074131 -0.997004 0.022066\nvn -0.447625 -0.894121 0.013398\nvn -0.531187 -0.795545 0.291459\nvn -0.487206 -0.844463 0.222515\nvn -0.153268 -0.894068 0.420894\nvn -0.153268 -0.894068 0.420894\nvn -0.227825 -0.812327 0.536862\nvn -0.531187 -0.795545 0.291459\nvn -0.701844 -0.590176 0.398883\nvn -0.661664 -0.638836 0.392543\nvn -0.444119 -0.550785 0.706678\nvn -0.444119 -0.550785 0.706678\nvn -0.513911 -0.467156 0.719487\nvn -0.701844 -0.590176 0.398883\nvn -0.844708 -0.430533 0.317979\nvn -0.812909 -0.462763 0.353595\nvn -0.761815 -0.193491 0.618223\nvn -0.761815 -0.193491 0.618223\nvn -0.837660 -0.113074 0.534360\nvn -0.844708 -0.430533 0.317979\nvn -0.938499 -0.009766 0.345143\nvn -0.983346 0.023041 0.180275\nvn -0.927486 -0.355125 0.116859\nvn -0.927486 -0.355125 0.116859\nvn -0.899424 -0.376970 0.221201\nvn -0.938499 -0.009766 0.345143\nvn -0.359603 0.932104 0.043215\nvn -0.346334 0.918571 0.190471\nvn 0.026552 0.991000 0.131203\nvn -0.668454 0.710326 0.220468\nvn -0.346334 0.918571 0.190471\nvn -0.359603 0.932104 0.043215\nvn -0.913512 0.406812 -0.000000\nvn -0.911987 0.407284 0.048984\nvn -0.687726 0.724226 0.050296\nvn -0.687726 0.724226 0.050296\nvn -0.688276 0.725449 -0.000000\nvn -0.913512 0.406812 -0.000000\nvn -0.911987 0.407284 0.048984\nvn -0.913512 0.406812 -0.000000\nvn -0.999656 0.026216 -0.000000\nvn -0.999656 0.026216 -0.000000\nvn -0.998790 0.028291 0.040224\nvn -0.911987 0.407284 0.048984\nvn -0.911987 0.407284 0.048984\nvn -0.998790 0.028291 0.040224\nvn -0.983346 0.023041 0.180275\nvn -0.983346 0.023041 0.180275\nvn -0.998790 0.028291 0.040224\nvn -0.934665 -0.354597 0.025727\nvn -0.934665 -0.354597 0.025727\nvn -0.927486 -0.355125 0.116859\nvn -0.983346 0.023041 0.180275\nvn -0.998790 0.028291 0.040224\nvn -0.999656 0.026216 -0.000000\nvn -0.933599 -0.358321 0.000000\nvn -0.933599 -0.358321 0.000000\nvn -0.934665 -0.354597 0.025727\nvn -0.998790 0.028291 0.040224\nvn 0.369950 0.927501 -0.053652\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.012086 0.999723 -0.020204\nvn 0.369950 0.927501 -0.053652\nvn 0.330184 0.922374 -0.200510\nvn 0.369950 0.927501 -0.053652\nvn -0.012086 0.999723 -0.020204\nvn -0.012086 0.999723 -0.020204\nvn -0.032534 0.996758 -0.073582\nvn 0.330184 0.922374 -0.200510\nvn 0.330184 0.922374 -0.200510\nvn -0.032534 0.996758 -0.073582\nvn -0.050784 0.990809 -0.125373\nvn -0.050784 0.990809 -0.125373\nvn 0.271652 0.903187 -0.332355\nvn 0.330184 0.922374 -0.200510\nvn 0.330184 0.922374 -0.200510\nvn 0.271652 0.903187 -0.332355\nvn 0.552427 0.668552 -0.497859\nvn 0.552427 0.668552 -0.497859\nvn 0.644831 0.697476 -0.312604\nvn 0.330184 0.922374 -0.200510\nvn 0.369950 0.927501 -0.053652\nvn 0.330184 0.922374 -0.200510\nvn 0.644831 0.697476 -0.312604\nvn 0.644831 0.697476 -0.312604\nvn 0.697550 0.711711 -0.083013\nvn 0.369950 0.927501 -0.053652\nvn 0.382681 0.923880 -0.000000\nvn 0.369950 0.927501 -0.053652\nvn 0.697550 0.711711 -0.083013\nvn 0.697550 0.711711 -0.083013\nvn 0.707107 0.707107 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.697550 0.711711 -0.083013\nvn 0.918787 0.382561 -0.097357\nvn 0.918787 0.382561 -0.097357\nvn 0.923880 0.382682 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.856965 0.363447 -0.365400\nvn 0.918787 0.382561 -0.097357\nvn 0.697550 0.711711 -0.083013\nvn 0.697550 0.711711 -0.083013\nvn 0.644831 0.697476 -0.312604\nvn 0.856965 0.363447 -0.365400\nvn 0.644831 0.697476 -0.312604\nvn 0.552427 0.668552 -0.497859\nvn 0.740798 0.335073 -0.582189\nvn 0.740798 0.335073 -0.582189\nvn 0.856965 0.363447 -0.365400\nvn 0.644831 0.697476 -0.312604\nvn 0.856965 0.363447 -0.365400\nvn 0.740798 0.335073 -0.582189\nvn 0.819658 -0.043490 -0.571200\nvn 0.819658 -0.043490 -0.571200\nvn 0.937513 -0.025697 -0.347001\nvn 0.856965 0.363447 -0.365400\nvn 0.918787 0.382561 -0.097357\nvn 0.856965 0.363447 -0.365400\nvn 0.937513 -0.025697 -0.347001\nvn 0.937513 -0.025697 -0.347001\nvn 0.995888 -0.006897 -0.090335\nvn 0.918787 0.382561 -0.097357\nvn 0.923880 0.382682 -0.000000\nvn 0.918787 0.382561 -0.097357\nvn 0.995888 -0.006897 -0.090335\nvn 0.995888 -0.006897 -0.090335\nvn 1.000000 0.000000 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.995888 -0.006897 -0.090335\nvn 0.917400 -0.392382 -0.066440\nvn 0.917400 -0.392382 -0.066440\nvn 0.923880 -0.382681 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.872883 -0.409142 -0.265854\nvn 0.917400 -0.392382 -0.066440\nvn 0.995888 -0.006897 -0.090335\nvn 0.995888 -0.006897 -0.090335\nvn 0.937513 -0.025697 -0.347001\nvn 0.872883 -0.409142 -0.265854\nvn 0.937513 -0.025697 -0.347001\nvn 0.819658 -0.043490 -0.571200\nvn 0.779946 -0.416097 -0.467491\nvn 0.779946 -0.416097 -0.467491\nvn 0.872883 -0.409142 -0.265854\nvn 0.937513 -0.025697 -0.347001\nvn 0.872883 -0.409142 -0.265854\nvn 0.779946 -0.416097 -0.467491\nvn 0.618322 -0.729809 -0.291643\nvn 0.618322 -0.729809 -0.291643\nvn 0.668883 -0.727754 -0.151557\nvn 0.872883 -0.409142 -0.265854\nvn 0.917400 -0.392382 -0.066440\nvn 0.872883 -0.409142 -0.265854\nvn 0.668883 -0.727754 -0.151557\nvn 0.668883 -0.727754 -0.151557\nvn 0.698247 -0.714910 -0.036806\nvn 0.917400 -0.392382 -0.066440\nvn 0.923880 -0.382681 0.000000\nvn 0.917400 -0.392382 -0.066440\nvn 0.698247 -0.714910 -0.036806\nvn 0.698247 -0.714910 -0.036806\nvn 0.707107 -0.707107 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.698247 -0.714910 -0.036806\nvn 0.374595 -0.927147 -0.008820\nvn 0.374595 -0.927147 -0.008820\nvn 0.382682 -0.923880 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.360433 -0.932181 -0.033571\nvn 0.374595 -0.927147 -0.008820\nvn 0.698247 -0.714910 -0.036806\nvn 0.698247 -0.714910 -0.036806\nvn 0.668883 -0.727754 -0.151557\nvn 0.360433 -0.932181 -0.033571\nvn 0.668883 -0.727754 -0.151557\nvn 0.618322 -0.729809 -0.291643\nvn 0.353782 -0.931883 -0.080205\nvn 0.353782 -0.931883 -0.080205\nvn 0.360433 -0.932181 -0.033571\nvn 0.668883 -0.727754 -0.151557\nvn 0.360433 -0.932181 -0.033571\nvn 0.353782 -0.931883 -0.080205\nvn 0.027101 -0.991206 0.129524\nvn 0.027101 -0.991206 0.129524\nvn -0.005493 -0.997370 0.072270\nvn 0.360433 -0.932181 -0.033571\nvn 0.374595 -0.927147 -0.008820\nvn 0.360433 -0.932181 -0.033571\nvn -0.005493 -0.997370 0.072270\nvn -0.005493 -0.997370 0.072270\nvn -0.005768 -0.999874 0.014771\nvn 0.374595 -0.927147 -0.008820\nvn 0.382682 -0.923880 0.000000\nvn 0.374595 -0.927147 -0.008820\nvn -0.005768 -0.999874 0.014771\nvn -0.005768 -0.999874 0.014771\nvn 0.000000 -1.000000 0.000000\nvn 0.382682 -0.923880 0.000000\nvn -0.385147 -0.922247 0.033510\nvn -0.382681 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn -0.005768 -0.999874 0.014771\nvn -0.385147 -0.922247 0.033510\nvn -0.382681 -0.923880 0.000000\nvn -0.385147 -0.922247 0.033510\nvn -0.707451 -0.705194 0.047060\nvn -0.684803 -0.695241 0.218369\nvn -0.707451 -0.705194 0.047060\nvn -0.385147 -0.922247 0.033510\nvn -0.385147 -0.922247 0.033510\nvn -0.371534 -0.914951 0.157568\nvn -0.684803 -0.695241 0.218369\nvn -0.371534 -0.914951 0.157568\nvn -0.385147 -0.922247 0.033510\nvn -0.005768 -0.999874 0.014771\nvn -0.005768 -0.999874 0.014771\nvn -0.005493 -0.997370 0.072270\nvn -0.371534 -0.914951 0.157568\nvn -0.598330 -0.673286 0.434381\nvn -0.684803 -0.695241 0.218369\nvn -0.371534 -0.914951 0.157568\nvn -0.371534 -0.914951 0.157568\nvn -0.307447 -0.900612 0.307203\nvn -0.598330 -0.673286 0.434381\nvn -0.707451 -0.705194 0.047060\nvn -0.707107 -0.707107 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.707451 -0.705194 0.047060\nvn -0.922819 -0.381342 0.054630\nvn -0.922819 -0.381342 0.054630\nvn -0.923880 -0.382682 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.894435 -0.370782 0.250016\nvn -0.922819 -0.381342 0.054630\nvn -0.707451 -0.705194 0.047060\nvn -0.707451 -0.705194 0.047060\nvn -0.684803 -0.695241 0.218369\nvn -0.894435 -0.370782 0.250016\nvn -0.684803 -0.695241 0.218369\nvn -0.598330 -0.673286 0.434381\nvn -0.796247 -0.344135 0.497555\nvn -0.796247 -0.344135 0.497555\nvn -0.894435 -0.370782 0.250016\nvn -0.684803 -0.695241 0.218369\nvn -0.894435 -0.370782 0.250016\nvn -0.796247 -0.344135 0.497555\nvn -0.870665 0.035188 0.490617\nvn -0.870665 0.035188 0.490617\nvn -0.968468 0.009033 0.248976\nvn -0.894435 -0.370782 0.250016\nvn -0.922819 -0.381342 0.054630\nvn -0.894435 -0.370782 0.250016\nvn -0.968468 0.009033 0.248976\nvn -0.968468 0.009033 0.248976\nvn -0.998471 0.000244 0.055271\nvn -0.922819 -0.381342 0.054630\nvn -0.923880 -0.382682 0.000000\nvn -0.922819 -0.381342 0.054630\nvn -0.998471 0.000244 0.055271\nvn -0.998471 0.000244 0.055271\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.998471 0.000244 0.055271\nvn -0.923194 0.381302 0.048189\nvn -0.923194 0.381302 0.048189\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.897406 0.385697 0.214242\nvn -0.923194 0.381302 0.048189\nvn -0.998471 0.000244 0.055271\nvn -0.998471 0.000244 0.055271\nvn -0.968468 0.009033 0.248976\nvn -0.897406 0.385697 0.214242\nvn -0.968468 0.009033 0.248976\nvn -0.870665 0.035188 0.490617\nvn -0.813970 0.406237 0.415240\nvn -0.813970 0.406237 0.415240\nvn -0.897406 0.385697 0.214242\nvn -0.968468 0.009033 0.248976\nvn -0.897406 0.385697 0.214242\nvn -0.813970 0.406237 0.415240\nvn -0.640052 0.716014 0.278672\nvn -0.640052 0.716014 0.278672\nvn -0.696025 0.702953 0.146310\nvn -0.897406 0.385697 0.214242\nvn -0.923194 0.381302 0.048189\nvn -0.897406 0.385697 0.214242\nvn -0.696025 0.702953 0.146310\nvn -0.696025 0.702953 0.146310\nvn -0.709601 0.703832 0.032961\nvn -0.923194 0.381302 0.048189\nvn -0.923880 0.382681 -0.000000\nvn -0.923194 0.381302 0.048189\nvn -0.709601 0.703832 0.032961\nvn -0.709601 0.703832 0.032961\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.709601 0.703832 0.032961\nvn -0.389853 0.920825 0.009766\nvn -0.389853 0.920825 0.009766\nvn -0.382682 0.923880 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.393760 0.917989 0.047427\nvn -0.389853 0.920825 0.009766\nvn -0.709601 0.703832 0.032961\nvn -0.709601 0.703832 0.032961\nvn -0.696025 0.702953 0.146310\nvn -0.393760 0.917989 0.047427\nvn -0.696025 0.702953 0.146310\nvn -0.640052 0.716014 0.278672\nvn -0.373922 0.922842 0.092443\nvn -0.373922 0.922842 0.092443\nvn -0.393760 0.917989 0.047427\nvn -0.696025 0.702953 0.146310\nvn -0.393760 0.917989 0.047427\nvn -0.373922 0.922842 0.092443\nvn -0.050784 0.990809 -0.125373\nvn -0.050784 0.990809 -0.125373\nvn -0.032534 0.996758 -0.073582\nvn -0.393760 0.917989 0.047427\nvn -0.389853 0.920825 0.009766\nvn -0.393760 0.917989 0.047427\nvn -0.032534 0.996758 -0.073582\nvn -0.032534 0.996758 -0.073582\nvn -0.012086 0.999723 -0.020204\nvn -0.389853 0.920825 0.009766\nvn -0.382682 0.923880 -0.000000\nvn -0.389853 0.920825 0.009766\nvn -0.012086 0.999723 -0.020204\nvn -0.012086 0.999723 -0.020204\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.005493 -0.997370 0.072270\nvn 0.027101 -0.991206 0.129524\nvn -0.307447 -0.900612 0.307203\nvn -0.307447 -0.900612 0.307203\nvn -0.371534 -0.914951 0.157568\nvn -0.005493 -0.997370 0.072270\nvn 0.386338 0.922342 -0.005341\nvn 0.022034 0.996893 0.075625\nvn 0.076695 0.981778 0.173869\nvn 0.076695 0.981778 0.173869\nvn 0.418691 0.906965 0.045962\nvn 0.386338 0.922342 -0.005341\nvn 0.457998 0.881815 0.112432\nvn 0.418691 0.906965 0.045962\nvn 0.076695 0.981778 0.173869\nvn 0.076695 0.981778 0.173869\nvn 0.134710 0.953898 0.268200\nvn 0.457998 0.881815 0.112432\nvn 0.498532 0.852221 0.158700\nvn 0.457998 0.881815 0.112432\nvn 0.134710 0.953898 0.268200\nvn 0.134710 0.953898 0.268200\nvn 0.184610 0.924548 0.333361\nvn 0.498532 0.852221 0.158700\nvn 0.457998 0.881815 0.112432\nvn 0.498532 0.852221 0.158700\nvn 0.758845 0.649676 -0.045566\nvn 0.758845 0.649676 -0.045566\nvn 0.732917 0.677342 -0.063571\nvn 0.457998 0.881815 0.112432\nvn 0.418691 0.906965 0.045962\nvn 0.457998 0.881815 0.112432\nvn 0.732917 0.677342 -0.063571\nvn 0.732917 0.677342 -0.063571\nvn 0.708872 0.699473 -0.090765\nvn 0.418691 0.906965 0.045962\nvn 0.386338 0.922342 -0.005341\nvn 0.418691 0.906965 0.045962\nvn 0.708872 0.699473 -0.090765\nvn 0.708872 0.699473 -0.090765\nvn 0.695441 0.713142 -0.088262\nvn 0.386338 0.922342 -0.005341\nvn 0.695441 0.713142 -0.088262\nvn 0.708872 0.699473 -0.090765\nvn 0.901930 0.369983 -0.222789\nvn 0.901930 0.369983 -0.222789\nvn 0.908581 0.383746 -0.164986\nvn 0.695441 0.713142 -0.088262\nvn 0.903558 0.351096 -0.245590\nvn 0.901930 0.369983 -0.222789\nvn 0.708872 0.699473 -0.090765\nvn 0.708872 0.699473 -0.090765\nvn 0.732917 0.677342 -0.063571\nvn 0.903558 0.351096 -0.245590\nvn 0.907332 0.328569 -0.262281\nvn 0.903558 0.351096 -0.245590\nvn 0.732917 0.677342 -0.063571\nvn 0.732917 0.677342 -0.063571\nvn 0.758845 0.649676 -0.045566\nvn 0.907332 0.328569 -0.262281\nvn 0.903558 0.351096 -0.245590\nvn 0.907332 0.328569 -0.262281\nvn 0.888699 -0.056339 -0.455016\nvn 0.888699 -0.056339 -0.455016\nvn 0.913730 -0.043611 -0.403976\nvn 0.903558 0.351096 -0.245590\nvn 0.901930 0.369983 -0.222789\nvn 0.903558 0.351096 -0.245590\nvn 0.913730 -0.043611 -0.403976\nvn 0.913730 -0.043611 -0.403976\nvn 0.943631 -0.028230 -0.329793\nvn 0.901930 0.369983 -0.222789\nvn 0.908581 0.383746 -0.164986\nvn 0.901930 0.369983 -0.222789\nvn 0.943631 -0.028230 -0.329793\nvn 0.943631 -0.028230 -0.329793\nvn 0.976271 -0.012390 -0.216196\nvn 0.908581 0.383746 -0.164986\nvn 0.976271 -0.012390 -0.216196\nvn 0.943631 -0.028230 -0.329793\nvn 0.822215 -0.415304 -0.389210\nvn 0.822215 -0.415304 -0.389210\nvn 0.885159 -0.403072 -0.232437\nvn 0.976271 -0.012390 -0.216196\nvn 0.756701 -0.418606 -0.502168\nvn 0.822215 -0.415304 -0.389210\nvn 0.943631 -0.028230 -0.329793\nvn 0.943631 -0.028230 -0.329793\nvn 0.913730 -0.043611 -0.403976\nvn 0.756701 -0.418606 -0.502168\nvn 0.702579 -0.414876 -0.578153\nvn 0.756701 -0.418606 -0.502168\nvn 0.913730 -0.043611 -0.403976\nvn 0.913730 -0.043611 -0.403976\nvn 0.888699 -0.056339 -0.455016\nvn 0.702579 -0.414876 -0.578153\nvn 0.756701 -0.418606 -0.502168\nvn 0.702579 -0.414876 -0.578153\nvn 0.415677 -0.676222 -0.608224\nvn 0.415677 -0.676222 -0.608224\nvn 0.487480 -0.701143 -0.520348\nvn 0.756701 -0.418606 -0.502168\nvn 0.822215 -0.415304 -0.389210\nvn 0.756701 -0.418606 -0.502168\nvn 0.487480 -0.701143 -0.520348\nvn 0.487480 -0.701143 -0.520348\nvn 0.574991 -0.720325 -0.387966\nvn 0.822215 -0.415304 -0.389210\nvn 0.885159 -0.403072 -0.232437\nvn 0.822215 -0.415304 -0.389210\nvn 0.574991 -0.720325 -0.387966\nvn 0.574991 -0.720325 -0.387966\nvn 0.657789 -0.722459 -0.212996\nvn 0.885159 -0.403072 -0.232437\nvn 0.657789 -0.722459 -0.212996\nvn 0.574991 -0.720325 -0.387966\nvn 0.259775 -0.908539 -0.327221\nvn 0.259775 -0.908539 -0.327221\nvn 0.339469 -0.926175 -0.164195\nvn 0.657789 -0.722459 -0.212996\nvn 0.174726 -0.869964 -0.461122\nvn 0.259775 -0.908539 -0.327221\nvn 0.574991 -0.720325 -0.387966\nvn 0.574991 -0.720325 -0.387966\nvn 0.487480 -0.701143 -0.520348\nvn 0.174726 -0.869964 -0.461122\nvn 0.101323 -0.828439 -0.550838\nvn 0.174726 -0.869964 -0.461122\nvn 0.487480 -0.701143 -0.520348\nvn 0.487480 -0.701143 -0.520348\nvn 0.415677 -0.676222 -0.608224\nvn 0.101323 -0.828439 -0.550838\nvn 0.174726 -0.869964 -0.461122\nvn 0.101323 -0.828439 -0.550838\nvn -0.207897 -0.884573 -0.417505\nvn -0.207897 -0.884573 -0.417505\nvn -0.145332 -0.931170 -0.334368\nvn 0.174726 -0.869964 -0.461122\nvn 0.259775 -0.908539 -0.327221\nvn 0.174726 -0.869964 -0.461122\nvn -0.145332 -0.931170 -0.334368\nvn -0.145332 -0.931170 -0.334368\nvn -0.081303 -0.972986 -0.216077\nvn 0.259775 -0.908539 -0.327221\nvn 0.339469 -0.926175 -0.164195\nvn 0.259775 -0.908539 -0.327221\nvn -0.081303 -0.972986 -0.216077\nvn -0.081303 -0.972986 -0.216077\nvn -0.024567 -0.995211 -0.094608\nvn 0.339469 -0.926175 -0.164195\nvn 0.917651 -0.387288 -0.089024\nvn 0.885159 -0.403072 -0.232437\nvn 0.657789 -0.722459 -0.212996\nvn 0.885159 -0.403072 -0.232437\nvn 0.917651 -0.387288 -0.089024\nvn 0.995385 -0.001404 -0.095952\nvn 0.999006 -0.002197 -0.044527\nvn 0.995385 -0.001404 -0.095952\nvn 0.917651 -0.387288 -0.089024\nvn 0.995385 -0.001404 -0.095952\nvn 0.999006 -0.002197 -0.044527\nvn 0.922225 0.383960 -0.045565\nvn 0.922225 0.383960 -0.045565\nvn 0.918511 0.386406 -0.083837\nvn 0.995385 -0.001404 -0.095952\nvn 0.918511 0.386406 -0.083837\nvn 0.922225 0.383960 -0.045565\nvn 0.702279 0.711221 -0.031130\nvn 0.702279 0.711221 -0.031130\nvn 0.699227 0.713022 -0.051791\nvn 0.918511 0.386406 -0.083837\nvn 0.699227 0.713022 -0.051791\nvn 0.702279 0.711221 -0.031130\nvn 0.377887 0.925766 -0.012574\nvn 0.377887 0.925766 -0.012574\nvn 0.379169 0.925217 -0.014314\nvn 0.699227 0.713022 -0.051791\nvn 0.001404 0.999813 0.019288\nvn 0.379169 0.925217 -0.014314\nvn 0.377887 0.925766 -0.012574\nvn 0.377887 0.925766 -0.012574\nvn -0.005127 0.999983 0.002808\nvn 0.001404 0.999813 0.019288\nvn 0.379169 0.925217 -0.014314\nvn 0.001404 0.999813 0.019288\nvn 0.022034 0.996893 0.075625\nvn 0.022034 0.996893 0.075625\nvn 0.386338 0.922342 -0.005341\nvn 0.379169 0.925217 -0.014314\nvn 0.695441 0.713142 -0.088262\nvn 0.699227 0.713022 -0.051791\nvn 0.379169 0.925217 -0.014314\nvn 0.379169 0.925217 -0.014314\nvn 0.386338 0.922342 -0.005341\nvn 0.695441 0.713142 -0.088262\nvn 0.699227 0.713022 -0.051791\nvn 0.695441 0.713142 -0.088262\nvn 0.908581 0.383746 -0.164986\nvn 0.908581 0.383746 -0.164986\nvn 0.918511 0.386406 -0.083837\nvn 0.699227 0.713022 -0.051791\nvn 0.976271 -0.012390 -0.216196\nvn 0.995385 -0.001404 -0.095952\nvn 0.918511 0.386406 -0.083837\nvn 0.918511 0.386406 -0.083837\nvn 0.908581 0.383746 -0.164986\nvn 0.976271 -0.012390 -0.216196\nvn 0.917651 -0.387288 -0.089024\nvn 0.921735 -0.386370 -0.033510\nvn 0.999006 -0.002197 -0.044527\nvn 0.995385 -0.001404 -0.095952\nvn 0.976271 -0.012390 -0.216196\nvn 0.885159 -0.403072 -0.232437\nvn 0.022034 0.996893 0.075625\nvn 0.001404 0.999813 0.019288\nvn -0.372060 0.927204 0.043185\nvn -0.372060 0.927204 0.043185\nvn -0.335281 0.931285 0.142462\nvn 0.022034 0.996893 0.075625\nvn 0.076695 0.981778 0.173869\nvn 0.022034 0.996893 0.075625\nvn -0.335281 0.931285 0.142462\nvn -0.335281 0.931285 0.142462\nvn -0.263593 0.923201 0.279676\nvn 0.076695 0.981778 0.173869\nvn -0.263593 0.923201 0.279676\nvn -0.335281 0.931285 0.142462\nvn -0.653361 0.732955 0.189465\nvn -0.653361 0.732955 0.189465\nvn -0.572757 0.737836 0.357138\nvn -0.263593 0.923201 0.279676\nvn -0.572757 0.737836 0.357138\nvn -0.653361 0.732955 0.189465\nvn -0.883160 0.419301 0.210276\nvn -0.883160 0.419301 0.210276\nvn -0.811047 0.436576 0.389363\nvn -0.572757 0.737836 0.357138\nvn -0.811047 0.436576 0.389363\nvn -0.883160 0.419301 0.210276\nvn -0.979816 0.029756 0.197672\nvn -0.979816 0.029756 0.197672\nvn -0.932049 0.050173 0.358842\nvn -0.811047 0.436576 0.389363\nvn -0.932049 0.050173 0.358842\nvn -0.979816 0.029756 0.197672\nvn -0.916668 -0.370592 0.149604\nvn -0.916668 -0.370592 0.149604\nvn -0.897901 -0.356768 0.257856\nvn -0.932049 0.050173 0.358842\nvn -0.897901 -0.356768 0.257856\nvn -0.916668 -0.370592 0.149604\nvn -0.704898 -0.705356 0.074772\nvn -0.704898 -0.705356 0.074772\nvn -0.710830 -0.695631 0.104011\nvn -0.897901 -0.356768 0.257856\nvn -0.710830 -0.695631 0.104011\nvn -0.704898 -0.705356 0.074772\nvn -0.388659 -0.921308 -0.011628\nvn -0.388659 -0.921308 -0.011628\nvn -0.418352 -0.905892 -0.065890\nvn -0.710830 -0.695631 0.104011\nvn -0.418352 -0.905892 -0.065890\nvn -0.388659 -0.921308 -0.011628\nvn -0.024567 -0.995211 -0.094608\nvn -0.024567 -0.995211 -0.094608\nvn -0.081303 -0.972986 -0.216077\nvn -0.418352 -0.905892 -0.065890\nvn -0.726786 -0.682258 0.079411\nvn -0.710830 -0.695631 0.104011\nvn -0.418352 -0.905892 -0.065890\nvn -0.418352 -0.905892 -0.065890\nvn -0.457275 -0.876951 -0.147837\nvn -0.726786 -0.682258 0.079411\nvn -0.457275 -0.876951 -0.147837\nvn -0.418352 -0.905892 -0.065890\nvn -0.081303 -0.972986 -0.216077\nvn -0.081303 -0.972986 -0.216077\nvn -0.145332 -0.931170 -0.334368\nvn -0.457275 -0.876951 -0.147837\nvn -0.503419 -0.837456 -0.212690\nvn -0.457275 -0.876951 -0.147837\nvn -0.145332 -0.931170 -0.334368\nvn -0.145332 -0.931170 -0.334368\nvn -0.207897 -0.884573 -0.417505\nvn -0.503419 -0.837456 -0.212690\nvn -0.457275 -0.876951 -0.147837\nvn -0.503419 -0.837456 -0.212690\nvn -0.753617 -0.655589 0.047580\nvn -0.753617 -0.655589 0.047580\nvn -0.726786 -0.682258 0.079411\nvn -0.457275 -0.876951 -0.147837\nvn -0.888231 -0.349873 0.297715\nvn -0.897901 -0.356768 0.257856\nvn -0.710830 -0.695631 0.104011\nvn -0.710830 -0.695631 0.104011\nvn -0.726786 -0.682258 0.079411\nvn -0.888231 -0.349873 0.297715\nvn -0.890914 -0.335070 0.306595\nvn -0.888231 -0.349873 0.297715\nvn -0.726786 -0.682258 0.079411\nvn -0.726786 -0.682258 0.079411\nvn -0.753617 -0.655589 0.047580\nvn -0.890914 -0.335070 0.306595\nvn -0.888231 -0.349873 0.297715\nvn -0.890914 -0.335070 0.306595\nvn -0.868208 0.058322 0.492762\nvn -0.868208 0.058322 0.492762\nvn -0.891924 0.054599 0.448877\nvn -0.888231 -0.349873 0.297715\nvn -0.897901 -0.356768 0.257856\nvn -0.888231 -0.349873 0.297715\nvn -0.891924 0.054599 0.448877\nvn -0.891924 0.054599 0.448877\nvn -0.932049 0.050173 0.358842\nvn -0.897901 -0.356768 0.257856\nvn -0.932049 0.050173 0.358842\nvn -0.891924 0.054599 0.448877\nvn -0.746114 0.433379 0.505467\nvn -0.746114 0.433379 0.505467\nvn -0.811047 0.436576 0.389363\nvn -0.932049 0.050173 0.358842\nvn -0.702245 0.425161 0.571043\nvn -0.746114 0.433379 0.505467\nvn -0.891924 0.054599 0.448877\nvn -0.891924 0.054599 0.448877\nvn -0.868208 0.058322 0.492762\nvn -0.702245 0.425161 0.571043\nvn -0.746114 0.433379 0.505467\nvn -0.702245 0.425161 0.571043\nvn -0.444997 0.703430 0.554223\nvn -0.444997 0.703430 0.554223\nvn -0.498374 0.722504 0.479177\nvn -0.746114 0.433379 0.505467\nvn -0.811047 0.436576 0.389363\nvn -0.746114 0.433379 0.505467\nvn -0.498374 0.722504 0.479177\nvn -0.498374 0.722504 0.479177\nvn -0.572757 0.737836 0.357138\nvn -0.811047 0.436576 0.389363\nvn -0.572757 0.737836 0.357138\nvn -0.498374 0.722504 0.479177\nvn -0.193978 0.898382 0.394059\nvn -0.193978 0.898382 0.394059\nvn -0.263593 0.923201 0.279676\nvn -0.572757 0.737836 0.357138\nvn -0.139533 0.872262 0.468710\nvn -0.193978 0.898382 0.394059\nvn -0.498374 0.722504 0.479177\nvn -0.498374 0.722504 0.479177\nvn -0.444997 0.703430 0.554223\nvn -0.139533 0.872262 0.468710\nvn -0.193978 0.898382 0.394059\nvn -0.139533 0.872262 0.468710\nvn 0.184610 0.924548 0.333361\nvn 0.184610 0.924548 0.333361\nvn 0.134710 0.953898 0.268200\nvn -0.193978 0.898382 0.394059\nvn -0.263593 0.923201 0.279676\nvn -0.193978 0.898382 0.394059\nvn 0.134710 0.953898 0.268200\nvn 0.134710 0.953898 0.268200\nvn 0.076695 0.981778 0.173869\nvn -0.263593 0.923201 0.279676\nvn -0.656556 0.409809 0.633239\nvn -0.702245 0.425161 0.571043\nvn -0.868208 0.058322 0.492762\nvn -0.868208 0.058322 0.492762\nvn -0.838914 0.059940 0.540954\nvn -0.656556 0.409809 0.633239\nvn -0.838914 0.059940 0.540954\nvn -0.868208 0.058322 0.492762\nvn -0.890914 -0.335070 0.306595\nvn -0.890914 -0.335070 0.306595\nvn -0.888811 -0.315172 0.332690\nvn -0.838914 0.059940 0.540954\nvn -0.888811 -0.315172 0.332690\nvn -0.890914 -0.335070 0.306595\nvn -0.753617 -0.655589 0.047580\nvn -0.753617 -0.655589 0.047580\nvn -0.781713 -0.622038 0.044649\nvn -0.888811 -0.315172 0.332690\nvn -0.781713 -0.622038 0.044649\nvn -0.753617 -0.655589 0.047580\nvn -0.503419 -0.837456 -0.212690\nvn -0.503419 -0.837456 -0.212690\nvn -0.554290 -0.795210 -0.245771\nvn -0.781713 -0.622038 0.044649\nvn -0.796402 -0.599919 0.076421\nvn -0.781713 -0.622038 0.044649\nvn -0.554290 -0.795210 -0.245771\nvn -0.554290 -0.795210 -0.245771\nvn -0.594603 -0.765633 -0.245465\nvn -0.796402 -0.599919 0.076421\nvn -0.795280 -0.594614 0.118172\nvn -0.796402 -0.599919 0.076421\nvn -0.594603 -0.765633 -0.245465\nvn -0.594603 -0.765633 -0.245465\nvn -0.619148 -0.751267 -0.228591\nvn -0.795280 -0.594614 0.118172\nvn -0.781028 -0.606945 0.147013\nvn -0.795280 -0.594614 0.118172\nvn -0.619148 -0.751267 -0.228591\nvn -0.619148 -0.751267 -0.228591\nvn -0.625517 -0.749913 -0.215311\nvn -0.781028 -0.606945 0.147013\nvn -0.761883 -0.633092 0.136849\nvn -0.781028 -0.606945 0.147013\nvn -0.625517 -0.749913 -0.215311\nvn -0.625517 -0.749913 -0.215311\nvn -0.610163 -0.760164 -0.223276\nvn -0.761883 -0.633092 0.136849\nvn -0.744862 -0.658553 0.107185\nvn -0.761883 -0.633092 0.136849\nvn -0.610163 -0.760164 -0.223276\nvn -0.610163 -0.760164 -0.223276\nvn -0.578593 -0.781184 -0.234483\nvn -0.744862 -0.658553 0.107185\nvn -0.725800 -0.683196 0.080356\nvn -0.744862 -0.658553 0.107185\nvn -0.578593 -0.781184 -0.234483\nvn -0.578593 -0.781184 -0.234483\nvn -0.527822 -0.817262 -0.231271\nvn -0.725800 -0.683196 0.080356\nvn -0.702638 -0.707552 0.075290\nvn -0.725800 -0.683196 0.080356\nvn -0.527822 -0.817262 -0.231271\nvn -0.527822 -0.817262 -0.231271\nvn -0.450685 -0.875215 -0.175733\nvn -0.702638 -0.707552 0.075290\nvn -0.781028 -0.606945 0.147013\nvn -0.761883 -0.633092 0.136849\nvn -0.789005 -0.397326 0.468618\nvn -0.789005 -0.397326 0.468618\nvn -0.806323 -0.352194 0.475187\nvn -0.781028 -0.606945 0.147013\nvn -0.795280 -0.594614 0.118172\nvn -0.781028 -0.606945 0.147013\nvn -0.806323 -0.352194 0.475187\nvn -0.791402 -0.430600 0.433896\nvn -0.789005 -0.397326 0.468618\nvn -0.761883 -0.633092 0.136849\nvn -0.761883 -0.633092 0.136849\nvn -0.744862 -0.658553 0.107185\nvn -0.791402 -0.430600 0.433896\nvn -0.804801 -0.445311 0.392421\nvn -0.791402 -0.430600 0.433896\nvn -0.744862 -0.658553 0.107185\nvn -0.744862 -0.658553 0.107185\nvn -0.725800 -0.683196 0.080356\nvn -0.804801 -0.445311 0.392421\nvn -0.834849 -0.432150 0.340990\nvn -0.804801 -0.445311 0.392421\nvn -0.725800 -0.683196 0.080356\nvn -0.725800 -0.683196 0.080356\nvn -0.702638 -0.707552 0.075290\nvn -0.834849 -0.432150 0.340990\nvn -0.804801 -0.445311 0.392421\nvn -0.834849 -0.432150 0.340990\nvn -0.820840 -0.100805 0.562192\nvn -0.820840 -0.100805 0.562192\nvn -0.750462 -0.144752 0.644867\nvn -0.804801 -0.445311 0.392421\nvn -0.791402 -0.430600 0.433896\nvn -0.804801 -0.445311 0.392421\nvn -0.750462 -0.144752 0.644867\nvn -0.750462 -0.144752 0.644867\nvn -0.712413 -0.139657 0.687723\nvn -0.791402 -0.430600 0.433896\nvn -0.789005 -0.397326 0.468618\nvn -0.791402 -0.430600 0.433896\nvn -0.712413 -0.139657 0.687723\nvn -0.712413 -0.139657 0.687723\nvn -0.693333 -0.103124 0.713201\nvn -0.789005 -0.397326 0.468618\nvn -0.806323 -0.352194 0.475187\nvn -0.789005 -0.397326 0.468618\nvn -0.693333 -0.103124 0.713201\nvn -0.693333 -0.103124 0.713201\nvn -0.705546 -0.044192 0.707285\nvn -0.806323 -0.352194 0.475187\nvn -0.705546 -0.044192 0.707285\nvn -0.693333 -0.103124 0.713201\nvn -0.498679 0.197701 0.843939\nvn -0.498679 0.197701 0.843939\nvn -0.508169 0.258830 0.821445\nvn -0.705546 -0.044192 0.707285\nvn -0.525989 0.166754 0.833984\nvn -0.498679 0.197701 0.843939\nvn -0.693333 -0.103124 0.713201\nvn -0.693333 -0.103124 0.713201\nvn -0.712413 -0.139657 0.687723\nvn -0.525989 0.166754 0.833984\nvn -0.579355 0.172161 0.796686\nvn -0.525989 0.166754 0.833984\nvn -0.712413 -0.139657 0.687723\nvn -0.712413 -0.139657 0.687723\nvn -0.750462 -0.144752 0.644867\nvn -0.579355 0.172161 0.796686\nvn -0.678441 0.237439 0.695227\nvn -0.579355 0.172161 0.796686\nvn -0.750462 -0.144752 0.644867\nvn -0.750462 -0.144752 0.644867\nvn -0.820840 -0.100805 0.562192\nvn -0.678441 0.237439 0.695227\nvn -0.579355 0.172161 0.796686\nvn -0.678441 0.237439 0.695227\nvn -0.448576 0.533694 0.716903\nvn -0.448576 0.533694 0.716903\nvn -0.330466 0.455565 0.826591\nvn -0.579355 0.172161 0.796686\nvn -0.525989 0.166754 0.833984\nvn -0.579355 0.172161 0.796686\nvn -0.330466 0.455565 0.826591\nvn -0.330466 0.455565 0.826591\nvn -0.267714 0.440422 0.856947\nvn -0.525989 0.166754 0.833984\nvn -0.498679 0.197701 0.843939\nvn -0.525989 0.166754 0.833984\nvn -0.267714 0.440422 0.856947\nvn -0.267714 0.440422 0.856947\nvn -0.238296 0.461148 0.854727\nvn -0.498679 0.197701 0.843939\nvn -0.508169 0.258830 0.821445\nvn -0.498679 0.197701 0.843939\nvn -0.238296 0.461148 0.854727\nvn -0.238296 0.461148 0.854727\nvn -0.247239 0.515535 0.820425\nvn -0.508169 0.258830 0.821445\nvn -0.247239 0.515535 0.820425\nvn -0.238296 0.461148 0.854727\nvn 0.056644 0.658885 0.750108\nvn 0.056644 0.658885 0.750108\nvn 0.049838 0.699775 0.712623\nvn -0.247239 0.515535 0.820425\nvn 0.026124 0.649941 0.759536\nvn 0.056644 0.658885 0.750108\nvn -0.238296 0.461148 0.854727\nvn -0.238296 0.461148 0.854727\nvn -0.267714 0.440422 0.856947\nvn 0.026124 0.649941 0.759536\nvn -0.041414 0.674589 0.737031\nvn 0.026124 0.649941 0.759536\nvn -0.267714 0.440422 0.856947\nvn -0.267714 0.440422 0.856947\nvn -0.330466 0.455565 0.826591\nvn -0.041414 0.674589 0.737031\nvn -0.164438 0.759839 0.628972\nvn -0.041414 0.674589 0.737031\nvn -0.330466 0.455565 0.826591\nvn -0.330466 0.455565 0.826591\nvn -0.448576 0.533694 0.716903\nvn -0.164438 0.759839 0.628972\nvn -0.041414 0.674589 0.737031\nvn -0.164438 0.759839 0.628972\nvn 0.152139 0.883171 0.443691\nvn 0.152139 0.883171 0.443691\nvn 0.258650 0.802777 0.537260\nvn -0.041414 0.674589 0.737031\nvn 0.026124 0.649941 0.759536\nvn -0.041414 0.674589 0.737031\nvn 0.258650 0.802777 0.537260\nvn 0.258650 0.802777 0.537260\nvn 0.152139 0.883171 0.443691\nvn 0.457820 0.867420 0.194896\nvn 0.457820 0.867420 0.194896\nvn 0.527890 0.810773 0.252943\nvn 0.258650 0.802777 0.537260\nvn 0.322316 0.770556 0.549869\nvn 0.258650 0.802777 0.537260\nvn 0.527890 0.810773 0.252943\nvn 0.258650 0.802777 0.537260\nvn 0.322316 0.770556 0.549869\nvn 0.026124 0.649941 0.759536\nvn 0.056644 0.658885 0.750108\nvn 0.026124 0.649941 0.759536\nvn 0.322316 0.770556 0.549869\nvn 0.527890 0.810773 0.252943\nvn 0.576814 0.777783 0.249678\nvn 0.322316 0.770556 0.549869\nvn 0.353475 0.766860 0.535706\nvn 0.322316 0.770556 0.549869\nvn 0.576814 0.777783 0.249678\nvn 0.322316 0.770556 0.549869\nvn 0.353475 0.766860 0.535706\nvn 0.056644 0.658885 0.750108\nvn 0.049838 0.699775 0.712623\nvn 0.056644 0.658885 0.750108\nvn 0.353475 0.766860 0.535706\nvn 0.576814 0.777783 0.249678\nvn 0.606390 0.761703 0.228254\nvn 0.353475 0.766860 0.535706\nvn 0.352251 0.788613 0.503992\nvn 0.353475 0.766860 0.535706\nvn 0.606390 0.761703 0.228254\nvn 0.353475 0.766860 0.535706\nvn 0.352251 0.788613 0.503992\nvn 0.049838 0.699775 0.712623\nvn 0.606390 0.761703 0.228254\nvn 0.615298 0.760570 0.207225\nvn 0.352251 0.788613 0.503992\nvn 0.527890 0.810773 0.252943\nvn 0.457820 0.867420 0.194896\nvn 0.708805 0.701664 -0.072544\nvn 0.708805 0.701664 -0.072544\nvn 0.725264 0.684612 -0.072789\nvn 0.527890 0.810773 0.252943\nvn 0.576814 0.777783 0.249678\nvn 0.527890 0.810773 0.252943\nvn 0.725264 0.684612 -0.072789\nvn 0.725264 0.684612 -0.072789\nvn 0.745137 0.659347 -0.100166\nvn 0.576814 0.777783 0.249678\nvn 0.606390 0.761703 0.228254\nvn 0.576814 0.777783 0.249678\nvn 0.745137 0.659347 -0.100166\nvn 0.745137 0.659347 -0.100166\nvn 0.763606 0.631888 -0.132756\nvn 0.606390 0.761703 0.228254\nvn 0.615298 0.760570 0.207225\nvn 0.606390 0.761703 0.228254\nvn 0.763606 0.631888 -0.132756\nvn 0.763606 0.631888 -0.132756\nvn 0.782116 0.606326 -0.143746\nvn 0.615298 0.760570 0.207225\nvn 0.782116 0.606326 -0.143746\nvn 0.763606 0.631888 -0.132756\nvn 0.785279 0.395341 -0.476490\nvn 0.785279 0.395341 -0.476490\nvn 0.804344 0.347771 -0.481752\nvn 0.782116 0.606326 -0.143746\nvn 0.791691 0.429646 -0.434315\nvn 0.785279 0.395341 -0.476490\nvn 0.763606 0.631888 -0.132756\nvn 0.763606 0.631888 -0.132756\nvn 0.745137 0.659347 -0.100166\nvn 0.791691 0.429646 -0.434315\nvn 0.813716 0.440033 -0.379787\nvn 0.791691 0.429646 -0.434315\nvn 0.745137 0.659347 -0.100166\nvn 0.745137 0.659347 -0.100166\nvn 0.725264 0.684612 -0.072789\nvn 0.813716 0.440033 -0.379787\nvn 0.857442 0.411584 -0.308856\nvn 0.813716 0.440033 -0.379787\nvn 0.725264 0.684612 -0.072789\nvn 0.725264 0.684612 -0.072789\nvn 0.708805 0.701664 -0.072544\nvn 0.857442 0.411584 -0.308856\nvn 0.813716 0.440033 -0.379787\nvn 0.857442 0.411584 -0.308856\nvn 0.874478 0.049686 -0.482515\nvn 0.874478 0.049686 -0.482515\nvn 0.777393 0.120583 -0.617349\nvn 0.813716 0.440033 -0.379787\nvn 0.791691 0.429646 -0.434315\nvn 0.813716 0.440033 -0.379787\nvn 0.777393 0.120583 -0.617349\nvn 0.777393 0.120583 -0.617349\nvn 0.710943 0.132850 -0.690587\nvn 0.791691 0.429646 -0.434315\nvn 0.785279 0.395341 -0.476490\nvn 0.791691 0.429646 -0.434315\nvn 0.710943 0.132850 -0.690587\nvn 0.710943 0.132850 -0.690587\nvn 0.673448 0.103706 -0.731924\nvn 0.785279 0.395341 -0.476490\nvn 0.804344 0.347771 -0.481752\nvn 0.785279 0.395341 -0.476490\nvn 0.673448 0.103706 -0.731924\nvn 0.673448 0.103706 -0.731924\nvn 0.680958 0.044834 -0.730949\nvn 0.804344 0.347771 -0.481752\nvn 0.680958 0.044834 -0.730949\nvn 0.673448 0.103706 -0.731924\nvn 0.465844 -0.188547 -0.864546\nvn 0.465844 -0.188547 -0.864546\nvn 0.459104 -0.241989 -0.854789\nvn 0.680958 0.044834 -0.730949\nvn 0.524263 -0.177959 -0.832754\nvn 0.465844 -0.188547 -0.864546\nvn 0.673448 0.103706 -0.731924\nvn 0.673448 0.103706 -0.731924\nvn 0.710943 0.132850 -0.690587\nvn 0.524263 -0.177959 -0.832754\nvn 0.621099 -0.216565 -0.753217\nvn 0.524263 -0.177959 -0.832754\nvn 0.710943 0.132850 -0.690587\nvn 0.710943 0.132850 -0.690587\nvn 0.777393 0.120583 -0.617349\nvn 0.621099 -0.216565 -0.753217\nvn 0.753810 -0.315605 -0.576337\nvn 0.621099 -0.216565 -0.753217\nvn 0.777393 0.120583 -0.617349\nvn 0.777393 0.120583 -0.617349\nvn 0.874478 0.049686 -0.482515\nvn 0.753810 -0.315605 -0.576337\nvn 0.621099 -0.216565 -0.753217\nvn 0.753810 -0.315605 -0.576337\nvn 0.518239 -0.622674 -0.586265\nvn 0.518239 -0.622674 -0.586265\nvn 0.369958 -0.514040 -0.773883\nvn 0.621099 -0.216565 -0.753217\nvn 0.524263 -0.177959 -0.832754\nvn 0.621099 -0.216565 -0.753217\nvn 0.369958 -0.514040 -0.773883\nvn 0.369958 -0.514040 -0.773883\nvn 0.265184 -0.456083 -0.849509\nvn 0.524263 -0.177959 -0.832754\nvn 0.465844 -0.188547 -0.864546\nvn 0.524263 -0.177959 -0.832754\nvn 0.265184 -0.456083 -0.849509\nvn 0.265184 -0.456083 -0.849509\nvn 0.203928 -0.444785 -0.872112\nvn 0.465844 -0.188547 -0.864546\nvn 0.459104 -0.241989 -0.854789\nvn 0.465844 -0.188547 -0.864546\nvn 0.203928 -0.444785 -0.872112\nvn 0.203928 -0.444785 -0.872112\nvn 0.190166 -0.480009 -0.856404\nvn 0.459104 -0.241989 -0.854789\nvn 0.190166 -0.480009 -0.856404\nvn 0.203928 -0.444785 -0.872112\nvn -0.083592 -0.643164 -0.761152\nvn -0.083592 -0.643164 -0.761152\nvn -0.096531 -0.658387 -0.746464\nvn 0.190166 -0.480009 -0.856404\nvn -0.031343 -0.666421 -0.744917\nvn -0.083592 -0.643164 -0.761152\nvn 0.203928 -0.444785 -0.872112\nvn 0.203928 -0.444785 -0.872112\nvn 0.265184 -0.456083 -0.849509\nvn -0.031343 -0.666421 -0.744917\nvn 0.063816 -0.727519 -0.683113\nvn -0.031343 -0.666421 -0.744917\nvn 0.265184 -0.456083 -0.849509\nvn 0.265184 -0.456083 -0.849509\nvn 0.369958 -0.514040 -0.773883\nvn 0.063816 -0.727519 -0.683113\nvn 0.208169 -0.829838 -0.517721\nvn 0.063816 -0.727519 -0.683113\nvn 0.369958 -0.514040 -0.773883\nvn 0.369958 -0.514040 -0.773883\nvn 0.518239 -0.622674 -0.586265\nvn 0.208169 -0.829838 -0.517721\nvn 0.063816 -0.727519 -0.683113\nvn 0.208169 -0.829838 -0.517721\nvn -0.130166 -0.916502 -0.378259\nvn -0.130166 -0.916502 -0.378259\nvn -0.250376 -0.831883 -0.495260\nvn 0.063816 -0.727519 -0.683113\nvn -0.031343 -0.666421 -0.744917\nvn 0.063816 -0.727519 -0.683113\nvn -0.250376 -0.831883 -0.495260\nvn -0.250376 -0.831883 -0.495260\nvn -0.326679 -0.781388 -0.531709\nvn -0.031343 -0.666421 -0.744917\nvn -0.083592 -0.643164 -0.761152\nvn -0.031343 -0.666421 -0.744917\nvn -0.326679 -0.781388 -0.531709\nvn -0.326679 -0.781388 -0.531709\nvn -0.368309 -0.758074 -0.538212\nvn -0.083592 -0.643164 -0.761152\nvn -0.096531 -0.658387 -0.746464\nvn -0.083592 -0.643164 -0.761152\nvn -0.368309 -0.758074 -0.538212\nvn -0.368309 -0.758074 -0.538212\nvn -0.380146 -0.759042 -0.528530\nvn -0.096531 -0.658387 -0.746464\nvn -0.380146 -0.759042 -0.528530\nvn -0.368309 -0.758074 -0.538212\nvn -0.610163 -0.760164 -0.223276\nvn -0.610163 -0.760164 -0.223276\nvn -0.625517 -0.749913 -0.215311\nvn -0.380146 -0.759042 -0.528530\nvn -0.578593 -0.781184 -0.234483\nvn -0.610163 -0.760164 -0.223276\nvn -0.368309 -0.758074 -0.538212\nvn -0.368309 -0.758074 -0.538212\nvn -0.326679 -0.781388 -0.531709\nvn -0.578593 -0.781184 -0.234483\nvn -0.326679 -0.781388 -0.531709\nvn -0.250376 -0.831883 -0.495260\nvn -0.527822 -0.817262 -0.231271\nvn -0.527822 -0.817262 -0.231271\nvn -0.578593 -0.781184 -0.234483\nvn -0.326679 -0.781388 -0.531709\nvn -0.250376 -0.831883 -0.495260\nvn -0.130166 -0.916502 -0.378259\nvn -0.450685 -0.875215 -0.175733\nvn -0.450685 -0.875215 -0.175733\nvn -0.527822 -0.817262 -0.231271\nvn -0.250376 -0.831883 -0.495260\nvn -0.018922 -0.987057 -0.159250\nvn -0.130166 -0.916502 -0.378259\nvn 0.208169 -0.829838 -0.517721\nvn 0.208169 -0.829838 -0.517721\nvn 0.333787 -0.911696 -0.239575\nvn -0.018922 -0.987057 -0.159250\nvn 0.333787 -0.911696 -0.239575\nvn 0.208169 -0.829838 -0.517721\nvn 0.518239 -0.622674 -0.586265\nvn 0.518239 -0.622674 -0.586265\nvn 0.635900 -0.716776 -0.286118\nvn 0.333787 -0.911696 -0.239575\nvn 0.635900 -0.716776 -0.286118\nvn 0.518239 -0.622674 -0.586265\nvn 0.753810 -0.315605 -0.576337\nvn 0.753810 -0.315605 -0.576337\nvn 0.856555 -0.420068 -0.299761\nvn 0.635900 -0.716776 -0.286118\nvn 0.856555 -0.420068 -0.299761\nvn 0.753810 -0.315605 -0.576337\nvn 0.874478 0.049686 -0.482515\nvn 0.874478 0.049686 -0.482515\nvn 0.960107 -0.045748 -0.275864\nvn 0.856555 -0.420068 -0.299761\nvn 0.960107 -0.045748 -0.275864\nvn 0.874478 0.049686 -0.482515\nvn 0.857442 0.411584 -0.308856\nvn 0.857442 0.411584 -0.308856\nvn 0.911384 0.354904 -0.208383\nvn 0.960107 -0.045748 -0.275864\nvn 0.911384 0.354904 -0.208383\nvn 0.857442 0.411584 -0.308856\nvn 0.708805 0.701664 -0.072544\nvn 0.708805 0.701664 -0.072544\nvn 0.706490 0.701180 -0.096014\nvn 0.911384 0.354904 -0.208383\nvn 0.706490 0.701180 -0.096014\nvn 0.708805 0.701664 -0.072544\nvn 0.457820 0.867420 0.194896\nvn 0.457820 0.867420 0.194896\nvn 0.388752 0.919877 0.051943\nvn 0.706490 0.701180 -0.096014\nvn 0.388752 0.919877 0.051943\nvn 0.457820 0.867420 0.194896\nvn 0.152139 0.883171 0.443691\nvn 0.152139 0.883171 0.443691\nvn 0.031770 0.976954 0.211072\nvn 0.388752 0.919877 0.051943\nvn 0.375268 0.916654 -0.137552\nvn 0.388752 0.919877 0.051943\nvn 0.031770 0.976954 0.211072\nvn 0.031770 0.976954 0.211072\nvn -0.008423 0.991585 -0.129186\nvn 0.375268 0.916654 -0.137552\nvn 0.432946 0.854479 -0.287095\nvn 0.375268 0.916654 -0.137552\nvn -0.008423 0.991585 -0.129186\nvn -0.008423 0.991585 -0.129186\nvn 0.070713 0.902765 -0.424281\nvn 0.432946 0.854479 -0.287095\nvn 0.514217 0.783366 -0.349170\nvn 0.432946 0.854479 -0.287095\nvn 0.070713 0.902765 -0.424281\nvn 0.070713 0.902765 -0.424281\nvn 0.195751 0.794909 -0.574284\nvn 0.514217 0.783366 -0.349170\nvn 0.432946 0.854479 -0.287095\nvn 0.514217 0.783366 -0.349170\nvn 0.776434 0.626464 -0.068515\nvn 0.776434 0.626464 -0.068515\nvn 0.573155 0.792040 -0.210157\nvn 0.432946 0.854479 -0.287095\nvn 0.375268 0.916654 -0.137552\nvn 0.432946 0.854479 -0.287095\nvn 0.573155 0.792040 -0.210157\nvn 0.573155 0.792040 -0.210157\nvn 0.726688 0.677034 -0.116400\nvn 0.375268 0.916654 -0.137552\nvn 0.388752 0.919877 0.051943\nvn 0.375268 0.916654 -0.137552\nvn 0.726688 0.677034 -0.116400\nvn 0.726688 0.677034 -0.116400\nvn 0.706490 0.701180 -0.096014\nvn 0.388752 0.919877 0.051943\nvn 0.948492 0.307416 -0.076541\nvn 0.911384 0.354904 -0.208383\nvn 0.706490 0.701180 -0.096014\nvn 0.706490 0.701180 -0.096014\nvn 0.726688 0.677034 -0.116400\nvn 0.948492 0.307416 -0.076541\nvn 0.950283 0.302966 0.071934\nvn 0.948492 0.307416 -0.076541\nvn 0.726688 0.677034 -0.116400\nvn 0.726688 0.677034 -0.116400\nvn 0.869561 0.493531 -0.017091\nvn 0.950283 0.302966 0.071934\nvn 0.916238 0.345047 0.203592\nvn 0.950283 0.302966 0.071934\nvn 0.869561 0.493531 -0.017091\nvn 0.869561 0.493531 -0.017091\nvn 0.776434 0.626464 -0.068515\nvn 0.916238 0.345047 0.203592\nvn 0.950283 0.302966 0.071934\nvn 0.916238 0.345047 0.203592\nvn 0.908706 0.004853 0.417409\nvn 0.908706 0.004853 0.417409\nvn 0.974118 -0.080968 0.211042\nvn 0.950283 0.302966 0.071934\nvn 0.948492 0.307416 -0.076541\nvn 0.950283 0.302966 0.071934\nvn 0.974118 -0.080968 0.211042\nvn 0.974118 -0.080968 0.211042\nvn 0.994398 -0.100560 -0.032564\nvn 0.948492 0.307416 -0.076541\nvn 0.911384 0.354904 -0.208383\nvn 0.948492 0.307416 -0.076541\nvn 0.994398 -0.100560 -0.032564\nvn 0.994398 -0.100560 -0.032564\nvn 0.960107 -0.045748 -0.275864\nvn 0.911384 0.354904 -0.208383\nvn 0.960107 -0.045748 -0.275864\nvn 0.994398 -0.100560 -0.032564\nvn 0.886250 -0.463161 0.006501\nvn 0.886250 -0.463161 0.006501\nvn 0.856555 -0.420068 -0.299761\nvn 0.960107 -0.045748 -0.275864\nvn 0.852245 -0.428426 0.300216\nvn 0.886250 -0.463161 0.006501\nvn 0.994398 -0.100560 -0.032564\nvn 0.994398 -0.100560 -0.032564\nvn 0.974118 -0.080968 0.211042\nvn 0.852245 -0.428426 0.300216\nvn 0.767469 -0.325549 0.552277\nvn 0.852245 -0.428426 0.300216\nvn 0.974118 -0.080968 0.211042\nvn 0.974118 -0.080968 0.211042\nvn 0.908706 0.004853 0.417409\nvn 0.767469 -0.325549 0.552277\nvn 0.852245 -0.428426 0.300216\nvn 0.767469 -0.325549 0.552277\nvn 0.522461 -0.598882 0.606939\nvn 0.522461 -0.598882 0.606939\nvn 0.624846 -0.700289 0.345200\nvn 0.852245 -0.428426 0.300216\nvn 0.886250 -0.463161 0.006501\nvn 0.852245 -0.428426 0.300216\nvn 0.624846 -0.700289 0.345200\nvn 0.624846 -0.700289 0.345200\nvn 0.668940 -0.742276 0.039308\nvn 0.886250 -0.463161 0.006501\nvn 0.856555 -0.420068 -0.299761\nvn 0.886250 -0.463161 0.006501\nvn 0.668940 -0.742276 0.039308\nvn 0.668940 -0.742276 0.039308\nvn 0.635900 -0.716776 -0.286118\nvn 0.856555 -0.420068 -0.299761\nvn 0.635900 -0.716776 -0.286118\nvn 0.668940 -0.742276 0.039308\nvn 0.372423 -0.925578 0.067874\nvn 0.372423 -0.925578 0.067874\nvn 0.333787 -0.911696 -0.239575\nvn 0.635900 -0.716776 -0.286118\nvn 0.319358 -0.879669 0.352411\nvn 0.372423 -0.925578 0.067874\nvn 0.668940 -0.742276 0.039308\nvn 0.668940 -0.742276 0.039308\nvn 0.624846 -0.700289 0.345200\nvn 0.319358 -0.879669 0.352411\nvn 0.203930 -0.785140 0.584781\nvn 0.319358 -0.879669 0.352411\nvn 0.624846 -0.700289 0.345200\nvn 0.624846 -0.700289 0.345200\nvn 0.522461 -0.598882 0.606939\nvn 0.203930 -0.785140 0.584781\nvn 0.319358 -0.879669 0.352411\nvn 0.203930 -0.785140 0.584781\nvn -0.154185 -0.860563 0.485446\nvn -0.154185 -0.860563 0.485446\nvn -0.043550 -0.946234 0.320538\nvn 0.319358 -0.879669 0.352411\nvn 0.372423 -0.925578 0.067874\nvn 0.319358 -0.879669 0.352411\nvn -0.043550 -0.946234 0.320538\nvn -0.043550 -0.946234 0.320538\nvn 0.014741 -0.995452 0.094122\nvn 0.372423 -0.925578 0.067874\nvn 0.333787 -0.911696 -0.239575\nvn 0.372423 -0.925578 0.067874\nvn 0.014741 -0.995452 0.094122\nvn 0.014741 -0.995452 0.094122\nvn -0.018922 -0.987057 -0.159250\nvn 0.333787 -0.911696 -0.239575\nvn -0.018922 -0.987057 -0.159250\nvn 0.014741 -0.995452 0.094122\nvn -0.371392 -0.921019 0.117439\nvn -0.371392 -0.921019 0.117439\nvn -0.382624 -0.922943 -0.042147\nvn -0.018922 -0.987057 -0.159250\nvn 0.014741 -0.995452 0.094122\nvn -0.043550 -0.946234 0.320538\nvn -0.425714 -0.871662 0.242842\nvn -0.425714 -0.871662 0.242842\nvn -0.371392 -0.921019 0.117439\nvn 0.014741 -0.995452 0.094122\nvn -0.043550 -0.946234 0.320538\nvn -0.154185 -0.860563 0.485446\nvn -0.503692 -0.806598 0.309345\nvn -0.503692 -0.806598 0.309345\nvn -0.425714 -0.871662 0.242842\nvn -0.043550 -0.946234 0.320538\nvn -0.262102 -0.766255 0.586648\nvn -0.154185 -0.860563 0.485446\nvn 0.203930 -0.785140 0.584781\nvn 0.203930 -0.785140 0.584781\nvn 0.076237 -0.666414 0.741674\nvn -0.262102 -0.766255 0.586648\nvn 0.076237 -0.666414 0.741674\nvn 0.203930 -0.785140 0.584781\nvn 0.522461 -0.598882 0.606939\nvn 0.522461 -0.598882 0.606939\nvn 0.397304 -0.467010 0.789969\nvn 0.076237 -0.666414 0.741674\nvn 0.397304 -0.467010 0.789969\nvn 0.522461 -0.598882 0.606939\nvn 0.767469 -0.325549 0.552277\nvn 0.767469 -0.325549 0.552277\nvn 0.658150 -0.194927 0.727215\nvn 0.397304 -0.467010 0.789969\nvn 0.658150 -0.194927 0.727215\nvn 0.767469 -0.325549 0.552277\nvn 0.908706 0.004853 0.417409\nvn 0.908706 0.004853 0.417409\nvn 0.823775 0.112097 0.555724\nvn 0.658150 -0.194927 0.727215\nvn 0.823775 0.112097 0.555724\nvn 0.908706 0.004853 0.417409\nvn 0.916238 0.345047 0.203592\nvn 0.916238 0.345047 0.203592\nvn 0.867200 0.404806 0.289993\nvn 0.823775 0.112097 0.555724\nvn 0.867200 0.404806 0.289993\nvn 0.916238 0.345047 0.203592\nvn 0.776434 0.626464 -0.068515\nvn 0.776434 0.626464 -0.068515\nvn 0.777868 0.627410 -0.035738\nvn 0.867200 0.404806 0.289993\nvn 0.777868 0.627410 -0.035738\nvn 0.776434 0.626464 -0.068515\nvn 0.514217 0.783366 -0.349170\nvn 0.514217 0.783366 -0.349170\nvn 0.571229 0.734935 -0.365469\nvn 0.777868 0.627410 -0.035738\nvn 0.571229 0.734935 -0.365469\nvn 0.514217 0.783366 -0.349170\nvn 0.195751 0.794909 -0.574284\nvn 0.195751 0.794909 -0.574284\nvn 0.291425 0.715943 -0.634427\nvn 0.571229 0.734935 -0.365469\nvn 0.610381 0.698460 -0.373615\nvn 0.571229 0.734935 -0.365469\nvn 0.291425 0.715943 -0.634427\nvn 0.291425 0.715943 -0.634427\nvn 0.359733 0.653576 -0.665906\nvn 0.610381 0.698460 -0.373615\nvn 0.641519 0.664378 -0.383477\nvn 0.610381 0.698460 -0.373615\nvn 0.359733 0.653576 -0.665906\nvn 0.359733 0.653576 -0.665906\nvn 0.413322 0.594820 -0.689460\nvn 0.641519 0.664378 -0.383477\nvn 0.672946 0.626313 -0.393544\nvn 0.641519 0.664378 -0.383477\nvn 0.413322 0.594820 -0.689460\nvn 0.413322 0.594820 -0.689460\nvn 0.465049 0.531703 -0.707828\nvn 0.672946 0.626313 -0.393544\nvn 0.641519 0.664378 -0.383477\nvn 0.672946 0.626313 -0.393544\nvn 0.780870 0.624550 -0.013398\nvn 0.780870 0.624550 -0.013398\nvn 0.776225 0.630313 -0.013428\nvn 0.641519 0.664378 -0.383477\nvn 0.610381 0.698460 -0.373615\nvn 0.641519 0.664378 -0.383477\nvn 0.776225 0.630313 -0.013428\nvn 0.776225 0.630313 -0.013428\nvn 0.775983 0.630467 -0.019014\nvn 0.610381 0.698460 -0.373615\nvn 0.571229 0.734935 -0.365469\nvn 0.610381 0.698460 -0.373615\nvn 0.775983 0.630467 -0.019014\nvn 0.775983 0.630467 -0.019014\nvn 0.777868 0.627410 -0.035738\nvn 0.571229 0.734935 -0.365469\nvn 0.824711 0.455342 0.335433\nvn 0.867200 0.404806 0.289993\nvn 0.777868 0.627410 -0.035738\nvn 0.777868 0.627410 -0.035738\nvn 0.775983 0.630467 -0.019014\nvn 0.824711 0.455342 0.335433\nvn 0.792091 0.494073 0.358446\nvn 0.824711 0.455342 0.335433\nvn 0.775983 0.630467 -0.019014\nvn 0.775983 0.630467 -0.019014\nvn 0.776225 0.630313 -0.013428\nvn 0.792091 0.494073 0.358446\nvn 0.767772 0.523405 0.369557\nvn 0.792091 0.494073 0.358446\nvn 0.776225 0.630313 -0.013428\nvn 0.776225 0.630313 -0.013428\nvn 0.780870 0.624550 -0.013398\nvn 0.767772 0.523405 0.369557\nvn 0.792091 0.494073 0.358446\nvn 0.767772 0.523405 0.369557\nvn 0.636172 0.339984 0.692602\nvn 0.636172 0.339984 0.692602\nvn 0.686679 0.278762 0.671389\nvn 0.792091 0.494073 0.358446\nvn 0.824711 0.455342 0.335433\nvn 0.792091 0.494073 0.358446\nvn 0.686679 0.278762 0.671389\nvn 0.686679 0.278762 0.671389\nvn 0.748241 0.204541 0.631109\nvn 0.824711 0.455342 0.335433\nvn 0.867200 0.404806 0.289993\nvn 0.824711 0.455342 0.335433\nvn 0.748241 0.204541 0.631109\nvn 0.748241 0.204541 0.631109\nvn 0.823775 0.112097 0.555724\nvn 0.867200 0.404806 0.289993\nvn 0.823775 0.112097 0.555724\nvn 0.748241 0.204541 0.631109\nvn 0.559658 -0.077274 0.825113\nvn 0.559658 -0.077274 0.825113\nvn 0.658150 -0.194927 0.727215\nvn 0.823775 0.112097 0.555724\nvn 0.477924 0.021119 0.878147\nvn 0.559658 -0.077274 0.825113\nvn 0.748241 0.204541 0.631109\nvn 0.748241 0.204541 0.631109\nvn 0.686679 0.278762 0.671389\nvn 0.477924 0.021119 0.878147\nvn 0.408716 0.105201 0.906578\nvn 0.477924 0.021119 0.878147\nvn 0.686679 0.278762 0.671389\nvn 0.686679 0.278762 0.671389\nvn 0.636172 0.339984 0.692602\nvn 0.408716 0.105201 0.906578\nvn 0.477924 0.021119 0.878147\nvn 0.408716 0.105201 0.906578\nvn 0.120947 -0.143958 0.982165\nvn 0.120947 -0.143958 0.982165\nvn 0.198162 -0.237776 0.950891\nvn 0.477924 0.021119 0.878147\nvn 0.559658 -0.077274 0.825113\nvn 0.477924 0.021119 0.878147\nvn 0.198162 -0.237776 0.950891\nvn 0.198162 -0.237776 0.950891\nvn 0.287794 -0.344315 0.893657\nvn 0.559658 -0.077274 0.825113\nvn 0.658150 -0.194927 0.727215\nvn 0.559658 -0.077274 0.825113\nvn 0.287794 -0.344315 0.893657\nvn 0.287794 -0.344315 0.893657\nvn 0.397304 -0.467010 0.789969\nvn 0.658150 -0.194927 0.727215\nvn 0.397304 -0.467010 0.789969\nvn 0.287794 -0.344315 0.893657\nvn -0.028779 -0.556813 0.830139\nvn -0.028779 -0.556813 0.830139\nvn 0.076237 -0.666414 0.741674\nvn 0.397304 -0.467010 0.789969\nvn -0.112464 -0.459655 0.880948\nvn -0.028779 -0.556813 0.830139\nvn 0.287794 -0.344315 0.893657\nvn 0.287794 -0.344315 0.893657\nvn 0.198162 -0.237776 0.950891\nvn -0.112464 -0.459655 0.880948\nvn -0.185554 -0.371047 0.909887\nvn -0.112464 -0.459655 0.880948\nvn 0.198162 -0.237776 0.950891\nvn 0.198162 -0.237776 0.950891\nvn 0.120947 -0.143958 0.982165\nvn -0.185554 -0.371047 0.909887\nvn -0.112464 -0.459655 0.880948\nvn -0.185554 -0.371047 0.909887\nvn -0.466458 -0.542696 0.698497\nvn -0.466458 -0.542696 0.698497\nvn -0.408927 -0.611880 0.677039\nvn -0.112464 -0.459655 0.880948\nvn -0.028779 -0.556813 0.830139\nvn -0.112464 -0.459655 0.880948\nvn -0.408927 -0.611880 0.677039\nvn -0.408927 -0.611880 0.677039\nvn -0.344657 -0.684461 0.642436\nvn -0.028779 -0.556813 0.830139\nvn 0.076237 -0.666414 0.741674\nvn -0.028779 -0.556813 0.830139\nvn -0.344657 -0.684461 0.642436\nvn -0.344657 -0.684461 0.642436\nvn -0.262102 -0.766255 0.586648\nvn 0.076237 -0.666414 0.741674\nvn -0.262102 -0.766255 0.586648\nvn -0.344657 -0.684461 0.642436\nvn -0.610692 -0.708415 0.353841\nvn -0.610692 -0.708415 0.353841\nvn -0.566859 -0.751010 0.338608\nvn -0.262102 -0.766255 0.586648\nvn -0.344657 -0.684461 0.642436\nvn -0.408927 -0.611880 0.677039\nvn -0.644688 -0.670691 0.366811\nvn -0.644688 -0.670691 0.366811\nvn -0.610692 -0.708415 0.353841\nvn -0.344657 -0.684461 0.642436\nvn -0.408927 -0.611880 0.677039\nvn -0.466458 -0.542696 0.698497\nvn -0.677440 -0.631417 0.377343\nvn -0.677440 -0.631417 0.377343\nvn -0.644688 -0.670691 0.366811\nvn -0.408927 -0.611880 0.677039\nvn -0.527895 -0.471373 0.706495\nvn -0.466458 -0.542696 0.698497\nvn -0.185554 -0.371047 0.909887\nvn -0.185554 -0.371047 0.909887\nvn -0.264509 -0.279616 0.922957\nvn -0.527895 -0.471373 0.706495\nvn -0.264509 -0.279616 0.922957\nvn -0.185554 -0.371047 0.909887\nvn 0.120947 -0.143958 0.982165\nvn 0.120947 -0.143958 0.982165\nvn 0.038026 -0.045625 0.998235\nvn -0.264509 -0.279616 0.922957\nvn 0.038026 -0.045625 0.998235\nvn 0.120947 -0.143958 0.982165\nvn 0.408716 0.105201 0.906578\nvn 0.408716 0.105201 0.906578\nvn 0.334979 0.195689 0.921681\nvn 0.038026 -0.045625 0.998235\nvn 0.334979 0.195689 0.921681\nvn 0.408716 0.105201 0.906578\nvn 0.636172 0.339984 0.692602\nvn 0.636172 0.339984 0.692602\nvn 0.581876 0.408010 0.703525\nvn 0.334979 0.195689 0.921681\nvn 0.581876 0.408010 0.703525\nvn 0.636172 0.339984 0.692602\nvn 0.767772 0.523405 0.369557\nvn 0.767772 0.523405 0.369557\nvn 0.740223 0.557686 0.375575\nvn 0.581876 0.408010 0.703525\nvn 0.740223 0.557686 0.375575\nvn 0.767772 0.523405 0.369557\nvn 0.780870 0.624550 -0.013398\nvn 0.780870 0.624550 -0.013398\nvn 0.784404 0.620150 -0.011140\nvn 0.740223 0.557686 0.375575\nvn 0.784404 0.620150 -0.011140\nvn 0.780870 0.624550 -0.013398\nvn 0.672946 0.626313 -0.393544\nvn 0.672946 0.626313 -0.393544\nvn 0.707944 0.585686 -0.394699\nvn 0.784404 0.620150 -0.011140\nvn 0.707944 0.585686 -0.394699\nvn 0.672946 0.626313 -0.393544\nvn 0.465049 0.531703 -0.707828\nvn 0.465049 0.531703 -0.707828\nvn 0.526395 0.462305 -0.713570\nvn 0.707944 0.585686 -0.394699\nvn 0.743422 0.546359 -0.385766\nvn 0.707944 0.585686 -0.394699\nvn 0.526395 0.462305 -0.713570\nvn 0.526395 0.462305 -0.713570\nvn 0.598890 0.385251 -0.702077\nvn 0.743422 0.546359 -0.385766\nvn 0.778856 0.508667 -0.366935\nvn 0.743422 0.546359 -0.385766\nvn 0.598890 0.385251 -0.702077\nvn 0.598890 0.385251 -0.702077\nvn 0.682110 0.300129 -0.666820\nvn 0.778856 0.508667 -0.366935\nvn 0.812406 0.473667 -0.340052\nvn 0.778856 0.508667 -0.366935\nvn 0.682110 0.300129 -0.666820\nvn 0.682110 0.300129 -0.666820\nvn 0.769537 0.210001 -0.603086\nvn 0.812406 0.473667 -0.340052\nvn 0.778856 0.508667 -0.366935\nvn 0.812406 0.473667 -0.340052\nvn 0.741131 0.670815 -0.027071\nvn 0.741131 0.670815 -0.027071\nvn 0.764899 0.644044 -0.011719\nvn 0.778856 0.508667 -0.366935\nvn 0.743422 0.546359 -0.385766\nvn 0.778856 0.508667 -0.366935\nvn 0.764899 0.644044 -0.011719\nvn 0.764899 0.644044 -0.011719\nvn 0.779373 0.626502 -0.008607\nvn 0.743422 0.546359 -0.385766\nvn 0.707944 0.585686 -0.394699\nvn 0.743422 0.546359 -0.385766\nvn 0.779373 0.626502 -0.008607\nvn 0.779373 0.626502 -0.008607\nvn 0.784404 0.620150 -0.011140\nvn 0.707944 0.585686 -0.394699\nvn 0.697811 0.611535 0.372939\nvn 0.740223 0.557686 0.375575\nvn 0.784404 0.620150 -0.011140\nvn 0.784404 0.620150 -0.011140\nvn 0.779373 0.626502 -0.008607\nvn 0.697811 0.611535 0.372939\nvn 0.638118 0.685575 0.350417\nvn 0.697811 0.611535 0.372939\nvn 0.779373 0.626502 -0.008607\nvn 0.779373 0.626502 -0.008607\nvn 0.764899 0.644044 -0.011719\nvn 0.638118 0.685575 0.350417\nvn 0.561311 0.772963 0.295732\nvn 0.638118 0.685575 0.350417\nvn 0.764899 0.644044 -0.011719\nvn 0.764899 0.644044 -0.011719\nvn 0.741131 0.670815 -0.027071\nvn 0.561311 0.772963 0.295732\nvn 0.638118 0.685575 0.350417\nvn 0.561311 0.772963 0.295732\nvn 0.290422 0.759018 0.582707\nvn 0.290422 0.759018 0.582707\nvn 0.410481 0.622283 0.666535\nvn 0.638118 0.685575 0.350417\nvn 0.697811 0.611535 0.372939\nvn 0.638118 0.685575 0.350417\nvn 0.410481 0.622283 0.666535\nvn 0.410481 0.622283 0.666535\nvn 0.508049 0.501610 0.700196\nvn 0.697811 0.611535 0.372939\nvn 0.740223 0.557686 0.375575\nvn 0.697811 0.611535 0.372939\nvn 0.508049 0.501610 0.700196\nvn 0.508049 0.501610 0.700196\nvn 0.581876 0.408010 0.703525\nvn 0.740223 0.557686 0.375575\nvn 0.581876 0.408010 0.703525\nvn 0.508049 0.501610 0.700196\nvn 0.238230 0.312575 0.919534\nvn 0.238230 0.312575 0.919534\nvn 0.334979 0.195689 0.921681\nvn 0.581876 0.408010 0.703525\nvn 0.114020 0.458765 0.881212\nvn 0.238230 0.312575 0.919534\nvn 0.508049 0.501610 0.700196\nvn 0.508049 0.501610 0.700196\nvn 0.410481 0.622283 0.666535\nvn 0.114020 0.458765 0.881212\nvn -0.032747 0.622740 0.781743\nvn 0.114020 0.458765 0.881212\nvn 0.410481 0.622283 0.666535\nvn 0.410481 0.622283 0.666535\nvn 0.290422 0.759018 0.582707\nvn -0.032747 0.622740 0.781743\nvn 0.114020 0.458765 0.881212\nvn -0.032747 0.622740 0.781743\nvn -0.351829 0.384638 0.853387\nvn -0.351829 0.384638 0.853387\nvn -0.201245 0.221021 0.954280\nvn 0.114020 0.458765 0.881212\nvn 0.238230 0.312575 0.919534\nvn 0.114020 0.458765 0.881212\nvn -0.201245 0.221021 0.954280\nvn -0.201245 0.221021 0.954280\nvn -0.068392 0.074862 0.994846\nvn 0.238230 0.312575 0.919534\nvn 0.334979 0.195689 0.921681\nvn 0.238230 0.312575 0.919534\nvn -0.068392 0.074862 0.994846\nvn -0.068392 0.074862 0.994846\nvn 0.038026 -0.045625 0.998235\nvn 0.334979 0.195689 0.921681\nvn 0.038026 -0.045625 0.998235\nvn -0.068392 0.074862 0.994846\nvn -0.362692 -0.173198 0.915673\nvn -0.362692 -0.173198 0.915673\nvn -0.264509 -0.279616 0.922957\nvn 0.038026 -0.045625 0.998235\nvn -0.480857 -0.048861 0.875437\nvn -0.362692 -0.173198 0.915673\nvn -0.068392 0.074862 0.994846\nvn -0.068392 0.074862 0.994846\nvn -0.201245 0.221021 0.954280\nvn -0.480857 -0.048861 0.875437\nvn -0.610053 0.089056 0.787340\nvn -0.480857 -0.048861 0.875437\nvn -0.201245 0.221021 0.954280\nvn -0.201245 0.221021 0.954280\nvn -0.351829 0.384638 0.853387\nvn -0.610053 0.089056 0.787340\nvn -0.480857 -0.048861 0.875437\nvn -0.610053 0.089056 0.787340\nvn -0.768724 -0.212415 0.603278\nvn -0.768724 -0.212415 0.603278\nvn -0.681678 -0.306139 0.664526\nvn -0.480857 -0.048861 0.875437\nvn -0.362692 -0.173198 0.915673\nvn -0.480857 -0.048861 0.875437\nvn -0.681678 -0.306139 0.664526\nvn -0.681678 -0.306139 0.664526\nvn -0.599680 -0.393093 0.697038\nvn -0.362692 -0.173198 0.915673\nvn -0.264509 -0.279616 0.922957\nvn -0.362692 -0.173198 0.915673\nvn -0.599680 -0.393093 0.697038\nvn -0.599680 -0.393093 0.697038\nvn -0.527895 -0.471373 0.706495\nvn -0.264509 -0.279616 0.922957\nvn -0.527895 -0.471373 0.706495\nvn -0.599680 -0.393093 0.697038\nvn -0.744833 -0.552529 0.374080\nvn -0.744833 -0.552529 0.374080\nvn -0.711060 -0.591274 0.380510\nvn -0.527895 -0.471373 0.706495\nvn -0.599680 -0.393093 0.697038\nvn -0.681678 -0.306139 0.664526\nvn -0.778762 -0.514526 0.358877\nvn -0.778762 -0.514526 0.358877\nvn -0.744833 -0.552529 0.374080\nvn -0.599680 -0.393093 0.697038\nvn -0.681678 -0.306139 0.664526\nvn -0.768724 -0.212415 0.603278\nvn -0.812119 -0.477414 0.335468\nvn -0.812119 -0.477414 0.335468\nvn -0.778762 -0.514526 0.358877\nvn -0.681678 -0.306139 0.664526\nvn -0.841900 -0.133521 0.522854\nvn -0.768724 -0.212415 0.603278\nvn -0.610053 0.089056 0.787340\nvn -0.610053 0.089056 0.787340\nvn -0.716082 0.205244 0.667159\nvn -0.841900 -0.133521 0.522854\nvn -0.716082 0.205244 0.667159\nvn -0.610053 0.089056 0.787340\nvn -0.351829 0.384638 0.853387\nvn -0.351829 0.384638 0.853387\nvn -0.476310 0.518396 0.710208\nvn -0.716082 0.205244 0.667159\nvn -0.476310 0.518396 0.710208\nvn -0.351829 0.384638 0.853387\nvn -0.032747 0.622740 0.781743\nvn -0.032747 0.622740 0.781743\nvn -0.157691 0.752503 0.639431\nvn -0.476310 0.518396 0.710208\nvn -0.157691 0.752503 0.639431\nvn -0.032747 0.622740 0.781743\nvn 0.290422 0.759018 0.582707\nvn 0.290422 0.759018 0.582707\nvn 0.185437 0.865444 0.465424\nvn -0.157691 0.752503 0.639431\nvn 0.185437 0.865444 0.465424\nvn 0.290422 0.759018 0.582707\nvn 0.561311 0.772963 0.295732\nvn 0.561311 0.772963 0.295732\nvn 0.494318 0.840802 0.220684\nvn 0.185437 0.865444 0.465424\nvn 0.494318 0.840802 0.220684\nvn 0.561311 0.772963 0.295732\nvn 0.741131 0.670815 -0.027071\nvn 0.741131 0.670815 -0.027071\nvn 0.722546 0.689371 -0.051913\nvn 0.494318 0.840802 0.220684\nvn 0.722546 0.689371 -0.051913\nvn 0.741131 0.670815 -0.027071\nvn 0.812406 0.473667 -0.340052\nvn 0.812406 0.473667 -0.340052\nvn 0.842490 0.438840 -0.312458\nvn 0.722546 0.689371 -0.051913\nvn 0.842490 0.438840 -0.312458\nvn 0.812406 0.473667 -0.340052\nvn 0.769537 0.210001 -0.603086\nvn 0.769537 0.210001 -0.603086\nvn 0.840896 0.126594 -0.526182\nvn 0.842490 0.438840 -0.312458\nvn 0.868138 0.410936 -0.278332\nvn 0.842490 0.438840 -0.312458\nvn 0.840896 0.126594 -0.526182\nvn 0.840896 0.126594 -0.526182\nvn 0.891892 0.067814 -0.447136\nvn 0.868138 0.410936 -0.278332\nvn 0.895371 0.387349 -0.219707\nvn 0.868138 0.410936 -0.278332\nvn 0.891892 0.067814 -0.447136\nvn 0.891892 0.067814 -0.447136\nvn 0.939837 0.021272 -0.340960\nvn 0.895371 0.387349 -0.219707\nvn 0.921013 0.372489 -0.113959\nvn 0.895371 0.387349 -0.219707\nvn 0.939837 0.021272 -0.340960\nvn 0.939837 0.021272 -0.340960\nvn 0.984458 -0.008270 -0.175424\nvn 0.921013 0.372489 -0.113959\nvn 0.895371 0.387349 -0.219707\nvn 0.921013 0.372489 -0.113959\nvn 0.717054 0.696149 -0.034792\nvn 0.717054 0.696149 -0.034792\nvn 0.714814 0.696411 -0.063662\nvn 0.895371 0.387349 -0.219707\nvn 0.868138 0.410936 -0.278332\nvn 0.895371 0.387349 -0.219707\nvn 0.714814 0.696411 -0.063662\nvn 0.714814 0.696411 -0.063662\nvn 0.715463 0.695443 -0.066868\nvn 0.868138 0.410936 -0.278332\nvn 0.842490 0.438840 -0.312458\nvn 0.868138 0.410936 -0.278332\nvn 0.715463 0.695443 -0.066868\nvn 0.715463 0.695443 -0.066868\nvn 0.722546 0.689371 -0.051913\nvn 0.842490 0.438840 -0.312458\nvn 0.454007 0.877037 0.157114\nvn 0.494318 0.840802 0.220684\nvn 0.722546 0.689371 -0.051913\nvn 0.722546 0.689371 -0.051913\nvn 0.715463 0.695443 -0.066868\nvn 0.454007 0.877037 0.157114\nvn 0.426079 0.898761 0.103369\nvn 0.454007 0.877037 0.157114\nvn 0.715463 0.695443 -0.066868\nvn 0.715463 0.695443 -0.066868\nvn 0.714814 0.696411 -0.063662\nvn 0.426079 0.898761 0.103369\nvn 0.714814 0.696411 -0.063662\nvn 0.717054 0.696149 -0.034792\nvn 0.407798 0.911701 0.050021\nvn 0.407798 0.911701 0.050021\nvn 0.426079 0.898761 0.103369\nvn 0.714814 0.696411 -0.063662\nvn 0.426079 0.898761 0.103369\nvn 0.407798 0.911701 0.050021\nvn 0.036714 0.991020 0.128577\nvn 0.036714 0.991020 0.128577\nvn 0.072178 0.964020 0.255845\nvn 0.426079 0.898761 0.103369\nvn 0.454007 0.877037 0.157114\nvn 0.426079 0.898761 0.103369\nvn 0.072178 0.964020 0.255845\nvn 0.072178 0.964020 0.255845\nvn 0.120215 0.925280 0.359729\nvn 0.454007 0.877037 0.157114\nvn 0.494318 0.840802 0.220684\nvn 0.454007 0.877037 0.157114\nvn 0.120215 0.925280 0.359729\nvn 0.120215 0.925280 0.359729\nvn 0.185437 0.865444 0.465424\nvn 0.494318 0.840802 0.220684\nvn 0.185437 0.865444 0.465424\nvn 0.120215 0.925280 0.359729\nvn -0.234904 0.829015 0.507498\nvn -0.234904 0.829015 0.507498\nvn -0.157691 0.752503 0.639431\nvn 0.185437 0.865444 0.465424\nvn -0.292922 0.881908 0.369372\nvn -0.234904 0.829015 0.507498\nvn 0.120215 0.925280 0.359729\nvn 0.120215 0.925280 0.359729\nvn 0.072178 0.964020 0.255845\nvn -0.292922 0.881908 0.369372\nvn 0.072178 0.964020 0.255845\nvn 0.036714 0.991020 0.128577\nvn -0.339859 0.921489 0.188027\nvn -0.339859 0.921489 0.188027\nvn -0.292922 0.881908 0.369372\nvn 0.072178 0.964020 0.255845\nvn -0.292922 0.881908 0.369372\nvn -0.339859 0.921489 0.188027\nvn -0.667489 0.711741 0.218824\nvn -0.667489 0.711741 0.218824\nvn -0.613993 0.664624 0.425778\nvn -0.292922 0.881908 0.369372\nvn -0.234904 0.829015 0.507498\nvn -0.292922 0.881908 0.369372\nvn -0.613993 0.664624 0.425778\nvn -0.613993 0.664624 0.425778\nvn -0.553588 0.602266 0.575165\nvn -0.234904 0.829015 0.507498\nvn -0.157691 0.752503 0.639431\nvn -0.234904 0.829015 0.507498\nvn -0.553588 0.602266 0.575165\nvn -0.553588 0.602266 0.575165\nvn -0.476310 0.518396 0.710208\nvn -0.157691 0.752503 0.639431\nvn -0.476310 0.518396 0.710208\nvn -0.553588 0.602266 0.575165\nvn -0.784316 0.282853 0.552125\nvn -0.784316 0.282853 0.552125\nvn -0.716082 0.205244 0.667159\nvn -0.476310 0.518396 0.710208\nvn -0.841174 0.345601 0.415917\nvn -0.784316 0.282853 0.552125\nvn -0.553588 0.602266 0.575165\nvn -0.553588 0.602266 0.575165\nvn -0.613993 0.664624 0.425778\nvn -0.841174 0.345601 0.415917\nvn -0.613993 0.664624 0.425778\nvn -0.667489 0.711741 0.218824\nvn -0.893905 0.393025 0.215557\nvn -0.893905 0.393025 0.215557\nvn -0.841174 0.345601 0.415917\nvn -0.613993 0.664624 0.425778\nvn -0.841174 0.345601 0.415917\nvn -0.893905 0.393025 0.215557\nvn -0.983734 0.014313 0.179058\nvn -0.983734 0.014313 0.179058\nvn -0.939383 -0.026064 0.341877\nvn -0.841174 0.345601 0.415917\nvn -0.784316 0.282853 0.552125\nvn -0.841174 0.345601 0.415917\nvn -0.939383 -0.026064 0.341877\nvn -0.939383 -0.026064 0.341877\nvn -0.892549 -0.077396 0.444260\nvn -0.784316 0.282853 0.552125\nvn -0.716082 0.205244 0.667159\nvn -0.784316 0.282853 0.552125\nvn -0.892549 -0.077396 0.444260\nvn -0.892549 -0.077396 0.444260\nvn -0.841900 -0.133521 0.522854\nvn -0.716082 0.205244 0.667159\nvn -0.841900 -0.133521 0.522854\nvn -0.892549 -0.077396 0.444260\nvn -0.864737 -0.423335 0.270219\nvn -0.864737 -0.423335 0.270219\nvn -0.840936 -0.447875 0.303700\nvn -0.841900 -0.133521 0.522854\nvn -0.892549 -0.077396 0.444260\nvn -0.939383 -0.026064 0.341877\nvn -0.893593 -0.393450 0.216074\nvn -0.893593 -0.393450 0.216074\nvn -0.864737 -0.423335 0.270219\nvn -0.892549 -0.077396 0.444260\nvn -0.912619 0.406090 0.047091\nvn -0.893905 0.393025 0.215557\nvn -0.667489 0.711741 0.218824\nvn -0.983734 0.014313 0.179058\nvn -0.893905 0.393025 0.215557\nvn -0.912619 0.406090 0.047091\nvn -0.667489 0.711741 0.218824\nvn -0.687201 0.724892 0.047824\nvn -0.912619 0.406090 0.047091\nvn -0.357015 0.933188 0.041231\nvn -0.687201 0.724892 0.047824\nvn -0.667489 0.711741 0.218824\nvn -0.688119 0.725596 -0.001862\nvn -0.687201 0.724892 0.047824\nvn -0.357015 0.933188 0.041231\nvn -0.357015 0.933188 0.041231\nvn -0.357961 0.933736 -0.000946\nvn -0.688119 0.725596 -0.001862\nvn -0.357961 0.933736 -0.000946\nvn -0.357015 0.933188 0.041231\nvn 0.026277 0.999255 0.028261\nvn 0.036714 0.991020 0.128577\nvn 0.026277 0.999255 0.028261\nvn -0.357015 0.933188 0.041231\nvn 0.405635 0.913970 0.010926\nvn 0.026277 0.999255 0.028261\nvn 0.036714 0.991020 0.128577\nvn 0.026551 0.999647 0.000122\nvn 0.026277 0.999255 0.028261\nvn 0.405635 0.913970 0.010926\nvn 0.026277 0.999255 0.028261\nvn 0.026551 0.999647 0.000122\nvn -0.357961 0.933736 -0.000946\nvn 0.405635 0.913970 0.010926\nvn 0.406823 0.913507 0.000763\nvn 0.026551 0.999647 0.000122\nvn 0.406823 0.913507 0.000763\nvn 0.405635 0.913970 0.010926\nvn 0.722789 0.691019 -0.008332\nvn 0.717054 0.696149 -0.034792\nvn 0.722789 0.691019 -0.008332\nvn 0.405635 0.913970 0.010926\nvn 0.931854 0.361871 -0.026430\nvn 0.722789 0.691019 -0.008332\nvn 0.717054 0.696149 -0.034792\nvn 0.725166 0.688574 0.000336\nvn 0.722789 0.691019 -0.008332\nvn 0.931854 0.361871 -0.026430\nvn 0.722789 0.691019 -0.008332\nvn 0.725166 0.688574 0.000336\nvn 0.406823 0.913507 0.000763\nvn 0.931854 0.361871 -0.026430\nvn 0.933387 0.358871 -0.001007\nvn 0.725166 0.688574 0.000336\nvn 0.933387 0.358871 -0.001007\nvn 0.931854 0.361871 -0.026430\nvn 0.998945 -0.022156 -0.040224\nvn 0.984458 -0.008270 -0.175424\nvn 0.998945 -0.022156 -0.040224\nvn 0.931854 0.361871 -0.026430\nvn 0.931854 0.361871 -0.026430\nvn 0.921013 0.372489 -0.113959\nvn 0.984458 -0.008270 -0.175424\nvn 0.717054 0.696149 -0.034792\nvn 0.921013 0.372489 -0.113959\nvn 0.931854 0.361871 -0.026430\nvn 0.998945 -0.022156 -0.040224\nvn 0.999669 -0.025544 -0.002930\nvn 0.933387 0.358871 -0.001007\nvn 0.405635 0.913970 0.010926\nvn 0.407798 0.911701 0.050021\nvn 0.717054 0.696149 -0.034792\nvn 0.036714 0.991020 0.128577\nvn 0.407798 0.911701 0.050021\nvn 0.405635 0.913970 0.010926\nvn 0.999669 -0.025544 -0.002930\nvn 0.998945 -0.022156 -0.040224\nvn 0.913087 -0.404890 -0.048341\nvn 0.913087 -0.404890 -0.048341\nvn 0.913593 -0.406607 -0.004364\nvn 0.999669 -0.025544 -0.002930\nvn 0.913593 -0.406607 -0.004364\nvn 0.913087 -0.404890 -0.048341\nvn 0.686563 -0.725444 -0.048617\nvn 0.666804 -0.714565 -0.211586\nvn 0.686563 -0.725444 -0.048617\nvn 0.913087 -0.404890 -0.048341\nvn 0.354935 -0.933970 -0.041475\nvn 0.686563 -0.725444 -0.048617\nvn 0.666804 -0.714565 -0.211586\nvn 0.688176 -0.725531 -0.004425\nvn 0.686563 -0.725444 -0.048617\nvn 0.354935 -0.933970 -0.041475\nvn 0.686563 -0.725444 -0.048617\nvn 0.688176 -0.725531 -0.004425\nvn 0.913593 -0.406607 -0.004364\nvn 0.354935 -0.933970 -0.041475\nvn 0.357832 -0.933780 -0.003449\nvn 0.688176 -0.725531 -0.004425\nvn 0.357832 -0.933780 -0.003449\nvn 0.354935 -0.933970 -0.041475\nvn -0.030794 -0.999143 -0.027650\nvn -0.046511 -0.991268 -0.123390\nvn -0.030794 -0.999143 -0.027650\nvn 0.354935 -0.933970 -0.041475\nvn -0.409320 -0.912333 -0.010315\nvn -0.030794 -0.999143 -0.027650\nvn -0.046511 -0.991268 -0.123390\nvn -0.026765 -0.999640 -0.001831\nvn -0.030794 -0.999143 -0.027650\nvn -0.409320 -0.912333 -0.010315\nvn -0.030794 -0.999143 -0.027650\nvn -0.026765 -0.999640 -0.001831\nvn 0.357832 -0.933780 -0.003449\nvn -0.409320 -0.912333 -0.010315\nvn -0.407036 -0.913412 -0.000641\nvn -0.026765 -0.999640 -0.001831\nvn -0.407036 -0.913412 -0.000641\nvn -0.409320 -0.912333 -0.010315\nvn -0.726597 -0.687015 0.008210\nvn -0.724704 -0.688112 0.036135\nvn -0.726597 -0.687015 0.008210\nvn -0.409320 -0.912333 -0.010315\nvn -0.933185 -0.358479 0.025667\nvn -0.726597 -0.687015 0.008210\nvn -0.724704 -0.688112 0.036135\nvn -0.725433 -0.688292 -0.000397\nvn -0.726597 -0.687015 0.008210\nvn -0.933185 -0.358479 0.025667\nvn -0.726597 -0.687015 0.008210\nvn -0.725433 -0.688292 -0.000397\nvn -0.407036 -0.913412 -0.000641\nvn -0.933185 -0.358479 0.025667\nvn -0.933539 -0.358474 -0.000854\nvn -0.725433 -0.688292 -0.000397\nvn -0.724704 -0.688112 0.036135\nvn -0.923562 -0.365647 0.115483\nvn -0.933185 -0.358479 0.025667\nvn -0.893593 -0.393450 0.216074\nvn -0.923562 -0.365647 0.115483\nvn -0.724704 -0.688112 0.036135\nvn -0.724704 -0.688112 0.036135\nvn -0.711567 -0.700153 0.058812\nvn -0.893593 -0.393450 0.216074\nvn -0.864737 -0.423335 0.270219\nvn -0.893593 -0.393450 0.216074\nvn -0.711567 -0.700153 0.058812\nvn -0.711567 -0.700153 0.058812\nvn -0.707148 -0.704798 0.056582\nvn -0.864737 -0.423335 0.270219\nvn -0.840936 -0.447875 0.303700\nvn -0.864737 -0.423335 0.270219\nvn -0.707148 -0.704798 0.056582\nvn -0.707148 -0.704798 0.056582\nvn -0.716975 -0.695857 0.041597\nvn -0.840936 -0.447875 0.303700\nvn -0.812119 -0.477414 0.335468\nvn -0.840936 -0.447875 0.303700\nvn -0.716975 -0.695857 0.041597\nvn -0.716975 -0.695857 0.041597\nvn -0.738896 -0.673464 0.021882\nvn -0.812119 -0.477414 0.335468\nvn -0.778762 -0.514526 0.358877\nvn -0.812119 -0.477414 0.335468\nvn -0.738896 -0.673464 0.021882\nvn -0.738896 -0.673464 0.021882\nvn -0.761672 -0.647957 0.002808\nvn -0.778762 -0.514526 0.358877\nvn -0.744833 -0.552529 0.374080\nvn -0.778762 -0.514526 0.358877\nvn -0.761672 -0.647957 0.002808\nvn -0.761672 -0.647957 0.002808\nvn -0.777197 -0.629241 -0.004639\nvn -0.744833 -0.552529 0.374080\nvn -0.711060 -0.591274 0.380510\nvn -0.744833 -0.552529 0.374080\nvn -0.777197 -0.629241 -0.004639\nvn -0.777197 -0.629241 -0.004639\nvn -0.784182 -0.620510 -0.005036\nvn -0.711060 -0.591274 0.380510\nvn -0.677440 -0.631417 0.377343\nvn -0.711060 -0.591274 0.380510\nvn -0.784182 -0.620510 -0.005036\nvn -0.784182 -0.620510 -0.005036\nvn -0.782727 -0.622349 -0.004547\nvn -0.677440 -0.631417 0.377343\nvn -0.644688 -0.670691 0.366811\nvn -0.677440 -0.631417 0.377343\nvn -0.782727 -0.622349 -0.004547\nvn -0.782727 -0.622349 -0.004547\nvn -0.779504 -0.626387 -0.003418\nvn -0.644688 -0.670691 0.366811\nvn -0.610692 -0.708415 0.353841\nvn -0.644688 -0.670691 0.366811\nvn -0.779504 -0.626387 -0.003418\nvn -0.779504 -0.626387 -0.003418\nvn -0.780492 -0.625151 0.004212\nvn -0.610692 -0.708415 0.353841\nvn -0.566859 -0.751010 0.338608\nvn -0.610692 -0.708415 0.353841\nvn -0.780492 -0.625151 0.004212\nvn -0.780492 -0.625151 0.004212\nvn -0.782721 -0.621855 0.025392\nvn -0.566859 -0.751010 0.338608\nvn -0.503692 -0.806598 0.309345\nvn -0.566859 -0.751010 0.338608\nvn -0.782721 -0.621855 0.025392\nvn -0.782721 -0.621855 0.025392\nvn -0.778730 -0.623845 0.066318\nvn -0.503692 -0.806598 0.309345\nvn -0.425714 -0.871662 0.242842\nvn -0.503692 -0.806598 0.309345\nvn -0.778730 -0.623845 0.066318\nvn -0.778730 -0.623845 0.066318\nvn -0.610817 -0.769396 0.186901\nvn -0.425714 -0.871662 0.242842\nvn -0.371392 -0.921019 0.117439\nvn -0.425714 -0.871662 0.242842\nvn -0.610817 -0.769396 0.186901\nvn -0.610817 -0.769396 0.186901\nvn -0.564421 -0.815228 0.129737\nvn -0.371392 -0.921019 0.117439\nvn -0.382624 -0.922943 -0.042147\nvn -0.371392 -0.921019 0.117439\nvn -0.564421 -0.815228 0.129737\nvn -0.564421 -0.815228 0.129737\nvn -0.695683 -0.710363 0.106817\nvn -0.382624 -0.922943 -0.042147\nvn -0.450685 -0.875215 -0.175733\nvn -0.382624 -0.922943 -0.042147\nvn -0.695683 -0.710363 0.106817\nvn -0.695683 -0.710363 0.106817\nvn -0.702638 -0.707552 0.075290\nvn -0.450685 -0.875215 -0.175733\nvn -0.702638 -0.707552 0.075290\nvn -0.695683 -0.710363 0.106817\nvn -0.887630 -0.376764 0.264879\nvn -0.887630 -0.376764 0.264879\nvn -0.834849 -0.432150 0.340990\nvn -0.702638 -0.707552 0.075290\nvn -0.940211 -0.316822 0.125007\nvn -0.887630 -0.376764 0.264879\nvn -0.695683 -0.710363 0.106817\nvn -0.695683 -0.710363 0.106817\nvn -0.872028 -0.473110 0.125434\nvn -0.940211 -0.316822 0.125007\nvn -0.951495 -0.301987 -0.058841\nvn -0.940211 -0.316822 0.125007\nvn -0.872028 -0.473110 0.125434\nvn -0.872028 -0.473110 0.125434\nvn -0.891736 -0.452262 0.016297\nvn -0.951495 -0.301987 -0.058841\nvn -0.914731 -0.343101 -0.213423\nvn -0.951495 -0.301987 -0.058841\nvn -0.891736 -0.452262 0.016297\nvn -0.891736 -0.452262 0.016297\nvn -0.778730 -0.623845 0.066318\nvn -0.914731 -0.343101 -0.213423\nvn -0.951495 -0.301987 -0.058841\nvn -0.914731 -0.343101 -0.213423\nvn -0.880849 -0.026522 -0.472653\nvn -0.880849 -0.026522 -0.472653\nvn -0.967919 0.069889 -0.241347\nvn -0.951495 -0.301987 -0.058841\nvn -0.940211 -0.316822 0.125007\nvn -0.951495 -0.301987 -0.058841\nvn -0.967919 0.069889 -0.241347\nvn -0.967919 0.069889 -0.241347\nvn -0.992023 0.084507 0.093541\nvn -0.940211 -0.316822 0.125007\nvn -0.887630 -0.376764 0.264879\nvn -0.940211 -0.316822 0.125007\nvn -0.992023 0.084507 0.093541\nvn -0.992023 0.084507 0.093541\nvn -0.920152 0.000549 0.391561\nvn -0.887630 -0.376764 0.264879\nvn -0.834849 -0.432150 0.340990\nvn -0.887630 -0.376764 0.264879\nvn -0.920152 0.000549 0.391561\nvn -0.920152 0.000549 0.391561\nvn -0.820840 -0.100805 0.562192\nvn -0.834849 -0.432150 0.340990\nvn -0.820840 -0.100805 0.562192\nvn -0.920152 0.000549 0.391561\nvn -0.812329 0.364582 0.455194\nvn -0.812329 0.364582 0.455194\nvn -0.678441 0.237439 0.695227\nvn -0.820840 -0.100805 0.562192\nvn -0.889964 0.454488 0.037477\nvn -0.812329 0.364582 0.455194\nvn -0.920152 0.000549 0.391561\nvn -0.920152 0.000549 0.391561\nvn -0.992023 0.084507 0.093541\nvn -0.889964 0.454488 0.037477\nvn -0.824548 0.404506 -0.395595\nvn -0.889964 0.454488 0.037477\nvn -0.992023 0.084507 0.093541\nvn -0.992023 0.084507 0.093541\nvn -0.967919 0.069889 -0.241347\nvn -0.824548 0.404506 -0.395595\nvn -0.701001 0.272080 -0.659220\nvn -0.824548 0.404506 -0.395595\nvn -0.967919 0.069889 -0.241347\nvn -0.967919 0.069889 -0.241347\nvn -0.880849 -0.026522 -0.472653\nvn -0.701001 0.272080 -0.659220\nvn -0.824548 0.404506 -0.395595\nvn -0.701001 0.272080 -0.659220\nvn -0.435967 0.513638 -0.738992\nvn -0.435967 0.513638 -0.738992\nvn -0.578320 0.656694 -0.484044\nvn -0.824548 0.404506 -0.395595\nvn -0.889964 0.454488 0.037477\nvn -0.824548 0.404506 -0.395595\nvn -0.578320 0.656694 -0.484044\nvn -0.578320 0.656694 -0.484044\nvn -0.658175 0.697178 -0.284163\nvn -0.889964 0.454488 0.037477\nvn -0.812329 0.364582 0.455194\nvn -0.889964 0.454488 0.037477\nvn -0.638341 0.734476 0.230359\nvn -0.638341 0.734476 0.230359\nvn -0.600980 0.667175 0.440114\nvn -0.812329 0.364582 0.455194\nvn -0.678441 0.237439 0.695227\nvn -0.812329 0.364582 0.455194\nvn -0.600980 0.667175 0.440114\nvn -0.600980 0.667175 0.440114\nvn -0.448576 0.533694 0.716903\nvn -0.678441 0.237439 0.695227\nvn -0.448576 0.533694 0.716903\nvn -0.600980 0.667175 0.440114\nvn -0.313376 0.881988 0.351983\nvn -0.313376 0.881988 0.351983\nvn -0.164438 0.759839 0.628972\nvn -0.448576 0.533694 0.716903\nvn -0.370135 0.924635 -0.089726\nvn -0.313376 0.881988 0.351983\nvn -0.600980 0.667175 0.440114\nvn -0.600980 0.667175 0.440114\nvn -0.638341 0.734476 0.230359\nvn -0.370135 0.924635 -0.089726\nvn -0.275463 0.825014 -0.493428\nvn -0.370135 0.924635 -0.089726\nvn -0.658175 0.697178 -0.284163\nvn -0.658175 0.697178 -0.284163\nvn -0.578320 0.656694 -0.484044\nvn -0.275463 0.825014 -0.493428\nvn -0.131384 0.692534 -0.709320\nvn -0.275463 0.825014 -0.493428\nvn -0.578320 0.656694 -0.484044\nvn -0.578320 0.656694 -0.484044\nvn -0.435967 0.513638 -0.738992\nvn -0.131384 0.692534 -0.709320\nvn -0.275463 0.825014 -0.493428\nvn -0.131384 0.692534 -0.709320\nvn 0.195751 0.794909 -0.574284\nvn 0.195751 0.794909 -0.574284\nvn 0.070713 0.902765 -0.424281\nvn -0.275463 0.825014 -0.493428\nvn -0.370135 0.924635 -0.089726\nvn -0.275463 0.825014 -0.493428\nvn 0.070713 0.902765 -0.424281\nvn 0.070713 0.902765 -0.424281\nvn -0.008423 0.991585 -0.129186\nvn -0.370135 0.924635 -0.089726\nvn -0.313376 0.881988 0.351983\nvn -0.370135 0.924635 -0.089726\nvn -0.008423 0.991585 -0.129186\nvn -0.008423 0.991585 -0.129186\nvn 0.031770 0.976954 0.211072\nvn -0.313376 0.881988 0.351983\nvn -0.164438 0.759839 0.628972\nvn -0.313376 0.881988 0.351983\nvn 0.031770 0.976954 0.211072\nvn 0.031770 0.976954 0.211072\nvn 0.152139 0.883171 0.443691\nvn -0.164438 0.759839 0.628972\nvn -0.327742 0.396013 -0.857764\nvn -0.435967 0.513638 -0.738992\nvn -0.701001 0.272080 -0.659220\nvn -0.701001 0.272080 -0.659220\nvn -0.599457 0.148994 -0.786417\nvn -0.327742 0.396013 -0.857764\nvn -0.599457 0.148994 -0.786417\nvn -0.701001 0.272080 -0.659220\nvn -0.880849 -0.026522 -0.472653\nvn -0.880849 -0.026522 -0.472653\nvn -0.794690 -0.129463 -0.593049\nvn -0.599457 0.148994 -0.786417\nvn -0.794690 -0.129463 -0.593049\nvn -0.880849 -0.026522 -0.472653\nvn -0.914731 -0.343101 -0.213423\nvn -0.914731 -0.343101 -0.213423\nvn -0.863675 -0.400357 -0.306234\nvn -0.794690 -0.129463 -0.593049\nvn -0.863675 -0.400357 -0.306234\nvn -0.914731 -0.343101 -0.213423\nvn -0.778730 -0.623845 0.066318\nvn -0.778730 -0.623845 0.066318\nvn -0.782721 -0.621855 0.025392\nvn -0.863675 -0.400357 -0.306234\nvn -0.821578 -0.448847 -0.351490\nvn -0.863675 -0.400357 -0.306234\nvn -0.782721 -0.621855 0.025392\nvn -0.782721 -0.621855 0.025392\nvn -0.780492 -0.625151 0.004212\nvn -0.821578 -0.448847 -0.351490\nvn -0.789392 -0.486912 -0.373867\nvn -0.821578 -0.448847 -0.351490\nvn -0.780492 -0.625151 0.004212\nvn -0.780492 -0.625151 0.004212\nvn -0.779504 -0.626387 -0.003418\nvn -0.789392 -0.486912 -0.373867\nvn -0.764261 -0.517605 -0.384694\nvn -0.789392 -0.486912 -0.373867\nvn -0.779504 -0.626387 -0.003418\nvn -0.779504 -0.626387 -0.003418\nvn -0.782727 -0.622349 -0.004547\nvn -0.764261 -0.517605 -0.384694\nvn -0.789392 -0.486912 -0.373867\nvn -0.764261 -0.517605 -0.384694\nvn -0.628578 -0.337515 -0.700695\nvn -0.628578 -0.337515 -0.700695\nvn -0.675677 -0.278035 -0.682757\nvn -0.789392 -0.486912 -0.373867\nvn -0.821578 -0.448847 -0.351490\nvn -0.789392 -0.486912 -0.373867\nvn -0.675677 -0.278035 -0.682757\nvn -0.675677 -0.278035 -0.682757\nvn -0.728735 -0.211528 -0.651308\nvn -0.821578 -0.448847 -0.351490\nvn -0.863675 -0.400357 -0.306234\nvn -0.821578 -0.448847 -0.351490\nvn -0.728735 -0.211528 -0.651308\nvn -0.728735 -0.211528 -0.651308\nvn -0.794690 -0.129463 -0.593049\nvn -0.863675 -0.400357 -0.306234\nvn -0.523345 0.051852 -0.850542\nvn -0.599457 0.148994 -0.786417\nvn -0.794690 -0.129463 -0.593049\nvn -0.794690 -0.129463 -0.593049\nvn -0.728735 -0.211528 -0.651308\nvn -0.523345 0.051852 -0.850542\nvn -0.459586 -0.030336 -0.887615\nvn -0.523345 0.051852 -0.850542\nvn -0.728735 -0.211528 -0.651308\nvn -0.728735 -0.211528 -0.651308\nvn -0.675677 -0.278035 -0.682757\nvn -0.459586 -0.030336 -0.887615\nvn -0.398518 -0.108496 -0.910721\nvn -0.459586 -0.030336 -0.887615\nvn -0.675677 -0.278035 -0.682757\nvn -0.675677 -0.278035 -0.682757\nvn -0.628578 -0.337515 -0.700695\nvn -0.398518 -0.108496 -0.910721\nvn -0.459586 -0.030336 -0.887615\nvn -0.398518 -0.108496 -0.910721\nvn -0.112705 0.134160 -0.984530\nvn -0.112705 0.134160 -0.984530\nvn -0.179360 0.218515 -0.959209\nvn -0.459586 -0.030336 -0.887615\nvn -0.523345 0.051852 -0.850542\nvn -0.459586 -0.030336 -0.887615\nvn -0.179360 0.218515 -0.959209\nvn -0.179360 0.218515 -0.959209\nvn -0.247080 0.302410 -0.920598\nvn -0.523345 0.051852 -0.850542\nvn -0.599457 0.148994 -0.786417\nvn -0.523345 0.051852 -0.850542\nvn -0.247080 0.302410 -0.920598\nvn -0.247080 0.302410 -0.920598\nvn -0.327742 0.396013 -0.857764\nvn -0.599457 0.148994 -0.786417\nvn -0.327742 0.396013 -0.857764\nvn -0.247080 0.302410 -0.920598\nvn 0.059604 0.512202 -0.856794\nvn 0.059604 0.512202 -0.856794\nvn -0.021211 0.592417 -0.805352\nvn -0.327742 0.396013 -0.857764\nvn -0.435967 0.513638 -0.738992\nvn -0.327742 0.396013 -0.857764\nvn -0.021211 0.592417 -0.805352\nvn -0.021211 0.592417 -0.805352\nvn -0.131384 0.692534 -0.709320\nvn -0.435967 0.513638 -0.738992\nvn 0.125066 0.437000 -0.890724\nvn 0.059604 0.512202 -0.856794\nvn -0.247080 0.302410 -0.920598\nvn -0.247080 0.302410 -0.920598\nvn -0.179360 0.218515 -0.959209\nvn 0.125066 0.437000 -0.890724\nvn 0.188728 0.357956 -0.914467\nvn 0.125066 0.437000 -0.890724\nvn -0.179360 0.218515 -0.959209\nvn -0.179360 0.218515 -0.959209\nvn -0.112705 0.134160 -0.984530\nvn 0.188728 0.357956 -0.914467\nvn 0.125066 0.437000 -0.890724\nvn 0.188728 0.357956 -0.914467\nvn 0.465049 0.531703 -0.707828\nvn 0.465049 0.531703 -0.707828\nvn 0.413322 0.594820 -0.689460\nvn 0.125066 0.437000 -0.890724\nvn 0.059604 0.512202 -0.856794\nvn 0.125066 0.437000 -0.890724\nvn 0.413322 0.594820 -0.689460\nvn 0.413322 0.594820 -0.689460\nvn 0.359733 0.653576 -0.665906\nvn 0.059604 0.512202 -0.856794\nvn -0.021211 0.592417 -0.805352\nvn 0.059604 0.512202 -0.856794\nvn 0.359733 0.653576 -0.665906\nvn 0.359733 0.653576 -0.665906\nvn 0.291425 0.715943 -0.634427\nvn -0.021211 0.592417 -0.805352\nvn -0.131384 0.692534 -0.709320\nvn -0.021211 0.592417 -0.805352\nvn 0.291425 0.715943 -0.634427\nvn 0.291425 0.715943 -0.634427\nvn 0.195751 0.794909 -0.574284\nvn -0.131384 0.692534 -0.709320\nvn -0.031312 0.038057 -0.998785\nvn -0.112705 0.134160 -0.984530\nvn -0.398518 -0.108496 -0.910721\nvn -0.398518 -0.108496 -0.910721\nvn -0.326010 -0.198957 -0.924193\nvn -0.031312 0.038057 -0.998785\nvn -0.326010 -0.198957 -0.924193\nvn -0.398518 -0.108496 -0.910721\nvn -0.628578 -0.337515 -0.700695\nvn -0.628578 -0.337515 -0.700695\nvn -0.574504 -0.407592 -0.709798\nvn -0.326010 -0.198957 -0.924193\nvn -0.574504 -0.407592 -0.709798\nvn -0.628578 -0.337515 -0.700695\nvn -0.764261 -0.517605 -0.384694\nvn -0.764261 -0.517605 -0.384694\nvn -0.735231 -0.554956 -0.389177\nvn -0.574504 -0.407592 -0.709798\nvn -0.735231 -0.554956 -0.389177\nvn -0.764261 -0.517605 -0.384694\nvn -0.782727 -0.622349 -0.004547\nvn -0.782727 -0.622349 -0.004547\nvn -0.784182 -0.620510 -0.005036\nvn -0.735231 -0.554956 -0.389177\nvn -0.691326 -0.612098 -0.383934\nvn -0.735231 -0.554956 -0.389177\nvn -0.784182 -0.620510 -0.005036\nvn -0.784182 -0.620510 -0.005036\nvn -0.777197 -0.629241 -0.004639\nvn -0.691326 -0.612098 -0.383934\nvn -0.631193 -0.688356 -0.357438\nvn -0.691326 -0.612098 -0.383934\nvn -0.777197 -0.629241 -0.004639\nvn -0.777197 -0.629241 -0.004639\nvn -0.761672 -0.647957 0.002808\nvn -0.631193 -0.688356 -0.357438\nvn -0.556000 -0.775282 -0.299669\nvn -0.631193 -0.688356 -0.357438\nvn -0.761672 -0.647957 0.002808\nvn -0.761672 -0.647957 0.002808\nvn -0.738896 -0.673464 0.021882\nvn -0.556000 -0.775282 -0.299669\nvn -0.631193 -0.688356 -0.357438\nvn -0.556000 -0.775282 -0.299669\nvn -0.285752 -0.762096 -0.580995\nvn -0.285752 -0.762096 -0.580995\nvn -0.403520 -0.626369 -0.666959\nvn -0.631193 -0.688356 -0.357438\nvn -0.691326 -0.612098 -0.383934\nvn -0.631193 -0.688356 -0.357438\nvn -0.403520 -0.626369 -0.666959\nvn -0.403520 -0.626369 -0.666959\nvn -0.500515 -0.503873 -0.703987\nvn -0.691326 -0.612098 -0.383934\nvn -0.735231 -0.554956 -0.389177\nvn -0.691326 -0.612098 -0.383934\nvn -0.500515 -0.503873 -0.703987\nvn -0.500515 -0.503873 -0.703987\nvn -0.574504 -0.407592 -0.709798\nvn -0.735231 -0.554956 -0.389177\nvn -0.229507 -0.316946 -0.920256\nvn -0.326010 -0.198957 -0.924193\nvn -0.574504 -0.407592 -0.709798\nvn -0.574504 -0.407592 -0.709798\nvn -0.500515 -0.503873 -0.703987\nvn -0.229507 -0.316946 -0.920256\nvn -0.105414 -0.463773 -0.879661\nvn -0.229507 -0.316946 -0.920256\nvn -0.500515 -0.503873 -0.703987\nvn -0.500515 -0.503873 -0.703987\nvn -0.403520 -0.626369 -0.666959\nvn -0.105414 -0.463773 -0.879661\nvn 0.039889 -0.625946 -0.778846\nvn -0.105414 -0.463773 -0.879661\nvn -0.403520 -0.626369 -0.666959\nvn -0.403520 -0.626369 -0.666959\nvn -0.285752 -0.762096 -0.580995\nvn 0.039889 -0.625946 -0.778846\nvn -0.105414 -0.463773 -0.879661\nvn 0.039889 -0.625946 -0.778846\nvn 0.358205 -0.387473 -0.849443\nvn 0.358205 -0.387473 -0.849443\nvn 0.207989 -0.226819 -0.951469\nvn -0.105414 -0.463773 -0.879661\nvn -0.229507 -0.316946 -0.920256\nvn -0.105414 -0.463773 -0.879661\nvn 0.207989 -0.226819 -0.951469\nvn 0.207989 -0.226819 -0.951469\nvn 0.074711 -0.081609 -0.993860\nvn -0.229507 -0.316946 -0.920256\nvn -0.326010 -0.198957 -0.924193\nvn -0.229507 -0.316946 -0.920256\nvn 0.074711 -0.081609 -0.993860\nvn 0.074711 -0.081609 -0.993860\nvn -0.031312 0.038057 -0.998785\nvn -0.326010 -0.198957 -0.924193\nvn -0.031312 0.038057 -0.998785\nvn 0.074711 -0.081609 -0.993860\nvn 0.364156 0.164255 -0.916739\nvn 0.364156 0.164255 -0.916739\nvn 0.266341 0.269301 -0.925494\nvn -0.031312 0.038057 -0.998785\nvn -0.112705 0.134160 -0.984530\nvn -0.031312 0.038057 -0.998785\nvn 0.266341 0.269301 -0.925494\nvn 0.266341 0.269301 -0.925494\nvn 0.188728 0.357956 -0.914467\nvn -0.112705 0.134160 -0.984530\nvn 0.482969 0.041476 -0.874655\nvn 0.364156 0.164255 -0.916739\nvn 0.074711 -0.081609 -0.993860\nvn 0.074711 -0.081609 -0.993860\nvn 0.207989 -0.226819 -0.951469\nvn 0.482969 0.041476 -0.874655\nvn 0.612489 -0.093053 -0.784983\nvn 0.482969 0.041476 -0.874655\nvn 0.207989 -0.226819 -0.951469\nvn 0.207989 -0.226819 -0.951469\nvn 0.358205 -0.387473 -0.849443\nvn 0.612489 -0.093053 -0.784983\nvn 0.482969 0.041476 -0.874655\nvn 0.612489 -0.093053 -0.784983\nvn 0.769537 0.210001 -0.603086\nvn 0.769537 0.210001 -0.603086\nvn 0.682110 0.300129 -0.666820\nvn 0.482969 0.041476 -0.874655\nvn 0.364156 0.164255 -0.916739\nvn 0.482969 0.041476 -0.874655\nvn 0.682110 0.300129 -0.666820\nvn 0.682110 0.300129 -0.666820\nvn 0.598890 0.385251 -0.702077\nvn 0.364156 0.164255 -0.916739\nvn 0.266341 0.269301 -0.925494\nvn 0.364156 0.164255 -0.916739\nvn 0.598890 0.385251 -0.702077\nvn 0.598890 0.385251 -0.702077\nvn 0.526395 0.462305 -0.713570\nvn 0.266341 0.269301 -0.925494\nvn 0.188728 0.357956 -0.914467\nvn 0.266341 0.269301 -0.925494\nvn 0.526395 0.462305 -0.713570\nvn 0.526395 0.462305 -0.713570\nvn 0.465049 0.531703 -0.707828\nvn 0.188728 0.357956 -0.914467\nvn 0.478878 -0.519774 -0.707468\nvn 0.358205 -0.387473 -0.849443\nvn 0.039889 -0.625946 -0.778846\nvn 0.039889 -0.625946 -0.778846\nvn 0.163339 -0.752329 -0.638218\nvn 0.478878 -0.519774 -0.707468\nvn 0.163339 -0.752329 -0.638218\nvn 0.039889 -0.625946 -0.778846\nvn -0.285752 -0.762096 -0.580995\nvn -0.285752 -0.762096 -0.580995\nvn -0.178966 -0.865837 -0.467222\nvn 0.163339 -0.752329 -0.638218\nvn -0.178966 -0.865837 -0.467222\nvn -0.285752 -0.762096 -0.580995\nvn -0.556000 -0.775282 -0.299669\nvn -0.556000 -0.775282 -0.299669\nvn -0.485409 -0.843767 -0.228986\nvn -0.178966 -0.865837 -0.467222\nvn -0.485409 -0.843767 -0.228986\nvn -0.556000 -0.775282 -0.299669\nvn -0.738896 -0.673464 0.021882\nvn -0.738896 -0.673464 0.021882\nvn -0.716975 -0.695857 0.041597\nvn -0.485409 -0.843767 -0.228986\nvn -0.442653 -0.881247 -0.165720\nvn -0.485409 -0.843767 -0.228986\nvn -0.716975 -0.695857 0.041597\nvn -0.716975 -0.695857 0.041597\nvn -0.707148 -0.704798 0.056582\nvn -0.442653 -0.881247 -0.165720\nvn -0.421109 -0.900785 -0.106086\nvn -0.442653 -0.881247 -0.165720\nvn -0.707148 -0.704798 0.056582\nvn -0.707148 -0.704798 0.056582\nvn -0.711567 -0.700153 0.058812\nvn -0.421109 -0.900785 -0.106086\nvn -0.416063 -0.908087 -0.047640\nvn -0.421109 -0.900785 -0.106086\nvn -0.711567 -0.700153 0.058812\nvn -0.711567 -0.700153 0.058812\nvn -0.724704 -0.688112 0.036135\nvn -0.416063 -0.908087 -0.047640\nvn -0.421109 -0.900785 -0.106086\nvn -0.416063 -0.908087 -0.047640\nvn -0.046511 -0.991268 -0.123390\nvn -0.046511 -0.991268 -0.123390\nvn -0.069615 -0.964845 -0.253434\nvn -0.421109 -0.900785 -0.106086\nvn -0.442653 -0.881247 -0.165720\nvn -0.421109 -0.900785 -0.106086\nvn -0.069615 -0.964845 -0.253434\nvn -0.069615 -0.964845 -0.253434\nvn -0.112280 -0.925097 -0.362751\nvn -0.442653 -0.881247 -0.165720\nvn -0.485409 -0.843767 -0.228986\nvn -0.442653 -0.881247 -0.165720\nvn -0.112280 -0.925097 -0.362751\nvn -0.112280 -0.925097 -0.362751\nvn -0.178966 -0.865837 -0.467222\nvn -0.485409 -0.843767 -0.228986\nvn 0.240308 -0.827649 -0.507198\nvn 0.163339 -0.752329 -0.638218\nvn -0.178966 -0.865837 -0.467222\nvn -0.178966 -0.865837 -0.467222\nvn -0.112280 -0.925097 -0.362751\nvn 0.240308 -0.827649 -0.507198\nvn 0.295728 -0.883217 -0.363968\nvn 0.240308 -0.827649 -0.507198\nvn -0.112280 -0.925097 -0.362751\nvn -0.112280 -0.925097 -0.362751\nvn -0.069615 -0.964845 -0.253434\nvn 0.295728 -0.883217 -0.363968\nvn -0.069615 -0.964845 -0.253434\nvn -0.046511 -0.991268 -0.123390\nvn 0.335440 -0.924496 -0.181072\nvn 0.335440 -0.924496 -0.181072\nvn 0.295728 -0.883217 -0.363968\nvn -0.069615 -0.964845 -0.253434\nvn 0.295728 -0.883217 -0.363968\nvn 0.335440 -0.924496 -0.181072\nvn 0.666804 -0.714565 -0.211586\nvn 0.666804 -0.714565 -0.211586\nvn 0.615661 -0.667329 -0.419087\nvn 0.295728 -0.883217 -0.363968\nvn 0.240308 -0.827649 -0.507198\nvn 0.295728 -0.883217 -0.363968\nvn 0.615661 -0.667329 -0.419087\nvn 0.615661 -0.667329 -0.419087\nvn 0.555056 -0.603123 -0.572848\nvn 0.240308 -0.827649 -0.507198\nvn 0.163339 -0.752329 -0.638218\nvn 0.240308 -0.827649 -0.507198\nvn 0.555056 -0.603123 -0.572848\nvn 0.555056 -0.603123 -0.572848\nvn 0.478878 -0.519774 -0.707468\nvn 0.163339 -0.752329 -0.638218\nvn 0.478878 -0.519774 -0.707468\nvn 0.555056 -0.603123 -0.572848\nvn 0.782616 -0.289204 -0.551246\nvn 0.782616 -0.289204 -0.551246\nvn 0.714918 -0.210920 -0.666637\nvn 0.478878 -0.519774 -0.707468\nvn 0.358205 -0.387473 -0.849443\nvn 0.478878 -0.519774 -0.707468\nvn 0.714918 -0.210920 -0.666637\nvn 0.714918 -0.210920 -0.666637\nvn 0.612489 -0.093053 -0.784983\nvn 0.358205 -0.387473 -0.849443\nvn 0.841573 -0.350363 -0.411097\nvn 0.782616 -0.289204 -0.551246\nvn 0.555056 -0.603123 -0.572848\nvn 0.555056 -0.603123 -0.572848\nvn 0.615661 -0.667329 -0.419087\nvn 0.841573 -0.350363 -0.411097\nvn 0.615661 -0.667329 -0.419087\nvn 0.666804 -0.714565 -0.211586\nvn 0.895667 -0.392167 -0.209726\nvn 0.895667 -0.392167 -0.209726\nvn 0.841573 -0.350363 -0.411097\nvn 0.615661 -0.667329 -0.419087\nvn 0.841573 -0.350363 -0.411097\nvn 0.895667 -0.392167 -0.209726\nvn 0.984458 -0.008270 -0.175424\nvn 0.984458 -0.008270 -0.175424\nvn 0.939837 0.021272 -0.340960\nvn 0.841573 -0.350363 -0.411097\nvn 0.782616 -0.289204 -0.551246\nvn 0.841573 -0.350363 -0.411097\nvn 0.939837 0.021272 -0.340960\nvn 0.939837 0.021272 -0.340960\nvn 0.891892 0.067814 -0.447136\nvn 0.782616 -0.289204 -0.551246\nvn 0.714918 -0.210920 -0.666637\nvn 0.782616 -0.289204 -0.551246\nvn 0.891892 0.067814 -0.447136\nvn 0.891892 0.067814 -0.447136\nvn 0.840896 0.126594 -0.526182\nvn 0.714918 -0.210920 -0.666637\nvn 0.612489 -0.093053 -0.784983\nvn 0.714918 -0.210920 -0.666637\nvn 0.840896 0.126594 -0.526182\nvn 0.840896 0.126594 -0.526182\nvn 0.769537 0.210001 -0.603086\nvn 0.612489 -0.093053 -0.784983\nvn 0.666804 -0.714565 -0.211586\nvn 0.335440 -0.924496 -0.181072\nvn 0.354935 -0.933970 -0.041475\nvn 0.354935 -0.933970 -0.041475\nvn 0.335440 -0.924496 -0.181072\nvn -0.046511 -0.991268 -0.123390\nvn 0.998945 -0.022156 -0.040224\nvn 0.984458 -0.008270 -0.175424\nvn 0.895667 -0.392167 -0.209726\nvn 0.895667 -0.392167 -0.209726\nvn 0.913087 -0.404890 -0.048341\nvn 0.998945 -0.022156 -0.040224\nvn 0.913087 -0.404890 -0.048341\nvn 0.895667 -0.392167 -0.209726\nvn 0.666804 -0.714565 -0.211586\nvn -0.046511 -0.991268 -0.123390\nvn -0.416063 -0.908087 -0.047640\nvn -0.409320 -0.912333 -0.010315\nvn -0.409320 -0.912333 -0.010315\nvn -0.416063 -0.908087 -0.047640\nvn -0.724704 -0.688112 0.036135\nvn -0.382624 -0.922943 -0.042147\nvn -0.450685 -0.875215 -0.175733\nvn -0.130166 -0.916502 -0.378259\nvn -0.130166 -0.916502 -0.378259\nvn -0.018922 -0.987057 -0.159250\nvn -0.382624 -0.922943 -0.042147\nvn -0.566859 -0.751010 0.338608\nvn -0.503692 -0.806598 0.309345\nvn -0.154185 -0.860563 0.485446\nvn -0.154185 -0.860563 0.485446\nvn -0.262102 -0.766255 0.586648\nvn -0.566859 -0.751010 0.338608\nvn -0.711060 -0.591274 0.380510\nvn -0.677440 -0.631417 0.377343\nvn -0.466458 -0.542696 0.698497\nvn -0.466458 -0.542696 0.698497\nvn -0.527895 -0.471373 0.706495\nvn -0.711060 -0.591274 0.380510\nvn -0.840936 -0.447875 0.303700\nvn -0.812119 -0.477414 0.335468\nvn -0.768724 -0.212415 0.603278\nvn -0.768724 -0.212415 0.603278\nvn -0.841900 -0.133521 0.522854\nvn -0.840936 -0.447875 0.303700\nvn -0.939383 -0.026064 0.341877\nvn -0.983734 0.014313 0.179058\nvn -0.923562 -0.365647 0.115483\nvn -0.923562 -0.365647 0.115483\nvn -0.893593 -0.393450 0.216074\nvn -0.939383 -0.026064 0.341877\nvn -0.357015 0.933188 0.041231\nvn -0.339859 0.921489 0.188027\nvn 0.036714 0.991020 0.128577\nvn -0.667489 0.711741 0.218824\nvn -0.339859 0.921489 0.188027\nvn -0.357015 0.933188 0.041231\nvn -0.913505 0.406822 -0.002106\nvn -0.912619 0.406090 0.047091\nvn -0.687201 0.724892 0.047824\nvn -0.687201 0.724892 0.047824\nvn -0.688119 0.725596 -0.001862\nvn -0.913505 0.406822 -0.002106\nvn -0.912619 0.406090 0.047091\nvn -0.913505 0.406822 -0.002106\nvn -0.999659 0.026063 -0.001648\nvn -0.999659 0.026063 -0.001648\nvn -0.998907 0.025513 0.039155\nvn -0.912619 0.406090 0.047091\nvn -0.912619 0.406090 0.047091\nvn -0.998907 0.025513 0.039155\nvn -0.983734 0.014313 0.179058\nvn -0.983734 0.014313 0.179058\nvn -0.998907 0.025513 0.039155\nvn -0.933185 -0.358479 0.025667\nvn -0.933185 -0.358479 0.025667\nvn -0.923562 -0.365647 0.115483\nvn -0.983734 0.014313 0.179058\nvn -0.998907 0.025513 0.039155\nvn -0.999659 0.026063 -0.001648\nvn -0.933539 -0.358474 -0.000854\nvn -0.933539 -0.358474 -0.000854\nvn -0.933185 -0.358479 0.025667\nvn -0.998907 0.025513 0.039155\nvn 0.657789 -0.722459 -0.212996\nvn 0.699988 -0.710730 -0.069858\nvn 0.917651 -0.387288 -0.089024\nvn 0.921735 -0.386370 -0.033510\nvn 0.917651 -0.387288 -0.089024\nvn 0.699988 -0.710730 -0.069858\nvn 0.699988 -0.710730 -0.069858\nvn 0.704109 -0.709816 -0.019776\nvn 0.921735 -0.386370 -0.033510\nvn 0.704109 -0.709816 -0.019776\nvn 0.699988 -0.710730 -0.069858\nvn 0.378709 -0.924326 -0.046908\nvn 0.378709 -0.924326 -0.046908\nvn 0.380850 -0.924580 -0.010285\nvn 0.704109 -0.709816 -0.019776\nvn 0.699988 -0.710730 -0.069858\nvn 0.657789 -0.722459 -0.212996\nvn 0.339469 -0.926175 -0.164195\nvn 0.339469 -0.926175 -0.164195\nvn 0.378709 -0.924326 -0.046908\nvn 0.699988 -0.710730 -0.069858\nvn 0.378709 -0.924326 -0.046908\nvn 0.339469 -0.926175 -0.164195\nvn -0.024567 -0.995211 -0.094608\nvn -0.024567 -0.995211 -0.094608\nvn 0.000122 -0.999689 -0.024934\nvn 0.378709 -0.924326 -0.046908\nvn 0.380850 -0.924580 -0.010285\nvn 0.378709 -0.924326 -0.046908\nvn 0.000122 -0.999689 -0.024934\nvn 0.000122 -0.999689 -0.024934\nvn -0.000824 -0.999978 -0.006622\nvn 0.380850 -0.924580 -0.010285\nvn -0.000824 -0.999978 -0.006622\nvn 0.000122 -0.999689 -0.024934\nvn -0.380149 -0.924919 -0.003449\nvn -0.380149 -0.924919 -0.003449\nvn -0.382827 -0.923802 -0.005768\nvn -0.000824 -0.999978 -0.006622\nvn -0.382827 -0.923802 -0.005768\nvn -0.380149 -0.924919 -0.003449\nvn -0.705935 -0.708072 0.017060\nvn -0.704898 -0.705356 0.074772\nvn -0.705935 -0.708072 0.017060\nvn -0.380149 -0.924919 -0.003449\nvn -0.380149 -0.924919 -0.003449\nvn -0.388659 -0.921308 -0.011628\nvn -0.704898 -0.705356 0.074772\nvn -0.388659 -0.921308 -0.011628\nvn -0.380149 -0.924919 -0.003449\nvn 0.000122 -0.999689 -0.024934\nvn 0.000122 -0.999689 -0.024934\nvn -0.024567 -0.995211 -0.094608\nvn -0.388659 -0.921308 -0.011628\nvn -0.705935 -0.708072 0.017060\nvn -0.707432 -0.706761 -0.005463\nvn -0.382827 -0.923802 -0.005768\nvn -0.707432 -0.706761 -0.005463\nvn -0.705935 -0.708072 0.017060\nvn -0.924388 -0.379778 0.035707\nvn -0.924388 -0.379778 0.035707\nvn -0.924293 -0.381669 -0.003479\nvn -0.707432 -0.706761 -0.005463\nvn -0.705935 -0.708072 0.017060\nvn -0.704898 -0.705356 0.074772\nvn -0.916668 -0.370592 0.149604\nvn -0.916668 -0.370592 0.149604\nvn -0.924388 -0.379778 0.035707\nvn -0.705935 -0.708072 0.017060\nvn -0.924388 -0.379778 0.035707\nvn -0.916668 -0.370592 0.149604\nvn -0.979816 0.029756 0.197672\nvn -0.979816 0.029756 0.197672\nvn -0.998705 0.009308 0.050021\nvn -0.924388 -0.379778 0.035707\nvn -0.924293 -0.381669 -0.003479\nvn -0.924388 -0.379778 0.035707\nvn -0.998705 0.009308 0.050021\nvn -0.998705 0.009308 0.050021\nvn -0.999998 0.001678 0.000641\nvn -0.924293 -0.381669 -0.003479\nvn -0.999998 0.001678 0.000641\nvn -0.998705 0.009308 0.050021\nvn -0.916826 0.395162 0.057254\nvn -0.916826 0.395162 0.057254\nvn -0.923213 0.384239 0.006104\nvn -0.999998 0.001678 0.000641\nvn -0.998705 0.009308 0.050021\nvn -0.979816 0.029756 0.197672\nvn -0.883160 0.419301 0.210276\nvn -0.883160 0.419301 0.210276\nvn -0.916826 0.395162 0.057254\nvn -0.998705 0.009308 0.050021\nvn -0.916826 0.395162 0.057254\nvn -0.883160 0.419301 0.210276\nvn -0.653361 0.732955 0.189465\nvn -0.653361 0.732955 0.189465\nvn -0.695106 0.716774 0.055331\nvn -0.916826 0.395162 0.057254\nvn -0.923213 0.384239 0.006104\nvn -0.916826 0.395162 0.057254\nvn -0.695106 0.716774 0.055331\nvn -0.695106 0.716774 0.055331\nvn -0.706426 0.707707 0.010590\nvn -0.923213 0.384239 0.006104\nvn -0.706426 0.707707 0.010590\nvn -0.695106 0.716774 0.055331\nvn -0.372060 0.927204 0.043185\nvn -0.372060 0.927204 0.043185\nvn -0.383842 0.923333 0.011048\nvn -0.706426 0.707707 0.010590\nvn -0.695106 0.716774 0.055331\nvn -0.653361 0.732955 0.189465\nvn -0.335281 0.931285 0.142462\nvn -0.335281 0.931285 0.142462\nvn -0.372060 0.927204 0.043185\nvn -0.695106 0.716774 0.055331\nvn -0.383842 0.923333 0.011048\nvn -0.372060 0.927204 0.043185\nvn 0.001404 0.999813 0.019288\nvn 0.001404 0.999813 0.019288\nvn -0.005127 0.999983 0.002808\nvn -0.383842 0.923333 0.011048\nvn 0.540280 0.820903 0.184976\nvn 0.498532 0.852221 0.158700\nvn 0.184610 0.924548 0.333361\nvn 0.184610 0.924548 0.333361\nvn 0.235179 0.892832 0.384112\nvn 0.540280 0.820903 0.184976\nvn 0.577854 0.792924 0.193279\nvn 0.540280 0.820903 0.184976\nvn 0.235179 0.892832 0.384112\nvn 0.235179 0.892832 0.384112\nvn 0.284897 0.858414 0.426567\nvn 0.577854 0.792924 0.193279\nvn 0.604337 0.772223 0.196085\nvn 0.577854 0.792924 0.193279\nvn 0.284897 0.858414 0.426567\nvn 0.284897 0.858414 0.426567\nvn 0.325887 0.823478 0.464415\nvn 0.604337 0.772223 0.196085\nvn 0.615298 0.760570 0.207225\nvn 0.604337 0.772223 0.196085\nvn 0.325887 0.823478 0.464415\nvn 0.325887 0.823478 0.464415\nvn 0.352251 0.788613 0.503992\nvn 0.615298 0.760570 0.207225\nvn 0.604337 0.772223 0.196085\nvn 0.615298 0.760570 0.207225\nvn 0.782116 0.606326 -0.143746\nvn 0.782116 0.606326 -0.143746\nvn 0.795377 0.593436 -0.123326\nvn 0.604337 0.772223 0.196085\nvn 0.577854 0.792924 0.193279\nvn 0.604337 0.772223 0.196085\nvn 0.795377 0.593436 -0.123326\nvn 0.795377 0.593436 -0.123326\nvn 0.796046 0.599011 -0.086585\nvn 0.577854 0.792924 0.193279\nvn 0.540280 0.820903 0.184976\nvn 0.577854 0.792924 0.193279\nvn 0.796046 0.599011 -0.086585\nvn 0.796046 0.599011 -0.086585\nvn 0.782750 0.620085 -0.052889\nvn 0.540280 0.820903 0.184976\nvn 0.498532 0.852221 0.158700\nvn 0.540280 0.820903 0.184976\nvn 0.782750 0.620085 -0.052889\nvn 0.782750 0.620085 -0.052889\nvn 0.758845 0.649676 -0.045566\nvn 0.498532 0.852221 0.158700\nvn 0.758845 0.649676 -0.045566\nvn 0.782750 0.620085 -0.052889\nvn 0.901914 0.304982 -0.305837\nvn 0.901914 0.304982 -0.305837\nvn 0.907332 0.328569 -0.262281\nvn 0.758845 0.649676 -0.045566\nvn 0.878125 0.295730 -0.376086\nvn 0.901914 0.304982 -0.305837\nvn 0.782750 0.620085 -0.052889\nvn 0.782750 0.620085 -0.052889\nvn 0.796046 0.599011 -0.086585\nvn 0.878125 0.295730 -0.376086\nvn 0.842518 0.309711 -0.440730\nvn 0.878125 0.295730 -0.376086\nvn 0.796046 0.599011 -0.086585\nvn 0.796046 0.599011 -0.086585\nvn 0.795377 0.593436 -0.123326\nvn 0.842518 0.309711 -0.440730\nvn 0.804344 0.347771 -0.481752\nvn 0.842518 0.309711 -0.440730\nvn 0.795377 0.593436 -0.123326\nvn 0.795377 0.593436 -0.123326\nvn 0.782116 0.606326 -0.143746\nvn 0.804344 0.347771 -0.481752\nvn 0.842518 0.309711 -0.440730\nvn 0.804344 0.347771 -0.481752\nvn 0.680958 0.044834 -0.730949\nvn 0.680958 0.044834 -0.730949\nvn 0.729012 -0.015168 -0.684332\nvn 0.842518 0.309711 -0.440730\nvn 0.878125 0.295730 -0.376086\nvn 0.842518 0.309711 -0.440730\nvn 0.729012 -0.015168 -0.684332\nvn 0.729012 -0.015168 -0.684332\nvn 0.788294 -0.053529 -0.612965\nvn 0.878125 0.295730 -0.376086\nvn 0.901914 0.304982 -0.305837\nvn 0.878125 0.295730 -0.376086\nvn 0.788294 -0.053529 -0.612965\nvn 0.788294 -0.053529 -0.612965\nvn 0.847818 -0.065646 -0.526209\nvn 0.901914 0.304982 -0.305837\nvn 0.907332 0.328569 -0.262281\nvn 0.901914 0.304982 -0.305837\nvn 0.847818 -0.065646 -0.526209\nvn 0.847818 -0.065646 -0.526209\nvn 0.888699 -0.056339 -0.455016\nvn 0.907332 0.328569 -0.262281\nvn 0.888699 -0.056339 -0.455016\nvn 0.847818 -0.065646 -0.526209\nvn 0.634161 -0.402122 -0.660407\nvn 0.634161 -0.402122 -0.660407\nvn 0.702579 -0.414876 -0.578153\nvn 0.888699 -0.056339 -0.455016\nvn 0.559303 -0.365992 -0.743794\nvn 0.634161 -0.402122 -0.660407\nvn 0.847818 -0.065646 -0.526209\nvn 0.847818 -0.065646 -0.526209\nvn 0.788294 -0.053529 -0.612965\nvn 0.559303 -0.365992 -0.743794\nvn 0.499264 -0.310319 -0.808973\nvn 0.559303 -0.365992 -0.743794\nvn 0.788294 -0.053529 -0.612965\nvn 0.788294 -0.053529 -0.612965\nvn 0.729012 -0.015168 -0.684332\nvn 0.499264 -0.310319 -0.808973\nvn 0.459104 -0.241989 -0.854789\nvn 0.499264 -0.310319 -0.808973\nvn 0.729012 -0.015168 -0.684332\nvn 0.729012 -0.015168 -0.684332\nvn 0.680958 0.044834 -0.730949\nvn 0.459104 -0.241989 -0.854789\nvn 0.499264 -0.310319 -0.808973\nvn 0.459104 -0.241989 -0.854789\nvn 0.190166 -0.480009 -0.856404\nvn 0.190166 -0.480009 -0.856404\nvn 0.217843 -0.538106 -0.814240\nvn 0.499264 -0.310319 -0.808973\nvn 0.559303 -0.365992 -0.743794\nvn 0.499264 -0.310319 -0.808973\nvn 0.217843 -0.538106 -0.814240\nvn 0.217843 -0.538106 -0.814240\nvn 0.266734 -0.593437 -0.759398\nvn 0.559303 -0.365992 -0.743794\nvn 0.634161 -0.402122 -0.660407\nvn 0.559303 -0.365992 -0.743794\nvn 0.266734 -0.593437 -0.759398\nvn 0.266734 -0.593437 -0.759398\nvn 0.337209 -0.642219 -0.688364\nvn 0.634161 -0.402122 -0.660407\nvn 0.702579 -0.414876 -0.578153\nvn 0.634161 -0.402122 -0.660407\nvn 0.337209 -0.642219 -0.688364\nvn 0.337209 -0.642219 -0.688364\nvn 0.415677 -0.676222 -0.608224\nvn 0.702579 -0.414876 -0.578153\nvn 0.415677 -0.676222 -0.608224\nvn 0.337209 -0.642219 -0.688364\nvn 0.026155 -0.782694 -0.621858\nvn 0.026155 -0.782694 -0.621858\nvn 0.101323 -0.828439 -0.550838\nvn 0.415677 -0.676222 -0.608224\nvn -0.035005 -0.735963 -0.676116\nvn 0.026155 -0.782694 -0.621858\nvn 0.337209 -0.642219 -0.688364\nvn 0.337209 -0.642219 -0.688364\nvn 0.266734 -0.593437 -0.759398\nvn -0.035005 -0.735963 -0.676116\nvn -0.075596 -0.694863 -0.715158\nvn -0.035005 -0.735963 -0.676116\nvn 0.266734 -0.593437 -0.759398\nvn 0.266734 -0.593437 -0.759398\nvn 0.217843 -0.538106 -0.814240\nvn -0.075596 -0.694863 -0.715158\nvn -0.096531 -0.658387 -0.746464\nvn -0.075596 -0.694863 -0.715158\nvn 0.217843 -0.538106 -0.814240\nvn 0.217843 -0.538106 -0.814240\nvn 0.190166 -0.480009 -0.856404\nvn -0.096531 -0.658387 -0.746464\nvn -0.075596 -0.694863 -0.715158\nvn -0.096531 -0.658387 -0.746464\nvn -0.380146 -0.759042 -0.528530\nvn -0.380146 -0.759042 -0.528530\nvn -0.362875 -0.774551 -0.518066\nvn -0.075596 -0.694863 -0.715158\nvn -0.035005 -0.735963 -0.676116\nvn -0.075596 -0.694863 -0.715158\nvn -0.362875 -0.774551 -0.518066\nvn -0.362875 -0.774551 -0.518066\nvn -0.326802 -0.799396 -0.504150\nvn -0.035005 -0.735963 -0.676116\nvn 0.026155 -0.782694 -0.621858\nvn -0.035005 -0.735963 -0.676116\nvn -0.326802 -0.799396 -0.504150\nvn -0.326802 -0.799396 -0.504150\nvn -0.273639 -0.837185 -0.473543\nvn 0.026155 -0.782694 -0.621858\nvn 0.101323 -0.828439 -0.550838\nvn 0.026155 -0.782694 -0.621858\nvn -0.273639 -0.837185 -0.473543\nvn -0.273639 -0.837185 -0.473543\nvn -0.207897 -0.884573 -0.417505\nvn 0.101323 -0.828439 -0.550838\nvn -0.207897 -0.884573 -0.417505\nvn -0.273639 -0.837185 -0.473543\nvn -0.554290 -0.795210 -0.245771\nvn -0.554290 -0.795210 -0.245771\nvn -0.503419 -0.837456 -0.212690\nvn -0.207897 -0.884573 -0.417505\nvn -0.273639 -0.837185 -0.473543\nvn -0.326802 -0.799396 -0.504150\nvn -0.594603 -0.765633 -0.245465\nvn -0.594603 -0.765633 -0.245465\nvn -0.554290 -0.795210 -0.245771\nvn -0.273639 -0.837185 -0.473543\nvn -0.326802 -0.799396 -0.504150\nvn -0.362875 -0.774551 -0.518066\nvn -0.619148 -0.751267 -0.228591\nvn -0.619148 -0.751267 -0.228591\nvn -0.594603 -0.765633 -0.245465\nvn -0.326802 -0.799396 -0.504150\nvn -0.362875 -0.774551 -0.518066\nvn -0.380146 -0.759042 -0.528530\nvn -0.625517 -0.749913 -0.215311\nvn -0.625517 -0.749913 -0.215311\nvn -0.619148 -0.751267 -0.228591\nvn -0.362875 -0.774551 -0.518066\nvn -0.869714 -0.307484 0.386072\nvn -0.888811 -0.315172 0.332690\nvn -0.781713 -0.622038 0.044649\nvn -0.781713 -0.622038 0.044649\nvn -0.796402 -0.599919 0.076421\nvn -0.869714 -0.307484 0.386072\nvn -0.839305 -0.319626 0.439780\nvn -0.869714 -0.307484 0.386072\nvn -0.796402 -0.599919 0.076421\nvn -0.796402 -0.599919 0.076421\nvn -0.795280 -0.594614 0.118172\nvn -0.839305 -0.319626 0.439780\nvn -0.806323 -0.352194 0.475187\nvn -0.839305 -0.319626 0.439780\nvn -0.795280 -0.594614 0.118172\nvn -0.839305 -0.319626 0.439780\nvn -0.806323 -0.352194 0.475187\nvn -0.705546 -0.044192 0.707285\nvn -0.705546 -0.044192 0.707285\nvn -0.746438 0.010041 0.665379\nvn -0.839305 -0.319626 0.439780\nvn -0.869714 -0.307484 0.386072\nvn -0.839305 -0.319626 0.439780\nvn -0.746438 0.010041 0.665379\nvn -0.746438 0.010041 0.665379\nvn -0.794164 0.045687 0.605984\nvn -0.869714 -0.307484 0.386072\nvn -0.888811 -0.315172 0.332690\nvn -0.869714 -0.307484 0.386072\nvn -0.794164 0.045687 0.605984\nvn -0.794164 0.045687 0.605984\nvn -0.838914 0.059940 0.540954\nvn -0.888811 -0.315172 0.332690\nvn -0.838914 0.059940 0.540954\nvn -0.794164 0.045687 0.605984\nvn -0.600995 0.377041 0.704731\nvn -0.600995 0.377041 0.704731\nvn -0.656556 0.409809 0.633239\nvn -0.838914 0.059940 0.540954\nvn -0.549105 0.325215 0.769882\nvn -0.600995 0.377041 0.704731\nvn -0.794164 0.045687 0.605984\nvn -0.794164 0.045687 0.605984\nvn -0.746438 0.010041 0.665379\nvn -0.549105 0.325215 0.769882\nvn -0.508169 0.258830 0.821445\nvn -0.549105 0.325215 0.769882\nvn -0.746438 0.010041 0.665379\nvn -0.746438 0.010041 0.665379\nvn -0.705546 -0.044192 0.707285\nvn -0.508169 0.258830 0.821445\nvn -0.549105 0.325215 0.769882\nvn -0.508169 0.258830 0.821445\nvn -0.247239 0.515535 0.820425\nvn -0.247239 0.515535 0.820425\nvn -0.285477 0.581331 0.761943\nvn -0.549105 0.325215 0.769882\nvn -0.600995 0.377041 0.704731\nvn -0.549105 0.325215 0.769882\nvn -0.285477 0.581331 0.761943\nvn -0.285477 0.581331 0.761943\nvn -0.335716 0.636396 0.694475\nvn -0.600995 0.377041 0.704731\nvn -0.656556 0.409809 0.633239\nvn -0.600995 0.377041 0.704731\nvn -0.335716 0.636396 0.694475\nvn -0.335716 0.636396 0.694475\nvn -0.392663 0.677318 0.622139\nvn -0.656556 0.409809 0.633239\nvn -0.702245 0.425161 0.571043\nvn -0.656556 0.409809 0.633239\nvn -0.392663 0.677318 0.622139\nvn -0.392663 0.677318 0.622139\nvn -0.444997 0.703430 0.554223\nvn -0.702245 0.425161 0.571043\nvn -0.444997 0.703430 0.554223\nvn -0.392663 0.677318 0.622139\nvn -0.085974 0.841606 0.533206\nvn -0.085974 0.841606 0.533206\nvn -0.139533 0.872262 0.468710\nvn -0.444997 0.703430 0.554223\nvn -0.031130 0.801673 0.596952\nvn -0.085974 0.841606 0.533206\nvn -0.392663 0.677318 0.622139\nvn -0.392663 0.677318 0.622139\nvn -0.335716 0.636396 0.694475\nvn -0.031130 0.801673 0.596952\nvn 0.015870 0.753947 0.656743\nvn -0.031130 0.801673 0.596952\nvn -0.335716 0.636396 0.694475\nvn -0.335716 0.636396 0.694475\nvn -0.285477 0.581331 0.761943\nvn 0.015870 0.753947 0.656743\nvn 0.049838 0.699775 0.712623\nvn 0.015870 0.753947 0.656743\nvn -0.285477 0.581331 0.761943\nvn -0.285477 0.581331 0.761943\nvn -0.247239 0.515535 0.820425\nvn 0.049838 0.699775 0.712623\nvn 0.015870 0.753947 0.656743\nvn 0.049838 0.699775 0.712623\nvn 0.352251 0.788613 0.503992\nvn 0.352251 0.788613 0.503992\nvn 0.325887 0.823478 0.464415\nvn 0.015870 0.753947 0.656743\nvn -0.031130 0.801673 0.596952\nvn 0.015870 0.753947 0.656743\nvn 0.325887 0.823478 0.464415\nvn 0.325887 0.823478 0.464415\nvn 0.284897 0.858414 0.426567\nvn -0.031130 0.801673 0.596952\nvn -0.085974 0.841606 0.533206\nvn -0.031130 0.801673 0.596952\nvn 0.284897 0.858414 0.426567\nvn 0.284897 0.858414 0.426567\nvn 0.235179 0.892832 0.384112\nvn -0.085974 0.841606 0.533206\nvn -0.139533 0.872262 0.468710\nvn -0.085974 0.841606 0.533206\nvn 0.235179 0.892832 0.384112\nvn 0.235179 0.892832 0.384112\nvn 0.184610 0.924548 0.333361\nvn -0.139533 0.872262 0.468710\nvn -0.271652 0.903186 -0.332355\nvn -0.257152 0.905312 -0.338058\nvn 0.046266 0.993448 -0.104496\nvn 0.046266 0.993448 -0.104496\nvn 0.050784 0.990809 -0.125373\nvn -0.271652 0.903186 -0.332355\nvn 0.046266 0.993448 -0.104496\nvn -0.257152 0.905312 -0.338058\nvn -0.301011 0.912830 -0.275924\nvn -0.301011 0.912830 -0.275924\nvn 0.001831 0.999343 -0.036196\nvn 0.046266 0.993448 -0.104496\nvn 0.001831 0.999343 -0.036196\nvn -0.301011 0.912830 -0.275924\nvn -0.371482 0.910117 -0.183543\nvn -0.371482 0.910117 -0.183543\nvn -0.070165 0.995852 0.057926\nvn 0.001831 0.999343 -0.036196\nvn -0.608468 0.687086 -0.397090\nvn -0.371482 0.910117 -0.183543\nvn -0.301011 0.912830 -0.275924\nvn -0.301011 0.912830 -0.275924\nvn -0.551788 0.685706 -0.474696\nvn -0.608468 0.687086 -0.397090\nvn -0.551788 0.685706 -0.474696\nvn -0.301011 0.912830 -0.275924\nvn -0.257152 0.905312 -0.338058\nvn -0.257152 0.905312 -0.338058\nvn -0.518862 0.676220 -0.522982\nvn -0.551788 0.685706 -0.474696\nvn -0.518862 0.676220 -0.522982\nvn -0.257152 0.905312 -0.338058\nvn -0.271652 0.903186 -0.332355\nvn -0.271652 0.903186 -0.332355\nvn -0.552427 0.668552 -0.497859\nvn -0.518862 0.676220 -0.522982\nvn -0.694724 0.346644 -0.630235\nvn -0.518862 0.676220 -0.522982\nvn -0.552427 0.668552 -0.497859\nvn -0.552427 0.668552 -0.497859\nvn -0.740799 0.335073 -0.582189\nvn -0.694724 0.346644 -0.630235\nvn -0.518862 0.676220 -0.522982\nvn -0.694724 0.346644 -0.630235\nvn -0.711320 0.358147 -0.604776\nvn -0.711320 0.358147 -0.604776\nvn -0.551788 0.685706 -0.474696\nvn -0.518862 0.676220 -0.522982\nvn -0.551788 0.685706 -0.474696\nvn -0.711320 0.358147 -0.604776\nvn -0.746630 0.366631 -0.555090\nvn -0.746630 0.366631 -0.555090\nvn -0.608468 0.687086 -0.397090\nvn -0.551788 0.685706 -0.474696\nvn -0.770915 -0.001587 -0.636936\nvn -0.746630 0.366631 -0.555090\nvn -0.711320 0.358147 -0.604776\nvn -0.711320 0.358147 -0.604776\nvn -0.760662 -0.016755 -0.648931\nvn -0.770915 -0.001587 -0.636936\nvn -0.760662 -0.016755 -0.648931\nvn -0.711320 0.358147 -0.604776\nvn -0.694724 0.346644 -0.630235\nvn -0.694724 0.346644 -0.630235\nvn -0.764555 -0.030122 -0.643854\nvn -0.760662 -0.016755 -0.648931\nvn -0.764555 -0.030122 -0.643854\nvn -0.694724 0.346644 -0.630235\nvn -0.740799 0.335073 -0.582189\nvn -0.740799 0.335073 -0.582189\nvn -0.819658 -0.043490 -0.571200\nvn -0.764555 -0.030122 -0.643854\nvn -0.723239 -0.402363 -0.561275\nvn -0.764555 -0.030122 -0.643854\nvn -0.819658 -0.043490 -0.571200\nvn -0.819658 -0.043490 -0.571200\nvn -0.779945 -0.416097 -0.467491\nvn -0.723239 -0.402363 -0.561275\nvn -0.764555 -0.030122 -0.643854\nvn -0.723239 -0.402363 -0.561275\nvn -0.699126 -0.388780 -0.600061\nvn -0.699126 -0.388780 -0.600061\nvn -0.760662 -0.016755 -0.648931\nvn -0.764555 -0.030122 -0.643854\nvn -0.760662 -0.016755 -0.648931\nvn -0.699126 -0.388780 -0.600061\nvn -0.682784 -0.370813 -0.629527\nvn -0.682784 -0.370813 -0.629527\nvn -0.770915 -0.001587 -0.636936\nvn -0.760662 -0.016755 -0.648931\nvn -0.494442 -0.692085 -0.525877\nvn -0.682784 -0.370813 -0.629527\nvn -0.699126 -0.388780 -0.600061\nvn -0.699126 -0.388780 -0.600061\nvn -0.536288 -0.708388 -0.458891\nvn -0.494442 -0.692085 -0.525877\nvn -0.536288 -0.708388 -0.458891\nvn -0.699126 -0.388780 -0.600061\nvn -0.723239 -0.402363 -0.561275\nvn -0.723239 -0.402363 -0.561275\nvn -0.575108 -0.718398 -0.391351\nvn -0.536288 -0.708388 -0.458891\nvn -0.575108 -0.718398 -0.391351\nvn -0.723239 -0.402363 -0.561275\nvn -0.779945 -0.416097 -0.467491\nvn -0.779945 -0.416097 -0.467491\nvn -0.618322 -0.729810 -0.291643\nvn -0.575108 -0.718398 -0.391351\nvn -0.336356 -0.928557 -0.156992\nvn -0.575108 -0.718398 -0.391351\nvn -0.618322 -0.729810 -0.291643\nvn -0.618322 -0.729810 -0.291643\nvn -0.353782 -0.931883 -0.080205\nvn -0.336356 -0.928557 -0.156992\nvn -0.575108 -0.718398 -0.391351\nvn -0.336356 -0.928557 -0.156992\nvn -0.291057 -0.926641 -0.237955\nvn -0.291057 -0.926641 -0.237955\nvn -0.536288 -0.708388 -0.458891\nvn -0.575108 -0.718398 -0.391351\nvn -0.536288 -0.708388 -0.458891\nvn -0.291057 -0.926641 -0.237955\nvn -0.228709 -0.915691 -0.330459\nvn -0.228709 -0.915691 -0.330459\nvn -0.494442 -0.692085 -0.525877\nvn -0.536288 -0.708388 -0.458891\nvn 0.075322 -0.994649 -0.070713\nvn -0.228709 -0.915691 -0.330459\nvn -0.291057 -0.926641 -0.237955\nvn -0.291057 -0.926641 -0.237955\nvn 0.002533 -0.999575 0.029023\nvn 0.075322 -0.994649 -0.070713\nvn 0.002533 -0.999575 0.029023\nvn -0.291057 -0.926641 -0.237955\nvn -0.336356 -0.928557 -0.156992\nvn -0.336356 -0.928557 -0.156992\nvn -0.040346 -0.993897 0.102668\nvn 0.002533 -0.999575 0.029023\nvn -0.040346 -0.993897 0.102668\nvn -0.336356 -0.928557 -0.156992\nvn -0.353782 -0.931883 -0.080205\nvn -0.353782 -0.931883 -0.080205\nvn -0.027101 -0.991206 0.129524\nvn -0.040346 -0.993897 0.102668\nvn -0.682784 -0.370813 -0.629527\nvn -0.494442 -0.692085 -0.525877\nvn -0.473382 -0.680515 -0.559293\nvn -0.473382 -0.680515 -0.559293\nvn -0.689526 -0.362907 -0.626779\nvn -0.682784 -0.370813 -0.629527\nvn -0.770915 -0.001587 -0.636936\nvn -0.682784 -0.370813 -0.629527\nvn -0.689526 -0.362907 -0.626779\nvn -0.689526 -0.362907 -0.626779\nvn -0.800635 0.002289 -0.599148\nvn -0.770915 -0.001587 -0.636936\nvn -0.746630 0.366631 -0.555090\nvn -0.770915 -0.001587 -0.636936\nvn -0.800635 0.002289 -0.599148\nvn -0.800635 0.002289 -0.599148\nvn -0.793719 0.363822 -0.487487\nvn -0.746630 0.366631 -0.555090\nvn -0.608468 0.687086 -0.397090\nvn -0.746630 0.366631 -0.555090\nvn -0.793719 0.363822 -0.487487\nvn -0.793719 0.363822 -0.487487\nvn -0.669590 0.675358 -0.309098\nvn -0.608468 0.687086 -0.397090\nvn -0.371482 0.910117 -0.183543\nvn -0.608468 0.687086 -0.397090\nvn -0.669590 0.675358 -0.309098\nvn -0.669590 0.675358 -0.309098\nvn -0.442068 0.892802 -0.086491\nvn -0.371482 0.910117 -0.183543\nvn -0.070165 0.995852 0.057926\nvn -0.371482 0.910117 -0.183543\nvn -0.442068 0.892802 -0.086491\nvn -0.442068 0.892802 -0.086491\nvn -0.140970 0.978244 0.152201\nvn -0.070165 0.995852 0.057926\nvn -0.140970 0.978244 0.152201\nvn -0.442068 0.892802 -0.086491\nvn -0.481990 0.876053 -0.014741\nvn -0.481990 0.876053 -0.014741\nvn -0.173350 0.962608 0.208172\nvn -0.140970 0.978244 0.152201\nvn -0.173350 0.962608 0.208172\nvn -0.481990 0.876053 -0.014741\nvn -0.494689 0.868612 0.028230\nvn -0.494689 0.868612 0.028230\nvn -0.168038 0.961897 0.215678\nvn -0.173350 0.962608 0.208172\nvn -0.168038 0.961897 0.215678\nvn -0.494689 0.868612 0.028230\nvn -0.488703 0.871901 0.030946\nvn -0.488703 0.871901 0.030946\nvn -0.136970 0.979147 0.150032\nvn -0.168038 0.961897 0.215678\nvn -0.767263 0.636700 -0.076940\nvn -0.488703 0.871901 0.030946\nvn -0.494689 0.868612 0.028230\nvn -0.494689 0.868612 0.028230\nvn -0.746934 0.647715 -0.150186\nvn -0.767263 0.636700 -0.076940\nvn -0.746934 0.647715 -0.150186\nvn -0.494689 0.868612 0.028230\nvn -0.481990 0.876053 -0.014741\nvn -0.481990 0.876053 -0.014741\nvn -0.714919 0.661143 -0.227553\nvn -0.746934 0.647715 -0.150186\nvn -0.714919 0.661143 -0.227553\nvn -0.481990 0.876053 -0.014741\nvn -0.442068 0.892802 -0.086491\nvn -0.442068 0.892802 -0.086491\nvn -0.669590 0.675358 -0.309098\nvn -0.714919 0.661143 -0.227553\nvn -0.669590 0.675358 -0.309098\nvn -0.793719 0.363822 -0.487487\nvn -0.844191 0.353625 -0.402853\nvn -0.844191 0.353625 -0.402853\nvn -0.714919 0.661143 -0.227553\nvn -0.669590 0.675358 -0.309098\nvn -0.714919 0.661143 -0.227553\nvn -0.844191 0.353625 -0.402853\nvn -0.894876 0.334548 -0.295423\nvn -0.894876 0.334548 -0.295423\nvn -0.746934 0.647715 -0.150186\nvn -0.714919 0.661143 -0.227553\nvn -0.746934 0.647715 -0.150186\nvn -0.894876 0.334548 -0.295423\nvn -0.937390 0.310164 -0.158424\nvn -0.937390 0.310164 -0.158424\nvn -0.767263 0.636700 -0.076940\nvn -0.746934 0.647715 -0.150186\nvn -0.975810 -0.067447 -0.207956\nvn -0.937390 0.310164 -0.158424\nvn -0.894876 0.334548 -0.295423\nvn -0.894876 0.334548 -0.295423\nvn -0.918967 -0.032442 -0.392997\nvn -0.975810 -0.067447 -0.207956\nvn -0.918967 -0.032442 -0.392997\nvn -0.894876 0.334548 -0.295423\nvn -0.844191 0.353625 -0.402853\nvn -0.844191 0.353625 -0.402853\nvn -0.853855 -0.006684 -0.520468\nvn -0.918967 -0.032442 -0.392997\nvn -0.853855 -0.006684 -0.520468\nvn -0.844191 0.353625 -0.402853\nvn -0.793719 0.363822 -0.487487\nvn -0.793719 0.363822 -0.487487\nvn -0.800635 0.002289 -0.599148\nvn -0.853855 -0.006684 -0.520468\nvn -0.737046 -0.372796 -0.563726\nvn -0.853855 -0.006684 -0.520468\nvn -0.800635 0.002289 -0.599148\nvn -0.800635 0.002289 -0.599148\nvn -0.689526 -0.362907 -0.626779\nvn -0.737046 -0.372796 -0.563726\nvn -0.853855 -0.006684 -0.520468\nvn -0.737046 -0.372796 -0.563726\nvn -0.806718 -0.403344 -0.431879\nvn -0.806718 -0.403344 -0.431879\nvn -0.918967 -0.032442 -0.392997\nvn -0.853855 -0.006684 -0.520468\nvn -0.918967 -0.032442 -0.392997\nvn -0.806718 -0.403344 -0.431879\nvn -0.868853 -0.441706 -0.223584\nvn -0.868853 -0.441706 -0.223584\nvn -0.975810 -0.067447 -0.207956\nvn -0.918967 -0.032442 -0.392997\nvn -0.625162 -0.752490 -0.207197\nvn -0.868853 -0.441706 -0.223584\nvn -0.806718 -0.403344 -0.431879\nvn -0.806718 -0.403344 -0.431879\nvn -0.564662 -0.718265 -0.406513\nvn -0.625162 -0.752490 -0.207197\nvn -0.564662 -0.718265 -0.406513\nvn -0.806718 -0.403344 -0.431879\nvn -0.737046 -0.372796 -0.563726\nvn -0.737046 -0.372796 -0.563726\nvn -0.503265 -0.688763 -0.521852\nvn -0.564662 -0.718265 -0.406513\nvn -0.503265 -0.688763 -0.521852\nvn -0.737046 -0.372796 -0.563726\nvn -0.689526 -0.362907 -0.626779\nvn -0.689526 -0.362907 -0.626779\nvn -0.473382 -0.680515 -0.559293\nvn -0.503265 -0.688763 -0.521852\nvn -0.186256 -0.898658 -0.397142\nvn -0.503265 -0.688763 -0.521852\nvn -0.473382 -0.680515 -0.559293\nvn -0.473382 -0.680515 -0.559293\nvn -0.181285 -0.899104 -0.398432\nvn -0.186256 -0.898658 -0.397142\nvn -0.181285 -0.899104 -0.398432\nvn -0.473382 -0.680515 -0.559293\nvn -0.494442 -0.692085 -0.525877\nvn -0.494442 -0.692085 -0.525877\nvn -0.228709 -0.915691 -0.330459\nvn -0.181285 -0.899104 -0.398432\nvn -0.503265 -0.688763 -0.521852\nvn -0.186256 -0.898658 -0.397142\nvn -0.229230 -0.918812 -0.321306\nvn -0.229230 -0.918812 -0.321306\nvn -0.564662 -0.718265 -0.406513\nvn -0.503265 -0.688763 -0.521852\nvn -0.564662 -0.718265 -0.406513\nvn -0.229230 -0.918812 -0.321306\nvn -0.282271 -0.945116 -0.164559\nvn -0.282271 -0.945116 -0.164559\nvn -0.625162 -0.752490 -0.207197\nvn -0.564662 -0.718265 -0.406513\nvn 0.099280 -0.989685 -0.103278\nvn -0.282271 -0.945116 -0.164559\nvn -0.229230 -0.918812 -0.321306\nvn -0.229230 -0.918812 -0.321306\nvn 0.137611 -0.971910 -0.190927\nvn 0.099280 -0.989685 -0.103278\nvn 0.137611 -0.971910 -0.190927\nvn -0.229230 -0.918812 -0.321306\nvn -0.186256 -0.898658 -0.397142\nvn -0.186256 -0.898658 -0.397142\nvn 0.157844 -0.965128 -0.208840\nvn 0.137611 -0.971910 -0.190927\nvn 0.157844 -0.965128 -0.208840\nvn -0.186256 -0.898658 -0.397142\nvn -0.181285 -0.899104 -0.398432\nvn -0.181285 -0.899104 -0.398432\nvn 0.139562 -0.976139 -0.166357\nvn 0.157844 -0.965128 -0.208840\nvn 0.139562 -0.976139 -0.166357\nvn -0.181285 -0.899104 -0.398432\nvn -0.228709 -0.915691 -0.330459\nvn -0.228709 -0.915691 -0.330459\nvn 0.075322 -0.994649 -0.070713\nvn 0.139562 -0.976139 -0.166357\nvn 0.434465 -0.895664 0.095005\nvn 0.139562 -0.976139 -0.166357\nvn 0.075322 -0.994649 -0.070713\nvn 0.075322 -0.994649 -0.070713\nvn 0.365372 -0.908699 0.201913\nvn 0.434465 -0.895664 0.095005\nvn 0.139562 -0.976139 -0.166357\nvn 0.434465 -0.895664 0.095005\nvn 0.471485 -0.881779 0.012910\nvn 0.471485 -0.881779 0.012910\nvn 0.157844 -0.965128 -0.208840\nvn 0.139562 -0.976139 -0.166357\nvn 0.476591 -0.878501 -0.033113\nvn 0.137611 -0.971910 -0.190927\nvn 0.157844 -0.965128 -0.208840\nvn 0.157844 -0.965128 -0.208840\nvn 0.471485 -0.881779 0.012910\nvn 0.476591 -0.878501 -0.033113\nvn 0.460808 -0.887036 -0.028688\nvn 0.099280 -0.989685 -0.103278\nvn 0.137611 -0.971910 -0.190927\nvn 0.137611 -0.971910 -0.190927\nvn 0.476591 -0.878501 -0.033113\nvn 0.460808 -0.887036 -0.028688\nvn -0.282271 -0.945116 -0.164559\nvn 0.099280 -0.989685 -0.103278\nvn 0.074132 -0.997004 0.022066\nvn 0.074132 -0.997004 0.022066\nvn -0.310351 -0.950280 0.025514\nvn -0.282271 -0.945116 -0.164559\nvn -0.625162 -0.752490 -0.207197\nvn -0.282271 -0.945116 -0.164559\nvn -0.310351 -0.950280 0.025514\nvn -0.310351 -0.950280 0.025514\nvn -0.649111 -0.760414 0.020631\nvn -0.625162 -0.752490 -0.207197\nvn -0.868853 -0.441706 -0.223584\nvn -0.625162 -0.752490 -0.207197\nvn -0.649111 -0.760414 0.020631\nvn -0.649111 -0.760414 0.020631\nvn -0.889619 -0.456621 0.008667\nvn -0.868853 -0.441706 -0.223584\nvn -0.975810 -0.067447 -0.207956\nvn -0.868853 -0.441706 -0.223584\nvn -0.889619 -0.456621 0.008667\nvn -0.889619 -0.456621 0.008667\nvn -0.996310 -0.085636 -0.005676\nvn -0.975810 -0.067447 -0.207956\nvn -0.937390 0.310164 -0.158424\nvn -0.975810 -0.067447 -0.207956\nvn -0.996310 -0.085636 -0.005676\nvn -0.996310 -0.085636 -0.005676\nvn -0.954579 0.297531 -0.015931\nvn -0.937390 0.310164 -0.158424\nvn -0.767263 0.636700 -0.076940\nvn -0.937390 0.310164 -0.158424\nvn -0.954579 0.297531 -0.015931\nvn -0.954579 0.297531 -0.015931\nvn -0.771972 0.635461 -0.015748\nvn -0.767263 0.636700 -0.076940\nvn -0.488703 0.871901 0.030946\nvn -0.767263 0.636700 -0.076940\nvn -0.771972 0.635461 -0.015748\nvn -0.771972 0.635461 -0.015748\nvn -0.473351 0.880873 -0.001434\nvn -0.488703 0.871901 0.030946\nvn -0.136970 0.979147 0.150032\nvn -0.488703 0.871901 0.030946\nvn -0.473351 0.880873 -0.001434\nvn -0.473351 0.880873 -0.001434\nvn -0.101963 0.994483 0.024629\nvn -0.136970 0.979147 0.150032\nvn -0.101963 0.994483 0.024629\nvn -0.473351 0.880873 -0.001434\nvn -0.466056 0.882944 -0.056582\nvn -0.466056 0.882944 -0.056582\nvn -0.092075 0.988009 -0.123936\nvn -0.101963 0.994483 0.024629\nvn -0.092075 0.988009 -0.123936\nvn -0.466056 0.882944 -0.056582\nvn -0.475493 0.870353 -0.128029\nvn -0.475493 0.870353 -0.128029\nvn -0.116857 0.953260 -0.278638\nvn -0.092075 0.988009 -0.123936\nvn -0.116857 0.953260 -0.278638\nvn -0.475493 0.870353 -0.128029\nvn -0.504944 0.838186 -0.206098\nvn -0.504944 0.838186 -0.206098\nvn -0.173929 0.889848 -0.421806\nvn -0.116857 0.953260 -0.278638\nvn -0.759053 0.650067 0.035372\nvn -0.504944 0.838186 -0.206098\nvn -0.475493 0.870353 -0.128029\nvn -0.475493 0.870353 -0.128029\nvn -0.760811 0.647860 0.037996\nvn -0.759053 0.650067 0.035372\nvn -0.760811 0.647860 0.037996\nvn -0.475493 0.870353 -0.128029\nvn -0.466056 0.882944 -0.056582\nvn -0.466056 0.882944 -0.056582\nvn -0.767444 0.640727 0.022340\nvn -0.760811 0.647860 0.037996\nvn -0.767444 0.640727 0.022340\nvn -0.466056 0.882944 -0.056582\nvn -0.473351 0.880873 -0.001434\nvn -0.473351 0.880873 -0.001434\nvn -0.771972 0.635461 -0.015748\nvn -0.767444 0.640727 0.022340\nvn -0.771972 0.635461 -0.015748\nvn -0.954579 0.297531 -0.015931\nvn -0.947532 0.303209 0.101232\nvn -0.947532 0.303209 0.101232\nvn -0.767444 0.640727 0.022340\nvn -0.771972 0.635461 -0.015748\nvn -0.767444 0.640727 0.022340\nvn -0.947532 0.303209 0.101232\nvn -0.925119 0.326765 0.193337\nvn -0.925119 0.326765 0.193337\nvn -0.760811 0.647860 0.037996\nvn -0.767444 0.640727 0.022340\nvn -0.760811 0.647860 0.037996\nvn -0.925119 0.326765 0.193337\nvn -0.894486 0.361438 0.263167\nvn -0.894486 0.361438 0.263167\nvn -0.759053 0.650067 0.035372\nvn -0.760811 0.647860 0.037996\nvn -0.894398 0.021150 0.446772\nvn -0.894486 0.361438 0.263167\nvn -0.925119 0.326765 0.193337\nvn -0.925119 0.326765 0.193337\nvn -0.947554 -0.039187 0.317184\nvn -0.894398 0.021150 0.446772\nvn -0.947554 -0.039187 0.317184\nvn -0.925119 0.326765 0.193337\nvn -0.947532 0.303209 0.101232\nvn -0.947532 0.303209 0.101232\nvn -0.982832 -0.076328 0.167976\nvn -0.947554 -0.039187 0.317184\nvn -0.982832 -0.076328 0.167976\nvn -0.947532 0.303209 0.101232\nvn -0.954579 0.297531 -0.015931\nvn -0.954579 0.297531 -0.015931\nvn -0.996310 -0.085636 -0.005676\nvn -0.982832 -0.076328 0.167976\nvn -0.872767 -0.439909 0.211561\nvn -0.982832 -0.076328 0.167976\nvn -0.996310 -0.085636 -0.005676\nvn -0.996310 -0.085636 -0.005676\nvn -0.889619 -0.456621 0.008667\nvn -0.872767 -0.439909 0.211561\nvn -0.982832 -0.076328 0.167976\nvn -0.872767 -0.439909 0.211561\nvn -0.830657 -0.393217 0.394194\nvn -0.830657 -0.393217 0.394194\nvn -0.947554 -0.039187 0.317184\nvn -0.982832 -0.076328 0.167976\nvn -0.947554 -0.039187 0.317184\nvn -0.830657 -0.393217 0.394194\nvn -0.762965 -0.317132 0.563304\nvn -0.762965 -0.317132 0.563304\nvn -0.894398 0.021150 0.446772\nvn -0.947554 -0.039187 0.317184\nvn -0.520480 -0.607553 0.599984\nvn -0.762965 -0.317132 0.563304\nvn -0.830657 -0.393217 0.394194\nvn -0.830657 -0.393217 0.394194\nvn -0.594307 -0.688338 0.415921\nvn -0.520480 -0.607553 0.599984\nvn -0.594307 -0.688338 0.415921\nvn -0.830657 -0.393217 0.394194\nvn -0.872767 -0.439909 0.211561\nvn -0.872767 -0.439909 0.211561\nvn -0.636267 -0.737988 0.224806\nvn -0.594307 -0.688338 0.415921\nvn -0.636267 -0.737988 0.224806\nvn -0.872767 -0.439909 0.211561\nvn -0.889619 -0.456621 0.008667\nvn -0.889619 -0.456621 0.008667\nvn -0.649111 -0.760414 0.020631\nvn -0.636267 -0.737988 0.224806\nvn -0.306257 -0.929789 0.204202\nvn -0.636267 -0.737988 0.224806\nvn -0.649111 -0.760414 0.020631\nvn -0.649111 -0.760414 0.020631\nvn -0.310351 -0.950280 0.025514\nvn -0.306257 -0.929789 0.204202\nvn -0.636267 -0.737988 0.224806\nvn -0.306257 -0.929789 0.204202\nvn -0.270489 -0.885081 0.378771\nvn -0.270489 -0.885081 0.378771\nvn -0.594307 -0.688338 0.415921\nvn -0.636267 -0.737988 0.224806\nvn -0.594307 -0.688338 0.415921\nvn -0.270489 -0.885081 0.378771\nvn -0.200207 -0.809864 0.551395\nvn -0.200207 -0.809864 0.551395\nvn -0.520480 -0.607553 0.599984\nvn -0.594307 -0.688338 0.415921\nvn 0.153269 -0.894068 0.420894\nvn -0.200207 -0.809864 0.551395\nvn -0.270489 -0.885081 0.378771\nvn -0.270489 -0.885081 0.378771\nvn 0.097358 -0.953646 0.284748\nvn 0.153269 -0.894068 0.420894\nvn 0.097358 -0.953646 0.284748\nvn -0.270489 -0.885081 0.378771\nvn -0.306257 -0.929789 0.204202\nvn -0.306257 -0.929789 0.204202\nvn 0.071812 -0.985925 0.150979\nvn 0.097358 -0.953646 0.284748\nvn 0.071812 -0.985925 0.150979\nvn -0.306257 -0.929789 0.204202\nvn -0.310351 -0.950280 0.025514\nvn -0.310351 -0.950280 0.025514\nvn 0.074132 -0.997004 0.022066\nvn 0.071812 -0.985925 0.150979\nvn 0.443716 -0.893291 0.071750\nvn 0.071812 -0.985925 0.150979\nvn 0.074132 -0.997004 0.022066\nvn 0.074132 -0.997004 0.022066\nvn 0.447625 -0.894121 0.013398\nvn 0.443716 -0.893291 0.071750\nvn 0.455714 -0.878528 0.143227\nvn 0.097358 -0.953646 0.284748\nvn 0.071812 -0.985925 0.150979\nvn 0.071812 -0.985925 0.150979\nvn 0.443716 -0.893291 0.071750\nvn 0.455714 -0.878528 0.143227\nvn 0.487207 -0.844463 0.222515\nvn 0.153269 -0.894068 0.420894\nvn 0.097358 -0.953646 0.284748\nvn 0.097358 -0.953646 0.284748\nvn 0.455714 -0.878528 0.143227\nvn 0.487207 -0.844463 0.222515\nvn -0.200207 -0.809864 0.551395\nvn 0.153269 -0.894068 0.420894\nvn 0.227825 -0.812327 0.536862\nvn 0.227825 -0.812327 0.536862\nvn -0.106634 -0.708441 0.697668\nvn -0.200207 -0.809864 0.551395\nvn -0.520480 -0.607553 0.599984\nvn -0.200207 -0.809864 0.551395\nvn -0.106634 -0.708441 0.697668\nvn -0.106634 -0.708441 0.697668\nvn -0.422389 -0.501160 0.755265\nvn -0.520480 -0.607553 0.599984\nvn -0.762965 -0.317132 0.563304\nvn -0.520480 -0.607553 0.599984\nvn -0.422389 -0.501160 0.755265\nvn -0.422389 -0.501160 0.755265\nvn -0.674962 -0.220196 0.704230\nvn -0.762965 -0.317132 0.563304\nvn -0.894398 0.021150 0.446772\nvn -0.762965 -0.317132 0.563304\nvn -0.674962 -0.220196 0.704230\nvn -0.674962 -0.220196 0.704230\nvn -0.828894 0.095280 0.551233\nvn -0.894398 0.021150 0.446772\nvn -0.894486 0.361438 0.263167\nvn -0.894398 0.021150 0.446772\nvn -0.828894 0.095280 0.551233\nvn -0.828894 0.095280 0.551233\nvn -0.860609 0.400960 0.313981\nvn -0.894486 0.361438 0.263167\nvn -0.759053 0.650067 0.035372\nvn -0.894486 0.361438 0.263167\nvn -0.860609 0.400960 0.313981\nvn -0.860609 0.400960 0.313981\nvn -0.761882 0.647252 0.024507\nvn -0.759053 0.650067 0.035372\nvn -0.504944 0.838186 -0.206098\nvn -0.759053 0.650067 0.035372\nvn -0.761882 0.647252 0.024507\nvn -0.761882 0.647252 0.024507\nvn -0.545160 0.791783 -0.275464\nvn -0.504944 0.838186 -0.206098\nvn -0.173929 0.889848 -0.421806\nvn -0.504944 0.838186 -0.206098\nvn -0.545160 0.791783 -0.275464\nvn -0.545160 0.791783 -0.275464\nvn -0.246198 0.807658 -0.535794\nvn -0.173929 0.889848 -0.421806\nvn -0.246198 0.807658 -0.535794\nvn -0.545160 0.791783 -0.275464\nvn -0.587648 0.740426 -0.326250\nvn -0.587648 0.740426 -0.326250\nvn -0.319143 0.720170 -0.616038\nvn -0.246198 0.807658 -0.535794\nvn -0.319143 0.720170 -0.616038\nvn -0.587648 0.740426 -0.326250\nvn -0.629827 0.687966 -0.360585\nvn -0.629827 0.687966 -0.360585\nvn -0.389063 0.632731 -0.669538\nvn -0.319143 0.720170 -0.616038\nvn -0.389063 0.632731 -0.669538\nvn -0.629827 0.687966 -0.360585\nvn -0.671177 0.636568 -0.379872\nvn -0.671177 0.636568 -0.379872\nvn -0.456596 0.548153 -0.700749\nvn -0.389063 0.632731 -0.669538\nvn -0.781195 0.624266 0.005097\nvn -0.671177 0.636568 -0.379872\nvn -0.629827 0.687966 -0.360585\nvn -0.629827 0.687966 -0.360585\nvn -0.773633 0.633579 0.008362\nvn -0.781195 0.624266 0.005097\nvn -0.773633 0.633579 0.008362\nvn -0.629827 0.687966 -0.360585\nvn -0.587648 0.740426 -0.326250\nvn -0.587648 0.740426 -0.326250\nvn -0.766984 0.641488 0.015138\nvn -0.773633 0.633579 0.008362\nvn -0.766984 0.641488 0.015138\nvn -0.587648 0.740426 -0.326250\nvn -0.545160 0.791783 -0.275464\nvn -0.545160 0.791783 -0.275464\nvn -0.761882 0.647252 0.024507\nvn -0.766984 0.641488 0.015138\nvn -0.761882 0.647252 0.024507\nvn -0.860609 0.400960 0.313981\nvn -0.826800 0.440516 0.349782\nvn -0.826800 0.440516 0.349782\nvn -0.766984 0.641488 0.015138\nvn -0.761882 0.647252 0.024507\nvn -0.766984 0.641488 0.015138\nvn -0.826800 0.440516 0.349782\nvn -0.795330 0.477778 0.373067\nvn -0.795330 0.477778 0.373067\nvn -0.773633 0.633579 0.008362\nvn -0.766984 0.641488 0.015138\nvn -0.773633 0.633579 0.008362\nvn -0.795330 0.477778 0.373067\nvn -0.767011 0.511961 0.386771\nvn -0.767011 0.511961 0.386771\nvn -0.781195 0.624266 0.005097\nvn -0.773633 0.633579 0.008362\nvn -0.635163 0.321060 0.702488\nvn -0.767011 0.511961 0.386771\nvn -0.795330 0.477778 0.373067\nvn -0.795330 0.477778 0.373067\nvn -0.694922 0.249006 0.674596\nvn -0.635163 0.321060 0.702488\nvn -0.694922 0.249006 0.674596\nvn -0.795330 0.477778 0.373067\nvn -0.826800 0.440516 0.349782\nvn -0.826800 0.440516 0.349782\nvn -0.760416 0.172860 0.626009\nvn -0.694922 0.249006 0.674596\nvn -0.760416 0.172860 0.626009\nvn -0.826800 0.440516 0.349782\nvn -0.860609 0.400960 0.313981\nvn -0.860609 0.400960 0.313981\nvn -0.828894 0.095280 0.551233\nvn -0.760416 0.172860 0.626009\nvn -0.582216 -0.116523 0.804641\nvn -0.760416 0.172860 0.626009\nvn -0.828894 0.095280 0.551233\nvn -0.828894 0.095280 0.551233\nvn -0.674962 -0.220196 0.704230\nvn -0.582216 -0.116523 0.804641\nvn -0.760416 0.172860 0.626009\nvn -0.582216 -0.116523 0.804641\nvn -0.493616 -0.013123 0.869581\nvn -0.493616 -0.013123 0.869581\nvn -0.694922 0.249006 0.674596\nvn -0.760416 0.172860 0.626009\nvn -0.694922 0.249006 0.674596\nvn -0.493616 -0.013123 0.869581\nvn -0.412379 0.085638 0.906978\nvn -0.412379 0.085638 0.906978\nvn -0.635163 0.321060 0.702488\nvn -0.694922 0.249006 0.674596\nvn -0.133215 -0.159523 0.978165\nvn -0.412379 0.085638 0.906978\nvn -0.493616 -0.013123 0.869581\nvn -0.493616 -0.013123 0.869581\nvn -0.223189 -0.270402 0.936520\nvn -0.133215 -0.159523 0.978165\nvn -0.223189 -0.270402 0.936520\nvn -0.493616 -0.013123 0.869581\nvn -0.582216 -0.116523 0.804641\nvn -0.582216 -0.116523 0.804641\nvn -0.320175 -0.386004 0.865153\nvn -0.223189 -0.270402 0.936520\nvn -0.320175 -0.386004 0.865153\nvn -0.582216 -0.116523 0.804641\nvn -0.674962 -0.220196 0.704230\nvn -0.674962 -0.220196 0.704230\nvn -0.422389 -0.501160 0.755265\nvn -0.320175 -0.386004 0.865153\nvn -0.010956 -0.598581 0.800987\nvn -0.320175 -0.386004 0.865153\nvn -0.422389 -0.501160 0.755265\nvn -0.422389 -0.501160 0.755265\nvn -0.106634 -0.708441 0.697668\nvn -0.010956 -0.598581 0.800987\nvn -0.320175 -0.386004 0.865153\nvn -0.010956 -0.598581 0.800987\nvn 0.079654 -0.488209 0.869084\nvn 0.079654 -0.488209 0.869084\nvn -0.223189 -0.270402 0.936520\nvn -0.320175 -0.386004 0.865153\nvn -0.223189 -0.270402 0.936520\nvn 0.079654 -0.488209 0.869084\nvn 0.165260 -0.381822 0.909341\nvn 0.165260 -0.381822 0.909341\nvn -0.133215 -0.159523 0.978165\nvn -0.223189 -0.270402 0.936520\nvn 0.444119 -0.550785 0.706678\nvn 0.165260 -0.381822 0.909341\nvn 0.079654 -0.488209 0.869084\nvn 0.079654 -0.488209 0.869084\nvn 0.374840 -0.636544 0.674022\nvn 0.444119 -0.550785 0.706678\nvn 0.374840 -0.636544 0.674022\nvn 0.079654 -0.488209 0.869084\nvn -0.010956 -0.598581 0.800987\nvn -0.010956 -0.598581 0.800987\nvn 0.303025 -0.724587 0.618991\nvn 0.374840 -0.636544 0.674022\nvn 0.303025 -0.724587 0.618991\nvn -0.010956 -0.598581 0.800987\nvn -0.106634 -0.708441 0.697668\nvn -0.106634 -0.708441 0.697668\nvn 0.227825 -0.812327 0.536862\nvn 0.303025 -0.724587 0.618991\nvn 0.575709 -0.743440 0.340377\nvn 0.303025 -0.724587 0.618991\nvn 0.227825 -0.812327 0.536862\nvn 0.227825 -0.812327 0.536862\nvn 0.531188 -0.795545 0.291459\nvn 0.575709 -0.743440 0.340377\nvn 0.619024 -0.690927 0.373404\nvn 0.374840 -0.636544 0.674022\nvn 0.303025 -0.724587 0.618991\nvn 0.303025 -0.724587 0.618991\nvn 0.575709 -0.743440 0.340377\nvn 0.619024 -0.690927 0.373404\nvn 0.661664 -0.638835 0.392543\nvn 0.444119 -0.550785 0.706678\nvn 0.374840 -0.636544 0.674022\nvn 0.374840 -0.636544 0.674022\nvn 0.619024 -0.690927 0.373404\nvn 0.661664 -0.638835 0.392543\nvn 0.165260 -0.381822 0.909341\nvn 0.444119 -0.550785 0.706678\nvn 0.513911 -0.467155 0.719487\nvn 0.513911 -0.467155 0.719487\nvn 0.253247 -0.276289 0.927109\nvn 0.165260 -0.381822 0.909341\nvn -0.133215 -0.159523 0.978165\nvn 0.165260 -0.381822 0.909341\nvn 0.253247 -0.276289 0.927109\nvn 0.253247 -0.276289 0.927109\nvn -0.040834 -0.047212 0.998050\nvn -0.133215 -0.159523 0.978165\nvn -0.412379 0.085638 0.906978\nvn -0.133215 -0.159523 0.978165\nvn -0.040834 -0.047212 0.998050\nvn -0.040834 -0.047212 0.998050\nvn -0.329026 0.188547 0.925307\nvn -0.412379 0.085638 0.906978\nvn -0.635163 0.321060 0.702488\nvn -0.412379 0.085638 0.906978\nvn -0.329026 0.188547 0.925307\nvn -0.329026 0.188547 0.925307\nvn -0.572540 0.398916 0.716285\nvn -0.635163 0.321060 0.702488\nvn -0.767011 0.511961 0.386771\nvn -0.635163 0.321060 0.702488\nvn -0.572540 0.398916 0.716285\nvn -0.572540 0.398916 0.716285\nvn -0.734382 0.552061 0.394857\nvn -0.767011 0.511961 0.386771\nvn -0.781195 0.624266 0.005097\nvn -0.767011 0.511961 0.386771\nvn -0.734382 0.552061 0.394857\nvn -0.734382 0.552061 0.394857\nvn -0.784332 0.620294 0.007660\nvn -0.781195 0.624266 0.005097\nvn -0.671177 0.636568 -0.379872\nvn -0.781195 0.624266 0.005097\nvn -0.784332 0.620294 0.007660\nvn -0.784332 0.620294 0.007660\nvn -0.710760 0.590056 -0.382954\nvn -0.671177 0.636568 -0.379872\nvn -0.456596 0.548153 -0.700749\nvn -0.671177 0.636568 -0.379872\nvn -0.710760 0.590056 -0.382954\nvn -0.710760 0.590056 -0.382954\nvn -0.526514 0.467459 -0.710116\nvn -0.456596 0.548153 -0.700749\nvn -0.526514 0.467459 -0.710116\nvn -0.710760 0.590056 -0.382954\nvn -0.746886 0.550070 -0.373611\nvn -0.746886 0.550070 -0.373611\nvn -0.601634 0.386806 -0.698869\nvn -0.526514 0.467459 -0.710116\nvn -0.601634 0.386806 -0.698869\nvn -0.746886 0.550070 -0.373611\nvn -0.780691 0.514438 -0.354790\nvn -0.780691 0.514438 -0.354790\nvn -0.684145 0.302077 -0.663849\nvn -0.601634 0.386806 -0.698869\nvn -0.684145 0.302077 -0.663849\nvn -0.780691 0.514438 -0.354790\nvn -0.811810 0.482355 -0.329088\nvn -0.811810 0.482355 -0.329088\nvn -0.770710 0.212995 -0.600533\nvn -0.684145 0.302077 -0.663849\nvn -0.733463 0.679688 -0.007569\nvn -0.811810 0.482355 -0.329088\nvn -0.780691 0.514438 -0.354790\nvn -0.780691 0.514438 -0.354790\nvn -0.760564 0.649200 0.009003\nvn -0.733463 0.679688 -0.007569\nvn -0.760564 0.649200 0.009003\nvn -0.780691 0.514438 -0.354790\nvn -0.746886 0.550070 -0.373611\nvn -0.746886 0.550070 -0.373611\nvn -0.777595 0.628661 0.011475\nvn -0.760564 0.649200 0.009003\nvn -0.777595 0.628661 0.011475\nvn -0.746886 0.550070 -0.373611\nvn -0.710760 0.590056 -0.382954\nvn -0.710760 0.590056 -0.382954\nvn -0.784332 0.620294 0.007660\nvn -0.777595 0.628661 0.011475\nvn -0.784332 0.620294 0.007660\nvn -0.734382 0.552061 0.394857\nvn -0.688243 0.609441 0.393578\nvn -0.688243 0.609441 0.393578\nvn -0.777595 0.628661 0.011475\nvn -0.784332 0.620294 0.007660\nvn -0.777595 0.628661 0.011475\nvn -0.688243 0.609441 0.393578\nvn -0.625763 0.685611 0.371966\nvn -0.625763 0.685611 0.371966\nvn -0.760564 0.649200 0.009003\nvn -0.777595 0.628661 0.011475\nvn -0.760564 0.649200 0.009003\nvn -0.625763 0.685611 0.371966\nvn -0.546167 0.775516 0.316664\nvn -0.546167 0.775516 0.316664\nvn -0.733463 0.679688 -0.007569\nvn -0.760564 0.649200 0.009003\nvn -0.274091 0.754246 0.596646\nvn -0.546167 0.775516 0.316664\nvn -0.625763 0.685611 0.371966\nvn -0.625763 0.685611 0.371966\nvn -0.395040 0.617494 0.680180\nvn -0.274091 0.754246 0.596646\nvn -0.395040 0.617494 0.680180\nvn -0.625763 0.685611 0.371966\nvn -0.688243 0.609441 0.393578\nvn -0.688243 0.609441 0.393578\nvn -0.494291 0.496610 0.713481\nvn -0.395040 0.617494 0.680180\nvn -0.494291 0.496610 0.713481\nvn -0.688243 0.609441 0.393578\nvn -0.734382 0.552061 0.394857\nvn -0.734382 0.552061 0.394857\nvn -0.572540 0.398916 0.716285\nvn -0.494291 0.496610 0.713481\nvn -0.228743 0.310168 0.922753\nvn -0.494291 0.496610 0.713481\nvn -0.572540 0.398916 0.716285\nvn -0.572540 0.398916 0.716285\nvn -0.329026 0.188547 0.925307\nvn -0.228743 0.310168 0.922753\nvn -0.494291 0.496610 0.713481\nvn -0.228743 0.310168 0.922753\nvn -0.105047 0.455559 0.883986\nvn -0.105047 0.455559 0.883986\nvn -0.395040 0.617494 0.680180\nvn -0.494291 0.496610 0.713481\nvn -0.395040 0.617494 0.680180\nvn -0.105047 0.455559 0.883986\nvn 0.040316 0.617619 0.785444\nvn 0.040316 0.617619 0.785444\nvn -0.274091 0.754246 0.596646\nvn -0.395040 0.617494 0.680180\nvn 0.347468 0.388029 0.853639\nvn 0.040316 0.617619 0.785444\nvn -0.105047 0.455559 0.883986\nvn -0.105047 0.455559 0.883986\nvn 0.198983 0.225840 0.953626\nvn 0.347468 0.388029 0.853639\nvn 0.198983 0.225840 0.953626\nvn -0.105047 0.455559 0.883986\nvn -0.228743 0.310168 0.922753\nvn -0.228743 0.310168 0.922753\nvn 0.068027 0.079259 0.994530\nvn 0.198983 0.225840 0.953626\nvn 0.068027 0.079259 0.994530\nvn -0.228743 0.310168 0.922753\nvn -0.329026 0.188547 0.925307\nvn -0.329026 0.188547 0.925307\nvn -0.040834 -0.047212 0.998050\nvn 0.068027 0.079259 0.994530\nvn 0.354019 -0.162757 0.920967\nvn 0.068027 0.079259 0.994530\nvn -0.040834 -0.047212 0.998050\nvn -0.040834 -0.047212 0.998050\nvn 0.253247 -0.276289 0.927109\nvn 0.354019 -0.162757 0.920967\nvn 0.068027 0.079259 0.994530\nvn 0.354019 -0.162757 0.920967\nvn 0.471211 -0.035798 0.881294\nvn 0.471211 -0.035798 0.881294\nvn 0.198983 0.225840 0.953626\nvn 0.068027 0.079259 0.994530\nvn 0.198983 0.225840 0.953626\nvn 0.471211 -0.035798 0.881294\nvn 0.599909 0.103093 0.793398\nvn 0.599909 0.103093 0.793398\nvn 0.347468 0.388029 0.853639\nvn 0.198983 0.225840 0.953626\nvn 0.761815 -0.193490 0.618223\nvn 0.599909 0.103093 0.793398\nvn 0.471211 -0.035798 0.881294\nvn 0.471211 -0.035798 0.881294\nvn 0.672790 -0.290631 0.680358\nvn 0.761815 -0.193490 0.618223\nvn 0.672790 -0.290631 0.680358\nvn 0.471211 -0.035798 0.881294\nvn 0.354019 -0.162757 0.920967\nvn 0.354019 -0.162757 0.920967\nvn 0.589361 -0.381798 0.711958\nvn 0.672790 -0.290631 0.680358\nvn 0.589361 -0.381798 0.711958\nvn 0.354019 -0.162757 0.920967\nvn 0.253247 -0.276289 0.927109\nvn 0.253247 -0.276289 0.927109\nvn 0.513911 -0.467155 0.719487\nvn 0.589361 -0.381798 0.711958\nvn 0.739477 -0.546078 0.393666\nvn 0.589361 -0.381798 0.711958\nvn 0.513911 -0.467155 0.719487\nvn 0.513911 -0.467155 0.719487\nvn 0.701845 -0.590175 0.398883\nvn 0.739477 -0.546078 0.393666\nvn 0.776317 -0.503963 0.378621\nvn 0.672790 -0.290631 0.680358\nvn 0.589361 -0.381798 0.711958\nvn 0.589361 -0.381798 0.711958\nvn 0.739477 -0.546078 0.393666\nvn 0.776317 -0.503963 0.378621\nvn 0.812909 -0.462762 0.353595\nvn 0.761815 -0.193490 0.618223\nvn 0.672790 -0.290631 0.680358\nvn 0.672790 -0.290631 0.680358\nvn 0.776317 -0.503963 0.378621\nvn 0.812909 -0.462762 0.353595\nvn 0.599909 0.103093 0.793398\nvn 0.761815 -0.193490 0.618223\nvn 0.837660 -0.113073 0.534360\nvn 0.837660 -0.113073 0.534360\nvn 0.707404 0.218884 0.672063\nvn 0.599909 0.103093 0.793398\nvn 0.347468 0.388029 0.853639\nvn 0.599909 0.103093 0.793398\nvn 0.707404 0.218884 0.672063\nvn 0.707404 0.218884 0.672063\nvn 0.472129 0.520501 0.711458\nvn 0.347468 0.388029 0.853639\nvn 0.040316 0.617619 0.785444\nvn 0.347468 0.388029 0.853639\nvn 0.472129 0.520501 0.711458\nvn 0.472129 0.520501 0.711458\nvn 0.164984 0.746914 0.644127\nvn 0.040316 0.617619 0.785444\nvn -0.274091 0.754246 0.596646\nvn 0.040316 0.617619 0.785444\nvn 0.164984 0.746914 0.644127\nvn 0.164984 0.746914 0.644127\nvn -0.168526 0.861980 0.478111\nvn -0.274091 0.754246 0.596646\nvn -0.546167 0.775516 0.316664\nvn -0.274091 0.754246 0.596646\nvn -0.168526 0.861980 0.478111\nvn -0.168526 0.861980 0.478111\nvn -0.477236 0.845883 0.238175\nvn -0.546167 0.775516 0.316664\nvn -0.733463 0.679688 -0.007569\nvn -0.546167 0.775516 0.316664\nvn -0.477236 0.845883 0.238175\nvn -0.477236 0.845883 0.238175\nvn -0.712384 0.700848 -0.036349\nvn -0.733463 0.679688 -0.007569\nvn -0.811810 0.482355 -0.329088\nvn -0.733463 0.679688 -0.007569\nvn -0.712384 0.700848 -0.036349\nvn -0.712384 0.700848 -0.036349\nvn -0.840259 0.449001 -0.303912\nvn -0.811810 0.482355 -0.329088\nvn -0.770710 0.212995 -0.600533\nvn -0.811810 0.482355 -0.329088\nvn -0.840259 0.449001 -0.303912\nvn -0.840259 0.449001 -0.303912\nvn -0.842065 0.129525 -0.523593\nvn -0.770710 0.212995 -0.600533\nvn -0.842065 0.129525 -0.523593\nvn -0.840259 0.449001 -0.303912\nvn -0.865410 0.420955 -0.271776\nvn -0.865410 0.420955 -0.271776\nvn -0.893415 0.070377 -0.443686\nvn -0.842065 0.129525 -0.523593\nvn -0.893415 0.070377 -0.443686\nvn -0.865410 0.420955 -0.271776\nvn -0.892660 0.396507 -0.214337\nvn -0.892660 0.396507 -0.214337\nvn -0.941662 0.023499 -0.335739\nvn -0.893415 0.070377 -0.443686\nvn -0.941662 0.023499 -0.335739\nvn -0.892660 0.396507 -0.214337\nvn -0.919085 0.378041 -0.111212\nvn -0.919085 0.378041 -0.111212\nvn -0.985395 -0.006898 -0.170143\nvn -0.941662 0.023499 -0.335739\nvn -0.710897 0.702534 -0.032717\nvn -0.919085 0.378041 -0.111212\nvn -0.892660 0.396507 -0.214337\nvn -0.892660 0.396507 -0.214337\nvn -0.704718 0.707250 -0.056308\nvn -0.710897 0.702534 -0.032717\nvn -0.704718 0.707250 -0.056308\nvn -0.892660 0.396507 -0.214337\nvn -0.865410 0.420955 -0.271776\nvn -0.865410 0.420955 -0.271776\nvn -0.704780 0.707251 -0.055514\nvn -0.704718 0.707250 -0.056308\nvn -0.704780 0.707251 -0.055514\nvn -0.865410 0.420955 -0.271776\nvn -0.840259 0.449001 -0.303912\nvn -0.840259 0.449001 -0.303912\nvn -0.712384 0.700848 -0.036349\nvn -0.704780 0.707251 -0.055514\nvn -0.712384 0.700848 -0.036349\nvn -0.477236 0.845883 0.238175\nvn -0.437040 0.883173 0.170299\nvn -0.437040 0.883173 0.170299\nvn -0.704780 0.707251 -0.055514\nvn -0.712384 0.700848 -0.036349\nvn -0.704780 0.707251 -0.055514\nvn -0.437040 0.883173 0.170299\nvn -0.410448 0.905006 0.111790\nvn -0.410448 0.905006 0.111790\nvn -0.704718 0.707250 -0.056308\nvn -0.704780 0.707251 -0.055514\nvn -0.704718 0.707250 -0.056308\nvn -0.410448 0.905006 0.111790\nvn -0.397516 0.916101 0.052341\nvn -0.397516 0.916101 0.052341\nvn -0.710897 0.702534 -0.032717\nvn -0.704718 0.707250 -0.056308\nvn -0.026552 0.991000 0.131203\nvn -0.397516 0.916101 0.052341\nvn -0.410448 0.905006 0.111790\nvn -0.410448 0.905006 0.111790\nvn -0.056858 0.963131 0.262955\nvn -0.026552 0.991000 0.131203\nvn -0.056858 0.963131 0.262955\nvn -0.410448 0.905006 0.111790\nvn -0.437040 0.883173 0.170299\nvn -0.437040 0.883173 0.170299\nvn -0.103736 0.923154 0.370171\nvn -0.056858 0.963131 0.262955\nvn -0.103736 0.923154 0.370171\nvn -0.437040 0.883173 0.170299\nvn -0.477236 0.845883 0.238175\nvn -0.477236 0.845883 0.238175\nvn -0.168526 0.861980 0.478111\nvn -0.103736 0.923154 0.370171\nvn 0.242505 0.823803 0.512386\nvn -0.103736 0.923154 0.370171\nvn -0.168526 0.861980 0.478111\nvn -0.168526 0.861980 0.478111\nvn 0.164984 0.746914 0.644127\nvn 0.242505 0.823803 0.512386\nvn -0.103736 0.923154 0.370171\nvn 0.242505 0.823803 0.512386\nvn 0.301011 0.877580 0.373158\nvn 0.301011 0.877580 0.373158\nvn -0.056858 0.963131 0.262955\nvn -0.103736 0.923154 0.370171\nvn -0.056858 0.963131 0.262955\nvn 0.301011 0.877580 0.373158\nvn 0.346333 0.918572 0.190471\nvn 0.346333 0.918572 0.190471\nvn -0.026552 0.991000 0.131203\nvn -0.056858 0.963131 0.262955\nvn 0.668464 0.710306 0.220502\nvn 0.346333 0.918572 0.190471\nvn 0.301011 0.877580 0.373158\nvn 0.301011 0.877580 0.373158\nvn 0.613458 0.664303 0.427049\nvn 0.668464 0.710306 0.220502\nvn 0.613458 0.664303 0.427049\nvn 0.301011 0.877580 0.373158\nvn 0.242505 0.823803 0.512386\nvn 0.242505 0.823803 0.512386\nvn 0.550966 0.603063 0.576846\nvn 0.613458 0.664303 0.427049\nvn 0.550966 0.603063 0.576846\nvn 0.242505 0.823803 0.512386\nvn 0.164984 0.746914 0.644127\nvn 0.164984 0.746914 0.644127\nvn 0.472129 0.520501 0.711458\nvn 0.550966 0.603063 0.576846\nvn 0.777757 0.294452 0.555331\nvn 0.550966 0.603063 0.576846\nvn 0.472129 0.520501 0.711458\nvn 0.472129 0.520501 0.711458\nvn 0.707404 0.218884 0.672063\nvn 0.777757 0.294452 0.555331\nvn 0.550966 0.603063 0.576846\nvn 0.777757 0.294452 0.555331\nvn 0.836918 0.354324 0.417162\nvn 0.836918 0.354324 0.417162\nvn 0.613458 0.664303 0.427049\nvn 0.550966 0.603063 0.576846\nvn 0.613458 0.664303 0.427049\nvn 0.836918 0.354324 0.417162\nvn 0.891891 0.396810 0.216961\nvn 0.891891 0.396810 0.216961\nvn 0.668464 0.710306 0.220502\nvn 0.613458 0.664303 0.427049\nvn 0.983346 0.023042 0.180275\nvn 0.891891 0.396810 0.216961\nvn 0.836918 0.354324 0.417162\nvn 0.836918 0.354324 0.417162\nvn 0.938499 -0.009766 0.345143\nvn 0.983346 0.023042 0.180275\nvn 0.938499 -0.009766 0.345143\nvn 0.836918 0.354324 0.417162\nvn 0.777757 0.294452 0.555331\nvn 0.777757 0.294452 0.555331\nvn 0.890282 -0.058109 0.451687\nvn 0.938499 -0.009766 0.345143\nvn 0.890282 -0.058109 0.451687\nvn 0.777757 0.294452 0.555331\nvn 0.707404 0.218884 0.672063\nvn 0.707404 0.218884 0.672063\nvn 0.837660 -0.113073 0.534360\nvn 0.890282 -0.058109 0.451687\nvn 0.870059 -0.405594 0.280162\nvn 0.890282 -0.058109 0.451687\nvn 0.837660 -0.113073 0.534360\nvn 0.837660 -0.113073 0.534360\nvn 0.844708 -0.430533 0.317979\nvn 0.870059 -0.405594 0.280162\nvn 0.899424 -0.376970 0.221201\nvn 0.938499 -0.009766 0.345143\nvn 0.890282 -0.058109 0.451687\nvn 0.890282 -0.058109 0.451687\nvn 0.870059 -0.405594 0.280162\nvn 0.899424 -0.376970 0.221201\nvn 0.668464 0.710306 0.220502\nvn 0.891891 0.396810 0.216961\nvn 0.911987 0.407284 0.048984\nvn 0.911987 0.407284 0.048984\nvn 0.891891 0.396810 0.216961\nvn 0.983346 0.023042 0.180275\nvn 0.983346 0.023042 0.180275\nvn 0.998790 0.028291 0.040224\nvn 0.911987 0.407284 0.048984\nvn 0.911987 0.407284 0.048984\nvn 0.998790 0.028291 0.040224\nvn 0.999656 0.026216 -0.000000\nvn 0.999656 0.026216 -0.000000\nvn 0.913512 0.406813 -0.000000\nvn 0.911987 0.407284 0.048984\nvn 0.911987 0.407284 0.048984\nvn 0.913512 0.406813 -0.000000\nvn 0.688276 0.725449 -0.000000\nvn 0.688276 0.725449 -0.000000\nvn 0.687725 0.724227 0.050296\nvn 0.911987 0.407284 0.048984\nvn 0.359602 0.932104 0.043215\nvn 0.687725 0.724227 0.050296\nvn 0.688276 0.725449 -0.000000\nvn 0.688276 0.725449 -0.000000\nvn 0.358267 0.933619 -0.000000\nvn 0.359602 0.932104 0.043215\nvn 0.359602 0.932104 0.043215\nvn 0.358267 0.933619 -0.000000\nvn -0.026308 0.999654 -0.000000\nvn -0.026308 0.999654 -0.000000\nvn -0.022706 0.999306 0.029542\nvn 0.359602 0.932104 0.043215\nvn -0.401908 0.915608 0.011445\nvn -0.022706 0.999306 0.029542\nvn -0.026308 0.999654 -0.000000\nvn -0.026308 0.999654 -0.000000\nvn -0.406849 0.913495 -0.000000\nvn -0.401908 0.915608 0.011445\nvn -0.401908 0.915608 0.011445\nvn -0.406849 0.913495 -0.000000\nvn -0.725479 0.688245 -0.000000\nvn -0.725479 0.688245 -0.000000\nvn -0.720865 0.693031 -0.007905\nvn -0.401908 0.915608 0.011445\nvn -0.931201 0.363666 -0.024721\nvn -0.720865 0.693031 -0.007905\nvn -0.725479 0.688245 -0.000000\nvn -0.725479 0.688245 -0.000000\nvn -0.933633 0.358230 -0.000000\nvn -0.931201 0.363666 -0.024721\nvn -0.931201 0.363666 -0.024721\nvn -0.933633 0.358230 -0.000000\nvn -0.999655 -0.026277 0.000000\nvn -0.999655 -0.026277 0.000000\nvn -0.999090 -0.021760 -0.036683\nvn -0.931201 0.363666 -0.024721\nvn -0.931201 0.363666 -0.024721\nvn -0.999090 -0.021760 -0.036683\nvn -0.985395 -0.006898 -0.170143\nvn -0.985395 -0.006898 -0.170143\nvn -0.919085 0.378041 -0.111212\nvn -0.931201 0.363666 -0.024721\nvn -0.931201 0.363666 -0.024721\nvn -0.919085 0.378041 -0.111212\nvn -0.710897 0.702534 -0.032717\nvn -0.710897 0.702534 -0.032717\nvn -0.720865 0.693031 -0.007905\nvn -0.931201 0.363666 -0.024721\nvn -0.401908 0.915608 0.011445\nvn -0.720865 0.693031 -0.007905\nvn -0.710897 0.702534 -0.032717\nvn -0.710897 0.702534 -0.032717\nvn -0.397516 0.916101 0.052341\nvn -0.401908 0.915608 0.011445\nvn -0.401908 0.915608 0.011445\nvn -0.397516 0.916101 0.052341\nvn -0.026552 0.991000 0.131203\nvn -0.026552 0.991000 0.131203\nvn -0.022706 0.999306 0.029542\nvn -0.401908 0.915608 0.011445\nvn 0.359602 0.932104 0.043215\nvn -0.022706 0.999306 0.029542\nvn -0.026552 0.991000 0.131203\nvn -0.026552 0.991000 0.131203\nvn 0.346333 0.918572 0.190471\nvn 0.359602 0.932104 0.043215\nvn 0.359602 0.932104 0.043215\nvn 0.346333 0.918572 0.190471\nvn 0.668464 0.710306 0.220502\nvn 0.668464 0.710306 0.220502\nvn 0.687725 0.724227 0.050296\nvn 0.359602 0.932104 0.043215\nvn 0.911987 0.407284 0.048984\nvn 0.687725 0.724227 0.050296\nvn 0.668464 0.710306 0.220502\nvn -0.913327 -0.404964 -0.042880\nvn -0.999090 -0.021760 -0.036683\nvn -0.999655 -0.026277 0.000000\nvn -0.999655 -0.026277 0.000000\nvn -0.913507 -0.406824 0.000000\nvn -0.913327 -0.404964 -0.042880\nvn -0.913327 -0.404964 -0.042880\nvn -0.913507 -0.406824 0.000000\nvn -0.688292 -0.725434 0.000000\nvn -0.688292 -0.725434 0.000000\nvn -0.686593 -0.725780 -0.042819\nvn -0.913327 -0.404964 -0.042880\nvn -0.354270 -0.934416 -0.036868\nvn -0.686593 -0.725780 -0.042819\nvn -0.688292 -0.725434 0.000000\nvn -0.688292 -0.725434 0.000000\nvn -0.358294 -0.933609 0.000000\nvn -0.354270 -0.934416 -0.036868\nvn -0.354270 -0.934416 -0.036868\nvn -0.358294 -0.933609 0.000000\nvn 0.026216 -0.999656 0.000000\nvn 0.026216 -0.999656 0.000000\nvn 0.032289 -0.999158 -0.025331\nvn -0.354270 -0.934416 -0.036868\nvn 0.412074 -0.911098 -0.009797\nvn 0.032289 -0.999158 -0.025331\nvn 0.026216 -0.999656 0.000000\nvn 0.026216 -0.999656 0.000000\nvn 0.406762 -0.913534 0.000000\nvn 0.412074 -0.911098 -0.009797\nvn 0.412074 -0.911098 -0.009797\nvn 0.406762 -0.913534 0.000000\nvn 0.725404 -0.688323 0.000000\nvn 0.725404 -0.688323 0.000000\nvn 0.729072 -0.684392 0.007813\nvn 0.412074 -0.911098 -0.009797\nvn 0.934666 -0.354596 0.025727\nvn 0.729072 -0.684392 0.007813\nvn 0.725404 -0.688323 0.000000\nvn 0.725404 -0.688323 0.000000\nvn 0.933599 -0.358320 0.000000\nvn 0.934666 -0.354596 0.025727\nvn 0.731515 -0.680761 0.038088\nvn 0.729072 -0.684392 0.007813\nvn 0.934666 -0.354596 0.025727\nvn 0.412074 -0.911098 -0.009797\nvn 0.729072 -0.684392 0.007813\nvn 0.731515 -0.680761 0.038088\nvn 0.934666 -0.354596 0.025727\nvn 0.927486 -0.355124 0.116859\nvn 0.731515 -0.680761 0.038088\nvn 0.731515 -0.680761 0.038088\nvn 0.927486 -0.355124 0.116859\nvn 0.899424 -0.376970 0.221201\nvn 0.899424 -0.376970 0.221201\nvn 0.721298 -0.689588 0.064793\nvn 0.731515 -0.680761 0.038088\nvn 0.721298 -0.689588 0.064793\nvn 0.899424 -0.376970 0.221201\nvn 0.870059 -0.405594 0.280162\nvn 0.870059 -0.405594 0.280162\nvn 0.716317 -0.694648 0.065983\nvn 0.721298 -0.689588 0.064793\nvn 0.716317 -0.694648 0.065983\nvn 0.870059 -0.405594 0.280162\nvn 0.844708 -0.430533 0.317979\nvn 0.844708 -0.430533 0.317979\nvn 0.724791 -0.686886 0.053530\nvn 0.716317 -0.694648 0.065983\nvn 0.724791 -0.686886 0.053530\nvn 0.844708 -0.430533 0.317979\nvn 0.812909 -0.462762 0.353595\nvn 0.812909 -0.462762 0.353595\nvn 0.744455 -0.666692 0.036165\nvn 0.724791 -0.686886 0.053530\nvn 0.744455 -0.666692 0.036165\nvn 0.812909 -0.462762 0.353595\nvn 0.776317 -0.503963 0.378621\nvn 0.776317 -0.503963 0.378621\nvn 0.764631 -0.644201 0.018556\nvn 0.744455 -0.666692 0.036165\nvn 0.764631 -0.644201 0.018556\nvn 0.776317 -0.503963 0.378621\nvn 0.739477 -0.546078 0.393666\nvn 0.739477 -0.546078 0.393666\nvn 0.777809 -0.628387 0.011964\nvn 0.764631 -0.644201 0.018556\nvn 0.777809 -0.628387 0.011964\nvn 0.739477 -0.546078 0.393666\nvn 0.701845 -0.590175 0.398883\nvn 0.701845 -0.590175 0.398883\nvn 0.782670 -0.622321 0.011994\nvn 0.777809 -0.628387 0.011964\nvn 0.782670 -0.622321 0.011994\nvn 0.701845 -0.590175 0.398883\nvn 0.661664 -0.638835 0.392543\nvn 0.661664 -0.638835 0.392543\nvn 0.778471 -0.627556 0.012513\nvn 0.782670 -0.622321 0.011994\nvn 0.778471 -0.627556 0.012513\nvn 0.661664 -0.638835 0.392543\nvn 0.619024 -0.690927 0.373404\nvn 0.619024 -0.690927 0.373404\nvn 0.769510 -0.638552 0.010346\nvn 0.778471 -0.627556 0.012513\nvn 0.769510 -0.638552 0.010346\nvn 0.619024 -0.690927 0.373404\nvn 0.575709 -0.743440 0.340377\nvn 0.575709 -0.743440 0.340377\nvn 0.760809 -0.648957 0.004975\nvn 0.769510 -0.638552 0.010346\nvn 0.760809 -0.648957 0.004975\nvn 0.575709 -0.743440 0.340377\nvn 0.531188 -0.795545 0.291459\nvn 0.531188 -0.795545 0.291459\nvn 0.752510 -0.658571 -0.003632\nvn 0.760809 -0.648957 0.004975\nvn 0.752510 -0.658571 -0.003632\nvn 0.531188 -0.795545 0.291459\nvn 0.487207 -0.844463 0.222515\nvn 0.487207 -0.844463 0.222515\nvn 0.745247 -0.666599 -0.015900\nvn 0.752510 -0.658571 -0.003632\nvn 0.745247 -0.666599 -0.015900\nvn 0.487207 -0.844463 0.222515\nvn 0.455714 -0.878528 0.143227\nvn 0.455714 -0.878528 0.143227\nvn 0.744208 -0.667452 -0.025728\nvn 0.745247 -0.666599 -0.015900\nvn 0.744208 -0.667452 -0.025728\nvn 0.455714 -0.878528 0.143227\nvn 0.443716 -0.893291 0.071750\nvn 0.443716 -0.893291 0.071750\nvn 0.748864 -0.662435 -0.019562\nvn 0.744208 -0.667452 -0.025728\nvn 0.748864 -0.662435 -0.019562\nvn 0.443716 -0.893291 0.071750\nvn 0.447625 -0.894121 0.013398\nvn 0.447625 -0.894121 0.013398\nvn 0.753123 -0.657842 0.007081\nvn 0.748864 -0.662435 -0.019562\nvn 0.753123 -0.657842 0.007081\nvn 0.447625 -0.894121 0.013398\nvn 0.460808 -0.887036 -0.028688\nvn 0.460808 -0.887036 -0.028688\nvn 0.750369 -0.658567 0.056887\nvn 0.753123 -0.657842 0.007081\nvn 0.750369 -0.658567 0.056887\nvn 0.460808 -0.887036 -0.028688\nvn 0.476591 -0.878501 -0.033113\nvn 0.476591 -0.878501 -0.033113\nvn 0.738605 -0.660505 0.134897\nvn 0.750369 -0.658567 0.056887\nvn 0.738605 -0.660505 0.134897\nvn 0.476591 -0.878501 -0.033113\nvn 0.471485 -0.881779 0.012910\nvn 0.471485 -0.881779 0.012910\nvn 0.706743 -0.667952 0.233139\nvn 0.738605 -0.660505 0.134897\nvn 0.706743 -0.667952 0.233139\nvn 0.471485 -0.881779 0.012910\nvn 0.434465 -0.895664 0.095005\nvn 0.434465 -0.895664 0.095005\nvn 0.656076 -0.676188 0.335164\nvn 0.706743 -0.667952 0.233139\nvn 0.656076 -0.676188 0.335164\nvn 0.434465 -0.895664 0.095005\nvn 0.365372 -0.908699 0.201913\nvn 0.365372 -0.908699 0.201913\nvn 0.593636 -0.679121 0.431730\nvn 0.656076 -0.676188 0.335164\nvn 0.593636 -0.679121 0.431730\nvn 0.365372 -0.908699 0.201913\nvn 0.296158 -0.909838 0.290665\nvn 0.002533 -0.999575 0.029023\nvn 0.296158 -0.909838 0.290665\nvn 0.365372 -0.908699 0.201913\nvn 0.296158 -0.909838 0.290665\nvn 0.002533 -0.999575 0.029023\nvn -0.040346 -0.993897 0.102668\nvn -0.040346 -0.993897 0.102668\nvn 0.264599 -0.901865 0.341507\nvn 0.296158 -0.909838 0.290665\nvn 0.365372 -0.908699 0.201913\nvn 0.075322 -0.994649 -0.070713\nvn 0.002533 -0.999575 0.029023\nvn 0.296158 -0.909838 0.290665\nvn 0.541566 -0.677713 0.497405\nvn 0.593636 -0.679121 0.431730\nvn 0.541566 -0.677713 0.497405\nvn 0.296158 -0.909838 0.290665\nvn 0.264599 -0.901865 0.341507\nvn 0.264599 -0.901865 0.341507\nvn 0.528839 -0.670113 0.520843\nvn 0.541566 -0.677713 0.497405\nvn 0.528839 -0.670113 0.520843\nvn 0.264599 -0.901865 0.341507\nvn 0.307448 -0.900612 0.307203\nvn 0.307448 -0.900612 0.307203\nvn 0.598331 -0.673286 0.434381\nvn 0.528839 -0.670113 0.520843\nvn 0.710922 -0.339194 0.616067\nvn 0.528839 -0.670113 0.520843\nvn 0.598331 -0.673286 0.434381\nvn 0.598331 -0.673286 0.434381\nvn 0.796247 -0.344135 0.497555\nvn 0.710922 -0.339194 0.616067\nvn 0.528839 -0.670113 0.520843\nvn 0.710922 -0.339194 0.616067\nvn 0.704415 -0.347889 0.618686\nvn 0.704415 -0.347889 0.618686\nvn 0.541566 -0.677713 0.497405\nvn 0.528839 -0.670113 0.520843\nvn 0.541566 -0.677713 0.497405\nvn 0.704415 -0.347889 0.618686\nvn 0.731878 -0.353441 0.582609\nvn 0.731878 -0.353441 0.582609\nvn 0.593636 -0.679121 0.431730\nvn 0.541566 -0.677713 0.497405\nvn 0.767171 0.019197 0.641155\nvn 0.731878 -0.353441 0.582609\nvn 0.704415 -0.347889 0.618686\nvn 0.704415 -0.347889 0.618686\nvn 0.764801 0.029054 0.643611\nvn 0.767171 0.019197 0.641155\nvn 0.764801 0.029054 0.643611\nvn 0.704415 -0.347889 0.618686\nvn 0.710922 -0.339194 0.616067\nvn 0.710922 -0.339194 0.616067\nvn 0.785227 0.039431 0.617951\nvn 0.764801 0.029054 0.643611\nvn 0.785227 0.039431 0.617951\nvn 0.710922 -0.339194 0.616067\nvn 0.796247 -0.344135 0.497555\nvn 0.796247 -0.344135 0.497555\nvn 0.870665 0.035188 0.490617\nvn 0.785227 0.039431 0.617951\nvn 0.742211 0.410339 0.529854\nvn 0.785227 0.039431 0.617951\nvn 0.870665 0.035188 0.490617\nvn 0.870665 0.035188 0.490617\nvn 0.813970 0.406237 0.415240\nvn 0.742211 0.410339 0.529854\nvn 0.785227 0.039431 0.617951\nvn 0.742211 0.410339 0.529854\nvn 0.713570 0.401359 0.574220\nvn 0.713570 0.401359 0.574220\nvn 0.764801 0.029054 0.643611\nvn 0.785227 0.039431 0.617951\nvn 0.764801 0.029054 0.643611\nvn 0.713570 0.401359 0.574220\nvn 0.693015 0.390210 0.606190\nvn 0.693015 0.390210 0.606190\nvn 0.767171 0.019197 0.641155\nvn 0.764801 0.029054 0.643611\nvn 0.511259 0.710032 0.484219\nvn 0.693015 0.390210 0.606190\nvn 0.713570 0.401359 0.574220\nvn 0.713570 0.401359 0.574220\nvn 0.553460 0.718079 0.421954\nvn 0.511259 0.710032 0.484219\nvn 0.553460 0.718079 0.421954\nvn 0.713570 0.401359 0.574220\nvn 0.742211 0.410339 0.529854\nvn 0.742211 0.410339 0.529854\nvn 0.588350 0.721750 0.364583\nvn 0.553460 0.718079 0.421954\nvn 0.588350 0.721750 0.364583\nvn 0.742211 0.410339 0.529854\nvn 0.813970 0.406237 0.415240\nvn 0.813970 0.406237 0.415240\nvn 0.640051 0.716014 0.278672\nvn 0.588350 0.721750 0.364583\nvn 0.344597 0.927675 0.143778\nvn 0.588350 0.721750 0.364583\nvn 0.640051 0.716014 0.278672\nvn 0.640051 0.716014 0.278672\nvn 0.373922 0.922842 0.092443\nvn 0.344597 0.927675 0.143778\nvn 0.588350 0.721750 0.364583\nvn 0.344597 0.927675 0.143778\nvn 0.303849 0.929617 0.208538\nvn 0.303849 0.929617 0.208538\nvn 0.553460 0.718079 0.421954\nvn 0.588350 0.721750 0.364583\nvn 0.553460 0.718079 0.421954\nvn 0.303849 0.929617 0.208538\nvn 0.242875 0.924928 0.292439\nvn 0.242875 0.924928 0.292439\nvn 0.511259 0.710032 0.484219\nvn 0.553460 0.718079 0.421954\nvn -0.070165 0.995852 0.057926\nvn 0.242875 0.924928 0.292439\nvn 0.303849 0.929617 0.208538\nvn 0.303849 0.929617 0.208538\nvn 0.001831 0.999343 -0.036196\nvn -0.070165 0.995852 0.057926\nvn 0.001831 0.999343 -0.036196\nvn 0.303849 0.929617 0.208538\nvn 0.344597 0.927675 0.143778\nvn 0.344597 0.927675 0.143778\nvn 0.046266 0.993448 -0.104496\nvn 0.001831 0.999343 -0.036196\nvn 0.046266 0.993448 -0.104496\nvn 0.344597 0.927675 0.143778\nvn 0.373922 0.922842 0.092443\nvn 0.373922 0.922842 0.092443\nvn 0.050784 0.990809 -0.125373\nvn 0.046266 0.993448 -0.104496\nvn 0.693015 0.390210 0.606190\nvn 0.511259 0.710032 0.484219\nvn 0.477417 0.695449 0.537052\nvn 0.477417 0.695449 0.537052\nvn 0.687664 0.375664 0.621284\nvn 0.693015 0.390210 0.606190\nvn 0.767171 0.019197 0.641155\nvn 0.693015 0.390210 0.606190\nvn 0.687664 0.375664 0.621284\nvn 0.687664 0.375664 0.621284\nvn 0.789554 0.006837 0.613643\nvn 0.767171 0.019197 0.641155\nvn 0.731878 -0.353441 0.582609\nvn 0.767171 0.019197 0.641155\nvn 0.789554 0.006837 0.613643\nvn 0.789554 0.006837 0.613643\nvn 0.777995 -0.359668 0.515133\nvn 0.731878 -0.353441 0.582609\nvn 0.593636 -0.679121 0.431730\nvn 0.731878 -0.353441 0.582609\nvn 0.777995 -0.359668 0.515133\nvn 0.777995 -0.359668 0.515133\nvn 0.656076 -0.676188 0.335164\nvn 0.593636 -0.679121 0.431730\nvn 0.656076 -0.676188 0.335164\nvn 0.777995 -0.359668 0.515133\nvn 0.833935 -0.357440 0.420462\nvn 0.833935 -0.357440 0.420462\nvn 0.706743 -0.667952 0.233139\nvn 0.656076 -0.676188 0.335164\nvn 0.706743 -0.667952 0.233139\nvn 0.833935 -0.357440 0.420462\nvn 0.889691 -0.346696 0.297072\nvn 0.889691 -0.346696 0.297072\nvn 0.738605 -0.660505 0.134897\nvn 0.706743 -0.667952 0.233139\nvn 0.738605 -0.660505 0.134897\nvn 0.889691 -0.346696 0.297072\nvn 0.930676 -0.332809 0.151923\nvn 0.930676 -0.332809 0.151923\nvn 0.750369 -0.658567 0.056887\nvn 0.738605 -0.660505 0.134897\nvn 0.968509 0.048618 0.244187\nvn 0.930676 -0.332809 0.151923\nvn 0.889691 -0.346696 0.297072\nvn 0.889691 -0.346696 0.297072\nvn 0.903556 0.022432 0.427882\nvn 0.968509 0.048618 0.244187\nvn 0.903556 0.022432 0.427882\nvn 0.889691 -0.346696 0.297072\nvn 0.833935 -0.357440 0.420462\nvn 0.833935 -0.357440 0.420462\nvn 0.837157 0.006409 0.546925\nvn 0.903556 0.022432 0.427882\nvn 0.837157 0.006409 0.546925\nvn 0.833935 -0.357440 0.420462\nvn 0.777995 -0.359668 0.515133\nvn 0.777995 -0.359668 0.515133\nvn 0.789554 0.006837 0.613643\nvn 0.837157 0.006409 0.546925\nvn 0.789554 0.006837 0.613643\nvn 0.687664 0.375664 0.621284\nvn 0.714918 0.373680 0.590979\nvn 0.714918 0.373680 0.590979\nvn 0.837157 0.006409 0.546925\nvn 0.789554 0.006837 0.613643\nvn 0.837157 0.006409 0.546925\nvn 0.714918 0.373680 0.590979\nvn 0.774123 0.393150 0.496153\nvn 0.774123 0.393150 0.496153\nvn 0.903556 0.022432 0.427882\nvn 0.837157 0.006409 0.546925\nvn 0.903556 0.022432 0.427882\nvn 0.774123 0.393150 0.496153\nvn 0.849143 0.429562 0.307300\nvn 0.849143 0.429562 0.307300\nvn 0.968509 0.048618 0.244187\nvn 0.903556 0.022432 0.427882\nvn 0.591249 0.743143 0.313310\nvn 0.849143 0.429562 0.307300\nvn 0.774123 0.393150 0.496153\nvn 0.774123 0.393150 0.496153\nvn 0.521944 0.705244 0.479797\nvn 0.591249 0.743143 0.313310\nvn 0.521944 0.705244 0.479797\nvn 0.774123 0.393150 0.496153\nvn 0.714918 0.373680 0.590979\nvn 0.714918 0.373680 0.590979\nvn 0.480069 0.689646 0.542146\nvn 0.521944 0.705244 0.479797\nvn 0.480069 0.689646 0.542146\nvn 0.714918 0.373680 0.590979\nvn 0.687664 0.375664 0.621284\nvn 0.687664 0.375664 0.621284\nvn 0.477417 0.695449 0.537052\nvn 0.480069 0.689646 0.542146\nvn 0.166692 0.898437 0.406233\nvn 0.480069 0.689646 0.542146\nvn 0.477417 0.695449 0.537052\nvn 0.477417 0.695449 0.537052\nvn 0.185157 0.909519 0.372145\nvn 0.166692 0.898437 0.406233\nvn 0.185157 0.909519 0.372145\nvn 0.477417 0.695449 0.537052\nvn 0.511259 0.710032 0.484219\nvn 0.511259 0.710032 0.484219\nvn 0.242875 0.924928 0.292439\nvn 0.185157 0.909519 0.372145\nvn 0.480069 0.689646 0.542146\nvn 0.166692 0.898437 0.406233\nvn 0.189887 0.905917 0.378493\nvn 0.189887 0.905917 0.378493\nvn 0.521944 0.705244 0.479797\nvn 0.480069 0.689646 0.542146\nvn 0.521944 0.705244 0.479797\nvn 0.189887 0.905917 0.378493\nvn 0.242963 0.936055 0.254500\nvn 0.242963 0.936055 0.254500\nvn 0.591249 0.743143 0.313310\nvn 0.521944 0.705244 0.479797\nvn -0.136970 0.979147 0.150032\nvn 0.242963 0.936055 0.254500\nvn 0.189887 0.905917 0.378493\nvn 0.189887 0.905917 0.378493\nvn -0.168038 0.961897 0.215678\nvn -0.136970 0.979147 0.150032\nvn -0.168038 0.961897 0.215678\nvn 0.189887 0.905917 0.378493\nvn 0.166692 0.898437 0.406233\nvn 0.166692 0.898437 0.406233\nvn -0.173350 0.962608 0.208172\nvn -0.168038 0.961897 0.215678\nvn -0.173350 0.962608 0.208172\nvn 0.166692 0.898437 0.406233\nvn 0.185157 0.909519 0.372145\nvn 0.185157 0.909519 0.372145\nvn -0.140970 0.978244 0.152201\nvn -0.173350 0.962608 0.208172\nvn -0.140970 0.978244 0.152201\nvn 0.185157 0.909519 0.372145\nvn 0.242875 0.924928 0.292439\nvn 0.242875 0.924928 0.292439\nvn -0.070165 0.995852 0.057926\nvn -0.140970 0.978244 0.152201\nvn 0.849143 0.429562 0.307300\nvn 0.591249 0.743143 0.313310\nvn 0.640139 0.765665 0.063083\nvn 0.591249 0.743143 0.313310\nvn 0.242963 0.936055 0.254500\nvn 0.290079 0.955630 0.051241\nvn 0.290079 0.955630 0.051241\nvn 0.640139 0.765665 0.063083\nvn 0.591249 0.743143 0.313310\nvn 0.640139 0.765665 0.063083\nvn 0.290079 0.955630 0.051241\nvn 0.296522 0.939162 -0.173348\nvn 0.296522 0.939162 -0.173348\nvn 0.637176 0.744146 -0.200632\nvn 0.640139 0.765665 0.063083\nvn 0.890112 0.452716 0.052431\nvn 0.640139 0.765665 0.063083\nvn 0.637176 0.744146 -0.200632\nvn 0.637176 0.744146 -0.200632\nvn 0.878162 0.434015 -0.201153\nvn 0.890112 0.452716 0.052431\nvn 0.997189 0.068882 0.029482\nvn 0.890112 0.452716 0.052431\nvn 0.878162 0.434015 -0.201153\nvn 0.890112 0.452716 0.052431\nvn 0.997189 0.068882 0.029482\nvn 0.968509 0.048618 0.244187\nvn 0.930676 -0.332809 0.151923\nvn 0.968509 0.048618 0.244187\nvn 0.997189 0.068882 0.029482\nvn 0.997189 0.068882 0.029482\nvn 0.947165 -0.320543 0.011414\nvn 0.930676 -0.332809 0.151923\nvn 0.750369 -0.658567 0.056887\nvn 0.930676 -0.332809 0.151923\nvn 0.947165 -0.320543 0.011414\nvn 0.947165 -0.320543 0.011414\nvn 0.753123 -0.657842 0.007081\nvn 0.750369 -0.658567 0.056887\nvn 0.753123 -0.657842 0.007081\nvn 0.947165 -0.320543 0.011414\nvn 0.938957 -0.327380 -0.105749\nvn 0.938957 -0.327380 -0.105749\nvn 0.748864 -0.662435 -0.019562\nvn 0.753123 -0.657842 0.007081\nvn 0.748864 -0.662435 -0.019562\nvn 0.938957 -0.327380 -0.105749\nvn 0.915019 -0.352737 -0.195748\nvn 0.915019 -0.352737 -0.195748\nvn 0.744208 -0.667452 -0.025728\nvn 0.748864 -0.662435 -0.019562\nvn 0.744208 -0.667452 -0.025728\nvn 0.915019 -0.352737 -0.195748\nvn 0.884751 -0.387624 -0.258772\nvn 0.884751 -0.387624 -0.258772\nvn 0.745247 -0.666599 -0.015900\nvn 0.744208 -0.667452 -0.025728\nvn 0.883959 -0.053958 -0.464441\nvn 0.884751 -0.387624 -0.258772\nvn 0.915019 -0.352737 -0.195748\nvn 0.915019 -0.352737 -0.195748\nvn 0.941660 0.012086 -0.336349\nvn 0.883959 -0.053958 -0.464441\nvn 0.941660 0.012086 -0.336349\nvn 0.915019 -0.352737 -0.195748\nvn 0.938957 -0.327380 -0.105749\nvn 0.938957 -0.327380 -0.105749\nvn 0.983886 0.057163 -0.169413\nvn 0.941660 0.012086 -0.336349\nvn 0.983886 0.057163 -0.169413\nvn 0.938957 -0.327380 -0.105749\nvn 0.947165 -0.320543 0.011414\nvn 0.947165 -0.320543 0.011414\nvn 0.997189 0.068882 0.029482\nvn 0.983886 0.057163 -0.169413\nvn 0.878162 0.434015 -0.201153\nvn 0.983886 0.057163 -0.169413\nvn 0.997189 0.068882 0.029482\nvn 0.983886 0.057163 -0.169413\nvn 0.878162 0.434015 -0.201153\nvn 0.825328 0.373493 -0.423483\nvn 0.825328 0.373493 -0.423483\nvn 0.941660 0.012086 -0.336349\nvn 0.983886 0.057163 -0.169413\nvn 0.941660 0.012086 -0.336349\nvn 0.825328 0.373493 -0.423483\nvn 0.748246 0.285998 -0.598609\nvn 0.748246 0.285998 -0.598609\nvn 0.883959 -0.053958 -0.464441\nvn 0.941660 0.012086 -0.336349\nvn 0.502096 0.584131 -0.637722\nvn 0.748246 0.285998 -0.598609\nvn 0.825328 0.373493 -0.423483\nvn 0.825328 0.373493 -0.423483\nvn 0.585998 0.679143 -0.442009\nvn 0.502096 0.584131 -0.637722\nvn 0.585998 0.679143 -0.442009\nvn 0.825328 0.373493 -0.423483\nvn 0.878162 0.434015 -0.201153\nvn 0.878162 0.434015 -0.201153\nvn 0.637176 0.744146 -0.200632\nvn 0.585998 0.679143 -0.442009\nvn 0.256758 0.884264 -0.390066\nvn 0.585998 0.679143 -0.442009\nvn 0.637176 0.744146 -0.200632\nvn 0.637176 0.744146 -0.200632\nvn 0.296522 0.939162 -0.173348\nvn 0.256758 0.884264 -0.390066\nvn 0.585998 0.679143 -0.442009\nvn 0.256758 0.884264 -0.390066\nvn 0.180187 0.798053 -0.575017\nvn 0.180187 0.798053 -0.575017\nvn 0.502096 0.584131 -0.637722\nvn 0.585998 0.679143 -0.442009\nvn -0.173929 0.889848 -0.421806\nvn 0.180187 0.798053 -0.575017\nvn 0.256758 0.884264 -0.390066\nvn 0.256758 0.884264 -0.390066\nvn -0.116857 0.953260 -0.278638\nvn -0.173929 0.889848 -0.421806\nvn -0.116857 0.953260 -0.278638\nvn 0.256758 0.884264 -0.390066\nvn 0.296522 0.939162 -0.173348\nvn 0.296522 0.939162 -0.173348\nvn -0.092075 0.988009 -0.123936\nvn -0.116857 0.953260 -0.278638\nvn -0.092075 0.988009 -0.123936\nvn 0.296522 0.939162 -0.173348\nvn 0.290079 0.955630 0.051241\nvn 0.290079 0.955630 0.051241\nvn -0.101963 0.994483 0.024629\nvn -0.092075 0.988009 -0.123936\nvn -0.101963 0.994483 0.024629\nvn 0.290079 0.955630 0.051241\nvn 0.242963 0.936055 0.254500\nvn 0.242963 0.936055 0.254500\nvn -0.136970 0.979147 0.150032\nvn -0.101963 0.994483 0.024629\nvn 0.748246 0.285998 -0.598609\nvn 0.502096 0.584131 -0.637722\nvn 0.403797 0.477409 -0.780402\nvn 0.403797 0.477409 -0.780402\nvn 0.660768 0.191294 -0.725804\nvn 0.748246 0.285998 -0.598609\nvn 0.883959 -0.053958 -0.464441\nvn 0.748246 0.285998 -0.598609\nvn 0.660768 0.191294 -0.725804\nvn 0.660768 0.191294 -0.725804\nvn 0.820564 -0.123419 -0.558070\nvn 0.883959 -0.053958 -0.464441\nvn 0.884751 -0.387624 -0.258772\nvn 0.883959 -0.053958 -0.464441\nvn 0.820564 -0.123419 -0.558070\nvn 0.820564 -0.123419 -0.558070\nvn 0.854418 -0.421502 -0.303819\nvn 0.884751 -0.387624 -0.258772\nvn 0.745247 -0.666599 -0.015900\nvn 0.884751 -0.387624 -0.258772\nvn 0.854418 -0.421502 -0.303819\nvn 0.854418 -0.421502 -0.303819\nvn 0.752510 -0.658571 -0.003632\nvn 0.745247 -0.666599 -0.015900\nvn 0.752510 -0.658571 -0.003632\nvn 0.854418 -0.421502 -0.303819\nvn 0.825430 -0.454191 -0.335226\nvn 0.825430 -0.454191 -0.335226\nvn 0.760809 -0.648957 0.004975\nvn 0.752510 -0.658571 -0.003632\nvn 0.760809 -0.648957 0.004975\nvn 0.825430 -0.454191 -0.335226\nvn 0.797921 -0.485680 -0.356982\nvn 0.797921 -0.485680 -0.356982\nvn 0.769510 -0.638552 0.010346\nvn 0.760809 -0.648957 0.004975\nvn 0.769510 -0.638552 0.010346\nvn 0.797921 -0.485680 -0.356982\nvn 0.771478 -0.516699 -0.371273\nvn 0.771478 -0.516699 -0.371273\nvn 0.778471 -0.627556 0.012513\nvn 0.769510 -0.638552 0.010346\nvn 0.642731 -0.327225 -0.692691\nvn 0.771478 -0.516699 -0.371273\nvn 0.797921 -0.485680 -0.356982\nvn 0.797921 -0.485680 -0.356982\nvn 0.699677 -0.259624 -0.665618\nvn 0.642731 -0.327225 -0.692691\nvn 0.699677 -0.259624 -0.665618\nvn 0.797921 -0.485680 -0.356982\nvn 0.825430 -0.454191 -0.335226\nvn 0.825430 -0.454191 -0.335226\nvn 0.758784 -0.192031 -0.622391\nvn 0.699677 -0.259624 -0.665618\nvn 0.758784 -0.192031 -0.622391\nvn 0.825430 -0.454191 -0.335226\nvn 0.854418 -0.421502 -0.303819\nvn 0.854418 -0.421502 -0.303819\nvn 0.820564 -0.123419 -0.558070\nvn 0.758784 -0.192031 -0.622391\nvn 0.575429 0.096561 -0.812132\nvn 0.758784 -0.192031 -0.622391\nvn 0.820564 -0.123419 -0.558070\nvn 0.820564 -0.123419 -0.558070\nvn 0.660768 0.191294 -0.725804\nvn 0.575429 0.096561 -0.812132\nvn 0.758784 -0.192031 -0.622391\nvn 0.575429 0.096561 -0.812132\nvn 0.494378 0.002350 -0.869244\nvn 0.494378 0.002350 -0.869244\nvn 0.699677 -0.259624 -0.665618\nvn 0.758784 -0.192031 -0.622391\nvn 0.699677 -0.259624 -0.665618\nvn 0.494378 0.002350 -0.869244\nvn 0.416648 -0.091649 -0.904436\nvn 0.416648 -0.091649 -0.904436\nvn 0.642731 -0.327225 -0.692691\nvn 0.699677 -0.259624 -0.665618\nvn 0.130712 0.154059 -0.979378\nvn 0.416648 -0.091649 -0.904436\nvn 0.494378 0.002350 -0.869244\nvn 0.494378 0.002350 -0.869244\nvn 0.217266 0.260786 -0.940631\nvn 0.130712 0.154059 -0.979378\nvn 0.217266 0.260786 -0.940631\nvn 0.494378 0.002350 -0.869244\nvn 0.575429 0.096561 -0.812132\nvn 0.575429 0.096561 -0.812132\nvn 0.307729 0.368921 -0.877041\nvn 0.217266 0.260786 -0.940631\nvn 0.307729 0.368921 -0.877041\nvn 0.575429 0.096561 -0.812132\nvn 0.660768 0.191294 -0.725804\nvn 0.660768 0.191294 -0.725804\nvn 0.403797 0.477409 -0.780402\nvn 0.307729 0.368921 -0.877041\nvn -0.004792 0.587918 -0.808906\nvn 0.307729 0.368921 -0.877041\nvn 0.403797 0.477409 -0.780402\nvn 0.403797 0.477409 -0.780402\nvn 0.087102 0.694926 -0.713787\nvn -0.004792 0.587918 -0.808906\nvn 0.087102 0.694926 -0.713787\nvn 0.403797 0.477409 -0.780402\nvn 0.502096 0.584131 -0.637722\nvn 0.502096 0.584131 -0.637722\nvn 0.180187 0.798053 -0.575017\nvn 0.087102 0.694926 -0.713787\nvn 0.307729 0.368921 -0.877041\nvn -0.004792 0.587918 -0.808906\nvn -0.091435 0.481407 -0.871715\nvn -0.091435 0.481407 -0.871715\nvn 0.217266 0.260786 -0.940631\nvn 0.307729 0.368921 -0.877041\nvn 0.217266 0.260786 -0.940631\nvn -0.091435 0.481407 -0.871715\nvn -0.174508 0.377673 -0.909346\nvn -0.174508 0.377673 -0.909346\nvn 0.130712 0.154059 -0.979378\nvn 0.217266 0.260786 -0.940631\nvn -0.456596 0.548153 -0.700749\nvn -0.174508 0.377673 -0.909346\nvn -0.091435 0.481407 -0.871715\nvn -0.091435 0.481407 -0.871715\nvn -0.389063 0.632731 -0.669538\nvn -0.456596 0.548153 -0.700749\nvn -0.389063 0.632731 -0.669538\nvn -0.091435 0.481407 -0.871715\nvn -0.004792 0.587918 -0.808906\nvn -0.004792 0.587918 -0.808906\nvn -0.319143 0.720170 -0.616038\nvn -0.389063 0.632731 -0.669538\nvn -0.319143 0.720170 -0.616038\nvn -0.004792 0.587918 -0.808906\nvn 0.087102 0.694926 -0.713787\nvn 0.087102 0.694926 -0.713787\nvn -0.246198 0.807658 -0.535794\nvn -0.319143 0.720170 -0.616038\nvn -0.246198 0.807658 -0.535794\nvn 0.087102 0.694926 -0.713787\nvn 0.180187 0.798053 -0.575017\nvn 0.180187 0.798053 -0.575017\nvn -0.173929 0.889848 -0.421806\nvn -0.246198 0.807658 -0.535794\nvn 0.416648 -0.091649 -0.904436\nvn 0.130712 0.154059 -0.979378\nvn 0.037477 0.043734 -0.998340\nvn 0.130712 0.154059 -0.979378\nvn -0.174508 0.377673 -0.909346\nvn -0.263164 0.274914 -0.924752\nvn -0.263164 0.274914 -0.924752\nvn 0.037477 0.043734 -0.998340\nvn 0.130712 0.154059 -0.979378\nvn 0.037477 0.043734 -0.998340\nvn -0.263164 0.274914 -0.924752\nvn -0.364885 0.164741 -0.916362\nvn -0.364885 0.164741 -0.916362\nvn -0.073033 -0.081609 -0.993985\nvn 0.037477 0.043734 -0.998340\nvn 0.332784 -0.193646 -0.922907\nvn 0.037477 0.043734 -0.998340\nvn -0.073033 -0.081609 -0.993985\nvn -0.073033 -0.081609 -0.993985\nvn 0.231338 -0.316243 -0.920040\nvn 0.332784 -0.193646 -0.922907\nvn 0.580234 -0.404626 -0.706828\nvn 0.332784 -0.193646 -0.922907\nvn 0.231338 -0.316243 -0.920040\nvn 0.332784 -0.193646 -0.922907\nvn 0.580234 -0.404626 -0.706828\nvn 0.642731 -0.327225 -0.692691\nvn 0.771478 -0.516699 -0.371273\nvn 0.642731 -0.327225 -0.692691\nvn 0.580234 -0.404626 -0.706828\nvn 0.580234 -0.404626 -0.706828\nvn 0.739597 -0.556269 -0.378893\nvn 0.771478 -0.516699 -0.371273\nvn 0.778471 -0.627556 0.012513\nvn 0.771478 -0.516699 -0.371273\nvn 0.739597 -0.556269 -0.378893\nvn 0.739597 -0.556269 -0.378893\nvn 0.782670 -0.622321 0.011994\nvn 0.778471 -0.627556 0.012513\nvn 0.782670 -0.622321 0.011994\nvn 0.739597 -0.556269 -0.378893\nvn 0.694656 -0.613718 -0.375238\nvn 0.694656 -0.613718 -0.375238\nvn 0.777809 -0.628387 0.011964\nvn 0.782670 -0.622321 0.011994\nvn 0.777809 -0.628387 0.011964\nvn 0.694656 -0.613718 -0.375238\nvn 0.634951 -0.688725 -0.349993\nvn 0.634951 -0.688725 -0.349993\nvn 0.764631 -0.644201 0.018556\nvn 0.777809 -0.628387 0.011964\nvn 0.764631 -0.644201 0.018556\nvn 0.634951 -0.688725 -0.349993\nvn 0.560578 -0.774609 -0.292802\nvn 0.560578 -0.774609 -0.292802\nvn 0.744455 -0.666692 0.036165\nvn 0.764631 -0.644201 0.018556\nvn 0.284748 -0.762746 -0.580635\nvn 0.560578 -0.774609 -0.292802\nvn 0.634951 -0.688725 -0.349993\nvn 0.634951 -0.688725 -0.349993\nvn 0.403593 -0.626235 -0.667040\nvn 0.284748 -0.762746 -0.580635\nvn 0.403593 -0.626235 -0.667040\nvn 0.634951 -0.688725 -0.349993\nvn 0.694656 -0.613718 -0.375238\nvn 0.694656 -0.613718 -0.375238\nvn 0.502071 -0.503689 -0.703009\nvn 0.403593 -0.626235 -0.667040\nvn 0.502071 -0.503689 -0.703009\nvn 0.694656 -0.613718 -0.375238\nvn 0.739597 -0.556269 -0.378893\nvn 0.739597 -0.556269 -0.378893\nvn 0.580234 -0.404626 -0.706828\nvn 0.502071 -0.503689 -0.703009\nvn 0.231338 -0.316243 -0.920040\nvn 0.502071 -0.503689 -0.703009\nvn 0.580234 -0.404626 -0.706828\nvn 0.502071 -0.503689 -0.703009\nvn 0.231338 -0.316243 -0.920040\nvn 0.106025 -0.463623 -0.879666\nvn 0.106025 -0.463623 -0.879666\nvn 0.403593 -0.626235 -0.667040\nvn 0.502071 -0.503689 -0.703009\nvn 0.403593 -0.626235 -0.667040\nvn 0.106025 -0.463623 -0.879666\nvn -0.040590 -0.626975 -0.777981\nvn -0.040590 -0.626975 -0.777981\nvn 0.284748 -0.762746 -0.580635\nvn 0.403593 -0.626235 -0.667040\nvn -0.357742 -0.389391 -0.848761\nvn -0.040590 -0.626975 -0.777981\nvn 0.106025 -0.463623 -0.879666\nvn 0.106025 -0.463623 -0.879666\nvn -0.206644 -0.227702 -0.951551\nvn -0.357742 -0.389391 -0.848761\nvn -0.206644 -0.227702 -0.951551\nvn 0.106025 -0.463623 -0.879666\nvn 0.231338 -0.316243 -0.920040\nvn 0.231338 -0.316243 -0.920040\nvn -0.073033 -0.081609 -0.993985\nvn -0.206644 -0.227702 -0.951551\nvn -0.483576 0.041628 -0.874312\nvn -0.206644 -0.227702 -0.951551\nvn -0.073033 -0.081609 -0.993985\nvn -0.073033 -0.081609 -0.993985\nvn -0.364885 0.164741 -0.916362\nvn -0.483576 0.041628 -0.874312\nvn -0.206644 -0.227702 -0.951551\nvn -0.483576 0.041628 -0.874312\nvn -0.613193 -0.093023 -0.784437\nvn -0.613193 -0.093023 -0.784437\nvn -0.357742 -0.389391 -0.848761\nvn -0.206644 -0.227702 -0.951551\nvn -0.770710 0.212995 -0.600533\nvn -0.613193 -0.093023 -0.784437\nvn -0.483576 0.041628 -0.874312\nvn -0.483576 0.041628 -0.874312\nvn -0.684145 0.302077 -0.663849\nvn -0.770710 0.212995 -0.600533\nvn -0.684145 0.302077 -0.663849\nvn -0.483576 0.041628 -0.874312\nvn -0.364885 0.164741 -0.916362\nvn -0.364885 0.164741 -0.916362\nvn -0.601634 0.386806 -0.698869\nvn -0.684145 0.302077 -0.663849\nvn -0.601634 0.386806 -0.698869\nvn -0.364885 0.164741 -0.916362\nvn -0.263164 0.274914 -0.924752\nvn -0.263164 0.274914 -0.924752\nvn -0.526514 0.467459 -0.710116\nvn -0.601634 0.386806 -0.698869\nvn -0.526514 0.467459 -0.710116\nvn -0.263164 0.274914 -0.924752\nvn -0.174508 0.377673 -0.909346\nvn -0.174508 0.377673 -0.909346\nvn -0.456596 0.548153 -0.700749\nvn -0.526514 0.467459 -0.710116\nvn -0.040590 -0.626975 -0.777981\nvn -0.357742 -0.389391 -0.848761\nvn -0.480160 -0.523467 -0.703867\nvn -0.480160 -0.523467 -0.703867\nvn -0.165659 -0.755142 -0.634285\nvn -0.040590 -0.626975 -0.777981\nvn 0.284748 -0.762746 -0.580635\nvn -0.040590 -0.626975 -0.777981\nvn -0.165659 -0.755142 -0.634285\nvn -0.165659 -0.755142 -0.634285\nvn 0.177255 -0.867718 -0.464378\nvn 0.284748 -0.762746 -0.580635\nvn 0.560578 -0.774609 -0.292802\nvn 0.284748 -0.762746 -0.580635\nvn 0.177255 -0.867718 -0.464378\nvn 0.177255 -0.867718 -0.464378\nvn 0.490773 -0.842532 -0.221994\nvn 0.560578 -0.774609 -0.292802\nvn 0.744455 -0.666692 0.036165\nvn 0.560578 -0.774609 -0.292802\nvn 0.490773 -0.842532 -0.221994\nvn 0.490773 -0.842532 -0.221994\nvn 0.724791 -0.686886 0.053530\nvn 0.744455 -0.666692 0.036165\nvn 0.724791 -0.686886 0.053530\nvn 0.490773 -0.842532 -0.221994\nvn 0.449118 -0.879282 -0.158607\nvn 0.449118 -0.879282 -0.158607\nvn 0.716317 -0.694648 0.065983\nvn 0.724791 -0.686886 0.053530\nvn 0.716317 -0.694648 0.065983\nvn 0.449118 -0.879282 -0.158607\nvn 0.428823 -0.897870 -0.099706\nvn 0.428823 -0.897870 -0.099706\nvn 0.721298 -0.689588 0.064793\nvn 0.716317 -0.694648 0.065983\nvn 0.721298 -0.689588 0.064793\nvn 0.428823 -0.897870 -0.099706\nvn 0.422844 -0.905109 -0.044497\nvn 0.422844 -0.905109 -0.044497\nvn 0.731515 -0.680761 0.038088\nvn 0.721298 -0.689588 0.064793\nvn 0.049410 -0.991829 -0.117619\nvn 0.422844 -0.905109 -0.044497\nvn 0.428823 -0.897870 -0.099706\nvn 0.428823 -0.897870 -0.099706\nvn 0.070499 -0.966722 -0.245923\nvn 0.049410 -0.991829 -0.117619\nvn 0.070499 -0.966722 -0.245923\nvn 0.428823 -0.897870 -0.099706\nvn 0.449118 -0.879282 -0.158607\nvn 0.449118 -0.879282 -0.158607\nvn 0.111363 -0.927345 -0.357253\nvn 0.070499 -0.966722 -0.245923\nvn 0.111363 -0.927345 -0.357253\nvn 0.449118 -0.879282 -0.158607\nvn 0.490773 -0.842532 -0.221994\nvn 0.490773 -0.842532 -0.221994\nvn 0.177255 -0.867718 -0.464378\nvn 0.111363 -0.927345 -0.357253\nvn -0.242962 -0.831249 -0.499994\nvn 0.111363 -0.927345 -0.357253\nvn 0.177255 -0.867718 -0.464378\nvn 0.177255 -0.867718 -0.464378\nvn -0.165659 -0.755142 -0.634285\nvn -0.242962 -0.831249 -0.499994\nvn 0.111363 -0.927345 -0.357253\nvn -0.242962 -0.831249 -0.499994\nvn -0.297683 -0.886731 -0.353685\nvn -0.297683 -0.886731 -0.353685\nvn 0.070499 -0.966722 -0.245923\nvn 0.111363 -0.927345 -0.357253\nvn 0.070499 -0.966722 -0.245923\nvn -0.297683 -0.886731 -0.353685\nvn -0.334948 -0.926381 -0.172128\nvn -0.334948 -0.926381 -0.172128\nvn 0.049410 -0.991829 -0.117619\nvn 0.070499 -0.966722 -0.245923\nvn -0.667941 -0.716437 -0.201426\nvn -0.334948 -0.926381 -0.172128\nvn -0.297683 -0.886731 -0.353685\nvn -0.297683 -0.886731 -0.353685\nvn -0.618382 -0.671364 -0.408501\nvn -0.667941 -0.716437 -0.201426\nvn -0.618382 -0.671364 -0.408501\nvn -0.297683 -0.886731 -0.353685\nvn -0.242962 -0.831249 -0.499994\nvn -0.242962 -0.831249 -0.499994\nvn -0.557445 -0.607437 -0.565929\nvn -0.618382 -0.671364 -0.408501\nvn -0.557445 -0.607437 -0.565929\nvn -0.242962 -0.831249 -0.499994\nvn -0.165659 -0.755142 -0.634285\nvn -0.165659 -0.755142 -0.634285\nvn -0.480160 -0.523467 -0.703867\nvn -0.557445 -0.607437 -0.565929\nvn -0.785296 -0.291034 -0.546451\nvn -0.557445 -0.607437 -0.565929\nvn -0.480160 -0.523467 -0.703867\nvn -0.480160 -0.523467 -0.703867\nvn -0.716707 -0.212107 -0.664336\nvn -0.785296 -0.291034 -0.546451\nvn -0.716707 -0.212107 -0.664336\nvn -0.480160 -0.523467 -0.703867\nvn -0.357742 -0.389391 -0.848761\nvn -0.357742 -0.389391 -0.848761\nvn -0.613193 -0.093023 -0.784437\nvn -0.716707 -0.212107 -0.664336\nvn -0.557445 -0.607437 -0.565929\nvn -0.785296 -0.291034 -0.546451\nvn -0.844642 -0.352341 -0.403033\nvn -0.844642 -0.352341 -0.403033\nvn -0.618382 -0.671364 -0.408501\nvn -0.557445 -0.607437 -0.565929\nvn -0.618382 -0.671364 -0.408501\nvn -0.844642 -0.352341 -0.403033\nvn -0.897279 -0.392941 -0.201216\nvn -0.897279 -0.392941 -0.201216\nvn -0.667941 -0.716437 -0.201426\nvn -0.618382 -0.671364 -0.408501\nvn -0.985395 -0.006898 -0.170143\nvn -0.897279 -0.392941 -0.201216\nvn -0.844642 -0.352341 -0.403033\nvn -0.844642 -0.352341 -0.403033\nvn -0.941662 0.023499 -0.335739\nvn -0.985395 -0.006898 -0.170143\nvn -0.941662 0.023499 -0.335739\nvn -0.844642 -0.352341 -0.403033\nvn -0.785296 -0.291034 -0.546451\nvn -0.785296 -0.291034 -0.546451\nvn -0.893415 0.070377 -0.443686\nvn -0.941662 0.023499 -0.335739\nvn -0.893415 0.070377 -0.443686\nvn -0.785296 -0.291034 -0.546451\nvn -0.716707 -0.212107 -0.664336\nvn -0.716707 -0.212107 -0.664336\nvn -0.842065 0.129525 -0.523593\nvn -0.893415 0.070377 -0.443686\nvn -0.842065 0.129525 -0.523593\nvn -0.716707 -0.212107 -0.664336\nvn -0.613193 -0.093023 -0.784437\nvn -0.613193 -0.093023 -0.784437\nvn -0.770710 0.212995 -0.600533\nvn -0.842065 0.129525 -0.523593\nvn -0.354270 -0.934416 -0.036868\nvn -0.334948 -0.926381 -0.172128\nvn -0.667941 -0.716437 -0.201426\nvn 0.049410 -0.991829 -0.117619\nvn -0.334948 -0.926381 -0.172128\nvn -0.354270 -0.934416 -0.036868\nvn -0.354270 -0.934416 -0.036868\nvn 0.032289 -0.999158 -0.025331\nvn 0.049410 -0.991829 -0.117619\nvn 0.049410 -0.991829 -0.117619\nvn 0.032289 -0.999158 -0.025331\nvn 0.412074 -0.911098 -0.009797\nvn 0.412074 -0.911098 -0.009797\nvn 0.422844 -0.905109 -0.044497\nvn 0.049410 -0.991829 -0.117619\nvn 0.731515 -0.680761 0.038088\nvn 0.422844 -0.905109 -0.044497\nvn 0.412074 -0.911098 -0.009797\nvn -0.897279 -0.392941 -0.201216\nvn -0.985395 -0.006898 -0.170143\nvn -0.999090 -0.021760 -0.036683\nvn -0.999090 -0.021760 -0.036683\nvn -0.913327 -0.404964 -0.042880\nvn -0.897279 -0.392941 -0.201216\nvn -0.667941 -0.716437 -0.201426\nvn -0.897279 -0.392941 -0.201216\nvn -0.913327 -0.404964 -0.042880\nvn -0.667941 -0.716437 -0.201426\nvn -0.686593 -0.725780 -0.042819\nvn -0.354270 -0.934416 -0.036868\nvn -0.913327 -0.404964 -0.042880\nvn -0.686593 -0.725780 -0.042819\nvn -0.667941 -0.716437 -0.201426\nvn -0.027101 -0.991206 0.129524\nvn 0.307448 -0.900612 0.307203\nvn 0.264599 -0.901865 0.341507\nvn 0.264599 -0.901865 0.341507\nvn -0.040346 -0.993897 0.102668\nvn -0.027101 -0.991206 0.129524\nvn 0.099280 -0.989685 -0.103278\nvn 0.460808 -0.887036 -0.028688\nvn 0.447625 -0.894121 0.013398\nvn 0.447625 -0.894121 0.013398\nvn 0.074132 -0.997004 0.022066\nvn 0.099280 -0.989685 -0.103278\nvn 0.968509 0.048618 0.244187\nvn 0.849143 0.429562 0.307300\nvn 0.890112 0.452716 0.052431\nvn 0.640139 0.765665 0.063083\nvn 0.890112 0.452716 0.052431\nvn 0.849143 0.429562 0.307300\nvn 0.153269 -0.894068 0.420894\nvn 0.487207 -0.844463 0.222515\nvn 0.531188 -0.795545 0.291459\nvn 0.531188 -0.795545 0.291459\nvn 0.227825 -0.812327 0.536862\nvn 0.153269 -0.894068 0.420894\nvn 0.444119 -0.550785 0.706678\nvn 0.661664 -0.638835 0.392543\nvn 0.701845 -0.590175 0.398883\nvn 0.701845 -0.590175 0.398883\nvn 0.513911 -0.467155 0.719487\nvn 0.444119 -0.550785 0.706678\nvn 0.642731 -0.327225 -0.692691\nvn 0.416648 -0.091649 -0.904436\nvn 0.332784 -0.193646 -0.922907\nvn 0.037477 0.043734 -0.998340\nvn 0.332784 -0.193646 -0.922907\nvn 0.416648 -0.091649 -0.904436\nvn 0.761815 -0.193490 0.618223\nvn 0.812909 -0.462762 0.353595\nvn 0.844708 -0.430533 0.317979\nvn 0.844708 -0.430533 0.317979\nvn 0.837660 -0.113073 0.534360\nvn 0.761815 -0.193490 0.618223\nvn 0.938499 -0.009766 0.345143\nvn 0.899424 -0.376970 0.221201\nvn 0.927486 -0.355124 0.116859\nvn 0.927486 -0.355124 0.116859\nvn 0.983346 0.023042 0.180275\nvn 0.938499 -0.009766 0.345143\nvn 0.983346 0.023042 0.180275\nvn 0.927486 -0.355124 0.116859\nvn 0.934666 -0.354596 0.025727\nvn 0.934666 -0.354596 0.025727\nvn 0.998790 0.028291 0.040224\nvn 0.983346 0.023042 0.180275\nvn 0.999656 0.026216 -0.000000\nvn 0.998790 0.028291 0.040224\nvn 0.934666 -0.354596 0.025727\nvn 0.934666 -0.354596 0.025727\nvn 0.933599 -0.358320 0.000000\nvn 0.999656 0.026216 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn -0.382682 0.923880 -0.000000\nvn -0.369951 0.927501 -0.053652\nvn -0.369951 0.927501 -0.053652\nvn 0.012085 0.999723 -0.020204\nvn -0.000000 1.000000 -0.000000\nvn 0.012085 0.999723 -0.020204\nvn -0.369951 0.927501 -0.053652\nvn -0.330185 0.922374 -0.200510\nvn -0.330185 0.922374 -0.200510\nvn 0.032533 0.996758 -0.073582\nvn 0.012085 0.999723 -0.020204\nvn 0.050784 0.990809 -0.125373\nvn 0.032533 0.996758 -0.073582\nvn -0.330185 0.922374 -0.200510\nvn -0.330185 0.922374 -0.200510\nvn -0.271652 0.903186 -0.332355\nvn 0.050784 0.990809 -0.125373\nvn -0.552427 0.668552 -0.497859\nvn -0.271652 0.903186 -0.332355\nvn -0.330185 0.922374 -0.200510\nvn -0.330185 0.922374 -0.200510\nvn -0.644831 0.697475 -0.312604\nvn -0.552427 0.668552 -0.497859\nvn -0.644831 0.697475 -0.312604\nvn -0.330185 0.922374 -0.200510\nvn -0.369951 0.927501 -0.053652\nvn -0.369951 0.927501 -0.053652\nvn -0.697550 0.711711 -0.083013\nvn -0.644831 0.697475 -0.312604\nvn -0.707107 0.707107 -0.000000\nvn -0.697550 0.711711 -0.083013\nvn -0.369951 0.927501 -0.053652\nvn -0.369951 0.927501 -0.053652\nvn -0.382682 0.923880 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.918787 0.382560 -0.097357\nvn -0.697550 0.711711 -0.083013\nvn -0.707107 0.707107 -0.000000\nvn -0.707107 0.707107 -0.000000\nvn -0.923880 0.382681 -0.000000\nvn -0.918787 0.382560 -0.097357\nvn -0.697550 0.711711 -0.083013\nvn -0.918787 0.382560 -0.097357\nvn -0.856957 0.363456 -0.365410\nvn -0.856957 0.363456 -0.365410\nvn -0.644831 0.697475 -0.312604\nvn -0.697550 0.711711 -0.083013\nvn -0.644831 0.697475 -0.312604\nvn -0.856957 0.363456 -0.365410\nvn -0.740799 0.335073 -0.582189\nvn -0.740799 0.335073 -0.582189\nvn -0.552427 0.668552 -0.497859\nvn -0.644831 0.697475 -0.312604\nvn -0.819658 -0.043490 -0.571200\nvn -0.740799 0.335073 -0.582189\nvn -0.856957 0.363456 -0.365410\nvn -0.856957 0.363456 -0.365410\nvn -0.937513 -0.025697 -0.347001\nvn -0.819658 -0.043490 -0.571200\nvn -0.937513 -0.025697 -0.347001\nvn -0.856957 0.363456 -0.365410\nvn -0.918787 0.382560 -0.097357\nvn -0.918787 0.382560 -0.097357\nvn -0.995888 -0.006898 -0.090335\nvn -0.937513 -0.025697 -0.347001\nvn -1.000000 -0.000000 -0.000000\nvn -0.995888 -0.006898 -0.090335\nvn -0.918787 0.382560 -0.097357\nvn -0.918787 0.382560 -0.097357\nvn -0.923880 0.382681 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.917400 -0.392382 -0.066440\nvn -0.995888 -0.006898 -0.090335\nvn -1.000000 -0.000000 -0.000000\nvn -1.000000 -0.000000 -0.000000\nvn -0.923880 -0.382682 0.000000\nvn -0.917400 -0.392382 -0.066440\nvn -0.995888 -0.006898 -0.090335\nvn -0.917400 -0.392382 -0.066440\nvn -0.872883 -0.409142 -0.265854\nvn -0.872883 -0.409142 -0.265854\nvn -0.937513 -0.025697 -0.347001\nvn -0.995888 -0.006898 -0.090335\nvn -0.937513 -0.025697 -0.347001\nvn -0.872883 -0.409142 -0.265854\nvn -0.779945 -0.416097 -0.467491\nvn -0.779945 -0.416097 -0.467491\nvn -0.819658 -0.043490 -0.571200\nvn -0.937513 -0.025697 -0.347001\nvn -0.618322 -0.729810 -0.291643\nvn -0.779945 -0.416097 -0.467491\nvn -0.872883 -0.409142 -0.265854\nvn -0.872883 -0.409142 -0.265854\nvn -0.668883 -0.727754 -0.151557\nvn -0.618322 -0.729810 -0.291643\nvn -0.668883 -0.727754 -0.151557\nvn -0.872883 -0.409142 -0.265854\nvn -0.917400 -0.392382 -0.066440\nvn -0.917400 -0.392382 -0.066440\nvn -0.698247 -0.714911 -0.036806\nvn -0.668883 -0.727754 -0.151557\nvn -0.707107 -0.707107 0.000000\nvn -0.698247 -0.714911 -0.036806\nvn -0.917400 -0.392382 -0.066440\nvn -0.917400 -0.392382 -0.066440\nvn -0.923880 -0.382682 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.374594 -0.927147 -0.008820\nvn -0.698247 -0.714911 -0.036806\nvn -0.707107 -0.707107 0.000000\nvn -0.707107 -0.707107 0.000000\nvn -0.382681 -0.923880 0.000000\nvn -0.374594 -0.927147 -0.008820\nvn -0.698247 -0.714911 -0.036806\nvn -0.374594 -0.927147 -0.008820\nvn -0.360432 -0.932181 -0.033571\nvn -0.360432 -0.932181 -0.033571\nvn -0.668883 -0.727754 -0.151557\nvn -0.698247 -0.714911 -0.036806\nvn -0.668883 -0.727754 -0.151557\nvn -0.360432 -0.932181 -0.033571\nvn -0.353782 -0.931883 -0.080205\nvn -0.353782 -0.931883 -0.080205\nvn -0.618322 -0.729810 -0.291643\nvn -0.668883 -0.727754 -0.151557\nvn -0.027101 -0.991206 0.129524\nvn -0.353782 -0.931883 -0.080205\nvn -0.360432 -0.932181 -0.033571\nvn -0.360432 -0.932181 -0.033571\nvn 0.005494 -0.997370 0.072270\nvn -0.027101 -0.991206 0.129524\nvn 0.005494 -0.997370 0.072270\nvn -0.360432 -0.932181 -0.033571\nvn -0.374594 -0.927147 -0.008820\nvn -0.374594 -0.927147 -0.008820\nvn 0.005768 -0.999874 0.014771\nvn 0.005494 -0.997370 0.072270\nvn 0.000000 -1.000000 0.000000\nvn 0.005768 -0.999874 0.014771\nvn -0.374594 -0.927147 -0.008820\nvn -0.374594 -0.927147 -0.008820\nvn -0.382681 -0.923880 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -1.000000 0.000000\nvn 0.382682 -0.923880 0.000000\nvn 0.385147 -0.922247 0.033510\nvn 0.385147 -0.922247 0.033510\nvn 0.005768 -0.999874 0.014771\nvn 0.000000 -1.000000 0.000000\nvn 0.385147 -0.922247 0.033510\nvn 0.382682 -0.923880 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.707452 -0.705193 0.047060\nvn 0.385147 -0.922247 0.033510\nvn 0.385147 -0.922247 0.033510\nvn 0.707452 -0.705193 0.047060\nvn 0.684803 -0.695241 0.218369\nvn 0.684803 -0.695241 0.218369\nvn 0.371535 -0.914950 0.157568\nvn 0.385147 -0.922247 0.033510\nvn 0.005768 -0.999874 0.014771\nvn 0.385147 -0.922247 0.033510\nvn 0.371535 -0.914950 0.157568\nvn 0.371535 -0.914950 0.157568\nvn 0.005494 -0.997370 0.072270\nvn 0.005768 -0.999874 0.014771\nvn 0.371535 -0.914950 0.157568\nvn 0.684803 -0.695241 0.218369\nvn 0.598331 -0.673286 0.434381\nvn 0.598331 -0.673286 0.434381\nvn 0.307448 -0.900612 0.307203\nvn 0.371535 -0.914950 0.157568\nvn 0.922819 -0.381341 0.054630\nvn 0.707452 -0.705193 0.047060\nvn 0.707107 -0.707107 0.000000\nvn 0.707107 -0.707107 0.000000\nvn 0.923880 -0.382681 0.000000\nvn 0.922819 -0.381341 0.054630\nvn 0.707452 -0.705193 0.047060\nvn 0.922819 -0.381341 0.054630\nvn 0.894435 -0.370781 0.250016\nvn 0.894435 -0.370781 0.250016\nvn 0.684803 -0.695241 0.218369\nvn 0.707452 -0.705193 0.047060\nvn 0.684803 -0.695241 0.218369\nvn 0.894435 -0.370781 0.250016\nvn 0.796247 -0.344135 0.497555\nvn 0.796247 -0.344135 0.497555\nvn 0.598331 -0.673286 0.434381\nvn 0.684803 -0.695241 0.218369\nvn 0.870665 0.035188 0.490617\nvn 0.796247 -0.344135 0.497555\nvn 0.894435 -0.370781 0.250016\nvn 0.894435 -0.370781 0.250016\nvn 0.968468 0.009034 0.248976\nvn 0.870665 0.035188 0.490617\nvn 0.968468 0.009034 0.248976\nvn 0.894435 -0.370781 0.250016\nvn 0.922819 -0.381341 0.054630\nvn 0.922819 -0.381341 0.054630\nvn 0.998471 0.000244 0.055271\nvn 0.968468 0.009034 0.248976\nvn 1.000000 0.000000 0.000000\nvn 0.998471 0.000244 0.055271\nvn 0.922819 -0.381341 0.054630\nvn 0.922819 -0.381341 0.054630\nvn 0.923880 -0.382681 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923194 0.381302 0.048189\nvn 0.998471 0.000244 0.055271\nvn 1.000000 0.000000 0.000000\nvn 1.000000 0.000000 0.000000\nvn 0.923880 0.382682 -0.000000\nvn 0.923194 0.381302 0.048189\nvn 0.998471 0.000244 0.055271\nvn 0.923194 0.381302 0.048189\nvn 0.897406 0.385697 0.214242\nvn 0.897406 0.385697 0.214242\nvn 0.968468 0.009034 0.248976\nvn 0.998471 0.000244 0.055271\nvn 0.968468 0.009034 0.248976\nvn 0.897406 0.385697 0.214242\nvn 0.813970 0.406237 0.415240\nvn 0.813970 0.406237 0.415240\nvn 0.870665 0.035188 0.490617\nvn 0.968468 0.009034 0.248976\nvn 0.640051 0.716014 0.278672\nvn 0.813970 0.406237 0.415240\nvn 0.897406 0.385697 0.214242\nvn 0.897406 0.385697 0.214242\nvn 0.696025 0.702953 0.146310\nvn 0.640051 0.716014 0.278672\nvn 0.696025 0.702953 0.146310\nvn 0.897406 0.385697 0.214242\nvn 0.923194 0.381302 0.048189\nvn 0.923194 0.381302 0.048189\nvn 0.709601 0.703833 0.032961\nvn 0.696025 0.702953 0.146310\nvn 0.707107 0.707107 -0.000000\nvn 0.709601 0.703833 0.032961\nvn 0.923194 0.381302 0.048189\nvn 0.923194 0.381302 0.048189\nvn 0.923880 0.382682 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.389852 0.920826 0.009766\nvn 0.709601 0.703833 0.032961\nvn 0.707107 0.707107 -0.000000\nvn 0.707107 0.707107 -0.000000\nvn 0.382681 0.923880 -0.000000\nvn 0.389852 0.920826 0.009766\nvn 0.709601 0.703833 0.032961\nvn 0.389852 0.920826 0.009766\nvn 0.393759 0.917989 0.047427\nvn 0.393759 0.917989 0.047427\nvn 0.696025 0.702953 0.146310\nvn 0.709601 0.703833 0.032961\nvn 0.696025 0.702953 0.146310\nvn 0.393759 0.917989 0.047427\nvn 0.373922 0.922842 0.092443\nvn 0.373922 0.922842 0.092443\nvn 0.640051 0.716014 0.278672\nvn 0.696025 0.702953 0.146310\nvn 0.050784 0.990809 -0.125373\nvn 0.373922 0.922842 0.092443\nvn 0.393759 0.917989 0.047427\nvn 0.393759 0.917989 0.047427\nvn 0.032533 0.996758 -0.073582\nvn 0.050784 0.990809 -0.125373\nvn 0.032533 0.996758 -0.073582\nvn 0.393759 0.917989 0.047427\nvn 0.389852 0.920826 0.009766\nvn 0.389852 0.920826 0.009766\nvn 0.012085 0.999723 -0.020204\nvn 0.032533 0.996758 -0.073582\nvn -0.000000 1.000000 -0.000000\nvn 0.012085 0.999723 -0.020204\nvn 0.389852 0.920826 0.009766\nvn 0.389852 0.920826 0.009766\nvn 0.382681 0.923880 -0.000000\nvn -0.000000 1.000000 -0.000000\nvn 0.005494 -0.997370 0.072270\nvn 0.371535 -0.914950 0.157568\nvn 0.307448 -0.900612 0.307203\nvn 0.307448 -0.900612 0.307203\nvn -0.027101 -0.991206 0.129524\nvn 0.005494 -0.997370 0.072270\nvn -0.386339 0.922341 -0.005341\nvn -0.418692 0.906966 0.045931\nvn -0.076695 0.981778 0.173869\nvn -0.076695 0.981778 0.173869\nvn -0.022035 0.996893 0.075625\nvn -0.386339 0.922341 -0.005341\nvn -0.076695 0.981778 0.173869\nvn -0.418692 0.906966 0.045931\nvn -0.458035 0.881795 0.112433\nvn -0.458035 0.881795 0.112433\nvn -0.134710 0.953890 0.268228\nvn -0.076695 0.981778 0.173869\nvn -0.134710 0.953890 0.268228\nvn -0.458035 0.881795 0.112433\nvn -0.498530 0.852216 0.158730\nvn -0.498530 0.852216 0.158730\nvn -0.184611 0.924548 0.333361\nvn -0.134710 0.953890 0.268228\nvn -0.758858 0.649660 -0.045565\nvn -0.498530 0.852216 0.158730\nvn -0.458035 0.881795 0.112433\nvn -0.458035 0.881795 0.112433\nvn -0.732946 0.677310 -0.063571\nvn -0.758858 0.649660 -0.045565\nvn -0.732946 0.677310 -0.063571\nvn -0.458035 0.881795 0.112433\nvn -0.418692 0.906966 0.045931\nvn -0.418692 0.906966 0.045931\nvn -0.708873 0.699472 -0.090765\nvn -0.732946 0.677310 -0.063571\nvn -0.708873 0.699472 -0.090765\nvn -0.418692 0.906966 0.045931\nvn -0.386339 0.922341 -0.005341\nvn -0.386339 0.922341 -0.005341\nvn -0.695441 0.713142 -0.088262\nvn -0.708873 0.699472 -0.090765\nvn -0.901930 0.369982 -0.222789\nvn -0.708873 0.699472 -0.090765\nvn -0.695441 0.713142 -0.088262\nvn -0.695441 0.713142 -0.088262\nvn -0.908581 0.383745 -0.164986\nvn -0.901930 0.369982 -0.222789\nvn -0.708873 0.699472 -0.090765\nvn -0.901930 0.369982 -0.222789\nvn -0.903558 0.351095 -0.245590\nvn -0.903558 0.351095 -0.245590\nvn -0.732946 0.677310 -0.063571\nvn -0.708873 0.699472 -0.090765\nvn -0.732946 0.677310 -0.063571\nvn -0.903558 0.351095 -0.245590\nvn -0.907332 0.328568 -0.262281\nvn -0.907332 0.328568 -0.262281\nvn -0.758858 0.649660 -0.045565\nvn -0.732946 0.677310 -0.063571\nvn -0.888699 -0.056339 -0.455016\nvn -0.907332 0.328568 -0.262281\nvn -0.903558 0.351095 -0.245590\nvn -0.903558 0.351095 -0.245590\nvn -0.913729 -0.043612 -0.403976\nvn -0.888699 -0.056339 -0.455016\nvn -0.913729 -0.043612 -0.403976\nvn -0.903558 0.351095 -0.245590\nvn -0.901930 0.369982 -0.222789\nvn -0.901930 0.369982 -0.222789\nvn -0.943631 -0.028231 -0.329793\nvn -0.913729 -0.043612 -0.403976\nvn -0.943631 -0.028231 -0.329793\nvn -0.901930 0.369982 -0.222789\nvn -0.908581 0.383745 -0.164986\nvn -0.908581 0.383745 -0.164986\nvn -0.976271 -0.012391 -0.216196\nvn -0.943631 -0.028231 -0.329793\nvn -0.822215 -0.415304 -0.389210\nvn -0.943631 -0.028231 -0.329793\nvn -0.976271 -0.012391 -0.216196\nvn -0.976271 -0.012391 -0.216196\nvn -0.885159 -0.403072 -0.232437\nvn -0.822215 -0.415304 -0.389210\nvn -0.943631 -0.028231 -0.329793\nvn -0.822215 -0.415304 -0.389210\nvn -0.756701 -0.418606 -0.502168\nvn -0.756701 -0.418606 -0.502168\nvn -0.913729 -0.043612 -0.403976\nvn -0.943631 -0.028231 -0.329793\nvn -0.913729 -0.043612 -0.403976\nvn -0.756701 -0.418606 -0.502168\nvn -0.702579 -0.414876 -0.578153\nvn -0.702579 -0.414876 -0.578153\nvn -0.888699 -0.056339 -0.455016\nvn -0.913729 -0.043612 -0.403976\nvn -0.415676 -0.676222 -0.608224\nvn -0.702579 -0.414876 -0.578153\nvn -0.756701 -0.418606 -0.502168\nvn -0.756701 -0.418606 -0.502168\nvn -0.487479 -0.701143 -0.520348\nvn -0.415676 -0.676222 -0.608224\nvn -0.487479 -0.701143 -0.520348\nvn -0.756701 -0.418606 -0.502168\nvn -0.822215 -0.415304 -0.389210\nvn -0.822215 -0.415304 -0.389210\nvn -0.574990 -0.720325 -0.387966\nvn -0.487479 -0.701143 -0.520348\nvn -0.574990 -0.720325 -0.387966\nvn -0.822215 -0.415304 -0.389210\nvn -0.885159 -0.403072 -0.232437\nvn -0.885159 -0.403072 -0.232437\nvn -0.657788 -0.722459 -0.212996\nvn -0.574990 -0.720325 -0.387966\nvn -0.259781 -0.908534 -0.327230\nvn -0.574990 -0.720325 -0.387966\nvn -0.657788 -0.722459 -0.212996\nvn -0.657788 -0.722459 -0.212996\nvn -0.339468 -0.926176 -0.164195\nvn -0.259781 -0.908534 -0.327230\nvn -0.574990 -0.720325 -0.387966\nvn -0.259781 -0.908534 -0.327230\nvn -0.174725 -0.869964 -0.461122\nvn -0.174725 -0.869964 -0.461122\nvn -0.487479 -0.701143 -0.520348\nvn -0.574990 -0.720325 -0.387966\nvn -0.487479 -0.701143 -0.520348\nvn -0.174725 -0.869964 -0.461122\nvn -0.101323 -0.828439 -0.550838\nvn -0.101323 -0.828439 -0.550838\nvn -0.415676 -0.676222 -0.608224\nvn -0.487479 -0.701143 -0.520348\nvn 0.207898 -0.884573 -0.417505\nvn -0.101323 -0.828439 -0.550838\nvn -0.174725 -0.869964 -0.461122\nvn -0.174725 -0.869964 -0.461122\nvn 0.145332 -0.931170 -0.334368\nvn 0.207898 -0.884573 -0.417505\nvn 0.145332 -0.931170 -0.334368\nvn -0.174725 -0.869964 -0.461122\nvn -0.259781 -0.908534 -0.327230\nvn -0.259781 -0.908534 -0.327230\nvn 0.081304 -0.972986 -0.216077\nvn 0.145332 -0.931170 -0.334368\nvn 0.081304 -0.972986 -0.216077\nvn -0.259781 -0.908534 -0.327230\nvn -0.339468 -0.926176 -0.164195\nvn -0.339468 -0.926176 -0.164195\nvn 0.024568 -0.995211 -0.094608\nvn 0.081304 -0.972986 -0.216077\nvn -0.657788 -0.722459 -0.212996\nvn -0.885159 -0.403072 -0.232437\nvn -0.917650 -0.387289 -0.089024\nvn -0.995385 -0.001404 -0.095952\nvn -0.917650 -0.387289 -0.089024\nvn -0.885159 -0.403072 -0.232437\nvn -0.917650 -0.387289 -0.089024\nvn -0.995385 -0.001404 -0.095952\nvn -0.999006 -0.002198 -0.044527\nvn -0.922225 0.383960 -0.045565\nvn -0.999006 -0.002198 -0.044527\nvn -0.995385 -0.001404 -0.095952\nvn -0.995385 -0.001404 -0.095952\nvn -0.918511 0.386405 -0.083837\nvn -0.922225 0.383960 -0.045565\nvn -0.702279 0.711221 -0.031130\nvn -0.922225 0.383960 -0.045565\nvn -0.918511 0.386405 -0.083837\nvn -0.918511 0.386405 -0.083837\nvn -0.699227 0.713021 -0.051791\nvn -0.702279 0.711221 -0.031130\nvn -0.377888 0.925766 -0.012574\nvn -0.702279 0.711221 -0.031130\nvn -0.699227 0.713021 -0.051791\nvn -0.699227 0.713021 -0.051791\nvn -0.379169 0.925217 -0.014314\nvn -0.377888 0.925766 -0.012574\nvn -0.377888 0.925766 -0.012574\nvn -0.379169 0.925217 -0.014314\nvn -0.001404 0.999813 0.019288\nvn -0.001404 0.999813 0.019288\nvn 0.005127 0.999983 0.002808\nvn -0.377888 0.925766 -0.012574\nvn -0.022035 0.996893 0.075625\nvn -0.001404 0.999813 0.019288\nvn -0.379169 0.925217 -0.014314\nvn -0.379169 0.925217 -0.014314\nvn -0.386339 0.922341 -0.005341\nvn -0.022035 0.996893 0.075625\nvn -0.695441 0.713142 -0.088262\nvn -0.386339 0.922341 -0.005341\nvn -0.379169 0.925217 -0.014314\nvn -0.379169 0.925217 -0.014314\nvn -0.699227 0.713021 -0.051791\nvn -0.695441 0.713142 -0.088262\nvn -0.699227 0.713021 -0.051791\nvn -0.918511 0.386405 -0.083837\nvn -0.908581 0.383745 -0.164986\nvn -0.908581 0.383745 -0.164986\nvn -0.695441 0.713142 -0.088262\nvn -0.699227 0.713021 -0.051791\nvn -0.976271 -0.012391 -0.216196\nvn -0.908581 0.383745 -0.164986\nvn -0.918511 0.386405 -0.083837\nvn -0.918511 0.386405 -0.083837\nvn -0.995385 -0.001404 -0.095952\nvn -0.976271 -0.012391 -0.216196\nvn -0.885159 -0.403072 -0.232437\nvn -0.976271 -0.012391 -0.216196\nvn -0.995385 -0.001404 -0.095952\nvn 0.372059 0.927204 0.043185\nvn -0.001404 0.999813 0.019288\nvn -0.022035 0.996893 0.075625\nvn -0.022035 0.996893 0.075625\nvn 0.335317 0.931271 0.142465\nvn 0.372059 0.927204 0.043185\nvn 0.335317 0.931271 0.142465\nvn -0.022035 0.996893 0.075625\nvn -0.076695 0.981778 0.173869\nvn -0.076695 0.981778 0.173869\nvn 0.263593 0.923201 0.279676\nvn 0.335317 0.931271 0.142465\nvn 0.653346 0.732970 0.189460\nvn 0.335317 0.931271 0.142465\nvn 0.263593 0.923201 0.279676\nvn 0.263593 0.923201 0.279676\nvn 0.572757 0.737836 0.357138\nvn 0.653346 0.732970 0.189460\nvn 0.883159 0.419301 0.210276\nvn 0.653346 0.732970 0.189460\nvn 0.572757 0.737836 0.357138\nvn 0.572757 0.737836 0.357138\nvn 0.811047 0.436577 0.389363\nvn 0.883159 0.419301 0.210276\nvn 0.979816 0.029756 0.197672\nvn 0.883159 0.419301 0.210276\nvn 0.811047 0.436577 0.389363\nvn 0.811047 0.436577 0.389363\nvn 0.932049 0.050173 0.358842\nvn 0.979816 0.029756 0.197672\nvn 0.916668 -0.370592 0.149604\nvn 0.979816 0.029756 0.197672\nvn 0.932049 0.050173 0.358842\nvn 0.932049 0.050173 0.358842\nvn 0.897902 -0.356768 0.257856\nvn 0.916668 -0.370592 0.149604\nvn 0.704899 -0.705356 0.074772\nvn 0.916668 -0.370592 0.149604\nvn 0.897902 -0.356768 0.257856\nvn 0.897902 -0.356768 0.257856\nvn 0.710830 -0.695631 0.104011\nvn 0.704899 -0.705356 0.074772\nvn 0.388660 -0.921308 -0.011628\nvn 0.704899 -0.705356 0.074772\nvn 0.710830 -0.695631 0.104011\nvn 0.710830 -0.695631 0.104011\nvn 0.418353 -0.905891 -0.065890\nvn 0.388660 -0.921308 -0.011628\nvn 0.024568 -0.995211 -0.094608\nvn 0.388660 -0.921308 -0.011628\nvn 0.418353 -0.905891 -0.065890\nvn 0.418353 -0.905891 -0.065890\nvn 0.081304 -0.972986 -0.216077\nvn 0.024568 -0.995211 -0.094608\nvn 0.418353 -0.905891 -0.065890\nvn 0.710830 -0.695631 0.104011\nvn 0.726786 -0.682258 0.079411\nvn 0.726786 -0.682258 0.079411\nvn 0.457276 -0.876951 -0.147837\nvn 0.418353 -0.905891 -0.065890\nvn 0.081304 -0.972986 -0.216077\nvn 0.418353 -0.905891 -0.065890\nvn 0.457276 -0.876951 -0.147837\nvn 0.457276 -0.876951 -0.147837\nvn 0.145332 -0.931170 -0.334368\nvn 0.081304 -0.972986 -0.216077\nvn 0.457276 -0.876951 -0.147837\nvn 0.726786 -0.682258 0.079411\nvn 0.753618 -0.655589 0.047580\nvn 0.753618 -0.655589 0.047580\nvn 0.503420 -0.837455 -0.212690\nvn 0.457276 -0.876951 -0.147837\nvn 0.145332 -0.931170 -0.334368\nvn 0.457276 -0.876951 -0.147837\nvn 0.503420 -0.837455 -0.212690\nvn 0.503420 -0.837455 -0.212690\nvn 0.207898 -0.884573 -0.417505\nvn 0.145332 -0.931170 -0.334368\nvn 0.710830 -0.695631 0.104011\nvn 0.897902 -0.356768 0.257856\nvn 0.888232 -0.349872 0.297715\nvn 0.888232 -0.349872 0.297715\nvn 0.726786 -0.682258 0.079411\nvn 0.710830 -0.695631 0.104011\nvn 0.726786 -0.682258 0.079411\nvn 0.888232 -0.349872 0.297715\nvn 0.890914 -0.335069 0.306595\nvn 0.890914 -0.335069 0.306595\nvn 0.753618 -0.655589 0.047580\nvn 0.726786 -0.682258 0.079411\nvn 0.868208 0.058322 0.492762\nvn 0.890914 -0.335069 0.306595\nvn 0.888232 -0.349872 0.297715\nvn 0.888232 -0.349872 0.297715\nvn 0.891924 0.054599 0.448877\nvn 0.868208 0.058322 0.492762\nvn 0.891924 0.054599 0.448877\nvn 0.888232 -0.349872 0.297715\nvn 0.897902 -0.356768 0.257856\nvn 0.897902 -0.356768 0.257856\nvn 0.932049 0.050173 0.358842\nvn 0.891924 0.054599 0.448877\nvn 0.746104 0.433404 0.505460\nvn 0.891924 0.054599 0.448877\nvn 0.932049 0.050173 0.358842\nvn 0.932049 0.050173 0.358842\nvn 0.811047 0.436577 0.389363\nvn 0.746104 0.433404 0.505460\nvn 0.891924 0.054599 0.448877\nvn 0.746104 0.433404 0.505460\nvn 0.702245 0.425162 0.571043\nvn 0.702245 0.425162 0.571043\nvn 0.868208 0.058322 0.492762\nvn 0.891924 0.054599 0.448877\nvn 0.445004 0.703443 0.554202\nvn 0.702245 0.425162 0.571043\nvn 0.746104 0.433404 0.505460\nvn 0.746104 0.433404 0.505460\nvn 0.498373 0.722505 0.479177\nvn 0.445004 0.703443 0.554202\nvn 0.498373 0.722505 0.479177\nvn 0.746104 0.433404 0.505460\nvn 0.811047 0.436577 0.389363\nvn 0.811047 0.436577 0.389363\nvn 0.572757 0.737836 0.357138\nvn 0.498373 0.722505 0.479177\nvn 0.193977 0.898382 0.394059\nvn 0.498373 0.722505 0.479177\nvn 0.572757 0.737836 0.357138\nvn 0.572757 0.737836 0.357138\nvn 0.263593 0.923201 0.279676\nvn 0.193977 0.898382 0.394059\nvn 0.498373 0.722505 0.479177\nvn 0.193977 0.898382 0.394059\nvn 0.139532 0.872262 0.468710\nvn 0.139532 0.872262 0.468710\nvn 0.445004 0.703443 0.554202\nvn 0.498373 0.722505 0.479177\nvn -0.184611 0.924548 0.333361\nvn 0.139532 0.872262 0.468710\nvn 0.193977 0.898382 0.394059\nvn 0.193977 0.898382 0.394059\nvn -0.134710 0.953890 0.268228\nvn -0.184611 0.924548 0.333361\nvn -0.134710 0.953890 0.268228\nvn 0.193977 0.898382 0.394059\nvn 0.263593 0.923201 0.279676\nvn 0.263593 0.923201 0.279676\nvn -0.076695 0.981778 0.173869\nvn -0.134710 0.953890 0.268228\nvn 0.868208 0.058322 0.492762\nvn 0.702245 0.425162 0.571043\nvn 0.656555 0.409810 0.633239\nvn 0.392663 0.677318 0.622139\nvn 0.656555 0.409810 0.633239\nvn 0.702245 0.425162 0.571043\nvn 0.702245 0.425162 0.571043\nvn 0.445004 0.703443 0.554202\nvn 0.392663 0.677318 0.622139\nvn 0.656555 0.409810 0.633239\nvn 0.392663 0.677318 0.622139\nvn 0.335716 0.636396 0.694475\nvn 0.335716 0.636396 0.694475\nvn 0.600994 0.377041 0.704731\nvn 0.656555 0.409810 0.633239\nvn 0.838914 0.059940 0.540954\nvn 0.656555 0.409810 0.633239\nvn 0.600994 0.377041 0.704731\nvn 0.656555 0.409810 0.633239\nvn 0.838914 0.059940 0.540954\nvn 0.868208 0.058322 0.492762\nvn 0.890914 -0.335069 0.306595\nvn 0.868208 0.058322 0.492762\nvn 0.838914 0.059940 0.540954\nvn 0.838914 0.059940 0.540954\nvn 0.888811 -0.315171 0.332690\nvn 0.890914 -0.335069 0.306595\nvn 0.753618 -0.655589 0.047580\nvn 0.890914 -0.335069 0.306595\nvn 0.888811 -0.315171 0.332690\nvn 0.888811 -0.315171 0.332690\nvn 0.781713 -0.622038 0.044649\nvn 0.753618 -0.655589 0.047580\nvn 0.503420 -0.837455 -0.212690\nvn 0.753618 -0.655589 0.047580\nvn 0.781713 -0.622038 0.044649\nvn 0.781713 -0.622038 0.044649\nvn 0.554291 -0.795209 -0.245771\nvn 0.503420 -0.837455 -0.212690\nvn 0.554291 -0.795209 -0.245771\nvn 0.781713 -0.622038 0.044649\nvn 0.796403 -0.599919 0.076421\nvn 0.796403 -0.599919 0.076421\nvn 0.594604 -0.765633 -0.245465\nvn 0.554291 -0.795209 -0.245771\nvn 0.594604 -0.765633 -0.245465\nvn 0.796403 -0.599919 0.076421\nvn 0.795280 -0.594613 0.118172\nvn 0.795280 -0.594613 0.118172\nvn 0.619148 -0.751267 -0.228591\nvn 0.594604 -0.765633 -0.245465\nvn 0.619148 -0.751267 -0.228591\nvn 0.795280 -0.594613 0.118172\nvn 0.781029 -0.606944 0.147013\nvn 0.781029 -0.606944 0.147013\nvn 0.625518 -0.749913 -0.215311\nvn 0.619148 -0.751267 -0.228591\nvn 0.625518 -0.749913 -0.215311\nvn 0.781029 -0.606944 0.147013\nvn 0.761887 -0.633095 0.136819\nvn 0.761887 -0.633095 0.136819\nvn 0.610164 -0.760163 -0.223276\nvn 0.625518 -0.749913 -0.215311\nvn 0.610164 -0.760163 -0.223276\nvn 0.761887 -0.633095 0.136819\nvn 0.744862 -0.658552 0.107185\nvn 0.744862 -0.658552 0.107185\nvn 0.578594 -0.781183 -0.234483\nvn 0.610164 -0.760163 -0.223276\nvn 0.578594 -0.781183 -0.234483\nvn 0.744862 -0.658552 0.107185\nvn 0.725786 -0.683211 0.080358\nvn 0.725786 -0.683211 0.080358\nvn 0.527800 -0.817275 -0.231275\nvn 0.578594 -0.781183 -0.234483\nvn 0.527800 -0.817275 -0.231275\nvn 0.725786 -0.683211 0.080358\nvn 0.702639 -0.707552 0.075290\nvn 0.702639 -0.707552 0.075290\nvn 0.450710 -0.875203 -0.175730\nvn 0.527800 -0.817275 -0.231275\nvn 0.789017 -0.397331 0.468594\nvn 0.761887 -0.633095 0.136819\nvn 0.781029 -0.606944 0.147013\nvn 0.781029 -0.606944 0.147013\nvn 0.806323 -0.352194 0.475187\nvn 0.789017 -0.397331 0.468594\nvn 0.806323 -0.352194 0.475187\nvn 0.781029 -0.606944 0.147013\nvn 0.795280 -0.594613 0.118172\nvn 0.761887 -0.633095 0.136819\nvn 0.789017 -0.397331 0.468594\nvn 0.791402 -0.430600 0.433896\nvn 0.791402 -0.430600 0.433896\nvn 0.744862 -0.658552 0.107185\nvn 0.761887 -0.633095 0.136819\nvn 0.744862 -0.658552 0.107185\nvn 0.791402 -0.430600 0.433896\nvn 0.804801 -0.445311 0.392421\nvn 0.804801 -0.445311 0.392421\nvn 0.725786 -0.683211 0.080358\nvn 0.744862 -0.658552 0.107185\nvn 0.725786 -0.683211 0.080358\nvn 0.804801 -0.445311 0.392421\nvn 0.834860 -0.432125 0.340994\nvn 0.834860 -0.432125 0.340994\nvn 0.702639 -0.707552 0.075290\nvn 0.725786 -0.683211 0.080358\nvn 0.820843 -0.100774 0.562193\nvn 0.834860 -0.432125 0.340994\nvn 0.804801 -0.445311 0.392421\nvn 0.804801 -0.445311 0.392421\nvn 0.750463 -0.144751 0.644867\nvn 0.820843 -0.100774 0.562193\nvn 0.750463 -0.144751 0.644867\nvn 0.804801 -0.445311 0.392421\nvn 0.791402 -0.430600 0.433896\nvn 0.791402 -0.430600 0.433896\nvn 0.712413 -0.139656 0.687723\nvn 0.750463 -0.144751 0.644867\nvn 0.712413 -0.139656 0.687723\nvn 0.791402 -0.430600 0.433896\nvn 0.789017 -0.397331 0.468594\nvn 0.789017 -0.397331 0.468594\nvn 0.693333 -0.103124 0.713201\nvn 0.712413 -0.139656 0.687723\nvn 0.693333 -0.103124 0.713201\nvn 0.789017 -0.397331 0.468594\nvn 0.806323 -0.352194 0.475187\nvn 0.806323 -0.352194 0.475187\nvn 0.705546 -0.044192 0.707285\nvn 0.693333 -0.103124 0.713201\nvn 0.498679 0.197702 0.843939\nvn 0.693333 -0.103124 0.713201\nvn 0.705546 -0.044192 0.707285\nvn 0.705546 -0.044192 0.707285\nvn 0.508169 0.258830 0.821445\nvn 0.498679 0.197702 0.843939\nvn 0.693333 -0.103124 0.713201\nvn 0.498679 0.197702 0.843939\nvn 0.525989 0.166754 0.833984\nvn 0.525989 0.166754 0.833984\nvn 0.712413 -0.139656 0.687723\nvn 0.693333 -0.103124 0.713201\nvn 0.712413 -0.139656 0.687723\nvn 0.525989 0.166754 0.833984\nvn 0.579355 0.172162 0.796686\nvn 0.579355 0.172162 0.796686\nvn 0.750463 -0.144751 0.644867\nvn 0.712413 -0.139656 0.687723\nvn 0.750463 -0.144751 0.644867\nvn 0.579355 0.172162 0.796686\nvn 0.678446 0.237411 0.695232\nvn 0.678446 0.237411 0.695232\nvn 0.820843 -0.100774 0.562193\nvn 0.750463 -0.144751 0.644867\nvn 0.448576 0.533695 0.716903\nvn 0.678446 0.237411 0.695232\nvn 0.579355 0.172162 0.796686\nvn 0.579355 0.172162 0.796686\nvn 0.330465 0.455565 0.826591\nvn 0.448576 0.533695 0.716903\nvn 0.330465 0.455565 0.826591\nvn 0.579355 0.172162 0.796686\nvn 0.525989 0.166754 0.833984\nvn 0.525989 0.166754 0.833984\nvn 0.267685 0.440425 0.856954\nvn 0.330465 0.455565 0.826591\nvn 0.267685 0.440425 0.856954\nvn 0.525989 0.166754 0.833984\nvn 0.498679 0.197702 0.843939\nvn 0.498679 0.197702 0.843939\nvn 0.238295 0.461148 0.854727\nvn 0.267685 0.440425 0.856954\nvn 0.238295 0.461148 0.854727\nvn 0.498679 0.197702 0.843939\nvn 0.508169 0.258830 0.821445\nvn 0.508169 0.258830 0.821445\nvn 0.247238 0.515535 0.820425\nvn 0.238295 0.461148 0.854727\nvn -0.056644 0.658885 0.750108\nvn 0.238295 0.461148 0.854727\nvn 0.247238 0.515535 0.820425\nvn 0.247238 0.515535 0.820425\nvn -0.049838 0.699775 0.712623\nvn -0.056644 0.658885 0.750108\nvn 0.238295 0.461148 0.854727\nvn -0.056644 0.658885 0.750108\nvn -0.026125 0.649941 0.759536\nvn -0.026125 0.649941 0.759536\nvn 0.267685 0.440425 0.856954\nvn 0.238295 0.461148 0.854727\nvn 0.267685 0.440425 0.856954\nvn -0.026125 0.649941 0.759536\nvn 0.041414 0.674589 0.737031\nvn 0.041414 0.674589 0.737031\nvn 0.330465 0.455565 0.826591\nvn 0.267685 0.440425 0.856954\nvn 0.330465 0.455565 0.826591\nvn 0.041414 0.674589 0.737031\nvn 0.164438 0.759839 0.628972\nvn 0.164438 0.759839 0.628972\nvn 0.448576 0.533695 0.716903\nvn 0.330465 0.455565 0.826591\nvn -0.152140 0.883171 0.443691\nvn 0.164438 0.759839 0.628972\nvn 0.041414 0.674589 0.737031\nvn 0.041414 0.674589 0.737031\nvn -0.258651 0.802777 0.537260\nvn -0.152140 0.883171 0.443691\nvn -0.258651 0.802777 0.537260\nvn 0.041414 0.674589 0.737031\nvn -0.026125 0.649941 0.759536\nvn -0.457820 0.867419 0.194896\nvn -0.152140 0.883171 0.443691\nvn -0.258651 0.802777 0.537260\nvn -0.258651 0.802777 0.537260\nvn -0.527890 0.810772 0.252943\nvn -0.457820 0.867419 0.194896\nvn -0.527890 0.810772 0.252943\nvn -0.258651 0.802777 0.537260\nvn -0.322316 0.770556 0.549869\nvn -0.026125 0.649941 0.759536\nvn -0.322316 0.770556 0.549869\nvn -0.258651 0.802777 0.537260\nvn -0.322316 0.770556 0.549869\nvn -0.026125 0.649941 0.759536\nvn -0.056644 0.658885 0.750108\nvn -0.322316 0.770556 0.549869\nvn -0.576814 0.777783 0.249678\nvn -0.527890 0.810772 0.252943\nvn -0.576814 0.777783 0.249678\nvn -0.322316 0.770556 0.549869\nvn -0.353475 0.766860 0.535706\nvn -0.056644 0.658885 0.750108\nvn -0.353475 0.766860 0.535706\nvn -0.322316 0.770556 0.549869\nvn -0.353475 0.766860 0.535706\nvn -0.056644 0.658885 0.750108\nvn -0.049838 0.699775 0.712623\nvn -0.353475 0.766860 0.535706\nvn -0.606386 0.761697 0.228283\nvn -0.576814 0.777783 0.249678\nvn -0.606386 0.761697 0.228283\nvn -0.353475 0.766860 0.535706\nvn -0.352252 0.788613 0.503992\nvn -0.049838 0.699775 0.712623\nvn -0.352252 0.788613 0.503992\nvn -0.353475 0.766860 0.535706\nvn -0.352252 0.788613 0.503992\nvn -0.615298 0.760569 0.207225\nvn -0.606386 0.761697 0.228283\nvn -0.708806 0.701664 -0.072544\nvn -0.457820 0.867419 0.194896\nvn -0.527890 0.810772 0.252943\nvn -0.527890 0.810772 0.252943\nvn -0.725264 0.684612 -0.072789\nvn -0.708806 0.701664 -0.072544\nvn -0.725264 0.684612 -0.072789\nvn -0.527890 0.810772 0.252943\nvn -0.576814 0.777783 0.249678\nvn -0.576814 0.777783 0.249678\nvn -0.745137 0.659346 -0.100166\nvn -0.725264 0.684612 -0.072789\nvn -0.745137 0.659346 -0.100166\nvn -0.576814 0.777783 0.249678\nvn -0.606386 0.761697 0.228283\nvn -0.606386 0.761697 0.228283\nvn -0.763593 0.631902 -0.132759\nvn -0.745137 0.659346 -0.100166\nvn -0.763593 0.631902 -0.132759\nvn -0.606386 0.761697 0.228283\nvn -0.615298 0.760569 0.207225\nvn -0.615298 0.760569 0.207225\nvn -0.782120 0.606328 -0.143716\nvn -0.763593 0.631902 -0.132759\nvn -0.785289 0.395314 -0.476496\nvn -0.763593 0.631902 -0.132759\nvn -0.782120 0.606328 -0.143716\nvn -0.782120 0.606328 -0.143716\nvn -0.804336 0.347798 -0.481747\nvn -0.785289 0.395314 -0.476496\nvn -0.763593 0.631902 -0.132759\nvn -0.785289 0.395314 -0.476496\nvn -0.791692 0.429645 -0.434315\nvn -0.791692 0.429645 -0.434315\nvn -0.745137 0.659346 -0.100166\nvn -0.763593 0.631902 -0.132759\nvn -0.745137 0.659346 -0.100166\nvn -0.791692 0.429645 -0.434315\nvn -0.813716 0.440032 -0.379787\nvn -0.813716 0.440032 -0.379787\nvn -0.725264 0.684612 -0.072789\nvn -0.745137 0.659346 -0.100166\nvn -0.725264 0.684612 -0.072789\nvn -0.813716 0.440032 -0.379787\nvn -0.857442 0.411584 -0.308856\nvn -0.857442 0.411584 -0.308856\nvn -0.708806 0.701664 -0.072544\nvn -0.725264 0.684612 -0.072789\nvn -0.874478 0.049686 -0.482515\nvn -0.857442 0.411584 -0.308856\nvn -0.813716 0.440032 -0.379787\nvn -0.813716 0.440032 -0.379787\nvn -0.777393 0.120582 -0.617349\nvn -0.874478 0.049686 -0.482515\nvn -0.777393 0.120582 -0.617349\nvn -0.813716 0.440032 -0.379787\nvn -0.791692 0.429645 -0.434315\nvn -0.791692 0.429645 -0.434315\nvn -0.710943 0.132850 -0.690587\nvn -0.777393 0.120582 -0.617349\nvn -0.710943 0.132850 -0.690587\nvn -0.791692 0.429645 -0.434315\nvn -0.785289 0.395314 -0.476496\nvn -0.785289 0.395314 -0.476496\nvn -0.673465 0.103704 -0.731909\nvn -0.710943 0.132850 -0.690587\nvn -0.673465 0.103704 -0.731909\nvn -0.785289 0.395314 -0.476496\nvn -0.804336 0.347798 -0.481747\nvn -0.804336 0.347798 -0.481747\nvn -0.680958 0.044833 -0.730949\nvn -0.673465 0.103704 -0.731909\nvn -0.465844 -0.188547 -0.864546\nvn -0.673465 0.103704 -0.731909\nvn -0.680958 0.044833 -0.730949\nvn -0.680958 0.044833 -0.730949\nvn -0.459104 -0.241989 -0.854789\nvn -0.465844 -0.188547 -0.864546\nvn -0.673465 0.103704 -0.731909\nvn -0.465844 -0.188547 -0.864546\nvn -0.524263 -0.177959 -0.832754\nvn -0.524263 -0.177959 -0.832754\nvn -0.710943 0.132850 -0.690587\nvn -0.673465 0.103704 -0.731909\nvn -0.710943 0.132850 -0.690587\nvn -0.524263 -0.177959 -0.832754\nvn -0.621099 -0.216565 -0.753217\nvn -0.621099 -0.216565 -0.753217\nvn -0.777393 0.120582 -0.617349\nvn -0.710943 0.132850 -0.690587\nvn -0.777393 0.120582 -0.617349\nvn -0.621099 -0.216565 -0.753217\nvn -0.753802 -0.315633 -0.576331\nvn -0.753802 -0.315633 -0.576331\nvn -0.874478 0.049686 -0.482515\nvn -0.777393 0.120582 -0.617349\nvn -0.518248 -0.622685 -0.586245\nvn -0.753802 -0.315633 -0.576331\nvn -0.621099 -0.216565 -0.753217\nvn -0.621099 -0.216565 -0.753217\nvn -0.369957 -0.514040 -0.773883\nvn -0.518248 -0.622685 -0.586245\nvn -0.369957 -0.514040 -0.773883\nvn -0.621099 -0.216565 -0.753217\nvn -0.524263 -0.177959 -0.832754\nvn -0.524263 -0.177959 -0.832754\nvn -0.265184 -0.456083 -0.849509\nvn -0.369957 -0.514040 -0.773883\nvn -0.265184 -0.456083 -0.849509\nvn -0.524263 -0.177959 -0.832754\nvn -0.465844 -0.188547 -0.864546\nvn -0.465844 -0.188547 -0.864546\nvn -0.203928 -0.444785 -0.872112\nvn -0.265184 -0.456083 -0.849509\nvn -0.203928 -0.444785 -0.872112\nvn -0.465844 -0.188547 -0.864546\nvn -0.459104 -0.241989 -0.854789\nvn -0.459104 -0.241989 -0.854789\nvn -0.190166 -0.480009 -0.856404\nvn -0.203928 -0.444785 -0.872112\nvn 0.083593 -0.643164 -0.761152\nvn -0.203928 -0.444785 -0.872112\nvn -0.190166 -0.480009 -0.856404\nvn -0.190166 -0.480009 -0.856404\nvn 0.096532 -0.658386 -0.746464\nvn 0.083593 -0.643164 -0.761152\nvn -0.203928 -0.444785 -0.872112\nvn 0.083593 -0.643164 -0.761152\nvn 0.031344 -0.666421 -0.744917\nvn 0.031344 -0.666421 -0.744917\nvn -0.265184 -0.456083 -0.849509\nvn -0.203928 -0.444785 -0.872112\nvn -0.265184 -0.456083 -0.849509\nvn 0.031344 -0.666421 -0.744917\nvn -0.063816 -0.727519 -0.683113\nvn -0.063816 -0.727519 -0.683113\nvn -0.369957 -0.514040 -0.773883\nvn -0.265184 -0.456083 -0.849509\nvn -0.369957 -0.514040 -0.773883\nvn -0.063816 -0.727519 -0.683113\nvn -0.208169 -0.829838 -0.517721\nvn -0.208169 -0.829838 -0.517721\nvn -0.518248 -0.622685 -0.586245\nvn -0.369957 -0.514040 -0.773883\nvn 0.130166 -0.916502 -0.378259\nvn -0.208169 -0.829838 -0.517721\nvn -0.063816 -0.727519 -0.683113\nvn -0.063816 -0.727519 -0.683113\nvn 0.250377 -0.831883 -0.495260\nvn 0.130166 -0.916502 -0.378259\nvn 0.250377 -0.831883 -0.495260\nvn -0.063816 -0.727519 -0.683113\nvn 0.031344 -0.666421 -0.744917\nvn 0.031344 -0.666421 -0.744917\nvn 0.326680 -0.781388 -0.531709\nvn 0.250377 -0.831883 -0.495260\nvn 0.326680 -0.781388 -0.531709\nvn 0.031344 -0.666421 -0.744917\nvn 0.083593 -0.643164 -0.761152\nvn 0.083593 -0.643164 -0.761152\nvn 0.368310 -0.758074 -0.538212\nvn 0.326680 -0.781388 -0.531709\nvn 0.368310 -0.758074 -0.538212\nvn 0.083593 -0.643164 -0.761152\nvn 0.096532 -0.658386 -0.746464\nvn 0.096532 -0.658386 -0.746464\nvn 0.380147 -0.759042 -0.528530\nvn 0.368310 -0.758074 -0.538212\nvn 0.610164 -0.760163 -0.223276\nvn 0.368310 -0.758074 -0.538212\nvn 0.380147 -0.759042 -0.528530\nvn 0.380147 -0.759042 -0.528530\nvn 0.625518 -0.749913 -0.215311\nvn 0.610164 -0.760163 -0.223276\nvn 0.368310 -0.758074 -0.538212\nvn 0.610164 -0.760163 -0.223276\nvn 0.578594 -0.781183 -0.234483\nvn 0.578594 -0.781183 -0.234483\nvn 0.326680 -0.781388 -0.531709\nvn 0.368310 -0.758074 -0.538212\nvn 0.527800 -0.817275 -0.231275\nvn 0.250377 -0.831883 -0.495260\nvn 0.326680 -0.781388 -0.531709\nvn 0.326680 -0.781388 -0.531709\nvn 0.578594 -0.781183 -0.234483\nvn 0.527800 -0.817275 -0.231275\nvn 0.450710 -0.875203 -0.175730\nvn 0.130166 -0.916502 -0.378259\nvn 0.250377 -0.831883 -0.495260\nvn 0.250377 -0.831883 -0.495260\nvn 0.527800 -0.817275 -0.231275\nvn 0.450710 -0.875203 -0.175730\nvn -0.208169 -0.829838 -0.517721\nvn 0.130166 -0.916502 -0.378259\nvn 0.018922 -0.987057 -0.159250\nvn 0.018922 -0.987057 -0.159250\nvn -0.333787 -0.911696 -0.239575\nvn -0.208169 -0.829838 -0.517721\nvn -0.518248 -0.622685 -0.586245\nvn -0.208169 -0.829838 -0.517721\nvn -0.333787 -0.911696 -0.239575\nvn -0.333787 -0.911696 -0.239575\nvn -0.635900 -0.716776 -0.286118\nvn -0.518248 -0.622685 -0.586245\nvn -0.753802 -0.315633 -0.576331\nvn -0.518248 -0.622685 -0.586245\nvn -0.635900 -0.716776 -0.286118\nvn -0.635900 -0.716776 -0.286118\nvn -0.856555 -0.420068 -0.299761\nvn -0.753802 -0.315633 -0.576331\nvn -0.874478 0.049686 -0.482515\nvn -0.753802 -0.315633 -0.576331\nvn -0.856555 -0.420068 -0.299761\nvn -0.856555 -0.420068 -0.299761\nvn -0.960107 -0.045749 -0.275864\nvn -0.874478 0.049686 -0.482515\nvn -0.857442 0.411584 -0.308856\nvn -0.874478 0.049686 -0.482515\nvn -0.960107 -0.045749 -0.275864\nvn -0.960107 -0.045749 -0.275864\nvn -0.911394 0.354876 -0.208385\nvn -0.857442 0.411584 -0.308856\nvn -0.708806 0.701664 -0.072544\nvn -0.857442 0.411584 -0.308856\nvn -0.911394 0.354876 -0.208385\nvn -0.911394 0.354876 -0.208385\nvn -0.706490 0.701180 -0.096014\nvn -0.708806 0.701664 -0.072544\nvn -0.457820 0.867419 0.194896\nvn -0.708806 0.701664 -0.072544\nvn -0.706490 0.701180 -0.096014\nvn -0.706490 0.701180 -0.096014\nvn -0.388753 0.919877 0.051943\nvn -0.457820 0.867419 0.194896\nvn -0.152140 0.883171 0.443691\nvn -0.457820 0.867419 0.194896\nvn -0.388753 0.919877 0.051943\nvn -0.388753 0.919877 0.051943\nvn -0.031771 0.976954 0.211072\nvn -0.152140 0.883171 0.443691\nvn -0.031771 0.976954 0.211072\nvn -0.388753 0.919877 0.051943\nvn -0.375268 0.916653 -0.137552\nvn -0.375268 0.916653 -0.137552\nvn 0.008423 0.991585 -0.129186\nvn -0.031771 0.976954 0.211072\nvn 0.008423 0.991585 -0.129186\nvn -0.375268 0.916653 -0.137552\nvn -0.432947 0.854479 -0.287095\nvn -0.432947 0.854479 -0.287095\nvn -0.070714 0.902765 -0.424281\nvn 0.008423 0.991585 -0.129186\nvn -0.070714 0.902765 -0.424281\nvn -0.432947 0.854479 -0.287095\nvn -0.514217 0.783365 -0.349170\nvn -0.514217 0.783365 -0.349170\nvn -0.195781 0.794904 -0.574280\nvn -0.070714 0.902765 -0.424281\nvn -0.776422 0.626478 -0.068517\nvn -0.514217 0.783365 -0.349170\nvn -0.432947 0.854479 -0.287095\nvn -0.432947 0.854479 -0.287095\nvn -0.573155 0.792040 -0.210157\nvn -0.776422 0.626478 -0.068517\nvn -0.573155 0.792040 -0.210157\nvn -0.432947 0.854479 -0.287095\nvn -0.375268 0.916653 -0.137552\nvn -0.375268 0.916653 -0.137552\nvn -0.726689 0.677034 -0.116400\nvn -0.573155 0.792040 -0.210157\nvn -0.726689 0.677034 -0.116400\nvn -0.375268 0.916653 -0.137552\nvn -0.388753 0.919877 0.051943\nvn -0.388753 0.919877 0.051943\nvn -0.706490 0.701180 -0.096014\nvn -0.726689 0.677034 -0.116400\nvn -0.706490 0.701180 -0.096014\nvn -0.911394 0.354876 -0.208385\nvn -0.948501 0.307387 -0.076542\nvn -0.948501 0.307387 -0.076542\nvn -0.726689 0.677034 -0.116400\nvn -0.706490 0.701180 -0.096014\nvn -0.726689 0.677034 -0.116400\nvn -0.948501 0.307387 -0.076542\nvn -0.950274 0.302994 0.071934\nvn -0.950274 0.302994 0.071934\nvn -0.869561 0.493530 -0.017091\nvn -0.726689 0.677034 -0.116400\nvn -0.869561 0.493530 -0.017091\nvn -0.950274 0.302994 0.071934\nvn -0.916239 0.345046 0.203592\nvn -0.916239 0.345046 0.203592\nvn -0.776422 0.626478 -0.068517\nvn -0.869561 0.493530 -0.017091\nvn -0.908706 0.004852 0.417409\nvn -0.916239 0.345046 0.203592\nvn -0.950274 0.302994 0.071934\nvn -0.950274 0.302994 0.071934\nvn -0.974118 -0.080968 0.211042\nvn -0.908706 0.004852 0.417409\nvn -0.974118 -0.080968 0.211042\nvn -0.950274 0.302994 0.071934\nvn -0.948501 0.307387 -0.076542\nvn -0.948501 0.307387 -0.076542\nvn -0.994398 -0.100560 -0.032564\nvn -0.974118 -0.080968 0.211042\nvn -0.994398 -0.100560 -0.032564\nvn -0.948501 0.307387 -0.076542\nvn -0.911394 0.354876 -0.208385\nvn -0.911394 0.354876 -0.208385\nvn -0.960107 -0.045749 -0.275864\nvn -0.994398 -0.100560 -0.032564\nvn -0.886250 -0.463161 0.006501\nvn -0.994398 -0.100560 -0.032564\nvn -0.960107 -0.045749 -0.275864\nvn -0.960107 -0.045749 -0.275864\nvn -0.856555 -0.420068 -0.299761\nvn -0.886250 -0.463161 0.006501\nvn -0.994398 -0.100560 -0.032564\nvn -0.886250 -0.463161 0.006501\nvn -0.852245 -0.428427 0.300216\nvn -0.852245 -0.428427 0.300216\nvn -0.974118 -0.080968 0.211042\nvn -0.994398 -0.100560 -0.032564\nvn -0.974118 -0.080968 0.211042\nvn -0.852245 -0.428427 0.300216\nvn -0.767468 -0.325549 0.552277\nvn -0.767468 -0.325549 0.552277\nvn -0.908706 0.004852 0.417409\nvn -0.974118 -0.080968 0.211042\nvn -0.522461 -0.598882 0.606939\nvn -0.767468 -0.325549 0.552277\nvn -0.852245 -0.428427 0.300216\nvn -0.852245 -0.428427 0.300216\nvn -0.624846 -0.700289 0.345200\nvn -0.522461 -0.598882 0.606939\nvn -0.624846 -0.700289 0.345200\nvn -0.852245 -0.428427 0.300216\nvn -0.886250 -0.463161 0.006501\nvn -0.886250 -0.463161 0.006501\nvn -0.668955 -0.742263 0.039309\nvn -0.624846 -0.700289 0.345200\nvn -0.668955 -0.742263 0.039309\nvn -0.886250 -0.463161 0.006501\nvn -0.856555 -0.420068 -0.299761\nvn -0.856555 -0.420068 -0.299761\nvn -0.635900 -0.716776 -0.286118\nvn -0.668955 -0.742263 0.039309\nvn -0.372422 -0.925578 0.067874\nvn -0.668955 -0.742263 0.039309\nvn -0.635900 -0.716776 -0.286118\nvn -0.635900 -0.716776 -0.286118\nvn -0.333787 -0.911696 -0.239575\nvn -0.372422 -0.925578 0.067874\nvn -0.668955 -0.742263 0.039309\nvn -0.372422 -0.925578 0.067874\nvn -0.319358 -0.879669 0.352411\nvn -0.319358 -0.879669 0.352411\nvn -0.624846 -0.700289 0.345200\nvn -0.668955 -0.742263 0.039309\nvn -0.624846 -0.700289 0.345200\nvn -0.319358 -0.879669 0.352411\nvn -0.203933 -0.785154 0.584760\nvn -0.203933 -0.785154 0.584760\nvn -0.522461 -0.598882 0.606939\nvn -0.624846 -0.700289 0.345200\nvn 0.154186 -0.860563 0.485446\nvn -0.203933 -0.785154 0.584760\nvn -0.319358 -0.879669 0.352411\nvn -0.319358 -0.879669 0.352411\nvn 0.043551 -0.946234 0.320538\nvn 0.154186 -0.860563 0.485446\nvn 0.043551 -0.946234 0.320538\nvn -0.319358 -0.879669 0.352411\nvn -0.372422 -0.925578 0.067874\nvn -0.372422 -0.925578 0.067874\nvn -0.014741 -0.995452 0.094122\nvn 0.043551 -0.946234 0.320538\nvn -0.014741 -0.995452 0.094122\nvn -0.372422 -0.925578 0.067874\nvn -0.333787 -0.911696 -0.239575\nvn -0.333787 -0.911696 -0.239575\nvn 0.018922 -0.987057 -0.159250\nvn -0.014741 -0.995452 0.094122\nvn 0.371393 -0.921019 0.117439\nvn -0.014741 -0.995452 0.094122\nvn 0.018922 -0.987057 -0.159250\nvn 0.018922 -0.987057 -0.159250\nvn 0.382624 -0.922942 -0.042147\nvn 0.371393 -0.921019 0.117439\nvn 0.425714 -0.871662 0.242842\nvn 0.043551 -0.946234 0.320538\nvn -0.014741 -0.995452 0.094122\nvn -0.014741 -0.995452 0.094122\nvn 0.371393 -0.921019 0.117439\nvn 0.425714 -0.871662 0.242842\nvn 0.503693 -0.806597 0.309345\nvn 0.154186 -0.860563 0.485446\nvn 0.043551 -0.946234 0.320538\nvn 0.043551 -0.946234 0.320538\nvn 0.425714 -0.871662 0.242842\nvn 0.503693 -0.806597 0.309345\nvn -0.203933 -0.785154 0.584760\nvn 0.154186 -0.860563 0.485446\nvn 0.262102 -0.766255 0.586648\nvn 0.262102 -0.766255 0.586648\nvn -0.076267 -0.666412 0.741672\nvn -0.203933 -0.785154 0.584760\nvn -0.522461 -0.598882 0.606939\nvn -0.203933 -0.785154 0.584760\nvn -0.076267 -0.666412 0.741672\nvn -0.076267 -0.666412 0.741672\nvn -0.397304 -0.467011 0.789969\nvn -0.522461 -0.598882 0.606939\nvn -0.767468 -0.325549 0.552277\nvn -0.522461 -0.598882 0.606939\nvn -0.397304 -0.467011 0.789969\nvn -0.397304 -0.467011 0.789969\nvn -0.658150 -0.194927 0.727215\nvn -0.767468 -0.325549 0.552277\nvn -0.908706 0.004852 0.417409\nvn -0.767468 -0.325549 0.552277\nvn -0.658150 -0.194927 0.727215\nvn -0.658150 -0.194927 0.727215\nvn -0.823775 0.112097 0.555724\nvn -0.908706 0.004852 0.417409\nvn -0.916239 0.345046 0.203592\nvn -0.908706 0.004852 0.417409\nvn -0.823775 0.112097 0.555724\nvn -0.823775 0.112097 0.555724\nvn -0.867201 0.404805 0.289993\nvn -0.916239 0.345046 0.203592\nvn -0.776422 0.626478 -0.068517\nvn -0.916239 0.345046 0.203592\nvn -0.867201 0.404805 0.289993\nvn -0.867201 0.404805 0.289993\nvn -0.777869 0.627410 -0.035738\nvn -0.776422 0.626478 -0.068517\nvn -0.514217 0.783365 -0.349170\nvn -0.776422 0.626478 -0.068517\nvn -0.777869 0.627410 -0.035738\nvn -0.777869 0.627410 -0.035738\nvn -0.571230 0.734935 -0.365469\nvn -0.514217 0.783365 -0.349170\nvn -0.195781 0.794904 -0.574280\nvn -0.514217 0.783365 -0.349170\nvn -0.571230 0.734935 -0.365469\nvn -0.571230 0.734935 -0.365469\nvn -0.291425 0.715943 -0.634427\nvn -0.195781 0.794904 -0.574280\nvn -0.291425 0.715943 -0.634427\nvn -0.571230 0.734935 -0.365469\nvn -0.610382 0.698460 -0.373615\nvn -0.610382 0.698460 -0.373615\nvn -0.359734 0.653576 -0.665906\nvn -0.291425 0.715943 -0.634427\nvn -0.359734 0.653576 -0.665906\nvn -0.610382 0.698460 -0.373615\nvn -0.641519 0.664378 -0.383477\nvn -0.641519 0.664378 -0.383477\nvn -0.413322 0.594819 -0.689460\nvn -0.359734 0.653576 -0.665906\nvn -0.413322 0.594819 -0.689460\nvn -0.641519 0.664378 -0.383477\nvn -0.672946 0.626312 -0.393544\nvn -0.672946 0.626312 -0.393544\nvn -0.465050 0.531703 -0.707828\nvn -0.413322 0.594819 -0.689460\nvn -0.780870 0.624549 -0.013398\nvn -0.672946 0.626312 -0.393544\nvn -0.641519 0.664378 -0.383477\nvn -0.641519 0.664378 -0.383477\nvn -0.776210 0.630331 -0.013428\nvn -0.780870 0.624549 -0.013398\nvn -0.776210 0.630331 -0.013428\nvn -0.641519 0.664378 -0.383477\nvn -0.610382 0.698460 -0.373615\nvn -0.610382 0.698460 -0.373615\nvn -0.775983 0.630467 -0.019044\nvn -0.776210 0.630331 -0.013428\nvn -0.775983 0.630467 -0.019044\nvn -0.610382 0.698460 -0.373615\nvn -0.571230 0.734935 -0.365469\nvn -0.571230 0.734935 -0.365469\nvn -0.777869 0.627410 -0.035738\nvn -0.775983 0.630467 -0.019044\nvn -0.777869 0.627410 -0.035738\nvn -0.867201 0.404805 0.289993\nvn -0.824712 0.455341 0.335433\nvn -0.824712 0.455341 0.335433\nvn -0.775983 0.630467 -0.019044\nvn -0.777869 0.627410 -0.035738\nvn -0.775983 0.630467 -0.019044\nvn -0.824712 0.455341 0.335433\nvn -0.792080 0.494085 0.358455\nvn -0.792080 0.494085 0.358455\nvn -0.776210 0.630331 -0.013428\nvn -0.775983 0.630467 -0.019044\nvn -0.776210 0.630331 -0.013428\nvn -0.792080 0.494085 0.358455\nvn -0.767781 0.523411 0.369531\nvn -0.767781 0.523411 0.369531\nvn -0.780870 0.624549 -0.013398\nvn -0.776210 0.630331 -0.013428\nvn -0.636172 0.339983 0.692602\nvn -0.767781 0.523411 0.369531\nvn -0.792080 0.494085 0.358455\nvn -0.792080 0.494085 0.358455\nvn -0.686679 0.278761 0.671389\nvn -0.636172 0.339983 0.692602\nvn -0.686679 0.278761 0.671389\nvn -0.792080 0.494085 0.358455\nvn -0.824712 0.455341 0.335433\nvn -0.824712 0.455341 0.335433\nvn -0.748242 0.204540 0.631109\nvn -0.686679 0.278761 0.671389\nvn -0.748242 0.204540 0.631109\nvn -0.824712 0.455341 0.335433\nvn -0.867201 0.404805 0.289993\nvn -0.867201 0.404805 0.289993\nvn -0.823775 0.112097 0.555724\nvn -0.748242 0.204540 0.631109\nvn -0.559658 -0.077274 0.825113\nvn -0.748242 0.204540 0.631109\nvn -0.823775 0.112097 0.555724\nvn -0.823775 0.112097 0.555724\nvn -0.658150 -0.194927 0.727215\nvn -0.559658 -0.077274 0.825113\nvn -0.748242 0.204540 0.631109\nvn -0.559658 -0.077274 0.825113\nvn -0.477924 0.021119 0.878147\nvn -0.477924 0.021119 0.878147\nvn -0.686679 0.278761 0.671389\nvn -0.748242 0.204540 0.631109\nvn -0.686679 0.278761 0.671389\nvn -0.477924 0.021119 0.878147\nvn -0.408716 0.105200 0.906578\nvn -0.408716 0.105200 0.906578\nvn -0.636172 0.339983 0.692602\nvn -0.686679 0.278761 0.671389\nvn -0.120947 -0.143958 0.982165\nvn -0.408716 0.105200 0.906578\nvn -0.477924 0.021119 0.878147\nvn -0.477924 0.021119 0.878147\nvn -0.198162 -0.237776 0.950891\nvn -0.120947 -0.143958 0.982165\nvn -0.198162 -0.237776 0.950891\nvn -0.477924 0.021119 0.878147\nvn -0.559658 -0.077274 0.825113\nvn -0.559658 -0.077274 0.825113\nvn -0.287794 -0.344315 0.893657\nvn -0.198162 -0.237776 0.950891\nvn -0.287794 -0.344315 0.893657\nvn -0.559658 -0.077274 0.825113\nvn -0.658150 -0.194927 0.727215\nvn -0.658150 -0.194927 0.727215\nvn -0.397304 -0.467011 0.789969\nvn -0.287794 -0.344315 0.893657\nvn 0.028810 -0.556813 0.830138\nvn -0.287794 -0.344315 0.893657\nvn -0.397304 -0.467011 0.789969\nvn -0.397304 -0.467011 0.789969\nvn -0.076267 -0.666412 0.741672\nvn 0.028810 -0.556813 0.830138\nvn -0.287794 -0.344315 0.893657\nvn 0.028810 -0.556813 0.830138\nvn 0.112465 -0.459655 0.880948\nvn 0.112465 -0.459655 0.880948\nvn -0.198162 -0.237776 0.950891\nvn -0.287794 -0.344315 0.893657\nvn -0.198162 -0.237776 0.950891\nvn 0.112465 -0.459655 0.880948\nvn 0.185554 -0.371047 0.909887\nvn 0.185554 -0.371047 0.909887\nvn -0.120947 -0.143958 0.982165\nvn -0.198162 -0.237776 0.950891\nvn 0.466458 -0.542695 0.698497\nvn 0.185554 -0.371047 0.909887\nvn 0.112465 -0.459655 0.880948\nvn 0.112465 -0.459655 0.880948\nvn 0.408927 -0.611880 0.677039\nvn 0.466458 -0.542695 0.698497\nvn 0.408927 -0.611880 0.677039\nvn 0.112465 -0.459655 0.880948\nvn 0.028810 -0.556813 0.830138\nvn 0.028810 -0.556813 0.830138\nvn 0.344657 -0.684461 0.642436\nvn 0.408927 -0.611880 0.677039\nvn 0.344657 -0.684461 0.642436\nvn 0.028810 -0.556813 0.830138\nvn -0.076267 -0.666412 0.741672\nvn -0.076267 -0.666412 0.741672\nvn 0.262102 -0.766255 0.586648\nvn 0.344657 -0.684461 0.642436\nvn 0.610692 -0.708415 0.353841\nvn 0.344657 -0.684461 0.642436\nvn 0.262102 -0.766255 0.586648\nvn 0.262102 -0.766255 0.586648\nvn 0.566859 -0.751010 0.338608\nvn 0.610692 -0.708415 0.353841\nvn 0.644689 -0.670691 0.366811\nvn 0.408927 -0.611880 0.677039\nvn 0.344657 -0.684461 0.642436\nvn 0.344657 -0.684461 0.642436\nvn 0.610692 -0.708415 0.353841\nvn 0.644689 -0.670691 0.366811\nvn 0.677440 -0.631417 0.377343\nvn 0.466458 -0.542695 0.698497\nvn 0.408927 -0.611880 0.677039\nvn 0.408927 -0.611880 0.677039\nvn 0.644689 -0.670691 0.366811\nvn 0.677440 -0.631417 0.377343\nvn 0.185554 -0.371047 0.909887\nvn 0.466458 -0.542695 0.698497\nvn 0.527862 -0.471370 0.706521\nvn 0.527862 -0.471370 0.706521\nvn 0.264509 -0.279615 0.922957\nvn 0.185554 -0.371047 0.909887\nvn -0.120947 -0.143958 0.982165\nvn 0.185554 -0.371047 0.909887\nvn 0.264509 -0.279615 0.922957\nvn 0.264509 -0.279615 0.922957\nvn -0.038026 -0.045625 0.998235\nvn -0.120947 -0.143958 0.982165\nvn -0.408716 0.105200 0.906578\nvn -0.120947 -0.143958 0.982165\nvn -0.038026 -0.045625 0.998235\nvn -0.038026 -0.045625 0.998235\nvn -0.334979 0.195689 0.921681\nvn -0.408716 0.105200 0.906578\nvn -0.636172 0.339983 0.692602\nvn -0.408716 0.105200 0.906578\nvn -0.334979 0.195689 0.921681\nvn -0.334979 0.195689 0.921681\nvn -0.581889 0.408018 0.703510\nvn -0.636172 0.339983 0.692602\nvn -0.767781 0.523411 0.369531\nvn -0.636172 0.339983 0.692602\nvn -0.581889 0.408018 0.703510\nvn -0.581889 0.408018 0.703510\nvn -0.740224 0.557685 0.375575\nvn -0.767781 0.523411 0.369531\nvn -0.780870 0.624549 -0.013398\nvn -0.767781 0.523411 0.369531\nvn -0.740224 0.557685 0.375575\nvn -0.740224 0.557685 0.375575\nvn -0.784404 0.620150 -0.011140\nvn -0.780870 0.624549 -0.013398\nvn -0.672946 0.626312 -0.393544\nvn -0.780870 0.624549 -0.013398\nvn -0.784404 0.620150 -0.011140\nvn -0.784404 0.620150 -0.011140\nvn -0.707942 0.585678 -0.394715\nvn -0.672946 0.626312 -0.393544\nvn -0.465050 0.531703 -0.707828\nvn -0.672946 0.626312 -0.393544\nvn -0.707942 0.585678 -0.394715\nvn -0.707942 0.585678 -0.394715\nvn -0.526396 0.462305 -0.713570\nvn -0.465050 0.531703 -0.707828\nvn -0.526396 0.462305 -0.713570\nvn -0.707942 0.585678 -0.394715\nvn -0.743423 0.546358 -0.385766\nvn -0.743423 0.546358 -0.385766\nvn -0.598890 0.385251 -0.702077\nvn -0.526396 0.462305 -0.713570\nvn -0.598890 0.385251 -0.702077\nvn -0.743423 0.546358 -0.385766\nvn -0.778856 0.508667 -0.366935\nvn -0.778856 0.508667 -0.366935\nvn -0.682110 0.300128 -0.666820\nvn -0.598890 0.385251 -0.702077\nvn -0.682110 0.300128 -0.666820\nvn -0.778856 0.508667 -0.366935\nvn -0.812407 0.473667 -0.340052\nvn -0.812407 0.473667 -0.340052\nvn -0.769537 0.210001 -0.603086\nvn -0.682110 0.300128 -0.666820\nvn -0.741131 0.670814 -0.027071\nvn -0.812407 0.473667 -0.340052\nvn -0.778856 0.508667 -0.366935\nvn -0.778856 0.508667 -0.366935\nvn -0.764899 0.644043 -0.011719\nvn -0.741131 0.670814 -0.027071\nvn -0.764899 0.644043 -0.011719\nvn -0.778856 0.508667 -0.366935\nvn -0.743423 0.546358 -0.385766\nvn -0.743423 0.546358 -0.385766\nvn -0.779373 0.626501 -0.008607\nvn -0.764899 0.644043 -0.011719\nvn -0.779373 0.626501 -0.008607\nvn -0.743423 0.546358 -0.385766\nvn -0.707942 0.585678 -0.394715\nvn -0.707942 0.585678 -0.394715\nvn -0.784404 0.620150 -0.011140\nvn -0.779373 0.626501 -0.008607\nvn -0.784404 0.620150 -0.011140\nvn -0.740224 0.557685 0.375575\nvn -0.697796 0.611548 0.372947\nvn -0.697796 0.611548 0.372947\nvn -0.779373 0.626501 -0.008607\nvn -0.784404 0.620150 -0.011140\nvn -0.779373 0.626501 -0.008607\nvn -0.697796 0.611548 0.372947\nvn -0.638100 0.685588 0.350424\nvn -0.638100 0.685588 0.350424\nvn -0.764899 0.644043 -0.011719\nvn -0.779373 0.626501 -0.008607\nvn -0.764899 0.644043 -0.011719\nvn -0.638100 0.685588 0.350424\nvn -0.561312 0.772963 0.295732\nvn -0.561312 0.772963 0.295732\nvn -0.741131 0.670814 -0.027071\nvn -0.764899 0.644043 -0.011719\nvn -0.290423 0.759017 0.582707\nvn -0.561312 0.772963 0.295732\nvn -0.638100 0.685588 0.350424\nvn -0.638100 0.685588 0.350424\nvn -0.410481 0.622283 0.666535\nvn -0.290423 0.759017 0.582707\nvn -0.410481 0.622283 0.666535\nvn -0.638100 0.685588 0.350424\nvn -0.697796 0.611548 0.372947\nvn -0.697796 0.611548 0.372947\nvn -0.508026 0.501617 0.700207\nvn -0.410481 0.622283 0.666535\nvn -0.508026 0.501617 0.700207\nvn -0.697796 0.611548 0.372947\nvn -0.740224 0.557685 0.375575\nvn -0.740224 0.557685 0.375575\nvn -0.581889 0.408018 0.703510\nvn -0.508026 0.501617 0.700207\nvn -0.238231 0.312575 0.919534\nvn -0.508026 0.501617 0.700207\nvn -0.581889 0.408018 0.703510\nvn -0.581889 0.408018 0.703510\nvn -0.334979 0.195689 0.921681\nvn -0.238231 0.312575 0.919534\nvn -0.508026 0.501617 0.700207\nvn -0.238231 0.312575 0.919534\nvn -0.114020 0.458765 0.881212\nvn -0.114020 0.458765 0.881212\nvn -0.410481 0.622283 0.666535\nvn -0.508026 0.501617 0.700207\nvn -0.410481 0.622283 0.666535\nvn -0.114020 0.458765 0.881212\nvn 0.032747 0.622740 0.781743\nvn 0.032747 0.622740 0.781743\nvn -0.290423 0.759017 0.582707\nvn -0.410481 0.622283 0.666535\nvn 0.351825 0.384664 0.853377\nvn 0.032747 0.622740 0.781743\nvn -0.114020 0.458765 0.881212\nvn -0.114020 0.458765 0.881212\nvn 0.201245 0.221021 0.954280\nvn 0.351825 0.384664 0.853377\nvn 0.201245 0.221021 0.954280\nvn -0.114020 0.458765 0.881212\nvn -0.238231 0.312575 0.919534\nvn -0.238231 0.312575 0.919534\nvn 0.068362 0.074862 0.994848\nvn 0.201245 0.221021 0.954280\nvn 0.068362 0.074862 0.994848\nvn -0.238231 0.312575 0.919534\nvn -0.334979 0.195689 0.921681\nvn -0.334979 0.195689 0.921681\nvn -0.038026 -0.045625 0.998235\nvn 0.068362 0.074862 0.994848\nvn 0.362692 -0.173197 0.915673\nvn 0.068362 0.074862 0.994848\nvn -0.038026 -0.045625 0.998235\nvn -0.038026 -0.045625 0.998235\nvn 0.264509 -0.279615 0.922957\nvn 0.362692 -0.173197 0.915673\nvn 0.068362 0.074862 0.994848\nvn 0.362692 -0.173197 0.915673\nvn 0.480857 -0.048861 0.875437\nvn 0.480857 -0.048861 0.875437\nvn 0.201245 0.221021 0.954280\nvn 0.068362 0.074862 0.994848\nvn 0.201245 0.221021 0.954280\nvn 0.480857 -0.048861 0.875437\nvn 0.610053 0.089056 0.787340\nvn 0.610053 0.089056 0.787340\nvn 0.351825 0.384664 0.853377\nvn 0.201245 0.221021 0.954280\nvn 0.768724 -0.212415 0.603278\nvn 0.610053 0.089056 0.787340\nvn 0.480857 -0.048861 0.875437\nvn 0.480857 -0.048861 0.875437\nvn 0.681678 -0.306138 0.664526\nvn 0.768724 -0.212415 0.603278\nvn 0.681678 -0.306138 0.664526\nvn 0.480857 -0.048861 0.875437\nvn 0.362692 -0.173197 0.915673\nvn 0.362692 -0.173197 0.915673\nvn 0.599680 -0.393093 0.697038\nvn 0.681678 -0.306138 0.664526\nvn 0.599680 -0.393093 0.697038\nvn 0.362692 -0.173197 0.915673\nvn 0.264509 -0.279615 0.922957\nvn 0.264509 -0.279615 0.922957\nvn 0.527862 -0.471370 0.706521\nvn 0.599680 -0.393093 0.697038\nvn 0.744833 -0.552528 0.374080\nvn 0.599680 -0.393093 0.697038\nvn 0.527862 -0.471370 0.706521\nvn 0.527862 -0.471370 0.706521\nvn 0.711061 -0.591274 0.380510\nvn 0.744833 -0.552528 0.374080\nvn 0.778762 -0.514525 0.358877\nvn 0.681678 -0.306138 0.664526\nvn 0.599680 -0.393093 0.697038\nvn 0.599680 -0.393093 0.697038\nvn 0.744833 -0.552528 0.374080\nvn 0.778762 -0.514525 0.358877\nvn 0.812111 -0.477409 0.335495\nvn 0.768724 -0.212415 0.603278\nvn 0.681678 -0.306138 0.664526\nvn 0.681678 -0.306138 0.664526\nvn 0.778762 -0.514525 0.358877\nvn 0.812111 -0.477409 0.335495\nvn 0.610053 0.089056 0.787340\nvn 0.768724 -0.212415 0.603278\nvn 0.841900 -0.133521 0.522854\nvn 0.841900 -0.133521 0.522854\nvn 0.716082 0.205245 0.667159\nvn 0.610053 0.089056 0.787340\nvn 0.351825 0.384664 0.853377\nvn 0.610053 0.089056 0.787340\nvn 0.716082 0.205245 0.667159\nvn 0.716082 0.205245 0.667159\nvn 0.476286 0.518403 0.710218\nvn 0.351825 0.384664 0.853377\nvn 0.032747 0.622740 0.781743\nvn 0.351825 0.384664 0.853377\nvn 0.476286 0.518403 0.710218\nvn 0.476286 0.518403 0.710218\nvn 0.157691 0.752504 0.639431\nvn 0.032747 0.622740 0.781743\nvn -0.290423 0.759017 0.582707\nvn 0.032747 0.622740 0.781743\nvn 0.157691 0.752504 0.639431\nvn 0.157691 0.752504 0.639431\nvn -0.185437 0.865444 0.465424\nvn -0.290423 0.759017 0.582707\nvn -0.561312 0.772963 0.295732\nvn -0.290423 0.759017 0.582707\nvn -0.185437 0.865444 0.465424\nvn -0.185437 0.865444 0.465424\nvn -0.494319 0.840802 0.220684\nvn -0.561312 0.772963 0.295732\nvn -0.741131 0.670814 -0.027071\nvn -0.561312 0.772963 0.295732\nvn -0.494319 0.840802 0.220684\nvn -0.494319 0.840802 0.220684\nvn -0.722546 0.689371 -0.051913\nvn -0.741131 0.670814 -0.027071\nvn -0.812407 0.473667 -0.340052\nvn -0.741131 0.670814 -0.027071\nvn -0.722546 0.689371 -0.051913\nvn -0.722546 0.689371 -0.051913\nvn -0.842490 0.438839 -0.312458\nvn -0.812407 0.473667 -0.340052\nvn -0.769537 0.210001 -0.603086\nvn -0.812407 0.473667 -0.340052\nvn -0.842490 0.438839 -0.312458\nvn -0.842490 0.438839 -0.312458\nvn -0.840896 0.126593 -0.526182\nvn -0.769537 0.210001 -0.603086\nvn -0.840896 0.126593 -0.526182\nvn -0.842490 0.438839 -0.312458\nvn -0.868149 0.410910 -0.278335\nvn -0.868149 0.410910 -0.278335\nvn -0.891892 0.067813 -0.447136\nvn -0.840896 0.126593 -0.526182\nvn -0.891892 0.067813 -0.447136\nvn -0.868149 0.410910 -0.278335\nvn -0.895371 0.387349 -0.219707\nvn -0.895371 0.387349 -0.219707\nvn -0.939837 0.021272 -0.340960\nvn -0.891892 0.067813 -0.447136\nvn -0.939837 0.021272 -0.340960\nvn -0.895371 0.387349 -0.219707\nvn -0.921013 0.372488 -0.113959\nvn -0.921013 0.372488 -0.113959\nvn -0.984458 -0.008271 -0.175424\nvn -0.939837 0.021272 -0.340960\nvn -0.717055 0.696148 -0.034792\nvn -0.921013 0.372488 -0.113959\nvn -0.895371 0.387349 -0.219707\nvn -0.895371 0.387349 -0.219707\nvn -0.714814 0.696411 -0.063662\nvn -0.717055 0.696148 -0.034792\nvn -0.714814 0.696411 -0.063662\nvn -0.895371 0.387349 -0.219707\nvn -0.868149 0.410910 -0.278335\nvn -0.868149 0.410910 -0.278335\nvn -0.715479 0.695427 -0.066866\nvn -0.714814 0.696411 -0.063662\nvn -0.715479 0.695427 -0.066866\nvn -0.868149 0.410910 -0.278335\nvn -0.842490 0.438839 -0.312458\nvn -0.842490 0.438839 -0.312458\nvn -0.722546 0.689371 -0.051913\nvn -0.715479 0.695427 -0.066866\nvn -0.722546 0.689371 -0.051913\nvn -0.494319 0.840802 0.220684\nvn -0.454007 0.877036 0.157114\nvn -0.454007 0.877036 0.157114\nvn -0.715479 0.695427 -0.066866\nvn -0.722546 0.689371 -0.051913\nvn -0.715479 0.695427 -0.066866\nvn -0.454007 0.877036 0.157114\nvn -0.426081 0.898764 0.103338\nvn -0.426081 0.898764 0.103338\nvn -0.714814 0.696411 -0.063662\nvn -0.715479 0.695427 -0.066866\nvn -0.714814 0.696411 -0.063662\nvn -0.426081 0.898764 0.103338\nvn -0.407798 0.911701 0.050021\nvn -0.407798 0.911701 0.050021\nvn -0.717055 0.696148 -0.034792\nvn -0.714814 0.696411 -0.063662\nvn -0.036715 0.991020 0.128577\nvn -0.407798 0.911701 0.050021\nvn -0.426081 0.898764 0.103338\nvn -0.426081 0.898764 0.103338\nvn -0.072179 0.964020 0.255845\nvn -0.036715 0.991020 0.128577\nvn -0.072179 0.964020 0.255845\nvn -0.426081 0.898764 0.103338\nvn -0.454007 0.877036 0.157114\nvn -0.454007 0.877036 0.157114\nvn -0.120215 0.925280 0.359729\nvn -0.072179 0.964020 0.255845\nvn -0.120215 0.925280 0.359729\nvn -0.454007 0.877036 0.157114\nvn -0.494319 0.840802 0.220684\nvn -0.494319 0.840802 0.220684\nvn -0.185437 0.865444 0.465424\nvn -0.120215 0.925280 0.359729\nvn 0.234875 0.829021 0.507502\nvn -0.120215 0.925280 0.359729\nvn -0.185437 0.865444 0.465424\nvn -0.185437 0.865444 0.465424\nvn 0.157691 0.752504 0.639431\nvn 0.234875 0.829021 0.507502\nvn -0.120215 0.925280 0.359729\nvn 0.234875 0.829021 0.507502\nvn 0.292921 0.881908 0.369372\nvn 0.292921 0.881908 0.369372\nvn -0.072179 0.964020 0.255845\nvn -0.120215 0.925280 0.359729\nvn -0.072179 0.964020 0.255845\nvn 0.292921 0.881908 0.369372\nvn 0.339859 0.921489 0.188027\nvn 0.339859 0.921489 0.188027\nvn -0.036715 0.991020 0.128577\nvn -0.072179 0.964020 0.255845\nvn 0.667488 0.711742 0.218824\nvn 0.339859 0.921489 0.188027\nvn 0.292921 0.881908 0.369372\nvn 0.292921 0.881908 0.369372\nvn 0.613992 0.664625 0.425778\nvn 0.667488 0.711742 0.218824\nvn 0.613992 0.664625 0.425778\nvn 0.292921 0.881908 0.369372\nvn 0.234875 0.829021 0.507502\nvn 0.234875 0.829021 0.507502\nvn 0.553578 0.602286 0.575155\nvn 0.613992 0.664625 0.425778\nvn 0.553578 0.602286 0.575155\nvn 0.234875 0.829021 0.507502\nvn 0.157691 0.752504 0.639431\nvn 0.157691 0.752504 0.639431\nvn 0.476286 0.518403 0.710218\nvn 0.553578 0.602286 0.575155\nvn 0.784316 0.282853 0.552125\nvn 0.553578 0.602286 0.575155\nvn 0.476286 0.518403 0.710218\nvn 0.476286 0.518403 0.710218\nvn 0.716082 0.205245 0.667159\nvn 0.784316 0.282853 0.552125\nvn 0.553578 0.602286 0.575155\nvn 0.784316 0.282853 0.552125\nvn 0.841174 0.345601 0.415917\nvn 0.841174 0.345601 0.415917\nvn 0.613992 0.664625 0.425778\nvn 0.553578 0.602286 0.575155\nvn 0.613992 0.664625 0.425778\nvn 0.841174 0.345601 0.415917\nvn 0.893916 0.393000 0.215559\nvn 0.893916 0.393000 0.215559\nvn 0.667488 0.711742 0.218824\nvn 0.613992 0.664625 0.425778\nvn 0.983734 0.014314 0.179058\nvn 0.893916 0.393000 0.215559\nvn 0.841174 0.345601 0.415917\nvn 0.841174 0.345601 0.415917\nvn 0.939383 -0.026063 0.341877\nvn 0.983734 0.014314 0.179058\nvn 0.939383 -0.026063 0.341877\nvn 0.841174 0.345601 0.415917\nvn 0.784316 0.282853 0.552125\nvn 0.784316 0.282853 0.552125\nvn 0.892549 -0.077395 0.444260\nvn 0.939383 -0.026063 0.341877\nvn 0.892549 -0.077395 0.444260\nvn 0.784316 0.282853 0.552125\nvn 0.716082 0.205245 0.667159\nvn 0.716082 0.205245 0.667159\nvn 0.841900 -0.133521 0.522854\nvn 0.892549 -0.077395 0.444260\nvn 0.864737 -0.423334 0.270219\nvn 0.892549 -0.077395 0.444260\nvn 0.841900 -0.133521 0.522854\nvn 0.841900 -0.133521 0.522854\nvn 0.840937 -0.447875 0.303700\nvn 0.864737 -0.423334 0.270219\nvn 0.893594 -0.393449 0.216074\nvn 0.939383 -0.026063 0.341877\nvn 0.892549 -0.077395 0.444260\nvn 0.892549 -0.077395 0.444260\nvn 0.864737 -0.423334 0.270219\nvn 0.893594 -0.393449 0.216074\nvn 0.667488 0.711742 0.218824\nvn 0.893916 0.393000 0.215559\nvn 0.912620 0.406091 0.047061\nvn 0.912620 0.406091 0.047061\nvn 0.893916 0.393000 0.215559\nvn 0.983734 0.014314 0.179058\nvn 0.983734 0.014314 0.179058\nvn 0.998923 0.025301 0.038881\nvn 0.912620 0.406091 0.047061\nvn 0.912620 0.406091 0.047061\nvn 0.998923 0.025301 0.038881\nvn 0.999671 0.025636 -0.001099\nvn 0.999671 0.025636 -0.001099\nvn 0.913505 0.406823 -0.002075\nvn 0.912620 0.406091 0.047061\nvn 0.912620 0.406091 0.047061\nvn 0.913505 0.406823 -0.002075\nvn 0.688134 0.725581 -0.001801\nvn 0.688134 0.725581 -0.001801\nvn 0.687200 0.724892 0.047824\nvn 0.912620 0.406091 0.047061\nvn 0.357164 0.933120 0.041475\nvn 0.687200 0.724892 0.047824\nvn 0.688134 0.725581 -0.001801\nvn 0.688134 0.725581 -0.001801\nvn 0.358330 0.933594 -0.001434\nvn 0.357164 0.933120 0.041475\nvn 0.357164 0.933120 0.041475\nvn 0.358330 0.933594 -0.001434\nvn -0.026948 0.999637 -0.000366\nvn -0.026948 0.999637 -0.000366\nvn -0.026490 0.999242 0.028535\nvn 0.357164 0.933120 0.041475\nvn -0.405473 0.914039 0.011170\nvn -0.026490 0.999242 0.028535\nvn -0.026948 0.999637 -0.000366\nvn -0.026948 0.999637 -0.000366\nvn -0.406450 0.913673 0.000244\nvn -0.405473 0.914039 0.011170\nvn -0.405473 0.914039 0.011170\nvn -0.406450 0.913673 0.000244\nvn -0.725464 0.688261 -0.000183\nvn -0.725464 0.688261 -0.000183\nvn -0.722970 0.690833 -0.008057\nvn -0.405473 0.914039 0.011170\nvn -0.931825 0.361951 -0.026338\nvn -0.722970 0.690833 -0.008057\nvn -0.725464 0.688261 -0.000183\nvn -0.725464 0.688261 -0.000183\nvn -0.933328 0.359024 -0.001190\nvn -0.931825 0.361951 -0.026338\nvn -0.931825 0.361951 -0.026338\nvn -0.933328 0.359024 -0.001190\nvn -0.999664 -0.025728 -0.003143\nvn -0.999664 -0.025728 -0.003143\nvn -0.998947 -0.022249 -0.040132\nvn -0.931825 0.361951 -0.026338\nvn -0.931825 0.361951 -0.026338\nvn -0.998947 -0.022249 -0.040132\nvn -0.984458 -0.008271 -0.175424\nvn -0.984458 -0.008271 -0.175424\nvn -0.921013 0.372488 -0.113959\nvn -0.931825 0.361951 -0.026338\nvn -0.931825 0.361951 -0.026338\nvn -0.921013 0.372488 -0.113959\nvn -0.717055 0.696148 -0.034792\nvn -0.717055 0.696148 -0.034792\nvn -0.722970 0.690833 -0.008057\nvn -0.931825 0.361951 -0.026338\nvn -0.405473 0.914039 0.011170\nvn -0.722970 0.690833 -0.008057\nvn -0.717055 0.696148 -0.034792\nvn -0.717055 0.696148 -0.034792\nvn -0.407798 0.911701 0.050021\nvn -0.405473 0.914039 0.011170\nvn -0.405473 0.914039 0.011170\nvn -0.407798 0.911701 0.050021\nvn -0.036715 0.991020 0.128577\nvn -0.036715 0.991020 0.128577\nvn -0.026490 0.999242 0.028535\nvn -0.405473 0.914039 0.011170\nvn 0.357164 0.933120 0.041475\nvn -0.026490 0.999242 0.028535\nvn -0.036715 0.991020 0.128577\nvn -0.036715 0.991020 0.128577\nvn 0.339859 0.921489 0.188027\nvn 0.357164 0.933120 0.041475\nvn 0.357164 0.933120 0.041475\nvn 0.339859 0.921489 0.188027\nvn 0.667488 0.711742 0.218824\nvn 0.667488 0.711742 0.218824\nvn 0.687200 0.724892 0.047824\nvn 0.357164 0.933120 0.041475\nvn 0.912620 0.406091 0.047061\nvn 0.687200 0.724892 0.047824\nvn 0.667488 0.711742 0.218824\nvn -0.913099 -0.404866 -0.048312\nvn -0.998947 -0.022249 -0.040132\nvn -0.999664 -0.025728 -0.003143\nvn -0.999664 -0.025728 -0.003143\nvn -0.913620 -0.406545 -0.004425\nvn -0.913099 -0.404866 -0.048312\nvn -0.913099 -0.404866 -0.048312\nvn -0.913620 -0.406545 -0.004425\nvn -0.688144 -0.725561 -0.004486\nvn -0.688144 -0.725561 -0.004486\nvn -0.686548 -0.725460 -0.048586\nvn -0.913099 -0.404866 -0.048312\nvn -0.354880 -0.933987 -0.041567\nvn -0.686548 -0.725460 -0.048586\nvn -0.688144 -0.725561 -0.004486\nvn -0.688144 -0.725561 -0.004486\nvn -0.357715 -0.933825 -0.003296\nvn -0.354880 -0.933987 -0.041567\nvn -0.354880 -0.933987 -0.041567\nvn -0.357715 -0.933825 -0.003296\nvn 0.026643 -0.999644 -0.001678\nvn 0.026643 -0.999644 -0.001678\nvn 0.030733 -0.999143 -0.027712\nvn -0.354880 -0.933987 -0.041567\nvn 0.409568 -0.912218 -0.010621\nvn 0.030733 -0.999143 -0.027712\nvn 0.026643 -0.999644 -0.001678\nvn 0.026643 -0.999644 -0.001678\nvn 0.407435 -0.913234 -0.000061\nvn 0.409568 -0.912218 -0.010621\nvn 0.409568 -0.912218 -0.010621\nvn 0.407435 -0.913234 -0.000061\nvn 0.725122 -0.688621 0.000153\nvn 0.725122 -0.688621 0.000153\nvn 0.726481 -0.687141 0.007966\nvn 0.409568 -0.912218 -0.010621\nvn 0.933275 -0.358264 0.025392\nvn 0.726481 -0.687141 0.007966\nvn 0.725122 -0.688621 0.000153\nvn 0.725122 -0.688621 0.000153\nvn 0.933702 -0.358050 -0.000305\nvn 0.933275 -0.358264 0.025392\nvn 0.724705 -0.688112 0.036135\nvn 0.726481 -0.687141 0.007966\nvn 0.933275 -0.358264 0.025392\nvn 0.409568 -0.912218 -0.010621\nvn 0.726481 -0.687141 0.007966\nvn 0.724705 -0.688112 0.036135\nvn 0.933275 -0.358264 0.025392\nvn 0.923562 -0.365646 0.115483\nvn 0.724705 -0.688112 0.036135\nvn 0.724705 -0.688112 0.036135\nvn 0.923562 -0.365646 0.115483\nvn 0.893594 -0.393449 0.216074\nvn 0.893594 -0.393449 0.216074\nvn 0.711582 -0.700137 0.058810\nvn 0.724705 -0.688112 0.036135\nvn 0.711582 -0.700137 0.058810\nvn 0.893594 -0.393449 0.216074\nvn 0.864737 -0.423334 0.270219\nvn 0.864737 -0.423334 0.270219\nvn 0.707148 -0.704798 0.056582\nvn 0.711582 -0.700137 0.058810\nvn 0.707148 -0.704798 0.056582\nvn 0.864737 -0.423334 0.270219\nvn 0.840937 -0.447875 0.303700\nvn 0.840937 -0.447875 0.303700\nvn 0.716976 -0.695856 0.041597\nvn 0.707148 -0.704798 0.056582\nvn 0.716976 -0.695856 0.041597\nvn 0.840937 -0.447875 0.303700\nvn 0.812111 -0.477409 0.335495\nvn 0.812111 -0.477409 0.335495\nvn 0.738897 -0.673463 0.021882\nvn 0.716976 -0.695856 0.041597\nvn 0.738897 -0.673463 0.021882\nvn 0.812111 -0.477409 0.335495\nvn 0.778762 -0.514525 0.358877\nvn 0.778762 -0.514525 0.358877\nvn 0.761672 -0.647957 0.002808\nvn 0.738897 -0.673463 0.021882\nvn 0.761672 -0.647957 0.002808\nvn 0.778762 -0.514525 0.358877\nvn 0.744833 -0.552528 0.374080\nvn 0.744833 -0.552528 0.374080\nvn 0.777197 -0.629240 -0.004639\nvn 0.761672 -0.647957 0.002808\nvn 0.777197 -0.629240 -0.004639\nvn 0.744833 -0.552528 0.374080\nvn 0.711061 -0.591274 0.380510\nvn 0.711061 -0.591274 0.380510\nvn 0.784183 -0.620510 -0.005036\nvn 0.777197 -0.629240 -0.004639\nvn 0.784183 -0.620510 -0.005036\nvn 0.711061 -0.591274 0.380510\nvn 0.677440 -0.631417 0.377343\nvn 0.677440 -0.631417 0.377343\nvn 0.782727 -0.622348 -0.004547\nvn 0.784183 -0.620510 -0.005036\nvn 0.782727 -0.622348 -0.004547\nvn 0.677440 -0.631417 0.377343\nvn 0.644689 -0.670691 0.366811\nvn 0.644689 -0.670691 0.366811\nvn 0.779490 -0.626405 -0.003418\nvn 0.782727 -0.622348 -0.004547\nvn 0.779490 -0.626405 -0.003418\nvn 0.644689 -0.670691 0.366811\nvn 0.610692 -0.708415 0.353841\nvn 0.610692 -0.708415 0.353841\nvn 0.780493 -0.625151 0.004212\nvn 0.779490 -0.626405 -0.003418\nvn 0.780493 -0.625151 0.004212\nvn 0.610692 -0.708415 0.353841\nvn 0.566859 -0.751010 0.338608\nvn 0.566859 -0.751010 0.338608\nvn 0.782721 -0.621855 0.025392\nvn 0.780493 -0.625151 0.004212\nvn 0.782721 -0.621855 0.025392\nvn 0.566859 -0.751010 0.338608\nvn 0.503693 -0.806597 0.309345\nvn 0.503693 -0.806597 0.309345\nvn 0.778730 -0.623844 0.066318\nvn 0.782721 -0.621855 0.025392\nvn 0.778730 -0.623844 0.066318\nvn 0.503693 -0.806597 0.309345\nvn 0.425714 -0.871662 0.242842\nvn 0.425714 -0.871662 0.242842\nvn 0.610817 -0.769396 0.186901\nvn 0.778730 -0.623844 0.066318\nvn 0.610817 -0.769396 0.186901\nvn 0.425714 -0.871662 0.242842\nvn 0.371393 -0.921019 0.117439\nvn 0.371393 -0.921019 0.117439\nvn 0.564422 -0.815228 0.129737\nvn 0.610817 -0.769396 0.186901\nvn 0.564422 -0.815228 0.129737\nvn 0.371393 -0.921019 0.117439\nvn 0.382624 -0.922942 -0.042147\nvn 0.382624 -0.922942 -0.042147\nvn 0.695683 -0.710363 0.106817\nvn 0.564422 -0.815228 0.129737\nvn 0.695683 -0.710363 0.106817\nvn 0.382624 -0.922942 -0.042147\nvn 0.450710 -0.875203 -0.175730\nvn 0.450710 -0.875203 -0.175730\nvn 0.702639 -0.707552 0.075290\nvn 0.695683 -0.710363 0.106817\nvn 0.887631 -0.376764 0.264879\nvn 0.695683 -0.710363 0.106817\nvn 0.702639 -0.707552 0.075290\nvn 0.702639 -0.707552 0.075290\nvn 0.834860 -0.432125 0.340994\nvn 0.887631 -0.376764 0.264879\nvn 0.695683 -0.710363 0.106817\nvn 0.887631 -0.376764 0.264879\nvn 0.940202 -0.316849 0.125006\nvn 0.940202 -0.316849 0.125006\nvn 0.872016 -0.473134 0.125433\nvn 0.695683 -0.710363 0.106817\nvn 0.872016 -0.473134 0.125433\nvn 0.940202 -0.316849 0.125006\nvn 0.951495 -0.301986 -0.058841\nvn 0.951495 -0.301986 -0.058841\nvn 0.891736 -0.452262 0.016297\nvn 0.872016 -0.473134 0.125433\nvn 0.891736 -0.452262 0.016297\nvn 0.951495 -0.301986 -0.058841\nvn 0.914731 -0.343100 -0.213423\nvn 0.914731 -0.343100 -0.213423\nvn 0.778730 -0.623844 0.066318\nvn 0.891736 -0.452262 0.016297\nvn 0.880849 -0.026521 -0.472653\nvn 0.914731 -0.343100 -0.213423\nvn 0.951495 -0.301986 -0.058841\nvn 0.951495 -0.301986 -0.058841\nvn 0.967919 0.069889 -0.241346\nvn 0.880849 -0.026521 -0.472653\nvn 0.967919 0.069889 -0.241346\nvn 0.951495 -0.301986 -0.058841\nvn 0.940202 -0.316849 0.125006\nvn 0.940202 -0.316849 0.125006\nvn 0.992023 0.084508 0.093541\nvn 0.967919 0.069889 -0.241346\nvn 0.992023 0.084508 0.093541\nvn 0.940202 -0.316849 0.125006\nvn 0.887631 -0.376764 0.264879\nvn 0.887631 -0.376764 0.264879\nvn 0.920152 0.000550 0.391561\nvn 0.992023 0.084508 0.093541\nvn 0.920152 0.000550 0.391561\nvn 0.887631 -0.376764 0.264879\nvn 0.834860 -0.432125 0.340994\nvn 0.834860 -0.432125 0.340994\nvn 0.820843 -0.100774 0.562193\nvn 0.920152 0.000550 0.391561\nvn 0.812329 0.364582 0.455194\nvn 0.920152 0.000550 0.391561\nvn 0.820843 -0.100774 0.562193\nvn 0.820843 -0.100774 0.562193\nvn 0.678446 0.237411 0.695232\nvn 0.812329 0.364582 0.455194\nvn 0.920152 0.000550 0.391561\nvn 0.812329 0.364582 0.455194\nvn 0.889964 0.454489 0.037477\nvn 0.889964 0.454489 0.037477\nvn 0.992023 0.084508 0.093541\nvn 0.920152 0.000550 0.391561\nvn 0.992023 0.084508 0.093541\nvn 0.889964 0.454489 0.037477\nvn 0.824548 0.404507 -0.395595\nvn 0.824548 0.404507 -0.395595\nvn 0.967919 0.069889 -0.241346\nvn 0.992023 0.084508 0.093541\nvn 0.967919 0.069889 -0.241346\nvn 0.824548 0.404507 -0.395595\nvn 0.701001 0.272081 -0.659220\nvn 0.701001 0.272081 -0.659220\nvn 0.880849 -0.026521 -0.472653\nvn 0.967919 0.069889 -0.241346\nvn 0.435967 0.513638 -0.738992\nvn 0.701001 0.272081 -0.659220\nvn 0.824548 0.404507 -0.395595\nvn 0.824548 0.404507 -0.395595\nvn 0.578320 0.656695 -0.484044\nvn 0.435967 0.513638 -0.738992\nvn 0.578320 0.656695 -0.484044\nvn 0.824548 0.404507 -0.395595\nvn 0.889964 0.454489 0.037477\nvn 0.889964 0.454489 0.037477\nvn 0.658175 0.697178 -0.284163\nvn 0.578320 0.656695 -0.484044\nvn 0.638336 0.734471 0.230388\nvn 0.889964 0.454489 0.037477\nvn 0.812329 0.364582 0.455194\nvn 0.812329 0.364582 0.455194\nvn 0.600980 0.667176 0.440114\nvn 0.638336 0.734471 0.230388\nvn 0.600980 0.667176 0.440114\nvn 0.812329 0.364582 0.455194\nvn 0.678446 0.237411 0.695232\nvn 0.678446 0.237411 0.695232\nvn 0.448576 0.533695 0.716903\nvn 0.600980 0.667176 0.440114\nvn 0.313376 0.881988 0.351983\nvn 0.600980 0.667176 0.440114\nvn 0.448576 0.533695 0.716903\nvn 0.448576 0.533695 0.716903\nvn 0.164438 0.759839 0.628972\nvn 0.313376 0.881988 0.351983\nvn 0.600980 0.667176 0.440114\nvn 0.313376 0.881988 0.351983\nvn 0.370134 0.924635 -0.089726\nvn 0.370134 0.924635 -0.089726\nvn 0.638336 0.734471 0.230388\nvn 0.600980 0.667176 0.440114\nvn 0.658175 0.697178 -0.284163\nvn 0.370134 0.924635 -0.089726\nvn 0.275462 0.825015 -0.493428\nvn 0.275462 0.825015 -0.493428\nvn 0.578320 0.656695 -0.484044\nvn 0.658175 0.697178 -0.284163\nvn 0.578320 0.656695 -0.484044\nvn 0.275462 0.825015 -0.493428\nvn 0.131384 0.692534 -0.709320\nvn 0.131384 0.692534 -0.709320\nvn 0.435967 0.513638 -0.738992\nvn 0.578320 0.656695 -0.484044\nvn -0.195781 0.794904 -0.574280\nvn 0.131384 0.692534 -0.709320\nvn 0.275462 0.825015 -0.493428\nvn 0.275462 0.825015 -0.493428\nvn -0.070714 0.902765 -0.424281\nvn -0.195781 0.794904 -0.574280\nvn -0.070714 0.902765 -0.424281\nvn 0.275462 0.825015 -0.493428\nvn 0.370134 0.924635 -0.089726\nvn 0.370134 0.924635 -0.089726\nvn 0.008423 0.991585 -0.129186\nvn -0.070714 0.902765 -0.424281\nvn 0.008423 0.991585 -0.129186\nvn 0.370134 0.924635 -0.089726\nvn 0.313376 0.881988 0.351983\nvn 0.313376 0.881988 0.351983\nvn -0.031771 0.976954 0.211072\nvn 0.008423 0.991585 -0.129186\nvn -0.031771 0.976954 0.211072\nvn 0.313376 0.881988 0.351983\nvn 0.164438 0.759839 0.628972\nvn 0.164438 0.759839 0.628972\nvn -0.152140 0.883171 0.443691\nvn -0.031771 0.976954 0.211072\nvn 0.701001 0.272081 -0.659220\nvn 0.435967 0.513638 -0.738992\nvn 0.327742 0.396013 -0.857764\nvn 0.435967 0.513638 -0.738992\nvn 0.131384 0.692534 -0.709320\nvn 0.021211 0.592417 -0.805352\nvn 0.021211 0.592417 -0.805352\nvn 0.327742 0.396013 -0.857764\nvn 0.435967 0.513638 -0.738992\nvn 0.327742 0.396013 -0.857764\nvn 0.021211 0.592417 -0.805352\nvn -0.059604 0.512202 -0.856794\nvn -0.059604 0.512202 -0.856794\nvn 0.247080 0.302410 -0.920598\nvn 0.327742 0.396013 -0.857764\nvn 0.599457 0.148995 -0.786417\nvn 0.327742 0.396013 -0.857764\nvn 0.247080 0.302410 -0.920598\nvn 0.247080 0.302410 -0.920598\nvn 0.523345 0.051852 -0.850542\nvn 0.599457 0.148995 -0.786417\nvn 0.794690 -0.129462 -0.593049\nvn 0.599457 0.148995 -0.786417\nvn 0.523345 0.051852 -0.850542\nvn 0.599457 0.148995 -0.786417\nvn 0.794690 -0.129462 -0.593049\nvn 0.880849 -0.026521 -0.472653\nvn 0.914731 -0.343100 -0.213423\nvn 0.880849 -0.026521 -0.472653\nvn 0.794690 -0.129462 -0.593049\nvn 0.794690 -0.129462 -0.593049\nvn 0.863676 -0.400356 -0.306234\nvn 0.914731 -0.343100 -0.213423\nvn 0.778730 -0.623844 0.066318\nvn 0.914731 -0.343100 -0.213423\nvn 0.863676 -0.400356 -0.306234\nvn 0.863676 -0.400356 -0.306234\nvn 0.782721 -0.621855 0.025392\nvn 0.778730 -0.623844 0.066318\nvn 0.782721 -0.621855 0.025392\nvn 0.863676 -0.400356 -0.306234\nvn 0.821579 -0.448847 -0.351490\nvn 0.821579 -0.448847 -0.351490\nvn 0.780493 -0.625151 0.004212\nvn 0.782721 -0.621855 0.025392\nvn 0.780493 -0.625151 0.004212\nvn 0.821579 -0.448847 -0.351490\nvn 0.789402 -0.486929 -0.373826\nvn 0.789402 -0.486929 -0.373826\nvn 0.779490 -0.626405 -0.003418\nvn 0.780493 -0.625151 0.004212\nvn 0.779490 -0.626405 -0.003418\nvn 0.789402 -0.486929 -0.373826\nvn 0.764261 -0.517605 -0.384694\nvn 0.764261 -0.517605 -0.384694\nvn 0.782727 -0.622348 -0.004547\nvn 0.779490 -0.626405 -0.003418\nvn 0.628578 -0.337514 -0.700695\nvn 0.764261 -0.517605 -0.384694\nvn 0.789402 -0.486929 -0.373826\nvn 0.789402 -0.486929 -0.373826\nvn 0.675677 -0.278035 -0.682757\nvn 0.628578 -0.337514 -0.700695\nvn 0.675677 -0.278035 -0.682757\nvn 0.789402 -0.486929 -0.373826\nvn 0.821579 -0.448847 -0.351490\nvn 0.821579 -0.448847 -0.351490\nvn 0.728735 -0.211528 -0.651308\nvn 0.675677 -0.278035 -0.682757\nvn 0.728735 -0.211528 -0.651308\nvn 0.821579 -0.448847 -0.351490\nvn 0.863676 -0.400356 -0.306234\nvn 0.863676 -0.400356 -0.306234\nvn 0.794690 -0.129462 -0.593049\nvn 0.728735 -0.211528 -0.651308\nvn 0.523345 0.051852 -0.850542\nvn 0.728735 -0.211528 -0.651308\nvn 0.794690 -0.129462 -0.593049\nvn 0.728735 -0.211528 -0.651308\nvn 0.523345 0.051852 -0.850542\nvn 0.459586 -0.030336 -0.887615\nvn 0.459586 -0.030336 -0.887615\nvn 0.675677 -0.278035 -0.682757\nvn 0.728735 -0.211528 -0.651308\nvn 0.675677 -0.278035 -0.682757\nvn 0.459586 -0.030336 -0.887615\nvn 0.398518 -0.108495 -0.910721\nvn 0.398518 -0.108495 -0.910721\nvn 0.628578 -0.337514 -0.700695\nvn 0.675677 -0.278035 -0.682757\nvn 0.112705 0.134160 -0.984530\nvn 0.398518 -0.108495 -0.910721\nvn 0.459586 -0.030336 -0.887615\nvn 0.459586 -0.030336 -0.887615\nvn 0.179359 0.218515 -0.959209\nvn 0.112705 0.134160 -0.984530\nvn 0.179359 0.218515 -0.959209\nvn 0.459586 -0.030336 -0.887615\nvn 0.523345 0.051852 -0.850542\nvn 0.523345 0.051852 -0.850542\nvn 0.247080 0.302410 -0.920598\nvn 0.179359 0.218515 -0.959209\nvn -0.125067 0.437000 -0.890724\nvn 0.179359 0.218515 -0.959209\nvn 0.247080 0.302410 -0.920598\nvn 0.247080 0.302410 -0.920598\nvn -0.059604 0.512202 -0.856794\nvn -0.125067 0.437000 -0.890724\nvn 0.179359 0.218515 -0.959209\nvn -0.125067 0.437000 -0.890724\nvn -0.188729 0.357955 -0.914467\nvn -0.188729 0.357955 -0.914467\nvn 0.112705 0.134160 -0.984530\nvn 0.179359 0.218515 -0.959209\nvn -0.465050 0.531703 -0.707828\nvn -0.188729 0.357955 -0.914467\nvn -0.125067 0.437000 -0.890724\nvn -0.125067 0.437000 -0.890724\nvn -0.413322 0.594819 -0.689460\nvn -0.465050 0.531703 -0.707828\nvn -0.413322 0.594819 -0.689460\nvn -0.125067 0.437000 -0.890724\nvn -0.059604 0.512202 -0.856794\nvn -0.059604 0.512202 -0.856794\nvn -0.359734 0.653576 -0.665906\nvn -0.413322 0.594819 -0.689460\nvn -0.359734 0.653576 -0.665906\nvn -0.059604 0.512202 -0.856794\nvn 0.021211 0.592417 -0.805352\nvn 0.021211 0.592417 -0.805352\nvn -0.291425 0.715943 -0.634427\nvn -0.359734 0.653576 -0.665906\nvn -0.291425 0.715943 -0.634427\nvn 0.021211 0.592417 -0.805352\nvn 0.131384 0.692534 -0.709320\nvn 0.131384 0.692534 -0.709320\nvn -0.195781 0.794904 -0.574280\nvn -0.291425 0.715943 -0.634427\nvn 0.398518 -0.108495 -0.910721\nvn 0.112705 0.134160 -0.984530\nvn 0.031343 0.038057 -0.998784\nvn 0.031343 0.038057 -0.998784\nvn 0.326010 -0.198957 -0.924193\nvn 0.398518 -0.108495 -0.910721\nvn 0.628578 -0.337514 -0.700695\nvn 0.398518 -0.108495 -0.910721\nvn 0.326010 -0.198957 -0.924193\nvn 0.326010 -0.198957 -0.924193\nvn 0.574504 -0.407592 -0.709798\nvn 0.628578 -0.337514 -0.700695\nvn 0.764261 -0.517605 -0.384694\nvn 0.628578 -0.337514 -0.700695\nvn 0.574504 -0.407592 -0.709798\nvn 0.574504 -0.407592 -0.709798\nvn 0.735231 -0.554956 -0.389177\nvn 0.764261 -0.517605 -0.384694\nvn 0.782727 -0.622348 -0.004547\nvn 0.764261 -0.517605 -0.384694\nvn 0.735231 -0.554956 -0.389177\nvn 0.735231 -0.554956 -0.389177\nvn 0.784183 -0.620510 -0.005036\nvn 0.782727 -0.622348 -0.004547\nvn 0.784183 -0.620510 -0.005036\nvn 0.735231 -0.554956 -0.389177\nvn 0.691326 -0.612097 -0.383934\nvn 0.691326 -0.612097 -0.383934\nvn 0.777197 -0.629240 -0.004639\nvn 0.784183 -0.620510 -0.005036\nvn 0.777197 -0.629240 -0.004639\nvn 0.691326 -0.612097 -0.383934\nvn 0.631194 -0.688355 -0.357438\nvn 0.631194 -0.688355 -0.357438\nvn 0.761672 -0.647957 0.002808\nvn 0.777197 -0.629240 -0.004639\nvn 0.761672 -0.647957 0.002808\nvn 0.631194 -0.688355 -0.357438\nvn 0.556001 -0.775282 -0.299669\nvn 0.556001 -0.775282 -0.299669\nvn 0.738897 -0.673463 0.021882\nvn 0.761672 -0.647957 0.002808\nvn 0.285724 -0.762103 -0.581000\nvn 0.556001 -0.775282 -0.299669\nvn 0.631194 -0.688355 -0.357438\nvn 0.631194 -0.688355 -0.357438\nvn 0.403520 -0.626369 -0.666959\nvn 0.285724 -0.762103 -0.581000\nvn 0.403520 -0.626369 -0.666959\nvn 0.631194 -0.688355 -0.357438\nvn 0.691326 -0.612097 -0.383934\nvn 0.691326 -0.612097 -0.383934\nvn 0.500515 -0.503872 -0.703987\nvn 0.403520 -0.626369 -0.666959\nvn 0.500515 -0.503872 -0.703987\nvn 0.691326 -0.612097 -0.383934\nvn 0.735231 -0.554956 -0.389177\nvn 0.735231 -0.554956 -0.389177\nvn 0.574504 -0.407592 -0.709798\nvn 0.500515 -0.503872 -0.703987\nvn 0.229507 -0.316946 -0.920256\nvn 0.500515 -0.503872 -0.703987\nvn 0.574504 -0.407592 -0.709798\nvn 0.574504 -0.407592 -0.709798\nvn 0.326010 -0.198957 -0.924193\nvn 0.229507 -0.316946 -0.920256\nvn 0.500515 -0.503872 -0.703987\nvn 0.229507 -0.316946 -0.920256\nvn 0.105444 -0.463771 -0.879658\nvn 0.105444 -0.463771 -0.879658\nvn 0.403520 -0.626369 -0.666959\nvn 0.500515 -0.503872 -0.703987\nvn 0.403520 -0.626369 -0.666959\nvn 0.105444 -0.463771 -0.879658\nvn -0.039888 -0.625946 -0.778846\nvn -0.039888 -0.625946 -0.778846\nvn 0.285724 -0.762103 -0.581000\nvn 0.403520 -0.626369 -0.666959\nvn -0.358205 -0.387473 -0.849443\nvn -0.039888 -0.625946 -0.778846\nvn 0.105444 -0.463771 -0.879658\nvn 0.105444 -0.463771 -0.879658\nvn -0.207989 -0.226819 -0.951469\nvn -0.358205 -0.387473 -0.849443\nvn -0.207989 -0.226819 -0.951469\nvn 0.105444 -0.463771 -0.879658\nvn 0.229507 -0.316946 -0.920256\nvn 0.229507 -0.316946 -0.920256\nvn -0.074711 -0.081609 -0.993860\nvn -0.207989 -0.226819 -0.951469\nvn -0.074711 -0.081609 -0.993860\nvn 0.229507 -0.316946 -0.920256\nvn 0.326010 -0.198957 -0.924193\nvn 0.326010 -0.198957 -0.924193\nvn 0.031343 0.038057 -0.998784\nvn -0.074711 -0.081609 -0.993860\nvn -0.364156 0.164255 -0.916739\nvn -0.074711 -0.081609 -0.993860\nvn 0.031343 0.038057 -0.998784\nvn 0.031343 0.038057 -0.998784\nvn -0.266341 0.269301 -0.925494\nvn -0.364156 0.164255 -0.916739\nvn -0.266341 0.269301 -0.925494\nvn 0.031343 0.038057 -0.998784\nvn 0.112705 0.134160 -0.984530\nvn 0.112705 0.134160 -0.984530\nvn -0.188729 0.357955 -0.914467\nvn -0.266341 0.269301 -0.925494\nvn -0.074711 -0.081609 -0.993860\nvn -0.364156 0.164255 -0.916739\nvn -0.482992 0.041475 -0.874642\nvn -0.482992 0.041475 -0.874642\nvn -0.207989 -0.226819 -0.951469\nvn -0.074711 -0.081609 -0.993860\nvn -0.207989 -0.226819 -0.951469\nvn -0.482992 0.041475 -0.874642\nvn -0.612489 -0.093053 -0.784983\nvn -0.612489 -0.093053 -0.784983\nvn -0.358205 -0.387473 -0.849443\nvn -0.207989 -0.226819 -0.951469\nvn -0.769537 0.210001 -0.603086\nvn -0.612489 -0.093053 -0.784983\nvn -0.482992 0.041475 -0.874642\nvn -0.482992 0.041475 -0.874642\nvn -0.682110 0.300128 -0.666820\nvn -0.769537 0.210001 -0.603086\nvn -0.682110 0.300128 -0.666820\nvn -0.482992 0.041475 -0.874642\nvn -0.364156 0.164255 -0.916739\nvn -0.364156 0.164255 -0.916739\nvn -0.598890 0.385251 -0.702077\nvn -0.682110 0.300128 -0.666820\nvn -0.598890 0.385251 -0.702077\nvn -0.364156 0.164255 -0.916739\nvn -0.266341 0.269301 -0.925494\nvn -0.266341 0.269301 -0.925494\nvn -0.526396 0.462305 -0.713570\nvn -0.598890 0.385251 -0.702077\nvn -0.526396 0.462305 -0.713570\nvn -0.266341 0.269301 -0.925494\nvn -0.188729 0.357955 -0.914467\nvn -0.188729 0.357955 -0.914467\nvn -0.465050 0.531703 -0.707828\nvn -0.526396 0.462305 -0.713570\nvn -0.039888 -0.625946 -0.778846\nvn -0.358205 -0.387473 -0.849443\nvn -0.478878 -0.519774 -0.707468\nvn -0.358205 -0.387473 -0.849443\nvn -0.612489 -0.093053 -0.784983\nvn -0.714918 -0.210920 -0.666637\nvn -0.714918 -0.210920 -0.666637\nvn -0.478878 -0.519774 -0.707468\nvn -0.358205 -0.387473 -0.849443\nvn -0.478878 -0.519774 -0.707468\nvn -0.714918 -0.210920 -0.666637\nvn -0.782616 -0.289205 -0.551246\nvn -0.782616 -0.289205 -0.551246\nvn -0.555055 -0.603124 -0.572848\nvn -0.478878 -0.519774 -0.707468\nvn -0.163339 -0.752329 -0.638218\nvn -0.478878 -0.519774 -0.707468\nvn -0.555055 -0.603124 -0.572848\nvn -0.555055 -0.603124 -0.572848\nvn -0.240308 -0.827649 -0.507198\nvn -0.163339 -0.752329 -0.638218\nvn 0.178966 -0.865837 -0.467222\nvn -0.163339 -0.752329 -0.638218\nvn -0.240308 -0.827649 -0.507198\nvn -0.163339 -0.752329 -0.638218\nvn 0.178966 -0.865837 -0.467222\nvn 0.285724 -0.762103 -0.581000\nvn 0.556001 -0.775282 -0.299669\nvn 0.285724 -0.762103 -0.581000\nvn 0.178966 -0.865837 -0.467222\nvn 0.178966 -0.865837 -0.467222\nvn 0.485410 -0.843767 -0.228986\nvn 0.556001 -0.775282 -0.299669\nvn 0.738897 -0.673463 0.021882\nvn 0.556001 -0.775282 -0.299669\nvn 0.485410 -0.843767 -0.228986\nvn 0.485410 -0.843767 -0.228986\nvn 0.716976 -0.695856 0.041597\nvn 0.738897 -0.673463 0.021882\nvn 0.716976 -0.695856 0.041597\nvn 0.485410 -0.843767 -0.228986\nvn 0.442653 -0.881246 -0.165720\nvn 0.442653 -0.881246 -0.165720\nvn 0.707148 -0.704798 0.056582\nvn 0.716976 -0.695856 0.041597\nvn 0.707148 -0.704798 0.056582\nvn 0.442653 -0.881246 -0.165720\nvn 0.421109 -0.900785 -0.106086\nvn 0.421109 -0.900785 -0.106086\nvn 0.711582 -0.700137 0.058810\nvn 0.707148 -0.704798 0.056582\nvn 0.711582 -0.700137 0.058810\nvn 0.421109 -0.900785 -0.106086\nvn 0.416063 -0.908087 -0.047640\nvn 0.416063 -0.908087 -0.047640\nvn 0.724705 -0.688112 0.036135\nvn 0.711582 -0.700137 0.058810\nvn 0.046512 -0.991268 -0.123390\nvn 0.416063 -0.908087 -0.047640\nvn 0.421109 -0.900785 -0.106086\nvn 0.421109 -0.900785 -0.106086\nvn 0.069615 -0.964844 -0.253434\nvn 0.046512 -0.991268 -0.123390\nvn 0.069615 -0.964844 -0.253434\nvn 0.421109 -0.900785 -0.106086\nvn 0.442653 -0.881246 -0.165720\nvn 0.442653 -0.881246 -0.165720\nvn 0.112280 -0.925097 -0.362751\nvn 0.069615 -0.964844 -0.253434\nvn 0.112280 -0.925097 -0.362751\nvn 0.442653 -0.881246 -0.165720\nvn 0.485410 -0.843767 -0.228986\nvn 0.485410 -0.843767 -0.228986\nvn 0.178966 -0.865837 -0.467222\nvn 0.112280 -0.925097 -0.362751\nvn -0.240308 -0.827649 -0.507198\nvn 0.112280 -0.925097 -0.362751\nvn 0.178966 -0.865837 -0.467222\nvn 0.112280 -0.925097 -0.362751\nvn -0.240308 -0.827649 -0.507198\nvn -0.295728 -0.883217 -0.363968\nvn -0.295728 -0.883217 -0.363968\nvn 0.069615 -0.964844 -0.253434\nvn 0.112280 -0.925097 -0.362751\nvn 0.069615 -0.964844 -0.253434\nvn -0.295728 -0.883217 -0.363968\nvn -0.335439 -0.924496 -0.181072\nvn -0.335439 -0.924496 -0.181072\nvn 0.046512 -0.991268 -0.123390\nvn 0.069615 -0.964844 -0.253434\nvn -0.666804 -0.714566 -0.211586\nvn -0.335439 -0.924496 -0.181072\nvn -0.295728 -0.883217 -0.363968\nvn -0.295728 -0.883217 -0.363968\nvn -0.615660 -0.667329 -0.419087\nvn -0.666804 -0.714566 -0.211586\nvn -0.615660 -0.667329 -0.419087\nvn -0.295728 -0.883217 -0.363968\nvn -0.240308 -0.827649 -0.507198\nvn -0.240308 -0.827649 -0.507198\nvn -0.555055 -0.603124 -0.572848\nvn -0.615660 -0.667329 -0.419087\nvn -0.841573 -0.350363 -0.411097\nvn -0.615660 -0.667329 -0.419087\nvn -0.555055 -0.603124 -0.572848\nvn -0.555055 -0.603124 -0.572848\nvn -0.782616 -0.289205 -0.551246\nvn -0.841573 -0.350363 -0.411097\nvn -0.615660 -0.667329 -0.419087\nvn -0.841573 -0.350363 -0.411097\nvn -0.895667 -0.392168 -0.209726\nvn -0.895667 -0.392168 -0.209726\nvn -0.666804 -0.714566 -0.211586\nvn -0.615660 -0.667329 -0.419087\nvn -0.984458 -0.008271 -0.175424\nvn -0.895667 -0.392168 -0.209726\nvn -0.841573 -0.350363 -0.411097\nvn -0.841573 -0.350363 -0.411097\nvn -0.939837 0.021272 -0.340960\nvn -0.984458 -0.008271 -0.175424\nvn -0.939837 0.021272 -0.340960\nvn -0.841573 -0.350363 -0.411097\nvn -0.782616 -0.289205 -0.551246\nvn -0.782616 -0.289205 -0.551246\nvn -0.891892 0.067813 -0.447136\nvn -0.939837 0.021272 -0.340960\nvn -0.891892 0.067813 -0.447136\nvn -0.782616 -0.289205 -0.551246\nvn -0.714918 -0.210920 -0.666637\nvn -0.714918 -0.210920 -0.666637\nvn -0.840896 0.126593 -0.526182\nvn -0.891892 0.067813 -0.447136\nvn -0.840896 0.126593 -0.526182\nvn -0.714918 -0.210920 -0.666637\nvn -0.612489 -0.093053 -0.784983\nvn -0.612489 -0.093053 -0.784983\nvn -0.769537 0.210001 -0.603086\nvn -0.840896 0.126593 -0.526182\nvn -0.354880 -0.933987 -0.041567\nvn -0.335439 -0.924496 -0.181072\nvn -0.666804 -0.714566 -0.211586\nvn 0.046512 -0.991268 -0.123390\nvn -0.335439 -0.924496 -0.181072\nvn -0.354880 -0.933987 -0.041567\nvn -0.354880 -0.933987 -0.041567\nvn 0.030733 -0.999143 -0.027712\nvn 0.046512 -0.991268 -0.123390\nvn 0.046512 -0.991268 -0.123390\nvn 0.030733 -0.999143 -0.027712\nvn 0.409568 -0.912218 -0.010621\nvn 0.409568 -0.912218 -0.010621\nvn 0.416063 -0.908087 -0.047640\nvn 0.046512 -0.991268 -0.123390\nvn 0.724705 -0.688112 0.036135\nvn 0.416063 -0.908087 -0.047640\nvn 0.409568 -0.912218 -0.010621\nvn -0.895667 -0.392168 -0.209726\nvn -0.984458 -0.008271 -0.175424\nvn -0.998947 -0.022249 -0.040132\nvn -0.998947 -0.022249 -0.040132\nvn -0.913099 -0.404866 -0.048312\nvn -0.895667 -0.392168 -0.209726\nvn -0.666804 -0.714566 -0.211586\nvn -0.895667 -0.392168 -0.209726\nvn -0.913099 -0.404866 -0.048312\nvn -0.666804 -0.714566 -0.211586\nvn -0.686548 -0.725460 -0.048586\nvn -0.354880 -0.933987 -0.041567\nvn -0.913099 -0.404866 -0.048312\nvn -0.686548 -0.725460 -0.048586\nvn -0.666804 -0.714566 -0.211586\nvn 0.130166 -0.916502 -0.378259\nvn 0.450710 -0.875203 -0.175730\nvn 0.382624 -0.922942 -0.042147\nvn 0.382624 -0.922942 -0.042147\nvn 0.018922 -0.987057 -0.159250\nvn 0.130166 -0.916502 -0.378259\nvn 0.154186 -0.860563 0.485446\nvn 0.503693 -0.806597 0.309345\nvn 0.566859 -0.751010 0.338608\nvn 0.566859 -0.751010 0.338608\nvn 0.262102 -0.766255 0.586648\nvn 0.154186 -0.860563 0.485446\nvn 0.880849 -0.026521 -0.472653\nvn 0.701001 0.272081 -0.659220\nvn 0.599457 0.148995 -0.786417\nvn 0.327742 0.396013 -0.857764\nvn 0.599457 0.148995 -0.786417\nvn 0.701001 0.272081 -0.659220\nvn 0.466458 -0.542695 0.698497\nvn 0.677440 -0.631417 0.377343\nvn 0.711061 -0.591274 0.380510\nvn 0.711061 -0.591274 0.380510\nvn 0.527862 -0.471370 0.706521\nvn 0.466458 -0.542695 0.698497\nvn 0.768724 -0.212415 0.603278\nvn 0.812111 -0.477409 0.335495\nvn 0.840937 -0.447875 0.303700\nvn 0.840937 -0.447875 0.303700\nvn 0.841900 -0.133521 0.522854\nvn 0.768724 -0.212415 0.603278\nvn 0.939383 -0.026063 0.341877\nvn 0.893594 -0.393449 0.216074\nvn 0.923562 -0.365646 0.115483\nvn 0.923562 -0.365646 0.115483\nvn 0.983734 0.014314 0.179058\nvn 0.939383 -0.026063 0.341877\nvn 0.285724 -0.762103 -0.581000\nvn -0.039888 -0.625946 -0.778846\nvn -0.163339 -0.752329 -0.638218\nvn -0.478878 -0.519774 -0.707468\nvn -0.163339 -0.752329 -0.638218\nvn -0.039888 -0.625946 -0.778846\nvn 0.983734 0.014314 0.179058\nvn 0.923562 -0.365646 0.115483\nvn 0.933275 -0.358264 0.025392\nvn 0.933275 -0.358264 0.025392\nvn 0.998923 0.025301 0.038881\nvn 0.983734 0.014314 0.179058\nvn 0.999671 0.025636 -0.001099\nvn 0.998923 0.025301 0.038881\nvn 0.933275 -0.358264 0.025392\nvn 0.933275 -0.358264 0.025392\nvn 0.933702 -0.358050 -0.000305\nvn 0.999671 0.025636 -0.001099\nvn -0.999006 -0.002198 -0.044527\nvn -0.921735 -0.386371 -0.033510\nvn -0.917650 -0.387289 -0.089024\nvn -0.699987 -0.710730 -0.069858\nvn -0.917650 -0.387289 -0.089024\nvn -0.921735 -0.386371 -0.033510\nvn -0.917650 -0.387289 -0.089024\nvn -0.699987 -0.710730 -0.069858\nvn -0.657788 -0.722459 -0.212996\nvn -0.921735 -0.386371 -0.033510\nvn -0.704109 -0.709817 -0.019776\nvn -0.699987 -0.710730 -0.069858\nvn -0.378746 -0.924311 -0.046908\nvn -0.699987 -0.710730 -0.069858\nvn -0.704109 -0.709817 -0.019776\nvn -0.704109 -0.709817 -0.019776\nvn -0.380849 -0.924580 -0.010285\nvn -0.378746 -0.924311 -0.046908\nvn -0.699987 -0.710730 -0.069858\nvn -0.378746 -0.924311 -0.046908\nvn -0.339468 -0.926176 -0.164195\nvn -0.339468 -0.926176 -0.164195\nvn -0.657788 -0.722459 -0.212996\nvn -0.699987 -0.710730 -0.069858\nvn 0.024568 -0.995211 -0.094608\nvn -0.339468 -0.926176 -0.164195\nvn -0.378746 -0.924311 -0.046908\nvn -0.378746 -0.924311 -0.046908\nvn -0.000122 -0.999690 -0.024904\nvn 0.024568 -0.995211 -0.094608\nvn -0.000122 -0.999690 -0.024904\nvn -0.378746 -0.924311 -0.046908\nvn -0.380849 -0.924580 -0.010285\nvn -0.380849 -0.924580 -0.010285\nvn 0.000824 -0.999978 -0.006622\nvn -0.000122 -0.999690 -0.024904\nvn 0.000824 -0.999978 -0.006622\nvn 0.382827 -0.923802 -0.005768\nvn 0.380149 -0.924919 -0.003449\nvn 0.380149 -0.924919 -0.003449\nvn -0.000122 -0.999690 -0.024904\nvn 0.000824 -0.999978 -0.006622\nvn 0.705935 -0.708071 0.017060\nvn 0.380149 -0.924919 -0.003449\nvn 0.382827 -0.923802 -0.005768\nvn 0.380149 -0.924919 -0.003449\nvn 0.705935 -0.708071 0.017060\nvn 0.704899 -0.705356 0.074772\nvn 0.704899 -0.705356 0.074772\nvn 0.388660 -0.921308 -0.011628\nvn 0.380149 -0.924919 -0.003449\nvn -0.000122 -0.999690 -0.024904\nvn 0.380149 -0.924919 -0.003449\nvn 0.388660 -0.921308 -0.011628\nvn 0.388660 -0.921308 -0.011628\nvn 0.024568 -0.995211 -0.094608\nvn -0.000122 -0.999690 -0.024904\nvn 0.382827 -0.923802 -0.005768\nvn 0.707432 -0.706760 -0.005463\nvn 0.705935 -0.708071 0.017060\nvn 0.924388 -0.379777 0.035707\nvn 0.705935 -0.708071 0.017060\nvn 0.707432 -0.706760 -0.005463\nvn 0.707432 -0.706760 -0.005463\nvn 0.924293 -0.381668 -0.003479\nvn 0.924388 -0.379777 0.035707\nvn 0.705935 -0.708071 0.017060\nvn 0.924388 -0.379777 0.035707\nvn 0.916668 -0.370592 0.149604\nvn 0.916668 -0.370592 0.149604\nvn 0.704899 -0.705356 0.074772\nvn 0.705935 -0.708071 0.017060\nvn 0.979816 0.029756 0.197672\nvn 0.916668 -0.370592 0.149604\nvn 0.924388 -0.379777 0.035707\nvn 0.924388 -0.379777 0.035707\nvn 0.998705 0.009309 0.050021\nvn 0.979816 0.029756 0.197672\nvn 0.998705 0.009309 0.050021\nvn 0.924388 -0.379777 0.035707\nvn 0.924293 -0.381668 -0.003479\nvn 0.924293 -0.381668 -0.003479\nvn 0.999998 0.001679 0.000641\nvn 0.998705 0.009309 0.050021\nvn 0.916825 0.395162 0.057254\nvn 0.998705 0.009309 0.050021\nvn 0.999998 0.001679 0.000641\nvn 0.999998 0.001679 0.000641\nvn 0.923213 0.384240 0.006104\nvn 0.916825 0.395162 0.057254\nvn 0.998705 0.009309 0.050021\nvn 0.916825 0.395162 0.057254\nvn 0.883159 0.419301 0.210276\nvn 0.883159 0.419301 0.210276\nvn 0.979816 0.029756 0.197672\nvn 0.998705 0.009309 0.050021\nvn 0.653346 0.732970 0.189460\nvn 0.883159 0.419301 0.210276\nvn 0.916825 0.395162 0.057254\nvn 0.916825 0.395162 0.057254\nvn 0.695106 0.716775 0.055331\nvn 0.653346 0.732970 0.189460\nvn 0.695106 0.716775 0.055331\nvn 0.916825 0.395162 0.057254\nvn 0.923213 0.384240 0.006104\nvn 0.923213 0.384240 0.006104\nvn 0.706426 0.707708 0.010590\nvn 0.695106 0.716775 0.055331\nvn 0.372059 0.927204 0.043185\nvn 0.695106 0.716775 0.055331\nvn 0.706426 0.707708 0.010590\nvn 0.706426 0.707708 0.010590\nvn 0.383842 0.923333 0.011048\nvn 0.372059 0.927204 0.043185\nvn 0.695106 0.716775 0.055331\nvn 0.372059 0.927204 0.043185\nvn 0.335317 0.931271 0.142465\nvn 0.335317 0.931271 0.142465\nvn 0.653346 0.732970 0.189460\nvn 0.695106 0.716775 0.055331\nvn -0.001404 0.999813 0.019288\nvn 0.372059 0.927204 0.043185\nvn 0.383842 0.923333 0.011048\nvn 0.383842 0.923333 0.011048\nvn 0.005127 0.999983 0.002808\nvn -0.001404 0.999813 0.019288\nvn -0.184611 0.924548 0.333361\nvn -0.498530 0.852216 0.158730\nvn -0.540280 0.820903 0.184976\nvn -0.540280 0.820903 0.184976\nvn -0.235179 0.892832 0.384112\nvn -0.184611 0.924548 0.333361\nvn -0.235179 0.892832 0.384112\nvn -0.540280 0.820903 0.184976\nvn -0.577854 0.792924 0.193279\nvn -0.577854 0.792924 0.193279\nvn -0.284897 0.858414 0.426567\nvn -0.235179 0.892832 0.384112\nvn -0.284897 0.858414 0.426567\nvn -0.577854 0.792924 0.193279\nvn -0.604338 0.772222 0.196085\nvn -0.604338 0.772222 0.196085\nvn -0.325888 0.823478 0.464415\nvn -0.284897 0.858414 0.426567\nvn -0.325888 0.823478 0.464415\nvn -0.604338 0.772222 0.196085\nvn -0.615298 0.760569 0.207225\nvn -0.615298 0.760569 0.207225\nvn -0.352252 0.788613 0.503992\nvn -0.325888 0.823478 0.464415\nvn -0.782120 0.606328 -0.143716\nvn -0.615298 0.760569 0.207225\nvn -0.604338 0.772222 0.196085\nvn -0.604338 0.772222 0.196085\nvn -0.795378 0.593435 -0.123326\nvn -0.782120 0.606328 -0.143716\nvn -0.795378 0.593435 -0.123326\nvn -0.604338 0.772222 0.196085\nvn -0.577854 0.792924 0.193279\nvn -0.577854 0.792924 0.193279\nvn -0.796046 0.599010 -0.086585\nvn -0.795378 0.593435 -0.123326\nvn -0.796046 0.599010 -0.086585\nvn -0.577854 0.792924 0.193279\nvn -0.540280 0.820903 0.184976\nvn -0.540280 0.820903 0.184976\nvn -0.782751 0.620084 -0.052889\nvn -0.796046 0.599010 -0.086585\nvn -0.782751 0.620084 -0.052889\nvn -0.540280 0.820903 0.184976\nvn -0.498530 0.852216 0.158730\nvn -0.498530 0.852216 0.158730\nvn -0.758858 0.649660 -0.045565\nvn -0.782751 0.620084 -0.052889\nvn -0.901915 0.304982 -0.305837\nvn -0.782751 0.620084 -0.052889\nvn -0.758858 0.649660 -0.045565\nvn -0.758858 0.649660 -0.045565\nvn -0.907332 0.328568 -0.262281\nvn -0.901915 0.304982 -0.305837\nvn -0.782751 0.620084 -0.052889\nvn -0.901915 0.304982 -0.305837\nvn -0.878125 0.295729 -0.376086\nvn -0.878125 0.295729 -0.376086\nvn -0.796046 0.599010 -0.086585\nvn -0.782751 0.620084 -0.052889\nvn -0.796046 0.599010 -0.086585\nvn -0.878125 0.295729 -0.376086\nvn -0.842518 0.309710 -0.440730\nvn -0.842518 0.309710 -0.440730\nvn -0.795378 0.593435 -0.123326\nvn -0.796046 0.599010 -0.086585\nvn -0.795378 0.593435 -0.123326\nvn -0.842518 0.309710 -0.440730\nvn -0.804336 0.347798 -0.481747\nvn -0.804336 0.347798 -0.481747\nvn -0.782120 0.606328 -0.143716\nvn -0.795378 0.593435 -0.123326\nvn -0.680958 0.044833 -0.730949\nvn -0.804336 0.347798 -0.481747\nvn -0.842518 0.309710 -0.440730\nvn -0.842518 0.309710 -0.440730\nvn -0.728983 -0.015168 -0.684364\nvn -0.680958 0.044833 -0.730949\nvn -0.728983 -0.015168 -0.684364\nvn -0.842518 0.309710 -0.440730\nvn -0.878125 0.295729 -0.376086\nvn -0.878125 0.295729 -0.376086\nvn -0.788309 -0.053531 -0.612946\nvn -0.728983 -0.015168 -0.684364\nvn -0.788309 -0.053531 -0.612946\nvn -0.878125 0.295729 -0.376086\nvn -0.901915 0.304982 -0.305837\nvn -0.901915 0.304982 -0.305837\nvn -0.847818 -0.065647 -0.526209\nvn -0.788309 -0.053531 -0.612946\nvn -0.847818 -0.065647 -0.526209\nvn -0.901915 0.304982 -0.305837\nvn -0.907332 0.328568 -0.262281\nvn -0.907332 0.328568 -0.262281\nvn -0.888699 -0.056339 -0.455016\nvn -0.847818 -0.065647 -0.526209\nvn -0.634161 -0.402123 -0.660407\nvn -0.847818 -0.065647 -0.526209\nvn -0.888699 -0.056339 -0.455016\nvn -0.888699 -0.056339 -0.455016\nvn -0.702579 -0.414876 -0.578153\nvn -0.634161 -0.402123 -0.660407\nvn -0.847818 -0.065647 -0.526209\nvn -0.634161 -0.402123 -0.660407\nvn -0.559303 -0.365992 -0.743794\nvn -0.559303 -0.365992 -0.743794\nvn -0.788309 -0.053531 -0.612946\nvn -0.847818 -0.065647 -0.526209\nvn -0.788309 -0.053531 -0.612946\nvn -0.559303 -0.365992 -0.743794\nvn -0.499264 -0.310320 -0.808973\nvn -0.499264 -0.310320 -0.808973\nvn -0.728983 -0.015168 -0.684364\nvn -0.788309 -0.053531 -0.612946\nvn -0.728983 -0.015168 -0.684364\nvn -0.499264 -0.310320 -0.808973\nvn -0.459104 -0.241989 -0.854789\nvn -0.459104 -0.241989 -0.854789\nvn -0.680958 0.044833 -0.730949\nvn -0.728983 -0.015168 -0.684364\nvn -0.190166 -0.480009 -0.856404\nvn -0.459104 -0.241989 -0.854789\nvn -0.499264 -0.310320 -0.808973\nvn -0.499264 -0.310320 -0.808973\nvn -0.217843 -0.538106 -0.814240\nvn -0.190166 -0.480009 -0.856404\nvn -0.217843 -0.538106 -0.814240\nvn -0.499264 -0.310320 -0.808973\nvn -0.559303 -0.365992 -0.743794\nvn -0.559303 -0.365992 -0.743794\nvn -0.266734 -0.593437 -0.759398\nvn -0.217843 -0.538106 -0.814240\nvn -0.266734 -0.593437 -0.759398\nvn -0.559303 -0.365992 -0.743794\nvn -0.634161 -0.402123 -0.660407\nvn -0.634161 -0.402123 -0.660407\nvn -0.337208 -0.642219 -0.688364\nvn -0.266734 -0.593437 -0.759398\nvn -0.337208 -0.642219 -0.688364\nvn -0.634161 -0.402123 -0.660407\nvn -0.702579 -0.414876 -0.578153\nvn -0.702579 -0.414876 -0.578153\nvn -0.415676 -0.676222 -0.608224\nvn -0.337208 -0.642219 -0.688364\nvn -0.026155 -0.782694 -0.621858\nvn -0.337208 -0.642219 -0.688364\nvn -0.415676 -0.676222 -0.608224\nvn -0.415676 -0.676222 -0.608224\nvn -0.101323 -0.828439 -0.550838\nvn -0.026155 -0.782694 -0.621858\nvn -0.337208 -0.642219 -0.688364\nvn -0.026155 -0.782694 -0.621858\nvn 0.035005 -0.735963 -0.676116\nvn 0.035005 -0.735963 -0.676116\nvn -0.266734 -0.593437 -0.759398\nvn -0.337208 -0.642219 -0.688364\nvn -0.266734 -0.593437 -0.759398\nvn 0.035005 -0.735963 -0.676116\nvn 0.075596 -0.694863 -0.715158\nvn 0.075596 -0.694863 -0.715158\nvn -0.217843 -0.538106 -0.814240\nvn -0.266734 -0.593437 -0.759398\nvn -0.217843 -0.538106 -0.814240\nvn 0.075596 -0.694863 -0.715158\nvn 0.096532 -0.658386 -0.746464\nvn 0.096532 -0.658386 -0.746464\nvn -0.190166 -0.480009 -0.856404\nvn -0.217843 -0.538106 -0.814240\nvn 0.380147 -0.759042 -0.528530\nvn 0.096532 -0.658386 -0.746464\nvn 0.075596 -0.694863 -0.715158\nvn 0.075596 -0.694863 -0.715158\nvn 0.362875 -0.774551 -0.518066\nvn 0.380147 -0.759042 -0.528530\nvn 0.362875 -0.774551 -0.518066\nvn 0.075596 -0.694863 -0.715158\nvn 0.035005 -0.735963 -0.676116\nvn 0.035005 -0.735963 -0.676116\nvn 0.326802 -0.799395 -0.504150\nvn 0.362875 -0.774551 -0.518066\nvn 0.326802 -0.799395 -0.504150\nvn 0.035005 -0.735963 -0.676116\nvn -0.026155 -0.782694 -0.621858\nvn -0.026155 -0.782694 -0.621858\nvn 0.273640 -0.837185 -0.473543\nvn 0.326802 -0.799395 -0.504150\nvn 0.273640 -0.837185 -0.473543\nvn -0.026155 -0.782694 -0.621858\nvn -0.101323 -0.828439 -0.550838\nvn -0.101323 -0.828439 -0.550838\nvn 0.207898 -0.884573 -0.417505\nvn 0.273640 -0.837185 -0.473543\nvn 0.554291 -0.795209 -0.245771\nvn 0.273640 -0.837185 -0.473543\nvn 0.207898 -0.884573 -0.417505\nvn 0.207898 -0.884573 -0.417505\nvn 0.503420 -0.837455 -0.212690\nvn 0.554291 -0.795209 -0.245771\nvn 0.594604 -0.765633 -0.245465\nvn 0.326802 -0.799395 -0.504150\nvn 0.273640 -0.837185 -0.473543\nvn 0.273640 -0.837185 -0.473543\nvn 0.554291 -0.795209 -0.245771\nvn 0.594604 -0.765633 -0.245465\nvn 0.619148 -0.751267 -0.228591\nvn 0.362875 -0.774551 -0.518066\nvn 0.326802 -0.799395 -0.504150\nvn 0.326802 -0.799395 -0.504150\nvn 0.594604 -0.765633 -0.245465\nvn 0.619148 -0.751267 -0.228591\nvn 0.625518 -0.749913 -0.215311\nvn 0.380147 -0.759042 -0.528530\nvn 0.362875 -0.774551 -0.518066\nvn 0.362875 -0.774551 -0.518066\nvn 0.619148 -0.751267 -0.228591\nvn 0.625518 -0.749913 -0.215311\nvn 0.781713 -0.622038 0.044649\nvn 0.888811 -0.315171 0.332690\nvn 0.869714 -0.307484 0.386072\nvn 0.869714 -0.307484 0.386072\nvn 0.796403 -0.599919 0.076421\nvn 0.781713 -0.622038 0.044649\nvn 0.796403 -0.599919 0.076421\nvn 0.869714 -0.307484 0.386072\nvn 0.839305 -0.319626 0.439780\nvn 0.839305 -0.319626 0.439780\nvn 0.795280 -0.594613 0.118172\nvn 0.796403 -0.599919 0.076421\nvn 0.795280 -0.594613 0.118172\nvn 0.839305 -0.319626 0.439780\nvn 0.806323 -0.352194 0.475187\nvn 0.705546 -0.044192 0.707285\nvn 0.806323 -0.352194 0.475187\nvn 0.839305 -0.319626 0.439780\nvn 0.839305 -0.319626 0.439780\nvn 0.746438 0.010041 0.665379\nvn 0.705546 -0.044192 0.707285\nvn 0.746438 0.010041 0.665379\nvn 0.839305 -0.319626 0.439780\nvn 0.869714 -0.307484 0.386072\nvn 0.869714 -0.307484 0.386072\nvn 0.794164 0.045687 0.605984\nvn 0.746438 0.010041 0.665379\nvn 0.794164 0.045687 0.605984\nvn 0.869714 -0.307484 0.386072\nvn 0.888811 -0.315171 0.332690\nvn 0.888811 -0.315171 0.332690\nvn 0.838914 0.059940 0.540954\nvn 0.794164 0.045687 0.605984\nvn 0.600994 0.377041 0.704731\nvn 0.794164 0.045687 0.605984\nvn 0.838914 0.059940 0.540954\nvn 0.794164 0.045687 0.605984\nvn 0.600994 0.377041 0.704731\nvn 0.549105 0.325215 0.769882\nvn 0.549105 0.325215 0.769882\nvn 0.746438 0.010041 0.665379\nvn 0.794164 0.045687 0.605984\nvn 0.746438 0.010041 0.665379\nvn 0.549105 0.325215 0.769882\nvn 0.508169 0.258830 0.821445\nvn 0.508169 0.258830 0.821445\nvn 0.705546 -0.044192 0.707285\nvn 0.746438 0.010041 0.665379\nvn 0.247238 0.515535 0.820425\nvn 0.508169 0.258830 0.821445\nvn 0.549105 0.325215 0.769882\nvn 0.549105 0.325215 0.769882\nvn 0.285477 0.581331 0.761943\nvn 0.247238 0.515535 0.820425\nvn 0.285477 0.581331 0.761943\nvn 0.549105 0.325215 0.769882\nvn 0.600994 0.377041 0.704731\nvn 0.600994 0.377041 0.704731\nvn 0.335716 0.636396 0.694475\nvn 0.285477 0.581331 0.761943\nvn -0.015870 0.753947 0.656743\nvn 0.285477 0.581331 0.761943\nvn 0.335716 0.636396 0.694475\nvn 0.335716 0.636396 0.694475\nvn 0.031129 0.801673 0.596952\nvn -0.015870 0.753947 0.656743\nvn 0.031129 0.801673 0.596952\nvn 0.335716 0.636396 0.694475\nvn 0.392663 0.677318 0.622139\nvn 0.392663 0.677318 0.622139\nvn 0.085973 0.841606 0.533206\nvn 0.031129 0.801673 0.596952\nvn 0.085973 0.841606 0.533206\nvn 0.392663 0.677318 0.622139\nvn 0.445004 0.703443 0.554202\nvn 0.445004 0.703443 0.554202\nvn 0.139532 0.872262 0.468710\nvn 0.085973 0.841606 0.533206\nvn 0.285477 0.581331 0.761943\nvn -0.015870 0.753947 0.656743\nvn -0.049838 0.699775 0.712623\nvn -0.049838 0.699775 0.712623\nvn 0.247238 0.515535 0.820425\nvn 0.285477 0.581331 0.761943\nvn -0.352252 0.788613 0.503992\nvn -0.049838 0.699775 0.712623\nvn -0.015870 0.753947 0.656743\nvn -0.015870 0.753947 0.656743\nvn -0.325888 0.823478 0.464415\nvn -0.352252 0.788613 0.503992\nvn -0.325888 0.823478 0.464415\nvn -0.015870 0.753947 0.656743\nvn 0.031129 0.801673 0.596952\nvn 0.031129 0.801673 0.596952\nvn -0.284897 0.858414 0.426567\nvn -0.325888 0.823478 0.464415\nvn -0.284897 0.858414 0.426567\nvn 0.031129 0.801673 0.596952\nvn 0.085973 0.841606 0.533206\nvn 0.085973 0.841606 0.533206\nvn -0.235179 0.892832 0.384112\nvn -0.284897 0.858414 0.426567\nvn -0.235179 0.892832 0.384112\nvn 0.085973 0.841606 0.533206\nvn 0.139532 0.872262 0.468710\nvn 0.139532 0.872262 0.468710\nvn -0.184611 0.924548 0.333361\nvn -0.235179 0.892832 0.384112\nvn -0.015625 -0.736267 0.676511\nvn -0.106390 -0.727276 0.678049\nvn -0.079471 -0.722780 0.686493\nvn -0.079471 -0.722780 0.686493\nvn 0.000000 -0.735842 0.677154\nvn -0.015625 -0.736267 0.676511\nvn 0.000000 -0.832285 0.554348\nvn -0.015625 -0.736267 0.676511\nvn 0.000000 -0.735842 0.677154\nvn 0.000000 -0.735842 0.677154\nvn -0.090978 -0.841756 0.532137\nvn 0.000000 -0.832285 0.554348\nvn 0.000000 -0.954484 0.298263\nvn 0.000000 -0.832285 0.554348\nvn -0.090978 -0.841756 0.532137\nvn -0.090978 -0.841756 0.532137\nvn -0.200359 -0.927757 0.314838\nvn 0.000000 -0.954484 0.298263\nvn 0.000000 -0.961609 0.274423\nvn 0.000000 -0.954484 0.298263\nvn -0.200359 -0.927757 0.314838\nvn -0.200359 -0.927757 0.314838\nvn -0.099216 -0.960302 0.260722\nvn 0.000000 -0.961609 0.274423\nvn 0.000000 -0.928966 0.370164\nvn 0.000000 -0.961609 0.274423\nvn -0.099216 -0.960302 0.260722\nvn -0.099216 -0.960302 0.260722\nvn 0.000000 -0.947810 0.318836\nvn 0.000000 -0.928966 0.370164\nvn 0.000000 -0.966013 0.258495\nvn 0.000000 -0.928966 0.370164\nvn 0.000000 -0.947810 0.318836\nvn 0.000000 -0.947810 0.318836\nvn 0.000000 -0.966013 0.258495\nvn 0.000000 -0.966013 0.258495\nvn 0.000000 -0.444355 0.895851\nvn 0.000000 -0.444355 0.895851\nvn 0.000000 -0.444355 0.895851\nvn 0.000000 -0.444355 0.895851\nvn 0.000000 -0.444355 0.895851\nvn 0.000000 -0.444355 0.895851\nvn -0.624478 -0.488486 0.609433\nvn -0.624478 -0.488486 0.609433\nvn -0.624478 -0.488486 0.609433\nvn -0.815018 -0.069706 0.575228\nvn -0.820512 0.034975 0.570559\nvn -0.814283 0.081578 0.574707\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.007294 -0.999657 0.025148\nvn -0.015961 -0.999551 0.025361\nvn 0.000000 -0.999688 0.024965\nvn 0.000000 -0.999688 0.024965\nvn 0.000000 -0.999688 0.024965\nvn -0.007294 -0.999657 0.025148\nvn 0.000000 -0.549647 0.835397\nvn 0.000000 -0.549647 0.835397\nvn 0.000000 -0.549647 0.835397\nvn -0.099216 -0.960302 0.260722\nvn -0.200359 -0.927757 0.314838\nvn -0.358106 -0.901186 0.244180\nvn 0.000000 -0.549647 0.835397\nvn 0.000000 -0.549647 0.835397\nvn 0.000000 -0.549647 0.835397\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn 0.000000 -0.999308 0.037202\nvn 0.000000 -0.999308 0.037202\nvn 0.000000 -0.999308 0.037202\nvn 0.000000 -0.999308 0.037202\nvn 0.000000 -0.999308 0.037202\nvn 0.000000 -0.999308 0.037202\nvn -0.076298 -0.214734 0.973688\nvn -0.201457 0.053256 0.978049\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn 0.000000 -0.228190 0.973617\nvn -0.076298 -0.214734 0.973688\nvn -0.076298 -0.214734 0.973688\nvn 0.000000 -0.228190 0.973617\nvn 0.000000 -0.444355 0.895851\nvn 0.000000 -0.444355 0.895851\nvn 0.000000 -0.444355 0.895851\nvn -0.076298 -0.214734 0.973688\nvn 0.000000 -0.444355 0.895851\nvn -0.076298 -0.214734 0.973688\nvn 0.000000 -0.444355 0.895851\nvn 0.000000 -0.444355 0.895851\nvn 0.000000 -0.444355 0.895851\nvn 0.000000 -0.444355 0.895851\nvn 0.000000 -0.966013 0.258495\nvn 0.000000 -0.966013 0.258495\nvn 0.000000 -0.947810 0.318836\nvn -0.367417 0.097172 0.924966\nvn -0.201457 0.053256 0.978049\nvn -0.076298 -0.214734 0.973688\nvn -0.453299 -0.717533 0.528834\nvn -0.453299 -0.717533 0.528834\nvn -0.453299 -0.717533 0.528834\nvn 0.000000 -0.999308 0.037202\nvn 0.000000 -0.999308 0.037202\nvn 0.000000 -0.999308 0.037202\nvn -0.671543 -0.533902 0.513790\nvn -0.700809 -0.406301 0.586333\nvn -0.704509 -0.381614 0.598363\nvn -0.700809 -0.406301 0.586333\nvn -0.671543 -0.533902 0.513790\nvn -0.665015 -0.554566 0.500211\nvn -0.026277 -0.999326 0.025636\nvn -0.015961 -0.999551 0.025361\nvn -0.007294 -0.999657 0.025148\nvn 0.000000 -0.444355 0.895851\nvn 0.000000 -0.228190 0.973617\nvn 0.076298 -0.214734 0.973688\nvn 0.076298 -0.214734 0.973688\nvn 0.000000 -0.228190 0.973617\nvn -0.000000 0.000000 1.000000\nvn 0.076298 -0.214734 0.973688\nvn 0.000000 -0.444355 0.895851\nvn 0.000000 -0.444355 0.895851\nvn -0.000000 0.000000 1.000000\nvn 0.201457 0.053287 0.978047\nvn 0.076298 -0.214734 0.973688\nvn 0.000000 -0.999308 0.037202\nvn 0.000000 -0.999308 0.037202\nvn 0.000000 -0.999308 0.037202\nvn 0.000000 -0.999308 0.037202\nvn 0.000000 -0.999308 0.037202\nvn 0.000000 -0.999308 0.037202\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn 0.000000 -0.549647 0.835397\nvn 0.000000 -0.549647 0.835397\nvn 0.000000 -0.549647 0.835397\nvn 0.000000 -0.549647 0.835397\nvn 0.000000 -0.549647 0.835397\nvn 0.000000 -0.549647 0.835397\nvn 0.007294 -0.999657 0.025148\nvn 0.000000 -0.999688 0.024965\nvn 0.000000 -0.999688 0.024965\nvn 0.000000 -0.999688 0.024965\nvn 0.015962 -0.999551 0.025361\nvn 0.007294 -0.999657 0.025148\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn 0.814283 0.081578 0.574707\nvn 0.820511 0.035006 0.570558\nvn 0.815018 -0.069706 0.575228\nvn 0.624479 -0.488486 0.609433\nvn 0.624479 -0.488486 0.609433\nvn 0.624479 -0.488486 0.609433\nvn 0.007294 -0.999657 0.025148\nvn 0.015962 -0.999551 0.025361\nvn 0.026277 -0.999326 0.025636\nvn 0.015626 -0.736267 0.676511\nvn 0.000000 -0.735842 0.677154\nvn 0.079472 -0.722780 0.686493\nvn 0.079472 -0.722780 0.686493\nvn 0.106391 -0.727276 0.678049\nvn 0.015626 -0.736267 0.676511\nvn 0.000000 -0.735842 0.677154\nvn 0.015626 -0.736267 0.676511\nvn 0.000000 -0.832285 0.554348\nvn 0.000000 -0.832285 0.554348\nvn 0.090979 -0.841756 0.532137\nvn 0.000000 -0.735842 0.677154\nvn 0.665016 -0.554566 0.500211\nvn 0.671543 -0.533901 0.513789\nvn 0.700810 -0.406300 0.586333\nvn 0.704509 -0.381614 0.598363\nvn 0.700810 -0.406300 0.586333\nvn 0.671543 -0.533901 0.513789\nvn 0.090979 -0.841756 0.532137\nvn 0.000000 -0.832285 0.554348\nvn 0.000000 -0.954484 0.298263\nvn 0.000000 -0.954484 0.298263\nvn 0.200360 -0.927757 0.314838\nvn 0.090979 -0.841756 0.532137\nvn 0.090979 -0.841756 0.532137\nvn 0.200360 -0.927757 0.314838\nvn 0.358106 -0.901186 0.244180\nvn 0.200360 -0.927757 0.314838\nvn 0.000000 -0.954484 0.298263\nvn 0.000000 -0.961609 0.274423\nvn 0.000000 -0.961609 0.274423\nvn 0.099217 -0.960302 0.260722\nvn 0.200360 -0.927757 0.314838\nvn 0.099217 -0.960302 0.260722\nvn 0.000000 -0.961609 0.274423\nvn 0.000000 -0.928966 0.370164\nvn 0.000000 -0.928966 0.370164\nvn 0.000000 -0.947810 0.318836\nvn 0.099217 -0.960302 0.260722\nvn 0.000000 -0.947810 0.318836\nvn 0.000000 -0.928966 0.370164\nvn 0.000000 -0.966013 0.258495\nvn 0.000000 -0.966013 0.258495\nvn 0.000000 -0.966013 0.258495\nvn 0.000000 -0.947810 0.318836\nvn 0.000000 -0.444355 0.895851\nvn 0.000000 -0.444355 0.895851\nvn 0.000000 -0.444355 0.895851\nvn 0.000000 -0.444355 0.895851\nvn 0.000000 -0.444355 0.895851\nvn 0.000000 -0.444355 0.895851\nvn 0.358106 -0.901186 0.244180\nvn 0.200360 -0.927757 0.314838\nvn 0.099217 -0.960302 0.260722\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn 0.000000 -0.444355 0.895851\nvn 0.000000 -0.444355 0.895851\nvn 0.000000 -0.444355 0.895851\nvn 0.000000 -0.444355 0.895851\nvn 0.076298 -0.214734 0.973688\nvn 0.000000 -0.444355 0.895851\nvn 0.000000 -0.947810 0.318836\nvn 0.000000 -0.966013 0.258495\nvn 0.000000 -0.966013 0.258495\nvn 0.076298 -0.214734 0.973688\nvn 0.201457 0.053287 0.978047\nvn 0.367417 0.097172 0.924966\nvn 0.000000 -0.999308 0.037202\nvn 0.000000 -0.999308 0.037202\nvn 0.000000 -0.999308 0.037202\nvn 0.453307 -0.717545 0.528812\nvn 0.453307 -0.717545 0.528812\nvn 0.453307 -0.717545 0.528812\nvn 0.000000 -0.861344 0.508023\nvn 0.000000 -0.861344 0.508023\nvn 0.056490 -0.917728 0.393172\nvn 0.059787 -0.972554 0.224865\nvn 0.000000 -0.861344 0.508023\nvn 0.056490 -0.917728 0.393172\nvn 0.056490 -0.917728 0.393172\nvn -0.007050 -0.990980 0.133826\nvn 0.059787 -0.972554 0.224865\nvn -0.013031 -0.978136 0.207560\nvn 0.059787 -0.972554 0.224865\nvn -0.007050 -0.990980 0.133826\nvn -0.007050 -0.990980 0.133826\nvn -0.005798 -0.996124 0.087774\nvn -0.013031 -0.978136 0.207560\nvn 0.012696 -0.982274 0.187019\nvn -0.013031 -0.978136 0.207560\nvn -0.005798 -0.996124 0.087774\nvn -0.005798 -0.996124 0.087774\nvn 0.063876 -0.992013 0.108769\nvn 0.012696 -0.982274 0.187019\nvn 0.000000 -0.984672 0.174417\nvn 0.012696 -0.982274 0.187019\nvn 0.063876 -0.992013 0.108769\nvn -0.375720 -0.798226 0.470818\nvn -0.298078 -0.822179 0.484945\nvn -0.127020 -0.854353 0.503932\nvn -0.127020 -0.854353 0.503932\nvn -0.298078 -0.822179 0.484945\nvn 0.000000 -0.861344 0.508023\nvn 0.107579 -0.992686 -0.054781\nvn 0.063876 -0.992013 0.108769\nvn -0.005798 -0.996124 0.087774\nvn -0.005798 -0.996124 0.087774\nvn 0.000000 -0.999946 -0.010407\nvn 0.107579 -0.992686 -0.054781\nvn -0.005798 -0.996124 0.087774\nvn -0.007050 -0.990980 0.133826\nvn -0.107579 -0.992686 -0.054781\nvn -0.107579 -0.992686 -0.054781\nvn 0.000000 -0.999946 -0.010407\nvn -0.005798 -0.996124 0.087774\nvn 0.137121 -0.990364 -0.019440\nvn 0.107579 -0.992686 -0.054781\nvn 0.000000 -0.999946 -0.010407\nvn 0.000000 -0.999946 -0.010407\nvn 0.000000 -1.000000 0.000000\nvn 0.137121 -0.990364 -0.019440\nvn -0.137120 -0.990364 -0.019440\nvn 0.000000 -1.000000 0.000000\nvn 0.000000 -0.999946 -0.010407\nvn 0.000000 -0.999946 -0.010407\nvn -0.107579 -0.992686 -0.054781\nvn -0.137120 -0.990364 -0.019440\nvn -0.358106 -0.901186 0.244180\nvn -0.200359 -0.927757 0.314838\nvn -0.090978 -0.841756 0.532137\nvn -0.038118 -0.170967 0.984539\nvn 0.026399 -0.220776 0.974967\nvn -0.080693 -0.071965 0.994138\nvn -0.080693 -0.071965 0.994138\nvn -0.155008 -0.001312 0.987912\nvn -0.038118 -0.170967 0.984539\nvn -0.820512 0.034975 0.570559\nvn -0.815018 -0.069706 0.575228\nvn -0.815494 -0.080478 0.573144\nvn -0.815494 -0.080478 0.573144\nvn -0.826150 -0.003174 0.563442\nvn -0.820512 0.034975 0.570559\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn -0.000000 0.000000 1.000000\nvn 0.820511 0.035006 0.570558\nvn 0.826150 -0.003174 0.563442\nvn 0.815494 -0.080478 0.573144\nvn 0.815494 -0.080478 0.573144\nvn 0.815018 -0.069706 0.575228\nvn 0.820511 0.035006 0.570558\nvn 0.080693 -0.071965 0.994138\nvn -0.026399 -0.220776 0.974967\nvn 0.038118 -0.170967 0.984539\nvn 0.038118 -0.170967 0.984539\nvn 0.155008 -0.001312 0.987912\nvn 0.080693 -0.071965 0.994138\nvn 0.026399 -0.220776 0.974967\nvn -0.038118 -0.170967 0.984539\nvn 0.000000 -0.264447 0.964400\nvn 0.000000 -0.264447 0.964400\nvn 0.055393 -0.263503 0.963067\nvn 0.026399 -0.220776 0.974967\nvn 0.000000 -0.962629 0.270825\nvn -0.113714 -0.953693 0.278457\nvn -0.121009 -0.989131 0.083531\nvn 0.026399 -0.220776 0.974967\nvn 0.055393 -0.263503 0.963067\nvn 0.104253 -0.261975 0.959427\nvn -0.121009 -0.989131 0.083531\nvn -0.113714 -0.953693 0.278457\nvn -0.379753 -0.888086 0.259019\nvn -0.121009 -0.989131 0.083531\nvn 0.000000 -0.997606 0.069156\nvn 0.000000 -0.962629 0.270825\nvn 0.000000 -0.264447 0.964400\nvn 0.038118 -0.170967 0.984539\nvn -0.026399 -0.220776 0.974967\nvn -0.026399 -0.220776 0.974967\nvn -0.055392 -0.263504 0.963067\nvn 0.000000 -0.264447 0.964400\nvn 0.000000 -0.962629 0.270825\nvn 0.000000 -0.997606 0.069156\nvn 0.097510 -0.991512 0.086004\nvn 0.097510 -0.991512 0.086004\nvn 0.113715 -0.953693 0.278457\nvn 0.000000 -0.962629 0.270825\nvn 0.379754 -0.888086 0.259019\nvn 0.113715 -0.953693 0.278457\nvn 0.097510 -0.991512 0.086004\nvn -0.104253 -0.261975 0.959427\nvn -0.055392 -0.263504 0.963067\nvn -0.026399 -0.220776 0.974967\nvn 0.016603 -0.801830 0.597321\nvn 0.014711 -0.801839 0.597359\nvn 0.032045 -0.801679 0.596895\nvn 0.097510 -0.991512 0.086004\nvn 0.040651 -0.995586 -0.084598\nvn 0.080632 -0.992482 -0.092076\nvn 0.040651 -0.995586 -0.084598\nvn 0.097510 -0.991512 0.086004\nvn 0.000000 -0.997606 0.069156\nvn 0.176981 -0.787335 0.590577\nvn 0.000000 -0.801773 0.597629\nvn 0.000000 -0.801773 0.597629\nvn 0.000000 -0.801773 0.597629\nvn 0.279313 -0.767042 0.577608\nvn 0.176981 -0.787335 0.590577\nvn 0.000000 -0.997606 0.069156\nvn -0.121009 -0.989131 0.083531\nvn -0.063907 -0.994384 -0.084356\nvn -0.063907 -0.994384 -0.084356\nvn -0.121009 -0.989131 0.083531\nvn -0.162787 -0.982430 -0.091282\nvn 0.176981 -0.787335 0.590577\nvn 0.279313 -0.767042 0.577608\nvn 0.468019 -0.703783 0.534460\nvn -0.063907 -0.994384 -0.084356\nvn 0.000000 -0.997612 -0.069065\nvn 0.000000 -0.997606 0.069156\nvn 0.000000 -0.997606 0.069156\nvn 0.000000 -0.997612 -0.069065\nvn 0.040651 -0.995586 -0.084598\nvn 0.014711 -0.801839 0.597359\nvn 0.016603 -0.801830 0.597321\nvn 0.000000 -0.801773 0.597629\nvn 0.000000 -0.801773 0.597629\nvn 0.000000 -0.801773 0.597629\nvn 0.014711 -0.801839 0.597359\ns off\ng helmet\nf 8675/3657/1 8677/827/2 2/5144/3\nf 2/5144/4 4/89/5 8675/3657/6\nf 4/89/7 2/5144/8 5/3658/9\nf 5/3658/10 6/3254/11 4/89/12\nf 7/1569/13 6/3254/14 5/3658/15\nf 5/3658/16 8/428/17 7/1569/18\nf 7/1569/19 8/428/20 9/2469/21\nf 9/2469/22 10/3899/23 7/1569/24\nf 11/4030/25 10/3899/26 9/2469/27\nf 9/2469/28 12/3117/29 11/4030/30\nf 8786/1697/31 8675/3657/32 4/89/33\nf 8676/6554/34 13/6555/35 14/2920/36\nf 14/2920/37 8812/375/38 8676/6556/39\nf 16/1939/40 14/2920/41 13/6557/42\nf 13/6558/43 8889/6302/44 16/1939/45\nf 14/2920/46 16/1939/47 370/5240/48\nf 370/5240/49 9104/4810/50 14/2920/51\nf 8812/375/52 14/2920/53 9104/4810/54\nf 9104/4810/55 8817/432/56 8812/375/57\nf 20/6476/58 16/1939/59 8889/6302/60\nf 370/5240/61 16/1939/62 20/6476/63\nf 8889/6302/64 21/2319/65 20/6476/66\nf 20/6476/67 22/3459/68 370/5240/69\nf 17/6559/70 8786/1697/71 8828/3078/72\nf 8828/3078/73 24/2442/74 17/6560/75\nf 8774/6561/76 17/6562/77 24/2442/78\nf 4/89/79 8828/3078/80 8786/1697/81\nf 9043/6563/82 23/6564/83 25/374/84\nf 25/374/85 26/1008/86 9043/6565/87\nf 23/6566/88 4/89/89 6/3254/90\nf 6/3254/91 25/374/92 23/6567/93\nf 25/374/94 6/3254/95 7/1569/96\nf 7/1569/97 27/6481/98 25/374/99\nf 26/1008/100 25/374/101 27/6481/102\nf 27/6481/103 28/666/104 26/1008/105\nf 28/666/106 27/6481/107 29/4952/108\nf 29/4952/109 30/6289/110 28/666/111\nf 27/6481/112 7/1569/113 10/3899/114\nf 10/3899/115 29/4952/116 27/6481/117\nf 29/4952/118 10/3899/119 11/4030/120\nf 11/4030/121 31/4403/122 29/4952/123\nf 30/6289/124 29/4952/125 31/4403/126\nf 31/4403/127 32/828/128 30/6289/129\nf 9044/310/130 9043/6568/131 26/1008/132\nf 24/2442/133 33/6569/134 8774/6570/135\nf 8775/5014/136 8774/6571/137 33/6572/138\nf 33/6573/139 9449/6/140 8775/5014/141\nf 36/5015/142 8775/5014/143 9449/6/144\nf 9449/6/145 9463/489/146 36/5015/147\nf 37/6574/148 35/6575/149 38/3904/150\nf 38/3904/151 39/4420/152 37/6576/153\nf 40/4550/154 39/4420/155 38/3904/156\nf 38/3904/157 41/6464/158 40/4550/159\nf 40/4550/160 41/6464/161 42/1687/162\nf 42/1687/163 43/3413/164 40/4550/165\nf 44/5247/166 43/3413/167 42/1687/168\nf 42/1687/169 45/3456/170 44/5247/171\nf 46/2437/172 36/5015/173 9463/489/174\nf 9469/6577/175 9470/6578/176 47/192/177\nf 47/192/178 48/5646/179 9469/6579/180\nf 34/6580/181 9469/6581/182 48/5646/183\nf 49/4057/184 48/5646/185 47/192/186\nf 47/192/187 50/2194/188 49/4057/189\nf 9463/489/190 51/5333/191 46/2437/192\nf 9398/6582/193 37/6583/194 39/4420/195\nf 46/2437/196 51/5333/197 9399/2393/198\nf 9399/2393/199 53/3651/200 46/2437/201\nf 52/6584/202 9398/6585/203 54/2191/204\nf 39/4420/205 54/2191/206 9398/6586/207\nf 54/2191/208 55/4205/209 52/6587/210\nf 56/705/211 55/4205/212 54/2191/213\nf 54/2191/214 57/5185/215 56/705/216\nf 56/705/217 57/5185/218 58/2837/219\nf 43/3413/220 58/2837/221 57/5185/222\nf 58/2837/223 59/3853/224 56/705/225\nf 60/5949/226 59/3853/227 58/2837/228\nf 58/2837/229 61/234/230 60/5949/231\nf 57/5185/232 54/2191/233 39/4420/234\nf 39/4420/235 40/4550/236 57/5185/237\nf 57/5185/238 40/4550/239 43/3413/240\nf 61/234/241 58/2837/242 43/3413/243\nf 43/3413/244 44/5247/245 61/234/246\nf 62/3/247 50/2194/248 63/3856/249\nf 63/3856/250 64/123/251 62/3/252\nf 62/3/253 64/123/254 12420/1693/255\nf 12420/1693/256 8700/5394/257 62/3/258\nf 66/3734/259 62/3/260 8700/5394/261\nf 8700/5394/262 8699/3978/263 66/3734/264\nf 67/6100/265 66/3734/266 8699/3978/267\nf 8699/3978/268 363/617/269 67/6100/270\nf 67/6100/271 363/617/272 10107/3041/273\nf 10107/3041/274 69/6502/275 67/6100/276\nf 70/5395/277 67/6100/278 69/6502/279\nf 69/6502/280 22/3459/281 70/5395/282\nf 69/6502/283 10107/3041/284 10108/5476/285\nf 22/3459/286 69/6502/287 10108/5476/288\nf 67/6100/289 70/5395/290 49/4057/291\nf 49/4057/292 66/3734/293 67/6100/294\nf 49/4057/295 50/2194/296 62/3/297\nf 62/3/298 66/3734/299 49/4057/300\nf 63/3856/301 50/2194/302 47/192/303\nf 47/192/304 72/6503/305 63/3856/306\nf 72/6503/307 47/192/308 9470/6588/309\nf 9470/6589/310 9511/6590/311 72/6503/312\nf 49/4057/313 70/5395/314 73/1711/315\nf 73/1711/316 48/5646/317 49/4057/318\nf 48/5646/319 73/1711/320 34/6591/321\nf 21/2319/322 34/6592/323 73/1711/324\nf 73/1711/325 20/6476/326 21/2319/327\nf 70/5395/328 22/3459/329 20/6476/330\nf 20/6476/331 73/1711/332 70/5395/333\nf 10108/5476/334 370/5240/335 22/3459/336\nf 74/2195/337 11399/4328/338 11398/946/339\nf 11398/946/340 75/4663/341 74/2195/342\nf 76/6505/343 75/4663/344 11398/946/345\nf 11398/946/346 12905/1627/347 76/6505/348\nf 76/6505/349 12905/1627/350 11356/3335/351\nf 11356/3335/352 78/1074/353 76/6505/354\nf 79/2919/355 78/1074/356 11356/3335/357\nf 11356/3335/358 11357/1746/359 79/2919/360\nf 79/2919/361 11357/1746/362 10224/1947/363\nf 10224/1947/364 81/5826/365 79/2919/366\nf 82/405/367 81/5826/368 10224/1947/369\nf 10224/1947/370 10225/4096/371 82/405/372\nf 82/405/373 10225/4096/374 9425/5657/375\nf 9425/5657/376 3/6593/377 82/405/378\nf 85/5705/379 74/2195/380 75/4663/381\nf 75/4663/382 86/1662/383 85/5705/384\nf 75/4663/385 76/6505/386 87/933/387\nf 87/933/388 76/6505/389 78/1074/390\nf 87/933/391 86/1662/392 75/4663/393\nf 78/1074/394 88/873/395 87/933/396\nf 78/1074/397 79/2919/398 89/5349/399\nf 89/5349/400 88/873/401 78/1074/402\nf 89/5349/403 79/2919/404 81/5826/405\nf 81/5826/406 90/1786/407 89/5349/408\nf 81/5826/409 82/405/410 91/1710/411\nf 91/1710/412 90/1786/413 81/5826/414\nf 91/1710/415 82/405/416 3/6594/417\nf 3/6595/418 1/6596/419 91/1710/420\nf 92/3735/421 85/5705/422 86/1662/423\nf 86/1662/424 93/3941/425 92/3735/426\nf 93/3941/427 86/1662/428 87/933/429\nf 94/1862/430 92/3735/431 93/3941/432\nf 93/3941/433 95/5609/434 94/1862/435\nf 96/5553/436 94/1862/437 95/5609/438\nf 95/5609/439 97/3330/440 96/5553/441\nf 96/5553/442 97/3330/443 98/3923/444\nf 98/3923/445 99/169/446 96/5553/447\nf 97/3330/448 95/5609/449 100/5118/450\nf 100/5118/451 101/4391/452 97/3330/453\nf 98/3923/454 97/3330/455 101/4391/456\nf 101/4391/457 102/5331/458 98/3923/459\nf 102/5331/460 101/4391/461 103/1839/462\nf 103/1839/463 104/2667/464 102/5331/465\nf 101/4391/466 100/5118/467 105/6101/468\nf 105/6101/469 103/1839/470 101/4391/471\nf 103/1839/472 105/6101/473 106/5503/474\nf 106/5503/475 107/2177/476 103/1839/477\nf 104/2667/478 103/1839/479 107/2177/480\nf 107/2177/481 9638/5722/482 104/2667/483\nf 108/6597/484 107/2177/485 109/1979/486\nf 109/1979/487 110/3312/488 108/6598/489\nf 107/2177/490 106/5503/491 111/5743/492\nf 111/5743/493 109/1979/494 107/2177/495\nf 109/1979/496 111/5743/497 112/5727/498\nf 112/5727/499 113/4286/500 109/1979/501\nf 109/1979/502 113/4286/503 110/3312/504\nf 113/4286/505 371/734/506 110/3312/507\nf 371/734/508 372/1197/509 110/3312/510\nf 114/1681/511 105/6101/512 100/5118/513\nf 100/5118/514 115/5986/515 114/1681/516\nf 115/5986/517 100/5118/518 95/5609/519\nf 95/5609/520 93/3941/521 115/5986/522\nf 87/933/523 115/5986/524 93/3941/525\nf 115/5986/526 87/933/527 88/873/528\nf 88/873/529 114/1681/530 115/5986/531\nf 114/1681/532 88/873/533 89/5349/534\nf 89/5349/535 116/1045/536 114/1681/537\nf 105/6101/538 114/1681/539 116/1045/540\nf 116/1045/541 106/5503/542 105/6101/543\nf 106/5503/544 116/1045/545 117/1982/546\nf 117/1982/547 111/5743/548 106/5503/549\nf 116/1045/550 89/5349/551 90/1786/552\nf 90/1786/553 117/1982/554 116/1045/555\nf 117/1982/556 90/1786/557 91/1710/558\nf 91/1710/559 118/56/560 117/1982/561\nf 111/5743/562 117/1982/563 118/56/564\nf 118/56/565 112/5727/566 111/5743/567\nf 112/5727/568 118/56/569 15/6599/570\nf 15/6600/571 8818/6601/572 112/5727/573\nf 1/6602/574 15/6603/575 118/56/576\nf 118/56/577 91/1710/578 1/6604/579\nf 112/5727/580 8818/6605/581 9417/1895/582\nf 9417/1895/583 113/4286/584 112/5727/585\nf 371/734/586 113/4286/587 9417/1895/588\nf 120/13/589 122/5030/590 121/1582/591\nf 121/1582/592 123/4148/593 120/13/594\nf 124/1434/595 123/4148/596 121/1582/597\nf 121/1582/598 125/604/599 124/1434/600\nf 124/1434/601 125/604/602 126/5309/603\nf 126/5309/604 127/3302/605 124/1434/606\nf 128/1388/607 127/3302/608 126/5309/609\nf 126/5309/610 129/5888/611 128/1388/612\nf 128/1388/613 129/5888/614 130/3677/615\nf 130/3677/616 131/686/617 128/1388/618\nf 132/6378/619 131/686/620 130/3677/621\nf 130/3677/622 133/3288/623 132/6378/624\nf 132/6378/625 133/3288/626 134/1249/627\nf 134/1249/628 11432/4873/629 132/6378/630\nf 135/6606/631 11541/6607/632 136/1765/633\nf 136/1765/634 137/6511/635 135/6608/636\nf 11453/6609/637 11306/6610/638 138/747/639\nf 138/747/640 139/3194/641 11453/6611/642\nf 140/148/643 11482/6612/644 138/747/645\nf 138/747/646 11421/1762/647 140/148/648\nf 142/4964/649 129/5888/650 126/5309/651\nf 126/5309/652 143/1465/653 142/4964/654\nf 143/1465/655 126/5309/656 125/604/657\nf 125/604/658 144/1896/659 143/1465/660\nf 144/1896/661 125/604/662 121/1582/663\nf 121/1582/664 145/5583/665 144/1896/666\nf 145/5583/667 121/1582/668 122/5030/669\nf 122/5030/670 146/4298/671 145/5583/672\nf 147/3998/673 145/5583/674 146/4298/675\nf 146/4298/676 148/4333/677 147/3998/678\nf 149/1814/679 144/1896/680 145/5583/681\nf 145/5583/682 147/3998/683 149/1814/684\nf 144/1896/685 149/1814/686 150/3953/687\nf 150/3953/688 143/1465/689 144/1896/690\nf 151/4917/691 142/4964/692 143/1465/693\nf 143/1465/694 150/3953/695 151/4917/696\nf 142/4964/697 151/4917/698 152/159/699\nf 152/159/700 153/3374/701 142/4964/702\nf 129/5888/703 142/4964/704 153/3374/705\nf 153/3374/706 130/3677/707 129/5888/708\nf 153/3374/709 152/159/710 154/4194/711\nf 154/4194/712 155/3472/713 153/3374/714\nf 130/3677/715 153/3374/716 155/3472/717\nf 155/3472/718 133/3288/719 130/3677/720\nf 133/3288/721 155/3472/722 156/5863/723\nf 156/5863/724 134/1249/725 133/3288/726\nf 11541/6613/727 156/5863/728 157/3068/729\nf 157/3068/730 136/1765/731 11541/6614/732\nf 158/4068/733 157/3068/734 156/5863/735\nf 156/5863/736 159/4591/737 158/4068/738\nf 159/4591/739 156/5863/740 155/3472/741\nf 155/3472/742 154/4194/743 159/4591/744\nf 159/4591/745 154/4194/746 152/159/747\nf 11306/6615/748 157/3068/749 160/2547/750\nf 160/2547/751 138/747/752 11306/6616/753\nf 157/3068/754 158/4068/755 161/4263/756\nf 161/4263/757 160/2547/758 157/3068/759\nf 160/2547/760 161/4263/761 162/393/762\nf 162/393/763 163/1991/764 160/2547/765\nf 138/747/766 160/2547/767 163/1991/768\nf 163/1991/769 11421/1762/770 138/747/771\nf 158/4068/772 159/4591/773 164/1612/774\nf 164/1612/775 161/4263/776 158/4068/777\nf 162/393/778 161/4263/779 164/1612/780\nf 164/1612/781 165/5625/782 162/393/783\nf 162/393/784 165/5625/785 166/5746/786\nf 166/5746/787 167/6552/788 162/393/789\nf 163/1991/790 162/393/791 167/6552/792\nf 168/1259/793 167/6552/794 166/5746/795\nf 166/5746/796 169/68/797 168/1259/798\nf 141/6617/799 163/1991/800 170/5172/801\nf 167/6552/802 170/5172/803 163/1991/804\nf 170/5172/805 167/6552/806 168/1259/807\nf 170/5172/808 171/1169/809 141/6618/810\nf 140/148/811 141/6619/812 171/1169/813\nf 171/1169/814 172/2148/815 140/148/816\nf 308/5914/817 140/148/818 172/2148/819\nf 11482/6620/820 140/148/821 308/5914/822\nf 308/5914/823 11483/2132/824 11482/6621/825\nf 139/3194/826 11484/6622/827 11454/6142/828\nf 11454/6142/829 11453/6623/830 139/3194/831\nf 137/6511/832 11455/6624/833 11433/3715/834\nf 11433/3715/835 135/6625/836 137/6511/837\nf 132/6378/838 11432/4873/839 11434/6626/840\nf 11434/6627/841 11687/423/842 132/6378/843\nf 131/686/844 132/6378/845 11687/423/846\nf 11687/423/847 11739/3303/848 131/686/849\nf 131/686/850 11739/3303/851 11749/3385/852\nf 11749/3385/853 128/1388/854 131/686/855\nf 127/3302/856 128/1388/857 11749/3385/858\nf 11749/3385/859 9937/418/860 127/3302/861\nf 127/3302/862 9937/418/863 9815/4886/864\nf 9815/4886/865 124/1434/866 127/3302/867\nf 123/4148/868 124/1434/869 9815/4886/870\nf 9815/4886/871 9814/5310/872 123/4148/873\nf 120/13/874 123/4148/875 9814/5310/876\nf 9814/5310/877 298/5712/878 120/13/879\nf 9696/4230/880 10733/3198/881 233/2714/882\nf 233/2714/883 274/5348/884 9696/4230/885\nf 10734/4064/886 10733/3198/887 9696/4230/888\nf 9696/4230/889 9695/348/890 10734/4064/891\nf 10734/4064/892 9695/348/893 10451/5547/894\nf 10451/5547/895 234/4426/896 10734/4064/897\nf 181/6547/898 234/4426/899 10451/5547/900\nf 10451/5547/901 210/289/902 181/6547/903\nf 181/6547/904 210/289/905 212/1708/906\nf 212/1708/907 237/448/908 181/6547/909\nf 11112/5356/910 237/448/911 212/1708/912\nf 212/1708/913 11120/3281/914 11112/5356/915\nf 11112/5356/916 11120/3281/917 11121/904/918\nf 11121/904/919 11113/5332/920 11112/5356/921\nf 11080/3304/922 11113/5332/923 11121/904/924\nf 11121/904/925 11094/2447/926 11080/3304/927\nf 11080/3304/928 11094/2447/929 11095/3082/930\nf 11095/3082/931 11055/4149/932 11080/3304/933\nf 11056/2926/934 11055/4149/935 11095/3082/936\nf 11095/3082/937 218/1204/938 11056/2926/939\nf 8677/603/940 84/395/941 11081/5402/942\nf 11081/5402/943 2/5144/944 8677/603/945\nf 2/5144/946 11081/5402/947 10131/1435/948\nf 10131/1435/949 5/3658/950 2/5144/951\nf 8/428/952 5/3658/953 10132/6628/954\nf 10132/6629/955 11137/3603/956 8/428/957\nf 8/428/958 11137/3603/959 296/1690/960\nf 296/1690/961 9/2469/962 8/428/963\nf 12/3117/964 9/2469/965 296/1690/966\nf 296/1690/967 12585/4539/968 12/3117/969\nf 172/2148/970 12885/763/971 308/5914/972\nf 311/3842/973 12885/763/974 172/2148/975\nf 172/2148/976 196/2512/977 311/3842/978\nf 196/2512/979 172/2148/980 171/1169/981\nf 171/1169/982 197/1198/983 196/2512/984\nf 198/69/985 197/1198/986 171/1169/987\nf 171/1169/988 170/5172/989 198/69/990\nf 168/1259/991 198/69/992 170/5172/993\nf 199/4877/994 200/4264/995 204/758/996\nf 204/758/997 201/4904/998 199/4877/999\nf 10532/6630/1000 10533/6631/1001 202/1274/1002\nf 202/1274/1003 10533/6632/1004 10060/754/1005\nf 203/6633/1006 201/4904/1007 204/6083/1008\nf 204/6083/1009 205/703/1010 203/6634/1011\nf 10060/754/1012 10773/243/1013 202/1274/1014\nf 9739/6635/1015 206/6636/1016 207/4274/1017\nf 208/4956/1018 207/4274/1019 206/6637/1020\nf 206/6638/1021 209/5779/1022 208/4956/1023\nf 10484/6639/1024 10773/243/1025 10060/754/1026\nf 10452/3792/1027 208/4956/1028 209/5779/1029\nf 209/5779/1030 211/5055/1031 10452/3792/1032\nf 10486/6467/1033 10452/3792/1034 211/5055/1035\nf 211/5055/1036 213/4107/1037 10486/6467/1038\nf 183/2668/1039 10486/6467/1040 213/4107/1041\nf 213/4107/1042 10424/412/1043 183/2668/1044\nf 184/5861/1045 183/2668/1046 10424/412/1047\nf 10424/412/1048 10425/1350/1049 184/5861/1050\nf 187/6357/1051 184/5861/1052 10425/1350/1053\nf 10425/1350/1054 10444/6453/1055 187/6357/1056\nf 188/759/1057 187/6357/1058 10444/6453/1059\nf 10444/6453/1060 217/5229/1061 188/759/1062\nf 13099/4582/1063 188/759/1064 217/5229/1065\nf 217/5229/1066 10515/855/1067 13099/4582/1068\nf 220/4908/1069 219/6640/1070 10448/6641/1071\nf 10448/6642/1072 221/424/1073 220/4908/1074\nf 10359/6643/1075 10360/6644/1076 222/504/1077\nf 222/504/1078 265/1949/1079 10359/6645/1080\nf 10448/6646/1081 216/6647/1082 10292/5100/1083\nf 10292/5100/1084 221/424/1085 10448/6648/1086\nf 10292/5100/1087 216/6649/1088 215/6650/1089\nf 222/3538/1090 10360/6651/1091 223/6652/1092\nf 223/6653/1093 262/1925/1094 222/3538/1095\nf 215/6654/1096 224/4836/1097 10292/5100/1098\nf 223/6655/1099 10274/6656/1100 225/2414/1101\nf 225/2414/1102 262/4575/1103 223/6657/1104\nf 225/265/1105 10274/6658/1106 10275/1694/1107\nf 10275/1694/1108 259/233/1109 225/265/1110\nf 226/6659/1111 224/4836/1112 215/6660/1113\nf 215/6661/1114 214/6662/1115 226/6663/1116\nf 226/6664/1117 214/6665/1118 10461/6666/1119\nf 10461/6667/1120 10569/2959/1121 226/6668/1122\nf 10275/1694/1123 227/6669/1124 228/5894/1125\nf 228/5894/1126 259/2334/1127 10275/1694/1128\nf 10570/1513/1129 10569/2959/1130 10461/6670/1131\nf 228/4415/1132 227/6671/1133 229/6672/1134\nf 229/6673/1135 256/4493/1136 228/4415/1137\nf 10461/6674/1138 10485/6675/1139 10570/1513/1140\nf 10570/1513/1141 10485/6676/1142 10484/6677/1143\nf 10484/6678/1144 10061/2871/1145 10570/1513/1146\nf 229/6679/1147 230/6680/1148 255/3098/1149\nf 255/3098/1150 256/460/1151 229/6681/1152\nf 10060/754/1153 10061/2871/1154 10484/6682/1155\nf 255/4416/1156 230/6683/1157 203/6684/1158\nf 203/6685/1159 205/4308/1160 255/4416/1161\nf 179/2092/1162 180/272/1163 10802/1691/1164\nf 10802/1691/1165 10803/199/1166 179/2092/1167\nf 13148/3604/1168 179/2092/1169 10803/199/1170\nf 10803/199/1171 244/5732/1172 13148/3604/1173\nf 246/2903/1174 10802/1691/1175 180/272/1176\nf 180/272/1177 13153/1902/1178 246/2903/1179\nf 10968/52/1180 246/2903/1181 13153/1902/1182\nf 13153/1902/1183 13203/1316/1184 10968/52/1185\nf 10935/4715/1186 10968/52/1187 13203/1316/1188\nf 13203/1316/1189 13202/3014/1190 10935/4715/1191\nf 10936/2594/1192 10935/4715/1193 13202/3014/1194\nf 13202/3014/1195 182/1260/1196 10936/2594/1197\nf 10947/1512/1198 10936/2594/1199 182/1260/1200\nf 182/1260/1201 185/3908/1202 10947/1512/1203\nf 250/3464/1204 10947/1512/1205 185/3908/1206\nf 185/3908/1207 186/2218/1208 250/3464/1209\nf 10878/2178/1210 250/3464/1211 186/2218/1212\nf 186/2218/1213 189/200/1214 10878/2178/1215\nf 10879/4837/1216 10878/2178/1217 189/200/1218\nf 189/200/1219 190/1692/1220 10879/4837/1221\nf 232/3791/1222 243/2311/1223 242/5465/1224\nf 242/5465/1225 13158/716/1226 232/3791/1227\nf 245/4307/1228 243/2311/1229 232/3791/1230\nf 232/3791/1231 231/1747/1232 245/4307/1233\nf 245/4307/1234 231/1747/1235 13154/2689/1236\nf 13154/2689/1237 247/6369/1238 245/4307/1239\nf 248/335/1240 247/6369/1241 13154/2689/1242\nf 13154/2689/1243 235/222/1244 248/335/1245\nf 248/335/1246 235/222/1247 236/1050/1248\nf 236/1050/1249 249/5755/1250 248/335/1251\nf 159/4591/1252 249/5755/1253 236/1050/1254\nf 236/1050/1255 238/122/1256 159/4591/1257\nf 159/4591/1258 238/122/1259 239/2373/1260\nf 239/2373/1261 164/1612/1262 159/4591/1263\nf 165/5625/1264 164/1612/1265 239/2373/1266\nf 239/2373/1267 13193/2111/1268 165/5625/1269\nf 165/5625/1270 13193/2111/1271 240/4119/1272\nf 240/4119/1273 166/5746/1274 165/5625/1275\nf 169/68/1276 166/5746/1277 240/4119/1278\nf 240/4119/1279 241/775/1280 169/68/1281\nf 247/6369/1282 248/335/1283 151/4917/1284\nf 151/4917/1285 248/335/1286 249/5755/1287\nf 151/4917/1288 150/3953/1289 247/6369/1290\nf 249/5755/1291 152/159/1292 151/4917/1293\nf 152/159/1294 249/5755/1295 159/4591/1296\nf 247/6369/1297 150/3953/1298 149/1814/1299\nf 149/1814/1300 245/4307/1301 247/6369/1302\nf 243/2311/1303 245/4307/1304 149/1814/1305\nf 149/1814/1306 147/3998/1307 243/2311/1308\nf 243/2311/1309 147/3998/1310 148/4333/1311\nf 148/4333/1312 242/5465/1313 243/2311/1314\nf 251/5193/1315 204/5097/1316 200/5620/1317\nf 200/5620/1318 252/420/1319 251/5193/1320\nf 205/158/1321 204/5097/1322 251/5193/1323\nf 251/5193/1324 253/328/1325 205/158/1326\nf 205/158/1327 253/328/1328 254/1086/1329\nf 254/1086/1330 255/1888/1331 205/158/1332\nf 256/3914/1333 255/1888/1334 254/1086/1335\nf 254/1086/1336 11536/6462/1337 256/3914/1338\nf 256/3914/1339 257/6686/1340 258/5953/1341\nf 258/5953/1342 228/5527/1343 256/3914/1344\nf 259/5343/1345 228/5527/1346 258/5953/1347\nf 258/5953/1348 260/969/1349 259/5343/1350\nf 259/5343/1351 260/969/1352 261/4114/1353\nf 261/4114/1354 225/3618/1355 259/5343/1356\nf 262/5457/1357 225/3618/1358 261/4114/1359\nf 261/4114/1360 263/4849/1361 262/5457/1362\nf 262/5457/1363 263/4849/1364 264/4829/1365\nf 264/4829/1366 222/4590/1367 262/5457/1368\nf 265/3915/1369 222/4590/1370 264/4829/1371\nf 264/4829/1372 266/2693/1373 265/3915/1374\nf 11536/6462/1375 254/1086/1376 267/1032/1377\nf 267/1032/1378 268/1722/1379 11536/6462/1380\nf 269/4802/1381 267/1032/1382 254/1086/1383\nf 254/1086/1384 253/328/1385 269/4802/1386\nf 270/4803/1387 269/4802/1388 253/328/1389\nf 253/328/1390 251/5193/1391 270/4803/1392\nf 271/4804/1393 270/4803/1394 251/5193/1395\nf 251/5193/1396 252/420/1397 271/4804/1398\nf 207/4274/1399 272/3339/1400 9739/6687/1401\nf 273/2992/1402 9739/6688/1403 272/3339/1404\nf 272/3339/1405 11972/5518/1406 273/2992/1407\nf 202/1274/1408 9740/6689/1409 10532/6690/1410\nf 11903/4178/1411 13279/3635/1412 292/3644/1413\nf 292/3644/1414 299/5782/1415 11903/4178/1416\nf 290/1950/1417 13279/3635/1418 11903/4178/1419\nf 11903/4178/1420 11475/3063/1421 290/1950/1422\nf 290/1950/1423 11475/3063/1424 11476/6112/1425\nf 11476/6112/1426 11457/6048/1427 290/1950/1428\nf 11420/3414/1429 11457/6048/1430 11476/6112/1431\nf 11476/6112/1432 9898/3645/1433 11420/3414/1434\nf 11420/3414/1435 9898/3645/1436 9885/2750/1437\nf 9885/2750/1438 11358/2720/1439 11420/3414/1440\nf 11327/334/1441 11358/2720/1442 9885/2750/1443\nf 9885/2750/1444 9886/4422/1445 11327/334/1446\nf 11327/334/1447 9886/4422/1448 11303/1174/1449\nf 11303/1174/1450 11262/1994/1451 11327/334/1452\nf 11261/6691/1453 283/6692/1454 10134/3079/1455\nf 10134/3079/1456 11240/5220/1457 11261/6693/1458\nf 11239/6694/1459 10133/6695/1460 10135/512/1461\nf 10135/512/1462 11241/1998/1463 11239/6696/1464\nf 11310/5680/1465 11242/6697/1466 10136/6698/1467\nf 10136/6699/1468 12888/5542/1469 11310/5680/1470\nf 11310/5680/1471 12888/5542/1472 309/3612/1473\nf 309/3612/1474 297/4275/1475 11310/5680/1476\nf 12794/1403/1477 297/4275/1478 309/3612/1479\nf 309/3612/1480 310/3590/1481 12794/1403/1482\nf 276/6700/1483 13280/6701/1484 77/360/1485\nf 77/360/1486 291/5161/1487 276/6702/1488\nf 13281/6703/1489 276/6704/1490 291/5161/1491\nf 291/5161/1492 293/5687/1493 13281/6705/1494\nf 294/3793/1495 77/360/1496 13280/6706/1497\nf 13280/6707/1498 279/6708/1499 294/3793/1500\nf 295/2915/1501 294/3793/1502 279/6709/1503\nf 279/6710/1504 280/6711/1505 295/2915/1506\nf 80/1631/1507 295/2915/1508 280/6712/1509\nf 280/6713/1510 281/6714/1511 80/1631/1512\nf 83/4103/1513 80/1631/1514 281/6715/1515\nf 281/6716/1516 282/6717/1517 83/4103/1518\nf 83/4103/1519 282/6718/1520 284/6719/1521\nf 284/6720/1522 9426/1897/1523 83/4103/1524\nf 9426/1897/1525 284/6721/1526 285/6722/1527\nf 285/6723/1528 191/776/1529 9426/1897/1530\nf 192/3167/1531 191/776/1532 285/6724/1533\nf 285/6725/1534 286/6726/1535 192/3167/1536\nf 193/5342/1537 192/3167/1538 286/6727/1539\nf 286/6728/1540 287/6729/1541 193/5342/1542\nf 12584/4699/1543 193/5342/1544 287/6730/1545\nf 287/6731/1546 12593/6732/1547 12584/4699/1548\nf 194/3762/1549 12584/4699/1550 12593/6733/1551\nf 12593/6734/1552 289/6735/1553 194/3762/1554\nf 275/6736/1555 12815/6737/1556 9847/4265/1557\nf 9847/4265/1558 300/1745/1559 275/6738/1560\nf 277/6739/1561 275/6740/1562 300/1745/1563\nf 300/1745/1564 301/3247/1565 277/6741/1566\nf 278/6742/1567 277/6743/1568 301/3247/1569\nf 301/3247/1570 302/2785/1571 278/6744/1572\nf 303/6745/1573 278/6746/1574 302/2785/1575\nf 302/2785/1576 178/1151/1577 303/6747/1578\nf 304/6748/1579 303/6749/1580 178/1151/1581\nf 178/1151/1582 177/386/1583 304/6750/1584\nf 305/6751/1585 304/6752/1586 177/386/1587\nf 177/386/1588 176/3428/1589 305/6753/1590\nf 11304/6754/1591 305/6755/1592 176/3428/1593\nf 176/3428/1594 175/2305/1595 11304/6756/1596\nf 306/6757/1597 11304/6758/1598 175/2305/1599\nf 175/2305/1600 174/6078/1601 306/6759/1602\nf 307/6760/1603 306/6761/1604 174/6078/1605\nf 174/6078/1606 173/4461/1607 307/6762/1608\nf 288/6763/1609 307/6764/1610 173/4461/1611\nf 173/4461/1612 12884/513/1613 288/6765/1614\nf 10026/6766/1615 288/6767/1616 12884/513/1617\nf 12884/513/1618 195/6098/1619 10026/6768/1620\nf 10027/6769/1621 10026/6770/1622 195/6098/1623\nf 195/6098/1624 12903/2429/1625 10027/6771/1626\nf 312/4430/1627 314/5780/1628 313/1073/1629\nf 313/1073/1630 315/2370/1631 312/4430/1632\nf 316/2596/1633 313/1073/1634 314/5780/1635\nf 314/5780/1636 317/6222/1637 316/2596/1638\nf 313/1073/1639 316/2596/1640 318/1554/1641\nf 318/1554/1642 319/3318/1643 313/1073/1644\nf 315/2370/1645 313/1073/1646 319/3318/1647\nf 319/3318/1648 320/5410/1649 315/2370/1650\nf 320/5410/1651 319/3318/1652 321/5781/1653\nf 321/5781/1654 322/735/1655 320/5410/1656\nf 319/3318/1657 318/1554/1658 323/1099/1659\nf 323/1099/1660 321/5781/1661 319/3318/1662\nf 321/5781/1663 323/1099/1664 10070/284/1665\nf 10070/284/1666 10071/5163/1667 321/5781/1668\nf 322/735/1669 321/5781/1670 10071/5163/1671\nf 10071/5163/1672 326/5805/1673 322/735/1674\nf 326/5805/1675 325/6772/1676 327/83/1677\nf 327/83/1678 328/2616/1679 326/5805/1680\nf 325/6773/1681 324/6774/1682 329/3352/1683\nf 329/3352/1684 327/83/1685 325/6775/1686\nf 327/83/1687 329/3352/1688 9019/1641/1689\nf 9019/1641/1690 9020/1728/1691 327/83/1692\nf 328/2616/1693 327/83/1694 9020/1728/1695\nf 9020/1728/1696 356/1712/1697 328/2616/1698\nf 320/5410/1699 322/735/1700 332/5538/1701\nf 332/5538/1702 333/5589/1703 320/5410/1704\nf 315/2370/1705 320/5410/1706 333/5589/1707\nf 333/5589/1708 334/3343/1709 315/2370/1710\nf 312/4430/1711 315/2370/1712 334/3343/1713\nf 334/3343/1714 335/578/1715 312/4430/1716\nf 334/3343/1717 333/5589/1718 336/6036/1719\nf 336/6036/1720 337/3033/1721 334/3343/1722\nf 335/578/1723 334/3343/1724 337/3033/1725\nf 337/3033/1726 338/574/1727 335/578/1728\nf 339/4653/1729 336/6036/1730 333/5589/1731\nf 333/5589/1732 332/5538/1733 339/4653/1734\nf 340/5426/1735 339/4653/1736 332/5538/1737\nf 332/5538/1738 341/5219/1739 340/5426/1740\nf 341/5219/1741 332/5538/1742 322/735/1743\nf 322/735/1744 326/5805/1745 341/5219/1746\nf 342/6401/1747 341/5219/1748 326/5805/1749\nf 326/5805/1750 328/2616/1751 342/6401/1752\nf 12152/5184/1753 342/6401/1754 328/2616/1755\nf 328/2616/1756 356/1712/1757 12152/5184/1758\nf 342/6401/1759 12152/5184/1760 357/260/1761\nf 357/260/1762 344/5647/1763 342/6401/1764\nf 344/5647/1765 340/5426/1766 341/5219/1767\nf 341/5219/1768 342/6401/1769 344/5647/1770\nf 345/4510/1771 337/3033/1772 336/6036/1773\nf 338/574/1774 337/3033/1775 345/4510/1776\nf 336/6036/1777 346/3670/1778 345/4510/1779\nf 346/3670/1780 336/6036/1781 339/4653/1782\nf 345/4510/1783 347/1383/1784 338/574/1785\nf 348/5369/1786 339/4653/1787 340/5426/1788\nf 339/4653/1789 348/5369/1790 346/3670/1791\nf 340/5426/1792 349/3636/1793 348/5369/1794\nf 349/3636/1795 340/5426/1796 344/5647/1797\nf 350/108/1798 344/5647/1799 357/260/1800\nf 344/5647/1801 350/108/1802 349/3636/1803\nf 357/260/1804 351/5197/1805 350/108/1806\nf 35/6776/1807 9044/310/1808 352/1548/1809\nf 352/1548/1810 38/3904/1811 35/6777/1812\nf 26/1008/1813 352/1548/1814 9044/310/1815\nf 38/3904/1816 352/1548/1817 353/2152/1818\nf 353/2152/1819 352/1548/1820 26/1008/1821\nf 353/2152/1822 41/6464/1823 38/3904/1824\nf 41/6464/1825 353/2152/1826 354/1188/1827\nf 354/1188/1828 42/1687/1829 41/6464/1830\nf 30/6289/1831 354/1188/1832 353/2152/1833\nf 353/2152/1834 28/666/1835 30/6289/1836\nf 26/1008/1837 28/666/1838 353/2152/1839\nf 42/1687/1840 354/1188/1841 355/5443/1842\nf 355/5443/1843 354/1188/1844 30/6289/1845\nf 355/5443/1846 45/3456/1847 42/1687/1848\nf 30/6289/1849 32/828/1850 355/5443/1851\nf 317/6222/1852 99/169/1853 98/3923/1854\nf 98/3923/1855 316/2596/1856 317/6222/1857\nf 316/2596/1858 98/3923/1859 102/5331/1860\nf 102/5331/1861 318/1554/1862 316/2596/1863\nf 318/1554/1864 102/5331/1865 104/2667/1866\nf 104/2667/1867 323/1099/1868 318/1554/1869\nf 323/1099/1870 104/2667/1871 9638/5722/1872\nf 9638/5722/1873 10070/284/1874 323/1099/1875\nf 324/6778/1876 108/6779/1877 110/3312/1878\nf 110/3312/1879 329/3352/1880 324/6780/1881\nf 329/3352/1882 110/3312/1883 372/1197/1884\nf 372/1197/1885 9019/1641/1886 329/3352/1887\nf 12343/300/1888 11401/3892/1889 11400/514/1890\nf 11400/514/1891 343/2416/1892 12343/300/1893\nf 12153/3482/1894 343/2416/1895 11400/514/1896\nf 11400/514/1897 11365/3965/1898 12153/3482/1899\nf 8863/2816/1900 11401/3892/1901 12343/300/1902\nf 12343/300/1903 331/565/1904 8863/2816/1905\nf 8863/2816/1906 331/565/1907 330/2206/1908\nf 330/2206/1909 8864/4341/1910 8863/2816/1911\nf 12153/3482/1912 11365/3965/1913 11495/2153/1914\nf 11495/2153/1915 360/3637/1916 12153/3482/1917\nf 8864/4341/1918 330/2206/1919 361/1953/1920\nf 361/1953/1921 12066/1404/1922 8864/4341/1923\nf 8672/1705/1924 12066/1404/1925 361/1953/1926\nf 361/1953/1927 8816/2099/1928 8672/1705/1929\nf 8674/1926/1930 8672/1705/1931 8816/2099/1932\nf 8816/2099/1933 365/1211/1934 8674/1926/1935\nf 8687/4892/1936 8674/1926/1937 365/1211/1938\nf 365/1211/1939 367/4058/1940 8687/4892/1941\nf 2752/2040/1942 8687/4892/1943 367/4058/1944\nf 360/3637/1945 11495/2153/1946 2752/2040/1947\nf 367/4058/1948 65/5825/1949 2752/2040/1950\nf 68/1601/1951 8816/2099/1952 361/1953/1953\nf 361/1953/1954 368/721/1955 68/1601/1956\nf 368/721/1957 361/1953/1958 330/2206/1959\nf 71/2417/1960 68/1601/1961 368/721/1962\nf 368/721/1963 369/5458/1964 71/2417/1965\nf 12149/526/1966 71/2417/1967 369/5458/1968\nf 369/5458/1969 18/4462/1970 12149/526/1971\nf 119/4060/1972 369/5458/1973 368/721/1974\nf 18/4462/1975 369/5458/1976 119/4060/1977\nf 119/4060/1978 368/721/1979 8833/527/1980\nf 368/721/1981 8834/4049/1982 8833/527/1983\nf 119/4060/1984 19/5371/1985 18/4462/1986\nf 330/2206/1987 8834/4049/1988 368/721/1989\nf 2752/2040/1990 65/5825/1991 373/2087/1992\nf 373/2087/1993 374/1907/1994 2752/2040/1995\nf 2752/2040/1996 374/1907/1997 360/3637/1998\nf 8855/6781/1999 8856/6782/2000 376/6783/2001\nf 376/6784/2002 378/6785/2003 8855/6786/2004\nf 379/6787/2005 378/6788/2006 376/6789/2007\nf 376/6790/2008 380/6791/2009 379/6792/2010\nf 379/6793/2011 380/6794/2012 381/6795/2013\nf 381/6796/2014 382/6797/2015 379/6798/2016\nf 383/6799/2017 382/6800/2018 381/6801/2019\nf 381/6802/2020 384/6803/2021 383/6804/2022\nf 385/6805/2023 383/6806/2024 384/6807/2025\nf 384/6808/2026 386/6809/2027 385/6810/2028\nf 376/6811/2029 8856/6812/2030 11929/6813/2031\nf 388/6814/2032 387/6815/2033 377/6816/2034\nf 377/6817/2035 389/6818/2036 388/6819/2037\nf 387/6820/2038 388/6821/2039 390/6822/2040\nf 390/6823/2041 11816/6824/2042 387/6825/2043\nf 11813/6826/2044 390/6827/2045 388/6828/2046\nf 388/6829/2047 11814/6830/2048 11813/6831/2049\nf 11814/6832/2050 388/6833/2051 389/6834/2052\nf 389/6835/2053 12300/6836/2054 11814/6837/2055\nf 11816/6838/2056 390/6839/2057 394/6840/2058\nf 394/6841/2059 390/6842/2060 11813/6843/2061\nf 394/6844/2062 8959/6845/2063 11816/6846/2064\nf 11813/6847/2065 396/6848/2066 394/6849/2067\nf 397/6850/2068 11929/6851/2069 391/6852/2070\nf 391/6853/2071 398/6854/2072 397/6855/2073\nf 398/6856/2074 391/6857/2075 395/6858/2076\nf 11929/6859/2077 397/6860/2078 376/6861/2079\nf 399/6862/2080 11763/6863/2081 9086/6864/2082\nf 9086/6865/2083 400/6866/2084 399/6867/2085\nf 11763/6868/2086 399/6869/2087 380/6870/2088\nf 380/6871/2089 376/6872/2090 11763/6873/2091\nf 381/6874/2092 380/6875/2093 399/6876/2094\nf 399/6877/2095 401/6878/2096 381/6879/2097\nf 401/6880/2098 399/6881/2099 400/6882/2100\nf 400/6883/2101 402/6884/2102 401/6885/2103\nf 403/6886/2104 401/6887/2105 402/6888/2106\nf 402/6889/2107 404/6890/2108 403/6891/2109\nf 401/6892/2110 403/6893/2111 384/6894/2112\nf 384/6895/2113 381/6896/2114 401/6897/2115\nf 386/6898/2116 384/6899/2117 403/6900/2118\nf 403/6901/2119 405/6902/2120 386/6903/2121\nf 405/6904/2122 403/6905/2123 404/6906/2124\nf 404/6907/2125 406/6908/2126 405/6909/2127\nf 400/6910/2128 9086/6911/2129 407/6912/2130\nf 395/6913/2131 9087/6914/2132 398/6915/2133\nf 9087/6916/2134 395/6917/2135 8960/6918/2136\nf 8960/6919/2137 9271/6920/2138 9087/6921/2139\nf 9271/6922/2140 8960/6923/2141 9341/6924/2142\nf 9341/6925/2143 411/6926/2144 9271/6927/2145\nf 412/6928/2146 409/6929/2147 9290/6930/2148\nf 9290/6931/2149 413/6932/2150 412/6933/2151\nf 412/6934/2152 413/6935/2153 414/6936/2154\nf 414/6937/2155 415/6938/2156 412/6939/2157\nf 416/6940/2158 415/6941/2159 414/6942/2160\nf 414/6943/2161 417/6944/2162 416/6945/2163\nf 418/6946/2164 416/6947/2165 417/6948/2166\nf 417/6949/2167 419/6950/2168 418/6951/2169\nf 411/6952/2170 9341/6953/2171 9238/6954/2172\nf 421/6955/2173 420/6956/2174 410/6957/2175\nf 410/6958/2176 422/6959/2177 421/6960/2178\nf 422/6961/2179 410/6962/2180 408/6963/2181\nf 421/6964/2182 422/6965/2183 423/6966/2184\nf 423/6967/2185 424/6968/2186 421/6969/2187\nf 9238/6970/2188 9367/6971/2189 411/6972/2190\nf 413/6973/2191 9290/6974/2192 425/6975/2193\nf 9570/6976/2194 9367/6977/2195 9238/6978/2196\nf 9238/6979/2197 9239/6980/2198 9570/6981/2199\nf 428/6982/2200 425/6983/2201 426/6984/2202\nf 425/6985/2203 428/6986/2204 413/6987/2205\nf 426/6988/2206 429/6989/2207 428/6990/2208\nf 428/6991/2209 429/6992/2210 430/6993/2211\nf 430/6994/2212 431/6995/2213 428/6996/2214\nf 432/6997/2215 431/6998/2216 430/6999/2217\nf 431/7000/2218 432/7001/2219 417/7002/2220\nf 419/7003/2221 417/7004/2222 432/7005/2223\nf 430/7006/2224 433/7007/2225 432/7008/2226\nf 434/7009/2227 432/7010/2228 433/7011/2229\nf 432/7012/2230 434/7013/2231 419/7014/2232\nf 433/7015/2233 435/7016/2234 434/7017/2235\nf 413/7018/2236 428/7019/2237 431/7020/2238\nf 431/7021/2239 414/7022/2240 413/7023/2241\nf 417/7024/2242 414/7025/2243 431/7026/2244\nf 436/7027/2245 424/7028/2246 423/7029/2247\nf 437/7030/2248 424/7031/2249 436/7032/2250\nf 436/7033/2251 438/7034/2252 437/7035/2253\nf 743/7036/2254 438/7037/2255 436/7038/2256\nf 436/7039/2257 12256/7040/2258 743/7041/2259\nf 12256/7042/2260 436/7043/2261 440/7044/2262\nf 423/7045/2263 440/7046/2264 436/7047/2265\nf 441/7048/2266 440/7049/2267 423/7050/2268\nf 742/7051/2269 440/7052/2270 441/7053/2271\nf 440/7054/2272 742/7055/2273 12256/7056/2274\nf 441/7057/2275 9760/7058/2276 742/7059/2277\nf 9761/7060/2278 9760/7061/2279 441/7062/2280\nf 441/7063/2281 444/7064/2282 9761/7065/2283\nf 444/7066/2284 441/7067/2285 445/7068/2286\nf 423/7069/2287 445/7070/2288 441/7071/2289\nf 445/7072/2290 396/7073/2291 444/7074/2292\nf 444/7075/2293 745/7076/2294 9761/7077/2295\nf 745/7078/2296 444/7079/2297 396/7080/2298\nf 421/7081/2299 424/7082/2300 437/7083/2301\nf 437/7084/2302 446/7085/2303 421/7086/2304\nf 420/7087/2305 421/7088/2306 446/7089/2307\nf 446/7090/2308 427/7091/2309 420/7092/2310\nf 394/7093/2311 396/7094/2312 445/7095/2313\nf 445/7096/2314 447/7097/2315 394/7098/2316\nf 447/7099/2317 445/7100/2318 423/7101/2319\nf 423/7102/2320 422/7103/2321 447/7104/2322\nf 408/7105/2323 447/7106/2324 422/7107/2325\nf 8959/7108/2326 394/7109/2327 447/7110/2328\nf 447/7111/2329 408/7112/2330 8959/7113/2331\nf 396/7114/2332 11813/7115/2333 745/7116/2334\nf 657/7117/2335 12807/7118/2336 448/7119/2337\nf 448/7120/2338 450/7121/2339 657/7122/2340\nf 657/7123/2341 450/7124/2342 451/7125/2343\nf 451/7126/2344 656/7127/2345 657/7128/2346\nf 659/7129/2347 656/7130/2348 451/7131/2349\nf 451/7132/2350 452/7133/2351 659/7134/2352\nf 659/7135/2353 452/7136/2354 453/7137/2355\nf 453/7138/2356 12536/7139/2357 659/7140/2358\nf 661/7141/2359 12536/7142/2360 453/7143/2361\nf 453/7144/2362 455/7145/2363 661/7146/2364\nf 661/7147/2365 455/7148/2366 456/7149/2367\nf 456/7150/2368 10333/7151/2369 661/7152/2370\nf 10334/7153/2371 10333/7154/2372 456/7155/2373\nf 456/7156/2374 375/7157/2375 10334/7158/2376\nf 450/7159/2377 448/7160/2378 459/7161/2379\nf 459/7162/2380 460/7163/2381 450/7164/2382\nf 461/7165/2383 451/7166/2384 450/7167/2385\nf 450/7168/2386 460/7169/2387 461/7170/2388\nf 452/7171/2389 451/7172/2390 461/7173/2391\nf 461/7174/2392 462/7175/2393 452/7176/2394\nf 463/7177/2395 453/7178/2396 452/7179/2397\nf 452/7180/2398 462/7181/2399 463/7182/2400\nf 455/7183/2401 453/7184/2402 463/7185/2403\nf 463/7186/2404 464/7187/2405 455/7188/2406\nf 465/7189/2407 456/7190/2408 455/7191/2409\nf 455/7192/2410 464/7193/2411 465/7194/2412\nf 375/7195/2413 456/7196/2414 465/7197/2415\nf 465/7198/2416 8857/7199/2417 375/7200/2418\nf 460/7201/2419 459/7202/2420 466/7203/2421\nf 466/7204/2422 467/7205/2423 460/7206/2424\nf 461/7207/2425 460/7208/2426 467/7209/2427\nf 467/7210/2428 466/7211/2429 468/7212/2430\nf 468/7213/2431 469/7214/2432 467/7215/2433\nf 469/7216/2434 468/7217/2435 470/7218/2436\nf 470/7219/2437 471/7220/2438 469/7221/2439\nf 471/7222/2440 470/7223/2441 472/7224/2442\nf 472/7225/2443 473/7226/2444 471/7227/2445\nf 474/7228/2446 469/7229/2447 471/7230/2448\nf 471/7231/2449 475/7232/2450 474/7233/2451\nf 475/7234/2452 471/7235/2453 473/7236/2454\nf 473/7237/2455 476/7238/2456 475/7239/2457\nf 477/7240/2458 475/7241/2459 476/7242/2460\nf 476/7243/2461 478/7244/2462 477/7245/2463\nf 475/7246/2464 477/7247/2465 479/7248/2466\nf 479/7249/2467 474/7250/2468 475/7251/2469\nf 480/7252/2470 479/7253/2471 477/7254/2472\nf 477/7255/2473 481/7256/2474 480/7257/2475\nf 481/7258/2476 477/7259/2477 478/7260/2478\nf 478/7261/2479 482/7262/2480 481/7263/2481\nf 483/7264/2482 481/7265/2483 9856/7266/2484\nf 9856/7267/2485 484/7268/2486 483/7269/2487\nf 481/7270/2488 483/7271/2489 485/7272/2490\nf 485/7273/2491 480/7274/2492 481/7275/2493\nf 486/7276/2494 485/7277/2495 483/7278/2496\nf 483/7279/2497 487/7280/2498 486/7281/2499\nf 484/7282/2500 487/7283/2501 483/7284/2502\nf 484/7285/2503 747/7286/2504 487/7287/2505\nf 484/7288/2506 11060/7289/2507 747/7290/2508\nf 474/7291/2509 479/7292/2510 489/7293/2511\nf 490/7294/2512 489/7295/2513 479/7296/2514\nf 479/7297/2515 480/7298/2516 490/7299/2517\nf 489/7300/2518 490/7301/2519 463/7302/2520\nf 463/7303/2521 462/7304/2522 489/7305/2523\nf 491/7306/2524 489/7307/2525 462/7308/2526\nf 489/7309/2527 491/7310/2528 474/7311/2529\nf 469/7312/2530 474/7313/2531 491/7314/2532\nf 491/7315/2533 467/7316/2534 469/7317/2535\nf 467/7318/2536 491/7319/2537 461/7320/2538\nf 462/7321/2539 461/7322/2540 491/7323/2541\nf 464/7324/2542 463/7325/2543 490/7326/2544\nf 490/7327/2545 492/7328/2546 464/7329/2547\nf 480/7330/2548 485/7331/2549 492/7332/2550\nf 492/7333/2551 490/7334/2552 480/7335/2553\nf 465/7336/2554 464/7337/2555 492/7338/2556\nf 492/7339/2557 493/7340/2558 465/7341/2559\nf 493/7342/2560 492/7343/2561 485/7344/2562\nf 485/7345/2563 486/7346/2564 493/7347/2565\nf 11970/7348/2566 493/7349/2567 486/7350/2568\nf 486/7351/2569 12301/7352/2570 11970/7353/2571\nf 493/7354/2572 11970/7355/2573 8857/7356/2574\nf 8857/7357/2575 465/7358/2576 493/7359/2577\nf 12422/7360/2578 12301/7361/2579 486/7362/2580\nf 486/7363/2581 487/7364/2582 12422/7365/2583\nf 12422/7366/2584 487/7367/2585 747/7368/2586\nf 495/7369/2587 497/7370/2588 496/7371/2589\nf 496/7372/2590 498/7373/2591 495/7374/2592\nf 495/7375/2593 498/7376/2594 499/7377/2595\nf 499/7378/2596 500/7379/2597 495/7380/2598\nf 501/7381/2599 500/7382/2600 499/7383/2601\nf 499/7384/2602 502/7385/2603 501/7386/2604\nf 501/7387/2605 502/7388/2606 503/7389/2607\nf 503/7390/2608 504/7391/2609 501/7392/2610\nf 505/7393/2611 504/7394/2612 503/7395/2613\nf 503/7396/2614 506/7397/2615 505/7398/2616\nf 505/7399/2617 506/7400/2618 507/7401/2619\nf 507/7402/2620 508/7403/2621 505/7404/2622\nf 10932/7405/2623 508/7406/2624 507/7407/2625\nf 507/7408/2626 510/7409/2627 10932/7410/2628\nf 511/7411/2629 509/7412/2630 10933/7413/2631\nf 10933/7414/2632 10943/7415/2633 511/7416/2634\nf 513/7417/2635 10942/7418/2636 512/7419/2637\nf 512/7420/2638 514/7421/2639 513/7422/2640\nf 513/7423/2641 11028/7424/2642 515/7425/2643\nf 515/7426/2644 10983/7427/2645 513/7428/2646\nf 501/7429/2647 504/7430/2648 517/7431/2649\nf 504/7432/2650 505/7433/2651 518/7434/2652\nf 518/7435/2653 517/7436/2654 504/7437/2655\nf 517/7438/2656 518/7439/2657 519/7440/2658\nf 519/7441/2659 520/7442/2660 517/7443/2661\nf 521/7444/2662 517/7445/2663 520/7446/2664\nf 520/7447/2665 522/7448/2666 521/7449/2667\nf 523/7450/2668 521/7451/2669 522/7452/2670\nf 521/7453/2671 523/7454/2672 500/7455/2673\nf 495/7456/2674 500/7457/2675 523/7458/2676\nf 523/7459/2677 524/7460/2678 495/7461/2679\nf 497/7462/2680 495/7463/2681 524/7464/2682\nf 524/7465/2683 525/7466/2684 497/7467/2685\nf 525/7468/2686 524/7469/2687 526/7470/2688\nf 526/7471/2689 527/7472/2690 525/7473/2691\nf 528/7474/2692 526/7475/2693 524/7476/2694\nf 524/7477/2695 523/7478/2696 528/7479/2697\nf 522/7480/2698 528/7481/2699 523/7482/2700\nf 500/7483/2701 501/7484/2702 521/7485/2703\nf 517/7486/2704 521/7487/2705 501/7488/2706\nf 529/7489/2707 519/7490/2708 518/7491/2709\nf 518/7492/2710 530/7493/2711 529/7494/2712\nf 531/7495/2713 529/7496/2714 530/7497/2715\nf 530/7498/2716 532/7499/2717 531/7500/2718\nf 533/7501/2719 531/7502/2720 532/7503/2721\nf 532/7504/2722 534/7505/2723 533/7506/2724\nf 534/7507/2725 532/7508/2726 509/7509/2727\nf 509/7510/2728 511/7511/2729 534/7512/2730\nf 535/7513/2731 534/7514/2732 10942/7515/2733\nf 10942/7516/2734 513/7517/2735 535/7518/2736\nf 534/7519/2737 535/7520/2738 536/7521/2739\nf 536/7522/2740 533/7523/2741 534/7524/2742\nf 537/7525/2743 536/7526/2744 535/7527/2745\nf 535/7528/2746 538/7529/2747 537/7530/2748\nf 538/7531/2749 535/7532/2750 513/7533/2751\nf 513/7534/2752 10983/7535/2753 538/7536/2754\nf 508/7537/2755 10932/7538/2756 532/7539/2757\nf 532/7540/2758 530/7541/2759 508/7542/2760\nf 505/7543/2761 508/7544/2762 530/7545/2763\nf 530/7546/2764 518/7547/2765 505/7548/2766\nf 539/7549/2767 531/7550/2768 533/7551/2769\nf 533/7552/2770 536/7553/2771 539/7554/2772\nf 539/7555/2773 536/7556/2774 537/7557/2775\nf 537/7558/2776 540/7559/2777 539/7560/2778\nf 541/7561/2779 540/7562/2780 537/7563/2781\nf 537/7564/2782 542/7565/2783 541/7566/2784\nf 542/7567/2785 537/7568/2786 538/7569/2787\nf 543/7570/2788 541/7571/2789 542/7572/2790\nf 542/7573/2791 544/7574/2792 543/7575/2793\nf 545/7576/2794 538/7577/2795 516/7578/2796\nf 538/7579/2797 545/7580/2798 542/7581/2799\nf 544/7582/2800 542/7583/2801 545/7584/2802\nf 516/7585/2803 546/7586/2804 545/7587/2805\nf 546/7588/2806 516/7589/2807 515/7590/2808\nf 515/7591/2809 547/7592/2810 546/7593/2811\nf 547/7594/2812 515/7595/2813 684/7596/2814\nf 684/7597/2815 515/7598/2816 11028/7599/2817\nf 11028/7600/2818 11582/7601/2819 684/7602/2820\nf 681/7603/2821 548/7604/2822 514/7605/2823\nf 514/7606/2824 512/7607/2825 681/7608/2826\nf 680/7609/2827 9145/7610/2828 10943/7611/2829\nf 10943/7612/2830 10933/7613/2831 680/7614/2832\nf 9094/7615/2833 510/7616/2834 507/7617/2835\nf 507/7618/2836 678/7619/2837 9094/7620/2838\nf 678/7621/2839 507/7622/2840 506/7623/2841\nf 506/7624/2842 12482/7625/2843 678/7626/2844\nf 677/7627/2845 12482/7628/2846 506/7629/2847\nf 506/7630/2848 503/7631/2849 677/7632/2850\nf 677/7633/2851 503/7634/2852 502/7635/2853\nf 502/7636/2854 12460/7637/2855 677/7638/2856\nf 674/7639/2857 12460/7640/2858 502/7641/2859\nf 502/7642/2860 499/7643/2861 674/7644/2862\nf 674/7645/2863 499/7646/2864 498/7647/2865\nf 498/7648/2866 672/7649/2867 674/7650/2868\nf 12450/7651/2869 672/7652/2870 498/7653/2871\nf 498/7654/2872 496/7655/2873 12450/7656/2874\nf 578/7657/2875 12959/7658/2876 605/7659/2877\nf 605/7660/2878 603/7661/2879 578/7662/2880\nf 578/7663/2881 603/7664/2882 12886/7665/2883\nf 12886/7666/2884 10772/7667/2885 578/7668/2886\nf 10764/7669/2887 10772/7670/2888 12886/7671/2889\nf 12886/7672/2890 12852/7673/2891 10764/7674/2892\nf 10764/7675/2893 12852/7676/2894 10739/7677/2895\nf 10739/7678/2896 10755/7679/2897 10764/7680/2898\nf 10717/7681/2899 10755/7682/2900 10739/7683/2901\nf 10739/7684/2902 10693/7685/2903 10717/7686/2904\nf 10717/7687/2905 10693/7688/2906 10694/7689/2907\nf 10694/7690/2908 10520/7691/2909 10717/7692/2910\nf 10521/7693/2911 10520/7694/2912 10694/7695/2913\nf 10694/7696/2914 10959/7697/2915 10521/7698/2916\nf 10521/7699/2917 10959/7700/2918 612/7701/2919\nf 612/7702/2920 10542/7703/2921 10521/7704/2922\nf 586/7705/2923 10542/7706/2924 612/7707/2925\nf 612/7708/2926 10555/7709/2927 586/7710/2928\nf 586/7711/2929 10555/7712/2930 10556/7713/2931\nf 10556/7714/2932 13131/7715/2933 586/7716/2934\nf 8855/7717/2935 378/7718/2936 10482/7719/2937\nf 10482/7720/2938 458/7721/2939 8855/7722/2940\nf 9947/7723/2941 10482/7724/2942 378/7725/2943\nf 378/7726/2944 379/7727/2945 9947/7728/2946\nf 9946/7729/2947 379/7730/2948 382/7731/2949\nf 382/7732/2950 667/7733/2951 9946/7734/2952\nf 12684/7735/2953 667/7736/2954 382/7737/2955\nf 382/7738/2956 383/7739/2957 12684/7740/2958\nf 669/5912/2959 12684/7741/2960 383/7742/2961\nf 383/7743/2962 385/7744/2963 669/5912/2964\nf 684/7745/2965 12352/7746/2966 547/7747/2967\nf 571/7748/2968 547/7749/2969 12352/7750/2970\nf 12352/7751/2971 12913/4764/2972 571/7752/2973\nf 547/7753/2974 571/7754/2975 572/7755/2976\nf 572/7756/2977 546/7757/2978 547/7758/2979\nf 546/7759/2980 572/7760/2981 573/7761/2982\nf 573/7762/2983 545/7763/2984 546/7764/2985\nf 545/7765/2986 573/7766/2987 544/7767/2988\nf 628/7768/2989 626/7769/2990 10462/7770/2991\nf 10462/7771/2992 10463/7772/2993 628/7773/2994\nf 575/7774/2995 574/7775/2996 10571/7776/2997\nf 10571/7777/2998 10572/7778/2999 575/7779/3000\nf 12958/7780/3001 577/7781/3002 576/7782/3003\nf 577/7783/3004 12958/7784/3005 554/7785/3006\nf 554/7786/3007 10549/7787/3008 577/7788/3009\nf 10549/7789/3010 554/7790/3011 555/7791/3012\nf 555/7792/3013 10512/7793/3014 10549/7794/3015\nf 10512/7795/3016 555/7796/3017 557/7797/3018\nf 557/7798/3019 581/7799/3020 10512/7800/3021\nf 581/7801/3022 557/7802/3023 558/7803/3024\nf 558/7804/3025 582/7805/3026 581/7806/3027\nf 582/7807/3028 558/7808/3029 561/7809/3030\nf 561/7810/3031 583/7811/3032 582/7812/3033\nf 583/7813/3034 561/7814/3035 562/7815/3036\nf 562/7816/3037 584/7817/3038 583/7818/3039\nf 584/7819/3040 562/7820/3041 563/7821/3042\nf 563/7822/3043 10663/7823/3044 584/7824/3045\nf 10663/7825/3046 563/7826/3047 13130/7827/3048\nf 13130/7828/3049 587/7829/3050 10663/7830/3051\nf 587/7831/3052 13130/7832/3053 566/7833/3054\nf 566/7834/3055 588/7835/3056 587/7836/3057\nf 10664/7837/3058 10671/7838/3059 589/7839/3060\nf 589/7840/3061 10614/7841/3062 10664/7842/3063\nf 590/7843/3064 10617/7844/3065 591/3570/3066\nf 591/3570/3067 640/380/3068 590/7845/3069\nf 592/7846/3070 585/7847/3071 10664/7848/3072\nf 10664/7849/3073 10614/7850/3074 592/7851/3075\nf 10777/7852/3076 585/7853/3077 592/7854/3078\nf 10209/7855/3079 590/7856/3080 640/7857/3081\nf 640/7858/3082 593/7859/3083 10209/7860/3084\nf 592/7861/3085 10210/7862/3086 10777/7863/3087\nf 595/7864/3088 594/7865/3089 10209/7866/3090\nf 10209/7867/3091 593/7868/3092 595/7869/3093\nf 10252/7870/3094 594/7871/3095 595/7872/3096\nf 595/7873/3097 597/7874/3098 10252/7875/3099\nf 10777/7876/3100 10210/7877/3101 596/7878/3102\nf 596/7879/3103 10740/7880/3104 10777/7881/3105\nf 10718/7882/3106 10740/7883/3107 596/7884/3108\nf 596/7885/3109 10297/7886/3110 10718/7887/3111\nf 635/7888/3112 598/7889/3113 10252/7890/3114\nf 10252/7891/3115 597/7892/3116 635/7893/3117\nf 10718/7894/3118 10297/7895/3119 599/7896/3120\nf 10298/7897/3121 598/7898/3122 635/7899/3123\nf 635/7900/3124 632/7901/3125 10298/7902/3126\nf 599/7903/3127 10513/7904/3128 10718/7905/3129\nf 580/7906/3130 10513/7907/3131 599/7908/3132\nf 599/7909/3133 600/7910/3134 580/7911/3135\nf 601/7912/3136 10073/7913/3137 10298/7914/3138\nf 10298/7915/3139 632/7916/3140 601/7917/3141\nf 580/7918/3142 600/7919/3143 10074/7920/3144\nf 602/7921/3145 10073/7922/3146 601/7923/3147\nf 601/7924/3148 629/7925/3149 602/7926/3150\nf 10074/7927/3151 579/7928/3152 580/7929/3153\nf 10572/7930/3154 579/7931/3155 10074/7932/3156\nf 10074/7933/3157 575/7934/3158 10572/7935/3159\nf 628/7936/3160 10463/7937/3161 602/7938/3162\nf 602/7939/3163 629/7940/3164 628/7941/3165\nf 10013/7942/3166 9991/7943/3167 617/7944/3168\nf 617/7945/3169 553/7946/3170 10013/7947/3171\nf 9991/7948/3172 10013/7949/3173 10014/7950/3174\nf 10014/7951/3175 9992/7952/3176 9991/7953/3177\nf 553/7954/3178 617/7955/3179 618/7956/3180\nf 618/7957/3181 607/7958/3182 553/7959/3183\nf 607/7960/3184 618/7961/3185 621/7962/3186\nf 621/7963/3187 556/7964/3188 607/7965/3189\nf 556/7966/3190 621/7967/3191 622/7968/3192\nf 622/7969/3193 559/7970/3194 556/7971/3195\nf 559/7972/3196 622/7973/3197 10923/7974/3198\nf 10923/7975/3199 560/7976/3200 559/7977/3201\nf 560/7978/3202 10923/7979/3203 10924/7980/3204\nf 10924/7981/3205 610/7982/3206 560/7983/3207\nf 610/7984/3208 10924/7985/3209 10949/7986/3210\nf 10949/7987/3211 10960/7988/3212 610/7989/3213\nf 10960/7990/3214 10949/7991/3215 10950/7992/3216\nf 10950/7993/3217 564/7994/3218 10960/7995/3219\nf 564/7996/3220 10950/7997/3221 624/7998/3222\nf 624/7999/3223 565/8000/3224 564/8001/3225\nf 604/8002/3226 606/8003/3227 614/8004/3228\nf 614/8005/3229 615/8006/3230 604/8007/3231\nf 604/8008/3232 615/8009/3233 616/8010/3234\nf 616/8011/3235 11200/8012/3236 604/8013/3237\nf 11201/8014/3238 11200/8015/3239 616/8016/3240\nf 616/8017/3241 619/8018/3242 11201/8019/3243\nf 11201/8020/3244 619/8021/3245 620/8022/3246\nf 620/8023/3247 11084/8024/3248 11201/8025/3249\nf 11085/8026/3250 11084/8027/3251 620/8028/3252\nf 620/8029/3253 623/8030/3254 11085/8031/3255\nf 11085/8032/3256 623/8033/3257 531/8034/3258\nf 531/8035/3259 608/8036/3260 11085/8037/3261\nf 609/8038/3262 608/8039/3263 531/8040/3264\nf 531/8041/3265 539/8042/3266 609/8043/3267\nf 609/8044/3268 539/8045/3269 540/8046/3270\nf 540/8047/3271 611/8048/3272 609/8049/3273\nf 613/8050/3274 611/8051/3275 540/8052/3276\nf 540/8053/3277 541/8054/3278 613/8055/3279\nf 613/8056/3280 541/8057/3281 543/8058/3282\nf 543/8059/3283 13201/8060/3284 613/8061/3285\nf 520/8062/3286 620/8063/3287 619/8064/3288\nf 623/8065/3289 620/8066/3290 520/8067/3291\nf 619/8068/3292 522/8069/3293 520/8070/3294\nf 520/8071/3295 519/8072/3296 623/8073/3297\nf 531/8074/3298 623/8075/3299 519/8076/3300\nf 519/8077/3301 529/8078/3302 531/8079/3303\nf 528/8080/3304 522/8081/3305 619/8082/3306\nf 619/8083/3307 616/8084/3308 528/8085/3309\nf 528/8086/3310 616/8087/3311 615/8088/3312\nf 615/8089/3313 526/8090/3314 528/8091/3315\nf 527/8092/3316 526/8093/3317 615/8094/3318\nf 615/8095/3319 614/8096/3320 527/8097/3321\nf 625/8098/3322 627/8099/3323 626/8100/3324\nf 626/8101/3325 628/8102/3326 625/8103/3327\nf 625/8104/3328 628/8105/3329 629/8106/3330\nf 629/8107/3331 630/8108/3332 625/8109/3333\nf 631/8110/3334 630/8111/3335 629/8112/3336\nf 629/8113/3337 601/8114/3338 631/8115/3339\nf 631/8116/3340 601/8117/3341 632/8118/3342\nf 632/8119/3343 11611/8120/3344 631/8121/3345\nf 634/8122/3346 633/8123/3347 632/8124/3348\nf 632/8125/3349 635/8126/3350 634/8127/3351\nf 634/8128/3352 635/8129/3353 597/8130/3354\nf 597/8131/3355 636/8132/3356 634/8133/3357\nf 637/8134/3358 636/8135/3359 597/8136/3360\nf 597/8137/3361 595/8138/3362 637/8139/3363\nf 637/8140/3364 595/8141/3365 593/8142/3366\nf 593/8143/3367 638/8144/3368 637/8145/3369\nf 639/8146/3370 638/8147/3371 593/8148/3372\nf 593/8149/3373 640/8150/3374 639/8151/3375\nf 639/8152/3376 640/8153/3377 591/8154/3378\nf 591/8155/3379 641/8156/3380 639/8157/3381\nf 642/8158/3382 631/8159/3383 11611/8160/3384\nf 11611/8161/3385 643/8162/3386 642/8163/3387\nf 631/8164/3388 642/8165/3389 644/8166/3390\nf 644/8167/3391 630/8168/3392 631/8169/3393\nf 630/8170/3394 644/8171/3395 645/8172/3396\nf 645/8173/3397 625/8174/3398 630/8175/3399\nf 625/8176/3400 645/8177/3401 646/8178/3402\nf 646/8179/3403 627/8180/3404 625/8181/3405\nf 576/8182/3406 552/8183/3407 12958/8184/3408\nf 9292/8185/3409 12492/8186/3410 13273/8187/3411\nf 13273/8188/3412 655/8189/3413 9292/8190/3414\nf 9292/8191/3415 655/8192/3416 658/8193/3417\nf 658/8194/3418 9167/8195/3419 9292/8196/3420\nf 9168/8197/3421 9167/8198/3422 658/8199/3423\nf 658/8200/3424 13289/8201/3425 9168/8202/3426\nf 9168/8203/3427 13289/8204/3428 9409/8205/3429\nf 9409/8206/3430 9198/8207/3431 9168/8208/3432\nf 11386/8209/3433 9198/8210/3434 9409/8211/3435\nf 9409/8212/3436 9410/8213/3437 11386/8214/3438\nf 11386/8215/3439 9410/8216/3440 9396/8217/3441\nf 9396/8218/3442 11387/8219/3443 11386/8220/3444\nf 679/8221/3445 11387/8222/3446 9396/8223/3447\nf 9396/8224/3448 9371/8225/3449 679/8226/3450\nf 12416/8227/3451 12415/8228/3452 9370/8229/3453\nf 9370/8230/3454 9372/8231/3455 12416/8232/3456\nf 682/8233/3457 12417/8234/3458 9373/8235/3459\nf 9373/8236/3460 9525/8237/3461 682/8238/3462\nf 9079/8239/3463 9526/8240/3464 9531/8241/3465\nf 9531/8242/3466 9041/8243/3467 9079/8244/3468\nf 685/8245/3469 9041/8246/3470 9531/8247/3471\nf 9531/8248/3472 653/8249/3473 685/8250/3474\nf 685/8251/3475 653/8252/3476 670/8253/3477\nf 670/8254/3478 12906/8255/3479 685/8256/3480\nf 11510/8257/3481 11506/8258/3482 11505/8259/3483\nf 11505/8260/3484 11511/8261/3485 11510/8262/3486\nf 11506/8263/3487 11510/8264/3488 647/8265/3489\nf 647/8266/3490 449/8267/3491 11506/8268/3492\nf 11511/8269/3493 11505/8270/3494 11519/8271/3495\nf 11519/8272/3496 649/8273/3497 11511/8274/3498\nf 649/8275/3499 11519/8276/3500 454/8277/3501\nf 454/8278/3502 660/8279/3503 649/8280/3504\nf 660/8281/3505 454/8282/3506 12537/8283/3507\nf 12537/8284/3508 662/8285/3509 660/8286/3510\nf 662/8287/3511 12537/8288/3512 457/8289/3513\nf 457/8290/3514 663/8291/3515 662/8292/3516\nf 664/8293/3517 663/8294/3518 457/8295/3519\nf 457/8296/3520 10335/8297/3521 664/8298/3522\nf 665/8299/3523 664/8300/3524 10335/8301/3525\nf 10335/8302/3526 567/8303/3527 665/8304/3528\nf 665/8305/3529 567/8306/3530 568/8307/3531\nf 568/8308/3532 666/8309/3533 665/8310/3534\nf 666/8311/3535 568/8312/3536 12676/8313/3537\nf 12676/8314/3538 668/8315/3539 666/8316/3540\nf 668/8317/3541 12676/8318/3542 569/8319/3543\nf 569/8320/3544 12477/8321/3545 668/8322/3546\nf 12477/8323/3547 569/8324/3548 12685/8325/3549\nf 12685/8326/3550 12478/8327/3551 12477/8328/3552\nf 671/8329/3553 9265/8330/3554 551/8331/3555\nf 551/8332/3556 648/8333/3557 671/8334/3558\nf 9265/8335/3559 671/8336/3560 673/8337/3561\nf 673/8338/3562 9266/8339/3563 9265/8340/3564\nf 9266/8341/3565 673/8342/3566 675/8343/3567\nf 675/8344/3568 550/8345/3569 9266/8346/3570\nf 550/8347/3571 675/8348/3572 676/8349/3573\nf 676/8350/3574 12461/8351/3575 550/8352/3576\nf 12461/8353/3577 676/8354/3578 650/8355/3579\nf 650/8356/3580 549/8357/3581 12461/8358/3582\nf 549/8359/3583 650/8360/3584 651/8361/3585\nf 651/8362/3586 9092/8363/3587 549/8364/3588\nf 9092/8365/3589 651/8366/3590 12414/8367/3591\nf 12414/8368/3592 9093/8369/3593 9092/8370/3594\nf 9093/8371/3595 12414/8372/3596 652/8373/3597\nf 652/8374/3598 9144/8375/3599 9093/8376/3600\nf 9144/8377/3601 652/8378/3602 9078/8379/3603\nf 9078/8380/3604 11583/8381/3605 9144/8382/3606\nf 11583/8383/3607 9078/8384/3608 683/8385/3609\nf 683/8386/3610 12351/8387/3611 11583/8388/3612\nf 12351/8389/3613 683/8390/3614 9042/8391/3615\nf 9042/8392/3616 570/8393/3617 12351/8394/3618\nf 570/8395/3619 9042/8396/3620 654/8397/3621\nf 654/8398/3622 686/8399/3623 570/8400/3624\nf 687/8401/3625 689/8402/3626 688/8403/3627\nf 688/8404/3628 690/8405/3629 687/8406/3630\nf 690/8407/3631 688/8408/3632 691/8409/3633\nf 691/8410/3634 692/8411/3635 690/8412/3636\nf 693/8413/3637 691/8414/3638 688/8415/3639\nf 688/8416/3640 694/8417/3641 693/8418/3642\nf 694/8419/3643 688/8420/3644 689/8421/3645\nf 689/8422/3646 695/8423/3647 694/8424/3648\nf 696/8425/3649 694/8426/3650 695/8427/3651\nf 695/8428/3652 697/8429/3653 696/8430/3654\nf 694/8431/3655 696/8432/3656 698/8433/3657\nf 698/8434/3658 693/8435/3659 694/8436/3660\nf 10402/8437/3661 698/8438/3662 696/8439/3663\nf 696/8440/3664 10377/8441/3665 10402/8442/3666\nf 10377/8443/3667 696/8444/3668 697/8445/3669\nf 697/8446/3670 701/8447/3671 10377/8448/3672\nf 702/8449/3673 700/8450/3674 701/8451/3675\nf 701/8452/3676 703/8453/3677 702/8454/3678\nf 700/8455/3679 702/8456/3680 704/8457/3681\nf 704/8458/3682 699/8459/3683 700/8460/3684\nf 11061/8461/3685 704/8462/3686 702/8463/3687\nf 702/8464/3688 8785/8465/3689 11061/8466/3690\nf 8785/8467/3691 702/8468/3692 703/8469/3693\nf 703/8470/3694 731/8471/3695 8785/8472/3696\nf 706/8473/3697 697/8474/3698 695/8475/3699\nf 695/8476/3700 707/8477/3701 706/8478/3702\nf 707/8479/3703 695/8480/3704 689/8481/3705\nf 689/8482/3706 708/8483/3707 707/8484/3708\nf 708/8485/3709 689/8486/3710 687/8487/3711\nf 687/8488/3712 709/8489/3713 708/8490/3714\nf 710/8491/3715 707/8492/3716 708/8493/3717\nf 708/8494/3718 711/8495/3719 710/8496/3720\nf 711/8497/3721 708/8498/3722 709/8499/3723\nf 709/8500/3724 712/8501/3725 711/8502/3726\nf 713/8503/3727 706/8504/3728 707/8505/3729\nf 707/8506/3730 710/8507/3731 713/8508/3732\nf 706/8509/3733 713/8510/3734 714/8511/3735\nf 714/8512/3736 715/8513/3737 706/8514/3738\nf 697/8515/3739 706/8516/3740 715/8517/3741\nf 715/8518/3742 701/8519/3743 697/8520/3744\nf 701/8521/3745 715/8522/3746 716/8523/3747\nf 716/8524/3748 703/8525/3749 701/8526/3750\nf 703/8527/3751 716/8528/3752 9107/8529/3753\nf 9107/8530/3754 731/8531/3755 703/8532/3756\nf 9108/8533/3757 9107/8534/3758 716/8535/3759\nf 716/8536/3760 719/8537/3761 9108/8538/3762\nf 719/8539/3763 716/8540/3764 715/8541/3765\nf 715/8542/3766 714/8543/3767 719/8544/3768\nf 710/8545/3769 711/8546/3770 720/8547/3771\nf 720/8548/3772 721/8549/3773 710/8550/3774\nf 713/8551/3775 710/8552/3776 721/8553/3777\nf 711/8554/3778 712/8555/3779 722/8556/3780\nf 722/8557/3781 720/8558/3782 711/8559/3783\nf 714/8560/3784 713/8561/3785 723/8562/3786\nf 721/8563/3787 723/8564/3788 713/8565/3789\nf 723/8566/3790 724/8567/3791 714/8568/3792\nf 719/8569/3793 714/8570/3794 724/8571/3795\nf 9108/8572/3796 719/8573/3797 725/8574/3798\nf 724/8575/3799 725/8576/3800 719/8577/3801\nf 725/8578/3802 726/8579/3803 9108/8580/3804\nf 409/8581/3805 412/8582/3806 727/8583/3807\nf 727/8584/3808 407/8585/3809 409/8586/3810\nf 407/8587/3811 727/8588/3812 400/8589/3813\nf 728/8590/3814 727/8591/3815 412/8592/3816\nf 400/8593/3817 727/8594/3818 728/8595/3819\nf 412/8596/3820 415/8597/3821 728/8598/3822\nf 729/8599/3823 728/8600/3824 415/8601/3825\nf 415/8602/3826 416/8603/3827 729/8604/3828\nf 728/8605/3829 729/8606/3830 404/8607/3831\nf 404/8608/3832 402/8609/3833 728/8610/3834\nf 728/8611/3835 402/8612/3836 400/8613/3837\nf 730/8614/3838 729/8615/3839 416/8616/3840\nf 416/8617/3841 418/8618/3842 730/8619/3843\nf 729/8620/3844 730/8621/3845 406/8622/3846\nf 406/8623/3847 404/8624/3848 729/8625/3849\nf 692/8626/3850 691/8627/3851 473/8628/3852\nf 473/8629/3853 472/8630/3854 692/8631/3855\nf 476/8632/3856 473/8633/3857 691/8634/3858\nf 691/8635/3859 693/8636/3860 476/8637/3861\nf 478/8638/3862 476/8639/3863 693/8640/3864\nf 693/8641/3865 698/8642/3866 478/8643/3867\nf 482/8644/3868 478/8645/3869 698/8646/3870\nf 698/8647/3871 10402/8648/3872 482/8649/3873\nf 484/8650/3874 9856/8651/3875 699/8652/3876\nf 699/8653/3877 704/8654/3878 484/8655/3879\nf 11060/8656/3880 484/8657/3881 704/8658/3882\nf 704/8659/3883 11061/8660/3884 11060/8661/3885\nf 8784/8662/3886 717/8663/3887 2829/8664/3888\nf 2829/8665/3889 8759/8666/3890 8784/8667/3891\nf 2829/8668/3892 717/8669/3893 718/8670/3894\nf 718/8671/3895 9548/8672/3896 2829/8673/3897\nf 8784/8674/3898 8759/8675/3899 8761/8676/3900\nf 8761/8677/3901 735/8678/3902 8784/8679/3903\nf 705/8680/3904 735/8681/3905 8761/8682/3906\nf 8761/8683/3907 9518/8684/3908 705/8685/3909\nf 9550/8686/3910 9548/8687/3911 718/8688/3912\nf 718/8689/3913 738/8690/3914 9550/8691/3915\nf 739/8692/3916 705/8693/3917 9518/8694/3918\nf 9518/8695/3919 9519/8696/3920 739/8697/3921\nf 739/8698/3922 9519/8699/3923 10494/8700/3924\nf 10494/8701/3925 442/8702/3926 739/8703/3927\nf 442/8704/3928 10494/8705/3929 12232/8706/3930\nf 12232/8707/3931 12255/8708/3932 442/8709/3933\nf 12255/8710/3934 12232/8711/3935 11000/8712/3936\nf 11000/8713/3937 439/8714/3938 12255/8715/3939\nf 439/8716/3940 11000/8717/3941 2827/8718/3942\nf 2827/8719/3943 9550/8720/3944 738/8721/3945\nf 2827/8722/3946 12262/8723/3947 439/8724/3948\nf 739/8725/3949 442/8726/3950 443/8727/3951\nf 443/8728/3952 744/8729/3953 739/8730/3954\nf 705/8731/3955 739/8732/3956 744/8733/3957\nf 744/8734/3958 443/8735/3959 12154/8736/3960\nf 12154/8737/3961 746/8738/3962 744/8739/3963\nf 746/8740/3964 12154/8741/3965 392/8742/3966\nf 392/8743/3967 393/8744/3968 746/8745/3969\nf 494/8746/3970 744/8747/3971 746/8748/3972\nf 494/8749/3973 746/8750/3974 393/8751/3975\nf 494/8752/3976 12406/8753/3977 744/8754/3978\nf 12406/8755/3979 488/8756/3980 744/8757/3981\nf 393/8758/3982 748/8759/3983 494/8760/3984\nf 744/8761/3985 488/8762/3986 705/8763/3987\nf 749/8764/3988 12262/8765/3989 2827/8766/3990\nf 2827/8767/3991 750/8768/3992 749/8769/3993\nf 738/8770/3994 750/8771/3995 2827/8772/3996\nf 8934/3429/3997 8950/4918/3998 12187/3004/3999\nf 12187/3004/4000 12160/1940/4001 8934/3429/4002\nf 12187/3004/4003 8950/4918/4004 13303/2112/4005\nf 13303/2112/4006 13299/1320/4007 12187/3004/4008\nf 753/6390/4009 12187/3004/4010 13299/1320/4011\nf 12187/3004/4012 753/6390/4013 12719/687/4014\nf 12719/687/4015 12320/1321/4016 12187/3004/4017\nf 12719/687/4018 753/6390/4019 11532/5370/4020\nf 11532/5370/4021 753/6390/4022 755/505/4023\nf 755/505/4024 8950/4918/4025 12680/4257/4026\nf 12680/4257/4027 9558/1698/4028 755/505/4029\nf 755/505/4030 11949/5887/4031 11532/5370/4032\nf 2925/8773/4033 758/5377/4034 12720/8774/4035\nf 759/4195/4036 11949/5887/4037 755/505/4038\nf 755/505/4039 9558/1698/4040 759/4195/4041\nf 755/505/4042 753/6390/4043 13321/1778/4044\nf 13299/1320/4045 13321/1778/4046 753/6390/4047\nf 13321/1778/4048 13311/3344/4049 755/505/4050\nf 13311/3344/4051 13303/2112/4052 8950/4918/4053\nf 8950/4918/4054 755/505/4055 13311/3344/4056\nf 12424/5745/4057 11532/5370/4058 11949/5887/4059\nf 11949/5887/4060 11951/3865/4061 12424/5745/4062\nf 13319/3619/4063 13302/5293/4064 13307/3970/4065\nf 13307/3970/4066 13305/4478/4067 13319/3619/4068\nf 13318/1666/4069 13306/749/4070 13310/4104/4071\nf 13310/4104/4072 13322/4600/4073 13318/1666/4074\nf 13301/2634/4075 764/2216/4076 760/2069/4077\nf 760/2069/4078 13300/6392/4079 13301/2634/4080\nf 13308/6037/4081 767/3204/4082 766/2394/4083\nf 766/2394/4084 752/451/4085 13308/6037/4086\nf 768/4386/4087 763/3074/4088 13304/1637/4089\nf 13304/1637/4090 765/1686/4091 768/4386/4092\nf 13066/8775/4093 12999/8776/4094 11044/8777/4095\nf 11044/8778/4096 12504/8779/4097 13066/8780/4098\nf 9598/8781/4099 12504/8782/4100 11044/8783/4101\nf 11044/8784/4102 12541/8785/4103 9598/8786/4104\nf 12541/8787/4105 11044/8788/4106 771/8789/4107\nf 11224/8790/4108 771/8791/4109 11044/8792/4110\nf 11044/8793/4111 11227/8794/4112 11224/8795/4113\nf 12597/8796/4114 771/8797/4115 11224/8798/4116\nf 772/8799/4117 771/8800/4118 12597/8801/4119\nf 12507/8802/4120 12504/8803/4121 772/8804/4122\nf 772/8805/4123 12589/8806/4124 12507/8807/4125\nf 12597/8808/4126 11335/8809/4127 772/8810/4128\nf 11225/8811/4129 774/8812/4130 12596/8813/4131\nf 775/8814/4132 12589/8815/4133 772/8816/4134\nf 772/8817/4135 11335/8818/4136 775/8819/4137\nf 9493/8820/4138 771/8821/4139 772/8822/4140\nf 771/8823/4141 9493/8824/4142 12541/8825/4143\nf 772/8826/4144 9649/8827/4145 9493/8828/4146\nf 9649/8829/4147 772/8830/4148 12504/8831/4149\nf 12504/8832/4150 9598/8833/4151 9649/8834/4152\nf 11335/8835/4153 12597/8836/4154 12599/8837/4155\nf 12599/8838/4156 11337/8839/4157 11335/8840/4158\nf 9491/8841/4159 12624/8842/4160 9600/8843/4161\nf 9600/8844/4162 12650/8845/4163 9491/8846/4164\nf 9490/8847/4165 9492/8848/4166 9648/8849/4167\nf 9648/8850/4168 12625/8851/4169 9490/8852/4170\nf 12651/8853/4171 12542/8854/4172 781/8855/4173\nf 781/8856/4174 779/8857/4175 12651/8858/4176\nf 9599/8859/4177 9597/8860/4178 782/8861/4179\nf 782/8862/4180 778/8863/4181 9599/8864/4182\nf 777/8865/4183 780/8866/4184 783/8867/4185\nf 783/8868/4186 784/8869/4187 777/8870/4188\nf 9571/2021/4189 9572/2620/4190 9645/5396/4191\nf 9645/5396/4192 9613/5114/4193 9571/2021/4194\nf 9628/4626/4195 9571/2021/4196 9613/5114/4197\nf 9613/5114/4198 9614/3430/4199 9628/4626/4200\nf 9618/4031/4201 9628/4626/4202 9614/3430/4203\nf 9614/3430/4204 963/667/4205 9618/4031/4206\nf 9619/170/4207 9618/4031/4208 963/667/4209\nf 963/667/4210 11521/2438/4211 9619/170/4212\nf 9688/688/4213 9619/170/4214 11521/2438/4215\nf 11521/2438/4216 11520/1422/4217 9688/688/4218\nf 9663/4977/4219 9688/688/4220 11520/1422/4221\nf 11520/1422/4222 12754/6371/4223 9663/4977/4224\nf 9664/4602/4225 9663/4977/4226 12754/6371/4227\nf 12754/6371/4228 12755/1630/4229 9664/4602/4230\nf 9646/3199/4231 9645/5396/4232 9572/2620/4233\nf 9572/2620/4234 9622/1265/4235 9646/3199/4236\nf 987/2073/4237 9646/3199/4238 9622/1265/4239\nf 9622/1265/4240 10235/5317/4241 987/2073/4242\nf 985/5360/4243 987/2073/4244 10235/5317/4245\nf 10235/5317/4246 799/3017/4247 985/5360/4248\nf 983/287/4249 985/5360/4250 799/3017/4251\nf 799/3017/4252 800/5181/4253 983/287/4254\nf 12960/5101/4255 983/287/4256 800/5181/4257\nf 800/5181/4258 10162/3184/4259 12960/5101/4260\nf 11774/4197/4261 12960/5101/4262 10162/3184/4263\nf 10162/3184/4264 10163/1764/4265 11774/4197/4266\nf 11775/4284/4267 11774/4197/4268 10163/1764/4269\nf 10163/1764/4270 803/3678/4271 11775/4284/4272\nf 977/228/4273 11775/4284/4274 803/3678/4275\nf 803/3678/4276 804/727/4277 977/228/4278\nf 12927/1867/4279 977/228/4280 804/727/4281\nf 804/727/4282 805/4102/4283 12927/1867/4284\nf 12917/4893/4285 12927/1867/4286 805/4102/4287\nf 805/4102/4288 807/4532/4289 12917/4893/4290\nf 12802/2776/4291 12917/4893/4292 807/4532/4293\nf 807/4532/4294 9786/3115/4295 12802/2776/4296\nf 12755/377/4297 12802/2776/4298 9786/3115/4299\nf 9786/3115/4300 9664/3485/4301 12755/377/4302\nf 795/8871/4303 808/8872/4304 848/5513/4305\nf 848/5513/4306 818/6176/4307 795/8873/4308\nf 808/8874/4309 9785/8875/4310 846/6291/4311\nf 846/6291/4312 848/5513/4313 808/8876/4314\nf 9785/8877/4315 10113/8878/4316 810/2255/4317\nf 810/2255/4318 846/6291/4319 9785/8879/4320\nf 10113/8880/4321 10151/8881/4322 811/231/4323\nf 811/231/4324 810/2255/4325 10113/8882/4326\nf 10151/8883/4327 10150/8884/4328 812/317/4329\nf 812/317/4330 811/231/4331 10151/8885/4332\nf 841/5102/4333 812/317/4334 10150/8886/4335\nf 10150/8887/4336 802/8888/4337 841/5102/4338\nf 838/62/4339 841/5102/4340 802/8889/4341\nf 802/8890/4342 801/8891/4343 838/62/4344\nf 836/5328/4345 838/62/4346 801/8892/4347\nf 801/8893/4348 10336/8894/4349 836/5328/4350\nf 813/878/4351 836/5328/4352 10336/8895/4353\nf 10336/8896/4354 10318/8897/4355 813/878/4356\nf 833/2434/4357 813/878/4358 10318/8898/4359\nf 10318/8899/4360 798/8900/4361 833/2434/4362\nf 831/85/4363 833/2434/4364 798/8901/4365\nf 798/8902/4366 797/8903/4367 831/85/4368\nf 814/2365/4369 831/85/4370 797/8904/4371\nf 797/8905/4372 787/8906/4373 814/2365/4374\nf 815/4231/4375 814/2365/4376 787/8907/4377\nf 787/8908/4378 785/8909/4379 815/4231/4380\nf 816/1164/4381 815/4231/4382 785/8910/4383\nf 785/8911/4384 789/8912/4385 816/1164/4386\nf 817/3520/4387 816/1164/4388 789/8913/4389\nf 789/8914/4390 791/8915/4391 817/3520/4392\nf 829/540/4393 817/3520/4394 791/8916/4395\nf 791/8917/4396 792/8918/4397 829/540/4398\nf 955/4564/4399 829/540/4400 792/8919/4401\nf 792/8920/4402 793/8921/4403 955/4564/4404\nf 957/4137/4405 955/4564/4406 793/8922/4407\nf 793/8923/4408 794/8924/4409 957/4137/4410\nf 818/3368/4411 957/4137/4412 794/8925/4413\nf 794/8926/4414 795/8927/4415 818/3368/4416\nf 819/3540/4417 820/478/4418 814/3545/4419\nf 814/3545/4420 815/1285/4421 819/3540/4422\nf 821/5892/4423 819/3540/4424 815/1285/4425\nf 815/1285/4426 816/3886/4427 821/5892/4428\nf 819/3540/4429 821/5892/4430 822/3541/4431\nf 822/3541/4432 823/4000/4433 819/3540/4434\nf 820/478/4435 819/3540/4436 823/4000/4437\nf 823/4000/4438 824/3887/4439 820/478/4440\nf 825/440/4441 821/5892/4442 816/3886/4443\nf 816/3886/4444 817/1033/4445 825/440/4446\nf 821/5892/4447 825/440/4448 826/722/4449\nf 821/5892/4450 826/722/4451 822/3541/4452\nf 825/440/4453 827/1485/4454 826/722/4455\nf 825/440/4456 817/1033/4457 828/182/4458\nf 817/1033/4459 829/4878/4460 828/182/4461\nf 825/440/4462 828/182/4463 830/4850/4464\nf 831/5381/4465 814/3545/4466 820/478/4467\nf 820/478/4468 832/5131/4469 831/5381/4470\nf 832/5131/4471 820/478/4472 824/3887/4473\nf 833/3888/4474 831/5381/4475 832/5131/4476\nf 832/5131/4477 834/6148/4478 833/3888/4479\nf 813/3962/4480 833/3888/4481 834/6148/4482\nf 834/6148/4483 835/1825/4484 813/3962/4485\nf 836/5416/4486 813/3962/4487 835/1825/4488\nf 835/1825/4489 837/2508/4490 836/5416/4491\nf 838/629/4492 836/5416/4493 837/2508/4494\nf 837/2508/4495 839/3889/4496 838/629/4497\nf 840/3859/4498 838/629/4499 839/3889/4500\nf 840/3859/4501 841/866/4502 838/629/4503\nf 840/3859/4504 842/5283/4505 841/866/4506\nf 812/4592/4507 841/866/4508 842/5283/4509\nf 842/5283/4510 843/1915/4511 812/4592/4512\nf 811/2509/4513 812/4592/4514 843/1915/4515\nf 843/1915/4516 844/4528/4517 811/2509/4518\nf 810/1565/4519 811/2509/4520 844/4528/4521\nf 844/4528/4522 845/2454/4523 810/1565/4524\nf 846/1990/4525 810/1565/4526 845/2454/4527\nf 845/2454/4528 847/2262/4529 846/1990/4530\nf 848/764/4531 846/1990/4532 847/2262/4533\nf 847/2262/4534 849/4122/4535 848/764/4536\nf 850/5528/4537 848/764/4538 849/4122/4539\nf 850/5528/4540 959/5529/4541 848/764/4542\nf 850/5528/4543 851/2263/4544 959/5529/4545\nf 959/5529/4546 818/1916/4547 848/764/4548\nf 849/4122/4549 847/2262/4550 852/4766/4551\nf 852/4766/4552 853/441/4553 849/4122/4554\nf 850/5528/4555 849/4122/4556 853/441/4557\nf 853/441/4558 854/1284/4559 850/5528/4560\nf 847/2262/4561 845/2454/4562 855/3539/4563\nf 855/3539/4564 852/4766/4565 847/2262/4566\nf 845/2454/4567 844/4528/4568 856/6207/4569\nf 856/6207/4570 855/3539/4571 845/2454/4572\nf 857/6149/4573 856/6207/4574 844/4528/4575\nf 844/4528/4576 843/1915/4577 857/6149/4578\nf 854/1284/4579 853/441/4580 858/867/4581\nf 858/867/4582 859/2910/4583 854/1284/4584\nf 853/441/4585 852/4766/4586 860/4346/4587\nf 860/4346/4588 858/867/4589 853/441/4590\nf 858/867/4591 860/4346/4592 10468/3157/4593\nf 10468/3157/4594 9071/5047/4595 858/867/4596\nf 859/2910/4597 858/867/4598 9071/5047/4599\nf 9071/5047/4600 9072/970/4601 859/2910/4602\nf 852/4766/4603 855/3539/4604 862/4767/4605\nf 862/4767/4606 860/4346/4607 852/4766/4608\nf 860/4346/4609 862/4767/4610 10469/765/4611\nf 10469/765/4612 10468/3157/4613 860/4346/4614\nf 855/3539/4615 856/6207/4616 864/5521/4617\nf 864/5521/4618 862/4767/4619 855/3539/4620\nf 862/4767/4621 864/5521/4622 1008/5936/4623\nf 1008/5936/4624 10469/765/4625 862/4767/4626\nf 856/6207/4627 857/6149/4628 865/6264/4629\nf 865/6264/4630 864/5521/4631 856/6207/4632\nf 864/5521/4633 865/6264/4634 12091/4805/4635\nf 12091/4805/4636 1008/5936/4637 864/5521/4638\nf 867/1639/4639 857/6149/4640 843/1915/4641\nf 843/1915/4642 842/5283/4643 867/1639/4644\nf 868/5789/4645 867/1639/4646 842/5283/4647\nf 842/5283/4648 840/3859/4649 868/5789/4650\nf 12440/5375/4651 868/5789/4652 840/3859/4653\nf 840/3859/4654 870/6152/4655 12440/5375/4656\nf 1042/3158/4657 12091/4805/4658 865/6264/4659\nf 865/6264/4660 13072/2876/4661 1042/3158/4662\nf 11590/3960/4663 13072/2876/4664 865/6264/4665\nf 11590/3960/4666 865/6264/4667 857/6149/4668\nf 857/6149/4669 872/5455/4670 11590/3960/4671\nf 857/6149/4672 867/1639/4673 872/5455/4674\nf 872/5455/4675 867/1639/4676 868/5789/4677\nf 873/5382/4678 870/6152/4679 840/3859/4680\nf 840/3859/4681 839/3889/4682 873/5382/4683\nf 874/2236/4684 873/5382/4685 839/3889/4686\nf 839/3889/4687 837/2508/4688 874/2236/4689\nf 875/1696/4690 874/2236/4691 837/2508/4692\nf 837/2508/4693 835/1825/4694 875/1696/4695\nf 876/571/4696 875/1696/4697 835/1825/4698\nf 835/1825/4699 834/6148/4700 876/571/4701\nf 877/3721/4702 876/571/4703 834/6148/4704\nf 834/6148/4705 832/5131/4706 877/3721/4707\nf 824/3887/4708 877/3721/4709 832/5131/4710\nf 874/2236/4711 875/1696/4712 878/2235/4713\nf 878/2235/4714 879/3251/4715 874/2236/4716\nf 879/3251/4717 878/2235/4718 8668/5456/4719\nf 8668/5456/4720 8681/3885/4721 879/3251/4722\nf 875/1696/4723 876/571/4724 880/3722/4725\nf 880/3722/4726 878/2235/4727 875/1696/4728\nf 878/2235/4729 880/3722/4730 8667/3761/4731\nf 8667/3761/4732 8668/5456/4733 878/2235/4734\nf 876/571/4735 877/3721/4736 881/2085/4737\nf 881/2085/4738 880/3722/4739 876/571/4740\nf 880/3722/4741 881/2085/4742 10516/442/4743\nf 10516/442/4744 8667/3761/4745 880/3722/4746\nf 877/3721/4747 824/3887/4748 883/296/4749\nf 883/296/4750 881/2085/4751 877/3721/4752\nf 884/3163/4753 883/296/4754 824/3887/4755\nf 824/3887/4756 823/4000/4757 884/3163/4758\nf 885/630/4759 884/3163/4760 823/4000/4761\nf 823/4000/4762 822/3541/4763 885/630/4764\nf 884/3163/4765 885/630/4766 11090/5214/4767\nf 11090/5214/4768 12121/3730/4769 884/3163/4770\nf 883/296/4771 884/3163/4772 12121/3730/4773\nf 12121/3730/4774 10517/3186/4775 883/296/4776\nf 881/2085/4777 883/296/4778 10517/3186/4779\nf 10517/3186/4780 10516/442/4781 881/2085/4782\nf 888/2574/4783 885/630/4784 822/3541/4785\nf 822/3541/4786 826/722/4787 888/2574/4788\nf 11091/3422/4789 11090/5214/4790 885/630/4791\nf 885/630/4792 888/2574/4793 11091/3422/4794\nf 8681/3885/4795 8685/5693/4796 1045/2453/4797\nf 1045/2453/4798 879/3251/4799 8681/3885/4800\nf 879/3251/4801 1045/2453/4802 13213/4916/4803\nf 879/3251/4804 13213/4916/4805 891/5901/4806\nf 891/5901/4807 874/2236/4808 879/3251/4809\nf 873/5382/4810 874/2236/4811 891/5901/4812\nf 891/5901/4813 13213/4916/4814 11674/3890/4815\nf 870/6152/4816 873/5382/4817 891/5901/4818\nf 11672/5902/4819 870/6152/4820 891/5901/4821\nf 891/5901/4822 11674/3890/4823 11672/5902/4824\nf 12440/5375/4825 870/6152/4826 11672/5902/4827\nf 868/5789/4828 12440/5375/4829 11620/1351/4830\nf 872/5455/4831 868/5789/4832 11620/1351/4833\nf 11620/1351/4834 11588/971/4835 872/5455/4836\nf 11590/3960/4837 872/5455/4838 11588/971/4839\nf 10966/3192/4840 1014/5152/4841 10995/6171/4842\nf 10995/6171/4843 10996/1046/4844 10966/3192/4845\nf 10967/53/4846 10966/3192/4847 10996/1046/4848\nf 10996/1046/4849 1001/208/4850 10967/53/4851\nf 1017/2538/4852 10967/53/4853 1001/208/4854\nf 1001/208/4855 896/1121/4856 1017/2538/4857\nf 10889/1965/4858 10995/6171/4859 1014/5152/4860\nf 1014/5152/4861 8948/618/4862 10889/1965/4863\nf 10701/4276/4864 10889/1965/4865 8948/618/4866\nf 8948/618/4867 10715/3508/4868 10701/4276/4869\nf 10702/5827/4870 10701/4276/4871 10715/3508/4872\nf 10715/3508/4873 10716/1081/4874 10702/5827/4875\nf 10767/5557/4876 10702/5827/4877 10716/1081/4878\nf 10716/1081/4879 9547/1058/4880 10767/5557/4881\nf 1046/3575/4882 10767/5557/4883 9547/1058/4884\nf 9547/1058/4885 1024/3493/4886 1046/3575/4887\nf 1043/1880/4888 1046/3575/4889 1024/3493/4890\nf 1024/3493/4891 9267/3331/4892 1043/1880/4893\nf 12082/1258/4894 1043/1880/4895 9267/3331/4896\nf 9267/3331/4897 9268/4258/4898 12082/1258/4899\nf 1007/1792/4900 12082/1258/4901 9268/4258/4902\nf 9268/4258/4903 904/1514/4904 1007/1792/4905\nf 1009/2197/4906 1007/1792/4907 904/1514/4908\nf 904/1514/4909 1030/2464/4910 1009/2197/4911\nf 9965/4153/4912 1009/2197/4913 1030/2464/4914\nf 1030/2464/4915 9402/2844/4916 9965/4153/4917\nf 9966/1908/4918 9965/4153/4919 9402/2844/4920\nf 9402/2844/4921 12451/5098/4922 9966/1908/4923\nf 1012/3213/4924 9966/1908/4925 12451/5098/4926\nf 908/5438/4927 1012/3213/4928 12451/5098/4929\nf 908/5438/4930 12451/5098/4931 1033/4004/4932\nf 909/3305/4933 908/5438/4934 1033/4004/4935\nf 1033/4004/4936 12427/352/4937 909/3305/4938\nf 911/4645/4939 913/5031/4940 912/1654/4941\nf 912/1654/4942 914/3200/4943 911/4645/4944\nf 915/4124/4945 912/1654/4946 913/5031/4947\nf 913/5031/4948 916/1621/4949 915/4124/4950\nf 917/4587/4951 915/4124/4952 916/1621/4953\nf 916/1621/4954 918/285/4955 917/4587/4956\nf 919/2591/4957 917/4587/4958 918/285/4959\nf 918/285/4960 920/1817/4961 919/2591/4962\nf 921/3816/4963 919/2591/4964 920/1817/4965\nf 920/1817/4966 922/2729/4967 921/3816/4968\nf 923/209/4969 921/3816/4970 922/2729/4971\nf 922/2729/4972 924/6096/4973 923/209/4974\nf 925/5955/4975 923/209/4976 924/6096/4977\nf 924/6096/4978 926/1665/4979 925/5955/4980\nf 927/6449/4981 925/5955/4982 926/1665/4983\nf 926/1665/4984 928/190/4985 927/6449/4986\nf 929/6138/4987 927/6449/4988 928/190/4989\nf 928/190/4990 930/219/4991 929/6138/4992\nf 931/2014/4993 929/6138/4994 930/219/4995\nf 930/219/4996 932/5027/4997 931/2014/4998\nf 933/2038/4999 931/2014/5000 932/5027/5001\nf 932/5027/5002 934/5626/5003 933/2038/5004\nf 935/3901/5005 933/2038/5006 934/5626/5007\nf 934/5626/5008 936/1580/5009 935/3901/5010\nf 937/2113/5011 935/3901/5012 936/1580/5013\nf 936/1580/5014 938/3991/5015 937/2113/5016\nf 939/3141/5017 937/2113/5018 938/3991/5019\nf 938/3991/5020 940/3945/5021 939/3141/5022\nf 940/3945/5023 938/3991/5024 941/996/5025\nf 941/996/5026 942/5243/5027 940/3945/5028\nf 938/3991/5029 936/1580/5030 943/19/5031\nf 943/19/5032 941/996/5033 938/3991/5034\nf 936/1580/5035 934/5626/5036 944/5016/5037\nf 944/5016/5038 943/19/5039 936/1580/5040\nf 934/5626/5041 932/5027/5042 945/2367/5043\nf 945/2367/5044 944/5016/5045 934/5626/5046\nf 932/5027/5047 930/219/5048 946/5463/5049\nf 946/5463/5050 945/2367/5051 932/5027/5052\nf 947/4059/5053 946/5463/5054 930/219/5055\nf 930/219/5056 928/190/5057 947/4059/5058\nf 948/86/5059 947/4059/5060 928/190/5061\nf 928/190/5062 926/1665/5063 948/86/5064\nf 949/2562/5065 948/86/5066 926/1665/5067\nf 926/1665/5068 924/6096/5069 949/2562/5070\nf 950/131/5071 949/2562/5072 924/6096/5073\nf 924/6096/5074 922/2729/5075 950/131/5076\nf 951/2295/5077 950/131/5078 922/2729/5079\nf 922/2729/5080 920/1817/5081 951/2295/5082\nf 952/3740/5083 951/2295/5084 920/1817/5085\nf 920/1817/5086 918/285/5087 952/3740/5088\nf 953/6128/5089 952/3740/5090 918/285/5091\nf 918/285/5092 916/1621/5093 953/6128/5094\nf 953/6128/5095 916/1621/5096 913/5031/5097\nf 913/5031/5098 954/467/5099 953/6128/5100\nf 828/182/5101 829/4878/5102 955/4115/5103\nf 955/4115/5104 956/1286/5105 828/182/5106\nf 956/1286/5107 955/4115/5108 957/3447/5109\nf 957/3447/5110 958/5132/5111 956/1286/5112\nf 958/5132/5113 957/3447/5114 818/2264/5115\nf 818/2264/5116 959/5383/5117 958/5132/5118\nf 786/4995/5119 11246/1533/5120 11245/2409/5121\nf 11245/2409/5122 788/2724/5123 786/4995/5124\nf 11245/2409/5125 12457/2858/5126 790/3755/5127\nf 790/3755/5128 788/2217/5129 11245/2409/5130\nf 12457/2858/5131 12305/1571/5132 12723/3583/5133\nf 12723/3583/5134 790/4069/5135 12457/2858/5136\nf 12305/1571/5137 12304/5806/5138 967/3852/5139\nf 967/3852/5140 12723/5079/5141 12305/1571/5142\nf 12304/5806/5143 11526/1322/5144 966/4738/5145\nf 966/4738/5146 967/1955/5147 12304/5806/5148\nf 11526/1322/5149 11527/2247/5150 971/4942/5151\nf 971/4942/5152 966/4695/5153 11526/1322/5154\nf 11527/2247/5155 12282/3760/5156 809/5586/5157\nf 809/5586/5158 971/4370/5159 11527/2247/5160\nf 12282/1983/5161 992/2833/5162 972/4855/5163\nf 972/4855/5164 809/1215/5165 12282/1983/5166\nf 992/2833/5167 11973/5464/5168 806/5259/5169\nf 806/5259/5170 972/1464/5171 992/2833/5172\nf 11973/5464/5173 11974/3770/5174 975/1737/5175\nf 975/1737/5176 806/3295/5177 11973/5464/5178\nf 11974/3770/5179 12581/5560/5180 12944/1900/5181\nf 12944/1900/5182 975/3921/5183 11974/3770/5184\nf 12581/5560/5185 991/4515/5186 979/5514/5187\nf 979/5514/5188 12944/1776/5189 12581/5560/5190\nf 978/5260/5191 979/1927/5192 991/4515/5193\nf 991/4515/5194 12559/1793/5195 978/5260/5196\nf 978/5555/5197 12559/1793/5198 12431/2019/5199\nf 12431/2019/5200 981/1787/5201 978/5555/5202\nf 981/1655/5203 12431/2019/5204 990/5807/5205\nf 990/5807/5206 12476/6494/5207 981/1655/5208\nf 990/5807/5209 12441/826/5210 12475/466/5211\nf 12475/466/5212 12476/3042/5213 990/5807/5214\nf 12441/826/5215 12452/5599/5216 12502/5536/5217\nf 12502/5536/5218 12475/1628/5219 12441/826/5220\nf 12452/5599/5221 989/3226/5222 796/5329/5223\nf 796/5329/5224 12502/5376/5225 12452/5599/5226\nf 989/3226/5227 11246/1533/5228 786/3869/5229\nf 786/3869/5230 796/258/5231 989/3226/5232\nf 988/413/5233 962/5424/5234 960/3729/5235\nf 961/3605/5236 988/413/5237 960/3729/5238\nf 988/413/5239 961/3605/5240 12483/2292/5241\nf 986/2921/5242 988/413/5243 12483/2292/5244\nf 988/413/5245 986/2921/5246 984/3091/5247\nf 12430/3811/5248 988/413/5249 984/3091/5250\nf 988/413/5251 12430/3811/5252 982/3756/5253\nf 988/413/5254 982/3756/5255 12558/5587/5256\nf 982/3756/5257 980/5436/5258 12558/5587/5259\nf 988/413/5260 12558/5587/5261 976/1161/5262\nf 974/5241/5263 988/413/5264 976/1161/5265\nf 988/413/5266 974/5241/5267 973/5057/5268\nf 12236/4442/5269 988/413/5270 973/5057/5271\nf 988/413/5272 12236/4442/5273 970/5772/5274\nf 969/2635/5275 988/413/5276 970/5772/5277\nf 988/413/5278 969/2635/5279 968/20/5280\nf 965/1490/5281 988/413/5282 968/20/5283\nf 988/413/5284 965/1490/5285 964/2007/5286\nf 962/5424/5287 988/413/5288 964/2007/5289\nf 914/3200/5290 912/1654/5291 8831/2418/5292\nf 8831/2418/5293 8996/4664/5294 914/3200/5295\nf 914/3200/5296 8996/4664/5297 12289/689/5298\nf 12289/689/5299 994/1034/5300 914/3200/5301\nf 994/1034/5302 12289/689/5303 1016/5242/5304\nf 8832/2397/5305 8831/2418/5306 912/1654/5307\nf 912/1654/5308 915/4124/5309 8832/2397/5310\nf 9477/1956/5311 8832/2397/5312 915/4124/5313\nf 915/4124/5314 917/4587/5315 9477/1956/5316\nf 9038/5077/5317 9477/1956/5318 917/4587/5319\nf 917/4587/5320 919/2591/5321 9038/5077/5322\nf 8750/5974/5323 9038/5077/5324 919/2591/5325\nf 919/2591/5326 921/3816/5327 8750/5974/5328\nf 8751/1748/5329 8750/5974/5330 921/3816/5331\nf 921/3816/5332 923/209/5333 8751/1748/5334\nf 9501/859/5335 8751/1748/5336 923/209/5337\nf 923/209/5338 925/5955/5339 9501/859/5340\nf 9254/3944/5341 9501/859/5342 925/5955/5343\nf 925/5955/5344 927/6449/5345 9254/3944/5346\nf 1029/573/5347 9254/3944/5348 927/6449/5349\nf 927/6449/5350 929/6138/5351 1029/573/5352\nf 9377/2792/5353 1029/573/5354 929/6138/5355\nf 929/6138/5356 931/2014/5357 9377/2792/5358\nf 8897/2922/5359 9377/2792/5360 931/2014/5361\nf 931/2014/5362 933/2038/5363 8897/2922/5364\nf 8898/3771/5365 8897/2922/5366 933/2038/5367\nf 933/2038/5368 935/3901/5369 8898/3771/5370\nf 1034/1454/5371 8898/3771/5372 935/3901/5373\nf 935/3901/5374 937/2113/5375 1034/1454/5376\nf 12485/5466/5377 1034/1454/5378 937/2113/5379\nf 937/2113/5380 939/3141/5381 12485/5466/5382\nf 886/4190/5383 12139/5064/5384 894/6517/5385\nf 894/6517/5386 1002/2147/5387 886/4190/5388\nf 887/1535/5389 1002/2147/5390 894/6517/5391\nf 894/6517/5392 893/5120/5393 887/1535/5394\nf 887/1535/5395 893/5120/5396 897/541/5397\nf 897/541/5398 882/4825/5399 887/1535/5400\nf 882/4825/5401 897/541/5402 898/684/5403\nf 898/684/5404 1003/4997/5405 882/4825/5406\nf 1003/4997/5407 898/684/5408 900/539/5409\nf 900/539/5410 1004/4012/5411 1003/4997/5412\nf 1004/4012/5413 900/539/5414 902/5952/5415\nf 902/5952/5416 1005/1838/5417 1004/4012/5418\nf 12139/5064/5419 886/4190/5420 889/5272/5421\nf 889/5272/5422 13026/5984/5423 12139/5064/5424\nf 1005/1838/5425 902/5952/5426 12111/336/5427\nf 12111/336/5428 8686/3905/5429 1005/1838/5430\nf 866/605/5431 903/6553/5432 8842/947/5433\nf 8842/947/5434 12167/5012/5435 866/605/5436\nf 12167/5012/5437 8842/947/5438 8843/5828/5439\nf 8843/5828/5440 863/107/5441 12167/5012/5442\nf 863/107/5443 8843/5828/5444 905/4129/5445\nf 905/4129/5446 861/1809/5447 863/107/5448\nf 861/1809/5449 905/4129/5450 906/3372/5451\nf 906/3372/5452 1010/5658/5453 861/1809/5454\nf 1011/5156/5455 1010/5658/5456 906/3372/5457\nf 906/3372/5458 12384/4650/5459 1011/5156/5460\nf 903/6553/5461 866/605/5462 11753/2328/5463\nf 11753/2328/5464 11754/1906/5465 903/6553/5466\nf 1013/2390/5467 8947/1009/5468 892/5793/5469\nf 892/5793/5470 1015/2329/5471 1013/2390/5472\nf 993/3361/5473 1015/2329/5474 892/5793/5475\nf 892/5793/5476 895/1785/5477 993/3361/5478\nf 12290/5985/5479 993/3361/5480 895/1785/5481\nf 12290/5985/5482 895/1785/5483 12535/585/5484\nf 12290/5985/5485 12535/585/5486 1018/4516/5487\nf 12290/5985/5488 1018/4516/5489 1019/5539/5490\nf 1020/2440/5491 8947/1009/5492 1013/2390/5493\nf 1013/2390/5494 1021/5659/5495 1020/2440/5496\nf 899/3902/5497 1020/2440/5498 1021/5659/5499\nf 1021/5659/5500 1022/6129/5501 899/3902/5502\nf 901/809/5503 899/3902/5504 1022/6129/5505\nf 1022/6129/5506 995/5347/5507 901/809/5508\nf 1023/5017/5509 901/809/5510 995/5347/5511\nf 995/5347/5512 996/1763/5513 1023/5017/5514\nf 1023/5017/5515 996/1763/5516 997/2039/5517\nf 997/2039/5518 9522/791/5519 1023/5017/5520\nf 9522/791/5521 997/2039/5522 1025/2391/5523\nf 1025/2391/5524 1026/1013/5525 9522/791/5526\nf 1027/121/5527 1026/1013/5528 1025/2391/5529\nf 1025/2391/5530 1028/3431/5531 1027/121/5532\nf 12459/6329/5533 1027/121/5534 1028/3431/5535\nf 1028/3431/5536 9255/646/5537 12459/6329/5538\nf 9401/4217/5539 12459/6329/5540 9255/646/5541\nf 9255/646/5542 1031/1870/5543 9401/4217/5544\nf 1032/5330/5545 9401/4217/5546 1031/1870/5547\nf 1031/1870/5548 998/5139/5549 1032/5330/5550\nf 907/3731/5551 1032/5330/5552 998/5139/5553\nf 998/5139/5554 999/5182/5555 907/3731/5556\nf 12426/2605/5557 907/3731/5558 999/5182/5559\nf 999/5182/5560 12223/5956/5561 12426/2605/5562\nf 12426/2605/5563 12223/5956/5564 1000/1729/5565\nf 1000/1729/5566 910/1433/5567 12426/2605/5568\nf 869/5499/5569 11673/5801/5570 11858/5164/5571\nf 869/5499/5572 11858/5164/5573 11618/2374/5574\nf 869/5499/5575 11618/2374/5576 11619/87/5577\nf 11589/3062/5578 1037/8928/5579 11617/8929/5580\nf 11617/8930/5581 13315/728/5582 11589/3062/5583\nf 1039/5957/5584 1038/8931/5585 13314/8932/5586\nf 13314/8933/5587 11729/210/5588 1039/5957/5589\nf 871/414/5590 1039/5957/5591 11729/210/5592\nf 11729/210/5593 11730/4627/5594 871/414/5595\nf 11752/8934/5596 871/414/5597 11730/4627/5598\nf 11730/4627/5599 11755/8935/5600 11752/8936/5601\nf 11855/2664/5602 11857/8937/5603 1035/8938/5604\nf 1035/8939/5605 1044/1495/5606 11855/2664/5607\nf 11861/5010/5608 11856/8940/5609 11675/8941/5610\nf 11675/8942/5611 890/944/5612 11861/5010/5613\nf 11976/1784/5614 11861/5010/5615 890/944/5616\nf 890/944/5617 13212/2035/5618 11976/1784/5619\nf 12110/8943/5620 11976/1784/5621 13212/2035/5622\nf 13212/2035/5623 1006/8944/5624 12110/8945/5625\nf 1046/3575/5626 1043/1880/5627 1041/4700/5628\nf 1041/4700/5629 1047/2196/5630 1046/3575/5631\nf 1047/2196/5632 1041/4700/5633 1036/3389/5634\nf 1041/4700/5635 1048/2055/5636 1036/3389/5637\nf 1041/4700/5638 1040/1794/5639 1048/2055/5640\nf 1047/2196/5641 1036/3389/5642 1049/5099/5643\nf 1036/3389/5644 1050/3646/5645 1049/5099/5646\nf 1036/3389/5647 1051/4301/5648 1050/3646/5649\nf 11905/8946/5650 1054/8947/5651 1053/8948/5652\nf 1053/8949/5653 11425/8950/5654 11905/8951/5655\nf 11425/8952/5656 1053/8953/5657 1056/8954/5658\nf 1056/8955/5659 11426/8956/5660 11425/8957/5661\nf 11426/8958/5662 1056/8959/5663 11416/8960/5664\nf 11416/8961/5665 11473/8962/5666 11426/8963/5667\nf 11473/8964/5668 11416/8965/5669 1060/8966/5670\nf 1060/8967/5671 1238/8968/5672 11473/8969/5673\nf 1238/8970/5674 1060/8971/5675 1061/8972/5676\nf 1061/8973/5677 1241/8974/5678 1238/8975/5679\nf 1241/8976/5680 1061/8977/5681 1062/8978/5682\nf 1062/8979/5683 1239/8980/5684 1241/8981/5685\nf 1239/8982/5686 1062/8983/5687 1076/8984/5688\nf 1076/8985/5689 9953/8986/5690 1239/8987/5691\nf 1054/8988/5692 11905/8989/5693 1258/8990/5694\nf 1258/8991/5695 1063/8992/5696 1054/8993/5697\nf 1063/8994/5698 1258/8995/5699 11524/8996/5700\nf 11524/8997/5701 11308/8998/5702 1063/8999/5703\nf 11308/9000/5704 11524/9001/5705 11525/9002/5706\nf 11525/9003/5707 1065/9004/5708 11308/9005/5709\nf 1065/9006/5710 11525/9007/5711 12547/9008/5712\nf 12547/9009/5713 1066/9010/5714 1065/9011/5715\nf 1066/9012/5716 12547/9013/5717 12582/9014/5718\nf 12582/9015/5719 1068/9016/5720 1066/9017/5721\nf 1068/9018/5722 12582/9019/5723 1250/9020/5724\nf 1250/9021/5725 1069/9022/5726 1068/9023/5727\nf 1069/9024/5728 1250/9025/5729 1248/9026/5730\nf 1248/9027/5731 1070/9028/5732 1069/9029/5733\nf 1070/9030/5734 1248/9031/5735 9661/9032/5736\nf 9661/9033/5737 1071/9034/5738 1070/9035/5739\nf 1071/9036/5740 9661/9037/5741 9662/9038/5742\nf 9662/9039/5743 1072/9040/5744 1071/9041/5745\nf 1072/9042/5746 9662/9043/5747 12732/9044/5748\nf 12732/9045/5749 11173/9046/5750 1072/9047/5751\nf 11173/9048/5752 12732/9049/5753 9952/9050/5754\nf 9952/9051/5755 1075/9052/5756 11173/9053/5757\nf 1075/9054/5758 9952/9055/5759 9953/9056/5760\nf 9953/9057/5761 1076/9058/5762 1075/9059/5763\nf 1117/9060/5764 11174/9061/5765 11217/9062/5766\nf 11217/9063/5767 1077/9064/5768 1117/9065/5769\nf 11174/9066/5770 1117/9067/5771 1078/9068/5772\nf 1078/9069/5773 1074/9070/5774 11174/9071/5775\nf 1074/9072/5776 1078/9073/5777 1114/9074/5778\nf 1114/9075/5779 11319/9076/5780 1074/9077/5781\nf 11319/9078/5782 1114/9079/5783 1079/9080/5784\nf 1079/9081/5785 11291/9082/5786 11319/9083/5787\nf 11291/9084/5788 1079/9085/5789 1080/9086/5790\nf 1080/9087/5791 11231/9088/5792 11291/9089/5793\nf 11231/9090/5794 1080/9091/5795 1110/9092/5796\nf 1110/9093/5797 11230/9094/5798 11231/9095/5799\nf 11230/9096/5800 1110/9097/5801 1081/9098/5802\nf 1081/9099/5803 11256/9100/5804 11230/9101/5805\nf 11256/9102/5806 1081/9103/5807 1106/9104/5808\nf 1106/9105/5809 11271/9106/5810 11256/9107/5811\nf 11271/9108/5812 1106/9109/5813 1082/9110/5814\nf 1082/9111/5815 11309/9112/5816 11271/9113/5817\nf 11309/9114/5818 1082/9115/5819 1103/9116/5820\nf 1103/9117/5821 1064/9118/5822 11309/9119/5823\nf 1064/9120/5824 1103/9121/5825 1101/9122/5826\nf 1101/9123/5827 11634/9124/5828 1064/9125/5829\nf 11634/9126/5830 1101/9127/5831 1083/9128/5832\nf 1083/9129/5833 11801/9130/5834 11634/9131/5835\nf 11801/9132/5836 1083/9133/5837 1088/9134/5838\nf 1088/9135/5839 11849/9136/5840 11801/9137/5841\nf 11849/9138/5842 1088/9139/5843 1084/9140/5844\nf 1084/9141/5845 11415/9142/5846 11849/9143/5847\nf 11415/9144/5848 1084/9145/5849 1095/9146/5850\nf 1095/9147/5851 1058/9148/5852 11415/9149/5853\nf 1058/9150/5854 1095/9151/5855 1100/9152/5856\nf 1100/9153/5857 11377/9154/5858 1058/9155/5859\nf 11377/9156/5860 1100/9157/5861 1085/9158/5862\nf 1085/9159/5863 11378/9160/5864 11377/9161/5865\nf 11378/9162/5866 1085/9163/5867 1086/9164/5868\nf 1086/9165/5869 11547/9166/5870 11378/9167/5871\nf 11547/9168/5872 1086/9169/5873 1077/9170/5874\nf 1077/9171/5875 11217/9172/5876 11547/9173/5877\nf 1087/9174/5878 1088/9175/5879 1083/9176/5880\nf 1083/9177/5881 1089/9178/5882 1087/9179/5883\nf 1088/9180/5884 1087/9181/5885 1090/9182/5886\nf 1090/9183/5887 1084/9184/5888 1088/9185/5889\nf 1091/9186/5890 1090/9187/5891 1087/9188/5892\nf 1087/9189/5893 1092/9190/5894 1091/9191/5895\nf 1092/9192/5896 1087/9193/5897 1089/9194/5898\nf 1089/9195/5899 1093/9196/5900 1092/9197/5901\nf 1084/9198/5902 1090/9199/5903 1094/9200/5904\nf 1094/9201/5905 1095/9202/5906 1084/9203/5907\nf 1090/9204/5908 1091/9205/5909 1096/9206/5910\nf 1090/9207/5911 1096/9208/5912 1094/9209/5913\nf 1096/9210/5914 1097/9211/5915 1094/9212/5916\nf 1098/9213/5917 1095/9214/5918 1094/9215/5919\nf 1098/9216/5920 1099/9217/5921 1095/9218/5922\nf 1099/9219/5923 1100/9220/5924 1095/9221/5925\nf 1089/9222/5926 1083/9223/5927 1101/9224/5928\nf 1101/9225/5929 1102/9226/5930 1089/9227/5931\nf 1093/9228/5932 1089/9229/5933 1102/9230/5934\nf 1102/9231/5935 1101/9232/5936 1103/9233/5937\nf 1103/9234/5938 1104/9235/5939 1102/9236/5940\nf 1104/9237/5941 1103/9238/5942 1082/9239/5943\nf 1082/9240/5944 1105/9241/5945 1104/9242/5946\nf 1105/9243/5947 1082/9244/5948 1106/9245/5949\nf 1106/9246/5950 1107/9247/5951 1105/9248/5952\nf 1107/9249/5953 1106/9250/5954 1081/9251/5955\nf 1081/9252/5956 1108/9253/5957 1107/9254/5958\nf 1109/9255/5959 1108/9256/5960 1081/9257/5961\nf 1109/9258/5962 1081/9259/5963 1110/9260/5964\nf 1109/9261/5965 1110/9262/5966 1111/9263/5967\nf 1111/9264/5968 1110/9265/5969 1080/9266/5970\nf 1080/9267/5971 1112/9268/5972 1111/9269/5973\nf 1112/9270/5974 1080/9271/5975 1079/9272/5976\nf 1079/9273/5977 1113/9274/5978 1112/9275/5979\nf 1113/9276/5980 1079/9277/5981 1114/9278/5982\nf 1114/9279/5983 1115/9280/5984 1113/9281/5985\nf 1115/9282/5986 1114/9283/5987 1078/9284/5988\nf 1078/9285/5989 1116/9286/5990 1115/9287/5991\nf 1116/9288/5992 1078/9289/5993 1117/9290/5994\nf 1117/9291/5995 1118/9292/5996 1116/9293/5997\nf 1119/9294/5998 1118/9295/5999 1117/9296/6000\nf 1119/9297/6001 1117/9298/6002 1234/9299/6003\nf 1117/9300/6004 1077/9301/6005 1234/9302/6006\nf 1119/9303/6007 1234/9304/6008 1120/9305/6009\nf 1121/9306/6010 1116/9307/6011 1118/9308/6012\nf 1118/9309/6013 1122/9310/6014 1121/9311/6015\nf 1122/9312/6016 1118/9313/6017 1119/9314/6018\nf 1119/9315/6019 1123/9316/6020 1122/9317/6021\nf 1116/9318/6022 1121/9319/6023 1124/9320/6024\nf 1124/9321/6025 1115/9322/6026 1116/9323/6027\nf 1115/9324/6028 1124/9325/6029 1125/9326/6030\nf 1125/9327/6031 1113/9328/6032 1115/9329/6033\nf 1113/9330/6034 1125/9331/6035 1126/9332/6036\nf 1127/9333/6037 1122/9334/6038 1123/9335/6039\nf 1123/9336/6040 1128/9337/6041 1127/9338/6042\nf 1129/9339/6043 1121/9340/6044 1122/9341/6045\nf 1122/9342/6046 1127/9343/6047 1129/9344/6048\nf 11031/9345/6049 1129/9346/6050 1127/9347/6051\nf 1127/9348/6052 11032/9349/6053 11031/9350/6054\nf 11032/9351/6055 1127/9352/6056 1128/9353/6057\nf 1128/9354/6058 1285/9355/6059 11032/9356/6060\nf 1132/9357/6061 1124/9358/6062 1121/9359/6063\nf 1121/9360/6064 1129/9361/6065 1132/9362/6066\nf 1129/9363/6067 11031/9364/6068 1283/9365/6069\nf 1283/9366/6070 1132/9367/6071 1129/9368/6072\nf 1133/9369/6073 1125/9370/6074 1124/9371/6075\nf 1124/9372/6076 1132/9373/6077 1133/9374/6078\nf 1132/9375/6079 1283/9376/6080 11035/9377/6081\nf 11035/9378/6082 1133/9379/6083 1132/9380/6084\nf 1135/9381/6085 1126/9382/6086 1125/9383/6087\nf 1125/9384/6088 1133/9385/6089 1135/9386/6090\nf 1133/9387/6091 11035/9388/6092 11036/9389/6093\nf 11036/9390/6094 1135/9391/6095 1133/9392/6096\nf 1135/9393/6097 11036/9394/6098 11052/9395/6099\nf 11052/9396/6100 11054/9397/6101 1135/9398/6102\nf 11170/9399/6103 1135/9400/6104 11054/9401/6105\nf 1126/9402/6106 1135/9403/6107 11170/9404/6108\nf 11170/9405/6109 1140/9406/6110 1126/9407/6111\nf 11170/9408/6112 11155/9409/6113 1140/9410/6114\nf 1140/9411/6115 11155/9412/6116 11086/9413/6117\nf 11086/9414/6118 1143/9415/6119 1140/9416/6120\nf 1143/9417/6121 11086/9418/6122 11088/9419/6123\nf 1109/9420/6124 1143/9421/6125 11088/9422/6126\nf 11088/9423/6127 1145/9424/6128 1109/9425/6129\nf 1143/9426/6130 1109/9427/6131 1111/9428/6132\nf 1111/9429/6133 1146/9430/6134 1143/9431/6135\nf 1140/9432/6136 1143/9433/6137 1146/9434/6138\nf 1146/9435/6139 1111/9436/6140 1112/9437/6141\nf 1112/9438/6142 1126/9439/6143 1146/9440/6144\nf 1126/9441/6145 1140/9442/6146 1146/9443/6147\nf 1126/9444/6148 1112/9445/6149 1113/9446/6150\nf 1109/9447/6151 1145/9448/6152 1147/9449/6153\nf 1147/9450/6154 1108/9451/6155 1109/9452/6156\nf 1108/9453/6157 1147/9454/6158 1148/9455/6159\nf 1148/9456/6160 1107/9457/6161 1108/9458/6162\nf 1107/9459/6163 1148/9460/6164 1149/9461/6165\nf 1149/9462/6166 1105/9463/6167 1107/9464/6168\nf 1105/9465/6169 1149/9466/6170 1150/9467/6171\nf 1150/9468/6172 1104/9469/6173 1105/9470/6174\nf 1104/9471/6175 1150/9472/6176 1151/9473/6177\nf 1151/9474/6178 1102/9475/6179 1104/9476/6180\nf 1102/9477/6181 1151/9478/6182 1093/9479/6183\nf 1152/9480/6184 1149/9481/6185 1148/9482/6186\nf 1148/9483/6187 1153/9484/6188 1152/9485/6189\nf 8860/9486/6190 1152/9487/6191 1153/9488/6192\nf 1153/9489/6193 10750/9490/6194 8860/9491/6195\nf 1155/9492/6196 1150/9493/6197 1149/9494/6198\nf 1149/9495/6199 1152/9496/6200 1155/9497/6201\nf 1152/9498/6202 8860/9499/6203 8859/9500/6204\nf 8859/9501/6205 1155/9502/6206 1152/9503/6207\nf 1156/9504/6208 1151/9505/6209 1150/9506/6210\nf 1150/9507/6211 1155/9508/6212 1156/9509/6213\nf 1155/9510/6214 8859/9511/6215 8989/9512/6216\nf 8989/9513/6217 1156/9514/6218 1155/9515/6219\nf 1157/9516/6220 1093/9517/6221 1151/9518/6222\nf 1151/9519/6223 1156/9520/6224 1157/9521/6225\nf 1093/9522/6226 1157/9523/6227 1158/9524/6228\nf 1158/9525/6229 1092/9526/6230 1093/9527/6231\nf 1092/9528/6232 1158/9529/6233 1159/9530/6234\nf 1159/9531/6235 1091/9532/6236 1092/9533/6237\nf 8928/9534/6238 1159/9535/6239 1158/9536/6240\nf 1158/9537/6241 8929/9538/6242 8928/9539/6243\nf 8929/9540/6244 1158/9541/6245 1157/9542/6246\nf 1157/9543/6247 12276/9544/6248 8929/9545/6249\nf 1156/9546/6250 8989/9547/6251 12276/9548/6252\nf 12276/9549/6253 1157/9550/6254 1156/9551/6255\nf 1091/9552/6256 1159/9553/6257 1161/9554/6258\nf 1161/9555/6259 1096/9556/6260 1091/9557/6261\nf 12328/9558/6262 1161/9559/6263 1159/9560/6264\nf 1159/9561/6265 8928/9562/6266 12328/9563/6267\nf 10750/9564/6268 1153/9565/6269 1316/9566/6270\nf 1153/9567/6271 12363/9568/6272 1316/9569/6273\nf 1164/9570/6274 12363/9571/6275 1153/9572/6276\nf 1153/9573/6277 1148/9574/6278 1164/9575/6279\nf 1147/9576/6280 1164/9577/6281 1148/9578/6282\nf 1164/9579/6283 10142/9580/6284 12363/9581/6285\nf 1145/9582/6286 1164/9583/6287 1147/9584/6288\nf 10140/9585/6289 10142/9586/6290 1164/9587/6291\nf 1164/9588/6292 1145/9589/6293 10140/9590/6294\nf 11088/9591/6295 10140/9592/6296 1145/9593/6297\nf 1316/9594/6298 10751/9595/6299 10750/9596/6300\nf 9117/9597/6301 10507/9598/6302 10506/9599/6303\nf 10506/9600/6304 1275/9601/6305 9117/9602/6306\nf 1275/9603/6307 10506/9604/6308 1288/9605/6309\nf 1288/9606/6310 1168/9607/6311 1275/9608/6312\nf 1168/9609/6313 1288/9610/6314 1289/9611/6315\nf 1289/9612/6316 1282/9613/6317 1168/9614/6318\nf 10507/9615/6319 9117/9616/6320 11986/9617/6321\nf 11986/9618/6322 1292/9619/6323 10507/9620/6324\nf 1292/9621/6325 11986/9622/6326 11960/9623/6327\nf 11960/9624/6328 11889/9625/6329 1292/9626/6330\nf 11889/9627/6331 11960/9628/6332 11864/9629/6333\nf 11864/9630/6334 11890/9631/6335 11889/9632/6336\nf 11890/9633/6337 11864/9634/6338 11865/9635/6339\nf 11865/9636/6340 1295/9637/6341 11890/9638/6342\nf 1295/9639/6343 11865/9640/6344 11885/9641/6345\nf 11885/9642/6346 12173/9643/6347 1295/9644/6348\nf 12173/9645/6349 11885/9646/6350 10043/9647/6351\nf 10043/9648/6352 8868/9649/6353 12173/9650/6354\nf 8868/9651/6355 10043/9652/6356 10595/9653/6357\nf 10595/9654/6358 8869/9655/6359 8868/9656/6360\nf 8869/9657/6361 10595/9658/6362 10596/9659/6363\nf 10596/9660/6364 12226/9661/6365 8869/9662/6366\nf 12226/9663/6367 10596/9664/6368 10615/9665/6369\nf 10615/9666/6370 1301/9667/6371 12226/9668/6372\nf 1301/9669/6373 10615/9670/6374 1284/9671/6375\nf 1284/9672/6376 1303/9673/6377 1301/9674/6378\nf 1303/9675/6379 1284/9676/6380 10757/9677/6381\nf 10757/9678/6382 10774/9679/6383 1303/9680/6384\nf 10774/9681/6385 10757/9682/6386 10758/9683/6387\nf 1184/9684/6388 10774/9685/6389 10758/9686/6390\nf 1184/9687/6391 10695/9688/6392 10774/9689/6393\nf 10695/9690/6394 1184/9691/6395 1186/9692/6396\nf 1186/9693/6397 10696/9694/6398 10695/9695/6399\nf 1188/9696/6400 1190/9697/6401 1189/9698/6402\nf 1189/9699/6403 1191/9700/6404 1188/9701/6405\nf 1191/9702/6406 1189/9703/6407 1192/9704/6408\nf 1192/9705/6409 1193/9706/6410 1191/9707/6411\nf 1193/9708/6412 1192/9709/6413 1194/9710/6414\nf 1194/9711/6415 1195/9712/6416 1193/9713/6417\nf 1195/9714/6418 1194/9715/6419 1196/9716/6420\nf 1196/9717/6421 1197/9718/6422 1195/9719/6423\nf 1197/9720/6424 1196/9721/6425 1198/9722/6426\nf 1198/9723/6427 1199/9724/6428 1197/9725/6429\nf 1199/9726/6430 1198/9727/6431 1200/9728/6432\nf 1200/9729/6433 1201/9730/6434 1199/9731/6435\nf 1201/9732/6436 1200/9733/6437 1202/9734/6438\nf 1202/9735/6439 1203/9736/6440 1201/9737/6441\nf 1203/9738/6442 1202/9739/6443 1204/9740/6444\nf 1204/9741/6445 1205/9742/6446 1203/9743/6447\nf 1205/9744/6448 1204/9745/6449 1206/9746/6450\nf 1206/9747/6451 1207/9748/6452 1205/9749/6453\nf 1207/9750/6454 1206/9751/6455 1208/9752/6456\nf 1208/9753/6457 1209/9754/6458 1207/9755/6459\nf 1209/9756/6460 1208/9757/6461 1210/9758/6462\nf 1210/9759/6463 1211/9760/6464 1209/9761/6465\nf 1211/9762/6466 1210/9763/6467 1212/9764/6468\nf 1212/9765/6469 1213/9766/6470 1211/9767/6471\nf 1213/9768/6472 1212/9769/6473 1214/9770/6474\nf 1214/9771/6475 1215/9772/6476 1213/9773/6477\nf 1215/9774/6478 1214/9775/6479 1216/9776/6480\nf 1216/9777/6481 1217/9778/6482 1215/9779/6483\nf 1218/9780/6484 1215/9781/6485 1217/9782/6486\nf 1217/9783/6487 1219/9784/6488 1218/9785/6489\nf 1215/9786/6490 1218/9787/6491 1220/9788/6492\nf 1220/9789/6493 1213/9790/6494 1215/9791/6495\nf 1213/9792/6496 1220/9793/6497 1221/9794/6498\nf 1221/9795/6499 1211/9796/6500 1213/9797/6501\nf 1211/9798/6502 1221/9799/6503 1222/9800/6504\nf 1222/9801/6505 1209/9802/6506 1211/9803/6507\nf 1209/9804/6508 1222/9805/6509 1223/9806/6510\nf 1223/9807/6511 1207/9808/6512 1209/9809/6513\nf 1207/9810/6514 1223/9811/6515 1224/9812/6516\nf 1224/9813/6517 1205/9814/6518 1207/9815/6519\nf 1205/9816/6520 1224/9817/6521 1225/9818/6522\nf 1225/9819/6523 1203/9820/6524 1205/9821/6525\nf 1203/9822/6526 1225/9823/6527 1226/9824/6528\nf 1226/9825/6529 1201/9826/6530 1203/9827/6531\nf 1201/9828/6532 1226/9829/6533 1227/9830/6534\nf 1227/9831/6535 1199/9832/6536 1201/9833/6537\nf 1199/9834/6538 1227/9835/6539 1228/9836/6540\nf 1228/9837/6541 1197/9838/6542 1199/9839/6543\nf 1197/9840/6544 1228/9841/6545 1229/9842/6546\nf 1229/9843/6547 1195/9844/6548 1197/9845/6549\nf 1195/9846/6550 1229/9847/6551 1230/9848/6552\nf 1230/9849/6553 1193/9850/6554 1195/9851/6555\nf 1193/9852/6556 1230/9853/6557 1231/9854/6558\nf 1231/9855/6559 1191/9856/6560 1193/9857/6561\nf 1100/9858/6562 1099/9859/6563 1232/9860/6564\nf 1232/9861/6565 1085/9862/6566 1100/9863/6567\nf 1085/9864/6568 1232/9865/6569 1233/9866/6570\nf 1233/9867/6571 1086/9868/6572 1085/9869/6573\nf 1086/9870/6574 1233/9871/6575 1234/9872/6576\nf 1234/9873/6577 1077/9874/6578 1086/9875/6579\nf 1261/9876/6580 12964/9877/6581 1052/9878/6582\nf 1052/9879/6583 1055/9880/6584 1261/9881/6585\nf 1057/9882/6586 13003/9883/6587 1261/9884/6588\nf 1261/9885/6589 1055/9886/6590 1057/9887/6591\nf 1059/9888/6592 1267/9889/6593 13003/9890/6594\nf 13003/9891/6595 1057/9892/6596 1059/9893/6597\nf 12748/9894/6598 12753/9895/6599 1267/9896/6600\nf 1267/9897/6601 1059/9898/6602 12748/9899/6603\nf 9617/9900/6604 12721/9901/6605 12753/9902/6606\nf 12753/9903/6607 12748/9904/6608 9617/9905/6609\nf 9616/9906/6610 12707/9907/6611 12721/9908/6612\nf 12721/9909/6613 9617/9910/6614 9616/9911/6615\nf 1244/9912/6616 11686/9913/6617 12707/9914/6618\nf 12707/9915/6619 9616/9916/6620 1244/9917/6621\nf 1243/9918/6622 11685/9919/6623 11686/9920/6624\nf 11686/9921/6625 1244/9922/6626 1243/9923/6627\nf 1073/9924/6628 12737/9925/6629 11685/9926/6630\nf 11685/9927/6631 1243/9928/6632 1073/9929/6633\nf 1247/9930/6634 11732/9931/6635 12737/9932/6636\nf 12737/9933/6637 1073/9934/6638 1247/9935/6639\nf 1246/9936/6640 11731/9937/6641 11732/9938/6642\nf 11732/9939/6643 1247/9940/6644 1246/9941/6645\nf 12623/9942/6646 12635/9943/6647 11731/9944/6648\nf 11731/9945/6649 1246/9946/6650 12623/9947/6651\nf 12604/9948/6652 9451/9949/6653 12635/9950/6654\nf 12635/9951/6655 12623/9952/6656 12604/9953/6657\nf 12604/9954/6658 1067/9955/6659 9450/9956/6660\nf 9450/9957/6661 9451/9958/6662 12604/9959/6663\nf 1067/9960/6664 1253/9961/6665 12562/9962/6666\nf 12562/9963/6667 9450/9964/6668 1067/9965/6669\nf 1257/9966/6670 1262/9967/6671 12562/9968/6672\nf 12562/9969/6673 1253/9970/6674 1257/9971/6675\nf 1255/9972/6676 13295/9973/6677 1262/9974/6678\nf 1262/9975/6679 1257/9976/6680 1255/9977/6681\nf 13309/9978/6682 13313/9979/6683 13295/9980/6684\nf 13295/9981/6685 1255/9982/6686 13309/9983/6687\nf 1052/9984/6688 12964/9985/6689 13313/9986/6690\nf 13313/9987/6691 13309/9988/6692 1052/9989/6693\nf 1260/9990/6694 12963/9991/6695 1236/9992/6696\nf 1235/9993/6697 12963/9994/6698 1260/9995/6699\nf 1260/9996/6700 1259/9997/6701 1235/9998/6702\nf 1256/9999/6703 1259/10000/6704 1260/10001/6705\nf 1260/10002/6706 12563/10003/6707 1256/10004/6708\nf 1254/10005/6709 12563/10006/6710 1260/10007/6711\nf 1260/10008/6712 1251/10009/6713 1254/10010/6714\nf 1260/10011/6715 1249/10012/6716 1251/10013/6717\nf 1249/10014/6718 1252/10015/6719 1251/10016/6720\nf 1260/10017/6721 1263/10018/6722 1249/10019/6723\nf 1264/10020/6724 1263/10021/6725 1260/10022/6726\nf 1260/10023/6727 1245/10024/6728 1264/10025/6729\nf 1265/10026/6730 1245/10027/6731 1260/10028/6732\nf 1260/10029/6733 1266/10030/6734 1265/10031/6735\nf 1242/10032/6736 1266/10033/6737 1260/10034/6738\nf 1260/10035/6739 1240/10036/6740 1242/10037/6741\nf 1237/10038/6742 1240/10039/6743 1260/10040/6744\nf 1260/10041/6745 12752/10042/6746 1237/10043/6747\nf 1236/10044/6748 12752/10045/6749 1260/10046/6750\nf 1286/10047/6751 1189/10048/6752 1190/10049/6753\nf 1190/10050/6754 12094/10051/6755 1286/10052/6756\nf 12094/10053/6757 1190/10054/6758 1269/10055/6759\nf 1269/10056/6760 1287/10057/6761 12094/10058/6762\nf 12131/10059/6763 1287/10060/6764 1269/10061/6765\nf 1189/10062/6766 1286/10063/6767 8725/10064/6768\nf 8725/10065/6769 1192/10066/6770 1189/10067/6771\nf 1192/10068/6772 8725/10069/6773 12366/10070/6774\nf 12366/10071/6775 1194/10072/6776 1192/10073/6777\nf 1194/10074/6778 12366/10075/6779 1294/10076/6780\nf 1294/10077/6781 1196/10078/6782 1194/10079/6783\nf 1196/10080/6784 1294/10081/6785 11817/10082/6786\nf 11817/10083/6787 1198/10084/6788 1196/10085/6789\nf 1198/10086/6790 11817/10087/6791 11818/10088/6792\nf 11818/10089/6793 1200/10090/6794 1198/10091/6795\nf 1200/10092/6796 11818/10093/6797 1296/10094/6798\nf 1296/10095/6799 1202/10096/6800 1200/10097/6801\nf 1202/10098/6802 1296/10099/6803 8879/10100/6804\nf 8879/10101/6805 1204/10102/6806 1202/10103/6807\nf 1204/10104/6808 8879/10105/6809 8880/10106/6810\nf 8880/10107/6811 1206/10108/6812 1204/10109/6813\nf 1206/10110/6814 8880/10111/6815 1302/10112/6816\nf 1302/10113/6817 1208/10114/6818 1206/10115/6819\nf 1208/10116/6820 1302/10117/6821 10152/10118/6822\nf 10152/10119/6823 1210/10120/6824 1208/10121/6825\nf 1210/10122/6826 10152/10123/6827 10153/10124/6828\nf 10153/10125/6829 1212/10126/6830 1210/10127/6831\nf 1212/10128/6832 10153/10129/6833 12302/10130/6834\nf 12302/10131/6835 1214/10132/6836 1212/10133/6837\nf 1214/10134/6838 12302/10135/6839 12309/10136/6840\nf 12309/10137/6841 1216/10138/6842 1214/10139/6843\nf 9116/10140/6844 12333/10141/6845 1276/10142/6846\nf 1276/10143/6847 1277/10144/6848 9116/10145/6849\nf 9116/10146/6850 1277/10147/6851 1160/10148/6852\nf 1160/10149/6853 1278/10150/6854 9116/10151/6855\nf 1169/10152/6856 1278/10153/6857 1160/10154/6858\nf 1160/10155/6859 1279/10156/6860 1169/10157/6861\nf 1170/10158/6862 1169/10159/6863 1279/10160/6864\nf 1279/10161/6865 1280/10162/6866 1170/10163/6867\nf 1172/10164/6868 1170/10165/6869 1280/10166/6870\nf 1280/10167/6871 1281/10168/6872 1172/10169/6873\nf 1174/10170/6874 1172/10171/6875 1281/10172/6876\nf 1281/10173/6877 1154/10174/6878 1174/10175/6879\nf 1162/10176/6880 1276/10177/6881 12333/10178/6882\nf 12333/10179/6883 12334/10180/6884 1162/10181/6885\nf 11886/10182/6886 1174/10183/6887 1154/10184/6888\nf 1154/10185/6889 10752/10186/6890 11886/10187/6891\nf 1178/10188/6892 1177/10189/6893 1136/10190/6894\nf 1136/10191/6895 1134/10192/6896 1178/10193/6897\nf 1180/10194/6898 1178/10195/6899 1134/10196/6900\nf 1134/10197/6901 12678/10198/6902 1180/10199/6903\nf 12093/10200/6904 1180/10201/6905 12678/10202/6906\nf 12678/10203/6907 1130/10204/6908 12093/10205/6909\nf 1181/10206/6910 12093/10207/6911 1130/10208/6912\nf 1130/10209/6913 1131/10210/6914 1181/10211/6915\nf 1181/10212/6916 1131/10213/6917 12166/10214/6918\nf 12166/10215/6919 1183/10216/6920 1181/10217/6921\nf 11053/10218/6922 1136/10219/6923 1177/10220/6924\nf 1177/10221/6925 1313/10222/6926 11053/10223/6927\nf 1166/10224/6928 1167/10225/6929 8724/10226/6930\nf 8724/10227/6931 1268/10228/6932 1166/10229/6933\nf 1166/10230/6934 1268/10231/6935 12095/10232/6936\nf 12095/10233/6937 8779/10234/6938 1166/10235/6939\nf 1270/10236/6940 8779/10237/6941 12095/10238/6942\nf 1270/10239/6943 8780/10240/6944 8779/10241/6945\nf 1270/10242/6946 1290/10243/6947 8780/10244/6948\nf 1270/10245/6949 1291/10246/6950 1290/10247/6951\nf 8724/10248/6952 1167/10249/6953 12423/10250/6954\nf 12423/10251/6955 1293/10252/6956 8724/10253/6957\nf 1293/10254/6958 12423/10255/6959 1171/10256/6960\nf 1171/10257/6961 1271/10258/6962 1293/10259/6963\nf 1271/10260/6964 1171/10261/6965 1173/10262/6966\nf 1173/10263/6967 12345/10264/6968 1271/10265/6969\nf 12345/10266/6970 1173/10267/6971 12172/10268/6972\nf 12172/10269/6973 1272/10270/6974 12345/10271/6975\nf 1273/10272/6976 1272/10273/6977 12172/10274/6978\nf 12172/10275/6979 1176/10276/6980 1273/10277/6981\nf 8881/10278/6982 1273/10279/6983 1176/10280/6984\nf 1176/10281/6985 1297/10282/6986 8881/10283/6987\nf 8881/10284/6988 1297/10285/6989 1298/10286/6990\nf 1298/10287/6991 1299/10288/6992 8881/10289/6993\nf 1299/10290/6994 1298/10291/6995 1179/10292/6996\nf 1179/10293/6997 1300/10294/6998 1299/10295/6999\nf 1300/10296/7000 1179/10297/7001 10240/10298/7002\nf 10240/10299/7003 10170/10300/7004 1300/10301/7005\nf 10170/10302/7006 10240/10303/7007 10241/10304/7008\nf 10241/10305/7009 1304/10306/7010 10170/10307/7011\nf 1304/10308/7012 10241/10309/7013 1182/10310/7014\nf 1182/10311/7015 1305/10312/7016 1304/10313/7017\nf 1305/10314/7018 1182/10315/7019 1185/10316/7020\nf 1185/10317/7021 1274/10318/7022 1305/10319/7023\nf 1306/10320/7024 1274/10321/7025 1185/10322/7026\nf 1185/10323/7027 1187/10324/7028 1306/10325/7029\nf 1144/10326/7030 11087/10327/7031 10188/10328/7032\nf 1144/10329/7033 10188/10330/7034 10190/10331/7035\nf 1144/10332/7036 10190/10333/7037 10141/10334/7038\nf 10189/10335/7039 1142/10336/7040 11156/10337/7041\nf 11156/10338/7042 10126/10339/7043 10189/10340/7044\nf 10125/10341/7045 1141/10342/7046 1139/10343/7047\nf 1139/10344/7048 10059/10345/7049 10125/10346/7050\nf 10059/10347/7051 1139/10348/7052 1138/10349/7053\nf 1138/10350/7054 10041/10351/7055 10059/10352/7056\nf 10041/10353/7057 1138/10354/7058 1137/10355/7059\nf 1137/10356/7060 10042/10357/7061 10041/10358/7062\nf 1309/10359/7063 10191/10360/7064 1318/10361/7065\nf 1318/10362/7066 1314/10363/7067 1309/10364/7068\nf 10143/10365/7069 9204/10366/7070 9203/10367/7071\nf 9203/10368/7072 1163/10369/7073 10143/10370/7074\nf 1163/10371/7075 9203/10372/7076 12254/10373/7077\nf 12254/10374/7078 12412/10375/7079 1163/10376/7080\nf 12412/10377/7081 12254/10378/7082 1175/10379/7083\nf 1175/10380/7084 1165/10381/7085 12412/10382/7086\nf 11885/10383/7087 1315/10384/7088 1312/10385/7089\nf 1312/10386/7090 10043/10387/7091 11885/10388/7092\nf 1307/10389/7093 1312/10390/7094 1315/10391/7095\nf 1307/10392/7096 1310/10393/7097 1312/10394/7098\nf 1310/10395/7099 1311/10396/7100 1312/10397/7101\nf 1307/10398/7102 1315/10399/7103 1317/10400/7104\nf 1307/10401/7105 1317/10402/7106 9205/10403/7107\nf 1307/10404/7108 9205/10405/7109 1308/10406/7110\nf 1319/714/7111 9397/5923/7112 9248/3996/7113\nf 9248/3996/7114 1322/5183/7115 1319/714/7116\nf 1323/5534/7117 1322/5183/7118 9248/3996/7119\nf 9248/3996/7120 9249/2711/7121 1323/5534/7122\nf 1364/4176/7123 9397/5923/7124 1319/714/7125\nf 1319/714/7126 1347/3813/7127 1364/4176/7128\nf 1364/4176/7129 1347/3813/7130 1325/5425/7131\nf 1325/5425/7132 11372/5062/7133 1364/4176/7134\nf 1323/5534/7135 9249/2711/7136 1362/6236/7137\nf 1362/6236/7138 1326/1898/7139 1323/5534/7140\nf 1327/1127/7141 1326/1898/7142 1362/6236/7143\nf 1362/6236/7144 11404/4786/7145 1327/1127/7146\nf 1327/1127/7147 11404/4786/7148 9489/2282/7149\nf 9489/2282/7150 1329/555/7151 1327/1127/7152\nf 1330/5307/7153 1329/555/7154 9489/2282/7155\nf 9489/2282/7156 9467/3843/7157 1330/5307/7158\nf 1330/5307/7159 9467/3843/7160 9468/259/7161\nf 9468/259/7162 1333/690/7163 1330/5307/7164\nf 1334/2857/7165 1333/690/7166 9468/259/7167\nf 9468/259/7168 1370/6021/7169 1334/2857/7170\nf 1334/2857/7171 1370/6021/7172 11474/3851/7173\nf 11474/3851/7174 1336/1423/7175 1334/2857/7176\nf 1337/2272/7177 1336/1423/7178 11474/3851/7179\nf 11474/3851/7180 11442/301/7181 1337/2272/7182\nf 1337/2272/7183 11442/301/7184 11436/5730/7185\nf 11436/5730/7186 1340/3799/7187 1337/2272/7188\nf 1341/1137/7189 1340/3799/7190 11436/5730/7191\nf 11436/5730/7192 11437/4022/7193 1341/1137/7194\nf 1341/1137/7195 11437/4022/7196 11427/3870/7197\nf 11427/3870/7198 1343/337/7199 1341/1137/7200\nf 1325/3521/7201 1343/337/7202 11427/3870/7203\nf 11427/3870/7204 11372/3966/7205 1325/3521/7206\nf 1344/6192/7207 1343/337/7208 1325/3521/7209\nf 1341/1137/7210 1343/337/7211 1344/6192/7212\nf 1325/3521/7213 1345/5437/7214 1344/6192/7215\nf 1346/774/7216 1345/5437/7217 1325/3521/7218\nf 1325/3521/7219 1347/1775/7220 1346/774/7221\nf 1344/6192/7222 1348/3707/7223 1341/1137/7224\nf 1341/1137/7225 1348/3707/7226 1349/1491/7227\nf 1349/1491/7228 1340/3799/7229 1341/1137/7230\nf 1337/2272/7231 1340/3799/7232 1349/1491/7233\nf 1349/1491/7234 1350/1699/7235 1337/2272/7236\nf 1337/2272/7237 1350/1699/7238 1351/1380/7239\nf 1351/1380/7240 1336/1423/7241 1337/2272/7242\nf 1334/2857/7243 1336/1423/7244 1351/1380/7245\nf 1351/1380/7246 1352/4150/7247 1334/2857/7248\nf 1334/2857/7249 1352/4150/7250 1353/2051/7251\nf 1353/2051/7252 1333/690/7253 1334/2857/7254\nf 1330/5307/7255 1333/690/7256 1353/2051/7257\nf 1353/2051/7258 1354/2704/7259 1330/5307/7260\nf 1330/5307/7261 1354/2704/7262 1355/407/7263\nf 1355/407/7264 1329/555/7265 1330/5307/7266\nf 1327/1127/7267 1329/555/7268 1355/407/7269\nf 1355/407/7270 1356/2114/7271 1327/1127/7272\nf 1327/1127/7273 1356/2114/7274 1357/506/7275\nf 1357/506/7276 1326/1898/7277 1327/1127/7278\nf 1326/1898/7279 1357/506/7280 1358/903/7281\nf 1358/903/7282 1323/5534/7283 1326/1898/7284\nf 1323/5534/7285 1358/903/7286 1359/2520/7287\nf 1359/2520/7288 1322/5183/7289 1323/5534/7290\nf 1319/714/7291 1322/5183/7292 1359/2520/7293\nf 1359/2520/7294 1360/1670/7295 1319/714/7296\nf 1319/714/7297 1360/1670/7298 1346/6123/7299\nf 1346/6123/7300 1347/3813/7301 1319/714/7302\nf 11968/491/7303 11969/2809/7304 11403/4191/7305\nf 11403/4191/7306 1324/3290/7307 11968/491/7308\nf 9984/3457/7309 11968/491/7310 1324/3290/7311\nf 1324/3290/7312 1320/4293/7313 9984/3457/7314\nf 9985/1957/7315 9984/3457/7316 1320/4293/7317\nf 1320/4293/7318 1321/1658/7319 9985/1957/7320\nf 10032/6277/7321 9985/1957/7322 1321/1658/7323\nf 1321/1658/7324 11371/619/7325 10032/6277/7326\nf 12932/6267/7327 10032/6277/7328 11371/619/7329\nf 11371/619/7330 1366/4419/7331 12932/6267/7332\nf 10121/3235/7333 12932/6267/7334 1366/4419/7335\nf 1366/4419/7336 1367/777/7337 10121/3235/7338\nf 1406/2278/7339 10121/3235/7340 1367/777/7341\nf 1367/777/7342 1342/4978/7343 1406/2278/7344\nf 1368/5281/7345 1406/2278/7346 1342/4978/7347\nf 1342/4978/7348 1339/1221/7349 1368/5281/7350\nf 1404/872/7351 1368/5281/7352 1339/1221/7353\nf 1339/1221/7354 1338/3903/7355 1404/872/7356\nf 10287/2279/7357 1404/872/7358 1338/3903/7359\nf 1338/3903/7360 1335/3946/7361 10287/2279/7362\nf 12990/1409/7363 10287/2279/7364 1335/3946/7365\nf 1335/3946/7366 12534/6046/7367 12990/1409/7368\nf 10194/6496/7369 12990/1409/7370 12534/6046/7371\nf 12534/6046/7372 1332/490/7373 10194/6496/7374\nf 1399/4077/7375 10194/6496/7376 1332/490/7377\nf 1332/490/7378 1331/5290/7379 1399/4077/7380\nf 12891/1020/7381 1399/4077/7382 1331/5290/7383\nf 1331/5290/7384 1328/6249/7385 12891/1020/7386\nf 1396/949/7387 12891/1020/7388 1328/6249/7389\nf 1328/6249/7390 1372/2703/7391 1396/949/7392\nf 11969/2809/7393 1396/949/7394 1372/2703/7395\nf 1372/2703/7396 11403/4191/7397 11969/2809/7398\nf 11419/4453/7399 11046/4869/7400 1391/606/7401\nf 1391/606/7402 1375/2563/7403 11419/4453/7404\nf 11029/4598/7405 11419/4453/7406 1375/2563/7407\nf 1375/2563/7408 1377/1958/7409 11029/4598/7410\nf 11030/3659/7411 11029/4598/7412 1377/1958/7413\nf 1377/1958/7414 1394/1695/7415 11030/3659/7416\nf 10680/5165/7417 11030/3659/7418 1394/1695/7419\nf 1394/1695/7420 1410/1436/7421 10680/5165/7422\nf 1411/4168/7423 10680/5165/7424 1410/1436/7425\nf 1410/1436/7426 1379/5160/7427 1411/4168/7428\nf 1397/5748/7429 1391/606/7430 11046/4869/7431\nf 11046/4869/7432 11047/1941/7433 1397/5748/7434\nf 1398/1901/7435 1397/5748/7436 11047/1941/7437\nf 11047/1941/7438 11119/3512/7439 1398/1901/7440\nf 1382/429/7441 1398/1901/7442 11119/3512/7443\nf 11119/3512/7444 10885/691/7445 1382/429/7446\nf 1384/1062/7447 1382/429/7448 10885/691/7449\nf 10885/691/7450 10886/4287/7451 1384/1062/7452\nf 1401/988/7453 1384/1062/7454 10886/4287/7455\nf 10886/4287/7456 10925/162/7457 1401/988/7458\nf 1402/752/7459 1401/988/7460 10925/162/7461\nf 10925/162/7462 10721/376/7463 1402/752/7464\nf 1405/5924/7465 1402/752/7466 10721/376/7467\nf 10721/376/7468 1413/1810/7469 1405/5924/7470\nf 1387/2052/7471 1405/5924/7472 1413/1810/7473\nf 1413/1810/7474 10869/4443/7475 1387/2052/7476\nf 1407/1989/7477 1387/2052/7478 10869/4443/7479\nf 10869/4443/7480 10819/3436/7481 1407/1989/7482\nf 1408/397/7483 1407/1989/7484 10819/3436/7485\nf 10819/3436/7486 10820/3316/7487 1408/397/7488\nf 1379/5505/7489 1408/397/7490 10820/3316/7491\nf 10820/3316/7492 1411/1145/7493 1379/5505/7494\nf 1391/6030/7495 1363/1726/7496 1361/3398/7497\nf 1361/3398/7498 1375/1700/7499 1391/6030/7500\nf 1377/4226/7501 1375/1700/7502 1361/3398/7503\nf 1361/3398/7504 1392/660/7505 1377/4226/7506\nf 1377/4226/7507 1392/660/7508 1393/1842/7509\nf 1393/1842/7510 1394/3230/7511 1377/4226/7512\nf 1410/2670/7513 1394/3230/7514 1393/1842/7515\nf 1393/1842/7516 1395/2258/7517 1410/2670/7518\nf 12847/1768/7519 1363/1726/7520 1391/6030/7521\nf 1391/6030/7522 1397/3474/7523 12847/1768/7524\nf 12847/1768/7525 1397/3474/7526 1398/5111/7527\nf 1398/5111/7528 1371/396/7529 12847/1768/7530\nf 10193/288/7531 1371/396/7532 1398/5111/7533\nf 1398/5111/7534 1382/1714/7535 10193/288/7536\nf 10193/288/7537 1382/1714/7538 1384/6031/7539\nf 1384/6031/7540 1400/5166/7541 10193/288/7542\nf 1369/1833/7543 1400/5166/7544 1384/6031/7545\nf 1384/6031/7546 1401/3458/7547 1369/1833/7548\nf 1369/1833/7549 1401/3458/7550 1402/5198/7551\nf 1402/5198/7552 1403/3127/7553 1369/1833/7554\nf 10288/3958/7555 1403/3127/7556 1402/5198/7557\nf 1402/5198/7558 1405/1079/7559 10288/3958/7560\nf 10288/3958/7561 1405/1079/7562 1387/3391/7563\nf 1387/3391/7564 12949/4234/7565 10288/3958/7566\nf 10120/6544/7567 12949/4234/7568 1387/3391/7569\nf 1387/3391/7570 1407/1447/7571 10120/6544/7572\nf 10120/6544/7573 1407/1447/7574 1408/232/7575\nf 1408/232/7576 1409/2253/7577 10120/6544/7578\nf 1365/4637/7579 1409/2253/7580 1408/232/7581\nf 1408/232/7582 1379/4748/7583 1365/4637/7584\nf 1365/5540/7585 1379/4748/7586 1410/4152/7587\nf 1410/4152/7588 1395/3245/7589 1365/5540/7590\nf 1373/2982/7591 1376/4099/7592 1378/4774/7593\nf 1373/2982/7594 1378/4774/7595 10679/2249/7596\nf 1378/4774/7597 1412/4542/7598 10679/2249/7599\nf 1373/2982/7600 10679/2249/7601 10720/5104/7602\nf 10679/2249/7603 1389/6408/7604 10720/5104/7605\nf 10679/2249/7606 1390/1399/7607 1389/6408/7608\nf 1389/6408/7609 1388/343/7610 10720/5104/7611\nf 1373/2982/7612 10720/5104/7613 1383/1583/7614\nf 10720/5104/7615 1386/218/7616 1383/1583/7617\nf 10720/5104/7618 1414/163/7619 1386/218/7620\nf 1386/218/7621 1385/3600/7622 1383/1583/7623\nf 1373/2982/7624 1383/1583/7625 1380/2718/7626\nf 1383/1583/7627 1381/5353/7628 1380/2718/7629\nf 1374/2015/7630 1373/2982/7631 1380/2718/7632\nf 1415/6278/7633 1416/2838/7634 1483/3797/7635\nf 1483/3797/7636 1482/2318/7637 1415/6278/7638\nf 1417/3846/7639 1415/6278/7640 1482/2318/7641\nf 1482/2318/7642 1481/5588/7643 1417/3846/7644\nf 1415/6278/7645 1417/3846/7646 1418/770/7647\nf 1418/770/7648 1419/697/7649 1415/6278/7650\nf 1416/2838/7651 1415/6278/7652 1419/697/7653\nf 1419/697/7654 1420/704/7655 1416/2838/7656\nf 1484/2917/7657 1483/3797/7658 1416/2838/7659\nf 1416/2838/7660 1421/5737/7661 1484/2917/7662\nf 1421/5737/7663 1416/2838/7664 1420/704/7665\nf 1420/704/7666 1422/391/7667 1421/5737/7668\nf 1422/391/7669 1420/704/7670 1423/4418/7671\nf 1423/4418/7672 1420/704/7673 1419/697/7674\nf 1423/4418/7675 1472/1669/7676 1422/391/7677\nf 1472/1669/7678 1466/378/7679 1422/391/7680\nf 1472/1669/7681 1467/1256/7682 1466/378/7683\nf 1472/1669/7684 1424/3180/7685 1467/1256/7686\nf 1422/391/7687 1466/378/7688 1425/286/7689\nf 1425/286/7690 1421/5737/7691 1422/391/7692\nf 1425/286/7693 1484/2917/7694 1421/5737/7695\nf 1474/1324/7696 1419/697/7697 1418/770/7698\nf 1419/697/7699 1474/1324/7700 1423/4418/7701\nf 1418/770/7702 1426/109/7703 1474/1324/7704\nf 1425/286/7705 1470/4996/7706 1484/2917/7707\nf 1425/286/7708 1468/2256/7709 1470/4996/7710\nf 1477/1766/7711 1426/109/7712 1418/770/7713\nf 1418/770/7714 1427/3272/7715 1477/1766/7716\nf 1479/3858/7717 1477/1766/7718 1427/3272/7719\nf 1427/3272/7720 1428/977/7721 1479/3858/7722\nf 1429/3268/7723 1427/3272/7724 1418/770/7725\nf 1418/770/7726 1417/3846/7727 1429/3268/7728\nf 1430/338/7729 1429/3268/7730 1417/3846/7731\nf 1417/3846/7732 1481/5588/7733 1430/338/7734\nf 1429/3268/7735 1430/338/7736 1431/4923/7737\nf 1431/4923/7738 1432/5537/7739 1429/3268/7740\nf 1432/5537/7741 1428/977/7742 1427/3272/7743\nf 1427/3272/7744 1429/3268/7745 1432/5537/7746\nf 1433/1966/7747 10719/3665/7748 10735/6448/7749\nf 10735/6448/7750 1436/1826/7751 1433/1966/7752\nf 1463/1824/7753 1436/1826/7754 10735/6448/7755\nf 10735/6448/7756 10765/191/7757 1463/1824/7758\nf 10719/3665/7759 1433/1966/7760 1438/3533/7761\nf 1438/3533/7762 10649/4402/7763 10719/3665/7764\nf 10649/4402/7765 1438/3533/7766 1440/6521/7767\nf 1440/6521/7768 10588/4427/7769 10649/4402/7770\nf 10589/2403/7771 10588/4427/7772 1440/6521/7773\nf 1440/6521/7774 1443/4005/7775 10589/2403/7776\nf 10589/2403/7777 1443/4005/7778 1444/1934/7779\nf 1444/1934/7780 10593/2784/7781 10589/2403/7782\nf 11767/5724/7783 10593/2784/7784 1444/1934/7785\nf 1444/1934/7786 1447/5411/7787 11767/5724/7788\nf 11768/10407/7789 11769/10408/7790 1448/5548/7791\nf 1448/5548/7792 1480/3728/7793 11768/10409/7794\nf 11010/10410/7795 13325/10411/7796 1449/3617/7797\nf 1449/3617/7798 1478/23/7799 11010/10412/7800\nf 1476/3999/7801 1478/23/7802 1449/3617/7803\nf 1449/3617/7804 1450/2960/7805 1476/3999/7806\nf 1475/193/7807 1476/3999/7808 1450/2960/7809\nf 1450/2960/7810 1451/515/7811 1475/193/7812\nf 13198/1116/7813 1475/193/7814 1451/515/7815\nf 1451/515/7816 1453/2135/7817 13198/1116/7818\nf 13198/1116/7819 1453/2135/7820 1454/1047/7821\nf 1454/1047/7822 13197/4838/7823 13198/1116/7824\nf 13197/4838/7825 1454/1047/7826 1455/1846/7827\nf 1455/1846/7828 13195/4356/7829 13197/4838/7830\nf 13195/4356/7831 1455/1846/7832 1457/4845/7833\nf 1457/4845/7834 1471/6301/7835 13195/4356/7836\nf 13185/4463/7837 1471/6301/7838 1457/4845/7839\nf 1457/4845/7840 1459/4387/7841 13185/4463/7842\nf 1464/1150/7843 13185/4463/7844 1459/4387/7845\nf 1459/4387/7846 1460/3979/7847 1464/1150/7848\nf 1464/1150/7849 1460/3979/7850 1461/5249/7851\nf 1461/5249/7852 1465/5708/7853 1464/1150/7854\nf 11592/10413/7855 13316/10414/7856 1462/4821/7857\nf 1462/4821/7858 1469/3609/7859 11592/10415/7860\nf 1437/1935/7861 1469/3609/7862 1462/4821/7863\nf 1462/4821/7864 13127/566/7865 1437/1935/7866\nf 11658/10416/7867 11593/10417/7868 1425/4719/7869\nf 1425/4719/7870 1466/4772/7871 11658/10418/7872\nf 1458/10419/7873 11658/10420/7874 1466/4772/7875\nf 1466/4772/7876 1467/1175/7877 1458/10421/7878\nf 1468/2395/7879 1425/4719/7880 11593/10422/7881\nf 11593/10423/7882 11594/10424/7883 1468/2395/7884\nf 1470/6224/7885 1468/2395/7886 11594/10425/7887\nf 11594/10426/7888 10766/10427/7889 1470/6224/7890\nf 13186/10428/7891 1458/10429/7892 1467/1175/7893\nf 1467/1175/7894 1424/2183/7895 13186/10430/7896\nf 1456/10431/7897 13186/10432/7898 1424/2183/7899\nf 1424/2183/7900 1472/563/7901 1456/10433/7902\nf 1456/10434/7903 1472/563/7904 1423/5110/7905\nf 1423/5110/7906 1473/10435/7907 1456/10436/7908\nf 1452/10437/7909 1473/10438/7910 1423/5110/7911\nf 1423/5110/7912 1474/556/7913 1452/10439/7914\nf 11067/10440/7915 1452/10441/7916 1474/556/7917\nf 1474/556/7918 1426/810/7919 11067/10442/7920\nf 11025/10443/7921 11067/10444/7922 1426/810/7923\nf 1426/810/7924 1477/1026/7925 11025/10445/7926\nf 11008/10446/7927 11025/10447/7928 1477/1026/7929\nf 1477/1026/7930 1479/1449/7931 11008/10448/7932\nf 11009/10449/7933 11008/10450/7934 1479/1449/7935\nf 1479/1449/7936 1428/3289/7937 11009/10451/7938\nf 11009/10452/7939 1428/3289/7940 1432/5171/7941\nf 1432/5171/7942 1446/10453/7943 11009/10454/7944\nf 1445/10455/7945 1446/10456/7946 1432/5171/7947\nf 1432/5171/7948 1431/6377/7949 1445/10457/7950\nf 1442/10458/7951 1445/10459/7952 1431/6377/7953\nf 1431/6377/7954 1430/98/7955 1442/10460/7956\nf 1441/10461/7957 1442/10462/7958 1430/98/7959\nf 1430/98/7960 1481/4521/7961 1441/10463/7962\nf 1439/10464/7963 1441/10465/7964 1481/4521/7965\nf 1481/4521/7966 1482/6543/7967 1439/10466/7968\nf 1439/10467/7969 1482/6543/7970 1483/3090/7971\nf 1483/3090/7972 1435/10468/7973 1439/10469/7974\nf 1435/10470/7975 1483/3090/7976 1484/5196/7977\nf 1484/5196/7978 1434/10471/7979 1435/10472/7980\nf 10766/10473/7981 1434/10474/7982 1484/5196/7983\nf 1484/5196/7984 1470/3446/7985 10766/10475/7986\nf 1485/706/7987 9842/3547/7988 9824/5008/7989\nf 9824/5008/7990 1488/1848/7991 1485/706/7992\nf 1489/2150/7993 1488/1848/7994 9824/5008/7995\nf 9824/5008/7996 9825/2513/7997 1489/2150/7998\nf 1526/4128/7999 9842/3547/8000 1485/706/8001\nf 1485/706/8002 1512/24/8003 1526/4128/8004\nf 1489/2150/8005 9825/2513/8006 1527/2034/8007\nf 1527/2034/8008 1491/4734/8009 1489/2150/8010\nf 1492/2801/8011 1491/4734/8012 1527/2034/8013\nf 1527/2034/8014 9181/5541/8015 1492/2801/8016\nf 1492/2801/8017 9181/5541/8018 9180/387/8019\nf 9180/387/8020 1493/3214/8021 1492/2801/8022\nf 1494/6259/8023 1493/3214/8024 9180/387/8025\nf 9180/387/8026 12498/4062/8027 1494/6259/8028\nf 1494/6259/8029 12498/4062/8030 9123/2989/8031\nf 9123/2989/8032 1496/757/8033 1494/6259/8034\nf 1497/6522/8035 1496/757/8036 9123/2989/8037\nf 9123/2989/8038 9122/2623/8039 1497/6522/8040\nf 1497/6522/8041 9122/2623/8042 12380/5127/8043\nf 12380/5127/8044 1499/1273/8045 1497/6522/8046\nf 1500/593/8047 1499/1273/8048 12380/5127/8049\nf 12380/5127/8050 12379/435/8051 1500/593/8052\nf 1500/593/8053 12379/435/8054 10291/3719/8055\nf 10291/3719/8056 1502/2559/8057 1500/593/8058\nf 1503/1936/8059 1502/2559/8060 10291/3719/8061\nf 10291/3719/8062 10245/4041/8063 1503/1936/8064\nf 1503/1936/8065 10245/4041/8066 10233/4273/8067\nf 10233/4273/8068 1506/4909/8069 1503/1936/8070\nf 1507/5294/8071 1506/4909/8072 10233/4273/8073\nf 10233/4273/8074 10234/3830/8075 1507/5294/8076\nf 1509/3620/8077 1506/4909/8078 1507/5294/8079\nf 1503/1936/8080 1506/4909/8081 1509/3620/8082\nf 1507/5294/8083 1510/2082/8084 1509/3620/8085\nf 1511/5162/8086 1510/2082/8087 1507/5294/8088\nf 1507/5294/8089 1512/268/8090 1511/5162/8091\nf 1509/3620/8092 1513/3532/8093 1503/1936/8094\nf 1503/1936/8095 1513/3532/8096 1514/2184/8097\nf 1514/2184/8098 1502/2559/8099 1503/1936/8100\nf 1500/593/8101 1502/2559/8102 1514/2184/8103\nf 1514/2184/8104 1515/1089/8105 1500/593/8106\nf 1500/593/8107 1515/1089/8108 1516/834/8109\nf 1516/834/8110 1499/1273/8111 1500/593/8112\nf 1497/6522/8113 1499/1273/8114 1516/834/8115\nf 1516/834/8116 1517/3621/8117 1497/6522/8118\nf 1497/6522/8119 1517/3621/8120 1518/4671/8121\nf 1518/4671/8122 1496/757/8123 1497/6522/8124\nf 1494/6259/8125 1496/757/8126 1518/4671/8127\nf 1518/4671/8128 1519/1879/8129 1494/6259/8130\nf 1494/6259/8131 1519/1879/8132 1520/5550/8133\nf 1520/5550/8134 1493/3214/8135 1494/6259/8136\nf 1492/2801/8137 1493/3214/8138 1520/5550/8139\nf 1520/5550/8140 1521/318/8141 1492/2801/8142\nf 1492/2801/8143 1521/318/8144 1522/5029/8145\nf 1522/5029/8146 1491/4734/8147 1492/2801/8148\nf 1491/4734/8149 1522/5029/8150 1523/879/8151\nf 1523/879/8152 1489/2150/8153 1491/4734/8154\nf 1489/2150/8155 1523/879/8156 1524/4608/8157\nf 1524/4608/8158 1488/1848/8159 1489/2150/8160\nf 1485/706/8161 1488/1848/8162 1524/4608/8163\nf 1524/4608/8164 1525/1328/8165 1485/706/8166\nf 1485/706/8167 1525/1328/8168 1511/1777/8169\nf 1511/1777/8170 1512/24/8171 1485/706/8172\nf 1526/4128/8173 1512/24/8174 1507/4125/8175\nf 1507/4125/8176 10234/5862/8177 1526/4128/8178\nf 1563/5652/8179 12168/5154/8180 9480/3798/8181\nf 9480/3798/8182 1490/548/8183 1563/5652/8184\nf 9277/5078/8185 1563/5652/8186 1490/548/8187\nf 1490/548/8188 1486/4242/8189 9277/5078/8190\nf 9278/1752/8191 9277/5078/8192 1486/4242/8193\nf 1486/4242/8194 1487/2845/8195 9278/1752/8196\nf 9217/4770/8197 9278/1752/8198 1487/2845/8199\nf 1487/2845/8200 12458/6414/8201 9217/4770/8202\nf 9196/2422/8203 9217/4770/8204 12458/6414/8205\nf 12458/6414/8206 1508/3800/8207 9196/2422/8208\nf 9197/4348/8209 9196/2422/8210 1508/3800/8211\nf 1508/3800/8212 1505/88/8213 9197/4348/8214\nf 9516/2423/8215 9197/4348/8216 1505/88/8217\nf 1505/88/8218 1504/450/8219 9516/2423/8220\nf 8814/2254/8221 9516/2423/8222 1504/450/8223\nf 1504/450/8224 1501/1659/8225 8814/2254/8226\nf 8813/2380/8227 8814/2254/8228 1501/1659/8229\nf 1501/1659/8230 1535/2560/8231 8813/2380/8232\nf 8821/2651/8233 8813/2380/8234 1535/2560/8235\nf 1535/2560/8236 1498/4140/8237 8821/2651/8238\nf 9149/2593/8239 8821/2651/8240 1498/4140/8241\nf 1498/4140/8242 1537/269/8243 9149/2593/8244\nf 9150/2415/8245 9149/2593/8246 1537/269/8247\nf 1537/269/8248 1539/6084/8249 9150/2415/8250\nf 9368/821/8251 9150/2415/8252 1539/6084/8253\nf 1539/6084/8254 1495/4023/8255 9368/821/8256\nf 9369/1999/8257 9368/821/8258 1495/4023/8259\nf 1495/4023/8260 1542/4243/8261 9369/1999/8262\nf 1565/2813/8263 9369/1999/8264 1542/4243/8265\nf 1542/4243/8266 1543/4556/8267 1565/2813/8268\nf 12168/5154/8269 1565/2813/8270 1543/4556/8271\nf 1543/4556/8272 9480/3798/8273 12168/5154/8274\nf 9001/3119/8275 9002/4156/8276 1562/6017/8277\nf 1562/6017/8278 1546/6141/8279 9001/3119/8280\nf 9026/2639/8281 9001/3119/8282 1546/6141/8283\nf 1546/6141/8284 1564/1727/8285 9026/2639/8286\nf 9065/1136/8287 9026/2639/8288 1564/1727/8289\nf 1564/1727/8290 1549/3616/8291 9065/1136/8292\nf 8741/2441/8293 9065/1136/8294 1549/3616/8295\nf 1549/3616/8296 1560/1100/8297 8741/2441/8298\nf 1566/5624/8299 1562/6017/8300 9002/4156/8301\nf 9002/4156/8302 8920/164/8303 1566/5624/8304\nf 1567/3089/8305 1566/5624/8306 8920/164/8307\nf 8920/164/8308 8921/2250/8309 1567/3089/8310\nf 1568/2466/8311 1567/3089/8312 8921/2250/8313\nf 8921/2250/8314 1578/1581/8315 1568/2466/8316\nf 1569/989/8317 1568/2466/8318 1578/1581/8319\nf 1578/1581/8320 12242/3353/8321 1569/989/8322\nf 1570/3364/8323 1569/989/8324 12242/3353/8325\nf 12242/3353/8326 8909/5256/8327 1570/3364/8328\nf 1553/586/8329 1570/3364/8330 8909/5256/8331\nf 8909/5256/8332 8827/3683/8333 1553/586/8334\nf 1554/1358/8335 1553/586/8336 8827/3683/8337\nf 8827/3683/8338 8826/3396/8339 1554/1358/8340\nf 1555/5777/8341 1554/1358/8342 8826/3396/8343\nf 8826/3396/8344 11923/302/8345 1555/5777/8346\nf 1557/1667/8347 1555/5777/8348 11923/302/8349\nf 11923/302/8350 11924/2122/8351 1557/1667/8352\nf 1574/1589/8353 1557/1667/8354 11924/2122/8355\nf 11924/2122/8356 12532/932/8357 1574/1589/8358\nf 1575/1111/8359 1574/1589/8360 12532/932/8361\nf 12532/932/8362 8740/2234/8363 1575/1111/8364\nf 1560/6130/8365 1575/1111/8366 8740/2234/8367\nf 8740/2234/8368 8741/446/8369 1560/6130/8370\nf 1562/3907/8371 1528/6488/8372 12194/5483/8373\nf 12194/5483/8374 1546/5115/8375 1562/3907/8376\nf 1564/3524/8377 1546/5115/8378 12194/5483/8379\nf 12194/5483/8380 1529/2490/8381 1564/3524/8382\nf 1564/3524/8383 1529/2490/8384 1530/3814/8385\nf 1530/3814/8386 1549/2888/8387 1564/3524/8388\nf 1560/1361/8389 1549/2888/8390 1530/3814/8391\nf 1530/3814/8392 1531/3703/8393 1560/1361/8394\nf 12169/110/8395 1528/6488/8396 1562/3907/8397\nf 1562/3907/8398 1566/81/8399 12169/110/8400\nf 12169/110/8401 1566/81/8402 1567/6193/8403\nf 1567/6193/8404 1541/1899/8405 12169/110/8406\nf 1540/602/8407 1541/1899/8408 1567/6193/8409\nf 1567/6193/8410 1568/3427/8411 1540/602/8412\nf 1540/602/8413 1568/3427/8414 1569/6450/8415\nf 1569/6450/8416 1538/1849/8417 1540/602/8418\nf 1536/805/8419 1538/1849/8420 1569/6450/8421\nf 1569/6450/8422 1570/5011/8423 1536/805/8424\nf 1536/805/8425 1570/5011/8426 1553/3641/8427\nf 1553/3641/8428 1571/707/8429 1536/805/8430\nf 1572/449/8431 1571/707/8432 1553/3641/8433\nf 1553/3641/8434 1554/6038/8435 1572/449/8436\nf 1572/449/8437 1554/6038/8438 1555/2940/8439\nf 1555/2940/8440 1573/3584/8441 1572/449/8442\nf 1534/2048/8443 1573/3584/8444 1555/2940/8445\nf 1555/2940/8446 1557/1429/8447 1534/2048/8448\nf 1534/2048/8449 1557/1429/8450 1574/3111/8451\nf 1574/3111/8452 1533/415/8453 1534/2048/8454\nf 1532/5393/8455 1533/415/8456 1574/3111/8457\nf 1574/3111/8458 1575/21/8459 1532/5393/8460\nf 1532/213/8461 1575/4028/8462 1560/1361/8463\nf 1560/1361/8464 1531/1873/8465 1532/213/8466\nf 1544/2680/8467 1547/1980/8468 1548/4092/8469\nf 1544/2680/8470 1548/4092/8471 1559/5103/8472\nf 1548/4092/8473 1561/2115/8474 1559/5103/8475\nf 1544/2680/8476 1559/5103/8477 1576/6124/8478\nf 1559/5103/8479 1558/124/8480 1576/6124/8481\nf 1559/5103/8482 1577/1311/8483 1558/124/8484\nf 1558/124/8485 1556/3638/8486 1576/6124/8487\nf 1544/2680/8488 1576/6124/8489 12230/2016/8490\nf 1576/6124/8491 1579/4754/8492 12230/2016/8493\nf 1576/6124/8494 1580/3008/8495 1579/4754/8496\nf 1579/4754/8497 1552/6215/8498 12230/2016/8499\nf 1544/2680/8500 12230/2016/8501 1550/3580/8502\nf 12230/2016/8503 1551/2324/8504 1550/3580/8505\nf 1545/2413/8506 1544/2680/8507 1550/3580/8508\nf 9027/4221/8509 9028/2695/8510 1582/4053/8511\nf 1582/4053/8512 1584/6318/8513 9027/4221/8514\nf 8993/4392/8515 1582/4053/8516 9028/2695/8517\nf 9028/2695/8518 8995/416/8519 8993/4392/8520\nf 1587/3011/8521 1585/10476/8522 8994/10477/8523\nf 8994/10478/8524 8964/1184/8525 1587/3011/8526\nf 9064/1439/8527 9027/4221/8528 1584/6318/8529\nf 1584/6318/8530 1590/2705/8531 9064/1439/8532\nf 10003/5584/8533 9064/1439/8534 1590/2705/8535\nf 1590/2705/8536 1592/6529/8537 10003/5584/8538\nf 1593/1847/8539 8983/10479/8540 8963/10480/8541\nf 8963/10481/8542 8965/4565/8543 1593/1847/8544\nf 1616/6391/8545 1593/1847/8546 8965/4565/8547\nf 8965/4565/8548 10036/2521/8549 1616/6391/8550\nf 9962/2641/8551 10003/5584/8552 1592/6529/8553\nf 1592/6529/8554 1597/4641/8555 9962/2641/8556\nf 9963/2444/8557 9962/2641/8558 1597/4641/8559\nf 1597/4641/8560 1599/2892/8561 9963/2444/8562\nf 9932/3369/8563 9963/2444/8564 1599/2892/8565\nf 1599/2892/8566 1601/2706/8567 9932/3369/8568\nf 9923/5361/8569 9932/3369/8570 1601/2706/8571\nf 1601/2706/8572 1603/2829/8573 9923/5361/8574\nf 9924/1302/8575 9923/5361/8576 1603/2829/8577\nf 1603/2829/8578 1605/4724/8579 9924/1302/8580\nf 9943/1797/8581 9924/1302/8582 1605/4724/8583\nf 1605/4724/8584 1607/4533/8585 9943/1797/8586\nf 9945/3094/8587 9943/1797/8588 1607/4533/8589\nf 1607/4533/8590 9964/1094/8591 9945/3094/8592\nf 1610/3894/8593 1608/10482/8594 1609/10483/8595\nf 1609/10484/8596 9999/3259/8597 1610/3894/8598\nf 9969/2738/8599 9968/10485/8600 1611/10486/8601\nf 1611/10487/8602 1613/1186/8603 9969/2738/8604\nf 10025/1381/8605 9969/2738/8606 1613/1186/8607\nf 1613/1186/8608 1615/3927/8609 10025/1381/8610\nf 10036/4384/8611 10025/1381/8612 1615/3927/8613\nf 1615/3927/8614 1616/261/8615 10036/4384/8616\nf 1602/10488/8617 1604/10489/8618 1617/5757/8619\nf 1604/10490/8620 1606/10491/8621 1632/2742/8622\nf 1632/2742/8623 1617/5757/8624 1604/10492/8625\nf 1618/1844/8626 1632/2742/8627 1606/10493/8628\nf 1606/10494/8629 9944/10495/8630 1618/1844/8631\nf 1619/45/8632 1618/1844/8633 9944/10496/8634\nf 9944/10497/8635 9967/10498/8636 1619/45/8637\nf 1620/2834/8638 1619/45/8639 9967/10499/8640\nf 9967/10500/8641 1612/10501/8642 1620/2834/8643\nf 12530/3310/8644 1620/2834/8645 1612/10502/8646\nf 1612/10503/8647 1614/10504/8648 12530/3310/8649\nf 12530/3310/8650 1614/10505/8651 1595/10506/8652\nf 1595/10507/8653 12767/2599/8654 12530/3310/8655\nf 1617/5757/8656 1633/1091/8657 1602/10508/8658\nf 1600/10509/8659 1602/10510/8660 1633/1091/8661\nf 1633/1091/8662 1622/5864/8663 1600/10511/8664\nf 1598/10512/8665 1600/10513/8666 1622/5864/8667\nf 1622/5864/8668 1623/4025/8669 1598/10514/8670\nf 1598/10515/8671 1623/4025/8672 1629/3985/8673\nf 1629/3985/8674 1596/10516/8675 1598/10517/8676\nf 1591/10518/8677 1596/10519/8678 1629/3985/8679\nf 1629/3985/8680 1624/4289/8681 1591/10520/8682\nf 1589/10521/8683 1591/10522/8684 1624/4289/8685\nf 1624/4289/8686 1630/5774/8687 1589/10523/8688\nf 1581/10524/8689 1589/10525/8690 1630/5774/8691\nf 1630/5774/8692 1627/6397/8693 1581/10526/8694\nf 1583/10527/8695 1581/10528/8696 1627/6397/8697\nf 1627/6397/8698 1628/582/8699 1583/10529/8700\nf 1586/10530/8701 1583/10531/8702 1628/582/8703\nf 1628/582/8704 1625/3165/8705 1586/10532/8706\nf 1588/10533/8707 1586/10534/8708 1625/3165/8709\nf 1625/3165/8710 1626/2986/8711 1588/10535/8712\nf 1594/10536/8713 1588/10537/8714 1626/2986/8715\nf 1626/2986/8716 12529/1459/8717 1594/10538/8718\nf 1595/10539/8719 1594/10540/8720 12529/1459/8721\nf 12529/1459/8722 12767/1622/8723 1595/10541/8724\nf 12529/930/8725 1626/3095/8726 1625/2517/8727\nf 12529/930/8728 1625/2517/8729 1627/311/8730\nf 1625/2517/8731 1628/4357/8732 1627/311/8733\nf 12529/930/8734 1627/311/8735 1629/3601/8736\nf 1627/311/8737 1630/349/8738 1629/3601/8739\nf 1630/349/8740 1624/1754/8741 1629/3601/8742\nf 12529/930/8743 1629/3601/8744 12530/3759/8745\nf 1629/3601/8746 1632/906/8747 12530/3759/8748\nf 1629/3601/8749 1622/5958/8750 1632/906/8751\nf 1629/3601/8752 1623/4507/8753 1622/5958/8754\nf 1622/5958/8755 1633/1187/8756 1632/906/8757\nf 1633/1187/8758 1617/270/8759 1632/906/8760\nf 1632/906/8761 1620/4071/8762 12530/3759/8763\nf 1632/906/8764 1618/1054/8765 1620/4071/8766\nf 1618/1054/8767 1619/6506/8768 1620/4071/8769\nf 1621/4052/8770 1634/10542/8771 1631/10543/8772\nf 11573/3935/8773 1665/4363/8774 1635/1733/8775\nf 1635/1733/8776 11572/1424/8777 11573/3935/8778\nf 13085/2314/8779 11572/1424/8780 1635/1733/8781\nf 1635/1733/8782 1698/1597/8783 13085/2314/8784\nf 1698/1597/8785 1635/1733/8786 11285/5775/8787\nf 11285/5775/8788 11286/5642/8789 1698/1597/8790\nf 13205/2771/8791 11285/5775/8792 1635/1733/8793\nf 1635/1733/8794 1665/4363/8795 13205/2771/8796\nf 13205/2771/8797 1665/4363/8798 13093/2030/8799\nf 13093/2030/8800 13080/2325/8801 13205/2771/8802\nf 1721/4361/8803 1698/1597/8804 11286/5642/8805\nf 11286/5642/8806 13140/4744/8807 1721/4361/8808\nf 1641/4490/8809 13261/61/8810 1741/6061/8811\nf 1741/6061/8812 1643/1649/8813 1641/4490/8814\nf 1643/1649/8815 1741/6061/8816 13264/47/8817\nf 13264/47/8818 1645/2448/8819 1643/1649/8820\nf 13261/61/8821 1641/4490/8822 1646/6085/8823\nf 1646/6085/8824 1738/1152/8825 13261/61/8826\nf 13110/6086/8827 1645/2448/8828 13264/47/8829\nf 13264/47/8830 13109/6315/8831 13110/6086/8832\nf 11313/2624/8833 1643/1649/8834 1645/2448/8835\nf 1641/4490/8836 1643/1649/8837 11313/2624/8838\nf 1645/2448/8839 11374/150/8840 11313/2624/8841\nf 11313/2624/8842 11314/3047/8843 1641/4490/8844\nf 1646/6085/8845 1641/4490/8846 11314/3047/8847\nf 11314/3047/8848 1725/3666/8849 1646/6085/8850\nf 1651/3125/8851 1646/6085/8852 1725/3666/8853\nf 1738/1152/8854 1646/6085/8855 1651/3125/8856\nf 1725/3666/8857 13217/2936/8858 1651/3125/8859\nf 1651/3125/8860 13217/2936/8861 13190/5133/8862\nf 13190/5133/8863 1653/5207/8864 1651/3125/8865\nf 1653/5207/8866 13190/5133/8867 13191/3671/8868\nf 13191/3671/8869 1655/3448/8870 1653/5207/8871\nf 1651/3125/8872 1653/5207/8873 11785/1269/8874\nf 11785/1269/8875 1653/5207/8876 1655/3448/8877\nf 11785/1269/8878 11786/1301/8879 1651/3125/8880\nf 1651/3125/8881 11786/1301/8882 1738/1152/8883\nf 1655/3448/8884 11790/4757/8885 11785/1269/8886\nf 11790/4757/8887 1655/3448/8888 10709/2826/8889\nf 1655/3448/8890 13182/2443/8891 10709/2826/8892\nf 13182/2443/8893 10708/3877/8894 10709/2826/8895\nf 1732/1082/8896 13182/2443/8897 1655/3448/8898\nf 13191/3671/8899 1732/1082/8900 1655/3448/8901\nf 13191/3671/8902 1730/421/8903 1732/1082/8904\nf 13191/3671/8905 10884/4469/8906 1730/421/8907\nf 13111/5285/8908 11374/150/8909 1645/2448/8910\nf 1645/2448/8911 13110/6086/8912 13111/5285/8913\nf 1668/631/8914 10823/3058/8915 1660/3380/8916\nf 1660/3380/8917 1661/2455/8918 1668/631/8919\nf 13096/4851/8920 1661/2455/8921 1660/3380/8922\nf 1660/3380/8923 13088/835/8924 13096/4851/8925\nf 13088/835/8926 1660/3380/8927 13284/4852/8928\nf 13284/4852/8929 11414/3542/8930 13088/835/8931\nf 13086/6314/8932 13088/835/8933 11414/3542/8934\nf 11414/3542/8935 11836/6087/8936 13086/6314/8937\nf 1663/2456/8938 13086/6314/8939 11836/6087/8940\nf 11836/6087/8941 11888/2457/8942 1663/2456/8943\nf 11574/836/8944 1663/2456/8945 11888/2457/8946\nf 11888/2457/8947 11450/276/8948 11574/836/8949\nf 10823/3058/8950 11574/836/8951 11450/276/8952\nf 11508/277/8953 13284/4852/8954 1660/3380/8955\nf 1660/3380/8956 10823/3058/8957 11508/277/8958\nf 11450/276/8959 11508/277/8960 10823/3058/8961\nf 13184/3187/8962 1664/1889/8963 1666/5941/8964\nf 1667/2045/8965 13184/3187/8966 1666/5941/8967\nf 10824/1742/8968 1667/2045/8969 1666/5941/8970\nf 13184/3187/8971 1667/2045/8972 1669/5563/8973\nf 1669/5563/8974 1639/2694/8975 13184/3187/8976\nf 1639/2694/8977 1669/5563/8978 1670/2983/8979\nf 1670/2983/8980 10428/6293/8981 1639/2694/8982\nf 1703/1830/8983 10428/6293/8984 1670/2983/8985\nf 1670/2983/8986 1671/6114/8987 1703/1830/8988\nf 10844/4206/8989 1703/1830/8990 1671/6114/8991\nf 1671/6114/8992 1673/6538/8993 10844/4206/8994\nf 10845/1629/8995 10844/4206/8996 1673/6538/8997\nf 1673/6538/8998 1675/528/8999 10845/1629/9000\nf 10375/6088/9001 10845/1629/9002 1675/528/9003\nf 1675/528/9004 1676/2755/9005 10375/6088/9006\nf 10376/1840/9007 10375/6088/9008 1676/2755/9009\nf 1676/2755/9010 1677/4679/9011 10376/1840/9012\nf 10357/5688/9013 10376/1840/9014 1677/4679/9015\nf 1677/4679/9016 1678/4691/9017 10357/5688/9018\nf 1710/3610/9019 10357/5688/9020 1678/4691/9021\nf 1678/4691/9022 1679/6219/9023 1710/3610/9024\nf 1710/3610/9025 1679/6219/9026 1680/3622/9027\nf 1680/3622/9028 13028/4788/9029 1710/3610/9030\nf 13028/4788/9031 1680/3622/9032 1682/2739/9033\nf 1682/2739/9034 1712/5930/9035 13028/4788/9036\nf 10948/2063/9037 1712/5930/9038 1682/2739/9039\nf 1682/2739/9040 1684/4337/9041 10948/2063/9042\nf 10912/3690/9043 10948/2063/9044 1684/4337/9045\nf 1684/4337/9046 10914/6066/9047 10912/3690/9048\nf 10913/10544/9049 1686/10545/9050 10590/2990/9051\nf 10590/2990/9052 10591/661/9053 10913/10546/9054\nf 10592/10547/9055 1687/10548/9056 1689/3373/9057\nf 1689/3373/9058 10616/6385/9059 10592/10549/9060\nf 10645/5199/9061 10616/6385/9062 1689/3373/9063\nf 1689/3373/9064 1691/3549/9065 10645/5199/9066\nf 10646/4451/9067 10645/5199/9068 1691/3549/9069\nf 1691/3549/9070 1692/4512/9071 10646/4451/9072\nf 13128/14/9073 10646/4451/9074 1692/4512/9075\nf 1692/4512/9076 1694/5916/9077 13128/14/9078\nf 10480/6028/9079 13128/14/9080 1694/5916/9081\nf 1694/5916/9082 1695/4253/9083 10480/6028/9084\nf 10481/2740/9085 10480/6028/9086 1695/4253/9087\nf 1695/4253/9088 1696/3969/9089 10481/2740/9090\nf 10481/2740/9091 1696/3969/9092 1697/5037/9093\nf 1697/5037/9094 13098/2333/9095 10481/2740/9096\nf 1697/5037/9097 13087/5325/9098 13098/2333/9099\nf 1697/5037/9100 13095/1851/9101 13087/5325/9102\nf 1699/10550/9103 1700/2908/9104 1636/10551/9105\nf 13079/4862/9106 13080/662/9107 13093/1602/9108\nf 13093/1602/9109 1702/6370/9110 13079/4862/9111\nf 1724/953/9112 13079/4862/9113 1702/6370/9114\nf 1702/6370/9115 10429/1619/9116 1724/953/9117\nf 10259/3585/9118 1724/953/9119 10429/1619/9120\nf 10429/1619/9121 1672/67/9122 10259/3585/9123\nf 10248/3434/9124 10259/3585/9125 1672/67/9126\nf 1672/67/9127 1674/5568/9128 10248/3434/9129\nf 10249/2861/9130 10248/3434/9131 1674/5568/9132\nf 1674/5568/9133 1707/5943/9134 10249/2861/9135\nf 10951/2074/9136 10249/2861/9137 1707/5943/9138\nf 1707/5943/9139 1708/5469/9140 10951/2074/9141\nf 10951/2074/9142 1708/5469/9143 1709/3297/9144\nf 1709/3297/9145 1728/2330/9146 10951/2074/9147\nf 1731/1774/9148 1728/2330/9149 1709/3297/9150\nf 1709/3297/9151 10358/3038/9152 1731/1774/9153\nf 13013/1484/9154 1731/1774/9155 10358/3038/9156\nf 10358/3038/9157 1681/2744/9158 13013/1484/9159\nf 13013/1484/9160 1681/2744/9161 13117/1944/9162\nf 13117/1944/9163 1733/4444/9164 13013/1484/9165\nf 1733/4444/9166 13117/1944/9167 1683/2198/9168\nf 1683/2198/9169 1713/2027/9170 1733/4444/9171\nf 1736/5397/9172 1713/2027/9173 1683/2198/9174\nf 1683/2198/9175 1685/1676/9176 1736/5397/9177\nf 13070/6163/9178 1736/5397/9179 1685/1676/9180\nf 1685/1676/9181 1688/4979/9182 13070/6163/9183\nf 13156/579/9184 13070/6163/9185 1688/4979/9186\nf 1688/4979/9187 1690/2655/9188 13156/579/9189\nf 13151/4813/9190 13156/579/9191 1690/2655/9192\nf 1690/2655/9193 1716/1382/9194 13151/4813/9195\nf 1739/5918/9196 13151/4813/9197 1716/1382/9198\nf 1716/1382/9199 1717/4256/9200 1739/5918/9201\nf 13144/2494/9202 1739/5918/9203 1717/4256/9204\nf 1717/4256/9205 1693/3287/9206 13144/2494/9207\nf 1740/4440/9208 13144/2494/9209 1693/3287/9210\nf 1693/3287/9211 1719/6056/9212 1740/4440/9213\nf 13140/5640/9214 1740/4440/9215 1719/6056/9216\nf 1719/6056/9217 1721/363/9218 13140/5640/9219\nf 11287/1688/9220 1637/1660/9221 1647/10552/9222\nf 1647/10553/9223 13108/10554/9224 11287/1688/9225\nf 13112/10555/9226 1647/10556/9227 1637/1660/9228\nf 1637/1660/9229 1722/2904/9230 13112/10557/9231\nf 13206/4316/9232 1640/3654/9233 1649/1245/9234\nf 1649/1245/9235 1723/3660/9236 13206/4316/9237\nf 1648/3552/9238 1649/1245/9239 1640/3654/9240\nf 1640/3654/9241 1701/2356/9242 1648/3552/9243\nf 1650/6440/9244 1648/3552/9245 1701/2356/9246\nf 1701/2356/9247 12978/3311/9248 1650/6440/9249\nf 13216/3566/9250 1650/6440/9251 12978/3311/9252\nf 12978/3311/9253 1704/653/9254 13216/3566/9255\nf 1652/127/9256 13216/3566/9257 1704/653/9258\nf 1704/653/9259 1705/4981/9260 1652/127/9261\nf 1652/127/9262 1705/4981/9263 1706/2220/9264\nf 1706/2220/9265 1726/2674/9266 1652/127/9267\nf 1654/4029/9268 1726/2674/9269 1706/2220/9270\nf 1706/2220/9271 1727/6070/9272 1654/4029/9273\nf 1654/4029/9274 1727/6070/9275 10872/6240/9276\nf 10872/6240/9277 1729/6093/9278 1654/4029/9279\nf 10882/1176/9280 1729/6093/9281 10872/6240/9282\nf 10872/6240/9283 10873/5634/9284 10882/1176/9285\nf 10883/3581/9286 10882/1176/9287 10873/5634/9288\nf 10873/5634/9289 1711/2796/9290 10883/3581/9291\nf 10883/3581/9292 1711/2796/9293 1733/3591/9294\nf 1733/3591/9295 1659/567/9296 10883/3581/9297\nf 1659/567/9298 1733/3591/9299 1713/2561/9300\nf 1713/2561/9301 1734/4244/9302 1659/567/9303\nf 1735/1014/9304 1734/4244/9305 1713/2561/9306\nf 1713/2561/9307 13061/2909/9308 1735/1014/9309\nf 11791/5666/9310 1735/1014/9311 13061/2909/9312\nf 13061/2909/9313 1714/3611/9314 11791/5666/9315\nf 1656/5829/9316 1658/10558/9317 13071/10559/9318\nf 13071/10560/9319 1737/2515/9320 1656/5829/9321\nf 1657/1993/9322 1656/5829/9323 1737/2515/9324\nf 1737/2515/9325 1715/4042/9326 1657/1993/9327\nf 13256/6358/9328 1657/1993/9329 1715/4042/9330\nf 1715/4042/9331 13152/3048/9332 13256/6358/9333\nf 1642/782/9334 13256/6358/9335 13152/3048/9336\nf 13152/3048/9337 1718/1713/9338 1642/782/9339\nf 1642/782/9340 1718/1713/9341 13139/4216/9342\nf 13139/4216/9343 13263/891/9344 1642/782/9345\nf 1644/2565/9346 13263/891/9347 13139/4216/9348\nf 13139/4216/9349 1720/1827/9350 1644/2565/9351\nf 1742/4108/9352 1644/2565/9353 1720/1827/9354\nf 1720/1827/9355 1638/5764/9356 1742/4108/9357\nf 11452/1761/9358 1743/4116/9359 11408/1246/9360\nf 11408/1246/9361 11409/4853/9362 11452/1761/9363\nf 11412/3061/9364 11408/1246/9365 1743/4116/9366\nf 1743/4116/9367 11838/4347/9368 11412/3061/9369\nf 1744/4171/9370 13330/5032/9371 11451/6526/9372\nf 11451/6526/9373 11449/4302/9374 1744/4171/9375\nf 13330/5032/9376 1744/4171/9377 11835/957/9378\nf 11835/957/9379 11837/3697/9380 13330/5032/9381\nf 11411/2516/9382 1746/3365/9383 1745/2631/9384\nf 1745/2631/9385 11413/4235/9386 11411/2516/9387\nf 1662/1498/9388 1748/3896/9389 1747/1346/9390\nf 1747/1346/9391 1749/2741/9392 1662/1498/9393\nf 1748/3896/9394 1662/1498/9395 11507/6223/9396\nf 11507/6223/9397 11410/4266/9398 1748/3896/9399\nf 1752/6024/9400 1753/1769/9401 1751/3313/9402\nf 1751/3313/9403 1750/399/9404 1752/6024/9405\nf 11537/10561/9406 11497/10562/9407 1755/10563/9408\nf 1755/10564/9409 1757/10565/9410 11537/10566/9411\nf 11537/10567/9412 1757/10568/9413 1758/10569/9414\nf 1758/10570/9415 10095/10571/9416 11537/10572/9417\nf 1755/10573/9418 11497/10574/9419 11498/10575/9420\nf 11498/10576/9421 1780/10577/9422 1755/10578/9423\nf 1760/10579/9424 1780/10580/9425 11498/10581/9426\nf 11498/10582/9427 12768/10583/9428 1760/10584/9429\nf 1795/10585/9430 10095/10586/9431 1758/10587/9432\nf 1758/10588/9433 1761/10589/9434 1795/10590/9435\nf 1795/10591/9436 1761/10592/9437 1762/10593/9438\nf 1762/10594/9439 1807/10595/9440 1795/10596/9441\nf 11267/10597/9442 1807/10598/9443 1762/10599/9444\nf 1762/10600/9445 1764/10601/9446 11267/10602/9447\nf 11267/10603/9448 1764/10604/9449 1765/10605/9450\nf 1765/10606/9451 11202/10607/9452 11267/10608/9453\nf 11203/10609/9454 11202/10610/9455 1765/10611/9456\nf 1765/10612/9457 1768/10613/9458 11203/10614/9459\nf 11203/10615/9460 1768/10616/9461 1769/10617/9462\nf 1769/10618/9463 12682/10619/9464 11203/10620/9465\nf 12683/10621/9466 12682/10622/9467 1769/10623/9468\nf 1769/10624/9469 1771/10625/9470 12683/10626/9471\nf 12683/10627/9472 1771/10628/9473 1772/10629/9474\nf 1772/10630/9475 1804/10631/9476 12683/10632/9477\nf 12705/10633/9478 1804/10634/9479 1772/10635/9480\nf 1772/10636/9481 1774/10637/9482 12705/10638/9483\nf 12705/10639/9484 1774/10640/9485 1775/10641/9486\nf 1775/10642/9487 1801/10643/9488 12705/10644/9489\nf 1800/10645/9490 1801/10646/9491 1775/10647/9492\nf 1775/10648/9493 1776/10649/9494 1800/10650/9495\nf 1800/10651/9496 1776/10652/9497 1760/10653/9498\nf 1760/10654/9499 12768/10655/9500 1800/10656/9501\nf 1778/10657/9502 1760/10658/9503 1776/10659/9504\nf 1760/10660/9505 1778/10661/9506 1779/10662/9507\nf 1779/10663/9508 1780/10664/9509 1760/10665/9510\nf 1776/10666/9511 1781/10667/9512 1778/10668/9513\nf 1781/10669/9514 1776/10670/9515 1775/10671/9516\nf 1775/10672/9517 1782/10673/9518 1781/10674/9519\nf 1782/10675/9520 1775/10676/9521 1774/10677/9522\nf 1774/10678/9523 1783/10679/9524 1782/10680/9525\nf 1783/10681/9526 1774/10682/9527 1772/10683/9528\nf 1772/10684/9529 1784/10685/9530 1783/10686/9531\nf 1771/10687/9532 1785/10688/9533 1784/10689/9534\nf 1784/10690/9535 1772/10691/9536 1771/10692/9537\nf 1785/10693/9538 1771/10694/9539 1769/10695/9540\nf 1769/10696/9541 1786/10697/9542 1785/10698/9543\nf 1786/10699/9544 1769/10700/9545 1768/10701/9546\nf 1768/10702/9547 1787/10703/9548 1786/10704/9549\nf 1787/10705/9550 1768/10706/9551 1765/10707/9552\nf 1765/10708/9553 1788/10709/9554 1787/10710/9555\nf 1788/10711/9556 1765/10712/9557 1764/10713/9558\nf 1764/10714/9559 1789/10715/9560 1788/10716/9561\nf 1789/10717/9562 1764/10718/9563 1762/10719/9564\nf 1762/10720/9565 1790/10721/9566 1789/10722/9567\nf 1790/10723/9568 1762/10724/9569 1761/10725/9570\nf 1761/10726/9571 1791/10727/9572 1790/10728/9573\nf 1791/10729/9574 1761/10730/9575 1758/10731/9576\nf 1758/10732/9577 1792/10733/9578 1791/10734/9579\nf 1792/10735/9580 1758/10736/9581 1757/10737/9582\nf 1757/10738/9583 1793/10739/9584 1792/10740/9585\nf 1793/10741/9586 1757/10742/9587 1755/10743/9588\nf 1755/10744/9589 1794/10745/9590 1793/10746/9591\nf 1794/10747/9592 1755/10748/9593 1780/10749/9594\nf 1780/10750/9595 1779/10751/9596 1794/10752/9597\nf 10094/10753/9598 10325/10754/9599 8903/10755/9600\nf 8903/10756/9601 1797/10757/9602 10094/10758/9603\nf 1797/10759/9604 8903/10760/9605 8904/10761/9606\nf 8904/10762/9607 1754/10763/9608 1797/10764/9609\nf 1754/10765/9610 8904/10766/9611 1832/10767/9612\nf 1832/10768/9613 1756/10769/9614 1754/10770/9615\nf 1756/10771/9616 1832/10772/9617 8999/10773/9618\nf 8999/10774/9619 1759/10775/9620 1756/10776/9621\nf 1759/10777/9622 8999/10778/9623 10294/10779/9624\nf 10294/10780/9625 1777/10781/9626 1759/10782/9627\nf 1777/10783/9628 10294/10784/9629 10295/10785/9630\nf 10295/10786/9631 10246/10787/9632 1777/10788/9633\nf 10246/10789/9634 10295/10790/9635 1843/10791/9636\nf 1843/10792/9637 10247/10793/9638 10246/10794/9639\nf 10247/10795/9640 1843/10796/9641 9989/10797/9642\nf 9989/10798/9643 1773/10799/9644 10247/10800/9645\nf 1773/10801/9646 9989/10802/9647 9990/10803/9648\nf 9990/10804/9649 12694/10805/9650 1773/10806/9651\nf 12694/10807/9652 9990/10808/9653 8845/10809/9654\nf 8845/10810/9655 1770/10811/9656 12694/10812/9657\nf 1770/10813/9658 8845/10814/9659 8844/10815/9660\nf 8844/10816/9661 1805/10817/9662 1770/10818/9663\nf 1805/10819/9664 8844/10820/9665 11995/10821/9666\nf 11995/10822/9667 1767/10823/9668 1805/10824/9669\nf 1767/10825/9670 11995/10826/9671 12016/10827/9672\nf 12016/10828/9673 1766/10829/9674 1767/10830/9675\nf 1766/10831/9676 12016/10832/9677 12015/10833/9678\nf 12015/10834/9679 1763/10835/9680 1766/10836/9681\nf 1763/10837/9682 12015/10838/9683 10326/10839/9684\nf 10326/10840/9685 10272/10841/9686 1763/10842/9687\nf 10272/10843/9688 10326/10844/9689 10325/10845/9690\nf 10325/10846/9691 10094/10847/9692 10272/10848/9693\nf 1808/10849/9694 12128/10850/9695 1844/10851/9696\nf 1844/10852/9697 1810/10853/9698 1808/10854/9699\nf 1810/10855/9700 1844/10856/9701 9151/10857/9702\nf 9151/10858/9703 1830/10859/9704 1810/10860/9705\nf 1830/10861/9706 9151/10862/9707 9152/10863/9708\nf 9152/10864/9709 1833/10865/9710 1830/10866/9711\nf 1833/10867/9712 9152/10868/9713 9164/10869/9714\nf 9164/10870/9715 1814/10871/9716 1833/10872/9717\nf 1814/10873/9718 9164/10874/9719 8847/10875/9720\nf 8847/10876/9721 1815/10877/9722 1814/10878/9723\nf 12128/10879/9724 1808/10880/9725 1816/10881/9726\nf 1816/10882/9727 1846/10883/9728 12128/10884/9729\nf 1846/10885/9730 1816/10886/9731 1835/10887/9732\nf 1835/10888/9733 9446/10889/9734 1846/10890/9735\nf 9446/10891/9736 1835/10892/9737 1818/10893/9738\nf 1818/10894/9739 9438/10895/9740 9446/10896/9741\nf 9438/10897/9742 1818/10898/9743 1820/10899/9744\nf 1820/10900/9745 9439/10901/9746 9438/10902/9747\nf 9439/10903/9748 1820/10904/9749 1840/10905/9750\nf 1840/10906/9751 1847/10907/9752 9439/10908/9753\nf 1847/10909/9754 1840/10910/9755 1822/10911/9756\nf 1822/10912/9757 8720/10913/9758 1847/10914/9759\nf 8720/10915/9760 1822/10916/9761 1842/10917/9762\nf 1842/10918/9763 1845/10919/9764 8720/10920/9765\nf 1845/10921/9766 1842/10922/9767 1823/10923/9768\nf 1823/10924/9769 12129/10925/9770 1845/10926/9771\nf 12129/10927/9772 1823/10928/9773 1825/10929/9774\nf 1825/10930/9775 1849/10931/9776 12129/10932/9777\nf 1849/10933/9778 1825/10934/9779 1826/10935/9780\nf 1826/10936/9781 8846/10937/9782 1849/10938/9783\nf 8846/10939/9784 1826/10940/9785 1815/10941/9786\nf 1815/10942/9787 8847/10943/9788 8846/10944/9789\nf 1829/10945/9790 1796/10946/9791 1808/10947/9792\nf 1808/10948/9793 1810/10949/9794 1829/10950/9795\nf 1829/10951/9796 1810/10952/9797 1830/10953/9798\nf 1830/10954/9799 1831/10955/9800 1829/10956/9801\nf 8988/10957/9802 1831/10958/9803 1830/10959/9804\nf 1830/10960/9805 1833/10961/9806 8988/10962/9807\nf 8988/10963/9808 1833/10964/9809 1814/10965/9810\nf 1814/10966/9811 1834/10967/9812 8988/10968/9813\nf 1808/10969/9814 1796/10970/9815 1806/10971/9816\nf 1806/10972/9817 1816/10973/9818 1808/10974/9819\nf 1835/10975/9820 1816/10976/9821 1806/10977/9822\nf 1806/10978/9823 1836/10979/9824 1835/10980/9825\nf 1835/10981/9826 1836/10982/9827 1837/10983/9828\nf 1837/10984/9829 1818/10985/9830 1835/10986/9831\nf 1820/10987/9832 1818/10988/9833 1837/10989/9834\nf 1837/10990/9835 1838/10991/9836 1820/10992/9837\nf 1820/10993/9838 1838/10994/9839 1839/10995/9840\nf 1839/10996/9841 1840/10997/9842 1820/10998/9843\nf 1822/10999/9844 1840/11000/9845 1839/11001/9846\nf 1839/11002/9847 1841/11003/9848 1822/11004/9849\nf 1822/11005/9850 1841/11006/9851 1803/11007/9852\nf 1803/11008/9853 1842/11009/9854 1822/11010/9855\nf 1823/11011/9856 1842/11012/9857 1803/11013/9858\nf 1803/11014/9859 1802/11015/9860 1823/11016/9861\nf 1823/11017/9862 1802/11018/9863 12068/11019/9864\nf 12068/11020/9865 1825/11021/9866 1823/11022/9867\nf 1826/11023/9868 1825/11024/9869 12068/11025/9870\nf 12068/11026/9871 1799/11027/9872 1826/11028/9873\nf 1826/11029/9874 1799/11030/9875 1798/11031/9876\nf 1798/11032/9877 1815/11033/9878 1826/11034/9879\nf 1814/11035/9880 1815/11036/9881 1798/11037/9882\nf 1798/11038/9883 1834/11039/9884 1814/11040/9885\nf 1812/11041/9886 1811/11042/9887 12101/11043/9888\nf 1812/11044/9889 12101/11045/9890 1828/11046/9891\nf 12101/11047/9892 8719/11048/9893 1828/11049/9894\nf 12101/11050/9895 1819/11051/9896 8719/11052/9897\nf 12101/11053/9898 12179/11054/9899 1819/11055/9900\nf 12101/11056/9901 1809/11057/9902 12179/11058/9903\nf 12179/11059/9904 1817/11060/9905 1819/11061/9906\nf 1819/11062/9907 8935/11063/9908 8719/11064/9909\nf 1819/11065/9910 1821/11066/9911 8935/11067/9912\nf 8935/11068/9913 1848/11069/9914 8719/11070/9915\nf 8719/11071/9916 12241/11072/9917 1828/11073/9918\nf 8719/11074/9919 1824/11075/9920 12241/11076/9921\nf 12241/11077/9922 1827/11078/9923 1828/11079/9924\nf 1812/11080/9925 1828/11081/9926 1813/11082/9927\nf 1850/11083/9928 1917/11084/9929 1918/11085/9930\nf 1918/11086/9931 1851/11087/9932 1850/11088/9933\nf 1917/11089/9934 1850/11090/9935 1852/11091/9936\nf 1852/11092/9937 1853/11093/9938 1917/11094/9939\nf 1854/11095/9940 1852/11096/9941 1850/11097/9942\nf 1850/11098/9943 1855/11099/9944 1854/11100/9945\nf 1855/11101/9946 1850/11102/9947 1851/11103/9948\nf 1851/11104/9949 1856/11105/9950 1855/11106/9951\nf 1851/11107/9952 1918/11108/9953 1857/11109/9954\nf 1857/11110/9955 1858/11111/9956 1851/11112/9957\nf 1856/11113/9958 1851/11114/9959 1858/11115/9960\nf 1858/11116/9961 1859/11117/9962 1856/11118/9963\nf 1908/11119/9964 1856/11120/9965 1859/11121/9966\nf 1855/11122/9967 1856/11123/9968 1908/11124/9969\nf 1859/11125/9970 1907/11126/9971 1908/11127/9972\nf 1907/11128/9973 1859/11129/9974 1902/11130/9975\nf 1907/11131/9976 1902/11132/9977 1903/11133/9978\nf 1907/11134/9979 1903/11135/9980 1860/11136/9981\nf 1859/11137/9982 1858/11138/9983 1861/11139/9984\nf 1861/11140/9985 1902/11141/9986 1859/11142/9987\nf 1861/11143/9988 1858/11144/9989 1857/11145/9990\nf 1854/11146/9991 1855/11147/9992 1909/11148/9993\nf 1908/11149/9994 1909/11150/9995 1855/11151/9996\nf 1909/11152/9997 1862/11153/9998 1854/11154/9999\nf 1861/11155/10000 1857/11156/10001 1863/11157/10002\nf 1861/11158/10003 1863/11159/10004 1904/11160/10005\nf 1854/11161/10006 1862/11162/10007 1864/11163/10008\nf 1865/11164/10009 1864/11165/10010 1911/11166/10011\nf 1911/11167/10012 1912/11168/10013 1865/11169/10014\nf 1865/11170/10015 1912/11171/10016 1913/11172/10017\nf 1913/11173/10018 1866/11174/10019 1865/11175/10020\nf 1854/11176/10021 1865/11177/10022 1866/11178/10023\nf 1864/11179/10024 1865/11180/10025 1854/11181/10026\nf 1866/11182/10027 1852/11183/10028 1854/11184/10029\nf 1852/11185/10030 1866/11186/10031 1867/11187/10032\nf 1867/11188/10033 1853/11189/10034 1852/11190/10035\nf 1866/11191/10036 1913/11192/10037 1915/11193/10038\nf 1915/11194/10039 1867/11195/10040 1866/11196/10041\nf 1919/11197/10042 1869/11198/10043 1868/11199/10044\nf 1868/11200/10045 9130/11201/10046 1919/11202/10047\nf 9130/11203/10048 1868/11204/10049 9143/11205/10050\nf 9143/11206/10051 9131/11207/10052 9130/11208/10053\nf 1869/11209/10054 1919/11210/10055 9211/11211/10056\nf 9211/11212/10057 1874/11213/10058 1869/11214/10059\nf 1874/11215/10060 9211/11216/10061 9212/11217/10062\nf 9212/11218/10063 1876/11219/10064 1874/11220/10065\nf 1877/11221/10066 1876/11222/10067 9212/11223/10068\nf 9212/11224/10069 1916/11225/10070 1877/11226/10071\nf 1877/11227/10072 1916/11228/10073 1914/11229/10074\nf 1914/11230/10075 1878/11231/10076 1877/11232/10077\nf 1878/11233/10078 1914/11234/10079 9799/11235/10080\nf 9799/11236/10081 1880/11237/10082 1878/11238/10083\nf 9801/11239/10084 9800/11240/10085 9791/11241/10086\nf 9791/11242/10087 1882/11243/10088 9801/11244/10089\nf 9816/11245/10090 9790/11246/10091 9792/11247/10092\nf 9792/11248/10093 1884/11249/10094 9816/11250/10095\nf 1884/11251/10096 9792/11252/10097 12675/11253/10098\nf 12675/11254/10099 1885/11255/10100 1884/11256/10101\nf 1885/11257/10102 12675/11258/10103 10030/11259/10104\nf 10030/11260/10105 1887/11261/10106 1885/11262/10107\nf 1887/11263/10108 10030/11264/10109 10031/11265/10110\nf 10031/11266/10111 1889/11267/10112 1887/11268/10113\nf 1889/11269/10114 10031/11270/10115 10046/11271/10116\nf 10046/11272/10117 1891/11273/10118 1889/11274/10119\nf 1891/11275/10120 10046/11276/10121 10116/11277/10122\nf 10116/11278/10123 1893/11279/10124 1891/11280/10125\nf 1893/11281/10126 10116/11282/10127 1906/11283/10128\nf 1906/11284/10129 1894/11285/10130 1893/11286/10131\nf 1894/11287/10132 1906/11288/10133 12738/11289/10134\nf 12738/11290/10135 1896/11291/10136 1894/11292/10137\nf 1896/11293/10138 12738/11294/10139 9630/11295/10140\nf 9630/11296/10141 1897/11297/10142 1896/11298/10143\nf 1897/11299/10144 9630/11300/10145 9631/11301/10146\nf 9631/11302/10147 12945/11303/10148 1897/11304/10149\nf 1898/11305/10150 9632/11306/10151 9676/11307/10152\nf 9676/11308/10153 12953/11309/10154 1898/11310/10155\nf 1899/11311/10156 1905/11312/10157 1872/11313/10158\nf 1872/11314/10159 1871/11315/10160 1899/11316/10161\nf 1861/11317/10162 1901/11318/10163 1900/11319/10164\nf 1900/11320/10165 1902/11321/10166 1861/11322/10167\nf 1902/11323/10168 1900/11324/10169 1895/11325/10170\nf 1895/11326/10171 1903/11327/10172 1902/11328/10173\nf 1901/11329/10174 1861/11330/10175 1904/11331/10176\nf 1904/11332/10177 9675/11333/10178 1901/11334/10179\nf 9675/11335/10180 1904/11336/10181 1863/11337/10182\nf 1863/11338/10183 9132/11339/10184 9675/11340/10185\nf 1903/11341/10186 1895/11342/10187 12739/11343/10188\nf 12739/11344/10189 1860/11345/10190 1903/11346/10191\nf 1860/11347/10192 12739/11348/10193 1892/11349/10194\nf 1892/11350/10195 1907/11351/10196 1860/11352/10197\nf 1908/11353/10198 1907/11354/10199 1892/11355/10200\nf 1892/11356/10201 1890/11357/10202 1908/11358/10203\nf 1908/11359/10204 1890/11360/10205 1888/11361/10206\nf 1888/11362/10207 1909/11363/10208 1908/11364/10209\nf 1909/11365/10210 1888/11366/10211 1886/11367/10212\nf 1886/11368/10213 1862/11369/10214 1909/11370/10215\nf 1862/11371/10216 1886/11372/10217 1910/11373/10218\nf 1910/11374/10219 1864/11375/10220 1862/11376/10221\nf 1864/11377/10222 1910/11378/10223 1883/11379/10224\nf 1883/11380/10225 1911/11381/10226 1864/11382/10227\nf 1911/11383/10228 1883/11384/10229 1881/11385/10230\nf 1881/11386/10231 1912/11387/10232 1911/11388/10233\nf 1913/11389/10234 1912/11390/10235 1881/11391/10236\nf 1881/11392/10237 1879/11393/10238 1913/11394/10239\nf 1913/11395/10240 1879/11396/10241 9606/11397/10242\nf 9606/11398/10243 1915/11399/10244 1913/11400/10245\nf 1915/11401/10246 9606/11402/10247 9607/11403/10248\nf 9607/11404/10249 1867/11405/10250 1915/11406/10251\nf 1867/11407/10252 9607/11408/10253 1875/11409/10254\nf 1875/11410/10255 1853/11411/10256 1867/11412/10257\nf 1853/11413/10258 1875/11414/10259 1873/11415/10260\nf 1873/11416/10261 1917/11417/10262 1853/11418/10263\nf 1918/11419/10264 1917/11420/10265 1873/11421/10266\nf 1873/11422/10267 12394/11423/10268 1918/11424/10269\nf 1857/11425/10270 1918/11426/10271 12394/11427/10272\nf 12394/11428/10273 1870/11429/10274 1857/11430/10275\nf 1857/11431/10276 1870/11432/10277 9132/11433/10278\nf 9132/11434/10279 1863/11435/10280 1857/11436/10281\nf 1965/11437/10282 13145/11438/10283 1920/11439/10284\nf 1920/11440/10285 1922/11441/10286 1965/11442/10287\nf 1965/11443/10288 1922/11444/10289 1923/11445/10290\nf 1923/11446/10291 1964/11447/10292 1965/11448/10293\nf 1920/11449/10294 13145/11450/10295 1968/11451/10296\nf 1968/11452/10297 1946/11453/10298 1920/11454/10299\nf 13159/11455/10300 1964/11456/10301 1923/11457/10302\nf 1923/11458/10303 1925/11459/10304 13159/11460/10305\nf 13159/11461/10306 1925/11462/10307 1926/11463/10308\nf 1926/11464/10309 1973/11465/10310 13159/11466/10311\nf 13225/11467/10312 1973/11468/10313 1926/11469/10314\nf 1926/11470/10315 1928/11471/10316 13225/11472/10317\nf 13225/11473/10318 1928/11474/10319 1929/11475/10320\nf 1929/11476/10321 1972/11477/10322 13225/11478/10323\nf 11512/11479/10324 1972/11480/10325 1929/11481/10326\nf 1929/11482/10327 1931/11483/10328 11512/11484/10329\nf 11512/11485/10330 1931/11486/10331 1932/11487/10332\nf 1932/11488/10333 11513/11489/10334 11512/11490/10335\nf 1970/11491/10336 11513/11492/10337 1932/11493/10338\nf 1932/11494/10339 1934/11495/10340 1970/11496/10341\nf 1970/11497/10342 1934/11498/10343 1935/11499/10344\nf 1935/11500/10345 11733/11501/10346 1970/11502/10347\nf 11727/11503/10348 11733/11504/10349 1935/11505/10350\nf 1935/11506/10351 1938/11507/10352 11727/11508/10353\nf 11727/11509/10354 1938/11510/10355 1939/11511/10356\nf 1939/11512/10357 11728/11513/10358 11727/11514/10359\nf 11698/11515/10360 11728/11516/10361 1939/11517/10362\nf 1939/11518/10363 1942/11519/10364 11698/11520/10365\nf 11698/11521/10366 1942/11522/10367 1961/11523/10368\nf 1961/11524/10369 11699/11525/10370 11698/11526/10371\nf 1944/11527/10372 1961/11528/10373 1942/11529/10374\nf 1961/11530/10375 1944/11531/10376 1945/11532/10377\nf 1945/11533/10378 1946/11534/10379 1961/11535/10380\nf 1942/11536/10381 1947/11537/10382 1944/11538/10383\nf 1947/11539/10384 1942/11540/10385 1939/11541/10386\nf 1939/11542/10387 1948/11543/10388 1947/11544/10389\nf 1948/11545/10390 1939/11546/10391 1938/11547/10392\nf 1938/11548/10393 1949/11549/10394 1948/11550/10395\nf 1949/11551/10396 1938/11552/10397 1935/11553/10398\nf 1935/11554/10399 1950/11555/10400 1949/11556/10401\nf 1934/11557/10402 1951/11558/10403 1950/11559/10404\nf 1950/11560/10405 1935/11561/10406 1934/11562/10407\nf 1951/11563/10408 1934/11564/10409 1932/11565/10410\nf 1932/11566/10411 1952/11567/10412 1951/11568/10413\nf 1952/11569/10414 1932/11570/10415 1931/11571/10416\nf 1931/11572/10417 1953/11573/10418 1952/11574/10419\nf 1953/11575/10420 1931/11576/10421 1929/11577/10422\nf 1929/11578/10423 1954/11579/10424 1953/11580/10425\nf 1954/11581/10426 1929/11582/10427 1928/11583/10428\nf 1928/11584/10429 1955/11585/10430 1954/11586/10431\nf 1955/11587/10432 1928/11588/10433 1926/11589/10434\nf 1926/11590/10435 1956/11591/10436 1955/11592/10437\nf 1956/11593/10438 1926/11594/10439 1925/11595/10440\nf 1925/11596/10441 1957/11597/10442 1956/11598/10443\nf 1957/11599/10444 1925/11600/10445 1923/11601/10446\nf 1923/11602/10447 1958/11603/10448 1957/11604/10449\nf 1958/11605/10450 1923/11606/10451 1922/11607/10452\nf 1922/11608/10453 1959/11609/10454 1958/11610/10455\nf 1959/11611/10456 1922/11612/10457 1920/11613/10458\nf 1920/11614/10459 1960/11615/10460 1959/11616/10461\nf 1960/11617/10462 1920/11618/10463 1946/11619/10464\nf 1946/11620/10465 1945/11621/10466 1960/11622/10467\nf 1961/11623/10468 1946/11624/10469 1968/11625/10470\nf 1968/11626/10471 11699/11627/10472 1961/11628/10473\nf 1924/11629/10474 10692/11630/10475 10691/11631/10476\nf 10691/11632/10477 10760/11633/10478 1924/11634/10479\nf 10760/11635/10480 10691/11636/10481 1993/11637/10482\nf 1993/11638/10483 10761/11639/10484 10760/11640/10485\nf 10761/11641/10486 1993/11642/10487 10629/11643/10488\nf 10629/11644/10489 1921/11645/10490 10761/11646/10491\nf 1921/11647/10492 10629/11648/10493 10630/11649/10494\nf 10630/11650/10495 13146/11651/10496 1921/11652/10497\nf 13146/11653/10498 10630/11654/10499 2010/11655/10500\nf 2010/11656/10501 1943/11657/10502 13146/11658/10503\nf 1943/11659/10504 2010/11660/10505 10666/11661/10506\nf 10666/11662/10507 1941/11663/10508 1943/11664/10509\nf 1941/11665/10510 10666/11666/10511 10665/11667/10512\nf 10665/11668/10513 1940/11669/10514 1941/11670/10515\nf 1940/11671/10516 10665/11672/10517 10703/11673/10518\nf 10703/11674/10519 1937/11675/10520 1940/11676/10521\nf 1937/11677/10522 10703/11678/10523 2003/11679/10524\nf 2003/11680/10525 1936/11681/10526 1937/11682/10527\nf 1936/11683/10528 2003/11684/10529 11070/11685/10530\nf 11070/11686/10531 13218/11687/10532 1936/11688/10533\nf 13218/11689/10534 11070/11690/10535 11071/11691/10536\nf 11071/11692/10537 1933/11693/10538 13218/11694/10539\nf 1933/11695/10540 11071/11696/10541 10613/11697/10542\nf 10613/11698/10543 1930/11699/10544 1933/11700/10545\nf 1930/11701/10546 10613/11702/10547 1998/11703/10548\nf 1998/11704/10549 13240/11705/10550 1930/11706/10551\nf 13240/11707/10552 1998/11708/10553 10083/11709/10554\nf 10083/11710/10555 1927/11711/10556 13240/11712/10557\nf 1927/11713/10558 10083/11714/10559 10137/11715/10560\nf 10137/11716/10561 13189/11717/10562 1927/11718/10563\nf 13189/11719/10564 10137/11720/10565 10692/11721/10566\nf 10692/11722/10567 1924/11723/10568 13189/11724/10569\nf 1991/11725/10570 13100/11726/10571 10487/11727/10572\nf 10487/11728/10573 1975/11729/10574 1991/11730/10575\nf 1975/11731/10576 10487/11732/10577 10488/11733/10578\nf 10488/11734/10579 1992/11735/10580 1975/11736/10581\nf 1992/11737/10582 10488/11738/10583 10432/11739/10584\nf 10432/11740/10585 1994/11741/10586 1992/11742/10587\nf 1994/11743/10588 10432/11744/10589 10433/11745/10590\nf 10433/11746/10591 2009/11747/10592 1994/11748/10593\nf 13100/11749/10594 1991/11750/10595 1979/11751/10596\nf 1979/11752/10597 13063/11753/10598 13100/11754/10599\nf 13063/11755/10600 1979/11756/10601 1996/11757/10602\nf 1996/11758/10603 13036/11759/10604 13063/11760/10605\nf 13036/11761/10606 1996/11762/10607 1999/11763/10608\nf 1999/11764/10609 13037/11765/10610 13036/11766/10611\nf 13037/11767/10612 1999/11768/10613 2000/11769/10614\nf 2000/11770/10615 13057/11771/10616 13037/11772/10617\nf 13057/11773/10618 2000/11774/10619 1982/11775/10620\nf 1982/11776/10621 10422/11777/10622 13057/11778/10623\nf 10422/11779/10624 1982/11780/10625 2002/11781/10626\nf 2002/11782/10627 10423/11783/10628 10422/11784/10629\nf 10423/11785/10630 2002/11786/10631 2004/11787/10632\nf 2004/11788/10633 13119/11789/10634 10423/11790/10635\nf 13119/11791/10636 2004/11792/10637 1985/11793/10638\nf 1985/11794/10639 10479/11795/10640 13119/11796/10641\nf 10479/11797/10642 1985/11798/10643 2007/11799/10644\nf 2007/11800/10645 10476/11801/10646 10479/11802/10647\nf 10476/11803/10648 2007/11804/10649 1988/11805/10650\nf 1988/11806/10651 10216/11807/10652 10476/11808/10653\nf 10216/11809/10654 1988/11810/10655 2011/11811/10656\nf 2011/11812/10657 10217/11813/10658 10216/11814/10659\nf 10217/11815/10660 2011/11816/10661 2009/11817/10662\nf 2009/11818/10663 10433/11819/10664 10217/11820/10665\nf 1962/11821/10666 1963/11822/10667 1991/11823/10668\nf 1991/11824/10669 1975/11825/10670 1962/11826/10671\nf 1962/11827/10672 1975/11828/10673 1992/11829/10674\nf 1992/11830/10675 12946/11831/10676 1962/11832/10677\nf 1966/11833/10678 12946/11834/10679 1992/11835/10680\nf 1992/11836/10681 1994/11837/10682 1966/11838/10683\nf 1966/11839/10684 1994/11840/10685 2009/11841/10686\nf 2009/11842/10687 1967/11843/10688 1966/11844/10689\nf 1991/11845/10690 1963/11846/10691 1995/11847/10692\nf 1995/11848/10693 1979/11849/10694 1991/11850/10695\nf 1996/11851/10696 1979/11852/10697 1995/11853/10698\nf 1995/11854/10699 1997/11855/10700 1996/11856/10701\nf 1996/11857/10702 1997/11858/10703 10084/11859/10704\nf 10084/11860/10705 1999/11861/10706 1996/11862/10707\nf 2000/11863/10708 1999/11864/10709 10084/11865/10710\nf 10084/11866/10711 2001/11867/10712 2000/11868/10713\nf 2000/11869/10714 2001/11870/10715 1971/11871/10716\nf 1971/11872/10717 1982/11873/10718 2000/11874/10719\nf 2002/11875/10720 1982/11876/10721 1971/11877/10722\nf 1971/11878/10723 1969/11879/10724 2002/11880/10725\nf 2002/11881/10726 1969/11882/10727 10771/11883/10728\nf 10771/11884/10729 2004/11885/10730 2002/11886/10731\nf 1985/11887/10732 2004/11888/10733 10771/11889/10734\nf 10771/11890/10735 2005/11891/10736 1985/11892/10737\nf 1985/11893/10738 2005/11894/10739 2006/11895/10740\nf 2006/11896/10741 2007/11897/10742 1985/11898/10743\nf 1988/11899/10744 2007/11900/10745 2006/11901/10746\nf 2006/11902/10747 2008/11903/10748 1988/11904/10749\nf 1988/11905/10750 2008/11906/10751 13141/11907/10752\nf 13141/11908/10753 2011/11909/10754 1988/11910/10755\nf 2009/11911/10756 2011/11912/10757 13141/11913/10758\nf 13141/11914/10759 1967/11915/10760 2009/11916/10761\nf 1977/11917/10762 1976/11918/10763 1974/11919/10764\nf 1977/11920/10765 1974/11921/10766 1990/11922/10767\nf 1974/11923/10768 2012/11924/10769 1990/11925/10770\nf 1974/11926/10771 1981/11927/10772 2012/11928/10773\nf 1974/11929/10774 1980/11930/10775 1981/11931/10776\nf 1974/11932/10777 2013/11933/10778 1980/11934/10779\nf 1980/11935/10780 2014/11936/10781 1981/11937/10782\nf 1981/11938/10783 1983/11939/10784 2012/11940/10785\nf 1981/11941/10786 2015/11942/10787 1983/11943/10788\nf 1983/11944/10789 1984/11945/10790 2012/11946/10791\nf 2012/11947/10792 1987/11948/10793 1990/11949/10794\nf 2012/11950/10795 1986/11951/10796 1987/11952/10797\nf 1987/11953/10798 1989/11954/10799 1990/11955/10800\nf 1977/11956/10801 1990/11957/10802 1978/11958/10803\nf 2016/4480/10804 2018/11959/10805 2017/11960/10806\nf 2017/11961/10807 2019/6136/10808 2016/4480/10809\nf 2019/6136/10810 2017/11962/10811 10911/11963/10812\nf 10911/11964/10813 10895/6226/10814 2019/6136/10815\nf 2021/11965/10816 2020/11966/10817 11515/11967/10818\nf 11515/11968/10819 10908/381/10820 2021/11969/10821\nf 2018/11970/10822 2016/4480/10823 11003/5802/10824\nf 11003/5802/10825 2025/11971/10826 2018/11972/10827\nf 2025/11973/10828 11003/5802/10829 11509/1084/10830\nf 11509/1084/10831 2027/11974/10832 2025/11975/10833\nf 10909/11976/10834 2022/11977/10835 2028/11978/10836\nf 2028/11979/10837 11540/5266/10838 10909/11980/10839\nf 11540/5266/10840 2028/11981/10841 2051/11982/10842\nf 2051/11983/10843 2050/3818/10844 11540/5266/10845\nf 2027/11984/10846 11509/1084/10847 11440/5641/10848\nf 11440/5641/10849 2031/11985/10850 2027/11986/10851\nf 2031/11987/10852 11440/5641/10853 11441/2075/10854\nf 11441/2075/10855 2033/11988/10856 2031/11989/10857\nf 2033/11990/10858 11441/2075/10859 11481/3928/10860\nf 11481/3928/10861 2035/11991/10862 2033/11992/10863\nf 2035/11993/10864 11481/3928/10865 11397/1181/10866\nf 11397/1181/10867 2037/11994/10868 2035/11995/10869\nf 2037/11996/10870 11397/1181/10871 11376/2617/10872\nf 11376/2617/10873 2039/11997/10874 2037/11998/10875\nf 2039/11999/10876 11376/2617/10877 11363/5487/10878\nf 11363/5487/10879 2041/12000/10880 2039/12001/10881\nf 2041/12002/10882 11363/5487/10883 11330/146/10884\nf 11330/146/10885 11332/12003/10886 2041/12004/10887\nf 2043/12005/10888 11331/12006/10889 11880/4983/10890\nf 11880/4983/10891 11893/12007/10892 2043/12008/10893\nf 2045/12009/10894 11881/12010/10895 2046/5676/10896\nf 2046/5676/10897 2047/12011/10898 2045/12012/10899\nf 2047/12013/10900 2046/5676/10901 2048/4349/10902\nf 2048/4349/10903 2049/12014/10904 2047/12015/10905\nf 2049/12016/10906 2048/4349/10907 2050/1130/10908\nf 2050/1130/10909 2051/12017/10910 2049/12018/10911\nf 11254/12019/10912 2038/12020/10913 2036/12021/10914\nf 2036/12022/10915 11255/12023/10916 11254/12024/10917\nf 11255/12025/10918 2036/12026/10919 2034/12027/10920\nf 2034/12028/10921 12606/12029/10922 11255/12030/10923\nf 12606/12031/10924 2034/12032/10925 2032/12033/10926\nf 2032/12034/10927 11279/12035/10928 12606/12036/10929\nf 11279/12037/10930 2032/12038/10931 2030/12039/10932\nf 2030/12040/10933 11280/12041/10934 11279/12042/10935\nf 11280/12043/10936 2030/12044/10937 2026/12045/10938\nf 2026/12046/10939 11554/12047/10940 11280/12048/10941\nf 11554/12049/10942 2026/12050/10943 2024/12051/10944\nf 2024/12052/10945 2061/12053/10946 11554/12054/10947\nf 2061/12055/10948 2024/12056/10949 10896/12057/10950\nf 10896/12058/10951 13259/12059/10952 2061/12060/10953\nf 13259/12061/10954 10896/12062/10955 10893/12063/10956\nf 10893/12064/10957 2062/12065/10958 13259/12066/10959\nf 2062/12067/10960 10893/12068/10961 10894/12069/10962\nf 10894/12070/10963 13253/12071/10964 2062/12072/10965\nf 13253/12073/10966 10894/12074/10967 10910/12075/10968\nf 10910/12076/10969 13254/12077/10970 13253/12078/10971\nf 13255/12079/10972 2023/12080/10973 2029/12081/10974\nf 2029/12082/10975 12573/12083/10976 13255/12084/10977\nf 12573/12085/10978 2029/12086/10979 11979/12087/10980\nf 11979/12088/10981 12546/12089/10982 12573/12090/10983\nf 2038/12091/10984 11254/12092/10985 11388/12093/10986\nf 11388/12094/10987 2040/12095/10988 2038/12096/10989\nf 2040/12097/10990 11388/12098/10991 11379/12099/10992\nf 11379/12100/10993 2042/12101/10994 2040/12102/10995\nf 2042/12103/10996 11379/12104/10997 11380/12105/10998\nf 11380/12106/10999 2044/12107/11000 2042/12108/11001\nf 11879/12109/11002 11381/12110/11003 13267/12111/11004\nf 13267/12112/11005 11898/12113/11006 11879/12114/11007\nf 11898/12115/11008 13267/12116/11009 12544/12117/11010\nf 12544/12118/11011 11899/12119/11012 11898/12120/11013\nf 11899/12121/11014 12544/12122/11015 12546/12123/11016\nf 12546/12124/11017 11979/12125/11018 11899/12126/11019\nf 11553/12127/11020 2056/12128/11021 13252/12129/11022\nf 11553/12130/11023 13252/12131/11024 2063/12132/11025\nf 13252/12133/11026 12574/12134/11027 2063/12135/11028\nf 13252/12136/11029 2057/12137/11030 12574/12138/11031\nf 2057/12139/11032 2064/12140/11033 12574/12141/11034\nf 12574/12142/11035 12545/12143/11036 2063/12144/11037\nf 12545/12145/11038 2052/12146/11039 2063/12147/11040\nf 12545/12148/11041 2059/12149/11042 2052/12150/11043\nf 2059/12151/11044 2065/12152/11045 2052/12153/11046\nf 2059/12154/11047 2066/12155/11048 2065/12156/11049\nf 2065/12157/11050 2067/12158/11051 2052/12159/11052\nf 2052/12160/11053 2055/12161/11054 2063/12162/11055\nf 2052/12163/11056 2054/12164/11057 2055/12165/11058\nf 2052/12166/11059 2053/12167/11060 2054/12168/11061\nf 2053/12169/11062 2068/12170/11063 2054/12171/11064\nf 2058/12172/11065 2060/12173/11066 2069/12174/11067\nf 12233/2943/11068 12540/5065/11069 2070/4429/11070\nf 2070/4429/11071 9413/5433/11072 12233/2943/11073\nf 2070/4429/11074 12540/5065/11075 2100/1521/11076\nf 2100/1521/11077 2137/6181/11078 2070/4429/11079\nf 9440/1135/11080 2070/4429/11081 2137/6181/11082\nf 2137/6181/11083 9441/2735/11084 9440/1135/11085\nf 2070/4429/11086 9440/1135/11087 2154/1551/11088\nf 2154/1551/11089 9413/5433/11090 2070/4429/11091\nf 9414/5535/11092 9413/5433/11093 2154/1551/11094\nf 2154/1551/11095 2157/1478/11096 9414/5535/11097\nf 9441/2735/11098 2137/6181/11099 2152/1138/11100\nf 2152/1138/11101 2177/3130/11102 9441/2735/11103\nf 9829/2671/11104 9894/3147/11105 2076/5295/11106\nf 2076/5295/11107 2077/2817/11108 9829/2671/11109\nf 2176/4431/11110 9829/2671/11111 2077/2817/11112\nf 2077/2817/11113 2078/2846/11114 2176/4431/11115\nf 2079/3623/11116 2076/5295/11117 9894/3147/11118\nf 9894/3147/11119 9843/1160/11120 2079/3623/11121\nf 2176/4431/11122 2078/2846/11123 12388/3083/11124\nf 12388/3083/11125 9850/2687/11126 2176/4431/11127\nf 2078/2846/11128 2077/2817/11129 2158/41/11130\nf 2158/41/11131 2077/2817/11132 2076/5295/11133\nf 2158/41/11134 9230/887/11135 2078/2846/11136\nf 2076/5295/11137 9954/5733/11138 2158/41/11139\nf 9954/5733/11140 2076/5295/11141 2079/3623/11142\nf 2079/3623/11143 9955/4371/11144 9954/5733/11145\nf 9955/4371/11146 2079/3623/11147 2083/3560/11148\nf 2083/3560/11149 2079/3623/11150 9843/1160/11151\nf 2083/3560/11152 2161/4551/11153 9955/4371/11154\nf 12464/6327/11155 2161/4551/11156 2083/3560/11157\nf 2083/3560/11158 2085/2971/11159 12464/6327/11160\nf 2163/5138/11161 12464/6327/11162 2085/2971/11163\nf 2085/2971/11164 2086/915/11165 2163/5138/11166\nf 9744/2170/11167 2085/2971/11168 2083/3560/11169\nf 2086/915/11170 2085/2971/11171 9744/2170/11172\nf 2083/3560/11173 9844/5286/11174 9744/2170/11175\nf 9843/1160/11176 9844/5286/11177 2083/3560/11178\nf 9744/2170/11179 9706/4705/11180 2086/915/11181\nf 9706/4705/11182 9993/2928/11183 2086/915/11184\nf 9993/2928/11185 9973/4936/11186 2086/915/11187\nf 9993/2928/11188 9974/3016/11189 9973/4936/11190\nf 2086/915/11191 9973/4936/11192 9994/2786/11193\nf 2163/5138/11194 2086/915/11195 9994/2786/11196\nf 2163/5138/11197 9994/2786/11198 9995/943/11199\nf 2163/5138/11200 9995/943/11201 10266/5449/11202\nf 2078/2846/11203 9230/887/11204 9216/4032/11205\nf 9216/4032/11206 12388/3083/11207 2078/2846/11208\nf 2094/12175/11209 2096/12176/11210 10226/12177/11211\nf 10226/12178/11212 10227/12179/11213 2094/12180/11214\nf 2096/12181/11215 2094/12182/11216 10184/12183/11217\nf 10184/12184/11218 10185/12185/11219 2096/12186/11220\nf 2187/12187/11221 2096/12188/11222 10185/12189/11223\nf 10185/12190/11224 9584/12191/11225 2187/12192/11226\nf 9584/12193/11227 10185/12194/11228 10186/1566/11229\nf 10186/1566/11230 9582/12195/11231 9584/12196/11232\nf 9582/12197/11233 10186/1566/11234 2071/3059/11235\nf 2071/3059/11236 2183/12198/11237 9582/12199/11238\nf 2183/12200/11239 2071/3059/11240 12234/3181/11241\nf 12234/3181/11242 8938/12201/11243 2183/12202/11244\nf 8938/12203/11245 12234/3181/11246 10226/12204/11247\nf 2096/12205/11248 2187/12206/11249 8940/12207/11250\nf 8940/12208/11251 10226/12209/11252 2096/12210/11253\nf 10226/12211/11254 8940/12212/11255 8938/12213/11256\nf 2095/12214/11257 2103/5194/11258 2072/2993/11259\nf 2097/12215/11260 2095/12216/11261 2072/2993/11262\nf 2097/12217/11263 2072/2993/11264 2104/12218/11265\nf 2104/12219/11266 2072/2993/11267 2075/3107/11268\nf 2075/3107/11269 2105/12220/11270 2104/12221/11271\nf 2105/12222/11272 2075/3107/11273 2139/1185/11274\nf 2139/1185/11275 2106/12223/11276 2105/12224/11277\nf 2106/12225/11278 2139/1185/11279 8957/5407/11280\nf 8957/5407/11281 2108/12226/11282 2106/12227/11283\nf 2108/12228/11284 8957/5407/11285 8958/2472/11286\nf 8958/2472/11287 2110/12229/11288 2108/12230/11289\nf 2110/12231/11290 8958/2472/11291 2140/4269/11292\nf 2140/4269/11293 2111/12232/11294 2110/12233/11295\nf 2111/12234/11296 2140/4269/11297 8871/3534/11298\nf 8871/3534/11299 2112/12235/11300 2111/12236/11301\nf 2112/12237/11302 8871/3534/11303 12132/479/11304\nf 12132/479/11305 2114/12238/11306 2112/12239/11307\nf 2114/12240/11308 12132/479/11309 2143/3248/11310\nf 2143/3248/11311 2115/12241/11312 2114/12242/11313\nf 2115/12243/11314 2143/3248/11315 12083/3217/11316\nf 12083/3217/11317 2117/12244/11318 2115/12245/11319\nf 2118/12246/11320 2117/12247/11321 12083/3217/11322\nf 12083/3217/11323 12084/1836/11324 2118/12248/11325\nf 2119/12249/11326 2118/12250/11327 12084/1836/11328\nf 12084/1836/11329 12661/4464/11330 2119/12251/11331\nf 2119/12252/11332 12661/4464/11333 12662/739/11334\nf 12662/739/11335 2121/12253/11336 2119/12254/11337\nf 2121/12255/11338 12662/739/11339 11998/3693/11340\nf 11998/3693/11341 12000/12256/11342 2121/12257/11343\nf 11983/12258/11344 2123/12259/11345 11999/12260/11346\nf 11999/12261/11347 11984/5808/11348 11983/12262/11349\nf 2124/12263/11350 11985/12264/11351 11990/6166/11352\nf 11990/6166/11353 2127/12265/11354 2124/12266/11355\nf 2127/12267/11356 11990/6166/11357 11991/5222/11358\nf 11991/5222/11359 2129/12268/11360 2127/12269/11361\nf 2129/12270/11362 11991/5222/11363 12019/6311/11364\nf 12019/6311/11365 2131/12271/11366 2129/12272/11367\nf 2131/12273/11368 12019/6311/11369 2150/6241/11370\nf 2150/6241/11371 2132/12274/11372 2131/12275/11373\nf 2132/12276/11374 2150/6241/11375 12061/3571/11376\nf 12061/3571/11377 2134/12277/11378 2132/12278/11379\nf 2134/12279/11380 12061/3571/11381 12062/1656/11382\nf 12062/1656/11383 2135/12280/11384 2134/12281/11385\nf 2136/12282/11386 2135/12283/11387 12062/1656/11388\nf 12062/1656/11389 12107/114/11390 2136/12284/11391\nf 2136/12285/11392 12107/114/11393 10187/5600/11394\nf 2136/12286/11395 10187/5600/11396 2099/12287/11397\nf 2136/12288/11398 2099/12289/11399 2098/12290/11400\nf 9414/2702/11401 2157/5981/11402 12338/2978/11403\nf 12338/2978/11404 12292/3182/11405 9414/2702/11406\nf 12292/3182/11407 12338/2978/11408 9376/2669/11409\nf 9376/2669/11410 2107/3006/11411 12292/3182/11412\nf 2107/3006/11413 9376/2669/11414 9322/4473/11415\nf 9322/4473/11416 2109/801/11417 2107/3006/11418\nf 2109/801/11419 9322/4473/11420 2162/2345/11421\nf 2162/2345/11422 8870/3178/11423 2109/801/11424\nf 8870/3178/11425 2162/2345/11426 12199/4142/11427\nf 12199/4142/11428 2142/1650/11429 8870/3178/11430\nf 2142/1650/11431 12199/4142/11432 2164/4569/11433\nf 2164/4569/11434 2113/4659/11435 2142/1650/11436\nf 12133/2880/11437 2113/4659/11438 2164/4569/11439\nf 2164/4569/11440 11862/1757/11441 12133/2880/11442\nf 12133/2880/11443 11862/1757/11444 11863/680/11445\nf 11863/680/11446 2116/6514/11447 12133/2880/11448\nf 2116/6514/11449 11863/680/11450 9456/4939/11451\nf 9456/4939/11452 2146/4779/11453 2116/6514/11454\nf 2120/5880/11455 2146/4779/11456 9456/4939/11457\nf 9456/4939/11458 2166/1195/11459 2120/5880/11460\nf 2147/1578/11461 2120/5880/11462 2166/1195/11463\nf 2166/1195/11464 2167/2765/11465 2147/1578/11466\nf 2147/1578/11467 2167/2765/11468 9430/1613/11469\nf 9430/1613/11470 2122/2642/11471 2147/1578/11472\nf 2122/2642/11473 9430/1613/11474 9708/3070/11475\nf 9708/3070/11476 2125/4513/11477 2122/2642/11478\nf 2125/4513/11479 9708/3070/11480 9754/482/11481\nf 9754/482/11482 2126/1006/11483 2125/4513/11484\nf 2126/1006/11485 9754/482/11486 9784/897/11487\nf 9784/897/11488 2128/2296/11489 2126/1006/11490\nf 2128/2296/11491 9784/897/11492 11766/4534/11493\nf 11766/4534/11494 2130/3701/11495 2128/2296/11496\nf 2130/3701/11497 11766/4534/11498 11663/4656/11499\nf 11663/4656/11500 12190/54/11501 2130/3701/11502\nf 12190/54/11503 11663/4656/11504 11664/2428/11505\nf 11664/2428/11506 2133/2498/11507 12190/54/11508\nf 2133/2498/11509 11664/2428/11510 2177/2344/11511\nf 2177/2344/11512 2152/370/11513 2133/2498/11514\nf 9442/5819/11515 2178/12291/11516 2153/12292/11517\nf 2153/12293/11518 2073/559/11519 9442/5819/11520\nf 2073/559/11521 2153/12294/11522 9215/12295/11523\nf 9215/12296/11524 9213/4305/11525 2073/559/11526\nf 9214/2585/11527 2156/927/11528 2155/3787/11529\nf 2155/3787/11530 9264/3572/11531 9214/2585/11532\nf 9264/3572/11533 2155/3787/11534 9231/5225/11535\nf 9231/5225/11536 2138/4238/11537 9264/3572/11538\nf 2138/4238/11539 9231/5225/11540 2081/4570/11541\nf 2081/4570/11542 2159/4899/11543 2138/4238/11544\nf 2159/4899/11545 2081/4570/11546 2082/5305/11547\nf 2082/5305/11548 2160/216/11549 2159/4899/11550\nf 2160/216/11551 2082/5305/11552 12463/2432/11553\nf 12463/2432/11554 9323/5276/11555 2160/216/11556\nf 2141/4380/11557 9323/5276/11558 12463/2432/11559\nf 12463/2432/11560 2084/125/11561 2141/4380/11562\nf 2141/4380/11563 2084/125/11564 12621/4546/11565\nf 12621/4546/11566 12629/3225/11567 2141/4380/11568\nf 2144/6103/11569 12629/3225/11570 12621/4546/11571\nf 12621/4546/11572 2093/516/11573 2144/6103/11574\nf 2144/6103/11575 2093/516/11576 2092/2136/11577\nf 2092/2136/11578 2145/2787/11579 2144/6103/11580\nf 2145/2787/11581 2092/2136/11582 2091/1219/11583\nf 2091/1219/11584 2165/2905/11585 2145/2787/11586\nf 2166/2788/11587 2165/2905/11588 2091/1219/11589\nf 2091/1219/11590 2089/1749/11591 2166/2788/11592\nf 2167/4572/11593 2166/2788/11594 2089/1749/11595\nf 2089/1749/11596 2090/4183/11597 2167/4572/11598\nf 2167/4572/11599 2090/4183/11600 2088/3924/11601\nf 2088/3924/11602 2168/2595/11603 2167/4572/11604\nf 2168/2595/11605 2088/3924/11606 9705/4309/11607\nf 9705/4309/11608 9707/4465/11609 2168/2595/11610\nf 2170/12297/11611 2169/12298/11612 2171/3465/11613\nf 2171/3465/11614 2172/5477/11615 2170/12299/11616\nf 2172/5477/11617 2171/3465/11618 2087/5734/11619\nf 2087/5734/11620 2173/5994/11621 2172/5477/11622\nf 2173/5994/11623 2087/5734/11624 2080/792/11625\nf 2080/792/11626 2148/1252/11627 2173/5994/11628\nf 2148/1252/11629 2080/792/11630 2174/2789/11631\nf 2174/2789/11632 2149/2017/11633 2148/1252/11634\nf 2151/3709/11635 2149/2017/11636 2174/2789/11637\nf 2174/2789/11638 2175/1561/11639 2151/3709/11640\nf 2151/3709/11641 2175/1561/11642 9830/2572/11643\nf 9830/2572/11644 12575/2133/11645 2151/3709/11646\nf 12575/2133/11647 9830/2572/11648 9849/6321/11649\nf 9849/6321/11650 2074/2167/11651 12575/2133/11652\nf 12695/12300/11653 9656/12301/11654 12711/12302/11655\nf 12711/12303/11656 12696/12304/11657 12695/12305/11658\nf 9656/12306/11659 12695/12307/11660 2186/12308/11661\nf 2186/12309/11662 9657/12310/11663 9656/12311/11664\nf 12710/12312/11665 2180/12313/11666 12700/12314/11667\nf 12700/12315/11668 2101/12316/11669 12710/12317/11670\nf 9583/12318/11671 12700/12319/11672 2180/12320/11673\nf 2180/12321/11674 9658/12322/11675 9583/12323/11676\nf 2184/12324/11677 2181/12325/11678 12690/12326/11679\nf 12690/12327/11680 9585/12328/11681 2184/12329/11682\nf 12689/12330/11683 2179/12331/11684 12693/12332/11685\nf 12693/12333/11686 2185/12334/11687 12689/12335/11688\nf 8941/12336/11689 12693/12337/11690 2179/12338/11691\nf 2179/12339/11692 12697/12340/11693 8941/12341/11694\nf 2188/12342/11695 2182/12343/11696 8939/12344/11697\nf 8939/12345/11698 2102/12346/11699 2188/12347/11700\nf 2189/1247/11701 2191/3084/11702 9652/1664/11703\nf 9652/1664/11704 9653/4615/11705 2189/1247/11706\nf 9652/1664/11707 2191/3084/11708 2193/3817/11709\nf 2193/3817/11710 9655/350/11711 9652/1664/11712\nf 2195/5697/11713 2191/3084/11714 2189/1247/11715\nf 2193/3817/11716 2191/3084/11717 2195/5697/11718\nf 2189/1247/11719 2196/1098/11720 2195/5697/11721\nf 2195/5697/11722 2196/1098/11723 2205/5319/11724\nf 2205/5319/11725 12826/4635/11726 2195/5697/11727\nf 2195/5697/11728 12826/4635/11729 2204/2818/11730\nf 2204/2818/11731 2198/2424/11732 2195/5697/11733\nf 2195/5697/11734 2198/2424/11735 2193/3817/11736\nf 2201/3561/11737 2198/2424/11738 2204/2818/11739\nf 2193/3817/11740 2198/2424/11741 2201/3561/11742\nf 2204/2818/11743 11065/4098/11744 2201/3561/11745\nf 9840/3275/11746 9655/350/11747 2193/3817/11748\nf 2193/3817/11749 9759/4476/11750 9840/3275/11751\nf 2201/3561/11752 9759/4476/11753 2193/3817/11754\nf 2200/5689/11755 9758/12348/11756 11066/12349/11757\nf 11066/12350/11758 2206/3878/11759 2200/5689/11760\nf 9758/12351/11761 2200/5689/11762 2202/3260/11763\nf 2202/3260/11764 2203/12352/11765 9758/12353/11766\nf 9841/12354/11767 2203/12355/11768 2202/3260/11769\nf 2202/3260/11770 13204/1553/11771 9841/12356/11772\nf 11064/1609/11773 2197/1456/11774 12825/3399/11775\nf 11064/1609/11776 12825/3399/11777 11082/1981/11778\nf 2207/4573/11779 11064/1609/11780 11082/1981/11781\nf 2199/2773/11782 2208/1962/11783 2192/3698/11784\nf 2199/2773/11785 2192/3698/11786 2194/4163/11787\nf 2192/3698/11788 2190/1224/11789 2194/4163/11790\nf 2209/5142/11791 10814/3336/11792 10804/3077/11793\nf 10806/1303/11794 2209/5142/11795 10804/3077/11796\nf 2209/5142/11797 10806/1303/11798 10748/2128/11799\nf 2218/729/11800 2209/5142/11801 10748/2128/11802\nf 2209/5142/11803 2218/729/11804 13175/2998/11805\nf 2221/5650/11806 2209/5142/11807 13175/2998/11808\nf 2209/5142/11809 2221/5650/11810 13207/1515/11811\nf 11725/945/11812 2209/5142/11813 13207/1515/11814\nf 2209/5142/11815 11725/945/11816 11605/5362/11817\nf 10814/3336/11818 2209/5142/11819 11605/5362/11820\nf 11758/1743/11821 10807/3513/11822 2212/1529/11823\nf 2212/1529/11824 11868/4797/11825 11758/1743/11826\nf 10862/2657/11827 11869/12357/11828 10805/12358/11829\nf 10805/12359/11830 10815/6460/11831 10862/2657/11832\nf 2213/12360/11833 11759/12361/11834 11831/1744/11835\nf 11831/1744/11836 2216/3514/11837 2213/12362/11838\nf 10749/12363/11839 2232/12364/11840 10727/3381/11841\nf 10727/3381/11842 10730/5942/11843 10749/12365/11844\nf 10731/12366/11845 10728/12367/11846 10737/1001/11847\nf 10737/1001/11848 2210/1524/11849 10731/12368/11850\nf 13176/12369/11851 10736/12370/11852 10684/2658/11853\nf 10684/2658/11854 10687/5051/11855 13176/12371/11856\nf 10688/12372/11857 10685/12373/11858 11690/3154/11859\nf 11690/3154/11860 13208/4801/11861 10688/12374/11862\nf 2211/12375/11863 11691/12376/11864 11703/572/11865\nf 11703/572/11866 11724/1526/11867 2211/12377/11868\nf 2224/12378/11869 11704/12379/11870 13115/4404/11871\nf 13115/4404/11872 2225/1525/11873 2224/12380/11874\nf 10863/12381/11875 2215/12382/11876 11606/2237/11877\nf 11606/2237/11878 2239/3971/11879 10863/12383/11880\nf 2226/426/11881 11757/2304/11882 11867/454/11883\nf 11867/454/11884 11870/4685/11885 2226/426/11886\nf 2229/12384/11887 2227/12385/11888 10864/59/11889\nf 10864/59/11890 13333/1308/11891 2229/12386/11892\nf 2228/12387/11893 11756/12388/11894 11829/6366/11895\nf 11829/6366/11896 11830/681/11897 2228/12389/11898\nf 11832/12390/11899 2231/12391/11900 2233/3481/11901\nf 2233/3481/11902 10729/4164/11903 11832/12392/11904\nf 2217/12393/11905 13327/12394/11906 13331/2495/11907\nf 13331/2495/11908 2219/3306/11909 2217/12395/11910\nf 10738/12396/11911 2234/12397/11912 13334/4434/11913\nf 13334/4434/11914 10686/465/11915 10738/12398/11916\nf 2220/12399/11917 2235/12400/11918 2236/2280/11919\nf 2236/2280/11920 2222/4884/11921 2220/12401/11922\nf 11692/12402/11923 13332/12403/11924 2237/72/11925\nf 2237/72/11926 11705/682/11927 11692/12404/11928\nf 2223/12405/11929 13124/12406/11930 13116/1937/11931\nf 13116/1937/11932 13114/2500/11933 2223/12407/11934\nf 2230/12408/11935 2214/12409/11936 13113/4932/11937\nf 13113/4932/11938 2238/4050/11939 2230/12410/11940\nf 10496/12411/11941 10497/12412/11942 2241/12413/11943\nf 2241/12414/11944 2243/12415/11945 10496/12416/11946\nf 2244/12417/11947 2241/12418/11948 10497/12419/11949\nf 10497/12420/11950 11124/12421/11951 2244/12422/11952\nf 2243/12423/11953 2241/12424/11954 2245/12425/11955\nf 2245/12426/11956 2241/12427/11957 2244/12428/11958\nf 2245/12429/11959 2246/12430/11960 2243/12431/11961\nf 2255/12432/11962 2246/12433/11963 2245/12434/11964\nf 2245/12435/11965 11166/12436/11966 2255/12437/11967\nf 13062/12438/11968 11166/12439/11969 2245/12440/11970\nf 2245/12441/11971 2248/12442/11972 13062/12443/11973\nf 2244/12444/11974 2248/12445/11975 2245/12446/11976\nf 13062/12447/11977 2248/12448/11978 10399/12449/11979\nf 10399/12450/11980 2248/12451/11981 2244/12452/11982\nf 10399/12453/11983 10400/12454/11984 13062/12455/11985\nf 2244/12456/11986 11124/12457/11987 11125/12458/11988\nf 11125/12459/11989 2252/12460/11990 2244/12461/11991\nf 2244/12462/11992 2252/12463/11993 10399/12464/11994\nf 2249/12465/11995 2250/12466/11996 2254/12467/11997\nf 2254/12468/11998 10401/12469/11999 2249/12470/12000\nf 2250/12471/12001 2249/12472/12002 10543/12473/12003\nf 10543/12474/12004 2253/12475/12005 2250/12476/12006\nf 2253/12477/12007 10543/12478/12008 11126/12479/12009\nf 11126/12480/12010 11172/12481/12011 2253/12482/12012\nf 2247/12483/12013 2251/12484/12014 13039/12485/12015\nf 2247/12486/12016 13039/12487/12017 11165/12488/12018\nf 2247/12489/12019 11165/12490/12020 2256/12491/12021\nf 2257/12492/12022 2259/12493/12023 2258/12494/12024\nf 2257/12495/12025 2258/12496/12026 2242/12497/12027\nf 2257/12498/12028 2242/12499/12029 2240/12500/12030\nf 2260/12501/12031 13105/12502/12032 13103/12503/12033\nf 10600/12504/12034 13105/12505/12035 2260/12506/12036\nf 2260/12507/12037 10602/12508/12038 10600/12509/12039\nf 10578/12510/12040 10602/12511/12041 2260/12512/12042\nf 2260/12513/12043 10580/12514/12044 10578/12515/12045\nf 10047/12516/12046 10580/12517/12047 2260/12518/12048\nf 2260/12519/12049 10049/12520/12050 10047/12521/12051\nf 10009/12522/12052 10049/12523/12053 2260/12524/12054\nf 2260/12525/12055 10011/12526/12056 10009/12527/12057\nf 13103/12528/12058 10011/12529/12059 2260/12530/12060\nf 2261/12531/12061 2264/12532/12062 10285/12533/12063\nf 10285/12534/12064 10262/12535/12065 2261/12536/12066\nf 13106/12537/12067 2276/12538/12068 10202/12539/12069\nf 10202/12540/12070 13104/12541/12071 13106/12542/12072\nf 10608/12543/12073 10286/12544/12074 10601/12545/12075\nf 10601/12546/12076 2267/12547/12077 10608/12548/12078\nf 10610/12549/12079 10607/12550/12080 10603/12551/12081\nf 10603/12552/12082 2262/12553/12083 10610/12554/12084\nf 9950/12555/12085 10612/12556/12086 10579/12557/12087\nf 10579/12558/12088 2263/12559/12089 9950/12560/12090\nf 10052/12561/12091 9949/12562/12092 10581/12563/12093\nf 10581/12564/12094 10048/12565/12095 10052/12566/12096\nf 10102/12567/12097 10053/12568/12098 2270/12569/12099\nf 2270/12570/12100 10050/12571/12101 10102/12572/12102\nf 10089/12573/12103 10101/12574/12104 2271/12575/12105\nf 2271/12576/12106 2272/12577/12107 10089/12578/12108\nf 10206/12579/12109 10090/12580/12110 10010/12581/12111\nf 10010/12582/12112 10012/12583/12113 10206/12584/12114\nf 2273/12585/12115 2265/12586/12116 10201/12587/12117\nf 10201/12588/12118 10204/12589/12119 2273/12590/12120\nf 10260/12591/12121 10261/12592/12122 10284/12593/12123\nf 10284/12594/12124 10293/12595/12125 10260/12596/12126\nf 10263/12597/12127 2274/12598/12128 10374/12599/12129\nf 10374/12600/12130 10203/12601/12131 10263/12602/12132\nf 2277/12603/12133 2275/12604/12134 10609/12605/12135\nf 10609/12606/12136 2280/12607/12137 2277/12608/12138\nf 12867/12609/12139 2266/12610/12140 10611/12611/12141\nf 10611/12612/12142 12857/12613/12143 12867/12614/12144\nf 2281/12615/12145 2268/12616/12146 9948/12617/12147\nf 9948/12618/12148 2283/12619/12149 2281/12620/12150\nf 9951/12621/12151 2282/12622/12152 10054/12623/12153\nf 10054/12624/12154 12875/12625/12155 9951/12626/12156\nf 2284/12627/12157 2269/12628/12158 10100/12629/12159\nf 10100/12630/12160 10106/12631/12161 2284/12632/12162\nf 2286/12633/12163 2285/12634/12164 10088/12635/12165\nf 10088/12636/12166 2288/12637/12167 2286/12638/12168\nf 10091/12639/12169 2287/12640/12170 10205/12641/12171\nf 10205/12642/12172 12881/12643/12173 10091/12644/12174\nf 2279/12645/12175 2278/12646/12176 2289/12647/12177\nf 2289/12648/12178 2290/12649/12179 2279/12650/12180\nf 2291/6153/12181 9874/4745/12182 9873/6402/12183\nf 9873/6402/12184 2294/5105/12185 2291/6153/12186\nf 9831/1183/12187 2291/6153/12188 2294/5105/12189\nf 2294/5105/12190 2296/1112/12191 9831/1183/12192\nf 2291/6153/12193 9831/1183/12194 2297/4928/12195\nf 2297/4928/12196 2298/6437/12197 2291/6153/12198\nf 9874/4745/12199 2291/6153/12200 9848/12651/12201\nf 9848/12652/12202 9821/3027/12203 9874/4745/12204\nf 9818/30/12205 2298/6437/12206 2297/4928/12207\nf 2297/4928/12208 9819/1222/12209 9818/30/12210\nf 2302/5493/12211 9821/3027/12212 9848/12653/12213\nf 9848/12654/12214 9817/12655/12215 2302/5493/12216\nf 2294/5105/12217 9873/6402/12218 9913/339/12219\nf 9913/339/12220 2304/2912/12221 2294/5105/12222\nf 2296/1112/12223 2294/5105/12224 2304/2912/12225\nf 2304/2912/12226 2305/5408/12227 2296/1112/12228\nf 10969/1796/12229 2304/2912/12230 9913/339/12231\nf 9913/339/12232 10961/2551/12233 10969/1796/12234\nf 10971/2411/12235 2305/5408/12236 2304/2912/12237\nf 2304/2912/12238 10969/1796/12239 10971/2411/12240\nf 11033/847/12241 2297/4928/12242 2295/12656/12243\nf 2295/12657/12244 11034/2480/12245 11033/847/12246\nf 11034/2480/12247 2295/12658/12248 2296/1112/12249\nf 11019/3219/12250 2309/12659/12251 2310/12660/12252\nf 2310/12661/12253 11017/2883/12254 11019/3219/12255\nf 11017/2883/12256 2310/12662/12257 2313/2320/12258\nf 2296/1112/12259 11016/12663/12260 11034/2480/12261\nf 11016/12664/12262 2296/1112/12263 2305/5408/12264\nf 2313/2320/12265 11018/5629/12266 11017/2883/12267\nf 2309/12665/12268 11019/3219/12269 2315/3435/12270\nf 2315/3435/12271 10946/5569/12272 2309/12666/12273\nf 2297/4928/12274 11033/847/12275 10945/12667/12276\nf 10945/12668/12277 9819/1222/12278 2297/4928/12279\nf 2305/5408/12280 2317/4751/12281 11016/12669/12282\nf 11018/5629/12283 2313/2320/12284 2317/4751/12285\nf 2317/4751/12286 2305/5408/12287 10971/2411/12288\nf 2317/4751/12289 2318/1874/12290 11018/5629/12291\nf 10971/2411/12292 11078/1313/12293 2317/4751/12294\nf 2318/1874/12295 2317/4751/12296 11078/1313/12297\nf 11078/1313/12298 2320/5034/12299 2318/1874/12300\nf 11079/12670/12301 2308/12671/12302 9060/6253/12303\nf 9057/2225/12304 9059/12672/12305 10972/12673/12306\nf 10972/12674/12307 2306/12675/12308 9057/2225/12309\nf 9050/3477/12310 9058/12676/12311 10970/12677/12312\nf 10970/12678/12313 2307/12679/12314 9050/3477/12315\nf 9049/425/12316 9050/3477/12317 2307/12680/12318\nf 2307/12681/12319 2303/12682/12320 9049/425/12321\nf 12319/4783/12322 9049/425/12323 2303/12683/12324\nf 2303/12684/12325 2292/12685/12326 12319/4783/12327\nf 2376/2612/12328 12319/4783/12329 2292/12686/12330\nf 2292/12687/12331 2293/12688/12332 2376/2612/12333\nf 12326/1942/12334 2376/2612/12335 2293/12689/12336\nf 2293/12690/12337 2299/12691/12338 12326/1942/12339\nf 9060/6253/12340 9066/73/12341 11079/12692/12342\nf 11136/12693/12343 2319/12694/12344 2381/12695/12345\nf 2375/2201/12346 12326/1942/12347 2299/12696/12348\nf 2299/12697/12349 2302/5493/12350 2375/2201/12351\nf 10846/2339/12352 2375/2201/12353 2302/5493/12354\nf 2302/5493/12355 9817/12698/12356 10846/2339/12357\nf 2374/3291/12358 2323/12699/12359 2300/12700/12360\nf 2300/12701/12361 2301/12702/12362 2374/3291/12363\nf 9334/922/12364 9336/12703/12365 9820/12704/12366\nf 9820/12705/12367 2316/12706/12368 9334/922/12369\nf 12539/5350/12370 2373/12707/12371 10946/5569/12372\nf 10946/5569/12373 2315/3435/12374 12539/5350/12375\nf 2372/3895/12376 12539/5350/12377 2315/3435/12378\nf 2315/3435/12379 2311/12708/12380 2372/3895/12381\nf 12322/4172/12382 2372/3895/12383 2311/12709/12384\nf 2311/12710/12385 2312/12711/12386 12322/4172/12387\nf 12322/4172/12388 2312/12712/12389 2314/12713/12390\nf 2314/12714/12391 8937/4785/12392 12322/4172/12393\nf 8937/4785/12394 2314/12715/12395 11020/12716/12396\nf 11020/12717/12397 8936/719/12398 8937/4785/12399\nf 12294/5875/12400 8936/719/12401 11020/12718/12402\nf 11020/12719/12403 11136/12720/12404 12294/5875/12405\nf 2381/12721/12406 12294/5875/12407 11136/12722/12408\nf 2346/3124/12409 13265/256/12410 11204/537/12411\nf 11204/537/12412 11205/2392/12413 2346/3124/12414\nf 11207/28/12415 2346/3124/12416 11205/2392/12417\nf 11205/2392/12418 2385/4300/12419 11207/28/12420\nf 11208/4019/12421 11207/28/12422 2385/4300/12423\nf 2385/4300/12424 10082/5035/12425 11208/4019/12426\nf 2350/4669/12427 11208/4019/12428 10082/5035/12429\nf 10082/5035/12430 10176/3737/12431 2350/4669/12432\nf 2352/4629/12433 2350/4669/12434 10176/3737/12435\nf 10176/3737/12436 10178/1329/12437 2352/4629/12438\nf 9332/3120/12439 2352/4629/12440 10178/1329/12441\nf 10178/1329/12442 10281/4694/12443 9332/3120/12444\nf 9357/6471/12445 9332/3120/12446 10281/4694/12447\nf 10281/4694/12448 10236/659/12449 9357/6471/12450\nf 2358/1107/12451 9357/6471/12452 10236/659/12453\nf 10236/659/12454 10238/2543/12455 2358/1107/12456\nf 2360/1002/12457 2358/1107/12458 10238/2543/12459\nf 10238/2543/12460 2400/1318/12461 2360/1002/12462\nf 11971/1928/12463 2360/1002/12464 2400/1318/12465\nf 2400/1318/12466 11930/6452/12467 11971/1928/12468\nf 11938/4481/12469 11971/1928/12470 11930/6452/12471\nf 11930/6452/12472 11872/3500/12473 11938/4481/12474\nf 11843/3864/12475 11938/4481/12476 11872/3500/12477\nf 11872/3500/12478 11854/1959/12479 11843/3864/12480\nf 11844/4954/12481 11843/3864/12482 11854/1959/12483\nf 11854/1959/12484 11841/3925/12485 11844/4954/12486\nf 11859/1386/12487 11844/4954/12488 11841/3925/12489\nf 11841/3925/12490 11422/3948/12491 11859/1386/12492\nf 2367/2946/12493 11859/1386/12494 11422/3948/12495\nf 11422/3948/12496 11424/3128/12497 2367/2946/12498\nf 9223/2769/12499 2367/2946/12500 11424/3128/12501\nf 11424/3128/12502 11467/2613/12503 9223/2769/12504\nf 9224/3942/12505 9223/2769/12506 11467/2613/12507\nf 11467/2613/12508 2409/2273/12509 9224/3942/12510\nf 13265/256/12511 9224/3942/12512 2409/2273/12513\nf 2409/2273/12514 11204/537/12515 13265/256/12516\nf 2344/4973/12517 2345/1492/12518 2328/3633/12519\nf 2328/3633/12520 13262/3176/12521 2344/4973/12522\nf 2347/4955/12523 2344/4973/12524 13262/3176/12525\nf 13262/3176/12526 2330/5270/12527 2347/4955/12528\nf 2348/3967/12529 2347/4955/12530 2330/5270/12531\nf 2330/5270/12532 2331/3788/12533 2348/3967/12534\nf 2349/1304/12535 2348/3967/12536 2331/3788/12537\nf 2331/3788/12538 11542/1850/12539 2349/1304/12540\nf 9302/3776/12541 2349/1304/12542 11542/1850/12543\nf 11542/1850/12544 9331/4020/12545 9302/3776/12546\nf 9303/503/12547 9302/3776/12548 9331/4020/12549\nf 9331/4020/12550 2354/3174/12551 9303/503/12552\nf 9361/2049/12553 9303/503/12554 2354/3174/12555\nf 2354/3174/12556 2356/5937/12557 9361/2049/12558\nf 9391/2257/12559 9361/2049/12560 2356/5937/12561\nf 2356/5937/12562 9383/2108/12563 9391/2257/12564\nf 9208/455/12565 9391/2257/12566 9383/2108/12567\nf 9383/2108/12568 9384/4654/12569 9208/455/12570\nf 9209/2803/12571 9208/455/12572 9384/4654/12573\nf 9384/4654/12574 2332/1065/12575 9209/2803/12576\nf 9162/3169/12577 9209/2803/12578 2332/1065/12579\nf 2332/1065/12580 2334/2854/12581 9162/3169/12582\nf 9142/2782/12583 9162/3169/12584 2334/2854/12585\nf 2334/2854/12586 2336/1390/12587 9142/2782/12588\nf 9127/3401/12589 9142/2782/12590 2336/1390/12591\nf 2336/1390/12592 2338/1644/12593 9127/3401/12594\nf 9128/12/12595 9127/3401/12596 2338/1644/12597\nf 2338/1644/12598 2340/986/12599 9128/12/12600\nf 9179/3296/12601 9129/12723/12602 11860/12724/12603\nf 11860/12725/12604 9257/4692/12605 9179/3296/12606\nf 9226/5403/12607 2366/12726/12608 9258/12727/12609\nf 9258/12728/12610 2369/6468/12611 9226/5403/12612\nf 9236/2587/12613 2368/12729/12614 9222/12730/12615\nf 9222/12731/12616 2371/484/12617 9236/2587/12618\nf 2345/1492/12619 9236/2587/12620 2371/484/12621\nf 2371/484/12622 2328/3633/12623 2345/1492/12624\nf 2362/12732/12625 2363/12733/12626 12474/2171/12627\nf 2324/1015/12628 12474/2171/12629 2363/12734/12630\nf 2363/12735/12631 2364/12736/12632 2324/1015/12633\nf 9333/1307/12634 2324/1015/12635 2364/12737/12636\nf 2364/12738/12637 2365/12739/12638 9333/1307/12639\nf 9335/3437/12640 9333/1307/12641 2365/12740/12642\nf 2365/12741/12643 9178/12742/12644 9335/3437/12645\nf 10847/1471/12646 9335/3437/12647 9178/12743/12648\nf 9178/12744/12649 9225/12745/12650 10847/1471/12651\nf 12490/5973/12652 10847/1471/12653 9225/12746/12654\nf 9225/12747/12655 2370/12748/12656 12490/5973/12657\nf 2322/1312/12658 12490/5973/12659 2370/12749/12660\nf 2370/12750/12661 11266/12751/12662 2322/1312/12663\nf 12318/5490/12664 2322/1312/12665 11266/12752/12666\nf 11266/12753/12667 11458/12754/12668 12318/5490/12669\nf 2321/5706/12670 12318/5490/12671 11458/12755/12672\nf 11458/12756/12673 11459/12757/12674 2321/5706/12675\nf 2377/6052/12676 2321/5706/12677 11459/12758/12678\nf 11459/12759/12679 11551/12760/12680 2377/6052/12681\nf 2378/1158/12682 2377/6052/12683 11551/12761/12684\nf 11551/12762/12685 11548/12763/12686 2378/1158/12687\nf 2379/1069/12688 2378/1158/12689 11548/12764/12690\nf 11548/12765/12691 2351/12766/12692 2379/1069/12693\nf 2380/2736/12694 2379/1069/12695 2351/12767/12696\nf 2351/12768/12697 2353/12769/12698 2380/2736/12699\nf 9067/5421/12700 2380/2736/12701 2353/12770/12702\nf 2353/12771/12703 2355/12772/12704 9067/5421/12705\nf 2326/2251/12706 9067/5421/12707 2355/12773/12708\nf 2355/12774/12709 2357/12775/12710 2326/2251/12711\nf 2382/2309/12712 2326/2251/12713 2357/12776/12714\nf 2357/12777/12715 2359/12778/12716 2382/2309/12717\nf 2383/1036/12718 2382/2309/12719 2359/12779/12720\nf 2359/12780/12721 2361/12781/12722 2383/1036/12723\nf 2325/4765/12724 2383/1036/12725 2361/12782/12726\nf 2361/12783/12727 2362/12784/12728 2325/4765/12729\nf 12474/2171/12730 2325/4765/12731 2362/12785/12732\nf 2384/1984/12733 2386/2000/12734 10081/786/12735\nf 10081/786/12736 2329/5836/12737 2384/1984/12738\nf 2384/1984/12739 2329/5836/12740 2327/2717/12741\nf 2327/2717/12742 2387/3855/12743 2384/1984/12744\nf 2410/796/12745 2387/3855/12746 2327/2717/12747\nf 2327/2717/12748 9112/3037/12749 2410/796/12750\nf 2388/4871/12751 10081/786/12752 2386/2000/12753\nf 2386/2000/12754 2389/113/12755 2388/4871/12756\nf 10177/5594/12757 2388/4871/12758 2389/113/12759\nf 2389/113/12760 2391/5639/12761 10177/5594/12762\nf 10179/1237/12763 2390/12786/12764 10181/12787/12765\nf 10181/12788/12766 10296/1110/12767 10179/1237/12768\nf 10280/6405/12769 2392/12789/12770 2393/12790/12771\nf 2393/12791/12772 2395/4566/12773 10280/6405/12774\nf 10237/4547/12775 2394/12792/12776 10363/12793/12777\nf 10363/12794/12778 10253/674/12779 10237/4547/12780\nf 10239/1059/12781 2396/12795/12782 2397/12796/12783\nf 2397/12797/12784 2399/2751/12785 10239/1059/12786\nf 10244/6359/12787 2398/12798/12788 10279/12799/12789\nf 10279/12800/12790 2401/4736/12791 10244/6359/12792\nf 2333/6485/12793 10244/6359/12794 2401/4736/12795\nf 2401/4736/12796 2402/2022/12797 2333/6485/12798\nf 2335/6309/12799 2333/6485/12800 2402/2022/12801\nf 2402/2022/12802 2403/3679/12803 2335/6309/12804\nf 2337/3661/12805 2335/6309/12806 2403/3679/12807\nf 2403/3679/12808 2404/1353/12809 2337/3661/12810\nf 11842/3990/12811 2337/3661/12812 2404/1353/12813\nf 2404/1353/12814 2405/1985/12815 11842/3990/12816\nf 11423/6004/12817 2339/12801/12818 12071/12802/12819\nf 12071/12803/12820 2406/6011/12821 11423/6004/12822\nf 2342/2949/12823 2341/12804/12824 13339/12805/12825\nf 13339/12806/12826 2407/2841/12827 2342/2949/12828\nf 11468/6394/12829 2342/2949/12830 2407/2841/12831\nf 2407/2841/12832 13341/2852/12833 11468/6394/12834\nf 9111/5013/12835 2343/12807/12836 2408/12808/12837\nf 2408/12809/12838 9113/5760/12839 9111/5013/12840\nf 2411/12810/12841 2413/12811/12842 8689/12812/12843\nf 8689/12813/12844 8690/12814/12845 2411/12815/12846\nf 2413/12816/12847 2411/12817/12848 8705/12818/12849\nf 8705/12819/12850 2416/12820/12851 2413/12821/12852\nf 2417/12822/12853 8705/12823/12854 2411/12824/12855\nf 2411/12825/12856 2418/12826/12857 2417/12827/12858\nf 8807/12828/12859 2411/12829/12860 8690/12830/12861\nf 8690/12831/12862 8706/12832/12863 8807/12833/12864\nf 2417/12834/12865 2418/12835/12866 8809/12836/12867\nf 8809/12837/12868 8727/12838/12869 2417/12839/12870\nf 2422/12840/12871 8808/12841/12872 8807/12842/12873\nf 8807/12843/12874 8706/12844/12875 2422/12845/12876\nf 8791/12846/12877 8689/12847/12878 2413/12848/12879\nf 2413/12849/12880 2424/12850/12881 8791/12851/12882\nf 2424/12852/12883 2413/12853/12884 2416/12854/12885\nf 2416/12855/12886 2425/12856/12887 2424/12857/12888\nf 8791/12858/12889 2424/12859/12890 9447/12860/12891\nf 9447/12861/12892 8792/12862/12893 8791/12863/12894\nf 9465/12864/12895 9447/12865/12896 2424/12866/12897\nf 2424/12867/12898 2425/12868/12899 9465/12869/12900\nf 2415/12870/12901 2417/12871/12902 9539/12872/12903\nf 9539/12873/12904 9540/12874/12905 2415/12875/12906\nf 2416/12876/12907 2415/12877/12908 9540/12878/12909\nf 2430/12879/12910 2429/12880/12911 9536/12881/12912\nf 9536/12882/12913 9433/12883/12914 2430/12884/12915\nf 9427/12885/12916 2430/12886/12917 9433/12887/12918\nf 9540/12888/12919 2433/12889/12920 2416/12890/12921\nf 2425/12891/12922 2416/12892/12923 2433/12893/12924\nf 9433/12894/12925 9434/12895/12926 9427/12896/12927\nf 2435/12897/12928 9536/12898/12929 2429/12899/12930\nf 2429/12900/12931 8730/12901/12932 2435/12902/12933\nf 8729/12903/12934 9539/12904/12935 2417/12905/12936\nf 2417/12906/12937 8727/12907/12938 8729/12908/12939\nf 2433/12909/12940 2437/12910/12941 2425/12911/12942\nf 2437/12912/12943 9427/12913/12944 9434/12914/12945\nf 9465/12915/12946 2425/12916/12947 2437/12917/12948\nf 9434/12918/12949 9443/12919/12950 2437/12920/12951\nf 2437/12921/12952 9435/12922/12953 9465/12923/12954\nf 9435/12924/12955 2437/12925/12956 9443/12926/12957\nf 9443/12927/12958 9437/12928/12959 9435/12929/12960\nf 9495/12930/12961 9466/12931/12962 9436/12932/12963\nf 2428/12933/12964 9496/12934/12965 2498/12935/12966\nf 2498/12936/12967 2426/12937/12968 2428/12938/12969\nf 9448/12939/12970 12517/12940/12971 9388/12941/12972\nf 9388/12942/12973 2427/12943/12974 9448/12944/12975\nf 2427/12945/12976 9388/12946/12977 9389/12947/12978\nf 9389/12948/12979 2423/12949/12980 2427/12950/12981\nf 2423/12951/12982 9389/12952/12983 2499/12953/12984\nf 2499/12954/12985 2412/12955/12986 2423/12956/12987\nf 2412/12957/12988 2499/12958/12989 12314/12959/12990\nf 12314/12960/12991 2414/12961/12992 2412/12962/12993\nf 2414/12963/12994 12314/12964/12995 2500/12965/12996\nf 2500/12966/12997 2419/12967/12998 2414/12968/12999\nf 9436/12969/13000 2497/12970/13001 9495/12971/13002\nf 9863/12972/13003 2439/12973/13004 2440/12974/13005\nf 2419/12975/13006 2500/12976/13007 12317/12977/13008\nf 12317/12978/13009 2422/12979/13010 2419/12980/13011\nf 2422/12981/13012 12317/12982/13013 2501/12983/13014\nf 2501/12984/13015 8808/12985/13016 2422/12986/13017\nf 2420/12987/13018 12331/12988/13019 9007/12989/13020\nf 9007/12990/13021 2421/12991/13022 2420/12992/13023\nf 8728/12993/13024 9006/12994/13025 8893/12995/13026\nf 8893/12996/13027 2436/12997/13028 8728/12998/13029\nf 8730/12999/13030 8894/13000/13031 9088/13001/13032\nf 9088/13002/13033 2435/13003/13034 8730/13004/13035\nf 2435/13005/13036 9088/13006/13037 2492/13007/13038\nf 2492/13008/13039 2431/13009/13040 2435/13010/13041\nf 2431/13011/13042 2492/13012/13043 2493/13013/13044\nf 2493/13014/13045 2432/13015/13046 2431/13016/13047\nf 2434/13017/13048 2432/13018/13049 2493/13019/13050\nf 2493/13020/13051 2494/13021/13052 2434/13022/13053\nf 2438/13023/13054 2434/13024/13055 2494/13025/13056\nf 2494/13026/13057 2495/13027/13058 2438/13028/13059\nf 2438/13029/13060 2495/13030/13061 2496/13031/13062\nf 2496/13032/13063 2440/13033/13064 2438/13034/13065\nf 2440/13035/13066 2496/13036/13067 9863/13037/13068\nf 11839/13038/13069 9125/13039/13070 11780/13040/13071\nf 11780/13041/13072 9694/13042/13073 11839/13043/13074\nf 9694/13044/13075 11780/13045/13076 11656/13046/13077\nf 11656/13047/13078 9665/13048/13079 9694/13049/13080\nf 9665/13050/13081 11656/13051/13082 11636/13052/13083\nf 11636/13053/13084 9666/13054/13085 9665/13055/13086\nf 9666/13056/13087 11636/13057/13088 11637/13058/13089\nf 11637/13059/13090 10138/13060/13091 9666/13061/13092\nf 10138/13062/13093 11637/13063/13094 11407/13064/13095\nf 11407/13065/13096 10168/13066/13097 10138/13067/13098\nf 10168/13068/13099 11407/13069/13100 11359/13070/13101\nf 11359/13071/13102 11963/13072/13103 10168/13073/13104\nf 11963/13074/13105 11359/13075/13106 2479/13076/13107\nf 2479/13077/13108 11965/13078/13109 11963/13079/13110\nf 11965/13080/13111 2479/13081/13112 11939/13082/13113\nf 11939/13083/13114 10033/13084/13115 11965/13085/13116\nf 10033/13086/13117 11939/13087/13118 11696/13088/13119\nf 11696/13089/13120 2518/13090/13121 10033/13091/13122\nf 2518/13092/13123 11696/13093/13124 11697/13094/13125\nf 11697/13095/13126 2520/13096/13127 2518/13097/13128\nf 2520/13098/13129 11697/13099/13130 11722/13100/13131\nf 11722/13101/13132 11740/13102/13133 2520/13103/13134\nf 11740/13104/13135 11722/13105/13136 11723/13106/13137\nf 11723/13107/13138 11741/13108/13139 11740/13109/13140\nf 11741/13110/13141 11723/13111/13142 11777/13112/13143\nf 11777/13113/13144 9869/13114/13145 11741/13115/13146\nf 9869/13116/13147 11777/13117/13148 11778/13118/13149\nf 11778/13119/13150 9871/13120/13151 9869/13121/13152\nf 9871/13122/13153 11778/13123/13154 2488/13124/13155\nf 2488/13125/13156 9892/13126/13157 9871/13127/13158\nf 9892/13128/13159 2488/13129/13160 12703/13130/13161\nf 12703/13131/13162 11486/13132/13163 9892/13133/13164\nf 11486/13134/13165 12703/13135/13166 9126/13136/13167\nf 9126/13137/13168 11488/13138/13169 11486/13139/13170\nf 11488/13140/13171 9126/13141/13172 9125/13142/13173\nf 9125/13143/13174 11839/13144/13175 11488/13145/13176\nf 2468/13146/13177 9165/13147/13178 2469/13148/13179\nf 2469/13149/13180 2450/13150/13181 2468/13151/13182\nf 2450/13152/13183 2469/13153/13184 2471/13154/13185\nf 2471/13155/13186 2451/13156/13187 2450/13157/13188\nf 2451/13158/13189 2471/13159/13190 11518/13160/13191\nf 11518/13161/13192 2452/13162/13193 2451/13163/13194\nf 2452/13164/13195 11518/13165/13196 2473/13166/13197\nf 2473/13167/13198 2453/13168/13199 2452/13169/13200\nf 2453/13170/13201 2473/13171/13202 2474/13172/13203\nf 2474/13173/13204 2475/13174/13205 2453/13175/13206\nf 2475/13176/13207 2474/13177/13208 2476/13178/13209\nf 2476/13179/13210 2477/13180/13211 2475/13181/13212\nf 2477/13182/13213 2476/13183/13214 2478/13184/13215\nf 2478/13185/13216 11360/13186/13217 2477/13187/13218\nf 11360/13188/13219 2478/13189/13220 2480/13190/13221\nf 2480/13191/13222 2456/13192/13223 11360/13193/13224\nf 2456/13194/13225 2480/13195/13226 2481/13196/13227\nf 2481/13197/13228 2457/13198/13229 2456/13199/13230\nf 2457/13200/13231 2481/13201/13232 2482/13202/13233\nf 2482/13203/13234 2458/13204/13235 2457/13205/13236\nf 2458/13206/13237 2482/13207/13238 2483/13208/13239\nf 2483/13209/13240 2459/13210/13241 2458/13211/13242\nf 2459/13212/13243 2483/13213/13244 9528/13214/13245\nf 9528/13215/13246 2461/13216/13247 2459/13217/13248\nf 2461/13218/13249 9528/13219/13250 9621/13220/13251\nf 9621/13221/13252 2463/13222/13253 2461/13223/13254\nf 2463/13224/13255 9621/13225/13256 9589/13226/13257\nf 9589/13227/13258 2464/13228/13259 2463/13229/13260\nf 11779/13230/13261 9588/13231/13262 9562/13232/13263\nf 9562/13233/13264 9577/13234/13265 11779/13235/13266\nf 9578/13236/13267 9561/13237/13268 9563/13238/13269\nf 9563/13239/13270 2465/13240/13271 9578/13241/13272\nf 12704/13242/13273 9564/13243/13274 9166/13244/13275\nf 9166/13245/13276 2491/13246/13277 12704/13247/13278\nf 2491/13248/13279 9166/13249/13280 9165/13250/13281\nf 9165/13251/13282 2468/13252/13283 2491/13253/13284\nf 9615/13254/13285 2484/13255/13286 9527/13256/13287\nf 9527/13257/13288 9608/13258/13289 9615/13259/13290\nf 9608/13260/13291 9527/13261/13292 9521/13262/13293\nf 9521/13263/13294 9609/13264/13295 9608/13265/13296\nf 9609/13266/13297 9521/13267/13298 9484/13268/13299\nf 9484/13269/13300 9623/13270/13301 9609/13271/13302\nf 9623/13272/13303 9484/13273/13304 9483/13274/13305\nf 9483/13275/13306 9861/13276/13307 9623/13277/13308\nf 9861/13278/13309 9483/13279/13310 11340/13280/13311\nf 11340/13281/13312 9862/13282/13313 9861/13283/13314\nf 9862/13284/13315 11340/13285/13316 11353/13286/13317\nf 11353/13287/13318 2441/13288/13319 9862/13289/13320\nf 2441/13290/13321 11353/13291/13322 11385/13292/13323\nf 11385/13293/13324 12516/13294/13325 2441/13295/13326\nf 12516/13296/13327 11385/13297/13328 11384/13298/13329\nf 11384/13299/13330 2442/13300/13331 12516/13301/13332\nf 2442/13302/13333 11384/13303/13334 2472/13304/13335\nf 2472/13305/13336 2443/13306/13337 2442/13307/13338\nf 2443/13308/13339 2472/13309/13340 11448/13310/13341\nf 11448/13311/13342 12313/13312/13343 2443/13313/13344\nf 12313/13314/13345 11448/13315/13346 11447/13316/13347\nf 11447/13317/13348 2444/13318/13349 12313/13319/13350\nf 2444/13320/13351 11447/13321/13352 2470/13322/13353\nf 2470/13323/13354 12316/13324/13355 2444/13325/13356\nf 12316/13326/13357 2470/13327/13358 2490/13328/13359\nf 2490/13329/13360 2445/13330/13361 12316/13331/13362\nf 2445/13332/13363 2490/13333/13364 2489/13334/13365\nf 2489/13335/13366 12330/13336/13367 2445/13337/13368\nf 12330/13338/13369 2489/13339/13370 2487/13340/13371\nf 2487/13341/13372 2446/13342/13373 12330/13343/13374\nf 2446/13344/13375 2487/13345/13376 2486/13346/13377\nf 2486/13347/13378 2447/13348/13379 2446/13349/13380\nf 2447/13350/13381 2486/13351/13382 2485/13352/13383\nf 2485/13353/13384 2448/13354/13385 2447/13355/13386\nf 2448/13356/13387 2485/13357/13388 2484/13358/13389\nf 2484/13359/13390 9615/13360/13391 2448/13361/13392\nf 2502/13362/13393 2504/13363/13394 2503/13364/13395\nf 2503/13365/13396 2505/13366/13397 2502/13367/13398\nf 2505/13368/13399 2503/13369/13400 2506/13370/13401\nf 2506/13371/13402 2449/13372/13403 2505/13373/13404\nf 2449/13374/13405 2506/13375/13406 12941/13376/13407\nf 12941/13377/13408 11489/13378/13409 2449/13379/13410\nf 2504/13380/13411 2502/13381/13412 2508/13382/13413\nf 2508/13383/13414 2509/13384/13415 2504/13385/13416\nf 2509/13386/13417 2508/13387/13418 10139/13388/13419\nf 10139/13389/13420 2511/13390/13421 2509/13391/13422\nf 10362/13392/13423 2510/13393/13424 10167/13394/13425\nf 10167/13395/13426 10169/13396/13427 10362/13397/13428\nf 2513/13398/13429 2512/13399/13430 11964/13400/13431\nf 11964/13401/13432 2514/13402/13433 2513/13403/13434\nf 12967/13404/13435 2454/13405/13436 11966/13406/13437\nf 11966/13407/13438 2515/13408/13439 12967/13409/13440\nf 12973/13410/13441 2455/13411/13442 10034/13412/13443\nf 10034/13413/13444 2517/13414/13445 12973/13415/13446\nf 10051/13416/13447 2516/13417/13448 10035/13418/13449\nf 10035/13419/13450 2519/13420/13451 10051/13421/13452\nf 2519/13422/13453 10035/13423/13454 10112/13424/13455\nf 10112/13425/13456 2521/13426/13457 2519/13427/13458\nf 2521/13428/13459 10112/13429/13460 2460/13430/13461\nf 2460/13431/13462 2522/13432/13463 2521/13433/13464\nf 2522/13434/13465 2460/13435/13466 2462/13436/13467\nf 2462/13437/13468 2523/13438/13469 2522/13439/13470\nf 2523/13440/13471 2462/13441/13472 9870/13442/13473\nf 9870/13443/13474 9889/13444/13475 2523/13445/13476\nf 2525/13446/13477 2524/13447/13478 9872/13448/13479\nf 9872/13449/13480 9899/13450/13481 2525/13451/13482\nf 2527/13452/13483 2526/13453/13484 2528/13454/13485\nf 2528/13455/13486 2529/13456/13487 2527/13457/13488\nf 2529/13458/13489 2528/13459/13490 11487/13460/13491\nf 11487/13461/13492 13171/13462/13493 2529/13463/13494\nf 2530/13464/13495 2466/13465/13496 2467/13466/13497\nf 2467/13467/13498 2507/13468/13499 2530/13469/13500\nf 2531/1610/13501 2533/848/13502 2532/6071/13503\nf 2532/6071/13504 2571/4900/13505 2531/1610/13506\nf 2534/5950/13507 2531/1610/13508 2571/4900/13509\nf 2571/4900/13510 10868/1128/13511 2534/5950/13512\nf 2536/4083/13513 2533/848/13514 2531/1610/13515\nf 2531/1610/13516 2537/1750/13517 2536/4083/13518\nf 2533/848/13519 2536/4083/13520 2538/5561/13521\nf 2538/5561/13522 2539/5769/13523 2533/848/13524\nf 2532/6071/13525 2533/848/13526 2539/5769/13527\nf 2540/1552/13528 2539/5769/13529 2538/5561/13530\nf 2538/5561/13531 2541/1952/13532 2540/1552/13533\nf 2539/5769/13534 2542/822/13535 2532/6071/13536\nf 2542/822/13537 2539/5769/13538 2540/1552/13539\nf 2543/2125/13540 2536/4083/13541 2537/1750/13542\nf 2537/1750/13543 2575/2698/13544 2543/2125/13545\nf 2544/3039/13546 2575/2698/13547 2537/1750/13548\nf 2537/1750/13549 2574/6354/13550 2544/3039/13551\nf 2574/6354/13552 2537/1750/13553 2531/1610/13554\nf 2531/1610/13555 2534/5950/13556 2574/6354/13557\nf 2540/1552/13558 2579/299/13559 2542/822/13560\nf 2545/2449/13561 2564/5153/13562 10387/950/13563\nf 10387/950/13564 2546/6218/13565 2545/2449/13566\nf 10856/5667/13567 2564/5153/13568 2545/2449/13569\nf 2545/2449/13570 2548/4812/13571 10856/5667/13572\nf 10857/2420/13573 10856/5667/13574 2548/4812/13575\nf 2548/4812/13576 2550/4998/13577 10857/2420/13578\nf 2566/5308/13579 10857/2420/13580 2550/4998/13581\nf 2550/4998/13582 2551/2064/13583 2566/5308/13584\nf 10499/1153/13585 2566/5308/13586 2551/2064/13587\nf 2551/2064/13588 2553/3134/13589 10499/1153/13590\nf 10500/5995/13591 10498/13470/13592 10505/13471/13593\nf 10505/13472/13594 2555/4245/13595 10500/5995/13596\nf 2556/2874/13597 13214/13473/13598 10385/13474/13599\nf 10385/13475/13600 10384/5857/13601 2556/2874/13602\nf 2557/3394/13603 2556/2874/13604 10384/5857/13605\nf 10384/5857/13606 13017/2503/13607 2557/3394/13608\nf 2559/2974/13609 2557/3394/13610 13017/2503/13611\nf 13017/2503/13612 2568/939/13613 2559/2974/13614\nf 2560/4832/13615 2559/2974/13616 2568/939/13617\nf 2568/939/13618 13011/5858/13619 2560/4832/13620\nf 10573/2350/13621 10574/6477/13622 10386/13476/13623\nf 10386/13477/13624 13078/13478/13625 10573/2350/13626\nf 10587/1457/13627 10573/2350/13628 13078/13479/13629\nf 13078/13480/13630 2547/13481/13631 10587/1457/13632\nf 10411/6360/13633 10587/1457/13634 2547/13482/13635\nf 2547/13483/13636 2549/13484/13637 10411/6360/13638\nf 2573/1801/13639 10411/6360/13640 2549/13485/13641\nf 2549/13486/13642 13069/13487/13643 2573/1801/13644\nf 13031/6172/13645 2573/1801/13646 13069/13488/13647\nf 13069/13489/13648 2552/13490/13649 13031/6172/13650\nf 2576/2557/13651 13031/6172/13652 2552/13491/13653\nf 2552/13492/13654 2554/13493/13655 2576/2557/13656\nf 2561/13494/13657 13012/13495/13658 10550/1040/13659\nf 10550/1040/13660 10551/5988/13661 2561/13496/13662\nf 10636/4666/13663 10550/1040/13664 13012/13497/13665\nf 13012/13498/13666 2558/13499/13667 10636/4666/13668\nf 10655/3092/13669 10636/4666/13670 2558/13500/13671\nf 2558/13501/13672 2569/13502/13673 10655/3092/13674\nf 2563/13503/13675 10655/3092/13676 2569/13504/13677\nf 2569/13505/13678 2570/13506/13679 2563/13507/13680\nf 2562/13508/13681 2565/13509/13682 2535/2532/13683\nf 2535/2532/13684 2571/5326/13685 2562/13510/13686\nf 10575/13511/13687 2562/13512/13688 2571/5326/13689\nf 2571/5326/13690 2532/4749/13691 10575/13513/13692\nf 2534/3081/13693 2535/2532/13694 2565/13514/13695\nf 2565/13515/13696 2572/13516/13697 2534/3081/13698\nf 2534/3081/13699 2572/13517/13700 10412/13518/13701\nf 10412/13519/13702 2574/6089/13703 2534/3081/13704\nf 2544/4021/13705 2574/6089/13706 10412/13520/13707\nf 10412/13521/13708 2567/13522/13709 2544/4021/13710\nf 2575/6281/13711 2544/4021/13712 2567/13523/13713\nf 2567/13524/13714 13032/13525/13715 2575/6281/13716\nf 10575/13526/13717 2532/4749/13718 2542/862/13719\nf 2542/862/13720 2577/13527/13721 10575/13528/13722\nf 2578/13529/13723 2577/13530/13724 2542/862/13725\nf 2542/862/13726 2579/4616/13727 2578/13531/13728\nf 2580/13532/13729 2578/13533/13730 2579/4616/13731\nf 2579/4616/13732 2540/1482/13733 2580/13534/13734\nf 2581/13535/13735 2580/13536/13736 2540/1482/13737\nf 2540/1482/13738 2541/1163/13739 2581/13537/13740\nf 2582/13538/13741 2583/13539/13742 2624/13540/13743\nf 2624/13541/13744 2584/13542/13745 2582/13543/13746\nf 2583/13544/13747 2582/13545/13748 2585/13546/13749\nf 2585/13547/13750 2621/13548/13751 2583/13549/13752\nf 2582/13550/13753 2584/13551/13754 2586/13552/13755\nf 2586/13553/13756 2587/13554/13757 2582/13555/13758\nf 2588/13556/13759 2586/13557/13760 2584/13558/13761\nf 2584/13559/13762 2589/13560/13763 2588/13561/13764\nf 2589/13562/13765 2584/13563/13766 2624/13564/13767\nf 2588/13565/13768 2589/13566/13769 2632/13567/13770\nf 2632/13568/13771 2590/13569/13772 2588/13570/13773\nf 2624/13571/13774 2629/13572/13775 2589/13573/13776\nf 2632/13574/13777 2589/13575/13778 2629/13576/13779\nf 2587/13577/13780 2586/13578/13781 2591/13579/13782\nf 2591/13580/13783 2627/13581/13784 2587/13582/13785\nf 2587/13583/13786 2627/13584/13787 2592/13585/13788\nf 2592/13586/13789 2626/13587/13790 2587/13588/13791\nf 2626/13589/13792 2585/13590/13793 2582/13591/13794\nf 2582/13592/13795 2587/13593/13796 2626/13594/13797\nf 2629/13595/13798 2630/13596/13799 2632/13597/13800\nf 2593/13598/13801 10809/13599/13802 10808/13600/13803\nf 10808/13601/13804 2596/13602/13805 2593/13603/13806\nf 2596/13604/13807 10808/13605/13808 10827/13606/13809\nf 10827/13607/13810 2598/13608/13811 2596/13609/13812\nf 2598/13610/13813 10827/13611/13814 10842/13612/13815\nf 10842/13613/13816 2600/13614/13817 2598/13615/13818\nf 2600/13616/13819 10842/13617/13820 10902/13618/13821\nf 10902/13619/13822 2602/13620/13823 2600/13621/13824\nf 2602/13622/13825 10902/13623/13826 2614/13624/13827\nf 2614/13625/13828 13179/13626/13829 2602/13627/13830\nf 2603/13628/13831 10122/13629/13832 10124/13630/13833\nf 10124/13631/13834 2604/13632/13835 2603/13633/13836\nf 10810/13634/13837 11037/13635/13838 2605/13636/13839\nf 2605/13637/13840 2616/13638/13841 10810/13639/13842\nf 2616/13640/13843 2605/13641/13844 2606/13642/13845\nf 2606/13643/13846 2618/13644/13847 2616/13645/13848\nf 2618/13646/13849 2606/13647/13850 2607/13648/13851\nf 2607/13649/13852 9902/13650/13853 2618/13651/13854\nf 9902/13652/13855 2607/13653/13856 2609/13654/13857\nf 2609/13655/13858 9903/13656/13859 9902/13657/13860\nf 10811/13658/13861 2623/13659/13862 12840/13660/13863\nf 12840/13661/13864 2594/13662/13865 10811/13663/13866\nf 2594/13664/13867 12840/13665/13868 2622/13666/13869\nf 2622/13667/13870 2597/13668/13871 2594/13669/13872\nf 2597/13670/13873 2622/13671/13874 12725/13672/13875\nf 12725/13673/13876 2599/13674/13877 2597/13675/13878\nf 2599/13676/13879 12725/13677/13880 2625/13678/13881\nf 2625/13679/13882 2601/13680/13883 2599/13681/13884\nf 2601/13682/13885 2625/13683/13886 12780/13684/13887\nf 12780/13685/13888 10123/13686/13889 2601/13687/13890\nf 10123/13688/13891 12780/13689/13892 2628/13690/13893\nf 2628/13691/13894 2615/13692/13895 10123/13693/13896\nf 12772/13694/13897 2595/13695/13898 10221/13696/13899\nf 10221/13697/13900 10218/13698/13901 12772/13699/13902\nf 10218/13700/13903 10221/13701/13904 10222/13702/13905\nf 10222/13703/13906 10219/13704/13907 10218/13705/13908\nf 10219/13706/13909 10222/13707/13910 2608/13708/13911\nf 2608/13709/13912 2631/13710/13913 10219/13711/13914\nf 2631/13712/13915 2608/13713/13916 2610/13714/13917\nf 2610/13715/13918 2620/13716/13919 2631/13717/13920\nf 2611/13718/13921 2583/13719/13922 12902/13720/13923\nf 12902/13721/13924 12841/13722/13925 2611/13723/13926\nf 2583/13724/13927 2611/13725/13928 12771/13726/13929\nf 12771/13727/13930 2624/13728/13931 2583/13729/13932\nf 12841/13730/13933 12902/13731/13934 2585/13732/13935\nf 2585/13733/13936 2612/13734/13937 12841/13735/13938\nf 12726/13736/13939 2612/13737/13940 2585/13738/13941\nf 2585/13739/13942 2626/13740/13943 12726/13741/13944\nf 12726/13742/13945 2626/13743/13946 2592/13744/13947\nf 2592/13745/13948 2613/13746/13949 12726/13747/13950\nf 2613/13748/13951 2592/13749/13952 2627/13750/13953\nf 2627/13751/13954 12781/13752/13955 2613/13753/13956\nf 2629/13754/13957 2624/13755/13958 12771/13756/13959\nf 12771/13757/13960 2617/13758/13961 2629/13759/13962\nf 2629/13760/13963 2617/13761/13964 2619/13762/13965\nf 2619/13763/13966 2630/13764/13967 2629/13765/13968\nf 2630/13766/13969 2619/13767/13970 12792/13768/13971\nf 12792/13769/13972 2632/13770/13973 2630/13771/13974\nf 2632/13772/13975 12792/13773/13976 12801/13774/13977\nf 12801/13775/13978 2590/13776/13979 2632/13777/13980\nf 2633/3569/13981 2635/4290/13982 2634/303/13983\nf 2633/3569/13984 2634/303/13985 2636/2219/13986\nf 2633/3569/13987 2636/2219/13988 2637/4475/13989\nf 2633/3569/13990 2637/4475/13991 2647/1815/13992\nf 2667/6480/13993 2637/4475/13994 2636/2219/13995\nf 2636/2219/13996 2656/3950/13997 2667/6480/13998\nf 2656/3950/13999 2638/3034/14000 2667/6480/14001\nf 2656/3950/14002 2639/1837/14003 2638/3034/14004\nf 2638/3034/14005 2640/201/14006 2667/6480/14007\nf 2638/3034/14008 2661/2533/14009 2640/201/14010\nf 9535/1217/14011 9497/2918/14012 2642/6524/14013\nf 2642/6524/14014 2644/262/14015 9535/1217/14016\nf 2633/4138/14017 2643/13778/14018 2641/13779/14019\nf 2641/13780/14020 2635/1216/14021 2633/4138/14022\nf 2642/6524/14023 9497/2918/14024 9498/4824/14025\nf 2645/13781/14026 2643/13782/14027 2633/4138/14028\nf 9498/4824/14029 2646/6406/14030 2642/6524/14031\nf 2665/1166/14032 2646/6406/14033 9498/4824/14034\nf 9498/4824/14035 2666/3177/14036 2665/1166/14037\nf 11797/13783/14038 2645/13784/14039 2647/2341/14040\nf 2633/4138/14041 2647/2341/14042 2645/13785/14043\nf 2647/2341/14044 2637/557/14045 11797/13786/14046\nf 11077/319/14047 9535/1217/14048 2644/262/14049\nf 2644/262/14050 2649/3675/14051 11077/319/14052\nf 11214/2548/14053 11077/319/14054 2649/3675/14055\nf 2649/3675/14056 2651/5677/14057 11214/2548/14058\nf 2648/13787/14059 2650/13788/14060 2636/841/14061\nf 2636/841/14062 2634/3478/14063 2648/13789/14064\nf 11215/71/14065 11213/13790/14066 11328/13791/14067\nf 11328/13792/14068 11417/4660/14069 11215/71/14070\nf 11443/4145/14071 2652/13793/14072 2653/13794/14073\nf 2653/13795/14074 2655/2885/14075 11443/4145/14076\nf 11216/13796/14077 2654/13797/14078 2639/3897/14079\nf 2639/3897/14080 2656/283/14081 11216/13798/14082\nf 2650/13799/14083 11216/13800/14084 2656/283/14085\nf 2656/283/14086 2636/841/14087 2650/13801/14088\nf 11516/3270/14089 11443/4145/14090 2655/2885/14091\nf 2655/2885/14092 2658/1193/14093 11516/3270/14094\nf 11368/3866/14095 11516/3270/14096 2658/1193/14097\nf 2658/1193/14098 2660/2656/14099 11368/3866/14100\nf 2657/13802/14101 2659/13803/14102 2661/2884/14103\nf 2661/2884/14104 2638/6035/14105 2657/13804/14106\nf 2654/13805/14107 2657/13806/14108 2638/6035/14109\nf 2638/6035/14110 2639/3897/14111 2654/13807/14112\nf 2662/3922/14113 11368/3866/14114 2660/2656/14115\nf 2661/2884/14116 2659/13808/14117 11369/13809/14118\nf 2660/2656/14119 2663/2979/14120 2662/3922/14121\nf 2668/5491/14122 2662/3922/14123 2663/2979/14124\nf 2663/2979/14125 13282/3753/14126 2668/5491/14127\nf 11369/13810/14128 11800/13811/14129 2667/1052/14130\nf 2667/1052/14131 2640/1364/14132 11369/13812/14133\nf 11369/13813/14134 2640/1364/14135 2661/2884/14136\nf 11798/6428/14137 11799/13814/14138 2664/13815/14139\nf 2664/13816/14140 13260/1672/14141 11798/6428/14142\nf 2641/13817/14143 2648/13818/14144 2634/3478/14145\nf 2634/3478/14146 2635/1216/14147 2641/13819/14148\nf 11797/4980/14149 2637/1770/14150 2667/1052/14151\nf 2667/1052/14152 11800/6213/14153 11797/4980/14154\nf 2681/13820/14155 2670/13821/14156 2669/13822/14157\nf 2681/13823/14158 2669/13824/14159 2671/13825/14160\nf 2681/13826/14161 2671/13827/14162 2672/13828/14163\nf 2673/13829/14164 2681/13830/14165 2672/13831/14166\nf 2671/13832/14167 2669/13833/14168 2703/13834/14169\nf 2703/13835/14170 2674/13836/14171 2671/13837/14172\nf 2674/13838/14173 2703/13839/14174 2698/13840/14175\nf 2703/13841/14176 2675/13842/14177 2698/13843/14178\nf 2675/13844/14179 2676/13845/14180 2698/13846/14181\nf 2693/13847/14182 2674/13848/14183 2698/13849/14184\nf 11662/13850/14185 2679/13851/14186 2678/13852/14187\nf 2678/13853/14188 2680/13854/14189 11662/13855/14190\nf 2677/13856/14191 11570/13857/14192 2681/13858/14193\nf 2681/13859/14194 2673/13860/14195 2677/13861/14196\nf 2680/13862/14197 2678/13863/14198 2682/13864/14199\nf 2682/13865/14200 11571/13866/14201 2680/13867/14202\nf 2681/13868/14203 11570/13869/14204 2683/13870/14205\nf 11571/13871/14206 2682/13872/14207 12512/13873/14208\nf 12512/13874/14209 2702/13875/14210 11571/13876/14211\nf 2670/13877/14212 2683/13878/14213 9405/13879/14214\nf 2683/13880/14215 2670/13881/14216 2681/13882/14217\nf 9405/13883/14218 2669/13884/14219 2670/13885/14220\nf 2679/13886/14221 11662/13887/14222 8971/13888/14223\nf 8971/13889/14224 2686/13890/14225 2679/13891/14226\nf 2686/13892/14227 8971/13893/14228 8942/13894/14229\nf 8942/13895/14230 8944/13896/14231 2686/13897/14232\nf 2671/13898/14233 2687/13899/14234 2685/13900/14235\nf 2685/13901/14236 2672/13902/14237 2671/13903/14238\nf 2688/13904/14239 8943/13905/14240 8915/13906/14241\nf 8915/13907/14242 8917/13908/14243 2688/13909/14244\nf 2690/13910/14245 8916/13911/14246 9137/13912/14247\nf 9137/13913/14248 2692/13914/14249 2690/13915/14250\nf 2693/13916/14251 2691/13917/14252 2689/13918/14253\nf 2689/13919/14254 2674/13920/14255 2693/13921/14256\nf 2687/13922/14257 2671/13923/14258 2674/13924/14259\nf 2674/13925/14260 2689/13926/14261 2687/13927/14262\nf 2692/13928/14263 9137/13929/14264 9138/13930/14265\nf 9138/13931/14266 2695/13932/14267 2692/13933/14268\nf 2695/13934/14269 9138/13935/14270 9263/13936/14271\nf 9263/13937/14272 2697/13938/14273 2695/13939/14274\nf 2676/13940/14275 2696/13941/14276 2694/13942/14277\nf 2694/13943/14278 2698/13944/14279 2676/13945/14280\nf 2691/13946/14281 2693/13947/14282 2698/13948/14283\nf 2698/13949/14284 2694/13950/14285 2691/13951/14286\nf 2697/13952/14287 9263/13953/14288 9395/13954/14289\nf 2699/13955/14290 2696/13956/14291 2676/13957/14292\nf 9395/13958/14293 2700/13959/14294 2697/13960/14295\nf 2700/13961/14296 9395/13962/14297 2704/13963/14298\nf 2704/13964/14299 12496/13965/14300 2700/13966/14301\nf 2703/13967/14302 9408/13968/14303 2699/13969/14304\nf 2699/13970/14305 2675/13971/14306 2703/13972/14307\nf 2676/13973/14308 2675/13974/14309 2699/13975/14310\nf 2701/13976/14311 9407/13977/14312 9406/13978/14313\nf 9406/13979/14314 2684/13980/14315 2701/13981/14316\nf 2677/13982/14317 2673/13983/14318 2672/13984/14319\nf 2672/13985/14320 2685/13986/14321 2677/13987/14322\nf 9405/13988/14323 9408/13989/14324 2703/13990/14325\nf 2703/13991/14326 2669/13992/14327 9405/13993/14328\nf 10147/5002/14329 10148/6229/14330 2722/5434/14331\nf 2722/5434/14332 2739/6335/14333 10147/5002/14334\nf 2705/5919/14335 2739/6335/14336 2722/5434/14337\nf 2722/5434/14338 11932/3387/14339 2705/5919/14340\nf 13340/13994/14341 2718/13995/14342 13336/472/14343\nf 13336/472/14344 2707/4577/14345 13340/13996/14346\nf 2707/4577/14347 13336/472/14348 8697/6110/14349\nf 8697/6110/14350 2708/5890/14351 2707/4577/14352\nf 2708/5890/14353 8697/6110/14354 8698/6097/14355\nf 8698/6097/14356 2709/2860/14357 2708/5890/14358\nf 2710/5467/14359 2709/2860/14360 8698/6097/14361\nf 8698/6097/14362 2729/882/14363 2710/5467/14364\nf 2711/5106/14365 2713/2618/14366 2712/3009/14367\nf 2712/3009/14368 8977/2678/14369 2711/5106/14370\nf 2713/2618/14371 2711/5106/14372 2715/5606/14373\nf 2715/5606/14374 2716/3040/14375 2713/2618/14376\nf 2706/6067/14377 2713/2618/14378 2716/3040/14379\nf 2716/3040/14380 2717/6186/14381 2706/6067/14382\nf 2713/2618/14383 2706/6067/14384 11931/6244/14385\nf 11931/6244/14386 2712/3009/14387 2713/2618/14388\nf 2711/5106/14389 8977/2678/14390 11934/2913/14391\nf 11934/2913/14392 8781/2672/14393 2711/5106/14394\nf 8782/2575/14395 2715/5606/14396 2711/5106/14397\nf 2711/5106/14398 8781/2672/14399 8782/2575/14400\nf 2712/3009/14401 11931/6244/14402 2722/1393/14403\nf 2722/1393/14404 2714/13997/14405 2712/3009/14406\nf 2714/13998/14407 2722/1393/14408 10148/818/14409\nf 10148/818/14410 11935/13999/14411 2714/14000/14412\nf 2723/4735/14413 2715/5606/14414 8782/2575/14415\nf 8782/2575/14416 11921/4100/14417 2723/4735/14418\nf 2725/961/14419 2717/6186/14420 2716/3040/14421\nf 2716/3040/14422 2726/3672/14423 2725/961/14424\nf 2726/3672/14425 2716/3040/14426 2715/5606/14427\nf 2715/5606/14428 2723/4735/14429 2726/3672/14430\nf 2723/4735/14431 11921/4100/14432 2807/4410/14433\nf 2807/4410/14434 2727/91/14435 2723/4735/14436\nf 2726/3672/14437 2723/4735/14438 2727/91/14439\nf 2725/961/14440 2726/3672/14441 2728/5776/14442\nf 2727/91/14443 2728/5776/14444 2726/3672/14445\nf 2728/5776/14446 11948/4051/14447 2725/961/14448\nf 10146/5715/14449 2732/4200/14450 2731/500/14451\nf 2731/500/14452 2733/5345/14453 10146/5715/14454\nf 2731/500/14455 2732/4200/14456 2734/304/14457\nf 2734/304/14458 2735/3201/14459 2731/500/14460\nf 2735/3201/14461 2734/304/14462 2736/4412/14463\nf 2736/4412/14464 2737/4078/14465 2735/3201/14466\nf 2737/4078/14467 2736/4412/14468 2738/5038/14469\nf 2738/5038/14470 2806/1326/14471 2737/4078/14472\nf 2737/4078/14473 2806/1326/14474 12038/4010/14475\nf 12038/4010/14476 2724/4127/14477 2737/4078/14478\nf 2735/3201/14479 2737/4078/14480 2724/4127/14481\nf 2724/4127/14482 2721/1501/14483 2735/3201/14484\nf 2720/1396/14485 2731/500/14486 2735/3201/14487\nf 2735/3201/14488 2721/1501/14489 2720/1396/14490\nf 2719/3652/14491 2733/5345/14492 2731/500/14493\nf 2731/500/14494 2720/1396/14495 2719/3652/14496\nf 2738/766/14497 2730/1327/14498 12097/5696/14499\nf 12097/5696/14500 2740/3557/14501 2738/766/14502\nf 9039/2683/14503 8822/4930/14504 2762/2552/14505\nf 2762/2552/14506 12197/1452/14507 9039/2683/14508\nf 11737/3419/14509 2762/2552/14510 8822/4930/14511\nf 8822/4930/14512 8824/2091/14513 11737/3419/14514\nf 11299/778/14515 11737/3419/14516 8824/2091/14517\nf 8824/2091/14518 8850/3279/14519 11299/778/14520\nf 11299/778/14521 8850/3279/14522 8895/2643/14523\nf 8895/2643/14524 11300/4925/14525 11299/778/14526\nf 11300/4925/14527 8895/2643/14528 2751/1573/14529\nf 2751/1573/14530 12435/4239/14531 11300/4925/14532\nf 11146/3597/14533 12435/4239/14534 2751/1573/14535\nf 2751/1573/14536 12398/6164/14537 11146/3597/14538\nf 11144/6295/14539 11146/3597/14540 12398/6164/14541\nf 12398/6164/14542 11367/1518/14543 11144/6295/14544\nf 11873/5406/14545 11144/6295/14546 11367/1518/14547\nf 11367/1518/14548 12419/4413/14549 11873/5406/14550\nf 11874/5959/14551 11873/5406/14552 12419/4413/14553\nf 12419/4413/14554 2755/4026/14555 11874/5959/14556\nf 2765/5398/14557 11874/5959/14558 2755/4026/14559\nf 2755/4026/14560 9040/5363/14561 2765/5398/14562\nf 12197/1452/14563 2765/5398/14564 9040/5363/14565\nf 9040/5363/14566 9039/2683/14567 12197/1452/14568\nf 359/5870/14569 2748/2924/14570 8823/3386/14571\nf 8823/3386/14572 2749/6340/14573 359/5870/14574\nf 8825/2095/14575 2741/14001/14576 12067/14002/14577\nf 12067/14003/14578 8673/4948/14579 8825/2095/14580\nf 358/1643/14581 359/5870/14582 2749/6340/14583\nf 2749/6340/14584 2750/3963/14585 358/1643/14586\nf 11402/1731/14587 358/1643/14588 2750/3963/14589\nf 2750/3963/14590 11445/1298/14591 11402/1731/14592\nf 362/14004/14593 364/2361/14594 2744/1339/14595\nf 2744/1339/14596 2743/14005/14597 362/14006/14598\nf 8896/663/14599 2744/1339/14600 364/2361/14601\nf 364/2361/14602 366/5700/14603 8896/663/14604\nf 8688/4856/14605 11494/1250/14606 12397/2142/14607\nf 12397/2142/14608 2745/2767/14609 8688/4856/14610\nf 12399/1310/14611 12397/2142/14612 11494/1250/14613\nf 11494/1250/14614 11496/5392/14615 12399/1310/14616\nf 2753/5982/14617 11364/1673/14618 11366/4781/14619\nf 11366/4781/14620 2754/5186/14621 2753/5982/14622\nf 11444/5917/14623 2747/3392/14624 2756/1159/14625\nf 2756/1159/14626 2757/914/14627 11444/5917/14628\nf 2758/3528/14629 2756/1159/14630 2747/3392/14631\nf 2747/3392/14632 2759/5275/14633 2758/3528/14634\nf 11693/468/14635 11738/2542/14636 11736/1843/14637\nf 11736/1843/14638 11707/2681/14639 11693/468/14640\nf 2742/5698/14641 11738/2542/14642 11693/468/14643\nf 11693/468/14644 11694/4686/14645 2742/5698/14646\nf 12198/4291/14647 2742/5698/14648 11694/4686/14649\nf 11694/4686/14650 13235/1075/14651 12198/4291/14652\nf 12198/4291/14653 13235/1075/14654 13228/6395/14655\nf 13228/6395/14656 11875/4141/14657 12198/4291/14658\nf 2767/1507/14659 2768/1019/14660 13230/5628/14661\nf 13230/5628/14662 13251/3069/14663 2767/1507/14664\nf 11145/5519/14665 2767/1507/14666 13251/3069/14667\nf 13251/3069/14668 2769/1405/14669 11145/5519/14670\nf 11158/1165/14671 13231/4445/14672 11301/2026/14673\nf 11301/2026/14674 2746/5820/14675 11158/1165/14676\nf 11159/1132/14677 11158/1165/14678 2746/5820/14679\nf 2746/5820/14680 11147/2966/14681 11159/1132/14682\nf 13232/2315/14683 13238/4318/14684 2771/4165/14685\nf 2771/4165/14686 2773/4750/14687 13232/2315/14688\nf 2771/4165/14689 13238/4318/14690 11709/453/14691\nf 11709/453/14692 2761/6339/14693 2771/4165/14694\nf 11160/2174/14695 2775/6306/14696 2774/4452/14697\nf 2774/4452/14698 13237/1428/14699 11160/2174/14700\nf 13229/4185/14701 2776/2770/14702 2764/4455/14703\nf 2766/14007/14704 11695/14008/14705 13236/6296/14706\nf 11695/14009/14707 13233/5849/14708 13236/6296/14709\nf 11695/14010/14710 11708/4929/14711 13233/5849/14712\nf 11695/14011/14713 2760/3676/14714 11708/4929/14715\nf 2763/14012/14716 2772/5710/14717 2770/14013/14718\nf 13233/5849/14719 2777/4013/14720 13236/6296/14721\nf 2777/4013/14722 2778/916/14723 13236/6296/14724\nf 2766/14014/14725 13236/6296/14726 2779/4854/14727\nf 12786/14015/14728 2811/14016/14729 2795/14017/14730\nf 2795/14018/14731 12770/14019/14732 12786/14020/14733\nf 2795/14021/14734 2811/14022/14735 2781/14023/14736\nf 2781/14024/14737 11234/14025/14738 2795/14026/14739\nf 2793/14027/14740 11235/14028/14741 11233/14029/14742\nf 11233/14030/14743 2783/14031/14744 2793/14032/14745\nf 2794/14033/14746 2793/14034/14747 2783/14035/14748\nf 2783/14036/14749 2784/14037/14750 2794/14038/14751\nf 12042/14039/14752 2794/14040/14753 2784/14041/14754\nf 2784/14042/14755 2786/14043/14756 12042/14044/14757\nf 12042/14045/14758 2786/14046/14759 2710/5467/14760\nf 2710/5467/14761 2729/882/14762 12042/14047/14763\nf 2787/14048/14764 2789/14049/14765 2788/14050/14766\nf 2788/14051/14767 2790/14052/14768 2787/14053/14769\nf 2791/14054/14770 2787/14055/14771 2790/14056/14772\nf 2790/14057/14773 2792/14058/14774 2791/14059/14775\nf 2792/14060/14776 2790/14061/14777 10928/14062/14778\nf 10928/14063/14779 10929/14064/14780 2792/14065/14781\nf 2790/14066/14782 2788/14067/14783 2782/14068/14784\nf 2782/14069/14785 10928/14070/14786 2790/14071/14787\nf 9838/14072/14788 2789/14073/14789 2787/14074/14790\nf 2787/14075/14791 9837/14076/14792 9838/14077/14793\nf 9942/14078/14794 9837/14079/14795 2787/14080/14796\nf 2787/14081/14797 2791/14082/14798 9942/14083/14799\nf 2788/14084/14800 11006/14085/14801 2795/14086/14802\nf 2795/14087/14803 2782/14088/14804 2788/14089/14805\nf 11006/14090/14806 2810/14091/14807 12770/14092/14808\nf 12770/14093/14809 2795/14094/14810 11006/14095/14811\nf 9942/14096/14812 2791/14097/14813 2796/14098/14814\nf 2796/14099/14815 12037/14100/14816 9942/14101/14817\nf 2792/14102/14818 10929/14103/14819 2785/14104/14820\nf 2785/14105/14821 2798/14106/14822 2792/14107/14823\nf 2798/14108/14824 2796/14109/14825 2791/14110/14826\nf 2791/14111/14827 2792/14112/14828 2798/14113/14829\nf 2807/4410/14830 12037/14114/14831 2796/14115/14832\nf 2796/14116/14833 2727/91/14834 2807/4410/14835\nf 2727/91/14836 2796/14117/14837 2798/14118/14838\nf 2728/5776/14839 2798/14119/14840 2785/14120/14841\nf 2798/14121/14842 2728/5776/14843 2727/91/14844\nf 2785/14122/14845 11948/4051/14846 2728/5776/14847\nf 12785/14123/14848 2780/14124/14849 2800/14125/14850\nf 2800/14126/14851 2801/14127/14852 12785/14128/14853\nf 2802/14129/14854 2801/14130/14855 2800/14131/14856\nf 2800/14132/14857 2803/14133/14858 2802/14134/14859\nf 2804/14135/14860 2802/14136/14861 2803/14137/14862\nf 2803/14138/14863 2805/14139/14864 2804/14140/14865\nf 2738/5038/14866 2804/14141/14867 2805/14142/14868\nf 2805/14143/14869 2806/1326/14870 2738/5038/14871\nf 12038/4010/14872 2806/1326/14873 2805/14144/14874\nf 2805/14145/14875 2797/14146/14876 12038/4010/14877\nf 2797/14147/14878 2805/14148/14879 2803/14149/14880\nf 2803/14150/14881 2808/14151/14882 2797/14152/14883\nf 2809/14153/14884 2808/14154/14885 2803/14155/14886\nf 2803/14156/14887 2800/14157/14888 2809/14158/14889\nf 9839/14159/14890 2809/14160/14891 2800/14161/14892\nf 2800/14162/14893 2780/14163/14894 9839/14164/14895\nf 2738/766/14896 2740/3557/14897 12821/14165/14898\nf 12821/14166/14899 2799/14167/14900 2738/766/14901\nf 12829/14168/14902 9896/14169/14903 9895/14170/14904\nf 9895/14171/14905 10255/14172/14906 12829/14173/14907\nf 9896/14174/14908 12829/14175/14909 12836/14176/14910\nf 12836/14177/14911 10492/14178/14912 9896/14179/14913\nf 10492/14180/14914 12836/14181/14915 11787/14182/14916\nf 11787/14183/14917 12846/14184/14918 10492/14185/14919\nf 10998/14186/14920 12846/14187/14921 11787/14188/14922\nf 11787/14189/14923 11788/14190/14924 10998/14191/14925\nf 2826/14192/14926 10998/14193/14927 11788/14194/14928\nf 11788/14195/14929 2840/14196/14930 2826/14197/14931\nf 2826/14198/14932 2840/14199/14933 9958/14200/14934\nf 9958/14201/14935 12861/14202/14936 2826/14203/14937\nf 12861/14204/14938 9958/14205/14939 9960/14206/14940\nf 9960/14207/14941 12863/14208/14942 12861/14209/14943\nf 12863/14210/14944 9960/14211/14945 10582/14212/14946\nf 10582/14213/14947 2830/14214/14948 12863/14215/14949\nf 2830/14216/14950 10582/14217/14951 10270/14218/14952\nf 10270/14219/14953 13007/14220/14954 2830/14221/14955\nf 13007/14222/14956 10270/14223/14957 10256/14224/14958\nf 10256/14225/14959 9976/14226/14960 13007/14227/14961\nf 9976/14228/14962 10256/14229/14963 10255/14230/14964\nf 10255/14231/14965 9895/14232/14966 9976/14233/14967\nf 736/14234/14968 2813/14235/14969 9897/14236/14970\nf 9897/14237/14971 9520/14238/14972 736/14239/14973\nf 740/14240/14974 2814/14241/14975 10491/14242/14976\nf 10491/14243/14977 10493/14244/14978 740/14245/14979\nf 2813/14246/14980 736/14247/14981 734/14248/14982\nf 734/14249/14983 2820/14250/14984 2813/14251/14985\nf 2820/14252/14986 734/14253/14987 8760/14254/14988\nf 8760/14255/14989 2823/14256/14990 2820/14257/14991\nf 2822/14258/14992 2821/14259/14993 2815/14260/14994\nf 2815/14261/14995 741/14262/14996 2822/14263/14997\nf 741/14264/14998 2815/14265/14999 10997/14266/15000\nf 10997/14267/15001 10999/14268/15002 741/14269/15003\nf 2825/14270/15004 2824/14271/15005 12860/14272/15006\nf 12860/14273/15007 12156/14274/15008 2825/14275/15009\nf 12156/14276/15010 12860/14277/15011 12862/14278/15012\nf 12862/14279/15013 9551/14280/15014 12156/14281/15015\nf 737/14282/15016 2828/14283/15017 12864/14284/15018\nf 12864/14285/15019 9549/14286/15020 737/14287/15021\nf 12123/14288/15022 13009/14289/15023 13008/14290/15024\nf 13008/14291/15025 732/14292/15026 12123/14293/15027\nf 13009/14294/15028 12123/14295/15029 733/14296/15030\nf 733/14297/15031 2818/14298/15032 13009/14299/15033\nf 10267/14300/15034 12987/14301/15035 12835/14302/15036\nf 12835/14303/15037 2812/14304/15038 10267/14305/15039\nf 10267/14306/15040 2812/14307/15041 2833/14308/15042\nf 2833/14309/15043 10268/14310/15044 10267/14311/15045\nf 10268/14312/15046 2833/14313/15047 2835/14314/15048\nf 2835/14315/15049 12996/14316/15050 10268/14317/15051\nf 10633/14318/15052 12996/14319/15053 2835/14320/15054\nf 2835/14321/15055 10271/14322/15056 10633/14323/15057\nf 10634/14324/15058 2837/14325/15059 2819/14326/15060\nf 2819/14327/15061 13022/14328/15062 10634/14329/15063\nf 13022/14330/15064 2819/14331/15065 9961/14332/15066\nf 9961/14333/15067 13024/14334/15068 13022/14335/15069\nf 10415/14336/15070 12854/14337/15071 11789/14338/15072\nf 11789/14339/15073 11772/14340/15074 10415/14341/15075\nf 12854/14342/15076 10415/14343/15077 10416/14344/15078\nf 10416/14345/15079 9959/14346/15080 12854/14347/15081\nf 11771/14348/15082 2843/14349/15083 2842/14350/15084\nf 2842/14351/15085 11773/14352/15086 11771/14353/15087\nf 12986/14354/15088 11773/14355/15089 2842/14356/15090\nf 2842/14357/15091 2832/14358/15092 12986/14359/15093\nf 10417/14360/15094 2847/14361/15095 2817/14362/15096\nf 2817/14363/15097 2816/14364/15098 10417/14365/15099\nf 2845/14366/15100 2846/14367/15101 2844/14368/15102\nf 11770/14369/15103 12988/14370/15104 10269/14371/15105\nf 12988/14372/15106 2831/14373/15107 10269/14374/15108\nf 11770/14375/15109 10269/14376/15110 13023/14377/15111\nf 10269/14378/15112 10635/14379/15113 13023/14380/15114\nf 2834/14381/15115 2848/14382/15116 2836/14383/15117\nf 10635/14384/15118 2838/14385/15119 13023/14386/15120\nf 11770/14387/15121 13023/14388/15122 2839/14389/15123\nf 13023/14390/15124 2841/14391/15125 2839/14392/15126\nf 9682/6412/15127 9680/773/15128 2849/364/15129\nf 2849/364/15130 2850/854/15131 9682/6412/15132\nf 2851/2999/15133 2850/854/15134 2849/364/15135\nf 2849/364/15136 2852/958/15137 2851/2999/15138\nf 10597/3453/15139 9682/6412/15140 2850/854/15141\nf 2850/854/15142 2854/608/15143 10597/3453/15144\nf 2854/608/15145 2850/854/15146 2851/2999/15147\nf 10598/3461/15148 10597/3453/15149 2854/608/15150\nf 2854/608/15151 10643/194/15152 10598/3461/15153\nf 10644/362/15154 10643/194/15155 2854/608/15156\nf 2854/608/15157 2858/3504/15158 10644/362/15159\nf 2851/2999/15160 2858/3504/15161 2854/608/15162\nf 10746/3527/15163 2849/364/15164 9680/773/15165\nf 2888/14393/15166 2870/400/15167 2868/14394/15168\nf 2849/364/15169 10746/3527/15170 10745/1938/15171\nf 10745/1938/15172 2852/958/15173 2849/364/15174\nf 2851/2999/15175 2852/958/15176 2872/3370/15177\nf 2872/3370/15178 2852/958/15179 10745/1938/15180\nf 2872/3370/15181 13174/6012/15182 2851/2999/15183\nf 10644/362/15184 2858/3504/15185 2876/46/15186\nf 2851/2999/15187 13174/6012/15188 2876/46/15189\nf 2876/46/15190 2858/3504/15191 2851/2999/15192\nf 2876/46/15193 2896/3587/15194 10644/362/15195\nf 10745/1938/15196 2860/6183/15197 2872/3370/15198\nf 2861/3071/15199 10699/4006/15200 10697/5531/15201\nf 10697/5531/15202 10724/4466/15203 2861/3071/15204\nf 2861/3071/15205 10724/4466/15206 10759/1007/15207\nf 10759/1007/15208 2866/2477/15209 2861/3071/15210\nf 2865/14395/15211 2864/14396/15212 2867/1967/15213\nf 2867/1967/15214 10747/864/15215 2865/14397/15216\nf 2869/4943/15217 2865/14398/15218 10747/864/15219\nf 10747/864/15220 10756/5511/15221 2869/4943/15222\nf 10775/5320/15223 10698/14399/15224 2863/14400/15225\nf 2862/14401/15226 2871/14402/15227 13173/2342/15228\nf 13173/2342/15229 13172/533/15230 2862/14403/15231\nf 13172/533/15232 2867/1967/15233 2864/14404/15234\nf 2864/14405/15235 2862/14406/15236 13172/533/15237\nf 2859/4154/15238 13173/2342/15239 2871/14407/15240\nf 2871/14408/15241 10783/2331/15242 2859/4154/15243\nf 2874/6356/15244 2873/14409/15245 10775/5320/15246\nf 10775/5320/15247 2875/1702/15248 2874/6356/15249\nf 2863/14410/15250 2875/1702/15251 10775/5320/15252\nf 13169/2185/15253 2859/4154/15254 10783/2331/15255\nf 10783/2331/15256 10784/2625/15257 13169/2185/15258\nf 2877/14411/15259 2873/14412/15260 2874/6356/15261\nf 12699/5909/15262 13169/2185/15263 10784/2625/15264\nf 10784/2625/15265 10833/3044/15266 12699/5909/15267\nf 10891/1799/15268 10834/14413/15269 2877/14414/15270\nf 2877/14415/15271 2880/4857/15272 10891/1799/15273\nf 2874/6356/15274 2880/4857/15275 2877/14416/15276\nf 2881/2847/15277 2869/4943/15278 10756/5511/15279\nf 10700/14417/15280 9692/14418/15281 2882/3691/15282\nf 2883/3494/15283 2882/3691/15284 9692/14419/15285\nf 9692/14420/15286 2884/5372/15287 2883/3494/15288\nf 2885/3947/15289 2883/3494/15290 2884/5372/15291\nf 2884/5372/15292 9723/3624/15293 2885/3947/15294\nf 2885/3947/15295 9723/3624/15296 9703/990/15297\nf 9703/990/15298 12747/6447/15299 2885/3947/15300\nf 9704/14421/15301 2886/14422/15302 2853/4791/15303\nf 2853/4791/15304 10599/3168/15305 9704/14423/15306\nf 9693/14424/15307 2881/2847/15308 9681/3909/15309\nf 9681/3909/15310 2889/1154/15311 9693/14425/15312\nf 2889/1154/15313 2853/4791/15314 2886/14426/15315\nf 2886/14427/15316 9693/14428/15317 2889/1154/15318\nf 10756/5511/15319 9681/3909/15320 2881/2847/15321\nf 2882/3691/15322 2890/2381/15323 10700/14429/15324\nf 10759/1007/15325 10700/14430/15326 2890/2381/15327\nf 2890/2381/15328 2866/2477/15329 10759/1007/15330\nf 9702/5488/15331 2855/1536/15332 2856/1715/15333\nf 2856/1715/15334 9586/1647/15335 9702/5488/15336\nf 9587/1063/15337 9586/1647/15338 2856/1715/15339\nf 2856/1715/15340 2857/2581/15341 9587/1063/15342\nf 2887/1703/15343 2891/14431/15344 2892/14432/15345\nf 2892/14433/15346 2894/4223/15347 2887/1703/15348\nf 2894/4223/15349 2892/14434/15350 2893/14435/15351\nf 2893/14436/15352 2895/983/15353 2894/4223/15354\nf 9587/1063/15355 2857/2581/15356 12698/6258/15357\nf 12698/6258/15358 10835/3179/15359 9587/1063/15360\nf 2879/4250/15361 2895/983/15362 2893/14437/15363\nf 2893/14438/15364 2878/14439/15365 2879/4250/15366\nf 2923/257/15367 8704/925/15368 8703/2948/15369\nf 8703/2948/15370 12376/2719/15371 2923/257/15372\nf 2917/6271/15373 12376/2719/15374 8703/2948/15375\nf 8703/2948/15376 12004/3847/15377 2917/6271/15378\nf 9510/2396/15379 8704/925/15380 2923/257/15381\nf 2923/257/15382 12648/3261/15383 9510/2396/15384\nf 12681/6367/15385 9508/2633/15386 9556/3692/15387\nf 9556/3692/15388 9557/6536/15389 12681/6367/15390\nf 12647/14440/15391 9556/3692/15392 9508/2633/15393\nf 9508/2633/15394 9509/14441/15395 12647/14442/15396\nf 12645/1679/15397 2934/128/15398 2903/5653/15399\nf 2903/5653/15400 2904/726/15401 12645/1679/15402\nf 2937/4312/15403 2903/5653/15404 2934/128/15405\nf 2934/128/15406 8805/1783/15407 2937/4312/15408\nf 2904/726/15409 2903/5653/15410 2905/4970/15411\nf 2905/4970/15412 2906/1425/15413 2904/726/15414\nf 2903/5653/15415 2937/4312/15416 12243/5868/15417\nf 12243/5868/15418 2905/4970/15419 2903/5653/15420\nf 9717/6298/15421 12645/1679/15422 2904/726/15423\nf 2904/726/15424 9716/1426/15425 9717/6298/15426\nf 9716/1426/15427 2904/726/15428 2906/1425/15429\nf 2906/1425/15430 12701/4905/15431 9716/1426/15432\nf 10669/699/15433 12054/5471/15434 2909/2614/15435\nf 2909/2614/15436 10662/4435/15437 10669/699/15438\nf 2910/2995/15439 10662/4435/15440 2909/2614/15441\nf 2909/2614/15442 2911/898/15443 2910/2995/15444\nf 2912/14443/15445 2909/2614/15446 12054/5471/15447\nf 12054/5471/15448 9718/14444/15449 2912/14445/15450\nf 12035/14446/15451 10662/4435/15452 2910/2995/15453\nf 2910/2995/15454 3019/14447/15455 12035/14448/15456\nf 2908/14449/15457 2911/898/15458 2909/2614/15459\nf 2909/2614/15460 2912/14450/15461 2908/14451/15462\nf 12718/4389/15463 2926/3479/15464 12501/4169/15465\nf 12501/4169/15466 12321/3823/15467 12718/4389/15468\nf 2948/14452/15469 12501/4169/15470 2926/3479/15471\nf 2926/3479/15472 12260/14453/15473 2948/14454/15474\nf 12488/4596/15475 2924/5515/15476 9328/2375/15477\nf 9328/2375/15478 2933/595/15479 12488/4596/15480\nf 9135/4687/15481 2924/5515/15482 12488/4596/15483\nf 12488/4596/15484 9133/767/15485 9135/4687/15486\nf 11846/2862/15487 2933/595/15488 9328/2375/15489\nf 9328/2375/15490 9329/1400/15491 11846/2862/15492\nf 11950/981/15493 12445/507/15494 2929/6225/15495\nf 2929/6225/15496 11952/60/15497 11950/981/15498\nf 9134/14455/15499 2929/6225/15500 12445/507/15501\nf 12445/507/15502 9136/14456/15503 9134/14457/15504\nf 12425/2076/15505 12448/3973/15506 11533/4494/15507\nf 11533/4494/15508 11531/31/15509 12425/2076/15510\nf 2919/14458/15511 11533/4494/15512 12448/3973/15513\nf 12448/3973/15514 11847/14459/15515 2919/14460/15516\nf 12375/14461/15517 2897/14462/15518 2918/1255/15519\nf 2918/1255/15520 12364/3794/15521 12375/14463/15522\nf 11530/4554/15523 2927/3136/15524 12261/5678/15525\nf 12261/5678/15526 2915/643/15527 11530/4554/15528\nf 12646/14464/15529 2902/14465/15530 2928/5510/15531\nf 2928/5510/15532 11848/713/15533 12646/14466/15534\nf 762/105/15535 12060/6431/15536 2943/3035/15537\nf 2943/3035/15538 5781/5603/15539 762/105/15540\nf 2921/3001/15541 2930/2745/15542 2898/5221/15543\nf 2898/5221/15544 2931/700/15545 2921/3001/15546\nf 12364/3159/15547 2921/3001/15548 2931/700/15549\nf 2931/700/15550 12375/1574/15551 12364/3159/15552\nf 2900/3337/15553 2898/5221/15554 2930/2745/15555\nf 2930/2745/15556 757/4014/15557 2900/3337/15558\nf 9330/2654/15559 2918/1096/15560 2897/2484/15561\nf 2897/2484/15562 12259/5187/15563 9330/2654/15564\nf 2932/2359/15565 2922/1954/15566 2938/5258/15567\nf 2938/5258/15568 8804/6106/15569 2932/2359/15570\nf 11848/5683/15571 2932/2359/15572 8804/6106/15573\nf 8804/6106/15574 12646/3974/15575 11848/5683/15576\nf 8802/4604/15577 2938/5258/15578 2922/1954/15579\nf 2922/1954/15580 761/1458/15581 8802/4604/15582\nf 2920/5238/15583 2928/3307/15584 2902/5754/15585\nf 2902/5754/15586 2913/928/15587 2920/5238/15588\nf 2935/1117/15589 8815/14467/15590 2936/14468/15591\nf 2936/14469/15592 8801/1538/15593 2935/1117/15594\nf 8815/14470/15595 2935/1117/15596 2939/4889/15597\nf 2939/4889/15598 2907/14471/15599 8815/14472/15600\nf 10754/3608/15601 2935/1117/15602 8801/1538/15603\nf 8801/1538/15604 8803/4079/15605 10754/3608/15606\nf 2941/6039/15607 2939/4889/15608 2935/1117/15609\nf 2935/1117/15610 10754/3608/15611 2941/6039/15612\nf 2941/6039/15613 10754/3608/15614 12024/14473/15615\nf 12024/14474/15616 2942/14475/15617 2941/6039/15618\nf 2927/6170/15619 9330/1335/15620 12259/14476/15621\nf 12259/14477/15622 12261/14478/15623 2927/6170/15624\nf 12060/3131/15625 2920/4421/15626 2913/14479/15627\nf 2913/14480/15628 2943/14481/15629 12060/3131/15630\nf 12096/4393/15631 12087/6400/15632 2945/5364/15633\nf 2945/5364/15634 2946/594/15635 12096/4393/15636\nf 8745/6169/15637 12096/4393/15638 2946/594/15639\nf 2946/594/15640 2901/4317/15641 8745/6169/15642\nf 13337/5707/15643 8745/6169/15644 2901/4317/15645\nf 2901/4317/15646 2899/1455/15647 13337/5707/15648\nf 2955/4887/15649 13337/5707/15650 2899/1455/15651\nf 2899/1455/15652 756/683/15653 2955/4887/15654\nf 12003/3573/15655 2945/5364/15656 12087/6400/15657\nf 12087/6400/15658 12088/5714/15659 12003/3573/15660\nf 2916/844/15661 12003/3573/15662 12088/5714/15663\nf 12088/5714/15664 2957/1614/15665 2916/844/15666\nf 754/6263/15667 2916/844/15668 2957/1614/15669\nf 2957/1614/15670 12188/6537/15671 754/6263/15672\nf 8872/2590/15673 2951/313/15674 2944/2057/15675\nf 2944/2057/15676 8873/3002/15677 8872/2590/15678\nf 8873/3002/15679 2944/2057/15680 8744/6252/15681\nf 8744/6252/15682 8746/5564/15683 8873/3002/15684\nf 2951/313/15685 8872/2590/15686 12221/2096/15687\nf 12221/2096/15688 2949/2649/15689 2951/313/15690\nf 8747/14482/15691 2952/14483/15692 2947/5512/15693\nf 2947/5512/15694 8932/5945/15695 8747/14484/15696\nf 8932/5945/15697 2947/5512/15698 8949/3420/15699\nf 8949/3420/15700 8933/5018/15701 8932/5945/15702\nf 2959/5179/15703 12303/5645/15704 12089/14485/15705\nf 12089/14486/15706 12222/14487/15707 2959/5179/15708\nf 12303/5645/15709 2959/5179/15710 12161/1043/15711\nf 12161/1043/15712 2950/3021/15713 12303/5645/15714\nf 12217/3529/15715 2958/6074/15716 2960/2582/15717\nf 12217/3529/15718 2960/2582/15719 2953/5400/15720\nf 2960/2582/15721 2961/1041/15722 2953/5400/15723\nf 12217/3529/15724 2953/5400/15725 2956/1115/15726\nf 2953/5400/15727 2954/1270/15728 2956/1115/15729\nf 12217/3529/15730 2956/1115/15731 751/5549/15732\nf 2962/14488/15733 10021/14489/15734 3001/14490/15735\nf 3001/14491/15736 2964/14492/15737 2962/14493/15738\nf 2962/14494/15739 2964/14495/15740 2965/14496/15741\nf 2965/14497/15742 2966/14498/15743 2962/14499/15744\nf 2964/14500/15745 3001/14501/15746 10164/14502/15747\nf 10164/14503/15748 2968/14504/15749 2964/14505/15750\nf 2965/14506/15751 2964/14507/15752 2968/14508/15753\nf 2968/14509/15754 10164/14510/15755 10165/14511/15756\nf 10165/14512/15757 3002/14513/15758 2968/14514/15759\nf 2968/14515/15760 3002/14516/15761 12538/14517/15762\nf 12538/14518/15763 2971/14519/15764 2968/14520/15765\nf 2968/14521/15766 2971/14522/15767 2965/14523/15768\nf 10021/14524/15769 2962/14525/15770 9854/14526/15771\nf 2982/14527/15772 10022/14528/15773 10020/14529/15774\nf 2962/14530/15775 2966/14531/15776 2981/14532/15777\nf 2981/14533/15778 9854/14534/15779 2962/14535/15780\nf 12806/14536/15781 2966/14537/15782 2965/14538/15783\nf 2981/14539/15784 2966/14540/15785 12806/14541/15786\nf 2965/14542/15787 2986/14543/15788 12806/14544/15789\nf 12393/14545/15790 2971/14546/15791 12538/14547/15792\nf 2965/14548/15793 2971/14549/15794 12393/14550/15795\nf 12393/14551/15796 2986/14552/15797 2965/14553/15798\nf 12538/14554/15799 12437/14555/15800 12393/14556/15801\nf 12806/14557/15802 9857/14558/15803 2981/14559/15804\nf 2975/14560/15805 9860/14561/15806 9858/14562/15807\nf 9858/14563/15808 2978/14564/15809 2975/14565/15810\nf 9860/14566/15811 2975/14567/15812 2979/14568/15813\nf 2979/14569/15814 9846/14570/15815 9860/14571/15816\nf 9852/14572/15817 2977/14573/15818 2980/14574/15819\nf 2980/14575/15820 9853/14576/15821 9852/14577/15822\nf 9853/14578/15823 2980/14579/15824 2983/14580/15825\nf 2983/14581/15826 2972/14582/15827 9853/14583/15828\nf 9868/14584/15829 9859/14585/15830 2984/14586/15831\nf 2973/14587/15832 9024/14588/15833 2976/14589/15834\nf 2976/14590/15835 2985/14591/15836 2973/14592/15837\nf 2977/14593/15838 9852/14594/15839 2985/14595/15840\nf 2985/14596/15841 2976/14597/15842 2977/14598/15843\nf 9024/14599/15844 2973/14600/15845 12392/14601/15846\nf 12392/14602/15847 9025/14603/15848 9024/14604/15849\nf 2988/14605/15850 2984/14606/15851 2987/14607/15852\nf 2984/14608/15853 2988/14609/15854 9868/14610/15855\nf 2987/14611/15856 2989/14612/15857 2988/14613/15858\nf 9025/14614/15859 12392/14615/15860 2974/14616/15861\nf 2974/14617/15862 2990/14618/15863 9025/14619/15864\nf 2989/14620/15865 2987/14621/15866 9110/14622/15867\nf 2990/14623/15868 2974/14624/15869 12436/14625/15870\nf 12436/14626/15871 9309/14627/15872 2990/14628/15873\nf 9110/14629/15874 9308/14630/15875 12429/14631/15876\nf 12429/14632/15877 2993/14633/15878 9110/14634/15879\nf 9110/14635/15880 2993/14636/15881 2989/14637/15882\nf 2972/14638/15883 2983/14639/15884 8955/14640/15885\nf 2995/14641/15886 2994/14642/15887 8954/14643/15888\nf 8954/14644/15889 2996/14645/15890 2995/14646/15891\nf 2994/14647/15892 2995/14648/15893 2997/14649/15894\nf 2997/14650/15895 9139/14651/15896 2994/14652/15897\nf 9139/14653/15898 2997/14654/15899 2999/14655/15900\nf 2999/14656/15901 9400/14657/15902 9139/14658/15903\nf 9317/14659/15904 9400/14660/15905 2999/14661/15906\nf 2999/14662/15907 9327/14663/15908 9317/14664/15909\nf 2967/14665/15910 3000/14666/15911 9318/14667/15912\nf 9318/14668/15913 10166/14669/15914 2967/14670/15915\nf 2963/14671/15916 8955/14672/15917 2998/14673/15918\nf 2998/14674/15919 12515/14675/15920 2963/14676/15921\nf 3000/14677/15922 2967/14678/15923 12515/14679/15924\nf 12515/14680/15925 2998/14681/15926 3000/14682/15927\nf 8955/14683/15928 2963/14684/15929 2972/14685/15930\nf 2996/14686/15931 8954/14687/15932 9846/14688/15933\nf 9846/14689/15934 2979/14690/15935 2996/14691/15936\nf 12484/14692/15937 2969/14693/15938 9316/14694/15939\nf 9316/14695/15940 3004/14696/15941 12484/14697/15942\nf 12484/14698/15943 3004/14699/15944 9306/14700/15945\nf 9306/14701/15946 2970/14702/15947 12484/14703/15948\nf 9319/14704/15949 3003/14705/15950 3006/14706/15951\nf 3006/14707/15952 3007/14708/15953 9319/14709/15954\nf 3008/14710/15955 3005/14711/15956 9319/14712/15957\nf 9319/14713/15958 3007/14714/15959 3008/14715/15960\nf 2991/14716/15961 2970/14717/15962 9306/14718/15963\nf 9306/14719/15964 9307/14720/15965 2991/14721/15966\nf 2992/14722/15967 3009/14723/15968 3005/14724/15969\nf 3005/14725/15970 3008/14726/15971 2992/14727/15972\nf 3031/14728/15973 3041/14729/15974 3058/14730/15975\nf 3058/14731/15976 3010/14732/15977 3031/14733/15978\nf 3058/14734/15979 3041/14735/15980 3053/14736/15981\nf 3053/14737/15982 3025/14738/15983 3058/14739/15984\nf 3031/14740/15985 3010/14741/15986 3060/14742/15987\nf 3060/14743/15988 11196/14744/15989 3031/14745/15990\nf 12506/14746/15991 773/14747/15992 11194/14748/15993\nf 11194/14749/15994 10393/14750/15995 12506/14751/15996\nf 10393/14752/15997 11194/14753/15998 11195/14754/15999\nf 11195/14755/16000 10391/14756/16001 10393/14757/16002\nf 3036/14758/16003 3015/14759/16004 3014/14760/16005\nf 3014/14761/16006 3044/14762/16007 3036/14763/16008\nf 3044/14764/16009 3014/14765/16010 3049/14766/16011\nf 3049/14767/16012 10000/14768/16013 3044/14769/16014\nf 3016/14770/16015 3014/14771/16016 3015/14772/16017\nf 3015/14773/16018 3017/14774/16019 3016/14775/16020\nf 3014/14776/16021 3016/14777/16022 3051/14778/16023\nf 3051/14779/16024 3049/14780/16025 3014/14781/16026\nf 3015/14782/16027 3036/14783/16028 3055/14784/16029\nf 3055/14785/16030 3021/14786/16031 3015/14787/16032\nf 3017/14788/16033 3015/14789/16034 3021/14790/16035\nf 3021/14791/16036 3022/14792/16037 3017/14793/16038\nf 3038/14794/16039 12035/14795/16040 3018/14796/16041\nf 3018/14797/16042 3056/14798/16043 3038/14799/16044\nf 3018/14800/16045 12035/14801/16046 3019/14802/16047\nf 3019/14803/16048 3020/14804/16049 3018/14805/16050\nf 3056/14806/16051 3018/14807/16052 11222/14808/16053\nf 11222/14809/16054 10076/14810/16055 3056/14811/16056\nf 11223/14812/16057 11222/14813/16058 3018/14814/16059\nf 3018/14815/16060 3020/14816/16061 11223/14817/16062\nf 11226/14818/16063 11228/14819/16064 3063/14820/16065\nf 3063/14821/16066 3033/14822/16067 11226/14823/16068\nf 3033/14824/16069 3063/14825/16070 13014/14826/16071\nf 13014/14827/16072 12976/14828/16073 3033/14829/16074\nf 3035/14830/16075 11076/14831/16076 10836/14832/16077\nf 10836/14833/16078 3032/14834/16079 3035/14835/16080\nf 3035/14836/16081 3032/14837/16082 3026/14838/16083\nf 3026/14839/16084 3057/14840/16085 3035/14841/16086\nf 10836/14842/16087 11076/14843/16088 3042/14844/16089\nf 3042/14845/16090 3040/14846/16091 10836/14847/16092\nf 11336/14848/16093 11339/14849/16094 10056/14850/16095\nf 10056/14851/16096 3039/14852/16097 11336/14853/16098\nf 3039/14854/16099 10056/14855/16100 10057/14856/16101\nf 10057/14857/16102 13167/14858/16103 3039/14859/16104\nf 776/14860/16105 12598/14861/16106 12897/14862/16107\nf 12897/14863/16108 10660/14864/16109 776/14865/16110\nf 10660/14866/16111 12897/14867/16112 12899/14868/16113\nf 12899/14869/16114 10658/14870/16115 10660/14871/16116\nf 3030/14872/16117 13177/14873/16118 13162/14874/16119\nf 13162/14875/16120 10837/14876/16121 3030/14877/16122\nf 3023/14878/16123 12977/14879/16124 3029/14880/16125\nf 3029/14881/16126 3034/14882/16127 3023/14883/16128\nf 11075/14884/16129 12879/14885/16130 13143/14886/16131\nf 13143/14887/16132 3037/14888/16133 11075/14889/16134\nf 12912/14890/16135 10077/14891/16136 3054/14892/16137\nf 3054/14893/16138 3028/14894/16139 12912/14895/16140\nf 13166/14896/16141 3013/14897/16142 3012/14898/16143\nf 3012/14899/16144 13168/14900/16145 13166/14901/16146\nf 3013/14902/16147 13166/14903/16148 10837/14904/16149\nf 10837/14905/16150 13162/14906/16151 3013/14907/16152\nf 3027/14908/16153 13168/14909/16154 3012/14910/16155\nf 3012/14911/16156 12590/14912/16157 3027/14913/16158\nf 12898/14914/16159 12975/14915/16160 13177/14916/16161\nf 13177/14917/16162 3030/14918/16163 12898/14919/16164\nf 10659/14920/16165 10001/14921/16166 3048/14922/16167\nf 3048/14923/16168 3043/14924/16169 10659/14925/16170\nf 10001/14926/16171 10659/14927/16172 3037/14928/16173\nf 3037/14929/16174 13143/14930/16175 10001/14931/16176\nf 12600/14932/16177 3043/14933/16178 3048/14934/16179\nf 3048/14935/16180 12895/14936/16181 12600/14937/16182\nf 10058/14938/16183 10075/14939/16184 12879/14940/16185\nf 12879/14941/16186 11075/14942/16187 10058/14943/16188\nf 3046/14944/16189 10004/14945/16190 3047/14946/16191\nf 3047/14947/16192 10002/14948/16193 3046/14949/16194\nf 3050/14950/16195 3046/14951/16196 10002/14952/16197\nf 10002/14953/16198 10045/14954/16199 3050/14955/16200\nf 10004/14956/16201 3046/14957/16202 12024/14958/16203\nf 12024/14959/16204 12894/14960/16205 10004/14961/16206\nf 2942/14962/16207 12024/14963/16208 3046/14964/16209\nf 3046/14965/16210 3050/14966/16211 2942/14967/16212\nf 3029/14968/16213 12977/14969/16214 12975/14970/16215\nf 12975/14971/16216 12898/14972/16217 3029/14973/16218\nf 3054/14974/16219 10077/14975/16220 10075/14976/16221\nf 10075/14977/16222 10058/14978/16223 3054/14979/16224\nf 12908/14980/16225 13052/14981/16226 13051/14982/16227\nf 13051/14983/16228 10437/14984/16229 12908/14985/16230\nf 13052/14986/16231 12908/14987/16232 10457/14988/16233\nf 10457/14989/16234 10392/14990/16235 13052/14991/16236\nf 10392/14992/16237 10457/14993/16238 3066/14994/16239\nf 3066/14995/16240 3061/14996/16241 10392/14997/16242\nf 3061/14998/16243 3066/14999/16244 12505/15000/16245\nf 12505/15001/16246 3011/15002/16247 3061/15003/16248\nf 10437/15004/16249 13051/15005/16250 13015/15006/16251\nf 13015/15007/16252 10438/15008/16253 10437/15009/16254\nf 10438/15010/16255 13015/15011/16256 13016/15012/16257\nf 13016/15013/16258 11042/15014/16259 10438/15015/16260\nf 11042/15016/16261 13016/15017/16262 3024/15018/16263\nf 3024/15019/16264 11043/15020/16265 11042/15021/16266\nf 10964/15022/16267 10965/15023/16268 3064/15024/16269\nf 3064/15025/16270 3059/15026/16271 10964/15027/16272\nf 10458/15028/16273 3064/15029/16274 10965/15030/16275\nf 10965/15031/16276 12983/15032/16277 10458/15033/16278\nf 10973/15034/16279 10964/15035/16280 3059/15036/16281\nf 3059/15037/16282 10439/15038/16283 10973/15039/16284\nf 12984/15040/16285 13075/15041/16286 10456/15042/16287\nf 10456/15043/16288 3068/15044/16289 12984/15045/16290\nf 770/15046/16291 10456/15047/16292 13075/15048/16293\nf 13075/15049/16294 3071/15050/16295 770/15051/16296\nf 3072/15052/16297 10974/15053/16298 3062/15054/16299\nf 3062/15055/16300 3069/15056/16301 3072/15057/16302\nf 12998/15058/16303 3072/15059/16304 3069/15060/16305\nf 3069/15061/16306 3070/15062/16307 12998/15063/16308\nf 13065/15064/16309 3067/15065/16310 3065/15066/16311\nf 13065/15067/16312 3065/15068/16313 11022/15069/16314\nf 3065/15070/16315 3073/15071/16316 11022/15072/16317\nf 3065/15073/16318 3074/15074/16319 3073/15075/16320\nf 3073/15076/16321 3075/15077/16322 11022/15078/16323\nf 13065/15079/16324 11022/15080/16325 769/15081/16326\nf 3076/2539/16327 3078/6512/16328 3077/1356/16329\nf 3077/1356/16330 3079/3003/16331 3076/2539/16332\nf 3080/6187/16333 3076/2539/16334 3079/3003/16335\nf 3079/3003/16336 3081/624/16337 3080/6187/16338\nf 3082/2583/16339 3080/6187/16340 3081/624/16341\nf 3081/624/16342 3274/3449/16343 3082/2583/16344\nf 3083/6026/16345 3082/2583/16346 3274/3449/16347\nf 3274/3449/16348 3084/2086/16349 3083/6026/16350\nf 3083/6026/16351 3084/2086/16352 3276/4350/16353\nf 3276/4350/16354 3085/529/16355 3083/6026/16356\nf 3083/6026/16357 3085/529/16358 3086/2911/16359\nf 3087/5453/16360 3086/2911/16361 3085/529/16362\nf 3086/2911/16363 3087/5453/16364 3088/4593/16365\nf 12078/3874/16366 3088/4593/16367 3087/5453/16368\nf 3088/4593/16369 12078/3874/16370 3232/5327/16371\nf 3232/5327/16372 3090/5842/16373 3088/4593/16374\nf 3091/907/16375 3090/5842/16376 3232/5327/16377\nf 3232/5327/16378 11946/1330/16379 3091/907/16380\nf 3087/5453/16381 3235/1914/16382 12078/3874/16383\nf 3235/1914/16384 3087/5453/16385 3092/6208/16386\nf 3085/529/16387 3092/6208/16388 3087/5453/16389\nf 3092/6208/16390 3085/529/16391 3276/4350/16392\nf 3092/6208/16393 11628/5380/16394 3235/1914/16395\nf 11628/5380/16396 3092/6208/16397 3287/807/16398\nf 3276/4350/16399 3287/807/16400 3092/6208/16401\nf 3287/807/16402 11629/5052/16403 11628/5380/16404\nf 3091/907/16405 3095/4423/16406 3090/5842/16407\nf 3091/907/16408 3096/2528/16409 3095/4423/16410\nf 3096/2528/16411 3097/4760/16412 3095/4423/16413\nf 3097/4760/16414 3096/2528/16415 3098/1170/16416\nf 3098/1170/16417 3099/5843/16418 3097/4760/16419\nf 3100/1331/16420 3097/4760/16421 3099/5843/16422\nf 3095/4423/16423 3097/4760/16424 3100/1331/16425\nf 3099/5843/16426 3101/1473/16427 3100/1331/16428\nf 3102/1417/16429 3100/1331/16430 3101/1473/16431\nf 3100/1331/16432 3102/1417/16433 3095/4423/16434\nf 3101/1473/16435 3103/6090/16436 3102/1417/16437\nf 3104/1587/16438 3102/1417/16439 3103/6090/16440\nf 3095/4423/16441 3102/1417/16442 3104/1587/16443\nf 3103/6090/16444 3105/2089/16445 3104/1587/16446\nf 3106/1592/16447 3104/1587/16448 3105/2089/16449\nf 3105/2089/16450 3107/2906/16451 3106/1592/16452\nf 3108/1822/16453 3107/2906/16454 3105/2089/16455\nf 3105/2089/16456 3109/2732/16457 3108/1822/16458\nf 3109/2732/16459 3105/2089/16460 3103/6090/16461\nf 3110/2601/16462 3108/1822/16463 3109/2732/16464\nf 3109/2732/16465 3111/5844/16466 3110/2601/16467\nf 3110/2601/16468 3111/5844/16469 3112/730/16470\nf 3112/730/16471 3113/1488/16472 3110/2601/16473\nf 3103/6090/16474 3114/3980/16475 3109/2732/16476\nf 3114/3980/16477 3103/6090/16478 3101/1473/16479\nf 3101/1473/16480 3115/3450/16481 3114/3980/16482\nf 3114/3980/16483 3115/3450/16484 3116/1391/16485\nf 3116/1391/16486 3117/6230/16487 3114/3980/16488\nf 3109/2732/16489 3114/3980/16490 3117/6230/16491\nf 3117/6230/16492 3111/5844/16493 3109/2732/16494\nf 3117/6230/16495 3116/1391/16496 3118/3231/16497\nf 3118/3231/16498 3119/5790/16499 3117/6230/16500\nf 3119/5790/16501 3112/730/16502 3111/5844/16503\nf 3111/5844/16504 3117/6230/16505 3119/5790/16506\nf 3120/1431/16507 3119/5790/16508 3118/3231/16509\nf 3112/730/16510 3119/5790/16511 3120/1431/16512\nf 3118/3231/16513 3121/4915/16514 3120/1431/16515\nf 3122/3576/16516 3120/1431/16517 3121/4915/16518\nf 3121/4915/16519 3123/5412/16520 3122/3576/16521\nf 3122/3576/16522 3123/5412/16523 3124/2321/16524\nf 3124/2321/16525 3125/2842/16526 3122/3576/16527\nf 3122/3576/16528 3125/2842/16529 3126/1734/16530\nf 3126/1734/16531 3127/297/16532 3122/3576/16533\nf 3120/1431/16534 3122/3576/16535 3127/297/16536\nf 3127/297/16537 3128/2602/16538 3120/1431/16539\nf 3120/1431/16540 3128/2602/16541 3112/730/16542\nf 3112/730/16543 3128/2602/16544 3129/1003/16545\nf 3129/1003/16546 3113/1488/16547 3112/730/16548\nf 3130/3421/16549 3129/1003/16550 3128/2602/16551\nf 3128/2602/16552 3127/297/16553 3130/3421/16554\nf 3127/297/16555 3126/1734/16556 3131/3745/16557\nf 3131/3745/16558 3130/3421/16559 3127/297/16560\nf 3113/1488/16561 3129/1003/16562 3132/4999/16563\nf 3132/4999/16564 3078/6512/16565 3113/1488/16566\nf 3133/5833/16567 3132/4999/16568 3129/1003/16569\nf 3129/1003/16570 3130/3421/16571 3133/5833/16572\nf 3130/3421/16573 3131/3745/16574 3134/694/16575\nf 3134/694/16576 3133/5833/16577 3130/3421/16578\nf 3135/5261/16579 3133/5833/16580 3134/694/16581\nf 3132/4999/16582 3133/5833/16583 3135/5261/16584\nf 3134/694/16585 3328/3772/16586 3135/5261/16587\nf 3328/3772/16588 3134/694/16589 3136/1155/16590\nf 3136/1155/16591 3134/694/16592 3131/3745/16593\nf 3136/1155/16594 3137/4007/16595 3328/3772/16596\nf 3239/2478/16597 3137/4007/16598 3136/1155/16599\nf 3136/1155/16600 12041/3425/16601 3239/2478/16602\nf 3113/1488/16603 3078/6512/16604 3076/2539/16605\nf 3076/2539/16606 3110/2601/16607 3113/1488/16608\nf 3110/2601/16609 3076/2539/16610 3080/6187/16611\nf 3080/6187/16612 3108/1822/16613 3110/2601/16614\nf 3107/2906/16615 3108/1822/16616 3080/6187/16617\nf 3080/6187/16618 3082/2583/16619 3107/2906/16620\nf 3107/2906/16621 3082/2583/16622 3083/6026/16623\nf 3083/6026/16624 3106/1592/16625 3107/2906/16626\nf 3086/2911/16627 3106/1592/16628 3083/6026/16629\nf 3104/1587/16630 3106/1592/16631 3086/2911/16632\nf 3086/2911/16633 3139/6328/16634 3104/1587/16635\nf 3104/1587/16636 3139/6328/16637 3095/4423/16638\nf 3090/5842/16639 3095/4423/16640 3139/6328/16641\nf 3139/6328/16642 3088/4593/16643 3090/5842/16644\nf 3088/4593/16645 3139/6328/16646 3086/2911/16647\nf 3140/5478/16648 3242/3625/16649 12041/3425/16650\nf 3242/3625/16651 3140/5478/16652 3141/3236/16653\nf 3141/3236/16654 3244/5357/16655 3242/3625/16656\nf 3244/5357/16657 3141/3236/16658 3142/5262/16659\nf 3142/5262/16660 11072/3417/16661 3244/5357/16662\nf 11073/4072/16663 11072/3417/16664 3142/5262/16665\nf 3142/5262/16666 3145/4910/16667 11073/4072/16668\nf 3141/3236/16669 3140/5478/16670 3131/3745/16671\nf 3131/3745/16672 3126/1734/16673 3141/3236/16674\nf 3141/3236/16675 3126/1734/16676 3125/2842/16677\nf 3125/2842/16678 3142/5262/16679 3141/3236/16680\nf 3124/2321/16681 3145/4910/16682 3142/5262/16683\nf 3142/5262/16684 3125/2842/16685 3124/2321/16686\nf 3145/4910/16687 3124/2321/16688 3123/5412/16689\nf 3123/5412/16690 3146/6282/16691 3145/4910/16692\nf 3146/6282/16693 3123/5412/16694 3121/4915/16695\nf 3121/4915/16696 3147/4338/16697 3146/6282/16698\nf 3147/4338/16699 3121/4915/16700 3118/3231/16701\nf 3118/3231/16702 3148/2849/16703 3147/4338/16704\nf 3148/2849/16705 3118/3231/16706 3116/1391/16707\nf 3116/1391/16708 3149/4499/16709 3148/2849/16710\nf 3150/4610/16711 3149/4499/16712 3116/1391/16713\nf 3116/1391/16714 3115/3450/16715 3150/4610/16716\nf 3150/4610/16717 3115/3450/16718 3101/1473/16719\nf 3101/1473/16720 3099/5843/16721 3150/4610/16722\nf 3150/4610/16723 3099/5843/16724 3098/1170/16725\nf 3250/1148/16726 12447/917/16727 3151/2615/16728\nf 3151/2615/16729 3153/2941/16730 3250/1148/16731\nf 12439/134/16732 3250/1148/16733 3153/2941/16734\nf 3153/2941/16735 3155/5066/16736 12439/134/16737\nf 3155/5066/16738 3153/2941/16739 3348/2053/16740\nf 3348/2053/16741 3153/2941/16742 3151/2615/16743\nf 3348/2053/16744 3156/6454/16745 3155/5066/16746\nf 3151/2615/16747 3349/177/16748 3348/2053/16749\nf 3349/177/16750 3151/2615/16751 3157/1508/16752\nf 3157/1508/16753 3151/2615/16754 12447/917/16755\nf 3157/1508/16756 3158/239/16757 3349/177/16758\nf 3352/2221/16759 3158/239/16760 3157/1508/16761\nf 3157/1508/16762 3159/1418/16763 3352/2221/16764\nf 3155/5066/16765 3156/6454/16766 3353/2382/16767\nf 3353/2382/16768 3160/1483/16769 3155/5066/16770\nf 12439/134/16771 3155/5066/16772 3160/1483/16773\nf 3161/2151/16774 3160/1483/16775 3353/2382/16776\nf 3353/2382/16777 3162/6345/16778 3161/2151/16779\nf 9523/4417/16780 3161/2151/16781 3162/6345/16782\nf 3162/6345/16783 9524/151/16784 9523/4417/16785\nf 3256/1751/16786 3160/1483/16787 3161/2151/16788\nf 3160/1483/16789 3256/1751/16790 12439/134/16791\nf 3161/2151/16792 9075/5935/16793 3256/1751/16794\nf 9077/1156/16795 9075/5935/16796 3161/2151/16797\nf 3161/2151/16798 9523/4417/16799 9077/1156/16800\nf 12163/1831/16801 3159/1418/16802 3157/1508/16803\nf 3157/1508/16804 3253/3773/16805 12163/1831/16806\nf 12447/917/16807 3253/3773/16808 3157/1508/16809\nf 9481/6333/16810 3168/4259/16811 3167/5692/16812\nf 3167/5692/16813 3169/954/16814 9481/6333/16815\nf 3170/4095/16816 3169/954/16817 3167/5692/16818\nf 3167/5692/16819 3171/5059/16820 3170/4095/16821\nf 3170/4095/16822 3171/5059/16823 3172/3655/16824\nf 3172/3655/16825 3173/5865/16826 3170/4095/16827\nf 3169/954/16828 3170/4095/16829 3174/664/16830\nf 3174/664/16831 3175/3495/16832 3169/954/16833\nf 3175/3495/16834 3174/664/16835 3176/1214/16836\nf 3176/1214/16837 3177/2340/16838 3175/3495/16839\nf 3175/3495/16840 3177/2340/16841 3178/4543/16842\nf 3178/4543/16843 9482/5758/16844 3175/3495/16845\nf 9482/5758/16846 9481/6333/16847 3169/954/16848\nf 9482/5758/16849 3169/954/16850 3175/3495/16851\nf 3170/4095/16852 3173/5865/16853 3180/6398/16854\nf 3180/6398/16855 3174/664/16856 3170/4095/16857\nf 3176/1214/16858 3174/664/16859 3180/6398/16860\nf 3177/2340/16861 3181/4043/16862 3178/4543/16863\nf 3181/4043/16864 3177/2340/16865 3176/1214/16866\nf 3176/1214/16867 3182/2534/16868 3181/4043/16869\nf 3183/1223/16870 3182/2534/16871 3176/1214/16872\nf 3176/1214/16873 3184/3981/16874 3183/1223/16875\nf 3180/6398/16876 3184/3981/16877 3176/1214/16878\nf 3185/3790/16879 3173/5865/16880 3172/3655/16881\nf 3172/3655/16882 3186/2129/16883 3185/3790/16884\nf 3225/745/16885 3185/3790/16886 3186/2129/16887\nf 3186/2129/16888 12763/1634/16889 3225/745/16890\nf 3188/3475/16891 3180/6398/16892 3173/5865/16893\nf 3173/5865/16894 3185/3790/16895 3188/3475/16896\nf 3185/3790/16897 3225/745/16898 9977/6284/16899\nf 9977/6284/16900 3188/3475/16901 3185/3790/16902\nf 3188/3475/16903 9977/6284/16904 9978/701/16905\nf 9978/701/16906 3191/2535/16907 3188/3475/16908\nf 3191/2535/16909 3184/3981/16910 3180/6398/16911\nf 3180/6398/16912 3188/3475/16913 3191/2535/16914\nf 3192/6231/16915 3183/1223/16916 3184/3981/16917\nf 3184/3981/16918 3191/2535/16919 3192/6231/16920\nf 3192/6231/16921 3191/2535/16922 9978/701/16923\nf 12763/1634/16924 3186/2129/16925 12295/6160/16926\nf 12295/6160/16927 3186/2129/16928 3172/3655/16929\nf 3172/3655/16930 12251/6245/16931 12295/6160/16932\nf 12295/6160/16933 12279/781/16934 12763/1634/16935\nf 12252/4667/16936 12251/6245/16937 3172/3655/16938\nf 3172/3655/16939 3171/5059/16940 12252/4667/16941\nf 9812/6375/16942 12252/4667/16943 3171/5059/16944\nf 3171/5059/16945 3167/5692/16946 9812/6375/16947\nf 9812/6375/16948 3167/5692/16949 3168/4259/16950\nf 3168/4259/16951 9813/2343/16952 9812/6375/16953\nf 9813/2343/16954 3168/4259/16955 3195/1798/16956\nf 3195/1798/16957 3168/4259/16958 3196/5810/16959\nf 3197/3476/16960 3195/1798/16961 3196/5810/16962\nf 3168/4259/16963 9481/6333/16964 3196/5810/16965\nf 9481/6333/16966 3198/5651/16967 3196/5810/16968\nf 3198/5651/16969 9481/6333/16970 10180/2011/16971\nf 3179/15082/16972 3199/15083/16973 3166/15084/16974\nf 3195/1798/16975 12372/845/16976 9813/2343/16977\nf 12372/845/16978 3195/1798/16979 3197/3476/16980\nf 3197/3476/16981 3268/4503/16982 12372/845/16983\nf 3201/583/16984 3203/6404/16985 3202/6500/16986\nf 3203/6404/16987 3201/583/16988 3204/3498/16989\nf 3204/3498/16990 9017/6279/16991 3203/6404/16992\nf 9017/6279/16993 3204/3498/16994 9023/5962/16995\nf 9017/6279/16996 9023/5962/16997 9018/1004/16998\nf 3205/15085/16999 3207/15086/17000 3208/5803/17001\nf 9018/1004/17002 9023/5962/17003 9009/6442/17004\nf 9009/6442/17005 3210/4179/17006 9018/1004/17007\nf 3403/1347/17008 3210/4179/17009 9009/6442/17010\nf 9009/6442/17011 9010/5336/17012 3403/1347/17013\nf 3211/15087/17014 3209/15088/17015 12030/1652/17016\nf 12030/1652/17017 3218/6194/17018 3211/15089/17019\nf 3206/15090/17020 9227/15091/17021 9280/3639/17022\nf 9280/3639/17023 3216/4982/17024 3206/15092/17025\nf 3209/15093/17026 3206/15094/17027 3216/4982/17028\nf 3216/4982/17029 12030/1652/17030 3209/15095/17031\nf 9227/15096/17032 9199/15097/17033 9428/3796/17034\nf 9428/3796/17035 9280/3639/17036 9227/15098/17037\nf 9429/4843/17038 9428/3796/17039 9199/15099/17040\nf 9199/15100/17041 9200/15101/17042 9429/4843/17043\nf 11941/589/17044 3229/351/17045 3213/1232/17046\nf 3213/1232/17047 3214/1996/17048 11941/589/17049\nf 3213/1232/17050 3229/351/17051 8714/5506/17052\nf 8714/5506/17053 3215/6268/17054 3213/1232/17055\nf 3215/6268/17056 8714/5506/17057 8715/4330/17058\nf 8715/4330/17059 9281/4027/17060 3215/6268/17061\nf 9281/4027/17062 8715/4330/17063 12028/3567/17064\nf 12028/3567/17065 3212/2118/17066 9281/4027/17067\nf 3212/2118/17068 12028/3567/17069 12029/2137/17070\nf 12029/2137/17071 12031/5897/17072 3212/2118/17073\nf 8838/5699/17074 12178/4632/17075 3243/2863/17076\nf 3243/2863/17077 8841/5778/17078 8838/5699/17079\nf 8841/5778/17080 3243/2863/17081 12291/1929/17082\nf 12291/1929/17083 3223/6076/17084 8841/5778/17085\nf 3223/6076/17086 12291/1929/17087 3245/2588/17088\nf 3245/2588/17089 12023/2097/17090 3223/6076/17091\nf 8838/5699/17092 12248/1179/17093 12178/4632/17094\nf 12178/4632/17095 12248/1179/17096 3227/4151/17097\nf 3227/4151/17098 11933/1782/17099 12178/4632/17100\nf 11908/1363/17101 11933/1782/17102 3227/4151/17103\nf 11916/4639/17104 3237/15102/17105 3227/4151/17106\nf 11910/306/17107 11906/15103/17108 11917/15104/17109\nf 11917/15105/17110 10875/6508/17111 11910/306/17112\nf 3427/5565/17113 11916/4639/17114 3227/4151/17115\nf 3190/15106/17116 3189/15107/17117 12022/2830/17118\nf 12022/2830/17119 3224/4467/17120 3190/15108/17121\nf 12022/2830/17122 3189/15109/17123 12887/15110/17124\nf 12887/15111/17125 3221/615/17126 12022/2830/17127\nf 12887/15112/17128 12277/15113/17129 3221/615/17130\nf 12887/15114/17131 3187/15115/17132 12277/15116/17133\nf 12277/15117/17134 8840/4576/17135 3221/615/17136\nf 3259/2586/17137 3163/15118/17138 3227/2001/17139\nf 3227/2001/17140 12248/1406/17141 3259/2586/17142\nf 3427/1505/17143 3227/2001/17144 3163/15119/17145\nf 3163/15120/17146 3164/15121/17147 3427/1505/17148\nf 11940/3804/17149 3231/2312/17150 3230/15122/17151\nf 3230/15123/17152 11947/15124/17153 11940/3804/17154\nf 11940/3804/17155 11947/15125/17156 3089/15126/17157\nf 3089/15127/17158 3233/813/17159 11940/3804/17160\nf 3234/1287/17161 3233/813/17162 3089/15128/17163\nf 3089/15129/17164 12079/15130/17165 3234/1287/17166\nf 3217/3884/17167 3234/1287/17168 12079/15131/17169\nf 12079/15132/17170 3093/15133/17171 3217/3884/17172\nf 3217/3884/17173 3093/15134/17174 3094/15135/17175\nf 3094/15136/17176 3236/187/17177 3217/3884/17178\nf 3138/15137/17179 3238/3278/17180 11907/5996/17181\nf 12040/15138/17182 3138/15139/17183 11907/5996/17184\nf 11914/3347/17185 12040/15140/17186 11907/5996/17187\nf 10876/382/17188 3240/15141/17189 11909/15142/17190\nf 11909/15143/17191 3241/4672/17192 10876/382/17193\nf 3220/6334/17194 3238/3278/17195 3138/15144/17196\nf 3138/15145/17197 8884/15146/17198 3220/6334/17199\nf 12177/4339/17200 3220/6334/17201 8884/15147/17202\nf 8884/15148/17203 8885/15149/17204 12177/4339/17205\nf 3222/1387/17206 12177/4339/17207 8885/15150/17208\nf 8885/15151/17209 3143/15152/17210 3222/1387/17211\nf 12312/6550/17212 3222/1387/17213 3143/15153/17214\nf 3143/15154/17215 3144/15155/17216 12312/6550/17217\nf 9352/3688/17218 9804/3828/17219 9805/5976/17220\nf 9805/5976/17221 3251/5149/17222 9352/3688/17223\nf 3251/5149/17224 9805/5976/17225 9810/3308/17226\nf 9810/3308/17227 8798/4506/17228 3251/5149/17229\nf 8798/4506/17230 9810/3308/17231 9845/4295/17232\nf 9845/4295/17233 3260/4294/17234 8798/4506/17235\nf 9295/3462/17236 9804/3828/17237 9352/3688/17238\nf 9352/3688/17239 12413/6234/17240 9295/3462/17241\nf 9295/3462/17242 12413/6234/17243 3255/2980/17244\nf 3255/2980/17245 9296/4875/17246 9295/3462/17247\nf 9296/4875/17248 3255/2980/17249 3258/849/17250\nf 3258/849/17251 9297/6209/17252 9296/4875/17253\nf 9297/6209/17254 3258/849/17255 12249/5180/17256\nf 12250/15156/17257 8839/979/17258 9298/15157/17259\nf 12491/15158/17260 3252/4938/17261 9342/2536/17262\nf 9342/2536/17263 3152/15159/17264 12491/15160/17265\nf 12162/15161/17266 3152/15162/17267 9342/2536/17268\nf 9342/2536/17269 3254/5966/17270 12162/15163/17271\nf 3247/5928/17272 3252/4938/17273 12491/15164/17274\nf 12491/15165/17275 3154/15166/17276 3247/5928/17277\nf 9120/152/17278 3247/5928/17279 3154/15167/17280\nf 3154/15168/17281 9109/15169/17282 9120/152/17283\nf 9120/152/17284 9109/15170/17285 3257/15171/17286\nf 3257/15172/17287 9121/4277/17288 9120/152/17289\nf 9121/4277/17290 3257/15173/17291 9076/15174/17292\nf 9076/15175/17293 3228/461/17294 9121/4277/17295\nf 12162/15176/17296 3254/5966/17297 8799/3805/17298\nf 8799/3805/17299 3165/15177/17300 12162/15178/17301\nf 3261/15179/17302 3248/4132/17303 9299/4024/17304\nf 9299/4024/17305 3193/15180/17306 3261/15181/17307\nf 12278/15182/17308 3193/15183/17309 9299/4024/17310\nf 3249/15184/17311 3219/746/17312 3226/15185/17313\nf 3248/4132/17314 3261/15186/17315 3194/15187/17316\nf 3194/15188/17317 3246/3026/17318 3248/4132/17319\nf 3262/6510/17320 3246/3026/17321 3194/15189/17322\nf 3194/15190/17323 3263/15191/17324 3262/6510/17325\nf 3264/5684/17326 3262/6510/17327 3263/15192/17328\nf 3263/15193/17329 3265/15194/17330 3264/5684/17331\nf 3264/5684/17332 3265/15195/17333 3200/15196/17334\nf 3200/15197/17335 3266/3871/17336 3264/5684/17337\nf 3267/5590/17338 3266/3871/17339 3200/15198/17340\nf 3200/15199/17341 12373/15200/17342 3267/5590/17343\nf 3077/1356/17344 3078/6512/17345 3132/4999/17346\nf 3132/4999/17347 3269/2154/17348 3077/1356/17349\nf 3135/5261/17350 3269/2154/17351 3132/4999/17352\nf 12041/3425/17353 3136/1155/17354 3140/5478/17355\nf 3131/3745/17356 3140/5478/17357 3136/1155/17358\nf 3077/1356/17359 3271/15201/17360 3270/15202/17361\nf 3270/15203/17362 3079/3003/17363 3077/1356/17364\nf 3079/3003/17365 3270/15204/17366 3272/15205/17367\nf 3272/15206/17368 3081/624/17369 3079/3003/17370\nf 3081/624/17371 3272/15207/17372 3273/15208/17373\nf 3273/15209/17374 3274/3449/17375 3081/624/17376\nf 3274/3449/17377 3273/15210/17378 3275/15211/17379\nf 3275/15212/17380 3084/2086/17381 3274/3449/17382\nf 3276/4350/17383 3084/2086/17384 3275/15213/17385\nf 3275/15214/17386 3277/15215/17387 3276/4350/17388\nf 3278/15216/17389 3277/15217/17390 3275/15218/17391\nf 3277/15219/17392 3278/15220/17393 3279/15221/17394\nf 3280/15222/17395 3279/15223/17396 3278/15224/17397\nf 3279/15225/17398 3280/15226/17399 12868/15227/17400\nf 12749/15228/17401 12868/15229/17402 3280/15230/17403\nf 3280/15231/17404 3282/15232/17405 12749/15233/17406\nf 12750/15234/17407 12749/15235/17408 3282/15236/17409\nf 3282/15237/17410 3284/15238/17411 12750/15239/17412\nf 12868/15240/17413 12734/15241/17414 3279/15242/17415\nf 3285/15243/17416 3279/15244/17417 12734/15245/17418\nf 3279/15246/17419 3285/15247/17420 3277/15248/17421\nf 3276/4350/17422 3277/15249/17423 3285/15250/17424\nf 12734/15251/17425 12034/15252/17426 3285/15253/17427\nf 3287/807/17428 3285/15254/17429 12034/15255/17430\nf 3285/15256/17431 3287/807/17432 3276/4350/17433\nf 12034/15257/17434 11629/5052/17435 3287/807/17436\nf 3284/15258/17437 3282/15259/17438 3288/15260/17439\nf 3289/15261/17440 3284/15262/17441 3288/15263/17442\nf 3290/15264/17443 3289/15265/17444 3288/15266/17445\nf 3291/15267/17446 3289/15268/17447 3290/15269/17448\nf 3290/15270/17449 3292/15271/17450 3291/15272/17451\nf 3292/15273/17452 3290/15274/17453 3293/15275/17454\nf 3293/15276/17455 3290/15277/17456 3288/15278/17457\nf 3293/15279/17458 3294/15280/17459 3292/15281/17460\nf 3294/15282/17461 3293/15283/17462 3295/15284/17463\nf 3288/15285/17464 3295/15286/17465 3293/15287/17466\nf 3295/15288/17467 3296/15289/17468 3294/15290/17469\nf 3296/15291/17470 3295/15292/17471 3297/15293/17472\nf 3297/15294/17473 3295/15295/17474 3288/15296/17475\nf 3297/15297/17476 3298/15298/17477 3296/15299/17478\nf 3298/15300/17479 3297/15301/17480 3299/15302/17481\nf 3299/15303/17482 3300/15304/17483 3298/15305/17484\nf 3298/15306/17485 3300/15307/17486 3301/15308/17487\nf 3301/15309/17488 3302/15310/17489 3298/15311/17490\nf 3296/15312/17491 3298/15313/17492 3302/15314/17493\nf 3302/15315/17494 3301/15316/17495 3303/15317/17496\nf 3303/15318/17497 3304/15319/17498 3302/15320/17499\nf 3305/15321/17500 3304/15322/17501 3303/15323/17502\nf 3303/15324/17503 3306/15325/17504 3305/15326/17505\nf 3302/15327/17506 3307/15328/17507 3296/15329/17508\nf 3294/15330/17509 3296/15331/17510 3307/15332/17511\nf 3307/15333/17512 3308/15334/17513 3294/15335/17514\nf 3309/15336/17515 3308/15337/17516 3307/15338/17517\nf 3307/15339/17518 3310/15340/17519 3309/15341/17520\nf 3310/15342/17521 3307/15343/17522 3302/15344/17523\nf 3302/15345/17524 3304/15346/17525 3310/15347/17526\nf 3311/15348/17527 3309/15349/17528 3310/15350/17529\nf 3310/15351/17530 3312/15352/17531 3311/15353/17532\nf 3304/15354/17533 3305/15355/17534 3312/15356/17535\nf 3312/15357/17536 3310/15358/17537 3304/15359/17538\nf 3311/15360/17539 3312/15361/17540 3313/15362/17541\nf 3313/15363/17542 3312/15364/17543 3305/15365/17544\nf 3313/15366/17545 3314/15367/17546 3311/15368/17547\nf 3314/15369/17548 3313/15370/17549 3315/15371/17550\nf 3315/15372/17551 3316/15373/17552 3314/15374/17553\nf 3317/15375/17554 3316/15376/17555 3315/15377/17556\nf 3315/15378/17557 3318/15379/17558 3317/15380/17559\nf 3319/15381/17560 3318/15382/17561 3315/15383/17562\nf 3315/15384/17563 3320/15385/17564 3319/15386/17565\nf 3320/15387/17566 3315/15388/17567 3313/15389/17568\nf 3313/15390/17569 3321/15391/17570 3320/15392/17571\nf 3305/15393/17572 3321/15394/17573 3313/15395/17574\nf 3322/15396/17575 3321/15397/17576 3305/15398/17577\nf 3305/15399/17578 3306/15400/17579 3322/15401/17580\nf 3321/15402/17581 3322/15403/17582 3323/15404/17583\nf 3323/15405/17584 3320/15406/17585 3321/15407/17586\nf 3320/15408/17587 3323/15409/17588 3324/15410/17589\nf 3324/15411/17590 3319/15412/17591 3320/15413/17592\nf 3325/15414/17593 3322/15415/17594 3306/15416/17595\nf 3306/15417/17596 3271/15418/17597 3325/15419/17598\nf 3322/15420/17599 3325/15421/17600 3326/15422/17601\nf 3326/15423/17602 3323/15424/17603 3322/15425/17604\nf 3323/15426/17605 3326/15427/17606 3327/15428/17607\nf 3327/15429/17608 3324/15430/17609 3323/15431/17610\nf 3327/15432/17611 3326/15433/17612 3135/5261/17613\nf 3135/5261/17614 3326/15434/17615 3325/15435/17616\nf 3135/5261/17617 3328/3772/17618 3327/15436/17619\nf 3329/15437/17620 3327/15438/17621 3328/3772/17622\nf 3324/15439/17623 3327/15440/17624 3329/15441/17625\nf 3328/3772/17626 3137/4007/17627 3329/15442/17628\nf 3329/15443/17629 3137/4007/17630 3239/2478/17631\nf 3239/2478/17632 11460/15444/17633 3329/15445/17634\nf 3270/15446/17635 3271/15447/17636 3306/15448/17637\nf 3306/15449/17638 3303/15450/17639 3270/15451/17640\nf 3272/15452/17641 3270/15453/17642 3303/15454/17643\nf 3303/15455/17644 3301/15456/17645 3272/15457/17646\nf 3272/15458/17647 3301/15459/17648 3300/15460/17649\nf 3300/15461/17650 3273/15462/17651 3272/15463/17652\nf 3275/15464/17653 3273/15465/17654 3300/15466/17655\nf 3300/15467/17656 3299/15468/17657 3275/15469/17658\nf 3275/15470/17659 3299/15471/17660 3278/15472/17661\nf 3278/15473/17662 3299/15474/17663 3297/15475/17664\nf 3297/15476/17665 3331/15477/17666 3278/15478/17667\nf 3288/15479/17668 3331/15480/17669 3297/15481/17670\nf 3331/15482/17671 3288/15483/17672 3282/15484/17673\nf 3282/15485/17674 3280/15486/17675 3331/15487/17676\nf 3278/15488/17677 3331/15489/17678 3280/15490/17679\nf 3332/15491/17680 3329/15492/17681 11460/15493/17682\nf 3329/15494/17683 3332/15495/17684 3324/15496/17685\nf 3324/15497/17686 3332/15498/17687 3333/15499/17688\nf 3333/15500/17689 3332/15501/17690 11373/15502/17691\nf 11373/15503/17692 11341/15504/17693 3333/15505/17694\nf 3336/15506/17695 3333/15507/17696 11341/15508/17697\nf 11341/15509/17698 11342/15510/17699 3336/15511/17700\nf 3338/15512/17701 3336/15513/17702 11342/15514/17703\nf 11342/15515/17704 3433/15516/17705 3338/15517/17706\nf 3333/15518/17707 3319/15519/17708 3324/15520/17709\nf 3333/15521/17710 3336/15522/17711 3318/15523/17712\nf 3318/15524/17713 3319/15525/17714 3333/15526/17715\nf 3317/15527/17716 3318/15528/17717 3336/15529/17718\nf 3336/15530/17719 3338/15531/17720 3317/15532/17721\nf 3317/15533/17722 3338/15534/17723 3339/15535/17724\nf 3339/15536/17725 3316/15537/17726 3317/15538/17727\nf 3314/15539/17728 3316/15540/17729 3339/15541/17730\nf 3339/15542/17731 3340/15543/17732 3314/15544/17733\nf 3311/15545/17734 3314/15546/17735 3340/15547/17736\nf 3340/15548/17737 3341/15549/17738 3311/15550/17739\nf 3309/15551/17740 3311/15552/17741 3341/15553/17742\nf 3341/15554/17743 3342/15555/17744 3309/15556/17745\nf 3309/15557/17746 3342/15558/17747 3343/15559/17748\nf 3343/15560/17749 3308/15561/17750 3309/15562/17751\nf 3294/15563/17752 3308/15564/17753 3343/15565/17754\nf 3343/15566/17755 3292/15567/17756 3294/15568/17757\nf 3343/15569/17758 3291/15570/17759 3292/15571/17760\nf 3344/15572/17761 13326/15573/17762 13324/15574/17763\nf 13324/15575/17764 3346/15576/17765 3344/15577/17766\nf 3346/15578/17767 13324/15579/17768 11716/15580/17769\nf 11716/15581/17770 3347/15582/17771 3346/15583/17772\nf 3348/2053/17773 3346/15584/17774 3347/15585/17775\nf 3344/15586/17776 3346/15587/17777 3348/2053/17778\nf 3347/15588/17779 3156/6454/17780 3348/2053/17781\nf 3348/2053/17782 3349/177/17783 3344/15589/17784\nf 3350/15590/17785 3344/15591/17786 3349/177/17787\nf 13326/15592/17788 3344/15593/17789 3350/15594/17790\nf 3349/177/17791 3158/239/17792 3350/15595/17793\nf 3351/15596/17794 3350/15597/17795 3158/239/17796\nf 3158/239/17797 3352/2221/17798 3351/15598/17799\nf 3353/2382/17800 3156/6454/17801 3347/15599/17802\nf 3347/15600/17803 3354/15601/17804 3353/2382/17805\nf 3354/15602/17806 3347/15603/17807 11716/15604/17808\nf 3353/2382/17809 3354/15605/17810 3355/15606/17811\nf 3355/15607/17812 3162/6345/17813 3353/2382/17814\nf 3162/6345/17815 3355/15608/17816 3426/15609/17817\nf 3426/15610/17818 9524/151/17819 3162/6345/17820\nf 3355/15611/17821 3354/15612/17822 11717/15613/17823\nf 11716/15614/17824 11717/15615/17825 3354/15616/17826\nf 11717/15617/17827 13312/15618/17828 3355/15619/17829\nf 10866/15620/17830 3426/15621/17831 3355/15622/17832\nf 3355/15623/17833 13312/15624/17834 10866/15625/17835\nf 3350/15626/17836 3351/15627/17837 3447/15628/17838\nf 3447/15629/17839 13298/15630/17840 3350/15631/17841\nf 3350/15632/17842 13298/15633/17843 13326/15634/17844\nf 3358/15635/17845 3360/15636/17846 11281/15637/17847\nf 11281/15638/17848 3361/15639/17849 3358/15640/17850\nf 3358/15641/17851 3361/15642/17852 3362/15643/17853\nf 3362/15644/17854 3363/15645/17855 3358/15646/17856\nf 3364/15647/17857 3363/15648/17858 3362/15649/17859\nf 3362/15650/17860 3365/15651/17861 3364/15652/17862\nf 3366/15653/17863 3362/15654/17864 3361/15655/17865\nf 3361/15656/17866 3367/15657/17867 3366/15658/17868\nf 3368/15659/17869 3366/15660/17870 3367/15661/17871\nf 3367/15662/17872 3369/15663/17873 3368/15664/17874\nf 3370/15665/17875 3369/15666/17876 3367/15667/17877\nf 3367/15668/17878 11456/15669/17879 3370/15670/17880\nf 11456/15671/17881 3367/15672/17882 3361/15673/17883\nf 11281/15674/17884 11456/15675/17885 3361/15676/17886\nf 3372/15677/17887 3365/15678/17888 3362/15679/17889\nf 3362/15680/17890 3366/15681/17891 3372/15682/17892\nf 3372/15683/17893 3366/15684/17894 3368/15685/17895\nf 3369/15686/17896 3370/15687/17897 3373/15688/17898\nf 3368/15689/17899 3369/15690/17900 3373/15691/17901\nf 3373/15692/17902 3374/15693/17903 3368/15694/17904\nf 3368/15695/17905 3374/15696/17906 3375/15697/17907\nf 3375/15698/17908 3376/15699/17909 3368/15700/17910\nf 3368/15701/17911 3376/15702/17912 3372/15703/17913\nf 3364/15704/17914 3365/15705/17915 3377/15706/17916\nf 3377/15707/17917 3378/15708/17918 3364/15709/17919\nf 3378/15710/17920 3377/15711/17921 11012/15712/17922\nf 11012/15713/17923 13101/15714/17924 3378/15715/17925\nf 3365/15716/17926 3372/15717/17927 3380/15718/17928\nf 3380/15719/17929 3377/15720/17930 3365/15721/17931\nf 3377/15722/17932 3380/15723/17933 11013/15724/17934\nf 11013/15725/17935 11012/15726/17936 3377/15727/17937\nf 11058/15728/17938 11013/15729/17939 3380/15730/17940\nf 3380/15731/17941 3383/15732/17942 11058/15733/17943\nf 3383/15734/17944 3380/15735/17945 3372/15736/17946\nf 3372/15737/17947 3376/15738/17948 3383/15739/17949\nf 3376/15740/17950 3375/15741/17951 3384/15742/17952\nf 3384/15743/17953 3383/15744/17954 3376/15745/17955\nf 11058/15746/17956 3383/15747/17957 3384/15748/17958\nf 11248/15749/17959 3378/15750/17960 13101/15751/17961\nf 3364/15752/17962 3378/15753/17963 11248/15754/17964\nf 11248/15755/17965 11274/15756/17966 3364/15757/17967\nf 13101/15758/17968 11249/15759/17969 11248/15760/17970\nf 3364/15761/17971 11274/15762/17972 10870/15763/17973\nf 10870/15764/17974 3363/15765/17975 3364/15766/17976\nf 3363/15767/17977 10870/15768/17978 10871/15769/17979\nf 10871/15770/17980 3358/15771/17981 3363/15772/17982\nf 3360/15773/17983 3358/15774/17984 10871/15775/17985\nf 10871/15776/17986 3456/15777/17987 3360/15778/17988\nf 3387/15779/17989 3360/15780/17990 3456/15781/17991\nf 3387/15782/17992 3388/15783/17993 3360/15784/17994\nf 3388/15785/17995 3387/15786/17996 3389/15787/17997\nf 3388/15788/17998 11281/15789/17999 3360/15790/18000\nf 3388/15791/18001 3390/15792/18002 11281/15793/18003\nf 3390/15794/18004 11282/15795/18005 11281/15796/18006\nf 3359/15797/18007 3391/15798/18008 3371/15799/18009\nf 3456/15800/18010 3457/15801/18011 3387/15802/18012\nf 3389/15803/18013 3387/15804/18014 3457/15805/18015\nf 3457/15806/18016 13118/15807/18017 3389/15808/18018\nf 10605/15809/18019 10606/15810/18020 3394/15811/18021\nf 10605/15812/18022 3394/15813/18023 3396/15814/18024\nf 3396/15815/18025 3397/15816/18026 10605/15817/18027\nf 3396/15818/18028 3398/15819/18029 3397/15820/18030\nf 3396/15821/18031 3399/15822/18032 3398/15823/18033\nf 3399/15824/18034 3400/15825/18035 3398/15826/18036\nf 10604/15827/18037 3398/15828/18038 3400/15829/18039\nf 3400/15830/18040 3402/15831/18041 10604/15832/18042\nf 10604/15833/18043 3402/15834/18044 3403/1347/18045\nf 3403/1347/18046 9010/5336/18047 10604/15835/18048\nf 12039/15836/18049 3401/15837/18050 3211/15838/18051\nf 3211/15839/18052 3218/6194/18053 12039/15840/18054\nf 12980/15841/18055 10576/15842/18056 10577/15843/18057\nf 10577/15844/18058 3412/15845/18059 12980/15846/18060\nf 3412/15847/18061 10577/15848/18062 3401/15849/18063\nf 3401/15850/18064 12039/15851/18065 3412/15852/18066\nf 3407/15853/18067 3393/15854/18068 10576/15855/18069\nf 10576/15856/18070 12980/15857/18071 3407/15858/18072\nf 3408/15859/18073 3395/15860/18074 3393/15861/18075\nf 3393/15862/18076 3407/15863/18077 3408/15864/18078\nf 10317/15865/18079 10347/15866/18080 10346/15867/18081\nf 10346/15868/18082 10230/15869/18083 10317/15870/18084\nf 10228/15871/18085 10230/15872/18086 10346/15873/18087\nf 10346/15874/18088 3405/15875/18089 10228/15876/18090\nf 10229/15877/18091 10228/15878/18092 3405/15879/18093\nf 3405/15880/18094 12972/15881/18095 10229/15882/18096\nf 10232/15883/18097 10229/15884/18098 12972/15885/18099\nf 12972/15886/18100 3404/15887/18101 10232/15888/18102\nf 12029/2137/18103 10232/15889/18104 3404/15890/18105\nf 3404/15891/18106 12031/5897/18107 12029/2137/18108\nf 10473/15892/18109 10472/15893/18110 10312/15894/18111\nf 10312/15895/18112 13010/15896/18113 10473/15897/18114\nf 10313/15898/18115 10312/15899/18116 10472/15900/18117\nf 10472/15901/18118 10495/15902/18119 10313/15903/18120\nf 3434/15904/18121 10313/15905/18122 10495/15906/18123\nf 10495/15907/18124 13091/15908/18125 3434/15909/18126\nf 10473/15910/18127 13010/15911/18128 13000/15912/18129\nf 3425/15913/18130 13000/15914/18131 13010/15915/18132\nf 13010/15916/18133 10544/15917/18134 3425/15918/18135\nf 3425/15919/18136 10544/15920/18137 10545/15921/18138\nf 11916/4639/18139 3425/15922/18140 3419/15923/18141\nf 11915/15924/18142 10546/15925/18143 10877/15926/18144\nf 10877/15927/18145 10874/15928/18146 11915/15929/18147\nf 11916/4639/18148 3427/5565/18149 3425/15930/18150\nf 3416/15931/18151 3420/15932/18152 3381/15933/18153\nf 3381/15934/18154 3382/15935/18155 3416/15936/18156\nf 3379/15937/18157 3381/15938/18158 3420/15939/18159\nf 3420/15940/18160 3421/15941/18161 3379/15942/18162\nf 3421/15943/18163 11251/15944/18164 3379/15945/18165\nf 3421/15946/18166 10474/15947/18167 11251/15948/18168\nf 11251/15949/18169 3423/15950/18170 3379/15951/18171\nf 10865/15952/18172 13000/15953/18173 3425/15954/18174\nf 3425/15955/18175 10867/15956/18176 10865/15957/18177\nf 10867/15958/18178 3425/15959/18179 3427/1505/18180\nf 3427/1505/18181 3164/15960/18182 10867/15961/18183\nf 3409/15962/18184 3428/15963/18185 3283/15964/18186\nf 3283/15965/18187 3406/15966/18188 3409/15967/18189\nf 3281/15968/18190 3428/15969/18191 3409/15970/18192\nf 3409/15971/18193 3410/15972/18194 3281/15973/18195\nf 3281/15974/18196 3410/15975/18197 3411/15976/18198\nf 3411/15977/18199 3429/15978/18200 3281/15979/18201\nf 3429/15980/18202 3411/15981/18203 3413/15982/18204\nf 3413/15983/18205 3286/15984/18206 3429/15985/18207\nf 3094/15986/18208 3286/15987/18209 3413/15988/18210\nf 3413/15989/18211 3236/187/18212 3094/15990/18213\nf 10547/15991/18214 3418/15992/18215 3330/15993/18216\nf 10547/15994/18217 3330/15995/18218 12040/15996/18219\nf 10547/15997/18220 12040/15998/18221 11914/3347/18222\nf 10548/15999/18223 11918/16000/18224 3430/16001/18225\nf 3430/16002/18226 3431/16003/18227 10548/16004/18228\nf 3330/16005/18229 3418/16006/18230 3432/16007/18231\nf 3432/16008/18232 3334/16009/18233 3330/16010/18234\nf 3334/16011/18235 3432/16012/18236 3414/16013/18237\nf 3414/16014/18238 3335/16015/18239 3334/16016/18240\nf 3335/16017/18241 3414/16018/18242 3415/16019/18243\nf 3415/16020/18244 3337/16021/18245 3335/16022/18246\nf 13170/16023/18247 3337/16024/18248 3415/16025/18249\nf 3415/16026/18250 13089/16027/18251 13170/16028/18252\nf 11499/16029/18253 11466/16030/18254 13292/16031/18255\nf 13292/16032/18256 11490/16033/18257 11499/16034/18258\nf 11595/16035/18259 11499/16036/18260 11490/16037/18261\nf 11490/16038/18262 11491/16039/18263 11595/16040/18264\nf 11596/16041/18265 11595/16042/18266 11491/16043/18267\nf 11491/16044/18268 11597/16045/18269 11596/16046/18270\nf 13292/16047/18271 11466/16048/18272 11370/16049/18273\nf 11370/16050/18274 11640/16051/18275 13292/16052/18276\nf 11638/16053/18277 11640/16054/18278 11370/16055/18279\nf 11370/16056/18280 3450/16057/18281 11638/16058/18282\nf 11639/16059/18283 11638/16060/18284 3450/16061/18285\nf 3450/16062/18286 11264/16063/18287 11639/16064/18288\nf 13001/16065/18289 11639/16066/18290 11264/16067/18291\nf 11265/16068/18292 10475/16069/18293 13002/16070/18294\nf 3435/16071/18295 3443/16072/18296 3345/16073/18297\nf 3345/16074/18298 3444/16075/18299 3435/16076/18300\nf 3435/16077/18301 3444/16078/18302 3357/16079/18303\nf 3357/16080/18304 3437/16081/18305 3435/16082/18306\nf 3345/16083/18307 3443/16084/18308 3440/16085/18309\nf 3440/16086/18310 3445/16087/18311 3345/16088/18312\nf 3445/16089/18313 3440/16090/18314 3441/16091/18315\nf 3441/16092/18316 3446/16093/18317 3445/16094/18318\nf 3356/16095/18319 3446/16096/18320 3441/16097/18321\nf 3441/16098/18322 3442/16099/18323 3356/16100/18324\nf 3424/16101/18325 3356/16102/18326 3442/16103/18327\nf 3442/16104/18328 3417/16105/18329 3424/16106/18330\nf 3439/16107/18331 3437/16108/18332 3357/16109/18333\nf 3357/16110/18334 13297/16111/18335 3439/16112/18336\nf 11263/16113/18337 11317/16114/18338 3449/16115/18339\nf 3449/16116/18340 3451/16117/18341 11263/16118/18342\nf 11263/16119/18343 3451/16120/18344 11250/16121/18345\nf 3452/16122/18346 3422/16123/18347 3448/16124/18348\nf 3385/16125/18349 3449/16126/18350 11317/16127/18351\nf 11317/16128/18352 3453/16129/18353 3385/16130/18354\nf 3385/16131/18355 3453/16132/18356 3454/16133/18357\nf 3454/16134/18358 3386/16135/18359 3385/16136/18360\nf 3386/16137/18361 3454/16138/18362 3455/16139/18363\nf 3455/16140/18364 11538/16141/18365 3386/16142/18366\nf 11539/16143/18367 11538/16144/18368 3455/16145/18369\nf 3455/16146/18370 3436/16147/18371 11539/16148/18372\nf 11539/16149/18373 3436/16150/18374 3438/16151/18375\nf 3438/16152/18376 3392/16153/18377 11539/16154/18378\nf 3325/16155/18379 3271/16156/18380 3077/1356/18381\nf 3077/1356/18382 3269/2154/18383 3325/16157/18384\nf 3325/16158/18385 3269/2154/18386 3135/5261/18387\nf 11460/16159/18388 11373/16160/18389 3332/16161/18390\nf 9643/6018/18391 9644/6319/18392 9246/2491/18393\nf 9246/2491/18394 12205/2819/18395 9643/6018/18396\nf 9643/6018/18397 12205/2819/18398 12143/568/18399\nf 12143/568/18400 3458/4713/18401 9643/6018/18402\nf 3459/1420/18403 12205/2819/18404 9246/2491/18405\nf 9246/2491/18406 3487/79/18407 3459/1420/18408\nf 9905/6539/18409 3459/1420/18410 3487/79/18411\nf 3487/79/18412 12809/909/18413 9905/6539/18414\nf 9905/6539/18415 12809/909/18416 9912/1881/18417\nf 9912/1881/18418 9906/3206/18419 9905/6539/18420\nf 9246/2491/18421 9644/6319/18422 12043/1233/18423\nf 12043/1233/18424 3501/305/18425 9246/2491/18426\nf 3501/305/18427 12043/1233/18428 9074/5839/18429\nf 9074/5839/18430 3498/3806/18431 3501/305/18432\nf 9457/5239/18433 9305/1061/18434 9304/3234/18435\nf 9304/3234/18436 9458/2544/18437 9457/5239/18438\nf 9458/2544/18439 9304/3234/18440 9882/5217/18441\nf 9882/5217/18442 9893/2245/18443 9458/2544/18444\nf 9458/2544/18445 9893/2245/18446 12115/5716/18447\nf 12115/5716/18448 12077/188/18449 9458/2544/18450\nf 9668/2661/18451 9305/1061/18452 9457/5239/18453\nf 9457/5239/18454 9504/1642/18455 9668/2661/18456\nf 3468/6063/18457 9668/2661/18458 9504/1642/18459\nf 9504/1642/18460 3514/3072/18461 3468/6063/18462\nf 3468/6063/18463 3514/3072/18464 12114/5920/18465\nf 12114/5920/18466 12729/485/18467 3468/6063/18468\nf 12729/485/18469 12114/5920/18470 3517/980/18471\nf 3517/980/18472 3472/3403/18473 12729/485/18474\nf 3472/3403/18475 3517/980/18476 12045/2868/18477\nf 12045/2868/18478 9722/3681/18479 3472/3403/18480\nf 9667/5271/18481 3469/6451/18482 12218/3196/18483\nf 12218/3196/18484 3470/1845/18485 9667/5271/18486\nf 3471/1095/18487 3469/6451/18488 9667/5271/18489\nf 9667/5271/18490 3467/5665/18491 3471/1095/18492\nf 3471/1095/18493 3467/5665/18494 9721/5489/18495\nf 9721/5489/18496 3461/5601/18497 3471/1095/18498\nf 3470/1845/18499 12218/3196/18500 12140/486/18501\nf 12140/486/18502 3506/2947/18503 3470/1845/18504\nf 3549/4296/18505 3461/5601/18506 9721/5489/18507\nf 9721/5489/18508 3473/702/18509 3549/4296/18510\nf 3539/3229/18511 12174/3348/18512 12224/2774/18513\nf 12224/2774/18514 3475/6211/18515 3539/3229/18516\nf 12134/5929/18517 12224/2774/18518 12174/3348/18519\nf 12174/3348/18520 12136/5721/18521 12134/5929/18522\nf 9907/5092/18523 9911/78/18524 9910/880/18525\nf 9910/880/18526 3482/5090/18527 9907/5092/18528\nf 12966/1811/18529 3481/2284/18530 9918/4340/18531\nf 9918/4340/18532 3479/1598/18533 12966/1811/18534\nf 12966/1811/18535 3479/1598/18536 3497/1706/18537\nf 3497/1706/18538 3480/1903/18539 12966/1811/18540\nf 9904/6250/18541 3483/4409/18542 9926/5690/18543\nf 9926/5690/18544 3484/16162/18545 9904/6250/18546\nf 3478/2733/18547 12810/2012/18548 3485/2006/18549\nf 3485/2006/18550 3477/16163/18551 3478/2733/18552\nf 3486/3496/18553 12816/16164/18554 3460/16165/18555\nf 3460/16166/18556 12876/4583/18557 3486/3496/18558\nf 3486/3496/18559 12876/4583/18560 9247/4177/18561\nf 9247/4177/18562 3502/4937/18563 3486/3496/18564\nf 9881/3699/18565 3490/3750/18566 3489/3934/18567\nf 3489/3934/18568 3491/3274/18569 9881/3699/18570\nf 3492/1960/18571 3490/3750/18572 9881/3699/18573\nf 9883/16167/18574 3508/905/18575 9884/16168/18576\nf 3493/1930/18577 9884/16169/18578 3508/905/18579\nf 3508/905/18580 8918/4055/18581 3493/1930/18582\nf 3493/1930/18583 8918/4055/18584 8919/885/18585\nf 8919/885/18586 3496/4285/18587 3493/1930/18588\nf 12142/3656/18589 3480/5346/18590 3497/1706/18591\nf 3497/1706/18592 3476/4075/18593 12142/3656/18594\nf 9240/2963/18595 3500/2820/18596 3499/6548/18597\nf 3499/6548/18598 9241/5019/18599 9240/2963/18600\nf 9241/5019/18601 3499/6548/18602 9349/6059/18603\nf 9349/6059/18604 3503/4261/18605 9241/5019/18606\nf 3509/3239/18607 12323/111/18608 3488/959/18609\nf 3488/959/18610 3504/5351/18611 3509/3239/18612\nf 12140/486/18613 3509/3239/18614 3504/5351/18615\nf 3504/5351/18616 3506/2947/18617 12140/486/18618\nf 3507/5003/18619 3494/2777/18620 12323/111/18621\nf 12323/111/18622 3509/3239/18623 3507/5003/18624\nf 3495/2891/18625 3494/2777/18626 3507/5003/18627\nf 3507/5003/18628 3510/4367/18629 3495/2891/18630\nf 3511/4729/18631 3507/5003/18632 3509/3239/18633\nf 3510/4367/18634 3507/5003/18635 3511/4729/18636\nf 3509/3239/18637 3505/16170/18638 3511/4729/18639\nf 3511/4729/18640 3512/5543/18641 3510/4367/18642\nf 3466/5593/18643 12709/1134/18644 11996/508/18645\nf 11996/508/18646 11997/5020/18647 3466/5593/18648\nf 12002/4874/18649 11996/508/18650 12709/1134/18651\nf 12709/1134/18652 3465/1253/18653 12002/4874/18654\nf 12053/641/18655 3466/5593/18656 11997/5020/18657\nf 11997/5020/18658 3522/6165/18659 12053/641/18660\nf 11945/1442/18661 12002/4874/18662 3465/1253/18663\nf 3465/1253/18664 3462/4858/18665 11945/1442/18666\nf 3462/4858/18667 9459/1021/18668 11945/1442/18669\nf 3556/2485/18670 12053/641/18671 3522/6165/18672\nf 3522/6165/18673 3518/951/18674 3556/2485/18675\nf 3515/5080/18676 3513/2914/18677 11919/4398/18678\nf 11919/4398/18679 11920/2175/18680 3515/5080/18681\nf 11922/4540/18682 11919/4398/18683 3513/2914/18684\nf 3513/2914/18685 3516/4495/18686 11922/4540/18687\nf 12052/6005/18688 3515/5080/18689 11920/2175/18690\nf 11920/2175/18691 3530/4881/18692 12052/6005/18693\nf 11942/4036/18694 11922/4540/18695 3516/4495/18696\nf 3516/4495/18697 11944/4366/18698 11942/4036/18699\nf 12047/2143/18700 12052/6005/18701 3530/4881/18702\nf 3530/4881/18703 12049/3121/18704 12047/2143/18705\nf 3533/750/18706 11943/16171/18707 3524/16172/18708\nf 3524/16173/18709 3463/3262/18710 3533/750/18711\nf 3519/3929/18712 3527/3848/18713 3526/2213/18714\nf 3526/2213/18715 3520/1539/18716 3519/3929/18717\nf 3527/3848/18718 3519/3929/18719 3521/1857/18720\nf 3521/1857/18721 3528/4063/18722 3527/3848/18723\nf 3520/1539/18724 3526/2213/18725 3529/751/18726\nf 3529/751/18727 12051/3215/18728 3520/1539/18729\nf 3531/5337/18730 3528/4063/18731 3521/1857/18732\nf 3521/1857/18733 3523/3292/18734 3531/5337/18735\nf 3532/408/18736 3531/5337/18737 3523/3292/18738\nf 3523/3292/18739 12076/2126/18740 3532/408/18741\nf 3525/2002/18742 12051/3215/18743 3529/751/18744\nf 3529/751/18745 3534/731/18746 3525/2002/18747\nf 3535/4378/18748 3532/2898/18749 12076/1807/18750\nf 12076/1807/18751 3464/1771/18752 3535/4378/18753\nf 3476/4609/18754 3541/4947/18755 12141/720/18756\nf 12142/5058/18757 3476/4609/18758 12141/720/18759\nf 3536/16174/18760 12140/16175/18761 12218/1576/18762\nf 3537/4123/18763 3538/616/18764 3474/3286/18765\nf 3474/3286/18766 12180/2967/18767 3537/4123/18768\nf 3474/3286/18769 3538/616/18770 3540/4170/18771\nf 3540/4170/18772 12135/4518/18773 3474/3286/18774\nf 3558/16176/18775 12238/16177/18776 9635/16178/18777\nf 9635/16179/18778 9184/16180/18779 3558/16181/18780\nf 11648/16182/18781 12238/16183/18782 3558/16184/18783\nf 3558/16185/18784 11657/16186/18785 11648/16187/18786\nf 9635/16188/18787 12238/16189/18788 3567/16190/18789\nf 3567/16191/18790 9259/16192/18791 9635/16193/18792\nf 9259/16194/18793 3567/16195/18794 12442/16196/18795\nf 12442/16197/18796 9260/16198/18797 9259/16199/18798\nf 10039/16200/18799 9260/16201/18800 12442/16202/18801\nf 12442/16203/18802 10037/16204/18803 10039/16205/18804\nf 9073/16206/18805 9184/16207/18806 9635/16208/18807\nf 9635/16209/18808 12026/16210/18809 9073/16211/18810\nf 9074/5839/18811 9073/16212/18812 12026/16213/18813\nf 12026/16214/18814 3498/3806/18815 9074/5839/18816\nf 12360/16215/18817 11558/16216/18818 3585/16217/18819\nf 3585/16218/18820 12337/16219/18821 12360/16220/18822\nf 9486/16221/18823 3585/16222/18824 11558/16223/18825\nf 11558/16224/18826 3576/16225/18827 9486/16226/18828\nf 12344/16227/18829 3576/16228/18830 11558/16229/18831\nf 11558/16230/18832 11556/16231/18833 12344/16232/18834\nf 12360/16233/18835 12337/16234/18836 9727/16235/18837\nf 9727/16236/18838 3595/16237/18839 12360/16238/18840\nf 3595/16239/18841 9727/16240/18842 9726/16241/18843\nf 9726/16242/18844 9187/16243/18845 3595/16244/18846\nf 9188/16245/18847 9187/16246/18848 9726/16247/18849\nf 9726/16248/18850 9741/16249/18851 9188/16250/18852\nf 3596/16251/18853 9188/16252/18854 9741/16253/18855\nf 9741/16254/18856 12027/16255/18857 3596/16256/18858\nf 12045/2868/18859 3596/16257/18860 12027/16258/18861\nf 12027/16259/18862 9722/3681/18863 12045/2868/18864\nf 3616/16260/18865 12195/16261/18866 3557/16262/18867\nf 3557/16263/18868 3559/16264/18869 3616/16265/18870\nf 3557/16266/18871 12195/16267/18872 3543/16268/18873\nf 3543/16269/18874 3560/16270/18875 3557/16271/18876\nf 3555/16272/18877 3560/16273/18878 3543/16274/18879\nf 3543/16275/18880 3547/16276/18881 3555/16277/18882\nf 11649/16278/18883 3616/16279/18884 3559/16280/18885\nf 3559/16281/18886 3551/16282/18887 11649/16283/18888\nf 3555/16284/18889 3547/16285/18890 3549/4296/18891\nf 3549/4296/18892 3473/702/18893 3555/16286/18894\nf 3619/16287/18895 3561/16288/18896 3569/16289/18897\nf 3569/16290/18898 12740/16291/18899 3619/16292/18900\nf 12740/16293/18901 3569/16294/18902 12639/16295/18903\nf 12639/16296/18904 12742/16297/18905 12740/16298/18906\nf 3572/16299/18907 10040/16300/18908 10038/16301/18909\nf 10038/16302/18910 12900/16303/18911 3572/16304/18912\nf 12931/16305/18913 12443/16306/18914 12239/16307/18915\nf 12239/16308/18916 3568/16309/18917 12931/16310/18918\nf 3568/16311/18919 12239/16312/18920 3542/29/18921\nf 3542/29/18922 12638/16313/18923 3568/16314/18924\nf 3570/16315/18925 3564/16316/18926 3545/16317/18927\nf 3545/16318/18928 3566/16319/18929 3570/16320/18930\nf 12679/16321/18931 3546/16322/18932 3565/16323/18933\nf 3565/16324/18934 12677/16325/18935 12679/16326/18936\nf 9261/16327/18937 3571/16328/18938 3573/16329/18939\nf 3573/16330/18940 3544/16331/18941 9261/16332/18942\nf 3544/16333/18943 3573/16334/18944 9633/16335/18945\nf 9633/16336/18946 9634/2285/18947 3544/16337/18948\nf 9517/16338/18949 3578/16339/18950 3577/16340/18951\nf 3577/16341/18952 9485/16342/18953 9517/16343/18954\nf 9485/16344/18955 3577/16345/18956 3580/16346/18957\nf 9488/16347/18958 10937/16348/18959 9487/16349/18960\nf 10937/16350/18961 9488/16351/18962 3581/16352/18963\nf 3581/16353/18964 10938/16354/18965 10937/16355/18966\nf 10938/16356/18967 3581/16357/18968 3582/16358/18969\nf 3582/16359/18970 3589/16360/18971 10938/16361/18972\nf 12638/16362/18973 3542/16363/18974 3614/16364/18975\nf 3614/16365/18976 3563/16366/18977 12638/16367/18978\nf 3500/2820/18979 9240/2963/18980 3548/16368/18981\nf 3548/16369/18982 3583/16370/18983 3500/2820/18984\nf 3583/16371/18985 3548/16372/18986 3575/5672/18987\nf 3575/5672/18988 3574/16373/18989 3583/16374/18990\nf 3584/16375/18991 12336/16376/18992 3579/16377/18993\nf 3579/16378/18994 3587/16379/18995 3584/16380/18996\nf 12336/16381/18997 3584/16382/18998 11649/16383/18999\nf 11649/16384/19000 3551/16385/19001 12336/16386/19002\nf 3586/16387/19003 3584/16388/19004 3587/16389/19005\nf 3587/16390/19006 3588/16391/19007 3586/16392/19008\nf 3586/16393/19009 3588/16394/19010 11069/16395/19011\nf 11069/16396/19012 3590/16397/19013 3586/16398/19014\nf 3584/16399/19015 3586/16400/19016 3591/16401/19017\nf 3591/16402/19018 3586/16403/19019 3590/16404/19020\nf 3591/16405/19021 3615/16406/19022 3584/16407/19023\nf 3590/16408/19024 3592/16409/19025 3591/16410/19026\nf 3554/16411/19027 11005/16412/19028 11004/16413/19029\nf 11004/16414/19030 3553/16415/19031 3554/16416/19032\nf 3553/16417/19033 11004/16418/19034 13192/16419/19035\nf 13192/16420/19036 12365/16421/19037 3553/16422/19038\nf 11005/16423/19039 3554/16424/19040 12044/16425/19041\nf 12044/16426/19042 3600/16427/19043 11005/16428/19044\nf 12365/16429/19045 13192/16430/19046 13187/16431/19047\nf 13187/16432/19048 3550/16433/19049 12365/16434/19050\nf 3550/16435/19051 13187/16436/19052 11559/16437/19053\nf 3600/16438/19054 12044/16439/19055 3556/2485/19056\nf 3556/2485/19057 3518/951/19058 3600/16440/19059\nf 3594/16441/19060 13291/16442/19061 3605/16443/19062\nf 3605/16444/19063 3593/16445/19064 3594/16446/19065\nf 3593/16447/19066 3605/16448/19067 3607/16449/19068\nf 3607/16450/19069 3599/16451/19070 3593/16452/19071\nf 13291/16453/19072 3594/16454/19073 12046/16455/19074\nf 12046/16456/19075 3608/16457/19076 13291/16458/19077\nf 3599/16459/19078 3607/16460/19079 11567/16461/19080\nf 11567/16462/19081 3597/16463/19082 3599/16464/19083\nf 3608/16465/19084 12046/16466/19085 12047/2143/19086\nf 12047/2143/19087 12049/3121/19088 3608/16467/19089\nf 11557/16468/19090 3602/16469/19091 13188/16470/19092\nf 13188/16471/19093 3611/16472/19094 11557/16473/19095\nf 3598/16474/19096 3604/16475/19097 3603/16476/19098\nf 3603/16477/19099 11612/16478/19100 3598/16479/19101\nf 11612/16480/19102 3603/16481/19103 3606/16482/19104\nf 3606/16483/19105 11566/16484/19106 11612/16485/19107\nf 3604/16486/19108 3598/16487/19109 12048/16488/19110\nf 12048/16489/19111 3609/16490/19112 3604/16491/19113\nf 11566/16492/19114 3606/16493/19115 3610/16494/19116\nf 3610/16495/19117 11568/16496/19118 11566/16497/19119\nf 11568/16498/19120 3610/16499/19121 3612/16500/19122\nf 3612/16501/19123 3601/16502/19124 11568/16503/19125\nf 3609/16504/19126 12048/16505/19127 3525/2002/19128\nf 3525/2002/19129 3534/731/19130 3609/16506/19131\nf 3613/16507/19132 3552/16508/19133 3601/16509/19134\nf 3601/16510/19135 3612/16511/19136 3613/16512/19137\nf 11647/16513/19138 3616/16514/19139 11649/16515/19140\nf 3614/16516/19141 11650/16517/19142 3563/16518/19143\nf 11650/16519/19144 12741/16520/19145 3563/16521/19146\nf 3618/16522/19147 12774/16523/19148 3562/16524/19149\nf 3562/16525/19150 3620/16526/19151 3618/16527/19152\nf 3620/16528/19153 3562/16529/19154 3617/16530/19155\nf 3617/16531/19156 3621/16532/19157 3620/16533/19158\nf 3622/5845/19159 10470/2573/19160 10477/3143/19161\nf 10477/3143/19162 3625/3080/19163 3622/5845/19164\nf 10471/4622/19165 10470/2573/19166 3622/5845/19167\nf 3622/5845/19168 3627/4414/19169 10471/4622/19170\nf 10471/4622/19171 3627/4414/19172 3628/919/19173\nf 3628/919/19174 10652/178/19175 10471/4622/19176\nf 10653/1122/19177 10652/178/19178 3628/919/19179\nf 3628/919/19180 3629/4211/19181 10653/1122/19182\nf 10653/1122/19183 3629/4211/19184 3630/6054/19185\nf 3630/6054/19186 10440/3060/19187 10653/1122/19188\nf 10430/5501/19189 10440/3060/19190 3630/6054/19191\nf 3630/6054/19192 3633/5209/19193 10430/5501/19194\nf 10430/5501/19195 3633/5209/19196 3634/3293/19197\nf 3634/3293/19198 10431/179/19199 10430/5501/19200\nf 13064/6497/19201 10431/179/19202 3634/3293/19203\nf 3634/3293/19204 3636/2159/19205 13064/6497/19206\nf 13064/6497/19207 3636/2159/19208 3637/5296/19209\nf 3637/5296/19210 13178/5795/19211 13064/6497/19212\nf 3684/2473/19213 13178/5795/19214 3637/5296/19215\nf 3637/5296/19216 3639/5759/19217 3684/2473/19218\nf 3684/2473/19219 3639/5759/19220 3640/920/19221\nf 3640/920/19222 9998/6027/19223 3684/2473/19224\nf 3640/5208/19225 3641/2764/19226 3678/4433/19227\nf 3678/4433/19228 9998/5765/19229 3640/5208/19230\nf 3678/4433/19231 3641/2764/19232 3642/2062/19233\nf 3642/2062/19234 10242/2207/19235 3678/4433/19236\nf 10243/3746/19237 10242/2207/19238 3642/2062/19239\nf 3642/2062/19240 3645/2872/19241 10243/3746/19242\nf 10243/3746/19243 3645/2872/19244 3646/852/19245\nf 3646/852/19246 12880/6022/19247 10243/3746/19248\nf 12880/6022/19249 3646/852/19250 3625/3080/19251\nf 3625/3080/19252 10477/3143/19253 12880/6022/19254\nf 3674/4324/19255 10302/5602/19256 3647/4746/19257\nf 3647/4746/19258 3649/1314/19259 3674/4324/19260\nf 10350/119/19261 3674/4324/19262 3649/1314/19263\nf 3649/1314/19264 3651/84/19265 10350/119/19266\nf 10351/5441/19267 10350/119/19268 3651/84/19269\nf 3651/84/19270 3653/240/19271 10351/5441/19272\nf 9986/6380/19273 10351/5441/19274 3653/240/19275\nf 3653/240/19276 3654/509/19277 9986/6380/19278\nf 3677/4633/19279 9986/6380/19280 3654/509/19281\nf 3654/509/19282 3655/2368/19283 3677/4633/19284\nf 12855/3122/19285 3677/4633/19286 3655/2368/19287\nf 3655/2368/19288 3657/1502/19289 12855/3122/19290\nf 3685/6372/19291 12855/3122/19292 3657/1502/19293\nf 3657/1502/19294 3673/5427/19295 3685/6372/19296\nf 3658/4782/19297 3647/4746/19298 10302/5602/19299\nf 10302/5602/19300 10303/6094/19301 3658/4782/19302\nf 3660/6237/19303 3658/4782/19304 10303/6094/19305\nf 10303/6094/19306 10405/5468/19307 3660/6237/19308\nf 3662/6457/19309 3660/6237/19310 10405/5468/19311\nf 10405/5468/19312 10447/2647/19313 3662/6457/19314\nf 3664/3104/19315 3662/6457/19316 10447/2647/19317\nf 10447/2647/19318 12926/6473/19319 3664/3104/19320\nf 3665/6343/19321 3664/3104/19322 12926/6473/19323\nf 12926/6473/19324 10157/3265/19325 3665/6343/19326\nf 3667/4876/19327 3665/6343/19328 10157/3265/19329\nf 10157/3265/19330 10080/4894/19331 3667/4876/19332\nf 3669/4976/19333 3667/4876/19334 10080/4894/19335\nf 10080/4894/19336 10066/4661/19337 3669/4976/19338\nf 3671/534/19339 3669/4976/19340 10066/4661/19341\nf 10066/4661/19342 10067/2632/19343 3671/534/19344\nf 3673/5921/19345 3671/534/19346 10067/2632/19347\nf 10067/2632/19348 3685/3073/19349 3673/5921/19350\nf 3626/3191/19351 3648/16534/19352 12933/16535/19353\nf 12933/16536/19354 3624/431/19355 3626/3191/19356\nf 3623/1863/19357 3624/431/19358 12933/16537/19359\nf 12933/16538/19360 3650/16539/19361 3623/1863/19362\nf 3623/1863/19363 3650/16540/19364 3652/16541/19365\nf 3652/16542/19366 3675/4933/19367 3623/1863/19368\nf 3644/4882/19369 3675/4933/19370 3652/16543/19371\nf 3652/16544/19372 3676/16545/19373 3644/4882/19374\nf 3644/4882/19375 3676/16546/19376 9987/16547/19377\nf 9987/16548/19378 3643/685/19379 3644/4882/19380\nf 9997/167/19381 3643/685/19382 9987/16549/19383\nf 9987/16550/19384 3656/16551/19385 9997/167/19386\nf 9997/167/19387 3656/16552/19388 12856/16553/19389\nf 12856/16554/19390 3679/6441/19391 9997/167/19392\nf 3648/16555/19393 3626/3191/19394 3680/6346/19395\nf 3680/6346/19396 3659/16556/19397 3648/16557/19398\nf 3659/16558/19399 3680/6346/19400 3681/1048/19401\nf 3681/1048/19402 3661/16559/19403 3659/16560/19404\nf 3663/16561/19405 3661/16562/19406 3681/1048/19407\nf 3681/1048/19408 3631/6531/19409 3663/16563/19410\nf 3663/16564/19411 3631/6531/19412 3632/3454/19413\nf 3632/3454/19414 3682/16565/19415 3663/16566/19416\nf 3666/16567/19417 3682/16568/19418 3632/3454/19419\nf 3632/3454/19420 3635/3708/19421 3666/16569/19422\nf 3666/16570/19423 3635/3708/19424 3683/1604/19425\nf 3683/1604/19426 3668/16571/19427 3666/16572/19428\nf 3670/16573/19429 3668/16574/19430 3683/1604/19431\nf 3683/1604/19432 3638/799/19433 3670/16575/19434\nf 3670/16576/19435 3638/799/19436 13194/2124/19437\nf 13194/2124/19438 3672/16577/19439 3670/16578/19440\nf 12856/16579/19441 3672/16580/19442 13194/2124/19443\nf 13194/2124/19444 3679/6216/19445 12856/16581/19446\nf 3686/1623/19447 10822/6368/19448 10821/5669/19449\nf 10821/5669/19450 3689/1917/19451 3686/1623/19452\nf 11074/4806/19453 10822/6368/19454 3686/1623/19455\nf 3686/1623/19456 3691/4113/19457 11074/4806/19458\nf 11074/4806/19459 3691/4113/19460 3692/6461/19461\nf 3692/6461/19462 3745/4500/19463 11074/4806/19464\nf 13222/2692/19465 3745/4500/19466 3692/6461/19467\nf 3692/6461/19468 3694/521/19469 13222/2692/19470\nf 13222/2692/19471 3694/521/19472 3695/2405/19473\nf 3695/2405/19474 3744/1280/19475 13222/2692/19476\nf 3743/3860/19477 3744/1280/19478 3695/2405/19479\nf 3695/2405/19480 3696/3668/19481 3743/3860/19482\nf 3743/3860/19483 3696/3668/19484 3697/5554/19485\nf 3697/5554/19486 10899/2238/19487 3743/3860/19488\nf 10900/6540/19489 10899/2238/19490 3697/5554/19491\nf 3697/5554/19492 3700/6420/19493 10900/6540/19494\nf 10900/6540/19495 3700/6420/19496 3701/2239/19497\nf 3701/2239/19498 3741/3149/19499 10900/6540/19500\nf 13278/1890/19501 3741/3149/19502 3701/2239/19503\nf 3701/2239/19504 3703/4799/19505 13278/1890/19506\nf 13278/1890/19507 3703/4799/19508 3704/3630/19509\nf 3704/3630/19510 12527/1663/19511 13278/1890/19512\nf 9390/911/19513 12527/3763/19514 3704/6197/19515\nf 3704/6197/19516 3705/2848/19517 9390/911/19518\nf 9390/911/19519 3705/2848/19520 3706/2377/19521\nf 3706/2377/19522 9354/3916/19523 9390/911/19524\nf 9353/4345/19525 9354/3916/19526 3706/2377/19527\nf 3706/2377/19528 3707/2540/19529 9353/4345/19530\nf 9353/4345/19531 3707/2540/19532 3708/633/19533\nf 3708/633/19534 11383/2690/19535 9353/4345/19536\nf 11383/2690/19537 3708/633/19538 3689/1917/19539\nf 3689/1917/19540 10821/5669/19541 11383/2690/19542\nf 11272/6060/19543 11273/6072/19544 3710/1000/19545\nf 3710/1000/19546 3712/1264/19547 11272/6060/19548\nf 11292/4254/19549 11272/6060/19550 3712/1264/19551\nf 3712/1264/19552 3714/3221/19553 11292/4254/19554\nf 11290/2675/19555 11292/4254/19556 3714/3221/19557\nf 3714/3221/19558 3716/1440/19559 11290/2675/19560\nf 11206/876/19561 11290/2675/19562 3716/1440/19563\nf 3716/1440/19564 3718/5274/19565 11206/876/19566\nf 11191/1005/19567 11206/876/19568 3718/5274/19569\nf 3718/5274/19570 3720/3317/19571 11191/1005/19572\nf 11179/5925/19573 11191/1005/19574 3720/3317/19575\nf 3720/3317/19576 3722/4524/19577 11179/5925/19578\nf 11180/2362/19579 11179/5925/19580 3722/4524/19581\nf 3722/4524/19582 3740/4890/19583 11180/2362/19584\nf 3724/4758/19585 3710/1000/19586 11273/6072/19587\nf 11273/6072/19588 11185/2346/19589 3724/4758/19590\nf 3726/3164/19591 3724/4758/19592 11185/2346/19593\nf 11185/2346/19594 11186/2697/19595 3726/3164/19596\nf 3728/846/19597 3726/3164/19598 11186/2697/19599\nf 11186/2697/19600 11209/3227/19601 3728/846/19602\nf 3730/3338/19603 3728/846/19604 11209/3227/19605\nf 11209/3227/19606 3731/5824/19607 3730/3338/19608\nf 3732/1037/19609 3730/3338/19610 3731/5824/19611\nf 3731/5824/19612 3733/5145/19613 3732/1037/19614\nf 3734/6043/19615 3732/1037/19616 3733/5145/19617\nf 3733/5145/19618 11302/5753/19619 3734/6043/19620\nf 3736/5980/19621 3734/6043/19622 11302/5753/19623\nf 11302/5753/19624 3737/141/19625 3736/5980/19626\nf 3738/5643/19627 3736/5980/19628 3737/141/19629\nf 3737/141/19630 11284/4718/19631 3738/5643/19632\nf 3740/552/19633 3738/5643/19634 11284/4718/19635\nf 11284/4718/19636 11180/4657/19637 3740/552/19638\nf 3702/3840/19639 3739/16582/19640 11283/16583/19641\nf 3723/16584/19642 3739/16585/19643 3702/3840/19644\nf 11283/16586/19645 13196/1317/19646 3702/3840/19647\nf 3699/2031/19648 3735/16587/19649 11329/16588/19650\nf 11283/16589/19651 3735/16590/19652 3699/2031/19653\nf 3699/2031/19654 13196/1317/19655 11283/16591/19656\nf 11329/16592/19657 3698/4486/19658 3699/2031/19659\nf 3702/3840/19660 3742/3777/19661 3723/16593/19662\nf 11329/16594/19663 11210/16595/19664 11438/6416/19665\nf 11438/6416/19666 3698/4486/19667 11329/16596/19668\nf 11438/6416/19669 11210/16597/19670 3729/16598/19671\nf 3729/16599/19672 11439/753/19673 11438/6416/19674\nf 3693/394/19675 11439/753/19676 3729/16600/19677\nf 3729/16601/19678 3727/16602/19679 3693/394/19680\nf 3693/394/19681 3727/16603/19682 3725/16604/19683\nf 3725/16605/19684 13221/4819/19685 3693/394/19686\nf 13221/4819/19687 3725/16606/19688 3711/16607/19689\nf 3711/16608/19690 3690/1585/19691 13221/4819/19692\nf 3690/1585/19693 3711/16609/19694 3709/16610/19695\nf 3709/16611/19696 3688/6073/19697 3690/1585/19698\nf 3687/3501/19699 3688/6073/19700 3709/16612/19701\nf 3709/16613/19702 3713/16614/19703 3687/3501/19704\nf 3687/3501/19705 3713/16615/19706 3715/16616/19707\nf 3715/16617/19708 3746/1986/19709 3687/3501/19710\nf 3747/1537/19711 3746/1986/19712 3715/16618/19713\nf 3715/16619/19714 3717/16620/19715 3747/1537/19716\nf 3747/1537/19717 3717/16621/19718 3719/16622/19719\nf 3719/16623/19720 3748/5422/19721 3747/1537/19722\nf 3749/3499/19723 3748/5422/19724 3719/16624/19725\nf 3719/16625/19726 3721/16626/19727 3749/3499/19728\nf 3749/3499/19729 3721/16627/19730 3723/16628/19731\nf 3723/16629/19732 3742/3930/19733 3749/3499/19734\nf 11891/5384/19735 3751/6206/19736 3750/2934/19737\nf 3750/2934/19738 12568/3881/19739 11891/5384/19740\nf 3753/4208/19741 3751/6206/19742 11891/5384/19743\nf 11891/5384/19744 11726/3012/19745 3753/4208/19746\nf 3753/4208/19747 11726/3012/19748 10453/830/19749\nf 10453/830/19750 3754/5840/19751 3753/4208/19752\nf 3755/3917/19753 3754/5840/19754 10453/830/19755\nf 10453/830/19756 10373/6458/19757 3755/3917/19758\nf 3755/3917/19759 10373/6458/19760 10372/908/19761\nf 10372/908/19762 3756/2023/19763 3755/3917/19764\nf 3757/1205/19765 3756/2023/19766 10372/908/19767\nf 10372/908/19768 3916/3592/19769 3757/1205/19770\nf 3757/1205/19771 3916/3592/19772 3914/1918/19773\nf 3914/1918/19774 3758/5972/19775 3757/1205/19776\nf 3759/4697/19777 3758/5972/19778 3914/1918/19779\nf 3914/1918/19780 9362/3438/19781 3759/4697/19782\nf 3759/4697/19783 9362/3438/19784 9363/675/19785\nf 9363/675/19786 3762/5134/19787 3759/4697/19788\nf 9363/3152/19789 10356/5668/19790 3763/1527/19791\nf 3763/1527/19792 3762/3155/19793 9363/3152/19794\nf 3763/1527/19795 10356/5668/19796 10355/6426/19797\nf 10355/6426/19798 3764/6418/19799 3763/1527/19800\nf 3765/3382/19801 3764/6418/19802 10355/6426/19803\nf 10355/6426/19804 9055/3156/19805 3765/3382/19806\nf 3765/3382/19807 9055/3156/19808 9056/3669/19809\nf 9056/3669/19810 3768/4529/19811 3765/3382/19812\nf 3769/5522/19813 3768/4529/19814 9056/3669/19815\nf 9056/3669/19816 10421/868/19817 3769/5522/19818\nf 3769/5522/19819 10421/868/19820 10420/6204/19821\nf 10420/6204/19822 3770/5386/19823 3769/5522/19824\nf 3770/5386/19825 10420/6204/19826 12568/3881/19827\nf 12568/3881/19828 3750/2934/19829 3770/5386/19830\nf 10445/2887/19831 10446/4567/19832 3771/1359/19833\nf 3771/1359/19834 3772/3867/19835 10445/2887/19836\nf 12849/4489/19837 10445/2887/19838 3772/3867/19839\nf 3772/3867/19840 3774/2955/19841 12849/4489/19842\nf 3925/5853/19843 12849/4489/19844 3774/2955/19845\nf 3774/2955/19846 3775/2546/19847 3925/5853/19848\nf 12878/320/19849 3925/5853/19850 3775/2546/19851\nf 3775/2546/19852 3777/1261/19853 12878/320/19854\nf 3928/6095/19855 12878/320/19856 3777/1261/19857\nf 3777/1261/19858 3778/6246/19859 3928/6095/19860\nf 12952/2699/19861 3928/6095/19862 3778/6246/19863\nf 3778/6246/19864 3780/894/19865 12952/2699/19866\nf 3930/2981/19867 12952/2699/19868 3780/894/19869\nf 3780/894/19870 3781/6157/19871 3930/2981/19872\nf 3933/5946/19873 3930/2981/19874 3781/6157/19875\nf 3781/6157/19876 3782/732/19877 3933/5946/19878\nf 12920/1755/19879 3933/5946/19880 3782/732/19881\nf 3782/732/19882 3784/5926/19883 12920/1755/19884\nf 10534/642/19885 12920/1755/19886 3784/5926/19887\nf 3784/5926/19888 3785/3255/19889 10534/642/19890\nf 10535/6014/19891 10534/642/19892 3785/3255/19893\nf 3785/3255/19894 3786/3875/19895 10535/6014/19896\nf 3938/5391/19897 10535/6014/19898 3786/3875/19899\nf 3786/3875/19900 3787/5927/19901 3938/5391/19902\nf 3939/254/19903 3938/5391/19904 3787/5927/19905\nf 3787/5927/19906 3788/4377/19907 3939/254/19908\nf 10654/1367/19909 3939/254/19910 3788/4377/19911\nf 3788/4377/19912 3789/5944/19913 10654/1367/19914\nf 12235/3736/19915 10654/1367/19916 3789/5944/19917\nf 3789/5944/19918 3791/2576/19919 12235/3736/19920\nf 10446/4567/19921 12235/3736/19922 3791/2576/19923\nf 3791/2576/19924 3771/1359/19925 10446/4567/19926\nf 12240/4390/19927 8980/142/19928 8982/984/19929\nf 8982/984/19930 3921/4642/19931 12240/4390/19932\nf 8981/4492/19933 8980/142/19934 12240/4390/19935\nf 12240/4390/19936 10403/6486/19937 8981/4492/19938\nf 8981/4492/19939 10403/6486/19940 10404/2748/19941\nf 10404/2748/19942 9659/2662/19943 8981/4492/19944\nf 3849/3241/19945 9659/2662/19946 10404/2748/19947\nf 10404/2748/19948 3927/3808/19949 3849/3241/19950\nf 3849/3241/19951 3927/3808/19952 13219/1206/19953\nf 13219/1206/19954 12296/5232/19955 3849/3241/19956\nf 3851/5233/19957 12296/5232/19958 13219/1206/19959\nf 13219/1206/19960 3929/5191/19961 3851/5233/19962\nf 3851/5233/19963 3929/5191/19964 11002/4270/19965\nf 11002/4270/19966 12117/1103/19967 3851/5233/19968\nf 12147/473/19969 12117/1103/19970 11002/4270/19971\nf 11002/4270/19972 3932/2369/19973 12147/473/19974\nf 12147/473/19975 3932/2369/19976 10957/401/19977\nf 10957/401/19978 3854/5571/19979 12147/473/19980\nf 10957/4355/19981 11961/173/19982 10154/6167/19983\nf 10154/6167/19984 3854/635/19985 10957/4355/19986\nf 10154/6167/19987 11961/173/19988 11962/4522/19989\nf 11962/4522/19990 3857/3564/19991 10154/6167/19992\nf 12630/5338/19993 3857/3564/19994 11962/4522/19995\nf 11962/4522/19996 3937/4885/19997 12630/5338/19998\nf 12630/5338/19999 3937/4885/20000 11992/4617/20001\nf 11992/4617/20002 3859/132/20003 12630/5338/20004\nf 12020/5577/20005 3859/132/20006 11992/4617/20007\nf 11992/4617/20008 11993/787/20009 12020/5577/20010\nf 12020/5577/20011 11993/787/20012 3941/2145/20013\nf 3941/2145/20014 9235/5146/20015 12020/5577/20016\nf 9235/5146/20017 3941/2145/20018 3921/4642/20019\nf 3921/4642/20020 8982/984/20021 9235/5146/20022\nf 8800/474/20023 9671/2519/20024 9677/1968/20025\nf 9677/1968/20026 12081/4008/20027 8800/474/20028\nf 9672/2790/20029 9671/2519/20030 8800/474/20031\nf 8800/474/20032 8742/5967/20033 9672/2790/20034\nf 9672/2790/20035 8742/5967/20036 8743/3356/20037\nf 8743/3356/20038 8907/1818/20039 9672/2790/20040\nf 8908/1227/20041 8907/1818/20042 8743/3356/20043\nf 8743/3356/20044 3848/1474/20045 8908/1227/20046\nf 8908/1227/20047 3848/1474/20048 12258/6491/20049\nf 12258/6491/20050 8914/1413/20051 8908/1227/20052\nf 3880/5654/20053 8914/1413/20054 12258/6491/20055\nf 12258/6491/20056 3850/1182/20057 3880/5654/20058\nf 3880/5654/20059 3850/1182/20060 3852/3747/20061\nf 3852/3747/20062 12186/3764/20063 3880/5654/20064\nf 10825/2821/20065 12186/3764/20066 3852/3747/20067\nf 3852/3747/20068 12202/2953/20069 10825/2821/20070\nf 10825/2821/20071 12202/2953/20072 3856/4251/20073\nf 3856/4251/20074 10826/4470/20075 10825/2821/20076\nf 3856/1606/20077 11734/1593/20078 3874/5339/20079\nf 3874/5339/20080 10826/4815/20081 3856/1606/20082\nf 3874/5339/20083 11734/1593/20084 11735/788/20085\nf 11735/788/20086 12216/1348/20087 3874/5339/20088\nf 3871/6549/20089 12216/1348/20090 11735/788/20091\nf 11735/788/20092 3858/5500/20093 3871/6549/20094\nf 3871/6549/20095 3858/5500/20096 12736/2775/20097\nf 12736/2775/20098 9736/4262/20099 3871/6549/20100\nf 9735/6484/20101 9736/4262/20102 12736/2775/20103\nf 12736/2775/20104 3860/4278/20105 9735/6484/20106\nf 9735/6484/20107 3860/4278/20108 12324/3319/20109\nf 12324/3319/20110 3866/238/20111 9735/6484/20112\nf 3866/238/20113 12324/3319/20114 12081/4008/20115\nf 12081/4008/20116 9677/1968/20117 3866/238/20118\nf 9679/3685/20119 3884/3451/20120 3882/2564/20121\nf 3882/2564/20122 12150/2566/20123 9679/3685/20124\nf 3886/4209/20125 3884/3451/20126 9679/3685/20127\nf 9679/3685/20128 3861/1023/20129 3886/4209/20130\nf 3886/4209/20131 3861/1023/20132 11635/6227/20133\nf 11635/6227/20134 13180/5572/20135 3886/4209/20136\nf 3887/613/20137 13180/5572/20138 11635/6227/20139\nf 11635/6227/20140 11621/2730/20141 3887/613/20142\nf 3887/613/20143 11621/2730/20144 11622/4771/20145\nf 11622/4771/20146 11765/4555/20147 3887/613/20148\nf 11580/737/20149 11765/4555/20150 11622/4771/20151\nf 11622/4771/20152 11111/1828/20153 11580/737/20154\nf 11580/737/20155 11111/1828/20156 10786/6532/20157\nf 10786/6532/20158 11581/5804/20159 11580/737/20160\nf 3892/6341/20161 11581/5804/20162 10786/6532/20163\nf 10786/6532/20164 10785/2269/20165 3892/6341/20166\nf 3892/6341/20167 10785/2269/20168 3828/4249/20169\nf 3828/4249/20170 3893/5004/20171 3892/6341/20172\nf 3828/3102/20173 10839/3443/20174 3895/2222/20175\nf 3895/2222/20176 3893/3663/20177 3828/3102/20178\nf 3895/2222/20179 10839/3443/20180 10838/2710/20181\nf 10838/2710/20182 11517/6198/20183 3895/2222/20184\nf 9153/812/20185 11517/6198/20186 10838/2710/20187\nf 10838/2710/20188 9743/5847/20189 9153/812/20190\nf 9153/812/20191 9743/5847/20192 9742/184/20193\nf 9742/184/20194 9154/2778/20195 9153/812/20196\nf 11776/1397/20197 9154/2778/20198 9742/184/20199\nf 9742/184/20200 12446/912/20201 11776/1397/20202\nf 11776/1397/20203 12446/912/20204 3867/4730/20205\nf 3867/4730/20206 11405/1823/20207 11776/1397/20208\nf 11405/1823/20209 3867/4730/20210 12150/2566/20211\nf 12150/2566/20212 3882/2564/20213 11405/1823/20214\nf 12469/5060/20215 12381/4934/20216 10725/6379/20217\nf 10725/6379/20218 3903/2759/20219 12469/5060/20220\nf 9415/601/20221 3903/2759/20222 10725/6379/20223\nf 10725/6379/20224 10726/6220/20225 9415/601/20226\nf 9415/601/20227 10726/6220/20228 9381/5544/20229\nf 9381/5544/20230 9364/5954/20231 9415/601/20232\nf 9365/2130/20233 9364/5954/20234 9381/5544/20235\nf 9381/5544/20236 9382/5604/20237 9365/2130/20238\nf 9365/2130/20239 9382/5604/20240 10637/577/20241\nf 10637/577/20242 10311/6040/20243 9365/2130/20244\nf 10283/3525/20245 10311/6040/20246 10637/577/20247\nf 10637/577/20248 10627/3503/20249 10283/3525/20250\nf 10283/3525/20251 10627/3503/20252 10628/6312/20253\nf 10628/6312/20254 10282/3263/20255 10283/3525/20256\nf 10677/6515/20257 10282/3263/20258 10628/6312/20259\nf 10628/6312/20260 3891/1378/20261 10677/6515/20262\nf 10677/6515/20263 3891/1378/20264 10538/1291/20265\nf 10538/1291/20266 12528/6530/20267 10677/6515/20268\nf 10538/5263/20269 3894/5000/20270 12708/4579/20271\nf 12708/4579/20272 12528/2925/20273 10538/5263/20274\nf 12708/4579/20275 3894/5000/20276 3897/5898/20277\nf 3897/5898/20278 3909/6242/20279 12708/4579/20280\nf 10489/899/20281 3909/6242/20282 3897/5898/20283\nf 3897/5898/20284 11750/4808/20285 10489/899/20286\nf 10489/899/20287 11750/4808/20288 9787/5896/20289\nf 9787/5896/20290 9833/733/20291 10489/899/20292\nf 9834/5773/20293 9833/733/20294 9787/5896/20295\nf 9787/5896/20296 9788/4907/20297 9834/5773/20298\nf 9834/5773/20299 9788/4907/20300 3900/3129/20301\nf 3900/3129/20302 3905/5121/20303 9834/5773/20304\nf 3905/5121/20305 3900/3129/20306 12381/4934/20307\nf 12381/4934/20308 12469/5060/20309 3905/5121/20310\nf 3793/1820/20311 3794/3758/20312 3806/16630/20313\nf 3806/16631/20314 3846/16632/20315 3793/1820/20316\nf 3807/16633/20317 3806/16634/20318 3794/3758/20319\nf 3794/3758/20320 3795/4325/20321 3807/16635/20322\nf 3808/16636/20323 3807/16637/20324 3795/4325/20325\nf 3795/4325/20326 3847/4241/20327 3808/16638/20328\nf 12257/16639/20329 3808/16640/20330 3847/4241/20331\nf 3847/4241/20332 9660/2866/20333 12257/16641/20334\nf 3811/16642/20335 12257/16643/20336 9660/2866/20337\nf 9660/2866/20338 3797/4228/20339 3811/16644/20340\nf 9580/16645/20341 3811/16646/20342 3797/4228/20343\nf 3797/4228/20344 12116/180/20345 9580/16647/20346\nf 9581/16648/20347 9580/16649/20348 12116/180/20349\nf 12116/180/20350 3798/2378/20351 9581/16650/20352\nf 3814/16651/20353 9581/16652/20354 3798/2378/20355\nf 3798/2378/20356 3853/2259/20357 3814/16653/20358\nf 12203/16654/20359 3814/16655/20360 3853/2259/20361\nf 3853/2259/20362 10211/522/20363 12203/16656/20364\nf 10211/2814/20365 3855/3032/20366 3815/16657/20367\nf 3815/16658/20368 12203/16659/20369 10211/2814/20370\nf 3816/16660/20371 3815/16661/20372 3855/3032/20373\nf 3855/3032/20374 10155/1295/20375 3816/16662/20376\nf 12735/16663/20377 3816/16664/20378 10155/1295/20379\nf 10155/1295/20380 3801/5404/20381 12735/16665/20382\nf 3818/16666/20383 12735/16667/20384 3801/5404/20385\nf 3801/5404/20386 12614/1997/20387 3818/16668/20388\nf 12762/16669/20389 3818/16670/20390 12614/1997/20391\nf 12614/1997/20392 3803/5562/20393 12762/16671/20394\nf 3819/16672/20395 12762/16673/20396 3803/5562/20397\nf 3803/5562/20398 3805/27/20399 3819/16674/20400\nf 3846/16675/20401 3819/16676/20402 3805/27/20403\nf 3805/27/20404 3793/1820/20405 3846/16677/20406\nf 9678/4449/20407 3863/955/20408 3862/16678/20409\nf 3862/16679/20410 3864/16680/20411 9678/4449/20412\nf 3865/16681/20413 3862/16682/20414 3863/955/20415\nf 3863/955/20416 3820/3019/20417 3865/16683/20418\nf 9832/16684/20419 3865/16685/20420 3820/3019/20421\nf 3820/3019/20422 12151/1816/20423 9832/16686/20424\nf 3868/16687/20425 9832/16688/20426 12151/1816/20427\nf 12151/1816/20428 3832/4336/20429 3868/16689/20430\nf 3869/16690/20431 3868/16691/20432 3832/4336/20433\nf 3832/4336/20434 3870/2686/20435 3869/16692/20436\nf 9757/16693/20437 3869/16694/20438 3870/2686/20439\nf 3870/2686/20440 3872/1228/20441 9757/16695/20442\nf 3817/16696/20443 9757/16697/20444 3872/1228/20445\nf 3872/1228/20446 3873/1172/20447 3817/16698/20448\nf 12213/16699/20449 3817/16700/20450 3873/1172/20451\nf 3873/1172/20452 3875/6475/20453 12213/16701/20454\nf 3878/16702/20455 12213/16703/20456 3875/6475/20457\nf 3875/6475/20458 13183/5502/20459 3878/16704/20460\nf 13183/4559/20461 3877/4839/20462 3876/16705/20463\nf 3876/16706/20464 3878/16707/20465 13183/4559/20466\nf 3813/16708/20467 3876/16709/20468 3877/4839/20469\nf 3877/4839/20470 3879/388/20471 3813/16710/20472\nf 12219/16711/20473 3813/16712/20474 3879/388/20475\nf 3879/388/20476 3881/3207/20477 12219/16713/20478\nf 3812/16714/20479 12219/16715/20480 3881/3207/20481\nf 3881/3207/20482 3824/3713/20483 3812/16716/20484\nf 3810/16717/20485 3812/16718/20486 3824/3713/20487\nf 3824/3713/20488 3823/2223/20489 3810/16719/20490\nf 3809/16720/20491 3810/16721/20492 3823/2223/20493\nf 3823/2223/20494 3821/1661/20495 3809/16722/20496\nf 3864/16723/20497 3809/16724/20498 3821/1661/20499\nf 3821/1661/20500 9678/4449/20501 3864/16725/20502\nf 10768/3706/20503 10769/877/20504 3883/16726/20505\nf 3883/16727/20506 3834/16728/20507 10768/3706/20508\nf 3885/16729/20509 3883/16730/20510 10769/877/20511\nf 10769/877/20512 10901/4902/20513 3885/16731/20514\nf 3836/16732/20515 3885/16733/20516 10901/4902/20517\nf 10901/4902/20518 3822/3515/20519 3836/16734/20520\nf 3839/16735/20521 3836/16736/20522 3822/3515/20523\nf 3822/3515/20524 13181/6001/20525 3839/16737/20526\nf 3888/16738/20527 3839/16739/20528 13181/6001/20529\nf 13181/6001/20530 3825/4818/20531 3888/16740/20532\nf 3889/16741/20533 3888/16742/20534 3825/4818/20535\nf 3825/4818/20536 3826/2410/20537 3889/16743/20538\nf 3890/16744/20539 3889/16745/20540 3826/2410/20541\nf 3826/2410/20542 3827/1437/20543 3890/16746/20544\nf 10678/16747/20545 3890/16748/20546 3827/1437/20547\nf 3827/1437/20548 13129/1645/20549 10678/16749/20550\nf 3896/16750/20551 10678/16751/20552 13129/1645/20553\nf 13129/1645/20554 10583/2214/20555 3896/16752/20556\nf 10583/1010/20557 10584/3172/20558 10537/16753/20559\nf 10537/16754/20560 3896/16755/20561 10583/1010/20562\nf 10552/16756/20563 10537/16757/20564 10584/3172/20565\nf 10584/3172/20566 3829/3822/20567 10552/16758/20568\nf 3898/16759/20569 10552/16760/20570 3829/3822/20571\nf 3829/3822/20572 3830/4297/20573 3898/16761/20574\nf 3842/16762/20575 3898/16763/20576 3830/4297/20577\nf 3830/4297/20578 3831/698/20579 3842/16764/20580\nf 3845/16765/20581 3842/16766/20582 3831/698/20583\nf 3831/698/20584 3899/921/20585 3845/16767/20586\nf 12382/16768/20587 3845/16769/20588 3899/921/20589\nf 3899/921/20590 3901/1319/20591 12382/16770/20592\nf 3834/16771/20593 12382/16772/20594 3901/1319/20595\nf 3901/1319/20596 10768/3706/20597 3834/16773/20598\nf 3902/4192/20599 3904/1680/20600 12470/16774/20601\nf 12470/16775/20602 3835/16776/20603 3902/4192/20604\nf 3833/16777/20605 12470/16778/20606 3904/1680/20607\nf 3904/1680/20608 3752/4394/20609 3833/16779/20610\nf 12627/16780/20611 3833/16781/20612 3752/4394/20613\nf 3752/4394/20614 3906/1545/20615 12627/16782/20616\nf 3844/16783/20617 12627/16784/20618 3906/1545/20619\nf 3906/1545/20620 3907/5188/20621 3844/16785/20622\nf 3843/16786/20623 3844/16787/20624 3907/5188/20625\nf 3907/5188/20626 3767/5605/20627 3843/16788/20628\nf 3908/16789/20629 3843/16790/20630 3767/5605/20631\nf 3767/5605/20632 3766/2743/20633 3908/16791/20634\nf 10490/16792/20635 3908/16793/20636 3766/2743/20637\nf 3766/2743/20638 3910/1306/20639 10490/16794/20640\nf 3841/16795/20641 10490/16796/20642 3910/1306/20643\nf 3910/1306/20644 3911/1651/20645 3841/16797/20646\nf 3840/16798/20647 3841/16799/20648 3911/1651/20649\nf 3911/1651/20650 3761/2864/20651 3840/16800/20652\nf 3761/5365/20653 3760/3868/20654 3912/16801/20655\nf 3912/16802/20656 3840/16803/20657 3761/5365/20658\nf 3913/16804/20659 3912/16805/20660 3760/3868/20661\nf 3760/3868/20662 10341/744/20663 3913/16806/20664\nf 3915/16807/20665 3913/16808/20666 10341/744/20667\nf 10341/744/20668 10342/5718/20669 3915/16809/20670\nf 3917/16810/20671 3915/16811/20672 10342/5718/20673\nf 10342/5718/20674 3918/6120/20675 3917/16812/20676\nf 3838/16813/20677 3917/16814/20678 3918/6120/20679\nf 3918/6120/20680 3919/1615/20681 3838/16815/20682\nf 3837/16816/20683 3838/16817/20684 3919/1615/20685\nf 3919/1615/20686 3920/4331/20687 3837/16818/20688\nf 3835/16819/20689 3837/16820/20690 3920/4331/20691\nf 3920/4331/20692 3902/4192/20693 3835/16821/20694\nf 11127/3726/20695 3923/6205/20696 3922/25/20697\nf 3922/25/20698 3792/4017/20699 11127/3726/20700\nf 3924/1283/20701 3792/4017/20702 3922/25/20703\nf 3922/25/20704 3773/5379/20705 3924/1283/20706\nf 3924/1283/20707 3773/5379/20708 12877/4530/20709\nf 12877/4530/20710 3926/2046/20711 3924/1283/20712\nf 11083/2691/20713 3926/2046/20714 12877/4530/20715\nf 12877/4530/20716 3776/278/20717 11083/2691/20718\nf 11083/2691/20719 3776/278/20720 12883/5523/20721\nf 12883/5523/20722 3796/869/20723 11083/2691/20724\nf 11001/4087/20725 3796/869/20726 12883/5523/20727\nf 12883/5523/20728 3779/49/20729 11001/4087/20730\nf 11001/4087/20731 3779/49/20732 11038/6424/20733\nf 11038/6424/20734 3931/3285/20735 11001/4087/20736\nf 10956/4531/20737 3931/3285/20738 11038/6424/20739\nf 11038/6424/20740 11039/2047/20741 10956/4531/20742\nf 10956/4531/20743 11039/2047/20744 3783/3627/20745\nf 3783/3627/20746 3934/3628/20747 10956/4531/20748\nf 3783/103/20749 3935/5573/20750 3799/1332/20751\nf 3799/1332/20752 3934/4111/20753 3783/103/20754\nf 3799/1332/20755 3935/5573/20756 3936/4343/20757\nf 3936/4343/20758 3800/1921/20759 3799/1332/20760\nf 12632/1384/20761 3800/1921/20762 3936/4343/20763\nf 3936/4343/20764 10585/3738/20765 12632/1384/20766\nf 12632/1384/20767 10585/3738/20768 10586/1114/20769\nf 10586/1114/20770 3802/3536/20771 12632/1384/20772\nf 3804/42/20773 3802/3536/20774 10586/1114/20775\nf 10586/1114/20776 3940/5215/20777 3804/42/20778\nf 3804/42/20779 3940/5215/20780 3790/1031/20781\nf 3790/1031/20782 11128/5213/20783 3804/42/20784\nf 11128/5213/20785 3790/1031/20786 3923/6205/20787\nf 3923/6205/20788 11127/3726/20789 11128/5213/20790\nf 3942/1207/20791 12686/2003/20792 4116/186/20793\nf 4116/186/20794 3944/6016/20795 3942/1207/20796\nf 3944/6016/20797 4116/186/20798 12670/2567/20799\nf 12670/2567/20800 3946/3452/20801 3944/6016/20802\nf 3946/3452/20803 12670/2567/20804 10065/1876/20805\nf 10065/1876/20806 3947/2568/20807 3946/3452/20808\nf 3947/2568/20809 10065/1876/20810 9674/2180/20811\nf 9674/2180/20812 3948/4940/20813 3947/2568/20814\nf 3948/4940/20815 9674/2180/20816 9673/4535/20817\nf 9673/4535/20818 3949/3809/20819 3948/4940/20820\nf 3949/3809/20821 9673/4535/20822 4128/1767/20823\nf 4128/1767/20824 3950/1016/20825 3949/3809/20826\nf 3950/1016/20827 4128/1767/20828 9890/3188/20829\nf 9890/3188/20830 3952/5454/20831 3950/1016/20832\nf 3952/5454/20833 9890/3188/20834 9891/4382/20835\nf 9891/4382/20836 3954/4710/20837 3952/5454/20838\nf 3954/4710/20839 9891/4382/20840 4125/6055/20841\nf 4125/6055/20842 3955/6322/20843 3954/4710/20844\nf 9908/249/20845 3957/248/20846 3955/1973/20847\nf 3955/1973/20848 4125/1974/20849 9908/249/20850\nf 3957/248/20851 9908/249/20852 9909/6023/20853\nf 9909/6023/20854 3959/6427/20855 3957/248/20856\nf 3959/6427/20857 9909/6023/20858 4122/3727/20859\nf 4122/3727/20860 3960/6146/20861 3959/6427/20862\nf 3960/6146/20863 4122/3727/20864 4120/1919/20865\nf 4120/1919/20866 3961/3939/20867 3960/6146/20868\nf 3961/3939/20869 4120/1919/20870 9642/6150/20871\nf 9642/6150/20872 3962/406/20873 3961/3939/20874\nf 3962/406/20875 9642/6150/20876 9641/4560/20877\nf 9641/4560/20878 3963/3053/20879 3962/406/20880\nf 3963/3053/20881 9641/4560/20882 12686/2003/20883\nf 12686/2003/20884 3942/1207/20885 3963/3053/20886\nf 3964/580/20887 3965/1408/20888 4004/1730/20889\nf 4004/1730/20890 10816/6483/20891 3964/580/20892\nf 9827/17/20893 4004/1730/20894 3965/1408/20895\nf 3965/1408/20896 3968/3010/20897 9827/17/20898\nf 9828/4306/20899 9827/17/20900 3968/3010/20901\nf 3968/3010/20902 3970/6062/20903 9828/4306/20904\nf 9835/4351/20905 9828/4306/20906 3970/6062/20907\nf 3970/6062/20908 3972/1017/20909 9835/4351/20910\nf 4133/6396/20911 9835/4351/20912 3972/1017/20913\nf 3972/1017/20914 3973/6239/20915 4133/6396/20916\nf 9686/1097/20917 4133/6396/20918 3973/6239/20919\nf 3973/6239/20920 3975/769/20921 9686/1097/20922\nf 9687/1461/20923 9686/1097/20924 3975/769/20925\nf 3975/769/20926 3977/5719/20927 9687/1461/20928\nf 9701/3588/20929 9687/1461/20930 3977/5719/20931\nf 3977/5719/20932 3979/2804/20933 9701/3588/20934\nf 12730/4864/20935 9701/3588/20936 3979/2804/20937\nf 3979/2804/20938 3980/1401/20939 12730/4864/20940\nf 11014/5558/20941 12730/4864/20942 3980/1401/20943\nf 3980/1401/20944 3982/6000/20945 11014/5558/20946\nf 11015/4833/20947 11014/5558/20948 3982/6000/20949\nf 3982/6000/20950 3984/4407/20951 11015/4833/20952\nf 11795/4232/20953 11015/4833/20954 3984/4407/20955\nf 3984/4407/20956 3985/644/20957 11795/4232/20958\nf 11796/4561/20959 11795/4232/20960 3985/644/20961\nf 3985/644/20962 3986/3568/20963 11796/4561/20964\nf 11057/6238/20965 11796/4561/20966 3986/3568/20967\nf 3986/3568/20968 3988/5148/20969 11057/6238/20970\nf 10817/4439/20971 11057/6238/20972 3988/5148/20973\nf 3988/5148/20974 3990/4643/20975 10817/4439/20976\nf 10816/6483/20977 10817/4439/20978 3990/4643/20979\nf 3990/4643/20980 3964/580/20981 10816/6483/20982\nf 11392/3810/20983 11184/2160/20984 11183/3103/20985\nf 11183/3103/20986 4070/817/20987 11392/3810/20988\nf 4070/817/20989 11183/3103/20990 11197/2060/20991\nf 11197/2060/20992 8758/2439/20993 4070/817/20994\nf 8758/2439/20995 11197/2060/20996 11326/4212/20997\nf 11326/4212/20998 8766/2569/20999 8758/2439/21000\nf 8766/2569/21001 11326/4212/21002 3996/3057/21003\nf 3996/3057/21004 12521/2193/21005 8766/2569/21006\nf 12521/2193/21007 3996/3057/21008 3998/3276/21009\nf 3998/3276/21010 9359/4706/21011 12521/2193/21012\nf 9359/4706/21013 3998/3276/21014 11139/1560/21015\nf 11139/1560/21016 9360/755/21017 9359/4706/21018\nf 9360/755/21019 11139/1560/21020 11149/4708/21021\nf 11149/4708/21022 9374/1410/21023 9360/755/21024\nf 9374/1410/21025 11149/4708/21026 11157/1883/21027\nf 11157/1883/21028 9475/530/21029 9374/1410/21030\nf 9475/530/21031 11157/1883/21032 11552/361/21033\nf 11552/361/21034 12550/2435/21035 9475/530/21036\nf 3969/6235/21037 3995/16822/21038 3994/16823/21039\nf 3994/16824/21040 3967/5318/21041 3969/6235/21042\nf 3967/5318/21043 3994/16825/21044 3992/16826/21045\nf 3992/16827/21046 12783/1202/21047 3967/5318/21048\nf 12783/1202/21049 3992/16828/21050 3993/16829/21051\nf 3993/16830/21052 3966/2570/21053 12783/1202/21054\nf 3976/6178/21055 4000/16831/21056 3999/16832/21057\nf 3999/16833/21058 3974/6127/21059 3976/6178/21060\nf 4000/16834/21061 3976/6178/21062 3978/4707/21063\nf 3978/4707/21064 4001/16835/21065 4000/16836/21066\nf 4001/16837/21067 3978/4707/21068 4015/2166/21069\nf 4015/2166/21070 4002/16838/21071 4001/16839/21072\nf 3966/2570/21073 3993/16840/21074 4005/2363/21075\nf 11277/3055/21076 11243/16841/21077 11184/2160/21078\nf 11243/16842/21079 11277/3055/21080 11275/153/21081\nf 11275/153/21082 11244/2163/21083 11243/16843/21084\nf 11244/2163/21085 11275/153/21086 11276/4155/21087\nf 11276/4155/21088 11792/3664/21089 11244/2163/21090\nf 11792/3664/21091 11276/4155/21092 9340/2425/21093\nf 9340/2425/21094 11781/1038/21095 11792/3664/21096\nf 11781/1038/21097 9340/2425/21098 4085/2676/21099\nf 4085/2676/21100 11782/5445/21101 11781/1038/21102\nf 11782/5445/21103 4085/2676/21104 12467/4374/21105\nf 12467/4374/21106 11904/625/21107 11782/5445/21108\nf 11904/625/21109 12467/4374/21110 12550/2360/21111\nf 12550/2360/21112 11552/4605/21113 11904/625/21114\nf 3981/6307/21115 4014/16844/21116 4002/16845/21117\nf 4002/16846/21118 4015/5607/21119 3981/6307/21120\nf 4014/16847/21121 3981/6307/21122 3983/5595/21123\nf 3983/5595/21124 4012/16848/21125 4014/16849/21126\nf 4012/16850/21127 3983/5595/21128 4016/3577/21129\nf 4016/3577/21130 4011/16851/21131 4012/16852/21132\nf 4011/16853/21133 4016/3577/21134 4017/4761/21135\nf 4017/4761/21136 4010/16854/21137 4011/16855/21138\nf 4010/16856/21139 4017/4761/21140 3987/1995/21141\nf 3987/1995/21142 4008/16857/21143 4010/16858/21144\nf 4008/16859/21145 3987/1995/21146 3989/6492/21147\nf 3989/6492/21148 4005/2363/21149 4008/16860/21150\nf 4005/2363/21151 3989/6492/21152 3966/2570/21153\nf 11184/2160/21154 11392/3810/21155 11277/3055/21156\nf 4089/5738/21157 4071/5048/21158 12090/5049/21159\nf 12090/5049/21160 4087/5742/21161 4089/5738/21162\nf 4087/5742/21163 12090/5049/21164 4072/3882/21165\nf 4072/3882/21166 11492/439/21167 4087/5742/21168\nf 11492/439/21169 4072/3882/21170 4074/4237/21171\nf 4074/4237/21172 11493/4213/21173 11492/439/21174\nf 11493/4213/21175 4074/4237/21176 9366/3054/21177\nf 9366/3054/21178 4099/4711/21179 11493/4213/21180\nf 4099/4711/21181 9366/3054/21182 9347/1951/21183\nf 9347/1951/21184 13296/4037/21185 4099/4711/21186\nf 13296/4037/21187 9347/1951/21188 9348/6308/21189\nf 9348/6308/21190 4096/913/21191 13296/4037/21192\nf 4096/913/21193 9348/6308/21194 9095/5848/21195\nf 9095/5848/21196 12408/1829/21197 4096/913/21198\nf 12408/1829/21199 9095/5848/21200 9096/6217/21201\nf 9096/6217/21202 11833/2161/21203 12408/1829/21204\nf 11833/2161/21205 9096/6217/21206 9106/4088/21207\nf 9106/4088/21208 11834/546/21209 11833/2161/21210\nf 9206/4313/21211 12358/1892/21212 11834/1975/21213\nf 11834/1975/21214 9106/3596/21215 9206/4313/21216\nf 12358/1892/21217 9206/4313/21218 4084/4344/21219\nf 4084/4344/21220 12359/1372/21221 12358/1892/21222\nf 12359/1372/21223 4084/4344/21224 9146/4646/21225\nf 9146/4646/21226 9114/100/21227 12359/1372/21228\nf 9114/100/21229 9146/4646/21230 9084/4117/21231\nf 9084/4117/21232 9115/104/21233 9114/100/21234\nf 9115/104/21235 9084/4117/21236 9085/2265/21237\nf 9085/2265/21238 9476/6459/21239 9115/104/21240\nf 9476/6459/21241 9085/2265/21242 9478/3918/21243\nf 9478/3918/21244 4091/4848/21245 9476/6459/21246\nf 4091/4848/21247 9478/3918/21248 4071/5048/21249\nf 4071/5048/21250 4089/5738/21251 4091/4848/21252\nf 12444/1077/21253 9012/670/21254 4088/5136/21255\nf 4088/5136/21256 9169/5761/21257 12444/1077/21258\nf 9169/5761/21259 4088/5136/21260 9185/3444/21261\nf 9185/3444/21262 9170/4035/21263 9169/5761/21264\nf 9170/4035/21265 9185/3444/21266 9186/402/21267\nf 9186/402/21268 9262/756/21269 9170/4035/21270\nf 9262/756/21271 9186/402/21272 9210/5723/21273\nf 9210/5723/21274 9313/3774/21275 9262/756/21276\nf 9313/3774/21277 9210/5723/21278 11804/2626/21279\nf 11804/2626/21280 4105/6154/21281 9313/3774/21282\nf 4105/6154/21283 11804/2626/21284 11803/5061/21285\nf 11803/5061/21286 4106/1272/21287 4105/6154/21288\nf 4106/1272/21289 11803/5061/21290 8910/3710/21291\nf 8910/3710/21292 12196/93/21293 4106/1272/21294\nf 12196/93/21295 8910/3710/21296 8853/1868/21297\nf 8853/1868/21298 11252/4776/21299 12196/93/21300\nf 11252/4776/21301 8853/1868/21302 8854/4720/21303\nf 8854/4720/21304 11253/1540/21305 11252/4776/21306\nf 8851/1173/21307 8899/4038/21308 11253/3056/21309\nf 11253/3056/21310 8854/5621/21311 8851/1173/21312\nf 8899/4038/21313 8851/1173/21314 8852/5837/21315\nf 8852/5837/21316 8900/2652/21317 8899/4038/21318\nf 8900/2652/21319 8852/5837/21320 8701/4673/21321\nf 8701/4673/21322 8695/4584/21323 8900/2652/21324\nf 8695/4584/21325 8701/4673/21326 8702/3407/21327\nf 8702/3407/21328 8696/6260/21329 8695/4584/21330\nf 8696/6260/21331 8702/3407/21332 12056/2100/21333\nf 12056/2100/21334 8810/2042/21335 8696/6260/21336\nf 8810/2042/21337 12056/2100/21338 12057/183/21339\nf 12057/183/21340 12021/185/21341 8810/2042/21342\nf 12021/185/21343 12057/183/21344 9012/670/21345\nf 9012/670/21346 12444/1077/21347 12021/185/21348\nf 4117/3807/21349 10144/1603/21350 12005/409/21351\nf 12005/409/21352 10195/5389/21353 4117/3807/21354\nf 10195/5389/21355 12005/409/21356 11361/1550/21357\nf 11361/1550/21358 10196/4611/21359 10195/5389/21360\nf 10196/4611/21361 11361/1550/21362 11362/2622/21363\nf 11362/2622/21364 10223/2205/21365 10196/4611/21366\nf 10223/2205/21367 11362/2622/21368 11395/1411/21369\nf 11395/1411/21370 4130/5532/21371 10223/2205/21372\nf 4130/5532/21373 11395/1411/21374 11396/5297/21375\nf 11396/5297/21376 12760/5766/21377 4130/5532/21378\nf 12760/5766/21379 11396/5297/21380 13293/4953/21381\nf 13293/4953/21382 4127/5771/21383 12760/5766/21384\nf 4127/5771/21385 13293/4953/21386 4107/6323/21387\nf 4107/6323/21388 12782/5450/21389 4127/5771/21390\nf 12782/5450/21391 4107/6323/21392 12146/910/21393\nf 12146/910/21394 4126/1106/21395 12782/5450/21396\nf 4126/1106/21397 12146/910/21398 11345/1266/21399\nf 11345/1266/21400 9782/992/21401 4126/1106/21402\nf 11325/3509/21403 9781/1208/21404 9782/389/21405\nf 9782/389/21406 11345/1909/21407 11325/3509/21408\nf 9781/1208/21409 11325/3509/21410 11168/5287/21411\nf 11168/5287/21412 12306/6336/21413 9781/1208/21414\nf 12306/6336/21415 11168/5287/21416 11169/4557/21417\nf 11169/4557/21418 4121/6158/21419 12306/6336/21420\nf 4121/6158/21421 11169/4557/21422 11150/620/21423\nf 11150/620/21424 8945/4822/21425 4121/6158/21426\nf 8945/4822/21427 11150/620/21428 11151/5750/21429\nf 11151/5750/21430 8946/1315/21431 8945/4822/21432\nf 8946/1315/21433 11151/5750/21434 10145/5277/21435\nf 10145/5277/21436 8962/1871/21437 8946/1315/21438\nf 8962/1871/21439 10145/5277/21440 10144/1603/21441\nf 10144/1603/21442 4117/3807/21443 8962/1871/21444\nf 3991/5739/21445 8757/5740/21446 4018/16861/21447\nf 4018/16862/21448 12106/16863/21449 3991/5739/21450\nf 8793/16864/21451 4018/16865/21452 8757/5740/21453\nf 8757/5740/21454 4073/918/21455 8793/16866/21456\nf 8794/16867/21457 8793/16868/21458 4073/918/21459\nf 4073/918/21460 4075/1333/21461 8794/16869/21462\nf 4076/16870/21463 8794/16871/21464 4075/1333/21465\nf 4075/1333/21466 3997/3802/21467 4076/16872/21468\nf 4077/16873/21469 4076/16874/21470 3997/3802/21471\nf 3997/3802/21472 4078/5298/21473 4077/16875/21474\nf 4079/16876/21475 4077/16877/21476 4078/5298/21477\nf 4078/5298/21478 4080/5597/21479 4079/16878/21480\nf 4022/16879/21481 4079/16880/21482 4080/5597/21483\nf 4080/5597/21484 4081/3506/21485 4022/16881/21486\nf 4024/16882/21487 4022/16883/21488 4081/3506/21489\nf 4081/3506/21490 4082/5126/21491 4024/16884/21492\nf 4025/16885/21493 4024/16886/21494 4082/5126/21495\nf 4082/5126/21496 4003/2288/21497 4025/16887/21498\nf 4003/5195/21499 4013/5524/21500 4083/16888/21501\nf 4083/16889/21502 4025/16890/21503 4003/5195/21504\nf 9207/16891/21505 4083/16892/21506 4013/5524/21507\nf 4013/5524/21508 9339/6425/21509 9207/16893/21510\nf 4027/16894/21511 9207/16895/21512 9339/6425/21513\nf 9339/6425/21514 4086/5694/21515 4027/16896/21516\nf 4029/16897/21517 4027/16898/21518 4086/5694/21519\nf 4086/5694/21520 4009/5299/21521 4029/16899/21522\nf 4031/16900/21523 4029/16901/21524 4009/5299/21525\nf 4009/5299/21526 4007/3333/21527 4031/16902/21528\nf 4033/16903/21529 4031/16904/21530 4007/3333/21531\nf 4007/3333/21532 4006/2502/21533 4033/16905/21534\nf 12106/16906/21535 4033/16907/21536 4006/2502/21537\nf 4006/2502/21538 3991/5739/21539 12106/16908/21540\nf 4035/4207/21541 9011/5053/21542 9021/16909/21543\nf 9021/16910/21544 4019/16911/21545 4035/4207/21546\nf 9022/16912/21547 9021/16913/21548 9011/5053/21549\nf 9011/5053/21550 4090/5054/21551 9022/16914/21552\nf 11579/16915/21553 9022/16916/21554 4090/5054/21555\nf 4090/5054/21556 4054/3883/21557 11579/16917/21558\nf 4032/16918/21559 11579/16919/21560 4054/3883/21561\nf 4054/3883/21562 4092/4147/21563 4032/16920/21564\nf 4030/16921/21565 4032/16922/21566 4092/4147/21567\nf 4092/4147/21568 4051/4310/21569 4030/16923/21570\nf 4028/16924/21571 4030/16925/21572 4051/4310/21573\nf 4051/4310/21574 4049/5417/21575 4028/16926/21576\nf 4093/16927/21577 4028/16928/21578 4049/5417/21579\nf 4049/5417/21580 4047/6422/21581 4093/16929/21582\nf 4026/16930/21583 4093/16931/21584 4047/6422/21585\nf 4047/6422/21586 4045/5525/21587 4026/16932/21588\nf 4095/16933/21589 4026/16934/21590 4045/5525/21591\nf 4045/5525/21592 4044/3629/21593 4095/16935/21594\nf 4044/2822/21595 4043/5495/21596 4094/16936/21597\nf 4094/16937/21598 4095/16938/21599 4044/2822/21600\nf 4023/16939/21601 4094/16940/21602 4043/5495/21603\nf 4043/5495/21604 4041/3803/21605 4023/16941/21606\nf 12407/16942/21607 4023/16943/21608 4041/3803/21609\nf 4041/3803/21610 4097/3801/21611 12407/16944/21612\nf 4021/16945/21613 12407/16946/21614 4097/3801/21615\nf 4097/3801/21616 4098/964/21617 4021/16947/21618\nf 13294/16948/21619 4021/16949/21620 4098/964/21621\nf 4098/964/21622 4039/6429/21623 13294/16950/21624\nf 4020/16951/21625 13294/16952/21626 4039/6429/21627\nf 4039/6429/21628 4037/5762/21629 4020/16953/21630\nf 4019/16954/21631 4020/16955/21632 4037/5762/21633\nf 4037/5762/21634 4035/4207/21635 4019/16956/21636\nf 4100/2511/21637 4034/212/21638 4056/16957/21639\nf 4056/16958/21640 4057/16959/21641 4100/2511/21642\nf 4101/16960/21643 4056/16961/21644 4034/212/21645\nf 4034/212/21646 4036/5783/21647 4101/16962/21648\nf 4102/16963/21649 4101/16964/21650 4036/5783/21651\nf 4036/5783/21652 4038/2351/21653 4102/16965/21654\nf 4103/16966/21655 4102/16967/21656 4038/2351/21657\nf 4038/2351/21658 4040/3051/21659 4103/16968/21660\nf 4104/16969/21661 4103/16970/21662 4040/3051/21663\nf 4040/3051/21664 11543/2752/21665 4104/16971/21666\nf 4062/16972/21667 4104/16973/21668 11543/2752/21669\nf 11543/2752/21670 11544/5431/21671 4062/16974/21672\nf 13290/16975/21673 4062/16976/21674 11544/5431/21675\nf 11544/5431/21676 4042/5841/21677 13290/16977/21678\nf 4064/16978/21679 13290/16979/21680 4042/5841/21681\nf 4042/5841/21682 4108/353/21683 4064/16980/21684\nf 4111/16981/21685 4064/16982/21686 4108/353/21687\nf 4108/353/21688 4109/4703/21689 4111/16983/21690\nf 4109/636/21691 4046/956/21692 4110/16984/21693\nf 4110/16985/21694 4111/16986/21695 4109/636/21696\nf 4112/16987/21697 4110/16988/21698 4046/956/21699\nf 4046/956/21700 4048/2228/21701 4112/16989/21702\nf 4113/16990/21703 4112/16991/21704 4048/2228/21705\nf 4048/2228/21706 4050/614/21707 4113/16992/21708\nf 4114/16993/21709 4113/16994/21710 4050/614/21711\nf 4050/614/21712 4052/3087/21713 4114/16995/21714\nf 4115/16996/21715 4114/16997/21716 4052/3087/21717\nf 4052/3087/21718 4053/1123/21719 4115/16998/21720\nf 4068/16999/21721 4115/17000/21722 4053/1123/21723\nf 4053/1123/21724 4055/2172/21725 4068/17001/21726\nf 4057/17002/21727 4068/17003/21728 4055/2172/21729\nf 4055/2172/21730 4100/2511/21731 4057/17004/21732\nf 3945/5314/21733 12671/2080/21734 4058/17005/21735\nf 4058/17006/21736 4059/17007/21737 3945/5314/21738\nf 12649/17008/21739 4058/17009/21740 12671/2080/21741\nf 12671/2080/21742 3943/1414/21743 12649/17010/21744\nf 4069/17011/21745 12649/17012/21746 3943/1414/21747\nf 3943/1414/21748 4118/3264/21749 4069/17013/21750\nf 4067/17014/21751 4069/17015/21752 4118/3264/21753\nf 4118/3264/21754 4119/1677/21755 4067/17016/21756\nf 4066/17017/21757 4067/17018/21758 4119/1677/21759\nf 4119/1677/21760 9624/5460/21761 4066/17019/21762\nf 12307/17020/21763 4066/17021/21764 9624/5460/21765\nf 9624/5460/21766 9625/6294/21767 12307/17022/21768\nf 4065/17023/21769 12307/17024/21770 9625/6294/21771\nf 9625/6294/21772 3958/2404/21773 4065/17025/21774\nf 4123/17026/21775 4065/17027/21776 3958/2404/21777\nf 3958/2404/21778 3956/6092/21779 4123/17028/21780\nf 4124/17029/21781 4123/17030/21782 3956/6092/21783\nf 3956/6092/21784 12798/5638/21785 4124/17031/21786\nf 12798/3696/21787 3953/5931/21788 12155/17032/21789\nf 12155/17033/21790 4124/17034/21791 12798/3696/21792\nf 4063/17035/21793 12155/17036/21794 3953/5931/21795\nf 3953/5931/21796 3951/4488/21797 4063/17037/21798\nf 12765/17038/21799 4063/17039/21800 3951/4488/21801\nf 3951/4488/21802 9714/5788/21803 12765/17040/21804\nf 4061/17041/21805 12765/17042/21806 9714/5788/21807\nf 9714/5788/21808 4129/3593/21809 4061/17043/21810\nf 12761/17044/21811 4061/17045/21812 4129/3593/21813\nf 4129/3593/21814 4131/4709/21815 12761/17046/21816\nf 4060/17047/21817 12761/17048/21818 4131/4709/21819\nf 4131/4709/21820 4132/2446/21821 4060/17049/21822\nf 4059/17050/21823 4060/17051/21824 4132/2446/21825\nf 4132/2446/21826 3945/5314/21827 4059/17052/21828\nf 3995/17053/21829 3969/6235/21830 3971/325/21831\nf 3971/325/21832 11167/17054/21833 3995/17055/21834\nf 11167/17056/21835 3971/325/21836 12716/4830/21837\nf 12716/4830/21838 11138/17057/21839 11167/17058/21840\nf 11138/17059/21841 12716/4830/21842 3974/6127/21843\nf 3974/6127/21844 3999/17060/21845 11138/17061/21846\nf 4134/17062/21847 4135/17063/21848 4179/17064/21849\nf 4179/17065/21850 12924/17066/21851 4134/17067/21852\nf 4134/17068/21853 12924/17069/21854 10594/17070/21855\nf 10594/17071/21856 4137/17072/21857 4134/17073/21858\nf 4138/17074/21859 4137/17075/21860 10594/17076/21861\nf 10594/17077/21862 10390/17078/21863 4138/17079/21864\nf 4138/17080/21865 10390/17081/21866 4189/17082/21867\nf 4189/17083/21868 4139/17084/21869 4138/17085/21870\nf 4140/17086/21871 4139/17087/21872 4189/17088/21873\nf 4189/17089/21874 10321/17090/21875 4140/17091/21876\nf 4140/17092/21877 10321/17093/21878 11884/17094/21879\nf 11884/17095/21880 4141/17096/21881 4140/17097/21882\nf 4142/17098/21883 4141/17099/21884 11884/17100/21885\nf 11884/17101/21886 11887/17102/21887 4142/17103/21888\nf 4142/17104/21889 11887/17105/21890 10008/17106/21891\nf 10008/17107/21892 4144/17108/21893 4142/17109/21894\nf 4145/17110/21895 4144/17111/21896 10008/17112/21897\nf 10008/17113/21898 9879/17114/21899 4145/17115/21900\nf 4145/17116/21901 9879/17117/21902 9880/17118/21903\nf 9880/17119/21904 4148/17120/21905 4145/17121/21906\nf 4149/17122/21907 4148/17123/21908 9880/17124/21909\nf 9880/17125/21910 4187/17126/21911 4149/17127/21912\nf 4149/17128/21913 4187/17129/21914 13006/17130/21915\nf 13006/17131/21916 4151/17132/21917 4149/17133/21918\nf 4152/17134/21919 4151/17135/21920 13006/17136/21921\nf 13006/17137/21922 4184/17138/21923 4152/17139/21924\nf 4152/17140/21925 4184/17141/21926 4181/17142/21927\nf 4181/17143/21928 4153/17144/21929 4152/17145/21930\nf 4154/17146/21931 4153/17147/21932 4181/17148/21933\nf 4181/17149/21934 12692/17150/21935 4154/17151/21936\nf 4135/17152/21937 4154/17153/21938 12692/17154/21939\nf 12692/17155/21940 4179/17156/21941 4135/17157/21942\nf 4156/17158/21943 10704/17159/21944 4177/17160/21945\nf 4177/17161/21946 4158/17162/21947 4156/17163/21948\nf 4158/17164/21949 4177/17165/21950 13025/17166/21951\nf 13025/17167/21952 4160/17168/21953 4158/17169/21954\nf 4160/17170/21955 13025/17171/21956 4180/17172/21957\nf 4180/17173/21958 4161/17174/21959 4160/17175/21960\nf 4161/17176/21961 4180/17177/21962 10314/17178/21963\nf 10314/17179/21964 4162/17180/21965 4161/17181/21966\nf 4162/17182/21967 10314/17183/21968 4183/17184/21969\nf 4183/17185/21970 4163/17186/21971 4162/17187/21972\nf 4163/17188/21973 4183/17189/21974 10264/17190/21975\nf 10264/17191/21976 4164/17192/21977 4163/17193/21978\nf 4164/17194/21979 10264/17195/21980 10265/17196/21981\nf 10265/17197/21982 4176/17198/21983 4164/17199/21984\nf 10704/17200/21985 4156/17201/21986 4165/17202/21987\nf 4165/17203/21988 10705/17204/21989 10704/17205/21990\nf 10705/17206/21991 4165/17207/21992 4167/17208/21993\nf 4167/17209/21994 10331/17210/21995 10705/17211/21996\nf 10331/17212/21997 4167/17213/21998 4168/17214/21999\nf 4168/17215/22000 4191/17216/22001 10331/17217/22002\nf 4191/17218/22003 4168/17219/22004 4169/17220/22005\nf 4169/17221/22006 11897/17222/22007 4191/17223/22008\nf 11897/17224/22009 4169/17225/22010 4170/17226/22011\nf 4170/17227/22012 13097/17228/22013 11897/17229/22014\nf 13097/17230/22015 4170/17231/22016 4172/17232/22017\nf 4172/17233/22018 13049/17234/22019 13097/17235/22020\nf 13049/17236/22021 4172/17237/22022 4173/17238/22023\nf 4173/17239/22024 13050/17240/22025 13049/17241/22026\nf 13050/17242/22027 4173/17243/22028 4175/17244/22029\nf 4175/17245/22030 13068/17246/22031 13050/17247/22032\nf 13068/17248/22033 4175/17249/22034 4176/17250/22035\nf 4176/17251/22036 10265/17252/22037 13068/17253/22038\nf 13142/17254/22039 4157/17255/22040 4178/17256/22041\nf 4178/17257/22042 4136/17258/22043 13142/17259/22044\nf 13142/17260/22045 4136/17261/22046 12691/17262/22047\nf 12691/17263/22048 4159/17264/22049 13142/17265/22050\nf 10364/17266/22051 4159/17267/22052 12691/17268/22053\nf 12691/17269/22054 4155/17270/22055 10364/17271/22056\nf 10364/17272/22057 4155/17273/22058 10337/17274/22059\nf 10337/17275/22060 4182/17276/22061 10364/17277/22062\nf 10315/17278/22063 4182/17279/22064 10337/17280/22065\nf 10337/17281/22066 10338/17282/22067 10315/17283/22068\nf 10315/17284/22069 10338/17285/22070 4150/17286/22071\nf 4150/17287/22072 4185/17288/22073 10315/17289/22074\nf 4186/17290/22075 4185/17291/22076 4150/17292/22077\nf 4150/17293/22078 12853/17294/22079 4186/17295/22080\nf 4188/17296/22081 4178/17297/22082 4157/17298/22083\nf 4157/17299/22084 4166/17300/22085 4188/17301/22086\nf 10320/17302/22087 4188/17303/22088 4166/17304/22089\nf 4166/17305/22090 4190/17306/22091 10320/17307/22092\nf 10320/17308/22093 4190/17309/22094 10332/17310/22095\nf 10332/17311/22096 4192/17312/22097 10320/17313/22098\nf 4193/17314/22099 4192/17315/22100 10332/17316/22101\nf 10332/17317/22102 4194/17318/22103 4193/17319/22104\nf 4193/17320/22105 4194/17321/22106 4171/17322/22107\nf 4171/17323/22108 4195/17324/22109 4193/17325/22110\nf 4143/17326/22111 4195/17327/22112 4171/17328/22113\nf 4171/17329/22114 4196/17330/22115 4143/17331/22116\nf 4143/17332/22117 4196/17333/22118 4174/17334/22119\nf 4174/17335/22120 4146/17336/22121 4143/17337/22122\nf 4147/17338/22123 4146/17339/22124 4174/17340/22125\nf 4174/17341/22126 4197/17342/22127 4147/17343/22128\nf 4147/17344/22129 4197/17345/22130 4186/17346/22131\nf 4186/17347/22132 12853/17348/22133 4147/17349/22134\nf 10464/17350/22135 10465/17351/22136 4199/17352/22137\nf 4199/17353/22138 4201/17354/22139 10464/17355/22140\nf 4199/17356/22141 10465/17357/22142 10119/17358/22143\nf 10119/17359/22144 4202/17360/22145 4199/17361/22146\nf 4203/17362/22147 4202/17363/22148 10119/17364/22149\nf 10119/17365/22150 4258/17366/22151 4203/17367/22152\nf 4203/17368/22153 4258/17369/22154 4257/17370/22155\nf 4257/17371/22156 4204/17372/22157 4203/17373/22158\nf 4205/17374/22159 4204/17375/22160 4257/17376/22161\nf 4257/17377/22162 10518/17378/22163 4205/17379/22164\nf 4205/17380/22165 10518/17381/22166 10519/17382/22167\nf 10519/17383/22168 4208/17384/22169 4205/17385/22170\nf 4209/17386/22171 4208/17387/22172 10519/17388/22173\nf 10519/17389/22174 4255/17390/22175 4209/17391/22176\nf 4209/17392/22177 4255/17393/22178 4254/17394/22179\nf 4254/17395/22180 4210/17396/22181 4209/17397/22182\nf 4211/17398/22183 4210/17399/22184 4254/17400/22185\nf 4254/17401/22186 12907/17402/22187 4211/17403/22188\nf 4211/17404/22189 12907/17405/22190 4253/17406/22191\nf 4253/17407/22192 4213/17408/22193 4211/17409/22194\nf 4214/17410/22195 4213/17411/22196 4253/17412/22197\nf 4253/17413/22198 10159/17414/22199 4214/17415/22200\nf 4214/17416/22201 10159/17417/22202 4261/17418/22203\nf 4261/17419/22204 4215/17420/22205 4214/17421/22206\nf 4216/17422/22207 4215/17423/22208 4261/17424/22209\nf 4261/17425/22210 11062/17426/22211 4216/17427/22212\nf 4216/17428/22213 11062/17429/22214 11063/17430/22215\nf 11063/17431/22216 4219/17432/22217 4216/17433/22218\nf 4220/17434/22219 4219/17435/22220 11063/17436/22221\nf 11063/17437/22222 4260/17438/22223 4220/17439/22224\nf 4201/17440/22225 4220/17441/22226 4260/17442/22227\nf 4260/17443/22228 10464/17444/22229 4201/17445/22230\nf 4221/17446/22231 4223/17447/22232 4222/17448/22233\nf 4222/17449/22234 4224/17450/22235 4221/17451/22236\nf 4223/17452/22237 4221/17453/22238 10744/17454/22239\nf 10744/17455/22240 4226/17456/22241 4223/17457/22242\nf 4226/17458/22243 10744/17459/22244 4227/17460/22245\nf 4227/17461/22246 4228/17462/22247 4226/17463/22248\nf 4228/17464/22249 4227/17465/22250 10690/17466/22251\nf 10690/17467/22252 4230/17468/22253 4228/17469/22254\nf 4230/17470/22255 10690/17471/22256 4231/17472/22257\nf 4231/17473/22258 4232/17474/22259 4230/17475/22260\nf 4232/17476/22261 4231/17477/22262 4233/17478/22263\nf 4233/17479/22264 4234/17480/22265 4232/17481/22266\nf 4234/17482/22267 4233/17483/22268 4252/17484/22269\nf 4252/17485/22270 4235/17486/22271 4234/17487/22272\nf 4224/17488/22273 4222/17489/22274 4236/17490/22275\nf 4236/17491/22276 9864/17492/22277 4224/17493/22278\nf 9864/17494/22279 4236/17495/22280 4238/17496/22281\nf 4238/17497/22282 9793/17498/22283 9864/17499/22284\nf 9793/17500/22285 4238/17501/22286 4240/17502/22287\nf 4240/17503/22288 9789/17504/22289 9793/17505/22290\nf 9789/17506/22291 4240/17507/22292 4242/17508/22293\nf 4242/17509/22294 9779/17510/22295 9789/17511/22296\nf 9779/17512/22297 4242/17513/22298 4244/17514/22299\nf 4244/17515/22300 9780/17516/22301 9779/17517/22302\nf 9780/17518/22303 4244/17519/22304 4246/17520/22305\nf 4246/17521/22306 4247/17522/22307 9780/17523/22308\nf 4247/17524/22309 4246/17525/22310 4248/17526/22311\nf 4248/17527/22312 4249/17528/22313 4247/17529/22314\nf 4249/17530/22315 4248/17531/22316 4250/17532/22317\nf 4250/17533/22318 10016/17534/22319 4249/17535/22320\nf 10016/17536/22321 4250/17537/22322 4235/17538/22323\nf 4235/17539/22324 4252/17540/22325 10016/17541/22326\nf 10015/17542/22327 4251/17543/22328 10158/17544/22329\nf 10158/17545/22330 4251/17546/22331 10117/17547/22332\nf 10158/17548/22333 4212/17549/22334 10015/17550/22335\nf 4245/17551/22336 10005/17552/22337 10078/17553/22338\nf 10078/17554/22339 10005/17555/22340 10015/17556/22341\nf 10015/17557/22342 4212/17558/22343 10078/17559/22344\nf 10078/17560/22345 10079/17561/22346 4245/17562/22347\nf 10117/17563/22348 4256/17564/22349 10158/17565/22350\nf 4207/17566/22351 4243/17567/22352 4245/17568/22353\nf 4245/17569/22354 10079/17570/22355 4207/17571/22356\nf 4241/17572/22357 4243/17573/22358 4207/17574/22359\nf 4207/17575/22360 4206/17576/22361 4241/17577/22362\nf 4241/17578/22363 4206/17579/22364 10250/17580/22365\nf 10250/17581/22366 4239/17582/22367 4241/17583/22368\nf 4237/17584/22369 4239/17585/22370 10250/17586/22371\nf 10250/17587/22372 10118/17588/22373 4237/17589/22374\nf 10796/17590/22375 4237/17591/22376 10118/17592/22377\nf 10118/17593/22378 4259/17594/22379 10796/17595/22380\nf 10770/17596/22381 10796/17597/22382 4259/17598/22383\nf 4259/17599/22384 4200/17600/22385 10770/17601/22386\nf 10770/17602/22387 4200/17603/22388 4198/17604/22389\nf 4198/17605/22390 4225/17606/22391 10770/17607/22392\nf 10689/17608/22393 4225/17609/22394 4198/17610/22395\nf 4198/17611/22396 12951/17612/22397 10689/17613/22398\nf 10689/17614/22399 12951/17615/22400 4218/17616/22401\nf 4218/17617/22402 4229/17618/22403 10689/17619/22404\nf 10707/17620/22405 4229/17621/22406 4218/17622/22407\nf 4218/17623/22408 4217/17624/22409 10707/17625/22410\nf 10707/17626/22411 4217/17627/22412 12722/17628/22413\nf 12722/17629/22414 10732/17630/22415 10707/17631/22416\nf 10117/17632/22417 10732/17633/22418 12722/17634/22419\nf 12722/17635/22420 4256/17636/22421 10117/17637/22422\nf 9626/17638/22423 9627/17639/22424 4263/17640/22425\nf 4263/17641/22426 4265/17642/22427 9626/17643/22428\nf 9626/17644/22429 4265/17645/22430 4266/17646/22431\nf 4266/17647/22432 9755/17648/22433 9626/17649/22434\nf 4436/17650/22435 9755/17651/22436 4266/17652/22437\nf 4266/17653/22438 4267/17654/22439 4436/17655/22440\nf 4436/17656/22441 4267/17657/22442 4268/17658/22443\nf 4268/17659/22444 10149/17660/22445 4436/17661/22446\nf 12817/17662/22447 10149/17663/22448 4268/17664/22449\nf 4268/17665/22450 4270/17666/22451 12817/17667/22452\nf 12817/17668/22453 4270/17669/22454 4271/17670/22455\nf 4271/17671/22456 12667/17672/22457 12817/17673/22458\nf 12668/17674/22459 12667/17675/22460 4271/17676/22461\nf 4271/17677/22462 4273/17678/22463 12668/17679/22464\nf 12668/17680/22465 4273/17681/22466 4274/17682/22467\nf 4274/17683/22468 4430/17684/22469 12668/17685/22470\nf 12688/17686/22471 4430/17687/22472 4274/17688/22473\nf 4274/17689/22474 4277/17690/22475 12688/17691/22476\nf 12688/17692/22477 4277/17693/22478 4276/17694/22479\nf 4276/17695/22480 9647/17696/22481 12688/17697/22482\nf 9554/17698/22483 9647/17699/22484 4276/17700/22485\nf 4276/17701/22486 4280/17702/22487 9554/17703/22488\nf 9554/17704/22489 4280/17705/22490 4281/17706/22491\nf 4281/17707/22492 9555/17708/22493 9554/17709/22494\nf 4427/17710/22495 9555/17711/22496 4281/17712/22497\nf 4281/17713/22498 4283/17714/22499 4427/17715/22500\nf 4427/17716/22501 4283/17717/22502 4284/17718/22503\nf 4284/17719/22504 12616/17720/22505 4427/17721/22506\nf 4425/17722/22507 12616/17723/22508 4284/17724/22509\nf 4284/17725/22510 4286/17726/22511 4425/17727/22512\nf 9627/17728/22513 4425/17729/22514 4286/17730/22515\nf 4286/17731/22516 4263/17732/22517 9627/17733/22518\nf 4437/17734/22519 4288/17735/22520 4287/17736/22521\nf 4287/17737/22522 11163/17738/22523 4437/17739/22524\nf 4288/17740/22525 4437/17741/22526 9420/17742/22527\nf 9420/17743/22528 4291/17744/22529 4288/17745/22530\nf 4291/17746/22531 9420/17747/22532 9421/17748/22533\nf 9421/17749/22534 4293/17750/22535 4291/17751/22536\nf 4293/17752/22537 9421/17753/22538 11349/17754/22539\nf 11349/17755/22540 4295/17756/22541 4293/17757/22542\nf 4295/17758/22543 11349/17759/22544 4442/17760/22545\nf 4442/17761/22546 4296/17762/22547 4295/17763/22548\nf 4296/17764/22549 4442/17765/22550 13121/17766/22551\nf 13121/17767/22552 4298/17768/22553 4296/17769/22554\nf 4298/17770/22555 13121/17771/22556 4445/17772/22557\nf 4445/17773/22558 4299/17774/22559 4298/17775/22560\nf 4299/17776/22561 4445/17777/22562 11428/17778/22563\nf 11428/17779/22564 4301/17780/22565 4299/17781/22566\nf 4301/17782/22567 11428/17783/22568 11429/17784/22569\nf 11429/17785/22570 4303/17786/22571 4301/17787/22572\nf 4303/17788/22573 11429/17789/22574 10443/17790/22575\nf 10443/17791/22576 4304/17792/22577 4303/17793/22578\nf 4304/17794/22579 10443/17795/22580 10418/17796/22581\nf 10418/17797/22582 4305/17798/22583 4304/17799/22584\nf 4305/17800/22585 10418/17801/22586 10419/17802/22587\nf 10419/17803/22588 4306/17804/22589 4305/17805/22590\nf 4306/17806/22591 10419/17807/22592 11721/17808/22593\nf 11721/17809/22594 4308/17810/22595 4306/17811/22596\nf 4308/17812/22597 11721/17813/22598 11684/17814/22599\nf 11684/17815/22600 4310/17816/22601 4308/17817/22602\nf 4310/17818/22603 11684/17819/22604 11164/17820/22605\nf 11164/17821/22606 4312/17822/22607 4310/17823/22608\nf 4312/17824/22609 11164/17825/22610 11163/17826/22611\nf 11163/17827/22612 4287/17828/22613 4312/17829/22614\nf 12890/17830/22615 9914/17831/22616 12514/17832/22617\nf 12514/17833/22618 9147/17834/22619 12890/17835/22620\nf 12890/17836/22621 9147/17837/22622 9148/17838/22623\nf 9148/17839/22624 4439/17840/22625 12890/17841/22626\nf 10524/17842/22627 4439/17843/22628 9148/17844/22629\nf 9148/17845/22630 9163/17846/22631 10524/17847/22632\nf 10524/17848/22633 9163/17849/22634 11603/17850/22635\nf 11603/17851/22636 4441/17852/22637 10524/17853/22638\nf 10528/17854/22639 4441/17855/22640 11603/17856/22641\nf 11603/17857/22642 11604/17858/22643 10528/17859/22644\nf 10528/17860/22645 11604/17861/22646 11627/17862/22647\nf 11627/17863/22648 10553/17864/22649 10528/17865/22650\nf 11609/17866/22651 10553/17867/22652 11627/17868/22653\nf 11627/17869/22654 11654/17870/22655 11609/17871/22656\nf 11609/17872/22657 11654/17873/22658 11655/17874/22659\nf 11655/17875/22660 11610/17876/22661 11609/17877/22662\nf 4446/17878/22663 11610/17879/22664 11655/17880/22665\nf 11655/17881/22666 4379/17882/22667 4446/17883/22668\nf 4446/17884/22669 4379/17885/22670 4322/17886/22671\nf 4322/17887/22672 4447/17888/22673 4446/17889/22674\nf 10455/17890/22675 4447/17891/22676 4322/17892/22677\nf 4322/17893/22678 4381/17894/22679 10455/17895/22680\nf 10455/17896/22681 4381/17897/22682 8966/17898/22683\nf 8966/17899/22684 8990/17900/22685 10455/17901/22686\nf 8991/17902/22687 8990/17903/22688 8966/17904/22689\nf 8966/17905/22690 8967/17906/22691 8991/17907/22692\nf 8991/17908/22693 8967/17909/22694 11333/17910/22695\nf 11333/17911/22696 10383/17912/22697 8991/17913/22698\nf 9915/17914/22699 10383/17915/22700 11333/17916/22701\nf 11333/17917/22702 4386/17918/22703 9915/17919/22704\nf 9914/17920/22705 9915/17921/22706 4386/17922/22707\nf 4386/17923/22708 12514/17924/22709 9914/17925/22710\nf 4369/17926/22711 9252/17927/22712 9201/17928/22713\nf 9201/17929/22714 4388/17930/22715 4369/17931/22716\nf 4369/17932/22717 4388/17933/22718 12207/17934/22719\nf 12207/17935/22720 8848/17936/22721 4369/17937/22722\nf 8849/17938/22723 8848/17939/22724 12207/17940/22725\nf 12207/17941/22726 12208/17942/22727 8849/17943/22728\nf 8849/17944/22729 12208/17945/22730 9411/17946/22731\nf 9411/17947/22732 9228/17948/22733 8849/17949/22734\nf 9229/17950/22735 9228/17951/22736 9411/17952/22737\nf 9411/17953/22738 9412/17954/22739 9229/17955/22740\nf 9229/17956/22741 9412/17957/22742 4399/17958/22743\nf 4399/17959/22744 9282/17960/22745 9229/17961/22746\nf 9283/17962/22747 9282/17963/22748 4399/17964/22749\nf 4399/17965/22750 11268/17966/22751 9283/17967/22752\nf 9283/17968/22753 11268/17969/22754 12642/17970/22755\nf 12642/17971/22756 11485/17972/22757 9283/17973/22758\nf 9454/17974/22759 11485/17975/22760 12642/17976/22761\nf 12642/17977/22762 12605/17978/22763 9454/17979/22764\nf 9454/17980/22765 12605/17981/22766 11212/17982/22767\nf 11212/17983/22768 9455/17984/22769 9454/17985/22770\nf 4380/17986/22771 9455/17987/22772 11212/17988/22773\nf 11212/17989/22774 11211/17990/22775 4380/17991/22776\nf 4380/17992/22777 11211/17993/22778 11229/17994/22779\nf 11229/17995/22780 12130/17996/22781 4380/17997/22782\nf 11435/17998/22783 12130/17999/22784 11229/18000/22785\nf 11229/18001/22786 11892/18002/22787 11435/18003/22788\nf 11435/18004/22789 11892/18005/22790 12008/18006/22791\nf 12008/18007/22792 4383/18008/22793 11435/18009/22794\nf 9253/18010/22795 4383/18011/22796 12008/18012/22797\nf 12008/18013/22798 9202/18014/22799 9253/18015/22800\nf 9252/18016/22801 9253/18017/22802 9202/18018/22803\nf 9202/18019/22804 9201/18020/22805 9252/18021/22806\nf 4389/18022/22807 8865/18023/22808 11988/18024/22809\nf 11988/18025/22810 11989/18026/22811 4389/18027/22812\nf 4389/18028/22813 11989/18029/22814 4406/18030/22815\nf 4406/18031/22816 4387/18032/22817 4389/18033/22818\nf 11977/18034/22819 4387/18035/22820 4406/18036/22821\nf 4406/18037/22822 12012/18038/22823 11977/18039/22824\nf 11977/18040/22825 12012/18041/22826 8665/18042/22827\nf 8665/18043/22828 11978/18044/22829 11977/18045/22830\nf 11199/18046/22831 11978/18047/22832 8665/18048/22833\nf 8665/18049/22834 8666/18050/22835 11199/18051/22836\nf 11199/18052/22837 8666/18053/22838 8736/18054/22839\nf 8736/18055/22840 11198/18056/22841 11199/18057/22842\nf 8819/18058/22843 11198/18059/22844 8736/18060/22845\nf 8736/18061/22846 8797/18062/22847 8819/18063/22848\nf 8819/18064/22849 8797/18065/22850 10962/18066/22851\nf 10962/18067/22852 8820/18068/22853 8819/18069/22854\nf 12138/18070/22855 8820/18071/22856 10962/18072/22857\nf 10962/18073/22858 10963/18074/22859 12138/18075/22860\nf 12138/18076/22861 10963/18077/22862 12950/18078/22863\nf 12950/18079/22864 12970/18080/22865 12138/18081/22866\nf 4395/18082/22867 12970/18083/22868 12950/18084/22869\nf 12950/18085/22870 12979/18086/22871 4395/18087/22872\nf 4395/18088/22873 12979/18089/22874 4417/18090/22875\nf 4417/18091/22876 12925/18092/22877 4395/18093/22878\nf 4392/18094/22879 12925/18095/22880 4417/18096/22881\nf 4417/18097/22882 10855/18098/22883 4392/18099/22884\nf 4392/18100/22885 10855/18101/22886 10849/18102/22887\nf 10849/18103/22888 11936/18104/22889 4392/18105/22890\nf 8866/18106/22891 11936/18107/22892 10849/18108/22893\nf 10849/18109/22894 10850/18110/22895 8866/18111/22896\nf 8865/18112/22897 8866/18113/22898 10850/18114/22899\nf 10850/18115/22900 11988/18116/22901 8865/18117/22902\nf 11288/18118/22903 4404/18119/22904 9809/18120/22905\nf 9809/18121/22906 9798/18122/22907 11288/18123/22908\nf 11288/18124/22909 9798/18125/22910 4423/18126/22911\nf 4423/18127/22912 11289/18128/22913 11288/18129/22914\nf 11318/18130/22915 11289/18131/22916 4423/18132/22917\nf 4423/18133/22918 9748/18134/22919 11318/18135/22920\nf 11318/18136/22921 9748/18137/22922 4433/18138/22923\nf 4433/18139/22924 11343/18140/22925 11318/18141/22926\nf 11344/18142/22927 11343/18143/22928 4433/18144/22929\nf 4433/18145/22930 8978/18146/22931 11344/18147/22932\nf 11344/18148/22933 8978/18149/22934 8979/18150/22935\nf 8979/18151/22936 12310/18152/22937 11344/18153/22938\nf 11021/18154/22939 12310/18155/22940 8979/18156/22941\nf 8979/18157/22942 4431/18158/22943 11021/18159/22944\nf 11021/18160/22945 4431/18161/22946 8969/18162/22947\nf 8969/18163/22948 4411/18164/22949 11021/18165/22950\nf 10976/18166/22951 4411/18167/22952 8969/18168/22953\nf 8969/18169/22954 8970/18170/22955 10976/18171/22956\nf 12479/18172/22957 9314/18173/22958 10976/18174/22959\nf 10976/18175/22960 8970/18176/22961 12479/18177/22962\nf 9315/18178/22963 9314/18179/22964 12479/18180/22965\nf 12479/18181/22966 12409/18182/22967 9315/18183/22968\nf 9315/18184/22969 12409/18185/22970 4428/18186/22971\nf 4428/18187/22972 4416/18188/22973 9315/18189/22974\nf 9189/18190/22975 4416/18191/22976 4428/18192/22977\nf 4428/18193/22978 12374/18194/22979 9189/18195/22980\nf 9189/18196/22981 12374/18197/22982 4426/18198/22983\nf 4426/18199/22984 9118/18200/22985 9189/18201/22986\nf 9119/18202/22987 9118/18203/22988 4426/18204/22989\nf 4426/18205/22990 12346/18206/22991 9119/18207/22992\nf 4404/18208/22993 9119/18209/22994 12346/18210/22995\nf 12346/18211/22996 9809/18212/22997 4404/18213/22998\nf 4314/18214/22999 4370/18215/23000 9505/18216/23001\nf 9505/18217/23002 4371/18218/23003 4314/18219/23004\nf 4371/18220/23005 9505/18221/23006 4329/18222/23007\nf 4329/18223/23008 4372/18224/23009 4371/18225/23010\nf 4372/18226/23011 4329/18227/23012 4330/18228/23013\nf 4330/18229/23014 4373/18230/23015 4372/18231/23016\nf 4373/18232/23017 4330/18233/23018 4374/18234/23019\nf 4374/18235/23020 4315/18236/23021 4373/18237/23022\nf 4315/18238/23023 4374/18239/23024 4375/18240/23025\nf 4375/18241/23026 4316/18242/23027 4315/18243/23028\nf 4316/18244/23029 4375/18245/23030 4376/18246/23031\nf 4376/18247/23032 4317/18248/23033 4316/18249/23034\nf 4317/18250/23035 4376/18251/23036 4377/18252/23037\nf 4377/18253/23038 4319/18254/23039 4317/18255/23040\nf 4319/18256/23041 4377/18257/23042 4378/18258/23043\nf 4378/18259/23044 4320/18260/23045 4319/18261/23046\nf 4320/18262/23047 4378/18263/23048 4334/18264/23049\nf 4334/18265/23050 13287/18266/23051 4320/18267/23052\nf 13287/18268/23053 4334/18269/23054 4336/18270/23055\nf 4336/18271/23056 13283/18272/23057 13287/18273/23058\nf 13283/18274/23059 4336/18275/23060 12108/18276/23061\nf 12108/18277/23062 12315/18278/23063 13283/18279/23064\nf 12315/18280/23065 12108/18281/23066 4337/18282/23067\nf 4337/18283/23068 4323/18284/23069 12315/18285/23070\nf 4323/18286/23071 4337/18287/23072 4382/18288/23073\nf 4382/18289/23074 4326/18290/23075 4323/18291/23076\nf 4326/18292/23077 4382/18293/23078 11355/18294/23079\nf 11355/18295/23080 4384/18296/23081 4326/18297/23082\nf 4384/18298/23083 11355/18299/23084 4385/18300/23085\nf 4385/18301/23086 11334/18302/23087 4384/18303/23088\nf 11334/18304/23089 4385/18305/23090 4370/18306/23091\nf 4370/18307/23092 4314/18308/23093 11334/18309/23094\nf 11323/18310/23095 4328/18311/23096 12247/18312/23097\nf 12247/18313/23098 11324/18314/23099 11323/18315/23100\nf 11324/18316/23101 12247/18317/23102 4327/18318/23103\nf 4327/18319/23104 4341/18320/23105 11324/18321/23106\nf 4341/18322/23107 4327/18323/23108 4339/18324/23109\nf 4339/18325/23110 4355/18326/23111 4341/18327/23112\nf 4355/18328/23113 4339/18329/23114 4338/18330/23115\nf 4338/18331/23116 4390/18332/23117 4355/18333/23118\nf 4390/18334/23119 4338/18335/23120 4391/18336/23121\nf 4391/18337/23122 11937/18338/23123 4390/18339/23124\nf 11937/18340/23125 4391/18341/23126 4393/18342/23127\nf 4393/18343/23128 4354/18344/23129 11937/18345/23130\nf 4354/18346/23131 4393/18347/23132 4394/18348/23133\nf 4394/18349/23134 12985/18350/23135 4354/18351/23136\nf 12985/18352/23137 4394/18353/23138 4396/18354/23139\nf 4396/18355/23140 4352/18356/23141 12985/18357/23142\nf 4352/18358/23143 4396/18359/23144 4335/18360/23145\nf 4335/18361/23146 4397/18362/23147 4352/18363/23148\nf 4397/18364/23149 4335/18365/23150 4333/18366/23151\nf 4333/18367/23152 4351/18368/23153 4397/18369/23154\nf 4351/18370/23155 4333/18371/23156 4398/18372/23157\nf 4398/18373/23158 4349/18374/23159 4351/18375/23160\nf 4349/18376/23161 4398/18377/23162 11269/18378/23163\nf 11269/18379/23164 4400/18380/23165 4349/18381/23166\nf 4400/18382/23167 11269/18383/23168 4332/18384/23169\nf 4332/18385/23170 4401/18386/23171 4400/18387/23172\nf 4401/18388/23173 4332/18389/23174 4331/18390/23175\nf 4331/18391/23176 4346/18392/23177 4401/18393/23178\nf 4346/18394/23179 4331/18395/23180 4402/18396/23181\nf 4402/18397/23182 4343/18398/23183 4346/18399/23184\nf 4343/18400/23185 4402/18401/23186 4328/18402/23187\nf 4328/18403/23188 11323/18404/23189 4343/18405/23190\nf 4340/18406/23191 11514/18407/23192 4403/18408/23193\nf 4403/18409/23194 4342/18410/23195 4340/18411/23196\nf 4342/18412/23197 4403/18413/23198 4405/18414/23199\nf 4405/18415/23200 13274/18416/23201 4342/18417/23202\nf 13274/18418/23203 4405/18419/23204 4407/18420/23205\nf 4407/18421/23206 4344/18422/23207 13274/18423/23208\nf 4344/18424/23209 4407/18425/23210 4408/18426/23211\nf 4408/18427/23212 4345/18428/23213 4344/18429/23214\nf 4345/18430/23215 4408/18431/23216 4409/18432/23217\nf 4409/18433/23218 4347/18434/23219 4345/18435/23220\nf 4347/18436/23221 4409/18437/23222 4358/18438/23223\nf 4358/18439/23224 4348/18440/23225 4347/18441/23226\nf 4348/18442/23227 4358/18443/23228 4410/18444/23229\nf 4410/18445/23230 4350/18446/23231 4348/18447/23232\nf 4350/18448/23233 4410/18449/23234 10975/18450/23235\nf 10975/18451/23236 4412/18452/23237 4350/18453/23238\nf 4412/18454/23239 10975/18455/23240 4413/18456/23241\nf 4413/18457/23242 4414/18458/23243 4412/18459/23244\nf 4414/18460/23245 4413/18461/23246 4361/18462/23247\nf 4361/18463/23248 4415/18464/23249 4414/18465/23250\nf 4415/18466/23251 4361/18467/23252 4362/18468/23253\nf 4362/18469/23254 4353/18470/23255 4415/18471/23256\nf 4353/18472/23257 4362/18473/23258 12389/18474/23259\nf 12389/18475/23260 10934/18476/23261 4353/18477/23262\nf 10934/18478/23263 12389/18479/23264 4364/18480/23265\nf 4364/18481/23266 4418/18482/23267 10934/18483/23268\nf 4418/18484/23269 4364/18485/23270 4366/18486/23271\nf 4366/18487/23272 4419/18488/23273 4418/18489/23274\nf 4419/18490/23275 4366/18491/23276 4367/18492/23277\nf 4367/18493/23278 4420/18494/23279 4419/18495/23280\nf 4420/18496/23281 4367/18497/23282 11514/18498/23283\nf 11514/18499/23284 4340/18500/23285 4420/18501/23286\nf 4421/18502/23287 9747/18503/23288 4422/18504/23289\nf 4422/18505/23290 4262/18506/23291 4421/18507/23292\nf 4262/18508/23293 4422/18509/23294 4424/18510/23295\nf 4424/18511/23296 4264/18512/23297 4262/18513/23298\nf 4264/18514/23299 4424/18515/23300 4368/18516/23301\nf 4368/18517/23302 12652/18518/23303 4264/18519/23304\nf 12652/18520/23305 4368/18521/23306 12362/18522/23307\nf 12362/18523/23308 4285/18524/23309 12652/18525/23310\nf 4285/18526/23311 12362/18527/23312 4365/18528/23313\nf 4365/18529/23314 12613/18530/23315 4285/18531/23316\nf 12613/18532/23317 4365/18533/23318 12396/18534/23319\nf 12396/18535/23320 4282/18536/23321 12613/18537/23322\nf 4282/18538/23323 12396/18539/23324 4363/18540/23325\nf 4363/18541/23326 4279/18542/23327 4282/18543/23328\nf 4279/18544/23329 4363/18545/23330 4429/18546/23331\nf 4429/18547/23332 4278/18548/23333 4279/18549/23334\nf 4278/18550/23335 4429/18551/23336 4360/18552/23337\nf 4360/18553/23338 4275/18554/23339 4278/18555/23340\nf 4275/18556/23341 4360/18557/23342 4359/18558/23343\nf 4359/18559/23344 12687/18560/23345 4275/18561/23346\nf 12687/18562/23347 4359/18563/23348 12327/18564/23349\nf 12327/18565/23350 4272/18566/23351 12687/18567/23352\nf 4272/18568/23353 12327/18569/23354 4357/18570/23355\nf 4357/18571/23356 4432/18572/23357 4272/18573/23358\nf 4432/18574/23359 4357/18575/23360 4356/18576/23361\nf 4356/18577/23362 4269/18578/23363 4432/18579/23364\nf 4269/18580/23365 4356/18581/23366 10156/18582/23367\nf 10156/18583/23368 4434/18584/23369 4269/18585/23370\nf 4434/18586/23371 10156/18587/23372 4435/18588/23373\nf 4435/18589/23374 9756/18590/23375 4434/18591/23376\nf 9756/18592/23377 4435/18593/23378 9747/18594/23379\nf 9747/18595/23380 4421/18596/23381 9756/18597/23382\nf 12608/18598/23383 4289/18599/23384 4438/18600/23385\nf 4438/18601/23386 4313/18602/23387 12608/18603/23388\nf 12608/18604/23389 4313/18605/23390 10561/18606/23391\nf 10561/18607/23392 4290/18608/23393 12608/18609/23394\nf 4292/18610/23395 4290/18611/23396 10561/18612/23397\nf 10561/18613/23398 4440/18614/23399 4292/18615/23400\nf 4292/18616/23401 4440/18617/23402 10525/18618/23403\nf 10525/18619/23404 4294/18620/23405 4292/18621/23406\nf 13120/18622/23407 4294/18623/23408 10525/18624/23409\nf 10525/18625/23410 4443/18626/23411 13120/18627/23412\nf 13120/18628/23413 4443/18629/23414 4444/18630/23415\nf 4444/18631/23416 4297/18632/23417 13120/18633/23418\nf 13125/18634/23419 4297/18635/23420 4444/18636/23421\nf 4444/18637/23422 4318/18638/23423 13125/18639/23424\nf 13125/18640/23425 4318/18641/23426 4321/18642/23427\nf 4321/18643/23428 4300/18644/23429 13125/18645/23430\nf 4302/18646/23431 4300/18647/23432 4321/18648/23433\nf 4321/18649/23434 13090/18650/23435 4302/18651/23436\nf 10454/18652/23437 4448/18653/23438 4302/18654/23439\nf 4302/18655/23440 13090/18656/23441 10454/18657/23442\nf 4449/18658/23443 4448/18659/23444 10454/18660/23445\nf 10454/18661/23446 4450/18662/23447 4449/18663/23448\nf 4449/18664/23449 4450/18665/23450 4324/18666/23451\nf 4324/18667/23452 4451/18668/23453 4449/18669/23454\nf 4307/18670/23455 4451/18671/23456 4324/18672/23457\nf 4324/18673/23458 4325/18674/23459 4307/18675/23460\nf 4307/18676/23461 4325/18677/23462 4452/18678/23463\nf 4452/18679/23464 4309/18680/23465 4307/18681/23466\nf 4311/18682/23467 4309/18683/23468 4452/18684/23469\nf 4452/18685/23470 4453/18686/23471 4311/18687/23472\nf 4289/18688/23473 4311/18689/23474 4453/18690/23475\nf 4453/18691/23476 4438/18692/23477 4289/18693/23478\nf 4454/18694/23479 4455/18695/23480 9802/18696/23481\nf 9802/18697/23482 4633/18698/23483 4454/18699/23484\nf 9802/18700/23485 4455/18701/23486 4456/18702/23487\nf 4456/18703/23488 10306/18704/23489 9802/18705/23490\nf 10289/18706/23491 10306/18707/23492 4456/18708/23493\nf 4456/18709/23494 4459/18710/23495 10289/18711/23496\nf 10289/18712/23497 4459/18713/23498 4460/18714/23499\nf 4460/18715/23500 10290/18716/23501 10289/18717/23502\nf 4644/18718/23503 10290/18719/23504 4460/18720/23505\nf 4460/18721/23506 4462/18722/23507 4644/18723/23508\nf 4644/18724/23509 4462/18725/23510 4463/18726/23511\nf 4463/18727/23512 4642/18728/23513 4644/18729/23514\nf 12594/18730/23515 4642/18731/23516 4463/18732/23517\nf 4463/18733/23518 4465/18734/23519 12594/18735/23520\nf 12594/18736/23521 4465/18737/23522 4466/18738/23523\nf 4466/18739/23524 4640/18740/23525 12594/18741/23526\nf 10631/18742/23527 4640/18743/23528 4466/18744/23529\nf 4466/18745/23530 4467/18746/23531 10631/18747/23532\nf 10631/18748/23533 4467/18749/23534 4469/18750/23535\nf 4469/18751/23536 10632/18752/23537 10631/18753/23538\nf 4637/18754/23539 10632/18755/23540 4469/18756/23541\nf 4469/18757/23542 4471/18758/23543 4637/18759/23544\nf 4637/18760/23545 4471/18761/23546 4472/18762/23547\nf 4472/18763/23548 12500/18764/23549 4637/18765/23550\nf 9321/18766/23551 12500/18767/23552 4472/18768/23553\nf 4472/18769/23554 4474/18770/23555 9321/18771/23556\nf 9321/18772/23557 4474/18773/23558 4475/18774/23559\nf 4475/18775/23560 9320/18776/23561 9321/18777/23562\nf 12487/18778/23563 9320/18779/23564 4475/18780/23565\nf 4475/18781/23566 4477/18782/23567 12487/18783/23568\nf 12487/18784/23569 4477/18785/23570 4454/18786/23571\nf 4454/18787/23572 4633/18788/23573 12487/18789/23574\nf 4478/18790/23575 4521/18791/23576 4520/18792/23577\nf 4520/18793/23578 4479/18794/23579 4478/18795/23580\nf 4479/18796/23581 4520/18797/23582 4519/18798/23583\nf 4519/18799/23584 4480/18800/23585 4479/18801/23586\nf 4480/18802/23587 4519/18803/23588 4514/18804/23589\nf 4514/18805/23590 4481/18806/23591 4480/18807/23592\nf 4481/18808/23593 4514/18809/23594 4515/18810/23595\nf 4515/18811/23596 4482/18812/23597 4481/18813/23598\nf 4482/18814/23599 4515/18815/23600 13209/18816/23601\nf 13209/18817/23602 4484/18818/23603 4482/18819/23604\nf 4484/18820/23605 13209/18821/23606 4516/18822/23607\nf 4516/18823/23608 4485/18824/23609 4484/18825/23610\nf 4485/18826/23611 4516/18827/23612 4517/18828/23613\nf 4517/18829/23614 4486/18830/23615 4485/18831/23616\nf 4486/18832/23617 4517/18833/23618 13215/18834/23619\nf 13215/18835/23620 4488/18836/23621 4486/18837/23622\nf 4488/18838/23623 13215/18839/23624 4518/18840/23625\nf 4518/18841/23626 4489/18842/23627 4488/18843/23628\nf 4489/18844/23629 4518/18845/23630 12799/18846/23631\nf 12799/18847/23632 4491/18848/23633 4489/18849/23634\nf 4491/18850/23635 12799/18851/23636 9603/18852/23637\nf 9603/18853/23638 4492/18854/23639 4491/18855/23640\nf 4492/18856/23641 9603/18857/23642 9604/18858/23643\nf 9604/18859/23644 4493/18860/23645 4492/18861/23646\nf 4493/18862/23647 9604/18863/23648 12706/18864/23649\nf 12706/18865/23650 4495/18866/23651 4493/18867/23652\nf 4495/18868/23653 12706/18869/23654 4533/18870/23655\nf 4533/18871/23656 4496/18872/23657 4495/18873/23658\nf 4496/18874/23659 4533/18875/23660 12745/18876/23661\nf 12745/18877/23662 4498/18878/23663 4496/18879/23664\nf 4498/18880/23665 12745/18881/23666 4521/18882/23667\nf 4521/18883/23668 4478/18884/23669 4498/18885/23670\nf 10919/18886/23671 8795/18887/23672 10722/18888/23673\nf 10722/18889/23674 10776/18890/23675 10919/18891/23676\nf 10723/18892/23677 10722/18893/23678 8795/18894/23679\nf 8795/18895/23680 8796/18896/23681 10723/18897/23682\nf 10778/18898/23683 10723/18899/23684 8796/18900/23685\nf 8796/18901/23686 10887/18902/23687 10778/18903/23688\nf 4505/18904/23689 10778/18905/23690 10887/18906/23691\nf 10887/18907/23692 10888/18908/23693 4505/18909/23694\nf 4507/18910/23695 4505/18911/23696 10888/18912/23697\nf 10888/18913/23698 4594/18914/23699 4507/18915/23700\nf 4508/18916/23701 4507/18917/23702 4594/18918/23703\nf 4594/18919/23704 8976/18920/23705 4508/18921/23706\nf 4509/18922/23707 4508/18923/23708 8976/18924/23709\nf 8976/18925/23710 9000/18926/23711 4509/18927/23712\nf 10841/18928/23713 4509/18929/23714 9000/18930/23715\nf 9000/18931/23716 11092/18932/23717 10841/18933/23718\nf 11059/18934/23719 10841/18935/23720 11092/18936/23721\nf 11092/18937/23722 11093/18938/23723 11059/18939/23724\nf 4502/18940/23725 4503/18941/23726 11089/18942/23727\nf 11107/18943/23728 11089/18944/23729 4503/18945/23730\nf 4503/18946/23731 10779/18947/23732 11107/18948/23733\nf 10779/18949/23734 10890/18950/23735 4483/18951/23736\nf 4483/18952/23737 11107/18953/23738 10779/18954/23739\nf 10991/18955/23740 4483/18956/23741 10890/18957/23742\nf 10890/18958/23743 10859/18959/23744 10991/18960/23745\nf 10859/18961/23746 10840/18962/23747 10992/18963/23748\nf 10992/18964/23749 10991/18965/23750 10859/18966/23751\nf 4487/18967/23752 10992/18968/23753 10840/18969/23754\nf 10840/18970/23755 4510/18971/23756 4487/18972/23757\nf 4510/18973/23758 4512/18974/23759 12800/18975/23760\nf 12800/18976/23761 4487/18977/23762 4510/18978/23763\nf 11089/18979/23764 10944/18980/23765 4502/18981/23766\nf 4500/18982/23767 4502/18983/23768 10944/18984/23769\nf 10944/18985/23770 10939/18986/23771 4500/18987/23772\nf 4501/18988/23773 4500/18989/23774 10939/18990/23775\nf 10939/18991/23776 10940/18992/23777 4501/18993/23778\nf 4522/18994/23779 4501/18995/23780 10940/18996/23781\nf 10776/18997/23782 9697/18998/23783 10920/18999/23784\nf 12007/19000/23785 10920/19001/23786 9697/19002/23787\nf 9697/19003/23788 9698/19004/23789 12007/19005/23790\nf 12006/19006/23791 12007/19007/23792 9698/19008/23793\nf 9698/19009/23794 9729/19010/23795 12006/19011/23796\nf 9752/19012/23797 12006/19013/23798 9729/19014/23799\nf 9729/19015/23800 4527/19016/23801 9752/19017/23802\nf 9753/19018/23803 9752/19019/23804 4527/19020/23805\nf 4527/19021/23806 9750/19022/23807 9753/19023/23808\nf 4600/19024/23809 9753/19025/23810 9750/19026/23811\nf 9750/19027/23812 9851/19028/23813 4600/19029/23814\nf 11093/19030/23815 4600/19031/23816 9851/19032/23817\nf 9851/19033/23818 11059/19034/23819 11093/19035/23820\nf 10920/19036/23821 10919/19037/23822 10776/19038/23823\nf 4512/19039/23824 4530/19040/23825 4490/19041/23826\nf 4490/19042/23827 12800/19043/23828 4512/19044/23829\nf 4530/19045/23830 4529/19046/23831 4531/19047/23832\nf 4531/19048/23833 4490/19049/23834 4530/19050/23835\nf 4532/19051/23836 4531/19052/23837 4529/19053/23838\nf 4529/19054/23839 9749/19055/23840 4532/19056/23841\nf 9749/19057/23842 4525/19058/23843 4494/19059/23844\nf 4494/19060/23845 4532/19061/23846 9749/19062/23847\nf 12731/19063/23848 4494/19064/23849 4525/19065/23850\nf 4525/19066/23851 4524/19067/23852 12731/19068/23853\nf 4497/19069/23854 12731/19070/23855 4524/19071/23856\nf 4524/19072/23857 4522/19073/23858 4497/19074/23859\nf 10940/19075/23860 4497/19076/23861 4522/19077/23862\nf 12631/19078/23863 12622/19079/23864 9654/19080/23865\nf 9654/19081/23866 11668/19082/23867 12631/19083/23868\nf 9541/19084/23869 9654/19085/23870 12622/19086/23871\nf 12622/19087/23872 8767/19088/23873 9541/19089/23874\nf 9542/19090/23875 9541/19091/23876 8767/19092/23877\nf 8767/19093/23878 8768/19094/23879 9542/19095/23880\nf 8734/19096/23881 9542/19097/23882 8768/19098/23883\nf 8768/19099/23884 9537/19100/23885 8734/19101/23886\nf 4593/19102/23887 8734/19103/23888 9537/19104/23889\nf 9537/19105/23890 9538/19106/23891 4593/19107/23892\nf 8956/19108/23893 4593/19109/23894 9538/19110/23895\nf 9538/19111/23896 10316/19112/23897 8956/19113/23898\nf 9552/19114/23899 8956/19115/23900 10316/19116/23901\nf 10316/19117/23902 4616/19118/23903 9552/19119/23904\nf 9553/19120/23905 9552/19121/23906 4616/19122/23907\nf 4616/19123/23908 8877/19124/23909 9553/19125/23910\nf 12072/19126/23911 9553/19127/23912 8877/19128/23913\nf 8877/19129/23914 12148/19130/23915 12072/19131/23916\nf 4599/19132/23917 12072/19133/23918 12148/19134/23919\nf 12148/19135/23920 4614/19136/23921 4599/19137/23922\nf 11981/19138/23923 4599/19139/23924 4614/19140/23925\nf 4614/19141/23926 8733/19142/23927 11981/19143/23928\nf 11982/19144/23929 11981/19145/23930 8733/19146/23931\nf 8733/19147/23932 8732/19148/23933 11982/19149/23934\nf 9762/19150/23935 11982/19151/23936 8732/19152/23937\nf 8732/19153/23938 9822/19154/23939 9762/19155/23940\nf 9763/19156/23941 9762/19157/23942 9822/19158/23943\nf 9822/19159/23944 9823/19160/23945 9763/19161/23946\nf 11669/19162/23947 9763/19163/23948 9823/19164/23949\nf 9823/19165/23950 9855/19166/23951 11669/19167/23952\nf 11668/19168/23953 11669/19169/23954 9855/19170/23955\nf 9855/19171/23956 12631/19172/23957 11668/19173/23958\nf 4619/19174/23959 12775/19175/23960 9728/19176/23961\nf 9728/19177/23962 9746/19178/23963 4619/19179/23964\nf 9699/19180/23965 9728/19181/23966 12775/19182/23967\nf 12775/19183/23968 12776/19184/23969 9699/19185/23970\nf 9700/19186/23971 9699/19187/23972 12776/19188/23973\nf 12776/19189/23974 9737/19190/23975 9700/19191/23976\nf 9358/19192/23977 9700/19193/23978 9737/19194/23979\nf 9737/19195/23980 9738/19196/23981 9358/19197/23982\nf 9337/19198/23983 9358/19199/23984 9738/19200/23985\nf 9738/19201/23986 12495/19202/23987 9337/19203/23988\nf 9338/19204/23989 9337/19205/23990 12495/19206/23991\nf 12495/19207/23992 9431/19208/23993 9338/19209/23994\nf 4617/19210/23995 9338/19211/23996 9431/19212/23997\nf 9431/19213/23998 9432/19214/23999 4617/19215/24000\nf 9473/19216/24001 4617/19217/24002 9432/19218/24003\nf 9432/19219/24004 4625/19220/24005 9473/19221/24006\nf 9474/19222/24007 9473/19223/24008 4625/19224/24009\nf 4625/19225/24010 9471/19226/24011 9474/19227/24012\nf 12176/19228/24013 9474/19229/24014 9471/19230/24015\nf 9471/19231/24016 9472/19232/24017 12176/19233/24018\nf 4613/19234/24019 12176/19235/24020 9472/19236/24021\nf 9472/19237/24022 9479/19238/24023 4613/19239/24024\nf 4611/19240/24025 4613/19241/24026 9479/19242/24027\nf 9479/19243/24028 12434/19244/24029 4611/19245/24030\nf 4609/19246/24031 4611/19247/24032 12434/19248/24033\nf 12434/19249/24034 9350/19250/24035 4609/19251/24036\nf 12092/19252/24037 4609/19253/24038 9350/19254/24039\nf 9350/19255/24040 9351/19256/24041 12092/19257/24042\nf 12508/19258/24043 12092/19259/24044 9351/19260/24045\nf 9351/19261/24046 10198/19262/24047 12508/19263/24048\nf 9746/19264/24049 12508/19265/24050 10198/19266/24051\nf 10198/19267/24052 4619/19268/24053 9746/19269/24054\nf 4632/19270/24055 12368/19271/24056 4620/19272/24057\nf 4620/19273/24058 11464/19274/24059 4632/19275/24060\nf 9105/19276/24061 4620/19277/24062 12368/19278/24063\nf 12368/19279/24064 12377/19280/24065 9105/19281/24066\nf 9032/19282/24067 9105/19283/24068 12377/19284/24069\nf 12377/19285/24070 12361/19286/24071 9032/19287/24072\nf 9008/19288/24073 9032/19289/24074 12361/19290/24075\nf 12361/19291/24076 4645/19292/24077 9008/19293/24078\nf 8997/19294/24079 9008/19295/24080 4645/19296/24081\nf 4645/19297/24082 4643/19298/24083 8997/19299/24084\nf 8998/19300/24085 8997/19301/24086 4643/19302/24087\nf 4643/19303/24088 12572/19304/24089 8998/19305/24090\nf 9933/19306/24091 8998/19307/24092 12572/19308/24093\nf 12572/19309/24094 4641/19310/24095 9933/19311/24096\nf 4624/19312/24097 9933/19313/24098 4641/19314/24099\nf 4641/19315/24100 4639/19316/24101 4624/19317/24102\nf 4579/19318/24103 4624/19319/24104 4639/19320/24105\nf 4639/19321/24106 12520/19322/24107 4579/19323/24108\nf 12842/19324/24109 4579/19325/24110 12520/19326/24111\nf 12520/19327/24112 4638/19328/24113 12842/19329/24114\nf 12844/19330/24115 12842/19331/24116 4638/19332/24117\nf 4638/19333/24118 12531/19334/24119 12844/19335/24120\nf 11809/19336/24121 12844/19337/24122 12531/19338/24123\nf 12531/19339/24124 4636/19340/24125 11809/19341/24126\nf 11810/19342/24127 11809/19343/24128 4636/19344/24129\nf 4636/19345/24130 11783/19346/24131 11810/19347/24132\nf 12808/19348/24133 11810/19349/24134 11783/19350/24135\nf 11783/19351/24136 11784/19352/24137 12808/19353/24138\nf 11465/19354/24139 12808/19355/24140 11784/19356/24141\nf 11784/19357/24142 11815/19358/24143 11465/19359/24144\nf 11464/19360/24145 11465/19361/24146 11815/19362/24147\nf 11815/19363/24148 4632/19364/24149 11464/19365/24150\nf 4499/19366/24151 4589/19367/24152 4534/19368/24153\nf 4534/19369/24154 4590/19370/24155 4499/19371/24156\nf 4590/19372/24157 4534/19373/24158 4536/19374/24159\nf 4536/19375/24160 4591/19376/24161 4590/19377/24162\nf 4591/19378/24163 4536/19379/24164 4537/19380/24165\nf 4537/19381/24166 4504/19382/24167 4591/19383/24168\nf 4504/19384/24169 4537/19385/24170 4592/19386/24171\nf 4592/19387/24172 4506/19388/24173 4504/19389/24174\nf 4506/19390/24175 4592/19391/24176 8735/19392/24177\nf 8735/19393/24178 8975/19394/24179 4506/19395/24180\nf 8975/19396/24181 8735/19397/24182 4595/19398/24183\nf 4595/19399/24184 4596/19400/24185 8975/19401/24186\nf 4596/19402/24187 4595/19403/24188 4541/19404/24189\nf 4541/19405/24190 4597/19406/24191 4596/19407/24192\nf 4597/19408/24193 4541/19409/24194 4542/19410/24195\nf 4542/19411/24196 4511/19412/24197 4597/19413/24198\nf 4511/19414/24199 4542/19415/24200 4598/19416/24201\nf 4598/19417/24202 4513/19418/24203 4511/19419/24204\nf 4513/19420/24205 4598/19421/24206 12011/19422/24207\nf 12011/19423/24208 12812/19424/24209 4513/19425/24210\nf 12812/19426/24211 12011/19427/24212 4601/19428/24213\nf 4601/19429/24214 4528/19430/24215 12812/19431/24216\nf 4528/19432/24217 4601/19433/24218 4602/19434/24219\nf 4602/19435/24220 4526/19436/24221 4528/19437/24222\nf 4526/19438/24223 4602/19439/24224 4544/19440/24225\nf 4544/19441/24226 4603/19442/24227 4526/19443/24228\nf 4603/19444/24229 4544/19445/24230 4546/19446/24231\nf 4546/19447/24232 4604/19448/24233 4603/19449/24234\nf 4604/19450/24235 4546/19451/24236 4605/19452/24237\nf 4605/19453/24238 4523/19454/24239 4604/19455/24240\nf 4523/19456/24241 4605/19457/24242 4589/19458/24243\nf 4589/19459/24244 4499/19460/24245 4523/19461/24246\nf 4552/19462/24247 4606/19463/24248 4535/19464/24249\nf 4535/19465/24250 4549/19466/24251 4552/19467/24252\nf 4549/19468/24253 4535/19469/24254 4607/19470/24255\nf 4607/19471/24256 4551/19472/24257 4549/19473/24258\nf 4551/19474/24259 4607/19475/24260 4548/19476/24261\nf 4548/19477/24262 4608/19478/24263 4551/19479/24264\nf 4608/19480/24265 4548/19481/24266 4547/19482/24267\nf 4547/19483/24268 4568/19484/24269 4608/19485/24270\nf 4568/19486/24271 4547/19487/24272 4545/19488/24273\nf 4545/19489/24274 8776/19490/24275 4568/19491/24276\nf 8776/19492/24277 4545/19493/24278 4610/19494/24279\nf 4610/19495/24280 8777/19496/24281 8776/19497/24282\nf 8777/19498/24283 4610/19499/24284 4612/19500/24285\nf 4612/19501/24286 8829/19502/24287 8777/19503/24288\nf 8829/19504/24289 4612/19505/24290 8837/19506/24291\nf 8837/19507/24292 4563/19508/24293 8829/19509/24294\nf 4563/19510/24295 8837/19511/24296 4543/19512/24297\nf 4543/19513/24298 4562/19514/24299 4563/19515/24300\nf 4562/19516/24301 4543/19517/24302 4615/19518/24303\nf 4615/19519/24304 4561/19520/24305 4562/19521/24306\nf 4561/19522/24307 4615/19523/24308 8878/19524/24309\nf 8878/19525/24310 12225/19526/24311 4561/19527/24312\nf 12225/19528/24313 8878/19529/24314 4540/19530/24315\nf 4540/19531/24316 4558/19532/24317 12225/19533/24318\nf 4558/19534/24319 4540/19535/24320 4539/19536/24321\nf 4539/19537/24322 4557/19538/24323 4558/19539/24324\nf 4557/19540/24325 4539/19541/24326 4538/19542/24327\nf 4538/19543/24328 4555/19544/24329 4557/19545/24330\nf 4555/19546/24331 4538/19547/24332 4618/19548/24333\nf 4618/19549/24334 4553/19550/24335 4555/19551/24336\nf 4553/19552/24337 4618/19553/24338 4606/19554/24339\nf 4606/19555/24340 4552/19556/24341 4553/19557/24342\nf 10197/19558/24343 4571/19559/24344 12371/19560/24345\nf 12371/19561/24346 4550/19562/24347 10197/19563/24348\nf 4550/19564/24349 12371/19565/24350 4572/19566/24351\nf 4572/19567/24352 4621/19568/24353 4550/19569/24354\nf 4621/19570/24355 4572/19571/24356 4573/19572/24357\nf 4573/19573/24358 4554/19574/24359 4621/19575/24360\nf 4554/19576/24361 4573/19577/24362 4575/19578/24363\nf 4575/19579/24364 4556/19580/24365 4554/19581/24366\nf 4556/19582/24367 4575/19583/24368 4576/19584/24369\nf 4576/19585/24370 4622/19586/24371 4556/19587/24372\nf 4622/19588/24373 4576/19589/24374 4577/19590/24375\nf 4577/19591/24376 4559/19592/24377 4622/19593/24378\nf 4559/19594/24379 4577/19595/24380 4623/19596/24381\nf 4623/19597/24382 4560/19598/24383 4559/19599/24384\nf 4560/19600/24385 4623/19601/24386 9934/19602/24387\nf 9934/19603/24388 12595/19604/24389 4560/19605/24390\nf 12595/19606/24391 9934/19607/24392 12843/19608/24393\nf 12843/19609/24394 4564/19610/24395 12595/19611/24396\nf 4564/19612/24397 12843/19613/24398 4580/19614/24399\nf 4580/19615/24400 4565/19616/24401 4564/19617/24402\nf 4565/19618/24403 4580/19619/24404 4626/19620/24405\nf 4626/19621/24406 4566/19622/24407 4565/19623/24408\nf 4566/19624/24409 4626/19625/24410 4583/19626/24411\nf 4583/19627/24412 4627/19628/24413 4566/19629/24414\nf 4627/19630/24415 4583/19631/24416 4584/19632/24417\nf 4584/19633/24418 4567/19634/24419 4627/19635/24420\nf 4567/19636/24421 4584/19637/24422 4628/19638/24423\nf 4628/19639/24424 4569/19640/24425 4567/19641/24426\nf 4569/19642/24427 4628/19643/24428 4587/19644/24429\nf 4587/19645/24430 4629/19646/24431 4569/19647/24432\nf 4629/19648/24433 4587/19649/24434 4571/19650/24435\nf 4571/19651/24436 10197/19652/24437 4629/19653/24438\nf 4457/19654/24439 4630/19655/24440 4570/19656/24441\nf 4570/19657/24442 4631/19658/24443 4457/19659/24444\nf 4631/19660/24445 4570/19661/24446 12367/19662/24447\nf 12367/19663/24448 9803/19664/24449 4631/19665/24450\nf 9803/19666/24451 12367/19667/24452 4588/19668/24453\nf 4588/19669/24454 4476/19670/24455 9803/19671/24456\nf 4476/19672/24457 4588/19673/24458 4586/19674/24459\nf 4586/19675/24460 4634/19676/24461 4476/19677/24462\nf 4634/19678/24463 4586/19679/24464 4585/19680/24465\nf 4585/19681/24466 4635/19682/24467 4634/19683/24468\nf 4635/19684/24469 4585/19685/24470 12513/19686/24471\nf 12513/19687/24472 4473/19688/24473 4635/19689/24474\nf 4473/19690/24475 12513/19691/24476 4582/19692/24477\nf 4582/19693/24478 12543/19694/24479 4473/19695/24480\nf 12543/19696/24481 4582/19697/24482 12519/19698/24483\nf 12519/19699/24484 4470/19700/24485 12543/19701/24486\nf 4470/19702/24487 12519/19703/24488 4581/19704/24489\nf 4581/19705/24490 4468/19706/24491 4470/19707/24492\nf 4468/19708/24493 4581/19709/24494 9502/19710/24495\nf 9502/19711/24496 12628/19712/24497 4468/19713/24498\nf 12628/19714/24499 9502/19715/24500 9503/19716/24501\nf 9503/19717/24502 4464/19718/24503 12628/19719/24504\nf 4464/19720/24505 9503/19721/24506 4578/19722/24507\nf 4578/19723/24508 11295/19724/24509 4464/19725/24510\nf 11295/19726/24511 4578/19727/24512 11315/19728/24513\nf 11315/19729/24514 11296/19730/24515 11295/19731/24516\nf 11296/19732/24517 11315/19733/24518 11316/19734/24519\nf 11316/19735/24520 4461/19736/24521 11296/19737/24522\nf 4461/19738/24523 11316/19739/24524 4574/19740/24525\nf 4574/19741/24526 4458/19742/24527 4461/19743/24528\nf 4458/19744/24529 4574/19745/24530 4630/19746/24531\nf 4630/19747/24532 4457/19748/24533 4458/19749/24534\nf 11307/1716/24535 11220/373/24536 11218/4722/24537\nf 11218/4722/24538 12934/1852/24539 11307/1716/24540\nf 11221/3189/24541 13258/6199/24542 13102/931/24543\nf 13102/931/24544 4647/3702/24545 11221/3189/24546\nf 4719/1085/24547 13102/931/24548 13258/6199/24549\nf 13258/6199/24550 4672/5752/24551 4719/1085/24552\nf 11189/3309/24553 4719/1085/24554 4672/5752/24555\nf 4672/5752/24556 13242/4018/24557 11189/3309/24558\nf 11190/2412/24559 11189/3309/24560 13242/4018/24561\nf 13242/4018/24562 4664/1143/24563 11190/2412/24564\nf 4723/4303/24565 11190/2412/24566 4664/1143/24567\nf 4664/1143/24568 11175/1357/24569 4723/4303/24570\nf 4723/4303/24571 11175/1357/24572 11176/3548/24573\nf 11176/3548/24574 10330/5881/24575 4723/4303/24576\nf 10710/4240/24577 10330/5881/24578 11176/3548/24579\nf 11176/3548/24580 4657/2938/24581 10710/4240/24582\nf 4656/5494/24583 4658/2523/24584 13249/4482/24585\nf 13249/4482/24586 4655/5977/24587 4656/5494/24588\nf 4659/3282/24589 4656/5494/24590 4655/5977/24591\nf 4655/5977/24592 4654/2737/24593 4659/3282/24594\nf 4656/5494/24595 4659/3282/24596 4660/4450/24597\nf 4660/4450/24598 4661/4562/24599 4656/5494/24600\nf 4658/2523/24601 4656/5494/24602 4661/4562/24603\nf 4661/4562/24604 4662/1795/24605 4658/2523/24606\nf 4663/70/24607 4659/3282/24608 4654/2737/24609\nf 4654/2737/24610 13243/2050/24611 4663/70/24612\nf 4665/2644/24613 4663/70/24614 13243/2050/24615\nf 13243/2050/24616 4652/3742/24617 4665/2644/24618\nf 4666/1109/24619 4663/70/24620 4665/2644/24621\nf 4666/1109/24622 4660/4450/24623 4659/3282/24624\nf 4659/3282/24625 4663/70/24626 4666/1109/24627\nf 4665/2644/24628 4667/4775/24629 4666/1109/24630\nf 4660/4450/24631 4666/1109/24632 11130/1493/24633\nf 11130/1493/24634 11129/211/24635 4660/4450/24636\nf 4661/4562/24637 4660/4450/24638 11129/211/24639\nf 11129/211/24640 11793/2431/24641 4661/4562/24642\nf 4662/1795/24643 4661/4562/24644 11793/2431/24645\nf 11793/2431/24646 11794/962/24647 4662/1795/24648\nf 11177/2436/24649 11130/1493/24650 4666/1109/24651\nf 4666/1109/24652 4667/4775/24653 11177/2436/24654\nf 4671/4073/24655 4665/2644/24656 4652/3742/24657\nf 4667/4775/24658 4665/2644/24659 4671/4073/24660\nf 4652/3742/24661 13245/3345/24662 4671/4073/24663\nf 4673/2663/24664 4671/4073/24665 13245/3345/24666\nf 13245/3345/24667 4650/5830/24668 4673/2663/24669\nf 4674/6304/24670 4673/2663/24671 4650/5830/24672\nf 4650/5830/24673 4648/3388/24674 4674/6304/24675\nf 4675/2734/24676 4674/6304/24677 4648/3388/24678\nf 4648/3388/24679 4676/6272/24680 4675/2734/24681\nf 4674/6304/24682 4675/2734/24683 4677/2666/24684\nf 4677/2666/24685 4678/3704/24686 4674/6304/24687\nf 12935/901/24688 4676/6272/24689 4648/3388/24690\nf 4648/3388/24691 4646/6533/24692 12935/901/24693\nf 13041/1557/24694 4676/6272/24695 12935/901/24696\nf 4675/2734/24697 4676/6272/24698 13041/1557/24699\nf 12935/901/24700 12943/518/24701 13041/1557/24702\nf 4678/3704/24703 4677/2666/24704 13083/6470/24705\nf 13083/6470/24706 4695/120/24707 4678/3704/24708\nf 4734/4352/24709 4677/2666/24710 4675/2734/24711\nf 4675/2734/24712 4731/6535/24713 4734/4352/24714\nf 13041/1557/24715 4731/6535/24716 4675/2734/24717\nf 10523/365/24718 13083/6470/24719 4677/2666/24720\nf 4677/2666/24721 4734/4352/24722 10523/365/24723\nf 4678/3704/24724 4681/4033/24725 4674/6304/24726\nf 4681/4033/24727 4682/2627/24728 4674/6304/24729\nf 4678/3704/24730 4695/120/24731 10853/1070/24732\nf 10853/1070/24733 4681/4033/24734 4678/3704/24735\nf 4682/2627/24736 4681/4033/24737 10853/1070/24738\nf 10853/1070/24739 10898/5785/24740 4682/2627/24741\nf 4683/3064/24742 4682/2627/24743 10898/5785/24744\nf 4682/2627/24745 4683/3064/24746 4673/2663/24747\nf 4671/4073/24748 4673/2663/24749 4683/3064/24750\nf 4683/3064/24751 4684/5756/24752 4671/4073/24753\nf 4684/5756/24754 4683/3064/24755 10897/4544/24756\nf 10898/5785/24757 10897/4544/24758 4683/3064/24759\nf 10897/4544/24760 11178/596/24761 4684/5756/24762\nf 4673/2663/24763 4674/6304/24764 4682/2627/24765\nf 4671/4073/24766 4684/5756/24767 4667/4775/24768\nf 4667/4775/24769 4684/5756/24770 11178/596/24771\nf 11178/596/24772 11177/2436/24773 4667/4775/24774\nf 4668/3137/24775 4686/126/24776 10672/926/24777\nf 10672/926/24778 4705/3175/24779 4668/3137/24780\nf 4669/4662/24781 4668/3137/24782 4705/3175/24783\nf 4705/3175/24784 13137/5799/24785 4669/4662/24786\nf 10657/1808/24787 10672/926/24788 4686/126/24789\nf 4686/126/24790 4688/823/24791 10657/1808/24792\nf 10656/4436/24793 10657/1808/24794 4688/823/24795\nf 4688/823/24796 4670/3795/24797 10656/4436/24798\nf 13147/2756/24799 10656/4436/24800 4670/3795/24801\nf 4670/3795/24802 4685/2275/24803 13147/2756/24804\nf 4697/6173/24805 13147/2756/24806 4685/2275/24807\nf 4685/2275/24808 4690/4180/24809 4697/6173/24810\nf 4708/6407/24811 4697/6173/24812 4690/4180/24813\nf 4690/4180/24814 4691/2366/24815 4708/6407/24816\nf 4692/1177/24817 4708/6407/24818 4691/2366/24819\nf 4691/2366/24820 4693/2065/24821 4692/1177/24822\nf 13092/3535/24823 4692/1177/24824 4693/2065/24825\nf 4693/2065/24826 10854/1293/24827 13092/3535/24828\nf 4696/4965/24829 4689/715/24830 10681/3653/24831\nf 10681/3653/24832 4698/366/24833 4696/4965/24834\nf 4699/5218/24835 4689/715/24836 4696/4965/24837\nf 4696/4965/24838 4700/3768/24839 4699/5218/24840\nf 4701/2545/24841 4699/5218/24842 4700/3768/24843\nf 4700/3768/24844 4702/1500/24845 4701/2545/24846\nf 4703/6446/24847 4701/2545/24848 4702/1500/24849\nf 4702/1500/24850 4704/2975/24851 4703/6446/24852\nf 10673/2840/24853 4703/6446/24854 4704/2975/24855\nf 4704/2975/24856 4706/4630/24857 10673/2840/24858\nf 4687/3992/24859 10673/2840/24860 4706/4630/24861\nf 4707/6313/24862 4698/366/24863 10681/3653/24864\nf 10681/3653/24865 4708/5889/24866 4707/6313/24867\nf 4709/597/24868 4707/6313/24869 4708/5889/24870\nf 4708/5889/24871 4692/4552/24872 4709/597/24873\nf 4710/4319/24874 4709/597/24875 4692/4552/24876\nf 4692/4552/24877 13092/2486/24878 4710/4319/24879\nf 11307/2283/24880 12934/6504/24881 10103/195/24882\nf 10103/195/24883 4679/2578/24884 11307/2283/24885\nf 12942/4903/24886 4679/2578/24887 10103/195/24888\nf 10103/195/24889 10104/4826/24890 12942/4903/24891\nf 4711/3185/24892 4714/6008/24893 12994/5021/24894\nf 12994/5021/24895 10105/3139/24896 4711/3185/24897\nf 4715/892/24898 4714/6008/24899 4711/3185/24900\nf 4711/3185/24901 4716/5082/24902 4715/892/24903\nf 11219/5989/24904 13328/1427/24905 4715/3497/24906\nf 4715/3497/24907 4716/4631/24908 11219/5989/24909\nf 4717/985/24910 13328/4399/24911 11219/2554/24912\nf 11219/2554/24913 4649/2901/24914 4717/985/24915\nf 4717/985/24916 4649/2901/24917 13107/3598/24918\nf 13107/3598/24919 4720/639/24920 4717/985/24921\nf 4720/639/24922 13107/3598/24923 4651/6195/24924\nf 4651/6195/24925 4721/2558/24926 4720/639/24927\nf 4721/2558/24928 4651/6195/24929 4653/2287/24930\nf 4653/2287/24931 4722/6455/24932 4721/2558/24933\nf 4722/6455/24934 4653/2287/24935 10329/6489/24936\nf 10329/6489/24937 4724/793/24938 4722/6455/24939\nf 4725/5809/24940 4724/793/24941 10329/6489/24942\nf 10329/6489/24943 4726/1466/24944 4725/5809/24945\nf 12511/3314/24946 4725/5809/24947 4726/1466/24948\nf 4726/1466/24949 4727/1653/24950 12511/3314/24951\nf 4712/6189/24952 12995/2606/24953 4728/4624/24954\nf 4680/5869/24955 4728/4624/24956 12995/2606/24957\nf 4680/5869/24958 12995/2606/24959 4729/1398/24960\nf 4680/5869/24961 4729/1398/24962 4730/4320/24963\nf 10466/4354/24964 4680/5869/24965 4730/4320/24966\nf 4730/4320/24967 4732/5123/24968 10466/4354/24969\nf 10466/4354/24970 4732/5123/24971 4733/6251/24972\nf 4733/6251/24973 10467/895/24974 10466/4354/24975\nf 10467/895/24976 4733/6251/24977 10522/3523/24978\nf 13092/3535/24979 10854/1293/24980 4736/4926/24981\nf 13082/19750/24982 4737/2389/24983 4694/19751/24984\nf 4738/4891/24985 4737/2389/24986 13082/19752/24987\nf 13082/19753/24988 4735/3648/24989 4738/4891/24990\nf 10980/5085/24991 13234/1467/24992 4739/2173/24993\nf 4739/2173/24994 4747/5117/24995 10980/5085/24996\nf 4740/19754/24997 10982/19755/24998 10984/1475/24999\nf 10984/1475/25000 10987/6140/25001 4740/19756/25002\nf 4742/19757/25003 10985/19758/25004 11007/3244/25005\nf 11007/3244/25006 4744/1499/25007 4742/19759/25008\nf 9865/2589/25009 10993/2878/25010 10981/4326/25011\nf 10981/4326/25012 4747/3371/25013 9865/2589/25014\nf 13199/1596/25015 4765/2461/25016 4743/5507/25017\nf 4743/5507/25018 10986/2199/25019 13199/1596/25020\nf 4759/929/25021 4749/1600/25022 4748/214/25023\nf 4748/214/25024 4797/427/25025 4759/929/25026\nf 4748/214/25027 4749/1600/25028 4744/3995/25029\nf 4744/3995/25030 11007/3972/25031 4748/214/25032\nf 11470/4016/25033 13135/19760/25034 4748/214/25035\nf 4748/214/25036 11007/3972/25037 11470/4016/25038\nf 4750/3769/25039 4752/3891/25040 12588/4353/25041\nf 12588/4353/25042 4781/4267/25043 4750/3769/25044\nf 4739/3096/25045 4752/3891/25046 4750/3769/25047\nf 4750/3769/25048 4747/5681/25049 4739/3096/25050\nf 4747/5681/25051 4750/3769/25052 4781/4267/25053\nf 4781/4267/25054 9865/4146/25055 4747/5681/25056\nf 13200/19761/25057 4741/19762/25058 4745/19763/25059\nf 4745/19764/25060 10994/19765/25061 13200/19766/25062\nf 4783/4388/25063 11598/4601/25064 11602/4131/25065\nf 11602/4131/25066 4775/330/25067 4783/4388/25068\nf 11599/3088/25069 11598/4601/25070 4783/4388/25071\nf 4783/4388/25072 12751/5673/25073 11599/3088/25074\nf 11613/6009/25075 11600/19767/25076 4784/19768/25077\nf 4784/19769/25078 4779/1067/25079 11613/6009/25080\nf 4758/696/25081 4775/330/25082 11602/4131/25083\nf 11602/4131/25084 4773/1407/25085 4758/696/25086\nf 4767/4811/25087 11613/6009/25088 4779/1067/25089\nf 4779/1067/25090 4776/1044/25091 4767/4811/25092\nf 13134/19770/25093 13135/19771/25094 4798/6363/25095\nf 4798/6363/25096 4760/2707/25097 13134/19772/25098\nf 4760/2707/25099 4798/6363/25100 4799/3332/25101\nf 4799/3332/25102 4804/1781/25103 4760/2707/25104\nf 4761/5202/25105 4762/4046/25106 4800/6542/25107\nf 4800/6542/25108 13276/1648/25109 4761/5202/25110\nf 4746/2976/25111 4800/6542/25112 4762/4046/25113\nf 4762/4046/25114 4763/4971/25115 4746/2976/25116\nf 4753/3404/25117 4746/2976/25118 4763/4971/25119\nf 4763/4971/25120 4764/3232/25121 4753/3404/25122\nf 11469/1129/25123 4753/3404/25124 4764/3232/25125\nf 4764/3232/25126 4766/6299/25127 11469/1129/25128\nf 11472/1025/25129 11469/1129/25130 4766/6299/25131\nf 4766/6299/25132 4768/6518/25133 11472/1025/25134\nf 4761/5202/25135 13276/1648/25136 4754/2807/25137\nf 4754/2807/25138 4769/1024/25139 4761/5202/25140\nf 4770/2078/25141 4769/1024/25142 4754/2807/25143\nf 4754/2807/25144 4755/1140/25145 4770/2078/25146\nf 4771/5713/25147 4770/2078/25148 4755/1140/25149\nf 4755/1140/25150 4756/941/25151 4771/5713/25152\nf 4772/3020/25153 4771/5713/25154 4756/941/25155\nf 4756/941/25156 4757/4097/25157 4772/3020/25158\nf 4757/4097/25159 11472/1025/25160 4768/6518/25161\nf 4768/6518/25162 4772/3020/25163 4757/4097/25164\nf 4802/3366/25165 4758/696/25166 4773/1407/25167\nf 4773/1407/25168 9866/645/25169 4802/3366/25170\nf 11348/18/25171 4790/4247/25172 4783/4388/25173\nf 4783/4388/25174 4775/330/25175 11348/18/25176\nf 4776/1044/25177 4796/469/25178 11471/1872/25179\nf 11471/1872/25180 4767/4811/25181 4776/1044/25182\nf 4777/5203/25183 4778/4759/25184 4779/1067/25185\nf 4779/1067/25186 4784/19773/25187 4777/5203/25188\nf 4776/1044/25189 4779/1067/25190 4778/4759/25191\nf 4778/4759/25192 4782/2889/25193 4776/1044/25194\nf 4751/19774/25195 4780/4828/25196 9826/2462/25197\nf 9826/2462/25198 12549/19775/25199 4751/19776/25200\nf 4803/2991/25201 9826/2462/25202 4780/4828/25203\nf 4780/4828/25204 4806/4946/25205 4803/2991/25206\nf 4758/696/25207 4802/3366/25208 9636/2116/25209\nf 9636/2116/25210 4795/851/25211 4758/696/25212\nf 4776/1044/25213 4782/487/25214 12641/2808/25215\nf 12641/2808/25216 4796/469/25217 4776/1044/25218\nf 4783/4388/25219 4790/3943/25220 4777/4411/25221\nf 4777/4411/25222 12751/5673/25223 4783/4388/25224\nf 12743/3351/25225 4795/5859/25226 9636/3714/25227\nf 9636/3714/25228 9637/6254/25229 12743/3351/25230\nf 12640/5496/25231 12641/4625/25232 4782/2682/25233\nf 4782/2682/25234 4794/2071/25235 12640/5496/25236\nf 12656/3170/25237 4791/3931/25238 4790/6047/25239\nf 4790/6047/25240 11348/367/25241 12656/3170/25242\nf 4790/6047/25243 4791/3931/25244 4792/4329/25245\nf 4792/4329/25246 4777/4732/25247 4790/6047/25248\nf 4778/960/25249 4777/4732/25250 4792/4329/25251\nf 4792/4329/25252 4793/3872/25253 4778/960/25254\nf 4789/19777/25255 4774/19778/25256 4795/5859/25257\nf 4795/5859/25258 4785/19779/25259 4789/19780/25260\nf 4778/960/25261 12850/19781/25262 12673/19782/25263\nf 12673/19783/25264 4782/2682/25265 4778/960/25266\nf 4795/1199/25267 4774/3183/25268 4775/330/25269\nf 4775/330/25270 4758/696/25271 4795/1199/25272\nf 12764/19784/25273 4798/802/25274 13135/2812/25275\nf 13135/2812/25276 11470/19785/25277 12764/19786/25278\nf 4798/802/25279 12764/19787/25280 4805/982/25281\nf 4805/982/25282 4799/5267/25283 4798/802/25284\nf 9865/19788/25285 4781/4721/25286 4801/6348/25287\nf 4801/6348/25288 9867/19789/25289 9865/19790/25290\nf 9867/19791/25291 4801/6348/25292 4803/3926/25293\nf 4803/3926/25294 4786/3606/25295 9867/19792/25296\nf 4788/19793/25297 4804/824/25298 4799/1717/25299\nf 4799/1717/25300 4805/19794/25301 4788/19795/25302\nf 4787/19796/25303 4786/19797/25304 4803/5816/25305\nf 4803/5816/25306 4806/2192/25307 4787/19798/25308\nf 12245/19799/25309 4833/19800/25310 4869/19801/25311\nf 4869/19802/25312 12253/19803/25313 12245/19804/25314\nf 4807/19805/25315 8716/19806/25316 8717/19807/25317\nf 8717/19808/25318 4879/19809/25319 4807/19810/25320\nf 8716/19811/25321 4807/19812/25322 4881/19813/25323\nf 4881/19814/25324 12055/19815/25325 8716/19816/25326\nf 12055/19817/25327 4881/19818/25328 8984/19819/25329\nf 8984/19820/25330 11994/19821/25331 12055/19822/25332\nf 11994/19823/25333 8984/19824/25334 8985/19825/25335\nf 8985/19826/25336 9054/19827/25337 11994/19828/25338\nf 9054/19829/25339 8985/19830/25340 4885/19831/25341\nf 4885/19832/25342 4817/19833/25343 9054/19834/25344\nf 4814/19835/25345 4817/19836/25346 4885/19837/25347\nf 4885/19838/25348 4887/19839/25349 4814/19840/25350\nf 12480/19841/25351 4814/19842/25352 4887/19843/25353\nf 4887/19844/25354 12493/19845/25355 12480/19846/25356\nf 4813/19847/25357 9237/19848/25358 4811/19849/25359\nf 4811/19850/25360 4815/19851/25361 4813/19852/25362\nf 9237/19853/25363 4813/19854/25364 4816/19855/25365\nf 4816/19856/25366 9053/19857/25367 9237/19858/25368\nf 4818/19859/25369 4816/19860/25370 4813/19861/25371\nf 4813/19862/25372 4819/19863/25373 4818/19864/25374\nf 4819/19865/25375 4813/19866/25376 4815/19867/25377\nf 4815/19868/25378 4820/19869/25379 4819/19870/25380\nf 9053/19871/25381 4816/19872/25382 4821/19873/25383\nf 4821/19874/25384 4822/19875/25385 9053/19876/25386\nf 4822/19877/25387 4821/19878/25388 4823/19879/25389\nf 4823/19880/25390 4824/19881/25391 4822/19882/25392\nf 4823/19883/25393 4821/19884/25394 4825/19885/25395\nf 4825/19886/25396 4821/19887/25397 4816/19888/25398\nf 4816/19889/25399 4818/19890/25400 4825/19891/25401\nf 4825/19892/25402 4826/19893/25403 4823/19894/25404\nf 13335/19895/25405 4825/19896/25406 4818/19897/25407\nf 4818/19898/25408 4844/19899/25409 13335/19900/25410\nf 4844/19901/25411 4818/19902/25412 4819/19903/25413\nf 4819/19904/25414 12183/19905/25415 4844/19906/25416\nf 4845/19907/25417 12183/19908/25418 4819/19909/25419\nf 4819/19910/25420 4820/19911/25421 4845/19912/25422\nf 8755/19913/25423 4826/19914/25424 4825/19915/25425\nf 4825/19916/25426 13335/19917/25427 8755/19918/25428\nf 4824/19919/25429 4823/19920/25430 4829/19921/25431\nf 4829/19922/25432 4823/19923/25433 4826/19924/25434\nf 4829/19925/25435 4808/19926/25436 4824/19927/25437\nf 4808/19928/25438 4829/19929/25439 4830/19930/25440\nf 4830/19931/25441 4831/19932/25442 4808/19933/25443\nf 4831/19934/25444 4830/19935/25445 4832/19936/25446\nf 4832/19937/25447 8718/19938/25448 4831/19939/25449\nf 8718/19940/25450 4832/19941/25451 4834/19942/25452\nf 4834/19943/25453 4835/19944/25454 8718/19945/25455\nf 4836/19946/25456 4834/19947/25457 4832/19948/25458\nf 4832/19949/25459 4837/19950/25460 4836/19951/25461\nf 8718/19952/25462 4835/19953/25463 9003/19954/25464\nf 9003/19955/25465 9291/19956/25466 8718/19957/25467\nf 9003/19958/25468 4835/19959/25469 4889/19960/25470\nf 4889/19961/25471 4835/19962/25472 4834/19963/25473\nf 4889/19964/25474 9004/19965/25475 9003/19966/25476\nf 4897/19967/25477 4836/19968/25478 4837/19969/25479\nf 4837/19970/25480 11718/19971/25481 4897/19972/25482\nf 4834/19973/25483 4836/19974/25484 4895/19975/25485\nf 4895/19976/25486 10029/19977/25487 4834/19978/25488\nf 4834/19979/25489 10029/19980/25490 4889/19981/25491\nf 9972/19982/25492 4895/19983/25493 4836/19984/25494\nf 4836/19985/25495 4897/19986/25496 9972/19987/25497\nf 4837/19988/25498 4832/19989/25499 4839/19990/25500\nf 4839/19991/25501 4832/19992/25502 4840/19993/25503\nf 4840/19994/25504 4832/19995/25505 4830/19996/25506\nf 4830/19997/25507 4841/19998/25508 4840/19999/25509\nf 4841/20000/25510 4830/20001/25511 4829/20002/25512\nf 4829/20003/25513 4842/20004/25514 4841/20005/25515\nf 8783/20006/25516 4841/20007/25517 4842/20008/25518\nf 4842/20009/25519 8756/20010/25520 8783/20011/25521\nf 4826/20012/25522 4842/20013/25523 4829/20014/25524\nf 8756/20015/25525 4842/20016/25526 4826/20017/25527\nf 4826/20018/25528 8755/20019/25529 8756/20020/25530\nf 4841/20021/25531 8783/20022/25532 8858/20023/25533\nf 8858/20024/25534 4840/20025/25535 4841/20026/25536\nf 4840/20027/25537 8858/20028/25538 11720/20029/25539\nf 11720/20030/25540 4839/20031/25541 4840/20032/25542\nf 4837/20033/25543 4839/20034/25544 11720/20035/25545\nf 11720/20036/25546 11718/20037/25547 4837/20038/25548\nf 4828/20039/25549 4862/20040/25550 4860/20041/25551\nf 4860/20042/25552 12204/20043/25553 4828/20044/25554\nf 4862/20045/25555 4828/20046/25556 12184/20047/25557\nf 12184/20048/25558 12462/20049/25559 4862/20050/25560\nf 12204/20051/25561 4860/20052/25562 12421/20053/25563\nf 12421/20054/25564 4827/20055/25565 12204/20056/25566\nf 4827/20057/25567 12421/20058/25568 4857/20059/25569\nf 4857/20060/25570 4848/20061/25571 4827/20062/25572\nf 4848/20063/25573 4857/20064/25574 4854/20065/25575\nf 4854/20066/25576 4849/20067/25577 4848/20068/25578\nf 4849/20069/25579 4854/20070/25580 4855/20071/25581\nf 4855/20072/25582 4850/20073/25583 4849/20074/25584\nf 4850/20075/25585 4855/20076/25586 4865/20077/25587\nf 4865/20078/25588 4851/20079/25589 4850/20080/25590\nf 4851/20081/25591 4865/20082/25592 4867/20083/25593\nf 4867/20084/25594 4843/20085/25595 4851/20086/25596\nf 4843/20087/25597 4867/20088/25598 4852/20089/25599\nf 4852/20090/25600 11719/20091/25601 4843/20092/25602\nf 4853/20093/25603 4855/20094/25604 4854/20095/25605\nf 4854/20096/25606 4856/20097/25607 4853/20098/25608\nf 4856/20099/25609 4854/20100/25610 12018/20101/25611\nf 12018/20102/25612 4858/20103/25613 4856/20104/25614\nf 4858/20105/25615 12018/20106/25616 4847/20107/25617\nf 4847/20108/25618 4859/20109/25619 4858/20110/25620\nf 4859/20111/25621 4847/20112/25622 9269/20113/25623\nf 9269/20114/25624 4861/20115/25625 4859/20116/25626\nf 4861/20117/25627 9269/20118/25628 9270/20119/25629\nf 9270/20120/25630 4863/20121/25631 4861/20122/25632\nf 4846/20123/25633 4863/20124/25634 9270/20125/25635\nf 4855/20126/25636 4853/20127/25637 4864/20128/25638\nf 4864/20129/25639 4865/20130/25640 4855/20131/25641\nf 4865/20132/25642 4864/20133/25643 4866/20134/25644\nf 4866/20135/25645 4867/20136/25646 4865/20137/25647\nf 4867/20138/25648 4866/20139/25649 4868/20140/25650\nf 4868/20141/25651 4852/20142/25652 4867/20143/25653\nf 4869/20144/25654 4870/20145/25655 4874/20146/25656\nf 4874/20147/25657 12253/20148/25658 4869/20149/25659\nf 4874/20150/25660 4870/20151/25661 9005/20152/25662\nf 9005/20153/25663 9089/20154/25664 4874/20155/25665\nf 9090/20156/25666 12402/20157/25667 4873/20158/25668\nf 4873/20159/25669 9091/20160/25670 9090/20161/25671\nf 9091/20162/25672 4873/20163/25673 4875/20164/25674\nf 4875/20165/25675 4877/20166/25676 9091/20167/25677\nf 4875/20168/25678 12823/20169/25679 12244/20170/25680\nf 12244/20171/25681 4877/20172/25682 4875/20173/25683\nf 4878/20174/25684 12395/20175/25685 12244/20176/25686\nf 12244/20177/25687 12823/20178/25688 4878/20179/25689\nf 12395/20180/25690 4878/20181/25691 4880/20182/25692\nf 4880/20183/25693 12293/20184/25694 12395/20185/25695\nf 12293/20186/25696 4880/20187/25697 4882/20188/25698\nf 4882/20189/25699 4809/20190/25700 12293/20191/25701\nf 4809/20192/25702 4882/20193/25703 4883/20194/25704\nf 4883/20195/25705 4810/20196/25706 4809/20197/25707\nf 4810/20198/25708 4883/20199/25709 4884/20200/25710\nf 4884/20201/25711 9930/20202/25712 4810/20203/25713\nf 9930/20204/25714 4884/20205/25715 4886/20206/25716\nf 4886/20207/25717 9931/20208/25718 9930/20209/25719\nf 9931/20210/25720 4886/20211/25721 12831/20212/25722\nf 12831/20213/25723 12494/20214/25724 9931/20215/25725\nf 4871/20216/25726 12401/20217/25727 4872/20218/25728\nf 10028/20219/25729 12401/20220/25730 4871/20221/25731\nf 10028/20222/25732 4890/20223/25733 12401/20224/25734\nf 4890/20225/25735 4891/20226/25736 12401/20227/25737\nf 4890/20228/25738 10028/20229/25739 4892/20230/25740\nf 4892/20231/25741 4893/20232/25742 4890/20233/25743\nf 4894/20234/25744 4893/20235/25745 4892/20236/25746\nf 4892/20237/25747 10072/20238/25748 4894/20239/25749\nf 4899/20240/25750 4894/20241/25751 10072/20242/25752\nf 12889/20243/25753 9970/20244/25754 4838/20245/25755\nf 11719/20246/25756 4852/20247/25757 4896/20248/25758\nf 9970/20249/25759 12889/20250/25760 4898/20251/25761\nf 4898/20252/25762 9971/20253/25763 9970/20254/25764\nf 4912/20255/25765 4911/20256/25766 4900/20257/25767\nf 4900/20258/25768 12665/20259/25769 4912/20260/25770\nf 12556/20261/25771 12666/20262/25772 12663/20263/25773\nf 12663/20264/25774 12712/20265/25775 12556/20266/25776\nf 12557/20267/25777 4901/20268/25778 4908/20269/25779\nf 4908/20270/25780 12657/20271/25781 12557/20272/25782\nf 12758/20273/25783 4912/20274/25784 4902/20275/25785\nf 4902/20276/25786 4924/20277/25787 12758/20278/25788\nf 12553/20279/25789 12555/20280/25790 4907/20281/25791\nf 4907/20282/25792 12660/20283/25793 12553/20284/25794\nf 12615/20285/25795 4920/20286/25796 4905/20287/25797\nf 4905/20288/25798 4906/20289/25799 12615/20290/25800\nf 4906/20291/25801 4905/20292/25802 12657/20293/25803\nf 12657/20294/25804 4908/20295/25805 4906/20296/25806\nf 12659/20297/25807 12657/20298/25808 4905/20299/25809\nf 4905/20300/25810 12607/20301/25811 12659/20302/25812\nf 4942/20303/25813 4910/20304/25814 4909/20305/25815\nf 4909/20306/25816 10527/20307/25817 4942/20308/25818\nf 4909/20309/25819 4910/20310/25820 4911/20311/25821\nf 4911/20312/25822 4912/20313/25823 4909/20314/25824\nf 10527/20315/25825 4909/20316/25826 4912/20317/25827\nf 4912/20318/25828 12758/20319/25829 10527/20320/25830\nf 12554/20321/25831 12561/20322/25832 12664/20323/25833\nf 12664/20324/25834 4913/20325/25835 12554/20326/25836\nf 4936/20327/25837 4938/20328/25838 4930/20329/25839\nf 4930/20330/25840 11108/20331/25841 4936/20332/25842\nf 4936/20333/25843 11108/20334/25844 11109/20335/25845\nf 11109/20336/25846 4948/20337/25847 4936/20338/25848\nf 10848/20339/25849 11110/20340/25850 11131/20341/25851\nf 11131/20342/25852 4917/20343/25853 10848/20344/25854\nf 4930/20345/25855 4938/20346/25856 4961/20347/25857\nf 4961/20348/25858 13224/20349/25859 4930/20350/25860\nf 4917/20351/25861 11131/20352/25862 13239/20353/25863\nf 13239/20354/25864 4941/20355/25865 4917/20356/25866\nf 4904/20357/25867 4919/20358/25868 4918/20359/25869\nf 4918/20360/25870 12607/20361/25871 4904/20362/25872\nf 4965/20363/25873 4918/20364/25874 4919/20365/25875\nf 4919/20366/25876 4921/20367/25877 4965/20368/25878\nf 4922/20369/25879 4934/20370/25880 4962/20371/25881\nf 4962/20372/25882 4923/20373/25883 4922/20374/25884\nf 4923/20375/25885 4962/20376/25886 12560/20377/25887\nf 12560/20378/25888 4925/20379/25889 4923/20380/25890\nf 4925/20381/25891 12560/20382/25892 4903/20383/25893\nf 4903/20384/25894 4926/20385/25895 4925/20386/25896\nf 4926/20387/25897 4903/20388/25898 4940/20389/25899\nf 4940/20390/25900 4927/20391/25901 4926/20392/25902\nf 4927/20393/25903 4940/20394/25904 4939/20395/25905\nf 4939/20396/25906 4928/20397/25907 4927/20398/25908\nf 4934/20399/25909 4922/20400/25910 4929/20401/25911\nf 4929/20402/25912 13223/20403/25913 4934/20404/25914\nf 13223/20405/25915 4929/20406/25916 4931/20407/25917\nf 4931/20408/25918 4914/20409/25919 13223/20410/25920\nf 4914/20411/25921 4931/20412/25922 4932/20413/25923\nf 4932/20414/25924 4915/20415/25925 4914/20416/25926\nf 4915/20417/25927 4932/20418/25928 4933/20419/25929\nf 4933/20420/25930 4916/20421/25931 4915/20422/25932\nf 4916/20423/25933 4933/20424/25934 4928/20425/25935\nf 4928/20426/25936 4939/20427/25937 4916/20428/25938\nf 4935/20429/25939 12759/20430/25940 13224/20431/25941\nf 13224/20432/25942 4961/20433/25943 4935/20434/25944\nf 4936/20435/25945 4937/20436/25946 4955/20437/25947\nf 4955/20438/25948 4938/20439/25949 4936/20440/25950\nf 4941/20441/25951 13239/20442/25952 12658/20443/25953\nf 12658/20444/25954 12956/20445/25955 4941/20446/25956\nf 4917/20447/25957 4958/20448/25958 4947/20449/25959\nf 4947/20450/25960 10848/20451/25961 4917/20452/25962\nf 4941/20453/25963 4951/20454/25964 4958/20455/25965\nf 4958/20456/25966 4917/20457/25967 4941/20458/25968\nf 10526/20459/25969 4944/20460/25970 10554/20461/25971\nf 10554/20462/25972 4945/20463/25973 10526/20464/25974\nf 4945/20465/25975 10554/20466/25976 4966/20467/25977\nf 4966/20468/25978 4946/20469/25979 4945/20470/25980\nf 4961/20471/25981 4960/20472/25982 12893/20473/25983\nf 12893/20474/25984 4935/20475/25985 4961/20476/25986\nf 12916/20477/25987 4951/20478/25988 4941/20479/25989\nf 4941/20480/25990 12956/20481/25991 12916/20482/25992\nf 4947/20483/25993 4937/20484/25994 4936/20485/25995\nf 4936/20486/25996 4948/20487/25997 4947/20488/25998\nf 12992/20489/25999 4967/20490/26000 12893/20491/26001\nf 12893/20492/26002 4960/20493/26003 12992/20494/26004\nf 4964/20495/26005 10818/20496/26006 4951/20497/26007\nf 4951/20498/26008 12916/20499/26009 4964/20500/26010\nf 10860/20501/26011 4955/20502/26012 4937/20503/26013\nf 4937/20504/26014 4956/20505/26015 10860/20506/26016\nf 4956/20507/26017 4937/20508/26018 4947/20509/26019\nf 4947/20510/26020 4957/20511/26021 4956/20512/26022\nf 4957/20513/26023 4947/20514/26024 4958/20515/26025\nf 4958/20516/26026 10361/20517/26027 4957/20518/26028\nf 10861/20519/26029 4954/20520/26030 4949/20521/26031\nf 4949/20522/26032 4960/20523/26033 10861/20524/26034\nf 4959/20525/26035 4958/20526/26036 4951/20527/26037\nf 4951/20528/26038 4952/20529/26039 4959/20530/26040\nf 4938/20531/26041 10861/20532/26042 4960/20533/26043\nf 4960/20534/26044 4961/20535/26045 4938/20536/26046\nf 12607/20537/26047 4918/20538/26048 4963/20539/26049\nf 4963/20540/26050 12659/20541/26051 12607/20542/26052\nf 12758/20543/26053 12892/20544/26054 4943/20545/26055\nf 4943/20546/26056 10527/20547/26057 12758/20548/26058\nf 4918/20549/26059 4965/20550/26060 4953/20551/26061\nf 4953/20552/26062 4963/20553/26063 4918/20554/26064\nf 4965/20555/26065 4921/20556/26066 12915/20557/26067\nf 12915/20558/26068 4953/20559/26069 4965/20560/26070\nf 12892/20561/26071 4950/20562/26072 4966/20563/26073\nf 4966/20564/26074 4943/20565/26075 12892/20566/26076\nf 4946/20567/26077 4966/20568/26078 4950/20569/26079\nf 4950/20570/26080 13027/20571/26081 4946/20572/26082\nf 13043/3589/26083 13044/4446/26084 4984/711/26085\nf 4984/711/26086 10568/3222/26087 13043/3589/26088\nf 4973/20573/26089 4982/20574/26090 13033/4133/26091\nf 13033/4133/26092 13067/5244/26093 4973/20575/26094\nf 4984/711/26095 13044/4446/26096 4975/5566/26097\nf 4975/5566/26098 4994/2768/26099 4984/711/26100\nf 10381/6436/26101 10530/4726/26102 13045/6472/26103\nf 13045/6472/26104 13042/3354/26105 10381/6436/26106\nf 10381/6436/26107 13042/3354/26108 4970/2226/26109\nf 4970/2226/26110 10382/3582/26111 10381/6436/26112\nf 13056/5770/26113 4968/20576/26114 10529/20577/26115\nf 10529/20578/26116 13046/1707/26117 13056/5770/26118\nf 10642/1334/26119 13150/3836/26120 10531/15/26121\nf 10531/15/26122 4971/1961/26123 10642/1334/26124\nf 10642/1334/26125 4971/1961/26126 4974/6068/26127\nf 4974/6068/26128 13138/3202/26129 10642/1334/26130\nf 13047/5991/26131 4972/20579/26132 4976/20580/26133\nf 4976/20581/26134 4990/4658/26135 13047/5991/26136\nf 10638/1497/26137 4986/1071/26138 13149/2899/26139\nf 13149/2899/26140 10641/4054/26141 10638/1497/26142\nf 10639/20582/26143 4979/20583/26144 4977/3815/26145\nf 4977/3815/26146 10892/3565/26147 10639/20584/26148\nf 13149/2899/26149 4986/1071/26150 4981/4777/26151\nf 4981/4777/26152 13163/2945/26153 13149/2899/26154\nf 10618/2524/26155 10558/6122/26156 10566/3849/26157\nf 10566/3849/26158 4984/2467/26159 10618/2524/26160\nf 10567/20585/26161 10557/20586/26162 10560/1337/26163\nf 10560/1337/26164 4969/2211/26165 10567/20587/26166\nf 4988/1725/26167 10618/2524/26168 4984/2467/26169\nf 4984/2467/26170 4994/6270/26171 4988/1725/26172\nf 4986/1430/26173 10640/991/26174 10559/90/26175\nf 10559/90/26176 4987/6108/26177 4986/1430/26178\nf 4983/20588/26179 4978/20589/26180 4980/2609/26181\nf 4980/2609/26182 4985/2541/26183 4983/20590/26184\nf 4986/1430/26185 4987/6108/26186 10619/6445/26187\nf 10619/6445/26188 4981/4778/26189 4986/1430/26190\nf 4989/2722/26191 13163/2945/26192 4981/4777/26193\nf 4981/4777/26194 4991/4081/26195 4989/2722/26196\nf 4991/5352/26197 4981/4778/26198 10619/6445/26199\nf 10619/6445/26200 4992/4595/26201 4991/5352/26202\nf 13266/2805/26203 4988/1725/26204 4994/6270/26205\nf 4994/6270/26206 4993/1509/26207 13266/2805/26208\nf 4993/4538/26209 4994/2768/26210 4975/5566/26211\nf 4975/5566/26212 4995/952/26213 4993/4538/26214\nf 4995/2610/26215 4975/20591/26216 13048/20592/26217\nf 13048/20593/26218 13317/5701/26219 4995/2610/26220\nf 4996/4985/26221 4997/20594/26222 13163/20595/26223\nf 13163/20596/26224 4989/5611/26225 4996/4985/26226\nf 13227/20597/26227 5016/20598/26228 4999/20599/26229\nf 4999/20600/26230 11118/20601/26231 13227/20602/26232\nf 13241/20603/26233 11153/20604/26234 13226/20605/26235\nf 13226/20606/26236 5006/20607/26237 13241/20608/26238\nf 12744/20609/26239 11118/20610/26240 4999/20611/26241\nf 4999/20612/26242 5002/20613/26243 12744/20614/26244\nf 11103/20615/26245 4998/20616/26246 11117/20617/26247\nf 11117/20618/26248 11104/20619/26249 11103/20620/26250\nf 13244/20621/26251 4998/20622/26252 11103/20623/26253\nf 11103/20624/26254 5010/20625/26255 13244/20626/26256\nf 11105/20627/26257 5004/20628/26258 5001/20629/26259\nf 5001/20630/26260 11114/20631/26261 11105/20632/26262\nf 11048/20633/26263 5003/20634/26264 11106/20635/26265\nf 11106/20636/26266 11050/20637/26267 11048/20638/26268\nf 13211/20639/26269 5003/20640/26270 11048/20641/26271\nf 11048/20642/26272 5012/20643/26273 13211/20644/26274\nf 11051/20645/26275 5005/20646/26276 11116/20647/26277\nf 11116/20648/26278 11389/20649/26279 11051/20650/26280\nf 9284/20651/26281 11049/20652/26282 5009/20653/26283\nf 5009/20654/26284 5019/20655/26285 9284/20656/26286\nf 13220/20657/26287 5008/20658/26288 9286/20659/26289\nf 9286/20660/26290 12503/20661/26291 13220/20662/26292\nf 5014/20663/26293 5019/20664/26294 5009/20665/26295\nf 5009/20666/26296 5011/20667/26297 5014/20668/26298\nf 11140/20669/26299 4999/20670/26300 11152/20671/26301\nf 11152/20672/26302 11141/20673/26303 11140/20674/26304\nf 12481/20675/26305 11142/20676/26306 11154/20677/26307\nf 11154/20678/26308 5000/20679/26309 12481/20680/26310\nf 4999/20681/26311 11140/20682/26312 11148/20683/26313\nf 11148/20684/26314 5002/20685/26315 4999/20686/26316\nf 5019/20687/26317 5015/20688/26318 5017/20689/26319\nf 5017/20690/26320 9285/20691/26321 5019/20692/26322\nf 5013/20693/26323 5020/20694/26324 11143/20695/26325\nf 11143/20696/26326 5021/20697/26327 5013/20698/26328\nf 5018/20699/26329 5015/20700/26330 5019/20701/26331\nf 5019/20702/26332 5014/20703/26333 5018/20704/26334\nf 5027/20705/26335 5022/20706/26336 5014/20707/26337\nf 5014/20708/26338 5011/20709/26339 5027/20710/26340\nf 5022/20711/26341 5023/20712/26342 5018/20713/26343\nf 5018/20714/26344 5014/20715/26345 5022/20716/26346\nf 12378/20717/26347 5024/20718/26348 5002/20719/26349\nf 5002/20720/26350 11148/20721/26351 12378/20722/26352\nf 5024/20723/26353 5025/20724/26354 12744/20725/26355\nf 12744/20726/26356 5002/20727/26357 5024/20728/26358\nf 5025/20729/26359 5026/20730/26360 11115/20731/26361\nf 11115/20732/26362 12744/20733/26363 5025/20734/26364\nf 12733/20735/26365 5027/20736/26366 5011/20737/26367\nf 5011/20738/26368 5007/20739/26369 12733/20740/26370\nf 11678/3132/26371 11676/995/26372 5042/5854/26373\nf 5042/5854/26374 5030/5993/26375 11678/3132/26376\nf 11678/3132/26377 5030/5993/26378 11659/4381/26379\nf 11659/4381/26380 11660/419/26381 11678/3132/26382\nf 12158/1516/26383 5038/1819/26384 12804/1296/26385\nf 12804/1296/26386 5046/4448/26387 12158/1516/26388\nf 5042/1558/26389 5028/20741/26390 11957/20742/26391\nf 11957/20743/26392 5030/6200/26393 5042/1558/26394\nf 5042/2972/26395 11676/3043/26396 5089/5022/26397\nf 5089/5022/26398 5041/1590/26399 5042/2972/26400\nf 5043/2077/26401 5041/1590/26402 5089/5022/26403\nf 5089/5022/26404 11560/2855/26405 5043/2077/26406\nf 11812/161/26407 5043/2077/26408 11560/2855/26409\nf 11560/2855/26410 11561/5768/26411 11812/161/26412\nf 5031/4121/26413 11812/161/26414 11561/5768/26415\nf 11561/5768/26416 8726/3844/26417 5031/4121/26418\nf 5032/4509/26419 5031/4121/26420 8726/3844/26421\nf 8726/3844/26422 8722/3273/26423 5032/4509/26424\nf 5032/4509/26425 8722/3273/26426 8723/3402/26427\nf 8723/3402/26428 5033/4868/26429 5032/4509/26430\nf 5034/4913/26431 5033/4868/26432 8723/3402/26433\nf 8723/3402/26434 12181/2525/26435 5034/4913/26436\nf 11812/161/26437 5031/4121/26438 5036/4636/26439\nf 5036/4636/26440 12791/2996/26441 11812/161/26442\nf 5060/4688/26443 5036/4636/26444 5031/4121/26445\nf 5031/4121/26446 5032/4509/26447 5060/4688/26448\nf 12157/5960/26449 12159/5484/26450 8748/5036/26451\nf 8748/5036/26452 5040/4215/26453 12157/5960/26454\nf 5041/4649/26455 5039/20744/26456 5028/20745/26457\nf 5028/20746/26458 5042/2289/26459 5041/4649/26460\nf 5039/20747/26461 5041/4649/26462 5043/837/26463\nf 5043/837/26464 8749/2224/26465 5039/20748/26466\nf 5040/4215/26467 8748/5036/26468 5044/20749/26469\nf 11807/1142/26470 8749/2224/26471 5043/837/26472\nf 5043/837/26473 11811/4003/26474 11807/1142/26475\nf 5044/20750/26476 5045/2592/26477 5040/4215/26478\nf 5044/20751/26479 11806/20752/26480 11805/2811/26481\nf 11805/2811/26482 5045/2592/26483 5044/20753/26484\nf 5190/4668/26485 11958/3977/26486 11956/1579/26487\nf 11956/1579/26488 5029/1292/26489 5190/4668/26490\nf 5030/2831/26491 11957/20754/26492 11959/20755/26493\nf 11959/20756/26494 11659/4914/26495 5030/2831/26496\nf 5034/4508/26497 5049/290/26498 5048/2659/26499\nf 5048/2659/26500 5033/902/26501 5034/4508/26502\nf 9182/20757/26503 9232/20758/26504 5050/1945/26505\nf 5050/1945/26506 5051/247/26507 9182/20759/26508\nf 9182/20760/26509 5051/247/26510 9276/655/26511\nf 9276/655/26512 9183/4984/26513 9182/20761/26514\nf 5048/2659/26515 5053/20762/26516 5032/4714/26517\nf 5032/4714/26518 5033/902/26519 5048/2659/26520\nf 9272/2468/26521 9311/4865/26522 9310/3046/26523\nf 9310/3046/26524 5057/5812/26525 9272/2468/26526\nf 9273/1262/26527 9272/2468/26528 5057/5812/26529\nf 5057/5812/26530 11845/2501/26531 9273/1262/26532\nf 5054/20763/26533 9275/20764/26534 12791/6478/26535\nf 12791/6478/26536 5036/2005/26537 5054/20765/26538\nf 5056/20766/26539 5054/20767/26540 5036/2005/26541\nf 5036/2005/26542 5060/2465/26543 5056/20768/26544\nf 5056/20769/26545 5060/2465/26546 5032/3266/26547\nf 5032/3266/26548 5053/861/26549 5056/20770/26550\nf 5055/20771/26551 5056/20772/26552 5053/861/26553\nf 5053/861/26554 5052/4628/26555 5055/20773/26556\nf 9274/20774/26557 5059/20775/26558 5061/2117/26559\nf 5061/2117/26560 11808/263/26561 9274/20776/26562\nf 5037/20777/26563 5058/20778/26564 5062/20779/26565\nf 5062/20780/26566 5063/3355/26567 5037/20781/26568\nf 13329/2463/26569 5110/5922/26570 5075/5461/26571\nf 5075/5461/26572 5064/291/26573 13329/2463/26574\nf 12189/5585/26575 5067/1736/26576 5066/5001/26577\nf 5066/5001/26578 5108/5083/26579 12189/5585/26580\nf 5068/2276/26581 5067/1736/26582 12189/5585/26583\nf 12189/5585/26584 9591/2398/26585 5068/2276/26586\nf 5108/5083/26587 5066/5001/26588 5069/6190/26589\nf 5069/6190/26590 11900/4101/26591 5108/5083/26592\nf 11900/4101/26593 5069/6190/26594 5071/471/26595\nf 5071/471/26596 11901/5226/26597 11900/4101/26598\nf 5068/2276/26599 9591/2398/26600 9592/1626/26601\nf 9592/1626/26602 4718/3775/26603 5068/2276/26604\nf 11901/5226/26605 5071/471/26606 5073/2090/26607\nf 5073/2090/26608 5104/6182/26609 11901/5226/26610\nf 9325/6374/26611 5104/6182/26612 5073/2090/26613\nf 5073/2090/26614 12510/1462/26615 9325/6374/26616\nf 13323/2487/26617 11666/3393/26618 11665/2144/26619\nf 11665/2144/26620 5076/6337/26621 13323/2487/26622\nf 5076/6337/26623 11665/2144/26624 9565/2079/26625\nf 9565/2079/26626 5077/1575/26627 5076/6337/26628\nf 5077/1575/26629 9565/2079/26630 9566/4863/26631\nf 9566/4863/26632 5078/488/26633 5077/1575/26634\nf 5078/488/26635 9566/4863/26636 11614/4888/26637\nf 11614/4888/26638 5080/4188/26639 5078/488/26640\nf 4713/2886/26641 5080/4188/26642 11614/4888/26643\nf 11614/4888/26644 11615/6280/26645 4713/2886/26646\nf 5082/3789/26647 11679/6498/26648 12271/4474/26649\nf 12271/4474/26650 12192/3031/26651 5082/3789/26652\nf 5084/3526/26653 11549/1360/26654 11591/5167/26655\nf 11591/5167/26656 5087/5655/26657 5084/3526/26658\nf 11550/2944/26659 11549/1360/26660 5084/3526/26661\nf 5084/3526/26662 11569/5978/26663 11550/2944/26664\nf 5087/5655/26665 11591/5167/26666 5107/3390/26667\nf 5107/3390/26668 5090/2274/26669 5087/5655/26670\nf 5090/2274/26671 5107/3390/26672 12124/3460/26673\nf 12124/3460/26674 5092/1503/26675 5090/2274/26676\nf 11550/2944/26677 11569/5978/26678 11677/2518/26679\nf 11677/2518/26680 5111/26/26681 11550/2944/26682\nf 5092/1503/26683 12124/3460/26684 5106/6344/26685\nf 5106/6344/26686 5093/1101/26687 5092/1503/26688\nf 5035/4080/26689 5093/1101/26690 5106/6344/26691\nf 5106/6344/26692 12144/3898/26693 5035/4080/26694\nf 5083/1018/26695 11661/5033/26696 5112/536/26697\nf 5112/536/26698 12272/5711/26699 5083/1018/26700\nf 5112/536/26701 11661/5033/26702 5096/3551/26703\nf 5096/3551/26704 8882/1389/26705 5112/536/26706\nf 8883/2650/26707 8882/1389/26708 5096/3551/26709\nf 5096/3551/26710 12227/1083/26711 8883/2650/26712\nf 12227/1083/26713 5096/3551/26714 8911/3862/26715\nf 8911/3862/26716 8912/3819/26717 12227/1083/26718\nf 12266/1588/26719 8911/3862/26720 5096/3551/26721\nf 5096/3551/26722 11661/5033/26723 12266/1588/26724\nf 8883/2650/26725 12227/1083/26726 12229/6132/26727\nf 12229/6132/26728 8922/4684/26729 8883/2650/26730\nf 12280/4229/26731 8922/4684/26732 12229/6132/26733\nf 12229/6132/26734 12284/553/26735 12280/4229/26736\nf 9326/3841/26737 5103/3682/26738 10711/2550/26739\nf 10711/2550/26740 12145/1943/26741 9326/3841/26742\nf 9324/3845/26743 5105/3416/26744 5094/5591/26745\nf 5094/5591/26746 12125/1336/26747 9324/3845/26748\nf 5072/542/26749 9324/3845/26750 12125/1336/26751\nf 12125/1336/26752 5091/3171/26753 5072/542/26754\nf 5070/331/26755 5072/542/26756 5091/3171/26757\nf 5091/3171/26758 12126/4753/26759 5070/331/26760\nf 12206/4762/26761 5070/331/26762 12126/4753/26763\nf 12126/4753/26764 5085/4483/26765 12206/4762/26766\nf 5065/6376/26767 12206/4762/26768 5085/4483/26769\nf 5085/4483/26770 5086/1124/26771 5065/6376/26772\nf 5109/1011/26773 5065/6376/26774 5086/1124/26775\nf 5086/1124/26776 5088/2268/26777 5109/1011/26778\nf 9593/4780/26779 5109/1011/26780 5088/2268/26781\nf 5088/2268/26782 12191/5623/26783 9593/4780/26784\nf 11667/723/26785 9593/4780/26786 12191/5623/26787\nf 12191/5623/26788 5095/6029/26789 11667/723/26790\nf 5074/825/26791 11667/723/26792 5095/6029/26793\nf 5095/6029/26794 12275/6409/26795 5074/825/26796\nf 5113/5169/26797 5074/825/26798 12275/6409/26799\nf 12275/6409/26800 5097/5884/26801 5113/5169/26802\nf 5114/1226/26803 5113/5169/26804 5097/5884/26805\nf 5097/5884/26806 5098/1931/26807 5114/1226/26808\nf 5114/1226/26809 5098/1931/26810 5102/165/26811\nf 5102/165/26812 5079/3224/26813 5114/1226/26814\nf 11616/6331/26815 5079/3224/26816 5102/165/26817\nf 5102/165/26818 12281/4689/26819 11616/6331/26820\nf 12669/5939/26821 5117/5846/26822 5116/4723/26823\nf 5116/4723/26824 12617/1920/26825 12669/5939/26826\nf 5151/4405/26827 12617/1920/26828 5116/4723/26829\nf 5116/4723/26830 5119/5969/26831 5151/4405/26832\nf 5151/4405/26833 5119/5969/26834 5120/1343/26835\nf 5120/1343/26836 10675/1528/26837 5151/4405/26838\nf 10675/1528/26839 5120/1343/26840 5121/4460/26841\nf 5121/4460/26842 5122/2458/26843 10675/1528/26844\nf 5123/2261/26845 5122/2458/26846 5121/4460/26847\nf 5121/4460/26848 5124/3543/26849 5123/2261/26850\nf 10675/1528/26851 5122/2458/26852 5125/2310/26853\nf 5125/2310/26854 5160/5938/26855 10675/1528/26856\nf 5126/6423/26857 5125/2310/26858 5122/2458/26859\nf 5122/2458/26860 5123/2261/26861 5126/6423/26862\nf 5117/5846/26863 12669/5939/26864 5127/181/26865\nf 12548/6175/26866 5127/181/26867 12669/5939/26868\nf 12669/5939/26869 5179/498/26870 12548/6175/26871\nf 5129/5526/26872 5127/181/26873 12548/6175/26874\nf 12548/6175/26875 5177/5025/26876 5129/5526/26877\nf 5127/181/26878 5129/5526/26879 5130/5530/26880\nf 5130/5530/26881 5131/627/26882 5127/181/26883\nf 5127/181/26884 5131/627/26885 5117/5846/26886\nf 5132/1522/26887 5129/5526/26888 5177/5025/26889\nf 5177/5025/26890 11564/1530/26891 5132/1522/26892\nf 5133/3150/26893 5132/1522/26894 11564/1530/26895\nf 11564/1530/26896 9418/1373/26897 5133/3150/26898\nf 5132/1522/26899 5133/3150/26900 5135/1479/26901\nf 5135/1479/26902 5136/6147/26903 5132/1522/26904\nf 5129/5526/26905 5132/1522/26906 5136/6147/26907\nf 5136/6147/26908 5130/5530/26909 5129/5526/26910\nf 5137/2758/26911 5133/3150/26912 9418/1373/26913\nf 9418/1373/26914 9419/2266/26915 5137/2758/26916\nf 5139/4281/26917 5137/2758/26918 9419/2266/26919\nf 9419/2266/26920 5168/2243/26921 5139/4281/26922\nf 5137/2758/26923 5139/4281/26924 12265/884/26925\nf 5099/2240/26926 12265/884/26927 5139/4281/26928\nf 5139/4281/26929 5141/4798/26930 5099/2240/26931\nf 5141/4798/26932 5139/4281/26933 5168/2243/26934\nf 8913/1030/26935 5099/2240/26936 5141/4798/26937\nf 5141/4798/26938 5145/6421/26939 8913/1030/26940\nf 12265/884/26941 5142/480/26942 5137/2758/26943\nf 5133/3150/26944 5137/2758/26945 5142/480/26946\nf 5142/480/26947 5135/1479/26948 5133/3150/26949\nf 5168/2243/26950 12715/2209/26951 5141/4798/26952\nf 5141/4798/26953 12715/2209/26954 5165/3153/26955\nf 5165/3153/26956 5145/6421/26957 5141/4798/26958\nf 9499/1395/26959 5100/1213/26960 12633/5717/26961\nf 12633/5717/26962 9500/6362/26963 9499/1395/26964\nf 9500/6362/26965 12633/5717/26966 12634/5223/26967\nf 12634/5223/26968 11350/4568/26969 9500/6362/26970\nf 5147/3218/26971 5144/20782/26972 5146/20783/26973\nf 5146/20784/26974 5148/1325/26975 5147/3218/26976\nf 5148/1325/26977 5146/20785/26978 5164/20786/26979\nf 5164/20787/26980 11382/4189/26981 5148/1325/26982\nf 10676/242/26983 10790/4523/26984 5149/640/26985\nf 5149/640/26986 12618/3256/26987 10676/242/26988\nf 12618/3256/26989 5149/640/26990 5152/6184/26991\nf 5152/6184/26992 5118/332/26993 12618/3256/26994\nf 5157/5679/26995 5118/332/26996 5152/6184/26997\nf 5152/6184/26998 10781/5200/26999 5157/5679/27000\nf 10780/20788/27001 5149/640/27002 5154/55/27003\nf 5154/55/27004 5155/5116/27005 10780/20789/27006\nf 10782/20790/27007 10780/20791/27008 5155/5116/27009\nf 10792/584/27010 5154/55/27011 5149/640/27012\nf 5149/640/27013 10790/4523/27014 10792/584/27015\nf 5155/5116/27016 5159/3126/27017 10782/20792/27018\nf 11502/2779/27019 11522/3751/27020 5157/1171/27021\nf 5157/1171/27022 10781/2399/27023 11502/2779/27024\nf 13161/6257/27025 11503/20793/27026 5153/20794/27027\nf 5153/20795/27028 13155/235/27029 13161/6257/27030\nf 10674/2493/27031 5161/4070/27032 10791/1168/27033\nf 10791/1168/27034 5162/2684/27035 10674/2493/27036\nf 5150/20796/27037 13165/20797/27038 5163/665/27039\nf 5163/665/27040 5156/6501/27041 5150/20798/27042\nf 11350/3349/27043 12634/3634/27044 5143/850/27045\nf 5143/850/27046 11352/2893/27047 11350/3349/27048\nf 11406/398/27049 11352/2893/27050 5143/850/27051\nf 5143/850/27052 12601/1190/27053 11406/398/27054\nf 11351/20799/27055 5166/20800/27056 5169/5302/27057\nf 5169/5302/27058 5170/1144/27059 11351/20801/27060\nf 5171/784/27061 5169/5302/27062 5166/20802/27063\nf 5166/20803/27064 5167/20804/27065 5171/784/27066\nf 11430/3932/27067 11406/398/27068 12601/1190/27069\nf 12601/1190/27070 5138/4204/27071 11430/3932/27072\nf 11431/3367/27073 11430/3932/27074 5138/4204/27075\nf 5138/4204/27076 5134/5627/27077 11431/3367/27078\nf 5174/3334/27079 11431/3367/27080 5134/5627/27081\nf 5134/5627/27082 5175/5610/27083 5174/3334/27084\nf 5176/6126/27085 5174/3334/27086 5175/5610/27087\nf 5175/5610/27088 11565/820/27089 5176/6126/27090\nf 5178/4820/27091 5176/6126/27092 11565/820/27093\nf 11565/820/27094 5128/4747/27095 5178/4820/27096\nf 5178/4820/27097 5128/4747/27098 11523/2232/27099\nf 11523/2232/27100 11501/1489/27101 5178/4820/27102\nf 11555/20805/27103 11500/20806/27104 5181/4725/27105\nf 5181/4725/27106 5182/3195/27107 11555/20807/27108\nf 11446/20808/27109 11555/20809/27110 5182/3195/27111\nf 5158/3553/27112 5181/4725/27113 11500/20810/27114\nf 11500/20811/27115 5180/20812/27116 5158/3553/27117\nf 5173/20813/27118 11446/20814/27119 5183/43/27120\nf 5182/3195/27121 5183/43/27122 11446/20815/27123\nf 5183/43/27124 5184/5063/27125 5173/20816/27126\nf 5172/20817/27127 5173/20818/27128 5184/5063/27129\nf 5184/5063/27130 5185/5797/27131 5172/20819/27132\nf 5167/20820/27133 5172/20821/27134 5185/5797/27135\nf 5185/5797/27136 5171/784/27137 5167/20822/27138\nf 5140/3144/27139 5187/1570/27140 5186/207/27141\nf 5186/207/27142 5188/2231/27143 5140/3144/27144\nf 5188/2231/27145 5186/207/27146 5047/3252/27147\nf 5047/3252/27148 5189/3258/27149 5188/2231/27150\nf 5189/3258/27151 5047/3252/27152 13320/3863/27153\nf 5217/612/27154 5240/5948/27155 5191/4677/27156\nf 5191/4677/27157 10478/6155/27158 5217/612/27159\nf 12796/6033/27160 5240/5948/27161 5217/612/27162\nf 5217/612/27163 5215/621/27164 12796/6033/27165\nf 10478/6155/27166 5191/4677/27167 5241/5951/27168\nf 5241/5951/27169 5220/2835/27170 10478/6155/27171\nf 5220/2835/27172 5241/5951/27173 5193/4358/27174\nf 5193/4358/27175 10394/1646/27176 5220/2835/27177\nf 10394/1646/27178 5193/4358/27179 5195/1496/27180\nf 5195/1496/27181 10395/6342/27182 10394/1646/27183\nf 10395/6342/27184 5195/1496/27185 13123/4471/27186\nf 13123/4471/27187 5223/5979/27188 10395/6342/27189\nf 13034/20823/27190 5249/20824/27191 5197/2939/27192\nf 5197/2939/27193 10459/16/27194 13034/20825/27195\nf 10459/16/27196 5197/2939/27197 5199/4606/27198\nf 5199/4606/27199 10460/1157/27200 10459/16/27201\nf 12796/6033/27202 5215/621/27203 10199/2679/27204\nf 10199/2679/27205 5243/502/27206 12796/6033/27207\nf 10621/1238/27208 5243/502/27209 10199/2679/27210\nf 10199/2679/27211 10200/1093/27212 10621/1238/27213\nf 11257/5201/27214 5214/495/27215 12971/4201/27216\nf 12971/4201/27217 12955/410/27218 11257/5201/27219\nf 10092/5635/27220 5214/495/27221 11257/5201/27222\nf 11257/5201/27223 11258/4698/27224 10092/5635/27225\nf 12955/410/27226 12971/4201/27227 5219/1342/27228\nf 5219/1342/27229 10801/3689/27230 12955/410/27231\nf 10801/3689/27232 5219/1342/27233 10508/5860/27234\nf 10508/5860/27235 10800/368/27236 10801/3689/27237\nf 10800/368/27238 10508/5860/27239 10509/6443/27240\nf 10509/6443/27241 12918/358/27242 10800/368/27243\nf 12918/358/27244 10509/6443/27245 10114/143/27246\nf 10114/143/27247 5254/2783/27248 12918/358/27249\nf 5254/2783/27250 10114/143/27251 10115/4372/27252\nf 10115/4372/27253 10175/2004/27254 5254/2783/27255\nf 10175/2004/27256 10115/4372/27257 10348/5366/27258\nf 10348/5366/27259 10127/4944/27260 10175/2004/27261\nf 10092/5635/27262 11258/4698/27263 11270/5340/27264\nf 11270/5340/27265 10093/5190/27266 10092/5635/27267\nf 5210/998/27268 10093/5190/27269 11270/5340/27270\nf 11270/5340/27271 11346/1080/27272 5210/998/27273\nf 10128/2958/27274 10127/4944/27275 10348/5366/27276\nf 10348/5366/27277 5226/1064/27278 10128/2958/27279\nf 10319/2793/27280 10128/2958/27281 5226/1064/27282\nf 5226/1064/27283 12848/4525/27284 10319/2793/27285\nf 10220/2757/27286 5216/4912/27287 10441/6349/27288\nf 10441/6349/27289 10442/6025/27290 10220/2757/27291\nf 5203/4085/27292 10220/2757/27293 10442/6025/27294\nf 10442/6025/27295 5218/1657/27296 5203/4085/27297\nf 10541/2317/27298 5203/4085/27299 5218/1657/27300\nf 5218/1657/27301 10514/2856/27302 10541/2317/27303\nf 5221/3209/27304 10541/2317/27305 10514/2856/27306\nf 10514/2856/27307 5194/6069/27308 5221/3209/27309\nf 5222/1297/27310 5221/3209/27311 5194/6069/27312\nf 5194/6069/27313 5196/4144/27314 5222/1297/27315\nf 5206/2997/27316 5222/1297/27317 5196/4144/27318\nf 5196/4144/27319 13035/5306/27320 5206/2997/27321\nf 5207/5855/27322 5206/2997/27323 13035/5306/27324\nf 13035/5306/27325 5198/3754/27326 5207/5855/27327\nf 5224/236/27328 5207/5855/27329 5198/3754/27330\nf 5198/3754/27331 5200/5656/27332 5224/236/27333\nf 5224/236/27334 5200/5656/27335 5225/6133/27336\nf 5225/6133/27337 10349/2010/27338 5224/236/27339\nf 10349/2010/27340 5225/6133/27341 5227/5311/27342\nf 5227/5311/27343 5213/6507/27344 10349/2010/27345\nf 5228/6381/27346 5201/6403/27347 10441/6349/27348\nf 10441/6349/27349 5216/4912/27350 5228/6381/27351\nf 5202/1362/27352 5201/6403/27353 5228/6381/27354\nf 5228/6381/27355 12882/5576/27356 5202/1362/27357\nf 10907/4949/27358 10006/5852/27359 5229/48/27360\nf 5229/48/27361 5253/3148/27362 10907/4949/27363\nf 5231/3242/27364 5229/48/27365 10006/5852/27366\nf 10006/5852/27367 10007/5216/27368 5231/3242/27369\nf 5229/48/27370 5231/3242/27371 5233/314/27372\nf 5233/314/27373 5234/1718/27374 5229/48/27375\nf 9771/6364/27376 5229/48/27377 5234/1718/27378\nf 5234/1718/27379 9772/2146/27380 9771/6364/27381\nf 5229/48/27382 9771/6364/27383 5263/2499/27384\nf 5263/2499/27385 5261/3480/27386 5229/48/27387\nf 9900/196/27388 5229/48/27389 5261/3480/27390\nf 5261/3480/27391 9901/987/27392 9900/196/27393\nf 5229/48/27394 9900/196/27395 5258/6243/27396\nf 5258/6243/27397 5256/3975/27398 5229/48/27399\nf 5253/3148/27400 5229/48/27401 5256/3975/27402\nf 5256/3975/27403 12787/3216/27404 5253/3148/27405\nf 12795/2923/27406 5269/1162/27407 11320/888/27408\nf 11320/888/27409 5191/34/27410 12795/2923/27411\nf 5271/1178/27412 5269/1162/27413 12795/2923/27414\nf 12795/2923/27415 5192/5787/27416 5271/1178/27417\nf 5191/34/27418 11320/888/27419 5272/5023/27420\nf 5272/5023/27421 5241/133/27422 5191/34/27423\nf 5241/133/27424 5272/5023/27425 12283/6144/27426\nf 12283/6144/27427 5193/5932/27428 5241/133/27429\nf 5271/1178/27430 5192/5787/27431 10620/5373/27432\nf 10620/5373/27433 5244/6079/27434 5271/1178/27435\nf 5245/3910/27436 5244/6079/27437 10620/5373/27438\nf 10620/5373/27439 5246/676/27440 5245/3910/27441\nf 5193/5932/27442 12283/6144/27443 5101/5997/27444\nf 5101/5997/27445 5195/315/27446 5193/5932/27447\nf 13123/4860/27448 5195/315/27449 5101/5997/27450\nf 5101/5997/27451 5247/324/27452 13123/4860/27453\nf 5248/4784/27454 5250/3602/27455 13122/3075/27456\nf 13122/3075/27457 12228/2725/27458 5248/4784/27459\nf 5251/3397/27460 5250/3602/27461 5248/4784/27462\nf 5248/4784/27463 5252/1200/27464 5251/3397/27465\nf 10906/5798/27466 5239/4034/27467 12919/3522/27468\nf 12919/3522/27469 5208/1251/27470 10906/5798/27471\nf 5255/3097/27472 10906/5798/27473 5208/1251/27474\nf 5208/1251/27475 5209/321/27476 5255/3097/27477\nf 5230/6131/27478 5255/3097/27479 5209/321/27480\nf 5209/321/27481 5211/1853/27482 5230/6131/27483\nf 5232/5390/27484 5230/6131/27485 5211/1853/27486\nf 5211/1853/27487 5212/5703/27488 5232/5390/27489\nf 5205/3065/27490 12919/3522/27491 5239/4034/27492\nf 5239/4034/27493 10828/1611/27494 5205/3065/27495\nf 5257/5608/27496 5205/3065/27497 10828/1611/27498\nf 10828/1611/27499 10829/5885/27500 5257/5608/27501\nf 5259/598/27502 5257/5608/27503 10829/5885/27504\nf 10829/5885/27505 5237/3997/27506 5259/598/27507\nf 5204/2985/27508 5259/598/27509 5237/3997/27510\nf 5237/3997/27511 5238/6534/27512 5204/2985/27513\nf 5260/6064/27514 5204/2985/27515 5238/6534/27516\nf 5238/6534/27517 11297/2900/27518 5260/6064/27519\nf 5262/4094/27520 5260/6064/27521 11297/2900/27522\nf 11297/2900/27523 11298/2322/27524 5262/4094/27525\nf 5264/6221/27526 5262/4094/27527 11298/2322/27528\nf 11298/2322/27529 5235/4379/27530 5264/6221/27531\nf 5265/3067/27532 5264/6221/27533 5235/4379/27534\nf 5235/4379/27535 5236/725/27536 5265/3067/27537\nf 5266/1092/27538 5268/5084/27539 11321/3837/27540\nf 11321/3837/27541 11045/5224/27542 5266/1092/27543\nf 5270/3400/27544 5266/1092/27545 11045/5224/27546\nf 11045/5224/27547 5271/1616/27548 5270/3400/27549\nf 11322/1191/27550 5267/20826/27551 11347/20827/27552\nf 11347/20828/27553 5273/4623/27554 11322/1191/27555\nf 12285/3554/27556 11322/1191/27557 5273/4623/27558\nf 5273/4623/27559 5276/4082/27560 12285/3554/27561\nf 5274/6465/27562 5270/3400/27563 5271/1616/27564\nf 5271/1616/27565 5244/832/27566 5274/6465/27567\nf 5275/1294/27568 5274/6465/27569 5244/832/27570\nf 5244/832/27571 5245/1338/27572 5275/1294/27573\nf 5115/2794/27574 5242/5439/27575 13210/1068/27576\nf 13210/1068/27577 5081/4866/27578 5115/2794/27579\nf 5081/4866/27580 13210/1068/27581 4729/3674/27582\nf 4729/3674/27583 12995/6034/27584 5081/4866/27585\nf 12170/20829/27586 5302/20830/27587 5281/20831/27588\nf 5281/20832/27589 11133/20833/27590 12170/20834/27591\nf 12270/20835/27592 5302/20836/27593 12170/20837/27594\nf 12170/20838/27595 12472/20839/27596 12270/20840/27597\nf 5293/20841/27598 5294/20842/27599 11100/20843/27600\nf 11100/20844/27601 11102/20845/27602 5293/20846/27603\nf 11101/20847/27604 9031/20848/27605 5281/20849/27606\nf 5281/20850/27607 5302/20851/27608 11101/20852/27609\nf 5281/20853/27610 5296/20854/27611 11132/20855/27612\nf 11132/20856/27613 11133/20857/27614 5281/20858/27615\nf 11132/20859/27616 5296/20860/27617 5284/20861/27618\nf 5284/20862/27619 5340/20863/27620 11132/20864/27621\nf 5340/20865/27622 5284/20866/27623 12453/20867/27624\nf 12453/20868/27625 5342/20869/27626 5340/20870/27627\nf 5342/20871/27628 12453/20872/27629 5285/20873/27630\nf 5285/20874/27631 11418/20875/27632 5342/20876/27633\nf 11418/20877/27634 5285/20878/27635 5309/20879/27636\nf 5309/20880/27637 11192/20881/27638 11418/20882/27639\nf 11193/20883/27640 11192/20884/27641 5309/20885/27642\nf 5309/20886/27643 5289/20887/27644 11193/20888/27645\nf 11193/20889/27646 5289/20890/27647 5303/20891/27648\nf 5303/20892/27649 5345/20893/27650 11193/20894/27651\nf 5290/20895/27652 5285/20896/27653 12453/20897/27654\nf 12453/20898/27655 12175/20899/27656 5290/20900/27657\nf 5285/20901/27658 5290/20902/27659 5316/20903/27660\nf 5316/20904/27661 5309/20905/27662 5285/20906/27663\nf 9029/20907/27664 9030/20908/27665 9068/20909/27666\nf 9068/20910/27667 5295/20911/27668 9029/20912/27669\nf 9031/20913/27670 5292/20914/27671 5296/20915/27672\nf 5296/20916/27673 5281/20917/27674 9031/20918/27675\nf 5284/20919/27676 5296/20920/27677 5292/20921/27678\nf 5292/20922/27679 5297/20923/27680 5284/20924/27681\nf 9048/20925/27682 9029/20926/27683 5295/20927/27684\nf 5284/20928/27685 5297/20929/27686 9243/20930/27687\nf 9243/20931/27688 12454/20932/27689 5284/20933/27690\nf 5295/20934/27691 5299/20935/27692 9048/20936/27693\nf 9245/20937/27694 9242/20938/27695 9048/20939/27696\nf 9048/20940/27697 5299/20941/27698 9245/20942/27699\nf 12499/20943/27700 5280/20944/27701 5279/20945/27702\nf 5279/20946/27703 5439/20947/27704 12499/20948/27705\nf 12269/20949/27706 11101/20950/27707 5302/20951/27708\nf 5302/20952/27709 12270/20953/27710 12269/20954/27711\nf 5303/20955/27712 5289/20956/27713 8901/20957/27714\nf 8901/20958/27715 5305/20959/27716 5303/20960/27717\nf 5306/20961/27718 8902/20962/27719 5304/20963/27720\nf 5304/20964/27721 5307/20965/27722 5306/20966/27723\nf 5317/20967/27724 5307/20968/27725 5304/20969/27726\nf 5304/20970/27727 5308/20971/27728 5317/20972/27729\nf 8901/20973/27730 5289/20974/27731 5309/20975/27732\nf 5309/20976/27733 9037/20977/27734 8901/20978/27735\nf 5310/20979/27736 5312/20980/27737 8926/20981/27738\nf 8926/20982/27739 5313/20983/27740 5310/20984/27741\nf 5313/20985/27742 8926/20986/27743 8762/20987/27744\nf 8762/20988/27745 8765/20989/27746 5313/20990/27747\nf 12175/20991/27748 8763/20992/27749 5311/20993/27750\nf 5311/20994/27751 5290/20995/27752 12175/20996/27753\nf 5290/20997/27754 5311/20998/27755 8927/20999/27756\nf 8927/21000/27757 5316/21001/27758 5290/21002/27759\nf 5309/21003/27760 5316/21004/27761 8927/21005/27762\nf 8927/21006/27763 9037/21007/27764 5309/21008/27765\nf 9037/21009/27766 8927/21010/27767 8961/21011/27768\nf 8961/21012/27769 12122/21013/27770 9037/21014/27771\nf 5300/21015/27772 5315/21016/27773 8764/21017/27774\nf 8764/21018/27775 5298/21019/27776 5300/21020/27777\nf 9244/21021/27778 5314/21022/27779 5291/21023/27780\nf 5291/21024/27781 5318/21025/27782 9244/21026/27783\nf 12824/21027/27784 12820/21028/27785 11896/21029/27786\nf 11896/21030/27787 12818/21031/27788 12824/21032/27789\nf 9956/21033/27790 8790/21034/27791 5321/21035/27792\nf 5321/21036/27793 5322/21037/27794 9956/21038/27795\nf 9956/21039/27796 5322/21040/27797 5323/21041/27798\nf 5323/21042/27799 9957/21043/27800 9956/21044/27801\nf 5325/21045/27802 5321/21046/27803 8790/21047/27804\nf 8790/21048/27805 8789/21049/27806 5325/21050/27807\nf 5326/21051/27808 5325/21052/27809 8789/21053/27810\nf 8789/21054/27811 9916/21055/27812 5326/21056/27813\nf 12819/21057/27814 9957/21058/27815 5323/21059/27816\nf 5323/21060/27817 4876/21061/27818 12819/21062/27819\nf 5328/21063/27820 5326/21064/27821 9916/21065/27822\nf 9916/21066/27823 9917/21067/27824 5328/21068/27825\nf 5328/21069/27826 9917/21070/27827 12858/21071/27828\nf 12858/21072/27829 12830/21073/27830 5328/21074/27831\nf 5319/21075/27832 5332/21076/27833 11894/21077/27834\nf 11894/21078/27835 11895/21079/27836 5319/21080/27837\nf 13288/21081/27838 11894/21082/27839 5332/21083/27840\nf 5332/21084/27841 5334/21085/27842 13288/21086/27843\nf 11882/21087/27844 13288/21088/27845 5334/21089/27846\nf 5334/21090/27847 5336/21091/27848 11882/21092/27849\nf 11883/21093/27850 11882/21094/27851 5336/21095/27852\nf 5336/21096/27853 5338/21097/27854 11883/21098/27855\nf 11883/21099/27856 5338/21100/27857 4888/21101/27858\nf 4888/21102/27859 5365/21103/27860 11883/21104/27861\nf 9289/21105/27862 12171/21106/27863 11134/21107/27864\nf 11134/21108/27865 12164/21109/27866 9289/21110/27867\nf 11824/21111/27868 11825/21112/27869 11850/21113/27870\nf 11850/21114/27871 12069/21115/27872 11824/21116/27873\nf 11824/21117/27874 12069/21118/27875 12070/21119/27876\nf 12070/21120/27877 5282/21121/27878 11824/21122/27879\nf 11851/21123/27880 11850/21124/27881 11825/21125/27882\nf 11825/21126/27883 5286/21127/27884 11851/21128/27885\nf 5358/21129/27886 11851/21130/27887 5286/21131/27888\nf 5286/21132/27889 5287/21133/27890 5358/21134/27891\nf 5283/21135/27892 5282/21136/27893 12070/21137/27894\nf 12070/21138/27895 5339/21139/27896 5283/21140/27897\nf 12009/21141/27898 5358/21142/27899 5287/21143/27900\nf 5287/21144/27901 5288/21145/27902 12009/21146/27903\nf 12009/21147/27904 5288/21148/27905 13250/21149/27906\nf 13250/21150/27907 12058/21151/27908 12009/21152/27909\nf 9287/21153/27910 12471/21154/27911 5277/21155/27912\nf 5277/21156/27913 9288/21157/27914 9287/21158/27915\nf 5349/21159/27916 12471/21160/27917 9287/21161/27918\nf 9287/21162/27919 9293/21163/27920 5349/21164/27921\nf 5349/21165/27922 9293/21166/27923 9294/21167/27924\nf 9294/21168/27925 12456/21169/27926 5349/21170/27927\nf 12405/21171/27928 5349/21172/27929 12456/21173/27930\nf 12456/21174/27931 5398/21175/27932 12405/21176/27933\nf 12404/21177/27934 12471/21178/27935 5349/21179/27936\nf 5349/21180/27937 12405/21181/27938 12404/21182/27939\nf 11925/21183/27940 12456/21184/27941 9294/21185/27942\nf 9294/21186/27943 5364/21187/27944 11925/21188/27945\nf 11925/21189/27946 5364/21190/27947 11954/21191/27948\nf 11954/21192/27949 11926/21193/27950 11925/21194/27951\nf 12859/21195/27952 5346/21196/27953 4812/21197/27954\nf 4812/21198/27955 5330/21199/27956 12859/21200/27957\nf 5329/21201/27958 5356/21202/27959 12059/21203/27960\nf 12059/21204/27961 5357/21205/27962 5329/21206/27963\nf 5356/21207/27964 5329/21208/27965 5327/21209/27966\nf 5327/21210/27967 12010/21211/27968 5356/21212/27969\nf 12010/21213/27970 5327/21214/27971 5359/21215/27972\nf 5359/21216/27973 5344/21217/27974 12010/21218/27975\nf 5344/21219/27976 5359/21220/27977 5360/21221/27978\nf 5360/21222/27979 5341/21223/27980 5344/21224/27981\nf 5341/21225/27982 5360/21226/27983 5320/21227/27984\nf 5320/21228/27985 5361/21229/27986 5341/21230/27987\nf 5361/21231/27988 5320/21232/27989 5324/21233/27990\nf 5324/21234/27991 5343/21235/27992 5361/21236/27993\nf 5343/21237/27994 5324/21238/27995 5362/21239/27996\nf 5362/21240/27997 12165/21241/27998 5343/21242/27999\nf 12165/21243/28000 5362/21244/28001 5333/21245/28002\nf 5333/21246/28003 5348/21247/28004 12165/21248/28005\nf 5348/21249/28006 5333/21250/28007 5331/21251/28008\nf 5331/21252/28009 5347/21253/28010 5348/21254/28011\nf 5347/21255/28012 5331/21256/28013 5363/21257/28014\nf 5363/21258/28015 5350/21259/28016 5347/21260/28017\nf 5350/21261/28018 5363/21262/28019 5335/21263/28020\nf 5335/21264/28021 5351/21265/28022 5350/21266/28023\nf 12468/21267/28024 5351/21268/28025 5335/21269/28026\nf 5335/21270/28027 5337/21271/28028 12468/21272/28029\nf 12468/21273/28030 5337/21274/28031 12813/21275/28032\nf 12813/21276/28033 11955/21277/28034 12468/21278/28035\nf 5366/21279/28036 5367/21280/28037 9392/21281/28038\nf 9392/21282/28039 5405/21283/28040 5366/21284/28041\nf 5366/21285/28042 5405/21286/28043 5403/21287/28044\nf 5403/21288/28045 5368/21289/28046 5366/21290/28047\nf 5369/21291/28048 5368/21292/28049 5403/21293/28050\nf 5403/21294/28051 12570/21295/28052 5369/21296/28053\nf 5371/21297/28054 5369/21298/28055 12570/21299/28056\nf 12570/21300/28057 5372/21301/28058 5371/21302/28059\nf 5373/21303/28060 5371/21304/28061 5372/21305/28062\nf 5372/21306/28063 5374/21307/28064 5373/21308/28065\nf 5375/21309/28066 5372/21310/28067 12570/21311/28068\nf 12570/21312/28069 5413/21313/28070 5375/21314/28071\nf 5376/21315/28072 5374/21316/28073 5372/21317/28074\nf 5372/21318/28075 5375/21319/28076 5376/21320/28077\nf 5377/21321/28078 9392/21322/28079 5367/21323/28080\nf 9392/21324/28081 5377/21325/28082 5429/21326/28083\nf 5429/21327/28084 9393/21328/28085 9392/21329/28086\nf 5429/21330/28087 5377/21331/28088 5378/21332/28089\nf 5378/21333/28090 11393/21334/28091 5429/21335/28092\nf 5380/21336/28093 5378/21337/28094 5377/21338/28095\nf 5377/21339/28096 5381/21340/28097 5380/21341/28098\nf 5367/21342/28099 5381/21343/28100 5377/21344/28101\nf 11393/21345/28102 5378/21346/28103 5382/21347/28104\nf 5382/21348/28105 11394/21349/28106 11393/21350/28107\nf 11394/21351/28108 5382/21352/28109 5384/21353/28110\nf 5384/21354/28111 5425/21355/28112 11394/21356/28113\nf 5385/21357/28114 5384/21358/28115 5382/21359/28116\nf 5382/21360/28117 5386/21361/28118 5385/21362/28119\nf 5386/21363/28120 5382/21364/28121 5378/21365/28122\nf 5378/21366/28123 5380/21367/28124 5386/21368/28125\nf 5425/21369/28126 5384/21370/28127 5387/21371/28128\nf 5387/21372/28129 11181/21373/28130 5425/21374/28131\nf 11181/21375/28132 5387/21376/28133 5389/21377/28134\nf 5389/21378/28135 11182/21379/28136 11181/21380/28137\nf 12403/21381/28138 5389/21382/28139 5387/21383/28140\nf 5389/21384/28141 12403/21385/28142 5352/21386/28143\nf 5352/21387/28144 5392/21388/28145 5389/21389/28146\nf 11182/21390/28147 5389/21391/28148 5392/21392/28149\nf 5392/21393/28150 5352/21394/28151 9387/21395/28152\nf 9387/21396/28153 5396/21397/28154 5392/21398/28155\nf 5387/21399/28156 5393/21400/28157 12403/21401/28158\nf 5393/21402/28159 5387/21403/28160 5384/21404/28161\nf 5384/21405/28162 5385/21406/28163 5393/21407/28164\nf 5392/21408/28165 5417/21409/28166 11182/21410/28167\nf 5392/21411/28168 5396/21412/28169 12438/21413/28170\nf 12438/21414/28171 5417/21415/28172 5392/21416/28173\nf 9345/21417/28174 5397/21418/28175 9385/21419/28176\nf 9385/21420/28177 9386/21421/28178 9345/21422/28179\nf 5394/21423/28180 9385/21424/28181 5397/21425/28182\nf 5397/21426/28183 9356/21427/28184 5394/21428/28185\nf 5400/21429/28186 9346/21430/28187 5395/21431/28188\nf 9355/21432/28189 9346/21433/28190 5400/21434/28191\nf 5395/21435/28192 5401/21436/28193 5400/21437/28194\nf 5400/21438/28195 5421/21439/28196 9355/21440/28197\nf 5402/21441/28198 5414/21442/28199 12571/21443/28200\nf 12571/21444/28201 9529/21445/28202 5402/21446/28203\nf 9464/21447/28204 5402/21448/28205 9529/21449/28206\nf 9529/21450/28207 9530/21451/28208 9464/21452/28209\nf 9464/21453/28210 9530/21454/28211 5410/21455/28212\nf 5410/21456/28213 9507/21457/28214 9464/21458/28215\nf 5407/21459/28216 5402/21460/28217 5404/21461/28218\nf 5404/21462/28219 5408/21463/28220 5407/21464/28221\nf 5408/21465/28222 5404/21466/28223 9506/21467/28224\nf 12576/21468/28225 5414/21469/28226 5402/21470/28227\nf 5402/21471/28228 5407/21472/28229 12576/21473/28230\nf 9506/21474/28231 12533/21475/28232 5408/21476/28233\nf 9921/21477/28234 9507/21478/28235 5410/21479/28236\nf 5410/21480/28237 9394/21481/28238 9921/21482/28239\nf 5406/21483/28240 9919/21484/28241 5433/21485/28242\nf 5433/21486/28243 5412/21487/28244 5406/21488/28245\nf 12569/21489/28246 5370/21490/28247 9422/21491/28248\nf 9422/21492/28249 9424/21493/28250 12569/21494/28251\nf 5416/21495/28252 5415/21496/28253 9423/21497/28254\nf 9423/21498/28255 5409/21499/28256 5416/21500/28257\nf 12410/21501/28258 5394/21502/28259 9356/21503/28260\nf 9356/21504/28261 5418/21505/28262 12410/21506/28263\nf 12410/21507/28264 5418/21508/28265 9444/21509/28266\nf 9444/21510/28267 5390/21511/28268 12410/21512/28269\nf 5420/21513/28270 9494/21514/28271 5399/21515/28272\nf 5399/21516/28273 12473/21517/28274 5420/21518/28275\nf 5422/21519/28276 5419/21520/28277 9494/21521/28278\nf 9494/21522/28279 5420/21523/28280 5422/21524/28281\nf 5390/21525/28282 9444/21526/28283 5423/21527/28284\nf 5423/21528/28285 5388/21529/28286 5390/21530/28287\nf 5388/21531/28288 5423/21532/28289 5424/21533/28290\nf 5424/21534/28291 12901/21535/28292 5388/21536/28293\nf 12901/21537/28294 5424/21538/28295 9935/21539/28296\nf 9935/21540/28297 5383/21541/28298 12901/21542/28299\nf 5383/21543/28300 9935/21544/28301 9936/21545/28302\nf 9936/21546/28303 5379/21547/28304 5383/21548/28305\nf 5379/21549/28306 9936/21550/28307 9925/21551/28308\nf 9925/21552/28309 12838/21553/28310 5379/21554/28311\nf 5411/21555/28312 12838/21556/28313 9925/21557/28314\nf 9925/21558/28315 9920/21559/28316 5411/21560/28317\nf 5431/21561/28318 5428/21562/28319 5427/21563/28320\nf 5427/21564/28321 5432/21565/28322 5431/21566/28323\nf 5432/21567/28324 5427/21568/28325 5426/21569/28326\nf 9922/21570/28327 5430/21571/28328 5428/21572/28329\nf 5428/21573/28330 5431/21574/28331 9922/21575/28332\nf 5434/21576/28333 5426/21577/28334 10019/21578/28335\nf 5426/21579/28336 5434/21580/28337 5432/21581/28338\nf 10019/21582/28339 5435/21583/28340 5434/21584/28341\nf 5435/21585/28342 10019/21586/28343 9445/21587/28344\nf 9445/21588/28345 5436/21589/28346 5435/21590/28347\nf 5436/21591/28348 9445/21592/28349 5419/21593/28350\nf 5419/21594/28351 5422/21595/28352 5436/21596/28353\nf 5391/21597/28354 5437/21598/28355 5278/21599/28356\nf 5278/21600/28357 5438/21601/28358 5391/21602/28359\nf 12268/21603/28360 5278/21604/28361 5437/21605/28362\nf 5437/21606/28363 5440/21607/28364 12268/21608/28365\nf 5440/21609/28366 5301/21610/28367 12268/21611/28368\nf 9639/21612/28369 5462/21613/28370 5442/21614/28371\nf 5442/21615/28372 5484/21616/28373 9639/21617/28374\nf 9639/21618/28375 5484/21619/28376 10208/21620/28377\nf 10208/21621/28378 9640/21622/28379 9639/21623/28380\nf 5488/21624/28381 5442/21625/28382 5462/21626/28383\nf 5462/21627/28384 12714/21628/28385 5488/21629/28386\nf 5489/21630/28387 5488/21631/28388 12714/21632/28389\nf 12714/21633/28390 11682/21634/28391 5489/21635/28392\nf 5493/21636/28393 5489/21637/28394 11682/21638/28395\nf 11682/21639/28396 11683/21640/28397 5493/21641/28398\nf 13132/21642/28399 5493/21643/28400 11683/21644/28401\nf 11683/21645/28402 11688/21646/28403 13132/21647/28404\nf 5445/21648/28405 13133/21649/28406 5468/21650/28407\nf 5468/21651/28408 10539/21652/28409 5445/21653/28410\nf 5447/21654/28411 5445/21655/28412 10539/21656/28413\nf 10539/21657/28414 10540/21658/28415 5447/21659/28416\nf 10741/21660/28417 9640/21661/28418 10208/21662/28419\nf 10208/21663/28420 10231/21664/28421 10741/21665/28422\nf 10741/21666/28423 10231/21667/28424 10799/21668/28425\nf 10799/21669/28426 5473/21670/28427 10741/21671/28428\nf 9724/21672/28429 5508/21673/28430 10257/21674/28431\nf 10257/21675/28432 10388/21676/28433 9724/21677/28434\nf 9724/21678/28435 10388/21679/28436 10389/21680/28437\nf 10389/21681/28438 5512/21682/28439 9724/21683/28440\nf 10258/21684/28441 10257/21685/28442 5508/21686/28443\nf 5508/21687/28444 12784/21688/28445 10258/21689/28446\nf 12989/21690/28447 10258/21691/28448 12784/21692/28449\nf 12784/21693/28450 5506/21694/28451 12989/21695/28452\nf 5465/21696/28453 12989/21697/28454 5506/21698/28455\nf 5506/21699/28456 10510/21700/28457 5465/21701/28458\nf 5467/21702/28459 5465/21703/28460 10510/21704/28461\nf 10510/21705/28462 13040/21706/28463 5467/21707/28464\nf 13059/21708/28465 5467/21709/28466 13040/21710/28467\nf 13040/21711/28468 5501/21712/28469 13059/21713/28470\nf 5469/21714/28471 13059/21715/28472 5501/21716/28473\nf 5501/21717/28474 13055/21718/28475 5469/21719/28476\nf 12773/21720/28477 5512/21721/28478 10389/21722/28479\nf 10389/21723/28480 10129/21724/28481 12773/21725/28482\nf 12773/21726/28483 10129/21727/28484 5474/21728/28485\nf 5474/21729/28486 5515/21730/28487 12773/21731/28488\nf 5469/21732/28489 13055/21733/28490 5503/21734/28491\nf 5503/21735/28492 10339/21736/28493 5469/21737/28494\nf 10339/21738/28495 5503/21739/28496 13021/21740/28497\nf 13021/21741/28498 10340/21742/28499 10339/21743/28500\nf 5459/21744/28501 5441/21745/28502 5443/21746/28503\nf 5443/21747/28504 5460/21748/28505 5459/21749/28506\nf 5441/21750/28507 5459/21751/28508 5461/21752/28509\nf 5461/21753/28510 12713/21754/28511 5441/21755/28512\nf 12713/21756/28513 5461/21757/28514 5463/21758/28515\nf 5463/21759/28516 5444/21760/28517 12713/21761/28518\nf 5444/21762/28519 5463/21763/28520 5451/21764/28521\nf 5451/21765/28522 5464/21766/28523 5444/21767/28524\nf 5464/21768/28525 5451/21769/28526 11710/21770/28527\nf 11710/21771/28528 5466/21772/28529 5464/21773/28530\nf 5466/21774/28531 11710/21775/28532 11711/21776/28533\nf 11711/21777/28534 11689/21778/28535 5466/21779/28536\nf 11689/21780/28537 11711/21781/28538 5453/21782/28539\nf 5453/21783/28540 5446/21784/28541 11689/21785/28542\nf 5446/21786/28543 5453/21787/28544 13060/21788/28545\nf 13060/21789/28546 5448/21790/28547 5446/21791/28548\nf 5470/21792/28549 5448/21793/28550 13060/21794/28551\nf 13060/21795/28552 5456/21796/28553 5470/21797/28554\nf 5471/21798/28555 5470/21799/28556 5456/21800/28557\nf 5456/21801/28558 5458/21802/28559 5471/21803/28560\nf 5472/21804/28561 5460/21805/28562 5443/21806/28563\nf 5443/21807/28564 5449/21808/28565 5472/21809/28566\nf 5472/21810/28567 5449/21811/28568 12936/21812/28569\nf 12936/21813/28570 10130/21814/28571 5472/21815/28572\nf 12921/21816/28573 5500/21817/28574 5476/21818/28575\nf 5476/21819/28576 5502/21820/28577 12921/21821/28578\nf 5502/21822/28579 5476/21823/28580 5477/21824/28581\nf 5477/21825/28582 12923/21826/28583 5502/21827/28584\nf 5479/21828/28585 5477/21829/28586 5476/21830/28587\nf 5476/21831/28588 5480/21832/28589 5479/21833/28590\nf 5480/21834/28591 5476/21835/28592 9720/21836/28593\nf 9720/21837/28594 12779/21838/28595 5480/21839/28596\nf 9719/21840/28597 9720/21841/28598 5476/21842/28599\nf 5476/21843/28600 5511/21844/28601 9719/21845/28602\nf 5511/21846/28603 5476/21847/28604 5507/21848/28605\nf 5507/21849/28606 9774/21850/28607 5511/21851/28608\nf 13081/21852/28609 5507/21853/28610 5476/21854/28611\nf 5476/21855/28612 5505/21856/28613 13081/21857/28614\nf 5505/21858/28615 5476/21859/28616 5500/21860/28617\nf 5500/21861/28618 12954/21862/28619 5505/21863/28620\nf 10207/21864/28621 5442/21865/28622 12788/21866/28623\nf 12788/21867/28624 5517/21868/28625 10207/21869/28626\nf 10207/21870/28627 5517/21871/28628 5486/21872/28629\nf 5486/21873/28630 5487/21874/28631 10207/21875/28632\nf 5520/21876/28633 12788/21877/28634 5442/21878/28635\nf 5442/21879/28636 5488/21880/28637 5520/21881/28638\nf 11928/21882/28639 5520/21883/28640 5488/21884/28641\nf 5488/21885/28642 5489/21886/28643 11928/21887/28644\nf 5490/21888/28645 5487/21889/28646 5486/21890/28647\nf 5486/21891/28648 5491/21892/28649 5490/21893/28650\nf 5490/21894/28651 5491/21895/28652 5524/21896/28653\nf 5524/21897/28654 5492/21898/28655 5490/21899/28656\nf 5353/21900/28657 11928/21901/28658 5489/21902/28659\nf 5489/21903/28660 5493/21904/28661 5353/21905/28662\nf 5353/21906/28663 5493/21907/28664 13132/21908/28665\nf 13132/21909/28666 5496/21910/28667 5353/21911/28668\nf 5495/21912/28669 12455/21913/28670 5494/21914/28671\nf 5494/21915/28672 5497/21916/28673 5495/21917/28674\nf 5495/21918/28675 5497/21919/28676 5498/21920/28677\nf 5498/21921/28678 5499/21922/28679 5495/21923/28680\nf 12930/21924/28681 13054/21925/28682 5452/21926/28683\nf 5452/21927/28684 5483/21928/28685 12930/21929/28686\nf 13054/21930/28687 12930/21931/28688 5475/21932/28689\nf 5475/21933/28690 5454/21934/28691 13054/21935/28692\nf 5454/21936/28693 5475/21937/28694 12922/21938/28695\nf 12922/21939/28696 13020/21940/28697 5454/21941/28698\nf 13020/21942/28699 12922/21943/28700 5478/21944/28701\nf 5478/21945/28702 5457/21946/28703 13020/21947/28704\nf 5483/21948/28705 5452/21949/28706 5504/21950/28707\nf 5504/21951/28708 13058/21952/28709 5483/21953/28710\nf 13058/21954/28711 5504/21955/28712 10511/21956/28713\nf 10511/21957/28714 5482/21958/28715 13058/21959/28716\nf 5482/21960/28717 10511/21961/28718 5450/21962/28719\nf 5450/21963/28720 9773/21964/28721 5482/21965/28722\nf 9773/21966/28723 5450/21967/28724 9775/21968/28725\nf 9775/21969/28726 5509/21970/28727 9773/21971/28728\nf 5509/21972/28729 9775/21973/28730 5510/21974/28731\nf 5510/21975/28732 9751/21976/28733 5509/21977/28734\nf 9751/21978/28735 5510/21979/28736 9725/21980/28737\nf 9725/21981/28738 5513/21982/28739 9751/21983/28740\nf 5513/21984/28741 9725/21985/28742 5455/21986/28743\nf 5455/21987/28744 5514/21988/28745 5513/21989/28746\nf 5514/21990/28747 5455/21991/28748 12837/21992/28749\nf 12837/21993/28750 5481/21994/28751 5514/21995/28752\nf 5516/21996/28753 12790/21997/28754 12789/21998/28755\nf 12789/21999/28756 5518/22000/28757 5516/22001/28758\nf 12790/22002/28759 5516/22003/28760 5519/22004/28761\nf 5519/22005/28762 5486/22006/28763 12790/22007/28764\nf 12805/22008/28765 5485/22009/28766 12793/22010/28767\nf 12793/22011/28768 5521/22012/28769 12805/22013/28770\nf 5521/22014/28771 12793/22015/28772 11927/22016/28773\nf 11927/22017/28774 5525/22018/28775 5521/22019/28776\nf 5486/22020/28777 5519/22021/28778 5522/22022/28779\nf 5522/22023/28780 5491/22024/28781 5486/22025/28782\nf 5491/22026/28783 5522/22027/28784 5523/22028/28785\nf 5523/22029/28786 5524/22030/28787 5491/22031/28788\nf 5354/22032/28789 12814/22033/28790 12822/22034/28791\nf 12822/22035/28792 5355/22036/28793 5354/22037/28794\nf 4891/22038/28795 12822/22039/28796 12814/22040/28797\nf 12814/22041/28798 12401/22042/28799 4891/22043/28800\nf 9543/5419/28801 9545/2731/28802 12611/2916/28803\nf 12611/2916/28804 9559/5886/28805 9543/5419/28806\nf 5536/5963/28807 9568/2068/28808 9567/4800/28809\nf 5536/5963/28810 9567/4800/28811 9683/2164/28812\nf 9567/4800/28813 9684/4588/28814 9683/2164/28815\nf 9684/4588/28816 9567/4800/28817 5533/4796/28818\nf 5533/4796/28819 5544/1738/28820 9684/4588/28821\nf 5534/5137/28822 12032/2660/28823 9569/22044/28824\nf 9569/22045/28825 12674/22046/28826 5534/5137/28827\nf 5562/748/28828 12032/2660/28829 5534/5137/28830\nf 5534/5137/28831 5551/5385/28832 5562/748/28833\nf 12619/938/28834 5541/5231/28835 12612/4009/28836\nf 12612/4009/28837 9546/4468/28838 12619/938/28839\nf 10954/5702/28840 10952/2479/28841 9560/5324/28842\nf 9560/5324/28843 5537/3626/28844 10954/5702/28845\nf 9544/35/28846 5528/22047/28847 10953/22048/28848\nf 10953/22049/28849 12564/3018/28850 9544/35/28851\nf 5526/2088/28852 12565/4612/28853 12620/4224/28854\nf 12620/4224/28855 5527/3418/28856 5526/2088/28857\nf 5538/2419/28858 5540/2677/28859 5530/4941/28860\nf 5530/4941/28861 5535/333/28862 5538/2419/28863\nf 5529/2094/28864 5530/4941/28865 5540/2677/28866\nf 5540/2677/28867 10955/4924/28868 5529/2094/28869\nf 5538/2419/28870 5535/333/28871 5542/2032/28872\nf 5542/2032/28873 5529/2094/28874 10955/4924/28875\nf 5542/2032/28876 5535/333/28877 12033/978/28878\nf 12033/978/28879 5543/535/28880 5542/2032/28881\nf 5542/2032/28882 5539/4548/28883 5538/2419/28884\nf 10955/4924/28885 5539/4548/28886 5542/2032/28887\nf 5563/3210/28888 5531/6274/28889 9685/4321/28890\nf 9685/4321/28891 8953/6159/28892 5563/3210/28893\nf 5565/2825/28894 5566/6161/28895 5532/2823/28896\nf 5532/2823/28897 12766/5472/28898 5565/2825/28899\nf 13269/22050/28900 11630/22051/28901 11632/22052/28902\nf 11632/22053/28903 13271/22054/28904 13269/22055/28905\nf 12220/22056/28906 5564/22057/28907 13257/22058/28908\nf 12220/22059/28909 13257/22060/28910 13247/22061/28911\nf 12220/22062/28912 13247/22063/28913 13248/22064/28914\nf 5548/22065/28915 13257/22066/28916 5564/22067/28917\nf 5564/22068/28918 5567/22069/28919 5548/22070/28920\nf 5549/22071/28921 5547/22072/28922 5557/22073/28923\nf 5557/22074/28924 12050/22075/28925 5549/22076/28926\nf 5549/22077/28927 12050/22078/28928 5562/748/28929\nf 5562/748/28930 5551/5385/28931 5549/22079/28932\nf 13286/22080/28933 11633/22081/28934 11631/22082/28935\nf 11631/22083/28936 5560/22084/28937 13286/22085/28938\nf 11477/22086/28939 11479/22087/28940 5552/22088/28941\nf 5552/22089/28942 13270/22090/28943 11477/22091/28944\nf 13272/22092/28945 11546/22093/28946 11478/22094/28947\nf 11478/22095/28948 5554/22096/28949 13272/22097/28950\nf 5555/22098/28951 5553/22099/28952 5556/22100/28953\nf 5556/22101/28954 5558/22102/28955 5555/22103/28956\nf 13246/22104/28957 5559/22105/28958 11545/22106/28959\nf 11545/22107/28960 5550/22108/28961 13246/22109/28962\nf 5559/22110/28963 13246/22111/28964 5546/22112/28965\nf 5546/22113/28966 11480/22114/28967 5559/22115/28968\nf 5561/22116/28969 5550/22117/28970 11545/22118/28971\nf 11480/22119/28972 5546/22120/28973 5561/22121/28974\nf 12033/978/28975 5550/22122/28976 5561/22123/28977\nf 5561/22124/28978 5543/535/28979 12033/978/28980\nf 11545/22125/28981 13285/22126/28982 5561/22127/28983\nf 5561/22128/28984 13285/22129/28985 11480/22130/28986\nf 5563/3210/28987 8953/6159/28988 8951/22131/28989\nf 8951/22132/28990 5545/22133/28991 5563/3210/28992\nf 8952/22134/28993 5566/6161/28994 5565/2825/28995\nf 5565/2825/28996 8968/22135/28997 8952/22136/28998\nf 5568/3440/28999 5597/857/29000 12342/5671/29001\nf 12342/5671/29002 5570/4227/29003 5568/3440/29004\nf 5570/4227/29005 12342/5671/29006 5598/2138/29007\nf 5598/2138/29008 5571/5070/29009 5570/4227/29010\nf 5571/5070/29011 5598/2138/29012 8986/5374/29013\nf 8986/5374/29014 5573/1480/29015 5571/5070/29016\nf 5573/1480/29017 8986/5374/29018 8987/4044/29019\nf 8987/4044/29020 5575/6137/29021 5573/1480/29022\nf 5575/6137/29023 8987/4044/29024 9256/3780/29025\nf 9256/3780/29026 5577/174/29027 5575/6137/29028\nf 5578/369/29029 5577/174/29030 9256/3780/29031\nf 9256/3780/29032 5604/4373/29033 5578/369/29034\nf 5578/369/29035 5604/4373/29036 5605/3748/29037\nf 5605/3748/29038 5579/853/29039 5578/369/29040\nf 5580/5616/29041 5579/853/29042 5605/3748/29043\nf 5605/3748/29044 12449/4961/29045 5580/5616/29046\nf 5580/5616/29047 12449/4961/29048 5608/6520/29049\nf 5608/6520/29050 5582/154/29051 5580/5616/29052\nf 5583/3327/29053 5582/154/29054 5608/6520/29055\nf 5608/6520/29056 11821/5872/29057 5583/3327/29058\nf 5583/3327/29059 11821/5872/29060 11827/3937/29061\nf 11827/3937/29062 12411/760/29063 5583/3327/29064\nf 5584/22137/29065 11828/22138/29066 11840/1617/29067\nf 11840/1617/29068 5585/4174/29069 5584/22139/29070\nf 5585/4174/29071 11840/1617/29072 5616/4901/29073\nf 5616/4901/29074 5586/2481/29075 5585/4174/29076\nf 5586/2481/29077 5616/4901/29078 12073/5041/29079\nf 12073/5041/29080 5588/3510/29081 5586/2481/29082\nf 5588/3510/29083 12073/5041/29084 5620/6102/29085\nf 5620/6102/29086 5589/6438/29087 5588/3510/29088\nf 5589/6438/29089 5620/6102/29090 8769/4233/29091\nf 8769/4233/29092 8771/4670/29093 5589/6438/29094\nf 5592/997/29095 5593/2233/29096 5622/2229/29097\nf 5622/2229/29098 12127/5250/29099 5592/997/29100\nf 8770/22140/29101 5622/2229/29102 5593/2233/29103\nf 5593/2233/29104 5591/22141/29105 8770/22142/29106\nf 5595/1167/29107 5596/1865/29108 5569/22143/29109\nf 5569/22144/29110 12357/22145/29111 5595/1167/29112\nf 12325/22146/29113 5569/22147/29114 5596/1865/29115\nf 5596/1865/29116 5599/1147/29117 12325/22148/29118\nf 5572/22149/29119 12325/22150/29120 5599/1147/29121\nf 5599/1147/29122 5600/4817/29123 5572/22151/29124\nf 5574/22152/29125 5572/22153/29126 5600/4817/29127\nf 5600/4817/29128 5601/881/29129 5574/22154/29130\nf 5576/22155/29131 5574/22156/29132 5601/881/29133\nf 5601/881/29134 5602/5428/29135 5576/22157/29136\nf 5576/22158/29137 5602/5428/29138 5603/1758/29139\nf 5603/1758/29140 11822/22159/29141 5576/22160/29142\nf 11823/22161/29143 11822/22162/29144 5603/1758/29145\nf 5603/1758/29146 5606/637/29147 11823/22163/29148\nf 5581/22164/29149 11823/22165/29150 5606/637/29151\nf 5606/637/29152 5607/1640/29153 5581/22166/29154\nf 11820/22167/29155 5581/22168/29156 5607/1640/29157\nf 5607/1640/29158 5609/2102/29159 11820/22169/29160\nf 5610/22170/29161 11820/22171/29162 5609/2102/29163\nf 5609/2102/29164 5611/404/29165 5610/22172/29166\nf 5612/22173/29167 5610/22174/29168 5611/404/29169\nf 5611/404/29170 5613/2383/29171 5612/22175/29172\nf 5614/22176/29173 5612/22177/29174 5613/2383/29175\nf 5613/2383/29176 5615/1066/29177 5614/22178/29178\nf 11902/22179/29179 5614/22180/29180 5615/1066/29181\nf 5615/1066/29182 5617/1323/29183 11902/22181/29184\nf 5587/22182/29185 11902/22183/29186 5617/1323/29187\nf 5617/1323/29188 5618/3680/29189 5587/22184/29190\nf 5587/22185/29191 5618/3680/29192 5619/2293/29193\nf 5619/2293/29194 12065/22186/29195 5587/22187/29196\nf 5590/22188/29197 12065/22189/29198 5619/2293/29199\nf 5619/2293/29200 5621/4130/29201 5590/22190/29202\nf 12064/22191/29203 5590/22192/29204 5621/4130/29205\nf 5621/4130/29206 5623/6310/29207 12064/22193/29208\nf 12064/22194/29209 5623/6310/29210 5624/1946/29211\nf 5624/1946/29212 5594/22195/29213 12064/22196/29214\nf 5625/22197/29215 5626/22198/29216 5651/22199/29217\nf 5651/22200/29218 13277/22201/29219 5625/22202/29220\nf 5653/22203/29221 5651/22204/29222 5626/22205/29223\nf 5626/22206/29224 5628/22207/29225 5653/22208/29226\nf 13275/22209/29227 5653/22210/29228 5628/22211/29229\nf 5628/22212/29230 5630/22213/29231 13275/22214/29232\nf 5656/22215/29233 13275/22216/29234 5630/22217/29235\nf 5630/22218/29236 5631/22219/29237 5656/22220/29238\nf 5658/22221/29239 5656/22222/29240 5631/22223/29241\nf 5631/22224/29242 5632/22225/29243 5658/22226/29244\nf 5658/22227/29245 5632/22228/29246 5633/22229/29247\nf 5633/22230/29248 11534/22231/29249 5658/22232/29250\nf 9220/22233/29251 11534/22234/29252 5633/22235/29253\nf 5633/22236/29254 5635/22237/29255 9220/22238/29256\nf 9220/22239/29257 5635/22240/29258 5636/22241/29259\nf 5636/22242/29260 9221/22243/29261 9220/22244/29262\nf 9312/22245/29263 9221/22246/29264 5636/22247/29265\nf 5636/22248/29266 5639/22249/29267 9312/22250/29268\nf 9312/22251/29269 5639/22252/29270 5640/22253/29271\nf 5640/22254/29272 11644/22255/29273 9312/22256/29274\nf 11646/22257/29275 11644/22258/29276 5640/22259/29277\nf 5640/22260/29278 12486/22261/29279 11646/22262/29280\nf 11607/22263/29281 5667/22264/29282 5641/22265/29283\nf 5641/22266/29284 5642/22267/29285 11607/22268/29286\nf 11608/22269/29287 11607/22270/29288 5642/22271/29289\nf 5642/22272/29290 5643/22273/29291 11608/22274/29292\nf 11608/22275/29293 5643/22276/29294 5644/22277/29295\nf 5644/22278/29296 11623/22279/29297 11608/22280/29298\nf 11623/22281/29299 5644/22282/29300 5645/22283/29301\nf 5645/22284/29302 11641/22285/29303 11623/22286/29304\nf 11641/22287/29305 5645/22288/29306 12237/22289/29307\nf 12237/22290/29308 11643/22291/29309 11641/22292/29310\nf 5681/22293/29311 12215/22294/29312 5647/22295/29313\nf 5647/22296/29314 5649/22297/29315 5681/22298/29316\nf 5647/22299/29317 12215/22300/29318 5677/22301/29319\nf 5677/22302/29320 5646/22303/29321 5647/22304/29322\nf 5650/22305/29323 5627/22306/29324 11390/22307/29325\nf 11390/22308/29326 5652/22309/29327 5650/22310/29328\nf 5652/22311/29329 11390/22312/29330 11391/22313/29331\nf 11391/22314/29332 5654/22315/29333 5652/22316/29334\nf 5654/22317/29335 11391/22318/29336 5629/22319/29337\nf 5629/22320/29338 5655/22321/29339 5654/22322/29340\nf 5655/22323/29341 5629/22324/29342 11528/22325/29343\nf 11528/22326/29344 5657/22327/29345 5655/22328/29346\nf 5657/22329/29347 11528/22330/29348 11529/22331/29349\nf 11529/22332/29350 5659/22333/29351 5657/22334/29352\nf 5660/22335/29353 5659/22336/29354 11529/22337/29355\nf 11529/22338/29356 5661/22339/29357 5660/22340/29358\nf 5660/22341/29359 5661/22342/29360 5634/22343/29361\nf 5634/22344/29362 5662/22345/29363 5660/22346/29364\nf 5662/22347/29365 5634/22348/29366 5637/22349/29367\nf 5637/22350/29368 5663/22351/29369 5662/22352/29370\nf 5663/22353/29371 5637/22354/29372 5638/22355/29373\nf 5638/22356/29374 5664/22357/29375 5663/22358/29376\nf 5664/22359/29377 5638/22360/29378 5665/22361/29379\nf 5665/22362/29380 5666/22363/29381 5664/22364/29382\nf 5666/22365/29383 5665/22366/29384 11645/22367/29385\nf 11645/22368/29386 5668/22369/29387 5666/22370/29388\nf 5668/22371/29389 11645/22372/29390 5669/22373/29391\nf 5669/22374/29392 5670/22375/29393 5668/22376/29394\nf 5670/22377/29395 5669/22378/29396 5671/22379/29397\nf 5671/22380/29398 5672/22381/29399 5670/22382/29400\nf 5672/22383/29401 5671/22384/29402 5673/22385/29403\nf 5673/22386/29404 5674/22387/29405 5672/22388/29406\nf 5674/22389/29407 5673/22390/29408 5675/22391/29409\nf 5675/22392/29410 5676/22393/29411 5674/22394/29412\nf 5676/22395/29413 5675/22396/29414 11642/22397/29415\nf 11642/22398/29416 5678/22399/29417 5676/22400/29418\nf 5678/22401/29419 11642/22402/29420 5648/22403/29421\nf 5648/22404/29422 5679/22405/29423 5678/22406/29424\nf 5680/22407/29425 5679/22408/29426 5648/22409/29427\nf 5648/22410/29428 12214/22411/29429 5680/22412/29430\nf 5682/4872/29431 5684/1366/29432 5683/4015/29433\nf 5682/4872/29434 5683/4015/29435 5685/771/29436\nf 5682/4872/29437 5685/771/29438 5686/6300/29439\nf 5682/4872/29440 5686/6300/29441 5687/638/29442\nf 5682/4872/29443 5687/638/29444 5688/4731/29445\nf 5682/4872/29446 5688/4731/29447 5689/3099/29448\nf 5682/4872/29449 5689/3099/29450 5690/804/29451\nf 5682/4872/29452 5690/804/29453 5691/2688/29454\nf 5682/4872/29455 5691/2688/29456 5692/4126/29457\nf 5682/4872/29458 5692/4126/29459 5693/3757/29460\nf 5682/4872/29461 5693/3757/29462 5694/6266/29463\nf 5682/4872/29464 5694/6266/29465 5695/1463/29466\nf 5682/4872/29467 5695/1463/29468 5696/2109/29469\nf 5682/4872/29470 5696/2109/29471 5697/3123/29472\nf 5682/4872/29473 5697/3123/29474 5698/3741/29475\nf 5682/4872/29476 5698/3741/29477 5684/1366/29478\nf 5699/1042/29479 5686/6300/29480 5685/771/29481\nf 5685/771/29482 5700/4794/29483 5699/1042/29484\nf 5686/6300/29485 5699/1042/29486 5701/2836/29487\nf 5701/2836/29488 5687/638/29489 5686/6300/29490\nf 5687/638/29491 5701/2836/29492 5702/5264/29493\nf 5702/5264/29494 5688/4731/29495 5687/638/29496\nf 5688/4731/29497 5702/5264/29498 5703/599/29499\nf 5703/599/29500 5689/3099/29501 5688/4731/29502\nf 5689/3099/29503 5703/599/29504 5704/4693/29505\nf 5704/4693/29506 5690/804/29507 5689/3099/29508\nf 5690/804/29509 5704/4693/29510 5705/1543/29511\nf 5705/1543/29512 5691/2688/29513 5690/804/29514\nf 5691/2688/29515 5705/1543/29516 5706/3432/29517\nf 5706/3432/29518 5692/4126/29519 5691/2688/29520\nf 5692/4126/29521 5706/3432/29522 5707/1605/29523\nf 5707/1605/29524 5693/3757/29525 5692/4126/29526\nf 5693/3757/29527 5707/1605/29528 5708/3228/29529\nf 5708/3228/29530 5694/6266/29531 5693/3757/29532\nf 5694/6266/29533 5708/3228/29534 5709/4193/29535\nf 5709/4193/29536 5695/1463/29537 5694/6266/29538\nf 5695/1463/29539 5709/4193/29540 5710/4166/29541\nf 5710/4166/29542 5696/2109/29543 5695/1463/29544\nf 5696/2109/29545 5710/4166/29546 5711/2514/29547\nf 5711/2514/29548 5697/3123/29549 5696/2109/29550\nf 5697/3123/29551 5711/2514/29552 5712/2832/29553\nf 5712/2832/29554 5698/3741/29555 5697/3123/29556\nf 5698/3741/29557 5712/2832/29558 5713/6495/29559\nf 5713/6495/29560 5684/1366/29561 5698/3741/29562\nf 5684/1366/29563 5713/6495/29564 5714/1608/29565\nf 5714/1608/29566 5683/4015/29567 5684/1366/29568\nf 5683/4015/29569 5714/1608/29570 5700/4794/29571\nf 5700/4794/29572 5685/771/29573 5683/4015/29574\nf 5715/6273/29575 5714/1608/29576 5713/6495/29577\nf 5713/6495/29578 5716/797/29579 5715/6273/29580\nf 5716/797/29581 5713/6495/29582 5712/2832/29583\nf 5714/1608/29584 5715/6273/29585 5717/3455/29586\nf 5717/3455/29587 5700/4794/29588 5714/1608/29589\nf 5700/4794/29590 5717/3455/29591 5718/5440/29592\nf 5718/5440/29593 5699/1042/29594 5700/4794/29595\nf 5699/1042/29596 5718/5440/29597 5719/3025/29598\nf 5719/3025/29599 5701/2836/29600 5699/1042/29601\nf 5701/2836/29602 5719/3025/29603 5720/4056/29604\nf 5720/4056/29605 5702/5264/29606 5701/2836/29607\nf 5702/5264/29608 5720/4056/29609 5721/5582/29610\nf 5721/5582/29611 5703/599/29612 5702/5264/29613\nf 5703/599/29614 5721/5582/29615 5722/6435/29616\nf 5722/6435/29617 5704/4693/29618 5703/599/29619\nf 5704/4693/29620 5722/6435/29621 5723/4607/29622\nf 5723/4607/29623 5705/1543/29624 5704/4693/29625\nf 5705/1543/29626 5723/4607/29627 5724/139/29628\nf 5724/139/29629 5706/3432/29630 5705/1543/29631\nf 5706/3432/29632 5724/139/29633 5725/6305/29634\nf 5725/6305/29635 5707/1605/29636 5706/3432/29637\nf 5707/1605/29638 5725/6305/29639 5726/1354/29640\nf 5726/1354/29641 5708/3228/29642 5707/1605/29643\nf 5708/3228/29644 5726/1354/29645 5727/2179/29646\nf 5727/2179/29647 5709/4193/29648 5708/3228/29649\nf 5709/4193/29650 5727/2179/29651 5728/2271/29652\nf 5728/2271/29653 5710/4166/29654 5709/4193/29655\nf 5710/4166/29656 5728/2271/29657 5729/4497/29658\nf 5729/4497/29659 5711/2514/29660 5710/4166/29661\nf 5711/2514/29662 5729/4497/29663 5730/5663/29664\nf 5730/5663/29665 5712/2832/29666 5711/2514/29667\nf 5712/2832/29668 5730/5663/29669 5716/797/29670\nf 5731/22413/29671 5733/22414/29672 5732/22415/29673\nf 5731/22416/29674 5734/22417/29675 5733/22418/29676\nf 5731/22419/29677 5735/22420/29678 5734/22421/29679\nf 5731/22422/29680 5736/22423/29681 5735/22424/29682\nf 5731/22425/29683 5737/22426/29684 5736/22427/29685\nf 5731/22428/29686 5738/22429/29687 5737/22430/29688\nf 5731/22431/29689 5739/22432/29690 5738/22433/29691\nf 5731/22434/29692 5740/22435/29693 5739/22436/29694\nf 5731/22437/29695 5741/22438/29696 5740/22439/29697\nf 5731/22440/29698 5742/22441/29699 5741/22442/29700\nf 5731/22443/29701 5743/22444/29702 5742/22445/29703\nf 5731/22446/29704 5744/22447/29705 5743/22448/29706\nf 5731/22449/29707 5745/22450/29708 5744/22451/29709\nf 5731/22452/29710 5746/22453/29711 5745/22454/29712\nf 5731/22455/29713 5747/22456/29714 5746/22457/29715\nf 5731/22458/29716 5732/22459/29717 5747/22460/29718\nf 5734/22461/29719 5735/22462/29720 5748/22463/29721\nf 5735/22464/29722 5736/22465/29723 5749/22466/29724\nf 5749/22467/29725 5748/22468/29726 5735/22469/29727\nf 5737/22470/29728 5738/22471/29729 5750/22472/29730\nf 5738/22473/29731 5739/22474/29732 5751/22475/29733\nf 5751/22476/29734 5750/22477/29735 5738/22478/29736\nf 5740/22479/29737 5741/22480/29738 5752/22481/29739\nf 5741/22482/29740 5742/22483/29741 5753/22484/29742\nf 5753/22485/29743 5752/22486/29744 5741/22487/29745\nf 5743/22488/29746 5744/22489/29747 5754/22490/29748\nf 5744/22491/29749 5745/22492/29750 5755/22493/29751\nf 5755/22494/29752 5754/22495/29753 5744/22496/29754\nf 5746/22497/29755 5747/22498/29756 5756/22499/29757\nf 5747/22500/29758 5732/22501/29759 5757/22502/29760\nf 5758/22503/29761 5757/22504/29762 5732/22505/29763\nf 5732/22506/29764 5733/22507/29765 5758/22508/29766\nf 5759/22509/29767 5758/22510/29768 5733/22511/29769\nf 5733/22512/29770 5734/22513/29771 5759/22514/29772\nf 5748/22515/29773 5759/22516/29774 5734/22517/29775\nf 5757/22518/29776 5756/22519/29777 5747/22520/29778\nf 5757/22521/29779 5758/22522/29780 5760/22523/29781\nf 5760/22524/29782 5758/22525/29783 5759/22526/29784\nf 5760/22527/29785 5761/22528/29786 5757/22529/29787\nf 5759/22530/29788 5762/22531/29789 5760/22532/29790\nf 5762/22533/29791 5759/22534/29792 5748/22535/29793\nf 5748/22536/29794 5763/22537/29795 5762/22538/29796\nf 5763/22539/29797 5748/22540/29798 5749/22541/29799\nf 5749/22542/29800 5764/22543/29801 5763/22544/29802\nf 5764/22545/29803 5749/22546/29804 5765/22547/29805\nf 5765/22548/29806 5749/22549/29807 5736/22550/29808\nf 5736/22551/29809 5737/22552/29810 5765/22553/29811\nf 5750/22554/29812 5765/22555/29813 5737/22556/29814\nf 5765/22557/29815 5766/22558/29816 5764/22559/29817\nf 5766/22560/29818 5765/22561/29819 5750/22562/29820\nf 5750/22563/29821 5767/22564/29822 5766/22565/29823\nf 5767/22566/29824 5750/22567/29825 5751/22568/29826\nf 5751/22569/29827 5768/22570/29828 5767/22571/29829\nf 5768/22572/29830 5751/22573/29831 5769/22574/29832\nf 5769/22575/29833 5751/22576/29834 5739/22577/29835\nf 5739/22578/29836 5740/22579/29837 5769/22580/29838\nf 5752/22581/29839 5769/22582/29840 5740/22583/29841\nf 5769/22584/29842 5770/22585/29843 5768/22586/29844\nf 5770/22587/29845 5769/22588/29846 5752/22589/29847\nf 5752/22590/29848 5771/22591/29849 5770/22592/29850\nf 5771/22593/29851 5752/22594/29852 5753/22595/29853\nf 5753/22596/29854 5772/22597/29855 5771/22598/29856\nf 5772/22599/29857 5753/22600/29858 5773/22601/29859\nf 5773/22602/29860 5753/22603/29861 5742/22604/29862\nf 5742/22605/29863 5743/22606/29864 5773/22607/29865\nf 5754/22608/29866 5773/22609/29867 5743/22610/29868\nf 5773/22611/29869 5774/22612/29870 5772/22613/29871\nf 5774/22614/29872 5773/22615/29873 5754/22616/29874\nf 5754/22617/29875 5775/22618/29876 5774/22619/29877\nf 5775/22620/29878 5754/22621/29879 5755/22622/29880\nf 5755/22623/29881 5776/22624/29882 5775/22625/29883\nf 5776/22626/29884 5755/22627/29885 5777/22628/29886\nf 5777/22629/29887 5755/22630/29888 5745/22631/29889\nf 5745/22632/29890 5746/22633/29891 5777/22634/29892\nf 5756/22635/29893 5777/22636/29894 5746/22637/29895\nf 5777/22638/29896 5778/22639/29897 5776/22640/29898\nf 5778/22641/29899 5777/22642/29900 5756/22643/29901\nf 5756/22644/29902 5779/22645/29903 5778/22646/29904\nf 5779/22647/29905 5756/22648/29906 5757/22649/29907\nf 5757/22650/29908 5761/22651/29909 5779/22652/29910\nf 10650/3036/29911 5782/1595/29912 10668/6006/29913\nf 10668/6006/29914 10661/2371/29915 10650/3036/29916\nf 10668/6006/29917 5782/1595/29918 11951/3865/29919\nf 11951/3865/29920 5782/1595/29921 5784/322/29922\nf 5784/322/29923 12424/5745/29924 11951/3865/29925\nf 5785/4186/29926 12424/5745/29927 5784/322/29928\nf 5784/322/29929 2940/4477/29930 5785/4186/29931\nf 10753/4143/29932 2940/4477/29933 5784/322/29934\nf 5784/322/29935 5787/5435/29936 10753/4143/29937\nf 11953/22653/29938 5788/4401/29939 10670/22654/29940\nf 5797/22655/29941 5780/22656/29942 5783/22657/29943\nf 5783/22658/29944 12036/22659/29945 5797/22660/29946\nf 5780/22661/29947 5797/22662/29948 10161/22663/29949\nf 10161/22664/29950 10651/22665/29951 5780/22666/29952\nf 10651/22667/29953 10161/22668/29954 12025/22669/29955\nf 12025/22670/29956 5786/22671/29957 10651/22672/29958\nf 10650/3036/29959 5787/5435/29960 10915/2859/29961\nf 12938/282/29962 10915/2859/29963 5787/5435/29964\nf 5787/5435/29965 5784/322/29966 12938/282/29967\nf 10097/417/29968 12938/282/29969 5784/322/29970\nf 5784/322/29971 5782/1595/29972 10097/417/29973\nf 10917/538/29974 10097/417/29975 5782/1595/29976\nf 10915/2859/29977 10917/538/29978 10650/3036/29979\nf 5782/1595/29980 10650/3036/29981 10917/538/29982\nf 10099/2252/29983 10214/547/29984 10212/5401/29985\nf 10212/5401/29986 12940/4173/29987 10099/2252/29988\nf 10213/886/29989 10215/1544/29990 10918/6286/29991\nf 10918/6286/29992 10916/2577/29993 10213/886/29994\nf 12939/1196/29995 5791/5818/29996 5789/6196/29997\nf 5789/6196/29998 12937/3712/29999 12939/1196/30000\nf 10098/168/30001 5794/430/30002 5793/1392/30003\nf 5793/1392/30004 10096/4680/30005 10098/168/30006\nf 5792/4898/30007 5796/5968/30008 5795/3223/30009\nf 5795/3223/30010 5790/5648/30011 5792/4898/30012\nf 10160/22673/30013 2914/22674/30014 12910/22675/30015\nf 12910/22676/30016 5798/22677/30017 10160/22678/30018\nf 11337/22679/30019 5798/22680/30020 12910/22681/30021\nf 5799/22682/30022 5798/22683/30023 11337/22684/30024\nf 11337/22685/30025 12599/22686/30026 5799/22687/30027\nf 5799/22688/30028 12599/22689/30029 5800/22690/30030\nf 5800/22691/30031 3045/22692/30032 5799/22693/30033\nf 5799/22694/30034 3045/22695/30035 3052/22696/30036\nf 3052/22697/30037 5801/22698/30038 5799/22699/30039\nf 12911/22700/30040 5802/22701/30041 11338/22702/30042\nf 12962/22703/30043 5801/22704/30044 10160/22705/30045\nf 10160/22706/30046 12968/22707/30047 12962/22708/30048\nf 12968/22709/30049 10160/22710/30050 5798/22711/30051\nf 10328/22712/30052 5799/22713/30053 5801/22714/30054\nf 5801/22715/30055 12962/22716/30056 10328/22717/30057\nf 10310/22718/30058 5798/22719/30059 5799/22720/30060\nf 5799/22721/30061 10328/22722/30062 10310/22723/30063\nf 5798/22724/30064 10310/22725/30065 12968/22726/30066\nf 10308/22727/30067 13005/22728/30068 11712/22729/30069\nf 11712/22730/30070 11714/22731/30071 10308/22732/30072\nf 11713/22733/30073 5807/22734/30074 12969/22735/30075\nf 12969/22736/30076 11715/22737/30077 11713/22738/30078\nf 13004/22739/30079 5809/22740/30080 12961/22741/30081\nf 12961/22742/30082 5804/22743/30083 13004/22744/30084\nf 10307/22745/30085 10309/22746/30086 10327/22747/30087\nf 10327/22748/30088 5806/22749/30089 10307/22750/30090\nf 5805/22751/30091 5803/22752/30092 5810/22753/30093\nf 5810/22754/30094 5808/22755/30095 5805/22756/30096\nf 13029/273/30097 12626/2537/30098 6133/2158/30099\nf 6133/2158/30100 6204/4292/30101 13029/273/30102\nf 6126/2879/30103 12626/2537/30104 13029/273/30105\nf 13029/273/30106 11744/6551/30107 6126/2879/30108\nf 13084/2867/30109 6126/2879/30110 11744/6551/30111\nf 11744/6551/30112 11742/6045/30113 13084/2867/30114\nf 10624/4704/30115 13084/2867/30116 11742/6045/30117\nf 11742/6045/30118 11743/2761/30119 10624/4704/30120\nf 10622/5451/30121 10624/4704/30122 11743/2761/30123\nf 11743/2761/30124 11751/1416/30125 10622/5451/30126\nf 10706/5574/30127 10622/5451/30128 11751/1416/30129\nf 11751/1416/30130 13160/6324/30131 10706/5574/30132\nf 10667/4920/30133 10706/5574/30134 13160/6324/30135\nf 13160/6324/30136 6212/5300/30137 10667/4920/30138\nf 11852/1281/30139 6204/4292/30140 6133/2158/30141\nf 6133/2158/30142 10794/934/30143 11852/1281/30144\nf 10625/4614/30145 11852/1281/30146 10794/934/30147\nf 10625/4614/30148 10626/3052/30149 11852/1281/30150\nf 10625/4614/30151 10794/934/30152 10563/6168/30153\nf 10625/4614/30154 10563/6168/30155 10564/3093/30156\nf 10564/3093/30157 10667/4920/30158 6212/5300/30159\nf 10625/4614/30160 10564/3093/30161 12587/2297/30162\nf 6212/5300/30163 9534/3989/30164 10564/3093/30165\nf 10564/3093/30166 9534/3989/30167 12587/2297/30168\nf 10536/1419/30169 5822/76/30170 5946/5832/30171\nf 5946/5832/30172 5942/2474/30173 10536/1419/30174\nf 5823/2957/30175 10536/1419/30176 5942/2474/30177\nf 5942/2474/30178 10682/4214/30179 5823/2957/30180\nf 5946/5832/30181 5822/76/30182 10365/3211/30183\nf 10365/3211/30184 5947/2165/30185 5946/5832/30186\nf 5826/5452/30187 5825/22757/30188 10562/22758/30189\nf 10562/22759/30190 5827/3955/30191 5826/5452/30192\nf 5828/220/30193 5826/5452/30194 5827/3955/30195\nf 5827/3955/30196 6201/2952/30197 5828/220/30198\nf 5829/4210/30199 5821/22760/30200 5823/2957/30201\nf 5829/4210/30202 5827/3955/30203 10562/22761/30204\nf 10562/22762/30205 5821/22763/30206 5829/4210/30207\nf 5823/2957/30208 5830/5813/30209 5829/4210/30210\nf 5829/4210/30211 5830/5813/30212 5831/1402/30213\nf 5832/3599/30214 5831/1402/30215 5830/5813/30216\nf 5830/5813/30217 5833/1866/30218 5832/3599/30219\nf 5833/1866/30220 5830/5813/30221 5823/2957/30222\nf 5832/3599/30223 5833/1866/30224 5834/2083/30225\nf 5834/2083/30226 5835/1678/30227 5832/3599/30228\nf 5835/1678/30229 5834/2083/30230 5836/2139/30231\nf 5837/5312/30232 5836/2139/30233 5834/2083/30234\nf 5834/2083/30235 5838/4701/30236 5837/5312/30237\nf 5838/4701/30238 5834/2083/30239 5833/1866/30240\nf 5836/2139/30241 6056/558/30242 5835/1678/30243\nf 5833/1866/30244 5839/392/30245 5838/4701/30246\nf 5838/4701/30247 5839/392/30248 10683/4674/30249\nf 10683/4674/30250 5936/5301/30251 5838/4701/30252\nf 5837/5312/30253 5838/4701/30254 5936/5301/30255\nf 5936/5301/30256 5841/2791/30257 5837/5312/30258\nf 5842/3781/30259 9629/22764/30260 9602/22765/30261\nf 9601/22766/30262 5843/4400/30263 9610/22767/30264\nf 6013/1300/30265 9610/22768/30266 5843/4400/30267\nf 5843/4400/30268 5930/1231/30269 6013/1300/30270\nf 5823/2957/30271 5839/392/30272 5833/1866/30273\nf 12654/3105/30274 6013/1300/30275 5930/1231/30276\nf 5930/1231/30277 12112/6049/30278 12654/3105/30279\nf 6025/520/30280 12654/3105/30281 12112/6049/30282\nf 12112/6049/30283 12103/2504/30284 6025/520/30285\nf 6025/520/30286 12103/2504/30287 5968/5899/30288\nf 5839/392/30289 5823/2957/30290 10682/4214/30291\nf 10682/4214/30292 10683/4674/30293 5839/392/30294\nf 5845/4135/30295 5835/1678/30296 6056/558/30297\nf 6056/558/30298 5846/3212/30299 5845/4135/30300\nf 5847/761/30301 5845/4135/30302 5846/3212/30303\nf 5846/3212/30304 6052/4972/30305 5847/761/30306\nf 5845/4135/30307 5847/761/30308 5848/9/30309\nf 5845/4135/30310 9988/22769/30311 5835/1678/30312\nf 9988/22770/30313 5832/3599/30314 5835/1678/30315\nf 5832/3599/30316 9988/22771/30317 5849/3066/30318\nf 5849/3066/30319 5831/1402/30320 5832/3599/30321\nf 5831/1402/30322 5849/3066/30323 5850/808/30324\nf 5850/808/30325 5851/3933/30326 5831/1402/30327\nf 5831/1402/30328 5851/3933/30329 5829/4210/30330\nf 5827/3955/30331 5829/4210/30332 5851/3933/30333\nf 5851/3933/30334 6201/2952/30335 5827/3955/30336\nf 5852/3237/30337 6201/2952/30338 5851/3933/30339\nf 5851/3933/30340 5850/808/30341 5852/3237/30342\nf 6201/2952/30343 5852/3237/30344 6200/1234/30345\nf 9532/4359/30346 12580/5151/30347 5854/5492/30348\nf 9532/4359/30349 5854/5492/30350 5855/2072/30351\nf 9532/4359/30352 5855/2072/30353 5856/5644/30354\nf 5857/147/30355 5855/2072/30356 5854/5492/30357\nf 5855/2072/30358 5857/147/30359 5858/3190/30360\nf 5859/2510/30361 5858/3190/30362 5857/147/30363\nf 5857/147/30364 5860/1506/30365 5859/2510/30366\nf 5859/2510/30367 5860/1506/30368 5861/1555/30369\nf 5861/1555/30370 5862/2935/30371 5859/2510/30372\nf 5860/1506/30373 5857/147/30374 5863/5877/30375\nf 5854/5492/30376 5863/5877/30377 5857/147/30378\nf 5863/5877/30379 5864/4447/30380 5860/1506/30381\nf 5861/1555/30382 5860/1506/30383 5864/4447/30384\nf 5864/4447/30385 5865/5405/30386 5861/1555/30387\nf 5858/3190/30388 5859/2510/30389 9416/1987/30390\nf 9416/1987/30391 9403/1735/30392 5858/3190/30393\nf 12552/2579/30394 9416/1987/30395 5859/2510/30396\nf 5859/2510/30397 5862/2935/30398 12552/2579/30399\nf 5858/3190/30400 5868/3694/30401 5855/2072/30402\nf 5868/3694/30403 5858/3190/30404 9403/1735/30405\nf 9403/1735/30406 9404/411/30407 5868/3694/30408\nf 5868/3694/30409 9404/411/30410 12756/2637/30411\nf 12756/2637/30412 12586/4768/30413 5868/3694/30414\nf 12586/4768/30415 5855/2072/30416 5868/3694/30417\nf 12586/4768/30418 5856/5644/30419 5855/2072/30420\nf 9533/2169/30421 9532/4359/30422 5856/5644/30423\nf 5856/5644/30424 12586/3166/30425 9533/2169/30426\nf 12579/2839/30427 5853/1542/30428 5873/1131/30429\nf 5873/1131/30430 5960/2277/30431 12579/2839/30432\nf 9460/2176/30433 5960/2277/30434 5873/1131/30435\nf 5873/1131/30436 6211/712/30437 9460/2176/30438\nf 9461/1978/30439 9460/2176/30440 6211/712/30441\nf 6211/712/30442 6209/1104/30443 9461/1978/30444\nf 12387/4696/30445 5952/3271/30446 9218/1689/30447\nf 9218/1689/30448 12432/6099/30449 12387/4696/30450\nf 5962/4517/30451 12432/6099/30452 9218/1689/30453\nf 9218/1689/30454 9219/5815/30455 5962/4517/30456\nf 9343/5303/30457 5962/4517/30458 9219/5815/30459\nf 9219/5815/30460 5953/1239/30461 9343/5303/30462\nf 9344/470/30463 9343/5303/30464 5953/1239/30465\nf 5953/1239/30466 12518/2028/30467 9344/470/30468\nf 12105/2607/30469 12075/4134/30470 5950/2433/30471\nf 5950/2433/30472 5965/6399/30473 12105/2607/30474\nf 5965/6399/30475 5950/2433/30476 8683/22772/30477\nf 8683/22773/30478 12386/22774/30479 5965/6399/30480\nf 5959/6479/30481 9939/4271/30482 12350/1924/30483\nf 12350/1924/30484 12400/6474/30485 5959/6479/30486\nf 5955/4360/30487 9939/4271/30488 5959/6479/30489\nf 5959/6479/30490 12332/1932/30491 5955/4360/30492\nf 5955/4360/30493 12332/1932/30494 9344/470/30495\nf 9344/470/30496 12518/2028/30497 5955/4360/30498\nf 11236/3739/30499 5935/1192/30500 5887/1882/30501\nf 5887/1882/30502 11238/4790/30503 11236/3739/30504\nf 5889/3873/30505 5887/1882/30506 5935/1192/30507\nf 5935/1192/30508 11311/2013/30509 5889/3873/30510\nf 5887/1882/30511 5889/3873/30512 5891/5670/30513\nf 5891/5670/30514 5892/3408/30515 5887/1882/30516\nf 11375/58/30517 11238/4790/30518 5887/1882/30519\nf 5887/1882/30520 5892/3408/30521 11375/58/30522\nf 5889/3873/30523 11311/2013/30524 11312/2749/30525\nf 11312/2749/30526 5895/1444/30527 5889/3873/30528\nf 5895/1444/30529 11312/2749/30530 5938/590/30531\nf 5938/590/30532 5896/3854/30533 5895/1444/30534\nf 5896/3854/30535 5938/590/30536 5897/2357/30537\nf 5897/2357/30538 5898/4549/30539 5896/3854/30540\nf 5899/250/30541 5898/4549/30542 5897/2357/30543\nf 5897/2357/30544 5900/3647/30545 5899/250/30546\nf 5901/1759/30547 5899/250/30548 5900/3647/30549\nf 5900/3647/30550 5902/6546/30551 5901/1759/30552\nf 5899/250/30553 5901/1759/30554 5903/4589/30555\nf 5903/4589/30556 5904/5873/30557 5899/250/30558\nf 5898/4549/30559 5899/250/30560 5904/5873/30561\nf 5904/5873/30562 5905/5093/30563 5898/4549/30564\nf 5906/1349/30565 5892/3408/30566 5891/5670/30567\nf 5891/5670/30568 5907/7/30569 5906/1349/30570\nf 5906/1349/30571 5907/7/30572 5992/4655/30573\nf 5908/4106/30574 5992/4655/30575 5907/7/30576\nf 5907/7/30577 5909/5731/30578 5908/4106/30579\nf 5908/4106/30580 5909/5731/30581 5910/6109/30582\nf 5910/6109/30583 5911/4260/30584 5908/4106/30585\nf 5912/4603/30586 5910/6109/30587 5909/5731/30588\nf 5910/6109/30589 5912/4603/30590 5905/5093/30591\nf 5909/5731/30592 5913/2902/30593 5912/4603/30594\nf 5913/2902/30595 5909/5731/30596 5907/7/30597\nf 5907/7/30598 5891/5670/30599 5913/2902/30600\nf 5905/5093/30601 5914/6439/30602 5910/6109/30603\nf 5911/4260/30604 5910/6109/30605 5914/6439/30606\nf 5914/6439/30607 5915/4368/30608 5911/4260/30609\nf 5992/4655/30610 5994/1368/30611 5906/1349/30612\nf 5915/4368/30613 5914/6439/30614 5916/1591/30615\nf 5916/1591/30616 5914/6439/30617 5905/5093/30618\nf 5916/1591/30619 5987/2571/30620 5915/4368/30621\nf 5917/357/30622 5987/2571/30623 5916/1591/30624\nf 5916/1591/30625 5918/2608/30626 5917/357/30627\nf 5896/3854/30628 5912/4603/30629 5913/2902/30630\nf 5913/2902/30631 5895/1444/30632 5896/3854/30633\nf 5912/4603/30634 5896/3854/30635 5898/4549/30636\nf 5898/4549/30637 5905/5093/30638 5912/4603/30639\nf 5917/357/30640 5918/2608/30641 5919/1412/30642\nf 5920/742/30643 5919/1412/30644 5918/2608/30645\nf 5919/1412/30646 5920/742/30647 5921/4222/30648\nf 5921/4222/30649 5922/5009/30650 5919/1412/30651\nf 5979/101/30652 5919/1412/30653 5922/5009/30654\nf 5919/1412/30655 5979/101/30656 5917/357/30657\nf 5922/5009/30658 5923/4304/30659 5979/101/30660\nf 5924/4870/30661 5921/4222/30662 5920/742/30663\nf 5920/742/30664 5925/2555/30665 5924/4870/30666\nf 5944/838/30667 5924/4870/30668 5925/2555/30669\nf 5925/2555/30670 5926/524/30671 5944/838/30672\nf 5918/2608/30673 5903/4589/30674 5920/742/30675\nf 5903/4589/30676 5918/2608/30677 5916/1591/30678\nf 5916/1591/30679 5904/5873/30680 5903/4589/30681\nf 5905/5093/30682 5904/5873/30683 5916/1591/30684\nf 5902/6546/30685 5926/524/30686 5925/2555/30687\nf 5925/2555/30688 5901/1759/30689 5902/6546/30690\nf 5920/742/30691 5903/4589/30692 5901/1759/30693\nf 5901/1759/30694 5925/2555/30695 5920/742/30696\nf 6320/1891/30697 5922/5009/30698 5921/4222/30699\nf 5923/4304/30700 5922/5009/30701 6320/1891/30702\nf 5921/4222/30703 5927/1374/30704 6320/1891/30705\nf 5927/1374/30706 5921/4222/30707 5924/4870/30708\nf 6320/1891/30709 6321/3151/30710 5923/4304/30711\nf 5928/1523/30712 5924/4870/30713 5944/838/30714\nf 5924/4870/30715 5928/1523/30716 5927/1374/30717\nf 5944/838/30718 5929/4919/30719 5928/1523/30720\nf 5930/3957/30721 5931/202/30722 5951/3687/30723\nf 5951/3687/30724 12112/4727/30725 5930/3957/30726\nf 5933/3782/30727 5931/202/30728 5930/3957/30729\nf 5930/3957/30730 5843/6019/30731 5933/3782/30732\nf 5934/4638/30733 5933/3782/30734 5843/6019/30735\nf 5843/6019/30736 5841/1149/30737 5934/4638/30738\nf 13268/22775/30739 5931/202/30740 5933/3782/30741\nf 5951/3687/30742 5931/202/30743 13268/22776/30744\nf 5933/3782/30745 5890/22777/30746 13268/22778/30747\nf 5890/22779/30748 5933/3782/30749 5934/4638/30750\nf 13268/22780/30751 5886/22781/30752 5951/3687/30753\nf 5934/4638/30754 5841/1149/30755 5936/4167/30756\nf 5936/4167/30757 5937/798/30758 5934/4638/30759\nf 5894/22782/30760 5934/4638/30761 5937/798/30762\nf 5934/4638/30763 5894/22783/30764 5890/22784/30765\nf 5937/798/30766 5938/590/30767 5894/22785/30768\nf 5897/2357/30769 5938/590/30770 5937/798/30771\nf 5937/798/30772 5939/6125/30773 5897/2357/30774\nf 5939/6125/30775 5937/798/30776 5936/4167/30777\nf 5936/4167/30778 5840/3982/30779 5939/6125/30780\nf 5940/5728/30781 5939/6125/30782 5840/3982/30783\nf 5897/2357/30784 5939/6125/30785 5940/5728/30786\nf 5840/3982/30787 5824/1453/30788 5940/5728/30789\nf 5941/3375/30790 5940/5728/30791 5824/1453/30792\nf 5824/1453/30793 5942/3253/30794 5941/3375/30795\nf 5940/5728/30796 5941/3375/30797 5902/6546/30798\nf 5902/6546/30799 5941/3375/30800 5943/3445/30801\nf 5943/3445/30802 5926/524/30803 5902/6546/30804\nf 5944/838/30805 5926/524/30806 5943/3445/30807\nf 5943/3445/30808 5945/4519/30809 5944/838/30810\nf 5945/4519/30811 5943/3445/30812 5946/6320/30813\nf 5941/3375/30814 5942/3253/30815 5946/6320/30816\nf 5946/6320/30817 5943/3445/30818 5941/3375/30819\nf 5946/6320/30820 5947/5135/30821 5945/4519/30822\nf 5902/6546/30823 5900/3647/30824 5940/5728/30825\nf 5940/5728/30826 5900/3647/30827 5897/2357/30828\nf 5929/4919/30829 5944/838/30830 5945/4519/30831\nf 5945/4519/30832 6342/2483/30833 5929/4919/30834\nf 6342/2483/30835 5945/4519/30836 5947/5135/30837\nf 5947/5135/30838 6256/5546/30839 6342/2483/30840\nf 12074/3283/30841 12104/4834/30842 12102/4690/30843\nf 12102/4690/30844 12113/6386/30845 12074/3283/30846\nf 5932/447/30847 12109/1618/30848 8682/3993/30849\nf 8682/3993/30850 5948/3220/30851 5932/447/30852\nf 8684/1194/30853 8682/3993/30854 12109/1618/30855\nf 12109/1618/30856 11237/5168/30857 8684/1194/30858\nf 5876/5122/30859 8684/1194/30860 11237/5168/30861\nf 11237/5168/30862 5888/2215/30863 5876/5122/30864\nf 5878/4408/30865 5876/5122/30866 5888/2215/30867\nf 5888/2215/30868 5893/692/30869 5878/4408/30870\nf 12497/1220/30871 5878/4408/30872 5893/692/30873\nf 5893/692/30874 12356/4162/30875 12497/1220/30876\nf 5881/3243/30877 12497/1220/30878 12356/4162/30879\nf 12356/4162/30880 6134/923/30881 5881/3243/30882\nf 9938/2056/30883 5881/3243/30884 6134/923/30885\nf 6134/923/30886 9887/4599/30887 9938/2056/30888\nf 9938/2056/30889 9887/4599/30890 9888/379/30891\nf 9888/379/30892 5958/4861/30893 9938/2056/30894\nf 6136/1674/30895 5958/4861/30896 9888/379/30897\nf 9888/379/30898 12577/3197/30899 6136/1674/30900\nf 12383/1451/30901 5884/3473/30902 5872/4769/30903\nf 5872/4769/30904 12583/3350/30905 12383/1451/30906\nf 5885/6444/30907 12383/1451/30908 12583/3350/30909\nf 12583/3350/30910 5874/6469/30911 5885/6444/30912\nf 5880/519/30913 5885/6444/30914 5874/6469/30915\nf 5874/6469/30916 9462/2149/30917 5880/519/30918\nf 5879/4456/30919 5880/519/30920 9462/2149/30921\nf 9462/2149/30922 12182/3340/30923 5879/4456/30924\nf 12428/5086/30925 5879/4456/30926 12182/3340/30927\nf 12182/3340/30928 5970/1671/30929 12428/5086/30930\nf 5877/1511/30931 12428/5086/30932 5970/1671/30933\nf 5970/1671/30934 9783/5444/30935 5877/1511/30936\nf 5883/785/30937 5877/1511/30938 9783/5444/30939\nf 9783/5444/30940 9776/4202/30941 5883/785/30942\nf 12385/2103/30943 5883/785/30944 9776/4202/30945\nf 9776/4202/30946 9778/2753/30947 12385/2103/30948\nf 5882/22786/30949 12385/2103/30950 9778/2753/30951\nf 9778/2753/30952 5949/22787/30953 5882/22788/30954\nf 9777/5462/30955 12099/501/30956 6203/3284/30957\nf 6203/3284/30958 5966/2611/30959 9777/5462/30960\nf 5966/2611/30961 6203/3284/30962 5968/5992/30963\nf 5968/5992/30964 12103/2640/30965 5966/2611/30966\nf 5961/1108/30967 5875/22789/30968 11802/22790/30969\nf 11802/22791/30970 5969/3700/30971 5961/1108/30972\nf 12209/4255/30973 5961/1108/30974 5969/3700/30975\nf 5969/3700/30976 5971/4090/30977 12209/4255/30978\nf 5963/874/30979 12209/4255/30980 5971/4090/30981\nf 5971/4090/30982 6205/5831/30983 5963/874/30984\nf 5964/22792/30985 5963/874/30986 6205/5831/30987\nf 6205/5831/30988 12100/22793/30989 5964/22794/30990\nf 5972/4067/30991 6159/6393/30992 5973/4112/30993\nf 5973/4112/30994 5974/2084/30995 5972/4067/30996\nf 5975/1282/30997 5972/4067/30998 5974/2084/30999\nf 5974/2084/31000 5976/2964/31001 5975/1282/31002\nf 5977/2029/31003 5975/1282/31004 5976/2964/31005\nf 5976/2964/31006 5978/3724/31007 5977/2029/31008\nf 5923/4304/31009 5977/2029/31010 5978/3724/31011\nf 5978/3724/31012 5979/101/31013 5923/4304/31014\nf 5976/2964/31015 5974/2084/31016 5980/4594/31017\nf 5980/4594/31018 5981/5970/31019 5976/2964/31020\nf 5974/2084/31021 5973/4112/31022 5982/8/31023\nf 5982/8/31024 5980/4594/31025 5974/2084/31026\nf 5983/5517/31027 5980/4594/31028 5982/8/31029\nf 5981/5970/31030 5980/4594/31031 5983/5517/31032\nf 5982/8/31033 6153/6082/31034 5983/5517/31035\nf 5983/5517/31036 5984/1090/31037 5981/5970/31038\nf 5981/5970/31039 5984/1090/31040 5985/175/31041\nf 5985/175/31042 5986/3725/31043 5981/5970/31044\nf 5976/2964/31045 5981/5970/31046 5986/3725/31047\nf 5986/3725/31048 5978/3724/31049 5976/2964/31050\nf 5986/3725/31051 5985/175/31052 5987/2571/31053\nf 5915/4368/31054 5987/2571/31055 5985/175/31056\nf 5985/175/31057 5988/5835/31058 5915/4368/31059\nf 5988/5835/31060 5985/175/31061 5984/1090/31062\nf 5987/2571/31063 5917/357/31064 5986/3725/31065\nf 5917/357/31066 5979/101/31067 5978/3724/31068\nf 5978/3724/31069 5986/3725/31070 5917/357/31071\nf 5984/1090/31072 5989/6325/31073 5988/5835/31074\nf 5989/6325/31075 5984/1090/31076 5983/5517/31077\nf 5915/4368/31078 5988/5835/31079 5990/6113/31080\nf 5988/5835/31081 5989/6325/31082 5990/6113/31083\nf 5990/6113/31084 5911/4260/31085 5915/4368/31086\nf 5911/4260/31087 5990/6113/31088 5991/2800/31089\nf 5991/2800/31090 5908/4106/31091 5911/4260/31092\nf 5992/4655/31093 5908/4106/31094 5991/2800/31095\nf 5991/2800/31096 5993/3695/31097 5992/4655/31098\nf 5994/1368/31099 5992/4655/31100 5993/3695/31101\nf 5993/3695/31102 6190/6528/31103 5994/1368/31104\nf 6190/6528/31105 5993/3695/31106 5995/1263/31107\nf 5995/1263/31108 11293/545/31109 6190/6528/31110\nf 6135/3246/31111 11293/545/31112 5995/1263/31113\nf 11294/1577/31114 11293/545/31115 6135/3246/31116\nf 5957/2041/31117 11294/1577/31118 6135/3246/31119\nf 5957/2041/31120 6181/6463/31121 11294/1577/31122\nf 5957/2041/31123 6135/3246/31124 12578/2316/31125\nf 6181/6463/31126 5957/2041/31127 12086/1772/31128\nf 5957/2041/31129 5956/6297/31130 12086/1772/31131\nf 5956/6297/31132 6187/36/31133 12086/1772/31134\nf 6135/3246/31135 5995/1263/31136 12702/2227/31137\nf 5995/1263/31138 6000/6191/31139 12702/2227/31140\nf 6187/36/31141 5956/6297/31142 12592/4459/31143\nf 5994/1368/31144 6190/6528/31145 12592/4459/31146\nf 12098/3487/31147 6187/36/31148 12592/4459/31149\nf 6190/6528/31150 12098/3487/31151 12592/4459/31152\nf 6190/6528/31153 11293/545/31154 6178/1472/31155\nf 6178/1472/31156 13338/6490/31157 6190/6528/31158\nf 13338/6490/31159 6178/1472/31160 12355/6007/31161\nf 12355/6007/31162 6176/5751/31163 13338/6490/31164\nf 6004/1133/31165 9689/4327/31166 9690/772/31167\nf 9690/772/31168 10930/5883/31169 6004/1133/31170\nf 6006/3550/31171 6004/1133/31172 10930/5883/31173\nf 10930/5883/31174 6007/4931/31175 6006/3550/31176\nf 6004/1133/31177 6006/3550/31178 11026/3556/31179\nf 11026/3556/31180 11027/3900/31181 6004/1133/31182\nf 9689/4327/31183 6004/1133/31184 11027/3900/31185\nf 11027/3900/31186 12778/5107/31187 9689/4327/31188\nf 10931/22795/31189 6005/22796/31190 6010/92/31191\nf 6010/92/31192 6011/140/31193 10931/22797/31194\nf 12797/6516/31195 6010/92/31196 6005/22798/31197\nf 6005/22799/31198 9691/22800/31199 12797/6516/31200\nf 6010/92/31201 12797/6516/31202 9629/4644/31203\nf 9629/4644/31204 5842/1229/31205 6010/92/31206\nf 6011/140/31207 6010/92/31208 5842/1229/31209\nf 5842/1229/31210 12672/4742/31211 6011/140/31212\nf 6006/3550/31213 6007/4931/31214 11011/6228/31215\nf 11011/6228/31216 6015/2081/31217 6006/3550/31218\nf 11026/3556/31219 6006/3550/31220 6015/2081/31221\nf 6016/3116/31222 6015/2081/31223 11011/6228/31224\nf 11011/6228/31225 6017/3315/31226 6016/3116/31227\nf 6018/2942/31228 6016/3116/31229 6017/3315/31230\nf 6017/3315/31231 11247/4967/31232 6018/2942/31233\nf 6020/1586/31234 6018/2942/31235 11247/4967/31236\nf 11247/4967/31237 6021/3193/31238 6020/1586/31239\nf 6022/4787/31240 6018/2942/31241 6020/1586/31242\nf 6020/1586/31243 6023/4578/31244 6022/4787/31245\nf 10322/2093/31246 6020/1586/31247 6021/3193/31248\nf 6023/4578/31249 6020/1586/31250 10322/2093/31251\nf 6021/3193/31252 6100/6513/31253 10322/2093/31254\nf 10322/2093/31255 10323/4175/31256 6023/4578/31257\nf 6019/22801/31258 11068/22802/31259 6024/5423/31260\nf 6024/5423/31261 6058/1141/31262 6019/22803/31263\nf 11305/22804/31264 6019/22805/31265 6058/1141/31266\nf 6058/1141/31267 6024/5423/31268 12655/4220/31269\nf 12655/4220/31270 5968/4441/31271 6058/1141/31272\nf 6058/1141/31273 6026/1753/31274 11305/22806/31275\nf 10353/22807/31276 11305/22808/31277 6026/1753/31278\nf 6027/5273/31279 6026/1753/31280 6058/1141/31281\nf 5818/1933/31282 6027/5273/31283 6058/1141/31284\nf 6018/2942/31285 6022/4787/31286 6028/1904/31287\nf 5844/4545/31288 12655/4220/31289 6024/5423/31290\nf 6024/5423/31291 6029/3733/31292 5844/4545/31293\nf 6029/3733/31294 6024/5423/31295 11068/22809/31296\nf 11068/22810/31297 6014/22811/31298 6029/3733/31299\nf 6026/1753/31300 10354/241/31301 10353/22812/31302\nf 6026/1753/31303 6027/5273/31304 10830/3415/31305\nf 10830/3415/31306 10354/241/31307 6026/1753/31308\nf 10831/1732/31309 10830/3415/31310 6027/5273/31311\nf 6027/5273/31312 12524/2973/31313 10831/1732/31314\nf 12524/2973/31315 6027/5273/31316 5818/1933/31317\nf 5818/1933/31318 5817/4823/31319 12524/2973/31320\nf 12524/2973/31321 5817/4823/31322 5870/4505/31323\nf 5870/4505/31324 12757/5313/31325 12524/2973/31326\nf 12672/4742/31327 5844/4545/31328 6029/3733/31329\nf 6029/3733/31330 6011/140/31331 12672/4742/31332\nf 6029/3733/31333 6014/22813/31334 10931/22814/31335\nf 10931/22815/31336 6011/140/31337 6029/3733/31338\nf 6028/1904/31339 6016/3116/31340 6018/2942/31341\nf 6033/4835/31342 6015/2081/31343 6016/3116/31344\nf 6016/3116/31345 6028/1904/31346 6033/4835/31347\nf 6015/2081/31348 6033/4835/31349 11026/3556/31350\nf 10788/22816/31351 10787/22817/31352 6034/3145/31353\nf 6035/2323/31354 6034/3145/31355 10787/22818/31356\nf 10787/22819/31357 11278/22820/31358 6035/2323/31359\nf 6036/1869/31360 6035/2323/31361 11278/22821/31362\nf 11278/22822/31363 11354/22823/31364 6036/1869/31365\nf 6037/298/31366 6035/2323/31367 6036/1869/31368\nf 6036/1869/31369 6038/3110/31370 6037/298/31371\nf 6035/2323/31372 6037/298/31373 6039/632/31374\nf 6039/632/31375 6034/3145/31376 6035/2323/31377\nf 6034/3145/31378 6040/215/31379 10788/22824/31380\nf 6008/22825/31381 10788/22826/31382 6040/215/31383\nf 6034/3145/31384 6039/632/31385 6041/2806/31386\nf 6041/2806/31387 6040/215/31388 6034/3145/31389\nf 6040/215/31390 6042/1039/31391 6008/22827/31392\nf 6008/22828/31393 6042/1039/31394 6043/5987/31395\nf 6043/5987/31396 6009/22829/31397 6008/22830/31398\nf 6044/856/31399 6042/1039/31400 6040/215/31401\nf 6040/215/31402 6041/2806/31403 6044/856/31404\nf 6043/5987/31405 6042/1039/31406 6044/856/31407\nf 6044/856/31408 6045/2700/31409 6043/5987/31410\nf 11535/5882/31411 6036/1869/31412 11354/22831/31413\nf 6038/3110/31414 6036/1869/31415 11535/5882/31416\nf 11354/22832/31417 10324/22833/31418 11535/5882/31419\nf 11535/5882/31420 13126/2723/31421 6038/3110/31422\nf 12777/22834/31423 6009/22835/31424 6043/5987/31425\nf 6043/5987/31426 6047/4816/31427 12777/22836/31428\nf 6047/4816/31429 6043/5987/31430 6045/2700/31431\nf 6045/2700/31432 6048/3502/31433 6047/4816/31434\nf 6047/4816/31435 6048/3502/31436 6049/4437/31437\nf 6049/4437/31438 6050/1309/31439 6047/4816/31440\nf 12777/6042/31441 6047/4816/31442 6050/1309/31443\nf 6050/1309/31444 6055/1638/31445 12777/6042/31446\nf 6050/1309/31447 6049/4437/31448 6052/6121/31449\nf 6052/6121/31450 5846/3956/31451 6050/1309/31452\nf 6055/1638/31453 6050/1309/31454 5846/3956/31455\nf 5846/3956/31456 6056/4074/31457 6055/1638/31458\nf 6053/2843/31459 6054/2101/31460 6051/6185/31461\nf 6051/6185/31462 9745/1203/31463 6053/2843/31464\nf 5836/2139/31465 6053/2843/31466 9745/1203/31467\nf 9745/1203/31468 6056/558/31469 5836/2139/31470\nf 6053/2843/31471 5836/2139/31472 5837/5312/31473\nf 5837/5312/31474 6012/3578/31475 6053/2843/31476\nf 6054/2101/31477 6053/2843/31478 6012/3578/31479\nf 6012/3578/31480 6057/255/31481 6054/2101/31482\nf 5818/1933/31483 6058/1141/31484 5968/4441/31485\nf 10435/1299/31486 6114/600/31487 12851/2766/31488\nf 12851/2766/31489 6107/6499/31490 10435/1299/31491\nf 12870/2248/31492 6107/6499/31493 12851/2766/31494\nf 12851/2766/31495 6115/5823/31496 12870/2248/31497\nf 11652/22837/31498 6101/22838/31499 12871/6201/31500\nf 12871/6201/31501 11651/5420/31502 11652/22839/31503\nf 12845/6410/31504 11651/5420/31505 12871/6201/31506\nf 12871/6201/31507 10483/6156/31508 12845/6410/31509\nf 12845/6410/31510 10483/6156/31511 10344/3785/31512\nf 10344/3785/31513 10278/4581/31514 12845/6410/31515\nf 12869/22840/31516 12873/22841/31517 12832/5210/31518\nf 12832/5210/31519 6110/5081/31520 12869/22842/31521\nf 12828/3007/31522 6110/5081/31523 12832/5210/31524\nf 12832/5210/31525 12833/6355/31526 12828/3007/31527\nf 10276/3433/31528 10345/5508/31529 12993/2131/31530\nf 12993/2131/31531 12991/6527/31532 10276/3433/31533\nf 10343/819/31534 10345/5508/31535 10276/3433/31536\nf 10276/3433/31537 10277/144/31538 10343/819/31539\nf 10369/3705/31540 6070/5900/31541 6069/870/31542\nf 6069/870/31543 10371/2244/31544 10369/3705/31545\nf 13074/237/31546 10371/2244/31547 6069/870/31548\nf 6069/870/31549 10300/2406/31550 13074/237/31551\nf 6116/22843/31552 6072/22844/31553 6073/634/31554\nf 6073/634/31555 10426/4712/31556 6116/22845/31557\nf 10427/2452/31558 10426/4712/31559 6073/634/31560\nf 6073/634/31561 6076/587/31562 10427/2452/31563\nf 10301/22846/31564 10370/22847/31565 6113/3114/31566\nf 6113/3114/31567 6077/3861/31568 10301/22848/31569\nf 6078/3723/31570 6077/3861/31571 6113/3114/31572\nf 6113/3114/31573 6112/5878/31574 6078/3723/31575\nf 6078/3723/31576 6112/5878/31577 12929/4314/31578\nf 12929/4314/31579 12957/5255/31580 6078/3723/31581\nf 10254/628/31582 6077/3861/31583 6078/3723/31584\nf 6078/3723/31585 10273/102/31586 10254/628/31587\nf 10273/102/31588 6078/3723/31589 12957/5255/31590\nf 6082/678/31591 10301/22849/31592 6077/3861/31593\nf 6077/3861/31594 10254/628/31595 6082/678/31596\nf 6070/5900/31597 10085/22850/31598 10087/2162/31599\nf 10087/2162/31600 6069/870/31601 6070/5900/31602\nf 10300/2406/31603 6069/870/31604 10087/2162/31605\nf 10087/2162/31606 10069/5741/31607 10300/2406/31608\nf 12957/5255/31609 6098/2241/31610 10273/102/31611\nf 10299/22851/31612 10068/22852/31613 6085/6180/31614\nf 6085/6180/31615 6073/634/31616 10299/22853/31617\nf 6076/587/31618 6073/634/31619 6085/6180/31620\nf 6085/6180/31621 6086/4136/31622 6076/587/31623\nf 6148/5344/31624 6080/22854/31625 6081/22855/31626\nf 6081/22856/31627 6149/3112/31628 6148/5344/31629\nf 6149/3112/31630 6081/22857/31631 10174/22858/31632\nf 6087/5695/31633 10086/22859/31634 6080/22860/31635\nf 6080/22861/31636 6148/5344/31637 6087/5695/31638\nf 10086/22862/31639 6087/5695/31640 6088/4647/31641\nf 6088/4647/31642 6083/22863/31643 10086/22864/31644\nf 6084/22865/31645 6083/22866/31646 6088/4647/31647\nf 6088/4647/31648 10880/5387/31649 6084/22867/31650\nf 10174/22868/31651 6090/4158/31652 6149/3112/31653\nf 6084/22869/31654 10880/5387/31655 10881/1267/31656\nf 10881/1267/31657 6085/6180/31658 6084/22870/31659\nf 6086/4136/31660 6085/6180/31661 10881/1267/31662\nf 10881/1267/31663 6145/44/31664 6086/4136/31665\nf 12947/2726/31666 6094/2665/31667 6093/1394/31668\nf 6093/1394/31669 12948/1379/31670 12947/2726/31671\nf 12928/4322/31672 12948/1379/31673 6093/1394/31674\nf 6093/1394/31675 6079/1701/31676 12928/4322/31677\nf 10171/2580/31678 6093/1394/31679 6094/2665/31680\nf 6079/1701/31681 6093/1394/31682 10171/2580/31683\nf 6094/2665/31684 10251/3005/31685 10171/2580/31686\nf 10171/2580/31687 10172/3267/31688 6079/1701/31689\nf 6099/4739/31690 6096/22871/31691 6097/22872/31692\nf 10173/22873/31693 6096/22874/31694 6099/4739/31695\nf 6097/22875/31696 6150/5822/31697 6099/4739/31698\nf 6099/4739/31699 6090/1056/31700 10173/22876/31701\nf 6061/875/31702 10434/1534/31703 10352/6151/31704\nf 10352/6151/31705 6102/4867/31706 6061/875/31707\nf 6103/3642/31708 6061/875/31709 6102/4867/31710\nf 6102/4867/31711 6030/2638/31712 6103/3642/31713\nf 6104/2772/31714 6103/3642/31715 6030/2638/31716\nf 6030/2638/31717 6031/1432/31718 6104/2772/31719\nf 6105/5704/31720 6104/2772/31721 6031/1432/31722\nf 6031/1432/31723 6141/5685/31724 6105/5704/31725\nf 6066/1922/31726 6105/5704/31727 6141/5685/31728\nf 6141/5685/31729 6139/1257/31730 6066/1922/31731\nf 6106/2721/31732 10352/6151/31733 10434/1534/31734\nf 10434/1534/31735 10436/6041/31736 6106/2721/31737\nf 6108/4814/31738 6106/2721/31739 10436/6041/31740\nf 10436/6041/31741 6060/3140/31742 6108/4814/31743\nf 6109/3257/31744 6108/4814/31745 6060/3140/31746\nf 6060/3140/31747 12827/3919/31748 6109/3257/31749\nf 6046/145/31750 6109/3257/31751 12827/3919/31752\nf 12827/3919/31753 6064/4514/31754 6046/145/31755\nf 6111/4225/31756 6062/5367/31757 11680/4065/31758\nf 11680/4065/31759 11681/5354/31760 6111/4225/31761\nf 11653/4541/31762 6111/4225/31763 11681/5354/31764\nf 11681/5354/31765 6068/4897/31766 11653/4541/31767\nf 6059/4496/31768 11653/4541/31769 6068/4897/31770\nf 6068/4897/31771 6071/6013/31772 6059/4496/31773\nf 12872/6050/31774 6059/4496/31775 6071/6013/31776\nf 6071/6013/31777 13073/4364/31778 12872/6050/31779\nf 6095/6373/31780 11680/4065/31781 6062/5367/31782\nf 6062/5367/31783 6067/1549/31784 6095/6373/31785\nf 6117/1841/31786 6095/6373/31787 6067/1549/31788\nf 6067/1549/31789 6065/4859/31790 6117/1841/31791\nf 6092/6275/31792 6117/1841/31793 6065/4859/31794\nf 6065/4859/31795 6118/800/31796 6092/6275/31797\nf 12872/6050/31798 13073/4364/31799 6074/106/31800\nf 6074/106/31801 6063/668/31802 12872/6050/31803\nf 6119/843/31804 6063/668/31805 6074/106/31806\nf 6074/106/31807 6075/3820/31808 6119/843/31809\nf 9380/2531/31810 12526/22877/31811 6032/22878/31812\nf 6032/22879/31813 5869/2492/31814 9380/2531/31815\nf 9378/6292/31816 9380/2531/31817 5869/2492/31818\nf 5869/2492/31819 5867/5630/31820 9378/6292/31821\nf 9650/581/31822 9378/6292/31823 5867/5630/31824\nf 5867/5630/31825 5866/3893/31826 9650/581/31827\nf 6140/6107/31828 9650/581/31829 5866/3893/31830\nf 5866/3893/31831 6120/6058/31832 6140/6107/31833\nf 8892/1812/31834 8890/22880/31835 6121/22881/31836\nf 8974/2645/31837 8972/3269/31838 10623/2421/31839\nf 10623/2421/31840 5814/316/31841 8974/2645/31842\nf 12297/3142/31843 8974/2645/31844 5814/316/31845\nf 5814/316/31846 5816/5747/31847 12297/3142/31848\nf 6124/3294/31849 6122/22882/31850 6170/22883/31851\nf 6170/22884/31852 12288/6276/31853 6124/3294/31854\nf 5813/3964/31855 6124/3294/31856 12288/6276/31857\nf 12288/6276/31858 6173/112/31859 5813/3964/31860\nf 13094/6188/31861 5813/3964/31862 6173/112/31863\nf 6173/112/31864 10742/3752/31865 13094/6188/31866\nf 5812/5682/31867 13094/6188/31868 10742/3752/31869\nf 10742/3752/31870 10743/74/31871 5812/5682/31872\nf 12298/1448/31873 12297/3142/31874 5816/5747/31875\nf 5816/5747/31876 10565/1790/31877 12298/1448/31878\nf 10712/4086/31879 12299/5720/31880 5820/1719/31881\nf 5820/1719/31882 5819/1344/31883 10712/4086/31884\nf 10713/2460/31885 10712/4086/31886 5819/1344/31887\nf 5819/1344/31888 6131/2969/31889 10713/2460/31890\nf 10793/5147/31891 10795/2522/31892 12311/3640/31893\nf 12311/3640/31894 10714/1254/31895 10793/5147/31896\nf 10743/74/31897 12311/3640/31898 10795/2522/31899\nf 10795/2522/31900 5812/5682/31901 10743/74/31902\nf 5913/2902/31903 5891/5670/31904 5889/3873/31905\nf 5889/3873/31906 5895/1444/31907 5913/2902/31908\nf 5994/1368/31909 12592/4459/31910 5954/462/31911\nf 5954/462/31912 5906/1349/31913 5994/1368/31914\nf 5906/1349/31915 5954/462/31916 11375/58/31917\nf 11375/58/31918 5892/3408/31919 5906/1349/31920\nf 12591/2200/31921 6137/2358/31922 12349/3000/31923\nf 12349/3000/31924 5998/2529/31925 12591/2200/31926\nf 12591/2200/31927 5999/2851/31928 6137/2358/31929\nf 6138/2212/31930 9651/4950/31931 9669/5749/31932\nf 9669/5749/31933 9670/3555/31934 6138/2212/31935\nf 9379/5794/31936 6138/2212/31937 9670/3555/31938\nf 9670/3555/31939 10832/3109/31940 9379/5794/31941\nf 9379/5794/31942 10832/3109/31943 12525/1355/31944\nf 6142/22885/31945 6144/6433/31946 6143/22886/31947\nf 12509/3028/31948 6091/1421/31949 6146/3711/31950\nf 6146/3711/31951 6147/3968/31952 12509/3028/31953\nf 6088/1012/31954 6146/3711/31955 6091/1421/31956\nf 6091/1421/31957 6089/57/31958 6088/1012/31959\nf 6146/3711/31960 6088/1012/31961 6087/5674/31962\nf 6087/5674/31963 6148/475/31964 6146/3711/31965\nf 6147/3968/31966 6146/3711/31967 6148/475/31968\nf 6148/475/31969 6149/5246/31970 6147/3968/31971\nf 6147/3968/31972 6149/5246/31973 6090/5509/31974\nf 6090/5509/31975 6099/2033/31976 6147/3968/31977\nf 12509/3028/31978 6147/3968/31979 6099/2033/31980\nf 6099/2033/31981 6150/1487/31982 12509/3028/31983\nf 6151/4651/31984 6152/3765/31985 6165/4737/31986\nf 6165/4737/31987 6153/5155/31988 6151/4651/31989\nf 6154/1415/31990 6151/4651/31991 6153/5155/31992\nf 6153/5155/31993 5982/6326/31994 6154/1415/31995\nf 6155/2298/31996 10017/22887/31997 9975/22888/31998\nf 10018/22889/31999 10017/22890/32000 6155/2298/32001\nf 9975/22891/32002 6156/5128/32003 6155/2298/32004\nf 6156/5128/32005 9975/22892/32006 9452/2549/32007\nf 6157/22893/32008 6154/1415/32009 5982/6326/32010\nf 9452/2549/32011 6158/2155/32012 6156/5128/32013\nf 5982/6326/32014 5973/1855/32015 6157/22894/32016\nf 6157/22895/32017 5973/1855/32018 6159/523/32019\nf 6159/523/32020 9453/5129/32021 6157/22896/32022\nf 6155/2298/32023 6161/2824/32024 10018/22897/32025\nf 10798/4847/32026 9453/5129/32027 6159/523/32028\nf 6162/1072/32029 6160/22898/32030 6575/22899/32031\nf 6162/1072/32032 6158/2155/32033 9452/2549/32034\nf 9452/2549/32035 6160/22900/32036 6162/1072/32037\nf 6575/22901/32038 6163/4076/32039 6162/1072/32040\nf 6159/523/32041 6580/525/32042 10798/4847/32043\nf 6153/6082/32044 12874/6143/32045 6164/2208/32046\nf 6164/2208/32047 5983/5517/32048 6153/6082/32049\nf 5983/5517/32050 6164/2208/32051 5989/6325/32052\nf 5947/2165/32053 10365/3211/32054 10366/5130/32055\nf 10366/5130/32056 6256/5050/32057 5947/2165/32058\nf 6166/22902/32059 5825/22903/32060 5826/5452/32061\nf 5826/5452/32062 6254/443/32063 6166/22904/32064\nf 6254/443/32065 5826/5452/32066 5828/220/32067\nf 5828/220/32068 6255/5879/32069 6254/443/32070\nf 6167/6210/32071 6255/5879/32072 5828/220/32073\nf 5975/1282/32074 6168/5940/32075 6579/6419/32076\nf 6579/6419/32077 5972/4067/32078 5975/1282/32079\nf 6159/6393/32080 5972/4067/32081 6579/6419/32082\nf 6579/6419/32083 6580/1375/32084 6159/6393/32085\nf 6168/5940/32086 5975/1282/32087 5977/2029/32088\nf 5977/2029/32089 6169/5359/32090 6168/5940/32091\nf 6169/5359/32092 5977/2029/32093 5923/4304/32094\nf 5923/4304/32095 6321/3151/32096 6169/5359/32097\nf 8973/5856/32098 6171/3238/32099 6123/4927/32100\nf 8973/5856/32101 6123/4927/32102 6129/452/32103\nf 6123/4927/32104 6172/5459/32105 6129/452/32106\nf 8973/5856/32107 6129/452/32108 12287/3135/32109\nf 6129/452/32110 6132/5567/32111 12287/3135/32112\nf 6129/452/32113 6130/75/32114 6132/5567/32115\nf 6132/5567/32116 6128/5368/32117 12287/3135/32118\nf 6128/5368/32119 6127/2364/32120 12287/3135/32121\nf 8973/5856/32122 12287/3135/32123 6125/2127/32124\nf 6174/5042/32125 12489/709/32126 11585/6075/32127\nf 6174/5042/32128 11585/6075/32129 11601/189/32130\nf 6174/5042/32131 11601/189/32132 11700/4187/32133\nf 6174/5042/32134 11700/4187/32135 12231/1584/32136\nf 11700/4187/32137 11626/6519/32138 12231/1584/32139\nf 11700/4187/32140 11624/4365/32141 11626/6519/32142\nf 6174/5042/32143 12231/1584/32144 6176/5751/32145\nf 8861/4491/32146 6178/1791/32147 11293/5341/32148\nf 5996/22905/32149 5997/2489/32150 6177/22906/32151\nf 6178/1791/32152 8861/4491/32153 12340/2827/32154\nf 12340/2827/32155 12355/359/32156 6178/1791/32157\nf 8862/1057/32158 6177/22907/32159 5997/2489/32160\nf 5997/2489/32161 8891/2988/32162 8862/1057/32163\nf 8861/4491/32164 6180/22908/32165 6193/803/32166\nf 6193/803/32167 12340/2827/32168 8861/4491/32169\nf 8867/5800/32170 8862/1057/32171 8891/2988/32172\nf 8891/2988/32173 6183/5735/32174 8867/5800/32175\nf 6184/4743/32176 8867/5800/32177 6183/5735/32178\nf 6183/5735/32179 12085/937/32180 6184/4743/32181\nf 6182/22909/32182 8731/22910/32183 8669/6081/32184\nf 8669/6081/32185 6195/3829/32186 6182/22911/32187\nf 6180/22912/32188 6182/22913/32189 6195/3829/32190\nf 6195/3829/32191 6193/803/32192 6180/22914/32193\nf 8679/5578/32194 6184/4743/32195 12085/937/32196\nf 12085/937/32197 8788/96/32198 8679/5578/32199\nf 8731/22915/32200 6186/22916/32201 8670/5230/32202\nf 8670/5230/32203 8669/6081/32204 8731/22917/32205\nf 8680/5983/32206 8678/22918/32207 8787/22919/32208\nf 8787/22920/32209 6001/2798/32210 8680/5983/32211\nf 6002/3277/32212 8680/5983/32213 6001/2798/32214\nf 12098/22921/32215 6190/2977/32216 13338/22922/32217\nf 6189/22923/32218 13338/22924/32219 6176/4272/32220\nf 6176/4272/32221 6198/3439/32222 6189/22925/32223\nf 6186/22926/32224 6189/22927/32225 6198/3439/32226\nf 6198/3439/32227 8670/5230/32228 6186/22928/32229\nf 6176/5751/32230 12355/6007/32231 6174/5042/32232\nf 12489/4093/32233 6174/1556/32234 12355/4895/32235\nf 6003/22929/32236 6179/3594/32237 6191/22930/32238\nf 11584/4479/32239 6191/22931/32240 6179/3594/32241\nf 6179/3594/32242 11586/762/32243 11584/4479/32244\nf 6194/32/32245 6192/22932/32246 11587/22933/32247\nf 11587/22934/32248 11706/1460/32249 6194/32/32250\nf 6196/5551/32251 6194/32/32252 11706/1460/32253\nf 11706/1460/32254 6185/2066/32255 6196/5551/32256\nf 6197/4323/32257 6196/5551/32258 6185/2066/32259\nf 6185/2066/32260 8671/6111/32261 6197/4323/32262\nf 11625/22935/32263 6188/22936/32264 12080/4395/32265\nf 12080/4395/32266 6199/2895/32267 11625/22937/32268\nf 6175/5245/32269 6199/2895/32270 12080/4395/32271\nf 6198/22938/32272 6176/648/32273 12231/22939/32274\nf 6200/1234/32275 5828/220/32276 6201/2952/32277\nf 5828/220/32278 6200/1234/32279 6167/6210/32280\nf 6202/2388/32281 5818/5784/32282 5968/5992/32283\nf 6202/2388/32284 5968/5992/32285 6203/3284/32286\nf 6203/3284/32287 11853/3100/32288 6202/2388/32289\nf 5811/4571/32290 11853/3100/32291 6203/3284/32292\nf 6203/3284/32293 12099/501/32294 5811/4571/32295\nf 13030/22940/32296 5967/22941/32297 12137/22942/32298\nf 12137/22943/32299 6206/871/32300 13030/22944/32301\nf 6207/2802/32302 6206/871/32303 12137/22945/32304\nf 12137/22946/32305 5971/4090/32306 6207/2802/32307\nf 6208/5124/32308 6207/2802/32309 5971/4090/32310\nf 5971/4090/32311 5969/3700/32312 6208/5124/32313\nf 6208/5124/32314 5969/3700/32315 11802/22947/32316\nf 11802/22948/32317 6210/1779/32318 6208/5124/32319\nf 6210/1779/32320 11802/22949/32321 6211/712/32322\nf 6211/712/32323 5815/483/32324 6210/1779/32325\nf 13157/5143/32326 5815/483/32327 6211/712/32328\nf 6211/712/32329 5873/1131/32330 13157/5143/32331\nf 13157/5143/32332 5873/1131/32333 5853/1542/32334\nf 5853/1542/32335 5871/1780/32336 13157/5143/32337\nf 10904/22950/32338 10763/22951/32339 12839/22952/32340\nf 12839/22953/32341 12811/22954/32342 10904/22955/32343\nf 10904/22956/32344 12811/22957/32345 12433/22958/32346\nf 12433/22959/32347 10905/22960/32348 10904/22961/32349\nf 10905/22962/32350 12433/22963/32351 9797/22964/32352\nf 9797/22965/32353 9171/22966/32354 10905/22967/32355\nf 9171/22968/32356 9797/22969/32357 9796/22970/32358\nf 9796/22971/32359 9172/22972/32360 9171/22973/32361\nf 9172/22974/32362 9796/22975/32363 9250/22976/32364\nf 9250/22977/32365 9069/22978/32366 9172/22979/32367\nf 9069/22980/32368 9250/22981/32369 9097/22982/32370\nf 9097/22983/32371 9070/22984/32372 9069/22985/32373\nf 9070/22986/32374 9097/22987/32375 9098/22988/32376\nf 9098/22989/32377 6619/22990/32378 9070/22991/32379\nf 12839/22992/32380 10763/22993/32381 10762/22994/32382\nf 10762/22995/32383 12347/22996/32384 12839/22997/32385\nf 6462/22998/32386 12347/22999/32387 10762/23000/32388\nf 6462/23001/32389 12339/23002/32390 12347/23003/32391\nf 6462/23004/32392 10762/23005/32393 10789/23006/32394\nf 9876/23007/32395 12339/23008/32396 6462/23009/32397\nf 6619/23010/32398 9098/23011/32399 9876/23012/32400\nf 9876/23013/32401 6462/23014/32402 9195/23015/32403\nf 9876/23016/32404 9193/23017/32405 6619/23018/32406\nf 9876/23019/32407 9195/23020/32408 9193/23021/32409\nf 6340/23022/32410 8710/23023/32411 6223/23024/32412\nf 6223/23025/32413 6225/23026/32414 6340/23027/32415\nf 6225/23028/32416 6223/23029/32417 6226/23030/32418\nf 6226/23031/32419 8721/23032/32420 6225/23033/32421\nf 8711/23034/32422 8710/23035/32423 6340/23036/32424\nf 6340/23037/32425 6341/23038/32426 8711/23039/32427\nf 6224/23040/32428 6228/23041/32429 6229/23042/32430\nf 6229/23043/32431 6230/23044/32432 6224/23045/32433\nf 6230/23046/32434 6229/23047/32435 6607/23048/32436\nf 6607/23049/32437 6231/23050/32438 6230/23051/32439\nf 6226/23052/32440 11975/23053/32441 6232/23054/32442\nf 6224/23055/32443 6230/23056/32444 6232/23057/32445\nf 6232/23058/32446 11975/23059/32447 6224/23060/32448\nf 6232/23061/32449 6233/23062/32450 6226/23063/32451\nf 6234/23064/32452 6233/23065/32453 6232/23066/32454\nf 6233/23067/32455 6234/23068/32456 6235/23069/32457\nf 6235/23070/32458 6236/23071/32459 6233/23072/32460\nf 6226/23073/32461 6233/23074/32462 6236/23075/32463\nf 6237/23076/32464 6236/23077/32465 6235/23078/32466\nf 6235/23079/32467 6238/23080/32468 6237/23081/32469\nf 6239/23082/32470 6237/23083/32471 6238/23084/32472\nf 6237/23085/32473 6239/23086/32474 9710/23087/32475\nf 9710/23088/32476 6241/23089/32477 6237/23090/32478\nf 6236/23091/32479 6237/23092/32480 6241/23093/32481\nf 6238/23094/32482 6440/23095/32483 6239/23096/32484\nf 6241/23097/32485 6242/23098/32486 6236/23099/32487\nf 11987/23100/32488 6242/23101/32489 6241/23102/32490\nf 6241/23103/32491 6329/23104/32492 11987/23105/32493\nf 6329/23106/32494 6241/23107/32495 9710/23108/32496\nf 9710/23109/32497 9711/23110/32498 6329/23111/32499\nf 9712/23112/32500 6240/23113/32501 12803/23114/32502\nf 6464/23115/32503 6325/23116/32504 6244/23117/32505\nf 6325/23118/32506 6464/23119/32507 12769/23120/32508\nf 12769/23121/32509 6322/23122/32510 6325/23123/32511\nf 6236/23124/32512 6242/23125/32513 6226/23126/32514\nf 6322/23127/32515 12769/23128/32516 6457/23129/32517\nf 6457/23130/32518 10109/23131/32519 6322/23132/32520\nf 10109/23133/32521 6457/23134/32522 6451/23135/32523\nf 6451/23136/32524 9980/23137/32525 10109/23138/32526\nf 9980/23139/32527 6451/23140/32528 6367/23141/32529\nf 8721/23142/32530 6226/23143/32531 6242/23144/32532\nf 6242/23145/32533 11987/23146/32534 8721/23147/32535\nf 6246/23148/32536 6247/23149/32537 6440/23150/32538\nf 6440/23151/32539 6238/23152/32540 6246/23153/32541\nf 6247/23154/32542 6246/23155/32543 6248/23156/32544\nf 6248/23157/32545 6439/23158/32546 6247/23159/32547\nf 6246/23160/32548 6238/23161/32549 6249/23162/32550\nf 6246/23163/32551 9836/23164/32552 6248/23165/32553\nf 6238/23166/32554 6235/23167/32555 6249/23168/32556\nf 6250/23169/32557 6249/23170/32558 6235/23171/32559\nf 6235/23172/32560 6234/23173/32561 6250/23174/32562\nf 6250/23175/32563 6234/23176/32564 6251/23177/32565\nf 6232/23178/32566 6251/23179/32567 6234/23180/32568\nf 6251/23181/32569 6232/23182/32570 6230/23183/32571\nf 6230/23184/32572 6231/23185/32573 6251/23186/32574\nf 6251/23187/32575 6252/23188/32576 6250/23189/32577\nf 6253/23190/32578 6252/23191/32579 6251/23192/32580\nf 6251/23193/32581 6231/23194/32582 6253/23195/32583\nf 6253/23196/32584 6231/23197/32585 6607/23198/32586\nf 6607/23199/32587 6229/23200/32588 6254/443/32589\nf 6254/443/32590 6255/5879/32591 6607/23201/32592\nf 6166/23202/32593 6254/443/32594 6229/23203/32595\nf 6229/23204/32596 6228/23205/32597 6166/23206/32598\nf 10366/5130/32599 8711/23207/32600 6341/23208/32601\nf 6341/23209/32602 6256/5050/32603 10366/5130/32604\nf 6255/5879/32605 6167/6210/32606 6257/23210/32607\nf 6258/23211/32608 6357/23212/32609 6621/23213/32610\nf 6258/23214/32611 6621/23215/32612 6259/23216/32613\nf 6621/23217/32614 6260/23218/32615 6259/23219/32616\nf 6258/23220/32617 6259/23221/32618 6261/23222/32619\nf 6262/23223/32620 6261/23224/32621 6259/23225/32622\nf 6261/23226/32623 6262/23227/32624 6263/23228/32625\nf 6263/23229/32626 6264/23230/32627 6261/23231/32628\nf 6265/23232/32629 6264/23233/32630 6263/23234/32631\nf 6263/23235/32632 6266/23236/32633 6265/23237/32634\nf 6267/23238/32635 6261/23239/32636 6264/23240/32637\nf 6261/23241/32638 6267/23242/32639 6258/23243/32640\nf 6264/23244/32641 6268/23245/32642 6267/23246/32643\nf 6269/23247/32644 6268/23248/32645 6264/23249/32646\nf 6264/23250/32647 6265/23251/32648 6269/23252/32649\nf 6535/23253/32650 6263/23254/32651 6262/23255/32652\nf 6266/23256/32653 6263/23257/32654 6535/23258/32655\nf 6262/23259/32656 12201/23260/32657 6535/23261/32658\nf 6535/23262/32659 8906/23263/32660 6266/23264/32661\nf 6259/23265/32662 6271/23266/32663 6262/23267/32664\nf 12201/23268/32665 6262/23269/32666 6271/23270/32667\nf 6271/23271/32668 6533/23272/32669 12201/23273/32670\nf 12353/23274/32671 6533/23275/32672 6271/23276/32673\nf 6271/23277/32674 9194/23278/32675 12353/23279/32676\nf 9194/23280/32677 6271/23281/32678 6259/23282/32679\nf 9194/23283/32680 6259/23284/32681 6260/23285/32682\nf 9192/23286/32683 9194/23287/32684 6260/23288/32685\nf 6260/23289/32686 6621/23290/32687 9192/23291/32688\nf 6620/23292/32689 12335/23293/32690 10407/23294/32691\nf 10407/23295/32692 10408/23296/32693 6620/23297/32694\nf 6620/23298/32695 10408/23299/32696 11096/23300/32697\nf 11096/23301/32698 6618/23302/32699 6620/23303/32700\nf 6618/23304/32701 11096/23305/32702 11097/23306/32703\nf 11097/23307/32704 10192/23308/32705 6618/23309/32706\nf 12904/23310/32707 10990/23311/32708 11023/23312/32709\nf 11023/23313/32710 12965/23314/32711 12904/23315/32712\nf 12904/23316/32713 12965/23317/32714 6362/23318/32715\nf 6362/23319/32716 10023/23320/32717 12904/23321/32718\nf 10023/23322/32719 6362/23323/32720 10367/23324/32721\nf 10367/23325/32722 10024/23326/32723 10023/23327/32724\nf 10024/23328/32725 10367/23329/32726 13053/23330/32727\nf 13053/23331/32728 10044/23332/32729 10024/23333/32730\nf 9982/23334/32731 12974/23335/32732 10988/23336/32733\nf 10988/23337/32734 12865/23338/32735 9982/23339/32736\nf 10989/23340/32737 10988/23341/32738 12974/23342/32739\nf 12974/23343/32740 11024/23344/32741 10989/23345/32742\nf 10413/23346/32743 6359/23347/32744 6355/23348/32745\nf 6355/23349/32746 11122/23350/32747 10413/23351/32748\nf 10413/23352/32749 11122/23353/32750 11123/23354/32751\nf 11123/23355/32752 10450/23356/32753 10413/23357/32754\nf 13053/23358/32755 10450/23359/32756 11123/23360/32757\nf 11123/23361/32758 10044/23362/32759 13053/23363/32760\nf 6285/23364/32761 6327/23365/32762 10064/23366/32763\nf 10064/23367/32764 6349/23368/32765 6285/23369/32766\nf 6327/23370/32767 6285/23371/32768 6286/23372/32769\nf 6286/23373/32770 6328/23374/32771 6327/23375/32772\nf 6287/23376/32773 6286/23377/32774 6285/23378/32775\nf 6285/23379/32776 6288/23380/32777 6287/23381/32778\nf 6285/23382/32779 6349/23383/32780 12896/23384/32781\nf 12896/23385/32782 6288/23386/32783 6285/23387/32784\nf 12997/23388/32785 6328/23389/32786 6286/23390/32787\nf 6286/23391/32788 6291/23392/32789 12997/23393/32790\nf 6331/23394/32791 12997/23395/32792 6291/23396/32793\nf 6291/23397/32794 6292/23398/32795 6331/23399/32796\nf 6332/23400/32797 6331/23401/32798 6292/23402/32799\nf 6292/23403/32800 6293/23404/32801 6332/23405/32802\nf 6332/23406/32803 6293/23407/32804 6294/23408/32805\nf 6294/23409/32806 6295/23410/32807 6332/23411/32808\nf 6295/23412/32809 6294/23413/32810 6296/23414/32811\nf 6296/23415/32812 6297/23416/32813 6295/23417/32814\nf 6298/23418/32815 6296/23419/32816 6294/23420/32817\nf 6294/23421/32818 6299/23422/32819 6298/23423/32820\nf 6299/23424/32821 6294/23425/32822 6293/23426/32823\nf 6293/23427/32824 6300/23428/32825 6299/23429/32826\nf 6287/23430/32827 6288/23431/32828 6301/23432/32829\nf 6301/23433/32830 6288/23434/32831 12896/23435/32832\nf 6292/23436/32833 6291/23437/32834 6302/23438/32835\nf 6302/23439/32836 6303/23440/32837 6292/23441/32838\nf 6293/23442/32839 6292/23443/32840 6303/23444/32841\nf 6303/23445/32842 6300/23446/32843 6293/23447/32844\nf 6303/23448/32845 6302/23449/32846 6304/23450/32847\nf 6304/23451/32848 6305/23452/32849 6303/23453/32850\nf 6300/23454/32851 6303/23455/32852 6305/23456/32853\nf 6305/23457/32854 6304/23458/32855 6306/23459/32856\nf 6306/23460/32857 6307/23461/32858 6305/23462/32859\nf 6305/23463/32860 6308/23464/32861 6300/23465/32862\nf 6308/23466/32863 6305/23467/32864 6307/23468/32865\nf 6307/23469/32866 6388/23470/32867 6308/23471/32868\nf 6306/23472/32869 6304/23473/32870 6309/23474/32871\nf 6309/23475/32872 6304/23476/32873 6302/23477/32874\nf 6309/23478/32875 6310/23479/32876 6306/23480/32877\nf 6310/23481/32878 6309/23482/32879 6301/23483/32880\nf 6301/23484/32881 6311/23485/32882 6310/23486/32883\nf 6312/23487/32884 6308/23488/32885 6388/23489/32886\nf 6298/23490/32887 6299/23491/32888 6312/23492/32889\nf 6300/23493/32890 6308/23494/32891 6312/23495/32892\nf 6312/23496/32893 6299/23497/32894 6300/23498/32895\nf 6388/23499/32896 6387/23500/32897 6312/23501/32898\nf 6312/23502/32899 6387/23503/32900 6390/23504/32901\nf 6390/23505/32902 6313/23506/32903 6312/23507/32904\nf 6302/23508/32905 6287/23509/32906 6309/23510/32907\nf 6301/23511/32908 6309/23512/32909 6287/23513/32910\nf 6314/23514/32911 6313/23515/32912 6390/23516/32913\nf 6313/23517/32914 6314/23518/32915 6315/23519/32916\nf 6316/23520/32917 6315/23521/32918 6314/23522/32919\nf 6314/23523/32920 6317/23524/32921 6316/23525/32922\nf 6317/23526/32923 6314/23527/32924 6379/23528/32925\nf 6390/23529/32926 6379/23530/32927 6314/23531/32928\nf 6379/23532/32929 6378/23533/32930 6317/23534/32931\nf 6315/23535/32932 6316/23536/32933 6318/23537/32934\nf 6318/23538/32935 6319/23539/32936 6315/23540/32937\nf 6319/23541/32938 6318/23542/32939 6338/23543/32940\nf 6338/23544/32941 6337/23545/32942 6319/23546/32943\nf 6315/23547/32944 6298/23548/32945 6313/23549/32946\nf 6312/23550/32947 6313/23551/32948 6298/23552/32949\nf 6319/23553/32950 6337/23554/32951 6297/23555/32952\nf 6297/23556/32953 6296/23557/32954 6319/23558/32955\nf 6315/23559/32956 6319/23560/32957 6296/23561/32958\nf 6296/23562/32959 6298/23563/32960 6315/23564/32961\nf 6316/23565/32962 6317/23566/32963 6320/1891/32964\nf 6320/1891/32965 6317/23567/32966 6378/23568/32967\nf 6320/1891/32968 5927/1374/32969 6316/23569/32970\nf 6318/23570/32971 6316/23571/32972 5927/1374/32973\nf 6378/23572/32974 6321/3151/32975 6320/1891/32976\nf 6338/23573/32977 6318/23574/32978 5928/1523/32979\nf 5927/1374/32980 5928/1523/32981 6318/23575/32982\nf 5928/1523/32983 5929/4919/32984 6338/23576/32985\nf 10062/23577/32986 6323/23578/32987 6322/23579/32988\nf 6322/23580/32989 10109/23581/32990 10062/23582/32991\nf 6322/23583/32992 6323/23584/32993 6324/23585/32994\nf 6324/23586/32995 6325/23587/32996 6322/23588/32997\nf 6325/23589/32998 6324/23590/32999 6326/23591/33000\nf 6326/23592/33001 9711/23593/33002 6325/23594/33003\nf 6324/23595/33004 6323/23596/33005 10647/23597/33006\nf 10647/23598/33007 6323/23599/33008 10062/23600/33009\nf 10647/23601/33010 10648/23602/33011 6324/23603/33012\nf 6326/23604/33013 6324/23605/33014 10648/23606/33015\nf 10062/23607/33016 10063/23608/33017 10647/23609/33018\nf 6329/23610/33019 9711/23611/33020 6326/23612/33021\nf 6326/23613/33022 6330/23614/33023 6329/23615/33024\nf 6330/23616/33025 6326/23617/33026 6290/23618/33027\nf 10648/23619/33028 6290/23620/33029 6326/23621/33030\nf 6290/23622/33031 6331/23623/33032 6330/23624/33033\nf 6330/23625/33034 6331/23626/33035 6332/23627/33036\nf 6332/23628/33037 6333/23629/33038 6330/23630/33039\nf 6329/23631/33040 6330/23632/33041 6333/23633/33042\nf 6333/23634/33043 6243/23635/33044 6329/23636/33045\nf 6243/23637/33046 6333/23638/33047 6334/23639/33048\nf 6334/23640/33049 6333/23641/33050 6332/23642/33051\nf 6334/23643/33052 6227/23644/33053 6243/23645/33054\nf 6227/23646/33055 6334/23647/33056 6335/23648/33057\nf 6335/23649/33058 6225/23650/33059 6227/23651/33060\nf 6297/23652/33061 6335/23653/33062 6334/23654/33063\nf 6336/23655/33064 6335/23656/33065 6297/23657/33066\nf 6297/23658/33067 6337/23659/33068 6336/23660/33069\nf 6336/23661/33070 6337/23662/33071 6338/23663/33072\nf 6338/23664/33073 6339/23665/33074 6336/23666/33075\nf 6340/23667/33076 6336/23668/33077 6339/23669/33078\nf 6340/23670/33079 6225/23671/33080 6335/23672/33081\nf 6335/23673/33082 6336/23674/33083 6340/23675/33084\nf 6339/23676/33085 6341/23677/33086 6340/23678/33087\nf 6334/23679/33088 6295/23680/33089 6297/23681/33090\nf 6332/23682/33091 6295/23683/33092 6334/23684/33093\nf 6339/23685/33094 6338/23686/33095 5929/4919/33096\nf 5929/4919/33097 6342/2483/33098 6339/23687/33099\nf 6341/23688/33100 6339/23689/33101 6342/2483/33102\nf 6342/2483/33103 6256/5546/33104 6341/23690/33105\nf 12866/23691/33106 6344/23692/33107 9979/23693/33108\nf 9979/23694/33109 9981/23695/33110 12866/23696/33111\nf 10110/23697/33112 6346/23698/33113 6279/23699/33114\nf 6279/23700/33115 6347/23701/33116 10110/23702/33117\nf 6347/23703/33118 6279/23704/33119 6280/23705/33120\nf 6280/23706/33121 6348/23707/33122 6347/23708/33123\nf 6348/23709/33124 6280/23710/33125 6277/23711/33126\nf 6277/23712/33127 10111/23713/33128 6348/23714/33129\nf 10111/23715/33130 6277/23716/33131 6350/23717/33132\nf 6350/23718/33133 6289/23719/33134 10111/23720/33135\nf 6289/23721/33136 6350/23722/33137 6351/23723/33138\nf 6351/23724/33139 12609/23725/33140 6289/23726/33141\nf 12609/23727/33142 6351/23728/33143 6353/23729/33144\nf 6353/23730/33145 6548/23731/33146 12609/23732/33147\nf 6548/23733/33148 6353/23734/33149 6283/23735/33150\nf 6283/23736/33151 12914/23737/33152 6548/23738/33153\nf 6399/23739/33154 12914/23740/33155 6283/23741/33156\nf 6283/23742/33157 6282/23743/33158 6399/23744/33159\nf 6399/23745/33160 6282/23746/33161 12643/23747/33162\nf 12643/23748/33163 6549/23749/33164 6399/23750/33165\nf 6356/23751/33166 6358/23752/33167 10406/23753/33168\nf 10406/23754/33169 10414/23755/33170 6356/23756/33171\nf 6358/23757/33172 6356/23758/33173 6360/23759/33174\nf 6360/23760/33175 6275/23761/33176 6358/23762/33177\nf 6275/23763/33178 6360/23764/33179 6284/23765/33180\nf 6284/23766/33181 11098/23767/33182 6275/23768/33183\nf 11098/23769/33184 6284/23770/33185 6361/23771/33186\nf 6361/23772/33187 13019/23773/33188 11098/23774/33189\nf 13019/23775/33190 6361/23776/33191 10368/23777/33192\nf 10368/23778/33193 10182/23779/33194 13019/23780/33195\nf 10182/23781/33196 10368/23782/33197 6278/23783/33198\nf 6278/23784/33199 10183/23785/33200 10182/23786/33201\nf 10183/23787/33202 6278/23788/33203 6281/23789/33204\nf 6281/23790/33205 12982/23791/33206 10183/23792/33207\nf 12982/23793/33208 6281/23794/33209 6365/23795/33210\nf 6365/23796/33211 6366/23797/33212 12982/23798/33213\nf 6366/23799/33214 6365/23800/33215 6345/23801/33216\nf 6345/23802/33217 6343/23803/33218 6366/23804/33219\nf 6370/23805/33220 13164/23806/33221 6610/23807/33222\nf 6610/23808/33223 10921/23809/33224 6370/23810/33225\nf 6367/23811/33226 6610/23812/33227 13164/23813/33228\nf 13164/23814/33229 9980/23815/33230 6367/23816/33231\nf 6617/23817/33232 6276/23818/33233 6368/23819/33234\nf 6368/23820/33235 6616/23821/33236 6617/23822/33237\nf 6616/23823/33238 6368/23824/33239 6363/23825/33240\nf 6363/23826/33241 6615/23827/33242 6616/23828/33243\nf 6615/23829/33244 6363/23830/33245 6364/23831/33246\nf 6364/23832/33247 13136/23833/33248 6615/23834/33249\nf 13136/23835/33250 6364/23836/33251 12981/23837/33252\nf 12981/23838/33253 10922/23839/33254 13136/23840/33255\nf 6572/23841/33256 6372/23842/33257 6371/23843/33258\nf 6371/23844/33259 6373/23845/33260 6572/23846/33261\nf 6373/23847/33262 6371/23848/33263 6374/23849/33264\nf 6374/23850/33265 6375/23851/33266 6373/23852/33267\nf 6375/23853/33268 6374/23854/33269 6376/23855/33270\nf 6376/23856/33271 6377/23857/33272 6375/23858/33273\nf 6377/23859/33274 6376/23860/33275 6378/23861/33276\nf 6378/23862/33277 6379/23863/33278 6377/23864/33279\nf 6380/23865/33280 6373/23866/33281 6375/23867/33282\nf 6375/23868/33283 6381/23869/33284 6380/23870/33285\nf 6373/23871/33286 6380/23872/33287 6382/23873/33288\nf 6382/23874/33289 6572/23875/33290 6373/23876/33291\nf 6382/23877/33292 6380/23878/33293 6383/23879/33294\nf 6383/23880/33295 6380/23881/33296 6381/23882/33297\nf 6383/23883/33298 6566/23884/33299 6382/23885/33300\nf 6381/23886/33301 6384/23887/33302 6383/23888/33303\nf 6385/23889/33304 6384/23890/33305 6381/23891/33306\nf 6381/23892/33307 6386/23893/33308 6385/23894/33309\nf 6375/23895/33310 6377/23896/33311 6386/23897/33312\nf 6386/23898/33313 6381/23899/33314 6375/23900/33315\nf 6387/23901/33316 6385/23902/33317 6386/23903/33318\nf 6385/23904/33319 6387/23905/33320 6388/23906/33321\nf 6388/23907/33322 6389/23908/33323 6385/23909/33324\nf 6384/23910/33325 6385/23911/33326 6389/23912/33327\nf 6386/23913/33328 6390/23914/33329 6387/23915/33330\nf 6390/23916/33331 6386/23917/33332 6377/23918/33333\nf 6377/23919/33334 6379/23920/33335 6390/23921/33336\nf 6389/23922/33337 6391/23923/33338 6384/23924/33339\nf 6383/23925/33340 6384/23926/33341 6391/23927/33342\nf 6392/23928/33343 6389/23929/33344 6388/23930/33345\nf 6389/23931/33346 6392/23932/33347 6391/23933/33348\nf 6388/23934/33349 6307/23935/33350 6392/23936/33351\nf 6393/23937/33352 6392/23938/33353 6307/23939/33354\nf 6307/23940/33355 6306/23941/33356 6393/23942/33357\nf 6393/23943/33358 6306/23944/33359 6310/23945/33360\nf 6310/23946/33361 6394/23947/33362 6393/23948/33363\nf 6394/23949/33364 6310/23950/33365 6311/23951/33366\nf 6311/23952/33367 6596/23953/33368 6394/23954/33369\nf 6395/23955/33370 6394/23956/33371 6596/23957/33372\nf 6596/23958/33373 11670/23959/33374 6395/23960/33375\nf 12602/23961/33376 6395/23962/33377 11670/23963/33378\nf 12602/23964/33379 11670/23965/33380 11671/23966/33381\nf 12909/23967/33382 12602/23968/33383 11671/23969/33384\nf 12909/23970/33385 12637/23971/33386 12602/23972/33387\nf 12727/23973/33388 12909/23974/33389 11671/23975/33390\nf 12727/23976/33391 11575/23977/33392 12909/23978/33393\nf 11575/23979/33394 6354/23980/33395 12909/23981/33396\nf 11575/23982/33397 11577/23983/33398 6354/23984/33399\nf 12602/23985/33400 6551/23986/33401 6395/23987/33402\nf 6551/23988/33403 6402/23989/33404 6395/23990/33405\nf 6596/23991/33406 6311/23992/33407 12610/23993/33408\nf 11577/23994/33409 12610/23995/33410 6354/23996/33411\nf 6594/23997/33412 6596/23998/33413 12610/23999/33414\nf 11577/24000/33415 6594/24001/33416 12610/24002/33417\nf 6605/24003/33418 11670/24004/33419 6596/24005/33420\nf 6596/24006/33421 11563/24007/33422 6605/24008/33423\nf 6445/24009/33424 9590/24010/33425 6403/24011/33426\nf 6403/24012/33427 6404/24013/33428 6445/24014/33429\nf 6404/24015/33430 6403/24016/33431 6405/24017/33432\nf 6405/24018/33433 6406/24019/33434 6404/24020/33435\nf 6407/24021/33436 6405/24022/33437 6403/24023/33438\nf 6403/24024/33439 6408/24025/33440 6407/24026/33441\nf 6408/24027/33442 6403/24028/33443 9590/24029/33444\nf 9590/24030/33445 11260/24031/33446 6408/24032/33447\nf 6410/24033/33448 6406/24034/33449 6405/24035/33450\nf 6405/24036/33451 6411/24037/33452 6410/24038/33453\nf 6411/24039/33454 6405/24040/33455 6407/24041/33456\nf 6410/24042/33457 6411/24043/33458 6412/24044/33459\nf 6412/24045/33460 6413/24046/33461 6410/24047/33462\nf 6413/24048/33463 6412/24049/33464 6414/24050/33465\nf 6414/24051/33466 6415/24052/33467 6413/24053/33468\nf 6415/24054/33469 6414/24055/33470 6416/24056/33471\nf 6416/24057/33472 6417/24058/33473 6415/24059/33474\nf 6416/24060/33475 6414/24061/33476 6418/24062/33477\nf 6418/24063/33478 10977/24064/33479 6416/24065/33480\nf 6417/24066/33481 6416/24067/33482 11967/24068/33483\nf 11967/24069/33484 6416/24070/33485 10977/24071/33486\nf 11967/24072/33487 11913/24073/33488 6417/24074/33489\nf 10977/24075/33490 10978/24076/33491 11967/24077/33492\nf 6414/24078/33493 6412/24079/33494 6421/24080/33495\nf 6421/24081/33496 6418/24082/33497 6414/24083/33498\nf 6422/24084/33499 6421/24085/33500 6412/24086/33501\nf 6412/24087/33502 6411/24088/33503 6422/24089/33504\nf 6407/24090/33505 6422/24091/33506 6411/24092/33507\nf 6423/24093/33508 6419/24094/33509 11041/24095/33510\nf 11041/24096/33511 6424/24097/33512 6423/24098/33513\nf 6424/24099/33514 11041/24100/33515 10926/24101/33516\nf 6425/24102/33517 6423/24103/33518 6424/24104/33519\nf 6424/24105/33520 6426/24106/33521 6425/24107/33522\nf 10926/24108/33523 6427/24109/33524 6424/24110/33525\nf 6426/24111/33526 6424/24112/33527 6427/24113/33528\nf 6427/24114/33529 10926/24115/33530 10927/24116/33531\nf 6427/24117/33532 6428/24118/33533 6426/24119/33534\nf 10927/24120/33535 6429/24121/33536 6427/24122/33537\nf 6429/24123/33538 10927/24124/33539 11135/24125/33540\nf 6427/24126/33541 6429/24127/33542 6430/24128/33543\nf 6430/24129/33544 6428/24130/33545 6427/24131/33546\nf 11135/24132/33547 6431/24133/33548 6429/24134/33549\nf 6432/24135/33550 6431/24136/33551 11135/24137/33552\nf 11135/24138/33553 11232/24139/33554 6432/24140/33555\nf 6429/24141/33556 6431/24142/33557 6433/24143/33558\nf 6433/24144/33559 6430/24145/33560 6429/24146/33561\nf 6433/24147/33562 6431/24148/33563 6432/24149/33564\nf 6432/24150/33565 6434/24151/33566 6433/24152/33567\nf 6423/24153/33568 6425/24154/33569 12014/24155/33570\nf 12014/24156/33571 12013/24157/33572 6423/24158/33573\nf 6419/24159/33574 6423/24160/33575 12013/24161/33576\nf 12013/24162/33577 10979/24163/33578 6419/24164/33579\nf 6432/24165/33580 11232/24166/33581 11259/24167/33582\nf 11259/24168/33583 6435/24169/33584 6432/24170/33585\nf 6434/24171/33586 6432/24172/33587 6435/24173/33588\nf 6435/24174/33589 6436/24175/33590 6434/24176/33591\nf 6437/24177/33592 6436/24178/33593 6435/24179/33594\nf 6435/24180/33595 6438/24181/33596 6437/24182/33597\nf 6438/24183/33598 6435/24184/33599 11259/24185/33600\nf 11259/24186/33601 6443/24187/33602 6438/24188/33603\nf 6439/24189/33604 6437/24190/33605 6438/24191/33606\nf 6438/24192/33607 6247/24193/33608 6439/24194/33609\nf 6247/24195/33610 6438/24196/33611 6443/24197/33612\nf 6443/24198/33613 6440/24199/33614 6247/24200/33615\nf 6409/24201/33616 6442/24202/33617 6441/24203/33618\nf 6441/24204/33619 12653/24205/33620 6409/24206/33621\nf 12653/24207/33622 6441/24208/33623 6239/24209/33624\nf 6239/24210/33625 6440/24211/33626 12653/24212/33627\nf 9710/24213/33628 6239/24214/33629 6441/24215/33630\nf 6441/24216/33631 6444/24217/33632 9710/24218/33633\nf 6444/24219/33634 6441/24220/33635 6442/24221/33636\nf 6444/24222/33637 6442/24223/33638 9515/24224/33639\nf 9513/24225/33640 9514/24226/33641 6446/4597/33642\nf 6447/24227/33643 6449/4969/33644 6448/2701/33645\nf 6448/2701/33646 6450/24228/33647 6447/24229/33648\nf 9940/24230/33649 6447/24231/33650 6450/24232/33651\nf 6450/24233/33652 6367/24234/33653 9940/24235/33654\nf 6450/24236/33655 6448/2701/33656 6452/3346/33657\nf 6452/3346/33658 6453/24237/33659 6450/24238/33660\nf 6453/24239/33661 6454/24240/33662 6450/24241/33663\nf 6454/24242/33664 6609/24243/33665 6450/24244/33666\nf 6449/4969/33667 6447/24245/33668 6455/24246/33669\nf 6455/24247/33670 6456/6032/33671 6449/4969/33672\nf 6447/24248/33673 9940/24249/33674 9941/24250/33675\nf 9941/24251/33676 6455/24252/33677 6447/24253/33678\nf 6453/24254/33679 6452/3346/33680 6512/4563/33681\nf 6512/4563/33682 9996/24255/33683 6453/24256/33684\nf 9983/24257/33685 6454/24258/33686 6453/24259/33687\nf 6453/24260/33688 9996/24261/33689 9983/24262/33690\nf 6454/24263/33691 9983/24264/33692 9730/24265/33693\nf 9730/24266/33694 9732/24267/33695 6454/24268/33696\nf 6609/24269/33697 6454/24270/33698 9732/24271/33699\nf 9732/24272/33700 12341/24273/33701 6609/24274/33702\nf 6274/24275/33703 12341/24276/33704 9732/24277/33705\nf 9732/24278/33706 6272/24279/33707 6274/24280/33708\nf 6455/24281/33709 9941/24282/33710 6245/24283/33711\nf 6245/24284/33712 6463/24285/33713 6455/24286/33714\nf 6463/24287/33715 6245/24288/33716 12803/24289/33717\nf 12803/24290/33718 6465/24291/33719 6463/24292/33720\nf 6466/5915/33721 6463/24293/33722 6465/24294/33723\nf 6455/24295/33724 6463/24296/33725 6466/5915/33726\nf 6466/5915/33727 6456/6032/33728 6455/24297/33729\nf 6465/24298/33730 6467/5442/33731 6466/5915/33732\nf 6467/5442/33733 6465/24299/33734 9513/24300/33735\nf 9513/24301/33736 6446/2379/33737 6467/5442/33738\nf 6240/24302/33739 9513/24303/33740 6465/24304/33741\nf 6465/24305/33742 12803/24306/33743 6240/24307/33744\nf 6467/5442/33745 6446/2379/33746 9514/24308/33747\nf 9514/24309/33748 6404/24310/33749 6467/5442/33750\nf 6466/5915/33751 6467/5442/33752 6404/24311/33753\nf 6404/24312/33754 6406/24313/33755 6466/5915/33756\nf 6466/5915/33757 6406/24314/33758 6410/24315/33759\nf 6410/24316/33760 6456/6032/33761 6466/5915/33762\nf 6449/4969/33763 6456/6032/33764 6410/24317/33765\nf 6410/24318/33766 6413/24319/33767 6449/4969/33768\nf 6449/4969/33769 6413/24320/33770 6415/24321/33771\nf 6415/24322/33772 6448/2701/33773 6449/4969/33774\nf 6448/2701/33775 6415/24323/33776 11099/24324/33777\nf 11099/24325/33778 6452/3346/33779 6448/2701/33780\nf 6452/3346/33781 11099/24326/33782 11912/24327/33783\nf 11912/24328/33784 6512/4563/33785 6452/3346/33786\nf 6609/24329/33787 6367/24330/33788 6450/24331/33789\nf 8737/24332/33790 8739/24333/33791 12118/24334/33792\nf 12118/24335/33793 12120/24336/33794 8737/24337/33795\nf 12118/24338/33796 8739/24339/33797 8835/24340/33798\nf 8835/24341/33799 6529/24342/33800 12118/24343/33801\nf 8925/24344/33802 8924/24345/33803 8836/24346/33804\nf 8836/24347/33805 6518/24348/33806 8925/24349/33807\nf 8925/24350/33808 6518/24351/33809 12286/24352/33810\nf 12286/24353/33811 12193/24354/33812 8925/24355/33813\nf 8738/24356/33814 6526/24357/33815 12246/3544/33816\nf 12246/3544/33817 8830/5091/33818 8738/24358/33819\nf 6511/24359/33820 8830/5091/33821 12246/3544/33822\nf 12246/3544/33823 6520/24360/33824 6511/24361/33825\nf 6511/24362/33826 6520/24363/33827 9014/24364/33828\nf 9014/24365/33829 12264/24366/33830 6511/24367/33831\nf 12391/24368/33832 12264/24369/33833 9014/24370/33834\nf 9014/24371/33835 12273/24372/33836 12391/24373/33837\nf 12369/24374/33838 6525/24375/33839 12465/24376/33840\nf 12465/24377/33841 6513/24378/33842 12369/24379/33843\nf 12369/24380/33844 6513/24381/33845 12390/24382/33846\nf 12390/24383/33847 6477/24384/33848 12369/24385/33849\nf 9300/24386/33850 6528/24387/33851 6481/24388/33852\nf 6481/24389/33853 6482/24390/33854 9300/24391/33855\nf 6481/24392/33856 6528/24393/33857 8888/24394/33858\nf 8888/24395/33859 9034/24396/33860 6481/24397/33861\nf 6484/24398/33862 6483/24399/33863 6530/24400/33864\nf 6530/24401/33865 9051/24402/33866 6484/24403/33867\nf 9047/24404/33868 9046/24405/33869 9052/24406/33870\nf 9052/24407/33871 6532/24408/33872 9047/24409/33873\nf 6482/24410/33874 6481/24411/33875 11871/24412/33876\nf 11871/24413/33877 6481/24414/33878 9034/24415/33879\nf 11871/24416/33880 9062/24417/33881 6482/24418/33882\nf 9034/24419/33883 9035/24420/33884 11871/24421/33885\nf 6490/24422/33886 6489/24423/33887 9033/24424/33888\nf 9033/24425/33889 9045/24426/33890 6490/24427/33891\nf 9045/24428/33892 6486/24429/33893 6491/24430/33894\nf 6491/24431/33895 6490/24432/33896 9045/24433/33897\nf 9063/24434/33898 6487/24435/33899 6492/24436/33900\nf 6492/24437/33901 6487/24438/33902 9036/24439/33903\nf 6492/24440/33904 6559/24441/33905 9063/24442/33906\nf 9036/24443/33907 12063/24444/33908 6492/24445/33909\nf 12523/24446/33910 12063/24447/33911 9036/24448/33912\nf 9036/24449/33913 6490/24450/33914 12523/24451/33915\nf 6490/24452/33916 6491/24453/33917 6555/24454/33918\nf 6555/24455/33919 12523/24456/33920 6490/24457/33921\nf 6494/2242/33922 9063/24458/33923 6559/24459/33924\nf 6488/24460/33925 12001/24461/33926 6495/865/33927\nf 6495/865/33928 12001/24462/33929 11826/24463/33930\nf 11826/24464/33931 6497/24465/33932 6495/865/33933\nf 6495/865/33934 6497/24466/33935 6521/24467/33936\nf 6521/24468/33937 12308/5971/33938 6495/865/33939\nf 6521/24469/33940 6497/24470/33941 6499/24471/33942\nf 6499/24472/33943 6497/24473/33944 11826/24474/33945\nf 6499/24475/33946 11764/24476/33947 6521/24477/33948\nf 11760/24478/33949 11764/24479/33950 6499/24480/33951\nf 6499/24481/33952 11762/24482/33953 11760/24483/33954\nf 11826/24484/33955 11745/24485/33956 6499/24486/33957\nf 11762/24487/33958 6499/24488/33959 11745/24489/33960\nf 11745/24490/33961 11747/24491/33962 11762/24492/33963\nf 6503/24493/33964 6496/24494/33965 6505/24495/33966\nf 6505/24496/33967 6496/24497/33968 6494/2242/33969\nf 6505/24498/33970 6506/24499/33971 6503/24500/33972\nf 11746/24501/33973 6503/24502/33974 6506/24503/33975\nf 6494/2242/33976 6560/1564/33977 6505/24504/33978\nf 6506/24505/33979 6561/24506/33980 11746/24507/33981\nf 9061/24508/33982 6495/865/33983 12308/5971/33984\nf 12308/5971/33985 6527/24509/33986 9061/24510/33987\nf 6495/865/33988 9061/24511/33989 6488/24512/33990\nf 6559/24513/33991 6560/1564/33992 6494/2242/33993\nf 6507/24514/33994 6508/24515/33995 9191/24516/33996\nf 9191/24517/33997 9190/24518/33998 6507/24519/33999\nf 6507/24520/34000 9190/24521/34001 11761/24522/34002\nf 11761/24523/34003 6502/24524/34004 6507/24525/34005\nf 6508/24526/34006 6507/24527/34007 11701/24528/34008\nf 11701/24529/34009 6507/24530/34010 6502/24531/34011\nf 11701/24532/34012 11702/24533/34013 6508/24534/34014\nf 6502/24535/34015 6504/24536/34016 11701/24537/34017\nf 6510/24538/34018 6509/24539/34019 6562/24540/34020\nf 6562/24541/34021 6509/24542/34022 11748/24543/34023\nf 6562/24544/34024 6563/24545/34025 6510/24546/34026\nf 11748/24547/34027 6561/24548/34028 6562/24549/34029\nf 12263/24550/34030 6458/24551/34031 11911/2896/34032\nf 11911/2896/34033 6475/6179/34034 12263/24552/34035\nf 6458/24553/34036 12263/24554/34037 6476/24555/34038\nf 6476/24556/34039 6459/24557/34040 6458/24558/34041\nf 6459/24559/34042 6476/24560/34043 6480/24561/34044\nf 6480/24562/34045 9731/24563/34046 6459/24564/34047\nf 9731/24565/34048 6480/24566/34049 12466/24567/34050\nf 12466/24568/34051 12567/24569/34052 9731/24570/34053\nf 12567/24571/34054 12466/24572/34055 6479/24573/34056\nf 6479/24574/34057 12566/24575/34058 12567/24576/34059\nf 6475/6179/34060 11911/2896/34061 6515/24577/34062\nf 6515/24578/34063 6468/24579/34064 6475/6179/34065\nf 6468/24580/34066 6515/24581/34067 6516/24582/34068\nf 6516/24583/34069 6470/24584/34070 6468/24585/34071\nf 6470/24586/34072 6516/24587/34073 6420/24588/34074\nf 6420/24589/34075 6471/24590/34076 6470/24591/34077\nf 6471/24592/34078 6420/24593/34079 6517/24594/34080\nf 6517/24595/34081 12210/24596/34082 6471/24597/34083\nf 12210/24598/34084 6517/24599/34085 6519/24600/34086\nf 6519/24601/34087 6472/24602/34088 12210/24603/34089\nf 9013/24604/34090 12329/24605/34091 6500/24606/34092\nf 6500/24607/34093 6522/24608/34094 9013/24609/34095\nf 12329/24610/34096 9013/24611/34097 6474/3994/34098\nf 6474/3994/34099 6498/6003/34100 12329/24612/34101\nf 6522/24613/34102 6500/24614/34103 6501/24615/34104\nf 6501/24616/34105 12274/24617/34106 6522/24618/34107\nf 12274/24619/34108 6501/24620/34109 6523/24621/34110\nf 6523/24622/34111 6478/24623/34112 12274/24624/34113\nf 6478/24625/34114 6523/24626/34115 6524/24627/34116\nf 6524/24628/34117 12370/24629/34118 6478/24630/34119\nf 6498/6003/34120 6474/3994/34121 12119/24631/34122\nf 12119/24632/34123 9301/24633/34124 6498/6003/34125\nf 9301/24634/34126 12119/24635/34127 6469/24636/34128\nf 6469/24637/34129 8886/24638/34130 9301/24639/34131\nf 8886/24640/34132 6469/24641/34133 8923/24642/34134\nf 8923/24643/34135 8887/24644/34136 8886/24645/34137\nf 6485/24646/34138 8887/24647/34139 8923/24648/34140\nf 8923/24649/34141 6531/24650/34142 6485/24651/34143\nf 6485/24652/34144 6531/24653/34145 6473/24654/34146\nf 6473/24655/34147 12267/24656/34148 6485/24657/34149\nf 12185/24658/34150 12200/24659/34151 12354/24660/34152\nf 12354/24661/34153 9733/24662/34154 12185/24663/34155\nf 12200/24664/34156 12185/24665/34157 12211/24666/34158\nf 12211/24667/34159 6270/24668/34160 12200/24669/34161\nf 6270/24670/34162 12211/24671/34163 8930/24672/34164\nf 8930/24673/34165 8905/24674/34166 6270/24675/34167\nf 8905/24676/34168 8930/24677/34169 8931/24678/34170\nf 8931/24679/34171 6537/24680/34172 8905/24681/34173\nf 12728/24682/34174 12746/24683/34175 11576/24684/34176\nf 12717/24685/34177 6219/24686/34178 9251/24687/34179\nf 9251/24688/34180 6583/24689/34181 12717/24690/34182\nf 6219/24691/34183 12717/24692/34184 6584/24693/34185\nf 6584/24694/34186 6221/24695/34187 6219/24696/34188\nf 11187/24697/34189 6217/24698/34190 6540/24699/34191\nf 6540/24700/34192 11171/24701/34193 11187/24702/34194\nf 11171/24703/34195 6540/24704/34196 6541/24705/34197\nf 6541/24706/34198 11161/24707/34199 11171/24708/34200\nf 11161/24709/34201 6541/24710/34202 6214/24711/34203\nf 6214/24712/34204 11162/24713/34205 11161/24714/34206\nf 11162/24715/34207 6214/24716/34208 6547/24717/34209\nf 6547/24718/34210 6586/24719/34211 11162/24720/34212\nf 6221/24721/34213 6584/24722/34214 9877/24723/34215\nf 9877/24724/34216 9875/24725/34217 6221/24726/34218\nf 6581/24727/34219 6222/24728/34220 6542/24729/34221\nf 6542/24730/34222 9878/24731/34223 6581/24732/34224\nf 6222/24733/34225 6581/24734/34226 9929/24735/34227\nf 9929/24736/34228 12348/24737/34229 6222/24738/34230\nf 6544/24739/34231 9928/24740/34232 9927/24741/34233\nf 9927/24742/34234 6213/24743/34235 6544/24744/34236\nf 6213/24745/34237 9927/24746/34238 6586/24747/34239\nf 6586/24748/34240 6547/24749/34241 6213/24750/34242\nf 6302/24751/34243 6291/24752/34244 6286/24753/34245\nf 6286/24754/34246 6287/24755/34247 6302/24756/34248\nf 6311/24757/34249 6301/24758/34250 6352/24759/34251\nf 6352/24760/34252 12610/24761/34253 6311/24762/34254\nf 12896/24763/34255 6352/24764/34256 6301/24765/34257\nf 12636/24766/34258 12644/24767/34259 6550/24768/34260\nf 6550/24769/34261 6397/24770/34262 12636/24771/34263\nf 6397/24772/34264 6550/24773/34265 12603/24774/34266\nf 6534/24775/34267 6514/24776/34268 6552/24777/34269\nf 6552/24778/34270 6536/24779/34271 6534/24780/34272\nf 6514/24781/34273 6534/24782/34274 12212/24783/34275\nf 12212/24784/34276 6460/24785/34277 6514/24786/34278\nf 9734/24787/34279 6460/24788/34280 12212/24789/34281\nf 6553/24790/34282 6554/24791/34283 6461/24792/34284\nf 12522/24793/34285 6557/24794/34286 6556/24795/34287\nf 6556/24796/34288 6493/24797/34289 12522/24798/34290\nf 6493/24799/34291 6556/24800/34292 6492/24801/34293\nf 6492/24802/34294 6558/24803/34295 6493/24804/34296\nf 6556/24805/34297 6559/24806/34298 6492/24807/34299\nf 6556/24808/34300 6560/6077/34301 6559/24809/34302\nf 6556/24810/34303 6505/24811/34304 6560/6077/34305\nf 6505/24812/34306 6556/24813/34307 6557/24814/34308\nf 6557/24815/34309 6506/24816/34310 6505/24817/34311\nf 6561/24818/34312 6506/24819/34313 6557/24820/34314\nf 6557/24821/34315 6562/24822/34316 6561/24823/34317\nf 6562/24824/34318 6557/24825/34319 12522/24826/34320\nf 12522/24827/34321 6563/24828/34322 6562/24829/34323\nf 6578/24830/34324 10852/24831/34325 10851/24832/34326\nf 10851/24833/34327 6566/24834/34328 6578/24835/34329\nf 6566/24836/34330 10851/24837/34331 6567/24838/34332\nf 6567/24839/34333 6382/24840/34334 6566/24841/34335\nf 6568/24842/34336 10858/24843/34337 6564/24844/34338\nf 6569/24845/34339 10858/24846/34340 6568/24847/34341\nf 6382/24848/34342 6567/24849/34343 10843/24850/34344\nf 6568/24851/34345 6570/24852/34346 6569/24853/34347\nf 6564/24854/34348 6571/24855/34349 6568/24856/34350\nf 10843/24857/34351 6572/24858/34352 6382/24859/34353\nf 6372/24860/34354 6572/24861/34355 10843/24862/34356\nf 10843/24863/34357 10797/24864/34358 6372/24865/34359\nf 6574/24866/34360 6571/24867/34361 6564/24868/34362\nf 6564/24869/34363 6565/24870/34364 6574/24871/34365\nf 6372/24872/34366 10797/24873/34367 10798/4847/34368\nf 6163/4076/34369 6575/24874/34370 6573/24875/34371\nf 6573/24876/34372 6576/24877/34373 6163/4076/34374\nf 6576/24878/34375 6573/24879/34376 6569/24880/34377\nf 6569/24881/34378 6570/24882/34379 6576/24883/34380\nf 10798/4847/34381 6580/525/34382 6372/24884/34383\nf 6566/24885/34384 6383/24886/34385 6577/24887/34386\nf 6577/24888/34387 12551/24889/34388 6566/24890/34389\nf 6391/24891/34390 6577/24892/34391 6383/24893/34392\nf 6579/6419/34393 6168/5940/34394 6374/24894/34395\nf 6374/24895/34396 6371/24896/34397 6579/6419/34398\nf 6579/6419/34399 6371/24897/34400 6372/24898/34401\nf 6372/24899/34402 6580/1375/34403 6579/6419/34404\nf 6376/24900/34405 6374/24901/34406 6168/5940/34407\nf 6168/5940/34408 6169/5359/34409 6376/24902/34410\nf 6378/24903/34411 6376/24904/34412 6169/5359/34413\nf 6169/5359/34414 6321/3151/34415 6378/24905/34416\nf 6545/24906/34417 6546/24907/34418 12834/24908/34419\nf 6545/24909/34420 12834/24910/34421 6582/24911/34422\nf 12834/24912/34423 11188/24913/34424 6582/24914/34425\nf 12834/24915/34426 12724/24916/34427 11188/24917/34428\nf 12834/24918/34429 6543/24919/34430 12724/24920/34431\nf 12724/24921/34432 6539/24922/34433 11188/24923/34434\nf 11188/24924/34435 6585/24925/34436 6582/24926/34437\nf 11504/24927/34438 6545/24928/34439 6582/24929/34440\nf 11504/24930/34441 6582/24931/34442 6587/24932/34443\nf 10380/24933/34444 10379/24934/34445 10449/24935/34446\nf 13018/24936/34447 10380/24937/34448 10449/24938/34449\nf 6597/24939/34450 13018/24940/34451 10449/24941/34452\nf 6597/24942/34453 10449/24943/34454 11461/24944/34455\nf 6597/24945/34456 11461/24946/34457 11462/24947/34458\nf 6606/24948/34459 6597/24949/34460 11462/24950/34461\nf 11563/24951/34462 13018/24952/34463 6597/24953/34464\nf 11670/24954/34465 6605/24955/34466 13077/24956/34467\nf 6591/24957/34468 6398/24958/34469 6396/24959/34470\nf 6398/24960/34471 6591/24961/34472 10502/24962/34473\nf 10502/24963/34474 6592/24964/34475 6398/24965/34476\nf 6592/24966/34477 10502/24967/34478 6599/24968/34479\nf 6599/24969/34480 6538/24970/34481 6592/24971/34482\nf 6538/24972/34483 6599/24973/34484 6593/24974/34485\nf 6593/24975/34486 6400/24976/34487 6538/24977/34488\nf 6400/24978/34489 6593/24979/34490 10398/24980/34491\nf 10398/24981/34492 11578/24982/34493 6400/24983/34494\nf 6401/24984/34495 10397/24985/34496 10410/24986/34497\nf 10410/24987/34498 11562/24988/34499 6401/24989/34500\nf 11562/24990/34501 10410/24991/34502 6595/24992/34503\nf 11563/24993/34504 6596/24994/34505 6594/24995/34506\nf 6597/24996/34507 6605/24997/34508 11563/24998/34509\nf 10305/24999/34510 13076/25000/34511 10304/25001/34512\nf 13076/25002/34513 10305/25003/34514 11463/25004/34515\nf 11463/25005/34516 10503/25006/34517 13076/25007/34518\nf 6598/25008/34519 6590/25009/34520 6589/25010/34521\nf 6589/25011/34522 10504/25012/34523 6598/25013/34524\nf 10504/25014/34525 6589/25015/34526 6600/25016/34527\nf 6600/25017/34528 13038/25018/34529 10504/25019/34530\nf 13038/25020/34531 6600/25021/34532 6601/25022/34533\nf 6601/25023/34534 10396/25024/34535 13038/25025/34536\nf 10409/25026/34537 6602/25027/34538 10378/25028/34539\nf 10378/25029/34540 6604/25030/34541 10409/25031/34542\nf 10409/25032/34543 6604/25033/34544 6588/25034/34545\nf 13018/25035/34546 11563/25036/34547 6603/25037/34548\nf 6605/25038/34549 6597/25039/34550 6606/25040/34551\nf 6607/25041/34552 6257/25042/34553 6253/25043/34554\nf 6257/25044/34555 6607/25045/34556 6255/5879/34557\nf 6608/25046/34558 6367/25047/34559 6609/25048/34560\nf 6610/25049/34561 6367/25050/34562 6608/25051/34563\nf 6608/25052/34564 6611/25053/34565 6610/25054/34566\nf 6610/25055/34567 6611/25056/34568 10903/25057/34569\nf 10903/25058/34570 10921/25059/34571 6610/25060/34572\nf 6369/25061/34573 6613/25062/34574 6612/25063/34575\nf 6612/25064/34576 6614/25065/34577 6369/25066/34578\nf 6369/25067/34579 6614/25068/34580 6215/25069/34581\nf 6215/25070/34582 6615/25071/34583 6369/25072/34584\nf 6615/25073/34585 6215/25074/34586 6216/25075/34587\nf 6216/25076/34588 6616/25077/34589 6615/25078/34590\nf 6617/25079/34591 6616/25080/34592 6216/25081/34593\nf 6216/25082/34594 6218/25083/34595 6617/25084/34596\nf 6618/25085/34597 6617/25086/34598 6218/25087/34599\nf 6218/25088/34600 6220/25089/34601 6618/25090/34602\nf 6618/25091/34603 6220/25092/34604 12418/25093/34605\nf 12418/25094/34606 6620/25095/34607 6618/25096/34608\nf 12335/25097/34609 6620/25098/34610 12418/25099/34611\nf 12418/25100/34612 6273/25101/34613 12335/25102/34614\nf 6622/274/34615 6624/965/34616 6623/1504/34617\nf 6623/1504/34618 6625/4248/34619 6622/274/34620\nf 6626/6051/34621 6625/4248/34622 6623/1504/34623\nf 6623/1504/34624 6627/1559/34625 6626/6051/34626\nf 6628/6214/34627 6626/6051/34628 6627/1559/34629\nf 6627/1559/34630 6629/3835/34631 6628/6214/34632\nf 6626/6051/34633 6628/6214/34634 6630/2882/34635\nf 6630/2882/34636 6631/5265/34637 6626/6051/34638\nf 6625/4248/34639 6626/6051/34640 6631/5265/34641\nf 6631/5265/34642 6632/2186/34643 6625/4248/34644\nf 6622/274/34645 6625/4248/34646 6632/2186/34647\nf 6632/2186/34648 6633/4002/34649 6622/274/34650\nf 6633/4002/34651 6632/2186/34652 6634/717/34653\nf 6634/717/34654 6635/2355/34655 6633/4002/34656\nf 6636/2294/34657 6634/717/34658 6632/2186/34659\nf 6632/2186/34660 6631/5265/34661 6636/2294/34662\nf 6637/5725/34663 6636/2294/34664 6631/5265/34665\nf 6631/5265/34666 6630/2882/34667 6637/5725/34668\nf 6636/2294/34669 6637/5725/34670 6638/4048/34671\nf 6638/4048/34672 6639/244/34673 6636/2294/34674\nf 6634/717/34675 6636/2294/34676 6639/244/34677\nf 6639/244/34678 6640/1345/34679 6634/717/34680\nf 6635/2355/34681 6634/717/34682 6640/1345/34683\nf 6640/1345/34684 6641/4425/34685 6635/2355/34686\nf 6641/4425/34687 6640/1345/34688 6642/2488/34689\nf 6642/2488/34690 6643/6482/34691 6641/4425/34692\nf 6644/517/34693 6642/2488/34694 6640/1345/34695\nf 6640/1345/34696 6639/244/34697 6644/517/34698\nf 6645/3949/34699 6644/517/34700 6639/244/34701\nf 6639/244/34702 6638/4048/34703 6645/3949/34704\nf 6644/517/34705 6645/3949/34706 6646/4968/34707\nf 6646/4968/34708 6647/3876/34709 6644/517/34710\nf 6642/2488/34711 6644/517/34712 6647/3876/34713\nf 6647/3876/34714 6648/5292/34715 6642/2488/34716\nf 6643/6482/34717 6642/2488/34718 6648/5292/34719\nf 6648/5292/34720 6649/5251/34721 6643/6482/34722\nf 6649/5251/34723 6648/5292/34724 6650/4040/34725\nf 6650/4040/34726 6651/4728/34727 6649/5251/34728\nf 6652/5686/34729 6650/4040/34730 6648/5292/34731\nf 6648/5292/34732 6647/3876/34733 6652/5686/34734\nf 6653/271/34735 6652/5686/34736 6647/3876/34737\nf 6647/3876/34738 6646/4968/34739 6653/271/34740\nf 6652/5686/34741 6653/271/34742 6654/326/34743\nf 6654/326/34744 6907/6162/34745 6652/5686/34746\nf 6650/4040/34747 6652/5686/34748 6907/6162/34749\nf 6907/6162/34750 6655/4039/34751 6650/4040/34752\nf 6651/4728/34753 6650/4040/34754 6655/4039/34755\nf 6655/4039/34756 7084/738/34757 6651/4728/34758\nf 6656/896/34759 6646/4968/34760 6645/3949/34761\nf 6645/3949/34762 6657/1049/34763 6656/896/34764\nf 6657/1049/34765 6645/3949/34766 6638/4048/34767\nf 6638/4048/34768 6658/1102/34769 6657/1049/34770\nf 6658/1102/34771 6638/4048/34772 6637/5725/34773\nf 6637/5725/34774 6659/2696/34775 6658/1102/34776\nf 6659/2696/34777 6637/5725/34778 6630/2882/34779\nf 6630/2882/34780 6660/1675/34781 6659/2696/34782\nf 6660/1675/34783 6630/2882/34784 6628/6214/34785\nf 6628/6214/34786 6661/5150/34787 6660/1675/34788\nf 6661/5150/34789 6628/6214/34790 6629/3835/34791\nf 6629/3835/34792 6662/1385/34793 6661/5150/34794\nf 6663/4951/34795 6661/5150/34796 6662/1385/34797\nf 6662/1385/34798 6664/2604/34799 6663/4951/34800\nf 6665/40/34801 6663/4951/34802 6664/2604/34803\nf 6664/2604/34804 6666/3162/34805 6665/40/34806\nf 6667/3249/34807 6665/40/34808 6666/3162/34809\nf 6666/3162/34810 6668/2727/34811 6667/3249/34812\nf 6665/40/34813 6667/3249/34814 6669/4362/34815\nf 6669/4362/34816 6670/6065/34817 6665/40/34818\nf 6663/4951/34819 6665/40/34820 6670/6065/34821\nf 6670/6065/34822 6671/3106/34823 6663/4951/34824\nf 6661/5150/34825 6663/4951/34826 6671/3106/34827\nf 6671/3106/34828 6660/1675/34829 6661/5150/34830\nf 6672/6010/34831 6659/2696/34832 6660/1675/34833\nf 6660/1675/34834 6671/3106/34835 6672/6010/34836\nf 6673/1218/34837 6672/6010/34838 6671/3106/34839\nf 6671/3106/34840 6670/6065/34841 6673/1218/34842\nf 6674/554/34843 6673/1218/34844 6670/6065/34845\nf 6670/6065/34846 6669/4362/34847 6674/554/34848\nf 6673/1218/34849 6674/554/34850 6675/4809/34851\nf 6675/4809/34852 6676/3986/34853 6673/1218/34854\nf 6672/6010/34855 6673/1218/34856 6676/3986/34857\nf 6676/3986/34858 6677/3138/34859 6672/6010/34860\nf 6659/2696/34861 6672/6010/34862 6677/3138/34863\nf 6677/3138/34864 6658/1102/34865 6659/2696/34866\nf 6658/1102/34867 6677/3138/34868 6678/2347/34869\nf 6678/2347/34870 6657/1049/34871 6658/1102/34872\nf 6679/3586/34873 6678/2347/34874 6677/3138/34875\nf 6677/3138/34876 6676/3986/34877 6679/3586/34878\nf 6680/4511/34879 6679/3586/34880 6676/3986/34881\nf 6676/3986/34882 6675/4809/34883 6680/4511/34884\nf 6679/3586/34885 6680/4511/34886 6681/6338/34887\nf 6681/6338/34888 6682/4438/34889 6679/3586/34890\nf 6678/2347/34891 6679/3586/34892 6682/4438/34893\nf 6682/4438/34894 6683/2018/34895 6678/2347/34896\nf 6657/1049/34897 6678/2347/34898 6683/2018/34899\nf 6683/2018/34900 6656/896/34901 6657/1049/34902\nf 6656/896/34903 6683/2018/34904 6684/2353/34905\nf 6684/2353/34906 6685/2584/34907 6656/896/34908\nf 6646/4968/34909 6656/896/34910 6685/2584/34911\nf 6685/2584/34912 6653/271/34913 6646/4968/34914\nf 6686/4084/34915 6684/2353/34916 6683/2018/34917\nf 6683/2018/34918 6682/4438/34919 6686/4084/34920\nf 6687/1532/34921 6686/4084/34922 6682/4438/34923\nf 6682/4438/34924 6681/6338/34925 6687/1532/34926\nf 6686/4084/34927 6687/1532/34928 6688/3821/34929\nf 6688/3821/34930 6689/4966/34931 6686/4084/34932\nf 6684/2353/34933 6686/4084/34934 6689/4966/34935\nf 6689/4966/34936 6690/2890/34937 6684/2353/34938\nf 6685/2584/34939 6684/2353/34940 6690/2890/34941\nf 6690/2890/34942 6691/783/34943 6685/2584/34944\nf 6653/271/34945 6685/2584/34946 6691/783/34947\nf 6691/783/34948 6654/326/34949 6653/271/34950\nf 6654/326/34951 6691/783/34952 6692/166/34953\nf 6692/166/34954 6904/3205/34955 6654/326/34956\nf 6693/718/34957 6692/166/34958 6691/783/34959\nf 6691/783/34960 6690/2890/34961 6693/718/34962\nf 6690/2890/34963 6689/4966/34964 6694/2189/34965\nf 6694/2189/34966 6693/2646/34967 6690/2890/34968\nf 6689/4966/34969 6688/3821/34970 6899/4218/34971\nf 6899/4218/34972 6694/1813/34973 6689/4966/34974\nf 6695/307/34975 6688/3821/34976 6687/1532/34977\nf 6687/1532/34978 6696/1704/34979 6695/307/34980\nf 6696/1704/34981 6687/1532/34982 6681/6338/34983\nf 6681/6338/34984 6697/924/34985 6696/1704/34986\nf 6697/924/34987 6681/6338/34988 6680/4511/34989\nf 6680/4511/34990 6698/900/34991 6697/924/34992\nf 6698/900/34993 6680/4511/34994 6675/4809/34995\nf 6675/4809/34996 6699/5866/34997 6698/900/34998\nf 6699/5866/34999 6675/4809/35000 6674/554/35001\nf 6674/554/35002 6700/2098/35003 6699/5866/35004\nf 6700/2098/35005 6674/554/35006 6669/4362/35007\nf 6669/4362/35008 6701/2372/35009 6700/2098/35010\nf 6701/2372/35011 6669/4362/35012 6667/3249/35013\nf 6667/3249/35014 6702/4553/35015 6701/2372/35016\nf 6702/4553/35017 6667/3249/35018 6668/2727/35019\nf 6668/2727/35020 6703/790/35021 6702/4553/35022\nf 6704/2054/35023 6702/4553/35024 6703/790/35025\nf 6703/790/35026 6705/2110/35027 6704/2054/35028\nf 6706/3233/35029 6704/2054/35030 6705/2110/35031\nf 6705/2110/35032 6707/5119/35033 6706/3233/35034\nf 6708/2673/35035 6706/3233/35036 6707/5119/35037\nf 6707/5119/35038 6709/1541/35039 6708/2673/35040\nf 6706/3233/35041 6708/2673/35042 6710/2270/35043\nf 6710/2270/35044 6711/6541/35045 6706/3233/35046\nf 6704/2054/35047 6706/3233/35048 6711/6541/35049\nf 6711/6541/35050 6712/1477/35051 6704/2054/35052\nf 6702/4553/35053 6704/2054/35054 6712/1477/35055\nf 6712/1477/35056 6701/2372/35057 6702/4553/35058\nf 6713/1854/35059 6700/2098/35060 6701/2372/35061\nf 6701/2372/35062 6712/1477/35063 6713/1854/35064\nf 6714/252/35065 6713/1854/35066 6712/1477/35067\nf 6712/1477/35068 6711/6541/35069 6714/252/35070\nf 6715/4993/35071 6714/252/35072 6711/6541/35073\nf 6711/6541/35074 6710/2270/35075 6715/4993/35076\nf 6714/252/35077 6715/4993/35078 6716/1572/35079\nf 6716/1572/35080 6717/2313/35081 6714/252/35082\nf 6713/1854/35083 6714/252/35084 6717/2313/35085\nf 6717/2313/35086 6718/2471/35087 6713/1854/35088\nf 6700/2098/35089 6713/1854/35090 6718/2471/35091\nf 6718/2471/35092 6699/5866/35093 6700/2098/35094\nf 6699/5866/35095 6718/2471/35096 6719/5108/35097\nf 6719/5108/35098 6698/900/35099 6699/5866/35100\nf 6720/4959/35101 6719/5108/35102 6718/2471/35103\nf 6718/2471/35104 6717/2313/35105 6720/4959/35106\nf 6721/5088/35107 6720/4959/35108 6717/2313/35109\nf 6717/2313/35110 6716/1572/35111 6721/5088/35112\nf 6720/4959/35113 6721/5088/35114 6722/4110/35115\nf 6722/4110/35116 6723/1800/35117 6720/4959/35118\nf 6719/5108/35119 6720/4959/35120 6723/1800/35121\nf 6723/1800/35122 6724/456/35123 6719/5108/35124\nf 6698/900/35125 6719/5108/35126 6724/456/35127\nf 6724/456/35128 6697/924/35129 6698/900/35130\nf 6697/924/35131 6724/456/35132 6725/2338/35133\nf 6725/2338/35134 6696/1704/35135 6697/924/35136\nf 6726/3471/35137 6725/2338/35138 6724/456/35139\nf 6724/456/35140 6723/1800/35141 6726/3471/35142\nf 6727/4994/35143 6726/3471/35144 6723/1800/35145\nf 6723/1800/35146 6722/4110/35147 6727/4994/35148\nf 6726/3471/35149 6727/4994/35150 6728/3717/35151\nf 6728/3717/35152 6729/4741/35153 6726/3471/35154\nf 6725/2338/35155 6726/3471/35156 6729/4741/35157\nf 6729/4741/35158 6730/5315/35159 6725/2338/35160\nf 6696/1704/35161 6725/2338/35162 6730/5315/35163\nf 6730/5315/35164 6695/307/35165 6696/1704/35166\nf 6695/307/35167 6730/5315/35168 6732/5474/35169\nf 6732/5474/35170 6897/4299/35171 6695/307/35172\nf 6730/5315/35173 6729/4741/35174 6731/1620/35175\nf 6731/1620/35176 6732/1341/35177 6730/5315/35178\nf 6729/4741/35179 6728/3717/35180 6733/4484/35181\nf 6733/4484/35182 6731/5975/35183 6729/4741/35184\nf 6734/5278/35185 6728/3717/35186 6727/4994/35187\nf 6727/4994/35188 6735/4406/35189 6734/5278/35190\nf 6735/4406/35191 6727/4994/35192 6722/4110/35193\nf 6722/4110/35194 6736/2408/35195 6735/4406/35196\nf 6736/2408/35197 6722/4110/35198 6721/5088/35199\nf 6721/5088/35200 6737/3749/35201 6736/2408/35202\nf 6737/3749/35203 6721/5088/35204 6716/1572/35205\nf 6716/1572/35206 6738/293/35207 6737/3749/35208\nf 6738/293/35209 6716/1572/35210 6715/4993/35211\nf 6715/4993/35212 6739/4160/35213 6738/293/35214\nf 6739/4160/35215 6715/4993/35216 6710/2270/35217\nf 6710/2270/35218 6740/344/35219 6739/4160/35220\nf 6740/344/35221 6710/2270/35222 6708/2673/35223\nf 6708/2673/35224 6741/3488/35225 6740/344/35226\nf 6741/3488/35227 6708/2673/35228 6709/1541/35229\nf 6709/1541/35230 6742/5378/35231 6741/3488/35232\nf 6743/3684/35233 6741/3488/35234 6742/5378/35235\nf 6742/5378/35236 6744/6269/35237 6743/3684/35238\nf 6745/560/35239 6743/3684/35240 6744/6269/35241\nf 6744/6269/35242 6746/3160/35243 6745/560/35244\nf 6747/511/35245 6745/560/35246 6746/3160/35247\nf 6746/3160/35248 6748/497/35249 6747/511/35250\nf 6745/560/35251 6747/511/35252 6749/3483/35253\nf 6749/3483/35254 6750/115/35255 6745/560/35256\nf 6743/3684/35257 6745/560/35258 6750/115/35259\nf 6750/115/35260 6751/6330/35261 6743/3684/35262\nf 6741/3488/35263 6743/3684/35264 6751/6330/35265\nf 6751/6330/35266 6740/344/35267 6741/3488/35268\nf 6752/3133/35269 6739/4160/35270 6740/344/35271\nf 6740/344/35272 6751/6330/35273 6752/3133/35274\nf 6753/575/35275 6752/3133/35276 6751/6330/35277\nf 6751/6330/35278 6750/115/35279 6753/575/35280\nf 6754/607/35281 6753/575/35282 6750/115/35283\nf 6750/115/35284 6749/3483/35285 6754/607/35286\nf 6753/575/35287 6754/607/35288 6755/2299/35289\nf 6755/2299/35290 6756/340/35291 6753/575/35292\nf 6752/3133/35293 6753/575/35294 6756/340/35295\nf 6756/340/35296 6757/5076/35297 6752/3133/35298\nf 6739/4160/35299 6752/3133/35300 6757/5076/35301\nf 6757/5076/35302 6738/293/35303 6739/4160/35304\nf 6738/293/35305 6757/5076/35306 6758/4537/35307\nf 6758/4537/35308 6737/3749/35309 6738/293/35310\nf 6759/1340/35311 6758/4537/35312 6757/5076/35313\nf 6757/5076/35314 6756/340/35315 6759/1340/35316\nf 6760/5234/35317 6759/1340/35318 6756/340/35319\nf 6756/340/35320 6755/2299/35321 6760/5234/35322\nf 6759/1340/35323 6760/5234/35324 6761/3101/35325\nf 6761/3101/35326 6762/5485/35327 6759/1340/35328\nf 6758/4537/35329 6759/1340/35330 6762/5485/35331\nf 6762/5485/35332 6763/457/35333 6758/4537/35334\nf 6737/3749/35335 6758/4537/35336 6763/457/35337\nf 6763/457/35338 6736/2408/35339 6737/3749/35340\nf 6736/2408/35341 6763/457/35342 6764/4634/35343\nf 6764/4634/35344 6735/4406/35345 6736/2408/35346\nf 6765/2636/35347 6764/4634/35348 6763/457/35349\nf 6763/457/35350 6762/5485/35351 6765/2636/35352\nf 6766/3936/35353 6765/2636/35354 6762/5485/35355\nf 6762/5485/35356 6761/3101/35357 6766/3936/35358\nf 6765/2636/35359 6766/3936/35360 6767/5497/35361\nf 6767/5497/35362 6768/2336/35363 6765/2636/35364\nf 6764/4634/35365 6765/2636/35366 6768/2336/35367\nf 6768/2336/35368 6769/4752/35369 6764/4634/35370\nf 6735/4406/35371 6764/4634/35372 6769/4752/35373\nf 6769/4752/35374 6734/5278/35375 6735/4406/35376\nf 6734/5278/35377 6769/4752/35378 6891/4066/35379\nf 6891/4066/35380 7031/4896/35381 6734/5278/35382\nf 6769/4752/35383 6768/2336/35384 6770/5236/35385\nf 6770/5236/35386 6891/5447/35387 6769/4752/35388\nf 6768/2336/35389 6767/5497/35390 6888/5570/35391\nf 6888/5570/35392 6770/2024/35393 6768/2336/35394\nf 6771/292/35395 6767/5497/35396 6766/3936/35397\nf 6766/3936/35398 6772/229/35399 6771/292/35400\nf 6772/229/35401 6766/3936/35402 6761/3101/35403\nf 6761/3101/35404 6773/2058/35405 6772/229/35406\nf 6773/2058/35407 6761/3101/35408 6760/5234/35409\nf 6760/5234/35410 6774/2009/35411 6773/2058/35412\nf 6774/2009/35413 6760/5234/35414 6755/2299/35415\nf 6755/2299/35416 6775/829/35417 6774/2009/35418\nf 6775/829/35419 6755/2299/35420 6754/607/35421\nf 6754/607/35422 6776/390/35423 6775/829/35424\nf 6776/390/35425 6754/607/35426 6749/3483/35427\nf 6749/3483/35428 6777/3959/35429 6776/390/35430\nf 6777/3959/35431 6749/3483/35432 6747/511/35433\nf 6747/511/35434 6778/6015/35435 6777/3959/35436\nf 6778/6015/35437 6747/511/35438 6748/497/35439\nf 6748/497/35440 6779/4574/35441 6778/6015/35442\nf 6780/3173/35443 6778/6015/35444 6779/4574/35445\nf 6779/4574/35446 6781/1685/35447 6780/3173/35448\nf 6782/5911/35449 6780/3173/35450 6781/1685/35451\nf 6781/1685/35452 6783/936/35453 6782/5911/35454\nf 6784/626/35455 6782/5911/35456 6783/936/35457\nf 6783/936/35458 6785/3952/35459 6784/626/35460\nf 6782/5911/35461 6784/626/35462 6786/5068/35463\nf 6786/5068/35464 6787/1470/35465 6782/5911/35466\nf 6780/3173/35467 6782/5911/35468 6787/1470/35469\nf 6787/1470/35470 6788/5189/35471 6780/3173/35472\nf 6778/6015/35473 6780/3173/35474 6788/5189/35475\nf 6788/5189/35476 6777/3959/35477 6778/6015/35478\nf 6789/2951/35479 6776/390/35480 6777/3959/35481\nf 6777/3959/35482 6788/5189/35483 6789/2951/35484\nf 6790/5726/35485 6789/2951/35486 6788/5189/35487\nf 6788/5189/35488 6787/1470/35489 6790/5726/35490\nf 6791/1022/35491 6790/5726/35492 6787/1470/35493\nf 6787/1470/35494 6786/5068/35495 6791/1022/35496\nf 6790/5726/35497 6791/1022/35498 6792/4807/35499\nf 6792/4807/35500 6793/5545/35501 6790/5726/35502\nf 6789/2951/35503 6790/5726/35504 6793/5545/35505\nf 6793/5545/35506 6794/3086/35507 6789/2951/35508\nf 6776/390/35509 6789/2951/35510 6794/3086/35511\nf 6794/3086/35512 6775/829/35513 6776/390/35514\nf 6775/829/35515 6794/3086/35516 6795/3363/35517\nf 6795/3363/35518 6774/2009/35519 6775/829/35520\nf 6796/3411/35521 6795/3363/35522 6794/3086/35523\nf 6794/3086/35524 6793/5545/35525 6796/3411/35526\nf 6797/5409/35527 6796/3411/35528 6793/5545/35529\nf 6793/5545/35530 6792/4807/35531 6797/5409/35532\nf 6796/3411/35533 6797/5409/35534 6798/2301/35535\nf 6798/2301/35536 6799/5867/35537 6796/3411/35538\nf 6795/3363/35539 6796/3411/35540 6799/5867/35541\nf 6799/5867/35542 6800/11/35543 6795/3363/35544\nf 6774/2009/35545 6795/3363/35546 6800/11/35547\nf 6800/11/35548 6773/2058/35549 6774/2009/35550\nf 6773/2058/35551 6800/11/35552 6801/4716/35553\nf 6801/4716/35554 6772/229/35555 6773/2058/35556\nf 6802/5619/35557 6801/4716/35558 6800/11/35559\nf 6800/11/35560 6799/5867/35561 6802/5619/35562\nf 6803/2797/35563 6802/5619/35564 6799/5867/35565\nf 6799/5867/35566 6798/2301/35567 6803/2797/35568\nf 6802/5619/35569 6803/2797/35570 6804/171/35571\nf 6804/171/35572 6805/3029/35573 6802/5619/35574\nf 6801/4716/35575 6802/5619/35576 6805/3029/35577\nf 6805/3029/35578 6806/2354/35579 6801/4716/35580\nf 6772/229/35581 6801/4716/35582 6806/2354/35583\nf 6806/2354/35584 6771/292/35585 6772/229/35586\nf 6771/292/35587 6806/2354/35588 6807/6466/35589\nf 6807/6466/35590 6886/6287/35591 6771/292/35592\nf 6806/2354/35593 6805/3029/35594 6808/5109/35595\nf 6808/5109/35596 6807/492/35597 6806/2354/35598\nf 6805/3029/35599 6804/171/35600 6882/3827/35601\nf 6882/3827/35602 6808/3384/35603 6805/3029/35604\nf 6809/2335/35605 6804/171/35606 6803/2797/35607\nf 6803/2797/35608 6810/4683/35609 6809/2335/35610\nf 6810/4683/35611 6803/2797/35612 6798/2301/35613\nf 6798/2301/35614 6811/2302/35615 6810/4683/35616\nf 6811/2302/35617 6798/2301/35618 6797/5409/35619\nf 6797/5409/35620 6812/3383/35621 6811/2302/35622\nf 6812/3383/35623 6797/5409/35624 6792/4807/35625\nf 6792/4807/35626 6813/622/35627 6812/3383/35628\nf 6813/622/35629 6792/4807/35630 6791/1022/35631\nf 6791/1022/35632 6814/494/35633 6813/622/35634\nf 6814/494/35635 6791/1022/35636 6786/5068/35637\nf 6786/5068/35638 6815/4906/35639 6814/494/35640\nf 6815/4906/35641 6786/5068/35642 6784/626/35643\nf 6784/626/35644 6816/5482/35645 6815/4906/35646\nf 6816/5482/35647 6784/626/35648 6785/3952/35649\nf 6785/3952/35650 6817/3954/35651 6816/5482/35652\nf 6818/4485/35653 6816/5482/35654 6817/3954/35655\nf 6817/3954/35656 6819/4620/35657 6818/4485/35658\nf 6820/2445/35659 6818/4485/35660 6819/4620/35661\nf 6819/4620/35662 6821/4219/35663 6820/2445/35664\nf 6822/3208/35665 6820/2445/35666 6821/4219/35667\nf 6821/4219/35668 6823/5631/35669 6822/3208/35670\nf 6820/2445/35671 6822/3208/35672 6824/551/35673\nf 6824/551/35674 6825/4558/35675 6820/2445/35676\nf 6818/4485/35677 6820/2445/35678 6825/4558/35679\nf 6825/4558/35680 6826/2728/35681 6818/4485/35682\nf 6816/5482/35683 6818/4485/35684 6826/2728/35685\nf 6826/2728/35686 6815/4906/35687 6816/5482/35688\nf 6827/2140/35689 6814/494/35690 6815/4906/35691\nf 6815/4906/35692 6826/2728/35693 6827/2140/35694\nf 6828/280/35695 6827/2140/35696 6826/2728/35697\nf 6826/2728/35698 6825/4558/35699 6828/280/35700\nf 6825/4558/35701 6824/551/35702 6829/5028/35703\nf 6829/5028/35704 6828/280/35705 6825/4558/35706\nf 6828/280/35707 6829/5028/35708 6830/346/35709\nf 6830/346/35710 6831/116/35711 6828/280/35712\nf 6827/2140/35713 6828/280/35714 6831/116/35715\nf 6831/116/35716 6832/342/35717 6827/2140/35718\nf 6814/494/35719 6827/2140/35720 6832/342/35721\nf 6832/342/35722 6813/622/35723 6814/494/35724\nf 6813/622/35725 6832/342/35726 6833/531/35727\nf 6833/531/35728 6812/3383/35729 6813/622/35730\nf 6834/4424/35731 6833/531/35732 6832/342/35733\nf 6832/342/35734 6831/116/35735 6834/4424/35736\nf 6831/116/35737 6830/346/35738 6835/5204/35739\nf 6835/5204/35740 6834/4424/35741 6831/116/35742\nf 6834/4424/35743 6835/5204/35744 6836/5632/35745\nf 6836/5632/35746 6837/5851/35747 6834/4424/35748\nf 6833/531/35749 6834/4424/35750 6837/5851/35751\nf 6837/5851/35752 6838/6233/35753 6833/531/35754\nf 6812/3383/35755 6833/531/35756 6838/6233/35757\nf 6838/6233/35758 6811/2302/35759 6812/3383/35760\nf 6811/2302/35761 6838/6233/35762 6839/3424/35763\nf 6839/3424/35764 6810/4683/35765 6811/2302/35766\nf 6840/5470/35767 6839/3424/35768 6838/6233/35769\nf 6838/6233/35770 6837/5851/35771 6840/5470/35772\nf 6837/5851/35773 6836/5632/35774 6841/5024/35775\nf 6841/5024/35776 6840/5470/35777 6837/5851/35778\nf 6840/5470/35779 6841/5024/35780 6842/1230/35781\nf 6842/1230/35782 6843/1835/35783 6840/5470/35784\nf 6839/3424/35785 6840/5470/35786 6843/1835/35787\nf 6843/1835/35788 6844/5615/35789 6839/3424/35790\nf 6810/4683/35791 6839/3424/35792 6844/5615/35793\nf 6844/5615/35794 6809/2335/35795 6810/4683/35796\nf 6809/2335/35797 6844/5615/35798 6845/6411/35799\nf 6845/6411/35800 6880/2121/35801 6809/2335/35802\nf 6844/5615/35803 6843/1835/35804 6877/477/35805\nf 6877/477/35806 6845/5069/35807 6844/5615/35808\nf 6846/2781/35809 6841/5024/35810 6836/5632/35811\nf 6842/1230/35812 6841/5024/35813 6846/2781/35814\nf 6836/5632/35815 6847/3505/35816 6846/2781/35817\nf 6848/2290/35818 6847/3505/35819 6836/5632/35820\nf 6849/5046/35821 6847/3505/35822 6848/2290/35823\nf 6848/2290/35824 6850/3951/35825 6849/5046/35826\nf 6850/3951/35827 6848/2290/35828 6851/5095/35829\nf 6830/346/35830 6851/5095/35831 6848/2290/35832\nf 6852/2894/35833 6851/5095/35834 6830/346/35835\nf 6853/2475/35836 6851/5095/35837 6852/2894/35838\nf 6851/5095/35839 6853/2475/35840 6850/3951/35841\nf 6852/2894/35842 6854/2168/35843 6853/2475/35844\nf 6854/2168/35845 6852/2894/35846 6855/2281/35847\nf 6824/551/35848 6855/2281/35849 6852/2894/35850\nf 6856/842/35851 6855/2281/35852 6824/551/35853\nf 6857/2762/35854 6855/2281/35855 6856/842/35856\nf 6855/2281/35857 6857/2762/35858 6854/2168/35859\nf 6856/842/35860 6858/129/35861 6857/2762/35862\nf 6858/129/35863 6856/842/35864 6859/883/35865\nf 6823/5631/35866 6859/883/35867 6856/842/35868\nf 6856/842/35869 6822/3208/35870 6823/5631/35871\nf 6824/551/35872 6822/3208/35873 6856/842/35874\nf 6859/883/35875 6860/3379/35876 6858/129/35877\nf 6852/2894/35878 6829/5028/35879 6824/551/35880\nf 6830/346/35881 6829/5028/35882 6852/2894/35883\nf 6860/3379/35884 6859/883/35885 6861/2530/35886\nf 6861/2530/35887 6862/3720/35888 6860/3379/35889\nf 6862/3720/35890 6861/2530/35891 6863/4396/35892\nf 6864/1494/35893 6863/4396/35894 6861/2530/35895\nf 6865/5253/35896 6863/4396/35897 6864/1494/35898\nf 6866/2300/35899 6863/4396/35900 6865/5253/35901\nf 6863/4396/35902 6866/2300/35903 6862/3720/35904\nf 6865/5253/35905 6867/5575/35906 6866/2300/35907\nf 6867/5575/35908 6865/5253/35909 6868/5850/35910\nf 6869/1948/35911 6868/5850/35912 6865/5253/35913\nf 6870/2507/35914 6868/5850/35915 6869/1948/35916\nf 6871/3507/35917 6868/5850/35918 6870/2507/35919\nf 6868/5850/35920 6871/3507/35921 6867/5575/35922\nf 6870/2507/35923 6872/4883/35924 6871/3507/35925\nf 6872/4883/35926 6870/2507/35927 6873/1189/35928\nf 6874/5660/35929 6873/1189/35930 6870/2507/35931\nf 7036/4989/35932 6873/1189/35933 6874/5660/35934\nf 6875/948/35935 6873/1189/35936 7036/4989/35937\nf 6873/1189/35938 6875/948/35939 6872/4883/35940\nf 7036/4989/35941 7035/2621/35942 6875/948/35943\nf 6874/5660/35944 6876/463/35945 7036/4989/35946\nf 6877/2/35947 6876/463/35948 6874/5660/35949\nf 6874/5660/35950 6878/3880/35951 6877/2/35952\nf 6845/2597/35953 6877/2/35954 6878/3880/35955\nf 6878/3880/35956 6879/6347/35957 6845/2597/35958\nf 6880/736/35959 6845/2597/35960 6879/6347/35961\nf 6879/6347/35962 6881/4120/35963 6880/736/35964\nf 6882/4975/35965 6880/736/35966 6881/4120/35967\nf 6881/4120/35968 6883/295/35969 6882/4975/35970\nf 6808/5429/35971 6882/4975/35972 6883/295/35973\nf 6883/295/35974 6884/2877/35975 6808/5429/35976\nf 6807/708/35977 6808/5429/35978 6884/2877/35979\nf 6884/2877/35980 6885/3786/35981 6807/708/35982\nf 6886/4091/35983 6807/708/35984 6885/3786/35985\nf 6885/3786/35986 6887/4454/35987 6886/4091/35988\nf 6888/4648/35989 6886/4091/35990 6887/4454/35991\nf 6887/4454/35992 6889/5473/35993 6888/4648/35994\nf 6770/3976/35995 6888/4648/35996 6889/5473/35997\nf 6889/5473/35998 6890/217/35999 6770/3976/36000\nf 6891/543/36001 6770/3976/36002 6890/217/36003\nf 6890/217/36004 6892/4432/36005 6891/543/36006\nf 7031/1139/36007 6891/543/36008 6892/4432/36009\nf 6892/4432/36010 6893/3519/36011 7031/1139/36012\nf 6733/6384/36013 7031/1139/36014 6893/3519/36015\nf 6893/3519/36016 6894/1806/36017 6733/6384/36018\nf 6731/693/36019 6733/6384/36020 6894/1806/36021\nf 6894/1806/36022 6895/4621/36023 6731/693/36024\nf 6732/1547/36025 6731/693/36026 6895/4621/36027\nf 6895/4621/36028 6896/4613/36029 6732/1547/36030\nf 6897/1371/36031 6732/1547/36032 6896/4613/36033\nf 6896/4613/36034 6898/794/36035 6897/1371/36036\nf 6899/860/36037 6897/1371/36038 6898/794/36039\nf 6898/794/36040 6900/1076/36041 6899/860/36042\nf 6694/5269/36043 6899/860/36044 6900/1076/36045\nf 6900/1076/36046 6901/5399/36047 6694/5269/36048\nf 6693/3563/36049 6694/5269/36050 6901/5399/36051\nf 6901/5399/36052 6902/3662/36053 6693/3563/36054\nf 6692/6134/36055 6693/3563/36056 6902/3662/36057\nf 6902/3662/36058 6903/4945/36059 6692/6134/36060\nf 6904/4139/36061 6692/6134/36062 6903/4945/36063\nf 6903/4945/36064 6905/5279/36065 6904/4139/36066\nf 6906/5228/36067 6904/4139/36068 6905/5279/36069\nf 6904/4139/36070 6906/5228/36071 6907/203/36072\nf 6655/4763/36073 6907/203/36074 6906/5228/36075\nf 6906/5228/36076 6908/1212/36077 6655/4763/36078\nf 6907/203/36079 6654/5675/36080 6904/4139/36081\nf 6905/5279/36082 6909/1739/36083 6906/5228/36084\nf 6908/1212/36085 6906/5228/36086 6909/1739/36087\nf 6909/1739/36088 6910/5998/36089 6908/1212/36090\nf 6911/3320/36091 6908/1212/36092 6910/5998/36093\nf 6910/5998/36094 6912/3409/36095 6911/3320/36096\nf 6912/3409/36097 6910/5998/36098 6913/1562/36099\nf 6913/1562/36100 6914/50/36101 6912/3409/36102\nf 6915/3537/36103 6913/1562/36104 6910/5998/36105\nf 6910/5998/36106 6909/1739/36107 6915/3537/36108\nf 6916/5089/36109 6915/3537/36110 6909/1739/36111\nf 6909/1739/36112 6905/5279/36113 6916/5089/36114\nf 6915/3537/36115 6916/5089/36116 6917/2933/36117\nf 6917/2933/36118 6918/4717/36119 6915/3537/36120\nf 6913/1562/36121 6915/3537/36122 6918/4717/36123\nf 6918/4717/36124 6919/2141/36125 6913/1562/36126\nf 6914/50/36127 6913/1562/36128 6919/2141/36129\nf 6919/2141/36130 6920/4987/36131 6914/50/36132\nf 6920/4987/36133 6919/2141/36134 6921/3517/36135\nf 6921/3517/36136 6922/940/36137 6920/4987/36138\nf 6923/4792/36139 6921/3517/36140 6919/2141/36141\nf 6919/2141/36142 6918/4717/36143 6923/4792/36144\nf 6924/4958/36145 6923/4792/36146 6918/4717/36147\nf 6918/4717/36148 6917/2933/36149 6924/4958/36150\nf 6923/4792/36151 6924/4958/36152 6925/6389/36153\nf 6925/6389/36154 6926/1804/36155 6923/4792/36156\nf 6921/3517/36157 6923/4792/36158 6926/1804/36159\nf 6926/1804/36160 6927/2927/36161 6921/3517/36162\nf 6922/940/36163 6921/3517/36164 6927/2927/36165\nf 6927/2927/36166 6928/2929/36167 6922/940/36168\nf 6928/2929/36169 6927/2927/36170 6929/2881/36171\nf 6929/2881/36172 6930/496/36173 6928/2929/36174\nf 6931/6303/36175 6929/2881/36176 6927/2927/36177\nf 6927/2927/36178 6926/1804/36179 6931/6303/36180\nf 6932/6177/36181 6931/6303/36182 6926/1804/36183\nf 6926/1804/36184 6925/6389/36185 6932/6177/36186\nf 6931/6303/36187 6932/6177/36188 6629/3835/36189\nf 6629/3835/36190 6627/1559/36191 6931/6303/36192\nf 6929/2881/36193 6931/6303/36194 6627/1559/36195\nf 6627/1559/36196 6623/1504/36197 6929/2881/36198\nf 6930/496/36199 6929/2881/36200 6623/1504/36201\nf 6623/1504/36202 6624/965/36203 6930/496/36204\nf 6933/3113/36205 6925/6389/36206 6924/4958/36207\nf 6924/4958/36208 6934/5903/36209 6933/3113/36210\nf 6934/5903/36211 6924/4958/36212 6917/2933/36213\nf 6917/2933/36214 6935/4311/36215 6934/5903/36216\nf 6935/4311/36217 6917/2933/36218 6916/5089/36219\nf 6916/5089/36220 6936/833/36221 6935/4311/36222\nf 6936/833/36223 6916/5089/36224 6905/5279/36225\nf 6905/5279/36226 6903/4945/36227 6936/833/36228\nf 6937/2025/36229 6936/833/36230 6903/4945/36231\nf 6903/4945/36232 6902/3662/36233 6937/2025/36234\nf 6938/2870/36235 6937/2025/36236 6902/3662/36237\nf 6902/3662/36238 6901/5399/36239 6938/2870/36240\nf 6939/4288/36241 6938/2870/36242 6901/5399/36243\nf 6901/5399/36244 6900/1076/36245 6939/4288/36246\nf 6938/2870/36247 6939/4288/36248 6940/5430/36249\nf 6940/5430/36250 6941/3463/36251 6938/2870/36252\nf 6937/2025/36253 6938/2870/36254 6941/3463/36255\nf 6941/3463/36256 6942/5811/36257 6937/2025/36258\nf 6936/833/36259 6937/2025/36260 6942/5811/36261\nf 6942/5811/36262 6935/4311/36263 6936/833/36264\nf 6943/2204/36265 6934/5903/36266 6935/4311/36267\nf 6935/4311/36268 6942/5811/36269 6943/2204/36270\nf 6944/2497/36271 6943/2204/36272 6942/5811/36273\nf 6942/5811/36274 6941/3463/36275 6944/2497/36276\nf 6945/1051/36277 6944/2497/36278 6941/3463/36279\nf 6941/3463/36280 6940/5430/36281 6945/1051/36282\nf 6944/2497/36283 6945/1051/36284 6946/371/36285\nf 6946/371/36286 6947/4315/36287 6944/2497/36288\nf 6943/2204/36289 6944/2497/36290 6947/4315/36291\nf 6947/4315/36292 6948/2400/36293 6943/2204/36294\nf 6934/5903/36295 6943/2204/36296 6948/2400/36297\nf 6948/2400/36298 6933/3113/36299 6934/5903/36300\nf 6933/3113/36301 6948/2400/36302 6949/3530/36303\nf 6949/3530/36304 6950/3322/36305 6933/3113/36306\nf 6925/6389/36307 6933/3113/36308 6950/3322/36309\nf 6950/3322/36310 6932/6177/36311 6925/6389/36312\nf 6951/2496/36313 6949/3530/36314 6948/2400/36315\nf 6948/2400/36316 6947/4315/36317 6951/2496/36318\nf 6952/5649/36319 6951/2496/36320 6947/4315/36321\nf 6947/4315/36322 6946/371/36323 6952/5649/36324\nf 6951/2496/36325 6952/5649/36326 6668/2727/36327\nf 6668/2727/36328 6666/3162/36329 6951/2496/36330\nf 6949/3530/36331 6951/2496/36332 6666/3162/36333\nf 6666/3162/36334 6664/2604/36335 6949/3530/36336\nf 6950/3322/36337 6949/3530/36338 6664/2604/36339\nf 6664/2604/36340 6662/1385/36341 6950/3322/36342\nf 6932/6177/36343 6950/3322/36344 6662/1385/36345\nf 6662/1385/36346 6629/3835/36347 6932/6177/36348\nf 6953/3839/36349 6946/371/36350 6945/1051/36351\nf 6945/1051/36352 6954/66/36353 6953/3839/36354\nf 6954/66/36355 6945/1051/36356 6940/5430/36357\nf 6940/5430/36358 6955/1832/36359 6954/66/36360\nf 6955/1832/36361 6940/5430/36362 6939/4288/36363\nf 6939/4288/36364 6956/5910/36365 6955/1832/36366\nf 6956/5910/36367 6939/4288/36368 6900/1076/36369\nf 6900/1076/36370 6898/794/36371 6956/5910/36372\nf 6957/6432/36373 6956/5910/36374 6898/794/36375\nf 6898/794/36376 6896/4613/36377 6957/6432/36378\nf 6958/1856/36379 6957/6432/36380 6896/4613/36381\nf 6896/4613/36382 6895/4621/36383 6958/1856/36384\nf 6959/4988/36385 6958/1856/36386 6895/4621/36387\nf 6895/4621/36388 6894/1806/36389 6959/4988/36390\nf 6958/1856/36391 6959/4988/36392 6960/5227/36393\nf 6960/5227/36394 6961/1963/36395 6958/1856/36396\nf 6957/6432/36397 6958/1856/36398 6961/1963/36399\nf 6961/1963/36400 6962/2134/36401 6957/6432/36402\nf 6956/5910/36403 6957/6432/36404 6962/2134/36405\nf 6962/2134/36406 6955/1832/36407 6956/5910/36408\nf 6963/5580/36409 6954/66/36410 6955/1832/36411\nf 6955/1832/36412 6962/2134/36413 6963/5580/36414\nf 6964/1773/36415 6963/5580/36416 6962/2134/36417\nf 6962/2134/36418 6961/1963/36419 6964/1773/36420\nf 6965/1923/36421 6964/1773/36422 6961/1963/36423\nf 6961/1963/36424 6960/5227/36425 6965/1923/36426\nf 6964/1773/36427 6965/1923/36428 6966/1029/36429\nf 6966/1029/36430 6967/5559/36431 6964/1773/36432\nf 6963/5580/36433 6964/1773/36434 6967/5559/36435\nf 6967/5559/36436 6968/464/36437 6963/5580/36438\nf 6954/66/36439 6963/5580/36440 6968/464/36441\nf 6968/464/36442 6953/3839/36443 6954/66/36444\nf 6953/3839/36445 6968/464/36446 6969/2202/36447\nf 6969/2202/36448 6970/4992/36449 6953/3839/36450\nf 6946/371/36451 6953/3839/36452 6970/4992/36453\nf 6970/4992/36454 6952/5649/36455 6946/371/36456\nf 6971/2712/36457 6969/2202/36458 6968/464/36459\nf 6968/464/36460 6967/5559/36461 6971/2712/36462\nf 6972/2326/36463 6971/2712/36464 6967/5559/36465\nf 6967/5559/36466 6966/1029/36467 6972/2326/36468\nf 6971/2712/36469 6972/2326/36470 6709/1541/36471\nf 6709/1541/36472 6707/5119/36473 6971/2712/36474\nf 6969/2202/36475 6971/2712/36476 6707/5119/36477\nf 6707/5119/36478 6705/2110/36479 6969/2202/36480\nf 6970/4992/36481 6969/2202/36482 6705/2110/36483\nf 6705/2110/36484 6703/790/36485 6970/4992/36486\nf 6952/5649/36487 6970/4992/36488 6703/790/36489\nf 6703/790/36490 6668/2727/36491 6952/5649/36492\nf 6973/1201/36493 6966/1029/36494 6965/1923/36495\nf 6965/1923/36496 6974/6456/36497 6973/1201/36498\nf 6974/6456/36499 6965/1923/36500 6960/5227/36501\nf 6960/5227/36502 6975/5613/36503 6974/6456/36504\nf 6975/5613/36505 6960/5227/36506 6959/4988/36507\nf 6959/4988/36508 6976/5291/36509 6975/5613/36510\nf 6976/5291/36511 6959/4988/36512 6894/1806/36513\nf 6894/1806/36514 6893/3519/36515 6976/5291/36516\nf 6977/3518/36517 6976/5291/36518 6893/3519/36519\nf 6893/3519/36520 6892/4432/36521 6977/3518/36522\nf 6978/6290/36523 6977/3518/36524 6892/4432/36525\nf 6892/4432/36526 6890/217/36527 6978/6290/36528\nf 6979/459/36529 6978/6290/36530 6890/217/36531\nf 6890/217/36532 6889/5473/36533 6979/459/36534\nf 6978/6290/36535 6979/459/36536 6980/5056/36537\nf 6980/5056/36538 6981/5073/36539 6978/6290/36540\nf 6977/3518/36541 6978/6290/36542 6981/5073/36543\nf 6981/5073/36544 6982/4182/36545 6977/3518/36546\nf 6976/5291/36547 6977/3518/36548 6982/4182/36549\nf 6982/4182/36550 6975/5613/36551 6976/5291/36552\nf 6983/2994/36553 6974/6456/36554 6975/5613/36555\nf 6975/5613/36556 6982/4182/36557 6983/2994/36558\nf 6984/1468/36559 6983/2994/36560 6982/4182/36561\nf 6982/4182/36562 6981/5073/36563 6984/1468/36564\nf 6985/3812/36565 6984/1468/36566 6981/5073/36567\nf 6981/5073/36568 6980/5056/36569 6985/3812/36570\nf 6984/1468/36571 6985/3812/36572 6986/51/36573\nf 6986/51/36574 6987/4935/36575 6984/1468/36576\nf 6983/2994/36577 6984/1468/36578 6987/4935/36579\nf 6987/4935/36580 6988/3716/36581 6983/2994/36582\nf 6974/6456/36583 6983/2994/36584 6988/3716/36585\nf 6988/3716/36586 6973/1201/36587 6974/6456/36588\nf 6973/1201/36589 6988/3716/36590 6989/5039/36591\nf 6989/5039/36592 6990/347/36593 6973/1201/36594\nf 6966/1029/36595 6973/1201/36596 6990/347/36597\nf 6990/347/36598 6972/2326/36599 6966/1029/36600\nf 6991/679/36601 6989/5039/36602 6988/3716/36603\nf 6988/3716/36604 6987/4935/36605 6991/679/36606\nf 6992/3767/36607 6991/679/36608 6987/4935/36609\nf 6987/4935/36610 6986/51/36611 6992/3767/36612\nf 6991/679/36613 6992/3767/36614 6748/497/36615\nf 6748/497/36616 6746/3160/36617 6991/679/36618\nf 6989/5039/36619 6991/679/36620 6746/3160/36621\nf 6746/3160/36622 6744/6269/36623 6989/5039/36624\nf 6990/347/36625 6989/5039/36626 6744/6269/36627\nf 6744/6269/36628 6742/5378/36629 6990/347/36630\nf 6972/2326/36631 6990/347/36632 6742/5378/36633\nf 6742/5378/36634 6709/1541/36635 6972/2326/36636\nf 6993/3988/36637 6986/51/36638 6985/3812/36639\nf 6985/3812/36640 6994/2506/36641 6993/3988/36642\nf 6994/2506/36643 6985/3812/36644 6980/5056/36645\nf 6980/5056/36646 6995/6057/36647 6994/2506/36648\nf 6995/6057/36649 6980/5056/36650 6979/459/36651\nf 6979/459/36652 6996/6139/36653 6995/6057/36654\nf 6996/6139/36655 6979/459/36656 6889/5473/36657\nf 6889/5473/36658 6887/4454/36659 6996/6139/36660\nf 6997/157/36661 6996/6139/36662 6887/4454/36663\nf 6887/4454/36664 6885/3786/36665 6997/157/36666\nf 6998/2008/36667 6997/157/36668 6885/3786/36669\nf 6885/3786/36670 6884/2877/36671 6998/2008/36672\nf 6999/2526/36673 6998/2008/36674 6884/2877/36675\nf 6884/2877/36676 6883/295/36677 6999/2526/36678\nf 6998/2008/36679 6999/2526/36680 7000/4047/36681\nf 7000/4047/36682 7001/481/36683 6998/2008/36684\nf 6997/157/36685 6998/2008/36686 7001/481/36687\nf 7001/481/36688 7002/6545/36689 6997/157/36690\nf 6996/6139/36691 6997/157/36692 7002/6545/36693\nf 7002/6545/36694 6995/6057/36695 6996/6139/36696\nf 7003/3987/36697 6994/2506/36698 6995/6057/36699\nf 6995/6057/36700 7002/6545/36701 7003/3987/36702\nf 7004/5838/36703 7003/3987/36704 7002/6545/36705\nf 7002/6545/36706 7001/481/36707 7004/5838/36708\nf 7005/4652/36709 7004/5838/36710 7001/481/36711\nf 7001/481/36712 7000/4047/36713 7005/4652/36714\nf 7004/5838/36715 7005/4652/36716 7006/493/36717\nf 7006/493/36718 7007/22/36719 7004/5838/36720\nf 7003/3987/36721 7004/5838/36722 7007/22/36723\nf 7007/22/36724 7008/510/36725 7003/3987/36726\nf 6994/2506/36727 7003/3987/36728 7008/510/36729\nf 7008/510/36730 6993/3988/36731 6994/2506/36732\nf 6993/3988/36733 7008/510/36734 7009/5834/36735\nf 7009/5834/36736 7010/3030/36737 6993/3988/36738\nf 6986/51/36739 6993/3988/36740 7010/3030/36741\nf 7010/3030/36742 6992/3767/36743 6986/51/36744\nf 7011/5316/36745 7009/5834/36746 7008/510/36747\nf 7008/510/36748 7007/22/36749 7011/5316/36750\nf 7012/6509/36751 7011/5316/36752 7007/22/36753\nf 7007/22/36754 7006/493/36755 7012/6509/36756\nf 7011/5316/36757 7012/6509/36758 6785/3952/36759\nf 6785/3952/36760 6783/936/36761 7011/5316/36762\nf 7009/5834/36763 7011/5316/36764 6783/936/36765\nf 6783/936/36766 6781/1685/36767 7009/5834/36768\nf 7010/3030/36769 7009/5834/36770 6781/1685/36771\nf 6781/1685/36772 6779/4574/36773 7010/3030/36774\nf 6992/3767/36775 7010/3030/36776 6779/4574/36777\nf 6779/4574/36778 6748/497/36779 6992/3767/36780\nf 7013/5096/36781 7006/493/36782 7005/4652/36783\nf 7005/4652/36784 7014/3673/36785 7013/5096/36786\nf 7014/3673/36787 7005/4652/36788 7000/4047/36789\nf 7000/4047/36790 7015/4045/36791 7014/3673/36792\nf 7015/4045/36793 7000/4047/36794 6999/2526/36795\nf 6999/2526/36796 7016/137/36797 7015/4045/36798\nf 7016/137/36799 6999/2526/36800 6883/295/36801\nf 6883/295/36802 6881/4120/36803 7016/137/36804\nf 7017/4911/36805 7016/137/36806 6881/4120/36807\nf 6881/4120/36808 6879/6347/36809 7017/4911/36810\nf 7018/893/36811 7017/4911/36812 6879/6347/36813\nf 6879/6347/36814 6878/3880/36815 7018/893/36816\nf 7019/403/36817 7018/893/36818 6878/3880/36819\nf 6878/3880/36820 6874/5660/36821 7019/403/36822\nf 7018/893/36823 7019/403/36824 6869/1948/36825\nf 6869/1948/36826 7020/3778/36827 7018/893/36828\nf 7017/4911/36829 7018/893/36830 7020/3778/36831\nf 7020/3778/36832 7021/3486/36833 7017/4911/36834\nf 7016/137/36835 7017/4911/36836 7021/3486/36837\nf 7021/3486/36838 7015/4045/36839 7016/137/36840\nf 7022/2402/36841 7014/3673/36842 7015/4045/36843\nf 7015/4045/36844 7021/3486/36845 7022/2402/36846\nf 7023/2553/36847 7022/2402/36848 7021/3486/36849\nf 7021/3486/36850 7020/3778/36851 7023/2553/36852\nf 7020/3778/36853 6869/1948/36854 7024/5252/36855\nf 7024/5252/36856 7023/2553/36857 7020/3778/36858\nf 7023/2553/36859 7024/5252/36860 6864/1494/36861\nf 6864/1494/36862 7025/1126/36863 7023/2553/36864\nf 7022/2402/36865 7023/2553/36866 7025/1126/36867\nf 7025/1126/36868 7026/1087/36869 7022/2402/36870\nf 7014/3673/36871 7022/2402/36872 7026/1087/36873\nf 7026/1087/36874 7013/5096/36875 7014/3673/36876\nf 7013/5096/36877 7026/1087/36878 7027/5876/36879\nf 7027/5876/36880 7028/1469/36881 7013/5096/36882\nf 7006/493/36883 7013/5096/36884 7028/1469/36885\nf 7028/1469/36886 7012/6509/36887 7006/493/36888\nf 7029/5304/36889 7027/5876/36890 7026/1087/36891\nf 7026/1087/36892 7025/1126/36893 7029/5304/36894\nf 7025/1126/36895 6864/1494/36896 7030/5074/36897\nf 7030/5074/36898 7029/5304/36899 7025/1126/36900\nf 7029/5304/36901 7030/5074/36902 6823/5631/36903\nf 6823/5631/36904 6821/4219/36905 7029/5304/36906\nf 7027/5876/36907 7029/5304/36908 6821/4219/36909\nf 6821/4219/36910 6819/4620/36911 7027/5876/36912\nf 7028/1469/36913 7027/5876/36914 6819/4620/36915\nf 6819/4620/36916 6817/3954/36917 7028/1469/36918\nf 7012/6509/36919 7028/1469/36920 6817/3954/36921\nf 6817/3954/36922 6785/3952/36923 7012/6509/36924\nf 6864/1494/36925 7024/5252/36926 6865/5253/36927\nf 6865/5253/36928 7024/5252/36929 6869/1948/36930\nf 6859/883/36931 6823/5631/36932 7030/5074/36933\nf 7030/5074/36934 6861/2530/36935 6859/883/36936\nf 6861/2530/36937 7030/5074/36938 6864/1494/36939\nf 6869/1948/36940 7019/403/36941 6870/2507/36942\nf 6870/2507/36943 7019/403/36944 6874/5660/36945\nf 7084/1788/36946 6655/4763/36947 6908/1212/36948\nf 6908/1212/36949 6911/2384/36950 7084/1788/36951\nf 6897/6350/36952 6899/6247/36953 6688/3821/36954\nf 6688/3821/36955 6695/307/36956 6897/6350/36957\nf 7031/345/36958 6733/308/36959 6728/3717/36960\nf 6728/3717/36961 6734/5278/36962 7031/345/36963\nf 6886/1290/36964 6888/2869/36965 6767/5497/36966\nf 6767/5497/36967 6771/292/36968 6886/1290/36969\nf 6880/1756/36970 6882/39/36971 6804/171/36972\nf 6804/171/36973 6809/2335/36974 6880/1756/36975\nf 6843/1835/36976 6842/6365/36977 6876/3558/36978\nf 6876/3558/36979 6877/2476/36980 6843/1835/36981\nf 6848/2290/36982 6835/5204/36983 6830/346/36984\nf 6836/5632/36985 6835/5204/36986 6848/2290/36987\nf 7032/266/36988 6846/2781/36989 6847/3505/36990\nf 6847/3505/36991 6849/5046/36992 7032/266/36993\nf 6846/2781/36994 7032/266/36995 7033/2451/36996\nf 7033/2451/36997 7034/3984/36998 6846/2781/36999\nf 6846/2781/37000 7034/3984/37001 6842/1230/37002\nf 6842/1230/37003 7034/3984/37004 7036/5596/37005\nf 7036/5596/37006 6876/5157/37007 6842/1230/37008\nf 7034/3984/37009 7033/2451/37010 7035/5268/37011\nf 7035/5268/37012 7036/4342/37013 7034/3984/37014\nf 7037/135/37015 7039/5043/37016 7038/1275/37017\nf 7038/1275/37018 7040/5158/37019 7037/135/37020\nf 7041/677/37021 7037/135/37022 7040/5158/37023\nf 7040/5158/37024 7042/3250/37025 7041/677/37026\nf 7041/677/37027 7042/3250/37028 6624/965/37029\nf 6624/965/37030 6622/274/37031 7041/677/37032\nf 7041/677/37033 6622/274/37034 6633/4002/37035\nf 6633/4002/37036 7043/5965/37037 7041/677/37038\nf 7037/135/37039 7041/677/37040 7043/5965/37041\nf 7043/5965/37042 7044/5140/37043 7037/135/37044\nf 7039/5043/37045 7037/135/37046 7044/5140/37047\nf 7044/5140/37048 7045/5617/37049 7039/5043/37050\nf 7045/5617/37051 7044/5140/37052 7046/4962/37053\nf 7046/4962/37054 7047/4089/37055 7045/5617/37056\nf 7048/3342/37057 7046/4962/37058 7044/5140/37059\nf 7044/5140/37060 7043/5965/37061 7048/3342/37062\nf 7043/5965/37063 6633/4002/37064 6635/2355/37065\nf 6635/2355/37066 7048/3342/37067 7043/5965/37068\nf 7048/3342/37069 6635/2355/37070 6641/4425/37071\nf 6641/4425/37072 7049/6115/37073 7048/3342/37074\nf 7046/4962/37075 7048/3342/37076 7049/6115/37077\nf 7049/6115/37078 7050/3824/37079 7046/4962/37080\nf 7047/4089/37081 7046/4962/37082 7050/3824/37083\nf 7050/3824/37084 7051/354/37085 7047/4089/37086\nf 7051/354/37087 7050/3824/37088 7052/245/37089\nf 7052/245/37090 7053/1517/37091 7051/354/37092\nf 7054/3405/37093 7052/245/37094 7050/3824/37095\nf 7050/3824/37096 7049/6115/37097 7054/3405/37098\nf 7049/6115/37099 6641/4425/37100 6643/6482/37101\nf 6643/6482/37102 7054/3405/37103 7049/6115/37104\nf 7054/3405/37105 6643/6482/37106 6649/5251/37107\nf 6649/5251/37108 7055/2961/37109 7054/3405/37110\nf 7052/245/37111 7054/3405/37112 7055/2961/37113\nf 7055/2961/37114 7056/549/37115 7052/245/37116\nf 7053/1517/37117 7052/245/37118 7056/549/37119\nf 7056/549/37120 7057/1276/37121 7053/1517/37122\nf 7057/1276/37123 7056/549/37124 7058/2715/37125\nf 7058/2715/37126 7059/1027/37127 7057/1276/37128\nf 7060/623/37129 7058/2715/37130 7056/549/37131\nf 7056/549/37132 7055/2961/37133 7060/623/37134\nf 7055/2961/37135 6649/5251/37136 6651/4728/37137\nf 6651/4728/37138 7060/623/37139 7055/2961/37140\nf 7060/623/37141 6651/4728/37142 7084/738/37143\nf 7084/738/37144 7067/3395/37145 7060/623/37146\nf 7058/2715/37147 7060/623/37148 7067/3395/37149\nf 7067/3395/37150 7061/1060/37151 7058/2715/37152\nf 7059/1027/37153 7058/2715/37154 7061/1060/37155\nf 7061/1060/37156 7062/1209/37157 7059/1027/37158\nf 7063/1118/37159 7064/1519/37160 7062/889/37161\nf 7062/889/37162 7061/2873/37163 7063/1118/37164\nf 7064/1519/37165 7063/1118/37166 7065/2754/37167\nf 7066/3357/37168 7065/2754/37169 7063/1118/37170\nf 7063/1118/37171 7085/6387/37172 7066/3357/37173\nf 7085/6387/37174 7063/1118/37175 7061/2306/37176\nf 7061/2306/37177 7067/4246/37178 7085/6387/37179\nf 6912/3409/37180 7066/3357/37181 7085/6387/37182\nf 7085/6387/37183 6911/3320/37184 6912/3409/37185\nf 7065/2754/37186 7068/1884/37187 7064/1519/37188\nf 7068/1884/37189 7065/2754/37190 7069/198/37191\nf 7069/198/37192 7070/2043/37193 7068/1884/37194\nf 7071/5040/37195 7069/198/37196 7065/2754/37197\nf 7065/2754/37198 7066/3357/37199 7071/5040/37200\nf 7066/3357/37201 6912/3409/37202 6914/50/37203\nf 6914/50/37204 7071/5040/37205 7066/3357/37206\nf 7071/5040/37207 6914/50/37208 6920/4987/37209\nf 6920/4987/37210 7072/3632/37211 7071/5040/37212\nf 7069/198/37213 7071/5040/37214 7072/3632/37215\nf 7072/3632/37216 7073/5321/37217 7069/198/37218\nf 7070/2043/37219 7069/198/37220 7073/5321/37221\nf 7073/5321/37222 7074/2187/37223 7070/2043/37224\nf 7074/2187/37225 7073/5321/37226 7075/4963/37227\nf 7075/4963/37228 7076/1969/37229 7074/2187/37230\nf 7077/5178/37231 7075/4963/37232 7073/5321/37233\nf 7073/5321/37234 7072/3632/37235 7077/5178/37236\nf 7072/3632/37237 6920/4987/37238 6922/940/37239\nf 6922/940/37240 7077/5178/37241 7072/3632/37242\nf 7077/5178/37243 6922/940/37244 6928/2929/37245\nf 6928/2929/37246 7078/4375/37247 7077/5178/37248\nf 7075/4963/37249 7077/5178/37250 7078/4375/37251\nf 7078/4375/37252 7079/1789/37253 7075/4963/37254\nf 7076/1969/37255 7075/4963/37256 7079/1789/37257\nf 7079/1789/37258 7080/1682/37259 7076/1969/37260\nf 7080/1682/37261 7079/1789/37262 7081/1875/37263\nf 7081/1875/37264 7082/1369/37265 7080/1682/37266\nf 7083/2104/37267 7081/1875/37268 7079/1789/37269\nf 7079/1789/37270 7078/4375/37271 7083/2104/37272\nf 7078/4375/37273 6928/2929/37274 6930/496/37275\nf 6930/496/37276 7083/2104/37277 7078/4375/37278\nf 7083/2104/37279 6930/496/37280 6624/965/37281\nf 6624/965/37282 7042/3250/37283 7083/2104/37284\nf 7081/1875/37285 7083/2104/37286 7042/3250/37287\nf 7042/3250/37288 7040/5158/37289 7081/1875/37290\nf 7082/1369/37291 7081/1875/37292 7040/5158/37293\nf 7040/5158/37294 7038/1275/37295 7082/1369/37296\nf 7067/3879/37297 7084/6361/37298 6911/3320/37299\nf 6911/3320/37300 7085/4682/37301 7067/3879/37302\nf 7086/2810/37303 7088/5005/37304 7087/138/37305\nf 7087/138/37306 7089/999/37307 7086/2810/37308\nf 7090/1599/37309 7089/999/37310 7087/138/37311\nf 7087/138/37312 7091/569/37313 7090/1599/37314\nf 7092/5211/37315 7090/1599/37316 7091/569/37317\nf 7091/569/37318 7093/3831/37319 7092/5211/37320\nf 7090/1599/37321 7092/5211/37322 7094/649/37323\nf 7094/649/37324 7095/5479/37325 7090/1599/37326\nf 7089/999/37327 7090/1599/37328 7095/5479/37329\nf 7095/5479/37330 7096/2291/37331 7089/999/37332\nf 7086/2810/37333 7089/999/37334 7096/2291/37335\nf 7096/2291/37336 7097/4457/37337 7086/2810/37338\nf 7097/4457/37339 7096/2291/37340 7098/5481/37341\nf 7098/5481/37342 7099/1450/37343 7097/4457/37344\nf 7100/1802/37345 7098/5481/37346 7096/2291/37347\nf 7096/2291/37348 7095/5479/37349 7100/1802/37350\nf 7101/2716/37351 7100/1802/37352 7095/5479/37353\nf 7095/5479/37354 7094/649/37355 7101/2716/37356\nf 7100/1802/37357 7101/2716/37358 7102/4502/37359\nf 7102/4502/37360 7103/172/37361 7100/1802/37362\nf 7098/5481/37363 7100/1802/37364 7103/172/37365\nf 7103/172/37366 7104/6316/37367 7098/5481/37368\nf 7099/1450/37369 7098/5481/37370 7104/6316/37371\nf 7104/6316/37372 7105/2713/37373 7099/1450/37374\nf 7105/2713/37375 7104/6316/37376 7106/6417/37377\nf 7106/6417/37378 7107/1563/37379 7105/2713/37380\nf 7108/2450/37381 7106/6417/37382 7104/6316/37383\nf 7104/6316/37384 7103/172/37385 7108/2450/37386\nf 7109/5961/37387 7108/2450/37388 7103/172/37389\nf 7103/172/37390 7102/4502/37391 7109/5961/37392\nf 7108/2450/37393 7109/5961/37394 7110/1885/37395\nf 7110/1885/37396 7111/136/37397 7108/2450/37398\nf 7106/6417/37399 7108/2450/37400 7111/136/37401\nf 7111/136/37402 7112/5284/37403 7106/6417/37404\nf 7107/1563/37405 7106/6417/37406 7112/5284/37407\nf 7112/5284/37408 7113/6135/37409 7107/1563/37410\nf 7113/6135/37411 7112/5284/37412 7114/5322/37413\nf 7114/5322/37414 7115/2332/37415 7113/6135/37416\nf 7116/3832/37417 7114/5322/37418 7112/5284/37419\nf 7112/5284/37420 7111/136/37421 7116/3832/37422\nf 7117/4011/37423 7116/3832/37424 7111/136/37425\nf 7111/136/37426 7110/1885/37427 7117/4011/37428\nf 7116/3832/37429 7117/4011/37430 7118/4520/37431\nf 7118/4520/37432 7149/2044/37433 7116/3832/37434\nf 7114/5322/37435 7116/3832/37436 7149/2044/37437\nf 7149/2044/37438 7146/1241/37439 7114/5322/37440\nf 7115/2332/37441 7114/5322/37442 7146/1241/37443\nf 7146/1241/37444 7544/4990/37445 7115/2332/37446\nf 7119/5736/37447 7107/1563/37448 7113/6135/37449\nf 7107/1563/37450 7119/5736/37451 7120/5446/37452\nf 7121/5205/37453 7120/5446/37454 7119/5736/37455\nf 7120/5446/37456 7121/5205/37457 7122/5280/37458\nf 7122/5280/37459 7123/1740/37460 7120/5446/37461\nf 7123/1740/37462 7122/5280/37463 7124/779/37464\nf 7124/779/37465 7125/5933/37466 7123/1740/37467\nf 7125/5933/37468 7124/779/37469 7126/5792/37470\nf 7126/5792/37471 7127/1683/37472 7125/5933/37473\nf 7128/3559/37474 7127/1683/37475 7126/5792/37476\nf 7126/5792/37477 7129/1607/37478 7128/3559/37479\nf 7127/1683/37480 7128/3559/37481 7088/5005/37482\nf 7088/5005/37483 7086/2810/37484 7127/1683/37485\nf 7097/4457/37486 7125/5933/37487 7127/1683/37488\nf 7127/1683/37489 7086/2810/37490 7097/4457/37491\nf 7125/5933/37492 7097/4457/37493 7099/1450/37494\nf 7099/1450/37495 7123/1740/37496 7125/5933/37497\nf 7105/2713/37498 7120/5446/37499 7123/1740/37500\nf 7123/1740/37501 7099/1450/37502 7105/2713/37503\nf 7119/5736/37504 7130/968/37505 7121/5205/37506\nf 7120/5446/37507 7105/2713/37508 7107/1563/37509\nf 7088/5005/37510 7128/3559/37511 7131/6332/37512\nf 7131/6332/37513 7132/5254/37514 7088/5005/37515\nf 7087/138/37516 7088/5005/37517 7132/5254/37518\nf 7132/5254/37519 7133/966/37520 7087/138/37521\nf 7133/966/37522 7132/5254/37523 7134/1821/37524\nf 7134/1821/37525 7135/669/37526 7133/966/37527\nf 7135/669/37528 7134/1821/37529 7136/4385/37530\nf 7136/4385/37531 7137/3240/37532 7135/669/37533\nf 7137/3240/37534 7136/4385/37535 7138/3744/37536\nf 7138/3744/37537 7139/6145/37538 7137/3240/37539\nf 7139/6145/37540 7138/3744/37541 7140/6104/37542\nf 7140/6104/37543 7141/64/37544 7139/6145/37545\nf 7141/64/37546 7140/6104/37547 7142/1438/37548\nf 7142/1438/37549 7143/2105/37550 7141/64/37551\nf 7143/2105/37552 7142/1438/37553 7144/5432/37554\nf 7144/5432/37555 7145/2246/37556 7143/2105/37557\nf 7145/2246/37558 7144/5432/37559 7544/4279/37560\nf 7544/4279/37561 7146/4397/37562 7145/2246/37563\nf 7147/5636/37564 7143/2105/37565 7145/2246/37566\nf 7145/2246/37567 7148/4157/37568 7147/5636/37569\nf 7148/4157/37570 7145/2246/37571 7146/279/37572\nf 7146/279/37573 7149/3045/37574 7148/4157/37575\nf 7583/5999/37576 7148/4157/37577 7149/3045/37578\nf 7149/3045/37579 7118/1520/37580 7583/5999/37581\nf 7148/4157/37582 7583/5999/37583 7150/3718/37584\nf 7150/3718/37585 7147/5636/37586 7148/4157/37587\nf 7151/1180/37588 7141/64/37589 7143/2105/37590\nf 7143/2105/37591 7147/5636/37592 7151/1180/37593\nf 7152/1992/37594 7151/1180/37595 7147/5636/37596\nf 7147/5636/37597 7150/3718/37598 7152/1992/37599\nf 7151/1180/37600 7152/1992/37601 7153/1723/37602\nf 7153/1723/37603 7154/4061/37604 7151/1180/37605\nf 7141/64/37606 7151/1180/37607 7154/4061/37608\nf 7154/4061/37609 7139/6145/37610 7141/64/37611\nf 7139/6145/37612 7154/4061/37613 7155/2930/37614\nf 7155/2930/37615 7137/3240/37616 7139/6145/37617\nf 7156/3531/37618 7155/2930/37619 7154/4061/37620\nf 7154/4061/37621 7153/1723/37622 7156/3531/37623\nf 7155/2930/37624 7156/3531/37625 7157/117/37626\nf 7157/117/37627 7158/6415/37628 7155/2930/37629\nf 7137/3240/37630 7155/2930/37631 7158/6415/37632\nf 7158/6415/37633 7135/669/37634 7137/3240/37635\nf 7135/669/37636 7158/6415/37637 7159/5934/37638\nf 7159/5934/37639 7133/966/37640 7135/669/37641\nf 7160/5895/37642 7159/5934/37643 7158/6415/37644\nf 7158/6415/37645 7157/117/37646 7160/5895/37647\nf 7159/5934/37648 7160/5895/37649 7093/3831/37650\nf 7093/3831/37651 7091/569/37652 7159/5934/37653\nf 7133/966/37654 7159/5934/37655 7091/569/37656\nf 7091/569/37657 7087/138/37658 7133/966/37659\nf 7161/4773/37660 7156/3531/37661 7153/1723/37662\nf 7153/1723/37663 7162/5288/37664 7161/4773/37665\nf 7162/5288/37666 7153/1723/37667 7152/1992/37668\nf 7152/1992/37669 7163/5071/37670 7162/5288/37671\nf 7163/5071/37672 7152/1992/37673 7150/3718/37674\nf 7150/3718/37675 7164/3466/37676 7163/5071/37677\nf 7164/3466/37678 7150/3718/37679 7583/5999/37680\nf 7583/5999/37681 7582/2230/37682 7164/3466/37683\nf 7165/264/37684 7164/3466/37685 7582/2230/37686\nf 7582/2230/37687 7166/355/37688 7165/264/37689\nf 7167/3280/37690 7165/264/37691 7166/355/37692\nf 7166/355/37693 7584/4681/37694 7167/3280/37695\nf 7168/5691/37696 7167/3280/37697 7584/4681/37698\nf 7584/4681/37699 7585/2286/37700 7168/5691/37701\nf 7169/1684/37702 7168/5691/37703 7585/2286/37704\nf 7585/2286/37705 7170/4001/37706 7169/1684/37707\nf 7171/3613/37708 7169/1684/37709 7170/4001/37710\nf 7170/4001/37711 7245/4/37712 7171/3613/37713\nf 7172/4755/37714 7171/3613/37715 7245/4/37716\nf 7245/4/37717 7173/4795/37718 7172/4755/37719\nf 7174/2653/37720 7172/4755/37721 7173/4795/37722\nf 7173/4795/37723 7246/4840/37724 7174/2653/37725\nf 7168/5691/37726 7169/1684/37727 7175/942/37728\nf 7175/942/37729 7176/1225/37730 7168/5691/37731\nf 7167/3280/37732 7168/5691/37733 7176/1225/37734\nf 7177/3833/37735 7175/942/37736 7169/1684/37737\nf 7169/1684/37738 7171/3613/37739 7177/3833/37740\nf 7178/2070/37741 7177/3833/37742 7171/3613/37743\nf 7171/3613/37744 7172/4755/37745 7178/2070/37746\nf 7179/1970/37747 7178/2070/37748 7172/4755/37749\nf 7172/4755/37750 7174/2653/37751 7179/1970/37752\nf 7178/2070/37753 7179/1970/37754 7180/436/37755\nf 7180/436/37756 7181/1210/37757 7178/2070/37758\nf 7177/3833/37759 7178/2070/37760 7181/1210/37761\nf 7181/1210/37762 7182/5614/37763 7177/3833/37764\nf 7175/942/37765 7177/3833/37766 7182/5614/37767\nf 7182/5614/37768 7183/4827/37769 7175/942/37770\nf 7176/1225/37771 7175/942/37772 7183/4827/37773\nf 7183/4827/37774 7184/5006/37775 7176/1225/37776\nf 7184/5006/37777 7183/4827/37778 7185/1864/37779\nf 7185/1864/37780 7186/3834/37781 7184/5006/37782\nf 7187/3412/37783 7185/1864/37784 7183/4827/37785\nf 7183/4827/37786 7182/5614/37787 7187/3412/37788\nf 7188/3743/37789 7187/3412/37790 7182/5614/37791\nf 7182/5614/37792 7181/1210/37793 7188/3743/37794\nf 7189/1709/37795 7188/3743/37796 7181/1210/37797\nf 7181/1210/37798 7180/436/37799 7189/1709/37800\nf 7188/3743/37801 7189/1709/37802 7190/2307/37803\nf 7190/2307/37804 7191/6232/37805 7188/3743/37806\nf 7187/3412/37807 7188/3743/37808 7191/6232/37809\nf 7191/6232/37810 7192/1305/37811 7187/3412/37812\nf 7185/1864/37813 7187/3412/37814 7192/1305/37815\nf 7192/1305/37816 7193/4526/37817 7185/1864/37818\nf 7186/3834/37819 7185/1864/37820 7193/4526/37821\nf 7193/4526/37822 7194/3328/37823 7186/3834/37824\nf 7194/3328/37825 7193/4526/37826 7195/4580/37827\nf 7195/4580/37828 7196/80/37829 7194/3328/37830\nf 7197/2984/37831 7195/4580/37832 7193/4526/37833\nf 7193/4526/37834 7192/1305/37835 7197/2984/37836\nf 7198/3161/37837 7197/2984/37838 7192/1305/37839\nf 7192/1305/37840 7191/6232/37841 7198/3161/37842\nf 7199/4702/37843 7198/3161/37844 7191/6232/37845\nf 7191/6232/37846 7190/2307/37847 7199/4702/37848\nf 7198/3161/37849 7199/4702/37850 7200/5323/37851\nf 7200/5323/37852 7201/6119/37853 7198/3161/37854\nf 7197/2984/37855 7198/3161/37856 7201/6119/37857\nf 7201/6119/37858 7200/5323/37859 7202/1028/37860\nf 7202/1028/37861 7203/4960/37862 7201/6119/37863\nf 7204/65/37864 7201/6119/37865 7203/4960/37866\nf 7201/6119/37867 7204/65/37868 7197/2984/37869\nf 7195/4580/37870 7197/2984/37871 7204/65/37872\nf 7203/4960/37873 7205/650/37874 7204/65/37875\nf 7206/422/37876 7204/65/37877 7205/650/37878\nf 7204/65/37879 7206/422/37880 7195/4580/37881\nf 7196/80/37882 7195/4580/37883 7206/422/37884\nf 7205/650/37885 7207/3022/37886 7206/422/37887\nf 7208/6434/37888 7206/422/37889 7207/3022/37890\nf 7206/422/37891 7208/6434/37892 7196/80/37893\nf 7207/3022/37894 7209/5618/37895 7208/6434/37896\nf 7203/4960/37897 7202/1028/37898 7210/3911/37899\nf 7210/3911/37900 7211/3516/37901 7203/4960/37902\nf 7205/650/37903 7203/4960/37904 7211/3516/37905\nf 7211/3516/37906 7212/4181/37907 7205/650/37908\nf 7207/3022/37909 7205/650/37910 7212/4181/37911\nf 7212/4181/37912 7213/4487/37913 7207/3022/37914\nf 7209/5618/37915 7207/3022/37916 7213/4487/37917\nf 7213/4487/37918 7214/2970/37919 7209/5618/37920\nf 7214/2970/37921 7213/4487/37922 7215/4280/37923\nf 7215/4280/37924 7216/3324/37925 7214/2970/37926\nf 7217/2954/37927 7215/4280/37928 7213/4487/37929\nf 7213/4487/37930 7212/4181/37931 7217/2954/37932\nf 7218/1910/37933 7217/2954/37934 7212/4181/37935\nf 7212/4181/37936 7211/3516/37937 7218/1910/37938\nf 7219/3358/37939 7218/1910/37940 7211/3516/37941\nf 7211/3516/37942 7210/3911/37943 7219/3358/37944\nf 7218/1910/37945 7219/3358/37946 7220/2598/37947\nf 7220/2598/37948 7221/5891/37949 7218/1910/37950\nf 7217/2954/37951 7218/1910/37952 7221/5891/37953\nf 7221/5891/37954 7222/3085/37955 7217/2954/37956\nf 7215/4280/37957 7217/2954/37958 7222/3085/37959\nf 7222/3085/37960 7223/4640/37961 7215/4280/37962\nf 7216/3324/37963 7215/4280/37964 7223/4640/37965\nf 7223/4640/37966 7224/329/37967 7216/3324/37968\nf 7224/329/37969 7223/4640/37970 7225/6283/37971\nf 7225/6283/37972 7226/3049/37973 7224/329/37974\nf 7227/5661/37975 7225/6283/37976 7223/4640/37977\nf 7223/4640/37978 7222/3085/37979 7227/5661/37980\nf 7228/327/37981 7227/5661/37982 7222/3085/37983\nf 7222/3085/37984 7221/5891/37985 7228/327/37986\nf 7229/1119/37987 7228/327/37988 7221/5891/37989\nf 7221/5891/37990 7220/2598/37991 7229/1119/37992\nf 7228/327/37993 7229/1119/37994 7230/1481/37995\nf 7230/1481/37996 7231/4428/37997 7228/327/37998\nf 7227/5661/37999 7228/327/38000 7231/4428/38001\nf 7231/4428/38002 7232/230/38003 7227/5661/38004\nf 7225/6283/38005 7227/5661/38006 7232/230/38007\nf 7232/230/38008 7233/323/38009 7225/6283/38010\nf 7226/3049/38011 7225/6283/38012 7233/323/38013\nf 7233/323/38014 7234/1125/38015 7226/3049/38016\nf 7234/1125/38017 7233/323/38018 7235/6261/38019\nf 7235/6261/38020 7236/246/38021 7234/1125/38022\nf 7237/4844/38023 7235/6261/38024 7233/323/38025\nf 7233/323/38026 7232/230/38027 7237/4844/38028\nf 7238/275/38029 7237/4844/38030 7232/230/38031\nf 7232/230/38032 7231/4428/38033 7238/275/38034\nf 7239/6262/38035 7238/275/38036 7231/4428/38037\nf 7231/4428/38038 7230/1481/38039 7239/6262/38040\nf 7238/275/38041 7239/6262/38042 7240/1632/38043\nf 7240/1632/38044 7241/5067/38045 7238/275/38046\nf 7237/4844/38047 7238/275/38048 7241/5067/38049\nf 7241/5067/38050 7242/1594/38051 7237/4844/38052\nf 7235/6261/38053 7237/4844/38054 7242/1594/38055\nf 7242/1594/38056 7243/3511/38057 7235/6261/38058\nf 7236/246/38059 7235/6261/38060 7243/3511/38061\nf 7243/3511/38062 7244/3321/38063 7236/246/38064\nf 7244/3321/38065 7243/3511/38066 7170/3362/38067\nf 7170/3362/38068 7585/3376/38069 7244/3321/38070\nf 7245/5235/38071 7170/3362/38072 7243/3511/38073\nf 7243/3511/38074 7242/1594/38075 7245/5235/38076\nf 7242/1594/38077 7241/5067/38078 7173/5767/38079\nf 7173/5767/38080 7245/814/38081 7242/1594/38082\nf 7241/5067/38083 7240/1632/38084 7246/6285/38085\nf 7246/6285/38086 7173/4109/38087 7241/5067/38088\nf 7247/1055/38089 7240/1632/38090 7239/6262/38091\nf 7239/6262/38092 7248/4236/38093 7247/1055/38094\nf 7248/4236/38095 7239/6262/38096 7230/1481/38097\nf 7230/1481/38098 7249/2106/38099 7248/4236/38100\nf 7249/2106/38101 7230/1481/38102 7229/1119/38103\nf 7229/1119/38104 7250/1887/38105 7249/2106/38106\nf 7250/1887/38107 7229/1119/38108 7220/2598/38109\nf 7220/2598/38110 7251/2853/38111 7250/1887/38112\nf 7251/2853/38113 7220/2598/38114 7219/3358/38115\nf 7219/3358/38116 7252/2828/38117 7251/2853/38118\nf 7252/2828/38119 7219/3358/38120 7210/3911/38121\nf 7210/3911/38122 7253/5947/38123 7252/2828/38124\nf 7253/5947/38125 7210/3911/38126 7202/1028/38127\nf 7202/1028/38128 7254/1113/38129 7253/5947/38130\nf 7254/1113/38131 7202/1028/38132 7200/5323/38133\nf 7200/5323/38134 7255/3203/38135 7254/1113/38136\nf 7256/1235/38137 7254/1113/38138 7255/3203/38139\nf 7255/3203/38140 7257/2628/38141 7256/1235/38142\nf 7258/3406/38143 7256/1235/38144 7257/2628/38145\nf 7257/2628/38146 7259/5871/38147 7258/3406/38148\nf 7260/3857/38149 7258/3406/38150 7259/5871/38151\nf 7259/5871/38152 7261/2426/38153 7260/3857/38154\nf 7258/3406/38155 7260/3857/38156 7262/221/38157\nf 7262/221/38158 11819/3023/38159 7258/3406/38160\nf 7256/1235/38161 7258/3406/38162 11819/3023/38163\nf 11819/3023/38164 7264/1741/38165 7256/1235/38166\nf 7254/1113/38167 7256/1235/38168 7264/1741/38169\nf 7264/1741/38170 7253/5947/38171 7254/1113/38172\nf 7265/5552/38173 7252/2828/38174 7253/5947/38175\nf 7253/5947/38176 7264/1741/38177 7265/5552/38178\nf 7266/3146/38179 7265/5552/38180 7264/1741/38181\nf 7264/1741/38182 7263/25103/38183 7266/3146/38184\nf 7267/6116/38185 7266/3146/38186 7263/25104/38187\nf 7263/25105/38188 7262/221/38189 7267/6116/38190\nf 7266/3146/38191 7267/6116/38192 7268/5192/38193\nf 7268/5192/38194 7269/6212/38195 7266/3146/38196\nf 7265/5552/38197 7266/3146/38198 7269/6212/38199\nf 7269/6212/38200 7270/63/38201 7265/5552/38202\nf 7252/2828/38203 7265/5552/38204 7270/63/38205\nf 7270/63/38206 7251/2853/38207 7252/2828/38208\nf 7251/2853/38209 7270/63/38210 7271/4458/38211\nf 7271/4458/38212 7250/1887/38213 7251/2853/38214\nf 7272/576/38215 7271/4458/38216 7270/63/38217\nf 7270/63/38218 7269/6212/38219 7272/576/38220\nf 7273/3938/38221 7272/576/38222 7269/6212/38223\nf 7269/6212/38224 7268/5192/38225 7273/3938/38226\nf 7272/576/38227 7273/3938/38228 7274/5212/38229\nf 7274/5212/38230 7275/5418/38231 7272/576/38232\nf 7271/4458/38233 7272/576/38234 7275/5418/38235\nf 7275/5418/38236 7276/37/38237 7271/4458/38238\nf 7250/1887/38239 7271/4458/38240 7276/37/38241\nf 7276/37/38242 7249/2106/38243 7250/1887/38244\nf 7249/2106/38245 7276/37/38246 7277/2962/38247\nf 7277/2962/38248 7248/4236/38249 7249/2106/38250\nf 7278/5/38251 7277/2962/38252 7276/37/38253\nf 7276/37/38254 7275/5418/38255 7278/5/38256\nf 7279/2156/38257 7278/5/38258 7275/5418/38259\nf 7275/5418/38260 7274/5212/38261 7279/2156/38262\nf 7278/5/38263 7279/2156/38264 7280/5289/38265\nf 7280/5289/38266 7281/6248/38267 7278/5/38268\nf 7277/2962/38269 7278/5/38270 7281/6248/38271\nf 7281/6248/38272 7282/6487/38273 7277/2962/38274\nf 7248/4236/38275 7277/2962/38276 7282/6487/38277\nf 7282/6487/38278 7247/1055/38279 7248/4236/38280\nf 7247/1055/38281 7282/6487/38282 7445/3614/38283\nf 7445/3614/38284 7526/4203/38285 7247/1055/38286\nf 7282/6487/38287 7281/6248/38288 7443/1567/38289\nf 7443/1567/38290 7445/3359/38291 7282/6487/38292\nf 7281/6248/38293 7280/5289/38294 7528/1476/38295\nf 7528/1476/38296 7443/3850/38297 7281/6248/38298\nf 7283/3298/38299 7280/5289/38300 7279/2156/38301\nf 7279/2156/38302 7284/2968/38303 7283/3298/38304\nf 7284/2968/38305 7279/2156/38306 7274/5212/38307\nf 7274/5212/38308 7285/4665/38309 7284/2968/38310\nf 7285/4665/38311 7274/5212/38312 7273/3938/38313\nf 7273/3938/38314 7286/4161/38315 7285/4665/38316\nf 7286/4161/38317 7273/3938/38318 7268/5192/38319\nf 7268/5192/38320 7287/3326/38321 7286/4161/38322\nf 7287/3326/38323 7268/5192/38324 7267/6116/38325\nf 7267/6116/38326 7288/2037/38327 7287/3326/38328\nf 7288/2037/38329 7267/6116/38330 7262/221/38331\nf 7262/221/38332 7289/2401/38333 7288/2037/38334\nf 7289/2401/38335 7262/221/38336 7260/3857/38337\nf 7260/3857/38338 7290/2763/38339 7289/2401/38340\nf 7290/2763/38341 7260/3857/38342 7261/2426/38343\nf 7261/2426/38344 7291/4118/38345 7290/2763/38346\nf 7292/3426/38347 7290/2763/38348 7291/4118/38349\nf 7291/4118/38350 7293/5413/38351 7292/3426/38352\nf 7294/6002/38353 7292/3426/38354 7293/5413/38355\nf 7293/5413/38356 7295/5257/38357 7294/6002/38358\nf 7296/1377/38359 7294/6002/38360 7295/5257/38361\nf 7295/5257/38362 7297/816/38363 7296/1377/38364\nf 7294/6002/38365 7296/1377/38366 7298/4184/38367\nf 7298/4184/38368 7299/6493/38369 7294/6002/38370\nf 7292/3426/38371 7294/6002/38372 7299/6493/38373\nf 7299/6493/38374 7300/3783/38375 7292/3426/38376\nf 7290/2763/38377 7292/3426/38378 7300/3783/38379\nf 7300/3783/38380 7289/2401/38381 7290/2763/38382\nf 7301/2157/38383 7288/2037/38384 7289/2401/38385\nf 7289/2401/38386 7300/3783/38387 7301/2157/38388\nf 7302/2267/38389 7301/2157/38390 7300/3783/38391\nf 7300/3783/38392 7299/6493/38393 7302/2267/38394\nf 7303/4159/38395 7302/2267/38396 7299/6493/38397\nf 7299/6493/38398 7298/4184/38399 7303/4159/38400\nf 7302/2267/38401 7303/4159/38402 7304/3546/38403\nf 7304/3546/38404 7305/1352/38405 7302/2267/38406\nf 7301/2157/38407 7302/2267/38408 7305/1352/38409\nf 7305/1352/38410 7306/1633/38411 7301/2157/38412\nf 7288/2037/38413 7301/2157/38414 7306/1633/38415\nf 7306/1633/38416 7287/3326/38417 7288/2037/38418\nf 7287/3326/38419 7306/1633/38420 7307/97/38421\nf 7307/97/38422 7286/4161/38423 7287/3326/38424\nf 7308/6091/38425 7307/97/38426 7306/1633/38427\nf 7306/1633/38428 7305/1352/38429 7308/6091/38430\nf 7309/1486/38431 7308/6091/38432 7305/1352/38433\nf 7305/1352/38434 7304/3546/38435 7309/1486/38436\nf 7308/6091/38437 7309/1486/38438 7310/2965/38439\nf 7310/2965/38440 7311/695/38441 7308/6091/38442\nf 7307/97/38443 7308/6091/38444 7311/695/38445\nf 7311/695/38446 7312/5072/38447 7307/97/38448\nf 7286/4161/38449 7307/97/38450 7312/5072/38451\nf 7312/5072/38452 7285/4665/38453 7286/4161/38454\nf 7285/4665/38455 7312/5072/38456 7313/6117/38457\nf 7313/6117/38458 7284/2968/38459 7285/4665/38460\nf 7314/2430/38461 7313/6117/38462 7312/5072/38463\nf 7312/5072/38464 7311/695/38465 7314/2430/38466\nf 7315/550/38467 7314/2430/38468 7311/695/38469\nf 7311/695/38470 7310/2965/38471 7315/550/38472\nf 7314/2430/38473 7315/550/38474 7316/3650/38475\nf 7316/3650/38476 7317/5533/38477 7314/2430/38478\nf 7313/6117/38479 7314/2430/38480 7317/5533/38481\nf 7317/5533/38482 7318/2600/38483 7313/6117/38484\nf 7284/2968/38485 7313/6117/38486 7318/2600/38487\nf 7318/2600/38488 7283/3298/38489 7284/2968/38490\nf 7283/3298/38491 7318/2600/38492 7439/1911/38493\nf 7439/1911/38494 7527/741/38495 7283/3298/38496\nf 7318/2600/38497 7317/5533/38498 7319/2352/38499\nf 7319/2352/38500 7439/2385/38501 7318/2600/38502\nf 7317/5533/38503 7316/3650/38504 7436/3341/38505\nf 7436/3341/38506 7319/1893/38507 7317/5533/38508\nf 7320/4199/38509 7316/3650/38510 7315/550/38511\nf 7315/550/38512 7321/2349/38513 7320/4199/38514\nf 7321/2349/38515 7315/550/38516 7310/2965/38517\nf 7310/2965/38518 7322/5964/38519 7321/2349/38520\nf 7322/5964/38521 7310/2965/38522 7309/1486/38523\nf 7309/1486/38524 7323/2527/38525 7322/5964/38526\nf 7323/2527/38527 7309/1486/38528 7304/3546/38529\nf 7304/3546/38530 7324/4369/38531 7323/2527/38532\nf 7324/4369/38533 7304/3546/38534 7303/4159/38535\nf 7303/4159/38536 7325/5355/38537 7324/4369/38538\nf 7325/5355/38539 7303/4159/38540 7298/4184/38541\nf 7298/4184/38542 7326/6382/38543 7325/5355/38544\nf 7326/6382/38545 7298/4184/38546 7296/1377/38547\nf 7296/1377/38548 7327/5893/38549 7326/6382/38550\nf 7327/5893/38551 7296/1377/38552 7297/816/38553\nf 7297/816/38554 7328/458/38555 7327/5893/38556\nf 7329/5248/38557 7327/5893/38558 7328/458/38559\nf 7328/458/38560 7330/384/38561 7329/5248/38562\nf 7331/1441/38563 7329/5248/38564 7330/384/38565\nf 7330/384/38566 7332/858/38567 7331/1441/38568\nf 7333/5622/38569 7331/1441/38570 7332/858/38571\nf 7332/858/38572 7334/3920/38573 7333/5622/38574\nf 7331/1441/38575 7333/5622/38576 7335/2795/38577\nf 7335/2795/38578 7336/935/38579 7331/1441/38580\nf 7329/5248/38581 7331/1441/38582 7336/935/38583\nf 7336/935/38584 7337/1624/38585 7329/5248/38586\nf 7327/5893/38587 7329/5248/38588 7337/1624/38589\nf 7337/1624/38590 7326/6382/38591 7327/5893/38592\nf 7338/2327/38593 7325/5355/38594 7326/6382/38595\nf 7326/6382/38596 7337/1624/38597 7338/2327/38598\nf 7339/2556/38599 7338/2327/38600 7337/1624/38601\nf 7337/1624/38602 7336/935/38603 7339/2556/38604\nf 7340/312/38605 7339/2556/38606 7336/935/38607\nf 7336/935/38608 7335/2795/38609 7340/312/38610\nf 7339/2556/38611 7340/312/38612 7341/1289/38613\nf 7341/1289/38614 7342/3574/38615 7339/2556/38616\nf 7338/2327/38617 7339/2556/38618 7342/3574/38619\nf 7342/3574/38620 7343/3076/38621 7338/2327/38622\nf 7325/5355/38623 7338/2327/38624 7343/3076/38625\nf 7343/3076/38626 7324/4369/38627 7325/5355/38628\nf 7324/4369/38629 7343/3076/38630 7344/1877/38631\nf 7344/1877/38632 7323/2527/38633 7324/4369/38634\nf 7345/4831/38635 7344/1877/38636 7343/3076/38637\nf 7343/3076/38638 7342/3574/38639 7345/4831/38640\nf 7346/2407/38641 7345/4831/38642 7342/3574/38643\nf 7342/3574/38644 7341/1289/38645 7346/2407/38646\nf 7345/4831/38647 7346/2407/38648 7347/4383/38649\nf 7347/4383/38650 7348/1365/38651 7345/4831/38652\nf 7344/1877/38653 7345/4831/38654 7348/1365/38655\nf 7348/1365/38656 7349/4957/38657 7344/1877/38658\nf 7323/2527/38659 7344/1877/38660 7349/4957/38661\nf 7349/4957/38662 7322/5964/38663 7323/2527/38664\nf 7322/5964/38665 7349/4957/38666 7350/1905/38667\nf 7350/1905/38668 7321/2349/38669 7322/5964/38670\nf 7351/5516/38671 7350/1905/38672 7349/4957/38673\nf 7349/4957/38674 7348/1365/38675 7351/5516/38676\nf 7352/743/38677 7351/5516/38678 7348/1365/38679\nf 7348/1365/38680 7347/4383/38681 7352/743/38682\nf 7351/5516/38683 7352/743/38684 7353/4252/38685\nf 7353/4252/38686 7354/3686/38687 7351/5516/38688\nf 7350/1905/38689 7351/5516/38690 7354/3686/38691\nf 7354/3686/38692 7355/94/38693 7350/1905/38694\nf 7321/2349/38695 7350/1905/38696 7355/94/38697\nf 7355/94/38698 7320/4199/38699 7321/2349/38700\nf 7320/4199/38701 7355/94/38702 7433/1546/38703\nf 7433/1546/38704 7529/4921/38705 7320/4199/38706\nf 7355/94/38707 7354/3686/38708 7431/6202/38709\nf 7431/6202/38710 7433/532/38711 7355/94/38712\nf 7354/3686/38713 7353/4252/38714 7429/2123/38715\nf 7429/2123/38716 7431/1912/38717 7354/3686/38718\nf 7356/2505/38719 7353/4252/38720 7352/743/38721\nf 7352/743/38722 7357/6020/38723 7356/2505/38724\nf 7357/6020/38725 7352/743/38726 7347/4383/38727\nf 7347/4383/38728 7358/5007/38729 7357/6020/38730\nf 7358/5007/38731 7347/4383/38732 7346/2407/38733\nf 7346/2407/38734 7359/155/38735 7358/5007/38736\nf 7359/155/38737 7346/2407/38738 7341/1289/38739\nf 7341/1289/38740 7360/4991/38741 7359/155/38742\nf 7360/4991/38743 7341/1289/38744 7340/312/38745\nf 7340/312/38746 7361/5520/38747 7360/4991/38748\nf 7361/5520/38749 7340/312/38750 7335/2795/38751\nf 7335/2795/38752 7362/437/38753 7361/5520/38754\nf 7362/437/38755 7335/2795/38756 7333/5622/38757\nf 7333/5622/38758 7363/3377/38759 7362/437/38760\nf 7363/3377/38761 7333/5622/38762 7334/3920/38763\nf 7334/3920/38764 7364/2188/38765 7363/3377/38766\nf 7365/1913/38767 7363/3377/38768 7364/2188/38769\nf 7364/2188/38770 7366/6118/38771 7365/1913/38772\nf 7367/1510/38773 7365/1913/38774 7366/6118/38775\nf 7366/6118/38776 7368/95/38777 7367/1510/38778\nf 7369/223/38779 7367/1510/38780 7368/95/38781\nf 7368/95/38782 7370/5904/38783 7369/223/38784\nf 7367/1510/38785 7369/223/38786 7371/224/38787\nf 7371/224/38788 7372/1878/38789 7367/1510/38790\nf 7365/1913/38791 7367/1510/38792 7372/1878/38793\nf 7372/1878/38794 7373/4841/38795 7365/1913/38796\nf 7363/3377/38797 7365/1913/38798 7373/4841/38799\nf 7373/4841/38800 7362/437/38801 7363/3377/38802\nf 7374/2427/38803 7361/5520/38804 7362/437/38805\nf 7362/437/38806 7373/4841/38807 7374/2427/38808\nf 7375/2036/38809 7374/2427/38810 7373/4841/38811\nf 7373/4841/38812 7372/1878/38813 7375/2036/38814\nf 7372/1878/38815 7371/224/38816 7376/972/38817\nf 7376/972/38818 7375/2036/38819 7372/1878/38820\nf 7375/2036/38821 7376/972/38822 7377/5905/38823\nf 7377/5905/38824 7378/2685/38825 7375/2036/38826\nf 7374/2427/38827 7375/2036/38828 7378/2685/38829\nf 7378/2685/38830 7379/3467/38831 7374/2427/38832\nf 7361/5520/38833 7374/2427/38834 7379/3467/38835\nf 7379/3467/38836 7360/4991/38837 7361/5520/38838\nf 7360/4991/38839 7379/3467/38840 7380/1971/38841\nf 7380/1971/38842 7359/155/38843 7360/4991/38844\nf 7381/1625/38845 7380/1971/38846 7379/3467/38847\nf 7379/3467/38848 7378/2685/38849 7381/1625/38850\nf 7378/2685/38851 7377/5905/38852 7382/4282/38853\nf 7382/4282/38854 7381/1625/38855 7378/2685/38856\nf 7381/1625/38857 7382/4282/38858 7383/5173/38859\nf 7383/5173/38860 7384/1053/38861 7381/1625/38862\nf 7380/1971/38863 7381/1625/38864 7384/1053/38865\nf 7384/1053/38866 7385/570/38867 7380/1971/38868\nf 7359/155/38869 7380/1971/38870 7385/570/38871\nf 7385/570/38872 7358/5007/38873 7359/155/38874\nf 7358/5007/38875 7385/570/38876 7386/5414/38877\nf 7386/5414/38878 7357/6020/38879 7358/5007/38880\nf 7387/2181/38881 7386/5414/38882 7385/570/38883\nf 7385/570/38884 7384/1053/38885 7387/2181/38886\nf 7384/1053/38887 7383/5173/38888 7388/1858/38889\nf 7388/1858/38890 7387/2181/38891 7384/1053/38892\nf 7387/2181/38893 7388/1858/38894 7531/1859/38895\nf 7531/1859/38896 7389/385/38897 7387/2181/38898\nf 7386/5414/38899 7387/2181/38900 7389/385/38901\nf 7389/385/38902 7390/2308/38903 7386/5414/38904\nf 7357/6020/38905 7386/5414/38906 7390/2308/38907\nf 7390/2308/38908 7356/2505/38909 7357/6020/38910\nf 7356/2505/38911 7390/2308/38912 7391/77/38913\nf 7391/77/38914 7530/5744/38915 7356/2505/38916\nf 7390/2308/38917 7389/385/38918 7425/815/38919\nf 7425/815/38920 7391/5388/38921 7390/2308/38922\nf 7392/3489/38923 7388/1858/38924 7383/5173/38925\nf 7531/1859/38926 7388/1858/38927 7392/3489/38928\nf 7383/5173/38929 7393/225/38930 7392/3489/38931\nf 7394/2629/38932 7393/225/38933 7383/5173/38934\nf 7395/1240/38935 7393/225/38936 7394/2629/38937\nf 7394/2629/38938 7396/1242/38939 7395/1240/38940\nf 7396/1242/38941 7394/2629/38942 7397/973/38943\nf 7377/5905/38944 7397/973/38945 7394/2629/38946\nf 7398/5906/38947 7397/973/38948 7377/5905/38949\nf 7399/1243/38950 7397/973/38951 7398/5906/38952\nf 7397/973/38953 7399/1243/38954 7396/1242/38955\nf 7398/5906/38956 7400/1244/38957 7399/1243/38958\nf 7400/1244/38959 7398/5906/38960 7401/5174/38961\nf 7371/224/38962 7401/5174/38963 7398/5906/38964\nf 7402/5175/38965 7401/5174/38966 7371/224/38967\nf 7403/1248/38968 7401/5174/38969 7402/5175/38970\nf 7401/5174/38971 7403/1248/38972 7400/1244/38973\nf 7402/5175/38974 7404/1443/38975 7403/1248/38976\nf 7404/1443/38977 7402/5175/38978 7405/974/38979\nf 7370/5904/38980 7405/974/38981 7402/5175/38982\nf 7402/5175/38983 7369/223/38984 7370/5904/38985\nf 7371/224/38986 7369/223/38987 7402/5175/38988\nf 7405/974/38989 7406/3825/38990 7404/1443/38991\nf 7398/5906/38992 7376/972/38993 7371/224/38994\nf 7377/5905/38995 7376/972/38996 7398/5906/38997\nf 7406/3825/38998 7405/974/38999 7407/1860/39000\nf 7407/1860/39001 7408/4733/39002 7406/3825/39003\nf 7408/4733/39004 7407/1860/39005 7409/3490/39006\nf 7410/1861/39007 7409/3490/39008 7407/1860/39009\nf 7411/975/39010 7409/3490/39011 7410/1861/39012\nf 7412/6351/39013 7409/3490/39014 7411/975/39015\nf 7409/3490/39016 7412/6351/39017 7408/4733/39018\nf 7411/975/39019 7413/3826/39020 7412/6351/39021\nf 7413/3826/39022 7411/975/39023 7414/5176/39024\nf 7415/226/39025 7414/5176/39026 7411/975/39027\nf 7416/2630/39028 7414/5176/39029 7415/226/39030\nf 7417/1445/39031 7414/5176/39032 7416/2630/39033\nf 7414/5176/39034 7417/1445/39035 7413/3826/39036\nf 7416/2630/39037 7418/5475/39038 7417/1445/39039\nf 7418/5475/39040 7416/2630/39041 7419/5907/39042\nf 7420/976/39043 7419/5907/39044 7416/2630/39045\nf 7421/5177/39046 7419/5907/39047 7420/976/39048\nf 7422/2182/39049 7419/5907/39050 7421/5177/39051\nf 7419/5907/39052 7422/2182/39053 7418/5475/39054\nf 7421/5177/39055 7423/1446/39056 7422/2182/39057\nf 7420/976/39058 7424/227/39059 7421/5177/39060\nf 7425/993/39061 7424/227/39062 7420/976/39063\nf 7420/976/39064 7426/2619/39065 7425/993/39066\nf 7391/3912/39067 7425/993/39068 7426/2619/39069\nf 7426/2619/39070 7427/1886/39071 7391/3912/39072\nf 7530/1277/39073 7391/3912/39074 7427/1886/39075\nf 7427/1886/39076 7428/6174/39077 7530/1277/39078\nf 7429/1976/39079 7530/1277/39080 7428/6174/39081\nf 7428/6174/39082 7430/6265/39083 7429/1976/39084\nf 7431/197/39085 7429/1976/39086 7430/6265/39087\nf 7430/6265/39088 7432/3300/39089 7431/197/39090\nf 7433/671/39091 7431/197/39092 7432/3300/39093\nf 7432/3300/39094 7434/3013/39095 7433/671/39096\nf 7529/562/39097 7433/671/39098 7434/3013/39099\nf 7434/3013/39100 7435/4789/39101 7529/562/39102\nf 7436/5112/39103 7529/562/39104 7435/4789/39105\nf 7435/4789/39106 7437/4922/39107 7436/5112/39108\nf 7319/656/39109 7436/5112/39110 7437/4922/39111\nf 7437/4922/39112 7438/2937/39113 7319/656/39114\nf 7439/4675/39115 7319/656/39116 7438/2937/39117\nf 7438/2937/39118 7440/2815/39119 7439/4675/39120\nf 7527/6413/39121 7439/4675/39122 7440/2815/39123\nf 7440/2815/39124 7441/740/39125 7527/6413/39126\nf 7528/967/39127 7527/6413/39128 7441/740/39129\nf 7441/740/39130 7442/204/39131 7528/967/39132\nf 7443/5094/39133 7528/967/39134 7442/204/39135\nf 7442/204/39136 10941/4334/39137 7443/5094/39138\nf 7445/789/39139 7443/5094/39140 10941/4334/39141\nf 10941/4334/39142 7446/5044/39143 7445/789/39144\nf 7526/768/39145 7445/789/39146 7446/5044/39147\nf 7446/5044/39148 7447/3299/39149 7526/768/39150\nf 7246/4840/39151 7526/768/39152 7447/3299/39153\nf 7447/3299/39154 7174/2653/39155 7246/4840/39156\nf 7174/2653/39157 7447/3299/39158 7448/3667/39159\nf 7448/3667/39160 7179/1970/39161 7174/2653/39162\nf 7449/3615/39163 7448/3667/39164 7447/3299/39165\nf 7447/3299/39166 10958/25106/39167 7449/3615/39168\nf 7450/3838/39169 7449/3615/39170 10958/25107/39171\nf 10958/25108/39172 7444/25109/39173 7450/3838/39174\nf 7451/4879/39175 7450/3838/39176 7444/25110/39177\nf 7444/25111/39178 7442/204/39179 7451/4879/39180\nf 7450/3838/39181 7451/4879/39182 7452/4527/39183\nf 7452/4527/39184 7453/160/39185 7450/3838/39186\nf 7449/3615/39187 7450/3838/39188 7453/160/39189\nf 7453/160/39190 7454/591/39191 7449/3615/39192\nf 7448/3667/39193 7449/3615/39194 7454/591/39195\nf 7454/591/39196 7455/3961/39197 7448/3667/39198\nf 7179/1970/39199 7448/3667/39200 7455/3961/39201\nf 7455/3961/39202 7180/436/39203 7179/1970/39204\nf 7180/436/39205 7455/3961/39206 7456/3468/39207\nf 7456/3468/39208 7189/1709/39209 7180/436/39210\nf 7457/3108/39211 7456/3468/39212 7455/3961/39213\nf 7455/3961/39214 7454/591/39215 7457/3108/39216\nf 7458/5486/39217 7457/3108/39218 7454/591/39219\nf 7454/591/39220 7453/160/39221 7458/5486/39222\nf 7459/5358/39223 7458/5486/39224 7453/160/39225\nf 7453/160/39226 7452/4527/39227 7459/5358/39228\nf 7458/5486/39229 7459/5358/39230 7460/6080/39231\nf 7460/6080/39232 7461/2950/39233 7458/5486/39234\nf 7457/3108/39235 7458/5486/39236 7461/2950/39237\nf 7461/2950/39238 10501/5579/39239 7457/3108/39240\nf 7456/3468/39241 7457/3108/39242 7462/25112/39243\nf 7462/25113/39244 7463/1271/39245 7456/3468/39246\nf 7189/1709/39247 7456/3468/39248 7463/1271/39249\nf 7463/1271/39250 7190/2307/39251 7189/1709/39252\nf 7190/2307/39253 7463/1271/39254 7464/4498/39255\nf 7464/4498/39256 7199/4702/39257 7190/2307/39258\nf 7465/3024/39259 7464/4498/39260 7463/1271/39261\nf 7463/1271/39262 7462/25114/39263 7465/3024/39264\nf 7466/4504/39265 7465/3024/39266 10501/5579/39267\nf 10501/5579/39268 7461/2950/39269 7466/4504/39270\nf 7467/2120/39271 7466/4504/39272 7461/2950/39273\nf 7461/2950/39274 7460/6080/39275 7467/2120/39276\nf 7466/4504/39277 7467/2120/39278 7261/2426/39279\nf 7261/2426/39280 7259/5871/39281 7466/4504/39282\nf 7465/3024/39283 7466/4504/39284 7259/5871/39285\nf 7259/5871/39286 7257/2628/39287 7465/3024/39288\nf 7464/4498/39289 7465/3024/39290 7257/2628/39291\nf 7257/2628/39292 7255/3203/39293 7464/4498/39294\nf 7199/4702/39295 7464/4498/39296 7255/3203/39297\nf 7255/3203/39298 7200/5323/39299 7199/4702/39300\nf 7468/544/39301 7460/6080/39302 7459/5358/39303\nf 7459/5358/39304 7469/4198/39305 7468/544/39306\nf 7469/4198/39307 7459/5358/39308 7452/4527/39309\nf 7452/4527/39310 7470/5592/39311 7469/4198/39312\nf 7470/5592/39313 7452/4527/39314 7451/4879/39315\nf 7451/4879/39316 7471/1668/39317 7470/5592/39318\nf 7471/1668/39319 7451/4879/39320 7442/204/39321\nf 7442/204/39322 7441/740/39323 7471/1668/39324\nf 7472/811/39325 7471/1668/39326 7441/740/39327\nf 7441/740/39328 7440/2815/39329 7472/811/39330\nf 7473/372/39331 7472/811/39332 7440/2815/39333\nf 7440/2815/39334 7438/2937/39335 7473/372/39336\nf 7474/2210/39337 7473/372/39338 7438/2937/39339\nf 7438/2937/39340 7437/4922/39341 7474/2210/39342\nf 7473/372/39343 7474/2210/39344 7475/1977/39345\nf 7475/1977/39346 7476/118/39347 7473/372/39348\nf 7472/811/39349 7473/372/39350 7476/118/39351\nf 7476/118/39352 7477/3983/39353 7472/811/39354\nf 7471/1668/39355 7472/811/39356 7477/3983/39357\nf 7477/3983/39358 7470/5592/39359 7471/1668/39360\nf 7478/5791/39361 7469/4198/39362 7470/5592/39363\nf 7470/5592/39364 7477/3983/39365 7478/5791/39366\nf 7479/5598/39367 7478/5791/39368 7477/3983/39369\nf 7477/3983/39370 7476/118/39371 7479/5598/39372\nf 7480/3732/39373 7479/5598/39374 7476/118/39375\nf 7476/118/39376 7475/1977/39377 7480/3732/39378\nf 7479/5598/39379 7480/3732/39380 7481/4501/39381\nf 7481/4501/39382 7482/6430/39383 7479/5598/39384\nf 7478/5791/39385 7479/5598/39386 7482/6430/39387\nf 7482/6430/39388 7483/3469/39389 7478/5791/39390\nf 7469/4198/39391 7478/5791/39392 7483/3469/39393\nf 7483/3469/39394 7468/544/39395 7469/4198/39396\nf 7468/544/39397 7483/3469/39398 7484/5709/39399\nf 7484/5709/39400 7485/609/39401 7468/544/39402\nf 7460/6080/39403 7468/544/39404 7485/609/39405\nf 7485/609/39406 7467/2120/39407 7460/6080/39408\nf 7486/2387/39409 7484/5709/39410 7483/3469/39411\nf 7483/3469/39412 7482/6430/39413 7486/2387/39414\nf 7487/251/39415 7486/2387/39416 7482/6430/39417\nf 7482/6430/39418 7481/4501/39419 7487/251/39420\nf 7486/2387/39421 7487/251/39422 7297/816/39423\nf 7297/816/39424 7295/5257/39425 7486/2387/39426\nf 7484/5709/39427 7486/2387/39428 7295/5257/39429\nf 7295/5257/39430 7293/5413/39431 7484/5709/39432\nf 7485/609/39433 7484/5709/39434 7293/5413/39435\nf 7293/5413/39436 7291/4118/39437 7485/609/39438\nf 7467/2120/39439 7485/609/39440 7291/4118/39441\nf 7291/4118/39442 7261/2426/39443 7467/2120/39444\nf 7488/5125/39445 7481/4501/39446 7480/3732/39447\nf 7480/3732/39448 7489/831/39449 7488/5125/39450\nf 7489/831/39451 7480/3732/39452 7475/1977/39453\nf 7475/1977/39454 7490/5335/39455 7489/831/39456\nf 7490/5335/39457 7475/1977/39458 7474/2210/39459\nf 7474/2210/39460 7491/3423/39461 7490/5335/39462\nf 7491/3423/39463 7474/2210/39464 7437/4922/39465\nf 7437/4922/39466 7435/4789/39467 7491/3423/39468\nf 7492/994/39469 7491/3423/39470 7435/4789/39471\nf 7435/4789/39472 7434/3013/39473 7492/994/39474\nf 7493/3906/39475 7492/994/39476 7434/3013/39477\nf 7434/3013/39478 7432/3300/39479 7493/3906/39480\nf 7494/1724/39481 7493/3906/39482 7432/3300/39483\nf 7432/3300/39484 7430/6265/39485 7494/1724/39486\nf 7493/3906/39487 7494/1724/39488 7495/5113/39489\nf 7495/5113/39490 7496/2020/39491 7493/3906/39492\nf 7492/994/39493 7493/3906/39494 7496/2020/39495\nf 7496/2020/39496 7497/5786/39497 7492/994/39498\nf 7491/3423/39499 7492/994/39500 7497/5786/39501\nf 7497/5786/39502 7490/5335/39503 7491/3423/39504\nf 7498/3325/39505 7489/831/39506 7490/5335/39507\nf 7490/5335/39508 7497/5786/39509 7498/3325/39510\nf 7499/476/39511 7498/3325/39512 7497/5786/39513\nf 7497/5786/39514 7496/2020/39515 7499/476/39516\nf 7500/1035/39517 7499/476/39518 7496/2020/39519\nf 7496/2020/39520 7495/5113/39521 7500/1035/39522\nf 7499/476/39523 7500/1035/39524 7501/3470/39525\nf 7501/3470/39526 7502/2897/39527 7499/476/39528\nf 7498/3325/39529 7499/476/39530 7502/2897/39531\nf 7502/2897/39532 7503/5729/39533 7498/3325/39534\nf 7489/831/39535 7498/3325/39536 7503/5729/39537\nf 7503/5729/39538 7488/5125/39539 7489/831/39540\nf 7488/5125/39541 7503/5729/39542 7504/3484/39543\nf 7504/3484/39544 7505/1078/39545 7488/5125/39546\nf 7481/4501/39547 7488/5125/39548 7505/1078/39549\nf 7505/1078/39550 7487/251/39551 7481/4501/39552\nf 7506/294/39553 7504/3484/39554 7503/5729/39555\nf 7503/5729/39556 7502/2897/39557 7506/294/39558\nf 7507/795/39559 7506/294/39560 7502/2897/39561\nf 7502/2897/39562 7501/3470/39563 7507/795/39564\nf 7506/294/39565 7507/795/39566 7334/3920/39567\nf 7334/3920/39568 7332/858/39569 7506/294/39570\nf 7504/3484/39571 7506/294/39572 7332/858/39573\nf 7332/858/39574 7330/384/39575 7504/3484/39576\nf 7505/1078/39577 7504/3484/39578 7330/384/39579\nf 7330/384/39580 7328/458/39581 7505/1078/39582\nf 7487/251/39583 7505/1078/39584 7328/458/39585\nf 7328/458/39586 7297/816/39587 7487/251/39588\nf 7508/3410/39589 7501/3470/39590 7500/1035/39591\nf 7500/1035/39592 7509/5874/39593 7508/3410/39594\nf 7509/5874/39595 7500/1035/39596 7495/5113/39597\nf 7495/5113/39598 7510/3913/39599 7509/5874/39600\nf 7510/3913/39601 7495/5113/39602 7494/1724/39603\nf 7494/1724/39604 7511/890/39605 7510/3913/39606\nf 7511/890/39607 7494/1724/39608 7430/6265/39609\nf 7430/6265/39610 7428/6174/39611 7511/890/39612\nf 7512/1120/39613 7511/890/39614 7428/6174/39615\nf 7428/6174/39616 7427/1886/39617 7512/1120/39618\nf 7513/672/39619 7512/1120/39620 7427/1886/39621\nf 7427/1886/39622 7426/2619/39623 7513/672/39624\nf 7514/4283/39625 7513/672/39626 7426/2619/39627\nf 7426/2619/39628 7420/976/39629 7514/4283/39630\nf 7513/672/39631 7514/4283/39632 7415/226/39633\nf 7415/226/39634 7515/2061/39635 7513/672/39636\nf 7512/1120/39637 7513/672/39638 7515/2061/39639\nf 7515/2061/39640 7516/1278/39641 7512/1120/39642\nf 7511/890/39643 7512/1120/39644 7516/1278/39645\nf 7516/1278/39646 7510/3913/39647 7511/890/39648\nf 7517/2386/39649 7509/5874/39650 7510/3913/39651\nf 7510/3913/39652 7516/1278/39653 7517/2386/39654\nf 7518/434/39655 7517/2386/39656 7516/1278/39657\nf 7516/1278/39658 7515/2061/39659 7518/434/39660\nf 7515/2061/39661 7415/226/39662 7519/5908/39663\nf 7519/5908/39664 7518/434/39665 7515/2061/39666\nf 7518/434/39667 7519/5908/39668 7410/1861/39669\nf 7410/1861/39670 7520/6105/39671 7518/434/39672\nf 7517/2386/39673 7518/434/39674 7520/6105/39675\nf 7520/6105/39676 7521/1635/39677 7517/2386/39678\nf 7509/5874/39679 7517/2386/39680 7521/1635/39681\nf 7521/1635/39682 7508/3410/39683 7509/5874/39684\nf 7508/3410/39685 7521/1635/39686 7522/5448/39687\nf 7522/5448/39688 7523/5637/39689 7508/3410/39690\nf 7501/3470/39691 7508/3410/39692 7523/5637/39693\nf 7523/5637/39694 7507/795/39695 7501/3470/39696\nf 7524/3779/39697 7522/5448/39698 7521/1635/39699\nf 7521/1635/39700 7520/6105/39701 7524/3779/39702\nf 7520/6105/39703 7410/1861/39704 7525/3491/39705\nf 7525/3491/39706 7524/3779/39707 7520/6105/39708\nf 7524/3779/39709 7525/3491/39710 7370/5904/39711\nf 7370/5904/39712 7368/95/39713 7524/3779/39714\nf 7522/5448/39715 7524/3779/39716 7368/95/39717\nf 7368/95/39718 7366/6118/39719 7522/5448/39720\nf 7523/5637/39721 7522/5448/39722 7366/6118/39723\nf 7366/6118/39724 7364/2188/39725 7523/5637/39726\nf 7507/795/39727 7523/5637/39728 7364/2188/39729\nf 7364/2188/39730 7334/3920/39731 7507/795/39732\nf 7410/1861/39733 7519/5908/39734 7411/975/39735\nf 7411/975/39736 7519/5908/39737 7415/226/39738\nf 7405/974/39739 7370/5904/39740 7525/3491/39741\nf 7525/3491/39742 7407/1860/39743 7405/974/39744\nf 7407/1860/39745 7525/3491/39746 7410/1861/39747\nf 7415/226/39748 7514/4283/39749 7416/2630/39750\nf 7416/2630/39751 7514/4283/39752 7420/976/39753\nf 7526/863/39754 7246/2482/39755 7240/1632/39756\nf 7240/1632/39757 7247/1055/39758 7526/863/39759\nf 7527/149/39760 7528/1803/39761 7280/5289/39762\nf 7280/5289/39763 7283/3298/39764 7527/149/39765\nf 7529/5206/39766 7436/309/39767 7316/3650/39768\nf 7316/3650/39769 7320/4199/39770 7529/5206/39771\nf 7530/444/39772 7429/3649/39773 7353/4252/39774\nf 7353/4252/39775 7356/2505/39776 7530/444/39777\nf 7389/385/39778 7531/1279/39779 7424/6525/39780\nf 7424/6525/39781 7425/445/39782 7389/385/39783\nf 7394/2629/39784 7382/4282/39785 7377/5905/39786\nf 7383/5173/39787 7382/4282/39788 7394/2629/39789\nf 7532/6352/39790 7392/3489/39791 7393/225/39792\nf 7393/225/39793 7395/1240/39794 7532/6352/39795\nf 7392/3489/39796 7532/6352/39797 7533/6353/39798\nf 7533/6353/39799 7534/3492/39800 7392/3489/39801\nf 7392/3489/39802 7534/3492/39803 7531/1859/39804\nf 7531/1859/39805 7534/3492/39806 7421/654/39807\nf 7421/654/39808 7424/3766/39809 7531/1859/39810\nf 7534/3492/39811 7533/6353/39812 7423/1805/39813\nf 7423/1805/39814 7421/130/39815 7534/3492/39816\nf 7113/6135/39817 7535/3441/39818 7119/5736/39819\nf 7130/968/39820 7119/5736/39821 7535/3441/39822\nf 7535/3441/39823 7536/2987/39824 7130/968/39825\nf 7536/2987/39826 7535/3441/39827 7537/3050/39828\nf 7537/3050/39829 7538/1146/39830 7536/2987/39831\nf 7535/3441/39832 7113/6135/39833 7115/2332/39834\nf 7115/2332/39835 7537/3050/39836 7535/3441/39837\nf 7537/3050/39838 7115/2332/39839 7544/4990/39840\nf 7544/4990/39841 7541/1964/39842 7537/3050/39843\nf 7538/1146/39844 7537/3050/39845 7541/1964/39846\nf 7541/1964/39847 7539/6255/39848 7538/1146/39849\nf 7539/710/39850 7541/1268/39851 7540/4332/39852\nf 7540/4332/39853 7542/1720/39854 7539/710/39855\nf 7542/1720/39856 7540/4332/39857 7543/5415/39858\nf 7142/1438/39859 7543/5415/39860 7540/4332/39861\nf 7540/4332/39862 7144/5432/39863 7142/1438/39864\nf 7144/5432/39865 7540/4332/39866 7541/4585/39867\nf 7541/4585/39868 7544/2850/39869 7144/5432/39870\nf 7543/5415/39871 7545/4974/39872 7542/1720/39873\nf 7545/4974/39874 7543/5415/39875 7546/176/39876\nf 7546/176/39877 7547/2603/39878 7545/4974/39879\nf 7543/5415/39880 7142/1438/39881 7140/6104/39882\nf 7140/6104/39883 7546/176/39884 7543/5415/39885\nf 7546/176/39886 7140/6104/39887 7138/3744/39888\nf 7138/3744/39889 7548/6053/39890 7546/176/39891\nf 7547/2603/39892 7546/176/39893 7548/6053/39894\nf 7548/6053/39895 7549/3015/39896 7547/2603/39897\nf 7549/3015/39898 7548/6053/39899 7550/1370/39900\nf 7550/1370/39901 7551/963/39902 7549/3015/39903\nf 7548/6053/39904 7138/3744/39905 7136/4385/39906\nf 7136/4385/39907 7550/1370/39908 7548/6053/39909\nf 7550/1370/39910 7136/4385/39911 7134/1821/39912\nf 7134/1821/39913 7552/2931/39914 7550/1370/39915\nf 7551/963/39916 7550/1370/39917 7552/2931/39918\nf 7552/2931/39919 7553/2956/39920 7551/963/39921\nf 7553/2956/39922 7552/2931/39923 7131/6332/39924\nf 7131/6332/39925 7554/2865/39926 7553/2956/39927\nf 7552/2931/39928 7134/1821/39929 7132/5254/39930\nf 7132/5254/39931 7131/6332/39932 7552/2931/39933\nf 7554/2865/39934 7131/6332/39935 7128/3559/39936\nf 7128/3559/39937 7129/1607/39938 7554/2865/39939\nf 7555/4842/39940 7092/5211/39941 7093/3831/39942\nf 7093/3831/39943 7556/5814/39944 7555/4842/39945\nf 7557/82/39946 7555/4842/39947 7556/5814/39948\nf 7556/5814/39949 7558/4618/39950 7557/82/39951\nf 7559/6203/39952 7557/82/39953 7558/4618/39954\nf 7558/4618/39955 7560/3595/39956 7559/6203/39957\nf 7209/5618/39958 7559/6203/39959 7560/3595/39960\nf 7560/3595/39961 7208/6434/39962 7209/5618/39963\nf 7559/6203/39964 7209/5618/39965 7214/2970/39966\nf 7214/2970/39967 7561/1721/39968 7559/6203/39969\nf 7557/82/39970 7559/6203/39971 7561/1721/39972\nf 7561/1721/39973 7562/5237/39974 7557/82/39975\nf 7555/4842/39976 7557/82/39977 7562/5237/39978\nf 7562/5237/39979 7563/3643/39980 7555/4842/39981\nf 7092/5211/39982 7555/4842/39983 7563/3643/39984\nf 7563/3643/39985 7094/649/39986 7092/5211/39987\nf 7094/649/39988 7563/3643/39989 7564/38/39990\nf 7564/38/39991 7101/2716/39992 7094/649/39993\nf 7565/5480/39994 7564/38/39995 7563/3643/39996\nf 7563/3643/39997 7562/5237/39998 7565/5480/39999\nf 7566/2875/40000 7565/5480/40001 7562/5237/40002\nf 7562/5237/40003 7561/1721/40004 7566/2875/40005\nf 7216/3324/40006 7566/2875/40007 7561/1721/40008\nf 7561/1721/40009 7214/2970/40010 7216/3324/40011\nf 7566/2875/40012 7216/3324/40013 7224/329/40014\nf 7224/329/40015 7567/3378/40016 7566/2875/40017\nf 7565/5480/40018 7566/2875/40019 7567/3378/40020\nf 7567/3378/40021 7568/6523/40022 7565/5480/40023\nf 7564/38/40024 7565/5480/40025 7568/6523/40026\nf 7568/6523/40027 7569/4619/40028 7564/38/40029\nf 7101/2716/40030 7564/38/40031 7569/4619/40032\nf 7569/4619/40033 7102/4502/40034 7101/2716/40035\nf 7102/4502/40036 7569/4619/40037 7570/839/40038\nf 7570/839/40039 7109/5961/40040 7102/4502/40041\nf 7571/4793/40042 7570/839/40043 7569/4619/40044\nf 7569/4619/40045 7568/6523/40046 7571/4793/40047\nf 7572/2709/40048 7571/4793/40049 7568/6523/40050\nf 7568/6523/40051 7567/3378/40052 7572/2709/40053\nf 7226/3049/40054 7572/2709/40055 7567/3378/40056\nf 7567/3378/40057 7224/329/40058 7226/3049/40059\nf 7572/2709/40060 7226/3049/40061 7234/1125/40062\nf 7234/1125/40063 7573/438/40064 7572/2709/40065\nf 7571/4793/40066 7572/2709/40067 7573/438/40068\nf 7573/438/40069 7574/3562/40070 7571/4793/40071\nf 7570/839/40072 7571/4793/40073 7574/3562/40074\nf 7574/3562/40075 7575/657/40076 7570/839/40077\nf 7109/5961/40078 7570/839/40079 7575/657/40080\nf 7575/657/40081 7110/1885/40082 7109/5961/40083\nf 7110/1885/40084 7575/657/40085 7576/156/40086\nf 7576/156/40087 7117/4011/40088 7110/1885/40089\nf 7577/2190/40090 7576/156/40091 7575/657/40092\nf 7575/657/40093 7574/3562/40094 7577/2190/40095\nf 7578/5796/40096 7577/2190/40097 7574/3562/40098\nf 7574/3562/40099 7573/438/40100 7578/5796/40101\nf 7236/246/40102 7578/5796/40103 7573/438/40104\nf 7573/438/40105 7234/1125/40106 7236/246/40107\nf 7578/5796/40108 7236/246/40109 7244/3321/40110\nf 7244/3321/40111 7579/2067/40112 7578/5796/40113\nf 7577/2190/40114 7578/5796/40115 7579/2067/40116\nf 7579/2067/40117 7580/6383/40118 7577/2190/40119\nf 7576/156/40120 7577/2190/40121 7580/6383/40122\nf 7580/6383/40123 7581/205/40124 7576/156/40125\nf 7117/4011/40126 7576/156/40127 7581/205/40128\nf 7581/205/40129 7118/4520/40130 7117/4011/40131\nf 7118/4520/40132 7581/205/40133 7582/1760/40134\nf 7582/1760/40135 7583/6388/40136 7118/4520/40137\nf 7581/205/40138 7580/6383/40139 7166/10/40140\nf 7166/10/40141 7582/5817/40142 7581/205/40143\nf 7580/6383/40144 7579/2067/40145 7584/1972/40146\nf 7584/1972/40147 7166/2260/40148 7580/6383/40149\nf 7579/2067/40150 7244/3321/40151 7585/356/40152\nf 7585/356/40153 7584/2459/40154 7579/2067/40155\nf 7586/651/40156 7163/5071/40157 7164/3466/40158\nf 7164/3466/40159 7165/264/40160 7586/651/40161\nf 7587/1105/40162 7586/651/40163 7165/264/40164\nf 7165/264/40165 7167/3280/40166 7587/1105/40167\nf 7176/1225/40168 7587/1105/40169 7167/3280/40170\nf 7587/1105/40171 7176/1225/40172 7184/5006/40173\nf 7184/5006/40174 7588/2799/40175 7587/1105/40176\nf 7586/651/40177 7587/1105/40178 7588/2799/40179\nf 7588/2799/40180 7589/2780/40181 7586/651/40182\nf 7163/5071/40183 7586/651/40184 7589/2780/40185\nf 7589/2780/40186 7162/5288/40187 7163/5071/40188\nf 7162/5288/40189 7589/2780/40190 7590/5913/40191\nf 7590/5913/40192 7161/4773/40193 7162/5288/40194\nf 7591/592/40195 7590/5913/40196 7589/2780/40197\nf 7589/2780/40198 7588/2799/40199 7591/592/40200\nf 7186/3834/40201 7591/592/40202 7588/2799/40203\nf 7588/2799/40204 7184/5006/40205 7186/3834/40206\nf 7591/592/40207 7186/3834/40208 7194/3328/40209\nf 7194/3328/40210 7592/1636/40211 7591/592/40212\nf 7590/5913/40213 7591/592/40214 7592/1636/40215\nf 7592/1636/40216 7593/840/40217 7590/5913/40218\nf 7161/4773/40219 7590/5913/40220 7593/840/40221\nf 7593/840/40222 7594/4676/40223 7161/4773/40224\nf 7156/3531/40225 7161/4773/40226 7594/4676/40227\nf 7594/4676/40228 7157/117/40229 7156/3531/40230\nf 7157/117/40231 7594/4676/40232 7595/4376/40233\nf 7595/4376/40234 7160/5895/40235 7157/117/40236\nf 7596/2747/40237 7595/4376/40238 7594/4676/40239\nf 7594/4676/40240 7593/840/40241 7596/2747/40242\nf 7597/4268/40243 7596/2747/40244 7593/840/40245\nf 7593/840/40246 7592/1636/40247 7597/4268/40248\nf 7196/80/40249 7597/4268/40250 7592/1636/40251\nf 7592/1636/40252 7194/3328/40253 7196/80/40254\nf 7597/4268/40255 7196/80/40256 7208/6434/40257\nf 7208/6434/40258 7560/3595/40259 7597/4268/40260\nf 7596/2747/40261 7597/4268/40262 7560/3595/40263\nf 7560/3595/40264 7558/4618/40265 7596/2747/40266\nf 7595/4376/40267 7596/2747/40268 7558/4618/40269\nf 7558/4618/40270 7556/5814/40271 7595/4376/40272\nf 7160/5895/40273 7595/4376/40274 7556/5814/40275\nf 7556/5814/40276 7093/3831/40277 7160/5895/40278\nf 7598/25115/40279 7600/25116/40280 7599/25117/40281\nf 7599/25118/40282 7601/25119/40283 7598/25120/40284\nf 7599/25121/40285 7600/25122/40286 7602/25123/40287\nf 7602/25124/40288 7603/25125/40289 7599/25126/40290\nf 7603/25127/40291 7602/25128/40292 7604/25129/40293\nf 7604/25130/40294 7605/25131/40295 7603/25132/40296\nf 7606/25133/40297 7604/25134/40298 7602/25135/40299\nf 7602/25136/40300 7607/25137/40301 7606/25138/40302\nf 7607/25139/40303 7602/25140/40304 7600/25141/40305\nf 7600/25142/40306 7608/25143/40307 7607/25144/40308\nf 7608/25145/40309 7600/25146/40310 7598/25147/40311\nf 7598/25148/40312 7609/25149/40313 7608/25150/40314\nf 7610/25151/40315 7608/25152/40316 7609/25153/40317\nf 7609/25154/40318 7611/25155/40319 7610/25156/40320\nf 7608/25157/40321 7610/25158/40322 7612/25159/40323\nf 7612/25160/40324 7607/25161/40325 7608/25162/40326\nf 7607/25163/40327 7612/25164/40328 7613/25165/40329\nf 7613/25166/40330 7606/25167/40331 7607/25168/40332\nf 7614/25169/40333 7613/25170/40334 7612/25171/40335\nf 7612/25172/40336 7615/25173/40337 7614/25174/40338\nf 7615/25175/40339 7612/25176/40340 7610/25177/40341\nf 7610/25178/40342 7616/25179/40343 7615/25180/40344\nf 7616/25181/40345 7610/25182/40346 7611/25183/40347\nf 7611/25184/40348 7617/25185/40349 7616/25186/40350\nf 7618/25187/40351 7616/25188/40352 7617/25189/40353\nf 7617/25190/40354 7619/25191/40355 7618/25192/40356\nf 7616/25193/40357 7618/25194/40358 7620/25195/40359\nf 7620/25196/40360 7615/25197/40361 7616/25198/40362\nf 7615/25199/40363 7620/25200/40364 7621/25201/40365\nf 7621/25202/40366 7614/25203/40367 7615/25204/40368\nf 7622/25205/40369 7621/25206/40370 7620/25207/40371\nf 7620/25208/40372 7623/25209/40373 7622/25210/40374\nf 7623/25211/40375 7620/25212/40376 7618/25213/40377\nf 7618/25214/40378 7624/25215/40379 7623/25216/40380\nf 7624/25217/40381 7618/25218/40382 7619/25219/40383\nf 7619/25220/40384 7625/25221/40385 7624/25222/40386\nf 7626/25223/40387 7624/25224/40388 7625/25225/40389\nf 7625/25226/40390 7627/25227/40391 7626/25228/40392\nf 7624/25229/40393 7626/25230/40394 7628/25231/40395\nf 7628/25232/40396 7623/25233/40397 7624/25234/40398\nf 7623/25235/40399 7628/25236/40400 7629/25237/40401\nf 7629/25238/40402 7622/25239/40403 7623/25240/40404\nf 7883/25241/40405 7629/25242/40406 7628/25243/40407\nf 7628/25244/40408 7881/25245/40409 7883/25246/40410\nf 7881/25247/40411 7628/25248/40412 7626/25249/40413\nf 7626/25250/40414 7882/25251/40415 7881/25252/40416\nf 7882/25253/40417 7626/25254/40418 7627/25255/40419\nf 7627/25256/40420 8061/25257/40421 7882/25258/40422\nf 7621/25259/40423 7622/25260/40424 7630/25261/40425\nf 7630/25262/40426 7631/25263/40427 7621/25264/40428\nf 7614/25265/40429 7621/25266/40430 7631/25267/40431\nf 7631/25268/40432 7632/25269/40433 7614/25270/40434\nf 7613/25271/40435 7614/25272/40436 7632/25273/40437\nf 7632/25274/40438 7633/25275/40439 7613/25276/40440\nf 7606/25277/40441 7613/25278/40442 7633/25279/40443\nf 7633/25280/40444 7634/25281/40445 7606/25282/40446\nf 7604/25283/40447 7606/25284/40448 7634/25285/40449\nf 7634/25286/40450 7635/25287/40451 7604/25288/40452\nf 7605/25289/40453 7604/25290/40454 7635/25291/40455\nf 7635/25292/40456 7636/25293/40457 7605/25294/40458\nf 7636/25295/40459 7635/25296/40460 7637/25297/40461\nf 7637/25298/40462 7638/25299/40463 7636/25300/40464\nf 7638/25301/40465 7637/25302/40466 7639/25303/40467\nf 7639/25304/40468 7640/25305/40469 7638/25306/40470\nf 7640/25307/40471 7639/25308/40472 7641/25309/40473\nf 7641/25310/40474 7642/25311/40475 7640/25312/40476\nf 7643/25313/40477 7641/25314/40478 7639/25315/40479\nf 7639/25316/40480 7644/25317/40481 7643/25318/40482\nf 7644/25319/40483 7639/25320/40484 7637/25321/40485\nf 7637/25322/40486 7645/25323/40487 7644/25324/40488\nf 7645/25325/40489 7637/25326/40490 7635/25327/40491\nf 7635/25328/40492 7634/25329/40493 7645/25330/40494\nf 7634/25331/40495 7633/25332/40496 7646/25333/40497\nf 7646/25334/40498 7645/25335/40499 7634/25336/40500\nf 7645/25337/40501 7646/25338/40502 7647/25339/40503\nf 7647/25340/40504 7644/25341/40505 7645/25342/40506\nf 7644/25343/40507 7647/25344/40508 7648/25345/40509\nf 7648/25346/40510 7643/25347/40511 7644/25348/40512\nf 7649/25349/40513 7648/25350/40514 7647/25351/40515\nf 7647/25352/40516 7650/25353/40517 7649/25354/40518\nf 7650/25355/40519 7647/25356/40520 7646/25357/40521\nf 7646/25358/40522 7651/25359/40523 7650/25360/40524\nf 7651/25361/40525 7646/25362/40526 7633/25363/40527\nf 7633/25364/40528 7632/25365/40529 7651/25366/40530\nf 7652/25367/40531 7651/25368/40532 7632/25369/40533\nf 7632/25370/40534 7631/25371/40535 7652/25372/40536\nf 7651/25373/40537 7652/25374/40538 7653/25375/40539\nf 7653/25376/40540 7650/25377/40541 7651/25378/40542\nf 7650/25379/40543 7653/25380/40544 7654/25381/40545\nf 7654/25382/40546 7649/25383/40547 7650/25384/40548\nf 7655/25385/40549 7654/25386/40550 7653/25387/40551\nf 7653/25388/40552 7656/25389/40553 7655/25390/40554\nf 7656/25391/40555 7653/25392/40556 7652/25393/40557\nf 7652/25394/40558 7657/25395/40559 7656/25396/40560\nf 7657/25397/40561 7652/25398/40562 7631/25399/40563\nf 7631/25400/40564 7630/25401/40565 7657/25402/40566\nf 7658/25403/40567 7657/25404/40568 7630/25405/40569\nf 7630/25406/40570 7659/25407/40571 7658/25408/40572\nf 7659/25409/40573 7630/25410/40574 7622/25411/40575\nf 7622/25412/40576 7629/25413/40577 7659/25414/40578\nf 7657/25415/40579 7658/25416/40580 7660/25417/40581\nf 7660/25418/40582 7656/25419/40583 7657/25420/40584\nf 7656/25421/40585 7660/25422/40586 7661/25423/40587\nf 7661/25424/40588 7655/25425/40589 7656/25426/40590\nf 7662/25427/40591 7661/25428/40592 7660/25429/40593\nf 7660/25430/40594 7663/25431/40595 7662/25432/40596\nf 7663/25433/40597 7660/25434/40598 7658/25435/40599\nf 7658/25436/40600 7664/25437/40601 7663/25438/40602\nf 7664/25439/40603 7658/25440/40604 7659/25441/40605\nf 7659/25442/40606 7665/25443/40607 7664/25444/40608\nf 7665/25445/40609 7659/25446/40610 7629/25447/40611\nf 7629/25448/40612 7883/25449/40613 7665/25450/40614\nf 7666/25451/40615 7665/25452/40616 7883/25453/40617\nf 7883/25454/40618 7878/25455/40619 7666/25456/40620\nf 7665/25457/40621 7666/25458/40622 7667/25459/40623\nf 7667/25460/40624 7664/25461/40625 7665/25462/40626\nf 7874/25463/40627 7663/25464/40628 7664/25465/40629\nf 7664/25466/40630 7667/25467/40631 7874/25468/40632\nf 7872/25469/40633 7662/25470/40634 7663/25471/40635\nf 7663/25472/40636 7874/25473/40637 7872/25474/40638\nf 7661/25475/40639 7662/25476/40640 7668/25477/40641\nf 7668/25478/40642 7669/25479/40643 7661/25480/40644\nf 7655/25481/40645 7661/25482/40646 7669/25483/40647\nf 7669/25484/40648 7670/25485/40649 7655/25486/40650\nf 7654/25487/40651 7655/25488/40652 7670/25489/40653\nf 7670/25490/40654 7671/25491/40655 7654/25492/40656\nf 7649/25493/40657 7654/25494/40658 7671/25495/40659\nf 7671/25496/40660 7672/25497/40661 7649/25498/40662\nf 7648/25499/40663 7649/25500/40664 7672/25501/40665\nf 7672/25502/40666 7673/25503/40667 7648/25504/40668\nf 7643/25505/40669 7648/25506/40670 7673/25507/40671\nf 7673/25508/40672 7674/25509/40673 7643/25510/40674\nf 7641/25511/40675 7643/25512/40676 7674/25513/40677\nf 7674/25514/40678 7675/25515/40679 7641/25516/40680\nf 7642/25517/40681 7641/25518/40682 7675/25519/40683\nf 7675/25520/40684 7676/25521/40685 7642/25522/40686\nf 7676/25523/40687 7675/25524/40688 7677/25525/40689\nf 7677/25526/40690 7678/25527/40691 7676/25528/40692\nf 7678/25529/40693 7677/25530/40694 7679/25531/40695\nf 7679/25532/40696 7680/25533/40697 7678/25534/40698\nf 7680/25535/40699 7679/25536/40700 7681/25537/40701\nf 7681/25538/40702 7682/25539/40703 7680/25540/40704\nf 7683/25541/40705 7681/25542/40706 7679/25543/40707\nf 7679/25544/40708 7684/25545/40709 7683/25546/40710\nf 7684/25547/40711 7679/25548/40712 7677/25549/40713\nf 7677/25550/40714 7685/25551/40715 7684/25552/40716\nf 7685/25553/40717 7677/25554/40718 7675/25555/40719\nf 7675/25556/40720 7674/25557/40721 7685/25558/40722\nf 7674/25559/40723 7673/25560/40724 7686/25561/40725\nf 7686/25562/40726 7685/25563/40727 7674/25564/40728\nf 7685/25565/40729 7686/25566/40730 7687/25567/40731\nf 7687/25568/40732 7684/25569/40733 7685/25570/40734\nf 7684/25571/40735 7687/25572/40736 7688/25573/40737\nf 7688/25574/40738 7683/25575/40739 7684/25576/40740\nf 7689/25577/40741 7688/25578/40742 7687/25579/40743\nf 7687/25580/40744 7690/25581/40745 7689/25582/40746\nf 7690/25583/40747 7687/25584/40748 7686/25585/40749\nf 7686/25586/40750 7691/25587/40751 7690/25588/40752\nf 7691/25589/40753 7686/25590/40754 7673/25591/40755\nf 7673/25592/40756 7672/25593/40757 7691/25594/40758\nf 7692/25595/40759 7691/25596/40760 7672/25597/40761\nf 7672/25598/40762 7671/25599/40763 7692/25600/40764\nf 7691/25601/40765 7692/25602/40766 7693/25603/40767\nf 7693/25604/40768 7690/25605/40769 7691/25606/40770\nf 7690/25607/40771 7693/25608/40772 7694/25609/40773\nf 7694/25610/40774 7689/25611/40775 7690/25612/40776\nf 7695/25613/40777 7694/25614/40778 7693/25615/40779\nf 7693/25616/40780 7696/25617/40781 7695/25618/40782\nf 7696/25619/40783 7693/25620/40784 7692/25621/40785\nf 7692/25622/40786 7697/25623/40787 7696/25624/40788\nf 7697/25625/40789 7692/25626/40790 7671/25627/40791\nf 7671/25628/40792 7670/25629/40793 7697/25630/40794\nf 7698/25631/40795 7697/25632/40796 7670/25633/40797\nf 7670/25634/40798 7669/25635/40799 7698/25636/40800\nf 7697/25637/40801 7698/25638/40802 7699/25639/40803\nf 7699/25640/40804 7696/25641/40805 7697/25642/40806\nf 7696/25643/40807 7699/25644/40808 7700/25645/40809\nf 7700/25646/40810 7695/25647/40811 7696/25648/40812\nf 7701/25649/40813 7700/25650/40814 7699/25651/40815\nf 7699/25652/40816 7702/25653/40817 7701/25654/40818\nf 7702/25655/40819 7699/25656/40820 7698/25657/40821\nf 7698/25658/40822 7703/25659/40823 7702/25660/40824\nf 7703/25661/40825 7698/25662/40826 7669/25663/40827\nf 7669/25664/40828 7668/25665/40829 7703/25666/40830\nf 7704/25667/40831 7703/25668/40832 7668/25669/40833\nf 7668/25670/40834 7870/25671/40835 7704/25672/40836\nf 7705/25673/40837 7702/25674/40838 7703/25675/40839\nf 7703/25676/40840 7704/25677/40841 7705/25678/40842\nf 7866/25679/40843 7701/25680/40844 7702/25681/40845\nf 7702/25682/40846 7705/25683/40847 7866/25684/40848\nf 7700/25685/40849 7701/25686/40850 7706/25687/40851\nf 7706/25688/40852 7707/25689/40853 7700/25690/40854\nf 7695/25691/40855 7700/25692/40856 7707/25693/40857\nf 7707/25694/40858 7708/25695/40859 7695/25696/40860\nf 7694/25697/40861 7695/25698/40862 7708/25699/40863\nf 7708/25700/40864 7709/25701/40865 7694/25702/40866\nf 7689/25703/40867 7694/25704/40868 7709/25705/40869\nf 7709/25706/40870 7710/25707/40871 7689/25708/40872\nf 7688/25709/40873 7689/25710/40874 7710/25711/40875\nf 7710/25712/40876 7711/25713/40877 7688/25714/40878\nf 7683/25715/40879 7688/25716/40880 7711/25717/40881\nf 7711/25718/40882 7712/25719/40883 7683/25720/40884\nf 7681/25721/40885 7683/25722/40886 7712/25723/40887\nf 7712/25724/40888 7713/25725/40889 7681/25726/40890\nf 7682/25727/40891 7681/25728/40892 7713/25729/40893\nf 7713/25730/40894 7714/25731/40895 7682/25732/40896\nf 7714/25733/40897 7713/25734/40898 7715/25735/40899\nf 7715/25736/40900 7716/25737/40901 7714/25738/40902\nf 7716/25739/40903 7715/25740/40904 7717/25741/40905\nf 7717/25742/40906 7718/25743/40907 7716/25744/40908\nf 7718/25745/40909 7717/25746/40910 7719/25747/40911\nf 7719/25748/40912 7720/25749/40913 7718/25750/40914\nf 7721/25751/40915 7719/25752/40916 7717/25753/40917\nf 7717/25754/40918 7722/25755/40919 7721/25756/40920\nf 7722/25757/40921 7717/25758/40922 7715/25759/40923\nf 7715/25760/40924 7723/25761/40925 7722/25762/40926\nf 7723/25763/40927 7715/25764/40928 7713/25765/40929\nf 7713/25766/40930 7712/25767/40931 7723/25768/40932\nf 7712/25769/40933 7711/25770/40934 7724/25771/40935\nf 7724/25772/40936 7723/25773/40937 7712/25774/40938\nf 7723/25775/40939 7724/25776/40940 7725/25777/40941\nf 7725/25778/40942 7722/25779/40943 7723/25780/40944\nf 7722/25781/40945 7725/25782/40946 7726/25783/40947\nf 7726/25784/40948 7721/25785/40949 7722/25786/40950\nf 7727/25787/40951 7726/25788/40952 7725/25789/40953\nf 7725/25790/40954 7728/25791/40955 7727/25792/40956\nf 7728/25793/40957 7725/25794/40958 7724/25795/40959\nf 7724/25796/40960 7729/25797/40961 7728/25798/40962\nf 7729/25799/40963 7724/25800/40964 7711/25801/40965\nf 7711/25802/40966 7710/25803/40967 7729/25804/40968\nf 7730/25805/40969 7729/25806/40970 7710/25807/40971\nf 7710/25808/40972 7709/25809/40973 7730/25810/40974\nf 7729/25811/40975 7730/25812/40976 7731/25813/40977\nf 7731/25814/40978 7728/25815/40979 7729/25816/40980\nf 7728/25817/40981 7731/25818/40982 7732/25819/40983\nf 7732/25820/40984 7727/25821/40985 7728/25822/40986\nf 7733/25823/40987 7732/25824/40988 7731/25825/40989\nf 7731/25826/40990 7734/25827/40991 7733/25828/40992\nf 7734/25829/40993 7731/25830/40994 7730/25831/40995\nf 7730/25832/40996 7735/25833/40997 7734/25834/40998\nf 7735/25835/40999 7730/25836/41000 7709/25837/41001\nf 7709/25838/41002 7708/25839/41003 7735/25840/41004\nf 7736/25841/41005 7735/25842/41006 7708/25843/41007\nf 7708/25844/41008 7707/25845/41009 7736/25846/41010\nf 7735/25847/41011 7736/25848/41012 7737/25849/41013\nf 7737/25850/41014 7734/25851/41015 7735/25852/41016\nf 7734/25853/41017 7737/25854/41018 7738/25855/41019\nf 7738/25856/41020 7733/25857/41021 7734/25858/41022\nf 7739/25859/41023 7738/25860/41024 7737/25861/41025\nf 7737/25862/41026 7740/25863/41027 7739/25864/41028\nf 7740/25865/41029 7737/25866/41030 7736/25867/41031\nf 7736/25868/41032 7741/25869/41033 7740/25870/41034\nf 7741/25871/41035 7736/25872/41036 7707/25873/41037\nf 7707/25874/41038 7706/25875/41039 7741/25876/41040\nf 7742/25877/41041 7741/25878/41042 7706/25879/41043\nf 7706/25880/41044 7743/25881/41045 7742/25882/41046\nf 7862/25883/41047 7740/25884/41048 7741/25885/41049\nf 7741/25886/41050 7742/25887/41051 7862/25888/41052\nf 7744/25889/41053 7739/25890/41054 7740/25891/41055\nf 7740/25892/41056 7862/25893/41057 7744/25894/41058\nf 7738/25895/41059 7739/25896/41060 7745/25897/41061\nf 7745/25898/41062 7746/25899/41063 7738/25900/41064\nf 7733/25901/41065 7738/25902/41066 7746/25903/41067\nf 7746/25904/41068 7747/25905/41069 7733/25906/41070\nf 7732/25907/41071 7733/25908/41072 7747/25909/41073\nf 7747/25910/41074 7748/25911/41075 7732/25912/41076\nf 7727/25913/41077 7732/25914/41078 7748/25915/41079\nf 7748/25916/41080 7749/25917/41081 7727/25918/41082\nf 7726/25919/41083 7727/25920/41084 7749/25921/41085\nf 7749/25922/41086 7750/25923/41087 7726/25924/41088\nf 7721/25925/41089 7726/25926/41090 7750/25927/41091\nf 7750/25928/41092 7751/25929/41093 7721/25930/41094\nf 7719/25931/41095 7721/25932/41096 7751/25933/41097\nf 7751/25934/41098 7752/25935/41099 7719/25936/41100\nf 7720/25937/41101 7719/25938/41102 7752/25939/41103\nf 7752/25940/41104 7753/25941/41105 7720/25942/41106\nf 7753/25943/41107 7752/25944/41108 7754/25945/41109\nf 7754/25946/41110 7755/25947/41111 7753/25948/41112\nf 7755/25949/41113 7754/25950/41114 7756/25951/41115\nf 7756/25952/41116 7757/25953/41117 7755/25954/41118\nf 7757/25955/41119 7756/25956/41120 7758/25957/41121\nf 7758/25958/41122 7759/25959/41123 7757/25960/41124\nf 7760/25961/41125 7758/25962/41126 7756/25963/41127\nf 7756/25964/41128 7761/25965/41129 7760/25966/41130\nf 7761/25967/41131 7756/25968/41132 7754/25969/41133\nf 7754/25970/41134 7762/25971/41135 7761/25972/41136\nf 7762/25973/41137 7754/25974/41138 7752/25975/41139\nf 7752/25976/41140 7751/25977/41141 7762/25978/41142\nf 7751/25979/41143 7750/25980/41144 7763/25981/41145\nf 7763/25982/41146 7762/25983/41147 7751/25984/41148\nf 7762/25985/41149 7763/25986/41150 7764/25987/41151\nf 7764/25988/41152 7761/25989/41153 7762/25990/41154\nf 7761/25991/41155 7764/25992/41156 7765/25993/41157\nf 7765/25994/41158 7760/25995/41159 7761/25996/41160\nf 7766/25997/41161 7765/25998/41162 7764/25999/41163\nf 7764/26000/41164 7767/26001/41165 7766/26002/41166\nf 7767/26003/41167 7764/26004/41168 7763/26005/41169\nf 7763/26006/41170 7768/26007/41171 7767/26008/41172\nf 7768/26009/41173 7763/26010/41174 7750/26011/41175\nf 7750/26012/41176 7749/26013/41177 7768/26014/41178\nf 7769/26015/41179 7768/26016/41180 7749/26017/41181\nf 7749/26018/41182 7748/26019/41183 7769/26020/41184\nf 7768/26021/41185 7769/26022/41186 7770/26023/41187\nf 7770/26024/41188 7767/26025/41189 7768/26026/41190\nf 7767/26027/41191 7770/26028/41192 7771/26029/41193\nf 7771/26030/41194 7766/26031/41195 7767/26032/41196\nf 7772/26033/41197 7771/26034/41198 7770/26035/41199\nf 7770/26036/41200 7773/26037/41201 7772/26038/41202\nf 7773/26039/41203 7770/26040/41204 7769/26041/41205\nf 7769/26042/41206 7774/26043/41207 7773/26044/41208\nf 7774/26045/41209 7769/26046/41210 7748/26047/41211\nf 7748/26048/41212 7747/26049/41213 7774/26050/41214\nf 7775/26051/41215 7774/26052/41216 7747/26053/41217\nf 7747/26054/41218 7746/26055/41219 7775/26056/41220\nf 7774/26057/41221 7775/26058/41222 7776/26059/41223\nf 7776/26060/41224 7773/26061/41225 7774/26062/41226\nf 7773/26063/41227 7776/26064/41228 7777/26065/41229\nf 7777/26066/41230 7772/26067/41231 7773/26068/41232\nf 7778/26069/41233 7777/26070/41234 7776/26071/41235\nf 7776/26072/41236 7779/26073/41237 7778/26074/41238\nf 7779/26075/41239 7776/26076/41240 7775/26077/41241\nf 7775/26078/41242 7780/26079/41243 7779/26080/41244\nf 7780/26081/41245 7775/26082/41246 7746/26083/41247\nf 7746/26084/41248 7745/26085/41249 7780/26086/41250\nf 7858/26087/41251 7780/26088/41252 7745/26089/41253\nf 7745/26090/41254 8009/26091/41255 7858/26092/41256\nf 7781/26093/41257 7779/26094/41258 7780/26095/41259\nf 7780/26096/41260 7858/26097/41261 7781/26098/41262\nf 7782/26099/41263 7778/26100/41264 7779/26101/41265\nf 7779/26102/41266 7781/26103/41267 7782/26104/41268\nf 7777/26105/41269 7778/26106/41270 7783/26107/41271\nf 7783/26108/41272 7784/26109/41273 7777/26110/41274\nf 7772/26111/41275 7777/26112/41276 7784/26113/41277\nf 7784/26114/41278 7785/26115/41279 7772/26116/41280\nf 7771/26117/41281 7772/26118/41282 7785/26119/41283\nf 7785/26120/41284 7786/26121/41285 7771/26122/41286\nf 7766/26123/41287 7771/26124/41288 7786/26125/41289\nf 7786/26126/41290 7787/26127/41291 7766/26128/41292\nf 7765/26129/41293 7766/26130/41294 7787/26131/41295\nf 7787/26132/41296 7788/26133/41297 7765/26134/41298\nf 7760/26135/41299 7765/26136/41300 7788/26137/41301\nf 7788/26138/41302 7789/26139/41303 7760/26140/41304\nf 7758/26141/41305 7760/26142/41306 7789/26143/41307\nf 7789/26144/41308 7790/26145/41309 7758/26146/41310\nf 7759/26147/41311 7758/26148/41312 7790/26149/41313\nf 7790/26150/41314 7791/26151/41315 7759/26152/41316\nf 7791/26153/41317 7790/26154/41318 7792/26155/41319\nf 7792/26156/41320 7793/26157/41321 7791/26158/41322\nf 7793/26159/41323 7792/26160/41324 7794/26161/41325\nf 7794/26162/41326 7795/26163/41327 7793/26164/41328\nf 7795/26165/41329 7794/26166/41330 7796/26167/41331\nf 7796/26168/41332 7797/26169/41333 7795/26170/41334\nf 7798/26171/41335 7796/26172/41336 7794/26173/41337\nf 7794/26174/41338 7799/26175/41339 7798/26176/41340\nf 7799/26177/41341 7794/26178/41342 7792/26179/41343\nf 7792/26180/41344 7800/26181/41345 7799/26182/41346\nf 7800/26183/41347 7792/26184/41348 7790/26185/41349\nf 7790/26186/41350 7789/26187/41351 7800/26188/41352\nf 7789/26189/41353 7788/26190/41354 7801/26191/41355\nf 7801/26192/41356 7800/26193/41357 7789/26194/41358\nf 7800/26195/41359 7801/26196/41360 7802/26197/41361\nf 7802/26198/41362 7799/26199/41363 7800/26200/41364\nf 7799/26201/41365 7802/26202/41366 7803/26203/41367\nf 7803/26204/41368 7798/26205/41369 7799/26206/41370\nf 7804/26207/41371 7803/26208/41372 7802/26209/41373\nf 7802/26210/41374 7805/26211/41375 7804/26212/41376\nf 7805/26213/41377 7802/26214/41378 7801/26215/41379\nf 7801/26216/41380 7806/26217/41381 7805/26218/41382\nf 7806/26219/41383 7801/26220/41384 7788/26221/41385\nf 7788/26222/41386 7787/26223/41387 7806/26224/41388\nf 7807/26225/41389 7806/26226/41390 7787/26227/41391\nf 7787/26228/41392 7786/26229/41393 7807/26230/41394\nf 7806/26231/41395 7807/26232/41396 7808/26233/41397\nf 7808/26234/41398 7805/26235/41399 7806/26236/41400\nf 7805/26237/41401 7808/26238/41402 7809/26239/41403\nf 7809/26240/41404 7804/26241/41405 7805/26242/41406\nf 7810/26243/41407 7809/26244/41408 7808/26245/41409\nf 7808/26246/41410 7811/26247/41411 7810/26248/41412\nf 7811/26249/41413 7808/26250/41414 7807/26251/41415\nf 7807/26252/41416 7812/26253/41417 7811/26254/41418\nf 7812/26255/41419 7807/26256/41420 7786/26257/41421\nf 7786/26258/41422 7785/26259/41423 7812/26260/41424\nf 7813/26261/41425 7812/26262/41426 7785/26263/41427\nf 7785/26264/41428 7784/26265/41429 7813/26266/41430\nf 7812/26267/41431 7813/26268/41432 7814/26269/41433\nf 7814/26270/41434 7811/26271/41435 7812/26272/41436\nf 7811/26273/41437 7814/26274/41438 7815/26275/41439\nf 7815/26276/41440 7810/26277/41441 7811/26278/41442\nf 8011/26279/41443 7815/26280/41444 7814/26281/41445\nf 7814/26282/41446 7816/26283/41447 8011/26284/41448\nf 7816/26285/41449 7814/26286/41450 7813/26287/41451\nf 7813/26288/41452 7817/26289/41453 7816/26290/41454\nf 7817/26291/41455 7813/26292/41456 7784/26293/41457\nf 7784/26294/41458 7783/26295/41459 7817/26296/41460\nf 7818/26297/41461 7817/26298/41462 7783/26299/41463\nf 7783/26300/41464 7854/26301/41465 7818/26302/41466\nf 8010/26303/41467 7816/26304/41468 7817/26305/41469\nf 7817/26306/41470 7818/26307/41471 8010/26308/41472\nf 7810/26309/41473 7815/26310/41474 7819/26311/41475\nf 7819/26312/41476 7815/26313/41477 8011/26314/41478\nf 8011/26315/41479 7820/26316/41480 7819/26317/41481\nf 7819/26318/41482 7820/26319/41483 7821/26320/41484\nf 7821/26321/41485 7822/26322/41486 7819/26323/41487\nf 7819/26324/41488 7822/26325/41489 7823/26326/41490\nf 7823/26327/41491 7824/26328/41492 7819/26329/41493\nf 7825/26330/41494 7824/26331/41495 7823/26332/41496\nf 7823/26333/41497 7826/26334/41498 7825/26335/41499\nf 7825/26336/41500 7826/26337/41501 7827/26338/41502\nf 7827/26339/41503 7828/26340/41504 7825/26341/41505\nf 7829/26342/41506 7828/26343/41507 7827/26344/41508\nf 7827/26345/41509 7830/26346/41510 7829/26347/41511\nf 7829/26348/41512 7830/26349/41513 7831/26350/41514\nf 7831/26351/41515 7832/26352/41516 7829/26353/41517\nf 7833/26354/41518 7832/26355/41519 7831/26356/41520\nf 7831/26357/41521 7834/26358/41522 7833/26359/41523\nf 7833/26360/41524 7834/26361/41525 7835/26362/41526\nf 7835/26363/41527 7836/26364/41528 7833/26365/41529\nf 7833/26366/41530 7836/26367/41531 7797/26368/41532\nf 7797/26369/41533 7796/26370/41534 7833/26371/41535\nf 7833/26372/41536 7796/26373/41537 7798/26374/41538\nf 7798/26375/41539 7832/26376/41540 7833/26377/41541\nf 7829/26378/41542 7832/26379/41543 7798/26380/41544\nf 7798/26381/41545 7803/26382/41546 7829/26383/41547\nf 7829/26384/41548 7803/26385/41549 7804/26386/41550\nf 7804/26387/41551 7828/26388/41552 7829/26389/41553\nf 7825/26390/41554 7828/26391/41555 7804/26392/41556\nf 7804/26393/41557 7809/26394/41558 7825/26395/41559\nf 7825/26396/41560 7809/26397/41561 7810/26398/41562\nf 7810/26399/41563 7824/26400/41564 7825/26401/41565\nf 7819/26402/41566 7824/26403/41567 7810/26404/41568\nf 7837/26405/41569 7836/26406/41570 7835/26407/41571\nf 7835/26408/41572 7838/26409/41573 7837/26410/41574\nf 7837/26411/41575 7838/26412/41576 7839/26413/41577\nf 7839/26414/41578 7840/26415/41579 7837/26416/41580\nf 7841/26417/41581 7840/26418/41582 7839/26419/41583\nf 7839/26420/41584 7842/26421/41585 7841/26422/41586\nf 7841/26423/41587 7842/26424/41588 7843/26425/41589\nf 7843/26426/41590 7844/26427/41591 7841/26428/41592\nf 7845/26429/41593 7844/26430/41594 7843/26431/41595\nf 7843/26432/41596 7846/26433/41597 7845/26434/41598\nf 7845/26435/41599 7846/26436/41600 7847/26437/41601\nf 7847/26438/41602 7848/26439/41603 7845/26440/41604\nf 7849/26441/41605 7848/26442/41606 7847/26443/41607\nf 7847/26444/41608 8012/26445/41609 7849/26446/41610\nf 7850/26447/41611 7848/26448/41612 7849/26449/41613\nf 7845/26450/41614 7848/26451/41615 7850/26452/41616\nf 7849/26453/41617 7851/26454/41618 7850/26455/41619\nf 7850/26456/41620 7851/26457/41621 8010/26458/41622\nf 8010/26459/41623 7852/26460/41624 7850/26461/41625\nf 7852/26462/41626 8010/26463/41627 7818/26464/41628\nf 7818/26465/41629 7853/26466/41630 7852/26467/41631\nf 7853/26468/41632 7818/26469/41633 7854/26470/41634\nf 7854/26471/41635 7855/26472/41636 7853/26473/41637\nf 7855/26474/41638 7854/26475/41639 7782/26476/41640\nf 7782/26477/41641 7856/26478/41642 7855/26479/41643\nf 7856/26480/41644 7782/26481/41645 7781/26482/41646\nf 7781/26483/41647 7857/26484/41648 7856/26485/41649\nf 7857/26486/41650 7781/26487/41651 7858/26488/41652\nf 7858/26489/41653 7859/26490/41654 7857/26491/41655\nf 7859/26492/41656 7858/26493/41657 8009/26494/41658\nf 8009/26495/41659 7860/26496/41660 7859/26497/41661\nf 7860/26498/41662 8009/26499/41663 7744/26500/41664\nf 7744/26501/41665 7861/26502/41666 7860/26503/41667\nf 7861/26504/41668 7744/26505/41669 7862/26506/41670\nf 7862/26507/41671 7863/26508/41672 7861/26509/41673\nf 7863/26510/41674 7862/26511/41675 7742/26512/41676\nf 7742/26513/41677 7864/26514/41678 7863/26515/41679\nf 7864/26516/41680 7742/26517/41681 7743/26518/41682\nf 7743/26519/41683 7865/26520/41684 7864/26521/41685\nf 7865/26522/41686 7743/26523/41687 7866/26524/41688\nf 7866/26525/41689 7867/26526/41690 7865/26527/41691\nf 7867/26528/41692 7866/26529/41693 7705/26530/41694\nf 7705/26531/41695 7868/26532/41696 7867/26533/41697\nf 7868/26534/41698 7705/26535/41699 7704/26536/41700\nf 7704/26537/41701 7869/26538/41702 7868/26539/41703\nf 7869/26540/41704 7704/26541/41705 7870/26542/41706\nf 7870/26543/41707 7871/26544/41708 7869/26545/41709\nf 7871/26546/41710 7870/26547/41711 7872/26548/41712\nf 7872/26549/41713 7873/26550/41714 7871/26551/41715\nf 7873/26552/41716 7872/26553/41717 7874/26554/41718\nf 7874/26555/41719 7875/26556/41720 7873/26557/41721\nf 7875/26558/41722 7874/26559/41723 7667/26560/41724\nf 7667/26561/41725 7876/26562/41726 7875/26563/41727\nf 7876/26564/41728 7667/26565/41729 7666/26566/41730\nf 7666/26567/41731 7877/26568/41732 7876/26569/41733\nf 7877/26570/41734 7666/26571/41735 7878/26572/41736\nf 7878/26573/41737 7879/26574/41738 7877/26575/41739\nf 7879/26576/41740 7878/26577/41741 7880/26578/41742\nf 7881/26579/41743 7880/26580/41744 7878/26581/41745\nf 7880/26582/41746 7881/26583/41747 7882/26584/41748\nf 7882/26585/41749 8008/26586/41750 7880/26587/41751\nf 7878/26588/41752 7883/26589/41753 7881/26590/41754\nf 7880/26591/41755 7884/26592/41756 7879/26593/41757\nf 7884/26594/41758 7880/26595/41759 8008/26596/41760\nf 8008/26597/41761 7885/26598/41762 7884/26599/41763\nf 7885/26600/41764 8008/26601/41765 7886/26602/41766\nf 7886/26603/41767 7887/26604/41768 7885/26605/41769\nf 7888/26606/41770 7885/26607/41771 7887/26608/41772\nf 7887/26609/41773 7889/26610/41774 7888/26611/41775\nf 7885/26612/41776 7888/26613/41777 7890/26614/41778\nf 7890/26615/41779 7884/26616/41780 7885/26617/41781\nf 7884/26618/41782 7890/26619/41783 7891/26620/41784\nf 7891/26621/41785 7879/26622/41786 7884/26623/41787\nf 7892/26624/41788 7891/26625/41789 7890/26626/41790\nf 7890/26627/41791 7893/26628/41792 7892/26629/41793\nf 7893/26630/41794 7890/26631/41795 7888/26632/41796\nf 7888/26633/41797 7894/26634/41798 7893/26635/41799\nf 7894/26636/41800 7888/26637/41801 7889/26638/41802\nf 7889/26639/41803 7895/26640/41804 7894/26641/41805\nf 7896/26642/41806 7894/26643/41807 7895/26644/41808\nf 7895/26645/41809 7897/26646/41810 7896/26647/41811\nf 7894/26648/41812 7896/26649/41813 7898/26650/41814\nf 7898/26651/41815 7893/26652/41816 7894/26653/41817\nf 7893/26654/41818 7898/26655/41819 7899/26656/41820\nf 7899/26657/41821 7892/26658/41822 7893/26659/41823\nf 7900/26660/41824 7899/26661/41825 7898/26662/41826\nf 7898/26663/41827 7901/26664/41828 7900/26665/41829\nf 7901/26666/41830 7898/26667/41831 7896/26668/41832\nf 7896/26669/41833 7902/26670/41834 7901/26671/41835\nf 7902/26672/41836 7896/26673/41837 7897/26674/41838\nf 7897/26675/41839 7903/26676/41840 7902/26677/41841\nf 7904/26678/41842 7902/26679/41843 7903/26680/41844\nf 7903/26681/41845 7905/26682/41846 7904/26683/41847\nf 7902/26684/41848 7904/26685/41849 7906/26686/41850\nf 7906/26687/41851 7901/26688/41852 7902/26689/41853\nf 7901/26690/41854 7906/26691/41855 7907/26692/41856\nf 7907/26693/41857 7900/26694/41858 7901/26695/41859\nf 7605/26696/41860 7907/26697/41861 7906/26698/41862\nf 7906/26699/41863 7603/26700/41864 7605/26701/41865\nf 7603/26702/41866 7906/26703/41867 7904/26704/41868\nf 7904/26705/41869 7599/26706/41870 7603/26707/41871\nf 7599/26708/41872 7904/26709/41873 7905/26710/41874\nf 7905/26711/41875 7601/26712/41876 7599/26713/41877\nf 7899/26714/41878 7900/26715/41879 7908/26716/41880\nf 7908/26717/41881 7909/26718/41882 7899/26719/41883\nf 7892/26720/41884 7899/26721/41885 7909/26722/41886\nf 7909/26723/41887 7910/26724/41888 7892/26725/41889\nf 7891/26726/41890 7892/26727/41891 7910/26728/41892\nf 7910/26729/41893 7911/26730/41894 7891/26731/41895\nf 7879/26732/41896 7891/26733/41897 7911/26734/41898\nf 7911/26735/41899 7877/26736/41900 7879/26737/41901\nf 7877/26738/41902 7911/26739/41903 7912/26740/41904\nf 7912/26741/41905 7876/26742/41906 7877/26743/41907\nf 7876/26744/41908 7912/26745/41909 7913/26746/41910\nf 7913/26747/41911 7875/26748/41912 7876/26749/41913\nf 7875/26750/41914 7913/26751/41915 7914/26752/41916\nf 7914/26753/41917 7873/26754/41918 7875/26755/41919\nf 7915/26756/41920 7914/26757/41921 7913/26758/41922\nf 7913/26759/41923 7916/26760/41924 7915/26761/41925\nf 7916/26762/41926 7913/26763/41927 7912/26764/41928\nf 7912/26765/41929 7917/26766/41930 7916/26767/41931\nf 7917/26768/41932 7912/26769/41933 7911/26770/41934\nf 7911/26771/41935 7910/26772/41936 7917/26773/41937\nf 7910/26774/41938 7909/26775/41939 7918/26776/41940\nf 7918/26777/41941 7917/26778/41942 7910/26779/41943\nf 7917/26780/41944 7918/26781/41945 7919/26782/41946\nf 7919/26783/41947 7916/26784/41948 7917/26785/41949\nf 7916/26786/41950 7919/26787/41951 7920/26788/41952\nf 7920/26789/41953 7915/26790/41954 7916/26791/41955\nf 7921/26792/41956 7920/26793/41957 7919/26794/41958\nf 7919/26795/41959 7922/26796/41960 7921/26797/41961\nf 7922/26798/41962 7919/26799/41963 7918/26800/41964\nf 7918/26801/41965 7923/26802/41966 7922/26803/41967\nf 7923/26804/41968 7918/26805/41969 7909/26806/41970\nf 7909/26807/41971 7908/26808/41972 7923/26809/41973\nf 7924/26810/41974 7923/26811/41975 7908/26812/41976\nf 7908/26813/41977 7925/26814/41978 7924/26815/41979\nf 7925/26816/41980 7908/26817/41981 7900/26818/41982\nf 7900/26819/41983 7907/26820/41984 7925/26821/41985\nf 7923/26822/41986 7924/26823/41987 7926/26824/41988\nf 7926/26825/41989 7922/26826/41990 7923/26827/41991\nf 7922/26828/41992 7926/26829/41993 7927/26830/41994\nf 7927/26831/41995 7921/26832/41996 7922/26833/41997\nf 7642/26834/41998 7927/26835/41999 7926/26836/42000\nf 7926/26837/42001 7640/26838/42002 7642/26839/42003\nf 7640/26840/42004 7926/26841/42005 7924/26842/42006\nf 7924/26843/42007 7638/26844/42008 7640/26845/42009\nf 7638/26846/42010 7924/26847/42011 7925/26848/42012\nf 7925/26849/42013 7636/26850/42014 7638/26851/42015\nf 7636/26852/42016 7925/26853/42017 7907/26854/42018\nf 7907/26855/42019 7605/26856/42020 7636/26857/42021\nf 7920/26858/42022 7921/26859/42023 7928/26860/42024\nf 7921/26861/42025 7927/26862/42026 7929/26863/42027\nf 7929/26864/42028 7928/26865/42029 7921/26866/42030\nf 7928/26867/42031 7929/26868/42032 7930/26869/42033\nf 7930/26870/42034 7931/26871/42035 7928/26872/42036\nf 7932/26873/42037 7928/26874/42038 7931/26875/42039\nf 7931/26876/42040 7933/26877/42041 7932/26878/42042\nf 7934/26879/42043 7932/26880/42044 7933/26881/42045\nf 7932/26882/42046 7934/26883/42047 7915/26884/42048\nf 7914/26885/42049 7915/26886/42050 7934/26887/42051\nf 7934/26888/42052 7935/26889/42053 7914/26890/42054\nf 7873/26891/42055 7914/26892/42056 7935/26893/42057\nf 7935/26894/42058 7871/26895/42059 7873/26896/42060\nf 7871/26897/42061 7935/26898/42062 7936/26899/42063\nf 7936/26900/42064 7869/26901/42065 7871/26902/42066\nf 7869/26903/42067 7936/26904/42068 7937/26905/42069\nf 7937/26906/42070 7868/26907/42071 7869/26908/42072\nf 7868/26909/42073 7937/26910/42074 7938/26911/42075\nf 7938/26912/42076 7867/26913/42077 7868/26914/42078\nf 7939/26915/42079 7938/26916/42080 7937/26917/42081\nf 7937/26918/42082 7940/26919/42083 7939/26920/42084\nf 7940/26921/42085 7937/26922/42086 7936/26923/42087\nf 7936/26924/42088 7941/26925/42089 7940/26926/42090\nf 7941/26927/42091 7936/26928/42092 7935/26929/42093\nf 7935/26930/42094 7934/26931/42095 7941/26932/42096\nf 7933/26933/42097 7941/26934/42098 7934/26935/42099\nf 7941/26936/42100 7933/26937/42101 7942/26938/42102\nf 7942/26939/42103 7940/26940/42104 7941/26941/42105\nf 7940/26942/42106 7942/26943/42107 7943/26944/42108\nf 7943/26945/42109 7939/26946/42110 7940/26947/42111\nf 7944/26948/42112 7943/26949/42113 7942/26950/42114\nf 7942/26951/42115 7945/26952/42116 7944/26953/42117\nf 7945/26954/42118 7942/26955/42119 7933/26956/42120\nf 7933/26957/42121 7931/26958/42122 7945/26959/42123\nf 7946/26960/42124 7945/26961/42125 7931/26962/42126\nf 7931/26963/42127 7930/26964/42128 7946/26965/42129\nf 7945/26966/42130 7946/26967/42131 7947/26968/42132\nf 7947/26969/42133 7944/26970/42134 7945/26971/42135\nf 7682/26972/42136 7947/26973/42137 7946/26974/42138\nf 7946/26975/42139 7680/26976/42140 7682/26977/42141\nf 7680/26978/42142 7946/26979/42143 7930/26980/42144\nf 7930/26981/42145 7678/26982/42146 7680/26983/42147\nf 7678/26984/42148 7930/26985/42149 7929/26986/42150\nf 7929/26987/42151 7676/26988/42152 7678/26989/42153\nf 7676/26990/42154 7929/26991/42155 7927/26992/42156\nf 7927/26993/42157 7642/26994/42158 7676/26995/42159\nf 7943/26996/42160 7944/26997/42161 7948/26998/42162\nf 7948/26999/42163 7949/27000/42164 7943/27001/42165\nf 7939/27002/42166 7943/27003/42167 7949/27004/42168\nf 7949/27005/42169 7950/27006/42170 7939/27007/42171\nf 7938/27008/42172 7939/27009/42173 7950/27010/42174\nf 7950/27011/42175 7951/27012/42176 7938/27013/42177\nf 7867/27014/42178 7938/27015/42179 7951/27016/42180\nf 7951/27017/42181 7865/27018/42182 7867/27019/42183\nf 7865/27020/42184 7951/27021/42185 7952/27022/42186\nf 7952/27023/42187 7864/27024/42188 7865/27025/42189\nf 7864/27026/42190 7952/27027/42191 7953/27028/42192\nf 7953/27029/42193 7863/27030/42194 7864/27031/42195\nf 7863/27032/42196 7953/27033/42197 7954/27034/42198\nf 7954/27035/42199 7861/27036/42200 7863/27037/42201\nf 7955/27038/42202 7954/27039/42203 7953/27040/42204\nf 7953/27041/42205 7956/27042/42206 7955/27043/42207\nf 7956/27044/42208 7953/27045/42209 7952/27046/42210\nf 7952/27047/42211 7957/27048/42212 7956/27049/42213\nf 7957/27050/42214 7952/27051/42215 7951/27052/42216\nf 7951/27053/42217 7950/27054/42218 7957/27055/42219\nf 7958/27056/42220 7957/27057/42221 7950/27058/42222\nf 7950/27059/42223 7949/27060/42224 7958/27061/42225\nf 7957/27062/42226 7958/27063/42227 7959/27064/42228\nf 7959/27065/42229 7956/27066/42230 7957/27067/42231\nf 7956/27068/42232 7959/27069/42233 7960/27070/42234\nf 7960/27071/42235 7955/27072/42236 7956/27073/42237\nf 7961/27074/42238 7960/27075/42239 7959/27076/42240\nf 7959/27077/42241 7962/27078/42242 7961/27079/42243\nf 7962/27080/42244 7959/27081/42245 7958/27082/42246\nf 7958/27083/42247 7963/27084/42248 7962/27085/42249\nf 7963/27086/42250 7958/27087/42251 7949/27088/42252\nf 7949/27089/42253 7948/27090/42254 7963/27091/42255\nf 7964/27092/42256 7963/27093/42257 7948/27094/42258\nf 7948/27095/42259 7965/27096/42260 7964/27097/42261\nf 7965/27098/42262 7948/27099/42263 7944/27100/42264\nf 7944/27101/42265 7947/27102/42266 7965/27103/42267\nf 7963/27104/42268 7964/27105/42269 7966/27106/42270\nf 7966/27107/42271 7962/27108/42272 7963/27109/42273\nf 7962/27110/42274 7966/27111/42275 7967/27112/42276\nf 7967/27113/42277 7961/27114/42278 7962/27115/42279\nf 7720/27116/42280 7967/27117/42281 7966/27118/42282\nf 7966/27119/42283 7718/27120/42284 7720/27121/42285\nf 7718/27122/42286 7966/27123/42287 7964/27124/42288\nf 7964/27125/42289 7716/27126/42290 7718/27127/42291\nf 7716/27128/42292 7964/27129/42293 7965/27130/42294\nf 7965/27131/42295 7714/27132/42296 7716/27133/42297\nf 7714/27134/42298 7965/27135/42299 7947/27136/42300\nf 7947/27137/42301 7682/27138/42302 7714/27139/42303\nf 7960/27140/42304 7961/27141/42305 7968/27142/42306\nf 7961/27143/42307 7967/27144/42308 7969/27145/42309\nf 7969/27146/42310 7968/27147/42311 7961/27148/42312\nf 7968/27149/42313 7969/27150/42314 7970/27151/42315\nf 7970/27152/42316 7971/27153/42317 7968/27154/42318\nf 7972/27155/42319 7968/27156/42320 7971/27157/42321\nf 7971/27158/42322 7973/27159/42323 7972/27160/42324\nf 7974/27161/42325 7972/27162/42326 7973/27163/42327\nf 7972/27164/42328 7974/27165/42329 7955/27166/42330\nf 7954/27167/42331 7955/27168/42332 7974/27169/42333\nf 7974/27170/42334 7975/27171/42335 7954/27172/42336\nf 7861/27173/42337 7954/27174/42338 7975/27175/42339\nf 7975/27176/42340 7860/27177/42341 7861/27178/42342\nf 7860/27179/42343 7975/27180/42344 7976/27181/42345\nf 7976/27182/42346 7859/27183/42347 7860/27184/42348\nf 7859/27185/42349 7976/27186/42350 7977/27187/42351\nf 7977/27188/42352 7857/27189/42353 7859/27190/42354\nf 7857/27191/42355 7977/27192/42356 7978/27193/42357\nf 7978/27194/42358 7856/27195/42359 7857/27196/42360\nf 7979/27197/42361 7978/27198/42362 7977/27199/42363\nf 7977/27200/42364 7980/27201/42365 7979/27202/42366\nf 7980/27203/42367 7977/27204/42368 7976/27205/42369\nf 7976/27206/42370 7981/27207/42371 7980/27208/42372\nf 7981/27209/42373 7976/27210/42374 7975/27211/42375\nf 7975/27212/42376 7974/27213/42377 7981/27214/42378\nf 7973/27215/42379 7981/27216/42380 7974/27217/42381\nf 7981/27218/42382 7973/27219/42383 7982/27220/42384\nf 7982/27221/42385 7980/27222/42386 7981/27223/42387\nf 7980/27224/42388 7982/27225/42389 7983/27226/42390\nf 7983/27227/42391 7979/27228/42392 7980/27229/42393\nf 7984/27230/42394 7983/27231/42395 7982/27232/42396\nf 7982/27233/42397 7985/27234/42398 7984/27235/42399\nf 7985/27236/42400 7982/27237/42401 7973/27238/42402\nf 7973/27239/42403 7971/27240/42404 7985/27241/42405\nf 7986/27242/42406 7985/27243/42407 7971/27244/42408\nf 7971/27245/42409 7970/27246/42410 7986/27247/42411\nf 7985/27248/42412 7986/27249/42413 7987/27250/42414\nf 7987/27251/42415 7984/27252/42416 7985/27253/42417\nf 7759/27254/42418 7987/27255/42419 7986/27256/42420\nf 7986/27257/42421 7757/27258/42422 7759/27259/42423\nf 7757/27260/42424 7986/27261/42425 7970/27262/42426\nf 7970/27263/42427 7755/27264/42428 7757/27265/42429\nf 7755/27266/42430 7970/27267/42431 7969/27268/42432\nf 7969/27269/42433 7753/27270/42434 7755/27271/42435\nf 7753/27272/42436 7969/27273/42437 7967/27274/42438\nf 7967/27275/42439 7720/27276/42440 7753/27277/42441\nf 7983/27278/42442 7984/27279/42443 7988/27280/42444\nf 7988/27281/42445 7989/27282/42446 7983/27283/42447\nf 7979/27284/42448 7983/27285/42449 7989/27286/42450\nf 7989/27287/42451 7990/27288/42452 7979/27289/42453\nf 7978/27290/42454 7979/27291/42455 7990/27292/42456\nf 7990/27293/42457 7991/27294/42458 7978/27295/42459\nf 7856/27296/42460 7978/27297/42461 7991/27298/42462\nf 7991/27299/42463 7855/27300/42464 7856/27301/42465\nf 7855/27302/42466 7991/27303/42467 7992/27304/42468\nf 7992/27305/42469 7853/27306/42470 7855/27307/42471\nf 7853/27308/42472 7992/27309/42473 7993/27310/42474\nf 7993/27311/42475 7852/27312/42476 7853/27313/42477\nf 7852/27314/42478 7993/27315/42479 7994/27316/42480\nf 7994/27317/42481 7850/27318/42482 7852/27319/42483\nf 7995/27320/42484 7994/27321/42485 7993/27322/42486\nf 7993/27323/42487 7996/27324/42488 7995/27325/42489\nf 7996/27326/42490 7993/27327/42491 7992/27328/42492\nf 7992/27329/42493 7997/27330/42494 7996/27331/42495\nf 7997/27332/42496 7992/27333/42497 7991/27334/42498\nf 7991/27335/42499 7990/27336/42500 7997/27337/42501\nf 7998/27338/42502 7997/27339/42503 7990/27340/42504\nf 7990/27341/42505 7989/27342/42506 7998/27343/42507\nf 7997/27344/42508 7998/27345/42509 7999/27346/42510\nf 7999/27347/42511 7996/27348/42512 7997/27349/42513\nf 7996/27350/42514 7999/27351/42515 8000/27352/42516\nf 8000/27353/42517 7995/27354/42518 7996/27355/42519\nf 8001/27356/42520 8000/27357/42521 7999/27358/42522\nf 7999/27359/42523 8002/27360/42524 8001/27361/42525\nf 8002/27362/42526 7999/27363/42527 7998/27364/42528\nf 7998/27365/42529 8003/27366/42530 8002/27367/42531\nf 8003/27368/42532 7998/27369/42533 7989/27370/42534\nf 7989/27371/42535 7988/27372/42536 8003/27373/42537\nf 8004/27374/42538 8003/27375/42539 7988/27376/42540\nf 7988/27377/42541 8005/27378/42542 8004/27379/42543\nf 8005/27380/42544 7988/27381/42545 7984/27382/42546\nf 7984/27383/42547 7987/27384/42548 8005/27385/42549\nf 8003/27386/42550 8004/27387/42551 8006/27388/42552\nf 8006/27389/42553 8002/27390/42554 8003/27391/42555\nf 8002/27392/42556 8006/27393/42557 8007/27394/42558\nf 8007/27395/42559 8001/27396/42560 8002/27397/42561\nf 7797/27398/42562 8007/27399/42563 8006/27400/42564\nf 8006/27401/42565 7795/27402/42566 7797/27403/42567\nf 7795/27404/42568 8006/27405/42569 8004/27406/42570\nf 8004/27407/42571 7793/27408/42572 7795/27409/42573\nf 7793/27410/42574 8004/27411/42575 8005/27412/42576\nf 8005/27413/42577 7791/27414/42578 7793/27415/42579\nf 7791/27416/42580 8005/27417/42581 7987/27418/42582\nf 7987/27419/42583 7759/27420/42584 7791/27421/42585\nf 7841/27422/42586 8000/27423/42587 8001/27424/42588\nf 7995/27425/42589 8000/27426/42590 7841/27427/42591\nf 7841/27428/42592 7844/27429/42593 7995/27430/42594\nf 7995/27431/42595 7844/27432/42596 7845/27433/42597\nf 7845/27434/42598 7994/27435/42599 7995/27436/42600\nf 7850/27437/42601 7994/27438/42602 7845/27439/42603\nf 8007/27440/42604 7797/27441/42605 7836/27442/42606\nf 7836/27443/42607 7837/27444/42608 8007/27445/42609\nf 8001/27446/42610 8007/27447/42611 7837/27448/42612\nf 8001/27449/42613 7840/27450/42614 7841/27451/42615\nf 7837/27452/42616 7840/27453/42617 8001/27454/42618\nf 8061/27455/42619 7886/27456/42620 8008/27457/42621\nf 8008/27458/42622 7882/27459/42623 8061/27460/42624\nf 7662/27461/42625 7872/27462/42626 7870/27463/42627\nf 7870/27464/42628 7668/27465/42629 7662/27466/42630\nf 7915/27467/42631 7920/27468/42632 7932/27469/42633\nf 7928/27470/42634 7932/27471/42635 7920/27472/42636\nf 7701/27473/42637 7866/27474/42638 7743/27475/42639\nf 7743/27476/42640 7706/27477/42641 7701/27478/42642\nf 7739/27479/42643 7744/27480/42644 8009/27481/42645\nf 8009/27482/42646 7745/27483/42647 7739/27484/42648\nf 7955/27485/42649 7960/27486/42650 7972/27487/42651\nf 7968/27488/42652 7972/27489/42653 7960/27490/42654\nf 7778/27491/42655 7782/27492/42656 7854/27493/42657\nf 7854/27494/42658 7783/27495/42659 7778/27496/42660\nf 7816/27497/42661 8010/27498/42662 7851/27499/42663\nf 7851/27500/42664 8011/27501/42665 7816/27502/42666\nf 8011/27503/42667 7851/27504/42668 7849/27505/42669\nf 7849/27506/42670 7820/27507/42671 8011/27508/42672\nf 7821/27509/42673 7820/27510/42674 7849/27511/42675\nf 7849/27512/42676 8012/27513/42677 7821/27514/42678\nf 8013/27515/42679 8015/27516/42680 8014/27517/42681\nf 8014/27518/42682 8016/27519/42683 8013/27520/42684\nf 8016/27521/42685 8014/27522/42686 8017/27523/42687\nf 8017/27524/42688 8018/27525/42689 8016/27526/42690\nf 7601/27527/42691 8018/27528/42692 8017/27529/42693\nf 8017/27530/42694 7598/27531/42695 7601/27532/42696\nf 7609/27533/42697 7598/27534/42698 8017/27535/42699\nf 8017/27536/42700 8019/27537/42701 7609/27538/42702\nf 8019/27539/42703 8017/27540/42704 8014/27541/42705\nf 8014/27542/42706 8020/27543/42707 8019/27544/42708\nf 8021/27545/42709 8020/27546/42710 8014/27547/42711\nf 8014/27548/42712 8015/27549/42713 8021/27550/42714\nf 8022/27551/42715 8020/27552/42716 8021/27553/42717\nf 8021/27554/42718 8023/27555/42719 8022/27556/42720\nf 8020/27557/42721 8022/27558/42722 8024/27559/42723\nf 8024/27560/42724 8019/27561/42725 8020/27562/42726\nf 8019/27563/42727 8024/27564/42728 7611/27565/42729\nf 7611/27566/42730 7609/27567/42731 8019/27568/42732\nf 7617/27569/42733 7611/27570/42734 8024/27571/42735\nf 8024/27572/42736 8025/27573/42737 7617/27574/42738\nf 8025/27575/42739 8024/27576/42740 8022/27577/42741\nf 8022/27578/42742 8026/27579/42743 8025/27580/42744\nf 8027/27581/42745 8026/27582/42746 8022/27583/42747\nf 8022/27584/42748 8023/27585/42749 8027/27586/42750\nf 8028/27587/42751 8026/27588/42752 8027/27589/42753\nf 8027/27590/42754 8029/27591/42755 8028/27592/42756\nf 8026/27593/42757 8028/27594/42758 8030/27595/42759\nf 8030/27596/42760 8025/27597/42761 8026/27598/42762\nf 8025/27599/42763 8030/27600/42764 7619/27601/42765\nf 7619/27602/42766 7617/27603/42767 8025/27604/42768\nf 7625/27605/42769 7619/27606/42770 8030/27607/42771\nf 8030/27608/42772 8031/27609/42773 7625/27610/42774\nf 8031/27611/42775 8030/27612/42776 8028/27613/42777\nf 8028/27614/42778 8032/27615/42779 8031/27616/42780\nf 8033/27617/42781 8032/27618/42782 8028/27619/42783\nf 8028/27620/42784 8029/27621/42785 8033/27622/42786\nf 8034/27623/42787 8032/27624/42788 8033/27625/42789\nf 8033/27626/42790 8035/27627/42791 8034/27628/42792\nf 8032/27629/42793 8034/27630/42794 8036/27631/42795\nf 8036/27632/42796 8031/27633/42797 8032/27634/42798\nf 8031/27635/42799 8036/27636/42800 7627/27637/42801\nf 7627/27638/42802 7625/27639/42803 8031/27640/42804\nf 8061/27641/42805 7627/27642/42806 8036/27643/42807\nf 8036/27644/42808 8044/27645/42809 8061/27646/42810\nf 8044/27647/42811 8036/27648/42812 8034/27649/42813\nf 8034/27650/42814 8040/27651/42815 8044/27652/42816\nf 8037/27653/42817 8040/27654/42818 8034/27655/42819\nf 8034/27656/42820 8035/27657/42821 8037/27658/42822\nf 8037/27659/42823 8039/27660/42824 8038/27661/42825\nf 8038/27662/42826 8040/27663/42827 8037/27664/42828\nf 8038/27665/42829 8039/27666/42830 8041/27667/42831\nf 8041/27668/42832 8042/27669/42833 8038/27670/42834\nf 8038/27671/42835 8042/27672/42836 8043/27673/42837\nf 8043/27674/42838 8060/27675/42839 8038/27676/42840\nf 8040/27677/42841 8038/27678/42842 8060/27679/42843\nf 8060/27680/42844 8044/27681/42845 8040/27682/42846\nf 8060/27683/42847 8043/27684/42848 7887/27685/42849\nf 7887/27686/42850 7886/27687/42851 8060/27688/42852\nf 8045/27689/42853 8042/27690/42854 8041/27691/42855\nf 8041/27692/42856 8046/27693/42857 8045/27694/42858\nf 8042/27695/42859 8045/27696/42860 8047/27697/42861\nf 8047/27698/42862 8043/27699/42863 8042/27700/42864\nf 8043/27701/42865 8047/27702/42866 7889/27703/42867\nf 7889/27704/42868 7887/27705/42869 8043/27706/42870\nf 7895/27707/42871 7889/27708/42872 8047/27709/42873\nf 8047/27710/42874 8048/27711/42875 7895/27712/42876\nf 8048/27713/42877 8047/27714/42878 8045/27715/42879\nf 8045/27716/42880 8049/27717/42881 8048/27718/42882\nf 8050/27719/42883 8049/27720/42884 8045/27721/42885\nf 8045/27722/42886 8046/27723/42887 8050/27724/42888\nf 8051/27725/42889 8049/27726/42890 8050/27727/42891\nf 8050/27728/42892 8052/27729/42893 8051/27730/42894\nf 8049/27731/42895 8051/27732/42896 8053/27733/42897\nf 8053/27734/42898 8048/27735/42899 8049/27736/42900\nf 8048/27737/42901 8053/27738/42902 7897/27739/42903\nf 7897/27740/42904 7895/27741/42905 8048/27742/42906\nf 7903/27743/42907 7897/27744/42908 8053/27745/42909\nf 8053/27746/42910 8054/27747/42911 7903/27748/42912\nf 8054/27749/42913 8053/27750/42914 8051/27751/42915\nf 8051/27752/42916 8055/27753/42917 8054/27754/42918\nf 8056/27755/42919 8055/27756/42920 8051/27757/42921\nf 8051/27758/42922 8052/27759/42923 8056/27760/42924\nf 8057/27761/42925 8055/27762/42926 8056/27763/42927\nf 8056/27764/42928 8058/27765/42929 8057/27766/42930\nf 8055/27767/42931 8057/27768/42932 8059/27769/42933\nf 8059/27770/42934 8054/27771/42935 8055/27772/42936\nf 8054/27773/42937 8059/27774/42938 7905/27775/42939\nf 7905/27776/42940 7903/27777/42941 8054/27778/42942\nf 7601/27779/42943 7905/27780/42944 8059/27781/42945\nf 8059/27782/42946 8018/27783/42947 7601/27784/42948\nf 8018/27785/42949 8059/27786/42950 8057/27787/42951\nf 8057/27788/42952 8016/27789/42953 8018/27790/42954\nf 8013/27791/42955 8016/27792/42956 8057/27793/42957\nf 8057/27794/42958 8058/27795/42959 8013/27796/42960\nf 8044/27797/42961 8060/27798/42962 7886/27799/42963\nf 7886/27800/42964 8061/27801/42965 8044/27802/42966\nf 8062/27803/42967 8064/27804/42968 8063/27805/42969\nf 8063/27806/42970 8065/27807/42971 8062/27808/42972\nf 8063/27809/42973 8064/27810/42974 8066/27811/42975\nf 8066/27812/42976 8067/27813/42977 8063/27814/42978\nf 8067/27815/42979 8066/27816/42980 8068/27817/42981\nf 8068/27818/42982 8069/27819/42983 8067/27820/42984\nf 8070/27821/42985 8068/27822/42986 8066/27823/42987\nf 8066/27824/42988 8071/27825/42989 8070/27826/42990\nf 8071/27827/42991 8066/27828/42992 8064/27829/42993\nf 8064/27830/42994 8072/27831/42995 8071/27832/42996\nf 8072/27833/42997 8064/27834/42998 8062/27835/42999\nf 8062/27836/43000 8073/27837/43001 8072/27838/43002\nf 8074/27839/43003 8072/27840/43004 8073/27841/43005\nf 8073/27842/43006 8075/27843/43007 8074/27844/43008\nf 8072/27845/43009 8074/27846/43010 8076/27847/43011\nf 8076/27848/43012 8071/27849/43013 8072/27850/43014\nf 8071/27851/43015 8076/27852/43016 8077/27853/43017\nf 8077/27854/43018 8070/27855/43019 8071/27856/43020\nf 8078/27857/43021 8077/27858/43022 8076/27859/43023\nf 8076/27860/43024 8079/27861/43025 8078/27862/43026\nf 8079/27863/43027 8076/27864/43028 8074/27865/43029\nf 8074/27866/43030 8080/27867/43031 8079/27868/43032\nf 8080/27869/43033 8074/27870/43034 8075/27871/43035\nf 8075/27872/43036 8081/27873/43037 8080/27874/43038\nf 8082/27875/43039 8080/27876/43040 8081/27877/43041\nf 8081/27878/43042 8083/27879/43043 8082/27880/43044\nf 8080/27881/43045 8082/27882/43046 8084/27883/43047\nf 8084/27884/43048 8079/27885/43049 8080/27886/43050\nf 8079/27887/43051 8084/27888/43052 8085/27889/43053\nf 8085/27890/43054 8078/27891/43055 8079/27892/43056\nf 8086/27893/43057 8085/27894/43058 8084/27895/43059\nf 8084/27896/43060 8087/27897/43061 8086/27898/43062\nf 8087/27899/43063 8084/27900/43064 8082/27901/43065\nf 8082/27902/43066 8088/27903/43067 8087/27904/43068\nf 8088/27905/43069 8082/27906/43070 8083/27907/43071\nf 8083/27908/43072 8089/27909/43073 8088/27910/43074\nf 8090/27911/43075 8088/27912/43076 8089/27913/43077\nf 8089/27914/43078 8091/27915/43079 8090/27916/43080\nf 8088/27917/43081 8090/27918/43082 8092/27919/43083\nf 8092/27920/43084 8087/27921/43085 8088/27922/43086\nf 8087/27923/43087 8092/27924/43088 8093/27925/43089\nf 8093/27926/43090 8086/27927/43091 8087/27928/43092\nf 8127/27929/43093 8093/27930/43094 8092/27931/43095\nf 8092/27932/43096 8126/27933/43097 8127/27934/43098\nf 8126/27935/43099 8092/27936/43100 8090/27937/43101\nf 8090/27938/43102 8094/27939/43103 8126/27940/43104\nf 8094/27941/43105 8090/27942/43106 8091/27943/43107\nf 8091/27944/43108 8095/27945/43109 8094/27946/43110\nf 8089/27947/43111 8083/27948/43112 8096/27949/43113\nf 8097/27950/43114 8096/27951/43115 8083/27952/43116\nf 8096/27953/43117 8097/27954/43118 8098/27955/43119\nf 8099/27956/43120 8098/27957/43121 8097/27958/43122\nf 8097/27959/43123 8100/27960/43124 8099/27961/43125\nf 8101/27962/43126 8099/27963/43127 8100/27964/43128\nf 8100/27965/43129 8102/27966/43130 8101/27967/43131\nf 8103/27968/43132 8101/27969/43133 8102/27970/43134\nf 8102/27971/43135 8104/27972/43136 8103/27973/43137\nf 8103/27974/43138 8104/27975/43139 8105/27976/43140\nf 8105/27977/43141 8106/27978/43142 8103/27979/43143\nf 8065/27980/43144 8105/27981/43145 8104/27982/43146\nf 8104/27983/43147 8062/27984/43148 8065/27985/43149\nf 8073/27986/43150 8062/27987/43151 8104/27988/43152\nf 8104/27989/43153 8102/27990/43154 8073/27991/43155\nf 8102/27992/43156 8100/27993/43157 8075/27994/43158\nf 8075/27995/43159 8073/27996/43160 8102/27997/43161\nf 8081/27998/43162 8075/27999/43163 8100/28000/43164\nf 8100/28001/43165 8097/28002/43166 8081/28003/43167\nf 8083/28004/43168 8081/28005/43169 8097/28006/43170\nf 8107/28007/43171 8105/28008/43172 8065/28009/43173\nf 8065/28010/43174 8108/28011/43175 8107/28012/43176\nf 8108/28013/43177 8065/28014/43178 8063/28015/43179\nf 8063/28016/43180 8109/28017/43181 8108/28018/43182\nf 8110/28019/43183 8108/28020/43184 8109/28021/43185\nf 8109/28022/43186 8111/28023/43187 8110/28024/43188\nf 8112/28025/43189 8110/28026/43190 8111/28027/43191\nf 8111/28028/43192 8113/28029/43193 8112/28030/43194\nf 8114/28031/43195 8112/28032/43196 8113/28033/43197\nf 8113/28034/43198 8115/28035/43199 8114/28036/43200\nf 8116/28037/43201 8114/28038/43202 8115/28039/43203\nf 8115/28040/43204 8117/28041/43205 8116/28042/43206\nf 8118/28043/43207 8116/28044/43208 8117/28045/43209\nf 8117/28046/43210 8119/28047/43211 8118/28048/43212\nf 8120/28049/43213 8118/28050/43214 8119/28051/43215\nf 8119/28052/43216 8121/28053/43217 8120/28054/43218\nf 8095/28055/43219 8120/28056/43220 8121/28057/43221\nf 8121/28058/43222 8094/28059/43223 8095/28060/43224\nf 8121/28061/43225 8119/28062/43226 8122/28063/43227\nf 8122/28064/43228 8123/28065/43229 8121/28066/43230\nf 8094/28067/43231 8121/28068/43232 8123/28069/43233\nf 8123/28070/43234 8126/1088/43235 8094/28071/43236\nf 8123/28072/43237 8122/28073/43238 8124/28074/43239\nf 8124/28075/43240 8125/28076/43241 8123/28077/43242\nf 8126/28078/43243 8123/28079/43244 8125/28080/43245\nf 8125/28081/43246 8127/28082/43247 8126/28083/43248\nf 8119/28084/43249 8117/28085/43250 8128/28086/43251\nf 8128/28087/43252 8122/28088/43253 8119/28089/43254\nf 8122/28090/43255 8128/28091/43256 8129/28092/43257\nf 8129/28093/43258 8124/28094/43259 8122/28095/43260\nf 8130/28096/43261 8129/28097/43262 8128/28098/43263\nf 8128/28099/43264 8131/28100/43265 8130/28101/43266\nf 8131/28102/43267 8128/28103/43268 8117/28104/43269\nf 8117/28105/43270 8115/28106/43271 8131/28107/43272\nf 8132/28108/43273 8131/28109/43274 8115/28110/43275\nf 8115/28111/43276 8113/28112/43277 8132/28113/43278\nf 8131/28114/43279 8132/28115/43280 8133/28116/43281\nf 8133/28117/43282 8130/28118/43283 8131/28119/43284\nf 8134/28120/43285 8133/28121/43286 8132/28122/43287\nf 8132/28123/43288 8135/28124/43289 8134/28125/43290\nf 8135/28126/43291 8132/28127/43292 8113/28128/43293\nf 8113/28129/43294 8111/28130/43295 8135/28131/43296\nf 8136/28132/43297 8135/28133/43298 8111/28134/43299\nf 8111/28135/43300 8109/28136/43301 8136/28137/43302\nf 8135/28138/43303 8136/28139/43304 8137/28140/43305\nf 8137/28141/43306 8134/28142/43307 8135/28143/43308\nf 8069/28144/43309 8137/28145/43310 8136/28146/43311\nf 8136/28147/43312 8067/28148/43313 8069/28149/43314\nf 8067/28150/43315 8136/28151/43316 8109/28152/43317\nf 8109/28153/43318 8063/28154/43319 8067/28155/43320\nf 8130/28156/43321 8133/28157/43322 8138/28158/43323\nf 8139/28159/43324 8138/28160/43325 8133/28161/43326\nf 8133/28162/43327 8134/28163/43328 8139/28164/43329\nf 8138/28165/43330 8139/28166/43331 8140/28167/43332\nf 8140/28168/43333 8141/28169/43334 8138/28170/43335\nf 8142/28171/43336 8138/28172/43337 8141/28173/43338\nf 8138/28174/43339 8142/28175/43340 8130/28176/43341\nf 8129/28177/43342 8130/28178/43343 8142/28179/43344\nf 8142/28180/43345 8143/28181/43346 8129/28182/43347\nf 8124/28183/43348 8129/28184/43349 8143/28185/43350\nf 8143/28186/43351 8144/28187/43352 8124/28188/43353\nf 8125/28189/43354 8124/28190/43355 8144/28191/43356\nf 8144/28192/43357 8563/28193/43358 8125/28194/43359\nf 8563/28195/43360 8144/28196/43361 8145/28197/43362\nf 8145/28198/43363 8562/28199/43364 8563/28200/43365\nf 8562/28201/43366 8145/28202/43367 8146/28203/43368\nf 8146/28204/43369 8564/28205/43370 8562/28206/43371\nf 8564/28207/43372 8146/28208/43373 8147/28209/43374\nf 8147/28210/43375 8223/28211/43376 8564/28212/43377\nf 8223/28213/43378 8147/28214/43379 8148/28215/43380\nf 8148/28216/43381 8149/28217/43382 8223/28218/43383\nf 8149/28219/43384 8148/28220/43385 8150/28221/43386\nf 8150/28222/43387 8225/28223/43388 8149/28224/43389\nf 8225/28225/43390 8150/28226/43391 8151/28227/43392\nf 8151/28228/43393 8224/28229/43394 8225/28230/43395\nf 8224/28231/43396 8151/28232/43397 8152/28233/43398\nf 8152/28234/43399 8226/28235/43400 8224/28236/43401\nf 8153/28237/43402 8148/28238/43403 8147/28239/43404\nf 8147/28240/43405 8154/28241/43406 8153/28242/43407\nf 8154/28243/43408 8147/28244/43409 8146/28245/43410\nf 8148/28246/43411 8153/28247/43412 8155/28248/43413\nf 8155/28249/43414 8150/28250/43415 8148/28251/43416\nf 8150/28252/43417 8155/28253/43418 8156/28254/43419\nf 8156/28255/43420 8151/28256/43421 8150/28257/43422\nf 8151/28258/43423 8156/28259/43424 8157/28260/43425\nf 8157/28261/43426 8152/28262/43427 8151/28263/43428\nf 8158/28264/43429 8157/28265/43430 8156/28266/43431\nf 8156/28267/43432 8159/28268/43433 8158/28269/43434\nf 8159/28270/43435 8156/28271/43436 8155/28272/43437\nf 8155/28273/43438 8160/28274/43439 8159/28275/43440\nf 8160/28276/43441 8155/28277/43442 8153/28278/43443\nf 8153/28279/43444 8161/28280/43445 8160/28281/43446\nf 8161/28282/43447 8153/28283/43448 8154/28284/43449\nf 8154/28285/43450 8162/28286/43451 8161/28287/43452\nf 8163/28288/43453 8161/28289/43454 8162/28290/43455\nf 8162/28291/43456 8164/28292/43457 8163/28293/43458\nf 8161/28294/43459 8163/28295/43460 8165/28296/43461\nf 8165/28297/43462 8160/28298/43463 8161/28299/43464\nf 8160/28300/43465 8165/28301/43466 8166/28302/43467\nf 8166/28303/43468 8159/28304/43469 8160/28305/43470\nf 8159/28306/43471 8166/28307/43472 8167/28308/43473\nf 8167/28309/43474 8158/28310/43475 8159/28311/43476\nf 8168/28312/43477 8167/28313/43478 8166/28314/43479\nf 8166/28315/43480 8169/28316/43481 8168/28317/43482\nf 8169/28318/43483 8166/28319/43484 8165/28320/43485\nf 8165/28321/43486 8170/28322/43487 8169/28323/43488\nf 8170/28324/43489 8165/28325/43490 8163/28326/43491\nf 8163/28327/43492 8171/28328/43493 8170/28329/43494\nf 8171/28330/43495 8163/28331/43496 8164/28332/43497\nf 8164/28333/43498 8172/28334/43499 8171/28335/43500\nf 8173/28336/43501 8171/28337/43502 8172/28338/43503\nf 8172/28339/43504 8174/28340/43505 8173/28341/43506\nf 8171/28342/43507 8173/28343/43508 8175/28344/43509\nf 8175/28345/43510 8170/28346/43511 8171/28347/43512\nf 8170/28348/43513 8175/28349/43514 8176/28350/43515\nf 8176/28351/43516 8169/28352/43517 8170/28353/43518\nf 8169/28354/43519 8176/28355/43520 8177/28356/43521\nf 8177/28357/43522 8168/28358/43523 8169/28359/43524\nf 8178/28360/43525 8177/28361/43526 8176/28362/43527\nf 8176/28363/43528 8179/28364/43529 8178/28365/43530\nf 8179/28366/43531 8176/28367/43532 8175/28368/43533\nf 8180/28369/43534 8178/28370/43535 8179/28371/43536\nf 8179/28372/43537 8181/28373/43538 8180/28374/43539\nf 8181/28375/43540 8179/28376/43541 8182/28377/43542\nf 8175/28378/43543 8182/28379/43544 8179/28380/43545\nf 8182/28381/43546 8175/28382/43547 8173/28383/43548\nf 8182/28384/43549 8183/28385/43550 8181/28386/43551\nf 8183/28387/43552 8182/28388/43553 8184/28389/43554\nf 8173/28390/43555 8184/28391/43556 8182/28392/43557\nf 8184/28393/43558 8173/28394/43559 8174/28395/43560\nf 8184/28396/43561 8185/28397/43562 8183/28398/43563\nf 8185/28399/43564 8184/28400/43565 8186/28401/43566\nf 8174/28402/43567 8186/28403/43568 8184/28404/43569\nf 8186/28405/43570 8187/28406/43571 8185/28407/43572\nf 8188/28408/43573 8180/28409/43574 8181/28410/43575\nf 8181/28411/43576 8189/28412/43577 8188/28413/43578\nf 8189/28414/43579 8181/28415/43580 8183/28416/43581\nf 8183/28417/43582 8190/28418/43583 8189/28419/43584\nf 8190/28420/43585 8183/28421/43586 8185/28422/43587\nf 8185/28423/43588 8191/28424/43589 8190/28425/43590\nf 8191/28426/43591 8185/28427/43592 8187/28428/43593\nf 8187/28429/43594 8192/28430/43595 8191/28431/43596\nf 8193/28432/43597 8191/28433/43598 8192/28434/43599\nf 8192/28435/43600 8194/28436/43601 8193/28437/43602\nf 8191/28438/43603 8193/28439/43604 8195/28440/43605\nf 8195/28441/43606 8190/28442/43607 8191/28443/43608\nf 8190/28444/43609 8195/28445/43610 8196/28446/43611\nf 8196/28447/43612 8189/28448/43613 8190/28449/43614\nf 8189/28450/43615 8196/28451/43616 8197/28452/43617\nf 8197/28453/43618 8188/28454/43619 8189/28455/43620\nf 8198/28456/43621 8197/28457/43622 8196/28458/43623\nf 8196/28459/43624 8199/28460/43625 8198/28461/43626\nf 8199/28462/43627 8196/28463/43628 8195/28464/43629\nf 8195/28465/43630 8200/28466/43631 8199/28467/43632\nf 8200/28468/43633 8195/28469/43634 8193/28470/43635\nf 8193/28471/43636 8201/28472/43637 8200/28473/43638\nf 8201/28474/43639 8193/28475/43640 8194/28476/43641\nf 8194/28477/43642 8202/28478/43643 8201/28479/43644\nf 8203/28480/43645 8201/28481/43646 8202/28482/43647\nf 8202/28483/43648 8204/28484/43649 8203/28485/43650\nf 8201/28486/43651 8203/28487/43652 8205/28488/43653\nf 8205/28489/43654 8200/28490/43655 8201/28491/43656\nf 8200/28492/43657 8205/28493/43658 8206/28494/43659\nf 8206/28495/43660 8199/28496/43661 8200/28497/43662\nf 8199/28498/43663 8206/28499/43664 8207/28500/43665\nf 8207/28501/43666 8198/28502/43667 8199/28503/43668\nf 8208/28504/43669 8207/28505/43670 8206/28506/43671\nf 8206/28507/43672 8209/28508/43673 8208/28509/43674\nf 8209/28510/43675 8206/28511/43676 8205/28512/43677\nf 8205/28513/43678 8210/28514/43679 8209/28515/43680\nf 8210/28516/43681 8205/28517/43682 8203/28518/43683\nf 8203/28519/43684 8211/28520/43685 8210/28521/43686\nf 8211/28522/43687 8203/28523/43688 8204/28524/43689\nf 8204/28525/43690 8212/28526/43691 8211/28527/43692\nf 8213/28528/43693 8211/28529/43694 8212/28530/43695\nf 8212/28531/43696 8214/28532/43697 8213/28533/43698\nf 8211/28534/43699 8213/28535/43700 8215/28536/43701\nf 8215/28537/43702 8210/28538/43703 8211/28539/43704\nf 8210/28540/43705 8215/28541/43706 8216/28542/43707\nf 8216/28543/43708 8209/28544/43709 8210/28545/43710\nf 8209/28546/43711 8216/28547/43712 8217/28548/43713\nf 8217/28549/43714 8208/28550/43715 8209/28551/43716\nf 8218/28552/43717 8217/28553/43718 8216/28554/43719\nf 8216/28555/43720 8219/28556/43721 8218/28557/43722\nf 8219/28558/43723 8216/28559/43724 8215/28560/43725\nf 8215/28561/43726 8220/28562/43727 8219/28563/43728\nf 8220/28564/43729 8215/28565/43730 8213/28566/43731\nf 8213/28567/43732 8221/28568/43733 8220/28569/43734\nf 8221/28570/43735 8213/28571/43736 8214/28572/43737\nf 8214/28573/43738 8222/28574/43739 8221/28575/43740\nf 8149/28576/43741 8221/28577/43742 8222/28578/43743\nf 8222/28579/43744 8223/28580/43745 8149/28581/43746\nf 8221/28582/43747 8149/28583/43748 8225/28584/43749\nf 8225/28585/43750 8220/28586/43751 8221/28587/43752\nf 8224/28588/43753 8219/28589/43754 8220/28590/43755\nf 8220/28591/43756 8225/28592/43757 8224/28593/43758\nf 8226/28594/43759 8218/28595/43760 8219/28596/43761\nf 8219/28597/43762 8224/28598/43763 8226/28599/43764\nf 8217/28600/43765 8218/28601/43766 8227/28602/43767\nf 8227/28603/43768 8228/28604/43769 8217/28605/43770\nf 8208/28606/43771 8217/28607/43772 8228/28608/43773\nf 8228/28609/43774 8229/28610/43775 8208/28611/43776\nf 8207/28612/43777 8208/28613/43778 8229/28614/43779\nf 8229/28615/43780 8230/28616/43781 8207/28617/43782\nf 8198/28618/43783 8207/28619/43784 8230/28620/43785\nf 8230/28621/43786 8231/28622/43787 8198/28623/43788\nf 8197/28624/43789 8198/28625/43790 8231/28626/43791\nf 8231/28627/43792 8232/28628/43793 8197/28629/43794\nf 8188/28630/43795 8197/28631/43796 8232/28632/43797\nf 8232/28633/43798 8233/28634/43799 8188/28635/43800\nf 8180/28636/43801 8188/28637/43802 8233/28638/43803\nf 8233/28639/43804 8234/28640/43805 8180/28641/43806\nf 8178/28642/43807 8180/28643/43808 8234/28644/43809\nf 8234/28645/43810 8235/28646/43811 8178/28647/43812\nf 8235/28648/43813 8234/28649/43814 8236/28650/43815\nf 8236/28651/43816 8237/28652/43817 8235/28653/43818\nf 8237/28654/43819 8236/28655/43820 8238/28656/43821\nf 8238/28657/43822 8239/28658/43823 8237/28659/43824\nf 8239/28660/43825 8238/28661/43826 8240/28662/43827\nf 8240/28663/43828 8241/28664/43829 8239/28665/43830\nf 8242/28666/43831 8240/28667/43832 8238/28668/43833\nf 8238/28669/43834 8243/28670/43835 8242/28671/43836\nf 8243/28672/43837 8238/28673/43838 8236/28674/43839\nf 8236/28675/43840 8244/28676/43841 8243/28677/43842\nf 8244/28678/43843 8236/28679/43844 8234/28680/43845\nf 8234/28681/43846 8233/28682/43847 8244/28683/43848\nf 8233/28684/43849 8232/28685/43850 8245/28686/43851\nf 8245/28687/43852 8244/28688/43853 8233/28689/43854\nf 8244/28690/43855 8245/28691/43856 8246/28692/43857\nf 8246/28693/43858 11040/28694/43859 8244/28695/43860\nf 11040/28696/43861 8246/28697/43862 8247/28698/43863\nf 8247/28699/43864 8242/28700/43865 11040/28701/43866\nf 8248/28702/43867 8247/28703/43868 8246/28704/43869\nf 8246/28705/43870 8249/28706/43871 8248/28707/43872\nf 8249/28708/43873 8246/28709/43874 8245/28710/43875\nf 8245/28711/43876 8250/28712/43877 8249/28713/43878\nf 8250/28714/43879 8245/28715/43880 8232/28716/43881\nf 8232/28717/43882 8231/28718/43883 8250/28719/43884\nf 8251/28720/43885 8250/28721/43886 8231/28722/43887\nf 8231/28723/43888 8230/28724/43889 8251/28725/43890\nf 8250/28726/43891 8251/28727/43892 8252/28728/43893\nf 8252/28729/43894 8249/28730/43895 8250/28731/43896\nf 8249/28732/43897 8252/28733/43898 8253/28734/43899\nf 8253/28735/43900 8248/28736/43901 8249/28737/43902\nf 8254/28738/43903 8253/28739/43904 8252/28740/43905\nf 8252/28741/43906 8255/28742/43907 8254/28743/43908\nf 8255/28744/43909 8252/28745/43910 8251/28746/43911\nf 8251/28747/43912 8256/28748/43913 8255/28749/43914\nf 8256/28750/43915 8251/28751/43916 8230/28752/43917\nf 8230/28753/43918 8229/28754/43919 8256/28755/43920\nf 8257/28756/43921 8256/28757/43922 8229/28758/43923\nf 8229/28759/43924 8228/28760/43925 8257/28761/43926\nf 8256/28762/43927 8257/28763/43928 8258/28764/43929\nf 8258/28765/43930 8255/28766/43931 8256/28767/43932\nf 8255/28768/43933 8258/28769/43934 8259/28770/43935\nf 8259/28771/43936 8254/28772/43937 8255/28773/43938\nf 8260/28774/43939 8259/28775/43940 8258/28776/43941\nf 8258/28777/43942 8261/28778/43943 8260/28779/43944\nf 8261/28780/43945 8258/28781/43946 8257/28782/43947\nf 8257/28783/43948 8262/28784/43949 8261/28785/43950\nf 8262/28786/43951 8257/28787/43952 8228/28788/43953\nf 8228/28789/43954 8227/28790/43955 8262/28791/43956\nf 8263/28792/43957 8262/28793/43958 8227/28794/43959\nf 8227/28795/43960 8508/28796/43961 8263/28797/43962\nf 8264/28798/43963 8261/28799/43964 8262/28800/43965\nf 8262/28801/43966 8263/28802/43967 8264/28803/43968\nf 8509/28804/43969 8260/28805/43970 8261/28806/43971\nf 8261/28807/43972 8264/28808/43973 8509/28809/43974\nf 8259/28810/43975 8260/28811/43976 8265/28812/43977\nf 8265/28813/43978 8266/28814/43979 8259/28815/43980\nf 8254/28816/43981 8259/28817/43982 8266/28818/43983\nf 8266/28819/43984 8267/28820/43985 8254/28821/43986\nf 8253/28822/43987 8254/28823/43988 8267/28824/43989\nf 8267/28825/43990 8268/28826/43991 8253/28827/43992\nf 8248/28828/43993 8253/28829/43994 8268/28830/43995\nf 8268/28831/43996 8269/28832/43997 8248/28833/43998\nf 8247/28834/43999 8248/28835/44000 8269/28836/44001\nf 8269/28837/44002 8270/28838/44003 8247/28839/44004\nf 8242/28840/44005 8247/28841/44006 8270/28842/44007\nf 8270/28843/44008 8271/28844/44009 8242/28845/44010\nf 8240/28846/44011 8242/28847/44012 8271/28848/44013\nf 8271/28849/44014 8272/28850/44015 8240/28851/44016\nf 8241/28852/44017 8240/28853/44018 8272/28854/44019\nf 8272/28855/44020 8273/28856/44021 8241/28857/44022\nf 8273/28858/44023 8272/28859/44024 8274/28860/44025\nf 8274/28861/44026 8275/28862/44027 8273/28863/44028\nf 8275/28864/44029 8274/28865/44030 8276/28866/44031\nf 8276/28867/44032 8277/28868/44033 8275/28869/44034\nf 8277/28870/44035 8276/28871/44036 8278/28872/44037\nf 8278/28873/44038 8279/28874/44039 8277/28875/44040\nf 8280/28876/44041 8278/28877/44042 8276/28878/44043\nf 8276/28879/44044 8281/28880/44045 8280/28881/44046\nf 8281/28882/44047 8276/28883/44048 8274/28884/44049\nf 8274/28885/44050 8282/28886/44051 8281/28887/44052\nf 8282/28888/44053 8274/28889/44054 8272/28890/44055\nf 8272/28891/44056 8271/28892/44057 8282/28893/44058\nf 8271/28894/44059 8270/28895/44060 8283/28896/44061\nf 8283/28897/44062 8282/28898/44063 8271/28899/44064\nf 8282/28900/44065 8283/28901/44066 8284/28902/44067\nf 8284/28903/44068 8281/28904/44069 8282/28905/44070\nf 8281/28906/44071 8284/28907/44072 8285/28908/44073\nf 8285/28909/44074 8280/28910/44075 8281/28911/44076\nf 8286/28912/44077 8285/28913/44078 8284/28914/44079\nf 8284/28915/44080 8287/28916/44081 8286/28917/44082\nf 8287/28918/44083 8284/28919/44084 8283/28920/44085\nf 8283/28921/44086 8288/28922/44087 8287/28923/44088\nf 8288/28924/44089 8283/28925/44090 8270/28926/44091\nf 8270/28927/44092 8269/28928/44093 8288/28929/44094\nf 8289/28930/44095 8288/28931/44096 8269/28932/44097\nf 8269/28933/44098 8268/28934/44099 8289/28935/44100\nf 8288/28936/44101 8289/28937/44102 8290/28938/44103\nf 8290/28939/44104 8287/28940/44105 8288/28941/44106\nf 8287/28942/44107 8290/28943/44108 8291/28944/44109\nf 8291/28945/44110 8286/28946/44111 8287/28947/44112\nf 8292/28948/44113 8291/28949/44114 8290/28950/44115\nf 8290/28951/44116 8293/28952/44117 8292/28953/44118\nf 8293/28954/44119 8290/28955/44120 8289/28956/44121\nf 8289/28957/44122 8294/28958/44123 8293/28959/44124\nf 8294/28960/44125 8289/28961/44126 8268/28962/44127\nf 8268/28963/44128 8267/28964/44129 8294/28965/44130\nf 8295/28966/44131 8294/28967/44132 8267/28968/44133\nf 8267/28969/44134 8266/28970/44135 8295/28971/44136\nf 8294/28972/44137 8295/28973/44138 8296/28974/44139\nf 8296/28975/44140 8293/28976/44141 8294/28977/44142\nf 8293/28978/44143 8296/28979/44144 8297/28980/44145\nf 8297/28981/44146 8292/28982/44147 8293/28983/44148\nf 8298/28984/44149 8297/28985/44150 8296/28986/44151\nf 8296/28987/44152 8299/28988/44153 8298/28989/44154\nf 8299/28990/44155 8296/28991/44156 8295/28992/44157\nf 8295/28993/44158 8300/28994/44159 8299/28995/44160\nf 8300/28996/44161 8295/28997/44162 8266/28998/44163\nf 8266/28999/44164 8265/29000/44165 8300/29001/44166\nf 8421/29002/44167 8300/29003/44168 8265/29004/44169\nf 8265/29005/44170 8301/29006/44171 8421/29007/44172\nf 8302/29008/44173 8299/29009/44174 8300/29010/44175\nf 8300/29011/44176 8421/2932/44177 8302/29012/44178\nf 8418/29013/44179 8298/29014/44180 8299/29015/44181\nf 8299/29016/44182 8302/29017/44183 8418/29018/44184\nf 8297/29019/44185 8298/29020/44186 8303/29021/44187\nf 8303/29022/44188 8304/29023/44189 8297/29024/44190\nf 8292/29025/44191 8297/29026/44192 8304/29027/44193\nf 8304/29028/44194 8305/29029/44195 8292/29030/44196\nf 8291/29031/44197 8292/29032/44198 8305/29033/44199\nf 8305/29034/44200 8306/29035/44201 8291/29036/44202\nf 8286/29037/44203 8291/29038/44204 8306/29039/44205\nf 8306/29040/44206 8307/29041/44207 8286/29042/44208\nf 8285/29043/44209 8286/29044/44210 8307/29045/44211\nf 8307/29046/44212 8308/29047/44213 8285/29048/44214\nf 8280/29049/44215 8285/29050/44216 8308/29051/44217\nf 8308/29052/44218 8309/29053/44219 8280/29054/44220\nf 8278/29055/44221 8280/29056/44222 8309/29057/44223\nf 8309/29058/44224 8310/29059/44225 8278/29060/44226\nf 8279/29061/44227 8278/29062/44228 8310/29063/44229\nf 8310/29064/44230 8311/29065/44231 8279/29066/44232\nf 8311/29067/44233 8310/29068/44234 8312/29069/44235\nf 8312/29070/44236 8313/29071/44237 8311/29072/44238\nf 8313/29073/44239 8312/29074/44240 8314/29075/44241\nf 8314/29076/44242 8315/29077/44243 8313/29078/44244\nf 8315/29079/44245 8314/29080/44246 8316/29081/44247\nf 8316/29082/44248 8317/29083/44249 8315/29084/44250\nf 8318/29085/44251 8316/29086/44252 8314/29087/44253\nf 8314/29088/44254 8319/29089/44255 8318/29090/44256\nf 8319/29091/44257 8314/29092/44258 8312/29093/44259\nf 8312/29094/44260 8320/29095/44261 8319/29096/44262\nf 8320/29097/44263 8312/29098/44264 8310/29099/44265\nf 8310/29100/44266 8309/29101/44267 8320/29102/44268\nf 8309/29103/44269 8308/29104/44270 8321/29105/44271\nf 8321/29106/44272 8320/29107/44273 8309/29108/44274\nf 8320/29109/44275 8321/29110/44276 8322/29111/44277\nf 8322/29112/44278 8319/29113/44279 8320/29114/44280\nf 8319/29115/44281 8322/29116/44282 8323/29117/44283\nf 8323/29118/44284 8318/29119/44285 8319/29120/44286\nf 8324/29121/44287 8323/29122/44288 8322/29123/44289\nf 8322/29124/44290 8325/29125/44291 8324/29126/44292\nf 8325/29127/44293 8322/29128/44294 8321/29129/44295\nf 8321/29130/44296 8326/29131/44297 8325/29132/44298\nf 8326/29133/44299 8321/29134/44300 8308/29135/44301\nf 8308/29136/44302 8307/29137/44303 8326/29138/44304\nf 8327/29139/44305 8326/29140/44306 8307/29141/44307\nf 8307/29142/44308 8306/29143/44309 8327/29144/44310\nf 8326/29145/44311 8327/29146/44312 8328/29147/44313\nf 8328/29148/44314 8325/29149/44315 8326/29150/44316\nf 8325/29151/44317 8328/29152/44318 8329/29153/44319\nf 8329/29154/44320 8324/29155/44321 8325/29156/44322\nf 8330/29157/44323 8329/29158/44324 8328/29159/44325\nf 8328/29160/44326 8331/29161/44327 8330/29162/44328\nf 8331/29163/44329 8328/29164/44330 8327/29165/44331\nf 8327/29166/44332 8332/29167/44333 8331/29168/44334\nf 8332/29169/44335 8327/29170/44336 8306/29171/44337\nf 8306/29172/44338 8305/29173/44339 8332/29174/44340\nf 8333/29175/44341 8332/29176/44342 8305/29177/44343\nf 8305/29178/44344 8304/29179/44345 8333/29180/44346\nf 8332/29181/44347 8333/29182/44348 8334/29183/44349\nf 8334/29184/44350 8331/29185/44351 8332/29186/44352\nf 8331/29187/44353 8334/29188/44354 8335/29189/44355\nf 8335/29190/44356 8330/29191/44357 8331/29192/44358\nf 8336/29193/44359 8335/29194/44360 8334/29195/44361\nf 8334/29196/44362 8337/29197/44363 8336/29198/44364\nf 8337/29199/44365 8334/29200/44366 8333/29201/44367\nf 8333/29202/44368 8338/29203/44369 8337/29204/44370\nf 8338/29205/44371 8333/29206/44372 8304/29207/44373\nf 8304/29208/44374 8303/29209/44375 8338/29210/44376\nf 8340/29211/44377 8338/29212/44378 8303/29213/44379\nf 8303/29214/44380 8416/29215/44381 8340/29216/44382\nf 8339/29217/44383 8337/29218/44384 8338/29219/44385\nf 8338/29220/44386 8340/29221/44387 8339/29222/44388\nf 8511/29223/44389 8336/29224/44390 8337/29225/44391\nf 8337/29226/44392 8339/29227/44393 8511/29228/44394\nf 8335/29229/44395 8336/29230/44396 8341/29231/44397\nf 8341/29232/44398 8342/29233/44399 8335/29234/44400\nf 8330/29235/44401 8335/29236/44402 8342/29237/44403\nf 8342/29238/44404 8343/29239/44405 8330/29240/44406\nf 8329/29241/44407 8330/29242/44408 8343/29243/44409\nf 8343/29244/44410 8344/29245/44411 8329/29246/44412\nf 8324/29247/44413 8329/29248/44414 8344/29249/44415\nf 8344/29250/44416 8345/29251/44417 8324/29252/44418\nf 8323/29253/44419 8324/29254/44420 8345/29255/44421\nf 8345/29256/44422 8346/29257/44423 8323/29258/44424\nf 8318/29259/44425 8323/29260/44426 8346/29261/44427\nf 8346/29262/44428 8347/29263/44429 8318/29264/44430\nf 8316/29265/44431 8318/29266/44432 8347/29267/44433\nf 8347/29268/44434 8348/29269/44435 8316/29270/44436\nf 8317/29271/44437 8316/29272/44438 8348/29273/44439\nf 8348/29274/44440 8349/29275/44441 8317/29276/44442\nf 8349/29277/44443 8348/29278/44444 8350/29279/44445\nf 8350/29280/44446 8351/29281/44447 8349/29282/44448\nf 8351/29283/44449 8350/29284/44450 8352/29285/44451\nf 8352/29286/44452 8353/29287/44453 8351/29288/44454\nf 8353/29289/44455 8352/29290/44456 8354/29291/44457\nf 8354/29292/44458 8355/29293/44459 8353/29294/44460\nf 8356/29295/44461 8354/29296/44462 8352/29297/44463\nf 8352/29298/44464 8357/29299/44465 8356/29300/44466\nf 8357/29301/44467 8352/29302/44468 8350/29303/44469\nf 8350/29304/44470 8358/29305/44471 8357/29306/44472\nf 8358/29307/44473 8350/29308/44474 8348/29309/44475\nf 8348/29310/44476 8347/29311/44477 8358/29312/44478\nf 8347/29313/44479 8346/29314/44480 8359/29315/44481\nf 8359/29316/44482 8358/29317/44483 8347/29318/44484\nf 8358/29319/44485 8359/29320/44486 8360/29321/44487\nf 8360/29322/44488 8357/29323/44489 8358/29324/44490\nf 8357/29325/44491 8360/29326/44492 8361/29327/44493\nf 8361/29328/44494 8356/29329/44495 8357/29330/44496\nf 8362/29331/44497 8361/29332/44498 8360/29333/44499\nf 8360/29334/44500 8363/29335/44501 8362/29336/44502\nf 8363/29337/44503 8360/29338/44504 8359/29339/44505\nf 8359/29340/44506 8364/29341/44507 8363/29342/44508\nf 8364/29343/44509 8359/29344/44510 8346/29345/44511\nf 8346/29346/44512 8345/29347/44513 8364/29348/44514\nf 8365/29349/44515 8364/29350/44516 8345/29351/44517\nf 8345/29352/44518 8344/29353/44519 8365/29354/44520\nf 8364/29355/44521 8365/29356/44522 8366/29357/44523\nf 8366/29358/44524 8363/29359/44525 8364/29360/44526\nf 8363/29361/44527 8366/29362/44528 8367/29363/44529\nf 8367/29364/44530 8362/29365/44531 8363/29366/44532\nf 8368/29367/44533 8367/29368/44534 8366/29369/44535\nf 8366/29370/44536 8369/29371/44537 8368/29372/44538\nf 8369/29373/44539 8366/29374/44540 8365/29375/44541\nf 8365/29376/44542 8370/29377/44543 8369/29378/44544\nf 8370/29379/44545 8365/29380/44546 8344/29381/44547\nf 8344/29382/44548 8343/29383/44549 8370/29384/44550\nf 8371/29385/44551 8370/29386/44552 8343/29387/44553\nf 8343/29388/44554 8342/29389/44555 8371/29390/44556\nf 8370/29391/44557 8371/29392/44558 8372/29393/44559\nf 8372/29394/44560 8369/29395/44561 8370/29396/44562\nf 8369/29397/44563 8372/29398/44564 8373/29399/44565\nf 8373/29400/44566 8368/29401/44567 8369/29402/44568\nf 8512/29403/44569 8373/29404/44570 8372/29405/44571\nf 8372/29406/44572 8374/29407/44573 8512/29408/44574\nf 8374/29409/44575 8372/29410/44576 8371/29411/44577\nf 8371/29412/44578 8375/29413/44579 8374/29414/44580\nf 8375/29415/44581 8371/29416/44582 8342/29417/44583\nf 8342/29418/44584 8341/29419/44585 8375/29420/44586\nf 8376/2119/44587 8375/29421/44588 8341/29422/44589\nf 8341/29423/44590 8510/29424/44591 8376/2119/44592\nf 8377/29425/44593 8374/29426/44594 8375/29427/44595\nf 8375/29428/44596 8376/29429/44597 8377/29430/44598\nf 8368/29431/44599 8373/29432/44600 8378/29433/44601\nf 8378/29434/44602 8373/29435/44603 8512/29436/44604\nf 8512/29437/44605 8379/29438/44606 8378/29439/44607\nf 8378/29440/44608 8379/29441/44609 8380/29442/44610\nf 8380/29443/44611 8381/29444/44612 8378/29445/44613\nf 8378/29446/44614 8381/29447/44615 8382/29448/44616\nf 8382/29449/44617 8383/29450/44618 8378/29451/44619\nf 8384/29452/44620 8383/29453/44621 8382/29454/44622\nf 8382/29455/44623 8385/29456/44624 8384/29457/44625\nf 8384/29458/44626 8385/29459/44627 8386/29460/44628\nf 8386/29461/44629 8387/29462/44630 8384/29463/44631\nf 8388/29464/44632 8387/29465/44633 8386/29466/44634\nf 8386/29467/44635 8389/29468/44636 8388/29469/44637\nf 8388/29470/44638 8389/29471/44639 8390/29472/44640\nf 8390/29473/44641 8391/29474/44642 8388/29475/44643\nf 8392/29476/44644 8391/29477/44645 8390/29478/44646\nf 8390/29479/44647 8393/29480/44648 8392/29481/44649\nf 8392/29482/44650 8393/29483/44651 8394/29484/44652\nf 8394/29485/44653 8395/29486/44654 8392/29487/44655\nf 8392/29488/44656 8395/29489/44657 8355/29490/44658\nf 8355/29491/44659 8354/29492/44660 8392/29493/44661\nf 8392/29494/44662 8354/29495/44663 8356/29496/44664\nf 8356/29497/44665 8391/29498/44666 8392/29499/44667\nf 8388/29500/44668 8391/29501/44669 8356/29502/44670\nf 8356/29503/44671 8361/29504/44672 8388/29505/44673\nf 8388/29506/44674 8361/29507/44675 8362/29508/44676\nf 8362/29509/44677 8387/29510/44678 8388/29511/44679\nf 8384/29512/44680 8387/29513/44681 8362/29514/44682\nf 8362/29515/44683 8367/29516/44684 8384/29517/44685\nf 8384/29518/44686 8367/29519/44687 8368/29520/44688\nf 8368/29521/44689 8383/29522/44690 8384/29523/44691\nf 8378/29524/44692 8383/29525/44693 8368/29526/44694\nf 8396/29527/44695 8395/29528/44696 8394/29529/44697\nf 8394/29530/44698 8397/29531/44699 8396/29532/44700\nf 8396/29533/44701 8397/29534/44702 8398/29535/44703\nf 8398/29536/44704 8399/29537/44705 8396/29538/44706\nf 8400/29539/44707 8399/29540/44708 8398/29541/44709\nf 8398/29542/44710 8401/29543/44711 8400/29544/44712\nf 8400/29545/44713 8401/29546/44714 8402/29547/44715\nf 8402/29548/44716 8403/29549/44717 8400/29550/44718\nf 8404/29551/44719 8403/29552/44720 8402/29553/44721\nf 8402/29554/44722 8405/29555/44723 8404/29556/44724\nf 8404/29557/44725 8405/29558/44726 8406/29559/44727\nf 8406/29560/44728 8407/29561/44729 8404/29562/44730\nf 8408/29563/44731 8407/29564/44732 8406/29565/44733\nf 8406/29566/44734 8514/29567/44735 8408/29568/44736\nf 8409/29569/44737 8407/29570/44738 8408/29571/44739\nf 8404/29572/44740 8407/29573/44741 8409/29574/44742\nf 8408/29575/44743 8513/29576/44744 8409/29577/44745\nf 8409/29578/44746 8513/29579/44747 8377/29580/44748\nf 8377/29581/44749 8410/29582/44750 8409/29583/44751\nf 8410/29584/44752 8377/29585/44753 8376/29586/44754\nf 8376/29587/44755 8411/29588/44756 8410/29589/44757\nf 8411/29590/44758 8376/29591/44759 8510/29592/44760\nf 8510/29593/44761 8412/29594/44762 8411/29595/44763\nf 8412/29596/44764 8510/29597/44765 8511/29598/44766\nf 8511/29599/44767 8413/29600/44768 8412/29601/44769\nf 8413/29602/44770 8511/29603/44771 8339/29604/44772\nf 8339/29605/44773 8414/29606/44774 8413/29607/44775\nf 8414/29608/44776 8339/29609/44777 8340/29610/44778\nf 8340/29611/44779 8415/29612/44780 8414/29613/44781\nf 8415/29614/44782 8340/29615/44783 8416/29616/44784\nf 8416/29617/44785 8417/29618/44786 8415/29619/44787\nf 8417/29620/44788 8416/29621/44789 8418/29622/44790\nf 8418/29623/44791 8419/29624/44792 8417/29625/44793\nf 8419/29626/44794 8418/29627/44795 8302/29628/44796\nf 8302/29629/44797 8420/29630/44798 8419/29631/44799\nf 8420/29632/44800 8302/29633/44801 8421/29634/44802\nf 8421/29635/44803 8422/29636/44804 8420/29637/44805\nf 8422/29638/44806 8421/29639/44807 8301/29640/44808\nf 8301/29641/44809 8423/29642/44810 8422/29643/44811\nf 8423/29644/44812 8301/29645/44813 8509/29646/44814\nf 8509/29647/44815 8424/29648/44816 8423/29649/44817\nf 8424/29650/44818 8509/29651/44819 8264/29652/44820\nf 8264/29653/44821 10812/29654/44822 8424/29655/44823\nf 10812/29656/44824 8264/29657/44825 8263/29658/44826\nf 8263/29659/44827 8426/29660/44828 10812/29661/44829\nf 8426/29662/44830 8263/29663/44831 8508/29664/44832\nf 8508/29665/44833 8427/29666/44834 8426/29667/44835\nf 8427/29668/44836 8508/29669/44837 8226/29670/44838\nf 8226/29671/44839 8152/29672/44840 8427/29673/44841\nf 8428/29674/44842 8427/29675/44843 8152/29676/44844\nf 8152/29677/44845 8157/29678/44846 8428/29679/44847\nf 8427/29680/44848 8428/29681/44849 8429/29682/44850\nf 8429/29683/44851 10813/29684/44852 8427/29685/44853\nf 10813/29686/44854 8429/29687/44855 8430/29688/44856\nf 8430/29689/44857 8425/29690/44858 10813/29691/44859\nf 8425/29692/44860 8430/29693/44861 8431/29694/44862\nf 8431/29695/44863 8424/29696/44864 8425/29697/44865\nf 8432/29698/44866 8431/29699/44867 8430/29700/44868\nf 8430/29701/44869 8433/29702/44870 8432/29703/44871\nf 8433/29704/44872 8430/29705/44873 8429/29706/44874\nf 8429/29707/44875 8434/29708/44876 8433/29709/44877\nf 8434/29710/44878 8429/29711/44879 8428/29712/44880\nf 8428/29713/44881 8435/29714/44882 8434/29715/44883\nf 8435/29716/44884 8428/29717/44885 8157/29718/44886\nf 8157/29719/44887 8158/29720/44888 8435/29721/44889\nf 8436/29722/44890 8435/29723/44891 8158/29724/44892\nf 8158/29725/44893 8167/29726/44894 8436/29727/44895\nf 8435/29728/44896 8436/29729/44897 8437/29730/44898\nf 8437/29731/44899 8434/29732/44900 8435/29733/44901\nf 8434/29734/44902 8437/29735/44903 8438/29736/44904\nf 8438/29737/44905 8433/29738/44906 8434/29739/44907\nf 8433/29740/44908 8438/29741/44909 8439/29742/44910\nf 8439/29743/44911 8432/29744/44912 8433/29745/44913\nf 8440/29746/44914 8439/29747/44915 8438/29748/44916\nf 8438/29749/44917 8441/29750/44918 8440/29751/44919\nf 8441/29752/44920 8438/29753/44921 8437/29754/44922\nf 8437/29755/44923 9512/29756/44924 8441/29757/44925\nf 8442/29758/44926 8437/29759/44927 8436/29760/44928\nf 8436/29761/44929 8443/29762/44930 8442/29763/44931\nf 8443/29764/44932 8436/29765/44933 8167/29766/44934\nf 8167/29767/44935 8168/29768/44936 8443/29769/44937\nf 8444/29770/44938 8443/29771/44939 8168/29772/44940\nf 8168/29773/44941 8177/29774/44942 8444/29775/44943\nf 8443/29776/44944 8444/29777/44945 8445/29778/44946\nf 8445/29779/44947 8442/29780/44948 8443/29781/44949\nf 9512/29782/44950 8445/29783/44951 8446/29784/44952\nf 8446/29785/44953 8441/29786/44954 9512/29787/44955\nf 8441/29788/44956 8446/29789/44957 8447/29790/44958\nf 8447/29791/44959 8440/29792/44960 8441/29793/44961\nf 8241/29794/44962 8447/29795/44963 8446/29796/44964\nf 8446/29797/44965 8239/29798/44966 8241/29799/44967\nf 8239/29800/44968 8446/29801/44969 8445/29802/44970\nf 8445/29803/44971 8237/29804/44972 8239/29805/44973\nf 8237/29806/44974 8445/29807/44975 8444/29808/44976\nf 8444/29809/44977 8235/29810/44978 8237/29811/44979\nf 8235/29812/44980 8444/29813/44981 8177/29814/44982\nf 8177/29815/44983 8178/29816/44984 8235/29817/44985\nf 8439/29818/44986 8440/29819/44987 8448/29820/44988\nf 8440/29821/44989 8447/29822/44990 8449/29823/44991\nf 8449/29824/44992 8448/29825/44993 8440/29826/44994\nf 8448/29827/44995 8449/29828/44996 8450/29829/44997\nf 8450/29830/44998 8451/29831/44999 8448/29832/45000\nf 8452/29833/45001 8448/29834/45002 8451/29835/45003\nf 8451/29836/45004 8453/29837/45005 8452/29838/45006\nf 8454/29839/45007 8452/29840/45008 8453/29841/45009\nf 8452/29842/45010 8454/29843/45011 8432/29844/45012\nf 8431/29845/45013 8432/29846/45014 8454/29847/45015\nf 8454/29848/45016 8455/29849/45017 8431/29850/45018\nf 8424/29851/45019 8431/29852/45020 8455/29853/45021\nf 8455/29854/45022 8423/29855/45023 8424/29856/45024\nf 8423/29857/45025 8455/29858/45026 8456/29859/45027\nf 8456/29860/45028 8422/29861/45029 8423/29862/45030\nf 8422/29863/45031 8456/29864/45032 8457/29865/45033\nf 8457/29866/45034 8420/29867/45035 8422/29868/45036\nf 8420/29869/45037 8457/29870/45038 8458/29871/45039\nf 8458/29872/45040 8419/29873/45041 8420/29874/45042\nf 8459/29875/45043 8458/29876/45044 8457/29877/45045\nf 8457/29878/45046 8460/29879/45047 8459/29880/45048\nf 8460/29881/45049 8457/29882/45050 8456/29883/45051\nf 8456/29884/45052 8461/29885/45053 8460/29886/45054\nf 8461/29887/45055 8456/29888/45056 8455/29889/45057\nf 8455/29890/45058 8454/29891/45059 8461/29892/45060\nf 8453/29893/45061 8461/29894/45062 8454/29895/45063\nf 8461/29896/45064 8453/29897/45065 8462/29898/45066\nf 8462/29899/45067 8460/29900/45068 8461/29901/45069\nf 8460/29902/45070 8462/29903/45071 8463/29904/45072\nf 8463/29905/45073 8459/29906/45074 8460/29907/45075\nf 8464/29908/45076 8463/29909/45077 8462/29910/45078\nf 8462/29911/45079 8465/29912/45080 8464/29913/45081\nf 8465/29914/45082 8462/29915/45083 8453/29916/45084\nf 8453/29917/45085 8451/29918/45086 8465/29919/45087\nf 8466/29920/45088 8465/29921/45089 8451/29922/45090\nf 8451/29923/45091 8450/29924/45092 8466/29925/45093\nf 8465/29926/45094 8466/29927/45095 8467/29928/45096\nf 8467/29929/45097 8464/29930/45098 8465/29931/45099\nf 8279/29932/45100 8467/29933/45101 8466/29934/45102\nf 8466/29935/45103 8277/29936/45104 8279/29937/45105\nf 8277/29938/45106 8466/29939/45107 8450/29940/45108\nf 8450/29941/45109 8275/29942/45110 8277/29943/45111\nf 8275/29944/45112 8450/29945/45113 8449/29946/45114\nf 8449/29947/45115 8273/29948/45116 8275/29949/45117\nf 8273/29950/45118 8449/29951/45119 8447/29952/45120\nf 8447/29953/45121 8241/29954/45122 8273/29955/45123\nf 8463/29956/45124 8464/29957/45125 8468/29958/45126\nf 8468/29959/45127 8469/29960/45128 8463/29961/45129\nf 8459/29962/45130 8463/29963/45131 8469/29964/45132\nf 8469/29965/45133 8470/29966/45134 8459/29967/45135\nf 8458/29968/45136 8459/29969/45137 8470/29970/45138\nf 8470/29971/45139 8471/29972/45140 8458/29973/45141\nf 8419/29974/45142 8458/29975/45143 8471/29976/45144\nf 8471/29977/45145 8417/29978/45146 8419/29979/45147\nf 8417/29980/45148 8471/29981/45149 8472/29982/45150\nf 8472/29983/45151 8415/29984/45152 8417/29985/45153\nf 8415/29986/45154 8472/29987/45155 8473/29988/45156\nf 8473/29989/45157 8414/29990/45158 8415/29991/45159\nf 8414/29992/45160 8473/29993/45161 8474/29994/45162\nf 8474/29995/45163 8413/29996/45164 8414/29997/45165\nf 8475/29998/45166 8474/29999/45167 8473/30000/45168\nf 8473/30001/45169 8476/30002/45170 8475/30003/45171\nf 8476/30004/45172 8473/30005/45173 8472/30006/45174\nf 8472/30007/45175 8477/30008/45176 8476/30009/45177\nf 8477/30010/45178 8472/30011/45179 8471/30012/45180\nf 8471/30013/45181 8470/30014/45182 8477/30015/45183\nf 8478/30016/45184 8477/30017/45185 8470/30018/45186\nf 8470/30019/45187 8469/30020/45188 8478/30021/45189\nf 8477/30022/45190 8478/30023/45191 8479/30024/45192\nf 8479/30025/45193 8476/30026/45194 8477/30027/45195\nf 8476/30028/45196 8479/30029/45197 8480/30030/45198\nf 8480/30031/45199 8475/30032/45200 8476/30033/45201\nf 8481/30034/45202 8480/30035/45203 8479/30036/45204\nf 8479/30037/45205 8482/30038/45206 8481/30039/45207\nf 8482/30040/45208 8479/30041/45209 8478/30042/45210\nf 8478/30043/45211 8483/30044/45212 8482/30045/45213\nf 8483/30046/45214 8478/30047/45215 8469/30048/45216\nf 8469/30049/45217 8468/30050/45218 8483/30051/45219\nf 8484/30052/45220 8483/30053/45221 8468/30054/45222\nf 8468/30055/45223 8485/30056/45224 8484/30057/45225\nf 8485/30058/45226 8468/30059/45227 8464/30060/45228\nf 8464/30061/45229 8467/30062/45230 8485/30063/45231\nf 8483/30064/45232 8484/30065/45233 8486/30066/45234\nf 8486/30067/45235 8482/30068/45236 8483/30069/45237\nf 8482/30070/45238 8486/30071/45239 8487/30072/45240\nf 8487/30073/45241 8481/30074/45242 8482/30075/45243\nf 8317/30076/45244 8487/30077/45245 8486/30078/45246\nf 8486/30079/45247 8315/30080/45248 8317/30081/45249\nf 8315/30082/45250 8486/30083/45251 8484/30084/45252\nf 8484/30085/45253 8313/30086/45254 8315/30087/45255\nf 8313/30088/45256 8484/30089/45257 8485/30090/45258\nf 8485/30091/45259 8311/30092/45260 8313/30093/45261\nf 8311/30094/45262 8485/30095/45263 8467/30096/45264\nf 8467/30097/45265 8279/30098/45266 8311/30099/45267\nf 8480/30100/45268 8481/30101/45269 8488/30102/45270\nf 8481/30103/45271 8487/30104/45272 8489/30105/45273\nf 8489/30106/45274 8488/30107/45275 8481/30108/45276\nf 8488/30109/45277 8489/30110/45278 8490/30111/45279\nf 8490/30112/45280 8491/30113/45281 8488/30114/45282\nf 8492/30115/45283 8488/30116/45284 8491/30117/45285\nf 8491/30118/45286 8493/30119/45287 8492/30120/45288\nf 8494/30121/45289 8492/30122/45290 8493/30123/45291\nf 8492/30124/45292 8494/30125/45293 8475/30126/45294\nf 8474/30127/45295 8475/30128/45296 8494/30129/45297\nf 8494/30130/45298 8495/30131/45299 8474/30132/45300\nf 8413/30133/45301 8474/30134/45302 8495/30135/45303\nf 8495/30136/45304 8412/30137/45305 8413/30138/45306\nf 8412/30139/45307 8495/30140/45308 8496/30141/45309\nf 8496/30142/45310 8411/30143/45311 8412/30144/45312\nf 8411/30145/45313 8496/30146/45314 8497/30147/45315\nf 8497/30148/45316 8410/30149/45317 8411/30150/45318\nf 8410/30151/45319 8497/30152/45320 8498/30153/45321\nf 8498/30154/45322 8409/30155/45323 8410/30156/45324\nf 8499/30157/45325 8498/30158/45326 8497/30159/45327\nf 8497/30160/45328 8500/30161/45329 8499/30162/45330\nf 8500/30163/45331 8497/30164/45332 8496/30165/45333\nf 8496/30166/45334 8501/30167/45335 8500/30168/45336\nf 8501/30169/45337 8496/30170/45338 8495/30171/45339\nf 8495/30172/45340 8494/30173/45341 8501/30174/45342\nf 8493/30175/45343 8501/30176/45344 8494/30177/45345\nf 8501/30178/45346 8493/30179/45347 8502/30180/45348\nf 8502/30181/45349 8500/30182/45350 8501/30183/45351\nf 8500/30184/45352 8502/30185/45353 8503/30186/45354\nf 8503/30187/45355 8499/30188/45356 8500/30189/45357\nf 8504/30190/45358 8503/30191/45359 8502/30192/45360\nf 8502/30193/45361 8505/30194/45362 8504/30195/45363\nf 8505/30196/45364 8502/30197/45365 8493/30198/45366\nf 8493/30199/45367 8491/30200/45368 8505/30201/45369\nf 8506/30202/45370 8505/30203/45371 8491/30204/45372\nf 8491/30205/45373 8490/30206/45374 8506/30207/45375\nf 8505/30208/45376 8506/30209/45377 8507/30210/45378\nf 8507/30211/45379 8504/30212/45380 8505/30213/45381\nf 8355/30214/45382 8507/30215/45383 8506/30216/45384\nf 8506/30217/45385 8353/30218/45386 8355/30219/45387\nf 8353/30220/45388 8506/30221/45389 8490/30222/45390\nf 8490/30223/45391 8351/30224/45392 8353/30225/45393\nf 8351/30226/45394 8490/30227/45395 8489/30228/45396\nf 8489/30229/45397 8349/30230/45398 8351/30231/45399\nf 8349/30232/45400 8489/30233/45401 8487/30234/45402\nf 8487/30235/45403 8317/30236/45404 8349/30237/45405\nf 8400/30238/45406 8503/30239/45407 8504/30240/45408\nf 8499/30241/45409 8503/30242/45410 8400/30243/45411\nf 8400/30244/45412 8403/30245/45413 8499/30246/45414\nf 8499/30247/45415 8403/30248/45416 8404/30249/45417\nf 8404/30250/45418 8498/30251/45419 8499/30252/45420\nf 8409/30253/45421 8498/30254/45422 8404/30255/45423\nf 8507/30256/45424 8355/30257/45425 8395/30258/45426\nf 8395/30259/45427 8396/30260/45428 8507/30261/45429\nf 8504/30262/45430 8507/30263/45431 8396/30264/45432\nf 8504/30265/45433 8399/30266/45434 8400/30267/45435\nf 8396/30268/45436 8399/30269/45437 8504/30270/45438\nf 8218/30271/45439 8226/30272/45440 8508/30273/45441\nf 8508/30274/45442 8227/30275/45443 8218/30276/45444\nf 8260/30277/45445 8509/4586/45446 8301/30278/45447\nf 8301/30279/45448 8265/30280/45449 8260/30281/45450\nf 8432/30282/45451 8439/30283/45452 8452/30284/45453\nf 8448/30285/45454 8452/30286/45455 8439/30287/45456\nf 8298/30288/45457 8418/30289/45458 8416/30290/45459\nf 8416/30291/45460 8303/30292/45461 8298/30293/45462\nf 8336/30294/45463 8511/30295/45464 8510/30296/45465\nf 8510/30297/45466 8341/30298/45467 8336/30299/45468\nf 8374/30300/45469 8377/5556/45470 8513/30301/45471\nf 8513/30302/45472 8512/30303/45473 8374/30304/45474\nf 8475/30305/45475 8480/30306/45476 8492/30307/45477\nf 8488/30308/45478 8492/30309/45479 8480/30310/45480\nf 8512/30311/45481 8513/30312/45482 8408/30313/45483\nf 8408/30314/45484 8379/30315/45485 8512/30316/45486\nf 8380/30317/45487 8379/30318/45488 8408/30319/45489\nf 8408/30320/45490 8514/1531/45491 8380/30321/45492\nf 8098/30322/45493 8515/30323/45494 8096/30324/45495\nf 8516/30325/45496 8096/30326/45497 8515/30327/45498\nf 8096/30328/45499 8516/30329/45500 8089/30330/45501\nf 8515/30331/45502 8517/30332/45503 8516/30333/45504\nf 8518/30334/45505 8516/30335/45506 8517/30336/45507\nf 8517/30337/45508 8519/30338/45509 8518/30339/45510\nf 8516/30340/45511 8518/30341/45512 8091/30342/45513\nf 8091/30343/45514 8089/30344/45515 8516/30345/45516\nf 8095/30346/45517 8091/30347/45518 8518/30348/45519\nf 8518/30349/45520 8524/30350/45521 8095/30351/45522\nf 8524/30352/45523 8518/30353/45524 8519/30354/45525\nf 8519/30355/45526 8520/30356/45527 8524/30357/45528\nf 8520/30358/45529 8522/30359/45530 8521/30360/45531\nf 8521/30361/45532 8524/30362/45533 8520/30363/45534\nf 8523/30364/45535 8521/30365/45536 8522/30366/45537\nf 8521/30367/45538 8523/30368/45539 8118/30369/45540\nf 8118/30370/45541 8120/30371/45542 8521/30372/45543\nf 8524/30373/45544 8521/30374/45545 8120/30375/45546\nf 8120/30376/45547 8095/30377/45548 8524/30378/45549\nf 8522/30379/45550 8525/30380/45551 8523/30381/45552\nf 8526/30382/45553 8523/30383/45554 8525/30384/45555\nf 8525/30385/45556 8527/30386/45557 8526/30387/45558\nf 8523/30388/45559 8526/30389/45560 8116/30390/45561\nf 8116/30391/45562 8118/30392/45563 8523/30393/45564\nf 8114/30394/45565 8116/30395/45566 8526/30396/45567\nf 8526/30397/45568 8528/30398/45569 8114/30399/45570\nf 8528/30400/45571 8526/30401/45572 8527/30402/45573\nf 8527/30403/45574 8529/30404/45575 8528/30405/45576\nf 8530/30406/45577 8528/30407/45578 8529/30408/45579\nf 8529/30409/45580 8531/30410/45581 8530/30411/45582\nf 8528/30412/45583 8530/30413/45584 8112/30414/45585\nf 8112/30415/45586 8114/30416/45587 8528/30417/45588\nf 8110/30418/45589 8112/30419/45590 8530/30420/45591\nf 8530/30421/45592 8532/30422/45593 8110/30423/45594\nf 8532/30424/45595 8530/30425/45596 8531/30426/45597\nf 8531/30427/45598 8533/30428/45599 8532/30429/45600\nf 8107/30430/45601 8532/30431/45602 8533/30432/45603\nf 8533/30433/45604 8534/30434/45605 8107/30435/45606\nf 8532/30436/45607 8107/30437/45608 8108/30438/45609\nf 8108/30439/45610 8110/30440/45611 8532/30441/45612\nf 8105/30442/45613 8107/30443/45614 8534/30444/45615\nf 8534/30445/45616 8106/30446/45617 8105/30447/45618\nf 8069/30448/45619 8068/30449/45620 8535/30450/45621\nf 8535/30451/45622 8536/30452/45623 8069/30453/45624\nf 8536/30454/45625 8535/30455/45626 8537/30456/45627\nf 8537/30457/45628 8538/30458/45629 8536/30459/45630\nf 8538/30460/45631 8537/30461/45632 8539/30462/45633\nf 8539/30463/45634 8540/30464/45635 8538/30465/45636\nf 8540/30466/45637 8539/30467/45638 8187/30468/45639\nf 8187/30469/45640 8186/30470/45641 8540/30471/45642\nf 8192/30472/45643 8187/30473/45644 8539/30474/45645\nf 8539/30475/45646 8541/30476/45647 8192/30477/45648\nf 8541/30478/45649 8539/30479/45650 8537/30480/45651\nf 8537/30481/45652 8542/30482/45653 8541/30483/45654\nf 8542/30484/45655 8537/30485/45656 8535/30486/45657\nf 8535/30487/45658 8543/30488/45659 8542/30489/45660\nf 8543/30490/45661 8535/30491/45662 8068/30492/45663\nf 8068/30493/45664 8070/30494/45665 8543/30495/45666\nf 8544/30496/45667 8543/30497/45668 8070/30498/45669\nf 8070/30499/45670 8077/30500/45671 8544/30501/45672\nf 8543/30502/45673 8544/30503/45674 8545/30504/45675\nf 8545/30505/45676 8542/30506/45677 8543/30507/45678\nf 8542/30508/45679 8545/30509/45680 8546/30510/45681\nf 8546/30511/45682 8541/30512/45683 8542/30513/45684\nf 8541/30514/45685 8546/30515/45686 8194/30516/45687\nf 8194/30517/45688 8192/30518/45689 8541/30519/45690\nf 8202/30520/45691 8194/30521/45692 8546/30522/45693\nf 8546/30523/45694 8547/30524/45695 8202/30525/45696\nf 8547/30526/45697 8546/30527/45698 8545/30528/45699\nf 8545/30529/45700 8548/30530/45701 8547/30531/45702\nf 8548/30532/45703 8545/30533/45704 8544/30534/45705\nf 8544/30535/45706 8549/30536/45707 8548/30537/45708\nf 8549/30538/45709 8544/30539/45710 8077/30540/45711\nf 8077/30541/45712 8078/30542/45713 8549/30543/45714\nf 8550/30544/45715 8549/30545/45716 8078/30546/45717\nf 8078/30547/45718 8085/30548/45719 8550/30549/45720\nf 8549/30550/45721 8550/30551/45722 8551/30552/45723\nf 8551/30553/45724 8548/30554/45725 8549/30555/45726\nf 8548/30556/45727 8551/30557/45728 8552/30558/45729\nf 8552/30559/45730 8547/30560/45731 8548/30561/45732\nf 8547/30562/45733 8552/30563/45734 8204/30564/45735\nf 8204/30565/45736 8202/30566/45737 8547/30567/45738\nf 8212/30568/45739 8204/30569/45740 8552/30570/45741\nf 8552/30571/45742 8553/30572/45743 8212/30573/45744\nf 8553/30574/45745 8552/30575/45746 8551/30576/45747\nf 8551/30577/45748 8554/30578/45749 8553/30579/45750\nf 8554/30580/45751 8551/30581/45752 8550/30582/45753\nf 8550/30583/45754 8555/30584/45755 8554/30585/45756\nf 8555/30586/45757 8550/30587/45758 8085/30588/45759\nf 8085/30589/45760 8086/30590/45761 8555/30591/45762\nf 8556/30592/45763 8555/30593/45764 8086/30594/45765\nf 8086/30595/45766 8093/30596/45767 8556/30597/45768\nf 8555/30598/45769 8556/30599/45770 8557/30600/45771\nf 8557/30601/45772 8554/30602/45773 8555/30603/45774\nf 8554/30604/45775 8557/30605/45776 8558/30606/45777\nf 8558/30607/45778 8553/30608/45779 8554/30609/45780\nf 8553/30610/45781 8558/30611/45782 8214/30612/45783\nf 8214/30613/45784 8212/30614/45785 8553/30615/45786\nf 8222/30616/45787 8214/30617/45788 8558/30618/45789\nf 8558/30619/45790 8559/30620/45791 8222/30621/45792\nf 8559/30622/45793 8558/30623/45794 8557/30624/45795\nf 8557/30625/45796 8560/30626/45797 8559/30627/45798\nf 8560/30628/45799 8557/30629/45800 8556/30630/45801\nf 8556/30631/45802 8561/30632/45803 8560/30633/45804\nf 8561/30634/45805 8556/30635/45806 8093/30636/45807\nf 8093/30637/45808 8127/30638/45809 8561/30639/45810\nf 8563/30640/45811 8561/30641/45812 8127/30642/45813\nf 8127/30643/45814 8125/30644/45815 8563/30645/45816\nf 8562/30646/45817 8560/30647/45818 8561/30648/45819\nf 8561/30649/45820 8563/30650/45821 8562/30651/45822\nf 8564/30652/45823 8559/30653/45824 8560/30654/45825\nf 8560/30655/45826 8562/30656/45827 8564/30657/45828\nf 8223/30658/45829 8222/30659/45830 8559/30660/45831\nf 8559/30661/45832 8564/30662/45833 8223/30663/45834\nf 8144/30664/45835 8143/30665/45836 8565/30666/45837\nf 8565/30667/45838 8145/30668/45839 8144/30669/45840\nf 8145/30670/45841 8565/30671/45842 8566/30672/45843\nf 8566/30673/45844 8146/30674/45845 8145/30675/45846\nf 8146/30676/45847 8566/30677/45848 8154/30678/45849\nf 8162/30679/45850 8154/30680/45851 8566/30681/45852\nf 8566/30682/45853 8567/30683/45854 8162/30684/45855\nf 8567/30685/45856 8566/30686/45857 8565/30687/45858\nf 8565/30688/45859 8568/30689/45860 8567/30690/45861\nf 8568/30691/45862 8565/30692/45863 8143/30693/45864\nf 8143/30694/45865 8142/30695/45866 8568/30696/45867\nf 8141/30697/45868 8568/30698/45869 8142/30699/45870\nf 8568/30700/45871 8141/30701/45872 8569/30702/45873\nf 8569/30703/45874 8567/30704/45875 8568/30705/45876\nf 8567/30706/45877 8569/30707/45878 8164/30708/45879\nf 8164/30709/45880 8162/30710/45881 8567/30711/45882\nf 8172/30712/45883 8164/30713/45884 8569/30714/45885\nf 8569/30715/45886 8570/30716/45887 8172/30717/45888\nf 8570/30718/45889 8569/30719/45890 8141/30720/45891\nf 8141/30721/45892 8140/30722/45893 8570/30723/45894\nf 8571/30724/45895 8570/30725/45896 8140/30726/45897\nf 8140/30727/45898 8572/30728/45899 8571/30729/45900\nf 8572/30730/45901 8140/30731/45902 8139/30732/45903\nf 8139/30733/45904 8573/30734/45905 8572/30735/45906\nf 8573/30736/45907 8139/30737/45908 8134/30738/45909\nf 8134/30739/45910 8137/30740/45911 8573/30741/45912\nf 8570/30742/45913 8571/30743/45914 8174/30744/45915\nf 8174/30745/45916 8172/30746/45917 8570/30747/45918\nf 8186/30748/45919 8174/30749/45920 8571/30750/45921\nf 8571/30751/45922 8540/30752/45923 8186/30753/45924\nf 8540/30754/45925 8571/30755/45926 8572/30756/45927\nf 8572/30757/45928 8538/30758/45929 8540/30759/45930\nf 8538/30760/45931 8572/30761/45932 8573/30762/45933\nf 8573/30763/45934 8536/30764/45935 8538/30765/45936\nf 8536/30766/45937 8573/30767/45938 8137/30768/45939\nf 8137/30769/45940 8069/30770/45941 8536/30771/45942\nf 8574/4986/45943 8576/1376/45944 8575/4335/45945\nf 8575/4335/45946 11878/341/45947 8574/4986/45948\nf 8578/6256/45949 8574/4986/45950 11878/341/45951\nf 11878/341/45952 9375/1236/45953 8578/6256/45954\nf 8580/2059/45955 8578/6256/45956 9375/1236/45957\nf 9375/1236/45958 8581/1/45959 8580/2059/45960\nf 8582/2348/45961 8580/2059/45962 8581/1/45963\nf 8581/1/45964 9173/2708/45965 8582/2348/45966\nf 8584/5141/45967 8582/2348/45968 9173/2708/45969\nf 9173/2708/45970 9176/806/45971 8584/5141/45972\nf 9140/5581/45973 8584/5141/45974 9176/806/45975\nf 9176/806/45976 9141/5334/45977 9140/5581/45978\nf 8586/30772/45979 8587/30773/45980 9159/647/45981\nf 9159/647/45982 9161/3323/45983 8586/30774/45984\nf 8590/3329/45985 11877/30775/45986 9100/30776/45987\nf 9101/30777/45988 8874/4105/45989 9157/30778/45990\nf 9155/30779/45991 8591/30780/45992 8592/3301/45993\nf 8592/3301/45994 9158/206/45995 9155/30781/45996\nf 9233/3631/45997 9156/30782/45998 8593/30783/45999\nf 8593/30784/46000 8595/2303/46001 9233/3631/46002\nf 9080/4880/46003 9234/30785/46004 8662/30786/46005\nf 9173/2708/46006 8581/1/46007 9082/30787/46008\nf 8662/30788/46009 8597/253/46010 9080/4880/46011\nf 9124/499/46012 9081/30789/46013 9083/30790/46014\nf 9081/30791/46015 9124/499/46016 9174/30792/46017\nf 9083/30793/46018 8599/2203/46019 9124/499/46020\nf 9015/3940/46021 8598/30794/46022 8712/30795/46023\nf 8712/30796/46024 8601/1894/46025 9015/3940/46026\nf 9279/3579/46027 9016/30797/46028 8778/30798/46029\nf 8778/30799/46030 8603/1288/46031 9279/3579/46032\nf 9279/3579/46033 8603/1288/46034 8604/5045/46035\nf 8604/5045/46036 8605/2337/46037 9279/3579/46038\nf 8587/30800/46039 9279/3579/46040 8605/2337/46041\nf 8605/2337/46042 9159/647/46043 8587/30801/46044\nf 8602/30802/46045 9141/5334/46046 9176/806/46047\nf 9177/30803/46048 9016/30804/46049 9279/3579/46050\nf 8600/30805/46051 8585/30806/46052 9175/30807/46053\nf 8583/30808/46054 8598/30809/46055 9015/3940/46056\nf 8579/30810/46057 8594/30811/46058 8596/30812/46059\nf 8594/30813/46060 8579/30814/46061 11876/30815/46062\nf 8577/30816/46063 9156/30817/46064 9233/3631/46065\nf 8604/5045/46066 8603/1288/46067 12017/4846/46068\nf 12017/4846/46069 8603/1288/46070 8778/30818/46071\nf 12017/4846/46072 8772/4740/46073 8604/5045/46074\nf 8778/30819/46075 8691/1988/46076 12017/4846/46077\nf 8692/30820/46078 8601/1894/46079 8712/30821/46080\nf 8712/30822/46081 8609/99/46082 8692/30823/46083\nf 8713/30824/46084 8599/2203/46085 9083/30825/46086\nf 9083/30826/46087 8754/564/46088 8713/30827/46089\nf 8610/30828/46090 8597/253/46091 8662/30829/46092\nf 8662/30830/46093 8663/5504/46094 8610/30831/46095\nf 8664/30832/46096 8595/2303/46097 8593/30833/46098\nf 8593/30834/46099 9768/610/46100 8664/30835/46101\nf 9767/30836/46102 9158/206/46103 8592/3301/46104\nf 8592/3301/46105 9770/5821/46106 9767/30837/46107\nf 8612/30838/46108 8613/30839/46109 9806/2107/46110\nf 9808/30840/46111 9766/2376/46112 9769/30841/46113\nf 8664/30842/46114 9768/610/46115 9765/30843/46116\nf 8616/3607/46117 9764/30844/46118 9807/30845/46119\nf 9807/30846/46120 9811/2470/46121 8616/3607/46122\nf 9764/30847/46123 8616/3607/46124 8618/652/46125\nf 8618/652/46126 8619/588/46127 9764/30848/46128\nf 8615/30849/46129 8806/30850/46130 8611/30851/46131\nf 8753/30852/46132 8611/30853/46133 8806/30854/46134\nf 8619/588/46135 8618/652/46136 8620/4678/46137\nf 8620/4678/46138 8621/4536/46139 8619/588/46140\nf 8619/588/46141 8621/4536/46142 8752/30855/46143\nf 8621/4536/46144 8620/4678/46145 8622/3118/46146\nf 8622/3118/46147 8709/6044/46148 8621/4536/46149\nf 8709/6044/46150 8622/3118/46151 8624/5075/46152\nf 8624/5075/46153 8694/780/46154 8709/6044/46155\nf 8694/780/46156 8624/5075/46157 8626/3360/46158\nf 8626/3360/46159 8627/4196/46160 8694/780/46161\nf 8773/5633/46162 9795/30856/46163 9794/30857/46164\nf 9794/30858/46165 10055/5990/46166 8773/5633/46167\nf 8752/30859/46168 8621/4536/46169 8709/6044/46170\nf 8708/30860/46171 8713/30861/46172 8754/564/46173\nf 9795/30862/46174 8773/5633/46175 8772/4740/46176\nf 8772/4740/46177 12017/4846/46178 9795/30863/46179\nf 8694/780/46180 8627/4196/46181 8606/30864/46182\nf 12017/4846/46183 8691/1988/46184 8693/30865/46185\nf 8692/30866/46186 8609/99/46187 8707/30867/46188\nf 8623/30868/46189 8625/30869/46190 8608/30870/46191\nf 8628/30871/46192 8629/30872/46193 8630/267/46194\nf 8607/30873/46195 8628/30874/46196 8630/267/46197\nf 8630/267/46198 8631/5159/46199 8607/30875/46200\nf 8811/30876/46201 8607/30877/46202 8631/5159/46203\nf 8631/5159/46204 8632/5282/46205 8811/30878/46206\nf 8992/30879/46207 8811/30880/46208 8632/5282/46209\nf 8632/5282/46210 11866/6317/46211 8992/30881/46212\nf 9160/30882/46213 8992/30883/46214 11866/6317/46215\nf 8633/30884/46216 8634/561/46217 8588/30885/46218\nf 8588/30886/46219 8634/561/46220 8589/30887/46221\nf 8635/4472/46222 11866/6317/46223 8632/5282/46224\nf 8632/5282/46225 8636/5612/46226 8635/4472/46227\nf 8632/5282/46228 8631/5159/46229 8637/5498/46230\nf 8637/5498/46231 8636/5612/46232 8632/5282/46233\nf 8638/3442/46234 8635/4472/46235 8636/5612/46236\nf 8636/5612/46237 8639/5026/46238 8638/3442/46239\nf 8640/673/46240 8639/5026/46241 8636/5612/46242\nf 8636/5612/46243 8637/5498/46244 8640/673/46245\nf 9082/30888/46246 8581/1/46247 9375/1236/46248\nf 8641/5664/46249 9103/2907/46250 9099/30889/46251\nf 9099/30890/46252 11980/30891/46253 8641/5664/46254\nf 8874/4105/46255 9101/30892/46256 9102/30893/46257\nf 9102/30894/46258 8875/1834/46259 8874/4105/46260\nf 8592/3301/46261 8591/30895/46262 8876/30896/46263\nf 8876/30897/46264 9579/5087/46265 8592/3301/46266\nf 8592/3301/46267 9579/5087/46268 9573/611/46269\nf 9573/611/46270 9770/5821/46271 8592/3301/46272\nf 8613/30898/46273 9574/30899/46274 9576/724/46275\nf 9576/724/46276 9806/2107/46277 8613/30900/46278\nf 8614/30901/46279 9575/30902/46280 8647/5170/46281\nf 8647/5170/46282 8617/30903/46283 8614/30904/46284\nf 9103/2907/46285 8641/5664/46286 9605/3784/46287\nf 9605/3784/46288 9594/281/46289 9103/2907/46290\nf 8644/30905/46291 8643/30906/46292 9596/5662/46293\nf 9103/2907/46294 9594/281/46295 8650/30907/46296\nf 9596/5662/46297 8643/30908/46298 8642/30909/46299\nf 9596/5662/46300 8651/433/46301 8644/30910/46302\nf 8652/658/46303 8647/5170/46304 9575/30911/46305\nf 9575/30912/46306 8653/2760/46307 8652/658/46308\nf 8644/30913/46309 8651/433/46310 9611/383/46311\nf 9611/383/46312 8645/30914/46313 8644/30915/46314\nf 8646/30916/46315 8645/30917/46316 9611/383/46317\nf 8654/30918/46318 8653/2760/46319 9575/30919/46320\nf 9620/33/46321 9709/30920/46322 9612/30921/46323\nf 9611/383/46324 8656/1568/46325 8655/30922/46326\nf 8656/1568/46327 9611/383/46328 8651/433/46329\nf 8649/30923/46330 8648/30924/46331 8657/4756/46332\nf 8657/4756/46333 8658/2648/46334 8649/30925/46335\nf 8651/433/46336 9596/5662/46337 8659/2746/46338\nf 8659/2746/46339 9596/5662/46340 9595/30926/46341\nf 8649/30927/46342 8658/2648/46343 9713/30928/46344\nf 8659/2746/46345 8660/5763/46346 8651/433/46347\nf 8651/433/46348 8660/5763/46349 8656/1568/46350\nf 9709/30929/46351 9620/33/46352 8661/6288/46353\nf 8661/6288/46354 9715/30930/46355 9709/30931/46356\n"
  },
  {
    "path": "maya/prefs/shelves/shelf_glTF.mel",
    "content": "global proc shelf_glTF () {\n    global string $gBuffStr;\n    global string $gBuffStr0;\n    global string $gBuffStr1;\n\n\n    shelfButton\n        -enableCommandRepeat 1\n        -enable 1\n        -width 35\n        -height 35\n        -manage 1\n        -visible 1\n        -preventOverride 0\n        -annotation \"Export to glTF\" \n        -enableBackground 0\n        -backgroundColor 0 0 0 \n        -highlightColor 0.321569 0.521569 0.65098 \n        -align \"center\" \n        -label \"Export\" \n        -labelOffset 0\n        -rotation 0\n        -flipX 0\n        -flipY 0\n        -useAlpha 1\n        -overlayLabelColor 0.8 0.8 0.8 \n        -overlayLabelBackColor 0 0 0 0.5 \n        -image \"Maya2glTF.png\" \n        -image1 \"Maya2glTF.png\" \n        -style \"iconOnly\" \n        -marginWidth 1\n        -marginHeight 1\n        -command \"maya2glTF_UI();\\n\" \n        -sourceType \"mel\" \n        -commandRepeatable 1\n        -flat 1\n    ;\n\n    shelfButton\n        -enableCommandRepeat 1\n        -enable 1\n        -width 35\n        -height 35\n        -manage 1\n        -visible 1\n        -preventOverride 0\n        -annotation \"Set logical glTF parent\" \n        -enableBackground 0\n        -backgroundColor 0 0 0 \n        -highlightColor 0.321569 0.521569 0.65098 \n        -align \"center\" \n        -label \"Set logical parent\" \n        -labelOffset 0\n        -rotation 0\n        -flipX 0\n        -flipY 0\n        -useAlpha 1\n        -overlayLabelColor 0.8 0.8 0.8 \n        -overlayLabelBackColor 0 0 0 0.5 \n        -image \"Maya2glTF_SetLogicalParent.png\" \n        -image1 \"Maya2glTF_SetLogicalParent.png\" \n        -style \"iconOnly\" \n        -marginWidth 1\n        -marginHeight 1\n        -command \"maya2glTF_logicalParents(1);\\n\" \n        -sourceType \"mel\" \n        -commandRepeatable 1\n        -flat 1\n    ;\n\n    shelfButton\n        -enableCommandRepeat 1\n        -enable 1\n        -width 35\n        -height 35\n        -manage 1\n        -visible 1\n        -preventOverride 0\n        -annotation \"Clear logical glTF parents\" \n        -enableBackground 0\n        -backgroundColor 0 0 0 \n        -highlightColor 0.321569 0.521569 0.65098 \n        -align \"center\" \n        -label \"Clear logical parents\" \n        -labelOffset 0\n        -rotation 0\n        -flipX 0\n        -flipY 0\n        -useAlpha 1\n        -overlayLabelColor 0.8 0.8 0.8 \n        -overlayLabelBackColor 0 0 0 0.5 \n        -image \"Maya2glTF_ClearLogicalParents.png\" \n        -image1 \"Maya2glTF_ClearLogicalParents.png\" \n        -style \"iconOnly\" \n        -marginWidth 1\n        -marginHeight 1\n        -command \"maya2glTF_logicalParents(0);\\n\" \n        -sourceType \"mel\" \n        -commandRepeatable 1\n        -flat 1\n    ;\n} \n"
  },
  {
    "path": "maya/renderData/shaders/glTF_PBR.ogsfx",
    "content": "//\n// This fragment shader defines a reference implementation for Physically Based Shading of\n// a microfacet surface material defined by a glTF model.\n//\n// References:\n// [1] Real Shading in Unreal Engine 4\n//     http://blog.selfshadow.com/publications/s2013-shading-course/karis/s2013_pbs_epic_notes_v2.pdf\n// [2] Physically Based Shading at Disney\n//     http://blog.selfshadow.com/publications/s2012-shading-course/burley/s2012_pbs_disney_brdf_notes_v3.pdf\n// [3] README.md - Environment Maps\n//     https://github.com/KhronosGroup/glTF-WebGL-PBR/#environment-maps\n// [4] \"An Inexpensive BRDF Model for Physically based Rendering\" by Christophe Schlick\n//     https://www.cs.virginia.edu/~jdl/bib/appearance/analytic%20models/schlick94b.pdf\n#define USE_IBL\n#define HAS_BASECOLORMAP\n#define HAS_NORMALMAP\n#define HAS_EMISSIVEMAP\n#define HAS_METALROUGHNESSMAP\n#define HAS_OCCLUSIONMAP\n#define MANUAL_SRGB\n#define SRGB_FAST_APPROXIMATION\n#undef USE_LIGHT_BINDING\n\n#define M_PI 3.141592653589793\n\nuniform mat4 u_MVPMatrix : WorldViewProjection;\nuniform mat4 u_ModelMatrix : World;\nuniform mat4 u_NormalMatrix : WorldInverseTranspose;\nuniform mat4 u_CameraMatrix : ViewInverse;\n\n#ifdef USE_LIGHT_BINDING\nuniform vec3 u_LightColor : LightColor\n<\n\tstring UIName = \"Light Color\";\n\tstring UIWidget = \"ColorPicker\";\n    string UIGroup = \"PBR Light\";\n\tstring Object = \"directionalLight1\";\n> = {1.0, 1.0, 1.0};\n\nuniform float u_LightIntensity : LightIntensity\n<\n\tstring UIName = \"Light Intensity\";\n    string UIGroup = \"PBR Light\";\n\tfloat UIMin = 0;\n\tfloat UISoftMin = 0;\n\tfloat UIMax = 10;\n\tfloat UISoftMax = 10;\n\tfloat UIStep = 0.001;\n\tstring UIWidget = \"Slider\";\n\tstring Object = \"directionalLight1\";\n> = {1.0};\n\nuniform vec3 u_LightDir : Direction\n<\n\tstring UIName = \"Light Direction\";\n\tstring Space = \"World\";\n    string UIGroup = \"PBR Light\";\n\tstring Object = \"directionalLight1\";\n> = {0,-1,0};\n#else\nuniform vec3 u_LightColor\n<\n\tstring UIName = \"Light Color\";\n\tstring UIWidget = \"ColorPicker\";\n    string UIGroup = \"PBR Light\";\n> = {1.0, 1.0, 1.0};\n\nuniform float u_LightIntensity\n<\n\tstring UIName = \"Light Intensity\";\n    string UIGroup = \"PBR Light\";\n\tfloat UIMin = 0;\n\tfloat UISoftMin = 0;\n\tfloat UIMax = 10;\n\tfloat UISoftMax = 10;\n\tfloat UIStep = 0.001;\n\tstring UIWidget = \"Slider\";\n> = {1.0};\n\nuniform float u_LightRotation\n<\n\tstring UIName = \"Light rotation (deg)\";\n    string UIGroup = \"PBR Light\";\n\tstring UIWidget = \"Slider\";\n\tfloat UIMin = 0;\n\tfloat UIMax = 360;\n> = 75;\n\nuniform float u_LightPitch\n<\n\tstring UIName = \"Light pitch (deg)\";\n    string UIGroup = \"PBR Light\";\n\tstring UIWidget = \"Slider\";\n\tfloat UIMin = -90;\n\tfloat UIMax = 90;\n> = 40;\n#endif\n\n#ifdef USE_IBL\n\nuniform textureCube u_DiffuseEnvTexture\n<\n    string UIName = \"Diffuse env map (LIN)\";\n    string ResourceType = \"Cube\";\n    string ResourceName = \"../images/damaged_helmet_diffuse_env.dds\";\n    string UIGroup = \"PBR IBL\";\n\n    int UIOrder = 2001;\n>;\n\nuniform samplerCube u_DiffuseEnvSampler = sampler_state\n{\n    Texture = <u_DiffuseEnvTexture>;\n    TEXTURE_MIN_FILTER = LINEAR_MIPMAP_LINEAR;\n    TEXTURE_MAG_FILTER = LINEAR;\n};\n\nuniform textureCube u_SpecularEnvTexture\n<\n    string UIName = \"Specular env map (LIN)\";\n    string ResourceType = \"Cube\";\n    string ResourceName = \"../images/damaged_helmet_specular_env.dds\";\n    string UIGroup = \"PBR IBL\";\n    int UIOrder = 2002;\n>;\n\nuniform samplerCube u_SpecularEnvSampler = sampler_state\n{\n    Texture = <u_SpecularEnvTexture>;\n    TEXTURE_MIN_FILTER = LINEAR_MIPMAP_LINEAR;\n    TEXTURE_MAG_FILTER = LINEAR;\n};\n\nuniform texture2D u_brdfTexture\n<\n    string UIName = \"BRDF LUT (sRGB)\";\n    string ResourceType = \"2D\";\n    string ResourceName = \"../images/brdfLUT.dds\";\n    string UIGroup = \"PBR IBL\";\n    int UIOrder = 2003;\n>;\n\nuniform sampler2D u_brdfLUT = sampler_state\n{\n    Texture = <u_brdfTexture>;\n    TEXTURE_MIN_FILTER = LINEAR;\n    TEXTURE_MAG_FILTER = LINEAR;\n    TEXTURE_WRAP_S = CLAMP_TO_EDGE;\n    TEXTURE_WRAP_T = CLAMP_TO_EDGE;\n    TEXTURE_WRAP_R = CLAMP_TO_EDGE;\n};\n\n#endif\n\n#ifdef HAS_BASECOLORMAP\nuniform texture2D u_BaseColorTexture\n<\n    string UIName = \"Base color map (sRGB)\";\n    string ResourceType = \"2D\";\n\tstring UIGroup = \"PBR Material\";\n    int UIOrder = 1001;\n>;\n\nuniform sampler2D u_BaseColorSampler = sampler_state\n{\n  Texture = <u_BaseColorTexture>;\n};\n#endif\n\n#ifdef HAS_NORMALMAP\nuniform texture2D u_NormalTexture\n<\n    string UIName = \"Normal map (LIN)\";\n    string ResourceType = \"2D\";\n    string UIGroup = \"PBR Material\";\n    int UIOrder = 1501;\n>;\n\nuniform sampler2D u_NormalSampler = sampler_state\n{\n  Texture = <u_NormalTexture>;\n};\n\nuniform float u_NormalScale\n<\n    string UIName = \"Normal scale\";\n    string UIGroup = \"PBR Material\";\n    int UIOrder = 1502;\n> = 1;\n#endif\n\n#ifdef HAS_EMISSIVEMAP\n\nuniform texture2D u_EmissiveTexture\n<\n    string UIName = \"Emissive map (sRGB)\";\n    string ResourceType = \"2D\";\n\tstring UIGroup = \"PBR Material\";\n    int UIOrder = 1601;\n>;\n\nuniform sampler2D u_EmissiveSampler = sampler_state\n{\n  Texture = <u_EmissiveTexture>;\n};\n\nuniform vec3 u_EmissiveColor\n<\n    string UIName = \"Emissive color factor\";\n    string UIGroup = \"PBR Material\";\n    string UIWidget = \"ColorPicker\";\n    int UIOrder = 1602;\n> = {0,0,0};\n\n#endif\n\n#ifdef HAS_METALROUGHNESSMAP\nuniform texture2D u_MetallicTexture\n<\n    string UIName = \"Metallic map (B,LIN)\";\n    string ResourceType = \"2D\";\n    string UIGroup = \"PBR Material\";\n    int UIOrder = 1201;\n>;\n\nuniform sampler2D u_MetallicSampler = sampler_state\n{\n  Texture = <u_MetallicTexture>;\n};\n\nuniform texture2D u_RoughnessTexture\n<\n    string UIName = \"Roughness map (G,LIN)\";\n    string ResourceType = \"2D\";\n    string UIGroup = \"PBR Material\";\n    int UIOrder = 1203;\n>;\n\nuniform sampler2D u_RoughnessSampler = sampler_state\n{\n  Texture = <u_RoughnessTexture>;\n};\n\n\n#endif\n\n#ifdef HAS_OCCLUSIONMAP\nuniform texture2D u_OcclusionTexture\n<\n    string UIName = \"Occlusion map (R,LIN)\";\n    string ResourceType = \"2D\";\n    string UIGroup = \"PBR Material\";\n    int UIOrder = 1401;\n>;\nuniform sampler2D u_OcclusionSampler = sampler_state\n{\n  Texture = <u_OcclusionTexture>;\n};\n\nuniform float u_OcclusionStrength\n<\n    string UIName = \"Occlusion strength\";\n    string UIGroup = \"PBR Material\";\n    int UIOrder = 1402;\n> = 1;\n\n#endif\n\nuniform float u_MetallicStrength\n<\n    string UIName = \"Metallic strength\";\n    string UIGroup = \"PBR Material\";\n    int UIOrder = 1202;\n> = 0.5;\n\nuniform float u_RoughnessStrength\n<\n    string UIName = \"Roughness strength\";\n    string UIGroup = \"PBR Material\";\n    int UIOrder = 1302;\n> = 0.5;\n\nuniform vec4 u_BaseColorFactor\n<\n    string UIName = \"Base color factor\";\n    string UIGroup = \"PBR Material\";\n    string UIWidget = \"ColorPicker\";\n    int UIOrder = 1102;\n> = {1.0, 1.0, 1.0, 1.0};\n\n// debugging flags used for shader output of intermediate PBR variables\nuniform vec4 u_ScaleDiffBaseMR\n<\n    string UIName = \"Scale Diff Base MR\";\n    string UIGroup = \"PBR Debug\";\n    int UIOrder = 9001;\n> = {0.0, 0.0, 0.0, 0.0};\n\nuniform vec4 u_ScaleFGDSpec\n<\n    string UIName = \"Scale FGD Spec\";\n    string UIGroup = \"PBR Debug\";\n    int UIOrder = 9002;\n> = {0.0, 0.0, 0.0, 0.0};\n\nuniform vec4 u_ScaleIBL_Occl\n<\n    string UIName = \"Scale IBL AO(w)\";\n    string UIGroup = \"IBL Debug\";\n    string UIWidget = \"\";\n    int UIOrder = 9003;\n> = {1.0, 1.0, 0.0, 1.0};\n\nuniform float u_EnvRotationAngle\n<\n    string UIName = \"Environment Rotation\";\n    string UIGroup = \"IBL Debug\";\n    int UIOrder = 9004;\n\tfloat UIMin = 0;\n\tfloat UISoftMin = 0;\n\tfloat UIMax = 360;\n\tfloat UISoftMax = 360;\n\tfloat UIStep = 1;\n\tstring UIWidget = \"Slider\";\n> = 0;\n\nuniform int u_RoughnessOffset\n<\n    string UIName = \"Roughness offset\";\n    string UIGroup = \"IBL Advanced\";\n    int UIOrder = 9000;\n\tfloat UIMin = 0;\n\tfloat UISoftMin = 0;\n\tfloat UIMax = 12;\n\tfloat UISoftMax = 12;\n\tfloat UIStep = 1;\n\tstring UIWidget = \"Slider\";\n> = 0;\n\nuniform float u_BurleyFactor\n<\n    string UIName = \"Burley factor\";\n    string UIGroup = \"IBL Advanced\";\n    int UIOrder = 9001;\n\tfloat UIMin = 0.01;\n\tfloat UISoftMin = 0.01;\n\tfloat UIMax = 1.00;\n\tfloat UISoftMax = 1.00;\n\tfloat UIStep = 0.01;\n> = 0;\n\nuniform bool u_UndoEdgeStretch\n<\n    string UIName = \"Undo edge stretch?\";\n    string UIGroup = \"IBL Advanced\";\n    int UIOrder = 9002;\n> = false;\n\nuniform bool u_FlipEnvMapZ\n<\n    string UIName = \"Flip environment Z?\";\n    string UIGroup = \"IBL Advanced\";\n    int UIOrder = 9004;\n> = true;\n\nuniform bool u_IsEnvMapInsRGB\n<\n    string UIName = \"sRGB environment?\";\n    string UIGroup = \"IBL Advanced\";\n    int UIOrder = 9005;\n> = false;\n\nuniform bool u_IsEnvMapInRGBM\n<\n    string UIName = \"RGBM environment?\";\n    string UIGroup = \"IBL Advanced\";\n    int UIOrder = 9006;\n> = false;\n\nuniform bool u_IsBRDFsSRGB\n<\n    string UIName = \"sRGB BRDF table?\";\n    string UIGroup = \"IBL Advanced\";\n    int UIOrder = 9007;\n> = false;\n\nuniform bool u_UseMeshTangents\n<\n    string UIName = \"Use mesh tangents?\";\n    string UIGroup = \"PBR Advanced\";\n    int UIOrder = 3001;\n> = false;\n\nuniform bool u_IsDoubleSided\n<\n    string UIName = \"Double sided material?\";\n    string UIGroup = \"PBR Advanced\";\n    int UIOrder = 3000;\n> = false;\n\nuniform bool u_IsBaseColorInsRGB\n<\n    string UIName = \"sRGB basecolor?\";\n    string UIGroup = \"PBR Debug\";\n    int UIOrder = 9010;\n> = true;\n\nuniform bool u_IsEmissiveInsRGB\n<\n    string UIName = \"sRGB emissive?\";\n    string UIGroup = \"PBR Debug\";\n    int UIOrder = 9003;\n> = true;\n\n// Encapsulate the various inputs used by the various functions in the shading equation\n// We store values in this struct to simplify the integration of alternative implementations\n// of the shading terms, outlined in the Readme.MD Appendix.\nstruct PBRInfo\n{\n    float NdotL;                  // cos angle between normal and light direction\n    float NdotV;                  // cos angle between normal and view direction\n    float NdotH;                  // cos angle between normal and half vector\n    float LdotH;                  // cos angle between light direction and half vector\n    float VdotH;                  // cos angle between view direction and half vector\n    float perceptualRoughness;    // roughness value, as authored by the model creator (input to shader)\n    float metalness;              // metallic value at the surface\n    vec3 reflectance0;            // full reflectance color (normal incidence angle)\n    vec3 reflectance90;           // reflectance color at grazing angle\n    float alphaRoughness;         // roughness mapped to a more linear change in the roughness (proposed by [2])\n    vec3 diffuseColor;            // color contribution from diffuse lighting\n    vec3 specularColor;           // color contribution from specular lighting\n};\n\nattribute vs_input\n{\n    vec4 a_Position : POSITION;\n    vec4 a_Normal   : NORMAL;\n    vec4 a_Tangent  : TANGENT;\n    vec4 a_BiTangent: BINORMAL;\n    vec2 a_UV       : TEXCOORD0;\n};\n\nattribute vs_to_ps\n{\n    vec3  v_Position  : POSITION0;\n    vec3  v_CameraPos : POSITION1;\n    vec2  v_UV        : TEXCOORD0;\n    float v_BinormalSign;\n    mat3  v_TBN;\n#ifndef USE_LIGHT_BINDING\n    vec3  v_LightDir;\n#endif\n};\n\nattribute ps_output\n{\n  vec4 out_color : COLOR0;\n}\n\nGLSLShader VS\n{\n    vec3 toUnity(vec3 p)\n    {\n        return p.xzy * vec3(-1, -1, 1);\n    }\n\n    void main()\n    {\n        vec4 pos = u_ModelMatrix * a_Position;\n        v_Position = vec3(pos.xyz) / pos.w;\n        v_CameraPos = u_CameraMatrix[3].xyz / u_CameraMatrix[3].w;\n\n        vec3 normalW = normalize((u_NormalMatrix * a_Normal).xyz);\n        vec3 tangentW = normalize((u_ModelMatrix * a_Tangent).xyz);\n        vec3 bitangentW = normalize((u_ModelMatrix * a_BiTangent).xyz);\n        //vec3 bitangentW = normalize(cross(normalW, tangentW) * a_Tangent.w);\n\n        v_TBN = mat3(tangentW, bitangentW, normalW);\n\n        v_BinormalSign = a_Tangent.w;\n\n        v_UV = vec2(a_UV.x, 1.0 - a_UV.y);\n\n#ifndef USE_LIGHT_BINDING\n        float rot = u_LightRotation * M_PI / 180;\n        float pitch = u_LightPitch * M_PI / 180;\n        v_LightDir = vec3(sin(rot) * cos(pitch), sin(pitch), cos(rot) * cos(pitch));\n#endif\n        gl_Position = u_MVPMatrix * a_Position; // needs w for proper perspective correction\n    }\n}\n\nGLSLShader PS\n{\n#extension GL_ARB_texture_query_levels : enable\n\n    const float c_MinRoughness = 0.04;\n\n    // In a normal map, (128, 128, 255) means no deviation from the standard normal\n    // So (128,128,255) must map to (0,0,1)\n    // The GPU will map 0..255 to 0..1, so 128 will map to 128/255\n    // To map 128/255 to 0 we multiply by 255/128, and subtract 1.\n    // Using the same transform 0 will map to -1, and 255 will map to 0.9921875\n    // Normalizing the result fixes this, but 128 will stay 0.\n    // Multiplying by 2.0 would give a slight deviation, and that can result in seams when looking up the reflected color mirrored meshes.\n\tconst float c_NormalMapZeroValue = 128.0/255.0;\n\tconst float c_NormalMapZeroScale = 255.0/128.0;\n\n    // http://graphicrants.blogspot.com/2009/04/rgbm-color-encoding.html\n    vec4 RGBMDecode(vec4 rgbm, bool isEncoded) \n    {\n        return isEncoded ? vec4(6.0 * rgbm.rgb * rgbm.a, rgbm.a) : rgbm;\n    }\n\n    vec3 colorize(vec3 p)\n    {\n        return sign(p) * pow(abs(p), vec3(1)) * 0.5 + vec3(0.5);\n    }\n\n    vec4 SRGBtoLINEAR(vec4 srgbIn)\n    {\n#ifdef MANUAL_SRGB\n#   ifdef SRGB_FAST_APPROXIMATION\n        vec3 linOut = pow(srgbIn.xyz,vec3(2.2));\n#   else //SRGB_FAST_APPROXIMATION\n        vec3 bLess = step(vec3(0.04045),srgbIn.xyz);\n        vec3 linOut = mix( srgbIn.xyz/vec3(12.92), pow((srgbIn.xyz+vec3(0.055))/vec3(1.055),vec3(2.4)), bLess );\n#   endif //SRGB_FAST_APPROXIMATION\n        return vec4(linOut,srgbIn.w);;\n#else //MANUAL_SRGB\n        return srgbIn;\n#endif //MANUAL_SRGB\n    }\n\n    vec4 SRGBtoLINEAR(vec4 colorIn, bool isSRGB)\n    {\n        return isSRGB ? SRGBtoLINEAR(colorIn) : colorIn;\n    }\n\n    vec4 tex2D(sampler2D s, vec2 uv, vec4 defaultColor)\n    {\n        return textureSize(s, 0).x > 1 ? texture(s, uv) : defaultColor;\n    }\n\n    vec3 rotateAboutY(vec3 v, float degrees)\n    {\n        float angle =degrees * M_PI / 180.0;\n        float ca = cos(angle);\n        float sa = sin(angle);\n        return vec3(v.x * ca + v.z * sa, v.y, v.z * ca-v.x * sa);\n    }\n\n    float BurleyToMipSimple(float fPerceptualRoughness, float nMipMax)\n    {\n        // https://docs.knaldtech.com/doku.php?id=specular_lys\n        // approximate remap from LdotR based distribution to NdotH\n        float fScale = fPerceptualRoughness*((1+u_BurleyFactor) - u_BurleyFactor*fPerceptualRoughness);    \n        return fScale * nMipMax;\n    }\n\n    vec3 undoCubeMapStretch(vec3 v, float cube_size) \n    {\n        // http://the-witness.net/news/2012/02/seamless-cube-map-filtering/\n        float scale = (cube_size-1)/cube_size;\n        //float scale = 1 - exp2(lod - textureQueryLevels(s));\n        float M = max(max(abs(v.x), abs(v.y)), abs(v.z));\n        if (abs(v.x) != M) v.x *= scale;\n        if (abs(v.y) != M) v.y *= scale;\n        if (abs(v.z) != M) v.z *= scale;\n        return u_FlipEnvMapZ ? v * vec3(1,1,-1) : v;\n    }\n\n    vec3 texEnvSpecular(vec3 v, PBRInfo pbrInputs)\n    {\n        vec4 color = vec4(0);\n\n        // HACK: It seems Maya passes a single pixel texture when no texture is assigned\n        if (textureSize(u_SpecularEnvSampler, 0).x > 1)\n        {\n            int mipMapCount = textureQueryLevels(u_SpecularEnvSampler);\n            int mipMax = max(0, mipMapCount - u_RoughnessOffset - 1);\n            float lod = BurleyToMipSimple(pbrInputs.perceptualRoughness, mipMax);\n            \n            v = rotateAboutY(v, u_EnvRotationAngle);\n\n            if (u_UndoEdgeStretch)\n            {\n                int lod0 = int(lod);\n                int lod1 = lod0 + 1;\n                float lodf = fract(lod);\n\n                int size0 = textureSize(u_SpecularEnvSampler, lod0).x;\n                int size1 = textureSize(u_SpecularEnvSampler, lod1).x;\n\n                vec3 v0 = undoCubeMapStretch(v, size0);\n                vec3 v1 = undoCubeMapStretch(v, size1);\n\n                vec4 c0 = textureLod(u_SpecularEnvSampler, v0, lod0);\n                vec4 c1 = textureLod(u_SpecularEnvSampler, v1, lod1);\n                color = lerp(c0, c1, lodf);\n            }\n            else \n            {\n                color = textureLod(u_SpecularEnvSampler, v, lod);\n            }\n\n            color = SRGBtoLINEAR(RGBMDecode(color, u_IsEnvMapInRGBM), u_IsEnvMapInsRGB);\n        }\n\n        return color.rgb;\n    }\n\n    vec3 texEnvDiffuse(vec3 v)\n    {\n        vec4 color = vec4(0);\n\n        // HACK: It seems Maya passes a single pixel texture when no texture is assigned\n        int size = textureSize(u_DiffuseEnvSampler, 0).x;\n        if (size > 1)\n        {\n            // TODO: Diffuse LOD\n            const float lod = 0;\n\n            v = rotateAboutY(v, u_EnvRotationAngle);\n\n            if (u_UndoEdgeStretch)\n            {\n                v = undoCubeMapStretch(v, size);\n            }\n\n            color = textureLod(u_DiffuseEnvSampler, v, lod);\n            color = SRGBtoLINEAR(RGBMDecode(color, u_IsEnvMapInRGBM), u_IsEnvMapInsRGB);\n        }\n\n        return color.rgb;\n    }\n\n    // Find the normal for this fragment, pulling either from a predefined normal map\n    // or from the interpolated mesh normal and tangent attributes.\n    vec3 getNormal()\n    {\n        // Retrieve the tangent space matrix\n        mat3 tbn = v_TBN;\n\n#ifdef HAS_NORMALMAP\n        vec3 n = tex2D(u_NormalSampler, v_UV, vec4(c_NormalMapZeroValue, c_NormalMapZeroValue, 1.0, 1.0)).rgb;\n\n        if (!u_UseMeshTangents) {\n            // Recompute TBN in shader.\n            // Useful when normal-maps are not baked in Maya, to get correct results.\n            vec3 pos_dx = dFdx(v_Position);\n            vec3 pos_dy = dFdy(v_Position);\n            vec3 tex_dx = dFdx(vec3(v_UV, 0.0));\n            vec3 tex_dy = dFdy(vec3(v_UV, 0.0));\n            vec3 t = (tex_dy.t * pos_dx - tex_dx.t * pos_dy) / (tex_dx.s * tex_dy.t - tex_dy.s * tex_dx.t);\n\n            vec3 ng = tbn[2];\n            t = normalize(t - ng * dot(ng, t));\n            vec3 b = normalize(cross(ng, t)) * v_BinormalSign;\n            tbn = mat3(t, b, ng);\n        }\n\n        n = normalize(tbn * ((c_NormalMapZeroScale * n - 1.0) * vec3(u_NormalScale, u_NormalScale, 1.0)));\n#else\n        vec3 n = normalize(tbn[2].xyz);\n#endif\n\n        return n;\n    }\n\n    // Calculation of the lighting contribution from an optional Image Based Light source.\n    // Precomputed Environment Maps are required uniform inputs and are computed as outlined in [1].\n    // See our README.md on Environment Maps [3] for additional discussion.\n    vec3 getIBLContribution(PBRInfo pbrInputs, vec3 n, vec3 reflection)\n    {\n#ifdef USE_IBL\n        // retrieve a scale and bias to F0. See [1], Figure 3\n        vec3 brdf = SRGBtoLINEAR(tex2D(u_brdfLUT, vec2(pbrInputs.NdotV, 1.0 - pbrInputs.perceptualRoughness), vec4(0)), u_IsBRDFsSRGB).rgb;\n        vec3 diffuseLight = texEnvDiffuse(n);\n        vec3 specularLight = texEnvSpecular(reflection, pbrInputs);\n\n        vec3 diffuse = diffuseLight * pbrInputs.diffuseColor;\n        vec3 specular = specularLight * (pbrInputs.specularColor * brdf.x + brdf.y);\n\n        // For presentation, this allows us to disable IBL terms\n        diffuse *= u_ScaleIBL_Occl.x;\n        specular *= u_ScaleIBL_Occl.y;\n\n        return diffuse + specular;\n#else\n        return vec3(0);\n#endif\n    }\n\n    // Basic Lambertian diffuse\n    // Implementation from Lambert's Photometria https://archive.org/details/lambertsphotome00lambgoog\n    // See also [1], Equation 1\n    vec3 diffuse(PBRInfo pbrInputs)\n    {\n        return pbrInputs.diffuseColor / M_PI;\n    }\n\n    // The following equation models the Fresnel reflectance term of the spec equation (aka F())\n    // Implementation of fresnel from [4], Equation 15\n    vec3 specularReflection(PBRInfo pbrInputs)\n    {\n        return pbrInputs.reflectance0 + (pbrInputs.reflectance90 - pbrInputs.reflectance0) * pow(clamp(1.0 - pbrInputs.VdotH, 0.0, 1.0), 5.0);\n    }\n\n    // This calculates the specular geometric attenuation (aka G()),\n    // where rougher material will reflect less light back to the viewer.\n    // This implementation is based on [1] Equation 4, and we adopt their modifications to\n    // alphaRoughness as input as originally proposed in [2].\n    float geometricOcclusion(PBRInfo pbrInputs)\n    {\n        float NdotL = pbrInputs.NdotL;\n        float NdotV = pbrInputs.NdotV;\n        float r = pbrInputs.alphaRoughness;\n\n        float attenuationL = 2.0 * NdotL / (NdotL + sqrt(r * r + (1.0 - r * r) * (NdotL * NdotL)));\n        float attenuationV = 2.0 * NdotV / (NdotV + sqrt(r * r + (1.0 - r * r) * (NdotV * NdotV)));\n        return attenuationL * attenuationV;\n    }\n\n    // The following equation(s) model the distribution of microfacet normals across the area being drawn (aka D())\n    // Implementation from \"Average Irregularity Representation of a Roughened Surface for Ray Reflection\" by T. S. Trowbridge, and K. P. Reitz\n    // Follows the distribution function recommended in the SIGGRAPH 2013 course notes from EPIC Games [1], Equation 3.\n    float microfacetDistribution(PBRInfo pbrInputs)\n    {\n        float roughnessSq = pbrInputs.alphaRoughness * pbrInputs.alphaRoughness;\n        float f = (pbrInputs.NdotH * roughnessSq - pbrInputs.NdotH) * pbrInputs.NdotH + 1.0;\n        return roughnessSq / (M_PI * f * f);\n    }\n\n    void main()\n    {\n        vec3 v = normalize(v_CameraPos - v_Position);        // Vector from surface point to camera\n\n\t\tif (!u_IsDoubleSided && dot(v_TBN[2],v) <= 0)\n\t\t\tdiscard;\n\n        vec3 n = getNormal();                             // normal at surface point\n\n        // Metallic and Roughness material properties are packed together\n        // In glTF, these factors can be specified by fixed scalar values\n        // or from a metallic-roughness map\n        float perceptualRoughness = u_RoughnessStrength;\n        float metallic = u_MetallicStrength;\n\n#ifdef HAS_METALROUGHNESSMAP\n        // Roughness is stored in the 'g' channel, metallic is stored in the 'b' channel.\n        // This layout intentionally reserves the 'r' channel for (optional) occlusion map data\n        perceptualRoughness = tex2D(u_RoughnessSampler, v_UV, vec4(1)).g * perceptualRoughness;\n        metallic = tex2D(u_MetallicSampler, v_UV, vec4(1)).b * metallic;\n#endif\n        // To get perfect sharp reflection in IBL shader, don't clamp to minimum roughness here.\n        perceptualRoughness = clamp(perceptualRoughness, 0.0, 1.0);\n\n        // But do clamp for lighting\n        float minPerceptualRoughness = clamp(perceptualRoughness, c_MinRoughness, 1.0);\n\n        metallic = clamp(metallic, 0.0, 1.0);\n\n        // Roughness is authored as perceptual roughness; as is convention,\n        // convert to material roughness by squaring the perceptual roughness [2].\n        float alphaRoughness = minPerceptualRoughness * minPerceptualRoughness;\n\n        // The albedo may be defined from a base texture or a flat color\n#ifdef HAS_BASECOLORMAP\n        vec4 baseColor = SRGBtoLINEAR(tex2D(u_BaseColorSampler, v_UV, vec4(1)), u_IsBaseColorInsRGB) * u_BaseColorFactor;\n#else\n        vec4 baseColor = u_BaseColorFactor;\n#endif\n\n        vec3 f0 = vec3(0.04);\n        vec3 diffuseColor = baseColor.rgb * (vec3(1.0) - f0);\n        diffuseColor *= 1.0 - metallic;\n        vec3 specularColor = mix(f0, baseColor.rgb, metallic);\n\n        // Compute reflectance.\n        float reflectance = max(max(specularColor.r, specularColor.g), specularColor.b);\n\n        // For typical incident reflectance range (between 4% to 100%) set the grazing reflectance to 100% for typical fresnel effect.\n        // For very low reflectance range on highly diffuse objects (below 4%), incrementally reduce grazing reflecance to 0%.\n        float reflectance90 = clamp(reflectance * 25.0, 0.0, 1.0);\n        vec3 specularEnvironmentR0 = specularColor.rgb;\n        vec3 specularEnvironmentR90 = vec3(1.0, 1.0, 1.0) * reflectance90;\n\n#ifdef USE_LIGHT_BINDING\n        // Vector from surface point to light\n        vec3 l = normalize(-u_LightDir);\n#else\n        vec3 l = normalize(v_LightDir);\n#endif\n        vec3 h = normalize(l+v);                          // Half vector between both l and v\n        vec3 reflection = normalize(-reflect(v, n));\n\n        float NdotL = clamp(dot(n, l), 0.001, 1.0);\n        float NdotV = clamp(abs(dot(n, v)), 0.001, 1.0);\n        float NdotH = clamp(dot(n, h), 0.0, 1.0);\n        float LdotH = clamp(dot(l, h), 0.0, 1.0);\n        float VdotH = clamp(dot(v, h), 0.0, 1.0);\n\n        PBRInfo pbrInputs = PBRInfo(\n            NdotL,\n            NdotV,\n            NdotH,\n            LdotH,\n            VdotH,\n            perceptualRoughness,\n            metallic,\n            specularEnvironmentR0,\n            specularEnvironmentR90,\n            alphaRoughness,\n            diffuseColor,\n            specularColor\n        );\n\n        // Calculate the shading terms for the microfacet specular shading model\n        vec3 F = specularReflection(pbrInputs);\n        float G = geometricOcclusion(pbrInputs);\n        float D = microfacetDistribution(pbrInputs);\n\n        // Calculation of analytical lighting contribution\n        vec3 diffuseContrib = (1.0 - F) * diffuse(pbrInputs);\n        vec3 specContrib = F * G * D / (4.0 * NdotL * NdotV);\n        vec3 color = NdotL * u_LightColor * u_LightIntensity * (diffuseContrib + specContrib);\n\n        // Calculate lighting contribution from image based lighting source (IBL)\n#ifdef USE_IBL\n        vec3 ibl = getIBLContribution(pbrInputs, n, reflection);\n        color += ibl;\n#endif\n\n        // Apply optional PBR terms for additional (optional) shading\n#ifdef HAS_OCCLUSIONMAP\n        float ao = tex2D(u_OcclusionSampler, v_UV, vec4(1)).r;\n        color = mix(color, color * ao, u_OcclusionStrength * u_ScaleIBL_Occl.w);\n#endif\n\n#ifdef HAS_EMISSIVEMAP\n        vec3 emissive = SRGBtoLINEAR(tex2D(u_EmissiveSampler, v_UV, vec4(1)), u_IsEmissiveInsRGB).rgb * u_EmissiveColor.rgb;\n        color += emissive;\n#endif\n\n        // This section uses mix to override final color for reference app visualization\n        // of various parameters in the lighting equation.\n        color = mix(color, F, u_ScaleFGDSpec.x);\n        color = mix(color, vec3(G), u_ScaleFGDSpec.y);\n        color = mix(color, vec3(D), u_ScaleFGDSpec.z);\n        color = mix(color, specContrib, u_ScaleFGDSpec.w);\n\n        color = mix(color, diffuseContrib, u_ScaleDiffBaseMR.x);\n        color = mix(color, baseColor.rgb, u_ScaleDiffBaseMR.y);\n        color = mix(color, vec3(metallic), u_ScaleDiffBaseMR.z);\n        color = mix(color, vec3(perceptualRoughness), u_ScaleDiffBaseMR.w);\n\n        //out_color = vec4(pow(color,vec3(1.0/2.2)), baseColor.a);\n        out_color = vec4(color, baseColor.a);\n        //out_color = vec4(n, baseColor.a);\n        //out_color = vec4(ibl, baseColor.a);\n    }\n}\n\ntechnique Solid\n{\n  pass p0\n  {\n    VertexShader (in vs_input, out vs_to_ps) = VS;\n    PixelShader (in vs_to_ps, out ps_output) = PS;\n  }\n}\n\ntechnique Transparent\n<\n    string Transparency = \"Transparent\";\n>\n{\n    pass p0\n    {\n        VertexShader (in vs_input, out vs_to_ps) = VS;\n        PixelShader (in vs_to_ps, out ps_output) = PS;\n    }\n}\n"
  },
  {
    "path": "maya/scenes/AnimatedCube1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: AnimatedCube1.ma\n//Last modified: Sun, Feb 03, 2019 11:45:30 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"2123622A-4029-481A-870C-E6AA59FD155C\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1.1092889310388245 3.9053398912005428 8.0980066853977686 ;\n\tsetAttr \".r\" -type \"double3\" -25.538352729602465 7.8000000000000114 2.0064103041282319e-16 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"9EA08C8C-4631-3AE6-EE63-7092608D5310\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 9.0586927243986874;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"CA0150A9-4938-0642-65C8-B2BB7D6B3519\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"59C1B158-4423-D682-9039-5BA85CED4EBA\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"FB8DD006-4959-8B6D-FC86-E693F9D27538\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"07DFD580-4235-D325-C2CF-E3A14A2784DD\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"9BCB3701-44BC-E80D-86E1-8C91A34949FA\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"45D0E1AF-4DCD-C509-CF9C-70A3CF7813A1\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"D6F2B3D4-48EE-C88F-17CC-798C2B503B5B\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"77A4A3C4-44C5-9A75-6D3A-418182334506\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"4E522CE2-466C-5553-6E0B-48894B480AA7\";\n\tsetAttr \".t\" -type \"double3\" 3.8900187441467429 5.8566237486419279 6.4450453562975358 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"1938B8F4-4F75-8DC9-1BC7-B6954876E669\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 0.86593569797990044;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"A3192C33-47D6-DC0D-D122-E6A11765581B\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"ACFCD07D-4BF1-76AC-76CD-D19FB0C08FBA\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"9AD2A6CB-4DDE-9133-CBCC-62B022D3B8A4\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"50846FFD-474D-496C-E1AA-B985B6CF9133\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"3B950062-4A73-39F7-47C4-70AC83D121E9\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"96FA6AB7-4201-D430-3233-6B9850763164\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"C88E916C-47F9-89ED-68D7-A69AFBA2A787\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"CCBE3212-4256-3B6D-6871-10B913CBFE8F\";\n\tsetAttr \".cuv\" 4;\ncreateNode animCurveTL -n \"pCube1_translateX\";\n\trename -uid \"15CBD2F3-484C-1415-6A57-3E9743387637\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 -2 50 0 100 2;\ncreateNode animCurveTL -n \"pCube1_translateY\";\n\trename -uid \"5E741938-408E-EB84-A34D-65A829A63E64\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 50 2 100 0;\ncreateNode animCurveTL -n \"pCube1_translateZ\";\n\trename -uid \"9CCF0504-40B6-7701-160C-D691C312BE4D\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 50 0 100 0;\ncreateNode animCurveTA -n \"pCube1_rotateX\";\n\trename -uid \"FEBE47C3-49D8-F146-27B6-4F9F8C95A93E\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 50 0 100 0;\ncreateNode animCurveTA -n \"pCube1_rotateY\";\n\trename -uid \"6DC1A2F0-4F3A-A7C0-C5EA-A8B484C4455C\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 180 50 0 100 -180;\ncreateNode animCurveTA -n \"pCube1_rotateZ\";\n\trename -uid \"D495F4A5-48AF-D361-4A8B-DEA78B0D1864\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 50 0 100 0;\ncreateNode animCurveTU -n \"pCube1_scaleX\";\n\trename -uid \"8154DA8C-4EA4-CB2B-428B-E383B28AACD8\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 50 1 100 1;\ncreateNode animCurveTU -n \"pCube1_scaleY\";\n\trename -uid \"9256EDF4-42DE-9F49-0359-76A23962CF07\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 50 0.5 100 1;\ncreateNode animCurveTU -n \"pCube1_scaleZ\";\n\trename -uid \"F6241E41-4FE9-9053-EB8A-3DB698E0AFB5\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 50 1 100 1;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"B89BF953-47E4-CB75-3935-A49D2859D1C1\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 10 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"7FA95E38-44C1-777A-6BB1-8398ECEDF935\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"BF6CA11A-40CF-8C26-7EFE-DD86ABBD4E10\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"pCube1_translateX.o\" \"pCube1.tx\";\nconnectAttr \"pCube1_translateY.o\" \"pCube1.ty\";\nconnectAttr \"pCube1_translateZ.o\" \"pCube1.tz\";\nconnectAttr \"pCube1_rotateX.o\" \"pCube1.rx\";\nconnectAttr \"pCube1_rotateY.o\" \"pCube1.ry\";\nconnectAttr \"pCube1_rotateZ.o\" \"pCube1.rz\";\nconnectAttr \"pCube1_scaleX.o\" \"pCube1.sx\";\nconnectAttr \"pCube1_scaleY.o\" \"pCube1.sy\";\nconnectAttr \"pCube1_scaleZ.o\" \"pCube1.sz\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of AnimatedCube1.ma\n"
  },
  {
    "path": "maya/scenes/AnimatedCubeChildSphere1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: AnimatedCubeChildSphere1.ma\n//Last modified: Sun, Feb 03, 2019 11:46:01 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires -nodeType \"aiOptions\" -nodeType \"aiAOVDriver\" -nodeType \"aiAOVFilter\" \"mtoa\" \"2.1.0.1\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"2123622A-4029-481A-870C-E6AA59FD155C\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0.39568574560297065 2.6898321039415292 8.7136767449441521 ;\n\tsetAttr \".r\" -type \"double3\" -17.138352729602559 2.6000000000000196 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"9EA08C8C-4631-3AE6-EE63-7092608D5310\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 9.127974932702589;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"CA0150A9-4938-0642-65C8-B2BB7D6B3519\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"59C1B158-4423-D682-9039-5BA85CED4EBA\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"front\";\n\trename -uid \"FB8DD006-4959-8B6D-FC86-E693F9D27538\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"07DFD580-4235-D325-C2CF-E3A14A2784DD\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"side\";\n\trename -uid \"9BCB3701-44BC-E80D-86E1-8C91A34949FA\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"45D0E1AF-4DCD-C509-CF9C-70A3CF7813A1\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -n \"pCube1\";\n\trename -uid \"D6F2B3D4-48EE-C88F-17CC-798C2B503B5B\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"77A4A3C4-44C5-9A75-6D3A-418182334506\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"pSphere1\" -p \"pCube1\";\n\trename -uid \"B574368F-4B6C-514D-DB58-028F82E8208D\";\n\tsetAttr \".r\" -type \"double3\" 0 180 0 ;\n\tsetAttr \".s\" -type \"double3\" 0.25 0.25 0.25 ;\ncreateNode mesh -n \"pSphereShape1\" -p \"pSphere1\";\n\trename -uid \"D03AA221-44AC-DD78-76B8-89A883322A1E\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"camera1\";\n\trename -uid \"35E418D6-45E9-CF27-0692-2DB6C45F0A73\";\n\tsetAttr \".t\" -type \"double3\" 3.0604707693524897 5.8753357081244664 7.6037740453993248 ;\n\tsetAttr \".r\" -type \"double3\" -33.800042332521976 17.00000000000006 -8.3146995286575229e-16 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"DA33B84D-4A8D-7F64-729E-C6A145BD0F9E\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 8.8741416044834853;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.78225325252525235 1.7265529492480003 0 ;\n\tsetAttr \".dr\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"9DA4FE58-4026-4A06-E64D-F0865FD437D5\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"9FA70EA4-4896-EF50-6ECC-4D9BF7CFD389\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"66FC8EB0-4129-8444-B7AA-09930DAC9811\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"C27DFBCE-4002-1939-2801-B69CFA48DEB1\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"3B950062-4A73-39F7-47C4-70AC83D121E9\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"41804B54-475C-9C89-6926-F381C6E099F4\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"C88E916C-47F9-89ED-68D7-A69AFBA2A787\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"CCBE3212-4256-3B6D-6871-10B913CBFE8F\";\n\tsetAttr \".cuv\" 4;\ncreateNode animCurveTL -n \"pCube1_translateX\";\n\trename -uid \"15CBD2F3-484C-1415-6A57-3E9743387637\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 -2 50 0 100 2;\ncreateNode animCurveTL -n \"pCube1_translateY\";\n\trename -uid \"5E741938-408E-EB84-A34D-65A829A63E64\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 50 2 100 0;\ncreateNode animCurveTL -n \"pCube1_translateZ\";\n\trename -uid \"9CCF0504-40B6-7701-160C-D691C312BE4D\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 50 0 100 0;\ncreateNode animCurveTA -n \"pCube1_rotateX\";\n\trename -uid \"FEBE47C3-49D8-F146-27B6-4F9F8C95A93E\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 50 0 100 0;\ncreateNode animCurveTA -n \"pCube1_rotateY\";\n\trename -uid \"6DC1A2F0-4F3A-A7C0-C5EA-A8B484C4455C\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 180 50 0 100 -180;\ncreateNode animCurveTA -n \"pCube1_rotateZ\";\n\trename -uid \"D495F4A5-48AF-D361-4A8B-DEA78B0D1864\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 50 0 100 0;\ncreateNode animCurveTU -n \"pCube1_scaleX\";\n\trename -uid \"8154DA8C-4EA4-CB2B-428B-E383B28AACD8\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 50 1 100 1;\ncreateNode animCurveTU -n \"pCube1_scaleY\";\n\trename -uid \"9256EDF4-42DE-9F49-0359-76A23962CF07\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 50 0.5 100 1;\ncreateNode animCurveTU -n \"pCube1_scaleZ\";\n\trename -uid \"F6241E41-4FE9-9053-EB8A-3DB698E0AFB5\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 50 1 100 1;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"B89BF953-47E4-CB75-3935-A49D2859D1C1\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 10 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"7FA95E38-44C1-777A-6BB1-8398ECEDF935\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode polySphere -n \"polySphere1\";\n\trename -uid \"C2B0082D-40C9-F4F7-BF53-C6981EBAEDDC\";\ncreateNode animCurveTL -n \"pSphere1_translateY\";\n\trename -uid \"4D6B6EEE-4419-9071-9CE7-F397C23CA494\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0.75 26 1 50 0.75 75 1 100 0.75;\n\tsetAttr -s 5 \".kit[3:4]\"  1 1;\n\tsetAttr -s 5 \".kot[3:4]\"  1 1;\n\tsetAttr -s 5 \".kix[3:4]\"  1 1;\n\tsetAttr -s 5 \".kiy[3:4]\"  0 0;\n\tsetAttr -s 5 \".kox[3:4]\"  1 1;\n\tsetAttr -s 5 \".koy[3:4]\"  0 0;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"D1A54AF3-4CC5-DCBB-7B76-068B91CCC29F\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\ncreateNode aiOptions -s -n \"defaultArnoldRenderOptions\";\n\trename -uid \"C194422B-4EA9-07D7-EC44-6DB7A6369295\";\n\tsetAttr \".version\" -type \"string\" \"2.1.0.1\";\ncreateNode aiAOVFilter -s -n \"defaultArnoldFilter\";\n\trename -uid \"FAB928D9-444F-8AD4-6975-C4A16F53226B\";\n\tsetAttr \".ai_translator\" -type \"string\" \"gaussian\";\ncreateNode aiAOVDriver -s -n \"defaultArnoldDriver\";\n\trename -uid \"AE2AD975-4414-82F5-1887-768FED5A0055\";\n\tsetAttr \".ai_translator\" -type \"string\" \"exr\";\ncreateNode aiAOVDriver -s -n \"defaultArnoldDisplayDriver\";\n\trename -uid \"4C374308-412E-D3C4-4F6B-6E950708269C\";\n\tsetAttr \".output_mode\" 0;\n\tsetAttr \".ai_translator\" -type \"string\" \"maya\";\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".macc\";\n\tsetAttr -k on \".macd\";\n\tsetAttr -k on \".macq\";\n\tsetAttr -cb on \".ifg\";\n\tsetAttr -k on \".clip\";\n\tsetAttr -k on \".edm\";\n\tsetAttr -k on \".edl\";\n\tsetAttr \".ren\" -type \"string\" \"arnold\";\n\tsetAttr -av -k on \".esr\";\n\tsetAttr -k on \".ors\";\n\tsetAttr -cb on \".sdf\";\n\tsetAttr \".outf\" 51;\n\tsetAttr -cb on \".imfkey\" -type \"string\" \"exr\";\n\tsetAttr -k on \".gama\";\n\tsetAttr -cb on \".ar\";\n\tsetAttr -av \".bfs\";\n\tsetAttr -k on \".be\";\n\tsetAttr -k on \".fec\";\n\tsetAttr -k on \".ofc\";\n\tsetAttr -cb on \".ofe\";\n\tsetAttr -cb on \".efe\";\n\tsetAttr -cb on \".umfn\";\n\tsetAttr -cb on \".ufe\";\n\tsetAttr -k on \".comp\";\n\tsetAttr -k on \".cth\";\n\tsetAttr -k on \".soll\";\n\tsetAttr -k on \".rd\";\n\tsetAttr -k on \".lp\";\n\tsetAttr -k on \".sp\";\n\tsetAttr -k on \".shs\";\n\tsetAttr -k on \".lpr\";\n\tsetAttr -cb on \".gv\";\n\tsetAttr -cb on \".sv\";\n\tsetAttr -k on \".mm\";\n\tsetAttr -k on \".npu\";\n\tsetAttr -k on \".itf\";\n\tsetAttr -k on \".shp\";\n\tsetAttr -cb on \".isp\";\n\tsetAttr -k on \".uf\";\n\tsetAttr -k on \".oi\";\n\tsetAttr -k on \".rut\";\n\tsetAttr -av -k on \".mbf\";\n\tsetAttr -k on \".afp\";\n\tsetAttr -k on \".pfb\";\n\tsetAttr -cb on \".pfrm\";\n\tsetAttr -cb on \".pfom\";\n\tsetAttr -av -k on \".bll\";\n\tsetAttr -k on \".bls\";\n\tsetAttr -k on \".smv\";\n\tsetAttr -k on \".ubc\";\n\tsetAttr -k on \".mbc\";\n\tsetAttr -k on \".udbx\";\n\tsetAttr -k on \".smc\";\n\tsetAttr -k on \".kmv\";\n\tsetAttr -cb on \".isl\";\n\tsetAttr -cb on \".ism\";\n\tsetAttr -cb on \".imb\";\n\tsetAttr -k on \".rlen\";\n\tsetAttr -av -k on \".frts\";\n\tsetAttr -k on \".tlwd\";\n\tsetAttr -k on \".tlht\";\n\tsetAttr -k on \".jfc\";\n\tsetAttr -cb on \".rsb\";\n\tsetAttr -k on \".ope\";\n\tsetAttr -k on \".oppf\";\n\tsetAttr -cb on \".hbl\";\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"pCube1_translateX.o\" \"pCube1.tx\";\nconnectAttr \"pCube1_translateY.o\" \"pCube1.ty\";\nconnectAttr \"pCube1_translateZ.o\" \"pCube1.tz\";\nconnectAttr \"pCube1_rotateX.o\" \"pCube1.rx\";\nconnectAttr \"pCube1_rotateY.o\" \"pCube1.ry\";\nconnectAttr \"pCube1_rotateZ.o\" \"pCube1.rz\";\nconnectAttr \"pCube1_scaleX.o\" \"pCube1.sx\";\nconnectAttr \"pCube1_scaleY.o\" \"pCube1.sy\";\nconnectAttr \"pCube1_scaleZ.o\" \"pCube1.sz\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1.i\";\nconnectAttr \"pSphere1_translateY.o\" \"pSphere1.ty\";\nconnectAttr \"polySphere1.out\" \"pSphereShape1.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \":defaultArnoldDisplayDriver.msg\" \":defaultArnoldRenderOptions.drivers\"\n\t\t -na;\nconnectAttr \":defaultArnoldFilter.msg\" \":defaultArnoldRenderOptions.filt\";\nconnectAttr \":defaultArnoldDriver.msg\" \":defaultArnoldRenderOptions.drvr\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pSphereShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of AnimatedCubeChildSphere1.ma\n"
  },
  {
    "path": "maya/scenes/AnimatedCubeInstancedSphere1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: AnimatedCubeInstancedSphere1.ma\n//Last modified: Sun, Feb 03, 2019 11:44:19 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"2123622A-4029-481A-870C-E6AA59FD155C\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0.39568574560297065 2.6898321039415292 8.7136767449441521 ;\n\tsetAttr \".r\" -type \"double3\" -17.138352729602559 2.6000000000000196 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"9EA08C8C-4631-3AE6-EE63-7092608D5310\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 9.127974932702589;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"CA0150A9-4938-0642-65C8-B2BB7D6B3519\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"59C1B158-4423-D682-9039-5BA85CED4EBA\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"FB8DD006-4959-8B6D-FC86-E693F9D27538\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"07DFD580-4235-D325-C2CF-E3A14A2784DD\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"9BCB3701-44BC-E80D-86E1-8C91A34949FA\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"45D0E1AF-4DCD-C509-CF9C-70A3CF7813A1\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"D6F2B3D4-48EE-C88F-17CC-798C2B503B5B\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"77A4A3C4-44C5-9A75-6D3A-418182334506\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pSphere1\" -p \"pCube1\";\n\trename -uid \"B574368F-4B6C-514D-DB58-028F82E8208D\";\n\tsetAttr \".r\" -type \"double3\" 0 180 0 ;\n\tsetAttr \".s\" -type \"double3\" 0.25 0.25 0.25 ;\ncreateNode mesh -n \"pSphereShape1\" -p \"|pCube1|pSphere1\";\n\trename -uid \"D03AA221-44AC-DD78-76B8-89A883322A1E\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 2 \".iog\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pCube2\";\n\trename -uid \"53EA42C1-4920-9CB7-D021-DE9C9055DEE0\";\n\tsetAttr \".t\" -type \"double3\" 0 0 -4.0778855283378093 ;\ncreateNode mesh -n \"pCubeShape2\" -p \"pCube2\";\n\trename -uid \"135722D5-42AC-C364-B0A0-578D4BA3E9BC\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"1A479613-4290-A091-8CEA-D095B25A9F7F\";\n\tsetAttr \".t\" -type \"double3\" 3 9 10 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"AE093A74-4FB9-4247-E6B5-C9A4161A1C2B\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".dr\" yes;\nparent -s -nc -r -add \"|pCube1|pSphere1\" \"pCube2\" ;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"096F41EE-4F8A-6D2A-B4BC-7293870FABF7\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"54A4783C-42FA-B68C-5DB0-FEA907EB4745\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"6BBBE525-4AFC-69DB-9EDC-AE89A9C023E7\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"A13026F5-4404-B8A5-C823-F3A863CF5032\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"3B950062-4A73-39F7-47C4-70AC83D121E9\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"8E43EFC9-4F72-33E5-2E8E-83A2C2519C2E\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"C88E916C-47F9-89ED-68D7-A69AFBA2A787\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"CCBE3212-4256-3B6D-6871-10B913CBFE8F\";\n\tsetAttr \".cuv\" 4;\ncreateNode animCurveTL -n \"pCube1_translateX\";\n\trename -uid \"15CBD2F3-484C-1415-6A57-3E9743387637\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 -2 50 0 100 2;\ncreateNode animCurveTL -n \"pCube1_translateY\";\n\trename -uid \"5E741938-408E-EB84-A34D-65A829A63E64\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 50 2 100 0;\ncreateNode animCurveTL -n \"pCube1_translateZ\";\n\trename -uid \"9CCF0504-40B6-7701-160C-D691C312BE4D\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 50 0 100 0;\ncreateNode animCurveTA -n \"pCube1_rotateX\";\n\trename -uid \"FEBE47C3-49D8-F146-27B6-4F9F8C95A93E\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 50 0 100 0;\ncreateNode animCurveTA -n \"pCube1_rotateY\";\n\trename -uid \"6DC1A2F0-4F3A-A7C0-C5EA-A8B484C4455C\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 180 50 0 100 -180;\ncreateNode animCurveTA -n \"pCube1_rotateZ\";\n\trename -uid \"D495F4A5-48AF-D361-4A8B-DEA78B0D1864\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 50 0 100 0;\ncreateNode animCurveTU -n \"pCube1_scaleX\";\n\trename -uid \"8154DA8C-4EA4-CB2B-428B-E383B28AACD8\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 50 1 100 1;\ncreateNode animCurveTU -n \"pCube1_scaleY\";\n\trename -uid \"9256EDF4-42DE-9F49-0359-76A23962CF07\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 50 0.5 100 1;\ncreateNode animCurveTU -n \"pCube1_scaleZ\";\n\trename -uid \"F6241E41-4FE9-9053-EB8A-3DB698E0AFB5\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 50 1 100 1;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"B89BF953-47E4-CB75-3935-A49D2859D1C1\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n\"\n\t\t+ \"        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 1 -size 10 -divisions 4 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"7FA95E38-44C1-777A-6BB1-8398ECEDF935\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode polySphere -n \"polySphere1\";\n\trename -uid \"C2B0082D-40C9-F4F7-BF53-C6981EBAEDDC\";\ncreateNode animCurveTL -n \"pSphere1_translateY\";\n\trename -uid \"4D6B6EEE-4419-9071-9CE7-F397C23CA494\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0.75 26 1 50 0.75 75 1 100 0.75;\n\tsetAttr -s 5 \".kit[3:4]\"  1 1;\n\tsetAttr -s 5 \".kot[3:4]\"  1 1;\n\tsetAttr -s 5 \".kix[3:4]\"  1 1;\n\tsetAttr -s 5 \".kiy[3:4]\"  0 0;\n\tsetAttr -s 5 \".kox[3:4]\"  1 1;\n\tsetAttr -s 5 \".koy[3:4]\"  0 0;\ncreateNode polyCube -n \"polyCube2\";\n\trename -uid \"00E78B50-4E88-FE50-2FF7-14AE21DFB64F\";\n\tsetAttr \".cuv\" 4;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"09570B54-4F49-1109-DE55-5AA2802053A4\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 50;\n\tsetAttr \".unw\" 50;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"pCube1_translateX.o\" \"pCube1.tx\";\nconnectAttr \"pCube1_translateY.o\" \"pCube1.ty\";\nconnectAttr \"pCube1_translateZ.o\" \"pCube1.tz\";\nconnectAttr \"pCube1_rotateX.o\" \"pCube1.rx\";\nconnectAttr \"pCube1_rotateY.o\" \"pCube1.ry\";\nconnectAttr \"pCube1_rotateZ.o\" \"pCube1.rz\";\nconnectAttr \"pCube1_scaleX.o\" \"pCube1.sx\";\nconnectAttr \"pCube1_scaleY.o\" \"pCube1.sy\";\nconnectAttr \"pCube1_scaleZ.o\" \"pCube1.sz\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1.i\";\nconnectAttr \"pSphere1_translateY.o\" \"|pCube1|pSphere1.ty\";\nconnectAttr \"polySphere1.out\" \"|pCube1|pSphere1|pSphereShape1.i\";\nconnectAttr \"polyCube2.out\" \"pCubeShape2.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"|pCube1|pSphere1|pSphereShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pCubeShape2.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"|pCube2|pSphere1|pSphereShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of AnimatedCubeInstancedSphere1.ma\n"
  },
  {
    "path": "maya/scenes/CameraCalibration1.ma",
    "content": "//Maya ASCII 2018ff08 scene\n//Name: CameraCalibration1.ma\n//Last modified: Sun, Feb 03, 2019 06:56:00 PM\n//Codeset: 1252\nrequires maya \"2018ff08\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201804211841-f3d65dda2a\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"AAFB104E-4FD8-12C2-F062-5FBBE22E28D9\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 11.500545570796646 64.640188831686473 61.395630285205606 ;\n\tsetAttr \".r\" -type \"double3\" 314.06164727045507 10.599999999967949 0 ;\n\tsetAttr \".rp\" -type \"double3\" 0 -7.1054273576010019e-15 0 ;\n\tsetAttr \".rpt\" -type \"double3\" 2.788632745664467e-15 3.8507534731040169e-15 5.6672500606136927e-15 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"C611669F-4502-BC51-FDD7-78A470756B8D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 89.900235401537287;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0 0.038601757140799942 -0.056991500000000084 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"3D87D8C2-43B0-A58C-4FD6-EB98FF0F3463\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"B38C9587-472E-AE2E-6963-A1B23033C336\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"1C1F28E2-4012-E661-3EE1-84AD7FB8085C\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"993AA8C2-4C06-47F7-9808-32A5E799C252\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"25129461-45BE-2012-903B-0582F9F6D376\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"F10EC166-4EB7-CE05-6F7D-5182652D3025\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube5\";\n\trename -uid \"91003C93-48A2-9DC1-3A34-7EAA399A186E\";\ncreateNode mesh -n \"pCube5Shape\" -p \"pCube5\";\n\trename -uid \"AD70B5C7-4E16-F990-4E90-3CB6607ED719\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 6 \".iog[0].og\";\n\tsetAttr \".iog[0].og[0].gcl\" -type \"componentList\" 6 \"f[0:47]\" \"f[54:479]\" \"f[486:587]\" \"f[594:611]\" \"f[618:623]\" \"f[630:1031]\";\n\tsetAttr \".iog[0].og[1].gcl\" -type \"componentList\" 1 \"f[480:485]\";\n\tsetAttr \".iog[0].og[2].gcl\" -type \"componentList\" 1 \"f[624:629]\";\n\tsetAttr \".iog[0].og[3].gcl\" -type \"componentList\" 1 \"f[612:617]\";\n\tsetAttr \".iog[0].og[4].gcl\" -type \"componentList\" 1 \"f[588:593]\";\n\tsetAttr \".iog[0].og[5].gcl\" -type \"componentList\" 1 \"f[48:53]\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.5 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 2408 \".uvst[0].uvsp\";\n\tsetAttr \".uvst[0].uvsp[0:249]\" -type \"float2\" 0.375 0 0.625 0 0.375 0.25\n\t\t 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25;\n\tsetAttr \".uvst[0].uvsp[250:499]\" 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1;\n\tsetAttr \".uvst[0].uvsp[500:749]\" 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75;\n\tsetAttr \".uvst[0].uvsp[750:999]\" 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0\n\t\t 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375\n\t\t 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625\n\t\t 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5;\n\tsetAttr \".uvst[0].uvsp[1000:1249]\" 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25;\n\tsetAttr \".uvst[0].uvsp[1250:1499]\" 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75\n\t\t 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0;\n\tsetAttr \".uvst[0].uvsp[1500:1749]\" 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25;\n\tsetAttr \".uvst[0].uvsp[1750:1999]\" 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625\n\t\t 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125\n\t\t 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75\n\t\t 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25;\n\tsetAttr \".uvst[0].uvsp[2000:2249]\" 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1;\n\tsetAttr \".uvst[0].uvsp[2250:2407]\" 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 1376 \".vt\";\n\tsetAttr \".vt[0:165]\"  -4.5 -0.5 0.5 -3.5 -0.5 0.5 -4.5 0.5 0.5 -3.5 0.5 0.5\n\t\t -4.5 0.5 -0.5 -3.5 0.5 -0.5 -4.5 -0.5 -0.5 -3.5 -0.5 -0.5 -2.5 -0.5 0.5 -1.5 -0.5 0.5\n\t\t -2.5 0.5 0.5 -1.5 0.5 0.5 -2.5 0.5 -0.5 -1.5 0.5 -0.5 -2.5 -0.5 -0.5 -1.5 -0.5 -0.5\n\t\t -10.5 -0.5 0.5 -9.5 -0.5 0.5 -10.5 0.5 0.5 -9.5 0.5 0.5 -10.5 0.5 -0.5 -9.5 0.5 -0.5\n\t\t -10.5 -0.5 -0.5 -9.5 -0.5 -0.5 -8.5 -0.5 0.5 -7.5 -0.5 0.5 -8.5 0.5 0.5 -7.5 0.5 0.5\n\t\t -8.5 0.5 -0.5 -7.5 0.5 -0.5 -8.5 -0.5 -0.5 -7.5 -0.5 -0.5 -6.5 -0.5 0.5 -5.5 -0.5 0.5\n\t\t -6.5 0.5 0.5 -5.5 0.5 0.5 -6.5 0.5 -0.5 -5.5 0.5 -0.5 -6.5 -0.5 -0.5 -5.5 -0.5 -0.5\n\t\t -12.5 -0.5 0.5 -11.5 -0.5 0.5 -12.5 0.5 0.5 -11.5 0.5 0.5 -12.5 0.5 -0.5 -11.5 0.5 -0.5\n\t\t -12.5 -0.5 -0.5 -11.5 -0.5 -0.5 3.5 -0.5 0.5 4.5 -0.5 0.5 3.5 0.5 0.5 4.5 0.5 0.5\n\t\t 3.5 0.5 -0.5 4.5 0.5 -0.5 3.5 -0.5 -0.5 4.5 -0.5 -0.5 1.5 -0.5 0.5 2.5 -0.5 0.5 1.5 0.5 0.5\n\t\t 2.5 0.5 0.5 1.5 0.5 -0.5 2.5 0.5 -0.5 1.5 -0.5 -0.5 2.5 -0.5 -0.5 -0.5 -0.5 0.5 0.5 -0.5 0.5\n\t\t -0.5 0.5 0.5 0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5\n\t\t 9.5 -0.5 0.5 10.5 -0.5 0.5 9.5 0.5 0.5 10.5 0.5 0.5 9.5 0.5 -0.5 10.5 0.5 -0.5 9.5 -0.5 -0.5\n\t\t 10.5 -0.5 -0.5 -6.5 -0.5 -1.5 -5.5 -0.5 -1.5 -6.5 0.5 -1.5 -5.5 0.5 -1.5 -6.5 0.5 -2.5\n\t\t -5.5 0.5 -2.5 -6.5 -0.5 -2.5 -5.5 -0.5 -2.5 -8.5 -0.5 -1.5 -7.5 -0.5 -1.5 -8.5 0.5 -1.5\n\t\t -7.5 0.5 -1.5 -8.5 0.5 -2.5 -7.5 0.5 -2.5 -8.5 -0.5 -2.5 -7.5 -0.5 -2.5 7.5 -0.5 0.5\n\t\t 8.5 -0.5 0.5 7.5 0.5 0.5 8.5 0.5 0.5 7.5 0.5 -0.5 8.5 0.5 -0.5 7.5 -0.5 -0.5 8.5 -0.5 -0.5\n\t\t 11.5 -0.5 0.5 12.5 -0.5 0.5 11.5 0.5 0.5 12.5 0.5 0.5 11.5 0.5 -0.5 12.5 0.5 -0.5\n\t\t 11.5 -0.5 -0.5 12.5 -0.5 -0.5 -10.5 -0.5 -1.5 -9.5 -0.5 -1.5 -10.5 0.5 -1.5 -9.5 0.5 -1.5\n\t\t -10.5 0.5 -2.5 -9.5 0.5 -2.5 -10.5 -0.5 -2.5 -9.5 -0.5 -2.5 5.5 -0.5 0.5 6.5 -0.5 0.5\n\t\t 5.5 0.5 0.5 6.5 0.5 0.5 5.5 0.5 -0.5 6.5 0.5 -0.5 5.5 -0.5 -0.5 6.5 -0.5 -0.5 -2.5 -0.5 8.5\n\t\t -1.5 -0.5 8.5 -2.5 0.5 8.5 -1.5 0.5 8.5 -2.5 0.5 7.5 -1.5 0.5 7.5 -2.5 -0.5 7.5 -1.5 -0.5 7.5\n\t\t -10.5 -0.5 8.5 -9.5 -0.5 8.5 -10.5 0.5 8.5 -9.5 0.5 8.5 -10.5 0.5 7.5 -9.5 0.5 7.5\n\t\t -10.5 -0.5 7.5 -9.5 -0.5 7.5 -8.5 -0.5 8.5 -7.5 -0.5 8.5 -8.5 0.5 8.5 -7.5 0.5 8.5\n\t\t -8.5 0.5 7.5 -7.5 0.5 7.5 -8.5 -0.5 7.5 -7.5 -0.5 7.5 -4.5 -0.5 8.5 -3.5 -0.5 8.5\n\t\t -4.5 0.5 8.5 -3.5 0.5 8.5 -4.5 0.5 7.5 -3.5 0.5 7.5 -4.5 -0.5 7.5 -3.5 -0.5 7.5 -12.5 -0.5 -5.5\n\t\t -11.5 -0.5 -5.5 -12.5 0.5 -5.5 -11.5 0.5 -5.5 -12.5 0.5 -6.5 -11.5 0.5 -6.5;\n\tsetAttr \".vt[166:331]\" -12.5 -0.5 -6.5 -11.5 -0.5 -6.5 1.5 -0.5 -5.5 2.5 -0.5 -5.5\n\t\t 1.5 0.5 -5.5 2.5 0.5 -5.5 1.5 0.5 -6.5 2.5 0.5 -6.5 1.5 -0.5 -6.5 2.5 -0.5 -6.5 3.5 -0.5 -5.5\n\t\t 4.5 -0.5 -5.5 3.5 0.5 -5.5 4.5 0.5 -5.5 3.5 0.5 -6.5 4.5 0.5 -6.5 3.5 -0.5 -6.5 4.5 -0.5 -6.5\n\t\t -0.5 -0.5 -5.5 0.5 -0.5 -5.5 -0.5 0.5 -5.5 0.5 0.5 -5.5 -0.5 0.5 -6.5 0.5 0.5 -6.5\n\t\t -0.5 -0.5 -6.5 0.5 -0.5 -6.5 -4.5 -0.5 -5.5 -3.5 -0.5 -5.5 -4.5 0.5 -5.5 -3.5 0.5 -5.5\n\t\t -4.5 0.5 -6.5 -3.5 0.5 -6.5 -4.5 -0.5 -6.5 -3.5 -0.5 -6.5 -2.5 -0.5 -5.5 -1.5 -0.5 -5.5\n\t\t -2.5 0.5 -5.5 -1.5 0.5 -5.5 -2.5 0.5 -6.5 -1.5 0.5 -6.5 -2.5 -0.5 -6.5 -1.5 -0.5 -6.5\n\t\t 9.5 -0.5 -5.5 10.5 -0.5 -5.5 9.5 0.5 -5.5 10.5 0.5 -5.5 9.5 0.5 -6.5 10.5 0.5 -6.5\n\t\t 9.5 -0.5 -6.5 10.5 -0.5 -6.5 7.5 -0.5 -5.5 8.5 -0.5 -5.5 7.5 0.5 -5.5 8.5 0.5 -5.5\n\t\t 7.5 0.5 -6.5 8.5 0.5 -6.5 7.5 -0.5 -6.5 8.5 -0.5 -6.5 11.5 -0.5 -5.5 12.5 -0.5 -5.5\n\t\t 11.5 0.5 -5.5 12.5 0.5 -5.5 11.5 0.5 -6.5 12.5 0.5 -6.5 11.5 -0.5 -6.5 12.5 -0.5 -6.5\n\t\t 5.5 -0.5 -5.5 6.5 -0.5 -5.5 5.5 0.5 -5.5 6.5 0.5 -5.5 5.5 0.5 -6.5 6.5 0.5 -6.5 5.5 -0.5 -6.5\n\t\t 6.5 -0.5 -6.5 5.5 -0.5 -3.5 6.5 -0.5 -3.5 5.5 0.5 -3.5 6.5 0.5 -3.5 5.5 0.5 -4.5\n\t\t 6.5 0.5 -4.5 5.5 -0.5 -4.5 6.5 -0.5 -4.5 -10.5 -0.5 -5.5 -9.5 -0.5 -5.5 -10.5 0.5 -5.5\n\t\t -9.5 0.5 -5.5 -10.5 0.5 -6.5 -9.5 0.5 -6.5 -10.5 -0.5 -6.5 -9.5 -0.5 -6.5 -2.5 -0.5 -3.5\n\t\t -1.5 -0.5 -3.5 -2.5 0.5 -3.5 -1.5 0.5 -3.5 -2.5 0.5 -4.5 -1.5 0.5 -4.5 -2.5 -0.5 -4.5\n\t\t -1.5 -0.5 -4.5 -4.5 -0.5 -3.5 -3.5 -0.5 -3.5 -4.5 0.5 -3.5 -3.5 0.5 -3.5 -4.5 0.5 -4.5\n\t\t -3.5 0.5 -4.5 -4.5 -0.5 -4.5 -3.5 -0.5 -4.5 -6.5 -0.5 8.5 -5.5 -0.5 8.5 -6.5 0.5 8.5\n\t\t -5.5 0.5 8.5 -6.5 0.5 7.5 -5.5 0.5 7.5 -6.5 -0.5 7.5 -5.5 -0.5 7.5 9.5 -0.5 8.5 10.5 -0.5 8.5\n\t\t 9.5 0.5 8.5 10.5 0.5 8.5 9.5 0.5 7.5 10.5 0.5 7.5 9.5 -0.5 7.5 10.5 -0.5 7.5 -0.5 -0.5 8.5\n\t\t 0.5 -0.5 8.5 -0.5 0.5 8.5 0.5 0.5 8.5 -0.5 0.5 7.5 0.5 0.5 7.5 -0.5 -0.5 7.5 0.5 -0.5 7.5\n\t\t 1.5 -0.5 8.5 2.5 -0.5 8.5 1.5 0.5 8.5 2.5 0.5 8.5 1.5 0.5 7.5 2.5 0.5 7.5 1.5 -0.5 7.5\n\t\t 2.5 -0.5 7.5 3.5 -0.5 8.5 4.5 -0.5 8.5 3.5 0.5 8.5 4.5 0.5 8.5 3.5 0.5 7.5 4.5 0.5 7.5\n\t\t 3.5 -0.5 7.5 4.5 -0.5 7.5 -8.5 -0.5 6.5 -7.5 -0.5 6.5 -8.5 0.5 6.5 -7.5 0.5 6.5 -8.5 0.5 5.5\n\t\t -7.5 0.5 5.5 -8.5 -0.5 5.5 -7.5 -0.5 5.5 -12.5 -0.5 8.5 -11.5 -0.5 8.5 -12.5 0.5 8.5\n\t\t -11.5 0.5 8.5 -12.5 0.5 7.5 -11.5 0.5 7.5 -12.5 -0.5 7.5 -11.5 -0.5 7.5 -6.5 -0.5 6.5\n\t\t -5.5 -0.5 6.5 -6.5 0.5 6.5 -5.5 0.5 6.5;\n\tsetAttr \".vt[332:497]\" -6.5 0.5 5.5 -5.5 0.5 5.5 -6.5 -0.5 5.5 -5.5 -0.5 5.5\n\t\t 11.5 -0.5 8.5 12.5 -0.5 8.5 11.5 0.5 8.5 12.5 0.5 8.5 11.5 0.5 7.5 12.5 0.5 7.5 11.5 -0.5 7.5\n\t\t 12.5 -0.5 7.5 7.5 -0.5 8.5 8.5 -0.5 8.5 7.5 0.5 8.5 8.5 0.5 8.5 7.5 0.5 7.5 8.5 0.5 7.5\n\t\t 7.5 -0.5 7.5 8.5 -0.5 7.5 1.5 -0.5 -3.5 2.5 -0.5 -3.5 1.5 0.5 -3.5 2.5 0.5 -3.5 1.5 0.5 -4.5\n\t\t 2.5 0.5 -4.5 1.5 -0.5 -4.5 2.5 -0.5 -4.5 -0.5 -0.5 -3.5 0.5 -0.5 -3.5 -0.5 0.5 -3.5\n\t\t 0.5 0.5 -3.5 -0.5 0.5 -4.5 0.5 0.5 -4.5 -0.5 -0.5 -4.5 0.5 -0.5 -4.5 -8.5 -0.5 -3.5\n\t\t -7.5 -0.5 -3.5 -8.5 0.5 -3.5 -7.5 0.5 -3.5 -8.5 0.5 -4.5 -7.5 0.5 -4.5 -8.5 -0.5 -4.5\n\t\t -7.5 -0.5 -4.5 -6.5 -0.5 -3.5 -5.5 -0.5 -3.5 -6.5 0.5 -3.5 -5.5 0.5 -3.5 -6.5 0.5 -4.5\n\t\t -5.5 0.5 -4.5 -6.5 -0.5 -4.5 -5.5 -0.5 -4.5 -12.5 -0.5 -3.5 -11.5 -0.5 -3.5 -12.5 0.5 -3.5\n\t\t -11.5 0.5 -3.5 -12.5 0.5 -4.5 -11.5 0.5 -4.5 -12.5 -0.5 -4.5 -11.5 -0.5 -4.5 3.5 -0.5 -3.5\n\t\t 4.5 -0.5 -3.5 3.5 0.5 -3.5 4.5 0.5 -3.5 3.5 0.5 -4.5 4.5 0.5 -4.5 3.5 -0.5 -4.5 4.5 -0.5 -4.5\n\t\t -10.5 -0.5 -3.5 -9.5 -0.5 -3.5 -10.5 0.5 -3.5 -9.5 0.5 -3.5 -10.5 0.5 -4.5 -9.5 0.5 -4.5\n\t\t -10.5 -0.5 -4.5 -9.5 -0.5 -4.5 5.5 -0.5 -1.5 6.5 -0.5 -1.5 5.5 0.5 -1.5 6.5 0.5 -1.5\n\t\t 5.5 0.5 -2.5 6.5 0.5 -2.5 5.5 -0.5 -2.5 6.5 -0.5 -2.5 11.5 -0.5 -1.5 12.5 -0.5 -1.5\n\t\t 11.5 0.5 -1.5 12.5 0.5 -1.5 11.5 0.5 -2.5 12.5 0.5 -2.5 11.5 -0.5 -2.5 12.5 -0.5 -2.5\n\t\t 7.5 -0.5 -1.5 8.5 -0.5 -1.5 7.5 0.5 -1.5 8.5 0.5 -1.5 7.5 0.5 -2.5 8.5 0.5 -2.5 7.5 -0.5 -2.5\n\t\t 8.5 -0.5 -2.5 9.5 -0.5 -1.5 10.5 -0.5 -1.5 9.5 0.5 -1.5 10.5 0.5 -1.5 9.5 0.5 -2.5\n\t\t 10.5 0.5 -2.5 9.5 -0.5 -2.5 10.5 -0.5 -2.5 -2.5 -0.5 -1.5 -1.5 -0.5 -1.5 -2.5 0.5 -1.5\n\t\t -1.5 0.5 -1.5 -2.5 0.5 -2.5 -1.5 0.5 -2.5 -2.5 -0.5 -2.5 -1.5 -0.5 -2.5 -4.5 -0.5 -1.5\n\t\t -3.5 -0.5 -1.5 -4.5 0.5 -1.5 -3.5 0.5 -1.5 -4.5 0.5 -2.5 -3.5 0.5 -2.5 -4.5 -0.5 -2.5\n\t\t -3.5 -0.5 -2.5 -6.5 -0.5 -5.5 -5.5 -0.5 -5.5 -6.5 0.5 -5.5 -5.5 0.5 -5.5 -6.5 0.5 -6.5\n\t\t -5.5 0.5 -6.5 -6.5 -0.5 -6.5 -5.5 -0.5 -6.5 -8.5 -0.5 -5.5 -7.5 -0.5 -5.5 -8.5 0.5 -5.5\n\t\t -7.5 0.5 -5.5 -8.5 0.5 -6.5 -7.5 0.5 -6.5 -8.5 -0.5 -6.5 -7.5 -0.5 -6.5 11.5 -0.5 -3.5\n\t\t 12.5 -0.5 -3.5 11.5 0.5 -3.5 12.5 0.5 -3.5 11.5 0.5 -4.5 12.5 0.5 -4.5 11.5 -0.5 -4.5\n\t\t 12.5 -0.5 -4.5 7.5 -0.5 -3.5 8.5 -0.5 -3.5 7.5 0.5 -3.5 8.5 0.5 -3.5 7.5 0.5 -4.5\n\t\t 8.5 0.5 -4.5 7.5 -0.5 -4.5 8.5 -0.5 -4.5 9.5 -0.5 -3.5 10.5 -0.5 -3.5 9.5 0.5 -3.5\n\t\t 10.5 0.5 -3.5 9.5 0.5 -4.5 10.5 0.5 -4.5 9.5 -0.5 -4.5 10.5 -0.5 -4.5 -0.5 -0.5 -1.5\n\t\t 0.5 -0.5 -1.5;\n\tsetAttr \".vt[498:663]\" -0.5 0.5 -1.5 0.5 0.5 -1.5 -0.5 0.5 -2.5 0.5 0.5 -2.5\n\t\t -0.5 -0.5 -2.5 0.5 -0.5 -2.5 3.5 -0.5 -1.5 4.5 -0.5 -1.5 3.5 0.5 -1.5 4.5 0.5 -1.5\n\t\t 3.5 0.5 -2.5 4.5 0.5 -2.5 3.5 -0.5 -2.5 4.5 -0.5 -2.5 1.5 -0.5 -1.5 2.5 -0.5 -1.5\n\t\t 1.5 0.5 -1.5 2.5 0.5 -1.5 1.5 0.5 -2.5 2.5 0.5 -2.5 1.5 -0.5 -2.5 2.5 -0.5 -2.5 -12.5 -0.5 -1.5\n\t\t -11.5 -0.5 -1.5 -12.5 0.5 -1.5 -11.5 0.5 -1.5 -12.5 0.5 -2.5 -11.5 0.5 -2.5 -12.5 -0.5 -2.5\n\t\t -11.5 -0.5 -2.5 11.5 -0.5 2.5 12.5 -0.5 2.5 11.5 0.5 2.5 12.5 0.5 2.5 11.5 0.5 1.5\n\t\t 12.5 0.5 1.5 11.5 -0.5 1.5 12.5 -0.5 1.5 7.5 -0.5 2.5 8.5 -0.5 2.5 7.5 0.5 2.5 8.5 0.5 2.5\n\t\t 7.5 0.5 1.5 8.5 0.5 1.5 7.5 -0.5 1.5 8.5 -0.5 1.5 9.5 -0.5 2.5 10.5 -0.5 2.5 9.5 0.5 2.5\n\t\t 10.5 0.5 2.5 9.5 0.5 1.5 10.5 0.5 1.5 9.5 -0.5 1.5 10.5 -0.5 1.5 -2.5 -0.5 2.5 -1.5 -0.5 2.5\n\t\t -2.5 0.5 2.5 -1.5 0.5 2.5 -2.5 0.5 1.5 -1.5 0.5 1.5 -2.5 -0.5 1.5 -1.5 -0.5 1.5 -4.5 -0.5 2.5\n\t\t -3.5 -0.5 2.5 -4.5 0.5 2.5 -3.5 0.5 2.5 -4.5 0.5 1.5 -3.5 0.5 1.5 -4.5 -0.5 1.5 -3.5 -0.5 1.5\n\t\t -0.5 -0.5 2.5 0.5 -0.5 2.5 -0.5 0.5 2.5 0.5 0.5 2.5 -0.5 0.5 1.5 0.5 0.5 1.5 -0.5 -0.5 1.5\n\t\t 0.5 -0.5 1.5 3.5 -0.5 2.5 4.5 -0.5 2.5 3.5 0.5 2.5 4.5 0.5 2.5 3.5 0.5 1.5 4.5 0.5 1.5\n\t\t 3.5 -0.5 1.5 4.5 -0.5 1.5 1.5 -0.5 2.5 2.5 -0.5 2.5 1.5 0.5 2.5 2.5 0.5 2.5 1.5 0.5 1.5\n\t\t 2.5 0.5 1.5 1.5 -0.5 1.5 2.5 -0.5 1.5 -12.5 -0.5 2.5 -11.5 -0.5 2.5 -12.5 0.5 2.5\n\t\t -11.5 0.5 2.5 -12.5 0.5 1.5 -11.5 0.5 1.5 -12.5 -0.5 1.5 -11.5 -0.5 1.5 5.5 -0.5 8.5\n\t\t 6.5 -0.5 8.5 5.5 0.5 8.5 6.5 0.5 8.5 5.5 0.5 7.5 6.5 0.5 7.5 5.5 -0.5 7.5 6.5 -0.5 7.5\n\t\t -10.5 -0.5 6.5 -9.5 -0.5 6.5 -10.5 0.5 6.5 -9.5 0.5 6.5 -10.5 0.5 5.5 -9.5 0.5 5.5\n\t\t -10.5 -0.5 5.5 -9.5 -0.5 5.5 -10.5 -0.5 -11.5 -9.5 -0.5 -11.5 -10.5 0.5 -11.5 -9.5 0.5 -11.5\n\t\t -10.5 0.5 -12.5 -9.5 0.5 -12.5 -10.5 -0.5 -12.5 -9.5 -0.5 -12.5 -6.5 -0.5 -11.5 -5.5 -0.5 -11.5\n\t\t -6.5 0.5 -11.5 -5.5 0.5 -11.5 -6.5 0.5 -12.5 -5.5 0.5 -12.5 -6.5 -0.5 -12.5 -5.5 -0.5 -12.5\n\t\t 1.5 -0.5 -11.5 2.5 -0.5 -11.5 1.5 0.5 -11.5 2.5 0.5 -11.5 1.5 0.5 -12.5 2.5 0.5 -12.5\n\t\t 1.5 -0.5 -12.5 2.5 -0.5 -12.5 -12.5 -0.5 -11.5 -11.5 -0.5 -11.5 -12.5 0.5 -11.5 -11.5 0.5 -11.5\n\t\t -12.5 0.5 -12.5 -11.5 0.5 -12.5 -12.5 -0.5 -12.5 -11.5 -0.5 -12.5 -4.5 -0.5 -11.5\n\t\t -3.5 -0.5 -11.5 -4.5 0.5 -11.5 -3.5 0.5 -11.5 -4.5 0.5 -12.5 -3.5 0.5 -12.5 -4.5 -0.5 -12.5\n\t\t -3.5 -0.5 -12.5 -0.5 -0.5 -11.5 0.5 -0.5 -11.5 -0.5 0.5 -11.5 0.5 0.5 -11.5 -0.5 0.5 -12.5\n\t\t 0.5 0.5 -12.5 -0.5 -0.5 -12.5 0.5 -0.5 -12.5;\n\tsetAttr \".vt[664:829]\" -2.5 -0.5 12.5 -1.5 -0.5 12.5 -2.5 0.5 12.5 -1.5 0.5 12.5\n\t\t -2.5 0.5 11.5 -1.5 0.5 11.5 -2.5 -0.5 11.5 -1.5 -0.5 11.5 -0.5 -0.5 10.5 0.5 -0.5 10.5\n\t\t -0.5 0.5 10.5 0.5 0.5 10.5 -0.5 0.5 9.5 0.5 0.5 9.5 -0.5 -0.5 9.5 0.5 -0.5 9.5 9.5 -0.5 8.5\n\t\t 10.5 -0.5 8.5 9.5 0.5 8.5 10.5 0.5 8.5 9.5 0.5 7.5 10.5 0.5 7.5 9.5 -0.5 7.5 10.5 -0.5 7.5\n\t\t 5.5 -0.5 -11.5 6.5 -0.5 -11.5 5.5 0.5 -11.5 6.5 0.5 -11.5 5.5 0.5 -12.5 6.5 0.5 -12.5\n\t\t 5.5 -0.5 -12.5 6.5 -0.5 -12.5 -4.5 -0.5 10.5 -3.5 -0.5 10.5 -4.5 0.5 10.5 -3.5 0.5 10.5\n\t\t -4.5 0.5 9.5 -3.5 0.5 9.5 -4.5 -0.5 9.5 -3.5 -0.5 9.5 1.5 -0.5 10.5 2.5 -0.5 10.5\n\t\t 1.5 0.5 10.5 2.5 0.5 10.5 1.5 0.5 9.5 2.5 0.5 9.5 1.5 -0.5 9.5 2.5 -0.5 9.5 3.5 -0.5 10.5\n\t\t 4.5 -0.5 10.5 3.5 0.5 10.5 4.5 0.5 10.5 3.5 0.5 9.5 4.5 0.5 9.5 3.5 -0.5 9.5 4.5 -0.5 9.5\n\t\t 9.5 -0.5 -11.5 10.5 -0.5 -11.5 9.5 0.5 -11.5 10.5 0.5 -11.5 9.5 0.5 -12.5 10.5 0.5 -12.5\n\t\t 9.5 -0.5 -12.5 10.5 -0.5 -12.5 7.5 -0.5 -11.5 8.5 -0.5 -11.5 7.5 0.5 -11.5 8.5 0.5 -11.5\n\t\t 7.5 0.5 -12.5 8.5 0.5 -12.5 7.5 -0.5 -12.5 8.5 -0.5 -12.5 7.5 -0.5 8.5 8.5 -0.5 8.5\n\t\t 7.5 0.5 8.5 8.5 0.5 8.5 7.5 0.5 7.5 8.5 0.5 7.5 7.5 -0.5 7.5 8.5 -0.5 7.5 11.5 -0.5 8.5\n\t\t 12.5 -0.5 8.5 11.5 0.5 8.5 12.5 0.5 8.5 11.5 0.5 7.5 12.5 0.5 7.5 11.5 -0.5 7.5 12.5 -0.5 7.5\n\t\t -8.5 -0.5 -11.5 -7.5 -0.5 -11.5 -8.5 0.5 -11.5 -7.5 0.5 -11.5 -8.5 0.5 -12.5 -7.5 0.5 -12.5\n\t\t -8.5 -0.5 -12.5 -7.5 -0.5 -12.5 7.5 -0.5 12.5 8.5 -0.5 12.5 7.5 0.5 12.5 8.5 0.5 12.5\n\t\t 7.5 0.5 11.5 8.5 0.5 11.5 7.5 -0.5 11.5 8.5 -0.5 11.5 5.5 -0.5 12.5 6.5 -0.5 12.5\n\t\t 5.5 0.5 12.5 6.5 0.5 12.5 5.5 0.5 11.5 6.5 0.5 11.5 5.5 -0.5 11.5 6.5 -0.5 11.5 -10.5 -0.5 10.5\n\t\t -9.5 -0.5 10.5 -10.5 0.5 10.5 -9.5 0.5 10.5 -10.5 0.5 9.5 -9.5 0.5 9.5 -10.5 -0.5 9.5\n\t\t -9.5 -0.5 9.5 -12.5 -0.5 12.5 -11.5 -0.5 12.5 -12.5 0.5 12.5 -11.5 0.5 12.5 -12.5 0.5 11.5\n\t\t -11.5 0.5 11.5 -12.5 -0.5 11.5 -11.5 -0.5 11.5 -6.5 -0.5 10.5 -5.5 -0.5 10.5 -6.5 0.5 10.5\n\t\t -5.5 0.5 10.5 -6.5 0.5 9.5 -5.5 0.5 9.5 -6.5 -0.5 9.5 -5.5 -0.5 9.5 3.5 -0.5 -11.5\n\t\t 4.5 -0.5 -11.5 3.5 0.5 -11.5 4.5 0.5 -11.5 3.5 0.5 -12.5 4.5 0.5 -12.5 3.5 -0.5 -12.5\n\t\t 4.5 -0.5 -12.5 -12.5 -0.5 10.5 -11.5 -0.5 10.5 -12.5 0.5 10.5 -11.5 0.5 10.5 -12.5 0.5 9.5\n\t\t -11.5 0.5 9.5 -12.5 -0.5 9.5 -11.5 -0.5 9.5 11.5 -0.5 -11.5 12.5 -0.5 -11.5 11.5 0.5 -11.5\n\t\t 12.5 0.5 -11.5 11.5 0.5 -12.5 12.5 0.5 -12.5 11.5 -0.5 -12.5 12.5 -0.5 -12.5 -2.5 -0.5 -11.5\n\t\t -1.5 -0.5 -11.5 -2.5 0.5 -11.5 -1.5 0.5 -11.5 -2.5 0.5 -12.5 -1.5 0.5 -12.5;\n\tsetAttr \".vt[830:995]\" -2.5 -0.5 -12.5 -1.5 -0.5 -12.5 11.5 -0.5 12.5 12.5 -0.5 12.5\n\t\t 11.5 0.5 12.5 12.5 0.5 12.5 11.5 0.5 11.5 12.5 0.5 11.5 11.5 -0.5 11.5 12.5 -0.5 11.5\n\t\t 3.5 -0.5 12.5 4.5 -0.5 12.5 3.5 0.5 12.5 4.5 0.5 12.5 3.5 0.5 11.5 4.5 0.5 11.5 3.5 -0.5 11.5\n\t\t 4.5 -0.5 11.5 -8.5 -0.5 10.5 -7.5 -0.5 10.5 -8.5 0.5 10.5 -7.5 0.5 10.5 -8.5 0.5 9.5\n\t\t -7.5 0.5 9.5 -8.5 -0.5 9.5 -7.5 -0.5 9.5 -4.5 -0.5 12.5 -3.5 -0.5 12.5 -4.5 0.5 12.5\n\t\t -3.5 0.5 12.5 -4.5 0.5 11.5 -3.5 0.5 11.5 -4.5 -0.5 11.5 -3.5 -0.5 11.5 -6.5 -0.5 12.5\n\t\t -5.5 -0.5 12.5 -6.5 0.5 12.5 -5.5 0.5 12.5 -6.5 0.5 11.5 -5.5 0.5 11.5 -6.5 -0.5 11.5\n\t\t -5.5 -0.5 11.5 9.5 -0.5 12.5 10.5 -0.5 12.5 9.5 0.5 12.5 10.5 0.5 12.5 9.5 0.5 11.5\n\t\t 10.5 0.5 11.5 9.5 -0.5 11.5 10.5 -0.5 11.5 -0.5 -0.5 12.5 0.5 -0.5 12.5 -0.5 0.5 12.5\n\t\t 0.5 0.5 12.5 -0.5 0.5 11.5 0.5 0.5 11.5 -0.5 -0.5 11.5 0.5 -0.5 11.5 -10.5 -0.5 12.5\n\t\t -9.5 -0.5 12.5 -10.5 0.5 12.5 -9.5 0.5 12.5 -10.5 0.5 11.5 -9.5 0.5 11.5 -10.5 -0.5 11.5\n\t\t -9.5 -0.5 11.5 -8.5 -0.5 12.5 -7.5 -0.5 12.5 -8.5 0.5 12.5 -7.5 0.5 12.5 -8.5 0.5 11.5\n\t\t -7.5 0.5 11.5 -8.5 -0.5 11.5 -7.5 -0.5 11.5 1.5 -0.5 12.5 2.5 -0.5 12.5 1.5 0.5 12.5\n\t\t 2.5 0.5 12.5 1.5 0.5 11.5 2.5 0.5 11.5 1.5 -0.5 11.5 2.5 -0.5 11.5 9.5 -0.5 -7.5\n\t\t 10.5 -0.5 -7.5 9.5 0.5 -7.5 10.5 0.5 -7.5 9.5 0.5 -8.5 10.5 0.5 -8.5 9.5 -0.5 -8.5\n\t\t 10.5 -0.5 -8.5 7.5 -0.5 -7.5 8.5 -0.5 -7.5 7.5 0.5 -7.5 8.5 0.5 -7.5 7.5 0.5 -8.5\n\t\t 8.5 0.5 -8.5 7.5 -0.5 -8.5 8.5 -0.5 -8.5 11.5 -0.5 -7.5 12.5 -0.5 -7.5 11.5 0.5 -7.5\n\t\t 12.5 0.5 -7.5 11.5 0.5 -8.5 12.5 0.5 -8.5 11.5 -0.5 -8.5 12.5 -0.5 -8.5 -8.5 -0.5 -9.5\n\t\t -7.5 -0.5 -9.5 -8.5 0.5 -9.5 -7.5 0.5 -9.5 -8.5 0.5 -10.5 -7.5 0.5 -10.5 -8.5 -0.5 -10.5\n\t\t -7.5 -0.5 -10.5 5.5 -0.5 -9.5 6.5 -0.5 -9.5 5.5 0.5 -9.5 6.5 0.5 -9.5 5.5 0.5 -10.5\n\t\t 6.5 0.5 -10.5 5.5 -0.5 -10.5 6.5 -0.5 -10.5 5.5 -0.5 -7.5 6.5 -0.5 -7.5 5.5 0.5 -7.5\n\t\t 6.5 0.5 -7.5 5.5 0.5 -8.5 6.5 0.5 -8.5 5.5 -0.5 -8.5 6.5 -0.5 -8.5 9.5 -0.5 -9.5\n\t\t 10.5 -0.5 -9.5 9.5 0.5 -9.5 10.5 0.5 -9.5 9.5 0.5 -10.5 10.5 0.5 -10.5 9.5 -0.5 -10.5\n\t\t 10.5 -0.5 -10.5 7.5 -0.5 -9.5 8.5 -0.5 -9.5 7.5 0.5 -9.5 8.5 0.5 -9.5 7.5 0.5 -10.5\n\t\t 8.5 0.5 -10.5 7.5 -0.5 -10.5 8.5 -0.5 -10.5 11.5 -0.5 -9.5 12.5 -0.5 -9.5 11.5 0.5 -9.5\n\t\t 12.5 0.5 -9.5 11.5 0.5 -10.5 12.5 0.5 -10.5 11.5 -0.5 -10.5 12.5 -0.5 -10.5 -2.5 -0.5 -9.5\n\t\t -1.5 -0.5 -9.5 -2.5 0.5 -9.5 -1.5 0.5 -9.5 -2.5 0.5 -10.5 -1.5 0.5 -10.5 -2.5 -0.5 -10.5\n\t\t -1.5 -0.5 -10.5 3.5 -0.5 -9.5 4.5 -0.5 -9.5 3.5 0.5 -9.5 4.5 0.5 -9.5;\n\tsetAttr \".vt[996:1161]\" 3.5 0.5 -10.5 4.5 0.5 -10.5 3.5 -0.5 -10.5 4.5 -0.5 -10.5\n\t\t -0.5 -0.5 -9.5 0.5 -0.5 -9.5 -0.5 0.5 -9.5 0.5 0.5 -9.5 -0.5 0.5 -10.5 0.5 0.5 -10.5\n\t\t -0.5 -0.5 -10.5 0.5 -0.5 -10.5 -4.5 -0.5 -9.5 -3.5 -0.5 -9.5 -4.5 0.5 -9.5 -3.5 0.5 -9.5\n\t\t -4.5 0.5 -10.5 -3.5 0.5 -10.5 -4.5 -0.5 -10.5 -3.5 -0.5 -10.5 -12.5 -0.5 -9.5 -11.5 -0.5 -9.5\n\t\t -12.5 0.5 -9.5 -11.5 0.5 -9.5 -12.5 0.5 -10.5 -11.5 0.5 -10.5 -12.5 -0.5 -10.5 -11.5 -0.5 -10.5\n\t\t 1.5 -0.5 -9.5 2.5 -0.5 -9.5 1.5 0.5 -9.5 2.5 0.5 -9.5 1.5 0.5 -10.5 2.5 0.5 -10.5\n\t\t 1.5 -0.5 -10.5 2.5 -0.5 -10.5 5.5 -0.5 10.5 6.5 -0.5 10.5 5.5 0.5 10.5 6.5 0.5 10.5\n\t\t 5.5 0.5 9.5 6.5 0.5 9.5 5.5 -0.5 9.5 6.5 -0.5 9.5 11.5 -0.5 10.5 12.5 -0.5 10.5 11.5 0.5 10.5\n\t\t 12.5 0.5 10.5 11.5 0.5 9.5 12.5 0.5 9.5 11.5 -0.5 9.5 12.5 -0.5 9.5 7.5 -0.5 10.5\n\t\t 8.5 -0.5 10.5 7.5 0.5 10.5 8.5 0.5 10.5 7.5 0.5 9.5 8.5 0.5 9.5 7.5 -0.5 9.5 8.5 -0.5 9.5\n\t\t 9.5 -0.5 10.5 10.5 -0.5 10.5 9.5 0.5 10.5 10.5 0.5 10.5 9.5 0.5 9.5 10.5 0.5 9.5\n\t\t 9.5 -0.5 9.5 10.5 -0.5 9.5 -2.5 -0.5 10.5 -1.5 -0.5 10.5 -2.5 0.5 10.5 -1.5 0.5 10.5\n\t\t -2.5 0.5 9.5 -1.5 0.5 9.5 -2.5 -0.5 9.5 -1.5 -0.5 9.5 -12.5 -0.5 6.5 -11.5 -0.5 6.5\n\t\t -12.5 0.5 6.5 -11.5 0.5 6.5 -12.5 0.5 5.5 -11.5 0.5 5.5 -12.5 -0.5 5.5 -11.5 -0.5 5.5\n\t\t 1.5 -0.5 6.5 2.5 -0.5 6.5 1.5 0.5 6.5 2.5 0.5 6.5 1.5 0.5 5.5 2.5 0.5 5.5 1.5 -0.5 5.5\n\t\t 2.5 -0.5 5.5 3.5 -0.5 6.5 4.5 -0.5 6.5 3.5 0.5 6.5 4.5 0.5 6.5 3.5 0.5 5.5 4.5 0.5 5.5\n\t\t 3.5 -0.5 5.5 4.5 -0.5 5.5 -0.5 -0.5 6.5 0.5 -0.5 6.5 -0.5 0.5 6.5 0.5 0.5 6.5 -0.5 0.5 5.5\n\t\t 0.5 0.5 5.5 -0.5 -0.5 5.5 0.5 -0.5 5.5 9.5 -0.5 4.5 10.5 -0.5 4.5 9.5 0.5 4.5 10.5 0.5 4.5\n\t\t 9.5 0.5 3.5 10.5 0.5 3.5 9.5 -0.5 3.5 10.5 -0.5 3.5 7.5 -0.5 4.5 8.5 -0.5 4.5 7.5 0.5 4.5\n\t\t 8.5 0.5 4.5 7.5 0.5 3.5 8.5 0.5 3.5 7.5 -0.5 3.5 8.5 -0.5 3.5 11.5 -0.5 4.5 12.5 -0.5 4.5\n\t\t 11.5 0.5 4.5 12.5 0.5 4.5 11.5 0.5 3.5 12.5 0.5 3.5 11.5 -0.5 3.5 12.5 -0.5 3.5 -8.5 -0.5 2.5\n\t\t -7.5 -0.5 2.5 -8.5 0.5 2.5 -7.5 0.5 2.5 -8.5 0.5 1.5 -7.5 0.5 1.5 -8.5 -0.5 1.5 -7.5 -0.5 1.5\n\t\t -6.5 -0.5 2.5 -5.5 -0.5 2.5 -6.5 0.5 2.5 -5.5 0.5 2.5 -6.5 0.5 1.5 -5.5 0.5 1.5 -6.5 -0.5 1.5\n\t\t -5.5 -0.5 1.5 -4.5 -0.5 6.5 -3.5 -0.5 6.5 -4.5 0.5 6.5 -3.5 0.5 6.5 -4.5 0.5 5.5\n\t\t -3.5 0.5 5.5 -4.5 -0.5 5.5 -3.5 -0.5 5.5 -2.5 -0.5 6.5 -1.5 -0.5 6.5 -2.5 0.5 6.5\n\t\t -1.5 0.5 6.5 -2.5 0.5 5.5 -1.5 0.5 5.5 -2.5 -0.5 5.5 -1.5 -0.5 5.5 9.5 -0.5 6.5 10.5 -0.5 6.5;\n\tsetAttr \".vt[1162:1327]\" 9.5 0.5 6.5 10.5 0.5 6.5 9.5 0.5 5.5 10.5 0.5 5.5 9.5 -0.5 5.5\n\t\t 10.5 -0.5 5.5 7.5 -0.5 6.5 8.5 -0.5 6.5 7.5 0.5 6.5 8.5 0.5 6.5 7.5 0.5 5.5 8.5 0.5 5.5\n\t\t 7.5 -0.5 5.5 8.5 -0.5 5.5 11.5 -0.5 6.5 12.5 -0.5 6.5 11.5 0.5 6.5 12.5 0.5 6.5 11.5 0.5 5.5\n\t\t 12.5 0.5 5.5 11.5 -0.5 5.5 12.5 -0.5 5.5 5.5 -0.5 6.5 6.5 -0.5 6.5 5.5 0.5 6.5 6.5 0.5 6.5\n\t\t 5.5 0.5 5.5 6.5 0.5 5.5 5.5 -0.5 5.5 6.5 -0.5 5.5 -10.5 -0.5 4.5 -9.5 -0.5 4.5 -10.5 0.5 4.5\n\t\t -9.5 0.5 4.5 -10.5 0.5 3.5 -9.5 0.5 3.5 -10.5 -0.5 3.5 -9.5 -0.5 3.5 3.5 -0.5 4.5\n\t\t 4.5 -0.5 4.5 3.5 0.5 4.5 4.5 0.5 4.5 3.5 0.5 3.5 4.5 0.5 3.5 3.5 -0.5 3.5 4.5 -0.5 3.5\n\t\t -12.5 -0.5 4.5 -11.5 -0.5 4.5 -12.5 0.5 4.5 -11.5 0.5 4.5 -12.5 0.5 3.5 -11.5 0.5 3.5\n\t\t -12.5 -0.5 3.5 -11.5 -0.5 3.5 -6.5 -0.5 4.5 -5.5 -0.5 4.5 -6.5 0.5 4.5 -5.5 0.5 4.5\n\t\t -6.5 0.5 3.5 -5.5 0.5 3.5 -6.5 -0.5 3.5 -5.5 -0.5 3.5 -8.5 -0.5 4.5 -7.5 -0.5 4.5\n\t\t -8.5 0.5 4.5 -7.5 0.5 4.5 -8.5 0.5 3.5 -7.5 0.5 3.5 -8.5 -0.5 3.5 -7.5 -0.5 3.5 -0.5 -0.5 4.5\n\t\t 0.5 -0.5 4.5 -0.5 0.5 4.5 0.5 0.5 4.5 -0.5 0.5 3.5 0.5 0.5 3.5 -0.5 -0.5 3.5 0.5 -0.5 3.5\n\t\t 1.5 -0.5 4.5 2.5 -0.5 4.5 1.5 0.5 4.5 2.5 0.5 4.5 1.5 0.5 3.5 2.5 0.5 3.5 1.5 -0.5 3.5\n\t\t 2.5 -0.5 3.5 -4.5 -0.5 4.5 -3.5 -0.5 4.5 -4.5 0.5 4.5 -3.5 0.5 4.5 -4.5 0.5 3.5 -3.5 0.5 3.5\n\t\t -4.5 -0.5 3.5 -3.5 -0.5 3.5 -2.5 -0.5 4.5 -1.5 -0.5 4.5 -2.5 0.5 4.5 -1.5 0.5 4.5\n\t\t -2.5 0.5 3.5 -1.5 0.5 3.5 -2.5 -0.5 3.5 -1.5 -0.5 3.5 -10.5 -0.5 2.5 -9.5 -0.5 2.5\n\t\t -10.5 0.5 2.5 -9.5 0.5 2.5 -10.5 0.5 1.5 -9.5 0.5 1.5 -10.5 -0.5 1.5 -9.5 -0.5 1.5\n\t\t 5.5 -0.5 4.5 6.5 -0.5 4.5 5.5 0.5 4.5 6.5 0.5 4.5 5.5 0.5 3.5 6.5 0.5 3.5 5.5 -0.5 3.5\n\t\t 6.5 -0.5 3.5 5.5 -0.5 2.5 6.5 -0.5 2.5 5.5 0.5 2.5 6.5 0.5 2.5 5.5 0.5 1.5 6.5 0.5 1.5\n\t\t 5.5 -0.5 1.5 6.5 -0.5 1.5 -6.5 -0.5 -9.5 -5.5 -0.5 -9.5 -6.5 0.5 -9.5 -5.5 0.5 -9.5\n\t\t -6.5 0.5 -10.5 -5.5 0.5 -10.5 -6.5 -0.5 -10.5 -5.5 -0.5 -10.5 -10.5 -0.5 -7.5 -9.5 -0.5 -7.5\n\t\t -10.5 0.5 -7.5 -9.5 0.5 -7.5 -10.5 0.5 -8.5 -9.5 0.5 -8.5 -10.5 -0.5 -8.5 -9.5 -0.5 -8.5\n\t\t 3.5 -0.5 -7.5 4.5 -0.5 -7.5 3.5 0.5 -7.5 4.5 0.5 -7.5 3.5 0.5 -8.5 4.5 0.5 -8.5 3.5 -0.5 -8.5\n\t\t 4.5 -0.5 -8.5 -12.5 -0.5 -7.5 -11.5 -0.5 -7.5 -12.5 0.5 -7.5 -11.5 0.5 -7.5 -12.5 0.5 -8.5\n\t\t -11.5 0.5 -8.5 -12.5 -0.5 -8.5 -11.5 -0.5 -8.5 -6.5 -0.5 -7.5 -5.5 -0.5 -7.5 -6.5 0.5 -7.5\n\t\t -5.5 0.5 -7.5 -6.5 0.5 -8.5 -5.5 0.5 -8.5 -6.5 -0.5 -8.5 -5.5 -0.5 -8.5;\n\tsetAttr \".vt[1328:1375]\" -8.5 -0.5 -7.5 -7.5 -0.5 -7.5 -8.5 0.5 -7.5 -7.5 0.5 -7.5\n\t\t -8.5 0.5 -8.5 -7.5 0.5 -8.5 -8.5 -0.5 -8.5 -7.5 -0.5 -8.5 -0.5 -0.5 -7.5 0.5 -0.5 -7.5\n\t\t -0.5 0.5 -7.5 0.5 0.5 -7.5 -0.5 0.5 -8.5 0.5 0.5 -8.5 -0.5 -0.5 -8.5 0.5 -0.5 -8.5\n\t\t 1.5 -0.5 -7.5 2.5 -0.5 -7.5 1.5 0.5 -7.5 2.5 0.5 -7.5 1.5 0.5 -8.5 2.5 0.5 -8.5 1.5 -0.5 -8.5\n\t\t 2.5 -0.5 -8.5 -4.5 -0.5 -7.5 -3.5 -0.5 -7.5 -4.5 0.5 -7.5 -3.5 0.5 -7.5 -4.5 0.5 -8.5\n\t\t -3.5 0.5 -8.5 -4.5 -0.5 -8.5 -3.5 -0.5 -8.5 -2.5 -0.5 -7.5 -1.5 -0.5 -7.5 -2.5 0.5 -7.5\n\t\t -1.5 0.5 -7.5 -2.5 0.5 -8.5 -1.5 0.5 -8.5 -2.5 -0.5 -8.5 -1.5 -0.5 -8.5 -10.5 -0.5 -9.5\n\t\t -9.5 -0.5 -9.5 -10.5 0.5 -9.5 -9.5 0.5 -9.5 -10.5 0.5 -10.5 -9.5 0.5 -10.5 -10.5 -0.5 -10.5\n\t\t -9.5 -0.5 -10.5;\n\tsetAttr -s 2064 \".ed\";\n\tsetAttr \".ed[0:165]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0\n\t\t 5 7 0 6 0 0 7 1 0 8 9 0 10 11 0 12 13 0 14 15 0 8 10 0 9 11 0 10 12 0 11 13 0 12 14 0\n\t\t 13 15 0 14 8 0 15 9 0 16 17 0 18 19 0 20 21 0 22 23 0 16 18 0 17 19 0 18 20 0 19 21 0\n\t\t 20 22 0 21 23 0 22 16 0 23 17 0 24 25 0 26 27 0 28 29 0 30 31 0 24 26 0 25 27 0 26 28 0\n\t\t 27 29 0 28 30 0 29 31 0 30 24 0 31 25 0 32 33 0 34 35 0 36 37 0 38 39 0 32 34 0 33 35 0\n\t\t 34 36 0 35 37 0 36 38 0 37 39 0 38 32 0 39 33 0 40 41 0 42 43 0 44 45 0 46 47 0 40 42 0\n\t\t 41 43 0 42 44 0 43 45 0 44 46 0 45 47 0 46 40 0 47 41 0 48 49 0 50 51 0 52 53 0 54 55 0\n\t\t 48 50 0 49 51 0 50 52 0 51 53 0 52 54 0 53 55 0 54 48 0 55 49 0 56 57 0 58 59 0 60 61 0\n\t\t 62 63 0 56 58 0 57 59 0 58 60 0 59 61 0 60 62 0 61 63 0 62 56 0 63 57 0 64 65 0 66 67 0\n\t\t 68 69 0 70 71 0 64 66 0 65 67 0 66 68 0 67 69 0 68 70 0 69 71 0 70 64 0 71 65 0 72 73 0\n\t\t 74 75 0 76 77 0 78 79 0 72 74 0 73 75 0 74 76 0 75 77 0 76 78 0 77 79 0 78 72 0 79 73 0\n\t\t 80 81 0 82 83 0 84 85 0 86 87 0 80 82 0 81 83 0 82 84 0 83 85 0 84 86 0 85 87 0 86 80 0\n\t\t 87 81 0 88 89 0 90 91 0 92 93 0 94 95 0 88 90 0 89 91 0 90 92 0 91 93 0 92 94 0 93 95 0\n\t\t 94 88 0 95 89 0 96 97 0 98 99 0 100 101 0 102 103 0 96 98 0 97 99 0 98 100 0 99 101 0\n\t\t 100 102 0 101 103 0 102 96 0 103 97 0 104 105 0 106 107 0 108 109 0 110 111 0 104 106 0\n\t\t 105 107 0 106 108 0 107 109 0 108 110 0 109 111 0;\n\tsetAttr \".ed[166:331]\" 110 104 0 111 105 0 112 113 0 114 115 0 116 117 0 118 119 0\n\t\t 112 114 0 113 115 0 114 116 0 115 117 0 116 118 0 117 119 0 118 112 0 119 113 0 120 121 0\n\t\t 122 123 0 124 125 0 126 127 0 120 122 0 121 123 0 122 124 0 123 125 0 124 126 0 125 127 0\n\t\t 126 120 0 127 121 0 128 129 0 130 131 0 132 133 0 134 135 0 128 130 0 129 131 0 130 132 0\n\t\t 131 133 0 132 134 0 133 135 0 134 128 0 135 129 0 136 137 0 138 139 0 140 141 0 142 143 0\n\t\t 136 138 0 137 139 0 138 140 0 139 141 0 140 142 0 141 143 0 142 136 0 143 137 0 144 145 0\n\t\t 146 147 0 148 149 0 150 151 0 144 146 0 145 147 0 146 148 0 147 149 0 148 150 0 149 151 0\n\t\t 150 144 0 151 145 0 152 153 0 154 155 0 156 157 0 158 159 0 152 154 0 153 155 0 154 156 0\n\t\t 155 157 0 156 158 0 157 159 0 158 152 0 159 153 0 160 161 0 162 163 0 164 165 0 166 167 0\n\t\t 160 162 0 161 163 0 162 164 0 163 165 0 164 166 0 165 167 0 166 160 0 167 161 0 168 169 0\n\t\t 170 171 0 172 173 0 174 175 0 168 170 0 169 171 0 170 172 0 171 173 0 172 174 0 173 175 0\n\t\t 174 168 0 175 169 0 176 177 0 178 179 0 180 181 0 182 183 0 176 178 0 177 179 0 178 180 0\n\t\t 179 181 0 180 182 0 181 183 0 182 176 0 183 177 0 184 185 0 186 187 0 188 189 0 190 191 0\n\t\t 184 186 0 185 187 0 186 188 0 187 189 0 188 190 0 189 191 0 190 184 0 191 185 0 192 193 0\n\t\t 194 195 0 196 197 0 198 199 0 192 194 0 193 195 0 194 196 0 195 197 0 196 198 0 197 199 0\n\t\t 198 192 0 199 193 0 200 201 0 202 203 0 204 205 0 206 207 0 200 202 0 201 203 0 202 204 0\n\t\t 203 205 0 204 206 0 205 207 0 206 200 0 207 201 0 208 209 0 210 211 0 212 213 0 214 215 0\n\t\t 208 210 0 209 211 0 210 212 0 211 213 0 212 214 0 213 215 0 214 208 0 215 209 0 216 217 0\n\t\t 218 219 0 220 221 0 222 223 0 216 218 0 217 219 0 218 220 0 219 221 0;\n\tsetAttr \".ed[332:497]\" 220 222 0 221 223 0 222 216 0 223 217 0 224 225 0 226 227 0\n\t\t 228 229 0 230 231 0 224 226 0 225 227 0 226 228 0 227 229 0 228 230 0 229 231 0 230 224 0\n\t\t 231 225 0 232 233 0 234 235 0 236 237 0 238 239 0 232 234 0 233 235 0 234 236 0 235 237 0\n\t\t 236 238 0 237 239 0 238 232 0 239 233 0 240 241 0 242 243 0 244 245 0 246 247 0 240 242 0\n\t\t 241 243 0 242 244 0 243 245 0 244 246 0 245 247 0 246 240 0 247 241 0 248 249 0 250 251 0\n\t\t 252 253 0 254 255 0 248 250 0 249 251 0 250 252 0 251 253 0 252 254 0 253 255 0 254 248 0\n\t\t 255 249 0 256 257 0 258 259 0 260 261 0 262 263 0 256 258 0 257 259 0 258 260 0 259 261 0\n\t\t 260 262 0 261 263 0 262 256 0 263 257 0 264 265 0 266 267 0 268 269 0 270 271 0 264 266 0\n\t\t 265 267 0 266 268 0 267 269 0 268 270 0 269 271 0 270 264 0 271 265 0 272 273 0 274 275 0\n\t\t 276 277 0 278 279 0 272 274 0 273 275 0 274 276 0 275 277 0 276 278 0 277 279 0 278 272 0\n\t\t 279 273 0 280 281 0 282 283 0 284 285 0 286 287 0 280 282 0 281 283 0 282 284 0 283 285 0\n\t\t 284 286 0 285 287 0 286 280 0 287 281 0 288 289 0 290 291 0 292 293 0 294 295 0 288 290 0\n\t\t 289 291 0 290 292 0 291 293 0 292 294 0 293 295 0 294 288 0 295 289 0 296 297 0 298 299 0\n\t\t 300 301 0 302 303 0 296 298 0 297 299 0 298 300 0 299 301 0 300 302 0 301 303 0 302 296 0\n\t\t 303 297 0 304 305 0 306 307 0 308 309 0 310 311 0 304 306 0 305 307 0 306 308 0 307 309 0\n\t\t 308 310 0 309 311 0 310 304 0 311 305 0 312 313 0 314 315 0 316 317 0 318 319 0 312 314 0\n\t\t 313 315 0 314 316 0 315 317 0 316 318 0 317 319 0 318 312 0 319 313 0 320 321 0 322 323 0\n\t\t 324 325 0 326 327 0 320 322 0 321 323 0 322 324 0 323 325 0 324 326 0 325 327 0 326 320 0\n\t\t 327 321 0 328 329 0 330 331 0 332 333 0 334 335 0 328 330 0 329 331 0;\n\tsetAttr \".ed[498:663]\" 330 332 0 331 333 0 332 334 0 333 335 0 334 328 0 335 329 0\n\t\t 336 337 0 338 339 0 340 341 0 342 343 0 336 338 0 337 339 0 338 340 0 339 341 0 340 342 0\n\t\t 341 343 0 342 336 0 343 337 0 344 345 0 346 347 0 348 349 0 350 351 0 344 346 0 345 347 0\n\t\t 346 348 0 347 349 0 348 350 0 349 351 0 350 344 0 351 345 0 352 353 0 354 355 0 356 357 0\n\t\t 358 359 0 352 354 0 353 355 0 354 356 0 355 357 0 356 358 0 357 359 0 358 352 0 359 353 0\n\t\t 360 361 0 362 363 0 364 365 0 366 367 0 360 362 0 361 363 0 362 364 0 363 365 0 364 366 0\n\t\t 365 367 0 366 360 0 367 361 0 368 369 0 370 371 0 372 373 0 374 375 0 368 370 0 369 371 0\n\t\t 370 372 0 371 373 0 372 374 0 373 375 0 374 368 0 375 369 0 376 377 0 378 379 0 380 381 0\n\t\t 382 383 0 376 378 0 377 379 0 378 380 0 379 381 0 380 382 0 381 383 0 382 376 0 383 377 0\n\t\t 384 385 0 386 387 0 388 389 0 390 391 0 384 386 0 385 387 0 386 388 0 387 389 0 388 390 0\n\t\t 389 391 0 390 384 0 391 385 0 392 393 0 394 395 0 396 397 0 398 399 0 392 394 0 393 395 0\n\t\t 394 396 0 395 397 0 396 398 0 397 399 0 398 392 0 399 393 0 400 401 0 402 403 0 404 405 0\n\t\t 406 407 0 400 402 0 401 403 0 402 404 0 403 405 0 404 406 0 405 407 0 406 400 0 407 401 0\n\t\t 408 409 0 410 411 0 412 413 0 414 415 0 408 410 0 409 411 0 410 412 0 411 413 0 412 414 0\n\t\t 413 415 0 414 408 0 415 409 0 416 417 0 418 419 0 420 421 0 422 423 0 416 418 0 417 419 0\n\t\t 418 420 0 419 421 0 420 422 0 421 423 0 422 416 0 423 417 0 424 425 0 426 427 0 428 429 0\n\t\t 430 431 0 424 426 0 425 427 0 426 428 0 427 429 0 428 430 0 429 431 0 430 424 0 431 425 0\n\t\t 432 433 0 434 435 0 436 437 0 438 439 0 432 434 0 433 435 0 434 436 0 435 437 0 436 438 0\n\t\t 437 439 0 438 432 0 439 433 0 440 441 0 442 443 0 444 445 0 446 447 0;\n\tsetAttr \".ed[664:829]\" 440 442 0 441 443 0 442 444 0 443 445 0 444 446 0 445 447 0\n\t\t 446 440 0 447 441 0 448 449 0 450 451 0 452 453 0 454 455 0 448 450 0 449 451 0 450 452 0\n\t\t 451 453 0 452 454 0 453 455 0 454 448 0 455 449 0 456 457 0 458 459 0 460 461 0 462 463 0\n\t\t 456 458 0 457 459 0 458 460 0 459 461 0 460 462 0 461 463 0 462 456 0 463 457 0 464 465 0\n\t\t 466 467 0 468 469 0 470 471 0 464 466 0 465 467 0 466 468 0 467 469 0 468 470 0 469 471 0\n\t\t 470 464 0 471 465 0 472 473 0 474 475 0 476 477 0 478 479 0 472 474 0 473 475 0 474 476 0\n\t\t 475 477 0 476 478 0 477 479 0 478 472 0 479 473 0 480 481 0 482 483 0 484 485 0 486 487 0\n\t\t 480 482 0 481 483 0 482 484 0 483 485 0 484 486 0 485 487 0 486 480 0 487 481 0 488 489 0\n\t\t 490 491 0 492 493 0 494 495 0 488 490 0 489 491 0 490 492 0 491 493 0 492 494 0 493 495 0\n\t\t 494 488 0 495 489 0 496 497 0 498 499 0 500 501 0 502 503 0 496 498 0 497 499 0 498 500 0\n\t\t 499 501 0 500 502 0 501 503 0 502 496 0 503 497 0 504 505 0 506 507 0 508 509 0 510 511 0\n\t\t 504 506 0 505 507 0 506 508 0 507 509 0 508 510 0 509 511 0 510 504 0 511 505 0 512 513 0\n\t\t 514 515 0 516 517 0 518 519 0 512 514 0 513 515 0 514 516 0 515 517 0 516 518 0 517 519 0\n\t\t 518 512 0 519 513 0 520 521 0 522 523 0 524 525 0 526 527 0 520 522 0 521 523 0 522 524 0\n\t\t 523 525 0 524 526 0 525 527 0 526 520 0 527 521 0 528 529 0 530 531 0 532 533 0 534 535 0\n\t\t 528 530 0 529 531 0 530 532 0 531 533 0 532 534 0 533 535 0 534 528 0 535 529 0 536 537 0\n\t\t 538 539 0 540 541 0 542 543 0 536 538 0 537 539 0 538 540 0 539 541 0 540 542 0 541 543 0\n\t\t 542 536 0 543 537 0 544 545 0 546 547 0 548 549 0 550 551 0 544 546 0 545 547 0 546 548 0\n\t\t 547 549 0 548 550 0 549 551 0 550 544 0 551 545 0 552 553 0 554 555 0;\n\tsetAttr \".ed[830:995]\" 556 557 0 558 559 0 552 554 0 553 555 0 554 556 0 555 557 0\n\t\t 556 558 0 557 559 0 558 552 0 559 553 0 560 561 0 562 563 0 564 565 0 566 567 0 560 562 0\n\t\t 561 563 0 562 564 0 563 565 0 564 566 0 565 567 0 566 560 0 567 561 0 568 569 0 570 571 0\n\t\t 572 573 0 574 575 0 568 570 0 569 571 0 570 572 0 571 573 0 572 574 0 573 575 0 574 568 0\n\t\t 575 569 0 576 577 0 578 579 0 580 581 0 582 583 0 576 578 0 577 579 0 578 580 0 579 581 0\n\t\t 580 582 0 581 583 0 582 576 0 583 577 0 584 585 0 586 587 0 588 589 0 590 591 0 584 586 0\n\t\t 585 587 0 586 588 0 587 589 0 588 590 0 589 591 0 590 584 0 591 585 0 592 593 0 594 595 0\n\t\t 596 597 0 598 599 0 592 594 0 593 595 0 594 596 0 595 597 0 596 598 0 597 599 0 598 592 0\n\t\t 599 593 0 600 601 0 602 603 0 604 605 0 606 607 0 600 602 0 601 603 0 602 604 0 603 605 0\n\t\t 604 606 0 605 607 0 606 600 0 607 601 0 608 609 0 610 611 0 612 613 0 614 615 0 608 610 0\n\t\t 609 611 0 610 612 0 611 613 0 612 614 0 613 615 0 614 608 0 615 609 0 616 617 0 618 619 0\n\t\t 620 621 0 622 623 0 616 618 0 617 619 0 618 620 0 619 621 0 620 622 0 621 623 0 622 616 0\n\t\t 623 617 0 624 625 0 626 627 0 628 629 0 630 631 0 624 626 0 625 627 0 626 628 0 627 629 0\n\t\t 628 630 0 629 631 0 630 624 0 631 625 0 632 633 0 634 635 0 636 637 0 638 639 0 632 634 0\n\t\t 633 635 0 634 636 0 635 637 0 636 638 0 637 639 0 638 632 0 639 633 0 640 641 0 642 643 0\n\t\t 644 645 0 646 647 0 640 642 0 641 643 0 642 644 0 643 645 0 644 646 0 645 647 0 646 640 0\n\t\t 647 641 0 648 649 0 650 651 0 652 653 0 654 655 0 648 650 0 649 651 0 650 652 0 651 653 0\n\t\t 652 654 0 653 655 0 654 648 0 655 649 0 656 657 0 658 659 0 660 661 0 662 663 0 656 658 0\n\t\t 657 659 0 658 660 0 659 661 0 660 662 0 661 663 0 662 656 0 663 657 0;\n\tsetAttr \".ed[996:1161]\" 664 665 0 666 667 0 668 669 0 670 671 0 664 666 0 665 667 0\n\t\t 666 668 0 667 669 0 668 670 0 669 671 0 670 664 0 671 665 0 672 673 0 674 675 0 676 677 0\n\t\t 678 679 0 672 674 0 673 675 0 674 676 0 675 677 0 676 678 0 677 679 0 678 672 0 679 673 0\n\t\t 680 681 0 682 683 0 684 685 0 686 687 0 680 682 0 681 683 0 682 684 0 683 685 0 684 686 0\n\t\t 685 687 0 686 680 0 687 681 0 688 689 0 690 691 0 692 693 0 694 695 0 688 690 0 689 691 0\n\t\t 690 692 0 691 693 0 692 694 0 693 695 0 694 688 0 695 689 0 696 697 0 698 699 0 700 701 0\n\t\t 702 703 0 696 698 0 697 699 0 698 700 0 699 701 0 700 702 0 701 703 0 702 696 0 703 697 0\n\t\t 704 705 0 706 707 0 708 709 0 710 711 0 704 706 0 705 707 0 706 708 0 707 709 0 708 710 0\n\t\t 709 711 0 710 704 0 711 705 0 712 713 0 714 715 0 716 717 0 718 719 0 712 714 0 713 715 0\n\t\t 714 716 0 715 717 0 716 718 0 717 719 0 718 712 0 719 713 0 720 721 0 722 723 0 724 725 0\n\t\t 726 727 0 720 722 0 721 723 0 722 724 0 723 725 0 724 726 0 725 727 0 726 720 0 727 721 0\n\t\t 728 729 0 730 731 0 732 733 0 734 735 0 728 730 0 729 731 0 730 732 0 731 733 0 732 734 0\n\t\t 733 735 0 734 728 0 735 729 0 736 737 0 738 739 0 740 741 0 742 743 0 736 738 0 737 739 0\n\t\t 738 740 0 739 741 0 740 742 0 741 743 0 742 736 0 743 737 0 744 745 0 746 747 0 748 749 0\n\t\t 750 751 0 744 746 0 745 747 0 746 748 0 747 749 0 748 750 0 749 751 0 750 744 0 751 745 0\n\t\t 752 753 0 754 755 0 756 757 0 758 759 0 752 754 0 753 755 0 754 756 0 755 757 0 756 758 0\n\t\t 757 759 0 758 752 0 759 753 0 760 761 0 762 763 0 764 765 0 766 767 0 760 762 0 761 763 0\n\t\t 762 764 0 763 765 0 764 766 0 765 767 0 766 760 0 767 761 0 768 769 0 770 771 0 772 773 0\n\t\t 774 775 0 768 770 0 769 771 0 770 772 0 771 773 0 772 774 0 773 775 0;\n\tsetAttr \".ed[1162:1327]\" 774 768 0 775 769 0 776 777 0 778 779 0 780 781 0 782 783 0\n\t\t 776 778 0 777 779 0 778 780 0 779 781 0 780 782 0 781 783 0 782 776 0 783 777 0 784 785 0\n\t\t 786 787 0 788 789 0 790 791 0 784 786 0 785 787 0 786 788 0 787 789 0 788 790 0 789 791 0\n\t\t 790 784 0 791 785 0 792 793 0 794 795 0 796 797 0 798 799 0 792 794 0 793 795 0 794 796 0\n\t\t 795 797 0 796 798 0 797 799 0 798 792 0 799 793 0 800 801 0 802 803 0 804 805 0 806 807 0\n\t\t 800 802 0 801 803 0 802 804 0 803 805 0 804 806 0 805 807 0 806 800 0 807 801 0 808 809 0\n\t\t 810 811 0 812 813 0 814 815 0 808 810 0 809 811 0 810 812 0 811 813 0 812 814 0 813 815 0\n\t\t 814 808 0 815 809 0 816 817 0 818 819 0 820 821 0 822 823 0 816 818 0 817 819 0 818 820 0\n\t\t 819 821 0 820 822 0 821 823 0 822 816 0 823 817 0 824 825 0 826 827 0 828 829 0 830 831 0\n\t\t 824 826 0 825 827 0 826 828 0 827 829 0 828 830 0 829 831 0 830 824 0 831 825 0 832 833 0\n\t\t 834 835 0 836 837 0 838 839 0 832 834 0 833 835 0 834 836 0 835 837 0 836 838 0 837 839 0\n\t\t 838 832 0 839 833 0 840 841 0 842 843 0 844 845 0 846 847 0 840 842 0 841 843 0 842 844 0\n\t\t 843 845 0 844 846 0 845 847 0 846 840 0 847 841 0 848 849 0 850 851 0 852 853 0 854 855 0\n\t\t 848 850 0 849 851 0 850 852 0 851 853 0 852 854 0 853 855 0 854 848 0 855 849 0 856 857 0\n\t\t 858 859 0 860 861 0 862 863 0 856 858 0 857 859 0 858 860 0 859 861 0 860 862 0 861 863 0\n\t\t 862 856 0 863 857 0 864 865 0 866 867 0 868 869 0 870 871 0 864 866 0 865 867 0 866 868 0\n\t\t 867 869 0 868 870 0 869 871 0 870 864 0 871 865 0 872 873 0 874 875 0 876 877 0 878 879 0\n\t\t 872 874 0 873 875 0 874 876 0 875 877 0 876 878 0 877 879 0 878 872 0 879 873 0 880 881 0\n\t\t 882 883 0 884 885 0 886 887 0 880 882 0 881 883 0 882 884 0 883 885 0;\n\tsetAttr \".ed[1328:1493]\" 884 886 0 885 887 0 886 880 0 887 881 0 888 889 0 890 891 0\n\t\t 892 893 0 894 895 0 888 890 0 889 891 0 890 892 0 891 893 0 892 894 0 893 895 0 894 888 0\n\t\t 895 889 0 896 897 0 898 899 0 900 901 0 902 903 0 896 898 0 897 899 0 898 900 0 899 901 0\n\t\t 900 902 0 901 903 0 902 896 0 903 897 0 904 905 0 906 907 0 908 909 0 910 911 0 904 906 0\n\t\t 905 907 0 906 908 0 907 909 0 908 910 0 909 911 0 910 904 0 911 905 0 912 913 0 914 915 0\n\t\t 916 917 0 918 919 0 912 914 0 913 915 0 914 916 0 915 917 0 916 918 0 917 919 0 918 912 0\n\t\t 919 913 0 920 921 0 922 923 0 924 925 0 926 927 0 920 922 0 921 923 0 922 924 0 923 925 0\n\t\t 924 926 0 925 927 0 926 920 0 927 921 0 928 929 0 930 931 0 932 933 0 934 935 0 928 930 0\n\t\t 929 931 0 930 932 0 931 933 0 932 934 0 933 935 0 934 928 0 935 929 0 936 937 0 938 939 0\n\t\t 940 941 0 942 943 0 936 938 0 937 939 0 938 940 0 939 941 0 940 942 0 941 943 0 942 936 0\n\t\t 943 937 0 944 945 0 946 947 0 948 949 0 950 951 0 944 946 0 945 947 0 946 948 0 947 949 0\n\t\t 948 950 0 949 951 0 950 944 0 951 945 0 952 953 0 954 955 0 956 957 0 958 959 0 952 954 0\n\t\t 953 955 0 954 956 0 955 957 0 956 958 0 957 959 0 958 952 0 959 953 0 960 961 0 962 963 0\n\t\t 964 965 0 966 967 0 960 962 0 961 963 0 962 964 0 963 965 0 964 966 0 965 967 0 966 960 0\n\t\t 967 961 0 968 969 0 970 971 0 972 973 0 974 975 0 968 970 0 969 971 0 970 972 0 971 973 0\n\t\t 972 974 0 973 975 0 974 968 0 975 969 0 976 977 0 978 979 0 980 981 0 982 983 0 976 978 0\n\t\t 977 979 0 978 980 0 979 981 0 980 982 0 981 983 0 982 976 0 983 977 0 984 985 0 986 987 0\n\t\t 988 989 0 990 991 0 984 986 0 985 987 0 986 988 0 987 989 0 988 990 0 989 991 0 990 984 0\n\t\t 991 985 0 992 993 0 994 995 0 996 997 0 998 999 0 992 994 0 993 995 0;\n\tsetAttr \".ed[1494:1659]\" 994 996 0 995 997 0 996 998 0 997 999 0 998 992 0 999 993 0\n\t\t 1000 1001 0 1002 1003 0 1004 1005 0 1006 1007 0 1000 1002 0 1001 1003 0 1002 1004 0\n\t\t 1003 1005 0 1004 1006 0 1005 1007 0 1006 1000 0 1007 1001 0 1008 1009 0 1010 1011 0\n\t\t 1012 1013 0 1014 1015 0 1008 1010 0 1009 1011 0 1010 1012 0 1011 1013 0 1012 1014 0\n\t\t 1013 1015 0 1014 1008 0 1015 1009 0 1016 1017 0 1018 1019 0 1020 1021 0 1022 1023 0\n\t\t 1016 1018 0 1017 1019 0 1018 1020 0 1019 1021 0 1020 1022 0 1021 1023 0 1022 1016 0\n\t\t 1023 1017 0 1024 1025 0 1026 1027 0 1028 1029 0 1030 1031 0 1024 1026 0 1025 1027 0\n\t\t 1026 1028 0 1027 1029 0 1028 1030 0 1029 1031 0 1030 1024 0 1031 1025 0 1032 1033 0\n\t\t 1034 1035 0 1036 1037 0 1038 1039 0 1032 1034 0 1033 1035 0 1034 1036 0 1035 1037 0\n\t\t 1036 1038 0 1037 1039 0 1038 1032 0 1039 1033 0 1040 1041 0 1042 1043 0 1044 1045 0\n\t\t 1046 1047 0 1040 1042 0 1041 1043 0 1042 1044 0 1043 1045 0 1044 1046 0 1045 1047 0\n\t\t 1046 1040 0 1047 1041 0 1048 1049 0 1050 1051 0 1052 1053 0 1054 1055 0 1048 1050 0\n\t\t 1049 1051 0 1050 1052 0 1051 1053 0 1052 1054 0 1053 1055 0 1054 1048 0 1055 1049 0\n\t\t 1056 1057 0 1058 1059 0 1060 1061 0 1062 1063 0 1056 1058 0 1057 1059 0 1058 1060 0\n\t\t 1059 1061 0 1060 1062 0 1061 1063 0 1062 1056 0 1063 1057 0 1064 1065 0 1066 1067 0\n\t\t 1068 1069 0 1070 1071 0 1064 1066 0 1065 1067 0 1066 1068 0 1067 1069 0 1068 1070 0\n\t\t 1069 1071 0 1070 1064 0 1071 1065 0 1072 1073 0 1074 1075 0 1076 1077 0 1078 1079 0\n\t\t 1072 1074 0 1073 1075 0 1074 1076 0 1075 1077 0 1076 1078 0 1077 1079 0 1078 1072 0\n\t\t 1079 1073 0 1080 1081 0 1082 1083 0 1084 1085 0 1086 1087 0 1080 1082 0 1081 1083 0\n\t\t 1082 1084 0 1083 1085 0 1084 1086 0 1085 1087 0 1086 1080 0 1087 1081 0 1088 1089 0\n\t\t 1090 1091 0 1092 1093 0 1094 1095 0 1088 1090 0 1089 1091 0 1090 1092 0 1091 1093 0\n\t\t 1092 1094 0 1093 1095 0 1094 1088 0 1095 1089 0 1096 1097 0 1098 1099 0 1100 1101 0\n\t\t 1102 1103 0 1096 1098 0 1097 1099 0 1098 1100 0 1099 1101 0 1100 1102 0 1101 1103 0\n\t\t 1102 1096 0 1103 1097 0 1104 1105 0 1106 1107 0 1108 1109 0 1110 1111 0;\n\tsetAttr \".ed[1660:1825]\" 1104 1106 0 1105 1107 0 1106 1108 0 1107 1109 0 1108 1110 0\n\t\t 1109 1111 0 1110 1104 0 1111 1105 0 1112 1113 0 1114 1115 0 1116 1117 0 1118 1119 0\n\t\t 1112 1114 0 1113 1115 0 1114 1116 0 1115 1117 0 1116 1118 0 1117 1119 0 1118 1112 0\n\t\t 1119 1113 0 1120 1121 0 1122 1123 0 1124 1125 0 1126 1127 0 1120 1122 0 1121 1123 0\n\t\t 1122 1124 0 1123 1125 0 1124 1126 0 1125 1127 0 1126 1120 0 1127 1121 0 1128 1129 0\n\t\t 1130 1131 0 1132 1133 0 1134 1135 0 1128 1130 0 1129 1131 0 1130 1132 0 1131 1133 0\n\t\t 1132 1134 0 1133 1135 0 1134 1128 0 1135 1129 0 1136 1137 0 1138 1139 0 1140 1141 0\n\t\t 1142 1143 0 1136 1138 0 1137 1139 0 1138 1140 0 1139 1141 0 1140 1142 0 1141 1143 0\n\t\t 1142 1136 0 1143 1137 0 1144 1145 0 1146 1147 0 1148 1149 0 1150 1151 0 1144 1146 0\n\t\t 1145 1147 0 1146 1148 0 1147 1149 0 1148 1150 0 1149 1151 0 1150 1144 0 1151 1145 0\n\t\t 1152 1153 0 1154 1155 0 1156 1157 0 1158 1159 0 1152 1154 0 1153 1155 0 1154 1156 0\n\t\t 1155 1157 0 1156 1158 0 1157 1159 0 1158 1152 0 1159 1153 0 1160 1161 0 1162 1163 0\n\t\t 1164 1165 0 1166 1167 0 1160 1162 0 1161 1163 0 1162 1164 0 1163 1165 0 1164 1166 0\n\t\t 1165 1167 0 1166 1160 0 1167 1161 0 1168 1169 0 1170 1171 0 1172 1173 0 1174 1175 0\n\t\t 1168 1170 0 1169 1171 0 1170 1172 0 1171 1173 0 1172 1174 0 1173 1175 0 1174 1168 0\n\t\t 1175 1169 0 1176 1177 0 1178 1179 0 1180 1181 0 1182 1183 0 1176 1178 0 1177 1179 0\n\t\t 1178 1180 0 1179 1181 0 1180 1182 0 1181 1183 0 1182 1176 0 1183 1177 0 1184 1185 0\n\t\t 1186 1187 0 1188 1189 0 1190 1191 0 1184 1186 0 1185 1187 0 1186 1188 0 1187 1189 0\n\t\t 1188 1190 0 1189 1191 0 1190 1184 0 1191 1185 0 1192 1193 0 1194 1195 0 1196 1197 0\n\t\t 1198 1199 0 1192 1194 0 1193 1195 0 1194 1196 0 1195 1197 0 1196 1198 0 1197 1199 0\n\t\t 1198 1192 0 1199 1193 0 1200 1201 0 1202 1203 0 1204 1205 0 1206 1207 0 1200 1202 0\n\t\t 1201 1203 0 1202 1204 0 1203 1205 0 1204 1206 0 1205 1207 0 1206 1200 0 1207 1201 0\n\t\t 1208 1209 0 1210 1211 0 1212 1213 0 1214 1215 0 1208 1210 0 1209 1211 0 1210 1212 0\n\t\t 1211 1213 0 1212 1214 0 1213 1215 0 1214 1208 0 1215 1209 0 1216 1217 0 1218 1219 0;\n\tsetAttr \".ed[1826:1991]\" 1220 1221 0 1222 1223 0 1216 1218 0 1217 1219 0 1218 1220 0\n\t\t 1219 1221 0 1220 1222 0 1221 1223 0 1222 1216 0 1223 1217 0 1224 1225 0 1226 1227 0\n\t\t 1228 1229 0 1230 1231 0 1224 1226 0 1225 1227 0 1226 1228 0 1227 1229 0 1228 1230 0\n\t\t 1229 1231 0 1230 1224 0 1231 1225 0 1232 1233 0 1234 1235 0 1236 1237 0 1238 1239 0\n\t\t 1232 1234 0 1233 1235 0 1234 1236 0 1235 1237 0 1236 1238 0 1237 1239 0 1238 1232 0\n\t\t 1239 1233 0 1240 1241 0 1242 1243 0 1244 1245 0 1246 1247 0 1240 1242 0 1241 1243 0\n\t\t 1242 1244 0 1243 1245 0 1244 1246 0 1245 1247 0 1246 1240 0 1247 1241 0 1248 1249 0\n\t\t 1250 1251 0 1252 1253 0 1254 1255 0 1248 1250 0 1249 1251 0 1250 1252 0 1251 1253 0\n\t\t 1252 1254 0 1253 1255 0 1254 1248 0 1255 1249 0 1256 1257 0 1258 1259 0 1260 1261 0\n\t\t 1262 1263 0 1256 1258 0 1257 1259 0 1258 1260 0 1259 1261 0 1260 1262 0 1261 1263 0\n\t\t 1262 1256 0 1263 1257 0 1264 1265 0 1266 1267 0 1268 1269 0 1270 1271 0 1264 1266 0\n\t\t 1265 1267 0 1266 1268 0 1267 1269 0 1268 1270 0 1269 1271 0 1270 1264 0 1271 1265 0\n\t\t 1272 1273 0 1274 1275 0 1276 1277 0 1278 1279 0 1272 1274 0 1273 1275 0 1274 1276 0\n\t\t 1275 1277 0 1276 1278 0 1277 1279 0 1278 1272 0 1279 1273 0 1280 1281 0 1282 1283 0\n\t\t 1284 1285 0 1286 1287 0 1280 1282 0 1281 1283 0 1282 1284 0 1283 1285 0 1284 1286 0\n\t\t 1285 1287 0 1286 1280 0 1287 1281 0 1288 1289 0 1290 1291 0 1292 1293 0 1294 1295 0\n\t\t 1288 1290 0 1289 1291 0 1290 1292 0 1291 1293 0 1292 1294 0 1293 1295 0 1294 1288 0\n\t\t 1295 1289 0 1296 1297 0 1298 1299 0 1300 1301 0 1302 1303 0 1296 1298 0 1297 1299 0\n\t\t 1298 1300 0 1299 1301 0 1300 1302 0 1301 1303 0 1302 1296 0 1303 1297 0 1304 1305 0\n\t\t 1306 1307 0 1308 1309 0 1310 1311 0 1304 1306 0 1305 1307 0 1306 1308 0 1307 1309 0\n\t\t 1308 1310 0 1309 1311 0 1310 1304 0 1311 1305 0 1312 1313 0 1314 1315 0 1316 1317 0\n\t\t 1318 1319 0 1312 1314 0 1313 1315 0 1314 1316 0 1315 1317 0 1316 1318 0 1317 1319 0\n\t\t 1318 1312 0 1319 1313 0 1320 1321 0 1322 1323 0 1324 1325 0 1326 1327 0 1320 1322 0\n\t\t 1321 1323 0 1322 1324 0 1323 1325 0 1324 1326 0 1325 1327 0 1326 1320 0 1327 1321 0;\n\tsetAttr \".ed[1992:2063]\" 1328 1329 0 1330 1331 0 1332 1333 0 1334 1335 0 1328 1330 0\n\t\t 1329 1331 0 1330 1332 0 1331 1333 0 1332 1334 0 1333 1335 0 1334 1328 0 1335 1329 0\n\t\t 1336 1337 0 1338 1339 0 1340 1341 0 1342 1343 0 1336 1338 0 1337 1339 0 1338 1340 0\n\t\t 1339 1341 0 1340 1342 0 1341 1343 0 1342 1336 0 1343 1337 0 1344 1345 0 1346 1347 0\n\t\t 1348 1349 0 1350 1351 0 1344 1346 0 1345 1347 0 1346 1348 0 1347 1349 0 1348 1350 0\n\t\t 1349 1351 0 1350 1344 0 1351 1345 0 1352 1353 0 1354 1355 0 1356 1357 0 1358 1359 0\n\t\t 1352 1354 0 1353 1355 0 1354 1356 0 1355 1357 0 1356 1358 0 1357 1359 0 1358 1352 0\n\t\t 1359 1353 0 1360 1361 0 1362 1363 0 1364 1365 0 1366 1367 0 1360 1362 0 1361 1363 0\n\t\t 1362 1364 0 1363 1365 0 1364 1366 0 1365 1367 0 1366 1360 0 1367 1361 0 1368 1369 0\n\t\t 1370 1371 0 1372 1373 0 1374 1375 0 1368 1370 0 1369 1371 0 1370 1372 0 1371 1373 0\n\t\t 1372 1374 0 1373 1375 0 1374 1368 0 1375 1369 0;\n\tsetAttr -s 1032 -ch 4128 \".fc\";\n\tsetAttr \".fc[0:499]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13\n\t\tf 4 12 17 -14 -17\n\t\tmu 0 4 14 15 16 17\n\t\tf 4 13 19 -15 -19\n\t\tmu 0 4 17 16 18 19\n\t\tf 4 14 21 -16 -21\n\t\tmu 0 4 19 18 20 21\n\t\tf 4 15 23 -13 -23\n\t\tmu 0 4 21 20 22 23\n\t\tf 4 -24 -22 -20 -18\n\t\tmu 0 4 15 24 25 16\n\t\tf 4 22 16 18 20\n\t\tmu 0 4 26 14 17 27\n\t\tf 4 24 29 -26 -29\n\t\tmu 0 4 28 29 30 31\n\t\tf 4 25 31 -27 -31\n\t\tmu 0 4 31 30 32 33\n\t\tf 4 26 33 -28 -33\n\t\tmu 0 4 33 32 34 35\n\t\tf 4 27 35 -25 -35\n\t\tmu 0 4 35 34 36 37\n\t\tf 4 -36 -34 -32 -30\n\t\tmu 0 4 29 38 39 30\n\t\tf 4 34 28 30 32\n\t\tmu 0 4 40 28 31 41\n\t\tf 4 36 41 -38 -41\n\t\tmu 0 4 42 43 44 45\n\t\tf 4 37 43 -39 -43\n\t\tmu 0 4 45 44 46 47\n\t\tf 4 38 45 -40 -45\n\t\tmu 0 4 47 46 48 49\n\t\tf 4 39 47 -37 -47\n\t\tmu 0 4 49 48 50 51\n\t\tf 4 -48 -46 -44 -42\n\t\tmu 0 4 43 52 53 44\n\t\tf 4 46 40 42 44\n\t\tmu 0 4 54 42 45 55\n\t\tf 4 48 53 -50 -53\n\t\tmu 0 4 56 57 58 59\n\t\tf 4 49 55 -51 -55\n\t\tmu 0 4 59 58 60 61\n\t\tf 4 50 57 -52 -57\n\t\tmu 0 4 61 60 62 63\n\t\tf 4 51 59 -49 -59\n\t\tmu 0 4 63 62 64 65\n\t\tf 4 -60 -58 -56 -54\n\t\tmu 0 4 57 66 67 58\n\t\tf 4 58 52 54 56\n\t\tmu 0 4 68 56 59 69\n\t\tf 4 60 65 -62 -65\n\t\tmu 0 4 70 71 72 73\n\t\tf 4 61 67 -63 -67\n\t\tmu 0 4 73 72 74 75\n\t\tf 4 62 69 -64 -69\n\t\tmu 0 4 75 74 76 77\n\t\tf 4 63 71 -61 -71\n\t\tmu 0 4 77 76 78 79\n\t\tf 4 -72 -70 -68 -66\n\t\tmu 0 4 71 80 81 72\n\t\tf 4 70 64 66 68\n\t\tmu 0 4 82 70 73 83\n\t\tf 4 72 77 -74 -77\n\t\tmu 0 4 84 85 86 87\n\t\tf 4 73 79 -75 -79\n\t\tmu 0 4 87 86 88 89\n\t\tf 4 74 81 -76 -81\n\t\tmu 0 4 89 88 90 91\n\t\tf 4 75 83 -73 -83\n\t\tmu 0 4 91 90 92 93\n\t\tf 4 -84 -82 -80 -78\n\t\tmu 0 4 85 94 95 86\n\t\tf 4 82 76 78 80\n\t\tmu 0 4 96 84 87 97\n\t\tf 4 84 89 -86 -89\n\t\tmu 0 4 98 99 100 101\n\t\tf 4 85 91 -87 -91\n\t\tmu 0 4 101 100 102 103\n\t\tf 4 86 93 -88 -93\n\t\tmu 0 4 103 102 104 105\n\t\tf 4 87 95 -85 -95\n\t\tmu 0 4 105 104 106 107\n\t\tf 4 -96 -94 -92 -90\n\t\tmu 0 4 99 108 109 100\n\t\tf 4 94 88 90 92\n\t\tmu 0 4 110 98 101 111\n\t\tf 4 96 101 -98 -101\n\t\tmu 0 4 112 113 114 115\n\t\tf 4 97 103 -99 -103\n\t\tmu 0 4 115 114 116 117\n\t\tf 4 98 105 -100 -105\n\t\tmu 0 4 117 116 118 119\n\t\tf 4 99 107 -97 -107\n\t\tmu 0 4 119 118 120 121\n\t\tf 4 -108 -106 -104 -102\n\t\tmu 0 4 113 122 123 114\n\t\tf 4 106 100 102 104\n\t\tmu 0 4 124 112 115 125\n\t\tf 4 108 113 -110 -113\n\t\tmu 0 4 126 127 128 129\n\t\tf 4 109 115 -111 -115\n\t\tmu 0 4 129 128 130 131\n\t\tf 4 110 117 -112 -117\n\t\tmu 0 4 131 130 132 133\n\t\tf 4 111 119 -109 -119\n\t\tmu 0 4 133 132 134 135\n\t\tf 4 -120 -118 -116 -114\n\t\tmu 0 4 127 136 137 128\n\t\tf 4 118 112 114 116\n\t\tmu 0 4 138 126 129 139\n\t\tf 4 120 125 -122 -125\n\t\tmu 0 4 140 141 142 143\n\t\tf 4 121 127 -123 -127\n\t\tmu 0 4 143 142 144 145\n\t\tf 4 122 129 -124 -129\n\t\tmu 0 4 145 144 146 147\n\t\tf 4 123 131 -121 -131\n\t\tmu 0 4 147 146 148 149\n\t\tf 4 -132 -130 -128 -126\n\t\tmu 0 4 141 150 151 142\n\t\tf 4 130 124 126 128\n\t\tmu 0 4 152 140 143 153\n\t\tf 4 132 137 -134 -137\n\t\tmu 0 4 154 155 156 157\n\t\tf 4 133 139 -135 -139\n\t\tmu 0 4 157 156 158 159\n\t\tf 4 134 141 -136 -141\n\t\tmu 0 4 159 158 160 161\n\t\tf 4 135 143 -133 -143\n\t\tmu 0 4 161 160 162 163\n\t\tf 4 -144 -142 -140 -138\n\t\tmu 0 4 155 164 165 156\n\t\tf 4 142 136 138 140\n\t\tmu 0 4 166 154 157 167\n\t\tf 4 144 149 -146 -149\n\t\tmu 0 4 168 169 170 171\n\t\tf 4 145 151 -147 -151\n\t\tmu 0 4 171 170 172 173\n\t\tf 4 146 153 -148 -153\n\t\tmu 0 4 173 172 174 175\n\t\tf 4 147 155 -145 -155\n\t\tmu 0 4 175 174 176 177\n\t\tf 4 -156 -154 -152 -150\n\t\tmu 0 4 169 178 179 170\n\t\tf 4 154 148 150 152\n\t\tmu 0 4 180 168 171 181\n\t\tf 4 156 161 -158 -161\n\t\tmu 0 4 182 183 184 185\n\t\tf 4 157 163 -159 -163\n\t\tmu 0 4 185 184 186 187\n\t\tf 4 158 165 -160 -165\n\t\tmu 0 4 187 186 188 189\n\t\tf 4 159 167 -157 -167\n\t\tmu 0 4 189 188 190 191\n\t\tf 4 -168 -166 -164 -162\n\t\tmu 0 4 183 192 193 184\n\t\tf 4 166 160 162 164\n\t\tmu 0 4 194 182 185 195\n\t\tf 4 168 173 -170 -173\n\t\tmu 0 4 196 197 198 199\n\t\tf 4 169 175 -171 -175\n\t\tmu 0 4 199 198 200 201\n\t\tf 4 170 177 -172 -177\n\t\tmu 0 4 201 200 202 203\n\t\tf 4 171 179 -169 -179\n\t\tmu 0 4 203 202 204 205\n\t\tf 4 -180 -178 -176 -174\n\t\tmu 0 4 197 206 207 198\n\t\tf 4 178 172 174 176\n\t\tmu 0 4 208 196 199 209\n\t\tf 4 180 185 -182 -185\n\t\tmu 0 4 210 211 212 213\n\t\tf 4 181 187 -183 -187\n\t\tmu 0 4 213 212 214 215\n\t\tf 4 182 189 -184 -189\n\t\tmu 0 4 215 214 216 217\n\t\tf 4 183 191 -181 -191\n\t\tmu 0 4 217 216 218 219\n\t\tf 4 -192 -190 -188 -186\n\t\tmu 0 4 211 220 221 212\n\t\tf 4 190 184 186 188\n\t\tmu 0 4 222 210 213 223\n\t\tf 4 192 197 -194 -197\n\t\tmu 0 4 224 225 226 227\n\t\tf 4 193 199 -195 -199\n\t\tmu 0 4 227 226 228 229\n\t\tf 4 194 201 -196 -201\n\t\tmu 0 4 229 228 230 231\n\t\tf 4 195 203 -193 -203\n\t\tmu 0 4 231 230 232 233\n\t\tf 4 -204 -202 -200 -198\n\t\tmu 0 4 225 234 235 226\n\t\tf 4 202 196 198 200\n\t\tmu 0 4 236 224 227 237\n\t\tf 4 204 209 -206 -209\n\t\tmu 0 4 238 239 240 241\n\t\tf 4 205 211 -207 -211\n\t\tmu 0 4 241 240 242 243\n\t\tf 4 206 213 -208 -213\n\t\tmu 0 4 243 242 244 245\n\t\tf 4 207 215 -205 -215\n\t\tmu 0 4 245 244 246 247\n\t\tf 4 -216 -214 -212 -210\n\t\tmu 0 4 239 248 249 240\n\t\tf 4 214 208 210 212\n\t\tmu 0 4 250 238 241 251\n\t\tf 4 216 221 -218 -221\n\t\tmu 0 4 252 253 254 255\n\t\tf 4 217 223 -219 -223\n\t\tmu 0 4 255 254 256 257\n\t\tf 4 218 225 -220 -225\n\t\tmu 0 4 257 256 258 259\n\t\tf 4 219 227 -217 -227\n\t\tmu 0 4 259 258 260 261\n\t\tf 4 -228 -226 -224 -222\n\t\tmu 0 4 253 262 263 254\n\t\tf 4 226 220 222 224\n\t\tmu 0 4 264 252 255 265\n\t\tf 4 228 233 -230 -233\n\t\tmu 0 4 266 267 268 269\n\t\tf 4 229 235 -231 -235\n\t\tmu 0 4 269 268 270 271\n\t\tf 4 230 237 -232 -237\n\t\tmu 0 4 271 270 272 273\n\t\tf 4 231 239 -229 -239\n\t\tmu 0 4 273 272 274 275\n\t\tf 4 -240 -238 -236 -234\n\t\tmu 0 4 267 276 277 268\n\t\tf 4 238 232 234 236\n\t\tmu 0 4 278 266 269 279\n\t\tf 4 240 245 -242 -245\n\t\tmu 0 4 280 281 282 283\n\t\tf 4 241 247 -243 -247\n\t\tmu 0 4 283 282 284 285\n\t\tf 4 242 249 -244 -249\n\t\tmu 0 4 285 284 286 287\n\t\tf 4 243 251 -241 -251\n\t\tmu 0 4 287 286 288 289\n\t\tf 4 -252 -250 -248 -246\n\t\tmu 0 4 281 290 291 282\n\t\tf 4 250 244 246 248\n\t\tmu 0 4 292 280 283 293\n\t\tf 4 252 257 -254 -257\n\t\tmu 0 4 294 295 296 297\n\t\tf 4 253 259 -255 -259\n\t\tmu 0 4 297 296 298 299\n\t\tf 4 254 261 -256 -261\n\t\tmu 0 4 299 298 300 301\n\t\tf 4 255 263 -253 -263\n\t\tmu 0 4 301 300 302 303\n\t\tf 4 -264 -262 -260 -258\n\t\tmu 0 4 295 304 305 296\n\t\tf 4 262 256 258 260\n\t\tmu 0 4 306 294 297 307\n\t\tf 4 264 269 -266 -269\n\t\tmu 0 4 308 309 310 311\n\t\tf 4 265 271 -267 -271\n\t\tmu 0 4 311 310 312 313\n\t\tf 4 266 273 -268 -273\n\t\tmu 0 4 313 312 314 315\n\t\tf 4 267 275 -265 -275\n\t\tmu 0 4 315 314 316 317\n\t\tf 4 -276 -274 -272 -270\n\t\tmu 0 4 309 318 319 310\n\t\tf 4 274 268 270 272\n\t\tmu 0 4 320 308 311 321\n\t\tf 4 276 281 -278 -281\n\t\tmu 0 4 322 323 324 325\n\t\tf 4 277 283 -279 -283\n\t\tmu 0 4 325 324 326 327\n\t\tf 4 278 285 -280 -285\n\t\tmu 0 4 327 326 328 329\n\t\tf 4 279 287 -277 -287\n\t\tmu 0 4 329 328 330 331\n\t\tf 4 -288 -286 -284 -282\n\t\tmu 0 4 323 332 333 324\n\t\tf 4 286 280 282 284\n\t\tmu 0 4 334 322 325 335\n\t\tf 4 288 293 -290 -293\n\t\tmu 0 4 336 337 338 339\n\t\tf 4 289 295 -291 -295\n\t\tmu 0 4 339 338 340 341\n\t\tf 4 290 297 -292 -297\n\t\tmu 0 4 341 340 342 343\n\t\tf 4 291 299 -289 -299\n\t\tmu 0 4 343 342 344 345\n\t\tf 4 -300 -298 -296 -294\n\t\tmu 0 4 337 346 347 338\n\t\tf 4 298 292 294 296\n\t\tmu 0 4 348 336 339 349\n\t\tf 4 300 305 -302 -305\n\t\tmu 0 4 350 351 352 353\n\t\tf 4 301 307 -303 -307\n\t\tmu 0 4 353 352 354 355\n\t\tf 4 302 309 -304 -309\n\t\tmu 0 4 355 354 356 357\n\t\tf 4 303 311 -301 -311\n\t\tmu 0 4 357 356 358 359\n\t\tf 4 -312 -310 -308 -306\n\t\tmu 0 4 351 360 361 352\n\t\tf 4 310 304 306 308\n\t\tmu 0 4 362 350 353 363\n\t\tf 4 312 317 -314 -317\n\t\tmu 0 4 364 365 366 367\n\t\tf 4 313 319 -315 -319\n\t\tmu 0 4 367 366 368 369\n\t\tf 4 314 321 -316 -321\n\t\tmu 0 4 369 368 370 371\n\t\tf 4 315 323 -313 -323\n\t\tmu 0 4 371 370 372 373\n\t\tf 4 -324 -322 -320 -318\n\t\tmu 0 4 365 374 375 366\n\t\tf 4 322 316 318 320\n\t\tmu 0 4 376 364 367 377\n\t\tf 4 324 329 -326 -329\n\t\tmu 0 4 378 379 380 381\n\t\tf 4 325 331 -327 -331\n\t\tmu 0 4 381 380 382 383\n\t\tf 4 326 333 -328 -333\n\t\tmu 0 4 383 382 384 385\n\t\tf 4 327 335 -325 -335\n\t\tmu 0 4 385 384 386 387\n\t\tf 4 -336 -334 -332 -330\n\t\tmu 0 4 379 388 389 380\n\t\tf 4 334 328 330 332\n\t\tmu 0 4 390 378 381 391\n\t\tf 4 336 341 -338 -341\n\t\tmu 0 4 392 393 394 395\n\t\tf 4 337 343 -339 -343\n\t\tmu 0 4 395 394 396 397\n\t\tf 4 338 345 -340 -345\n\t\tmu 0 4 397 396 398 399\n\t\tf 4 339 347 -337 -347\n\t\tmu 0 4 399 398 400 401\n\t\tf 4 -348 -346 -344 -342\n\t\tmu 0 4 393 402 403 394\n\t\tf 4 346 340 342 344\n\t\tmu 0 4 404 392 395 405\n\t\tf 4 348 353 -350 -353\n\t\tmu 0 4 406 407 408 409\n\t\tf 4 349 355 -351 -355\n\t\tmu 0 4 409 408 410 411\n\t\tf 4 350 357 -352 -357\n\t\tmu 0 4 411 410 412 413\n\t\tf 4 351 359 -349 -359\n\t\tmu 0 4 413 412 414 415\n\t\tf 4 -360 -358 -356 -354\n\t\tmu 0 4 407 416 417 408\n\t\tf 4 358 352 354 356\n\t\tmu 0 4 418 406 409 419\n\t\tf 4 360 365 -362 -365\n\t\tmu 0 4 420 421 422 423\n\t\tf 4 361 367 -363 -367\n\t\tmu 0 4 423 422 424 425\n\t\tf 4 362 369 -364 -369\n\t\tmu 0 4 425 424 426 427\n\t\tf 4 363 371 -361 -371\n\t\tmu 0 4 427 426 428 429\n\t\tf 4 -372 -370 -368 -366\n\t\tmu 0 4 421 430 431 422\n\t\tf 4 370 364 366 368\n\t\tmu 0 4 432 420 423 433\n\t\tf 4 372 377 -374 -377\n\t\tmu 0 4 434 435 436 437\n\t\tf 4 373 379 -375 -379\n\t\tmu 0 4 437 436 438 439\n\t\tf 4 374 381 -376 -381\n\t\tmu 0 4 439 438 440 441\n\t\tf 4 375 383 -373 -383\n\t\tmu 0 4 441 440 442 443\n\t\tf 4 -384 -382 -380 -378\n\t\tmu 0 4 435 444 445 436\n\t\tf 4 382 376 378 380\n\t\tmu 0 4 446 434 437 447\n\t\tf 4 384 389 -386 -389\n\t\tmu 0 4 448 449 450 451\n\t\tf 4 385 391 -387 -391\n\t\tmu 0 4 451 450 452 453\n\t\tf 4 386 393 -388 -393\n\t\tmu 0 4 453 452 454 455\n\t\tf 4 387 395 -385 -395\n\t\tmu 0 4 455 454 456 457\n\t\tf 4 -396 -394 -392 -390\n\t\tmu 0 4 449 458 459 450\n\t\tf 4 394 388 390 392\n\t\tmu 0 4 460 448 451 461\n\t\tf 4 396 401 -398 -401\n\t\tmu 0 4 462 463 464 465\n\t\tf 4 397 403 -399 -403\n\t\tmu 0 4 465 464 466 467\n\t\tf 4 398 405 -400 -405\n\t\tmu 0 4 467 466 468 469\n\t\tf 4 399 407 -397 -407\n\t\tmu 0 4 469 468 470 471\n\t\tf 4 -408 -406 -404 -402\n\t\tmu 0 4 463 472 473 464\n\t\tf 4 406 400 402 404\n\t\tmu 0 4 474 462 465 475\n\t\tf 4 408 413 -410 -413\n\t\tmu 0 4 476 477 478 479\n\t\tf 4 409 415 -411 -415\n\t\tmu 0 4 479 478 480 481\n\t\tf 4 410 417 -412 -417\n\t\tmu 0 4 481 480 482 483\n\t\tf 4 411 419 -409 -419\n\t\tmu 0 4 483 482 484 485\n\t\tf 4 -420 -418 -416 -414\n\t\tmu 0 4 477 486 487 478\n\t\tf 4 418 412 414 416\n\t\tmu 0 4 488 476 479 489\n\t\tf 4 420 425 -422 -425\n\t\tmu 0 4 490 491 492 493\n\t\tf 4 421 427 -423 -427\n\t\tmu 0 4 493 492 494 495\n\t\tf 4 422 429 -424 -429\n\t\tmu 0 4 495 494 496 497\n\t\tf 4 423 431 -421 -431\n\t\tmu 0 4 497 496 498 499\n\t\tf 4 -432 -430 -428 -426\n\t\tmu 0 4 491 500 501 492\n\t\tf 4 430 424 426 428\n\t\tmu 0 4 502 490 493 503\n\t\tf 4 432 437 -434 -437\n\t\tmu 0 4 504 505 506 507\n\t\tf 4 433 439 -435 -439\n\t\tmu 0 4 507 506 508 509\n\t\tf 4 434 441 -436 -441\n\t\tmu 0 4 509 508 510 511\n\t\tf 4 435 443 -433 -443\n\t\tmu 0 4 511 510 512 513\n\t\tf 4 -444 -442 -440 -438\n\t\tmu 0 4 505 514 515 506\n\t\tf 4 442 436 438 440\n\t\tmu 0 4 516 504 507 517\n\t\tf 4 444 449 -446 -449\n\t\tmu 0 4 518 519 520 521\n\t\tf 4 445 451 -447 -451\n\t\tmu 0 4 521 520 522 523\n\t\tf 4 446 453 -448 -453\n\t\tmu 0 4 523 522 524 525\n\t\tf 4 447 455 -445 -455\n\t\tmu 0 4 525 524 526 527\n\t\tf 4 -456 -454 -452 -450\n\t\tmu 0 4 519 528 529 520\n\t\tf 4 454 448 450 452\n\t\tmu 0 4 530 518 521 531\n\t\tf 4 456 461 -458 -461\n\t\tmu 0 4 532 533 534 535\n\t\tf 4 457 463 -459 -463\n\t\tmu 0 4 535 534 536 537\n\t\tf 4 458 465 -460 -465\n\t\tmu 0 4 537 536 538 539\n\t\tf 4 459 467 -457 -467\n\t\tmu 0 4 539 538 540 541\n\t\tf 4 -468 -466 -464 -462\n\t\tmu 0 4 533 542 543 534\n\t\tf 4 466 460 462 464\n\t\tmu 0 4 544 532 535 545\n\t\tf 4 468 473 -470 -473\n\t\tmu 0 4 546 547 548 549\n\t\tf 4 469 475 -471 -475\n\t\tmu 0 4 549 548 550 551\n\t\tf 4 470 477 -472 -477\n\t\tmu 0 4 551 550 552 553\n\t\tf 4 471 479 -469 -479\n\t\tmu 0 4 553 552 554 555\n\t\tf 4 -480 -478 -476 -474\n\t\tmu 0 4 547 556 557 548\n\t\tf 4 478 472 474 476\n\t\tmu 0 4 558 546 549 559\n\t\tf 4 480 485 -482 -485\n\t\tmu 0 4 560 561 562 563\n\t\tf 4 481 487 -483 -487\n\t\tmu 0 4 563 562 564 565\n\t\tf 4 482 489 -484 -489\n\t\tmu 0 4 565 564 566 567\n\t\tf 4 483 491 -481 -491\n\t\tmu 0 4 567 566 568 569\n\t\tf 4 -492 -490 -488 -486\n\t\tmu 0 4 561 570 571 562\n\t\tf 4 490 484 486 488\n\t\tmu 0 4 572 560 563 573\n\t\tf 4 492 497 -494 -497\n\t\tmu 0 4 574 575 576 577\n\t\tf 4 493 499 -495 -499\n\t\tmu 0 4 577 576 578 579\n\t\tf 4 494 501 -496 -501\n\t\tmu 0 4 579 578 580 581\n\t\tf 4 495 503 -493 -503\n\t\tmu 0 4 581 580 582 583\n\t\tf 4 -504 -502 -500 -498\n\t\tmu 0 4 575 584 585 576\n\t\tf 4 502 496 498 500\n\t\tmu 0 4 586 574 577 587\n\t\tf 4 504 509 -506 -509\n\t\tmu 0 4 588 589 590 591\n\t\tf 4 505 511 -507 -511\n\t\tmu 0 4 591 590 592 593\n\t\tf 4 506 513 -508 -513\n\t\tmu 0 4 593 592 594 595\n\t\tf 4 507 515 -505 -515\n\t\tmu 0 4 595 594 596 597\n\t\tf 4 -516 -514 -512 -510\n\t\tmu 0 4 589 598 599 590\n\t\tf 4 514 508 510 512\n\t\tmu 0 4 600 588 591 601\n\t\tf 4 516 521 -518 -521\n\t\tmu 0 4 602 603 604 605\n\t\tf 4 517 523 -519 -523\n\t\tmu 0 4 605 604 606 607\n\t\tf 4 518 525 -520 -525\n\t\tmu 0 4 607 606 608 609\n\t\tf 4 519 527 -517 -527\n\t\tmu 0 4 609 608 610 611\n\t\tf 4 -528 -526 -524 -522\n\t\tmu 0 4 603 612 613 604\n\t\tf 4 526 520 522 524\n\t\tmu 0 4 614 602 605 615\n\t\tf 4 528 533 -530 -533\n\t\tmu 0 4 616 617 618 619\n\t\tf 4 529 535 -531 -535\n\t\tmu 0 4 619 618 620 621\n\t\tf 4 530 537 -532 -537\n\t\tmu 0 4 621 620 622 623\n\t\tf 4 531 539 -529 -539\n\t\tmu 0 4 623 622 624 625\n\t\tf 4 -540 -538 -536 -534\n\t\tmu 0 4 617 626 627 618\n\t\tf 4 538 532 534 536\n\t\tmu 0 4 628 616 619 629\n\t\tf 4 540 545 -542 -545\n\t\tmu 0 4 630 631 632 633\n\t\tf 4 541 547 -543 -547\n\t\tmu 0 4 633 632 634 635\n\t\tf 4 542 549 -544 -549\n\t\tmu 0 4 635 634 636 637\n\t\tf 4 543 551 -541 -551\n\t\tmu 0 4 637 636 638 639\n\t\tf 4 -552 -550 -548 -546\n\t\tmu 0 4 631 640 641 632\n\t\tf 4 550 544 546 548\n\t\tmu 0 4 642 630 633 643\n\t\tf 4 552 557 -554 -557\n\t\tmu 0 4 644 645 646 647\n\t\tf 4 553 559 -555 -559\n\t\tmu 0 4 647 646 648 649\n\t\tf 4 554 561 -556 -561\n\t\tmu 0 4 649 648 650 651\n\t\tf 4 555 563 -553 -563\n\t\tmu 0 4 651 650 652 653\n\t\tf 4 -564 -562 -560 -558\n\t\tmu 0 4 645 654 655 646\n\t\tf 4 562 556 558 560\n\t\tmu 0 4 656 644 647 657\n\t\tf 4 564 569 -566 -569\n\t\tmu 0 4 658 659 660 661\n\t\tf 4 565 571 -567 -571\n\t\tmu 0 4 661 660 662 663\n\t\tf 4 566 573 -568 -573\n\t\tmu 0 4 663 662 664 665\n\t\tf 4 567 575 -565 -575\n\t\tmu 0 4 665 664 666 667\n\t\tf 4 -576 -574 -572 -570\n\t\tmu 0 4 659 668 669 660\n\t\tf 4 574 568 570 572\n\t\tmu 0 4 670 658 661 671\n\t\tf 4 576 581 -578 -581\n\t\tmu 0 4 672 673 674 675\n\t\tf 4 577 583 -579 -583\n\t\tmu 0 4 675 674 676 677\n\t\tf 4 578 585 -580 -585\n\t\tmu 0 4 677 676 678 679\n\t\tf 4 579 587 -577 -587\n\t\tmu 0 4 679 678 680 681\n\t\tf 4 -588 -586 -584 -582\n\t\tmu 0 4 673 682 683 674\n\t\tf 4 586 580 582 584\n\t\tmu 0 4 684 672 675 685\n\t\tf 4 588 593 -590 -593\n\t\tmu 0 4 686 687 688 689\n\t\tf 4 589 595 -591 -595\n\t\tmu 0 4 689 688 690 691\n\t\tf 4 590 597 -592 -597\n\t\tmu 0 4 691 690 692 693\n\t\tf 4 591 599 -589 -599\n\t\tmu 0 4 693 692 694 695\n\t\tf 4 -600 -598 -596 -594\n\t\tmu 0 4 687 696 697 688\n\t\tf 4 598 592 594 596\n\t\tmu 0 4 698 686 689 699\n\t\tf 4 600 605 -602 -605\n\t\tmu 0 4 700 701 702 703\n\t\tf 4 601 607 -603 -607\n\t\tmu 0 4 703 702 704 705\n\t\tf 4 602 609 -604 -609\n\t\tmu 0 4 705 704 706 707\n\t\tf 4 603 611 -601 -611\n\t\tmu 0 4 707 706 708 709\n\t\tf 4 -612 -610 -608 -606\n\t\tmu 0 4 701 710 711 702\n\t\tf 4 610 604 606 608\n\t\tmu 0 4 712 700 703 713\n\t\tf 4 612 617 -614 -617\n\t\tmu 0 4 714 715 716 717\n\t\tf 4 613 619 -615 -619\n\t\tmu 0 4 717 716 718 719\n\t\tf 4 614 621 -616 -621\n\t\tmu 0 4 719 718 720 721\n\t\tf 4 615 623 -613 -623\n\t\tmu 0 4 721 720 722 723\n\t\tf 4 -624 -622 -620 -618\n\t\tmu 0 4 715 724 725 716\n\t\tf 4 622 616 618 620\n\t\tmu 0 4 726 714 717 727\n\t\tf 4 624 629 -626 -629\n\t\tmu 0 4 728 729 730 731\n\t\tf 4 625 631 -627 -631\n\t\tmu 0 4 731 730 732 733\n\t\tf 4 626 633 -628 -633\n\t\tmu 0 4 733 732 734 735\n\t\tf 4 627 635 -625 -635\n\t\tmu 0 4 735 734 736 737\n\t\tf 4 -636 -634 -632 -630\n\t\tmu 0 4 729 738 739 730\n\t\tf 4 634 628 630 632\n\t\tmu 0 4 740 728 731 741\n\t\tf 4 636 641 -638 -641\n\t\tmu 0 4 742 743 744 745\n\t\tf 4 637 643 -639 -643\n\t\tmu 0 4 745 744 746 747\n\t\tf 4 638 645 -640 -645\n\t\tmu 0 4 747 746 748 749\n\t\tf 4 639 647 -637 -647\n\t\tmu 0 4 749 748 750 751\n\t\tf 4 -648 -646 -644 -642\n\t\tmu 0 4 743 752 753 744\n\t\tf 4 646 640 642 644\n\t\tmu 0 4 754 742 745 755\n\t\tf 4 648 653 -650 -653\n\t\tmu 0 4 756 757 758 759\n\t\tf 4 649 655 -651 -655\n\t\tmu 0 4 759 758 760 761\n\t\tf 4 650 657 -652 -657\n\t\tmu 0 4 761 760 762 763\n\t\tf 4 651 659 -649 -659\n\t\tmu 0 4 763 762 764 765\n\t\tf 4 -660 -658 -656 -654\n\t\tmu 0 4 757 766 767 758\n\t\tf 4 658 652 654 656\n\t\tmu 0 4 768 756 759 769\n\t\tf 4 660 665 -662 -665\n\t\tmu 0 4 770 771 772 773\n\t\tf 4 661 667 -663 -667\n\t\tmu 0 4 773 772 774 775\n\t\tf 4 662 669 -664 -669\n\t\tmu 0 4 775 774 776 777\n\t\tf 4 663 671 -661 -671\n\t\tmu 0 4 777 776 778 779\n\t\tf 4 -672 -670 -668 -666\n\t\tmu 0 4 771 780 781 772\n\t\tf 4 670 664 666 668\n\t\tmu 0 4 782 770 773 783\n\t\tf 4 672 677 -674 -677\n\t\tmu 0 4 784 785 786 787\n\t\tf 4 673 679 -675 -679\n\t\tmu 0 4 787 786 788 789\n\t\tf 4 674 681 -676 -681\n\t\tmu 0 4 789 788 790 791\n\t\tf 4 675 683 -673 -683\n\t\tmu 0 4 791 790 792 793\n\t\tf 4 -684 -682 -680 -678\n\t\tmu 0 4 785 794 795 786\n\t\tf 4 682 676 678 680\n\t\tmu 0 4 796 784 787 797\n\t\tf 4 684 689 -686 -689\n\t\tmu 0 4 798 799 800 801\n\t\tf 4 685 691 -687 -691\n\t\tmu 0 4 801 800 802 803\n\t\tf 4 686 693 -688 -693\n\t\tmu 0 4 803 802 804 805\n\t\tf 4 687 695 -685 -695\n\t\tmu 0 4 805 804 806 807\n\t\tf 4 -696 -694 -692 -690\n\t\tmu 0 4 799 808 809 800\n\t\tf 4 694 688 690 692\n\t\tmu 0 4 810 798 801 811\n\t\tf 4 696 701 -698 -701\n\t\tmu 0 4 812 813 814 815\n\t\tf 4 697 703 -699 -703\n\t\tmu 0 4 815 814 816 817\n\t\tf 4 698 705 -700 -705\n\t\tmu 0 4 817 816 818 819\n\t\tf 4 699 707 -697 -707\n\t\tmu 0 4 819 818 820 821\n\t\tf 4 -708 -706 -704 -702\n\t\tmu 0 4 813 822 823 814\n\t\tf 4 706 700 702 704\n\t\tmu 0 4 824 812 815 825\n\t\tf 4 708 713 -710 -713\n\t\tmu 0 4 826 827 828 829\n\t\tf 4 709 715 -711 -715\n\t\tmu 0 4 829 828 830 831\n\t\tf 4 710 717 -712 -717\n\t\tmu 0 4 831 830 832 833\n\t\tf 4 711 719 -709 -719\n\t\tmu 0 4 833 832 834 835\n\t\tf 4 -720 -718 -716 -714\n\t\tmu 0 4 827 836 837 828\n\t\tf 4 718 712 714 716\n\t\tmu 0 4 838 826 829 839\n\t\tf 4 720 725 -722 -725\n\t\tmu 0 4 840 841 842 843\n\t\tf 4 721 727 -723 -727\n\t\tmu 0 4 843 842 844 845\n\t\tf 4 722 729 -724 -729\n\t\tmu 0 4 845 844 846 847\n\t\tf 4 723 731 -721 -731\n\t\tmu 0 4 847 846 848 849\n\t\tf 4 -732 -730 -728 -726\n\t\tmu 0 4 841 850 851 842\n\t\tf 4 730 724 726 728\n\t\tmu 0 4 852 840 843 853\n\t\tf 4 732 737 -734 -737\n\t\tmu 0 4 854 855 856 857\n\t\tf 4 733 739 -735 -739\n\t\tmu 0 4 857 856 858 859\n\t\tf 4 734 741 -736 -741\n\t\tmu 0 4 859 858 860 861\n\t\tf 4 735 743 -733 -743\n\t\tmu 0 4 861 860 862 863\n\t\tf 4 -744 -742 -740 -738\n\t\tmu 0 4 855 864 865 856\n\t\tf 4 742 736 738 740\n\t\tmu 0 4 866 854 857 867\n\t\tf 4 744 749 -746 -749\n\t\tmu 0 4 868 869 870 871\n\t\tf 4 745 751 -747 -751\n\t\tmu 0 4 871 870 872 873\n\t\tf 4 746 753 -748 -753\n\t\tmu 0 4 873 872 874 875\n\t\tf 4 747 755 -745 -755\n\t\tmu 0 4 875 874 876 877\n\t\tf 4 -756 -754 -752 -750\n\t\tmu 0 4 869 878 879 870\n\t\tf 4 754 748 750 752\n\t\tmu 0 4 880 868 871 881\n\t\tf 4 756 761 -758 -761\n\t\tmu 0 4 882 883 884 885\n\t\tf 4 757 763 -759 -763\n\t\tmu 0 4 885 884 886 887\n\t\tf 4 758 765 -760 -765\n\t\tmu 0 4 887 886 888 889\n\t\tf 4 759 767 -757 -767\n\t\tmu 0 4 889 888 890 891\n\t\tf 4 -768 -766 -764 -762\n\t\tmu 0 4 883 892 893 884\n\t\tf 4 766 760 762 764\n\t\tmu 0 4 894 882 885 895\n\t\tf 4 768 773 -770 -773\n\t\tmu 0 4 896 897 898 899\n\t\tf 4 769 775 -771 -775\n\t\tmu 0 4 899 898 900 901\n\t\tf 4 770 777 -772 -777\n\t\tmu 0 4 901 900 902 903\n\t\tf 4 771 779 -769 -779\n\t\tmu 0 4 903 902 904 905\n\t\tf 4 -780 -778 -776 -774\n\t\tmu 0 4 897 906 907 898\n\t\tf 4 778 772 774 776\n\t\tmu 0 4 908 896 899 909\n\t\tf 4 780 785 -782 -785\n\t\tmu 0 4 910 911 912 913\n\t\tf 4 781 787 -783 -787\n\t\tmu 0 4 913 912 914 915\n\t\tf 4 782 789 -784 -789\n\t\tmu 0 4 915 914 916 917\n\t\tf 4 783 791 -781 -791\n\t\tmu 0 4 917 916 918 919\n\t\tf 4 -792 -790 -788 -786\n\t\tmu 0 4 911 920 921 912\n\t\tf 4 790 784 786 788\n\t\tmu 0 4 922 910 913 923\n\t\tf 4 792 797 -794 -797\n\t\tmu 0 4 924 925 926 927\n\t\tf 4 793 799 -795 -799\n\t\tmu 0 4 927 926 928 929\n\t\tf 4 794 801 -796 -801\n\t\tmu 0 4 929 928 930 931\n\t\tf 4 795 803 -793 -803\n\t\tmu 0 4 931 930 932 933\n\t\tf 4 -804 -802 -800 -798\n\t\tmu 0 4 925 934 935 926\n\t\tf 4 802 796 798 800\n\t\tmu 0 4 936 924 927 937\n\t\tf 4 804 809 -806 -809\n\t\tmu 0 4 938 939 940 941\n\t\tf 4 805 811 -807 -811\n\t\tmu 0 4 941 940 942 943\n\t\tf 4 806 813 -808 -813\n\t\tmu 0 4 943 942 944 945\n\t\tf 4 807 815 -805 -815\n\t\tmu 0 4 945 944 946 947\n\t\tf 4 -816 -814 -812 -810\n\t\tmu 0 4 939 948 949 940\n\t\tf 4 814 808 810 812\n\t\tmu 0 4 950 938 941 951\n\t\tf 4 816 821 -818 -821\n\t\tmu 0 4 952 953 954 955\n\t\tf 4 817 823 -819 -823\n\t\tmu 0 4 955 954 956 957\n\t\tf 4 818 825 -820 -825\n\t\tmu 0 4 957 956 958 959\n\t\tf 4 819 827 -817 -827\n\t\tmu 0 4 959 958 960 961\n\t\tf 4 -828 -826 -824 -822\n\t\tmu 0 4 953 962 963 954\n\t\tf 4 826 820 822 824\n\t\tmu 0 4 964 952 955 965\n\t\tf 4 828 833 -830 -833\n\t\tmu 0 4 966 967 968 969\n\t\tf 4 829 835 -831 -835\n\t\tmu 0 4 969 968 970 971\n\t\tf 4 830 837 -832 -837\n\t\tmu 0 4 971 970 972 973\n\t\tf 4 831 839 -829 -839\n\t\tmu 0 4 973 972 974 975\n\t\tf 4 -840 -838 -836 -834\n\t\tmu 0 4 967 976 977 968\n\t\tf 4 838 832 834 836\n\t\tmu 0 4 978 966 969 979\n\t\tf 4 840 845 -842 -845\n\t\tmu 0 4 980 981 982 983\n\t\tf 4 841 847 -843 -847\n\t\tmu 0 4 983 982 984 985\n\t\tf 4 842 849 -844 -849\n\t\tmu 0 4 985 984 986 987\n\t\tf 4 843 851 -841 -851\n\t\tmu 0 4 987 986 988 989\n\t\tf 4 -852 -850 -848 -846\n\t\tmu 0 4 981 990 991 982\n\t\tf 4 850 844 846 848\n\t\tmu 0 4 992 980 983 993\n\t\tf 4 852 857 -854 -857\n\t\tmu 0 4 994 995 996 997\n\t\tf 4 853 859 -855 -859\n\t\tmu 0 4 997 996 998 999\n\t\tf 4 854 861 -856 -861\n\t\tmu 0 4 999 998 1000 1001\n\t\tf 4 855 863 -853 -863\n\t\tmu 0 4 1001 1000 1002 1003\n\t\tf 4 -864 -862 -860 -858\n\t\tmu 0 4 995 1004 1005 996\n\t\tf 4 862 856 858 860\n\t\tmu 0 4 1006 994 997 1007\n\t\tf 4 864 869 -866 -869\n\t\tmu 0 4 1008 1009 1010 1011\n\t\tf 4 865 871 -867 -871\n\t\tmu 0 4 1011 1010 1012 1013\n\t\tf 4 866 873 -868 -873\n\t\tmu 0 4 1013 1012 1014 1015\n\t\tf 4 867 875 -865 -875\n\t\tmu 0 4 1015 1014 1016 1017\n\t\tf 4 -876 -874 -872 -870\n\t\tmu 0 4 1009 1018 1019 1010\n\t\tf 4 874 868 870 872\n\t\tmu 0 4 1020 1008 1011 1021\n\t\tf 4 876 881 -878 -881\n\t\tmu 0 4 1022 1023 1024 1025\n\t\tf 4 877 883 -879 -883\n\t\tmu 0 4 1025 1024 1026 1027\n\t\tf 4 878 885 -880 -885\n\t\tmu 0 4 1027 1026 1028 1029\n\t\tf 4 879 887 -877 -887\n\t\tmu 0 4 1029 1028 1030 1031\n\t\tf 4 -888 -886 -884 -882\n\t\tmu 0 4 1023 1032 1033 1024\n\t\tf 4 886 880 882 884\n\t\tmu 0 4 1034 1022 1025 1035\n\t\tf 4 888 893 -890 -893\n\t\tmu 0 4 1036 1037 1038 1039\n\t\tf 4 889 895 -891 -895\n\t\tmu 0 4 1039 1038 1040 1041\n\t\tf 4 890 897 -892 -897\n\t\tmu 0 4 1041 1040 1042 1043\n\t\tf 4 891 899 -889 -899\n\t\tmu 0 4 1043 1042 1044 1045\n\t\tf 4 -900 -898 -896 -894\n\t\tmu 0 4 1037 1046 1047 1038\n\t\tf 4 898 892 894 896\n\t\tmu 0 4 1048 1036 1039 1049\n\t\tf 4 900 905 -902 -905\n\t\tmu 0 4 1050 1051 1052 1053\n\t\tf 4 901 907 -903 -907\n\t\tmu 0 4 1053 1052 1054 1055\n\t\tf 4 902 909 -904 -909\n\t\tmu 0 4 1055 1054 1056 1057\n\t\tf 4 903 911 -901 -911\n\t\tmu 0 4 1057 1056 1058 1059\n\t\tf 4 -912 -910 -908 -906\n\t\tmu 0 4 1051 1060 1061 1052\n\t\tf 4 910 904 906 908\n\t\tmu 0 4 1062 1050 1053 1063\n\t\tf 4 912 917 -914 -917\n\t\tmu 0 4 1064 1065 1066 1067\n\t\tf 4 913 919 -915 -919\n\t\tmu 0 4 1067 1066 1068 1069\n\t\tf 4 914 921 -916 -921\n\t\tmu 0 4 1069 1068 1070 1071\n\t\tf 4 915 923 -913 -923\n\t\tmu 0 4 1071 1070 1072 1073\n\t\tf 4 -924 -922 -920 -918\n\t\tmu 0 4 1065 1074 1075 1066\n\t\tf 4 922 916 918 920\n\t\tmu 0 4 1076 1064 1067 1077\n\t\tf 4 924 929 -926 -929\n\t\tmu 0 4 1078 1079 1080 1081\n\t\tf 4 925 931 -927 -931\n\t\tmu 0 4 1081 1080 1082 1083\n\t\tf 4 926 933 -928 -933\n\t\tmu 0 4 1083 1082 1084 1085\n\t\tf 4 927 935 -925 -935\n\t\tmu 0 4 1085 1084 1086 1087\n\t\tf 4 -936 -934 -932 -930\n\t\tmu 0 4 1079 1088 1089 1080\n\t\tf 4 934 928 930 932\n\t\tmu 0 4 1090 1078 1081 1091\n\t\tf 4 936 941 -938 -941\n\t\tmu 0 4 1092 1093 1094 1095\n\t\tf 4 937 943 -939 -943\n\t\tmu 0 4 1095 1094 1096 1097\n\t\tf 4 938 945 -940 -945\n\t\tmu 0 4 1097 1096 1098 1099\n\t\tf 4 939 947 -937 -947\n\t\tmu 0 4 1099 1098 1100 1101\n\t\tf 4 -948 -946 -944 -942\n\t\tmu 0 4 1093 1102 1103 1094\n\t\tf 4 946 940 942 944\n\t\tmu 0 4 1104 1092 1095 1105\n\t\tf 4 948 953 -950 -953\n\t\tmu 0 4 1106 1107 1108 1109\n\t\tf 4 949 955 -951 -955\n\t\tmu 0 4 1109 1108 1110 1111\n\t\tf 4 950 957 -952 -957\n\t\tmu 0 4 1111 1110 1112 1113\n\t\tf 4 951 959 -949 -959\n\t\tmu 0 4 1113 1112 1114 1115\n\t\tf 4 -960 -958 -956 -954\n\t\tmu 0 4 1107 1116 1117 1108\n\t\tf 4 958 952 954 956\n\t\tmu 0 4 1118 1106 1109 1119\n\t\tf 4 960 965 -962 -965\n\t\tmu 0 4 1120 1121 1122 1123\n\t\tf 4 961 967 -963 -967\n\t\tmu 0 4 1123 1122 1124 1125\n\t\tf 4 962 969 -964 -969\n\t\tmu 0 4 1125 1124 1126 1127\n\t\tf 4 963 971 -961 -971\n\t\tmu 0 4 1127 1126 1128 1129\n\t\tf 4 -972 -970 -968 -966\n\t\tmu 0 4 1121 1130 1131 1122\n\t\tf 4 970 964 966 968\n\t\tmu 0 4 1132 1120 1123 1133\n\t\tf 4 972 977 -974 -977\n\t\tmu 0 4 1134 1135 1136 1137\n\t\tf 4 973 979 -975 -979\n\t\tmu 0 4 1137 1136 1138 1139\n\t\tf 4 974 981 -976 -981\n\t\tmu 0 4 1139 1138 1140 1141\n\t\tf 4 975 983 -973 -983\n\t\tmu 0 4 1141 1140 1142 1143\n\t\tf 4 -984 -982 -980 -978\n\t\tmu 0 4 1135 1144 1145 1136\n\t\tf 4 982 976 978 980\n\t\tmu 0 4 1146 1134 1137 1147\n\t\tf 4 984 989 -986 -989\n\t\tmu 0 4 1148 1149 1150 1151\n\t\tf 4 985 991 -987 -991\n\t\tmu 0 4 1151 1150 1152 1153\n\t\tf 4 986 993 -988 -993\n\t\tmu 0 4 1153 1152 1154 1155\n\t\tf 4 987 995 -985 -995\n\t\tmu 0 4 1155 1154 1156 1157\n\t\tf 4 -996 -994 -992 -990\n\t\tmu 0 4 1149 1158 1159 1150\n\t\tf 4 994 988 990 992\n\t\tmu 0 4 1160 1148 1151 1161\n\t\tf 4 996 1001 -998 -1001\n\t\tmu 0 4 1162 1163 1164 1165\n\t\tf 4 997 1003 -999 -1003\n\t\tmu 0 4 1165 1164 1166 1167;\n\tsetAttr \".fc[500:999]\"\n\t\tf 4 998 1005 -1000 -1005\n\t\tmu 0 4 1167 1166 1168 1169\n\t\tf 4 999 1007 -997 -1007\n\t\tmu 0 4 1169 1168 1170 1171\n\t\tf 4 -1008 -1006 -1004 -1002\n\t\tmu 0 4 1163 1172 1173 1164\n\t\tf 4 1006 1000 1002 1004\n\t\tmu 0 4 1174 1162 1165 1175\n\t\tf 4 1008 1013 -1010 -1013\n\t\tmu 0 4 1176 1177 1178 1179\n\t\tf 4 1009 1015 -1011 -1015\n\t\tmu 0 4 1179 1178 1180 1181\n\t\tf 4 1010 1017 -1012 -1017\n\t\tmu 0 4 1181 1180 1182 1183\n\t\tf 4 1011 1019 -1009 -1019\n\t\tmu 0 4 1183 1182 1184 1185\n\t\tf 4 -1020 -1018 -1016 -1014\n\t\tmu 0 4 1177 1186 1187 1178\n\t\tf 4 1018 1012 1014 1016\n\t\tmu 0 4 1188 1176 1179 1189\n\t\tf 4 1020 1025 -1022 -1025\n\t\tmu 0 4 1190 1191 1192 1193\n\t\tf 4 1021 1027 -1023 -1027\n\t\tmu 0 4 1193 1192 1194 1195\n\t\tf 4 1022 1029 -1024 -1029\n\t\tmu 0 4 1195 1194 1196 1197\n\t\tf 4 1023 1031 -1021 -1031\n\t\tmu 0 4 1197 1196 1198 1199\n\t\tf 4 -1032 -1030 -1028 -1026\n\t\tmu 0 4 1191 1200 1201 1192\n\t\tf 4 1030 1024 1026 1028\n\t\tmu 0 4 1202 1190 1193 1203\n\t\tf 4 1032 1037 -1034 -1037\n\t\tmu 0 4 1204 1205 1206 1207\n\t\tf 4 1033 1039 -1035 -1039\n\t\tmu 0 4 1207 1206 1208 1209\n\t\tf 4 1034 1041 -1036 -1041\n\t\tmu 0 4 1209 1208 1210 1211\n\t\tf 4 1035 1043 -1033 -1043\n\t\tmu 0 4 1211 1210 1212 1213\n\t\tf 4 -1044 -1042 -1040 -1038\n\t\tmu 0 4 1205 1214 1215 1206\n\t\tf 4 1042 1036 1038 1040\n\t\tmu 0 4 1216 1204 1207 1217\n\t\tf 4 1044 1049 -1046 -1049\n\t\tmu 0 4 1218 1219 1220 1221\n\t\tf 4 1045 1051 -1047 -1051\n\t\tmu 0 4 1221 1220 1222 1223\n\t\tf 4 1046 1053 -1048 -1053\n\t\tmu 0 4 1223 1222 1224 1225\n\t\tf 4 1047 1055 -1045 -1055\n\t\tmu 0 4 1225 1224 1226 1227\n\t\tf 4 -1056 -1054 -1052 -1050\n\t\tmu 0 4 1219 1228 1229 1220\n\t\tf 4 1054 1048 1050 1052\n\t\tmu 0 4 1230 1218 1221 1231\n\t\tf 4 1056 1061 -1058 -1061\n\t\tmu 0 4 1232 1233 1234 1235\n\t\tf 4 1057 1063 -1059 -1063\n\t\tmu 0 4 1235 1234 1236 1237\n\t\tf 4 1058 1065 -1060 -1065\n\t\tmu 0 4 1237 1236 1238 1239\n\t\tf 4 1059 1067 -1057 -1067\n\t\tmu 0 4 1239 1238 1240 1241\n\t\tf 4 -1068 -1066 -1064 -1062\n\t\tmu 0 4 1233 1242 1243 1234\n\t\tf 4 1066 1060 1062 1064\n\t\tmu 0 4 1244 1232 1235 1245\n\t\tf 4 1068 1073 -1070 -1073\n\t\tmu 0 4 1246 1247 1248 1249\n\t\tf 4 1069 1075 -1071 -1075\n\t\tmu 0 4 1249 1248 1250 1251\n\t\tf 4 1070 1077 -1072 -1077\n\t\tmu 0 4 1251 1250 1252 1253\n\t\tf 4 1071 1079 -1069 -1079\n\t\tmu 0 4 1253 1252 1254 1255\n\t\tf 4 -1080 -1078 -1076 -1074\n\t\tmu 0 4 1247 1256 1257 1248\n\t\tf 4 1078 1072 1074 1076\n\t\tmu 0 4 1258 1246 1249 1259\n\t\tf 4 1080 1085 -1082 -1085\n\t\tmu 0 4 1260 1261 1262 1263\n\t\tf 4 1081 1087 -1083 -1087\n\t\tmu 0 4 1263 1262 1264 1265\n\t\tf 4 1082 1089 -1084 -1089\n\t\tmu 0 4 1265 1264 1266 1267\n\t\tf 4 1083 1091 -1081 -1091\n\t\tmu 0 4 1267 1266 1268 1269\n\t\tf 4 -1092 -1090 -1088 -1086\n\t\tmu 0 4 1261 1270 1271 1262\n\t\tf 4 1090 1084 1086 1088\n\t\tmu 0 4 1272 1260 1263 1273\n\t\tf 4 1092 1097 -1094 -1097\n\t\tmu 0 4 1274 1275 1276 1277\n\t\tf 4 1093 1099 -1095 -1099\n\t\tmu 0 4 1277 1276 1278 1279\n\t\tf 4 1094 1101 -1096 -1101\n\t\tmu 0 4 1279 1278 1280 1281\n\t\tf 4 1095 1103 -1093 -1103\n\t\tmu 0 4 1281 1280 1282 1283\n\t\tf 4 -1104 -1102 -1100 -1098\n\t\tmu 0 4 1275 1284 1285 1276\n\t\tf 4 1102 1096 1098 1100\n\t\tmu 0 4 1286 1274 1277 1287\n\t\tf 4 1104 1109 -1106 -1109\n\t\tmu 0 4 1288 1289 1290 1291\n\t\tf 4 1105 1111 -1107 -1111\n\t\tmu 0 4 1291 1290 1292 1293\n\t\tf 4 1106 1113 -1108 -1113\n\t\tmu 0 4 1293 1292 1294 1295\n\t\tf 4 1107 1115 -1105 -1115\n\t\tmu 0 4 1295 1294 1296 1297\n\t\tf 4 -1116 -1114 -1112 -1110\n\t\tmu 0 4 1289 1298 1299 1290\n\t\tf 4 1114 1108 1110 1112\n\t\tmu 0 4 1300 1288 1291 1301\n\t\tf 4 1116 1121 -1118 -1121\n\t\tmu 0 4 1302 1303 1304 1305\n\t\tf 4 1117 1123 -1119 -1123\n\t\tmu 0 4 1305 1304 1306 1307\n\t\tf 4 1118 1125 -1120 -1125\n\t\tmu 0 4 1307 1306 1308 1309\n\t\tf 4 1119 1127 -1117 -1127\n\t\tmu 0 4 1309 1308 1310 1311\n\t\tf 4 -1128 -1126 -1124 -1122\n\t\tmu 0 4 1303 1312 1313 1304\n\t\tf 4 1126 1120 1122 1124\n\t\tmu 0 4 1314 1302 1305 1315\n\t\tf 4 1128 1133 -1130 -1133\n\t\tmu 0 4 1316 1317 1318 1319\n\t\tf 4 1129 1135 -1131 -1135\n\t\tmu 0 4 1319 1318 1320 1321\n\t\tf 4 1130 1137 -1132 -1137\n\t\tmu 0 4 1321 1320 1322 1323\n\t\tf 4 1131 1139 -1129 -1139\n\t\tmu 0 4 1323 1322 1324 1325\n\t\tf 4 -1140 -1138 -1136 -1134\n\t\tmu 0 4 1317 1326 1327 1318\n\t\tf 4 1138 1132 1134 1136\n\t\tmu 0 4 1328 1316 1319 1329\n\t\tf 4 1140 1145 -1142 -1145\n\t\tmu 0 4 1330 1331 1332 1333\n\t\tf 4 1141 1147 -1143 -1147\n\t\tmu 0 4 1333 1332 1334 1335\n\t\tf 4 1142 1149 -1144 -1149\n\t\tmu 0 4 1335 1334 1336 1337\n\t\tf 4 1143 1151 -1141 -1151\n\t\tmu 0 4 1337 1336 1338 1339\n\t\tf 4 -1152 -1150 -1148 -1146\n\t\tmu 0 4 1331 1340 1341 1332\n\t\tf 4 1150 1144 1146 1148\n\t\tmu 0 4 1342 1330 1333 1343\n\t\tf 4 1152 1157 -1154 -1157\n\t\tmu 0 4 1344 1345 1346 1347\n\t\tf 4 1153 1159 -1155 -1159\n\t\tmu 0 4 1347 1346 1348 1349\n\t\tf 4 1154 1161 -1156 -1161\n\t\tmu 0 4 1349 1348 1350 1351\n\t\tf 4 1155 1163 -1153 -1163\n\t\tmu 0 4 1351 1350 1352 1353\n\t\tf 4 -1164 -1162 -1160 -1158\n\t\tmu 0 4 1345 1354 1355 1346\n\t\tf 4 1162 1156 1158 1160\n\t\tmu 0 4 1356 1344 1347 1357\n\t\tf 4 1164 1169 -1166 -1169\n\t\tmu 0 4 1358 1359 1360 1361\n\t\tf 4 1165 1171 -1167 -1171\n\t\tmu 0 4 1361 1360 1362 1363\n\t\tf 4 1166 1173 -1168 -1173\n\t\tmu 0 4 1363 1362 1364 1365\n\t\tf 4 1167 1175 -1165 -1175\n\t\tmu 0 4 1365 1364 1366 1367\n\t\tf 4 -1176 -1174 -1172 -1170\n\t\tmu 0 4 1359 1368 1369 1360\n\t\tf 4 1174 1168 1170 1172\n\t\tmu 0 4 1370 1358 1361 1371\n\t\tf 4 1176 1181 -1178 -1181\n\t\tmu 0 4 1372 1373 1374 1375\n\t\tf 4 1177 1183 -1179 -1183\n\t\tmu 0 4 1375 1374 1376 1377\n\t\tf 4 1178 1185 -1180 -1185\n\t\tmu 0 4 1377 1376 1378 1379\n\t\tf 4 1179 1187 -1177 -1187\n\t\tmu 0 4 1379 1378 1380 1381\n\t\tf 4 -1188 -1186 -1184 -1182\n\t\tmu 0 4 1373 1382 1383 1374\n\t\tf 4 1186 1180 1182 1184\n\t\tmu 0 4 1384 1372 1375 1385\n\t\tf 4 1188 1193 -1190 -1193\n\t\tmu 0 4 1386 1387 1388 1389\n\t\tf 4 1189 1195 -1191 -1195\n\t\tmu 0 4 1389 1388 1390 1391\n\t\tf 4 1190 1197 -1192 -1197\n\t\tmu 0 4 1391 1390 1392 1393\n\t\tf 4 1191 1199 -1189 -1199\n\t\tmu 0 4 1393 1392 1394 1395\n\t\tf 4 -1200 -1198 -1196 -1194\n\t\tmu 0 4 1387 1396 1397 1388\n\t\tf 4 1198 1192 1194 1196\n\t\tmu 0 4 1398 1386 1389 1399\n\t\tf 4 1200 1205 -1202 -1205\n\t\tmu 0 4 1400 1401 1402 1403\n\t\tf 4 1201 1207 -1203 -1207\n\t\tmu 0 4 1403 1402 1404 1405\n\t\tf 4 1202 1209 -1204 -1209\n\t\tmu 0 4 1405 1404 1406 1407\n\t\tf 4 1203 1211 -1201 -1211\n\t\tmu 0 4 1407 1406 1408 1409\n\t\tf 4 -1212 -1210 -1208 -1206\n\t\tmu 0 4 1401 1410 1411 1402\n\t\tf 4 1210 1204 1206 1208\n\t\tmu 0 4 1412 1400 1403 1413\n\t\tf 4 1212 1217 -1214 -1217\n\t\tmu 0 4 1414 1415 1416 1417\n\t\tf 4 1213 1219 -1215 -1219\n\t\tmu 0 4 1417 1416 1418 1419\n\t\tf 4 1214 1221 -1216 -1221\n\t\tmu 0 4 1419 1418 1420 1421\n\t\tf 4 1215 1223 -1213 -1223\n\t\tmu 0 4 1421 1420 1422 1423\n\t\tf 4 -1224 -1222 -1220 -1218\n\t\tmu 0 4 1415 1424 1425 1416\n\t\tf 4 1222 1216 1218 1220\n\t\tmu 0 4 1426 1414 1417 1427\n\t\tf 4 1224 1229 -1226 -1229\n\t\tmu 0 4 1428 1429 1430 1431\n\t\tf 4 1225 1231 -1227 -1231\n\t\tmu 0 4 1431 1430 1432 1433\n\t\tf 4 1226 1233 -1228 -1233\n\t\tmu 0 4 1433 1432 1434 1435\n\t\tf 4 1227 1235 -1225 -1235\n\t\tmu 0 4 1435 1434 1436 1437\n\t\tf 4 -1236 -1234 -1232 -1230\n\t\tmu 0 4 1429 1438 1439 1430\n\t\tf 4 1234 1228 1230 1232\n\t\tmu 0 4 1440 1428 1431 1441\n\t\tf 4 1236 1241 -1238 -1241\n\t\tmu 0 4 1442 1443 1444 1445\n\t\tf 4 1237 1243 -1239 -1243\n\t\tmu 0 4 1445 1444 1446 1447\n\t\tf 4 1238 1245 -1240 -1245\n\t\tmu 0 4 1447 1446 1448 1449\n\t\tf 4 1239 1247 -1237 -1247\n\t\tmu 0 4 1449 1448 1450 1451\n\t\tf 4 -1248 -1246 -1244 -1242\n\t\tmu 0 4 1443 1452 1453 1444\n\t\tf 4 1246 1240 1242 1244\n\t\tmu 0 4 1454 1442 1445 1455\n\t\tf 4 1248 1253 -1250 -1253\n\t\tmu 0 4 1456 1457 1458 1459\n\t\tf 4 1249 1255 -1251 -1255\n\t\tmu 0 4 1459 1458 1460 1461\n\t\tf 4 1250 1257 -1252 -1257\n\t\tmu 0 4 1461 1460 1462 1463\n\t\tf 4 1251 1259 -1249 -1259\n\t\tmu 0 4 1463 1462 1464 1465\n\t\tf 4 -1260 -1258 -1256 -1254\n\t\tmu 0 4 1457 1466 1467 1458\n\t\tf 4 1258 1252 1254 1256\n\t\tmu 0 4 1468 1456 1459 1469\n\t\tf 4 1260 1265 -1262 -1265\n\t\tmu 0 4 1470 1471 1472 1473\n\t\tf 4 1261 1267 -1263 -1267\n\t\tmu 0 4 1473 1472 1474 1475\n\t\tf 4 1262 1269 -1264 -1269\n\t\tmu 0 4 1475 1474 1476 1477\n\t\tf 4 1263 1271 -1261 -1271\n\t\tmu 0 4 1477 1476 1478 1479\n\t\tf 4 -1272 -1270 -1268 -1266\n\t\tmu 0 4 1471 1480 1481 1472\n\t\tf 4 1270 1264 1266 1268\n\t\tmu 0 4 1482 1470 1473 1483\n\t\tf 4 1272 1277 -1274 -1277\n\t\tmu 0 4 1484 1485 1486 1487\n\t\tf 4 1273 1279 -1275 -1279\n\t\tmu 0 4 1487 1486 1488 1489\n\t\tf 4 1274 1281 -1276 -1281\n\t\tmu 0 4 1489 1488 1490 1491\n\t\tf 4 1275 1283 -1273 -1283\n\t\tmu 0 4 1491 1490 1492 1493\n\t\tf 4 -1284 -1282 -1280 -1278\n\t\tmu 0 4 1485 1494 1495 1486\n\t\tf 4 1282 1276 1278 1280\n\t\tmu 0 4 1496 1484 1487 1497\n\t\tf 4 1284 1289 -1286 -1289\n\t\tmu 0 4 1498 1499 1500 1501\n\t\tf 4 1285 1291 -1287 -1291\n\t\tmu 0 4 1501 1500 1502 1503\n\t\tf 4 1286 1293 -1288 -1293\n\t\tmu 0 4 1503 1502 1504 1505\n\t\tf 4 1287 1295 -1285 -1295\n\t\tmu 0 4 1505 1504 1506 1507\n\t\tf 4 -1296 -1294 -1292 -1290\n\t\tmu 0 4 1499 1508 1509 1500\n\t\tf 4 1294 1288 1290 1292\n\t\tmu 0 4 1510 1498 1501 1511\n\t\tf 4 1296 1301 -1298 -1301\n\t\tmu 0 4 1512 1513 1514 1515\n\t\tf 4 1297 1303 -1299 -1303\n\t\tmu 0 4 1515 1514 1516 1517\n\t\tf 4 1298 1305 -1300 -1305\n\t\tmu 0 4 1517 1516 1518 1519\n\t\tf 4 1299 1307 -1297 -1307\n\t\tmu 0 4 1519 1518 1520 1521\n\t\tf 4 -1308 -1306 -1304 -1302\n\t\tmu 0 4 1513 1522 1523 1514\n\t\tf 4 1306 1300 1302 1304\n\t\tmu 0 4 1524 1512 1515 1525\n\t\tf 4 1308 1313 -1310 -1313\n\t\tmu 0 4 1526 1527 1528 1529\n\t\tf 4 1309 1315 -1311 -1315\n\t\tmu 0 4 1529 1528 1530 1531\n\t\tf 4 1310 1317 -1312 -1317\n\t\tmu 0 4 1531 1530 1532 1533\n\t\tf 4 1311 1319 -1309 -1319\n\t\tmu 0 4 1533 1532 1534 1535\n\t\tf 4 -1320 -1318 -1316 -1314\n\t\tmu 0 4 1527 1536 1537 1528\n\t\tf 4 1318 1312 1314 1316\n\t\tmu 0 4 1538 1526 1529 1539\n\t\tf 4 1320 1325 -1322 -1325\n\t\tmu 0 4 1540 1541 1542 1543\n\t\tf 4 1321 1327 -1323 -1327\n\t\tmu 0 4 1543 1542 1544 1545\n\t\tf 4 1322 1329 -1324 -1329\n\t\tmu 0 4 1545 1544 1546 1547\n\t\tf 4 1323 1331 -1321 -1331\n\t\tmu 0 4 1547 1546 1548 1549\n\t\tf 4 -1332 -1330 -1328 -1326\n\t\tmu 0 4 1541 1550 1551 1542\n\t\tf 4 1330 1324 1326 1328\n\t\tmu 0 4 1552 1540 1543 1553\n\t\tf 4 1332 1337 -1334 -1337\n\t\tmu 0 4 1554 1555 1556 1557\n\t\tf 4 1333 1339 -1335 -1339\n\t\tmu 0 4 1557 1556 1558 1559\n\t\tf 4 1334 1341 -1336 -1341\n\t\tmu 0 4 1559 1558 1560 1561\n\t\tf 4 1335 1343 -1333 -1343\n\t\tmu 0 4 1561 1560 1562 1563\n\t\tf 4 -1344 -1342 -1340 -1338\n\t\tmu 0 4 1555 1564 1565 1556\n\t\tf 4 1342 1336 1338 1340\n\t\tmu 0 4 1566 1554 1557 1567\n\t\tf 4 1344 1349 -1346 -1349\n\t\tmu 0 4 1568 1569 1570 1571\n\t\tf 4 1345 1351 -1347 -1351\n\t\tmu 0 4 1571 1570 1572 1573\n\t\tf 4 1346 1353 -1348 -1353\n\t\tmu 0 4 1573 1572 1574 1575\n\t\tf 4 1347 1355 -1345 -1355\n\t\tmu 0 4 1575 1574 1576 1577\n\t\tf 4 -1356 -1354 -1352 -1350\n\t\tmu 0 4 1569 1578 1579 1570\n\t\tf 4 1354 1348 1350 1352\n\t\tmu 0 4 1580 1568 1571 1581\n\t\tf 4 1356 1361 -1358 -1361\n\t\tmu 0 4 1582 1583 1584 1585\n\t\tf 4 1357 1363 -1359 -1363\n\t\tmu 0 4 1585 1584 1586 1587\n\t\tf 4 1358 1365 -1360 -1365\n\t\tmu 0 4 1587 1586 1588 1589\n\t\tf 4 1359 1367 -1357 -1367\n\t\tmu 0 4 1589 1588 1590 1591\n\t\tf 4 -1368 -1366 -1364 -1362\n\t\tmu 0 4 1583 1592 1593 1584\n\t\tf 4 1366 1360 1362 1364\n\t\tmu 0 4 1594 1582 1585 1595\n\t\tf 4 1368 1373 -1370 -1373\n\t\tmu 0 4 1596 1597 1598 1599\n\t\tf 4 1369 1375 -1371 -1375\n\t\tmu 0 4 1599 1598 1600 1601\n\t\tf 4 1370 1377 -1372 -1377\n\t\tmu 0 4 1601 1600 1602 1603\n\t\tf 4 1371 1379 -1369 -1379\n\t\tmu 0 4 1603 1602 1604 1605\n\t\tf 4 -1380 -1378 -1376 -1374\n\t\tmu 0 4 1597 1606 1607 1598\n\t\tf 4 1378 1372 1374 1376\n\t\tmu 0 4 1608 1596 1599 1609\n\t\tf 4 1380 1385 -1382 -1385\n\t\tmu 0 4 1610 1611 1612 1613\n\t\tf 4 1381 1387 -1383 -1387\n\t\tmu 0 4 1613 1612 1614 1615\n\t\tf 4 1382 1389 -1384 -1389\n\t\tmu 0 4 1615 1614 1616 1617\n\t\tf 4 1383 1391 -1381 -1391\n\t\tmu 0 4 1617 1616 1618 1619\n\t\tf 4 -1392 -1390 -1388 -1386\n\t\tmu 0 4 1611 1620 1621 1612\n\t\tf 4 1390 1384 1386 1388\n\t\tmu 0 4 1622 1610 1613 1623\n\t\tf 4 1392 1397 -1394 -1397\n\t\tmu 0 4 1624 1625 1626 1627\n\t\tf 4 1393 1399 -1395 -1399\n\t\tmu 0 4 1627 1626 1628 1629\n\t\tf 4 1394 1401 -1396 -1401\n\t\tmu 0 4 1629 1628 1630 1631\n\t\tf 4 1395 1403 -1393 -1403\n\t\tmu 0 4 1631 1630 1632 1633\n\t\tf 4 -1404 -1402 -1400 -1398\n\t\tmu 0 4 1625 1634 1635 1626\n\t\tf 4 1402 1396 1398 1400\n\t\tmu 0 4 1636 1624 1627 1637\n\t\tf 4 1404 1409 -1406 -1409\n\t\tmu 0 4 1638 1639 1640 1641\n\t\tf 4 1405 1411 -1407 -1411\n\t\tmu 0 4 1641 1640 1642 1643\n\t\tf 4 1406 1413 -1408 -1413\n\t\tmu 0 4 1643 1642 1644 1645\n\t\tf 4 1407 1415 -1405 -1415\n\t\tmu 0 4 1645 1644 1646 1647\n\t\tf 4 -1416 -1414 -1412 -1410\n\t\tmu 0 4 1639 1648 1649 1640\n\t\tf 4 1414 1408 1410 1412\n\t\tmu 0 4 1650 1638 1641 1651\n\t\tf 4 1416 1421 -1418 -1421\n\t\tmu 0 4 1652 1653 1654 1655\n\t\tf 4 1417 1423 -1419 -1423\n\t\tmu 0 4 1655 1654 1656 1657\n\t\tf 4 1418 1425 -1420 -1425\n\t\tmu 0 4 1657 1656 1658 1659\n\t\tf 4 1419 1427 -1417 -1427\n\t\tmu 0 4 1659 1658 1660 1661\n\t\tf 4 -1428 -1426 -1424 -1422\n\t\tmu 0 4 1653 1662 1663 1654\n\t\tf 4 1426 1420 1422 1424\n\t\tmu 0 4 1664 1652 1655 1665\n\t\tf 4 1428 1433 -1430 -1433\n\t\tmu 0 4 1666 1667 1668 1669\n\t\tf 4 1429 1435 -1431 -1435\n\t\tmu 0 4 1669 1668 1670 1671\n\t\tf 4 1430 1437 -1432 -1437\n\t\tmu 0 4 1671 1670 1672 1673\n\t\tf 4 1431 1439 -1429 -1439\n\t\tmu 0 4 1673 1672 1674 1675\n\t\tf 4 -1440 -1438 -1436 -1434\n\t\tmu 0 4 1667 1676 1677 1668\n\t\tf 4 1438 1432 1434 1436\n\t\tmu 0 4 1678 1666 1669 1679\n\t\tf 4 1440 1445 -1442 -1445\n\t\tmu 0 4 1680 1681 1682 1683\n\t\tf 4 1441 1447 -1443 -1447\n\t\tmu 0 4 1683 1682 1684 1685\n\t\tf 4 1442 1449 -1444 -1449\n\t\tmu 0 4 1685 1684 1686 1687\n\t\tf 4 1443 1451 -1441 -1451\n\t\tmu 0 4 1687 1686 1688 1689\n\t\tf 4 -1452 -1450 -1448 -1446\n\t\tmu 0 4 1681 1690 1691 1682\n\t\tf 4 1450 1444 1446 1448\n\t\tmu 0 4 1692 1680 1683 1693\n\t\tf 4 1452 1457 -1454 -1457\n\t\tmu 0 4 1694 1695 1696 1697\n\t\tf 4 1453 1459 -1455 -1459\n\t\tmu 0 4 1697 1696 1698 1699\n\t\tf 4 1454 1461 -1456 -1461\n\t\tmu 0 4 1699 1698 1700 1701\n\t\tf 4 1455 1463 -1453 -1463\n\t\tmu 0 4 1701 1700 1702 1703\n\t\tf 4 -1464 -1462 -1460 -1458\n\t\tmu 0 4 1695 1704 1705 1696\n\t\tf 4 1462 1456 1458 1460\n\t\tmu 0 4 1706 1694 1697 1707\n\t\tf 4 1464 1469 -1466 -1469\n\t\tmu 0 4 1708 1709 1710 1711\n\t\tf 4 1465 1471 -1467 -1471\n\t\tmu 0 4 1711 1710 1712 1713\n\t\tf 4 1466 1473 -1468 -1473\n\t\tmu 0 4 1713 1712 1714 1715\n\t\tf 4 1467 1475 -1465 -1475\n\t\tmu 0 4 1715 1714 1716 1717\n\t\tf 4 -1476 -1474 -1472 -1470\n\t\tmu 0 4 1709 1718 1719 1710\n\t\tf 4 1474 1468 1470 1472\n\t\tmu 0 4 1720 1708 1711 1721\n\t\tf 4 1476 1481 -1478 -1481\n\t\tmu 0 4 1722 1723 1724 1725\n\t\tf 4 1477 1483 -1479 -1483\n\t\tmu 0 4 1725 1724 1726 1727\n\t\tf 4 1478 1485 -1480 -1485\n\t\tmu 0 4 1727 1726 1728 1729\n\t\tf 4 1479 1487 -1477 -1487\n\t\tmu 0 4 1729 1728 1730 1731\n\t\tf 4 -1488 -1486 -1484 -1482\n\t\tmu 0 4 1723 1732 1733 1724\n\t\tf 4 1486 1480 1482 1484\n\t\tmu 0 4 1734 1722 1725 1735\n\t\tf 4 1488 1493 -1490 -1493\n\t\tmu 0 4 1736 1737 1738 1739\n\t\tf 4 1489 1495 -1491 -1495\n\t\tmu 0 4 1739 1738 1740 1741\n\t\tf 4 1490 1497 -1492 -1497\n\t\tmu 0 4 1741 1740 1742 1743\n\t\tf 4 1491 1499 -1489 -1499\n\t\tmu 0 4 1743 1742 1744 1745\n\t\tf 4 -1500 -1498 -1496 -1494\n\t\tmu 0 4 1737 1746 1747 1738\n\t\tf 4 1498 1492 1494 1496\n\t\tmu 0 4 1748 1736 1739 1749\n\t\tf 4 1500 1505 -1502 -1505\n\t\tmu 0 4 1750 1751 1752 1753\n\t\tf 4 1501 1507 -1503 -1507\n\t\tmu 0 4 1753 1752 1754 1755\n\t\tf 4 1502 1509 -1504 -1509\n\t\tmu 0 4 1755 1754 1756 1757\n\t\tf 4 1503 1511 -1501 -1511\n\t\tmu 0 4 1757 1756 1758 1759\n\t\tf 4 -1512 -1510 -1508 -1506\n\t\tmu 0 4 1751 1760 1761 1752\n\t\tf 4 1510 1504 1506 1508\n\t\tmu 0 4 1762 1750 1753 1763\n\t\tf 4 1512 1517 -1514 -1517\n\t\tmu 0 4 1764 1765 1766 1767\n\t\tf 4 1513 1519 -1515 -1519\n\t\tmu 0 4 1767 1766 1768 1769\n\t\tf 4 1514 1521 -1516 -1521\n\t\tmu 0 4 1769 1768 1770 1771\n\t\tf 4 1515 1523 -1513 -1523\n\t\tmu 0 4 1771 1770 1772 1773\n\t\tf 4 -1524 -1522 -1520 -1518\n\t\tmu 0 4 1765 1774 1775 1766\n\t\tf 4 1522 1516 1518 1520\n\t\tmu 0 4 1776 1764 1767 1777\n\t\tf 4 1524 1529 -1526 -1529\n\t\tmu 0 4 1778 1779 1780 1781\n\t\tf 4 1525 1531 -1527 -1531\n\t\tmu 0 4 1781 1780 1782 1783\n\t\tf 4 1526 1533 -1528 -1533\n\t\tmu 0 4 1783 1782 1784 1785\n\t\tf 4 1527 1535 -1525 -1535\n\t\tmu 0 4 1785 1784 1786 1787\n\t\tf 4 -1536 -1534 -1532 -1530\n\t\tmu 0 4 1779 1788 1789 1780\n\t\tf 4 1534 1528 1530 1532\n\t\tmu 0 4 1790 1778 1781 1791\n\t\tf 4 1536 1541 -1538 -1541\n\t\tmu 0 4 1792 1793 1794 1795\n\t\tf 4 1537 1543 -1539 -1543\n\t\tmu 0 4 1795 1794 1796 1797\n\t\tf 4 1538 1545 -1540 -1545\n\t\tmu 0 4 1797 1796 1798 1799\n\t\tf 4 1539 1547 -1537 -1547\n\t\tmu 0 4 1799 1798 1800 1801\n\t\tf 4 -1548 -1546 -1544 -1542\n\t\tmu 0 4 1793 1802 1803 1794\n\t\tf 4 1546 1540 1542 1544\n\t\tmu 0 4 1804 1792 1795 1805\n\t\tf 4 1548 1553 -1550 -1553\n\t\tmu 0 4 1806 1807 1808 1809\n\t\tf 4 1549 1555 -1551 -1555\n\t\tmu 0 4 1809 1808 1810 1811\n\t\tf 4 1550 1557 -1552 -1557\n\t\tmu 0 4 1811 1810 1812 1813\n\t\tf 4 1551 1559 -1549 -1559\n\t\tmu 0 4 1813 1812 1814 1815\n\t\tf 4 -1560 -1558 -1556 -1554\n\t\tmu 0 4 1807 1816 1817 1808\n\t\tf 4 1558 1552 1554 1556\n\t\tmu 0 4 1818 1806 1809 1819\n\t\tf 4 1560 1565 -1562 -1565\n\t\tmu 0 4 1820 1821 1822 1823\n\t\tf 4 1561 1567 -1563 -1567\n\t\tmu 0 4 1823 1822 1824 1825\n\t\tf 4 1562 1569 -1564 -1569\n\t\tmu 0 4 1825 1824 1826 1827\n\t\tf 4 1563 1571 -1561 -1571\n\t\tmu 0 4 1827 1826 1828 1829\n\t\tf 4 -1572 -1570 -1568 -1566\n\t\tmu 0 4 1821 1830 1831 1822\n\t\tf 4 1570 1564 1566 1568\n\t\tmu 0 4 1832 1820 1823 1833\n\t\tf 4 1572 1577 -1574 -1577\n\t\tmu 0 4 1834 1835 1836 1837\n\t\tf 4 1573 1579 -1575 -1579\n\t\tmu 0 4 1837 1836 1838 1839\n\t\tf 4 1574 1581 -1576 -1581\n\t\tmu 0 4 1839 1838 1840 1841\n\t\tf 4 1575 1583 -1573 -1583\n\t\tmu 0 4 1841 1840 1842 1843\n\t\tf 4 -1584 -1582 -1580 -1578\n\t\tmu 0 4 1835 1844 1845 1836\n\t\tf 4 1582 1576 1578 1580\n\t\tmu 0 4 1846 1834 1837 1847\n\t\tf 4 1584 1589 -1586 -1589\n\t\tmu 0 4 1848 1849 1850 1851\n\t\tf 4 1585 1591 -1587 -1591\n\t\tmu 0 4 1851 1850 1852 1853\n\t\tf 4 1586 1593 -1588 -1593\n\t\tmu 0 4 1853 1852 1854 1855\n\t\tf 4 1587 1595 -1585 -1595\n\t\tmu 0 4 1855 1854 1856 1857\n\t\tf 4 -1596 -1594 -1592 -1590\n\t\tmu 0 4 1849 1858 1859 1850\n\t\tf 4 1594 1588 1590 1592\n\t\tmu 0 4 1860 1848 1851 1861\n\t\tf 4 1596 1601 -1598 -1601\n\t\tmu 0 4 1862 1863 1864 1865\n\t\tf 4 1597 1603 -1599 -1603\n\t\tmu 0 4 1865 1864 1866 1867\n\t\tf 4 1598 1605 -1600 -1605\n\t\tmu 0 4 1867 1866 1868 1869\n\t\tf 4 1599 1607 -1597 -1607\n\t\tmu 0 4 1869 1868 1870 1871\n\t\tf 4 -1608 -1606 -1604 -1602\n\t\tmu 0 4 1863 1872 1873 1864\n\t\tf 4 1606 1600 1602 1604\n\t\tmu 0 4 1874 1862 1865 1875\n\t\tf 4 1608 1613 -1610 -1613\n\t\tmu 0 4 1876 1877 1878 1879\n\t\tf 4 1609 1615 -1611 -1615\n\t\tmu 0 4 1879 1878 1880 1881\n\t\tf 4 1610 1617 -1612 -1617\n\t\tmu 0 4 1881 1880 1882 1883\n\t\tf 4 1611 1619 -1609 -1619\n\t\tmu 0 4 1883 1882 1884 1885\n\t\tf 4 -1620 -1618 -1616 -1614\n\t\tmu 0 4 1877 1886 1887 1878\n\t\tf 4 1618 1612 1614 1616\n\t\tmu 0 4 1888 1876 1879 1889\n\t\tf 4 1620 1625 -1622 -1625\n\t\tmu 0 4 1890 1891 1892 1893\n\t\tf 4 1621 1627 -1623 -1627\n\t\tmu 0 4 1893 1892 1894 1895\n\t\tf 4 1622 1629 -1624 -1629\n\t\tmu 0 4 1895 1894 1896 1897\n\t\tf 4 1623 1631 -1621 -1631\n\t\tmu 0 4 1897 1896 1898 1899\n\t\tf 4 -1632 -1630 -1628 -1626\n\t\tmu 0 4 1891 1900 1901 1892\n\t\tf 4 1630 1624 1626 1628\n\t\tmu 0 4 1902 1890 1893 1903\n\t\tf 4 1632 1637 -1634 -1637\n\t\tmu 0 4 1904 1905 1906 1907\n\t\tf 4 1633 1639 -1635 -1639\n\t\tmu 0 4 1907 1906 1908 1909\n\t\tf 4 1634 1641 -1636 -1641\n\t\tmu 0 4 1909 1908 1910 1911\n\t\tf 4 1635 1643 -1633 -1643\n\t\tmu 0 4 1911 1910 1912 1913\n\t\tf 4 -1644 -1642 -1640 -1638\n\t\tmu 0 4 1905 1914 1915 1906\n\t\tf 4 1642 1636 1638 1640\n\t\tmu 0 4 1916 1904 1907 1917\n\t\tf 4 1644 1649 -1646 -1649\n\t\tmu 0 4 1918 1919 1920 1921\n\t\tf 4 1645 1651 -1647 -1651\n\t\tmu 0 4 1921 1920 1922 1923\n\t\tf 4 1646 1653 -1648 -1653\n\t\tmu 0 4 1923 1922 1924 1925\n\t\tf 4 1647 1655 -1645 -1655\n\t\tmu 0 4 1925 1924 1926 1927\n\t\tf 4 -1656 -1654 -1652 -1650\n\t\tmu 0 4 1919 1928 1929 1920\n\t\tf 4 1654 1648 1650 1652\n\t\tmu 0 4 1930 1918 1921 1931\n\t\tf 4 1656 1661 -1658 -1661\n\t\tmu 0 4 1932 1933 1934 1935\n\t\tf 4 1657 1663 -1659 -1663\n\t\tmu 0 4 1935 1934 1936 1937\n\t\tf 4 1658 1665 -1660 -1665\n\t\tmu 0 4 1937 1936 1938 1939\n\t\tf 4 1659 1667 -1657 -1667\n\t\tmu 0 4 1939 1938 1940 1941\n\t\tf 4 -1668 -1666 -1664 -1662\n\t\tmu 0 4 1933 1942 1943 1934\n\t\tf 4 1666 1660 1662 1664\n\t\tmu 0 4 1944 1932 1935 1945\n\t\tf 4 1668 1673 -1670 -1673\n\t\tmu 0 4 1946 1947 1948 1949\n\t\tf 4 1669 1675 -1671 -1675\n\t\tmu 0 4 1949 1948 1950 1951\n\t\tf 4 1670 1677 -1672 -1677\n\t\tmu 0 4 1951 1950 1952 1953\n\t\tf 4 1671 1679 -1669 -1679\n\t\tmu 0 4 1953 1952 1954 1955\n\t\tf 4 -1680 -1678 -1676 -1674\n\t\tmu 0 4 1947 1956 1957 1948\n\t\tf 4 1678 1672 1674 1676\n\t\tmu 0 4 1958 1946 1949 1959\n\t\tf 4 1680 1685 -1682 -1685\n\t\tmu 0 4 1960 1961 1962 1963\n\t\tf 4 1681 1687 -1683 -1687\n\t\tmu 0 4 1963 1962 1964 1965\n\t\tf 4 1682 1689 -1684 -1689\n\t\tmu 0 4 1965 1964 1966 1967\n\t\tf 4 1683 1691 -1681 -1691\n\t\tmu 0 4 1967 1966 1968 1969\n\t\tf 4 -1692 -1690 -1688 -1686\n\t\tmu 0 4 1961 1970 1971 1962\n\t\tf 4 1690 1684 1686 1688\n\t\tmu 0 4 1972 1960 1963 1973\n\t\tf 4 1692 1697 -1694 -1697\n\t\tmu 0 4 1974 1975 1976 1977\n\t\tf 4 1693 1699 -1695 -1699\n\t\tmu 0 4 1977 1976 1978 1979\n\t\tf 4 1694 1701 -1696 -1701\n\t\tmu 0 4 1979 1978 1980 1981\n\t\tf 4 1695 1703 -1693 -1703\n\t\tmu 0 4 1981 1980 1982 1983\n\t\tf 4 -1704 -1702 -1700 -1698\n\t\tmu 0 4 1975 1984 1985 1976\n\t\tf 4 1702 1696 1698 1700\n\t\tmu 0 4 1986 1974 1977 1987\n\t\tf 4 1704 1709 -1706 -1709\n\t\tmu 0 4 1988 1989 1990 1991\n\t\tf 4 1705 1711 -1707 -1711\n\t\tmu 0 4 1991 1990 1992 1993\n\t\tf 4 1706 1713 -1708 -1713\n\t\tmu 0 4 1993 1992 1994 1995\n\t\tf 4 1707 1715 -1705 -1715\n\t\tmu 0 4 1995 1994 1996 1997\n\t\tf 4 -1716 -1714 -1712 -1710\n\t\tmu 0 4 1989 1998 1999 1990\n\t\tf 4 1714 1708 1710 1712\n\t\tmu 0 4 2000 1988 1991 2001\n\t\tf 4 1716 1721 -1718 -1721\n\t\tmu 0 4 2002 2003 2004 2005\n\t\tf 4 1717 1723 -1719 -1723\n\t\tmu 0 4 2005 2004 2006 2007\n\t\tf 4 1718 1725 -1720 -1725\n\t\tmu 0 4 2007 2006 2008 2009\n\t\tf 4 1719 1727 -1717 -1727\n\t\tmu 0 4 2009 2008 2010 2011\n\t\tf 4 -1728 -1726 -1724 -1722\n\t\tmu 0 4 2003 2012 2013 2004\n\t\tf 4 1726 1720 1722 1724\n\t\tmu 0 4 2014 2002 2005 2015\n\t\tf 4 1728 1733 -1730 -1733\n\t\tmu 0 4 2016 2017 2018 2019\n\t\tf 4 1729 1735 -1731 -1735\n\t\tmu 0 4 2019 2018 2020 2021\n\t\tf 4 1730 1737 -1732 -1737\n\t\tmu 0 4 2021 2020 2022 2023\n\t\tf 4 1731 1739 -1729 -1739\n\t\tmu 0 4 2023 2022 2024 2025\n\t\tf 4 -1740 -1738 -1736 -1734\n\t\tmu 0 4 2017 2026 2027 2018\n\t\tf 4 1738 1732 1734 1736\n\t\tmu 0 4 2028 2016 2019 2029\n\t\tf 4 1740 1745 -1742 -1745\n\t\tmu 0 4 2030 2031 2032 2033\n\t\tf 4 1741 1747 -1743 -1747\n\t\tmu 0 4 2033 2032 2034 2035\n\t\tf 4 1742 1749 -1744 -1749\n\t\tmu 0 4 2035 2034 2036 2037\n\t\tf 4 1743 1751 -1741 -1751\n\t\tmu 0 4 2037 2036 2038 2039\n\t\tf 4 -1752 -1750 -1748 -1746\n\t\tmu 0 4 2031 2040 2041 2032\n\t\tf 4 1750 1744 1746 1748\n\t\tmu 0 4 2042 2030 2033 2043\n\t\tf 4 1752 1757 -1754 -1757\n\t\tmu 0 4 2044 2045 2046 2047\n\t\tf 4 1753 1759 -1755 -1759\n\t\tmu 0 4 2047 2046 2048 2049\n\t\tf 4 1754 1761 -1756 -1761\n\t\tmu 0 4 2049 2048 2050 2051\n\t\tf 4 1755 1763 -1753 -1763\n\t\tmu 0 4 2051 2050 2052 2053\n\t\tf 4 -1764 -1762 -1760 -1758\n\t\tmu 0 4 2045 2054 2055 2046\n\t\tf 4 1762 1756 1758 1760\n\t\tmu 0 4 2056 2044 2047 2057\n\t\tf 4 1764 1769 -1766 -1769\n\t\tmu 0 4 2058 2059 2060 2061\n\t\tf 4 1765 1771 -1767 -1771\n\t\tmu 0 4 2061 2060 2062 2063\n\t\tf 4 1766 1773 -1768 -1773\n\t\tmu 0 4 2063 2062 2064 2065\n\t\tf 4 1767 1775 -1765 -1775\n\t\tmu 0 4 2065 2064 2066 2067\n\t\tf 4 -1776 -1774 -1772 -1770\n\t\tmu 0 4 2059 2068 2069 2060\n\t\tf 4 1774 1768 1770 1772\n\t\tmu 0 4 2070 2058 2061 2071\n\t\tf 4 1776 1781 -1778 -1781\n\t\tmu 0 4 2072 2073 2074 2075\n\t\tf 4 1777 1783 -1779 -1783\n\t\tmu 0 4 2075 2074 2076 2077\n\t\tf 4 1778 1785 -1780 -1785\n\t\tmu 0 4 2077 2076 2078 2079\n\t\tf 4 1779 1787 -1777 -1787\n\t\tmu 0 4 2079 2078 2080 2081\n\t\tf 4 -1788 -1786 -1784 -1782\n\t\tmu 0 4 2073 2082 2083 2074\n\t\tf 4 1786 1780 1782 1784\n\t\tmu 0 4 2084 2072 2075 2085\n\t\tf 4 1788 1793 -1790 -1793\n\t\tmu 0 4 2086 2087 2088 2089\n\t\tf 4 1789 1795 -1791 -1795\n\t\tmu 0 4 2089 2088 2090 2091\n\t\tf 4 1790 1797 -1792 -1797\n\t\tmu 0 4 2091 2090 2092 2093\n\t\tf 4 1791 1799 -1789 -1799\n\t\tmu 0 4 2093 2092 2094 2095\n\t\tf 4 -1800 -1798 -1796 -1794\n\t\tmu 0 4 2087 2096 2097 2088\n\t\tf 4 1798 1792 1794 1796\n\t\tmu 0 4 2098 2086 2089 2099\n\t\tf 4 1800 1805 -1802 -1805\n\t\tmu 0 4 2100 2101 2102 2103\n\t\tf 4 1801 1807 -1803 -1807\n\t\tmu 0 4 2103 2102 2104 2105\n\t\tf 4 1802 1809 -1804 -1809\n\t\tmu 0 4 2105 2104 2106 2107\n\t\tf 4 1803 1811 -1801 -1811\n\t\tmu 0 4 2107 2106 2108 2109\n\t\tf 4 -1812 -1810 -1808 -1806\n\t\tmu 0 4 2101 2110 2111 2102\n\t\tf 4 1810 1804 1806 1808\n\t\tmu 0 4 2112 2100 2103 2113\n\t\tf 4 1812 1817 -1814 -1817\n\t\tmu 0 4 2114 2115 2116 2117\n\t\tf 4 1813 1819 -1815 -1819\n\t\tmu 0 4 2117 2116 2118 2119\n\t\tf 4 1814 1821 -1816 -1821\n\t\tmu 0 4 2119 2118 2120 2121\n\t\tf 4 1815 1823 -1813 -1823\n\t\tmu 0 4 2121 2120 2122 2123\n\t\tf 4 -1824 -1822 -1820 -1818\n\t\tmu 0 4 2115 2124 2125 2116\n\t\tf 4 1822 1816 1818 1820\n\t\tmu 0 4 2126 2114 2117 2127\n\t\tf 4 1824 1829 -1826 -1829\n\t\tmu 0 4 2128 2129 2130 2131\n\t\tf 4 1825 1831 -1827 -1831\n\t\tmu 0 4 2131 2130 2132 2133\n\t\tf 4 1826 1833 -1828 -1833\n\t\tmu 0 4 2133 2132 2134 2135\n\t\tf 4 1827 1835 -1825 -1835\n\t\tmu 0 4 2135 2134 2136 2137\n\t\tf 4 -1836 -1834 -1832 -1830\n\t\tmu 0 4 2129 2138 2139 2130\n\t\tf 4 1834 1828 1830 1832\n\t\tmu 0 4 2140 2128 2131 2141\n\t\tf 4 1836 1841 -1838 -1841\n\t\tmu 0 4 2142 2143 2144 2145\n\t\tf 4 1837 1843 -1839 -1843\n\t\tmu 0 4 2145 2144 2146 2147\n\t\tf 4 1838 1845 -1840 -1845\n\t\tmu 0 4 2147 2146 2148 2149\n\t\tf 4 1839 1847 -1837 -1847\n\t\tmu 0 4 2149 2148 2150 2151\n\t\tf 4 -1848 -1846 -1844 -1842\n\t\tmu 0 4 2143 2152 2153 2144\n\t\tf 4 1846 1840 1842 1844\n\t\tmu 0 4 2154 2142 2145 2155\n\t\tf 4 1848 1853 -1850 -1853\n\t\tmu 0 4 2156 2157 2158 2159\n\t\tf 4 1849 1855 -1851 -1855\n\t\tmu 0 4 2159 2158 2160 2161\n\t\tf 4 1850 1857 -1852 -1857\n\t\tmu 0 4 2161 2160 2162 2163\n\t\tf 4 1851 1859 -1849 -1859\n\t\tmu 0 4 2163 2162 2164 2165\n\t\tf 4 -1860 -1858 -1856 -1854\n\t\tmu 0 4 2157 2166 2167 2158\n\t\tf 4 1858 1852 1854 1856\n\t\tmu 0 4 2168 2156 2159 2169\n\t\tf 4 1860 1865 -1862 -1865\n\t\tmu 0 4 2170 2171 2172 2173\n\t\tf 4 1861 1867 -1863 -1867\n\t\tmu 0 4 2173 2172 2174 2175\n\t\tf 4 1862 1869 -1864 -1869\n\t\tmu 0 4 2175 2174 2176 2177\n\t\tf 4 1863 1871 -1861 -1871\n\t\tmu 0 4 2177 2176 2178 2179\n\t\tf 4 -1872 -1870 -1868 -1866\n\t\tmu 0 4 2171 2180 2181 2172\n\t\tf 4 1870 1864 1866 1868\n\t\tmu 0 4 2182 2170 2173 2183\n\t\tf 4 1872 1877 -1874 -1877\n\t\tmu 0 4 2184 2185 2186 2187\n\t\tf 4 1873 1879 -1875 -1879\n\t\tmu 0 4 2187 2186 2188 2189\n\t\tf 4 1874 1881 -1876 -1881\n\t\tmu 0 4 2189 2188 2190 2191\n\t\tf 4 1875 1883 -1873 -1883\n\t\tmu 0 4 2191 2190 2192 2193\n\t\tf 4 -1884 -1882 -1880 -1878\n\t\tmu 0 4 2185 2194 2195 2186\n\t\tf 4 1882 1876 1878 1880\n\t\tmu 0 4 2196 2184 2187 2197\n\t\tf 4 1884 1889 -1886 -1889\n\t\tmu 0 4 2198 2199 2200 2201\n\t\tf 4 1885 1891 -1887 -1891\n\t\tmu 0 4 2201 2200 2202 2203\n\t\tf 4 1886 1893 -1888 -1893\n\t\tmu 0 4 2203 2202 2204 2205\n\t\tf 4 1887 1895 -1885 -1895\n\t\tmu 0 4 2205 2204 2206 2207\n\t\tf 4 -1896 -1894 -1892 -1890\n\t\tmu 0 4 2199 2208 2209 2200\n\t\tf 4 1894 1888 1890 1892\n\t\tmu 0 4 2210 2198 2201 2211\n\t\tf 4 1896 1901 -1898 -1901\n\t\tmu 0 4 2212 2213 2214 2215\n\t\tf 4 1897 1903 -1899 -1903\n\t\tmu 0 4 2215 2214 2216 2217\n\t\tf 4 1898 1905 -1900 -1905\n\t\tmu 0 4 2217 2216 2218 2219\n\t\tf 4 1899 1907 -1897 -1907\n\t\tmu 0 4 2219 2218 2220 2221\n\t\tf 4 -1908 -1906 -1904 -1902\n\t\tmu 0 4 2213 2222 2223 2214\n\t\tf 4 1906 1900 1902 1904\n\t\tmu 0 4 2224 2212 2215 2225\n\t\tf 4 1908 1913 -1910 -1913\n\t\tmu 0 4 2226 2227 2228 2229\n\t\tf 4 1909 1915 -1911 -1915\n\t\tmu 0 4 2229 2228 2230 2231\n\t\tf 4 1910 1917 -1912 -1917\n\t\tmu 0 4 2231 2230 2232 2233\n\t\tf 4 1911 1919 -1909 -1919\n\t\tmu 0 4 2233 2232 2234 2235\n\t\tf 4 -1920 -1918 -1916 -1914\n\t\tmu 0 4 2227 2236 2237 2228\n\t\tf 4 1918 1912 1914 1916\n\t\tmu 0 4 2238 2226 2229 2239\n\t\tf 4 1920 1925 -1922 -1925\n\t\tmu 0 4 2240 2241 2242 2243\n\t\tf 4 1921 1927 -1923 -1927\n\t\tmu 0 4 2243 2242 2244 2245\n\t\tf 4 1922 1929 -1924 -1929\n\t\tmu 0 4 2245 2244 2246 2247\n\t\tf 4 1923 1931 -1921 -1931\n\t\tmu 0 4 2247 2246 2248 2249\n\t\tf 4 -1932 -1930 -1928 -1926\n\t\tmu 0 4 2241 2250 2251 2242\n\t\tf 4 1930 1924 1926 1928\n\t\tmu 0 4 2252 2240 2243 2253\n\t\tf 4 1932 1937 -1934 -1937\n\t\tmu 0 4 2254 2255 2256 2257\n\t\tf 4 1933 1939 -1935 -1939\n\t\tmu 0 4 2257 2256 2258 2259\n\t\tf 4 1934 1941 -1936 -1941\n\t\tmu 0 4 2259 2258 2260 2261\n\t\tf 4 1935 1943 -1933 -1943\n\t\tmu 0 4 2261 2260 2262 2263\n\t\tf 4 -1944 -1942 -1940 -1938\n\t\tmu 0 4 2255 2264 2265 2256\n\t\tf 4 1942 1936 1938 1940\n\t\tmu 0 4 2266 2254 2257 2267\n\t\tf 4 1944 1949 -1946 -1949\n\t\tmu 0 4 2268 2269 2270 2271\n\t\tf 4 1945 1951 -1947 -1951\n\t\tmu 0 4 2271 2270 2272 2273\n\t\tf 4 1946 1953 -1948 -1953\n\t\tmu 0 4 2273 2272 2274 2275\n\t\tf 4 1947 1955 -1945 -1955\n\t\tmu 0 4 2275 2274 2276 2277\n\t\tf 4 -1956 -1954 -1952 -1950\n\t\tmu 0 4 2269 2278 2279 2270\n\t\tf 4 1954 1948 1950 1952\n\t\tmu 0 4 2280 2268 2271 2281\n\t\tf 4 1956 1961 -1958 -1961\n\t\tmu 0 4 2282 2283 2284 2285\n\t\tf 4 1957 1963 -1959 -1963\n\t\tmu 0 4 2285 2284 2286 2287\n\t\tf 4 1958 1965 -1960 -1965\n\t\tmu 0 4 2287 2286 2288 2289\n\t\tf 4 1959 1967 -1957 -1967\n\t\tmu 0 4 2289 2288 2290 2291\n\t\tf 4 -1968 -1966 -1964 -1962\n\t\tmu 0 4 2283 2292 2293 2284\n\t\tf 4 1966 1960 1962 1964\n\t\tmu 0 4 2294 2282 2285 2295\n\t\tf 4 1968 1973 -1970 -1973\n\t\tmu 0 4 2296 2297 2298 2299\n\t\tf 4 1969 1975 -1971 -1975\n\t\tmu 0 4 2299 2298 2300 2301\n\t\tf 4 1970 1977 -1972 -1977\n\t\tmu 0 4 2301 2300 2302 2303\n\t\tf 4 1971 1979 -1969 -1979\n\t\tmu 0 4 2303 2302 2304 2305\n\t\tf 4 -1980 -1978 -1976 -1974\n\t\tmu 0 4 2297 2306 2307 2298\n\t\tf 4 1978 1972 1974 1976\n\t\tmu 0 4 2308 2296 2299 2309\n\t\tf 4 1980 1985 -1982 -1985\n\t\tmu 0 4 2310 2311 2312 2313\n\t\tf 4 1981 1987 -1983 -1987\n\t\tmu 0 4 2313 2312 2314 2315\n\t\tf 4 1982 1989 -1984 -1989\n\t\tmu 0 4 2315 2314 2316 2317\n\t\tf 4 1983 1991 -1981 -1991\n\t\tmu 0 4 2317 2316 2318 2319\n\t\tf 4 -1992 -1990 -1988 -1986\n\t\tmu 0 4 2311 2320 2321 2312\n\t\tf 4 1990 1984 1986 1988\n\t\tmu 0 4 2322 2310 2313 2323\n\t\tf 4 1992 1997 -1994 -1997\n\t\tmu 0 4 2324 2325 2326 2327\n\t\tf 4 1993 1999 -1995 -1999\n\t\tmu 0 4 2327 2326 2328 2329\n\t\tf 4 1994 2001 -1996 -2001\n\t\tmu 0 4 2329 2328 2330 2331\n\t\tf 4 1995 2003 -1993 -2003\n\t\tmu 0 4 2331 2330 2332 2333;\n\tsetAttr \".fc[1000:1031]\"\n\t\tf 4 -2004 -2002 -2000 -1998\n\t\tmu 0 4 2325 2334 2335 2326\n\t\tf 4 2002 1996 1998 2000\n\t\tmu 0 4 2336 2324 2327 2337\n\t\tf 4 2004 2009 -2006 -2009\n\t\tmu 0 4 2338 2339 2340 2341\n\t\tf 4 2005 2011 -2007 -2011\n\t\tmu 0 4 2341 2340 2342 2343\n\t\tf 4 2006 2013 -2008 -2013\n\t\tmu 0 4 2343 2342 2344 2345\n\t\tf 4 2007 2015 -2005 -2015\n\t\tmu 0 4 2345 2344 2346 2347\n\t\tf 4 -2016 -2014 -2012 -2010\n\t\tmu 0 4 2339 2348 2349 2340\n\t\tf 4 2014 2008 2010 2012\n\t\tmu 0 4 2350 2338 2341 2351\n\t\tf 4 2016 2021 -2018 -2021\n\t\tmu 0 4 2352 2353 2354 2355\n\t\tf 4 2017 2023 -2019 -2023\n\t\tmu 0 4 2355 2354 2356 2357\n\t\tf 4 2018 2025 -2020 -2025\n\t\tmu 0 4 2357 2356 2358 2359\n\t\tf 4 2019 2027 -2017 -2027\n\t\tmu 0 4 2359 2358 2360 2361\n\t\tf 4 -2028 -2026 -2024 -2022\n\t\tmu 0 4 2353 2362 2363 2354\n\t\tf 4 2026 2020 2022 2024\n\t\tmu 0 4 2364 2352 2355 2365\n\t\tf 4 2028 2033 -2030 -2033\n\t\tmu 0 4 2366 2367 2368 2369\n\t\tf 4 2029 2035 -2031 -2035\n\t\tmu 0 4 2369 2368 2370 2371\n\t\tf 4 2030 2037 -2032 -2037\n\t\tmu 0 4 2371 2370 2372 2373\n\t\tf 4 2031 2039 -2029 -2039\n\t\tmu 0 4 2373 2372 2374 2375\n\t\tf 4 -2040 -2038 -2036 -2034\n\t\tmu 0 4 2367 2376 2377 2368\n\t\tf 4 2038 2032 2034 2036\n\t\tmu 0 4 2378 2366 2369 2379\n\t\tf 4 2040 2045 -2042 -2045\n\t\tmu 0 4 2380 2381 2382 2383\n\t\tf 4 2041 2047 -2043 -2047\n\t\tmu 0 4 2383 2382 2384 2385\n\t\tf 4 2042 2049 -2044 -2049\n\t\tmu 0 4 2385 2384 2386 2387\n\t\tf 4 2043 2051 -2041 -2051\n\t\tmu 0 4 2387 2386 2388 2389\n\t\tf 4 -2052 -2050 -2048 -2046\n\t\tmu 0 4 2381 2390 2391 2382\n\t\tf 4 2050 2044 2046 2048\n\t\tmu 0 4 2392 2380 2383 2393\n\t\tf 4 2052 2057 -2054 -2057\n\t\tmu 0 4 2394 2395 2396 2397\n\t\tf 4 2053 2059 -2055 -2059\n\t\tmu 0 4 2397 2396 2398 2399\n\t\tf 4 2054 2061 -2056 -2061\n\t\tmu 0 4 2399 2398 2400 2401\n\t\tf 4 2055 2063 -2053 -2063\n\t\tmu 0 4 2401 2400 2402 2403\n\t\tf 4 -2064 -2062 -2060 -2058\n\t\tmu 0 4 2395 2404 2405 2396\n\t\tf 4 2062 2056 2058 2060\n\t\tmu 0 4 2406 2394 2397 2407;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"303B2B67-47B7-6E78-8820-05AB30D606B5\";\n\taddAttr -ci true -sn \"nts\" -ln \"notes\" -dt \"string\";\n\tsetAttr \".t\" -type \"double3\" 0 12 17 ;\n\tsetAttr \".r\" -type \"double3\" -35 0 0 ;\n\tsetAttr \".nts\" -type \"string\" \"\\t\\t\\t\";\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"BD85422D-4BEE-06AB-BACE-7DBD783134A8\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173228346456694 1.4173228346456694 ;\n\tsetAttr \".ff\" 3;\n\tsetAttr \".ncp\" 0.001;\n\tsetAttr \".fcp\" 100;\n\tsetAttr \".coi\" 38.604738576294551;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".dr\" yes;\ncreateNode transform -n \"pPyramid1\" -p \"camera1\";\n\trename -uid \"64C5F767-411B-9689-42F4-42A46E33EBBD\";\n\tsetAttr \".s\" -type \"double3\" 5 5 100 ;\n\tsetAttr \".rp\" -type \"double3\" 0 0 3.7375154454233339e-05 ;\n\tsetAttr \".sp\" -type \"double3\" 0 0 3.7375154454233339e-05 ;\ncreateNode mesh -n \"pPyramidShape1\" -p \"pPyramid1\";\n\trename -uid \"A770F7FC-432D-DC35-6840-EDA7546D1EDD\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.25 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"C81EBC59-4750-DF96-D099-6FBD3F667898\";\n\tsetAttr -s 8 \".lnk\";\n\tsetAttr -s 8 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"94072B53-49F8-F86E-6C0C-17A80C997CCC\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"CF47406C-4122-4128-A0B5-BFB121DB34E0\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"80FFED8A-46E4-DD7F-5B89-EF92A713D711\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"5F78CABE-4E1C-4A10-CCA9-CF98F2D9CABE\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"BDB528EF-441E-CF88-B798-33B9B5E78DA4\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"4DAC6715-445A-0676-C776-A2A4E60D7B3A\";\n\tsetAttr \".g\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"4D043C4A-429E-E5AB-1103-4791D7A045E7\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"cameraShape1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 1\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1978\\n            -height 1447\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -autoFitTime 0\\n\"\n\t\t+ \"                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n\"\n\t\t+ \"                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n\"\n\t\t+ \"                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 0 \\n                $editorName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n\"\n\t\t+ \"                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n\"\n\t\t+ \"                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n\"\n\t\t+ \"                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n\"\n\t\t+ \"                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n\"\n\t\t+ \"                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\"\n\t\t+ \"\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"cameraShape1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 1\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1978\\\\n    -height 1447\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"cameraShape1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 1\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1978\\\\n    -height 1447\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"598A3F36-4262-4847-52B4-0A89E9054834\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode groupId -n \"groupId1\";\n\trename -uid \"6916DEC6-483C-8C62-4504-2E966E14F5F3\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"0CD29B91-4AC4-D539-7C3F-918776F0DC70\";\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"A0004028-432C-996A-EC5E-F1830097EAEB\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"351991DC-44C1-50A9-B8C3-6394D2BACF0B\";\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"96F22B07-4A29-3CF2-1312-6FB6FED76A59\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert3\";\n\trename -uid \"33CE80EB-4BC7-2CA6-595C-9CB4CF8B0E4D\";\n\tsetAttr \".c\" -type \"float3\" 0 0 1 ;\ncreateNode shadingEngine -n \"lambert3SG\";\n\trename -uid \"90EC03C5-4980-25D5-0135-EDB31ED46B4E\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"ED657469-4A1E-A4C1-302D-9F8ABCA0076E\";\ncreateNode groupId -n \"groupId3\";\n\trename -uid \"E16FB584-49D8-58ED-E919-D0A477F7C449\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert4\";\n\trename -uid \"6DDF4970-431F-E97D-3935-288C97620148\";\n\tsetAttr \".c\" -type \"float3\" 0 1 0 ;\ncreateNode shadingEngine -n \"lambert4SG\";\n\trename -uid \"12731EA1-4A5C-3BA1-90D8-7A8CDFE83BE0\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo3\";\n\trename -uid \"8E4CC743-4732-E704-B13C-68A0D93CDDA2\";\ncreateNode groupId -n \"groupId4\";\n\trename -uid \"04E0951A-4E24-EB2D-47DD-9290479CE2B4\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert5\";\n\trename -uid \"790E2B42-4642-7C43-B9B7-48BE5CCFD990\";\n\tsetAttr \".c\" -type \"float3\" 0 1 1 ;\ncreateNode shadingEngine -n \"lambert5SG\";\n\trename -uid \"DB900D64-4061-C89A-8E71-59A5702EA8B3\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo4\";\n\trename -uid \"74333DFD-4793-241D-31DC-F686CADC142E\";\ncreateNode groupId -n \"groupId5\";\n\trename -uid \"02B681EA-4069-8770-75C0-74AFD4A129EA\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert6\";\n\trename -uid \"85C23F83-492C-588B-FD1B-1A8EF0DCBE85\";\n\tsetAttr \".c\" -type \"float3\" 1 1 0 ;\ncreateNode shadingEngine -n \"lambert6SG\";\n\trename -uid \"E284AD76-40AA-828B-24D6-5EB8FB910E05\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo5\";\n\trename -uid \"B67DDF3E-4FAE-9463-6723-E9B7B079AD58\";\ncreateNode groupId -n \"groupId6\";\n\trename -uid \"8F1FBACE-4E06-51DA-F148-40B388BAA372\";\n\tsetAttr \".ihi\" 0;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"211DDCFC-424B-189E-4344-28AAEB1A6103\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"B29DED36-4F71-50B8-51FE-9D88449F2716\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\taddAttr -ci true -sn \"selOnly\" -ln \"selOnly\" -at \"long\";\n\taddAttr -ci true -sn \"visOnly\" -ln \"visOnly\" -at \"long\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/Users/bugfa/Documents/maya/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"cam1\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2019 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"-cam camera1\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 1;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\n\tsetAttr \".selOnly\" 1;\n\tsetAttr \".visOnly\" 1;\ncreateNode polyPyramid -n \"polyPyramid1\";\n\trename -uid \"9EA437FA-49D9-6156-030B-4A9DA24B5F63\";\n\tsetAttr \".ax\" -type \"double3\" 0 0 1 ;\n\tsetAttr \".cuv\" 3;\ncreateNode transformGeometry -n \"transformGeometry1\";\n\trename -uid \"EC98F613-4690-A28F-5179-67AE792AF789\";\n\tsetAttr \".txf\" -type \"matrix\" 0.70710678118654746 0.70710678118654757 0 0 -0.70710678118654757 0.70710678118654746 0 0\n\t\t 0 0 1 0 0 0 -0.35306153624781406 1;\ncreateNode lambert -n \"lambert7\";\n\trename -uid \"3FBAC392-47A6-CF77-1BCB-89A01C7782B7\";\n\tsetAttr \".c\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".it\" -type \"float3\" 0.040192928 0.040192928 0.040192928 ;\ncreateNode shadingEngine -n \"lambert7SG\";\n\trename -uid \"4D87AD61-4564-4DAC-9D9F-9FB8DD7C7385\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo6\";\n\trename -uid \"3A76EF7B-4EF1-12F9-194F-75B2A64C3C4D\";\ncreateNode polyNormal -n \"polyNormal1\";\n\trename -uid \"2B6341FC-44AC-A77B-FEC6-27B15E2E783B\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".unm\" no;\ncreateNode deleteComponent -n \"deleteComponent1\";\n\trename -uid \"6AE47629-4E93-1EDA-C8F6-62964D43649E\";\n\tsetAttr \".dc\" -type \"componentList\" 1 \"f[0]\";\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 0;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 8 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 10 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1024;\n\tsetAttr \".h\" 1024;\n\tsetAttr \".pa\" 1;\n\tsetAttr \".dar\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nselect -ne :ikSystem;\n\tsetAttr -s 4 \".sol\";\nconnectAttr \"groupId1.id\" \"pCube5Shape.iog.og[0].gid\";\nconnectAttr \":initialShadingGroup.mwc\" \"pCube5Shape.iog.og[0].gco\";\nconnectAttr \"groupId2.id\" \"pCube5Shape.iog.og[1].gid\";\nconnectAttr \"lambert2SG.mwc\" \"pCube5Shape.iog.og[1].gco\";\nconnectAttr \"groupId3.id\" \"pCube5Shape.iog.og[2].gid\";\nconnectAttr \"lambert3SG.mwc\" \"pCube5Shape.iog.og[2].gco\";\nconnectAttr \"groupId4.id\" \"pCube5Shape.iog.og[3].gid\";\nconnectAttr \"lambert4SG.mwc\" \"pCube5Shape.iog.og[3].gco\";\nconnectAttr \"groupId5.id\" \"pCube5Shape.iog.og[4].gid\";\nconnectAttr \"lambert5SG.mwc\" \"pCube5Shape.iog.og[4].gco\";\nconnectAttr \"groupId6.id\" \"pCube5Shape.iog.og[5].gid\";\nconnectAttr \"lambert6SG.mwc\" \"pCube5Shape.iog.og[5].gco\";\nconnectAttr \"deleteComponent1.og\" \"pPyramidShape1.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert4SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert5SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert6SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert7SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert4SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert5SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert6SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert7SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"groupId2.msg\" \"lambert2SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[1]\" \"lambert2SG.dsm\" -na;\nconnectAttr \"lambert2SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo1.m\";\nconnectAttr \"lambert3.oc\" \"lambert3SG.ss\";\nconnectAttr \"groupId3.msg\" \"lambert3SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[2]\" \"lambert3SG.dsm\" -na;\nconnectAttr \"lambert3SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"lambert3.msg\" \"materialInfo2.m\";\nconnectAttr \"lambert4.oc\" \"lambert4SG.ss\";\nconnectAttr \"groupId4.msg\" \"lambert4SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[3]\" \"lambert4SG.dsm\" -na;\nconnectAttr \"lambert4SG.msg\" \"materialInfo3.sg\";\nconnectAttr \"lambert4.msg\" \"materialInfo3.m\";\nconnectAttr \"lambert5.oc\" \"lambert5SG.ss\";\nconnectAttr \"groupId5.msg\" \"lambert5SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[4]\" \"lambert5SG.dsm\" -na;\nconnectAttr \"lambert5SG.msg\" \"materialInfo4.sg\";\nconnectAttr \"lambert5.msg\" \"materialInfo4.m\";\nconnectAttr \"lambert6.oc\" \"lambert6SG.ss\";\nconnectAttr \"groupId6.msg\" \"lambert6SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[5]\" \"lambert6SG.dsm\" -na;\nconnectAttr \"lambert6SG.msg\" \"materialInfo5.sg\";\nconnectAttr \"lambert6.msg\" \"materialInfo5.m\";\nconnectAttr \"polyPyramid1.out\" \"transformGeometry1.ig\";\nconnectAttr \"lambert7.oc\" \"lambert7SG.ss\";\nconnectAttr \"pPyramidShape1.iog\" \"lambert7SG.dsm\" -na;\nconnectAttr \"lambert7SG.msg\" \"materialInfo6.sg\";\nconnectAttr \"lambert7.msg\" \"materialInfo6.m\";\nconnectAttr \"transformGeometry1.og\" \"polyNormal1.ip\";\nconnectAttr \"polyNormal1.out\" \"deleteComponent1.ig\";\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert3SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert4SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert5SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert6SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert7SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert3.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert4.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert5.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert6.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert7.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCube5Shape.iog.og[0]\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"groupId1.msg\" \":initialShadingGroup.gn\" -na;\n// End of CameraCalibration1.ma\n"
  },
  {
    "path": "maya/scenes/CameraCalibration2.ma",
    "content": "//Maya ASCII 2018ff08 scene\n//Name: CameraCalibration2.ma\n//Last modified: Sun, Feb 03, 2019 07:12:28 PM\n//Codeset: 1252\nrequires maya \"2018ff08\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201804211841-f3d65dda2a\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"AAFB104E-4FD8-12C2-F062-5FBBE22E28D9\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1.5644844838131906 61.144449962811123 40.641722698941628 ;\n\tsetAttr \".r\" -type \"double3\" 311.66164727047629 10.599999999999925 0 ;\n\tsetAttr \".rp\" -type \"double3\" 0 -7.1054273576010019e-15 0 ;\n\tsetAttr \".rpt\" -type \"double3\" 2.788632745664467e-15 3.8507534731040169e-15 5.6672500606136927e-15 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"C611669F-4502-BC51-FDD7-78A470756B8D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 68.773611521632446;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" -6.8450192119193343 9.7648327772250809 -4.2940628976517754 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"3D87D8C2-43B0-A58C-4FD6-EB98FF0F3463\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"B38C9587-472E-AE2E-6963-A1B23033C336\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"1C1F28E2-4012-E661-3EE1-84AD7FB8085C\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"993AA8C2-4C06-47F7-9808-32A5E799C252\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"25129461-45BE-2012-903B-0582F9F6D376\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"F10EC166-4EB7-CE05-6F7D-5182652D3025\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube5\";\n\trename -uid \"91003C93-48A2-9DC1-3A34-7EAA399A186E\";\ncreateNode mesh -n \"pCube5Shape\" -p \"pCube5\";\n\trename -uid \"AD70B5C7-4E16-F990-4E90-3CB6607ED719\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 6 \".iog[0].og\";\n\tsetAttr \".iog[0].og[0].gcl\" -type \"componentList\" 6 \"f[0:47]\" \"f[54:479]\" \"f[486:587]\" \"f[594:611]\" \"f[618:623]\" \"f[630:1031]\";\n\tsetAttr \".iog[0].og[1].gcl\" -type \"componentList\" 1 \"f[480:485]\";\n\tsetAttr \".iog[0].og[2].gcl\" -type \"componentList\" 1 \"f[624:629]\";\n\tsetAttr \".iog[0].og[3].gcl\" -type \"componentList\" 1 \"f[612:617]\";\n\tsetAttr \".iog[0].og[4].gcl\" -type \"componentList\" 1 \"f[588:593]\";\n\tsetAttr \".iog[0].og[5].gcl\" -type \"componentList\" 1 \"f[48:53]\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.5 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 2408 \".uvst[0].uvsp\";\n\tsetAttr \".uvst[0].uvsp[0:249]\" -type \"float2\" 0.375 0 0.625 0 0.375 0.25\n\t\t 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25;\n\tsetAttr \".uvst[0].uvsp[250:499]\" 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1;\n\tsetAttr \".uvst[0].uvsp[500:749]\" 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75;\n\tsetAttr \".uvst[0].uvsp[750:999]\" 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0\n\t\t 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375\n\t\t 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625\n\t\t 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5;\n\tsetAttr \".uvst[0].uvsp[1000:1249]\" 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25;\n\tsetAttr \".uvst[0].uvsp[1250:1499]\" 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75\n\t\t 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0;\n\tsetAttr \".uvst[0].uvsp[1500:1749]\" 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25;\n\tsetAttr \".uvst[0].uvsp[1750:1999]\" 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625\n\t\t 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125\n\t\t 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75\n\t\t 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25;\n\tsetAttr \".uvst[0].uvsp[2000:2249]\" 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1;\n\tsetAttr \".uvst[0].uvsp[2250:2407]\" 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 1376 \".vt\";\n\tsetAttr \".vt[0:165]\"  -4.5 -0.5 0.5 -3.5 -0.5 0.5 -4.5 0.5 0.5 -3.5 0.5 0.5\n\t\t -4.5 0.5 -0.5 -3.5 0.5 -0.5 -4.5 -0.5 -0.5 -3.5 -0.5 -0.5 -2.5 -0.5 0.5 -1.5 -0.5 0.5\n\t\t -2.5 0.5 0.5 -1.5 0.5 0.5 -2.5 0.5 -0.5 -1.5 0.5 -0.5 -2.5 -0.5 -0.5 -1.5 -0.5 -0.5\n\t\t -10.5 -0.5 0.5 -9.5 -0.5 0.5 -10.5 0.5 0.5 -9.5 0.5 0.5 -10.5 0.5 -0.5 -9.5 0.5 -0.5\n\t\t -10.5 -0.5 -0.5 -9.5 -0.5 -0.5 -8.5 -0.5 0.5 -7.5 -0.5 0.5 -8.5 0.5 0.5 -7.5 0.5 0.5\n\t\t -8.5 0.5 -0.5 -7.5 0.5 -0.5 -8.5 -0.5 -0.5 -7.5 -0.5 -0.5 -6.5 -0.5 0.5 -5.5 -0.5 0.5\n\t\t -6.5 0.5 0.5 -5.5 0.5 0.5 -6.5 0.5 -0.5 -5.5 0.5 -0.5 -6.5 -0.5 -0.5 -5.5 -0.5 -0.5\n\t\t -12.5 -0.5 0.5 -11.5 -0.5 0.5 -12.5 0.5 0.5 -11.5 0.5 0.5 -12.5 0.5 -0.5 -11.5 0.5 -0.5\n\t\t -12.5 -0.5 -0.5 -11.5 -0.5 -0.5 3.5 -0.5 0.5 4.5 -0.5 0.5 3.5 0.5 0.5 4.5 0.5 0.5\n\t\t 3.5 0.5 -0.5 4.5 0.5 -0.5 3.5 -0.5 -0.5 4.5 -0.5 -0.5 1.5 -0.5 0.5 2.5 -0.5 0.5 1.5 0.5 0.5\n\t\t 2.5 0.5 0.5 1.5 0.5 -0.5 2.5 0.5 -0.5 1.5 -0.5 -0.5 2.5 -0.5 -0.5 -0.5 -0.5 0.5 0.5 -0.5 0.5\n\t\t -0.5 0.5 0.5 0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5\n\t\t 9.5 -0.5 0.5 10.5 -0.5 0.5 9.5 0.5 0.5 10.5 0.5 0.5 9.5 0.5 -0.5 10.5 0.5 -0.5 9.5 -0.5 -0.5\n\t\t 10.5 -0.5 -0.5 -6.5 -0.5 -1.5 -5.5 -0.5 -1.5 -6.5 0.5 -1.5 -5.5 0.5 -1.5 -6.5 0.5 -2.5\n\t\t -5.5 0.5 -2.5 -6.5 -0.5 -2.5 -5.5 -0.5 -2.5 -8.5 -0.5 -1.5 -7.5 -0.5 -1.5 -8.5 0.5 -1.5\n\t\t -7.5 0.5 -1.5 -8.5 0.5 -2.5 -7.5 0.5 -2.5 -8.5 -0.5 -2.5 -7.5 -0.5 -2.5 7.5 -0.5 0.5\n\t\t 8.5 -0.5 0.5 7.5 0.5 0.5 8.5 0.5 0.5 7.5 0.5 -0.5 8.5 0.5 -0.5 7.5 -0.5 -0.5 8.5 -0.5 -0.5\n\t\t 11.5 -0.5 0.5 12.5 -0.5 0.5 11.5 0.5 0.5 12.5 0.5 0.5 11.5 0.5 -0.5 12.5 0.5 -0.5\n\t\t 11.5 -0.5 -0.5 12.5 -0.5 -0.5 -10.5 -0.5 -1.5 -9.5 -0.5 -1.5 -10.5 0.5 -1.5 -9.5 0.5 -1.5\n\t\t -10.5 0.5 -2.5 -9.5 0.5 -2.5 -10.5 -0.5 -2.5 -9.5 -0.5 -2.5 5.5 -0.5 0.5 6.5 -0.5 0.5\n\t\t 5.5 0.5 0.5 6.5 0.5 0.5 5.5 0.5 -0.5 6.5 0.5 -0.5 5.5 -0.5 -0.5 6.5 -0.5 -0.5 -2.5 -0.5 8.5\n\t\t -1.5 -0.5 8.5 -2.5 0.5 8.5 -1.5 0.5 8.5 -2.5 0.5 7.5 -1.5 0.5 7.5 -2.5 -0.5 7.5 -1.5 -0.5 7.5\n\t\t -10.5 -0.5 8.5 -9.5 -0.5 8.5 -10.5 0.5 8.5 -9.5 0.5 8.5 -10.5 0.5 7.5 -9.5 0.5 7.5\n\t\t -10.5 -0.5 7.5 -9.5 -0.5 7.5 -8.5 -0.5 8.5 -7.5 -0.5 8.5 -8.5 0.5 8.5 -7.5 0.5 8.5\n\t\t -8.5 0.5 7.5 -7.5 0.5 7.5 -8.5 -0.5 7.5 -7.5 -0.5 7.5 -4.5 -0.5 8.5 -3.5 -0.5 8.5\n\t\t -4.5 0.5 8.5 -3.5 0.5 8.5 -4.5 0.5 7.5 -3.5 0.5 7.5 -4.5 -0.5 7.5 -3.5 -0.5 7.5 -12.5 -0.5 -5.5\n\t\t -11.5 -0.5 -5.5 -12.5 0.5 -5.5 -11.5 0.5 -5.5 -12.5 0.5 -6.5 -11.5 0.5 -6.5;\n\tsetAttr \".vt[166:331]\" -12.5 -0.5 -6.5 -11.5 -0.5 -6.5 1.5 -0.5 -5.5 2.5 -0.5 -5.5\n\t\t 1.5 0.5 -5.5 2.5 0.5 -5.5 1.5 0.5 -6.5 2.5 0.5 -6.5 1.5 -0.5 -6.5 2.5 -0.5 -6.5 3.5 -0.5 -5.5\n\t\t 4.5 -0.5 -5.5 3.5 0.5 -5.5 4.5 0.5 -5.5 3.5 0.5 -6.5 4.5 0.5 -6.5 3.5 -0.5 -6.5 4.5 -0.5 -6.5\n\t\t -0.5 -0.5 -5.5 0.5 -0.5 -5.5 -0.5 0.5 -5.5 0.5 0.5 -5.5 -0.5 0.5 -6.5 0.5 0.5 -6.5\n\t\t -0.5 -0.5 -6.5 0.5 -0.5 -6.5 -4.5 -0.5 -5.5 -3.5 -0.5 -5.5 -4.5 0.5 -5.5 -3.5 0.5 -5.5\n\t\t -4.5 0.5 -6.5 -3.5 0.5 -6.5 -4.5 -0.5 -6.5 -3.5 -0.5 -6.5 -2.5 -0.5 -5.5 -1.5 -0.5 -5.5\n\t\t -2.5 0.5 -5.5 -1.5 0.5 -5.5 -2.5 0.5 -6.5 -1.5 0.5 -6.5 -2.5 -0.5 -6.5 -1.5 -0.5 -6.5\n\t\t 9.5 -0.5 -5.5 10.5 -0.5 -5.5 9.5 0.5 -5.5 10.5 0.5 -5.5 9.5 0.5 -6.5 10.5 0.5 -6.5\n\t\t 9.5 -0.5 -6.5 10.5 -0.5 -6.5 7.5 -0.5 -5.5 8.5 -0.5 -5.5 7.5 0.5 -5.5 8.5 0.5 -5.5\n\t\t 7.5 0.5 -6.5 8.5 0.5 -6.5 7.5 -0.5 -6.5 8.5 -0.5 -6.5 11.5 -0.5 -5.5 12.5 -0.5 -5.5\n\t\t 11.5 0.5 -5.5 12.5 0.5 -5.5 11.5 0.5 -6.5 12.5 0.5 -6.5 11.5 -0.5 -6.5 12.5 -0.5 -6.5\n\t\t 5.5 -0.5 -5.5 6.5 -0.5 -5.5 5.5 0.5 -5.5 6.5 0.5 -5.5 5.5 0.5 -6.5 6.5 0.5 -6.5 5.5 -0.5 -6.5\n\t\t 6.5 -0.5 -6.5 5.5 -0.5 -3.5 6.5 -0.5 -3.5 5.5 0.5 -3.5 6.5 0.5 -3.5 5.5 0.5 -4.5\n\t\t 6.5 0.5 -4.5 5.5 -0.5 -4.5 6.5 -0.5 -4.5 -10.5 -0.5 -5.5 -9.5 -0.5 -5.5 -10.5 0.5 -5.5\n\t\t -9.5 0.5 -5.5 -10.5 0.5 -6.5 -9.5 0.5 -6.5 -10.5 -0.5 -6.5 -9.5 -0.5 -6.5 -2.5 -0.5 -3.5\n\t\t -1.5 -0.5 -3.5 -2.5 0.5 -3.5 -1.5 0.5 -3.5 -2.5 0.5 -4.5 -1.5 0.5 -4.5 -2.5 -0.5 -4.5\n\t\t -1.5 -0.5 -4.5 -4.5 -0.5 -3.5 -3.5 -0.5 -3.5 -4.5 0.5 -3.5 -3.5 0.5 -3.5 -4.5 0.5 -4.5\n\t\t -3.5 0.5 -4.5 -4.5 -0.5 -4.5 -3.5 -0.5 -4.5 -6.5 -0.5 8.5 -5.5 -0.5 8.5 -6.5 0.5 8.5\n\t\t -5.5 0.5 8.5 -6.5 0.5 7.5 -5.5 0.5 7.5 -6.5 -0.5 7.5 -5.5 -0.5 7.5 9.5 -0.5 8.5 10.5 -0.5 8.5\n\t\t 9.5 0.5 8.5 10.5 0.5 8.5 9.5 0.5 7.5 10.5 0.5 7.5 9.5 -0.5 7.5 10.5 -0.5 7.5 -0.5 -0.5 8.5\n\t\t 0.5 -0.5 8.5 -0.5 0.5 8.5 0.5 0.5 8.5 -0.5 0.5 7.5 0.5 0.5 7.5 -0.5 -0.5 7.5 0.5 -0.5 7.5\n\t\t 1.5 -0.5 8.5 2.5 -0.5 8.5 1.5 0.5 8.5 2.5 0.5 8.5 1.5 0.5 7.5 2.5 0.5 7.5 1.5 -0.5 7.5\n\t\t 2.5 -0.5 7.5 3.5 -0.5 8.5 4.5 -0.5 8.5 3.5 0.5 8.5 4.5 0.5 8.5 3.5 0.5 7.5 4.5 0.5 7.5\n\t\t 3.5 -0.5 7.5 4.5 -0.5 7.5 -8.5 -0.5 6.5 -7.5 -0.5 6.5 -8.5 0.5 6.5 -7.5 0.5 6.5 -8.5 0.5 5.5\n\t\t -7.5 0.5 5.5 -8.5 -0.5 5.5 -7.5 -0.5 5.5 -12.5 -0.5 8.5 -11.5 -0.5 8.5 -12.5 0.5 8.5\n\t\t -11.5 0.5 8.5 -12.5 0.5 7.5 -11.5 0.5 7.5 -12.5 -0.5 7.5 -11.5 -0.5 7.5 -6.5 -0.5 6.5\n\t\t -5.5 -0.5 6.5 -6.5 0.5 6.5 -5.5 0.5 6.5;\n\tsetAttr \".vt[332:497]\" -6.5 0.5 5.5 -5.5 0.5 5.5 -6.5 -0.5 5.5 -5.5 -0.5 5.5\n\t\t 11.5 -0.5 8.5 12.5 -0.5 8.5 11.5 0.5 8.5 12.5 0.5 8.5 11.5 0.5 7.5 12.5 0.5 7.5 11.5 -0.5 7.5\n\t\t 12.5 -0.5 7.5 7.5 -0.5 8.5 8.5 -0.5 8.5 7.5 0.5 8.5 8.5 0.5 8.5 7.5 0.5 7.5 8.5 0.5 7.5\n\t\t 7.5 -0.5 7.5 8.5 -0.5 7.5 1.5 -0.5 -3.5 2.5 -0.5 -3.5 1.5 0.5 -3.5 2.5 0.5 -3.5 1.5 0.5 -4.5\n\t\t 2.5 0.5 -4.5 1.5 -0.5 -4.5 2.5 -0.5 -4.5 -0.5 -0.5 -3.5 0.5 -0.5 -3.5 -0.5 0.5 -3.5\n\t\t 0.5 0.5 -3.5 -0.5 0.5 -4.5 0.5 0.5 -4.5 -0.5 -0.5 -4.5 0.5 -0.5 -4.5 -8.5 -0.5 -3.5\n\t\t -7.5 -0.5 -3.5 -8.5 0.5 -3.5 -7.5 0.5 -3.5 -8.5 0.5 -4.5 -7.5 0.5 -4.5 -8.5 -0.5 -4.5\n\t\t -7.5 -0.5 -4.5 -6.5 -0.5 -3.5 -5.5 -0.5 -3.5 -6.5 0.5 -3.5 -5.5 0.5 -3.5 -6.5 0.5 -4.5\n\t\t -5.5 0.5 -4.5 -6.5 -0.5 -4.5 -5.5 -0.5 -4.5 -12.5 -0.5 -3.5 -11.5 -0.5 -3.5 -12.5 0.5 -3.5\n\t\t -11.5 0.5 -3.5 -12.5 0.5 -4.5 -11.5 0.5 -4.5 -12.5 -0.5 -4.5 -11.5 -0.5 -4.5 3.5 -0.5 -3.5\n\t\t 4.5 -0.5 -3.5 3.5 0.5 -3.5 4.5 0.5 -3.5 3.5 0.5 -4.5 4.5 0.5 -4.5 3.5 -0.5 -4.5 4.5 -0.5 -4.5\n\t\t -10.5 -0.5 -3.5 -9.5 -0.5 -3.5 -10.5 0.5 -3.5 -9.5 0.5 -3.5 -10.5 0.5 -4.5 -9.5 0.5 -4.5\n\t\t -10.5 -0.5 -4.5 -9.5 -0.5 -4.5 5.5 -0.5 -1.5 6.5 -0.5 -1.5 5.5 0.5 -1.5 6.5 0.5 -1.5\n\t\t 5.5 0.5 -2.5 6.5 0.5 -2.5 5.5 -0.5 -2.5 6.5 -0.5 -2.5 11.5 -0.5 -1.5 12.5 -0.5 -1.5\n\t\t 11.5 0.5 -1.5 12.5 0.5 -1.5 11.5 0.5 -2.5 12.5 0.5 -2.5 11.5 -0.5 -2.5 12.5 -0.5 -2.5\n\t\t 7.5 -0.5 -1.5 8.5 -0.5 -1.5 7.5 0.5 -1.5 8.5 0.5 -1.5 7.5 0.5 -2.5 8.5 0.5 -2.5 7.5 -0.5 -2.5\n\t\t 8.5 -0.5 -2.5 9.5 -0.5 -1.5 10.5 -0.5 -1.5 9.5 0.5 -1.5 10.5 0.5 -1.5 9.5 0.5 -2.5\n\t\t 10.5 0.5 -2.5 9.5 -0.5 -2.5 10.5 -0.5 -2.5 -2.5 -0.5 -1.5 -1.5 -0.5 -1.5 -2.5 0.5 -1.5\n\t\t -1.5 0.5 -1.5 -2.5 0.5 -2.5 -1.5 0.5 -2.5 -2.5 -0.5 -2.5 -1.5 -0.5 -2.5 -4.5 -0.5 -1.5\n\t\t -3.5 -0.5 -1.5 -4.5 0.5 -1.5 -3.5 0.5 -1.5 -4.5 0.5 -2.5 -3.5 0.5 -2.5 -4.5 -0.5 -2.5\n\t\t -3.5 -0.5 -2.5 -6.5 -0.5 -5.5 -5.5 -0.5 -5.5 -6.5 0.5 -5.5 -5.5 0.5 -5.5 -6.5 0.5 -6.5\n\t\t -5.5 0.5 -6.5 -6.5 -0.5 -6.5 -5.5 -0.5 -6.5 -8.5 -0.5 -5.5 -7.5 -0.5 -5.5 -8.5 0.5 -5.5\n\t\t -7.5 0.5 -5.5 -8.5 0.5 -6.5 -7.5 0.5 -6.5 -8.5 -0.5 -6.5 -7.5 -0.5 -6.5 11.5 -0.5 -3.5\n\t\t 12.5 -0.5 -3.5 11.5 0.5 -3.5 12.5 0.5 -3.5 11.5 0.5 -4.5 12.5 0.5 -4.5 11.5 -0.5 -4.5\n\t\t 12.5 -0.5 -4.5 7.5 -0.5 -3.5 8.5 -0.5 -3.5 7.5 0.5 -3.5 8.5 0.5 -3.5 7.5 0.5 -4.5\n\t\t 8.5 0.5 -4.5 7.5 -0.5 -4.5 8.5 -0.5 -4.5 9.5 -0.5 -3.5 10.5 -0.5 -3.5 9.5 0.5 -3.5\n\t\t 10.5 0.5 -3.5 9.5 0.5 -4.5 10.5 0.5 -4.5 9.5 -0.5 -4.5 10.5 -0.5 -4.5 -0.5 -0.5 -1.5\n\t\t 0.5 -0.5 -1.5;\n\tsetAttr \".vt[498:663]\" -0.5 0.5 -1.5 0.5 0.5 -1.5 -0.5 0.5 -2.5 0.5 0.5 -2.5\n\t\t -0.5 -0.5 -2.5 0.5 -0.5 -2.5 3.5 -0.5 -1.5 4.5 -0.5 -1.5 3.5 0.5 -1.5 4.5 0.5 -1.5\n\t\t 3.5 0.5 -2.5 4.5 0.5 -2.5 3.5 -0.5 -2.5 4.5 -0.5 -2.5 1.5 -0.5 -1.5 2.5 -0.5 -1.5\n\t\t 1.5 0.5 -1.5 2.5 0.5 -1.5 1.5 0.5 -2.5 2.5 0.5 -2.5 1.5 -0.5 -2.5 2.5 -0.5 -2.5 -12.5 -0.5 -1.5\n\t\t -11.5 -0.5 -1.5 -12.5 0.5 -1.5 -11.5 0.5 -1.5 -12.5 0.5 -2.5 -11.5 0.5 -2.5 -12.5 -0.5 -2.5\n\t\t -11.5 -0.5 -2.5 11.5 -0.5 2.5 12.5 -0.5 2.5 11.5 0.5 2.5 12.5 0.5 2.5 11.5 0.5 1.5\n\t\t 12.5 0.5 1.5 11.5 -0.5 1.5 12.5 -0.5 1.5 7.5 -0.5 2.5 8.5 -0.5 2.5 7.5 0.5 2.5 8.5 0.5 2.5\n\t\t 7.5 0.5 1.5 8.5 0.5 1.5 7.5 -0.5 1.5 8.5 -0.5 1.5 9.5 -0.5 2.5 10.5 -0.5 2.5 9.5 0.5 2.5\n\t\t 10.5 0.5 2.5 9.5 0.5 1.5 10.5 0.5 1.5 9.5 -0.5 1.5 10.5 -0.5 1.5 -2.5 -0.5 2.5 -1.5 -0.5 2.5\n\t\t -2.5 0.5 2.5 -1.5 0.5 2.5 -2.5 0.5 1.5 -1.5 0.5 1.5 -2.5 -0.5 1.5 -1.5 -0.5 1.5 -4.5 -0.5 2.5\n\t\t -3.5 -0.5 2.5 -4.5 0.5 2.5 -3.5 0.5 2.5 -4.5 0.5 1.5 -3.5 0.5 1.5 -4.5 -0.5 1.5 -3.5 -0.5 1.5\n\t\t -0.5 -0.5 2.5 0.5 -0.5 2.5 -0.5 0.5 2.5 0.5 0.5 2.5 -0.5 0.5 1.5 0.5 0.5 1.5 -0.5 -0.5 1.5\n\t\t 0.5 -0.5 1.5 3.5 -0.5 2.5 4.5 -0.5 2.5 3.5 0.5 2.5 4.5 0.5 2.5 3.5 0.5 1.5 4.5 0.5 1.5\n\t\t 3.5 -0.5 1.5 4.5 -0.5 1.5 1.5 -0.5 2.5 2.5 -0.5 2.5 1.5 0.5 2.5 2.5 0.5 2.5 1.5 0.5 1.5\n\t\t 2.5 0.5 1.5 1.5 -0.5 1.5 2.5 -0.5 1.5 -12.5 -0.5 2.5 -11.5 -0.5 2.5 -12.5 0.5 2.5\n\t\t -11.5 0.5 2.5 -12.5 0.5 1.5 -11.5 0.5 1.5 -12.5 -0.5 1.5 -11.5 -0.5 1.5 5.5 -0.5 8.5\n\t\t 6.5 -0.5 8.5 5.5 0.5 8.5 6.5 0.5 8.5 5.5 0.5 7.5 6.5 0.5 7.5 5.5 -0.5 7.5 6.5 -0.5 7.5\n\t\t -10.5 -0.5 6.5 -9.5 -0.5 6.5 -10.5 0.5 6.5 -9.5 0.5 6.5 -10.5 0.5 5.5 -9.5 0.5 5.5\n\t\t -10.5 -0.5 5.5 -9.5 -0.5 5.5 -10.5 -0.5 -11.5 -9.5 -0.5 -11.5 -10.5 0.5 -11.5 -9.5 0.5 -11.5\n\t\t -10.5 0.5 -12.5 -9.5 0.5 -12.5 -10.5 -0.5 -12.5 -9.5 -0.5 -12.5 -6.5 -0.5 -11.5 -5.5 -0.5 -11.5\n\t\t -6.5 0.5 -11.5 -5.5 0.5 -11.5 -6.5 0.5 -12.5 -5.5 0.5 -12.5 -6.5 -0.5 -12.5 -5.5 -0.5 -12.5\n\t\t 1.5 -0.5 -11.5 2.5 -0.5 -11.5 1.5 0.5 -11.5 2.5 0.5 -11.5 1.5 0.5 -12.5 2.5 0.5 -12.5\n\t\t 1.5 -0.5 -12.5 2.5 -0.5 -12.5 -12.5 -0.5 -11.5 -11.5 -0.5 -11.5 -12.5 0.5 -11.5 -11.5 0.5 -11.5\n\t\t -12.5 0.5 -12.5 -11.5 0.5 -12.5 -12.5 -0.5 -12.5 -11.5 -0.5 -12.5 -4.5 -0.5 -11.5\n\t\t -3.5 -0.5 -11.5 -4.5 0.5 -11.5 -3.5 0.5 -11.5 -4.5 0.5 -12.5 -3.5 0.5 -12.5 -4.5 -0.5 -12.5\n\t\t -3.5 -0.5 -12.5 -0.5 -0.5 -11.5 0.5 -0.5 -11.5 -0.5 0.5 -11.5 0.5 0.5 -11.5 -0.5 0.5 -12.5\n\t\t 0.5 0.5 -12.5 -0.5 -0.5 -12.5 0.5 -0.5 -12.5;\n\tsetAttr \".vt[664:829]\" -2.5 -0.5 12.5 -1.5 -0.5 12.5 -2.5 0.5 12.5 -1.5 0.5 12.5\n\t\t -2.5 0.5 11.5 -1.5 0.5 11.5 -2.5 -0.5 11.5 -1.5 -0.5 11.5 -0.5 -0.5 10.5 0.5 -0.5 10.5\n\t\t -0.5 0.5 10.5 0.5 0.5 10.5 -0.5 0.5 9.5 0.5 0.5 9.5 -0.5 -0.5 9.5 0.5 -0.5 9.5 9.5 -0.5 8.5\n\t\t 10.5 -0.5 8.5 9.5 0.5 8.5 10.5 0.5 8.5 9.5 0.5 7.5 10.5 0.5 7.5 9.5 -0.5 7.5 10.5 -0.5 7.5\n\t\t 5.5 -0.5 -11.5 6.5 -0.5 -11.5 5.5 0.5 -11.5 6.5 0.5 -11.5 5.5 0.5 -12.5 6.5 0.5 -12.5\n\t\t 5.5 -0.5 -12.5 6.5 -0.5 -12.5 -4.5 -0.5 10.5 -3.5 -0.5 10.5 -4.5 0.5 10.5 -3.5 0.5 10.5\n\t\t -4.5 0.5 9.5 -3.5 0.5 9.5 -4.5 -0.5 9.5 -3.5 -0.5 9.5 1.5 -0.5 10.5 2.5 -0.5 10.5\n\t\t 1.5 0.5 10.5 2.5 0.5 10.5 1.5 0.5 9.5 2.5 0.5 9.5 1.5 -0.5 9.5 2.5 -0.5 9.5 3.5 -0.5 10.5\n\t\t 4.5 -0.5 10.5 3.5 0.5 10.5 4.5 0.5 10.5 3.5 0.5 9.5 4.5 0.5 9.5 3.5 -0.5 9.5 4.5 -0.5 9.5\n\t\t 9.5 -0.5 -11.5 10.5 -0.5 -11.5 9.5 0.5 -11.5 10.5 0.5 -11.5 9.5 0.5 -12.5 10.5 0.5 -12.5\n\t\t 9.5 -0.5 -12.5 10.5 -0.5 -12.5 7.5 -0.5 -11.5 8.5 -0.5 -11.5 7.5 0.5 -11.5 8.5 0.5 -11.5\n\t\t 7.5 0.5 -12.5 8.5 0.5 -12.5 7.5 -0.5 -12.5 8.5 -0.5 -12.5 7.5 -0.5 8.5 8.5 -0.5 8.5\n\t\t 7.5 0.5 8.5 8.5 0.5 8.5 7.5 0.5 7.5 8.5 0.5 7.5 7.5 -0.5 7.5 8.5 -0.5 7.5 11.5 -0.5 8.5\n\t\t 12.5 -0.5 8.5 11.5 0.5 8.5 12.5 0.5 8.5 11.5 0.5 7.5 12.5 0.5 7.5 11.5 -0.5 7.5 12.5 -0.5 7.5\n\t\t -8.5 -0.5 -11.5 -7.5 -0.5 -11.5 -8.5 0.5 -11.5 -7.5 0.5 -11.5 -8.5 0.5 -12.5 -7.5 0.5 -12.5\n\t\t -8.5 -0.5 -12.5 -7.5 -0.5 -12.5 7.5 -0.5 12.5 8.5 -0.5 12.5 7.5 0.5 12.5 8.5 0.5 12.5\n\t\t 7.5 0.5 11.5 8.5 0.5 11.5 7.5 -0.5 11.5 8.5 -0.5 11.5 5.5 -0.5 12.5 6.5 -0.5 12.5\n\t\t 5.5 0.5 12.5 6.5 0.5 12.5 5.5 0.5 11.5 6.5 0.5 11.5 5.5 -0.5 11.5 6.5 -0.5 11.5 -10.5 -0.5 10.5\n\t\t -9.5 -0.5 10.5 -10.5 0.5 10.5 -9.5 0.5 10.5 -10.5 0.5 9.5 -9.5 0.5 9.5 -10.5 -0.5 9.5\n\t\t -9.5 -0.5 9.5 -12.5 -0.5 12.5 -11.5 -0.5 12.5 -12.5 0.5 12.5 -11.5 0.5 12.5 -12.5 0.5 11.5\n\t\t -11.5 0.5 11.5 -12.5 -0.5 11.5 -11.5 -0.5 11.5 -6.5 -0.5 10.5 -5.5 -0.5 10.5 -6.5 0.5 10.5\n\t\t -5.5 0.5 10.5 -6.5 0.5 9.5 -5.5 0.5 9.5 -6.5 -0.5 9.5 -5.5 -0.5 9.5 3.5 -0.5 -11.5\n\t\t 4.5 -0.5 -11.5 3.5 0.5 -11.5 4.5 0.5 -11.5 3.5 0.5 -12.5 4.5 0.5 -12.5 3.5 -0.5 -12.5\n\t\t 4.5 -0.5 -12.5 -12.5 -0.5 10.5 -11.5 -0.5 10.5 -12.5 0.5 10.5 -11.5 0.5 10.5 -12.5 0.5 9.5\n\t\t -11.5 0.5 9.5 -12.5 -0.5 9.5 -11.5 -0.5 9.5 11.5 -0.5 -11.5 12.5 -0.5 -11.5 11.5 0.5 -11.5\n\t\t 12.5 0.5 -11.5 11.5 0.5 -12.5 12.5 0.5 -12.5 11.5 -0.5 -12.5 12.5 -0.5 -12.5 -2.5 -0.5 -11.5\n\t\t -1.5 -0.5 -11.5 -2.5 0.5 -11.5 -1.5 0.5 -11.5 -2.5 0.5 -12.5 -1.5 0.5 -12.5;\n\tsetAttr \".vt[830:995]\" -2.5 -0.5 -12.5 -1.5 -0.5 -12.5 11.5 -0.5 12.5 12.5 -0.5 12.5\n\t\t 11.5 0.5 12.5 12.5 0.5 12.5 11.5 0.5 11.5 12.5 0.5 11.5 11.5 -0.5 11.5 12.5 -0.5 11.5\n\t\t 3.5 -0.5 12.5 4.5 -0.5 12.5 3.5 0.5 12.5 4.5 0.5 12.5 3.5 0.5 11.5 4.5 0.5 11.5 3.5 -0.5 11.5\n\t\t 4.5 -0.5 11.5 -8.5 -0.5 10.5 -7.5 -0.5 10.5 -8.5 0.5 10.5 -7.5 0.5 10.5 -8.5 0.5 9.5\n\t\t -7.5 0.5 9.5 -8.5 -0.5 9.5 -7.5 -0.5 9.5 -4.5 -0.5 12.5 -3.5 -0.5 12.5 -4.5 0.5 12.5\n\t\t -3.5 0.5 12.5 -4.5 0.5 11.5 -3.5 0.5 11.5 -4.5 -0.5 11.5 -3.5 -0.5 11.5 -6.5 -0.5 12.5\n\t\t -5.5 -0.5 12.5 -6.5 0.5 12.5 -5.5 0.5 12.5 -6.5 0.5 11.5 -5.5 0.5 11.5 -6.5 -0.5 11.5\n\t\t -5.5 -0.5 11.5 9.5 -0.5 12.5 10.5 -0.5 12.5 9.5 0.5 12.5 10.5 0.5 12.5 9.5 0.5 11.5\n\t\t 10.5 0.5 11.5 9.5 -0.5 11.5 10.5 -0.5 11.5 -0.5 -0.5 12.5 0.5 -0.5 12.5 -0.5 0.5 12.5\n\t\t 0.5 0.5 12.5 -0.5 0.5 11.5 0.5 0.5 11.5 -0.5 -0.5 11.5 0.5 -0.5 11.5 -10.5 -0.5 12.5\n\t\t -9.5 -0.5 12.5 -10.5 0.5 12.5 -9.5 0.5 12.5 -10.5 0.5 11.5 -9.5 0.5 11.5 -10.5 -0.5 11.5\n\t\t -9.5 -0.5 11.5 -8.5 -0.5 12.5 -7.5 -0.5 12.5 -8.5 0.5 12.5 -7.5 0.5 12.5 -8.5 0.5 11.5\n\t\t -7.5 0.5 11.5 -8.5 -0.5 11.5 -7.5 -0.5 11.5 1.5 -0.5 12.5 2.5 -0.5 12.5 1.5 0.5 12.5\n\t\t 2.5 0.5 12.5 1.5 0.5 11.5 2.5 0.5 11.5 1.5 -0.5 11.5 2.5 -0.5 11.5 9.5 -0.5 -7.5\n\t\t 10.5 -0.5 -7.5 9.5 0.5 -7.5 10.5 0.5 -7.5 9.5 0.5 -8.5 10.5 0.5 -8.5 9.5 -0.5 -8.5\n\t\t 10.5 -0.5 -8.5 7.5 -0.5 -7.5 8.5 -0.5 -7.5 7.5 0.5 -7.5 8.5 0.5 -7.5 7.5 0.5 -8.5\n\t\t 8.5 0.5 -8.5 7.5 -0.5 -8.5 8.5 -0.5 -8.5 11.5 -0.5 -7.5 12.5 -0.5 -7.5 11.5 0.5 -7.5\n\t\t 12.5 0.5 -7.5 11.5 0.5 -8.5 12.5 0.5 -8.5 11.5 -0.5 -8.5 12.5 -0.5 -8.5 -8.5 -0.5 -9.5\n\t\t -7.5 -0.5 -9.5 -8.5 0.5 -9.5 -7.5 0.5 -9.5 -8.5 0.5 -10.5 -7.5 0.5 -10.5 -8.5 -0.5 -10.5\n\t\t -7.5 -0.5 -10.5 5.5 -0.5 -9.5 6.5 -0.5 -9.5 5.5 0.5 -9.5 6.5 0.5 -9.5 5.5 0.5 -10.5\n\t\t 6.5 0.5 -10.5 5.5 -0.5 -10.5 6.5 -0.5 -10.5 5.5 -0.5 -7.5 6.5 -0.5 -7.5 5.5 0.5 -7.5\n\t\t 6.5 0.5 -7.5 5.5 0.5 -8.5 6.5 0.5 -8.5 5.5 -0.5 -8.5 6.5 -0.5 -8.5 9.5 -0.5 -9.5\n\t\t 10.5 -0.5 -9.5 9.5 0.5 -9.5 10.5 0.5 -9.5 9.5 0.5 -10.5 10.5 0.5 -10.5 9.5 -0.5 -10.5\n\t\t 10.5 -0.5 -10.5 7.5 -0.5 -9.5 8.5 -0.5 -9.5 7.5 0.5 -9.5 8.5 0.5 -9.5 7.5 0.5 -10.5\n\t\t 8.5 0.5 -10.5 7.5 -0.5 -10.5 8.5 -0.5 -10.5 11.5 -0.5 -9.5 12.5 -0.5 -9.5 11.5 0.5 -9.5\n\t\t 12.5 0.5 -9.5 11.5 0.5 -10.5 12.5 0.5 -10.5 11.5 -0.5 -10.5 12.5 -0.5 -10.5 -2.5 -0.5 -9.5\n\t\t -1.5 -0.5 -9.5 -2.5 0.5 -9.5 -1.5 0.5 -9.5 -2.5 0.5 -10.5 -1.5 0.5 -10.5 -2.5 -0.5 -10.5\n\t\t -1.5 -0.5 -10.5 3.5 -0.5 -9.5 4.5 -0.5 -9.5 3.5 0.5 -9.5 4.5 0.5 -9.5;\n\tsetAttr \".vt[996:1161]\" 3.5 0.5 -10.5 4.5 0.5 -10.5 3.5 -0.5 -10.5 4.5 -0.5 -10.5\n\t\t -0.5 -0.5 -9.5 0.5 -0.5 -9.5 -0.5 0.5 -9.5 0.5 0.5 -9.5 -0.5 0.5 -10.5 0.5 0.5 -10.5\n\t\t -0.5 -0.5 -10.5 0.5 -0.5 -10.5 -4.5 -0.5 -9.5 -3.5 -0.5 -9.5 -4.5 0.5 -9.5 -3.5 0.5 -9.5\n\t\t -4.5 0.5 -10.5 -3.5 0.5 -10.5 -4.5 -0.5 -10.5 -3.5 -0.5 -10.5 -12.5 -0.5 -9.5 -11.5 -0.5 -9.5\n\t\t -12.5 0.5 -9.5 -11.5 0.5 -9.5 -12.5 0.5 -10.5 -11.5 0.5 -10.5 -12.5 -0.5 -10.5 -11.5 -0.5 -10.5\n\t\t 1.5 -0.5 -9.5 2.5 -0.5 -9.5 1.5 0.5 -9.5 2.5 0.5 -9.5 1.5 0.5 -10.5 2.5 0.5 -10.5\n\t\t 1.5 -0.5 -10.5 2.5 -0.5 -10.5 5.5 -0.5 10.5 6.5 -0.5 10.5 5.5 0.5 10.5 6.5 0.5 10.5\n\t\t 5.5 0.5 9.5 6.5 0.5 9.5 5.5 -0.5 9.5 6.5 -0.5 9.5 11.5 -0.5 10.5 12.5 -0.5 10.5 11.5 0.5 10.5\n\t\t 12.5 0.5 10.5 11.5 0.5 9.5 12.5 0.5 9.5 11.5 -0.5 9.5 12.5 -0.5 9.5 7.5 -0.5 10.5\n\t\t 8.5 -0.5 10.5 7.5 0.5 10.5 8.5 0.5 10.5 7.5 0.5 9.5 8.5 0.5 9.5 7.5 -0.5 9.5 8.5 -0.5 9.5\n\t\t 9.5 -0.5 10.5 10.5 -0.5 10.5 9.5 0.5 10.5 10.5 0.5 10.5 9.5 0.5 9.5 10.5 0.5 9.5\n\t\t 9.5 -0.5 9.5 10.5 -0.5 9.5 -2.5 -0.5 10.5 -1.5 -0.5 10.5 -2.5 0.5 10.5 -1.5 0.5 10.5\n\t\t -2.5 0.5 9.5 -1.5 0.5 9.5 -2.5 -0.5 9.5 -1.5 -0.5 9.5 -12.5 -0.5 6.5 -11.5 -0.5 6.5\n\t\t -12.5 0.5 6.5 -11.5 0.5 6.5 -12.5 0.5 5.5 -11.5 0.5 5.5 -12.5 -0.5 5.5 -11.5 -0.5 5.5\n\t\t 1.5 -0.5 6.5 2.5 -0.5 6.5 1.5 0.5 6.5 2.5 0.5 6.5 1.5 0.5 5.5 2.5 0.5 5.5 1.5 -0.5 5.5\n\t\t 2.5 -0.5 5.5 3.5 -0.5 6.5 4.5 -0.5 6.5 3.5 0.5 6.5 4.5 0.5 6.5 3.5 0.5 5.5 4.5 0.5 5.5\n\t\t 3.5 -0.5 5.5 4.5 -0.5 5.5 -0.5 -0.5 6.5 0.5 -0.5 6.5 -0.5 0.5 6.5 0.5 0.5 6.5 -0.5 0.5 5.5\n\t\t 0.5 0.5 5.5 -0.5 -0.5 5.5 0.5 -0.5 5.5 9.5 -0.5 4.5 10.5 -0.5 4.5 9.5 0.5 4.5 10.5 0.5 4.5\n\t\t 9.5 0.5 3.5 10.5 0.5 3.5 9.5 -0.5 3.5 10.5 -0.5 3.5 7.5 -0.5 4.5 8.5 -0.5 4.5 7.5 0.5 4.5\n\t\t 8.5 0.5 4.5 7.5 0.5 3.5 8.5 0.5 3.5 7.5 -0.5 3.5 8.5 -0.5 3.5 11.5 -0.5 4.5 12.5 -0.5 4.5\n\t\t 11.5 0.5 4.5 12.5 0.5 4.5 11.5 0.5 3.5 12.5 0.5 3.5 11.5 -0.5 3.5 12.5 -0.5 3.5 -8.5 -0.5 2.5\n\t\t -7.5 -0.5 2.5 -8.5 0.5 2.5 -7.5 0.5 2.5 -8.5 0.5 1.5 -7.5 0.5 1.5 -8.5 -0.5 1.5 -7.5 -0.5 1.5\n\t\t -6.5 -0.5 2.5 -5.5 -0.5 2.5 -6.5 0.5 2.5 -5.5 0.5 2.5 -6.5 0.5 1.5 -5.5 0.5 1.5 -6.5 -0.5 1.5\n\t\t -5.5 -0.5 1.5 -4.5 -0.5 6.5 -3.5 -0.5 6.5 -4.5 0.5 6.5 -3.5 0.5 6.5 -4.5 0.5 5.5\n\t\t -3.5 0.5 5.5 -4.5 -0.5 5.5 -3.5 -0.5 5.5 -2.5 -0.5 6.5 -1.5 -0.5 6.5 -2.5 0.5 6.5\n\t\t -1.5 0.5 6.5 -2.5 0.5 5.5 -1.5 0.5 5.5 -2.5 -0.5 5.5 -1.5 -0.5 5.5 9.5 -0.5 6.5 10.5 -0.5 6.5;\n\tsetAttr \".vt[1162:1327]\" 9.5 0.5 6.5 10.5 0.5 6.5 9.5 0.5 5.5 10.5 0.5 5.5 9.5 -0.5 5.5\n\t\t 10.5 -0.5 5.5 7.5 -0.5 6.5 8.5 -0.5 6.5 7.5 0.5 6.5 8.5 0.5 6.5 7.5 0.5 5.5 8.5 0.5 5.5\n\t\t 7.5 -0.5 5.5 8.5 -0.5 5.5 11.5 -0.5 6.5 12.5 -0.5 6.5 11.5 0.5 6.5 12.5 0.5 6.5 11.5 0.5 5.5\n\t\t 12.5 0.5 5.5 11.5 -0.5 5.5 12.5 -0.5 5.5 5.5 -0.5 6.5 6.5 -0.5 6.5 5.5 0.5 6.5 6.5 0.5 6.5\n\t\t 5.5 0.5 5.5 6.5 0.5 5.5 5.5 -0.5 5.5 6.5 -0.5 5.5 -10.5 -0.5 4.5 -9.5 -0.5 4.5 -10.5 0.5 4.5\n\t\t -9.5 0.5 4.5 -10.5 0.5 3.5 -9.5 0.5 3.5 -10.5 -0.5 3.5 -9.5 -0.5 3.5 3.5 -0.5 4.5\n\t\t 4.5 -0.5 4.5 3.5 0.5 4.5 4.5 0.5 4.5 3.5 0.5 3.5 4.5 0.5 3.5 3.5 -0.5 3.5 4.5 -0.5 3.5\n\t\t -12.5 -0.5 4.5 -11.5 -0.5 4.5 -12.5 0.5 4.5 -11.5 0.5 4.5 -12.5 0.5 3.5 -11.5 0.5 3.5\n\t\t -12.5 -0.5 3.5 -11.5 -0.5 3.5 -6.5 -0.5 4.5 -5.5 -0.5 4.5 -6.5 0.5 4.5 -5.5 0.5 4.5\n\t\t -6.5 0.5 3.5 -5.5 0.5 3.5 -6.5 -0.5 3.5 -5.5 -0.5 3.5 -8.5 -0.5 4.5 -7.5 -0.5 4.5\n\t\t -8.5 0.5 4.5 -7.5 0.5 4.5 -8.5 0.5 3.5 -7.5 0.5 3.5 -8.5 -0.5 3.5 -7.5 -0.5 3.5 -0.5 -0.5 4.5\n\t\t 0.5 -0.5 4.5 -0.5 0.5 4.5 0.5 0.5 4.5 -0.5 0.5 3.5 0.5 0.5 3.5 -0.5 -0.5 3.5 0.5 -0.5 3.5\n\t\t 1.5 -0.5 4.5 2.5 -0.5 4.5 1.5 0.5 4.5 2.5 0.5 4.5 1.5 0.5 3.5 2.5 0.5 3.5 1.5 -0.5 3.5\n\t\t 2.5 -0.5 3.5 -4.5 -0.5 4.5 -3.5 -0.5 4.5 -4.5 0.5 4.5 -3.5 0.5 4.5 -4.5 0.5 3.5 -3.5 0.5 3.5\n\t\t -4.5 -0.5 3.5 -3.5 -0.5 3.5 -2.5 -0.5 4.5 -1.5 -0.5 4.5 -2.5 0.5 4.5 -1.5 0.5 4.5\n\t\t -2.5 0.5 3.5 -1.5 0.5 3.5 -2.5 -0.5 3.5 -1.5 -0.5 3.5 -10.5 -0.5 2.5 -9.5 -0.5 2.5\n\t\t -10.5 0.5 2.5 -9.5 0.5 2.5 -10.5 0.5 1.5 -9.5 0.5 1.5 -10.5 -0.5 1.5 -9.5 -0.5 1.5\n\t\t 5.5 -0.5 4.5 6.5 -0.5 4.5 5.5 0.5 4.5 6.5 0.5 4.5 5.5 0.5 3.5 6.5 0.5 3.5 5.5 -0.5 3.5\n\t\t 6.5 -0.5 3.5 5.5 -0.5 2.5 6.5 -0.5 2.5 5.5 0.5 2.5 6.5 0.5 2.5 5.5 0.5 1.5 6.5 0.5 1.5\n\t\t 5.5 -0.5 1.5 6.5 -0.5 1.5 -6.5 -0.5 -9.5 -5.5 -0.5 -9.5 -6.5 0.5 -9.5 -5.5 0.5 -9.5\n\t\t -6.5 0.5 -10.5 -5.5 0.5 -10.5 -6.5 -0.5 -10.5 -5.5 -0.5 -10.5 -10.5 -0.5 -7.5 -9.5 -0.5 -7.5\n\t\t -10.5 0.5 -7.5 -9.5 0.5 -7.5 -10.5 0.5 -8.5 -9.5 0.5 -8.5 -10.5 -0.5 -8.5 -9.5 -0.5 -8.5\n\t\t 3.5 -0.5 -7.5 4.5 -0.5 -7.5 3.5 0.5 -7.5 4.5 0.5 -7.5 3.5 0.5 -8.5 4.5 0.5 -8.5 3.5 -0.5 -8.5\n\t\t 4.5 -0.5 -8.5 -12.5 -0.5 -7.5 -11.5 -0.5 -7.5 -12.5 0.5 -7.5 -11.5 0.5 -7.5 -12.5 0.5 -8.5\n\t\t -11.5 0.5 -8.5 -12.5 -0.5 -8.5 -11.5 -0.5 -8.5 -6.5 -0.5 -7.5 -5.5 -0.5 -7.5 -6.5 0.5 -7.5\n\t\t -5.5 0.5 -7.5 -6.5 0.5 -8.5 -5.5 0.5 -8.5 -6.5 -0.5 -8.5 -5.5 -0.5 -8.5;\n\tsetAttr \".vt[1328:1375]\" -8.5 -0.5 -7.5 -7.5 -0.5 -7.5 -8.5 0.5 -7.5 -7.5 0.5 -7.5\n\t\t -8.5 0.5 -8.5 -7.5 0.5 -8.5 -8.5 -0.5 -8.5 -7.5 -0.5 -8.5 -0.5 -0.5 -7.5 0.5 -0.5 -7.5\n\t\t -0.5 0.5 -7.5 0.5 0.5 -7.5 -0.5 0.5 -8.5 0.5 0.5 -8.5 -0.5 -0.5 -8.5 0.5 -0.5 -8.5\n\t\t 1.5 -0.5 -7.5 2.5 -0.5 -7.5 1.5 0.5 -7.5 2.5 0.5 -7.5 1.5 0.5 -8.5 2.5 0.5 -8.5 1.5 -0.5 -8.5\n\t\t 2.5 -0.5 -8.5 -4.5 -0.5 -7.5 -3.5 -0.5 -7.5 -4.5 0.5 -7.5 -3.5 0.5 -7.5 -4.5 0.5 -8.5\n\t\t -3.5 0.5 -8.5 -4.5 -0.5 -8.5 -3.5 -0.5 -8.5 -2.5 -0.5 -7.5 -1.5 -0.5 -7.5 -2.5 0.5 -7.5\n\t\t -1.5 0.5 -7.5 -2.5 0.5 -8.5 -1.5 0.5 -8.5 -2.5 -0.5 -8.5 -1.5 -0.5 -8.5 -10.5 -0.5 -9.5\n\t\t -9.5 -0.5 -9.5 -10.5 0.5 -9.5 -9.5 0.5 -9.5 -10.5 0.5 -10.5 -9.5 0.5 -10.5 -10.5 -0.5 -10.5\n\t\t -9.5 -0.5 -10.5;\n\tsetAttr -s 2064 \".ed\";\n\tsetAttr \".ed[0:165]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0\n\t\t 5 7 0 6 0 0 7 1 0 8 9 0 10 11 0 12 13 0 14 15 0 8 10 0 9 11 0 10 12 0 11 13 0 12 14 0\n\t\t 13 15 0 14 8 0 15 9 0 16 17 0 18 19 0 20 21 0 22 23 0 16 18 0 17 19 0 18 20 0 19 21 0\n\t\t 20 22 0 21 23 0 22 16 0 23 17 0 24 25 0 26 27 0 28 29 0 30 31 0 24 26 0 25 27 0 26 28 0\n\t\t 27 29 0 28 30 0 29 31 0 30 24 0 31 25 0 32 33 0 34 35 0 36 37 0 38 39 0 32 34 0 33 35 0\n\t\t 34 36 0 35 37 0 36 38 0 37 39 0 38 32 0 39 33 0 40 41 0 42 43 0 44 45 0 46 47 0 40 42 0\n\t\t 41 43 0 42 44 0 43 45 0 44 46 0 45 47 0 46 40 0 47 41 0 48 49 0 50 51 0 52 53 0 54 55 0\n\t\t 48 50 0 49 51 0 50 52 0 51 53 0 52 54 0 53 55 0 54 48 0 55 49 0 56 57 0 58 59 0 60 61 0\n\t\t 62 63 0 56 58 0 57 59 0 58 60 0 59 61 0 60 62 0 61 63 0 62 56 0 63 57 0 64 65 0 66 67 0\n\t\t 68 69 0 70 71 0 64 66 0 65 67 0 66 68 0 67 69 0 68 70 0 69 71 0 70 64 0 71 65 0 72 73 0\n\t\t 74 75 0 76 77 0 78 79 0 72 74 0 73 75 0 74 76 0 75 77 0 76 78 0 77 79 0 78 72 0 79 73 0\n\t\t 80 81 0 82 83 0 84 85 0 86 87 0 80 82 0 81 83 0 82 84 0 83 85 0 84 86 0 85 87 0 86 80 0\n\t\t 87 81 0 88 89 0 90 91 0 92 93 0 94 95 0 88 90 0 89 91 0 90 92 0 91 93 0 92 94 0 93 95 0\n\t\t 94 88 0 95 89 0 96 97 0 98 99 0 100 101 0 102 103 0 96 98 0 97 99 0 98 100 0 99 101 0\n\t\t 100 102 0 101 103 0 102 96 0 103 97 0 104 105 0 106 107 0 108 109 0 110 111 0 104 106 0\n\t\t 105 107 0 106 108 0 107 109 0 108 110 0 109 111 0;\n\tsetAttr \".ed[166:331]\" 110 104 0 111 105 0 112 113 0 114 115 0 116 117 0 118 119 0\n\t\t 112 114 0 113 115 0 114 116 0 115 117 0 116 118 0 117 119 0 118 112 0 119 113 0 120 121 0\n\t\t 122 123 0 124 125 0 126 127 0 120 122 0 121 123 0 122 124 0 123 125 0 124 126 0 125 127 0\n\t\t 126 120 0 127 121 0 128 129 0 130 131 0 132 133 0 134 135 0 128 130 0 129 131 0 130 132 0\n\t\t 131 133 0 132 134 0 133 135 0 134 128 0 135 129 0 136 137 0 138 139 0 140 141 0 142 143 0\n\t\t 136 138 0 137 139 0 138 140 0 139 141 0 140 142 0 141 143 0 142 136 0 143 137 0 144 145 0\n\t\t 146 147 0 148 149 0 150 151 0 144 146 0 145 147 0 146 148 0 147 149 0 148 150 0 149 151 0\n\t\t 150 144 0 151 145 0 152 153 0 154 155 0 156 157 0 158 159 0 152 154 0 153 155 0 154 156 0\n\t\t 155 157 0 156 158 0 157 159 0 158 152 0 159 153 0 160 161 0 162 163 0 164 165 0 166 167 0\n\t\t 160 162 0 161 163 0 162 164 0 163 165 0 164 166 0 165 167 0 166 160 0 167 161 0 168 169 0\n\t\t 170 171 0 172 173 0 174 175 0 168 170 0 169 171 0 170 172 0 171 173 0 172 174 0 173 175 0\n\t\t 174 168 0 175 169 0 176 177 0 178 179 0 180 181 0 182 183 0 176 178 0 177 179 0 178 180 0\n\t\t 179 181 0 180 182 0 181 183 0 182 176 0 183 177 0 184 185 0 186 187 0 188 189 0 190 191 0\n\t\t 184 186 0 185 187 0 186 188 0 187 189 0 188 190 0 189 191 0 190 184 0 191 185 0 192 193 0\n\t\t 194 195 0 196 197 0 198 199 0 192 194 0 193 195 0 194 196 0 195 197 0 196 198 0 197 199 0\n\t\t 198 192 0 199 193 0 200 201 0 202 203 0 204 205 0 206 207 0 200 202 0 201 203 0 202 204 0\n\t\t 203 205 0 204 206 0 205 207 0 206 200 0 207 201 0 208 209 0 210 211 0 212 213 0 214 215 0\n\t\t 208 210 0 209 211 0 210 212 0 211 213 0 212 214 0 213 215 0 214 208 0 215 209 0 216 217 0\n\t\t 218 219 0 220 221 0 222 223 0 216 218 0 217 219 0 218 220 0 219 221 0;\n\tsetAttr \".ed[332:497]\" 220 222 0 221 223 0 222 216 0 223 217 0 224 225 0 226 227 0\n\t\t 228 229 0 230 231 0 224 226 0 225 227 0 226 228 0 227 229 0 228 230 0 229 231 0 230 224 0\n\t\t 231 225 0 232 233 0 234 235 0 236 237 0 238 239 0 232 234 0 233 235 0 234 236 0 235 237 0\n\t\t 236 238 0 237 239 0 238 232 0 239 233 0 240 241 0 242 243 0 244 245 0 246 247 0 240 242 0\n\t\t 241 243 0 242 244 0 243 245 0 244 246 0 245 247 0 246 240 0 247 241 0 248 249 0 250 251 0\n\t\t 252 253 0 254 255 0 248 250 0 249 251 0 250 252 0 251 253 0 252 254 0 253 255 0 254 248 0\n\t\t 255 249 0 256 257 0 258 259 0 260 261 0 262 263 0 256 258 0 257 259 0 258 260 0 259 261 0\n\t\t 260 262 0 261 263 0 262 256 0 263 257 0 264 265 0 266 267 0 268 269 0 270 271 0 264 266 0\n\t\t 265 267 0 266 268 0 267 269 0 268 270 0 269 271 0 270 264 0 271 265 0 272 273 0 274 275 0\n\t\t 276 277 0 278 279 0 272 274 0 273 275 0 274 276 0 275 277 0 276 278 0 277 279 0 278 272 0\n\t\t 279 273 0 280 281 0 282 283 0 284 285 0 286 287 0 280 282 0 281 283 0 282 284 0 283 285 0\n\t\t 284 286 0 285 287 0 286 280 0 287 281 0 288 289 0 290 291 0 292 293 0 294 295 0 288 290 0\n\t\t 289 291 0 290 292 0 291 293 0 292 294 0 293 295 0 294 288 0 295 289 0 296 297 0 298 299 0\n\t\t 300 301 0 302 303 0 296 298 0 297 299 0 298 300 0 299 301 0 300 302 0 301 303 0 302 296 0\n\t\t 303 297 0 304 305 0 306 307 0 308 309 0 310 311 0 304 306 0 305 307 0 306 308 0 307 309 0\n\t\t 308 310 0 309 311 0 310 304 0 311 305 0 312 313 0 314 315 0 316 317 0 318 319 0 312 314 0\n\t\t 313 315 0 314 316 0 315 317 0 316 318 0 317 319 0 318 312 0 319 313 0 320 321 0 322 323 0\n\t\t 324 325 0 326 327 0 320 322 0 321 323 0 322 324 0 323 325 0 324 326 0 325 327 0 326 320 0\n\t\t 327 321 0 328 329 0 330 331 0 332 333 0 334 335 0 328 330 0 329 331 0;\n\tsetAttr \".ed[498:663]\" 330 332 0 331 333 0 332 334 0 333 335 0 334 328 0 335 329 0\n\t\t 336 337 0 338 339 0 340 341 0 342 343 0 336 338 0 337 339 0 338 340 0 339 341 0 340 342 0\n\t\t 341 343 0 342 336 0 343 337 0 344 345 0 346 347 0 348 349 0 350 351 0 344 346 0 345 347 0\n\t\t 346 348 0 347 349 0 348 350 0 349 351 0 350 344 0 351 345 0 352 353 0 354 355 0 356 357 0\n\t\t 358 359 0 352 354 0 353 355 0 354 356 0 355 357 0 356 358 0 357 359 0 358 352 0 359 353 0\n\t\t 360 361 0 362 363 0 364 365 0 366 367 0 360 362 0 361 363 0 362 364 0 363 365 0 364 366 0\n\t\t 365 367 0 366 360 0 367 361 0 368 369 0 370 371 0 372 373 0 374 375 0 368 370 0 369 371 0\n\t\t 370 372 0 371 373 0 372 374 0 373 375 0 374 368 0 375 369 0 376 377 0 378 379 0 380 381 0\n\t\t 382 383 0 376 378 0 377 379 0 378 380 0 379 381 0 380 382 0 381 383 0 382 376 0 383 377 0\n\t\t 384 385 0 386 387 0 388 389 0 390 391 0 384 386 0 385 387 0 386 388 0 387 389 0 388 390 0\n\t\t 389 391 0 390 384 0 391 385 0 392 393 0 394 395 0 396 397 0 398 399 0 392 394 0 393 395 0\n\t\t 394 396 0 395 397 0 396 398 0 397 399 0 398 392 0 399 393 0 400 401 0 402 403 0 404 405 0\n\t\t 406 407 0 400 402 0 401 403 0 402 404 0 403 405 0 404 406 0 405 407 0 406 400 0 407 401 0\n\t\t 408 409 0 410 411 0 412 413 0 414 415 0 408 410 0 409 411 0 410 412 0 411 413 0 412 414 0\n\t\t 413 415 0 414 408 0 415 409 0 416 417 0 418 419 0 420 421 0 422 423 0 416 418 0 417 419 0\n\t\t 418 420 0 419 421 0 420 422 0 421 423 0 422 416 0 423 417 0 424 425 0 426 427 0 428 429 0\n\t\t 430 431 0 424 426 0 425 427 0 426 428 0 427 429 0 428 430 0 429 431 0 430 424 0 431 425 0\n\t\t 432 433 0 434 435 0 436 437 0 438 439 0 432 434 0 433 435 0 434 436 0 435 437 0 436 438 0\n\t\t 437 439 0 438 432 0 439 433 0 440 441 0 442 443 0 444 445 0 446 447 0;\n\tsetAttr \".ed[664:829]\" 440 442 0 441 443 0 442 444 0 443 445 0 444 446 0 445 447 0\n\t\t 446 440 0 447 441 0 448 449 0 450 451 0 452 453 0 454 455 0 448 450 0 449 451 0 450 452 0\n\t\t 451 453 0 452 454 0 453 455 0 454 448 0 455 449 0 456 457 0 458 459 0 460 461 0 462 463 0\n\t\t 456 458 0 457 459 0 458 460 0 459 461 0 460 462 0 461 463 0 462 456 0 463 457 0 464 465 0\n\t\t 466 467 0 468 469 0 470 471 0 464 466 0 465 467 0 466 468 0 467 469 0 468 470 0 469 471 0\n\t\t 470 464 0 471 465 0 472 473 0 474 475 0 476 477 0 478 479 0 472 474 0 473 475 0 474 476 0\n\t\t 475 477 0 476 478 0 477 479 0 478 472 0 479 473 0 480 481 0 482 483 0 484 485 0 486 487 0\n\t\t 480 482 0 481 483 0 482 484 0 483 485 0 484 486 0 485 487 0 486 480 0 487 481 0 488 489 0\n\t\t 490 491 0 492 493 0 494 495 0 488 490 0 489 491 0 490 492 0 491 493 0 492 494 0 493 495 0\n\t\t 494 488 0 495 489 0 496 497 0 498 499 0 500 501 0 502 503 0 496 498 0 497 499 0 498 500 0\n\t\t 499 501 0 500 502 0 501 503 0 502 496 0 503 497 0 504 505 0 506 507 0 508 509 0 510 511 0\n\t\t 504 506 0 505 507 0 506 508 0 507 509 0 508 510 0 509 511 0 510 504 0 511 505 0 512 513 0\n\t\t 514 515 0 516 517 0 518 519 0 512 514 0 513 515 0 514 516 0 515 517 0 516 518 0 517 519 0\n\t\t 518 512 0 519 513 0 520 521 0 522 523 0 524 525 0 526 527 0 520 522 0 521 523 0 522 524 0\n\t\t 523 525 0 524 526 0 525 527 0 526 520 0 527 521 0 528 529 0 530 531 0 532 533 0 534 535 0\n\t\t 528 530 0 529 531 0 530 532 0 531 533 0 532 534 0 533 535 0 534 528 0 535 529 0 536 537 0\n\t\t 538 539 0 540 541 0 542 543 0 536 538 0 537 539 0 538 540 0 539 541 0 540 542 0 541 543 0\n\t\t 542 536 0 543 537 0 544 545 0 546 547 0 548 549 0 550 551 0 544 546 0 545 547 0 546 548 0\n\t\t 547 549 0 548 550 0 549 551 0 550 544 0 551 545 0 552 553 0 554 555 0;\n\tsetAttr \".ed[830:995]\" 556 557 0 558 559 0 552 554 0 553 555 0 554 556 0 555 557 0\n\t\t 556 558 0 557 559 0 558 552 0 559 553 0 560 561 0 562 563 0 564 565 0 566 567 0 560 562 0\n\t\t 561 563 0 562 564 0 563 565 0 564 566 0 565 567 0 566 560 0 567 561 0 568 569 0 570 571 0\n\t\t 572 573 0 574 575 0 568 570 0 569 571 0 570 572 0 571 573 0 572 574 0 573 575 0 574 568 0\n\t\t 575 569 0 576 577 0 578 579 0 580 581 0 582 583 0 576 578 0 577 579 0 578 580 0 579 581 0\n\t\t 580 582 0 581 583 0 582 576 0 583 577 0 584 585 0 586 587 0 588 589 0 590 591 0 584 586 0\n\t\t 585 587 0 586 588 0 587 589 0 588 590 0 589 591 0 590 584 0 591 585 0 592 593 0 594 595 0\n\t\t 596 597 0 598 599 0 592 594 0 593 595 0 594 596 0 595 597 0 596 598 0 597 599 0 598 592 0\n\t\t 599 593 0 600 601 0 602 603 0 604 605 0 606 607 0 600 602 0 601 603 0 602 604 0 603 605 0\n\t\t 604 606 0 605 607 0 606 600 0 607 601 0 608 609 0 610 611 0 612 613 0 614 615 0 608 610 0\n\t\t 609 611 0 610 612 0 611 613 0 612 614 0 613 615 0 614 608 0 615 609 0 616 617 0 618 619 0\n\t\t 620 621 0 622 623 0 616 618 0 617 619 0 618 620 0 619 621 0 620 622 0 621 623 0 622 616 0\n\t\t 623 617 0 624 625 0 626 627 0 628 629 0 630 631 0 624 626 0 625 627 0 626 628 0 627 629 0\n\t\t 628 630 0 629 631 0 630 624 0 631 625 0 632 633 0 634 635 0 636 637 0 638 639 0 632 634 0\n\t\t 633 635 0 634 636 0 635 637 0 636 638 0 637 639 0 638 632 0 639 633 0 640 641 0 642 643 0\n\t\t 644 645 0 646 647 0 640 642 0 641 643 0 642 644 0 643 645 0 644 646 0 645 647 0 646 640 0\n\t\t 647 641 0 648 649 0 650 651 0 652 653 0 654 655 0 648 650 0 649 651 0 650 652 0 651 653 0\n\t\t 652 654 0 653 655 0 654 648 0 655 649 0 656 657 0 658 659 0 660 661 0 662 663 0 656 658 0\n\t\t 657 659 0 658 660 0 659 661 0 660 662 0 661 663 0 662 656 0 663 657 0;\n\tsetAttr \".ed[996:1161]\" 664 665 0 666 667 0 668 669 0 670 671 0 664 666 0 665 667 0\n\t\t 666 668 0 667 669 0 668 670 0 669 671 0 670 664 0 671 665 0 672 673 0 674 675 0 676 677 0\n\t\t 678 679 0 672 674 0 673 675 0 674 676 0 675 677 0 676 678 0 677 679 0 678 672 0 679 673 0\n\t\t 680 681 0 682 683 0 684 685 0 686 687 0 680 682 0 681 683 0 682 684 0 683 685 0 684 686 0\n\t\t 685 687 0 686 680 0 687 681 0 688 689 0 690 691 0 692 693 0 694 695 0 688 690 0 689 691 0\n\t\t 690 692 0 691 693 0 692 694 0 693 695 0 694 688 0 695 689 0 696 697 0 698 699 0 700 701 0\n\t\t 702 703 0 696 698 0 697 699 0 698 700 0 699 701 0 700 702 0 701 703 0 702 696 0 703 697 0\n\t\t 704 705 0 706 707 0 708 709 0 710 711 0 704 706 0 705 707 0 706 708 0 707 709 0 708 710 0\n\t\t 709 711 0 710 704 0 711 705 0 712 713 0 714 715 0 716 717 0 718 719 0 712 714 0 713 715 0\n\t\t 714 716 0 715 717 0 716 718 0 717 719 0 718 712 0 719 713 0 720 721 0 722 723 0 724 725 0\n\t\t 726 727 0 720 722 0 721 723 0 722 724 0 723 725 0 724 726 0 725 727 0 726 720 0 727 721 0\n\t\t 728 729 0 730 731 0 732 733 0 734 735 0 728 730 0 729 731 0 730 732 0 731 733 0 732 734 0\n\t\t 733 735 0 734 728 0 735 729 0 736 737 0 738 739 0 740 741 0 742 743 0 736 738 0 737 739 0\n\t\t 738 740 0 739 741 0 740 742 0 741 743 0 742 736 0 743 737 0 744 745 0 746 747 0 748 749 0\n\t\t 750 751 0 744 746 0 745 747 0 746 748 0 747 749 0 748 750 0 749 751 0 750 744 0 751 745 0\n\t\t 752 753 0 754 755 0 756 757 0 758 759 0 752 754 0 753 755 0 754 756 0 755 757 0 756 758 0\n\t\t 757 759 0 758 752 0 759 753 0 760 761 0 762 763 0 764 765 0 766 767 0 760 762 0 761 763 0\n\t\t 762 764 0 763 765 0 764 766 0 765 767 0 766 760 0 767 761 0 768 769 0 770 771 0 772 773 0\n\t\t 774 775 0 768 770 0 769 771 0 770 772 0 771 773 0 772 774 0 773 775 0;\n\tsetAttr \".ed[1162:1327]\" 774 768 0 775 769 0 776 777 0 778 779 0 780 781 0 782 783 0\n\t\t 776 778 0 777 779 0 778 780 0 779 781 0 780 782 0 781 783 0 782 776 0 783 777 0 784 785 0\n\t\t 786 787 0 788 789 0 790 791 0 784 786 0 785 787 0 786 788 0 787 789 0 788 790 0 789 791 0\n\t\t 790 784 0 791 785 0 792 793 0 794 795 0 796 797 0 798 799 0 792 794 0 793 795 0 794 796 0\n\t\t 795 797 0 796 798 0 797 799 0 798 792 0 799 793 0 800 801 0 802 803 0 804 805 0 806 807 0\n\t\t 800 802 0 801 803 0 802 804 0 803 805 0 804 806 0 805 807 0 806 800 0 807 801 0 808 809 0\n\t\t 810 811 0 812 813 0 814 815 0 808 810 0 809 811 0 810 812 0 811 813 0 812 814 0 813 815 0\n\t\t 814 808 0 815 809 0 816 817 0 818 819 0 820 821 0 822 823 0 816 818 0 817 819 0 818 820 0\n\t\t 819 821 0 820 822 0 821 823 0 822 816 0 823 817 0 824 825 0 826 827 0 828 829 0 830 831 0\n\t\t 824 826 0 825 827 0 826 828 0 827 829 0 828 830 0 829 831 0 830 824 0 831 825 0 832 833 0\n\t\t 834 835 0 836 837 0 838 839 0 832 834 0 833 835 0 834 836 0 835 837 0 836 838 0 837 839 0\n\t\t 838 832 0 839 833 0 840 841 0 842 843 0 844 845 0 846 847 0 840 842 0 841 843 0 842 844 0\n\t\t 843 845 0 844 846 0 845 847 0 846 840 0 847 841 0 848 849 0 850 851 0 852 853 0 854 855 0\n\t\t 848 850 0 849 851 0 850 852 0 851 853 0 852 854 0 853 855 0 854 848 0 855 849 0 856 857 0\n\t\t 858 859 0 860 861 0 862 863 0 856 858 0 857 859 0 858 860 0 859 861 0 860 862 0 861 863 0\n\t\t 862 856 0 863 857 0 864 865 0 866 867 0 868 869 0 870 871 0 864 866 0 865 867 0 866 868 0\n\t\t 867 869 0 868 870 0 869 871 0 870 864 0 871 865 0 872 873 0 874 875 0 876 877 0 878 879 0\n\t\t 872 874 0 873 875 0 874 876 0 875 877 0 876 878 0 877 879 0 878 872 0 879 873 0 880 881 0\n\t\t 882 883 0 884 885 0 886 887 0 880 882 0 881 883 0 882 884 0 883 885 0;\n\tsetAttr \".ed[1328:1493]\" 884 886 0 885 887 0 886 880 0 887 881 0 888 889 0 890 891 0\n\t\t 892 893 0 894 895 0 888 890 0 889 891 0 890 892 0 891 893 0 892 894 0 893 895 0 894 888 0\n\t\t 895 889 0 896 897 0 898 899 0 900 901 0 902 903 0 896 898 0 897 899 0 898 900 0 899 901 0\n\t\t 900 902 0 901 903 0 902 896 0 903 897 0 904 905 0 906 907 0 908 909 0 910 911 0 904 906 0\n\t\t 905 907 0 906 908 0 907 909 0 908 910 0 909 911 0 910 904 0 911 905 0 912 913 0 914 915 0\n\t\t 916 917 0 918 919 0 912 914 0 913 915 0 914 916 0 915 917 0 916 918 0 917 919 0 918 912 0\n\t\t 919 913 0 920 921 0 922 923 0 924 925 0 926 927 0 920 922 0 921 923 0 922 924 0 923 925 0\n\t\t 924 926 0 925 927 0 926 920 0 927 921 0 928 929 0 930 931 0 932 933 0 934 935 0 928 930 0\n\t\t 929 931 0 930 932 0 931 933 0 932 934 0 933 935 0 934 928 0 935 929 0 936 937 0 938 939 0\n\t\t 940 941 0 942 943 0 936 938 0 937 939 0 938 940 0 939 941 0 940 942 0 941 943 0 942 936 0\n\t\t 943 937 0 944 945 0 946 947 0 948 949 0 950 951 0 944 946 0 945 947 0 946 948 0 947 949 0\n\t\t 948 950 0 949 951 0 950 944 0 951 945 0 952 953 0 954 955 0 956 957 0 958 959 0 952 954 0\n\t\t 953 955 0 954 956 0 955 957 0 956 958 0 957 959 0 958 952 0 959 953 0 960 961 0 962 963 0\n\t\t 964 965 0 966 967 0 960 962 0 961 963 0 962 964 0 963 965 0 964 966 0 965 967 0 966 960 0\n\t\t 967 961 0 968 969 0 970 971 0 972 973 0 974 975 0 968 970 0 969 971 0 970 972 0 971 973 0\n\t\t 972 974 0 973 975 0 974 968 0 975 969 0 976 977 0 978 979 0 980 981 0 982 983 0 976 978 0\n\t\t 977 979 0 978 980 0 979 981 0 980 982 0 981 983 0 982 976 0 983 977 0 984 985 0 986 987 0\n\t\t 988 989 0 990 991 0 984 986 0 985 987 0 986 988 0 987 989 0 988 990 0 989 991 0 990 984 0\n\t\t 991 985 0 992 993 0 994 995 0 996 997 0 998 999 0 992 994 0 993 995 0;\n\tsetAttr \".ed[1494:1659]\" 994 996 0 995 997 0 996 998 0 997 999 0 998 992 0 999 993 0\n\t\t 1000 1001 0 1002 1003 0 1004 1005 0 1006 1007 0 1000 1002 0 1001 1003 0 1002 1004 0\n\t\t 1003 1005 0 1004 1006 0 1005 1007 0 1006 1000 0 1007 1001 0 1008 1009 0 1010 1011 0\n\t\t 1012 1013 0 1014 1015 0 1008 1010 0 1009 1011 0 1010 1012 0 1011 1013 0 1012 1014 0\n\t\t 1013 1015 0 1014 1008 0 1015 1009 0 1016 1017 0 1018 1019 0 1020 1021 0 1022 1023 0\n\t\t 1016 1018 0 1017 1019 0 1018 1020 0 1019 1021 0 1020 1022 0 1021 1023 0 1022 1016 0\n\t\t 1023 1017 0 1024 1025 0 1026 1027 0 1028 1029 0 1030 1031 0 1024 1026 0 1025 1027 0\n\t\t 1026 1028 0 1027 1029 0 1028 1030 0 1029 1031 0 1030 1024 0 1031 1025 0 1032 1033 0\n\t\t 1034 1035 0 1036 1037 0 1038 1039 0 1032 1034 0 1033 1035 0 1034 1036 0 1035 1037 0\n\t\t 1036 1038 0 1037 1039 0 1038 1032 0 1039 1033 0 1040 1041 0 1042 1043 0 1044 1045 0\n\t\t 1046 1047 0 1040 1042 0 1041 1043 0 1042 1044 0 1043 1045 0 1044 1046 0 1045 1047 0\n\t\t 1046 1040 0 1047 1041 0 1048 1049 0 1050 1051 0 1052 1053 0 1054 1055 0 1048 1050 0\n\t\t 1049 1051 0 1050 1052 0 1051 1053 0 1052 1054 0 1053 1055 0 1054 1048 0 1055 1049 0\n\t\t 1056 1057 0 1058 1059 0 1060 1061 0 1062 1063 0 1056 1058 0 1057 1059 0 1058 1060 0\n\t\t 1059 1061 0 1060 1062 0 1061 1063 0 1062 1056 0 1063 1057 0 1064 1065 0 1066 1067 0\n\t\t 1068 1069 0 1070 1071 0 1064 1066 0 1065 1067 0 1066 1068 0 1067 1069 0 1068 1070 0\n\t\t 1069 1071 0 1070 1064 0 1071 1065 0 1072 1073 0 1074 1075 0 1076 1077 0 1078 1079 0\n\t\t 1072 1074 0 1073 1075 0 1074 1076 0 1075 1077 0 1076 1078 0 1077 1079 0 1078 1072 0\n\t\t 1079 1073 0 1080 1081 0 1082 1083 0 1084 1085 0 1086 1087 0 1080 1082 0 1081 1083 0\n\t\t 1082 1084 0 1083 1085 0 1084 1086 0 1085 1087 0 1086 1080 0 1087 1081 0 1088 1089 0\n\t\t 1090 1091 0 1092 1093 0 1094 1095 0 1088 1090 0 1089 1091 0 1090 1092 0 1091 1093 0\n\t\t 1092 1094 0 1093 1095 0 1094 1088 0 1095 1089 0 1096 1097 0 1098 1099 0 1100 1101 0\n\t\t 1102 1103 0 1096 1098 0 1097 1099 0 1098 1100 0 1099 1101 0 1100 1102 0 1101 1103 0\n\t\t 1102 1096 0 1103 1097 0 1104 1105 0 1106 1107 0 1108 1109 0 1110 1111 0;\n\tsetAttr \".ed[1660:1825]\" 1104 1106 0 1105 1107 0 1106 1108 0 1107 1109 0 1108 1110 0\n\t\t 1109 1111 0 1110 1104 0 1111 1105 0 1112 1113 0 1114 1115 0 1116 1117 0 1118 1119 0\n\t\t 1112 1114 0 1113 1115 0 1114 1116 0 1115 1117 0 1116 1118 0 1117 1119 0 1118 1112 0\n\t\t 1119 1113 0 1120 1121 0 1122 1123 0 1124 1125 0 1126 1127 0 1120 1122 0 1121 1123 0\n\t\t 1122 1124 0 1123 1125 0 1124 1126 0 1125 1127 0 1126 1120 0 1127 1121 0 1128 1129 0\n\t\t 1130 1131 0 1132 1133 0 1134 1135 0 1128 1130 0 1129 1131 0 1130 1132 0 1131 1133 0\n\t\t 1132 1134 0 1133 1135 0 1134 1128 0 1135 1129 0 1136 1137 0 1138 1139 0 1140 1141 0\n\t\t 1142 1143 0 1136 1138 0 1137 1139 0 1138 1140 0 1139 1141 0 1140 1142 0 1141 1143 0\n\t\t 1142 1136 0 1143 1137 0 1144 1145 0 1146 1147 0 1148 1149 0 1150 1151 0 1144 1146 0\n\t\t 1145 1147 0 1146 1148 0 1147 1149 0 1148 1150 0 1149 1151 0 1150 1144 0 1151 1145 0\n\t\t 1152 1153 0 1154 1155 0 1156 1157 0 1158 1159 0 1152 1154 0 1153 1155 0 1154 1156 0\n\t\t 1155 1157 0 1156 1158 0 1157 1159 0 1158 1152 0 1159 1153 0 1160 1161 0 1162 1163 0\n\t\t 1164 1165 0 1166 1167 0 1160 1162 0 1161 1163 0 1162 1164 0 1163 1165 0 1164 1166 0\n\t\t 1165 1167 0 1166 1160 0 1167 1161 0 1168 1169 0 1170 1171 0 1172 1173 0 1174 1175 0\n\t\t 1168 1170 0 1169 1171 0 1170 1172 0 1171 1173 0 1172 1174 0 1173 1175 0 1174 1168 0\n\t\t 1175 1169 0 1176 1177 0 1178 1179 0 1180 1181 0 1182 1183 0 1176 1178 0 1177 1179 0\n\t\t 1178 1180 0 1179 1181 0 1180 1182 0 1181 1183 0 1182 1176 0 1183 1177 0 1184 1185 0\n\t\t 1186 1187 0 1188 1189 0 1190 1191 0 1184 1186 0 1185 1187 0 1186 1188 0 1187 1189 0\n\t\t 1188 1190 0 1189 1191 0 1190 1184 0 1191 1185 0 1192 1193 0 1194 1195 0 1196 1197 0\n\t\t 1198 1199 0 1192 1194 0 1193 1195 0 1194 1196 0 1195 1197 0 1196 1198 0 1197 1199 0\n\t\t 1198 1192 0 1199 1193 0 1200 1201 0 1202 1203 0 1204 1205 0 1206 1207 0 1200 1202 0\n\t\t 1201 1203 0 1202 1204 0 1203 1205 0 1204 1206 0 1205 1207 0 1206 1200 0 1207 1201 0\n\t\t 1208 1209 0 1210 1211 0 1212 1213 0 1214 1215 0 1208 1210 0 1209 1211 0 1210 1212 0\n\t\t 1211 1213 0 1212 1214 0 1213 1215 0 1214 1208 0 1215 1209 0 1216 1217 0 1218 1219 0;\n\tsetAttr \".ed[1826:1991]\" 1220 1221 0 1222 1223 0 1216 1218 0 1217 1219 0 1218 1220 0\n\t\t 1219 1221 0 1220 1222 0 1221 1223 0 1222 1216 0 1223 1217 0 1224 1225 0 1226 1227 0\n\t\t 1228 1229 0 1230 1231 0 1224 1226 0 1225 1227 0 1226 1228 0 1227 1229 0 1228 1230 0\n\t\t 1229 1231 0 1230 1224 0 1231 1225 0 1232 1233 0 1234 1235 0 1236 1237 0 1238 1239 0\n\t\t 1232 1234 0 1233 1235 0 1234 1236 0 1235 1237 0 1236 1238 0 1237 1239 0 1238 1232 0\n\t\t 1239 1233 0 1240 1241 0 1242 1243 0 1244 1245 0 1246 1247 0 1240 1242 0 1241 1243 0\n\t\t 1242 1244 0 1243 1245 0 1244 1246 0 1245 1247 0 1246 1240 0 1247 1241 0 1248 1249 0\n\t\t 1250 1251 0 1252 1253 0 1254 1255 0 1248 1250 0 1249 1251 0 1250 1252 0 1251 1253 0\n\t\t 1252 1254 0 1253 1255 0 1254 1248 0 1255 1249 0 1256 1257 0 1258 1259 0 1260 1261 0\n\t\t 1262 1263 0 1256 1258 0 1257 1259 0 1258 1260 0 1259 1261 0 1260 1262 0 1261 1263 0\n\t\t 1262 1256 0 1263 1257 0 1264 1265 0 1266 1267 0 1268 1269 0 1270 1271 0 1264 1266 0\n\t\t 1265 1267 0 1266 1268 0 1267 1269 0 1268 1270 0 1269 1271 0 1270 1264 0 1271 1265 0\n\t\t 1272 1273 0 1274 1275 0 1276 1277 0 1278 1279 0 1272 1274 0 1273 1275 0 1274 1276 0\n\t\t 1275 1277 0 1276 1278 0 1277 1279 0 1278 1272 0 1279 1273 0 1280 1281 0 1282 1283 0\n\t\t 1284 1285 0 1286 1287 0 1280 1282 0 1281 1283 0 1282 1284 0 1283 1285 0 1284 1286 0\n\t\t 1285 1287 0 1286 1280 0 1287 1281 0 1288 1289 0 1290 1291 0 1292 1293 0 1294 1295 0\n\t\t 1288 1290 0 1289 1291 0 1290 1292 0 1291 1293 0 1292 1294 0 1293 1295 0 1294 1288 0\n\t\t 1295 1289 0 1296 1297 0 1298 1299 0 1300 1301 0 1302 1303 0 1296 1298 0 1297 1299 0\n\t\t 1298 1300 0 1299 1301 0 1300 1302 0 1301 1303 0 1302 1296 0 1303 1297 0 1304 1305 0\n\t\t 1306 1307 0 1308 1309 0 1310 1311 0 1304 1306 0 1305 1307 0 1306 1308 0 1307 1309 0\n\t\t 1308 1310 0 1309 1311 0 1310 1304 0 1311 1305 0 1312 1313 0 1314 1315 0 1316 1317 0\n\t\t 1318 1319 0 1312 1314 0 1313 1315 0 1314 1316 0 1315 1317 0 1316 1318 0 1317 1319 0\n\t\t 1318 1312 0 1319 1313 0 1320 1321 0 1322 1323 0 1324 1325 0 1326 1327 0 1320 1322 0\n\t\t 1321 1323 0 1322 1324 0 1323 1325 0 1324 1326 0 1325 1327 0 1326 1320 0 1327 1321 0;\n\tsetAttr \".ed[1992:2063]\" 1328 1329 0 1330 1331 0 1332 1333 0 1334 1335 0 1328 1330 0\n\t\t 1329 1331 0 1330 1332 0 1331 1333 0 1332 1334 0 1333 1335 0 1334 1328 0 1335 1329 0\n\t\t 1336 1337 0 1338 1339 0 1340 1341 0 1342 1343 0 1336 1338 0 1337 1339 0 1338 1340 0\n\t\t 1339 1341 0 1340 1342 0 1341 1343 0 1342 1336 0 1343 1337 0 1344 1345 0 1346 1347 0\n\t\t 1348 1349 0 1350 1351 0 1344 1346 0 1345 1347 0 1346 1348 0 1347 1349 0 1348 1350 0\n\t\t 1349 1351 0 1350 1344 0 1351 1345 0 1352 1353 0 1354 1355 0 1356 1357 0 1358 1359 0\n\t\t 1352 1354 0 1353 1355 0 1354 1356 0 1355 1357 0 1356 1358 0 1357 1359 0 1358 1352 0\n\t\t 1359 1353 0 1360 1361 0 1362 1363 0 1364 1365 0 1366 1367 0 1360 1362 0 1361 1363 0\n\t\t 1362 1364 0 1363 1365 0 1364 1366 0 1365 1367 0 1366 1360 0 1367 1361 0 1368 1369 0\n\t\t 1370 1371 0 1372 1373 0 1374 1375 0 1368 1370 0 1369 1371 0 1370 1372 0 1371 1373 0\n\t\t 1372 1374 0 1373 1375 0 1374 1368 0 1375 1369 0;\n\tsetAttr -s 1032 -ch 4128 \".fc\";\n\tsetAttr \".fc[0:499]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13\n\t\tf 4 12 17 -14 -17\n\t\tmu 0 4 14 15 16 17\n\t\tf 4 13 19 -15 -19\n\t\tmu 0 4 17 16 18 19\n\t\tf 4 14 21 -16 -21\n\t\tmu 0 4 19 18 20 21\n\t\tf 4 15 23 -13 -23\n\t\tmu 0 4 21 20 22 23\n\t\tf 4 -24 -22 -20 -18\n\t\tmu 0 4 15 24 25 16\n\t\tf 4 22 16 18 20\n\t\tmu 0 4 26 14 17 27\n\t\tf 4 24 29 -26 -29\n\t\tmu 0 4 28 29 30 31\n\t\tf 4 25 31 -27 -31\n\t\tmu 0 4 31 30 32 33\n\t\tf 4 26 33 -28 -33\n\t\tmu 0 4 33 32 34 35\n\t\tf 4 27 35 -25 -35\n\t\tmu 0 4 35 34 36 37\n\t\tf 4 -36 -34 -32 -30\n\t\tmu 0 4 29 38 39 30\n\t\tf 4 34 28 30 32\n\t\tmu 0 4 40 28 31 41\n\t\tf 4 36 41 -38 -41\n\t\tmu 0 4 42 43 44 45\n\t\tf 4 37 43 -39 -43\n\t\tmu 0 4 45 44 46 47\n\t\tf 4 38 45 -40 -45\n\t\tmu 0 4 47 46 48 49\n\t\tf 4 39 47 -37 -47\n\t\tmu 0 4 49 48 50 51\n\t\tf 4 -48 -46 -44 -42\n\t\tmu 0 4 43 52 53 44\n\t\tf 4 46 40 42 44\n\t\tmu 0 4 54 42 45 55\n\t\tf 4 48 53 -50 -53\n\t\tmu 0 4 56 57 58 59\n\t\tf 4 49 55 -51 -55\n\t\tmu 0 4 59 58 60 61\n\t\tf 4 50 57 -52 -57\n\t\tmu 0 4 61 60 62 63\n\t\tf 4 51 59 -49 -59\n\t\tmu 0 4 63 62 64 65\n\t\tf 4 -60 -58 -56 -54\n\t\tmu 0 4 57 66 67 58\n\t\tf 4 58 52 54 56\n\t\tmu 0 4 68 56 59 69\n\t\tf 4 60 65 -62 -65\n\t\tmu 0 4 70 71 72 73\n\t\tf 4 61 67 -63 -67\n\t\tmu 0 4 73 72 74 75\n\t\tf 4 62 69 -64 -69\n\t\tmu 0 4 75 74 76 77\n\t\tf 4 63 71 -61 -71\n\t\tmu 0 4 77 76 78 79\n\t\tf 4 -72 -70 -68 -66\n\t\tmu 0 4 71 80 81 72\n\t\tf 4 70 64 66 68\n\t\tmu 0 4 82 70 73 83\n\t\tf 4 72 77 -74 -77\n\t\tmu 0 4 84 85 86 87\n\t\tf 4 73 79 -75 -79\n\t\tmu 0 4 87 86 88 89\n\t\tf 4 74 81 -76 -81\n\t\tmu 0 4 89 88 90 91\n\t\tf 4 75 83 -73 -83\n\t\tmu 0 4 91 90 92 93\n\t\tf 4 -84 -82 -80 -78\n\t\tmu 0 4 85 94 95 86\n\t\tf 4 82 76 78 80\n\t\tmu 0 4 96 84 87 97\n\t\tf 4 84 89 -86 -89\n\t\tmu 0 4 98 99 100 101\n\t\tf 4 85 91 -87 -91\n\t\tmu 0 4 101 100 102 103\n\t\tf 4 86 93 -88 -93\n\t\tmu 0 4 103 102 104 105\n\t\tf 4 87 95 -85 -95\n\t\tmu 0 4 105 104 106 107\n\t\tf 4 -96 -94 -92 -90\n\t\tmu 0 4 99 108 109 100\n\t\tf 4 94 88 90 92\n\t\tmu 0 4 110 98 101 111\n\t\tf 4 96 101 -98 -101\n\t\tmu 0 4 112 113 114 115\n\t\tf 4 97 103 -99 -103\n\t\tmu 0 4 115 114 116 117\n\t\tf 4 98 105 -100 -105\n\t\tmu 0 4 117 116 118 119\n\t\tf 4 99 107 -97 -107\n\t\tmu 0 4 119 118 120 121\n\t\tf 4 -108 -106 -104 -102\n\t\tmu 0 4 113 122 123 114\n\t\tf 4 106 100 102 104\n\t\tmu 0 4 124 112 115 125\n\t\tf 4 108 113 -110 -113\n\t\tmu 0 4 126 127 128 129\n\t\tf 4 109 115 -111 -115\n\t\tmu 0 4 129 128 130 131\n\t\tf 4 110 117 -112 -117\n\t\tmu 0 4 131 130 132 133\n\t\tf 4 111 119 -109 -119\n\t\tmu 0 4 133 132 134 135\n\t\tf 4 -120 -118 -116 -114\n\t\tmu 0 4 127 136 137 128\n\t\tf 4 118 112 114 116\n\t\tmu 0 4 138 126 129 139\n\t\tf 4 120 125 -122 -125\n\t\tmu 0 4 140 141 142 143\n\t\tf 4 121 127 -123 -127\n\t\tmu 0 4 143 142 144 145\n\t\tf 4 122 129 -124 -129\n\t\tmu 0 4 145 144 146 147\n\t\tf 4 123 131 -121 -131\n\t\tmu 0 4 147 146 148 149\n\t\tf 4 -132 -130 -128 -126\n\t\tmu 0 4 141 150 151 142\n\t\tf 4 130 124 126 128\n\t\tmu 0 4 152 140 143 153\n\t\tf 4 132 137 -134 -137\n\t\tmu 0 4 154 155 156 157\n\t\tf 4 133 139 -135 -139\n\t\tmu 0 4 157 156 158 159\n\t\tf 4 134 141 -136 -141\n\t\tmu 0 4 159 158 160 161\n\t\tf 4 135 143 -133 -143\n\t\tmu 0 4 161 160 162 163\n\t\tf 4 -144 -142 -140 -138\n\t\tmu 0 4 155 164 165 156\n\t\tf 4 142 136 138 140\n\t\tmu 0 4 166 154 157 167\n\t\tf 4 144 149 -146 -149\n\t\tmu 0 4 168 169 170 171\n\t\tf 4 145 151 -147 -151\n\t\tmu 0 4 171 170 172 173\n\t\tf 4 146 153 -148 -153\n\t\tmu 0 4 173 172 174 175\n\t\tf 4 147 155 -145 -155\n\t\tmu 0 4 175 174 176 177\n\t\tf 4 -156 -154 -152 -150\n\t\tmu 0 4 169 178 179 170\n\t\tf 4 154 148 150 152\n\t\tmu 0 4 180 168 171 181\n\t\tf 4 156 161 -158 -161\n\t\tmu 0 4 182 183 184 185\n\t\tf 4 157 163 -159 -163\n\t\tmu 0 4 185 184 186 187\n\t\tf 4 158 165 -160 -165\n\t\tmu 0 4 187 186 188 189\n\t\tf 4 159 167 -157 -167\n\t\tmu 0 4 189 188 190 191\n\t\tf 4 -168 -166 -164 -162\n\t\tmu 0 4 183 192 193 184\n\t\tf 4 166 160 162 164\n\t\tmu 0 4 194 182 185 195\n\t\tf 4 168 173 -170 -173\n\t\tmu 0 4 196 197 198 199\n\t\tf 4 169 175 -171 -175\n\t\tmu 0 4 199 198 200 201\n\t\tf 4 170 177 -172 -177\n\t\tmu 0 4 201 200 202 203\n\t\tf 4 171 179 -169 -179\n\t\tmu 0 4 203 202 204 205\n\t\tf 4 -180 -178 -176 -174\n\t\tmu 0 4 197 206 207 198\n\t\tf 4 178 172 174 176\n\t\tmu 0 4 208 196 199 209\n\t\tf 4 180 185 -182 -185\n\t\tmu 0 4 210 211 212 213\n\t\tf 4 181 187 -183 -187\n\t\tmu 0 4 213 212 214 215\n\t\tf 4 182 189 -184 -189\n\t\tmu 0 4 215 214 216 217\n\t\tf 4 183 191 -181 -191\n\t\tmu 0 4 217 216 218 219\n\t\tf 4 -192 -190 -188 -186\n\t\tmu 0 4 211 220 221 212\n\t\tf 4 190 184 186 188\n\t\tmu 0 4 222 210 213 223\n\t\tf 4 192 197 -194 -197\n\t\tmu 0 4 224 225 226 227\n\t\tf 4 193 199 -195 -199\n\t\tmu 0 4 227 226 228 229\n\t\tf 4 194 201 -196 -201\n\t\tmu 0 4 229 228 230 231\n\t\tf 4 195 203 -193 -203\n\t\tmu 0 4 231 230 232 233\n\t\tf 4 -204 -202 -200 -198\n\t\tmu 0 4 225 234 235 226\n\t\tf 4 202 196 198 200\n\t\tmu 0 4 236 224 227 237\n\t\tf 4 204 209 -206 -209\n\t\tmu 0 4 238 239 240 241\n\t\tf 4 205 211 -207 -211\n\t\tmu 0 4 241 240 242 243\n\t\tf 4 206 213 -208 -213\n\t\tmu 0 4 243 242 244 245\n\t\tf 4 207 215 -205 -215\n\t\tmu 0 4 245 244 246 247\n\t\tf 4 -216 -214 -212 -210\n\t\tmu 0 4 239 248 249 240\n\t\tf 4 214 208 210 212\n\t\tmu 0 4 250 238 241 251\n\t\tf 4 216 221 -218 -221\n\t\tmu 0 4 252 253 254 255\n\t\tf 4 217 223 -219 -223\n\t\tmu 0 4 255 254 256 257\n\t\tf 4 218 225 -220 -225\n\t\tmu 0 4 257 256 258 259\n\t\tf 4 219 227 -217 -227\n\t\tmu 0 4 259 258 260 261\n\t\tf 4 -228 -226 -224 -222\n\t\tmu 0 4 253 262 263 254\n\t\tf 4 226 220 222 224\n\t\tmu 0 4 264 252 255 265\n\t\tf 4 228 233 -230 -233\n\t\tmu 0 4 266 267 268 269\n\t\tf 4 229 235 -231 -235\n\t\tmu 0 4 269 268 270 271\n\t\tf 4 230 237 -232 -237\n\t\tmu 0 4 271 270 272 273\n\t\tf 4 231 239 -229 -239\n\t\tmu 0 4 273 272 274 275\n\t\tf 4 -240 -238 -236 -234\n\t\tmu 0 4 267 276 277 268\n\t\tf 4 238 232 234 236\n\t\tmu 0 4 278 266 269 279\n\t\tf 4 240 245 -242 -245\n\t\tmu 0 4 280 281 282 283\n\t\tf 4 241 247 -243 -247\n\t\tmu 0 4 283 282 284 285\n\t\tf 4 242 249 -244 -249\n\t\tmu 0 4 285 284 286 287\n\t\tf 4 243 251 -241 -251\n\t\tmu 0 4 287 286 288 289\n\t\tf 4 -252 -250 -248 -246\n\t\tmu 0 4 281 290 291 282\n\t\tf 4 250 244 246 248\n\t\tmu 0 4 292 280 283 293\n\t\tf 4 252 257 -254 -257\n\t\tmu 0 4 294 295 296 297\n\t\tf 4 253 259 -255 -259\n\t\tmu 0 4 297 296 298 299\n\t\tf 4 254 261 -256 -261\n\t\tmu 0 4 299 298 300 301\n\t\tf 4 255 263 -253 -263\n\t\tmu 0 4 301 300 302 303\n\t\tf 4 -264 -262 -260 -258\n\t\tmu 0 4 295 304 305 296\n\t\tf 4 262 256 258 260\n\t\tmu 0 4 306 294 297 307\n\t\tf 4 264 269 -266 -269\n\t\tmu 0 4 308 309 310 311\n\t\tf 4 265 271 -267 -271\n\t\tmu 0 4 311 310 312 313\n\t\tf 4 266 273 -268 -273\n\t\tmu 0 4 313 312 314 315\n\t\tf 4 267 275 -265 -275\n\t\tmu 0 4 315 314 316 317\n\t\tf 4 -276 -274 -272 -270\n\t\tmu 0 4 309 318 319 310\n\t\tf 4 274 268 270 272\n\t\tmu 0 4 320 308 311 321\n\t\tf 4 276 281 -278 -281\n\t\tmu 0 4 322 323 324 325\n\t\tf 4 277 283 -279 -283\n\t\tmu 0 4 325 324 326 327\n\t\tf 4 278 285 -280 -285\n\t\tmu 0 4 327 326 328 329\n\t\tf 4 279 287 -277 -287\n\t\tmu 0 4 329 328 330 331\n\t\tf 4 -288 -286 -284 -282\n\t\tmu 0 4 323 332 333 324\n\t\tf 4 286 280 282 284\n\t\tmu 0 4 334 322 325 335\n\t\tf 4 288 293 -290 -293\n\t\tmu 0 4 336 337 338 339\n\t\tf 4 289 295 -291 -295\n\t\tmu 0 4 339 338 340 341\n\t\tf 4 290 297 -292 -297\n\t\tmu 0 4 341 340 342 343\n\t\tf 4 291 299 -289 -299\n\t\tmu 0 4 343 342 344 345\n\t\tf 4 -300 -298 -296 -294\n\t\tmu 0 4 337 346 347 338\n\t\tf 4 298 292 294 296\n\t\tmu 0 4 348 336 339 349\n\t\tf 4 300 305 -302 -305\n\t\tmu 0 4 350 351 352 353\n\t\tf 4 301 307 -303 -307\n\t\tmu 0 4 353 352 354 355\n\t\tf 4 302 309 -304 -309\n\t\tmu 0 4 355 354 356 357\n\t\tf 4 303 311 -301 -311\n\t\tmu 0 4 357 356 358 359\n\t\tf 4 -312 -310 -308 -306\n\t\tmu 0 4 351 360 361 352\n\t\tf 4 310 304 306 308\n\t\tmu 0 4 362 350 353 363\n\t\tf 4 312 317 -314 -317\n\t\tmu 0 4 364 365 366 367\n\t\tf 4 313 319 -315 -319\n\t\tmu 0 4 367 366 368 369\n\t\tf 4 314 321 -316 -321\n\t\tmu 0 4 369 368 370 371\n\t\tf 4 315 323 -313 -323\n\t\tmu 0 4 371 370 372 373\n\t\tf 4 -324 -322 -320 -318\n\t\tmu 0 4 365 374 375 366\n\t\tf 4 322 316 318 320\n\t\tmu 0 4 376 364 367 377\n\t\tf 4 324 329 -326 -329\n\t\tmu 0 4 378 379 380 381\n\t\tf 4 325 331 -327 -331\n\t\tmu 0 4 381 380 382 383\n\t\tf 4 326 333 -328 -333\n\t\tmu 0 4 383 382 384 385\n\t\tf 4 327 335 -325 -335\n\t\tmu 0 4 385 384 386 387\n\t\tf 4 -336 -334 -332 -330\n\t\tmu 0 4 379 388 389 380\n\t\tf 4 334 328 330 332\n\t\tmu 0 4 390 378 381 391\n\t\tf 4 336 341 -338 -341\n\t\tmu 0 4 392 393 394 395\n\t\tf 4 337 343 -339 -343\n\t\tmu 0 4 395 394 396 397\n\t\tf 4 338 345 -340 -345\n\t\tmu 0 4 397 396 398 399\n\t\tf 4 339 347 -337 -347\n\t\tmu 0 4 399 398 400 401\n\t\tf 4 -348 -346 -344 -342\n\t\tmu 0 4 393 402 403 394\n\t\tf 4 346 340 342 344\n\t\tmu 0 4 404 392 395 405\n\t\tf 4 348 353 -350 -353\n\t\tmu 0 4 406 407 408 409\n\t\tf 4 349 355 -351 -355\n\t\tmu 0 4 409 408 410 411\n\t\tf 4 350 357 -352 -357\n\t\tmu 0 4 411 410 412 413\n\t\tf 4 351 359 -349 -359\n\t\tmu 0 4 413 412 414 415\n\t\tf 4 -360 -358 -356 -354\n\t\tmu 0 4 407 416 417 408\n\t\tf 4 358 352 354 356\n\t\tmu 0 4 418 406 409 419\n\t\tf 4 360 365 -362 -365\n\t\tmu 0 4 420 421 422 423\n\t\tf 4 361 367 -363 -367\n\t\tmu 0 4 423 422 424 425\n\t\tf 4 362 369 -364 -369\n\t\tmu 0 4 425 424 426 427\n\t\tf 4 363 371 -361 -371\n\t\tmu 0 4 427 426 428 429\n\t\tf 4 -372 -370 -368 -366\n\t\tmu 0 4 421 430 431 422\n\t\tf 4 370 364 366 368\n\t\tmu 0 4 432 420 423 433\n\t\tf 4 372 377 -374 -377\n\t\tmu 0 4 434 435 436 437\n\t\tf 4 373 379 -375 -379\n\t\tmu 0 4 437 436 438 439\n\t\tf 4 374 381 -376 -381\n\t\tmu 0 4 439 438 440 441\n\t\tf 4 375 383 -373 -383\n\t\tmu 0 4 441 440 442 443\n\t\tf 4 -384 -382 -380 -378\n\t\tmu 0 4 435 444 445 436\n\t\tf 4 382 376 378 380\n\t\tmu 0 4 446 434 437 447\n\t\tf 4 384 389 -386 -389\n\t\tmu 0 4 448 449 450 451\n\t\tf 4 385 391 -387 -391\n\t\tmu 0 4 451 450 452 453\n\t\tf 4 386 393 -388 -393\n\t\tmu 0 4 453 452 454 455\n\t\tf 4 387 395 -385 -395\n\t\tmu 0 4 455 454 456 457\n\t\tf 4 -396 -394 -392 -390\n\t\tmu 0 4 449 458 459 450\n\t\tf 4 394 388 390 392\n\t\tmu 0 4 460 448 451 461\n\t\tf 4 396 401 -398 -401\n\t\tmu 0 4 462 463 464 465\n\t\tf 4 397 403 -399 -403\n\t\tmu 0 4 465 464 466 467\n\t\tf 4 398 405 -400 -405\n\t\tmu 0 4 467 466 468 469\n\t\tf 4 399 407 -397 -407\n\t\tmu 0 4 469 468 470 471\n\t\tf 4 -408 -406 -404 -402\n\t\tmu 0 4 463 472 473 464\n\t\tf 4 406 400 402 404\n\t\tmu 0 4 474 462 465 475\n\t\tf 4 408 413 -410 -413\n\t\tmu 0 4 476 477 478 479\n\t\tf 4 409 415 -411 -415\n\t\tmu 0 4 479 478 480 481\n\t\tf 4 410 417 -412 -417\n\t\tmu 0 4 481 480 482 483\n\t\tf 4 411 419 -409 -419\n\t\tmu 0 4 483 482 484 485\n\t\tf 4 -420 -418 -416 -414\n\t\tmu 0 4 477 486 487 478\n\t\tf 4 418 412 414 416\n\t\tmu 0 4 488 476 479 489\n\t\tf 4 420 425 -422 -425\n\t\tmu 0 4 490 491 492 493\n\t\tf 4 421 427 -423 -427\n\t\tmu 0 4 493 492 494 495\n\t\tf 4 422 429 -424 -429\n\t\tmu 0 4 495 494 496 497\n\t\tf 4 423 431 -421 -431\n\t\tmu 0 4 497 496 498 499\n\t\tf 4 -432 -430 -428 -426\n\t\tmu 0 4 491 500 501 492\n\t\tf 4 430 424 426 428\n\t\tmu 0 4 502 490 493 503\n\t\tf 4 432 437 -434 -437\n\t\tmu 0 4 504 505 506 507\n\t\tf 4 433 439 -435 -439\n\t\tmu 0 4 507 506 508 509\n\t\tf 4 434 441 -436 -441\n\t\tmu 0 4 509 508 510 511\n\t\tf 4 435 443 -433 -443\n\t\tmu 0 4 511 510 512 513\n\t\tf 4 -444 -442 -440 -438\n\t\tmu 0 4 505 514 515 506\n\t\tf 4 442 436 438 440\n\t\tmu 0 4 516 504 507 517\n\t\tf 4 444 449 -446 -449\n\t\tmu 0 4 518 519 520 521\n\t\tf 4 445 451 -447 -451\n\t\tmu 0 4 521 520 522 523\n\t\tf 4 446 453 -448 -453\n\t\tmu 0 4 523 522 524 525\n\t\tf 4 447 455 -445 -455\n\t\tmu 0 4 525 524 526 527\n\t\tf 4 -456 -454 -452 -450\n\t\tmu 0 4 519 528 529 520\n\t\tf 4 454 448 450 452\n\t\tmu 0 4 530 518 521 531\n\t\tf 4 456 461 -458 -461\n\t\tmu 0 4 532 533 534 535\n\t\tf 4 457 463 -459 -463\n\t\tmu 0 4 535 534 536 537\n\t\tf 4 458 465 -460 -465\n\t\tmu 0 4 537 536 538 539\n\t\tf 4 459 467 -457 -467\n\t\tmu 0 4 539 538 540 541\n\t\tf 4 -468 -466 -464 -462\n\t\tmu 0 4 533 542 543 534\n\t\tf 4 466 460 462 464\n\t\tmu 0 4 544 532 535 545\n\t\tf 4 468 473 -470 -473\n\t\tmu 0 4 546 547 548 549\n\t\tf 4 469 475 -471 -475\n\t\tmu 0 4 549 548 550 551\n\t\tf 4 470 477 -472 -477\n\t\tmu 0 4 551 550 552 553\n\t\tf 4 471 479 -469 -479\n\t\tmu 0 4 553 552 554 555\n\t\tf 4 -480 -478 -476 -474\n\t\tmu 0 4 547 556 557 548\n\t\tf 4 478 472 474 476\n\t\tmu 0 4 558 546 549 559\n\t\tf 4 480 485 -482 -485\n\t\tmu 0 4 560 561 562 563\n\t\tf 4 481 487 -483 -487\n\t\tmu 0 4 563 562 564 565\n\t\tf 4 482 489 -484 -489\n\t\tmu 0 4 565 564 566 567\n\t\tf 4 483 491 -481 -491\n\t\tmu 0 4 567 566 568 569\n\t\tf 4 -492 -490 -488 -486\n\t\tmu 0 4 561 570 571 562\n\t\tf 4 490 484 486 488\n\t\tmu 0 4 572 560 563 573\n\t\tf 4 492 497 -494 -497\n\t\tmu 0 4 574 575 576 577\n\t\tf 4 493 499 -495 -499\n\t\tmu 0 4 577 576 578 579\n\t\tf 4 494 501 -496 -501\n\t\tmu 0 4 579 578 580 581\n\t\tf 4 495 503 -493 -503\n\t\tmu 0 4 581 580 582 583\n\t\tf 4 -504 -502 -500 -498\n\t\tmu 0 4 575 584 585 576\n\t\tf 4 502 496 498 500\n\t\tmu 0 4 586 574 577 587\n\t\tf 4 504 509 -506 -509\n\t\tmu 0 4 588 589 590 591\n\t\tf 4 505 511 -507 -511\n\t\tmu 0 4 591 590 592 593\n\t\tf 4 506 513 -508 -513\n\t\tmu 0 4 593 592 594 595\n\t\tf 4 507 515 -505 -515\n\t\tmu 0 4 595 594 596 597\n\t\tf 4 -516 -514 -512 -510\n\t\tmu 0 4 589 598 599 590\n\t\tf 4 514 508 510 512\n\t\tmu 0 4 600 588 591 601\n\t\tf 4 516 521 -518 -521\n\t\tmu 0 4 602 603 604 605\n\t\tf 4 517 523 -519 -523\n\t\tmu 0 4 605 604 606 607\n\t\tf 4 518 525 -520 -525\n\t\tmu 0 4 607 606 608 609\n\t\tf 4 519 527 -517 -527\n\t\tmu 0 4 609 608 610 611\n\t\tf 4 -528 -526 -524 -522\n\t\tmu 0 4 603 612 613 604\n\t\tf 4 526 520 522 524\n\t\tmu 0 4 614 602 605 615\n\t\tf 4 528 533 -530 -533\n\t\tmu 0 4 616 617 618 619\n\t\tf 4 529 535 -531 -535\n\t\tmu 0 4 619 618 620 621\n\t\tf 4 530 537 -532 -537\n\t\tmu 0 4 621 620 622 623\n\t\tf 4 531 539 -529 -539\n\t\tmu 0 4 623 622 624 625\n\t\tf 4 -540 -538 -536 -534\n\t\tmu 0 4 617 626 627 618\n\t\tf 4 538 532 534 536\n\t\tmu 0 4 628 616 619 629\n\t\tf 4 540 545 -542 -545\n\t\tmu 0 4 630 631 632 633\n\t\tf 4 541 547 -543 -547\n\t\tmu 0 4 633 632 634 635\n\t\tf 4 542 549 -544 -549\n\t\tmu 0 4 635 634 636 637\n\t\tf 4 543 551 -541 -551\n\t\tmu 0 4 637 636 638 639\n\t\tf 4 -552 -550 -548 -546\n\t\tmu 0 4 631 640 641 632\n\t\tf 4 550 544 546 548\n\t\tmu 0 4 642 630 633 643\n\t\tf 4 552 557 -554 -557\n\t\tmu 0 4 644 645 646 647\n\t\tf 4 553 559 -555 -559\n\t\tmu 0 4 647 646 648 649\n\t\tf 4 554 561 -556 -561\n\t\tmu 0 4 649 648 650 651\n\t\tf 4 555 563 -553 -563\n\t\tmu 0 4 651 650 652 653\n\t\tf 4 -564 -562 -560 -558\n\t\tmu 0 4 645 654 655 646\n\t\tf 4 562 556 558 560\n\t\tmu 0 4 656 644 647 657\n\t\tf 4 564 569 -566 -569\n\t\tmu 0 4 658 659 660 661\n\t\tf 4 565 571 -567 -571\n\t\tmu 0 4 661 660 662 663\n\t\tf 4 566 573 -568 -573\n\t\tmu 0 4 663 662 664 665\n\t\tf 4 567 575 -565 -575\n\t\tmu 0 4 665 664 666 667\n\t\tf 4 -576 -574 -572 -570\n\t\tmu 0 4 659 668 669 660\n\t\tf 4 574 568 570 572\n\t\tmu 0 4 670 658 661 671\n\t\tf 4 576 581 -578 -581\n\t\tmu 0 4 672 673 674 675\n\t\tf 4 577 583 -579 -583\n\t\tmu 0 4 675 674 676 677\n\t\tf 4 578 585 -580 -585\n\t\tmu 0 4 677 676 678 679\n\t\tf 4 579 587 -577 -587\n\t\tmu 0 4 679 678 680 681\n\t\tf 4 -588 -586 -584 -582\n\t\tmu 0 4 673 682 683 674\n\t\tf 4 586 580 582 584\n\t\tmu 0 4 684 672 675 685\n\t\tf 4 588 593 -590 -593\n\t\tmu 0 4 686 687 688 689\n\t\tf 4 589 595 -591 -595\n\t\tmu 0 4 689 688 690 691\n\t\tf 4 590 597 -592 -597\n\t\tmu 0 4 691 690 692 693\n\t\tf 4 591 599 -589 -599\n\t\tmu 0 4 693 692 694 695\n\t\tf 4 -600 -598 -596 -594\n\t\tmu 0 4 687 696 697 688\n\t\tf 4 598 592 594 596\n\t\tmu 0 4 698 686 689 699\n\t\tf 4 600 605 -602 -605\n\t\tmu 0 4 700 701 702 703\n\t\tf 4 601 607 -603 -607\n\t\tmu 0 4 703 702 704 705\n\t\tf 4 602 609 -604 -609\n\t\tmu 0 4 705 704 706 707\n\t\tf 4 603 611 -601 -611\n\t\tmu 0 4 707 706 708 709\n\t\tf 4 -612 -610 -608 -606\n\t\tmu 0 4 701 710 711 702\n\t\tf 4 610 604 606 608\n\t\tmu 0 4 712 700 703 713\n\t\tf 4 612 617 -614 -617\n\t\tmu 0 4 714 715 716 717\n\t\tf 4 613 619 -615 -619\n\t\tmu 0 4 717 716 718 719\n\t\tf 4 614 621 -616 -621\n\t\tmu 0 4 719 718 720 721\n\t\tf 4 615 623 -613 -623\n\t\tmu 0 4 721 720 722 723\n\t\tf 4 -624 -622 -620 -618\n\t\tmu 0 4 715 724 725 716\n\t\tf 4 622 616 618 620\n\t\tmu 0 4 726 714 717 727\n\t\tf 4 624 629 -626 -629\n\t\tmu 0 4 728 729 730 731\n\t\tf 4 625 631 -627 -631\n\t\tmu 0 4 731 730 732 733\n\t\tf 4 626 633 -628 -633\n\t\tmu 0 4 733 732 734 735\n\t\tf 4 627 635 -625 -635\n\t\tmu 0 4 735 734 736 737\n\t\tf 4 -636 -634 -632 -630\n\t\tmu 0 4 729 738 739 730\n\t\tf 4 634 628 630 632\n\t\tmu 0 4 740 728 731 741\n\t\tf 4 636 641 -638 -641\n\t\tmu 0 4 742 743 744 745\n\t\tf 4 637 643 -639 -643\n\t\tmu 0 4 745 744 746 747\n\t\tf 4 638 645 -640 -645\n\t\tmu 0 4 747 746 748 749\n\t\tf 4 639 647 -637 -647\n\t\tmu 0 4 749 748 750 751\n\t\tf 4 -648 -646 -644 -642\n\t\tmu 0 4 743 752 753 744\n\t\tf 4 646 640 642 644\n\t\tmu 0 4 754 742 745 755\n\t\tf 4 648 653 -650 -653\n\t\tmu 0 4 756 757 758 759\n\t\tf 4 649 655 -651 -655\n\t\tmu 0 4 759 758 760 761\n\t\tf 4 650 657 -652 -657\n\t\tmu 0 4 761 760 762 763\n\t\tf 4 651 659 -649 -659\n\t\tmu 0 4 763 762 764 765\n\t\tf 4 -660 -658 -656 -654\n\t\tmu 0 4 757 766 767 758\n\t\tf 4 658 652 654 656\n\t\tmu 0 4 768 756 759 769\n\t\tf 4 660 665 -662 -665\n\t\tmu 0 4 770 771 772 773\n\t\tf 4 661 667 -663 -667\n\t\tmu 0 4 773 772 774 775\n\t\tf 4 662 669 -664 -669\n\t\tmu 0 4 775 774 776 777\n\t\tf 4 663 671 -661 -671\n\t\tmu 0 4 777 776 778 779\n\t\tf 4 -672 -670 -668 -666\n\t\tmu 0 4 771 780 781 772\n\t\tf 4 670 664 666 668\n\t\tmu 0 4 782 770 773 783\n\t\tf 4 672 677 -674 -677\n\t\tmu 0 4 784 785 786 787\n\t\tf 4 673 679 -675 -679\n\t\tmu 0 4 787 786 788 789\n\t\tf 4 674 681 -676 -681\n\t\tmu 0 4 789 788 790 791\n\t\tf 4 675 683 -673 -683\n\t\tmu 0 4 791 790 792 793\n\t\tf 4 -684 -682 -680 -678\n\t\tmu 0 4 785 794 795 786\n\t\tf 4 682 676 678 680\n\t\tmu 0 4 796 784 787 797\n\t\tf 4 684 689 -686 -689\n\t\tmu 0 4 798 799 800 801\n\t\tf 4 685 691 -687 -691\n\t\tmu 0 4 801 800 802 803\n\t\tf 4 686 693 -688 -693\n\t\tmu 0 4 803 802 804 805\n\t\tf 4 687 695 -685 -695\n\t\tmu 0 4 805 804 806 807\n\t\tf 4 -696 -694 -692 -690\n\t\tmu 0 4 799 808 809 800\n\t\tf 4 694 688 690 692\n\t\tmu 0 4 810 798 801 811\n\t\tf 4 696 701 -698 -701\n\t\tmu 0 4 812 813 814 815\n\t\tf 4 697 703 -699 -703\n\t\tmu 0 4 815 814 816 817\n\t\tf 4 698 705 -700 -705\n\t\tmu 0 4 817 816 818 819\n\t\tf 4 699 707 -697 -707\n\t\tmu 0 4 819 818 820 821\n\t\tf 4 -708 -706 -704 -702\n\t\tmu 0 4 813 822 823 814\n\t\tf 4 706 700 702 704\n\t\tmu 0 4 824 812 815 825\n\t\tf 4 708 713 -710 -713\n\t\tmu 0 4 826 827 828 829\n\t\tf 4 709 715 -711 -715\n\t\tmu 0 4 829 828 830 831\n\t\tf 4 710 717 -712 -717\n\t\tmu 0 4 831 830 832 833\n\t\tf 4 711 719 -709 -719\n\t\tmu 0 4 833 832 834 835\n\t\tf 4 -720 -718 -716 -714\n\t\tmu 0 4 827 836 837 828\n\t\tf 4 718 712 714 716\n\t\tmu 0 4 838 826 829 839\n\t\tf 4 720 725 -722 -725\n\t\tmu 0 4 840 841 842 843\n\t\tf 4 721 727 -723 -727\n\t\tmu 0 4 843 842 844 845\n\t\tf 4 722 729 -724 -729\n\t\tmu 0 4 845 844 846 847\n\t\tf 4 723 731 -721 -731\n\t\tmu 0 4 847 846 848 849\n\t\tf 4 -732 -730 -728 -726\n\t\tmu 0 4 841 850 851 842\n\t\tf 4 730 724 726 728\n\t\tmu 0 4 852 840 843 853\n\t\tf 4 732 737 -734 -737\n\t\tmu 0 4 854 855 856 857\n\t\tf 4 733 739 -735 -739\n\t\tmu 0 4 857 856 858 859\n\t\tf 4 734 741 -736 -741\n\t\tmu 0 4 859 858 860 861\n\t\tf 4 735 743 -733 -743\n\t\tmu 0 4 861 860 862 863\n\t\tf 4 -744 -742 -740 -738\n\t\tmu 0 4 855 864 865 856\n\t\tf 4 742 736 738 740\n\t\tmu 0 4 866 854 857 867\n\t\tf 4 744 749 -746 -749\n\t\tmu 0 4 868 869 870 871\n\t\tf 4 745 751 -747 -751\n\t\tmu 0 4 871 870 872 873\n\t\tf 4 746 753 -748 -753\n\t\tmu 0 4 873 872 874 875\n\t\tf 4 747 755 -745 -755\n\t\tmu 0 4 875 874 876 877\n\t\tf 4 -756 -754 -752 -750\n\t\tmu 0 4 869 878 879 870\n\t\tf 4 754 748 750 752\n\t\tmu 0 4 880 868 871 881\n\t\tf 4 756 761 -758 -761\n\t\tmu 0 4 882 883 884 885\n\t\tf 4 757 763 -759 -763\n\t\tmu 0 4 885 884 886 887\n\t\tf 4 758 765 -760 -765\n\t\tmu 0 4 887 886 888 889\n\t\tf 4 759 767 -757 -767\n\t\tmu 0 4 889 888 890 891\n\t\tf 4 -768 -766 -764 -762\n\t\tmu 0 4 883 892 893 884\n\t\tf 4 766 760 762 764\n\t\tmu 0 4 894 882 885 895\n\t\tf 4 768 773 -770 -773\n\t\tmu 0 4 896 897 898 899\n\t\tf 4 769 775 -771 -775\n\t\tmu 0 4 899 898 900 901\n\t\tf 4 770 777 -772 -777\n\t\tmu 0 4 901 900 902 903\n\t\tf 4 771 779 -769 -779\n\t\tmu 0 4 903 902 904 905\n\t\tf 4 -780 -778 -776 -774\n\t\tmu 0 4 897 906 907 898\n\t\tf 4 778 772 774 776\n\t\tmu 0 4 908 896 899 909\n\t\tf 4 780 785 -782 -785\n\t\tmu 0 4 910 911 912 913\n\t\tf 4 781 787 -783 -787\n\t\tmu 0 4 913 912 914 915\n\t\tf 4 782 789 -784 -789\n\t\tmu 0 4 915 914 916 917\n\t\tf 4 783 791 -781 -791\n\t\tmu 0 4 917 916 918 919\n\t\tf 4 -792 -790 -788 -786\n\t\tmu 0 4 911 920 921 912\n\t\tf 4 790 784 786 788\n\t\tmu 0 4 922 910 913 923\n\t\tf 4 792 797 -794 -797\n\t\tmu 0 4 924 925 926 927\n\t\tf 4 793 799 -795 -799\n\t\tmu 0 4 927 926 928 929\n\t\tf 4 794 801 -796 -801\n\t\tmu 0 4 929 928 930 931\n\t\tf 4 795 803 -793 -803\n\t\tmu 0 4 931 930 932 933\n\t\tf 4 -804 -802 -800 -798\n\t\tmu 0 4 925 934 935 926\n\t\tf 4 802 796 798 800\n\t\tmu 0 4 936 924 927 937\n\t\tf 4 804 809 -806 -809\n\t\tmu 0 4 938 939 940 941\n\t\tf 4 805 811 -807 -811\n\t\tmu 0 4 941 940 942 943\n\t\tf 4 806 813 -808 -813\n\t\tmu 0 4 943 942 944 945\n\t\tf 4 807 815 -805 -815\n\t\tmu 0 4 945 944 946 947\n\t\tf 4 -816 -814 -812 -810\n\t\tmu 0 4 939 948 949 940\n\t\tf 4 814 808 810 812\n\t\tmu 0 4 950 938 941 951\n\t\tf 4 816 821 -818 -821\n\t\tmu 0 4 952 953 954 955\n\t\tf 4 817 823 -819 -823\n\t\tmu 0 4 955 954 956 957\n\t\tf 4 818 825 -820 -825\n\t\tmu 0 4 957 956 958 959\n\t\tf 4 819 827 -817 -827\n\t\tmu 0 4 959 958 960 961\n\t\tf 4 -828 -826 -824 -822\n\t\tmu 0 4 953 962 963 954\n\t\tf 4 826 820 822 824\n\t\tmu 0 4 964 952 955 965\n\t\tf 4 828 833 -830 -833\n\t\tmu 0 4 966 967 968 969\n\t\tf 4 829 835 -831 -835\n\t\tmu 0 4 969 968 970 971\n\t\tf 4 830 837 -832 -837\n\t\tmu 0 4 971 970 972 973\n\t\tf 4 831 839 -829 -839\n\t\tmu 0 4 973 972 974 975\n\t\tf 4 -840 -838 -836 -834\n\t\tmu 0 4 967 976 977 968\n\t\tf 4 838 832 834 836\n\t\tmu 0 4 978 966 969 979\n\t\tf 4 840 845 -842 -845\n\t\tmu 0 4 980 981 982 983\n\t\tf 4 841 847 -843 -847\n\t\tmu 0 4 983 982 984 985\n\t\tf 4 842 849 -844 -849\n\t\tmu 0 4 985 984 986 987\n\t\tf 4 843 851 -841 -851\n\t\tmu 0 4 987 986 988 989\n\t\tf 4 -852 -850 -848 -846\n\t\tmu 0 4 981 990 991 982\n\t\tf 4 850 844 846 848\n\t\tmu 0 4 992 980 983 993\n\t\tf 4 852 857 -854 -857\n\t\tmu 0 4 994 995 996 997\n\t\tf 4 853 859 -855 -859\n\t\tmu 0 4 997 996 998 999\n\t\tf 4 854 861 -856 -861\n\t\tmu 0 4 999 998 1000 1001\n\t\tf 4 855 863 -853 -863\n\t\tmu 0 4 1001 1000 1002 1003\n\t\tf 4 -864 -862 -860 -858\n\t\tmu 0 4 995 1004 1005 996\n\t\tf 4 862 856 858 860\n\t\tmu 0 4 1006 994 997 1007\n\t\tf 4 864 869 -866 -869\n\t\tmu 0 4 1008 1009 1010 1011\n\t\tf 4 865 871 -867 -871\n\t\tmu 0 4 1011 1010 1012 1013\n\t\tf 4 866 873 -868 -873\n\t\tmu 0 4 1013 1012 1014 1015\n\t\tf 4 867 875 -865 -875\n\t\tmu 0 4 1015 1014 1016 1017\n\t\tf 4 -876 -874 -872 -870\n\t\tmu 0 4 1009 1018 1019 1010\n\t\tf 4 874 868 870 872\n\t\tmu 0 4 1020 1008 1011 1021\n\t\tf 4 876 881 -878 -881\n\t\tmu 0 4 1022 1023 1024 1025\n\t\tf 4 877 883 -879 -883\n\t\tmu 0 4 1025 1024 1026 1027\n\t\tf 4 878 885 -880 -885\n\t\tmu 0 4 1027 1026 1028 1029\n\t\tf 4 879 887 -877 -887\n\t\tmu 0 4 1029 1028 1030 1031\n\t\tf 4 -888 -886 -884 -882\n\t\tmu 0 4 1023 1032 1033 1024\n\t\tf 4 886 880 882 884\n\t\tmu 0 4 1034 1022 1025 1035\n\t\tf 4 888 893 -890 -893\n\t\tmu 0 4 1036 1037 1038 1039\n\t\tf 4 889 895 -891 -895\n\t\tmu 0 4 1039 1038 1040 1041\n\t\tf 4 890 897 -892 -897\n\t\tmu 0 4 1041 1040 1042 1043\n\t\tf 4 891 899 -889 -899\n\t\tmu 0 4 1043 1042 1044 1045\n\t\tf 4 -900 -898 -896 -894\n\t\tmu 0 4 1037 1046 1047 1038\n\t\tf 4 898 892 894 896\n\t\tmu 0 4 1048 1036 1039 1049\n\t\tf 4 900 905 -902 -905\n\t\tmu 0 4 1050 1051 1052 1053\n\t\tf 4 901 907 -903 -907\n\t\tmu 0 4 1053 1052 1054 1055\n\t\tf 4 902 909 -904 -909\n\t\tmu 0 4 1055 1054 1056 1057\n\t\tf 4 903 911 -901 -911\n\t\tmu 0 4 1057 1056 1058 1059\n\t\tf 4 -912 -910 -908 -906\n\t\tmu 0 4 1051 1060 1061 1052\n\t\tf 4 910 904 906 908\n\t\tmu 0 4 1062 1050 1053 1063\n\t\tf 4 912 917 -914 -917\n\t\tmu 0 4 1064 1065 1066 1067\n\t\tf 4 913 919 -915 -919\n\t\tmu 0 4 1067 1066 1068 1069\n\t\tf 4 914 921 -916 -921\n\t\tmu 0 4 1069 1068 1070 1071\n\t\tf 4 915 923 -913 -923\n\t\tmu 0 4 1071 1070 1072 1073\n\t\tf 4 -924 -922 -920 -918\n\t\tmu 0 4 1065 1074 1075 1066\n\t\tf 4 922 916 918 920\n\t\tmu 0 4 1076 1064 1067 1077\n\t\tf 4 924 929 -926 -929\n\t\tmu 0 4 1078 1079 1080 1081\n\t\tf 4 925 931 -927 -931\n\t\tmu 0 4 1081 1080 1082 1083\n\t\tf 4 926 933 -928 -933\n\t\tmu 0 4 1083 1082 1084 1085\n\t\tf 4 927 935 -925 -935\n\t\tmu 0 4 1085 1084 1086 1087\n\t\tf 4 -936 -934 -932 -930\n\t\tmu 0 4 1079 1088 1089 1080\n\t\tf 4 934 928 930 932\n\t\tmu 0 4 1090 1078 1081 1091\n\t\tf 4 936 941 -938 -941\n\t\tmu 0 4 1092 1093 1094 1095\n\t\tf 4 937 943 -939 -943\n\t\tmu 0 4 1095 1094 1096 1097\n\t\tf 4 938 945 -940 -945\n\t\tmu 0 4 1097 1096 1098 1099\n\t\tf 4 939 947 -937 -947\n\t\tmu 0 4 1099 1098 1100 1101\n\t\tf 4 -948 -946 -944 -942\n\t\tmu 0 4 1093 1102 1103 1094\n\t\tf 4 946 940 942 944\n\t\tmu 0 4 1104 1092 1095 1105\n\t\tf 4 948 953 -950 -953\n\t\tmu 0 4 1106 1107 1108 1109\n\t\tf 4 949 955 -951 -955\n\t\tmu 0 4 1109 1108 1110 1111\n\t\tf 4 950 957 -952 -957\n\t\tmu 0 4 1111 1110 1112 1113\n\t\tf 4 951 959 -949 -959\n\t\tmu 0 4 1113 1112 1114 1115\n\t\tf 4 -960 -958 -956 -954\n\t\tmu 0 4 1107 1116 1117 1108\n\t\tf 4 958 952 954 956\n\t\tmu 0 4 1118 1106 1109 1119\n\t\tf 4 960 965 -962 -965\n\t\tmu 0 4 1120 1121 1122 1123\n\t\tf 4 961 967 -963 -967\n\t\tmu 0 4 1123 1122 1124 1125\n\t\tf 4 962 969 -964 -969\n\t\tmu 0 4 1125 1124 1126 1127\n\t\tf 4 963 971 -961 -971\n\t\tmu 0 4 1127 1126 1128 1129\n\t\tf 4 -972 -970 -968 -966\n\t\tmu 0 4 1121 1130 1131 1122\n\t\tf 4 970 964 966 968\n\t\tmu 0 4 1132 1120 1123 1133\n\t\tf 4 972 977 -974 -977\n\t\tmu 0 4 1134 1135 1136 1137\n\t\tf 4 973 979 -975 -979\n\t\tmu 0 4 1137 1136 1138 1139\n\t\tf 4 974 981 -976 -981\n\t\tmu 0 4 1139 1138 1140 1141\n\t\tf 4 975 983 -973 -983\n\t\tmu 0 4 1141 1140 1142 1143\n\t\tf 4 -984 -982 -980 -978\n\t\tmu 0 4 1135 1144 1145 1136\n\t\tf 4 982 976 978 980\n\t\tmu 0 4 1146 1134 1137 1147\n\t\tf 4 984 989 -986 -989\n\t\tmu 0 4 1148 1149 1150 1151\n\t\tf 4 985 991 -987 -991\n\t\tmu 0 4 1151 1150 1152 1153\n\t\tf 4 986 993 -988 -993\n\t\tmu 0 4 1153 1152 1154 1155\n\t\tf 4 987 995 -985 -995\n\t\tmu 0 4 1155 1154 1156 1157\n\t\tf 4 -996 -994 -992 -990\n\t\tmu 0 4 1149 1158 1159 1150\n\t\tf 4 994 988 990 992\n\t\tmu 0 4 1160 1148 1151 1161\n\t\tf 4 996 1001 -998 -1001\n\t\tmu 0 4 1162 1163 1164 1165\n\t\tf 4 997 1003 -999 -1003\n\t\tmu 0 4 1165 1164 1166 1167;\n\tsetAttr \".fc[500:999]\"\n\t\tf 4 998 1005 -1000 -1005\n\t\tmu 0 4 1167 1166 1168 1169\n\t\tf 4 999 1007 -997 -1007\n\t\tmu 0 4 1169 1168 1170 1171\n\t\tf 4 -1008 -1006 -1004 -1002\n\t\tmu 0 4 1163 1172 1173 1164\n\t\tf 4 1006 1000 1002 1004\n\t\tmu 0 4 1174 1162 1165 1175\n\t\tf 4 1008 1013 -1010 -1013\n\t\tmu 0 4 1176 1177 1178 1179\n\t\tf 4 1009 1015 -1011 -1015\n\t\tmu 0 4 1179 1178 1180 1181\n\t\tf 4 1010 1017 -1012 -1017\n\t\tmu 0 4 1181 1180 1182 1183\n\t\tf 4 1011 1019 -1009 -1019\n\t\tmu 0 4 1183 1182 1184 1185\n\t\tf 4 -1020 -1018 -1016 -1014\n\t\tmu 0 4 1177 1186 1187 1178\n\t\tf 4 1018 1012 1014 1016\n\t\tmu 0 4 1188 1176 1179 1189\n\t\tf 4 1020 1025 -1022 -1025\n\t\tmu 0 4 1190 1191 1192 1193\n\t\tf 4 1021 1027 -1023 -1027\n\t\tmu 0 4 1193 1192 1194 1195\n\t\tf 4 1022 1029 -1024 -1029\n\t\tmu 0 4 1195 1194 1196 1197\n\t\tf 4 1023 1031 -1021 -1031\n\t\tmu 0 4 1197 1196 1198 1199\n\t\tf 4 -1032 -1030 -1028 -1026\n\t\tmu 0 4 1191 1200 1201 1192\n\t\tf 4 1030 1024 1026 1028\n\t\tmu 0 4 1202 1190 1193 1203\n\t\tf 4 1032 1037 -1034 -1037\n\t\tmu 0 4 1204 1205 1206 1207\n\t\tf 4 1033 1039 -1035 -1039\n\t\tmu 0 4 1207 1206 1208 1209\n\t\tf 4 1034 1041 -1036 -1041\n\t\tmu 0 4 1209 1208 1210 1211\n\t\tf 4 1035 1043 -1033 -1043\n\t\tmu 0 4 1211 1210 1212 1213\n\t\tf 4 -1044 -1042 -1040 -1038\n\t\tmu 0 4 1205 1214 1215 1206\n\t\tf 4 1042 1036 1038 1040\n\t\tmu 0 4 1216 1204 1207 1217\n\t\tf 4 1044 1049 -1046 -1049\n\t\tmu 0 4 1218 1219 1220 1221\n\t\tf 4 1045 1051 -1047 -1051\n\t\tmu 0 4 1221 1220 1222 1223\n\t\tf 4 1046 1053 -1048 -1053\n\t\tmu 0 4 1223 1222 1224 1225\n\t\tf 4 1047 1055 -1045 -1055\n\t\tmu 0 4 1225 1224 1226 1227\n\t\tf 4 -1056 -1054 -1052 -1050\n\t\tmu 0 4 1219 1228 1229 1220\n\t\tf 4 1054 1048 1050 1052\n\t\tmu 0 4 1230 1218 1221 1231\n\t\tf 4 1056 1061 -1058 -1061\n\t\tmu 0 4 1232 1233 1234 1235\n\t\tf 4 1057 1063 -1059 -1063\n\t\tmu 0 4 1235 1234 1236 1237\n\t\tf 4 1058 1065 -1060 -1065\n\t\tmu 0 4 1237 1236 1238 1239\n\t\tf 4 1059 1067 -1057 -1067\n\t\tmu 0 4 1239 1238 1240 1241\n\t\tf 4 -1068 -1066 -1064 -1062\n\t\tmu 0 4 1233 1242 1243 1234\n\t\tf 4 1066 1060 1062 1064\n\t\tmu 0 4 1244 1232 1235 1245\n\t\tf 4 1068 1073 -1070 -1073\n\t\tmu 0 4 1246 1247 1248 1249\n\t\tf 4 1069 1075 -1071 -1075\n\t\tmu 0 4 1249 1248 1250 1251\n\t\tf 4 1070 1077 -1072 -1077\n\t\tmu 0 4 1251 1250 1252 1253\n\t\tf 4 1071 1079 -1069 -1079\n\t\tmu 0 4 1253 1252 1254 1255\n\t\tf 4 -1080 -1078 -1076 -1074\n\t\tmu 0 4 1247 1256 1257 1248\n\t\tf 4 1078 1072 1074 1076\n\t\tmu 0 4 1258 1246 1249 1259\n\t\tf 4 1080 1085 -1082 -1085\n\t\tmu 0 4 1260 1261 1262 1263\n\t\tf 4 1081 1087 -1083 -1087\n\t\tmu 0 4 1263 1262 1264 1265\n\t\tf 4 1082 1089 -1084 -1089\n\t\tmu 0 4 1265 1264 1266 1267\n\t\tf 4 1083 1091 -1081 -1091\n\t\tmu 0 4 1267 1266 1268 1269\n\t\tf 4 -1092 -1090 -1088 -1086\n\t\tmu 0 4 1261 1270 1271 1262\n\t\tf 4 1090 1084 1086 1088\n\t\tmu 0 4 1272 1260 1263 1273\n\t\tf 4 1092 1097 -1094 -1097\n\t\tmu 0 4 1274 1275 1276 1277\n\t\tf 4 1093 1099 -1095 -1099\n\t\tmu 0 4 1277 1276 1278 1279\n\t\tf 4 1094 1101 -1096 -1101\n\t\tmu 0 4 1279 1278 1280 1281\n\t\tf 4 1095 1103 -1093 -1103\n\t\tmu 0 4 1281 1280 1282 1283\n\t\tf 4 -1104 -1102 -1100 -1098\n\t\tmu 0 4 1275 1284 1285 1276\n\t\tf 4 1102 1096 1098 1100\n\t\tmu 0 4 1286 1274 1277 1287\n\t\tf 4 1104 1109 -1106 -1109\n\t\tmu 0 4 1288 1289 1290 1291\n\t\tf 4 1105 1111 -1107 -1111\n\t\tmu 0 4 1291 1290 1292 1293\n\t\tf 4 1106 1113 -1108 -1113\n\t\tmu 0 4 1293 1292 1294 1295\n\t\tf 4 1107 1115 -1105 -1115\n\t\tmu 0 4 1295 1294 1296 1297\n\t\tf 4 -1116 -1114 -1112 -1110\n\t\tmu 0 4 1289 1298 1299 1290\n\t\tf 4 1114 1108 1110 1112\n\t\tmu 0 4 1300 1288 1291 1301\n\t\tf 4 1116 1121 -1118 -1121\n\t\tmu 0 4 1302 1303 1304 1305\n\t\tf 4 1117 1123 -1119 -1123\n\t\tmu 0 4 1305 1304 1306 1307\n\t\tf 4 1118 1125 -1120 -1125\n\t\tmu 0 4 1307 1306 1308 1309\n\t\tf 4 1119 1127 -1117 -1127\n\t\tmu 0 4 1309 1308 1310 1311\n\t\tf 4 -1128 -1126 -1124 -1122\n\t\tmu 0 4 1303 1312 1313 1304\n\t\tf 4 1126 1120 1122 1124\n\t\tmu 0 4 1314 1302 1305 1315\n\t\tf 4 1128 1133 -1130 -1133\n\t\tmu 0 4 1316 1317 1318 1319\n\t\tf 4 1129 1135 -1131 -1135\n\t\tmu 0 4 1319 1318 1320 1321\n\t\tf 4 1130 1137 -1132 -1137\n\t\tmu 0 4 1321 1320 1322 1323\n\t\tf 4 1131 1139 -1129 -1139\n\t\tmu 0 4 1323 1322 1324 1325\n\t\tf 4 -1140 -1138 -1136 -1134\n\t\tmu 0 4 1317 1326 1327 1318\n\t\tf 4 1138 1132 1134 1136\n\t\tmu 0 4 1328 1316 1319 1329\n\t\tf 4 1140 1145 -1142 -1145\n\t\tmu 0 4 1330 1331 1332 1333\n\t\tf 4 1141 1147 -1143 -1147\n\t\tmu 0 4 1333 1332 1334 1335\n\t\tf 4 1142 1149 -1144 -1149\n\t\tmu 0 4 1335 1334 1336 1337\n\t\tf 4 1143 1151 -1141 -1151\n\t\tmu 0 4 1337 1336 1338 1339\n\t\tf 4 -1152 -1150 -1148 -1146\n\t\tmu 0 4 1331 1340 1341 1332\n\t\tf 4 1150 1144 1146 1148\n\t\tmu 0 4 1342 1330 1333 1343\n\t\tf 4 1152 1157 -1154 -1157\n\t\tmu 0 4 1344 1345 1346 1347\n\t\tf 4 1153 1159 -1155 -1159\n\t\tmu 0 4 1347 1346 1348 1349\n\t\tf 4 1154 1161 -1156 -1161\n\t\tmu 0 4 1349 1348 1350 1351\n\t\tf 4 1155 1163 -1153 -1163\n\t\tmu 0 4 1351 1350 1352 1353\n\t\tf 4 -1164 -1162 -1160 -1158\n\t\tmu 0 4 1345 1354 1355 1346\n\t\tf 4 1162 1156 1158 1160\n\t\tmu 0 4 1356 1344 1347 1357\n\t\tf 4 1164 1169 -1166 -1169\n\t\tmu 0 4 1358 1359 1360 1361\n\t\tf 4 1165 1171 -1167 -1171\n\t\tmu 0 4 1361 1360 1362 1363\n\t\tf 4 1166 1173 -1168 -1173\n\t\tmu 0 4 1363 1362 1364 1365\n\t\tf 4 1167 1175 -1165 -1175\n\t\tmu 0 4 1365 1364 1366 1367\n\t\tf 4 -1176 -1174 -1172 -1170\n\t\tmu 0 4 1359 1368 1369 1360\n\t\tf 4 1174 1168 1170 1172\n\t\tmu 0 4 1370 1358 1361 1371\n\t\tf 4 1176 1181 -1178 -1181\n\t\tmu 0 4 1372 1373 1374 1375\n\t\tf 4 1177 1183 -1179 -1183\n\t\tmu 0 4 1375 1374 1376 1377\n\t\tf 4 1178 1185 -1180 -1185\n\t\tmu 0 4 1377 1376 1378 1379\n\t\tf 4 1179 1187 -1177 -1187\n\t\tmu 0 4 1379 1378 1380 1381\n\t\tf 4 -1188 -1186 -1184 -1182\n\t\tmu 0 4 1373 1382 1383 1374\n\t\tf 4 1186 1180 1182 1184\n\t\tmu 0 4 1384 1372 1375 1385\n\t\tf 4 1188 1193 -1190 -1193\n\t\tmu 0 4 1386 1387 1388 1389\n\t\tf 4 1189 1195 -1191 -1195\n\t\tmu 0 4 1389 1388 1390 1391\n\t\tf 4 1190 1197 -1192 -1197\n\t\tmu 0 4 1391 1390 1392 1393\n\t\tf 4 1191 1199 -1189 -1199\n\t\tmu 0 4 1393 1392 1394 1395\n\t\tf 4 -1200 -1198 -1196 -1194\n\t\tmu 0 4 1387 1396 1397 1388\n\t\tf 4 1198 1192 1194 1196\n\t\tmu 0 4 1398 1386 1389 1399\n\t\tf 4 1200 1205 -1202 -1205\n\t\tmu 0 4 1400 1401 1402 1403\n\t\tf 4 1201 1207 -1203 -1207\n\t\tmu 0 4 1403 1402 1404 1405\n\t\tf 4 1202 1209 -1204 -1209\n\t\tmu 0 4 1405 1404 1406 1407\n\t\tf 4 1203 1211 -1201 -1211\n\t\tmu 0 4 1407 1406 1408 1409\n\t\tf 4 -1212 -1210 -1208 -1206\n\t\tmu 0 4 1401 1410 1411 1402\n\t\tf 4 1210 1204 1206 1208\n\t\tmu 0 4 1412 1400 1403 1413\n\t\tf 4 1212 1217 -1214 -1217\n\t\tmu 0 4 1414 1415 1416 1417\n\t\tf 4 1213 1219 -1215 -1219\n\t\tmu 0 4 1417 1416 1418 1419\n\t\tf 4 1214 1221 -1216 -1221\n\t\tmu 0 4 1419 1418 1420 1421\n\t\tf 4 1215 1223 -1213 -1223\n\t\tmu 0 4 1421 1420 1422 1423\n\t\tf 4 -1224 -1222 -1220 -1218\n\t\tmu 0 4 1415 1424 1425 1416\n\t\tf 4 1222 1216 1218 1220\n\t\tmu 0 4 1426 1414 1417 1427\n\t\tf 4 1224 1229 -1226 -1229\n\t\tmu 0 4 1428 1429 1430 1431\n\t\tf 4 1225 1231 -1227 -1231\n\t\tmu 0 4 1431 1430 1432 1433\n\t\tf 4 1226 1233 -1228 -1233\n\t\tmu 0 4 1433 1432 1434 1435\n\t\tf 4 1227 1235 -1225 -1235\n\t\tmu 0 4 1435 1434 1436 1437\n\t\tf 4 -1236 -1234 -1232 -1230\n\t\tmu 0 4 1429 1438 1439 1430\n\t\tf 4 1234 1228 1230 1232\n\t\tmu 0 4 1440 1428 1431 1441\n\t\tf 4 1236 1241 -1238 -1241\n\t\tmu 0 4 1442 1443 1444 1445\n\t\tf 4 1237 1243 -1239 -1243\n\t\tmu 0 4 1445 1444 1446 1447\n\t\tf 4 1238 1245 -1240 -1245\n\t\tmu 0 4 1447 1446 1448 1449\n\t\tf 4 1239 1247 -1237 -1247\n\t\tmu 0 4 1449 1448 1450 1451\n\t\tf 4 -1248 -1246 -1244 -1242\n\t\tmu 0 4 1443 1452 1453 1444\n\t\tf 4 1246 1240 1242 1244\n\t\tmu 0 4 1454 1442 1445 1455\n\t\tf 4 1248 1253 -1250 -1253\n\t\tmu 0 4 1456 1457 1458 1459\n\t\tf 4 1249 1255 -1251 -1255\n\t\tmu 0 4 1459 1458 1460 1461\n\t\tf 4 1250 1257 -1252 -1257\n\t\tmu 0 4 1461 1460 1462 1463\n\t\tf 4 1251 1259 -1249 -1259\n\t\tmu 0 4 1463 1462 1464 1465\n\t\tf 4 -1260 -1258 -1256 -1254\n\t\tmu 0 4 1457 1466 1467 1458\n\t\tf 4 1258 1252 1254 1256\n\t\tmu 0 4 1468 1456 1459 1469\n\t\tf 4 1260 1265 -1262 -1265\n\t\tmu 0 4 1470 1471 1472 1473\n\t\tf 4 1261 1267 -1263 -1267\n\t\tmu 0 4 1473 1472 1474 1475\n\t\tf 4 1262 1269 -1264 -1269\n\t\tmu 0 4 1475 1474 1476 1477\n\t\tf 4 1263 1271 -1261 -1271\n\t\tmu 0 4 1477 1476 1478 1479\n\t\tf 4 -1272 -1270 -1268 -1266\n\t\tmu 0 4 1471 1480 1481 1472\n\t\tf 4 1270 1264 1266 1268\n\t\tmu 0 4 1482 1470 1473 1483\n\t\tf 4 1272 1277 -1274 -1277\n\t\tmu 0 4 1484 1485 1486 1487\n\t\tf 4 1273 1279 -1275 -1279\n\t\tmu 0 4 1487 1486 1488 1489\n\t\tf 4 1274 1281 -1276 -1281\n\t\tmu 0 4 1489 1488 1490 1491\n\t\tf 4 1275 1283 -1273 -1283\n\t\tmu 0 4 1491 1490 1492 1493\n\t\tf 4 -1284 -1282 -1280 -1278\n\t\tmu 0 4 1485 1494 1495 1486\n\t\tf 4 1282 1276 1278 1280\n\t\tmu 0 4 1496 1484 1487 1497\n\t\tf 4 1284 1289 -1286 -1289\n\t\tmu 0 4 1498 1499 1500 1501\n\t\tf 4 1285 1291 -1287 -1291\n\t\tmu 0 4 1501 1500 1502 1503\n\t\tf 4 1286 1293 -1288 -1293\n\t\tmu 0 4 1503 1502 1504 1505\n\t\tf 4 1287 1295 -1285 -1295\n\t\tmu 0 4 1505 1504 1506 1507\n\t\tf 4 -1296 -1294 -1292 -1290\n\t\tmu 0 4 1499 1508 1509 1500\n\t\tf 4 1294 1288 1290 1292\n\t\tmu 0 4 1510 1498 1501 1511\n\t\tf 4 1296 1301 -1298 -1301\n\t\tmu 0 4 1512 1513 1514 1515\n\t\tf 4 1297 1303 -1299 -1303\n\t\tmu 0 4 1515 1514 1516 1517\n\t\tf 4 1298 1305 -1300 -1305\n\t\tmu 0 4 1517 1516 1518 1519\n\t\tf 4 1299 1307 -1297 -1307\n\t\tmu 0 4 1519 1518 1520 1521\n\t\tf 4 -1308 -1306 -1304 -1302\n\t\tmu 0 4 1513 1522 1523 1514\n\t\tf 4 1306 1300 1302 1304\n\t\tmu 0 4 1524 1512 1515 1525\n\t\tf 4 1308 1313 -1310 -1313\n\t\tmu 0 4 1526 1527 1528 1529\n\t\tf 4 1309 1315 -1311 -1315\n\t\tmu 0 4 1529 1528 1530 1531\n\t\tf 4 1310 1317 -1312 -1317\n\t\tmu 0 4 1531 1530 1532 1533\n\t\tf 4 1311 1319 -1309 -1319\n\t\tmu 0 4 1533 1532 1534 1535\n\t\tf 4 -1320 -1318 -1316 -1314\n\t\tmu 0 4 1527 1536 1537 1528\n\t\tf 4 1318 1312 1314 1316\n\t\tmu 0 4 1538 1526 1529 1539\n\t\tf 4 1320 1325 -1322 -1325\n\t\tmu 0 4 1540 1541 1542 1543\n\t\tf 4 1321 1327 -1323 -1327\n\t\tmu 0 4 1543 1542 1544 1545\n\t\tf 4 1322 1329 -1324 -1329\n\t\tmu 0 4 1545 1544 1546 1547\n\t\tf 4 1323 1331 -1321 -1331\n\t\tmu 0 4 1547 1546 1548 1549\n\t\tf 4 -1332 -1330 -1328 -1326\n\t\tmu 0 4 1541 1550 1551 1542\n\t\tf 4 1330 1324 1326 1328\n\t\tmu 0 4 1552 1540 1543 1553\n\t\tf 4 1332 1337 -1334 -1337\n\t\tmu 0 4 1554 1555 1556 1557\n\t\tf 4 1333 1339 -1335 -1339\n\t\tmu 0 4 1557 1556 1558 1559\n\t\tf 4 1334 1341 -1336 -1341\n\t\tmu 0 4 1559 1558 1560 1561\n\t\tf 4 1335 1343 -1333 -1343\n\t\tmu 0 4 1561 1560 1562 1563\n\t\tf 4 -1344 -1342 -1340 -1338\n\t\tmu 0 4 1555 1564 1565 1556\n\t\tf 4 1342 1336 1338 1340\n\t\tmu 0 4 1566 1554 1557 1567\n\t\tf 4 1344 1349 -1346 -1349\n\t\tmu 0 4 1568 1569 1570 1571\n\t\tf 4 1345 1351 -1347 -1351\n\t\tmu 0 4 1571 1570 1572 1573\n\t\tf 4 1346 1353 -1348 -1353\n\t\tmu 0 4 1573 1572 1574 1575\n\t\tf 4 1347 1355 -1345 -1355\n\t\tmu 0 4 1575 1574 1576 1577\n\t\tf 4 -1356 -1354 -1352 -1350\n\t\tmu 0 4 1569 1578 1579 1570\n\t\tf 4 1354 1348 1350 1352\n\t\tmu 0 4 1580 1568 1571 1581\n\t\tf 4 1356 1361 -1358 -1361\n\t\tmu 0 4 1582 1583 1584 1585\n\t\tf 4 1357 1363 -1359 -1363\n\t\tmu 0 4 1585 1584 1586 1587\n\t\tf 4 1358 1365 -1360 -1365\n\t\tmu 0 4 1587 1586 1588 1589\n\t\tf 4 1359 1367 -1357 -1367\n\t\tmu 0 4 1589 1588 1590 1591\n\t\tf 4 -1368 -1366 -1364 -1362\n\t\tmu 0 4 1583 1592 1593 1584\n\t\tf 4 1366 1360 1362 1364\n\t\tmu 0 4 1594 1582 1585 1595\n\t\tf 4 1368 1373 -1370 -1373\n\t\tmu 0 4 1596 1597 1598 1599\n\t\tf 4 1369 1375 -1371 -1375\n\t\tmu 0 4 1599 1598 1600 1601\n\t\tf 4 1370 1377 -1372 -1377\n\t\tmu 0 4 1601 1600 1602 1603\n\t\tf 4 1371 1379 -1369 -1379\n\t\tmu 0 4 1603 1602 1604 1605\n\t\tf 4 -1380 -1378 -1376 -1374\n\t\tmu 0 4 1597 1606 1607 1598\n\t\tf 4 1378 1372 1374 1376\n\t\tmu 0 4 1608 1596 1599 1609\n\t\tf 4 1380 1385 -1382 -1385\n\t\tmu 0 4 1610 1611 1612 1613\n\t\tf 4 1381 1387 -1383 -1387\n\t\tmu 0 4 1613 1612 1614 1615\n\t\tf 4 1382 1389 -1384 -1389\n\t\tmu 0 4 1615 1614 1616 1617\n\t\tf 4 1383 1391 -1381 -1391\n\t\tmu 0 4 1617 1616 1618 1619\n\t\tf 4 -1392 -1390 -1388 -1386\n\t\tmu 0 4 1611 1620 1621 1612\n\t\tf 4 1390 1384 1386 1388\n\t\tmu 0 4 1622 1610 1613 1623\n\t\tf 4 1392 1397 -1394 -1397\n\t\tmu 0 4 1624 1625 1626 1627\n\t\tf 4 1393 1399 -1395 -1399\n\t\tmu 0 4 1627 1626 1628 1629\n\t\tf 4 1394 1401 -1396 -1401\n\t\tmu 0 4 1629 1628 1630 1631\n\t\tf 4 1395 1403 -1393 -1403\n\t\tmu 0 4 1631 1630 1632 1633\n\t\tf 4 -1404 -1402 -1400 -1398\n\t\tmu 0 4 1625 1634 1635 1626\n\t\tf 4 1402 1396 1398 1400\n\t\tmu 0 4 1636 1624 1627 1637\n\t\tf 4 1404 1409 -1406 -1409\n\t\tmu 0 4 1638 1639 1640 1641\n\t\tf 4 1405 1411 -1407 -1411\n\t\tmu 0 4 1641 1640 1642 1643\n\t\tf 4 1406 1413 -1408 -1413\n\t\tmu 0 4 1643 1642 1644 1645\n\t\tf 4 1407 1415 -1405 -1415\n\t\tmu 0 4 1645 1644 1646 1647\n\t\tf 4 -1416 -1414 -1412 -1410\n\t\tmu 0 4 1639 1648 1649 1640\n\t\tf 4 1414 1408 1410 1412\n\t\tmu 0 4 1650 1638 1641 1651\n\t\tf 4 1416 1421 -1418 -1421\n\t\tmu 0 4 1652 1653 1654 1655\n\t\tf 4 1417 1423 -1419 -1423\n\t\tmu 0 4 1655 1654 1656 1657\n\t\tf 4 1418 1425 -1420 -1425\n\t\tmu 0 4 1657 1656 1658 1659\n\t\tf 4 1419 1427 -1417 -1427\n\t\tmu 0 4 1659 1658 1660 1661\n\t\tf 4 -1428 -1426 -1424 -1422\n\t\tmu 0 4 1653 1662 1663 1654\n\t\tf 4 1426 1420 1422 1424\n\t\tmu 0 4 1664 1652 1655 1665\n\t\tf 4 1428 1433 -1430 -1433\n\t\tmu 0 4 1666 1667 1668 1669\n\t\tf 4 1429 1435 -1431 -1435\n\t\tmu 0 4 1669 1668 1670 1671\n\t\tf 4 1430 1437 -1432 -1437\n\t\tmu 0 4 1671 1670 1672 1673\n\t\tf 4 1431 1439 -1429 -1439\n\t\tmu 0 4 1673 1672 1674 1675\n\t\tf 4 -1440 -1438 -1436 -1434\n\t\tmu 0 4 1667 1676 1677 1668\n\t\tf 4 1438 1432 1434 1436\n\t\tmu 0 4 1678 1666 1669 1679\n\t\tf 4 1440 1445 -1442 -1445\n\t\tmu 0 4 1680 1681 1682 1683\n\t\tf 4 1441 1447 -1443 -1447\n\t\tmu 0 4 1683 1682 1684 1685\n\t\tf 4 1442 1449 -1444 -1449\n\t\tmu 0 4 1685 1684 1686 1687\n\t\tf 4 1443 1451 -1441 -1451\n\t\tmu 0 4 1687 1686 1688 1689\n\t\tf 4 -1452 -1450 -1448 -1446\n\t\tmu 0 4 1681 1690 1691 1682\n\t\tf 4 1450 1444 1446 1448\n\t\tmu 0 4 1692 1680 1683 1693\n\t\tf 4 1452 1457 -1454 -1457\n\t\tmu 0 4 1694 1695 1696 1697\n\t\tf 4 1453 1459 -1455 -1459\n\t\tmu 0 4 1697 1696 1698 1699\n\t\tf 4 1454 1461 -1456 -1461\n\t\tmu 0 4 1699 1698 1700 1701\n\t\tf 4 1455 1463 -1453 -1463\n\t\tmu 0 4 1701 1700 1702 1703\n\t\tf 4 -1464 -1462 -1460 -1458\n\t\tmu 0 4 1695 1704 1705 1696\n\t\tf 4 1462 1456 1458 1460\n\t\tmu 0 4 1706 1694 1697 1707\n\t\tf 4 1464 1469 -1466 -1469\n\t\tmu 0 4 1708 1709 1710 1711\n\t\tf 4 1465 1471 -1467 -1471\n\t\tmu 0 4 1711 1710 1712 1713\n\t\tf 4 1466 1473 -1468 -1473\n\t\tmu 0 4 1713 1712 1714 1715\n\t\tf 4 1467 1475 -1465 -1475\n\t\tmu 0 4 1715 1714 1716 1717\n\t\tf 4 -1476 -1474 -1472 -1470\n\t\tmu 0 4 1709 1718 1719 1710\n\t\tf 4 1474 1468 1470 1472\n\t\tmu 0 4 1720 1708 1711 1721\n\t\tf 4 1476 1481 -1478 -1481\n\t\tmu 0 4 1722 1723 1724 1725\n\t\tf 4 1477 1483 -1479 -1483\n\t\tmu 0 4 1725 1724 1726 1727\n\t\tf 4 1478 1485 -1480 -1485\n\t\tmu 0 4 1727 1726 1728 1729\n\t\tf 4 1479 1487 -1477 -1487\n\t\tmu 0 4 1729 1728 1730 1731\n\t\tf 4 -1488 -1486 -1484 -1482\n\t\tmu 0 4 1723 1732 1733 1724\n\t\tf 4 1486 1480 1482 1484\n\t\tmu 0 4 1734 1722 1725 1735\n\t\tf 4 1488 1493 -1490 -1493\n\t\tmu 0 4 1736 1737 1738 1739\n\t\tf 4 1489 1495 -1491 -1495\n\t\tmu 0 4 1739 1738 1740 1741\n\t\tf 4 1490 1497 -1492 -1497\n\t\tmu 0 4 1741 1740 1742 1743\n\t\tf 4 1491 1499 -1489 -1499\n\t\tmu 0 4 1743 1742 1744 1745\n\t\tf 4 -1500 -1498 -1496 -1494\n\t\tmu 0 4 1737 1746 1747 1738\n\t\tf 4 1498 1492 1494 1496\n\t\tmu 0 4 1748 1736 1739 1749\n\t\tf 4 1500 1505 -1502 -1505\n\t\tmu 0 4 1750 1751 1752 1753\n\t\tf 4 1501 1507 -1503 -1507\n\t\tmu 0 4 1753 1752 1754 1755\n\t\tf 4 1502 1509 -1504 -1509\n\t\tmu 0 4 1755 1754 1756 1757\n\t\tf 4 1503 1511 -1501 -1511\n\t\tmu 0 4 1757 1756 1758 1759\n\t\tf 4 -1512 -1510 -1508 -1506\n\t\tmu 0 4 1751 1760 1761 1752\n\t\tf 4 1510 1504 1506 1508\n\t\tmu 0 4 1762 1750 1753 1763\n\t\tf 4 1512 1517 -1514 -1517\n\t\tmu 0 4 1764 1765 1766 1767\n\t\tf 4 1513 1519 -1515 -1519\n\t\tmu 0 4 1767 1766 1768 1769\n\t\tf 4 1514 1521 -1516 -1521\n\t\tmu 0 4 1769 1768 1770 1771\n\t\tf 4 1515 1523 -1513 -1523\n\t\tmu 0 4 1771 1770 1772 1773\n\t\tf 4 -1524 -1522 -1520 -1518\n\t\tmu 0 4 1765 1774 1775 1766\n\t\tf 4 1522 1516 1518 1520\n\t\tmu 0 4 1776 1764 1767 1777\n\t\tf 4 1524 1529 -1526 -1529\n\t\tmu 0 4 1778 1779 1780 1781\n\t\tf 4 1525 1531 -1527 -1531\n\t\tmu 0 4 1781 1780 1782 1783\n\t\tf 4 1526 1533 -1528 -1533\n\t\tmu 0 4 1783 1782 1784 1785\n\t\tf 4 1527 1535 -1525 -1535\n\t\tmu 0 4 1785 1784 1786 1787\n\t\tf 4 -1536 -1534 -1532 -1530\n\t\tmu 0 4 1779 1788 1789 1780\n\t\tf 4 1534 1528 1530 1532\n\t\tmu 0 4 1790 1778 1781 1791\n\t\tf 4 1536 1541 -1538 -1541\n\t\tmu 0 4 1792 1793 1794 1795\n\t\tf 4 1537 1543 -1539 -1543\n\t\tmu 0 4 1795 1794 1796 1797\n\t\tf 4 1538 1545 -1540 -1545\n\t\tmu 0 4 1797 1796 1798 1799\n\t\tf 4 1539 1547 -1537 -1547\n\t\tmu 0 4 1799 1798 1800 1801\n\t\tf 4 -1548 -1546 -1544 -1542\n\t\tmu 0 4 1793 1802 1803 1794\n\t\tf 4 1546 1540 1542 1544\n\t\tmu 0 4 1804 1792 1795 1805\n\t\tf 4 1548 1553 -1550 -1553\n\t\tmu 0 4 1806 1807 1808 1809\n\t\tf 4 1549 1555 -1551 -1555\n\t\tmu 0 4 1809 1808 1810 1811\n\t\tf 4 1550 1557 -1552 -1557\n\t\tmu 0 4 1811 1810 1812 1813\n\t\tf 4 1551 1559 -1549 -1559\n\t\tmu 0 4 1813 1812 1814 1815\n\t\tf 4 -1560 -1558 -1556 -1554\n\t\tmu 0 4 1807 1816 1817 1808\n\t\tf 4 1558 1552 1554 1556\n\t\tmu 0 4 1818 1806 1809 1819\n\t\tf 4 1560 1565 -1562 -1565\n\t\tmu 0 4 1820 1821 1822 1823\n\t\tf 4 1561 1567 -1563 -1567\n\t\tmu 0 4 1823 1822 1824 1825\n\t\tf 4 1562 1569 -1564 -1569\n\t\tmu 0 4 1825 1824 1826 1827\n\t\tf 4 1563 1571 -1561 -1571\n\t\tmu 0 4 1827 1826 1828 1829\n\t\tf 4 -1572 -1570 -1568 -1566\n\t\tmu 0 4 1821 1830 1831 1822\n\t\tf 4 1570 1564 1566 1568\n\t\tmu 0 4 1832 1820 1823 1833\n\t\tf 4 1572 1577 -1574 -1577\n\t\tmu 0 4 1834 1835 1836 1837\n\t\tf 4 1573 1579 -1575 -1579\n\t\tmu 0 4 1837 1836 1838 1839\n\t\tf 4 1574 1581 -1576 -1581\n\t\tmu 0 4 1839 1838 1840 1841\n\t\tf 4 1575 1583 -1573 -1583\n\t\tmu 0 4 1841 1840 1842 1843\n\t\tf 4 -1584 -1582 -1580 -1578\n\t\tmu 0 4 1835 1844 1845 1836\n\t\tf 4 1582 1576 1578 1580\n\t\tmu 0 4 1846 1834 1837 1847\n\t\tf 4 1584 1589 -1586 -1589\n\t\tmu 0 4 1848 1849 1850 1851\n\t\tf 4 1585 1591 -1587 -1591\n\t\tmu 0 4 1851 1850 1852 1853\n\t\tf 4 1586 1593 -1588 -1593\n\t\tmu 0 4 1853 1852 1854 1855\n\t\tf 4 1587 1595 -1585 -1595\n\t\tmu 0 4 1855 1854 1856 1857\n\t\tf 4 -1596 -1594 -1592 -1590\n\t\tmu 0 4 1849 1858 1859 1850\n\t\tf 4 1594 1588 1590 1592\n\t\tmu 0 4 1860 1848 1851 1861\n\t\tf 4 1596 1601 -1598 -1601\n\t\tmu 0 4 1862 1863 1864 1865\n\t\tf 4 1597 1603 -1599 -1603\n\t\tmu 0 4 1865 1864 1866 1867\n\t\tf 4 1598 1605 -1600 -1605\n\t\tmu 0 4 1867 1866 1868 1869\n\t\tf 4 1599 1607 -1597 -1607\n\t\tmu 0 4 1869 1868 1870 1871\n\t\tf 4 -1608 -1606 -1604 -1602\n\t\tmu 0 4 1863 1872 1873 1864\n\t\tf 4 1606 1600 1602 1604\n\t\tmu 0 4 1874 1862 1865 1875\n\t\tf 4 1608 1613 -1610 -1613\n\t\tmu 0 4 1876 1877 1878 1879\n\t\tf 4 1609 1615 -1611 -1615\n\t\tmu 0 4 1879 1878 1880 1881\n\t\tf 4 1610 1617 -1612 -1617\n\t\tmu 0 4 1881 1880 1882 1883\n\t\tf 4 1611 1619 -1609 -1619\n\t\tmu 0 4 1883 1882 1884 1885\n\t\tf 4 -1620 -1618 -1616 -1614\n\t\tmu 0 4 1877 1886 1887 1878\n\t\tf 4 1618 1612 1614 1616\n\t\tmu 0 4 1888 1876 1879 1889\n\t\tf 4 1620 1625 -1622 -1625\n\t\tmu 0 4 1890 1891 1892 1893\n\t\tf 4 1621 1627 -1623 -1627\n\t\tmu 0 4 1893 1892 1894 1895\n\t\tf 4 1622 1629 -1624 -1629\n\t\tmu 0 4 1895 1894 1896 1897\n\t\tf 4 1623 1631 -1621 -1631\n\t\tmu 0 4 1897 1896 1898 1899\n\t\tf 4 -1632 -1630 -1628 -1626\n\t\tmu 0 4 1891 1900 1901 1892\n\t\tf 4 1630 1624 1626 1628\n\t\tmu 0 4 1902 1890 1893 1903\n\t\tf 4 1632 1637 -1634 -1637\n\t\tmu 0 4 1904 1905 1906 1907\n\t\tf 4 1633 1639 -1635 -1639\n\t\tmu 0 4 1907 1906 1908 1909\n\t\tf 4 1634 1641 -1636 -1641\n\t\tmu 0 4 1909 1908 1910 1911\n\t\tf 4 1635 1643 -1633 -1643\n\t\tmu 0 4 1911 1910 1912 1913\n\t\tf 4 -1644 -1642 -1640 -1638\n\t\tmu 0 4 1905 1914 1915 1906\n\t\tf 4 1642 1636 1638 1640\n\t\tmu 0 4 1916 1904 1907 1917\n\t\tf 4 1644 1649 -1646 -1649\n\t\tmu 0 4 1918 1919 1920 1921\n\t\tf 4 1645 1651 -1647 -1651\n\t\tmu 0 4 1921 1920 1922 1923\n\t\tf 4 1646 1653 -1648 -1653\n\t\tmu 0 4 1923 1922 1924 1925\n\t\tf 4 1647 1655 -1645 -1655\n\t\tmu 0 4 1925 1924 1926 1927\n\t\tf 4 -1656 -1654 -1652 -1650\n\t\tmu 0 4 1919 1928 1929 1920\n\t\tf 4 1654 1648 1650 1652\n\t\tmu 0 4 1930 1918 1921 1931\n\t\tf 4 1656 1661 -1658 -1661\n\t\tmu 0 4 1932 1933 1934 1935\n\t\tf 4 1657 1663 -1659 -1663\n\t\tmu 0 4 1935 1934 1936 1937\n\t\tf 4 1658 1665 -1660 -1665\n\t\tmu 0 4 1937 1936 1938 1939\n\t\tf 4 1659 1667 -1657 -1667\n\t\tmu 0 4 1939 1938 1940 1941\n\t\tf 4 -1668 -1666 -1664 -1662\n\t\tmu 0 4 1933 1942 1943 1934\n\t\tf 4 1666 1660 1662 1664\n\t\tmu 0 4 1944 1932 1935 1945\n\t\tf 4 1668 1673 -1670 -1673\n\t\tmu 0 4 1946 1947 1948 1949\n\t\tf 4 1669 1675 -1671 -1675\n\t\tmu 0 4 1949 1948 1950 1951\n\t\tf 4 1670 1677 -1672 -1677\n\t\tmu 0 4 1951 1950 1952 1953\n\t\tf 4 1671 1679 -1669 -1679\n\t\tmu 0 4 1953 1952 1954 1955\n\t\tf 4 -1680 -1678 -1676 -1674\n\t\tmu 0 4 1947 1956 1957 1948\n\t\tf 4 1678 1672 1674 1676\n\t\tmu 0 4 1958 1946 1949 1959\n\t\tf 4 1680 1685 -1682 -1685\n\t\tmu 0 4 1960 1961 1962 1963\n\t\tf 4 1681 1687 -1683 -1687\n\t\tmu 0 4 1963 1962 1964 1965\n\t\tf 4 1682 1689 -1684 -1689\n\t\tmu 0 4 1965 1964 1966 1967\n\t\tf 4 1683 1691 -1681 -1691\n\t\tmu 0 4 1967 1966 1968 1969\n\t\tf 4 -1692 -1690 -1688 -1686\n\t\tmu 0 4 1961 1970 1971 1962\n\t\tf 4 1690 1684 1686 1688\n\t\tmu 0 4 1972 1960 1963 1973\n\t\tf 4 1692 1697 -1694 -1697\n\t\tmu 0 4 1974 1975 1976 1977\n\t\tf 4 1693 1699 -1695 -1699\n\t\tmu 0 4 1977 1976 1978 1979\n\t\tf 4 1694 1701 -1696 -1701\n\t\tmu 0 4 1979 1978 1980 1981\n\t\tf 4 1695 1703 -1693 -1703\n\t\tmu 0 4 1981 1980 1982 1983\n\t\tf 4 -1704 -1702 -1700 -1698\n\t\tmu 0 4 1975 1984 1985 1976\n\t\tf 4 1702 1696 1698 1700\n\t\tmu 0 4 1986 1974 1977 1987\n\t\tf 4 1704 1709 -1706 -1709\n\t\tmu 0 4 1988 1989 1990 1991\n\t\tf 4 1705 1711 -1707 -1711\n\t\tmu 0 4 1991 1990 1992 1993\n\t\tf 4 1706 1713 -1708 -1713\n\t\tmu 0 4 1993 1992 1994 1995\n\t\tf 4 1707 1715 -1705 -1715\n\t\tmu 0 4 1995 1994 1996 1997\n\t\tf 4 -1716 -1714 -1712 -1710\n\t\tmu 0 4 1989 1998 1999 1990\n\t\tf 4 1714 1708 1710 1712\n\t\tmu 0 4 2000 1988 1991 2001\n\t\tf 4 1716 1721 -1718 -1721\n\t\tmu 0 4 2002 2003 2004 2005\n\t\tf 4 1717 1723 -1719 -1723\n\t\tmu 0 4 2005 2004 2006 2007\n\t\tf 4 1718 1725 -1720 -1725\n\t\tmu 0 4 2007 2006 2008 2009\n\t\tf 4 1719 1727 -1717 -1727\n\t\tmu 0 4 2009 2008 2010 2011\n\t\tf 4 -1728 -1726 -1724 -1722\n\t\tmu 0 4 2003 2012 2013 2004\n\t\tf 4 1726 1720 1722 1724\n\t\tmu 0 4 2014 2002 2005 2015\n\t\tf 4 1728 1733 -1730 -1733\n\t\tmu 0 4 2016 2017 2018 2019\n\t\tf 4 1729 1735 -1731 -1735\n\t\tmu 0 4 2019 2018 2020 2021\n\t\tf 4 1730 1737 -1732 -1737\n\t\tmu 0 4 2021 2020 2022 2023\n\t\tf 4 1731 1739 -1729 -1739\n\t\tmu 0 4 2023 2022 2024 2025\n\t\tf 4 -1740 -1738 -1736 -1734\n\t\tmu 0 4 2017 2026 2027 2018\n\t\tf 4 1738 1732 1734 1736\n\t\tmu 0 4 2028 2016 2019 2029\n\t\tf 4 1740 1745 -1742 -1745\n\t\tmu 0 4 2030 2031 2032 2033\n\t\tf 4 1741 1747 -1743 -1747\n\t\tmu 0 4 2033 2032 2034 2035\n\t\tf 4 1742 1749 -1744 -1749\n\t\tmu 0 4 2035 2034 2036 2037\n\t\tf 4 1743 1751 -1741 -1751\n\t\tmu 0 4 2037 2036 2038 2039\n\t\tf 4 -1752 -1750 -1748 -1746\n\t\tmu 0 4 2031 2040 2041 2032\n\t\tf 4 1750 1744 1746 1748\n\t\tmu 0 4 2042 2030 2033 2043\n\t\tf 4 1752 1757 -1754 -1757\n\t\tmu 0 4 2044 2045 2046 2047\n\t\tf 4 1753 1759 -1755 -1759\n\t\tmu 0 4 2047 2046 2048 2049\n\t\tf 4 1754 1761 -1756 -1761\n\t\tmu 0 4 2049 2048 2050 2051\n\t\tf 4 1755 1763 -1753 -1763\n\t\tmu 0 4 2051 2050 2052 2053\n\t\tf 4 -1764 -1762 -1760 -1758\n\t\tmu 0 4 2045 2054 2055 2046\n\t\tf 4 1762 1756 1758 1760\n\t\tmu 0 4 2056 2044 2047 2057\n\t\tf 4 1764 1769 -1766 -1769\n\t\tmu 0 4 2058 2059 2060 2061\n\t\tf 4 1765 1771 -1767 -1771\n\t\tmu 0 4 2061 2060 2062 2063\n\t\tf 4 1766 1773 -1768 -1773\n\t\tmu 0 4 2063 2062 2064 2065\n\t\tf 4 1767 1775 -1765 -1775\n\t\tmu 0 4 2065 2064 2066 2067\n\t\tf 4 -1776 -1774 -1772 -1770\n\t\tmu 0 4 2059 2068 2069 2060\n\t\tf 4 1774 1768 1770 1772\n\t\tmu 0 4 2070 2058 2061 2071\n\t\tf 4 1776 1781 -1778 -1781\n\t\tmu 0 4 2072 2073 2074 2075\n\t\tf 4 1777 1783 -1779 -1783\n\t\tmu 0 4 2075 2074 2076 2077\n\t\tf 4 1778 1785 -1780 -1785\n\t\tmu 0 4 2077 2076 2078 2079\n\t\tf 4 1779 1787 -1777 -1787\n\t\tmu 0 4 2079 2078 2080 2081\n\t\tf 4 -1788 -1786 -1784 -1782\n\t\tmu 0 4 2073 2082 2083 2074\n\t\tf 4 1786 1780 1782 1784\n\t\tmu 0 4 2084 2072 2075 2085\n\t\tf 4 1788 1793 -1790 -1793\n\t\tmu 0 4 2086 2087 2088 2089\n\t\tf 4 1789 1795 -1791 -1795\n\t\tmu 0 4 2089 2088 2090 2091\n\t\tf 4 1790 1797 -1792 -1797\n\t\tmu 0 4 2091 2090 2092 2093\n\t\tf 4 1791 1799 -1789 -1799\n\t\tmu 0 4 2093 2092 2094 2095\n\t\tf 4 -1800 -1798 -1796 -1794\n\t\tmu 0 4 2087 2096 2097 2088\n\t\tf 4 1798 1792 1794 1796\n\t\tmu 0 4 2098 2086 2089 2099\n\t\tf 4 1800 1805 -1802 -1805\n\t\tmu 0 4 2100 2101 2102 2103\n\t\tf 4 1801 1807 -1803 -1807\n\t\tmu 0 4 2103 2102 2104 2105\n\t\tf 4 1802 1809 -1804 -1809\n\t\tmu 0 4 2105 2104 2106 2107\n\t\tf 4 1803 1811 -1801 -1811\n\t\tmu 0 4 2107 2106 2108 2109\n\t\tf 4 -1812 -1810 -1808 -1806\n\t\tmu 0 4 2101 2110 2111 2102\n\t\tf 4 1810 1804 1806 1808\n\t\tmu 0 4 2112 2100 2103 2113\n\t\tf 4 1812 1817 -1814 -1817\n\t\tmu 0 4 2114 2115 2116 2117\n\t\tf 4 1813 1819 -1815 -1819\n\t\tmu 0 4 2117 2116 2118 2119\n\t\tf 4 1814 1821 -1816 -1821\n\t\tmu 0 4 2119 2118 2120 2121\n\t\tf 4 1815 1823 -1813 -1823\n\t\tmu 0 4 2121 2120 2122 2123\n\t\tf 4 -1824 -1822 -1820 -1818\n\t\tmu 0 4 2115 2124 2125 2116\n\t\tf 4 1822 1816 1818 1820\n\t\tmu 0 4 2126 2114 2117 2127\n\t\tf 4 1824 1829 -1826 -1829\n\t\tmu 0 4 2128 2129 2130 2131\n\t\tf 4 1825 1831 -1827 -1831\n\t\tmu 0 4 2131 2130 2132 2133\n\t\tf 4 1826 1833 -1828 -1833\n\t\tmu 0 4 2133 2132 2134 2135\n\t\tf 4 1827 1835 -1825 -1835\n\t\tmu 0 4 2135 2134 2136 2137\n\t\tf 4 -1836 -1834 -1832 -1830\n\t\tmu 0 4 2129 2138 2139 2130\n\t\tf 4 1834 1828 1830 1832\n\t\tmu 0 4 2140 2128 2131 2141\n\t\tf 4 1836 1841 -1838 -1841\n\t\tmu 0 4 2142 2143 2144 2145\n\t\tf 4 1837 1843 -1839 -1843\n\t\tmu 0 4 2145 2144 2146 2147\n\t\tf 4 1838 1845 -1840 -1845\n\t\tmu 0 4 2147 2146 2148 2149\n\t\tf 4 1839 1847 -1837 -1847\n\t\tmu 0 4 2149 2148 2150 2151\n\t\tf 4 -1848 -1846 -1844 -1842\n\t\tmu 0 4 2143 2152 2153 2144\n\t\tf 4 1846 1840 1842 1844\n\t\tmu 0 4 2154 2142 2145 2155\n\t\tf 4 1848 1853 -1850 -1853\n\t\tmu 0 4 2156 2157 2158 2159\n\t\tf 4 1849 1855 -1851 -1855\n\t\tmu 0 4 2159 2158 2160 2161\n\t\tf 4 1850 1857 -1852 -1857\n\t\tmu 0 4 2161 2160 2162 2163\n\t\tf 4 1851 1859 -1849 -1859\n\t\tmu 0 4 2163 2162 2164 2165\n\t\tf 4 -1860 -1858 -1856 -1854\n\t\tmu 0 4 2157 2166 2167 2158\n\t\tf 4 1858 1852 1854 1856\n\t\tmu 0 4 2168 2156 2159 2169\n\t\tf 4 1860 1865 -1862 -1865\n\t\tmu 0 4 2170 2171 2172 2173\n\t\tf 4 1861 1867 -1863 -1867\n\t\tmu 0 4 2173 2172 2174 2175\n\t\tf 4 1862 1869 -1864 -1869\n\t\tmu 0 4 2175 2174 2176 2177\n\t\tf 4 1863 1871 -1861 -1871\n\t\tmu 0 4 2177 2176 2178 2179\n\t\tf 4 -1872 -1870 -1868 -1866\n\t\tmu 0 4 2171 2180 2181 2172\n\t\tf 4 1870 1864 1866 1868\n\t\tmu 0 4 2182 2170 2173 2183\n\t\tf 4 1872 1877 -1874 -1877\n\t\tmu 0 4 2184 2185 2186 2187\n\t\tf 4 1873 1879 -1875 -1879\n\t\tmu 0 4 2187 2186 2188 2189\n\t\tf 4 1874 1881 -1876 -1881\n\t\tmu 0 4 2189 2188 2190 2191\n\t\tf 4 1875 1883 -1873 -1883\n\t\tmu 0 4 2191 2190 2192 2193\n\t\tf 4 -1884 -1882 -1880 -1878\n\t\tmu 0 4 2185 2194 2195 2186\n\t\tf 4 1882 1876 1878 1880\n\t\tmu 0 4 2196 2184 2187 2197\n\t\tf 4 1884 1889 -1886 -1889\n\t\tmu 0 4 2198 2199 2200 2201\n\t\tf 4 1885 1891 -1887 -1891\n\t\tmu 0 4 2201 2200 2202 2203\n\t\tf 4 1886 1893 -1888 -1893\n\t\tmu 0 4 2203 2202 2204 2205\n\t\tf 4 1887 1895 -1885 -1895\n\t\tmu 0 4 2205 2204 2206 2207\n\t\tf 4 -1896 -1894 -1892 -1890\n\t\tmu 0 4 2199 2208 2209 2200\n\t\tf 4 1894 1888 1890 1892\n\t\tmu 0 4 2210 2198 2201 2211\n\t\tf 4 1896 1901 -1898 -1901\n\t\tmu 0 4 2212 2213 2214 2215\n\t\tf 4 1897 1903 -1899 -1903\n\t\tmu 0 4 2215 2214 2216 2217\n\t\tf 4 1898 1905 -1900 -1905\n\t\tmu 0 4 2217 2216 2218 2219\n\t\tf 4 1899 1907 -1897 -1907\n\t\tmu 0 4 2219 2218 2220 2221\n\t\tf 4 -1908 -1906 -1904 -1902\n\t\tmu 0 4 2213 2222 2223 2214\n\t\tf 4 1906 1900 1902 1904\n\t\tmu 0 4 2224 2212 2215 2225\n\t\tf 4 1908 1913 -1910 -1913\n\t\tmu 0 4 2226 2227 2228 2229\n\t\tf 4 1909 1915 -1911 -1915\n\t\tmu 0 4 2229 2228 2230 2231\n\t\tf 4 1910 1917 -1912 -1917\n\t\tmu 0 4 2231 2230 2232 2233\n\t\tf 4 1911 1919 -1909 -1919\n\t\tmu 0 4 2233 2232 2234 2235\n\t\tf 4 -1920 -1918 -1916 -1914\n\t\tmu 0 4 2227 2236 2237 2228\n\t\tf 4 1918 1912 1914 1916\n\t\tmu 0 4 2238 2226 2229 2239\n\t\tf 4 1920 1925 -1922 -1925\n\t\tmu 0 4 2240 2241 2242 2243\n\t\tf 4 1921 1927 -1923 -1927\n\t\tmu 0 4 2243 2242 2244 2245\n\t\tf 4 1922 1929 -1924 -1929\n\t\tmu 0 4 2245 2244 2246 2247\n\t\tf 4 1923 1931 -1921 -1931\n\t\tmu 0 4 2247 2246 2248 2249\n\t\tf 4 -1932 -1930 -1928 -1926\n\t\tmu 0 4 2241 2250 2251 2242\n\t\tf 4 1930 1924 1926 1928\n\t\tmu 0 4 2252 2240 2243 2253\n\t\tf 4 1932 1937 -1934 -1937\n\t\tmu 0 4 2254 2255 2256 2257\n\t\tf 4 1933 1939 -1935 -1939\n\t\tmu 0 4 2257 2256 2258 2259\n\t\tf 4 1934 1941 -1936 -1941\n\t\tmu 0 4 2259 2258 2260 2261\n\t\tf 4 1935 1943 -1933 -1943\n\t\tmu 0 4 2261 2260 2262 2263\n\t\tf 4 -1944 -1942 -1940 -1938\n\t\tmu 0 4 2255 2264 2265 2256\n\t\tf 4 1942 1936 1938 1940\n\t\tmu 0 4 2266 2254 2257 2267\n\t\tf 4 1944 1949 -1946 -1949\n\t\tmu 0 4 2268 2269 2270 2271\n\t\tf 4 1945 1951 -1947 -1951\n\t\tmu 0 4 2271 2270 2272 2273\n\t\tf 4 1946 1953 -1948 -1953\n\t\tmu 0 4 2273 2272 2274 2275\n\t\tf 4 1947 1955 -1945 -1955\n\t\tmu 0 4 2275 2274 2276 2277\n\t\tf 4 -1956 -1954 -1952 -1950\n\t\tmu 0 4 2269 2278 2279 2270\n\t\tf 4 1954 1948 1950 1952\n\t\tmu 0 4 2280 2268 2271 2281\n\t\tf 4 1956 1961 -1958 -1961\n\t\tmu 0 4 2282 2283 2284 2285\n\t\tf 4 1957 1963 -1959 -1963\n\t\tmu 0 4 2285 2284 2286 2287\n\t\tf 4 1958 1965 -1960 -1965\n\t\tmu 0 4 2287 2286 2288 2289\n\t\tf 4 1959 1967 -1957 -1967\n\t\tmu 0 4 2289 2288 2290 2291\n\t\tf 4 -1968 -1966 -1964 -1962\n\t\tmu 0 4 2283 2292 2293 2284\n\t\tf 4 1966 1960 1962 1964\n\t\tmu 0 4 2294 2282 2285 2295\n\t\tf 4 1968 1973 -1970 -1973\n\t\tmu 0 4 2296 2297 2298 2299\n\t\tf 4 1969 1975 -1971 -1975\n\t\tmu 0 4 2299 2298 2300 2301\n\t\tf 4 1970 1977 -1972 -1977\n\t\tmu 0 4 2301 2300 2302 2303\n\t\tf 4 1971 1979 -1969 -1979\n\t\tmu 0 4 2303 2302 2304 2305\n\t\tf 4 -1980 -1978 -1976 -1974\n\t\tmu 0 4 2297 2306 2307 2298\n\t\tf 4 1978 1972 1974 1976\n\t\tmu 0 4 2308 2296 2299 2309\n\t\tf 4 1980 1985 -1982 -1985\n\t\tmu 0 4 2310 2311 2312 2313\n\t\tf 4 1981 1987 -1983 -1987\n\t\tmu 0 4 2313 2312 2314 2315\n\t\tf 4 1982 1989 -1984 -1989\n\t\tmu 0 4 2315 2314 2316 2317\n\t\tf 4 1983 1991 -1981 -1991\n\t\tmu 0 4 2317 2316 2318 2319\n\t\tf 4 -1992 -1990 -1988 -1986\n\t\tmu 0 4 2311 2320 2321 2312\n\t\tf 4 1990 1984 1986 1988\n\t\tmu 0 4 2322 2310 2313 2323\n\t\tf 4 1992 1997 -1994 -1997\n\t\tmu 0 4 2324 2325 2326 2327\n\t\tf 4 1993 1999 -1995 -1999\n\t\tmu 0 4 2327 2326 2328 2329\n\t\tf 4 1994 2001 -1996 -2001\n\t\tmu 0 4 2329 2328 2330 2331\n\t\tf 4 1995 2003 -1993 -2003\n\t\tmu 0 4 2331 2330 2332 2333;\n\tsetAttr \".fc[1000:1031]\"\n\t\tf 4 -2004 -2002 -2000 -1998\n\t\tmu 0 4 2325 2334 2335 2326\n\t\tf 4 2002 1996 1998 2000\n\t\tmu 0 4 2336 2324 2327 2337\n\t\tf 4 2004 2009 -2006 -2009\n\t\tmu 0 4 2338 2339 2340 2341\n\t\tf 4 2005 2011 -2007 -2011\n\t\tmu 0 4 2341 2340 2342 2343\n\t\tf 4 2006 2013 -2008 -2013\n\t\tmu 0 4 2343 2342 2344 2345\n\t\tf 4 2007 2015 -2005 -2015\n\t\tmu 0 4 2345 2344 2346 2347\n\t\tf 4 -2016 -2014 -2012 -2010\n\t\tmu 0 4 2339 2348 2349 2340\n\t\tf 4 2014 2008 2010 2012\n\t\tmu 0 4 2350 2338 2341 2351\n\t\tf 4 2016 2021 -2018 -2021\n\t\tmu 0 4 2352 2353 2354 2355\n\t\tf 4 2017 2023 -2019 -2023\n\t\tmu 0 4 2355 2354 2356 2357\n\t\tf 4 2018 2025 -2020 -2025\n\t\tmu 0 4 2357 2356 2358 2359\n\t\tf 4 2019 2027 -2017 -2027\n\t\tmu 0 4 2359 2358 2360 2361\n\t\tf 4 -2028 -2026 -2024 -2022\n\t\tmu 0 4 2353 2362 2363 2354\n\t\tf 4 2026 2020 2022 2024\n\t\tmu 0 4 2364 2352 2355 2365\n\t\tf 4 2028 2033 -2030 -2033\n\t\tmu 0 4 2366 2367 2368 2369\n\t\tf 4 2029 2035 -2031 -2035\n\t\tmu 0 4 2369 2368 2370 2371\n\t\tf 4 2030 2037 -2032 -2037\n\t\tmu 0 4 2371 2370 2372 2373\n\t\tf 4 2031 2039 -2029 -2039\n\t\tmu 0 4 2373 2372 2374 2375\n\t\tf 4 -2040 -2038 -2036 -2034\n\t\tmu 0 4 2367 2376 2377 2368\n\t\tf 4 2038 2032 2034 2036\n\t\tmu 0 4 2378 2366 2369 2379\n\t\tf 4 2040 2045 -2042 -2045\n\t\tmu 0 4 2380 2381 2382 2383\n\t\tf 4 2041 2047 -2043 -2047\n\t\tmu 0 4 2383 2382 2384 2385\n\t\tf 4 2042 2049 -2044 -2049\n\t\tmu 0 4 2385 2384 2386 2387\n\t\tf 4 2043 2051 -2041 -2051\n\t\tmu 0 4 2387 2386 2388 2389\n\t\tf 4 -2052 -2050 -2048 -2046\n\t\tmu 0 4 2381 2390 2391 2382\n\t\tf 4 2050 2044 2046 2048\n\t\tmu 0 4 2392 2380 2383 2393\n\t\tf 4 2052 2057 -2054 -2057\n\t\tmu 0 4 2394 2395 2396 2397\n\t\tf 4 2053 2059 -2055 -2059\n\t\tmu 0 4 2397 2396 2398 2399\n\t\tf 4 2054 2061 -2056 -2061\n\t\tmu 0 4 2399 2398 2400 2401\n\t\tf 4 2055 2063 -2053 -2063\n\t\tmu 0 4 2401 2400 2402 2403\n\t\tf 4 -2064 -2062 -2060 -2058\n\t\tmu 0 4 2395 2404 2405 2396\n\t\tf 4 2062 2056 2058 2060\n\t\tmu 0 4 2406 2394 2397 2407;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"303B2B67-47B7-6E78-8820-05AB30D606B5\";\n\taddAttr -ci true -sn \"nts\" -ln \"notes\" -dt \"string\";\n\tsetAttr \".t\" -type \"double3\" 0 25 11.5 ;\n\tsetAttr \".r\" -type \"double3\" -65.000000000001904 0 0 ;\n\tsetAttr \".nts\" -type \"string\" \"\\t\\t\\t\";\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"BD85422D-4BEE-06AB-BACE-7DBD783134A8\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173228346456694 1.4173228346456694 ;\n\tsetAttr \".ff\" 3;\n\tsetAttr \".ncp\" 0.001;\n\tsetAttr \".fcp\" 100;\n\tsetAttr \".coi\" 27.787465435203281;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".dr\" yes;\ncreateNode transform -n \"pPyramid1\" -p \"camera1\";\n\trename -uid \"64C5F767-411B-9689-42F4-42A46E33EBBD\";\n\tsetAttr \".s\" -type \"double3\" 5 5 100 ;\n\tsetAttr \".rp\" -type \"double3\" 0 0 3.7375154454233339e-05 ;\n\tsetAttr \".sp\" -type \"double3\" 0 0 3.7375154454233339e-05 ;\ncreateNode mesh -n \"pPyramidShape1\" -p \"pPyramid1\";\n\trename -uid \"A770F7FC-432D-DC35-6840-EDA7546D1EDD\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.25 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"44B7A09F-4354-5C47-368E-CE896D39E02C\";\n\tsetAttr -s 8 \".lnk\";\n\tsetAttr -s 8 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"641AB4AE-4E55-A5DE-1EB5-26A888802CF3\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"75745BD0-4A28-89EC-A433-A0A5F34BE934\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"F757405F-4193-FF39-0D6F-82A89FAE7AF7\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"5F78CABE-4E1C-4A10-CCA9-CF98F2D9CABE\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"C471D001-425A-EC23-07A3-8B8428BCFEAB\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"4DAC6715-445A-0676-C776-A2A4E60D7B3A\";\n\tsetAttr \".g\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"4D043C4A-429E-E5AB-1103-4791D7A045E7\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"cameraShape1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1978\\n            -height 1447\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -autoFitTime 0\\n\"\n\t\t+ \"                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n\"\n\t\t+ \"                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n\"\n\t\t+ \"                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 0 \\n                $editorName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n\"\n\t\t+ \"                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n\"\n\t\t+ \"                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n\"\n\t\t+ \"                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n\"\n\t\t+ \"                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n\"\n\t\t+ \"                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\"\n\t\t+ \"\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"cameraShape1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1978\\\\n    -height 1447\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"cameraShape1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1978\\\\n    -height 1447\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"598A3F36-4262-4847-52B4-0A89E9054834\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode groupId -n \"groupId1\";\n\trename -uid \"6916DEC6-483C-8C62-4504-2E966E14F5F3\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"0CD29B91-4AC4-D539-7C3F-918776F0DC70\";\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"A0004028-432C-996A-EC5E-F1830097EAEB\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"351991DC-44C1-50A9-B8C3-6394D2BACF0B\";\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"96F22B07-4A29-3CF2-1312-6FB6FED76A59\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert3\";\n\trename -uid \"33CE80EB-4BC7-2CA6-595C-9CB4CF8B0E4D\";\n\tsetAttr \".c\" -type \"float3\" 0 0 1 ;\ncreateNode shadingEngine -n \"lambert3SG\";\n\trename -uid \"90EC03C5-4980-25D5-0135-EDB31ED46B4E\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"ED657469-4A1E-A4C1-302D-9F8ABCA0076E\";\ncreateNode groupId -n \"groupId3\";\n\trename -uid \"E16FB584-49D8-58ED-E919-D0A477F7C449\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert4\";\n\trename -uid \"6DDF4970-431F-E97D-3935-288C97620148\";\n\tsetAttr \".c\" -type \"float3\" 0 1 0 ;\ncreateNode shadingEngine -n \"lambert4SG\";\n\trename -uid \"12731EA1-4A5C-3BA1-90D8-7A8CDFE83BE0\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo3\";\n\trename -uid \"8E4CC743-4732-E704-B13C-68A0D93CDDA2\";\ncreateNode groupId -n \"groupId4\";\n\trename -uid \"04E0951A-4E24-EB2D-47DD-9290479CE2B4\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert5\";\n\trename -uid \"790E2B42-4642-7C43-B9B7-48BE5CCFD990\";\n\tsetAttr \".c\" -type \"float3\" 0 1 1 ;\ncreateNode shadingEngine -n \"lambert5SG\";\n\trename -uid \"DB900D64-4061-C89A-8E71-59A5702EA8B3\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo4\";\n\trename -uid \"74333DFD-4793-241D-31DC-F686CADC142E\";\ncreateNode groupId -n \"groupId5\";\n\trename -uid \"02B681EA-4069-8770-75C0-74AFD4A129EA\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert6\";\n\trename -uid \"85C23F83-492C-588B-FD1B-1A8EF0DCBE85\";\n\tsetAttr \".c\" -type \"float3\" 1 1 0 ;\ncreateNode shadingEngine -n \"lambert6SG\";\n\trename -uid \"E284AD76-40AA-828B-24D6-5EB8FB910E05\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo5\";\n\trename -uid \"B67DDF3E-4FAE-9463-6723-E9B7B079AD58\";\ncreateNode groupId -n \"groupId6\";\n\trename -uid \"8F1FBACE-4E06-51DA-F148-40B388BAA372\";\n\tsetAttr \".ihi\" 0;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"211DDCFC-424B-189E-4344-28AAEB1A6103\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"B29DED36-4F71-50B8-51FE-9D88449F2716\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\taddAttr -ci true -sn \"selOnly\" -ln \"selOnly\" -at \"long\";\n\taddAttr -ci true -sn \"visOnly\" -ln \"visOnly\" -at \"long\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/Users/bugfa/Documents/maya/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"cam1\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2019 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"-cam camera1\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 1;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\n\tsetAttr \".selOnly\" 1;\n\tsetAttr \".visOnly\" 1;\ncreateNode polyPyramid -n \"polyPyramid1\";\n\trename -uid \"9EA437FA-49D9-6156-030B-4A9DA24B5F63\";\n\tsetAttr \".ax\" -type \"double3\" 0 0 1 ;\n\tsetAttr \".cuv\" 3;\ncreateNode transformGeometry -n \"transformGeometry1\";\n\trename -uid \"EC98F613-4690-A28F-5179-67AE792AF789\";\n\tsetAttr \".txf\" -type \"matrix\" 0.70710678118654746 0.70710678118654757 0 0 -0.70710678118654757 0.70710678118654746 0 0\n\t\t 0 0 1 0 0 0 -0.35306153624781406 1;\ncreateNode lambert -n \"lambert7\";\n\trename -uid \"3FBAC392-47A6-CF77-1BCB-89A01C7782B7\";\n\tsetAttr \".c\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".it\" -type \"float3\" 0.040192928 0.040192928 0.040192928 ;\ncreateNode shadingEngine -n \"lambert7SG\";\n\trename -uid \"4D87AD61-4564-4DAC-9D9F-9FB8DD7C7385\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo6\";\n\trename -uid \"3A76EF7B-4EF1-12F9-194F-75B2A64C3C4D\";\ncreateNode polyNormal -n \"polyNormal1\";\n\trename -uid \"2B6341FC-44AC-A77B-FEC6-27B15E2E783B\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".unm\" no;\ncreateNode deleteComponent -n \"deleteComponent1\";\n\trename -uid \"6AE47629-4E93-1EDA-C8F6-62964D43649E\";\n\tsetAttr \".dc\" -type \"componentList\" 1 \"f[0]\";\ncreateNode deleteComponent -n \"deleteComponent2\";\n\trename -uid \"0AF2E85F-466B-83EC-C0EE-BCA5ED8D05B2\";\n\tsetAttr \".dc\" -type \"componentList\" 1 \"f[0]\";\ncreateNode deleteComponent -n \"deleteComponent3\";\n\trename -uid \"CD99D44C-40B3-941D-CF82-C2AAFB3E8314\";\n\tsetAttr \".dc\" -type \"componentList\" 1 \"f[1]\";\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 0;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 8 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 10 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1024;\n\tsetAttr \".h\" 1024;\n\tsetAttr \".pa\" 1;\n\tsetAttr \".dar\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"groupId1.id\" \"pCube5Shape.iog.og[0].gid\";\nconnectAttr \":initialShadingGroup.mwc\" \"pCube5Shape.iog.og[0].gco\";\nconnectAttr \"groupId2.id\" \"pCube5Shape.iog.og[1].gid\";\nconnectAttr \"lambert2SG.mwc\" \"pCube5Shape.iog.og[1].gco\";\nconnectAttr \"groupId3.id\" \"pCube5Shape.iog.og[2].gid\";\nconnectAttr \"lambert3SG.mwc\" \"pCube5Shape.iog.og[2].gco\";\nconnectAttr \"groupId4.id\" \"pCube5Shape.iog.og[3].gid\";\nconnectAttr \"lambert4SG.mwc\" \"pCube5Shape.iog.og[3].gco\";\nconnectAttr \"groupId5.id\" \"pCube5Shape.iog.og[4].gid\";\nconnectAttr \"lambert5SG.mwc\" \"pCube5Shape.iog.og[4].gco\";\nconnectAttr \"groupId6.id\" \"pCube5Shape.iog.og[5].gid\";\nconnectAttr \"lambert6SG.mwc\" \"pCube5Shape.iog.og[5].gco\";\nconnectAttr \"deleteComponent3.og\" \"pPyramidShape1.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert4SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert5SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert6SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert7SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert4SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert5SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert6SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert7SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"groupId2.msg\" \"lambert2SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[1]\" \"lambert2SG.dsm\" -na;\nconnectAttr \"lambert2SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo1.m\";\nconnectAttr \"lambert3.oc\" \"lambert3SG.ss\";\nconnectAttr \"groupId3.msg\" \"lambert3SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[2]\" \"lambert3SG.dsm\" -na;\nconnectAttr \"lambert3SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"lambert3.msg\" \"materialInfo2.m\";\nconnectAttr \"lambert4.oc\" \"lambert4SG.ss\";\nconnectAttr \"groupId4.msg\" \"lambert4SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[3]\" \"lambert4SG.dsm\" -na;\nconnectAttr \"lambert4SG.msg\" \"materialInfo3.sg\";\nconnectAttr \"lambert4.msg\" \"materialInfo3.m\";\nconnectAttr \"lambert5.oc\" \"lambert5SG.ss\";\nconnectAttr \"groupId5.msg\" \"lambert5SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[4]\" \"lambert5SG.dsm\" -na;\nconnectAttr \"lambert5SG.msg\" \"materialInfo4.sg\";\nconnectAttr \"lambert5.msg\" \"materialInfo4.m\";\nconnectAttr \"lambert6.oc\" \"lambert6SG.ss\";\nconnectAttr \"groupId6.msg\" \"lambert6SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[5]\" \"lambert6SG.dsm\" -na;\nconnectAttr \"lambert6SG.msg\" \"materialInfo5.sg\";\nconnectAttr \"lambert6.msg\" \"materialInfo5.m\";\nconnectAttr \"polyPyramid1.out\" \"transformGeometry1.ig\";\nconnectAttr \"lambert7.oc\" \"lambert7SG.ss\";\nconnectAttr \"pPyramidShape1.iog\" \"lambert7SG.dsm\" -na;\nconnectAttr \"lambert7SG.msg\" \"materialInfo6.sg\";\nconnectAttr \"lambert7.msg\" \"materialInfo6.m\";\nconnectAttr \"transformGeometry1.og\" \"polyNormal1.ip\";\nconnectAttr \"polyNormal1.out\" \"deleteComponent1.ig\";\nconnectAttr \"deleteComponent1.og\" \"deleteComponent2.ig\";\nconnectAttr \"deleteComponent2.og\" \"deleteComponent3.ig\";\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert3SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert4SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert5SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert6SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert7SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert3.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert4.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert5.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert6.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert7.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCube5Shape.iog.og[0]\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"groupId1.msg\" \":initialShadingGroup.gn\" -na;\n// End of CameraCalibration2.ma\n"
  },
  {
    "path": "maya/scenes/CameraCalibration3.ma",
    "content": "//Maya ASCII 2018ff08 scene\n//Name: CameraCalibration3.ma\n//Last modified: Sun, Feb 03, 2019 07:13:10 PM\n//Codeset: 1252\nrequires maya \"2018ff08\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201804211841-f3d65dda2a\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"AAFB104E-4FD8-12C2-F062-5FBBE22E28D9\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1.5644844838131906 61.144449962811123 40.641722698941628 ;\n\tsetAttr \".r\" -type \"double3\" 311.66164727047629 10.599999999999925 0 ;\n\tsetAttr \".rp\" -type \"double3\" 0 -7.1054273576010019e-15 0 ;\n\tsetAttr \".rpt\" -type \"double3\" 2.788632745664467e-15 3.8507534731040169e-15 5.6672500606136927e-15 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"C611669F-4502-BC51-FDD7-78A470756B8D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 68.773611521632446;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" -6.8450192119193343 9.7648327772250809 -4.2940628976517754 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"3D87D8C2-43B0-A58C-4FD6-EB98FF0F3463\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"B38C9587-472E-AE2E-6963-A1B23033C336\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"1C1F28E2-4012-E661-3EE1-84AD7FB8085C\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"993AA8C2-4C06-47F7-9808-32A5E799C252\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"25129461-45BE-2012-903B-0582F9F6D376\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"F10EC166-4EB7-CE05-6F7D-5182652D3025\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube5\";\n\trename -uid \"91003C93-48A2-9DC1-3A34-7EAA399A186E\";\ncreateNode mesh -n \"pCube5Shape\" -p \"pCube5\";\n\trename -uid \"AD70B5C7-4E16-F990-4E90-3CB6607ED719\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 6 \".iog[0].og\";\n\tsetAttr \".iog[0].og[0].gcl\" -type \"componentList\" 6 \"f[0:47]\" \"f[54:479]\" \"f[486:587]\" \"f[594:611]\" \"f[618:623]\" \"f[630:1031]\";\n\tsetAttr \".iog[0].og[1].gcl\" -type \"componentList\" 1 \"f[480:485]\";\n\tsetAttr \".iog[0].og[2].gcl\" -type \"componentList\" 1 \"f[624:629]\";\n\tsetAttr \".iog[0].og[3].gcl\" -type \"componentList\" 1 \"f[612:617]\";\n\tsetAttr \".iog[0].og[4].gcl\" -type \"componentList\" 1 \"f[588:593]\";\n\tsetAttr \".iog[0].og[5].gcl\" -type \"componentList\" 1 \"f[48:53]\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.5 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 2408 \".uvst[0].uvsp\";\n\tsetAttr \".uvst[0].uvsp[0:249]\" -type \"float2\" 0.375 0 0.625 0 0.375 0.25\n\t\t 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25;\n\tsetAttr \".uvst[0].uvsp[250:499]\" 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1;\n\tsetAttr \".uvst[0].uvsp[500:749]\" 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75;\n\tsetAttr \".uvst[0].uvsp[750:999]\" 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0\n\t\t 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375\n\t\t 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625\n\t\t 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5;\n\tsetAttr \".uvst[0].uvsp[1000:1249]\" 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25;\n\tsetAttr \".uvst[0].uvsp[1250:1499]\" 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75\n\t\t 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0;\n\tsetAttr \".uvst[0].uvsp[1500:1749]\" 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25;\n\tsetAttr \".uvst[0].uvsp[1750:1999]\" 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625\n\t\t 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125\n\t\t 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75\n\t\t 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25;\n\tsetAttr \".uvst[0].uvsp[2000:2249]\" 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1;\n\tsetAttr \".uvst[0].uvsp[2250:2407]\" 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 1376 \".vt\";\n\tsetAttr \".vt[0:165]\"  -4.5 -0.5 0.5 -3.5 -0.5 0.5 -4.5 0.5 0.5 -3.5 0.5 0.5\n\t\t -4.5 0.5 -0.5 -3.5 0.5 -0.5 -4.5 -0.5 -0.5 -3.5 -0.5 -0.5 -2.5 -0.5 0.5 -1.5 -0.5 0.5\n\t\t -2.5 0.5 0.5 -1.5 0.5 0.5 -2.5 0.5 -0.5 -1.5 0.5 -0.5 -2.5 -0.5 -0.5 -1.5 -0.5 -0.5\n\t\t -10.5 -0.5 0.5 -9.5 -0.5 0.5 -10.5 0.5 0.5 -9.5 0.5 0.5 -10.5 0.5 -0.5 -9.5 0.5 -0.5\n\t\t -10.5 -0.5 -0.5 -9.5 -0.5 -0.5 -8.5 -0.5 0.5 -7.5 -0.5 0.5 -8.5 0.5 0.5 -7.5 0.5 0.5\n\t\t -8.5 0.5 -0.5 -7.5 0.5 -0.5 -8.5 -0.5 -0.5 -7.5 -0.5 -0.5 -6.5 -0.5 0.5 -5.5 -0.5 0.5\n\t\t -6.5 0.5 0.5 -5.5 0.5 0.5 -6.5 0.5 -0.5 -5.5 0.5 -0.5 -6.5 -0.5 -0.5 -5.5 -0.5 -0.5\n\t\t -12.5 -0.5 0.5 -11.5 -0.5 0.5 -12.5 0.5 0.5 -11.5 0.5 0.5 -12.5 0.5 -0.5 -11.5 0.5 -0.5\n\t\t -12.5 -0.5 -0.5 -11.5 -0.5 -0.5 3.5 -0.5 0.5 4.5 -0.5 0.5 3.5 0.5 0.5 4.5 0.5 0.5\n\t\t 3.5 0.5 -0.5 4.5 0.5 -0.5 3.5 -0.5 -0.5 4.5 -0.5 -0.5 1.5 -0.5 0.5 2.5 -0.5 0.5 1.5 0.5 0.5\n\t\t 2.5 0.5 0.5 1.5 0.5 -0.5 2.5 0.5 -0.5 1.5 -0.5 -0.5 2.5 -0.5 -0.5 -0.5 -0.5 0.5 0.5 -0.5 0.5\n\t\t -0.5 0.5 0.5 0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5\n\t\t 9.5 -0.5 0.5 10.5 -0.5 0.5 9.5 0.5 0.5 10.5 0.5 0.5 9.5 0.5 -0.5 10.5 0.5 -0.5 9.5 -0.5 -0.5\n\t\t 10.5 -0.5 -0.5 -6.5 -0.5 -1.5 -5.5 -0.5 -1.5 -6.5 0.5 -1.5 -5.5 0.5 -1.5 -6.5 0.5 -2.5\n\t\t -5.5 0.5 -2.5 -6.5 -0.5 -2.5 -5.5 -0.5 -2.5 -8.5 -0.5 -1.5 -7.5 -0.5 -1.5 -8.5 0.5 -1.5\n\t\t -7.5 0.5 -1.5 -8.5 0.5 -2.5 -7.5 0.5 -2.5 -8.5 -0.5 -2.5 -7.5 -0.5 -2.5 7.5 -0.5 0.5\n\t\t 8.5 -0.5 0.5 7.5 0.5 0.5 8.5 0.5 0.5 7.5 0.5 -0.5 8.5 0.5 -0.5 7.5 -0.5 -0.5 8.5 -0.5 -0.5\n\t\t 11.5 -0.5 0.5 12.5 -0.5 0.5 11.5 0.5 0.5 12.5 0.5 0.5 11.5 0.5 -0.5 12.5 0.5 -0.5\n\t\t 11.5 -0.5 -0.5 12.5 -0.5 -0.5 -10.5 -0.5 -1.5 -9.5 -0.5 -1.5 -10.5 0.5 -1.5 -9.5 0.5 -1.5\n\t\t -10.5 0.5 -2.5 -9.5 0.5 -2.5 -10.5 -0.5 -2.5 -9.5 -0.5 -2.5 5.5 -0.5 0.5 6.5 -0.5 0.5\n\t\t 5.5 0.5 0.5 6.5 0.5 0.5 5.5 0.5 -0.5 6.5 0.5 -0.5 5.5 -0.5 -0.5 6.5 -0.5 -0.5 -2.5 -0.5 8.5\n\t\t -1.5 -0.5 8.5 -2.5 0.5 8.5 -1.5 0.5 8.5 -2.5 0.5 7.5 -1.5 0.5 7.5 -2.5 -0.5 7.5 -1.5 -0.5 7.5\n\t\t -10.5 -0.5 8.5 -9.5 -0.5 8.5 -10.5 0.5 8.5 -9.5 0.5 8.5 -10.5 0.5 7.5 -9.5 0.5 7.5\n\t\t -10.5 -0.5 7.5 -9.5 -0.5 7.5 -8.5 -0.5 8.5 -7.5 -0.5 8.5 -8.5 0.5 8.5 -7.5 0.5 8.5\n\t\t -8.5 0.5 7.5 -7.5 0.5 7.5 -8.5 -0.5 7.5 -7.5 -0.5 7.5 -4.5 -0.5 8.5 -3.5 -0.5 8.5\n\t\t -4.5 0.5 8.5 -3.5 0.5 8.5 -4.5 0.5 7.5 -3.5 0.5 7.5 -4.5 -0.5 7.5 -3.5 -0.5 7.5 -12.5 -0.5 -5.5\n\t\t -11.5 -0.5 -5.5 -12.5 0.5 -5.5 -11.5 0.5 -5.5 -12.5 0.5 -6.5 -11.5 0.5 -6.5;\n\tsetAttr \".vt[166:331]\" -12.5 -0.5 -6.5 -11.5 -0.5 -6.5 1.5 -0.5 -5.5 2.5 -0.5 -5.5\n\t\t 1.5 0.5 -5.5 2.5 0.5 -5.5 1.5 0.5 -6.5 2.5 0.5 -6.5 1.5 -0.5 -6.5 2.5 -0.5 -6.5 3.5 -0.5 -5.5\n\t\t 4.5 -0.5 -5.5 3.5 0.5 -5.5 4.5 0.5 -5.5 3.5 0.5 -6.5 4.5 0.5 -6.5 3.5 -0.5 -6.5 4.5 -0.5 -6.5\n\t\t -0.5 -0.5 -5.5 0.5 -0.5 -5.5 -0.5 0.5 -5.5 0.5 0.5 -5.5 -0.5 0.5 -6.5 0.5 0.5 -6.5\n\t\t -0.5 -0.5 -6.5 0.5 -0.5 -6.5 -4.5 -0.5 -5.5 -3.5 -0.5 -5.5 -4.5 0.5 -5.5 -3.5 0.5 -5.5\n\t\t -4.5 0.5 -6.5 -3.5 0.5 -6.5 -4.5 -0.5 -6.5 -3.5 -0.5 -6.5 -2.5 -0.5 -5.5 -1.5 -0.5 -5.5\n\t\t -2.5 0.5 -5.5 -1.5 0.5 -5.5 -2.5 0.5 -6.5 -1.5 0.5 -6.5 -2.5 -0.5 -6.5 -1.5 -0.5 -6.5\n\t\t 9.5 -0.5 -5.5 10.5 -0.5 -5.5 9.5 0.5 -5.5 10.5 0.5 -5.5 9.5 0.5 -6.5 10.5 0.5 -6.5\n\t\t 9.5 -0.5 -6.5 10.5 -0.5 -6.5 7.5 -0.5 -5.5 8.5 -0.5 -5.5 7.5 0.5 -5.5 8.5 0.5 -5.5\n\t\t 7.5 0.5 -6.5 8.5 0.5 -6.5 7.5 -0.5 -6.5 8.5 -0.5 -6.5 11.5 -0.5 -5.5 12.5 -0.5 -5.5\n\t\t 11.5 0.5 -5.5 12.5 0.5 -5.5 11.5 0.5 -6.5 12.5 0.5 -6.5 11.5 -0.5 -6.5 12.5 -0.5 -6.5\n\t\t 5.5 -0.5 -5.5 6.5 -0.5 -5.5 5.5 0.5 -5.5 6.5 0.5 -5.5 5.5 0.5 -6.5 6.5 0.5 -6.5 5.5 -0.5 -6.5\n\t\t 6.5 -0.5 -6.5 5.5 -0.5 -3.5 6.5 -0.5 -3.5 5.5 0.5 -3.5 6.5 0.5 -3.5 5.5 0.5 -4.5\n\t\t 6.5 0.5 -4.5 5.5 -0.5 -4.5 6.5 -0.5 -4.5 -10.5 -0.5 -5.5 -9.5 -0.5 -5.5 -10.5 0.5 -5.5\n\t\t -9.5 0.5 -5.5 -10.5 0.5 -6.5 -9.5 0.5 -6.5 -10.5 -0.5 -6.5 -9.5 -0.5 -6.5 -2.5 -0.5 -3.5\n\t\t -1.5 -0.5 -3.5 -2.5 0.5 -3.5 -1.5 0.5 -3.5 -2.5 0.5 -4.5 -1.5 0.5 -4.5 -2.5 -0.5 -4.5\n\t\t -1.5 -0.5 -4.5 -4.5 -0.5 -3.5 -3.5 -0.5 -3.5 -4.5 0.5 -3.5 -3.5 0.5 -3.5 -4.5 0.5 -4.5\n\t\t -3.5 0.5 -4.5 -4.5 -0.5 -4.5 -3.5 -0.5 -4.5 -6.5 -0.5 8.5 -5.5 -0.5 8.5 -6.5 0.5 8.5\n\t\t -5.5 0.5 8.5 -6.5 0.5 7.5 -5.5 0.5 7.5 -6.5 -0.5 7.5 -5.5 -0.5 7.5 9.5 -0.5 8.5 10.5 -0.5 8.5\n\t\t 9.5 0.5 8.5 10.5 0.5 8.5 9.5 0.5 7.5 10.5 0.5 7.5 9.5 -0.5 7.5 10.5 -0.5 7.5 -0.5 -0.5 8.5\n\t\t 0.5 -0.5 8.5 -0.5 0.5 8.5 0.5 0.5 8.5 -0.5 0.5 7.5 0.5 0.5 7.5 -0.5 -0.5 7.5 0.5 -0.5 7.5\n\t\t 1.5 -0.5 8.5 2.5 -0.5 8.5 1.5 0.5 8.5 2.5 0.5 8.5 1.5 0.5 7.5 2.5 0.5 7.5 1.5 -0.5 7.5\n\t\t 2.5 -0.5 7.5 3.5 -0.5 8.5 4.5 -0.5 8.5 3.5 0.5 8.5 4.5 0.5 8.5 3.5 0.5 7.5 4.5 0.5 7.5\n\t\t 3.5 -0.5 7.5 4.5 -0.5 7.5 -8.5 -0.5 6.5 -7.5 -0.5 6.5 -8.5 0.5 6.5 -7.5 0.5 6.5 -8.5 0.5 5.5\n\t\t -7.5 0.5 5.5 -8.5 -0.5 5.5 -7.5 -0.5 5.5 -12.5 -0.5 8.5 -11.5 -0.5 8.5 -12.5 0.5 8.5\n\t\t -11.5 0.5 8.5 -12.5 0.5 7.5 -11.5 0.5 7.5 -12.5 -0.5 7.5 -11.5 -0.5 7.5 -6.5 -0.5 6.5\n\t\t -5.5 -0.5 6.5 -6.5 0.5 6.5 -5.5 0.5 6.5;\n\tsetAttr \".vt[332:497]\" -6.5 0.5 5.5 -5.5 0.5 5.5 -6.5 -0.5 5.5 -5.5 -0.5 5.5\n\t\t 11.5 -0.5 8.5 12.5 -0.5 8.5 11.5 0.5 8.5 12.5 0.5 8.5 11.5 0.5 7.5 12.5 0.5 7.5 11.5 -0.5 7.5\n\t\t 12.5 -0.5 7.5 7.5 -0.5 8.5 8.5 -0.5 8.5 7.5 0.5 8.5 8.5 0.5 8.5 7.5 0.5 7.5 8.5 0.5 7.5\n\t\t 7.5 -0.5 7.5 8.5 -0.5 7.5 1.5 -0.5 -3.5 2.5 -0.5 -3.5 1.5 0.5 -3.5 2.5 0.5 -3.5 1.5 0.5 -4.5\n\t\t 2.5 0.5 -4.5 1.5 -0.5 -4.5 2.5 -0.5 -4.5 -0.5 -0.5 -3.5 0.5 -0.5 -3.5 -0.5 0.5 -3.5\n\t\t 0.5 0.5 -3.5 -0.5 0.5 -4.5 0.5 0.5 -4.5 -0.5 -0.5 -4.5 0.5 -0.5 -4.5 -8.5 -0.5 -3.5\n\t\t -7.5 -0.5 -3.5 -8.5 0.5 -3.5 -7.5 0.5 -3.5 -8.5 0.5 -4.5 -7.5 0.5 -4.5 -8.5 -0.5 -4.5\n\t\t -7.5 -0.5 -4.5 -6.5 -0.5 -3.5 -5.5 -0.5 -3.5 -6.5 0.5 -3.5 -5.5 0.5 -3.5 -6.5 0.5 -4.5\n\t\t -5.5 0.5 -4.5 -6.5 -0.5 -4.5 -5.5 -0.5 -4.5 -12.5 -0.5 -3.5 -11.5 -0.5 -3.5 -12.5 0.5 -3.5\n\t\t -11.5 0.5 -3.5 -12.5 0.5 -4.5 -11.5 0.5 -4.5 -12.5 -0.5 -4.5 -11.5 -0.5 -4.5 3.5 -0.5 -3.5\n\t\t 4.5 -0.5 -3.5 3.5 0.5 -3.5 4.5 0.5 -3.5 3.5 0.5 -4.5 4.5 0.5 -4.5 3.5 -0.5 -4.5 4.5 -0.5 -4.5\n\t\t -10.5 -0.5 -3.5 -9.5 -0.5 -3.5 -10.5 0.5 -3.5 -9.5 0.5 -3.5 -10.5 0.5 -4.5 -9.5 0.5 -4.5\n\t\t -10.5 -0.5 -4.5 -9.5 -0.5 -4.5 5.5 -0.5 -1.5 6.5 -0.5 -1.5 5.5 0.5 -1.5 6.5 0.5 -1.5\n\t\t 5.5 0.5 -2.5 6.5 0.5 -2.5 5.5 -0.5 -2.5 6.5 -0.5 -2.5 11.5 -0.5 -1.5 12.5 -0.5 -1.5\n\t\t 11.5 0.5 -1.5 12.5 0.5 -1.5 11.5 0.5 -2.5 12.5 0.5 -2.5 11.5 -0.5 -2.5 12.5 -0.5 -2.5\n\t\t 7.5 -0.5 -1.5 8.5 -0.5 -1.5 7.5 0.5 -1.5 8.5 0.5 -1.5 7.5 0.5 -2.5 8.5 0.5 -2.5 7.5 -0.5 -2.5\n\t\t 8.5 -0.5 -2.5 9.5 -0.5 -1.5 10.5 -0.5 -1.5 9.5 0.5 -1.5 10.5 0.5 -1.5 9.5 0.5 -2.5\n\t\t 10.5 0.5 -2.5 9.5 -0.5 -2.5 10.5 -0.5 -2.5 -2.5 -0.5 -1.5 -1.5 -0.5 -1.5 -2.5 0.5 -1.5\n\t\t -1.5 0.5 -1.5 -2.5 0.5 -2.5 -1.5 0.5 -2.5 -2.5 -0.5 -2.5 -1.5 -0.5 -2.5 -4.5 -0.5 -1.5\n\t\t -3.5 -0.5 -1.5 -4.5 0.5 -1.5 -3.5 0.5 -1.5 -4.5 0.5 -2.5 -3.5 0.5 -2.5 -4.5 -0.5 -2.5\n\t\t -3.5 -0.5 -2.5 -6.5 -0.5 -5.5 -5.5 -0.5 -5.5 -6.5 0.5 -5.5 -5.5 0.5 -5.5 -6.5 0.5 -6.5\n\t\t -5.5 0.5 -6.5 -6.5 -0.5 -6.5 -5.5 -0.5 -6.5 -8.5 -0.5 -5.5 -7.5 -0.5 -5.5 -8.5 0.5 -5.5\n\t\t -7.5 0.5 -5.5 -8.5 0.5 -6.5 -7.5 0.5 -6.5 -8.5 -0.5 -6.5 -7.5 -0.5 -6.5 11.5 -0.5 -3.5\n\t\t 12.5 -0.5 -3.5 11.5 0.5 -3.5 12.5 0.5 -3.5 11.5 0.5 -4.5 12.5 0.5 -4.5 11.5 -0.5 -4.5\n\t\t 12.5 -0.5 -4.5 7.5 -0.5 -3.5 8.5 -0.5 -3.5 7.5 0.5 -3.5 8.5 0.5 -3.5 7.5 0.5 -4.5\n\t\t 8.5 0.5 -4.5 7.5 -0.5 -4.5 8.5 -0.5 -4.5 9.5 -0.5 -3.5 10.5 -0.5 -3.5 9.5 0.5 -3.5\n\t\t 10.5 0.5 -3.5 9.5 0.5 -4.5 10.5 0.5 -4.5 9.5 -0.5 -4.5 10.5 -0.5 -4.5 -0.5 -0.5 -1.5\n\t\t 0.5 -0.5 -1.5;\n\tsetAttr \".vt[498:663]\" -0.5 0.5 -1.5 0.5 0.5 -1.5 -0.5 0.5 -2.5 0.5 0.5 -2.5\n\t\t -0.5 -0.5 -2.5 0.5 -0.5 -2.5 3.5 -0.5 -1.5 4.5 -0.5 -1.5 3.5 0.5 -1.5 4.5 0.5 -1.5\n\t\t 3.5 0.5 -2.5 4.5 0.5 -2.5 3.5 -0.5 -2.5 4.5 -0.5 -2.5 1.5 -0.5 -1.5 2.5 -0.5 -1.5\n\t\t 1.5 0.5 -1.5 2.5 0.5 -1.5 1.5 0.5 -2.5 2.5 0.5 -2.5 1.5 -0.5 -2.5 2.5 -0.5 -2.5 -12.5 -0.5 -1.5\n\t\t -11.5 -0.5 -1.5 -12.5 0.5 -1.5 -11.5 0.5 -1.5 -12.5 0.5 -2.5 -11.5 0.5 -2.5 -12.5 -0.5 -2.5\n\t\t -11.5 -0.5 -2.5 11.5 -0.5 2.5 12.5 -0.5 2.5 11.5 0.5 2.5 12.5 0.5 2.5 11.5 0.5 1.5\n\t\t 12.5 0.5 1.5 11.5 -0.5 1.5 12.5 -0.5 1.5 7.5 -0.5 2.5 8.5 -0.5 2.5 7.5 0.5 2.5 8.5 0.5 2.5\n\t\t 7.5 0.5 1.5 8.5 0.5 1.5 7.5 -0.5 1.5 8.5 -0.5 1.5 9.5 -0.5 2.5 10.5 -0.5 2.5 9.5 0.5 2.5\n\t\t 10.5 0.5 2.5 9.5 0.5 1.5 10.5 0.5 1.5 9.5 -0.5 1.5 10.5 -0.5 1.5 -2.5 -0.5 2.5 -1.5 -0.5 2.5\n\t\t -2.5 0.5 2.5 -1.5 0.5 2.5 -2.5 0.5 1.5 -1.5 0.5 1.5 -2.5 -0.5 1.5 -1.5 -0.5 1.5 -4.5 -0.5 2.5\n\t\t -3.5 -0.5 2.5 -4.5 0.5 2.5 -3.5 0.5 2.5 -4.5 0.5 1.5 -3.5 0.5 1.5 -4.5 -0.5 1.5 -3.5 -0.5 1.5\n\t\t -0.5 -0.5 2.5 0.5 -0.5 2.5 -0.5 0.5 2.5 0.5 0.5 2.5 -0.5 0.5 1.5 0.5 0.5 1.5 -0.5 -0.5 1.5\n\t\t 0.5 -0.5 1.5 3.5 -0.5 2.5 4.5 -0.5 2.5 3.5 0.5 2.5 4.5 0.5 2.5 3.5 0.5 1.5 4.5 0.5 1.5\n\t\t 3.5 -0.5 1.5 4.5 -0.5 1.5 1.5 -0.5 2.5 2.5 -0.5 2.5 1.5 0.5 2.5 2.5 0.5 2.5 1.5 0.5 1.5\n\t\t 2.5 0.5 1.5 1.5 -0.5 1.5 2.5 -0.5 1.5 -12.5 -0.5 2.5 -11.5 -0.5 2.5 -12.5 0.5 2.5\n\t\t -11.5 0.5 2.5 -12.5 0.5 1.5 -11.5 0.5 1.5 -12.5 -0.5 1.5 -11.5 -0.5 1.5 5.5 -0.5 8.5\n\t\t 6.5 -0.5 8.5 5.5 0.5 8.5 6.5 0.5 8.5 5.5 0.5 7.5 6.5 0.5 7.5 5.5 -0.5 7.5 6.5 -0.5 7.5\n\t\t -10.5 -0.5 6.5 -9.5 -0.5 6.5 -10.5 0.5 6.5 -9.5 0.5 6.5 -10.5 0.5 5.5 -9.5 0.5 5.5\n\t\t -10.5 -0.5 5.5 -9.5 -0.5 5.5 -10.5 -0.5 -11.5 -9.5 -0.5 -11.5 -10.5 0.5 -11.5 -9.5 0.5 -11.5\n\t\t -10.5 0.5 -12.5 -9.5 0.5 -12.5 -10.5 -0.5 -12.5 -9.5 -0.5 -12.5 -6.5 -0.5 -11.5 -5.5 -0.5 -11.5\n\t\t -6.5 0.5 -11.5 -5.5 0.5 -11.5 -6.5 0.5 -12.5 -5.5 0.5 -12.5 -6.5 -0.5 -12.5 -5.5 -0.5 -12.5\n\t\t 1.5 -0.5 -11.5 2.5 -0.5 -11.5 1.5 0.5 -11.5 2.5 0.5 -11.5 1.5 0.5 -12.5 2.5 0.5 -12.5\n\t\t 1.5 -0.5 -12.5 2.5 -0.5 -12.5 -12.5 -0.5 -11.5 -11.5 -0.5 -11.5 -12.5 0.5 -11.5 -11.5 0.5 -11.5\n\t\t -12.5 0.5 -12.5 -11.5 0.5 -12.5 -12.5 -0.5 -12.5 -11.5 -0.5 -12.5 -4.5 -0.5 -11.5\n\t\t -3.5 -0.5 -11.5 -4.5 0.5 -11.5 -3.5 0.5 -11.5 -4.5 0.5 -12.5 -3.5 0.5 -12.5 -4.5 -0.5 -12.5\n\t\t -3.5 -0.5 -12.5 -0.5 -0.5 -11.5 0.5 -0.5 -11.5 -0.5 0.5 -11.5 0.5 0.5 -11.5 -0.5 0.5 -12.5\n\t\t 0.5 0.5 -12.5 -0.5 -0.5 -12.5 0.5 -0.5 -12.5;\n\tsetAttr \".vt[664:829]\" -2.5 -0.5 12.5 -1.5 -0.5 12.5 -2.5 0.5 12.5 -1.5 0.5 12.5\n\t\t -2.5 0.5 11.5 -1.5 0.5 11.5 -2.5 -0.5 11.5 -1.5 -0.5 11.5 -0.5 -0.5 10.5 0.5 -0.5 10.5\n\t\t -0.5 0.5 10.5 0.5 0.5 10.5 -0.5 0.5 9.5 0.5 0.5 9.5 -0.5 -0.5 9.5 0.5 -0.5 9.5 9.5 -0.5 8.5\n\t\t 10.5 -0.5 8.5 9.5 0.5 8.5 10.5 0.5 8.5 9.5 0.5 7.5 10.5 0.5 7.5 9.5 -0.5 7.5 10.5 -0.5 7.5\n\t\t 5.5 -0.5 -11.5 6.5 -0.5 -11.5 5.5 0.5 -11.5 6.5 0.5 -11.5 5.5 0.5 -12.5 6.5 0.5 -12.5\n\t\t 5.5 -0.5 -12.5 6.5 -0.5 -12.5 -4.5 -0.5 10.5 -3.5 -0.5 10.5 -4.5 0.5 10.5 -3.5 0.5 10.5\n\t\t -4.5 0.5 9.5 -3.5 0.5 9.5 -4.5 -0.5 9.5 -3.5 -0.5 9.5 1.5 -0.5 10.5 2.5 -0.5 10.5\n\t\t 1.5 0.5 10.5 2.5 0.5 10.5 1.5 0.5 9.5 2.5 0.5 9.5 1.5 -0.5 9.5 2.5 -0.5 9.5 3.5 -0.5 10.5\n\t\t 4.5 -0.5 10.5 3.5 0.5 10.5 4.5 0.5 10.5 3.5 0.5 9.5 4.5 0.5 9.5 3.5 -0.5 9.5 4.5 -0.5 9.5\n\t\t 9.5 -0.5 -11.5 10.5 -0.5 -11.5 9.5 0.5 -11.5 10.5 0.5 -11.5 9.5 0.5 -12.5 10.5 0.5 -12.5\n\t\t 9.5 -0.5 -12.5 10.5 -0.5 -12.5 7.5 -0.5 -11.5 8.5 -0.5 -11.5 7.5 0.5 -11.5 8.5 0.5 -11.5\n\t\t 7.5 0.5 -12.5 8.5 0.5 -12.5 7.5 -0.5 -12.5 8.5 -0.5 -12.5 7.5 -0.5 8.5 8.5 -0.5 8.5\n\t\t 7.5 0.5 8.5 8.5 0.5 8.5 7.5 0.5 7.5 8.5 0.5 7.5 7.5 -0.5 7.5 8.5 -0.5 7.5 11.5 -0.5 8.5\n\t\t 12.5 -0.5 8.5 11.5 0.5 8.5 12.5 0.5 8.5 11.5 0.5 7.5 12.5 0.5 7.5 11.5 -0.5 7.5 12.5 -0.5 7.5\n\t\t -8.5 -0.5 -11.5 -7.5 -0.5 -11.5 -8.5 0.5 -11.5 -7.5 0.5 -11.5 -8.5 0.5 -12.5 -7.5 0.5 -12.5\n\t\t -8.5 -0.5 -12.5 -7.5 -0.5 -12.5 7.5 -0.5 12.5 8.5 -0.5 12.5 7.5 0.5 12.5 8.5 0.5 12.5\n\t\t 7.5 0.5 11.5 8.5 0.5 11.5 7.5 -0.5 11.5 8.5 -0.5 11.5 5.5 -0.5 12.5 6.5 -0.5 12.5\n\t\t 5.5 0.5 12.5 6.5 0.5 12.5 5.5 0.5 11.5 6.5 0.5 11.5 5.5 -0.5 11.5 6.5 -0.5 11.5 -10.5 -0.5 10.5\n\t\t -9.5 -0.5 10.5 -10.5 0.5 10.5 -9.5 0.5 10.5 -10.5 0.5 9.5 -9.5 0.5 9.5 -10.5 -0.5 9.5\n\t\t -9.5 -0.5 9.5 -12.5 -0.5 12.5 -11.5 -0.5 12.5 -12.5 0.5 12.5 -11.5 0.5 12.5 -12.5 0.5 11.5\n\t\t -11.5 0.5 11.5 -12.5 -0.5 11.5 -11.5 -0.5 11.5 -6.5 -0.5 10.5 -5.5 -0.5 10.5 -6.5 0.5 10.5\n\t\t -5.5 0.5 10.5 -6.5 0.5 9.5 -5.5 0.5 9.5 -6.5 -0.5 9.5 -5.5 -0.5 9.5 3.5 -0.5 -11.5\n\t\t 4.5 -0.5 -11.5 3.5 0.5 -11.5 4.5 0.5 -11.5 3.5 0.5 -12.5 4.5 0.5 -12.5 3.5 -0.5 -12.5\n\t\t 4.5 -0.5 -12.5 -12.5 -0.5 10.5 -11.5 -0.5 10.5 -12.5 0.5 10.5 -11.5 0.5 10.5 -12.5 0.5 9.5\n\t\t -11.5 0.5 9.5 -12.5 -0.5 9.5 -11.5 -0.5 9.5 11.5 -0.5 -11.5 12.5 -0.5 -11.5 11.5 0.5 -11.5\n\t\t 12.5 0.5 -11.5 11.5 0.5 -12.5 12.5 0.5 -12.5 11.5 -0.5 -12.5 12.5 -0.5 -12.5 -2.5 -0.5 -11.5\n\t\t -1.5 -0.5 -11.5 -2.5 0.5 -11.5 -1.5 0.5 -11.5 -2.5 0.5 -12.5 -1.5 0.5 -12.5;\n\tsetAttr \".vt[830:995]\" -2.5 -0.5 -12.5 -1.5 -0.5 -12.5 11.5 -0.5 12.5 12.5 -0.5 12.5\n\t\t 11.5 0.5 12.5 12.5 0.5 12.5 11.5 0.5 11.5 12.5 0.5 11.5 11.5 -0.5 11.5 12.5 -0.5 11.5\n\t\t 3.5 -0.5 12.5 4.5 -0.5 12.5 3.5 0.5 12.5 4.5 0.5 12.5 3.5 0.5 11.5 4.5 0.5 11.5 3.5 -0.5 11.5\n\t\t 4.5 -0.5 11.5 -8.5 -0.5 10.5 -7.5 -0.5 10.5 -8.5 0.5 10.5 -7.5 0.5 10.5 -8.5 0.5 9.5\n\t\t -7.5 0.5 9.5 -8.5 -0.5 9.5 -7.5 -0.5 9.5 -4.5 -0.5 12.5 -3.5 -0.5 12.5 -4.5 0.5 12.5\n\t\t -3.5 0.5 12.5 -4.5 0.5 11.5 -3.5 0.5 11.5 -4.5 -0.5 11.5 -3.5 -0.5 11.5 -6.5 -0.5 12.5\n\t\t -5.5 -0.5 12.5 -6.5 0.5 12.5 -5.5 0.5 12.5 -6.5 0.5 11.5 -5.5 0.5 11.5 -6.5 -0.5 11.5\n\t\t -5.5 -0.5 11.5 9.5 -0.5 12.5 10.5 -0.5 12.5 9.5 0.5 12.5 10.5 0.5 12.5 9.5 0.5 11.5\n\t\t 10.5 0.5 11.5 9.5 -0.5 11.5 10.5 -0.5 11.5 -0.5 -0.5 12.5 0.5 -0.5 12.5 -0.5 0.5 12.5\n\t\t 0.5 0.5 12.5 -0.5 0.5 11.5 0.5 0.5 11.5 -0.5 -0.5 11.5 0.5 -0.5 11.5 -10.5 -0.5 12.5\n\t\t -9.5 -0.5 12.5 -10.5 0.5 12.5 -9.5 0.5 12.5 -10.5 0.5 11.5 -9.5 0.5 11.5 -10.5 -0.5 11.5\n\t\t -9.5 -0.5 11.5 -8.5 -0.5 12.5 -7.5 -0.5 12.5 -8.5 0.5 12.5 -7.5 0.5 12.5 -8.5 0.5 11.5\n\t\t -7.5 0.5 11.5 -8.5 -0.5 11.5 -7.5 -0.5 11.5 1.5 -0.5 12.5 2.5 -0.5 12.5 1.5 0.5 12.5\n\t\t 2.5 0.5 12.5 1.5 0.5 11.5 2.5 0.5 11.5 1.5 -0.5 11.5 2.5 -0.5 11.5 9.5 -0.5 -7.5\n\t\t 10.5 -0.5 -7.5 9.5 0.5 -7.5 10.5 0.5 -7.5 9.5 0.5 -8.5 10.5 0.5 -8.5 9.5 -0.5 -8.5\n\t\t 10.5 -0.5 -8.5 7.5 -0.5 -7.5 8.5 -0.5 -7.5 7.5 0.5 -7.5 8.5 0.5 -7.5 7.5 0.5 -8.5\n\t\t 8.5 0.5 -8.5 7.5 -0.5 -8.5 8.5 -0.5 -8.5 11.5 -0.5 -7.5 12.5 -0.5 -7.5 11.5 0.5 -7.5\n\t\t 12.5 0.5 -7.5 11.5 0.5 -8.5 12.5 0.5 -8.5 11.5 -0.5 -8.5 12.5 -0.5 -8.5 -8.5 -0.5 -9.5\n\t\t -7.5 -0.5 -9.5 -8.5 0.5 -9.5 -7.5 0.5 -9.5 -8.5 0.5 -10.5 -7.5 0.5 -10.5 -8.5 -0.5 -10.5\n\t\t -7.5 -0.5 -10.5 5.5 -0.5 -9.5 6.5 -0.5 -9.5 5.5 0.5 -9.5 6.5 0.5 -9.5 5.5 0.5 -10.5\n\t\t 6.5 0.5 -10.5 5.5 -0.5 -10.5 6.5 -0.5 -10.5 5.5 -0.5 -7.5 6.5 -0.5 -7.5 5.5 0.5 -7.5\n\t\t 6.5 0.5 -7.5 5.5 0.5 -8.5 6.5 0.5 -8.5 5.5 -0.5 -8.5 6.5 -0.5 -8.5 9.5 -0.5 -9.5\n\t\t 10.5 -0.5 -9.5 9.5 0.5 -9.5 10.5 0.5 -9.5 9.5 0.5 -10.5 10.5 0.5 -10.5 9.5 -0.5 -10.5\n\t\t 10.5 -0.5 -10.5 7.5 -0.5 -9.5 8.5 -0.5 -9.5 7.5 0.5 -9.5 8.5 0.5 -9.5 7.5 0.5 -10.5\n\t\t 8.5 0.5 -10.5 7.5 -0.5 -10.5 8.5 -0.5 -10.5 11.5 -0.5 -9.5 12.5 -0.5 -9.5 11.5 0.5 -9.5\n\t\t 12.5 0.5 -9.5 11.5 0.5 -10.5 12.5 0.5 -10.5 11.5 -0.5 -10.5 12.5 -0.5 -10.5 -2.5 -0.5 -9.5\n\t\t -1.5 -0.5 -9.5 -2.5 0.5 -9.5 -1.5 0.5 -9.5 -2.5 0.5 -10.5 -1.5 0.5 -10.5 -2.5 -0.5 -10.5\n\t\t -1.5 -0.5 -10.5 3.5 -0.5 -9.5 4.5 -0.5 -9.5 3.5 0.5 -9.5 4.5 0.5 -9.5;\n\tsetAttr \".vt[996:1161]\" 3.5 0.5 -10.5 4.5 0.5 -10.5 3.5 -0.5 -10.5 4.5 -0.5 -10.5\n\t\t -0.5 -0.5 -9.5 0.5 -0.5 -9.5 -0.5 0.5 -9.5 0.5 0.5 -9.5 -0.5 0.5 -10.5 0.5 0.5 -10.5\n\t\t -0.5 -0.5 -10.5 0.5 -0.5 -10.5 -4.5 -0.5 -9.5 -3.5 -0.5 -9.5 -4.5 0.5 -9.5 -3.5 0.5 -9.5\n\t\t -4.5 0.5 -10.5 -3.5 0.5 -10.5 -4.5 -0.5 -10.5 -3.5 -0.5 -10.5 -12.5 -0.5 -9.5 -11.5 -0.5 -9.5\n\t\t -12.5 0.5 -9.5 -11.5 0.5 -9.5 -12.5 0.5 -10.5 -11.5 0.5 -10.5 -12.5 -0.5 -10.5 -11.5 -0.5 -10.5\n\t\t 1.5 -0.5 -9.5 2.5 -0.5 -9.5 1.5 0.5 -9.5 2.5 0.5 -9.5 1.5 0.5 -10.5 2.5 0.5 -10.5\n\t\t 1.5 -0.5 -10.5 2.5 -0.5 -10.5 5.5 -0.5 10.5 6.5 -0.5 10.5 5.5 0.5 10.5 6.5 0.5 10.5\n\t\t 5.5 0.5 9.5 6.5 0.5 9.5 5.5 -0.5 9.5 6.5 -0.5 9.5 11.5 -0.5 10.5 12.5 -0.5 10.5 11.5 0.5 10.5\n\t\t 12.5 0.5 10.5 11.5 0.5 9.5 12.5 0.5 9.5 11.5 -0.5 9.5 12.5 -0.5 9.5 7.5 -0.5 10.5\n\t\t 8.5 -0.5 10.5 7.5 0.5 10.5 8.5 0.5 10.5 7.5 0.5 9.5 8.5 0.5 9.5 7.5 -0.5 9.5 8.5 -0.5 9.5\n\t\t 9.5 -0.5 10.5 10.5 -0.5 10.5 9.5 0.5 10.5 10.5 0.5 10.5 9.5 0.5 9.5 10.5 0.5 9.5\n\t\t 9.5 -0.5 9.5 10.5 -0.5 9.5 -2.5 -0.5 10.5 -1.5 -0.5 10.5 -2.5 0.5 10.5 -1.5 0.5 10.5\n\t\t -2.5 0.5 9.5 -1.5 0.5 9.5 -2.5 -0.5 9.5 -1.5 -0.5 9.5 -12.5 -0.5 6.5 -11.5 -0.5 6.5\n\t\t -12.5 0.5 6.5 -11.5 0.5 6.5 -12.5 0.5 5.5 -11.5 0.5 5.5 -12.5 -0.5 5.5 -11.5 -0.5 5.5\n\t\t 1.5 -0.5 6.5 2.5 -0.5 6.5 1.5 0.5 6.5 2.5 0.5 6.5 1.5 0.5 5.5 2.5 0.5 5.5 1.5 -0.5 5.5\n\t\t 2.5 -0.5 5.5 3.5 -0.5 6.5 4.5 -0.5 6.5 3.5 0.5 6.5 4.5 0.5 6.5 3.5 0.5 5.5 4.5 0.5 5.5\n\t\t 3.5 -0.5 5.5 4.5 -0.5 5.5 -0.5 -0.5 6.5 0.5 -0.5 6.5 -0.5 0.5 6.5 0.5 0.5 6.5 -0.5 0.5 5.5\n\t\t 0.5 0.5 5.5 -0.5 -0.5 5.5 0.5 -0.5 5.5 9.5 -0.5 4.5 10.5 -0.5 4.5 9.5 0.5 4.5 10.5 0.5 4.5\n\t\t 9.5 0.5 3.5 10.5 0.5 3.5 9.5 -0.5 3.5 10.5 -0.5 3.5 7.5 -0.5 4.5 8.5 -0.5 4.5 7.5 0.5 4.5\n\t\t 8.5 0.5 4.5 7.5 0.5 3.5 8.5 0.5 3.5 7.5 -0.5 3.5 8.5 -0.5 3.5 11.5 -0.5 4.5 12.5 -0.5 4.5\n\t\t 11.5 0.5 4.5 12.5 0.5 4.5 11.5 0.5 3.5 12.5 0.5 3.5 11.5 -0.5 3.5 12.5 -0.5 3.5 -8.5 -0.5 2.5\n\t\t -7.5 -0.5 2.5 -8.5 0.5 2.5 -7.5 0.5 2.5 -8.5 0.5 1.5 -7.5 0.5 1.5 -8.5 -0.5 1.5 -7.5 -0.5 1.5\n\t\t -6.5 -0.5 2.5 -5.5 -0.5 2.5 -6.5 0.5 2.5 -5.5 0.5 2.5 -6.5 0.5 1.5 -5.5 0.5 1.5 -6.5 -0.5 1.5\n\t\t -5.5 -0.5 1.5 -4.5 -0.5 6.5 -3.5 -0.5 6.5 -4.5 0.5 6.5 -3.5 0.5 6.5 -4.5 0.5 5.5\n\t\t -3.5 0.5 5.5 -4.5 -0.5 5.5 -3.5 -0.5 5.5 -2.5 -0.5 6.5 -1.5 -0.5 6.5 -2.5 0.5 6.5\n\t\t -1.5 0.5 6.5 -2.5 0.5 5.5 -1.5 0.5 5.5 -2.5 -0.5 5.5 -1.5 -0.5 5.5 9.5 -0.5 6.5 10.5 -0.5 6.5;\n\tsetAttr \".vt[1162:1327]\" 9.5 0.5 6.5 10.5 0.5 6.5 9.5 0.5 5.5 10.5 0.5 5.5 9.5 -0.5 5.5\n\t\t 10.5 -0.5 5.5 7.5 -0.5 6.5 8.5 -0.5 6.5 7.5 0.5 6.5 8.5 0.5 6.5 7.5 0.5 5.5 8.5 0.5 5.5\n\t\t 7.5 -0.5 5.5 8.5 -0.5 5.5 11.5 -0.5 6.5 12.5 -0.5 6.5 11.5 0.5 6.5 12.5 0.5 6.5 11.5 0.5 5.5\n\t\t 12.5 0.5 5.5 11.5 -0.5 5.5 12.5 -0.5 5.5 5.5 -0.5 6.5 6.5 -0.5 6.5 5.5 0.5 6.5 6.5 0.5 6.5\n\t\t 5.5 0.5 5.5 6.5 0.5 5.5 5.5 -0.5 5.5 6.5 -0.5 5.5 -10.5 -0.5 4.5 -9.5 -0.5 4.5 -10.5 0.5 4.5\n\t\t -9.5 0.5 4.5 -10.5 0.5 3.5 -9.5 0.5 3.5 -10.5 -0.5 3.5 -9.5 -0.5 3.5 3.5 -0.5 4.5\n\t\t 4.5 -0.5 4.5 3.5 0.5 4.5 4.5 0.5 4.5 3.5 0.5 3.5 4.5 0.5 3.5 3.5 -0.5 3.5 4.5 -0.5 3.5\n\t\t -12.5 -0.5 4.5 -11.5 -0.5 4.5 -12.5 0.5 4.5 -11.5 0.5 4.5 -12.5 0.5 3.5 -11.5 0.5 3.5\n\t\t -12.5 -0.5 3.5 -11.5 -0.5 3.5 -6.5 -0.5 4.5 -5.5 -0.5 4.5 -6.5 0.5 4.5 -5.5 0.5 4.5\n\t\t -6.5 0.5 3.5 -5.5 0.5 3.5 -6.5 -0.5 3.5 -5.5 -0.5 3.5 -8.5 -0.5 4.5 -7.5 -0.5 4.5\n\t\t -8.5 0.5 4.5 -7.5 0.5 4.5 -8.5 0.5 3.5 -7.5 0.5 3.5 -8.5 -0.5 3.5 -7.5 -0.5 3.5 -0.5 -0.5 4.5\n\t\t 0.5 -0.5 4.5 -0.5 0.5 4.5 0.5 0.5 4.5 -0.5 0.5 3.5 0.5 0.5 3.5 -0.5 -0.5 3.5 0.5 -0.5 3.5\n\t\t 1.5 -0.5 4.5 2.5 -0.5 4.5 1.5 0.5 4.5 2.5 0.5 4.5 1.5 0.5 3.5 2.5 0.5 3.5 1.5 -0.5 3.5\n\t\t 2.5 -0.5 3.5 -4.5 -0.5 4.5 -3.5 -0.5 4.5 -4.5 0.5 4.5 -3.5 0.5 4.5 -4.5 0.5 3.5 -3.5 0.5 3.5\n\t\t -4.5 -0.5 3.5 -3.5 -0.5 3.5 -2.5 -0.5 4.5 -1.5 -0.5 4.5 -2.5 0.5 4.5 -1.5 0.5 4.5\n\t\t -2.5 0.5 3.5 -1.5 0.5 3.5 -2.5 -0.5 3.5 -1.5 -0.5 3.5 -10.5 -0.5 2.5 -9.5 -0.5 2.5\n\t\t -10.5 0.5 2.5 -9.5 0.5 2.5 -10.5 0.5 1.5 -9.5 0.5 1.5 -10.5 -0.5 1.5 -9.5 -0.5 1.5\n\t\t 5.5 -0.5 4.5 6.5 -0.5 4.5 5.5 0.5 4.5 6.5 0.5 4.5 5.5 0.5 3.5 6.5 0.5 3.5 5.5 -0.5 3.5\n\t\t 6.5 -0.5 3.5 5.5 -0.5 2.5 6.5 -0.5 2.5 5.5 0.5 2.5 6.5 0.5 2.5 5.5 0.5 1.5 6.5 0.5 1.5\n\t\t 5.5 -0.5 1.5 6.5 -0.5 1.5 -6.5 -0.5 -9.5 -5.5 -0.5 -9.5 -6.5 0.5 -9.5 -5.5 0.5 -9.5\n\t\t -6.5 0.5 -10.5 -5.5 0.5 -10.5 -6.5 -0.5 -10.5 -5.5 -0.5 -10.5 -10.5 -0.5 -7.5 -9.5 -0.5 -7.5\n\t\t -10.5 0.5 -7.5 -9.5 0.5 -7.5 -10.5 0.5 -8.5 -9.5 0.5 -8.5 -10.5 -0.5 -8.5 -9.5 -0.5 -8.5\n\t\t 3.5 -0.5 -7.5 4.5 -0.5 -7.5 3.5 0.5 -7.5 4.5 0.5 -7.5 3.5 0.5 -8.5 4.5 0.5 -8.5 3.5 -0.5 -8.5\n\t\t 4.5 -0.5 -8.5 -12.5 -0.5 -7.5 -11.5 -0.5 -7.5 -12.5 0.5 -7.5 -11.5 0.5 -7.5 -12.5 0.5 -8.5\n\t\t -11.5 0.5 -8.5 -12.5 -0.5 -8.5 -11.5 -0.5 -8.5 -6.5 -0.5 -7.5 -5.5 -0.5 -7.5 -6.5 0.5 -7.5\n\t\t -5.5 0.5 -7.5 -6.5 0.5 -8.5 -5.5 0.5 -8.5 -6.5 -0.5 -8.5 -5.5 -0.5 -8.5;\n\tsetAttr \".vt[1328:1375]\" -8.5 -0.5 -7.5 -7.5 -0.5 -7.5 -8.5 0.5 -7.5 -7.5 0.5 -7.5\n\t\t -8.5 0.5 -8.5 -7.5 0.5 -8.5 -8.5 -0.5 -8.5 -7.5 -0.5 -8.5 -0.5 -0.5 -7.5 0.5 -0.5 -7.5\n\t\t -0.5 0.5 -7.5 0.5 0.5 -7.5 -0.5 0.5 -8.5 0.5 0.5 -8.5 -0.5 -0.5 -8.5 0.5 -0.5 -8.5\n\t\t 1.5 -0.5 -7.5 2.5 -0.5 -7.5 1.5 0.5 -7.5 2.5 0.5 -7.5 1.5 0.5 -8.5 2.5 0.5 -8.5 1.5 -0.5 -8.5\n\t\t 2.5 -0.5 -8.5 -4.5 -0.5 -7.5 -3.5 -0.5 -7.5 -4.5 0.5 -7.5 -3.5 0.5 -7.5 -4.5 0.5 -8.5\n\t\t -3.5 0.5 -8.5 -4.5 -0.5 -8.5 -3.5 -0.5 -8.5 -2.5 -0.5 -7.5 -1.5 -0.5 -7.5 -2.5 0.5 -7.5\n\t\t -1.5 0.5 -7.5 -2.5 0.5 -8.5 -1.5 0.5 -8.5 -2.5 -0.5 -8.5 -1.5 -0.5 -8.5 -10.5 -0.5 -9.5\n\t\t -9.5 -0.5 -9.5 -10.5 0.5 -9.5 -9.5 0.5 -9.5 -10.5 0.5 -10.5 -9.5 0.5 -10.5 -10.5 -0.5 -10.5\n\t\t -9.5 -0.5 -10.5;\n\tsetAttr -s 2064 \".ed\";\n\tsetAttr \".ed[0:165]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0\n\t\t 5 7 0 6 0 0 7 1 0 8 9 0 10 11 0 12 13 0 14 15 0 8 10 0 9 11 0 10 12 0 11 13 0 12 14 0\n\t\t 13 15 0 14 8 0 15 9 0 16 17 0 18 19 0 20 21 0 22 23 0 16 18 0 17 19 0 18 20 0 19 21 0\n\t\t 20 22 0 21 23 0 22 16 0 23 17 0 24 25 0 26 27 0 28 29 0 30 31 0 24 26 0 25 27 0 26 28 0\n\t\t 27 29 0 28 30 0 29 31 0 30 24 0 31 25 0 32 33 0 34 35 0 36 37 0 38 39 0 32 34 0 33 35 0\n\t\t 34 36 0 35 37 0 36 38 0 37 39 0 38 32 0 39 33 0 40 41 0 42 43 0 44 45 0 46 47 0 40 42 0\n\t\t 41 43 0 42 44 0 43 45 0 44 46 0 45 47 0 46 40 0 47 41 0 48 49 0 50 51 0 52 53 0 54 55 0\n\t\t 48 50 0 49 51 0 50 52 0 51 53 0 52 54 0 53 55 0 54 48 0 55 49 0 56 57 0 58 59 0 60 61 0\n\t\t 62 63 0 56 58 0 57 59 0 58 60 0 59 61 0 60 62 0 61 63 0 62 56 0 63 57 0 64 65 0 66 67 0\n\t\t 68 69 0 70 71 0 64 66 0 65 67 0 66 68 0 67 69 0 68 70 0 69 71 0 70 64 0 71 65 0 72 73 0\n\t\t 74 75 0 76 77 0 78 79 0 72 74 0 73 75 0 74 76 0 75 77 0 76 78 0 77 79 0 78 72 0 79 73 0\n\t\t 80 81 0 82 83 0 84 85 0 86 87 0 80 82 0 81 83 0 82 84 0 83 85 0 84 86 0 85 87 0 86 80 0\n\t\t 87 81 0 88 89 0 90 91 0 92 93 0 94 95 0 88 90 0 89 91 0 90 92 0 91 93 0 92 94 0 93 95 0\n\t\t 94 88 0 95 89 0 96 97 0 98 99 0 100 101 0 102 103 0 96 98 0 97 99 0 98 100 0 99 101 0\n\t\t 100 102 0 101 103 0 102 96 0 103 97 0 104 105 0 106 107 0 108 109 0 110 111 0 104 106 0\n\t\t 105 107 0 106 108 0 107 109 0 108 110 0 109 111 0;\n\tsetAttr \".ed[166:331]\" 110 104 0 111 105 0 112 113 0 114 115 0 116 117 0 118 119 0\n\t\t 112 114 0 113 115 0 114 116 0 115 117 0 116 118 0 117 119 0 118 112 0 119 113 0 120 121 0\n\t\t 122 123 0 124 125 0 126 127 0 120 122 0 121 123 0 122 124 0 123 125 0 124 126 0 125 127 0\n\t\t 126 120 0 127 121 0 128 129 0 130 131 0 132 133 0 134 135 0 128 130 0 129 131 0 130 132 0\n\t\t 131 133 0 132 134 0 133 135 0 134 128 0 135 129 0 136 137 0 138 139 0 140 141 0 142 143 0\n\t\t 136 138 0 137 139 0 138 140 0 139 141 0 140 142 0 141 143 0 142 136 0 143 137 0 144 145 0\n\t\t 146 147 0 148 149 0 150 151 0 144 146 0 145 147 0 146 148 0 147 149 0 148 150 0 149 151 0\n\t\t 150 144 0 151 145 0 152 153 0 154 155 0 156 157 0 158 159 0 152 154 0 153 155 0 154 156 0\n\t\t 155 157 0 156 158 0 157 159 0 158 152 0 159 153 0 160 161 0 162 163 0 164 165 0 166 167 0\n\t\t 160 162 0 161 163 0 162 164 0 163 165 0 164 166 0 165 167 0 166 160 0 167 161 0 168 169 0\n\t\t 170 171 0 172 173 0 174 175 0 168 170 0 169 171 0 170 172 0 171 173 0 172 174 0 173 175 0\n\t\t 174 168 0 175 169 0 176 177 0 178 179 0 180 181 0 182 183 0 176 178 0 177 179 0 178 180 0\n\t\t 179 181 0 180 182 0 181 183 0 182 176 0 183 177 0 184 185 0 186 187 0 188 189 0 190 191 0\n\t\t 184 186 0 185 187 0 186 188 0 187 189 0 188 190 0 189 191 0 190 184 0 191 185 0 192 193 0\n\t\t 194 195 0 196 197 0 198 199 0 192 194 0 193 195 0 194 196 0 195 197 0 196 198 0 197 199 0\n\t\t 198 192 0 199 193 0 200 201 0 202 203 0 204 205 0 206 207 0 200 202 0 201 203 0 202 204 0\n\t\t 203 205 0 204 206 0 205 207 0 206 200 0 207 201 0 208 209 0 210 211 0 212 213 0 214 215 0\n\t\t 208 210 0 209 211 0 210 212 0 211 213 0 212 214 0 213 215 0 214 208 0 215 209 0 216 217 0\n\t\t 218 219 0 220 221 0 222 223 0 216 218 0 217 219 0 218 220 0 219 221 0;\n\tsetAttr \".ed[332:497]\" 220 222 0 221 223 0 222 216 0 223 217 0 224 225 0 226 227 0\n\t\t 228 229 0 230 231 0 224 226 0 225 227 0 226 228 0 227 229 0 228 230 0 229 231 0 230 224 0\n\t\t 231 225 0 232 233 0 234 235 0 236 237 0 238 239 0 232 234 0 233 235 0 234 236 0 235 237 0\n\t\t 236 238 0 237 239 0 238 232 0 239 233 0 240 241 0 242 243 0 244 245 0 246 247 0 240 242 0\n\t\t 241 243 0 242 244 0 243 245 0 244 246 0 245 247 0 246 240 0 247 241 0 248 249 0 250 251 0\n\t\t 252 253 0 254 255 0 248 250 0 249 251 0 250 252 0 251 253 0 252 254 0 253 255 0 254 248 0\n\t\t 255 249 0 256 257 0 258 259 0 260 261 0 262 263 0 256 258 0 257 259 0 258 260 0 259 261 0\n\t\t 260 262 0 261 263 0 262 256 0 263 257 0 264 265 0 266 267 0 268 269 0 270 271 0 264 266 0\n\t\t 265 267 0 266 268 0 267 269 0 268 270 0 269 271 0 270 264 0 271 265 0 272 273 0 274 275 0\n\t\t 276 277 0 278 279 0 272 274 0 273 275 0 274 276 0 275 277 0 276 278 0 277 279 0 278 272 0\n\t\t 279 273 0 280 281 0 282 283 0 284 285 0 286 287 0 280 282 0 281 283 0 282 284 0 283 285 0\n\t\t 284 286 0 285 287 0 286 280 0 287 281 0 288 289 0 290 291 0 292 293 0 294 295 0 288 290 0\n\t\t 289 291 0 290 292 0 291 293 0 292 294 0 293 295 0 294 288 0 295 289 0 296 297 0 298 299 0\n\t\t 300 301 0 302 303 0 296 298 0 297 299 0 298 300 0 299 301 0 300 302 0 301 303 0 302 296 0\n\t\t 303 297 0 304 305 0 306 307 0 308 309 0 310 311 0 304 306 0 305 307 0 306 308 0 307 309 0\n\t\t 308 310 0 309 311 0 310 304 0 311 305 0 312 313 0 314 315 0 316 317 0 318 319 0 312 314 0\n\t\t 313 315 0 314 316 0 315 317 0 316 318 0 317 319 0 318 312 0 319 313 0 320 321 0 322 323 0\n\t\t 324 325 0 326 327 0 320 322 0 321 323 0 322 324 0 323 325 0 324 326 0 325 327 0 326 320 0\n\t\t 327 321 0 328 329 0 330 331 0 332 333 0 334 335 0 328 330 0 329 331 0;\n\tsetAttr \".ed[498:663]\" 330 332 0 331 333 0 332 334 0 333 335 0 334 328 0 335 329 0\n\t\t 336 337 0 338 339 0 340 341 0 342 343 0 336 338 0 337 339 0 338 340 0 339 341 0 340 342 0\n\t\t 341 343 0 342 336 0 343 337 0 344 345 0 346 347 0 348 349 0 350 351 0 344 346 0 345 347 0\n\t\t 346 348 0 347 349 0 348 350 0 349 351 0 350 344 0 351 345 0 352 353 0 354 355 0 356 357 0\n\t\t 358 359 0 352 354 0 353 355 0 354 356 0 355 357 0 356 358 0 357 359 0 358 352 0 359 353 0\n\t\t 360 361 0 362 363 0 364 365 0 366 367 0 360 362 0 361 363 0 362 364 0 363 365 0 364 366 0\n\t\t 365 367 0 366 360 0 367 361 0 368 369 0 370 371 0 372 373 0 374 375 0 368 370 0 369 371 0\n\t\t 370 372 0 371 373 0 372 374 0 373 375 0 374 368 0 375 369 0 376 377 0 378 379 0 380 381 0\n\t\t 382 383 0 376 378 0 377 379 0 378 380 0 379 381 0 380 382 0 381 383 0 382 376 0 383 377 0\n\t\t 384 385 0 386 387 0 388 389 0 390 391 0 384 386 0 385 387 0 386 388 0 387 389 0 388 390 0\n\t\t 389 391 0 390 384 0 391 385 0 392 393 0 394 395 0 396 397 0 398 399 0 392 394 0 393 395 0\n\t\t 394 396 0 395 397 0 396 398 0 397 399 0 398 392 0 399 393 0 400 401 0 402 403 0 404 405 0\n\t\t 406 407 0 400 402 0 401 403 0 402 404 0 403 405 0 404 406 0 405 407 0 406 400 0 407 401 0\n\t\t 408 409 0 410 411 0 412 413 0 414 415 0 408 410 0 409 411 0 410 412 0 411 413 0 412 414 0\n\t\t 413 415 0 414 408 0 415 409 0 416 417 0 418 419 0 420 421 0 422 423 0 416 418 0 417 419 0\n\t\t 418 420 0 419 421 0 420 422 0 421 423 0 422 416 0 423 417 0 424 425 0 426 427 0 428 429 0\n\t\t 430 431 0 424 426 0 425 427 0 426 428 0 427 429 0 428 430 0 429 431 0 430 424 0 431 425 0\n\t\t 432 433 0 434 435 0 436 437 0 438 439 0 432 434 0 433 435 0 434 436 0 435 437 0 436 438 0\n\t\t 437 439 0 438 432 0 439 433 0 440 441 0 442 443 0 444 445 0 446 447 0;\n\tsetAttr \".ed[664:829]\" 440 442 0 441 443 0 442 444 0 443 445 0 444 446 0 445 447 0\n\t\t 446 440 0 447 441 0 448 449 0 450 451 0 452 453 0 454 455 0 448 450 0 449 451 0 450 452 0\n\t\t 451 453 0 452 454 0 453 455 0 454 448 0 455 449 0 456 457 0 458 459 0 460 461 0 462 463 0\n\t\t 456 458 0 457 459 0 458 460 0 459 461 0 460 462 0 461 463 0 462 456 0 463 457 0 464 465 0\n\t\t 466 467 0 468 469 0 470 471 0 464 466 0 465 467 0 466 468 0 467 469 0 468 470 0 469 471 0\n\t\t 470 464 0 471 465 0 472 473 0 474 475 0 476 477 0 478 479 0 472 474 0 473 475 0 474 476 0\n\t\t 475 477 0 476 478 0 477 479 0 478 472 0 479 473 0 480 481 0 482 483 0 484 485 0 486 487 0\n\t\t 480 482 0 481 483 0 482 484 0 483 485 0 484 486 0 485 487 0 486 480 0 487 481 0 488 489 0\n\t\t 490 491 0 492 493 0 494 495 0 488 490 0 489 491 0 490 492 0 491 493 0 492 494 0 493 495 0\n\t\t 494 488 0 495 489 0 496 497 0 498 499 0 500 501 0 502 503 0 496 498 0 497 499 0 498 500 0\n\t\t 499 501 0 500 502 0 501 503 0 502 496 0 503 497 0 504 505 0 506 507 0 508 509 0 510 511 0\n\t\t 504 506 0 505 507 0 506 508 0 507 509 0 508 510 0 509 511 0 510 504 0 511 505 0 512 513 0\n\t\t 514 515 0 516 517 0 518 519 0 512 514 0 513 515 0 514 516 0 515 517 0 516 518 0 517 519 0\n\t\t 518 512 0 519 513 0 520 521 0 522 523 0 524 525 0 526 527 0 520 522 0 521 523 0 522 524 0\n\t\t 523 525 0 524 526 0 525 527 0 526 520 0 527 521 0 528 529 0 530 531 0 532 533 0 534 535 0\n\t\t 528 530 0 529 531 0 530 532 0 531 533 0 532 534 0 533 535 0 534 528 0 535 529 0 536 537 0\n\t\t 538 539 0 540 541 0 542 543 0 536 538 0 537 539 0 538 540 0 539 541 0 540 542 0 541 543 0\n\t\t 542 536 0 543 537 0 544 545 0 546 547 0 548 549 0 550 551 0 544 546 0 545 547 0 546 548 0\n\t\t 547 549 0 548 550 0 549 551 0 550 544 0 551 545 0 552 553 0 554 555 0;\n\tsetAttr \".ed[830:995]\" 556 557 0 558 559 0 552 554 0 553 555 0 554 556 0 555 557 0\n\t\t 556 558 0 557 559 0 558 552 0 559 553 0 560 561 0 562 563 0 564 565 0 566 567 0 560 562 0\n\t\t 561 563 0 562 564 0 563 565 0 564 566 0 565 567 0 566 560 0 567 561 0 568 569 0 570 571 0\n\t\t 572 573 0 574 575 0 568 570 0 569 571 0 570 572 0 571 573 0 572 574 0 573 575 0 574 568 0\n\t\t 575 569 0 576 577 0 578 579 0 580 581 0 582 583 0 576 578 0 577 579 0 578 580 0 579 581 0\n\t\t 580 582 0 581 583 0 582 576 0 583 577 0 584 585 0 586 587 0 588 589 0 590 591 0 584 586 0\n\t\t 585 587 0 586 588 0 587 589 0 588 590 0 589 591 0 590 584 0 591 585 0 592 593 0 594 595 0\n\t\t 596 597 0 598 599 0 592 594 0 593 595 0 594 596 0 595 597 0 596 598 0 597 599 0 598 592 0\n\t\t 599 593 0 600 601 0 602 603 0 604 605 0 606 607 0 600 602 0 601 603 0 602 604 0 603 605 0\n\t\t 604 606 0 605 607 0 606 600 0 607 601 0 608 609 0 610 611 0 612 613 0 614 615 0 608 610 0\n\t\t 609 611 0 610 612 0 611 613 0 612 614 0 613 615 0 614 608 0 615 609 0 616 617 0 618 619 0\n\t\t 620 621 0 622 623 0 616 618 0 617 619 0 618 620 0 619 621 0 620 622 0 621 623 0 622 616 0\n\t\t 623 617 0 624 625 0 626 627 0 628 629 0 630 631 0 624 626 0 625 627 0 626 628 0 627 629 0\n\t\t 628 630 0 629 631 0 630 624 0 631 625 0 632 633 0 634 635 0 636 637 0 638 639 0 632 634 0\n\t\t 633 635 0 634 636 0 635 637 0 636 638 0 637 639 0 638 632 0 639 633 0 640 641 0 642 643 0\n\t\t 644 645 0 646 647 0 640 642 0 641 643 0 642 644 0 643 645 0 644 646 0 645 647 0 646 640 0\n\t\t 647 641 0 648 649 0 650 651 0 652 653 0 654 655 0 648 650 0 649 651 0 650 652 0 651 653 0\n\t\t 652 654 0 653 655 0 654 648 0 655 649 0 656 657 0 658 659 0 660 661 0 662 663 0 656 658 0\n\t\t 657 659 0 658 660 0 659 661 0 660 662 0 661 663 0 662 656 0 663 657 0;\n\tsetAttr \".ed[996:1161]\" 664 665 0 666 667 0 668 669 0 670 671 0 664 666 0 665 667 0\n\t\t 666 668 0 667 669 0 668 670 0 669 671 0 670 664 0 671 665 0 672 673 0 674 675 0 676 677 0\n\t\t 678 679 0 672 674 0 673 675 0 674 676 0 675 677 0 676 678 0 677 679 0 678 672 0 679 673 0\n\t\t 680 681 0 682 683 0 684 685 0 686 687 0 680 682 0 681 683 0 682 684 0 683 685 0 684 686 0\n\t\t 685 687 0 686 680 0 687 681 0 688 689 0 690 691 0 692 693 0 694 695 0 688 690 0 689 691 0\n\t\t 690 692 0 691 693 0 692 694 0 693 695 0 694 688 0 695 689 0 696 697 0 698 699 0 700 701 0\n\t\t 702 703 0 696 698 0 697 699 0 698 700 0 699 701 0 700 702 0 701 703 0 702 696 0 703 697 0\n\t\t 704 705 0 706 707 0 708 709 0 710 711 0 704 706 0 705 707 0 706 708 0 707 709 0 708 710 0\n\t\t 709 711 0 710 704 0 711 705 0 712 713 0 714 715 0 716 717 0 718 719 0 712 714 0 713 715 0\n\t\t 714 716 0 715 717 0 716 718 0 717 719 0 718 712 0 719 713 0 720 721 0 722 723 0 724 725 0\n\t\t 726 727 0 720 722 0 721 723 0 722 724 0 723 725 0 724 726 0 725 727 0 726 720 0 727 721 0\n\t\t 728 729 0 730 731 0 732 733 0 734 735 0 728 730 0 729 731 0 730 732 0 731 733 0 732 734 0\n\t\t 733 735 0 734 728 0 735 729 0 736 737 0 738 739 0 740 741 0 742 743 0 736 738 0 737 739 0\n\t\t 738 740 0 739 741 0 740 742 0 741 743 0 742 736 0 743 737 0 744 745 0 746 747 0 748 749 0\n\t\t 750 751 0 744 746 0 745 747 0 746 748 0 747 749 0 748 750 0 749 751 0 750 744 0 751 745 0\n\t\t 752 753 0 754 755 0 756 757 0 758 759 0 752 754 0 753 755 0 754 756 0 755 757 0 756 758 0\n\t\t 757 759 0 758 752 0 759 753 0 760 761 0 762 763 0 764 765 0 766 767 0 760 762 0 761 763 0\n\t\t 762 764 0 763 765 0 764 766 0 765 767 0 766 760 0 767 761 0 768 769 0 770 771 0 772 773 0\n\t\t 774 775 0 768 770 0 769 771 0 770 772 0 771 773 0 772 774 0 773 775 0;\n\tsetAttr \".ed[1162:1327]\" 774 768 0 775 769 0 776 777 0 778 779 0 780 781 0 782 783 0\n\t\t 776 778 0 777 779 0 778 780 0 779 781 0 780 782 0 781 783 0 782 776 0 783 777 0 784 785 0\n\t\t 786 787 0 788 789 0 790 791 0 784 786 0 785 787 0 786 788 0 787 789 0 788 790 0 789 791 0\n\t\t 790 784 0 791 785 0 792 793 0 794 795 0 796 797 0 798 799 0 792 794 0 793 795 0 794 796 0\n\t\t 795 797 0 796 798 0 797 799 0 798 792 0 799 793 0 800 801 0 802 803 0 804 805 0 806 807 0\n\t\t 800 802 0 801 803 0 802 804 0 803 805 0 804 806 0 805 807 0 806 800 0 807 801 0 808 809 0\n\t\t 810 811 0 812 813 0 814 815 0 808 810 0 809 811 0 810 812 0 811 813 0 812 814 0 813 815 0\n\t\t 814 808 0 815 809 0 816 817 0 818 819 0 820 821 0 822 823 0 816 818 0 817 819 0 818 820 0\n\t\t 819 821 0 820 822 0 821 823 0 822 816 0 823 817 0 824 825 0 826 827 0 828 829 0 830 831 0\n\t\t 824 826 0 825 827 0 826 828 0 827 829 0 828 830 0 829 831 0 830 824 0 831 825 0 832 833 0\n\t\t 834 835 0 836 837 0 838 839 0 832 834 0 833 835 0 834 836 0 835 837 0 836 838 0 837 839 0\n\t\t 838 832 0 839 833 0 840 841 0 842 843 0 844 845 0 846 847 0 840 842 0 841 843 0 842 844 0\n\t\t 843 845 0 844 846 0 845 847 0 846 840 0 847 841 0 848 849 0 850 851 0 852 853 0 854 855 0\n\t\t 848 850 0 849 851 0 850 852 0 851 853 0 852 854 0 853 855 0 854 848 0 855 849 0 856 857 0\n\t\t 858 859 0 860 861 0 862 863 0 856 858 0 857 859 0 858 860 0 859 861 0 860 862 0 861 863 0\n\t\t 862 856 0 863 857 0 864 865 0 866 867 0 868 869 0 870 871 0 864 866 0 865 867 0 866 868 0\n\t\t 867 869 0 868 870 0 869 871 0 870 864 0 871 865 0 872 873 0 874 875 0 876 877 0 878 879 0\n\t\t 872 874 0 873 875 0 874 876 0 875 877 0 876 878 0 877 879 0 878 872 0 879 873 0 880 881 0\n\t\t 882 883 0 884 885 0 886 887 0 880 882 0 881 883 0 882 884 0 883 885 0;\n\tsetAttr \".ed[1328:1493]\" 884 886 0 885 887 0 886 880 0 887 881 0 888 889 0 890 891 0\n\t\t 892 893 0 894 895 0 888 890 0 889 891 0 890 892 0 891 893 0 892 894 0 893 895 0 894 888 0\n\t\t 895 889 0 896 897 0 898 899 0 900 901 0 902 903 0 896 898 0 897 899 0 898 900 0 899 901 0\n\t\t 900 902 0 901 903 0 902 896 0 903 897 0 904 905 0 906 907 0 908 909 0 910 911 0 904 906 0\n\t\t 905 907 0 906 908 0 907 909 0 908 910 0 909 911 0 910 904 0 911 905 0 912 913 0 914 915 0\n\t\t 916 917 0 918 919 0 912 914 0 913 915 0 914 916 0 915 917 0 916 918 0 917 919 0 918 912 0\n\t\t 919 913 0 920 921 0 922 923 0 924 925 0 926 927 0 920 922 0 921 923 0 922 924 0 923 925 0\n\t\t 924 926 0 925 927 0 926 920 0 927 921 0 928 929 0 930 931 0 932 933 0 934 935 0 928 930 0\n\t\t 929 931 0 930 932 0 931 933 0 932 934 0 933 935 0 934 928 0 935 929 0 936 937 0 938 939 0\n\t\t 940 941 0 942 943 0 936 938 0 937 939 0 938 940 0 939 941 0 940 942 0 941 943 0 942 936 0\n\t\t 943 937 0 944 945 0 946 947 0 948 949 0 950 951 0 944 946 0 945 947 0 946 948 0 947 949 0\n\t\t 948 950 0 949 951 0 950 944 0 951 945 0 952 953 0 954 955 0 956 957 0 958 959 0 952 954 0\n\t\t 953 955 0 954 956 0 955 957 0 956 958 0 957 959 0 958 952 0 959 953 0 960 961 0 962 963 0\n\t\t 964 965 0 966 967 0 960 962 0 961 963 0 962 964 0 963 965 0 964 966 0 965 967 0 966 960 0\n\t\t 967 961 0 968 969 0 970 971 0 972 973 0 974 975 0 968 970 0 969 971 0 970 972 0 971 973 0\n\t\t 972 974 0 973 975 0 974 968 0 975 969 0 976 977 0 978 979 0 980 981 0 982 983 0 976 978 0\n\t\t 977 979 0 978 980 0 979 981 0 980 982 0 981 983 0 982 976 0 983 977 0 984 985 0 986 987 0\n\t\t 988 989 0 990 991 0 984 986 0 985 987 0 986 988 0 987 989 0 988 990 0 989 991 0 990 984 0\n\t\t 991 985 0 992 993 0 994 995 0 996 997 0 998 999 0 992 994 0 993 995 0;\n\tsetAttr \".ed[1494:1659]\" 994 996 0 995 997 0 996 998 0 997 999 0 998 992 0 999 993 0\n\t\t 1000 1001 0 1002 1003 0 1004 1005 0 1006 1007 0 1000 1002 0 1001 1003 0 1002 1004 0\n\t\t 1003 1005 0 1004 1006 0 1005 1007 0 1006 1000 0 1007 1001 0 1008 1009 0 1010 1011 0\n\t\t 1012 1013 0 1014 1015 0 1008 1010 0 1009 1011 0 1010 1012 0 1011 1013 0 1012 1014 0\n\t\t 1013 1015 0 1014 1008 0 1015 1009 0 1016 1017 0 1018 1019 0 1020 1021 0 1022 1023 0\n\t\t 1016 1018 0 1017 1019 0 1018 1020 0 1019 1021 0 1020 1022 0 1021 1023 0 1022 1016 0\n\t\t 1023 1017 0 1024 1025 0 1026 1027 0 1028 1029 0 1030 1031 0 1024 1026 0 1025 1027 0\n\t\t 1026 1028 0 1027 1029 0 1028 1030 0 1029 1031 0 1030 1024 0 1031 1025 0 1032 1033 0\n\t\t 1034 1035 0 1036 1037 0 1038 1039 0 1032 1034 0 1033 1035 0 1034 1036 0 1035 1037 0\n\t\t 1036 1038 0 1037 1039 0 1038 1032 0 1039 1033 0 1040 1041 0 1042 1043 0 1044 1045 0\n\t\t 1046 1047 0 1040 1042 0 1041 1043 0 1042 1044 0 1043 1045 0 1044 1046 0 1045 1047 0\n\t\t 1046 1040 0 1047 1041 0 1048 1049 0 1050 1051 0 1052 1053 0 1054 1055 0 1048 1050 0\n\t\t 1049 1051 0 1050 1052 0 1051 1053 0 1052 1054 0 1053 1055 0 1054 1048 0 1055 1049 0\n\t\t 1056 1057 0 1058 1059 0 1060 1061 0 1062 1063 0 1056 1058 0 1057 1059 0 1058 1060 0\n\t\t 1059 1061 0 1060 1062 0 1061 1063 0 1062 1056 0 1063 1057 0 1064 1065 0 1066 1067 0\n\t\t 1068 1069 0 1070 1071 0 1064 1066 0 1065 1067 0 1066 1068 0 1067 1069 0 1068 1070 0\n\t\t 1069 1071 0 1070 1064 0 1071 1065 0 1072 1073 0 1074 1075 0 1076 1077 0 1078 1079 0\n\t\t 1072 1074 0 1073 1075 0 1074 1076 0 1075 1077 0 1076 1078 0 1077 1079 0 1078 1072 0\n\t\t 1079 1073 0 1080 1081 0 1082 1083 0 1084 1085 0 1086 1087 0 1080 1082 0 1081 1083 0\n\t\t 1082 1084 0 1083 1085 0 1084 1086 0 1085 1087 0 1086 1080 0 1087 1081 0 1088 1089 0\n\t\t 1090 1091 0 1092 1093 0 1094 1095 0 1088 1090 0 1089 1091 0 1090 1092 0 1091 1093 0\n\t\t 1092 1094 0 1093 1095 0 1094 1088 0 1095 1089 0 1096 1097 0 1098 1099 0 1100 1101 0\n\t\t 1102 1103 0 1096 1098 0 1097 1099 0 1098 1100 0 1099 1101 0 1100 1102 0 1101 1103 0\n\t\t 1102 1096 0 1103 1097 0 1104 1105 0 1106 1107 0 1108 1109 0 1110 1111 0;\n\tsetAttr \".ed[1660:1825]\" 1104 1106 0 1105 1107 0 1106 1108 0 1107 1109 0 1108 1110 0\n\t\t 1109 1111 0 1110 1104 0 1111 1105 0 1112 1113 0 1114 1115 0 1116 1117 0 1118 1119 0\n\t\t 1112 1114 0 1113 1115 0 1114 1116 0 1115 1117 0 1116 1118 0 1117 1119 0 1118 1112 0\n\t\t 1119 1113 0 1120 1121 0 1122 1123 0 1124 1125 0 1126 1127 0 1120 1122 0 1121 1123 0\n\t\t 1122 1124 0 1123 1125 0 1124 1126 0 1125 1127 0 1126 1120 0 1127 1121 0 1128 1129 0\n\t\t 1130 1131 0 1132 1133 0 1134 1135 0 1128 1130 0 1129 1131 0 1130 1132 0 1131 1133 0\n\t\t 1132 1134 0 1133 1135 0 1134 1128 0 1135 1129 0 1136 1137 0 1138 1139 0 1140 1141 0\n\t\t 1142 1143 0 1136 1138 0 1137 1139 0 1138 1140 0 1139 1141 0 1140 1142 0 1141 1143 0\n\t\t 1142 1136 0 1143 1137 0 1144 1145 0 1146 1147 0 1148 1149 0 1150 1151 0 1144 1146 0\n\t\t 1145 1147 0 1146 1148 0 1147 1149 0 1148 1150 0 1149 1151 0 1150 1144 0 1151 1145 0\n\t\t 1152 1153 0 1154 1155 0 1156 1157 0 1158 1159 0 1152 1154 0 1153 1155 0 1154 1156 0\n\t\t 1155 1157 0 1156 1158 0 1157 1159 0 1158 1152 0 1159 1153 0 1160 1161 0 1162 1163 0\n\t\t 1164 1165 0 1166 1167 0 1160 1162 0 1161 1163 0 1162 1164 0 1163 1165 0 1164 1166 0\n\t\t 1165 1167 0 1166 1160 0 1167 1161 0 1168 1169 0 1170 1171 0 1172 1173 0 1174 1175 0\n\t\t 1168 1170 0 1169 1171 0 1170 1172 0 1171 1173 0 1172 1174 0 1173 1175 0 1174 1168 0\n\t\t 1175 1169 0 1176 1177 0 1178 1179 0 1180 1181 0 1182 1183 0 1176 1178 0 1177 1179 0\n\t\t 1178 1180 0 1179 1181 0 1180 1182 0 1181 1183 0 1182 1176 0 1183 1177 0 1184 1185 0\n\t\t 1186 1187 0 1188 1189 0 1190 1191 0 1184 1186 0 1185 1187 0 1186 1188 0 1187 1189 0\n\t\t 1188 1190 0 1189 1191 0 1190 1184 0 1191 1185 0 1192 1193 0 1194 1195 0 1196 1197 0\n\t\t 1198 1199 0 1192 1194 0 1193 1195 0 1194 1196 0 1195 1197 0 1196 1198 0 1197 1199 0\n\t\t 1198 1192 0 1199 1193 0 1200 1201 0 1202 1203 0 1204 1205 0 1206 1207 0 1200 1202 0\n\t\t 1201 1203 0 1202 1204 0 1203 1205 0 1204 1206 0 1205 1207 0 1206 1200 0 1207 1201 0\n\t\t 1208 1209 0 1210 1211 0 1212 1213 0 1214 1215 0 1208 1210 0 1209 1211 0 1210 1212 0\n\t\t 1211 1213 0 1212 1214 0 1213 1215 0 1214 1208 0 1215 1209 0 1216 1217 0 1218 1219 0;\n\tsetAttr \".ed[1826:1991]\" 1220 1221 0 1222 1223 0 1216 1218 0 1217 1219 0 1218 1220 0\n\t\t 1219 1221 0 1220 1222 0 1221 1223 0 1222 1216 0 1223 1217 0 1224 1225 0 1226 1227 0\n\t\t 1228 1229 0 1230 1231 0 1224 1226 0 1225 1227 0 1226 1228 0 1227 1229 0 1228 1230 0\n\t\t 1229 1231 0 1230 1224 0 1231 1225 0 1232 1233 0 1234 1235 0 1236 1237 0 1238 1239 0\n\t\t 1232 1234 0 1233 1235 0 1234 1236 0 1235 1237 0 1236 1238 0 1237 1239 0 1238 1232 0\n\t\t 1239 1233 0 1240 1241 0 1242 1243 0 1244 1245 0 1246 1247 0 1240 1242 0 1241 1243 0\n\t\t 1242 1244 0 1243 1245 0 1244 1246 0 1245 1247 0 1246 1240 0 1247 1241 0 1248 1249 0\n\t\t 1250 1251 0 1252 1253 0 1254 1255 0 1248 1250 0 1249 1251 0 1250 1252 0 1251 1253 0\n\t\t 1252 1254 0 1253 1255 0 1254 1248 0 1255 1249 0 1256 1257 0 1258 1259 0 1260 1261 0\n\t\t 1262 1263 0 1256 1258 0 1257 1259 0 1258 1260 0 1259 1261 0 1260 1262 0 1261 1263 0\n\t\t 1262 1256 0 1263 1257 0 1264 1265 0 1266 1267 0 1268 1269 0 1270 1271 0 1264 1266 0\n\t\t 1265 1267 0 1266 1268 0 1267 1269 0 1268 1270 0 1269 1271 0 1270 1264 0 1271 1265 0\n\t\t 1272 1273 0 1274 1275 0 1276 1277 0 1278 1279 0 1272 1274 0 1273 1275 0 1274 1276 0\n\t\t 1275 1277 0 1276 1278 0 1277 1279 0 1278 1272 0 1279 1273 0 1280 1281 0 1282 1283 0\n\t\t 1284 1285 0 1286 1287 0 1280 1282 0 1281 1283 0 1282 1284 0 1283 1285 0 1284 1286 0\n\t\t 1285 1287 0 1286 1280 0 1287 1281 0 1288 1289 0 1290 1291 0 1292 1293 0 1294 1295 0\n\t\t 1288 1290 0 1289 1291 0 1290 1292 0 1291 1293 0 1292 1294 0 1293 1295 0 1294 1288 0\n\t\t 1295 1289 0 1296 1297 0 1298 1299 0 1300 1301 0 1302 1303 0 1296 1298 0 1297 1299 0\n\t\t 1298 1300 0 1299 1301 0 1300 1302 0 1301 1303 0 1302 1296 0 1303 1297 0 1304 1305 0\n\t\t 1306 1307 0 1308 1309 0 1310 1311 0 1304 1306 0 1305 1307 0 1306 1308 0 1307 1309 0\n\t\t 1308 1310 0 1309 1311 0 1310 1304 0 1311 1305 0 1312 1313 0 1314 1315 0 1316 1317 0\n\t\t 1318 1319 0 1312 1314 0 1313 1315 0 1314 1316 0 1315 1317 0 1316 1318 0 1317 1319 0\n\t\t 1318 1312 0 1319 1313 0 1320 1321 0 1322 1323 0 1324 1325 0 1326 1327 0 1320 1322 0\n\t\t 1321 1323 0 1322 1324 0 1323 1325 0 1324 1326 0 1325 1327 0 1326 1320 0 1327 1321 0;\n\tsetAttr \".ed[1992:2063]\" 1328 1329 0 1330 1331 0 1332 1333 0 1334 1335 0 1328 1330 0\n\t\t 1329 1331 0 1330 1332 0 1331 1333 0 1332 1334 0 1333 1335 0 1334 1328 0 1335 1329 0\n\t\t 1336 1337 0 1338 1339 0 1340 1341 0 1342 1343 0 1336 1338 0 1337 1339 0 1338 1340 0\n\t\t 1339 1341 0 1340 1342 0 1341 1343 0 1342 1336 0 1343 1337 0 1344 1345 0 1346 1347 0\n\t\t 1348 1349 0 1350 1351 0 1344 1346 0 1345 1347 0 1346 1348 0 1347 1349 0 1348 1350 0\n\t\t 1349 1351 0 1350 1344 0 1351 1345 0 1352 1353 0 1354 1355 0 1356 1357 0 1358 1359 0\n\t\t 1352 1354 0 1353 1355 0 1354 1356 0 1355 1357 0 1356 1358 0 1357 1359 0 1358 1352 0\n\t\t 1359 1353 0 1360 1361 0 1362 1363 0 1364 1365 0 1366 1367 0 1360 1362 0 1361 1363 0\n\t\t 1362 1364 0 1363 1365 0 1364 1366 0 1365 1367 0 1366 1360 0 1367 1361 0 1368 1369 0\n\t\t 1370 1371 0 1372 1373 0 1374 1375 0 1368 1370 0 1369 1371 0 1370 1372 0 1371 1373 0\n\t\t 1372 1374 0 1373 1375 0 1374 1368 0 1375 1369 0;\n\tsetAttr -s 1032 -ch 4128 \".fc\";\n\tsetAttr \".fc[0:499]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13\n\t\tf 4 12 17 -14 -17\n\t\tmu 0 4 14 15 16 17\n\t\tf 4 13 19 -15 -19\n\t\tmu 0 4 17 16 18 19\n\t\tf 4 14 21 -16 -21\n\t\tmu 0 4 19 18 20 21\n\t\tf 4 15 23 -13 -23\n\t\tmu 0 4 21 20 22 23\n\t\tf 4 -24 -22 -20 -18\n\t\tmu 0 4 15 24 25 16\n\t\tf 4 22 16 18 20\n\t\tmu 0 4 26 14 17 27\n\t\tf 4 24 29 -26 -29\n\t\tmu 0 4 28 29 30 31\n\t\tf 4 25 31 -27 -31\n\t\tmu 0 4 31 30 32 33\n\t\tf 4 26 33 -28 -33\n\t\tmu 0 4 33 32 34 35\n\t\tf 4 27 35 -25 -35\n\t\tmu 0 4 35 34 36 37\n\t\tf 4 -36 -34 -32 -30\n\t\tmu 0 4 29 38 39 30\n\t\tf 4 34 28 30 32\n\t\tmu 0 4 40 28 31 41\n\t\tf 4 36 41 -38 -41\n\t\tmu 0 4 42 43 44 45\n\t\tf 4 37 43 -39 -43\n\t\tmu 0 4 45 44 46 47\n\t\tf 4 38 45 -40 -45\n\t\tmu 0 4 47 46 48 49\n\t\tf 4 39 47 -37 -47\n\t\tmu 0 4 49 48 50 51\n\t\tf 4 -48 -46 -44 -42\n\t\tmu 0 4 43 52 53 44\n\t\tf 4 46 40 42 44\n\t\tmu 0 4 54 42 45 55\n\t\tf 4 48 53 -50 -53\n\t\tmu 0 4 56 57 58 59\n\t\tf 4 49 55 -51 -55\n\t\tmu 0 4 59 58 60 61\n\t\tf 4 50 57 -52 -57\n\t\tmu 0 4 61 60 62 63\n\t\tf 4 51 59 -49 -59\n\t\tmu 0 4 63 62 64 65\n\t\tf 4 -60 -58 -56 -54\n\t\tmu 0 4 57 66 67 58\n\t\tf 4 58 52 54 56\n\t\tmu 0 4 68 56 59 69\n\t\tf 4 60 65 -62 -65\n\t\tmu 0 4 70 71 72 73\n\t\tf 4 61 67 -63 -67\n\t\tmu 0 4 73 72 74 75\n\t\tf 4 62 69 -64 -69\n\t\tmu 0 4 75 74 76 77\n\t\tf 4 63 71 -61 -71\n\t\tmu 0 4 77 76 78 79\n\t\tf 4 -72 -70 -68 -66\n\t\tmu 0 4 71 80 81 72\n\t\tf 4 70 64 66 68\n\t\tmu 0 4 82 70 73 83\n\t\tf 4 72 77 -74 -77\n\t\tmu 0 4 84 85 86 87\n\t\tf 4 73 79 -75 -79\n\t\tmu 0 4 87 86 88 89\n\t\tf 4 74 81 -76 -81\n\t\tmu 0 4 89 88 90 91\n\t\tf 4 75 83 -73 -83\n\t\tmu 0 4 91 90 92 93\n\t\tf 4 -84 -82 -80 -78\n\t\tmu 0 4 85 94 95 86\n\t\tf 4 82 76 78 80\n\t\tmu 0 4 96 84 87 97\n\t\tf 4 84 89 -86 -89\n\t\tmu 0 4 98 99 100 101\n\t\tf 4 85 91 -87 -91\n\t\tmu 0 4 101 100 102 103\n\t\tf 4 86 93 -88 -93\n\t\tmu 0 4 103 102 104 105\n\t\tf 4 87 95 -85 -95\n\t\tmu 0 4 105 104 106 107\n\t\tf 4 -96 -94 -92 -90\n\t\tmu 0 4 99 108 109 100\n\t\tf 4 94 88 90 92\n\t\tmu 0 4 110 98 101 111\n\t\tf 4 96 101 -98 -101\n\t\tmu 0 4 112 113 114 115\n\t\tf 4 97 103 -99 -103\n\t\tmu 0 4 115 114 116 117\n\t\tf 4 98 105 -100 -105\n\t\tmu 0 4 117 116 118 119\n\t\tf 4 99 107 -97 -107\n\t\tmu 0 4 119 118 120 121\n\t\tf 4 -108 -106 -104 -102\n\t\tmu 0 4 113 122 123 114\n\t\tf 4 106 100 102 104\n\t\tmu 0 4 124 112 115 125\n\t\tf 4 108 113 -110 -113\n\t\tmu 0 4 126 127 128 129\n\t\tf 4 109 115 -111 -115\n\t\tmu 0 4 129 128 130 131\n\t\tf 4 110 117 -112 -117\n\t\tmu 0 4 131 130 132 133\n\t\tf 4 111 119 -109 -119\n\t\tmu 0 4 133 132 134 135\n\t\tf 4 -120 -118 -116 -114\n\t\tmu 0 4 127 136 137 128\n\t\tf 4 118 112 114 116\n\t\tmu 0 4 138 126 129 139\n\t\tf 4 120 125 -122 -125\n\t\tmu 0 4 140 141 142 143\n\t\tf 4 121 127 -123 -127\n\t\tmu 0 4 143 142 144 145\n\t\tf 4 122 129 -124 -129\n\t\tmu 0 4 145 144 146 147\n\t\tf 4 123 131 -121 -131\n\t\tmu 0 4 147 146 148 149\n\t\tf 4 -132 -130 -128 -126\n\t\tmu 0 4 141 150 151 142\n\t\tf 4 130 124 126 128\n\t\tmu 0 4 152 140 143 153\n\t\tf 4 132 137 -134 -137\n\t\tmu 0 4 154 155 156 157\n\t\tf 4 133 139 -135 -139\n\t\tmu 0 4 157 156 158 159\n\t\tf 4 134 141 -136 -141\n\t\tmu 0 4 159 158 160 161\n\t\tf 4 135 143 -133 -143\n\t\tmu 0 4 161 160 162 163\n\t\tf 4 -144 -142 -140 -138\n\t\tmu 0 4 155 164 165 156\n\t\tf 4 142 136 138 140\n\t\tmu 0 4 166 154 157 167\n\t\tf 4 144 149 -146 -149\n\t\tmu 0 4 168 169 170 171\n\t\tf 4 145 151 -147 -151\n\t\tmu 0 4 171 170 172 173\n\t\tf 4 146 153 -148 -153\n\t\tmu 0 4 173 172 174 175\n\t\tf 4 147 155 -145 -155\n\t\tmu 0 4 175 174 176 177\n\t\tf 4 -156 -154 -152 -150\n\t\tmu 0 4 169 178 179 170\n\t\tf 4 154 148 150 152\n\t\tmu 0 4 180 168 171 181\n\t\tf 4 156 161 -158 -161\n\t\tmu 0 4 182 183 184 185\n\t\tf 4 157 163 -159 -163\n\t\tmu 0 4 185 184 186 187\n\t\tf 4 158 165 -160 -165\n\t\tmu 0 4 187 186 188 189\n\t\tf 4 159 167 -157 -167\n\t\tmu 0 4 189 188 190 191\n\t\tf 4 -168 -166 -164 -162\n\t\tmu 0 4 183 192 193 184\n\t\tf 4 166 160 162 164\n\t\tmu 0 4 194 182 185 195\n\t\tf 4 168 173 -170 -173\n\t\tmu 0 4 196 197 198 199\n\t\tf 4 169 175 -171 -175\n\t\tmu 0 4 199 198 200 201\n\t\tf 4 170 177 -172 -177\n\t\tmu 0 4 201 200 202 203\n\t\tf 4 171 179 -169 -179\n\t\tmu 0 4 203 202 204 205\n\t\tf 4 -180 -178 -176 -174\n\t\tmu 0 4 197 206 207 198\n\t\tf 4 178 172 174 176\n\t\tmu 0 4 208 196 199 209\n\t\tf 4 180 185 -182 -185\n\t\tmu 0 4 210 211 212 213\n\t\tf 4 181 187 -183 -187\n\t\tmu 0 4 213 212 214 215\n\t\tf 4 182 189 -184 -189\n\t\tmu 0 4 215 214 216 217\n\t\tf 4 183 191 -181 -191\n\t\tmu 0 4 217 216 218 219\n\t\tf 4 -192 -190 -188 -186\n\t\tmu 0 4 211 220 221 212\n\t\tf 4 190 184 186 188\n\t\tmu 0 4 222 210 213 223\n\t\tf 4 192 197 -194 -197\n\t\tmu 0 4 224 225 226 227\n\t\tf 4 193 199 -195 -199\n\t\tmu 0 4 227 226 228 229\n\t\tf 4 194 201 -196 -201\n\t\tmu 0 4 229 228 230 231\n\t\tf 4 195 203 -193 -203\n\t\tmu 0 4 231 230 232 233\n\t\tf 4 -204 -202 -200 -198\n\t\tmu 0 4 225 234 235 226\n\t\tf 4 202 196 198 200\n\t\tmu 0 4 236 224 227 237\n\t\tf 4 204 209 -206 -209\n\t\tmu 0 4 238 239 240 241\n\t\tf 4 205 211 -207 -211\n\t\tmu 0 4 241 240 242 243\n\t\tf 4 206 213 -208 -213\n\t\tmu 0 4 243 242 244 245\n\t\tf 4 207 215 -205 -215\n\t\tmu 0 4 245 244 246 247\n\t\tf 4 -216 -214 -212 -210\n\t\tmu 0 4 239 248 249 240\n\t\tf 4 214 208 210 212\n\t\tmu 0 4 250 238 241 251\n\t\tf 4 216 221 -218 -221\n\t\tmu 0 4 252 253 254 255\n\t\tf 4 217 223 -219 -223\n\t\tmu 0 4 255 254 256 257\n\t\tf 4 218 225 -220 -225\n\t\tmu 0 4 257 256 258 259\n\t\tf 4 219 227 -217 -227\n\t\tmu 0 4 259 258 260 261\n\t\tf 4 -228 -226 -224 -222\n\t\tmu 0 4 253 262 263 254\n\t\tf 4 226 220 222 224\n\t\tmu 0 4 264 252 255 265\n\t\tf 4 228 233 -230 -233\n\t\tmu 0 4 266 267 268 269\n\t\tf 4 229 235 -231 -235\n\t\tmu 0 4 269 268 270 271\n\t\tf 4 230 237 -232 -237\n\t\tmu 0 4 271 270 272 273\n\t\tf 4 231 239 -229 -239\n\t\tmu 0 4 273 272 274 275\n\t\tf 4 -240 -238 -236 -234\n\t\tmu 0 4 267 276 277 268\n\t\tf 4 238 232 234 236\n\t\tmu 0 4 278 266 269 279\n\t\tf 4 240 245 -242 -245\n\t\tmu 0 4 280 281 282 283\n\t\tf 4 241 247 -243 -247\n\t\tmu 0 4 283 282 284 285\n\t\tf 4 242 249 -244 -249\n\t\tmu 0 4 285 284 286 287\n\t\tf 4 243 251 -241 -251\n\t\tmu 0 4 287 286 288 289\n\t\tf 4 -252 -250 -248 -246\n\t\tmu 0 4 281 290 291 282\n\t\tf 4 250 244 246 248\n\t\tmu 0 4 292 280 283 293\n\t\tf 4 252 257 -254 -257\n\t\tmu 0 4 294 295 296 297\n\t\tf 4 253 259 -255 -259\n\t\tmu 0 4 297 296 298 299\n\t\tf 4 254 261 -256 -261\n\t\tmu 0 4 299 298 300 301\n\t\tf 4 255 263 -253 -263\n\t\tmu 0 4 301 300 302 303\n\t\tf 4 -264 -262 -260 -258\n\t\tmu 0 4 295 304 305 296\n\t\tf 4 262 256 258 260\n\t\tmu 0 4 306 294 297 307\n\t\tf 4 264 269 -266 -269\n\t\tmu 0 4 308 309 310 311\n\t\tf 4 265 271 -267 -271\n\t\tmu 0 4 311 310 312 313\n\t\tf 4 266 273 -268 -273\n\t\tmu 0 4 313 312 314 315\n\t\tf 4 267 275 -265 -275\n\t\tmu 0 4 315 314 316 317\n\t\tf 4 -276 -274 -272 -270\n\t\tmu 0 4 309 318 319 310\n\t\tf 4 274 268 270 272\n\t\tmu 0 4 320 308 311 321\n\t\tf 4 276 281 -278 -281\n\t\tmu 0 4 322 323 324 325\n\t\tf 4 277 283 -279 -283\n\t\tmu 0 4 325 324 326 327\n\t\tf 4 278 285 -280 -285\n\t\tmu 0 4 327 326 328 329\n\t\tf 4 279 287 -277 -287\n\t\tmu 0 4 329 328 330 331\n\t\tf 4 -288 -286 -284 -282\n\t\tmu 0 4 323 332 333 324\n\t\tf 4 286 280 282 284\n\t\tmu 0 4 334 322 325 335\n\t\tf 4 288 293 -290 -293\n\t\tmu 0 4 336 337 338 339\n\t\tf 4 289 295 -291 -295\n\t\tmu 0 4 339 338 340 341\n\t\tf 4 290 297 -292 -297\n\t\tmu 0 4 341 340 342 343\n\t\tf 4 291 299 -289 -299\n\t\tmu 0 4 343 342 344 345\n\t\tf 4 -300 -298 -296 -294\n\t\tmu 0 4 337 346 347 338\n\t\tf 4 298 292 294 296\n\t\tmu 0 4 348 336 339 349\n\t\tf 4 300 305 -302 -305\n\t\tmu 0 4 350 351 352 353\n\t\tf 4 301 307 -303 -307\n\t\tmu 0 4 353 352 354 355\n\t\tf 4 302 309 -304 -309\n\t\tmu 0 4 355 354 356 357\n\t\tf 4 303 311 -301 -311\n\t\tmu 0 4 357 356 358 359\n\t\tf 4 -312 -310 -308 -306\n\t\tmu 0 4 351 360 361 352\n\t\tf 4 310 304 306 308\n\t\tmu 0 4 362 350 353 363\n\t\tf 4 312 317 -314 -317\n\t\tmu 0 4 364 365 366 367\n\t\tf 4 313 319 -315 -319\n\t\tmu 0 4 367 366 368 369\n\t\tf 4 314 321 -316 -321\n\t\tmu 0 4 369 368 370 371\n\t\tf 4 315 323 -313 -323\n\t\tmu 0 4 371 370 372 373\n\t\tf 4 -324 -322 -320 -318\n\t\tmu 0 4 365 374 375 366\n\t\tf 4 322 316 318 320\n\t\tmu 0 4 376 364 367 377\n\t\tf 4 324 329 -326 -329\n\t\tmu 0 4 378 379 380 381\n\t\tf 4 325 331 -327 -331\n\t\tmu 0 4 381 380 382 383\n\t\tf 4 326 333 -328 -333\n\t\tmu 0 4 383 382 384 385\n\t\tf 4 327 335 -325 -335\n\t\tmu 0 4 385 384 386 387\n\t\tf 4 -336 -334 -332 -330\n\t\tmu 0 4 379 388 389 380\n\t\tf 4 334 328 330 332\n\t\tmu 0 4 390 378 381 391\n\t\tf 4 336 341 -338 -341\n\t\tmu 0 4 392 393 394 395\n\t\tf 4 337 343 -339 -343\n\t\tmu 0 4 395 394 396 397\n\t\tf 4 338 345 -340 -345\n\t\tmu 0 4 397 396 398 399\n\t\tf 4 339 347 -337 -347\n\t\tmu 0 4 399 398 400 401\n\t\tf 4 -348 -346 -344 -342\n\t\tmu 0 4 393 402 403 394\n\t\tf 4 346 340 342 344\n\t\tmu 0 4 404 392 395 405\n\t\tf 4 348 353 -350 -353\n\t\tmu 0 4 406 407 408 409\n\t\tf 4 349 355 -351 -355\n\t\tmu 0 4 409 408 410 411\n\t\tf 4 350 357 -352 -357\n\t\tmu 0 4 411 410 412 413\n\t\tf 4 351 359 -349 -359\n\t\tmu 0 4 413 412 414 415\n\t\tf 4 -360 -358 -356 -354\n\t\tmu 0 4 407 416 417 408\n\t\tf 4 358 352 354 356\n\t\tmu 0 4 418 406 409 419\n\t\tf 4 360 365 -362 -365\n\t\tmu 0 4 420 421 422 423\n\t\tf 4 361 367 -363 -367\n\t\tmu 0 4 423 422 424 425\n\t\tf 4 362 369 -364 -369\n\t\tmu 0 4 425 424 426 427\n\t\tf 4 363 371 -361 -371\n\t\tmu 0 4 427 426 428 429\n\t\tf 4 -372 -370 -368 -366\n\t\tmu 0 4 421 430 431 422\n\t\tf 4 370 364 366 368\n\t\tmu 0 4 432 420 423 433\n\t\tf 4 372 377 -374 -377\n\t\tmu 0 4 434 435 436 437\n\t\tf 4 373 379 -375 -379\n\t\tmu 0 4 437 436 438 439\n\t\tf 4 374 381 -376 -381\n\t\tmu 0 4 439 438 440 441\n\t\tf 4 375 383 -373 -383\n\t\tmu 0 4 441 440 442 443\n\t\tf 4 -384 -382 -380 -378\n\t\tmu 0 4 435 444 445 436\n\t\tf 4 382 376 378 380\n\t\tmu 0 4 446 434 437 447\n\t\tf 4 384 389 -386 -389\n\t\tmu 0 4 448 449 450 451\n\t\tf 4 385 391 -387 -391\n\t\tmu 0 4 451 450 452 453\n\t\tf 4 386 393 -388 -393\n\t\tmu 0 4 453 452 454 455\n\t\tf 4 387 395 -385 -395\n\t\tmu 0 4 455 454 456 457\n\t\tf 4 -396 -394 -392 -390\n\t\tmu 0 4 449 458 459 450\n\t\tf 4 394 388 390 392\n\t\tmu 0 4 460 448 451 461\n\t\tf 4 396 401 -398 -401\n\t\tmu 0 4 462 463 464 465\n\t\tf 4 397 403 -399 -403\n\t\tmu 0 4 465 464 466 467\n\t\tf 4 398 405 -400 -405\n\t\tmu 0 4 467 466 468 469\n\t\tf 4 399 407 -397 -407\n\t\tmu 0 4 469 468 470 471\n\t\tf 4 -408 -406 -404 -402\n\t\tmu 0 4 463 472 473 464\n\t\tf 4 406 400 402 404\n\t\tmu 0 4 474 462 465 475\n\t\tf 4 408 413 -410 -413\n\t\tmu 0 4 476 477 478 479\n\t\tf 4 409 415 -411 -415\n\t\tmu 0 4 479 478 480 481\n\t\tf 4 410 417 -412 -417\n\t\tmu 0 4 481 480 482 483\n\t\tf 4 411 419 -409 -419\n\t\tmu 0 4 483 482 484 485\n\t\tf 4 -420 -418 -416 -414\n\t\tmu 0 4 477 486 487 478\n\t\tf 4 418 412 414 416\n\t\tmu 0 4 488 476 479 489\n\t\tf 4 420 425 -422 -425\n\t\tmu 0 4 490 491 492 493\n\t\tf 4 421 427 -423 -427\n\t\tmu 0 4 493 492 494 495\n\t\tf 4 422 429 -424 -429\n\t\tmu 0 4 495 494 496 497\n\t\tf 4 423 431 -421 -431\n\t\tmu 0 4 497 496 498 499\n\t\tf 4 -432 -430 -428 -426\n\t\tmu 0 4 491 500 501 492\n\t\tf 4 430 424 426 428\n\t\tmu 0 4 502 490 493 503\n\t\tf 4 432 437 -434 -437\n\t\tmu 0 4 504 505 506 507\n\t\tf 4 433 439 -435 -439\n\t\tmu 0 4 507 506 508 509\n\t\tf 4 434 441 -436 -441\n\t\tmu 0 4 509 508 510 511\n\t\tf 4 435 443 -433 -443\n\t\tmu 0 4 511 510 512 513\n\t\tf 4 -444 -442 -440 -438\n\t\tmu 0 4 505 514 515 506\n\t\tf 4 442 436 438 440\n\t\tmu 0 4 516 504 507 517\n\t\tf 4 444 449 -446 -449\n\t\tmu 0 4 518 519 520 521\n\t\tf 4 445 451 -447 -451\n\t\tmu 0 4 521 520 522 523\n\t\tf 4 446 453 -448 -453\n\t\tmu 0 4 523 522 524 525\n\t\tf 4 447 455 -445 -455\n\t\tmu 0 4 525 524 526 527\n\t\tf 4 -456 -454 -452 -450\n\t\tmu 0 4 519 528 529 520\n\t\tf 4 454 448 450 452\n\t\tmu 0 4 530 518 521 531\n\t\tf 4 456 461 -458 -461\n\t\tmu 0 4 532 533 534 535\n\t\tf 4 457 463 -459 -463\n\t\tmu 0 4 535 534 536 537\n\t\tf 4 458 465 -460 -465\n\t\tmu 0 4 537 536 538 539\n\t\tf 4 459 467 -457 -467\n\t\tmu 0 4 539 538 540 541\n\t\tf 4 -468 -466 -464 -462\n\t\tmu 0 4 533 542 543 534\n\t\tf 4 466 460 462 464\n\t\tmu 0 4 544 532 535 545\n\t\tf 4 468 473 -470 -473\n\t\tmu 0 4 546 547 548 549\n\t\tf 4 469 475 -471 -475\n\t\tmu 0 4 549 548 550 551\n\t\tf 4 470 477 -472 -477\n\t\tmu 0 4 551 550 552 553\n\t\tf 4 471 479 -469 -479\n\t\tmu 0 4 553 552 554 555\n\t\tf 4 -480 -478 -476 -474\n\t\tmu 0 4 547 556 557 548\n\t\tf 4 478 472 474 476\n\t\tmu 0 4 558 546 549 559\n\t\tf 4 480 485 -482 -485\n\t\tmu 0 4 560 561 562 563\n\t\tf 4 481 487 -483 -487\n\t\tmu 0 4 563 562 564 565\n\t\tf 4 482 489 -484 -489\n\t\tmu 0 4 565 564 566 567\n\t\tf 4 483 491 -481 -491\n\t\tmu 0 4 567 566 568 569\n\t\tf 4 -492 -490 -488 -486\n\t\tmu 0 4 561 570 571 562\n\t\tf 4 490 484 486 488\n\t\tmu 0 4 572 560 563 573\n\t\tf 4 492 497 -494 -497\n\t\tmu 0 4 574 575 576 577\n\t\tf 4 493 499 -495 -499\n\t\tmu 0 4 577 576 578 579\n\t\tf 4 494 501 -496 -501\n\t\tmu 0 4 579 578 580 581\n\t\tf 4 495 503 -493 -503\n\t\tmu 0 4 581 580 582 583\n\t\tf 4 -504 -502 -500 -498\n\t\tmu 0 4 575 584 585 576\n\t\tf 4 502 496 498 500\n\t\tmu 0 4 586 574 577 587\n\t\tf 4 504 509 -506 -509\n\t\tmu 0 4 588 589 590 591\n\t\tf 4 505 511 -507 -511\n\t\tmu 0 4 591 590 592 593\n\t\tf 4 506 513 -508 -513\n\t\tmu 0 4 593 592 594 595\n\t\tf 4 507 515 -505 -515\n\t\tmu 0 4 595 594 596 597\n\t\tf 4 -516 -514 -512 -510\n\t\tmu 0 4 589 598 599 590\n\t\tf 4 514 508 510 512\n\t\tmu 0 4 600 588 591 601\n\t\tf 4 516 521 -518 -521\n\t\tmu 0 4 602 603 604 605\n\t\tf 4 517 523 -519 -523\n\t\tmu 0 4 605 604 606 607\n\t\tf 4 518 525 -520 -525\n\t\tmu 0 4 607 606 608 609\n\t\tf 4 519 527 -517 -527\n\t\tmu 0 4 609 608 610 611\n\t\tf 4 -528 -526 -524 -522\n\t\tmu 0 4 603 612 613 604\n\t\tf 4 526 520 522 524\n\t\tmu 0 4 614 602 605 615\n\t\tf 4 528 533 -530 -533\n\t\tmu 0 4 616 617 618 619\n\t\tf 4 529 535 -531 -535\n\t\tmu 0 4 619 618 620 621\n\t\tf 4 530 537 -532 -537\n\t\tmu 0 4 621 620 622 623\n\t\tf 4 531 539 -529 -539\n\t\tmu 0 4 623 622 624 625\n\t\tf 4 -540 -538 -536 -534\n\t\tmu 0 4 617 626 627 618\n\t\tf 4 538 532 534 536\n\t\tmu 0 4 628 616 619 629\n\t\tf 4 540 545 -542 -545\n\t\tmu 0 4 630 631 632 633\n\t\tf 4 541 547 -543 -547\n\t\tmu 0 4 633 632 634 635\n\t\tf 4 542 549 -544 -549\n\t\tmu 0 4 635 634 636 637\n\t\tf 4 543 551 -541 -551\n\t\tmu 0 4 637 636 638 639\n\t\tf 4 -552 -550 -548 -546\n\t\tmu 0 4 631 640 641 632\n\t\tf 4 550 544 546 548\n\t\tmu 0 4 642 630 633 643\n\t\tf 4 552 557 -554 -557\n\t\tmu 0 4 644 645 646 647\n\t\tf 4 553 559 -555 -559\n\t\tmu 0 4 647 646 648 649\n\t\tf 4 554 561 -556 -561\n\t\tmu 0 4 649 648 650 651\n\t\tf 4 555 563 -553 -563\n\t\tmu 0 4 651 650 652 653\n\t\tf 4 -564 -562 -560 -558\n\t\tmu 0 4 645 654 655 646\n\t\tf 4 562 556 558 560\n\t\tmu 0 4 656 644 647 657\n\t\tf 4 564 569 -566 -569\n\t\tmu 0 4 658 659 660 661\n\t\tf 4 565 571 -567 -571\n\t\tmu 0 4 661 660 662 663\n\t\tf 4 566 573 -568 -573\n\t\tmu 0 4 663 662 664 665\n\t\tf 4 567 575 -565 -575\n\t\tmu 0 4 665 664 666 667\n\t\tf 4 -576 -574 -572 -570\n\t\tmu 0 4 659 668 669 660\n\t\tf 4 574 568 570 572\n\t\tmu 0 4 670 658 661 671\n\t\tf 4 576 581 -578 -581\n\t\tmu 0 4 672 673 674 675\n\t\tf 4 577 583 -579 -583\n\t\tmu 0 4 675 674 676 677\n\t\tf 4 578 585 -580 -585\n\t\tmu 0 4 677 676 678 679\n\t\tf 4 579 587 -577 -587\n\t\tmu 0 4 679 678 680 681\n\t\tf 4 -588 -586 -584 -582\n\t\tmu 0 4 673 682 683 674\n\t\tf 4 586 580 582 584\n\t\tmu 0 4 684 672 675 685\n\t\tf 4 588 593 -590 -593\n\t\tmu 0 4 686 687 688 689\n\t\tf 4 589 595 -591 -595\n\t\tmu 0 4 689 688 690 691\n\t\tf 4 590 597 -592 -597\n\t\tmu 0 4 691 690 692 693\n\t\tf 4 591 599 -589 -599\n\t\tmu 0 4 693 692 694 695\n\t\tf 4 -600 -598 -596 -594\n\t\tmu 0 4 687 696 697 688\n\t\tf 4 598 592 594 596\n\t\tmu 0 4 698 686 689 699\n\t\tf 4 600 605 -602 -605\n\t\tmu 0 4 700 701 702 703\n\t\tf 4 601 607 -603 -607\n\t\tmu 0 4 703 702 704 705\n\t\tf 4 602 609 -604 -609\n\t\tmu 0 4 705 704 706 707\n\t\tf 4 603 611 -601 -611\n\t\tmu 0 4 707 706 708 709\n\t\tf 4 -612 -610 -608 -606\n\t\tmu 0 4 701 710 711 702\n\t\tf 4 610 604 606 608\n\t\tmu 0 4 712 700 703 713\n\t\tf 4 612 617 -614 -617\n\t\tmu 0 4 714 715 716 717\n\t\tf 4 613 619 -615 -619\n\t\tmu 0 4 717 716 718 719\n\t\tf 4 614 621 -616 -621\n\t\tmu 0 4 719 718 720 721\n\t\tf 4 615 623 -613 -623\n\t\tmu 0 4 721 720 722 723\n\t\tf 4 -624 -622 -620 -618\n\t\tmu 0 4 715 724 725 716\n\t\tf 4 622 616 618 620\n\t\tmu 0 4 726 714 717 727\n\t\tf 4 624 629 -626 -629\n\t\tmu 0 4 728 729 730 731\n\t\tf 4 625 631 -627 -631\n\t\tmu 0 4 731 730 732 733\n\t\tf 4 626 633 -628 -633\n\t\tmu 0 4 733 732 734 735\n\t\tf 4 627 635 -625 -635\n\t\tmu 0 4 735 734 736 737\n\t\tf 4 -636 -634 -632 -630\n\t\tmu 0 4 729 738 739 730\n\t\tf 4 634 628 630 632\n\t\tmu 0 4 740 728 731 741\n\t\tf 4 636 641 -638 -641\n\t\tmu 0 4 742 743 744 745\n\t\tf 4 637 643 -639 -643\n\t\tmu 0 4 745 744 746 747\n\t\tf 4 638 645 -640 -645\n\t\tmu 0 4 747 746 748 749\n\t\tf 4 639 647 -637 -647\n\t\tmu 0 4 749 748 750 751\n\t\tf 4 -648 -646 -644 -642\n\t\tmu 0 4 743 752 753 744\n\t\tf 4 646 640 642 644\n\t\tmu 0 4 754 742 745 755\n\t\tf 4 648 653 -650 -653\n\t\tmu 0 4 756 757 758 759\n\t\tf 4 649 655 -651 -655\n\t\tmu 0 4 759 758 760 761\n\t\tf 4 650 657 -652 -657\n\t\tmu 0 4 761 760 762 763\n\t\tf 4 651 659 -649 -659\n\t\tmu 0 4 763 762 764 765\n\t\tf 4 -660 -658 -656 -654\n\t\tmu 0 4 757 766 767 758\n\t\tf 4 658 652 654 656\n\t\tmu 0 4 768 756 759 769\n\t\tf 4 660 665 -662 -665\n\t\tmu 0 4 770 771 772 773\n\t\tf 4 661 667 -663 -667\n\t\tmu 0 4 773 772 774 775\n\t\tf 4 662 669 -664 -669\n\t\tmu 0 4 775 774 776 777\n\t\tf 4 663 671 -661 -671\n\t\tmu 0 4 777 776 778 779\n\t\tf 4 -672 -670 -668 -666\n\t\tmu 0 4 771 780 781 772\n\t\tf 4 670 664 666 668\n\t\tmu 0 4 782 770 773 783\n\t\tf 4 672 677 -674 -677\n\t\tmu 0 4 784 785 786 787\n\t\tf 4 673 679 -675 -679\n\t\tmu 0 4 787 786 788 789\n\t\tf 4 674 681 -676 -681\n\t\tmu 0 4 789 788 790 791\n\t\tf 4 675 683 -673 -683\n\t\tmu 0 4 791 790 792 793\n\t\tf 4 -684 -682 -680 -678\n\t\tmu 0 4 785 794 795 786\n\t\tf 4 682 676 678 680\n\t\tmu 0 4 796 784 787 797\n\t\tf 4 684 689 -686 -689\n\t\tmu 0 4 798 799 800 801\n\t\tf 4 685 691 -687 -691\n\t\tmu 0 4 801 800 802 803\n\t\tf 4 686 693 -688 -693\n\t\tmu 0 4 803 802 804 805\n\t\tf 4 687 695 -685 -695\n\t\tmu 0 4 805 804 806 807\n\t\tf 4 -696 -694 -692 -690\n\t\tmu 0 4 799 808 809 800\n\t\tf 4 694 688 690 692\n\t\tmu 0 4 810 798 801 811\n\t\tf 4 696 701 -698 -701\n\t\tmu 0 4 812 813 814 815\n\t\tf 4 697 703 -699 -703\n\t\tmu 0 4 815 814 816 817\n\t\tf 4 698 705 -700 -705\n\t\tmu 0 4 817 816 818 819\n\t\tf 4 699 707 -697 -707\n\t\tmu 0 4 819 818 820 821\n\t\tf 4 -708 -706 -704 -702\n\t\tmu 0 4 813 822 823 814\n\t\tf 4 706 700 702 704\n\t\tmu 0 4 824 812 815 825\n\t\tf 4 708 713 -710 -713\n\t\tmu 0 4 826 827 828 829\n\t\tf 4 709 715 -711 -715\n\t\tmu 0 4 829 828 830 831\n\t\tf 4 710 717 -712 -717\n\t\tmu 0 4 831 830 832 833\n\t\tf 4 711 719 -709 -719\n\t\tmu 0 4 833 832 834 835\n\t\tf 4 -720 -718 -716 -714\n\t\tmu 0 4 827 836 837 828\n\t\tf 4 718 712 714 716\n\t\tmu 0 4 838 826 829 839\n\t\tf 4 720 725 -722 -725\n\t\tmu 0 4 840 841 842 843\n\t\tf 4 721 727 -723 -727\n\t\tmu 0 4 843 842 844 845\n\t\tf 4 722 729 -724 -729\n\t\tmu 0 4 845 844 846 847\n\t\tf 4 723 731 -721 -731\n\t\tmu 0 4 847 846 848 849\n\t\tf 4 -732 -730 -728 -726\n\t\tmu 0 4 841 850 851 842\n\t\tf 4 730 724 726 728\n\t\tmu 0 4 852 840 843 853\n\t\tf 4 732 737 -734 -737\n\t\tmu 0 4 854 855 856 857\n\t\tf 4 733 739 -735 -739\n\t\tmu 0 4 857 856 858 859\n\t\tf 4 734 741 -736 -741\n\t\tmu 0 4 859 858 860 861\n\t\tf 4 735 743 -733 -743\n\t\tmu 0 4 861 860 862 863\n\t\tf 4 -744 -742 -740 -738\n\t\tmu 0 4 855 864 865 856\n\t\tf 4 742 736 738 740\n\t\tmu 0 4 866 854 857 867\n\t\tf 4 744 749 -746 -749\n\t\tmu 0 4 868 869 870 871\n\t\tf 4 745 751 -747 -751\n\t\tmu 0 4 871 870 872 873\n\t\tf 4 746 753 -748 -753\n\t\tmu 0 4 873 872 874 875\n\t\tf 4 747 755 -745 -755\n\t\tmu 0 4 875 874 876 877\n\t\tf 4 -756 -754 -752 -750\n\t\tmu 0 4 869 878 879 870\n\t\tf 4 754 748 750 752\n\t\tmu 0 4 880 868 871 881\n\t\tf 4 756 761 -758 -761\n\t\tmu 0 4 882 883 884 885\n\t\tf 4 757 763 -759 -763\n\t\tmu 0 4 885 884 886 887\n\t\tf 4 758 765 -760 -765\n\t\tmu 0 4 887 886 888 889\n\t\tf 4 759 767 -757 -767\n\t\tmu 0 4 889 888 890 891\n\t\tf 4 -768 -766 -764 -762\n\t\tmu 0 4 883 892 893 884\n\t\tf 4 766 760 762 764\n\t\tmu 0 4 894 882 885 895\n\t\tf 4 768 773 -770 -773\n\t\tmu 0 4 896 897 898 899\n\t\tf 4 769 775 -771 -775\n\t\tmu 0 4 899 898 900 901\n\t\tf 4 770 777 -772 -777\n\t\tmu 0 4 901 900 902 903\n\t\tf 4 771 779 -769 -779\n\t\tmu 0 4 903 902 904 905\n\t\tf 4 -780 -778 -776 -774\n\t\tmu 0 4 897 906 907 898\n\t\tf 4 778 772 774 776\n\t\tmu 0 4 908 896 899 909\n\t\tf 4 780 785 -782 -785\n\t\tmu 0 4 910 911 912 913\n\t\tf 4 781 787 -783 -787\n\t\tmu 0 4 913 912 914 915\n\t\tf 4 782 789 -784 -789\n\t\tmu 0 4 915 914 916 917\n\t\tf 4 783 791 -781 -791\n\t\tmu 0 4 917 916 918 919\n\t\tf 4 -792 -790 -788 -786\n\t\tmu 0 4 911 920 921 912\n\t\tf 4 790 784 786 788\n\t\tmu 0 4 922 910 913 923\n\t\tf 4 792 797 -794 -797\n\t\tmu 0 4 924 925 926 927\n\t\tf 4 793 799 -795 -799\n\t\tmu 0 4 927 926 928 929\n\t\tf 4 794 801 -796 -801\n\t\tmu 0 4 929 928 930 931\n\t\tf 4 795 803 -793 -803\n\t\tmu 0 4 931 930 932 933\n\t\tf 4 -804 -802 -800 -798\n\t\tmu 0 4 925 934 935 926\n\t\tf 4 802 796 798 800\n\t\tmu 0 4 936 924 927 937\n\t\tf 4 804 809 -806 -809\n\t\tmu 0 4 938 939 940 941\n\t\tf 4 805 811 -807 -811\n\t\tmu 0 4 941 940 942 943\n\t\tf 4 806 813 -808 -813\n\t\tmu 0 4 943 942 944 945\n\t\tf 4 807 815 -805 -815\n\t\tmu 0 4 945 944 946 947\n\t\tf 4 -816 -814 -812 -810\n\t\tmu 0 4 939 948 949 940\n\t\tf 4 814 808 810 812\n\t\tmu 0 4 950 938 941 951\n\t\tf 4 816 821 -818 -821\n\t\tmu 0 4 952 953 954 955\n\t\tf 4 817 823 -819 -823\n\t\tmu 0 4 955 954 956 957\n\t\tf 4 818 825 -820 -825\n\t\tmu 0 4 957 956 958 959\n\t\tf 4 819 827 -817 -827\n\t\tmu 0 4 959 958 960 961\n\t\tf 4 -828 -826 -824 -822\n\t\tmu 0 4 953 962 963 954\n\t\tf 4 826 820 822 824\n\t\tmu 0 4 964 952 955 965\n\t\tf 4 828 833 -830 -833\n\t\tmu 0 4 966 967 968 969\n\t\tf 4 829 835 -831 -835\n\t\tmu 0 4 969 968 970 971\n\t\tf 4 830 837 -832 -837\n\t\tmu 0 4 971 970 972 973\n\t\tf 4 831 839 -829 -839\n\t\tmu 0 4 973 972 974 975\n\t\tf 4 -840 -838 -836 -834\n\t\tmu 0 4 967 976 977 968\n\t\tf 4 838 832 834 836\n\t\tmu 0 4 978 966 969 979\n\t\tf 4 840 845 -842 -845\n\t\tmu 0 4 980 981 982 983\n\t\tf 4 841 847 -843 -847\n\t\tmu 0 4 983 982 984 985\n\t\tf 4 842 849 -844 -849\n\t\tmu 0 4 985 984 986 987\n\t\tf 4 843 851 -841 -851\n\t\tmu 0 4 987 986 988 989\n\t\tf 4 -852 -850 -848 -846\n\t\tmu 0 4 981 990 991 982\n\t\tf 4 850 844 846 848\n\t\tmu 0 4 992 980 983 993\n\t\tf 4 852 857 -854 -857\n\t\tmu 0 4 994 995 996 997\n\t\tf 4 853 859 -855 -859\n\t\tmu 0 4 997 996 998 999\n\t\tf 4 854 861 -856 -861\n\t\tmu 0 4 999 998 1000 1001\n\t\tf 4 855 863 -853 -863\n\t\tmu 0 4 1001 1000 1002 1003\n\t\tf 4 -864 -862 -860 -858\n\t\tmu 0 4 995 1004 1005 996\n\t\tf 4 862 856 858 860\n\t\tmu 0 4 1006 994 997 1007\n\t\tf 4 864 869 -866 -869\n\t\tmu 0 4 1008 1009 1010 1011\n\t\tf 4 865 871 -867 -871\n\t\tmu 0 4 1011 1010 1012 1013\n\t\tf 4 866 873 -868 -873\n\t\tmu 0 4 1013 1012 1014 1015\n\t\tf 4 867 875 -865 -875\n\t\tmu 0 4 1015 1014 1016 1017\n\t\tf 4 -876 -874 -872 -870\n\t\tmu 0 4 1009 1018 1019 1010\n\t\tf 4 874 868 870 872\n\t\tmu 0 4 1020 1008 1011 1021\n\t\tf 4 876 881 -878 -881\n\t\tmu 0 4 1022 1023 1024 1025\n\t\tf 4 877 883 -879 -883\n\t\tmu 0 4 1025 1024 1026 1027\n\t\tf 4 878 885 -880 -885\n\t\tmu 0 4 1027 1026 1028 1029\n\t\tf 4 879 887 -877 -887\n\t\tmu 0 4 1029 1028 1030 1031\n\t\tf 4 -888 -886 -884 -882\n\t\tmu 0 4 1023 1032 1033 1024\n\t\tf 4 886 880 882 884\n\t\tmu 0 4 1034 1022 1025 1035\n\t\tf 4 888 893 -890 -893\n\t\tmu 0 4 1036 1037 1038 1039\n\t\tf 4 889 895 -891 -895\n\t\tmu 0 4 1039 1038 1040 1041\n\t\tf 4 890 897 -892 -897\n\t\tmu 0 4 1041 1040 1042 1043\n\t\tf 4 891 899 -889 -899\n\t\tmu 0 4 1043 1042 1044 1045\n\t\tf 4 -900 -898 -896 -894\n\t\tmu 0 4 1037 1046 1047 1038\n\t\tf 4 898 892 894 896\n\t\tmu 0 4 1048 1036 1039 1049\n\t\tf 4 900 905 -902 -905\n\t\tmu 0 4 1050 1051 1052 1053\n\t\tf 4 901 907 -903 -907\n\t\tmu 0 4 1053 1052 1054 1055\n\t\tf 4 902 909 -904 -909\n\t\tmu 0 4 1055 1054 1056 1057\n\t\tf 4 903 911 -901 -911\n\t\tmu 0 4 1057 1056 1058 1059\n\t\tf 4 -912 -910 -908 -906\n\t\tmu 0 4 1051 1060 1061 1052\n\t\tf 4 910 904 906 908\n\t\tmu 0 4 1062 1050 1053 1063\n\t\tf 4 912 917 -914 -917\n\t\tmu 0 4 1064 1065 1066 1067\n\t\tf 4 913 919 -915 -919\n\t\tmu 0 4 1067 1066 1068 1069\n\t\tf 4 914 921 -916 -921\n\t\tmu 0 4 1069 1068 1070 1071\n\t\tf 4 915 923 -913 -923\n\t\tmu 0 4 1071 1070 1072 1073\n\t\tf 4 -924 -922 -920 -918\n\t\tmu 0 4 1065 1074 1075 1066\n\t\tf 4 922 916 918 920\n\t\tmu 0 4 1076 1064 1067 1077\n\t\tf 4 924 929 -926 -929\n\t\tmu 0 4 1078 1079 1080 1081\n\t\tf 4 925 931 -927 -931\n\t\tmu 0 4 1081 1080 1082 1083\n\t\tf 4 926 933 -928 -933\n\t\tmu 0 4 1083 1082 1084 1085\n\t\tf 4 927 935 -925 -935\n\t\tmu 0 4 1085 1084 1086 1087\n\t\tf 4 -936 -934 -932 -930\n\t\tmu 0 4 1079 1088 1089 1080\n\t\tf 4 934 928 930 932\n\t\tmu 0 4 1090 1078 1081 1091\n\t\tf 4 936 941 -938 -941\n\t\tmu 0 4 1092 1093 1094 1095\n\t\tf 4 937 943 -939 -943\n\t\tmu 0 4 1095 1094 1096 1097\n\t\tf 4 938 945 -940 -945\n\t\tmu 0 4 1097 1096 1098 1099\n\t\tf 4 939 947 -937 -947\n\t\tmu 0 4 1099 1098 1100 1101\n\t\tf 4 -948 -946 -944 -942\n\t\tmu 0 4 1093 1102 1103 1094\n\t\tf 4 946 940 942 944\n\t\tmu 0 4 1104 1092 1095 1105\n\t\tf 4 948 953 -950 -953\n\t\tmu 0 4 1106 1107 1108 1109\n\t\tf 4 949 955 -951 -955\n\t\tmu 0 4 1109 1108 1110 1111\n\t\tf 4 950 957 -952 -957\n\t\tmu 0 4 1111 1110 1112 1113\n\t\tf 4 951 959 -949 -959\n\t\tmu 0 4 1113 1112 1114 1115\n\t\tf 4 -960 -958 -956 -954\n\t\tmu 0 4 1107 1116 1117 1108\n\t\tf 4 958 952 954 956\n\t\tmu 0 4 1118 1106 1109 1119\n\t\tf 4 960 965 -962 -965\n\t\tmu 0 4 1120 1121 1122 1123\n\t\tf 4 961 967 -963 -967\n\t\tmu 0 4 1123 1122 1124 1125\n\t\tf 4 962 969 -964 -969\n\t\tmu 0 4 1125 1124 1126 1127\n\t\tf 4 963 971 -961 -971\n\t\tmu 0 4 1127 1126 1128 1129\n\t\tf 4 -972 -970 -968 -966\n\t\tmu 0 4 1121 1130 1131 1122\n\t\tf 4 970 964 966 968\n\t\tmu 0 4 1132 1120 1123 1133\n\t\tf 4 972 977 -974 -977\n\t\tmu 0 4 1134 1135 1136 1137\n\t\tf 4 973 979 -975 -979\n\t\tmu 0 4 1137 1136 1138 1139\n\t\tf 4 974 981 -976 -981\n\t\tmu 0 4 1139 1138 1140 1141\n\t\tf 4 975 983 -973 -983\n\t\tmu 0 4 1141 1140 1142 1143\n\t\tf 4 -984 -982 -980 -978\n\t\tmu 0 4 1135 1144 1145 1136\n\t\tf 4 982 976 978 980\n\t\tmu 0 4 1146 1134 1137 1147\n\t\tf 4 984 989 -986 -989\n\t\tmu 0 4 1148 1149 1150 1151\n\t\tf 4 985 991 -987 -991\n\t\tmu 0 4 1151 1150 1152 1153\n\t\tf 4 986 993 -988 -993\n\t\tmu 0 4 1153 1152 1154 1155\n\t\tf 4 987 995 -985 -995\n\t\tmu 0 4 1155 1154 1156 1157\n\t\tf 4 -996 -994 -992 -990\n\t\tmu 0 4 1149 1158 1159 1150\n\t\tf 4 994 988 990 992\n\t\tmu 0 4 1160 1148 1151 1161\n\t\tf 4 996 1001 -998 -1001\n\t\tmu 0 4 1162 1163 1164 1165\n\t\tf 4 997 1003 -999 -1003\n\t\tmu 0 4 1165 1164 1166 1167;\n\tsetAttr \".fc[500:999]\"\n\t\tf 4 998 1005 -1000 -1005\n\t\tmu 0 4 1167 1166 1168 1169\n\t\tf 4 999 1007 -997 -1007\n\t\tmu 0 4 1169 1168 1170 1171\n\t\tf 4 -1008 -1006 -1004 -1002\n\t\tmu 0 4 1163 1172 1173 1164\n\t\tf 4 1006 1000 1002 1004\n\t\tmu 0 4 1174 1162 1165 1175\n\t\tf 4 1008 1013 -1010 -1013\n\t\tmu 0 4 1176 1177 1178 1179\n\t\tf 4 1009 1015 -1011 -1015\n\t\tmu 0 4 1179 1178 1180 1181\n\t\tf 4 1010 1017 -1012 -1017\n\t\tmu 0 4 1181 1180 1182 1183\n\t\tf 4 1011 1019 -1009 -1019\n\t\tmu 0 4 1183 1182 1184 1185\n\t\tf 4 -1020 -1018 -1016 -1014\n\t\tmu 0 4 1177 1186 1187 1178\n\t\tf 4 1018 1012 1014 1016\n\t\tmu 0 4 1188 1176 1179 1189\n\t\tf 4 1020 1025 -1022 -1025\n\t\tmu 0 4 1190 1191 1192 1193\n\t\tf 4 1021 1027 -1023 -1027\n\t\tmu 0 4 1193 1192 1194 1195\n\t\tf 4 1022 1029 -1024 -1029\n\t\tmu 0 4 1195 1194 1196 1197\n\t\tf 4 1023 1031 -1021 -1031\n\t\tmu 0 4 1197 1196 1198 1199\n\t\tf 4 -1032 -1030 -1028 -1026\n\t\tmu 0 4 1191 1200 1201 1192\n\t\tf 4 1030 1024 1026 1028\n\t\tmu 0 4 1202 1190 1193 1203\n\t\tf 4 1032 1037 -1034 -1037\n\t\tmu 0 4 1204 1205 1206 1207\n\t\tf 4 1033 1039 -1035 -1039\n\t\tmu 0 4 1207 1206 1208 1209\n\t\tf 4 1034 1041 -1036 -1041\n\t\tmu 0 4 1209 1208 1210 1211\n\t\tf 4 1035 1043 -1033 -1043\n\t\tmu 0 4 1211 1210 1212 1213\n\t\tf 4 -1044 -1042 -1040 -1038\n\t\tmu 0 4 1205 1214 1215 1206\n\t\tf 4 1042 1036 1038 1040\n\t\tmu 0 4 1216 1204 1207 1217\n\t\tf 4 1044 1049 -1046 -1049\n\t\tmu 0 4 1218 1219 1220 1221\n\t\tf 4 1045 1051 -1047 -1051\n\t\tmu 0 4 1221 1220 1222 1223\n\t\tf 4 1046 1053 -1048 -1053\n\t\tmu 0 4 1223 1222 1224 1225\n\t\tf 4 1047 1055 -1045 -1055\n\t\tmu 0 4 1225 1224 1226 1227\n\t\tf 4 -1056 -1054 -1052 -1050\n\t\tmu 0 4 1219 1228 1229 1220\n\t\tf 4 1054 1048 1050 1052\n\t\tmu 0 4 1230 1218 1221 1231\n\t\tf 4 1056 1061 -1058 -1061\n\t\tmu 0 4 1232 1233 1234 1235\n\t\tf 4 1057 1063 -1059 -1063\n\t\tmu 0 4 1235 1234 1236 1237\n\t\tf 4 1058 1065 -1060 -1065\n\t\tmu 0 4 1237 1236 1238 1239\n\t\tf 4 1059 1067 -1057 -1067\n\t\tmu 0 4 1239 1238 1240 1241\n\t\tf 4 -1068 -1066 -1064 -1062\n\t\tmu 0 4 1233 1242 1243 1234\n\t\tf 4 1066 1060 1062 1064\n\t\tmu 0 4 1244 1232 1235 1245\n\t\tf 4 1068 1073 -1070 -1073\n\t\tmu 0 4 1246 1247 1248 1249\n\t\tf 4 1069 1075 -1071 -1075\n\t\tmu 0 4 1249 1248 1250 1251\n\t\tf 4 1070 1077 -1072 -1077\n\t\tmu 0 4 1251 1250 1252 1253\n\t\tf 4 1071 1079 -1069 -1079\n\t\tmu 0 4 1253 1252 1254 1255\n\t\tf 4 -1080 -1078 -1076 -1074\n\t\tmu 0 4 1247 1256 1257 1248\n\t\tf 4 1078 1072 1074 1076\n\t\tmu 0 4 1258 1246 1249 1259\n\t\tf 4 1080 1085 -1082 -1085\n\t\tmu 0 4 1260 1261 1262 1263\n\t\tf 4 1081 1087 -1083 -1087\n\t\tmu 0 4 1263 1262 1264 1265\n\t\tf 4 1082 1089 -1084 -1089\n\t\tmu 0 4 1265 1264 1266 1267\n\t\tf 4 1083 1091 -1081 -1091\n\t\tmu 0 4 1267 1266 1268 1269\n\t\tf 4 -1092 -1090 -1088 -1086\n\t\tmu 0 4 1261 1270 1271 1262\n\t\tf 4 1090 1084 1086 1088\n\t\tmu 0 4 1272 1260 1263 1273\n\t\tf 4 1092 1097 -1094 -1097\n\t\tmu 0 4 1274 1275 1276 1277\n\t\tf 4 1093 1099 -1095 -1099\n\t\tmu 0 4 1277 1276 1278 1279\n\t\tf 4 1094 1101 -1096 -1101\n\t\tmu 0 4 1279 1278 1280 1281\n\t\tf 4 1095 1103 -1093 -1103\n\t\tmu 0 4 1281 1280 1282 1283\n\t\tf 4 -1104 -1102 -1100 -1098\n\t\tmu 0 4 1275 1284 1285 1276\n\t\tf 4 1102 1096 1098 1100\n\t\tmu 0 4 1286 1274 1277 1287\n\t\tf 4 1104 1109 -1106 -1109\n\t\tmu 0 4 1288 1289 1290 1291\n\t\tf 4 1105 1111 -1107 -1111\n\t\tmu 0 4 1291 1290 1292 1293\n\t\tf 4 1106 1113 -1108 -1113\n\t\tmu 0 4 1293 1292 1294 1295\n\t\tf 4 1107 1115 -1105 -1115\n\t\tmu 0 4 1295 1294 1296 1297\n\t\tf 4 -1116 -1114 -1112 -1110\n\t\tmu 0 4 1289 1298 1299 1290\n\t\tf 4 1114 1108 1110 1112\n\t\tmu 0 4 1300 1288 1291 1301\n\t\tf 4 1116 1121 -1118 -1121\n\t\tmu 0 4 1302 1303 1304 1305\n\t\tf 4 1117 1123 -1119 -1123\n\t\tmu 0 4 1305 1304 1306 1307\n\t\tf 4 1118 1125 -1120 -1125\n\t\tmu 0 4 1307 1306 1308 1309\n\t\tf 4 1119 1127 -1117 -1127\n\t\tmu 0 4 1309 1308 1310 1311\n\t\tf 4 -1128 -1126 -1124 -1122\n\t\tmu 0 4 1303 1312 1313 1304\n\t\tf 4 1126 1120 1122 1124\n\t\tmu 0 4 1314 1302 1305 1315\n\t\tf 4 1128 1133 -1130 -1133\n\t\tmu 0 4 1316 1317 1318 1319\n\t\tf 4 1129 1135 -1131 -1135\n\t\tmu 0 4 1319 1318 1320 1321\n\t\tf 4 1130 1137 -1132 -1137\n\t\tmu 0 4 1321 1320 1322 1323\n\t\tf 4 1131 1139 -1129 -1139\n\t\tmu 0 4 1323 1322 1324 1325\n\t\tf 4 -1140 -1138 -1136 -1134\n\t\tmu 0 4 1317 1326 1327 1318\n\t\tf 4 1138 1132 1134 1136\n\t\tmu 0 4 1328 1316 1319 1329\n\t\tf 4 1140 1145 -1142 -1145\n\t\tmu 0 4 1330 1331 1332 1333\n\t\tf 4 1141 1147 -1143 -1147\n\t\tmu 0 4 1333 1332 1334 1335\n\t\tf 4 1142 1149 -1144 -1149\n\t\tmu 0 4 1335 1334 1336 1337\n\t\tf 4 1143 1151 -1141 -1151\n\t\tmu 0 4 1337 1336 1338 1339\n\t\tf 4 -1152 -1150 -1148 -1146\n\t\tmu 0 4 1331 1340 1341 1332\n\t\tf 4 1150 1144 1146 1148\n\t\tmu 0 4 1342 1330 1333 1343\n\t\tf 4 1152 1157 -1154 -1157\n\t\tmu 0 4 1344 1345 1346 1347\n\t\tf 4 1153 1159 -1155 -1159\n\t\tmu 0 4 1347 1346 1348 1349\n\t\tf 4 1154 1161 -1156 -1161\n\t\tmu 0 4 1349 1348 1350 1351\n\t\tf 4 1155 1163 -1153 -1163\n\t\tmu 0 4 1351 1350 1352 1353\n\t\tf 4 -1164 -1162 -1160 -1158\n\t\tmu 0 4 1345 1354 1355 1346\n\t\tf 4 1162 1156 1158 1160\n\t\tmu 0 4 1356 1344 1347 1357\n\t\tf 4 1164 1169 -1166 -1169\n\t\tmu 0 4 1358 1359 1360 1361\n\t\tf 4 1165 1171 -1167 -1171\n\t\tmu 0 4 1361 1360 1362 1363\n\t\tf 4 1166 1173 -1168 -1173\n\t\tmu 0 4 1363 1362 1364 1365\n\t\tf 4 1167 1175 -1165 -1175\n\t\tmu 0 4 1365 1364 1366 1367\n\t\tf 4 -1176 -1174 -1172 -1170\n\t\tmu 0 4 1359 1368 1369 1360\n\t\tf 4 1174 1168 1170 1172\n\t\tmu 0 4 1370 1358 1361 1371\n\t\tf 4 1176 1181 -1178 -1181\n\t\tmu 0 4 1372 1373 1374 1375\n\t\tf 4 1177 1183 -1179 -1183\n\t\tmu 0 4 1375 1374 1376 1377\n\t\tf 4 1178 1185 -1180 -1185\n\t\tmu 0 4 1377 1376 1378 1379\n\t\tf 4 1179 1187 -1177 -1187\n\t\tmu 0 4 1379 1378 1380 1381\n\t\tf 4 -1188 -1186 -1184 -1182\n\t\tmu 0 4 1373 1382 1383 1374\n\t\tf 4 1186 1180 1182 1184\n\t\tmu 0 4 1384 1372 1375 1385\n\t\tf 4 1188 1193 -1190 -1193\n\t\tmu 0 4 1386 1387 1388 1389\n\t\tf 4 1189 1195 -1191 -1195\n\t\tmu 0 4 1389 1388 1390 1391\n\t\tf 4 1190 1197 -1192 -1197\n\t\tmu 0 4 1391 1390 1392 1393\n\t\tf 4 1191 1199 -1189 -1199\n\t\tmu 0 4 1393 1392 1394 1395\n\t\tf 4 -1200 -1198 -1196 -1194\n\t\tmu 0 4 1387 1396 1397 1388\n\t\tf 4 1198 1192 1194 1196\n\t\tmu 0 4 1398 1386 1389 1399\n\t\tf 4 1200 1205 -1202 -1205\n\t\tmu 0 4 1400 1401 1402 1403\n\t\tf 4 1201 1207 -1203 -1207\n\t\tmu 0 4 1403 1402 1404 1405\n\t\tf 4 1202 1209 -1204 -1209\n\t\tmu 0 4 1405 1404 1406 1407\n\t\tf 4 1203 1211 -1201 -1211\n\t\tmu 0 4 1407 1406 1408 1409\n\t\tf 4 -1212 -1210 -1208 -1206\n\t\tmu 0 4 1401 1410 1411 1402\n\t\tf 4 1210 1204 1206 1208\n\t\tmu 0 4 1412 1400 1403 1413\n\t\tf 4 1212 1217 -1214 -1217\n\t\tmu 0 4 1414 1415 1416 1417\n\t\tf 4 1213 1219 -1215 -1219\n\t\tmu 0 4 1417 1416 1418 1419\n\t\tf 4 1214 1221 -1216 -1221\n\t\tmu 0 4 1419 1418 1420 1421\n\t\tf 4 1215 1223 -1213 -1223\n\t\tmu 0 4 1421 1420 1422 1423\n\t\tf 4 -1224 -1222 -1220 -1218\n\t\tmu 0 4 1415 1424 1425 1416\n\t\tf 4 1222 1216 1218 1220\n\t\tmu 0 4 1426 1414 1417 1427\n\t\tf 4 1224 1229 -1226 -1229\n\t\tmu 0 4 1428 1429 1430 1431\n\t\tf 4 1225 1231 -1227 -1231\n\t\tmu 0 4 1431 1430 1432 1433\n\t\tf 4 1226 1233 -1228 -1233\n\t\tmu 0 4 1433 1432 1434 1435\n\t\tf 4 1227 1235 -1225 -1235\n\t\tmu 0 4 1435 1434 1436 1437\n\t\tf 4 -1236 -1234 -1232 -1230\n\t\tmu 0 4 1429 1438 1439 1430\n\t\tf 4 1234 1228 1230 1232\n\t\tmu 0 4 1440 1428 1431 1441\n\t\tf 4 1236 1241 -1238 -1241\n\t\tmu 0 4 1442 1443 1444 1445\n\t\tf 4 1237 1243 -1239 -1243\n\t\tmu 0 4 1445 1444 1446 1447\n\t\tf 4 1238 1245 -1240 -1245\n\t\tmu 0 4 1447 1446 1448 1449\n\t\tf 4 1239 1247 -1237 -1247\n\t\tmu 0 4 1449 1448 1450 1451\n\t\tf 4 -1248 -1246 -1244 -1242\n\t\tmu 0 4 1443 1452 1453 1444\n\t\tf 4 1246 1240 1242 1244\n\t\tmu 0 4 1454 1442 1445 1455\n\t\tf 4 1248 1253 -1250 -1253\n\t\tmu 0 4 1456 1457 1458 1459\n\t\tf 4 1249 1255 -1251 -1255\n\t\tmu 0 4 1459 1458 1460 1461\n\t\tf 4 1250 1257 -1252 -1257\n\t\tmu 0 4 1461 1460 1462 1463\n\t\tf 4 1251 1259 -1249 -1259\n\t\tmu 0 4 1463 1462 1464 1465\n\t\tf 4 -1260 -1258 -1256 -1254\n\t\tmu 0 4 1457 1466 1467 1458\n\t\tf 4 1258 1252 1254 1256\n\t\tmu 0 4 1468 1456 1459 1469\n\t\tf 4 1260 1265 -1262 -1265\n\t\tmu 0 4 1470 1471 1472 1473\n\t\tf 4 1261 1267 -1263 -1267\n\t\tmu 0 4 1473 1472 1474 1475\n\t\tf 4 1262 1269 -1264 -1269\n\t\tmu 0 4 1475 1474 1476 1477\n\t\tf 4 1263 1271 -1261 -1271\n\t\tmu 0 4 1477 1476 1478 1479\n\t\tf 4 -1272 -1270 -1268 -1266\n\t\tmu 0 4 1471 1480 1481 1472\n\t\tf 4 1270 1264 1266 1268\n\t\tmu 0 4 1482 1470 1473 1483\n\t\tf 4 1272 1277 -1274 -1277\n\t\tmu 0 4 1484 1485 1486 1487\n\t\tf 4 1273 1279 -1275 -1279\n\t\tmu 0 4 1487 1486 1488 1489\n\t\tf 4 1274 1281 -1276 -1281\n\t\tmu 0 4 1489 1488 1490 1491\n\t\tf 4 1275 1283 -1273 -1283\n\t\tmu 0 4 1491 1490 1492 1493\n\t\tf 4 -1284 -1282 -1280 -1278\n\t\tmu 0 4 1485 1494 1495 1486\n\t\tf 4 1282 1276 1278 1280\n\t\tmu 0 4 1496 1484 1487 1497\n\t\tf 4 1284 1289 -1286 -1289\n\t\tmu 0 4 1498 1499 1500 1501\n\t\tf 4 1285 1291 -1287 -1291\n\t\tmu 0 4 1501 1500 1502 1503\n\t\tf 4 1286 1293 -1288 -1293\n\t\tmu 0 4 1503 1502 1504 1505\n\t\tf 4 1287 1295 -1285 -1295\n\t\tmu 0 4 1505 1504 1506 1507\n\t\tf 4 -1296 -1294 -1292 -1290\n\t\tmu 0 4 1499 1508 1509 1500\n\t\tf 4 1294 1288 1290 1292\n\t\tmu 0 4 1510 1498 1501 1511\n\t\tf 4 1296 1301 -1298 -1301\n\t\tmu 0 4 1512 1513 1514 1515\n\t\tf 4 1297 1303 -1299 -1303\n\t\tmu 0 4 1515 1514 1516 1517\n\t\tf 4 1298 1305 -1300 -1305\n\t\tmu 0 4 1517 1516 1518 1519\n\t\tf 4 1299 1307 -1297 -1307\n\t\tmu 0 4 1519 1518 1520 1521\n\t\tf 4 -1308 -1306 -1304 -1302\n\t\tmu 0 4 1513 1522 1523 1514\n\t\tf 4 1306 1300 1302 1304\n\t\tmu 0 4 1524 1512 1515 1525\n\t\tf 4 1308 1313 -1310 -1313\n\t\tmu 0 4 1526 1527 1528 1529\n\t\tf 4 1309 1315 -1311 -1315\n\t\tmu 0 4 1529 1528 1530 1531\n\t\tf 4 1310 1317 -1312 -1317\n\t\tmu 0 4 1531 1530 1532 1533\n\t\tf 4 1311 1319 -1309 -1319\n\t\tmu 0 4 1533 1532 1534 1535\n\t\tf 4 -1320 -1318 -1316 -1314\n\t\tmu 0 4 1527 1536 1537 1528\n\t\tf 4 1318 1312 1314 1316\n\t\tmu 0 4 1538 1526 1529 1539\n\t\tf 4 1320 1325 -1322 -1325\n\t\tmu 0 4 1540 1541 1542 1543\n\t\tf 4 1321 1327 -1323 -1327\n\t\tmu 0 4 1543 1542 1544 1545\n\t\tf 4 1322 1329 -1324 -1329\n\t\tmu 0 4 1545 1544 1546 1547\n\t\tf 4 1323 1331 -1321 -1331\n\t\tmu 0 4 1547 1546 1548 1549\n\t\tf 4 -1332 -1330 -1328 -1326\n\t\tmu 0 4 1541 1550 1551 1542\n\t\tf 4 1330 1324 1326 1328\n\t\tmu 0 4 1552 1540 1543 1553\n\t\tf 4 1332 1337 -1334 -1337\n\t\tmu 0 4 1554 1555 1556 1557\n\t\tf 4 1333 1339 -1335 -1339\n\t\tmu 0 4 1557 1556 1558 1559\n\t\tf 4 1334 1341 -1336 -1341\n\t\tmu 0 4 1559 1558 1560 1561\n\t\tf 4 1335 1343 -1333 -1343\n\t\tmu 0 4 1561 1560 1562 1563\n\t\tf 4 -1344 -1342 -1340 -1338\n\t\tmu 0 4 1555 1564 1565 1556\n\t\tf 4 1342 1336 1338 1340\n\t\tmu 0 4 1566 1554 1557 1567\n\t\tf 4 1344 1349 -1346 -1349\n\t\tmu 0 4 1568 1569 1570 1571\n\t\tf 4 1345 1351 -1347 -1351\n\t\tmu 0 4 1571 1570 1572 1573\n\t\tf 4 1346 1353 -1348 -1353\n\t\tmu 0 4 1573 1572 1574 1575\n\t\tf 4 1347 1355 -1345 -1355\n\t\tmu 0 4 1575 1574 1576 1577\n\t\tf 4 -1356 -1354 -1352 -1350\n\t\tmu 0 4 1569 1578 1579 1570\n\t\tf 4 1354 1348 1350 1352\n\t\tmu 0 4 1580 1568 1571 1581\n\t\tf 4 1356 1361 -1358 -1361\n\t\tmu 0 4 1582 1583 1584 1585\n\t\tf 4 1357 1363 -1359 -1363\n\t\tmu 0 4 1585 1584 1586 1587\n\t\tf 4 1358 1365 -1360 -1365\n\t\tmu 0 4 1587 1586 1588 1589\n\t\tf 4 1359 1367 -1357 -1367\n\t\tmu 0 4 1589 1588 1590 1591\n\t\tf 4 -1368 -1366 -1364 -1362\n\t\tmu 0 4 1583 1592 1593 1584\n\t\tf 4 1366 1360 1362 1364\n\t\tmu 0 4 1594 1582 1585 1595\n\t\tf 4 1368 1373 -1370 -1373\n\t\tmu 0 4 1596 1597 1598 1599\n\t\tf 4 1369 1375 -1371 -1375\n\t\tmu 0 4 1599 1598 1600 1601\n\t\tf 4 1370 1377 -1372 -1377\n\t\tmu 0 4 1601 1600 1602 1603\n\t\tf 4 1371 1379 -1369 -1379\n\t\tmu 0 4 1603 1602 1604 1605\n\t\tf 4 -1380 -1378 -1376 -1374\n\t\tmu 0 4 1597 1606 1607 1598\n\t\tf 4 1378 1372 1374 1376\n\t\tmu 0 4 1608 1596 1599 1609\n\t\tf 4 1380 1385 -1382 -1385\n\t\tmu 0 4 1610 1611 1612 1613\n\t\tf 4 1381 1387 -1383 -1387\n\t\tmu 0 4 1613 1612 1614 1615\n\t\tf 4 1382 1389 -1384 -1389\n\t\tmu 0 4 1615 1614 1616 1617\n\t\tf 4 1383 1391 -1381 -1391\n\t\tmu 0 4 1617 1616 1618 1619\n\t\tf 4 -1392 -1390 -1388 -1386\n\t\tmu 0 4 1611 1620 1621 1612\n\t\tf 4 1390 1384 1386 1388\n\t\tmu 0 4 1622 1610 1613 1623\n\t\tf 4 1392 1397 -1394 -1397\n\t\tmu 0 4 1624 1625 1626 1627\n\t\tf 4 1393 1399 -1395 -1399\n\t\tmu 0 4 1627 1626 1628 1629\n\t\tf 4 1394 1401 -1396 -1401\n\t\tmu 0 4 1629 1628 1630 1631\n\t\tf 4 1395 1403 -1393 -1403\n\t\tmu 0 4 1631 1630 1632 1633\n\t\tf 4 -1404 -1402 -1400 -1398\n\t\tmu 0 4 1625 1634 1635 1626\n\t\tf 4 1402 1396 1398 1400\n\t\tmu 0 4 1636 1624 1627 1637\n\t\tf 4 1404 1409 -1406 -1409\n\t\tmu 0 4 1638 1639 1640 1641\n\t\tf 4 1405 1411 -1407 -1411\n\t\tmu 0 4 1641 1640 1642 1643\n\t\tf 4 1406 1413 -1408 -1413\n\t\tmu 0 4 1643 1642 1644 1645\n\t\tf 4 1407 1415 -1405 -1415\n\t\tmu 0 4 1645 1644 1646 1647\n\t\tf 4 -1416 -1414 -1412 -1410\n\t\tmu 0 4 1639 1648 1649 1640\n\t\tf 4 1414 1408 1410 1412\n\t\tmu 0 4 1650 1638 1641 1651\n\t\tf 4 1416 1421 -1418 -1421\n\t\tmu 0 4 1652 1653 1654 1655\n\t\tf 4 1417 1423 -1419 -1423\n\t\tmu 0 4 1655 1654 1656 1657\n\t\tf 4 1418 1425 -1420 -1425\n\t\tmu 0 4 1657 1656 1658 1659\n\t\tf 4 1419 1427 -1417 -1427\n\t\tmu 0 4 1659 1658 1660 1661\n\t\tf 4 -1428 -1426 -1424 -1422\n\t\tmu 0 4 1653 1662 1663 1654\n\t\tf 4 1426 1420 1422 1424\n\t\tmu 0 4 1664 1652 1655 1665\n\t\tf 4 1428 1433 -1430 -1433\n\t\tmu 0 4 1666 1667 1668 1669\n\t\tf 4 1429 1435 -1431 -1435\n\t\tmu 0 4 1669 1668 1670 1671\n\t\tf 4 1430 1437 -1432 -1437\n\t\tmu 0 4 1671 1670 1672 1673\n\t\tf 4 1431 1439 -1429 -1439\n\t\tmu 0 4 1673 1672 1674 1675\n\t\tf 4 -1440 -1438 -1436 -1434\n\t\tmu 0 4 1667 1676 1677 1668\n\t\tf 4 1438 1432 1434 1436\n\t\tmu 0 4 1678 1666 1669 1679\n\t\tf 4 1440 1445 -1442 -1445\n\t\tmu 0 4 1680 1681 1682 1683\n\t\tf 4 1441 1447 -1443 -1447\n\t\tmu 0 4 1683 1682 1684 1685\n\t\tf 4 1442 1449 -1444 -1449\n\t\tmu 0 4 1685 1684 1686 1687\n\t\tf 4 1443 1451 -1441 -1451\n\t\tmu 0 4 1687 1686 1688 1689\n\t\tf 4 -1452 -1450 -1448 -1446\n\t\tmu 0 4 1681 1690 1691 1682\n\t\tf 4 1450 1444 1446 1448\n\t\tmu 0 4 1692 1680 1683 1693\n\t\tf 4 1452 1457 -1454 -1457\n\t\tmu 0 4 1694 1695 1696 1697\n\t\tf 4 1453 1459 -1455 -1459\n\t\tmu 0 4 1697 1696 1698 1699\n\t\tf 4 1454 1461 -1456 -1461\n\t\tmu 0 4 1699 1698 1700 1701\n\t\tf 4 1455 1463 -1453 -1463\n\t\tmu 0 4 1701 1700 1702 1703\n\t\tf 4 -1464 -1462 -1460 -1458\n\t\tmu 0 4 1695 1704 1705 1696\n\t\tf 4 1462 1456 1458 1460\n\t\tmu 0 4 1706 1694 1697 1707\n\t\tf 4 1464 1469 -1466 -1469\n\t\tmu 0 4 1708 1709 1710 1711\n\t\tf 4 1465 1471 -1467 -1471\n\t\tmu 0 4 1711 1710 1712 1713\n\t\tf 4 1466 1473 -1468 -1473\n\t\tmu 0 4 1713 1712 1714 1715\n\t\tf 4 1467 1475 -1465 -1475\n\t\tmu 0 4 1715 1714 1716 1717\n\t\tf 4 -1476 -1474 -1472 -1470\n\t\tmu 0 4 1709 1718 1719 1710\n\t\tf 4 1474 1468 1470 1472\n\t\tmu 0 4 1720 1708 1711 1721\n\t\tf 4 1476 1481 -1478 -1481\n\t\tmu 0 4 1722 1723 1724 1725\n\t\tf 4 1477 1483 -1479 -1483\n\t\tmu 0 4 1725 1724 1726 1727\n\t\tf 4 1478 1485 -1480 -1485\n\t\tmu 0 4 1727 1726 1728 1729\n\t\tf 4 1479 1487 -1477 -1487\n\t\tmu 0 4 1729 1728 1730 1731\n\t\tf 4 -1488 -1486 -1484 -1482\n\t\tmu 0 4 1723 1732 1733 1724\n\t\tf 4 1486 1480 1482 1484\n\t\tmu 0 4 1734 1722 1725 1735\n\t\tf 4 1488 1493 -1490 -1493\n\t\tmu 0 4 1736 1737 1738 1739\n\t\tf 4 1489 1495 -1491 -1495\n\t\tmu 0 4 1739 1738 1740 1741\n\t\tf 4 1490 1497 -1492 -1497\n\t\tmu 0 4 1741 1740 1742 1743\n\t\tf 4 1491 1499 -1489 -1499\n\t\tmu 0 4 1743 1742 1744 1745\n\t\tf 4 -1500 -1498 -1496 -1494\n\t\tmu 0 4 1737 1746 1747 1738\n\t\tf 4 1498 1492 1494 1496\n\t\tmu 0 4 1748 1736 1739 1749\n\t\tf 4 1500 1505 -1502 -1505\n\t\tmu 0 4 1750 1751 1752 1753\n\t\tf 4 1501 1507 -1503 -1507\n\t\tmu 0 4 1753 1752 1754 1755\n\t\tf 4 1502 1509 -1504 -1509\n\t\tmu 0 4 1755 1754 1756 1757\n\t\tf 4 1503 1511 -1501 -1511\n\t\tmu 0 4 1757 1756 1758 1759\n\t\tf 4 -1512 -1510 -1508 -1506\n\t\tmu 0 4 1751 1760 1761 1752\n\t\tf 4 1510 1504 1506 1508\n\t\tmu 0 4 1762 1750 1753 1763\n\t\tf 4 1512 1517 -1514 -1517\n\t\tmu 0 4 1764 1765 1766 1767\n\t\tf 4 1513 1519 -1515 -1519\n\t\tmu 0 4 1767 1766 1768 1769\n\t\tf 4 1514 1521 -1516 -1521\n\t\tmu 0 4 1769 1768 1770 1771\n\t\tf 4 1515 1523 -1513 -1523\n\t\tmu 0 4 1771 1770 1772 1773\n\t\tf 4 -1524 -1522 -1520 -1518\n\t\tmu 0 4 1765 1774 1775 1766\n\t\tf 4 1522 1516 1518 1520\n\t\tmu 0 4 1776 1764 1767 1777\n\t\tf 4 1524 1529 -1526 -1529\n\t\tmu 0 4 1778 1779 1780 1781\n\t\tf 4 1525 1531 -1527 -1531\n\t\tmu 0 4 1781 1780 1782 1783\n\t\tf 4 1526 1533 -1528 -1533\n\t\tmu 0 4 1783 1782 1784 1785\n\t\tf 4 1527 1535 -1525 -1535\n\t\tmu 0 4 1785 1784 1786 1787\n\t\tf 4 -1536 -1534 -1532 -1530\n\t\tmu 0 4 1779 1788 1789 1780\n\t\tf 4 1534 1528 1530 1532\n\t\tmu 0 4 1790 1778 1781 1791\n\t\tf 4 1536 1541 -1538 -1541\n\t\tmu 0 4 1792 1793 1794 1795\n\t\tf 4 1537 1543 -1539 -1543\n\t\tmu 0 4 1795 1794 1796 1797\n\t\tf 4 1538 1545 -1540 -1545\n\t\tmu 0 4 1797 1796 1798 1799\n\t\tf 4 1539 1547 -1537 -1547\n\t\tmu 0 4 1799 1798 1800 1801\n\t\tf 4 -1548 -1546 -1544 -1542\n\t\tmu 0 4 1793 1802 1803 1794\n\t\tf 4 1546 1540 1542 1544\n\t\tmu 0 4 1804 1792 1795 1805\n\t\tf 4 1548 1553 -1550 -1553\n\t\tmu 0 4 1806 1807 1808 1809\n\t\tf 4 1549 1555 -1551 -1555\n\t\tmu 0 4 1809 1808 1810 1811\n\t\tf 4 1550 1557 -1552 -1557\n\t\tmu 0 4 1811 1810 1812 1813\n\t\tf 4 1551 1559 -1549 -1559\n\t\tmu 0 4 1813 1812 1814 1815\n\t\tf 4 -1560 -1558 -1556 -1554\n\t\tmu 0 4 1807 1816 1817 1808\n\t\tf 4 1558 1552 1554 1556\n\t\tmu 0 4 1818 1806 1809 1819\n\t\tf 4 1560 1565 -1562 -1565\n\t\tmu 0 4 1820 1821 1822 1823\n\t\tf 4 1561 1567 -1563 -1567\n\t\tmu 0 4 1823 1822 1824 1825\n\t\tf 4 1562 1569 -1564 -1569\n\t\tmu 0 4 1825 1824 1826 1827\n\t\tf 4 1563 1571 -1561 -1571\n\t\tmu 0 4 1827 1826 1828 1829\n\t\tf 4 -1572 -1570 -1568 -1566\n\t\tmu 0 4 1821 1830 1831 1822\n\t\tf 4 1570 1564 1566 1568\n\t\tmu 0 4 1832 1820 1823 1833\n\t\tf 4 1572 1577 -1574 -1577\n\t\tmu 0 4 1834 1835 1836 1837\n\t\tf 4 1573 1579 -1575 -1579\n\t\tmu 0 4 1837 1836 1838 1839\n\t\tf 4 1574 1581 -1576 -1581\n\t\tmu 0 4 1839 1838 1840 1841\n\t\tf 4 1575 1583 -1573 -1583\n\t\tmu 0 4 1841 1840 1842 1843\n\t\tf 4 -1584 -1582 -1580 -1578\n\t\tmu 0 4 1835 1844 1845 1836\n\t\tf 4 1582 1576 1578 1580\n\t\tmu 0 4 1846 1834 1837 1847\n\t\tf 4 1584 1589 -1586 -1589\n\t\tmu 0 4 1848 1849 1850 1851\n\t\tf 4 1585 1591 -1587 -1591\n\t\tmu 0 4 1851 1850 1852 1853\n\t\tf 4 1586 1593 -1588 -1593\n\t\tmu 0 4 1853 1852 1854 1855\n\t\tf 4 1587 1595 -1585 -1595\n\t\tmu 0 4 1855 1854 1856 1857\n\t\tf 4 -1596 -1594 -1592 -1590\n\t\tmu 0 4 1849 1858 1859 1850\n\t\tf 4 1594 1588 1590 1592\n\t\tmu 0 4 1860 1848 1851 1861\n\t\tf 4 1596 1601 -1598 -1601\n\t\tmu 0 4 1862 1863 1864 1865\n\t\tf 4 1597 1603 -1599 -1603\n\t\tmu 0 4 1865 1864 1866 1867\n\t\tf 4 1598 1605 -1600 -1605\n\t\tmu 0 4 1867 1866 1868 1869\n\t\tf 4 1599 1607 -1597 -1607\n\t\tmu 0 4 1869 1868 1870 1871\n\t\tf 4 -1608 -1606 -1604 -1602\n\t\tmu 0 4 1863 1872 1873 1864\n\t\tf 4 1606 1600 1602 1604\n\t\tmu 0 4 1874 1862 1865 1875\n\t\tf 4 1608 1613 -1610 -1613\n\t\tmu 0 4 1876 1877 1878 1879\n\t\tf 4 1609 1615 -1611 -1615\n\t\tmu 0 4 1879 1878 1880 1881\n\t\tf 4 1610 1617 -1612 -1617\n\t\tmu 0 4 1881 1880 1882 1883\n\t\tf 4 1611 1619 -1609 -1619\n\t\tmu 0 4 1883 1882 1884 1885\n\t\tf 4 -1620 -1618 -1616 -1614\n\t\tmu 0 4 1877 1886 1887 1878\n\t\tf 4 1618 1612 1614 1616\n\t\tmu 0 4 1888 1876 1879 1889\n\t\tf 4 1620 1625 -1622 -1625\n\t\tmu 0 4 1890 1891 1892 1893\n\t\tf 4 1621 1627 -1623 -1627\n\t\tmu 0 4 1893 1892 1894 1895\n\t\tf 4 1622 1629 -1624 -1629\n\t\tmu 0 4 1895 1894 1896 1897\n\t\tf 4 1623 1631 -1621 -1631\n\t\tmu 0 4 1897 1896 1898 1899\n\t\tf 4 -1632 -1630 -1628 -1626\n\t\tmu 0 4 1891 1900 1901 1892\n\t\tf 4 1630 1624 1626 1628\n\t\tmu 0 4 1902 1890 1893 1903\n\t\tf 4 1632 1637 -1634 -1637\n\t\tmu 0 4 1904 1905 1906 1907\n\t\tf 4 1633 1639 -1635 -1639\n\t\tmu 0 4 1907 1906 1908 1909\n\t\tf 4 1634 1641 -1636 -1641\n\t\tmu 0 4 1909 1908 1910 1911\n\t\tf 4 1635 1643 -1633 -1643\n\t\tmu 0 4 1911 1910 1912 1913\n\t\tf 4 -1644 -1642 -1640 -1638\n\t\tmu 0 4 1905 1914 1915 1906\n\t\tf 4 1642 1636 1638 1640\n\t\tmu 0 4 1916 1904 1907 1917\n\t\tf 4 1644 1649 -1646 -1649\n\t\tmu 0 4 1918 1919 1920 1921\n\t\tf 4 1645 1651 -1647 -1651\n\t\tmu 0 4 1921 1920 1922 1923\n\t\tf 4 1646 1653 -1648 -1653\n\t\tmu 0 4 1923 1922 1924 1925\n\t\tf 4 1647 1655 -1645 -1655\n\t\tmu 0 4 1925 1924 1926 1927\n\t\tf 4 -1656 -1654 -1652 -1650\n\t\tmu 0 4 1919 1928 1929 1920\n\t\tf 4 1654 1648 1650 1652\n\t\tmu 0 4 1930 1918 1921 1931\n\t\tf 4 1656 1661 -1658 -1661\n\t\tmu 0 4 1932 1933 1934 1935\n\t\tf 4 1657 1663 -1659 -1663\n\t\tmu 0 4 1935 1934 1936 1937\n\t\tf 4 1658 1665 -1660 -1665\n\t\tmu 0 4 1937 1936 1938 1939\n\t\tf 4 1659 1667 -1657 -1667\n\t\tmu 0 4 1939 1938 1940 1941\n\t\tf 4 -1668 -1666 -1664 -1662\n\t\tmu 0 4 1933 1942 1943 1934\n\t\tf 4 1666 1660 1662 1664\n\t\tmu 0 4 1944 1932 1935 1945\n\t\tf 4 1668 1673 -1670 -1673\n\t\tmu 0 4 1946 1947 1948 1949\n\t\tf 4 1669 1675 -1671 -1675\n\t\tmu 0 4 1949 1948 1950 1951\n\t\tf 4 1670 1677 -1672 -1677\n\t\tmu 0 4 1951 1950 1952 1953\n\t\tf 4 1671 1679 -1669 -1679\n\t\tmu 0 4 1953 1952 1954 1955\n\t\tf 4 -1680 -1678 -1676 -1674\n\t\tmu 0 4 1947 1956 1957 1948\n\t\tf 4 1678 1672 1674 1676\n\t\tmu 0 4 1958 1946 1949 1959\n\t\tf 4 1680 1685 -1682 -1685\n\t\tmu 0 4 1960 1961 1962 1963\n\t\tf 4 1681 1687 -1683 -1687\n\t\tmu 0 4 1963 1962 1964 1965\n\t\tf 4 1682 1689 -1684 -1689\n\t\tmu 0 4 1965 1964 1966 1967\n\t\tf 4 1683 1691 -1681 -1691\n\t\tmu 0 4 1967 1966 1968 1969\n\t\tf 4 -1692 -1690 -1688 -1686\n\t\tmu 0 4 1961 1970 1971 1962\n\t\tf 4 1690 1684 1686 1688\n\t\tmu 0 4 1972 1960 1963 1973\n\t\tf 4 1692 1697 -1694 -1697\n\t\tmu 0 4 1974 1975 1976 1977\n\t\tf 4 1693 1699 -1695 -1699\n\t\tmu 0 4 1977 1976 1978 1979\n\t\tf 4 1694 1701 -1696 -1701\n\t\tmu 0 4 1979 1978 1980 1981\n\t\tf 4 1695 1703 -1693 -1703\n\t\tmu 0 4 1981 1980 1982 1983\n\t\tf 4 -1704 -1702 -1700 -1698\n\t\tmu 0 4 1975 1984 1985 1976\n\t\tf 4 1702 1696 1698 1700\n\t\tmu 0 4 1986 1974 1977 1987\n\t\tf 4 1704 1709 -1706 -1709\n\t\tmu 0 4 1988 1989 1990 1991\n\t\tf 4 1705 1711 -1707 -1711\n\t\tmu 0 4 1991 1990 1992 1993\n\t\tf 4 1706 1713 -1708 -1713\n\t\tmu 0 4 1993 1992 1994 1995\n\t\tf 4 1707 1715 -1705 -1715\n\t\tmu 0 4 1995 1994 1996 1997\n\t\tf 4 -1716 -1714 -1712 -1710\n\t\tmu 0 4 1989 1998 1999 1990\n\t\tf 4 1714 1708 1710 1712\n\t\tmu 0 4 2000 1988 1991 2001\n\t\tf 4 1716 1721 -1718 -1721\n\t\tmu 0 4 2002 2003 2004 2005\n\t\tf 4 1717 1723 -1719 -1723\n\t\tmu 0 4 2005 2004 2006 2007\n\t\tf 4 1718 1725 -1720 -1725\n\t\tmu 0 4 2007 2006 2008 2009\n\t\tf 4 1719 1727 -1717 -1727\n\t\tmu 0 4 2009 2008 2010 2011\n\t\tf 4 -1728 -1726 -1724 -1722\n\t\tmu 0 4 2003 2012 2013 2004\n\t\tf 4 1726 1720 1722 1724\n\t\tmu 0 4 2014 2002 2005 2015\n\t\tf 4 1728 1733 -1730 -1733\n\t\tmu 0 4 2016 2017 2018 2019\n\t\tf 4 1729 1735 -1731 -1735\n\t\tmu 0 4 2019 2018 2020 2021\n\t\tf 4 1730 1737 -1732 -1737\n\t\tmu 0 4 2021 2020 2022 2023\n\t\tf 4 1731 1739 -1729 -1739\n\t\tmu 0 4 2023 2022 2024 2025\n\t\tf 4 -1740 -1738 -1736 -1734\n\t\tmu 0 4 2017 2026 2027 2018\n\t\tf 4 1738 1732 1734 1736\n\t\tmu 0 4 2028 2016 2019 2029\n\t\tf 4 1740 1745 -1742 -1745\n\t\tmu 0 4 2030 2031 2032 2033\n\t\tf 4 1741 1747 -1743 -1747\n\t\tmu 0 4 2033 2032 2034 2035\n\t\tf 4 1742 1749 -1744 -1749\n\t\tmu 0 4 2035 2034 2036 2037\n\t\tf 4 1743 1751 -1741 -1751\n\t\tmu 0 4 2037 2036 2038 2039\n\t\tf 4 -1752 -1750 -1748 -1746\n\t\tmu 0 4 2031 2040 2041 2032\n\t\tf 4 1750 1744 1746 1748\n\t\tmu 0 4 2042 2030 2033 2043\n\t\tf 4 1752 1757 -1754 -1757\n\t\tmu 0 4 2044 2045 2046 2047\n\t\tf 4 1753 1759 -1755 -1759\n\t\tmu 0 4 2047 2046 2048 2049\n\t\tf 4 1754 1761 -1756 -1761\n\t\tmu 0 4 2049 2048 2050 2051\n\t\tf 4 1755 1763 -1753 -1763\n\t\tmu 0 4 2051 2050 2052 2053\n\t\tf 4 -1764 -1762 -1760 -1758\n\t\tmu 0 4 2045 2054 2055 2046\n\t\tf 4 1762 1756 1758 1760\n\t\tmu 0 4 2056 2044 2047 2057\n\t\tf 4 1764 1769 -1766 -1769\n\t\tmu 0 4 2058 2059 2060 2061\n\t\tf 4 1765 1771 -1767 -1771\n\t\tmu 0 4 2061 2060 2062 2063\n\t\tf 4 1766 1773 -1768 -1773\n\t\tmu 0 4 2063 2062 2064 2065\n\t\tf 4 1767 1775 -1765 -1775\n\t\tmu 0 4 2065 2064 2066 2067\n\t\tf 4 -1776 -1774 -1772 -1770\n\t\tmu 0 4 2059 2068 2069 2060\n\t\tf 4 1774 1768 1770 1772\n\t\tmu 0 4 2070 2058 2061 2071\n\t\tf 4 1776 1781 -1778 -1781\n\t\tmu 0 4 2072 2073 2074 2075\n\t\tf 4 1777 1783 -1779 -1783\n\t\tmu 0 4 2075 2074 2076 2077\n\t\tf 4 1778 1785 -1780 -1785\n\t\tmu 0 4 2077 2076 2078 2079\n\t\tf 4 1779 1787 -1777 -1787\n\t\tmu 0 4 2079 2078 2080 2081\n\t\tf 4 -1788 -1786 -1784 -1782\n\t\tmu 0 4 2073 2082 2083 2074\n\t\tf 4 1786 1780 1782 1784\n\t\tmu 0 4 2084 2072 2075 2085\n\t\tf 4 1788 1793 -1790 -1793\n\t\tmu 0 4 2086 2087 2088 2089\n\t\tf 4 1789 1795 -1791 -1795\n\t\tmu 0 4 2089 2088 2090 2091\n\t\tf 4 1790 1797 -1792 -1797\n\t\tmu 0 4 2091 2090 2092 2093\n\t\tf 4 1791 1799 -1789 -1799\n\t\tmu 0 4 2093 2092 2094 2095\n\t\tf 4 -1800 -1798 -1796 -1794\n\t\tmu 0 4 2087 2096 2097 2088\n\t\tf 4 1798 1792 1794 1796\n\t\tmu 0 4 2098 2086 2089 2099\n\t\tf 4 1800 1805 -1802 -1805\n\t\tmu 0 4 2100 2101 2102 2103\n\t\tf 4 1801 1807 -1803 -1807\n\t\tmu 0 4 2103 2102 2104 2105\n\t\tf 4 1802 1809 -1804 -1809\n\t\tmu 0 4 2105 2104 2106 2107\n\t\tf 4 1803 1811 -1801 -1811\n\t\tmu 0 4 2107 2106 2108 2109\n\t\tf 4 -1812 -1810 -1808 -1806\n\t\tmu 0 4 2101 2110 2111 2102\n\t\tf 4 1810 1804 1806 1808\n\t\tmu 0 4 2112 2100 2103 2113\n\t\tf 4 1812 1817 -1814 -1817\n\t\tmu 0 4 2114 2115 2116 2117\n\t\tf 4 1813 1819 -1815 -1819\n\t\tmu 0 4 2117 2116 2118 2119\n\t\tf 4 1814 1821 -1816 -1821\n\t\tmu 0 4 2119 2118 2120 2121\n\t\tf 4 1815 1823 -1813 -1823\n\t\tmu 0 4 2121 2120 2122 2123\n\t\tf 4 -1824 -1822 -1820 -1818\n\t\tmu 0 4 2115 2124 2125 2116\n\t\tf 4 1822 1816 1818 1820\n\t\tmu 0 4 2126 2114 2117 2127\n\t\tf 4 1824 1829 -1826 -1829\n\t\tmu 0 4 2128 2129 2130 2131\n\t\tf 4 1825 1831 -1827 -1831\n\t\tmu 0 4 2131 2130 2132 2133\n\t\tf 4 1826 1833 -1828 -1833\n\t\tmu 0 4 2133 2132 2134 2135\n\t\tf 4 1827 1835 -1825 -1835\n\t\tmu 0 4 2135 2134 2136 2137\n\t\tf 4 -1836 -1834 -1832 -1830\n\t\tmu 0 4 2129 2138 2139 2130\n\t\tf 4 1834 1828 1830 1832\n\t\tmu 0 4 2140 2128 2131 2141\n\t\tf 4 1836 1841 -1838 -1841\n\t\tmu 0 4 2142 2143 2144 2145\n\t\tf 4 1837 1843 -1839 -1843\n\t\tmu 0 4 2145 2144 2146 2147\n\t\tf 4 1838 1845 -1840 -1845\n\t\tmu 0 4 2147 2146 2148 2149\n\t\tf 4 1839 1847 -1837 -1847\n\t\tmu 0 4 2149 2148 2150 2151\n\t\tf 4 -1848 -1846 -1844 -1842\n\t\tmu 0 4 2143 2152 2153 2144\n\t\tf 4 1846 1840 1842 1844\n\t\tmu 0 4 2154 2142 2145 2155\n\t\tf 4 1848 1853 -1850 -1853\n\t\tmu 0 4 2156 2157 2158 2159\n\t\tf 4 1849 1855 -1851 -1855\n\t\tmu 0 4 2159 2158 2160 2161\n\t\tf 4 1850 1857 -1852 -1857\n\t\tmu 0 4 2161 2160 2162 2163\n\t\tf 4 1851 1859 -1849 -1859\n\t\tmu 0 4 2163 2162 2164 2165\n\t\tf 4 -1860 -1858 -1856 -1854\n\t\tmu 0 4 2157 2166 2167 2158\n\t\tf 4 1858 1852 1854 1856\n\t\tmu 0 4 2168 2156 2159 2169\n\t\tf 4 1860 1865 -1862 -1865\n\t\tmu 0 4 2170 2171 2172 2173\n\t\tf 4 1861 1867 -1863 -1867\n\t\tmu 0 4 2173 2172 2174 2175\n\t\tf 4 1862 1869 -1864 -1869\n\t\tmu 0 4 2175 2174 2176 2177\n\t\tf 4 1863 1871 -1861 -1871\n\t\tmu 0 4 2177 2176 2178 2179\n\t\tf 4 -1872 -1870 -1868 -1866\n\t\tmu 0 4 2171 2180 2181 2172\n\t\tf 4 1870 1864 1866 1868\n\t\tmu 0 4 2182 2170 2173 2183\n\t\tf 4 1872 1877 -1874 -1877\n\t\tmu 0 4 2184 2185 2186 2187\n\t\tf 4 1873 1879 -1875 -1879\n\t\tmu 0 4 2187 2186 2188 2189\n\t\tf 4 1874 1881 -1876 -1881\n\t\tmu 0 4 2189 2188 2190 2191\n\t\tf 4 1875 1883 -1873 -1883\n\t\tmu 0 4 2191 2190 2192 2193\n\t\tf 4 -1884 -1882 -1880 -1878\n\t\tmu 0 4 2185 2194 2195 2186\n\t\tf 4 1882 1876 1878 1880\n\t\tmu 0 4 2196 2184 2187 2197\n\t\tf 4 1884 1889 -1886 -1889\n\t\tmu 0 4 2198 2199 2200 2201\n\t\tf 4 1885 1891 -1887 -1891\n\t\tmu 0 4 2201 2200 2202 2203\n\t\tf 4 1886 1893 -1888 -1893\n\t\tmu 0 4 2203 2202 2204 2205\n\t\tf 4 1887 1895 -1885 -1895\n\t\tmu 0 4 2205 2204 2206 2207\n\t\tf 4 -1896 -1894 -1892 -1890\n\t\tmu 0 4 2199 2208 2209 2200\n\t\tf 4 1894 1888 1890 1892\n\t\tmu 0 4 2210 2198 2201 2211\n\t\tf 4 1896 1901 -1898 -1901\n\t\tmu 0 4 2212 2213 2214 2215\n\t\tf 4 1897 1903 -1899 -1903\n\t\tmu 0 4 2215 2214 2216 2217\n\t\tf 4 1898 1905 -1900 -1905\n\t\tmu 0 4 2217 2216 2218 2219\n\t\tf 4 1899 1907 -1897 -1907\n\t\tmu 0 4 2219 2218 2220 2221\n\t\tf 4 -1908 -1906 -1904 -1902\n\t\tmu 0 4 2213 2222 2223 2214\n\t\tf 4 1906 1900 1902 1904\n\t\tmu 0 4 2224 2212 2215 2225\n\t\tf 4 1908 1913 -1910 -1913\n\t\tmu 0 4 2226 2227 2228 2229\n\t\tf 4 1909 1915 -1911 -1915\n\t\tmu 0 4 2229 2228 2230 2231\n\t\tf 4 1910 1917 -1912 -1917\n\t\tmu 0 4 2231 2230 2232 2233\n\t\tf 4 1911 1919 -1909 -1919\n\t\tmu 0 4 2233 2232 2234 2235\n\t\tf 4 -1920 -1918 -1916 -1914\n\t\tmu 0 4 2227 2236 2237 2228\n\t\tf 4 1918 1912 1914 1916\n\t\tmu 0 4 2238 2226 2229 2239\n\t\tf 4 1920 1925 -1922 -1925\n\t\tmu 0 4 2240 2241 2242 2243\n\t\tf 4 1921 1927 -1923 -1927\n\t\tmu 0 4 2243 2242 2244 2245\n\t\tf 4 1922 1929 -1924 -1929\n\t\tmu 0 4 2245 2244 2246 2247\n\t\tf 4 1923 1931 -1921 -1931\n\t\tmu 0 4 2247 2246 2248 2249\n\t\tf 4 -1932 -1930 -1928 -1926\n\t\tmu 0 4 2241 2250 2251 2242\n\t\tf 4 1930 1924 1926 1928\n\t\tmu 0 4 2252 2240 2243 2253\n\t\tf 4 1932 1937 -1934 -1937\n\t\tmu 0 4 2254 2255 2256 2257\n\t\tf 4 1933 1939 -1935 -1939\n\t\tmu 0 4 2257 2256 2258 2259\n\t\tf 4 1934 1941 -1936 -1941\n\t\tmu 0 4 2259 2258 2260 2261\n\t\tf 4 1935 1943 -1933 -1943\n\t\tmu 0 4 2261 2260 2262 2263\n\t\tf 4 -1944 -1942 -1940 -1938\n\t\tmu 0 4 2255 2264 2265 2256\n\t\tf 4 1942 1936 1938 1940\n\t\tmu 0 4 2266 2254 2257 2267\n\t\tf 4 1944 1949 -1946 -1949\n\t\tmu 0 4 2268 2269 2270 2271\n\t\tf 4 1945 1951 -1947 -1951\n\t\tmu 0 4 2271 2270 2272 2273\n\t\tf 4 1946 1953 -1948 -1953\n\t\tmu 0 4 2273 2272 2274 2275\n\t\tf 4 1947 1955 -1945 -1955\n\t\tmu 0 4 2275 2274 2276 2277\n\t\tf 4 -1956 -1954 -1952 -1950\n\t\tmu 0 4 2269 2278 2279 2270\n\t\tf 4 1954 1948 1950 1952\n\t\tmu 0 4 2280 2268 2271 2281\n\t\tf 4 1956 1961 -1958 -1961\n\t\tmu 0 4 2282 2283 2284 2285\n\t\tf 4 1957 1963 -1959 -1963\n\t\tmu 0 4 2285 2284 2286 2287\n\t\tf 4 1958 1965 -1960 -1965\n\t\tmu 0 4 2287 2286 2288 2289\n\t\tf 4 1959 1967 -1957 -1967\n\t\tmu 0 4 2289 2288 2290 2291\n\t\tf 4 -1968 -1966 -1964 -1962\n\t\tmu 0 4 2283 2292 2293 2284\n\t\tf 4 1966 1960 1962 1964\n\t\tmu 0 4 2294 2282 2285 2295\n\t\tf 4 1968 1973 -1970 -1973\n\t\tmu 0 4 2296 2297 2298 2299\n\t\tf 4 1969 1975 -1971 -1975\n\t\tmu 0 4 2299 2298 2300 2301\n\t\tf 4 1970 1977 -1972 -1977\n\t\tmu 0 4 2301 2300 2302 2303\n\t\tf 4 1971 1979 -1969 -1979\n\t\tmu 0 4 2303 2302 2304 2305\n\t\tf 4 -1980 -1978 -1976 -1974\n\t\tmu 0 4 2297 2306 2307 2298\n\t\tf 4 1978 1972 1974 1976\n\t\tmu 0 4 2308 2296 2299 2309\n\t\tf 4 1980 1985 -1982 -1985\n\t\tmu 0 4 2310 2311 2312 2313\n\t\tf 4 1981 1987 -1983 -1987\n\t\tmu 0 4 2313 2312 2314 2315\n\t\tf 4 1982 1989 -1984 -1989\n\t\tmu 0 4 2315 2314 2316 2317\n\t\tf 4 1983 1991 -1981 -1991\n\t\tmu 0 4 2317 2316 2318 2319\n\t\tf 4 -1992 -1990 -1988 -1986\n\t\tmu 0 4 2311 2320 2321 2312\n\t\tf 4 1990 1984 1986 1988\n\t\tmu 0 4 2322 2310 2313 2323\n\t\tf 4 1992 1997 -1994 -1997\n\t\tmu 0 4 2324 2325 2326 2327\n\t\tf 4 1993 1999 -1995 -1999\n\t\tmu 0 4 2327 2326 2328 2329\n\t\tf 4 1994 2001 -1996 -2001\n\t\tmu 0 4 2329 2328 2330 2331\n\t\tf 4 1995 2003 -1993 -2003\n\t\tmu 0 4 2331 2330 2332 2333;\n\tsetAttr \".fc[1000:1031]\"\n\t\tf 4 -2004 -2002 -2000 -1998\n\t\tmu 0 4 2325 2334 2335 2326\n\t\tf 4 2002 1996 1998 2000\n\t\tmu 0 4 2336 2324 2327 2337\n\t\tf 4 2004 2009 -2006 -2009\n\t\tmu 0 4 2338 2339 2340 2341\n\t\tf 4 2005 2011 -2007 -2011\n\t\tmu 0 4 2341 2340 2342 2343\n\t\tf 4 2006 2013 -2008 -2013\n\t\tmu 0 4 2343 2342 2344 2345\n\t\tf 4 2007 2015 -2005 -2015\n\t\tmu 0 4 2345 2344 2346 2347\n\t\tf 4 -2016 -2014 -2012 -2010\n\t\tmu 0 4 2339 2348 2349 2340\n\t\tf 4 2014 2008 2010 2012\n\t\tmu 0 4 2350 2338 2341 2351\n\t\tf 4 2016 2021 -2018 -2021\n\t\tmu 0 4 2352 2353 2354 2355\n\t\tf 4 2017 2023 -2019 -2023\n\t\tmu 0 4 2355 2354 2356 2357\n\t\tf 4 2018 2025 -2020 -2025\n\t\tmu 0 4 2357 2356 2358 2359\n\t\tf 4 2019 2027 -2017 -2027\n\t\tmu 0 4 2359 2358 2360 2361\n\t\tf 4 -2028 -2026 -2024 -2022\n\t\tmu 0 4 2353 2362 2363 2354\n\t\tf 4 2026 2020 2022 2024\n\t\tmu 0 4 2364 2352 2355 2365\n\t\tf 4 2028 2033 -2030 -2033\n\t\tmu 0 4 2366 2367 2368 2369\n\t\tf 4 2029 2035 -2031 -2035\n\t\tmu 0 4 2369 2368 2370 2371\n\t\tf 4 2030 2037 -2032 -2037\n\t\tmu 0 4 2371 2370 2372 2373\n\t\tf 4 2031 2039 -2029 -2039\n\t\tmu 0 4 2373 2372 2374 2375\n\t\tf 4 -2040 -2038 -2036 -2034\n\t\tmu 0 4 2367 2376 2377 2368\n\t\tf 4 2038 2032 2034 2036\n\t\tmu 0 4 2378 2366 2369 2379\n\t\tf 4 2040 2045 -2042 -2045\n\t\tmu 0 4 2380 2381 2382 2383\n\t\tf 4 2041 2047 -2043 -2047\n\t\tmu 0 4 2383 2382 2384 2385\n\t\tf 4 2042 2049 -2044 -2049\n\t\tmu 0 4 2385 2384 2386 2387\n\t\tf 4 2043 2051 -2041 -2051\n\t\tmu 0 4 2387 2386 2388 2389\n\t\tf 4 -2052 -2050 -2048 -2046\n\t\tmu 0 4 2381 2390 2391 2382\n\t\tf 4 2050 2044 2046 2048\n\t\tmu 0 4 2392 2380 2383 2393\n\t\tf 4 2052 2057 -2054 -2057\n\t\tmu 0 4 2394 2395 2396 2397\n\t\tf 4 2053 2059 -2055 -2059\n\t\tmu 0 4 2397 2396 2398 2399\n\t\tf 4 2054 2061 -2056 -2061\n\t\tmu 0 4 2399 2398 2400 2401\n\t\tf 4 2055 2063 -2053 -2063\n\t\tmu 0 4 2401 2400 2402 2403\n\t\tf 4 -2064 -2062 -2060 -2058\n\t\tmu 0 4 2395 2404 2405 2396\n\t\tf 4 2062 2056 2058 2060\n\t\tmu 0 4 2406 2394 2397 2407;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"303B2B67-47B7-6E78-8820-05AB30D606B5\";\n\taddAttr -ci true -sn \"nts\" -ln \"notes\" -dt \"string\";\n\tsetAttr \".t\" -type \"double3\" 0 25 11.5 ;\n\tsetAttr \".r\" -type \"double3\" -65.000000000001904 0 0 ;\n\tsetAttr \".nts\" -type \"string\" \"\\t\\t\\t\";\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"BD85422D-4BEE-06AB-BACE-7DBD783134A8\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173228346456694 1.4173228346456694 ;\n\tsetAttr \".ff\" 3;\n\tsetAttr \".ncp\" 0.001;\n\tsetAttr \".fcp\" 100;\n\tsetAttr \".coi\" 27.787465435203281;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".dr\" yes;\ncreateNode transform -n \"pPyramid1\" -p \"camera1\";\n\trename -uid \"64C5F767-411B-9689-42F4-42A46E33EBBD\";\n\tsetAttr \".s\" -type \"double3\" 5 5 100 ;\n\tsetAttr \".rp\" -type \"double3\" 0 0 3.7375154454233339e-05 ;\n\tsetAttr \".sp\" -type \"double3\" 0 0 3.7375154454233339e-05 ;\ncreateNode mesh -n \"pPyramidShape1\" -p \"pPyramid1\";\n\trename -uid \"A770F7FC-432D-DC35-6840-EDA7546D1EDD\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.25 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"44B7A09F-4354-5C47-368E-CE896D39E02C\";\n\tsetAttr -s 8 \".lnk\";\n\tsetAttr -s 8 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"641AB4AE-4E55-A5DE-1EB5-26A888802CF3\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"75745BD0-4A28-89EC-A433-A0A5F34BE934\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"F757405F-4193-FF39-0D6F-82A89FAE7AF7\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"5F78CABE-4E1C-4A10-CCA9-CF98F2D9CABE\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"C471D001-425A-EC23-07A3-8B8428BCFEAB\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"4DAC6715-445A-0676-C776-A2A4E60D7B3A\";\n\tsetAttr \".g\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"4D043C4A-429E-E5AB-1103-4791D7A045E7\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"cameraShape1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1978\\n            -height 1447\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -autoFitTime 0\\n\"\n\t\t+ \"                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n\"\n\t\t+ \"                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n\"\n\t\t+ \"                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 0 \\n                $editorName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n\"\n\t\t+ \"                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n\"\n\t\t+ \"                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n\"\n\t\t+ \"                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n\"\n\t\t+ \"                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n\"\n\t\t+ \"                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\"\n\t\t+ \"\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"cameraShape1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1978\\\\n    -height 1447\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"cameraShape1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1978\\\\n    -height 1447\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"598A3F36-4262-4847-52B4-0A89E9054834\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode groupId -n \"groupId1\";\n\trename -uid \"6916DEC6-483C-8C62-4504-2E966E14F5F3\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"0CD29B91-4AC4-D539-7C3F-918776F0DC70\";\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"A0004028-432C-996A-EC5E-F1830097EAEB\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"351991DC-44C1-50A9-B8C3-6394D2BACF0B\";\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"96F22B07-4A29-3CF2-1312-6FB6FED76A59\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert3\";\n\trename -uid \"33CE80EB-4BC7-2CA6-595C-9CB4CF8B0E4D\";\n\tsetAttr \".c\" -type \"float3\" 0 0 1 ;\ncreateNode shadingEngine -n \"lambert3SG\";\n\trename -uid \"90EC03C5-4980-25D5-0135-EDB31ED46B4E\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"ED657469-4A1E-A4C1-302D-9F8ABCA0076E\";\ncreateNode groupId -n \"groupId3\";\n\trename -uid \"E16FB584-49D8-58ED-E919-D0A477F7C449\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert4\";\n\trename -uid \"6DDF4970-431F-E97D-3935-288C97620148\";\n\tsetAttr \".c\" -type \"float3\" 0 1 0 ;\ncreateNode shadingEngine -n \"lambert4SG\";\n\trename -uid \"12731EA1-4A5C-3BA1-90D8-7A8CDFE83BE0\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo3\";\n\trename -uid \"8E4CC743-4732-E704-B13C-68A0D93CDDA2\";\ncreateNode groupId -n \"groupId4\";\n\trename -uid \"04E0951A-4E24-EB2D-47DD-9290479CE2B4\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert5\";\n\trename -uid \"790E2B42-4642-7C43-B9B7-48BE5CCFD990\";\n\tsetAttr \".c\" -type \"float3\" 0 1 1 ;\ncreateNode shadingEngine -n \"lambert5SG\";\n\trename -uid \"DB900D64-4061-C89A-8E71-59A5702EA8B3\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo4\";\n\trename -uid \"74333DFD-4793-241D-31DC-F686CADC142E\";\ncreateNode groupId -n \"groupId5\";\n\trename -uid \"02B681EA-4069-8770-75C0-74AFD4A129EA\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert6\";\n\trename -uid \"85C23F83-492C-588B-FD1B-1A8EF0DCBE85\";\n\tsetAttr \".c\" -type \"float3\" 1 1 0 ;\ncreateNode shadingEngine -n \"lambert6SG\";\n\trename -uid \"E284AD76-40AA-828B-24D6-5EB8FB910E05\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo5\";\n\trename -uid \"B67DDF3E-4FAE-9463-6723-E9B7B079AD58\";\ncreateNode groupId -n \"groupId6\";\n\trename -uid \"8F1FBACE-4E06-51DA-F148-40B388BAA372\";\n\tsetAttr \".ihi\" 0;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"211DDCFC-424B-189E-4344-28AAEB1A6103\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"B29DED36-4F71-50B8-51FE-9D88449F2716\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\taddAttr -ci true -sn \"selOnly\" -ln \"selOnly\" -at \"long\";\n\taddAttr -ci true -sn \"visOnly\" -ln \"visOnly\" -at \"long\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/Users/bugfa/Documents/maya/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"cam2\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2019 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"-cam camera1\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 1;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\n\tsetAttr \".selOnly\" 1;\n\tsetAttr \".visOnly\" 1;\ncreateNode polyPyramid -n \"polyPyramid1\";\n\trename -uid \"9EA437FA-49D9-6156-030B-4A9DA24B5F63\";\n\tsetAttr \".ax\" -type \"double3\" 0 0 1 ;\n\tsetAttr \".cuv\" 3;\ncreateNode transformGeometry -n \"transformGeometry1\";\n\trename -uid \"EC98F613-4690-A28F-5179-67AE792AF789\";\n\tsetAttr \".txf\" -type \"matrix\" 0.70710678118654746 0.70710678118654757 0 0 -0.70710678118654757 0.70710678118654746 0 0\n\t\t 0 0 1 0 0 0 -0.35306153624781406 1;\ncreateNode lambert -n \"lambert7\";\n\trename -uid \"3FBAC392-47A6-CF77-1BCB-89A01C7782B7\";\n\tsetAttr \".c\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".it\" -type \"float3\" 0.040192928 0.040192928 0.040192928 ;\ncreateNode shadingEngine -n \"lambert7SG\";\n\trename -uid \"4D87AD61-4564-4DAC-9D9F-9FB8DD7C7385\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo6\";\n\trename -uid \"3A76EF7B-4EF1-12F9-194F-75B2A64C3C4D\";\ncreateNode polyNormal -n \"polyNormal1\";\n\trename -uid \"2B6341FC-44AC-A77B-FEC6-27B15E2E783B\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".unm\" no;\ncreateNode deleteComponent -n \"deleteComponent1\";\n\trename -uid \"6AE47629-4E93-1EDA-C8F6-62964D43649E\";\n\tsetAttr \".dc\" -type \"componentList\" 1 \"f[0]\";\ncreateNode deleteComponent -n \"deleteComponent2\";\n\trename -uid \"0AF2E85F-466B-83EC-C0EE-BCA5ED8D05B2\";\n\tsetAttr \".dc\" -type \"componentList\" 1 \"f[0]\";\ncreateNode deleteComponent -n \"deleteComponent3\";\n\trename -uid \"CD99D44C-40B3-941D-CF82-C2AAFB3E8314\";\n\tsetAttr \".dc\" -type \"componentList\" 1 \"f[1]\";\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 0;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 8 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 10 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1024;\n\tsetAttr \".h\" 1024;\n\tsetAttr \".pa\" 1;\n\tsetAttr \".dar\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"groupId1.id\" \"pCube5Shape.iog.og[0].gid\";\nconnectAttr \":initialShadingGroup.mwc\" \"pCube5Shape.iog.og[0].gco\";\nconnectAttr \"groupId2.id\" \"pCube5Shape.iog.og[1].gid\";\nconnectAttr \"lambert2SG.mwc\" \"pCube5Shape.iog.og[1].gco\";\nconnectAttr \"groupId3.id\" \"pCube5Shape.iog.og[2].gid\";\nconnectAttr \"lambert3SG.mwc\" \"pCube5Shape.iog.og[2].gco\";\nconnectAttr \"groupId4.id\" \"pCube5Shape.iog.og[3].gid\";\nconnectAttr \"lambert4SG.mwc\" \"pCube5Shape.iog.og[3].gco\";\nconnectAttr \"groupId5.id\" \"pCube5Shape.iog.og[4].gid\";\nconnectAttr \"lambert5SG.mwc\" \"pCube5Shape.iog.og[4].gco\";\nconnectAttr \"groupId6.id\" \"pCube5Shape.iog.og[5].gid\";\nconnectAttr \"lambert6SG.mwc\" \"pCube5Shape.iog.og[5].gco\";\nconnectAttr \"deleteComponent3.og\" \"pPyramidShape1.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert4SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert5SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert6SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert7SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert4SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert5SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert6SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert7SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"groupId2.msg\" \"lambert2SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[1]\" \"lambert2SG.dsm\" -na;\nconnectAttr \"lambert2SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo1.m\";\nconnectAttr \"lambert3.oc\" \"lambert3SG.ss\";\nconnectAttr \"groupId3.msg\" \"lambert3SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[2]\" \"lambert3SG.dsm\" -na;\nconnectAttr \"lambert3SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"lambert3.msg\" \"materialInfo2.m\";\nconnectAttr \"lambert4.oc\" \"lambert4SG.ss\";\nconnectAttr \"groupId4.msg\" \"lambert4SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[3]\" \"lambert4SG.dsm\" -na;\nconnectAttr \"lambert4SG.msg\" \"materialInfo3.sg\";\nconnectAttr \"lambert4.msg\" \"materialInfo3.m\";\nconnectAttr \"lambert5.oc\" \"lambert5SG.ss\";\nconnectAttr \"groupId5.msg\" \"lambert5SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[4]\" \"lambert5SG.dsm\" -na;\nconnectAttr \"lambert5SG.msg\" \"materialInfo4.sg\";\nconnectAttr \"lambert5.msg\" \"materialInfo4.m\";\nconnectAttr \"lambert6.oc\" \"lambert6SG.ss\";\nconnectAttr \"groupId6.msg\" \"lambert6SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[5]\" \"lambert6SG.dsm\" -na;\nconnectAttr \"lambert6SG.msg\" \"materialInfo5.sg\";\nconnectAttr \"lambert6.msg\" \"materialInfo5.m\";\nconnectAttr \"polyPyramid1.out\" \"transformGeometry1.ig\";\nconnectAttr \"lambert7.oc\" \"lambert7SG.ss\";\nconnectAttr \"pPyramidShape1.iog\" \"lambert7SG.dsm\" -na;\nconnectAttr \"lambert7SG.msg\" \"materialInfo6.sg\";\nconnectAttr \"lambert7.msg\" \"materialInfo6.m\";\nconnectAttr \"transformGeometry1.og\" \"polyNormal1.ip\";\nconnectAttr \"polyNormal1.out\" \"deleteComponent1.ig\";\nconnectAttr \"deleteComponent1.og\" \"deleteComponent2.ig\";\nconnectAttr \"deleteComponent2.og\" \"deleteComponent3.ig\";\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert3SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert4SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert5SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert6SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert7SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert3.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert4.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert5.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert6.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert7.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCube5Shape.iog.og[0]\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"groupId1.msg\" \":initialShadingGroup.gn\" -na;\n// End of CameraCalibration3.ma\n"
  },
  {
    "path": "maya/scenes/CameraCalibration4.ma",
    "content": "//Maya ASCII 2018ff08 scene\n//Name: CameraCalibration4.ma\n//Last modified: Sun, Feb 03, 2019 08:53:33 PM\n//Codeset: 1252\nrequires maya \"2018ff08\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201804211841-f3d65dda2a\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"AAFB104E-4FD8-12C2-F062-5FBBE22E28D9\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1.5644844838131906 61.144449962811123 40.641722698941628 ;\n\tsetAttr \".r\" -type \"double3\" 311.66164727047629 10.599999999999925 0 ;\n\tsetAttr \".rp\" -type \"double3\" 0 -7.1054273576010019e-15 0 ;\n\tsetAttr \".rpt\" -type \"double3\" 2.788632745664467e-15 3.8507534731040169e-15 5.6672500606136927e-15 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"C611669F-4502-BC51-FDD7-78A470756B8D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 68.773611521632446;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" -6.8450192119193343 9.7648327772250809 -4.2940628976517754 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"3D87D8C2-43B0-A58C-4FD6-EB98FF0F3463\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"B38C9587-472E-AE2E-6963-A1B23033C336\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"1C1F28E2-4012-E661-3EE1-84AD7FB8085C\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"993AA8C2-4C06-47F7-9808-32A5E799C252\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"25129461-45BE-2012-903B-0582F9F6D376\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"F10EC166-4EB7-CE05-6F7D-5182652D3025\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube5\";\n\trename -uid \"91003C93-48A2-9DC1-3A34-7EAA399A186E\";\ncreateNode mesh -n \"pCube5Shape\" -p \"pCube5\";\n\trename -uid \"AD70B5C7-4E16-F990-4E90-3CB6607ED719\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 6 \".iog[0].og\";\n\tsetAttr \".iog[0].og[0].gcl\" -type \"componentList\" 6 \"f[0:47]\" \"f[54:479]\" \"f[486:587]\" \"f[594:611]\" \"f[618:623]\" \"f[630:1031]\";\n\tsetAttr \".iog[0].og[1].gcl\" -type \"componentList\" 1 \"f[480:485]\";\n\tsetAttr \".iog[0].og[2].gcl\" -type \"componentList\" 1 \"f[624:629]\";\n\tsetAttr \".iog[0].og[3].gcl\" -type \"componentList\" 1 \"f[612:617]\";\n\tsetAttr \".iog[0].og[4].gcl\" -type \"componentList\" 1 \"f[588:593]\";\n\tsetAttr \".iog[0].og[5].gcl\" -type \"componentList\" 1 \"f[48:53]\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.5 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 2408 \".uvst[0].uvsp\";\n\tsetAttr \".uvst[0].uvsp[0:249]\" -type \"float2\" 0.375 0 0.625 0 0.375 0.25\n\t\t 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25;\n\tsetAttr \".uvst[0].uvsp[250:499]\" 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1;\n\tsetAttr \".uvst[0].uvsp[500:749]\" 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75;\n\tsetAttr \".uvst[0].uvsp[750:999]\" 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0\n\t\t 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375\n\t\t 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625\n\t\t 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5;\n\tsetAttr \".uvst[0].uvsp[1000:1249]\" 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25;\n\tsetAttr \".uvst[0].uvsp[1250:1499]\" 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75\n\t\t 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0;\n\tsetAttr \".uvst[0].uvsp[1500:1749]\" 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25;\n\tsetAttr \".uvst[0].uvsp[1750:1999]\" 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625\n\t\t 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125\n\t\t 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75\n\t\t 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25;\n\tsetAttr \".uvst[0].uvsp[2000:2249]\" 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1;\n\tsetAttr \".uvst[0].uvsp[2250:2407]\" 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 1376 \".vt\";\n\tsetAttr \".vt[0:165]\"  -4.5 -0.5 0.5 -3.5 -0.5 0.5 -4.5 0.5 0.5 -3.5 0.5 0.5\n\t\t -4.5 0.5 -0.5 -3.5 0.5 -0.5 -4.5 -0.5 -0.5 -3.5 -0.5 -0.5 -2.5 -0.5 0.5 -1.5 -0.5 0.5\n\t\t -2.5 0.5 0.5 -1.5 0.5 0.5 -2.5 0.5 -0.5 -1.5 0.5 -0.5 -2.5 -0.5 -0.5 -1.5 -0.5 -0.5\n\t\t -10.5 -0.5 0.5 -9.5 -0.5 0.5 -10.5 0.5 0.5 -9.5 0.5 0.5 -10.5 0.5 -0.5 -9.5 0.5 -0.5\n\t\t -10.5 -0.5 -0.5 -9.5 -0.5 -0.5 -8.5 -0.5 0.5 -7.5 -0.5 0.5 -8.5 0.5 0.5 -7.5 0.5 0.5\n\t\t -8.5 0.5 -0.5 -7.5 0.5 -0.5 -8.5 -0.5 -0.5 -7.5 -0.5 -0.5 -6.5 -0.5 0.5 -5.5 -0.5 0.5\n\t\t -6.5 0.5 0.5 -5.5 0.5 0.5 -6.5 0.5 -0.5 -5.5 0.5 -0.5 -6.5 -0.5 -0.5 -5.5 -0.5 -0.5\n\t\t -12.5 -0.5 0.5 -11.5 -0.5 0.5 -12.5 0.5 0.5 -11.5 0.5 0.5 -12.5 0.5 -0.5 -11.5 0.5 -0.5\n\t\t -12.5 -0.5 -0.5 -11.5 -0.5 -0.5 3.5 -0.5 0.5 4.5 -0.5 0.5 3.5 0.5 0.5 4.5 0.5 0.5\n\t\t 3.5 0.5 -0.5 4.5 0.5 -0.5 3.5 -0.5 -0.5 4.5 -0.5 -0.5 1.5 -0.5 0.5 2.5 -0.5 0.5 1.5 0.5 0.5\n\t\t 2.5 0.5 0.5 1.5 0.5 -0.5 2.5 0.5 -0.5 1.5 -0.5 -0.5 2.5 -0.5 -0.5 -0.5 -0.5 0.5 0.5 -0.5 0.5\n\t\t -0.5 0.5 0.5 0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5\n\t\t 9.5 -0.5 0.5 10.5 -0.5 0.5 9.5 0.5 0.5 10.5 0.5 0.5 9.5 0.5 -0.5 10.5 0.5 -0.5 9.5 -0.5 -0.5\n\t\t 10.5 -0.5 -0.5 -6.5 -0.5 -1.5 -5.5 -0.5 -1.5 -6.5 0.5 -1.5 -5.5 0.5 -1.5 -6.5 0.5 -2.5\n\t\t -5.5 0.5 -2.5 -6.5 -0.5 -2.5 -5.5 -0.5 -2.5 -8.5 -0.5 -1.5 -7.5 -0.5 -1.5 -8.5 0.5 -1.5\n\t\t -7.5 0.5 -1.5 -8.5 0.5 -2.5 -7.5 0.5 -2.5 -8.5 -0.5 -2.5 -7.5 -0.5 -2.5 7.5 -0.5 0.5\n\t\t 8.5 -0.5 0.5 7.5 0.5 0.5 8.5 0.5 0.5 7.5 0.5 -0.5 8.5 0.5 -0.5 7.5 -0.5 -0.5 8.5 -0.5 -0.5\n\t\t 11.5 -0.5 0.5 12.5 -0.5 0.5 11.5 0.5 0.5 12.5 0.5 0.5 11.5 0.5 -0.5 12.5 0.5 -0.5\n\t\t 11.5 -0.5 -0.5 12.5 -0.5 -0.5 -10.5 -0.5 -1.5 -9.5 -0.5 -1.5 -10.5 0.5 -1.5 -9.5 0.5 -1.5\n\t\t -10.5 0.5 -2.5 -9.5 0.5 -2.5 -10.5 -0.5 -2.5 -9.5 -0.5 -2.5 5.5 -0.5 0.5 6.5 -0.5 0.5\n\t\t 5.5 0.5 0.5 6.5 0.5 0.5 5.5 0.5 -0.5 6.5 0.5 -0.5 5.5 -0.5 -0.5 6.5 -0.5 -0.5 -2.5 -0.5 8.5\n\t\t -1.5 -0.5 8.5 -2.5 0.5 8.5 -1.5 0.5 8.5 -2.5 0.5 7.5 -1.5 0.5 7.5 -2.5 -0.5 7.5 -1.5 -0.5 7.5\n\t\t -10.5 -0.5 8.5 -9.5 -0.5 8.5 -10.5 0.5 8.5 -9.5 0.5 8.5 -10.5 0.5 7.5 -9.5 0.5 7.5\n\t\t -10.5 -0.5 7.5 -9.5 -0.5 7.5 -8.5 -0.5 8.5 -7.5 -0.5 8.5 -8.5 0.5 8.5 -7.5 0.5 8.5\n\t\t -8.5 0.5 7.5 -7.5 0.5 7.5 -8.5 -0.5 7.5 -7.5 -0.5 7.5 -4.5 -0.5 8.5 -3.5 -0.5 8.5\n\t\t -4.5 0.5 8.5 -3.5 0.5 8.5 -4.5 0.5 7.5 -3.5 0.5 7.5 -4.5 -0.5 7.5 -3.5 -0.5 7.5 -12.5 -0.5 -5.5\n\t\t -11.5 -0.5 -5.5 -12.5 0.5 -5.5 -11.5 0.5 -5.5 -12.5 0.5 -6.5 -11.5 0.5 -6.5;\n\tsetAttr \".vt[166:331]\" -12.5 -0.5 -6.5 -11.5 -0.5 -6.5 1.5 -0.5 -5.5 2.5 -0.5 -5.5\n\t\t 1.5 0.5 -5.5 2.5 0.5 -5.5 1.5 0.5 -6.5 2.5 0.5 -6.5 1.5 -0.5 -6.5 2.5 -0.5 -6.5 3.5 -0.5 -5.5\n\t\t 4.5 -0.5 -5.5 3.5 0.5 -5.5 4.5 0.5 -5.5 3.5 0.5 -6.5 4.5 0.5 -6.5 3.5 -0.5 -6.5 4.5 -0.5 -6.5\n\t\t -0.5 -0.5 -5.5 0.5 -0.5 -5.5 -0.5 0.5 -5.5 0.5 0.5 -5.5 -0.5 0.5 -6.5 0.5 0.5 -6.5\n\t\t -0.5 -0.5 -6.5 0.5 -0.5 -6.5 -4.5 -0.5 -5.5 -3.5 -0.5 -5.5 -4.5 0.5 -5.5 -3.5 0.5 -5.5\n\t\t -4.5 0.5 -6.5 -3.5 0.5 -6.5 -4.5 -0.5 -6.5 -3.5 -0.5 -6.5 -2.5 -0.5 -5.5 -1.5 -0.5 -5.5\n\t\t -2.5 0.5 -5.5 -1.5 0.5 -5.5 -2.5 0.5 -6.5 -1.5 0.5 -6.5 -2.5 -0.5 -6.5 -1.5 -0.5 -6.5\n\t\t 9.5 -0.5 -5.5 10.5 -0.5 -5.5 9.5 0.5 -5.5 10.5 0.5 -5.5 9.5 0.5 -6.5 10.5 0.5 -6.5\n\t\t 9.5 -0.5 -6.5 10.5 -0.5 -6.5 7.5 -0.5 -5.5 8.5 -0.5 -5.5 7.5 0.5 -5.5 8.5 0.5 -5.5\n\t\t 7.5 0.5 -6.5 8.5 0.5 -6.5 7.5 -0.5 -6.5 8.5 -0.5 -6.5 11.5 -0.5 -5.5 12.5 -0.5 -5.5\n\t\t 11.5 0.5 -5.5 12.5 0.5 -5.5 11.5 0.5 -6.5 12.5 0.5 -6.5 11.5 -0.5 -6.5 12.5 -0.5 -6.5\n\t\t 5.5 -0.5 -5.5 6.5 -0.5 -5.5 5.5 0.5 -5.5 6.5 0.5 -5.5 5.5 0.5 -6.5 6.5 0.5 -6.5 5.5 -0.5 -6.5\n\t\t 6.5 -0.5 -6.5 5.5 -0.5 -3.5 6.5 -0.5 -3.5 5.5 0.5 -3.5 6.5 0.5 -3.5 5.5 0.5 -4.5\n\t\t 6.5 0.5 -4.5 5.5 -0.5 -4.5 6.5 -0.5 -4.5 -10.5 -0.5 -5.5 -9.5 -0.5 -5.5 -10.5 0.5 -5.5\n\t\t -9.5 0.5 -5.5 -10.5 0.5 -6.5 -9.5 0.5 -6.5 -10.5 -0.5 -6.5 -9.5 -0.5 -6.5 -2.5 -0.5 -3.5\n\t\t -1.5 -0.5 -3.5 -2.5 0.5 -3.5 -1.5 0.5 -3.5 -2.5 0.5 -4.5 -1.5 0.5 -4.5 -2.5 -0.5 -4.5\n\t\t -1.5 -0.5 -4.5 -4.5 -0.5 -3.5 -3.5 -0.5 -3.5 -4.5 0.5 -3.5 -3.5 0.5 -3.5 -4.5 0.5 -4.5\n\t\t -3.5 0.5 -4.5 -4.5 -0.5 -4.5 -3.5 -0.5 -4.5 -6.5 -0.5 8.5 -5.5 -0.5 8.5 -6.5 0.5 8.5\n\t\t -5.5 0.5 8.5 -6.5 0.5 7.5 -5.5 0.5 7.5 -6.5 -0.5 7.5 -5.5 -0.5 7.5 9.5 -0.5 8.5 10.5 -0.5 8.5\n\t\t 9.5 0.5 8.5 10.5 0.5 8.5 9.5 0.5 7.5 10.5 0.5 7.5 9.5 -0.5 7.5 10.5 -0.5 7.5 -0.5 -0.5 8.5\n\t\t 0.5 -0.5 8.5 -0.5 0.5 8.5 0.5 0.5 8.5 -0.5 0.5 7.5 0.5 0.5 7.5 -0.5 -0.5 7.5 0.5 -0.5 7.5\n\t\t 1.5 -0.5 8.5 2.5 -0.5 8.5 1.5 0.5 8.5 2.5 0.5 8.5 1.5 0.5 7.5 2.5 0.5 7.5 1.5 -0.5 7.5\n\t\t 2.5 -0.5 7.5 3.5 -0.5 8.5 4.5 -0.5 8.5 3.5 0.5 8.5 4.5 0.5 8.5 3.5 0.5 7.5 4.5 0.5 7.5\n\t\t 3.5 -0.5 7.5 4.5 -0.5 7.5 -8.5 -0.5 6.5 -7.5 -0.5 6.5 -8.5 0.5 6.5 -7.5 0.5 6.5 -8.5 0.5 5.5\n\t\t -7.5 0.5 5.5 -8.5 -0.5 5.5 -7.5 -0.5 5.5 -12.5 -0.5 8.5 -11.5 -0.5 8.5 -12.5 0.5 8.5\n\t\t -11.5 0.5 8.5 -12.5 0.5 7.5 -11.5 0.5 7.5 -12.5 -0.5 7.5 -11.5 -0.5 7.5 -6.5 -0.5 6.5\n\t\t -5.5 -0.5 6.5 -6.5 0.5 6.5 -5.5 0.5 6.5;\n\tsetAttr \".vt[332:497]\" -6.5 0.5 5.5 -5.5 0.5 5.5 -6.5 -0.5 5.5 -5.5 -0.5 5.5\n\t\t 11.5 -0.5 8.5 12.5 -0.5 8.5 11.5 0.5 8.5 12.5 0.5 8.5 11.5 0.5 7.5 12.5 0.5 7.5 11.5 -0.5 7.5\n\t\t 12.5 -0.5 7.5 7.5 -0.5 8.5 8.5 -0.5 8.5 7.5 0.5 8.5 8.5 0.5 8.5 7.5 0.5 7.5 8.5 0.5 7.5\n\t\t 7.5 -0.5 7.5 8.5 -0.5 7.5 1.5 -0.5 -3.5 2.5 -0.5 -3.5 1.5 0.5 -3.5 2.5 0.5 -3.5 1.5 0.5 -4.5\n\t\t 2.5 0.5 -4.5 1.5 -0.5 -4.5 2.5 -0.5 -4.5 -0.5 -0.5 -3.5 0.5 -0.5 -3.5 -0.5 0.5 -3.5\n\t\t 0.5 0.5 -3.5 -0.5 0.5 -4.5 0.5 0.5 -4.5 -0.5 -0.5 -4.5 0.5 -0.5 -4.5 -8.5 -0.5 -3.5\n\t\t -7.5 -0.5 -3.5 -8.5 0.5 -3.5 -7.5 0.5 -3.5 -8.5 0.5 -4.5 -7.5 0.5 -4.5 -8.5 -0.5 -4.5\n\t\t -7.5 -0.5 -4.5 -6.5 -0.5 -3.5 -5.5 -0.5 -3.5 -6.5 0.5 -3.5 -5.5 0.5 -3.5 -6.5 0.5 -4.5\n\t\t -5.5 0.5 -4.5 -6.5 -0.5 -4.5 -5.5 -0.5 -4.5 -12.5 -0.5 -3.5 -11.5 -0.5 -3.5 -12.5 0.5 -3.5\n\t\t -11.5 0.5 -3.5 -12.5 0.5 -4.5 -11.5 0.5 -4.5 -12.5 -0.5 -4.5 -11.5 -0.5 -4.5 3.5 -0.5 -3.5\n\t\t 4.5 -0.5 -3.5 3.5 0.5 -3.5 4.5 0.5 -3.5 3.5 0.5 -4.5 4.5 0.5 -4.5 3.5 -0.5 -4.5 4.5 -0.5 -4.5\n\t\t -10.5 -0.5 -3.5 -9.5 -0.5 -3.5 -10.5 0.5 -3.5 -9.5 0.5 -3.5 -10.5 0.5 -4.5 -9.5 0.5 -4.5\n\t\t -10.5 -0.5 -4.5 -9.5 -0.5 -4.5 5.5 -0.5 -1.5 6.5 -0.5 -1.5 5.5 0.5 -1.5 6.5 0.5 -1.5\n\t\t 5.5 0.5 -2.5 6.5 0.5 -2.5 5.5 -0.5 -2.5 6.5 -0.5 -2.5 11.5 -0.5 -1.5 12.5 -0.5 -1.5\n\t\t 11.5 0.5 -1.5 12.5 0.5 -1.5 11.5 0.5 -2.5 12.5 0.5 -2.5 11.5 -0.5 -2.5 12.5 -0.5 -2.5\n\t\t 7.5 -0.5 -1.5 8.5 -0.5 -1.5 7.5 0.5 -1.5 8.5 0.5 -1.5 7.5 0.5 -2.5 8.5 0.5 -2.5 7.5 -0.5 -2.5\n\t\t 8.5 -0.5 -2.5 9.5 -0.5 -1.5 10.5 -0.5 -1.5 9.5 0.5 -1.5 10.5 0.5 -1.5 9.5 0.5 -2.5\n\t\t 10.5 0.5 -2.5 9.5 -0.5 -2.5 10.5 -0.5 -2.5 -2.5 -0.5 -1.5 -1.5 -0.5 -1.5 -2.5 0.5 -1.5\n\t\t -1.5 0.5 -1.5 -2.5 0.5 -2.5 -1.5 0.5 -2.5 -2.5 -0.5 -2.5 -1.5 -0.5 -2.5 -4.5 -0.5 -1.5\n\t\t -3.5 -0.5 -1.5 -4.5 0.5 -1.5 -3.5 0.5 -1.5 -4.5 0.5 -2.5 -3.5 0.5 -2.5 -4.5 -0.5 -2.5\n\t\t -3.5 -0.5 -2.5 -6.5 -0.5 -5.5 -5.5 -0.5 -5.5 -6.5 0.5 -5.5 -5.5 0.5 -5.5 -6.5 0.5 -6.5\n\t\t -5.5 0.5 -6.5 -6.5 -0.5 -6.5 -5.5 -0.5 -6.5 -8.5 -0.5 -5.5 -7.5 -0.5 -5.5 -8.5 0.5 -5.5\n\t\t -7.5 0.5 -5.5 -8.5 0.5 -6.5 -7.5 0.5 -6.5 -8.5 -0.5 -6.5 -7.5 -0.5 -6.5 11.5 -0.5 -3.5\n\t\t 12.5 -0.5 -3.5 11.5 0.5 -3.5 12.5 0.5 -3.5 11.5 0.5 -4.5 12.5 0.5 -4.5 11.5 -0.5 -4.5\n\t\t 12.5 -0.5 -4.5 7.5 -0.5 -3.5 8.5 -0.5 -3.5 7.5 0.5 -3.5 8.5 0.5 -3.5 7.5 0.5 -4.5\n\t\t 8.5 0.5 -4.5 7.5 -0.5 -4.5 8.5 -0.5 -4.5 9.5 -0.5 -3.5 10.5 -0.5 -3.5 9.5 0.5 -3.5\n\t\t 10.5 0.5 -3.5 9.5 0.5 -4.5 10.5 0.5 -4.5 9.5 -0.5 -4.5 10.5 -0.5 -4.5 -0.5 -0.5 -1.5\n\t\t 0.5 -0.5 -1.5;\n\tsetAttr \".vt[498:663]\" -0.5 0.5 -1.5 0.5 0.5 -1.5 -0.5 0.5 -2.5 0.5 0.5 -2.5\n\t\t -0.5 -0.5 -2.5 0.5 -0.5 -2.5 3.5 -0.5 -1.5 4.5 -0.5 -1.5 3.5 0.5 -1.5 4.5 0.5 -1.5\n\t\t 3.5 0.5 -2.5 4.5 0.5 -2.5 3.5 -0.5 -2.5 4.5 -0.5 -2.5 1.5 -0.5 -1.5 2.5 -0.5 -1.5\n\t\t 1.5 0.5 -1.5 2.5 0.5 -1.5 1.5 0.5 -2.5 2.5 0.5 -2.5 1.5 -0.5 -2.5 2.5 -0.5 -2.5 -12.5 -0.5 -1.5\n\t\t -11.5 -0.5 -1.5 -12.5 0.5 -1.5 -11.5 0.5 -1.5 -12.5 0.5 -2.5 -11.5 0.5 -2.5 -12.5 -0.5 -2.5\n\t\t -11.5 -0.5 -2.5 11.5 -0.5 2.5 12.5 -0.5 2.5 11.5 0.5 2.5 12.5 0.5 2.5 11.5 0.5 1.5\n\t\t 12.5 0.5 1.5 11.5 -0.5 1.5 12.5 -0.5 1.5 7.5 -0.5 2.5 8.5 -0.5 2.5 7.5 0.5 2.5 8.5 0.5 2.5\n\t\t 7.5 0.5 1.5 8.5 0.5 1.5 7.5 -0.5 1.5 8.5 -0.5 1.5 9.5 -0.5 2.5 10.5 -0.5 2.5 9.5 0.5 2.5\n\t\t 10.5 0.5 2.5 9.5 0.5 1.5 10.5 0.5 1.5 9.5 -0.5 1.5 10.5 -0.5 1.5 -2.5 -0.5 2.5 -1.5 -0.5 2.5\n\t\t -2.5 0.5 2.5 -1.5 0.5 2.5 -2.5 0.5 1.5 -1.5 0.5 1.5 -2.5 -0.5 1.5 -1.5 -0.5 1.5 -4.5 -0.5 2.5\n\t\t -3.5 -0.5 2.5 -4.5 0.5 2.5 -3.5 0.5 2.5 -4.5 0.5 1.5 -3.5 0.5 1.5 -4.5 -0.5 1.5 -3.5 -0.5 1.5\n\t\t -0.5 -0.5 2.5 0.5 -0.5 2.5 -0.5 0.5 2.5 0.5 0.5 2.5 -0.5 0.5 1.5 0.5 0.5 1.5 -0.5 -0.5 1.5\n\t\t 0.5 -0.5 1.5 3.5 -0.5 2.5 4.5 -0.5 2.5 3.5 0.5 2.5 4.5 0.5 2.5 3.5 0.5 1.5 4.5 0.5 1.5\n\t\t 3.5 -0.5 1.5 4.5 -0.5 1.5 1.5 -0.5 2.5 2.5 -0.5 2.5 1.5 0.5 2.5 2.5 0.5 2.5 1.5 0.5 1.5\n\t\t 2.5 0.5 1.5 1.5 -0.5 1.5 2.5 -0.5 1.5 -12.5 -0.5 2.5 -11.5 -0.5 2.5 -12.5 0.5 2.5\n\t\t -11.5 0.5 2.5 -12.5 0.5 1.5 -11.5 0.5 1.5 -12.5 -0.5 1.5 -11.5 -0.5 1.5 5.5 -0.5 8.5\n\t\t 6.5 -0.5 8.5 5.5 0.5 8.5 6.5 0.5 8.5 5.5 0.5 7.5 6.5 0.5 7.5 5.5 -0.5 7.5 6.5 -0.5 7.5\n\t\t -10.5 -0.5 6.5 -9.5 -0.5 6.5 -10.5 0.5 6.5 -9.5 0.5 6.5 -10.5 0.5 5.5 -9.5 0.5 5.5\n\t\t -10.5 -0.5 5.5 -9.5 -0.5 5.5 -10.5 -0.5 -11.5 -9.5 -0.5 -11.5 -10.5 0.5 -11.5 -9.5 0.5 -11.5\n\t\t -10.5 0.5 -12.5 -9.5 0.5 -12.5 -10.5 -0.5 -12.5 -9.5 -0.5 -12.5 -6.5 -0.5 -11.5 -5.5 -0.5 -11.5\n\t\t -6.5 0.5 -11.5 -5.5 0.5 -11.5 -6.5 0.5 -12.5 -5.5 0.5 -12.5 -6.5 -0.5 -12.5 -5.5 -0.5 -12.5\n\t\t 1.5 -0.5 -11.5 2.5 -0.5 -11.5 1.5 0.5 -11.5 2.5 0.5 -11.5 1.5 0.5 -12.5 2.5 0.5 -12.5\n\t\t 1.5 -0.5 -12.5 2.5 -0.5 -12.5 -12.5 -0.5 -11.5 -11.5 -0.5 -11.5 -12.5 0.5 -11.5 -11.5 0.5 -11.5\n\t\t -12.5 0.5 -12.5 -11.5 0.5 -12.5 -12.5 -0.5 -12.5 -11.5 -0.5 -12.5 -4.5 -0.5 -11.5\n\t\t -3.5 -0.5 -11.5 -4.5 0.5 -11.5 -3.5 0.5 -11.5 -4.5 0.5 -12.5 -3.5 0.5 -12.5 -4.5 -0.5 -12.5\n\t\t -3.5 -0.5 -12.5 -0.5 -0.5 -11.5 0.5 -0.5 -11.5 -0.5 0.5 -11.5 0.5 0.5 -11.5 -0.5 0.5 -12.5\n\t\t 0.5 0.5 -12.5 -0.5 -0.5 -12.5 0.5 -0.5 -12.5;\n\tsetAttr \".vt[664:829]\" -2.5 -0.5 12.5 -1.5 -0.5 12.5 -2.5 0.5 12.5 -1.5 0.5 12.5\n\t\t -2.5 0.5 11.5 -1.5 0.5 11.5 -2.5 -0.5 11.5 -1.5 -0.5 11.5 -0.5 -0.5 10.5 0.5 -0.5 10.5\n\t\t -0.5 0.5 10.5 0.5 0.5 10.5 -0.5 0.5 9.5 0.5 0.5 9.5 -0.5 -0.5 9.5 0.5 -0.5 9.5 9.5 -0.5 8.5\n\t\t 10.5 -0.5 8.5 9.5 0.5 8.5 10.5 0.5 8.5 9.5 0.5 7.5 10.5 0.5 7.5 9.5 -0.5 7.5 10.5 -0.5 7.5\n\t\t 5.5 -0.5 -11.5 6.5 -0.5 -11.5 5.5 0.5 -11.5 6.5 0.5 -11.5 5.5 0.5 -12.5 6.5 0.5 -12.5\n\t\t 5.5 -0.5 -12.5 6.5 -0.5 -12.5 -4.5 -0.5 10.5 -3.5 -0.5 10.5 -4.5 0.5 10.5 -3.5 0.5 10.5\n\t\t -4.5 0.5 9.5 -3.5 0.5 9.5 -4.5 -0.5 9.5 -3.5 -0.5 9.5 1.5 -0.5 10.5 2.5 -0.5 10.5\n\t\t 1.5 0.5 10.5 2.5 0.5 10.5 1.5 0.5 9.5 2.5 0.5 9.5 1.5 -0.5 9.5 2.5 -0.5 9.5 3.5 -0.5 10.5\n\t\t 4.5 -0.5 10.5 3.5 0.5 10.5 4.5 0.5 10.5 3.5 0.5 9.5 4.5 0.5 9.5 3.5 -0.5 9.5 4.5 -0.5 9.5\n\t\t 9.5 -0.5 -11.5 10.5 -0.5 -11.5 9.5 0.5 -11.5 10.5 0.5 -11.5 9.5 0.5 -12.5 10.5 0.5 -12.5\n\t\t 9.5 -0.5 -12.5 10.5 -0.5 -12.5 7.5 -0.5 -11.5 8.5 -0.5 -11.5 7.5 0.5 -11.5 8.5 0.5 -11.5\n\t\t 7.5 0.5 -12.5 8.5 0.5 -12.5 7.5 -0.5 -12.5 8.5 -0.5 -12.5 7.5 -0.5 8.5 8.5 -0.5 8.5\n\t\t 7.5 0.5 8.5 8.5 0.5 8.5 7.5 0.5 7.5 8.5 0.5 7.5 7.5 -0.5 7.5 8.5 -0.5 7.5 11.5 -0.5 8.5\n\t\t 12.5 -0.5 8.5 11.5 0.5 8.5 12.5 0.5 8.5 11.5 0.5 7.5 12.5 0.5 7.5 11.5 -0.5 7.5 12.5 -0.5 7.5\n\t\t -8.5 -0.5 -11.5 -7.5 -0.5 -11.5 -8.5 0.5 -11.5 -7.5 0.5 -11.5 -8.5 0.5 -12.5 -7.5 0.5 -12.5\n\t\t -8.5 -0.5 -12.5 -7.5 -0.5 -12.5 7.5 -0.5 12.5 8.5 -0.5 12.5 7.5 0.5 12.5 8.5 0.5 12.5\n\t\t 7.5 0.5 11.5 8.5 0.5 11.5 7.5 -0.5 11.5 8.5 -0.5 11.5 5.5 -0.5 12.5 6.5 -0.5 12.5\n\t\t 5.5 0.5 12.5 6.5 0.5 12.5 5.5 0.5 11.5 6.5 0.5 11.5 5.5 -0.5 11.5 6.5 -0.5 11.5 -10.5 -0.5 10.5\n\t\t -9.5 -0.5 10.5 -10.5 0.5 10.5 -9.5 0.5 10.5 -10.5 0.5 9.5 -9.5 0.5 9.5 -10.5 -0.5 9.5\n\t\t -9.5 -0.5 9.5 -12.5 -0.5 12.5 -11.5 -0.5 12.5 -12.5 0.5 12.5 -11.5 0.5 12.5 -12.5 0.5 11.5\n\t\t -11.5 0.5 11.5 -12.5 -0.5 11.5 -11.5 -0.5 11.5 -6.5 -0.5 10.5 -5.5 -0.5 10.5 -6.5 0.5 10.5\n\t\t -5.5 0.5 10.5 -6.5 0.5 9.5 -5.5 0.5 9.5 -6.5 -0.5 9.5 -5.5 -0.5 9.5 3.5 -0.5 -11.5\n\t\t 4.5 -0.5 -11.5 3.5 0.5 -11.5 4.5 0.5 -11.5 3.5 0.5 -12.5 4.5 0.5 -12.5 3.5 -0.5 -12.5\n\t\t 4.5 -0.5 -12.5 -12.5 -0.5 10.5 -11.5 -0.5 10.5 -12.5 0.5 10.5 -11.5 0.5 10.5 -12.5 0.5 9.5\n\t\t -11.5 0.5 9.5 -12.5 -0.5 9.5 -11.5 -0.5 9.5 11.5 -0.5 -11.5 12.5 -0.5 -11.5 11.5 0.5 -11.5\n\t\t 12.5 0.5 -11.5 11.5 0.5 -12.5 12.5 0.5 -12.5 11.5 -0.5 -12.5 12.5 -0.5 -12.5 -2.5 -0.5 -11.5\n\t\t -1.5 -0.5 -11.5 -2.5 0.5 -11.5 -1.5 0.5 -11.5 -2.5 0.5 -12.5 -1.5 0.5 -12.5;\n\tsetAttr \".vt[830:995]\" -2.5 -0.5 -12.5 -1.5 -0.5 -12.5 11.5 -0.5 12.5 12.5 -0.5 12.5\n\t\t 11.5 0.5 12.5 12.5 0.5 12.5 11.5 0.5 11.5 12.5 0.5 11.5 11.5 -0.5 11.5 12.5 -0.5 11.5\n\t\t 3.5 -0.5 12.5 4.5 -0.5 12.5 3.5 0.5 12.5 4.5 0.5 12.5 3.5 0.5 11.5 4.5 0.5 11.5 3.5 -0.5 11.5\n\t\t 4.5 -0.5 11.5 -8.5 -0.5 10.5 -7.5 -0.5 10.5 -8.5 0.5 10.5 -7.5 0.5 10.5 -8.5 0.5 9.5\n\t\t -7.5 0.5 9.5 -8.5 -0.5 9.5 -7.5 -0.5 9.5 -4.5 -0.5 12.5 -3.5 -0.5 12.5 -4.5 0.5 12.5\n\t\t -3.5 0.5 12.5 -4.5 0.5 11.5 -3.5 0.5 11.5 -4.5 -0.5 11.5 -3.5 -0.5 11.5 -6.5 -0.5 12.5\n\t\t -5.5 -0.5 12.5 -6.5 0.5 12.5 -5.5 0.5 12.5 -6.5 0.5 11.5 -5.5 0.5 11.5 -6.5 -0.5 11.5\n\t\t -5.5 -0.5 11.5 9.5 -0.5 12.5 10.5 -0.5 12.5 9.5 0.5 12.5 10.5 0.5 12.5 9.5 0.5 11.5\n\t\t 10.5 0.5 11.5 9.5 -0.5 11.5 10.5 -0.5 11.5 -0.5 -0.5 12.5 0.5 -0.5 12.5 -0.5 0.5 12.5\n\t\t 0.5 0.5 12.5 -0.5 0.5 11.5 0.5 0.5 11.5 -0.5 -0.5 11.5 0.5 -0.5 11.5 -10.5 -0.5 12.5\n\t\t -9.5 -0.5 12.5 -10.5 0.5 12.5 -9.5 0.5 12.5 -10.5 0.5 11.5 -9.5 0.5 11.5 -10.5 -0.5 11.5\n\t\t -9.5 -0.5 11.5 -8.5 -0.5 12.5 -7.5 -0.5 12.5 -8.5 0.5 12.5 -7.5 0.5 12.5 -8.5 0.5 11.5\n\t\t -7.5 0.5 11.5 -8.5 -0.5 11.5 -7.5 -0.5 11.5 1.5 -0.5 12.5 2.5 -0.5 12.5 1.5 0.5 12.5\n\t\t 2.5 0.5 12.5 1.5 0.5 11.5 2.5 0.5 11.5 1.5 -0.5 11.5 2.5 -0.5 11.5 9.5 -0.5 -7.5\n\t\t 10.5 -0.5 -7.5 9.5 0.5 -7.5 10.5 0.5 -7.5 9.5 0.5 -8.5 10.5 0.5 -8.5 9.5 -0.5 -8.5\n\t\t 10.5 -0.5 -8.5 7.5 -0.5 -7.5 8.5 -0.5 -7.5 7.5 0.5 -7.5 8.5 0.5 -7.5 7.5 0.5 -8.5\n\t\t 8.5 0.5 -8.5 7.5 -0.5 -8.5 8.5 -0.5 -8.5 11.5 -0.5 -7.5 12.5 -0.5 -7.5 11.5 0.5 -7.5\n\t\t 12.5 0.5 -7.5 11.5 0.5 -8.5 12.5 0.5 -8.5 11.5 -0.5 -8.5 12.5 -0.5 -8.5 -8.5 -0.5 -9.5\n\t\t -7.5 -0.5 -9.5 -8.5 0.5 -9.5 -7.5 0.5 -9.5 -8.5 0.5 -10.5 -7.5 0.5 -10.5 -8.5 -0.5 -10.5\n\t\t -7.5 -0.5 -10.5 5.5 -0.5 -9.5 6.5 -0.5 -9.5 5.5 0.5 -9.5 6.5 0.5 -9.5 5.5 0.5 -10.5\n\t\t 6.5 0.5 -10.5 5.5 -0.5 -10.5 6.5 -0.5 -10.5 5.5 -0.5 -7.5 6.5 -0.5 -7.5 5.5 0.5 -7.5\n\t\t 6.5 0.5 -7.5 5.5 0.5 -8.5 6.5 0.5 -8.5 5.5 -0.5 -8.5 6.5 -0.5 -8.5 9.5 -0.5 -9.5\n\t\t 10.5 -0.5 -9.5 9.5 0.5 -9.5 10.5 0.5 -9.5 9.5 0.5 -10.5 10.5 0.5 -10.5 9.5 -0.5 -10.5\n\t\t 10.5 -0.5 -10.5 7.5 -0.5 -9.5 8.5 -0.5 -9.5 7.5 0.5 -9.5 8.5 0.5 -9.5 7.5 0.5 -10.5\n\t\t 8.5 0.5 -10.5 7.5 -0.5 -10.5 8.5 -0.5 -10.5 11.5 -0.5 -9.5 12.5 -0.5 -9.5 11.5 0.5 -9.5\n\t\t 12.5 0.5 -9.5 11.5 0.5 -10.5 12.5 0.5 -10.5 11.5 -0.5 -10.5 12.5 -0.5 -10.5 -2.5 -0.5 -9.5\n\t\t -1.5 -0.5 -9.5 -2.5 0.5 -9.5 -1.5 0.5 -9.5 -2.5 0.5 -10.5 -1.5 0.5 -10.5 -2.5 -0.5 -10.5\n\t\t -1.5 -0.5 -10.5 3.5 -0.5 -9.5 4.5 -0.5 -9.5 3.5 0.5 -9.5 4.5 0.5 -9.5;\n\tsetAttr \".vt[996:1161]\" 3.5 0.5 -10.5 4.5 0.5 -10.5 3.5 -0.5 -10.5 4.5 -0.5 -10.5\n\t\t -0.5 -0.5 -9.5 0.5 -0.5 -9.5 -0.5 0.5 -9.5 0.5 0.5 -9.5 -0.5 0.5 -10.5 0.5 0.5 -10.5\n\t\t -0.5 -0.5 -10.5 0.5 -0.5 -10.5 -4.5 -0.5 -9.5 -3.5 -0.5 -9.5 -4.5 0.5 -9.5 -3.5 0.5 -9.5\n\t\t -4.5 0.5 -10.5 -3.5 0.5 -10.5 -4.5 -0.5 -10.5 -3.5 -0.5 -10.5 -12.5 -0.5 -9.5 -11.5 -0.5 -9.5\n\t\t -12.5 0.5 -9.5 -11.5 0.5 -9.5 -12.5 0.5 -10.5 -11.5 0.5 -10.5 -12.5 -0.5 -10.5 -11.5 -0.5 -10.5\n\t\t 1.5 -0.5 -9.5 2.5 -0.5 -9.5 1.5 0.5 -9.5 2.5 0.5 -9.5 1.5 0.5 -10.5 2.5 0.5 -10.5\n\t\t 1.5 -0.5 -10.5 2.5 -0.5 -10.5 5.5 -0.5 10.5 6.5 -0.5 10.5 5.5 0.5 10.5 6.5 0.5 10.5\n\t\t 5.5 0.5 9.5 6.5 0.5 9.5 5.5 -0.5 9.5 6.5 -0.5 9.5 11.5 -0.5 10.5 12.5 -0.5 10.5 11.5 0.5 10.5\n\t\t 12.5 0.5 10.5 11.5 0.5 9.5 12.5 0.5 9.5 11.5 -0.5 9.5 12.5 -0.5 9.5 7.5 -0.5 10.5\n\t\t 8.5 -0.5 10.5 7.5 0.5 10.5 8.5 0.5 10.5 7.5 0.5 9.5 8.5 0.5 9.5 7.5 -0.5 9.5 8.5 -0.5 9.5\n\t\t 9.5 -0.5 10.5 10.5 -0.5 10.5 9.5 0.5 10.5 10.5 0.5 10.5 9.5 0.5 9.5 10.5 0.5 9.5\n\t\t 9.5 -0.5 9.5 10.5 -0.5 9.5 -2.5 -0.5 10.5 -1.5 -0.5 10.5 -2.5 0.5 10.5 -1.5 0.5 10.5\n\t\t -2.5 0.5 9.5 -1.5 0.5 9.5 -2.5 -0.5 9.5 -1.5 -0.5 9.5 -12.5 -0.5 6.5 -11.5 -0.5 6.5\n\t\t -12.5 0.5 6.5 -11.5 0.5 6.5 -12.5 0.5 5.5 -11.5 0.5 5.5 -12.5 -0.5 5.5 -11.5 -0.5 5.5\n\t\t 1.5 -0.5 6.5 2.5 -0.5 6.5 1.5 0.5 6.5 2.5 0.5 6.5 1.5 0.5 5.5 2.5 0.5 5.5 1.5 -0.5 5.5\n\t\t 2.5 -0.5 5.5 3.5 -0.5 6.5 4.5 -0.5 6.5 3.5 0.5 6.5 4.5 0.5 6.5 3.5 0.5 5.5 4.5 0.5 5.5\n\t\t 3.5 -0.5 5.5 4.5 -0.5 5.5 -0.5 -0.5 6.5 0.5 -0.5 6.5 -0.5 0.5 6.5 0.5 0.5 6.5 -0.5 0.5 5.5\n\t\t 0.5 0.5 5.5 -0.5 -0.5 5.5 0.5 -0.5 5.5 9.5 -0.5 4.5 10.5 -0.5 4.5 9.5 0.5 4.5 10.5 0.5 4.5\n\t\t 9.5 0.5 3.5 10.5 0.5 3.5 9.5 -0.5 3.5 10.5 -0.5 3.5 7.5 -0.5 4.5 8.5 -0.5 4.5 7.5 0.5 4.5\n\t\t 8.5 0.5 4.5 7.5 0.5 3.5 8.5 0.5 3.5 7.5 -0.5 3.5 8.5 -0.5 3.5 11.5 -0.5 4.5 12.5 -0.5 4.5\n\t\t 11.5 0.5 4.5 12.5 0.5 4.5 11.5 0.5 3.5 12.5 0.5 3.5 11.5 -0.5 3.5 12.5 -0.5 3.5 -8.5 -0.5 2.5\n\t\t -7.5 -0.5 2.5 -8.5 0.5 2.5 -7.5 0.5 2.5 -8.5 0.5 1.5 -7.5 0.5 1.5 -8.5 -0.5 1.5 -7.5 -0.5 1.5\n\t\t -6.5 -0.5 2.5 -5.5 -0.5 2.5 -6.5 0.5 2.5 -5.5 0.5 2.5 -6.5 0.5 1.5 -5.5 0.5 1.5 -6.5 -0.5 1.5\n\t\t -5.5 -0.5 1.5 -4.5 -0.5 6.5 -3.5 -0.5 6.5 -4.5 0.5 6.5 -3.5 0.5 6.5 -4.5 0.5 5.5\n\t\t -3.5 0.5 5.5 -4.5 -0.5 5.5 -3.5 -0.5 5.5 -2.5 -0.5 6.5 -1.5 -0.5 6.5 -2.5 0.5 6.5\n\t\t -1.5 0.5 6.5 -2.5 0.5 5.5 -1.5 0.5 5.5 -2.5 -0.5 5.5 -1.5 -0.5 5.5 9.5 -0.5 6.5 10.5 -0.5 6.5;\n\tsetAttr \".vt[1162:1327]\" 9.5 0.5 6.5 10.5 0.5 6.5 9.5 0.5 5.5 10.5 0.5 5.5 9.5 -0.5 5.5\n\t\t 10.5 -0.5 5.5 7.5 -0.5 6.5 8.5 -0.5 6.5 7.5 0.5 6.5 8.5 0.5 6.5 7.5 0.5 5.5 8.5 0.5 5.5\n\t\t 7.5 -0.5 5.5 8.5 -0.5 5.5 11.5 -0.5 6.5 12.5 -0.5 6.5 11.5 0.5 6.5 12.5 0.5 6.5 11.5 0.5 5.5\n\t\t 12.5 0.5 5.5 11.5 -0.5 5.5 12.5 -0.5 5.5 5.5 -0.5 6.5 6.5 -0.5 6.5 5.5 0.5 6.5 6.5 0.5 6.5\n\t\t 5.5 0.5 5.5 6.5 0.5 5.5 5.5 -0.5 5.5 6.5 -0.5 5.5 -10.5 -0.5 4.5 -9.5 -0.5 4.5 -10.5 0.5 4.5\n\t\t -9.5 0.5 4.5 -10.5 0.5 3.5 -9.5 0.5 3.5 -10.5 -0.5 3.5 -9.5 -0.5 3.5 3.5 -0.5 4.5\n\t\t 4.5 -0.5 4.5 3.5 0.5 4.5 4.5 0.5 4.5 3.5 0.5 3.5 4.5 0.5 3.5 3.5 -0.5 3.5 4.5 -0.5 3.5\n\t\t -12.5 -0.5 4.5 -11.5 -0.5 4.5 -12.5 0.5 4.5 -11.5 0.5 4.5 -12.5 0.5 3.5 -11.5 0.5 3.5\n\t\t -12.5 -0.5 3.5 -11.5 -0.5 3.5 -6.5 -0.5 4.5 -5.5 -0.5 4.5 -6.5 0.5 4.5 -5.5 0.5 4.5\n\t\t -6.5 0.5 3.5 -5.5 0.5 3.5 -6.5 -0.5 3.5 -5.5 -0.5 3.5 -8.5 -0.5 4.5 -7.5 -0.5 4.5\n\t\t -8.5 0.5 4.5 -7.5 0.5 4.5 -8.5 0.5 3.5 -7.5 0.5 3.5 -8.5 -0.5 3.5 -7.5 -0.5 3.5 -0.5 -0.5 4.5\n\t\t 0.5 -0.5 4.5 -0.5 0.5 4.5 0.5 0.5 4.5 -0.5 0.5 3.5 0.5 0.5 3.5 -0.5 -0.5 3.5 0.5 -0.5 3.5\n\t\t 1.5 -0.5 4.5 2.5 -0.5 4.5 1.5 0.5 4.5 2.5 0.5 4.5 1.5 0.5 3.5 2.5 0.5 3.5 1.5 -0.5 3.5\n\t\t 2.5 -0.5 3.5 -4.5 -0.5 4.5 -3.5 -0.5 4.5 -4.5 0.5 4.5 -3.5 0.5 4.5 -4.5 0.5 3.5 -3.5 0.5 3.5\n\t\t -4.5 -0.5 3.5 -3.5 -0.5 3.5 -2.5 -0.5 4.5 -1.5 -0.5 4.5 -2.5 0.5 4.5 -1.5 0.5 4.5\n\t\t -2.5 0.5 3.5 -1.5 0.5 3.5 -2.5 -0.5 3.5 -1.5 -0.5 3.5 -10.5 -0.5 2.5 -9.5 -0.5 2.5\n\t\t -10.5 0.5 2.5 -9.5 0.5 2.5 -10.5 0.5 1.5 -9.5 0.5 1.5 -10.5 -0.5 1.5 -9.5 -0.5 1.5\n\t\t 5.5 -0.5 4.5 6.5 -0.5 4.5 5.5 0.5 4.5 6.5 0.5 4.5 5.5 0.5 3.5 6.5 0.5 3.5 5.5 -0.5 3.5\n\t\t 6.5 -0.5 3.5 5.5 -0.5 2.5 6.5 -0.5 2.5 5.5 0.5 2.5 6.5 0.5 2.5 5.5 0.5 1.5 6.5 0.5 1.5\n\t\t 5.5 -0.5 1.5 6.5 -0.5 1.5 -6.5 -0.5 -9.5 -5.5 -0.5 -9.5 -6.5 0.5 -9.5 -5.5 0.5 -9.5\n\t\t -6.5 0.5 -10.5 -5.5 0.5 -10.5 -6.5 -0.5 -10.5 -5.5 -0.5 -10.5 -10.5 -0.5 -7.5 -9.5 -0.5 -7.5\n\t\t -10.5 0.5 -7.5 -9.5 0.5 -7.5 -10.5 0.5 -8.5 -9.5 0.5 -8.5 -10.5 -0.5 -8.5 -9.5 -0.5 -8.5\n\t\t 3.5 -0.5 -7.5 4.5 -0.5 -7.5 3.5 0.5 -7.5 4.5 0.5 -7.5 3.5 0.5 -8.5 4.5 0.5 -8.5 3.5 -0.5 -8.5\n\t\t 4.5 -0.5 -8.5 -12.5 -0.5 -7.5 -11.5 -0.5 -7.5 -12.5 0.5 -7.5 -11.5 0.5 -7.5 -12.5 0.5 -8.5\n\t\t -11.5 0.5 -8.5 -12.5 -0.5 -8.5 -11.5 -0.5 -8.5 -6.5 -0.5 -7.5 -5.5 -0.5 -7.5 -6.5 0.5 -7.5\n\t\t -5.5 0.5 -7.5 -6.5 0.5 -8.5 -5.5 0.5 -8.5 -6.5 -0.5 -8.5 -5.5 -0.5 -8.5;\n\tsetAttr \".vt[1328:1375]\" -8.5 -0.5 -7.5 -7.5 -0.5 -7.5 -8.5 0.5 -7.5 -7.5 0.5 -7.5\n\t\t -8.5 0.5 -8.5 -7.5 0.5 -8.5 -8.5 -0.5 -8.5 -7.5 -0.5 -8.5 -0.5 -0.5 -7.5 0.5 -0.5 -7.5\n\t\t -0.5 0.5 -7.5 0.5 0.5 -7.5 -0.5 0.5 -8.5 0.5 0.5 -8.5 -0.5 -0.5 -8.5 0.5 -0.5 -8.5\n\t\t 1.5 -0.5 -7.5 2.5 -0.5 -7.5 1.5 0.5 -7.5 2.5 0.5 -7.5 1.5 0.5 -8.5 2.5 0.5 -8.5 1.5 -0.5 -8.5\n\t\t 2.5 -0.5 -8.5 -4.5 -0.5 -7.5 -3.5 -0.5 -7.5 -4.5 0.5 -7.5 -3.5 0.5 -7.5 -4.5 0.5 -8.5\n\t\t -3.5 0.5 -8.5 -4.5 -0.5 -8.5 -3.5 -0.5 -8.5 -2.5 -0.5 -7.5 -1.5 -0.5 -7.5 -2.5 0.5 -7.5\n\t\t -1.5 0.5 -7.5 -2.5 0.5 -8.5 -1.5 0.5 -8.5 -2.5 -0.5 -8.5 -1.5 -0.5 -8.5 -10.5 -0.5 -9.5\n\t\t -9.5 -0.5 -9.5 -10.5 0.5 -9.5 -9.5 0.5 -9.5 -10.5 0.5 -10.5 -9.5 0.5 -10.5 -10.5 -0.5 -10.5\n\t\t -9.5 -0.5 -10.5;\n\tsetAttr -s 2064 \".ed\";\n\tsetAttr \".ed[0:165]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0\n\t\t 5 7 0 6 0 0 7 1 0 8 9 0 10 11 0 12 13 0 14 15 0 8 10 0 9 11 0 10 12 0 11 13 0 12 14 0\n\t\t 13 15 0 14 8 0 15 9 0 16 17 0 18 19 0 20 21 0 22 23 0 16 18 0 17 19 0 18 20 0 19 21 0\n\t\t 20 22 0 21 23 0 22 16 0 23 17 0 24 25 0 26 27 0 28 29 0 30 31 0 24 26 0 25 27 0 26 28 0\n\t\t 27 29 0 28 30 0 29 31 0 30 24 0 31 25 0 32 33 0 34 35 0 36 37 0 38 39 0 32 34 0 33 35 0\n\t\t 34 36 0 35 37 0 36 38 0 37 39 0 38 32 0 39 33 0 40 41 0 42 43 0 44 45 0 46 47 0 40 42 0\n\t\t 41 43 0 42 44 0 43 45 0 44 46 0 45 47 0 46 40 0 47 41 0 48 49 0 50 51 0 52 53 0 54 55 0\n\t\t 48 50 0 49 51 0 50 52 0 51 53 0 52 54 0 53 55 0 54 48 0 55 49 0 56 57 0 58 59 0 60 61 0\n\t\t 62 63 0 56 58 0 57 59 0 58 60 0 59 61 0 60 62 0 61 63 0 62 56 0 63 57 0 64 65 0 66 67 0\n\t\t 68 69 0 70 71 0 64 66 0 65 67 0 66 68 0 67 69 0 68 70 0 69 71 0 70 64 0 71 65 0 72 73 0\n\t\t 74 75 0 76 77 0 78 79 0 72 74 0 73 75 0 74 76 0 75 77 0 76 78 0 77 79 0 78 72 0 79 73 0\n\t\t 80 81 0 82 83 0 84 85 0 86 87 0 80 82 0 81 83 0 82 84 0 83 85 0 84 86 0 85 87 0 86 80 0\n\t\t 87 81 0 88 89 0 90 91 0 92 93 0 94 95 0 88 90 0 89 91 0 90 92 0 91 93 0 92 94 0 93 95 0\n\t\t 94 88 0 95 89 0 96 97 0 98 99 0 100 101 0 102 103 0 96 98 0 97 99 0 98 100 0 99 101 0\n\t\t 100 102 0 101 103 0 102 96 0 103 97 0 104 105 0 106 107 0 108 109 0 110 111 0 104 106 0\n\t\t 105 107 0 106 108 0 107 109 0 108 110 0 109 111 0;\n\tsetAttr \".ed[166:331]\" 110 104 0 111 105 0 112 113 0 114 115 0 116 117 0 118 119 0\n\t\t 112 114 0 113 115 0 114 116 0 115 117 0 116 118 0 117 119 0 118 112 0 119 113 0 120 121 0\n\t\t 122 123 0 124 125 0 126 127 0 120 122 0 121 123 0 122 124 0 123 125 0 124 126 0 125 127 0\n\t\t 126 120 0 127 121 0 128 129 0 130 131 0 132 133 0 134 135 0 128 130 0 129 131 0 130 132 0\n\t\t 131 133 0 132 134 0 133 135 0 134 128 0 135 129 0 136 137 0 138 139 0 140 141 0 142 143 0\n\t\t 136 138 0 137 139 0 138 140 0 139 141 0 140 142 0 141 143 0 142 136 0 143 137 0 144 145 0\n\t\t 146 147 0 148 149 0 150 151 0 144 146 0 145 147 0 146 148 0 147 149 0 148 150 0 149 151 0\n\t\t 150 144 0 151 145 0 152 153 0 154 155 0 156 157 0 158 159 0 152 154 0 153 155 0 154 156 0\n\t\t 155 157 0 156 158 0 157 159 0 158 152 0 159 153 0 160 161 0 162 163 0 164 165 0 166 167 0\n\t\t 160 162 0 161 163 0 162 164 0 163 165 0 164 166 0 165 167 0 166 160 0 167 161 0 168 169 0\n\t\t 170 171 0 172 173 0 174 175 0 168 170 0 169 171 0 170 172 0 171 173 0 172 174 0 173 175 0\n\t\t 174 168 0 175 169 0 176 177 0 178 179 0 180 181 0 182 183 0 176 178 0 177 179 0 178 180 0\n\t\t 179 181 0 180 182 0 181 183 0 182 176 0 183 177 0 184 185 0 186 187 0 188 189 0 190 191 0\n\t\t 184 186 0 185 187 0 186 188 0 187 189 0 188 190 0 189 191 0 190 184 0 191 185 0 192 193 0\n\t\t 194 195 0 196 197 0 198 199 0 192 194 0 193 195 0 194 196 0 195 197 0 196 198 0 197 199 0\n\t\t 198 192 0 199 193 0 200 201 0 202 203 0 204 205 0 206 207 0 200 202 0 201 203 0 202 204 0\n\t\t 203 205 0 204 206 0 205 207 0 206 200 0 207 201 0 208 209 0 210 211 0 212 213 0 214 215 0\n\t\t 208 210 0 209 211 0 210 212 0 211 213 0 212 214 0 213 215 0 214 208 0 215 209 0 216 217 0\n\t\t 218 219 0 220 221 0 222 223 0 216 218 0 217 219 0 218 220 0 219 221 0;\n\tsetAttr \".ed[332:497]\" 220 222 0 221 223 0 222 216 0 223 217 0 224 225 0 226 227 0\n\t\t 228 229 0 230 231 0 224 226 0 225 227 0 226 228 0 227 229 0 228 230 0 229 231 0 230 224 0\n\t\t 231 225 0 232 233 0 234 235 0 236 237 0 238 239 0 232 234 0 233 235 0 234 236 0 235 237 0\n\t\t 236 238 0 237 239 0 238 232 0 239 233 0 240 241 0 242 243 0 244 245 0 246 247 0 240 242 0\n\t\t 241 243 0 242 244 0 243 245 0 244 246 0 245 247 0 246 240 0 247 241 0 248 249 0 250 251 0\n\t\t 252 253 0 254 255 0 248 250 0 249 251 0 250 252 0 251 253 0 252 254 0 253 255 0 254 248 0\n\t\t 255 249 0 256 257 0 258 259 0 260 261 0 262 263 0 256 258 0 257 259 0 258 260 0 259 261 0\n\t\t 260 262 0 261 263 0 262 256 0 263 257 0 264 265 0 266 267 0 268 269 0 270 271 0 264 266 0\n\t\t 265 267 0 266 268 0 267 269 0 268 270 0 269 271 0 270 264 0 271 265 0 272 273 0 274 275 0\n\t\t 276 277 0 278 279 0 272 274 0 273 275 0 274 276 0 275 277 0 276 278 0 277 279 0 278 272 0\n\t\t 279 273 0 280 281 0 282 283 0 284 285 0 286 287 0 280 282 0 281 283 0 282 284 0 283 285 0\n\t\t 284 286 0 285 287 0 286 280 0 287 281 0 288 289 0 290 291 0 292 293 0 294 295 0 288 290 0\n\t\t 289 291 0 290 292 0 291 293 0 292 294 0 293 295 0 294 288 0 295 289 0 296 297 0 298 299 0\n\t\t 300 301 0 302 303 0 296 298 0 297 299 0 298 300 0 299 301 0 300 302 0 301 303 0 302 296 0\n\t\t 303 297 0 304 305 0 306 307 0 308 309 0 310 311 0 304 306 0 305 307 0 306 308 0 307 309 0\n\t\t 308 310 0 309 311 0 310 304 0 311 305 0 312 313 0 314 315 0 316 317 0 318 319 0 312 314 0\n\t\t 313 315 0 314 316 0 315 317 0 316 318 0 317 319 0 318 312 0 319 313 0 320 321 0 322 323 0\n\t\t 324 325 0 326 327 0 320 322 0 321 323 0 322 324 0 323 325 0 324 326 0 325 327 0 326 320 0\n\t\t 327 321 0 328 329 0 330 331 0 332 333 0 334 335 0 328 330 0 329 331 0;\n\tsetAttr \".ed[498:663]\" 330 332 0 331 333 0 332 334 0 333 335 0 334 328 0 335 329 0\n\t\t 336 337 0 338 339 0 340 341 0 342 343 0 336 338 0 337 339 0 338 340 0 339 341 0 340 342 0\n\t\t 341 343 0 342 336 0 343 337 0 344 345 0 346 347 0 348 349 0 350 351 0 344 346 0 345 347 0\n\t\t 346 348 0 347 349 0 348 350 0 349 351 0 350 344 0 351 345 0 352 353 0 354 355 0 356 357 0\n\t\t 358 359 0 352 354 0 353 355 0 354 356 0 355 357 0 356 358 0 357 359 0 358 352 0 359 353 0\n\t\t 360 361 0 362 363 0 364 365 0 366 367 0 360 362 0 361 363 0 362 364 0 363 365 0 364 366 0\n\t\t 365 367 0 366 360 0 367 361 0 368 369 0 370 371 0 372 373 0 374 375 0 368 370 0 369 371 0\n\t\t 370 372 0 371 373 0 372 374 0 373 375 0 374 368 0 375 369 0 376 377 0 378 379 0 380 381 0\n\t\t 382 383 0 376 378 0 377 379 0 378 380 0 379 381 0 380 382 0 381 383 0 382 376 0 383 377 0\n\t\t 384 385 0 386 387 0 388 389 0 390 391 0 384 386 0 385 387 0 386 388 0 387 389 0 388 390 0\n\t\t 389 391 0 390 384 0 391 385 0 392 393 0 394 395 0 396 397 0 398 399 0 392 394 0 393 395 0\n\t\t 394 396 0 395 397 0 396 398 0 397 399 0 398 392 0 399 393 0 400 401 0 402 403 0 404 405 0\n\t\t 406 407 0 400 402 0 401 403 0 402 404 0 403 405 0 404 406 0 405 407 0 406 400 0 407 401 0\n\t\t 408 409 0 410 411 0 412 413 0 414 415 0 408 410 0 409 411 0 410 412 0 411 413 0 412 414 0\n\t\t 413 415 0 414 408 0 415 409 0 416 417 0 418 419 0 420 421 0 422 423 0 416 418 0 417 419 0\n\t\t 418 420 0 419 421 0 420 422 0 421 423 0 422 416 0 423 417 0 424 425 0 426 427 0 428 429 0\n\t\t 430 431 0 424 426 0 425 427 0 426 428 0 427 429 0 428 430 0 429 431 0 430 424 0 431 425 0\n\t\t 432 433 0 434 435 0 436 437 0 438 439 0 432 434 0 433 435 0 434 436 0 435 437 0 436 438 0\n\t\t 437 439 0 438 432 0 439 433 0 440 441 0 442 443 0 444 445 0 446 447 0;\n\tsetAttr \".ed[664:829]\" 440 442 0 441 443 0 442 444 0 443 445 0 444 446 0 445 447 0\n\t\t 446 440 0 447 441 0 448 449 0 450 451 0 452 453 0 454 455 0 448 450 0 449 451 0 450 452 0\n\t\t 451 453 0 452 454 0 453 455 0 454 448 0 455 449 0 456 457 0 458 459 0 460 461 0 462 463 0\n\t\t 456 458 0 457 459 0 458 460 0 459 461 0 460 462 0 461 463 0 462 456 0 463 457 0 464 465 0\n\t\t 466 467 0 468 469 0 470 471 0 464 466 0 465 467 0 466 468 0 467 469 0 468 470 0 469 471 0\n\t\t 470 464 0 471 465 0 472 473 0 474 475 0 476 477 0 478 479 0 472 474 0 473 475 0 474 476 0\n\t\t 475 477 0 476 478 0 477 479 0 478 472 0 479 473 0 480 481 0 482 483 0 484 485 0 486 487 0\n\t\t 480 482 0 481 483 0 482 484 0 483 485 0 484 486 0 485 487 0 486 480 0 487 481 0 488 489 0\n\t\t 490 491 0 492 493 0 494 495 0 488 490 0 489 491 0 490 492 0 491 493 0 492 494 0 493 495 0\n\t\t 494 488 0 495 489 0 496 497 0 498 499 0 500 501 0 502 503 0 496 498 0 497 499 0 498 500 0\n\t\t 499 501 0 500 502 0 501 503 0 502 496 0 503 497 0 504 505 0 506 507 0 508 509 0 510 511 0\n\t\t 504 506 0 505 507 0 506 508 0 507 509 0 508 510 0 509 511 0 510 504 0 511 505 0 512 513 0\n\t\t 514 515 0 516 517 0 518 519 0 512 514 0 513 515 0 514 516 0 515 517 0 516 518 0 517 519 0\n\t\t 518 512 0 519 513 0 520 521 0 522 523 0 524 525 0 526 527 0 520 522 0 521 523 0 522 524 0\n\t\t 523 525 0 524 526 0 525 527 0 526 520 0 527 521 0 528 529 0 530 531 0 532 533 0 534 535 0\n\t\t 528 530 0 529 531 0 530 532 0 531 533 0 532 534 0 533 535 0 534 528 0 535 529 0 536 537 0\n\t\t 538 539 0 540 541 0 542 543 0 536 538 0 537 539 0 538 540 0 539 541 0 540 542 0 541 543 0\n\t\t 542 536 0 543 537 0 544 545 0 546 547 0 548 549 0 550 551 0 544 546 0 545 547 0 546 548 0\n\t\t 547 549 0 548 550 0 549 551 0 550 544 0 551 545 0 552 553 0 554 555 0;\n\tsetAttr \".ed[830:995]\" 556 557 0 558 559 0 552 554 0 553 555 0 554 556 0 555 557 0\n\t\t 556 558 0 557 559 0 558 552 0 559 553 0 560 561 0 562 563 0 564 565 0 566 567 0 560 562 0\n\t\t 561 563 0 562 564 0 563 565 0 564 566 0 565 567 0 566 560 0 567 561 0 568 569 0 570 571 0\n\t\t 572 573 0 574 575 0 568 570 0 569 571 0 570 572 0 571 573 0 572 574 0 573 575 0 574 568 0\n\t\t 575 569 0 576 577 0 578 579 0 580 581 0 582 583 0 576 578 0 577 579 0 578 580 0 579 581 0\n\t\t 580 582 0 581 583 0 582 576 0 583 577 0 584 585 0 586 587 0 588 589 0 590 591 0 584 586 0\n\t\t 585 587 0 586 588 0 587 589 0 588 590 0 589 591 0 590 584 0 591 585 0 592 593 0 594 595 0\n\t\t 596 597 0 598 599 0 592 594 0 593 595 0 594 596 0 595 597 0 596 598 0 597 599 0 598 592 0\n\t\t 599 593 0 600 601 0 602 603 0 604 605 0 606 607 0 600 602 0 601 603 0 602 604 0 603 605 0\n\t\t 604 606 0 605 607 0 606 600 0 607 601 0 608 609 0 610 611 0 612 613 0 614 615 0 608 610 0\n\t\t 609 611 0 610 612 0 611 613 0 612 614 0 613 615 0 614 608 0 615 609 0 616 617 0 618 619 0\n\t\t 620 621 0 622 623 0 616 618 0 617 619 0 618 620 0 619 621 0 620 622 0 621 623 0 622 616 0\n\t\t 623 617 0 624 625 0 626 627 0 628 629 0 630 631 0 624 626 0 625 627 0 626 628 0 627 629 0\n\t\t 628 630 0 629 631 0 630 624 0 631 625 0 632 633 0 634 635 0 636 637 0 638 639 0 632 634 0\n\t\t 633 635 0 634 636 0 635 637 0 636 638 0 637 639 0 638 632 0 639 633 0 640 641 0 642 643 0\n\t\t 644 645 0 646 647 0 640 642 0 641 643 0 642 644 0 643 645 0 644 646 0 645 647 0 646 640 0\n\t\t 647 641 0 648 649 0 650 651 0 652 653 0 654 655 0 648 650 0 649 651 0 650 652 0 651 653 0\n\t\t 652 654 0 653 655 0 654 648 0 655 649 0 656 657 0 658 659 0 660 661 0 662 663 0 656 658 0\n\t\t 657 659 0 658 660 0 659 661 0 660 662 0 661 663 0 662 656 0 663 657 0;\n\tsetAttr \".ed[996:1161]\" 664 665 0 666 667 0 668 669 0 670 671 0 664 666 0 665 667 0\n\t\t 666 668 0 667 669 0 668 670 0 669 671 0 670 664 0 671 665 0 672 673 0 674 675 0 676 677 0\n\t\t 678 679 0 672 674 0 673 675 0 674 676 0 675 677 0 676 678 0 677 679 0 678 672 0 679 673 0\n\t\t 680 681 0 682 683 0 684 685 0 686 687 0 680 682 0 681 683 0 682 684 0 683 685 0 684 686 0\n\t\t 685 687 0 686 680 0 687 681 0 688 689 0 690 691 0 692 693 0 694 695 0 688 690 0 689 691 0\n\t\t 690 692 0 691 693 0 692 694 0 693 695 0 694 688 0 695 689 0 696 697 0 698 699 0 700 701 0\n\t\t 702 703 0 696 698 0 697 699 0 698 700 0 699 701 0 700 702 0 701 703 0 702 696 0 703 697 0\n\t\t 704 705 0 706 707 0 708 709 0 710 711 0 704 706 0 705 707 0 706 708 0 707 709 0 708 710 0\n\t\t 709 711 0 710 704 0 711 705 0 712 713 0 714 715 0 716 717 0 718 719 0 712 714 0 713 715 0\n\t\t 714 716 0 715 717 0 716 718 0 717 719 0 718 712 0 719 713 0 720 721 0 722 723 0 724 725 0\n\t\t 726 727 0 720 722 0 721 723 0 722 724 0 723 725 0 724 726 0 725 727 0 726 720 0 727 721 0\n\t\t 728 729 0 730 731 0 732 733 0 734 735 0 728 730 0 729 731 0 730 732 0 731 733 0 732 734 0\n\t\t 733 735 0 734 728 0 735 729 0 736 737 0 738 739 0 740 741 0 742 743 0 736 738 0 737 739 0\n\t\t 738 740 0 739 741 0 740 742 0 741 743 0 742 736 0 743 737 0 744 745 0 746 747 0 748 749 0\n\t\t 750 751 0 744 746 0 745 747 0 746 748 0 747 749 0 748 750 0 749 751 0 750 744 0 751 745 0\n\t\t 752 753 0 754 755 0 756 757 0 758 759 0 752 754 0 753 755 0 754 756 0 755 757 0 756 758 0\n\t\t 757 759 0 758 752 0 759 753 0 760 761 0 762 763 0 764 765 0 766 767 0 760 762 0 761 763 0\n\t\t 762 764 0 763 765 0 764 766 0 765 767 0 766 760 0 767 761 0 768 769 0 770 771 0 772 773 0\n\t\t 774 775 0 768 770 0 769 771 0 770 772 0 771 773 0 772 774 0 773 775 0;\n\tsetAttr \".ed[1162:1327]\" 774 768 0 775 769 0 776 777 0 778 779 0 780 781 0 782 783 0\n\t\t 776 778 0 777 779 0 778 780 0 779 781 0 780 782 0 781 783 0 782 776 0 783 777 0 784 785 0\n\t\t 786 787 0 788 789 0 790 791 0 784 786 0 785 787 0 786 788 0 787 789 0 788 790 0 789 791 0\n\t\t 790 784 0 791 785 0 792 793 0 794 795 0 796 797 0 798 799 0 792 794 0 793 795 0 794 796 0\n\t\t 795 797 0 796 798 0 797 799 0 798 792 0 799 793 0 800 801 0 802 803 0 804 805 0 806 807 0\n\t\t 800 802 0 801 803 0 802 804 0 803 805 0 804 806 0 805 807 0 806 800 0 807 801 0 808 809 0\n\t\t 810 811 0 812 813 0 814 815 0 808 810 0 809 811 0 810 812 0 811 813 0 812 814 0 813 815 0\n\t\t 814 808 0 815 809 0 816 817 0 818 819 0 820 821 0 822 823 0 816 818 0 817 819 0 818 820 0\n\t\t 819 821 0 820 822 0 821 823 0 822 816 0 823 817 0 824 825 0 826 827 0 828 829 0 830 831 0\n\t\t 824 826 0 825 827 0 826 828 0 827 829 0 828 830 0 829 831 0 830 824 0 831 825 0 832 833 0\n\t\t 834 835 0 836 837 0 838 839 0 832 834 0 833 835 0 834 836 0 835 837 0 836 838 0 837 839 0\n\t\t 838 832 0 839 833 0 840 841 0 842 843 0 844 845 0 846 847 0 840 842 0 841 843 0 842 844 0\n\t\t 843 845 0 844 846 0 845 847 0 846 840 0 847 841 0 848 849 0 850 851 0 852 853 0 854 855 0\n\t\t 848 850 0 849 851 0 850 852 0 851 853 0 852 854 0 853 855 0 854 848 0 855 849 0 856 857 0\n\t\t 858 859 0 860 861 0 862 863 0 856 858 0 857 859 0 858 860 0 859 861 0 860 862 0 861 863 0\n\t\t 862 856 0 863 857 0 864 865 0 866 867 0 868 869 0 870 871 0 864 866 0 865 867 0 866 868 0\n\t\t 867 869 0 868 870 0 869 871 0 870 864 0 871 865 0 872 873 0 874 875 0 876 877 0 878 879 0\n\t\t 872 874 0 873 875 0 874 876 0 875 877 0 876 878 0 877 879 0 878 872 0 879 873 0 880 881 0\n\t\t 882 883 0 884 885 0 886 887 0 880 882 0 881 883 0 882 884 0 883 885 0;\n\tsetAttr \".ed[1328:1493]\" 884 886 0 885 887 0 886 880 0 887 881 0 888 889 0 890 891 0\n\t\t 892 893 0 894 895 0 888 890 0 889 891 0 890 892 0 891 893 0 892 894 0 893 895 0 894 888 0\n\t\t 895 889 0 896 897 0 898 899 0 900 901 0 902 903 0 896 898 0 897 899 0 898 900 0 899 901 0\n\t\t 900 902 0 901 903 0 902 896 0 903 897 0 904 905 0 906 907 0 908 909 0 910 911 0 904 906 0\n\t\t 905 907 0 906 908 0 907 909 0 908 910 0 909 911 0 910 904 0 911 905 0 912 913 0 914 915 0\n\t\t 916 917 0 918 919 0 912 914 0 913 915 0 914 916 0 915 917 0 916 918 0 917 919 0 918 912 0\n\t\t 919 913 0 920 921 0 922 923 0 924 925 0 926 927 0 920 922 0 921 923 0 922 924 0 923 925 0\n\t\t 924 926 0 925 927 0 926 920 0 927 921 0 928 929 0 930 931 0 932 933 0 934 935 0 928 930 0\n\t\t 929 931 0 930 932 0 931 933 0 932 934 0 933 935 0 934 928 0 935 929 0 936 937 0 938 939 0\n\t\t 940 941 0 942 943 0 936 938 0 937 939 0 938 940 0 939 941 0 940 942 0 941 943 0 942 936 0\n\t\t 943 937 0 944 945 0 946 947 0 948 949 0 950 951 0 944 946 0 945 947 0 946 948 0 947 949 0\n\t\t 948 950 0 949 951 0 950 944 0 951 945 0 952 953 0 954 955 0 956 957 0 958 959 0 952 954 0\n\t\t 953 955 0 954 956 0 955 957 0 956 958 0 957 959 0 958 952 0 959 953 0 960 961 0 962 963 0\n\t\t 964 965 0 966 967 0 960 962 0 961 963 0 962 964 0 963 965 0 964 966 0 965 967 0 966 960 0\n\t\t 967 961 0 968 969 0 970 971 0 972 973 0 974 975 0 968 970 0 969 971 0 970 972 0 971 973 0\n\t\t 972 974 0 973 975 0 974 968 0 975 969 0 976 977 0 978 979 0 980 981 0 982 983 0 976 978 0\n\t\t 977 979 0 978 980 0 979 981 0 980 982 0 981 983 0 982 976 0 983 977 0 984 985 0 986 987 0\n\t\t 988 989 0 990 991 0 984 986 0 985 987 0 986 988 0 987 989 0 988 990 0 989 991 0 990 984 0\n\t\t 991 985 0 992 993 0 994 995 0 996 997 0 998 999 0 992 994 0 993 995 0;\n\tsetAttr \".ed[1494:1659]\" 994 996 0 995 997 0 996 998 0 997 999 0 998 992 0 999 993 0\n\t\t 1000 1001 0 1002 1003 0 1004 1005 0 1006 1007 0 1000 1002 0 1001 1003 0 1002 1004 0\n\t\t 1003 1005 0 1004 1006 0 1005 1007 0 1006 1000 0 1007 1001 0 1008 1009 0 1010 1011 0\n\t\t 1012 1013 0 1014 1015 0 1008 1010 0 1009 1011 0 1010 1012 0 1011 1013 0 1012 1014 0\n\t\t 1013 1015 0 1014 1008 0 1015 1009 0 1016 1017 0 1018 1019 0 1020 1021 0 1022 1023 0\n\t\t 1016 1018 0 1017 1019 0 1018 1020 0 1019 1021 0 1020 1022 0 1021 1023 0 1022 1016 0\n\t\t 1023 1017 0 1024 1025 0 1026 1027 0 1028 1029 0 1030 1031 0 1024 1026 0 1025 1027 0\n\t\t 1026 1028 0 1027 1029 0 1028 1030 0 1029 1031 0 1030 1024 0 1031 1025 0 1032 1033 0\n\t\t 1034 1035 0 1036 1037 0 1038 1039 0 1032 1034 0 1033 1035 0 1034 1036 0 1035 1037 0\n\t\t 1036 1038 0 1037 1039 0 1038 1032 0 1039 1033 0 1040 1041 0 1042 1043 0 1044 1045 0\n\t\t 1046 1047 0 1040 1042 0 1041 1043 0 1042 1044 0 1043 1045 0 1044 1046 0 1045 1047 0\n\t\t 1046 1040 0 1047 1041 0 1048 1049 0 1050 1051 0 1052 1053 0 1054 1055 0 1048 1050 0\n\t\t 1049 1051 0 1050 1052 0 1051 1053 0 1052 1054 0 1053 1055 0 1054 1048 0 1055 1049 0\n\t\t 1056 1057 0 1058 1059 0 1060 1061 0 1062 1063 0 1056 1058 0 1057 1059 0 1058 1060 0\n\t\t 1059 1061 0 1060 1062 0 1061 1063 0 1062 1056 0 1063 1057 0 1064 1065 0 1066 1067 0\n\t\t 1068 1069 0 1070 1071 0 1064 1066 0 1065 1067 0 1066 1068 0 1067 1069 0 1068 1070 0\n\t\t 1069 1071 0 1070 1064 0 1071 1065 0 1072 1073 0 1074 1075 0 1076 1077 0 1078 1079 0\n\t\t 1072 1074 0 1073 1075 0 1074 1076 0 1075 1077 0 1076 1078 0 1077 1079 0 1078 1072 0\n\t\t 1079 1073 0 1080 1081 0 1082 1083 0 1084 1085 0 1086 1087 0 1080 1082 0 1081 1083 0\n\t\t 1082 1084 0 1083 1085 0 1084 1086 0 1085 1087 0 1086 1080 0 1087 1081 0 1088 1089 0\n\t\t 1090 1091 0 1092 1093 0 1094 1095 0 1088 1090 0 1089 1091 0 1090 1092 0 1091 1093 0\n\t\t 1092 1094 0 1093 1095 0 1094 1088 0 1095 1089 0 1096 1097 0 1098 1099 0 1100 1101 0\n\t\t 1102 1103 0 1096 1098 0 1097 1099 0 1098 1100 0 1099 1101 0 1100 1102 0 1101 1103 0\n\t\t 1102 1096 0 1103 1097 0 1104 1105 0 1106 1107 0 1108 1109 0 1110 1111 0;\n\tsetAttr \".ed[1660:1825]\" 1104 1106 0 1105 1107 0 1106 1108 0 1107 1109 0 1108 1110 0\n\t\t 1109 1111 0 1110 1104 0 1111 1105 0 1112 1113 0 1114 1115 0 1116 1117 0 1118 1119 0\n\t\t 1112 1114 0 1113 1115 0 1114 1116 0 1115 1117 0 1116 1118 0 1117 1119 0 1118 1112 0\n\t\t 1119 1113 0 1120 1121 0 1122 1123 0 1124 1125 0 1126 1127 0 1120 1122 0 1121 1123 0\n\t\t 1122 1124 0 1123 1125 0 1124 1126 0 1125 1127 0 1126 1120 0 1127 1121 0 1128 1129 0\n\t\t 1130 1131 0 1132 1133 0 1134 1135 0 1128 1130 0 1129 1131 0 1130 1132 0 1131 1133 0\n\t\t 1132 1134 0 1133 1135 0 1134 1128 0 1135 1129 0 1136 1137 0 1138 1139 0 1140 1141 0\n\t\t 1142 1143 0 1136 1138 0 1137 1139 0 1138 1140 0 1139 1141 0 1140 1142 0 1141 1143 0\n\t\t 1142 1136 0 1143 1137 0 1144 1145 0 1146 1147 0 1148 1149 0 1150 1151 0 1144 1146 0\n\t\t 1145 1147 0 1146 1148 0 1147 1149 0 1148 1150 0 1149 1151 0 1150 1144 0 1151 1145 0\n\t\t 1152 1153 0 1154 1155 0 1156 1157 0 1158 1159 0 1152 1154 0 1153 1155 0 1154 1156 0\n\t\t 1155 1157 0 1156 1158 0 1157 1159 0 1158 1152 0 1159 1153 0 1160 1161 0 1162 1163 0\n\t\t 1164 1165 0 1166 1167 0 1160 1162 0 1161 1163 0 1162 1164 0 1163 1165 0 1164 1166 0\n\t\t 1165 1167 0 1166 1160 0 1167 1161 0 1168 1169 0 1170 1171 0 1172 1173 0 1174 1175 0\n\t\t 1168 1170 0 1169 1171 0 1170 1172 0 1171 1173 0 1172 1174 0 1173 1175 0 1174 1168 0\n\t\t 1175 1169 0 1176 1177 0 1178 1179 0 1180 1181 0 1182 1183 0 1176 1178 0 1177 1179 0\n\t\t 1178 1180 0 1179 1181 0 1180 1182 0 1181 1183 0 1182 1176 0 1183 1177 0 1184 1185 0\n\t\t 1186 1187 0 1188 1189 0 1190 1191 0 1184 1186 0 1185 1187 0 1186 1188 0 1187 1189 0\n\t\t 1188 1190 0 1189 1191 0 1190 1184 0 1191 1185 0 1192 1193 0 1194 1195 0 1196 1197 0\n\t\t 1198 1199 0 1192 1194 0 1193 1195 0 1194 1196 0 1195 1197 0 1196 1198 0 1197 1199 0\n\t\t 1198 1192 0 1199 1193 0 1200 1201 0 1202 1203 0 1204 1205 0 1206 1207 0 1200 1202 0\n\t\t 1201 1203 0 1202 1204 0 1203 1205 0 1204 1206 0 1205 1207 0 1206 1200 0 1207 1201 0\n\t\t 1208 1209 0 1210 1211 0 1212 1213 0 1214 1215 0 1208 1210 0 1209 1211 0 1210 1212 0\n\t\t 1211 1213 0 1212 1214 0 1213 1215 0 1214 1208 0 1215 1209 0 1216 1217 0 1218 1219 0;\n\tsetAttr \".ed[1826:1991]\" 1220 1221 0 1222 1223 0 1216 1218 0 1217 1219 0 1218 1220 0\n\t\t 1219 1221 0 1220 1222 0 1221 1223 0 1222 1216 0 1223 1217 0 1224 1225 0 1226 1227 0\n\t\t 1228 1229 0 1230 1231 0 1224 1226 0 1225 1227 0 1226 1228 0 1227 1229 0 1228 1230 0\n\t\t 1229 1231 0 1230 1224 0 1231 1225 0 1232 1233 0 1234 1235 0 1236 1237 0 1238 1239 0\n\t\t 1232 1234 0 1233 1235 0 1234 1236 0 1235 1237 0 1236 1238 0 1237 1239 0 1238 1232 0\n\t\t 1239 1233 0 1240 1241 0 1242 1243 0 1244 1245 0 1246 1247 0 1240 1242 0 1241 1243 0\n\t\t 1242 1244 0 1243 1245 0 1244 1246 0 1245 1247 0 1246 1240 0 1247 1241 0 1248 1249 0\n\t\t 1250 1251 0 1252 1253 0 1254 1255 0 1248 1250 0 1249 1251 0 1250 1252 0 1251 1253 0\n\t\t 1252 1254 0 1253 1255 0 1254 1248 0 1255 1249 0 1256 1257 0 1258 1259 0 1260 1261 0\n\t\t 1262 1263 0 1256 1258 0 1257 1259 0 1258 1260 0 1259 1261 0 1260 1262 0 1261 1263 0\n\t\t 1262 1256 0 1263 1257 0 1264 1265 0 1266 1267 0 1268 1269 0 1270 1271 0 1264 1266 0\n\t\t 1265 1267 0 1266 1268 0 1267 1269 0 1268 1270 0 1269 1271 0 1270 1264 0 1271 1265 0\n\t\t 1272 1273 0 1274 1275 0 1276 1277 0 1278 1279 0 1272 1274 0 1273 1275 0 1274 1276 0\n\t\t 1275 1277 0 1276 1278 0 1277 1279 0 1278 1272 0 1279 1273 0 1280 1281 0 1282 1283 0\n\t\t 1284 1285 0 1286 1287 0 1280 1282 0 1281 1283 0 1282 1284 0 1283 1285 0 1284 1286 0\n\t\t 1285 1287 0 1286 1280 0 1287 1281 0 1288 1289 0 1290 1291 0 1292 1293 0 1294 1295 0\n\t\t 1288 1290 0 1289 1291 0 1290 1292 0 1291 1293 0 1292 1294 0 1293 1295 0 1294 1288 0\n\t\t 1295 1289 0 1296 1297 0 1298 1299 0 1300 1301 0 1302 1303 0 1296 1298 0 1297 1299 0\n\t\t 1298 1300 0 1299 1301 0 1300 1302 0 1301 1303 0 1302 1296 0 1303 1297 0 1304 1305 0\n\t\t 1306 1307 0 1308 1309 0 1310 1311 0 1304 1306 0 1305 1307 0 1306 1308 0 1307 1309 0\n\t\t 1308 1310 0 1309 1311 0 1310 1304 0 1311 1305 0 1312 1313 0 1314 1315 0 1316 1317 0\n\t\t 1318 1319 0 1312 1314 0 1313 1315 0 1314 1316 0 1315 1317 0 1316 1318 0 1317 1319 0\n\t\t 1318 1312 0 1319 1313 0 1320 1321 0 1322 1323 0 1324 1325 0 1326 1327 0 1320 1322 0\n\t\t 1321 1323 0 1322 1324 0 1323 1325 0 1324 1326 0 1325 1327 0 1326 1320 0 1327 1321 0;\n\tsetAttr \".ed[1992:2063]\" 1328 1329 0 1330 1331 0 1332 1333 0 1334 1335 0 1328 1330 0\n\t\t 1329 1331 0 1330 1332 0 1331 1333 0 1332 1334 0 1333 1335 0 1334 1328 0 1335 1329 0\n\t\t 1336 1337 0 1338 1339 0 1340 1341 0 1342 1343 0 1336 1338 0 1337 1339 0 1338 1340 0\n\t\t 1339 1341 0 1340 1342 0 1341 1343 0 1342 1336 0 1343 1337 0 1344 1345 0 1346 1347 0\n\t\t 1348 1349 0 1350 1351 0 1344 1346 0 1345 1347 0 1346 1348 0 1347 1349 0 1348 1350 0\n\t\t 1349 1351 0 1350 1344 0 1351 1345 0 1352 1353 0 1354 1355 0 1356 1357 0 1358 1359 0\n\t\t 1352 1354 0 1353 1355 0 1354 1356 0 1355 1357 0 1356 1358 0 1357 1359 0 1358 1352 0\n\t\t 1359 1353 0 1360 1361 0 1362 1363 0 1364 1365 0 1366 1367 0 1360 1362 0 1361 1363 0\n\t\t 1362 1364 0 1363 1365 0 1364 1366 0 1365 1367 0 1366 1360 0 1367 1361 0 1368 1369 0\n\t\t 1370 1371 0 1372 1373 0 1374 1375 0 1368 1370 0 1369 1371 0 1370 1372 0 1371 1373 0\n\t\t 1372 1374 0 1373 1375 0 1374 1368 0 1375 1369 0;\n\tsetAttr -s 1032 -ch 4128 \".fc\";\n\tsetAttr \".fc[0:499]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13\n\t\tf 4 12 17 -14 -17\n\t\tmu 0 4 14 15 16 17\n\t\tf 4 13 19 -15 -19\n\t\tmu 0 4 17 16 18 19\n\t\tf 4 14 21 -16 -21\n\t\tmu 0 4 19 18 20 21\n\t\tf 4 15 23 -13 -23\n\t\tmu 0 4 21 20 22 23\n\t\tf 4 -24 -22 -20 -18\n\t\tmu 0 4 15 24 25 16\n\t\tf 4 22 16 18 20\n\t\tmu 0 4 26 14 17 27\n\t\tf 4 24 29 -26 -29\n\t\tmu 0 4 28 29 30 31\n\t\tf 4 25 31 -27 -31\n\t\tmu 0 4 31 30 32 33\n\t\tf 4 26 33 -28 -33\n\t\tmu 0 4 33 32 34 35\n\t\tf 4 27 35 -25 -35\n\t\tmu 0 4 35 34 36 37\n\t\tf 4 -36 -34 -32 -30\n\t\tmu 0 4 29 38 39 30\n\t\tf 4 34 28 30 32\n\t\tmu 0 4 40 28 31 41\n\t\tf 4 36 41 -38 -41\n\t\tmu 0 4 42 43 44 45\n\t\tf 4 37 43 -39 -43\n\t\tmu 0 4 45 44 46 47\n\t\tf 4 38 45 -40 -45\n\t\tmu 0 4 47 46 48 49\n\t\tf 4 39 47 -37 -47\n\t\tmu 0 4 49 48 50 51\n\t\tf 4 -48 -46 -44 -42\n\t\tmu 0 4 43 52 53 44\n\t\tf 4 46 40 42 44\n\t\tmu 0 4 54 42 45 55\n\t\tf 4 48 53 -50 -53\n\t\tmu 0 4 56 57 58 59\n\t\tf 4 49 55 -51 -55\n\t\tmu 0 4 59 58 60 61\n\t\tf 4 50 57 -52 -57\n\t\tmu 0 4 61 60 62 63\n\t\tf 4 51 59 -49 -59\n\t\tmu 0 4 63 62 64 65\n\t\tf 4 -60 -58 -56 -54\n\t\tmu 0 4 57 66 67 58\n\t\tf 4 58 52 54 56\n\t\tmu 0 4 68 56 59 69\n\t\tf 4 60 65 -62 -65\n\t\tmu 0 4 70 71 72 73\n\t\tf 4 61 67 -63 -67\n\t\tmu 0 4 73 72 74 75\n\t\tf 4 62 69 -64 -69\n\t\tmu 0 4 75 74 76 77\n\t\tf 4 63 71 -61 -71\n\t\tmu 0 4 77 76 78 79\n\t\tf 4 -72 -70 -68 -66\n\t\tmu 0 4 71 80 81 72\n\t\tf 4 70 64 66 68\n\t\tmu 0 4 82 70 73 83\n\t\tf 4 72 77 -74 -77\n\t\tmu 0 4 84 85 86 87\n\t\tf 4 73 79 -75 -79\n\t\tmu 0 4 87 86 88 89\n\t\tf 4 74 81 -76 -81\n\t\tmu 0 4 89 88 90 91\n\t\tf 4 75 83 -73 -83\n\t\tmu 0 4 91 90 92 93\n\t\tf 4 -84 -82 -80 -78\n\t\tmu 0 4 85 94 95 86\n\t\tf 4 82 76 78 80\n\t\tmu 0 4 96 84 87 97\n\t\tf 4 84 89 -86 -89\n\t\tmu 0 4 98 99 100 101\n\t\tf 4 85 91 -87 -91\n\t\tmu 0 4 101 100 102 103\n\t\tf 4 86 93 -88 -93\n\t\tmu 0 4 103 102 104 105\n\t\tf 4 87 95 -85 -95\n\t\tmu 0 4 105 104 106 107\n\t\tf 4 -96 -94 -92 -90\n\t\tmu 0 4 99 108 109 100\n\t\tf 4 94 88 90 92\n\t\tmu 0 4 110 98 101 111\n\t\tf 4 96 101 -98 -101\n\t\tmu 0 4 112 113 114 115\n\t\tf 4 97 103 -99 -103\n\t\tmu 0 4 115 114 116 117\n\t\tf 4 98 105 -100 -105\n\t\tmu 0 4 117 116 118 119\n\t\tf 4 99 107 -97 -107\n\t\tmu 0 4 119 118 120 121\n\t\tf 4 -108 -106 -104 -102\n\t\tmu 0 4 113 122 123 114\n\t\tf 4 106 100 102 104\n\t\tmu 0 4 124 112 115 125\n\t\tf 4 108 113 -110 -113\n\t\tmu 0 4 126 127 128 129\n\t\tf 4 109 115 -111 -115\n\t\tmu 0 4 129 128 130 131\n\t\tf 4 110 117 -112 -117\n\t\tmu 0 4 131 130 132 133\n\t\tf 4 111 119 -109 -119\n\t\tmu 0 4 133 132 134 135\n\t\tf 4 -120 -118 -116 -114\n\t\tmu 0 4 127 136 137 128\n\t\tf 4 118 112 114 116\n\t\tmu 0 4 138 126 129 139\n\t\tf 4 120 125 -122 -125\n\t\tmu 0 4 140 141 142 143\n\t\tf 4 121 127 -123 -127\n\t\tmu 0 4 143 142 144 145\n\t\tf 4 122 129 -124 -129\n\t\tmu 0 4 145 144 146 147\n\t\tf 4 123 131 -121 -131\n\t\tmu 0 4 147 146 148 149\n\t\tf 4 -132 -130 -128 -126\n\t\tmu 0 4 141 150 151 142\n\t\tf 4 130 124 126 128\n\t\tmu 0 4 152 140 143 153\n\t\tf 4 132 137 -134 -137\n\t\tmu 0 4 154 155 156 157\n\t\tf 4 133 139 -135 -139\n\t\tmu 0 4 157 156 158 159\n\t\tf 4 134 141 -136 -141\n\t\tmu 0 4 159 158 160 161\n\t\tf 4 135 143 -133 -143\n\t\tmu 0 4 161 160 162 163\n\t\tf 4 -144 -142 -140 -138\n\t\tmu 0 4 155 164 165 156\n\t\tf 4 142 136 138 140\n\t\tmu 0 4 166 154 157 167\n\t\tf 4 144 149 -146 -149\n\t\tmu 0 4 168 169 170 171\n\t\tf 4 145 151 -147 -151\n\t\tmu 0 4 171 170 172 173\n\t\tf 4 146 153 -148 -153\n\t\tmu 0 4 173 172 174 175\n\t\tf 4 147 155 -145 -155\n\t\tmu 0 4 175 174 176 177\n\t\tf 4 -156 -154 -152 -150\n\t\tmu 0 4 169 178 179 170\n\t\tf 4 154 148 150 152\n\t\tmu 0 4 180 168 171 181\n\t\tf 4 156 161 -158 -161\n\t\tmu 0 4 182 183 184 185\n\t\tf 4 157 163 -159 -163\n\t\tmu 0 4 185 184 186 187\n\t\tf 4 158 165 -160 -165\n\t\tmu 0 4 187 186 188 189\n\t\tf 4 159 167 -157 -167\n\t\tmu 0 4 189 188 190 191\n\t\tf 4 -168 -166 -164 -162\n\t\tmu 0 4 183 192 193 184\n\t\tf 4 166 160 162 164\n\t\tmu 0 4 194 182 185 195\n\t\tf 4 168 173 -170 -173\n\t\tmu 0 4 196 197 198 199\n\t\tf 4 169 175 -171 -175\n\t\tmu 0 4 199 198 200 201\n\t\tf 4 170 177 -172 -177\n\t\tmu 0 4 201 200 202 203\n\t\tf 4 171 179 -169 -179\n\t\tmu 0 4 203 202 204 205\n\t\tf 4 -180 -178 -176 -174\n\t\tmu 0 4 197 206 207 198\n\t\tf 4 178 172 174 176\n\t\tmu 0 4 208 196 199 209\n\t\tf 4 180 185 -182 -185\n\t\tmu 0 4 210 211 212 213\n\t\tf 4 181 187 -183 -187\n\t\tmu 0 4 213 212 214 215\n\t\tf 4 182 189 -184 -189\n\t\tmu 0 4 215 214 216 217\n\t\tf 4 183 191 -181 -191\n\t\tmu 0 4 217 216 218 219\n\t\tf 4 -192 -190 -188 -186\n\t\tmu 0 4 211 220 221 212\n\t\tf 4 190 184 186 188\n\t\tmu 0 4 222 210 213 223\n\t\tf 4 192 197 -194 -197\n\t\tmu 0 4 224 225 226 227\n\t\tf 4 193 199 -195 -199\n\t\tmu 0 4 227 226 228 229\n\t\tf 4 194 201 -196 -201\n\t\tmu 0 4 229 228 230 231\n\t\tf 4 195 203 -193 -203\n\t\tmu 0 4 231 230 232 233\n\t\tf 4 -204 -202 -200 -198\n\t\tmu 0 4 225 234 235 226\n\t\tf 4 202 196 198 200\n\t\tmu 0 4 236 224 227 237\n\t\tf 4 204 209 -206 -209\n\t\tmu 0 4 238 239 240 241\n\t\tf 4 205 211 -207 -211\n\t\tmu 0 4 241 240 242 243\n\t\tf 4 206 213 -208 -213\n\t\tmu 0 4 243 242 244 245\n\t\tf 4 207 215 -205 -215\n\t\tmu 0 4 245 244 246 247\n\t\tf 4 -216 -214 -212 -210\n\t\tmu 0 4 239 248 249 240\n\t\tf 4 214 208 210 212\n\t\tmu 0 4 250 238 241 251\n\t\tf 4 216 221 -218 -221\n\t\tmu 0 4 252 253 254 255\n\t\tf 4 217 223 -219 -223\n\t\tmu 0 4 255 254 256 257\n\t\tf 4 218 225 -220 -225\n\t\tmu 0 4 257 256 258 259\n\t\tf 4 219 227 -217 -227\n\t\tmu 0 4 259 258 260 261\n\t\tf 4 -228 -226 -224 -222\n\t\tmu 0 4 253 262 263 254\n\t\tf 4 226 220 222 224\n\t\tmu 0 4 264 252 255 265\n\t\tf 4 228 233 -230 -233\n\t\tmu 0 4 266 267 268 269\n\t\tf 4 229 235 -231 -235\n\t\tmu 0 4 269 268 270 271\n\t\tf 4 230 237 -232 -237\n\t\tmu 0 4 271 270 272 273\n\t\tf 4 231 239 -229 -239\n\t\tmu 0 4 273 272 274 275\n\t\tf 4 -240 -238 -236 -234\n\t\tmu 0 4 267 276 277 268\n\t\tf 4 238 232 234 236\n\t\tmu 0 4 278 266 269 279\n\t\tf 4 240 245 -242 -245\n\t\tmu 0 4 280 281 282 283\n\t\tf 4 241 247 -243 -247\n\t\tmu 0 4 283 282 284 285\n\t\tf 4 242 249 -244 -249\n\t\tmu 0 4 285 284 286 287\n\t\tf 4 243 251 -241 -251\n\t\tmu 0 4 287 286 288 289\n\t\tf 4 -252 -250 -248 -246\n\t\tmu 0 4 281 290 291 282\n\t\tf 4 250 244 246 248\n\t\tmu 0 4 292 280 283 293\n\t\tf 4 252 257 -254 -257\n\t\tmu 0 4 294 295 296 297\n\t\tf 4 253 259 -255 -259\n\t\tmu 0 4 297 296 298 299\n\t\tf 4 254 261 -256 -261\n\t\tmu 0 4 299 298 300 301\n\t\tf 4 255 263 -253 -263\n\t\tmu 0 4 301 300 302 303\n\t\tf 4 -264 -262 -260 -258\n\t\tmu 0 4 295 304 305 296\n\t\tf 4 262 256 258 260\n\t\tmu 0 4 306 294 297 307\n\t\tf 4 264 269 -266 -269\n\t\tmu 0 4 308 309 310 311\n\t\tf 4 265 271 -267 -271\n\t\tmu 0 4 311 310 312 313\n\t\tf 4 266 273 -268 -273\n\t\tmu 0 4 313 312 314 315\n\t\tf 4 267 275 -265 -275\n\t\tmu 0 4 315 314 316 317\n\t\tf 4 -276 -274 -272 -270\n\t\tmu 0 4 309 318 319 310\n\t\tf 4 274 268 270 272\n\t\tmu 0 4 320 308 311 321\n\t\tf 4 276 281 -278 -281\n\t\tmu 0 4 322 323 324 325\n\t\tf 4 277 283 -279 -283\n\t\tmu 0 4 325 324 326 327\n\t\tf 4 278 285 -280 -285\n\t\tmu 0 4 327 326 328 329\n\t\tf 4 279 287 -277 -287\n\t\tmu 0 4 329 328 330 331\n\t\tf 4 -288 -286 -284 -282\n\t\tmu 0 4 323 332 333 324\n\t\tf 4 286 280 282 284\n\t\tmu 0 4 334 322 325 335\n\t\tf 4 288 293 -290 -293\n\t\tmu 0 4 336 337 338 339\n\t\tf 4 289 295 -291 -295\n\t\tmu 0 4 339 338 340 341\n\t\tf 4 290 297 -292 -297\n\t\tmu 0 4 341 340 342 343\n\t\tf 4 291 299 -289 -299\n\t\tmu 0 4 343 342 344 345\n\t\tf 4 -300 -298 -296 -294\n\t\tmu 0 4 337 346 347 338\n\t\tf 4 298 292 294 296\n\t\tmu 0 4 348 336 339 349\n\t\tf 4 300 305 -302 -305\n\t\tmu 0 4 350 351 352 353\n\t\tf 4 301 307 -303 -307\n\t\tmu 0 4 353 352 354 355\n\t\tf 4 302 309 -304 -309\n\t\tmu 0 4 355 354 356 357\n\t\tf 4 303 311 -301 -311\n\t\tmu 0 4 357 356 358 359\n\t\tf 4 -312 -310 -308 -306\n\t\tmu 0 4 351 360 361 352\n\t\tf 4 310 304 306 308\n\t\tmu 0 4 362 350 353 363\n\t\tf 4 312 317 -314 -317\n\t\tmu 0 4 364 365 366 367\n\t\tf 4 313 319 -315 -319\n\t\tmu 0 4 367 366 368 369\n\t\tf 4 314 321 -316 -321\n\t\tmu 0 4 369 368 370 371\n\t\tf 4 315 323 -313 -323\n\t\tmu 0 4 371 370 372 373\n\t\tf 4 -324 -322 -320 -318\n\t\tmu 0 4 365 374 375 366\n\t\tf 4 322 316 318 320\n\t\tmu 0 4 376 364 367 377\n\t\tf 4 324 329 -326 -329\n\t\tmu 0 4 378 379 380 381\n\t\tf 4 325 331 -327 -331\n\t\tmu 0 4 381 380 382 383\n\t\tf 4 326 333 -328 -333\n\t\tmu 0 4 383 382 384 385\n\t\tf 4 327 335 -325 -335\n\t\tmu 0 4 385 384 386 387\n\t\tf 4 -336 -334 -332 -330\n\t\tmu 0 4 379 388 389 380\n\t\tf 4 334 328 330 332\n\t\tmu 0 4 390 378 381 391\n\t\tf 4 336 341 -338 -341\n\t\tmu 0 4 392 393 394 395\n\t\tf 4 337 343 -339 -343\n\t\tmu 0 4 395 394 396 397\n\t\tf 4 338 345 -340 -345\n\t\tmu 0 4 397 396 398 399\n\t\tf 4 339 347 -337 -347\n\t\tmu 0 4 399 398 400 401\n\t\tf 4 -348 -346 -344 -342\n\t\tmu 0 4 393 402 403 394\n\t\tf 4 346 340 342 344\n\t\tmu 0 4 404 392 395 405\n\t\tf 4 348 353 -350 -353\n\t\tmu 0 4 406 407 408 409\n\t\tf 4 349 355 -351 -355\n\t\tmu 0 4 409 408 410 411\n\t\tf 4 350 357 -352 -357\n\t\tmu 0 4 411 410 412 413\n\t\tf 4 351 359 -349 -359\n\t\tmu 0 4 413 412 414 415\n\t\tf 4 -360 -358 -356 -354\n\t\tmu 0 4 407 416 417 408\n\t\tf 4 358 352 354 356\n\t\tmu 0 4 418 406 409 419\n\t\tf 4 360 365 -362 -365\n\t\tmu 0 4 420 421 422 423\n\t\tf 4 361 367 -363 -367\n\t\tmu 0 4 423 422 424 425\n\t\tf 4 362 369 -364 -369\n\t\tmu 0 4 425 424 426 427\n\t\tf 4 363 371 -361 -371\n\t\tmu 0 4 427 426 428 429\n\t\tf 4 -372 -370 -368 -366\n\t\tmu 0 4 421 430 431 422\n\t\tf 4 370 364 366 368\n\t\tmu 0 4 432 420 423 433\n\t\tf 4 372 377 -374 -377\n\t\tmu 0 4 434 435 436 437\n\t\tf 4 373 379 -375 -379\n\t\tmu 0 4 437 436 438 439\n\t\tf 4 374 381 -376 -381\n\t\tmu 0 4 439 438 440 441\n\t\tf 4 375 383 -373 -383\n\t\tmu 0 4 441 440 442 443\n\t\tf 4 -384 -382 -380 -378\n\t\tmu 0 4 435 444 445 436\n\t\tf 4 382 376 378 380\n\t\tmu 0 4 446 434 437 447\n\t\tf 4 384 389 -386 -389\n\t\tmu 0 4 448 449 450 451\n\t\tf 4 385 391 -387 -391\n\t\tmu 0 4 451 450 452 453\n\t\tf 4 386 393 -388 -393\n\t\tmu 0 4 453 452 454 455\n\t\tf 4 387 395 -385 -395\n\t\tmu 0 4 455 454 456 457\n\t\tf 4 -396 -394 -392 -390\n\t\tmu 0 4 449 458 459 450\n\t\tf 4 394 388 390 392\n\t\tmu 0 4 460 448 451 461\n\t\tf 4 396 401 -398 -401\n\t\tmu 0 4 462 463 464 465\n\t\tf 4 397 403 -399 -403\n\t\tmu 0 4 465 464 466 467\n\t\tf 4 398 405 -400 -405\n\t\tmu 0 4 467 466 468 469\n\t\tf 4 399 407 -397 -407\n\t\tmu 0 4 469 468 470 471\n\t\tf 4 -408 -406 -404 -402\n\t\tmu 0 4 463 472 473 464\n\t\tf 4 406 400 402 404\n\t\tmu 0 4 474 462 465 475\n\t\tf 4 408 413 -410 -413\n\t\tmu 0 4 476 477 478 479\n\t\tf 4 409 415 -411 -415\n\t\tmu 0 4 479 478 480 481\n\t\tf 4 410 417 -412 -417\n\t\tmu 0 4 481 480 482 483\n\t\tf 4 411 419 -409 -419\n\t\tmu 0 4 483 482 484 485\n\t\tf 4 -420 -418 -416 -414\n\t\tmu 0 4 477 486 487 478\n\t\tf 4 418 412 414 416\n\t\tmu 0 4 488 476 479 489\n\t\tf 4 420 425 -422 -425\n\t\tmu 0 4 490 491 492 493\n\t\tf 4 421 427 -423 -427\n\t\tmu 0 4 493 492 494 495\n\t\tf 4 422 429 -424 -429\n\t\tmu 0 4 495 494 496 497\n\t\tf 4 423 431 -421 -431\n\t\tmu 0 4 497 496 498 499\n\t\tf 4 -432 -430 -428 -426\n\t\tmu 0 4 491 500 501 492\n\t\tf 4 430 424 426 428\n\t\tmu 0 4 502 490 493 503\n\t\tf 4 432 437 -434 -437\n\t\tmu 0 4 504 505 506 507\n\t\tf 4 433 439 -435 -439\n\t\tmu 0 4 507 506 508 509\n\t\tf 4 434 441 -436 -441\n\t\tmu 0 4 509 508 510 511\n\t\tf 4 435 443 -433 -443\n\t\tmu 0 4 511 510 512 513\n\t\tf 4 -444 -442 -440 -438\n\t\tmu 0 4 505 514 515 506\n\t\tf 4 442 436 438 440\n\t\tmu 0 4 516 504 507 517\n\t\tf 4 444 449 -446 -449\n\t\tmu 0 4 518 519 520 521\n\t\tf 4 445 451 -447 -451\n\t\tmu 0 4 521 520 522 523\n\t\tf 4 446 453 -448 -453\n\t\tmu 0 4 523 522 524 525\n\t\tf 4 447 455 -445 -455\n\t\tmu 0 4 525 524 526 527\n\t\tf 4 -456 -454 -452 -450\n\t\tmu 0 4 519 528 529 520\n\t\tf 4 454 448 450 452\n\t\tmu 0 4 530 518 521 531\n\t\tf 4 456 461 -458 -461\n\t\tmu 0 4 532 533 534 535\n\t\tf 4 457 463 -459 -463\n\t\tmu 0 4 535 534 536 537\n\t\tf 4 458 465 -460 -465\n\t\tmu 0 4 537 536 538 539\n\t\tf 4 459 467 -457 -467\n\t\tmu 0 4 539 538 540 541\n\t\tf 4 -468 -466 -464 -462\n\t\tmu 0 4 533 542 543 534\n\t\tf 4 466 460 462 464\n\t\tmu 0 4 544 532 535 545\n\t\tf 4 468 473 -470 -473\n\t\tmu 0 4 546 547 548 549\n\t\tf 4 469 475 -471 -475\n\t\tmu 0 4 549 548 550 551\n\t\tf 4 470 477 -472 -477\n\t\tmu 0 4 551 550 552 553\n\t\tf 4 471 479 -469 -479\n\t\tmu 0 4 553 552 554 555\n\t\tf 4 -480 -478 -476 -474\n\t\tmu 0 4 547 556 557 548\n\t\tf 4 478 472 474 476\n\t\tmu 0 4 558 546 549 559\n\t\tf 4 480 485 -482 -485\n\t\tmu 0 4 560 561 562 563\n\t\tf 4 481 487 -483 -487\n\t\tmu 0 4 563 562 564 565\n\t\tf 4 482 489 -484 -489\n\t\tmu 0 4 565 564 566 567\n\t\tf 4 483 491 -481 -491\n\t\tmu 0 4 567 566 568 569\n\t\tf 4 -492 -490 -488 -486\n\t\tmu 0 4 561 570 571 562\n\t\tf 4 490 484 486 488\n\t\tmu 0 4 572 560 563 573\n\t\tf 4 492 497 -494 -497\n\t\tmu 0 4 574 575 576 577\n\t\tf 4 493 499 -495 -499\n\t\tmu 0 4 577 576 578 579\n\t\tf 4 494 501 -496 -501\n\t\tmu 0 4 579 578 580 581\n\t\tf 4 495 503 -493 -503\n\t\tmu 0 4 581 580 582 583\n\t\tf 4 -504 -502 -500 -498\n\t\tmu 0 4 575 584 585 576\n\t\tf 4 502 496 498 500\n\t\tmu 0 4 586 574 577 587\n\t\tf 4 504 509 -506 -509\n\t\tmu 0 4 588 589 590 591\n\t\tf 4 505 511 -507 -511\n\t\tmu 0 4 591 590 592 593\n\t\tf 4 506 513 -508 -513\n\t\tmu 0 4 593 592 594 595\n\t\tf 4 507 515 -505 -515\n\t\tmu 0 4 595 594 596 597\n\t\tf 4 -516 -514 -512 -510\n\t\tmu 0 4 589 598 599 590\n\t\tf 4 514 508 510 512\n\t\tmu 0 4 600 588 591 601\n\t\tf 4 516 521 -518 -521\n\t\tmu 0 4 602 603 604 605\n\t\tf 4 517 523 -519 -523\n\t\tmu 0 4 605 604 606 607\n\t\tf 4 518 525 -520 -525\n\t\tmu 0 4 607 606 608 609\n\t\tf 4 519 527 -517 -527\n\t\tmu 0 4 609 608 610 611\n\t\tf 4 -528 -526 -524 -522\n\t\tmu 0 4 603 612 613 604\n\t\tf 4 526 520 522 524\n\t\tmu 0 4 614 602 605 615\n\t\tf 4 528 533 -530 -533\n\t\tmu 0 4 616 617 618 619\n\t\tf 4 529 535 -531 -535\n\t\tmu 0 4 619 618 620 621\n\t\tf 4 530 537 -532 -537\n\t\tmu 0 4 621 620 622 623\n\t\tf 4 531 539 -529 -539\n\t\tmu 0 4 623 622 624 625\n\t\tf 4 -540 -538 -536 -534\n\t\tmu 0 4 617 626 627 618\n\t\tf 4 538 532 534 536\n\t\tmu 0 4 628 616 619 629\n\t\tf 4 540 545 -542 -545\n\t\tmu 0 4 630 631 632 633\n\t\tf 4 541 547 -543 -547\n\t\tmu 0 4 633 632 634 635\n\t\tf 4 542 549 -544 -549\n\t\tmu 0 4 635 634 636 637\n\t\tf 4 543 551 -541 -551\n\t\tmu 0 4 637 636 638 639\n\t\tf 4 -552 -550 -548 -546\n\t\tmu 0 4 631 640 641 632\n\t\tf 4 550 544 546 548\n\t\tmu 0 4 642 630 633 643\n\t\tf 4 552 557 -554 -557\n\t\tmu 0 4 644 645 646 647\n\t\tf 4 553 559 -555 -559\n\t\tmu 0 4 647 646 648 649\n\t\tf 4 554 561 -556 -561\n\t\tmu 0 4 649 648 650 651\n\t\tf 4 555 563 -553 -563\n\t\tmu 0 4 651 650 652 653\n\t\tf 4 -564 -562 -560 -558\n\t\tmu 0 4 645 654 655 646\n\t\tf 4 562 556 558 560\n\t\tmu 0 4 656 644 647 657\n\t\tf 4 564 569 -566 -569\n\t\tmu 0 4 658 659 660 661\n\t\tf 4 565 571 -567 -571\n\t\tmu 0 4 661 660 662 663\n\t\tf 4 566 573 -568 -573\n\t\tmu 0 4 663 662 664 665\n\t\tf 4 567 575 -565 -575\n\t\tmu 0 4 665 664 666 667\n\t\tf 4 -576 -574 -572 -570\n\t\tmu 0 4 659 668 669 660\n\t\tf 4 574 568 570 572\n\t\tmu 0 4 670 658 661 671\n\t\tf 4 576 581 -578 -581\n\t\tmu 0 4 672 673 674 675\n\t\tf 4 577 583 -579 -583\n\t\tmu 0 4 675 674 676 677\n\t\tf 4 578 585 -580 -585\n\t\tmu 0 4 677 676 678 679\n\t\tf 4 579 587 -577 -587\n\t\tmu 0 4 679 678 680 681\n\t\tf 4 -588 -586 -584 -582\n\t\tmu 0 4 673 682 683 674\n\t\tf 4 586 580 582 584\n\t\tmu 0 4 684 672 675 685\n\t\tf 4 588 593 -590 -593\n\t\tmu 0 4 686 687 688 689\n\t\tf 4 589 595 -591 -595\n\t\tmu 0 4 689 688 690 691\n\t\tf 4 590 597 -592 -597\n\t\tmu 0 4 691 690 692 693\n\t\tf 4 591 599 -589 -599\n\t\tmu 0 4 693 692 694 695\n\t\tf 4 -600 -598 -596 -594\n\t\tmu 0 4 687 696 697 688\n\t\tf 4 598 592 594 596\n\t\tmu 0 4 698 686 689 699\n\t\tf 4 600 605 -602 -605\n\t\tmu 0 4 700 701 702 703\n\t\tf 4 601 607 -603 -607\n\t\tmu 0 4 703 702 704 705\n\t\tf 4 602 609 -604 -609\n\t\tmu 0 4 705 704 706 707\n\t\tf 4 603 611 -601 -611\n\t\tmu 0 4 707 706 708 709\n\t\tf 4 -612 -610 -608 -606\n\t\tmu 0 4 701 710 711 702\n\t\tf 4 610 604 606 608\n\t\tmu 0 4 712 700 703 713\n\t\tf 4 612 617 -614 -617\n\t\tmu 0 4 714 715 716 717\n\t\tf 4 613 619 -615 -619\n\t\tmu 0 4 717 716 718 719\n\t\tf 4 614 621 -616 -621\n\t\tmu 0 4 719 718 720 721\n\t\tf 4 615 623 -613 -623\n\t\tmu 0 4 721 720 722 723\n\t\tf 4 -624 -622 -620 -618\n\t\tmu 0 4 715 724 725 716\n\t\tf 4 622 616 618 620\n\t\tmu 0 4 726 714 717 727\n\t\tf 4 624 629 -626 -629\n\t\tmu 0 4 728 729 730 731\n\t\tf 4 625 631 -627 -631\n\t\tmu 0 4 731 730 732 733\n\t\tf 4 626 633 -628 -633\n\t\tmu 0 4 733 732 734 735\n\t\tf 4 627 635 -625 -635\n\t\tmu 0 4 735 734 736 737\n\t\tf 4 -636 -634 -632 -630\n\t\tmu 0 4 729 738 739 730\n\t\tf 4 634 628 630 632\n\t\tmu 0 4 740 728 731 741\n\t\tf 4 636 641 -638 -641\n\t\tmu 0 4 742 743 744 745\n\t\tf 4 637 643 -639 -643\n\t\tmu 0 4 745 744 746 747\n\t\tf 4 638 645 -640 -645\n\t\tmu 0 4 747 746 748 749\n\t\tf 4 639 647 -637 -647\n\t\tmu 0 4 749 748 750 751\n\t\tf 4 -648 -646 -644 -642\n\t\tmu 0 4 743 752 753 744\n\t\tf 4 646 640 642 644\n\t\tmu 0 4 754 742 745 755\n\t\tf 4 648 653 -650 -653\n\t\tmu 0 4 756 757 758 759\n\t\tf 4 649 655 -651 -655\n\t\tmu 0 4 759 758 760 761\n\t\tf 4 650 657 -652 -657\n\t\tmu 0 4 761 760 762 763\n\t\tf 4 651 659 -649 -659\n\t\tmu 0 4 763 762 764 765\n\t\tf 4 -660 -658 -656 -654\n\t\tmu 0 4 757 766 767 758\n\t\tf 4 658 652 654 656\n\t\tmu 0 4 768 756 759 769\n\t\tf 4 660 665 -662 -665\n\t\tmu 0 4 770 771 772 773\n\t\tf 4 661 667 -663 -667\n\t\tmu 0 4 773 772 774 775\n\t\tf 4 662 669 -664 -669\n\t\tmu 0 4 775 774 776 777\n\t\tf 4 663 671 -661 -671\n\t\tmu 0 4 777 776 778 779\n\t\tf 4 -672 -670 -668 -666\n\t\tmu 0 4 771 780 781 772\n\t\tf 4 670 664 666 668\n\t\tmu 0 4 782 770 773 783\n\t\tf 4 672 677 -674 -677\n\t\tmu 0 4 784 785 786 787\n\t\tf 4 673 679 -675 -679\n\t\tmu 0 4 787 786 788 789\n\t\tf 4 674 681 -676 -681\n\t\tmu 0 4 789 788 790 791\n\t\tf 4 675 683 -673 -683\n\t\tmu 0 4 791 790 792 793\n\t\tf 4 -684 -682 -680 -678\n\t\tmu 0 4 785 794 795 786\n\t\tf 4 682 676 678 680\n\t\tmu 0 4 796 784 787 797\n\t\tf 4 684 689 -686 -689\n\t\tmu 0 4 798 799 800 801\n\t\tf 4 685 691 -687 -691\n\t\tmu 0 4 801 800 802 803\n\t\tf 4 686 693 -688 -693\n\t\tmu 0 4 803 802 804 805\n\t\tf 4 687 695 -685 -695\n\t\tmu 0 4 805 804 806 807\n\t\tf 4 -696 -694 -692 -690\n\t\tmu 0 4 799 808 809 800\n\t\tf 4 694 688 690 692\n\t\tmu 0 4 810 798 801 811\n\t\tf 4 696 701 -698 -701\n\t\tmu 0 4 812 813 814 815\n\t\tf 4 697 703 -699 -703\n\t\tmu 0 4 815 814 816 817\n\t\tf 4 698 705 -700 -705\n\t\tmu 0 4 817 816 818 819\n\t\tf 4 699 707 -697 -707\n\t\tmu 0 4 819 818 820 821\n\t\tf 4 -708 -706 -704 -702\n\t\tmu 0 4 813 822 823 814\n\t\tf 4 706 700 702 704\n\t\tmu 0 4 824 812 815 825\n\t\tf 4 708 713 -710 -713\n\t\tmu 0 4 826 827 828 829\n\t\tf 4 709 715 -711 -715\n\t\tmu 0 4 829 828 830 831\n\t\tf 4 710 717 -712 -717\n\t\tmu 0 4 831 830 832 833\n\t\tf 4 711 719 -709 -719\n\t\tmu 0 4 833 832 834 835\n\t\tf 4 -720 -718 -716 -714\n\t\tmu 0 4 827 836 837 828\n\t\tf 4 718 712 714 716\n\t\tmu 0 4 838 826 829 839\n\t\tf 4 720 725 -722 -725\n\t\tmu 0 4 840 841 842 843\n\t\tf 4 721 727 -723 -727\n\t\tmu 0 4 843 842 844 845\n\t\tf 4 722 729 -724 -729\n\t\tmu 0 4 845 844 846 847\n\t\tf 4 723 731 -721 -731\n\t\tmu 0 4 847 846 848 849\n\t\tf 4 -732 -730 -728 -726\n\t\tmu 0 4 841 850 851 842\n\t\tf 4 730 724 726 728\n\t\tmu 0 4 852 840 843 853\n\t\tf 4 732 737 -734 -737\n\t\tmu 0 4 854 855 856 857\n\t\tf 4 733 739 -735 -739\n\t\tmu 0 4 857 856 858 859\n\t\tf 4 734 741 -736 -741\n\t\tmu 0 4 859 858 860 861\n\t\tf 4 735 743 -733 -743\n\t\tmu 0 4 861 860 862 863\n\t\tf 4 -744 -742 -740 -738\n\t\tmu 0 4 855 864 865 856\n\t\tf 4 742 736 738 740\n\t\tmu 0 4 866 854 857 867\n\t\tf 4 744 749 -746 -749\n\t\tmu 0 4 868 869 870 871\n\t\tf 4 745 751 -747 -751\n\t\tmu 0 4 871 870 872 873\n\t\tf 4 746 753 -748 -753\n\t\tmu 0 4 873 872 874 875\n\t\tf 4 747 755 -745 -755\n\t\tmu 0 4 875 874 876 877\n\t\tf 4 -756 -754 -752 -750\n\t\tmu 0 4 869 878 879 870\n\t\tf 4 754 748 750 752\n\t\tmu 0 4 880 868 871 881\n\t\tf 4 756 761 -758 -761\n\t\tmu 0 4 882 883 884 885\n\t\tf 4 757 763 -759 -763\n\t\tmu 0 4 885 884 886 887\n\t\tf 4 758 765 -760 -765\n\t\tmu 0 4 887 886 888 889\n\t\tf 4 759 767 -757 -767\n\t\tmu 0 4 889 888 890 891\n\t\tf 4 -768 -766 -764 -762\n\t\tmu 0 4 883 892 893 884\n\t\tf 4 766 760 762 764\n\t\tmu 0 4 894 882 885 895\n\t\tf 4 768 773 -770 -773\n\t\tmu 0 4 896 897 898 899\n\t\tf 4 769 775 -771 -775\n\t\tmu 0 4 899 898 900 901\n\t\tf 4 770 777 -772 -777\n\t\tmu 0 4 901 900 902 903\n\t\tf 4 771 779 -769 -779\n\t\tmu 0 4 903 902 904 905\n\t\tf 4 -780 -778 -776 -774\n\t\tmu 0 4 897 906 907 898\n\t\tf 4 778 772 774 776\n\t\tmu 0 4 908 896 899 909\n\t\tf 4 780 785 -782 -785\n\t\tmu 0 4 910 911 912 913\n\t\tf 4 781 787 -783 -787\n\t\tmu 0 4 913 912 914 915\n\t\tf 4 782 789 -784 -789\n\t\tmu 0 4 915 914 916 917\n\t\tf 4 783 791 -781 -791\n\t\tmu 0 4 917 916 918 919\n\t\tf 4 -792 -790 -788 -786\n\t\tmu 0 4 911 920 921 912\n\t\tf 4 790 784 786 788\n\t\tmu 0 4 922 910 913 923\n\t\tf 4 792 797 -794 -797\n\t\tmu 0 4 924 925 926 927\n\t\tf 4 793 799 -795 -799\n\t\tmu 0 4 927 926 928 929\n\t\tf 4 794 801 -796 -801\n\t\tmu 0 4 929 928 930 931\n\t\tf 4 795 803 -793 -803\n\t\tmu 0 4 931 930 932 933\n\t\tf 4 -804 -802 -800 -798\n\t\tmu 0 4 925 934 935 926\n\t\tf 4 802 796 798 800\n\t\tmu 0 4 936 924 927 937\n\t\tf 4 804 809 -806 -809\n\t\tmu 0 4 938 939 940 941\n\t\tf 4 805 811 -807 -811\n\t\tmu 0 4 941 940 942 943\n\t\tf 4 806 813 -808 -813\n\t\tmu 0 4 943 942 944 945\n\t\tf 4 807 815 -805 -815\n\t\tmu 0 4 945 944 946 947\n\t\tf 4 -816 -814 -812 -810\n\t\tmu 0 4 939 948 949 940\n\t\tf 4 814 808 810 812\n\t\tmu 0 4 950 938 941 951\n\t\tf 4 816 821 -818 -821\n\t\tmu 0 4 952 953 954 955\n\t\tf 4 817 823 -819 -823\n\t\tmu 0 4 955 954 956 957\n\t\tf 4 818 825 -820 -825\n\t\tmu 0 4 957 956 958 959\n\t\tf 4 819 827 -817 -827\n\t\tmu 0 4 959 958 960 961\n\t\tf 4 -828 -826 -824 -822\n\t\tmu 0 4 953 962 963 954\n\t\tf 4 826 820 822 824\n\t\tmu 0 4 964 952 955 965\n\t\tf 4 828 833 -830 -833\n\t\tmu 0 4 966 967 968 969\n\t\tf 4 829 835 -831 -835\n\t\tmu 0 4 969 968 970 971\n\t\tf 4 830 837 -832 -837\n\t\tmu 0 4 971 970 972 973\n\t\tf 4 831 839 -829 -839\n\t\tmu 0 4 973 972 974 975\n\t\tf 4 -840 -838 -836 -834\n\t\tmu 0 4 967 976 977 968\n\t\tf 4 838 832 834 836\n\t\tmu 0 4 978 966 969 979\n\t\tf 4 840 845 -842 -845\n\t\tmu 0 4 980 981 982 983\n\t\tf 4 841 847 -843 -847\n\t\tmu 0 4 983 982 984 985\n\t\tf 4 842 849 -844 -849\n\t\tmu 0 4 985 984 986 987\n\t\tf 4 843 851 -841 -851\n\t\tmu 0 4 987 986 988 989\n\t\tf 4 -852 -850 -848 -846\n\t\tmu 0 4 981 990 991 982\n\t\tf 4 850 844 846 848\n\t\tmu 0 4 992 980 983 993\n\t\tf 4 852 857 -854 -857\n\t\tmu 0 4 994 995 996 997\n\t\tf 4 853 859 -855 -859\n\t\tmu 0 4 997 996 998 999\n\t\tf 4 854 861 -856 -861\n\t\tmu 0 4 999 998 1000 1001\n\t\tf 4 855 863 -853 -863\n\t\tmu 0 4 1001 1000 1002 1003\n\t\tf 4 -864 -862 -860 -858\n\t\tmu 0 4 995 1004 1005 996\n\t\tf 4 862 856 858 860\n\t\tmu 0 4 1006 994 997 1007\n\t\tf 4 864 869 -866 -869\n\t\tmu 0 4 1008 1009 1010 1011\n\t\tf 4 865 871 -867 -871\n\t\tmu 0 4 1011 1010 1012 1013\n\t\tf 4 866 873 -868 -873\n\t\tmu 0 4 1013 1012 1014 1015\n\t\tf 4 867 875 -865 -875\n\t\tmu 0 4 1015 1014 1016 1017\n\t\tf 4 -876 -874 -872 -870\n\t\tmu 0 4 1009 1018 1019 1010\n\t\tf 4 874 868 870 872\n\t\tmu 0 4 1020 1008 1011 1021\n\t\tf 4 876 881 -878 -881\n\t\tmu 0 4 1022 1023 1024 1025\n\t\tf 4 877 883 -879 -883\n\t\tmu 0 4 1025 1024 1026 1027\n\t\tf 4 878 885 -880 -885\n\t\tmu 0 4 1027 1026 1028 1029\n\t\tf 4 879 887 -877 -887\n\t\tmu 0 4 1029 1028 1030 1031\n\t\tf 4 -888 -886 -884 -882\n\t\tmu 0 4 1023 1032 1033 1024\n\t\tf 4 886 880 882 884\n\t\tmu 0 4 1034 1022 1025 1035\n\t\tf 4 888 893 -890 -893\n\t\tmu 0 4 1036 1037 1038 1039\n\t\tf 4 889 895 -891 -895\n\t\tmu 0 4 1039 1038 1040 1041\n\t\tf 4 890 897 -892 -897\n\t\tmu 0 4 1041 1040 1042 1043\n\t\tf 4 891 899 -889 -899\n\t\tmu 0 4 1043 1042 1044 1045\n\t\tf 4 -900 -898 -896 -894\n\t\tmu 0 4 1037 1046 1047 1038\n\t\tf 4 898 892 894 896\n\t\tmu 0 4 1048 1036 1039 1049\n\t\tf 4 900 905 -902 -905\n\t\tmu 0 4 1050 1051 1052 1053\n\t\tf 4 901 907 -903 -907\n\t\tmu 0 4 1053 1052 1054 1055\n\t\tf 4 902 909 -904 -909\n\t\tmu 0 4 1055 1054 1056 1057\n\t\tf 4 903 911 -901 -911\n\t\tmu 0 4 1057 1056 1058 1059\n\t\tf 4 -912 -910 -908 -906\n\t\tmu 0 4 1051 1060 1061 1052\n\t\tf 4 910 904 906 908\n\t\tmu 0 4 1062 1050 1053 1063\n\t\tf 4 912 917 -914 -917\n\t\tmu 0 4 1064 1065 1066 1067\n\t\tf 4 913 919 -915 -919\n\t\tmu 0 4 1067 1066 1068 1069\n\t\tf 4 914 921 -916 -921\n\t\tmu 0 4 1069 1068 1070 1071\n\t\tf 4 915 923 -913 -923\n\t\tmu 0 4 1071 1070 1072 1073\n\t\tf 4 -924 -922 -920 -918\n\t\tmu 0 4 1065 1074 1075 1066\n\t\tf 4 922 916 918 920\n\t\tmu 0 4 1076 1064 1067 1077\n\t\tf 4 924 929 -926 -929\n\t\tmu 0 4 1078 1079 1080 1081\n\t\tf 4 925 931 -927 -931\n\t\tmu 0 4 1081 1080 1082 1083\n\t\tf 4 926 933 -928 -933\n\t\tmu 0 4 1083 1082 1084 1085\n\t\tf 4 927 935 -925 -935\n\t\tmu 0 4 1085 1084 1086 1087\n\t\tf 4 -936 -934 -932 -930\n\t\tmu 0 4 1079 1088 1089 1080\n\t\tf 4 934 928 930 932\n\t\tmu 0 4 1090 1078 1081 1091\n\t\tf 4 936 941 -938 -941\n\t\tmu 0 4 1092 1093 1094 1095\n\t\tf 4 937 943 -939 -943\n\t\tmu 0 4 1095 1094 1096 1097\n\t\tf 4 938 945 -940 -945\n\t\tmu 0 4 1097 1096 1098 1099\n\t\tf 4 939 947 -937 -947\n\t\tmu 0 4 1099 1098 1100 1101\n\t\tf 4 -948 -946 -944 -942\n\t\tmu 0 4 1093 1102 1103 1094\n\t\tf 4 946 940 942 944\n\t\tmu 0 4 1104 1092 1095 1105\n\t\tf 4 948 953 -950 -953\n\t\tmu 0 4 1106 1107 1108 1109\n\t\tf 4 949 955 -951 -955\n\t\tmu 0 4 1109 1108 1110 1111\n\t\tf 4 950 957 -952 -957\n\t\tmu 0 4 1111 1110 1112 1113\n\t\tf 4 951 959 -949 -959\n\t\tmu 0 4 1113 1112 1114 1115\n\t\tf 4 -960 -958 -956 -954\n\t\tmu 0 4 1107 1116 1117 1108\n\t\tf 4 958 952 954 956\n\t\tmu 0 4 1118 1106 1109 1119\n\t\tf 4 960 965 -962 -965\n\t\tmu 0 4 1120 1121 1122 1123\n\t\tf 4 961 967 -963 -967\n\t\tmu 0 4 1123 1122 1124 1125\n\t\tf 4 962 969 -964 -969\n\t\tmu 0 4 1125 1124 1126 1127\n\t\tf 4 963 971 -961 -971\n\t\tmu 0 4 1127 1126 1128 1129\n\t\tf 4 -972 -970 -968 -966\n\t\tmu 0 4 1121 1130 1131 1122\n\t\tf 4 970 964 966 968\n\t\tmu 0 4 1132 1120 1123 1133\n\t\tf 4 972 977 -974 -977\n\t\tmu 0 4 1134 1135 1136 1137\n\t\tf 4 973 979 -975 -979\n\t\tmu 0 4 1137 1136 1138 1139\n\t\tf 4 974 981 -976 -981\n\t\tmu 0 4 1139 1138 1140 1141\n\t\tf 4 975 983 -973 -983\n\t\tmu 0 4 1141 1140 1142 1143\n\t\tf 4 -984 -982 -980 -978\n\t\tmu 0 4 1135 1144 1145 1136\n\t\tf 4 982 976 978 980\n\t\tmu 0 4 1146 1134 1137 1147\n\t\tf 4 984 989 -986 -989\n\t\tmu 0 4 1148 1149 1150 1151\n\t\tf 4 985 991 -987 -991\n\t\tmu 0 4 1151 1150 1152 1153\n\t\tf 4 986 993 -988 -993\n\t\tmu 0 4 1153 1152 1154 1155\n\t\tf 4 987 995 -985 -995\n\t\tmu 0 4 1155 1154 1156 1157\n\t\tf 4 -996 -994 -992 -990\n\t\tmu 0 4 1149 1158 1159 1150\n\t\tf 4 994 988 990 992\n\t\tmu 0 4 1160 1148 1151 1161\n\t\tf 4 996 1001 -998 -1001\n\t\tmu 0 4 1162 1163 1164 1165\n\t\tf 4 997 1003 -999 -1003\n\t\tmu 0 4 1165 1164 1166 1167;\n\tsetAttr \".fc[500:999]\"\n\t\tf 4 998 1005 -1000 -1005\n\t\tmu 0 4 1167 1166 1168 1169\n\t\tf 4 999 1007 -997 -1007\n\t\tmu 0 4 1169 1168 1170 1171\n\t\tf 4 -1008 -1006 -1004 -1002\n\t\tmu 0 4 1163 1172 1173 1164\n\t\tf 4 1006 1000 1002 1004\n\t\tmu 0 4 1174 1162 1165 1175\n\t\tf 4 1008 1013 -1010 -1013\n\t\tmu 0 4 1176 1177 1178 1179\n\t\tf 4 1009 1015 -1011 -1015\n\t\tmu 0 4 1179 1178 1180 1181\n\t\tf 4 1010 1017 -1012 -1017\n\t\tmu 0 4 1181 1180 1182 1183\n\t\tf 4 1011 1019 -1009 -1019\n\t\tmu 0 4 1183 1182 1184 1185\n\t\tf 4 -1020 -1018 -1016 -1014\n\t\tmu 0 4 1177 1186 1187 1178\n\t\tf 4 1018 1012 1014 1016\n\t\tmu 0 4 1188 1176 1179 1189\n\t\tf 4 1020 1025 -1022 -1025\n\t\tmu 0 4 1190 1191 1192 1193\n\t\tf 4 1021 1027 -1023 -1027\n\t\tmu 0 4 1193 1192 1194 1195\n\t\tf 4 1022 1029 -1024 -1029\n\t\tmu 0 4 1195 1194 1196 1197\n\t\tf 4 1023 1031 -1021 -1031\n\t\tmu 0 4 1197 1196 1198 1199\n\t\tf 4 -1032 -1030 -1028 -1026\n\t\tmu 0 4 1191 1200 1201 1192\n\t\tf 4 1030 1024 1026 1028\n\t\tmu 0 4 1202 1190 1193 1203\n\t\tf 4 1032 1037 -1034 -1037\n\t\tmu 0 4 1204 1205 1206 1207\n\t\tf 4 1033 1039 -1035 -1039\n\t\tmu 0 4 1207 1206 1208 1209\n\t\tf 4 1034 1041 -1036 -1041\n\t\tmu 0 4 1209 1208 1210 1211\n\t\tf 4 1035 1043 -1033 -1043\n\t\tmu 0 4 1211 1210 1212 1213\n\t\tf 4 -1044 -1042 -1040 -1038\n\t\tmu 0 4 1205 1214 1215 1206\n\t\tf 4 1042 1036 1038 1040\n\t\tmu 0 4 1216 1204 1207 1217\n\t\tf 4 1044 1049 -1046 -1049\n\t\tmu 0 4 1218 1219 1220 1221\n\t\tf 4 1045 1051 -1047 -1051\n\t\tmu 0 4 1221 1220 1222 1223\n\t\tf 4 1046 1053 -1048 -1053\n\t\tmu 0 4 1223 1222 1224 1225\n\t\tf 4 1047 1055 -1045 -1055\n\t\tmu 0 4 1225 1224 1226 1227\n\t\tf 4 -1056 -1054 -1052 -1050\n\t\tmu 0 4 1219 1228 1229 1220\n\t\tf 4 1054 1048 1050 1052\n\t\tmu 0 4 1230 1218 1221 1231\n\t\tf 4 1056 1061 -1058 -1061\n\t\tmu 0 4 1232 1233 1234 1235\n\t\tf 4 1057 1063 -1059 -1063\n\t\tmu 0 4 1235 1234 1236 1237\n\t\tf 4 1058 1065 -1060 -1065\n\t\tmu 0 4 1237 1236 1238 1239\n\t\tf 4 1059 1067 -1057 -1067\n\t\tmu 0 4 1239 1238 1240 1241\n\t\tf 4 -1068 -1066 -1064 -1062\n\t\tmu 0 4 1233 1242 1243 1234\n\t\tf 4 1066 1060 1062 1064\n\t\tmu 0 4 1244 1232 1235 1245\n\t\tf 4 1068 1073 -1070 -1073\n\t\tmu 0 4 1246 1247 1248 1249\n\t\tf 4 1069 1075 -1071 -1075\n\t\tmu 0 4 1249 1248 1250 1251\n\t\tf 4 1070 1077 -1072 -1077\n\t\tmu 0 4 1251 1250 1252 1253\n\t\tf 4 1071 1079 -1069 -1079\n\t\tmu 0 4 1253 1252 1254 1255\n\t\tf 4 -1080 -1078 -1076 -1074\n\t\tmu 0 4 1247 1256 1257 1248\n\t\tf 4 1078 1072 1074 1076\n\t\tmu 0 4 1258 1246 1249 1259\n\t\tf 4 1080 1085 -1082 -1085\n\t\tmu 0 4 1260 1261 1262 1263\n\t\tf 4 1081 1087 -1083 -1087\n\t\tmu 0 4 1263 1262 1264 1265\n\t\tf 4 1082 1089 -1084 -1089\n\t\tmu 0 4 1265 1264 1266 1267\n\t\tf 4 1083 1091 -1081 -1091\n\t\tmu 0 4 1267 1266 1268 1269\n\t\tf 4 -1092 -1090 -1088 -1086\n\t\tmu 0 4 1261 1270 1271 1262\n\t\tf 4 1090 1084 1086 1088\n\t\tmu 0 4 1272 1260 1263 1273\n\t\tf 4 1092 1097 -1094 -1097\n\t\tmu 0 4 1274 1275 1276 1277\n\t\tf 4 1093 1099 -1095 -1099\n\t\tmu 0 4 1277 1276 1278 1279\n\t\tf 4 1094 1101 -1096 -1101\n\t\tmu 0 4 1279 1278 1280 1281\n\t\tf 4 1095 1103 -1093 -1103\n\t\tmu 0 4 1281 1280 1282 1283\n\t\tf 4 -1104 -1102 -1100 -1098\n\t\tmu 0 4 1275 1284 1285 1276\n\t\tf 4 1102 1096 1098 1100\n\t\tmu 0 4 1286 1274 1277 1287\n\t\tf 4 1104 1109 -1106 -1109\n\t\tmu 0 4 1288 1289 1290 1291\n\t\tf 4 1105 1111 -1107 -1111\n\t\tmu 0 4 1291 1290 1292 1293\n\t\tf 4 1106 1113 -1108 -1113\n\t\tmu 0 4 1293 1292 1294 1295\n\t\tf 4 1107 1115 -1105 -1115\n\t\tmu 0 4 1295 1294 1296 1297\n\t\tf 4 -1116 -1114 -1112 -1110\n\t\tmu 0 4 1289 1298 1299 1290\n\t\tf 4 1114 1108 1110 1112\n\t\tmu 0 4 1300 1288 1291 1301\n\t\tf 4 1116 1121 -1118 -1121\n\t\tmu 0 4 1302 1303 1304 1305\n\t\tf 4 1117 1123 -1119 -1123\n\t\tmu 0 4 1305 1304 1306 1307\n\t\tf 4 1118 1125 -1120 -1125\n\t\tmu 0 4 1307 1306 1308 1309\n\t\tf 4 1119 1127 -1117 -1127\n\t\tmu 0 4 1309 1308 1310 1311\n\t\tf 4 -1128 -1126 -1124 -1122\n\t\tmu 0 4 1303 1312 1313 1304\n\t\tf 4 1126 1120 1122 1124\n\t\tmu 0 4 1314 1302 1305 1315\n\t\tf 4 1128 1133 -1130 -1133\n\t\tmu 0 4 1316 1317 1318 1319\n\t\tf 4 1129 1135 -1131 -1135\n\t\tmu 0 4 1319 1318 1320 1321\n\t\tf 4 1130 1137 -1132 -1137\n\t\tmu 0 4 1321 1320 1322 1323\n\t\tf 4 1131 1139 -1129 -1139\n\t\tmu 0 4 1323 1322 1324 1325\n\t\tf 4 -1140 -1138 -1136 -1134\n\t\tmu 0 4 1317 1326 1327 1318\n\t\tf 4 1138 1132 1134 1136\n\t\tmu 0 4 1328 1316 1319 1329\n\t\tf 4 1140 1145 -1142 -1145\n\t\tmu 0 4 1330 1331 1332 1333\n\t\tf 4 1141 1147 -1143 -1147\n\t\tmu 0 4 1333 1332 1334 1335\n\t\tf 4 1142 1149 -1144 -1149\n\t\tmu 0 4 1335 1334 1336 1337\n\t\tf 4 1143 1151 -1141 -1151\n\t\tmu 0 4 1337 1336 1338 1339\n\t\tf 4 -1152 -1150 -1148 -1146\n\t\tmu 0 4 1331 1340 1341 1332\n\t\tf 4 1150 1144 1146 1148\n\t\tmu 0 4 1342 1330 1333 1343\n\t\tf 4 1152 1157 -1154 -1157\n\t\tmu 0 4 1344 1345 1346 1347\n\t\tf 4 1153 1159 -1155 -1159\n\t\tmu 0 4 1347 1346 1348 1349\n\t\tf 4 1154 1161 -1156 -1161\n\t\tmu 0 4 1349 1348 1350 1351\n\t\tf 4 1155 1163 -1153 -1163\n\t\tmu 0 4 1351 1350 1352 1353\n\t\tf 4 -1164 -1162 -1160 -1158\n\t\tmu 0 4 1345 1354 1355 1346\n\t\tf 4 1162 1156 1158 1160\n\t\tmu 0 4 1356 1344 1347 1357\n\t\tf 4 1164 1169 -1166 -1169\n\t\tmu 0 4 1358 1359 1360 1361\n\t\tf 4 1165 1171 -1167 -1171\n\t\tmu 0 4 1361 1360 1362 1363\n\t\tf 4 1166 1173 -1168 -1173\n\t\tmu 0 4 1363 1362 1364 1365\n\t\tf 4 1167 1175 -1165 -1175\n\t\tmu 0 4 1365 1364 1366 1367\n\t\tf 4 -1176 -1174 -1172 -1170\n\t\tmu 0 4 1359 1368 1369 1360\n\t\tf 4 1174 1168 1170 1172\n\t\tmu 0 4 1370 1358 1361 1371\n\t\tf 4 1176 1181 -1178 -1181\n\t\tmu 0 4 1372 1373 1374 1375\n\t\tf 4 1177 1183 -1179 -1183\n\t\tmu 0 4 1375 1374 1376 1377\n\t\tf 4 1178 1185 -1180 -1185\n\t\tmu 0 4 1377 1376 1378 1379\n\t\tf 4 1179 1187 -1177 -1187\n\t\tmu 0 4 1379 1378 1380 1381\n\t\tf 4 -1188 -1186 -1184 -1182\n\t\tmu 0 4 1373 1382 1383 1374\n\t\tf 4 1186 1180 1182 1184\n\t\tmu 0 4 1384 1372 1375 1385\n\t\tf 4 1188 1193 -1190 -1193\n\t\tmu 0 4 1386 1387 1388 1389\n\t\tf 4 1189 1195 -1191 -1195\n\t\tmu 0 4 1389 1388 1390 1391\n\t\tf 4 1190 1197 -1192 -1197\n\t\tmu 0 4 1391 1390 1392 1393\n\t\tf 4 1191 1199 -1189 -1199\n\t\tmu 0 4 1393 1392 1394 1395\n\t\tf 4 -1200 -1198 -1196 -1194\n\t\tmu 0 4 1387 1396 1397 1388\n\t\tf 4 1198 1192 1194 1196\n\t\tmu 0 4 1398 1386 1389 1399\n\t\tf 4 1200 1205 -1202 -1205\n\t\tmu 0 4 1400 1401 1402 1403\n\t\tf 4 1201 1207 -1203 -1207\n\t\tmu 0 4 1403 1402 1404 1405\n\t\tf 4 1202 1209 -1204 -1209\n\t\tmu 0 4 1405 1404 1406 1407\n\t\tf 4 1203 1211 -1201 -1211\n\t\tmu 0 4 1407 1406 1408 1409\n\t\tf 4 -1212 -1210 -1208 -1206\n\t\tmu 0 4 1401 1410 1411 1402\n\t\tf 4 1210 1204 1206 1208\n\t\tmu 0 4 1412 1400 1403 1413\n\t\tf 4 1212 1217 -1214 -1217\n\t\tmu 0 4 1414 1415 1416 1417\n\t\tf 4 1213 1219 -1215 -1219\n\t\tmu 0 4 1417 1416 1418 1419\n\t\tf 4 1214 1221 -1216 -1221\n\t\tmu 0 4 1419 1418 1420 1421\n\t\tf 4 1215 1223 -1213 -1223\n\t\tmu 0 4 1421 1420 1422 1423\n\t\tf 4 -1224 -1222 -1220 -1218\n\t\tmu 0 4 1415 1424 1425 1416\n\t\tf 4 1222 1216 1218 1220\n\t\tmu 0 4 1426 1414 1417 1427\n\t\tf 4 1224 1229 -1226 -1229\n\t\tmu 0 4 1428 1429 1430 1431\n\t\tf 4 1225 1231 -1227 -1231\n\t\tmu 0 4 1431 1430 1432 1433\n\t\tf 4 1226 1233 -1228 -1233\n\t\tmu 0 4 1433 1432 1434 1435\n\t\tf 4 1227 1235 -1225 -1235\n\t\tmu 0 4 1435 1434 1436 1437\n\t\tf 4 -1236 -1234 -1232 -1230\n\t\tmu 0 4 1429 1438 1439 1430\n\t\tf 4 1234 1228 1230 1232\n\t\tmu 0 4 1440 1428 1431 1441\n\t\tf 4 1236 1241 -1238 -1241\n\t\tmu 0 4 1442 1443 1444 1445\n\t\tf 4 1237 1243 -1239 -1243\n\t\tmu 0 4 1445 1444 1446 1447\n\t\tf 4 1238 1245 -1240 -1245\n\t\tmu 0 4 1447 1446 1448 1449\n\t\tf 4 1239 1247 -1237 -1247\n\t\tmu 0 4 1449 1448 1450 1451\n\t\tf 4 -1248 -1246 -1244 -1242\n\t\tmu 0 4 1443 1452 1453 1444\n\t\tf 4 1246 1240 1242 1244\n\t\tmu 0 4 1454 1442 1445 1455\n\t\tf 4 1248 1253 -1250 -1253\n\t\tmu 0 4 1456 1457 1458 1459\n\t\tf 4 1249 1255 -1251 -1255\n\t\tmu 0 4 1459 1458 1460 1461\n\t\tf 4 1250 1257 -1252 -1257\n\t\tmu 0 4 1461 1460 1462 1463\n\t\tf 4 1251 1259 -1249 -1259\n\t\tmu 0 4 1463 1462 1464 1465\n\t\tf 4 -1260 -1258 -1256 -1254\n\t\tmu 0 4 1457 1466 1467 1458\n\t\tf 4 1258 1252 1254 1256\n\t\tmu 0 4 1468 1456 1459 1469\n\t\tf 4 1260 1265 -1262 -1265\n\t\tmu 0 4 1470 1471 1472 1473\n\t\tf 4 1261 1267 -1263 -1267\n\t\tmu 0 4 1473 1472 1474 1475\n\t\tf 4 1262 1269 -1264 -1269\n\t\tmu 0 4 1475 1474 1476 1477\n\t\tf 4 1263 1271 -1261 -1271\n\t\tmu 0 4 1477 1476 1478 1479\n\t\tf 4 -1272 -1270 -1268 -1266\n\t\tmu 0 4 1471 1480 1481 1472\n\t\tf 4 1270 1264 1266 1268\n\t\tmu 0 4 1482 1470 1473 1483\n\t\tf 4 1272 1277 -1274 -1277\n\t\tmu 0 4 1484 1485 1486 1487\n\t\tf 4 1273 1279 -1275 -1279\n\t\tmu 0 4 1487 1486 1488 1489\n\t\tf 4 1274 1281 -1276 -1281\n\t\tmu 0 4 1489 1488 1490 1491\n\t\tf 4 1275 1283 -1273 -1283\n\t\tmu 0 4 1491 1490 1492 1493\n\t\tf 4 -1284 -1282 -1280 -1278\n\t\tmu 0 4 1485 1494 1495 1486\n\t\tf 4 1282 1276 1278 1280\n\t\tmu 0 4 1496 1484 1487 1497\n\t\tf 4 1284 1289 -1286 -1289\n\t\tmu 0 4 1498 1499 1500 1501\n\t\tf 4 1285 1291 -1287 -1291\n\t\tmu 0 4 1501 1500 1502 1503\n\t\tf 4 1286 1293 -1288 -1293\n\t\tmu 0 4 1503 1502 1504 1505\n\t\tf 4 1287 1295 -1285 -1295\n\t\tmu 0 4 1505 1504 1506 1507\n\t\tf 4 -1296 -1294 -1292 -1290\n\t\tmu 0 4 1499 1508 1509 1500\n\t\tf 4 1294 1288 1290 1292\n\t\tmu 0 4 1510 1498 1501 1511\n\t\tf 4 1296 1301 -1298 -1301\n\t\tmu 0 4 1512 1513 1514 1515\n\t\tf 4 1297 1303 -1299 -1303\n\t\tmu 0 4 1515 1514 1516 1517\n\t\tf 4 1298 1305 -1300 -1305\n\t\tmu 0 4 1517 1516 1518 1519\n\t\tf 4 1299 1307 -1297 -1307\n\t\tmu 0 4 1519 1518 1520 1521\n\t\tf 4 -1308 -1306 -1304 -1302\n\t\tmu 0 4 1513 1522 1523 1514\n\t\tf 4 1306 1300 1302 1304\n\t\tmu 0 4 1524 1512 1515 1525\n\t\tf 4 1308 1313 -1310 -1313\n\t\tmu 0 4 1526 1527 1528 1529\n\t\tf 4 1309 1315 -1311 -1315\n\t\tmu 0 4 1529 1528 1530 1531\n\t\tf 4 1310 1317 -1312 -1317\n\t\tmu 0 4 1531 1530 1532 1533\n\t\tf 4 1311 1319 -1309 -1319\n\t\tmu 0 4 1533 1532 1534 1535\n\t\tf 4 -1320 -1318 -1316 -1314\n\t\tmu 0 4 1527 1536 1537 1528\n\t\tf 4 1318 1312 1314 1316\n\t\tmu 0 4 1538 1526 1529 1539\n\t\tf 4 1320 1325 -1322 -1325\n\t\tmu 0 4 1540 1541 1542 1543\n\t\tf 4 1321 1327 -1323 -1327\n\t\tmu 0 4 1543 1542 1544 1545\n\t\tf 4 1322 1329 -1324 -1329\n\t\tmu 0 4 1545 1544 1546 1547\n\t\tf 4 1323 1331 -1321 -1331\n\t\tmu 0 4 1547 1546 1548 1549\n\t\tf 4 -1332 -1330 -1328 -1326\n\t\tmu 0 4 1541 1550 1551 1542\n\t\tf 4 1330 1324 1326 1328\n\t\tmu 0 4 1552 1540 1543 1553\n\t\tf 4 1332 1337 -1334 -1337\n\t\tmu 0 4 1554 1555 1556 1557\n\t\tf 4 1333 1339 -1335 -1339\n\t\tmu 0 4 1557 1556 1558 1559\n\t\tf 4 1334 1341 -1336 -1341\n\t\tmu 0 4 1559 1558 1560 1561\n\t\tf 4 1335 1343 -1333 -1343\n\t\tmu 0 4 1561 1560 1562 1563\n\t\tf 4 -1344 -1342 -1340 -1338\n\t\tmu 0 4 1555 1564 1565 1556\n\t\tf 4 1342 1336 1338 1340\n\t\tmu 0 4 1566 1554 1557 1567\n\t\tf 4 1344 1349 -1346 -1349\n\t\tmu 0 4 1568 1569 1570 1571\n\t\tf 4 1345 1351 -1347 -1351\n\t\tmu 0 4 1571 1570 1572 1573\n\t\tf 4 1346 1353 -1348 -1353\n\t\tmu 0 4 1573 1572 1574 1575\n\t\tf 4 1347 1355 -1345 -1355\n\t\tmu 0 4 1575 1574 1576 1577\n\t\tf 4 -1356 -1354 -1352 -1350\n\t\tmu 0 4 1569 1578 1579 1570\n\t\tf 4 1354 1348 1350 1352\n\t\tmu 0 4 1580 1568 1571 1581\n\t\tf 4 1356 1361 -1358 -1361\n\t\tmu 0 4 1582 1583 1584 1585\n\t\tf 4 1357 1363 -1359 -1363\n\t\tmu 0 4 1585 1584 1586 1587\n\t\tf 4 1358 1365 -1360 -1365\n\t\tmu 0 4 1587 1586 1588 1589\n\t\tf 4 1359 1367 -1357 -1367\n\t\tmu 0 4 1589 1588 1590 1591\n\t\tf 4 -1368 -1366 -1364 -1362\n\t\tmu 0 4 1583 1592 1593 1584\n\t\tf 4 1366 1360 1362 1364\n\t\tmu 0 4 1594 1582 1585 1595\n\t\tf 4 1368 1373 -1370 -1373\n\t\tmu 0 4 1596 1597 1598 1599\n\t\tf 4 1369 1375 -1371 -1375\n\t\tmu 0 4 1599 1598 1600 1601\n\t\tf 4 1370 1377 -1372 -1377\n\t\tmu 0 4 1601 1600 1602 1603\n\t\tf 4 1371 1379 -1369 -1379\n\t\tmu 0 4 1603 1602 1604 1605\n\t\tf 4 -1380 -1378 -1376 -1374\n\t\tmu 0 4 1597 1606 1607 1598\n\t\tf 4 1378 1372 1374 1376\n\t\tmu 0 4 1608 1596 1599 1609\n\t\tf 4 1380 1385 -1382 -1385\n\t\tmu 0 4 1610 1611 1612 1613\n\t\tf 4 1381 1387 -1383 -1387\n\t\tmu 0 4 1613 1612 1614 1615\n\t\tf 4 1382 1389 -1384 -1389\n\t\tmu 0 4 1615 1614 1616 1617\n\t\tf 4 1383 1391 -1381 -1391\n\t\tmu 0 4 1617 1616 1618 1619\n\t\tf 4 -1392 -1390 -1388 -1386\n\t\tmu 0 4 1611 1620 1621 1612\n\t\tf 4 1390 1384 1386 1388\n\t\tmu 0 4 1622 1610 1613 1623\n\t\tf 4 1392 1397 -1394 -1397\n\t\tmu 0 4 1624 1625 1626 1627\n\t\tf 4 1393 1399 -1395 -1399\n\t\tmu 0 4 1627 1626 1628 1629\n\t\tf 4 1394 1401 -1396 -1401\n\t\tmu 0 4 1629 1628 1630 1631\n\t\tf 4 1395 1403 -1393 -1403\n\t\tmu 0 4 1631 1630 1632 1633\n\t\tf 4 -1404 -1402 -1400 -1398\n\t\tmu 0 4 1625 1634 1635 1626\n\t\tf 4 1402 1396 1398 1400\n\t\tmu 0 4 1636 1624 1627 1637\n\t\tf 4 1404 1409 -1406 -1409\n\t\tmu 0 4 1638 1639 1640 1641\n\t\tf 4 1405 1411 -1407 -1411\n\t\tmu 0 4 1641 1640 1642 1643\n\t\tf 4 1406 1413 -1408 -1413\n\t\tmu 0 4 1643 1642 1644 1645\n\t\tf 4 1407 1415 -1405 -1415\n\t\tmu 0 4 1645 1644 1646 1647\n\t\tf 4 -1416 -1414 -1412 -1410\n\t\tmu 0 4 1639 1648 1649 1640\n\t\tf 4 1414 1408 1410 1412\n\t\tmu 0 4 1650 1638 1641 1651\n\t\tf 4 1416 1421 -1418 -1421\n\t\tmu 0 4 1652 1653 1654 1655\n\t\tf 4 1417 1423 -1419 -1423\n\t\tmu 0 4 1655 1654 1656 1657\n\t\tf 4 1418 1425 -1420 -1425\n\t\tmu 0 4 1657 1656 1658 1659\n\t\tf 4 1419 1427 -1417 -1427\n\t\tmu 0 4 1659 1658 1660 1661\n\t\tf 4 -1428 -1426 -1424 -1422\n\t\tmu 0 4 1653 1662 1663 1654\n\t\tf 4 1426 1420 1422 1424\n\t\tmu 0 4 1664 1652 1655 1665\n\t\tf 4 1428 1433 -1430 -1433\n\t\tmu 0 4 1666 1667 1668 1669\n\t\tf 4 1429 1435 -1431 -1435\n\t\tmu 0 4 1669 1668 1670 1671\n\t\tf 4 1430 1437 -1432 -1437\n\t\tmu 0 4 1671 1670 1672 1673\n\t\tf 4 1431 1439 -1429 -1439\n\t\tmu 0 4 1673 1672 1674 1675\n\t\tf 4 -1440 -1438 -1436 -1434\n\t\tmu 0 4 1667 1676 1677 1668\n\t\tf 4 1438 1432 1434 1436\n\t\tmu 0 4 1678 1666 1669 1679\n\t\tf 4 1440 1445 -1442 -1445\n\t\tmu 0 4 1680 1681 1682 1683\n\t\tf 4 1441 1447 -1443 -1447\n\t\tmu 0 4 1683 1682 1684 1685\n\t\tf 4 1442 1449 -1444 -1449\n\t\tmu 0 4 1685 1684 1686 1687\n\t\tf 4 1443 1451 -1441 -1451\n\t\tmu 0 4 1687 1686 1688 1689\n\t\tf 4 -1452 -1450 -1448 -1446\n\t\tmu 0 4 1681 1690 1691 1682\n\t\tf 4 1450 1444 1446 1448\n\t\tmu 0 4 1692 1680 1683 1693\n\t\tf 4 1452 1457 -1454 -1457\n\t\tmu 0 4 1694 1695 1696 1697\n\t\tf 4 1453 1459 -1455 -1459\n\t\tmu 0 4 1697 1696 1698 1699\n\t\tf 4 1454 1461 -1456 -1461\n\t\tmu 0 4 1699 1698 1700 1701\n\t\tf 4 1455 1463 -1453 -1463\n\t\tmu 0 4 1701 1700 1702 1703\n\t\tf 4 -1464 -1462 -1460 -1458\n\t\tmu 0 4 1695 1704 1705 1696\n\t\tf 4 1462 1456 1458 1460\n\t\tmu 0 4 1706 1694 1697 1707\n\t\tf 4 1464 1469 -1466 -1469\n\t\tmu 0 4 1708 1709 1710 1711\n\t\tf 4 1465 1471 -1467 -1471\n\t\tmu 0 4 1711 1710 1712 1713\n\t\tf 4 1466 1473 -1468 -1473\n\t\tmu 0 4 1713 1712 1714 1715\n\t\tf 4 1467 1475 -1465 -1475\n\t\tmu 0 4 1715 1714 1716 1717\n\t\tf 4 -1476 -1474 -1472 -1470\n\t\tmu 0 4 1709 1718 1719 1710\n\t\tf 4 1474 1468 1470 1472\n\t\tmu 0 4 1720 1708 1711 1721\n\t\tf 4 1476 1481 -1478 -1481\n\t\tmu 0 4 1722 1723 1724 1725\n\t\tf 4 1477 1483 -1479 -1483\n\t\tmu 0 4 1725 1724 1726 1727\n\t\tf 4 1478 1485 -1480 -1485\n\t\tmu 0 4 1727 1726 1728 1729\n\t\tf 4 1479 1487 -1477 -1487\n\t\tmu 0 4 1729 1728 1730 1731\n\t\tf 4 -1488 -1486 -1484 -1482\n\t\tmu 0 4 1723 1732 1733 1724\n\t\tf 4 1486 1480 1482 1484\n\t\tmu 0 4 1734 1722 1725 1735\n\t\tf 4 1488 1493 -1490 -1493\n\t\tmu 0 4 1736 1737 1738 1739\n\t\tf 4 1489 1495 -1491 -1495\n\t\tmu 0 4 1739 1738 1740 1741\n\t\tf 4 1490 1497 -1492 -1497\n\t\tmu 0 4 1741 1740 1742 1743\n\t\tf 4 1491 1499 -1489 -1499\n\t\tmu 0 4 1743 1742 1744 1745\n\t\tf 4 -1500 -1498 -1496 -1494\n\t\tmu 0 4 1737 1746 1747 1738\n\t\tf 4 1498 1492 1494 1496\n\t\tmu 0 4 1748 1736 1739 1749\n\t\tf 4 1500 1505 -1502 -1505\n\t\tmu 0 4 1750 1751 1752 1753\n\t\tf 4 1501 1507 -1503 -1507\n\t\tmu 0 4 1753 1752 1754 1755\n\t\tf 4 1502 1509 -1504 -1509\n\t\tmu 0 4 1755 1754 1756 1757\n\t\tf 4 1503 1511 -1501 -1511\n\t\tmu 0 4 1757 1756 1758 1759\n\t\tf 4 -1512 -1510 -1508 -1506\n\t\tmu 0 4 1751 1760 1761 1752\n\t\tf 4 1510 1504 1506 1508\n\t\tmu 0 4 1762 1750 1753 1763\n\t\tf 4 1512 1517 -1514 -1517\n\t\tmu 0 4 1764 1765 1766 1767\n\t\tf 4 1513 1519 -1515 -1519\n\t\tmu 0 4 1767 1766 1768 1769\n\t\tf 4 1514 1521 -1516 -1521\n\t\tmu 0 4 1769 1768 1770 1771\n\t\tf 4 1515 1523 -1513 -1523\n\t\tmu 0 4 1771 1770 1772 1773\n\t\tf 4 -1524 -1522 -1520 -1518\n\t\tmu 0 4 1765 1774 1775 1766\n\t\tf 4 1522 1516 1518 1520\n\t\tmu 0 4 1776 1764 1767 1777\n\t\tf 4 1524 1529 -1526 -1529\n\t\tmu 0 4 1778 1779 1780 1781\n\t\tf 4 1525 1531 -1527 -1531\n\t\tmu 0 4 1781 1780 1782 1783\n\t\tf 4 1526 1533 -1528 -1533\n\t\tmu 0 4 1783 1782 1784 1785\n\t\tf 4 1527 1535 -1525 -1535\n\t\tmu 0 4 1785 1784 1786 1787\n\t\tf 4 -1536 -1534 -1532 -1530\n\t\tmu 0 4 1779 1788 1789 1780\n\t\tf 4 1534 1528 1530 1532\n\t\tmu 0 4 1790 1778 1781 1791\n\t\tf 4 1536 1541 -1538 -1541\n\t\tmu 0 4 1792 1793 1794 1795\n\t\tf 4 1537 1543 -1539 -1543\n\t\tmu 0 4 1795 1794 1796 1797\n\t\tf 4 1538 1545 -1540 -1545\n\t\tmu 0 4 1797 1796 1798 1799\n\t\tf 4 1539 1547 -1537 -1547\n\t\tmu 0 4 1799 1798 1800 1801\n\t\tf 4 -1548 -1546 -1544 -1542\n\t\tmu 0 4 1793 1802 1803 1794\n\t\tf 4 1546 1540 1542 1544\n\t\tmu 0 4 1804 1792 1795 1805\n\t\tf 4 1548 1553 -1550 -1553\n\t\tmu 0 4 1806 1807 1808 1809\n\t\tf 4 1549 1555 -1551 -1555\n\t\tmu 0 4 1809 1808 1810 1811\n\t\tf 4 1550 1557 -1552 -1557\n\t\tmu 0 4 1811 1810 1812 1813\n\t\tf 4 1551 1559 -1549 -1559\n\t\tmu 0 4 1813 1812 1814 1815\n\t\tf 4 -1560 -1558 -1556 -1554\n\t\tmu 0 4 1807 1816 1817 1808\n\t\tf 4 1558 1552 1554 1556\n\t\tmu 0 4 1818 1806 1809 1819\n\t\tf 4 1560 1565 -1562 -1565\n\t\tmu 0 4 1820 1821 1822 1823\n\t\tf 4 1561 1567 -1563 -1567\n\t\tmu 0 4 1823 1822 1824 1825\n\t\tf 4 1562 1569 -1564 -1569\n\t\tmu 0 4 1825 1824 1826 1827\n\t\tf 4 1563 1571 -1561 -1571\n\t\tmu 0 4 1827 1826 1828 1829\n\t\tf 4 -1572 -1570 -1568 -1566\n\t\tmu 0 4 1821 1830 1831 1822\n\t\tf 4 1570 1564 1566 1568\n\t\tmu 0 4 1832 1820 1823 1833\n\t\tf 4 1572 1577 -1574 -1577\n\t\tmu 0 4 1834 1835 1836 1837\n\t\tf 4 1573 1579 -1575 -1579\n\t\tmu 0 4 1837 1836 1838 1839\n\t\tf 4 1574 1581 -1576 -1581\n\t\tmu 0 4 1839 1838 1840 1841\n\t\tf 4 1575 1583 -1573 -1583\n\t\tmu 0 4 1841 1840 1842 1843\n\t\tf 4 -1584 -1582 -1580 -1578\n\t\tmu 0 4 1835 1844 1845 1836\n\t\tf 4 1582 1576 1578 1580\n\t\tmu 0 4 1846 1834 1837 1847\n\t\tf 4 1584 1589 -1586 -1589\n\t\tmu 0 4 1848 1849 1850 1851\n\t\tf 4 1585 1591 -1587 -1591\n\t\tmu 0 4 1851 1850 1852 1853\n\t\tf 4 1586 1593 -1588 -1593\n\t\tmu 0 4 1853 1852 1854 1855\n\t\tf 4 1587 1595 -1585 -1595\n\t\tmu 0 4 1855 1854 1856 1857\n\t\tf 4 -1596 -1594 -1592 -1590\n\t\tmu 0 4 1849 1858 1859 1850\n\t\tf 4 1594 1588 1590 1592\n\t\tmu 0 4 1860 1848 1851 1861\n\t\tf 4 1596 1601 -1598 -1601\n\t\tmu 0 4 1862 1863 1864 1865\n\t\tf 4 1597 1603 -1599 -1603\n\t\tmu 0 4 1865 1864 1866 1867\n\t\tf 4 1598 1605 -1600 -1605\n\t\tmu 0 4 1867 1866 1868 1869\n\t\tf 4 1599 1607 -1597 -1607\n\t\tmu 0 4 1869 1868 1870 1871\n\t\tf 4 -1608 -1606 -1604 -1602\n\t\tmu 0 4 1863 1872 1873 1864\n\t\tf 4 1606 1600 1602 1604\n\t\tmu 0 4 1874 1862 1865 1875\n\t\tf 4 1608 1613 -1610 -1613\n\t\tmu 0 4 1876 1877 1878 1879\n\t\tf 4 1609 1615 -1611 -1615\n\t\tmu 0 4 1879 1878 1880 1881\n\t\tf 4 1610 1617 -1612 -1617\n\t\tmu 0 4 1881 1880 1882 1883\n\t\tf 4 1611 1619 -1609 -1619\n\t\tmu 0 4 1883 1882 1884 1885\n\t\tf 4 -1620 -1618 -1616 -1614\n\t\tmu 0 4 1877 1886 1887 1878\n\t\tf 4 1618 1612 1614 1616\n\t\tmu 0 4 1888 1876 1879 1889\n\t\tf 4 1620 1625 -1622 -1625\n\t\tmu 0 4 1890 1891 1892 1893\n\t\tf 4 1621 1627 -1623 -1627\n\t\tmu 0 4 1893 1892 1894 1895\n\t\tf 4 1622 1629 -1624 -1629\n\t\tmu 0 4 1895 1894 1896 1897\n\t\tf 4 1623 1631 -1621 -1631\n\t\tmu 0 4 1897 1896 1898 1899\n\t\tf 4 -1632 -1630 -1628 -1626\n\t\tmu 0 4 1891 1900 1901 1892\n\t\tf 4 1630 1624 1626 1628\n\t\tmu 0 4 1902 1890 1893 1903\n\t\tf 4 1632 1637 -1634 -1637\n\t\tmu 0 4 1904 1905 1906 1907\n\t\tf 4 1633 1639 -1635 -1639\n\t\tmu 0 4 1907 1906 1908 1909\n\t\tf 4 1634 1641 -1636 -1641\n\t\tmu 0 4 1909 1908 1910 1911\n\t\tf 4 1635 1643 -1633 -1643\n\t\tmu 0 4 1911 1910 1912 1913\n\t\tf 4 -1644 -1642 -1640 -1638\n\t\tmu 0 4 1905 1914 1915 1906\n\t\tf 4 1642 1636 1638 1640\n\t\tmu 0 4 1916 1904 1907 1917\n\t\tf 4 1644 1649 -1646 -1649\n\t\tmu 0 4 1918 1919 1920 1921\n\t\tf 4 1645 1651 -1647 -1651\n\t\tmu 0 4 1921 1920 1922 1923\n\t\tf 4 1646 1653 -1648 -1653\n\t\tmu 0 4 1923 1922 1924 1925\n\t\tf 4 1647 1655 -1645 -1655\n\t\tmu 0 4 1925 1924 1926 1927\n\t\tf 4 -1656 -1654 -1652 -1650\n\t\tmu 0 4 1919 1928 1929 1920\n\t\tf 4 1654 1648 1650 1652\n\t\tmu 0 4 1930 1918 1921 1931\n\t\tf 4 1656 1661 -1658 -1661\n\t\tmu 0 4 1932 1933 1934 1935\n\t\tf 4 1657 1663 -1659 -1663\n\t\tmu 0 4 1935 1934 1936 1937\n\t\tf 4 1658 1665 -1660 -1665\n\t\tmu 0 4 1937 1936 1938 1939\n\t\tf 4 1659 1667 -1657 -1667\n\t\tmu 0 4 1939 1938 1940 1941\n\t\tf 4 -1668 -1666 -1664 -1662\n\t\tmu 0 4 1933 1942 1943 1934\n\t\tf 4 1666 1660 1662 1664\n\t\tmu 0 4 1944 1932 1935 1945\n\t\tf 4 1668 1673 -1670 -1673\n\t\tmu 0 4 1946 1947 1948 1949\n\t\tf 4 1669 1675 -1671 -1675\n\t\tmu 0 4 1949 1948 1950 1951\n\t\tf 4 1670 1677 -1672 -1677\n\t\tmu 0 4 1951 1950 1952 1953\n\t\tf 4 1671 1679 -1669 -1679\n\t\tmu 0 4 1953 1952 1954 1955\n\t\tf 4 -1680 -1678 -1676 -1674\n\t\tmu 0 4 1947 1956 1957 1948\n\t\tf 4 1678 1672 1674 1676\n\t\tmu 0 4 1958 1946 1949 1959\n\t\tf 4 1680 1685 -1682 -1685\n\t\tmu 0 4 1960 1961 1962 1963\n\t\tf 4 1681 1687 -1683 -1687\n\t\tmu 0 4 1963 1962 1964 1965\n\t\tf 4 1682 1689 -1684 -1689\n\t\tmu 0 4 1965 1964 1966 1967\n\t\tf 4 1683 1691 -1681 -1691\n\t\tmu 0 4 1967 1966 1968 1969\n\t\tf 4 -1692 -1690 -1688 -1686\n\t\tmu 0 4 1961 1970 1971 1962\n\t\tf 4 1690 1684 1686 1688\n\t\tmu 0 4 1972 1960 1963 1973\n\t\tf 4 1692 1697 -1694 -1697\n\t\tmu 0 4 1974 1975 1976 1977\n\t\tf 4 1693 1699 -1695 -1699\n\t\tmu 0 4 1977 1976 1978 1979\n\t\tf 4 1694 1701 -1696 -1701\n\t\tmu 0 4 1979 1978 1980 1981\n\t\tf 4 1695 1703 -1693 -1703\n\t\tmu 0 4 1981 1980 1982 1983\n\t\tf 4 -1704 -1702 -1700 -1698\n\t\tmu 0 4 1975 1984 1985 1976\n\t\tf 4 1702 1696 1698 1700\n\t\tmu 0 4 1986 1974 1977 1987\n\t\tf 4 1704 1709 -1706 -1709\n\t\tmu 0 4 1988 1989 1990 1991\n\t\tf 4 1705 1711 -1707 -1711\n\t\tmu 0 4 1991 1990 1992 1993\n\t\tf 4 1706 1713 -1708 -1713\n\t\tmu 0 4 1993 1992 1994 1995\n\t\tf 4 1707 1715 -1705 -1715\n\t\tmu 0 4 1995 1994 1996 1997\n\t\tf 4 -1716 -1714 -1712 -1710\n\t\tmu 0 4 1989 1998 1999 1990\n\t\tf 4 1714 1708 1710 1712\n\t\tmu 0 4 2000 1988 1991 2001\n\t\tf 4 1716 1721 -1718 -1721\n\t\tmu 0 4 2002 2003 2004 2005\n\t\tf 4 1717 1723 -1719 -1723\n\t\tmu 0 4 2005 2004 2006 2007\n\t\tf 4 1718 1725 -1720 -1725\n\t\tmu 0 4 2007 2006 2008 2009\n\t\tf 4 1719 1727 -1717 -1727\n\t\tmu 0 4 2009 2008 2010 2011\n\t\tf 4 -1728 -1726 -1724 -1722\n\t\tmu 0 4 2003 2012 2013 2004\n\t\tf 4 1726 1720 1722 1724\n\t\tmu 0 4 2014 2002 2005 2015\n\t\tf 4 1728 1733 -1730 -1733\n\t\tmu 0 4 2016 2017 2018 2019\n\t\tf 4 1729 1735 -1731 -1735\n\t\tmu 0 4 2019 2018 2020 2021\n\t\tf 4 1730 1737 -1732 -1737\n\t\tmu 0 4 2021 2020 2022 2023\n\t\tf 4 1731 1739 -1729 -1739\n\t\tmu 0 4 2023 2022 2024 2025\n\t\tf 4 -1740 -1738 -1736 -1734\n\t\tmu 0 4 2017 2026 2027 2018\n\t\tf 4 1738 1732 1734 1736\n\t\tmu 0 4 2028 2016 2019 2029\n\t\tf 4 1740 1745 -1742 -1745\n\t\tmu 0 4 2030 2031 2032 2033\n\t\tf 4 1741 1747 -1743 -1747\n\t\tmu 0 4 2033 2032 2034 2035\n\t\tf 4 1742 1749 -1744 -1749\n\t\tmu 0 4 2035 2034 2036 2037\n\t\tf 4 1743 1751 -1741 -1751\n\t\tmu 0 4 2037 2036 2038 2039\n\t\tf 4 -1752 -1750 -1748 -1746\n\t\tmu 0 4 2031 2040 2041 2032\n\t\tf 4 1750 1744 1746 1748\n\t\tmu 0 4 2042 2030 2033 2043\n\t\tf 4 1752 1757 -1754 -1757\n\t\tmu 0 4 2044 2045 2046 2047\n\t\tf 4 1753 1759 -1755 -1759\n\t\tmu 0 4 2047 2046 2048 2049\n\t\tf 4 1754 1761 -1756 -1761\n\t\tmu 0 4 2049 2048 2050 2051\n\t\tf 4 1755 1763 -1753 -1763\n\t\tmu 0 4 2051 2050 2052 2053\n\t\tf 4 -1764 -1762 -1760 -1758\n\t\tmu 0 4 2045 2054 2055 2046\n\t\tf 4 1762 1756 1758 1760\n\t\tmu 0 4 2056 2044 2047 2057\n\t\tf 4 1764 1769 -1766 -1769\n\t\tmu 0 4 2058 2059 2060 2061\n\t\tf 4 1765 1771 -1767 -1771\n\t\tmu 0 4 2061 2060 2062 2063\n\t\tf 4 1766 1773 -1768 -1773\n\t\tmu 0 4 2063 2062 2064 2065\n\t\tf 4 1767 1775 -1765 -1775\n\t\tmu 0 4 2065 2064 2066 2067\n\t\tf 4 -1776 -1774 -1772 -1770\n\t\tmu 0 4 2059 2068 2069 2060\n\t\tf 4 1774 1768 1770 1772\n\t\tmu 0 4 2070 2058 2061 2071\n\t\tf 4 1776 1781 -1778 -1781\n\t\tmu 0 4 2072 2073 2074 2075\n\t\tf 4 1777 1783 -1779 -1783\n\t\tmu 0 4 2075 2074 2076 2077\n\t\tf 4 1778 1785 -1780 -1785\n\t\tmu 0 4 2077 2076 2078 2079\n\t\tf 4 1779 1787 -1777 -1787\n\t\tmu 0 4 2079 2078 2080 2081\n\t\tf 4 -1788 -1786 -1784 -1782\n\t\tmu 0 4 2073 2082 2083 2074\n\t\tf 4 1786 1780 1782 1784\n\t\tmu 0 4 2084 2072 2075 2085\n\t\tf 4 1788 1793 -1790 -1793\n\t\tmu 0 4 2086 2087 2088 2089\n\t\tf 4 1789 1795 -1791 -1795\n\t\tmu 0 4 2089 2088 2090 2091\n\t\tf 4 1790 1797 -1792 -1797\n\t\tmu 0 4 2091 2090 2092 2093\n\t\tf 4 1791 1799 -1789 -1799\n\t\tmu 0 4 2093 2092 2094 2095\n\t\tf 4 -1800 -1798 -1796 -1794\n\t\tmu 0 4 2087 2096 2097 2088\n\t\tf 4 1798 1792 1794 1796\n\t\tmu 0 4 2098 2086 2089 2099\n\t\tf 4 1800 1805 -1802 -1805\n\t\tmu 0 4 2100 2101 2102 2103\n\t\tf 4 1801 1807 -1803 -1807\n\t\tmu 0 4 2103 2102 2104 2105\n\t\tf 4 1802 1809 -1804 -1809\n\t\tmu 0 4 2105 2104 2106 2107\n\t\tf 4 1803 1811 -1801 -1811\n\t\tmu 0 4 2107 2106 2108 2109\n\t\tf 4 -1812 -1810 -1808 -1806\n\t\tmu 0 4 2101 2110 2111 2102\n\t\tf 4 1810 1804 1806 1808\n\t\tmu 0 4 2112 2100 2103 2113\n\t\tf 4 1812 1817 -1814 -1817\n\t\tmu 0 4 2114 2115 2116 2117\n\t\tf 4 1813 1819 -1815 -1819\n\t\tmu 0 4 2117 2116 2118 2119\n\t\tf 4 1814 1821 -1816 -1821\n\t\tmu 0 4 2119 2118 2120 2121\n\t\tf 4 1815 1823 -1813 -1823\n\t\tmu 0 4 2121 2120 2122 2123\n\t\tf 4 -1824 -1822 -1820 -1818\n\t\tmu 0 4 2115 2124 2125 2116\n\t\tf 4 1822 1816 1818 1820\n\t\tmu 0 4 2126 2114 2117 2127\n\t\tf 4 1824 1829 -1826 -1829\n\t\tmu 0 4 2128 2129 2130 2131\n\t\tf 4 1825 1831 -1827 -1831\n\t\tmu 0 4 2131 2130 2132 2133\n\t\tf 4 1826 1833 -1828 -1833\n\t\tmu 0 4 2133 2132 2134 2135\n\t\tf 4 1827 1835 -1825 -1835\n\t\tmu 0 4 2135 2134 2136 2137\n\t\tf 4 -1836 -1834 -1832 -1830\n\t\tmu 0 4 2129 2138 2139 2130\n\t\tf 4 1834 1828 1830 1832\n\t\tmu 0 4 2140 2128 2131 2141\n\t\tf 4 1836 1841 -1838 -1841\n\t\tmu 0 4 2142 2143 2144 2145\n\t\tf 4 1837 1843 -1839 -1843\n\t\tmu 0 4 2145 2144 2146 2147\n\t\tf 4 1838 1845 -1840 -1845\n\t\tmu 0 4 2147 2146 2148 2149\n\t\tf 4 1839 1847 -1837 -1847\n\t\tmu 0 4 2149 2148 2150 2151\n\t\tf 4 -1848 -1846 -1844 -1842\n\t\tmu 0 4 2143 2152 2153 2144\n\t\tf 4 1846 1840 1842 1844\n\t\tmu 0 4 2154 2142 2145 2155\n\t\tf 4 1848 1853 -1850 -1853\n\t\tmu 0 4 2156 2157 2158 2159\n\t\tf 4 1849 1855 -1851 -1855\n\t\tmu 0 4 2159 2158 2160 2161\n\t\tf 4 1850 1857 -1852 -1857\n\t\tmu 0 4 2161 2160 2162 2163\n\t\tf 4 1851 1859 -1849 -1859\n\t\tmu 0 4 2163 2162 2164 2165\n\t\tf 4 -1860 -1858 -1856 -1854\n\t\tmu 0 4 2157 2166 2167 2158\n\t\tf 4 1858 1852 1854 1856\n\t\tmu 0 4 2168 2156 2159 2169\n\t\tf 4 1860 1865 -1862 -1865\n\t\tmu 0 4 2170 2171 2172 2173\n\t\tf 4 1861 1867 -1863 -1867\n\t\tmu 0 4 2173 2172 2174 2175\n\t\tf 4 1862 1869 -1864 -1869\n\t\tmu 0 4 2175 2174 2176 2177\n\t\tf 4 1863 1871 -1861 -1871\n\t\tmu 0 4 2177 2176 2178 2179\n\t\tf 4 -1872 -1870 -1868 -1866\n\t\tmu 0 4 2171 2180 2181 2172\n\t\tf 4 1870 1864 1866 1868\n\t\tmu 0 4 2182 2170 2173 2183\n\t\tf 4 1872 1877 -1874 -1877\n\t\tmu 0 4 2184 2185 2186 2187\n\t\tf 4 1873 1879 -1875 -1879\n\t\tmu 0 4 2187 2186 2188 2189\n\t\tf 4 1874 1881 -1876 -1881\n\t\tmu 0 4 2189 2188 2190 2191\n\t\tf 4 1875 1883 -1873 -1883\n\t\tmu 0 4 2191 2190 2192 2193\n\t\tf 4 -1884 -1882 -1880 -1878\n\t\tmu 0 4 2185 2194 2195 2186\n\t\tf 4 1882 1876 1878 1880\n\t\tmu 0 4 2196 2184 2187 2197\n\t\tf 4 1884 1889 -1886 -1889\n\t\tmu 0 4 2198 2199 2200 2201\n\t\tf 4 1885 1891 -1887 -1891\n\t\tmu 0 4 2201 2200 2202 2203\n\t\tf 4 1886 1893 -1888 -1893\n\t\tmu 0 4 2203 2202 2204 2205\n\t\tf 4 1887 1895 -1885 -1895\n\t\tmu 0 4 2205 2204 2206 2207\n\t\tf 4 -1896 -1894 -1892 -1890\n\t\tmu 0 4 2199 2208 2209 2200\n\t\tf 4 1894 1888 1890 1892\n\t\tmu 0 4 2210 2198 2201 2211\n\t\tf 4 1896 1901 -1898 -1901\n\t\tmu 0 4 2212 2213 2214 2215\n\t\tf 4 1897 1903 -1899 -1903\n\t\tmu 0 4 2215 2214 2216 2217\n\t\tf 4 1898 1905 -1900 -1905\n\t\tmu 0 4 2217 2216 2218 2219\n\t\tf 4 1899 1907 -1897 -1907\n\t\tmu 0 4 2219 2218 2220 2221\n\t\tf 4 -1908 -1906 -1904 -1902\n\t\tmu 0 4 2213 2222 2223 2214\n\t\tf 4 1906 1900 1902 1904\n\t\tmu 0 4 2224 2212 2215 2225\n\t\tf 4 1908 1913 -1910 -1913\n\t\tmu 0 4 2226 2227 2228 2229\n\t\tf 4 1909 1915 -1911 -1915\n\t\tmu 0 4 2229 2228 2230 2231\n\t\tf 4 1910 1917 -1912 -1917\n\t\tmu 0 4 2231 2230 2232 2233\n\t\tf 4 1911 1919 -1909 -1919\n\t\tmu 0 4 2233 2232 2234 2235\n\t\tf 4 -1920 -1918 -1916 -1914\n\t\tmu 0 4 2227 2236 2237 2228\n\t\tf 4 1918 1912 1914 1916\n\t\tmu 0 4 2238 2226 2229 2239\n\t\tf 4 1920 1925 -1922 -1925\n\t\tmu 0 4 2240 2241 2242 2243\n\t\tf 4 1921 1927 -1923 -1927\n\t\tmu 0 4 2243 2242 2244 2245\n\t\tf 4 1922 1929 -1924 -1929\n\t\tmu 0 4 2245 2244 2246 2247\n\t\tf 4 1923 1931 -1921 -1931\n\t\tmu 0 4 2247 2246 2248 2249\n\t\tf 4 -1932 -1930 -1928 -1926\n\t\tmu 0 4 2241 2250 2251 2242\n\t\tf 4 1930 1924 1926 1928\n\t\tmu 0 4 2252 2240 2243 2253\n\t\tf 4 1932 1937 -1934 -1937\n\t\tmu 0 4 2254 2255 2256 2257\n\t\tf 4 1933 1939 -1935 -1939\n\t\tmu 0 4 2257 2256 2258 2259\n\t\tf 4 1934 1941 -1936 -1941\n\t\tmu 0 4 2259 2258 2260 2261\n\t\tf 4 1935 1943 -1933 -1943\n\t\tmu 0 4 2261 2260 2262 2263\n\t\tf 4 -1944 -1942 -1940 -1938\n\t\tmu 0 4 2255 2264 2265 2256\n\t\tf 4 1942 1936 1938 1940\n\t\tmu 0 4 2266 2254 2257 2267\n\t\tf 4 1944 1949 -1946 -1949\n\t\tmu 0 4 2268 2269 2270 2271\n\t\tf 4 1945 1951 -1947 -1951\n\t\tmu 0 4 2271 2270 2272 2273\n\t\tf 4 1946 1953 -1948 -1953\n\t\tmu 0 4 2273 2272 2274 2275\n\t\tf 4 1947 1955 -1945 -1955\n\t\tmu 0 4 2275 2274 2276 2277\n\t\tf 4 -1956 -1954 -1952 -1950\n\t\tmu 0 4 2269 2278 2279 2270\n\t\tf 4 1954 1948 1950 1952\n\t\tmu 0 4 2280 2268 2271 2281\n\t\tf 4 1956 1961 -1958 -1961\n\t\tmu 0 4 2282 2283 2284 2285\n\t\tf 4 1957 1963 -1959 -1963\n\t\tmu 0 4 2285 2284 2286 2287\n\t\tf 4 1958 1965 -1960 -1965\n\t\tmu 0 4 2287 2286 2288 2289\n\t\tf 4 1959 1967 -1957 -1967\n\t\tmu 0 4 2289 2288 2290 2291\n\t\tf 4 -1968 -1966 -1964 -1962\n\t\tmu 0 4 2283 2292 2293 2284\n\t\tf 4 1966 1960 1962 1964\n\t\tmu 0 4 2294 2282 2285 2295\n\t\tf 4 1968 1973 -1970 -1973\n\t\tmu 0 4 2296 2297 2298 2299\n\t\tf 4 1969 1975 -1971 -1975\n\t\tmu 0 4 2299 2298 2300 2301\n\t\tf 4 1970 1977 -1972 -1977\n\t\tmu 0 4 2301 2300 2302 2303\n\t\tf 4 1971 1979 -1969 -1979\n\t\tmu 0 4 2303 2302 2304 2305\n\t\tf 4 -1980 -1978 -1976 -1974\n\t\tmu 0 4 2297 2306 2307 2298\n\t\tf 4 1978 1972 1974 1976\n\t\tmu 0 4 2308 2296 2299 2309\n\t\tf 4 1980 1985 -1982 -1985\n\t\tmu 0 4 2310 2311 2312 2313\n\t\tf 4 1981 1987 -1983 -1987\n\t\tmu 0 4 2313 2312 2314 2315\n\t\tf 4 1982 1989 -1984 -1989\n\t\tmu 0 4 2315 2314 2316 2317\n\t\tf 4 1983 1991 -1981 -1991\n\t\tmu 0 4 2317 2316 2318 2319\n\t\tf 4 -1992 -1990 -1988 -1986\n\t\tmu 0 4 2311 2320 2321 2312\n\t\tf 4 1990 1984 1986 1988\n\t\tmu 0 4 2322 2310 2313 2323\n\t\tf 4 1992 1997 -1994 -1997\n\t\tmu 0 4 2324 2325 2326 2327\n\t\tf 4 1993 1999 -1995 -1999\n\t\tmu 0 4 2327 2326 2328 2329\n\t\tf 4 1994 2001 -1996 -2001\n\t\tmu 0 4 2329 2328 2330 2331\n\t\tf 4 1995 2003 -1993 -2003\n\t\tmu 0 4 2331 2330 2332 2333;\n\tsetAttr \".fc[1000:1031]\"\n\t\tf 4 -2004 -2002 -2000 -1998\n\t\tmu 0 4 2325 2334 2335 2326\n\t\tf 4 2002 1996 1998 2000\n\t\tmu 0 4 2336 2324 2327 2337\n\t\tf 4 2004 2009 -2006 -2009\n\t\tmu 0 4 2338 2339 2340 2341\n\t\tf 4 2005 2011 -2007 -2011\n\t\tmu 0 4 2341 2340 2342 2343\n\t\tf 4 2006 2013 -2008 -2013\n\t\tmu 0 4 2343 2342 2344 2345\n\t\tf 4 2007 2015 -2005 -2015\n\t\tmu 0 4 2345 2344 2346 2347\n\t\tf 4 -2016 -2014 -2012 -2010\n\t\tmu 0 4 2339 2348 2349 2340\n\t\tf 4 2014 2008 2010 2012\n\t\tmu 0 4 2350 2338 2341 2351\n\t\tf 4 2016 2021 -2018 -2021\n\t\tmu 0 4 2352 2353 2354 2355\n\t\tf 4 2017 2023 -2019 -2023\n\t\tmu 0 4 2355 2354 2356 2357\n\t\tf 4 2018 2025 -2020 -2025\n\t\tmu 0 4 2357 2356 2358 2359\n\t\tf 4 2019 2027 -2017 -2027\n\t\tmu 0 4 2359 2358 2360 2361\n\t\tf 4 -2028 -2026 -2024 -2022\n\t\tmu 0 4 2353 2362 2363 2354\n\t\tf 4 2026 2020 2022 2024\n\t\tmu 0 4 2364 2352 2355 2365\n\t\tf 4 2028 2033 -2030 -2033\n\t\tmu 0 4 2366 2367 2368 2369\n\t\tf 4 2029 2035 -2031 -2035\n\t\tmu 0 4 2369 2368 2370 2371\n\t\tf 4 2030 2037 -2032 -2037\n\t\tmu 0 4 2371 2370 2372 2373\n\t\tf 4 2031 2039 -2029 -2039\n\t\tmu 0 4 2373 2372 2374 2375\n\t\tf 4 -2040 -2038 -2036 -2034\n\t\tmu 0 4 2367 2376 2377 2368\n\t\tf 4 2038 2032 2034 2036\n\t\tmu 0 4 2378 2366 2369 2379\n\t\tf 4 2040 2045 -2042 -2045\n\t\tmu 0 4 2380 2381 2382 2383\n\t\tf 4 2041 2047 -2043 -2047\n\t\tmu 0 4 2383 2382 2384 2385\n\t\tf 4 2042 2049 -2044 -2049\n\t\tmu 0 4 2385 2384 2386 2387\n\t\tf 4 2043 2051 -2041 -2051\n\t\tmu 0 4 2387 2386 2388 2389\n\t\tf 4 -2052 -2050 -2048 -2046\n\t\tmu 0 4 2381 2390 2391 2382\n\t\tf 4 2050 2044 2046 2048\n\t\tmu 0 4 2392 2380 2383 2393\n\t\tf 4 2052 2057 -2054 -2057\n\t\tmu 0 4 2394 2395 2396 2397\n\t\tf 4 2053 2059 -2055 -2059\n\t\tmu 0 4 2397 2396 2398 2399\n\t\tf 4 2054 2061 -2056 -2061\n\t\tmu 0 4 2399 2398 2400 2401\n\t\tf 4 2055 2063 -2053 -2063\n\t\tmu 0 4 2401 2400 2402 2403\n\t\tf 4 -2064 -2062 -2060 -2058\n\t\tmu 0 4 2395 2404 2405 2396\n\t\tf 4 2062 2056 2058 2060\n\t\tmu 0 4 2406 2394 2397 2407;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"303B2B67-47B7-6E78-8820-05AB30D606B5\";\n\taddAttr -ci true -sn \"nts\" -ln \"notes\" -dt \"string\";\n\tsetAttr \".t\" -type \"double3\" -28.920780217420294 13.43859684005761 -14.93691095303028 ;\n\tsetAttr \".r\" -type \"double3\" -38.000000000014225 -99.599999999999 0 ;\n\tsetAttr \".nts\" -type \"string\" \"\\t\\t\\t\";\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"BD85422D-4BEE-06AB-BACE-7DBD783134A8\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173228346456694 1.4173228346456694 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".ncp\" 0.001;\n\tsetAttr \".fcp\" 100;\n\tsetAttr \".coi\" 15.773897576087794;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".dr\" yes;\ncreateNode transform -n \"pPyramid1\" -p \"camera1\";\n\trename -uid \"64C5F767-411B-9689-42F4-42A46E33EBBD\";\n\tsetAttr \".s\" -type \"double3\" 5 5 100 ;\n\tsetAttr \".rp\" -type \"double3\" 0 0 3.7375154454233339e-05 ;\n\tsetAttr \".sp\" -type \"double3\" 0 0 3.7375154454233339e-05 ;\ncreateNode mesh -n \"pPyramidShape1\" -p \"pPyramid1\";\n\trename -uid \"A770F7FC-432D-DC35-6840-EDA7546D1EDD\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.25 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"9FD946E9-4EAA-9887-508B-49943E20FF86\";\n\tsetAttr -s 8 \".lnk\";\n\tsetAttr -s 8 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"6C86FEE7-4D71-2AD8-C3F1-BCB4D0ED4479\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"6A1524CD-44A5-49E8-5544-9FA23DE46A93\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"767A563C-43D4-7A04-3AD5-0EAD0621DFA4\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"5F78CABE-4E1C-4A10-CCA9-CF98F2D9CABE\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"6A67D4CA-4154-0858-CDE0-C7A41A12D7C1\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"4DAC6715-445A-0676-C776-A2A4E60D7B3A\";\n\tsetAttr \".g\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"4D043C4A-429E-E5AB-1103-4791D7A045E7\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"cameraShape1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1978\\n            -height 1447\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -autoFitTime 0\\n\"\n\t\t+ \"                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n\"\n\t\t+ \"                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n\"\n\t\t+ \"                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 0 \\n                $editorName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n\"\n\t\t+ \"                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n\"\n\t\t+ \"                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n\"\n\t\t+ \"                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n\"\n\t\t+ \"                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n\"\n\t\t+ \"                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\"\n\t\t+ \"\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"cameraShape1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1978\\\\n    -height 1447\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"cameraShape1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1978\\\\n    -height 1447\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"598A3F36-4262-4847-52B4-0A89E9054834\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode groupId -n \"groupId1\";\n\trename -uid \"6916DEC6-483C-8C62-4504-2E966E14F5F3\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"0CD29B91-4AC4-D539-7C3F-918776F0DC70\";\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"A0004028-432C-996A-EC5E-F1830097EAEB\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"351991DC-44C1-50A9-B8C3-6394D2BACF0B\";\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"96F22B07-4A29-3CF2-1312-6FB6FED76A59\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert3\";\n\trename -uid \"33CE80EB-4BC7-2CA6-595C-9CB4CF8B0E4D\";\n\tsetAttr \".c\" -type \"float3\" 0 0 1 ;\ncreateNode shadingEngine -n \"lambert3SG\";\n\trename -uid \"90EC03C5-4980-25D5-0135-EDB31ED46B4E\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"ED657469-4A1E-A4C1-302D-9F8ABCA0076E\";\ncreateNode groupId -n \"groupId3\";\n\trename -uid \"E16FB584-49D8-58ED-E919-D0A477F7C449\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert4\";\n\trename -uid \"6DDF4970-431F-E97D-3935-288C97620148\";\n\tsetAttr \".c\" -type \"float3\" 0 1 0 ;\ncreateNode shadingEngine -n \"lambert4SG\";\n\trename -uid \"12731EA1-4A5C-3BA1-90D8-7A8CDFE83BE0\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo3\";\n\trename -uid \"8E4CC743-4732-E704-B13C-68A0D93CDDA2\";\ncreateNode groupId -n \"groupId4\";\n\trename -uid \"04E0951A-4E24-EB2D-47DD-9290479CE2B4\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert5\";\n\trename -uid \"790E2B42-4642-7C43-B9B7-48BE5CCFD990\";\n\tsetAttr \".c\" -type \"float3\" 0 1 1 ;\ncreateNode shadingEngine -n \"lambert5SG\";\n\trename -uid \"DB900D64-4061-C89A-8E71-59A5702EA8B3\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo4\";\n\trename -uid \"74333DFD-4793-241D-31DC-F686CADC142E\";\ncreateNode groupId -n \"groupId5\";\n\trename -uid \"02B681EA-4069-8770-75C0-74AFD4A129EA\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert6\";\n\trename -uid \"85C23F83-492C-588B-FD1B-1A8EF0DCBE85\";\n\tsetAttr \".c\" -type \"float3\" 1 1 0 ;\ncreateNode shadingEngine -n \"lambert6SG\";\n\trename -uid \"E284AD76-40AA-828B-24D6-5EB8FB910E05\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo5\";\n\trename -uid \"B67DDF3E-4FAE-9463-6723-E9B7B079AD58\";\ncreateNode groupId -n \"groupId6\";\n\trename -uid \"8F1FBACE-4E06-51DA-F148-40B388BAA372\";\n\tsetAttr \".ihi\" 0;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"211DDCFC-424B-189E-4344-28AAEB1A6103\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"B29DED36-4F71-50B8-51FE-9D88449F2716\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\taddAttr -ci true -sn \"selOnly\" -ln \"selOnly\" -at \"long\";\n\taddAttr -ci true -sn \"visOnly\" -ln \"visOnly\" -at \"long\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/Users/bugfa/Documents/maya/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"cam4\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2019 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"-cam camera1\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 1;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\n\tsetAttr \".selOnly\" 1;\n\tsetAttr \".visOnly\" 1;\ncreateNode polyPyramid -n \"polyPyramid1\";\n\trename -uid \"9EA437FA-49D9-6156-030B-4A9DA24B5F63\";\n\tsetAttr \".ax\" -type \"double3\" 0 0 1 ;\n\tsetAttr \".cuv\" 3;\ncreateNode transformGeometry -n \"transformGeometry1\";\n\trename -uid \"EC98F613-4690-A28F-5179-67AE792AF789\";\n\tsetAttr \".txf\" -type \"matrix\" 0.70710678118654746 0.70710678118654757 0 0 -0.70710678118654757 0.70710678118654746 0 0\n\t\t 0 0 1 0 0 0 -0.35306153624781406 1;\ncreateNode lambert -n \"lambert7\";\n\trename -uid \"3FBAC392-47A6-CF77-1BCB-89A01C7782B7\";\n\tsetAttr \".c\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".it\" -type \"float3\" 0.040192928 0.040192928 0.040192928 ;\ncreateNode shadingEngine -n \"lambert7SG\";\n\trename -uid \"4D87AD61-4564-4DAC-9D9F-9FB8DD7C7385\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo6\";\n\trename -uid \"3A76EF7B-4EF1-12F9-194F-75B2A64C3C4D\";\ncreateNode polyNormal -n \"polyNormal1\";\n\trename -uid \"2B6341FC-44AC-A77B-FEC6-27B15E2E783B\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".unm\" no;\ncreateNode deleteComponent -n \"deleteComponent1\";\n\trename -uid \"6AE47629-4E93-1EDA-C8F6-62964D43649E\";\n\tsetAttr \".dc\" -type \"componentList\" 1 \"f[0]\";\ncreateNode deleteComponent -n \"deleteComponent2\";\n\trename -uid \"0AF2E85F-466B-83EC-C0EE-BCA5ED8D05B2\";\n\tsetAttr \".dc\" -type \"componentList\" 1 \"f[0]\";\ncreateNode deleteComponent -n \"deleteComponent3\";\n\trename -uid \"CD99D44C-40B3-941D-CF82-C2AAFB3E8314\";\n\tsetAttr \".dc\" -type \"componentList\" 1 \"f[1]\";\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 0;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 8 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 10 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\n\tsetAttr \".dar\" 1.7777777910232544;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"groupId1.id\" \"pCube5Shape.iog.og[0].gid\";\nconnectAttr \":initialShadingGroup.mwc\" \"pCube5Shape.iog.og[0].gco\";\nconnectAttr \"groupId2.id\" \"pCube5Shape.iog.og[1].gid\";\nconnectAttr \"lambert2SG.mwc\" \"pCube5Shape.iog.og[1].gco\";\nconnectAttr \"groupId3.id\" \"pCube5Shape.iog.og[2].gid\";\nconnectAttr \"lambert3SG.mwc\" \"pCube5Shape.iog.og[2].gco\";\nconnectAttr \"groupId4.id\" \"pCube5Shape.iog.og[3].gid\";\nconnectAttr \"lambert4SG.mwc\" \"pCube5Shape.iog.og[3].gco\";\nconnectAttr \"groupId5.id\" \"pCube5Shape.iog.og[4].gid\";\nconnectAttr \"lambert5SG.mwc\" \"pCube5Shape.iog.og[4].gco\";\nconnectAttr \"groupId6.id\" \"pCube5Shape.iog.og[5].gid\";\nconnectAttr \"lambert6SG.mwc\" \"pCube5Shape.iog.og[5].gco\";\nconnectAttr \"deleteComponent3.og\" \"pPyramidShape1.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert4SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert5SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert6SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert7SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert4SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert5SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert6SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert7SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"groupId2.msg\" \"lambert2SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[1]\" \"lambert2SG.dsm\" -na;\nconnectAttr \"lambert2SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo1.m\";\nconnectAttr \"lambert3.oc\" \"lambert3SG.ss\";\nconnectAttr \"groupId3.msg\" \"lambert3SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[2]\" \"lambert3SG.dsm\" -na;\nconnectAttr \"lambert3SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"lambert3.msg\" \"materialInfo2.m\";\nconnectAttr \"lambert4.oc\" \"lambert4SG.ss\";\nconnectAttr \"groupId4.msg\" \"lambert4SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[3]\" \"lambert4SG.dsm\" -na;\nconnectAttr \"lambert4SG.msg\" \"materialInfo3.sg\";\nconnectAttr \"lambert4.msg\" \"materialInfo3.m\";\nconnectAttr \"lambert5.oc\" \"lambert5SG.ss\";\nconnectAttr \"groupId5.msg\" \"lambert5SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[4]\" \"lambert5SG.dsm\" -na;\nconnectAttr \"lambert5SG.msg\" \"materialInfo4.sg\";\nconnectAttr \"lambert5.msg\" \"materialInfo4.m\";\nconnectAttr \"lambert6.oc\" \"lambert6SG.ss\";\nconnectAttr \"groupId6.msg\" \"lambert6SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[5]\" \"lambert6SG.dsm\" -na;\nconnectAttr \"lambert6SG.msg\" \"materialInfo5.sg\";\nconnectAttr \"lambert6.msg\" \"materialInfo5.m\";\nconnectAttr \"polyPyramid1.out\" \"transformGeometry1.ig\";\nconnectAttr \"lambert7.oc\" \"lambert7SG.ss\";\nconnectAttr \"pPyramidShape1.iog\" \"lambert7SG.dsm\" -na;\nconnectAttr \"lambert7SG.msg\" \"materialInfo6.sg\";\nconnectAttr \"lambert7.msg\" \"materialInfo6.m\";\nconnectAttr \"transformGeometry1.og\" \"polyNormal1.ip\";\nconnectAttr \"polyNormal1.out\" \"deleteComponent1.ig\";\nconnectAttr \"deleteComponent1.og\" \"deleteComponent2.ig\";\nconnectAttr \"deleteComponent2.og\" \"deleteComponent3.ig\";\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert3SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert4SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert5SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert6SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert7SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert3.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert4.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert5.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert6.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert7.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCube5Shape.iog.og[0]\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"groupId1.msg\" \":initialShadingGroup.gn\" -na;\n// End of CameraCalibration4.ma\n"
  },
  {
    "path": "maya/scenes/ChainPivotTest1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: ChainPivotTest1.ma\n//Last modified: Sun, Feb 03, 2019 11:46:58 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"77F6A480-45AB-FD99-6438-4EBB1BC4CDDF\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -0.4952436771418407 3.318330953197115 6.7439356556874586 ;\n\tsetAttr \".r\" -type \"double3\" -26.138352729616468 -4.1999999999999273 -5.9795983753697419e-16 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"B435B562-42EE-BF0D-D12A-5785EEABEE68\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999986;\n\tsetAttr \".coi\" 7.5324136067219811;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"8379DB66-4FDF-42CC-D55C-598676CB3A44\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"1878318B-40B5-EA23-5C36-1CA6857A6A04\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"82F764F9-4053-F404-B465-8891FF6321C9\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"99AE82BC-47D2-0544-AB89-2A8C184B9A51\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"5A9FC019-4544-DB33-276F-759997357763\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"5D7F160D-4A0A-E2DE-9EDC-7F92AEC356BE\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"parent\";\n\trename -uid \"237DBBCE-4C52-D3F6-35B2-DDA46ECBFA0F\";\n\tsetAttr \".t\" -type \"double3\" 1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 0 -10 ;\n\tsetAttr \".rp\" -type \"double3\" 1 0 0 ;\n\tsetAttr \".sp\" -type \"double3\" 1 0 0 ;\ncreateNode mesh -n \"parentShape\" -p \"parent\";\n\trename -uid \"EF4F02A9-4A31-A04E-6820-1D9214AF993B\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcol\" yes;\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".ccls\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clst[0].clsn\" -type \"string\" \"colorSet1\";\n\tsetAttr -s 24 \".clst[0].clsp[0:23]\"  0 0.354 0 1 0 0.354 0 1 0 0.354\n\t\t 0 1 0 0.354 0 1 0 0.354 0 1 0 0.354 0 1 0 0.354 0 1 0 0.354 0 1 0 0.354 0 1 0 0.354\n\t\t 0 1 0 0.354 0 1 0 0.354 0 1 0 0.354 0 1 0 0.354 0 1 0 0.354 0 1 0 0.354 0 1 0 0.354\n\t\t 0 1 0 0.354 0 1 0 0.354 0 1 0 0.354 0 1 0 0.354 0 1 0 0.354 0 1 0 0.354 0 1 0 0.354\n\t\t 0 1;\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".vt[0:7]\"  -1 -0.25 0.25 1 -0.25 0.25 -1 0.25 0.25 1 0.25 0.25\n\t\t -1 0.25 -0.25 1 0.25 -0.25 -1 -0.25 -0.25 1 -0.25 -0.25;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tmc 0 4 0 1 2 3\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tmc 0 4 4 5 6 7\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tmc 0 4 8 9 10 11\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tmc 0 4 12 13 14 15\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tmc 0 4 16 17 18 19\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13\n\t\tmc 0 4 20 21 22 23;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"child\" -p \"parent\";\n\trename -uid \"C2AE645F-454C-C676-5D2E-7E87E7B5E0A5\";\n\tsetAttr \".t\" -type \"double3\" -2 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 0 20 ;\n\tsetAttr \".rp\" -type \"double3\" 1 0 0 ;\n\tsetAttr \".sp\" -type \"double3\" 1 0 0 ;\ncreateNode mesh -n \"childShape\" -p \"child\";\n\trename -uid \"B234E215-4B36-87D2-B8DE-67BE1B0F6FA1\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcol\" yes;\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".ccls\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clst[0].clsn\" -type \"string\" \"colorSet1\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pPlane1\";\n\trename -uid \"FED936F1-40E0-0967-3E00-A588CA66D246\";\n\tsetAttr \".t\" -type \"double3\" 0 -0.25381218888723628 0 ;\n\tsetAttr \".s\" -type \"double3\" 0.97537640368120249 1 1 ;\ncreateNode mesh -n \"pPlaneShape1\" -p \"pPlane1\";\n\trename -uid \"C8D74FD0-476E-45ED-3B30-FB9B0B52C561\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.875 0.0625 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcol\" yes;\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".ccls\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clst[0].clsn\" -type \"string\" \"colorSet1\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"55419641-449D-8D10-9FF4-DCA051B9B438\";\n\tsetAttr \".t\" -type \"double3\" 0.008962418960844612 1.564220026054044 6.1369475080576485 ;\n\tsetAttr \".r\" -type \"double3\" -12.800783151656484 -0.19999999999966353 9.3180880623313616e-18 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"310B6944-4C2B-87EA-04EE-7E985A9CCE0D\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 6.2933989835977631;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.030384493975583959 0.1698430523498381 0 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"00851F4A-4DE1-1D7D-0E5B-148674294464\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"1B66EB83-43F9-0FEE-EF51-08BF62DC955C\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"2D2EA72B-4D3F-57EB-03D9-02BFDF503405\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"EEDBCA82-41B3-9C01-4E64-2EB8589D4A17\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"D88CBDA1-480F-B9E1-E855-39BF0873BCC6\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"2C313F4E-47E5-20E6-FA58-9FBBD7BE3178\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"DA9D3E6D-4F37-48FE-00EE-8D86A8942F32\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"8B0A7F78-468C-0185-24F8-B094282523EB\";\n\tsetAttr \".cuv\" 4;\ncreateNode transformGeometry -n \"transformGeometry1\";\n\trename -uid \"5D567CC4-4976-8422-8CE5-E39B2AECC8ED\";\n\tsetAttr \".txf\" -type \"matrix\" 2 0 0 0 0 0.5 0 0 0 0 0.5 0 0 0 0 1;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"5373E757-452F-054A-2E0C-C6BFB6E6420F\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 10 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"6A694707-45C2-CDDA-32F5-B2A6D573B088\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"43AF9C93-4DDF-3EA4-29E3-92A6141D9E7A\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/scenes/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"ChainPivotTest1\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2018 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"-dmy console\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 1;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\ncreateNode polyColorPerVertex -n \"polyColorPerVertex1\";\n\trename -uid \"C89EBE99-4EEA-FEC3-7BB2-DA817B8A316A\";\n\tsetAttr \".uopa\" yes;\n\tsetAttr -s 8 \".vclr\";\n\tsetAttr \".vclr[0].vxal\" 1;\n\tsetAttr -s 3 \".vclr[0].vfcl\";\n\tsetAttr \".vclr[0].vfcl[0].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[0].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[0].vfcl[3].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[0].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[0].vfcl[5].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[0].vfcl[5].vfal\" 1;\n\tsetAttr \".vclr[1].vxal\" 1;\n\tsetAttr -s 3 \".vclr[1].vfcl\";\n\tsetAttr \".vclr[1].vfcl[0].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[1].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[1].vfcl[3].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[1].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[1].vfcl[4].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[1].vfcl[4].vfal\" 1;\n\tsetAttr \".vclr[2].vxal\" 1;\n\tsetAttr -s 3 \".vclr[2].vfcl\";\n\tsetAttr \".vclr[2].vfcl[0].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[2].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[2].vfcl[1].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[2].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[2].vfcl[5].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[2].vfcl[5].vfal\" 1;\n\tsetAttr \".vclr[3].vxal\" 1;\n\tsetAttr -s 3 \".vclr[3].vfcl\";\n\tsetAttr \".vclr[3].vfcl[0].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[3].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[3].vfcl[1].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[3].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[3].vfcl[4].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[3].vfcl[4].vfal\" 1;\n\tsetAttr \".vclr[4].vxal\" 1;\n\tsetAttr -s 3 \".vclr[4].vfcl\";\n\tsetAttr \".vclr[4].vfcl[1].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[4].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[4].vfcl[2].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[4].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[4].vfcl[5].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[4].vfcl[5].vfal\" 1;\n\tsetAttr \".vclr[5].vxal\" 1;\n\tsetAttr -s 3 \".vclr[5].vfcl\";\n\tsetAttr \".vclr[5].vfcl[1].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[5].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[5].vfcl[2].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[5].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[5].vfcl[4].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[5].vfcl[4].vfal\" 1;\n\tsetAttr \".vclr[6].vxal\" 1;\n\tsetAttr -s 3 \".vclr[6].vfcl\";\n\tsetAttr \".vclr[6].vfcl[2].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[6].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[6].vfcl[3].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[6].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[6].vfcl[5].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[6].vfcl[5].vfal\" 1;\n\tsetAttr \".vclr[7].vxal\" 1;\n\tsetAttr -s 3 \".vclr[7].vfcl\";\n\tsetAttr \".vclr[7].vfcl[2].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[7].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[7].vfcl[3].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[7].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[7].vfcl[4].frgb\" -type \"float3\" 0 0.4402 0.4402 ;\n\tsetAttr \".vclr[7].vfcl[4].vfal\" 1;\n\tsetAttr \".cn\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clam\" no;\ncreateNode polyPlane -n \"polyPlane1\";\n\trename -uid \"43529CE0-41DD-B111-5EAD-86A4FD456622\";\n\tsetAttr \".w\" 4;\n\tsetAttr \".h\" 1.5;\n\tsetAttr \".sw\" 4;\n\tsetAttr \".sh\" 3;\n\tsetAttr \".cuv\" 2;\ncreateNode polyColorPerVertex -n \"polyColorPerVertex2\";\n\trename -uid \"5F631996-4D9C-6AFA-C23B-61B68F987378\";\n\tsetAttr \".uopa\" yes;\n\tsetAttr -s 18 \".vclr\";\n\tsetAttr \".vclr[0].vxal\" 1;\n\tsetAttr \".vclr[0].vfcl[0].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[0].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[1].vxal\" 1;\n\tsetAttr \".vclr[1].vfcl[0].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[1].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[2].vxal\" 1;\n\tsetAttr \".vclr[2].vfcl[2].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[2].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[3].vxal\" 1;\n\tsetAttr \".vclr[3].vfcl[2].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[3].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[5].vxal\" 1;\n\tsetAttr \".vclr[5].vfcl[0].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[5].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[6].vxal\" 1;\n\tsetAttr -s 2 \".vclr[6].vfcl\";\n\tsetAttr \".vclr[6].vfcl[0].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[6].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[6].vfcl[5].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[6].vfcl[5].vfal\" 1;\n\tsetAttr \".vclr[7].vxal\" 1;\n\tsetAttr -s 2 \".vclr[7].vfcl\";\n\tsetAttr \".vclr[7].vfcl[2].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[7].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[7].vfcl[5].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[7].vfcl[5].vfal\" 1;\n\tsetAttr \".vclr[8].vxal\" 1;\n\tsetAttr -s 2 \".vclr[8].vfcl\";\n\tsetAttr \".vclr[8].vfcl[2].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[8].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[8].vfcl[7].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[8].vfcl[7].vfal\" 1;\n\tsetAttr \".vclr[9].vxal\" 1;\n\tsetAttr \".vclr[9].vfcl[7].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[9].vfcl[7].vfal\" 1;\n\tsetAttr \".vclr[10].vxal\" 1;\n\tsetAttr \".vclr[10].vfcl[8].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[10].vfcl[8].vfal\" 1;\n\tsetAttr \".vclr[11].vxal\" 1;\n\tsetAttr -s 2 \".vclr[11].vfcl\";\n\tsetAttr \".vclr[11].vfcl[5].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[11].vfcl[5].vfal\" 1;\n\tsetAttr \".vclr[11].vfcl[8].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[11].vfcl[8].vfal\" 1;\n\tsetAttr \".vclr[12].vxal\" 1;\n\tsetAttr -s 2 \".vclr[12].vfcl\";\n\tsetAttr \".vclr[12].vfcl[5].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[12].vfcl[5].vfal\" 1;\n\tsetAttr \".vclr[12].vfcl[10].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[12].vfcl[10].vfal\" 1;\n\tsetAttr \".vclr[13].vxal\" 1;\n\tsetAttr -s 2 \".vclr[13].vfcl\";\n\tsetAttr \".vclr[13].vfcl[7].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[13].vfcl[7].vfal\" 1;\n\tsetAttr \".vclr[13].vfcl[10].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[13].vfcl[10].vfal\" 1;\n\tsetAttr \".vclr[14].vxal\" 1;\n\tsetAttr \".vclr[14].vfcl[7].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[14].vfcl[7].vfal\" 1;\n\tsetAttr \".vclr[15].vxal\" 1;\n\tsetAttr \".vclr[15].vfcl[8].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[15].vfcl[8].vfal\" 1;\n\tsetAttr \".vclr[16].vxal\" 1;\n\tsetAttr \".vclr[16].vfcl[8].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[16].vfcl[8].vfal\" 1;\n\tsetAttr \".vclr[17].vxal\" 1;\n\tsetAttr \".vclr[17].vfcl[10].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[17].vfcl[10].vfal\" 1;\n\tsetAttr \".vclr[18].vxal\" 1;\n\tsetAttr \".vclr[18].vfcl[10].frgb\" -type \"float3\" 0.23100001 0.23100001 0.23100001 ;\n\tsetAttr \".vclr[18].vfcl[10].vfal\" 1;\n\tsetAttr \".cn\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clam\" no;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"EA67730F-46F0-EDBE-C868-3D9A36514987\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 3 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"polyColorPerVertex1.out\" \"childShape.i\";\nconnectAttr \"polyColorPerVertex2.out\" \"pPlaneShape1.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"polyCube1.out\" \"transformGeometry1.ig\";\nconnectAttr \"transformGeometry1.og\" \"polyColorPerVertex1.ip\";\nconnectAttr \"polyPlane1.out\" \"polyColorPerVertex2.ip\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"childShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"parentShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pPlaneShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of ChainPivotTest1.ma\n"
  },
  {
    "path": "maya/scenes/CombinedCubeCone1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: CombinedCubeCone1.ma\n//Last modified: Sun, Feb 03, 2019 11:47:08 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"D2BCD539-49B9-9A21-F9A3-5C8ADD29D246\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 4.1487623553873201 3.5135730274280101 6.3885337966327658 ;\n\tsetAttr \".r\" -type \"double3\" -17.738352729602564 33.000000000000213 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"A9B948B6-4518-10B4-120F-0CA5780A3291\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 7.9976810213483169;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" -5.9677186081685818e-08 1.0769140590627102 -8.9515779122528727e-08 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"8FC953BA-458B-F809-74C6-EEB4B9AA9A29\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"F32F76C9-43EF-0F75-9A1E-96BB681305AC\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"84829BA4-40DB-AE2C-82CA-948FF66EE9AC\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"9250C73F-4CE2-8A73-D856-55BDED4D3B0E\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"DC50BC24-4E4F-3070-9BD5-F9AE5C9D49EE\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"DE39D3EB-48F8-047D-5EC5-CA93DC07EDD0\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"584E5379-42D8-B5A3-11AB-A18287732C94\";\ncreateNode transform -n \"transform1\" -p \"pCube1\";\n\trename -uid \"C31E88CC-449C-7CC2-6D76-ACBF18D21208\";\n\tsetAttr \".v\" no;\ncreateNode mesh -n \"pCubeShape1\" -p \"transform1\";\n\trename -uid \"5C06B52D-46C6-CC14-A67B-5AAFFC8B4BA4\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr -s 2 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pCone1\";\n\trename -uid \"034790F9-4081-4773-FE0E-DF80343CD050\";\n\tsetAttr \".t\" -type \"double3\" 0 1 0 ;\n\tsetAttr \".s\" -type \"double3\" 0.5 0.5 0.5 ;\ncreateNode transform -n \"transform2\" -p \"pCone1\";\n\trename -uid \"34F1E95A-4C67-19E5-28FD-E1B8AF138F52\";\n\tsetAttr \".v\" no;\ncreateNode mesh -n \"pConeShape1\" -p \"transform2\";\n\trename -uid \"374EEE21-421D-1BF7-BE67-CDA649DBF84B\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr -s 2 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pCone2\";\n\trename -uid \"9BE39A59-489C-E18E-338D-1C8CA1F4E979\";\n\tsetAttr \".rp\" -type \"double3\" -5.9604644775390625e-08 0.5 -8.9406967163085938e-08 ;\n\tsetAttr \".sp\" -type \"double3\" -5.9604644775390625e-08 0.5 -8.9406967163085938e-08 ;\ncreateNode mesh -n \"pCone2Shape\" -p \"pCone2\";\n\trename -uid \"742779B1-4B53-E3D0-A631-0FA68A4EBEAF\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 2 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr -s 2 \".uvst\";\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".uvst[1].uvsn\" -type \"string\" \"map11\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"C09B4D86-411D-16FA-827D-348840855D89\";\n\tsetAttr \".t\" -type \"double3\" 1.9359559909469422 2.9159375288565705 3.6718672906758534 ;\n\tsetAttr \".r\" -type \"double3\" -30.200169330087824 27.799999999999997 1.7977747490500635e-15 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"D0CBBA7D-414C-442A-1B2E-979FF3AB38DB\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 4.8028418701765681;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" -5.9604644775390625e-08 0.5 -8.9406967163085938e-08 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"20A62DA2-4FC9-CB18-B9C2-38BEC2BAF020\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"936BCB10-4698-7134-76A2-F6922DAB0AD5\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"032AEE8B-45E0-49F1-628A-E0961015B68A\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"CAE3BD0C-469F-448E-C977-039ECB4DD24D\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"9CE086AE-4536-8D1B-CA84-B98ED6175B62\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"97E182D8-452E-2BB4-43FB-F69686AC99B1\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"35A6F06A-4946-4CD4-EA72-5BBF736A6137\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"56A1FC16-42ED-9E52-8455-7D93295B2F16\";\n\tsetAttr \".cuv\" 4;\ncreateNode polyCone -n \"polyCone1\";\n\trename -uid \"8C9489B2-4409-2613-3DDC-91B95E2C45FF\";\n\tsetAttr \".cuv\" 3;\ncreateNode polyUnite -n \"polyUnite1\";\n\trename -uid \"E16F6A59-47D3-BE8D-8DB3-A2877B90C452\";\n\tsetAttr -s 2 \".ip\";\n\tsetAttr -s 2 \".im\";\n\tsetAttr \".muv\" 0;\ncreateNode groupId -n \"groupId1\";\n\trename -uid \"56FE3AE4-4820-C6F0-982D-B2A3297A98E5\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts1\";\n\trename -uid \"61C372BA-4A63-7811-B9F8-D9A87F64F2D6\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"f[0:20]\";\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"E699ADEF-4D00-15EF-12B3-C2805CF317E3\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupId -n \"groupId3\";\n\trename -uid \"BC338ACB-4B18-F12F-9267-52B1CCB15003\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"F9C28F3B-472A-D7EC-757A-8D82D90907D3\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"f[0:5]\";\ncreateNode groupId -n \"groupId4\";\n\trename -uid \"858EE2C7-46A3-AD26-E2CE-97AC912FF826\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupId -n \"groupId5\";\n\trename -uid \"B6830842-4FEF-F0CD-180B-66848968D92B\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts3\";\n\trename -uid \"9F28C184-4494-C5ED-7F09-CDA54EE5D201\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"f[0:26]\";\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"5E79639F-485C-655F-03FC-BAAB1F751D57\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 1\\n            -showReferenceMembers 1\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 10 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"B7B5423B-45E6-0309-3942-40B1A6D84883\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"4BF692E5-42E8-66B3-CE26-85BF05ADFB72\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 5 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\n\tsetAttr -s 5 \".gn\";\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"groupId3.id\" \"pCubeShape1.iog.og[0].gid\";\nconnectAttr \":initialShadingGroup.mwc\" \"pCubeShape1.iog.og[0].gco\";\nconnectAttr \"groupParts2.og\" \"pCubeShape1.i\";\nconnectAttr \"groupId4.id\" \"pCubeShape1.ciog.cog[0].cgid\";\nconnectAttr \"groupId1.id\" \"pConeShape1.iog.og[0].gid\";\nconnectAttr \":initialShadingGroup.mwc\" \"pConeShape1.iog.og[0].gco\";\nconnectAttr \"groupParts1.og\" \"pConeShape1.i\";\nconnectAttr \"groupId2.id\" \"pConeShape1.ciog.cog[0].cgid\";\nconnectAttr \"groupParts3.og\" \"pCone2Shape.i\";\nconnectAttr \"groupId5.id\" \"pCone2Shape.iog.og[0].gid\";\nconnectAttr \":initialShadingGroup.mwc\" \"pCone2Shape.iog.og[0].gco\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"pConeShape1.o\" \"polyUnite1.ip[0]\";\nconnectAttr \"pCubeShape1.o\" \"polyUnite1.ip[1]\";\nconnectAttr \"pConeShape1.wm\" \"polyUnite1.im[0]\";\nconnectAttr \"pCubeShape1.wm\" \"polyUnite1.im[1]\";\nconnectAttr \"polyCone1.out\" \"groupParts1.ig\";\nconnectAttr \"groupId1.id\" \"groupParts1.gi\";\nconnectAttr \"polyCube1.out\" \"groupParts2.ig\";\nconnectAttr \"groupId3.id\" \"groupParts2.gi\";\nconnectAttr \"polyUnite1.out\" \"groupParts3.ig\";\nconnectAttr \"groupId5.id\" \"groupParts3.gi\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pConeShape1.iog.og[0]\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pConeShape1.ciog.cog[0]\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pCubeShape1.iog.og[0]\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pCubeShape1.ciog.cog[0]\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pCone2Shape.iog.og[0]\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"groupId1.msg\" \":initialShadingGroup.gn\" -na;\nconnectAttr \"groupId2.msg\" \":initialShadingGroup.gn\" -na;\nconnectAttr \"groupId3.msg\" \":initialShadingGroup.gn\" -na;\nconnectAttr \"groupId4.msg\" \":initialShadingGroup.gn\" -na;\nconnectAttr \"groupId5.msg\" \":initialShadingGroup.gn\" -na;\n// End of CombinedCubeCone1.ma\n"
  },
  {
    "path": "maya/scenes/CubeGrid1.ma",
    "content": "//Maya ASCII 2018ff08 scene\n//Name: CubeGrid1.ma\n//Last modified: Sun, Feb 03, 2019 03:13:12 PM\n//Codeset: 1252\nrequires maya \"2018ff08\";\nrequires \"stereoCamera\" \"10.0\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201804211841-f3d65dda2a\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"AAFB104E-4FD8-12C2-F062-5FBBE22E28D9\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -0.221728913707926 63.443268197728337 63.52039676422865 ;\n\tsetAttr \".r\" -type \"double3\" -44.738352729596023 -0.19999999999897924 -2.9817881799460347e-16 ;\n\tsetAttr \".rp\" -type \"double3\" 0 -7.1054273576010019e-15 0 ;\n\tsetAttr \".rpt\" -type \"double3\" 2.788632745664467e-15 3.8507534731040169e-15 5.6672500606136927e-15 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"C611669F-4502-BC51-FDD7-78A470756B8D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 89.424521134906598;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0 0.5 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"3D87D8C2-43B0-A58C-4FD6-EB98FF0F3463\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"B38C9587-472E-AE2E-6963-A1B23033C336\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"1C1F28E2-4012-E661-3EE1-84AD7FB8085C\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"993AA8C2-4C06-47F7-9808-32A5E799C252\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"25129461-45BE-2012-903B-0582F9F6D376\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"F10EC166-4EB7-CE05-6F7D-5182652D3025\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube5\";\n\trename -uid \"91003C93-48A2-9DC1-3A34-7EAA399A186E\";\ncreateNode mesh -n \"pCube5Shape\" -p \"pCube5\";\n\trename -uid \"AD70B5C7-4E16-F990-4E90-3CB6607ED719\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 6 \".iog[0].og\";\n\tsetAttr \".iog[0].og[0].gcl\" -type \"componentList\" 6 \"f[0:47]\" \"f[54:479]\" \"f[486:587]\" \"f[594:611]\" \"f[618:623]\" \"f[630:1031]\";\n\tsetAttr \".iog[0].og[1].gcl\" -type \"componentList\" 1 \"f[480:485]\";\n\tsetAttr \".iog[0].og[2].gcl\" -type \"componentList\" 1 \"f[624:629]\";\n\tsetAttr \".iog[0].og[3].gcl\" -type \"componentList\" 1 \"f[612:617]\";\n\tsetAttr \".iog[0].og[4].gcl\" -type \"componentList\" 1 \"f[588:593]\";\n\tsetAttr \".iog[0].og[5].gcl\" -type \"componentList\" 1 \"f[48:53]\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.5 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 2408 \".uvst[0].uvsp\";\n\tsetAttr \".uvst[0].uvsp[0:249]\" -type \"float2\" 0.375 0 0.625 0 0.375 0.25\n\t\t 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25;\n\tsetAttr \".uvst[0].uvsp[250:499]\" 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1;\n\tsetAttr \".uvst[0].uvsp[500:749]\" 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75;\n\tsetAttr \".uvst[0].uvsp[750:999]\" 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0\n\t\t 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375\n\t\t 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625\n\t\t 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5;\n\tsetAttr \".uvst[0].uvsp[1000:1249]\" 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25;\n\tsetAttr \".uvst[0].uvsp[1250:1499]\" 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75\n\t\t 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0;\n\tsetAttr \".uvst[0].uvsp[1500:1749]\" 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25;\n\tsetAttr \".uvst[0].uvsp[1750:1999]\" 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625\n\t\t 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125\n\t\t 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75\n\t\t 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25;\n\tsetAttr \".uvst[0].uvsp[2000:2249]\" 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1;\n\tsetAttr \".uvst[0].uvsp[2250:2407]\" 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 1376 \".vt\";\n\tsetAttr \".vt[0:165]\"  -4.5 -0.5 0.5 -3.5 -0.5 0.5 -4.5 0.5 0.5 -3.5 0.5 0.5\n\t\t -4.5 0.5 -0.5 -3.5 0.5 -0.5 -4.5 -0.5 -0.5 -3.5 -0.5 -0.5 -2.5 -0.5 0.5 -1.5 -0.5 0.5\n\t\t -2.5 0.5 0.5 -1.5 0.5 0.5 -2.5 0.5 -0.5 -1.5 0.5 -0.5 -2.5 -0.5 -0.5 -1.5 -0.5 -0.5\n\t\t -10.5 -0.5 0.5 -9.5 -0.5 0.5 -10.5 0.5 0.5 -9.5 0.5 0.5 -10.5 0.5 -0.5 -9.5 0.5 -0.5\n\t\t -10.5 -0.5 -0.5 -9.5 -0.5 -0.5 -8.5 -0.5 0.5 -7.5 -0.5 0.5 -8.5 0.5 0.5 -7.5 0.5 0.5\n\t\t -8.5 0.5 -0.5 -7.5 0.5 -0.5 -8.5 -0.5 -0.5 -7.5 -0.5 -0.5 -6.5 -0.5 0.5 -5.5 -0.5 0.5\n\t\t -6.5 0.5 0.5 -5.5 0.5 0.5 -6.5 0.5 -0.5 -5.5 0.5 -0.5 -6.5 -0.5 -0.5 -5.5 -0.5 -0.5\n\t\t -12.5 -0.5 0.5 -11.5 -0.5 0.5 -12.5 0.5 0.5 -11.5 0.5 0.5 -12.5 0.5 -0.5 -11.5 0.5 -0.5\n\t\t -12.5 -0.5 -0.5 -11.5 -0.5 -0.5 3.5 -0.5 0.5 4.5 -0.5 0.5 3.5 0.5 0.5 4.5 0.5 0.5\n\t\t 3.5 0.5 -0.5 4.5 0.5 -0.5 3.5 -0.5 -0.5 4.5 -0.5 -0.5 1.5 -0.5 0.5 2.5 -0.5 0.5 1.5 0.5 0.5\n\t\t 2.5 0.5 0.5 1.5 0.5 -0.5 2.5 0.5 -0.5 1.5 -0.5 -0.5 2.5 -0.5 -0.5 -0.5 -0.5 0.5 0.5 -0.5 0.5\n\t\t -0.5 0.5 0.5 0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5\n\t\t 9.5 -0.5 0.5 10.5 -0.5 0.5 9.5 0.5 0.5 10.5 0.5 0.5 9.5 0.5 -0.5 10.5 0.5 -0.5 9.5 -0.5 -0.5\n\t\t 10.5 -0.5 -0.5 -6.5 -0.5 -1.5 -5.5 -0.5 -1.5 -6.5 0.5 -1.5 -5.5 0.5 -1.5 -6.5 0.5 -2.5\n\t\t -5.5 0.5 -2.5 -6.5 -0.5 -2.5 -5.5 -0.5 -2.5 -8.5 -0.5 -1.5 -7.5 -0.5 -1.5 -8.5 0.5 -1.5\n\t\t -7.5 0.5 -1.5 -8.5 0.5 -2.5 -7.5 0.5 -2.5 -8.5 -0.5 -2.5 -7.5 -0.5 -2.5 7.5 -0.5 0.5\n\t\t 8.5 -0.5 0.5 7.5 0.5 0.5 8.5 0.5 0.5 7.5 0.5 -0.5 8.5 0.5 -0.5 7.5 -0.5 -0.5 8.5 -0.5 -0.5\n\t\t 11.5 -0.5 0.5 12.5 -0.5 0.5 11.5 0.5 0.5 12.5 0.5 0.5 11.5 0.5 -0.5 12.5 0.5 -0.5\n\t\t 11.5 -0.5 -0.5 12.5 -0.5 -0.5 -10.5 -0.5 -1.5 -9.5 -0.5 -1.5 -10.5 0.5 -1.5 -9.5 0.5 -1.5\n\t\t -10.5 0.5 -2.5 -9.5 0.5 -2.5 -10.5 -0.5 -2.5 -9.5 -0.5 -2.5 5.5 -0.5 0.5 6.5 -0.5 0.5\n\t\t 5.5 0.5 0.5 6.5 0.5 0.5 5.5 0.5 -0.5 6.5 0.5 -0.5 5.5 -0.5 -0.5 6.5 -0.5 -0.5 -2.5 -0.5 8.5\n\t\t -1.5 -0.5 8.5 -2.5 0.5 8.5 -1.5 0.5 8.5 -2.5 0.5 7.5 -1.5 0.5 7.5 -2.5 -0.5 7.5 -1.5 -0.5 7.5\n\t\t -10.5 -0.5 8.5 -9.5 -0.5 8.5 -10.5 0.5 8.5 -9.5 0.5 8.5 -10.5 0.5 7.5 -9.5 0.5 7.5\n\t\t -10.5 -0.5 7.5 -9.5 -0.5 7.5 -8.5 -0.5 8.5 -7.5 -0.5 8.5 -8.5 0.5 8.5 -7.5 0.5 8.5\n\t\t -8.5 0.5 7.5 -7.5 0.5 7.5 -8.5 -0.5 7.5 -7.5 -0.5 7.5 -4.5 -0.5 8.5 -3.5 -0.5 8.5\n\t\t -4.5 0.5 8.5 -3.5 0.5 8.5 -4.5 0.5 7.5 -3.5 0.5 7.5 -4.5 -0.5 7.5 -3.5 -0.5 7.5 -12.5 -0.5 -5.5\n\t\t -11.5 -0.5 -5.5 -12.5 0.5 -5.5 -11.5 0.5 -5.5 -12.5 0.5 -6.5 -11.5 0.5 -6.5;\n\tsetAttr \".vt[166:331]\" -12.5 -0.5 -6.5 -11.5 -0.5 -6.5 1.5 -0.5 -5.5 2.5 -0.5 -5.5\n\t\t 1.5 0.5 -5.5 2.5 0.5 -5.5 1.5 0.5 -6.5 2.5 0.5 -6.5 1.5 -0.5 -6.5 2.5 -0.5 -6.5 3.5 -0.5 -5.5\n\t\t 4.5 -0.5 -5.5 3.5 0.5 -5.5 4.5 0.5 -5.5 3.5 0.5 -6.5 4.5 0.5 -6.5 3.5 -0.5 -6.5 4.5 -0.5 -6.5\n\t\t -0.5 -0.5 -5.5 0.5 -0.5 -5.5 -0.5 0.5 -5.5 0.5 0.5 -5.5 -0.5 0.5 -6.5 0.5 0.5 -6.5\n\t\t -0.5 -0.5 -6.5 0.5 -0.5 -6.5 -4.5 -0.5 -5.5 -3.5 -0.5 -5.5 -4.5 0.5 -5.5 -3.5 0.5 -5.5\n\t\t -4.5 0.5 -6.5 -3.5 0.5 -6.5 -4.5 -0.5 -6.5 -3.5 -0.5 -6.5 -2.5 -0.5 -5.5 -1.5 -0.5 -5.5\n\t\t -2.5 0.5 -5.5 -1.5 0.5 -5.5 -2.5 0.5 -6.5 -1.5 0.5 -6.5 -2.5 -0.5 -6.5 -1.5 -0.5 -6.5\n\t\t 9.5 -0.5 -5.5 10.5 -0.5 -5.5 9.5 0.5 -5.5 10.5 0.5 -5.5 9.5 0.5 -6.5 10.5 0.5 -6.5\n\t\t 9.5 -0.5 -6.5 10.5 -0.5 -6.5 7.5 -0.5 -5.5 8.5 -0.5 -5.5 7.5 0.5 -5.5 8.5 0.5 -5.5\n\t\t 7.5 0.5 -6.5 8.5 0.5 -6.5 7.5 -0.5 -6.5 8.5 -0.5 -6.5 11.5 -0.5 -5.5 12.5 -0.5 -5.5\n\t\t 11.5 0.5 -5.5 12.5 0.5 -5.5 11.5 0.5 -6.5 12.5 0.5 -6.5 11.5 -0.5 -6.5 12.5 -0.5 -6.5\n\t\t 5.5 -0.5 -5.5 6.5 -0.5 -5.5 5.5 0.5 -5.5 6.5 0.5 -5.5 5.5 0.5 -6.5 6.5 0.5 -6.5 5.5 -0.5 -6.5\n\t\t 6.5 -0.5 -6.5 5.5 -0.5 -3.5 6.5 -0.5 -3.5 5.5 0.5 -3.5 6.5 0.5 -3.5 5.5 0.5 -4.5\n\t\t 6.5 0.5 -4.5 5.5 -0.5 -4.5 6.5 -0.5 -4.5 -10.5 -0.5 -5.5 -9.5 -0.5 -5.5 -10.5 0.5 -5.5\n\t\t -9.5 0.5 -5.5 -10.5 0.5 -6.5 -9.5 0.5 -6.5 -10.5 -0.5 -6.5 -9.5 -0.5 -6.5 -2.5 -0.5 -3.5\n\t\t -1.5 -0.5 -3.5 -2.5 0.5 -3.5 -1.5 0.5 -3.5 -2.5 0.5 -4.5 -1.5 0.5 -4.5 -2.5 -0.5 -4.5\n\t\t -1.5 -0.5 -4.5 -4.5 -0.5 -3.5 -3.5 -0.5 -3.5 -4.5 0.5 -3.5 -3.5 0.5 -3.5 -4.5 0.5 -4.5\n\t\t -3.5 0.5 -4.5 -4.5 -0.5 -4.5 -3.5 -0.5 -4.5 -6.5 -0.5 8.5 -5.5 -0.5 8.5 -6.5 0.5 8.5\n\t\t -5.5 0.5 8.5 -6.5 0.5 7.5 -5.5 0.5 7.5 -6.5 -0.5 7.5 -5.5 -0.5 7.5 9.5 -0.5 8.5 10.5 -0.5 8.5\n\t\t 9.5 0.5 8.5 10.5 0.5 8.5 9.5 0.5 7.5 10.5 0.5 7.5 9.5 -0.5 7.5 10.5 -0.5 7.5 -0.5 -0.5 8.5\n\t\t 0.5 -0.5 8.5 -0.5 0.5 8.5 0.5 0.5 8.5 -0.5 0.5 7.5 0.5 0.5 7.5 -0.5 -0.5 7.5 0.5 -0.5 7.5\n\t\t 1.5 -0.5 8.5 2.5 -0.5 8.5 1.5 0.5 8.5 2.5 0.5 8.5 1.5 0.5 7.5 2.5 0.5 7.5 1.5 -0.5 7.5\n\t\t 2.5 -0.5 7.5 3.5 -0.5 8.5 4.5 -0.5 8.5 3.5 0.5 8.5 4.5 0.5 8.5 3.5 0.5 7.5 4.5 0.5 7.5\n\t\t 3.5 -0.5 7.5 4.5 -0.5 7.5 -8.5 -0.5 6.5 -7.5 -0.5 6.5 -8.5 0.5 6.5 -7.5 0.5 6.5 -8.5 0.5 5.5\n\t\t -7.5 0.5 5.5 -8.5 -0.5 5.5 -7.5 -0.5 5.5 -12.5 -0.5 8.5 -11.5 -0.5 8.5 -12.5 0.5 8.5\n\t\t -11.5 0.5 8.5 -12.5 0.5 7.5 -11.5 0.5 7.5 -12.5 -0.5 7.5 -11.5 -0.5 7.5 -6.5 -0.5 6.5\n\t\t -5.5 -0.5 6.5 -6.5 0.5 6.5 -5.5 0.5 6.5;\n\tsetAttr \".vt[332:497]\" -6.5 0.5 5.5 -5.5 0.5 5.5 -6.5 -0.5 5.5 -5.5 -0.5 5.5\n\t\t 11.5 -0.5 8.5 12.5 -0.5 8.5 11.5 0.5 8.5 12.5 0.5 8.5 11.5 0.5 7.5 12.5 0.5 7.5 11.5 -0.5 7.5\n\t\t 12.5 -0.5 7.5 7.5 -0.5 8.5 8.5 -0.5 8.5 7.5 0.5 8.5 8.5 0.5 8.5 7.5 0.5 7.5 8.5 0.5 7.5\n\t\t 7.5 -0.5 7.5 8.5 -0.5 7.5 1.5 -0.5 -3.5 2.5 -0.5 -3.5 1.5 0.5 -3.5 2.5 0.5 -3.5 1.5 0.5 -4.5\n\t\t 2.5 0.5 -4.5 1.5 -0.5 -4.5 2.5 -0.5 -4.5 -0.5 -0.5 -3.5 0.5 -0.5 -3.5 -0.5 0.5 -3.5\n\t\t 0.5 0.5 -3.5 -0.5 0.5 -4.5 0.5 0.5 -4.5 -0.5 -0.5 -4.5 0.5 -0.5 -4.5 -8.5 -0.5 -3.5\n\t\t -7.5 -0.5 -3.5 -8.5 0.5 -3.5 -7.5 0.5 -3.5 -8.5 0.5 -4.5 -7.5 0.5 -4.5 -8.5 -0.5 -4.5\n\t\t -7.5 -0.5 -4.5 -6.5 -0.5 -3.5 -5.5 -0.5 -3.5 -6.5 0.5 -3.5 -5.5 0.5 -3.5 -6.5 0.5 -4.5\n\t\t -5.5 0.5 -4.5 -6.5 -0.5 -4.5 -5.5 -0.5 -4.5 -12.5 -0.5 -3.5 -11.5 -0.5 -3.5 -12.5 0.5 -3.5\n\t\t -11.5 0.5 -3.5 -12.5 0.5 -4.5 -11.5 0.5 -4.5 -12.5 -0.5 -4.5 -11.5 -0.5 -4.5 3.5 -0.5 -3.5\n\t\t 4.5 -0.5 -3.5 3.5 0.5 -3.5 4.5 0.5 -3.5 3.5 0.5 -4.5 4.5 0.5 -4.5 3.5 -0.5 -4.5 4.5 -0.5 -4.5\n\t\t -10.5 -0.5 -3.5 -9.5 -0.5 -3.5 -10.5 0.5 -3.5 -9.5 0.5 -3.5 -10.5 0.5 -4.5 -9.5 0.5 -4.5\n\t\t -10.5 -0.5 -4.5 -9.5 -0.5 -4.5 5.5 -0.5 -1.5 6.5 -0.5 -1.5 5.5 0.5 -1.5 6.5 0.5 -1.5\n\t\t 5.5 0.5 -2.5 6.5 0.5 -2.5 5.5 -0.5 -2.5 6.5 -0.5 -2.5 11.5 -0.5 -1.5 12.5 -0.5 -1.5\n\t\t 11.5 0.5 -1.5 12.5 0.5 -1.5 11.5 0.5 -2.5 12.5 0.5 -2.5 11.5 -0.5 -2.5 12.5 -0.5 -2.5\n\t\t 7.5 -0.5 -1.5 8.5 -0.5 -1.5 7.5 0.5 -1.5 8.5 0.5 -1.5 7.5 0.5 -2.5 8.5 0.5 -2.5 7.5 -0.5 -2.5\n\t\t 8.5 -0.5 -2.5 9.5 -0.5 -1.5 10.5 -0.5 -1.5 9.5 0.5 -1.5 10.5 0.5 -1.5 9.5 0.5 -2.5\n\t\t 10.5 0.5 -2.5 9.5 -0.5 -2.5 10.5 -0.5 -2.5 -2.5 -0.5 -1.5 -1.5 -0.5 -1.5 -2.5 0.5 -1.5\n\t\t -1.5 0.5 -1.5 -2.5 0.5 -2.5 -1.5 0.5 -2.5 -2.5 -0.5 -2.5 -1.5 -0.5 -2.5 -4.5 -0.5 -1.5\n\t\t -3.5 -0.5 -1.5 -4.5 0.5 -1.5 -3.5 0.5 -1.5 -4.5 0.5 -2.5 -3.5 0.5 -2.5 -4.5 -0.5 -2.5\n\t\t -3.5 -0.5 -2.5 -6.5 -0.5 -5.5 -5.5 -0.5 -5.5 -6.5 0.5 -5.5 -5.5 0.5 -5.5 -6.5 0.5 -6.5\n\t\t -5.5 0.5 -6.5 -6.5 -0.5 -6.5 -5.5 -0.5 -6.5 -8.5 -0.5 -5.5 -7.5 -0.5 -5.5 -8.5 0.5 -5.5\n\t\t -7.5 0.5 -5.5 -8.5 0.5 -6.5 -7.5 0.5 -6.5 -8.5 -0.5 -6.5 -7.5 -0.5 -6.5 11.5 -0.5 -3.5\n\t\t 12.5 -0.5 -3.5 11.5 0.5 -3.5 12.5 0.5 -3.5 11.5 0.5 -4.5 12.5 0.5 -4.5 11.5 -0.5 -4.5\n\t\t 12.5 -0.5 -4.5 7.5 -0.5 -3.5 8.5 -0.5 -3.5 7.5 0.5 -3.5 8.5 0.5 -3.5 7.5 0.5 -4.5\n\t\t 8.5 0.5 -4.5 7.5 -0.5 -4.5 8.5 -0.5 -4.5 9.5 -0.5 -3.5 10.5 -0.5 -3.5 9.5 0.5 -3.5\n\t\t 10.5 0.5 -3.5 9.5 0.5 -4.5 10.5 0.5 -4.5 9.5 -0.5 -4.5 10.5 -0.5 -4.5 -0.5 -0.5 -1.5\n\t\t 0.5 -0.5 -1.5;\n\tsetAttr \".vt[498:663]\" -0.5 0.5 -1.5 0.5 0.5 -1.5 -0.5 0.5 -2.5 0.5 0.5 -2.5\n\t\t -0.5 -0.5 -2.5 0.5 -0.5 -2.5 3.5 -0.5 -1.5 4.5 -0.5 -1.5 3.5 0.5 -1.5 4.5 0.5 -1.5\n\t\t 3.5 0.5 -2.5 4.5 0.5 -2.5 3.5 -0.5 -2.5 4.5 -0.5 -2.5 1.5 -0.5 -1.5 2.5 -0.5 -1.5\n\t\t 1.5 0.5 -1.5 2.5 0.5 -1.5 1.5 0.5 -2.5 2.5 0.5 -2.5 1.5 -0.5 -2.5 2.5 -0.5 -2.5 -12.5 -0.5 -1.5\n\t\t -11.5 -0.5 -1.5 -12.5 0.5 -1.5 -11.5 0.5 -1.5 -12.5 0.5 -2.5 -11.5 0.5 -2.5 -12.5 -0.5 -2.5\n\t\t -11.5 -0.5 -2.5 11.5 -0.5 2.5 12.5 -0.5 2.5 11.5 0.5 2.5 12.5 0.5 2.5 11.5 0.5 1.5\n\t\t 12.5 0.5 1.5 11.5 -0.5 1.5 12.5 -0.5 1.5 7.5 -0.5 2.5 8.5 -0.5 2.5 7.5 0.5 2.5 8.5 0.5 2.5\n\t\t 7.5 0.5 1.5 8.5 0.5 1.5 7.5 -0.5 1.5 8.5 -0.5 1.5 9.5 -0.5 2.5 10.5 -0.5 2.5 9.5 0.5 2.5\n\t\t 10.5 0.5 2.5 9.5 0.5 1.5 10.5 0.5 1.5 9.5 -0.5 1.5 10.5 -0.5 1.5 -2.5 -0.5 2.5 -1.5 -0.5 2.5\n\t\t -2.5 0.5 2.5 -1.5 0.5 2.5 -2.5 0.5 1.5 -1.5 0.5 1.5 -2.5 -0.5 1.5 -1.5 -0.5 1.5 -4.5 -0.5 2.5\n\t\t -3.5 -0.5 2.5 -4.5 0.5 2.5 -3.5 0.5 2.5 -4.5 0.5 1.5 -3.5 0.5 1.5 -4.5 -0.5 1.5 -3.5 -0.5 1.5\n\t\t -0.5 -0.5 2.5 0.5 -0.5 2.5 -0.5 0.5 2.5 0.5 0.5 2.5 -0.5 0.5 1.5 0.5 0.5 1.5 -0.5 -0.5 1.5\n\t\t 0.5 -0.5 1.5 3.5 -0.5 2.5 4.5 -0.5 2.5 3.5 0.5 2.5 4.5 0.5 2.5 3.5 0.5 1.5 4.5 0.5 1.5\n\t\t 3.5 -0.5 1.5 4.5 -0.5 1.5 1.5 -0.5 2.5 2.5 -0.5 2.5 1.5 0.5 2.5 2.5 0.5 2.5 1.5 0.5 1.5\n\t\t 2.5 0.5 1.5 1.5 -0.5 1.5 2.5 -0.5 1.5 -12.5 -0.5 2.5 -11.5 -0.5 2.5 -12.5 0.5 2.5\n\t\t -11.5 0.5 2.5 -12.5 0.5 1.5 -11.5 0.5 1.5 -12.5 -0.5 1.5 -11.5 -0.5 1.5 5.5 -0.5 8.5\n\t\t 6.5 -0.5 8.5 5.5 0.5 8.5 6.5 0.5 8.5 5.5 0.5 7.5 6.5 0.5 7.5 5.5 -0.5 7.5 6.5 -0.5 7.5\n\t\t -10.5 -0.5 6.5 -9.5 -0.5 6.5 -10.5 0.5 6.5 -9.5 0.5 6.5 -10.5 0.5 5.5 -9.5 0.5 5.5\n\t\t -10.5 -0.5 5.5 -9.5 -0.5 5.5 -10.5 -0.5 -11.5 -9.5 -0.5 -11.5 -10.5 0.5 -11.5 -9.5 0.5 -11.5\n\t\t -10.5 0.5 -12.5 -9.5 0.5 -12.5 -10.5 -0.5 -12.5 -9.5 -0.5 -12.5 -6.5 -0.5 -11.5 -5.5 -0.5 -11.5\n\t\t -6.5 0.5 -11.5 -5.5 0.5 -11.5 -6.5 0.5 -12.5 -5.5 0.5 -12.5 -6.5 -0.5 -12.5 -5.5 -0.5 -12.5\n\t\t 1.5 -0.5 -11.5 2.5 -0.5 -11.5 1.5 0.5 -11.5 2.5 0.5 -11.5 1.5 0.5 -12.5 2.5 0.5 -12.5\n\t\t 1.5 -0.5 -12.5 2.5 -0.5 -12.5 -12.5 -0.5 -11.5 -11.5 -0.5 -11.5 -12.5 0.5 -11.5 -11.5 0.5 -11.5\n\t\t -12.5 0.5 -12.5 -11.5 0.5 -12.5 -12.5 -0.5 -12.5 -11.5 -0.5 -12.5 -4.5 -0.5 -11.5\n\t\t -3.5 -0.5 -11.5 -4.5 0.5 -11.5 -3.5 0.5 -11.5 -4.5 0.5 -12.5 -3.5 0.5 -12.5 -4.5 -0.5 -12.5\n\t\t -3.5 -0.5 -12.5 -0.5 -0.5 -11.5 0.5 -0.5 -11.5 -0.5 0.5 -11.5 0.5 0.5 -11.5 -0.5 0.5 -12.5\n\t\t 0.5 0.5 -12.5 -0.5 -0.5 -12.5 0.5 -0.5 -12.5;\n\tsetAttr \".vt[664:829]\" -2.5 -0.5 12.5 -1.5 -0.5 12.5 -2.5 0.5 12.5 -1.5 0.5 12.5\n\t\t -2.5 0.5 11.5 -1.5 0.5 11.5 -2.5 -0.5 11.5 -1.5 -0.5 11.5 -0.5 -0.5 10.5 0.5 -0.5 10.5\n\t\t -0.5 0.5 10.5 0.5 0.5 10.5 -0.5 0.5 9.5 0.5 0.5 9.5 -0.5 -0.5 9.5 0.5 -0.5 9.5 9.5 -0.5 8.5\n\t\t 10.5 -0.5 8.5 9.5 0.5 8.5 10.5 0.5 8.5 9.5 0.5 7.5 10.5 0.5 7.5 9.5 -0.5 7.5 10.5 -0.5 7.5\n\t\t 5.5 -0.5 -11.5 6.5 -0.5 -11.5 5.5 0.5 -11.5 6.5 0.5 -11.5 5.5 0.5 -12.5 6.5 0.5 -12.5\n\t\t 5.5 -0.5 -12.5 6.5 -0.5 -12.5 -4.5 -0.5 10.5 -3.5 -0.5 10.5 -4.5 0.5 10.5 -3.5 0.5 10.5\n\t\t -4.5 0.5 9.5 -3.5 0.5 9.5 -4.5 -0.5 9.5 -3.5 -0.5 9.5 1.5 -0.5 10.5 2.5 -0.5 10.5\n\t\t 1.5 0.5 10.5 2.5 0.5 10.5 1.5 0.5 9.5 2.5 0.5 9.5 1.5 -0.5 9.5 2.5 -0.5 9.5 3.5 -0.5 10.5\n\t\t 4.5 -0.5 10.5 3.5 0.5 10.5 4.5 0.5 10.5 3.5 0.5 9.5 4.5 0.5 9.5 3.5 -0.5 9.5 4.5 -0.5 9.5\n\t\t 9.5 -0.5 -11.5 10.5 -0.5 -11.5 9.5 0.5 -11.5 10.5 0.5 -11.5 9.5 0.5 -12.5 10.5 0.5 -12.5\n\t\t 9.5 -0.5 -12.5 10.5 -0.5 -12.5 7.5 -0.5 -11.5 8.5 -0.5 -11.5 7.5 0.5 -11.5 8.5 0.5 -11.5\n\t\t 7.5 0.5 -12.5 8.5 0.5 -12.5 7.5 -0.5 -12.5 8.5 -0.5 -12.5 7.5 -0.5 8.5 8.5 -0.5 8.5\n\t\t 7.5 0.5 8.5 8.5 0.5 8.5 7.5 0.5 7.5 8.5 0.5 7.5 7.5 -0.5 7.5 8.5 -0.5 7.5 11.5 -0.5 8.5\n\t\t 12.5 -0.5 8.5 11.5 0.5 8.5 12.5 0.5 8.5 11.5 0.5 7.5 12.5 0.5 7.5 11.5 -0.5 7.5 12.5 -0.5 7.5\n\t\t -8.5 -0.5 -11.5 -7.5 -0.5 -11.5 -8.5 0.5 -11.5 -7.5 0.5 -11.5 -8.5 0.5 -12.5 -7.5 0.5 -12.5\n\t\t -8.5 -0.5 -12.5 -7.5 -0.5 -12.5 7.5 -0.5 12.5 8.5 -0.5 12.5 7.5 0.5 12.5 8.5 0.5 12.5\n\t\t 7.5 0.5 11.5 8.5 0.5 11.5 7.5 -0.5 11.5 8.5 -0.5 11.5 5.5 -0.5 12.5 6.5 -0.5 12.5\n\t\t 5.5 0.5 12.5 6.5 0.5 12.5 5.5 0.5 11.5 6.5 0.5 11.5 5.5 -0.5 11.5 6.5 -0.5 11.5 -10.5 -0.5 10.5\n\t\t -9.5 -0.5 10.5 -10.5 0.5 10.5 -9.5 0.5 10.5 -10.5 0.5 9.5 -9.5 0.5 9.5 -10.5 -0.5 9.5\n\t\t -9.5 -0.5 9.5 -12.5 -0.5 12.5 -11.5 -0.5 12.5 -12.5 0.5 12.5 -11.5 0.5 12.5 -12.5 0.5 11.5\n\t\t -11.5 0.5 11.5 -12.5 -0.5 11.5 -11.5 -0.5 11.5 -6.5 -0.5 10.5 -5.5 -0.5 10.5 -6.5 0.5 10.5\n\t\t -5.5 0.5 10.5 -6.5 0.5 9.5 -5.5 0.5 9.5 -6.5 -0.5 9.5 -5.5 -0.5 9.5 3.5 -0.5 -11.5\n\t\t 4.5 -0.5 -11.5 3.5 0.5 -11.5 4.5 0.5 -11.5 3.5 0.5 -12.5 4.5 0.5 -12.5 3.5 -0.5 -12.5\n\t\t 4.5 -0.5 -12.5 -12.5 -0.5 10.5 -11.5 -0.5 10.5 -12.5 0.5 10.5 -11.5 0.5 10.5 -12.5 0.5 9.5\n\t\t -11.5 0.5 9.5 -12.5 -0.5 9.5 -11.5 -0.5 9.5 11.5 -0.5 -11.5 12.5 -0.5 -11.5 11.5 0.5 -11.5\n\t\t 12.5 0.5 -11.5 11.5 0.5 -12.5 12.5 0.5 -12.5 11.5 -0.5 -12.5 12.5 -0.5 -12.5 -2.5 -0.5 -11.5\n\t\t -1.5 -0.5 -11.5 -2.5 0.5 -11.5 -1.5 0.5 -11.5 -2.5 0.5 -12.5 -1.5 0.5 -12.5;\n\tsetAttr \".vt[830:995]\" -2.5 -0.5 -12.5 -1.5 -0.5 -12.5 11.5 -0.5 12.5 12.5 -0.5 12.5\n\t\t 11.5 0.5 12.5 12.5 0.5 12.5 11.5 0.5 11.5 12.5 0.5 11.5 11.5 -0.5 11.5 12.5 -0.5 11.5\n\t\t 3.5 -0.5 12.5 4.5 -0.5 12.5 3.5 0.5 12.5 4.5 0.5 12.5 3.5 0.5 11.5 4.5 0.5 11.5 3.5 -0.5 11.5\n\t\t 4.5 -0.5 11.5 -8.5 -0.5 10.5 -7.5 -0.5 10.5 -8.5 0.5 10.5 -7.5 0.5 10.5 -8.5 0.5 9.5\n\t\t -7.5 0.5 9.5 -8.5 -0.5 9.5 -7.5 -0.5 9.5 -4.5 -0.5 12.5 -3.5 -0.5 12.5 -4.5 0.5 12.5\n\t\t -3.5 0.5 12.5 -4.5 0.5 11.5 -3.5 0.5 11.5 -4.5 -0.5 11.5 -3.5 -0.5 11.5 -6.5 -0.5 12.5\n\t\t -5.5 -0.5 12.5 -6.5 0.5 12.5 -5.5 0.5 12.5 -6.5 0.5 11.5 -5.5 0.5 11.5 -6.5 -0.5 11.5\n\t\t -5.5 -0.5 11.5 9.5 -0.5 12.5 10.5 -0.5 12.5 9.5 0.5 12.5 10.5 0.5 12.5 9.5 0.5 11.5\n\t\t 10.5 0.5 11.5 9.5 -0.5 11.5 10.5 -0.5 11.5 -0.5 -0.5 12.5 0.5 -0.5 12.5 -0.5 0.5 12.5\n\t\t 0.5 0.5 12.5 -0.5 0.5 11.5 0.5 0.5 11.5 -0.5 -0.5 11.5 0.5 -0.5 11.5 -10.5 -0.5 12.5\n\t\t -9.5 -0.5 12.5 -10.5 0.5 12.5 -9.5 0.5 12.5 -10.5 0.5 11.5 -9.5 0.5 11.5 -10.5 -0.5 11.5\n\t\t -9.5 -0.5 11.5 -8.5 -0.5 12.5 -7.5 -0.5 12.5 -8.5 0.5 12.5 -7.5 0.5 12.5 -8.5 0.5 11.5\n\t\t -7.5 0.5 11.5 -8.5 -0.5 11.5 -7.5 -0.5 11.5 1.5 -0.5 12.5 2.5 -0.5 12.5 1.5 0.5 12.5\n\t\t 2.5 0.5 12.5 1.5 0.5 11.5 2.5 0.5 11.5 1.5 -0.5 11.5 2.5 -0.5 11.5 9.5 -0.5 -7.5\n\t\t 10.5 -0.5 -7.5 9.5 0.5 -7.5 10.5 0.5 -7.5 9.5 0.5 -8.5 10.5 0.5 -8.5 9.5 -0.5 -8.5\n\t\t 10.5 -0.5 -8.5 7.5 -0.5 -7.5 8.5 -0.5 -7.5 7.5 0.5 -7.5 8.5 0.5 -7.5 7.5 0.5 -8.5\n\t\t 8.5 0.5 -8.5 7.5 -0.5 -8.5 8.5 -0.5 -8.5 11.5 -0.5 -7.5 12.5 -0.5 -7.5 11.5 0.5 -7.5\n\t\t 12.5 0.5 -7.5 11.5 0.5 -8.5 12.5 0.5 -8.5 11.5 -0.5 -8.5 12.5 -0.5 -8.5 -8.5 -0.5 -9.5\n\t\t -7.5 -0.5 -9.5 -8.5 0.5 -9.5 -7.5 0.5 -9.5 -8.5 0.5 -10.5 -7.5 0.5 -10.5 -8.5 -0.5 -10.5\n\t\t -7.5 -0.5 -10.5 5.5 -0.5 -9.5 6.5 -0.5 -9.5 5.5 0.5 -9.5 6.5 0.5 -9.5 5.5 0.5 -10.5\n\t\t 6.5 0.5 -10.5 5.5 -0.5 -10.5 6.5 -0.5 -10.5 5.5 -0.5 -7.5 6.5 -0.5 -7.5 5.5 0.5 -7.5\n\t\t 6.5 0.5 -7.5 5.5 0.5 -8.5 6.5 0.5 -8.5 5.5 -0.5 -8.5 6.5 -0.5 -8.5 9.5 -0.5 -9.5\n\t\t 10.5 -0.5 -9.5 9.5 0.5 -9.5 10.5 0.5 -9.5 9.5 0.5 -10.5 10.5 0.5 -10.5 9.5 -0.5 -10.5\n\t\t 10.5 -0.5 -10.5 7.5 -0.5 -9.5 8.5 -0.5 -9.5 7.5 0.5 -9.5 8.5 0.5 -9.5 7.5 0.5 -10.5\n\t\t 8.5 0.5 -10.5 7.5 -0.5 -10.5 8.5 -0.5 -10.5 11.5 -0.5 -9.5 12.5 -0.5 -9.5 11.5 0.5 -9.5\n\t\t 12.5 0.5 -9.5 11.5 0.5 -10.5 12.5 0.5 -10.5 11.5 -0.5 -10.5 12.5 -0.5 -10.5 -2.5 -0.5 -9.5\n\t\t -1.5 -0.5 -9.5 -2.5 0.5 -9.5 -1.5 0.5 -9.5 -2.5 0.5 -10.5 -1.5 0.5 -10.5 -2.5 -0.5 -10.5\n\t\t -1.5 -0.5 -10.5 3.5 -0.5 -9.5 4.5 -0.5 -9.5 3.5 0.5 -9.5 4.5 0.5 -9.5;\n\tsetAttr \".vt[996:1161]\" 3.5 0.5 -10.5 4.5 0.5 -10.5 3.5 -0.5 -10.5 4.5 -0.5 -10.5\n\t\t -0.5 -0.5 -9.5 0.5 -0.5 -9.5 -0.5 0.5 -9.5 0.5 0.5 -9.5 -0.5 0.5 -10.5 0.5 0.5 -10.5\n\t\t -0.5 -0.5 -10.5 0.5 -0.5 -10.5 -4.5 -0.5 -9.5 -3.5 -0.5 -9.5 -4.5 0.5 -9.5 -3.5 0.5 -9.5\n\t\t -4.5 0.5 -10.5 -3.5 0.5 -10.5 -4.5 -0.5 -10.5 -3.5 -0.5 -10.5 -12.5 -0.5 -9.5 -11.5 -0.5 -9.5\n\t\t -12.5 0.5 -9.5 -11.5 0.5 -9.5 -12.5 0.5 -10.5 -11.5 0.5 -10.5 -12.5 -0.5 -10.5 -11.5 -0.5 -10.5\n\t\t 1.5 -0.5 -9.5 2.5 -0.5 -9.5 1.5 0.5 -9.5 2.5 0.5 -9.5 1.5 0.5 -10.5 2.5 0.5 -10.5\n\t\t 1.5 -0.5 -10.5 2.5 -0.5 -10.5 5.5 -0.5 10.5 6.5 -0.5 10.5 5.5 0.5 10.5 6.5 0.5 10.5\n\t\t 5.5 0.5 9.5 6.5 0.5 9.5 5.5 -0.5 9.5 6.5 -0.5 9.5 11.5 -0.5 10.5 12.5 -0.5 10.5 11.5 0.5 10.5\n\t\t 12.5 0.5 10.5 11.5 0.5 9.5 12.5 0.5 9.5 11.5 -0.5 9.5 12.5 -0.5 9.5 7.5 -0.5 10.5\n\t\t 8.5 -0.5 10.5 7.5 0.5 10.5 8.5 0.5 10.5 7.5 0.5 9.5 8.5 0.5 9.5 7.5 -0.5 9.5 8.5 -0.5 9.5\n\t\t 9.5 -0.5 10.5 10.5 -0.5 10.5 9.5 0.5 10.5 10.5 0.5 10.5 9.5 0.5 9.5 10.5 0.5 9.5\n\t\t 9.5 -0.5 9.5 10.5 -0.5 9.5 -2.5 -0.5 10.5 -1.5 -0.5 10.5 -2.5 0.5 10.5 -1.5 0.5 10.5\n\t\t -2.5 0.5 9.5 -1.5 0.5 9.5 -2.5 -0.5 9.5 -1.5 -0.5 9.5 -12.5 -0.5 6.5 -11.5 -0.5 6.5\n\t\t -12.5 0.5 6.5 -11.5 0.5 6.5 -12.5 0.5 5.5 -11.5 0.5 5.5 -12.5 -0.5 5.5 -11.5 -0.5 5.5\n\t\t 1.5 -0.5 6.5 2.5 -0.5 6.5 1.5 0.5 6.5 2.5 0.5 6.5 1.5 0.5 5.5 2.5 0.5 5.5 1.5 -0.5 5.5\n\t\t 2.5 -0.5 5.5 3.5 -0.5 6.5 4.5 -0.5 6.5 3.5 0.5 6.5 4.5 0.5 6.5 3.5 0.5 5.5 4.5 0.5 5.5\n\t\t 3.5 -0.5 5.5 4.5 -0.5 5.5 -0.5 -0.5 6.5 0.5 -0.5 6.5 -0.5 0.5 6.5 0.5 0.5 6.5 -0.5 0.5 5.5\n\t\t 0.5 0.5 5.5 -0.5 -0.5 5.5 0.5 -0.5 5.5 9.5 -0.5 4.5 10.5 -0.5 4.5 9.5 0.5 4.5 10.5 0.5 4.5\n\t\t 9.5 0.5 3.5 10.5 0.5 3.5 9.5 -0.5 3.5 10.5 -0.5 3.5 7.5 -0.5 4.5 8.5 -0.5 4.5 7.5 0.5 4.5\n\t\t 8.5 0.5 4.5 7.5 0.5 3.5 8.5 0.5 3.5 7.5 -0.5 3.5 8.5 -0.5 3.5 11.5 -0.5 4.5 12.5 -0.5 4.5\n\t\t 11.5 0.5 4.5 12.5 0.5 4.5 11.5 0.5 3.5 12.5 0.5 3.5 11.5 -0.5 3.5 12.5 -0.5 3.5 -8.5 -0.5 2.5\n\t\t -7.5 -0.5 2.5 -8.5 0.5 2.5 -7.5 0.5 2.5 -8.5 0.5 1.5 -7.5 0.5 1.5 -8.5 -0.5 1.5 -7.5 -0.5 1.5\n\t\t -6.5 -0.5 2.5 -5.5 -0.5 2.5 -6.5 0.5 2.5 -5.5 0.5 2.5 -6.5 0.5 1.5 -5.5 0.5 1.5 -6.5 -0.5 1.5\n\t\t -5.5 -0.5 1.5 -4.5 -0.5 6.5 -3.5 -0.5 6.5 -4.5 0.5 6.5 -3.5 0.5 6.5 -4.5 0.5 5.5\n\t\t -3.5 0.5 5.5 -4.5 -0.5 5.5 -3.5 -0.5 5.5 -2.5 -0.5 6.5 -1.5 -0.5 6.5 -2.5 0.5 6.5\n\t\t -1.5 0.5 6.5 -2.5 0.5 5.5 -1.5 0.5 5.5 -2.5 -0.5 5.5 -1.5 -0.5 5.5 9.5 -0.5 6.5 10.5 -0.5 6.5;\n\tsetAttr \".vt[1162:1327]\" 9.5 0.5 6.5 10.5 0.5 6.5 9.5 0.5 5.5 10.5 0.5 5.5 9.5 -0.5 5.5\n\t\t 10.5 -0.5 5.5 7.5 -0.5 6.5 8.5 -0.5 6.5 7.5 0.5 6.5 8.5 0.5 6.5 7.5 0.5 5.5 8.5 0.5 5.5\n\t\t 7.5 -0.5 5.5 8.5 -0.5 5.5 11.5 -0.5 6.5 12.5 -0.5 6.5 11.5 0.5 6.5 12.5 0.5 6.5 11.5 0.5 5.5\n\t\t 12.5 0.5 5.5 11.5 -0.5 5.5 12.5 -0.5 5.5 5.5 -0.5 6.5 6.5 -0.5 6.5 5.5 0.5 6.5 6.5 0.5 6.5\n\t\t 5.5 0.5 5.5 6.5 0.5 5.5 5.5 -0.5 5.5 6.5 -0.5 5.5 -10.5 -0.5 4.5 -9.5 -0.5 4.5 -10.5 0.5 4.5\n\t\t -9.5 0.5 4.5 -10.5 0.5 3.5 -9.5 0.5 3.5 -10.5 -0.5 3.5 -9.5 -0.5 3.5 3.5 -0.5 4.5\n\t\t 4.5 -0.5 4.5 3.5 0.5 4.5 4.5 0.5 4.5 3.5 0.5 3.5 4.5 0.5 3.5 3.5 -0.5 3.5 4.5 -0.5 3.5\n\t\t -12.5 -0.5 4.5 -11.5 -0.5 4.5 -12.5 0.5 4.5 -11.5 0.5 4.5 -12.5 0.5 3.5 -11.5 0.5 3.5\n\t\t -12.5 -0.5 3.5 -11.5 -0.5 3.5 -6.5 -0.5 4.5 -5.5 -0.5 4.5 -6.5 0.5 4.5 -5.5 0.5 4.5\n\t\t -6.5 0.5 3.5 -5.5 0.5 3.5 -6.5 -0.5 3.5 -5.5 -0.5 3.5 -8.5 -0.5 4.5 -7.5 -0.5 4.5\n\t\t -8.5 0.5 4.5 -7.5 0.5 4.5 -8.5 0.5 3.5 -7.5 0.5 3.5 -8.5 -0.5 3.5 -7.5 -0.5 3.5 -0.5 -0.5 4.5\n\t\t 0.5 -0.5 4.5 -0.5 0.5 4.5 0.5 0.5 4.5 -0.5 0.5 3.5 0.5 0.5 3.5 -0.5 -0.5 3.5 0.5 -0.5 3.5\n\t\t 1.5 -0.5 4.5 2.5 -0.5 4.5 1.5 0.5 4.5 2.5 0.5 4.5 1.5 0.5 3.5 2.5 0.5 3.5 1.5 -0.5 3.5\n\t\t 2.5 -0.5 3.5 -4.5 -0.5 4.5 -3.5 -0.5 4.5 -4.5 0.5 4.5 -3.5 0.5 4.5 -4.5 0.5 3.5 -3.5 0.5 3.5\n\t\t -4.5 -0.5 3.5 -3.5 -0.5 3.5 -2.5 -0.5 4.5 -1.5 -0.5 4.5 -2.5 0.5 4.5 -1.5 0.5 4.5\n\t\t -2.5 0.5 3.5 -1.5 0.5 3.5 -2.5 -0.5 3.5 -1.5 -0.5 3.5 -10.5 -0.5 2.5 -9.5 -0.5 2.5\n\t\t -10.5 0.5 2.5 -9.5 0.5 2.5 -10.5 0.5 1.5 -9.5 0.5 1.5 -10.5 -0.5 1.5 -9.5 -0.5 1.5\n\t\t 5.5 -0.5 4.5 6.5 -0.5 4.5 5.5 0.5 4.5 6.5 0.5 4.5 5.5 0.5 3.5 6.5 0.5 3.5 5.5 -0.5 3.5\n\t\t 6.5 -0.5 3.5 5.5 -0.5 2.5 6.5 -0.5 2.5 5.5 0.5 2.5 6.5 0.5 2.5 5.5 0.5 1.5 6.5 0.5 1.5\n\t\t 5.5 -0.5 1.5 6.5 -0.5 1.5 -6.5 -0.5 -9.5 -5.5 -0.5 -9.5 -6.5 0.5 -9.5 -5.5 0.5 -9.5\n\t\t -6.5 0.5 -10.5 -5.5 0.5 -10.5 -6.5 -0.5 -10.5 -5.5 -0.5 -10.5 -10.5 -0.5 -7.5 -9.5 -0.5 -7.5\n\t\t -10.5 0.5 -7.5 -9.5 0.5 -7.5 -10.5 0.5 -8.5 -9.5 0.5 -8.5 -10.5 -0.5 -8.5 -9.5 -0.5 -8.5\n\t\t 3.5 -0.5 -7.5 4.5 -0.5 -7.5 3.5 0.5 -7.5 4.5 0.5 -7.5 3.5 0.5 -8.5 4.5 0.5 -8.5 3.5 -0.5 -8.5\n\t\t 4.5 -0.5 -8.5 -12.5 -0.5 -7.5 -11.5 -0.5 -7.5 -12.5 0.5 -7.5 -11.5 0.5 -7.5 -12.5 0.5 -8.5\n\t\t -11.5 0.5 -8.5 -12.5 -0.5 -8.5 -11.5 -0.5 -8.5 -6.5 -0.5 -7.5 -5.5 -0.5 -7.5 -6.5 0.5 -7.5\n\t\t -5.5 0.5 -7.5 -6.5 0.5 -8.5 -5.5 0.5 -8.5 -6.5 -0.5 -8.5 -5.5 -0.5 -8.5;\n\tsetAttr \".vt[1328:1375]\" -8.5 -0.5 -7.5 -7.5 -0.5 -7.5 -8.5 0.5 -7.5 -7.5 0.5 -7.5\n\t\t -8.5 0.5 -8.5 -7.5 0.5 -8.5 -8.5 -0.5 -8.5 -7.5 -0.5 -8.5 -0.5 -0.5 -7.5 0.5 -0.5 -7.5\n\t\t -0.5 0.5 -7.5 0.5 0.5 -7.5 -0.5 0.5 -8.5 0.5 0.5 -8.5 -0.5 -0.5 -8.5 0.5 -0.5 -8.5\n\t\t 1.5 -0.5 -7.5 2.5 -0.5 -7.5 1.5 0.5 -7.5 2.5 0.5 -7.5 1.5 0.5 -8.5 2.5 0.5 -8.5 1.5 -0.5 -8.5\n\t\t 2.5 -0.5 -8.5 -4.5 -0.5 -7.5 -3.5 -0.5 -7.5 -4.5 0.5 -7.5 -3.5 0.5 -7.5 -4.5 0.5 -8.5\n\t\t -3.5 0.5 -8.5 -4.5 -0.5 -8.5 -3.5 -0.5 -8.5 -2.5 -0.5 -7.5 -1.5 -0.5 -7.5 -2.5 0.5 -7.5\n\t\t -1.5 0.5 -7.5 -2.5 0.5 -8.5 -1.5 0.5 -8.5 -2.5 -0.5 -8.5 -1.5 -0.5 -8.5 -10.5 -0.5 -9.5\n\t\t -9.5 -0.5 -9.5 -10.5 0.5 -9.5 -9.5 0.5 -9.5 -10.5 0.5 -10.5 -9.5 0.5 -10.5 -10.5 -0.5 -10.5\n\t\t -9.5 -0.5 -10.5;\n\tsetAttr -s 2064 \".ed\";\n\tsetAttr \".ed[0:165]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0\n\t\t 5 7 0 6 0 0 7 1 0 8 9 0 10 11 0 12 13 0 14 15 0 8 10 0 9 11 0 10 12 0 11 13 0 12 14 0\n\t\t 13 15 0 14 8 0 15 9 0 16 17 0 18 19 0 20 21 0 22 23 0 16 18 0 17 19 0 18 20 0 19 21 0\n\t\t 20 22 0 21 23 0 22 16 0 23 17 0 24 25 0 26 27 0 28 29 0 30 31 0 24 26 0 25 27 0 26 28 0\n\t\t 27 29 0 28 30 0 29 31 0 30 24 0 31 25 0 32 33 0 34 35 0 36 37 0 38 39 0 32 34 0 33 35 0\n\t\t 34 36 0 35 37 0 36 38 0 37 39 0 38 32 0 39 33 0 40 41 0 42 43 0 44 45 0 46 47 0 40 42 0\n\t\t 41 43 0 42 44 0 43 45 0 44 46 0 45 47 0 46 40 0 47 41 0 48 49 0 50 51 0 52 53 0 54 55 0\n\t\t 48 50 0 49 51 0 50 52 0 51 53 0 52 54 0 53 55 0 54 48 0 55 49 0 56 57 0 58 59 0 60 61 0\n\t\t 62 63 0 56 58 0 57 59 0 58 60 0 59 61 0 60 62 0 61 63 0 62 56 0 63 57 0 64 65 0 66 67 0\n\t\t 68 69 0 70 71 0 64 66 0 65 67 0 66 68 0 67 69 0 68 70 0 69 71 0 70 64 0 71 65 0 72 73 0\n\t\t 74 75 0 76 77 0 78 79 0 72 74 0 73 75 0 74 76 0 75 77 0 76 78 0 77 79 0 78 72 0 79 73 0\n\t\t 80 81 0 82 83 0 84 85 0 86 87 0 80 82 0 81 83 0 82 84 0 83 85 0 84 86 0 85 87 0 86 80 0\n\t\t 87 81 0 88 89 0 90 91 0 92 93 0 94 95 0 88 90 0 89 91 0 90 92 0 91 93 0 92 94 0 93 95 0\n\t\t 94 88 0 95 89 0 96 97 0 98 99 0 100 101 0 102 103 0 96 98 0 97 99 0 98 100 0 99 101 0\n\t\t 100 102 0 101 103 0 102 96 0 103 97 0 104 105 0 106 107 0 108 109 0 110 111 0 104 106 0\n\t\t 105 107 0 106 108 0 107 109 0 108 110 0 109 111 0;\n\tsetAttr \".ed[166:331]\" 110 104 0 111 105 0 112 113 0 114 115 0 116 117 0 118 119 0\n\t\t 112 114 0 113 115 0 114 116 0 115 117 0 116 118 0 117 119 0 118 112 0 119 113 0 120 121 0\n\t\t 122 123 0 124 125 0 126 127 0 120 122 0 121 123 0 122 124 0 123 125 0 124 126 0 125 127 0\n\t\t 126 120 0 127 121 0 128 129 0 130 131 0 132 133 0 134 135 0 128 130 0 129 131 0 130 132 0\n\t\t 131 133 0 132 134 0 133 135 0 134 128 0 135 129 0 136 137 0 138 139 0 140 141 0 142 143 0\n\t\t 136 138 0 137 139 0 138 140 0 139 141 0 140 142 0 141 143 0 142 136 0 143 137 0 144 145 0\n\t\t 146 147 0 148 149 0 150 151 0 144 146 0 145 147 0 146 148 0 147 149 0 148 150 0 149 151 0\n\t\t 150 144 0 151 145 0 152 153 0 154 155 0 156 157 0 158 159 0 152 154 0 153 155 0 154 156 0\n\t\t 155 157 0 156 158 0 157 159 0 158 152 0 159 153 0 160 161 0 162 163 0 164 165 0 166 167 0\n\t\t 160 162 0 161 163 0 162 164 0 163 165 0 164 166 0 165 167 0 166 160 0 167 161 0 168 169 0\n\t\t 170 171 0 172 173 0 174 175 0 168 170 0 169 171 0 170 172 0 171 173 0 172 174 0 173 175 0\n\t\t 174 168 0 175 169 0 176 177 0 178 179 0 180 181 0 182 183 0 176 178 0 177 179 0 178 180 0\n\t\t 179 181 0 180 182 0 181 183 0 182 176 0 183 177 0 184 185 0 186 187 0 188 189 0 190 191 0\n\t\t 184 186 0 185 187 0 186 188 0 187 189 0 188 190 0 189 191 0 190 184 0 191 185 0 192 193 0\n\t\t 194 195 0 196 197 0 198 199 0 192 194 0 193 195 0 194 196 0 195 197 0 196 198 0 197 199 0\n\t\t 198 192 0 199 193 0 200 201 0 202 203 0 204 205 0 206 207 0 200 202 0 201 203 0 202 204 0\n\t\t 203 205 0 204 206 0 205 207 0 206 200 0 207 201 0 208 209 0 210 211 0 212 213 0 214 215 0\n\t\t 208 210 0 209 211 0 210 212 0 211 213 0 212 214 0 213 215 0 214 208 0 215 209 0 216 217 0\n\t\t 218 219 0 220 221 0 222 223 0 216 218 0 217 219 0 218 220 0 219 221 0;\n\tsetAttr \".ed[332:497]\" 220 222 0 221 223 0 222 216 0 223 217 0 224 225 0 226 227 0\n\t\t 228 229 0 230 231 0 224 226 0 225 227 0 226 228 0 227 229 0 228 230 0 229 231 0 230 224 0\n\t\t 231 225 0 232 233 0 234 235 0 236 237 0 238 239 0 232 234 0 233 235 0 234 236 0 235 237 0\n\t\t 236 238 0 237 239 0 238 232 0 239 233 0 240 241 0 242 243 0 244 245 0 246 247 0 240 242 0\n\t\t 241 243 0 242 244 0 243 245 0 244 246 0 245 247 0 246 240 0 247 241 0 248 249 0 250 251 0\n\t\t 252 253 0 254 255 0 248 250 0 249 251 0 250 252 0 251 253 0 252 254 0 253 255 0 254 248 0\n\t\t 255 249 0 256 257 0 258 259 0 260 261 0 262 263 0 256 258 0 257 259 0 258 260 0 259 261 0\n\t\t 260 262 0 261 263 0 262 256 0 263 257 0 264 265 0 266 267 0 268 269 0 270 271 0 264 266 0\n\t\t 265 267 0 266 268 0 267 269 0 268 270 0 269 271 0 270 264 0 271 265 0 272 273 0 274 275 0\n\t\t 276 277 0 278 279 0 272 274 0 273 275 0 274 276 0 275 277 0 276 278 0 277 279 0 278 272 0\n\t\t 279 273 0 280 281 0 282 283 0 284 285 0 286 287 0 280 282 0 281 283 0 282 284 0 283 285 0\n\t\t 284 286 0 285 287 0 286 280 0 287 281 0 288 289 0 290 291 0 292 293 0 294 295 0 288 290 0\n\t\t 289 291 0 290 292 0 291 293 0 292 294 0 293 295 0 294 288 0 295 289 0 296 297 0 298 299 0\n\t\t 300 301 0 302 303 0 296 298 0 297 299 0 298 300 0 299 301 0 300 302 0 301 303 0 302 296 0\n\t\t 303 297 0 304 305 0 306 307 0 308 309 0 310 311 0 304 306 0 305 307 0 306 308 0 307 309 0\n\t\t 308 310 0 309 311 0 310 304 0 311 305 0 312 313 0 314 315 0 316 317 0 318 319 0 312 314 0\n\t\t 313 315 0 314 316 0 315 317 0 316 318 0 317 319 0 318 312 0 319 313 0 320 321 0 322 323 0\n\t\t 324 325 0 326 327 0 320 322 0 321 323 0 322 324 0 323 325 0 324 326 0 325 327 0 326 320 0\n\t\t 327 321 0 328 329 0 330 331 0 332 333 0 334 335 0 328 330 0 329 331 0;\n\tsetAttr \".ed[498:663]\" 330 332 0 331 333 0 332 334 0 333 335 0 334 328 0 335 329 0\n\t\t 336 337 0 338 339 0 340 341 0 342 343 0 336 338 0 337 339 0 338 340 0 339 341 0 340 342 0\n\t\t 341 343 0 342 336 0 343 337 0 344 345 0 346 347 0 348 349 0 350 351 0 344 346 0 345 347 0\n\t\t 346 348 0 347 349 0 348 350 0 349 351 0 350 344 0 351 345 0 352 353 0 354 355 0 356 357 0\n\t\t 358 359 0 352 354 0 353 355 0 354 356 0 355 357 0 356 358 0 357 359 0 358 352 0 359 353 0\n\t\t 360 361 0 362 363 0 364 365 0 366 367 0 360 362 0 361 363 0 362 364 0 363 365 0 364 366 0\n\t\t 365 367 0 366 360 0 367 361 0 368 369 0 370 371 0 372 373 0 374 375 0 368 370 0 369 371 0\n\t\t 370 372 0 371 373 0 372 374 0 373 375 0 374 368 0 375 369 0 376 377 0 378 379 0 380 381 0\n\t\t 382 383 0 376 378 0 377 379 0 378 380 0 379 381 0 380 382 0 381 383 0 382 376 0 383 377 0\n\t\t 384 385 0 386 387 0 388 389 0 390 391 0 384 386 0 385 387 0 386 388 0 387 389 0 388 390 0\n\t\t 389 391 0 390 384 0 391 385 0 392 393 0 394 395 0 396 397 0 398 399 0 392 394 0 393 395 0\n\t\t 394 396 0 395 397 0 396 398 0 397 399 0 398 392 0 399 393 0 400 401 0 402 403 0 404 405 0\n\t\t 406 407 0 400 402 0 401 403 0 402 404 0 403 405 0 404 406 0 405 407 0 406 400 0 407 401 0\n\t\t 408 409 0 410 411 0 412 413 0 414 415 0 408 410 0 409 411 0 410 412 0 411 413 0 412 414 0\n\t\t 413 415 0 414 408 0 415 409 0 416 417 0 418 419 0 420 421 0 422 423 0 416 418 0 417 419 0\n\t\t 418 420 0 419 421 0 420 422 0 421 423 0 422 416 0 423 417 0 424 425 0 426 427 0 428 429 0\n\t\t 430 431 0 424 426 0 425 427 0 426 428 0 427 429 0 428 430 0 429 431 0 430 424 0 431 425 0\n\t\t 432 433 0 434 435 0 436 437 0 438 439 0 432 434 0 433 435 0 434 436 0 435 437 0 436 438 0\n\t\t 437 439 0 438 432 0 439 433 0 440 441 0 442 443 0 444 445 0 446 447 0;\n\tsetAttr \".ed[664:829]\" 440 442 0 441 443 0 442 444 0 443 445 0 444 446 0 445 447 0\n\t\t 446 440 0 447 441 0 448 449 0 450 451 0 452 453 0 454 455 0 448 450 0 449 451 0 450 452 0\n\t\t 451 453 0 452 454 0 453 455 0 454 448 0 455 449 0 456 457 0 458 459 0 460 461 0 462 463 0\n\t\t 456 458 0 457 459 0 458 460 0 459 461 0 460 462 0 461 463 0 462 456 0 463 457 0 464 465 0\n\t\t 466 467 0 468 469 0 470 471 0 464 466 0 465 467 0 466 468 0 467 469 0 468 470 0 469 471 0\n\t\t 470 464 0 471 465 0 472 473 0 474 475 0 476 477 0 478 479 0 472 474 0 473 475 0 474 476 0\n\t\t 475 477 0 476 478 0 477 479 0 478 472 0 479 473 0 480 481 0 482 483 0 484 485 0 486 487 0\n\t\t 480 482 0 481 483 0 482 484 0 483 485 0 484 486 0 485 487 0 486 480 0 487 481 0 488 489 0\n\t\t 490 491 0 492 493 0 494 495 0 488 490 0 489 491 0 490 492 0 491 493 0 492 494 0 493 495 0\n\t\t 494 488 0 495 489 0 496 497 0 498 499 0 500 501 0 502 503 0 496 498 0 497 499 0 498 500 0\n\t\t 499 501 0 500 502 0 501 503 0 502 496 0 503 497 0 504 505 0 506 507 0 508 509 0 510 511 0\n\t\t 504 506 0 505 507 0 506 508 0 507 509 0 508 510 0 509 511 0 510 504 0 511 505 0 512 513 0\n\t\t 514 515 0 516 517 0 518 519 0 512 514 0 513 515 0 514 516 0 515 517 0 516 518 0 517 519 0\n\t\t 518 512 0 519 513 0 520 521 0 522 523 0 524 525 0 526 527 0 520 522 0 521 523 0 522 524 0\n\t\t 523 525 0 524 526 0 525 527 0 526 520 0 527 521 0 528 529 0 530 531 0 532 533 0 534 535 0\n\t\t 528 530 0 529 531 0 530 532 0 531 533 0 532 534 0 533 535 0 534 528 0 535 529 0 536 537 0\n\t\t 538 539 0 540 541 0 542 543 0 536 538 0 537 539 0 538 540 0 539 541 0 540 542 0 541 543 0\n\t\t 542 536 0 543 537 0 544 545 0 546 547 0 548 549 0 550 551 0 544 546 0 545 547 0 546 548 0\n\t\t 547 549 0 548 550 0 549 551 0 550 544 0 551 545 0 552 553 0 554 555 0;\n\tsetAttr \".ed[830:995]\" 556 557 0 558 559 0 552 554 0 553 555 0 554 556 0 555 557 0\n\t\t 556 558 0 557 559 0 558 552 0 559 553 0 560 561 0 562 563 0 564 565 0 566 567 0 560 562 0\n\t\t 561 563 0 562 564 0 563 565 0 564 566 0 565 567 0 566 560 0 567 561 0 568 569 0 570 571 0\n\t\t 572 573 0 574 575 0 568 570 0 569 571 0 570 572 0 571 573 0 572 574 0 573 575 0 574 568 0\n\t\t 575 569 0 576 577 0 578 579 0 580 581 0 582 583 0 576 578 0 577 579 0 578 580 0 579 581 0\n\t\t 580 582 0 581 583 0 582 576 0 583 577 0 584 585 0 586 587 0 588 589 0 590 591 0 584 586 0\n\t\t 585 587 0 586 588 0 587 589 0 588 590 0 589 591 0 590 584 0 591 585 0 592 593 0 594 595 0\n\t\t 596 597 0 598 599 0 592 594 0 593 595 0 594 596 0 595 597 0 596 598 0 597 599 0 598 592 0\n\t\t 599 593 0 600 601 0 602 603 0 604 605 0 606 607 0 600 602 0 601 603 0 602 604 0 603 605 0\n\t\t 604 606 0 605 607 0 606 600 0 607 601 0 608 609 0 610 611 0 612 613 0 614 615 0 608 610 0\n\t\t 609 611 0 610 612 0 611 613 0 612 614 0 613 615 0 614 608 0 615 609 0 616 617 0 618 619 0\n\t\t 620 621 0 622 623 0 616 618 0 617 619 0 618 620 0 619 621 0 620 622 0 621 623 0 622 616 0\n\t\t 623 617 0 624 625 0 626 627 0 628 629 0 630 631 0 624 626 0 625 627 0 626 628 0 627 629 0\n\t\t 628 630 0 629 631 0 630 624 0 631 625 0 632 633 0 634 635 0 636 637 0 638 639 0 632 634 0\n\t\t 633 635 0 634 636 0 635 637 0 636 638 0 637 639 0 638 632 0 639 633 0 640 641 0 642 643 0\n\t\t 644 645 0 646 647 0 640 642 0 641 643 0 642 644 0 643 645 0 644 646 0 645 647 0 646 640 0\n\t\t 647 641 0 648 649 0 650 651 0 652 653 0 654 655 0 648 650 0 649 651 0 650 652 0 651 653 0\n\t\t 652 654 0 653 655 0 654 648 0 655 649 0 656 657 0 658 659 0 660 661 0 662 663 0 656 658 0\n\t\t 657 659 0 658 660 0 659 661 0 660 662 0 661 663 0 662 656 0 663 657 0;\n\tsetAttr \".ed[996:1161]\" 664 665 0 666 667 0 668 669 0 670 671 0 664 666 0 665 667 0\n\t\t 666 668 0 667 669 0 668 670 0 669 671 0 670 664 0 671 665 0 672 673 0 674 675 0 676 677 0\n\t\t 678 679 0 672 674 0 673 675 0 674 676 0 675 677 0 676 678 0 677 679 0 678 672 0 679 673 0\n\t\t 680 681 0 682 683 0 684 685 0 686 687 0 680 682 0 681 683 0 682 684 0 683 685 0 684 686 0\n\t\t 685 687 0 686 680 0 687 681 0 688 689 0 690 691 0 692 693 0 694 695 0 688 690 0 689 691 0\n\t\t 690 692 0 691 693 0 692 694 0 693 695 0 694 688 0 695 689 0 696 697 0 698 699 0 700 701 0\n\t\t 702 703 0 696 698 0 697 699 0 698 700 0 699 701 0 700 702 0 701 703 0 702 696 0 703 697 0\n\t\t 704 705 0 706 707 0 708 709 0 710 711 0 704 706 0 705 707 0 706 708 0 707 709 0 708 710 0\n\t\t 709 711 0 710 704 0 711 705 0 712 713 0 714 715 0 716 717 0 718 719 0 712 714 0 713 715 0\n\t\t 714 716 0 715 717 0 716 718 0 717 719 0 718 712 0 719 713 0 720 721 0 722 723 0 724 725 0\n\t\t 726 727 0 720 722 0 721 723 0 722 724 0 723 725 0 724 726 0 725 727 0 726 720 0 727 721 0\n\t\t 728 729 0 730 731 0 732 733 0 734 735 0 728 730 0 729 731 0 730 732 0 731 733 0 732 734 0\n\t\t 733 735 0 734 728 0 735 729 0 736 737 0 738 739 0 740 741 0 742 743 0 736 738 0 737 739 0\n\t\t 738 740 0 739 741 0 740 742 0 741 743 0 742 736 0 743 737 0 744 745 0 746 747 0 748 749 0\n\t\t 750 751 0 744 746 0 745 747 0 746 748 0 747 749 0 748 750 0 749 751 0 750 744 0 751 745 0\n\t\t 752 753 0 754 755 0 756 757 0 758 759 0 752 754 0 753 755 0 754 756 0 755 757 0 756 758 0\n\t\t 757 759 0 758 752 0 759 753 0 760 761 0 762 763 0 764 765 0 766 767 0 760 762 0 761 763 0\n\t\t 762 764 0 763 765 0 764 766 0 765 767 0 766 760 0 767 761 0 768 769 0 770 771 0 772 773 0\n\t\t 774 775 0 768 770 0 769 771 0 770 772 0 771 773 0 772 774 0 773 775 0;\n\tsetAttr \".ed[1162:1327]\" 774 768 0 775 769 0 776 777 0 778 779 0 780 781 0 782 783 0\n\t\t 776 778 0 777 779 0 778 780 0 779 781 0 780 782 0 781 783 0 782 776 0 783 777 0 784 785 0\n\t\t 786 787 0 788 789 0 790 791 0 784 786 0 785 787 0 786 788 0 787 789 0 788 790 0 789 791 0\n\t\t 790 784 0 791 785 0 792 793 0 794 795 0 796 797 0 798 799 0 792 794 0 793 795 0 794 796 0\n\t\t 795 797 0 796 798 0 797 799 0 798 792 0 799 793 0 800 801 0 802 803 0 804 805 0 806 807 0\n\t\t 800 802 0 801 803 0 802 804 0 803 805 0 804 806 0 805 807 0 806 800 0 807 801 0 808 809 0\n\t\t 810 811 0 812 813 0 814 815 0 808 810 0 809 811 0 810 812 0 811 813 0 812 814 0 813 815 0\n\t\t 814 808 0 815 809 0 816 817 0 818 819 0 820 821 0 822 823 0 816 818 0 817 819 0 818 820 0\n\t\t 819 821 0 820 822 0 821 823 0 822 816 0 823 817 0 824 825 0 826 827 0 828 829 0 830 831 0\n\t\t 824 826 0 825 827 0 826 828 0 827 829 0 828 830 0 829 831 0 830 824 0 831 825 0 832 833 0\n\t\t 834 835 0 836 837 0 838 839 0 832 834 0 833 835 0 834 836 0 835 837 0 836 838 0 837 839 0\n\t\t 838 832 0 839 833 0 840 841 0 842 843 0 844 845 0 846 847 0 840 842 0 841 843 0 842 844 0\n\t\t 843 845 0 844 846 0 845 847 0 846 840 0 847 841 0 848 849 0 850 851 0 852 853 0 854 855 0\n\t\t 848 850 0 849 851 0 850 852 0 851 853 0 852 854 0 853 855 0 854 848 0 855 849 0 856 857 0\n\t\t 858 859 0 860 861 0 862 863 0 856 858 0 857 859 0 858 860 0 859 861 0 860 862 0 861 863 0\n\t\t 862 856 0 863 857 0 864 865 0 866 867 0 868 869 0 870 871 0 864 866 0 865 867 0 866 868 0\n\t\t 867 869 0 868 870 0 869 871 0 870 864 0 871 865 0 872 873 0 874 875 0 876 877 0 878 879 0\n\t\t 872 874 0 873 875 0 874 876 0 875 877 0 876 878 0 877 879 0 878 872 0 879 873 0 880 881 0\n\t\t 882 883 0 884 885 0 886 887 0 880 882 0 881 883 0 882 884 0 883 885 0;\n\tsetAttr \".ed[1328:1493]\" 884 886 0 885 887 0 886 880 0 887 881 0 888 889 0 890 891 0\n\t\t 892 893 0 894 895 0 888 890 0 889 891 0 890 892 0 891 893 0 892 894 0 893 895 0 894 888 0\n\t\t 895 889 0 896 897 0 898 899 0 900 901 0 902 903 0 896 898 0 897 899 0 898 900 0 899 901 0\n\t\t 900 902 0 901 903 0 902 896 0 903 897 0 904 905 0 906 907 0 908 909 0 910 911 0 904 906 0\n\t\t 905 907 0 906 908 0 907 909 0 908 910 0 909 911 0 910 904 0 911 905 0 912 913 0 914 915 0\n\t\t 916 917 0 918 919 0 912 914 0 913 915 0 914 916 0 915 917 0 916 918 0 917 919 0 918 912 0\n\t\t 919 913 0 920 921 0 922 923 0 924 925 0 926 927 0 920 922 0 921 923 0 922 924 0 923 925 0\n\t\t 924 926 0 925 927 0 926 920 0 927 921 0 928 929 0 930 931 0 932 933 0 934 935 0 928 930 0\n\t\t 929 931 0 930 932 0 931 933 0 932 934 0 933 935 0 934 928 0 935 929 0 936 937 0 938 939 0\n\t\t 940 941 0 942 943 0 936 938 0 937 939 0 938 940 0 939 941 0 940 942 0 941 943 0 942 936 0\n\t\t 943 937 0 944 945 0 946 947 0 948 949 0 950 951 0 944 946 0 945 947 0 946 948 0 947 949 0\n\t\t 948 950 0 949 951 0 950 944 0 951 945 0 952 953 0 954 955 0 956 957 0 958 959 0 952 954 0\n\t\t 953 955 0 954 956 0 955 957 0 956 958 0 957 959 0 958 952 0 959 953 0 960 961 0 962 963 0\n\t\t 964 965 0 966 967 0 960 962 0 961 963 0 962 964 0 963 965 0 964 966 0 965 967 0 966 960 0\n\t\t 967 961 0 968 969 0 970 971 0 972 973 0 974 975 0 968 970 0 969 971 0 970 972 0 971 973 0\n\t\t 972 974 0 973 975 0 974 968 0 975 969 0 976 977 0 978 979 0 980 981 0 982 983 0 976 978 0\n\t\t 977 979 0 978 980 0 979 981 0 980 982 0 981 983 0 982 976 0 983 977 0 984 985 0 986 987 0\n\t\t 988 989 0 990 991 0 984 986 0 985 987 0 986 988 0 987 989 0 988 990 0 989 991 0 990 984 0\n\t\t 991 985 0 992 993 0 994 995 0 996 997 0 998 999 0 992 994 0 993 995 0;\n\tsetAttr \".ed[1494:1659]\" 994 996 0 995 997 0 996 998 0 997 999 0 998 992 0 999 993 0\n\t\t 1000 1001 0 1002 1003 0 1004 1005 0 1006 1007 0 1000 1002 0 1001 1003 0 1002 1004 0\n\t\t 1003 1005 0 1004 1006 0 1005 1007 0 1006 1000 0 1007 1001 0 1008 1009 0 1010 1011 0\n\t\t 1012 1013 0 1014 1015 0 1008 1010 0 1009 1011 0 1010 1012 0 1011 1013 0 1012 1014 0\n\t\t 1013 1015 0 1014 1008 0 1015 1009 0 1016 1017 0 1018 1019 0 1020 1021 0 1022 1023 0\n\t\t 1016 1018 0 1017 1019 0 1018 1020 0 1019 1021 0 1020 1022 0 1021 1023 0 1022 1016 0\n\t\t 1023 1017 0 1024 1025 0 1026 1027 0 1028 1029 0 1030 1031 0 1024 1026 0 1025 1027 0\n\t\t 1026 1028 0 1027 1029 0 1028 1030 0 1029 1031 0 1030 1024 0 1031 1025 0 1032 1033 0\n\t\t 1034 1035 0 1036 1037 0 1038 1039 0 1032 1034 0 1033 1035 0 1034 1036 0 1035 1037 0\n\t\t 1036 1038 0 1037 1039 0 1038 1032 0 1039 1033 0 1040 1041 0 1042 1043 0 1044 1045 0\n\t\t 1046 1047 0 1040 1042 0 1041 1043 0 1042 1044 0 1043 1045 0 1044 1046 0 1045 1047 0\n\t\t 1046 1040 0 1047 1041 0 1048 1049 0 1050 1051 0 1052 1053 0 1054 1055 0 1048 1050 0\n\t\t 1049 1051 0 1050 1052 0 1051 1053 0 1052 1054 0 1053 1055 0 1054 1048 0 1055 1049 0\n\t\t 1056 1057 0 1058 1059 0 1060 1061 0 1062 1063 0 1056 1058 0 1057 1059 0 1058 1060 0\n\t\t 1059 1061 0 1060 1062 0 1061 1063 0 1062 1056 0 1063 1057 0 1064 1065 0 1066 1067 0\n\t\t 1068 1069 0 1070 1071 0 1064 1066 0 1065 1067 0 1066 1068 0 1067 1069 0 1068 1070 0\n\t\t 1069 1071 0 1070 1064 0 1071 1065 0 1072 1073 0 1074 1075 0 1076 1077 0 1078 1079 0\n\t\t 1072 1074 0 1073 1075 0 1074 1076 0 1075 1077 0 1076 1078 0 1077 1079 0 1078 1072 0\n\t\t 1079 1073 0 1080 1081 0 1082 1083 0 1084 1085 0 1086 1087 0 1080 1082 0 1081 1083 0\n\t\t 1082 1084 0 1083 1085 0 1084 1086 0 1085 1087 0 1086 1080 0 1087 1081 0 1088 1089 0\n\t\t 1090 1091 0 1092 1093 0 1094 1095 0 1088 1090 0 1089 1091 0 1090 1092 0 1091 1093 0\n\t\t 1092 1094 0 1093 1095 0 1094 1088 0 1095 1089 0 1096 1097 0 1098 1099 0 1100 1101 0\n\t\t 1102 1103 0 1096 1098 0 1097 1099 0 1098 1100 0 1099 1101 0 1100 1102 0 1101 1103 0\n\t\t 1102 1096 0 1103 1097 0 1104 1105 0 1106 1107 0 1108 1109 0 1110 1111 0;\n\tsetAttr \".ed[1660:1825]\" 1104 1106 0 1105 1107 0 1106 1108 0 1107 1109 0 1108 1110 0\n\t\t 1109 1111 0 1110 1104 0 1111 1105 0 1112 1113 0 1114 1115 0 1116 1117 0 1118 1119 0\n\t\t 1112 1114 0 1113 1115 0 1114 1116 0 1115 1117 0 1116 1118 0 1117 1119 0 1118 1112 0\n\t\t 1119 1113 0 1120 1121 0 1122 1123 0 1124 1125 0 1126 1127 0 1120 1122 0 1121 1123 0\n\t\t 1122 1124 0 1123 1125 0 1124 1126 0 1125 1127 0 1126 1120 0 1127 1121 0 1128 1129 0\n\t\t 1130 1131 0 1132 1133 0 1134 1135 0 1128 1130 0 1129 1131 0 1130 1132 0 1131 1133 0\n\t\t 1132 1134 0 1133 1135 0 1134 1128 0 1135 1129 0 1136 1137 0 1138 1139 0 1140 1141 0\n\t\t 1142 1143 0 1136 1138 0 1137 1139 0 1138 1140 0 1139 1141 0 1140 1142 0 1141 1143 0\n\t\t 1142 1136 0 1143 1137 0 1144 1145 0 1146 1147 0 1148 1149 0 1150 1151 0 1144 1146 0\n\t\t 1145 1147 0 1146 1148 0 1147 1149 0 1148 1150 0 1149 1151 0 1150 1144 0 1151 1145 0\n\t\t 1152 1153 0 1154 1155 0 1156 1157 0 1158 1159 0 1152 1154 0 1153 1155 0 1154 1156 0\n\t\t 1155 1157 0 1156 1158 0 1157 1159 0 1158 1152 0 1159 1153 0 1160 1161 0 1162 1163 0\n\t\t 1164 1165 0 1166 1167 0 1160 1162 0 1161 1163 0 1162 1164 0 1163 1165 0 1164 1166 0\n\t\t 1165 1167 0 1166 1160 0 1167 1161 0 1168 1169 0 1170 1171 0 1172 1173 0 1174 1175 0\n\t\t 1168 1170 0 1169 1171 0 1170 1172 0 1171 1173 0 1172 1174 0 1173 1175 0 1174 1168 0\n\t\t 1175 1169 0 1176 1177 0 1178 1179 0 1180 1181 0 1182 1183 0 1176 1178 0 1177 1179 0\n\t\t 1178 1180 0 1179 1181 0 1180 1182 0 1181 1183 0 1182 1176 0 1183 1177 0 1184 1185 0\n\t\t 1186 1187 0 1188 1189 0 1190 1191 0 1184 1186 0 1185 1187 0 1186 1188 0 1187 1189 0\n\t\t 1188 1190 0 1189 1191 0 1190 1184 0 1191 1185 0 1192 1193 0 1194 1195 0 1196 1197 0\n\t\t 1198 1199 0 1192 1194 0 1193 1195 0 1194 1196 0 1195 1197 0 1196 1198 0 1197 1199 0\n\t\t 1198 1192 0 1199 1193 0 1200 1201 0 1202 1203 0 1204 1205 0 1206 1207 0 1200 1202 0\n\t\t 1201 1203 0 1202 1204 0 1203 1205 0 1204 1206 0 1205 1207 0 1206 1200 0 1207 1201 0\n\t\t 1208 1209 0 1210 1211 0 1212 1213 0 1214 1215 0 1208 1210 0 1209 1211 0 1210 1212 0\n\t\t 1211 1213 0 1212 1214 0 1213 1215 0 1214 1208 0 1215 1209 0 1216 1217 0 1218 1219 0;\n\tsetAttr \".ed[1826:1991]\" 1220 1221 0 1222 1223 0 1216 1218 0 1217 1219 0 1218 1220 0\n\t\t 1219 1221 0 1220 1222 0 1221 1223 0 1222 1216 0 1223 1217 0 1224 1225 0 1226 1227 0\n\t\t 1228 1229 0 1230 1231 0 1224 1226 0 1225 1227 0 1226 1228 0 1227 1229 0 1228 1230 0\n\t\t 1229 1231 0 1230 1224 0 1231 1225 0 1232 1233 0 1234 1235 0 1236 1237 0 1238 1239 0\n\t\t 1232 1234 0 1233 1235 0 1234 1236 0 1235 1237 0 1236 1238 0 1237 1239 0 1238 1232 0\n\t\t 1239 1233 0 1240 1241 0 1242 1243 0 1244 1245 0 1246 1247 0 1240 1242 0 1241 1243 0\n\t\t 1242 1244 0 1243 1245 0 1244 1246 0 1245 1247 0 1246 1240 0 1247 1241 0 1248 1249 0\n\t\t 1250 1251 0 1252 1253 0 1254 1255 0 1248 1250 0 1249 1251 0 1250 1252 0 1251 1253 0\n\t\t 1252 1254 0 1253 1255 0 1254 1248 0 1255 1249 0 1256 1257 0 1258 1259 0 1260 1261 0\n\t\t 1262 1263 0 1256 1258 0 1257 1259 0 1258 1260 0 1259 1261 0 1260 1262 0 1261 1263 0\n\t\t 1262 1256 0 1263 1257 0 1264 1265 0 1266 1267 0 1268 1269 0 1270 1271 0 1264 1266 0\n\t\t 1265 1267 0 1266 1268 0 1267 1269 0 1268 1270 0 1269 1271 0 1270 1264 0 1271 1265 0\n\t\t 1272 1273 0 1274 1275 0 1276 1277 0 1278 1279 0 1272 1274 0 1273 1275 0 1274 1276 0\n\t\t 1275 1277 0 1276 1278 0 1277 1279 0 1278 1272 0 1279 1273 0 1280 1281 0 1282 1283 0\n\t\t 1284 1285 0 1286 1287 0 1280 1282 0 1281 1283 0 1282 1284 0 1283 1285 0 1284 1286 0\n\t\t 1285 1287 0 1286 1280 0 1287 1281 0 1288 1289 0 1290 1291 0 1292 1293 0 1294 1295 0\n\t\t 1288 1290 0 1289 1291 0 1290 1292 0 1291 1293 0 1292 1294 0 1293 1295 0 1294 1288 0\n\t\t 1295 1289 0 1296 1297 0 1298 1299 0 1300 1301 0 1302 1303 0 1296 1298 0 1297 1299 0\n\t\t 1298 1300 0 1299 1301 0 1300 1302 0 1301 1303 0 1302 1296 0 1303 1297 0 1304 1305 0\n\t\t 1306 1307 0 1308 1309 0 1310 1311 0 1304 1306 0 1305 1307 0 1306 1308 0 1307 1309 0\n\t\t 1308 1310 0 1309 1311 0 1310 1304 0 1311 1305 0 1312 1313 0 1314 1315 0 1316 1317 0\n\t\t 1318 1319 0 1312 1314 0 1313 1315 0 1314 1316 0 1315 1317 0 1316 1318 0 1317 1319 0\n\t\t 1318 1312 0 1319 1313 0 1320 1321 0 1322 1323 0 1324 1325 0 1326 1327 0 1320 1322 0\n\t\t 1321 1323 0 1322 1324 0 1323 1325 0 1324 1326 0 1325 1327 0 1326 1320 0 1327 1321 0;\n\tsetAttr \".ed[1992:2063]\" 1328 1329 0 1330 1331 0 1332 1333 0 1334 1335 0 1328 1330 0\n\t\t 1329 1331 0 1330 1332 0 1331 1333 0 1332 1334 0 1333 1335 0 1334 1328 0 1335 1329 0\n\t\t 1336 1337 0 1338 1339 0 1340 1341 0 1342 1343 0 1336 1338 0 1337 1339 0 1338 1340 0\n\t\t 1339 1341 0 1340 1342 0 1341 1343 0 1342 1336 0 1343 1337 0 1344 1345 0 1346 1347 0\n\t\t 1348 1349 0 1350 1351 0 1344 1346 0 1345 1347 0 1346 1348 0 1347 1349 0 1348 1350 0\n\t\t 1349 1351 0 1350 1344 0 1351 1345 0 1352 1353 0 1354 1355 0 1356 1357 0 1358 1359 0\n\t\t 1352 1354 0 1353 1355 0 1354 1356 0 1355 1357 0 1356 1358 0 1357 1359 0 1358 1352 0\n\t\t 1359 1353 0 1360 1361 0 1362 1363 0 1364 1365 0 1366 1367 0 1360 1362 0 1361 1363 0\n\t\t 1362 1364 0 1363 1365 0 1364 1366 0 1365 1367 0 1366 1360 0 1367 1361 0 1368 1369 0\n\t\t 1370 1371 0 1372 1373 0 1374 1375 0 1368 1370 0 1369 1371 0 1370 1372 0 1371 1373 0\n\t\t 1372 1374 0 1373 1375 0 1374 1368 0 1375 1369 0;\n\tsetAttr -s 1032 -ch 4128 \".fc\";\n\tsetAttr \".fc[0:499]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13\n\t\tf 4 12 17 -14 -17\n\t\tmu 0 4 14 15 16 17\n\t\tf 4 13 19 -15 -19\n\t\tmu 0 4 17 16 18 19\n\t\tf 4 14 21 -16 -21\n\t\tmu 0 4 19 18 20 21\n\t\tf 4 15 23 -13 -23\n\t\tmu 0 4 21 20 22 23\n\t\tf 4 -24 -22 -20 -18\n\t\tmu 0 4 15 24 25 16\n\t\tf 4 22 16 18 20\n\t\tmu 0 4 26 14 17 27\n\t\tf 4 24 29 -26 -29\n\t\tmu 0 4 28 29 30 31\n\t\tf 4 25 31 -27 -31\n\t\tmu 0 4 31 30 32 33\n\t\tf 4 26 33 -28 -33\n\t\tmu 0 4 33 32 34 35\n\t\tf 4 27 35 -25 -35\n\t\tmu 0 4 35 34 36 37\n\t\tf 4 -36 -34 -32 -30\n\t\tmu 0 4 29 38 39 30\n\t\tf 4 34 28 30 32\n\t\tmu 0 4 40 28 31 41\n\t\tf 4 36 41 -38 -41\n\t\tmu 0 4 42 43 44 45\n\t\tf 4 37 43 -39 -43\n\t\tmu 0 4 45 44 46 47\n\t\tf 4 38 45 -40 -45\n\t\tmu 0 4 47 46 48 49\n\t\tf 4 39 47 -37 -47\n\t\tmu 0 4 49 48 50 51\n\t\tf 4 -48 -46 -44 -42\n\t\tmu 0 4 43 52 53 44\n\t\tf 4 46 40 42 44\n\t\tmu 0 4 54 42 45 55\n\t\tf 4 48 53 -50 -53\n\t\tmu 0 4 56 57 58 59\n\t\tf 4 49 55 -51 -55\n\t\tmu 0 4 59 58 60 61\n\t\tf 4 50 57 -52 -57\n\t\tmu 0 4 61 60 62 63\n\t\tf 4 51 59 -49 -59\n\t\tmu 0 4 63 62 64 65\n\t\tf 4 -60 -58 -56 -54\n\t\tmu 0 4 57 66 67 58\n\t\tf 4 58 52 54 56\n\t\tmu 0 4 68 56 59 69\n\t\tf 4 60 65 -62 -65\n\t\tmu 0 4 70 71 72 73\n\t\tf 4 61 67 -63 -67\n\t\tmu 0 4 73 72 74 75\n\t\tf 4 62 69 -64 -69\n\t\tmu 0 4 75 74 76 77\n\t\tf 4 63 71 -61 -71\n\t\tmu 0 4 77 76 78 79\n\t\tf 4 -72 -70 -68 -66\n\t\tmu 0 4 71 80 81 72\n\t\tf 4 70 64 66 68\n\t\tmu 0 4 82 70 73 83\n\t\tf 4 72 77 -74 -77\n\t\tmu 0 4 84 85 86 87\n\t\tf 4 73 79 -75 -79\n\t\tmu 0 4 87 86 88 89\n\t\tf 4 74 81 -76 -81\n\t\tmu 0 4 89 88 90 91\n\t\tf 4 75 83 -73 -83\n\t\tmu 0 4 91 90 92 93\n\t\tf 4 -84 -82 -80 -78\n\t\tmu 0 4 85 94 95 86\n\t\tf 4 82 76 78 80\n\t\tmu 0 4 96 84 87 97\n\t\tf 4 84 89 -86 -89\n\t\tmu 0 4 98 99 100 101\n\t\tf 4 85 91 -87 -91\n\t\tmu 0 4 101 100 102 103\n\t\tf 4 86 93 -88 -93\n\t\tmu 0 4 103 102 104 105\n\t\tf 4 87 95 -85 -95\n\t\tmu 0 4 105 104 106 107\n\t\tf 4 -96 -94 -92 -90\n\t\tmu 0 4 99 108 109 100\n\t\tf 4 94 88 90 92\n\t\tmu 0 4 110 98 101 111\n\t\tf 4 96 101 -98 -101\n\t\tmu 0 4 112 113 114 115\n\t\tf 4 97 103 -99 -103\n\t\tmu 0 4 115 114 116 117\n\t\tf 4 98 105 -100 -105\n\t\tmu 0 4 117 116 118 119\n\t\tf 4 99 107 -97 -107\n\t\tmu 0 4 119 118 120 121\n\t\tf 4 -108 -106 -104 -102\n\t\tmu 0 4 113 122 123 114\n\t\tf 4 106 100 102 104\n\t\tmu 0 4 124 112 115 125\n\t\tf 4 108 113 -110 -113\n\t\tmu 0 4 126 127 128 129\n\t\tf 4 109 115 -111 -115\n\t\tmu 0 4 129 128 130 131\n\t\tf 4 110 117 -112 -117\n\t\tmu 0 4 131 130 132 133\n\t\tf 4 111 119 -109 -119\n\t\tmu 0 4 133 132 134 135\n\t\tf 4 -120 -118 -116 -114\n\t\tmu 0 4 127 136 137 128\n\t\tf 4 118 112 114 116\n\t\tmu 0 4 138 126 129 139\n\t\tf 4 120 125 -122 -125\n\t\tmu 0 4 140 141 142 143\n\t\tf 4 121 127 -123 -127\n\t\tmu 0 4 143 142 144 145\n\t\tf 4 122 129 -124 -129\n\t\tmu 0 4 145 144 146 147\n\t\tf 4 123 131 -121 -131\n\t\tmu 0 4 147 146 148 149\n\t\tf 4 -132 -130 -128 -126\n\t\tmu 0 4 141 150 151 142\n\t\tf 4 130 124 126 128\n\t\tmu 0 4 152 140 143 153\n\t\tf 4 132 137 -134 -137\n\t\tmu 0 4 154 155 156 157\n\t\tf 4 133 139 -135 -139\n\t\tmu 0 4 157 156 158 159\n\t\tf 4 134 141 -136 -141\n\t\tmu 0 4 159 158 160 161\n\t\tf 4 135 143 -133 -143\n\t\tmu 0 4 161 160 162 163\n\t\tf 4 -144 -142 -140 -138\n\t\tmu 0 4 155 164 165 156\n\t\tf 4 142 136 138 140\n\t\tmu 0 4 166 154 157 167\n\t\tf 4 144 149 -146 -149\n\t\tmu 0 4 168 169 170 171\n\t\tf 4 145 151 -147 -151\n\t\tmu 0 4 171 170 172 173\n\t\tf 4 146 153 -148 -153\n\t\tmu 0 4 173 172 174 175\n\t\tf 4 147 155 -145 -155\n\t\tmu 0 4 175 174 176 177\n\t\tf 4 -156 -154 -152 -150\n\t\tmu 0 4 169 178 179 170\n\t\tf 4 154 148 150 152\n\t\tmu 0 4 180 168 171 181\n\t\tf 4 156 161 -158 -161\n\t\tmu 0 4 182 183 184 185\n\t\tf 4 157 163 -159 -163\n\t\tmu 0 4 185 184 186 187\n\t\tf 4 158 165 -160 -165\n\t\tmu 0 4 187 186 188 189\n\t\tf 4 159 167 -157 -167\n\t\tmu 0 4 189 188 190 191\n\t\tf 4 -168 -166 -164 -162\n\t\tmu 0 4 183 192 193 184\n\t\tf 4 166 160 162 164\n\t\tmu 0 4 194 182 185 195\n\t\tf 4 168 173 -170 -173\n\t\tmu 0 4 196 197 198 199\n\t\tf 4 169 175 -171 -175\n\t\tmu 0 4 199 198 200 201\n\t\tf 4 170 177 -172 -177\n\t\tmu 0 4 201 200 202 203\n\t\tf 4 171 179 -169 -179\n\t\tmu 0 4 203 202 204 205\n\t\tf 4 -180 -178 -176 -174\n\t\tmu 0 4 197 206 207 198\n\t\tf 4 178 172 174 176\n\t\tmu 0 4 208 196 199 209\n\t\tf 4 180 185 -182 -185\n\t\tmu 0 4 210 211 212 213\n\t\tf 4 181 187 -183 -187\n\t\tmu 0 4 213 212 214 215\n\t\tf 4 182 189 -184 -189\n\t\tmu 0 4 215 214 216 217\n\t\tf 4 183 191 -181 -191\n\t\tmu 0 4 217 216 218 219\n\t\tf 4 -192 -190 -188 -186\n\t\tmu 0 4 211 220 221 212\n\t\tf 4 190 184 186 188\n\t\tmu 0 4 222 210 213 223\n\t\tf 4 192 197 -194 -197\n\t\tmu 0 4 224 225 226 227\n\t\tf 4 193 199 -195 -199\n\t\tmu 0 4 227 226 228 229\n\t\tf 4 194 201 -196 -201\n\t\tmu 0 4 229 228 230 231\n\t\tf 4 195 203 -193 -203\n\t\tmu 0 4 231 230 232 233\n\t\tf 4 -204 -202 -200 -198\n\t\tmu 0 4 225 234 235 226\n\t\tf 4 202 196 198 200\n\t\tmu 0 4 236 224 227 237\n\t\tf 4 204 209 -206 -209\n\t\tmu 0 4 238 239 240 241\n\t\tf 4 205 211 -207 -211\n\t\tmu 0 4 241 240 242 243\n\t\tf 4 206 213 -208 -213\n\t\tmu 0 4 243 242 244 245\n\t\tf 4 207 215 -205 -215\n\t\tmu 0 4 245 244 246 247\n\t\tf 4 -216 -214 -212 -210\n\t\tmu 0 4 239 248 249 240\n\t\tf 4 214 208 210 212\n\t\tmu 0 4 250 238 241 251\n\t\tf 4 216 221 -218 -221\n\t\tmu 0 4 252 253 254 255\n\t\tf 4 217 223 -219 -223\n\t\tmu 0 4 255 254 256 257\n\t\tf 4 218 225 -220 -225\n\t\tmu 0 4 257 256 258 259\n\t\tf 4 219 227 -217 -227\n\t\tmu 0 4 259 258 260 261\n\t\tf 4 -228 -226 -224 -222\n\t\tmu 0 4 253 262 263 254\n\t\tf 4 226 220 222 224\n\t\tmu 0 4 264 252 255 265\n\t\tf 4 228 233 -230 -233\n\t\tmu 0 4 266 267 268 269\n\t\tf 4 229 235 -231 -235\n\t\tmu 0 4 269 268 270 271\n\t\tf 4 230 237 -232 -237\n\t\tmu 0 4 271 270 272 273\n\t\tf 4 231 239 -229 -239\n\t\tmu 0 4 273 272 274 275\n\t\tf 4 -240 -238 -236 -234\n\t\tmu 0 4 267 276 277 268\n\t\tf 4 238 232 234 236\n\t\tmu 0 4 278 266 269 279\n\t\tf 4 240 245 -242 -245\n\t\tmu 0 4 280 281 282 283\n\t\tf 4 241 247 -243 -247\n\t\tmu 0 4 283 282 284 285\n\t\tf 4 242 249 -244 -249\n\t\tmu 0 4 285 284 286 287\n\t\tf 4 243 251 -241 -251\n\t\tmu 0 4 287 286 288 289\n\t\tf 4 -252 -250 -248 -246\n\t\tmu 0 4 281 290 291 282\n\t\tf 4 250 244 246 248\n\t\tmu 0 4 292 280 283 293\n\t\tf 4 252 257 -254 -257\n\t\tmu 0 4 294 295 296 297\n\t\tf 4 253 259 -255 -259\n\t\tmu 0 4 297 296 298 299\n\t\tf 4 254 261 -256 -261\n\t\tmu 0 4 299 298 300 301\n\t\tf 4 255 263 -253 -263\n\t\tmu 0 4 301 300 302 303\n\t\tf 4 -264 -262 -260 -258\n\t\tmu 0 4 295 304 305 296\n\t\tf 4 262 256 258 260\n\t\tmu 0 4 306 294 297 307\n\t\tf 4 264 269 -266 -269\n\t\tmu 0 4 308 309 310 311\n\t\tf 4 265 271 -267 -271\n\t\tmu 0 4 311 310 312 313\n\t\tf 4 266 273 -268 -273\n\t\tmu 0 4 313 312 314 315\n\t\tf 4 267 275 -265 -275\n\t\tmu 0 4 315 314 316 317\n\t\tf 4 -276 -274 -272 -270\n\t\tmu 0 4 309 318 319 310\n\t\tf 4 274 268 270 272\n\t\tmu 0 4 320 308 311 321\n\t\tf 4 276 281 -278 -281\n\t\tmu 0 4 322 323 324 325\n\t\tf 4 277 283 -279 -283\n\t\tmu 0 4 325 324 326 327\n\t\tf 4 278 285 -280 -285\n\t\tmu 0 4 327 326 328 329\n\t\tf 4 279 287 -277 -287\n\t\tmu 0 4 329 328 330 331\n\t\tf 4 -288 -286 -284 -282\n\t\tmu 0 4 323 332 333 324\n\t\tf 4 286 280 282 284\n\t\tmu 0 4 334 322 325 335\n\t\tf 4 288 293 -290 -293\n\t\tmu 0 4 336 337 338 339\n\t\tf 4 289 295 -291 -295\n\t\tmu 0 4 339 338 340 341\n\t\tf 4 290 297 -292 -297\n\t\tmu 0 4 341 340 342 343\n\t\tf 4 291 299 -289 -299\n\t\tmu 0 4 343 342 344 345\n\t\tf 4 -300 -298 -296 -294\n\t\tmu 0 4 337 346 347 338\n\t\tf 4 298 292 294 296\n\t\tmu 0 4 348 336 339 349\n\t\tf 4 300 305 -302 -305\n\t\tmu 0 4 350 351 352 353\n\t\tf 4 301 307 -303 -307\n\t\tmu 0 4 353 352 354 355\n\t\tf 4 302 309 -304 -309\n\t\tmu 0 4 355 354 356 357\n\t\tf 4 303 311 -301 -311\n\t\tmu 0 4 357 356 358 359\n\t\tf 4 -312 -310 -308 -306\n\t\tmu 0 4 351 360 361 352\n\t\tf 4 310 304 306 308\n\t\tmu 0 4 362 350 353 363\n\t\tf 4 312 317 -314 -317\n\t\tmu 0 4 364 365 366 367\n\t\tf 4 313 319 -315 -319\n\t\tmu 0 4 367 366 368 369\n\t\tf 4 314 321 -316 -321\n\t\tmu 0 4 369 368 370 371\n\t\tf 4 315 323 -313 -323\n\t\tmu 0 4 371 370 372 373\n\t\tf 4 -324 -322 -320 -318\n\t\tmu 0 4 365 374 375 366\n\t\tf 4 322 316 318 320\n\t\tmu 0 4 376 364 367 377\n\t\tf 4 324 329 -326 -329\n\t\tmu 0 4 378 379 380 381\n\t\tf 4 325 331 -327 -331\n\t\tmu 0 4 381 380 382 383\n\t\tf 4 326 333 -328 -333\n\t\tmu 0 4 383 382 384 385\n\t\tf 4 327 335 -325 -335\n\t\tmu 0 4 385 384 386 387\n\t\tf 4 -336 -334 -332 -330\n\t\tmu 0 4 379 388 389 380\n\t\tf 4 334 328 330 332\n\t\tmu 0 4 390 378 381 391\n\t\tf 4 336 341 -338 -341\n\t\tmu 0 4 392 393 394 395\n\t\tf 4 337 343 -339 -343\n\t\tmu 0 4 395 394 396 397\n\t\tf 4 338 345 -340 -345\n\t\tmu 0 4 397 396 398 399\n\t\tf 4 339 347 -337 -347\n\t\tmu 0 4 399 398 400 401\n\t\tf 4 -348 -346 -344 -342\n\t\tmu 0 4 393 402 403 394\n\t\tf 4 346 340 342 344\n\t\tmu 0 4 404 392 395 405\n\t\tf 4 348 353 -350 -353\n\t\tmu 0 4 406 407 408 409\n\t\tf 4 349 355 -351 -355\n\t\tmu 0 4 409 408 410 411\n\t\tf 4 350 357 -352 -357\n\t\tmu 0 4 411 410 412 413\n\t\tf 4 351 359 -349 -359\n\t\tmu 0 4 413 412 414 415\n\t\tf 4 -360 -358 -356 -354\n\t\tmu 0 4 407 416 417 408\n\t\tf 4 358 352 354 356\n\t\tmu 0 4 418 406 409 419\n\t\tf 4 360 365 -362 -365\n\t\tmu 0 4 420 421 422 423\n\t\tf 4 361 367 -363 -367\n\t\tmu 0 4 423 422 424 425\n\t\tf 4 362 369 -364 -369\n\t\tmu 0 4 425 424 426 427\n\t\tf 4 363 371 -361 -371\n\t\tmu 0 4 427 426 428 429\n\t\tf 4 -372 -370 -368 -366\n\t\tmu 0 4 421 430 431 422\n\t\tf 4 370 364 366 368\n\t\tmu 0 4 432 420 423 433\n\t\tf 4 372 377 -374 -377\n\t\tmu 0 4 434 435 436 437\n\t\tf 4 373 379 -375 -379\n\t\tmu 0 4 437 436 438 439\n\t\tf 4 374 381 -376 -381\n\t\tmu 0 4 439 438 440 441\n\t\tf 4 375 383 -373 -383\n\t\tmu 0 4 441 440 442 443\n\t\tf 4 -384 -382 -380 -378\n\t\tmu 0 4 435 444 445 436\n\t\tf 4 382 376 378 380\n\t\tmu 0 4 446 434 437 447\n\t\tf 4 384 389 -386 -389\n\t\tmu 0 4 448 449 450 451\n\t\tf 4 385 391 -387 -391\n\t\tmu 0 4 451 450 452 453\n\t\tf 4 386 393 -388 -393\n\t\tmu 0 4 453 452 454 455\n\t\tf 4 387 395 -385 -395\n\t\tmu 0 4 455 454 456 457\n\t\tf 4 -396 -394 -392 -390\n\t\tmu 0 4 449 458 459 450\n\t\tf 4 394 388 390 392\n\t\tmu 0 4 460 448 451 461\n\t\tf 4 396 401 -398 -401\n\t\tmu 0 4 462 463 464 465\n\t\tf 4 397 403 -399 -403\n\t\tmu 0 4 465 464 466 467\n\t\tf 4 398 405 -400 -405\n\t\tmu 0 4 467 466 468 469\n\t\tf 4 399 407 -397 -407\n\t\tmu 0 4 469 468 470 471\n\t\tf 4 -408 -406 -404 -402\n\t\tmu 0 4 463 472 473 464\n\t\tf 4 406 400 402 404\n\t\tmu 0 4 474 462 465 475\n\t\tf 4 408 413 -410 -413\n\t\tmu 0 4 476 477 478 479\n\t\tf 4 409 415 -411 -415\n\t\tmu 0 4 479 478 480 481\n\t\tf 4 410 417 -412 -417\n\t\tmu 0 4 481 480 482 483\n\t\tf 4 411 419 -409 -419\n\t\tmu 0 4 483 482 484 485\n\t\tf 4 -420 -418 -416 -414\n\t\tmu 0 4 477 486 487 478\n\t\tf 4 418 412 414 416\n\t\tmu 0 4 488 476 479 489\n\t\tf 4 420 425 -422 -425\n\t\tmu 0 4 490 491 492 493\n\t\tf 4 421 427 -423 -427\n\t\tmu 0 4 493 492 494 495\n\t\tf 4 422 429 -424 -429\n\t\tmu 0 4 495 494 496 497\n\t\tf 4 423 431 -421 -431\n\t\tmu 0 4 497 496 498 499\n\t\tf 4 -432 -430 -428 -426\n\t\tmu 0 4 491 500 501 492\n\t\tf 4 430 424 426 428\n\t\tmu 0 4 502 490 493 503\n\t\tf 4 432 437 -434 -437\n\t\tmu 0 4 504 505 506 507\n\t\tf 4 433 439 -435 -439\n\t\tmu 0 4 507 506 508 509\n\t\tf 4 434 441 -436 -441\n\t\tmu 0 4 509 508 510 511\n\t\tf 4 435 443 -433 -443\n\t\tmu 0 4 511 510 512 513\n\t\tf 4 -444 -442 -440 -438\n\t\tmu 0 4 505 514 515 506\n\t\tf 4 442 436 438 440\n\t\tmu 0 4 516 504 507 517\n\t\tf 4 444 449 -446 -449\n\t\tmu 0 4 518 519 520 521\n\t\tf 4 445 451 -447 -451\n\t\tmu 0 4 521 520 522 523\n\t\tf 4 446 453 -448 -453\n\t\tmu 0 4 523 522 524 525\n\t\tf 4 447 455 -445 -455\n\t\tmu 0 4 525 524 526 527\n\t\tf 4 -456 -454 -452 -450\n\t\tmu 0 4 519 528 529 520\n\t\tf 4 454 448 450 452\n\t\tmu 0 4 530 518 521 531\n\t\tf 4 456 461 -458 -461\n\t\tmu 0 4 532 533 534 535\n\t\tf 4 457 463 -459 -463\n\t\tmu 0 4 535 534 536 537\n\t\tf 4 458 465 -460 -465\n\t\tmu 0 4 537 536 538 539\n\t\tf 4 459 467 -457 -467\n\t\tmu 0 4 539 538 540 541\n\t\tf 4 -468 -466 -464 -462\n\t\tmu 0 4 533 542 543 534\n\t\tf 4 466 460 462 464\n\t\tmu 0 4 544 532 535 545\n\t\tf 4 468 473 -470 -473\n\t\tmu 0 4 546 547 548 549\n\t\tf 4 469 475 -471 -475\n\t\tmu 0 4 549 548 550 551\n\t\tf 4 470 477 -472 -477\n\t\tmu 0 4 551 550 552 553\n\t\tf 4 471 479 -469 -479\n\t\tmu 0 4 553 552 554 555\n\t\tf 4 -480 -478 -476 -474\n\t\tmu 0 4 547 556 557 548\n\t\tf 4 478 472 474 476\n\t\tmu 0 4 558 546 549 559\n\t\tf 4 480 485 -482 -485\n\t\tmu 0 4 560 561 562 563\n\t\tf 4 481 487 -483 -487\n\t\tmu 0 4 563 562 564 565\n\t\tf 4 482 489 -484 -489\n\t\tmu 0 4 565 564 566 567\n\t\tf 4 483 491 -481 -491\n\t\tmu 0 4 567 566 568 569\n\t\tf 4 -492 -490 -488 -486\n\t\tmu 0 4 561 570 571 562\n\t\tf 4 490 484 486 488\n\t\tmu 0 4 572 560 563 573\n\t\tf 4 492 497 -494 -497\n\t\tmu 0 4 574 575 576 577\n\t\tf 4 493 499 -495 -499\n\t\tmu 0 4 577 576 578 579\n\t\tf 4 494 501 -496 -501\n\t\tmu 0 4 579 578 580 581\n\t\tf 4 495 503 -493 -503\n\t\tmu 0 4 581 580 582 583\n\t\tf 4 -504 -502 -500 -498\n\t\tmu 0 4 575 584 585 576\n\t\tf 4 502 496 498 500\n\t\tmu 0 4 586 574 577 587\n\t\tf 4 504 509 -506 -509\n\t\tmu 0 4 588 589 590 591\n\t\tf 4 505 511 -507 -511\n\t\tmu 0 4 591 590 592 593\n\t\tf 4 506 513 -508 -513\n\t\tmu 0 4 593 592 594 595\n\t\tf 4 507 515 -505 -515\n\t\tmu 0 4 595 594 596 597\n\t\tf 4 -516 -514 -512 -510\n\t\tmu 0 4 589 598 599 590\n\t\tf 4 514 508 510 512\n\t\tmu 0 4 600 588 591 601\n\t\tf 4 516 521 -518 -521\n\t\tmu 0 4 602 603 604 605\n\t\tf 4 517 523 -519 -523\n\t\tmu 0 4 605 604 606 607\n\t\tf 4 518 525 -520 -525\n\t\tmu 0 4 607 606 608 609\n\t\tf 4 519 527 -517 -527\n\t\tmu 0 4 609 608 610 611\n\t\tf 4 -528 -526 -524 -522\n\t\tmu 0 4 603 612 613 604\n\t\tf 4 526 520 522 524\n\t\tmu 0 4 614 602 605 615\n\t\tf 4 528 533 -530 -533\n\t\tmu 0 4 616 617 618 619\n\t\tf 4 529 535 -531 -535\n\t\tmu 0 4 619 618 620 621\n\t\tf 4 530 537 -532 -537\n\t\tmu 0 4 621 620 622 623\n\t\tf 4 531 539 -529 -539\n\t\tmu 0 4 623 622 624 625\n\t\tf 4 -540 -538 -536 -534\n\t\tmu 0 4 617 626 627 618\n\t\tf 4 538 532 534 536\n\t\tmu 0 4 628 616 619 629\n\t\tf 4 540 545 -542 -545\n\t\tmu 0 4 630 631 632 633\n\t\tf 4 541 547 -543 -547\n\t\tmu 0 4 633 632 634 635\n\t\tf 4 542 549 -544 -549\n\t\tmu 0 4 635 634 636 637\n\t\tf 4 543 551 -541 -551\n\t\tmu 0 4 637 636 638 639\n\t\tf 4 -552 -550 -548 -546\n\t\tmu 0 4 631 640 641 632\n\t\tf 4 550 544 546 548\n\t\tmu 0 4 642 630 633 643\n\t\tf 4 552 557 -554 -557\n\t\tmu 0 4 644 645 646 647\n\t\tf 4 553 559 -555 -559\n\t\tmu 0 4 647 646 648 649\n\t\tf 4 554 561 -556 -561\n\t\tmu 0 4 649 648 650 651\n\t\tf 4 555 563 -553 -563\n\t\tmu 0 4 651 650 652 653\n\t\tf 4 -564 -562 -560 -558\n\t\tmu 0 4 645 654 655 646\n\t\tf 4 562 556 558 560\n\t\tmu 0 4 656 644 647 657\n\t\tf 4 564 569 -566 -569\n\t\tmu 0 4 658 659 660 661\n\t\tf 4 565 571 -567 -571\n\t\tmu 0 4 661 660 662 663\n\t\tf 4 566 573 -568 -573\n\t\tmu 0 4 663 662 664 665\n\t\tf 4 567 575 -565 -575\n\t\tmu 0 4 665 664 666 667\n\t\tf 4 -576 -574 -572 -570\n\t\tmu 0 4 659 668 669 660\n\t\tf 4 574 568 570 572\n\t\tmu 0 4 670 658 661 671\n\t\tf 4 576 581 -578 -581\n\t\tmu 0 4 672 673 674 675\n\t\tf 4 577 583 -579 -583\n\t\tmu 0 4 675 674 676 677\n\t\tf 4 578 585 -580 -585\n\t\tmu 0 4 677 676 678 679\n\t\tf 4 579 587 -577 -587\n\t\tmu 0 4 679 678 680 681\n\t\tf 4 -588 -586 -584 -582\n\t\tmu 0 4 673 682 683 674\n\t\tf 4 586 580 582 584\n\t\tmu 0 4 684 672 675 685\n\t\tf 4 588 593 -590 -593\n\t\tmu 0 4 686 687 688 689\n\t\tf 4 589 595 -591 -595\n\t\tmu 0 4 689 688 690 691\n\t\tf 4 590 597 -592 -597\n\t\tmu 0 4 691 690 692 693\n\t\tf 4 591 599 -589 -599\n\t\tmu 0 4 693 692 694 695\n\t\tf 4 -600 -598 -596 -594\n\t\tmu 0 4 687 696 697 688\n\t\tf 4 598 592 594 596\n\t\tmu 0 4 698 686 689 699\n\t\tf 4 600 605 -602 -605\n\t\tmu 0 4 700 701 702 703\n\t\tf 4 601 607 -603 -607\n\t\tmu 0 4 703 702 704 705\n\t\tf 4 602 609 -604 -609\n\t\tmu 0 4 705 704 706 707\n\t\tf 4 603 611 -601 -611\n\t\tmu 0 4 707 706 708 709\n\t\tf 4 -612 -610 -608 -606\n\t\tmu 0 4 701 710 711 702\n\t\tf 4 610 604 606 608\n\t\tmu 0 4 712 700 703 713\n\t\tf 4 612 617 -614 -617\n\t\tmu 0 4 714 715 716 717\n\t\tf 4 613 619 -615 -619\n\t\tmu 0 4 717 716 718 719\n\t\tf 4 614 621 -616 -621\n\t\tmu 0 4 719 718 720 721\n\t\tf 4 615 623 -613 -623\n\t\tmu 0 4 721 720 722 723\n\t\tf 4 -624 -622 -620 -618\n\t\tmu 0 4 715 724 725 716\n\t\tf 4 622 616 618 620\n\t\tmu 0 4 726 714 717 727\n\t\tf 4 624 629 -626 -629\n\t\tmu 0 4 728 729 730 731\n\t\tf 4 625 631 -627 -631\n\t\tmu 0 4 731 730 732 733\n\t\tf 4 626 633 -628 -633\n\t\tmu 0 4 733 732 734 735\n\t\tf 4 627 635 -625 -635\n\t\tmu 0 4 735 734 736 737\n\t\tf 4 -636 -634 -632 -630\n\t\tmu 0 4 729 738 739 730\n\t\tf 4 634 628 630 632\n\t\tmu 0 4 740 728 731 741\n\t\tf 4 636 641 -638 -641\n\t\tmu 0 4 742 743 744 745\n\t\tf 4 637 643 -639 -643\n\t\tmu 0 4 745 744 746 747\n\t\tf 4 638 645 -640 -645\n\t\tmu 0 4 747 746 748 749\n\t\tf 4 639 647 -637 -647\n\t\tmu 0 4 749 748 750 751\n\t\tf 4 -648 -646 -644 -642\n\t\tmu 0 4 743 752 753 744\n\t\tf 4 646 640 642 644\n\t\tmu 0 4 754 742 745 755\n\t\tf 4 648 653 -650 -653\n\t\tmu 0 4 756 757 758 759\n\t\tf 4 649 655 -651 -655\n\t\tmu 0 4 759 758 760 761\n\t\tf 4 650 657 -652 -657\n\t\tmu 0 4 761 760 762 763\n\t\tf 4 651 659 -649 -659\n\t\tmu 0 4 763 762 764 765\n\t\tf 4 -660 -658 -656 -654\n\t\tmu 0 4 757 766 767 758\n\t\tf 4 658 652 654 656\n\t\tmu 0 4 768 756 759 769\n\t\tf 4 660 665 -662 -665\n\t\tmu 0 4 770 771 772 773\n\t\tf 4 661 667 -663 -667\n\t\tmu 0 4 773 772 774 775\n\t\tf 4 662 669 -664 -669\n\t\tmu 0 4 775 774 776 777\n\t\tf 4 663 671 -661 -671\n\t\tmu 0 4 777 776 778 779\n\t\tf 4 -672 -670 -668 -666\n\t\tmu 0 4 771 780 781 772\n\t\tf 4 670 664 666 668\n\t\tmu 0 4 782 770 773 783\n\t\tf 4 672 677 -674 -677\n\t\tmu 0 4 784 785 786 787\n\t\tf 4 673 679 -675 -679\n\t\tmu 0 4 787 786 788 789\n\t\tf 4 674 681 -676 -681\n\t\tmu 0 4 789 788 790 791\n\t\tf 4 675 683 -673 -683\n\t\tmu 0 4 791 790 792 793\n\t\tf 4 -684 -682 -680 -678\n\t\tmu 0 4 785 794 795 786\n\t\tf 4 682 676 678 680\n\t\tmu 0 4 796 784 787 797\n\t\tf 4 684 689 -686 -689\n\t\tmu 0 4 798 799 800 801\n\t\tf 4 685 691 -687 -691\n\t\tmu 0 4 801 800 802 803\n\t\tf 4 686 693 -688 -693\n\t\tmu 0 4 803 802 804 805\n\t\tf 4 687 695 -685 -695\n\t\tmu 0 4 805 804 806 807\n\t\tf 4 -696 -694 -692 -690\n\t\tmu 0 4 799 808 809 800\n\t\tf 4 694 688 690 692\n\t\tmu 0 4 810 798 801 811\n\t\tf 4 696 701 -698 -701\n\t\tmu 0 4 812 813 814 815\n\t\tf 4 697 703 -699 -703\n\t\tmu 0 4 815 814 816 817\n\t\tf 4 698 705 -700 -705\n\t\tmu 0 4 817 816 818 819\n\t\tf 4 699 707 -697 -707\n\t\tmu 0 4 819 818 820 821\n\t\tf 4 -708 -706 -704 -702\n\t\tmu 0 4 813 822 823 814\n\t\tf 4 706 700 702 704\n\t\tmu 0 4 824 812 815 825\n\t\tf 4 708 713 -710 -713\n\t\tmu 0 4 826 827 828 829\n\t\tf 4 709 715 -711 -715\n\t\tmu 0 4 829 828 830 831\n\t\tf 4 710 717 -712 -717\n\t\tmu 0 4 831 830 832 833\n\t\tf 4 711 719 -709 -719\n\t\tmu 0 4 833 832 834 835\n\t\tf 4 -720 -718 -716 -714\n\t\tmu 0 4 827 836 837 828\n\t\tf 4 718 712 714 716\n\t\tmu 0 4 838 826 829 839\n\t\tf 4 720 725 -722 -725\n\t\tmu 0 4 840 841 842 843\n\t\tf 4 721 727 -723 -727\n\t\tmu 0 4 843 842 844 845\n\t\tf 4 722 729 -724 -729\n\t\tmu 0 4 845 844 846 847\n\t\tf 4 723 731 -721 -731\n\t\tmu 0 4 847 846 848 849\n\t\tf 4 -732 -730 -728 -726\n\t\tmu 0 4 841 850 851 842\n\t\tf 4 730 724 726 728\n\t\tmu 0 4 852 840 843 853\n\t\tf 4 732 737 -734 -737\n\t\tmu 0 4 854 855 856 857\n\t\tf 4 733 739 -735 -739\n\t\tmu 0 4 857 856 858 859\n\t\tf 4 734 741 -736 -741\n\t\tmu 0 4 859 858 860 861\n\t\tf 4 735 743 -733 -743\n\t\tmu 0 4 861 860 862 863\n\t\tf 4 -744 -742 -740 -738\n\t\tmu 0 4 855 864 865 856\n\t\tf 4 742 736 738 740\n\t\tmu 0 4 866 854 857 867\n\t\tf 4 744 749 -746 -749\n\t\tmu 0 4 868 869 870 871\n\t\tf 4 745 751 -747 -751\n\t\tmu 0 4 871 870 872 873\n\t\tf 4 746 753 -748 -753\n\t\tmu 0 4 873 872 874 875\n\t\tf 4 747 755 -745 -755\n\t\tmu 0 4 875 874 876 877\n\t\tf 4 -756 -754 -752 -750\n\t\tmu 0 4 869 878 879 870\n\t\tf 4 754 748 750 752\n\t\tmu 0 4 880 868 871 881\n\t\tf 4 756 761 -758 -761\n\t\tmu 0 4 882 883 884 885\n\t\tf 4 757 763 -759 -763\n\t\tmu 0 4 885 884 886 887\n\t\tf 4 758 765 -760 -765\n\t\tmu 0 4 887 886 888 889\n\t\tf 4 759 767 -757 -767\n\t\tmu 0 4 889 888 890 891\n\t\tf 4 -768 -766 -764 -762\n\t\tmu 0 4 883 892 893 884\n\t\tf 4 766 760 762 764\n\t\tmu 0 4 894 882 885 895\n\t\tf 4 768 773 -770 -773\n\t\tmu 0 4 896 897 898 899\n\t\tf 4 769 775 -771 -775\n\t\tmu 0 4 899 898 900 901\n\t\tf 4 770 777 -772 -777\n\t\tmu 0 4 901 900 902 903\n\t\tf 4 771 779 -769 -779\n\t\tmu 0 4 903 902 904 905\n\t\tf 4 -780 -778 -776 -774\n\t\tmu 0 4 897 906 907 898\n\t\tf 4 778 772 774 776\n\t\tmu 0 4 908 896 899 909\n\t\tf 4 780 785 -782 -785\n\t\tmu 0 4 910 911 912 913\n\t\tf 4 781 787 -783 -787\n\t\tmu 0 4 913 912 914 915\n\t\tf 4 782 789 -784 -789\n\t\tmu 0 4 915 914 916 917\n\t\tf 4 783 791 -781 -791\n\t\tmu 0 4 917 916 918 919\n\t\tf 4 -792 -790 -788 -786\n\t\tmu 0 4 911 920 921 912\n\t\tf 4 790 784 786 788\n\t\tmu 0 4 922 910 913 923\n\t\tf 4 792 797 -794 -797\n\t\tmu 0 4 924 925 926 927\n\t\tf 4 793 799 -795 -799\n\t\tmu 0 4 927 926 928 929\n\t\tf 4 794 801 -796 -801\n\t\tmu 0 4 929 928 930 931\n\t\tf 4 795 803 -793 -803\n\t\tmu 0 4 931 930 932 933\n\t\tf 4 -804 -802 -800 -798\n\t\tmu 0 4 925 934 935 926\n\t\tf 4 802 796 798 800\n\t\tmu 0 4 936 924 927 937\n\t\tf 4 804 809 -806 -809\n\t\tmu 0 4 938 939 940 941\n\t\tf 4 805 811 -807 -811\n\t\tmu 0 4 941 940 942 943\n\t\tf 4 806 813 -808 -813\n\t\tmu 0 4 943 942 944 945\n\t\tf 4 807 815 -805 -815\n\t\tmu 0 4 945 944 946 947\n\t\tf 4 -816 -814 -812 -810\n\t\tmu 0 4 939 948 949 940\n\t\tf 4 814 808 810 812\n\t\tmu 0 4 950 938 941 951\n\t\tf 4 816 821 -818 -821\n\t\tmu 0 4 952 953 954 955\n\t\tf 4 817 823 -819 -823\n\t\tmu 0 4 955 954 956 957\n\t\tf 4 818 825 -820 -825\n\t\tmu 0 4 957 956 958 959\n\t\tf 4 819 827 -817 -827\n\t\tmu 0 4 959 958 960 961\n\t\tf 4 -828 -826 -824 -822\n\t\tmu 0 4 953 962 963 954\n\t\tf 4 826 820 822 824\n\t\tmu 0 4 964 952 955 965\n\t\tf 4 828 833 -830 -833\n\t\tmu 0 4 966 967 968 969\n\t\tf 4 829 835 -831 -835\n\t\tmu 0 4 969 968 970 971\n\t\tf 4 830 837 -832 -837\n\t\tmu 0 4 971 970 972 973\n\t\tf 4 831 839 -829 -839\n\t\tmu 0 4 973 972 974 975\n\t\tf 4 -840 -838 -836 -834\n\t\tmu 0 4 967 976 977 968\n\t\tf 4 838 832 834 836\n\t\tmu 0 4 978 966 969 979\n\t\tf 4 840 845 -842 -845\n\t\tmu 0 4 980 981 982 983\n\t\tf 4 841 847 -843 -847\n\t\tmu 0 4 983 982 984 985\n\t\tf 4 842 849 -844 -849\n\t\tmu 0 4 985 984 986 987\n\t\tf 4 843 851 -841 -851\n\t\tmu 0 4 987 986 988 989\n\t\tf 4 -852 -850 -848 -846\n\t\tmu 0 4 981 990 991 982\n\t\tf 4 850 844 846 848\n\t\tmu 0 4 992 980 983 993\n\t\tf 4 852 857 -854 -857\n\t\tmu 0 4 994 995 996 997\n\t\tf 4 853 859 -855 -859\n\t\tmu 0 4 997 996 998 999\n\t\tf 4 854 861 -856 -861\n\t\tmu 0 4 999 998 1000 1001\n\t\tf 4 855 863 -853 -863\n\t\tmu 0 4 1001 1000 1002 1003\n\t\tf 4 -864 -862 -860 -858\n\t\tmu 0 4 995 1004 1005 996\n\t\tf 4 862 856 858 860\n\t\tmu 0 4 1006 994 997 1007\n\t\tf 4 864 869 -866 -869\n\t\tmu 0 4 1008 1009 1010 1011\n\t\tf 4 865 871 -867 -871\n\t\tmu 0 4 1011 1010 1012 1013\n\t\tf 4 866 873 -868 -873\n\t\tmu 0 4 1013 1012 1014 1015\n\t\tf 4 867 875 -865 -875\n\t\tmu 0 4 1015 1014 1016 1017\n\t\tf 4 -876 -874 -872 -870\n\t\tmu 0 4 1009 1018 1019 1010\n\t\tf 4 874 868 870 872\n\t\tmu 0 4 1020 1008 1011 1021\n\t\tf 4 876 881 -878 -881\n\t\tmu 0 4 1022 1023 1024 1025\n\t\tf 4 877 883 -879 -883\n\t\tmu 0 4 1025 1024 1026 1027\n\t\tf 4 878 885 -880 -885\n\t\tmu 0 4 1027 1026 1028 1029\n\t\tf 4 879 887 -877 -887\n\t\tmu 0 4 1029 1028 1030 1031\n\t\tf 4 -888 -886 -884 -882\n\t\tmu 0 4 1023 1032 1033 1024\n\t\tf 4 886 880 882 884\n\t\tmu 0 4 1034 1022 1025 1035\n\t\tf 4 888 893 -890 -893\n\t\tmu 0 4 1036 1037 1038 1039\n\t\tf 4 889 895 -891 -895\n\t\tmu 0 4 1039 1038 1040 1041\n\t\tf 4 890 897 -892 -897\n\t\tmu 0 4 1041 1040 1042 1043\n\t\tf 4 891 899 -889 -899\n\t\tmu 0 4 1043 1042 1044 1045\n\t\tf 4 -900 -898 -896 -894\n\t\tmu 0 4 1037 1046 1047 1038\n\t\tf 4 898 892 894 896\n\t\tmu 0 4 1048 1036 1039 1049\n\t\tf 4 900 905 -902 -905\n\t\tmu 0 4 1050 1051 1052 1053\n\t\tf 4 901 907 -903 -907\n\t\tmu 0 4 1053 1052 1054 1055\n\t\tf 4 902 909 -904 -909\n\t\tmu 0 4 1055 1054 1056 1057\n\t\tf 4 903 911 -901 -911\n\t\tmu 0 4 1057 1056 1058 1059\n\t\tf 4 -912 -910 -908 -906\n\t\tmu 0 4 1051 1060 1061 1052\n\t\tf 4 910 904 906 908\n\t\tmu 0 4 1062 1050 1053 1063\n\t\tf 4 912 917 -914 -917\n\t\tmu 0 4 1064 1065 1066 1067\n\t\tf 4 913 919 -915 -919\n\t\tmu 0 4 1067 1066 1068 1069\n\t\tf 4 914 921 -916 -921\n\t\tmu 0 4 1069 1068 1070 1071\n\t\tf 4 915 923 -913 -923\n\t\tmu 0 4 1071 1070 1072 1073\n\t\tf 4 -924 -922 -920 -918\n\t\tmu 0 4 1065 1074 1075 1066\n\t\tf 4 922 916 918 920\n\t\tmu 0 4 1076 1064 1067 1077\n\t\tf 4 924 929 -926 -929\n\t\tmu 0 4 1078 1079 1080 1081\n\t\tf 4 925 931 -927 -931\n\t\tmu 0 4 1081 1080 1082 1083\n\t\tf 4 926 933 -928 -933\n\t\tmu 0 4 1083 1082 1084 1085\n\t\tf 4 927 935 -925 -935\n\t\tmu 0 4 1085 1084 1086 1087\n\t\tf 4 -936 -934 -932 -930\n\t\tmu 0 4 1079 1088 1089 1080\n\t\tf 4 934 928 930 932\n\t\tmu 0 4 1090 1078 1081 1091\n\t\tf 4 936 941 -938 -941\n\t\tmu 0 4 1092 1093 1094 1095\n\t\tf 4 937 943 -939 -943\n\t\tmu 0 4 1095 1094 1096 1097\n\t\tf 4 938 945 -940 -945\n\t\tmu 0 4 1097 1096 1098 1099\n\t\tf 4 939 947 -937 -947\n\t\tmu 0 4 1099 1098 1100 1101\n\t\tf 4 -948 -946 -944 -942\n\t\tmu 0 4 1093 1102 1103 1094\n\t\tf 4 946 940 942 944\n\t\tmu 0 4 1104 1092 1095 1105\n\t\tf 4 948 953 -950 -953\n\t\tmu 0 4 1106 1107 1108 1109\n\t\tf 4 949 955 -951 -955\n\t\tmu 0 4 1109 1108 1110 1111\n\t\tf 4 950 957 -952 -957\n\t\tmu 0 4 1111 1110 1112 1113\n\t\tf 4 951 959 -949 -959\n\t\tmu 0 4 1113 1112 1114 1115\n\t\tf 4 -960 -958 -956 -954\n\t\tmu 0 4 1107 1116 1117 1108\n\t\tf 4 958 952 954 956\n\t\tmu 0 4 1118 1106 1109 1119\n\t\tf 4 960 965 -962 -965\n\t\tmu 0 4 1120 1121 1122 1123\n\t\tf 4 961 967 -963 -967\n\t\tmu 0 4 1123 1122 1124 1125\n\t\tf 4 962 969 -964 -969\n\t\tmu 0 4 1125 1124 1126 1127\n\t\tf 4 963 971 -961 -971\n\t\tmu 0 4 1127 1126 1128 1129\n\t\tf 4 -972 -970 -968 -966\n\t\tmu 0 4 1121 1130 1131 1122\n\t\tf 4 970 964 966 968\n\t\tmu 0 4 1132 1120 1123 1133\n\t\tf 4 972 977 -974 -977\n\t\tmu 0 4 1134 1135 1136 1137\n\t\tf 4 973 979 -975 -979\n\t\tmu 0 4 1137 1136 1138 1139\n\t\tf 4 974 981 -976 -981\n\t\tmu 0 4 1139 1138 1140 1141\n\t\tf 4 975 983 -973 -983\n\t\tmu 0 4 1141 1140 1142 1143\n\t\tf 4 -984 -982 -980 -978\n\t\tmu 0 4 1135 1144 1145 1136\n\t\tf 4 982 976 978 980\n\t\tmu 0 4 1146 1134 1137 1147\n\t\tf 4 984 989 -986 -989\n\t\tmu 0 4 1148 1149 1150 1151\n\t\tf 4 985 991 -987 -991\n\t\tmu 0 4 1151 1150 1152 1153\n\t\tf 4 986 993 -988 -993\n\t\tmu 0 4 1153 1152 1154 1155\n\t\tf 4 987 995 -985 -995\n\t\tmu 0 4 1155 1154 1156 1157\n\t\tf 4 -996 -994 -992 -990\n\t\tmu 0 4 1149 1158 1159 1150\n\t\tf 4 994 988 990 992\n\t\tmu 0 4 1160 1148 1151 1161\n\t\tf 4 996 1001 -998 -1001\n\t\tmu 0 4 1162 1163 1164 1165\n\t\tf 4 997 1003 -999 -1003\n\t\tmu 0 4 1165 1164 1166 1167;\n\tsetAttr \".fc[500:999]\"\n\t\tf 4 998 1005 -1000 -1005\n\t\tmu 0 4 1167 1166 1168 1169\n\t\tf 4 999 1007 -997 -1007\n\t\tmu 0 4 1169 1168 1170 1171\n\t\tf 4 -1008 -1006 -1004 -1002\n\t\tmu 0 4 1163 1172 1173 1164\n\t\tf 4 1006 1000 1002 1004\n\t\tmu 0 4 1174 1162 1165 1175\n\t\tf 4 1008 1013 -1010 -1013\n\t\tmu 0 4 1176 1177 1178 1179\n\t\tf 4 1009 1015 -1011 -1015\n\t\tmu 0 4 1179 1178 1180 1181\n\t\tf 4 1010 1017 -1012 -1017\n\t\tmu 0 4 1181 1180 1182 1183\n\t\tf 4 1011 1019 -1009 -1019\n\t\tmu 0 4 1183 1182 1184 1185\n\t\tf 4 -1020 -1018 -1016 -1014\n\t\tmu 0 4 1177 1186 1187 1178\n\t\tf 4 1018 1012 1014 1016\n\t\tmu 0 4 1188 1176 1179 1189\n\t\tf 4 1020 1025 -1022 -1025\n\t\tmu 0 4 1190 1191 1192 1193\n\t\tf 4 1021 1027 -1023 -1027\n\t\tmu 0 4 1193 1192 1194 1195\n\t\tf 4 1022 1029 -1024 -1029\n\t\tmu 0 4 1195 1194 1196 1197\n\t\tf 4 1023 1031 -1021 -1031\n\t\tmu 0 4 1197 1196 1198 1199\n\t\tf 4 -1032 -1030 -1028 -1026\n\t\tmu 0 4 1191 1200 1201 1192\n\t\tf 4 1030 1024 1026 1028\n\t\tmu 0 4 1202 1190 1193 1203\n\t\tf 4 1032 1037 -1034 -1037\n\t\tmu 0 4 1204 1205 1206 1207\n\t\tf 4 1033 1039 -1035 -1039\n\t\tmu 0 4 1207 1206 1208 1209\n\t\tf 4 1034 1041 -1036 -1041\n\t\tmu 0 4 1209 1208 1210 1211\n\t\tf 4 1035 1043 -1033 -1043\n\t\tmu 0 4 1211 1210 1212 1213\n\t\tf 4 -1044 -1042 -1040 -1038\n\t\tmu 0 4 1205 1214 1215 1206\n\t\tf 4 1042 1036 1038 1040\n\t\tmu 0 4 1216 1204 1207 1217\n\t\tf 4 1044 1049 -1046 -1049\n\t\tmu 0 4 1218 1219 1220 1221\n\t\tf 4 1045 1051 -1047 -1051\n\t\tmu 0 4 1221 1220 1222 1223\n\t\tf 4 1046 1053 -1048 -1053\n\t\tmu 0 4 1223 1222 1224 1225\n\t\tf 4 1047 1055 -1045 -1055\n\t\tmu 0 4 1225 1224 1226 1227\n\t\tf 4 -1056 -1054 -1052 -1050\n\t\tmu 0 4 1219 1228 1229 1220\n\t\tf 4 1054 1048 1050 1052\n\t\tmu 0 4 1230 1218 1221 1231\n\t\tf 4 1056 1061 -1058 -1061\n\t\tmu 0 4 1232 1233 1234 1235\n\t\tf 4 1057 1063 -1059 -1063\n\t\tmu 0 4 1235 1234 1236 1237\n\t\tf 4 1058 1065 -1060 -1065\n\t\tmu 0 4 1237 1236 1238 1239\n\t\tf 4 1059 1067 -1057 -1067\n\t\tmu 0 4 1239 1238 1240 1241\n\t\tf 4 -1068 -1066 -1064 -1062\n\t\tmu 0 4 1233 1242 1243 1234\n\t\tf 4 1066 1060 1062 1064\n\t\tmu 0 4 1244 1232 1235 1245\n\t\tf 4 1068 1073 -1070 -1073\n\t\tmu 0 4 1246 1247 1248 1249\n\t\tf 4 1069 1075 -1071 -1075\n\t\tmu 0 4 1249 1248 1250 1251\n\t\tf 4 1070 1077 -1072 -1077\n\t\tmu 0 4 1251 1250 1252 1253\n\t\tf 4 1071 1079 -1069 -1079\n\t\tmu 0 4 1253 1252 1254 1255\n\t\tf 4 -1080 -1078 -1076 -1074\n\t\tmu 0 4 1247 1256 1257 1248\n\t\tf 4 1078 1072 1074 1076\n\t\tmu 0 4 1258 1246 1249 1259\n\t\tf 4 1080 1085 -1082 -1085\n\t\tmu 0 4 1260 1261 1262 1263\n\t\tf 4 1081 1087 -1083 -1087\n\t\tmu 0 4 1263 1262 1264 1265\n\t\tf 4 1082 1089 -1084 -1089\n\t\tmu 0 4 1265 1264 1266 1267\n\t\tf 4 1083 1091 -1081 -1091\n\t\tmu 0 4 1267 1266 1268 1269\n\t\tf 4 -1092 -1090 -1088 -1086\n\t\tmu 0 4 1261 1270 1271 1262\n\t\tf 4 1090 1084 1086 1088\n\t\tmu 0 4 1272 1260 1263 1273\n\t\tf 4 1092 1097 -1094 -1097\n\t\tmu 0 4 1274 1275 1276 1277\n\t\tf 4 1093 1099 -1095 -1099\n\t\tmu 0 4 1277 1276 1278 1279\n\t\tf 4 1094 1101 -1096 -1101\n\t\tmu 0 4 1279 1278 1280 1281\n\t\tf 4 1095 1103 -1093 -1103\n\t\tmu 0 4 1281 1280 1282 1283\n\t\tf 4 -1104 -1102 -1100 -1098\n\t\tmu 0 4 1275 1284 1285 1276\n\t\tf 4 1102 1096 1098 1100\n\t\tmu 0 4 1286 1274 1277 1287\n\t\tf 4 1104 1109 -1106 -1109\n\t\tmu 0 4 1288 1289 1290 1291\n\t\tf 4 1105 1111 -1107 -1111\n\t\tmu 0 4 1291 1290 1292 1293\n\t\tf 4 1106 1113 -1108 -1113\n\t\tmu 0 4 1293 1292 1294 1295\n\t\tf 4 1107 1115 -1105 -1115\n\t\tmu 0 4 1295 1294 1296 1297\n\t\tf 4 -1116 -1114 -1112 -1110\n\t\tmu 0 4 1289 1298 1299 1290\n\t\tf 4 1114 1108 1110 1112\n\t\tmu 0 4 1300 1288 1291 1301\n\t\tf 4 1116 1121 -1118 -1121\n\t\tmu 0 4 1302 1303 1304 1305\n\t\tf 4 1117 1123 -1119 -1123\n\t\tmu 0 4 1305 1304 1306 1307\n\t\tf 4 1118 1125 -1120 -1125\n\t\tmu 0 4 1307 1306 1308 1309\n\t\tf 4 1119 1127 -1117 -1127\n\t\tmu 0 4 1309 1308 1310 1311\n\t\tf 4 -1128 -1126 -1124 -1122\n\t\tmu 0 4 1303 1312 1313 1304\n\t\tf 4 1126 1120 1122 1124\n\t\tmu 0 4 1314 1302 1305 1315\n\t\tf 4 1128 1133 -1130 -1133\n\t\tmu 0 4 1316 1317 1318 1319\n\t\tf 4 1129 1135 -1131 -1135\n\t\tmu 0 4 1319 1318 1320 1321\n\t\tf 4 1130 1137 -1132 -1137\n\t\tmu 0 4 1321 1320 1322 1323\n\t\tf 4 1131 1139 -1129 -1139\n\t\tmu 0 4 1323 1322 1324 1325\n\t\tf 4 -1140 -1138 -1136 -1134\n\t\tmu 0 4 1317 1326 1327 1318\n\t\tf 4 1138 1132 1134 1136\n\t\tmu 0 4 1328 1316 1319 1329\n\t\tf 4 1140 1145 -1142 -1145\n\t\tmu 0 4 1330 1331 1332 1333\n\t\tf 4 1141 1147 -1143 -1147\n\t\tmu 0 4 1333 1332 1334 1335\n\t\tf 4 1142 1149 -1144 -1149\n\t\tmu 0 4 1335 1334 1336 1337\n\t\tf 4 1143 1151 -1141 -1151\n\t\tmu 0 4 1337 1336 1338 1339\n\t\tf 4 -1152 -1150 -1148 -1146\n\t\tmu 0 4 1331 1340 1341 1332\n\t\tf 4 1150 1144 1146 1148\n\t\tmu 0 4 1342 1330 1333 1343\n\t\tf 4 1152 1157 -1154 -1157\n\t\tmu 0 4 1344 1345 1346 1347\n\t\tf 4 1153 1159 -1155 -1159\n\t\tmu 0 4 1347 1346 1348 1349\n\t\tf 4 1154 1161 -1156 -1161\n\t\tmu 0 4 1349 1348 1350 1351\n\t\tf 4 1155 1163 -1153 -1163\n\t\tmu 0 4 1351 1350 1352 1353\n\t\tf 4 -1164 -1162 -1160 -1158\n\t\tmu 0 4 1345 1354 1355 1346\n\t\tf 4 1162 1156 1158 1160\n\t\tmu 0 4 1356 1344 1347 1357\n\t\tf 4 1164 1169 -1166 -1169\n\t\tmu 0 4 1358 1359 1360 1361\n\t\tf 4 1165 1171 -1167 -1171\n\t\tmu 0 4 1361 1360 1362 1363\n\t\tf 4 1166 1173 -1168 -1173\n\t\tmu 0 4 1363 1362 1364 1365\n\t\tf 4 1167 1175 -1165 -1175\n\t\tmu 0 4 1365 1364 1366 1367\n\t\tf 4 -1176 -1174 -1172 -1170\n\t\tmu 0 4 1359 1368 1369 1360\n\t\tf 4 1174 1168 1170 1172\n\t\tmu 0 4 1370 1358 1361 1371\n\t\tf 4 1176 1181 -1178 -1181\n\t\tmu 0 4 1372 1373 1374 1375\n\t\tf 4 1177 1183 -1179 -1183\n\t\tmu 0 4 1375 1374 1376 1377\n\t\tf 4 1178 1185 -1180 -1185\n\t\tmu 0 4 1377 1376 1378 1379\n\t\tf 4 1179 1187 -1177 -1187\n\t\tmu 0 4 1379 1378 1380 1381\n\t\tf 4 -1188 -1186 -1184 -1182\n\t\tmu 0 4 1373 1382 1383 1374\n\t\tf 4 1186 1180 1182 1184\n\t\tmu 0 4 1384 1372 1375 1385\n\t\tf 4 1188 1193 -1190 -1193\n\t\tmu 0 4 1386 1387 1388 1389\n\t\tf 4 1189 1195 -1191 -1195\n\t\tmu 0 4 1389 1388 1390 1391\n\t\tf 4 1190 1197 -1192 -1197\n\t\tmu 0 4 1391 1390 1392 1393\n\t\tf 4 1191 1199 -1189 -1199\n\t\tmu 0 4 1393 1392 1394 1395\n\t\tf 4 -1200 -1198 -1196 -1194\n\t\tmu 0 4 1387 1396 1397 1388\n\t\tf 4 1198 1192 1194 1196\n\t\tmu 0 4 1398 1386 1389 1399\n\t\tf 4 1200 1205 -1202 -1205\n\t\tmu 0 4 1400 1401 1402 1403\n\t\tf 4 1201 1207 -1203 -1207\n\t\tmu 0 4 1403 1402 1404 1405\n\t\tf 4 1202 1209 -1204 -1209\n\t\tmu 0 4 1405 1404 1406 1407\n\t\tf 4 1203 1211 -1201 -1211\n\t\tmu 0 4 1407 1406 1408 1409\n\t\tf 4 -1212 -1210 -1208 -1206\n\t\tmu 0 4 1401 1410 1411 1402\n\t\tf 4 1210 1204 1206 1208\n\t\tmu 0 4 1412 1400 1403 1413\n\t\tf 4 1212 1217 -1214 -1217\n\t\tmu 0 4 1414 1415 1416 1417\n\t\tf 4 1213 1219 -1215 -1219\n\t\tmu 0 4 1417 1416 1418 1419\n\t\tf 4 1214 1221 -1216 -1221\n\t\tmu 0 4 1419 1418 1420 1421\n\t\tf 4 1215 1223 -1213 -1223\n\t\tmu 0 4 1421 1420 1422 1423\n\t\tf 4 -1224 -1222 -1220 -1218\n\t\tmu 0 4 1415 1424 1425 1416\n\t\tf 4 1222 1216 1218 1220\n\t\tmu 0 4 1426 1414 1417 1427\n\t\tf 4 1224 1229 -1226 -1229\n\t\tmu 0 4 1428 1429 1430 1431\n\t\tf 4 1225 1231 -1227 -1231\n\t\tmu 0 4 1431 1430 1432 1433\n\t\tf 4 1226 1233 -1228 -1233\n\t\tmu 0 4 1433 1432 1434 1435\n\t\tf 4 1227 1235 -1225 -1235\n\t\tmu 0 4 1435 1434 1436 1437\n\t\tf 4 -1236 -1234 -1232 -1230\n\t\tmu 0 4 1429 1438 1439 1430\n\t\tf 4 1234 1228 1230 1232\n\t\tmu 0 4 1440 1428 1431 1441\n\t\tf 4 1236 1241 -1238 -1241\n\t\tmu 0 4 1442 1443 1444 1445\n\t\tf 4 1237 1243 -1239 -1243\n\t\tmu 0 4 1445 1444 1446 1447\n\t\tf 4 1238 1245 -1240 -1245\n\t\tmu 0 4 1447 1446 1448 1449\n\t\tf 4 1239 1247 -1237 -1247\n\t\tmu 0 4 1449 1448 1450 1451\n\t\tf 4 -1248 -1246 -1244 -1242\n\t\tmu 0 4 1443 1452 1453 1444\n\t\tf 4 1246 1240 1242 1244\n\t\tmu 0 4 1454 1442 1445 1455\n\t\tf 4 1248 1253 -1250 -1253\n\t\tmu 0 4 1456 1457 1458 1459\n\t\tf 4 1249 1255 -1251 -1255\n\t\tmu 0 4 1459 1458 1460 1461\n\t\tf 4 1250 1257 -1252 -1257\n\t\tmu 0 4 1461 1460 1462 1463\n\t\tf 4 1251 1259 -1249 -1259\n\t\tmu 0 4 1463 1462 1464 1465\n\t\tf 4 -1260 -1258 -1256 -1254\n\t\tmu 0 4 1457 1466 1467 1458\n\t\tf 4 1258 1252 1254 1256\n\t\tmu 0 4 1468 1456 1459 1469\n\t\tf 4 1260 1265 -1262 -1265\n\t\tmu 0 4 1470 1471 1472 1473\n\t\tf 4 1261 1267 -1263 -1267\n\t\tmu 0 4 1473 1472 1474 1475\n\t\tf 4 1262 1269 -1264 -1269\n\t\tmu 0 4 1475 1474 1476 1477\n\t\tf 4 1263 1271 -1261 -1271\n\t\tmu 0 4 1477 1476 1478 1479\n\t\tf 4 -1272 -1270 -1268 -1266\n\t\tmu 0 4 1471 1480 1481 1472\n\t\tf 4 1270 1264 1266 1268\n\t\tmu 0 4 1482 1470 1473 1483\n\t\tf 4 1272 1277 -1274 -1277\n\t\tmu 0 4 1484 1485 1486 1487\n\t\tf 4 1273 1279 -1275 -1279\n\t\tmu 0 4 1487 1486 1488 1489\n\t\tf 4 1274 1281 -1276 -1281\n\t\tmu 0 4 1489 1488 1490 1491\n\t\tf 4 1275 1283 -1273 -1283\n\t\tmu 0 4 1491 1490 1492 1493\n\t\tf 4 -1284 -1282 -1280 -1278\n\t\tmu 0 4 1485 1494 1495 1486\n\t\tf 4 1282 1276 1278 1280\n\t\tmu 0 4 1496 1484 1487 1497\n\t\tf 4 1284 1289 -1286 -1289\n\t\tmu 0 4 1498 1499 1500 1501\n\t\tf 4 1285 1291 -1287 -1291\n\t\tmu 0 4 1501 1500 1502 1503\n\t\tf 4 1286 1293 -1288 -1293\n\t\tmu 0 4 1503 1502 1504 1505\n\t\tf 4 1287 1295 -1285 -1295\n\t\tmu 0 4 1505 1504 1506 1507\n\t\tf 4 -1296 -1294 -1292 -1290\n\t\tmu 0 4 1499 1508 1509 1500\n\t\tf 4 1294 1288 1290 1292\n\t\tmu 0 4 1510 1498 1501 1511\n\t\tf 4 1296 1301 -1298 -1301\n\t\tmu 0 4 1512 1513 1514 1515\n\t\tf 4 1297 1303 -1299 -1303\n\t\tmu 0 4 1515 1514 1516 1517\n\t\tf 4 1298 1305 -1300 -1305\n\t\tmu 0 4 1517 1516 1518 1519\n\t\tf 4 1299 1307 -1297 -1307\n\t\tmu 0 4 1519 1518 1520 1521\n\t\tf 4 -1308 -1306 -1304 -1302\n\t\tmu 0 4 1513 1522 1523 1514\n\t\tf 4 1306 1300 1302 1304\n\t\tmu 0 4 1524 1512 1515 1525\n\t\tf 4 1308 1313 -1310 -1313\n\t\tmu 0 4 1526 1527 1528 1529\n\t\tf 4 1309 1315 -1311 -1315\n\t\tmu 0 4 1529 1528 1530 1531\n\t\tf 4 1310 1317 -1312 -1317\n\t\tmu 0 4 1531 1530 1532 1533\n\t\tf 4 1311 1319 -1309 -1319\n\t\tmu 0 4 1533 1532 1534 1535\n\t\tf 4 -1320 -1318 -1316 -1314\n\t\tmu 0 4 1527 1536 1537 1528\n\t\tf 4 1318 1312 1314 1316\n\t\tmu 0 4 1538 1526 1529 1539\n\t\tf 4 1320 1325 -1322 -1325\n\t\tmu 0 4 1540 1541 1542 1543\n\t\tf 4 1321 1327 -1323 -1327\n\t\tmu 0 4 1543 1542 1544 1545\n\t\tf 4 1322 1329 -1324 -1329\n\t\tmu 0 4 1545 1544 1546 1547\n\t\tf 4 1323 1331 -1321 -1331\n\t\tmu 0 4 1547 1546 1548 1549\n\t\tf 4 -1332 -1330 -1328 -1326\n\t\tmu 0 4 1541 1550 1551 1542\n\t\tf 4 1330 1324 1326 1328\n\t\tmu 0 4 1552 1540 1543 1553\n\t\tf 4 1332 1337 -1334 -1337\n\t\tmu 0 4 1554 1555 1556 1557\n\t\tf 4 1333 1339 -1335 -1339\n\t\tmu 0 4 1557 1556 1558 1559\n\t\tf 4 1334 1341 -1336 -1341\n\t\tmu 0 4 1559 1558 1560 1561\n\t\tf 4 1335 1343 -1333 -1343\n\t\tmu 0 4 1561 1560 1562 1563\n\t\tf 4 -1344 -1342 -1340 -1338\n\t\tmu 0 4 1555 1564 1565 1556\n\t\tf 4 1342 1336 1338 1340\n\t\tmu 0 4 1566 1554 1557 1567\n\t\tf 4 1344 1349 -1346 -1349\n\t\tmu 0 4 1568 1569 1570 1571\n\t\tf 4 1345 1351 -1347 -1351\n\t\tmu 0 4 1571 1570 1572 1573\n\t\tf 4 1346 1353 -1348 -1353\n\t\tmu 0 4 1573 1572 1574 1575\n\t\tf 4 1347 1355 -1345 -1355\n\t\tmu 0 4 1575 1574 1576 1577\n\t\tf 4 -1356 -1354 -1352 -1350\n\t\tmu 0 4 1569 1578 1579 1570\n\t\tf 4 1354 1348 1350 1352\n\t\tmu 0 4 1580 1568 1571 1581\n\t\tf 4 1356 1361 -1358 -1361\n\t\tmu 0 4 1582 1583 1584 1585\n\t\tf 4 1357 1363 -1359 -1363\n\t\tmu 0 4 1585 1584 1586 1587\n\t\tf 4 1358 1365 -1360 -1365\n\t\tmu 0 4 1587 1586 1588 1589\n\t\tf 4 1359 1367 -1357 -1367\n\t\tmu 0 4 1589 1588 1590 1591\n\t\tf 4 -1368 -1366 -1364 -1362\n\t\tmu 0 4 1583 1592 1593 1584\n\t\tf 4 1366 1360 1362 1364\n\t\tmu 0 4 1594 1582 1585 1595\n\t\tf 4 1368 1373 -1370 -1373\n\t\tmu 0 4 1596 1597 1598 1599\n\t\tf 4 1369 1375 -1371 -1375\n\t\tmu 0 4 1599 1598 1600 1601\n\t\tf 4 1370 1377 -1372 -1377\n\t\tmu 0 4 1601 1600 1602 1603\n\t\tf 4 1371 1379 -1369 -1379\n\t\tmu 0 4 1603 1602 1604 1605\n\t\tf 4 -1380 -1378 -1376 -1374\n\t\tmu 0 4 1597 1606 1607 1598\n\t\tf 4 1378 1372 1374 1376\n\t\tmu 0 4 1608 1596 1599 1609\n\t\tf 4 1380 1385 -1382 -1385\n\t\tmu 0 4 1610 1611 1612 1613\n\t\tf 4 1381 1387 -1383 -1387\n\t\tmu 0 4 1613 1612 1614 1615\n\t\tf 4 1382 1389 -1384 -1389\n\t\tmu 0 4 1615 1614 1616 1617\n\t\tf 4 1383 1391 -1381 -1391\n\t\tmu 0 4 1617 1616 1618 1619\n\t\tf 4 -1392 -1390 -1388 -1386\n\t\tmu 0 4 1611 1620 1621 1612\n\t\tf 4 1390 1384 1386 1388\n\t\tmu 0 4 1622 1610 1613 1623\n\t\tf 4 1392 1397 -1394 -1397\n\t\tmu 0 4 1624 1625 1626 1627\n\t\tf 4 1393 1399 -1395 -1399\n\t\tmu 0 4 1627 1626 1628 1629\n\t\tf 4 1394 1401 -1396 -1401\n\t\tmu 0 4 1629 1628 1630 1631\n\t\tf 4 1395 1403 -1393 -1403\n\t\tmu 0 4 1631 1630 1632 1633\n\t\tf 4 -1404 -1402 -1400 -1398\n\t\tmu 0 4 1625 1634 1635 1626\n\t\tf 4 1402 1396 1398 1400\n\t\tmu 0 4 1636 1624 1627 1637\n\t\tf 4 1404 1409 -1406 -1409\n\t\tmu 0 4 1638 1639 1640 1641\n\t\tf 4 1405 1411 -1407 -1411\n\t\tmu 0 4 1641 1640 1642 1643\n\t\tf 4 1406 1413 -1408 -1413\n\t\tmu 0 4 1643 1642 1644 1645\n\t\tf 4 1407 1415 -1405 -1415\n\t\tmu 0 4 1645 1644 1646 1647\n\t\tf 4 -1416 -1414 -1412 -1410\n\t\tmu 0 4 1639 1648 1649 1640\n\t\tf 4 1414 1408 1410 1412\n\t\tmu 0 4 1650 1638 1641 1651\n\t\tf 4 1416 1421 -1418 -1421\n\t\tmu 0 4 1652 1653 1654 1655\n\t\tf 4 1417 1423 -1419 -1423\n\t\tmu 0 4 1655 1654 1656 1657\n\t\tf 4 1418 1425 -1420 -1425\n\t\tmu 0 4 1657 1656 1658 1659\n\t\tf 4 1419 1427 -1417 -1427\n\t\tmu 0 4 1659 1658 1660 1661\n\t\tf 4 -1428 -1426 -1424 -1422\n\t\tmu 0 4 1653 1662 1663 1654\n\t\tf 4 1426 1420 1422 1424\n\t\tmu 0 4 1664 1652 1655 1665\n\t\tf 4 1428 1433 -1430 -1433\n\t\tmu 0 4 1666 1667 1668 1669\n\t\tf 4 1429 1435 -1431 -1435\n\t\tmu 0 4 1669 1668 1670 1671\n\t\tf 4 1430 1437 -1432 -1437\n\t\tmu 0 4 1671 1670 1672 1673\n\t\tf 4 1431 1439 -1429 -1439\n\t\tmu 0 4 1673 1672 1674 1675\n\t\tf 4 -1440 -1438 -1436 -1434\n\t\tmu 0 4 1667 1676 1677 1668\n\t\tf 4 1438 1432 1434 1436\n\t\tmu 0 4 1678 1666 1669 1679\n\t\tf 4 1440 1445 -1442 -1445\n\t\tmu 0 4 1680 1681 1682 1683\n\t\tf 4 1441 1447 -1443 -1447\n\t\tmu 0 4 1683 1682 1684 1685\n\t\tf 4 1442 1449 -1444 -1449\n\t\tmu 0 4 1685 1684 1686 1687\n\t\tf 4 1443 1451 -1441 -1451\n\t\tmu 0 4 1687 1686 1688 1689\n\t\tf 4 -1452 -1450 -1448 -1446\n\t\tmu 0 4 1681 1690 1691 1682\n\t\tf 4 1450 1444 1446 1448\n\t\tmu 0 4 1692 1680 1683 1693\n\t\tf 4 1452 1457 -1454 -1457\n\t\tmu 0 4 1694 1695 1696 1697\n\t\tf 4 1453 1459 -1455 -1459\n\t\tmu 0 4 1697 1696 1698 1699\n\t\tf 4 1454 1461 -1456 -1461\n\t\tmu 0 4 1699 1698 1700 1701\n\t\tf 4 1455 1463 -1453 -1463\n\t\tmu 0 4 1701 1700 1702 1703\n\t\tf 4 -1464 -1462 -1460 -1458\n\t\tmu 0 4 1695 1704 1705 1696\n\t\tf 4 1462 1456 1458 1460\n\t\tmu 0 4 1706 1694 1697 1707\n\t\tf 4 1464 1469 -1466 -1469\n\t\tmu 0 4 1708 1709 1710 1711\n\t\tf 4 1465 1471 -1467 -1471\n\t\tmu 0 4 1711 1710 1712 1713\n\t\tf 4 1466 1473 -1468 -1473\n\t\tmu 0 4 1713 1712 1714 1715\n\t\tf 4 1467 1475 -1465 -1475\n\t\tmu 0 4 1715 1714 1716 1717\n\t\tf 4 -1476 -1474 -1472 -1470\n\t\tmu 0 4 1709 1718 1719 1710\n\t\tf 4 1474 1468 1470 1472\n\t\tmu 0 4 1720 1708 1711 1721\n\t\tf 4 1476 1481 -1478 -1481\n\t\tmu 0 4 1722 1723 1724 1725\n\t\tf 4 1477 1483 -1479 -1483\n\t\tmu 0 4 1725 1724 1726 1727\n\t\tf 4 1478 1485 -1480 -1485\n\t\tmu 0 4 1727 1726 1728 1729\n\t\tf 4 1479 1487 -1477 -1487\n\t\tmu 0 4 1729 1728 1730 1731\n\t\tf 4 -1488 -1486 -1484 -1482\n\t\tmu 0 4 1723 1732 1733 1724\n\t\tf 4 1486 1480 1482 1484\n\t\tmu 0 4 1734 1722 1725 1735\n\t\tf 4 1488 1493 -1490 -1493\n\t\tmu 0 4 1736 1737 1738 1739\n\t\tf 4 1489 1495 -1491 -1495\n\t\tmu 0 4 1739 1738 1740 1741\n\t\tf 4 1490 1497 -1492 -1497\n\t\tmu 0 4 1741 1740 1742 1743\n\t\tf 4 1491 1499 -1489 -1499\n\t\tmu 0 4 1743 1742 1744 1745\n\t\tf 4 -1500 -1498 -1496 -1494\n\t\tmu 0 4 1737 1746 1747 1738\n\t\tf 4 1498 1492 1494 1496\n\t\tmu 0 4 1748 1736 1739 1749\n\t\tf 4 1500 1505 -1502 -1505\n\t\tmu 0 4 1750 1751 1752 1753\n\t\tf 4 1501 1507 -1503 -1507\n\t\tmu 0 4 1753 1752 1754 1755\n\t\tf 4 1502 1509 -1504 -1509\n\t\tmu 0 4 1755 1754 1756 1757\n\t\tf 4 1503 1511 -1501 -1511\n\t\tmu 0 4 1757 1756 1758 1759\n\t\tf 4 -1512 -1510 -1508 -1506\n\t\tmu 0 4 1751 1760 1761 1752\n\t\tf 4 1510 1504 1506 1508\n\t\tmu 0 4 1762 1750 1753 1763\n\t\tf 4 1512 1517 -1514 -1517\n\t\tmu 0 4 1764 1765 1766 1767\n\t\tf 4 1513 1519 -1515 -1519\n\t\tmu 0 4 1767 1766 1768 1769\n\t\tf 4 1514 1521 -1516 -1521\n\t\tmu 0 4 1769 1768 1770 1771\n\t\tf 4 1515 1523 -1513 -1523\n\t\tmu 0 4 1771 1770 1772 1773\n\t\tf 4 -1524 -1522 -1520 -1518\n\t\tmu 0 4 1765 1774 1775 1766\n\t\tf 4 1522 1516 1518 1520\n\t\tmu 0 4 1776 1764 1767 1777\n\t\tf 4 1524 1529 -1526 -1529\n\t\tmu 0 4 1778 1779 1780 1781\n\t\tf 4 1525 1531 -1527 -1531\n\t\tmu 0 4 1781 1780 1782 1783\n\t\tf 4 1526 1533 -1528 -1533\n\t\tmu 0 4 1783 1782 1784 1785\n\t\tf 4 1527 1535 -1525 -1535\n\t\tmu 0 4 1785 1784 1786 1787\n\t\tf 4 -1536 -1534 -1532 -1530\n\t\tmu 0 4 1779 1788 1789 1780\n\t\tf 4 1534 1528 1530 1532\n\t\tmu 0 4 1790 1778 1781 1791\n\t\tf 4 1536 1541 -1538 -1541\n\t\tmu 0 4 1792 1793 1794 1795\n\t\tf 4 1537 1543 -1539 -1543\n\t\tmu 0 4 1795 1794 1796 1797\n\t\tf 4 1538 1545 -1540 -1545\n\t\tmu 0 4 1797 1796 1798 1799\n\t\tf 4 1539 1547 -1537 -1547\n\t\tmu 0 4 1799 1798 1800 1801\n\t\tf 4 -1548 -1546 -1544 -1542\n\t\tmu 0 4 1793 1802 1803 1794\n\t\tf 4 1546 1540 1542 1544\n\t\tmu 0 4 1804 1792 1795 1805\n\t\tf 4 1548 1553 -1550 -1553\n\t\tmu 0 4 1806 1807 1808 1809\n\t\tf 4 1549 1555 -1551 -1555\n\t\tmu 0 4 1809 1808 1810 1811\n\t\tf 4 1550 1557 -1552 -1557\n\t\tmu 0 4 1811 1810 1812 1813\n\t\tf 4 1551 1559 -1549 -1559\n\t\tmu 0 4 1813 1812 1814 1815\n\t\tf 4 -1560 -1558 -1556 -1554\n\t\tmu 0 4 1807 1816 1817 1808\n\t\tf 4 1558 1552 1554 1556\n\t\tmu 0 4 1818 1806 1809 1819\n\t\tf 4 1560 1565 -1562 -1565\n\t\tmu 0 4 1820 1821 1822 1823\n\t\tf 4 1561 1567 -1563 -1567\n\t\tmu 0 4 1823 1822 1824 1825\n\t\tf 4 1562 1569 -1564 -1569\n\t\tmu 0 4 1825 1824 1826 1827\n\t\tf 4 1563 1571 -1561 -1571\n\t\tmu 0 4 1827 1826 1828 1829\n\t\tf 4 -1572 -1570 -1568 -1566\n\t\tmu 0 4 1821 1830 1831 1822\n\t\tf 4 1570 1564 1566 1568\n\t\tmu 0 4 1832 1820 1823 1833\n\t\tf 4 1572 1577 -1574 -1577\n\t\tmu 0 4 1834 1835 1836 1837\n\t\tf 4 1573 1579 -1575 -1579\n\t\tmu 0 4 1837 1836 1838 1839\n\t\tf 4 1574 1581 -1576 -1581\n\t\tmu 0 4 1839 1838 1840 1841\n\t\tf 4 1575 1583 -1573 -1583\n\t\tmu 0 4 1841 1840 1842 1843\n\t\tf 4 -1584 -1582 -1580 -1578\n\t\tmu 0 4 1835 1844 1845 1836\n\t\tf 4 1582 1576 1578 1580\n\t\tmu 0 4 1846 1834 1837 1847\n\t\tf 4 1584 1589 -1586 -1589\n\t\tmu 0 4 1848 1849 1850 1851\n\t\tf 4 1585 1591 -1587 -1591\n\t\tmu 0 4 1851 1850 1852 1853\n\t\tf 4 1586 1593 -1588 -1593\n\t\tmu 0 4 1853 1852 1854 1855\n\t\tf 4 1587 1595 -1585 -1595\n\t\tmu 0 4 1855 1854 1856 1857\n\t\tf 4 -1596 -1594 -1592 -1590\n\t\tmu 0 4 1849 1858 1859 1850\n\t\tf 4 1594 1588 1590 1592\n\t\tmu 0 4 1860 1848 1851 1861\n\t\tf 4 1596 1601 -1598 -1601\n\t\tmu 0 4 1862 1863 1864 1865\n\t\tf 4 1597 1603 -1599 -1603\n\t\tmu 0 4 1865 1864 1866 1867\n\t\tf 4 1598 1605 -1600 -1605\n\t\tmu 0 4 1867 1866 1868 1869\n\t\tf 4 1599 1607 -1597 -1607\n\t\tmu 0 4 1869 1868 1870 1871\n\t\tf 4 -1608 -1606 -1604 -1602\n\t\tmu 0 4 1863 1872 1873 1864\n\t\tf 4 1606 1600 1602 1604\n\t\tmu 0 4 1874 1862 1865 1875\n\t\tf 4 1608 1613 -1610 -1613\n\t\tmu 0 4 1876 1877 1878 1879\n\t\tf 4 1609 1615 -1611 -1615\n\t\tmu 0 4 1879 1878 1880 1881\n\t\tf 4 1610 1617 -1612 -1617\n\t\tmu 0 4 1881 1880 1882 1883\n\t\tf 4 1611 1619 -1609 -1619\n\t\tmu 0 4 1883 1882 1884 1885\n\t\tf 4 -1620 -1618 -1616 -1614\n\t\tmu 0 4 1877 1886 1887 1878\n\t\tf 4 1618 1612 1614 1616\n\t\tmu 0 4 1888 1876 1879 1889\n\t\tf 4 1620 1625 -1622 -1625\n\t\tmu 0 4 1890 1891 1892 1893\n\t\tf 4 1621 1627 -1623 -1627\n\t\tmu 0 4 1893 1892 1894 1895\n\t\tf 4 1622 1629 -1624 -1629\n\t\tmu 0 4 1895 1894 1896 1897\n\t\tf 4 1623 1631 -1621 -1631\n\t\tmu 0 4 1897 1896 1898 1899\n\t\tf 4 -1632 -1630 -1628 -1626\n\t\tmu 0 4 1891 1900 1901 1892\n\t\tf 4 1630 1624 1626 1628\n\t\tmu 0 4 1902 1890 1893 1903\n\t\tf 4 1632 1637 -1634 -1637\n\t\tmu 0 4 1904 1905 1906 1907\n\t\tf 4 1633 1639 -1635 -1639\n\t\tmu 0 4 1907 1906 1908 1909\n\t\tf 4 1634 1641 -1636 -1641\n\t\tmu 0 4 1909 1908 1910 1911\n\t\tf 4 1635 1643 -1633 -1643\n\t\tmu 0 4 1911 1910 1912 1913\n\t\tf 4 -1644 -1642 -1640 -1638\n\t\tmu 0 4 1905 1914 1915 1906\n\t\tf 4 1642 1636 1638 1640\n\t\tmu 0 4 1916 1904 1907 1917\n\t\tf 4 1644 1649 -1646 -1649\n\t\tmu 0 4 1918 1919 1920 1921\n\t\tf 4 1645 1651 -1647 -1651\n\t\tmu 0 4 1921 1920 1922 1923\n\t\tf 4 1646 1653 -1648 -1653\n\t\tmu 0 4 1923 1922 1924 1925\n\t\tf 4 1647 1655 -1645 -1655\n\t\tmu 0 4 1925 1924 1926 1927\n\t\tf 4 -1656 -1654 -1652 -1650\n\t\tmu 0 4 1919 1928 1929 1920\n\t\tf 4 1654 1648 1650 1652\n\t\tmu 0 4 1930 1918 1921 1931\n\t\tf 4 1656 1661 -1658 -1661\n\t\tmu 0 4 1932 1933 1934 1935\n\t\tf 4 1657 1663 -1659 -1663\n\t\tmu 0 4 1935 1934 1936 1937\n\t\tf 4 1658 1665 -1660 -1665\n\t\tmu 0 4 1937 1936 1938 1939\n\t\tf 4 1659 1667 -1657 -1667\n\t\tmu 0 4 1939 1938 1940 1941\n\t\tf 4 -1668 -1666 -1664 -1662\n\t\tmu 0 4 1933 1942 1943 1934\n\t\tf 4 1666 1660 1662 1664\n\t\tmu 0 4 1944 1932 1935 1945\n\t\tf 4 1668 1673 -1670 -1673\n\t\tmu 0 4 1946 1947 1948 1949\n\t\tf 4 1669 1675 -1671 -1675\n\t\tmu 0 4 1949 1948 1950 1951\n\t\tf 4 1670 1677 -1672 -1677\n\t\tmu 0 4 1951 1950 1952 1953\n\t\tf 4 1671 1679 -1669 -1679\n\t\tmu 0 4 1953 1952 1954 1955\n\t\tf 4 -1680 -1678 -1676 -1674\n\t\tmu 0 4 1947 1956 1957 1948\n\t\tf 4 1678 1672 1674 1676\n\t\tmu 0 4 1958 1946 1949 1959\n\t\tf 4 1680 1685 -1682 -1685\n\t\tmu 0 4 1960 1961 1962 1963\n\t\tf 4 1681 1687 -1683 -1687\n\t\tmu 0 4 1963 1962 1964 1965\n\t\tf 4 1682 1689 -1684 -1689\n\t\tmu 0 4 1965 1964 1966 1967\n\t\tf 4 1683 1691 -1681 -1691\n\t\tmu 0 4 1967 1966 1968 1969\n\t\tf 4 -1692 -1690 -1688 -1686\n\t\tmu 0 4 1961 1970 1971 1962\n\t\tf 4 1690 1684 1686 1688\n\t\tmu 0 4 1972 1960 1963 1973\n\t\tf 4 1692 1697 -1694 -1697\n\t\tmu 0 4 1974 1975 1976 1977\n\t\tf 4 1693 1699 -1695 -1699\n\t\tmu 0 4 1977 1976 1978 1979\n\t\tf 4 1694 1701 -1696 -1701\n\t\tmu 0 4 1979 1978 1980 1981\n\t\tf 4 1695 1703 -1693 -1703\n\t\tmu 0 4 1981 1980 1982 1983\n\t\tf 4 -1704 -1702 -1700 -1698\n\t\tmu 0 4 1975 1984 1985 1976\n\t\tf 4 1702 1696 1698 1700\n\t\tmu 0 4 1986 1974 1977 1987\n\t\tf 4 1704 1709 -1706 -1709\n\t\tmu 0 4 1988 1989 1990 1991\n\t\tf 4 1705 1711 -1707 -1711\n\t\tmu 0 4 1991 1990 1992 1993\n\t\tf 4 1706 1713 -1708 -1713\n\t\tmu 0 4 1993 1992 1994 1995\n\t\tf 4 1707 1715 -1705 -1715\n\t\tmu 0 4 1995 1994 1996 1997\n\t\tf 4 -1716 -1714 -1712 -1710\n\t\tmu 0 4 1989 1998 1999 1990\n\t\tf 4 1714 1708 1710 1712\n\t\tmu 0 4 2000 1988 1991 2001\n\t\tf 4 1716 1721 -1718 -1721\n\t\tmu 0 4 2002 2003 2004 2005\n\t\tf 4 1717 1723 -1719 -1723\n\t\tmu 0 4 2005 2004 2006 2007\n\t\tf 4 1718 1725 -1720 -1725\n\t\tmu 0 4 2007 2006 2008 2009\n\t\tf 4 1719 1727 -1717 -1727\n\t\tmu 0 4 2009 2008 2010 2011\n\t\tf 4 -1728 -1726 -1724 -1722\n\t\tmu 0 4 2003 2012 2013 2004\n\t\tf 4 1726 1720 1722 1724\n\t\tmu 0 4 2014 2002 2005 2015\n\t\tf 4 1728 1733 -1730 -1733\n\t\tmu 0 4 2016 2017 2018 2019\n\t\tf 4 1729 1735 -1731 -1735\n\t\tmu 0 4 2019 2018 2020 2021\n\t\tf 4 1730 1737 -1732 -1737\n\t\tmu 0 4 2021 2020 2022 2023\n\t\tf 4 1731 1739 -1729 -1739\n\t\tmu 0 4 2023 2022 2024 2025\n\t\tf 4 -1740 -1738 -1736 -1734\n\t\tmu 0 4 2017 2026 2027 2018\n\t\tf 4 1738 1732 1734 1736\n\t\tmu 0 4 2028 2016 2019 2029\n\t\tf 4 1740 1745 -1742 -1745\n\t\tmu 0 4 2030 2031 2032 2033\n\t\tf 4 1741 1747 -1743 -1747\n\t\tmu 0 4 2033 2032 2034 2035\n\t\tf 4 1742 1749 -1744 -1749\n\t\tmu 0 4 2035 2034 2036 2037\n\t\tf 4 1743 1751 -1741 -1751\n\t\tmu 0 4 2037 2036 2038 2039\n\t\tf 4 -1752 -1750 -1748 -1746\n\t\tmu 0 4 2031 2040 2041 2032\n\t\tf 4 1750 1744 1746 1748\n\t\tmu 0 4 2042 2030 2033 2043\n\t\tf 4 1752 1757 -1754 -1757\n\t\tmu 0 4 2044 2045 2046 2047\n\t\tf 4 1753 1759 -1755 -1759\n\t\tmu 0 4 2047 2046 2048 2049\n\t\tf 4 1754 1761 -1756 -1761\n\t\tmu 0 4 2049 2048 2050 2051\n\t\tf 4 1755 1763 -1753 -1763\n\t\tmu 0 4 2051 2050 2052 2053\n\t\tf 4 -1764 -1762 -1760 -1758\n\t\tmu 0 4 2045 2054 2055 2046\n\t\tf 4 1762 1756 1758 1760\n\t\tmu 0 4 2056 2044 2047 2057\n\t\tf 4 1764 1769 -1766 -1769\n\t\tmu 0 4 2058 2059 2060 2061\n\t\tf 4 1765 1771 -1767 -1771\n\t\tmu 0 4 2061 2060 2062 2063\n\t\tf 4 1766 1773 -1768 -1773\n\t\tmu 0 4 2063 2062 2064 2065\n\t\tf 4 1767 1775 -1765 -1775\n\t\tmu 0 4 2065 2064 2066 2067\n\t\tf 4 -1776 -1774 -1772 -1770\n\t\tmu 0 4 2059 2068 2069 2060\n\t\tf 4 1774 1768 1770 1772\n\t\tmu 0 4 2070 2058 2061 2071\n\t\tf 4 1776 1781 -1778 -1781\n\t\tmu 0 4 2072 2073 2074 2075\n\t\tf 4 1777 1783 -1779 -1783\n\t\tmu 0 4 2075 2074 2076 2077\n\t\tf 4 1778 1785 -1780 -1785\n\t\tmu 0 4 2077 2076 2078 2079\n\t\tf 4 1779 1787 -1777 -1787\n\t\tmu 0 4 2079 2078 2080 2081\n\t\tf 4 -1788 -1786 -1784 -1782\n\t\tmu 0 4 2073 2082 2083 2074\n\t\tf 4 1786 1780 1782 1784\n\t\tmu 0 4 2084 2072 2075 2085\n\t\tf 4 1788 1793 -1790 -1793\n\t\tmu 0 4 2086 2087 2088 2089\n\t\tf 4 1789 1795 -1791 -1795\n\t\tmu 0 4 2089 2088 2090 2091\n\t\tf 4 1790 1797 -1792 -1797\n\t\tmu 0 4 2091 2090 2092 2093\n\t\tf 4 1791 1799 -1789 -1799\n\t\tmu 0 4 2093 2092 2094 2095\n\t\tf 4 -1800 -1798 -1796 -1794\n\t\tmu 0 4 2087 2096 2097 2088\n\t\tf 4 1798 1792 1794 1796\n\t\tmu 0 4 2098 2086 2089 2099\n\t\tf 4 1800 1805 -1802 -1805\n\t\tmu 0 4 2100 2101 2102 2103\n\t\tf 4 1801 1807 -1803 -1807\n\t\tmu 0 4 2103 2102 2104 2105\n\t\tf 4 1802 1809 -1804 -1809\n\t\tmu 0 4 2105 2104 2106 2107\n\t\tf 4 1803 1811 -1801 -1811\n\t\tmu 0 4 2107 2106 2108 2109\n\t\tf 4 -1812 -1810 -1808 -1806\n\t\tmu 0 4 2101 2110 2111 2102\n\t\tf 4 1810 1804 1806 1808\n\t\tmu 0 4 2112 2100 2103 2113\n\t\tf 4 1812 1817 -1814 -1817\n\t\tmu 0 4 2114 2115 2116 2117\n\t\tf 4 1813 1819 -1815 -1819\n\t\tmu 0 4 2117 2116 2118 2119\n\t\tf 4 1814 1821 -1816 -1821\n\t\tmu 0 4 2119 2118 2120 2121\n\t\tf 4 1815 1823 -1813 -1823\n\t\tmu 0 4 2121 2120 2122 2123\n\t\tf 4 -1824 -1822 -1820 -1818\n\t\tmu 0 4 2115 2124 2125 2116\n\t\tf 4 1822 1816 1818 1820\n\t\tmu 0 4 2126 2114 2117 2127\n\t\tf 4 1824 1829 -1826 -1829\n\t\tmu 0 4 2128 2129 2130 2131\n\t\tf 4 1825 1831 -1827 -1831\n\t\tmu 0 4 2131 2130 2132 2133\n\t\tf 4 1826 1833 -1828 -1833\n\t\tmu 0 4 2133 2132 2134 2135\n\t\tf 4 1827 1835 -1825 -1835\n\t\tmu 0 4 2135 2134 2136 2137\n\t\tf 4 -1836 -1834 -1832 -1830\n\t\tmu 0 4 2129 2138 2139 2130\n\t\tf 4 1834 1828 1830 1832\n\t\tmu 0 4 2140 2128 2131 2141\n\t\tf 4 1836 1841 -1838 -1841\n\t\tmu 0 4 2142 2143 2144 2145\n\t\tf 4 1837 1843 -1839 -1843\n\t\tmu 0 4 2145 2144 2146 2147\n\t\tf 4 1838 1845 -1840 -1845\n\t\tmu 0 4 2147 2146 2148 2149\n\t\tf 4 1839 1847 -1837 -1847\n\t\tmu 0 4 2149 2148 2150 2151\n\t\tf 4 -1848 -1846 -1844 -1842\n\t\tmu 0 4 2143 2152 2153 2144\n\t\tf 4 1846 1840 1842 1844\n\t\tmu 0 4 2154 2142 2145 2155\n\t\tf 4 1848 1853 -1850 -1853\n\t\tmu 0 4 2156 2157 2158 2159\n\t\tf 4 1849 1855 -1851 -1855\n\t\tmu 0 4 2159 2158 2160 2161\n\t\tf 4 1850 1857 -1852 -1857\n\t\tmu 0 4 2161 2160 2162 2163\n\t\tf 4 1851 1859 -1849 -1859\n\t\tmu 0 4 2163 2162 2164 2165\n\t\tf 4 -1860 -1858 -1856 -1854\n\t\tmu 0 4 2157 2166 2167 2158\n\t\tf 4 1858 1852 1854 1856\n\t\tmu 0 4 2168 2156 2159 2169\n\t\tf 4 1860 1865 -1862 -1865\n\t\tmu 0 4 2170 2171 2172 2173\n\t\tf 4 1861 1867 -1863 -1867\n\t\tmu 0 4 2173 2172 2174 2175\n\t\tf 4 1862 1869 -1864 -1869\n\t\tmu 0 4 2175 2174 2176 2177\n\t\tf 4 1863 1871 -1861 -1871\n\t\tmu 0 4 2177 2176 2178 2179\n\t\tf 4 -1872 -1870 -1868 -1866\n\t\tmu 0 4 2171 2180 2181 2172\n\t\tf 4 1870 1864 1866 1868\n\t\tmu 0 4 2182 2170 2173 2183\n\t\tf 4 1872 1877 -1874 -1877\n\t\tmu 0 4 2184 2185 2186 2187\n\t\tf 4 1873 1879 -1875 -1879\n\t\tmu 0 4 2187 2186 2188 2189\n\t\tf 4 1874 1881 -1876 -1881\n\t\tmu 0 4 2189 2188 2190 2191\n\t\tf 4 1875 1883 -1873 -1883\n\t\tmu 0 4 2191 2190 2192 2193\n\t\tf 4 -1884 -1882 -1880 -1878\n\t\tmu 0 4 2185 2194 2195 2186\n\t\tf 4 1882 1876 1878 1880\n\t\tmu 0 4 2196 2184 2187 2197\n\t\tf 4 1884 1889 -1886 -1889\n\t\tmu 0 4 2198 2199 2200 2201\n\t\tf 4 1885 1891 -1887 -1891\n\t\tmu 0 4 2201 2200 2202 2203\n\t\tf 4 1886 1893 -1888 -1893\n\t\tmu 0 4 2203 2202 2204 2205\n\t\tf 4 1887 1895 -1885 -1895\n\t\tmu 0 4 2205 2204 2206 2207\n\t\tf 4 -1896 -1894 -1892 -1890\n\t\tmu 0 4 2199 2208 2209 2200\n\t\tf 4 1894 1888 1890 1892\n\t\tmu 0 4 2210 2198 2201 2211\n\t\tf 4 1896 1901 -1898 -1901\n\t\tmu 0 4 2212 2213 2214 2215\n\t\tf 4 1897 1903 -1899 -1903\n\t\tmu 0 4 2215 2214 2216 2217\n\t\tf 4 1898 1905 -1900 -1905\n\t\tmu 0 4 2217 2216 2218 2219\n\t\tf 4 1899 1907 -1897 -1907\n\t\tmu 0 4 2219 2218 2220 2221\n\t\tf 4 -1908 -1906 -1904 -1902\n\t\tmu 0 4 2213 2222 2223 2214\n\t\tf 4 1906 1900 1902 1904\n\t\tmu 0 4 2224 2212 2215 2225\n\t\tf 4 1908 1913 -1910 -1913\n\t\tmu 0 4 2226 2227 2228 2229\n\t\tf 4 1909 1915 -1911 -1915\n\t\tmu 0 4 2229 2228 2230 2231\n\t\tf 4 1910 1917 -1912 -1917\n\t\tmu 0 4 2231 2230 2232 2233\n\t\tf 4 1911 1919 -1909 -1919\n\t\tmu 0 4 2233 2232 2234 2235\n\t\tf 4 -1920 -1918 -1916 -1914\n\t\tmu 0 4 2227 2236 2237 2228\n\t\tf 4 1918 1912 1914 1916\n\t\tmu 0 4 2238 2226 2229 2239\n\t\tf 4 1920 1925 -1922 -1925\n\t\tmu 0 4 2240 2241 2242 2243\n\t\tf 4 1921 1927 -1923 -1927\n\t\tmu 0 4 2243 2242 2244 2245\n\t\tf 4 1922 1929 -1924 -1929\n\t\tmu 0 4 2245 2244 2246 2247\n\t\tf 4 1923 1931 -1921 -1931\n\t\tmu 0 4 2247 2246 2248 2249\n\t\tf 4 -1932 -1930 -1928 -1926\n\t\tmu 0 4 2241 2250 2251 2242\n\t\tf 4 1930 1924 1926 1928\n\t\tmu 0 4 2252 2240 2243 2253\n\t\tf 4 1932 1937 -1934 -1937\n\t\tmu 0 4 2254 2255 2256 2257\n\t\tf 4 1933 1939 -1935 -1939\n\t\tmu 0 4 2257 2256 2258 2259\n\t\tf 4 1934 1941 -1936 -1941\n\t\tmu 0 4 2259 2258 2260 2261\n\t\tf 4 1935 1943 -1933 -1943\n\t\tmu 0 4 2261 2260 2262 2263\n\t\tf 4 -1944 -1942 -1940 -1938\n\t\tmu 0 4 2255 2264 2265 2256\n\t\tf 4 1942 1936 1938 1940\n\t\tmu 0 4 2266 2254 2257 2267\n\t\tf 4 1944 1949 -1946 -1949\n\t\tmu 0 4 2268 2269 2270 2271\n\t\tf 4 1945 1951 -1947 -1951\n\t\tmu 0 4 2271 2270 2272 2273\n\t\tf 4 1946 1953 -1948 -1953\n\t\tmu 0 4 2273 2272 2274 2275\n\t\tf 4 1947 1955 -1945 -1955\n\t\tmu 0 4 2275 2274 2276 2277\n\t\tf 4 -1956 -1954 -1952 -1950\n\t\tmu 0 4 2269 2278 2279 2270\n\t\tf 4 1954 1948 1950 1952\n\t\tmu 0 4 2280 2268 2271 2281\n\t\tf 4 1956 1961 -1958 -1961\n\t\tmu 0 4 2282 2283 2284 2285\n\t\tf 4 1957 1963 -1959 -1963\n\t\tmu 0 4 2285 2284 2286 2287\n\t\tf 4 1958 1965 -1960 -1965\n\t\tmu 0 4 2287 2286 2288 2289\n\t\tf 4 1959 1967 -1957 -1967\n\t\tmu 0 4 2289 2288 2290 2291\n\t\tf 4 -1968 -1966 -1964 -1962\n\t\tmu 0 4 2283 2292 2293 2284\n\t\tf 4 1966 1960 1962 1964\n\t\tmu 0 4 2294 2282 2285 2295\n\t\tf 4 1968 1973 -1970 -1973\n\t\tmu 0 4 2296 2297 2298 2299\n\t\tf 4 1969 1975 -1971 -1975\n\t\tmu 0 4 2299 2298 2300 2301\n\t\tf 4 1970 1977 -1972 -1977\n\t\tmu 0 4 2301 2300 2302 2303\n\t\tf 4 1971 1979 -1969 -1979\n\t\tmu 0 4 2303 2302 2304 2305\n\t\tf 4 -1980 -1978 -1976 -1974\n\t\tmu 0 4 2297 2306 2307 2298\n\t\tf 4 1978 1972 1974 1976\n\t\tmu 0 4 2308 2296 2299 2309\n\t\tf 4 1980 1985 -1982 -1985\n\t\tmu 0 4 2310 2311 2312 2313\n\t\tf 4 1981 1987 -1983 -1987\n\t\tmu 0 4 2313 2312 2314 2315\n\t\tf 4 1982 1989 -1984 -1989\n\t\tmu 0 4 2315 2314 2316 2317\n\t\tf 4 1983 1991 -1981 -1991\n\t\tmu 0 4 2317 2316 2318 2319\n\t\tf 4 -1992 -1990 -1988 -1986\n\t\tmu 0 4 2311 2320 2321 2312\n\t\tf 4 1990 1984 1986 1988\n\t\tmu 0 4 2322 2310 2313 2323\n\t\tf 4 1992 1997 -1994 -1997\n\t\tmu 0 4 2324 2325 2326 2327\n\t\tf 4 1993 1999 -1995 -1999\n\t\tmu 0 4 2327 2326 2328 2329\n\t\tf 4 1994 2001 -1996 -2001\n\t\tmu 0 4 2329 2328 2330 2331\n\t\tf 4 1995 2003 -1993 -2003\n\t\tmu 0 4 2331 2330 2332 2333;\n\tsetAttr \".fc[1000:1031]\"\n\t\tf 4 -2004 -2002 -2000 -1998\n\t\tmu 0 4 2325 2334 2335 2326\n\t\tf 4 2002 1996 1998 2000\n\t\tmu 0 4 2336 2324 2327 2337\n\t\tf 4 2004 2009 -2006 -2009\n\t\tmu 0 4 2338 2339 2340 2341\n\t\tf 4 2005 2011 -2007 -2011\n\t\tmu 0 4 2341 2340 2342 2343\n\t\tf 4 2006 2013 -2008 -2013\n\t\tmu 0 4 2343 2342 2344 2345\n\t\tf 4 2007 2015 -2005 -2015\n\t\tmu 0 4 2345 2344 2346 2347\n\t\tf 4 -2016 -2014 -2012 -2010\n\t\tmu 0 4 2339 2348 2349 2340\n\t\tf 4 2014 2008 2010 2012\n\t\tmu 0 4 2350 2338 2341 2351\n\t\tf 4 2016 2021 -2018 -2021\n\t\tmu 0 4 2352 2353 2354 2355\n\t\tf 4 2017 2023 -2019 -2023\n\t\tmu 0 4 2355 2354 2356 2357\n\t\tf 4 2018 2025 -2020 -2025\n\t\tmu 0 4 2357 2356 2358 2359\n\t\tf 4 2019 2027 -2017 -2027\n\t\tmu 0 4 2359 2358 2360 2361\n\t\tf 4 -2028 -2026 -2024 -2022\n\t\tmu 0 4 2353 2362 2363 2354\n\t\tf 4 2026 2020 2022 2024\n\t\tmu 0 4 2364 2352 2355 2365\n\t\tf 4 2028 2033 -2030 -2033\n\t\tmu 0 4 2366 2367 2368 2369\n\t\tf 4 2029 2035 -2031 -2035\n\t\tmu 0 4 2369 2368 2370 2371\n\t\tf 4 2030 2037 -2032 -2037\n\t\tmu 0 4 2371 2370 2372 2373\n\t\tf 4 2031 2039 -2029 -2039\n\t\tmu 0 4 2373 2372 2374 2375\n\t\tf 4 -2040 -2038 -2036 -2034\n\t\tmu 0 4 2367 2376 2377 2368\n\t\tf 4 2038 2032 2034 2036\n\t\tmu 0 4 2378 2366 2369 2379\n\t\tf 4 2040 2045 -2042 -2045\n\t\tmu 0 4 2380 2381 2382 2383\n\t\tf 4 2041 2047 -2043 -2047\n\t\tmu 0 4 2383 2382 2384 2385\n\t\tf 4 2042 2049 -2044 -2049\n\t\tmu 0 4 2385 2384 2386 2387\n\t\tf 4 2043 2051 -2041 -2051\n\t\tmu 0 4 2387 2386 2388 2389\n\t\tf 4 -2052 -2050 -2048 -2046\n\t\tmu 0 4 2381 2390 2391 2382\n\t\tf 4 2050 2044 2046 2048\n\t\tmu 0 4 2392 2380 2383 2393\n\t\tf 4 2052 2057 -2054 -2057\n\t\tmu 0 4 2394 2395 2396 2397\n\t\tf 4 2053 2059 -2055 -2059\n\t\tmu 0 4 2397 2396 2398 2399\n\t\tf 4 2054 2061 -2056 -2061\n\t\tmu 0 4 2399 2398 2400 2401\n\t\tf 4 2055 2063 -2053 -2063\n\t\tmu 0 4 2401 2400 2402 2403\n\t\tf 4 -2064 -2062 -2060 -2058\n\t\tmu 0 4 2395 2404 2405 2396\n\t\tf 4 2062 2056 2058 2060\n\t\tmu 0 4 2406 2394 2397 2407;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"303B2B67-47B7-6E78-8820-05AB30D606B5\";\n\tsetAttr \".t\" -type \"double3\" 21.94939025973537 29.792465507239008 25.738462516388896 ;\n\tsetAttr \".r\" -type \"double3\" -45.79961900730315 41.000000000000355 -2.1071381394977864e-15 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"BD85422D-4BEE-06AB-BACE-7DBD783134A8\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 44.927711919359965;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"4683D548-4CB3-1D93-DCC6-CCB1A9AEFB62\";\n\tsetAttr -s 7 \".lnk\";\n\tsetAttr -s 7 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"1863084B-432E-05B3-4FCF-80B7359BDB3D\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"1CF1BCAB-4B2E-2638-3803-508283D58E81\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"962591C3-4942-32E2-99A4-5A8665BCE7EF\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"5F78CABE-4E1C-4A10-CCA9-CF98F2D9CABE\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"39BDB29C-4AF2-CA99-71DB-E48B6DFC2A16\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"4DAC6715-445A-0676-C776-A2A4E60D7B3A\";\n\tsetAttr \".g\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"4D043C4A-429E-E5AB-1103-4791D7A045E7\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1669\\n            -height 1447\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -autoFitTime 0\\n\"\n\t\t+ \"                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n\"\n\t\t+ \"                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n\"\n\t\t+ \"                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 0 \\n                $editorName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n\"\n\t\t+ \"                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n\"\n\t\t+ \"                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n\"\n\t\t+ \"                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n\"\n\t\t+ \"                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n\"\n\t\t+ \"                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\"\n\t\t+ \"\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1669\\\\n    -height 1447\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1669\\\\n    -height 1447\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"598A3F36-4262-4847-52B4-0A89E9054834\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode groupId -n \"groupId1\";\n\trename -uid \"6916DEC6-483C-8C62-4504-2E966E14F5F3\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"0CD29B91-4AC4-D539-7C3F-918776F0DC70\";\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"A0004028-432C-996A-EC5E-F1830097EAEB\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"351991DC-44C1-50A9-B8C3-6394D2BACF0B\";\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"96F22B07-4A29-3CF2-1312-6FB6FED76A59\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert3\";\n\trename -uid \"33CE80EB-4BC7-2CA6-595C-9CB4CF8B0E4D\";\n\tsetAttr \".c\" -type \"float3\" 0 0 1 ;\ncreateNode shadingEngine -n \"lambert3SG\";\n\trename -uid \"90EC03C5-4980-25D5-0135-EDB31ED46B4E\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"ED657469-4A1E-A4C1-302D-9F8ABCA0076E\";\ncreateNode groupId -n \"groupId3\";\n\trename -uid \"E16FB584-49D8-58ED-E919-D0A477F7C449\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert4\";\n\trename -uid \"6DDF4970-431F-E97D-3935-288C97620148\";\n\tsetAttr \".c\" -type \"float3\" 0 1 0 ;\ncreateNode shadingEngine -n \"lambert4SG\";\n\trename -uid \"12731EA1-4A5C-3BA1-90D8-7A8CDFE83BE0\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo3\";\n\trename -uid \"8E4CC743-4732-E704-B13C-68A0D93CDDA2\";\ncreateNode groupId -n \"groupId4\";\n\trename -uid \"04E0951A-4E24-EB2D-47DD-9290479CE2B4\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert5\";\n\trename -uid \"790E2B42-4642-7C43-B9B7-48BE5CCFD990\";\n\tsetAttr \".c\" -type \"float3\" 0 1 1 ;\ncreateNode shadingEngine -n \"lambert5SG\";\n\trename -uid \"DB900D64-4061-C89A-8E71-59A5702EA8B3\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo4\";\n\trename -uid \"74333DFD-4793-241D-31DC-F686CADC142E\";\ncreateNode groupId -n \"groupId5\";\n\trename -uid \"02B681EA-4069-8770-75C0-74AFD4A129EA\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert6\";\n\trename -uid \"85C23F83-492C-588B-FD1B-1A8EF0DCBE85\";\n\tsetAttr \".c\" -type \"float3\" 1 1 0 ;\ncreateNode shadingEngine -n \"lambert6SG\";\n\trename -uid \"E284AD76-40AA-828B-24D6-5EB8FB910E05\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo5\";\n\trename -uid \"B67DDF3E-4FAE-9463-6723-E9B7B079AD58\";\ncreateNode groupId -n \"groupId6\";\n\trename -uid \"8F1FBACE-4E06-51DA-F148-40B388BAA372\";\n\tsetAttr \".ihi\" 0;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"211DDCFC-424B-189E-4344-28AAEB1A6103\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"B29DED36-4F71-50B8-51FE-9D88449F2716\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/Users/bugfa/Documents/maya/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"untitled\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2019 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"-cam persp\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 1;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 0;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 7 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 9 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"groupId1.id\" \"pCube5Shape.iog.og[0].gid\";\nconnectAttr \":initialShadingGroup.mwc\" \"pCube5Shape.iog.og[0].gco\";\nconnectAttr \"groupId2.id\" \"pCube5Shape.iog.og[1].gid\";\nconnectAttr \"lambert2SG.mwc\" \"pCube5Shape.iog.og[1].gco\";\nconnectAttr \"groupId3.id\" \"pCube5Shape.iog.og[2].gid\";\nconnectAttr \"lambert3SG.mwc\" \"pCube5Shape.iog.og[2].gco\";\nconnectAttr \"groupId4.id\" \"pCube5Shape.iog.og[3].gid\";\nconnectAttr \"lambert4SG.mwc\" \"pCube5Shape.iog.og[3].gco\";\nconnectAttr \"groupId5.id\" \"pCube5Shape.iog.og[4].gid\";\nconnectAttr \"lambert5SG.mwc\" \"pCube5Shape.iog.og[4].gco\";\nconnectAttr \"groupId6.id\" \"pCube5Shape.iog.og[5].gid\";\nconnectAttr \"lambert6SG.mwc\" \"pCube5Shape.iog.og[5].gco\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert4SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert5SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert6SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert4SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert5SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert6SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"groupId2.msg\" \"lambert2SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[1]\" \"lambert2SG.dsm\" -na;\nconnectAttr \"lambert2SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo1.m\";\nconnectAttr \"lambert3.oc\" \"lambert3SG.ss\";\nconnectAttr \"groupId3.msg\" \"lambert3SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[2]\" \"lambert3SG.dsm\" -na;\nconnectAttr \"lambert3SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"lambert3.msg\" \"materialInfo2.m\";\nconnectAttr \"lambert4.oc\" \"lambert4SG.ss\";\nconnectAttr \"groupId4.msg\" \"lambert4SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[3]\" \"lambert4SG.dsm\" -na;\nconnectAttr \"lambert4SG.msg\" \"materialInfo3.sg\";\nconnectAttr \"lambert4.msg\" \"materialInfo3.m\";\nconnectAttr \"lambert5.oc\" \"lambert5SG.ss\";\nconnectAttr \"groupId5.msg\" \"lambert5SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[4]\" \"lambert5SG.dsm\" -na;\nconnectAttr \"lambert5SG.msg\" \"materialInfo4.sg\";\nconnectAttr \"lambert5.msg\" \"materialInfo4.m\";\nconnectAttr \"lambert6.oc\" \"lambert6SG.ss\";\nconnectAttr \"groupId6.msg\" \"lambert6SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[5]\" \"lambert6SG.dsm\" -na;\nconnectAttr \"lambert6SG.msg\" \"materialInfo5.sg\";\nconnectAttr \"lambert6.msg\" \"materialInfo5.m\";\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert3SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert4SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert5SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert6SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert3.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert4.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert5.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert6.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCube5Shape.iog.og[0]\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"groupId1.msg\" \":initialShadingGroup.gn\" -na;\n// End of CubeGrid1.ma\n"
  },
  {
    "path": "maya/scenes/CubeGrid2.ma",
    "content": "//Maya ASCII 2018ff08 scene\n//Name: CubeGrid2.ma\n//Last modified: Sun, Feb 03, 2019 04:40:56 PM\n//Codeset: 1252\nrequires maya \"2018ff08\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201804211841-f3d65dda2a\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"AAFB104E-4FD8-12C2-F062-5FBBE22E28D9\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -0.221728913707926 63.443268197728337 63.52039676422865 ;\n\tsetAttr \".r\" -type \"double3\" -44.738352729596023 -0.19999999999897924 -2.9817881799460347e-16 ;\n\tsetAttr \".rp\" -type \"double3\" 0 -7.1054273576010019e-15 0 ;\n\tsetAttr \".rpt\" -type \"double3\" 2.788632745664467e-15 3.8507534731040169e-15 5.6672500606136927e-15 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"C611669F-4502-BC51-FDD7-78A470756B8D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 89.424521134906598;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0 0.5 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"3D87D8C2-43B0-A58C-4FD6-EB98FF0F3463\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"B38C9587-472E-AE2E-6963-A1B23033C336\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"1C1F28E2-4012-E661-3EE1-84AD7FB8085C\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"993AA8C2-4C06-47F7-9808-32A5E799C252\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"25129461-45BE-2012-903B-0582F9F6D376\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"F10EC166-4EB7-CE05-6F7D-5182652D3025\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube5\";\n\trename -uid \"91003C93-48A2-9DC1-3A34-7EAA399A186E\";\ncreateNode mesh -n \"pCube5Shape\" -p \"pCube5\";\n\trename -uid \"AD70B5C7-4E16-F990-4E90-3CB6607ED719\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 6 \".iog[0].og\";\n\tsetAttr \".iog[0].og[0].gcl\" -type \"componentList\" 6 \"f[0:47]\" \"f[54:479]\" \"f[486:587]\" \"f[594:611]\" \"f[618:623]\" \"f[630:1031]\";\n\tsetAttr \".iog[0].og[1].gcl\" -type \"componentList\" 1 \"f[480:485]\";\n\tsetAttr \".iog[0].og[2].gcl\" -type \"componentList\" 1 \"f[624:629]\";\n\tsetAttr \".iog[0].og[3].gcl\" -type \"componentList\" 1 \"f[612:617]\";\n\tsetAttr \".iog[0].og[4].gcl\" -type \"componentList\" 1 \"f[588:593]\";\n\tsetAttr \".iog[0].og[5].gcl\" -type \"componentList\" 1 \"f[48:53]\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.5 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 2408 \".uvst[0].uvsp\";\n\tsetAttr \".uvst[0].uvsp[0:249]\" -type \"float2\" 0.375 0 0.625 0 0.375 0.25\n\t\t 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25;\n\tsetAttr \".uvst[0].uvsp[250:499]\" 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1;\n\tsetAttr \".uvst[0].uvsp[500:749]\" 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75;\n\tsetAttr \".uvst[0].uvsp[750:999]\" 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0\n\t\t 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375\n\t\t 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625\n\t\t 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5;\n\tsetAttr \".uvst[0].uvsp[1000:1249]\" 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25;\n\tsetAttr \".uvst[0].uvsp[1250:1499]\" 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75\n\t\t 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0;\n\tsetAttr \".uvst[0].uvsp[1500:1749]\" 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25;\n\tsetAttr \".uvst[0].uvsp[1750:1999]\" 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625\n\t\t 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125\n\t\t 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75\n\t\t 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25;\n\tsetAttr \".uvst[0].uvsp[2000:2249]\" 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25\n\t\t 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875\n\t\t 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5\n\t\t 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1;\n\tsetAttr \".uvst[0].uvsp[2250:2407]\" 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25\n\t\t 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75\n\t\t 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0\n\t\t 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875\n\t\t 0 0.875 0.25 0.125 0 0.125 0.25 0.375 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375\n\t\t 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25 0.375\n\t\t 0 0.625 0 0.625 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1\n\t\t 0.375 1 0.875 0 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 1376 \".vt\";\n\tsetAttr \".vt[0:165]\"  -4.5 -0.5 0.5 -3.5 -0.5 0.5 -4.5 0.5 0.5 -3.5 0.5 0.5\n\t\t -4.5 0.5 -0.5 -3.5 0.5 -0.5 -4.5 -0.5 -0.5 -3.5 -0.5 -0.5 -2.5 -0.5 0.5 -1.5 -0.5 0.5\n\t\t -2.5 0.5 0.5 -1.5 0.5 0.5 -2.5 0.5 -0.5 -1.5 0.5 -0.5 -2.5 -0.5 -0.5 -1.5 -0.5 -0.5\n\t\t -10.5 -0.5 0.5 -9.5 -0.5 0.5 -10.5 0.5 0.5 -9.5 0.5 0.5 -10.5 0.5 -0.5 -9.5 0.5 -0.5\n\t\t -10.5 -0.5 -0.5 -9.5 -0.5 -0.5 -8.5 -0.5 0.5 -7.5 -0.5 0.5 -8.5 0.5 0.5 -7.5 0.5 0.5\n\t\t -8.5 0.5 -0.5 -7.5 0.5 -0.5 -8.5 -0.5 -0.5 -7.5 -0.5 -0.5 -6.5 -0.5 0.5 -5.5 -0.5 0.5\n\t\t -6.5 0.5 0.5 -5.5 0.5 0.5 -6.5 0.5 -0.5 -5.5 0.5 -0.5 -6.5 -0.5 -0.5 -5.5 -0.5 -0.5\n\t\t -12.5 -0.5 0.5 -11.5 -0.5 0.5 -12.5 0.5 0.5 -11.5 0.5 0.5 -12.5 0.5 -0.5 -11.5 0.5 -0.5\n\t\t -12.5 -0.5 -0.5 -11.5 -0.5 -0.5 3.5 -0.5 0.5 4.5 -0.5 0.5 3.5 0.5 0.5 4.5 0.5 0.5\n\t\t 3.5 0.5 -0.5 4.5 0.5 -0.5 3.5 -0.5 -0.5 4.5 -0.5 -0.5 1.5 -0.5 0.5 2.5 -0.5 0.5 1.5 0.5 0.5\n\t\t 2.5 0.5 0.5 1.5 0.5 -0.5 2.5 0.5 -0.5 1.5 -0.5 -0.5 2.5 -0.5 -0.5 -0.5 -0.5 0.5 0.5 -0.5 0.5\n\t\t -0.5 0.5 0.5 0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5\n\t\t 9.5 -0.5 0.5 10.5 -0.5 0.5 9.5 0.5 0.5 10.5 0.5 0.5 9.5 0.5 -0.5 10.5 0.5 -0.5 9.5 -0.5 -0.5\n\t\t 10.5 -0.5 -0.5 -6.5 -0.5 -1.5 -5.5 -0.5 -1.5 -6.5 0.5 -1.5 -5.5 0.5 -1.5 -6.5 0.5 -2.5\n\t\t -5.5 0.5 -2.5 -6.5 -0.5 -2.5 -5.5 -0.5 -2.5 -8.5 -0.5 -1.5 -7.5 -0.5 -1.5 -8.5 0.5 -1.5\n\t\t -7.5 0.5 -1.5 -8.5 0.5 -2.5 -7.5 0.5 -2.5 -8.5 -0.5 -2.5 -7.5 -0.5 -2.5 7.5 -0.5 0.5\n\t\t 8.5 -0.5 0.5 7.5 0.5 0.5 8.5 0.5 0.5 7.5 0.5 -0.5 8.5 0.5 -0.5 7.5 -0.5 -0.5 8.5 -0.5 -0.5\n\t\t 11.5 -0.5 0.5 12.5 -0.5 0.5 11.5 0.5 0.5 12.5 0.5 0.5 11.5 0.5 -0.5 12.5 0.5 -0.5\n\t\t 11.5 -0.5 -0.5 12.5 -0.5 -0.5 -10.5 -0.5 -1.5 -9.5 -0.5 -1.5 -10.5 0.5 -1.5 -9.5 0.5 -1.5\n\t\t -10.5 0.5 -2.5 -9.5 0.5 -2.5 -10.5 -0.5 -2.5 -9.5 -0.5 -2.5 5.5 -0.5 0.5 6.5 -0.5 0.5\n\t\t 5.5 0.5 0.5 6.5 0.5 0.5 5.5 0.5 -0.5 6.5 0.5 -0.5 5.5 -0.5 -0.5 6.5 -0.5 -0.5 -2.5 -0.5 8.5\n\t\t -1.5 -0.5 8.5 -2.5 0.5 8.5 -1.5 0.5 8.5 -2.5 0.5 7.5 -1.5 0.5 7.5 -2.5 -0.5 7.5 -1.5 -0.5 7.5\n\t\t -10.5 -0.5 8.5 -9.5 -0.5 8.5 -10.5 0.5 8.5 -9.5 0.5 8.5 -10.5 0.5 7.5 -9.5 0.5 7.5\n\t\t -10.5 -0.5 7.5 -9.5 -0.5 7.5 -8.5 -0.5 8.5 -7.5 -0.5 8.5 -8.5 0.5 8.5 -7.5 0.5 8.5\n\t\t -8.5 0.5 7.5 -7.5 0.5 7.5 -8.5 -0.5 7.5 -7.5 -0.5 7.5 -4.5 -0.5 8.5 -3.5 -0.5 8.5\n\t\t -4.5 0.5 8.5 -3.5 0.5 8.5 -4.5 0.5 7.5 -3.5 0.5 7.5 -4.5 -0.5 7.5 -3.5 -0.5 7.5 -12.5 -0.5 -5.5\n\t\t -11.5 -0.5 -5.5 -12.5 0.5 -5.5 -11.5 0.5 -5.5 -12.5 0.5 -6.5 -11.5 0.5 -6.5;\n\tsetAttr \".vt[166:331]\" -12.5 -0.5 -6.5 -11.5 -0.5 -6.5 1.5 -0.5 -5.5 2.5 -0.5 -5.5\n\t\t 1.5 0.5 -5.5 2.5 0.5 -5.5 1.5 0.5 -6.5 2.5 0.5 -6.5 1.5 -0.5 -6.5 2.5 -0.5 -6.5 3.5 -0.5 -5.5\n\t\t 4.5 -0.5 -5.5 3.5 0.5 -5.5 4.5 0.5 -5.5 3.5 0.5 -6.5 4.5 0.5 -6.5 3.5 -0.5 -6.5 4.5 -0.5 -6.5\n\t\t -0.5 -0.5 -5.5 0.5 -0.5 -5.5 -0.5 0.5 -5.5 0.5 0.5 -5.5 -0.5 0.5 -6.5 0.5 0.5 -6.5\n\t\t -0.5 -0.5 -6.5 0.5 -0.5 -6.5 -4.5 -0.5 -5.5 -3.5 -0.5 -5.5 -4.5 0.5 -5.5 -3.5 0.5 -5.5\n\t\t -4.5 0.5 -6.5 -3.5 0.5 -6.5 -4.5 -0.5 -6.5 -3.5 -0.5 -6.5 -2.5 -0.5 -5.5 -1.5 -0.5 -5.5\n\t\t -2.5 0.5 -5.5 -1.5 0.5 -5.5 -2.5 0.5 -6.5 -1.5 0.5 -6.5 -2.5 -0.5 -6.5 -1.5 -0.5 -6.5\n\t\t 9.5 -0.5 -5.5 10.5 -0.5 -5.5 9.5 0.5 -5.5 10.5 0.5 -5.5 9.5 0.5 -6.5 10.5 0.5 -6.5\n\t\t 9.5 -0.5 -6.5 10.5 -0.5 -6.5 7.5 -0.5 -5.5 8.5 -0.5 -5.5 7.5 0.5 -5.5 8.5 0.5 -5.5\n\t\t 7.5 0.5 -6.5 8.5 0.5 -6.5 7.5 -0.5 -6.5 8.5 -0.5 -6.5 11.5 -0.5 -5.5 12.5 -0.5 -5.5\n\t\t 11.5 0.5 -5.5 12.5 0.5 -5.5 11.5 0.5 -6.5 12.5 0.5 -6.5 11.5 -0.5 -6.5 12.5 -0.5 -6.5\n\t\t 5.5 -0.5 -5.5 6.5 -0.5 -5.5 5.5 0.5 -5.5 6.5 0.5 -5.5 5.5 0.5 -6.5 6.5 0.5 -6.5 5.5 -0.5 -6.5\n\t\t 6.5 -0.5 -6.5 5.5 -0.5 -3.5 6.5 -0.5 -3.5 5.5 0.5 -3.5 6.5 0.5 -3.5 5.5 0.5 -4.5\n\t\t 6.5 0.5 -4.5 5.5 -0.5 -4.5 6.5 -0.5 -4.5 -10.5 -0.5 -5.5 -9.5 -0.5 -5.5 -10.5 0.5 -5.5\n\t\t -9.5 0.5 -5.5 -10.5 0.5 -6.5 -9.5 0.5 -6.5 -10.5 -0.5 -6.5 -9.5 -0.5 -6.5 -2.5 -0.5 -3.5\n\t\t -1.5 -0.5 -3.5 -2.5 0.5 -3.5 -1.5 0.5 -3.5 -2.5 0.5 -4.5 -1.5 0.5 -4.5 -2.5 -0.5 -4.5\n\t\t -1.5 -0.5 -4.5 -4.5 -0.5 -3.5 -3.5 -0.5 -3.5 -4.5 0.5 -3.5 -3.5 0.5 -3.5 -4.5 0.5 -4.5\n\t\t -3.5 0.5 -4.5 -4.5 -0.5 -4.5 -3.5 -0.5 -4.5 -6.5 -0.5 8.5 -5.5 -0.5 8.5 -6.5 0.5 8.5\n\t\t -5.5 0.5 8.5 -6.5 0.5 7.5 -5.5 0.5 7.5 -6.5 -0.5 7.5 -5.5 -0.5 7.5 9.5 -0.5 8.5 10.5 -0.5 8.5\n\t\t 9.5 0.5 8.5 10.5 0.5 8.5 9.5 0.5 7.5 10.5 0.5 7.5 9.5 -0.5 7.5 10.5 -0.5 7.5 -0.5 -0.5 8.5\n\t\t 0.5 -0.5 8.5 -0.5 0.5 8.5 0.5 0.5 8.5 -0.5 0.5 7.5 0.5 0.5 7.5 -0.5 -0.5 7.5 0.5 -0.5 7.5\n\t\t 1.5 -0.5 8.5 2.5 -0.5 8.5 1.5 0.5 8.5 2.5 0.5 8.5 1.5 0.5 7.5 2.5 0.5 7.5 1.5 -0.5 7.5\n\t\t 2.5 -0.5 7.5 3.5 -0.5 8.5 4.5 -0.5 8.5 3.5 0.5 8.5 4.5 0.5 8.5 3.5 0.5 7.5 4.5 0.5 7.5\n\t\t 3.5 -0.5 7.5 4.5 -0.5 7.5 -8.5 -0.5 6.5 -7.5 -0.5 6.5 -8.5 0.5 6.5 -7.5 0.5 6.5 -8.5 0.5 5.5\n\t\t -7.5 0.5 5.5 -8.5 -0.5 5.5 -7.5 -0.5 5.5 -12.5 -0.5 8.5 -11.5 -0.5 8.5 -12.5 0.5 8.5\n\t\t -11.5 0.5 8.5 -12.5 0.5 7.5 -11.5 0.5 7.5 -12.5 -0.5 7.5 -11.5 -0.5 7.5 -6.5 -0.5 6.5\n\t\t -5.5 -0.5 6.5 -6.5 0.5 6.5 -5.5 0.5 6.5;\n\tsetAttr \".vt[332:497]\" -6.5 0.5 5.5 -5.5 0.5 5.5 -6.5 -0.5 5.5 -5.5 -0.5 5.5\n\t\t 11.5 -0.5 8.5 12.5 -0.5 8.5 11.5 0.5 8.5 12.5 0.5 8.5 11.5 0.5 7.5 12.5 0.5 7.5 11.5 -0.5 7.5\n\t\t 12.5 -0.5 7.5 7.5 -0.5 8.5 8.5 -0.5 8.5 7.5 0.5 8.5 8.5 0.5 8.5 7.5 0.5 7.5 8.5 0.5 7.5\n\t\t 7.5 -0.5 7.5 8.5 -0.5 7.5 1.5 -0.5 -3.5 2.5 -0.5 -3.5 1.5 0.5 -3.5 2.5 0.5 -3.5 1.5 0.5 -4.5\n\t\t 2.5 0.5 -4.5 1.5 -0.5 -4.5 2.5 -0.5 -4.5 -0.5 -0.5 -3.5 0.5 -0.5 -3.5 -0.5 0.5 -3.5\n\t\t 0.5 0.5 -3.5 -0.5 0.5 -4.5 0.5 0.5 -4.5 -0.5 -0.5 -4.5 0.5 -0.5 -4.5 -8.5 -0.5 -3.5\n\t\t -7.5 -0.5 -3.5 -8.5 0.5 -3.5 -7.5 0.5 -3.5 -8.5 0.5 -4.5 -7.5 0.5 -4.5 -8.5 -0.5 -4.5\n\t\t -7.5 -0.5 -4.5 -6.5 -0.5 -3.5 -5.5 -0.5 -3.5 -6.5 0.5 -3.5 -5.5 0.5 -3.5 -6.5 0.5 -4.5\n\t\t -5.5 0.5 -4.5 -6.5 -0.5 -4.5 -5.5 -0.5 -4.5 -12.5 -0.5 -3.5 -11.5 -0.5 -3.5 -12.5 0.5 -3.5\n\t\t -11.5 0.5 -3.5 -12.5 0.5 -4.5 -11.5 0.5 -4.5 -12.5 -0.5 -4.5 -11.5 -0.5 -4.5 3.5 -0.5 -3.5\n\t\t 4.5 -0.5 -3.5 3.5 0.5 -3.5 4.5 0.5 -3.5 3.5 0.5 -4.5 4.5 0.5 -4.5 3.5 -0.5 -4.5 4.5 -0.5 -4.5\n\t\t -10.5 -0.5 -3.5 -9.5 -0.5 -3.5 -10.5 0.5 -3.5 -9.5 0.5 -3.5 -10.5 0.5 -4.5 -9.5 0.5 -4.5\n\t\t -10.5 -0.5 -4.5 -9.5 -0.5 -4.5 5.5 -0.5 -1.5 6.5 -0.5 -1.5 5.5 0.5 -1.5 6.5 0.5 -1.5\n\t\t 5.5 0.5 -2.5 6.5 0.5 -2.5 5.5 -0.5 -2.5 6.5 -0.5 -2.5 11.5 -0.5 -1.5 12.5 -0.5 -1.5\n\t\t 11.5 0.5 -1.5 12.5 0.5 -1.5 11.5 0.5 -2.5 12.5 0.5 -2.5 11.5 -0.5 -2.5 12.5 -0.5 -2.5\n\t\t 7.5 -0.5 -1.5 8.5 -0.5 -1.5 7.5 0.5 -1.5 8.5 0.5 -1.5 7.5 0.5 -2.5 8.5 0.5 -2.5 7.5 -0.5 -2.5\n\t\t 8.5 -0.5 -2.5 9.5 -0.5 -1.5 10.5 -0.5 -1.5 9.5 0.5 -1.5 10.5 0.5 -1.5 9.5 0.5 -2.5\n\t\t 10.5 0.5 -2.5 9.5 -0.5 -2.5 10.5 -0.5 -2.5 -2.5 -0.5 -1.5 -1.5 -0.5 -1.5 -2.5 0.5 -1.5\n\t\t -1.5 0.5 -1.5 -2.5 0.5 -2.5 -1.5 0.5 -2.5 -2.5 -0.5 -2.5 -1.5 -0.5 -2.5 -4.5 -0.5 -1.5\n\t\t -3.5 -0.5 -1.5 -4.5 0.5 -1.5 -3.5 0.5 -1.5 -4.5 0.5 -2.5 -3.5 0.5 -2.5 -4.5 -0.5 -2.5\n\t\t -3.5 -0.5 -2.5 -6.5 -0.5 -5.5 -5.5 -0.5 -5.5 -6.5 0.5 -5.5 -5.5 0.5 -5.5 -6.5 0.5 -6.5\n\t\t -5.5 0.5 -6.5 -6.5 -0.5 -6.5 -5.5 -0.5 -6.5 -8.5 -0.5 -5.5 -7.5 -0.5 -5.5 -8.5 0.5 -5.5\n\t\t -7.5 0.5 -5.5 -8.5 0.5 -6.5 -7.5 0.5 -6.5 -8.5 -0.5 -6.5 -7.5 -0.5 -6.5 11.5 -0.5 -3.5\n\t\t 12.5 -0.5 -3.5 11.5 0.5 -3.5 12.5 0.5 -3.5 11.5 0.5 -4.5 12.5 0.5 -4.5 11.5 -0.5 -4.5\n\t\t 12.5 -0.5 -4.5 7.5 -0.5 -3.5 8.5 -0.5 -3.5 7.5 0.5 -3.5 8.5 0.5 -3.5 7.5 0.5 -4.5\n\t\t 8.5 0.5 -4.5 7.5 -0.5 -4.5 8.5 -0.5 -4.5 9.5 -0.5 -3.5 10.5 -0.5 -3.5 9.5 0.5 -3.5\n\t\t 10.5 0.5 -3.5 9.5 0.5 -4.5 10.5 0.5 -4.5 9.5 -0.5 -4.5 10.5 -0.5 -4.5 -0.5 -0.5 -1.5\n\t\t 0.5 -0.5 -1.5;\n\tsetAttr \".vt[498:663]\" -0.5 0.5 -1.5 0.5 0.5 -1.5 -0.5 0.5 -2.5 0.5 0.5 -2.5\n\t\t -0.5 -0.5 -2.5 0.5 -0.5 -2.5 3.5 -0.5 -1.5 4.5 -0.5 -1.5 3.5 0.5 -1.5 4.5 0.5 -1.5\n\t\t 3.5 0.5 -2.5 4.5 0.5 -2.5 3.5 -0.5 -2.5 4.5 -0.5 -2.5 1.5 -0.5 -1.5 2.5 -0.5 -1.5\n\t\t 1.5 0.5 -1.5 2.5 0.5 -1.5 1.5 0.5 -2.5 2.5 0.5 -2.5 1.5 -0.5 -2.5 2.5 -0.5 -2.5 -12.5 -0.5 -1.5\n\t\t -11.5 -0.5 -1.5 -12.5 0.5 -1.5 -11.5 0.5 -1.5 -12.5 0.5 -2.5 -11.5 0.5 -2.5 -12.5 -0.5 -2.5\n\t\t -11.5 -0.5 -2.5 11.5 -0.5 2.5 12.5 -0.5 2.5 11.5 0.5 2.5 12.5 0.5 2.5 11.5 0.5 1.5\n\t\t 12.5 0.5 1.5 11.5 -0.5 1.5 12.5 -0.5 1.5 7.5 -0.5 2.5 8.5 -0.5 2.5 7.5 0.5 2.5 8.5 0.5 2.5\n\t\t 7.5 0.5 1.5 8.5 0.5 1.5 7.5 -0.5 1.5 8.5 -0.5 1.5 9.5 -0.5 2.5 10.5 -0.5 2.5 9.5 0.5 2.5\n\t\t 10.5 0.5 2.5 9.5 0.5 1.5 10.5 0.5 1.5 9.5 -0.5 1.5 10.5 -0.5 1.5 -2.5 -0.5 2.5 -1.5 -0.5 2.5\n\t\t -2.5 0.5 2.5 -1.5 0.5 2.5 -2.5 0.5 1.5 -1.5 0.5 1.5 -2.5 -0.5 1.5 -1.5 -0.5 1.5 -4.5 -0.5 2.5\n\t\t -3.5 -0.5 2.5 -4.5 0.5 2.5 -3.5 0.5 2.5 -4.5 0.5 1.5 -3.5 0.5 1.5 -4.5 -0.5 1.5 -3.5 -0.5 1.5\n\t\t -0.5 -0.5 2.5 0.5 -0.5 2.5 -0.5 0.5 2.5 0.5 0.5 2.5 -0.5 0.5 1.5 0.5 0.5 1.5 -0.5 -0.5 1.5\n\t\t 0.5 -0.5 1.5 3.5 -0.5 2.5 4.5 -0.5 2.5 3.5 0.5 2.5 4.5 0.5 2.5 3.5 0.5 1.5 4.5 0.5 1.5\n\t\t 3.5 -0.5 1.5 4.5 -0.5 1.5 1.5 -0.5 2.5 2.5 -0.5 2.5 1.5 0.5 2.5 2.5 0.5 2.5 1.5 0.5 1.5\n\t\t 2.5 0.5 1.5 1.5 -0.5 1.5 2.5 -0.5 1.5 -12.5 -0.5 2.5 -11.5 -0.5 2.5 -12.5 0.5 2.5\n\t\t -11.5 0.5 2.5 -12.5 0.5 1.5 -11.5 0.5 1.5 -12.5 -0.5 1.5 -11.5 -0.5 1.5 5.5 -0.5 8.5\n\t\t 6.5 -0.5 8.5 5.5 0.5 8.5 6.5 0.5 8.5 5.5 0.5 7.5 6.5 0.5 7.5 5.5 -0.5 7.5 6.5 -0.5 7.5\n\t\t -10.5 -0.5 6.5 -9.5 -0.5 6.5 -10.5 0.5 6.5 -9.5 0.5 6.5 -10.5 0.5 5.5 -9.5 0.5 5.5\n\t\t -10.5 -0.5 5.5 -9.5 -0.5 5.5 -10.5 -0.5 -11.5 -9.5 -0.5 -11.5 -10.5 0.5 -11.5 -9.5 0.5 -11.5\n\t\t -10.5 0.5 -12.5 -9.5 0.5 -12.5 -10.5 -0.5 -12.5 -9.5 -0.5 -12.5 -6.5 -0.5 -11.5 -5.5 -0.5 -11.5\n\t\t -6.5 0.5 -11.5 -5.5 0.5 -11.5 -6.5 0.5 -12.5 -5.5 0.5 -12.5 -6.5 -0.5 -12.5 -5.5 -0.5 -12.5\n\t\t 1.5 -0.5 -11.5 2.5 -0.5 -11.5 1.5 0.5 -11.5 2.5 0.5 -11.5 1.5 0.5 -12.5 2.5 0.5 -12.5\n\t\t 1.5 -0.5 -12.5 2.5 -0.5 -12.5 -12.5 -0.5 -11.5 -11.5 -0.5 -11.5 -12.5 0.5 -11.5 -11.5 0.5 -11.5\n\t\t -12.5 0.5 -12.5 -11.5 0.5 -12.5 -12.5 -0.5 -12.5 -11.5 -0.5 -12.5 -4.5 -0.5 -11.5\n\t\t -3.5 -0.5 -11.5 -4.5 0.5 -11.5 -3.5 0.5 -11.5 -4.5 0.5 -12.5 -3.5 0.5 -12.5 -4.5 -0.5 -12.5\n\t\t -3.5 -0.5 -12.5 -0.5 -0.5 -11.5 0.5 -0.5 -11.5 -0.5 0.5 -11.5 0.5 0.5 -11.5 -0.5 0.5 -12.5\n\t\t 0.5 0.5 -12.5 -0.5 -0.5 -12.5 0.5 -0.5 -12.5;\n\tsetAttr \".vt[664:829]\" -2.5 -0.5 12.5 -1.5 -0.5 12.5 -2.5 0.5 12.5 -1.5 0.5 12.5\n\t\t -2.5 0.5 11.5 -1.5 0.5 11.5 -2.5 -0.5 11.5 -1.5 -0.5 11.5 -0.5 -0.5 10.5 0.5 -0.5 10.5\n\t\t -0.5 0.5 10.5 0.5 0.5 10.5 -0.5 0.5 9.5 0.5 0.5 9.5 -0.5 -0.5 9.5 0.5 -0.5 9.5 9.5 -0.5 8.5\n\t\t 10.5 -0.5 8.5 9.5 0.5 8.5 10.5 0.5 8.5 9.5 0.5 7.5 10.5 0.5 7.5 9.5 -0.5 7.5 10.5 -0.5 7.5\n\t\t 5.5 -0.5 -11.5 6.5 -0.5 -11.5 5.5 0.5 -11.5 6.5 0.5 -11.5 5.5 0.5 -12.5 6.5 0.5 -12.5\n\t\t 5.5 -0.5 -12.5 6.5 -0.5 -12.5 -4.5 -0.5 10.5 -3.5 -0.5 10.5 -4.5 0.5 10.5 -3.5 0.5 10.5\n\t\t -4.5 0.5 9.5 -3.5 0.5 9.5 -4.5 -0.5 9.5 -3.5 -0.5 9.5 1.5 -0.5 10.5 2.5 -0.5 10.5\n\t\t 1.5 0.5 10.5 2.5 0.5 10.5 1.5 0.5 9.5 2.5 0.5 9.5 1.5 -0.5 9.5 2.5 -0.5 9.5 3.5 -0.5 10.5\n\t\t 4.5 -0.5 10.5 3.5 0.5 10.5 4.5 0.5 10.5 3.5 0.5 9.5 4.5 0.5 9.5 3.5 -0.5 9.5 4.5 -0.5 9.5\n\t\t 9.5 -0.5 -11.5 10.5 -0.5 -11.5 9.5 0.5 -11.5 10.5 0.5 -11.5 9.5 0.5 -12.5 10.5 0.5 -12.5\n\t\t 9.5 -0.5 -12.5 10.5 -0.5 -12.5 7.5 -0.5 -11.5 8.5 -0.5 -11.5 7.5 0.5 -11.5 8.5 0.5 -11.5\n\t\t 7.5 0.5 -12.5 8.5 0.5 -12.5 7.5 -0.5 -12.5 8.5 -0.5 -12.5 7.5 -0.5 8.5 8.5 -0.5 8.5\n\t\t 7.5 0.5 8.5 8.5 0.5 8.5 7.5 0.5 7.5 8.5 0.5 7.5 7.5 -0.5 7.5 8.5 -0.5 7.5 11.5 -0.5 8.5\n\t\t 12.5 -0.5 8.5 11.5 0.5 8.5 12.5 0.5 8.5 11.5 0.5 7.5 12.5 0.5 7.5 11.5 -0.5 7.5 12.5 -0.5 7.5\n\t\t -8.5 -0.5 -11.5 -7.5 -0.5 -11.5 -8.5 0.5 -11.5 -7.5 0.5 -11.5 -8.5 0.5 -12.5 -7.5 0.5 -12.5\n\t\t -8.5 -0.5 -12.5 -7.5 -0.5 -12.5 7.5 -0.5 12.5 8.5 -0.5 12.5 7.5 0.5 12.5 8.5 0.5 12.5\n\t\t 7.5 0.5 11.5 8.5 0.5 11.5 7.5 -0.5 11.5 8.5 -0.5 11.5 5.5 -0.5 12.5 6.5 -0.5 12.5\n\t\t 5.5 0.5 12.5 6.5 0.5 12.5 5.5 0.5 11.5 6.5 0.5 11.5 5.5 -0.5 11.5 6.5 -0.5 11.5 -10.5 -0.5 10.5\n\t\t -9.5 -0.5 10.5 -10.5 0.5 10.5 -9.5 0.5 10.5 -10.5 0.5 9.5 -9.5 0.5 9.5 -10.5 -0.5 9.5\n\t\t -9.5 -0.5 9.5 -12.5 -0.5 12.5 -11.5 -0.5 12.5 -12.5 0.5 12.5 -11.5 0.5 12.5 -12.5 0.5 11.5\n\t\t -11.5 0.5 11.5 -12.5 -0.5 11.5 -11.5 -0.5 11.5 -6.5 -0.5 10.5 -5.5 -0.5 10.5 -6.5 0.5 10.5\n\t\t -5.5 0.5 10.5 -6.5 0.5 9.5 -5.5 0.5 9.5 -6.5 -0.5 9.5 -5.5 -0.5 9.5 3.5 -0.5 -11.5\n\t\t 4.5 -0.5 -11.5 3.5 0.5 -11.5 4.5 0.5 -11.5 3.5 0.5 -12.5 4.5 0.5 -12.5 3.5 -0.5 -12.5\n\t\t 4.5 -0.5 -12.5 -12.5 -0.5 10.5 -11.5 -0.5 10.5 -12.5 0.5 10.5 -11.5 0.5 10.5 -12.5 0.5 9.5\n\t\t -11.5 0.5 9.5 -12.5 -0.5 9.5 -11.5 -0.5 9.5 11.5 -0.5 -11.5 12.5 -0.5 -11.5 11.5 0.5 -11.5\n\t\t 12.5 0.5 -11.5 11.5 0.5 -12.5 12.5 0.5 -12.5 11.5 -0.5 -12.5 12.5 -0.5 -12.5 -2.5 -0.5 -11.5\n\t\t -1.5 -0.5 -11.5 -2.5 0.5 -11.5 -1.5 0.5 -11.5 -2.5 0.5 -12.5 -1.5 0.5 -12.5;\n\tsetAttr \".vt[830:995]\" -2.5 -0.5 -12.5 -1.5 -0.5 -12.5 11.5 -0.5 12.5 12.5 -0.5 12.5\n\t\t 11.5 0.5 12.5 12.5 0.5 12.5 11.5 0.5 11.5 12.5 0.5 11.5 11.5 -0.5 11.5 12.5 -0.5 11.5\n\t\t 3.5 -0.5 12.5 4.5 -0.5 12.5 3.5 0.5 12.5 4.5 0.5 12.5 3.5 0.5 11.5 4.5 0.5 11.5 3.5 -0.5 11.5\n\t\t 4.5 -0.5 11.5 -8.5 -0.5 10.5 -7.5 -0.5 10.5 -8.5 0.5 10.5 -7.5 0.5 10.5 -8.5 0.5 9.5\n\t\t -7.5 0.5 9.5 -8.5 -0.5 9.5 -7.5 -0.5 9.5 -4.5 -0.5 12.5 -3.5 -0.5 12.5 -4.5 0.5 12.5\n\t\t -3.5 0.5 12.5 -4.5 0.5 11.5 -3.5 0.5 11.5 -4.5 -0.5 11.5 -3.5 -0.5 11.5 -6.5 -0.5 12.5\n\t\t -5.5 -0.5 12.5 -6.5 0.5 12.5 -5.5 0.5 12.5 -6.5 0.5 11.5 -5.5 0.5 11.5 -6.5 -0.5 11.5\n\t\t -5.5 -0.5 11.5 9.5 -0.5 12.5 10.5 -0.5 12.5 9.5 0.5 12.5 10.5 0.5 12.5 9.5 0.5 11.5\n\t\t 10.5 0.5 11.5 9.5 -0.5 11.5 10.5 -0.5 11.5 -0.5 -0.5 12.5 0.5 -0.5 12.5 -0.5 0.5 12.5\n\t\t 0.5 0.5 12.5 -0.5 0.5 11.5 0.5 0.5 11.5 -0.5 -0.5 11.5 0.5 -0.5 11.5 -10.5 -0.5 12.5\n\t\t -9.5 -0.5 12.5 -10.5 0.5 12.5 -9.5 0.5 12.5 -10.5 0.5 11.5 -9.5 0.5 11.5 -10.5 -0.5 11.5\n\t\t -9.5 -0.5 11.5 -8.5 -0.5 12.5 -7.5 -0.5 12.5 -8.5 0.5 12.5 -7.5 0.5 12.5 -8.5 0.5 11.5\n\t\t -7.5 0.5 11.5 -8.5 -0.5 11.5 -7.5 -0.5 11.5 1.5 -0.5 12.5 2.5 -0.5 12.5 1.5 0.5 12.5\n\t\t 2.5 0.5 12.5 1.5 0.5 11.5 2.5 0.5 11.5 1.5 -0.5 11.5 2.5 -0.5 11.5 9.5 -0.5 -7.5\n\t\t 10.5 -0.5 -7.5 9.5 0.5 -7.5 10.5 0.5 -7.5 9.5 0.5 -8.5 10.5 0.5 -8.5 9.5 -0.5 -8.5\n\t\t 10.5 -0.5 -8.5 7.5 -0.5 -7.5 8.5 -0.5 -7.5 7.5 0.5 -7.5 8.5 0.5 -7.5 7.5 0.5 -8.5\n\t\t 8.5 0.5 -8.5 7.5 -0.5 -8.5 8.5 -0.5 -8.5 11.5 -0.5 -7.5 12.5 -0.5 -7.5 11.5 0.5 -7.5\n\t\t 12.5 0.5 -7.5 11.5 0.5 -8.5 12.5 0.5 -8.5 11.5 -0.5 -8.5 12.5 -0.5 -8.5 -8.5 -0.5 -9.5\n\t\t -7.5 -0.5 -9.5 -8.5 0.5 -9.5 -7.5 0.5 -9.5 -8.5 0.5 -10.5 -7.5 0.5 -10.5 -8.5 -0.5 -10.5\n\t\t -7.5 -0.5 -10.5 5.5 -0.5 -9.5 6.5 -0.5 -9.5 5.5 0.5 -9.5 6.5 0.5 -9.5 5.5 0.5 -10.5\n\t\t 6.5 0.5 -10.5 5.5 -0.5 -10.5 6.5 -0.5 -10.5 5.5 -0.5 -7.5 6.5 -0.5 -7.5 5.5 0.5 -7.5\n\t\t 6.5 0.5 -7.5 5.5 0.5 -8.5 6.5 0.5 -8.5 5.5 -0.5 -8.5 6.5 -0.5 -8.5 9.5 -0.5 -9.5\n\t\t 10.5 -0.5 -9.5 9.5 0.5 -9.5 10.5 0.5 -9.5 9.5 0.5 -10.5 10.5 0.5 -10.5 9.5 -0.5 -10.5\n\t\t 10.5 -0.5 -10.5 7.5 -0.5 -9.5 8.5 -0.5 -9.5 7.5 0.5 -9.5 8.5 0.5 -9.5 7.5 0.5 -10.5\n\t\t 8.5 0.5 -10.5 7.5 -0.5 -10.5 8.5 -0.5 -10.5 11.5 -0.5 -9.5 12.5 -0.5 -9.5 11.5 0.5 -9.5\n\t\t 12.5 0.5 -9.5 11.5 0.5 -10.5 12.5 0.5 -10.5 11.5 -0.5 -10.5 12.5 -0.5 -10.5 -2.5 -0.5 -9.5\n\t\t -1.5 -0.5 -9.5 -2.5 0.5 -9.5 -1.5 0.5 -9.5 -2.5 0.5 -10.5 -1.5 0.5 -10.5 -2.5 -0.5 -10.5\n\t\t -1.5 -0.5 -10.5 3.5 -0.5 -9.5 4.5 -0.5 -9.5 3.5 0.5 -9.5 4.5 0.5 -9.5;\n\tsetAttr \".vt[996:1161]\" 3.5 0.5 -10.5 4.5 0.5 -10.5 3.5 -0.5 -10.5 4.5 -0.5 -10.5\n\t\t -0.5 -0.5 -9.5 0.5 -0.5 -9.5 -0.5 0.5 -9.5 0.5 0.5 -9.5 -0.5 0.5 -10.5 0.5 0.5 -10.5\n\t\t -0.5 -0.5 -10.5 0.5 -0.5 -10.5 -4.5 -0.5 -9.5 -3.5 -0.5 -9.5 -4.5 0.5 -9.5 -3.5 0.5 -9.5\n\t\t -4.5 0.5 -10.5 -3.5 0.5 -10.5 -4.5 -0.5 -10.5 -3.5 -0.5 -10.5 -12.5 -0.5 -9.5 -11.5 -0.5 -9.5\n\t\t -12.5 0.5 -9.5 -11.5 0.5 -9.5 -12.5 0.5 -10.5 -11.5 0.5 -10.5 -12.5 -0.5 -10.5 -11.5 -0.5 -10.5\n\t\t 1.5 -0.5 -9.5 2.5 -0.5 -9.5 1.5 0.5 -9.5 2.5 0.5 -9.5 1.5 0.5 -10.5 2.5 0.5 -10.5\n\t\t 1.5 -0.5 -10.5 2.5 -0.5 -10.5 5.5 -0.5 10.5 6.5 -0.5 10.5 5.5 0.5 10.5 6.5 0.5 10.5\n\t\t 5.5 0.5 9.5 6.5 0.5 9.5 5.5 -0.5 9.5 6.5 -0.5 9.5 11.5 -0.5 10.5 12.5 -0.5 10.5 11.5 0.5 10.5\n\t\t 12.5 0.5 10.5 11.5 0.5 9.5 12.5 0.5 9.5 11.5 -0.5 9.5 12.5 -0.5 9.5 7.5 -0.5 10.5\n\t\t 8.5 -0.5 10.5 7.5 0.5 10.5 8.5 0.5 10.5 7.5 0.5 9.5 8.5 0.5 9.5 7.5 -0.5 9.5 8.5 -0.5 9.5\n\t\t 9.5 -0.5 10.5 10.5 -0.5 10.5 9.5 0.5 10.5 10.5 0.5 10.5 9.5 0.5 9.5 10.5 0.5 9.5\n\t\t 9.5 -0.5 9.5 10.5 -0.5 9.5 -2.5 -0.5 10.5 -1.5 -0.5 10.5 -2.5 0.5 10.5 -1.5 0.5 10.5\n\t\t -2.5 0.5 9.5 -1.5 0.5 9.5 -2.5 -0.5 9.5 -1.5 -0.5 9.5 -12.5 -0.5 6.5 -11.5 -0.5 6.5\n\t\t -12.5 0.5 6.5 -11.5 0.5 6.5 -12.5 0.5 5.5 -11.5 0.5 5.5 -12.5 -0.5 5.5 -11.5 -0.5 5.5\n\t\t 1.5 -0.5 6.5 2.5 -0.5 6.5 1.5 0.5 6.5 2.5 0.5 6.5 1.5 0.5 5.5 2.5 0.5 5.5 1.5 -0.5 5.5\n\t\t 2.5 -0.5 5.5 3.5 -0.5 6.5 4.5 -0.5 6.5 3.5 0.5 6.5 4.5 0.5 6.5 3.5 0.5 5.5 4.5 0.5 5.5\n\t\t 3.5 -0.5 5.5 4.5 -0.5 5.5 -0.5 -0.5 6.5 0.5 -0.5 6.5 -0.5 0.5 6.5 0.5 0.5 6.5 -0.5 0.5 5.5\n\t\t 0.5 0.5 5.5 -0.5 -0.5 5.5 0.5 -0.5 5.5 9.5 -0.5 4.5 10.5 -0.5 4.5 9.5 0.5 4.5 10.5 0.5 4.5\n\t\t 9.5 0.5 3.5 10.5 0.5 3.5 9.5 -0.5 3.5 10.5 -0.5 3.5 7.5 -0.5 4.5 8.5 -0.5 4.5 7.5 0.5 4.5\n\t\t 8.5 0.5 4.5 7.5 0.5 3.5 8.5 0.5 3.5 7.5 -0.5 3.5 8.5 -0.5 3.5 11.5 -0.5 4.5 12.5 -0.5 4.5\n\t\t 11.5 0.5 4.5 12.5 0.5 4.5 11.5 0.5 3.5 12.5 0.5 3.5 11.5 -0.5 3.5 12.5 -0.5 3.5 -8.5 -0.5 2.5\n\t\t -7.5 -0.5 2.5 -8.5 0.5 2.5 -7.5 0.5 2.5 -8.5 0.5 1.5 -7.5 0.5 1.5 -8.5 -0.5 1.5 -7.5 -0.5 1.5\n\t\t -6.5 -0.5 2.5 -5.5 -0.5 2.5 -6.5 0.5 2.5 -5.5 0.5 2.5 -6.5 0.5 1.5 -5.5 0.5 1.5 -6.5 -0.5 1.5\n\t\t -5.5 -0.5 1.5 -4.5 -0.5 6.5 -3.5 -0.5 6.5 -4.5 0.5 6.5 -3.5 0.5 6.5 -4.5 0.5 5.5\n\t\t -3.5 0.5 5.5 -4.5 -0.5 5.5 -3.5 -0.5 5.5 -2.5 -0.5 6.5 -1.5 -0.5 6.5 -2.5 0.5 6.5\n\t\t -1.5 0.5 6.5 -2.5 0.5 5.5 -1.5 0.5 5.5 -2.5 -0.5 5.5 -1.5 -0.5 5.5 9.5 -0.5 6.5 10.5 -0.5 6.5;\n\tsetAttr \".vt[1162:1327]\" 9.5 0.5 6.5 10.5 0.5 6.5 9.5 0.5 5.5 10.5 0.5 5.5 9.5 -0.5 5.5\n\t\t 10.5 -0.5 5.5 7.5 -0.5 6.5 8.5 -0.5 6.5 7.5 0.5 6.5 8.5 0.5 6.5 7.5 0.5 5.5 8.5 0.5 5.5\n\t\t 7.5 -0.5 5.5 8.5 -0.5 5.5 11.5 -0.5 6.5 12.5 -0.5 6.5 11.5 0.5 6.5 12.5 0.5 6.5 11.5 0.5 5.5\n\t\t 12.5 0.5 5.5 11.5 -0.5 5.5 12.5 -0.5 5.5 5.5 -0.5 6.5 6.5 -0.5 6.5 5.5 0.5 6.5 6.5 0.5 6.5\n\t\t 5.5 0.5 5.5 6.5 0.5 5.5 5.5 -0.5 5.5 6.5 -0.5 5.5 -10.5 -0.5 4.5 -9.5 -0.5 4.5 -10.5 0.5 4.5\n\t\t -9.5 0.5 4.5 -10.5 0.5 3.5 -9.5 0.5 3.5 -10.5 -0.5 3.5 -9.5 -0.5 3.5 3.5 -0.5 4.5\n\t\t 4.5 -0.5 4.5 3.5 0.5 4.5 4.5 0.5 4.5 3.5 0.5 3.5 4.5 0.5 3.5 3.5 -0.5 3.5 4.5 -0.5 3.5\n\t\t -12.5 -0.5 4.5 -11.5 -0.5 4.5 -12.5 0.5 4.5 -11.5 0.5 4.5 -12.5 0.5 3.5 -11.5 0.5 3.5\n\t\t -12.5 -0.5 3.5 -11.5 -0.5 3.5 -6.5 -0.5 4.5 -5.5 -0.5 4.5 -6.5 0.5 4.5 -5.5 0.5 4.5\n\t\t -6.5 0.5 3.5 -5.5 0.5 3.5 -6.5 -0.5 3.5 -5.5 -0.5 3.5 -8.5 -0.5 4.5 -7.5 -0.5 4.5\n\t\t -8.5 0.5 4.5 -7.5 0.5 4.5 -8.5 0.5 3.5 -7.5 0.5 3.5 -8.5 -0.5 3.5 -7.5 -0.5 3.5 -0.5 -0.5 4.5\n\t\t 0.5 -0.5 4.5 -0.5 0.5 4.5 0.5 0.5 4.5 -0.5 0.5 3.5 0.5 0.5 3.5 -0.5 -0.5 3.5 0.5 -0.5 3.5\n\t\t 1.5 -0.5 4.5 2.5 -0.5 4.5 1.5 0.5 4.5 2.5 0.5 4.5 1.5 0.5 3.5 2.5 0.5 3.5 1.5 -0.5 3.5\n\t\t 2.5 -0.5 3.5 -4.5 -0.5 4.5 -3.5 -0.5 4.5 -4.5 0.5 4.5 -3.5 0.5 4.5 -4.5 0.5 3.5 -3.5 0.5 3.5\n\t\t -4.5 -0.5 3.5 -3.5 -0.5 3.5 -2.5 -0.5 4.5 -1.5 -0.5 4.5 -2.5 0.5 4.5 -1.5 0.5 4.5\n\t\t -2.5 0.5 3.5 -1.5 0.5 3.5 -2.5 -0.5 3.5 -1.5 -0.5 3.5 -10.5 -0.5 2.5 -9.5 -0.5 2.5\n\t\t -10.5 0.5 2.5 -9.5 0.5 2.5 -10.5 0.5 1.5 -9.5 0.5 1.5 -10.5 -0.5 1.5 -9.5 -0.5 1.5\n\t\t 5.5 -0.5 4.5 6.5 -0.5 4.5 5.5 0.5 4.5 6.5 0.5 4.5 5.5 0.5 3.5 6.5 0.5 3.5 5.5 -0.5 3.5\n\t\t 6.5 -0.5 3.5 5.5 -0.5 2.5 6.5 -0.5 2.5 5.5 0.5 2.5 6.5 0.5 2.5 5.5 0.5 1.5 6.5 0.5 1.5\n\t\t 5.5 -0.5 1.5 6.5 -0.5 1.5 -6.5 -0.5 -9.5 -5.5 -0.5 -9.5 -6.5 0.5 -9.5 -5.5 0.5 -9.5\n\t\t -6.5 0.5 -10.5 -5.5 0.5 -10.5 -6.5 -0.5 -10.5 -5.5 -0.5 -10.5 -10.5 -0.5 -7.5 -9.5 -0.5 -7.5\n\t\t -10.5 0.5 -7.5 -9.5 0.5 -7.5 -10.5 0.5 -8.5 -9.5 0.5 -8.5 -10.5 -0.5 -8.5 -9.5 -0.5 -8.5\n\t\t 3.5 -0.5 -7.5 4.5 -0.5 -7.5 3.5 0.5 -7.5 4.5 0.5 -7.5 3.5 0.5 -8.5 4.5 0.5 -8.5 3.5 -0.5 -8.5\n\t\t 4.5 -0.5 -8.5 -12.5 -0.5 -7.5 -11.5 -0.5 -7.5 -12.5 0.5 -7.5 -11.5 0.5 -7.5 -12.5 0.5 -8.5\n\t\t -11.5 0.5 -8.5 -12.5 -0.5 -8.5 -11.5 -0.5 -8.5 -6.5 -0.5 -7.5 -5.5 -0.5 -7.5 -6.5 0.5 -7.5\n\t\t -5.5 0.5 -7.5 -6.5 0.5 -8.5 -5.5 0.5 -8.5 -6.5 -0.5 -8.5 -5.5 -0.5 -8.5;\n\tsetAttr \".vt[1328:1375]\" -8.5 -0.5 -7.5 -7.5 -0.5 -7.5 -8.5 0.5 -7.5 -7.5 0.5 -7.5\n\t\t -8.5 0.5 -8.5 -7.5 0.5 -8.5 -8.5 -0.5 -8.5 -7.5 -0.5 -8.5 -0.5 -0.5 -7.5 0.5 -0.5 -7.5\n\t\t -0.5 0.5 -7.5 0.5 0.5 -7.5 -0.5 0.5 -8.5 0.5 0.5 -8.5 -0.5 -0.5 -8.5 0.5 -0.5 -8.5\n\t\t 1.5 -0.5 -7.5 2.5 -0.5 -7.5 1.5 0.5 -7.5 2.5 0.5 -7.5 1.5 0.5 -8.5 2.5 0.5 -8.5 1.5 -0.5 -8.5\n\t\t 2.5 -0.5 -8.5 -4.5 -0.5 -7.5 -3.5 -0.5 -7.5 -4.5 0.5 -7.5 -3.5 0.5 -7.5 -4.5 0.5 -8.5\n\t\t -3.5 0.5 -8.5 -4.5 -0.5 -8.5 -3.5 -0.5 -8.5 -2.5 -0.5 -7.5 -1.5 -0.5 -7.5 -2.5 0.5 -7.5\n\t\t -1.5 0.5 -7.5 -2.5 0.5 -8.5 -1.5 0.5 -8.5 -2.5 -0.5 -8.5 -1.5 -0.5 -8.5 -10.5 -0.5 -9.5\n\t\t -9.5 -0.5 -9.5 -10.5 0.5 -9.5 -9.5 0.5 -9.5 -10.5 0.5 -10.5 -9.5 0.5 -10.5 -10.5 -0.5 -10.5\n\t\t -9.5 -0.5 -10.5;\n\tsetAttr -s 2064 \".ed\";\n\tsetAttr \".ed[0:165]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0\n\t\t 5 7 0 6 0 0 7 1 0 8 9 0 10 11 0 12 13 0 14 15 0 8 10 0 9 11 0 10 12 0 11 13 0 12 14 0\n\t\t 13 15 0 14 8 0 15 9 0 16 17 0 18 19 0 20 21 0 22 23 0 16 18 0 17 19 0 18 20 0 19 21 0\n\t\t 20 22 0 21 23 0 22 16 0 23 17 0 24 25 0 26 27 0 28 29 0 30 31 0 24 26 0 25 27 0 26 28 0\n\t\t 27 29 0 28 30 0 29 31 0 30 24 0 31 25 0 32 33 0 34 35 0 36 37 0 38 39 0 32 34 0 33 35 0\n\t\t 34 36 0 35 37 0 36 38 0 37 39 0 38 32 0 39 33 0 40 41 0 42 43 0 44 45 0 46 47 0 40 42 0\n\t\t 41 43 0 42 44 0 43 45 0 44 46 0 45 47 0 46 40 0 47 41 0 48 49 0 50 51 0 52 53 0 54 55 0\n\t\t 48 50 0 49 51 0 50 52 0 51 53 0 52 54 0 53 55 0 54 48 0 55 49 0 56 57 0 58 59 0 60 61 0\n\t\t 62 63 0 56 58 0 57 59 0 58 60 0 59 61 0 60 62 0 61 63 0 62 56 0 63 57 0 64 65 0 66 67 0\n\t\t 68 69 0 70 71 0 64 66 0 65 67 0 66 68 0 67 69 0 68 70 0 69 71 0 70 64 0 71 65 0 72 73 0\n\t\t 74 75 0 76 77 0 78 79 0 72 74 0 73 75 0 74 76 0 75 77 0 76 78 0 77 79 0 78 72 0 79 73 0\n\t\t 80 81 0 82 83 0 84 85 0 86 87 0 80 82 0 81 83 0 82 84 0 83 85 0 84 86 0 85 87 0 86 80 0\n\t\t 87 81 0 88 89 0 90 91 0 92 93 0 94 95 0 88 90 0 89 91 0 90 92 0 91 93 0 92 94 0 93 95 0\n\t\t 94 88 0 95 89 0 96 97 0 98 99 0 100 101 0 102 103 0 96 98 0 97 99 0 98 100 0 99 101 0\n\t\t 100 102 0 101 103 0 102 96 0 103 97 0 104 105 0 106 107 0 108 109 0 110 111 0 104 106 0\n\t\t 105 107 0 106 108 0 107 109 0 108 110 0 109 111 0;\n\tsetAttr \".ed[166:331]\" 110 104 0 111 105 0 112 113 0 114 115 0 116 117 0 118 119 0\n\t\t 112 114 0 113 115 0 114 116 0 115 117 0 116 118 0 117 119 0 118 112 0 119 113 0 120 121 0\n\t\t 122 123 0 124 125 0 126 127 0 120 122 0 121 123 0 122 124 0 123 125 0 124 126 0 125 127 0\n\t\t 126 120 0 127 121 0 128 129 0 130 131 0 132 133 0 134 135 0 128 130 0 129 131 0 130 132 0\n\t\t 131 133 0 132 134 0 133 135 0 134 128 0 135 129 0 136 137 0 138 139 0 140 141 0 142 143 0\n\t\t 136 138 0 137 139 0 138 140 0 139 141 0 140 142 0 141 143 0 142 136 0 143 137 0 144 145 0\n\t\t 146 147 0 148 149 0 150 151 0 144 146 0 145 147 0 146 148 0 147 149 0 148 150 0 149 151 0\n\t\t 150 144 0 151 145 0 152 153 0 154 155 0 156 157 0 158 159 0 152 154 0 153 155 0 154 156 0\n\t\t 155 157 0 156 158 0 157 159 0 158 152 0 159 153 0 160 161 0 162 163 0 164 165 0 166 167 0\n\t\t 160 162 0 161 163 0 162 164 0 163 165 0 164 166 0 165 167 0 166 160 0 167 161 0 168 169 0\n\t\t 170 171 0 172 173 0 174 175 0 168 170 0 169 171 0 170 172 0 171 173 0 172 174 0 173 175 0\n\t\t 174 168 0 175 169 0 176 177 0 178 179 0 180 181 0 182 183 0 176 178 0 177 179 0 178 180 0\n\t\t 179 181 0 180 182 0 181 183 0 182 176 0 183 177 0 184 185 0 186 187 0 188 189 0 190 191 0\n\t\t 184 186 0 185 187 0 186 188 0 187 189 0 188 190 0 189 191 0 190 184 0 191 185 0 192 193 0\n\t\t 194 195 0 196 197 0 198 199 0 192 194 0 193 195 0 194 196 0 195 197 0 196 198 0 197 199 0\n\t\t 198 192 0 199 193 0 200 201 0 202 203 0 204 205 0 206 207 0 200 202 0 201 203 0 202 204 0\n\t\t 203 205 0 204 206 0 205 207 0 206 200 0 207 201 0 208 209 0 210 211 0 212 213 0 214 215 0\n\t\t 208 210 0 209 211 0 210 212 0 211 213 0 212 214 0 213 215 0 214 208 0 215 209 0 216 217 0\n\t\t 218 219 0 220 221 0 222 223 0 216 218 0 217 219 0 218 220 0 219 221 0;\n\tsetAttr \".ed[332:497]\" 220 222 0 221 223 0 222 216 0 223 217 0 224 225 0 226 227 0\n\t\t 228 229 0 230 231 0 224 226 0 225 227 0 226 228 0 227 229 0 228 230 0 229 231 0 230 224 0\n\t\t 231 225 0 232 233 0 234 235 0 236 237 0 238 239 0 232 234 0 233 235 0 234 236 0 235 237 0\n\t\t 236 238 0 237 239 0 238 232 0 239 233 0 240 241 0 242 243 0 244 245 0 246 247 0 240 242 0\n\t\t 241 243 0 242 244 0 243 245 0 244 246 0 245 247 0 246 240 0 247 241 0 248 249 0 250 251 0\n\t\t 252 253 0 254 255 0 248 250 0 249 251 0 250 252 0 251 253 0 252 254 0 253 255 0 254 248 0\n\t\t 255 249 0 256 257 0 258 259 0 260 261 0 262 263 0 256 258 0 257 259 0 258 260 0 259 261 0\n\t\t 260 262 0 261 263 0 262 256 0 263 257 0 264 265 0 266 267 0 268 269 0 270 271 0 264 266 0\n\t\t 265 267 0 266 268 0 267 269 0 268 270 0 269 271 0 270 264 0 271 265 0 272 273 0 274 275 0\n\t\t 276 277 0 278 279 0 272 274 0 273 275 0 274 276 0 275 277 0 276 278 0 277 279 0 278 272 0\n\t\t 279 273 0 280 281 0 282 283 0 284 285 0 286 287 0 280 282 0 281 283 0 282 284 0 283 285 0\n\t\t 284 286 0 285 287 0 286 280 0 287 281 0 288 289 0 290 291 0 292 293 0 294 295 0 288 290 0\n\t\t 289 291 0 290 292 0 291 293 0 292 294 0 293 295 0 294 288 0 295 289 0 296 297 0 298 299 0\n\t\t 300 301 0 302 303 0 296 298 0 297 299 0 298 300 0 299 301 0 300 302 0 301 303 0 302 296 0\n\t\t 303 297 0 304 305 0 306 307 0 308 309 0 310 311 0 304 306 0 305 307 0 306 308 0 307 309 0\n\t\t 308 310 0 309 311 0 310 304 0 311 305 0 312 313 0 314 315 0 316 317 0 318 319 0 312 314 0\n\t\t 313 315 0 314 316 0 315 317 0 316 318 0 317 319 0 318 312 0 319 313 0 320 321 0 322 323 0\n\t\t 324 325 0 326 327 0 320 322 0 321 323 0 322 324 0 323 325 0 324 326 0 325 327 0 326 320 0\n\t\t 327 321 0 328 329 0 330 331 0 332 333 0 334 335 0 328 330 0 329 331 0;\n\tsetAttr \".ed[498:663]\" 330 332 0 331 333 0 332 334 0 333 335 0 334 328 0 335 329 0\n\t\t 336 337 0 338 339 0 340 341 0 342 343 0 336 338 0 337 339 0 338 340 0 339 341 0 340 342 0\n\t\t 341 343 0 342 336 0 343 337 0 344 345 0 346 347 0 348 349 0 350 351 0 344 346 0 345 347 0\n\t\t 346 348 0 347 349 0 348 350 0 349 351 0 350 344 0 351 345 0 352 353 0 354 355 0 356 357 0\n\t\t 358 359 0 352 354 0 353 355 0 354 356 0 355 357 0 356 358 0 357 359 0 358 352 0 359 353 0\n\t\t 360 361 0 362 363 0 364 365 0 366 367 0 360 362 0 361 363 0 362 364 0 363 365 0 364 366 0\n\t\t 365 367 0 366 360 0 367 361 0 368 369 0 370 371 0 372 373 0 374 375 0 368 370 0 369 371 0\n\t\t 370 372 0 371 373 0 372 374 0 373 375 0 374 368 0 375 369 0 376 377 0 378 379 0 380 381 0\n\t\t 382 383 0 376 378 0 377 379 0 378 380 0 379 381 0 380 382 0 381 383 0 382 376 0 383 377 0\n\t\t 384 385 0 386 387 0 388 389 0 390 391 0 384 386 0 385 387 0 386 388 0 387 389 0 388 390 0\n\t\t 389 391 0 390 384 0 391 385 0 392 393 0 394 395 0 396 397 0 398 399 0 392 394 0 393 395 0\n\t\t 394 396 0 395 397 0 396 398 0 397 399 0 398 392 0 399 393 0 400 401 0 402 403 0 404 405 0\n\t\t 406 407 0 400 402 0 401 403 0 402 404 0 403 405 0 404 406 0 405 407 0 406 400 0 407 401 0\n\t\t 408 409 0 410 411 0 412 413 0 414 415 0 408 410 0 409 411 0 410 412 0 411 413 0 412 414 0\n\t\t 413 415 0 414 408 0 415 409 0 416 417 0 418 419 0 420 421 0 422 423 0 416 418 0 417 419 0\n\t\t 418 420 0 419 421 0 420 422 0 421 423 0 422 416 0 423 417 0 424 425 0 426 427 0 428 429 0\n\t\t 430 431 0 424 426 0 425 427 0 426 428 0 427 429 0 428 430 0 429 431 0 430 424 0 431 425 0\n\t\t 432 433 0 434 435 0 436 437 0 438 439 0 432 434 0 433 435 0 434 436 0 435 437 0 436 438 0\n\t\t 437 439 0 438 432 0 439 433 0 440 441 0 442 443 0 444 445 0 446 447 0;\n\tsetAttr \".ed[664:829]\" 440 442 0 441 443 0 442 444 0 443 445 0 444 446 0 445 447 0\n\t\t 446 440 0 447 441 0 448 449 0 450 451 0 452 453 0 454 455 0 448 450 0 449 451 0 450 452 0\n\t\t 451 453 0 452 454 0 453 455 0 454 448 0 455 449 0 456 457 0 458 459 0 460 461 0 462 463 0\n\t\t 456 458 0 457 459 0 458 460 0 459 461 0 460 462 0 461 463 0 462 456 0 463 457 0 464 465 0\n\t\t 466 467 0 468 469 0 470 471 0 464 466 0 465 467 0 466 468 0 467 469 0 468 470 0 469 471 0\n\t\t 470 464 0 471 465 0 472 473 0 474 475 0 476 477 0 478 479 0 472 474 0 473 475 0 474 476 0\n\t\t 475 477 0 476 478 0 477 479 0 478 472 0 479 473 0 480 481 0 482 483 0 484 485 0 486 487 0\n\t\t 480 482 0 481 483 0 482 484 0 483 485 0 484 486 0 485 487 0 486 480 0 487 481 0 488 489 0\n\t\t 490 491 0 492 493 0 494 495 0 488 490 0 489 491 0 490 492 0 491 493 0 492 494 0 493 495 0\n\t\t 494 488 0 495 489 0 496 497 0 498 499 0 500 501 0 502 503 0 496 498 0 497 499 0 498 500 0\n\t\t 499 501 0 500 502 0 501 503 0 502 496 0 503 497 0 504 505 0 506 507 0 508 509 0 510 511 0\n\t\t 504 506 0 505 507 0 506 508 0 507 509 0 508 510 0 509 511 0 510 504 0 511 505 0 512 513 0\n\t\t 514 515 0 516 517 0 518 519 0 512 514 0 513 515 0 514 516 0 515 517 0 516 518 0 517 519 0\n\t\t 518 512 0 519 513 0 520 521 0 522 523 0 524 525 0 526 527 0 520 522 0 521 523 0 522 524 0\n\t\t 523 525 0 524 526 0 525 527 0 526 520 0 527 521 0 528 529 0 530 531 0 532 533 0 534 535 0\n\t\t 528 530 0 529 531 0 530 532 0 531 533 0 532 534 0 533 535 0 534 528 0 535 529 0 536 537 0\n\t\t 538 539 0 540 541 0 542 543 0 536 538 0 537 539 0 538 540 0 539 541 0 540 542 0 541 543 0\n\t\t 542 536 0 543 537 0 544 545 0 546 547 0 548 549 0 550 551 0 544 546 0 545 547 0 546 548 0\n\t\t 547 549 0 548 550 0 549 551 0 550 544 0 551 545 0 552 553 0 554 555 0;\n\tsetAttr \".ed[830:995]\" 556 557 0 558 559 0 552 554 0 553 555 0 554 556 0 555 557 0\n\t\t 556 558 0 557 559 0 558 552 0 559 553 0 560 561 0 562 563 0 564 565 0 566 567 0 560 562 0\n\t\t 561 563 0 562 564 0 563 565 0 564 566 0 565 567 0 566 560 0 567 561 0 568 569 0 570 571 0\n\t\t 572 573 0 574 575 0 568 570 0 569 571 0 570 572 0 571 573 0 572 574 0 573 575 0 574 568 0\n\t\t 575 569 0 576 577 0 578 579 0 580 581 0 582 583 0 576 578 0 577 579 0 578 580 0 579 581 0\n\t\t 580 582 0 581 583 0 582 576 0 583 577 0 584 585 0 586 587 0 588 589 0 590 591 0 584 586 0\n\t\t 585 587 0 586 588 0 587 589 0 588 590 0 589 591 0 590 584 0 591 585 0 592 593 0 594 595 0\n\t\t 596 597 0 598 599 0 592 594 0 593 595 0 594 596 0 595 597 0 596 598 0 597 599 0 598 592 0\n\t\t 599 593 0 600 601 0 602 603 0 604 605 0 606 607 0 600 602 0 601 603 0 602 604 0 603 605 0\n\t\t 604 606 0 605 607 0 606 600 0 607 601 0 608 609 0 610 611 0 612 613 0 614 615 0 608 610 0\n\t\t 609 611 0 610 612 0 611 613 0 612 614 0 613 615 0 614 608 0 615 609 0 616 617 0 618 619 0\n\t\t 620 621 0 622 623 0 616 618 0 617 619 0 618 620 0 619 621 0 620 622 0 621 623 0 622 616 0\n\t\t 623 617 0 624 625 0 626 627 0 628 629 0 630 631 0 624 626 0 625 627 0 626 628 0 627 629 0\n\t\t 628 630 0 629 631 0 630 624 0 631 625 0 632 633 0 634 635 0 636 637 0 638 639 0 632 634 0\n\t\t 633 635 0 634 636 0 635 637 0 636 638 0 637 639 0 638 632 0 639 633 0 640 641 0 642 643 0\n\t\t 644 645 0 646 647 0 640 642 0 641 643 0 642 644 0 643 645 0 644 646 0 645 647 0 646 640 0\n\t\t 647 641 0 648 649 0 650 651 0 652 653 0 654 655 0 648 650 0 649 651 0 650 652 0 651 653 0\n\t\t 652 654 0 653 655 0 654 648 0 655 649 0 656 657 0 658 659 0 660 661 0 662 663 0 656 658 0\n\t\t 657 659 0 658 660 0 659 661 0 660 662 0 661 663 0 662 656 0 663 657 0;\n\tsetAttr \".ed[996:1161]\" 664 665 0 666 667 0 668 669 0 670 671 0 664 666 0 665 667 0\n\t\t 666 668 0 667 669 0 668 670 0 669 671 0 670 664 0 671 665 0 672 673 0 674 675 0 676 677 0\n\t\t 678 679 0 672 674 0 673 675 0 674 676 0 675 677 0 676 678 0 677 679 0 678 672 0 679 673 0\n\t\t 680 681 0 682 683 0 684 685 0 686 687 0 680 682 0 681 683 0 682 684 0 683 685 0 684 686 0\n\t\t 685 687 0 686 680 0 687 681 0 688 689 0 690 691 0 692 693 0 694 695 0 688 690 0 689 691 0\n\t\t 690 692 0 691 693 0 692 694 0 693 695 0 694 688 0 695 689 0 696 697 0 698 699 0 700 701 0\n\t\t 702 703 0 696 698 0 697 699 0 698 700 0 699 701 0 700 702 0 701 703 0 702 696 0 703 697 0\n\t\t 704 705 0 706 707 0 708 709 0 710 711 0 704 706 0 705 707 0 706 708 0 707 709 0 708 710 0\n\t\t 709 711 0 710 704 0 711 705 0 712 713 0 714 715 0 716 717 0 718 719 0 712 714 0 713 715 0\n\t\t 714 716 0 715 717 0 716 718 0 717 719 0 718 712 0 719 713 0 720 721 0 722 723 0 724 725 0\n\t\t 726 727 0 720 722 0 721 723 0 722 724 0 723 725 0 724 726 0 725 727 0 726 720 0 727 721 0\n\t\t 728 729 0 730 731 0 732 733 0 734 735 0 728 730 0 729 731 0 730 732 0 731 733 0 732 734 0\n\t\t 733 735 0 734 728 0 735 729 0 736 737 0 738 739 0 740 741 0 742 743 0 736 738 0 737 739 0\n\t\t 738 740 0 739 741 0 740 742 0 741 743 0 742 736 0 743 737 0 744 745 0 746 747 0 748 749 0\n\t\t 750 751 0 744 746 0 745 747 0 746 748 0 747 749 0 748 750 0 749 751 0 750 744 0 751 745 0\n\t\t 752 753 0 754 755 0 756 757 0 758 759 0 752 754 0 753 755 0 754 756 0 755 757 0 756 758 0\n\t\t 757 759 0 758 752 0 759 753 0 760 761 0 762 763 0 764 765 0 766 767 0 760 762 0 761 763 0\n\t\t 762 764 0 763 765 0 764 766 0 765 767 0 766 760 0 767 761 0 768 769 0 770 771 0 772 773 0\n\t\t 774 775 0 768 770 0 769 771 0 770 772 0 771 773 0 772 774 0 773 775 0;\n\tsetAttr \".ed[1162:1327]\" 774 768 0 775 769 0 776 777 0 778 779 0 780 781 0 782 783 0\n\t\t 776 778 0 777 779 0 778 780 0 779 781 0 780 782 0 781 783 0 782 776 0 783 777 0 784 785 0\n\t\t 786 787 0 788 789 0 790 791 0 784 786 0 785 787 0 786 788 0 787 789 0 788 790 0 789 791 0\n\t\t 790 784 0 791 785 0 792 793 0 794 795 0 796 797 0 798 799 0 792 794 0 793 795 0 794 796 0\n\t\t 795 797 0 796 798 0 797 799 0 798 792 0 799 793 0 800 801 0 802 803 0 804 805 0 806 807 0\n\t\t 800 802 0 801 803 0 802 804 0 803 805 0 804 806 0 805 807 0 806 800 0 807 801 0 808 809 0\n\t\t 810 811 0 812 813 0 814 815 0 808 810 0 809 811 0 810 812 0 811 813 0 812 814 0 813 815 0\n\t\t 814 808 0 815 809 0 816 817 0 818 819 0 820 821 0 822 823 0 816 818 0 817 819 0 818 820 0\n\t\t 819 821 0 820 822 0 821 823 0 822 816 0 823 817 0 824 825 0 826 827 0 828 829 0 830 831 0\n\t\t 824 826 0 825 827 0 826 828 0 827 829 0 828 830 0 829 831 0 830 824 0 831 825 0 832 833 0\n\t\t 834 835 0 836 837 0 838 839 0 832 834 0 833 835 0 834 836 0 835 837 0 836 838 0 837 839 0\n\t\t 838 832 0 839 833 0 840 841 0 842 843 0 844 845 0 846 847 0 840 842 0 841 843 0 842 844 0\n\t\t 843 845 0 844 846 0 845 847 0 846 840 0 847 841 0 848 849 0 850 851 0 852 853 0 854 855 0\n\t\t 848 850 0 849 851 0 850 852 0 851 853 0 852 854 0 853 855 0 854 848 0 855 849 0 856 857 0\n\t\t 858 859 0 860 861 0 862 863 0 856 858 0 857 859 0 858 860 0 859 861 0 860 862 0 861 863 0\n\t\t 862 856 0 863 857 0 864 865 0 866 867 0 868 869 0 870 871 0 864 866 0 865 867 0 866 868 0\n\t\t 867 869 0 868 870 0 869 871 0 870 864 0 871 865 0 872 873 0 874 875 0 876 877 0 878 879 0\n\t\t 872 874 0 873 875 0 874 876 0 875 877 0 876 878 0 877 879 0 878 872 0 879 873 0 880 881 0\n\t\t 882 883 0 884 885 0 886 887 0 880 882 0 881 883 0 882 884 0 883 885 0;\n\tsetAttr \".ed[1328:1493]\" 884 886 0 885 887 0 886 880 0 887 881 0 888 889 0 890 891 0\n\t\t 892 893 0 894 895 0 888 890 0 889 891 0 890 892 0 891 893 0 892 894 0 893 895 0 894 888 0\n\t\t 895 889 0 896 897 0 898 899 0 900 901 0 902 903 0 896 898 0 897 899 0 898 900 0 899 901 0\n\t\t 900 902 0 901 903 0 902 896 0 903 897 0 904 905 0 906 907 0 908 909 0 910 911 0 904 906 0\n\t\t 905 907 0 906 908 0 907 909 0 908 910 0 909 911 0 910 904 0 911 905 0 912 913 0 914 915 0\n\t\t 916 917 0 918 919 0 912 914 0 913 915 0 914 916 0 915 917 0 916 918 0 917 919 0 918 912 0\n\t\t 919 913 0 920 921 0 922 923 0 924 925 0 926 927 0 920 922 0 921 923 0 922 924 0 923 925 0\n\t\t 924 926 0 925 927 0 926 920 0 927 921 0 928 929 0 930 931 0 932 933 0 934 935 0 928 930 0\n\t\t 929 931 0 930 932 0 931 933 0 932 934 0 933 935 0 934 928 0 935 929 0 936 937 0 938 939 0\n\t\t 940 941 0 942 943 0 936 938 0 937 939 0 938 940 0 939 941 0 940 942 0 941 943 0 942 936 0\n\t\t 943 937 0 944 945 0 946 947 0 948 949 0 950 951 0 944 946 0 945 947 0 946 948 0 947 949 0\n\t\t 948 950 0 949 951 0 950 944 0 951 945 0 952 953 0 954 955 0 956 957 0 958 959 0 952 954 0\n\t\t 953 955 0 954 956 0 955 957 0 956 958 0 957 959 0 958 952 0 959 953 0 960 961 0 962 963 0\n\t\t 964 965 0 966 967 0 960 962 0 961 963 0 962 964 0 963 965 0 964 966 0 965 967 0 966 960 0\n\t\t 967 961 0 968 969 0 970 971 0 972 973 0 974 975 0 968 970 0 969 971 0 970 972 0 971 973 0\n\t\t 972 974 0 973 975 0 974 968 0 975 969 0 976 977 0 978 979 0 980 981 0 982 983 0 976 978 0\n\t\t 977 979 0 978 980 0 979 981 0 980 982 0 981 983 0 982 976 0 983 977 0 984 985 0 986 987 0\n\t\t 988 989 0 990 991 0 984 986 0 985 987 0 986 988 0 987 989 0 988 990 0 989 991 0 990 984 0\n\t\t 991 985 0 992 993 0 994 995 0 996 997 0 998 999 0 992 994 0 993 995 0;\n\tsetAttr \".ed[1494:1659]\" 994 996 0 995 997 0 996 998 0 997 999 0 998 992 0 999 993 0\n\t\t 1000 1001 0 1002 1003 0 1004 1005 0 1006 1007 0 1000 1002 0 1001 1003 0 1002 1004 0\n\t\t 1003 1005 0 1004 1006 0 1005 1007 0 1006 1000 0 1007 1001 0 1008 1009 0 1010 1011 0\n\t\t 1012 1013 0 1014 1015 0 1008 1010 0 1009 1011 0 1010 1012 0 1011 1013 0 1012 1014 0\n\t\t 1013 1015 0 1014 1008 0 1015 1009 0 1016 1017 0 1018 1019 0 1020 1021 0 1022 1023 0\n\t\t 1016 1018 0 1017 1019 0 1018 1020 0 1019 1021 0 1020 1022 0 1021 1023 0 1022 1016 0\n\t\t 1023 1017 0 1024 1025 0 1026 1027 0 1028 1029 0 1030 1031 0 1024 1026 0 1025 1027 0\n\t\t 1026 1028 0 1027 1029 0 1028 1030 0 1029 1031 0 1030 1024 0 1031 1025 0 1032 1033 0\n\t\t 1034 1035 0 1036 1037 0 1038 1039 0 1032 1034 0 1033 1035 0 1034 1036 0 1035 1037 0\n\t\t 1036 1038 0 1037 1039 0 1038 1032 0 1039 1033 0 1040 1041 0 1042 1043 0 1044 1045 0\n\t\t 1046 1047 0 1040 1042 0 1041 1043 0 1042 1044 0 1043 1045 0 1044 1046 0 1045 1047 0\n\t\t 1046 1040 0 1047 1041 0 1048 1049 0 1050 1051 0 1052 1053 0 1054 1055 0 1048 1050 0\n\t\t 1049 1051 0 1050 1052 0 1051 1053 0 1052 1054 0 1053 1055 0 1054 1048 0 1055 1049 0\n\t\t 1056 1057 0 1058 1059 0 1060 1061 0 1062 1063 0 1056 1058 0 1057 1059 0 1058 1060 0\n\t\t 1059 1061 0 1060 1062 0 1061 1063 0 1062 1056 0 1063 1057 0 1064 1065 0 1066 1067 0\n\t\t 1068 1069 0 1070 1071 0 1064 1066 0 1065 1067 0 1066 1068 0 1067 1069 0 1068 1070 0\n\t\t 1069 1071 0 1070 1064 0 1071 1065 0 1072 1073 0 1074 1075 0 1076 1077 0 1078 1079 0\n\t\t 1072 1074 0 1073 1075 0 1074 1076 0 1075 1077 0 1076 1078 0 1077 1079 0 1078 1072 0\n\t\t 1079 1073 0 1080 1081 0 1082 1083 0 1084 1085 0 1086 1087 0 1080 1082 0 1081 1083 0\n\t\t 1082 1084 0 1083 1085 0 1084 1086 0 1085 1087 0 1086 1080 0 1087 1081 0 1088 1089 0\n\t\t 1090 1091 0 1092 1093 0 1094 1095 0 1088 1090 0 1089 1091 0 1090 1092 0 1091 1093 0\n\t\t 1092 1094 0 1093 1095 0 1094 1088 0 1095 1089 0 1096 1097 0 1098 1099 0 1100 1101 0\n\t\t 1102 1103 0 1096 1098 0 1097 1099 0 1098 1100 0 1099 1101 0 1100 1102 0 1101 1103 0\n\t\t 1102 1096 0 1103 1097 0 1104 1105 0 1106 1107 0 1108 1109 0 1110 1111 0;\n\tsetAttr \".ed[1660:1825]\" 1104 1106 0 1105 1107 0 1106 1108 0 1107 1109 0 1108 1110 0\n\t\t 1109 1111 0 1110 1104 0 1111 1105 0 1112 1113 0 1114 1115 0 1116 1117 0 1118 1119 0\n\t\t 1112 1114 0 1113 1115 0 1114 1116 0 1115 1117 0 1116 1118 0 1117 1119 0 1118 1112 0\n\t\t 1119 1113 0 1120 1121 0 1122 1123 0 1124 1125 0 1126 1127 0 1120 1122 0 1121 1123 0\n\t\t 1122 1124 0 1123 1125 0 1124 1126 0 1125 1127 0 1126 1120 0 1127 1121 0 1128 1129 0\n\t\t 1130 1131 0 1132 1133 0 1134 1135 0 1128 1130 0 1129 1131 0 1130 1132 0 1131 1133 0\n\t\t 1132 1134 0 1133 1135 0 1134 1128 0 1135 1129 0 1136 1137 0 1138 1139 0 1140 1141 0\n\t\t 1142 1143 0 1136 1138 0 1137 1139 0 1138 1140 0 1139 1141 0 1140 1142 0 1141 1143 0\n\t\t 1142 1136 0 1143 1137 0 1144 1145 0 1146 1147 0 1148 1149 0 1150 1151 0 1144 1146 0\n\t\t 1145 1147 0 1146 1148 0 1147 1149 0 1148 1150 0 1149 1151 0 1150 1144 0 1151 1145 0\n\t\t 1152 1153 0 1154 1155 0 1156 1157 0 1158 1159 0 1152 1154 0 1153 1155 0 1154 1156 0\n\t\t 1155 1157 0 1156 1158 0 1157 1159 0 1158 1152 0 1159 1153 0 1160 1161 0 1162 1163 0\n\t\t 1164 1165 0 1166 1167 0 1160 1162 0 1161 1163 0 1162 1164 0 1163 1165 0 1164 1166 0\n\t\t 1165 1167 0 1166 1160 0 1167 1161 0 1168 1169 0 1170 1171 0 1172 1173 0 1174 1175 0\n\t\t 1168 1170 0 1169 1171 0 1170 1172 0 1171 1173 0 1172 1174 0 1173 1175 0 1174 1168 0\n\t\t 1175 1169 0 1176 1177 0 1178 1179 0 1180 1181 0 1182 1183 0 1176 1178 0 1177 1179 0\n\t\t 1178 1180 0 1179 1181 0 1180 1182 0 1181 1183 0 1182 1176 0 1183 1177 0 1184 1185 0\n\t\t 1186 1187 0 1188 1189 0 1190 1191 0 1184 1186 0 1185 1187 0 1186 1188 0 1187 1189 0\n\t\t 1188 1190 0 1189 1191 0 1190 1184 0 1191 1185 0 1192 1193 0 1194 1195 0 1196 1197 0\n\t\t 1198 1199 0 1192 1194 0 1193 1195 0 1194 1196 0 1195 1197 0 1196 1198 0 1197 1199 0\n\t\t 1198 1192 0 1199 1193 0 1200 1201 0 1202 1203 0 1204 1205 0 1206 1207 0 1200 1202 0\n\t\t 1201 1203 0 1202 1204 0 1203 1205 0 1204 1206 0 1205 1207 0 1206 1200 0 1207 1201 0\n\t\t 1208 1209 0 1210 1211 0 1212 1213 0 1214 1215 0 1208 1210 0 1209 1211 0 1210 1212 0\n\t\t 1211 1213 0 1212 1214 0 1213 1215 0 1214 1208 0 1215 1209 0 1216 1217 0 1218 1219 0;\n\tsetAttr \".ed[1826:1991]\" 1220 1221 0 1222 1223 0 1216 1218 0 1217 1219 0 1218 1220 0\n\t\t 1219 1221 0 1220 1222 0 1221 1223 0 1222 1216 0 1223 1217 0 1224 1225 0 1226 1227 0\n\t\t 1228 1229 0 1230 1231 0 1224 1226 0 1225 1227 0 1226 1228 0 1227 1229 0 1228 1230 0\n\t\t 1229 1231 0 1230 1224 0 1231 1225 0 1232 1233 0 1234 1235 0 1236 1237 0 1238 1239 0\n\t\t 1232 1234 0 1233 1235 0 1234 1236 0 1235 1237 0 1236 1238 0 1237 1239 0 1238 1232 0\n\t\t 1239 1233 0 1240 1241 0 1242 1243 0 1244 1245 0 1246 1247 0 1240 1242 0 1241 1243 0\n\t\t 1242 1244 0 1243 1245 0 1244 1246 0 1245 1247 0 1246 1240 0 1247 1241 0 1248 1249 0\n\t\t 1250 1251 0 1252 1253 0 1254 1255 0 1248 1250 0 1249 1251 0 1250 1252 0 1251 1253 0\n\t\t 1252 1254 0 1253 1255 0 1254 1248 0 1255 1249 0 1256 1257 0 1258 1259 0 1260 1261 0\n\t\t 1262 1263 0 1256 1258 0 1257 1259 0 1258 1260 0 1259 1261 0 1260 1262 0 1261 1263 0\n\t\t 1262 1256 0 1263 1257 0 1264 1265 0 1266 1267 0 1268 1269 0 1270 1271 0 1264 1266 0\n\t\t 1265 1267 0 1266 1268 0 1267 1269 0 1268 1270 0 1269 1271 0 1270 1264 0 1271 1265 0\n\t\t 1272 1273 0 1274 1275 0 1276 1277 0 1278 1279 0 1272 1274 0 1273 1275 0 1274 1276 0\n\t\t 1275 1277 0 1276 1278 0 1277 1279 0 1278 1272 0 1279 1273 0 1280 1281 0 1282 1283 0\n\t\t 1284 1285 0 1286 1287 0 1280 1282 0 1281 1283 0 1282 1284 0 1283 1285 0 1284 1286 0\n\t\t 1285 1287 0 1286 1280 0 1287 1281 0 1288 1289 0 1290 1291 0 1292 1293 0 1294 1295 0\n\t\t 1288 1290 0 1289 1291 0 1290 1292 0 1291 1293 0 1292 1294 0 1293 1295 0 1294 1288 0\n\t\t 1295 1289 0 1296 1297 0 1298 1299 0 1300 1301 0 1302 1303 0 1296 1298 0 1297 1299 0\n\t\t 1298 1300 0 1299 1301 0 1300 1302 0 1301 1303 0 1302 1296 0 1303 1297 0 1304 1305 0\n\t\t 1306 1307 0 1308 1309 0 1310 1311 0 1304 1306 0 1305 1307 0 1306 1308 0 1307 1309 0\n\t\t 1308 1310 0 1309 1311 0 1310 1304 0 1311 1305 0 1312 1313 0 1314 1315 0 1316 1317 0\n\t\t 1318 1319 0 1312 1314 0 1313 1315 0 1314 1316 0 1315 1317 0 1316 1318 0 1317 1319 0\n\t\t 1318 1312 0 1319 1313 0 1320 1321 0 1322 1323 0 1324 1325 0 1326 1327 0 1320 1322 0\n\t\t 1321 1323 0 1322 1324 0 1323 1325 0 1324 1326 0 1325 1327 0 1326 1320 0 1327 1321 0;\n\tsetAttr \".ed[1992:2063]\" 1328 1329 0 1330 1331 0 1332 1333 0 1334 1335 0 1328 1330 0\n\t\t 1329 1331 0 1330 1332 0 1331 1333 0 1332 1334 0 1333 1335 0 1334 1328 0 1335 1329 0\n\t\t 1336 1337 0 1338 1339 0 1340 1341 0 1342 1343 0 1336 1338 0 1337 1339 0 1338 1340 0\n\t\t 1339 1341 0 1340 1342 0 1341 1343 0 1342 1336 0 1343 1337 0 1344 1345 0 1346 1347 0\n\t\t 1348 1349 0 1350 1351 0 1344 1346 0 1345 1347 0 1346 1348 0 1347 1349 0 1348 1350 0\n\t\t 1349 1351 0 1350 1344 0 1351 1345 0 1352 1353 0 1354 1355 0 1356 1357 0 1358 1359 0\n\t\t 1352 1354 0 1353 1355 0 1354 1356 0 1355 1357 0 1356 1358 0 1357 1359 0 1358 1352 0\n\t\t 1359 1353 0 1360 1361 0 1362 1363 0 1364 1365 0 1366 1367 0 1360 1362 0 1361 1363 0\n\t\t 1362 1364 0 1363 1365 0 1364 1366 0 1365 1367 0 1366 1360 0 1367 1361 0 1368 1369 0\n\t\t 1370 1371 0 1372 1373 0 1374 1375 0 1368 1370 0 1369 1371 0 1370 1372 0 1371 1373 0\n\t\t 1372 1374 0 1373 1375 0 1374 1368 0 1375 1369 0;\n\tsetAttr -s 1032 -ch 4128 \".fc\";\n\tsetAttr \".fc[0:499]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13\n\t\tf 4 12 17 -14 -17\n\t\tmu 0 4 14 15 16 17\n\t\tf 4 13 19 -15 -19\n\t\tmu 0 4 17 16 18 19\n\t\tf 4 14 21 -16 -21\n\t\tmu 0 4 19 18 20 21\n\t\tf 4 15 23 -13 -23\n\t\tmu 0 4 21 20 22 23\n\t\tf 4 -24 -22 -20 -18\n\t\tmu 0 4 15 24 25 16\n\t\tf 4 22 16 18 20\n\t\tmu 0 4 26 14 17 27\n\t\tf 4 24 29 -26 -29\n\t\tmu 0 4 28 29 30 31\n\t\tf 4 25 31 -27 -31\n\t\tmu 0 4 31 30 32 33\n\t\tf 4 26 33 -28 -33\n\t\tmu 0 4 33 32 34 35\n\t\tf 4 27 35 -25 -35\n\t\tmu 0 4 35 34 36 37\n\t\tf 4 -36 -34 -32 -30\n\t\tmu 0 4 29 38 39 30\n\t\tf 4 34 28 30 32\n\t\tmu 0 4 40 28 31 41\n\t\tf 4 36 41 -38 -41\n\t\tmu 0 4 42 43 44 45\n\t\tf 4 37 43 -39 -43\n\t\tmu 0 4 45 44 46 47\n\t\tf 4 38 45 -40 -45\n\t\tmu 0 4 47 46 48 49\n\t\tf 4 39 47 -37 -47\n\t\tmu 0 4 49 48 50 51\n\t\tf 4 -48 -46 -44 -42\n\t\tmu 0 4 43 52 53 44\n\t\tf 4 46 40 42 44\n\t\tmu 0 4 54 42 45 55\n\t\tf 4 48 53 -50 -53\n\t\tmu 0 4 56 57 58 59\n\t\tf 4 49 55 -51 -55\n\t\tmu 0 4 59 58 60 61\n\t\tf 4 50 57 -52 -57\n\t\tmu 0 4 61 60 62 63\n\t\tf 4 51 59 -49 -59\n\t\tmu 0 4 63 62 64 65\n\t\tf 4 -60 -58 -56 -54\n\t\tmu 0 4 57 66 67 58\n\t\tf 4 58 52 54 56\n\t\tmu 0 4 68 56 59 69\n\t\tf 4 60 65 -62 -65\n\t\tmu 0 4 70 71 72 73\n\t\tf 4 61 67 -63 -67\n\t\tmu 0 4 73 72 74 75\n\t\tf 4 62 69 -64 -69\n\t\tmu 0 4 75 74 76 77\n\t\tf 4 63 71 -61 -71\n\t\tmu 0 4 77 76 78 79\n\t\tf 4 -72 -70 -68 -66\n\t\tmu 0 4 71 80 81 72\n\t\tf 4 70 64 66 68\n\t\tmu 0 4 82 70 73 83\n\t\tf 4 72 77 -74 -77\n\t\tmu 0 4 84 85 86 87\n\t\tf 4 73 79 -75 -79\n\t\tmu 0 4 87 86 88 89\n\t\tf 4 74 81 -76 -81\n\t\tmu 0 4 89 88 90 91\n\t\tf 4 75 83 -73 -83\n\t\tmu 0 4 91 90 92 93\n\t\tf 4 -84 -82 -80 -78\n\t\tmu 0 4 85 94 95 86\n\t\tf 4 82 76 78 80\n\t\tmu 0 4 96 84 87 97\n\t\tf 4 84 89 -86 -89\n\t\tmu 0 4 98 99 100 101\n\t\tf 4 85 91 -87 -91\n\t\tmu 0 4 101 100 102 103\n\t\tf 4 86 93 -88 -93\n\t\tmu 0 4 103 102 104 105\n\t\tf 4 87 95 -85 -95\n\t\tmu 0 4 105 104 106 107\n\t\tf 4 -96 -94 -92 -90\n\t\tmu 0 4 99 108 109 100\n\t\tf 4 94 88 90 92\n\t\tmu 0 4 110 98 101 111\n\t\tf 4 96 101 -98 -101\n\t\tmu 0 4 112 113 114 115\n\t\tf 4 97 103 -99 -103\n\t\tmu 0 4 115 114 116 117\n\t\tf 4 98 105 -100 -105\n\t\tmu 0 4 117 116 118 119\n\t\tf 4 99 107 -97 -107\n\t\tmu 0 4 119 118 120 121\n\t\tf 4 -108 -106 -104 -102\n\t\tmu 0 4 113 122 123 114\n\t\tf 4 106 100 102 104\n\t\tmu 0 4 124 112 115 125\n\t\tf 4 108 113 -110 -113\n\t\tmu 0 4 126 127 128 129\n\t\tf 4 109 115 -111 -115\n\t\tmu 0 4 129 128 130 131\n\t\tf 4 110 117 -112 -117\n\t\tmu 0 4 131 130 132 133\n\t\tf 4 111 119 -109 -119\n\t\tmu 0 4 133 132 134 135\n\t\tf 4 -120 -118 -116 -114\n\t\tmu 0 4 127 136 137 128\n\t\tf 4 118 112 114 116\n\t\tmu 0 4 138 126 129 139\n\t\tf 4 120 125 -122 -125\n\t\tmu 0 4 140 141 142 143\n\t\tf 4 121 127 -123 -127\n\t\tmu 0 4 143 142 144 145\n\t\tf 4 122 129 -124 -129\n\t\tmu 0 4 145 144 146 147\n\t\tf 4 123 131 -121 -131\n\t\tmu 0 4 147 146 148 149\n\t\tf 4 -132 -130 -128 -126\n\t\tmu 0 4 141 150 151 142\n\t\tf 4 130 124 126 128\n\t\tmu 0 4 152 140 143 153\n\t\tf 4 132 137 -134 -137\n\t\tmu 0 4 154 155 156 157\n\t\tf 4 133 139 -135 -139\n\t\tmu 0 4 157 156 158 159\n\t\tf 4 134 141 -136 -141\n\t\tmu 0 4 159 158 160 161\n\t\tf 4 135 143 -133 -143\n\t\tmu 0 4 161 160 162 163\n\t\tf 4 -144 -142 -140 -138\n\t\tmu 0 4 155 164 165 156\n\t\tf 4 142 136 138 140\n\t\tmu 0 4 166 154 157 167\n\t\tf 4 144 149 -146 -149\n\t\tmu 0 4 168 169 170 171\n\t\tf 4 145 151 -147 -151\n\t\tmu 0 4 171 170 172 173\n\t\tf 4 146 153 -148 -153\n\t\tmu 0 4 173 172 174 175\n\t\tf 4 147 155 -145 -155\n\t\tmu 0 4 175 174 176 177\n\t\tf 4 -156 -154 -152 -150\n\t\tmu 0 4 169 178 179 170\n\t\tf 4 154 148 150 152\n\t\tmu 0 4 180 168 171 181\n\t\tf 4 156 161 -158 -161\n\t\tmu 0 4 182 183 184 185\n\t\tf 4 157 163 -159 -163\n\t\tmu 0 4 185 184 186 187\n\t\tf 4 158 165 -160 -165\n\t\tmu 0 4 187 186 188 189\n\t\tf 4 159 167 -157 -167\n\t\tmu 0 4 189 188 190 191\n\t\tf 4 -168 -166 -164 -162\n\t\tmu 0 4 183 192 193 184\n\t\tf 4 166 160 162 164\n\t\tmu 0 4 194 182 185 195\n\t\tf 4 168 173 -170 -173\n\t\tmu 0 4 196 197 198 199\n\t\tf 4 169 175 -171 -175\n\t\tmu 0 4 199 198 200 201\n\t\tf 4 170 177 -172 -177\n\t\tmu 0 4 201 200 202 203\n\t\tf 4 171 179 -169 -179\n\t\tmu 0 4 203 202 204 205\n\t\tf 4 -180 -178 -176 -174\n\t\tmu 0 4 197 206 207 198\n\t\tf 4 178 172 174 176\n\t\tmu 0 4 208 196 199 209\n\t\tf 4 180 185 -182 -185\n\t\tmu 0 4 210 211 212 213\n\t\tf 4 181 187 -183 -187\n\t\tmu 0 4 213 212 214 215\n\t\tf 4 182 189 -184 -189\n\t\tmu 0 4 215 214 216 217\n\t\tf 4 183 191 -181 -191\n\t\tmu 0 4 217 216 218 219\n\t\tf 4 -192 -190 -188 -186\n\t\tmu 0 4 211 220 221 212\n\t\tf 4 190 184 186 188\n\t\tmu 0 4 222 210 213 223\n\t\tf 4 192 197 -194 -197\n\t\tmu 0 4 224 225 226 227\n\t\tf 4 193 199 -195 -199\n\t\tmu 0 4 227 226 228 229\n\t\tf 4 194 201 -196 -201\n\t\tmu 0 4 229 228 230 231\n\t\tf 4 195 203 -193 -203\n\t\tmu 0 4 231 230 232 233\n\t\tf 4 -204 -202 -200 -198\n\t\tmu 0 4 225 234 235 226\n\t\tf 4 202 196 198 200\n\t\tmu 0 4 236 224 227 237\n\t\tf 4 204 209 -206 -209\n\t\tmu 0 4 238 239 240 241\n\t\tf 4 205 211 -207 -211\n\t\tmu 0 4 241 240 242 243\n\t\tf 4 206 213 -208 -213\n\t\tmu 0 4 243 242 244 245\n\t\tf 4 207 215 -205 -215\n\t\tmu 0 4 245 244 246 247\n\t\tf 4 -216 -214 -212 -210\n\t\tmu 0 4 239 248 249 240\n\t\tf 4 214 208 210 212\n\t\tmu 0 4 250 238 241 251\n\t\tf 4 216 221 -218 -221\n\t\tmu 0 4 252 253 254 255\n\t\tf 4 217 223 -219 -223\n\t\tmu 0 4 255 254 256 257\n\t\tf 4 218 225 -220 -225\n\t\tmu 0 4 257 256 258 259\n\t\tf 4 219 227 -217 -227\n\t\tmu 0 4 259 258 260 261\n\t\tf 4 -228 -226 -224 -222\n\t\tmu 0 4 253 262 263 254\n\t\tf 4 226 220 222 224\n\t\tmu 0 4 264 252 255 265\n\t\tf 4 228 233 -230 -233\n\t\tmu 0 4 266 267 268 269\n\t\tf 4 229 235 -231 -235\n\t\tmu 0 4 269 268 270 271\n\t\tf 4 230 237 -232 -237\n\t\tmu 0 4 271 270 272 273\n\t\tf 4 231 239 -229 -239\n\t\tmu 0 4 273 272 274 275\n\t\tf 4 -240 -238 -236 -234\n\t\tmu 0 4 267 276 277 268\n\t\tf 4 238 232 234 236\n\t\tmu 0 4 278 266 269 279\n\t\tf 4 240 245 -242 -245\n\t\tmu 0 4 280 281 282 283\n\t\tf 4 241 247 -243 -247\n\t\tmu 0 4 283 282 284 285\n\t\tf 4 242 249 -244 -249\n\t\tmu 0 4 285 284 286 287\n\t\tf 4 243 251 -241 -251\n\t\tmu 0 4 287 286 288 289\n\t\tf 4 -252 -250 -248 -246\n\t\tmu 0 4 281 290 291 282\n\t\tf 4 250 244 246 248\n\t\tmu 0 4 292 280 283 293\n\t\tf 4 252 257 -254 -257\n\t\tmu 0 4 294 295 296 297\n\t\tf 4 253 259 -255 -259\n\t\tmu 0 4 297 296 298 299\n\t\tf 4 254 261 -256 -261\n\t\tmu 0 4 299 298 300 301\n\t\tf 4 255 263 -253 -263\n\t\tmu 0 4 301 300 302 303\n\t\tf 4 -264 -262 -260 -258\n\t\tmu 0 4 295 304 305 296\n\t\tf 4 262 256 258 260\n\t\tmu 0 4 306 294 297 307\n\t\tf 4 264 269 -266 -269\n\t\tmu 0 4 308 309 310 311\n\t\tf 4 265 271 -267 -271\n\t\tmu 0 4 311 310 312 313\n\t\tf 4 266 273 -268 -273\n\t\tmu 0 4 313 312 314 315\n\t\tf 4 267 275 -265 -275\n\t\tmu 0 4 315 314 316 317\n\t\tf 4 -276 -274 -272 -270\n\t\tmu 0 4 309 318 319 310\n\t\tf 4 274 268 270 272\n\t\tmu 0 4 320 308 311 321\n\t\tf 4 276 281 -278 -281\n\t\tmu 0 4 322 323 324 325\n\t\tf 4 277 283 -279 -283\n\t\tmu 0 4 325 324 326 327\n\t\tf 4 278 285 -280 -285\n\t\tmu 0 4 327 326 328 329\n\t\tf 4 279 287 -277 -287\n\t\tmu 0 4 329 328 330 331\n\t\tf 4 -288 -286 -284 -282\n\t\tmu 0 4 323 332 333 324\n\t\tf 4 286 280 282 284\n\t\tmu 0 4 334 322 325 335\n\t\tf 4 288 293 -290 -293\n\t\tmu 0 4 336 337 338 339\n\t\tf 4 289 295 -291 -295\n\t\tmu 0 4 339 338 340 341\n\t\tf 4 290 297 -292 -297\n\t\tmu 0 4 341 340 342 343\n\t\tf 4 291 299 -289 -299\n\t\tmu 0 4 343 342 344 345\n\t\tf 4 -300 -298 -296 -294\n\t\tmu 0 4 337 346 347 338\n\t\tf 4 298 292 294 296\n\t\tmu 0 4 348 336 339 349\n\t\tf 4 300 305 -302 -305\n\t\tmu 0 4 350 351 352 353\n\t\tf 4 301 307 -303 -307\n\t\tmu 0 4 353 352 354 355\n\t\tf 4 302 309 -304 -309\n\t\tmu 0 4 355 354 356 357\n\t\tf 4 303 311 -301 -311\n\t\tmu 0 4 357 356 358 359\n\t\tf 4 -312 -310 -308 -306\n\t\tmu 0 4 351 360 361 352\n\t\tf 4 310 304 306 308\n\t\tmu 0 4 362 350 353 363\n\t\tf 4 312 317 -314 -317\n\t\tmu 0 4 364 365 366 367\n\t\tf 4 313 319 -315 -319\n\t\tmu 0 4 367 366 368 369\n\t\tf 4 314 321 -316 -321\n\t\tmu 0 4 369 368 370 371\n\t\tf 4 315 323 -313 -323\n\t\tmu 0 4 371 370 372 373\n\t\tf 4 -324 -322 -320 -318\n\t\tmu 0 4 365 374 375 366\n\t\tf 4 322 316 318 320\n\t\tmu 0 4 376 364 367 377\n\t\tf 4 324 329 -326 -329\n\t\tmu 0 4 378 379 380 381\n\t\tf 4 325 331 -327 -331\n\t\tmu 0 4 381 380 382 383\n\t\tf 4 326 333 -328 -333\n\t\tmu 0 4 383 382 384 385\n\t\tf 4 327 335 -325 -335\n\t\tmu 0 4 385 384 386 387\n\t\tf 4 -336 -334 -332 -330\n\t\tmu 0 4 379 388 389 380\n\t\tf 4 334 328 330 332\n\t\tmu 0 4 390 378 381 391\n\t\tf 4 336 341 -338 -341\n\t\tmu 0 4 392 393 394 395\n\t\tf 4 337 343 -339 -343\n\t\tmu 0 4 395 394 396 397\n\t\tf 4 338 345 -340 -345\n\t\tmu 0 4 397 396 398 399\n\t\tf 4 339 347 -337 -347\n\t\tmu 0 4 399 398 400 401\n\t\tf 4 -348 -346 -344 -342\n\t\tmu 0 4 393 402 403 394\n\t\tf 4 346 340 342 344\n\t\tmu 0 4 404 392 395 405\n\t\tf 4 348 353 -350 -353\n\t\tmu 0 4 406 407 408 409\n\t\tf 4 349 355 -351 -355\n\t\tmu 0 4 409 408 410 411\n\t\tf 4 350 357 -352 -357\n\t\tmu 0 4 411 410 412 413\n\t\tf 4 351 359 -349 -359\n\t\tmu 0 4 413 412 414 415\n\t\tf 4 -360 -358 -356 -354\n\t\tmu 0 4 407 416 417 408\n\t\tf 4 358 352 354 356\n\t\tmu 0 4 418 406 409 419\n\t\tf 4 360 365 -362 -365\n\t\tmu 0 4 420 421 422 423\n\t\tf 4 361 367 -363 -367\n\t\tmu 0 4 423 422 424 425\n\t\tf 4 362 369 -364 -369\n\t\tmu 0 4 425 424 426 427\n\t\tf 4 363 371 -361 -371\n\t\tmu 0 4 427 426 428 429\n\t\tf 4 -372 -370 -368 -366\n\t\tmu 0 4 421 430 431 422\n\t\tf 4 370 364 366 368\n\t\tmu 0 4 432 420 423 433\n\t\tf 4 372 377 -374 -377\n\t\tmu 0 4 434 435 436 437\n\t\tf 4 373 379 -375 -379\n\t\tmu 0 4 437 436 438 439\n\t\tf 4 374 381 -376 -381\n\t\tmu 0 4 439 438 440 441\n\t\tf 4 375 383 -373 -383\n\t\tmu 0 4 441 440 442 443\n\t\tf 4 -384 -382 -380 -378\n\t\tmu 0 4 435 444 445 436\n\t\tf 4 382 376 378 380\n\t\tmu 0 4 446 434 437 447\n\t\tf 4 384 389 -386 -389\n\t\tmu 0 4 448 449 450 451\n\t\tf 4 385 391 -387 -391\n\t\tmu 0 4 451 450 452 453\n\t\tf 4 386 393 -388 -393\n\t\tmu 0 4 453 452 454 455\n\t\tf 4 387 395 -385 -395\n\t\tmu 0 4 455 454 456 457\n\t\tf 4 -396 -394 -392 -390\n\t\tmu 0 4 449 458 459 450\n\t\tf 4 394 388 390 392\n\t\tmu 0 4 460 448 451 461\n\t\tf 4 396 401 -398 -401\n\t\tmu 0 4 462 463 464 465\n\t\tf 4 397 403 -399 -403\n\t\tmu 0 4 465 464 466 467\n\t\tf 4 398 405 -400 -405\n\t\tmu 0 4 467 466 468 469\n\t\tf 4 399 407 -397 -407\n\t\tmu 0 4 469 468 470 471\n\t\tf 4 -408 -406 -404 -402\n\t\tmu 0 4 463 472 473 464\n\t\tf 4 406 400 402 404\n\t\tmu 0 4 474 462 465 475\n\t\tf 4 408 413 -410 -413\n\t\tmu 0 4 476 477 478 479\n\t\tf 4 409 415 -411 -415\n\t\tmu 0 4 479 478 480 481\n\t\tf 4 410 417 -412 -417\n\t\tmu 0 4 481 480 482 483\n\t\tf 4 411 419 -409 -419\n\t\tmu 0 4 483 482 484 485\n\t\tf 4 -420 -418 -416 -414\n\t\tmu 0 4 477 486 487 478\n\t\tf 4 418 412 414 416\n\t\tmu 0 4 488 476 479 489\n\t\tf 4 420 425 -422 -425\n\t\tmu 0 4 490 491 492 493\n\t\tf 4 421 427 -423 -427\n\t\tmu 0 4 493 492 494 495\n\t\tf 4 422 429 -424 -429\n\t\tmu 0 4 495 494 496 497\n\t\tf 4 423 431 -421 -431\n\t\tmu 0 4 497 496 498 499\n\t\tf 4 -432 -430 -428 -426\n\t\tmu 0 4 491 500 501 492\n\t\tf 4 430 424 426 428\n\t\tmu 0 4 502 490 493 503\n\t\tf 4 432 437 -434 -437\n\t\tmu 0 4 504 505 506 507\n\t\tf 4 433 439 -435 -439\n\t\tmu 0 4 507 506 508 509\n\t\tf 4 434 441 -436 -441\n\t\tmu 0 4 509 508 510 511\n\t\tf 4 435 443 -433 -443\n\t\tmu 0 4 511 510 512 513\n\t\tf 4 -444 -442 -440 -438\n\t\tmu 0 4 505 514 515 506\n\t\tf 4 442 436 438 440\n\t\tmu 0 4 516 504 507 517\n\t\tf 4 444 449 -446 -449\n\t\tmu 0 4 518 519 520 521\n\t\tf 4 445 451 -447 -451\n\t\tmu 0 4 521 520 522 523\n\t\tf 4 446 453 -448 -453\n\t\tmu 0 4 523 522 524 525\n\t\tf 4 447 455 -445 -455\n\t\tmu 0 4 525 524 526 527\n\t\tf 4 -456 -454 -452 -450\n\t\tmu 0 4 519 528 529 520\n\t\tf 4 454 448 450 452\n\t\tmu 0 4 530 518 521 531\n\t\tf 4 456 461 -458 -461\n\t\tmu 0 4 532 533 534 535\n\t\tf 4 457 463 -459 -463\n\t\tmu 0 4 535 534 536 537\n\t\tf 4 458 465 -460 -465\n\t\tmu 0 4 537 536 538 539\n\t\tf 4 459 467 -457 -467\n\t\tmu 0 4 539 538 540 541\n\t\tf 4 -468 -466 -464 -462\n\t\tmu 0 4 533 542 543 534\n\t\tf 4 466 460 462 464\n\t\tmu 0 4 544 532 535 545\n\t\tf 4 468 473 -470 -473\n\t\tmu 0 4 546 547 548 549\n\t\tf 4 469 475 -471 -475\n\t\tmu 0 4 549 548 550 551\n\t\tf 4 470 477 -472 -477\n\t\tmu 0 4 551 550 552 553\n\t\tf 4 471 479 -469 -479\n\t\tmu 0 4 553 552 554 555\n\t\tf 4 -480 -478 -476 -474\n\t\tmu 0 4 547 556 557 548\n\t\tf 4 478 472 474 476\n\t\tmu 0 4 558 546 549 559\n\t\tf 4 480 485 -482 -485\n\t\tmu 0 4 560 561 562 563\n\t\tf 4 481 487 -483 -487\n\t\tmu 0 4 563 562 564 565\n\t\tf 4 482 489 -484 -489\n\t\tmu 0 4 565 564 566 567\n\t\tf 4 483 491 -481 -491\n\t\tmu 0 4 567 566 568 569\n\t\tf 4 -492 -490 -488 -486\n\t\tmu 0 4 561 570 571 562\n\t\tf 4 490 484 486 488\n\t\tmu 0 4 572 560 563 573\n\t\tf 4 492 497 -494 -497\n\t\tmu 0 4 574 575 576 577\n\t\tf 4 493 499 -495 -499\n\t\tmu 0 4 577 576 578 579\n\t\tf 4 494 501 -496 -501\n\t\tmu 0 4 579 578 580 581\n\t\tf 4 495 503 -493 -503\n\t\tmu 0 4 581 580 582 583\n\t\tf 4 -504 -502 -500 -498\n\t\tmu 0 4 575 584 585 576\n\t\tf 4 502 496 498 500\n\t\tmu 0 4 586 574 577 587\n\t\tf 4 504 509 -506 -509\n\t\tmu 0 4 588 589 590 591\n\t\tf 4 505 511 -507 -511\n\t\tmu 0 4 591 590 592 593\n\t\tf 4 506 513 -508 -513\n\t\tmu 0 4 593 592 594 595\n\t\tf 4 507 515 -505 -515\n\t\tmu 0 4 595 594 596 597\n\t\tf 4 -516 -514 -512 -510\n\t\tmu 0 4 589 598 599 590\n\t\tf 4 514 508 510 512\n\t\tmu 0 4 600 588 591 601\n\t\tf 4 516 521 -518 -521\n\t\tmu 0 4 602 603 604 605\n\t\tf 4 517 523 -519 -523\n\t\tmu 0 4 605 604 606 607\n\t\tf 4 518 525 -520 -525\n\t\tmu 0 4 607 606 608 609\n\t\tf 4 519 527 -517 -527\n\t\tmu 0 4 609 608 610 611\n\t\tf 4 -528 -526 -524 -522\n\t\tmu 0 4 603 612 613 604\n\t\tf 4 526 520 522 524\n\t\tmu 0 4 614 602 605 615\n\t\tf 4 528 533 -530 -533\n\t\tmu 0 4 616 617 618 619\n\t\tf 4 529 535 -531 -535\n\t\tmu 0 4 619 618 620 621\n\t\tf 4 530 537 -532 -537\n\t\tmu 0 4 621 620 622 623\n\t\tf 4 531 539 -529 -539\n\t\tmu 0 4 623 622 624 625\n\t\tf 4 -540 -538 -536 -534\n\t\tmu 0 4 617 626 627 618\n\t\tf 4 538 532 534 536\n\t\tmu 0 4 628 616 619 629\n\t\tf 4 540 545 -542 -545\n\t\tmu 0 4 630 631 632 633\n\t\tf 4 541 547 -543 -547\n\t\tmu 0 4 633 632 634 635\n\t\tf 4 542 549 -544 -549\n\t\tmu 0 4 635 634 636 637\n\t\tf 4 543 551 -541 -551\n\t\tmu 0 4 637 636 638 639\n\t\tf 4 -552 -550 -548 -546\n\t\tmu 0 4 631 640 641 632\n\t\tf 4 550 544 546 548\n\t\tmu 0 4 642 630 633 643\n\t\tf 4 552 557 -554 -557\n\t\tmu 0 4 644 645 646 647\n\t\tf 4 553 559 -555 -559\n\t\tmu 0 4 647 646 648 649\n\t\tf 4 554 561 -556 -561\n\t\tmu 0 4 649 648 650 651\n\t\tf 4 555 563 -553 -563\n\t\tmu 0 4 651 650 652 653\n\t\tf 4 -564 -562 -560 -558\n\t\tmu 0 4 645 654 655 646\n\t\tf 4 562 556 558 560\n\t\tmu 0 4 656 644 647 657\n\t\tf 4 564 569 -566 -569\n\t\tmu 0 4 658 659 660 661\n\t\tf 4 565 571 -567 -571\n\t\tmu 0 4 661 660 662 663\n\t\tf 4 566 573 -568 -573\n\t\tmu 0 4 663 662 664 665\n\t\tf 4 567 575 -565 -575\n\t\tmu 0 4 665 664 666 667\n\t\tf 4 -576 -574 -572 -570\n\t\tmu 0 4 659 668 669 660\n\t\tf 4 574 568 570 572\n\t\tmu 0 4 670 658 661 671\n\t\tf 4 576 581 -578 -581\n\t\tmu 0 4 672 673 674 675\n\t\tf 4 577 583 -579 -583\n\t\tmu 0 4 675 674 676 677\n\t\tf 4 578 585 -580 -585\n\t\tmu 0 4 677 676 678 679\n\t\tf 4 579 587 -577 -587\n\t\tmu 0 4 679 678 680 681\n\t\tf 4 -588 -586 -584 -582\n\t\tmu 0 4 673 682 683 674\n\t\tf 4 586 580 582 584\n\t\tmu 0 4 684 672 675 685\n\t\tf 4 588 593 -590 -593\n\t\tmu 0 4 686 687 688 689\n\t\tf 4 589 595 -591 -595\n\t\tmu 0 4 689 688 690 691\n\t\tf 4 590 597 -592 -597\n\t\tmu 0 4 691 690 692 693\n\t\tf 4 591 599 -589 -599\n\t\tmu 0 4 693 692 694 695\n\t\tf 4 -600 -598 -596 -594\n\t\tmu 0 4 687 696 697 688\n\t\tf 4 598 592 594 596\n\t\tmu 0 4 698 686 689 699\n\t\tf 4 600 605 -602 -605\n\t\tmu 0 4 700 701 702 703\n\t\tf 4 601 607 -603 -607\n\t\tmu 0 4 703 702 704 705\n\t\tf 4 602 609 -604 -609\n\t\tmu 0 4 705 704 706 707\n\t\tf 4 603 611 -601 -611\n\t\tmu 0 4 707 706 708 709\n\t\tf 4 -612 -610 -608 -606\n\t\tmu 0 4 701 710 711 702\n\t\tf 4 610 604 606 608\n\t\tmu 0 4 712 700 703 713\n\t\tf 4 612 617 -614 -617\n\t\tmu 0 4 714 715 716 717\n\t\tf 4 613 619 -615 -619\n\t\tmu 0 4 717 716 718 719\n\t\tf 4 614 621 -616 -621\n\t\tmu 0 4 719 718 720 721\n\t\tf 4 615 623 -613 -623\n\t\tmu 0 4 721 720 722 723\n\t\tf 4 -624 -622 -620 -618\n\t\tmu 0 4 715 724 725 716\n\t\tf 4 622 616 618 620\n\t\tmu 0 4 726 714 717 727\n\t\tf 4 624 629 -626 -629\n\t\tmu 0 4 728 729 730 731\n\t\tf 4 625 631 -627 -631\n\t\tmu 0 4 731 730 732 733\n\t\tf 4 626 633 -628 -633\n\t\tmu 0 4 733 732 734 735\n\t\tf 4 627 635 -625 -635\n\t\tmu 0 4 735 734 736 737\n\t\tf 4 -636 -634 -632 -630\n\t\tmu 0 4 729 738 739 730\n\t\tf 4 634 628 630 632\n\t\tmu 0 4 740 728 731 741\n\t\tf 4 636 641 -638 -641\n\t\tmu 0 4 742 743 744 745\n\t\tf 4 637 643 -639 -643\n\t\tmu 0 4 745 744 746 747\n\t\tf 4 638 645 -640 -645\n\t\tmu 0 4 747 746 748 749\n\t\tf 4 639 647 -637 -647\n\t\tmu 0 4 749 748 750 751\n\t\tf 4 -648 -646 -644 -642\n\t\tmu 0 4 743 752 753 744\n\t\tf 4 646 640 642 644\n\t\tmu 0 4 754 742 745 755\n\t\tf 4 648 653 -650 -653\n\t\tmu 0 4 756 757 758 759\n\t\tf 4 649 655 -651 -655\n\t\tmu 0 4 759 758 760 761\n\t\tf 4 650 657 -652 -657\n\t\tmu 0 4 761 760 762 763\n\t\tf 4 651 659 -649 -659\n\t\tmu 0 4 763 762 764 765\n\t\tf 4 -660 -658 -656 -654\n\t\tmu 0 4 757 766 767 758\n\t\tf 4 658 652 654 656\n\t\tmu 0 4 768 756 759 769\n\t\tf 4 660 665 -662 -665\n\t\tmu 0 4 770 771 772 773\n\t\tf 4 661 667 -663 -667\n\t\tmu 0 4 773 772 774 775\n\t\tf 4 662 669 -664 -669\n\t\tmu 0 4 775 774 776 777\n\t\tf 4 663 671 -661 -671\n\t\tmu 0 4 777 776 778 779\n\t\tf 4 -672 -670 -668 -666\n\t\tmu 0 4 771 780 781 772\n\t\tf 4 670 664 666 668\n\t\tmu 0 4 782 770 773 783\n\t\tf 4 672 677 -674 -677\n\t\tmu 0 4 784 785 786 787\n\t\tf 4 673 679 -675 -679\n\t\tmu 0 4 787 786 788 789\n\t\tf 4 674 681 -676 -681\n\t\tmu 0 4 789 788 790 791\n\t\tf 4 675 683 -673 -683\n\t\tmu 0 4 791 790 792 793\n\t\tf 4 -684 -682 -680 -678\n\t\tmu 0 4 785 794 795 786\n\t\tf 4 682 676 678 680\n\t\tmu 0 4 796 784 787 797\n\t\tf 4 684 689 -686 -689\n\t\tmu 0 4 798 799 800 801\n\t\tf 4 685 691 -687 -691\n\t\tmu 0 4 801 800 802 803\n\t\tf 4 686 693 -688 -693\n\t\tmu 0 4 803 802 804 805\n\t\tf 4 687 695 -685 -695\n\t\tmu 0 4 805 804 806 807\n\t\tf 4 -696 -694 -692 -690\n\t\tmu 0 4 799 808 809 800\n\t\tf 4 694 688 690 692\n\t\tmu 0 4 810 798 801 811\n\t\tf 4 696 701 -698 -701\n\t\tmu 0 4 812 813 814 815\n\t\tf 4 697 703 -699 -703\n\t\tmu 0 4 815 814 816 817\n\t\tf 4 698 705 -700 -705\n\t\tmu 0 4 817 816 818 819\n\t\tf 4 699 707 -697 -707\n\t\tmu 0 4 819 818 820 821\n\t\tf 4 -708 -706 -704 -702\n\t\tmu 0 4 813 822 823 814\n\t\tf 4 706 700 702 704\n\t\tmu 0 4 824 812 815 825\n\t\tf 4 708 713 -710 -713\n\t\tmu 0 4 826 827 828 829\n\t\tf 4 709 715 -711 -715\n\t\tmu 0 4 829 828 830 831\n\t\tf 4 710 717 -712 -717\n\t\tmu 0 4 831 830 832 833\n\t\tf 4 711 719 -709 -719\n\t\tmu 0 4 833 832 834 835\n\t\tf 4 -720 -718 -716 -714\n\t\tmu 0 4 827 836 837 828\n\t\tf 4 718 712 714 716\n\t\tmu 0 4 838 826 829 839\n\t\tf 4 720 725 -722 -725\n\t\tmu 0 4 840 841 842 843\n\t\tf 4 721 727 -723 -727\n\t\tmu 0 4 843 842 844 845\n\t\tf 4 722 729 -724 -729\n\t\tmu 0 4 845 844 846 847\n\t\tf 4 723 731 -721 -731\n\t\tmu 0 4 847 846 848 849\n\t\tf 4 -732 -730 -728 -726\n\t\tmu 0 4 841 850 851 842\n\t\tf 4 730 724 726 728\n\t\tmu 0 4 852 840 843 853\n\t\tf 4 732 737 -734 -737\n\t\tmu 0 4 854 855 856 857\n\t\tf 4 733 739 -735 -739\n\t\tmu 0 4 857 856 858 859\n\t\tf 4 734 741 -736 -741\n\t\tmu 0 4 859 858 860 861\n\t\tf 4 735 743 -733 -743\n\t\tmu 0 4 861 860 862 863\n\t\tf 4 -744 -742 -740 -738\n\t\tmu 0 4 855 864 865 856\n\t\tf 4 742 736 738 740\n\t\tmu 0 4 866 854 857 867\n\t\tf 4 744 749 -746 -749\n\t\tmu 0 4 868 869 870 871\n\t\tf 4 745 751 -747 -751\n\t\tmu 0 4 871 870 872 873\n\t\tf 4 746 753 -748 -753\n\t\tmu 0 4 873 872 874 875\n\t\tf 4 747 755 -745 -755\n\t\tmu 0 4 875 874 876 877\n\t\tf 4 -756 -754 -752 -750\n\t\tmu 0 4 869 878 879 870\n\t\tf 4 754 748 750 752\n\t\tmu 0 4 880 868 871 881\n\t\tf 4 756 761 -758 -761\n\t\tmu 0 4 882 883 884 885\n\t\tf 4 757 763 -759 -763\n\t\tmu 0 4 885 884 886 887\n\t\tf 4 758 765 -760 -765\n\t\tmu 0 4 887 886 888 889\n\t\tf 4 759 767 -757 -767\n\t\tmu 0 4 889 888 890 891\n\t\tf 4 -768 -766 -764 -762\n\t\tmu 0 4 883 892 893 884\n\t\tf 4 766 760 762 764\n\t\tmu 0 4 894 882 885 895\n\t\tf 4 768 773 -770 -773\n\t\tmu 0 4 896 897 898 899\n\t\tf 4 769 775 -771 -775\n\t\tmu 0 4 899 898 900 901\n\t\tf 4 770 777 -772 -777\n\t\tmu 0 4 901 900 902 903\n\t\tf 4 771 779 -769 -779\n\t\tmu 0 4 903 902 904 905\n\t\tf 4 -780 -778 -776 -774\n\t\tmu 0 4 897 906 907 898\n\t\tf 4 778 772 774 776\n\t\tmu 0 4 908 896 899 909\n\t\tf 4 780 785 -782 -785\n\t\tmu 0 4 910 911 912 913\n\t\tf 4 781 787 -783 -787\n\t\tmu 0 4 913 912 914 915\n\t\tf 4 782 789 -784 -789\n\t\tmu 0 4 915 914 916 917\n\t\tf 4 783 791 -781 -791\n\t\tmu 0 4 917 916 918 919\n\t\tf 4 -792 -790 -788 -786\n\t\tmu 0 4 911 920 921 912\n\t\tf 4 790 784 786 788\n\t\tmu 0 4 922 910 913 923\n\t\tf 4 792 797 -794 -797\n\t\tmu 0 4 924 925 926 927\n\t\tf 4 793 799 -795 -799\n\t\tmu 0 4 927 926 928 929\n\t\tf 4 794 801 -796 -801\n\t\tmu 0 4 929 928 930 931\n\t\tf 4 795 803 -793 -803\n\t\tmu 0 4 931 930 932 933\n\t\tf 4 -804 -802 -800 -798\n\t\tmu 0 4 925 934 935 926\n\t\tf 4 802 796 798 800\n\t\tmu 0 4 936 924 927 937\n\t\tf 4 804 809 -806 -809\n\t\tmu 0 4 938 939 940 941\n\t\tf 4 805 811 -807 -811\n\t\tmu 0 4 941 940 942 943\n\t\tf 4 806 813 -808 -813\n\t\tmu 0 4 943 942 944 945\n\t\tf 4 807 815 -805 -815\n\t\tmu 0 4 945 944 946 947\n\t\tf 4 -816 -814 -812 -810\n\t\tmu 0 4 939 948 949 940\n\t\tf 4 814 808 810 812\n\t\tmu 0 4 950 938 941 951\n\t\tf 4 816 821 -818 -821\n\t\tmu 0 4 952 953 954 955\n\t\tf 4 817 823 -819 -823\n\t\tmu 0 4 955 954 956 957\n\t\tf 4 818 825 -820 -825\n\t\tmu 0 4 957 956 958 959\n\t\tf 4 819 827 -817 -827\n\t\tmu 0 4 959 958 960 961\n\t\tf 4 -828 -826 -824 -822\n\t\tmu 0 4 953 962 963 954\n\t\tf 4 826 820 822 824\n\t\tmu 0 4 964 952 955 965\n\t\tf 4 828 833 -830 -833\n\t\tmu 0 4 966 967 968 969\n\t\tf 4 829 835 -831 -835\n\t\tmu 0 4 969 968 970 971\n\t\tf 4 830 837 -832 -837\n\t\tmu 0 4 971 970 972 973\n\t\tf 4 831 839 -829 -839\n\t\tmu 0 4 973 972 974 975\n\t\tf 4 -840 -838 -836 -834\n\t\tmu 0 4 967 976 977 968\n\t\tf 4 838 832 834 836\n\t\tmu 0 4 978 966 969 979\n\t\tf 4 840 845 -842 -845\n\t\tmu 0 4 980 981 982 983\n\t\tf 4 841 847 -843 -847\n\t\tmu 0 4 983 982 984 985\n\t\tf 4 842 849 -844 -849\n\t\tmu 0 4 985 984 986 987\n\t\tf 4 843 851 -841 -851\n\t\tmu 0 4 987 986 988 989\n\t\tf 4 -852 -850 -848 -846\n\t\tmu 0 4 981 990 991 982\n\t\tf 4 850 844 846 848\n\t\tmu 0 4 992 980 983 993\n\t\tf 4 852 857 -854 -857\n\t\tmu 0 4 994 995 996 997\n\t\tf 4 853 859 -855 -859\n\t\tmu 0 4 997 996 998 999\n\t\tf 4 854 861 -856 -861\n\t\tmu 0 4 999 998 1000 1001\n\t\tf 4 855 863 -853 -863\n\t\tmu 0 4 1001 1000 1002 1003\n\t\tf 4 -864 -862 -860 -858\n\t\tmu 0 4 995 1004 1005 996\n\t\tf 4 862 856 858 860\n\t\tmu 0 4 1006 994 997 1007\n\t\tf 4 864 869 -866 -869\n\t\tmu 0 4 1008 1009 1010 1011\n\t\tf 4 865 871 -867 -871\n\t\tmu 0 4 1011 1010 1012 1013\n\t\tf 4 866 873 -868 -873\n\t\tmu 0 4 1013 1012 1014 1015\n\t\tf 4 867 875 -865 -875\n\t\tmu 0 4 1015 1014 1016 1017\n\t\tf 4 -876 -874 -872 -870\n\t\tmu 0 4 1009 1018 1019 1010\n\t\tf 4 874 868 870 872\n\t\tmu 0 4 1020 1008 1011 1021\n\t\tf 4 876 881 -878 -881\n\t\tmu 0 4 1022 1023 1024 1025\n\t\tf 4 877 883 -879 -883\n\t\tmu 0 4 1025 1024 1026 1027\n\t\tf 4 878 885 -880 -885\n\t\tmu 0 4 1027 1026 1028 1029\n\t\tf 4 879 887 -877 -887\n\t\tmu 0 4 1029 1028 1030 1031\n\t\tf 4 -888 -886 -884 -882\n\t\tmu 0 4 1023 1032 1033 1024\n\t\tf 4 886 880 882 884\n\t\tmu 0 4 1034 1022 1025 1035\n\t\tf 4 888 893 -890 -893\n\t\tmu 0 4 1036 1037 1038 1039\n\t\tf 4 889 895 -891 -895\n\t\tmu 0 4 1039 1038 1040 1041\n\t\tf 4 890 897 -892 -897\n\t\tmu 0 4 1041 1040 1042 1043\n\t\tf 4 891 899 -889 -899\n\t\tmu 0 4 1043 1042 1044 1045\n\t\tf 4 -900 -898 -896 -894\n\t\tmu 0 4 1037 1046 1047 1038\n\t\tf 4 898 892 894 896\n\t\tmu 0 4 1048 1036 1039 1049\n\t\tf 4 900 905 -902 -905\n\t\tmu 0 4 1050 1051 1052 1053\n\t\tf 4 901 907 -903 -907\n\t\tmu 0 4 1053 1052 1054 1055\n\t\tf 4 902 909 -904 -909\n\t\tmu 0 4 1055 1054 1056 1057\n\t\tf 4 903 911 -901 -911\n\t\tmu 0 4 1057 1056 1058 1059\n\t\tf 4 -912 -910 -908 -906\n\t\tmu 0 4 1051 1060 1061 1052\n\t\tf 4 910 904 906 908\n\t\tmu 0 4 1062 1050 1053 1063\n\t\tf 4 912 917 -914 -917\n\t\tmu 0 4 1064 1065 1066 1067\n\t\tf 4 913 919 -915 -919\n\t\tmu 0 4 1067 1066 1068 1069\n\t\tf 4 914 921 -916 -921\n\t\tmu 0 4 1069 1068 1070 1071\n\t\tf 4 915 923 -913 -923\n\t\tmu 0 4 1071 1070 1072 1073\n\t\tf 4 -924 -922 -920 -918\n\t\tmu 0 4 1065 1074 1075 1066\n\t\tf 4 922 916 918 920\n\t\tmu 0 4 1076 1064 1067 1077\n\t\tf 4 924 929 -926 -929\n\t\tmu 0 4 1078 1079 1080 1081\n\t\tf 4 925 931 -927 -931\n\t\tmu 0 4 1081 1080 1082 1083\n\t\tf 4 926 933 -928 -933\n\t\tmu 0 4 1083 1082 1084 1085\n\t\tf 4 927 935 -925 -935\n\t\tmu 0 4 1085 1084 1086 1087\n\t\tf 4 -936 -934 -932 -930\n\t\tmu 0 4 1079 1088 1089 1080\n\t\tf 4 934 928 930 932\n\t\tmu 0 4 1090 1078 1081 1091\n\t\tf 4 936 941 -938 -941\n\t\tmu 0 4 1092 1093 1094 1095\n\t\tf 4 937 943 -939 -943\n\t\tmu 0 4 1095 1094 1096 1097\n\t\tf 4 938 945 -940 -945\n\t\tmu 0 4 1097 1096 1098 1099\n\t\tf 4 939 947 -937 -947\n\t\tmu 0 4 1099 1098 1100 1101\n\t\tf 4 -948 -946 -944 -942\n\t\tmu 0 4 1093 1102 1103 1094\n\t\tf 4 946 940 942 944\n\t\tmu 0 4 1104 1092 1095 1105\n\t\tf 4 948 953 -950 -953\n\t\tmu 0 4 1106 1107 1108 1109\n\t\tf 4 949 955 -951 -955\n\t\tmu 0 4 1109 1108 1110 1111\n\t\tf 4 950 957 -952 -957\n\t\tmu 0 4 1111 1110 1112 1113\n\t\tf 4 951 959 -949 -959\n\t\tmu 0 4 1113 1112 1114 1115\n\t\tf 4 -960 -958 -956 -954\n\t\tmu 0 4 1107 1116 1117 1108\n\t\tf 4 958 952 954 956\n\t\tmu 0 4 1118 1106 1109 1119\n\t\tf 4 960 965 -962 -965\n\t\tmu 0 4 1120 1121 1122 1123\n\t\tf 4 961 967 -963 -967\n\t\tmu 0 4 1123 1122 1124 1125\n\t\tf 4 962 969 -964 -969\n\t\tmu 0 4 1125 1124 1126 1127\n\t\tf 4 963 971 -961 -971\n\t\tmu 0 4 1127 1126 1128 1129\n\t\tf 4 -972 -970 -968 -966\n\t\tmu 0 4 1121 1130 1131 1122\n\t\tf 4 970 964 966 968\n\t\tmu 0 4 1132 1120 1123 1133\n\t\tf 4 972 977 -974 -977\n\t\tmu 0 4 1134 1135 1136 1137\n\t\tf 4 973 979 -975 -979\n\t\tmu 0 4 1137 1136 1138 1139\n\t\tf 4 974 981 -976 -981\n\t\tmu 0 4 1139 1138 1140 1141\n\t\tf 4 975 983 -973 -983\n\t\tmu 0 4 1141 1140 1142 1143\n\t\tf 4 -984 -982 -980 -978\n\t\tmu 0 4 1135 1144 1145 1136\n\t\tf 4 982 976 978 980\n\t\tmu 0 4 1146 1134 1137 1147\n\t\tf 4 984 989 -986 -989\n\t\tmu 0 4 1148 1149 1150 1151\n\t\tf 4 985 991 -987 -991\n\t\tmu 0 4 1151 1150 1152 1153\n\t\tf 4 986 993 -988 -993\n\t\tmu 0 4 1153 1152 1154 1155\n\t\tf 4 987 995 -985 -995\n\t\tmu 0 4 1155 1154 1156 1157\n\t\tf 4 -996 -994 -992 -990\n\t\tmu 0 4 1149 1158 1159 1150\n\t\tf 4 994 988 990 992\n\t\tmu 0 4 1160 1148 1151 1161\n\t\tf 4 996 1001 -998 -1001\n\t\tmu 0 4 1162 1163 1164 1165\n\t\tf 4 997 1003 -999 -1003\n\t\tmu 0 4 1165 1164 1166 1167;\n\tsetAttr \".fc[500:999]\"\n\t\tf 4 998 1005 -1000 -1005\n\t\tmu 0 4 1167 1166 1168 1169\n\t\tf 4 999 1007 -997 -1007\n\t\tmu 0 4 1169 1168 1170 1171\n\t\tf 4 -1008 -1006 -1004 -1002\n\t\tmu 0 4 1163 1172 1173 1164\n\t\tf 4 1006 1000 1002 1004\n\t\tmu 0 4 1174 1162 1165 1175\n\t\tf 4 1008 1013 -1010 -1013\n\t\tmu 0 4 1176 1177 1178 1179\n\t\tf 4 1009 1015 -1011 -1015\n\t\tmu 0 4 1179 1178 1180 1181\n\t\tf 4 1010 1017 -1012 -1017\n\t\tmu 0 4 1181 1180 1182 1183\n\t\tf 4 1011 1019 -1009 -1019\n\t\tmu 0 4 1183 1182 1184 1185\n\t\tf 4 -1020 -1018 -1016 -1014\n\t\tmu 0 4 1177 1186 1187 1178\n\t\tf 4 1018 1012 1014 1016\n\t\tmu 0 4 1188 1176 1179 1189\n\t\tf 4 1020 1025 -1022 -1025\n\t\tmu 0 4 1190 1191 1192 1193\n\t\tf 4 1021 1027 -1023 -1027\n\t\tmu 0 4 1193 1192 1194 1195\n\t\tf 4 1022 1029 -1024 -1029\n\t\tmu 0 4 1195 1194 1196 1197\n\t\tf 4 1023 1031 -1021 -1031\n\t\tmu 0 4 1197 1196 1198 1199\n\t\tf 4 -1032 -1030 -1028 -1026\n\t\tmu 0 4 1191 1200 1201 1192\n\t\tf 4 1030 1024 1026 1028\n\t\tmu 0 4 1202 1190 1193 1203\n\t\tf 4 1032 1037 -1034 -1037\n\t\tmu 0 4 1204 1205 1206 1207\n\t\tf 4 1033 1039 -1035 -1039\n\t\tmu 0 4 1207 1206 1208 1209\n\t\tf 4 1034 1041 -1036 -1041\n\t\tmu 0 4 1209 1208 1210 1211\n\t\tf 4 1035 1043 -1033 -1043\n\t\tmu 0 4 1211 1210 1212 1213\n\t\tf 4 -1044 -1042 -1040 -1038\n\t\tmu 0 4 1205 1214 1215 1206\n\t\tf 4 1042 1036 1038 1040\n\t\tmu 0 4 1216 1204 1207 1217\n\t\tf 4 1044 1049 -1046 -1049\n\t\tmu 0 4 1218 1219 1220 1221\n\t\tf 4 1045 1051 -1047 -1051\n\t\tmu 0 4 1221 1220 1222 1223\n\t\tf 4 1046 1053 -1048 -1053\n\t\tmu 0 4 1223 1222 1224 1225\n\t\tf 4 1047 1055 -1045 -1055\n\t\tmu 0 4 1225 1224 1226 1227\n\t\tf 4 -1056 -1054 -1052 -1050\n\t\tmu 0 4 1219 1228 1229 1220\n\t\tf 4 1054 1048 1050 1052\n\t\tmu 0 4 1230 1218 1221 1231\n\t\tf 4 1056 1061 -1058 -1061\n\t\tmu 0 4 1232 1233 1234 1235\n\t\tf 4 1057 1063 -1059 -1063\n\t\tmu 0 4 1235 1234 1236 1237\n\t\tf 4 1058 1065 -1060 -1065\n\t\tmu 0 4 1237 1236 1238 1239\n\t\tf 4 1059 1067 -1057 -1067\n\t\tmu 0 4 1239 1238 1240 1241\n\t\tf 4 -1068 -1066 -1064 -1062\n\t\tmu 0 4 1233 1242 1243 1234\n\t\tf 4 1066 1060 1062 1064\n\t\tmu 0 4 1244 1232 1235 1245\n\t\tf 4 1068 1073 -1070 -1073\n\t\tmu 0 4 1246 1247 1248 1249\n\t\tf 4 1069 1075 -1071 -1075\n\t\tmu 0 4 1249 1248 1250 1251\n\t\tf 4 1070 1077 -1072 -1077\n\t\tmu 0 4 1251 1250 1252 1253\n\t\tf 4 1071 1079 -1069 -1079\n\t\tmu 0 4 1253 1252 1254 1255\n\t\tf 4 -1080 -1078 -1076 -1074\n\t\tmu 0 4 1247 1256 1257 1248\n\t\tf 4 1078 1072 1074 1076\n\t\tmu 0 4 1258 1246 1249 1259\n\t\tf 4 1080 1085 -1082 -1085\n\t\tmu 0 4 1260 1261 1262 1263\n\t\tf 4 1081 1087 -1083 -1087\n\t\tmu 0 4 1263 1262 1264 1265\n\t\tf 4 1082 1089 -1084 -1089\n\t\tmu 0 4 1265 1264 1266 1267\n\t\tf 4 1083 1091 -1081 -1091\n\t\tmu 0 4 1267 1266 1268 1269\n\t\tf 4 -1092 -1090 -1088 -1086\n\t\tmu 0 4 1261 1270 1271 1262\n\t\tf 4 1090 1084 1086 1088\n\t\tmu 0 4 1272 1260 1263 1273\n\t\tf 4 1092 1097 -1094 -1097\n\t\tmu 0 4 1274 1275 1276 1277\n\t\tf 4 1093 1099 -1095 -1099\n\t\tmu 0 4 1277 1276 1278 1279\n\t\tf 4 1094 1101 -1096 -1101\n\t\tmu 0 4 1279 1278 1280 1281\n\t\tf 4 1095 1103 -1093 -1103\n\t\tmu 0 4 1281 1280 1282 1283\n\t\tf 4 -1104 -1102 -1100 -1098\n\t\tmu 0 4 1275 1284 1285 1276\n\t\tf 4 1102 1096 1098 1100\n\t\tmu 0 4 1286 1274 1277 1287\n\t\tf 4 1104 1109 -1106 -1109\n\t\tmu 0 4 1288 1289 1290 1291\n\t\tf 4 1105 1111 -1107 -1111\n\t\tmu 0 4 1291 1290 1292 1293\n\t\tf 4 1106 1113 -1108 -1113\n\t\tmu 0 4 1293 1292 1294 1295\n\t\tf 4 1107 1115 -1105 -1115\n\t\tmu 0 4 1295 1294 1296 1297\n\t\tf 4 -1116 -1114 -1112 -1110\n\t\tmu 0 4 1289 1298 1299 1290\n\t\tf 4 1114 1108 1110 1112\n\t\tmu 0 4 1300 1288 1291 1301\n\t\tf 4 1116 1121 -1118 -1121\n\t\tmu 0 4 1302 1303 1304 1305\n\t\tf 4 1117 1123 -1119 -1123\n\t\tmu 0 4 1305 1304 1306 1307\n\t\tf 4 1118 1125 -1120 -1125\n\t\tmu 0 4 1307 1306 1308 1309\n\t\tf 4 1119 1127 -1117 -1127\n\t\tmu 0 4 1309 1308 1310 1311\n\t\tf 4 -1128 -1126 -1124 -1122\n\t\tmu 0 4 1303 1312 1313 1304\n\t\tf 4 1126 1120 1122 1124\n\t\tmu 0 4 1314 1302 1305 1315\n\t\tf 4 1128 1133 -1130 -1133\n\t\tmu 0 4 1316 1317 1318 1319\n\t\tf 4 1129 1135 -1131 -1135\n\t\tmu 0 4 1319 1318 1320 1321\n\t\tf 4 1130 1137 -1132 -1137\n\t\tmu 0 4 1321 1320 1322 1323\n\t\tf 4 1131 1139 -1129 -1139\n\t\tmu 0 4 1323 1322 1324 1325\n\t\tf 4 -1140 -1138 -1136 -1134\n\t\tmu 0 4 1317 1326 1327 1318\n\t\tf 4 1138 1132 1134 1136\n\t\tmu 0 4 1328 1316 1319 1329\n\t\tf 4 1140 1145 -1142 -1145\n\t\tmu 0 4 1330 1331 1332 1333\n\t\tf 4 1141 1147 -1143 -1147\n\t\tmu 0 4 1333 1332 1334 1335\n\t\tf 4 1142 1149 -1144 -1149\n\t\tmu 0 4 1335 1334 1336 1337\n\t\tf 4 1143 1151 -1141 -1151\n\t\tmu 0 4 1337 1336 1338 1339\n\t\tf 4 -1152 -1150 -1148 -1146\n\t\tmu 0 4 1331 1340 1341 1332\n\t\tf 4 1150 1144 1146 1148\n\t\tmu 0 4 1342 1330 1333 1343\n\t\tf 4 1152 1157 -1154 -1157\n\t\tmu 0 4 1344 1345 1346 1347\n\t\tf 4 1153 1159 -1155 -1159\n\t\tmu 0 4 1347 1346 1348 1349\n\t\tf 4 1154 1161 -1156 -1161\n\t\tmu 0 4 1349 1348 1350 1351\n\t\tf 4 1155 1163 -1153 -1163\n\t\tmu 0 4 1351 1350 1352 1353\n\t\tf 4 -1164 -1162 -1160 -1158\n\t\tmu 0 4 1345 1354 1355 1346\n\t\tf 4 1162 1156 1158 1160\n\t\tmu 0 4 1356 1344 1347 1357\n\t\tf 4 1164 1169 -1166 -1169\n\t\tmu 0 4 1358 1359 1360 1361\n\t\tf 4 1165 1171 -1167 -1171\n\t\tmu 0 4 1361 1360 1362 1363\n\t\tf 4 1166 1173 -1168 -1173\n\t\tmu 0 4 1363 1362 1364 1365\n\t\tf 4 1167 1175 -1165 -1175\n\t\tmu 0 4 1365 1364 1366 1367\n\t\tf 4 -1176 -1174 -1172 -1170\n\t\tmu 0 4 1359 1368 1369 1360\n\t\tf 4 1174 1168 1170 1172\n\t\tmu 0 4 1370 1358 1361 1371\n\t\tf 4 1176 1181 -1178 -1181\n\t\tmu 0 4 1372 1373 1374 1375\n\t\tf 4 1177 1183 -1179 -1183\n\t\tmu 0 4 1375 1374 1376 1377\n\t\tf 4 1178 1185 -1180 -1185\n\t\tmu 0 4 1377 1376 1378 1379\n\t\tf 4 1179 1187 -1177 -1187\n\t\tmu 0 4 1379 1378 1380 1381\n\t\tf 4 -1188 -1186 -1184 -1182\n\t\tmu 0 4 1373 1382 1383 1374\n\t\tf 4 1186 1180 1182 1184\n\t\tmu 0 4 1384 1372 1375 1385\n\t\tf 4 1188 1193 -1190 -1193\n\t\tmu 0 4 1386 1387 1388 1389\n\t\tf 4 1189 1195 -1191 -1195\n\t\tmu 0 4 1389 1388 1390 1391\n\t\tf 4 1190 1197 -1192 -1197\n\t\tmu 0 4 1391 1390 1392 1393\n\t\tf 4 1191 1199 -1189 -1199\n\t\tmu 0 4 1393 1392 1394 1395\n\t\tf 4 -1200 -1198 -1196 -1194\n\t\tmu 0 4 1387 1396 1397 1388\n\t\tf 4 1198 1192 1194 1196\n\t\tmu 0 4 1398 1386 1389 1399\n\t\tf 4 1200 1205 -1202 -1205\n\t\tmu 0 4 1400 1401 1402 1403\n\t\tf 4 1201 1207 -1203 -1207\n\t\tmu 0 4 1403 1402 1404 1405\n\t\tf 4 1202 1209 -1204 -1209\n\t\tmu 0 4 1405 1404 1406 1407\n\t\tf 4 1203 1211 -1201 -1211\n\t\tmu 0 4 1407 1406 1408 1409\n\t\tf 4 -1212 -1210 -1208 -1206\n\t\tmu 0 4 1401 1410 1411 1402\n\t\tf 4 1210 1204 1206 1208\n\t\tmu 0 4 1412 1400 1403 1413\n\t\tf 4 1212 1217 -1214 -1217\n\t\tmu 0 4 1414 1415 1416 1417\n\t\tf 4 1213 1219 -1215 -1219\n\t\tmu 0 4 1417 1416 1418 1419\n\t\tf 4 1214 1221 -1216 -1221\n\t\tmu 0 4 1419 1418 1420 1421\n\t\tf 4 1215 1223 -1213 -1223\n\t\tmu 0 4 1421 1420 1422 1423\n\t\tf 4 -1224 -1222 -1220 -1218\n\t\tmu 0 4 1415 1424 1425 1416\n\t\tf 4 1222 1216 1218 1220\n\t\tmu 0 4 1426 1414 1417 1427\n\t\tf 4 1224 1229 -1226 -1229\n\t\tmu 0 4 1428 1429 1430 1431\n\t\tf 4 1225 1231 -1227 -1231\n\t\tmu 0 4 1431 1430 1432 1433\n\t\tf 4 1226 1233 -1228 -1233\n\t\tmu 0 4 1433 1432 1434 1435\n\t\tf 4 1227 1235 -1225 -1235\n\t\tmu 0 4 1435 1434 1436 1437\n\t\tf 4 -1236 -1234 -1232 -1230\n\t\tmu 0 4 1429 1438 1439 1430\n\t\tf 4 1234 1228 1230 1232\n\t\tmu 0 4 1440 1428 1431 1441\n\t\tf 4 1236 1241 -1238 -1241\n\t\tmu 0 4 1442 1443 1444 1445\n\t\tf 4 1237 1243 -1239 -1243\n\t\tmu 0 4 1445 1444 1446 1447\n\t\tf 4 1238 1245 -1240 -1245\n\t\tmu 0 4 1447 1446 1448 1449\n\t\tf 4 1239 1247 -1237 -1247\n\t\tmu 0 4 1449 1448 1450 1451\n\t\tf 4 -1248 -1246 -1244 -1242\n\t\tmu 0 4 1443 1452 1453 1444\n\t\tf 4 1246 1240 1242 1244\n\t\tmu 0 4 1454 1442 1445 1455\n\t\tf 4 1248 1253 -1250 -1253\n\t\tmu 0 4 1456 1457 1458 1459\n\t\tf 4 1249 1255 -1251 -1255\n\t\tmu 0 4 1459 1458 1460 1461\n\t\tf 4 1250 1257 -1252 -1257\n\t\tmu 0 4 1461 1460 1462 1463\n\t\tf 4 1251 1259 -1249 -1259\n\t\tmu 0 4 1463 1462 1464 1465\n\t\tf 4 -1260 -1258 -1256 -1254\n\t\tmu 0 4 1457 1466 1467 1458\n\t\tf 4 1258 1252 1254 1256\n\t\tmu 0 4 1468 1456 1459 1469\n\t\tf 4 1260 1265 -1262 -1265\n\t\tmu 0 4 1470 1471 1472 1473\n\t\tf 4 1261 1267 -1263 -1267\n\t\tmu 0 4 1473 1472 1474 1475\n\t\tf 4 1262 1269 -1264 -1269\n\t\tmu 0 4 1475 1474 1476 1477\n\t\tf 4 1263 1271 -1261 -1271\n\t\tmu 0 4 1477 1476 1478 1479\n\t\tf 4 -1272 -1270 -1268 -1266\n\t\tmu 0 4 1471 1480 1481 1472\n\t\tf 4 1270 1264 1266 1268\n\t\tmu 0 4 1482 1470 1473 1483\n\t\tf 4 1272 1277 -1274 -1277\n\t\tmu 0 4 1484 1485 1486 1487\n\t\tf 4 1273 1279 -1275 -1279\n\t\tmu 0 4 1487 1486 1488 1489\n\t\tf 4 1274 1281 -1276 -1281\n\t\tmu 0 4 1489 1488 1490 1491\n\t\tf 4 1275 1283 -1273 -1283\n\t\tmu 0 4 1491 1490 1492 1493\n\t\tf 4 -1284 -1282 -1280 -1278\n\t\tmu 0 4 1485 1494 1495 1486\n\t\tf 4 1282 1276 1278 1280\n\t\tmu 0 4 1496 1484 1487 1497\n\t\tf 4 1284 1289 -1286 -1289\n\t\tmu 0 4 1498 1499 1500 1501\n\t\tf 4 1285 1291 -1287 -1291\n\t\tmu 0 4 1501 1500 1502 1503\n\t\tf 4 1286 1293 -1288 -1293\n\t\tmu 0 4 1503 1502 1504 1505\n\t\tf 4 1287 1295 -1285 -1295\n\t\tmu 0 4 1505 1504 1506 1507\n\t\tf 4 -1296 -1294 -1292 -1290\n\t\tmu 0 4 1499 1508 1509 1500\n\t\tf 4 1294 1288 1290 1292\n\t\tmu 0 4 1510 1498 1501 1511\n\t\tf 4 1296 1301 -1298 -1301\n\t\tmu 0 4 1512 1513 1514 1515\n\t\tf 4 1297 1303 -1299 -1303\n\t\tmu 0 4 1515 1514 1516 1517\n\t\tf 4 1298 1305 -1300 -1305\n\t\tmu 0 4 1517 1516 1518 1519\n\t\tf 4 1299 1307 -1297 -1307\n\t\tmu 0 4 1519 1518 1520 1521\n\t\tf 4 -1308 -1306 -1304 -1302\n\t\tmu 0 4 1513 1522 1523 1514\n\t\tf 4 1306 1300 1302 1304\n\t\tmu 0 4 1524 1512 1515 1525\n\t\tf 4 1308 1313 -1310 -1313\n\t\tmu 0 4 1526 1527 1528 1529\n\t\tf 4 1309 1315 -1311 -1315\n\t\tmu 0 4 1529 1528 1530 1531\n\t\tf 4 1310 1317 -1312 -1317\n\t\tmu 0 4 1531 1530 1532 1533\n\t\tf 4 1311 1319 -1309 -1319\n\t\tmu 0 4 1533 1532 1534 1535\n\t\tf 4 -1320 -1318 -1316 -1314\n\t\tmu 0 4 1527 1536 1537 1528\n\t\tf 4 1318 1312 1314 1316\n\t\tmu 0 4 1538 1526 1529 1539\n\t\tf 4 1320 1325 -1322 -1325\n\t\tmu 0 4 1540 1541 1542 1543\n\t\tf 4 1321 1327 -1323 -1327\n\t\tmu 0 4 1543 1542 1544 1545\n\t\tf 4 1322 1329 -1324 -1329\n\t\tmu 0 4 1545 1544 1546 1547\n\t\tf 4 1323 1331 -1321 -1331\n\t\tmu 0 4 1547 1546 1548 1549\n\t\tf 4 -1332 -1330 -1328 -1326\n\t\tmu 0 4 1541 1550 1551 1542\n\t\tf 4 1330 1324 1326 1328\n\t\tmu 0 4 1552 1540 1543 1553\n\t\tf 4 1332 1337 -1334 -1337\n\t\tmu 0 4 1554 1555 1556 1557\n\t\tf 4 1333 1339 -1335 -1339\n\t\tmu 0 4 1557 1556 1558 1559\n\t\tf 4 1334 1341 -1336 -1341\n\t\tmu 0 4 1559 1558 1560 1561\n\t\tf 4 1335 1343 -1333 -1343\n\t\tmu 0 4 1561 1560 1562 1563\n\t\tf 4 -1344 -1342 -1340 -1338\n\t\tmu 0 4 1555 1564 1565 1556\n\t\tf 4 1342 1336 1338 1340\n\t\tmu 0 4 1566 1554 1557 1567\n\t\tf 4 1344 1349 -1346 -1349\n\t\tmu 0 4 1568 1569 1570 1571\n\t\tf 4 1345 1351 -1347 -1351\n\t\tmu 0 4 1571 1570 1572 1573\n\t\tf 4 1346 1353 -1348 -1353\n\t\tmu 0 4 1573 1572 1574 1575\n\t\tf 4 1347 1355 -1345 -1355\n\t\tmu 0 4 1575 1574 1576 1577\n\t\tf 4 -1356 -1354 -1352 -1350\n\t\tmu 0 4 1569 1578 1579 1570\n\t\tf 4 1354 1348 1350 1352\n\t\tmu 0 4 1580 1568 1571 1581\n\t\tf 4 1356 1361 -1358 -1361\n\t\tmu 0 4 1582 1583 1584 1585\n\t\tf 4 1357 1363 -1359 -1363\n\t\tmu 0 4 1585 1584 1586 1587\n\t\tf 4 1358 1365 -1360 -1365\n\t\tmu 0 4 1587 1586 1588 1589\n\t\tf 4 1359 1367 -1357 -1367\n\t\tmu 0 4 1589 1588 1590 1591\n\t\tf 4 -1368 -1366 -1364 -1362\n\t\tmu 0 4 1583 1592 1593 1584\n\t\tf 4 1366 1360 1362 1364\n\t\tmu 0 4 1594 1582 1585 1595\n\t\tf 4 1368 1373 -1370 -1373\n\t\tmu 0 4 1596 1597 1598 1599\n\t\tf 4 1369 1375 -1371 -1375\n\t\tmu 0 4 1599 1598 1600 1601\n\t\tf 4 1370 1377 -1372 -1377\n\t\tmu 0 4 1601 1600 1602 1603\n\t\tf 4 1371 1379 -1369 -1379\n\t\tmu 0 4 1603 1602 1604 1605\n\t\tf 4 -1380 -1378 -1376 -1374\n\t\tmu 0 4 1597 1606 1607 1598\n\t\tf 4 1378 1372 1374 1376\n\t\tmu 0 4 1608 1596 1599 1609\n\t\tf 4 1380 1385 -1382 -1385\n\t\tmu 0 4 1610 1611 1612 1613\n\t\tf 4 1381 1387 -1383 -1387\n\t\tmu 0 4 1613 1612 1614 1615\n\t\tf 4 1382 1389 -1384 -1389\n\t\tmu 0 4 1615 1614 1616 1617\n\t\tf 4 1383 1391 -1381 -1391\n\t\tmu 0 4 1617 1616 1618 1619\n\t\tf 4 -1392 -1390 -1388 -1386\n\t\tmu 0 4 1611 1620 1621 1612\n\t\tf 4 1390 1384 1386 1388\n\t\tmu 0 4 1622 1610 1613 1623\n\t\tf 4 1392 1397 -1394 -1397\n\t\tmu 0 4 1624 1625 1626 1627\n\t\tf 4 1393 1399 -1395 -1399\n\t\tmu 0 4 1627 1626 1628 1629\n\t\tf 4 1394 1401 -1396 -1401\n\t\tmu 0 4 1629 1628 1630 1631\n\t\tf 4 1395 1403 -1393 -1403\n\t\tmu 0 4 1631 1630 1632 1633\n\t\tf 4 -1404 -1402 -1400 -1398\n\t\tmu 0 4 1625 1634 1635 1626\n\t\tf 4 1402 1396 1398 1400\n\t\tmu 0 4 1636 1624 1627 1637\n\t\tf 4 1404 1409 -1406 -1409\n\t\tmu 0 4 1638 1639 1640 1641\n\t\tf 4 1405 1411 -1407 -1411\n\t\tmu 0 4 1641 1640 1642 1643\n\t\tf 4 1406 1413 -1408 -1413\n\t\tmu 0 4 1643 1642 1644 1645\n\t\tf 4 1407 1415 -1405 -1415\n\t\tmu 0 4 1645 1644 1646 1647\n\t\tf 4 -1416 -1414 -1412 -1410\n\t\tmu 0 4 1639 1648 1649 1640\n\t\tf 4 1414 1408 1410 1412\n\t\tmu 0 4 1650 1638 1641 1651\n\t\tf 4 1416 1421 -1418 -1421\n\t\tmu 0 4 1652 1653 1654 1655\n\t\tf 4 1417 1423 -1419 -1423\n\t\tmu 0 4 1655 1654 1656 1657\n\t\tf 4 1418 1425 -1420 -1425\n\t\tmu 0 4 1657 1656 1658 1659\n\t\tf 4 1419 1427 -1417 -1427\n\t\tmu 0 4 1659 1658 1660 1661\n\t\tf 4 -1428 -1426 -1424 -1422\n\t\tmu 0 4 1653 1662 1663 1654\n\t\tf 4 1426 1420 1422 1424\n\t\tmu 0 4 1664 1652 1655 1665\n\t\tf 4 1428 1433 -1430 -1433\n\t\tmu 0 4 1666 1667 1668 1669\n\t\tf 4 1429 1435 -1431 -1435\n\t\tmu 0 4 1669 1668 1670 1671\n\t\tf 4 1430 1437 -1432 -1437\n\t\tmu 0 4 1671 1670 1672 1673\n\t\tf 4 1431 1439 -1429 -1439\n\t\tmu 0 4 1673 1672 1674 1675\n\t\tf 4 -1440 -1438 -1436 -1434\n\t\tmu 0 4 1667 1676 1677 1668\n\t\tf 4 1438 1432 1434 1436\n\t\tmu 0 4 1678 1666 1669 1679\n\t\tf 4 1440 1445 -1442 -1445\n\t\tmu 0 4 1680 1681 1682 1683\n\t\tf 4 1441 1447 -1443 -1447\n\t\tmu 0 4 1683 1682 1684 1685\n\t\tf 4 1442 1449 -1444 -1449\n\t\tmu 0 4 1685 1684 1686 1687\n\t\tf 4 1443 1451 -1441 -1451\n\t\tmu 0 4 1687 1686 1688 1689\n\t\tf 4 -1452 -1450 -1448 -1446\n\t\tmu 0 4 1681 1690 1691 1682\n\t\tf 4 1450 1444 1446 1448\n\t\tmu 0 4 1692 1680 1683 1693\n\t\tf 4 1452 1457 -1454 -1457\n\t\tmu 0 4 1694 1695 1696 1697\n\t\tf 4 1453 1459 -1455 -1459\n\t\tmu 0 4 1697 1696 1698 1699\n\t\tf 4 1454 1461 -1456 -1461\n\t\tmu 0 4 1699 1698 1700 1701\n\t\tf 4 1455 1463 -1453 -1463\n\t\tmu 0 4 1701 1700 1702 1703\n\t\tf 4 -1464 -1462 -1460 -1458\n\t\tmu 0 4 1695 1704 1705 1696\n\t\tf 4 1462 1456 1458 1460\n\t\tmu 0 4 1706 1694 1697 1707\n\t\tf 4 1464 1469 -1466 -1469\n\t\tmu 0 4 1708 1709 1710 1711\n\t\tf 4 1465 1471 -1467 -1471\n\t\tmu 0 4 1711 1710 1712 1713\n\t\tf 4 1466 1473 -1468 -1473\n\t\tmu 0 4 1713 1712 1714 1715\n\t\tf 4 1467 1475 -1465 -1475\n\t\tmu 0 4 1715 1714 1716 1717\n\t\tf 4 -1476 -1474 -1472 -1470\n\t\tmu 0 4 1709 1718 1719 1710\n\t\tf 4 1474 1468 1470 1472\n\t\tmu 0 4 1720 1708 1711 1721\n\t\tf 4 1476 1481 -1478 -1481\n\t\tmu 0 4 1722 1723 1724 1725\n\t\tf 4 1477 1483 -1479 -1483\n\t\tmu 0 4 1725 1724 1726 1727\n\t\tf 4 1478 1485 -1480 -1485\n\t\tmu 0 4 1727 1726 1728 1729\n\t\tf 4 1479 1487 -1477 -1487\n\t\tmu 0 4 1729 1728 1730 1731\n\t\tf 4 -1488 -1486 -1484 -1482\n\t\tmu 0 4 1723 1732 1733 1724\n\t\tf 4 1486 1480 1482 1484\n\t\tmu 0 4 1734 1722 1725 1735\n\t\tf 4 1488 1493 -1490 -1493\n\t\tmu 0 4 1736 1737 1738 1739\n\t\tf 4 1489 1495 -1491 -1495\n\t\tmu 0 4 1739 1738 1740 1741\n\t\tf 4 1490 1497 -1492 -1497\n\t\tmu 0 4 1741 1740 1742 1743\n\t\tf 4 1491 1499 -1489 -1499\n\t\tmu 0 4 1743 1742 1744 1745\n\t\tf 4 -1500 -1498 -1496 -1494\n\t\tmu 0 4 1737 1746 1747 1738\n\t\tf 4 1498 1492 1494 1496\n\t\tmu 0 4 1748 1736 1739 1749\n\t\tf 4 1500 1505 -1502 -1505\n\t\tmu 0 4 1750 1751 1752 1753\n\t\tf 4 1501 1507 -1503 -1507\n\t\tmu 0 4 1753 1752 1754 1755\n\t\tf 4 1502 1509 -1504 -1509\n\t\tmu 0 4 1755 1754 1756 1757\n\t\tf 4 1503 1511 -1501 -1511\n\t\tmu 0 4 1757 1756 1758 1759\n\t\tf 4 -1512 -1510 -1508 -1506\n\t\tmu 0 4 1751 1760 1761 1752\n\t\tf 4 1510 1504 1506 1508\n\t\tmu 0 4 1762 1750 1753 1763\n\t\tf 4 1512 1517 -1514 -1517\n\t\tmu 0 4 1764 1765 1766 1767\n\t\tf 4 1513 1519 -1515 -1519\n\t\tmu 0 4 1767 1766 1768 1769\n\t\tf 4 1514 1521 -1516 -1521\n\t\tmu 0 4 1769 1768 1770 1771\n\t\tf 4 1515 1523 -1513 -1523\n\t\tmu 0 4 1771 1770 1772 1773\n\t\tf 4 -1524 -1522 -1520 -1518\n\t\tmu 0 4 1765 1774 1775 1766\n\t\tf 4 1522 1516 1518 1520\n\t\tmu 0 4 1776 1764 1767 1777\n\t\tf 4 1524 1529 -1526 -1529\n\t\tmu 0 4 1778 1779 1780 1781\n\t\tf 4 1525 1531 -1527 -1531\n\t\tmu 0 4 1781 1780 1782 1783\n\t\tf 4 1526 1533 -1528 -1533\n\t\tmu 0 4 1783 1782 1784 1785\n\t\tf 4 1527 1535 -1525 -1535\n\t\tmu 0 4 1785 1784 1786 1787\n\t\tf 4 -1536 -1534 -1532 -1530\n\t\tmu 0 4 1779 1788 1789 1780\n\t\tf 4 1534 1528 1530 1532\n\t\tmu 0 4 1790 1778 1781 1791\n\t\tf 4 1536 1541 -1538 -1541\n\t\tmu 0 4 1792 1793 1794 1795\n\t\tf 4 1537 1543 -1539 -1543\n\t\tmu 0 4 1795 1794 1796 1797\n\t\tf 4 1538 1545 -1540 -1545\n\t\tmu 0 4 1797 1796 1798 1799\n\t\tf 4 1539 1547 -1537 -1547\n\t\tmu 0 4 1799 1798 1800 1801\n\t\tf 4 -1548 -1546 -1544 -1542\n\t\tmu 0 4 1793 1802 1803 1794\n\t\tf 4 1546 1540 1542 1544\n\t\tmu 0 4 1804 1792 1795 1805\n\t\tf 4 1548 1553 -1550 -1553\n\t\tmu 0 4 1806 1807 1808 1809\n\t\tf 4 1549 1555 -1551 -1555\n\t\tmu 0 4 1809 1808 1810 1811\n\t\tf 4 1550 1557 -1552 -1557\n\t\tmu 0 4 1811 1810 1812 1813\n\t\tf 4 1551 1559 -1549 -1559\n\t\tmu 0 4 1813 1812 1814 1815\n\t\tf 4 -1560 -1558 -1556 -1554\n\t\tmu 0 4 1807 1816 1817 1808\n\t\tf 4 1558 1552 1554 1556\n\t\tmu 0 4 1818 1806 1809 1819\n\t\tf 4 1560 1565 -1562 -1565\n\t\tmu 0 4 1820 1821 1822 1823\n\t\tf 4 1561 1567 -1563 -1567\n\t\tmu 0 4 1823 1822 1824 1825\n\t\tf 4 1562 1569 -1564 -1569\n\t\tmu 0 4 1825 1824 1826 1827\n\t\tf 4 1563 1571 -1561 -1571\n\t\tmu 0 4 1827 1826 1828 1829\n\t\tf 4 -1572 -1570 -1568 -1566\n\t\tmu 0 4 1821 1830 1831 1822\n\t\tf 4 1570 1564 1566 1568\n\t\tmu 0 4 1832 1820 1823 1833\n\t\tf 4 1572 1577 -1574 -1577\n\t\tmu 0 4 1834 1835 1836 1837\n\t\tf 4 1573 1579 -1575 -1579\n\t\tmu 0 4 1837 1836 1838 1839\n\t\tf 4 1574 1581 -1576 -1581\n\t\tmu 0 4 1839 1838 1840 1841\n\t\tf 4 1575 1583 -1573 -1583\n\t\tmu 0 4 1841 1840 1842 1843\n\t\tf 4 -1584 -1582 -1580 -1578\n\t\tmu 0 4 1835 1844 1845 1836\n\t\tf 4 1582 1576 1578 1580\n\t\tmu 0 4 1846 1834 1837 1847\n\t\tf 4 1584 1589 -1586 -1589\n\t\tmu 0 4 1848 1849 1850 1851\n\t\tf 4 1585 1591 -1587 -1591\n\t\tmu 0 4 1851 1850 1852 1853\n\t\tf 4 1586 1593 -1588 -1593\n\t\tmu 0 4 1853 1852 1854 1855\n\t\tf 4 1587 1595 -1585 -1595\n\t\tmu 0 4 1855 1854 1856 1857\n\t\tf 4 -1596 -1594 -1592 -1590\n\t\tmu 0 4 1849 1858 1859 1850\n\t\tf 4 1594 1588 1590 1592\n\t\tmu 0 4 1860 1848 1851 1861\n\t\tf 4 1596 1601 -1598 -1601\n\t\tmu 0 4 1862 1863 1864 1865\n\t\tf 4 1597 1603 -1599 -1603\n\t\tmu 0 4 1865 1864 1866 1867\n\t\tf 4 1598 1605 -1600 -1605\n\t\tmu 0 4 1867 1866 1868 1869\n\t\tf 4 1599 1607 -1597 -1607\n\t\tmu 0 4 1869 1868 1870 1871\n\t\tf 4 -1608 -1606 -1604 -1602\n\t\tmu 0 4 1863 1872 1873 1864\n\t\tf 4 1606 1600 1602 1604\n\t\tmu 0 4 1874 1862 1865 1875\n\t\tf 4 1608 1613 -1610 -1613\n\t\tmu 0 4 1876 1877 1878 1879\n\t\tf 4 1609 1615 -1611 -1615\n\t\tmu 0 4 1879 1878 1880 1881\n\t\tf 4 1610 1617 -1612 -1617\n\t\tmu 0 4 1881 1880 1882 1883\n\t\tf 4 1611 1619 -1609 -1619\n\t\tmu 0 4 1883 1882 1884 1885\n\t\tf 4 -1620 -1618 -1616 -1614\n\t\tmu 0 4 1877 1886 1887 1878\n\t\tf 4 1618 1612 1614 1616\n\t\tmu 0 4 1888 1876 1879 1889\n\t\tf 4 1620 1625 -1622 -1625\n\t\tmu 0 4 1890 1891 1892 1893\n\t\tf 4 1621 1627 -1623 -1627\n\t\tmu 0 4 1893 1892 1894 1895\n\t\tf 4 1622 1629 -1624 -1629\n\t\tmu 0 4 1895 1894 1896 1897\n\t\tf 4 1623 1631 -1621 -1631\n\t\tmu 0 4 1897 1896 1898 1899\n\t\tf 4 -1632 -1630 -1628 -1626\n\t\tmu 0 4 1891 1900 1901 1892\n\t\tf 4 1630 1624 1626 1628\n\t\tmu 0 4 1902 1890 1893 1903\n\t\tf 4 1632 1637 -1634 -1637\n\t\tmu 0 4 1904 1905 1906 1907\n\t\tf 4 1633 1639 -1635 -1639\n\t\tmu 0 4 1907 1906 1908 1909\n\t\tf 4 1634 1641 -1636 -1641\n\t\tmu 0 4 1909 1908 1910 1911\n\t\tf 4 1635 1643 -1633 -1643\n\t\tmu 0 4 1911 1910 1912 1913\n\t\tf 4 -1644 -1642 -1640 -1638\n\t\tmu 0 4 1905 1914 1915 1906\n\t\tf 4 1642 1636 1638 1640\n\t\tmu 0 4 1916 1904 1907 1917\n\t\tf 4 1644 1649 -1646 -1649\n\t\tmu 0 4 1918 1919 1920 1921\n\t\tf 4 1645 1651 -1647 -1651\n\t\tmu 0 4 1921 1920 1922 1923\n\t\tf 4 1646 1653 -1648 -1653\n\t\tmu 0 4 1923 1922 1924 1925\n\t\tf 4 1647 1655 -1645 -1655\n\t\tmu 0 4 1925 1924 1926 1927\n\t\tf 4 -1656 -1654 -1652 -1650\n\t\tmu 0 4 1919 1928 1929 1920\n\t\tf 4 1654 1648 1650 1652\n\t\tmu 0 4 1930 1918 1921 1931\n\t\tf 4 1656 1661 -1658 -1661\n\t\tmu 0 4 1932 1933 1934 1935\n\t\tf 4 1657 1663 -1659 -1663\n\t\tmu 0 4 1935 1934 1936 1937\n\t\tf 4 1658 1665 -1660 -1665\n\t\tmu 0 4 1937 1936 1938 1939\n\t\tf 4 1659 1667 -1657 -1667\n\t\tmu 0 4 1939 1938 1940 1941\n\t\tf 4 -1668 -1666 -1664 -1662\n\t\tmu 0 4 1933 1942 1943 1934\n\t\tf 4 1666 1660 1662 1664\n\t\tmu 0 4 1944 1932 1935 1945\n\t\tf 4 1668 1673 -1670 -1673\n\t\tmu 0 4 1946 1947 1948 1949\n\t\tf 4 1669 1675 -1671 -1675\n\t\tmu 0 4 1949 1948 1950 1951\n\t\tf 4 1670 1677 -1672 -1677\n\t\tmu 0 4 1951 1950 1952 1953\n\t\tf 4 1671 1679 -1669 -1679\n\t\tmu 0 4 1953 1952 1954 1955\n\t\tf 4 -1680 -1678 -1676 -1674\n\t\tmu 0 4 1947 1956 1957 1948\n\t\tf 4 1678 1672 1674 1676\n\t\tmu 0 4 1958 1946 1949 1959\n\t\tf 4 1680 1685 -1682 -1685\n\t\tmu 0 4 1960 1961 1962 1963\n\t\tf 4 1681 1687 -1683 -1687\n\t\tmu 0 4 1963 1962 1964 1965\n\t\tf 4 1682 1689 -1684 -1689\n\t\tmu 0 4 1965 1964 1966 1967\n\t\tf 4 1683 1691 -1681 -1691\n\t\tmu 0 4 1967 1966 1968 1969\n\t\tf 4 -1692 -1690 -1688 -1686\n\t\tmu 0 4 1961 1970 1971 1962\n\t\tf 4 1690 1684 1686 1688\n\t\tmu 0 4 1972 1960 1963 1973\n\t\tf 4 1692 1697 -1694 -1697\n\t\tmu 0 4 1974 1975 1976 1977\n\t\tf 4 1693 1699 -1695 -1699\n\t\tmu 0 4 1977 1976 1978 1979\n\t\tf 4 1694 1701 -1696 -1701\n\t\tmu 0 4 1979 1978 1980 1981\n\t\tf 4 1695 1703 -1693 -1703\n\t\tmu 0 4 1981 1980 1982 1983\n\t\tf 4 -1704 -1702 -1700 -1698\n\t\tmu 0 4 1975 1984 1985 1976\n\t\tf 4 1702 1696 1698 1700\n\t\tmu 0 4 1986 1974 1977 1987\n\t\tf 4 1704 1709 -1706 -1709\n\t\tmu 0 4 1988 1989 1990 1991\n\t\tf 4 1705 1711 -1707 -1711\n\t\tmu 0 4 1991 1990 1992 1993\n\t\tf 4 1706 1713 -1708 -1713\n\t\tmu 0 4 1993 1992 1994 1995\n\t\tf 4 1707 1715 -1705 -1715\n\t\tmu 0 4 1995 1994 1996 1997\n\t\tf 4 -1716 -1714 -1712 -1710\n\t\tmu 0 4 1989 1998 1999 1990\n\t\tf 4 1714 1708 1710 1712\n\t\tmu 0 4 2000 1988 1991 2001\n\t\tf 4 1716 1721 -1718 -1721\n\t\tmu 0 4 2002 2003 2004 2005\n\t\tf 4 1717 1723 -1719 -1723\n\t\tmu 0 4 2005 2004 2006 2007\n\t\tf 4 1718 1725 -1720 -1725\n\t\tmu 0 4 2007 2006 2008 2009\n\t\tf 4 1719 1727 -1717 -1727\n\t\tmu 0 4 2009 2008 2010 2011\n\t\tf 4 -1728 -1726 -1724 -1722\n\t\tmu 0 4 2003 2012 2013 2004\n\t\tf 4 1726 1720 1722 1724\n\t\tmu 0 4 2014 2002 2005 2015\n\t\tf 4 1728 1733 -1730 -1733\n\t\tmu 0 4 2016 2017 2018 2019\n\t\tf 4 1729 1735 -1731 -1735\n\t\tmu 0 4 2019 2018 2020 2021\n\t\tf 4 1730 1737 -1732 -1737\n\t\tmu 0 4 2021 2020 2022 2023\n\t\tf 4 1731 1739 -1729 -1739\n\t\tmu 0 4 2023 2022 2024 2025\n\t\tf 4 -1740 -1738 -1736 -1734\n\t\tmu 0 4 2017 2026 2027 2018\n\t\tf 4 1738 1732 1734 1736\n\t\tmu 0 4 2028 2016 2019 2029\n\t\tf 4 1740 1745 -1742 -1745\n\t\tmu 0 4 2030 2031 2032 2033\n\t\tf 4 1741 1747 -1743 -1747\n\t\tmu 0 4 2033 2032 2034 2035\n\t\tf 4 1742 1749 -1744 -1749\n\t\tmu 0 4 2035 2034 2036 2037\n\t\tf 4 1743 1751 -1741 -1751\n\t\tmu 0 4 2037 2036 2038 2039\n\t\tf 4 -1752 -1750 -1748 -1746\n\t\tmu 0 4 2031 2040 2041 2032\n\t\tf 4 1750 1744 1746 1748\n\t\tmu 0 4 2042 2030 2033 2043\n\t\tf 4 1752 1757 -1754 -1757\n\t\tmu 0 4 2044 2045 2046 2047\n\t\tf 4 1753 1759 -1755 -1759\n\t\tmu 0 4 2047 2046 2048 2049\n\t\tf 4 1754 1761 -1756 -1761\n\t\tmu 0 4 2049 2048 2050 2051\n\t\tf 4 1755 1763 -1753 -1763\n\t\tmu 0 4 2051 2050 2052 2053\n\t\tf 4 -1764 -1762 -1760 -1758\n\t\tmu 0 4 2045 2054 2055 2046\n\t\tf 4 1762 1756 1758 1760\n\t\tmu 0 4 2056 2044 2047 2057\n\t\tf 4 1764 1769 -1766 -1769\n\t\tmu 0 4 2058 2059 2060 2061\n\t\tf 4 1765 1771 -1767 -1771\n\t\tmu 0 4 2061 2060 2062 2063\n\t\tf 4 1766 1773 -1768 -1773\n\t\tmu 0 4 2063 2062 2064 2065\n\t\tf 4 1767 1775 -1765 -1775\n\t\tmu 0 4 2065 2064 2066 2067\n\t\tf 4 -1776 -1774 -1772 -1770\n\t\tmu 0 4 2059 2068 2069 2060\n\t\tf 4 1774 1768 1770 1772\n\t\tmu 0 4 2070 2058 2061 2071\n\t\tf 4 1776 1781 -1778 -1781\n\t\tmu 0 4 2072 2073 2074 2075\n\t\tf 4 1777 1783 -1779 -1783\n\t\tmu 0 4 2075 2074 2076 2077\n\t\tf 4 1778 1785 -1780 -1785\n\t\tmu 0 4 2077 2076 2078 2079\n\t\tf 4 1779 1787 -1777 -1787\n\t\tmu 0 4 2079 2078 2080 2081\n\t\tf 4 -1788 -1786 -1784 -1782\n\t\tmu 0 4 2073 2082 2083 2074\n\t\tf 4 1786 1780 1782 1784\n\t\tmu 0 4 2084 2072 2075 2085\n\t\tf 4 1788 1793 -1790 -1793\n\t\tmu 0 4 2086 2087 2088 2089\n\t\tf 4 1789 1795 -1791 -1795\n\t\tmu 0 4 2089 2088 2090 2091\n\t\tf 4 1790 1797 -1792 -1797\n\t\tmu 0 4 2091 2090 2092 2093\n\t\tf 4 1791 1799 -1789 -1799\n\t\tmu 0 4 2093 2092 2094 2095\n\t\tf 4 -1800 -1798 -1796 -1794\n\t\tmu 0 4 2087 2096 2097 2088\n\t\tf 4 1798 1792 1794 1796\n\t\tmu 0 4 2098 2086 2089 2099\n\t\tf 4 1800 1805 -1802 -1805\n\t\tmu 0 4 2100 2101 2102 2103\n\t\tf 4 1801 1807 -1803 -1807\n\t\tmu 0 4 2103 2102 2104 2105\n\t\tf 4 1802 1809 -1804 -1809\n\t\tmu 0 4 2105 2104 2106 2107\n\t\tf 4 1803 1811 -1801 -1811\n\t\tmu 0 4 2107 2106 2108 2109\n\t\tf 4 -1812 -1810 -1808 -1806\n\t\tmu 0 4 2101 2110 2111 2102\n\t\tf 4 1810 1804 1806 1808\n\t\tmu 0 4 2112 2100 2103 2113\n\t\tf 4 1812 1817 -1814 -1817\n\t\tmu 0 4 2114 2115 2116 2117\n\t\tf 4 1813 1819 -1815 -1819\n\t\tmu 0 4 2117 2116 2118 2119\n\t\tf 4 1814 1821 -1816 -1821\n\t\tmu 0 4 2119 2118 2120 2121\n\t\tf 4 1815 1823 -1813 -1823\n\t\tmu 0 4 2121 2120 2122 2123\n\t\tf 4 -1824 -1822 -1820 -1818\n\t\tmu 0 4 2115 2124 2125 2116\n\t\tf 4 1822 1816 1818 1820\n\t\tmu 0 4 2126 2114 2117 2127\n\t\tf 4 1824 1829 -1826 -1829\n\t\tmu 0 4 2128 2129 2130 2131\n\t\tf 4 1825 1831 -1827 -1831\n\t\tmu 0 4 2131 2130 2132 2133\n\t\tf 4 1826 1833 -1828 -1833\n\t\tmu 0 4 2133 2132 2134 2135\n\t\tf 4 1827 1835 -1825 -1835\n\t\tmu 0 4 2135 2134 2136 2137\n\t\tf 4 -1836 -1834 -1832 -1830\n\t\tmu 0 4 2129 2138 2139 2130\n\t\tf 4 1834 1828 1830 1832\n\t\tmu 0 4 2140 2128 2131 2141\n\t\tf 4 1836 1841 -1838 -1841\n\t\tmu 0 4 2142 2143 2144 2145\n\t\tf 4 1837 1843 -1839 -1843\n\t\tmu 0 4 2145 2144 2146 2147\n\t\tf 4 1838 1845 -1840 -1845\n\t\tmu 0 4 2147 2146 2148 2149\n\t\tf 4 1839 1847 -1837 -1847\n\t\tmu 0 4 2149 2148 2150 2151\n\t\tf 4 -1848 -1846 -1844 -1842\n\t\tmu 0 4 2143 2152 2153 2144\n\t\tf 4 1846 1840 1842 1844\n\t\tmu 0 4 2154 2142 2145 2155\n\t\tf 4 1848 1853 -1850 -1853\n\t\tmu 0 4 2156 2157 2158 2159\n\t\tf 4 1849 1855 -1851 -1855\n\t\tmu 0 4 2159 2158 2160 2161\n\t\tf 4 1850 1857 -1852 -1857\n\t\tmu 0 4 2161 2160 2162 2163\n\t\tf 4 1851 1859 -1849 -1859\n\t\tmu 0 4 2163 2162 2164 2165\n\t\tf 4 -1860 -1858 -1856 -1854\n\t\tmu 0 4 2157 2166 2167 2158\n\t\tf 4 1858 1852 1854 1856\n\t\tmu 0 4 2168 2156 2159 2169\n\t\tf 4 1860 1865 -1862 -1865\n\t\tmu 0 4 2170 2171 2172 2173\n\t\tf 4 1861 1867 -1863 -1867\n\t\tmu 0 4 2173 2172 2174 2175\n\t\tf 4 1862 1869 -1864 -1869\n\t\tmu 0 4 2175 2174 2176 2177\n\t\tf 4 1863 1871 -1861 -1871\n\t\tmu 0 4 2177 2176 2178 2179\n\t\tf 4 -1872 -1870 -1868 -1866\n\t\tmu 0 4 2171 2180 2181 2172\n\t\tf 4 1870 1864 1866 1868\n\t\tmu 0 4 2182 2170 2173 2183\n\t\tf 4 1872 1877 -1874 -1877\n\t\tmu 0 4 2184 2185 2186 2187\n\t\tf 4 1873 1879 -1875 -1879\n\t\tmu 0 4 2187 2186 2188 2189\n\t\tf 4 1874 1881 -1876 -1881\n\t\tmu 0 4 2189 2188 2190 2191\n\t\tf 4 1875 1883 -1873 -1883\n\t\tmu 0 4 2191 2190 2192 2193\n\t\tf 4 -1884 -1882 -1880 -1878\n\t\tmu 0 4 2185 2194 2195 2186\n\t\tf 4 1882 1876 1878 1880\n\t\tmu 0 4 2196 2184 2187 2197\n\t\tf 4 1884 1889 -1886 -1889\n\t\tmu 0 4 2198 2199 2200 2201\n\t\tf 4 1885 1891 -1887 -1891\n\t\tmu 0 4 2201 2200 2202 2203\n\t\tf 4 1886 1893 -1888 -1893\n\t\tmu 0 4 2203 2202 2204 2205\n\t\tf 4 1887 1895 -1885 -1895\n\t\tmu 0 4 2205 2204 2206 2207\n\t\tf 4 -1896 -1894 -1892 -1890\n\t\tmu 0 4 2199 2208 2209 2200\n\t\tf 4 1894 1888 1890 1892\n\t\tmu 0 4 2210 2198 2201 2211\n\t\tf 4 1896 1901 -1898 -1901\n\t\tmu 0 4 2212 2213 2214 2215\n\t\tf 4 1897 1903 -1899 -1903\n\t\tmu 0 4 2215 2214 2216 2217\n\t\tf 4 1898 1905 -1900 -1905\n\t\tmu 0 4 2217 2216 2218 2219\n\t\tf 4 1899 1907 -1897 -1907\n\t\tmu 0 4 2219 2218 2220 2221\n\t\tf 4 -1908 -1906 -1904 -1902\n\t\tmu 0 4 2213 2222 2223 2214\n\t\tf 4 1906 1900 1902 1904\n\t\tmu 0 4 2224 2212 2215 2225\n\t\tf 4 1908 1913 -1910 -1913\n\t\tmu 0 4 2226 2227 2228 2229\n\t\tf 4 1909 1915 -1911 -1915\n\t\tmu 0 4 2229 2228 2230 2231\n\t\tf 4 1910 1917 -1912 -1917\n\t\tmu 0 4 2231 2230 2232 2233\n\t\tf 4 1911 1919 -1909 -1919\n\t\tmu 0 4 2233 2232 2234 2235\n\t\tf 4 -1920 -1918 -1916 -1914\n\t\tmu 0 4 2227 2236 2237 2228\n\t\tf 4 1918 1912 1914 1916\n\t\tmu 0 4 2238 2226 2229 2239\n\t\tf 4 1920 1925 -1922 -1925\n\t\tmu 0 4 2240 2241 2242 2243\n\t\tf 4 1921 1927 -1923 -1927\n\t\tmu 0 4 2243 2242 2244 2245\n\t\tf 4 1922 1929 -1924 -1929\n\t\tmu 0 4 2245 2244 2246 2247\n\t\tf 4 1923 1931 -1921 -1931\n\t\tmu 0 4 2247 2246 2248 2249\n\t\tf 4 -1932 -1930 -1928 -1926\n\t\tmu 0 4 2241 2250 2251 2242\n\t\tf 4 1930 1924 1926 1928\n\t\tmu 0 4 2252 2240 2243 2253\n\t\tf 4 1932 1937 -1934 -1937\n\t\tmu 0 4 2254 2255 2256 2257\n\t\tf 4 1933 1939 -1935 -1939\n\t\tmu 0 4 2257 2256 2258 2259\n\t\tf 4 1934 1941 -1936 -1941\n\t\tmu 0 4 2259 2258 2260 2261\n\t\tf 4 1935 1943 -1933 -1943\n\t\tmu 0 4 2261 2260 2262 2263\n\t\tf 4 -1944 -1942 -1940 -1938\n\t\tmu 0 4 2255 2264 2265 2256\n\t\tf 4 1942 1936 1938 1940\n\t\tmu 0 4 2266 2254 2257 2267\n\t\tf 4 1944 1949 -1946 -1949\n\t\tmu 0 4 2268 2269 2270 2271\n\t\tf 4 1945 1951 -1947 -1951\n\t\tmu 0 4 2271 2270 2272 2273\n\t\tf 4 1946 1953 -1948 -1953\n\t\tmu 0 4 2273 2272 2274 2275\n\t\tf 4 1947 1955 -1945 -1955\n\t\tmu 0 4 2275 2274 2276 2277\n\t\tf 4 -1956 -1954 -1952 -1950\n\t\tmu 0 4 2269 2278 2279 2270\n\t\tf 4 1954 1948 1950 1952\n\t\tmu 0 4 2280 2268 2271 2281\n\t\tf 4 1956 1961 -1958 -1961\n\t\tmu 0 4 2282 2283 2284 2285\n\t\tf 4 1957 1963 -1959 -1963\n\t\tmu 0 4 2285 2284 2286 2287\n\t\tf 4 1958 1965 -1960 -1965\n\t\tmu 0 4 2287 2286 2288 2289\n\t\tf 4 1959 1967 -1957 -1967\n\t\tmu 0 4 2289 2288 2290 2291\n\t\tf 4 -1968 -1966 -1964 -1962\n\t\tmu 0 4 2283 2292 2293 2284\n\t\tf 4 1966 1960 1962 1964\n\t\tmu 0 4 2294 2282 2285 2295\n\t\tf 4 1968 1973 -1970 -1973\n\t\tmu 0 4 2296 2297 2298 2299\n\t\tf 4 1969 1975 -1971 -1975\n\t\tmu 0 4 2299 2298 2300 2301\n\t\tf 4 1970 1977 -1972 -1977\n\t\tmu 0 4 2301 2300 2302 2303\n\t\tf 4 1971 1979 -1969 -1979\n\t\tmu 0 4 2303 2302 2304 2305\n\t\tf 4 -1980 -1978 -1976 -1974\n\t\tmu 0 4 2297 2306 2307 2298\n\t\tf 4 1978 1972 1974 1976\n\t\tmu 0 4 2308 2296 2299 2309\n\t\tf 4 1980 1985 -1982 -1985\n\t\tmu 0 4 2310 2311 2312 2313\n\t\tf 4 1981 1987 -1983 -1987\n\t\tmu 0 4 2313 2312 2314 2315\n\t\tf 4 1982 1989 -1984 -1989\n\t\tmu 0 4 2315 2314 2316 2317\n\t\tf 4 1983 1991 -1981 -1991\n\t\tmu 0 4 2317 2316 2318 2319\n\t\tf 4 -1992 -1990 -1988 -1986\n\t\tmu 0 4 2311 2320 2321 2312\n\t\tf 4 1990 1984 1986 1988\n\t\tmu 0 4 2322 2310 2313 2323\n\t\tf 4 1992 1997 -1994 -1997\n\t\tmu 0 4 2324 2325 2326 2327\n\t\tf 4 1993 1999 -1995 -1999\n\t\tmu 0 4 2327 2326 2328 2329\n\t\tf 4 1994 2001 -1996 -2001\n\t\tmu 0 4 2329 2328 2330 2331\n\t\tf 4 1995 2003 -1993 -2003\n\t\tmu 0 4 2331 2330 2332 2333;\n\tsetAttr \".fc[1000:1031]\"\n\t\tf 4 -2004 -2002 -2000 -1998\n\t\tmu 0 4 2325 2334 2335 2326\n\t\tf 4 2002 1996 1998 2000\n\t\tmu 0 4 2336 2324 2327 2337\n\t\tf 4 2004 2009 -2006 -2009\n\t\tmu 0 4 2338 2339 2340 2341\n\t\tf 4 2005 2011 -2007 -2011\n\t\tmu 0 4 2341 2340 2342 2343\n\t\tf 4 2006 2013 -2008 -2013\n\t\tmu 0 4 2343 2342 2344 2345\n\t\tf 4 2007 2015 -2005 -2015\n\t\tmu 0 4 2345 2344 2346 2347\n\t\tf 4 -2016 -2014 -2012 -2010\n\t\tmu 0 4 2339 2348 2349 2340\n\t\tf 4 2014 2008 2010 2012\n\t\tmu 0 4 2350 2338 2341 2351\n\t\tf 4 2016 2021 -2018 -2021\n\t\tmu 0 4 2352 2353 2354 2355\n\t\tf 4 2017 2023 -2019 -2023\n\t\tmu 0 4 2355 2354 2356 2357\n\t\tf 4 2018 2025 -2020 -2025\n\t\tmu 0 4 2357 2356 2358 2359\n\t\tf 4 2019 2027 -2017 -2027\n\t\tmu 0 4 2359 2358 2360 2361\n\t\tf 4 -2028 -2026 -2024 -2022\n\t\tmu 0 4 2353 2362 2363 2354\n\t\tf 4 2026 2020 2022 2024\n\t\tmu 0 4 2364 2352 2355 2365\n\t\tf 4 2028 2033 -2030 -2033\n\t\tmu 0 4 2366 2367 2368 2369\n\t\tf 4 2029 2035 -2031 -2035\n\t\tmu 0 4 2369 2368 2370 2371\n\t\tf 4 2030 2037 -2032 -2037\n\t\tmu 0 4 2371 2370 2372 2373\n\t\tf 4 2031 2039 -2029 -2039\n\t\tmu 0 4 2373 2372 2374 2375\n\t\tf 4 -2040 -2038 -2036 -2034\n\t\tmu 0 4 2367 2376 2377 2368\n\t\tf 4 2038 2032 2034 2036\n\t\tmu 0 4 2378 2366 2369 2379\n\t\tf 4 2040 2045 -2042 -2045\n\t\tmu 0 4 2380 2381 2382 2383\n\t\tf 4 2041 2047 -2043 -2047\n\t\tmu 0 4 2383 2382 2384 2385\n\t\tf 4 2042 2049 -2044 -2049\n\t\tmu 0 4 2385 2384 2386 2387\n\t\tf 4 2043 2051 -2041 -2051\n\t\tmu 0 4 2387 2386 2388 2389\n\t\tf 4 -2052 -2050 -2048 -2046\n\t\tmu 0 4 2381 2390 2391 2382\n\t\tf 4 2050 2044 2046 2048\n\t\tmu 0 4 2392 2380 2383 2393\n\t\tf 4 2052 2057 -2054 -2057\n\t\tmu 0 4 2394 2395 2396 2397\n\t\tf 4 2053 2059 -2055 -2059\n\t\tmu 0 4 2397 2396 2398 2399\n\t\tf 4 2054 2061 -2056 -2061\n\t\tmu 0 4 2399 2398 2400 2401\n\t\tf 4 2055 2063 -2053 -2063\n\t\tmu 0 4 2401 2400 2402 2403\n\t\tf 4 -2064 -2062 -2060 -2058\n\t\tmu 0 4 2395 2404 2405 2396\n\t\tf 4 2062 2056 2058 2060\n\t\tmu 0 4 2406 2394 2397 2407;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"303B2B67-47B7-6E78-8820-05AB30D606B5\";\n\taddAttr -ci true -sn \"nts\" -ln \"notes\" -dt \"string\";\n\tsetAttr \".t\" -type \"double3\" 0 25 0 ;\n\tsetAttr \".r\" -type \"double3\" -90 0 0 ;\n\tsetAttr \".nts\" -type \"string\" \"\\t\\t\\t\";\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"BD85422D-4BEE-06AB-BACE-7DBD783134A8\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173228346456694 1.4173228346456694 ;\n\tsetAttr \".ff\" 3;\n\tsetAttr \".coi\" 19.666485296863595;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"C81EBC59-4750-DF96-D099-6FBD3F667898\";\n\tsetAttr -s 7 \".lnk\";\n\tsetAttr -s 7 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"94072B53-49F8-F86E-6C0C-17A80C997CCC\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"CF47406C-4122-4128-A0B5-BFB121DB34E0\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"80FFED8A-46E4-DD7F-5B89-EF92A713D711\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"5F78CABE-4E1C-4A10-CCA9-CF98F2D9CABE\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"BDB528EF-441E-CF88-B798-33B9B5E78DA4\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"4DAC6715-445A-0676-C776-A2A4E60D7B3A\";\n\tsetAttr \".g\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"4D043C4A-429E-E5AB-1103-4791D7A045E7\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1978\\n            -height 1447\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -autoFitTime 0\\n\"\n\t\t+ \"                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n\"\n\t\t+ \"                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n\"\n\t\t+ \"                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 0 \\n                $editorName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n\"\n\t\t+ \"                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n\"\n\t\t+ \"                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n\"\n\t\t+ \"                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n\"\n\t\t+ \"                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n\"\n\t\t+ \"                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\"\n\t\t+ \"\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1978\\\\n    -height 1447\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1978\\\\n    -height 1447\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"598A3F36-4262-4847-52B4-0A89E9054834\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode groupId -n \"groupId1\";\n\trename -uid \"6916DEC6-483C-8C62-4504-2E966E14F5F3\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"0CD29B91-4AC4-D539-7C3F-918776F0DC70\";\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"A0004028-432C-996A-EC5E-F1830097EAEB\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"351991DC-44C1-50A9-B8C3-6394D2BACF0B\";\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"96F22B07-4A29-3CF2-1312-6FB6FED76A59\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert3\";\n\trename -uid \"33CE80EB-4BC7-2CA6-595C-9CB4CF8B0E4D\";\n\tsetAttr \".c\" -type \"float3\" 0 0 1 ;\ncreateNode shadingEngine -n \"lambert3SG\";\n\trename -uid \"90EC03C5-4980-25D5-0135-EDB31ED46B4E\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"ED657469-4A1E-A4C1-302D-9F8ABCA0076E\";\ncreateNode groupId -n \"groupId3\";\n\trename -uid \"E16FB584-49D8-58ED-E919-D0A477F7C449\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert4\";\n\trename -uid \"6DDF4970-431F-E97D-3935-288C97620148\";\n\tsetAttr \".c\" -type \"float3\" 0 1 0 ;\ncreateNode shadingEngine -n \"lambert4SG\";\n\trename -uid \"12731EA1-4A5C-3BA1-90D8-7A8CDFE83BE0\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo3\";\n\trename -uid \"8E4CC743-4732-E704-B13C-68A0D93CDDA2\";\ncreateNode groupId -n \"groupId4\";\n\trename -uid \"04E0951A-4E24-EB2D-47DD-9290479CE2B4\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert5\";\n\trename -uid \"790E2B42-4642-7C43-B9B7-48BE5CCFD990\";\n\tsetAttr \".c\" -type \"float3\" 0 1 1 ;\ncreateNode shadingEngine -n \"lambert5SG\";\n\trename -uid \"DB900D64-4061-C89A-8E71-59A5702EA8B3\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo4\";\n\trename -uid \"74333DFD-4793-241D-31DC-F686CADC142E\";\ncreateNode groupId -n \"groupId5\";\n\trename -uid \"02B681EA-4069-8770-75C0-74AFD4A129EA\";\n\tsetAttr \".ihi\" 0;\ncreateNode lambert -n \"lambert6\";\n\trename -uid \"85C23F83-492C-588B-FD1B-1A8EF0DCBE85\";\n\tsetAttr \".c\" -type \"float3\" 1 1 0 ;\ncreateNode shadingEngine -n \"lambert6SG\";\n\trename -uid \"E284AD76-40AA-828B-24D6-5EB8FB910E05\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo5\";\n\trename -uid \"B67DDF3E-4FAE-9463-6723-E9B7B079AD58\";\ncreateNode groupId -n \"groupId6\";\n\trename -uid \"8F1FBACE-4E06-51DA-F148-40B388BAA372\";\n\tsetAttr \".ihi\" 0;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"211DDCFC-424B-189E-4344-28AAEB1A6103\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"B29DED36-4F71-50B8-51FE-9D88449F2716\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\taddAttr -ci true -sn \"selOnly\" -ln \"selOnly\" -at \"long\";\n\taddAttr -ci true -sn \"visOnly\" -ln \"visOnly\" -at \"long\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/Users/bugfa/Documents/maya/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"untitled\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2019 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"-cam camera1\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 1;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\n\tsetAttr \".selOnly\" 1;\n\tsetAttr \".visOnly\" 1;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 0;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 7 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 9 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1024;\n\tsetAttr \".h\" 1024;\n\tsetAttr \".pa\" 1;\n\tsetAttr \".dar\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"groupId1.id\" \"pCube5Shape.iog.og[0].gid\";\nconnectAttr \":initialShadingGroup.mwc\" \"pCube5Shape.iog.og[0].gco\";\nconnectAttr \"groupId2.id\" \"pCube5Shape.iog.og[1].gid\";\nconnectAttr \"lambert2SG.mwc\" \"pCube5Shape.iog.og[1].gco\";\nconnectAttr \"groupId3.id\" \"pCube5Shape.iog.og[2].gid\";\nconnectAttr \"lambert3SG.mwc\" \"pCube5Shape.iog.og[2].gco\";\nconnectAttr \"groupId4.id\" \"pCube5Shape.iog.og[3].gid\";\nconnectAttr \"lambert4SG.mwc\" \"pCube5Shape.iog.og[3].gco\";\nconnectAttr \"groupId5.id\" \"pCube5Shape.iog.og[4].gid\";\nconnectAttr \"lambert5SG.mwc\" \"pCube5Shape.iog.og[4].gco\";\nconnectAttr \"groupId6.id\" \"pCube5Shape.iog.og[5].gid\";\nconnectAttr \"lambert6SG.mwc\" \"pCube5Shape.iog.og[5].gco\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert4SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert5SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert6SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert4SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert5SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert6SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"groupId2.msg\" \"lambert2SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[1]\" \"lambert2SG.dsm\" -na;\nconnectAttr \"lambert2SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo1.m\";\nconnectAttr \"lambert3.oc\" \"lambert3SG.ss\";\nconnectAttr \"groupId3.msg\" \"lambert3SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[2]\" \"lambert3SG.dsm\" -na;\nconnectAttr \"lambert3SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"lambert3.msg\" \"materialInfo2.m\";\nconnectAttr \"lambert4.oc\" \"lambert4SG.ss\";\nconnectAttr \"groupId4.msg\" \"lambert4SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[3]\" \"lambert4SG.dsm\" -na;\nconnectAttr \"lambert4SG.msg\" \"materialInfo3.sg\";\nconnectAttr \"lambert4.msg\" \"materialInfo3.m\";\nconnectAttr \"lambert5.oc\" \"lambert5SG.ss\";\nconnectAttr \"groupId5.msg\" \"lambert5SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[4]\" \"lambert5SG.dsm\" -na;\nconnectAttr \"lambert5SG.msg\" \"materialInfo4.sg\";\nconnectAttr \"lambert5.msg\" \"materialInfo4.m\";\nconnectAttr \"lambert6.oc\" \"lambert6SG.ss\";\nconnectAttr \"groupId6.msg\" \"lambert6SG.gn\" -na;\nconnectAttr \"pCube5Shape.iog.og[5]\" \"lambert6SG.dsm\" -na;\nconnectAttr \"lambert6SG.msg\" \"materialInfo5.sg\";\nconnectAttr \"lambert6.msg\" \"materialInfo5.m\";\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert3SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert4SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert5SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert6SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert3.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert4.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert5.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert6.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCube5Shape.iog.og[0]\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"groupId1.msg\" \":initialShadingGroup.gn\" -na;\n// End of CubeGrid2.ma\n"
  },
  {
    "path": "maya/scenes/CubeInstancedSphere1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: CubeInstancedSphere1.ma\n//Last modified: Sun, Feb 03, 2019 11:47:45 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"2123622A-4029-481A-870C-E6AA59FD155C\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -0.5016686759806096 5.263642270960478 13.058804765063165 ;\n\tsetAttr \".r\" -type \"double3\" -21.938352729603846 -2.2000000000000681 -9.9465648292798454e-17 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"9EA08C8C-4631-3AE6-EE63-7092608D5310\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 14.088647320063295;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"CA0150A9-4938-0642-65C8-B2BB7D6B3519\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"59C1B158-4423-D682-9039-5BA85CED4EBA\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"FB8DD006-4959-8B6D-FC86-E693F9D27538\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"07DFD580-4235-D325-C2CF-E3A14A2784DD\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"9BCB3701-44BC-E80D-86E1-8C91A34949FA\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"45D0E1AF-4DCD-C509-CF9C-70A3CF7813A1\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"D6F2B3D4-48EE-C88F-17CC-798C2B503B5B\";\n\tsetAttr \".t\" -type \"double3\" -1.5 0.5 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 180 0 ;\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"77A4A3C4-44C5-9A75-6D3A-418182334506\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pSphere1\" -p \"pCube1\";\n\trename -uid \"B574368F-4B6C-514D-DB58-028F82E8208D\";\n\tsetAttr \".t\" -type \"double3\" 0 0.75 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 180 0 ;\n\tsetAttr \".s\" -type \"double3\" 0.25 0.25 0.25 ;\ncreateNode mesh -n \"pSphereShape1\" -p \"|pCube1|pSphere1\";\n\trename -uid \"D03AA221-44AC-DD78-76B8-89A883322A1E\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 2 \".iog\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pCube2\";\n\trename -uid \"53EA42C1-4920-9CB7-D021-DE9C9055DEE0\";\n\tsetAttr \".t\" -type \"double3\" 1.5 0.5 0 ;\ncreateNode mesh -n \"pCubeShape2\" -p \"pCube2\";\n\trename -uid \"135722D5-42AC-C364-B0A0-578D4BA3E9BC\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"2EBD9477-4239-E7D3-BF1F-FCBDB51D8111\";\n\tsetAttr \".t\" -type \"double3\" 2.1708877933233217 4.3467967669723748 4.6554838964315879 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"B8D543C9-4808-FE49-82D9-A7A375C9C25D\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 6.2708237978783092;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0 0.75 0 ;\n\tsetAttr \".dr\" yes;\nparent -s -nc -r -add \"|pCube1|pSphere1\" \"pCube2\" ;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"94C5C7BC-4038-6067-6D03-068E8009E0EA\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"76044B13-477E-513A-D0EC-40BCE42CF2FF\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"2418B74F-4269-782A-AEC1-4FAFC55DB4E0\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"826553A4-42A8-C2A4-DD1C-BF84B6EA813B\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"3B950062-4A73-39F7-47C4-70AC83D121E9\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"487D259F-486C-16B6-2F4B-0F9B1CBED714\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"C88E916C-47F9-89ED-68D7-A69AFBA2A787\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"CCBE3212-4256-3B6D-6871-10B913CBFE8F\";\n\tsetAttr \".cuv\" 4;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"B89BF953-47E4-CB75-3935-A49D2859D1C1\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 1\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange -62.790346 510.290346 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"7FA95E38-44C1-777A-6BB1-8398ECEDF935\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode polySphere -n \"polySphere1\";\n\trename -uid \"C2B0082D-40C9-F4F7-BF53-C6981EBAEDDC\";\ncreateNode polyCube -n \"polyCube2\";\n\trename -uid \"00E78B50-4E88-FE50-2FF7-14AE21DFB64F\";\n\tsetAttr \".cuv\" 4;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"4A692D54-4384-5D6C-BA24-52B40D038685\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1.i\";\nconnectAttr \"polySphere1.out\" \"|pCube1|pSphere1|pSphereShape1.i\";\nconnectAttr \"polyCube2.out\" \"pCubeShape2.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"|pCube1|pSphere1|pSphereShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pCubeShape2.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"|pCube2|pSphere1|pSphereShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of CubeInstancedSphere1.ma\n"
  },
  {
    "path": "maya/scenes/CubeMaterialFactors.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: CubeMaterialFactors.ma\n//Last modified: Sun, Feb 03, 2019 11:47:50 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\nrequires -nodeType \"GLSLShader\" \"glslShader\" \"1.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"7F669003-4294-CD25-693D-DA93853577E5\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1.213541168933715 -2.2001059238783918 2.0975607240345417 ;\n\tsetAttr \".r\" -type \"double3\" 50.144279784358353 1.5902773407317584e-15 28.880384767697748 ;\n\tsetAttr \".rp\" -type \"double3\" 0 2.8421709430404007e-14 -2.8421709430404007e-14 ;\n\tsetAttr \".rpt\" -type \"double3\" -3.6743923548989645e-14 -3.3338969295377628e-14 4.3955278612628534e-14 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"67A125F3-44E4-28BB-5251-2C816129460D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999986;\n\tsetAttr \".coi\" 3.2730580862541592;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"658D612C-44D1-50B8-A188-AFB5F56AF690\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"70EE42CC-4D3A-C675-3D9B-A9A6F1381A88\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"EB1F7A64-41EB-5BB7-9142-D5BBAE625BF4\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"58A8181C-4028-DD90-5A70-16AB39989913\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"BCA7EEDA-498C-6043-AB3B-ACA065FC82EC\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"C112279F-4BF0-1708-2DC3-199668549EE0\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"22486E68-41CB-D88B-7ABD-D2A641750122\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"9B960996-4CA2-8356-5E3A-7189D78A9328\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"7353992F-4C9B-B0A0-01DE-F19F6C3E0C40\";\n\tsetAttr \".t\" -type \"double3\" 1.1280935417606996 1.8690616881841713 2.4192044072879586 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"AA65F30D-4236-D894-7491-3FAF39661262\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 3.2586096110828544;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"C0B99481-454F-5EAF-7FD4-22BEAED4E0FB\";\n\tsetAttr -s 3 \".lnk\";\n\tsetAttr -s 3 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"C16386D4-46D0-E310-4F9F-A193C74F76F3\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"63A8E957-487D-2EA7-E590-6AAEBA624FFD\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"E6622CC4-486D-8F28-9B60-7484F134AF39\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"0D2837F3-4471-6222-F292-5080B825C287\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"7CD3FB4B-4553-9497-0834-A48E31ECAAAC\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"9CF589ED-40AA-38AE-ED44-618EA3FED456\";\n\tsetAttr \".g\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"D18B8E42-4947-4472-12C6-1F8D8523A4AD\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 1\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange -62.790346 510.290346 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 10 -size 100 -divisions 10 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"DB5454BB-4512-AC74-9FB2-7F9F2CEAF5DB\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"62609067-43C1-A378-1840-5DAC36D1DCBD\";\n\tsetAttr \".cuv\" 4;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"62906D68-4266-CEAA-7E53-A9BF1F222948\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/scenes/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"CubeMaterialFactors\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2018 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 1;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\ncreateNode GLSLShader -n \"GLSLShader1\";\n\trename -uid \"3CA52842-41DA-DDE0-86FB-7A8FF460E290\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Name\" -ln \"u_LightColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Type\" -ln \"u_LightColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_LightColor\" -ln \"u_LightColor\" -nn \"Light Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_LightColorR\" -ln \"u_LightColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorG\" -ln \"u_LightColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorB\" -ln \"u_LightColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Name\" -ln \"u_LightIntensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Type\" -ln \"u_LightIntensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightIntensity\" -ln \"u_LightIntensity\" -nn \"Light Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 10 -smn 0 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Name\" -ln \"u_LightRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Type\" -ln \"u_LightRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightRotation\" -ln \"u_LightRotation\" -nn \"Light rotation (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 75 -min 0 -max 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Name\" -ln \"u_LightPitch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Type\" -ln \"u_LightPitch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightPitch\" -ln \"u_LightPitch\" -nn \"Light pitch (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 40 -min -90 -max 90 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Name\" -ln \"u_BaseColorTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Type\" -ln \"u_BaseColorTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorTexture\" -ln \"u_BaseColorTexture\" \n\t\t-nn \"Base color map (sRGB)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureR\" -ln \"u_BaseColorTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureG\" -ln \"u_BaseColorTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureB\" -ln \"u_BaseColorTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Name\" -ln \"u_BaseColorFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Type\" -ln \"u_BaseColorFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactor\" -ln \"u_BaseColorFactor\" -nn \"Base color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorFactorRGB\" -ln \"u_BaseColorFactorRGB\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_BaseColorFactor\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorR\" -ln \"u_BaseColorFactorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorG\" -ln \"u_BaseColorFactorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorB\" -ln \"u_BaseColorFactorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorA\" -ln \"u_BaseColorFactorA\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactor\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Name\" -ln \"u_MetallicTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Type\" -ln \"u_MetallicTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_MetallicTexture\" -ln \"u_MetallicTexture\" -nn \"Metallic map (B,LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_MetallicTextureR\" -ln \"u_MetallicTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureG\" -ln \"u_MetallicTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureB\" -ln \"u_MetallicTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Name\" -ln \"u_MetallicStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Type\" -ln \"u_MetallicStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_MetallicStrength\" -ln \"u_MetallicStrength\" -nn \"Metallic strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Name\" -ln \"u_RoughnessTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Type\" -ln \"u_RoughnessTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_RoughnessTexture\" -ln \"u_RoughnessTexture\" \n\t\t-nn \"Roughness map (G,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureR\" -ln \"u_RoughnessTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureG\" -ln \"u_RoughnessTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureB\" -ln \"u_RoughnessTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Name\" -ln \"u_RoughnessStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Type\" -ln \"u_RoughnessStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessStrength\" -ln \"u_RoughnessStrength\" -nn \"Roughness strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Name\" -ln \"u_OcclusionTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Type\" -ln \"u_OcclusionTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_OcclusionTexture\" -ln \"u_OcclusionTexture\" \n\t\t-nn \"Occlusion map (R,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureR\" -ln \"u_OcclusionTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureG\" -ln \"u_OcclusionTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureB\" -ln \"u_OcclusionTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Name\" -ln \"u_OcclusionStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Type\" -ln \"u_OcclusionStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_OcclusionStrength\" -ln \"u_OcclusionStrength\" -nn \"Occlusion strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Name\" -ln \"u_NormalTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Type\" -ln \"u_NormalTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_NormalTexture\" -ln \"u_NormalTexture\" -nn \"Normal map (LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_NormalTextureR\" -ln \"u_NormalTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureG\" -ln \"u_NormalTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureB\" -ln \"u_NormalTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Name\" -ln \"u_NormalScale_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Type\" -ln \"u_NormalScale_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_NormalScale\" -ln \"u_NormalScale\" -nn \"Normal scale\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Name\" -ln \"u_EmissiveTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Type\" -ln \"u_EmissiveTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveTexture\" -ln \"u_EmissiveTexture\" -nn \"Emissive map (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureR\" -ln \"u_EmissiveTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureG\" -ln \"u_EmissiveTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureB\" -ln \"u_EmissiveTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Name\" -ln \"u_EmissiveColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Type\" -ln \"u_EmissiveColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveColor\" -ln \"u_EmissiveColor\" -nn \"Emissive color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveColorR\" -ln \"u_EmissiveColorR\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorG\" -ln \"u_EmissiveColorG\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorB\" -ln \"u_EmissiveColorB\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Name\" -ln \"u_DiffuseEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Type\" -ln \"u_DiffuseEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_DiffuseEnvTexture\" -ln \"u_DiffuseEnvTexture\" \n\t\t-nn \"Diffuse env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureR\" -ln \"u_DiffuseEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureG\" -ln \"u_DiffuseEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureB\" -ln \"u_DiffuseEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Name\" -ln \"u_SpecularEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Type\" -ln \"u_SpecularEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_SpecularEnvTexture\" -ln \"u_SpecularEnvTexture\" \n\t\t-nn \"Specular env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureR\" -ln \"u_SpecularEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureG\" -ln \"u_SpecularEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureB\" -ln \"u_SpecularEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Name\" -ln \"u_brdfTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Type\" -ln \"u_brdfTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_brdfTexture\" -ln \"u_brdfTexture\" -nn \"BRDF LUT (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_brdfTextureR\" -ln \"u_brdfTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureG\" -ln \"u_brdfTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureB\" -ln \"u_brdfTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Name\" -ln \"u_UseMeshTangents_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Type\" -ln \"u_UseMeshTangents_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UseMeshTangents\" -ln \"u_UseMeshTangents\" -nn \"Use mesh tangents?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Name\" -ln \"u_ScaleDiffBaseMR_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Type\" -ln \"u_ScaleDiffBaseMR_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMR\" -ln \"u_ScaleDiffBaseMR\" -nn \"Scale Diff Base MR\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRXYZ\" -ln \"u_ScaleDiffBaseMRXYZ\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_ScaleDiffBaseMR\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRX\" -ln \"u_ScaleDiffBaseMRX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRY\" -ln \"u_ScaleDiffBaseMRY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRZ\" -ln \"u_ScaleDiffBaseMRZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRW\" -ln \"u_ScaleDiffBaseMRW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMR\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Name\" -ln \"u_ScaleFGDSpec_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Type\" -ln \"u_ScaleFGDSpec_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpec\" -ln \"u_ScaleFGDSpec\" -nn \"Scale FGD Spec\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecXYZ\" -ln \"u_ScaleFGDSpecXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleFGDSpec\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecX\" -ln \"u_ScaleFGDSpecX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecY\" -ln \"u_ScaleFGDSpecY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecZ\" -ln \"u_ScaleFGDSpecZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecW\" -ln \"u_ScaleFGDSpecW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpec\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Name\" -ln \"u_ScaleIBL_Occl_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Type\" -ln \"u_ScaleIBL_Occl_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_Occl\" -ln \"u_ScaleIBL_Occl\" -nn \"Scale IBL AO(w)\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclXYZ\" -ln \"u_ScaleIBL_OcclXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleIBL_Occl\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclX\" -ln \"u_ScaleIBL_OcclX\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclY\" -ln \"u_ScaleIBL_OcclY\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclZ\" -ln \"u_ScaleIBL_OcclZ\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclW\" -ln \"u_ScaleIBL_OcclW\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_Occl\";\n\taddAttr -ci true -sn \"Position\" -ln \"Position\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Position_Name\" -ln \"Position_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"Position_Source\" -ln \"Position_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -sn \"Position_DefaultTexture\" -ln \"Position_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Position\";\n\taddAttr -ci true -sn \"Normal\" -ln \"Normal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Normal_Name\" -ln \"Normal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Source\" -ln \"Normal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -sn \"Normal_DefaultTexture\" -ln \"Normal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Normal\";\n\taddAttr -ci true -sn \"Tangent\" -ln \"Tangent\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Tangent_Name\" -ln \"Tangent_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"Tangent_Source\" -ln \"Tangent_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -sn \"Tangent_DefaultTexture\" -ln \"Tangent_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Tangent\";\n\taddAttr -ci true -sn \"Binormal\" -ln \"Binormal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Binormal_Name\" -ln \"Binormal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -h true -sn \"Binormal_Source\" -ln \"Binormal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -sn \"Binormal_DefaultTexture\" -ln \"Binormal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Binormal\";\n\taddAttr -ci true -sn \"TexCoord0\" -ln \"TexCoord0\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Name\" -ln \"TexCoord0_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Source\" -ln \"TexCoord0_Source\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -sn \"TexCoord0_DefaultTexture\" -ln \"TexCoord0_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -s false -is true -ci true -k true -sn \"te\" -ln \"techniqueEnum\" -nn \"Technique\" \n\t\t-min 0 -max 1 -en \"Solid:Transparent\" -at \"enum\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Name\" -ln \"u_IsDoubleSided_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Type\" -ln \"u_IsDoubleSided_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsDoubleSided\" -ln \"u_IsDoubleSided\" -nn \"Double sided material?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Name\" -ln \"u_RoughnessOffset_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Type\" -ln \"u_RoughnessOffset_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessOffset\" -ln \"u_RoughnessOffset\" -nn \"Roughness offset\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 12 -smn 0 -smx 12 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Name\" -ln \"u_BurleyFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Type\" -ln \"u_BurleyFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BurleyFactor\" -ln \"u_BurleyFactor\" -nn \"Burley factor\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Name\" -ln \"u_UndoEdgeStretch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Type\" -ln \"u_UndoEdgeStretch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UndoEdgeStretch\" -ln \"u_UndoEdgeStretch\" -nn \"Undo edge stretch?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Name\" -ln \"u_IsEmissiveInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Type\" -ln \"u_IsEmissiveInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEmissiveInsRGB\" -ln \"u_IsEmissiveInsRGB\" -nn \"sRGB emissive?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Name\" -ln \"u_EnvRotationAngle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Type\" -ln \"u_EnvRotationAngle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_EnvRotationAngle\" -ln \"u_EnvRotationAngle\" -nn \"Environment Rotation\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Name\" -ln \"u_FlipEnvMapZ_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Type\" -ln \"u_FlipEnvMapZ_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_FlipEnvMapZ\" -ln \"u_FlipEnvMapZ\" -nn \"Flip environment Z?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Name\" -ln \"u_IsEnvMapInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Type\" -ln \"u_IsEnvMapInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInsRGB\" -ln \"u_IsEnvMapInsRGB\" -nn \"sRGB environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Name\" -ln \"u_IsEnvMapInRGBM_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Type\" -ln \"u_IsEnvMapInRGBM_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInRGBM\" -ln \"u_IsEnvMapInRGBM\" -nn \"RGBM environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Name\" -ln \"u_IsBRDFsSRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Type\" -ln \"u_IsBRDFsSRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBRDFsSRGB\" -ln \"u_IsBRDFsSRGB\" -nn \"sRGB BRDF table?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Name\" -ln \"u_IsBaseColorInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Type\" -ln \"u_IsBaseColorInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBaseColorInsRGB\" -ln \"u_IsBaseColorInsRGB\" -nn \"sRGB basecolor?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\tsetAttr \".vpar\" -type \"stringArray\" 5 \"Position\" \"Normal\" \"Tangent\" \"Binormal\" \"TexCoord0\"  ;\n\tsetAttr \".upar\" -type \"stringArray\" 34 \"u_LightColor\" \"u_LightIntensity\" \"u_LightRotation\" \"u_LightPitch\" \"u_BaseColorTexture\" \"u_BaseColorFactor\" \"u_MetallicTexture\" \"u_MetallicStrength\" \"u_RoughnessTexture\" \"u_RoughnessStrength\" \"u_OcclusionTexture\" \"u_OcclusionStrength\" \"u_NormalTexture\" \"u_NormalScale\" \"u_EmissiveTexture\" \"u_EmissiveColor\" \"u_DiffuseEnvTexture\" \"u_SpecularEnvTexture\" \"u_brdfTexture\" \"u_IsDoubleSided\" \"u_UseMeshTangents\" \"u_RoughnessOffset\" \"u_ScaleDiffBaseMR\" \"u_BurleyFactor\" \"u_ScaleFGDSpec\" \"u_UndoEdgeStretch\" \"u_ScaleIBL_Occl\" \"u_IsEmissiveInsRGB\" \"u_EnvRotationAngle\" \"u_FlipEnvMapZ\" \"u_IsEnvMapInsRGB\" \"u_IsEnvMapInRGBM\" \"u_IsBRDFsSRGB\" \"u_IsBaseColorInsRGB\"  ;\n\tsetAttr \".s\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/shaders/glTF_PBR.ogsfx\";\n\tsetAttr \".t\" -type \"string\" \"Solid\";\n\tsetAttr \".u_LightColor_Name\" -type \"string\" \"u_LightColor\";\n\tsetAttr \".u_LightColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_LightColor\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_LightIntensity_Name\" -type \"string\" \"u_LightIntensity\";\n\tsetAttr \".u_LightIntensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightIntensity\" 1;\n\tsetAttr \".u_LightRotation_Name\" -type \"string\" \"u_LightRotation\";\n\tsetAttr \".u_LightRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightRotation\" 75;\n\tsetAttr \".u_LightPitch_Name\" -type \"string\" \"u_LightPitch\";\n\tsetAttr \".u_LightPitch_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightPitch\" 40;\n\tsetAttr \".u_BaseColorTexture_Name\" -type \"string\" \"u_BaseColorTexture\";\n\tsetAttr \".u_BaseColorTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_BaseColorTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_BaseColorFactor_Name\" -type \"string\" \"u_BaseColorFactor\";\n\tsetAttr \".u_BaseColorFactor_Type\" -type \"string\" \"color4x1\";\n\tsetAttr \".u_BaseColorFactorRGB\" -type \"float3\" 0.89999998 0.80000001 0.69999999 ;\n\tsetAttr \".u_BaseColorFactorA\" 0.60000002384185791;\n\tsetAttr \".u_MetallicTexture_Name\" -type \"string\" \"u_MetallicTexture\";\n\tsetAttr \".u_MetallicTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_MetallicTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_MetallicStrength_Name\" -type \"string\" \"u_MetallicStrength\";\n\tsetAttr \".u_MetallicStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_MetallicStrength\" 0.55000001192092896;\n\tsetAttr \".u_RoughnessTexture_Name\" -type \"string\" \"u_RoughnessTexture\";\n\tsetAttr \".u_RoughnessTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_RoughnessTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_RoughnessStrength_Name\" -type \"string\" \"u_RoughnessStrength\";\n\tsetAttr \".u_RoughnessStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_RoughnessStrength\" 0.44999998807907104;\n\tsetAttr \".u_OcclusionTexture_Name\" -type \"string\" \"u_OcclusionTexture\";\n\tsetAttr \".u_OcclusionTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_OcclusionTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_OcclusionStrength_Name\" -type \"string\" \"u_OcclusionStrength\";\n\tsetAttr \".u_OcclusionStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_OcclusionStrength\" 0.75;\n\tsetAttr \".u_NormalTexture_Name\" -type \"string\" \"u_NormalTexture\";\n\tsetAttr \".u_NormalTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_NormalTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_NormalScale_Name\" -type \"string\" \"u_NormalScale\";\n\tsetAttr \".u_NormalScale_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_NormalScale\" 0.80000001192092896;\n\tsetAttr \".u_EmissiveTexture_Name\" -type \"string\" \"u_EmissiveTexture\";\n\tsetAttr \".u_EmissiveTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_EmissiveTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_EmissiveColor_Name\" -type \"string\" \"u_EmissiveColor\";\n\tsetAttr \".u_EmissiveColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_EmissiveColor\" -type \"float3\" 0.75 0.85000002 0.94999999 ;\n\tsetAttr \".u_DiffuseEnvTexture_Name\" -type \"string\" \"u_DiffuseEnvTexture\";\n\tsetAttr \".u_DiffuseEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_DiffuseEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_SpecularEnvTexture_Name\" -type \"string\" \"u_SpecularEnvTexture\";\n\tsetAttr \".u_SpecularEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_SpecularEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_brdfTexture_Name\" -type \"string\" \"u_brdfTexture\";\n\tsetAttr \".u_brdfTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_brdfTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_UseMeshTangents_Name\" -type \"string\" \"u_UseMeshTangents\";\n\tsetAttr \".u_UseMeshTangents_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UseMeshTangents\" no;\n\tsetAttr \".u_ScaleDiffBaseMR_Name\" -type \"string\" \"u_ScaleDiffBaseMR\";\n\tsetAttr \".u_ScaleDiffBaseMR_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleDiffBaseMRXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleDiffBaseMRW\" 0;\n\tsetAttr \".u_ScaleFGDSpec_Name\" -type \"string\" \"u_ScaleFGDSpec\";\n\tsetAttr \".u_ScaleFGDSpec_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleFGDSpecXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleFGDSpecW\" 0;\n\tsetAttr \".u_ScaleIBL_Occl_Name\" -type \"string\" \"u_ScaleIBL_Occl\";\n\tsetAttr \".u_ScaleIBL_Occl_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleIBL_OcclXYZ\" -type \"float3\" 1 1 0 ;\n\tsetAttr \".u_ScaleIBL_OcclW\" 1;\n\tsetAttr \".Position_Name\" -type \"string\" \"Position\";\n\tsetAttr \".Position_Source\" -type \"string\" \"position\";\n\tsetAttr \".Normal_Name\" -type \"string\" \"Normal\";\n\tsetAttr \".Normal_Source\" -type \"string\" \"normal\";\n\tsetAttr \".Tangent_Name\" -type \"string\" \"Tangent\";\n\tsetAttr \".Tangent_Source\" -type \"string\" \"tangent:map1\";\n\tsetAttr \".Binormal_Name\" -type \"string\" \"Binormal\";\n\tsetAttr \".Binormal_Source\" -type \"string\" \"binormal:map1\";\n\tsetAttr \".TexCoord0_Name\" -type \"string\" \"TexCoord0\";\n\tsetAttr \".TexCoord0_Source\" -type \"string\" \"uv:map1\";\n\tsetAttr \".u_IsDoubleSided_Name\" -type \"string\" \"u_IsDoubleSided\";\n\tsetAttr \".u_IsDoubleSided_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsDoubleSided\" no;\n\tsetAttr \".u_RoughnessOffset_Name\" -type \"string\" \"u_RoughnessOffset\";\n\tsetAttr \".u_RoughnessOffset_Type\" -type \"string\" \"int\";\n\tsetAttr \".u_RoughnessOffset\" 0;\n\tsetAttr \".u_BurleyFactor_Name\" -type \"string\" \"u_BurleyFactor\";\n\tsetAttr \".u_BurleyFactor_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_BurleyFactor\" 0;\n\tsetAttr \".u_UndoEdgeStretch_Name\" -type \"string\" \"u_UndoEdgeStretch\";\n\tsetAttr \".u_UndoEdgeStretch_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UndoEdgeStretch\" no;\n\tsetAttr \".u_IsEmissiveInsRGB_Name\" -type \"string\" \"u_IsEmissiveInsRGB\";\n\tsetAttr \".u_IsEmissiveInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEmissiveInsRGB\" yes;\n\tsetAttr \".u_EnvRotationAngle_Name\" -type \"string\" \"u_EnvRotationAngle\";\n\tsetAttr \".u_EnvRotationAngle_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_EnvRotationAngle\" 0;\n\tsetAttr \".u_FlipEnvMapZ_Name\" -type \"string\" \"u_FlipEnvMapZ\";\n\tsetAttr \".u_FlipEnvMapZ_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_FlipEnvMapZ\" yes;\n\tsetAttr \".u_IsEnvMapInsRGB_Name\" -type \"string\" \"u_IsEnvMapInsRGB\";\n\tsetAttr \".u_IsEnvMapInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInsRGB\" no;\n\tsetAttr \".u_IsEnvMapInRGBM_Name\" -type \"string\" \"u_IsEnvMapInRGBM\";\n\tsetAttr \".u_IsEnvMapInRGBM_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInRGBM\" no;\n\tsetAttr \".u_IsBRDFsSRGB_Name\" -type \"string\" \"u_IsBRDFsSRGB\";\n\tsetAttr \".u_IsBRDFsSRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBRDFsSRGB\" no;\n\tsetAttr \".u_IsBaseColorInsRGB_Name\" -type \"string\" \"u_IsBaseColorInsRGB\";\n\tsetAttr \".u_IsBaseColorInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBaseColorInsRGB\" yes;\ncreateNode file -n \"file1\";\n\trename -uid \"59D7B919-46B6-15A3-0950-179FFB53C889\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_diffuse_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture1\";\n\trename -uid \"FAFEC2F2-466B-48C7-0044-1687FBD55315\";\ncreateNode file -n \"file2\";\n\trename -uid \"E1EB606F-450A-39C3-4EDA-EA931E8BA1A0\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_specular_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture2\";\n\trename -uid \"B970448C-439F-9C38-4BFD-F595E97D68E0\";\ncreateNode file -n \"file3\";\n\trename -uid \"92D7E02E-4C51-B638-A7A5-A29A5CE9F12D\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/brdfLUT.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture3\";\n\trename -uid \"5C38D6B5-4809-7C9B-3042-55BA2E63DA20\";\ncreateNode shadingEngine -n \"GLSLShader1SG\";\n\trename -uid \"CD3EDC14-44A4-F3F1-4B0C-D19DEF0EA99D\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"07101F11-42D4-108B-6A64-96AEF041C496\";\ncreateNode nodeGraphEditorInfo -n \"MayaNodeEditorSavedTabsInfo\";\n\trename -uid \"F7AE993D-46DB-E932-0AD7-208ECC6977C9\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -577.57231781881751 -69.879996992282187 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 736.81409016184921 593.73308919641431 ;\n\tsetAttr -s 8 \".tgi[0].ni\";\n\tsetAttr \".tgi[0].ni[0].x\" -581.4285888671875;\n\tsetAttr \".tgi[0].ni[0].y\" -65.714286804199219;\n\tsetAttr \".tgi[0].ni[0].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[1].x\" 390;\n\tsetAttr \".tgi[0].ni[1].y\" 35.714286804199219;\n\tsetAttr \".tgi[0].ni[1].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[2].x\" -274.28570556640625;\n\tsetAttr \".tgi[0].ni[2].y\" 35.714286804199219;\n\tsetAttr \".tgi[0].ni[2].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[3].x\" -581.4285888671875;\n\tsetAttr \".tgi[0].ni[3].y\" 137.14285278320313;\n\tsetAttr \".tgi[0].ni[3].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[4].x\" -581.4285888671875;\n\tsetAttr \".tgi[0].ni[4].y\" 35.714286804199219;\n\tsetAttr \".tgi[0].ni[4].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[5].x\" -274.28570556640625;\n\tsetAttr \".tgi[0].ni[5].y\" -65.714286804199219;\n\tsetAttr \".tgi[0].ni[5].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[6].x\" 85.560249328613281;\n\tsetAttr \".tgi[0].ni[6].y\" 621.613037109375;\n\tsetAttr \".tgi[0].ni[6].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[7].x\" -274.28570556640625;\n\tsetAttr \".tgi[0].ni[7].y\" 137.14285278320313;\n\tsetAttr \".tgi[0].ni[7].nvs\" 18304;\ncreateNode file -n \"file4\";\n\trename -uid \"BA305140-4589-834F-59E4-EEA07934EFBE\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//images/damaged_helmet_normal.png\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture4\";\n\trename -uid \"776B5C7B-4AFA-10CD-8AA3-F18D59468AC4\";\ncreateNode file -n \"file5\";\n\trename -uid \"686E60F0-4341-E055-0E61-3DA6237F39FE\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//images/damaged_helmet_orm.jpg\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture5\";\n\trename -uid \"E66EE0C6-4C61-1B03-C383-60B54773CB8E\";\ncreateNode file -n \"file6\";\n\trename -uid \"AE056D20-4A68-04E0-9B3B-4EA03D06F34E\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//images/damaged_helmet_albedo.jpg\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture6\";\n\trename -uid \"FB42B72E-406E-023D-CB22-289D93C1E301\";\ncreateNode file -n \"file7\";\n\trename -uid \"30412285-44D0-0A1A-3388-44B17BE71920\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//images/damaged_helmet_emissive.jpg\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture7\";\n\trename -uid \"CFDFFBDF-4287-10EE-DD1E-9FA96429D518\";\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"4461C024-4983-1230-FCF2-9EB382F90743\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 3 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 5 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderUtilityList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 7 \".u\";\nselect -ne :defaultRenderingList1;\nselect -ne :defaultTextureList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 7 \".tx\";\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader1SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader1SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"file1.oc\" \"GLSLShader1.u_DiffuseEnvTexture\";\nconnectAttr \"file2.oc\" \"GLSLShader1.u_SpecularEnvTexture\";\nconnectAttr \"file3.oc\" \"GLSLShader1.u_brdfTexture\";\nconnectAttr \"file4.oc\" \"GLSLShader1.u_NormalTexture\";\nconnectAttr \"file5.oc\" \"GLSLShader1.u_OcclusionTexture\";\nconnectAttr \"file6.oc\" \"GLSLShader1.u_BaseColorTexture\";\nconnectAttr \"file5.oc\" \"GLSLShader1.u_MetallicTexture\";\nconnectAttr \"file5.oc\" \"GLSLShader1.u_RoughnessTexture\";\nconnectAttr \"file7.oc\" \"GLSLShader1.u_EmissiveTexture\";\nconnectAttr \"place2dTexture1.c\" \"file1.c\";\nconnectAttr \"place2dTexture1.tf\" \"file1.tf\";\nconnectAttr \"place2dTexture1.rf\" \"file1.rf\";\nconnectAttr \"place2dTexture1.mu\" \"file1.mu\";\nconnectAttr \"place2dTexture1.mv\" \"file1.mv\";\nconnectAttr \"place2dTexture1.s\" \"file1.s\";\nconnectAttr \"place2dTexture1.wu\" \"file1.wu\";\nconnectAttr \"place2dTexture1.wv\" \"file1.wv\";\nconnectAttr \"place2dTexture1.re\" \"file1.re\";\nconnectAttr \"place2dTexture1.r\" \"file1.ro\";\nconnectAttr \"place2dTexture1.of\" \"file1.of\";\nconnectAttr \"place2dTexture1.n\" \"file1.n\";\nconnectAttr \"place2dTexture1.vt1\" \"file1.vt1\";\nconnectAttr \"place2dTexture1.vt2\" \"file1.vt2\";\nconnectAttr \"place2dTexture1.vt3\" \"file1.vt3\";\nconnectAttr \"place2dTexture1.vc1\" \"file1.vc1\";\nconnectAttr \"place2dTexture1.o\" \"file1.uv\";\nconnectAttr \"place2dTexture1.ofs\" \"file1.fs\";\nconnectAttr \"place2dTexture2.c\" \"file2.c\";\nconnectAttr \"place2dTexture2.tf\" \"file2.tf\";\nconnectAttr \"place2dTexture2.rf\" \"file2.rf\";\nconnectAttr \"place2dTexture2.mu\" \"file2.mu\";\nconnectAttr \"place2dTexture2.mv\" \"file2.mv\";\nconnectAttr \"place2dTexture2.s\" \"file2.s\";\nconnectAttr \"place2dTexture2.wu\" \"file2.wu\";\nconnectAttr \"place2dTexture2.wv\" \"file2.wv\";\nconnectAttr \"place2dTexture2.re\" \"file2.re\";\nconnectAttr \"place2dTexture2.r\" \"file2.ro\";\nconnectAttr \"place2dTexture2.of\" \"file2.of\";\nconnectAttr \"place2dTexture2.n\" \"file2.n\";\nconnectAttr \"place2dTexture2.vt1\" \"file2.vt1\";\nconnectAttr \"place2dTexture2.vt2\" \"file2.vt2\";\nconnectAttr \"place2dTexture2.vt3\" \"file2.vt3\";\nconnectAttr \"place2dTexture2.vc1\" \"file2.vc1\";\nconnectAttr \"place2dTexture2.o\" \"file2.uv\";\nconnectAttr \"place2dTexture2.ofs\" \"file2.fs\";\nconnectAttr \"place2dTexture3.c\" \"file3.c\";\nconnectAttr \"place2dTexture3.tf\" \"file3.tf\";\nconnectAttr \"place2dTexture3.rf\" \"file3.rf\";\nconnectAttr \"place2dTexture3.mu\" \"file3.mu\";\nconnectAttr \"place2dTexture3.mv\" \"file3.mv\";\nconnectAttr \"place2dTexture3.s\" \"file3.s\";\nconnectAttr \"place2dTexture3.wu\" \"file3.wu\";\nconnectAttr \"place2dTexture3.wv\" \"file3.wv\";\nconnectAttr \"place2dTexture3.re\" \"file3.re\";\nconnectAttr \"place2dTexture3.r\" \"file3.ro\";\nconnectAttr \"place2dTexture3.of\" \"file3.of\";\nconnectAttr \"place2dTexture3.n\" \"file3.n\";\nconnectAttr \"place2dTexture3.vt1\" \"file3.vt1\";\nconnectAttr \"place2dTexture3.vt2\" \"file3.vt2\";\nconnectAttr \"place2dTexture3.vt3\" \"file3.vt3\";\nconnectAttr \"place2dTexture3.vc1\" \"file3.vc1\";\nconnectAttr \"place2dTexture3.o\" \"file3.uv\";\nconnectAttr \"place2dTexture3.ofs\" \"file3.fs\";\nconnectAttr \"GLSLShader1.oc\" \"GLSLShader1SG.ss\";\nconnectAttr \"pCubeShape1.iog\" \"GLSLShader1SG.dsm\" -na;\nconnectAttr \"GLSLShader1SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"GLSLShader1.msg\" \"materialInfo1.m\";\nconnectAttr \"GLSLShader1.msg\" \"materialInfo1.t\" -na;\nconnectAttr \"place2dTexture2.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[0].dn\";\nconnectAttr \"GLSLShader1SG.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[1].dn\";\nconnectAttr \"file1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[2].dn\";\nconnectAttr \"place2dTexture3.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[3].dn\";\nconnectAttr \"place2dTexture1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[4].dn\";\nconnectAttr \"file2.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[5].dn\";\nconnectAttr \"GLSLShader1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[6].dn\";\nconnectAttr \"file3.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[7].dn\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file4.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file4.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file4.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file4.ws\";\nconnectAttr \"place2dTexture4.c\" \"file4.c\";\nconnectAttr \"place2dTexture4.tf\" \"file4.tf\";\nconnectAttr \"place2dTexture4.rf\" \"file4.rf\";\nconnectAttr \"place2dTexture4.mu\" \"file4.mu\";\nconnectAttr \"place2dTexture4.mv\" \"file4.mv\";\nconnectAttr \"place2dTexture4.s\" \"file4.s\";\nconnectAttr \"place2dTexture4.wu\" \"file4.wu\";\nconnectAttr \"place2dTexture4.wv\" \"file4.wv\";\nconnectAttr \"place2dTexture4.re\" \"file4.re\";\nconnectAttr \"place2dTexture4.of\" \"file4.of\";\nconnectAttr \"place2dTexture4.r\" \"file4.ro\";\nconnectAttr \"place2dTexture4.n\" \"file4.n\";\nconnectAttr \"place2dTexture4.vt1\" \"file4.vt1\";\nconnectAttr \"place2dTexture4.vt2\" \"file4.vt2\";\nconnectAttr \"place2dTexture4.vt3\" \"file4.vt3\";\nconnectAttr \"place2dTexture4.vc1\" \"file4.vc1\";\nconnectAttr \"place2dTexture4.o\" \"file4.uv\";\nconnectAttr \"place2dTexture4.ofs\" \"file4.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file5.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file5.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file5.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file5.ws\";\nconnectAttr \"place2dTexture5.c\" \"file5.c\";\nconnectAttr \"place2dTexture5.tf\" \"file5.tf\";\nconnectAttr \"place2dTexture5.rf\" \"file5.rf\";\nconnectAttr \"place2dTexture5.mu\" \"file5.mu\";\nconnectAttr \"place2dTexture5.mv\" \"file5.mv\";\nconnectAttr \"place2dTexture5.s\" \"file5.s\";\nconnectAttr \"place2dTexture5.wu\" \"file5.wu\";\nconnectAttr \"place2dTexture5.wv\" \"file5.wv\";\nconnectAttr \"place2dTexture5.re\" \"file5.re\";\nconnectAttr \"place2dTexture5.of\" \"file5.of\";\nconnectAttr \"place2dTexture5.r\" \"file5.ro\";\nconnectAttr \"place2dTexture5.n\" \"file5.n\";\nconnectAttr \"place2dTexture5.vt1\" \"file5.vt1\";\nconnectAttr \"place2dTexture5.vt2\" \"file5.vt2\";\nconnectAttr \"place2dTexture5.vt3\" \"file5.vt3\";\nconnectAttr \"place2dTexture5.vc1\" \"file5.vc1\";\nconnectAttr \"place2dTexture5.o\" \"file5.uv\";\nconnectAttr \"place2dTexture5.ofs\" \"file5.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file6.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file6.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file6.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file6.ws\";\nconnectAttr \"place2dTexture6.c\" \"file6.c\";\nconnectAttr \"place2dTexture6.tf\" \"file6.tf\";\nconnectAttr \"place2dTexture6.rf\" \"file6.rf\";\nconnectAttr \"place2dTexture6.mu\" \"file6.mu\";\nconnectAttr \"place2dTexture6.mv\" \"file6.mv\";\nconnectAttr \"place2dTexture6.s\" \"file6.s\";\nconnectAttr \"place2dTexture6.wu\" \"file6.wu\";\nconnectAttr \"place2dTexture6.wv\" \"file6.wv\";\nconnectAttr \"place2dTexture6.re\" \"file6.re\";\nconnectAttr \"place2dTexture6.of\" \"file6.of\";\nconnectAttr \"place2dTexture6.r\" \"file6.ro\";\nconnectAttr \"place2dTexture6.n\" \"file6.n\";\nconnectAttr \"place2dTexture6.vt1\" \"file6.vt1\";\nconnectAttr \"place2dTexture6.vt2\" \"file6.vt2\";\nconnectAttr \"place2dTexture6.vt3\" \"file6.vt3\";\nconnectAttr \"place2dTexture6.vc1\" \"file6.vc1\";\nconnectAttr \"place2dTexture6.o\" \"file6.uv\";\nconnectAttr \"place2dTexture6.ofs\" \"file6.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file7.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file7.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file7.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file7.ws\";\nconnectAttr \"place2dTexture7.c\" \"file7.c\";\nconnectAttr \"place2dTexture7.tf\" \"file7.tf\";\nconnectAttr \"place2dTexture7.rf\" \"file7.rf\";\nconnectAttr \"place2dTexture7.mu\" \"file7.mu\";\nconnectAttr \"place2dTexture7.mv\" \"file7.mv\";\nconnectAttr \"place2dTexture7.s\" \"file7.s\";\nconnectAttr \"place2dTexture7.wu\" \"file7.wu\";\nconnectAttr \"place2dTexture7.wv\" \"file7.wv\";\nconnectAttr \"place2dTexture7.re\" \"file7.re\";\nconnectAttr \"place2dTexture7.of\" \"file7.of\";\nconnectAttr \"place2dTexture7.r\" \"file7.ro\";\nconnectAttr \"place2dTexture7.n\" \"file7.n\";\nconnectAttr \"place2dTexture7.vt1\" \"file7.vt1\";\nconnectAttr \"place2dTexture7.vt2\" \"file7.vt2\";\nconnectAttr \"place2dTexture7.vt3\" \"file7.vt3\";\nconnectAttr \"place2dTexture7.vc1\" \"file7.vc1\";\nconnectAttr \"place2dTexture7.o\" \"file7.uv\";\nconnectAttr \"place2dTexture7.ofs\" \"file7.fs\";\nconnectAttr \"GLSLShader1SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader1.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"place2dTexture1.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture2.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture3.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture4.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture5.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture6.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture7.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"file1.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file2.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file3.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file4.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file5.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file6.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file7.msg\" \":defaultTextureList1.tx\" -na;\n// End of CubeMaterialFactors.ma\n"
  },
  {
    "path": "maya/scenes/CubeNormalBakingTest.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: CubeNormalBakingTest.ma\n//Last modified: Sun, Feb 03, 2019 11:47:57 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\nrequires -nodeType \"GLSLShader\" \"glslShader\" \"1.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"1CE062EA-477A-B7B8-D645-5596AADC08E7\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -0.10642725436037741 1.2877157214657957 1.3227663604527198 ;\n\tsetAttr \".r\" -type \"double3\" -44.138352671432806 -1084.5999999996425 1.9942704634676462e-16 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"C4935601-467D-7DF4-2F6E-BA8B414677C4\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 1.8491212464640197;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"9A2D5671-4DA0-64AC-9677-34AC14010C2A\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"DFD81D49-4D88-3BEF-AAEF-9A8148720AF3\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"49DC5B17-4BEE-D096-E459-66A8B2E3C6D3\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"78D375D8-4146-766F-36FD-00A495F441DA\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"CA189366-4A50-D1A3-0246-86AF70E583CF\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"3049F159-4EB9-7FD6-030E-C0B8F616FC15\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pSphere1\";\n\trename -uid \"BB7204F9-4C26-5534-99A4-86AA1D849D30\";\n\tsetAttr \".t\" -type \"double3\" -2.1547537227312334 0 0 ;\ncreateNode mesh -n \"pSphereShape1\" -p \"pSphere1\";\n\trename -uid \"5F088E02-43A2-6591-962A-F6975B0D1B02\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 439 \".uvst[0].uvsp\";\n\tsetAttr \".uvst[0].uvsp[0:249]\" -type \"float2\" 0 0.050000001 0.050000001 0.050000001\n\t\t 0.1 0.050000001 0.15000001 0.050000001 0.2 0.050000001 0.25 0.050000001 0.30000001\n\t\t 0.050000001 0.35000002 0.050000001 0.40000004 0.050000001 0.45000005 0.050000001\n\t\t 0.50000006 0.050000001 0.55000007 0.050000001 0.60000008 0.050000001 0.6500001 0.050000001\n\t\t 0.70000011 0.050000001 0.75000012 0.050000001 0.80000013 0.050000001 0.85000014 0.050000001\n\t\t 0.90000015 0.050000001 0.95000017 0.050000001 1.000000119209 0.050000001 0 0.1 0.050000001\n\t\t 0.1 0.1 0.1 0.15000001 0.1 0.2 0.1 0.25 0.1 0.30000001 0.1 0.35000002 0.1 0.40000004\n\t\t 0.1 0.45000005 0.1 0.50000006 0.1 0.55000007 0.1 0.60000008 0.1 0.6500001 0.1 0.70000011\n\t\t 0.1 0.75000012 0.1 0.80000013 0.1 0.85000014 0.1 0.90000015 0.1 0.95000017 0.1 1.000000119209\n\t\t 0.1 0 0.15000001 0.050000001 0.15000001 0.1 0.15000001 0.15000001 0.15000001 0.2\n\t\t 0.15000001 0.25 0.15000001 0.30000001 0.15000001 0.35000002 0.15000001 0.40000004\n\t\t 0.15000001 0.45000005 0.15000001 0.50000006 0.15000001 0.55000007 0.15000001 0.60000008\n\t\t 0.15000001 0.6500001 0.15000001 0.70000011 0.15000001 0.75000012 0.15000001 0.80000013\n\t\t 0.15000001 0.85000014 0.15000001 0.90000015 0.15000001 0.95000017 0.15000001 1.000000119209\n\t\t 0.15000001 0 0.2 0.050000001 0.2 0.1 0.2 0.15000001 0.2 0.2 0.2 0.25 0.2 0.30000001\n\t\t 0.2 0.35000002 0.2 0.40000004 0.2 0.45000005 0.2 0.50000006 0.2 0.55000007 0.2 0.60000008\n\t\t 0.2 0.6500001 0.2 0.70000011 0.2 0.75000012 0.2 0.80000013 0.2 0.85000014 0.2 0.90000015\n\t\t 0.2 0.95000017 0.2 1.000000119209 0.2 0 0.25 0.050000001 0.25 0.1 0.25 0.15000001\n\t\t 0.25 0.2 0.25 0.25 0.25 0.30000001 0.25 0.35000002 0.25 0.40000004 0.25 0.45000005\n\t\t 0.25 0.50000006 0.25 0.55000007 0.25 0.60000008 0.25 0.6500001 0.25 0.70000011 0.25\n\t\t 0.75000012 0.25 0.80000013 0.25 0.85000014 0.25 0.90000015 0.25 0.95000017 0.25 1.000000119209\n\t\t 0.25 0 0.30000001 0.050000001 0.30000001 0.1 0.30000001 0.15000001 0.30000001 0.2\n\t\t 0.30000001 0.25 0.30000001 0.30000001 0.30000001 0.35000002 0.30000001 0.40000004\n\t\t 0.30000001 0.45000005 0.30000001 0.50000006 0.30000001 0.55000007 0.30000001 0.60000008\n\t\t 0.30000001 0.6500001 0.30000001 0.70000011 0.30000001 0.75000012 0.30000001 0.80000013\n\t\t 0.30000001 0.85000014 0.30000001 0.90000015 0.30000001 0.95000017 0.30000001 1.000000119209\n\t\t 0.30000001 0 0.35000002 0.050000001 0.35000002 0.1 0.35000002 0.15000001 0.35000002\n\t\t 0.2 0.35000002 0.25 0.35000002 0.30000001 0.35000002 0.35000002 0.35000002 0.40000004\n\t\t 0.35000002 0.45000005 0.35000002 0.50000006 0.35000002 0.55000007 0.35000002 0.60000008\n\t\t 0.35000002 0.6500001 0.35000002 0.70000011 0.35000002 0.75000012 0.35000002 0.80000013\n\t\t 0.35000002 0.85000014 0.35000002 0.90000015 0.35000002 0.95000017 0.35000002 1.000000119209\n\t\t 0.35000002 0 0.40000004 0.050000001 0.40000004 0.1 0.40000004 0.15000001 0.40000004\n\t\t 0.2 0.40000004 0.25 0.40000004 0.30000001 0.40000004 0.35000002 0.40000004 0.40000004\n\t\t 0.40000004 0.45000005 0.40000004 0.50000006 0.40000004 0.55000007 0.40000004 0.60000008\n\t\t 0.40000004 0.6500001 0.40000004 0.70000011 0.40000004 0.75000012 0.40000004 0.80000013\n\t\t 0.40000004 0.85000014 0.40000004 0.90000015 0.40000004 0.95000017 0.40000004 1.000000119209\n\t\t 0.40000004 0 0.45000005 0.050000001 0.45000005 0.1 0.45000005 0.15000001 0.45000005\n\t\t 0.2 0.45000005 0.25 0.45000005 0.30000001 0.45000005 0.35000002 0.45000005 0.40000004\n\t\t 0.45000005 0.45000005 0.45000005 0.50000006 0.45000005 0.55000007 0.45000005 0.60000008\n\t\t 0.45000005 0.6500001 0.45000005 0.70000011 0.45000005 0.75000012 0.45000005 0.80000013\n\t\t 0.45000005 0.85000014 0.45000005 0.90000015 0.45000005 0.95000017 0.45000005 1.000000119209\n\t\t 0.45000005 0 0.50000006 0.050000001 0.50000006 0.1 0.50000006 0.15000001 0.50000006\n\t\t 0.2 0.50000006 0.25 0.50000006 0.30000001 0.50000006 0.35000002 0.50000006 0.40000004\n\t\t 0.50000006 0.45000005 0.50000006 0.50000006 0.50000006 0.55000007 0.50000006 0.60000008\n\t\t 0.50000006 0.6500001 0.50000006 0.70000011 0.50000006 0.75000012 0.50000006 0.80000013\n\t\t 0.50000006 0.85000014 0.50000006 0.90000015 0.50000006 0.95000017 0.50000006 1.000000119209\n\t\t 0.50000006 0 0.55000007 0.050000001 0.55000007 0.1 0.55000007 0.15000001 0.55000007\n\t\t 0.2 0.55000007 0.25 0.55000007 0.30000001 0.55000007 0.35000002 0.55000007 0.40000004\n\t\t 0.55000007 0.45000005 0.55000007 0.50000006 0.55000007 0.55000007 0.55000007 0.60000008\n\t\t 0.55000007 0.6500001 0.55000007 0.70000011 0.55000007 0.75000012 0.55000007 0.80000013\n\t\t 0.55000007 0.85000014 0.55000007 0.90000015 0.55000007 0.95000017 0.55000007 1.000000119209\n\t\t 0.55000007 0 0.60000008 0.050000001 0.60000008 0.1 0.60000008 0.15000001 0.60000008\n\t\t 0.2 0.60000008 0.25 0.60000008 0.30000001 0.60000008 0.35000002 0.60000008 0.40000004\n\t\t 0.60000008 0.45000005 0.60000008 0.50000006 0.60000008 0.55000007 0.60000008 0.60000008\n\t\t 0.60000008 0.6500001 0.60000008 0.70000011 0.60000008 0.75000012 0.60000008 0.80000013\n\t\t 0.60000008 0.85000014 0.60000008 0.90000015 0.60000008;\n\tsetAttr \".uvst[0].uvsp[250:438]\" 0.95000017 0.60000008 1.000000119209 0.60000008\n\t\t 0 0.6500001 0.050000001 0.6500001 0.1 0.6500001 0.15000001 0.6500001 0.2 0.6500001\n\t\t 0.25 0.6500001 0.30000001 0.6500001 0.35000002 0.6500001 0.40000004 0.6500001 0.45000005\n\t\t 0.6500001 0.50000006 0.6500001 0.55000007 0.6500001 0.60000008 0.6500001 0.6500001\n\t\t 0.6500001 0.70000011 0.6500001 0.75000012 0.6500001 0.80000013 0.6500001 0.85000014\n\t\t 0.6500001 0.90000015 0.6500001 0.95000017 0.6500001 1.000000119209 0.6500001 0 0.70000011\n\t\t 0.050000001 0.70000011 0.1 0.70000011 0.15000001 0.70000011 0.2 0.70000011 0.25 0.70000011\n\t\t 0.30000001 0.70000011 0.35000002 0.70000011 0.40000004 0.70000011 0.45000005 0.70000011\n\t\t 0.50000006 0.70000011 0.55000007 0.70000011 0.60000008 0.70000011 0.6500001 0.70000011\n\t\t 0.70000011 0.70000011 0.75000012 0.70000011 0.80000013 0.70000011 0.85000014 0.70000011\n\t\t 0.90000015 0.70000011 0.95000017 0.70000011 1.000000119209 0.70000011 0 0.75000012\n\t\t 0.050000001 0.75000012 0.1 0.75000012 0.15000001 0.75000012 0.2 0.75000012 0.25 0.75000012\n\t\t 0.30000001 0.75000012 0.35000002 0.75000012 0.40000004 0.75000012 0.45000005 0.75000012\n\t\t 0.50000006 0.75000012 0.55000007 0.75000012 0.60000008 0.75000012 0.6500001 0.75000012\n\t\t 0.70000011 0.75000012 0.75000012 0.75000012 0.80000013 0.75000012 0.85000014 0.75000012\n\t\t 0.90000015 0.75000012 0.95000017 0.75000012 1.000000119209 0.75000012 0 0.80000013\n\t\t 0.050000001 0.80000013 0.1 0.80000013 0.15000001 0.80000013 0.2 0.80000013 0.25 0.80000013\n\t\t 0.30000001 0.80000013 0.35000002 0.80000013 0.40000004 0.80000013 0.45000005 0.80000013\n\t\t 0.50000006 0.80000013 0.55000007 0.80000013 0.60000008 0.80000013 0.6500001 0.80000013\n\t\t 0.70000011 0.80000013 0.75000012 0.80000013 0.80000013 0.80000013 0.85000014 0.80000013\n\t\t 0.90000015 0.80000013 0.95000017 0.80000013 1.000000119209 0.80000013 0 0.85000014\n\t\t 0.050000001 0.85000014 0.1 0.85000014 0.15000001 0.85000014 0.2 0.85000014 0.25 0.85000014\n\t\t 0.30000001 0.85000014 0.35000002 0.85000014 0.40000004 0.85000014 0.45000005 0.85000014\n\t\t 0.50000006 0.85000014 0.55000007 0.85000014 0.60000008 0.85000014 0.6500001 0.85000014\n\t\t 0.70000011 0.85000014 0.75000012 0.85000014 0.80000013 0.85000014 0.85000014 0.85000014\n\t\t 0.90000015 0.85000014 0.95000017 0.85000014 1.000000119209 0.85000014 0 0.90000015\n\t\t 0.050000001 0.90000015 0.1 0.90000015 0.15000001 0.90000015 0.2 0.90000015 0.25 0.90000015\n\t\t 0.30000001 0.90000015 0.35000002 0.90000015 0.40000004 0.90000015 0.45000005 0.90000015\n\t\t 0.50000006 0.90000015 0.55000007 0.90000015 0.60000008 0.90000015 0.6500001 0.90000015\n\t\t 0.70000011 0.90000015 0.75000012 0.90000015 0.80000013 0.90000015 0.85000014 0.90000015\n\t\t 0.90000015 0.90000015 0.95000017 0.90000015 1.000000119209 0.90000015 0 0.95000017\n\t\t 0.050000001 0.95000017 0.1 0.95000017 0.15000001 0.95000017 0.2 0.95000017 0.25 0.95000017\n\t\t 0.30000001 0.95000017 0.35000002 0.95000017 0.40000004 0.95000017 0.45000005 0.95000017\n\t\t 0.50000006 0.95000017 0.55000007 0.95000017 0.60000008 0.95000017 0.6500001 0.95000017\n\t\t 0.70000011 0.95000017 0.75000012 0.95000017 0.80000013 0.95000017 0.85000014 0.95000017\n\t\t 0.90000015 0.95000017 0.95000017 0.95000017 1.000000119209 0.95000017 0.025 0 0.075000003\n\t\t 0 0.125 0 0.175 0 0.22500001 0 0.27500001 0 0.32500002 0 0.375 0 0.42500001 0 0.47499999\n\t\t 0 0.52500004 0 0.57499999 0 0.625 0 0.67500001 0 0.72500002 0 0.77500004 0 0.82499999\n\t\t 0 0.875 0 0.92500001 0 0.97500002 0 0.025 1 0.075000003 1 0.125 1 0.175 1 0.22500001\n\t\t 1 0.27500001 1 0.32500002 1 0.375 1 0.42500001 1 0.47499999 1 0.52500004 1 0.57499999\n\t\t 1 0.625 1 0.67500001 1 0.72500002 1 0.77500004 1 0.82499999 1 0.875 1 0.92500001\n\t\t 1 0.97500002 1;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 382 \".vt\";\n\tsetAttr \".vt[0:165]\"  0.14877813 -0.98768836 -0.048340943 0.12655823 -0.98768836 -0.091949932\n\t\t 0.091949932 -0.98768836 -0.12655823 0.048340935 -0.98768836 -0.14877811 0 -0.98768836 -0.15643455\n\t\t -0.048340935 -0.98768836 -0.1487781 -0.091949917 -0.98768836 -0.1265582 -0.12655818 -0.98768836 -0.091949902\n\t\t -0.14877807 -0.98768836 -0.048340924 -0.15643452 -0.98768836 0 -0.14877807 -0.98768836 0.048340924\n\t\t -0.12655818 -0.98768836 0.091949895 -0.091949895 -0.98768836 0.12655817 -0.048340924 -0.98768836 0.14877805\n\t\t -4.6621107e-09 -0.98768836 0.15643449 0.048340909 -0.98768836 0.14877804 0.09194988 -0.98768836 0.12655815\n\t\t 0.12655815 -0.98768836 0.091949888 0.14877804 -0.98768836 0.048340913 0.15643448 -0.98768836 0\n\t\t 0.29389283 -0.95105654 -0.095491566 0.25000018 -0.95105654 -0.18163574 0.18163574 -0.95105654 -0.25000015\n\t\t 0.095491551 -0.95105654 -0.2938928 0 -0.95105654 -0.30901715 -0.095491551 -0.95105654 -0.29389277\n\t\t -0.18163571 -0.95105654 -0.25000009 -0.25000009 -0.95105654 -0.18163569 -0.29389271 -0.95105654 -0.095491529\n\t\t -0.30901706 -0.95105654 0 -0.29389271 -0.95105654 0.095491529 -0.25000006 -0.95105654 0.18163568\n\t\t -0.18163568 -0.95105654 0.25000006 -0.095491529 -0.95105654 0.29389268 -9.2094243e-09 -0.95105654 0.30901703\n\t\t 0.095491499 -0.95105654 0.29389265 0.18163563 -0.95105654 0.25000003 0.25 -0.95105654 0.18163565\n\t\t 0.29389265 -0.95105654 0.095491506 0.309017 -0.95105654 0 0.43177092 -0.89100653 -0.14029087\n\t\t 0.36728629 -0.89100653 -0.2668491 0.2668491 -0.89100653 -0.36728626 0.14029086 -0.89100653 -0.43177086\n\t\t 0 -0.89100653 -0.45399073 -0.14029086 -0.89100653 -0.43177083 -0.26684904 -0.89100653 -0.36728618\n\t\t -0.36728615 -0.89100653 -0.26684901 -0.43177077 -0.89100653 -0.14029081 -0.45399064 -0.89100653 0\n\t\t -0.43177077 -0.89100653 0.14029081 -0.36728612 -0.89100653 0.26684898 -0.26684898 -0.89100653 0.36728612\n\t\t -0.14029081 -0.89100653 0.43177071 -1.3529972e-08 -0.89100653 0.45399058 0.14029078 -0.89100653 0.43177068\n\t\t 0.26684892 -0.89100653 0.36728609 0.36728606 -0.89100653 0.26684895 0.43177065 -0.89100653 0.1402908\n\t\t 0.45399052 -0.89100653 0 0.55901736 -0.809017 -0.18163574 0.47552857 -0.809017 -0.34549171\n\t\t 0.34549171 -0.809017 -0.47552854 0.18163572 -0.809017 -0.5590173 0 -0.809017 -0.58778554\n\t\t -0.18163572 -0.809017 -0.55901724 -0.34549165 -0.809017 -0.47552842 -0.47552839 -0.809017 -0.34549159\n\t\t -0.55901712 -0.809017 -0.18163566 -0.58778536 -0.809017 0 -0.55901712 -0.809017 0.18163566\n\t\t -0.47552836 -0.809017 0.34549156 -0.34549156 -0.809017 0.47552833 -0.18163566 -0.809017 0.55901706\n\t\t -1.7517365e-08 -0.809017 0.5877853 0.18163562 -0.809017 0.55901706 0.3454915 -0.809017 0.4755283\n\t\t 0.47552827 -0.809017 0.34549153 0.559017 -0.809017 0.18163563 0.58778524 -0.809017 0\n\t\t 0.67249894 -0.70710677 -0.21850814 0.57206178 -0.70710677 -0.41562718 0.41562718 -0.70710677 -0.57206172\n\t\t 0.21850812 -0.70710677 -0.67249888 0 -0.70710677 -0.70710713 -0.21850812 -0.70710677 -0.67249882\n\t\t -0.41562709 -0.70710677 -0.5720616 -0.57206154 -0.70710677 -0.41562706 -0.6724987 -0.70710677 -0.21850805\n\t\t -0.70710695 -0.70710677 0 -0.6724987 -0.70710677 0.21850805 -0.57206154 -0.70710677 0.415627\n\t\t -0.415627 -0.70710677 0.57206148 -0.21850805 -0.70710677 0.67249858 -2.1073424e-08 -0.70710677 0.70710683\n\t\t 0.21850799 -0.70710677 0.67249858 0.41562691 -0.70710677 0.57206142 0.57206142 -0.70710677 0.41562697\n\t\t 0.67249852 -0.70710677 0.21850802 0.70710677 -0.70710677 0 0.7694214 -0.58778524 -0.25000015\n\t\t 0.65450895 -0.58778524 -0.47552854 0.47552854 -0.58778524 -0.65450889 0.25000012 -0.58778524 -0.76942128\n\t\t 0 -0.58778524 -0.80901736 -0.25000012 -0.58778524 -0.76942122 -0.47552845 -0.58778524 -0.65450877\n\t\t -0.65450871 -0.58778524 -0.47552839 -0.7694211 -0.58778524 -0.25000006 -0.80901718 -0.58778524 0\n\t\t -0.7694211 -0.58778524 0.25000006 -0.65450865 -0.58778524 0.47552836 -0.47552836 -0.58778524 0.65450859\n\t\t -0.25000006 -0.58778524 0.76942098 -2.4110586e-08 -0.58778524 0.80901712 0.24999999 -0.58778524 0.76942098\n\t\t 0.47552827 -0.58778524 0.65450853 0.65450853 -0.58778524 0.4755283 0.76942092 -0.58778524 0.25\n\t\t 0.809017 -0.58778524 0 0.8473981 -0.45399052 -0.27533633 0.72083992 -0.45399052 -0.5237208\n\t\t 0.5237208 -0.45399052 -0.72083986 0.2753363 -0.45399052 -0.84739798 0 -0.45399052 -0.89100695\n\t\t -0.2753363 -0.45399052 -0.84739798 -0.52372068 -0.45399052 -0.72083968 -0.72083962 -0.45399052 -0.52372062\n\t\t -0.8473978 -0.45399052 -0.27533621 -0.89100677 -0.45399052 0 -0.8473978 -0.45399052 0.27533621\n\t\t -0.72083962 -0.45399052 0.52372062 -0.52372062 -0.45399052 0.72083956 -0.27533621 -0.45399052 0.84739769\n\t\t -2.6554064e-08 -0.45399052 0.89100665 0.27533615 -0.45399052 0.84739763 0.5237205 -0.45399052 0.7208395\n\t\t 0.72083944 -0.45399052 0.52372056 0.84739757 -0.45399052 0.27533618 0.89100653 -0.45399052 0\n\t\t 0.90450913 -0.30901697 -0.2938928 0.7694214 -0.30901697 -0.55901736 0.55901736 -0.30901697 -0.76942134\n\t\t 0.29389277 -0.30901697 -0.90450901 0 -0.30901697 -0.95105702 -0.29389277 -0.30901697 -0.90450895\n\t\t -0.55901724 -0.30901697 -0.76942122 -0.76942116 -0.30901697 -0.55901718 -0.90450877 -0.30901697 -0.29389271\n\t\t -0.95105678 -0.30901697 0 -0.90450877 -0.30901697 0.29389271 -0.7694211 -0.30901697 0.55901712\n\t\t -0.55901712 -0.30901697 0.76942104 -0.29389271 -0.30901697 0.90450865 -2.8343694e-08 -0.30901697 0.95105666\n\t\t 0.29389262 -0.30901697 0.90450859 0.559017 -0.30901697 0.76942098 0.76942092 -0.30901697 0.55901706\n\t\t 0.90450853 -0.30901697 0.29389265 0.95105654 -0.30901697 0 0.93934804 -0.15643437 -0.30521268\n\t\t 0.79905719 -0.15643437 -0.580549 0.580549 -0.15643437 -0.79905713 0.30521265 -0.15643437 -0.93934792\n\t\t 0 -0.15643437 -0.98768884 -0.30521265 -0.15643437 -0.93934786;\n\tsetAttr \".vt[166:331]\" -0.58054888 -0.15643437 -0.79905695 -0.79905689 -0.15643437 -0.58054882\n\t\t -0.93934768 -0.15643437 -0.30521256 -0.9876886 -0.15643437 0 -0.93934768 -0.15643437 0.30521256\n\t\t -0.79905683 -0.15643437 0.58054876 -0.58054876 -0.15643437 0.79905677 -0.30521256 -0.15643437 0.93934757\n\t\t -2.9435407e-08 -0.15643437 0.98768848 0.30521247 -0.15643437 0.93934757 0.58054864 -0.15643437 0.79905671\n\t\t 0.79905665 -0.15643437 0.5805487 0.93934751 -0.15643437 0.3052125 0.98768836 -0.15643437 0\n\t\t 0.95105714 0 -0.30901718 0.80901754 0 -0.5877856 0.5877856 0 -0.80901748 0.30901715 0 -0.95105702\n\t\t 0 0 -1.000000476837 -0.30901715 0 -0.95105696 -0.58778548 0 -0.8090173 -0.80901724 0 -0.58778542\n\t\t -0.95105678 0 -0.30901706 -1.000000238419 0 0 -0.95105678 0 0.30901706 -0.80901718 0 0.58778536\n\t\t -0.58778536 0 0.80901712 -0.30901706 0 0.95105666 -2.9802322e-08 0 1.000000119209\n\t\t 0.30901697 0 0.9510566 0.58778524 0 0.80901706 0.809017 0 0.5877853 0.95105654 0 0.309017\n\t\t 1 0 0 0.93934804 0.15643437 -0.30521268 0.79905719 0.15643437 -0.580549 0.580549 0.15643437 -0.79905713\n\t\t 0.30521265 0.15643437 -0.93934792 0 0.15643437 -0.98768884 -0.30521265 0.15643437 -0.93934786\n\t\t -0.58054888 0.15643437 -0.79905695 -0.79905689 0.15643437 -0.58054882 -0.93934768 0.15643437 -0.30521256\n\t\t -0.9876886 0.15643437 0 -0.93934768 0.15643437 0.30521256 -0.79905683 0.15643437 0.58054876\n\t\t -0.58054876 0.15643437 0.79905677 -0.30521256 0.15643437 0.93934757 -2.9435407e-08 0.15643437 0.98768848\n\t\t 0.30521247 0.15643437 0.93934757 0.58054864 0.15643437 0.79905671 0.79905665 0.15643437 0.5805487\n\t\t 0.93934751 0.15643437 0.3052125 0.98768836 0.15643437 0 0.90450913 0.30901697 -0.2938928\n\t\t 0.7694214 0.30901697 -0.55901736 0.55901736 0.30901697 -0.76942134 0.29389277 0.30901697 -0.90450901\n\t\t 0 0.30901697 -0.95105702 -0.29389277 0.30901697 -0.90450895 -0.55901724 0.30901697 -0.76942122\n\t\t -0.76942116 0.30901697 -0.55901718 -0.90450877 0.30901697 -0.29389271 -0.95105678 0.30901697 0\n\t\t -0.90450877 0.30901697 0.29389271 -0.7694211 0.30901697 0.55901712 -0.55901712 0.30901697 0.76942104\n\t\t -0.29389271 0.30901697 0.90450865 -2.8343694e-08 0.30901697 0.95105666 0.29389262 0.30901697 0.90450859\n\t\t 0.559017 0.30901697 0.76942098 0.76942092 0.30901697 0.55901706 0.90450853 0.30901697 0.29389265\n\t\t 0.95105654 0.30901697 0 0.8473981 0.45399052 -0.27533633 0.72083992 0.45399052 -0.5237208\n\t\t 0.5237208 0.45399052 -0.72083986 0.2753363 0.45399052 -0.84739798 0 0.45399052 -0.89100695\n\t\t -0.2753363 0.45399052 -0.84739798 -0.52372068 0.45399052 -0.72083968 -0.72083962 0.45399052 -0.52372062\n\t\t -0.8473978 0.45399052 -0.27533621 -0.89100677 0.45399052 0 -0.8473978 0.45399052 0.27533621\n\t\t -0.72083962 0.45399052 0.52372062 -0.52372062 0.45399052 0.72083956 -0.27533621 0.45399052 0.84739769\n\t\t -2.6554064e-08 0.45399052 0.89100665 0.27533615 0.45399052 0.84739763 0.5237205 0.45399052 0.7208395\n\t\t 0.72083944 0.45399052 0.52372056 0.84739757 0.45399052 0.27533618 0.89100653 0.45399052 0\n\t\t 0.7694214 0.58778524 -0.25000015 0.65450895 0.58778524 -0.47552854 0.47552854 0.58778524 -0.65450889\n\t\t 0.25000012 0.58778524 -0.76942128 0 0.58778524 -0.80901736 -0.25000012 0.58778524 -0.76942122\n\t\t -0.47552845 0.58778524 -0.65450877 -0.65450871 0.58778524 -0.47552839 -0.7694211 0.58778524 -0.25000006\n\t\t -0.80901718 0.58778524 0 -0.7694211 0.58778524 0.25000006 -0.65450865 0.58778524 0.47552836\n\t\t -0.47552836 0.58778524 0.65450859 -0.25000006 0.58778524 0.76942098 -2.4110586e-08 0.58778524 0.80901712\n\t\t 0.24999999 0.58778524 0.76942098 0.47552827 0.58778524 0.65450853 0.65450853 0.58778524 0.4755283\n\t\t 0.76942092 0.58778524 0.25 0.809017 0.58778524 0 0.67249894 0.70710677 -0.21850814\n\t\t 0.57206178 0.70710677 -0.41562718 0.41562718 0.70710677 -0.57206172 0.21850812 0.70710677 -0.67249888\n\t\t 0 0.70710677 -0.70710713 -0.21850812 0.70710677 -0.67249882 -0.41562709 0.70710677 -0.5720616\n\t\t -0.57206154 0.70710677 -0.41562706 -0.6724987 0.70710677 -0.21850805 -0.70710695 0.70710677 0\n\t\t -0.6724987 0.70710677 0.21850805 -0.57206154 0.70710677 0.415627 -0.415627 0.70710677 0.57206148\n\t\t -0.21850805 0.70710677 0.67249858 -2.1073424e-08 0.70710677 0.70710683 0.21850799 0.70710677 0.67249858\n\t\t 0.41562691 0.70710677 0.57206142 0.57206142 0.70710677 0.41562697 0.67249852 0.70710677 0.21850802\n\t\t 0.70710677 0.70710677 0 0.55901736 0.809017 -0.18163574 0.47552857 0.809017 -0.34549171\n\t\t 0.34549171 0.809017 -0.47552854 0.18163572 0.809017 -0.5590173 0 0.809017 -0.58778554\n\t\t -0.18163572 0.809017 -0.55901724 -0.34549165 0.809017 -0.47552842 -0.47552839 0.809017 -0.34549159\n\t\t -0.55901712 0.809017 -0.18163566 -0.58778536 0.809017 0 -0.55901712 0.809017 0.18163566\n\t\t -0.47552836 0.809017 0.34549156 -0.34549156 0.809017 0.47552833 -0.18163566 0.809017 0.55901706\n\t\t -1.7517365e-08 0.809017 0.5877853 0.18163562 0.809017 0.55901706 0.3454915 0.809017 0.4755283\n\t\t 0.47552827 0.809017 0.34549153 0.559017 0.809017 0.18163563 0.58778524 0.809017 0\n\t\t 0.43177092 0.89100653 -0.14029087 0.36728629 0.89100653 -0.2668491 0.2668491 0.89100653 -0.36728626\n\t\t 0.14029086 0.89100653 -0.43177086 0 0.89100653 -0.45399073 -0.14029086 0.89100653 -0.43177083\n\t\t -0.26684904 0.89100653 -0.36728618 -0.36728615 0.89100653 -0.26684901 -0.43177077 0.89100653 -0.14029081\n\t\t -0.45399064 0.89100653 0 -0.43177077 0.89100653 0.14029081 -0.36728612 0.89100653 0.26684898;\n\tsetAttr \".vt[332:381]\" -0.26684898 0.89100653 0.36728612 -0.14029081 0.89100653 0.43177071\n\t\t -1.3529972e-08 0.89100653 0.45399058 0.14029078 0.89100653 0.43177068 0.26684892 0.89100653 0.36728609\n\t\t 0.36728606 0.89100653 0.26684895 0.43177065 0.89100653 0.1402908 0.45399052 0.89100653 0\n\t\t 0.29389283 0.95105654 -0.095491566 0.25000018 0.95105654 -0.18163574 0.18163574 0.95105654 -0.25000015\n\t\t 0.095491551 0.95105654 -0.2938928 0 0.95105654 -0.30901715 -0.095491551 0.95105654 -0.29389277\n\t\t -0.18163571 0.95105654 -0.25000009 -0.25000009 0.95105654 -0.18163569 -0.29389271 0.95105654 -0.095491529\n\t\t -0.30901706 0.95105654 0 -0.29389271 0.95105654 0.095491529 -0.25000006 0.95105654 0.18163568\n\t\t -0.18163568 0.95105654 0.25000006 -0.095491529 0.95105654 0.29389268 -9.2094243e-09 0.95105654 0.30901703\n\t\t 0.095491499 0.95105654 0.29389265 0.18163563 0.95105654 0.25000003 0.25 0.95105654 0.18163565\n\t\t 0.29389265 0.95105654 0.095491506 0.309017 0.95105654 0 0.14877813 0.98768836 -0.048340943\n\t\t 0.12655823 0.98768836 -0.091949932 0.091949932 0.98768836 -0.12655823 0.048340935 0.98768836 -0.14877811\n\t\t 0 0.98768836 -0.15643455 -0.048340935 0.98768836 -0.1487781 -0.091949917 0.98768836 -0.1265582\n\t\t -0.12655818 0.98768836 -0.091949902 -0.14877807 0.98768836 -0.048340924 -0.15643452 0.98768836 0\n\t\t -0.14877807 0.98768836 0.048340924 -0.12655818 0.98768836 0.091949895 -0.091949895 0.98768836 0.12655817\n\t\t -0.048340924 0.98768836 0.14877805 -4.6621107e-09 0.98768836 0.15643449 0.048340909 0.98768836 0.14877804\n\t\t 0.09194988 0.98768836 0.12655815 0.12655815 0.98768836 0.091949888 0.14877804 0.98768836 0.048340913\n\t\t 0.15643448 0.98768836 0 0 -1 0 0 1 0;\n\tsetAttr -s 780 \".ed\";\n\tsetAttr \".ed[0:165]\"  0 1 1 1 2 1 2 3 1 3 4 1 4 5 1 5 6 1 6 7 1 7 8 1 8 9 1\n\t\t 9 10 1 10 11 1 11 12 1 12 13 1 13 14 1 14 15 1 15 16 1 16 17 1 17 18 1 18 19 1 19 0 1\n\t\t 20 21 1 21 22 1 22 23 1 23 24 1 24 25 1 25 26 1 26 27 1 27 28 1 28 29 1 29 30 1 30 31 1\n\t\t 31 32 1 32 33 1 33 34 1 34 35 1 35 36 1 36 37 1 37 38 1 38 39 1 39 20 1 40 41 1 41 42 1\n\t\t 42 43 1 43 44 1 44 45 1 45 46 1 46 47 1 47 48 1 48 49 1 49 50 1 50 51 1 51 52 1 52 53 1\n\t\t 53 54 1 54 55 1 55 56 1 56 57 1 57 58 1 58 59 1 59 40 1 60 61 1 61 62 1 62 63 1 63 64 1\n\t\t 64 65 1 65 66 1 66 67 1 67 68 1 68 69 1 69 70 1 70 71 1 71 72 1 72 73 1 73 74 1 74 75 1\n\t\t 75 76 1 76 77 1 77 78 1 78 79 1 79 60 1 80 81 1 81 82 1 82 83 1 83 84 1 84 85 1 85 86 1\n\t\t 86 87 1 87 88 1 88 89 1 89 90 1 90 91 1 91 92 1 92 93 1 93 94 1 94 95 1 95 96 1 96 97 1\n\t\t 97 98 1 98 99 1 99 80 1 100 101 1 101 102 1 102 103 1 103 104 1 104 105 1 105 106 1\n\t\t 106 107 1 107 108 1 108 109 1 109 110 1 110 111 1 111 112 1 112 113 1 113 114 1 114 115 1\n\t\t 115 116 1 116 117 1 117 118 1 118 119 1 119 100 1 120 121 1 121 122 1 122 123 1 123 124 1\n\t\t 124 125 1 125 126 1 126 127 1 127 128 1 128 129 1 129 130 1 130 131 1 131 132 1 132 133 1\n\t\t 133 134 1 134 135 1 135 136 1 136 137 1 137 138 1 138 139 1 139 120 1 140 141 1 141 142 1\n\t\t 142 143 1 143 144 1 144 145 1 145 146 1 146 147 1 147 148 1 148 149 1 149 150 1 150 151 1\n\t\t 151 152 1 152 153 1 153 154 1 154 155 1 155 156 1 156 157 1 157 158 1 158 159 1 159 140 1\n\t\t 160 161 1 161 162 1 162 163 1 163 164 1 164 165 1 165 166 1;\n\tsetAttr \".ed[166:331]\" 166 167 1 167 168 1 168 169 1 169 170 1 170 171 1 171 172 1\n\t\t 172 173 1 173 174 1 174 175 1 175 176 1 176 177 1 177 178 1 178 179 1 179 160 1 180 181 1\n\t\t 181 182 1 182 183 1 183 184 1 184 185 1 185 186 1 186 187 1 187 188 1 188 189 1 189 190 1\n\t\t 190 191 1 191 192 1 192 193 1 193 194 1 194 195 1 195 196 1 196 197 1 197 198 1 198 199 1\n\t\t 199 180 1 200 201 1 201 202 1 202 203 1 203 204 1 204 205 1 205 206 1 206 207 1 207 208 1\n\t\t 208 209 1 209 210 1 210 211 1 211 212 1 212 213 1 213 214 1 214 215 1 215 216 1 216 217 1\n\t\t 217 218 1 218 219 1 219 200 1 220 221 1 221 222 1 222 223 1 223 224 1 224 225 1 225 226 1\n\t\t 226 227 1 227 228 1 228 229 1 229 230 1 230 231 1 231 232 1 232 233 1 233 234 1 234 235 1\n\t\t 235 236 1 236 237 1 237 238 1 238 239 1 239 220 1 240 241 1 241 242 1 242 243 1 243 244 1\n\t\t 244 245 1 245 246 1 246 247 1 247 248 1 248 249 1 249 250 1 250 251 1 251 252 1 252 253 1\n\t\t 253 254 1 254 255 1 255 256 1 256 257 1 257 258 1 258 259 1 259 240 1 260 261 1 261 262 1\n\t\t 262 263 1 263 264 1 264 265 1 265 266 1 266 267 1 267 268 1 268 269 1 269 270 1 270 271 1\n\t\t 271 272 1 272 273 1 273 274 1 274 275 1 275 276 1 276 277 1 277 278 1 278 279 1 279 260 1\n\t\t 280 281 1 281 282 1 282 283 1 283 284 1 284 285 1 285 286 1 286 287 1 287 288 1 288 289 1\n\t\t 289 290 1 290 291 1 291 292 1 292 293 1 293 294 1 294 295 1 295 296 1 296 297 1 297 298 1\n\t\t 298 299 1 299 280 1 300 301 1 301 302 1 302 303 1 303 304 1 304 305 1 305 306 1 306 307 1\n\t\t 307 308 1 308 309 1 309 310 1 310 311 1 311 312 1 312 313 1 313 314 1 314 315 1 315 316 1\n\t\t 316 317 1 317 318 1 318 319 1 319 300 1 320 321 1 321 322 1 322 323 1 323 324 1 324 325 1\n\t\t 325 326 1 326 327 1 327 328 1 328 329 1 329 330 1 330 331 1 331 332 1;\n\tsetAttr \".ed[332:497]\" 332 333 1 333 334 1 334 335 1 335 336 1 336 337 1 337 338 1\n\t\t 338 339 1 339 320 1 340 341 1 341 342 1 342 343 1 343 344 1 344 345 1 345 346 1 346 347 1\n\t\t 347 348 1 348 349 1 349 350 1 350 351 1 351 352 1 352 353 1 353 354 1 354 355 1 355 356 1\n\t\t 356 357 1 357 358 1 358 359 1 359 340 1 360 361 1 361 362 1 362 363 1 363 364 1 364 365 1\n\t\t 365 366 1 366 367 1 367 368 1 368 369 1 369 370 1 370 371 1 371 372 1 372 373 1 373 374 1\n\t\t 374 375 1 375 376 1 376 377 1 377 378 1 378 379 1 379 360 1 0 20 1 1 21 1 2 22 1\n\t\t 3 23 1 4 24 1 5 25 1 6 26 1 7 27 1 8 28 1 9 29 1 10 30 1 11 31 1 12 32 1 13 33 1\n\t\t 14 34 1 15 35 1 16 36 1 17 37 1 18 38 1 19 39 1 20 40 1 21 41 1 22 42 1 23 43 1 24 44 1\n\t\t 25 45 1 26 46 1 27 47 1 28 48 1 29 49 1 30 50 1 31 51 1 32 52 1 33 53 1 34 54 1 35 55 1\n\t\t 36 56 1 37 57 1 38 58 1 39 59 1 40 60 1 41 61 1 42 62 1 43 63 1 44 64 1 45 65 1 46 66 1\n\t\t 47 67 1 48 68 1 49 69 1 50 70 1 51 71 1 52 72 1 53 73 1 54 74 1 55 75 1 56 76 1 57 77 1\n\t\t 58 78 1 59 79 1 60 80 1 61 81 1 62 82 1 63 83 1 64 84 1 65 85 1 66 86 1 67 87 1 68 88 1\n\t\t 69 89 1 70 90 1 71 91 1 72 92 1 73 93 1 74 94 1 75 95 1 76 96 1 77 97 1 78 98 1 79 99 1\n\t\t 80 100 1 81 101 1 82 102 1 83 103 1 84 104 1 85 105 1 86 106 1 87 107 1 88 108 1\n\t\t 89 109 1 90 110 1 91 111 1 92 112 1 93 113 1 94 114 1 95 115 1 96 116 1 97 117 1\n\t\t 98 118 1 99 119 1 100 120 1 101 121 1 102 122 1 103 123 1 104 124 1 105 125 1 106 126 1\n\t\t 107 127 1 108 128 1 109 129 1 110 130 1 111 131 1 112 132 1 113 133 1 114 134 1 115 135 1\n\t\t 116 136 1 117 137 1;\n\tsetAttr \".ed[498:663]\" 118 138 1 119 139 1 120 140 1 121 141 1 122 142 1 123 143 1\n\t\t 124 144 1 125 145 1 126 146 1 127 147 1 128 148 1 129 149 1 130 150 1 131 151 1 132 152 1\n\t\t 133 153 1 134 154 1 135 155 1 136 156 1 137 157 1 138 158 1 139 159 1 140 160 1 141 161 1\n\t\t 142 162 1 143 163 1 144 164 1 145 165 1 146 166 1 147 167 1 148 168 1 149 169 1 150 170 1\n\t\t 151 171 1 152 172 1 153 173 1 154 174 1 155 175 1 156 176 1 157 177 1 158 178 1 159 179 1\n\t\t 160 180 1 161 181 1 162 182 1 163 183 1 164 184 1 165 185 1 166 186 1 167 187 1 168 188 1\n\t\t 169 189 1 170 190 1 171 191 1 172 192 1 173 193 1 174 194 1 175 195 1 176 196 1 177 197 1\n\t\t 178 198 1 179 199 1 180 200 1 181 201 1 182 202 1 183 203 1 184 204 1 185 205 1 186 206 1\n\t\t 187 207 1 188 208 1 189 209 1 190 210 1 191 211 1 192 212 1 193 213 1 194 214 1 195 215 1\n\t\t 196 216 1 197 217 1 198 218 1 199 219 1 200 220 1 201 221 1 202 222 1 203 223 1 204 224 1\n\t\t 205 225 1 206 226 1 207 227 1 208 228 1 209 229 1 210 230 1 211 231 1 212 232 1 213 233 1\n\t\t 214 234 1 215 235 1 216 236 1 217 237 1 218 238 1 219 239 1 220 240 1 221 241 1 222 242 1\n\t\t 223 243 1 224 244 1 225 245 1 226 246 1 227 247 1 228 248 1 229 249 1 230 250 1 231 251 1\n\t\t 232 252 1 233 253 1 234 254 1 235 255 1 236 256 1 237 257 1 238 258 1 239 259 1 240 260 1\n\t\t 241 261 1 242 262 1 243 263 1 244 264 1 245 265 1 246 266 1 247 267 1 248 268 1 249 269 1\n\t\t 250 270 1 251 271 1 252 272 1 253 273 1 254 274 1 255 275 1 256 276 1 257 277 1 258 278 1\n\t\t 259 279 1 260 280 1 261 281 1 262 282 1 263 283 1 264 284 1 265 285 1 266 286 1 267 287 1\n\t\t 268 288 1 269 289 1 270 290 1 271 291 1 272 292 1 273 293 1 274 294 1 275 295 1 276 296 1\n\t\t 277 297 1 278 298 1 279 299 1 280 300 1 281 301 1 282 302 1 283 303 1;\n\tsetAttr \".ed[664:779]\" 284 304 1 285 305 1 286 306 1 287 307 1 288 308 1 289 309 1\n\t\t 290 310 1 291 311 1 292 312 1 293 313 1 294 314 1 295 315 1 296 316 1 297 317 1 298 318 1\n\t\t 299 319 1 300 320 1 301 321 1 302 322 1 303 323 1 304 324 1 305 325 1 306 326 1 307 327 1\n\t\t 308 328 1 309 329 1 310 330 1 311 331 1 312 332 1 313 333 1 314 334 1 315 335 1 316 336 1\n\t\t 317 337 1 318 338 1 319 339 1 320 340 1 321 341 1 322 342 1 323 343 1 324 344 1 325 345 1\n\t\t 326 346 1 327 347 1 328 348 1 329 349 1 330 350 1 331 351 1 332 352 1 333 353 1 334 354 1\n\t\t 335 355 1 336 356 1 337 357 1 338 358 1 339 359 1 340 360 1 341 361 1 342 362 1 343 363 1\n\t\t 344 364 1 345 365 1 346 366 1 347 367 1 348 368 1 349 369 1 350 370 1 351 371 1 352 372 1\n\t\t 353 373 1 354 374 1 355 375 1 356 376 1 357 377 1 358 378 1 359 379 1 380 0 1 380 1 1\n\t\t 380 2 1 380 3 1 380 4 1 380 5 1 380 6 1 380 7 1 380 8 1 380 9 1 380 10 1 380 11 1\n\t\t 380 12 1 380 13 1 380 14 1 380 15 1 380 16 1 380 17 1 380 18 1 380 19 1 360 381 1\n\t\t 361 381 1 362 381 1 363 381 1 364 381 1 365 381 1 366 381 1 367 381 1 368 381 1 369 381 1\n\t\t 370 381 1 371 381 1 372 381 1 373 381 1 374 381 1 375 381 1 376 381 1 377 381 1 378 381 1\n\t\t 379 381 1;\n\tsetAttr -s 400 -ch 1560 \".fc[0:399]\" -type \"polyFaces\" \n\t\tf 4 0 381 -21 -381\n\t\tmu 0 4 0 1 22 21\n\t\tf 4 1 382 -22 -382\n\t\tmu 0 4 1 2 23 22\n\t\tf 4 2 383 -23 -383\n\t\tmu 0 4 2 3 24 23\n\t\tf 4 3 384 -24 -384\n\t\tmu 0 4 3 4 25 24\n\t\tf 4 4 385 -25 -385\n\t\tmu 0 4 4 5 26 25\n\t\tf 4 5 386 -26 -386\n\t\tmu 0 4 5 6 27 26\n\t\tf 4 6 387 -27 -387\n\t\tmu 0 4 6 7 28 27\n\t\tf 4 7 388 -28 -388\n\t\tmu 0 4 7 8 29 28\n\t\tf 4 8 389 -29 -389\n\t\tmu 0 4 8 9 30 29\n\t\tf 4 9 390 -30 -390\n\t\tmu 0 4 9 10 31 30\n\t\tf 4 10 391 -31 -391\n\t\tmu 0 4 10 11 32 31\n\t\tf 4 11 392 -32 -392\n\t\tmu 0 4 11 12 33 32\n\t\tf 4 12 393 -33 -393\n\t\tmu 0 4 12 13 34 33\n\t\tf 4 13 394 -34 -394\n\t\tmu 0 4 13 14 35 34\n\t\tf 4 14 395 -35 -395\n\t\tmu 0 4 14 15 36 35\n\t\tf 4 15 396 -36 -396\n\t\tmu 0 4 15 16 37 36\n\t\tf 4 16 397 -37 -397\n\t\tmu 0 4 16 17 38 37\n\t\tf 4 17 398 -38 -398\n\t\tmu 0 4 17 18 39 38\n\t\tf 4 18 399 -39 -399\n\t\tmu 0 4 18 19 40 39\n\t\tf 4 19 380 -40 -400\n\t\tmu 0 4 19 20 41 40\n\t\tf 4 20 401 -41 -401\n\t\tmu 0 4 21 22 43 42\n\t\tf 4 21 402 -42 -402\n\t\tmu 0 4 22 23 44 43\n\t\tf 4 22 403 -43 -403\n\t\tmu 0 4 23 24 45 44\n\t\tf 4 23 404 -44 -404\n\t\tmu 0 4 24 25 46 45\n\t\tf 4 24 405 -45 -405\n\t\tmu 0 4 25 26 47 46\n\t\tf 4 25 406 -46 -406\n\t\tmu 0 4 26 27 48 47\n\t\tf 4 26 407 -47 -407\n\t\tmu 0 4 27 28 49 48\n\t\tf 4 27 408 -48 -408\n\t\tmu 0 4 28 29 50 49\n\t\tf 4 28 409 -49 -409\n\t\tmu 0 4 29 30 51 50\n\t\tf 4 29 410 -50 -410\n\t\tmu 0 4 30 31 52 51\n\t\tf 4 30 411 -51 -411\n\t\tmu 0 4 31 32 53 52\n\t\tf 4 31 412 -52 -412\n\t\tmu 0 4 32 33 54 53\n\t\tf 4 32 413 -53 -413\n\t\tmu 0 4 33 34 55 54\n\t\tf 4 33 414 -54 -414\n\t\tmu 0 4 34 35 56 55\n\t\tf 4 34 415 -55 -415\n\t\tmu 0 4 35 36 57 56\n\t\tf 4 35 416 -56 -416\n\t\tmu 0 4 36 37 58 57\n\t\tf 4 36 417 -57 -417\n\t\tmu 0 4 37 38 59 58\n\t\tf 4 37 418 -58 -418\n\t\tmu 0 4 38 39 60 59\n\t\tf 4 38 419 -59 -419\n\t\tmu 0 4 39 40 61 60\n\t\tf 4 39 400 -60 -420\n\t\tmu 0 4 40 41 62 61\n\t\tf 4 40 421 -61 -421\n\t\tmu 0 4 42 43 64 63\n\t\tf 4 41 422 -62 -422\n\t\tmu 0 4 43 44 65 64\n\t\tf 4 42 423 -63 -423\n\t\tmu 0 4 44 45 66 65\n\t\tf 4 43 424 -64 -424\n\t\tmu 0 4 45 46 67 66\n\t\tf 4 44 425 -65 -425\n\t\tmu 0 4 46 47 68 67\n\t\tf 4 45 426 -66 -426\n\t\tmu 0 4 47 48 69 68\n\t\tf 4 46 427 -67 -427\n\t\tmu 0 4 48 49 70 69\n\t\tf 4 47 428 -68 -428\n\t\tmu 0 4 49 50 71 70\n\t\tf 4 48 429 -69 -429\n\t\tmu 0 4 50 51 72 71\n\t\tf 4 49 430 -70 -430\n\t\tmu 0 4 51 52 73 72\n\t\tf 4 50 431 -71 -431\n\t\tmu 0 4 52 53 74 73\n\t\tf 4 51 432 -72 -432\n\t\tmu 0 4 53 54 75 74\n\t\tf 4 52 433 -73 -433\n\t\tmu 0 4 54 55 76 75\n\t\tf 4 53 434 -74 -434\n\t\tmu 0 4 55 56 77 76\n\t\tf 4 54 435 -75 -435\n\t\tmu 0 4 56 57 78 77\n\t\tf 4 55 436 -76 -436\n\t\tmu 0 4 57 58 79 78\n\t\tf 4 56 437 -77 -437\n\t\tmu 0 4 58 59 80 79\n\t\tf 4 57 438 -78 -438\n\t\tmu 0 4 59 60 81 80\n\t\tf 4 58 439 -79 -439\n\t\tmu 0 4 60 61 82 81\n\t\tf 4 59 420 -80 -440\n\t\tmu 0 4 61 62 83 82\n\t\tf 4 60 441 -81 -441\n\t\tmu 0 4 63 64 85 84\n\t\tf 4 61 442 -82 -442\n\t\tmu 0 4 64 65 86 85\n\t\tf 4 62 443 -83 -443\n\t\tmu 0 4 65 66 87 86\n\t\tf 4 63 444 -84 -444\n\t\tmu 0 4 66 67 88 87\n\t\tf 4 64 445 -85 -445\n\t\tmu 0 4 67 68 89 88\n\t\tf 4 65 446 -86 -446\n\t\tmu 0 4 68 69 90 89\n\t\tf 4 66 447 -87 -447\n\t\tmu 0 4 69 70 91 90\n\t\tf 4 67 448 -88 -448\n\t\tmu 0 4 70 71 92 91\n\t\tf 4 68 449 -89 -449\n\t\tmu 0 4 71 72 93 92\n\t\tf 4 69 450 -90 -450\n\t\tmu 0 4 72 73 94 93\n\t\tf 4 70 451 -91 -451\n\t\tmu 0 4 73 74 95 94\n\t\tf 4 71 452 -92 -452\n\t\tmu 0 4 74 75 96 95\n\t\tf 4 72 453 -93 -453\n\t\tmu 0 4 75 76 97 96\n\t\tf 4 73 454 -94 -454\n\t\tmu 0 4 76 77 98 97\n\t\tf 4 74 455 -95 -455\n\t\tmu 0 4 77 78 99 98\n\t\tf 4 75 456 -96 -456\n\t\tmu 0 4 78 79 100 99\n\t\tf 4 76 457 -97 -457\n\t\tmu 0 4 79 80 101 100\n\t\tf 4 77 458 -98 -458\n\t\tmu 0 4 80 81 102 101\n\t\tf 4 78 459 -99 -459\n\t\tmu 0 4 81 82 103 102\n\t\tf 4 79 440 -100 -460\n\t\tmu 0 4 82 83 104 103\n\t\tf 4 80 461 -101 -461\n\t\tmu 0 4 84 85 106 105\n\t\tf 4 81 462 -102 -462\n\t\tmu 0 4 85 86 107 106\n\t\tf 4 82 463 -103 -463\n\t\tmu 0 4 86 87 108 107\n\t\tf 4 83 464 -104 -464\n\t\tmu 0 4 87 88 109 108\n\t\tf 4 84 465 -105 -465\n\t\tmu 0 4 88 89 110 109\n\t\tf 4 85 466 -106 -466\n\t\tmu 0 4 89 90 111 110\n\t\tf 4 86 467 -107 -467\n\t\tmu 0 4 90 91 112 111\n\t\tf 4 87 468 -108 -468\n\t\tmu 0 4 91 92 113 112\n\t\tf 4 88 469 -109 -469\n\t\tmu 0 4 92 93 114 113\n\t\tf 4 89 470 -110 -470\n\t\tmu 0 4 93 94 115 114\n\t\tf 4 90 471 -111 -471\n\t\tmu 0 4 94 95 116 115\n\t\tf 4 91 472 -112 -472\n\t\tmu 0 4 95 96 117 116\n\t\tf 4 92 473 -113 -473\n\t\tmu 0 4 96 97 118 117\n\t\tf 4 93 474 -114 -474\n\t\tmu 0 4 97 98 119 118\n\t\tf 4 94 475 -115 -475\n\t\tmu 0 4 98 99 120 119\n\t\tf 4 95 476 -116 -476\n\t\tmu 0 4 99 100 121 120\n\t\tf 4 96 477 -117 -477\n\t\tmu 0 4 100 101 122 121\n\t\tf 4 97 478 -118 -478\n\t\tmu 0 4 101 102 123 122\n\t\tf 4 98 479 -119 -479\n\t\tmu 0 4 102 103 124 123\n\t\tf 4 99 460 -120 -480\n\t\tmu 0 4 103 104 125 124\n\t\tf 4 100 481 -121 -481\n\t\tmu 0 4 105 106 127 126\n\t\tf 4 101 482 -122 -482\n\t\tmu 0 4 106 107 128 127\n\t\tf 4 102 483 -123 -483\n\t\tmu 0 4 107 108 129 128\n\t\tf 4 103 484 -124 -484\n\t\tmu 0 4 108 109 130 129\n\t\tf 4 104 485 -125 -485\n\t\tmu 0 4 109 110 131 130\n\t\tf 4 105 486 -126 -486\n\t\tmu 0 4 110 111 132 131\n\t\tf 4 106 487 -127 -487\n\t\tmu 0 4 111 112 133 132\n\t\tf 4 107 488 -128 -488\n\t\tmu 0 4 112 113 134 133\n\t\tf 4 108 489 -129 -489\n\t\tmu 0 4 113 114 135 134\n\t\tf 4 109 490 -130 -490\n\t\tmu 0 4 114 115 136 135\n\t\tf 4 110 491 -131 -491\n\t\tmu 0 4 115 116 137 136\n\t\tf 4 111 492 -132 -492\n\t\tmu 0 4 116 117 138 137\n\t\tf 4 112 493 -133 -493\n\t\tmu 0 4 117 118 139 138\n\t\tf 4 113 494 -134 -494\n\t\tmu 0 4 118 119 140 139\n\t\tf 4 114 495 -135 -495\n\t\tmu 0 4 119 120 141 140\n\t\tf 4 115 496 -136 -496\n\t\tmu 0 4 120 121 142 141\n\t\tf 4 116 497 -137 -497\n\t\tmu 0 4 121 122 143 142\n\t\tf 4 117 498 -138 -498\n\t\tmu 0 4 122 123 144 143\n\t\tf 4 118 499 -139 -499\n\t\tmu 0 4 123 124 145 144\n\t\tf 4 119 480 -140 -500\n\t\tmu 0 4 124 125 146 145\n\t\tf 4 120 501 -141 -501\n\t\tmu 0 4 126 127 148 147\n\t\tf 4 121 502 -142 -502\n\t\tmu 0 4 127 128 149 148\n\t\tf 4 122 503 -143 -503\n\t\tmu 0 4 128 129 150 149\n\t\tf 4 123 504 -144 -504\n\t\tmu 0 4 129 130 151 150\n\t\tf 4 124 505 -145 -505\n\t\tmu 0 4 130 131 152 151\n\t\tf 4 125 506 -146 -506\n\t\tmu 0 4 131 132 153 152\n\t\tf 4 126 507 -147 -507\n\t\tmu 0 4 132 133 154 153\n\t\tf 4 127 508 -148 -508\n\t\tmu 0 4 133 134 155 154\n\t\tf 4 128 509 -149 -509\n\t\tmu 0 4 134 135 156 155\n\t\tf 4 129 510 -150 -510\n\t\tmu 0 4 135 136 157 156\n\t\tf 4 130 511 -151 -511\n\t\tmu 0 4 136 137 158 157\n\t\tf 4 131 512 -152 -512\n\t\tmu 0 4 137 138 159 158\n\t\tf 4 132 513 -153 -513\n\t\tmu 0 4 138 139 160 159\n\t\tf 4 133 514 -154 -514\n\t\tmu 0 4 139 140 161 160\n\t\tf 4 134 515 -155 -515\n\t\tmu 0 4 140 141 162 161\n\t\tf 4 135 516 -156 -516\n\t\tmu 0 4 141 142 163 162\n\t\tf 4 136 517 -157 -517\n\t\tmu 0 4 142 143 164 163\n\t\tf 4 137 518 -158 -518\n\t\tmu 0 4 143 144 165 164\n\t\tf 4 138 519 -159 -519\n\t\tmu 0 4 144 145 166 165\n\t\tf 4 139 500 -160 -520\n\t\tmu 0 4 145 146 167 166\n\t\tf 4 140 521 -161 -521\n\t\tmu 0 4 147 148 169 168\n\t\tf 4 141 522 -162 -522\n\t\tmu 0 4 148 149 170 169\n\t\tf 4 142 523 -163 -523\n\t\tmu 0 4 149 150 171 170\n\t\tf 4 143 524 -164 -524\n\t\tmu 0 4 150 151 172 171\n\t\tf 4 144 525 -165 -525\n\t\tmu 0 4 151 152 173 172\n\t\tf 4 145 526 -166 -526\n\t\tmu 0 4 152 153 174 173\n\t\tf 4 146 527 -167 -527\n\t\tmu 0 4 153 154 175 174\n\t\tf 4 147 528 -168 -528\n\t\tmu 0 4 154 155 176 175\n\t\tf 4 148 529 -169 -529\n\t\tmu 0 4 155 156 177 176\n\t\tf 4 149 530 -170 -530\n\t\tmu 0 4 156 157 178 177\n\t\tf 4 150 531 -171 -531\n\t\tmu 0 4 157 158 179 178\n\t\tf 4 151 532 -172 -532\n\t\tmu 0 4 158 159 180 179\n\t\tf 4 152 533 -173 -533\n\t\tmu 0 4 159 160 181 180\n\t\tf 4 153 534 -174 -534\n\t\tmu 0 4 160 161 182 181\n\t\tf 4 154 535 -175 -535\n\t\tmu 0 4 161 162 183 182\n\t\tf 4 155 536 -176 -536\n\t\tmu 0 4 162 163 184 183\n\t\tf 4 156 537 -177 -537\n\t\tmu 0 4 163 164 185 184\n\t\tf 4 157 538 -178 -538\n\t\tmu 0 4 164 165 186 185\n\t\tf 4 158 539 -179 -539\n\t\tmu 0 4 165 166 187 186\n\t\tf 4 159 520 -180 -540\n\t\tmu 0 4 166 167 188 187\n\t\tf 4 160 541 -181 -541\n\t\tmu 0 4 168 169 190 189\n\t\tf 4 161 542 -182 -542\n\t\tmu 0 4 169 170 191 190\n\t\tf 4 162 543 -183 -543\n\t\tmu 0 4 170 171 192 191\n\t\tf 4 163 544 -184 -544\n\t\tmu 0 4 171 172 193 192\n\t\tf 4 164 545 -185 -545\n\t\tmu 0 4 172 173 194 193\n\t\tf 4 165 546 -186 -546\n\t\tmu 0 4 173 174 195 194\n\t\tf 4 166 547 -187 -547\n\t\tmu 0 4 174 175 196 195\n\t\tf 4 167 548 -188 -548\n\t\tmu 0 4 175 176 197 196\n\t\tf 4 168 549 -189 -549\n\t\tmu 0 4 176 177 198 197\n\t\tf 4 169 550 -190 -550\n\t\tmu 0 4 177 178 199 198\n\t\tf 4 170 551 -191 -551\n\t\tmu 0 4 178 179 200 199\n\t\tf 4 171 552 -192 -552\n\t\tmu 0 4 179 180 201 200\n\t\tf 4 172 553 -193 -553\n\t\tmu 0 4 180 181 202 201\n\t\tf 4 173 554 -194 -554\n\t\tmu 0 4 181 182 203 202\n\t\tf 4 174 555 -195 -555\n\t\tmu 0 4 182 183 204 203\n\t\tf 4 175 556 -196 -556\n\t\tmu 0 4 183 184 205 204\n\t\tf 4 176 557 -197 -557\n\t\tmu 0 4 184 185 206 205\n\t\tf 4 177 558 -198 -558\n\t\tmu 0 4 185 186 207 206\n\t\tf 4 178 559 -199 -559\n\t\tmu 0 4 186 187 208 207\n\t\tf 4 179 540 -200 -560\n\t\tmu 0 4 187 188 209 208\n\t\tf 4 180 561 -201 -561\n\t\tmu 0 4 189 190 211 210\n\t\tf 4 181 562 -202 -562\n\t\tmu 0 4 190 191 212 211\n\t\tf 4 182 563 -203 -563\n\t\tmu 0 4 191 192 213 212\n\t\tf 4 183 564 -204 -564\n\t\tmu 0 4 192 193 214 213\n\t\tf 4 184 565 -205 -565\n\t\tmu 0 4 193 194 215 214\n\t\tf 4 185 566 -206 -566\n\t\tmu 0 4 194 195 216 215\n\t\tf 4 186 567 -207 -567\n\t\tmu 0 4 195 196 217 216\n\t\tf 4 187 568 -208 -568\n\t\tmu 0 4 196 197 218 217\n\t\tf 4 188 569 -209 -569\n\t\tmu 0 4 197 198 219 218\n\t\tf 4 189 570 -210 -570\n\t\tmu 0 4 198 199 220 219\n\t\tf 4 190 571 -211 -571\n\t\tmu 0 4 199 200 221 220\n\t\tf 4 191 572 -212 -572\n\t\tmu 0 4 200 201 222 221\n\t\tf 4 192 573 -213 -573\n\t\tmu 0 4 201 202 223 222\n\t\tf 4 193 574 -214 -574\n\t\tmu 0 4 202 203 224 223\n\t\tf 4 194 575 -215 -575\n\t\tmu 0 4 203 204 225 224\n\t\tf 4 195 576 -216 -576\n\t\tmu 0 4 204 205 226 225\n\t\tf 4 196 577 -217 -577\n\t\tmu 0 4 205 206 227 226\n\t\tf 4 197 578 -218 -578\n\t\tmu 0 4 206 207 228 227\n\t\tf 4 198 579 -219 -579\n\t\tmu 0 4 207 208 229 228\n\t\tf 4 199 560 -220 -580\n\t\tmu 0 4 208 209 230 229\n\t\tf 4 200 581 -221 -581\n\t\tmu 0 4 210 211 232 231\n\t\tf 4 201 582 -222 -582\n\t\tmu 0 4 211 212 233 232\n\t\tf 4 202 583 -223 -583\n\t\tmu 0 4 212 213 234 233\n\t\tf 4 203 584 -224 -584\n\t\tmu 0 4 213 214 235 234\n\t\tf 4 204 585 -225 -585\n\t\tmu 0 4 214 215 236 235\n\t\tf 4 205 586 -226 -586\n\t\tmu 0 4 215 216 237 236\n\t\tf 4 206 587 -227 -587\n\t\tmu 0 4 216 217 238 237\n\t\tf 4 207 588 -228 -588\n\t\tmu 0 4 217 218 239 238\n\t\tf 4 208 589 -229 -589\n\t\tmu 0 4 218 219 240 239\n\t\tf 4 209 590 -230 -590\n\t\tmu 0 4 219 220 241 240\n\t\tf 4 210 591 -231 -591\n\t\tmu 0 4 220 221 242 241\n\t\tf 4 211 592 -232 -592\n\t\tmu 0 4 221 222 243 242\n\t\tf 4 212 593 -233 -593\n\t\tmu 0 4 222 223 244 243\n\t\tf 4 213 594 -234 -594\n\t\tmu 0 4 223 224 245 244\n\t\tf 4 214 595 -235 -595\n\t\tmu 0 4 224 225 246 245\n\t\tf 4 215 596 -236 -596\n\t\tmu 0 4 225 226 247 246\n\t\tf 4 216 597 -237 -597\n\t\tmu 0 4 226 227 248 247\n\t\tf 4 217 598 -238 -598\n\t\tmu 0 4 227 228 249 248\n\t\tf 4 218 599 -239 -599\n\t\tmu 0 4 228 229 250 249\n\t\tf 4 219 580 -240 -600\n\t\tmu 0 4 229 230 251 250\n\t\tf 4 220 601 -241 -601\n\t\tmu 0 4 231 232 253 252\n\t\tf 4 221 602 -242 -602\n\t\tmu 0 4 232 233 254 253\n\t\tf 4 222 603 -243 -603\n\t\tmu 0 4 233 234 255 254\n\t\tf 4 223 604 -244 -604\n\t\tmu 0 4 234 235 256 255\n\t\tf 4 224 605 -245 -605\n\t\tmu 0 4 235 236 257 256\n\t\tf 4 225 606 -246 -606\n\t\tmu 0 4 236 237 258 257\n\t\tf 4 226 607 -247 -607\n\t\tmu 0 4 237 238 259 258\n\t\tf 4 227 608 -248 -608\n\t\tmu 0 4 238 239 260 259\n\t\tf 4 228 609 -249 -609\n\t\tmu 0 4 239 240 261 260\n\t\tf 4 229 610 -250 -610\n\t\tmu 0 4 240 241 262 261\n\t\tf 4 230 611 -251 -611\n\t\tmu 0 4 241 242 263 262\n\t\tf 4 231 612 -252 -612\n\t\tmu 0 4 242 243 264 263\n\t\tf 4 232 613 -253 -613\n\t\tmu 0 4 243 244 265 264\n\t\tf 4 233 614 -254 -614\n\t\tmu 0 4 244 245 266 265\n\t\tf 4 234 615 -255 -615\n\t\tmu 0 4 245 246 267 266\n\t\tf 4 235 616 -256 -616\n\t\tmu 0 4 246 247 268 267\n\t\tf 4 236 617 -257 -617\n\t\tmu 0 4 247 248 269 268\n\t\tf 4 237 618 -258 -618\n\t\tmu 0 4 248 249 270 269\n\t\tf 4 238 619 -259 -619\n\t\tmu 0 4 249 250 271 270\n\t\tf 4 239 600 -260 -620\n\t\tmu 0 4 250 251 272 271\n\t\tf 4 240 621 -261 -621\n\t\tmu 0 4 252 253 274 273\n\t\tf 4 241 622 -262 -622\n\t\tmu 0 4 253 254 275 274\n\t\tf 4 242 623 -263 -623\n\t\tmu 0 4 254 255 276 275\n\t\tf 4 243 624 -264 -624\n\t\tmu 0 4 255 256 277 276\n\t\tf 4 244 625 -265 -625\n\t\tmu 0 4 256 257 278 277\n\t\tf 4 245 626 -266 -626\n\t\tmu 0 4 257 258 279 278\n\t\tf 4 246 627 -267 -627\n\t\tmu 0 4 258 259 280 279\n\t\tf 4 247 628 -268 -628\n\t\tmu 0 4 259 260 281 280\n\t\tf 4 248 629 -269 -629\n\t\tmu 0 4 260 261 282 281\n\t\tf 4 249 630 -270 -630\n\t\tmu 0 4 261 262 283 282\n\t\tf 4 250 631 -271 -631\n\t\tmu 0 4 262 263 284 283\n\t\tf 4 251 632 -272 -632\n\t\tmu 0 4 263 264 285 284\n\t\tf 4 252 633 -273 -633\n\t\tmu 0 4 264 265 286 285\n\t\tf 4 253 634 -274 -634\n\t\tmu 0 4 265 266 287 286\n\t\tf 4 254 635 -275 -635\n\t\tmu 0 4 266 267 288 287\n\t\tf 4 255 636 -276 -636\n\t\tmu 0 4 267 268 289 288\n\t\tf 4 256 637 -277 -637\n\t\tmu 0 4 268 269 290 289\n\t\tf 4 257 638 -278 -638\n\t\tmu 0 4 269 270 291 290\n\t\tf 4 258 639 -279 -639\n\t\tmu 0 4 270 271 292 291\n\t\tf 4 259 620 -280 -640\n\t\tmu 0 4 271 272 293 292\n\t\tf 4 260 641 -281 -641\n\t\tmu 0 4 273 274 295 294\n\t\tf 4 261 642 -282 -642\n\t\tmu 0 4 274 275 296 295\n\t\tf 4 262 643 -283 -643\n\t\tmu 0 4 275 276 297 296\n\t\tf 4 263 644 -284 -644\n\t\tmu 0 4 276 277 298 297\n\t\tf 4 264 645 -285 -645\n\t\tmu 0 4 277 278 299 298\n\t\tf 4 265 646 -286 -646\n\t\tmu 0 4 278 279 300 299\n\t\tf 4 266 647 -287 -647\n\t\tmu 0 4 279 280 301 300\n\t\tf 4 267 648 -288 -648\n\t\tmu 0 4 280 281 302 301\n\t\tf 4 268 649 -289 -649\n\t\tmu 0 4 281 282 303 302\n\t\tf 4 269 650 -290 -650\n\t\tmu 0 4 282 283 304 303\n\t\tf 4 270 651 -291 -651\n\t\tmu 0 4 283 284 305 304\n\t\tf 4 271 652 -292 -652\n\t\tmu 0 4 284 285 306 305\n\t\tf 4 272 653 -293 -653\n\t\tmu 0 4 285 286 307 306\n\t\tf 4 273 654 -294 -654\n\t\tmu 0 4 286 287 308 307\n\t\tf 4 274 655 -295 -655\n\t\tmu 0 4 287 288 309 308\n\t\tf 4 275 656 -296 -656\n\t\tmu 0 4 288 289 310 309\n\t\tf 4 276 657 -297 -657\n\t\tmu 0 4 289 290 311 310\n\t\tf 4 277 658 -298 -658\n\t\tmu 0 4 290 291 312 311\n\t\tf 4 278 659 -299 -659\n\t\tmu 0 4 291 292 313 312\n\t\tf 4 279 640 -300 -660\n\t\tmu 0 4 292 293 314 313\n\t\tf 4 280 661 -301 -661\n\t\tmu 0 4 294 295 316 315\n\t\tf 4 281 662 -302 -662\n\t\tmu 0 4 295 296 317 316\n\t\tf 4 282 663 -303 -663\n\t\tmu 0 4 296 297 318 317\n\t\tf 4 283 664 -304 -664\n\t\tmu 0 4 297 298 319 318\n\t\tf 4 284 665 -305 -665\n\t\tmu 0 4 298 299 320 319\n\t\tf 4 285 666 -306 -666\n\t\tmu 0 4 299 300 321 320\n\t\tf 4 286 667 -307 -667\n\t\tmu 0 4 300 301 322 321\n\t\tf 4 287 668 -308 -668\n\t\tmu 0 4 301 302 323 322\n\t\tf 4 288 669 -309 -669\n\t\tmu 0 4 302 303 324 323\n\t\tf 4 289 670 -310 -670\n\t\tmu 0 4 303 304 325 324\n\t\tf 4 290 671 -311 -671\n\t\tmu 0 4 304 305 326 325\n\t\tf 4 291 672 -312 -672\n\t\tmu 0 4 305 306 327 326\n\t\tf 4 292 673 -313 -673\n\t\tmu 0 4 306 307 328 327\n\t\tf 4 293 674 -314 -674\n\t\tmu 0 4 307 308 329 328\n\t\tf 4 294 675 -315 -675\n\t\tmu 0 4 308 309 330 329\n\t\tf 4 295 676 -316 -676\n\t\tmu 0 4 309 310 331 330\n\t\tf 4 296 677 -317 -677\n\t\tmu 0 4 310 311 332 331\n\t\tf 4 297 678 -318 -678\n\t\tmu 0 4 311 312 333 332\n\t\tf 4 298 679 -319 -679\n\t\tmu 0 4 312 313 334 333\n\t\tf 4 299 660 -320 -680\n\t\tmu 0 4 313 314 335 334\n\t\tf 4 300 681 -321 -681\n\t\tmu 0 4 315 316 337 336\n\t\tf 4 301 682 -322 -682\n\t\tmu 0 4 316 317 338 337\n\t\tf 4 302 683 -323 -683\n\t\tmu 0 4 317 318 339 338\n\t\tf 4 303 684 -324 -684\n\t\tmu 0 4 318 319 340 339\n\t\tf 4 304 685 -325 -685\n\t\tmu 0 4 319 320 341 340\n\t\tf 4 305 686 -326 -686\n\t\tmu 0 4 320 321 342 341\n\t\tf 4 306 687 -327 -687\n\t\tmu 0 4 321 322 343 342\n\t\tf 4 307 688 -328 -688\n\t\tmu 0 4 322 323 344 343\n\t\tf 4 308 689 -329 -689\n\t\tmu 0 4 323 324 345 344\n\t\tf 4 309 690 -330 -690\n\t\tmu 0 4 324 325 346 345\n\t\tf 4 310 691 -331 -691\n\t\tmu 0 4 325 326 347 346\n\t\tf 4 311 692 -332 -692\n\t\tmu 0 4 326 327 348 347\n\t\tf 4 312 693 -333 -693\n\t\tmu 0 4 327 328 349 348\n\t\tf 4 313 694 -334 -694\n\t\tmu 0 4 328 329 350 349\n\t\tf 4 314 695 -335 -695\n\t\tmu 0 4 329 330 351 350\n\t\tf 4 315 696 -336 -696\n\t\tmu 0 4 330 331 352 351\n\t\tf 4 316 697 -337 -697\n\t\tmu 0 4 331 332 353 352\n\t\tf 4 317 698 -338 -698\n\t\tmu 0 4 332 333 354 353\n\t\tf 4 318 699 -339 -699\n\t\tmu 0 4 333 334 355 354\n\t\tf 4 319 680 -340 -700\n\t\tmu 0 4 334 335 356 355\n\t\tf 4 320 701 -341 -701\n\t\tmu 0 4 336 337 358 357\n\t\tf 4 321 702 -342 -702\n\t\tmu 0 4 337 338 359 358\n\t\tf 4 322 703 -343 -703\n\t\tmu 0 4 338 339 360 359\n\t\tf 4 323 704 -344 -704\n\t\tmu 0 4 339 340 361 360\n\t\tf 4 324 705 -345 -705\n\t\tmu 0 4 340 341 362 361\n\t\tf 4 325 706 -346 -706\n\t\tmu 0 4 341 342 363 362\n\t\tf 4 326 707 -347 -707\n\t\tmu 0 4 342 343 364 363\n\t\tf 4 327 708 -348 -708\n\t\tmu 0 4 343 344 365 364\n\t\tf 4 328 709 -349 -709\n\t\tmu 0 4 344 345 366 365\n\t\tf 4 329 710 -350 -710\n\t\tmu 0 4 345 346 367 366\n\t\tf 4 330 711 -351 -711\n\t\tmu 0 4 346 347 368 367\n\t\tf 4 331 712 -352 -712\n\t\tmu 0 4 347 348 369 368\n\t\tf 4 332 713 -353 -713\n\t\tmu 0 4 348 349 370 369\n\t\tf 4 333 714 -354 -714\n\t\tmu 0 4 349 350 371 370\n\t\tf 4 334 715 -355 -715\n\t\tmu 0 4 350 351 372 371\n\t\tf 4 335 716 -356 -716\n\t\tmu 0 4 351 352 373 372\n\t\tf 4 336 717 -357 -717\n\t\tmu 0 4 352 353 374 373\n\t\tf 4 337 718 -358 -718\n\t\tmu 0 4 353 354 375 374\n\t\tf 4 338 719 -359 -719\n\t\tmu 0 4 354 355 376 375\n\t\tf 4 339 700 -360 -720\n\t\tmu 0 4 355 356 377 376\n\t\tf 4 340 721 -361 -721\n\t\tmu 0 4 357 358 379 378\n\t\tf 4 341 722 -362 -722\n\t\tmu 0 4 358 359 380 379\n\t\tf 4 342 723 -363 -723\n\t\tmu 0 4 359 360 381 380\n\t\tf 4 343 724 -364 -724\n\t\tmu 0 4 360 361 382 381\n\t\tf 4 344 725 -365 -725\n\t\tmu 0 4 361 362 383 382\n\t\tf 4 345 726 -366 -726\n\t\tmu 0 4 362 363 384 383\n\t\tf 4 346 727 -367 -727\n\t\tmu 0 4 363 364 385 384\n\t\tf 4 347 728 -368 -728\n\t\tmu 0 4 364 365 386 385\n\t\tf 4 348 729 -369 -729\n\t\tmu 0 4 365 366 387 386\n\t\tf 4 349 730 -370 -730\n\t\tmu 0 4 366 367 388 387\n\t\tf 4 350 731 -371 -731\n\t\tmu 0 4 367 368 389 388\n\t\tf 4 351 732 -372 -732\n\t\tmu 0 4 368 369 390 389\n\t\tf 4 352 733 -373 -733\n\t\tmu 0 4 369 370 391 390\n\t\tf 4 353 734 -374 -734\n\t\tmu 0 4 370 371 392 391\n\t\tf 4 354 735 -375 -735\n\t\tmu 0 4 371 372 393 392\n\t\tf 4 355 736 -376 -736\n\t\tmu 0 4 372 373 394 393\n\t\tf 4 356 737 -377 -737\n\t\tmu 0 4 373 374 395 394\n\t\tf 4 357 738 -378 -738\n\t\tmu 0 4 374 375 396 395\n\t\tf 4 358 739 -379 -739\n\t\tmu 0 4 375 376 397 396\n\t\tf 4 359 720 -380 -740\n\t\tmu 0 4 376 377 398 397\n\t\tf 3 -1 -741 741\n\t\tmu 0 3 1 0 399\n\t\tf 3 -2 -742 742\n\t\tmu 0 3 2 1 400\n\t\tf 3 -3 -743 743\n\t\tmu 0 3 3 2 401\n\t\tf 3 -4 -744 744\n\t\tmu 0 3 4 3 402\n\t\tf 3 -5 -745 745\n\t\tmu 0 3 5 4 403\n\t\tf 3 -6 -746 746\n\t\tmu 0 3 6 5 404\n\t\tf 3 -7 -747 747\n\t\tmu 0 3 7 6 405\n\t\tf 3 -8 -748 748\n\t\tmu 0 3 8 7 406\n\t\tf 3 -9 -749 749\n\t\tmu 0 3 9 8 407\n\t\tf 3 -10 -750 750\n\t\tmu 0 3 10 9 408\n\t\tf 3 -11 -751 751\n\t\tmu 0 3 11 10 409\n\t\tf 3 -12 -752 752\n\t\tmu 0 3 12 11 410\n\t\tf 3 -13 -753 753\n\t\tmu 0 3 13 12 411\n\t\tf 3 -14 -754 754\n\t\tmu 0 3 14 13 412\n\t\tf 3 -15 -755 755\n\t\tmu 0 3 15 14 413\n\t\tf 3 -16 -756 756\n\t\tmu 0 3 16 15 414\n\t\tf 3 -17 -757 757\n\t\tmu 0 3 17 16 415\n\t\tf 3 -18 -758 758\n\t\tmu 0 3 18 17 416\n\t\tf 3 -19 -759 759\n\t\tmu 0 3 19 18 417\n\t\tf 3 -20 -760 740\n\t\tmu 0 3 20 19 418\n\t\tf 3 360 761 -761\n\t\tmu 0 3 378 379 419\n\t\tf 3 361 762 -762\n\t\tmu 0 3 379 380 420\n\t\tf 3 362 763 -763\n\t\tmu 0 3 380 381 421\n\t\tf 3 363 764 -764\n\t\tmu 0 3 381 382 422\n\t\tf 3 364 765 -765\n\t\tmu 0 3 382 383 423\n\t\tf 3 365 766 -766\n\t\tmu 0 3 383 384 424\n\t\tf 3 366 767 -767\n\t\tmu 0 3 384 385 425\n\t\tf 3 367 768 -768\n\t\tmu 0 3 385 386 426\n\t\tf 3 368 769 -769\n\t\tmu 0 3 386 387 427\n\t\tf 3 369 770 -770\n\t\tmu 0 3 387 388 428\n\t\tf 3 370 771 -771\n\t\tmu 0 3 388 389 429\n\t\tf 3 371 772 -772\n\t\tmu 0 3 389 390 430\n\t\tf 3 372 773 -773\n\t\tmu 0 3 390 391 431\n\t\tf 3 373 774 -774\n\t\tmu 0 3 391 392 432\n\t\tf 3 374 775 -775\n\t\tmu 0 3 392 393 433\n\t\tf 3 375 776 -776\n\t\tmu 0 3 393 394 434\n\t\tf 3 376 777 -777\n\t\tmu 0 3 394 395 435\n\t\tf 3 377 778 -778\n\t\tmu 0 3 395 396 436\n\t\tf 3 378 779 -779\n\t\tmu 0 3 396 397 437\n\t\tf 3 379 760 -780\n\t\tmu 0 3 397 398 438;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"polySurface2\";\n\trename -uid \"4AEA3CF5-4E9C-E6AC-5651-BBB3ECDE6FE0\";\ncreateNode mesh -n \"polySurfaceShape2\" -p \"polySurface2\";\n\trename -uid \"95C33AA9-4E56-D5DD-18FC-60AEC65607A1\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".iog[0].og[0].gcl\" -type \"componentList\" 1 \"f[0:5]\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.625\n\t\t 0.25 0.375 0.25 0.625 0.5 0.375 0.5 0.625 0.75 0.375 0.75 0.625 1 0.375 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.49897635 0.50102365 -0.40102363 -0.40102363 0.50102365 -0.40102363\n\t\t -0.49897635 0.59897637 -0.40102363 -0.40102363 0.59897637 -0.40102363 -0.49897635 0.59897637 -0.49897635\n\t\t -0.40102363 0.59897637 -0.49897635 -0.49897635 0.50102365 -0.49897635 -0.40102363 0.50102365 -0.49897635;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 2 3\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 3 2 4 5\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 5 4 6 7\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 7 6 8 9\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 2\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 3 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"SoftCube\";\n\trename -uid \"47CA52D6-44C3-4712-AF9D-2DABBABE3F8B\";\n\taddAttr -is true -ci true -k true -sn \"currentUVSet\" -ln \"currentUVSet\" -dt \"string\";\n\tsetAttr -k on \".currentUVSet\" -type \"string\" \"map1\";\ncreateNode mesh -n \"SoftCubeShape\" -p \"SoftCube\";\n\trename -uid \"D87CCB43-42A8-8CD1-94C1-4A92802095F4\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 18 \".ed[0:17]\"  0 1 0 1 2 0 2 0 0 1 3 0 3 2 0 3 4 0 4 2 0\n\t\t 3 5 0 5 4 0 5 6 0 6 4 0 5 7 0 7 6 0 7 0 0 0 6 0 7 1 0 7 3 0 0 4 0;\n\tsetAttr -s 36 \".n[0:35]\" -type \"float3\"  -0.5773502 -0.5773502 0.5773502\n\t\t 0.5773502 -0.5773502 0.5773502 -0.5773502 0.5773502 0.5773502 -0.5773502 0.5773502\n\t\t 0.5773502 0.5773502 -0.5773502 0.5773502 0.5773502 0.5773502 0.5773502 -0.5773502\n\t\t 0.5773502 0.5773502 0.5773502 0.5773502 0.5773502 -0.5773502 0.5773502 -0.5773502\n\t\t -0.5773502 0.5773502 -0.5773502 0.5773502 0.5773502 0.5773502 0.5773502 0.5773502\n\t\t -0.5773502 -0.5773502 0.5773502 -0.5773502 0.5773502 0.5773502 -0.5773502 -0.5773502\n\t\t -0.5773502 -0.5773502 -0.5773502 -0.5773502 -0.5773502 0.5773502 0.5773502 -0.5773502\n\t\t 0.5773502 -0.5773502 -0.5773502 -0.5773502 -0.5773502 -0.5773502 0.5773502 -0.5773502\n\t\t -0.5773502 -0.5773502 -0.5773502 0.5773502 -0.5773502 -0.5773502 0.5773502 0.5773502\n\t\t -0.5773502 -0.5773502 0.5773502 -0.5773502 0.5773502 0.5773502 -0.5773502 0.5773502\n\t\t 0.5773502 -0.5773502 -0.5773502 0.5773502 0.5773502 0.5773502 0.5773502 0.5773502\n\t\t 0.5773502 0.5773502 -0.5773502 -0.5773502 0.5773502 0.5773502 -0.5773502 -0.5773502\n\t\t -0.5773502 -0.5773502 -0.5773502 -0.5773502 0.5773502 -0.5773502 0.5773502 -0.5773502\n\t\t -0.5773502 0.5773502 -0.5773502 -0.5773502 -0.5773502 0.5773502 -0.5773502 0.5773502\n\t\t 0.5773502;\n\tsetAttr -s 12 -ch 36 \".fc[0:11]\" -type \"polyFaces\" \n\t\tf 3 0 1 2\n\t\tmu 0 3 0 1 2\n\t\tf 3 -2 3 4\n\t\tmu 0 3 2 1 3\n\t\tf 3 -5 5 6\n\t\tmu 0 3 2 3 4\n\t\tf 3 -6 7 8\n\t\tmu 0 3 4 3 5\n\t\tf 3 -9 9 10\n\t\tmu 0 3 4 5 6\n\t\tf 3 -10 11 12\n\t\tmu 0 3 6 5 7\n\t\tf 3 -13 13 14\n\t\tmu 0 3 6 7 8\n\t\tf 3 -14 15 -1\n\t\tmu 0 3 8 7 9\n\t\tf 3 -16 16 -4\n\t\tmu 0 3 1 10 3\n\t\tf 3 -17 -12 -8\n\t\tmu 0 3 3 10 11\n\t\tf 3 -15 17 -11\n\t\tmu 0 3 12 0 13\n\t\tf 3 -18 -3 -7\n\t\tmu 0 3 13 0 2;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".tsa\" 10;\n\tsetAttr \".tnt\" 10;\ncreateNode transform -n \"camera1\";\n\trename -uid \"475F6F5E-403E-8C66-4590-14B03336C2D2\";\n\tsetAttr \".t\" -type \"double3\" 0.9288103891997852 3.7381238506420127 4.8384092496341493 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"E2EF9DCC-4FDC-C683-A174-48A1F7EA3059\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 6.5172200490366148;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" -1.3273769805749063 0 -1.7881393432617188e-07 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"3E1C9DC4-4F52-468C-9642-2EB276F5FF9F\";\n\tsetAttr -s 8 \".lnk\";\n\tsetAttr -s 8 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"0A3B1896-4195-A9CE-6AEA-C1A9C92137BF\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"F4485876-41B8-8524-83E3-15838F7C2880\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"6484547E-4CF4-5CC1-B57F-61BDE65B5772\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"ACC974D7-479D-0951-16D3-EB9D8126CD3A\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"BB842AFD-41F4-4A76-6F3E-A68DBD71C416\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"ADB67A05-48B0-5365-362C-C59134C2F4AE\";\n\tsetAttr \".g\" yes;\ncreateNode lambert -n \"surfaceSamplingEnvelopeShader\";\n\trename -uid \"58450C19-4F0D-09C2-972A-29ADA85AD11F\";\n\tsetAttr \".c\" -type \"float3\" 1 0.5 0.5 ;\n\tsetAttr \".it\" -type \"float3\" 0.25 0.25 0.25 ;\ncreateNode shadingEngine -n \"surfaceSamplingEnvelopeShaderSG\";\n\trename -uid \"7527CA41-4E9F-440C-D16D-26AF290A1D19\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"9C849DEA-451D-FC57-AEBD-6E93DAD6036F\";\ncreateNode GLSLShader -n \"GLSL_PBR_Shader\";\n\trename -uid \"A83DA730-4D91-1876-C551-15A14C515CFE\";\n\taddAttr -ci true -sn \"Light_0_use_implicit_lighting\" -ln \"Light_0_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_0_connected_light\" -ln \"Light_0_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_1_use_implicit_lighting\" -ln \"Light_1_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_1_connected_light\" -ln \"Light_1_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_2_use_implicit_lighting\" -ln \"Light_2_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_2_connected_light\" -ln \"Light_2_connected_light\" \n\t\t-at \"message\";\n\taddAttr -s false -is true -ci true -k true -sn \"te\" -ln \"techniqueEnum\" -nn \"Technique\" \n\t\t-min 0 -max 1 -en \"Solid:Transparent\" -at \"enum\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Name\" -ln \"u_LightColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Type\" -ln \"u_LightColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_LightColor\" -ln \"u_LightColor\" -nn \"Light Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_LightColorR\" -ln \"u_LightColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorG\" -ln \"u_LightColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorB\" -ln \"u_LightColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Name\" -ln \"u_LightIntensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Type\" -ln \"u_LightIntensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightIntensity\" -ln \"u_LightIntensity\" -nn \"Light Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 10 -smn 0 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Name\" -ln \"u_LightRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Type\" -ln \"u_LightRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightRotation\" -ln \"u_LightRotation\" -nn \"Light rotation (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 75 -min 0 -max 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Name\" -ln \"u_LightPitch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Type\" -ln \"u_LightPitch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightPitch\" -ln \"u_LightPitch\" -nn \"Light pitch (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 40 -min -90 -max 90 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Name\" -ln \"u_BaseColorTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Type\" -ln \"u_BaseColorTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorTexture\" -ln \"u_BaseColorTexture\" \n\t\t-nn \"Base color map (sRGB)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureR\" -ln \"u_BaseColorTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureG\" -ln \"u_BaseColorTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureB\" -ln \"u_BaseColorTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Name\" -ln \"u_BaseColorFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Type\" -ln \"u_BaseColorFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactor\" -ln \"u_BaseColorFactor\" -nn \"Base color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorFactorRGB\" -ln \"u_BaseColorFactorRGB\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_BaseColorFactor\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorR\" -ln \"u_BaseColorFactorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorG\" -ln \"u_BaseColorFactorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorB\" -ln \"u_BaseColorFactorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorA\" -ln \"u_BaseColorFactorA\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactor\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Name\" -ln \"u_MetallicTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Type\" -ln \"u_MetallicTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_MetallicTexture\" -ln \"u_MetallicTexture\" -nn \"Metallic map (B,LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_MetallicTextureR\" -ln \"u_MetallicTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureG\" -ln \"u_MetallicTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureB\" -ln \"u_MetallicTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Name\" -ln \"u_MetallicStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Type\" -ln \"u_MetallicStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_MetallicStrength\" -ln \"u_MetallicStrength\" -nn \"Metallic strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Name\" -ln \"u_RoughnessTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Type\" -ln \"u_RoughnessTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_RoughnessTexture\" -ln \"u_RoughnessTexture\" \n\t\t-nn \"Roughness map (G,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureR\" -ln \"u_RoughnessTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureG\" -ln \"u_RoughnessTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureB\" -ln \"u_RoughnessTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Name\" -ln \"u_RoughnessStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Type\" -ln \"u_RoughnessStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessStrength\" -ln \"u_RoughnessStrength\" -nn \"Roughness strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Name\" -ln \"u_OcclusionTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Type\" -ln \"u_OcclusionTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_OcclusionTexture\" -ln \"u_OcclusionTexture\" \n\t\t-nn \"Occlusion map (R,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureR\" -ln \"u_OcclusionTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureG\" -ln \"u_OcclusionTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureB\" -ln \"u_OcclusionTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Name\" -ln \"u_OcclusionStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Type\" -ln \"u_OcclusionStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_OcclusionStrength\" -ln \"u_OcclusionStrength\" -nn \"Occlusion strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Name\" -ln \"u_NormalTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Type\" -ln \"u_NormalTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_NormalTexture\" -ln \"u_NormalTexture\" -nn \"Normal map (LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_NormalTextureR\" -ln \"u_NormalTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureG\" -ln \"u_NormalTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureB\" -ln \"u_NormalTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Name\" -ln \"u_NormalScale_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Type\" -ln \"u_NormalScale_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_NormalScale\" -ln \"u_NormalScale\" -nn \"Normal scale\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Name\" -ln \"u_EmissiveTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Type\" -ln \"u_EmissiveTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveTexture\" -ln \"u_EmissiveTexture\" -nn \"Emissive map (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureR\" -ln \"u_EmissiveTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureG\" -ln \"u_EmissiveTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureB\" -ln \"u_EmissiveTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Name\" -ln \"u_EmissiveColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Type\" -ln \"u_EmissiveColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveColor\" -ln \"u_EmissiveColor\" -nn \"Emissive color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveColorR\" -ln \"u_EmissiveColorR\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorG\" -ln \"u_EmissiveColorG\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorB\" -ln \"u_EmissiveColorB\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Name\" -ln \"u_DiffuseEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Type\" -ln \"u_DiffuseEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_DiffuseEnvTexture\" -ln \"u_DiffuseEnvTexture\" \n\t\t-nn \"Diffuse env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureR\" -ln \"u_DiffuseEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureG\" -ln \"u_DiffuseEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureB\" -ln \"u_DiffuseEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Name\" -ln \"u_SpecularEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Type\" -ln \"u_SpecularEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_SpecularEnvTexture\" -ln \"u_SpecularEnvTexture\" \n\t\t-nn \"Specular env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureR\" -ln \"u_SpecularEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureG\" -ln \"u_SpecularEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureB\" -ln \"u_SpecularEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Name\" -ln \"u_brdfTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Type\" -ln \"u_brdfTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_brdfTexture\" -ln \"u_brdfTexture\" -nn \"BRDF LUT (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_brdfTextureR\" -ln \"u_brdfTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureG\" -ln \"u_brdfTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureB\" -ln \"u_brdfTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Name\" -ln \"u_UseMeshTangents_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Type\" -ln \"u_UseMeshTangents_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UseMeshTangents\" -ln \"u_UseMeshTangents\" -nn \"Use mesh tangents?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Name\" -ln \"u_ScaleDiffBaseMR_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Type\" -ln \"u_ScaleDiffBaseMR_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMR\" -ln \"u_ScaleDiffBaseMR\" -nn \"Scale Diff Base MR\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRXYZ\" -ln \"u_ScaleDiffBaseMRXYZ\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_ScaleDiffBaseMR\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRX\" -ln \"u_ScaleDiffBaseMRX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRY\" -ln \"u_ScaleDiffBaseMRY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRZ\" -ln \"u_ScaleDiffBaseMRZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRW\" -ln \"u_ScaleDiffBaseMRW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMR\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Name\" -ln \"u_ScaleFGDSpec_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Type\" -ln \"u_ScaleFGDSpec_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpec\" -ln \"u_ScaleFGDSpec\" -nn \"Scale FGD Spec\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecXYZ\" -ln \"u_ScaleFGDSpecXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleFGDSpec\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecX\" -ln \"u_ScaleFGDSpecX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecY\" -ln \"u_ScaleFGDSpecY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecZ\" -ln \"u_ScaleFGDSpecZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecW\" -ln \"u_ScaleFGDSpecW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpec\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Name\" -ln \"u_ScaleIBL_Occl_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Type\" -ln \"u_ScaleIBL_Occl_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_Occl\" -ln \"u_ScaleIBL_Occl\" -nn \"Scale IBL AO(w)\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclXYZ\" -ln \"u_ScaleIBL_OcclXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleIBL_Occl\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclX\" -ln \"u_ScaleIBL_OcclX\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclY\" -ln \"u_ScaleIBL_OcclY\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclZ\" -ln \"u_ScaleIBL_OcclZ\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclW\" -ln \"u_ScaleIBL_OcclW\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_Occl\";\n\taddAttr -ci true -sn \"Position\" -ln \"Position\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Position_Name\" -ln \"Position_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"Position_Source\" -ln \"Position_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -sn \"Position_DefaultTexture\" -ln \"Position_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Position\";\n\taddAttr -ci true -sn \"Normal\" -ln \"Normal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Normal_Name\" -ln \"Normal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Source\" -ln \"Normal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -sn \"Normal_DefaultTexture\" -ln \"Normal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Normal\";\n\taddAttr -ci true -sn \"Tangent\" -ln \"Tangent\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Tangent_Name\" -ln \"Tangent_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"Tangent_Source\" -ln \"Tangent_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -sn \"Tangent_DefaultTexture\" -ln \"Tangent_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Tangent\";\n\taddAttr -ci true -sn \"Binormal\" -ln \"Binormal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Binormal_Name\" -ln \"Binormal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -h true -sn \"Binormal_Source\" -ln \"Binormal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -sn \"Binormal_DefaultTexture\" -ln \"Binormal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Binormal\";\n\taddAttr -ci true -sn \"TexCoord0\" -ln \"TexCoord0\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Name\" -ln \"TexCoord0_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Source\" -ln \"TexCoord0_Source\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -sn \"TexCoord0_DefaultTexture\" -ln \"TexCoord0_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Name\" -ln \"u_IsDoubleSided_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Type\" -ln \"u_IsDoubleSided_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsDoubleSided\" -ln \"u_IsDoubleSided\" -nn \"Double sided material?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Name\" -ln \"u_RoughnessOffset_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Type\" -ln \"u_RoughnessOffset_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessOffset\" -ln \"u_RoughnessOffset\" -nn \"Roughness offset\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 12 -smn 0 -smx 12 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Name\" -ln \"u_BurleyFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Type\" -ln \"u_BurleyFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BurleyFactor\" -ln \"u_BurleyFactor\" -nn \"Burley factor\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Name\" -ln \"u_UndoEdgeStretch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Type\" -ln \"u_UndoEdgeStretch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UndoEdgeStretch\" -ln \"u_UndoEdgeStretch\" -nn \"Undo edge stretch?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Name\" -ln \"u_IsEmissiveInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Type\" -ln \"u_IsEmissiveInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEmissiveInsRGB\" -ln \"u_IsEmissiveInsRGB\" -nn \"sRGB emissive?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Name\" -ln \"u_EnvRotationAngle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Type\" -ln \"u_EnvRotationAngle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_EnvRotationAngle\" -ln \"u_EnvRotationAngle\" -nn \"Environment Rotation\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Name\" -ln \"u_FlipEnvMapZ_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Type\" -ln \"u_FlipEnvMapZ_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_FlipEnvMapZ\" -ln \"u_FlipEnvMapZ\" -nn \"Flip environment Z?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Name\" -ln \"u_IsEnvMapInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Type\" -ln \"u_IsEnvMapInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInsRGB\" -ln \"u_IsEnvMapInsRGB\" -nn \"sRGB environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Name\" -ln \"u_IsEnvMapInRGBM_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Type\" -ln \"u_IsEnvMapInRGBM_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInRGBM\" -ln \"u_IsEnvMapInRGBM\" -nn \"RGBM environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Name\" -ln \"u_IsBRDFsSRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Type\" -ln \"u_IsBRDFsSRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBRDFsSRGB\" -ln \"u_IsBRDFsSRGB\" -nn \"sRGB BRDF table?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Name\" -ln \"u_IsBaseColorInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Type\" -ln \"u_IsBaseColorInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBaseColorInsRGB\" -ln \"u_IsBaseColorInsRGB\" -nn \"sRGB basecolor?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\tsetAttr \".vpar\" -type \"stringArray\" 5 \"Position\" \"Normal\" \"Tangent\" \"Binormal\" \"TexCoord0\"  ;\n\tsetAttr \".upar\" -type \"stringArray\" 34 \"u_LightColor\" \"u_LightIntensity\" \"u_LightRotation\" \"u_LightPitch\" \"u_BaseColorTexture\" \"u_BaseColorFactor\" \"u_MetallicTexture\" \"u_MetallicStrength\" \"u_RoughnessTexture\" \"u_RoughnessStrength\" \"u_OcclusionTexture\" \"u_OcclusionStrength\" \"u_NormalTexture\" \"u_NormalScale\" \"u_EmissiveTexture\" \"u_EmissiveColor\" \"u_DiffuseEnvTexture\" \"u_SpecularEnvTexture\" \"u_brdfTexture\" \"u_IsDoubleSided\" \"u_UseMeshTangents\" \"u_RoughnessOffset\" \"u_ScaleDiffBaseMR\" \"u_BurleyFactor\" \"u_ScaleFGDSpec\" \"u_UndoEdgeStretch\" \"u_ScaleIBL_Occl\" \"u_IsEmissiveInsRGB\" \"u_EnvRotationAngle\" \"u_FlipEnvMapZ\" \"u_IsEnvMapInsRGB\" \"u_IsEnvMapInRGBM\" \"u_IsBRDFsSRGB\" \"u_IsBaseColorInsRGB\"  ;\n\tsetAttr \".s\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/shaders/glTF_PBR.ogsfx\";\n\tsetAttr \".t\" -type \"string\" \"Solid\";\n\tsetAttr \".u_LightColor_Name\" -type \"string\" \"u_LightColor\";\n\tsetAttr \".u_LightColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_LightColor\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_LightIntensity_Name\" -type \"string\" \"u_LightIntensity\";\n\tsetAttr \".u_LightIntensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightIntensity\" 1;\n\tsetAttr \".u_LightRotation_Name\" -type \"string\" \"u_LightRotation\";\n\tsetAttr \".u_LightRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightRotation\" 75;\n\tsetAttr \".u_LightPitch_Name\" -type \"string\" \"u_LightPitch\";\n\tsetAttr \".u_LightPitch_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightPitch\" 40;\n\tsetAttr \".u_BaseColorTexture_Name\" -type \"string\" \"u_BaseColorTexture\";\n\tsetAttr \".u_BaseColorTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_BaseColorTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_BaseColorFactor_Name\" -type \"string\" \"u_BaseColorFactor\";\n\tsetAttr \".u_BaseColorFactor_Type\" -type \"string\" \"color4x1\";\n\tsetAttr \".u_BaseColorFactorRGB\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_BaseColorFactorA\" 1;\n\tsetAttr \".u_MetallicTexture_Name\" -type \"string\" \"u_MetallicTexture\";\n\tsetAttr \".u_MetallicTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_MetallicTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_MetallicStrength_Name\" -type \"string\" \"u_MetallicStrength\";\n\tsetAttr \".u_MetallicStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_MetallicStrength\" 1;\n\tsetAttr \".u_RoughnessTexture_Name\" -type \"string\" \"u_RoughnessTexture\";\n\tsetAttr \".u_RoughnessTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_RoughnessTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_RoughnessStrength_Name\" -type \"string\" \"u_RoughnessStrength\";\n\tsetAttr \".u_RoughnessStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_RoughnessStrength\" 0;\n\tsetAttr \".u_OcclusionTexture_Name\" -type \"string\" \"u_OcclusionTexture\";\n\tsetAttr \".u_OcclusionTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_OcclusionTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_OcclusionStrength_Name\" -type \"string\" \"u_OcclusionStrength\";\n\tsetAttr \".u_OcclusionStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_OcclusionStrength\" 1;\n\tsetAttr \".u_NormalTexture_Name\" -type \"string\" \"u_NormalTexture\";\n\tsetAttr \".u_NormalTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_NormalTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_NormalScale_Name\" -type \"string\" \"u_NormalScale\";\n\tsetAttr \".u_NormalScale_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_NormalScale\" 1;\n\tsetAttr \".u_EmissiveTexture_Name\" -type \"string\" \"u_EmissiveTexture\";\n\tsetAttr \".u_EmissiveTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_EmissiveTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_EmissiveColor_Name\" -type \"string\" \"u_EmissiveColor\";\n\tsetAttr \".u_EmissiveColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_EmissiveColor\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_DiffuseEnvTexture_Name\" -type \"string\" \"u_DiffuseEnvTexture\";\n\tsetAttr \".u_DiffuseEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_DiffuseEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_SpecularEnvTexture_Name\" -type \"string\" \"u_SpecularEnvTexture\";\n\tsetAttr \".u_SpecularEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_SpecularEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_brdfTexture_Name\" -type \"string\" \"u_brdfTexture\";\n\tsetAttr \".u_brdfTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_brdfTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_UseMeshTangents_Name\" -type \"string\" \"u_UseMeshTangents\";\n\tsetAttr \".u_UseMeshTangents_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UseMeshTangents\" yes;\n\tsetAttr \".u_ScaleDiffBaseMR_Name\" -type \"string\" \"u_ScaleDiffBaseMR\";\n\tsetAttr \".u_ScaleDiffBaseMR_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleDiffBaseMRXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleDiffBaseMRW\" 0;\n\tsetAttr \".u_ScaleFGDSpec_Name\" -type \"string\" \"u_ScaleFGDSpec\";\n\tsetAttr \".u_ScaleFGDSpec_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleFGDSpecXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleFGDSpecW\" 0;\n\tsetAttr \".u_ScaleIBL_Occl_Name\" -type \"string\" \"u_ScaleIBL_Occl\";\n\tsetAttr \".u_ScaleIBL_Occl_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleIBL_OcclXYZ\" -type \"float3\" 1 1 0 ;\n\tsetAttr \".u_ScaleIBL_OcclW\" 1;\n\tsetAttr \".Position_Name\" -type \"string\" \"Position\";\n\tsetAttr \".Position_Source\" -type \"string\" \"position\";\n\tsetAttr \".Normal_Name\" -type \"string\" \"Normal\";\n\tsetAttr \".Normal_Source\" -type \"string\" \"normal\";\n\tsetAttr \".Tangent_Name\" -type \"string\" \"Tangent\";\n\tsetAttr \".Tangent_Source\" -type \"string\" \"tangent:map1\";\n\tsetAttr \".Binormal_Name\" -type \"string\" \"Binormal\";\n\tsetAttr \".Binormal_Source\" -type \"string\" \"binormal:map1\";\n\tsetAttr \".TexCoord0_Name\" -type \"string\" \"TexCoord0\";\n\tsetAttr \".TexCoord0_Source\" -type \"string\" \"uv:map1\";\n\tsetAttr \".u_IsDoubleSided_Name\" -type \"string\" \"u_IsDoubleSided\";\n\tsetAttr \".u_IsDoubleSided_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsDoubleSided\" no;\n\tsetAttr \".u_RoughnessOffset_Name\" -type \"string\" \"u_RoughnessOffset\";\n\tsetAttr \".u_RoughnessOffset_Type\" -type \"string\" \"int\";\n\tsetAttr \".u_RoughnessOffset\" 0;\n\tsetAttr \".u_BurleyFactor_Name\" -type \"string\" \"u_BurleyFactor\";\n\tsetAttr \".u_BurleyFactor_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_BurleyFactor\" 0;\n\tsetAttr \".u_UndoEdgeStretch_Name\" -type \"string\" \"u_UndoEdgeStretch\";\n\tsetAttr \".u_UndoEdgeStretch_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UndoEdgeStretch\" no;\n\tsetAttr \".u_IsEmissiveInsRGB_Name\" -type \"string\" \"u_IsEmissiveInsRGB\";\n\tsetAttr \".u_IsEmissiveInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEmissiveInsRGB\" yes;\n\tsetAttr \".u_EnvRotationAngle_Name\" -type \"string\" \"u_EnvRotationAngle\";\n\tsetAttr \".u_EnvRotationAngle_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_EnvRotationAngle\" 0;\n\tsetAttr \".u_FlipEnvMapZ_Name\" -type \"string\" \"u_FlipEnvMapZ\";\n\tsetAttr \".u_FlipEnvMapZ_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_FlipEnvMapZ\" yes;\n\tsetAttr \".u_IsEnvMapInsRGB_Name\" -type \"string\" \"u_IsEnvMapInsRGB\";\n\tsetAttr \".u_IsEnvMapInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInsRGB\" no;\n\tsetAttr \".u_IsEnvMapInRGBM_Name\" -type \"string\" \"u_IsEnvMapInRGBM\";\n\tsetAttr \".u_IsEnvMapInRGBM_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInRGBM\" no;\n\tsetAttr \".u_IsBRDFsSRGB_Name\" -type \"string\" \"u_IsBRDFsSRGB\";\n\tsetAttr \".u_IsBRDFsSRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBRDFsSRGB\" no;\n\tsetAttr \".u_IsBaseColorInsRGB_Name\" -type \"string\" \"u_IsBaseColorInsRGB\";\n\tsetAttr \".u_IsBaseColorInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBaseColorInsRGB\" yes;\ncreateNode shadingEngine -n \"GLSLShader1SG\";\n\trename -uid \"4EE0CA71-4E0B-7B0C-254F-6095031017AA\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"706C3E98-416F-F2DF-2500-1A92DBD78272\";\ncreateNode file -n \"normal_map_file\";\n\trename -uid \"5ABB11F6-4D95-8A68-EBDF-2193D9A2BCB4\";\n\tsetAttr \".ail\" yes;\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//images/cube_flat-on-soft_normal.png\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture1\";\n\trename -uid \"5B9C4307-43A2-503B-5D24-1CB25BA4B9D8\";\ncreateNode file -n \"file2\";\n\trename -uid \"982B60E8-49EF-950C-22D8-46B961EC0928\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_diffuse_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture2\";\n\trename -uid \"2AB7DD0A-4CA8-E0E9-ED17-60B9E2F22150\";\ncreateNode file -n \"file3\";\n\trename -uid \"6C3DF0C1-4D69-E81A-D4AA-81877FA5B85F\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_specular_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture3\";\n\trename -uid \"67527172-413A-2B90-71F7-9C8B572E6A03\";\ncreateNode file -n \"file4\";\n\trename -uid \"33523EDA-497D-CAB9-C036-DB995B883EA2\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/brdfLUT.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture4\";\n\trename -uid \"F68A3134-4D04-8867-6E4C-DD981877D25B\";\ncreateNode bump2d -n \"bump2d1\";\n\trename -uid \"0E43EF60-49DF-DBF7-CE83-8AA3C49273DA\";\n\tsetAttr \".bi\" 1;\n\tsetAttr \".vc1\" -type \"float3\" 0 5.9999998e-05 0 ;\n\tsetAttr \".vc2\" -type \"float3\" 9.9999997e-06 9.9999997e-06 0 ;\ncreateNode GLSLShader -n \"PBR_Shader_no_normal_map\";\n\trename -uid \"94301892-47FC-D9FE-9EB9-2289BD4C7887\";\n\taddAttr -ci true -sn \"Light_0_use_implicit_lighting\" -ln \"Light_0_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_0_connected_light\" -ln \"Light_0_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_1_use_implicit_lighting\" -ln \"Light_1_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_1_connected_light\" -ln \"Light_1_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_2_use_implicit_lighting\" -ln \"Light_2_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_2_connected_light\" -ln \"Light_2_connected_light\" \n\t\t-at \"message\";\n\taddAttr -s false -is true -ci true -k true -sn \"te\" -ln \"techniqueEnum\" -nn \"Technique\" \n\t\t-min 0 -max 1 -en \"Solid:Transparent\" -at \"enum\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Name\" -ln \"u_LightColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Type\" -ln \"u_LightColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_LightColor\" -ln \"u_LightColor\" -nn \"Light Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_LightColorR\" -ln \"u_LightColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorG\" -ln \"u_LightColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorB\" -ln \"u_LightColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Name\" -ln \"u_LightIntensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Type\" -ln \"u_LightIntensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightIntensity\" -ln \"u_LightIntensity\" -nn \"Light Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 10 -smn 0 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Name\" -ln \"u_LightRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Type\" -ln \"u_LightRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightRotation\" -ln \"u_LightRotation\" -nn \"Light rotation (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 75 -min 0 -max 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Name\" -ln \"u_LightPitch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Type\" -ln \"u_LightPitch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightPitch\" -ln \"u_LightPitch\" -nn \"Light pitch (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 40 -min -90 -max 90 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Name\" -ln \"u_BaseColorTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Type\" -ln \"u_BaseColorTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorTexture\" -ln \"u_BaseColorTexture\" \n\t\t-nn \"Base color map (sRGB)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureR\" -ln \"u_BaseColorTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureG\" -ln \"u_BaseColorTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureB\" -ln \"u_BaseColorTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Name\" -ln \"u_BaseColorFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Type\" -ln \"u_BaseColorFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactor\" -ln \"u_BaseColorFactor\" -nn \"Base color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorFactorRGB\" -ln \"u_BaseColorFactorRGB\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_BaseColorFactor\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorR\" -ln \"u_BaseColorFactorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorG\" -ln \"u_BaseColorFactorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorB\" -ln \"u_BaseColorFactorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorA\" -ln \"u_BaseColorFactorA\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactor\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Name\" -ln \"u_MetallicTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Type\" -ln \"u_MetallicTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_MetallicTexture\" -ln \"u_MetallicTexture\" -nn \"Metallic map (B,LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_MetallicTextureR\" -ln \"u_MetallicTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureG\" -ln \"u_MetallicTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureB\" -ln \"u_MetallicTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Name\" -ln \"u_MetallicStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Type\" -ln \"u_MetallicStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_MetallicStrength\" -ln \"u_MetallicStrength\" -nn \"Metallic strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Name\" -ln \"u_RoughnessTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Type\" -ln \"u_RoughnessTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_RoughnessTexture\" -ln \"u_RoughnessTexture\" \n\t\t-nn \"Roughness map (G,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureR\" -ln \"u_RoughnessTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureG\" -ln \"u_RoughnessTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureB\" -ln \"u_RoughnessTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Name\" -ln \"u_RoughnessStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Type\" -ln \"u_RoughnessStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessStrength\" -ln \"u_RoughnessStrength\" -nn \"Roughness strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Name\" -ln \"u_OcclusionTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Type\" -ln \"u_OcclusionTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_OcclusionTexture\" -ln \"u_OcclusionTexture\" \n\t\t-nn \"Occlusion map (R,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureR\" -ln \"u_OcclusionTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureG\" -ln \"u_OcclusionTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureB\" -ln \"u_OcclusionTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Name\" -ln \"u_OcclusionStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Type\" -ln \"u_OcclusionStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_OcclusionStrength\" -ln \"u_OcclusionStrength\" -nn \"Occlusion strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Name\" -ln \"u_NormalTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Type\" -ln \"u_NormalTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_NormalTexture\" -ln \"u_NormalTexture\" -nn \"Normal map (LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_NormalTextureR\" -ln \"u_NormalTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureG\" -ln \"u_NormalTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureB\" -ln \"u_NormalTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Name\" -ln \"u_NormalScale_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Type\" -ln \"u_NormalScale_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_NormalScale\" -ln \"u_NormalScale\" -nn \"Normal scale\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Name\" -ln \"u_EmissiveTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Type\" -ln \"u_EmissiveTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveTexture\" -ln \"u_EmissiveTexture\" -nn \"Emissive map (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureR\" -ln \"u_EmissiveTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureG\" -ln \"u_EmissiveTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureB\" -ln \"u_EmissiveTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Name\" -ln \"u_EmissiveColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Type\" -ln \"u_EmissiveColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveColor\" -ln \"u_EmissiveColor\" -nn \"Emissive color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveColorR\" -ln \"u_EmissiveColorR\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorG\" -ln \"u_EmissiveColorG\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorB\" -ln \"u_EmissiveColorB\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Name\" -ln \"u_DiffuseEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Type\" -ln \"u_DiffuseEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_DiffuseEnvTexture\" -ln \"u_DiffuseEnvTexture\" \n\t\t-nn \"Diffuse env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureR\" -ln \"u_DiffuseEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureG\" -ln \"u_DiffuseEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureB\" -ln \"u_DiffuseEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Name\" -ln \"u_SpecularEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Type\" -ln \"u_SpecularEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_SpecularEnvTexture\" -ln \"u_SpecularEnvTexture\" \n\t\t-nn \"Specular env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureR\" -ln \"u_SpecularEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureG\" -ln \"u_SpecularEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureB\" -ln \"u_SpecularEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Name\" -ln \"u_brdfTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Type\" -ln \"u_brdfTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_brdfTexture\" -ln \"u_brdfTexture\" -nn \"BRDF LUT (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_brdfTextureR\" -ln \"u_brdfTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureG\" -ln \"u_brdfTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureB\" -ln \"u_brdfTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Name\" -ln \"u_UseMeshTangents_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Type\" -ln \"u_UseMeshTangents_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UseMeshTangents\" -ln \"u_UseMeshTangents\" -nn \"Use mesh tangents?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Name\" -ln \"u_ScaleDiffBaseMR_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Type\" -ln \"u_ScaleDiffBaseMR_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMR\" -ln \"u_ScaleDiffBaseMR\" -nn \"Scale Diff Base MR\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRXYZ\" -ln \"u_ScaleDiffBaseMRXYZ\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_ScaleDiffBaseMR\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRX\" -ln \"u_ScaleDiffBaseMRX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRY\" -ln \"u_ScaleDiffBaseMRY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRZ\" -ln \"u_ScaleDiffBaseMRZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRW\" -ln \"u_ScaleDiffBaseMRW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMR\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Name\" -ln \"u_ScaleFGDSpec_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Type\" -ln \"u_ScaleFGDSpec_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpec\" -ln \"u_ScaleFGDSpec\" -nn \"Scale FGD Spec\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecXYZ\" -ln \"u_ScaleFGDSpecXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleFGDSpec\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecX\" -ln \"u_ScaleFGDSpecX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecY\" -ln \"u_ScaleFGDSpecY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecZ\" -ln \"u_ScaleFGDSpecZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecW\" -ln \"u_ScaleFGDSpecW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpec\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Name\" -ln \"u_ScaleIBL_Occl_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Type\" -ln \"u_ScaleIBL_Occl_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_Occl\" -ln \"u_ScaleIBL_Occl\" -nn \"Scale IBL AO(w)\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclXYZ\" -ln \"u_ScaleIBL_OcclXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleIBL_Occl\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclX\" -ln \"u_ScaleIBL_OcclX\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclY\" -ln \"u_ScaleIBL_OcclY\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclZ\" -ln \"u_ScaleIBL_OcclZ\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclW\" -ln \"u_ScaleIBL_OcclW\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_Occl\";\n\taddAttr -ci true -sn \"Position\" -ln \"Position\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Position_Name\" -ln \"Position_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"Position_Source\" -ln \"Position_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -sn \"Position_DefaultTexture\" -ln \"Position_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Position\";\n\taddAttr -ci true -sn \"Normal\" -ln \"Normal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Normal_Name\" -ln \"Normal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Source\" -ln \"Normal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -sn \"Normal_DefaultTexture\" -ln \"Normal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Normal\";\n\taddAttr -ci true -sn \"Tangent\" -ln \"Tangent\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Tangent_Name\" -ln \"Tangent_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"Tangent_Source\" -ln \"Tangent_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -sn \"Tangent_DefaultTexture\" -ln \"Tangent_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Tangent\";\n\taddAttr -ci true -sn \"Binormal\" -ln \"Binormal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Binormal_Name\" -ln \"Binormal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -h true -sn \"Binormal_Source\" -ln \"Binormal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -sn \"Binormal_DefaultTexture\" -ln \"Binormal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Binormal\";\n\taddAttr -ci true -sn \"TexCoord0\" -ln \"TexCoord0\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Name\" -ln \"TexCoord0_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Source\" -ln \"TexCoord0_Source\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -sn \"TexCoord0_DefaultTexture\" -ln \"TexCoord0_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Name\" -ln \"u_IsDoubleSided_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Type\" -ln \"u_IsDoubleSided_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsDoubleSided\" -ln \"u_IsDoubleSided\" -nn \"Double sided material?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Name\" -ln \"u_RoughnessOffset_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Type\" -ln \"u_RoughnessOffset_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessOffset\" -ln \"u_RoughnessOffset\" -nn \"Roughness offset\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 12 -smn 0 -smx 12 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Name\" -ln \"u_BurleyFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Type\" -ln \"u_BurleyFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BurleyFactor\" -ln \"u_BurleyFactor\" -nn \"Burley factor\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Name\" -ln \"u_UndoEdgeStretch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Type\" -ln \"u_UndoEdgeStretch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UndoEdgeStretch\" -ln \"u_UndoEdgeStretch\" -nn \"Undo edge stretch?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Name\" -ln \"u_IsEmissiveInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Type\" -ln \"u_IsEmissiveInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEmissiveInsRGB\" -ln \"u_IsEmissiveInsRGB\" -nn \"sRGB emissive?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Name\" -ln \"u_EnvRotationAngle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Type\" -ln \"u_EnvRotationAngle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_EnvRotationAngle\" -ln \"u_EnvRotationAngle\" -nn \"Environment Rotation\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Name\" -ln \"u_FlipEnvMapZ_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Type\" -ln \"u_FlipEnvMapZ_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_FlipEnvMapZ\" -ln \"u_FlipEnvMapZ\" -nn \"Flip environment Z?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Name\" -ln \"u_IsEnvMapInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Type\" -ln \"u_IsEnvMapInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInsRGB\" -ln \"u_IsEnvMapInsRGB\" -nn \"sRGB environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Name\" -ln \"u_IsEnvMapInRGBM_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Type\" -ln \"u_IsEnvMapInRGBM_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInRGBM\" -ln \"u_IsEnvMapInRGBM\" -nn \"RGBM environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Name\" -ln \"u_IsBRDFsSRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Type\" -ln \"u_IsBRDFsSRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBRDFsSRGB\" -ln \"u_IsBRDFsSRGB\" -nn \"sRGB BRDF table?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Name\" -ln \"u_IsBaseColorInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Type\" -ln \"u_IsBaseColorInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBaseColorInsRGB\" -ln \"u_IsBaseColorInsRGB\" -nn \"sRGB basecolor?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\tsetAttr \".vpar\" -type \"stringArray\" 5 \"Position\" \"Normal\" \"Tangent\" \"Binormal\" \"TexCoord0\"  ;\n\tsetAttr \".upar\" -type \"stringArray\" 34 \"u_LightColor\" \"u_LightIntensity\" \"u_LightRotation\" \"u_LightPitch\" \"u_BaseColorTexture\" \"u_BaseColorFactor\" \"u_MetallicTexture\" \"u_MetallicStrength\" \"u_RoughnessTexture\" \"u_RoughnessStrength\" \"u_OcclusionTexture\" \"u_OcclusionStrength\" \"u_NormalTexture\" \"u_NormalScale\" \"u_EmissiveTexture\" \"u_EmissiveColor\" \"u_DiffuseEnvTexture\" \"u_SpecularEnvTexture\" \"u_brdfTexture\" \"u_IsDoubleSided\" \"u_UseMeshTangents\" \"u_RoughnessOffset\" \"u_ScaleDiffBaseMR\" \"u_BurleyFactor\" \"u_ScaleFGDSpec\" \"u_UndoEdgeStretch\" \"u_ScaleIBL_Occl\" \"u_IsEmissiveInsRGB\" \"u_EnvRotationAngle\" \"u_FlipEnvMapZ\" \"u_IsEnvMapInsRGB\" \"u_IsEnvMapInRGBM\" \"u_IsBRDFsSRGB\" \"u_IsBaseColorInsRGB\"  ;\n\tsetAttr \".s\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/shaders/glTF_PBR.ogsfx\";\n\tsetAttr \".t\" -type \"string\" \"Solid\";\n\tsetAttr \".u_LightColor_Name\" -type \"string\" \"u_LightColor\";\n\tsetAttr \".u_LightColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_LightColor\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_LightIntensity_Name\" -type \"string\" \"u_LightIntensity\";\n\tsetAttr \".u_LightIntensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightIntensity\" 1;\n\tsetAttr \".u_LightRotation_Name\" -type \"string\" \"u_LightRotation\";\n\tsetAttr \".u_LightRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightRotation\" 75;\n\tsetAttr \".u_LightPitch_Name\" -type \"string\" \"u_LightPitch\";\n\tsetAttr \".u_LightPitch_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightPitch\" 40;\n\tsetAttr \".u_BaseColorTexture_Name\" -type \"string\" \"u_BaseColorTexture\";\n\tsetAttr \".u_BaseColorTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_BaseColorTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_BaseColorFactor_Name\" -type \"string\" \"u_BaseColorFactor\";\n\tsetAttr \".u_BaseColorFactor_Type\" -type \"string\" \"color4x1\";\n\tsetAttr \".u_BaseColorFactorRGB\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_BaseColorFactorA\" 1;\n\tsetAttr \".u_MetallicTexture_Name\" -type \"string\" \"u_MetallicTexture\";\n\tsetAttr \".u_MetallicTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_MetallicTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_MetallicStrength_Name\" -type \"string\" \"u_MetallicStrength\";\n\tsetAttr \".u_MetallicStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_MetallicStrength\" 1;\n\tsetAttr \".u_RoughnessTexture_Name\" -type \"string\" \"u_RoughnessTexture\";\n\tsetAttr \".u_RoughnessTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_RoughnessTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_RoughnessStrength_Name\" -type \"string\" \"u_RoughnessStrength\";\n\tsetAttr \".u_RoughnessStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_RoughnessStrength\" 0;\n\tsetAttr \".u_OcclusionTexture_Name\" -type \"string\" \"u_OcclusionTexture\";\n\tsetAttr \".u_OcclusionTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_OcclusionTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_OcclusionStrength_Name\" -type \"string\" \"u_OcclusionStrength\";\n\tsetAttr \".u_OcclusionStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_OcclusionStrength\" 1;\n\tsetAttr \".u_NormalTexture_Name\" -type \"string\" \"u_NormalTexture\";\n\tsetAttr \".u_NormalTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_NormalTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_NormalScale_Name\" -type \"string\" \"u_NormalScale\";\n\tsetAttr \".u_NormalScale_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_NormalScale\" 1;\n\tsetAttr \".u_EmissiveTexture_Name\" -type \"string\" \"u_EmissiveTexture\";\n\tsetAttr \".u_EmissiveTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_EmissiveTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_EmissiveColor_Name\" -type \"string\" \"u_EmissiveColor\";\n\tsetAttr \".u_EmissiveColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_EmissiveColor\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_DiffuseEnvTexture_Name\" -type \"string\" \"u_DiffuseEnvTexture\";\n\tsetAttr \".u_DiffuseEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_DiffuseEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_SpecularEnvTexture_Name\" -type \"string\" \"u_SpecularEnvTexture\";\n\tsetAttr \".u_SpecularEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_SpecularEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_brdfTexture_Name\" -type \"string\" \"u_brdfTexture\";\n\tsetAttr \".u_brdfTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_brdfTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_UseMeshTangents_Name\" -type \"string\" \"u_UseMeshTangents\";\n\tsetAttr \".u_UseMeshTangents_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UseMeshTangents\" no;\n\tsetAttr \".u_ScaleDiffBaseMR_Name\" -type \"string\" \"u_ScaleDiffBaseMR\";\n\tsetAttr \".u_ScaleDiffBaseMR_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleDiffBaseMRXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleDiffBaseMRW\" 0;\n\tsetAttr \".u_ScaleFGDSpec_Name\" -type \"string\" \"u_ScaleFGDSpec\";\n\tsetAttr \".u_ScaleFGDSpec_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleFGDSpecXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleFGDSpecW\" 0;\n\tsetAttr \".u_ScaleIBL_Occl_Name\" -type \"string\" \"u_ScaleIBL_Occl\";\n\tsetAttr \".u_ScaleIBL_Occl_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleIBL_OcclXYZ\" -type \"float3\" 1 1 0 ;\n\tsetAttr \".u_ScaleIBL_OcclW\" 1;\n\tsetAttr \".Position_Name\" -type \"string\" \"Position\";\n\tsetAttr \".Position_Source\" -type \"string\" \"position\";\n\tsetAttr \".Normal_Name\" -type \"string\" \"Normal\";\n\tsetAttr \".Normal_Source\" -type \"string\" \"normal\";\n\tsetAttr \".Tangent_Name\" -type \"string\" \"Tangent\";\n\tsetAttr \".Tangent_Source\" -type \"string\" \"tangent:map1\";\n\tsetAttr \".Binormal_Name\" -type \"string\" \"Binormal\";\n\tsetAttr \".Binormal_Source\" -type \"string\" \"binormal:map1\";\n\tsetAttr \".TexCoord0_Name\" -type \"string\" \"TexCoord0\";\n\tsetAttr \".TexCoord0_Source\" -type \"string\" \"uv:map1\";\n\tsetAttr \".u_IsDoubleSided_Name\" -type \"string\" \"u_IsDoubleSided\";\n\tsetAttr \".u_IsDoubleSided_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsDoubleSided\" no;\n\tsetAttr \".u_RoughnessOffset_Name\" -type \"string\" \"u_RoughnessOffset\";\n\tsetAttr \".u_RoughnessOffset_Type\" -type \"string\" \"int\";\n\tsetAttr \".u_RoughnessOffset\" 0;\n\tsetAttr \".u_BurleyFactor_Name\" -type \"string\" \"u_BurleyFactor\";\n\tsetAttr \".u_BurleyFactor_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_BurleyFactor\" 0;\n\tsetAttr \".u_UndoEdgeStretch_Name\" -type \"string\" \"u_UndoEdgeStretch\";\n\tsetAttr \".u_UndoEdgeStretch_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UndoEdgeStretch\" no;\n\tsetAttr \".u_IsEmissiveInsRGB_Name\" -type \"string\" \"u_IsEmissiveInsRGB\";\n\tsetAttr \".u_IsEmissiveInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEmissiveInsRGB\" yes;\n\tsetAttr \".u_EnvRotationAngle_Name\" -type \"string\" \"u_EnvRotationAngle\";\n\tsetAttr \".u_EnvRotationAngle_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_EnvRotationAngle\" 0;\n\tsetAttr \".u_FlipEnvMapZ_Name\" -type \"string\" \"u_FlipEnvMapZ\";\n\tsetAttr \".u_FlipEnvMapZ_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_FlipEnvMapZ\" yes;\n\tsetAttr \".u_IsEnvMapInsRGB_Name\" -type \"string\" \"u_IsEnvMapInsRGB\";\n\tsetAttr \".u_IsEnvMapInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInsRGB\" no;\n\tsetAttr \".u_IsEnvMapInRGBM_Name\" -type \"string\" \"u_IsEnvMapInRGBM\";\n\tsetAttr \".u_IsEnvMapInRGBM_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInRGBM\" no;\n\tsetAttr \".u_IsBRDFsSRGB_Name\" -type \"string\" \"u_IsBRDFsSRGB\";\n\tsetAttr \".u_IsBRDFsSRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBRDFsSRGB\" no;\n\tsetAttr \".u_IsBaseColorInsRGB_Name\" -type \"string\" \"u_IsBaseColorInsRGB\";\n\tsetAttr \".u_IsBaseColorInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBaseColorInsRGB\" yes;\ncreateNode shadingEngine -n \"GLSLShader2SG\";\n\trename -uid \"F6CBDDE3-43A1-B911-B13D-BAB99FED35DC\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo3\";\n\trename -uid \"4C9D9C12-4E25-EAD6-EACF-F582748844C7\";\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"95CE6C44-4E28-FFFA-77BA-BA8A03B7C49D\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 1\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange -62.790346 510.290346 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 1 -size 10 -divisions 4 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"08561F58-4853-A05E-496B-949BFCA8EE79\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode phong -n \"Material\";\n\trename -uid \"A3225620-426C-0834-4BF4-06A429CEB74C\";\n\tsetAttr \".c\" -type \"float3\" 0.80000001 0.80000001 0.80000001 ;\n\tsetAttr \".sc\" -type \"float3\" 0.25 0.25 0.25 ;\n\tsetAttr \".rfl\" 0;\n\tsetAttr \".rc\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".cp\" 9.6078433990478516;\ncreateNode shadingEngine -n \"CubeSG\";\n\trename -uid \"00FB02CC-4DA8-0AAC-A0F0-A29259A97C4E\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo4\";\n\trename -uid \"71748155-4101-A371-7D57-D38F82638587\";\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"776AA4A6-4247-D1FA-12B2-2DA815FEABD9\";\n\tsetAttr \".c\" -type \"float3\" 0.51632047 0.51632047 0.51632047 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"448C0155-40A6-A2A4-3247-30A316E0F3AE\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo5\";\n\trename -uid \"E5C82F35-416A-E38A-7E9F-328C08C6EA4B\";\ncreateNode groupId -n \"groupId1\";\n\trename -uid \"86E755E0-451C-02C3-BF00-CF92E9B38C2F\";\n\tsetAttr \".ihi\" 0;\ncreateNode phong -n \"GLSL_PBR_Shader1\";\n\trename -uid \"695840ED-42E2-827F-2930-0DA54F0C0E58\";\n\tsetAttr \".dc\" 1;\n\tsetAttr \".ambc\" -type \"float3\" 0.40000001 0.40000001 0.40000001 ;\n\tsetAttr \".sc\" -type \"float3\" 0.30000001 0.30000001 0.30000001 ;\n\tsetAttr \".rfl\" 0;\ncreateNode shadingEngine -n \"SoftCubeSG\";\n\trename -uid \"60048E74-4C30-E2E9-9DBB-36B4DCFBE56C\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo6\";\n\trename -uid \"9F38497B-441C-EC7D-BA75-82AAAE52D677\";\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"F64E84EE-4E95-6D61-CF83-D9A08D374C46\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 0;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 8 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 10 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderUtilityList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 5 \".u\";\nselect -ne :defaultRenderingList1;\nselect -ne :defaultTextureList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 4 \".tx\";\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"groupId1.id\" \"polySurfaceShape2.iog.og[0].gid\";\nconnectAttr \"GLSLShader1SG.mwc\" \"polySurfaceShape2.iog.og[0].gco\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"surfaceSamplingEnvelopeShaderSG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader1SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"CubeSG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"SoftCubeSG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"surfaceSamplingEnvelopeShaderSG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader1SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"CubeSG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"SoftCubeSG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"surfaceSamplingEnvelopeShader.oc\" \"surfaceSamplingEnvelopeShaderSG.ss\"\n\t\t;\nconnectAttr \"surfaceSamplingEnvelopeShaderSG.msg\" \"materialInfo1.sg\";\nconnectAttr \"surfaceSamplingEnvelopeShader.msg\" \"materialInfo1.m\";\nconnectAttr \"normal_map_file.oc\" \"GLSL_PBR_Shader.u_NormalTexture\";\nconnectAttr \"file2.oc\" \"GLSL_PBR_Shader.u_DiffuseEnvTexture\";\nconnectAttr \"file3.oc\" \"GLSL_PBR_Shader.u_SpecularEnvTexture\";\nconnectAttr \"file4.oc\" \"GLSL_PBR_Shader.u_brdfTexture\";\nconnectAttr \"GLSL_PBR_Shader.oc\" \"GLSLShader1SG.ss\";\nconnectAttr \"polySurfaceShape2.iog.og[0]\" \"GLSLShader1SG.dsm\" -na;\nconnectAttr \"SoftCubeShape.iog\" \"GLSLShader1SG.dsm\" -na;\nconnectAttr \"groupId1.msg\" \"GLSLShader1SG.gn\" -na;\nconnectAttr \"GLSLShader1SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"GLSL_PBR_Shader.msg\" \"materialInfo2.m\";\nconnectAttr \"GLSL_PBR_Shader.msg\" \"materialInfo2.t\" -na;\nconnectAttr \":defaultColorMgtGlobals.cme\" \"normal_map_file.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"normal_map_file.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"normal_map_file.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"normal_map_file.ws\";\nconnectAttr \"place2dTexture1.c\" \"normal_map_file.c\";\nconnectAttr \"place2dTexture1.tf\" \"normal_map_file.tf\";\nconnectAttr \"place2dTexture1.rf\" \"normal_map_file.rf\";\nconnectAttr \"place2dTexture1.mu\" \"normal_map_file.mu\";\nconnectAttr \"place2dTexture1.mv\" \"normal_map_file.mv\";\nconnectAttr \"place2dTexture1.s\" \"normal_map_file.s\";\nconnectAttr \"place2dTexture1.wu\" \"normal_map_file.wu\";\nconnectAttr \"place2dTexture1.wv\" \"normal_map_file.wv\";\nconnectAttr \"place2dTexture1.re\" \"normal_map_file.re\";\nconnectAttr \"place2dTexture1.of\" \"normal_map_file.of\";\nconnectAttr \"place2dTexture1.r\" \"normal_map_file.ro\";\nconnectAttr \"place2dTexture1.n\" \"normal_map_file.n\";\nconnectAttr \"place2dTexture1.vt1\" \"normal_map_file.vt1\";\nconnectAttr \"place2dTexture1.vt2\" \"normal_map_file.vt2\";\nconnectAttr \"place2dTexture1.vt3\" \"normal_map_file.vt3\";\nconnectAttr \"place2dTexture1.vc1\" \"normal_map_file.vc1\";\nconnectAttr \"place2dTexture1.o\" \"normal_map_file.uv\";\nconnectAttr \"place2dTexture1.ofs\" \"normal_map_file.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file2.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file2.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file2.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file2.ws\";\nconnectAttr \"place2dTexture2.c\" \"file2.c\";\nconnectAttr \"place2dTexture2.tf\" \"file2.tf\";\nconnectAttr \"place2dTexture2.rf\" \"file2.rf\";\nconnectAttr \"place2dTexture2.mu\" \"file2.mu\";\nconnectAttr \"place2dTexture2.mv\" \"file2.mv\";\nconnectAttr \"place2dTexture2.s\" \"file2.s\";\nconnectAttr \"place2dTexture2.wu\" \"file2.wu\";\nconnectAttr \"place2dTexture2.wv\" \"file2.wv\";\nconnectAttr \"place2dTexture2.re\" \"file2.re\";\nconnectAttr \"place2dTexture2.of\" \"file2.of\";\nconnectAttr \"place2dTexture2.r\" \"file2.ro\";\nconnectAttr \"place2dTexture2.n\" \"file2.n\";\nconnectAttr \"place2dTexture2.vt1\" \"file2.vt1\";\nconnectAttr \"place2dTexture2.vt2\" \"file2.vt2\";\nconnectAttr \"place2dTexture2.vt3\" \"file2.vt3\";\nconnectAttr \"place2dTexture2.vc1\" \"file2.vc1\";\nconnectAttr \"place2dTexture2.o\" \"file2.uv\";\nconnectAttr \"place2dTexture2.ofs\" \"file2.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file3.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file3.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file3.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file3.ws\";\nconnectAttr \"place2dTexture3.c\" \"file3.c\";\nconnectAttr \"place2dTexture3.tf\" \"file3.tf\";\nconnectAttr \"place2dTexture3.rf\" \"file3.rf\";\nconnectAttr \"place2dTexture3.mu\" \"file3.mu\";\nconnectAttr \"place2dTexture3.mv\" \"file3.mv\";\nconnectAttr \"place2dTexture3.s\" \"file3.s\";\nconnectAttr \"place2dTexture3.wu\" \"file3.wu\";\nconnectAttr \"place2dTexture3.wv\" \"file3.wv\";\nconnectAttr \"place2dTexture3.re\" \"file3.re\";\nconnectAttr \"place2dTexture3.of\" \"file3.of\";\nconnectAttr \"place2dTexture3.r\" \"file3.ro\";\nconnectAttr \"place2dTexture3.n\" \"file3.n\";\nconnectAttr \"place2dTexture3.vt1\" \"file3.vt1\";\nconnectAttr \"place2dTexture3.vt2\" \"file3.vt2\";\nconnectAttr \"place2dTexture3.vt3\" \"file3.vt3\";\nconnectAttr \"place2dTexture3.vc1\" \"file3.vc1\";\nconnectAttr \"place2dTexture3.o\" \"file3.uv\";\nconnectAttr \"place2dTexture3.ofs\" \"file3.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file4.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file4.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file4.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file4.ws\";\nconnectAttr \"place2dTexture4.c\" \"file4.c\";\nconnectAttr \"place2dTexture4.tf\" \"file4.tf\";\nconnectAttr \"place2dTexture4.rf\" \"file4.rf\";\nconnectAttr \"place2dTexture4.mu\" \"file4.mu\";\nconnectAttr \"place2dTexture4.mv\" \"file4.mv\";\nconnectAttr \"place2dTexture4.s\" \"file4.s\";\nconnectAttr \"place2dTexture4.wu\" \"file4.wu\";\nconnectAttr \"place2dTexture4.wv\" \"file4.wv\";\nconnectAttr \"place2dTexture4.re\" \"file4.re\";\nconnectAttr \"place2dTexture4.of\" \"file4.of\";\nconnectAttr \"place2dTexture4.r\" \"file4.ro\";\nconnectAttr \"place2dTexture4.n\" \"file4.n\";\nconnectAttr \"place2dTexture4.vt1\" \"file4.vt1\";\nconnectAttr \"place2dTexture4.vt2\" \"file4.vt2\";\nconnectAttr \"place2dTexture4.vt3\" \"file4.vt3\";\nconnectAttr \"place2dTexture4.vc1\" \"file4.vc1\";\nconnectAttr \"place2dTexture4.o\" \"file4.uv\";\nconnectAttr \"place2dTexture4.ofs\" \"file4.fs\";\nconnectAttr \"normal_map_file.oa\" \"bump2d1.bv\";\nconnectAttr \"file2.oc\" \"PBR_Shader_no_normal_map.u_DiffuseEnvTexture\";\nconnectAttr \"file3.oc\" \"PBR_Shader_no_normal_map.u_SpecularEnvTexture\";\nconnectAttr \"file4.oc\" \"PBR_Shader_no_normal_map.u_brdfTexture\";\nconnectAttr \"PBR_Shader_no_normal_map.oc\" \"GLSLShader2SG.ss\";\nconnectAttr \"pSphereShape1.iog\" \"GLSLShader2SG.dsm\" -na;\nconnectAttr \"GLSLShader2SG.msg\" \"materialInfo3.sg\";\nconnectAttr \"PBR_Shader_no_normal_map.msg\" \"materialInfo3.m\";\nconnectAttr \"Material.oc\" \"CubeSG.ss\";\nconnectAttr \"CubeSG.msg\" \"materialInfo4.sg\";\nconnectAttr \"Material.msg\" \"materialInfo4.m\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"lambert2SG.msg\" \"materialInfo5.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo5.m\";\nconnectAttr \"GLSL_PBR_Shader1.oc\" \"SoftCubeSG.ss\";\nconnectAttr \"SoftCubeSG.msg\" \"materialInfo6.sg\";\nconnectAttr \"GLSL_PBR_Shader1.msg\" \"materialInfo6.m\";\nconnectAttr \"surfaceSamplingEnvelopeShaderSG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader1SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"CubeSG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"SoftCubeSG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"surfaceSamplingEnvelopeShader.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"GLSL_PBR_Shader.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"PBR_Shader_no_normal_map.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"Material.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"GLSL_PBR_Shader1.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"place2dTexture1.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture2.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture3.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture4.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"bump2d1.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"normal_map_file.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file2.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file3.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file4.msg\" \":defaultTextureList1.tx\" -na;\n// End of CubeNormalBakingTest.ma\n"
  },
  {
    "path": "maya/scenes/CubePivotTest1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: CubePivotTest1.ma\n//Last modified: Sun, Feb 03, 2019 11:48:20 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"EEB63D68-48EF-EE9B-BE67-F2A96C3CBE7E\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -11.024664818820424 4.8092586395679557 2.00732882878778 ;\n\tsetAttr \".r\" -type \"double3\" -26.138352729528624 -796.59999999950344 -6.8621002248419643e-15 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"F774B9F5-4118-59FF-6DEF-47BCADB9AA78\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 12.051700898651438;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" -0.50000001490116119 -0.50000001490116119 -0.5 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"B36E1AA2-4B12-9A79-5A0B-1C8FF7AACE7F\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"789C93FC-475A-994D-03F7-E2AC5EF759F1\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"3B7B5054-4EA4-42FA-9644-BBA7D853B424\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"313B7579-4BA4-76CC-D180-F79178C37263\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"7C6018F9-42DD-4420-566F-6F94739EE974\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"A1823EAE-40FB-DDC0-CADF-CB8C4CADDB6B\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"95C11406-4146-11DD-A881-0FB16659DACA\";\n\taddAttr -ci true -sn \"nts\" -ln \"notes\" -dt \"string\";\n\tsetAttr \".t\" -type \"double3\" 0.5 0.5 0.5 ;\n\tsetAttr \".rp\" -type \"double3\" -0.5 -0.5 -0.5 ;\n\tsetAttr \".sp\" -type \"double3\" -0.5 -0.5 -0.5 ;\n\tsetAttr \".dsp\" yes;\n\tsetAttr \".drp\" yes;\n\tsetAttr \".nts\" -type \"string\" \"\\t\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"B11E8E79-455B-E498-F1FD-ADAAA8D76906\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pSphere1\";\n\trename -uid \"49BF15BA-4692-77C4-F49E-158AB9DD5D08\";\ncreateNode mesh -n \"pSphereShape1\" -p \"pSphere1\";\n\trename -uid \"BF6288E1-41B3-BD59-A5F3-99B15DF2BAE9\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 382 \".pt\";\n\tsetAttr \".pt[0:165]\" -type \"float3\"  0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5;\n\tsetAttr \".pt[166:331]\" 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5;\n\tsetAttr \".pt[332:381]\" 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pPlane1\";\n\trename -uid \"3F430165-48E2-BE04-C11A-96981425C423\";\ncreateNode mesh -n \"pPlaneShape1\" -p \"pPlane1\";\n\trename -uid \"120671E4-4C4B-4CF2-6ED4-348515590BC5\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.25 0.25 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"FA897FC0-45D7-0A0F-789A-459F175A509E\";\n\tsetAttr \".t\" -type \"double3\" -4.0092199877939763 3.2507666049799271 -1.5644656824948324 ;\n\tsetAttr \".r\" -type \"double3\" -34.400021166260728 -111.7999999999993 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"2A55B287-48C1-CE69-7730-ED9E0797B67C\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 5.5911118570252558;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0 0.44999998807907104 0 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"A82779CD-4334-C739-3D3C-C1B98AEC60EB\";\n\tsetAttr -s 5 \".lnk\";\n\tsetAttr -s 5 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"1A1750DD-46B3-2BD7-9E91-8B812F80A463\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"BCDC5F9B-45FF-50EB-2BCD-23AA6C6E2FD2\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"C45C62C6-4545-1B49-CEB9-2D8622002D61\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"D68121DD-4939-E44D-CCE1-199ABACA74BB\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"26F03DA7-41DC-12AB-F933-BEACC9C4FBBF\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"D1F50823-4F9C-2974-11A1-EAAFD518318F\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"5C1A2616-485F-723D-8EF4-F088DA0028CA\";\n\tsetAttr \".cuv\" 4;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"12AE7678-407A-C1F4-975A-50977479ACF8\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 1\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 1\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 1\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"B5EDA9A3-425D-E772-C3D8-36962768B7C4\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode polySphere -n \"polySphere1\";\n\trename -uid \"7E161F5A-4B04-D234-ADCB-80BFE62EA01A\";\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"9D92CECB-4B5B-68DD-0E39-CFBAABA284DE\";\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"30994A00-4536-82E6-6BC6-249FC58C2F97\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"AB839871-4255-1C84-3688-A9AA284EB179\";\ncreateNode transformGeometry -n \"transformGeometry1\";\n\trename -uid \"CE8E7375-4937-0C89-519F-7BAC243281A8\";\n\tsetAttr \".txf\" -type \"matrix\" 0.10000000000000001 0 0 0 0 0.10000000000000001 0 0\n\t\t 0 0 0.10000000000000001 0 -0.5 -0.5 -0.5 1;\ncreateNode polyPlane -n \"polyPlane1\";\n\trename -uid \"98128C23-48CA-8ACA-1122-7BAA0D451C02\";\n\tsetAttr \".w\" 2;\n\tsetAttr \".h\" 2;\n\tsetAttr \".sw\" 2;\n\tsetAttr \".sh\" 2;\n\tsetAttr \".cuv\" 2;\ncreateNode lambert -n \"lambert3\";\n\trename -uid \"A62A87B2-4EC7-62B2-C69E-61B9C79A2921\";\n\tsetAttr \".c\" -type \"float3\" 0.34099999 0.34099999 0.34099999 ;\ncreateNode shadingEngine -n \"lambert3SG\";\n\trename -uid \"72941D1D-4E1B-A6D6-598A-DBBE8FBF2A86\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"5616ACC2-423D-0D46-1861-06B45FAD72AC\";\ncreateNode groupId -n \"groupId1\";\n\trename -uid \"F5B133C9-4FA7-0F7C-6719-E9833F740C62\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts1\";\n\trename -uid \"8247DFE1-49A5-49AE-5962-FC9A8BF24398\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 2 \"f[0]\" \"f[3]\";\n\tsetAttr \".irc\" -type \"componentList\" 1 \"f[1:2]\";\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"86717464-49A7-FD1C-E1B6-638489D0F35D\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupId -n \"groupId3\";\n\trename -uid \"839A28EB-415A-E462-3568-6EBB1ADC9FF6\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"6ECB1B33-4C30-61AE-1792-86A4F15BC802\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"f[1:2]\";\ncreateNode lambert -n \"lambert4\";\n\trename -uid \"ECABC82B-4B1C-81DB-0F35-259A90A0E084\";\n\tsetAttr \".c\" -type \"float3\" 0.56099999 0.56099999 0.56099999 ;\ncreateNode shadingEngine -n \"lambert4SG\";\n\trename -uid \"DF39EE22-41BB-6B0D-32D3-1D831CC76621\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo3\";\n\trename -uid \"1D2ABE2C-4A94-FBB5-A3A6-30A019C25C7E\";\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"13D1B563-469F-92E8-1DF3-62A9859FB116\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 5 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 7 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :lambert1;\n\tsetAttr \".c\" -type \"float3\" 0 1 0 ;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1.i\";\nconnectAttr \"transformGeometry1.og\" \"pSphereShape1.i\";\nconnectAttr \"groupId1.id\" \"pPlaneShape1.iog.og[0].gid\";\nconnectAttr \"lambert4SG.mwc\" \"pPlaneShape1.iog.og[0].gco\";\nconnectAttr \"groupId3.id\" \"pPlaneShape1.iog.og[1].gid\";\nconnectAttr \"lambert3SG.mwc\" \"pPlaneShape1.iog.og[1].gco\";\nconnectAttr \"groupParts2.og\" \"pPlaneShape1.i\";\nconnectAttr \"groupId2.id\" \"pPlaneShape1.ciog.cog[0].cgid\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert4SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert4SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"pSphereShape1.iog\" \"lambert2SG.dsm\" -na;\nconnectAttr \"lambert2SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo1.m\";\nconnectAttr \"polySphere1.out\" \"transformGeometry1.ig\";\nconnectAttr \"lambert3.oc\" \"lambert3SG.ss\";\nconnectAttr \"groupId3.msg\" \"lambert3SG.gn\" -na;\nconnectAttr \"pPlaneShape1.iog.og[1]\" \"lambert3SG.dsm\" -na;\nconnectAttr \"lambert3SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"lambert3.msg\" \"materialInfo2.m\";\nconnectAttr \"polyPlane1.out\" \"groupParts1.ig\";\nconnectAttr \"groupId1.id\" \"groupParts1.gi\";\nconnectAttr \"groupParts1.og\" \"groupParts2.ig\";\nconnectAttr \"groupId3.id\" \"groupParts2.gi\";\nconnectAttr \"lambert4.oc\" \"lambert4SG.ss\";\nconnectAttr \"pPlaneShape1.iog.og[0]\" \"lambert4SG.dsm\" -na;\nconnectAttr \"groupId1.msg\" \"lambert4SG.gn\" -na;\nconnectAttr \"lambert4SG.msg\" \"materialInfo3.sg\";\nconnectAttr \"lambert4.msg\" \"materialInfo3.m\";\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert3SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert4SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert3.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert4.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pPlaneShape1.ciog.cog[0]\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"groupId2.msg\" \":initialShadingGroup.gn\" -na;\n// End of CubePivotTest1.ma\n"
  },
  {
    "path": "maya/scenes/CubeScalePivotTest2.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: CubeScalePivotTest2.ma\n//Last modified: Sun, Feb 03, 2019 11:48:34 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"EEB63D68-48EF-EE9B-BE67-F2A96C3CBE7E\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -9.8681187769777434 3.740544985184699 -0.14011317869837681 ;\n\tsetAttr \".r\" -type \"double3\" -24.338352729583498 -807.79999999950542 -1.2427987255658087e-13 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"F774B9F5-4118-59FF-6DEF-47BCADB9AA78\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 10.289479557404871;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" -0.50000001490116119 -0.50000001490116119 -0.5 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"B36E1AA2-4B12-9A79-5A0B-1C8FF7AACE7F\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"789C93FC-475A-994D-03F7-E2AC5EF759F1\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"3B7B5054-4EA4-42FA-9644-BBA7D853B424\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"313B7579-4BA4-76CC-D180-F79178C37263\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"7C6018F9-42DD-4420-566F-6F94739EE974\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"A1823EAE-40FB-DDC0-CADF-CB8C4CADDB6B\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"95C11406-4146-11DD-A881-0FB16659DACA\";\n\taddAttr -ci true -sn \"nts\" -ln \"notes\" -dt \"string\";\n\tsetAttr \".t\" -type \"double3\" 0.5 0.5 0.5 ;\n\tsetAttr \".s\" -type \"double3\" 1 2 3 ;\n\tsetAttr \".rp\" -type \"double3\" -0.5 -0.5 -0.5 ;\n\tsetAttr \".sp\" -type \"double3\" -0.5 -0.5 -0.5 ;\n\tsetAttr \".dsp\" yes;\n\tsetAttr \".drp\" yes;\n\tsetAttr \".nts\" -type \"string\" \"\\t\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"B11E8E79-455B-E498-F1FD-ADAAA8D76906\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pSphere1\";\n\trename -uid \"49BF15BA-4692-77C4-F49E-158AB9DD5D08\";\ncreateNode mesh -n \"pSphereShape1\" -p \"pSphere1\";\n\trename -uid \"BF6288E1-41B3-BD59-A5F3-99B15DF2BAE9\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 382 \".pt\";\n\tsetAttr \".pt[0:165]\" -type \"float3\"  0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5;\n\tsetAttr \".pt[166:331]\" 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5;\n\tsetAttr \".pt[332:381]\" 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 \n\t\t0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pPlane1\";\n\trename -uid \"3F430165-48E2-BE04-C11A-96981425C423\";\ncreateNode mesh -n \"pPlaneShape1\" -p \"pPlane1\";\n\trename -uid \"120671E4-4C4B-4CF2-6ED4-348515590BC5\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.25 0.25 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"23B3BF3F-49E4-6BFD-1B1B-5E86463F2A9C\";\n\tsetAttr \".t\" -type \"double3\" -6.81300442156315 6.476178631045407 -2.5538640162434239 ;\n\tsetAttr \".r\" -type \"double3\" -38.599873002433831 -117.39999999999921 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"DE6EB5E2-4019-2671-67B3-199D4E61EE4D\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 9.4814404626923618;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0 0.94999998807907104 1 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"96A20A2E-43A8-ED9B-6702-2B90331956BC\";\n\tsetAttr -s 5 \".lnk\";\n\tsetAttr -s 5 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"066CB2A2-4038-20E6-DEA6-AAAAF514441F\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"6420AEB7-4E65-522E-EA3A-699FD8660543\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"9E9C41A1-4D1D-6B89-81AE-5E828B85C332\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"D68121DD-4939-E44D-CCE1-199ABACA74BB\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"F21E0CBB-4B4C-868D-D20B-2C8A12405654\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"D1F50823-4F9C-2974-11A1-EAAFD518318F\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"5C1A2616-485F-723D-8EF4-F088DA0028CA\";\n\tsetAttr \".cuv\" 4;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"12AE7678-407A-C1F4-975A-50977479ACF8\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 1\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 1\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 1\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"B5EDA9A3-425D-E772-C3D8-36962768B7C4\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode polySphere -n \"polySphere1\";\n\trename -uid \"7E161F5A-4B04-D234-ADCB-80BFE62EA01A\";\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"9D92CECB-4B5B-68DD-0E39-CFBAABA284DE\";\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"30994A00-4536-82E6-6BC6-249FC58C2F97\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"AB839871-4255-1C84-3688-A9AA284EB179\";\ncreateNode transformGeometry -n \"transformGeometry1\";\n\trename -uid \"CE8E7375-4937-0C89-519F-7BAC243281A8\";\n\tsetAttr \".txf\" -type \"matrix\" 0.10000000000000001 0 0 0 0 0.10000000000000001 0 0\n\t\t 0 0 0.10000000000000001 0 -0.5 -0.5 -0.5 1;\ncreateNode polyPlane -n \"polyPlane1\";\n\trename -uid \"98128C23-48CA-8ACA-1122-7BAA0D451C02\";\n\tsetAttr \".w\" 2;\n\tsetAttr \".h\" 2;\n\tsetAttr \".sw\" 2;\n\tsetAttr \".sh\" 2;\n\tsetAttr \".cuv\" 2;\ncreateNode lambert -n \"lambert3\";\n\trename -uid \"A62A87B2-4EC7-62B2-C69E-61B9C79A2921\";\n\tsetAttr \".c\" -type \"float3\" 0.34099999 0.34099999 0.34099999 ;\ncreateNode shadingEngine -n \"lambert3SG\";\n\trename -uid \"72941D1D-4E1B-A6D6-598A-DBBE8FBF2A86\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"5616ACC2-423D-0D46-1861-06B45FAD72AC\";\ncreateNode groupId -n \"groupId1\";\n\trename -uid \"F5B133C9-4FA7-0F7C-6719-E9833F740C62\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts1\";\n\trename -uid \"8247DFE1-49A5-49AE-5962-FC9A8BF24398\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 2 \"f[0]\" \"f[3]\";\n\tsetAttr \".irc\" -type \"componentList\" 1 \"f[1:2]\";\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"86717464-49A7-FD1C-E1B6-638489D0F35D\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupId -n \"groupId3\";\n\trename -uid \"839A28EB-415A-E462-3568-6EBB1ADC9FF6\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"6ECB1B33-4C30-61AE-1792-86A4F15BC802\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"f[1:2]\";\ncreateNode lambert -n \"lambert4\";\n\trename -uid \"ECABC82B-4B1C-81DB-0F35-259A90A0E084\";\n\tsetAttr \".c\" -type \"float3\" 0.56099999 0.56099999 0.56099999 ;\ncreateNode shadingEngine -n \"lambert4SG\";\n\trename -uid \"DF39EE22-41BB-6B0D-32D3-1D831CC76621\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo3\";\n\trename -uid \"1D2ABE2C-4A94-FBB5-A3A6-30A019C25C7E\";\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"87DB0939-4C2A-E94B-2264-CF8F9E7F4F13\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/scenes/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"CubeScaledPivotTest2\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2018 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 1;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"8CA8CAFD-428F-AAED-8166-B1ABC18E1DF8\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 5 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 7 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :lambert1;\n\tsetAttr \".c\" -type \"float3\" 0 1 0 ;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1.i\";\nconnectAttr \"transformGeometry1.og\" \"pSphereShape1.i\";\nconnectAttr \"groupId1.id\" \"pPlaneShape1.iog.og[0].gid\";\nconnectAttr \"lambert4SG.mwc\" \"pPlaneShape1.iog.og[0].gco\";\nconnectAttr \"groupId3.id\" \"pPlaneShape1.iog.og[1].gid\";\nconnectAttr \"lambert3SG.mwc\" \"pPlaneShape1.iog.og[1].gco\";\nconnectAttr \"groupParts2.og\" \"pPlaneShape1.i\";\nconnectAttr \"groupId2.id\" \"pPlaneShape1.ciog.cog[0].cgid\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert4SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert4SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"pSphereShape1.iog\" \"lambert2SG.dsm\" -na;\nconnectAttr \"lambert2SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo1.m\";\nconnectAttr \"polySphere1.out\" \"transformGeometry1.ig\";\nconnectAttr \"lambert3.oc\" \"lambert3SG.ss\";\nconnectAttr \"groupId3.msg\" \"lambert3SG.gn\" -na;\nconnectAttr \"pPlaneShape1.iog.og[1]\" \"lambert3SG.dsm\" -na;\nconnectAttr \"lambert3SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"lambert3.msg\" \"materialInfo2.m\";\nconnectAttr \"polyPlane1.out\" \"groupParts1.ig\";\nconnectAttr \"groupId1.id\" \"groupParts1.gi\";\nconnectAttr \"groupParts1.og\" \"groupParts2.ig\";\nconnectAttr \"groupId3.id\" \"groupParts2.gi\";\nconnectAttr \"lambert4.oc\" \"lambert4SG.ss\";\nconnectAttr \"pPlaneShape1.iog.og[0]\" \"lambert4SG.dsm\" -na;\nconnectAttr \"groupId1.msg\" \"lambert4SG.gn\" -na;\nconnectAttr \"lambert4SG.msg\" \"materialInfo3.sg\";\nconnectAttr \"lambert4.msg\" \"materialInfo3.m\";\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert3SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert4SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert3.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert4.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pPlaneShape1.ciog.cog[0]\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"groupId2.msg\" \":initialShadingGroup.gn\" -na;\n// End of CubeScalePivotTest2.ma\n"
  },
  {
    "path": "maya/scenes/CubeWithoutUVs.ma",
    "content": "//Maya ASCII 2018 scene\n//Name: CubeWithoutUVs.ma\n//Last modified: Wed, Aug 12, 2020 09:09:08 PM\n//Codeset: 1252\nrequires maya \"2018\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201706261615-f9658c4cfc\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"6AD1804A-42EC-DB6B-E9FD-90ABDE9E89C8\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1.6350106873471049 1.2262580155103286 1.6350106873471084 ;\n\tsetAttr \".r\" -type \"double3\" -27.938352729602379 44.999999999999972 -5.172681101354183e-14 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"ABC2523B-40B8-1E9B-7982-7580F812B380\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 2.6172941401534957;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"56672CDD-4BE4-EF69-79DA-F1B995C7E6B1\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"654B983A-47EB-EDC9-E997-00A3040C9B3F\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"23522A14-4FD5-0F7B-F613-339ED7BF99EB\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"7213C4BF-4F77-F32B-406A-158436A25652\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"5AAB91D3-4E05-51B9-C7F5-64AD52D3DF72\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"45346D86-47FB-07D8-5289-9E9A2DFB09C2\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"B331772C-4031-D341-2158-FAA6D916C978\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"DDFEFD03-4D5A-EFE0-B481-7B9B5E97258F\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"F0CE4070-46C7-F8B2-573D-69B46FD202E1\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"6511BBFB-46C7-69CB-A96E-76B885427A4D\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"8405A2D9-4E4E-A528-38BA-4D9EBA5001AC\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"50E8C8CD-4CB8-461A-40CA-4795A14574C9\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"F90C8091-4F25-29C1-CE75-8CA2CB702DD4\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"97319BA8-41F7-4DC0-35B5-888CC347026A\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"0FEEA856-4588-3FD2-00E4-AF943FA4C656\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"55772269-437D-4562-DB89-58B6DAB87CA6\";\n\tsetAttr \".cuv\" 0;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"62E5B8CE-430E-8E03-003C-C3A0F8894DBE\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\taddAttr -ci true -sn \"selOnly\" -ln \"selOnly\" -at \"long\";\n\taddAttr -ci true -sn \"visOnly\" -ln \"visOnly\" -at \"long\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/Users/bugfa/Documents/maya/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"untitled\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2020 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 1;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\n\tsetAttr \".selOnly\" 1;\n\tsetAttr \".visOnly\" 1;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"01E1B759-45B1-9F40-09E7-A48CABCE3345\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n\"\n\t\t+ \"            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n\"\n\t\t+ \"            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n\"\n\t\t+ \"            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 586\\n            -height 508\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 585\\n            -height 508\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1178\\n            -height 1060\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1178\\n            -height 1060\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n\"\n\t\t+ \"            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n\"\n\t\t+ \"            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n\"\n\t\t+ \"            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n\"\n\t\t+ \"                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n\"\n\t\t+ \"                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n\"\n\t\t+ \"                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n\"\n\t\t+ \"                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n\"\n\t\t+ \"                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n\"\n\t\t+ \"                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n\"\n\t\t+ \"                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n\"\n\t\t+ \"                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n\"\n\t\t+ \"                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -highlightConnections 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -activeTab -1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -cam `findStartUpCamera persp` \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1178\\\\n    -height 1060\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -cam `findStartUpCamera persp` \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1178\\\\n    -height 1060\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"06BED88C-4E7E-C332-BC71-98890439B65E\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\nselect -ne :time1;\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -s 2 \".st\";\nselect -ne :renderGlobalsList1;\nselect -ne :defaultShaderList1;\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr \".ctrs\" 256;\n\tsetAttr \".btrs\" 512;\nconnectAttr \"polyCube1.out\" \"pCubeShape1.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of CubeWithoutUVs.ma\n"
  },
  {
    "path": "maya/scenes/DamagedHelmet.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: DamagedHelmet.ma\n//Last modified: Sun, Feb 03, 2019 11:48:50 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\nrequires -nodeType \"GLSLShader\" \"glslShader\" \"1.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"62D6CA3E-4845-5AEF-C5AD-3789FFD0601D\";\n\taddAttr -ci true -sn \"nts\" -ln \"notes\" -dt \"string\";\n\tsetAttr \".t\" -type \"double3\" -1.4803989291703874 0.80651703427770671 -2.3284970460991552 ;\n\tsetAttr \".r\" -type \"double3\" -1095.6000000017407 4532.8000000005904 0 ;\n\tsetAttr \".nts\" -type \"string\" \"\\t\\t\";\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"077E03D9-4657-105C-1272-90A434265646\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 2.8409577913835555;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.22884866298771966 0.42484885587722543 0.037428367356010961 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"2FC3A1B8-4B0A-C6DF-08F9-BE940896DEC1\";\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"D1B6367C-46F9-C5D7-A2E4-F6897B148775\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 3.2539231374277473;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"069F6436-4153-A05C-460C-018207B3D022\";\n\tsetAttr \".t\" -type \"double3\" 1.4461369786288363 0.36447797051161412 1000.1015332221973 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"D975C53B-4157-CCD4-5CEC-88B15FA91B98\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 998.9079352200032;\n\tsetAttr \".ow\" 7.8592285325730646;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".tp\" -type \"double3\" 1.4461369786288363 0.36447797051161412 1.193598002194074 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"7E13387B-471A-FB3A-41BD-7C9E32C726BB\";\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"F564C0BC-4180-B78F-CA8D-A58135750634\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"helmet\";\n\trename -uid \"969FCB7E-4BFF-19DB-5E17-47A4A5C89B2F\";\ncreateNode mesh -n \"helmetShape\" -p \"helmet\";\n\trename -uid \"E17530D4-4A80-4628-9E72-669E03DA0EFA\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"TEXCOORD_0\";\n\tsetAttr -s 30931 \".uvst[0].uvsp\";\n\tsetAttr \".uvst[0].uvsp[0:249]\" -type \"float2\" 0.97907501 0.51876903 0.80120897\n\t\t 0.48759103 0.793262 0.88526201 0.33799899 0.0091320276 0.26699799 0.081960022 0.74055898\n\t\t 0.81869799 0.364324 0.87919301 0.116869 0.99763376 0.278725 0.68712604 0.388769 0.093366981\n\t\t 0.70975298 0.39579302 0.76687902 0.29221499 0.891792 0.71633804 0.56596398 0.26210803\n\t\t 0.81755197 0.51442701 0.69503802 0.31963003 0.595676 0.52722096 0.983136 0.493855\n\t\t 0.58268601 0.62899899 0.68595302 0.68061 0.57617497 0.20627898 0.72957098 0.45353299\n\t\t 0.350164 0.35610402 0.55635399 0.20843101 0.0627864 0.22429502 0.65476298 0.19455701\n\t\t 0.291646 0.19930702 0.772973 0.80377603 0.52377898 0.28844798 0.89735597 0.25169301\n\t\t 0.819628 0.11738998 0.387694 0.24440902 0.99552798 0.528494 0.38812301 0.65205401\n\t\t 0.37265399 0.15640199 0.45499399 0.91488087 0.279039 0.076016009 0.40121701 0.061488986\n\t\t 0.74913901 0.37895501 0.542817 0.43128002 0.36274099 0.45889002 0.085575797 0.23053402\n\t\t 0.55518001 0.23649001 0.082952 0.45191401 0.67224002 0.24206698 0.93272698 0.578444\n\t\t 0.39953601 0.49683201 0.51394397 0.057500005 0.024747699 0.22429502 0.45473099 0.47384602\n\t\t 0.67227697 0.45341498 0.383425 0.41059601 0.30889499 0.44341302 0.74079698 0.035844982\n\t\t 0.501239 0.14915699 0.72025597 0.74436903 0.88373601 0.45198798 0.45152801 0.85111302\n\t\t 0.726412 0.264543 0.58820099 0.117562 0.29349399 0.48982298 0.69436502 0.62330699\n\t\t 0.279039 0.064749002 0.41196901 0.020340979 0.33634001 0.045881987 0.56932497 0.460325\n\t\t 0.73404598 0.015052974 0.91123998 0.81746298 0.92966503 0.79906499 0.65011102 0.65320897\n\t\t 0.96385098 0.182419 0.68337798 0.25482601 0.94965398 0.24786001 0.56655502 0.363002\n\t\t 0.824718 0.99512738 0.183213 0.69088501 0.092991099 0.093571007 0.48236999 0.28668898\n\t\t 0.15121201 0.37438202 0.36911699 0.040746987 0.62428498 0.20627898 0.39339501 0.051738977\n\t\t 0.78413701 0.77355701 0.73563302 0.51766098 0.68531698 0.606417 0.61915898 0.61355901\n\t\t 0.648821 0.091544986 0.45984399 0.042420983 0.69770801 0.76686203 0.82636201 0.54592097\n\t\t 0.82138097 0.22738898 0.84238601 0.044852018 0.29476601 0.23479003 0.159236 0.087776005\n\t\t 0.075532302 0.045943022 0.31373301 0.41013998 0.22657999 0.070222974 0.32262701 0.34900099\n\t\t 0.99142402 0.516563 0.038708799 0.20858502 0.085736804 0.91619211 0.036956899 0.46824098\n\t\t 0.123461 0.22429502 0.0506882 0.208579 0.82683498 0.18546498 0.759947 0.058449984\n\t\t 0.61359698 0.091544986 0.84314001 0.83660501 0.824045 0.30475199 0.62428498 0.20893198\n\t\t 0.80952197 0.594082 0.53874397 0.36507303 0.43553299 0.31205797 0.69682199 0.272843\n\t\t 0.65417498 0.42504299 0.80120897 0.41019899 0.40720999 0.036113977 0.21060701 0.026961029\n\t\t 0.73916698 0.51310098 0.53434098 0.751158 0.64609802 0.10510302 0.88442099 0.80918097\n\t\t 0.80206698 0.90672368 0.87893498 0.11364102 0.55011398 0.37215501 0.62764102 0.25067502\n\t\t 0.605865 0.372172 0.61003703 0.9061839 0.865794 0.43198401 0.016618799 0.093566 0.629444\n\t\t 0.60468501 0.30009601 0.22088301 0.390632 0.65167499 0.29618999 0.099223971 0.43696001\n\t\t 0.43238801 0.40908399 0.076433003 0.76784199 0.47432297 0.418051 0.04570502 0.956999\n\t\t 0.049754977 0.85502303 0.053844988 0.84676498 0.861292 0.266267 0.22095001 0.412251\n\t\t 0.40264601 0.84318 0.30229902 0.78694302 0.17617202 0.67354399 0.24039102 0.76226801\n\t\t 0.97939932 0.94814402 0.76462102 0.241579 0.093622029 0.40672299 0.46625501 0.38705501\n\t\t 0.14959902 0.33730301 0.098396003 0.239099 0.304416 0.39191201 0.32832003 0.109512\n\t\t 0.070222974 0.39704999 0.082292974 0.70975298 0.47432297 0.0209879 0.39975202 0.88791603\n\t\t 0.78913403 0.26699799 0.026961029 0.91404903 0.36761701 0.79762602 0.052170992 0.85702097\n\t\t 0.366624 0.69625998 0.21535802 0.87975401 0.20998102 0.50864398 0.37791097 0.75593197\n\t\t 0.547135 0.78115302 0.238702 0.78422898 0.730398 0.68849301 0.58003998 0.74909002\n\t\t 0.38366097 0.412036 0.065894008 0.325389 0.21665299 0.43401101 0.32810003 0.176465\n\t\t 0.93823957 0.42512301 0.020093024 0.23818301 0.15050298 0.228065 0.19537097 0.185293\n\t\t 0.19537699 0.226633 0.19933701 0.0191084 0.68937701 0.104645 0.48142201 0.20452701\n\t\t 0.24520701 0.170642 0.25670499 0.20452701 0.23479003 0.093473598 0.154567 0.0627864\n\t\t 0.51780403 0.60142702 0.73447204 0.454521 0.93210828 0.62226301 0.62648499 0.236157\n\t\t 0.35372698 0.786053 0.88967597 0.36847401 0.35149199 0.82395202 0.617257 0.74243402\n\t\t 0.163055 0.51004702 0.053753018 0.14243101 0.009370029 0.43793201 0.47425997 0.361415\n\t\t 0.41247898 0.39662799 0.43997198 0.48419699 0.555188 0.42668399 0.78149801 0.48371401\n\t\t 0.49365902 0.254612 0.015354991 0.39621499 0.087890029 0.98742199 0.519898 0.67015201\n\t\t 0.17616898 0.306862 0.44085503 0.642555 0.62578499 0.64458102 0.087881029 0.68222499\n\t\t 0.65818799 0.22136199 0.22459197 0.653566 0.20846701 0.99484497 0.58304101 0.90053302\n\t\t 0.041987002 0.63776201 0.36906499 0.65348899 0.48022401 0.85747498 0.36808503 0.61337602\n\t\t 0.63174498 0.155085 0.65250999 0.254612 0.054804981 0.87148798 0.80066299 0.0437379\n\t\t 0.050275981 0.0437379 0.054804981 0.0166458 0.076016009 0.0437379 0.026961029 0.0437379\n\t\t 0.009370029 0.70722997 0.628075 0.690319 0.39122897 0.33678001 0.077133 0.70512903\n\t\t 0.63234001 0.807679 0.029844999 0.395441 0.46095502 0.75321901 0.90486008 0.67437702\n\t\t 0.19025898 0.56008601 0.14198202 0.060048401 0.43758798 0.291646 0.20919198 0.214203\n\t\t 0.14801103 0.741337 0.52299798 0.94665498 0.10950398 0.48818901 0.14123201 0.37238601\n\t\t 0.43692899 0.48401299 0.41251099 0.437213 0.40277201 0.36890599 0.082809985 0.54760301\n\t\t 0.11408001 0.0145159 0.099443972 0.0145159 0.154567 0.18745901 0.82175601;\n\tsetAttr \".uvst[0].uvsp[250:499]\" 0.193698 0.041603029 0.59266597 0.41727197\n\t\t 0.98742199 0.51739299 0.82733899 0.862822 0.37490499 0.67745602 0.752581 0.78254902\n\t\t 0.984604 0.17867601 0.60112202 0.22001398 0.769445 0.088597 0.82351601 0.82352102\n\t\t 0.62691599 0.23678797 0.95378 0.15269798 0.38560301 0.37963599 0.38973999 0.014972985\n\t\t 0.40382099 0.462861 0.865794 0.38929898 0.99424201 0.50948501 0.40340099 0.20829999\n\t\t 0.47604999 0.012462974 0.40053001 0.10336798 0.497417 0.39151102 0.369436 0.41290998\n\t\t 0.153644 0.36192602 0.45170501 0.43195301 0.32074401 0.084316015 0.087287404 0.61489296\n\t\t 0.091367699 0.60661602 0.039987899 0.22429502 0.409491 0.0035790205 0.80120897 0.41754699\n\t\t 0.97924 0.52804196 0.66250199 0.35592198 0.96755302 0.18373102 0.777188 0.76027703\n\t\t 0.651169 0.59732604 0.74108797 0.31215799 0.696504 0.61827701 0.818313 0.030682027\n\t\t 0.34706199 0.42780298 0.52312797 0.10667801 0.85341001 0.32266098 0.690184 0.38453102\n\t\t 0.621324 0.41055 0.14243101 0.041603029 0.74909002 0.481004 0.070193201 0.46518397\n\t\t 0.33438 0.58447701 0.95920402 0.063947022 0.53912503 0.15688998 0.28343499 0.95032477\n\t\t 0.76148099 0.088597 0.66182101 0.21535802 0.56548703 0.53719401 0.85829997 0.23886001\n\t\t 0.168715 0.38669598 0.76329303 0.064206004 0.56108999 0.38434899 0.603284 0.378281\n\t\t 0.19365899 0.093555987 0.734231 0.807473 0.43568501 0.10356498 0.126 0.059605002\n\t\t 0.69651198 0.15420598 0.51939201 0.05963701 0.39531499 0.650002 0.504884 0.35132903\n\t\t 0.70033598 0.62922901 0.50826001 0.21797103 0.95848298 0.15473002 0.80175799 0.83795202\n\t\t 0.70525301 0.17885 0.66773403 0.35997897 0.353517 0.077519 0.40835401 0.65386301\n\t\t 0.178314 0.29141402 0.49766001 0.38471001 0.32020301 0.074759007 0.0211304 0.42756599\n\t\t 0.36903101 0.066811025 0.94847602 0.45217401 0.71000803 0.19158399 0.53385901 0.140769\n\t\t 0.599406 0.29825401 0.32587701 0.33796901 0.873842 0.79699802 0.66645199 0.087881029\n\t\t 0.75345898 0.089864016 0.82442802 0.314354 0.94293398 0.25417 0.65364403 0.41096699\n\t\t 0.97850299 0.52295697 0.78534901 0.41019899 0.85787302 0.36374301 0.62228 0.42464602\n\t\t 0.61794102 0.37824202 0.82712501 0.41019899 0.62279499 0.44623703 0.35802701 0.43600398\n\t\t 0.432439 0.10012001 0.263607 0.37535 0.29579601 0.398965 0.42536899 0.44595599 0.14033499\n\t\t 0.22460097 0.433898 0.41019899 0.38934001 0.0094310045 0.36968699 0.093321025 0.111635\n\t\t 0.91796088 0.40803799 0.41346997 0.343748 0.40843999 0.352496 0.34129399 0.126205\n\t\t 0.29805499 0.83378798 0.58966398 0.77616602 0.032651007 0.94546199 0.62093198 0.380007\n\t\t 0.73271298 0.75166702 0.13187802 0.93919897 0.663715 0.41023299 0.41546202 0.42445901\n\t\t 0.32823497 0.77617598 0.032696009 0.55809999 0.45280701 0.21060701 0.021309018 0.79998899\n\t\t 0.22942001 0.70515698 0.77899599 0.71394902 0.75905597 0.79917997 0.052170992 0.72519201\n\t\t 0.62813497 0.74396002 0.305695 0.78378999 0.035978973 0.41910899 0.46340698 0.74743998\n\t\t 0.24097198 0.487019 0.51179099 0.99177003 0.52904403 0.159236 0.045943022 0.075532302\n\t\t 0.087776005 0.333711 0.33181602 0.49872699 0.20373797 0.217374 0.21318698 0.31405601\n\t\t 0.22893101 0.69045597 0.41810799 0.75538999 0.30685002 0.28540301 0.71400797 0.91276598\n\t\t 0.80048501 0.81665099 0.87635899 0.64967299 0.73757398 0.81983203 0.030682027 0.80539697\n\t\t 0.051284015 0.60712498 0.23254198 0.56444198 0.068718016 0.94480002 0.62596798 0.19865\n\t\t 0.217062 0.24964599 0.24520701 0.82712501 0.47432297 0.38727 0.31790799 0.68101698\n\t\t 0.72927296 0.059634801 0.099443972 0.77473199 0.092545986 0.455917 0.079187989 0.22136199\n\t\t 0.227449 0.414267 0.41980302 0.778148 0.97383571 0.39715201 0.45304298 0.69391602\n\t\t 0.67265999 0.64268202 0.091544986 0.58099401 0.20893198 0.745547 0.24158299 0.65551102\n\t\t 0.33255702 0.92576897 0.70965701 0.89757401 0.329009 0.00350849 0.42737299 0.14352401\n\t\t 0.44585103 0.35336101 0.045913994 0.94436598 0.72334003 0.41855401 0.45811802 0.94365799\n\t\t 0.25664699 0.71565402 0.254825 0.95561397 0.523821 0.66927898 0.76396 0.79451901\n\t\t 0.051284015 0.80326802 0.238702 0.73311698 0.50438797 0.72291303 0.76353902 0.987441\n\t\t 0.53000903 0.075532302 0.032191992 0.45096499 0.20373797 0.30583301 0.026961029 0.109512\n\t\t 0.054804981 0.38088599 0.077300012 0.110527 0.208583 0.099009298 0.47418803 0.046178602\n\t\t 0.54859799 0.057784401 0.46462703 0.118705 0.63334501 0.109894 0.093582988 0.075514697\n\t\t 0.093566 0.64223498 0.21531701 0.65029198 0.032266021 0.340523 0.429699 0.59544301\n\t\t 0.20893198 0.467493 0.040143013 0.56563598 0.039528012 0.840092 0.9732095 0.66701102\n\t\t 0.011148989 0.72103298 0.264543 0.81451702 0.28873903 0.57535797 0.39771998 0.63628203\n\t\t 0.39712 0.17641 0.045943022 0.67185801 0.47375703 0.37918201 0.45343399 0.38938901\n\t\t 0.099461019 0.45443299 0.87014496 0.82712501 0.48759103 0.58209598 0.45317 0.69413799\n\t\t 0.264543 0.60770202 0.22001398 0.65414798 0.57683802 0.693097 0.17614698 0.89993\n\t\t 0.29459298 0.700288 0.0043780208 0.92981499 0.37776297 0.82834899 0.70358801 0.207102\n\t\t 0.22084397 0.27306801 0.20334297 0.86866099 0.46105701 0.14243101 0.032191992 0.80078101\n\t\t 0.37894797 0.074062496 0.475941 0.33649501 0.27431202 0.037544001 0.76607597 0.72957098\n\t\t 0.46759498 0.70242602 0.037863016 0.853104 0.86207801 0.76822501 0.29602098 0.632231\n\t\t 0.72833699 0.73070699 0.59537697 0.97569197 0.27962101 0.75872099 0.024715006 0.758241\n\t\t 0.85911703 0.56999898 0.11988801 0.57718301 0.11519498 0.70978302 0.378959 0.74909002\n\t\t 0.45353299 0.76784199 0.41754699 0.425208 0.41579998 0.452894 0.446275 0.67212701\n\t\t 0.43926799 0.00256723 0.686782 0.98342001 0.51656497 0.88546401 0.24076098;\n\tsetAttr \".uvst[0].uvsp[500:749]\" 0.80793899 0.9256168 0.69296902 0.29967099\n\t\t 0.82118601 0.29372698 0.41910601 0.46340299 0.66503602 0.32776803 0.78003001 0.092545986\n\t\t 0.69388199 0.118469 0.79216897 0.075096011 0.74537802 0.52948403 0.70975298 0.45353299\n\t\t 0.67196 0.43218601 0.299413 0.33276898 0.29502901 0.33122098 0.30764499 0.9539699\n\t\t 0.370159 0.36025798 0.49659899 0.37216002 0.48375699 0.40551901 0.44482401 0.62784201\n\t\t 0.48064199 0.035273015 0.40738299 0.664285 0.055937901 0.23371601 0.199434 0.19901401\n\t\t 0.128181 0.41997898 0.118948 0.78847396 0.093743101 0.43595803 0.24003901 0.9938941\n\t\t 0.24478801 0.97601599 0.24440999 0.28066498 0.096278802 0.54856396 0.13659699 0.30449098\n\t\t 0.78534901 0.40285999 0.159217 0.093571007 0.37737501 0.21261901 0.67754799 0.54359496\n\t\t 0.550798 0.29023898 0.86774701 0.31599998 0.74862802 0.78362101 0.610026 0.33102697\n\t\t 0.68174899 0.087881029 0.68656999 0.578915 0.70214999 0.087881029 0.69871902 0.19483\n\t\t 0.63565397 0.486754 0.241256 0.037030995 0.44270301 0.94329238 0.194675 0.20846403\n\t\t 0.49407199 0.124874 0.43835899 0.015973985 0.437446 0.395769 0.193698 0.081960022\n\t\t 0.82712501 0.42480898 0.84314001 0.84879899 0.87122297 0.28602302 0.55178303 0.41658801\n\t\t 0.77473199 0.089864016 0.379776 0.34575403 0.97606701 0.10229701 0.34745401 0.67073601\n\t\t 0.42526001 0.48413199 0.65442699 0.43213099 0.98059797 0.50948799 0.17641 0.009370029\n\t\t 0.43606901 0.350173 0.99147201 0.51736999 0.27147201 0.95737189 0.47121599 0.35637802\n\t\t 0.47021601 0.372172 0.117264 0.41120303 0.41408601 0.046032012 0.092608601 0.076016009\n\t\t 0.055869799 0.48006302 0.021248501 0.56041598 0.62322998 0.65091097 0.85306197 0.79011601\n\t\t 0.65390199 0.41798198 0.26699799 0.070222974 0.81518799 0.362216 0.838139 0.77367103\n\t\t 0.70242298 0.037818015 0.59282202 0.51386297 0.94232702 0.14608401 0.743038 0.24225497\n\t\t 0.615619 0.59079099 0.485816 0.14963597 0.73579699 0.10510302 0.67166501 0.21816897\n\t\t 0.084048197 0.44517303 0.99619198 0.52098203 0.277971 0.40843803 0.28475901 0.79887301\n\t\t 0.279039 0.026961029 0.38144001 0.030342996 0.45096499 0.20830202 0.753851 0.23207998\n\t\t 0.70895702 0.11730498 0.60578501 0.71140301 0.77320403 0.13211298 0.716506 0.17377001\n\t\t 0.937769 0.035184979 0.32844001 0.39379299 0.78803098 0.36104798 0.61466801 0.20893198\n\t\t 0.67511499 0.743213 0.88252699 0.75703698 0.634049 0.091544986 0.78985798 0.051284015\n\t\t 0.67158699 0.41806501 0.92120302 0.61741799 0.241256 0.041603029 0.99170601 0.51998603\n\t\t 0.99121201 0.52229202 0.69523799 0.30471098 0.22980601 0.24848098 0.27937001 0.22459799\n\t\t 0.54102898 0.764431 0.714109 0.20270699 0.75787097 0.80440801 0.33430099 0.42288399\n\t\t 0.575634 0.10956001 0.26780301 0.22744697 0.69529802 0.30221599 0.76784199 0.41019899\n\t\t 0.44190699 0.38929701 0.19013301 0.49700397 0.28054801 0.29929298 0.74909002 0.43198401\n\t\t 0.073982902 0.700634 0.0416869 0.459683 0.0575049 0.505876 0.090866096 0.46166199\n\t\t 0.091200002 0.59672099 0.92872399 0.046958029 0.093832202 0.23371601 0.072517402\n\t\t 0.44266099 0.33391899 0.220254 0.313604 0.22452801 0.41554701 0.31584901 0.94207799\n\t\t 0.023539007 0.72206402 0.229029 0.50370598 0.144481 0.776568 0.079892993 0.83485901\n\t\t 0.84406298 0.82898998 0.15759498 0.57411802 0.50414699 0.89484501 0.47921401 0.63564402\n\t\t 0.10133302 0.98066002 0.51093 0.36050799 0.244959 0.40872899 0.05637002 0.33641699\n\t\t 0.051164985 0.390246 0.020273983 0.997293 0.52088702 0.637743 0.36907202 0.0167739\n\t\t 0.093562007 0.55331898 0.11419201 0.21060701 0.009370029 0.398 0.076793015 0.99677902\n\t\t 0.52837896 0.79690701 0.81285101 0.82590002 0.030682027 0.40700901 0.27573299 0.77826798\n\t\t 0.017225981 0.89002901 0.37511498 0.55798602 0.84607303 0.79270899 0.13861299 0.70974201\n\t\t 0.790595 0.688842 0.58572501 0.75894099 0.057092011 0.41607201 0.035524011 0.21580701\n\t\t 0.24520701 0.159236 0.009370029 0.075532302 0.021309018 0.98922801 0.50336802 0.458608\n\t\t 0.31458402 0.13851801 0.20072299 0.378463 0.64902103 0.440433 0.43262398 0.048514102\n\t\t 0.451689 0.65472198 0.44634598 0.69045401 0.015851974 0.71027499 0.264543 0.68337899\n\t\t 0.26454401 0.85511202 0.28345501 0.69194698 0.087881029 0.75724798 0.53653598 0.91921002\n\t\t 0.74133801 0.67545599 0.36495697 0.69166601 0.57575399 0.68934 0.56383401 0.769445\n\t\t 0.089864016 0.79451901 0.052170992 0.71846199 0.043603003 0.58977002 0.48689502 0.41606799\n\t\t 0.53786504 0.21060701 0.076016009 0.945517 0.45705801 0.81050098 0.30757701 0.74279499\n\t\t 0.36444497 0.74974 0.908687 0.85215998 0.13376403 0.47156399 0.78741199 0.721789\n\t\t 0.53085101 0.36644 0.44200402 0.78156602 0.30808198 0.77425599 0.92538118 0.54662901\n\t\t 0.20830202 0.60025299 0.20893198 0.70975298 0.48759103 0.45250401 0.93556917 0.43277499\n\t\t 0.003798008 0.99494499 0.77966797 0.85601598 0.86275101 0.61330497 0.90316808 0.78802299\n\t\t 0.089864016 0.70327199 0.13640702 0.84981298 0.77785802 0.47208399 0.41837698 0.52112198\n\t\t 0.37804103 0.94360697 0.24474299 0.73729199 0.20872098 0.26013601 0.98040712 0.095667303\n\t\t 0.46770197 0.79453599 0.194085 0.99607301 0.52675796 0.72148597 0.18386197 0.62696803\n\t\t 0.96519321 0.70612401 0.63034201 0.64674199 0.087881029 0.563793 0.043990016 0.27355599\n\t\t 0.580643 0.46568 0.050069988 0.82501203 0.83557403 0.742773 0.36104703 0.75130099\n\t\t 0.76655197 0.805035 0.772515 0.76784199 0.48759103 0.246711 0.24848002 0.45463899\n\t\t 0.38428199 0.39527199 0.27687401 0.241256 0.015354991 0.241166 0.093536019 0.095866397\n\t\t 0.84599799 0.126 0.081960022 0.83320898 0.358823 0.54268903 0.76687902 0.59956598\n\t\t 0.74039304 0.92219198 0.78398299 0.00909549 0.30502898 0.87122297 0.410972 0.76976103\n\t\t 0.326873;\n\tsetAttr \".uvst[0].uvsp[750:999]\" 0.462237 0.058423996 0.79917997 0.051284015\n\t\t 0.824242 0.87789702 0.37057501 0.43873101 0.15789001 0.30456001 0.24964599 0.23479003\n\t\t 0.47966799 0.20830202 0.36131099 0.43537301 0.41780701 0.45176202 0.37468001 0.330037\n\t\t 0.30866501 0.67701304 0.38805199 0.23987401 0.97310603 0.75043499 0.0599139 0.53819203\n\t\t 0.027132001 0.533871 0.83760703 0.35395402 0.696926 0.11604297 0.29161799 0.009370029\n\t\t 0.57174301 0.53158301 0.82247901 0.30725902 0.94652498 0.016943991 0.84703702 0.037819982\n\t\t 0.93923599 0.628268 0.74828202 0.092545986 0.90946698 0.82100099 0.303065 0.33916199\n\t\t 0.57115698 0.10908002 0.95169902 0.714311 0.43294501 0.054804981 0.99404401 0.51366103\n\t\t 0.59896803 0.74101496 0.29706699 0.372172 0.51003802 0.38459402 0.60671002 0.237688\n\t\t 0.464443 0.090816021 0.41981801 0.30502099 0.29161701 0.21716899 0.32883099 0.20335102\n\t\t 0.279039 0.009370029 0.56943601 0.43817198 0.661856 0.10510302 0.330064 0.37210399\n\t\t 0.65788603 0.22906703 0.56427503 0.48098701 0.126 0.041603029 0.37936801 0.31523901\n\t\t 0.95719302 0.0014690161 0.30224001 0.77092397 0.66713798 0.53545201 0.69605702 0.051209986\n\t\t 0.73405099 0.015094995 0.899225 0.29098201 0.32812899 0.40544897 0.946455 0.034204006\n\t\t 0.60505599 0.20893198 0.98079801 0.51366603 0.071111798 0.51533699 0.208046 0.67878801\n\t\t 0.67771 0.10510302 0.36801299 0.34792602 0.22657999 0.021309018 0.16219001 0.24848002\n\t\t 0.117801 0.61630297 0.340361 0.093349993 0.075910203 0.093566 0.193698 0.045943022\n\t\t 0.208722 0.30441302 0.84358603 0.26490098 0.84575099 0.302459 0.53946698 0.22800702\n\t\t 0.46244901 0.0074110031 0.53753799 0.157969 0.61231202 0.249542 0.70890403 0.63958699\n\t\t 0.858154 0.202461 0.60802603 0.21433002 0.67577797 0.74337804 0.698304 0.79806197\n\t\t 0.690409 0.41131097 0.087805197 0.20072401 0.17641 0.032191992 0.736691 0.193636\n\t\t 0.51811898 0.47267199 0.46056101 0.21797103 0.117816 0.62801802 0.080840498 0.615381\n\t\t 0.18309399 0.330028 0.079697996 0.78073096 0.39912 0.071485996 0.39228299 0.036090016\n\t\t 0.96674502 0.17846102 0.85441101 0.43198401 0.76493299 0.048968017 0.75768101 0.21398097\n\t\t 0.717125 0.866763 0.82415301 0.87117201 0.90133101 0.25049502 0.541228 0.16006202\n\t\t 0.82670999 0.063135982 0.613841 0.22881597 0.975797 0.50287801 0.270841 0.158391\n\t\t 0.41609901 0.32794899 0.92661202 0.61794496 0.423729 0.45421702 0.88722003 0.021552026\n\t\t 0.48999101 0.323838 0.14243101 0.045943022 0.63923198 0.64078403 0.54930401 0.487212\n\t\t 0.41738901 0.392241 0.49242201 0.33916098 0.292052 0.093356013 0.389696 0.194686\n\t\t 0.043292601 0.45195103 0.055392701 0.51183999 0.0414172 0.55179596 0.045545299 0.20072401\n\t\t 0.032392401 0.23053402 0.053348798 0.44477898 0.81706101 0.91126353 0.56844902 0.11425298\n\t\t 0.71609098 0.72041798 0.85497701 0.94359142 0.82417798 0.18992299 0.788073 0.84554398\n\t\t 0.77898097 0.364443 0.68971997 0.61645603 0.52739501 0.21797103 0.48303699 0.29896301\n\t\t 0.445355 0.318259 0.81377202 0.69314098 0.85441101 0.43912798 0.030810401 0.782812\n\t\t 0.74654698 0.10789597 0.798998 0.164738 0.40673199 0.46639001 0.38620201 0.668244\n\t\t 0.43340799 0.492971 0.109512 0.021309018 0.23401 0.372172 0.65476298 0.17011702 0.80120897\n\t\t 0.47432297 0.81398797 0.83353901 0.59130901 0.18213803 0.50966698 0.39794201 0.71939498\n\t\t 0.037038028 0.63482898 0.99666172 0.733711 0.36105299 0.56207699 0.402906 0.526443\n\t\t 0.64682698 0.555237 0.10390598 0.782686 0.092545986 0.32758099 0.43408197 0.78125\n\t\t 0.098941982 0.393029 0.11759001 0.19531199 0.648489 0.104709 0.20072401 0.150901\n\t\t 0.36980599 0.14026199 0.22744799 0.116621 0.26074803 0.179094 0.25670499 0.158415\n\t\t 0.20858401 0.68927598 0.066029012 0.140249 0.46684301 0.17829899 0.66055399 0.24055199\n\t\t 0.10050398 0.110525 0.22151899 0.228067 0.158391 0.142518 0.15839303 0.75183803 0.36443901\n\t\t 0.89437801 0.250063 0.74720401 0.04579401 0.561212 0.39653897 0.99834901 0.17867601\n\t\t 0.63221002 0.25683099 0.78976703 0.37218601 0.83578098 0.15525597 0.93950802 0.56942999\n\t\t 0.44459701 0.12241203 0.59643298 0.073408008 0.651977 0.21535802 0.718135 0.71444798\n\t\t 0.14048199 0.32094598 0.14243101 0.054804981 0.72957098 0.43912798 0.31483299 0.40887201\n\t\t 0.42603299 0.17605799 0.49890801 0.33531302 0.45421699 0.46036899 0.51556599 0.013356984\n\t\t 0.35329801 0.019366026 0.143519 0.44597799 0.65795398 0.091544986 0.55928499 0.052861989\n\t\t 0.65584201 0.686418 0.62379998 0.087881029 0.865794 0.481004 0.575571 0.11814499\n\t\t 0.488033 0.33332199 0.76786298 0.074222982 0.96219099 0.82318997 0.744349 0.015725017\n\t\t 0.61096197 0.84985 0.27306801 0.213229 0.302387 0.224599 0.54410499 0.052148998 0.95700002\n\t\t 0.60541403 0.82196701 0.56613898 0.75519001 0.66571999 0.81185299 0.22801203 0.70725101\n\t\t 0.63980997 0.43294501 0.032191992 0.14643499 0.20330298 0.45223501 0.43911499 0.41724601\n\t\t 0.040607989 0.254612 0.009370029 0.43294501 0.070222974 0.054788601 0.43236101 0.039911401\n\t\t 0.55960703 0.036845099 0.50671697 0.0437379 0.059605002 0.0166458 0.064749002 0.0166458\n\t\t 0.045943022 0.0166458 0.032191992 0.0437379 0.015354991 0.84113598 0.309246 0.59947598\n\t\t 0.29070199 0.80949199 0.038664997 0.62336701 0.74760401 0.58830601 0.12005901 0.94666499\n\t\t 0.26060402 0.75387198 0.34021997 0.274719 0.22095102 0.74149799 0.229366 0.76591301\n\t\t 0.29156601 0.51177102 0.052531004 0.79762602 0.051284015 0.68150598 0.21816897 0.52797401\n\t\t 0.18991601 0.89328003 0.54617596 0.128668 0.22893 0.075532302 0.009370029 0.159236\n\t\t 0.021309018 0.87688398 0.43789399 0.57438201 0.62952501 0.27448699 0.33131701 0.43110201\n\t\t 0.42539102 0.41834 0.050755024 0.80590099 0.86525398;\n\tsetAttr \".uvst[0].uvsp[1000:1249]\" 0.0087836897 0.55168998 0.78936398 0.80491102\n\t\t 0.31087899 0.540941 0.51263899 0.635571 0.787287 0.838471 0.70242399 0.038275003\n\t\t 0.385562 0.19188499 0.71376503 0.78731102 0.70947599 0.10510302 0.707066 0.36450797\n\t\t 0.75701302 0.17702299 0.87750697 0.45123601 0.65134001 0.10510302 0.44758499 0.372172\n\t\t 0.76934302 0.29189098 0.149872 0.099443972 0.58310699 0.53256702 0.87375301 0.38231498\n\t\t 0.51838797 0.22880697 0.57405502 0.11893803 0.80115002 0.074514985 0.74909002 0.41754699\n\t\t 0.21290199 0.25670499 0.56008899 0.011471987 0.491676 0.061649024 0.36100599 0.34939098\n\t\t 0.433898 0.38929898 0.30583301 0.050275981 0.608132 0.45338202 0.027483501 0.79030597\n\t\t 0.078004397 0.22429502 0.0296878 0.43888903 0.096258499 0.48537999 0.685076 0.56202102\n\t\t 0.126 0.032191992 0.80225301 0.28953099 0.835648 0.86855602 0.259574 0.29968202 0.878483\n\t\t 0.028609991 0.49826199 0.33833301 0.51126897 0.9843058 0.937859 0.015872002 0.58820099\n\t\t 0.15557098 0.94178498 0.32300299 0.72511703 0.73123896 0.315364 0.434066 0.40842199\n\t\t 0.35755599 0.70252597 0.50116301 0.50971901 0.40473598 0.87763202 0.80512202 0.55748802\n\t\t 0.46007699 0.97538799 0.261796 0.075532302 0.076016009 0.39258599 0.11971301 0.29161799\n\t\t 0.087776005 0.88572598 0.12662202 0.32748899 0.40415603 0.36183801 0.407094 0.464434\n\t\t 0.308384 0.43800399 0.38379902 0.60921502 0.719971 0.79607201 0.051284015 0.75402701\n\t\t 0.34662801 0.40290201 0.39679301 0.802158 0.28741002 0.37781399 0.31722897 0.94628203\n\t\t 0.32827401 0.68777502 0.17357397 0.81936598 0.29574502 0.54469597 0.747648 0.76408398\n\t\t 0.55051303 0.134417 0.44373697 0.80227399 0.75118101 0.68613601 0.70950496 0.69305301\n\t\t 0.18079501 0.55180901 0.481062 0.21580701 0.23479003 0.17641 0.041603029 0.81224197\n\t\t 0.029844999 0.42089799 0.42996401 0.35202399 0.41089302 0.141018 0.44855499 0.87084401\n\t\t 0.30513102 0.72017002 0.24042201 0.614142 0.073769987 0.0294233 0.42797601 0.78534901\n\t\t 0.45353299 0.40556699 0.0035979748 0.45096499 0.21797103 0.17855699 0.9569515 0.69480199\n\t\t 0.24232 0.74501503 0.19835401 0.69540697 0.29708099 0.67394203 0.23675901 0.70740998\n\t\t 0.57264 0.84328902 0.13115603 0.569749 0.53542 0.189466 0.39827198 0.78109998 0.75442302\n\t\t 0.720851 0.21816897 0.56876999 0.19347501 0.51045197 0.411641 0.215554 0.22084397\n\t\t 0.85091603 0.87785298 0.38077599 0.019804001 0.14026199 0.22892803 0.79192901 0.80796498\n\t\t 0.87388003 0.91226202 0.656506 0.65806299 0.44740999 0.31451201 0.64705402 0.21816897\n\t\t 0.93033999 0.251001 0.29161799 0.050275981 0.0931243 0.22429502 0.39858499 0.97083151\n\t\t 0.380007 0.34933001 0.60522699 0.96195853 0.438131 0.48694003 0.30583301 0.070222974\n\t\t 0.092608601 0.021309018 0.30259699 0.44423997 0.217372 0.19537401 0.256212 0.22459501\n\t\t 0.73654002 0.18755299 0.368783 0.077486992 0.80120897 0.45353299 0.77737701 0.089864016\n\t\t 0.53915697 0.16235799 0.51354402 0.096643984 0.627114 0.24045402 0.86627603 0.83245802\n\t\t 0.68733603 0.19325298 0.85712498 0.035970986 0.79391301 0.078951001 0.60794401 0.56008697\n\t\t 0.71592999 0.21535802 0.75613499 0.089864016 0.59222001 0.583772 0.61946899 0.48681599\n\t\t 0.51941502 0.011000991 0.92762601 0.098527014 0.171069 0.33231199 0.66140199 0.078081012\n\t\t 0.61803299 0.23817801 0.806952 0.052170992 0.43294501 0.081960022 0.47056201 0.32111102\n\t\t 0.27382299 0.099601984 0.368705 0.75051999 0.45192 0.35636997 0.34065101 0.33232403\n\t\t 0.261457 0.48912603 0.43703499 0.33344001 0.41839501 0.19014502 0.45411 0.54374301\n\t\t 0.38874099 0.10004902 0.69528598 0.32226002 0.817164 0.29716903 0.66739601 0.066302001\n\t\t 0.26147199 0.48926002 0.69101101 0.66179001 0.38210201 0.66811901 0.52925199 0.34118199\n\t\t 0.68323702 0.58990502 0.68722099 0.19225001 0.97105998 0.09591198 0.48708099 0.31566501\n\t\t 0.83086503 0.13426203 0.93194801 0.78809297 0.217894 0.64926398 0.67278397 0.19897699\n\t\t 0.32876799 0.21319002 0.148128 0.24520701 0.31165799 0.33372599 0.44764301 0.35273498\n\t\t 0.49348 0.372172 0.46422401 0.25880599 0.37781999 0.66715401 0.80636001 0.067773998\n\t\t 0.40814599 0.020443022 0.69494301 0.24056 0.22661901 0.20335102 0.91438103 0.251091\n\t\t 0.74699801 0.24184299 0.12530001 0.26653701 0.67041397 0.23685801 0.403409 0.10012299\n\t\t 0.72000802 0.81596899 0.85441101 0.481004 0.60676998 0.22831601 0.75252301 0.19014198\n\t\t 0.420533 0.80835301 0.95388198 0.20937598 0.68782002 0.04243499 0.68718398 0.026721001\n\t\t 0.79782301 0.37359601 0.76023698 0.76960003 0.93750799 0.79137301 0.97648501 0.50235903\n\t\t 0.77632201 0.18902999 0.62259299 0.45340002 0.20872299 0.29139 0.35591099 0.66744196\n\t\t 0.319828 0.44915998 0.113161 0.15720397 0.232465 0.217085 0.082194 0.099443972 0.302461\n\t\t 0.22893 0.433898 0.38366097 0.319895 0.025550008 0.32392299 0.99211758 0.47521299\n\t\t 0.48649001 0.755862 0.25747102 0.510019 0.859505 0.63726902 0.22000998 0.96191299\n\t\t 0.15060002 0.95774603 0.15181702 0.53874999 0.41701102 0.48958701 0.37215102 0.732086\n\t\t 0.041527987 0.56765199 0.11190599 0.89713699 0.251252 0.45835799 0.83736503 0.80336601\n\t\t 0.27692199 0.368662 0.019352019 0.87243098 0.20423102 0.245203 0.209189 0.319507\n\t\t 0.21319997 0.83154398 0.047464013 0.82712501 0.38366097 0.39707401 0.686203 0.295329\n\t\t 0.39680302 0.164776 0.405352 0.15474001 0.65295398 0.279039 0.050275981 0.97865802\n\t\t 0.52099502 0.44742799 0.30940098 0.69302499 0.29703099 0.71527702 0.0014250278 0.0034682699\n\t\t 0.076016009 0.41043401 0.087857008 0.0034682699 0.070222974 0.0034682699 0.064749002\n\t\t 0.0034682699 0.059605002 0.764355 0.372172 0.107224 0.29610503 0.193514 0.38251901\n\t\t 0.0034682699 0.054804981 0.91239899 0.77969998 0.714486 0.053489029;\n\tsetAttr \".uvst[0].uvsp[1250:1499]\" 0.70671701 0.17658401 0.33006799 0.369003\n\t\t 0.79824799 0.076838017 0.59267998 0.35373002 0.97997999 0.17066097 0.74647498 0.30446601\n\t\t 0.86003399 0.17342901 0.383268 0.40382898 0.92321098 0.80601799 0.39239901 0.422391\n\t\t 0.80475402 0.83989501 0.393516 0.38139802 0.38741499 0.95105827 0.80095899 0.86128199\n\t\t 0.68744302 0.60574603 0.128668 0.22744602 0.073283598 0.44889802 0.424622 0.0038210154\n\t\t 0.176552 0.492383 0.51025897 0.98320842 0.29161799 0.037030995 0.28348601 0.23479003\n\t\t 0.46056101 0.20830202 0.36771801 0.43074399 0.433898 0.43912798 0.433898 0.39579302\n\t\t 0.109512 0.009370029 0.092608601 0.026961029 0.044557601 0.089448988 0.0484071 0.26075602\n\t\t 0.124433 0.30944997 0.045530401 0.9520492 0.0551854 0.23053402 0.049157999 0.55246103\n\t\t 0.0840533 0.48514199 0.11094 0.48470402 0.0818763 0.57269001 0.98742098 0.511783\n\t\t 0.126 0.064749002 0.68937403 0.37835503 0.85159802 0.36221701 0.68678898 0.29949999\n\t\t 0.454014 0.25255799 0.73224902 0.19831997 0.328767 0.19934201 0.34292001 0.97852588\n\t\t 0.56621599 0.149257 0.88904703 0.28145403 0.327829 0.39128703 0.38962001 0.68301797\n\t\t 0.229177 0.490969 0.690759 0.24144602 0.56814599 0.048332989 0.81769699 0.29788297\n\t\t 0.33614901 0.035302997 0.72475201 0.35883099 0.76773399 0.29254198 0.726412 0.254825\n\t\t 0.86163902 0.013337016 0.71258098 0.056483984 0.87749898 0.10901701 0.77312797 0.29513597\n\t\t 0.94680798 0.24874902 0.72864199 0.51384604 0.256212 0.22892702 0.38234299 0.41385001\n\t\t 0.849069 0.86213303 0.79287797 0.80316001 0.76088399 0.364443 0.69060397 0.352795\n\t\t 0.697891 0.36298501 0.57910901 0.21433002 0.37369299 0.31403601 0.81265599 0.30487502\n\t\t 0.76341599 0.24928802 0.88542497 0.25853401 0.83810198 0.32275897 0.54662901 0.21797103\n\t\t 0.79027599 0.81984997 0.171746 0.64543903 0.205577 0.629071 0.115714 0.23053402 0.122492\n\t\t 0.221533 0.74324399 0.50339997 0.97937298 0.15511602 0.687828 0.202016 0.72814697\n\t\t 0.697918 0.73225999 0.19471502 0.88910103 0.340496 0.65342301 0.404037 0.57552302\n\t\t 0.378084 0.420508 0.41009998 0.076796502 0.61361897 0.46232799 0.16005701 0.47159299\n\t\t 0.41167498 0.57358599 0.55711997 0.45394799 0.62358296 0.32883099 0.20918101 0.424155\n\t\t 0.87317199 0.40497601 0.45485598 0.038683701 0.50585604 0.21060701 0.064749002 0.52075303\n\t\t 0.31178099 0.97272801 0.039354026 0.53470099 0.176395 0.273031 0.49409503 0.67580402\n\t\t 0.077915013 0.66674 0.21816897 0.80907398 0.86015201 0.62209201 0.19341201 0.64825702\n\t\t 0.20627898 0.57581198 0.136581 0.76749998 0.063960016 0.96303201 0.23951799 0.14243101\n\t\t 0.076016009 0.954373 0.01542002 0.82084298 0.86567998 0.42566201 0.895706 0.433898\n\t\t 0.446311 0.426276 0.030411005 0.562325 0.487077 0.026721301 0.208583 0.0114221 0.73799896\n\t\t 0.018691899 0.830015 0.0125407 0.99637347 0.977153 0.52573502 0.193698 0.050275981\n\t\t 0.84243 0.362216 0.88925898 0.14215302 0.76414299 0.092545986 0.66922301 0.24168801\n\t\t 0.719414 0.037405014 0.87070101 0.810736 0.100658 0.23053402 0.51772499 0.43905997\n\t\t 0.75066102 0.77486098 0.40401101 0.62913704 0.91332603 0.73685503 0.86752403 0.30793798\n\t\t 0.77263099 0.28913897 0.256679 0.630817 0.80326802 0.23391402 0.80887699 0.24784601\n\t\t 0.89054602 0.13333601 0.75587898 0.253685 0.88724899 0.24050999 0.179094 0.24848098\n\t\t 0.54664803 0.18823302 0.86051297 0.36230898 0.71217 0.120134 0.56378901 0.51707399\n\t\t 0.25120601 0.69191897 0.28096101 0.34001398 0.27961901 0.97548681 0.478605 0.22330499\n\t\t 0.38983199 0.10023499 0.94068903 0.45435297 0.593436 0.51964104 0.56939501 0.11747903\n\t\t 0.147478 0.30459398 0.186511 0.22745001 0.089452103 0.87933803 0.23591299 0.20919502\n\t\t 0.232987 0.23178101 0.19650801 0.42539501 0.221442 0.35972601 0.18391199 0.61487997\n\t\t 0.19082101 0.11343598 0.20527799 0.70029497 0.132953 0.37122703 0.89014 0.45765299\n\t\t 0.69343901 0.57753003 0.76414299 0.089864016 0.66510201 0.55373502 0.62791902 0.99603516\n\t\t 0.63031203 0.96567428 0.86917198 0.095513999 0.50721401 0.32607198 0.58581197 0.20627898\n\t\t 0.88400298 0.56004703 0.301606 0.60718 0.85803097 0.18896103 0.58820099 0.10510302\n\t\t 0.90286702 0.72729301 0.64719099 0.74952102 0.78364599 0.051284015 0.83320898 0.36444002\n\t\t 0.41766399 0.014792979 0.72237498 0.241274 0.79385501 0.85084403 0.14243101 0.050275981\n\t\t 0.79832101 0.074051023 0.0034682699 0.050275981 0.33134699 0.829642 0.0034682699\n\t\t 0.026961029 0.0034682699 0.009370029 0.809201 0.029844999 0.48068801 0.357337 0.349013\n\t\t 0.35265899 0.42340001 0.060514987 0.50785601 0.010591984 0.92462498 0.685727 0.236084\n\t\t 0.73398399 0.57449698 0.66349304 0.75690502 0.23688197 0.91274101 0.13796097 0.48152101\n\t\t 0.337991 0.84646201 0.18546498 0.74753398 0.24304098 0.38676399 0.23927802 0.56391799\n\t\t 0.53070903 0.92933398 0.33305699 0.96251303 0.027633011 0.63365501 0.22000998 0.88114101\n\t\t 0.77245098 0.64488298 0.22482997 0.87457502 0.52511597 0.654558 0.46033698 0.76784199\n\t\t 0.446311 0.72957098 0.42480898 0.76771897 0.29368597 0.44254899 0.94192272 0.218181\n\t\t 0.62991703 0.245203 0.20334601 0.87255001 0.49920201 0.25503099 0.093578994 0.57993299\n\t\t 0.42406899 0.59123403 0.54274297 0.044596702 0.748954 0.469659 0.33188301 0.30583301\n\t\t 0.076016009 0.498025 0.34017402 0.33537 0.11410397 0.68957698 0.017373979 0.100455\n\t\t 0.46867299 0.193698 0.070222974 0.88598198 0.48659998 0.27234399 0.53982103 0.52012902\n\t\t 0.23489302 0.68915302 0.68285501 0.75881302 0.092545986 0.77278298 0.29590601 0.66956198\n\t\t 0.66739404 0.82712501 0.45353299 0.65638298 0.091544986 0.692514 0.31459999 0.76094598\n\t\t 0.53412497 0.58600402 0.569148 0.83272499 0.53235996 0.63003403 0.13010502;\n\tsetAttr \".uvst[0].uvsp[1500:1749]\" 0.88811302 0.24676102 0.74635297 0.54404902\n\t\t 0.58143002 0.19608498 0.475375 0.438833 0.38945699 0.14940703 0.76387697 0.98740131\n\t\t 0.498887 0.22884703 0.21642099 0.11414403 0.78669101 0.69115698 0.075532302 0.050275981\n\t\t 0.46794799 0.075886011 0.39860901 0.42765802 0.38218501 0.44893003 0.391947 0.41116601\n\t\t 0.557814 0.049983025 0.30440399 0.96377498 0.433898 0.40285897 0.972848 0.69464898\n\t\t 0.433898 0.48759103 0.40100399 0.0035799742 0.66700703 0.56758499 0.0198061 0.71975303\n\t\t 0.029855801 0.79853201 0.0130195 0.54926503 0.025409101 0.55537099 0.0218278 0.55556899\n\t\t 0.0117366 0.15720397 0.0267283 0.615888 0.0132381 0.534702 0.0084243696 0.71946096\n\t\t 0.0035878699 0.093554974 0.54751402 0.39127803 0.59718198 0.21433002 0.81544602 0.18978399\n\t\t 0.71236902 0.091544986 0.70906401 0.35349798 0.78560603 0.84582698 0.60397798 0.9055199\n\t\t 0.454274 0.06407398 0.317325 0.23478901 0.60839099 0.43884999 0.87142801 0.81740999\n\t\t 0.948825 0.042621017 0.77688497 0.16443998 0.76088399 0.35882002 0.159666 0.093577027\n\t\t 0.57581502 0.48694903 0.73031199 0.81018001 0.69811797 0.064248979 0.209737 0.227449\n\t\t 0.60775298 0.54380298 0.54127002 0.15649801 0.28032601 0.37520403 0.78565001 0.74867797\n\t\t 0.76591802 0.99743295 0.401705 0.24433899 0.432547 0.646676 0.30314401 0.96038252\n\t\t 0.48940399 0.43898898 0.157882 0.299537 0.233991 0.37211001 0.47758099 0.47346997\n\t\t 0.42142299 0.07091099 0.047421701 0.457708 0.055086501 0.52727199 0.098880298 0.635692\n\t\t 0.26748601 0.093464971 0.99188101 0.532224 0.69173598 0.775401 0.67490202 0.17923999\n\t\t 0.58633798 0.21433002 0.606381 0.41023099 0.991247 0.73565304 0.850384 0.132855 0.74997801\n\t\t 0.024507999 0.73580998 0.20743299 0.459113 0.9340257 0.68557 0.034699023 0.683604\n\t\t 0.31071001 0.584135 0.64123297 0.686423 0.21535802 0.87712097 0.751674 0.85980898\n\t\t 0.36997598 0.43570101 0.91354287 0.80208498 0.87122297 0.950656 0.091057003 0.16002201\n\t\t 0.59466499 0.87389898 0.31305099 0.651977 0.21816897 0.91588598 0.33377898 0.17533401\n\t\t 0.88305199 0.134877 0.55528104 0.338204 0.20336801 0.33812901 0.087984979 0.65886199\n\t\t 0.32823598 0.93144 0.93526089 0.61362398 0.57693499 0.50479603 0.29928499 0.41431499\n\t\t 0.051060021 0.98769498 0.60434496 0.26743799 0.9908821 0.77850199 0.016794026 0.232987\n\t\t 0.227449 0.66989201 0.52516699 0.96190399 0.040076971 0.34772801 0.20324701 0.43294501\n\t\t 0.045943022 0.94896603 0.008539021 0.90434402 0.177679 0.54164499 0.16175598 0.71171802\n\t\t 0.175538 0.89473999 0.80930901 0.68640399 0.036023974 0.758241 0.21754199 0.80612302\n\t\t 0.35882699 0.74085999 0.19255602 0.37291199 0.32656199 0.67025298 0.039241016 0.74436402\n\t\t 0.015313029 0.58875501 0.37806702 0.656223 0.58825302 0.748595 0.24372602 0.0786746\n\t\t 0.233715 0.159236 0.054804981 0.075532302 0.070222974 0.92798698 0.44937801 0.65374202\n\t\t 0.69302404 0.60835201 0.22001302 0.244937 0.26034701 0.70136601 0.57290304 0.33313301\n\t\t 0.34036797 0.30583301 0.087776005 0.22657999 0.064749002 0.59072798 0.74632901 0.092608601\n\t\t 0.037030995 0.38184199 0.035722971 0.88149202 0.36091602 0.85180497 0.018355012 0.0385882\n\t\t 0.507653 0.40544999 0.31615901 0.76969498 0.773718 0.60583502 0.73237896 0.88616902\n\t\t 0.28675199 0.76825899 0.29016697 0.842161 0.364429 0.69498402 0.31219602 0.720828\n\t\t 0.34879601 0.57298601 0.0089100003 0.35795099 0.47547197 0.70724797 0.014928997 0.71579897\n\t\t 0.35882097 0.50347 0.59198403 0.62759203 0.224756 0.67157203 0.58268702 0.61361301\n\t\t 0.22001201 0.67231601 0.27101302 0.57417101 0.14594001 0.577398 0.11103398 0.47370699\n\t\t 0.035094023 0.42525199 0.48399401 0.254491 0.21323502 0.720357 0.70786202 0.0029345599\n\t\t 0.26075101 0.219256 0.376589 0.62649798 0.62351596 0.87162298 0.38929099 0.656896\n\t\t 0.21816897 0.241256 0.021309018 0.757312 0.30387598 0.78802299 0.092545986 0.46913099\n\t\t 0.061312973 0.97134298 0.27006203 0.75502402 0.26238197 0.797261 0.030694008 0.513699\n\t\t 0.42554098 0.68584299 0.036350012 0.256212 0.23178101 0.31338799 0.68538296 0.62519503\n\t\t 0.90867782 0.77898097 0.35881901 0.727395 0.72549301 0.433898 0.45353299 0.42826\n\t\t 0.050424993 0.35367 0.01423502 0.70975298 0.43912798 0.88179302 0.34814698 0.72604501\n\t\t 0.826554 0.421817 0.49946499 0.74330699 0.0016509891 0.64537102 0.76081002 0.36860001\n\t\t 0.40933698 0.39505899 0.44461602 0.80518299 0.90490353 0.396415 0.45562297 0.7852\n\t\t 0.051284015 0.049235299 0.48679602 0.71644902 0.76859599 0.66343302 0.32216001 0.76148099\n\t\t 0.092545986 0.82438701 0.029844999 0.88223398 0.13361901 0.36993599 0.22357899 0.70366901\n\t\t 0.33915401 0.56082702 0.39035302 0.28225499 0.97930801 0.52511901 0.30091 0.60635197\n\t\t 0.52252698 0.340094 0.42698097 0.30583301 0.032191992 0.70931602 0.73957598 0.75252301\n\t\t 0.81188899 0.79006302 0.78710699 0.29706699 0.36907202 0.818313 0.029844999 0.72390699\n\t\t 0.35302103 0.76521701 0.22993797 0.70917797 0.66396701 0.51934999 0.057398021 0.52240902\n\t\t 0.157924 0.43294501 0.009370029 0.38248599 0.056638002 0.038358301 0.43954301 0.40469399\n\t\t 0.025729001 0.126 0.021309018 0.74075502 0.67601204 0.82287002 0.030682027 0.711016\n\t\t 0.21816897 0.77990103 0.78025502 0.58820099 0.10133302 0.59773701 0.52001297 0.88643199\n\t\t 0.28101897 0.93648702 0.14544702 0.61430901 0.55941403 0.38345701 0.59221101 0.780294\n\t\t 0.97963381 0.93060499 0.416215 0.62577498 0.22000998 0.106473 0.39387298 0.48966101\n\t\t 0.47921801 0.42803201 0.060249984 0.279039 0.054804981 0.0061354502 0.29938298 0.0069887801\n\t\t 0.53664899 0.0062244399 0.54178202 0.35980999 0.33343101 0.65119398 0.70758498 0.86053997\n\t\t 0.790003 0.649014 0.63288403 0.47008401 0.37213701 0.57093197 0.16183299;\n\tsetAttr \".uvst[0].uvsp[1750:1999]\" 0.33705699 0.099372029 0.44440401 0.029163003\n\t\t 0.942586 0.10712498 0.430574 0.099126995 0.832003 0.83756697 0.76730502 0.37894702\n\t\t 0.691791 0.014648974 0.42257199 0.31603301 0.12937 0.81943399 0.39540401 0.093434989\n\t\t 0.097301297 0.30427998 0.92685002 0.78554797 0.66713101 0.10133302 0.69967502 0.62573004\n\t\t 0.91805702 0.782637 0.83049101 0.30556202 0.149872 0.154567 0.82134998 0.030682027\n\t\t 0.55619502 0.082171023 0.97767502 0.26361501 0.860241 0.32464302 0.45565 0.91625261\n\t\t 0.59411001 0.46054202 0.69044602 0.015794992 0.748285 0.089863002 0.62281102 0.22000998\n\t\t 0.55623502 0.21797103 0.67695701 0.35481501 0.84824002 0.87638402 0.86924303 0.81641102\n\t\t 0.89038599 0.573493 0.79578501 0.065733016 0.60702801 0.90579617 0.66129303 0.087881029\n\t\t 0.73053098 0.10510302 0.71185201 0.73260999 0.61312401 0.22001201 0.45548001 0.49369103\n\t\t 0.43740001 0.45405799 0.48178399 0.34317499 0.34555 0.40746701 0.39362699 0.40837002\n\t\t 0.61706299 0.21432698 0.376854 0.39577699 0.69797403 0.63401604 0.94680703 0.25253397\n\t\t 0.67608202 0.24136001 0.70397002 0.87239099 0.50887799 0.24482602 0.59004903 0.396905\n\t\t 0.44515201 0.33841902 0.41322801 0.060931027 0.254513 0.093514025 0.491965 0.45210397\n\t\t 0.0035878599 0.093554974 0.60524702 0.48059797 0.85973299 0.27011001 0.61650598 0.25576103\n\t\t 0.60341299 0.091544986 0.800735 0.052170992 0.50342399 0.286874 0.46060401 0.93014258\n\t\t 0.53502399 0.37807101 0.87049901 0.775051 0.55067301 0.58004403 0.291646 0.21322799\n\t\t 0.64513201 0.60570002 0.254491 0.20919698 0.30174699 0.976376 0.28235701 0.19931799\n\t\t 0.42175999 0.035144985 0.196173 0.54512501 0.187546 0.24848098 0.23205601 0.36311799\n\t\t 0.053656802 0.49044102 0.241015 0.36227202 0.18264399 0.36907202 0.246711 0.25670499\n\t\t 0.170404 0.20858598 0.18278299 0.26187497 0.191577 0.10120797 0.568039 0.46750402\n\t\t 0.81527799 0.030682027 0.983634 0.52230096 0.80120897 0.38366097 0.34901899 0.27574801\n\t\t 0.50183803 0.51346004 0.671552 0.091544986 0.748923 0.73612499 0.33647299 0.27430397\n\t\t 0.69553798 0.057914972 0.827407 0.030682027 0.69830602 0.173352 0.67382598 0.24214202\n\t\t 0.75059801 0.56433499 0.43577299 0.363298 0.749304 0.23787302 0.53700697 0.20830202\n\t\t 0.60986501 0.20893198 0.818573 0.29898298 0.753555 0.29826301 0.76552403 0.22414398\n\t\t 0.70459902 0.18147802 0.578605 0.41727501 0.16868 0.411102 0.59214401 0.47426403\n\t\t 0.451619 0.073668003 0.0437379 0.081960022 0.0437379 0.087776005 0.0166458 0.041603029\n\t\t 0.0437379 0.037030995 0.747383 0.71138096 0.74223697 0.50952899 0.35308599 0.029851973\n\t\t 0.47503299 0.31997597 0.28082901 0.70425797 0.71166003 0.62984401 0.30604601 0.24520701\n\t\t 0.96406502 0.077628016 0.62520498 0.10133302 0.244605 0.22892702 0.89313501 0.29694402\n\t\t 0.64819801 0.20868403 0.94294 0.24722999 0.437204 0.44693899 0.116033 0.154567 0.159236\n\t\t 0.070222974 0.075532302 0.054804981 0.48919401 0.21797103 0.37764201 0.40280098 0.14868\n\t\t 0.36630201 0.42185 0.83162403 0.13696 0.29952198 0.433898 0.481004 0.40407601 0.076542974\n\t\t 0.092608601 0.015354991 0.29161799 0.070222974 0.029299701 0.39974999 0.0099872397\n\t\t 0.27813399 0.0105179 0.26075298 0.0095779197 0.86699098 0.0146993 0.20859802 0.210548\n\t\t 0.093553007 0.98742098 0.51303101 0.72927499 0.76345897 0.87567699 0.76740801 0.311652\n\t\t 0.33906502 0.78003001 0.089864016 0.61947697 0.20893198 0.62216002 0.22000998 0.79296499\n\t\t 0.051284015 0.376059 0.41232902 0.52377802 0.28843898 0.912175 0.060491025 0.159236\n\t\t 0.081960022 0.639548 0.087881029 0.37901399 0.96025968 0.417492 0.43125999 0.31405601\n\t\t 0.22744501 0.320034 0.063637018 0.22687501 0.093609989 0.142409 0.093578994 0.092608601\n\t\t 0.050275981 0.0830153 0.57183599 0.0433136 0.51318097 0.063910998 0.542247 0.086253501\n\t\t 0.23371601 0.121613 0.20072401 0.048355199 0.154567 0.0154799 0.66322899 0.108187\n\t\t 0.23053402 0.85823798 0.17405897 0.60762298 0.46052098 0.65505499 0.026154995 0.41256899\n\t\t 0.463696 0.32452601 0.98417258 0.61903298 0.22000998 0.77948397 0.796911 0.85980201\n\t\t 0.14091402 0.77977699 0.10381699 0.87178499 0.20905697 0.68961799 0.0096740127 0.92275\n\t\t 0.109083 0.339192 0.36552602 0.46489301 0.347826 0.43169799 0.20830202 0.67799801\n\t\t 0.25482702 0.96358198 0.60907501 0.72964001 0.77766001 0.70139199 0.35585099 0.791412\n\t\t 0.052170992 0.90042198 0.25514698 0.56818497 0.13786101 0.68705398 0.026645005 0.51870799\n\t\t 0.11390197 0.270208 0.32358098 0.650666 0.71549499 0.82712501 0.46759498 0.42482099\n\t\t 0.46275997 0.35281399 0.33902901 0.14643499 0.21625698 0.56897497 0.15621501 0.267995\n\t\t 0.97756439 0.84790498 0.15681601 0.583049 0.22001398 0.66932899 0.608778 0.57623702\n\t\t 0.11196899 0.78675199 0.051284015 0.75753301 0.774212 0.78233498 0.10313499 0.817586\n\t\t 0.50310397 0.75379997 0.28426099 0.59322703 0.46755201 0.42484999 0.087855995 0.332275\n\t\t 0.42031997 0.27082601 0.359882 0.378144 0.206595 0.28235701 0.20919299 0.433898 0.46066999\n\t\t 0.30583301 0.021309018 0.092608601 0.070222974 0.38038501 0.093326986 0.0032363001\n\t\t 0.099443972 0.0032363001 0.154567 0.0024500999 0.208462 0.126 0.009370029 0.193698\n\t\t 0.026961029 0.883403 0.89477998 0.74315798 0.74918902 0.888556 0.095350981 0.89583403\n\t\t 0.185574 0.72282302 0.73750103 0.63694298 0.21432602 0.402143 0.31051803 0.527174\n\t\t 0.312958 0.787673 0.85330701 0.78207999 0.98837632 0.990713 0.51308703 0.80384398\n\t\t 0.051284015 0.056967601 0.53306103 0.919168 0.79361701 0.40348399 0.020492017 0.36149701\n\t\t 0.372172 0.31159201 0.33720702 0.23914 0.29140902 0.27732101 0.40630001 0.310222\n\t\t 0.19930297 0.29922101 0.33697098 0.456503 0.0067949891 0.419862 0.31013101;\n\tsetAttr \".uvst[0].uvsp[2000:2249]\" 0.388926 0.11263102 0.46042499 0.047710001\n\t\t 0.082194 0.154567 0.40327999 0.40988201 0.40135899 0.38540697 0.47866699 0.29988903\n\t\t 0.69292802 0.683869 0.72957098 0.47432297 0.690391 0.40466303 0.560233 0.13865203\n\t\t 0.60355997 0.88852698 0.47795099 0.28751397 0.36844301 0.80451399 0.60823601 0.64718199\n\t\t 0.863976 0.36868101 0.90177798 0.11124498 0.29705501 0.36900598 0.52248502 0.39771301\n\t\t 0.61344802 0.21432799 0.14243101 0.026961029 0.68539798 0.59544003 0.48615399 0.31013298\n\t\t 0.104709 0.15720397 0.65237498 0.37830299 0.530518 0.47324598 0.68155301 0.18586302\n\t\t 0.686113 0.034255981 0.70005 0.001996994 0.0444116 0.93239421 0.59161198 0.54140997\n\t\t 0.84514701 0.86895204 0.55072701 0.297791 0.87710798 0.48686099 0.51781899 0.20373797\n\t\t 0.66129303 0.091544986 0.075532302 0.059605002 0.241256 0.059605002 0.59714502 0.65075898\n\t\t 0.661856 0.10133302 0.36963999 0.97177678 0.47592101 0.93936777 0.193248 0.23478901\n\t\t 0.433898 0.47432297 0.40639701 0.087822974 0.058857199 0.29280502 0.047591802 0.23053402\n\t\t 0.0093119703 0.22429502 0.58581197 0.20893198 0.820315 0.291251 0.64371699 0.648296\n\t\t 0.769445 0.092545986 0.80228901 0.051284015 0.27217501 0.15278399 0.58108699 0.43112999\n\t\t 0.37596399 0.39324403 0.75941497 0.039960027 0.70989001 0.15636998 0.69037902 0.39800203\n\t\t 0.977979 0.51862204 0.198606 0.29938799 0.075532302 0.026961029 0.29222801 0.158391\n\t\t 0.39512101 0.27681601 0.44455501 0.33343202 0.46486399 0.25187999 0.37731299 0.23750299\n\t\t 0.38062599 0.08800602 0.0071827699 0.33719301 0.88196403 0.38195097 0.32008201 0.02017498\n\t\t 0.74780703 0.63702202 0.761244 0.97437388 0.69161499 0.60964501 0.69375998 0.014465988\n\t\t 0.698672 0.24072701 0.81957197 0.11489201 0.91457403 0.35557902 0.52707702 0.014357984\n\t\t 0.75479102 0.02708602 0.22136199 0.23178399 0.88685602 0.054566026 0.41246 0.21797103\n\t\t 0.315788 0.69211102 0.0882084 0.97422051 0.0607002 0.46963698 0.123436 0.50466901\n\t\t 0.39279699 0.9828741 0.72596699 0.33346403 0.18296701 0.58974802 0.93013698 0.36491501\n\t\t 0.91567397 0.69125801 0.362984 0.41592801 0.95485902 0.093195021 0.55060798 0.33683598\n\t\t 0.88869601 0.30144799 0.69556898 0.14910698 0.872787 0.17219001 0.56499398 0.416444\n\t\t 0.276086 0.99022675 0.193248 0.24520701 0.36921099 0.66940296 0.39508399 0.316953\n\t\t 0.47160599 0.10753697 0.44096401 0.44736803 0.41091701 0.01502198 0.29161799 0.076016009\n\t\t 0.99662602 0.52545601 0.818896 0.28833598 0.96251601 0.023606002 0.58189797 0.43838298\n\t\t 0.89892399 0.81596398 0.68462098 0.331218 0.57389998 0.65389001 0.77737701 0.092545986\n\t\t 0.88019699 0.099893987 0.94742298 0.51834404 0.39716601 0.37451398 0.39798099 0.38919502\n\t\t 0.092991099 0.093569994 0.254612 0.041603029 0.76788503 0.378959 0.656896 0.21535802\n\t\t 0.126404 0.093595028 0.66777098 0.54610401 0.57905602 0.160155 0.45329201 0.077982008\n\t\t 0.87582201 0.96778452 0.56667501 0.045454025 0.614582 0.76625597 0.80613297 0.36105001\n\t\t 0.84473503 0.28878099 0.963507 0.742558 0.18263 0.369012 0.580329 0.46758401 0.381062\n\t\t 0.35816699 0.493404 0.37215799 0.42875001 0.40931302 0.473851 0.32905602 0.35396901\n\t\t 0.67737997 0.78534901 0.41754699 0.478118 0.46669197 0.71459198 0.056380987 0.73837399\n\t\t 0.32884502 0.74782097 0.027042985 0.283171 0.21716899 0.51930702 0.055158973 0.72260797\n\t\t 0.091544986 0.95362401 0.76858997 0.47807199 0.034187019 0.52739501 0.20830202 0.355057\n\t\t 0.114048 0.725806 0.81303799 0.37038901 0.96957427 0.31539199 0.49534798 0.169696\n\t\t 0.43762201 0.254612 0.081960022 0.22657999 0.059605002 0.14737 0.33377397 0.17459901\n\t\t 0.15839201 0.218839 0.29938799 0.182427 0.208597 0.055163398 0.44806099 0.239114\n\t\t 0.29939097 0.117148 0.36316901 0.130183 0.69045901 0.12848599 0.29008299 0.15640999\n\t\t 0.36900401 0.865794 0.41754699 0.76432902 0.97113228 0.176552 0.49251699 0.77314198\n\t\t 0.291161 0.244605 0.22459197 0.91174501 0.53756404 0.53859198 0.326415 0.75593901\n\t\t 0.33093601 0.88566101 0.87857598 0.74593699 0.742176 0.400105 0.44094902 0.97644901\n\t\t 0.030489981 0.127312 0.154567 0.075532302 0.081960022 0.0034682699 0.015354991 0.44392499\n\t\t 0.352202 0.441349 0.21797103 0.41312799 0.23080403 0.47295401 0.42513698 0.433898\n\t\t 0.46759498 0.109512 0.045943022 0.53416401 0.37808299 0.38984299 0.082490981 0.76952702\n\t\t 0.89951402 0.983347 0.637523 0.178343 0.30442899 0.78999501 0.887209 0.69041097 0.68968797\n\t\t 0.36656499 0.39673197 0.402542 0.41511703 0.68559003 0.034639001 0.97995901 0.96852767\n\t\t 0.87767398 0.31062102 0.89626002 0.25385201 0.58225203 0.44575799 0.98742098 0.51650101\n\t\t 0.53326398 0.45927799 0.198118 0.22892898 0.26161799 0.9634161 0.29222801 0.19536299\n\t\t 0.22259501 0.97947639 0.0166745 0.77433199 0.193698 0.021309018 0.788791 0.72626996\n\t\t 0.54564202 0.17448503 0.45952201 0.066451013 0.85089397 0.36449498 0.70450902 0.04361099\n\t\t 0.87717599 0.38195097 0.59389299 0.22001398 0.39711499 0.43489403 0.54150701 0.51174301\n\t\t 0.55010498 0.36907202 0.188309 0.14515102 0.145285 0.24848098 0.245203 0.21321303\n\t\t 0.18189 0.332151 0.94967401 0.25337201 0.68039298 0.50091499 0.415943 0.96437639\n\t\t 0.29090801 0.224594 0.29938099 0.31040603 0.396144 0.0094739795 0.66637897 0.18199199\n\t\t 0.52259398 0.230551 0.29901999 0.314174 0.64705402 0.21535802 0.044819798 0.48314798\n\t\t 0.043857601 0.49458402 0.018987801 0.53051001 0.03325 0.26075703 0.0180442 0.23371601\n\t\t 0.029146399 0.78655803 0.0242359 0.48758 0.0455244 0.45477802 0.0157081 0.767533\n\t\t 0.050326299 0.43925202 0.54691303 0.75761598 0.41012901 0.0094149709 0.575495 0.21433097\n\t\t 0.34248799 0.39179999 0.86203998 0.36244899 0.69134498 0.21535802;\n\tsetAttr \".uvst[0].uvsp[2250:2499]\" 0.817406 0.29012102 0.47124499 0.08563 0.807679\n\t\t 0.030682027 0.46970999 0.031782985 0.710531 0.63445401 0.74170798 0.31347901 0.81797302\n\t\t 0.289415 0.82892102 0.030682027 0.208213 0.19940299 0.38896599 0.093316019 0.0341307\n\t\t 0.56350201 0.0465535 0.537898 0.0568716 0.55143297 0.115003 0.49841303 0.062661298\n\t\t 0.21625298 0.0138532 0.754605 0.21060701 0.059605002 0.75686198 0.18127602 0.26361501\n\t\t 0.25670499 0.60768002 0.42441702 0.97648698 0.020877004 0.76148099 0.089864016 0.74512601\n\t\t 0.77889401 0.59346098 0.19656801 0.53567398 0.24812597 0.93093503 0.43923301 0.88972598\n\t\t 0.84458697 0.57006198 0.11130297 0.56860203 0.11596298 0.688757 0.254825 0.85441101\n\t\t 0.42480898 0.77473199 0.088597 0.76044399 0.16801298 0.49801299 0.28634399 0.462814\n\t\t 0.29152203 0.36932501 0.0091419816 0.67307299 0.224958 0.193859 0.22181499 0.213241\n\t\t 0.33008897 0.85441101 0.40285999 0.41810501 0.055751979 0.70478201 0.675583 0.32381701\n\t\t 0.30101001 0.48483199 0.41940802 0.63547301 0.59798896 0.719419 0.037449002 0.27257299\n\t\t 0.31194699 0.26153499 0.44242603 0.67143703 0.41098201 0.865794 0.45353299 0.74909002\n\t\t 0.39579302 0.76784199 0.39579302 0.987423 0.518906 0.71565402 0.264543 0.31199601\n\t\t 0.331788 0.437592 0.49304402 0.30583301 0.037030995 0.092608601 0.087776005 0.81421798\n\t\t 0.28955102 0.0062285401 0.57881999 0.85741699 0.78103602 0.17129 0.64660203 0.59169197\n\t\t 0.410339 0.66696697 0.56744504 0.60140902 0.0099999905 0.482844 0.95614439 0.57270598\n\t\t 0.14924401 0.80357403 0.31656802 0.74243897 0.802616 0.93048799 0.24927598 0.349648\n\t\t 0.62743801 0.72077203 0.17957801 0.95055902 0.070792019 0.90222198 0.106408 0.59118903\n\t\t 0.542633 0.60839099 0.44612801 0.159236 0.059605002 0.639548 0.091544986 0.72000998\n\t\t 0.10133302 0.69178301 0.014591992 0.406863 0.23412299 0.41886899 0.082186997 0.69681102\n\t\t 0.27276701 0.39497399 0.46085602 0.76784199 0.38366097 0.65271503 0.38433999 0.98387301\n\t\t 0.51067603 0.57492 0.39110702 0.8944 0.25249898 0.51819801 0.87881398 0.96203899\n\t\t 0.12278199 0.381199 0.21716797 0.70552498 0.84636301 0.77595901 0.032284975 0.72366899\n\t\t 0.015471995 0.81025898 0.87162697 0.522834 0.40433103 0.978773 0.51611698 0.17641\n\t\t 0.081960022 0.48422399 0.33740801 0.198118 0.22458798 0.21092001 0.093584001 0.52259701\n\t\t 0.39114702 0.70975298 0.38366097 0.451213 0.41771603 0.72522098 0.36907202 0.23500299\n\t\t 0.79640996 0.88047898 0.31057501 0.84729999 0.15602797 0.29212999 0.30257499 0.88622999\n\t\t 0.34062803 0.79218698 0.82534802 0.228966 0.299389 0.86205 0.98832148 0.68391502\n\t\t 0.60107696 0.47547001 0.25088 0.599563 0.624479 0.74709702 0.53675801 0.207102 0.217062\n\t\t 0.81567401 0.76210403 0.6038 0.32118797 0.56670898 0.423599 0.89188099 0.81279999\n\t\t 0.648821 0.087881029 0.70915198 0.11979598 0.99634999 0.52294201 0.10899 0.23371601\n\t\t 0.217373 0.19934899 0.84240299 0.038807988 0.472545 0.026542008 0.391049 0.18465\n\t\t 0.334236 0.152376 0.37981901 0.31845099 0.45495501 0.48667002 0.226504 0.093549013\n\t\t 0.092608601 0.032191992 0.21060701 0.041603029 0.75446898 0.94715267 0.41735399 0.25736398\n\t\t 0.70947599 0.10133302 0.65134001 0.10133302 0.75918001 0.79459399 0.78282601 0.92086822\n\t\t 0.56563598 0.019208014 0.45950001 0.34871 0.99834901 0.19197899 0.67547101 0.59775198\n\t\t 0.9285 0.43728501 0.67327797 0.19450903 0.53337401 0.45242202 0.241256 0.054804981\n\t\t 0.78534901 0.46066999 0.32208499 0.35254598 0.29090801 0.23178202 0.048359301 0.23371601\n\t\t 0.061934199 0.44259399 0.126 0.070222974 0.62032098 0.39708698 0.59356701 0.21433002\n\t\t 0.82419801 0.364438 0.947447 0.25063002 0.662754 0.074087024 0.89767897 0.098048985\n\t\t 0.404163 0.46289903 0.46768999 0.010245979 0.30682701 0.94240892 0.24523699 0.99319345\n\t\t 0.68046099 0.58635902 0.59112501 0.304896 0.47741401 0.335922 0.51086903 0.35330099\n\t\t 0.45341399 0.036638021 0.46507099 0.035552025 0.25860301 0.39888299 0.259527 0.304708\n\t\t 0.254612 0.045943022 0.092608601 0.059605002 0.760647 0.033792019 0.28064501 0.33384198\n\t\t 0.21060701 0.081960022 0.69328099 0.65002203 0.60587901 0.37216002 0.774867 0.010978997\n\t\t 0.68726701 0.61154801 0.125476 0.30308998 0.64299703 0.68624997 0.78192902 0.89236403\n\t\t 0.69065601 0.58132499 0.198605 0.30441201 0.69891101 0.10510302 0.720851 0.21535802\n\t\t 0.71725202 0.78435302 0.13315301 0.46676999 0.69860399 0.24167299 0.80120897 0.43198401\n\t\t 0.198118 0.23178703 0.32384399 0.43968397 0.40339401 0.48132497 0.482977 0.33253801\n\t\t 0.41059199 0.071042001 0.865794 0.38366097 0.0831533 0.44164002 0.036389999 0.49646902\n\t\t 0.043879502 0.52991301 0.104667 0.61258399 0.089795999 0.62588096 0.093733899 0.62238401\n\t\t 0.0321142 0.58755302 0.380656 0.093264997 0.43607801 0.17191601 0.87327498 0.98140359\n\t\t 0.90797597 0.82834399 0.85397899 0.28908199 0.40036899 0.41755497 0.41072899 0.38871801\n\t\t 0.686423 0.21816897 0.78769702 0.703439 0.40402001 0.38401198 0.66754401 0.77038401\n\t\t 0.99770302 0.52571499 0.57728601 0.41079998 0.21371 0.26042902 0.153212 0.19537199\n\t\t 0.194773 0.71963 0.865794 0.41019899 0.80122697 0.37896001 0.38175401 0.18887502\n\t\t 0.485836 0.511558 0.35354999 0.19298899 0.91442102 0.24979299 0.36153099 0.32688302\n\t\t 0.305805 0.093562007 0.070505202 0.72692502 0.84154302 0.12971699 0.76739401 0.078994989\n\t\t 0.77892601 0.13861299 0.69648302 0.024065971 0.47155499 0.40484798 0.33008999 0.397654\n\t\t 0.63869101 0.20893198 0.14958 0.38585198 0.90829003 0.23973298 0.79310203 0.13009298\n\t\t 0.74075699 0.035390019 0.69951701 0.254825 0.54560202 0.44554299 0.545591 0.45969498\n\t\t 0.76068401 0.03420198 0.51592302 0.052451015 0.67799902 0.26454401;\n\tsetAttr \".uvst[0].uvsp[2500:2749]\" 0.40498099 0.37655902 0.074631602 0.22153002\n\t\t 0.49579701 0.33459401 0.40997699 0.67006201 0.109512 0.087776005 0.69078201 0.46045601\n\t\t 0.85441101 0.47432297 0.0488648 0.49738503 0.054328401 0.52114296 0.76971501 0.98755842\n\t\t 0.232987 0.224594 0.95999599 0.77338398 0.52739501 0.20373797 0.96680301 0.015991986\n\t\t 0.40736401 0.36907202 0.74765599 0.25286299 0.44571799 0.12114799 0.652439 0.19737703\n\t\t 0.27306801 0.20919299 0.785353 0.092545986 0.74909902 0.243056 0.58000898 0.34644502\n\t\t 0.69232899 0.630018 0.73831302 0.67871904 0.910043 0.44637299 0.74909002 0.47432297\n\t\t 0.17641 0.070222974 0.197501 0.64436799 0.87851 0.279585 0.85441101 0.446311 0.93233001\n\t\t 0.14513701 0.48173299 0.3398 0.48357001 0.55031002 0.47179601 0.86844999 0.48442599\n\t\t 0.813577 0.240594 0.099399984 0.15472201 0.347193 0.30462801 0.44679898 0.232237\n\t\t 0.52772903 0.101411 0.23371601 0.827932 0.53964102 0.69831598 0.17559397 0.79631102\n\t\t 0.80754101 0.60187602 0.73317003 0.63119203 0.13646001 0.80268502 0.84521198 0.91428\n\t\t 0.79220098 0.96374202 0.17944002 0.169397 0.42580903 0.56820798 0.13516301 0.945508\n\t\t 0.25374198 0.922759 0.68750101 0.80120897 0.46066999 0.74326199 0.22456002 0.105076\n\t\t 0.81751698 0.14243101 0.059605002 0.43476701 0.33708501 0.69732499 0.22900701 0.441349\n\t\t 0.20830202 0.47750399 0.02807498 0.45104101 0.36907202 0.62616903 0.60781097 0.788306\n\t\t 0.051284015 0.195998 0.24848098 0.18264399 0.372172 0.195998 0.25670499 0.104753\n\t\t 0.154567 0.116033 0.099443972 0.188484 0.30440301 0.218841 0.29139 0.174026 0.92001081\n\t\t 0.18262701 0.37211198 0.24945299 0.19536501 0.0961674 0.4619 0.84834701 0.25369102\n\t\t 0.81439197 0.862221 0.79893398 0.16952503 0.74175 0.16837102 0.78435999 0.99933636\n\t\t 0.89175498 0.12976903 0.75414002 0.35090297 0.51162499 0.99817085 0.15879101 0.53578401\n\t\t 0.51002198 0.39125001 0.78977299 0.36907202 0.38896 0.10012001 0.768767 0.29493898\n\t\t 0.87148899 0.17352599 0.95607698 0.86144501 0.69633102 0.14902103 0.65448099 0.61311501\n\t\t 0.17492899 0.33948499 0.471459 0.014885008 0.394945 0.42039901 0.447467 0.36901498\n\t\t 0.79053402 0.74322301 0.78534901 0.48759103 0.30583301 0.064749002 0.62714499 0.24221599\n\t\t 0.22657999 0.087776005 0.233486 0.54143399 0.30482101 0.58172202 0.43294501 0.021309018\n\t\t 0.53133702 0.438806 0.59359902 0.10510302 0.54389 0.18800199 0.79083401 0.024802983\n\t\t 0.114806 0.88105398 0.894849 0.539895 0.66031599 0.52892101 0.82179201 0.97434449\n\t\t 0.91412902 0.256652 0.74468398 0.77524102 0.633735 0.96575028 0.240008 0.11434603\n\t\t 0.79629302 0.783786 0.69080198 0.24055499 0.80976999 0.24152398 0.075532302 0.015354991\n\t\t 0.68610698 0.60066104 0.865794 0.48759103 0.198118 0.22744602 0.470121 0.20373797\n\t\t 0.36273399 0.45875603 0.41149601 0.23498201 0.27220601 0.24520701 0.56264198 0.71034002\n\t\t 0.279039 0.045943022 0.0166458 0.070222974 0.0166458 0.021309018 0.73947698 0.26066601\n\t\t 0.67208201 0.54503798 0.99834901 0.19534802 0.87717599 0.36943299 0.68371397 0.67740601\n\t\t 0.653014 0.39066499 0.77529502 0.97146982 0.83248198 0.19032699 0.711016 0.21535802\n\t\t 0.796345 0.9876036 0.71869898 0.24146098 0.68582398 0.036417007 0.978136 0.74321401\n\t\t 0.62529498 0.66603303 0.50427198 0.36357802 0.52157003 0.37804198 0.69461298 0.50852096\n\t\t 0.979343 0.528512 0.69578397 0.15409797 0.867562 0.30299997 0.47316101 0.020596027\n\t\t 0.159408 0.23478901 0.30583301 0.015354991 0.84141099 0.130768 0.70242298 0.038230002\n\t\t 0.95424902 0.238334 0.0129049 0.52811098 0.0119378 0.55580997 0.55400598 0.10601002\n\t\t 0.00875217 0.31033599 0.61347097 0.71931696 0.249357 0.22092998 0.57347101 0.69117498\n\t\t 0.65638298 0.087881029 0.89885801 0.13305199 0.51822299 0.71059799 0.770621 0.74796402\n\t\t 0.398359 0.44951302 0.74435502 0.015767992 0.82892102 0.029844999 0.35351199 0.49354798\n\t\t 0.84580201 0.25938803 0.60813898 0.43160802 0.55010498 0.372172 0.79014999 0.85237402\n\t\t 0.27010101 0.30480701 0.589903 0.32953203 0.81179303 0.24751002 0.69535202 0.29972202\n\t\t 0.89339298 0.095794976 0.69319201 0.17405599 0.74840701 0.66432297 0.918495 0.68215597\n\t\t 0.83299899 0.13091397 0.075532302 0.064749002 0.31022301 0.21323198 0.41911301 0.49823201\n\t\t 0.95020503 0.035772026 0.86581302 0.795623 0.093879499 0.260746 0.039987899 0.23053402\n\t\t 0.055989601 0.260755 0.084559597 0.43290699 0.080578603 0.27048302 0.74311298 0.24149102\n\t\t 0.51183403 0.418607 0.81701499 0.873959 0.578951 0.16161603 0.81324297 0.83004701\n\t\t 0.87936401 0.016578972 0.93004501 0.094489992 0.77850997 0.016838014 0.57650602 0.11930603\n\t\t 0.77208799 0.092545986 0.72211802 0.23665398 0.697537 0.23698699 0.92992401 0.56890899\n\t\t 0.97985101 0.51625401 0.38128901 0.071959972 0.15373801 0.25670499 0.782686 0.088597\n\t\t 0.59494197 0.44595802 0.42254001 0.065603971 0.36453 0.449857 0.437767 0.389368 0.40795401\n\t\t 0.061231017 0.38557601 0.30843103 0.86279702 0.36966199 0.984604 0.169891 0.33309501\n\t\t 0.338135 0.808887 0.18960398 0.81728101 0.562841 0.97685701 0.072865009 0.59324199\n\t\t 0.22001398 0.77589703 0.204804 0.89717698 0.141249 0.55710298 0.43813503 0.78534901\n\t\t 0.42480898 0.63823599 0.61338699 0.22980601 0.25670499 0.86419803 0.35449803 0.21081901\n\t\t 0.58532703 0.48171699 0.28674603 0.52742302 0.69070601 0.60752499 0.57678103 0.82020497\n\t\t 0.29371297 0.65735298 0.641388 0.670717 0.24153697 0.374116 0.299007 0.67230499 0.27093601\n\t\t 0.57302499 0.56886804 0.67611003 0.24224401 0.73376203 0.35883498 0.68927801 0.016867995\n\t\t 0.85117102 0.135068 0.98299903 0.53223097 0.392865 0.041397989 0.249369 0.21714902\n\t\t 0.33404401 0.80204099 0.333478 0.334104;\n\tsetAttr \".uvst[0].uvsp[2750:2999]\" 0.46439901 0.31349498 0.17492101 0.22458899\n\t\t 0.469933 0.10783303 0.43804201 0.48067403 0.29013699 0.28385103 0.53682601 0.254646\n\t\t 0.57769102 0.14506698 0.0215143 0.75833601 0.77898097 0.36104798 0.99562901 0.52802396\n\t\t 0.203308 0.361229 0.865794 0.42480898 0.241256 0.050275981 0.30292201 0.158391 0.68609202\n\t\t 0.03431797 0.335235 0.39322001 0.72823602 0.056375027 0.99626201 0.78340399 0.74883097\n\t\t 0.77679098 0.25151199 0.66015399 0.60771602 0.54367697 0.85658002 0.18762702 0.75661498\n\t\t 0.27311897 0.53108102 0.026257992 0.31022501 0.20333999 0.72095603 0.62994897 0.80960202\n\t\t 0.59757996 0.170642 0.24848098 0.66070402 0.19453698 0.390885 0.02550602 0.85441101\n\t\t 0.38929898 0.77283603 0.29037899 0.40572199 0.41161698 0.33930501 0.35593599 0.34715101\n\t\t 0.33240801 0.141013 0.44868201 0.493404 0.36905998 0.47008899 0.36904001 0.297052\n\t\t 0.37210602 0.26377901 0.20919198 0.36122599 0.71204698 0.61166197 0.65613699 0.39528501\n\t\t 0.40542901 0.684313 0.182019 0.126 0.054804981 0.48969501 0.36907202 0.74909002 0.38929898\n\t\t 0.31230199 0.41305602 0.38107401 0.025026977 0.333094 0.92651117 0.50826001 0.20830202\n\t\t 0.826985 0.90022528 0.80224001 0.288715 0.564403 0.522852 0.74721301 0.67124903 0.90925598\n\t\t 0.035022974 0.56788898 0.0066490173 0.94690001 0.26092398 0.57667202 0.11682802 0.423985\n\t\t 0.050494015 0.162683 0.33984101 0.89428198 0.293244 0.450793 0.0084969997 0.34670499\n\t\t 0.19901401 0.22657999 0.015354991 0.28119001 0.96527553 0.357959 0.47560799 0.257274\n\t\t 0.40461302 0.129186 0.39285803 0.39610299 0.139364 0.20793501 0.20916802 0.193831\n\t\t 0.20298499 0.26074699 0.68323201 0.297133 0.44561499 0.27203199 0.65773499 0.132486\n\t\t 0.48694199 0.330989 0.40521199 0.29161799 0.059605002 0.69550502 0.23693103 0.50763398\n\t\t 0.77558601 0.68317598 0.31367898 0.962017 0.011183023 0.63332897 0.21432602 0.67085803\n\t\t 0.24233001 0.69507498 0.30970502 0.935229 0.022119999 0.75941199 0.90303993 0.77665299\n\t\t 0.31417799 0.89157403 0.82677102 0.60427201 0.136751 0.53465497 0.313483 0.365531\n\t\t 0.61310899 0.36293301 0.67467099 0.407913 0.42517197 0.43981299 0.031585991 0.40340301\n\t\t 0.48146099 0.399542 0.18562102 0.116568 0.23371601 0.27988499 0.64810503 0.41690201\n\t\t 0.0037379861 0.876854 0.34165698 0.538019 0.31295598 0.29161799 0.064749002 0.78601599\n\t\t 0.28792799 0.90960801 0.35588503 0.57195997 0.14717901 0.76679599 0.089864016 0.58995301\n\t\t 0.21433002 0.617019 0.35438901 0.79586601 0.73451602 0.70722097 0.015299022 0.71202201\n\t\t 0.11763901 0.84376198 0.11296397 0.707066 0.35875499 0.43294501 0.041603029 0.245203\n\t\t 0.19932199 0.18434601 0.34904498 0.627819 0.75655198 0.67082798 0.37835401 0.54247099\n\t\t 0.47387302 0.37610701 0.44423002 0.281535 0.158391 0.43673101 0.492971 0.493384 0.33229899\n\t\t 0.38219401 0.061653972 0.032874402 0.506311 0.72957098 0.481004 0.933559 0.93219113\n\t\t 0.170789 0.349518 0.69141102 0.014086008 0.476587 0.44581199 0.499906 0.42593801\n\t\t 0.914424 0.24837399 0.96198702 0.23548001 0.95430702 0.20741498 0.77556002 0.025008976\n\t\t 0.80208403 0.85816002 0.643466 0.20627898 0.97601098 0.27985299 0.52259499 0.38456202\n\t\t 0.80996799 0.63336003 0.69898802 0.23705399 0.61433297 0.233024 0.85441101 0.41754699\n\t\t 0.374569 0.24255598 0.819372 0.19137299 0.14243101 0.037030995 0.86262101 0.27011001\n\t\t 0.82226098 0.55187601 0.71961302 0.17778897 0.73920101 0.22452497 0.328724 0.85564202\n\t\t 0.376187 0.40882099 0.42812601 0.46880901 0.48958799 0.369057 0.16255 0.55006003\n\t\t 0.97878802 0.52677703 0.75331402 0.297288 0.44758499 0.36907202 0.044561401 0.55607998\n\t\t 0.102394 0.56353998 0.94320899 0.25260001 0.84394199 0.26351398 0.76231498 0.33228499\n\t\t 0.33997399 0.34068698 0.86442798 0.32884198 0.74944401 0.31656599 0.95741099 0.124713\n\t\t 0.68469 0.71574497 0.72211099 0.76863599 0.70512599 0.671691 0.59952497 0.66003704\n\t\t 0.38558501 0.65196502 0.88596499 0.296848 0.706361 0.36103898 0.32242 0.45012301\n\t\t 0.47755599 0.45285201 0.13248 0.48707402 0.453594 0.45337802 0.41086701 0.030731976\n\t\t 0.42693499 0.035476029 0.226504 0.093548 0.50642902 0.46557701 0.062449299 0.15720397\n\t\t 0.77180398 0.9975397 0.239406 0.44686002 0.21060701 0.015354991 0.70624298 0.077570975\n\t\t 0.69267201 0.31985003 0.59063399 0.20627898 0.273256 0.11424899 0.93713701 0.084114015\n\t\t 0.66329598 0.53956801 0.64348602 0.19375402 0.82163203 0.55554599 0.74926102 0.77537602\n\t\t 0.75466198 0.56524897 0.99834901 0.169891 0.53423899 0.30838901 0.26699799 0.037030995\n\t\t 0.70975298 0.41754699 0.18846899 0.67398298 0.20793401 0.20336801 0.33643401 0.061578989\n\t\t 0.802719 0.85091799 0.43294501 0.037030995 0.25527701 0.71437699 0.39811799 0.406856\n\t\t 0.38891301 0.45273501 0.36356601 0.36170799 0.44128999 0.39576799 0.279039 0.081960022\n\t\t 0.39611799 0.12696397 0.0872183 0.9536407 0.193698 0.076016009 0.68230897 0.193941\n\t\t 0.72423601 0.210908 0.241256 0.081960022 0.43520099 0.160101 0.36935699 0.05647397\n\t\t 0.181431 0.46779603 0.91665202 0.32239801 0.92934901 0.14492899 0.49883699 0.333552\n\t\t 0.61599398 0.13125098 0.57328099 0.095956981 0.30583 0.43385899 0.76355898 0.016628027\n\t\t 0.954768 0.24105102 0.83686101 0.078474998 0.82033998 0.83000499 0.86468798 0.36732799\n\t\t 0.127142 0.28692502 0.33622199 0.040589988 0.71896499 0.17483401 0.74656898 0.24246001\n\t\t 0.43294501 0.076016009 0.32703301 0.397421 0.47966799 0.20373797 0.408622 0.29900301\n\t\t 0.96416003 0.83061898 0.36308599 0.42376101 0.057203401 0.27249998 0.63785797 0.46036899\n\t\t 0.70858699 0.99514169 0.918441 0.37413198 0.56332701 0.147654 0.56059998 0.04449898\n\t\t 0.93436199 0.59341502 0.88070899 0.27955103;\n\tsetAttr \".uvst[0].uvsp[3000:3249]\" 0.850573 0.13401997 0.70966202 0.148422 0.230663\n\t\t 0.49469602 0.69597602 0.356291 0.89998698 0.12963599 0.74436998 0.015356004 0.36274499\n\t\t 0.39827001 0.89116502 0.12007397 0.81044799 0.24625701 0.591838 0.52522701 0.74792701\n\t\t 0.23739201 0.0793529 0.20072401 0.159236 0.015354991 0.38786 0.417364 0.43294501\n\t\t 0.026961029 0.13129801 0.483742 0.69165599 0.61535001 0.378158 0.18925703 0.28235701\n\t\t 0.21321702 0.49929199 0.050888002 0.58847302 0.16049403 0.35344401 0.051195025 0.26699799\n\t\t 0.054804981 0.279039 0.041603029 0.92813402 0.02067399 0.67123902 0.80073798 0.90137303\n\t\t 0.25276601 0.89408302 0.46616298 0.72957098 0.38366097 0.69076598 0.44634002 0.82086098\n\t\t 0.094991982 0.337928 0.19940501 0.84651399 0.794487 0.49790001 0.516361 0.83484101\n\t\t 0.15604401 0.60478902 0.32697201 0.37931699 0.31012899 0.69011098 0.015268981 0.57678699\n\t\t 0.16233897 0.81130499 0.23542601 0.75305098 0.79684001 0.61196703 0.22001302 0.91028899\n\t\t 0.32029301 0.50984001 0.239788 0.405518 0.0035570264 0.42636099 0.38121003 0.30387601\n\t\t 0.450266 0.33007601 0.36907202 0.368866 0.072120011 0.42555699 0.082095027 0.186511\n\t\t 0.22459698 0.124092 0.30861503 0.070914403 0.099443972 0.134461 0.21625102 0.228965\n\t\t 0.30441499 0.136849 0.23478901 0.17832901 0.29940599 0.090680197 0.59758103 0.089910701\n\t\t 0.62596297 0.206679 0.19537598 0.120205 0.29597998 0.64674199 0.091544986 0.35325199\n\t\t 0.33490503 0.57049 0.706572 0.71121502 0.17377001 0.251535 0.68821299 0.72337902\n\t\t 0.18434399 0.90924299 0.79165 0.49809301 0.22346801 0.68887198 0.03767103 0.36606699\n\t\t 0.20621598 0.61093801 0.73360801 0.676 0.55352801 0.876706 0.36080301 0.76472598\n\t\t 0.20111102 0.159236 0.064749002 0.567644 0.051527023 0.70846099 0.77534997 0.30317199\n\t\t 0.33267897 0.26014701 0.158391 0.47818699 0.34071302 0.321646 0.44448102 0.42238399\n\t\t 0.48355001 0.21823999 0.38254303 0.33643401 0.066730022 0.70975298 0.41019899 0.267802\n\t\t 0.22458899 0.96285701 0.38925499 0.69134498 0.21816897 0.27057201 0.347664 0.70411801\n\t\t 0.66791499 0.49251801 0.33730298 0.234914 0.319107 0.67369199 0.24126399 0.44556201\n\t\t 0.12223101 0.90372002 0.92042542 0.706949 0.17957699 0.37284201 0.44851297 0.943591\n\t\t 0.031327009 0.77812201 0.93608791 0.67126501 0.39703298 0.136833 0.25670499 0.20872299\n\t\t 0.29938799 0.68977702 0.51751101 0.40421301 0.66788101 0.52742398 0.424936 0.080547601\n\t\t 0.27046198 0.279039 0.032191992 0.53706598 0.17011702 0.972709 0.070744991 0.58099401\n\t\t 0.20627898 0.039659899 0.46973997 0.52023602 0.452254 0.033815399 0.45136398 0.72165102\n\t\t 0.63235801 0.90618998 0.06654799 0.66571498 0.77801001 0.99607003 0.51610899 0.70609599\n\t\t 0.21535802 0.79130501 0.81424701 0.73899502 0.326949 0.75170702 0.54583299 0.96098101\n\t\t 0.019860029 0.76181602 0.79217499 0.232786 0.467242 0.54298902 0.149198 0.813761\n\t\t 0.030682027 0.74626702 0.772587 0.76087999 0.36221403 0.59149301 0.58279502 0.63328099\n\t\t 0.9051342 0.89637703 0.40627301 0.63735998 0.41778201 0.438344 0.33178902 0.868936\n\t\t 0.97805339 0.84057802 0.13130802 0.64140898 0.25170302 0.523844 0.41107303 0.55809802\n\t\t 0.17738003 0.801956 0.18722397 0.56793702 0.65398204 0.488554 0.35942698 0.26014599\n\t\t 0.19536299 0.67336899 0.18209702 0.92001998 0.053870022 0.26699799 0.059605002 0.29350501\n\t\t 0.48995799 0.51019597 0.061397016 0.018092999 0.260755 0.020848701 0.740026 0.0035594199\n\t\t 0.91130388 0.0032842699 0.20072401 0.0172041 0.77806801 0.016191 0.55886698 0.0032842699\n\t\t 0.15720397 0.028641099 0.20072401 0.030885199 0.54493499 0.027153799 0.50519896 0.848773\n\t\t 0.13310301 0.65462297 0.43923903 0.31988299 0.041263998 0.54449099 0.438438 0.080350697\n\t\t 0.46245903 0.81792599 0.870094 0.74526501 0.24236202 0.76498997 0.9721359 0.29948401\n\t\t 0.33897901 0.52362698 0.194233 0.78600901 0.28922802 0.93879199 0.63484597 0.70011002\n\t\t 0.19823903 0.71579897 0.36444199 0.70975298 0.43198401 0.822694 0.29374897 0.64615101\n\t\t 0.25797302 0.78578001 0.29896599 0.97419399 0.098936021 0.72367299 0.015060008 0.77091497\n\t\t 0.34457898 0.74963999 0.30375803 0.080954999 0.61546302 0.763578 0.016216993 0.98284\n\t\t 0.49427998 0.69607699 0.62187397 0.63444901 0.17805803 0.068209 0.45974499 0.0572365\n\t\t 0.27252299 0.16115101 0.154567 0.58820099 0.077753007 0.768085 0.97959149 0.72320199\n\t\t 0.50119996 0.31741399 0.43660998 0.94616801 0.097998023 0.94390601 0.76179099 0.537552\n\t\t 0.23769301 0.72836 0.59352601 0.79676402 0.032396972 0.360156 0.443398 0.68984801\n\t\t 0.60499704 0.67577702 0.57155502 0.88545102 0.24664998 0.74218601 0.497015 0.29161799\n\t\t 0.045943022 0.57042402 0.019208014 0.49643999 0.377922 0.13810401 0.36357403 0.226633\n\t\t 0.21319902 0.82712501 0.43198401 0.56946099 0.14983797 0.59846699 0.059212029 0.146175\n\t\t 0.66950399 0.343052 0.66613799 0.42097601 0.43546301 0.49872699 0.20830202 0.456983\n\t\t 0.056061029 0.50897503 0.059674025 0.344302 0.27548701 0.756024 0.24928999 0.90135503\n\t\t 0.24966502 0.65096903 0.031534016 0.79683799 0.85644001 0.98661298 0.765212 0.759251\n\t\t 0.070138991 0.88110203 0.20548201 0.50157499 0.36905301 0.600797 0.21433002 0.82405102\n\t\t 0.87520003 0.96672899 0.03530103 0.539177 0.039846003 0.827407 0.029844999 0.27830499\n\t\t 0.63077301 0.56153601 0.092374027 0.59433103 0.43139398 0.59334803 0.72702897 0.57157803\n\t\t 0.11050999 0.41232699 0.59934604 0.188972 0.67236 0.88107002 0.94789571 0.74052298\n\t\t 0.59581804 0.41467601 0.030487001 0.24090301 0.22089899 0.51783901 0.061250985 0.74749202\n\t\t 0.043034017 0.828188 0.50782204 0.80463499 0.030535996 0.44942001 0.96028179 0.35341999\n\t\t 0.33251798 0.34002301 0.27490199 0.55563498 0.43078703 0.44064301 0.44005299;\n\tsetAttr \".uvst[0].uvsp[3250:3499]\" 0.038865302 0.49178201 0.66746497 0.175771\n\t\t 0.182005 0.72391498 0.694713 0.77121103 0.83136702 0.84480798 0.50398701 0.14047903\n\t\t 0.79338902 0.1839 0.66382802 0.18182999 0.67194498 0.236821 0.27660501 0.38133699\n\t\t 0.984604 0.19197899 0.77043599 0.32793701 0.83332402 0.36104703 0.244605 0.23178399\n\t\t 0.67942399 0.51906002 0.41389799 0.39401001 0.88352197 0.12990201 0.82696199 0.31196302\n\t\t 0.51039201 0.36513901 0.958327 0.21016598 0.75889498 0.002556026 0.829997 0.30756903\n\t\t 0.90898299 0.39741999 0.81614202 0.10893399 0.27057099 0.37539798 0.168138 0.29944402\n\t\t 0.30645999 0.432733 0.48109701 0.54923797 0.94812202 0.71939099 0.38062099 0.014605999\n\t\t 0.333202 0.42925698 0.66369402 0.64589703 0.48168099 0.12727797 0.77908403 0.93861169\n\t\t 0.016985999 0.23053402 0.716102 0.21114498 0.740789 0.035800993 0.90535402 0.77438903\n\t\t 0.34672701 0.353459 0.57866502 0.11535501 0.89397299 0.25128901 0.45194101 0.075896978\n\t\t 0.18529201 0.158391 0.52656603 0.35364699 0.63003999 0.22000998 0.76644701 0.29311901\n\t\t 0.691423 0.01403898 0.241256 0.087776005 0.29161799 0.015354991 0.14243101 0.015354991\n\t\t 0.987423 0.52135098 0.90804398 0.73217899 0.93821698 0.71844602 0.32630301 0.440952\n\t\t 0.427894 0.443883 0.69951701 0.264543 0.83958203 0.15576601 0.88460302 0.17569798\n\t\t 0.63787001 0.073876977 0.66930699 0.24248499 0.66896999 0.36907202 0.76373202 0.76112998\n\t\t 0.56447798 0.07941401 0.62695003 0.22891599 0.90022099 0.072318971 0.80539697 0.052170992\n\t\t 0.79131299 0.83866203 0.797068 0.75631398 0.291646 0.20334297 0.455163 0.48667198\n\t\t 0.36934501 0.088055015 0.51929599 0.445656 0.979702 0.51096797 0.36922699 0.061607003\n\t\t 0.159236 0.032191992 0.241256 0.064749002 0.38322201 0.32946301 0.36893699 0.035329998\n\t\t 0.98313898 0.51999104 0.75597203 0.72398996 0.37735701 0.40607202 0.90263999 0.55253601\n\t\t 0.062662899 0.22152001 0.556104 0.23083502 0.65218902 0.70011103 0.56536001 0.053816974\n\t\t 0.85385001 0.16641998 0.83018798 0.87076801 0.37026501 0.42819202 0.47320199 0.048309028\n\t\t 0.19405501 0.093566 0.440384 0.41760802 0.83170003 0.778166 0.67056 0.33179301 0.59509403\n\t\t 0.66888404 0.94445199 0.10192502 0.486781 0.51174599 0.54518998 0.034364998 0.61829102\n\t\t 0.23329002 0.506199 0.0092499852 0.94638002 0.634965 0.77369601 0.76675797 0.68150598\n\t\t 0.21535802 0.67951399 0.50732899 0.38317099 0.380211 0.254491 0.20333898 0.44249901\n\t\t 0.480452 0.30583301 0.059605002 0.27893701 0.093479991 0.99499601 0.512245 0.73053098\n\t\t 0.10133302 0.356085 0.093330979 0.70975298 0.40285999 0.67658401 0.21816897 0.73932999\n\t\t 0.24997002 0.90145099 0.482072 0.57581699 0.23046601 0.70034802 0.56832302 0.696922\n\t\t 0.24155098 0.96231198 0.59723401 0.99750799 0.92335349 0.593211 0.087881029 0.454355\n\t\t 0.284621 0.89301002 0.78116399 0.162195 0.75542098 0.37009701 0.093227983 0.109512\n\t\t 0.050275981 0.381758 0.066736996 0.865794 0.43912798 0.103958 0.61321902 0.0068540499\n\t\t 0.54690397 0.028640799 0.15720397 0.76784199 0.40285999 0.72960597 0.37895399 0.93193197\n\t\t 0.71383601 0.88832903 0.29692298 0.83281499 0.70639002 0.57327002 0.677212 0.374313\n\t\t 0.39174002 0.59577602 0.19405699 0.81072301 0.029844999 0.66773498 0.062838972 0.69580901\n\t\t 0.026498973 0.49605 0.333121 0.44259301 0.38362002 0.66674 0.21535802 0.76450503\n\t\t 0.191365 0.82438701 0.030682027 0.910667 0.11564499 0.74084598 0.19834501 0.76878798\n\t\t 0.29124999 0.90918398 0.41151202 0.64094698 0.73838496 0.57100803 0.097431004 0.44086099\n\t\t 0.40276802 0.26699799 0.050275981 0.181968 0.24520701 0.42299399 0.85255504 0.454689\n\t\t 0.48023999 0.109512 0.037030995 0.72957098 0.40285999 0.336146 0.030059993 0.743532\n\t\t 0.86421299 0.339993 0.33843702 0.944471 0.11834103 0.65617698 0.208233 0.403283 0.62789899\n\t\t 0.703448 0.33346403 0.92149401 0.68966001 0.81919903 0.157323 0.347776 0.54390502\n\t\t 0.096526802 0.45607698 0.17641 0.021309018 0.78534901 0.38929898 0.479435 0.54858303\n\t\t 0.22657999 0.050275981 0.61466801 0.20627898 0.32646799 0.33158898 0.69672 0.32615697\n\t\t 0.68796301 0.59046102 0.64609802 0.10133302 0.95561802 0.042647004 0.84266597 0.29570597\n\t\t 0.723665 0.015429974 0.89837998 0.25011998 0.80384398 0.052170992 0.76746899 0.29311699\n\t\t 0.13006499 0.20072299 0.316048 0.417642 0.490747 0.32616597 0.42630199 0.07634002\n\t\t 0.98561299 0.50336802 0.145285 0.25670499 0.23836599 0.24520701 0.139342 0.75237799\n\t\t 0.23965 0.34976703 0.111773 0.493774 0.14025401 0.46671301 0.153616 0.50055802 0.23624299\n\t\t 0.63056499 0.20445 0.24848098 0.104753 0.099443972 0.917422 0.63016796 0.683397 0.50918198\n\t\t 0.93869299 0.0050590038 0.71943301 0.82920504 0.57703102 0.11348599 0.81527799 0.029844999\n\t\t 0.74869901 0.79929197 0.58411503 0.19410902 0.81924099 0.63081002 0.85416198 0.11022598\n\t\t 0.54439598 0.46680301 0.40051499 0.43499899 0.40735999 0.37209702 0.39683101 0.015124023\n\t\t 0.092608601 0.064749002 0.29161799 0.032191992 0.22657999 0.037030995 0.126 0.037030995\n\t\t 0.58954102 0.390567 0.89798301 0.78530902 0.51826602 0.0027909875 0.82134998 0.029844999\n\t\t 0.52573001 0.80144 0.71510601 0.89542902 0.947236 0.25546998 0.96335 0.15547699 0.984604\n\t\t 0.11273003 0.51384002 0.052094996 0.70489597 0.254825 0.329638 0.93329388 0.67177099\n\t\t 0.42512399 0.159236 0.041603029 0.72656298 0.63018799 0.78534901 0.46759498 0.45276901\n\t\t 0.91354668 0.62261599 0.431817 0.0166458 0.081960022 0.0166458 0.037030995 0.0437379\n\t\t 0.041603029 0.0166458 0.087776005 0.36691701 0.40608197 0.41734099 0.18210602 0.567985\n\t\t 0.864779 0.47424901 0.301112 0.85089397 0.069225013 0.57629102 0.59869897 0.78616601\n\t\t 0.83042598 0.76928598 0.783921;\n\tsetAttr \".uvst[0].uvsp[3500:3749]\" 0.791291 0.860156 0.875018 0.013567984 0.82424903\n\t\t 0.36221498 0.92885798 0.59154999 0.85441101 0.39579302 0.170404 0.22152197 0.865794\n\t\t 0.46759498 0.342913 0.416408 0.302461 0.22744602 0.33799401 0.32011902 0.35467401\n\t\t 0.088075995 0.79296499 0.052170992 0.0116556 0.53807998 0.0111046 0.541852 0.797077\n\t\t 0.36444801 0.32004601 0.057873011 0.478122 0.45984602 0.63697499 0.47379601 0.62032801\n\t\t 0.48043698 0.68431401 0.58427596 0.75079799 0.089864016 0.70875603 0.174833 0.65476298\n\t\t 0.18501401 0.63869101 0.20627898 0.82424903 0.36104798 0.619757 0.19606298 0.95149302\n\t\t 0.62183499 0.64532101 0.066336989 0.51066703 0.99915653 0.5327 0.44562399 0.405981\n\t\t 0.030924976 0.43169799 0.21797103 0.300257 0.35952502 0.294552 0.26396102 0.453949\n\t\t 0.26051003 0.0931243 0.23053402 0.491294 0.47237003 0.418782 0.46344101 0.038329698\n\t\t 0.53123701 0.082198001 0.47376502 0.090828098 0.46738499 0.108865 0.62623501 0.070537902\n\t\t 0.56408703 0.32445401 0.395015 0.077992097 0.486803 0.193698 0.064749002 0.54662901\n\t\t 0.20373797 0.68922597 0.077736974 0.50234902 0.280904 0.864986 0.04114902 0.87080097\n\t\t 0.30857402 0.72522098 0.372172 0.51898199 0.23985898 0.75629801 0.18989801 0.54514802\n\t\t 0.171817 0.87060499 0.035342991 0.77762598 0.35300303 0.82647502 0.37785101 0.42800301\n\t\t 0.045512974 0.232797 0.467372 0.265434 0.39880198 0.39043501 0.077062011 0.52441001\n\t\t 0.48689198 0.31701499 0.22060901 0.76147902 0.52767396 0.637743 0.372172 0.39715201\n\t\t 0.39090401 0.57989597 0.50353396 0.55439198 0.57676196 0.42482299 0.46276301 0.62564403\n\t\t 0.26703101 0.76438898 0.36908001 0.75480902 0.21494699 0.14243101 0.064749002 0.36659601\n\t\t 0.402816 0.32588801 0.60857701 0.259541 0.29166901 0.37414399 0.68881899 0.98432899\n\t\t 0.51190001 0.90078503 0.10178399 0.48969501 0.372172 0.60575801 0.50078297 0.58601302\n\t\t 0.22001398 0.59063399 0.20893198 0.73403698 0.015465021 0.535734 0.40348101 0.838947\n\t\t 0.57559097 0.56028003 0.52415502 0.943088 0.80326998 0.28123799 0.33602798 0.47021601\n\t\t 0.36907202 0.113161 0.20072401 0.17492101 0.23178703 0.3906 0.24081397 0.382476 0.046404004\n\t\t 0.0024532999 0.21633703 0.98555303 0.73082399 0.72153902 0.22469401 0.27759099 0.69138002\n\t\t 0.85845602 0.36926401 0.42923999 0.098814011 0.76461798 0.19623798 0.64654398 0.75409198\n\t\t 0.356525 0.42022699 0.70312703 0.67912304 0.94716603 0.51865 0.99748099 0.52296501\n\t\t 0.48866799 0.96133453 0.46412501 0.35062301 0.344201 0.27546901 0.44117001 0.36907202\n\t\t 0.28865901 0.33449 0.33692899 0.014388025 0.27953699 0.093370974 0.279039 0.021309018\n\t\t 0.71592999 0.21816897 0.35225901 0.36559099 0.063068002 0.40139502 0.46121499 0.13842303\n\t\t 0.422052 0.21797103 0.470121 0.21797103 0.34718701 0.29982001 0.26529399 0.46665299\n\t\t 0.42355999 0.18654197 0.474525 0.56073499 0.32679299 0.156847 0.0024486401 0.22429502\n\t\t 0.0024486401 0.23053402 0.00329386 0.20298398 0.0028859701 0.23371702 0.98345298\n\t\t 0.51894796 0.442056 0.467785 0.772524 0.29714102 0.61772501 0.22909302 0.35919201\n\t\t 0.33956999 0.847449 0.831429 0.376522 0.95671868 0.88204199 0.11737502 0.57655102\n\t\t 0.59589303 0.57993799 0.35829699 0.60025299 0.20627898 0.83197498 0.18862301 0.40187401\n\t\t 0.056623995 0.365859 0.34005898 0.34040901 0.334454 0.367044 0.393278 0.198378 0.79467297\n\t\t 0.296478 0.25040001 0.125967 0.093578994 0.193698 0.087776005 0.79089099 0.91462147\n\t\t 0.88661897 0.23597503 0.74811 0.137793 0.764355 0.36907202 0.62947297 0.77921498\n\t\t 0.54350501 0.29014403 0.70468599 0.75439602 0.67102098 0.75906503 0.7852 0.052170992\n\t\t 0.78972602 0.372172 0.52041203 0.30668098 0.52792299 0.480214 0.136833 0.24848098\n\t\t 0.24930499 0.29947901 0.27077499 0.35124499 0.27179 0.44709003 0.29161799 0.021309018\n\t\t 0.0407806 0.23371601 0.037093099 0.20072401 0.85817599 0.81971002 0.149166 0.44337398\n\t\t 0.81434298 0.22922301 0.76784199 0.46066999 0.68066603 0.17405701 0.95387501 0.15469301\n\t\t 0.25297201 0.65526301 0.89967501 0.77072698 0.70168501 0.62744904 0.50398397 0.30985802\n\t\t 0.35410899 0.30646098 0.64598101 0.74803698 0.57241702 0.13519901 0.67166501 0.21535802\n\t\t 0.63800102 0.43199998 0.20445 0.25670499 0.14243101 0.087776005 0.44919199 0.78250802\n\t\t 0.86689401 0.12774801 0.41231701 0.41756898 0.399479 0.27685899 0.39798501 0.18225503\n\t\t 0.984604 0.19534802 0.399611 0.27692503 0.766936 0.97455639 0.37078801 0.91993648\n\t\t 0.12911899 0.23184502 0.53344899 0.053086996 0.82487297 0.28268498 0.808855 0.102516\n\t\t 0.83976197 0.89059901 0.73013198 0.036662996 0.59236699 0.073225021 0.64825702 0.20893198\n\t\t 0.54894203 0.71339703 0.0420921 0.44345701 0.76993197 0.36444002 0.75613499 0.092545986\n\t\t 0.67566401 0.516298 0.23399401 0.36900902 0.29476601 0.24520701 0.87940001 0.45935798\n\t\t 0.797993 0.36881202 0.23591501 0.21323103 0.97854197 0.66280496 0.95528698 0.73331404\n\t\t 0.63812703 0.45339799 0.60400498 0.38435799 0.402448 0.015097022 0.441349 0.20373797\n\t\t 0.865794 0.446311 0.063576303 0.47459102 0.052161299 0.47569299 0.033728801 0.46559203\n\t\t 0.086378001 0.9345687 0.112731 0.93640012 0.070400499 0.23053402 0.037075602 0.154567\n\t\t 0.347305 0.35734999 0.70036298 0.68188298 0.079333797 0.45674998 0.604186 0.10510302\n\t\t 0.193698 0.032191992 0.87623298 0.067717016 0.77764899 0.84881198 0.73556101 0.706011\n\t\t 0.81374598 0.865722 0.78486001 0.81962198 0.100658 0.22429502 0.44563299 0.80971897\n\t\t 0.64071 0.59079999 0.95811999 0.016987026 0.61915702 0.65917897 0.31979799 0.030793011\n\t\t 0.41938901 0.025081992 0.40987 0.55200201 0.28153399 0.19536197 0.217307 0.20335698\n\t\t 0.417586 0.323277 0.62081099 0.40372401 0.80528301 0.10637802;\n\tsetAttr \".uvst[0].uvsp[3750:3999]\" 0.66102099 0.19905698 0.55129099 0.36459601\n\t\t 0.96937001 0.26785302 0.56311601 0.14402097 0.58962798 0.22001398 0.70037699 0.66344702\n\t\t 0.95806003 0.034242988 0.27306801 0.19930702 0.395702 0.12122703 0.571881 0.21433097\n\t\t 0.048406899 0.471277 0.28114799 0.34245199 0.1241 0.26075 0.217307 0.20917898 0.29974499\n\t\t 0.43158299 0.043704301 0.093568027 0.67224002 0.44636101 0.66102499 0.12995398 0.89121401\n\t\t 0.90019852 0.6261 0.21432602 0.58700901 0.66246104 0.42389601 0.50438297 0.217067\n\t\t 0.10115403 0.26092601 0.23479003 0.93051302 0.45155197 0.82018799 0.29617798 0.84936303\n\t\t 0.84663999 0.80120897 0.46759498 0.075532302 0.041603029 0.434971 0.324247 0.37717\n\t\t 0.69343603 0.38194099 0.77833903 0.22657999 0.054804981 0.97808999 0.52840102 0.286358\n\t\t 0.409383 0.70975298 0.481004 0.76439101 0.37217897 0.81462502 0.29983902 0.81756401\n\t\t 0.096482992 0.56204498 0.78862798 0.85536897 0.784109 0.385526 0.44341201 0.34636801\n\t\t 0.34085399 0.97997999 0.17702699 0.58010697 0.248312 0.61540502 0.58813101 0.77424598\n\t\t 0.31743997 0.44215599 0.0089539886 0.75881302 0.089864016 0.45188099 0.041597009\n\t\t 0.158417 0.203318 0.134461 0.22151703 0.17040201 0.20331699 0.151648 0.63753301 0.19161101\n\t\t 0.10008103 0.184846 0.38953203 0.232987 0.22892803 0.240918 0.21711701 0.13859101\n\t\t 0.099443972 0.218839 0.30441302 0.70187801 0.664711 0.672221 0.46036202 0.79068798\n\t\t 0.089864016 0.643466 0.20893198 0.81928402 0.52815402 0.64674801 0.62177396 0.26245701\n\t\t 0.381432 0.74973702 0.24207097 0.87383997 0.30535501 0.765921 0.05033797 0.54779202\n\t\t 0.38466799 0.72475201 0.36443102 0.99834901 0.0068500042 0.43706799 0.410119 0.0034682699\n\t\t 0.045943022 0.0034682699 0.032191992 0.74849802 0.37894601 0.86466402 0.12786198\n\t\t 0.32681701 0.40634602 0.41246 0.20373797 0.40886 0.046414971 0.40768 0.082071006\n\t\t 0.33648601 0.019623995 0.36876801 0.029914021 0.50377399 0.43921602 0.75660598 0.51488996\n\t\t 0.74895298 0.19059801 0.26699799 0.021309018 0.57001102 0.45298302 0.85058898 0.85441202\n\t\t 0.57187003 0.13755602 0.97958601 0.755337 0.77208799 0.088597 0.9091 0.38453501 0.686445\n\t\t 0.19859898 0.81845897 0.31267399 0.99834901 0.16670901 0.45782 0.072367013 0.79016602\n\t\t 0.719944 0.26689601 0.093484998 0.76414299 0.088597 0.58239901 0.22001398 0.76876801\n\t\t 0.92721629 0.27822301 0.82717597 0.385627 0.31354201 0.798841 0.9088195 0.254612\n\t\t 0.050275981 0.840011 0.30873698 0.045400899 0.50505197 0.040832501 0.26075703 0.0392165\n\t\t 0.45712 0.873851 0.30920202 0.66134399 0.18224001 0.75670999 0.77819002 0.66054398\n\t\t 0.32800198 0.95869601 0.23716003 0.80501598 0.85614097 0.842161 0.35883403 0.59685701\n\t\t 0.22001398 0.75345898 0.088597 0.71923202 0.865848 0.75510401 0.63684404 0.367423\n\t\t 0.83082998 0.118394 0.61516899 0.83140099 0.85051399 0.48412499 0.39852899 0.131304\n\t\t 0.48360902 0.27246299 0.40635002 0.44586799 0.49407202 0.80120897 0.481004 0.062449299\n\t\t 0.20072401 0.110527 0.21625298 0.074631102 0.20330602 0.074283503 0.55642998 0.033859901\n\t\t 0.48886198 0.090217702 0.48464298 0.072141998 0.47055602 0.067067198 0.49324399 0.046955101\n\t\t 0.50114501 0.0397579 0.49851102 0.90663397 0.91656268 0.284796 0.96045142 0.92320102\n\t\t 0.23901701 0.67202699 0.24129498 0.900361 0.24729902 0.58657497 0.557401 0.962533\n\t\t 0.20643902 0.539442 0.19550401 0.68843102 0.78025603 0.86282301 0.030333996 0.58566499\n\t\t 0.65299201 0.68831301 0.10510302 0.56696802 0.11409301 0.736507 0.82126403 0.66645199\n\t\t 0.091544986 0.14243101 0.021309018 0.62909502 0.20627898 0.395551 0.42863399 0.40195701\n\t\t 0.189677 0.36978599 0.66303396 0.30583301 0.054804981 0.092608601 0.009370029 0.109512\n\t\t 0.026961029 0.037474401 0.400006 0.083960898 0.40204602 0.109038 0.26074702 0.096257098\n\t\t 0.15720397 0.074631102 0.21625501 0.79416001 0.18250102 0.126 0.045943022 0.62642503\n\t\t 0.22000998 0.95907402 0.24014598 0.779324 0.73641396 0.447478 0.37210202 0.75254399\n\t\t 0.77105796 0.94302601 0.52097702 0.66880602 0.236938 0.69702202 0.24063098 0.45257801\n\t\t 0.069972992 0.790106 0.823632 0.85017997 0.63522398 0.59342599 0.23160702 0.207776\n\t\t 0.681229 0.81193399 0.11083102 0.66325498 0.53942901 0.67116201 0.39049602 0.37620899\n\t\t 0.32749099 0.254612 0.070222974 0.0483547 0.099443972 0.98412901 0.513089 0.73258603\n\t\t 0.71310401 0.74979502 0.77916199 0.99666399 0.397901 0.634161 0.64448702 0.56854397\n\t\t 0.64159399 0.56717199 0.11638302 0.42309499 0.18269098 0.74883801 0.77085501 0.49662799\n\t\t 0.40522403 0.53684998 0.50999796 0.865794 0.40285999 0.74909002 0.43912798 0.87595499\n\t\t 0.78020203 0.76784199 0.43912798 0.184911 0.682019 0.85653597 0.0052620173 0.43040201\n\t\t 0.755144 0.81224197 0.030682027 0.69053203 0.425071 0.034384701 0.50662398 0.29161799\n\t\t 0.026961029 0.062580302 0.49779701 0.88865298 0.28698099 0.539056 0.35322797 0.331209\n\t\t 0.94894552 0.75079799 0.088597 0.814228 0.29858601 0.88068402 0.46734101 0.67091298\n\t\t 0.29127902 0.442379 0.12629598 0.0177055 0.52579999 0.99997598 0.58305597 0.71507001\n\t\t 0.11766797 0.84714001 0.15499401 0.50853801 0.057606995 0.65288597 0.486718 0.60754102\n\t\t 0.30937397 0.78039402 0.84726799 0.453096 0.365704 0.22458699 0.60906696 0.49295399\n\t\t 0.82889801 0.27289 0.73948801 0.22657999 0.026961029 0.85441101 0.38366097 0.71879399\n\t\t 0.24230498 0.536982 0.41009903 0.70975298 0.46066999 0.690795 0.45344597 0.27239901\n\t\t 0.31325698 0.52679503 0.30786097 0.57377899 0.64189804 0.58820099 0.13687998 0.670394\n\t\t 0.037496984 0.734447 0.065644026 0.99193799 0.60674703 0.785353 0.088597 0.716003\n\t\t 0.175538 0.86508203 0.76956797 0.36170799 0.352925 0.081325397 0.46811199;\n\tsetAttr \".uvst[0].uvsp[4000:4249]\" 0.354608 0.009115994 0.451368 0.42481798 0.17215499\n\t\t 0.33018601 0.421913 0.44174802 0.32168999 0.36140603 0.36480001 0.21591598 0.46219501\n\t\t 0.50860798 0.28235701 0.20334297 0.394447 0.15040201 0.88808697 0.25853902 0.40284401\n\t\t 0.082107008 0.68174899 0.091544986 0.178285 0.65943301 0.850851 0.16535503 0.95029598\n\t\t 0.015402019 0.95716 0.52035999 0.0627864 0.23053402 0.63608402 0.077956021 0.78173202\n\t\t 0.81295902 0.82150102 0.29684901 0.43851799 0.33908302 0.75613499 0.088597 0.46398199\n\t\t 0.0024520159 0.62479299 0.75922799 0.69852602 0.24251598 0.92873102 0.67647803 0.38225001\n\t\t 0.38488197 0.65324497 0.20608002 0.501607 0.372172 0.68475997 0.785721 0.68644297\n\t\t 0.584948 0.42507201 0.46931601 0.556346 0.71231902 0.70973802 0.17639297 0.23836701\n\t\t 0.23478901 0.76767403 0.32821101 0.14643499 0.208579 0.148128 0.23479003 0.47388199\n\t\t 0.38487399 0.47281101 0.39156401 0.43169799 0.20373797 0.36149701 0.36907202 0.47872999\n\t\t 0.88834298 0.44931901 0.32584 0.76784199 0.46759498 0.58625698 0.045177996 0.74909002\n\t\t 0.46759498 0.497105 0.41209197 0.25284201 0.96993148 0.73179197 0.254825 0.81393802\n\t\t 0.22375703 0.443259 0.12237799 0.74326199 0.23676199 0.81875098 0.53460503 0.77867299\n\t\t 0.099546015 0.92808998 0.030287981 0.77471602 0.85050201 0.36495399 0.99469841 0.61545002\n\t\t 0.61615801 0.228873 0.99152088 0.409455 0.025623977 0.48919401 0.20373797 0.456839\n\t\t 0.076083004 0.35595599 0.43779403 0.72080398 0.066233993 0.63424098 0.37824798 0.046918299\n\t\t 0.97280562 0.90455699 0.797185 0.59027803 0.22001398 0.79403502 0.13313198 0.394171\n\t\t 0.12119001 0.37024599 0.64702797 0.59850103 0.67925096 0.84721601 0.0072479844 0.54494101\n\t\t 0.302598 0.106381 0.45749998 0.57234502 0.11909097 0.88543397 0.25391698 0.48754799\n\t\t 0.9080413 0.53717101 0.19781297 0.76959598 0.56167102 0.75629801 0.19835901 0.57117701\n\t\t 0.16017097 0.53503501 0.39091098 0.57558697 0.147627 0.46320501 0.17187297 0.024747699\n\t\t 0.23053402 0.19467101 0.21634001 0.433898 0.41754699 0.82959503 0.90183979 0.69024998\n\t\t 0.486826 0.88393098 0.096786976 0.39160699 0.24492103 0.72246802 0.17885 0.599271\n\t\t 0.83183199 0.65031898 0.72346699 0.49169201 0.05607301 0.26430899 0.40451401 0.86482799\n\t\t 0.36580002 0.85139799 0.24748802 0.92768902 0.38782197 0.71106899 0.63229096 0.325993\n\t\t 0.34028703 0.87601 0.41106099 0.98336202 0.52138299 0.323304 0.91085631 0.38996899\n\t\t 0.45029199 0.156432 0.372172 0.322799 0.092758 0.60506898 0.39680701 0.123461 0.23053402\n\t\t 0.088991098 0.99580085 0.071095698 0.233715 0.063668899 0.43262398 0.10732 0.49008\n\t\t 0.107185 0.30457097 0.0506882 0.21625698 0.241256 0.045943022 0.90440798 0.81848699\n\t\t 0.76784199 0.481004 0.91394401 0.383102 0.050825 0.54525799 0.722242 0.20247 0.66690898\n\t\t 0.59345299 0.56634003 0.20772398 0.95428997 0.035786986 0.88809699 0.25375199 0.55623502\n\t\t 0.20373797 0.60341299 0.087881029 0.30618501 0.298976 0.94391799 0.44914198 0.64026099\n\t\t 0.772273 0.98200703 0.76066399 0.79149902 0.02265197 0.32161799 0.677809 0.083636597\n\t\t 0.448901 0.69478202 0.57052201 0.96153599 0.12650502 0.49960899 0.48632199 0.47832799\n\t\t 0.020111024 0.69830298 0.18345302 0.70722198 0.015339971 0.61461103 0.364254 0.566953\n\t\t 0.14718801 0.958691 0.207201 0.90001798 0.82725704 0.062662899 0.20331699 0.89752901\n\t\t 0.72206402 0.32420599 0.44552398 0.76679599 0.092545986 0.79536301 0.064817011 0.80470401\n\t\t 0.029781997 0.41032401 0.42296797 0.40849701 0.22985202 0.249248 0.30450499 0.70117998\n\t\t 0.21535802 0.40618199 0.0094280243 0.028958101 0.48599797 0.193698 0.059605002 0.62183303\n\t\t 0.41754001 0.241256 0.070222974 0.73223799 0.044294 0.76301098 0.27288002 0.70489597\n\t\t 0.264543 0.63232601 0.0055339932 0.96938002 0.022265017 0.32250601 0.74537301 0.78211898\n\t\t 0.052183986 0.99834901 0.11273003 0.70254201 0.202124 0.54470497 0.060621977 0.91402\n\t\t 0.24557698 0.48956501 0.069635987 0.37060499 0.32937598 0.96061599 0.08654201 0.79068798\n\t\t 0.088597 0.462816 0.29153198 0.359732 0.33566302 0.49415401 0.63292599 0.48852 0.249798\n\t\t 0.336445 0.056398988 0.637465 0.46717 0.45091099 0.37211502 0.193698 0.054804981\n\t\t 0.250175 0.66298604 0.67004198 0.36334997 0.45269799 0.92243671 0.76719803 0.024900973\n\t\t 0.77203602 0.24906498 0.73285902 0.091544986 0.577981 0.11754203 0.78802902 0.358823\n\t\t 0.96935499 0.029044986 0.89208603 0.791682 0.66232198 0.324413 0.993312 0.51224804\n\t\t 0.70134401 0.62383604 0.241256 0.032191992 0.17641 0.087776005 0.85831302 0.23297101\n\t\t 0.42295 0.41289401 0.462028 0.089468002 0.29153499 0.093515992 0.59332299 0.22734898\n\t\t 0.778808 0.92331302 0.213728 0.26043397 0.110525 0.20331597 0.0793529 0.15720397\n\t\t 0.21290199 0.24848098 0.20529 0.69065899 0.217373 0.158391 0.18848 0.29937601 0.122492\n\t\t 0.208579 0.24905001 0.73062301 0.19585501 0.33937001 0.23401 0.36907202 0.62520498\n\t\t 0.10510302 0.54767299 0.37812299 0.80120897 0.43912798 0.881468 0.080254972 0.72679299\n\t\t 0.24128699 0.056219399 0.83975303 0.72023499 0.34001201 0.703448 0.30187702 0.72938001\n\t\t 0.065674007 0.82590002 0.029844999 0.478616 0.33063298 0.23591501 0.19930398 0.867845\n\t\t 0.28545499 0.36241001 0.44191003 0.68316799 0.59555304 0.572815 0.50002503 0.30469501\n\t\t 0.30790597 0.81072301 0.030682027 0.74780297 0.26355898 0.29161799 0.081960022 0.122492\n\t\t 0.21625698 0.72524601 0.36907798 0.98482502 0.73174298 0.70830101 0.073530972 0.254491\n\t\t 0.199301 0.437534 0.023936987 0.45601901 0.001627028 0.45104101 0.372172 0.434769\n\t\t 0.33192998 0.44252399 0.49305999 0.99651802 0.39833802 0.47409701 0.43194801 0.27206701\n\t\t 0.25670499 0.77093101 0.33938497;\n\tsetAttr \".uvst[0].uvsp[4250:4499]\" 0.198411 0.20324898 0.126 0.087776005 0.62393999\n\t\t 0.287305 0.79351097 0.858697 0.86472201 0.92800122 0.73012501 0.036619008 0.68586701\n\t\t 0.32018799 0.382433 0.406977 0.69283998 0.85166001 0.26879299 0.91797519 0.428931\n\t\t 0.12819302 0.31022501 0.20919502 0.90754598 0.79882401 0.35639799 0.42842603 0.36690301\n\t\t 0.33428901 0.59988302 0.55781901 0.90270001 0.82978797 0.3822 0.041100979 0.24492399\n\t\t 0.260346 0.215554 0.217062 0.66666299 0.01958102 0.30818799 0.43168801 0.422052 0.20373797\n\t\t 0.37476 0.43420601 0.28842601 0.338413 0.34106401 0.41371602 0.35724899 0.098610997\n\t\t 0.300935 0.20334399 0.41667601 0.0036720037 0.35343501 0.061622024 0.022000801 0.77261603\n\t\t 0.0437379 0.070222974 0.0437379 0.021309018 0.70319301 0.62542498 0.74939299 0.111669\n\t\t 0.73968101 0.75602502 0.79607201 0.052170992 0.55420297 0.474361 0.72035998 0.24220002\n\t\t 0.56650299 0.54195297 0.69824803 0.18049699 0.13878 0.33371598 0.57846099 0.113065\n\t\t 0.89253598 0.19805503 0.89051098 0.19834697 0.69086999 0.54694903 0.73376203 0.36442798\n\t\t 0.86438298 0.756226 0.56223398 0.37827498 0.77031398 0.80616999 0.368568 0.39174902\n\t\t 0.54538798 0.069584012 0.67734498 0.073954999 0.044029102 0.9131524 0.428141 0.46894598\n\t\t 0.59096402 0.53305101 0.86271298 0.786744 0.36677799 0.44241399 0.44111201 0.37209898\n\t\t 0.050687701 0.20330298 0.51969498 0.46575201 0.60846299 0.96217978 0.0146977 0.21623701\n\t\t 0.0086393496 0.48147899 0.54598403 0.45261502 0.78972602 0.36907202 0.75446999 0.23503202\n\t\t 0.63197398 0.011273026 0.78292 0.13215101 0.55616999 0.185987 0.64082301 0.055065989\n\t\t 0.88134199 0.143058 0.37735599 0.24245101 0.73100698 0.50860798 0.26378 0.19931901\n\t\t 0.98186898 0.9657619 0.85297102 0.033181012 0.658198 0.67971599 0.8441 0.635364 0.381616\n\t\t 0.38669097 0.797077 0.358814 0.42455399 0.009239018 0.85924298 0.76371598 0.26699799\n\t\t 0.015354991 0.97823 0.52547401 0.30093399 0.21321601 0.39788601 0.30092001 0.30011001\n\t\t 0.63986701 0.43260899 0.60805601 0.49889299 0.29874802 0.27943599 0.9704569 0.85443997\n\t\t 0.37895298 0.108187 0.22429502 0.0267208 0.21625602 0.101463 0.260746 0.036170401\n\t\t 0.54257703 0.116527 0.30455899 0.45936 0.037253022 0.669119 0.240641 0.087197103\n\t\t 0.51142204 0.58441001 0.53669 0.41583401 0.67382896 0.93679798 0.86629099 0.57347\n\t\t 0.18167198 0.33383799 0.21647298 0.436207 0.353935 0.445032 0.11902899 0.69260299\n\t\t 0.31210703 0.76185203 0.97139841 0.68913901 0.0075079799 0.59217501 0.58365899 0.553765\n\t\t 0.42354798 0.61278099 0.54154396 0.75227702 0.06337899 0.45210201 0.92098868 0.76811898\n\t\t 0.32962 0.73727399 0.63246 0.21415 0.91946983 0.17641 0.064749002 0.57582098 0.22001499\n\t\t 0.27179801 0.44722098 0.409251 0.40051401 0.425782 0.32370698 0.28108099 0.30427301\n\t\t 0.44135401 0.45447701 0.401445 0.041456997 0.82532102 0.85988998 0.86312902 0.32464302\n\t\t 0.72128701 0.181633 0.55011499 0.36905497 0.90371901 0.33002102 0.17243101 0.154567\n\t\t 0.126 0.076016009 0.62714303 0.24144202 0.42055601 0.030094981 0.87700701 0.34803402\n\t\t 0.447909 0.36598802 0.968023 0.39150399 0.984604 0.0068500042 0.266267 0.21716899\n\t\t 0.752303 0.73013401 0.74603802 0.23697001 0.75729501 0.23214197 0.76993197 0.358823\n\t\t 0.37327099 0.23813403 0.85441101 0.45353299 0.40959001 0.0036209822 0.762007 0.330459\n\t\t 0.745646 0.22953999 0.37962699 0.70248401 0.659944 0.32459903 0.30050901 0.35089201\n\t\t 0.69216901 0.791399 0.026567999 0.56011403 0.0232752 0.63237798 0.61985302 0.39063901\n\t\t 0.56903797 0.50696802 0.71803403 0.040867984 0.493806 0.28609902 0.85348898 0.24324203\n\t\t 0.99580902 0.38409197 0.85827899 0.24875802 0.95128602 0.68422401 0.23875999 0.15838999\n\t\t 0.38672799 0.45771301 0.37245601 0.44817603 0.38684201 0.113805 0.78406298 0.30523598\n\t\t 0.57344699 0.10887498 0.754017 0.86081898 0.629408 0.90519232 0.32618999 0.33388603\n\t\t 0.163679 0.62401402 0.80120897 0.40285999 0.45128199 0.41067201 0.35148999 0.433348\n\t\t 0.31327501 0.35168898 0.32043299 0.079765022 0.61435199 0.55955499 0.82181799 0.757285\n\t\t 0.399544 0.49696898 0.636397 0.48029602 0.30292201 0.19536501 0.69413698 0.254825\n\t\t 0.75171101 0.96195519 0.58335501 0.25476801 0.86970001 0.0093489885 0.53512198 0.39714402\n\t\t 0.59330702 0.506006 0.76063699 0.033747971 0.92817599 0.10691398 0.68304998 0.66973799\n\t\t 0.80228901 0.052170992 0.68720597 0.026665986 0.686746 0.18563497 0.95142102 0.81833696\n\t\t 0.74254102 0.9894374 0.34588099 0.96532512 0.26378 0.21321601 0.66995001 0.650271\n\t\t 0.53388399 0.26049298 0.50759703 0.320494 0.788306 0.052170992 0.69048601 0.48045498\n\t\t 0.25248501 0.65764499 0.475732 0.049477994 0.42391101 0.055525005 0.279039 0.070222974\n\t\t 0.45784 0.89104801 0.073854297 0.59056199 0.299485 0.33060199 0.232954 0.99489379\n\t\t 0.44789299 0.35642397 0.37336501 0.27496803 0.441111 0.36899799 0.373072 0.20675099\n\t\t 0.47064099 0.78492796 0.394447 0.17605799 0.146796 0.44415098 0.198411 0.20928699\n\t\t 0.69240701 0.317231 0.98497701 0.505548 0.734043 0.015506983 0.84137797 0.12173599\n\t\t 0.51270002 0.58815098 0.26925701 0.38131499 0.66869497 0.36549097 0.439533 0.13874799\n\t\t 0.38902599 0.244717 0.72677302 0.2403 0.767021 0.78668201 0.68620801 0.625521 0.72472697\n\t\t 0.19108999 0.60287398 0.37821198 0.78534901 0.43198401 0.83918101 0.87405598 0.35346901\n\t\t 0.056415975 0.151816 0.23178202 0.799227 0.85166299 0.29769701 0.468714 0.33025399\n\t\t 0.40390301 0.25781301 0.22095001 0.37968501 0.45373398 0.71515697 0.12016499 0.76600897\n\t\t 0.33088601 0.74466503 0.064031005 0.972835 0.011986017 0.29161799 0.041603029 0.259215\n\t\t 0.64798498 0.063563898 0.26075298;\n\tsetAttr \".uvst[0].uvsp[4500:4749]\" 0.193698 0.037030995 0.40681201 0.066137016\n\t\t 0.72858697 0.889525 0.26699799 0.041603029 0.89427501 0.24050498 0.88666099 0.175385\n\t\t 0.406618 0.098819017 0.52381599 0.10433602 0.91378498 0.39772499 0.864151 0.81509197\n\t\t 0.54859197 0.403548 0.53359401 0.280864 0.688622 0.038092971 0.787691 0.17476201\n\t\t 0.61887002 0.21432698 0.74073899 0.10510302 0.72892499 0.0035799742 0.70453203 0.21056199\n\t\t 0.102257 0.74307203 0.40174299 0.087814987 0.313629 0.34813499 0.31694099 0.21682799\n\t\t 0.48809001 0.14519203 0.79214501 0.83287799 0.39941499 0.39503801 0.35313299 0.035201013\n\t\t 0.254612 0.026961029 0.042803999 0.52157903 0.037093099 0.15720397 0.047591802 0.22429502\n\t\t 0.0093119703 0.23053402 0.71634901 0.63303101 0.67656201 0.23678899 0.730102 0.036252022\n\t\t 0.13859101 0.154567 0.99577099 0.51875997 0.63662499 0.403853 0.99796802 0.79160702\n\t\t 0.64386803 0.76870203 0.76560998 0.32927698 0.73837298 0.065394998 0.86339402 0.36316103\n\t\t 0.52490002 0.90011168 0.56562299 0.73651898 0.87553298 0.076572001 0.50157201 0.37216097\n\t\t 0.45864701 0.30947298 0.558025 0.30452901 0.225196 0.82338297 0.74930102 0.86245799\n\t\t 0.239416 0.44698799 0.76935297 0.13836998 0.56826901 0.43083602 0.83235401 0.15878999\n\t\t 0.238258 0.24848002 0.44837001 0.0039060116 0.27937299 0.22745001 0.80120897 0.42480898\n\t\t 0.199434 0.21352297 0.070914403 0.154567 0.58026898 0.49923301 0.682307 0.64309299\n\t\t 0.94861197 0.104038 0.69008899 0.57418704 0.74798298 0.24239302 0.45302999 0.31506503\n\t\t 0.80713201 0.86314797 0.77171099 0.25350702 0.69374502 0.014505029 0.668993 0.37216997\n\t\t 0.80537301 0.92401022 0.45091099 0.36902601 0.90277499 0.183698 0.69070202 0.43921798\n\t\t 0.412081 0.46369499 0.598795 0.74006701 0.80939603 0.74324203 0.95644999 0.084352016\n\t\t 0.71552801 0.36103803 0.35322899 0.040575027 0.288073 0.41163999 0.422685 0.45049298\n\t\t 0.47334501 0.28867102 0.170688 0.23478901 0.42435399 0.0038170218 0.254513 0.093513012\n\t\t 0.66123903 0.60364902 0.119199 0.37452298 0.120128 0.84801 0.077805303 0.401999 0.88724399\n\t\t 0.80595201 0.054754101 0.51492399 0.12279 0.61155498 0.115325 0.97605443 0.83364999\n\t\t 0.57187599 0.70010298 0.11637801 0.37508601 0.68194199 0.78675199 0.052170992 0.758977\n\t\t 0.042446971 0.87640899 0.38937902 0.96340197 0.39137101 0.70086801 0.57048601 0.27312499\n\t\t 0.85449803 0.84964401 0.18546498 0.291264 0.29756403 0.69291401 0.32248002 0.94738603\n\t\t 0.049717009 0.53700697 0.21797103 0.730555 0.21864498 0.23878001 0.64664 0.209737\n\t\t 0.22892702 0.73654997 0.30187702 0.57732898 0.48079598 0.171895 0.30859703 0.194482\n\t\t 0.37621498 0.49515799 0.33950698 0.300055 0.21710199 0.39327201 0.046634018 0.40025201\n\t\t 0.066401005 0.78534901 0.43912798 0.59096801 0.480685 0.238759 0.19536799 0.75252301\n\t\t 0.19835901 0.54129499 0.182661 0.71374798 0.66477501 0.68545699 0.59015596 0.64268202\n\t\t 0.087881029 0.43087101 0.385831 0.78849 0.815633 0.60373801 0.13366002 0.84262198\n\t\t 0.07000798 0.80680901 0.069387972 0.75276101 0.53656697 0.63593602 0.39061397 0.212341\n\t\t 0.40412098 0.91904002 0.38425702 0.80615699 0.030682027 0.351019 0.77561903 0.76183498\n\t\t 0.063723981 0.35338101 0.066869974 0.71864402 0.23684198 0.274719 0.21716899 0.590002\n\t\t 0.50878298 0.81859899 0.038455009 0.67020202 0.56974804 0.038708199 0.21625203 0.056696702\n\t\t 0.45117402 0.671112 0.486718 0.20290001 0.33029401 0.58820099 0.087881029 0.263336\n\t\t 0.42882299 0.74909002 0.46066999 0.83499998 0.80484802 0.814924 0.28747898 0.36234099\n\t\t 0.90484357 0.74076498 0.035435021 0.84687001 0.84732699 0.75920802 0.51754904 0.69365698\n\t\t 0.014045 0.95985502 0.18166602 0.67164397 0.535721 0.65888703 0.25286299 0.68895\n\t\t 0.69676602 0.684807 0.57499397 0.241256 0.076016009 0.495386 0.33765602 0.67027998\n\t\t 0.80272901 0.61050302 0.29968601 0.78499299 0.81528497 0.303489 0.31177402 0.47966799\n\t\t 0.21797103 0.48720899 0.51338303 0.170688 0.24520701 0.282931 0.73087704 0.22657999\n\t\t 0.009370029 0.40063801 0.036219001 0.69278502 0.30713099 0.99686801 0.51861101 0.33498001\n\t\t 0.29764301 0.78115302 0.23391402 0.38062501 0.0092909932 0.44302601 0.487827 0.76784199\n\t\t 0.38929898 0.86768597 0.29499698 0.72103298 0.254825 0.693021 0.17834598 0.69709802\n\t\t 0.118536 0.918365 0.39398599 0.88923103 0.21107501 0.47907501 0.12698501 0.33996099\n\t\t 0.29891402 0.76525497 0.29312301 0.94255698 0.040001988 0.79483199 0.81749201 0.57943499\n\t\t 0.22001398 0.75806999 0.0047039986 0.13006499 0.15720397 0.41780999 0.42462999 0.288856\n\t\t 0.34043598 0.37698999 0.39652199 0.32332599 0.70574999 0.30583301 0.041603029 0.12911899\n\t\t 0.22452998 0.197899 0.348566 0.13641401 0.49016798 0.168162 0.30447 0.13780101 0.29159403\n\t\t 0.14750899 0.29956597 0.186511 0.23177898 0.17243101 0.099443972 0.134461 0.20858502\n\t\t 0.071300998 0.438829 0.116843 0.41702801 0.56631702 0.10379601 0.38973701 0.414626\n\t\t 0.70975298 0.38929898 0.492226 0.46558797 0.84815598 0.85432899 0.458498 0.35010099\n\t\t 0.317325 0.24520701 0.89560997 0.48290199 0.79917097 0.22345501 0.084553897 0.66624498\n\t\t 0.69138801 0.23692101 0.52662998 0.23873001 0.60520202 0.51918399 0.456227 0.75485802\n\t\t 0.45299 0.39052701 0.73061699 0.59828401 0.187546 0.25670499 0.94205302 0.027589023\n\t\t 0.84495997 0.69935 0.0034682699 0.041603029 0.51781899 0.20830202 0.81929499 0.23163497\n\t\t 0.47041401 0.31221801 0.30225801 0.41530597 0.578785 0.22001398 0.89379603 0.12651098\n\t\t 0.99096799 0.51067501 0.58925301 0.38438898 0.85036898 0.059862018 0.317577 0.41315699\n\t\t 0.59143603 0.58268404 0.914446 0.25380802 0.72091699 0.51147902 0.52932101 0.22924\n\t\t 0.80615699 0.029844999 0.48816699 0.33874601 0.601601 0.0047190189;\n\tsetAttr \".uvst[0].uvsp[4750:4999]\" 0.94321299 0.24878299 0.63548398 0.38433897\n\t\t 0.71142 0.19498098 0.89578903 0.11863703 0.32042599 0.014697015 0.97824198 0.52885401\n\t\t 0.136419 0.490035 0.81174397 0.86798501 0.98119998 0.28647 0.199958 0.63921601 0.249347\n\t\t 0.29148 0.72339499 0.18766898 0.47394899 0.493406 0.97957802 0.75534797 0.78606302\n\t\t 0.29004198 0.041378599 0.54025602 0.032769602 0.53255099 0.76498801 0.97213382 0.51691401\n\t\t 0.0013560057 0.44817299 0.033802986 0.238258 0.25670499 0.450966 0.35289299 0.399647\n\t\t 0.030972004 0.864375 0.36434001 0.63130599 0.672831 0.30604601 0.23479003 0.765513\n\t\t 0.55420399 0.88183999 0.563353 0.68928099 0.016925991 0.768363 0.17291898 0.75572801\n\t\t 0.26656002 0.71280199 0.51075602 0.93091601 0.25720799 0.77610803 0.196917 0.93088901\n\t\t 0.24485499 0.77737701 0.088597 0.94297999 0.077464998 0.34888601 0.27572298 0.17641\n\t\t 0.015354991 0.44869599 0.83172601 0.42380801 0.19062102 0.492457 0.45875901 0.39120999\n\t\t 0.071745992 0.94268298 0.011102974 0.32118499 0.0091950297 0.0174411 0.39413399 0.0092298295\n\t\t 0.53191501 0.022242 0.78011602 0.0104653 0.23371702 0.0131006 0.370103 0.018348699\n\t\t 0.554488 0.0213759 0.43843102 0.0128481 0.438209 0.0037209 0.43811601 0.0262131 0.51080501\n\t\t 0.071146801 0.26075 0.74909002 0.41019899 0.733711 0.36220902 0.54996997 0.40995598\n\t\t 0.72849399 0.76988 0.93685102 0.325697 0.480537 0.33354503 0.71938902 0.03699398\n\t\t 0.80130899 0.18837702 0.34772801 0.20928198 0.86648703 0.019896984 0.46640199 0.32110101\n\t\t 0.81516498 0.36444598 0.80937099 0.87378597 0.52767402 0.23348802 0.46913999 0.35850698\n\t\t 0.26780301 0.22892898 0.91709602 0.15165102 0.95785803 0.12182599 0.70214999 0.091544986\n\t\t 0.66591799 0.16388601 0.35314101 0.024569988 0.94566399 0.86104202 0.078403696 0.43286002\n\t\t 0.16812401 0.29144198 0.14243101 0.070222974 0.53113198 0.334535 0.56626099 0.503663\n\t\t 0.47972 0.126176 0.89266402 0.048618972 0.40461901 0.45752603 0.39845899 0.446374\n\t\t 0.40880099 0.34859699 0.208213 0.21313399 0.30583301 0.009370029 0.092608601 0.054804981\n\t\t 0.40213001 0.051681995 0.63612598 0.58191502 0.33721101 0.082513988 0.44488299 0.36564302\n\t\t 0.99051201 0.51189804 0.100689 0.448533 0.074631102 0.20858002 0.071921296 0.43277198\n\t\t 0.106973 0.47703999 0.118742 0.62760603 0.100029 0.61672699 0.093926199 0.29568899\n\t\t 0.229876 0.66924798 0.63300401 0.22000998 0.72852999 0.052998006 0.40983099 0.23967201\n\t\t 0.80021799 0.075441003 0.69704199 0.057678998 0.39752901 0.64878601 0.78433502 0.034027994\n\t\t 0.76355201 0.016584992 0.75955403 0.027218997 0.559488 0.51670098 0.41398001 0.38720399\n\t\t 0.68433899 0.17684501 0.82443702 0.19155401 0.91399199 0.40990198 0.78985798 0.052170992\n\t\t 0.0660135 0.810444 0.435516 0.30694699 0.95228899 0.025599003 0.93699098 0.75178099\n\t\t 0.79593903 0.074199021 0.83460498 0.078140974 0.67947 0.52904797 0.360742 0.42540002\n\t\t 0.102016 0.48729098 0.254612 0.021309018 0.98337102 0.51737297 0.74762303 0.329602\n\t\t 0.75509501 0.526088 0.865794 0.47432297 0.68875802 0.264543 0.30849701 0.21698302\n\t\t 0.91958201 0.70582604 0.85685402 0.277381 0.76668102 0.027468979 0.60593802 0.99287945\n\t\t 0.79512101 0.82812101 0.295825 0.25730002 0.36264199 0.98564023 0.71632499 0.630521\n\t\t 0.67420697 0.52676904 0.40193701 0.24444401 0.61855203 0.37827301 0.73793501 0.066735029\n\t\t 0.718458 0.078092992 0.668993 0.36907101 0.53745198 0.161659 0.36489499 0.32365298\n\t\t 0.78802902 0.36443901 0.66422802 0.16950601 0.36569101 0.43243301 0.63133502 0.99652749\n\t\t 0.76784199 0.42480898 0.75182801 0.36221403 0.42436999 0.45724702 0.422052 0.20830202\n\t\t 0.35878 0.63605404 0.78534901 0.47432297 0.57878602 0.141927 0.91476601 0.44443798\n\t\t 0.60673499 0.31228 0.29993701 0.63060296 0.037762199 0.49712002 0.881688 0.78491598\n\t\t 0.68778199 0.326882 0.045082901 0.76613098 0.22956599 0.32624203 0.176385 0.093562007\n\t\t 0.193698 0.015354991 0.83951902 0.31071103 0.55799103 0.33018202 0.97810203 0.73569202\n\t\t 0.418639 0.25081301 0.87713599 0.93236321 0.901232 0.25121802 0.25282401 0.65294302\n\t\t 0.91578197 0.68653101 0.86031997 0.046984971 0.73179197 0.264543 0.749744 0.516927\n\t\t 0.76993102 0.36221403 0.65470499 0.45340002 0.133148 0.46689999 0.46501899 0.30360198\n\t\t 0.27403501 0.09858799 0.689578 0.017431021 0.127312 0.099443972 0.59794003 0.33627099\n\t\t 0.57517099 0.22001499 0.393255 0.18755502 0.400747 0.40828502 0.51563501 0.47966999\n\t\t 0.98466402 0.844006 0.737176 0.21919101 0.886388 0.30137998 0.51196599 0.062551022\n\t\t 0.552136 0.17590898 0.52949399 0.431907 0.69720203 0.78688401 0.163351 0.227449 0.75311399\n\t\t 0.77566099 0.80198997 0.29885203 0.37990099 0.43919897 0.159236 0.076016009 0.50689101\n\t\t 0.45888698 0.59078699 0.403512 0.32004201 0.052178979 0.40525499 0.32365698 0.436959\n\t\t 0.41756701 0.43760601 0.46097797 0.88683897 0.77703702 0.70473802 0.13060898 0.53517503\n\t\t 0.38452601 0.93239802 0.090790987 0.49682999 0.39835101 0.89754099 0.075438023 0.61252099\n\t\t 0.99354517 0.57252699 0.085245013 0.34206301 0.66168201 0.78586 0.29766798 0.43294501\n\t\t 0.015354991 0.74909002 0.48759103 0.67729801 0.53624797 0.69587201 0.57245398 0.56912702\n\t\t 0.11014199 0.68861401 0.038042009 0.97570401 0.26675498 0.605865 0.36907202 0.52078998\n\t\t 0.594598 0.671857 0.240426 0.56345898 0.10579503 0.81188798 0.52499801 0.97737199\n\t\t 0.52298099 0.45460999 0.46722698 0.60611898 0.474145 0.85441101 0.48759103 0.417613\n\t\t 0.087917984 0.109512 0.064749002 0.57004601 0.44557601 0.60707098 0.41727799 0.60453498\n\t\t 0.39051002 0.597507 0.22001398 0.74404699 0.31535298 0.69194698 0.091544986 0.477494\n\t\t 0.33416998 0.31270099 0.52741301 0.71552801 0.36222398;\n\tsetAttr \".uvst[0].uvsp[5000:5249]\" 0.93007898 0.403458 0.87495703 0.735511 0.73874998\n\t\t 0.59828699 0.27206701 0.24848098 0.423619 0.045405984 0.36867401 0.024572015 0.109512\n\t\t 0.076016009 0.53700697 0.20373797 0.048642602 0.87414098 0.65795398 0.087881029 0.60505599\n\t\t 0.20627898 0.62379998 0.091544986 0.541466 0.30666399 0.74895102 0.81383801 0.76692402\n\t\t 0.85495502 0.59117103 0.627253 0.66713101 0.10510302 0.81904501 0.14918602 0.411219\n\t\t 0.12718397 0.78566098 0.075591981 0.55640399 0.17229801 0.91015399 0.33258897 0.38979101\n\t\t 0.66750401 0.82712501 0.38929898 0.0056036799 0.70303798 0.98742002 0.50333703 0.60400099\n\t\t 0.63601899 0.82712501 0.41754699 0.51781899 0.21797103 0.87129903 0.74586797 0.66025102\n\t\t 0.57846797 0.53404897 0.061559975 0.87083 0.31202298 0.94550902 0.247585 0.78019601\n\t\t 0.81653398 0.201428 0.33253402 0.69557202 0.29304302 0.858262 0.258488 0.63823402\n\t\t 0.44630599 0.442303 0.474123 0.342603 0.316181 0.44245401 0.93985289 0.433898 0.43198401\n\t\t 0.279039 0.015354991 0.98742002 0.51062399 0.865794 0.39579302 0.036579601 0.55499697\n\t\t 0.086597197 0.216254 0.098561697 0.21625501 0.093314998 0.66191304 0.0153284 0.55229902\n\t\t 0.064199202 0.51736999 0.098561697 0.20330602 0.086597197 0.20331502 0.383551 0.44662201\n\t\t 0.67207998 0.46714699 0.68470401 0.66619802 0.73092198 0.20718199 0.65909898 0.80751699\n\t\t 0.76993102 0.36104798 0.28348601 0.24520701 0.79333597 0.088415027 0.57498097 0.23614699\n\t\t 0.73285902 0.087881029 0.665142 0.55387497 0.29547399 0.11413097 0.32131499 0.088600993\n\t\t 0.74909002 0.42480898 0.78537798 0.37896103 0.473995 0.33174598 0.397652 0.020494998\n\t\t 0.22657999 0.076016009 0.65429902 0.467112 0.82712501 0.446311 0.99542397 0.51364696\n\t\t 0.63698602 0.41076303 0.66197997 0.61908799 0.442702 0.023451984 0.58666301 0.22001398\n\t\t 0.75576699 0.33288598 0.35216099 0.39456803 0.65422702 0.17840898 0.927953 0.40186298\n\t\t 0.74894798 0.19835901 0.87591499 0.49943298 0.471627 0.062528014 0.98742199 0.52245498\n\t\t 0.60569298 0.40337598 0.50513101 0.47230101 0.494405 0.29828298 0.323805 0.39248401\n\t\t 0.49232599 0.28609502 0.217693 0.85233098 0.26699799 0.009370029 0.85441101 0.41019899\n\t\t 0.76784199 0.45353299 0.0124612 0.400047 0.41498899 0.43336099 0.36656499 0.39584798\n\t\t 0.41241401 0.45843899 0.69800299 0.620242 0.69818503 0.62739396 0.87794298 0.10417998\n\t\t 0.857162 0.36509699 0.93047702 0.25273401 0.81357002 0.24340099 0.85674101 0.026664972\n\t\t 0.57617998 0.40431798 0.72895098 0.37895399 0.40911701 0.34504199 0.81983203 0.029844999\n\t\t 0.193698 0.009370029 0.126 0.026961029 0.68791997 0.59533298 0.63389999 0.20627898\n\t\t 0.52982199 0.14894497 0.91876698 0.51378798 0.740668 0.724572 0.59480798 0.43862998\n\t\t 0.71236902 0.087881029 0.76087999 0.36104798 0.70376199 0.04094702 0.57795298 0.18550599\n\t\t 0.83699399 0.88928699 0.17641 0.037030995 0.182363 0.22146797 0.46056101 0.20373797\n\t\t 0.19608501 0.43793899 0.131869 0.43361199 0.112222 0.64064002 0.066447303 0.47954798\n\t\t 0.116558 0.48940599 0.188789 0.44657499 0.13851701 0.15720302 0.123933 0.70884097\n\t\t 0.22708701 0.24520701 0.114475 0.31726402 0.14919899 0.443515 0.61473 0.10133302\n\t\t 0.43693 0.42501098 0.97941703 0.51365304 0.56298 0.049157977 0.86361903 0.83254099\n\t\t 0.67268401 0.75403297 0.837744 0.87197 0.283171 0.22095001 0.59270197 0.34187901\n\t\t 0.58548301 0.50513196 0.87998801 0.154971 0.51576698 0.43236798 0.73923099 0.97386903\n\t\t 0.32587001 0.42973202 0.48451701 0.333951 0.44615301 0.012265027 0.26509199 0.41293103\n\t\t 0.58820099 0.091544986 0.82717001 0.37895399 0.437051 0.43969899 0.99062902 0.50651002\n\t\t 0.78210503 0.051297009 0.35877299 0.34179699 0.403391 0.21796799 0.78797901 0.76759601\n\t\t 0.65423602 0.087881029 0.78364599 0.052170992 0.816796 0.030682027 0.60968399 0.19304502\n\t\t 0.68931699 0.044767976 0.86664701 0.20346701 0.99724102 0.52703297 0.342926 0.35348499\n\t\t 0.92425799 0.79599297 0.0437379 0.076016009 0.0166458 0.054804981 0.0166458 0.050275981\n\t\t 0.0166458 0.026961029 0.0166458 0.009370029 0.441742 0.461281 0.69481099 0.14916497\n\t\t 0.81073701 0.038096011 0.69448 0.61978102 0.604186 0.10133302 0.785353 0.089864016\n\t\t 0.80670798 0.80526 0.764952 0.9012959 0.79558599 0.26567799 0.83969003 0.12933803\n\t\t 0.75183803 0.35882401 0.70975298 0.42480898 0.429198 0.42198402 0.22400901 0.21706301\n\t\t 0.254612 0.064749002 0.0126266 0.42740601 0.0099529 0.27811003 0.00326508 0.221811\n\t\t 0.245281 0.34977901 0.83879799 0.84171802 0.813761 0.029844999 0.50151098 0.26056302\n\t\t 0.54526901 0.14544201 0.41610599 0.42216802 0.57262999 0.016678989 0.995655 0.38164502\n\t\t 0.82712501 0.40285999 0.43294501 0.064749002 0.176817 0.093568027 0.181428 0.46766597\n\t\t 0.31361601 0.158391 0.195986 0.158391 0.35238799 0.39684999 0.40903601 0.051437974\n\t\t 0.254612 0.076016009 0.078004397 0.23053402 0.090842701 0.45586503 0.085575797 0.22429502\n\t\t 0.51628602 0.062864006 0.54758102 0.74721301 0.66119099 0.136123 0.81560898 0.79432899\n\t\t 0.303029 0.33686399 0.85278201 0.134821 0.50152302 0.26064998 0.77087599 0.25727499\n\t\t 0.74502701 0.19147301 0.72524601 0.372177 0.92802203 0.37598199 0.60693002 0.467457\n\t\t 0.48718399 0.48622102 0.418246 0.45545501 0.31782201 0.41478503 0.42603299 0.15040201\n\t\t 0.23245201 0.22086602 0.224004 0.22084397 0.67133701 0.40391397 0.34033701 0.093311012\n\t\t 0.65167701 0.37829298 0.39321899 0.056721985 0.837578 0.15602797 0.603194 0.732602\n\t\t 0.73386598 0.77551401 0.68746901 0.66343796 0.69174403 0.558263 0.57039201 0.62916803\n\t\t 0.93848199 0.79872102 0.36082399 0.24492502 0.86865401 0.46920002 0.737041 0.86604798\n\t\t 0.159236 0.050275981 0.46621501 0.36096901 0.273397 0.32837099;\n\tsetAttr \".uvst[0].uvsp[5250:5499]\" 0.45210901 0.39701301 0.82712501 0.46066999\n\t\t 0.85441101 0.46066999 0.422833 0.040265024 0.019014601 0.48644102 0.67658401 0.21535802\n\t\t 0.21060701 0.045943022 0.84964401 0.15604401 0.62939 0.22000998 0.61690098 0.220011\n\t\t 0.35605401 0.49795997 0.387999 0.61984503 0.706361 0.36222398 0.93519402 0.028901994\n\t\t 0.486139 0.426072 0.748469 0.241458 0.942693 0.25799102 0.86566502 0.37895298 0.53684199\n\t\t 0.48711598 0.80187899 0.30015701 0.74374801 0.56016701 0.73830497 0.091544986 0.940256\n\t\t 0.11558998 0.79197103 0.84480399 0.64583099 0.062044024 0.60588002 0.36906099 0.244605\n\t\t 0.227449 0.61929202 0.38436699 0.50296599 0.47917598 0.43294501 0.059605002 0.56896102\n\t\t 0.11262 0.98742002 0.50612402 0.044162199 0.50905699 0.41328001 0.076404989 0.42505899\n\t\t 0.469181 0.229188 0.49110299 0.290921 0.227449 0.398617 0.025738001 0.254612 0.087776005\n\t\t 0.57218599 0.12057298 0.62102699 0.47395402 0.472002 0.398148 0.46269599 0.12599301\n\t\t 0.41246 0.20830202 0.29770699 0.46884799 0.16390499 0.15839201 0.17492101 0.22744697\n\t\t 0.14643499 0.221533 0.050687701 0.22153401 0.25862601 0.32567799 0.32461801 0.72294903\n\t\t 0.61401999 0.23800403 0.71526599 0.0037310123 0.80120897 0.446311 0.63776201 0.37216401\n\t\t 0.56473398 0.14595801 0.77208799 0.089864016 0.44469601 0.33518898 0.88792098 0.76201099\n\t\t 0.91357797 0.70224404 0.56296998 0.13658798 0.36746001 0.699745 0.90463901 0.240197\n\t\t 0.209737 0.23178101 0.57495201 0.38455802 0.72957098 0.446311 0.689309 0.610654 0.198607\n\t\t 0.29139602 0.187534 0.40378499 0.376304 0.21925002 0.43777999 0.467691 0.41181001\n\t\t 0.082099974 0.30583301 0.045943022 0.348176 0.16015899 0.74861598 0.27706301 0.48437101\n\t\t 0.33923203 0.152053 0.63635302 0.69268203 0.62110198 0.60047197 0.22001398 0.61473\n\t\t 0.10510302 0.77481902 0.74211597 0.32975399 0.43580198 0.77360201 0.89750803 0.98153001\n\t\t 0.51225102 0.17641 0.026961029 0.46393201 0.586182 0.45622101 0.078244984 0.308557\n\t\t 0.22076499 0.338204 0.209162 0.41935 0.42719603 0.34700599 0.40703303 0.29526201\n\t\t 0.33947998 0.054192599 0.40086401 0.044039901 0.46187901 0.88547498 0.23508 0.52345002\n\t\t 0.28848201 0.67771 0.10133302 0.36680901 0.44849902 0.71408898 0.72621202 0.89622003\n\t\t 0.248667 0.77201998 0.565584 0.877675 0.57077396 0.86133701 0.370116 0.72902697 0.067391992\n\t\t 0.17641 0.059605002 0.33470401 0.431575 0.43165401 0.60671401 0.254612 0.032191992\n\t\t 0.0044761901 0.93271577 0.69383901 0.61409402 0.694857 0.241449 0.56216699 0.054325998\n\t\t 0.92288399 0.67867899 0.75384998 0.21781301 0.85089397 0.35876799 0.40613699 0.39855099\n\t\t 0.721349 0.064522028 0.85175103 0.99892384 0.852543 0.82546699 0.67217797 0.35963398\n\t\t 0.22492699 0.99627 0.417918 0.18594199 0.380797 0.65035903 0.46988299 0.32901198\n\t\t 0.039994702 0.50319004 0.60473698 0.22001398 0.673141 0.36300302 0.62279999 0.43902397\n\t\t 0.0551854 0.22429502 0.075556599 0.55575001 0.072263502 0.48953801 0.041698001 0.49883801\n\t\t 0.120806 0.49551898 0.070900999 0.20072401 0.114827 0.311957 0.053997301 0.15720397\n\t\t 0.063781999 0.44902498 0.092583798 0.093568027 0.22136199 0.22892803 0.70623702 0.18386197\n\t\t 0.83232802 0.85777402 0.71240801 0.053586006 0.57617497 0.20893198 0.79715002 0.88535398\n\t\t 0.755557 0.81027603 0.68858701 0.60020697 0.68641198 0.035957992 0.92689502 0.68421501\n\t\t 0.53990799 0.48073798 0.51100397 0.98353827 0.51239198 0.10887998 0.64778 0.74552399\n\t\t 0.76685601 0.29402 0.31950599 0.19933301 0.74449098 0.99944687 0.949525 0.69110799\n\t\t 0.18276 0.26186502 0.94346601 0.25068599 0.74909002 0.40285999 0.81016499 0.76697302\n\t\t 0.34321299 0.36639601 0.32021001 0.62999099 0.22657999 0.045943022 0.092608601 0.081960022\n\t\t 0.42473999 0.014725029 0.058955301 0.50304401 0.038708199 0.20332003 0.26699799 0.076016009\n\t\t 0.84167898 0.35429603 0.31940901 0.39712101 0.81947201 0.29165399 0.78462601 0.83809799\n\t\t 0.89098197 0.076961994 0.69682097 0.68353099 0.79335201 0.08979398 0.82995999 0.81073099\n\t\t 0.74291301 0.55039901 0.431153 0.31664598 0.72957098 0.48759103 0.55614299 0.46731299\n\t\t 0.163353 0.22459602 0.41718301 0.0093140006 0.612836 0.54170096 0.83477998 0.70703697\n\t\t 0.61367399 0.35870999 0.69683599 0.66179299 0.75079799 0.092545986 0.42443699 0.43967301\n\t\t 0.68773502 0.18203598 0.93186098 0.011815012 0.74589902 0.51953 0.84718198 0.043083012\n\t\t 0.71341801 0.81895196 0.46549401 0.074622989 0.269977 0.29978102 0.42759201 0.06536603\n\t\t 0.634911 0.37830299 0.092608601 0.041603029 0.146791 0.444278 0.15180101 0.22892702\n\t\t 0.214476 0.34557903 0.14928199 0.66229796 0.088756099 0.56896996 0.16115101 0.099443972\n\t\t 0.036770299 0.50717801 0.040355399 0.47945398 0.0713218 0.40182 0.237058 0.99234515\n\t\t 0.875166 0.92458057 0.267802 0.23178703 0.85031903 0.32228702 0.84398198 0.95991212\n\t\t 0.60769302 0.62075603 0.62971503 0.21432698 0.85173303 0.77495801 0.56837398 0.66376197\n\t\t 0.78802401 0.72855103 0.70353299 0.505813 0.69366401 0.014003992 0.80120897 0.38929898\n\t\t 0.63168401 0.90934241 0.27808601 0.678056 0.671547 0.48024797 0.57512802 0.37829399\n\t\t 0.0034682699 0.021309018 0.73797798 0.77944803 0.40736601 0.36899799 0.44675699 0.55829597\n\t\t 0.414022 0.056023002 0.392737 0.061636984 0.41736501 0.060702026 0.76784199 0.43198401\n\t\t 0.63389999 0.20893198 0.211622 0.33239901 0.653225 0.39725 0.26699799 0.032191992\n\t\t 0.67595601 0.24044001 0.70449603 0.349154 0.726861 0.54035604 0.785972 0.29685903\n\t\t 0.97312897 0.26499599 0.73977602 0.97656941 0.89839298 0.25235897 0.67631602 0.638919\n\t\t 0.182356 0.203372 0.713144 0.63769001 0.67097902 0.38428903 0.98986399 0.505548 0.65179801\n\t\t 0.091544986 0.31951901 0.20334899;\n\tsetAttr \".uvst[0].uvsp[5500:5749]\" 0.195986 0.19537699 0.346706 0.213516 0.735147\n\t\t 0.73638099 0.99139202 0.51894599 0.806952 0.051284015 0.33041 0.38633698 0.94585198\n\t\t 0.99818861 0.84524399 0.29561901 0.86823499 0.48712403 0.62313801 0.90476799 0.396442\n\t\t 0.19130898 0.71142501 0.15654099 0.72226101 0.63449097 0.61854601 0.22000998 0.700306\n\t\t 0.11886901 0.14243101 0.081960022 0.180702 0.97734451 0.36596999 0.42155403 0.47930601\n\t\t 0.22885799 0.109512 0.059605002 0.031382699 0.52207899 0.045545299 0.15720397 0.032392401\n\t\t 0.22429502 0.0147595 0.22146398 0.0147685 0.20337403 0.018977899 0.70142901 0.0456695\n\t\t 0.40037698 0.053590301 0.548576 0.059994701 0.547472 0.061315302 0.71338999 0.37220401\n\t\t 0.21384197 0.186511 0.228926 0.21060701 0.087776005 0.782686 0.089864016 0.59163803\n\t\t 0.541529 0.604087 0.22001398 0.84110099 0.31006998 0.82048798 0.78853798 0.74073899\n\t\t 0.10133302 0.806198 0.030604005 0.50826001 0.20373797 0.29506499 0.33337802 0.73083001\n\t\t 0.63213199 0.79708201 0.36221701 0.72957098 0.41019899 0.093709797 0.69297898 0.35308799\n\t\t 0.43110502 0.34919199 0.36646903 0.39934501 0.99924314 0.49872699 0.21797103 0.378777\n\t\t 0.24264598 0.279039 0.059605002 0.75997502 0.71738696 0.033202 0.23371601 0.61738998\n\t\t 0.220011 0.075514801 0.093566 0.361013 0.403938 0.56154901 0.50949401 0.59470499\n\t\t 0.45330203 0.62248498 0.21432602 0.57002801 0.15777802 0.300933 0.19932002 0.082183003\n\t\t 0.29082698 0.71045703 0.14840198 0.76180899 0.063440025 0.95427603 0.82066202 0.837915\n\t\t 0.99703872 0.72366899 0.015017986 0.89735299 0.25080597 0.67013401 0.37830502 0.19865\n\t\t 0.22084397 0.22135399 0.24848098 0.115714 0.22429502 0.21876501 0.340249 0.865794\n\t\t 0.46066999 0.57771999 0.13516301 0.29163101 0.22095001 0.31659201 0.41422498 0.279039\n\t\t 0.037030995 0.581429 0.46050298 0.97984499 0.51224899 0.93173701 0.039187014 0.87024403\n\t\t 0.76201499 0.72029001 0.24137098 0.92834198 0.41460299 0.57155699 0.22001499 0.69490403\n\t\t 0.661452 0.81598598 0.31559497 0.82590699 0.78290403 0.73073697 0.88869798 0.65756702\n\t\t 0.21166098 0.241256 0.026961029 0.78632599 0.080056012 0.44155499 0.30825198 0.269631\n\t\t 0.29175901 0.85426301 0.37894899 0.158417 0.22151798 0.21060701 0.032191992 0.60441101\n\t\t 0.21433002 0.74862403 0.27714002 0.698111 0.559219 0.72211099 0.50582999 0.82326502\n\t\t 0.18546498 0.80613297 0.36221302 0.74279499 0.35881799 0.81625402 0.23782903 0.28877199\n\t\t 0.289666 0.71386099 0.17338699 0.74387503 0.718247 0.55662102 0.22670102 0.76333302\n\t\t 0.52496898 0.98742002 0.50529301 0.62166101 0.4673 0.33626199 0.024846971 0.78534901\n\t\t 0.38366097 0.40411201 0.327654 0.433898 0.42480898 0.36937699 0.051325977 0.72957098\n\t\t 0.38929898 0.00332964 0.40049398 0.136849 0.24520701 0.126 0.050275981 0.76752001\n\t\t 0.17771 0.69625998 0.21816897 0.90114403 0.812114 0.59422803 0.63921499 0.576015\n\t\t 0.2263 0.517501 0.22363102 0.93071502 0.24765497 0.914428 0.239326 0.82712501 0.43912798\n\t\t 0.82712501 0.39579302 0.99418098 0.51092696 0.49348 0.36907202 0.42730299 0.418827\n\t\t 0.40704301 0.015075028 0.109512 0.041603029 0.313604 0.231848 0.44155401 0.31336302\n\t\t 0.775949 0.032240987 0.718602 0.24052697 0.60748798 0.57659799 0.84415698 0.85431898\n\t\t 0.76254302 0.9726122 0.69506299 0.15408897 0.77097797 0.85267603 0.82562798 0.81597298\n\t\t 0.71808898 0.073319018 0.55796701 0.44548601 0.55831599 0.04678899 0.62988698 0.89107198\n\t\t 0.44331801 0.017507017 0.61164898 0.96270442 0.22661901 0.20918399 0.60738403 0.19566\n\t\t 0.56176603 0.14173001 0.64950198 0.73832703 0.593211 0.091544986 0.69891101 0.10133302\n\t\t 0.82712501 0.481004 0.336541 0.07188803 0.98310602 0.529055 0.96605802 0.0051730275\n\t\t 0.97762102 0.52705598 0.73457003 0.55104196 0.44117001 0.372172 0.48110101 0.33493298\n\t\t 0.0117369 0.20072401 0.086200804 0.26074702 0.366142 0.85516399 0.47812799 0.32804\n\t\t 0.428931 0.12818903 0.96737099 0.38901299 0.872271 0.45313197 0.49467599 0.49354899\n\t\t 0.67062998 0.240538 0.96011603 0.18010902 0.83883202 0.12986898 0.54795301 0.14183402\n\t\t 0.29486901 0.33743697 0.88655299 0.9023127 0.56670201 0.35115099 0.84539998 0.15576601\n\t\t 0.70746398 0.84516299 0.85898203 0.18124598 0.484851 0.39167702 0.365749 0.34223503\n\t\t 0.339959 0.27488899 0.27193299 0.399535 0.49477401 0.29842001 0.36882499 0.014239013\n\t\t 0.67393702 0.82428503 0.031184699 0.49386799 0.0387077 0.22151798 0.050877001 0.454427\n\t\t 0.77812099 0.32178903 0.214086 0.39859903 0.69824201 0.17793298 0.80761302 0.068322003\n\t\t 0.88673902 0.37561601 0.610973 0.52970201 0.321877 0.18804902 0.70434302 0.18434298\n\t\t 0.857454 0.18079197 0.72276199 0.700625 0.80203003 0.29803598 0.75824898 0.23364002\n\t\t 0.46219 0.352786 0.22657999 0.041603029 0.21438301 0.65269697 0.870462 0.38158798\n\t\t 0.90739501 0.69851804 0.51564002 0.021670997 0.75753403 0.217767 0.85832399 0.22729099\n\t\t 0.54732901 0.75853699 0.76333398 0.25754601 0.82419801 0.35882401 0.56722301 0.52793199\n\t\t 0.52395397 0.17204303 0.55522197 0.028611004 0.76702797 0.75399101 0.26092601 0.24520701\n\t\t 0.3427 0.35729802 0.49823499 0.41907299 0.72957098 0.41754699 0.72993797 0.74950999\n\t\t 0.215376 0.76297998 0.159236 0.037030995 0.75881302 0.088597 0.326107 0.88203597\n\t\t 0.35431299 0.41702402 0.30388501 0.45039898 0.36148801 0.37210101 0.32562599 0.39830101\n\t\t 0.42699501 0.070734978 0.75145203 0.31318802 0.086597197 0.20858198 0.086597197 0.22152001\n\t\t 0.098561697 0.22152901 0.063020103 0.44571298 0.098561697 0.20858002 0.732737 0.74271899\n\t\t 0.109479 0.093572974 0.66943002 0.35986 0.90628302 0.81466299 0.48946601 0.34604299\n\t\t 0.791412 0.051284015 0.55314201 0.17382097 0.256212 0.227449;\n\tsetAttr \".uvst[0].uvsp[5750:5999]\" 0.43522799 0.91332358 0.61131603 0.078086972\n\t\t 0.84319502 0.86742103 0.837758 0.15499401 0.88001603 0.80139899 0.60150498 0.68969703\n\t\t 0.690741 0.24233198 0.57985902 0.89640701 0.153211 0.15839303 0.54189098 0.31175703\n\t\t 0.22708701 0.23479003 0.122492 0.20330298 0.987441 0.53424597 0.156432 0.36907202\n\t\t 0.31361601 0.19536799 0.17492101 0.22892898 0.32327899 0.093344986 0.90933299 0.36936599\n\t\t 0.54120702 0.15782702 0.66427797 0.52162302 0.16335 0.22892702 0.682706 0.67363 0.75182801\n\t\t 0.361049 0.72242397 0.24208301 0.60790098 0.55994797 0.81642598 0.224971 0.66182101\n\t\t 0.21816897 0.84488702 0.111781 0.37773299 0.44216001 0.80801201 0.745906 0.79222399\n\t\t 0.76190001 0.366593 0.33644098 0.209737 0.22459501 0.75318998 0.94831628 0.55434299\n\t\t 0.74310803 0.159236 0.026961029 0.38310701 0.65140998 0.163353 0.23177999 0.0391334\n\t\t 0.50598502 0.27583799 0.60664701 0.22657999 0.032191992 0.43294501 0.050275981 0.72000998\n\t\t 0.10510302 0.54040301 0.17356098 0.16390599 0.19537503 0.380674 0.082663 0.592803\n\t\t 0.237068 0.70810801 0.17778897 0.66377699 0.25933701 0.32635599 0.40506101 0.65423602\n\t\t 0.091544986 0.72228098 0.24032301 0.53970402 0.63738096 0.255162 0.24848002 0.80045801\n\t\t 0.77818799 0.58272398 0.21433002 0.61164099 0.214329 0.40708101 0.27581197 0.644238\n\t\t 0.22899002 0.65551299 0.89364702 0.53230298 0.46622801 0.415912 0.37846297 0.251955\n\t\t 0.70353299 0.40198299 0.046629012 0.72920197 0.0013340116 0.98322397 0.66202402 0.39555901\n\t\t 0.093392015 0.83907998 0.37506998 0.42182201 0.49960101 0.682064 0.19289601 0.99148399\n\t\t 0.52137601 0.90186697 0.12639898 0.34273899 0.39413297 0.83116698 0.874681 0.385894\n\t\t 0.99686462 0.68303001 0.72231996 0.350564 0.407974 0.61359698 0.087881029 0.40736401\n\t\t 0.372172 0.57689601 0.67566699 0.81946099 0.91314852 0.172011 0.71131301 0.35122901\n\t\t 0.53023696 0.70975298 0.446311 0.218034 0.937886 0.402091 0.305408 0.159408 0.24520701\n\t\t 0.72957098 0.46066999 0.180279 0.40770602 0.087805197 0.15720397 0.151816 0.224594\n\t\t 0.15574799 0.63225496 0.219115 0.64372897 0.241639 0.58205903 0.24945401 0.158391\n\t\t 0.084656402 0.687491 0.16219001 0.25670499 0.170404 0.21625298 0.180815 0.652587\n\t\t 0.85441101 0.46759498 0.80120897 0.39579302 0.51404798 0.062906027 0.79918402 0.84456599\n\t\t 0.88349003 0.436764 0.56120801 0.145109 0.88250101 0.95394248 0.49209899 0.33385801\n\t\t 0.53053999 0.33624703 0.94590098 0.66230404 0.41789901 0.40745801 0.40557599 0.45126897\n\t\t 0.56577897 0.20308 0.89910102 0.79362899 0.69685602 0.24241602 0.57464898 0.802387\n\t\t 0.563366 0.40943199 0.72957098 0.39579302 0.60925299 0.99303496 0.56196803 0.18176502\n\t\t 0.88598299 0.29197502 0.26699799 0.045943022 0.38392499 0.32650602 0.178938 0.85061699\n\t\t 0.109512 0.032191992 0.94720399 0.24582601 0.78534901 0.446311 0.74081302 0.98155969\n\t\t 0.0275224 0.45938402 0.123712 0.62771201 0.68705302 0.026703 0.69101202 0.073750019\n\t\t 0.96822602 0.079788983 0.85163599 0.040993989 0.866835 0.20848203 0.71386099 0.175228\n\t\t 0.84295201 0.32970297 0.66328597 0.32777703 0.89355302 0.76656497 0.75982398 0.13812798\n\t\t 0.80364001 0.74000502 0.32006299 0.069332004 0.090630397 0.47310197 0.17641 0.050275981\n\t\t 0.387187 0.45788503 0.408207 0.041292012 0.742773 0.362216 0.42988399 0.40785903\n\t\t 0.724635 0.36220902 0.42522699 0.63301504 0.046300601 0.44892401 0.040101301 0.49815702\n\t\t 0.0406592 0.50030899 0.520401 0.45894402 0.0437379 0.045943022 0.0437379 0.064749002\n\t\t 0.0166458 0.059605002 0.0166458 0.015354991 0.0437379 0.032191992 0.50844902 0.23558903\n\t\t 0.56630498 0.47444803 0.72957098 0.43198401 0.64388198 0.768709 0.39158499 0.030776978\n\t\t 0.96746999 0.74599802 0.85743201 0.050710976 0.56490302 0.28246301 0.68943799 0.063422024\n\t\t 0.73009503 0.036207974 0.814331 0.74527204 0.617266 0.73897099 0.68055803 0.55016398\n\t\t 0.850676 0.28865802 0.78802299 0.088597 0.800735 0.051284015 0.78841299 0.83142 0.82906997\n\t\t 0.83958501 0.82933199 0.85583198 0.29644001 0.098221004 0.54915297 0.025914013 0.37322\n\t\t 0.27492499 0.14033499 0.23177397 0.393047 0.65096796 0.42827699 0.055306971 0.413344\n\t\t 0.040939987 0.35699499 0.09957999 0.025597 0.52231598 0.82166302 0.29063398 0.0032942099\n\t\t 0.58047301 0.01113 0.67762697 0.0066599501 0.95375592 0.0063268198 0.298406 0.0115793\n\t\t 0.54568398 0.70724601 0.014887989 0.82009798 0.86218703 0.71125501 0.148404 0.82695401\n\t\t 0.832578 0.29161799 0.054804981 0.69285601 0.30464798 0.76265502 0.92902589 0.54197299\n\t\t 0.16254199 0.69269401 0.30961698 0.671552 0.087881029 0.046256602 0.43193501 0.79708201\n\t\t 0.36104602 0.63356799 0.633129 0.59359902 0.10133302 0.64458102 0.091544986 0.40521401\n\t\t 0.099123001 0.92980301 0.682823 0.204916 0.33999699 0.40545499 0.071219981 0.51999903\n\t\t 0.59748602 0.113811 0.34452999 0.17641 0.076016009 0.44035101 0.42513001 0.21708199\n\t\t 0.100034 0.26377901 0.20334399 0.759619 0.074913025 0.078962602 0.62985301 0.113897\n\t\t 0.9554764 0.038431801 0.446509 0.121613 0.15720397 0.76933801 0.29430401 0.65357101\n\t\t 0.62851799 0.58907199 0.37825298 0.87785202 0.15530503 0.67007202 0.63444901 0.64118701\n\t\t 0.19652998 0.69483 0.31716001 0.84302598 0.85989201 0.77827603 0.017269015 0.79584998\n\t\t 0.26294398 0.315211 0.41656798 0.73830497 0.087881029 0.73579699 0.10133302 0.72986299\n\t\t 0.719576 0.87066698 0.02363801 0.52978498 0.33931899 0.86369801 0.096234977 0.995139\n\t\t 0.51096404 0.81643599 0.51778102 0.75456798 0.9494676 0.902192 0.40642399 0.36149201\n\t\t 0.36900097 0.43387499 0.33435702 0.48669401 0.51797104 0.40093401 0.66008604 0.47654101\n\t\t 0.47997802 0.40160701 0.0094370246 0.56538701 0.51148701;\n\tsetAttr \".uvst[0].uvsp[6000:6249]\" 0.80612302 0.36443597 0.21060701 0.050275981\n\t\t 0.73433203 0.067155004 0.53083301 0.30842102 0.74706399 0.33151102 0.65785903 0.32242602\n\t\t 0.44258201 0.94013119 0.634471 0.17242199 0.94170398 0.33152503 0.52543998 0.417961\n\t\t 0.53123498 0.31351602 0.93717599 0.57980096 0.74475998 0.064989984 0.83490199 0.85115999\n\t\t 0.69061798 0.43212402 0.093473598 0.099443972 0.70117998 0.21816897 0.127242 0.41025501\n\t\t 0.39609501 0.75272501 0.109512 0.081960022 0.76679599 0.088597 0.27083999 0.19536197\n\t\t 0.025796 0.154567 0.55615902 0.071475029 0.57577503 0.14399397 0.13013799 0.54078996\n\t\t 0.142518 0.19536901 0.625633 0.26695102 0.79362398 0.19913101 0.82287002 0.029844999\n\t\t 0.816796 0.029844999 0.87882602 0.064462006 0.69291598 0.30216098 0.68065399 0.17682803\n\t\t 0.96263301 0.21134502 0.84057599 0.79914904 0.57042402 0.039528012 0.59544301 0.20627898\n\t\t 0.53310698 0.99334276 0.81518799 0.36104703 0.809003 0.18860298 0.85683101 0.026417017\n\t\t 0.84011698 0.86484802 0.99499202 0.51624799 0.18731999 0.36173302 0.56823403 0.11841398\n\t\t 0.850357 0.69917703 0.34651101 0.338651 0.40875 0.67190397 0.751477 0.062289 0.48773399\n\t\t 0.43252099 0.81394398 0.297777 0.42563999 0.025319993 0.206679 0.158391 0.18370999\n\t\t 0.154567 0.76067501 0.034157991 0.69072503 0.46729499 0.934246 0.238662 0.42781001\n\t\t 0.14039999 0.79816902 0.86414897 0.35350299 0.49341202 0.58818698 0.52974701 0.62134802\n\t\t 0.72115004 0.72100401 0.17658401 0.54080099 0.42411 0.40132099 0.30086702 0.807212\n\t\t 0.24051201 0.81668597 0.496041 0.56945699 0.147636 0.501607 0.36907202 0.536264 0.16004699\n\t\t 0.80371797 0.86870098 0.79634202 0.86602497 0.51139802 0.99890906 0.454422 0.9335956\n\t\t 0.86104101 0.13940799 0.87002701 0.45655203 0.30329701 0.33034801 0.373822 0.66534001\n\t\t 0.254612 0.037030995 0.318921 0.413508 0.183431 0.99870276 0.36143801 0.43557203\n\t\t 0.47100201 0.0062490106 0.26528201 0.46652198 0.42237201 0.48341399 0.100041 0.629282\n\t\t 0.294561 0.26395702 0.44555101 0.34032297 0.202126 0.61154902 0.21060701 0.070222974\n\t\t 0.302387 0.23177701 0.49666601 0.372172 0.71282202 0.50501502 0.80674702 0.83290398\n\t\t 0.63449699 0.61695802 0.81759697 0.69592297 0.288495 0.33230901 0.74275601 0.0038480163\n\t\t 0.75785202 0.80897403 0.73774999 0.73053098 0.31866801 0.31010699 0.496602 0.36905801\n\t\t 0.41840601 0.020026028 0.075532302 0.037030995 0.84901398 0.15525597 0.94932801 0.14674002\n\t\t 0.82879299 0.56131804 0.27056199 0.88413 0.82316297 0.69995999 0.375891 0.23739398\n\t\t 0.346935 0.33461899 0.275682 0.93605411 0.184037 0.282179 0.440568 0.41010797 0.254612\n\t\t 0.059605002 0.22657999 0.081960022 0.092608601 0.045943022 0.31998801 0.046634018\n\t\t 0.81516498 0.35881698 0.86391801 0.0045229793 0.729523 0.69159198 0.79068798 0.092545986\n\t\t 0.88632703 0.11962998 0.25174499 0.76654303 0.53851199 0.23220599 0.15792 0.29153299\n\t\t 0.64493501 0.58332801 0.68831301 0.10133302 0.64219099 0.21812803 0.70643502 0.181633\n\t\t 0.87105697 0.29557198 0.56237102 0.13915598 0.511967 0.48662901 0.42016399 0.076452971\n\t\t 0.743393 0.24045801 0.44862801 0.32915503 0.61883003 0.64238298 0.69063002 0.47395003\n\t\t 0.87120402 0.524885 0.70609599 0.21816897 0.96025699 0.73934603 0.218034 0.99825108\n\t\t 0.39350399 0.66637897 0.41325501 0.025453985 0.037075099 0.099443972 0.052045699\n\t\t 0.73047304 0.0595777 0.48443401 0.037635799 0.51234496 0.059634801 0.154567 0.815741\n\t\t 0.19106102 0.040994599 0.50072002 0.914428 0.25238699 0.27220601 0.23478901 0.69516599\n\t\t 0.30721003 0.31132901 0.39849502 0.81969398 0.83350599 0.27937299 0.22892499 0.59845299\n\t\t 0.055220008 0.62420201 0.76142401 0.25467199 0.66291797 0.485457 0.38485003 0.68886501\n\t\t 0.037621021 0.99289203 0.73407304 0.77689803 0.075159013 0.44992399 0.26481998 0.325468\n\t\t 0.22043401 0.169838 0.32039702 0.75749999 0.23307198 0.97934997 0.101358 0.32380399\n\t\t 0.42720097 0.43781099 0.33707398 0.48738399 0.25638902 0.109512 0.015354991 0.0038397\n\t\t 0.69329596 0.727736 0.63207799 0.50541598 0.44568098 0.147744 0.29156798 0.81937897\n\t\t 0.18994802 0.073013604 0.44555002 0.61367798 0.577106 0.92843097 0.36309701 0.96537101\n\t\t 0.60272896 0.53229398 0.14460999 0.36100399 0.66332901 0.80879903 0.23425698 0.193591\n\t\t 0.531129 0.55154401 0.352745 0.53854901 0.18756598 0.92965698 0.38948298 0.39583999\n\t\t 0.967462 0.75345898 0.092545986 0.61947697 0.20627898 0.46483099 0.58315098 0.697887\n\t\t 0.22485298 0.83925098 0.37028599 0.124148 0.23371601 0.15373699 0.24848002 0.59228301\n\t\t 0.077978015 0.34488001 0.96196932 0.31900999 0.39446402 0.142858 0.093590021 0.38257799\n\t\t 0.051576972 0.053997301 0.20072401 0.070400499 0.22429502 0.070900999 0.15720302\n\t\t 0.037094198 0.521828 0.0817044 0.553285 0.824476 0.06299901 0.124213 0.62714803 0.52359599\n\t\t 0.032953978 0.26699799 0.064749002 0.97364998 0.26487303 0.50184101 0.432679 0.89952397\n\t\t 0.11553103 0.67197198 0.55580401 0.182428 0.21624202 0.48790199 0.33142102 0.34355599\n\t\t 0.29962099 0.78803098 0.36221403 0.72312301 0.18147802 0.79585701 0.73753297 0.59930003\n\t\t 0.569565 0.459997 0.345698 0.693753 0.115973 0.745915 0.24062502 0.22135399 0.25670499\n\t\t 0.88188303 0.060661972 0.87328398 0.707654 0.24966601 0.607355 0.45195499 0.82108498\n\t\t 0.31980899 0.035997987 0.78534901 0.39579302 0.85638797 0.11037701 0.188473 0.29137802\n\t\t 0.78003001 0.088597 0.70467103 0.51147199 0.58747602 0.50129402 0.57732898 0.53318101\n\t\t 0.49666601 0.36907202 0.56597298 0.262191 0.724635 0.36105299 0.50889301 0.055523992\n\t\t 0.80762303 0.24590898 0.63964701 0.77440703 0.80876499 0.83583599 0.54881698 0.37794\n\t\t 0.26699799 0.087776005 0.57447499 0.120368 0.49732399 0.28641802;\n\tsetAttr \".uvst[0].uvsp[6250:6499]\" 0.605582 0.18562597 0.71065801 0.15649301\n\t\t 0.95056999 0.25060302 0.97899503 0.63575602 0.43294501 0.087776005 0.977557 0.52090096\n\t\t 0.66162199 0.18999797 0.76950097 0.34889799 0.48919401 0.20830202 0.181968 0.23479003\n\t\t 0.35384801 0.082827985 0.30583301 0.081960022 0.86500299 0.21398097 0.0319659 0.51153398\n\t\t 0.126 0.015354991 0.96094602 0.031379998 0.57328802 0.11035699 0.33034599 0.38426602\n\t\t 0.638188 0.43915498 0.78718299 0.69951999 0.984604 0.16670901 0.53289098 0.67330301\n\t\t 0.94758701 0.0014290214 0.64087701 0.069966018 0.69420898 0.05014497 0.526196 0.36548799\n\t\t 0.57492 0.11086798 0.80596602 0.31341702 0.575638 0.62355602 0.77509099 0.027997017\n\t\t 0.43554601 0.33885902 0.32028499 0.63837302 0.35339901 0.072176993 0.50907999 0.77799898\n\t\t 0.306806 0.092666984 0.77682102 0.169227 0.689978 0.37811202 0.996629 0.52883303\n\t\t 0.70444 0.79423296 0.653943 0.47372103 0.71635997 0.63525498 0.93670303 0.14555401\n\t\t 0.125328 0.26655298 0.27937001 0.23177701 0.96921599 0.69991601 0.20936 0.67509401\n\t\t 0.46380699 0.90680349 0.62837499 0.90926939 0.51936197 0.088567019 0.94364202 0.019801021\n\t\t 0.444686 0.35605901 0.72534198 0.77907401 0.49088901 0.44551802 0.56349498 0.69449604\n\t\t 0.96589702 0.046118021 0.53930199 0.321257 0.27947301 0.29140002 0.158415 0.21625298\n\t\t 0.50376898 0.30475098 0.30062199 0.30236399 0.53389299 0.26057798 0.83332402 0.36221498\n\t\t 0.76350099 0.13203901 0.098765701 0.63560998 0.41910499 0.49809498 0.41622001 0.065721989\n\t\t 0.98421103 0.50651097 0.72658002 0.236624 0.146827 0.40550798 0.160769 0.71903199\n\t\t 0.15643699 0.372105 0.18370999 0.099443972 0.15180101 0.227449 0.233404 0.34860098\n\t\t 0.221321 0.95750862 0.196741 0.41019303 0.18879201 0.44670099 0.133357 0.60415101\n\t\t 0.63564402 0.10510302 0.637712 0.424869 0.891442 0.206397 0.42754 0.040522993 0.62545598\n\t\t 0.88002902 0.47544801 0.56130701 0.81704402 0.748236 0.29092199 0.22892702 0.74039698\n\t\t 0.024262011 0.54779202 0.39747202 0.66756898 0.0058540106 0.888367 0.29213703 0.26361501\n\t\t 0.24848098 0.69489002 0.31468302 0.68384999 0.52270699 0.57139403 0.19149601 0.35418499\n\t\t 0.15146399 0.71286201 0.50029099 0.78534901 0.481004 0.90039098 0.48557299 0.576603\n\t\t 0.14162803 0.56153703 0.37799197 0.0034682699 0.037030995 0.0034682699 0.081960022\n\t\t 0.0034682699 0.087776005 0.57059401 0.16265303 0.362968 0.40055501 0.40434101 0.23917401\n\t\t 0.412384 0.45220298 0.33007601 0.372172 0.47042999 0.30710799 0.47799101 0.33891201\n\t\t 0.45785299 0.49324298 0.76320899 0.25379097 0.95028901 0.52485502 0.51769298 0.05360502\n\t\t 0.82733101 0.38255602 0.71027499 0.254825 0.99834901 0.26771599 0.078721702 0.26074803\n\t\t 0.86809301 0.79213798 0.76357102 0.016173005 0.69709802 0.57463896 0.74724102 0.55404699\n\t\t 0.69675398 0.065585017 0.92765701 0.33131099 0.68573898 0.81940001 0.73551297 0.18401301\n\t\t 0.34010899 0.35247898 0.925385 0.74544704 0.77898097 0.36221403 0.75073999 0.52747899\n\t\t 0.578583 0.13859898 0.17641 0.054804981 0.38936001 0.087954998 0.60426599 0.48687899\n\t\t 0.44990501 0.26473403 0.481078 0.12807798 0.44278601 0.48685497 0.40092501 0.093482018\n\t\t 0.50651699 0.452214 0.67390001 0.35951602 0.750736 0.23841602 0.88196403 0.36943299\n\t\t 0.047867101 0.99423927 0.53759599 0.307863 0.69316298 0.18363702 0.57695597 0.53748202\n\t\t 0.72679299 0.24208099 0.53664201 0.81587398 0.77415901 0.013175011 0.75729799 0.21848601\n\t\t 0.81129402 0.79971302 0.93071401 0.25439698 0.57645398 0.13913798 0.61719602 0.602795\n\t\t 0.453062 0.309955 0.95353699 0.12038201 0.47456801 0.257541 0.85905302 0.36276299\n\t\t 0.85876799 0.20754999 0.311526 0.401223 0.784863 0.37894899 0.92276597 0.63005197\n\t\t 0.241256 0.009370029 0.44486099 0.037800014 0.412227 0.035829008 0.83199799 0.87716603\n\t\t 0.414801 0.070940971 0.0201889 0.15720397 0.0096354801 0.97502398 0.0256231 0.23371601\n\t\t 0.0223666 0.78422499 0.026721301 0.20331198 0.0091545004 0.577169 0.016985999 0.22429502\n\t\t 0.026719199 0.22152603 0.0201889 0.20072401 0.025795 0.099443972 0.97488701 0.267156\n\t\t 0.134461 0.20331901 0.21060701 0.037030995 0.83666402 0.15681601 0.578915 0.474343\n\t\t 0.53674799 0.174465 0.36929101 0.04609102 0.93851501 0.046009004 0.60503203 0.50786799\n\t\t 0.90133798 0.25193799 0.31510001 0.313528 0.214975 0.88395298 0.66896999 0.372172\n\t\t 0.751118 0.55654901 0.502666 0.59499502 0.41514701 0.40496498 0.489052 0.026835978\n\t\t 0.82984698 0.56480896 0.61696702 0.13663298 0.527381 0.18007803 0.24347501 0.35369998\n\t\t 0.628824 0.63648099 0.60986501 0.20627898 0.71946299 0.58645403 0.781726 0.79413098\n\t\t 0.41238299 0.45585102 0.29468501 0.15317702 0.67237902 0.22911 0.62219799 0.46044099\n\t\t 0.69688898 0.51379502 0.096257098 0.20072401 0.062661298 0.208583 0.015758701 0.53207201\n\t\t 0.063516803 0.233715 0.039730199 0.43258297 0.46080399 0.93168032 0.73188502 0.82389998\n\t\t 0.736678 0.19833302 0.70901603 0.37810999 0.39164799 0.44689298 0.76589102 0.29468203\n\t\t 0.48679101 0.025680006 0.49901801 0.75386298 0.79251498 0.81138301 0.66681999 0.51896\n\t\t 0.68636602 0.51285601 0.65627098 0.027653992 0.337928 0.21312499 0.74580902 0.800807\n\t\t 0.48811901 0.33691102 0.39135301 0.38265502 0.66763097 0.021300972 0.50828201 0.58652496\n\t\t 0.70159602 0.78271103 0.45155299 0.40375102 0.59694499 0.512559 0.300935 0.20919102\n\t\t 0.48608199 0.305022 0.257817 0.21716899 0.279039 0.087776005 0.62909502 0.20893198\n\t\t 0.65854102 0.22490901 0.433303 0.91212273 0.23591299 0.20333999 0.228974 0.29139102\n\t\t 0.21060701 0.054804981 0.61148101 0.22001302 0.95575398 0.0085669756 0.57071197 0.11857998\n\t\t 0.17460001 0.19537699 0.83831 0.12312198 0.33479899 0.39079303 0.63662899 0.58448696;\n\tsetAttr \".uvst[0].uvsp[6500:6749]\" 0.82828498 0.13854301 0.75098002 0.79805398\n\t\t 0.79494202 0.91153789 0.76223499 0.16247302 0.68752301 0.703264 0.39301699 0.12092799\n\t\t 0.56103802 0.135203 0.76185697 0.063950002 0.74909002 0.446311 0.68704301 0.81757802\n\t\t 0.94062102 0.758986 0.27256 0.52632296 0.95035899 0.10011297 0.69011998 0.015326023\n\t\t 0.84243 0.36104703 0.83459097 0.039299011 0.72260797 0.087881029 0.49891201 0.064493001\n\t\t 0.449765 0.91909522 0.39264199 0.32507002 0.31282899 0.36033499 0.470121 0.20830202\n\t\t 0.39202401 0.066609025 0.95278502 0.12355697 0.0453966 0.095196009 0.53473198 0.07052201\n\t\t 0.84215099 0.289114 0.43161899 0.91130829 0.72005397 0.23674202 0.85159802 0.36104602\n\t\t 0.69260103 0.50425196 0.255162 0.25670499 0.54606003 0.65132201 0.71798402 0.17639399\n\t\t 0.425928 0.65728599 0.984604 0.26771599 0.86500299 0.22030097 0.21425299 0.28079402\n\t\t 0.134939 0.36569798 0.025675699 0.26075602 0.59358197 0.42427999 0.59571999 0.040400982\n\t\t 0.300713 0.34732503 0.809201 0.030682027 0.70975298 0.46759498 0.142957 0.79033399\n\t\t 0.34633401 0.43045998 0.41111299 0.13955599 0.31951901 0.20918399 0.371099 0.648341\n\t\t 0.171372 0.362279 0.91789699 0.80294096 0.634049 0.087881029 0.70468599 0.75439602\n\t\t 0.71644902 0.76859599 0.70468599 0.75439602 0.71644902 0.76859599 0.71644902 0.76859599\n\t\t 0.72534198 0.77907401 0.72534198 0.77907401 0.74243897 0.802616 0.72534198 0.77907401\n\t\t 0.71725202 0.78435302 0.70846099 0.77534997 0.71725202 0.78435302 0.70846099 0.77534997\n\t\t 0.70846099 0.77534997 0.71725202 0.78435302 0.734231 0.807473 0.74243897 0.802616\n\t\t 0.74243897 0.802616 0.734231 0.807473 0.734231 0.807473 0.758241 0.85911703 0.74055898\n\t\t 0.81869799 0.758241 0.85911703 0.76692402 0.85495502 0.78192902 0.89236403 0.76692402\n\t\t 0.85495502 0.74895102 0.81383801 0.76692402 0.85495502 0.77360201 0.89750803 0.758241\n\t\t 0.85911703 0.78282601 0.92086822 0.77360201 0.89750803 0.77360201 0.89750803 0.78282601\n\t\t 0.92086822 0.78192902 0.89236403 0.78192902 0.89236403 0.79089099 0.91462147 0.74895102\n\t\t 0.81383801 0.74895102 0.81383801 0.67577797 0.74337804 0.67577797 0.74337804 0.67577797\n\t\t 0.74337804 0.70468599 0.75439602 0.76702797 0.75399101 0.76702797 0.75399101 0.71394902\n\t\t 0.75905597 0.71394902 0.75905597 0.72291303 0.76353902 0.70468599 0.75439602 0.71394902\n\t\t 0.75905597 0.70468599 0.75439602 0.72291303 0.76353902 0.93699098 0.75178099 0.91239899\n\t\t 0.77969998 0.93699098 0.75178099 0.94062102 0.758986 0.91805702 0.782637 0.94062102\n\t\t 0.758986 0.94390601 0.76179099 0.91239899 0.77969998 0.91239899 0.77969998 0.91805702\n\t\t 0.782637 0.91805702 0.782637 0.92685002 0.78554797 0.92685002 0.78554797 0.92685002\n\t\t 0.78554797 0.94390601 0.76179099 0.94390601 0.76179099 0.963507 0.742558 0.94062102\n\t\t 0.758986 0.96025699 0.73934603 0.93699098 0.75178099 0.95528698 0.73331404 0.95528698\n\t\t 0.73331404 0.64719099 0.74952102 0.64719099 0.74952102 0.360742 0.42540002 0.36569101\n\t\t 0.43243301 0.36569101 0.43243301 0.37057501 0.43873101 0.37057501 0.43873101 0.36771801\n\t\t 0.43074399 0.37238601 0.43692899 0.37238601 0.43692899 0.37238601 0.43692899 0.37773299\n\t\t 0.44216001 0.423729 0.45421702 0.418246 0.45545501 0.418246 0.45545501 0.42436999\n\t\t 0.45724702 0.41855401 0.45811802 0.42436999 0.45724702 0.418246 0.45545501 0.41238299\n\t\t 0.45585102 0.418246 0.45545501 0.41238299 0.45585102 0.40497601 0.45485598 0.41855401\n\t\t 0.45811802 0.41241401 0.45843899 0.41241401 0.45843899 0.40497601 0.45485598 0.41241401\n\t\t 0.45843899 0.40461901 0.45752603 0.41241401 0.45843899 0.40461901 0.45752603 0.396415\n\t\t 0.45562297 0.40497601 0.45485598 0.40497601 0.45485598 0.39715201 0.45304298 0.396415\n\t\t 0.45562297 0.396415 0.45562297 0.39715201 0.45304298 0.38996899 0.45029199 0.38996899\n\t\t 0.45029199 0.396415 0.45562297 0.38891301 0.45273501 0.38996899 0.45029199 0.38891301\n\t\t 0.45273501 0.38218501 0.44893003 0.38218501 0.44893003 0.38996899 0.45029199 0.383551\n\t\t 0.44662201 0.383551 0.44662201 0.37773299 0.44216001 0.37773299 0.44216001 0.38218501\n\t\t 0.44893003 0.37610701 0.44423002 0.38218501 0.44893003 0.37773299 0.44216001 0.37610701\n\t\t 0.44423002 0.37057501 0.43873101 0.37057501 0.43873101 0.039730199 0.43258297 0.36771801\n\t\t 0.43074399 0.36771801 0.43074399 0.36308599 0.42376101 0.360742 0.42540002 0.31159201\n\t\t 0.33720702 0.31165799 0.33372599 0.31159201 0.33720702 0.303029 0.33686399 0.30317199\n\t\t 0.33267897 0.303029 0.33686399 0.29922101 0.33697098 0.299413 0.33276898 0.299413\n\t\t 0.33276898 0.35919201 0.33956999 0.35281399 0.33902901 0.35919201 0.33956999 0.365859\n\t\t 0.34005898 0.35919201 0.33956999 0.365859 0.34005898 0.35281399 0.33902901 0.35281399\n\t\t 0.33902901 0.34651101 0.338651 0.34651101 0.338651 0.34651101 0.338651 0.339993 0.33843702\n\t\t 0.339993 0.33843702 0.339993 0.33843702 0.33309501 0.338135 0.33309501 0.338135 0.33309501\n\t\t 0.338135 0.32587701 0.33796901 0.32587701 0.33796901 0.31159201 0.33720702 0.31159201\n\t\t 0.33720702 0.31159201 0.33720702 0.303029 0.33686399 0.303029 0.33686399 0.303029\n\t\t 0.33686399 0.303029 0.33686399 0.29922101 0.33697098 0.29922101 0.33697098 0.29922101\n\t\t 0.33697098 0.29486901 0.33743697 0.29486901 0.33743697 0.29486901 0.33743697 0.28842601\n\t\t 0.338413 0.28842601 0.338413 0.28842601 0.338413 0.28096101 0.34001398 0.359732 0.33566302\n\t\t 0.366593 0.33644098 0.359732 0.33566302 0.35325199 0.33490503 0.359732 0.33566302\n\t\t 0.35325199 0.33490503 0.346935 0.33461899 0.35325199 0.33490503 0.346935 0.33461899\n\t\t 0.34040901 0.334454 0.346935 0.33461899 0.34040901 0.334454 0.333478 0.334104 0.34040901\n\t\t 0.334454 0.333478 0.334104;\n\tsetAttr \".uvst[0].uvsp[6750:6999]\" 0.32618999 0.33388603 0.333478 0.334104 0.32618999\n\t\t 0.33388603 0.31165799 0.33372599 0.32618999 0.33388603 0.31165799 0.33372599 0.30317199\n\t\t 0.33267897 0.31165799 0.33372599 0.30317199 0.33267897 0.299413 0.33276898 0.30317199\n\t\t 0.33267897 0.299413 0.33276898 0.29506499 0.33337802 0.299413 0.33276898 0.29506499\n\t\t 0.33337802 0.28865901 0.33449 0.29506499 0.33337802 0.28865901 0.33449 0.28123799\n\t\t 0.33602798 0.28865901 0.33449 0.28123799 0.33602798 0.78797901 0.76759601 0.78797901\n\t\t 0.76759601 0.777188 0.76027703 0.78797901 0.76759601 0.74055898 0.81869799 0.74055898\n\t\t 0.81869799 0.777188 0.76027703 0.76702797 0.75399101 0.777188 0.76027703 0.67577797\n\t\t 0.74337804 0.70468599 0.75439602 0.69770801 0.76686203 0.69770801 0.76686203 0.67268401\n\t\t 0.75403297 0.67577797 0.74337804 0.67102098 0.75906503 0.67268401 0.75403297 0.69770801\n\t\t 0.76686203 0.69770801 0.76686203 0.694713 0.77121103 0.67102098 0.75906503 0.67102098\n\t\t 0.75906503 0.694713 0.77121103 0.69173598 0.775401 0.69173598 0.775401 0.66927898\n\t\t 0.76396 0.67102098 0.75906503 0.66754401 0.77038401 0.66927898 0.76396 0.69173598\n\t\t 0.775401 0.69173598 0.775401 0.68843102 0.78025603 0.66754401 0.77038401 0.66571498\n\t\t 0.77801001 0.66754401 0.77038401 0.68843102 0.78025603 0.68843102 0.78025603 0.68475997\n\t\t 0.785721 0.66571498 0.77801001 0.69770801 0.76686203 0.70468599 0.75439602 0.71644902\n\t\t 0.76859599 0.72211099 0.76863599 0.71644902 0.76859599 0.70468599 0.75439602 0.70468599\n\t\t 0.75439602 0.71394902 0.75905597 0.72211099 0.76863599 0.71644902 0.76859599 0.72211099\n\t\t 0.76863599 0.72964001 0.77766001 0.72964001 0.77766001 0.72534198 0.77907401 0.71644902\n\t\t 0.76859599 0.73386598 0.77551401 0.72964001 0.77766001 0.72211099 0.76863599 0.72211099\n\t\t 0.76863599 0.72849399 0.76988 0.73386598 0.77551401 0.72849399 0.76988 0.72211099\n\t\t 0.76863599 0.71394902 0.75905597 0.71394902 0.75905597 0.72291303 0.76353902 0.72849399\n\t\t 0.76988 0.72534198 0.77907401 0.72964001 0.77766001 0.74580902 0.800807 0.74580902\n\t\t 0.800807 0.72964001 0.77766001 0.73386598 0.77551401 0.74580902 0.800807 0.74243897\n\t\t 0.802616 0.72534198 0.77907401 0.73386598 0.77551401 0.74869901 0.79929197 0.74580902\n\t\t 0.800807 0.70846099 0.77534997 0.71644902 0.76859599 0.72534198 0.77907401 0.72534198\n\t\t 0.77907401 0.71725202 0.78435302 0.70846099 0.77534997 0.71725202 0.78435302 0.72534198\n\t\t 0.77907401 0.74243897 0.802616 0.71644902 0.76859599 0.70846099 0.77534997 0.69770801\n\t\t 0.76686203 0.70515698 0.77899599 0.70846099 0.77534997 0.71725202 0.78435302 0.71725202\n\t\t 0.78435302 0.71376503 0.78731102 0.70515698 0.77899599 0.70846099 0.77534997 0.70515698\n\t\t 0.77899599 0.694713 0.77121103 0.694713 0.77121103 0.69770801 0.76686203 0.70846099\n\t\t 0.77534997 0.69173598 0.775401 0.694713 0.77121103 0.70515698 0.77899599 0.70515698\n\t\t 0.77899599 0.70159602 0.78271103 0.69173598 0.775401 0.70159602 0.78271103 0.70515698\n\t\t 0.77899599 0.71376503 0.78731102 0.71376503 0.78731102 0.70974201 0.790595 0.70159602\n\t\t 0.78271103 0.69720203 0.78688401 0.70159602 0.78271103 0.70974201 0.790595 0.70974201\n\t\t 0.790595 0.70444 0.79423296 0.69720203 0.78688401 0.70159602 0.78271103 0.69720203\n\t\t 0.78688401 0.68843102 0.78025603 0.68843102 0.78025603 0.69173598 0.775401 0.70159602\n\t\t 0.78271103 0.68475997 0.785721 0.68843102 0.78025603 0.69720203 0.78688401 0.69720203\n\t\t 0.78688401 0.69216901 0.791399 0.68475997 0.785721 0.69216901 0.791399 0.69720203\n\t\t 0.78688401 0.70444 0.79423296 0.70444 0.79423296 0.698304 0.79806197 0.69216901 0.791399\n\t\t 0.71376503 0.78731102 0.71725202 0.78435302 0.734231 0.807473 0.74243897 0.802616\n\t\t 0.734231 0.807473 0.71725202 0.78435302 0.734231 0.807473 0.74243897 0.802616 0.74895102\n\t\t 0.81383801 0.74895102 0.81383801 0.74055898 0.81869799 0.734231 0.807473 0.74055898\n\t\t 0.81869799 0.74895102 0.81383801 0.76692402 0.85495502 0.76692402 0.85495502 0.758241\n\t\t 0.85911703 0.74055898 0.81869799 0.736507 0.82126403 0.74055898 0.81869799 0.758241\n\t\t 0.85911703 0.758241 0.85911703 0.754017 0.86081898 0.736507 0.82126403 0.736507 0.82126403\n\t\t 0.754017 0.86081898 0.74930102 0.86245799 0.74930102 0.86245799 0.73188502 0.82389998\n\t\t 0.736507 0.82126403 0.72604501 0.826554 0.73188502 0.82389998 0.74930102 0.86245799\n\t\t 0.74930102 0.86245799 0.743532 0.86421299 0.72604501 0.826554 0.71943301 0.82920504\n\t\t 0.72604501 0.826554 0.743532 0.86421299 0.743532 0.86421299 0.737041 0.86604798 0.71943301\n\t\t 0.82920504 0.758241 0.85911703 0.76692402 0.85495502 0.78192902 0.89236403 0.786053\n\t\t 0.88967597 0.78192902 0.89236403 0.76692402 0.85495502 0.76692402 0.85495502 0.77097797\n\t\t 0.85267603 0.786053 0.88967597 0.77097797 0.85267603 0.76692402 0.85495502 0.74895102\n\t\t 0.81383801 0.786053 0.88967597 0.77097797 0.85267603 0.77471602 0.85050201 0.77471602\n\t\t 0.85050201 0.78999501 0.887209 0.786053 0.88967597 0.78192902 0.89236403 0.77360201\n\t\t 0.89750803 0.758241 0.85911703 0.754017 0.86081898 0.758241 0.85911703 0.77360201\n\t\t 0.89750803 0.78282601 0.92086822 0.77360201 0.89750803 0.78192902 0.89236403 0.78192902\n\t\t 0.89236403 0.79089099 0.91462147 0.78282601 0.92086822 0.76952702 0.89951402 0.77360201\n\t\t 0.89750803 0.78282601 0.92086822 0.77360201 0.89750803 0.76952702 0.89951402 0.754017\n\t\t 0.86081898 0.78282601 0.92086822 0.778808 0.92331302 0.76952702 0.89951402 0.76952702\n\t\t 0.89951402 0.778808 0.92331302 0.77425599 0.92538118 0.77425599 0.92538118 0.764952\n\t\t 0.9012959 0.76952702 0.89951402 0.75941199 0.90303993 0.764952 0.9012959 0.77425599\n\t\t 0.92538118 0.764952 0.9012959;\n\tsetAttr \".uvst[0].uvsp[7000:7249]\" 0.75941199 0.90303993 0.743532 0.86421299\n\t\t 0.737041 0.86604798 0.743532 0.86421299 0.75941199 0.90303993 0.77425599 0.92538118\n\t\t 0.76876801 0.92721629 0.75941199 0.90303993 0.75321901 0.90486008 0.75941199 0.90303993\n\t\t 0.76876801 0.92721629 0.75941199 0.90303993 0.75321901 0.90486008 0.737041 0.86604798\n\t\t 0.76876801 0.92721629 0.76265502 0.92902589 0.75321901 0.90486008 0.754017 0.86081898\n\t\t 0.76952702 0.89951402 0.764952 0.9012959 0.764952 0.9012959 0.74930102 0.86245799\n\t\t 0.754017 0.86081898 0.743532 0.86421299 0.74930102 0.86245799 0.764952 0.9012959\n\t\t 0.793262 0.88526201 0.78999501 0.887209 0.77471602 0.85050201 0.798841 0.9088195\n\t\t 0.78999501 0.887209 0.793262 0.88526201 0.793262 0.88526201 0.80206698 0.90672368\n\t\t 0.798841 0.9088195 0.80518299 0.90490353 0.80206698 0.90672368 0.793262 0.88526201\n\t\t 0.793262 0.88526201 0.79715002 0.88535398 0.80518299 0.90490353 0.79715002 0.88535398\n\t\t 0.793262 0.88526201 0.77764899 0.84881198 0.77471602 0.85050201 0.77764899 0.84881198\n\t\t 0.793262 0.88526201 0.75785202 0.80897403 0.77764899 0.84881198 0.77471602 0.85050201\n\t\t 0.78039402 0.84726799 0.77764899 0.84881198 0.75785202 0.80897403 0.77764899 0.84881198\n\t\t 0.78039402 0.84726799 0.79715002 0.88535398 0.75785202 0.80897403 0.75787097 0.80440801\n\t\t 0.78039402 0.84726799 0.75305098 0.79684001 0.75787097 0.80440801 0.75785202 0.80897403\n\t\t 0.75785202 0.80897403 0.75098002 0.79805398 0.75305098 0.79684001 0.75098002 0.79805398\n\t\t 0.75785202 0.80897403 0.755557 0.81027603 0.77471602 0.85050201 0.755557 0.81027603\n\t\t 0.75785202 0.80897403 0.755557 0.81027603 0.74869901 0.79929197 0.75098002 0.79805398\n\t\t 0.75098002 0.79805398 0.73797798 0.77944803 0.75305098 0.79684001 0.73797798 0.77944803\n\t\t 0.75098002 0.79805398 0.74869901 0.79929197 0.786053 0.88967597 0.78999501 0.887209\n\t\t 0.798841 0.9088195 0.798841 0.9088195 0.79494202 0.91153789 0.786053 0.88967597 0.78192902\n\t\t 0.89236403 0.786053 0.88967597 0.79494202 0.91153789 0.79494202 0.91153789 0.79089099\n\t\t 0.91462147 0.78192902 0.89236403 0.74580902 0.800807 0.74869901 0.79929197 0.755557\n\t\t 0.81027603 0.755557 0.81027603 0.75252301 0.81188899 0.74580902 0.800807 0.75252301\n\t\t 0.81188899 0.755557 0.81027603 0.77471602 0.85050201 0.77471602 0.85050201 0.77097797\n\t\t 0.85267603 0.75252301 0.81188899 0.74895102 0.81383801 0.75252301 0.81188899 0.77097797\n\t\t 0.85267603 0.74243897 0.802616 0.74580902 0.800807 0.75252301 0.81188899 0.75252301\n\t\t 0.81188899 0.74895102 0.81383801 0.74243897 0.802616 0.74869901 0.79929197 0.73386598\n\t\t 0.77551401 0.73797798 0.77944803 0.65584201 0.686418 0.658198 0.67971599 0.69041097\n\t\t 0.68968797 0.69041097 0.68968797 0.68895 0.69676602 0.65584201 0.686418 0.65584201\n\t\t 0.686418 0.68895 0.69676602 0.68752301 0.703264 0.68752301 0.703264 0.65374202 0.69302404\n\t\t 0.65584201 0.686418 0.65218902 0.70011103 0.65374202 0.69302404 0.68752301 0.703264\n\t\t 0.68752301 0.703264 0.68613601 0.70950496 0.65218902 0.70011103 0.65218902 0.70011103\n\t\t 0.68613601 0.70950496 0.68469 0.71574497 0.68469 0.71574497 0.65119398 0.70758498\n\t\t 0.65218902 0.70011103 0.650666 0.71549499 0.65119398 0.70758498 0.68469 0.71574497\n\t\t 0.68469 0.71574497 0.68303001 0.72231996 0.650666 0.71549499 0.650666 0.71549499\n\t\t 0.68303001 0.72231996 0.68101698 0.72927296 0.68101698 0.72927296 0.65031898 0.72346699\n\t\t 0.650666 0.71549499 0.64950198 0.73832703 0.65031898 0.72346699 0.68101698 0.72927296\n\t\t 0.68101698 0.72927296 0.67577797 0.74337804 0.64950198 0.73832703 0.68895 0.69676602\n\t\t 0.69041097 0.68968797 0.72276199 0.700625 0.72276199 0.700625 0.720357 0.70786202\n\t\t 0.68895 0.69676602 0.718135 0.71444798 0.68752301 0.703264 0.68895 0.69676602 0.68895\n\t\t 0.69676602 0.720357 0.70786202 0.718135 0.71444798 0.68613601 0.70950496 0.68752301\n\t\t 0.703264 0.718135 0.71444798 0.718135 0.71444798 0.71609098 0.72041798 0.68613601\n\t\t 0.70950496 0.71408898 0.72621202 0.68469 0.71574497 0.68613601 0.70950496 0.68613601\n\t\t 0.70950496 0.71609098 0.72041798 0.71408898 0.72621202 0.68303001 0.72231996 0.68469\n\t\t 0.71574497 0.71408898 0.72621202 0.71408898 0.72621202 0.71185201 0.73260999 0.68303001\n\t\t 0.72231996 0.70931602 0.73957598 0.68101698 0.72927296 0.68303001 0.72231996 0.68303001\n\t\t 0.72231996 0.71185201 0.73260999 0.70931602 0.73957598 0.67577797 0.74337804 0.68101698\n\t\t 0.72927296 0.70931602 0.73957598 0.70931602 0.73957598 0.70468599 0.75439602 0.67577797\n\t\t 0.74337804 0.720357 0.70786202 0.72276199 0.700625 0.73556101 0.706011 0.73556101\n\t\t 0.706011 0.73258603 0.71310401 0.720357 0.70786202 0.718135 0.71444798 0.720357 0.70786202\n\t\t 0.73258603 0.71310401 0.73258603 0.71310401 0.73556101 0.706011 0.747383 0.71138096\n\t\t 0.747383 0.71138096 0.74387503 0.718247 0.73258603 0.71310401 0.74387503 0.718247\n\t\t 0.747383 0.71138096 0.75997502 0.71738696 0.75997502 0.71738696 0.75597203 0.72398996\n\t\t 0.74387503 0.718247 0.75597203 0.72398996 0.75997502 0.71738696 0.78422898 0.730398\n\t\t 0.78422898 0.730398 0.779324 0.73641396 0.75597203 0.72398996 0.740668 0.724572 0.74387503\n\t\t 0.718247 0.75597203 0.72398996 0.75597203 0.72398996 0.752303 0.73013401 0.740668\n\t\t 0.724572 0.752303 0.73013401 0.75597203 0.72398996 0.779324 0.73641396 0.779324 0.73641396\n\t\t 0.77481902 0.74211597 0.752303 0.73013401 0.748923 0.73612499 0.752303 0.73013401\n\t\t 0.77481902 0.74211597 0.77481902 0.74211597 0.770621 0.74796402 0.748923 0.73612499\n\t\t 0.752303 0.73013401 0.748923 0.73612499 0.73774999 0.73053098 0.73774999 0.73053098\n\t\t 0.740668 0.724572;\n\tsetAttr \".uvst[0].uvsp[7250:7499]\" 0.752303 0.73013401 0.735147 0.73638099 0.73774999\n\t\t 0.73053098 0.748923 0.73612499 0.748923 0.73612499 0.74593699 0.742176 0.735147 0.73638099\n\t\t 0.74593699 0.742176 0.748923 0.73612499 0.770621 0.74796402 0.770621 0.74796402 0.76702797\n\t\t 0.75399101 0.74593699 0.742176 0.74315798 0.74918902 0.74593699 0.742176 0.76702797\n\t\t 0.75399101 0.76702797 0.75399101 0.76373202 0.76112998 0.74315798 0.74918902 0.74593699\n\t\t 0.742176 0.74315798 0.74918902 0.732737 0.74271899 0.732737 0.74271899 0.735147 0.73638099\n\t\t 0.74593699 0.742176 0.72993797 0.74950999 0.732737 0.74271899 0.74315798 0.74918902\n\t\t 0.74315798 0.74918902 0.73968101 0.75602502 0.72993797 0.74950999 0.76373202 0.76112998\n\t\t 0.73968101 0.75602502 0.74315798 0.74918902 0.76373202 0.76112998 0.75130099 0.76655197\n\t\t 0.73968101 0.75602502 0.76373202 0.76112998 0.76023698 0.76960003 0.75130099 0.76655197\n\t\t 0.740668 0.724572 0.73774999 0.73053098 0.727395 0.72549301 0.72511703 0.73123896\n\t\t 0.727395 0.72549301 0.73774999 0.73053098 0.73774999 0.73053098 0.735147 0.73638099\n\t\t 0.72511703 0.73123896 0.727395 0.72549301 0.72511703 0.73123896 0.71408898 0.72621202\n\t\t 0.71408898 0.72621202 0.71609098 0.72041798 0.727395 0.72549301 0.72986299 0.719576\n\t\t 0.727395 0.72549301 0.71609098 0.72041798 0.727395 0.72549301 0.72986299 0.719576\n\t\t 0.740668 0.724572 0.74387503 0.718247 0.740668 0.724572 0.72986299 0.719576 0.72986299\n\t\t 0.719576 0.73258603 0.71310401 0.74387503 0.718247 0.73258603 0.71310401 0.72986299\n\t\t 0.719576 0.718135 0.71444798 0.71609098 0.72041798 0.718135 0.71444798 0.72986299\n\t\t 0.719576 0.71185201 0.73260999 0.71408898 0.72621202 0.72511703 0.73123896 0.72511703\n\t\t 0.73123896 0.72282302 0.73750103 0.71185201 0.73260999 0.735147 0.73638099 0.732737\n\t\t 0.74271899 0.72282302 0.73750103 0.72282302 0.73750103 0.72511703 0.73123896 0.735147\n\t\t 0.73638099 0.70931602 0.73957598 0.71185201 0.73260999 0.72282302 0.73750103 0.72282302\n\t\t 0.73750103 0.72025597 0.74436903 0.70931602 0.73957598 0.72025597 0.74436903 0.72282302\n\t\t 0.73750103 0.732737 0.74271899 0.732737 0.74271899 0.72993797 0.74950999 0.72025597\n\t\t 0.74436903 0.71394902 0.75905597 0.72025597 0.74436903 0.72993797 0.74950999 0.72993797\n\t\t 0.74950999 0.72291303 0.76353902 0.71394902 0.75905597 0.72025597 0.74436903 0.71394902\n\t\t 0.75905597 0.70468599 0.75439602 0.70468599 0.75439602 0.70931602 0.73957598 0.72025597\n\t\t 0.74436903 0.72927499 0.76345897 0.72291303 0.76353902 0.72993797 0.74950999 0.72993797\n\t\t 0.74950999 0.73968101 0.75602502 0.72927499 0.76345897 0.72927499 0.76345897 0.73968101\n\t\t 0.75602502 0.75130099 0.76655197 0.87712097 0.751674 0.87129903 0.74586797 0.891792\n\t\t 0.71633804 0.891792 0.71633804 0.89752901 0.72206402 0.87712097 0.751674 0.87712097\n\t\t 0.751674 0.89752901 0.72206402 0.90286702 0.72729301 0.90286702 0.72729301 0.88252699\n\t\t 0.75703698 0.87712097 0.751674 0.88792098 0.76201099 0.88252699 0.75703698 0.90286702\n\t\t 0.72729301 0.90286702 0.72729301 0.90804398 0.73217899 0.88792098 0.76201099 0.88792098\n\t\t 0.76201099 0.90804398 0.73217899 0.91332603 0.73685503 0.91332603 0.73685503 0.89355302\n\t\t 0.76656497 0.88792098 0.76201099 0.89967501 0.77072698 0.89355302 0.76656497 0.91332603\n\t\t 0.73685503 0.91332603 0.73685503 0.91921002 0.74133801 0.89967501 0.77072698 0.89967501\n\t\t 0.77072698 0.91921002 0.74133801 0.925385 0.74544704 0.925385 0.74544704 0.90535402\n\t\t 0.77438903 0.89967501 0.77072698 0.91239899 0.77969998 0.90535402 0.77438903 0.925385\n\t\t 0.74544704 0.925385 0.74544704 0.93699098 0.75178099 0.91239899 0.77969998 0.91805702\n\t\t 0.782637 0.91239899 0.77969998 0.93699098 0.75178099 0.93699098 0.75178099 0.94062102\n\t\t 0.758986 0.91805702 0.782637 0.92219198 0.78398299 0.91805702 0.782637 0.94062102\n\t\t 0.758986 0.94062102 0.758986 0.94390601 0.76179099 0.92219198 0.78398299 0.92219198\n\t\t 0.78398299 0.94390601 0.76179099 0.94814402 0.76462102 0.94814402 0.76462102 0.92685002\n\t\t 0.78554797 0.92219198 0.78398299 0.88792098 0.76201099 0.89355302 0.76656497 0.88683897\n\t\t 0.77703702 0.89355302 0.76656497 0.89967501 0.77072698 0.89301002 0.78116399 0.89301002\n\t\t 0.78116399 0.88683897 0.77703702 0.89355302 0.76656497 0.88683897 0.77703702 0.89301002\n\t\t 0.78116399 0.88791603 0.78913403 0.88791603 0.78913403 0.881688 0.78491598 0.88683897\n\t\t 0.77703702 0.88114101 0.77245098 0.88683897 0.77703702 0.881688 0.78491598 0.881688\n\t\t 0.78491598 0.87595499 0.78020203 0.88114101 0.77245098 0.87567699 0.76740801 0.88114101\n\t\t 0.77245098 0.87595499 0.78020203 0.88114101 0.77245098 0.87567699 0.76740801 0.88252699\n\t\t 0.75703698 0.87712097 0.751674 0.88252699 0.75703698 0.87567699 0.76740801 0.87567699\n\t\t 0.76740801 0.87024403 0.76201499 0.87712097 0.751674 0.87129903 0.74586797 0.87712097\n\t\t 0.751674 0.87024403 0.76201499 0.87024403 0.76201499 0.86438298 0.756226 0.87129903\n\t\t 0.74586797 0.86438298 0.756226 0.87024403 0.76201499 0.86508203 0.76956797 0.86508203\n\t\t 0.76956797 0.85924298 0.76371598 0.86438298 0.756226 0.87049901 0.775051 0.86508203\n\t\t 0.76956797 0.87024403 0.76201499 0.87024403 0.76201499 0.87567699 0.76740801 0.87049901\n\t\t 0.775051 0.87595499 0.78020203 0.87049901 0.775051 0.87567699 0.76740801 0.88252699\n\t\t 0.75703698 0.88792098 0.76201099 0.88114101 0.77245098 0.88683897 0.77703702 0.88114101\n\t\t 0.77245098 0.88792098 0.76201099 0.89208603 0.791682 0.88791603 0.78913403 0.89301002\n\t\t 0.78116399 0.89301002 0.78116399 0.89798301 0.78530902 0.89208603 0.791682 0.88724399\n\t\t 0.80595201 0.89208603 0.791682 0.89798301 0.78530902 0.89798301 0.78530902 0.89910102\n\t\t 0.79362899 0.88724399 0.80595201;\n\tsetAttr \".uvst[0].uvsp[7500:7749]\" 0.90455699 0.797185 0.88724399 0.80595201\n\t\t 0.89910102 0.79362899 0.89910102 0.79362899 0.90924299 0.79165 0.90455699 0.797185\n\t\t 0.90924299 0.79165 0.89910102 0.79362899 0.91239899 0.77969998 0.91239899 0.77969998\n\t\t 0.91805702 0.782637 0.90924299 0.79165 0.91428 0.79220098 0.90924299 0.79165 0.91805702\n\t\t 0.782637 0.91805702 0.782637 0.92219198 0.78398299 0.91428 0.79220098 0.90924299\n\t\t 0.79165 0.91428 0.79220098 0.90754598 0.79882401 0.90754598 0.79882401 0.90455699\n\t\t 0.797185 0.90924299 0.79165 0.91276598 0.80048501 0.90754598 0.79882401 0.91428 0.79220098\n\t\t 0.91428 0.79220098 0.919168 0.79361701 0.91276598 0.80048501 0.919168 0.79361701\n\t\t 0.91428 0.79220098 0.92219198 0.78398299 0.92219198 0.78398299 0.92685002 0.78554797\n\t\t 0.919168 0.79361701 0.90535402 0.77438903 0.91239899 0.77969998 0.89910102 0.79362899\n\t\t 0.89910102 0.79362899 0.89798301 0.78530902 0.90535402 0.77438903 0.89967501 0.77072698\n\t\t 0.90535402 0.77438903 0.89798301 0.78530902 0.89798301 0.78530902 0.89301002 0.78116399\n\t\t 0.89967501 0.77072698 0.89473999 0.80930901 0.88724399 0.80595201 0.90455699 0.797185\n\t\t 0.90455699 0.797185 0.90754598 0.79882401 0.89473999 0.80930901 0.89473999 0.80930901\n\t\t 0.90754598 0.79882401 0.91276598 0.80048501 0.91276598 0.80048501 0.90114403 0.812114\n\t\t 0.89473999 0.80930901 0.90628302 0.81466299 0.90114403 0.812114 0.91276598 0.80048501\n\t\t 0.91276598 0.80048501 0.91789699 0.80294096 0.90628302 0.81466299 0.91789699 0.80294096\n\t\t 0.91276598 0.80048501 0.919168 0.79361701 0.91123998 0.81746298 0.90628302 0.81466299\n\t\t 0.91789699 0.80294096 0.91789699 0.80294096 0.92321098 0.80601799 0.91123998 0.81746298\n\t\t 0.92425799 0.79599297 0.919168 0.79361701 0.92685002 0.78554797 0.919168 0.79361701\n\t\t 0.92425799 0.79599297 0.91789699 0.80294096 0.92321098 0.80601799 0.91789699 0.80294096\n\t\t 0.92425799 0.79599297 0.92685002 0.78554797 0.93194801 0.78809297 0.92425799 0.79599297\n\t\t 0.93194801 0.78809297 0.92685002 0.78554797 0.94814402 0.76462102 0.94814402 0.76462102\n\t\t 0.95362401 0.76858997 0.93194801 0.78809297 0.95362401 0.76858997 0.94814402 0.76462102\n\t\t 0.96746999 0.74599802 0.96746999 0.74599802 0.94814402 0.76462102 0.94390601 0.76179099\n\t\t 0.94390601 0.76179099 0.963507 0.742558 0.96746999 0.74599802 0.96025699 0.73934603\n\t\t 0.963507 0.742558 0.94390601 0.76179099 0.94390601 0.76179099 0.94062102 0.758986\n\t\t 0.96025699 0.73934603 0.95528698 0.73331404 0.96025699 0.73934603 0.94062102 0.758986\n\t\t 0.94062102 0.758986 0.93699098 0.75178099 0.95528698 0.73331404 0.95528698 0.73331404\n\t\t 0.93699098 0.75178099 0.925385 0.74544704 0.925385 0.74544704 0.94436598 0.72334003\n\t\t 0.95528698 0.73331404 0.94436598 0.72334003 0.925385 0.74544704 0.91921002 0.74133801\n\t\t 0.91921002 0.74133801 0.93821698 0.71844602 0.94436598 0.72334003 0.93193197 0.71383601\n\t\t 0.93821698 0.71844602 0.91921002 0.74133801 0.91921002 0.74133801 0.91332603 0.73685503\n\t\t 0.93193197 0.71383601 0.93193197 0.71383601 0.91332603 0.73685503 0.90804398 0.73217899\n\t\t 0.90804398 0.73217899 0.92576897 0.70965701 0.93193197 0.71383601 0.91958201 0.70582604\n\t\t 0.92576897 0.70965701 0.90804398 0.73217899 0.90804398 0.73217899 0.90286702 0.72729301\n\t\t 0.91958201 0.70582604 0.91958201 0.70582604 0.90286702 0.72729301 0.89752901 0.72206402\n\t\t 0.89752901 0.72206402 0.91357797 0.70224404 0.91958201 0.70582604 0.90739501 0.69851804\n\t\t 0.91357797 0.70224404 0.89752901 0.72206402 0.89752901 0.72206402 0.891792 0.71633804\n\t\t 0.90739501 0.69851804 0.36241001 0.44191003 0.36680901 0.44849902 0.36453 0.449857\n\t\t 0.36453 0.449857 0.360156 0.443398 0.36241001 0.44191003 0.36241001 0.44191003 0.360156\n\t\t 0.443398 0.35595599 0.43779403 0.35595599 0.43779403 0.35802701 0.43600398 0.36241001\n\t\t 0.44191003 0.35308799 0.43110502 0.35802701 0.43600398 0.35595599 0.43779403 0.35595599\n\t\t 0.43779403 0.35148999 0.433348 0.35308799 0.43110502 0.35308799 0.43110502 0.35148999\n\t\t 0.433348 0.34633401 0.43045998 0.34633401 0.43045998 0.34706199 0.42780298 0.35308799\n\t\t 0.43110502 0.340094 0.42698097 0.34706199 0.42780298 0.34633401 0.43045998 0.34633401\n\t\t 0.43045998 0.340523 0.429699 0.340094 0.42698097 0.340094 0.42698097 0.340523 0.429699\n\t\t 0.33470401 0.431575 0.33470401 0.431575 0.333202 0.42925698 0.340094 0.42698097 0.32758099\n\t\t 0.43408197 0.333202 0.42925698 0.33470401 0.431575 0.33470401 0.431575 0.32975399\n\t\t 0.43580198 0.32758099 0.43408197 0.32758099 0.43408197 0.32975399 0.43580198 0.32630301\n\t\t 0.440952 0.32630301 0.440952 0.32384399 0.43968397 0.32758099 0.43408197 0.321646\n\t\t 0.44448102 0.32384399 0.43968397 0.32630301 0.440952 0.32630301 0.440952 0.32420599\n\t\t 0.44552398 0.321646 0.44448102 0.321646 0.44448102 0.32420599 0.44552398 0.32242\n\t\t 0.45012301 0.32242 0.45012301 0.319828 0.44915998 0.321646 0.44448102 0.67577797\n\t\t 0.74337804 0.67268401 0.75403297 0.64778 0.74552399 0.64778 0.74552399 0.64967299\n\t\t 0.73757398 0.67577797 0.74337804 0.64719099 0.74952102 0.64778 0.74552399 0.67268401\n\t\t 0.75403297 0.67268401 0.75403297 0.67102098 0.75906503 0.64719099 0.74952102 0.64719099\n\t\t 0.74952102 0.67102098 0.75906503 0.66927898 0.76396 0.66927898 0.76396 0.64654398\n\t\t 0.75409198 0.64719099 0.74952102 0.64537102 0.76081002 0.64654398 0.75409198 0.66927898\n\t\t 0.76396 0.66927898 0.76396 0.66754401 0.77038401 0.64537102 0.76081002 0.64537102\n\t\t 0.76081002 0.66754401 0.77038401 0.66754401 0.77038401 0.66571498 0.77801001 0.96746999\n\t\t 0.74599802 0.97310603 0.75043499 0.95362401 0.76858997 0.95999599 0.77338398 0.95362401\n\t\t 0.76858997 0.97310603 0.75043499;\n\tsetAttr \".uvst[0].uvsp[7750:7999]\" 0.97310603 0.75043499 0.95999599 0.77338398\n\t\t 0.95362401 0.76858997 0.95999599 0.77338398 0.93750799 0.79137301 0.93750799 0.79137301\n\t\t 0.93194801 0.78809297 0.95362401 0.76858997 0.93194801 0.78809297 0.93750799 0.79137301\n\t\t 0.92966503 0.79906499 0.92966503 0.79906499 0.92425799 0.79599297 0.93194801 0.78809297\n\t\t 0.92425799 0.79599297 0.92966503 0.79906499 0.92321098 0.80601799 0.36131099 0.43537301\n\t\t 0.35639799 0.42842603 0.360742 0.42540002 0.360742 0.42540002 0.36569101 0.43243301\n\t\t 0.36131099 0.43537301 0.36569101 0.43243301 0.360742 0.42540002 0.36308599 0.42376101\n\t\t 0.36308599 0.42376101 0.36771801 0.43074399 0.36569101 0.43243301 0.37026501 0.42819202\n\t\t 0.36771801 0.43074399 0.36308599 0.42376101 0.36771801 0.43074399 0.37026501 0.42819202\n\t\t 0.37476 0.43420601 0.37476 0.43420601 0.37238601 0.43692899 0.36771801 0.43074399\n\t\t 0.37238601 0.43692899 0.37476 0.43420601 0.37990099 0.43919897 0.37990099 0.43919897\n\t\t 0.37773299 0.44216001 0.37238601 0.43692899 0.37773299 0.44216001 0.37990099 0.43919897\n\t\t 0.385526 0.44341201 0.385526 0.44341201 0.383551 0.44662201 0.37773299 0.44216001\n\t\t 0.383551 0.44662201 0.385526 0.44341201 0.39164799 0.44689298 0.39164799 0.44689298\n\t\t 0.38996899 0.45029199 0.383551 0.44662201 0.38996899 0.45029199 0.39164799 0.44689298\n\t\t 0.398359 0.44951302 0.398359 0.44951302 0.39715201 0.45304298 0.38996899 0.45029199\n\t\t 0.39715201 0.45304298 0.398359 0.44951302 0.40557599 0.45126897 0.40557599 0.45126897\n\t\t 0.40497601 0.45485598 0.39715201 0.45304298 0.40497601 0.45485598 0.40557599 0.45126897\n\t\t 0.412384 0.45220298 0.412384 0.45220298 0.41238299 0.45585102 0.40497601 0.45485598\n\t\t 0.41238299 0.45585102 0.412384 0.45220298 0.41780701 0.45176202 0.41780701 0.45176202\n\t\t 0.418246 0.45545501 0.41238299 0.45585102 0.418246 0.45545501 0.41780701 0.45176202\n\t\t 0.422685 0.45049298 0.422685 0.45049298 0.423729 0.45421702 0.418246 0.45545501 0.418246\n\t\t 0.45545501 0.423729 0.45421702 0.42436999 0.45724702 0.42436999 0.45724702 0.41855401\n\t\t 0.45811802 0.418246 0.45545501 0.41855401 0.45811802 0.42436999 0.45724702 0.41855401\n\t\t 0.45811802 0.41241401 0.45843899 0.41238299 0.45585102 0.418246 0.45545501 0.418246\n\t\t 0.45545501 0.41855401 0.45811802 0.41241401 0.45843899 0.40497601 0.45485598 0.41238299\n\t\t 0.45585102 0.41241401 0.45843899 0.41241401 0.45843899 0.41855401 0.45811802 0.418782\n\t\t 0.46344101 0.418782 0.46344101 0.41256899 0.463696 0.41241401 0.45843899 0.41241401\n\t\t 0.45843899 0.40461901 0.45752603 0.40497601 0.45485598 0.404163 0.46289903 0.40461901\n\t\t 0.45752603 0.41241401 0.45843899 0.41241401 0.45843899 0.412081 0.46369499 0.404163\n\t\t 0.46289903 0.396415 0.45562297 0.40461901 0.45752603 0.40382099 0.462861 0.40382099\n\t\t 0.462861 0.395441 0.46095502 0.396415 0.45562297 0.40497601 0.45485598 0.40461901\n\t\t 0.45752603 0.396415 0.45562297 0.396415 0.45562297 0.39715201 0.45304298 0.40497601\n\t\t 0.45485598 0.38996899 0.45029199 0.39715201 0.45304298 0.396415 0.45562297 0.396415\n\t\t 0.45562297 0.38891301 0.45273501 0.38996899 0.45029199 0.387187 0.45788503 0.38891301\n\t\t 0.45273501 0.396415 0.45562297 0.396415 0.45562297 0.39497399 0.46085602 0.387187\n\t\t 0.45788503 0.38996899 0.45029199 0.38891301 0.45273501 0.38218501 0.44893003 0.38218501\n\t\t 0.44893003 0.38891301 0.45273501 0.38672799 0.45771301 0.38672799 0.45771301 0.37968501\n\t\t 0.45373398 0.38218501 0.44893003 0.38218501 0.44893003 0.383551 0.44662201 0.38996899\n\t\t 0.45029199 0.37773299 0.44216001 0.383551 0.44662201 0.38218501 0.44893003 0.38218501\n\t\t 0.44893003 0.37610701 0.44423002 0.37773299 0.44216001 0.37284201 0.44851297 0.37610701\n\t\t 0.44423002 0.38218501 0.44893003 0.38218501 0.44893003 0.37918201 0.45343399 0.37284201\n\t\t 0.44851297 0.37773299 0.44216001 0.37610701 0.44423002 0.37057501 0.43873101 0.37057501\n\t\t 0.43873101 0.37610701 0.44423002 0.37245601 0.44817603 0.37245601 0.44817603 0.36677799\n\t\t 0.44241399 0.37057501 0.43873101 0.37057501 0.43873101 0.37238601 0.43692899 0.37773299\n\t\t 0.44216001 0.36771801 0.43074399 0.37238601 0.43692899 0.37057501 0.43873101 0.37057501\n\t\t 0.43873101 0.36569101 0.43243301 0.36771801 0.43074399 0.36143801 0.43557203 0.36569101\n\t\t 0.43243301 0.37057501 0.43873101 0.37057501 0.43873101 0.36644 0.44200402 0.36143801\n\t\t 0.43557203 0.362984 0.41592801 0.361415 0.41247898 0.36860001 0.40933698 0.36860001\n\t\t 0.40933698 0.369436 0.41290998 0.362984 0.41592801 0.361415 0.41247898 0.362984 0.41592801\n\t\t 0.356525 0.42022699 0.356525 0.42022699 0.35431299 0.41702402 0.361415 0.41247898\n\t\t 0.369436 0.41290998 0.36860001 0.40933698 0.376187 0.40882099 0.376187 0.40882099\n\t\t 0.376059 0.41232902 0.369436 0.41290998 0.376059 0.41232902 0.376187 0.40882099 0.383425\n\t\t 0.41059601 0.383425 0.41059601 0.38234299 0.41385001 0.376059 0.41232902 0.38234299\n\t\t 0.41385001 0.383425 0.41059601 0.38973701 0.414626 0.38973701 0.414626 0.38786 0.417364\n\t\t 0.38234299 0.41385001 0.38786 0.417364 0.38973701 0.414626 0.394945 0.42039901 0.394945\n\t\t 0.42039901 0.39239901 0.422391 0.38786 0.417364 0.39239901 0.422391 0.394945 0.42039901\n\t\t 0.39860901 0.42765802 0.39860901 0.42765802 0.395551 0.42863399 0.39239901 0.422391\n\t\t 0.395551 0.42863399 0.39860901 0.42765802 0.40051499 0.43499899 0.40051499 0.43499899\n\t\t 0.39711499 0.43489403 0.395551 0.42863399 0.39711499 0.43489403 0.40051499 0.43499899\n\t\t 0.400105 0.44094902 0.400105 0.44094902 0.39662799 0.43997198 0.39711499 0.43489403\n\t\t 0.39662799 0.43997198 0.400105 0.44094902 0.39845899 0.446374 0.39845899 0.446374\n\t\t 0.39505899 0.44461602;\n\tsetAttr \".uvst[0].uvsp[8000:8249]\" 0.39662799 0.43997198 0.85536897 0.784109\n\t\t 0.84981298 0.77785802 0.85173303 0.77495801 0.85173303 0.77495801 0.85741699 0.78103602\n\t\t 0.85536897 0.784109 0.85536897 0.784109 0.85741699 0.78103602 0.86271298 0.786744\n\t\t 0.86271298 0.786744 0.86053997 0.790003 0.85536897 0.784109 0.86581302 0.795623 0.86053997\n\t\t 0.790003 0.86271298 0.786744 0.86271298 0.786744 0.86809301 0.79213798 0.86581302\n\t\t 0.795623 0.86581302 0.795623 0.86809301 0.79213798 0.873842 0.79699802 0.873842 0.79699802\n\t\t 0.87148798 0.80066299 0.86581302 0.795623 0.87763202 0.80512202 0.87148798 0.80066299\n\t\t 0.873842 0.79699802 0.873842 0.79699802 0.88001603 0.80139899 0.87763202 0.80512202\n\t\t 0.87763202 0.80512202 0.88001603 0.80139899 0.88724399 0.80595201 0.88724399 0.80595201\n\t\t 0.88442099 0.80918097 0.87763202 0.80512202 0.89188099 0.81279999 0.88442099 0.80918097\n\t\t 0.88724399 0.80595201 0.88724399 0.80595201 0.89473999 0.80930901 0.89188099 0.81279999\n\t\t 0.89188099 0.81279999 0.89473999 0.80930901 0.90114403 0.812114 0.90114403 0.812114\n\t\t 0.89892399 0.81596398 0.89188099 0.81279999 0.90440798 0.81848699 0.89892399 0.81596398\n\t\t 0.90114403 0.812114 0.90114403 0.812114 0.90628302 0.81466299 0.90440798 0.81848699\n\t\t 0.90440798 0.81848699 0.90628302 0.81466299 0.91123998 0.81746298 0.91123998 0.81746298\n\t\t 0.90946698 0.82100099 0.90440798 0.81848699 0.881688 0.78491598 0.873842 0.79699802\n\t\t 0.86809301 0.79213798 0.88001603 0.80139899 0.873842 0.79699802 0.881688 0.78491598\n\t\t 0.86809301 0.79213798 0.87595499 0.78020203 0.881688 0.78491598 0.881688 0.78491598\n\t\t 0.88791603 0.78913403 0.88001603 0.80139899 0.88724399 0.80595201 0.88001603 0.80139899\n\t\t 0.88791603 0.78913403 0.88791603 0.78913403 0.89208603 0.791682 0.88724399 0.80595201\n\t\t 0.87049901 0.775051 0.87595499 0.78020203 0.86809301 0.79213798 0.86809301 0.79213798\n\t\t 0.86271298 0.786744 0.87049901 0.775051 0.87049901 0.775051 0.86271298 0.786744 0.85741699\n\t\t 0.78103602 0.85741699 0.78103602 0.86508203 0.76956797 0.87049901 0.775051 0.85924298\n\t\t 0.76371598 0.86508203 0.76956797 0.85741699 0.78103602 0.85741699 0.78103602 0.85173303\n\t\t 0.77495801 0.85924298 0.76371598 0.0126266 0.42740601 0.00350849 0.42737299 0.00332964\n\t\t 0.40049398 0.00332964 0.40049398 0.0124612 0.400047 0.0126266 0.42740601 0.0126266\n\t\t 0.42740601 0.0124612 0.400047 0.0209879 0.39975202 0.0209879 0.39975202 0.0211304\n\t\t 0.42756599 0.0126266 0.42740601 0.0294233 0.42797601 0.0211304 0.42756599 0.0209879\n\t\t 0.39975202 0.0209879 0.39975202 0.029299701 0.39974999 0.0294233 0.42797601 0.0294233\n\t\t 0.42797601 0.029299701 0.39974999 0.037474401 0.400006 0.037474401 0.400006 0.039730199\n\t\t 0.43258297 0.0294233 0.42797601 0.046256602 0.43193501 0.039730199 0.43258297 0.037474401\n\t\t 0.400006 0.037474401 0.400006 0.0456695 0.40037698 0.046256602 0.43193501 0.046256602\n\t\t 0.43193501 0.0456695 0.40037698 0.054192599 0.40086401 0.054192599 0.40086401 0.054788601\n\t\t 0.43236101 0.046256602 0.43193501 0.063668899 0.43262398 0.054788601 0.43236101 0.054192599\n\t\t 0.40086401 0.054192599 0.40086401 0.063068002 0.40139502 0.063668899 0.43262398 0.063668899\n\t\t 0.43262398 0.063068002 0.40139502 0.0713218 0.40182 0.0713218 0.40182 0.071921296\n\t\t 0.43277198 0.063668899 0.43262398 0.078403696 0.43286002 0.071921296 0.43277198 0.0713218\n\t\t 0.40182 0.0713218 0.40182 0.077805303 0.401999 0.078403696 0.43286002 0.078403696\n\t\t 0.43286002 0.077805303 0.401999 0.083960898 0.40204602 0.083960898 0.40204602 0.084559597\n\t\t 0.43290699 0.078403696 0.43286002 0.0296878 0.43888903 0.0294233 0.42797601 0.039730199\n\t\t 0.43258297 0.039730199 0.43258297 0.038358301 0.43954301 0.0296878 0.43888903 0.0294233\n\t\t 0.42797601 0.0296878 0.43888903 0.0213759 0.43843102 0.0213759 0.43843102 0.0211304\n\t\t 0.42756599 0.0294233 0.42797601 0.0211304 0.42756599 0.0213759 0.43843102 0.0128481\n\t\t 0.438209 0.0128481 0.438209 0.0126266 0.42740601 0.0211304 0.42756599 0.0126266 0.42740601\n\t\t 0.0128481 0.438209 0.0037209 0.43811601 0.0037209 0.43811601 0.00350849 0.42737299\n\t\t 0.0126266 0.42740601 0.36308599 0.42376101 0.36596999 0.42155403 0.37026501 0.42819202\n\t\t 0.359732 0.33566302 0.366593 0.33644098 0.365859 0.34005898 0.365859 0.34005898 0.35919201\n\t\t 0.33956999 0.359732 0.33566302 0.359732 0.33566302 0.35919201 0.33956999 0.35281399\n\t\t 0.33902901 0.35281399 0.33902901 0.35325199 0.33490503 0.359732 0.33566302 0.346935\n\t\t 0.33461899 0.35325199 0.33490503 0.35281399 0.33902901 0.35281399 0.33902901 0.34651101\n\t\t 0.338651 0.346935 0.33461899 0.346935 0.33461899 0.34651101 0.338651 0.339993 0.33843702\n\t\t 0.339993 0.33843702 0.34040901 0.334454 0.346935 0.33461899 0.333478 0.334104 0.34040901\n\t\t 0.334454 0.339993 0.33843702 0.339993 0.33843702 0.33309501 0.338135 0.333478 0.334104\n\t\t 0.333478 0.334104 0.33309501 0.338135 0.32587701 0.33796901 0.32587701 0.33796901\n\t\t 0.32618999 0.33388603 0.333478 0.334104 0.31165799 0.33372599 0.32618999 0.33388603\n\t\t 0.32587701 0.33796901 0.32587701 0.33796901 0.31159201 0.33720702 0.31165799 0.33372599\n\t\t 0.30317199 0.33267897 0.31165799 0.33372599 0.31159201 0.33720702 0.31159201 0.33720702\n\t\t 0.303029 0.33686399 0.30317199 0.33267897 0.299413 0.33276898 0.30317199 0.33267897\n\t\t 0.303029 0.33686399 0.303029 0.33686399 0.29922101 0.33697098 0.299413 0.33276898\n\t\t 0.299413 0.33276898 0.29922101 0.33697098 0.29486901 0.33743697 0.29486901 0.33743697\n\t\t 0.29506499 0.33337802 0.299413 0.33276898 0.28865901 0.33449 0.29506499 0.33337802\n\t\t 0.29486901 0.33743697 0.29486901 0.33743697 0.28842601 0.338413 0.28865901 0.33449;\n\tsetAttr \".uvst[0].uvsp[8250:8499]\" 0.28865901 0.33449 0.28842601 0.338413 0.28096101\n\t\t 0.34001398 0.28096101 0.34001398 0.28123799 0.33602798 0.28865901 0.33449 0.35919201\n\t\t 0.33956999 0.35877299 0.34179699 0.352496 0.34129399 0.352496 0.34129399 0.35281399\n\t\t 0.33902901 0.35919201 0.33956999 0.35877299 0.34179699 0.35919201 0.33956999 0.365859\n\t\t 0.34005898 0.365859 0.34005898 0.365749 0.34223503 0.35877299 0.34179699 0.35281399\n\t\t 0.33902901 0.352496 0.34129399 0.34636801 0.34085399 0.34636801 0.34085399 0.34651101\n\t\t 0.338651 0.35281399 0.33902901 0.34651101 0.338651 0.34636801 0.34085399 0.33997399\n\t\t 0.34068698 0.33997399 0.34068698 0.339993 0.33843702 0.34651101 0.338651 0.339993\n\t\t 0.33843702 0.33997399 0.34068698 0.33313301 0.34036797 0.33313301 0.34036797 0.33309501\n\t\t 0.338135 0.339993 0.33843702 0.33309501 0.338135 0.33313301 0.34036797 0.325993 0.34028703\n\t\t 0.325993 0.34028703 0.32587701 0.33796901 0.33309501 0.338135 0.31159201 0.33720702\n\t\t 0.32587701 0.33796901 0.325993 0.34028703 0.325993 0.34028703 0.311652 0.33906502\n\t\t 0.31159201 0.33720702 0.303029 0.33686399 0.31159201 0.33720702 0.311652 0.33906502\n\t\t 0.311652 0.33906502 0.303065 0.33916199 0.303029 0.33686399 0.303029 0.33686399 0.303065\n\t\t 0.33916199 0.29948401 0.33897901 0.29948401 0.33897901 0.29922101 0.33697098 0.303029\n\t\t 0.33686399 0.29922101 0.33697098 0.29948401 0.33897901 0.29526201 0.33947998 0.29526201\n\t\t 0.33947998 0.29486901 0.33743697 0.29922101 0.33697098 0.29486901 0.33743697 0.29526201\n\t\t 0.33947998 0.288856 0.34043598 0.288856 0.34043598 0.28842601 0.338413 0.29486901\n\t\t 0.33743697 0.28842601 0.338413 0.288856 0.34043598 0.28114799 0.34245199 0.28114799\n\t\t 0.34245199 0.28096101 0.34001398 0.28842601 0.338413 0.359732 0.33566302 0.35980999\n\t\t 0.33343101 0.36690301 0.33428901 0.36690301 0.33428901 0.366593 0.33644098 0.359732\n\t\t 0.33566302 0.35980999 0.33343101 0.359732 0.33566302 0.35325199 0.33490503 0.35325199\n\t\t 0.33490503 0.35341999 0.33251798 0.35980999 0.33343101 0.35341999 0.33251798 0.35325199\n\t\t 0.33490503 0.346935 0.33461899 0.346935 0.33461899 0.34715101 0.33240801 0.35341999\n\t\t 0.33251798 0.34715101 0.33240801 0.346935 0.33461899 0.34040901 0.334454 0.34040901\n\t\t 0.334454 0.34065101 0.33232403 0.34715101 0.33240801 0.34065101 0.33232403 0.34040901\n\t\t 0.334454 0.333478 0.334104 0.333478 0.334104 0.333711 0.33181602 0.34065101 0.33232403\n\t\t 0.333711 0.33181602 0.333478 0.334104 0.32618999 0.33388603 0.32618999 0.33388603\n\t\t 0.32646799 0.33158898 0.333711 0.33181602 0.32646799 0.33158898 0.32618999 0.33388603\n\t\t 0.31165799 0.33372599 0.31165799 0.33372599 0.31199601 0.331788 0.32646799 0.33158898\n\t\t 0.31199601 0.331788 0.31165799 0.33372599 0.30317199 0.33267897 0.30317199 0.33267897\n\t\t 0.30329701 0.33034801 0.31199601 0.331788 0.30329701 0.33034801 0.30317199 0.33267897\n\t\t 0.299413 0.33276898 0.299413 0.33276898 0.299485 0.33060199 0.30329701 0.33034801\n\t\t 0.299485 0.33060199 0.299413 0.33276898 0.29506499 0.33337802 0.29506499 0.33337802\n\t\t 0.29502901 0.33122098 0.299485 0.33060199 0.29502901 0.33122098 0.29506499 0.33337802\n\t\t 0.28865901 0.33449 0.28865901 0.33449 0.288495 0.33230901 0.29502901 0.33122098 0.288495\n\t\t 0.33230901 0.28865901 0.33449 0.28123799 0.33602798 0.28123799 0.33602798 0.28064501\n\t\t 0.33384198 0.288495 0.33230901 0.82181799 0.757285 0.81567401 0.76210403 0.80227399\n\t\t 0.75118101 0.80227399 0.75118101 0.80801201 0.745906 0.82181799 0.757285 0.80801201\n\t\t 0.745906 0.80227399 0.75118101 0.79053402 0.74322301 0.79053402 0.74322301 0.79585701\n\t\t 0.73753297 0.80801201 0.745906 0.78565001 0.74867797 0.79053402 0.74322301 0.80227399\n\t\t 0.75118101 0.80227399 0.75118101 0.797068 0.75631398 0.78565001 0.74867797 0.797068\n\t\t 0.75631398 0.80227399 0.75118101 0.81567401 0.76210403 0.81567401 0.76210403 0.81016499\n\t\t 0.76697302 0.797068 0.75631398 0.79222399 0.76190001 0.797068 0.75631398 0.81016499\n\t\t 0.76697302 0.81016499 0.76697302 0.805035 0.772515 0.79222399 0.76190001 0.797068\n\t\t 0.75631398 0.79222399 0.76190001 0.78109998 0.75442302 0.78109998 0.75442302 0.78565001\n\t\t 0.74867797 0.797068 0.75631398 0.777188 0.76027703 0.78109998 0.75442302 0.79222399\n\t\t 0.76190001 0.79222399 0.76190001 0.78797901 0.76759601 0.777188 0.76027703 0.78797901\n\t\t 0.76759601 0.79222399 0.76190001 0.805035 0.772515 0.805035 0.772515 0.80045801 0.77818799\n\t\t 0.78797901 0.76759601 0.78413701 0.77355701 0.78797901 0.76759601 0.80045801 0.77818799\n\t\t 0.80045801 0.77818799 0.79629302 0.783786 0.78413701 0.77355701 0.78797901 0.76759601\n\t\t 0.78413701 0.77355701 0.77369601 0.76675797 0.77369601 0.76675797 0.777188 0.76027703\n\t\t 0.78797901 0.76759601 0.76969498 0.773718 0.77369601 0.76675797 0.78413701 0.77355701\n\t\t 0.78413701 0.77355701 0.77990103 0.78025502 0.76969498 0.773718 0.77990103 0.78025502\n\t\t 0.78413701 0.77355701 0.79629302 0.783786 0.79629302 0.783786 0.79006302 0.78710699\n\t\t 0.77990103 0.78025502 0.82048798 0.78853798 0.805035 0.772515 0.81016499 0.76697302\n\t\t 0.81016499 0.76697302 0.82590699 0.78290403 0.82048798 0.78853798 0.82590699 0.78290403\n\t\t 0.81016499 0.76697302 0.81567401 0.76210403 0.81567401 0.76210403 0.83170003 0.778166\n\t\t 0.82590699 0.78290403 0.83170003 0.778166 0.81567401 0.76210403 0.82181799 0.757285\n\t\t 0.82181799 0.757285 0.838139 0.77367103 0.83170003 0.778166 0.84057599 0.79914904\n\t\t 0.82590699 0.78290403 0.83170003 0.778166 0.83170003 0.778166 0.84651399 0.794487\n\t\t 0.84057599 0.79914904 0.84651399 0.794487 0.83170003 0.778166 0.838139 0.77367103\n\t\t 0.838139 0.77367103;\n\tsetAttr \".uvst[0].uvsp[8500:8749]\" 0.85306197 0.79011601 0.84651399 0.794487\n\t\t 0.83499998 0.80484802 0.82048798 0.78853798 0.82590699 0.78290403 0.82590699 0.78290403\n\t\t 0.84057599 0.79914904 0.83499998 0.80484802 0.82048798 0.78853798 0.83499998 0.80484802\n\t\t 0.82995999 0.81073099 0.82995999 0.81073099 0.81560898 0.79432899 0.82048798 0.78853798\n\t\t 0.805035 0.772515 0.82048798 0.78853798 0.81560898 0.79432899 0.81560898 0.79432899\n\t\t 0.80045801 0.77818799 0.805035 0.772515 0.80045801 0.77818799 0.81560898 0.79432899\n\t\t 0.81129402 0.79971302 0.81129402 0.79971302 0.79629302 0.783786 0.80045801 0.77818799\n\t\t 0.79629302 0.783786 0.81129402 0.79971302 0.80670798 0.80526 0.80670798 0.80526 0.79006302\n\t\t 0.78710699 0.79629302 0.783786 0.82351601 0.82352102 0.80670798 0.80526 0.81129402\n\t\t 0.79971302 0.81129402 0.79971302 0.82562798 0.81597298 0.82351601 0.82352102 0.82562798\n\t\t 0.81597298 0.81129402 0.79971302 0.81560898 0.79432899 0.81560898 0.79432899 0.82995999\n\t\t 0.81073099 0.82562798 0.81597298 0.84057599 0.79914904 0.84651399 0.794487 0.864151\n\t\t 0.81509197 0.864151 0.81509197 0.85817599 0.81971002 0.84057599 0.79914904 0.83499998\n\t\t 0.80484802 0.84057599 0.79914904 0.85817599 0.81971002 0.84651399 0.794487 0.85306197\n\t\t 0.79011601 0.87070101 0.810736 0.87070101 0.810736 0.864151 0.81509197 0.84651399\n\t\t 0.794487 0.82995999 0.81073099 0.83499998 0.80484802 0.852543 0.82546699 0.85817599\n\t\t 0.81971002 0.852543 0.82546699 0.83499998 0.80484802 0.852543 0.82546699 0.847449\n\t\t 0.831429 0.82995999 0.81073099 0.82562798 0.81597298 0.82995999 0.81073099 0.847449\n\t\t 0.831429 0.82351601 0.82352102 0.82562798 0.81597298 0.84314001 0.83660501 0.847449\n\t\t 0.831429 0.84314001 0.83660501 0.82562798 0.81597298 0.84314001 0.83660501 0.83879799\n\t\t 0.84171802 0.82351601 0.82352102 0.74055898 0.81869799 0.736507 0.82126403 0.73031199\n\t\t 0.81018001 0.73031199 0.81018001 0.734231 0.807473 0.74055898 0.81869799 0.734231\n\t\t 0.807473 0.73031199 0.81018001 0.71376503 0.78731102 0.725806 0.81303799 0.73031199\n\t\t 0.81018001 0.736507 0.82126403 0.71376503 0.78731102 0.73031199 0.81018001 0.725806\n\t\t 0.81303799 0.736507 0.82126403 0.73188502 0.82389998 0.725806 0.81303799 0.72000802\n\t\t 0.81596899 0.725806 0.81303799 0.73188502 0.82389998 0.73188502 0.82389998 0.72604501\n\t\t 0.826554 0.72000802 0.81596899 0.725806 0.81303799 0.72000802 0.81596899 0.70444\n\t\t 0.79423296 0.70444 0.79423296 0.70974201 0.790595 0.725806 0.81303799 0.725806 0.81303799\n\t\t 0.70974201 0.790595 0.71376503 0.78731102 0.71341801 0.81895196 0.72000802 0.81596899\n\t\t 0.72604501 0.826554 0.72604501 0.826554 0.71943301 0.82920504 0.71341801 0.81895196\n\t\t 0.72000802 0.81596899 0.71341801 0.81895196 0.698304 0.79806197 0.698304 0.79806197\n\t\t 0.70444 0.79423296 0.72000802 0.81596899 0.79585701 0.73753297 0.79053402 0.74322301\n\t\t 0.779324 0.73641396 0.779324 0.73641396 0.78422898 0.730398 0.79585701 0.73753297\n\t\t 0.77481902 0.74211597 0.779324 0.73641396 0.79053402 0.74322301 0.79053402 0.74322301\n\t\t 0.78565001 0.74867797 0.77481902 0.74211597 0.770621 0.74796402 0.77481902 0.74211597\n\t\t 0.78565001 0.74867797 0.78565001 0.74867797 0.78109998 0.75442302 0.770621 0.74796402\n\t\t 0.76702797 0.75399101 0.770621 0.74796402 0.78109998 0.75442302 0.78109998 0.75442302\n\t\t 0.777188 0.76027703 0.76702797 0.75399101 0.76373202 0.76112998 0.76702797 0.75399101\n\t\t 0.777188 0.76027703 0.777188 0.76027703 0.77369601 0.76675797 0.76373202 0.76112998\n\t\t 0.76023698 0.76960003 0.76373202 0.76112998 0.77369601 0.76675797 0.77369601 0.76675797\n\t\t 0.76969498 0.773718 0.76023698 0.76960003 0.28343499 0.95032477 0.30682701 0.94240892\n\t\t 0.30764499 0.9539699 0.30764499 0.9539699 0.284796 0.96045142 0.28343499 0.95032477\n\t\t 0.30764499 0.9539699 0.30682701 0.94240892 0.329638 0.93329388 0.329638 0.93329388\n\t\t 0.331209 0.94894552 0.30764499 0.9539699 0.28343499 0.95032477 0.284796 0.96045142\n\t\t 0.28119001 0.96527553 0.28119001 0.96527553 0.27147201 0.95737189 0.28343499 0.95032477\n\t\t 0.26161799 0.9634161 0.27147201 0.95737189 0.28119001 0.96527553 0.28119001 0.96527553\n\t\t 0.27943599 0.9704569 0.26161799 0.9634161 0.37038901 0.96957427 0.331209 0.94894552\n\t\t 0.329638 0.93329388 0.329638 0.93329388 0.376522 0.95671868 0.37038901 0.96957427\n\t\t 0.267995 0.97756439 0.26161799 0.9634161 0.27943599 0.9704569 0.27943599 0.9704569\n\t\t 0.27961901 0.97548681 0.267995 0.97756439 0.267995 0.97756439 0.27961901 0.97548681\n\t\t 0.28225499 0.97930801 0.28225499 0.97930801 0.276086 0.99022675 0.267995 0.97756439\n\t\t 0.276086 0.99022675 0.28225499 0.97930801 0.32452601 0.98417258 0.32452601 0.98417258\n\t\t 0.32392299 0.99211758 0.276086 0.99022675 0.32392299 0.99211758 0.32452601 0.98417258\n\t\t 0.36264199 0.98564023 0.36264199 0.98564023 0.36495399 0.99469841 0.32392299 0.99211758\n\t\t 0.36495399 0.99469841 0.36264199 0.98564023 0.36963999 0.97177678 0.36963999 0.97177678\n\t\t 0.37038901 0.96957427 0.376522 0.95671868 0.36963999 0.97177678 0.385894 0.99686462\n\t\t 0.36495399 0.99469841 0.267995 0.97756439 0.276086 0.99022675 0.26743799 0.9908821\n\t\t 0.26743799 0.9908821 0.26013601 0.98040712 0.267995 0.97756439 0.26161799 0.9634161\n\t\t 0.267995 0.97756439 0.26013601 0.98040712 0.26013601 0.98040712 0.26743799 0.9908821\n\t\t 0.24523699 0.99319345 0.24523699 0.99319345 0.237058 0.99234515 0.26013601 0.98040712\n\t\t 0.237058 0.99234515 0.24523699 0.99319345 0.24003901 0.9938941 0.24003901 0.9938941\n\t\t 0.232954 0.99489379 0.237058 0.99234515 0.228873 0.99152088 0.26013601 0.98040712\n\t\t 0.237058 0.99234515 0.228873 0.99152088 0.237058 0.99234515;\n\tsetAttr \".uvst[0].uvsp[8750:8999]\" 0.232954 0.99489379 0.228873 0.99152088 0.24478801\n\t\t 0.97601599 0.26013601 0.98040712 0.24478801 0.97601599 0.25284201 0.96993148 0.26013601\n\t\t 0.98040712 0.232954 0.99489379 0.22492699 0.99627 0.228873 0.99152088 0.26013601\n\t\t 0.98040712 0.25284201 0.96993148 0.26161799 0.9634161 0.39279699 0.9828741 0.385894\n\t\t 0.99686462 0.36963999 0.97177678 0.36963999 0.97177678 0.37901399 0.96025968 0.39279699\n\t\t 0.9828741 0.376522 0.95671868 0.37901399 0.96025968 0.36963999 0.97177678 0.67217797\n\t\t 0.35963398 0.67545599 0.36495697 0.69672 0.32615697 0.70139199 0.35585099 0.69597602\n\t\t 0.356291 0.69597602 0.356291 0.68778199 0.326882 0.69672 0.32615697 0.68462098 0.331218\n\t\t 0.68778199 0.326882 0.69597602 0.356291 0.69597602 0.356291 0.69060397 0.352795 0.68462098\n\t\t 0.331218 0.69060397 0.352795 0.69597602 0.356291 0.67390001 0.35951602 0.67545599\n\t\t 0.36495697 0.67390001 0.35951602 0.69597602 0.356291 0.69597602 0.356291 0.697891\n\t\t 0.36298501 0.67545599 0.36495697 0.67217797 0.35963398 0.67390001 0.35951602 0.67545599\n\t\t 0.36495697 0.66503602 0.32776803 0.67390001 0.35951602 0.67217797 0.35963398 0.68586701\n\t\t 0.32018799 0.68778199 0.326882 0.66503602 0.32776803 0.66503602 0.32776803 0.66343302\n\t\t 0.32216001 0.68586701 0.32018799 0.67217797 0.35963398 0.66328597 0.32777703 0.66503602\n\t\t 0.32776803 0.67545599 0.36495697 0.673141 0.36300302 0.67217797 0.35963398 0.66232198\n\t\t 0.324413 0.66343302 0.32216001 0.66503602 0.32776803 0.66503602 0.32776803 0.66328597\n\t\t 0.32777703 0.66232198 0.324413 0.67695701 0.35481501 0.67390001 0.35951602 0.66503602\n\t\t 0.32776803 0.67390001 0.35951602 0.67695701 0.35481501 0.69060397 0.352795 0.66503602\n\t\t 0.32776803 0.67056 0.33179301 0.67695701 0.35481501 0.67056 0.33179301 0.66503602\n\t\t 0.32776803 0.68778199 0.326882 0.68778199 0.326882 0.68462098 0.331218 0.67056 0.33179301\n\t\t 0.66328597 0.32777703 0.67217797 0.35963398 0.66943002 0.35986 0.66943002 0.35986\n\t\t 0.66054398 0.32800198 0.66328597 0.32777703 0.46121499 0.13842303 0.439533 0.13874799\n\t\t 0.442379 0.12629598 0.442379 0.12629598 0.46269599 0.12599301 0.46121499 0.13842303\n\t\t 0.87162298 0.38929099 0.87640899 0.38937902 0.87601 0.41106099 0.87601 0.41106099\n\t\t 0.87122297 0.410972 0.87162298 0.38929099 0.87717599 0.36943299 0.88196403 0.36943299\n\t\t 0.88196403 0.38195097 0.88196403 0.38195097 0.87717599 0.38195097 0.87717599 0.36943299\n\t\t 0.57042402 0.039528012 0.56563598 0.039528012 0.56563598 0.019208014 0.56563598 0.019208014\n\t\t 0.57042402 0.019208014 0.57042402 0.039528012 0.87700701 0.34803402 0.88179302 0.34814698\n\t\t 0.88149202 0.36091602 0.88149202 0.36091602 0.876706 0.36080301 0.87700701 0.34803402\n\t\t 0.72656298 0.63018799 0.72165102 0.63235801 0.72656298 0.63018799 0.72165102 0.63235801\n\t\t 0.71634901 0.63303101 0.72165102 0.63235801 0.71634901 0.63303101 0.71106899 0.63229096\n\t\t 0.71634901 0.63303101 0.71106899 0.63229096 0.70612401 0.63034201 0.71106899 0.63229096\n\t\t 0.70612401 0.63034201 0.70168501 0.62744904 0.70612401 0.63034201 0.70168501 0.62744904\n\t\t 0.70168501 0.62744904 0.69967502 0.62573004 0.69967502 0.62573004 0.69967502 0.62573004\n\t\t 0.69607699 0.62187397 0.69607699 0.62187397 0.69607699 0.62187397 0.69448 0.61978102\n\t\t 0.69448 0.61978102 0.69448 0.61978102 0.69165599 0.61535001 0.69165599 0.61535001\n\t\t 0.69165599 0.61535001 0.689309 0.610654 0.689309 0.610654 0.689309 0.610654 0.68744302\n\t\t 0.60574603 0.68744302 0.60574603 0.68744302 0.60574603 0.68610698 0.60066104 0.68610698\n\t\t 0.60066104 0.68610698 0.60066104 0.68539798 0.59544003 0.68539798 0.59544003 0.68539798\n\t\t 0.59544003 0.68545699 0.59015596 0.68545699 0.59015596 0.68545699 0.59015596 0.68644297\n\t\t 0.584948 0.68644297 0.584948 0.68644297 0.584948 0.68849301 0.58003998 0.68849301\n\t\t 0.58003998 0.68849301 0.58003998 0.69166601 0.57575399 0.69166601 0.57575399 0.69166601\n\t\t 0.57575399 0.69587201 0.57245398 0.69587201 0.57245398 0.69587201 0.57245398 0.70086801\n\t\t 0.57048601 0.648821 0.091544986 0.648821 0.087881029 0.648821 0.087881029 0.64674199\n\t\t 0.091544986 0.64674199 0.087881029 0.64674199 0.087881029 0.639548 0.091544986 0.639548\n\t\t 0.087881029 0.639548 0.091544986 0.65423602 0.087881029 0.65423602 0.091544986 0.65423602\n\t\t 0.091544986 0.65638298 0.087881029 0.65638298 0.091544986 0.65638298 0.091544986\n\t\t 0.66645199 0.087881029 0.66645199 0.091544986 0.66645199 0.087881029 0.68858701 0.60020697\n\t\t 0.68610698 0.60066104 0.68539798 0.59544003 0.68539798 0.59544003 0.68791997 0.59533298\n\t\t 0.68858701 0.60020697 0.68791997 0.59533298 0.68539798 0.59544003 0.68545699 0.59015596\n\t\t 0.68545699 0.59015596 0.68796301 0.59046102 0.68791997 0.59533298 0.68796301 0.59046102\n\t\t 0.68545699 0.59015596 0.68644297 0.584948 0.68644297 0.584948 0.688842 0.58572501\n\t\t 0.68796301 0.59046102 0.688842 0.58572501 0.68644297 0.584948 0.68849301 0.58003998\n\t\t 0.68849301 0.58003998 0.69065601 0.58132499 0.688842 0.58572501 0.69065601 0.58132499\n\t\t 0.68849301 0.58003998 0.69166601 0.57575399 0.69166601 0.57575399 0.69343901 0.57753003\n\t\t 0.69065601 0.58132499 0.69343901 0.57753003 0.69166601 0.57575399 0.69587201 0.57245398\n\t\t 0.69587201 0.57245398 0.69709802 0.57463896 0.69343901 0.57753003 0.69709802 0.57463896\n\t\t 0.69587201 0.57245398 0.70086801 0.57048601 0.70086801 0.57048601 0.70136601 0.57290304\n\t\t 0.69709802 0.57463896 0.68610698 0.60066104 0.68858701 0.60020697 0.68984801 0.60499704\n\t\t 0.68984801 0.60499704 0.68744302 0.60574603 0.68610698 0.60066104 0.68744302 0.60574603\n\t\t 0.68984801 0.60499704 0.69161499 0.60964501 0.69161499 0.60964501 0.689309 0.610654\n\t\t 0.68744302 0.60574603 0.689309 0.610654;\n\tsetAttr \".uvst[0].uvsp[9000:9249]\" 0.69161499 0.60964501 0.69383901 0.61409402\n\t\t 0.69383901 0.61409402 0.69165599 0.61535001 0.689309 0.610654 0.69165599 0.61535001\n\t\t 0.69383901 0.61409402 0.696504 0.61827701 0.696504 0.61827701 0.69448 0.61978102\n\t\t 0.69165599 0.61535001 0.69448 0.61978102 0.696504 0.61827701 0.69800299 0.620242\n\t\t 0.69800299 0.620242 0.69607699 0.62187397 0.69448 0.61978102 0.69607699 0.62187397\n\t\t 0.69800299 0.620242 0.70134401 0.62383604 0.70134401 0.62383604 0.69967502 0.62573004\n\t\t 0.69607699 0.62187397 0.69967502 0.62573004 0.70134401 0.62383604 0.70319301 0.62542498\n\t\t 0.70319301 0.62542498 0.70168501 0.62744904 0.69967502 0.62573004 0.70168501 0.62744904\n\t\t 0.70319301 0.62542498 0.70722997 0.628075 0.70722997 0.628075 0.70612401 0.63034201\n\t\t 0.70168501 0.62744904 0.70612401 0.63034201 0.70722997 0.628075 0.71166003 0.62984401\n\t\t 0.71166003 0.62984401 0.71106899 0.63229096 0.70612401 0.63034201 0.71106899 0.63229096\n\t\t 0.71166003 0.62984401 0.71632499 0.630521 0.71632499 0.630521 0.71634901 0.63303101\n\t\t 0.71106899 0.63229096 0.71634901 0.63303101 0.71632499 0.630521 0.72095603 0.62994897\n\t\t 0.72095603 0.62994897 0.72165102 0.63235801 0.71634901 0.63303101 0.72165102 0.63235801\n\t\t 0.72095603 0.62994897 0.72519201 0.62813497 0.72519201 0.62813497 0.72656298 0.63018799\n\t\t 0.72165102 0.63235801 0.72226101 0.63449097 0.72165102 0.63235801 0.72656298 0.63018799\n\t\t 0.72656298 0.63018799 0.727736 0.63207799 0.72226101 0.63449097 0.72165102 0.63235801\n\t\t 0.72226101 0.63449097 0.71635997 0.63525498 0.71635997 0.63525498 0.71634901 0.63303101\n\t\t 0.72165102 0.63235801 0.71634901 0.63303101 0.71635997 0.63525498 0.710531 0.63445401\n\t\t 0.710531 0.63445401 0.71106899 0.63229096 0.71634901 0.63303101 0.71106899 0.63229096\n\t\t 0.710531 0.63445401 0.70512903 0.63234001 0.70512903 0.63234001 0.70612401 0.63034201\n\t\t 0.71106899 0.63229096 0.70612401 0.63034201 0.70512903 0.63234001 0.70033598 0.62922901\n\t\t 0.70033598 0.62922901 0.70168501 0.62744904 0.70612401 0.63034201 0.70168501 0.62744904\n\t\t 0.70033598 0.62922901 0.69818503 0.62739396 0.69818503 0.62739396 0.69967502 0.62573004\n\t\t 0.70168501 0.62744904 0.69967502 0.62573004 0.69818503 0.62739396 0.69436502 0.62330699\n\t\t 0.69436502 0.62330699 0.69607699 0.62187397 0.69967502 0.62573004 0.69607699 0.62187397\n\t\t 0.69436502 0.62330699 0.69268203 0.62110198 0.69268203 0.62110198 0.69448 0.61978102\n\t\t 0.69607699 0.62187397 0.69448 0.61978102 0.69268203 0.62110198 0.68971997 0.61645603\n\t\t 0.68971997 0.61645603 0.69165599 0.61535001 0.69448 0.61978102 0.69165599 0.61535001\n\t\t 0.68971997 0.61645603 0.68726701 0.61154801 0.68726701 0.61154801 0.689309 0.610654\n\t\t 0.69165599 0.61535001 0.689309 0.610654 0.68726701 0.61154801 0.68531698 0.606417\n\t\t 0.68531698 0.606417 0.68744302 0.60574603 0.689309 0.610654 0.68744302 0.60574603\n\t\t 0.68531698 0.606417 0.68391502 0.60107696 0.68391502 0.60107696 0.68610698 0.60066104\n\t\t 0.68744302 0.60574603 0.68610698 0.60066104 0.68391502 0.60107696 0.68316799 0.59555304\n\t\t 0.68316799 0.59555304 0.68539798 0.59544003 0.68610698 0.60066104 0.68539798 0.59544003\n\t\t 0.68316799 0.59555304 0.68323702 0.58990502 0.68323702 0.58990502 0.68545699 0.59015596\n\t\t 0.68539798 0.59544003 0.68545699 0.59015596 0.68323702 0.58990502 0.68431401 0.58427596\n\t\t 0.68431401 0.58427596 0.68644297 0.584948 0.68545699 0.59015596 0.68644297 0.584948\n\t\t 0.68431401 0.58427596 0.68656999 0.578915 0.68656999 0.578915 0.68849301 0.58003998\n\t\t 0.68644297 0.584948 0.68849301 0.58003998 0.68656999 0.578915 0.69008899 0.57418704\n\t\t 0.69008899 0.57418704 0.69166601 0.57575399 0.68849301 0.58003998 0.69166601 0.57575399\n\t\t 0.69008899 0.57418704 0.69478202 0.57052201 0.69478202 0.57052201 0.69587201 0.57245398\n\t\t 0.69166601 0.57575399 0.69587201 0.57245398 0.69478202 0.57052201 0.70034802 0.56832302\n\t\t 0.70034802 0.56832302 0.70086801 0.57048601 0.69587201 0.57245398 0.082198001 0.47376502\n\t\t 0.0840533 0.48514199 0.077992097 0.486803 0.077992097 0.486803 0.074062496 0.475941\n\t\t 0.082198001 0.47376502 0.0840533 0.48514199 0.082198001 0.47376502 0.090630397 0.47310197\n\t\t 0.090630397 0.47310197 0.090217702 0.48464298 0.0840533 0.48514199 0.090828098 0.46738499\n\t\t 0.090630397 0.47310197 0.082198001 0.47376502 0.082198001 0.47376502 0.081325397\n\t\t 0.46811199 0.090828098 0.46738499 0.081325397 0.46811199 0.082198001 0.47376502 0.074062496\n\t\t 0.475941 0.074062496 0.475941 0.072141998 0.47055602 0.081325397 0.46811199 0.090217702\n\t\t 0.48464298 0.090630397 0.47310197 0.099009298 0.47418803 0.099009298 0.47418803 0.096258499\n\t\t 0.48537999 0.090217702 0.48464298 0.090630397 0.47310197 0.090828098 0.46738499 0.095667303\n\t\t 0.46770197 0.090630397 0.47310197 0.095667303 0.46770197 0.099009298 0.47418803 0.095667303\n\t\t 0.46770197 0.100455 0.46867299 0.099009298 0.47418803 0.106973 0.47703999 0.096258499\n\t\t 0.48537999 0.099009298 0.47418803 0.106973 0.47703999 0.104645 0.48142201 0.096258499\n\t\t 0.48537999 0.104645 0.48142201 0.102016 0.48729098 0.096258499 0.48537999 0.074062496\n\t\t 0.475941 0.077992097 0.486803 0.072263502 0.48953801 0.072263502 0.48953801 0.066447303\n\t\t 0.47954798 0.074062496 0.475941 0.072141998 0.47055602 0.074062496 0.475941 0.066447303\n\t\t 0.47954798 0.066447303 0.47954798 0.072263502 0.48953801 0.067067198 0.49324399 0.067067198\n\t\t 0.49324399 0.0595777 0.48443401 0.066447303 0.47954798 0.0595777 0.48443401 0.067067198\n\t\t 0.49324399 0.062580302 0.49779701 0.062580302 0.49779701 0.053656802 0.49044102 0.0595777\n\t\t 0.48443401 0.053656802 0.49044102 0.062580302 0.49779701 0.058955301 0.50304401 0.058955301\n\t\t 0.50304401 0.0488648 0.49738503 0.053656802 0.49044102 0.0488648 0.49738503 0.058955301\n\t\t 0.50304401;\n\tsetAttr \".uvst[0].uvsp[9250:9499]\" 0.0575049 0.505876 0.0575049 0.505876 0.046955101\n\t\t 0.50114501 0.0488648 0.49738503 0.045400899 0.50505197 0.046955101 0.50114501 0.0575049\n\t\t 0.505876 0.045400899 0.50505197 0.0575049 0.505876 0.055392701 0.51183999 0.045400899\n\t\t 0.50505197 0.055392701 0.51183999 0.044162199 0.50905699 0.044162199 0.50905699 0.055392701\n\t\t 0.51183999 0.054754101 0.51492399 0.054754101 0.51492399 0.0433136 0.51318097 0.044162199\n\t\t 0.50905699 0.0433136 0.51318097 0.054754101 0.51492399 0.054328401 0.52114296 0.054328401\n\t\t 0.52114296 0.042803999 0.52157903 0.0433136 0.51318097 0.042803999 0.52157903 0.054328401\n\t\t 0.52114296 0.055086501 0.52727199 0.055086501 0.52727199 0.043879502 0.52991301 0.042803999\n\t\t 0.52157903 0.043879502 0.52991301 0.055086501 0.52727199 0.056967601 0.53306103 0.056967601\n\t\t 0.53306103 0.0465535 0.537898 0.043879502 0.52991301 0.0465535 0.537898 0.056967601\n\t\t 0.53306103 0.0599139 0.53819203 0.0599139 0.53819203 0.050825 0.54525799 0.0465535\n\t\t 0.537898 0.053590301 0.548576 0.050825 0.54525799 0.0599139 0.53819203 0.053590301\n\t\t 0.548576 0.0599139 0.53819203 0.059994701 0.547472 0.0599139 0.53819203 0.063910998\n\t\t 0.542247 0.059994701 0.547472 0.053590301 0.548576 0.059994701 0.547472 0.0568716\n\t\t 0.55143297 0.041378599 0.54025602 0.0465535 0.537898 0.050825 0.54525799 0.050825\n\t\t 0.54525799 0.046178602 0.54859799 0.041378599 0.54025602 0.046178602 0.54859799 0.050825\n\t\t 0.54525799 0.053590301 0.548576 0.053590301 0.548576 0.049157999 0.55246103 0.046178602\n\t\t 0.54859799 0.0465535 0.537898 0.041378599 0.54025602 0.038329698 0.53123701 0.038329698\n\t\t 0.53123701 0.043879502 0.52991301 0.0465535 0.537898 0.043879502 0.52991301 0.038329698\n\t\t 0.53123701 0.037094198 0.521828 0.037094198 0.521828 0.042803999 0.52157903 0.043879502\n\t\t 0.52991301 0.042803999 0.52157903 0.037094198 0.521828 0.037635799 0.51234496 0.0414172\n\t\t 0.55179596 0.046178602 0.54859799 0.049157999 0.55246103 0.049157999 0.55246103 0.044561401\n\t\t 0.55607998 0.0414172 0.55179596 0.036170401 0.54257703 0.041378599 0.54025602 0.046178602\n\t\t 0.54859799 0.046178602 0.54859799 0.0414172 0.55179596 0.036170401 0.54257703 0.030885199\n\t\t 0.54493499 0.036170401 0.54257703 0.0414172 0.55179596 0.0414172 0.55179596 0.036579601\n\t\t 0.55499697 0.030885199 0.54493499 0.036579601 0.55499697 0.0414172 0.55179596 0.044561401\n\t\t 0.55607998 0.044561401 0.55607998 0.039911401 0.55960703 0.036579601 0.55499697 0.032769602\n\t\t 0.53255099 0.038329698 0.53123701 0.041378599 0.54025602 0.041378599 0.54025602 0.036170401\n\t\t 0.54257703 0.032769602 0.53255099 0.036170401 0.54257703 0.030885199 0.54493499 0.027132001\n\t\t 0.533871 0.027132001 0.533871 0.032769602 0.53255099 0.036170401 0.54257703 0.031382699\n\t\t 0.52207899 0.037094198 0.521828 0.038329698 0.53123701 0.038329698 0.53123701 0.032769602\n\t\t 0.53255099 0.031382699 0.52207899 0.032769602 0.53255099 0.027132001 0.533871 0.025597\n\t\t 0.52231598 0.025597 0.52231598 0.031382699 0.52207899 0.032769602 0.53255099 0.0319659\n\t\t 0.51153398 0.037635799 0.51234496 0.037094198 0.521828 0.037094198 0.521828 0.031382699\n\t\t 0.52207899 0.0319659 0.51153398 0.031382699 0.52207899 0.025597 0.52231598 0.0262131\n\t\t 0.51080501 0.0262131 0.51080501 0.0319659 0.51153398 0.031382699 0.52207899 0.0319659\n\t\t 0.51153398 0.0262131 0.51080501 0.027153799 0.50519896 0.027153799 0.50519896 0.032874402\n\t\t 0.506311 0.0319659 0.51153398 0.034384701 0.50662398 0.0319659 0.51153398 0.032874402\n\t\t 0.506311 0.037635799 0.51234496 0.0319659 0.51153398 0.034384701 0.50662398 0.034384701\n\t\t 0.50662398 0.036770299 0.50717801 0.037635799 0.51234496 0.034384701 0.50662398 0.036845099\n\t\t 0.50671697 0.036770299 0.50717801 0.036770299 0.50717801 0.036845099 0.50671697 0.038683701\n\t\t 0.50585604 0.038683701 0.50585604 0.0391334 0.50598502 0.036770299 0.50717801 0.0391334\n\t\t 0.50598502 0.038683701 0.50585604 0.039994702 0.50319004 0.045400899 0.50505197 0.0391334\n\t\t 0.50598502 0.039994702 0.50319004 0.039994702 0.50319004 0.040994599 0.50072002 0.045400899\n\t\t 0.50505197 0.0391334 0.50598502 0.045400899 0.50505197 0.044162199 0.50905699 0.044162199\n\t\t 0.50905699 0.0385882 0.507653 0.0391334 0.50598502 0.036770299 0.50717801 0.0391334\n\t\t 0.50598502 0.0385882 0.507653 0.0385882 0.507653 0.044162199 0.50905699 0.0433136\n\t\t 0.51318097 0.0433136 0.51318097 0.037635799 0.51234496 0.0385882 0.507653 0.037635799\n\t\t 0.51234496 0.036770299 0.50717801 0.0385882 0.507653 0.037635799 0.51234496 0.0433136\n\t\t 0.51318097 0.042803999 0.52157903 0.045400899 0.50505197 0.040994599 0.50072002 0.041698001\n\t\t 0.49883801 0.041698001 0.49883801 0.046955101 0.50114501 0.045400899 0.50505197 0.046955101\n\t\t 0.50114501 0.041698001 0.49883801 0.043857601 0.49458402 0.043857601 0.49458402 0.0488648\n\t\t 0.49738503 0.046955101 0.50114501 0.0488648 0.49738503 0.043857601 0.49458402 0.049235299\n\t\t 0.48679602 0.049235299 0.48679602 0.053656802 0.49044102 0.0488648 0.49738503 0.053656802\n\t\t 0.49044102 0.049235299 0.48679602 0.055869799 0.48006302 0.055869799 0.48006302 0.0595777\n\t\t 0.48443401 0.053656802 0.49044102 0.0595777 0.48443401 0.055869799 0.48006302 0.063576303\n\t\t 0.47459102 0.063576303 0.47459102 0.066447303 0.47954798 0.0595777 0.48443401 0.066447303\n\t\t 0.47954798 0.063576303 0.47459102 0.072141998 0.47055602 0.044819798 0.48314798 0.049235299\n\t\t 0.48679602 0.043857601 0.49458402 0.043857601 0.49458402 0.038865302 0.49178201 0.044819798\n\t\t 0.48314798 0.040355399 0.47945398 0.044819798 0.48314798 0.038865302 0.49178201 0.038865302\n\t\t 0.49178201 0.033859901 0.48886198 0.040355399 0.47945398 0.052161299 0.47569299 0.055869799\n\t\t 0.48006302 0.049235299 0.48679602 0.049235299 0.48679602 0.044819798 0.48314798 0.052161299\n\t\t 0.47569299 0.044819798 0.48314798 0.040355399 0.47945398 0.048406899 0.471277;\n\tsetAttr \".uvst[0].uvsp[9500:9749]\" 0.048406899 0.471277 0.052161299 0.47569299\n\t\t 0.044819798 0.48314798 0.0607002 0.46963698 0.063576303 0.47459102 0.055869799 0.48006302\n\t\t 0.055869799 0.48006302 0.052161299 0.47569299 0.0607002 0.46963698 0.052161299 0.47569299\n\t\t 0.048406899 0.471277 0.057784401 0.46462703 0.057784401 0.46462703 0.0607002 0.46963698\n\t\t 0.052161299 0.47569299 0.070193201 0.46518397 0.072141998 0.47055602 0.063576303\n\t\t 0.47459102 0.063576303 0.47459102 0.0607002 0.46963698 0.070193201 0.46518397 0.072141998\n\t\t 0.47055602 0.070193201 0.46518397 0.080350697 0.46245903 0.080350697 0.46245903 0.081325397\n\t\t 0.46811199 0.072141998 0.47055602 0.081325397 0.46811199 0.080350697 0.46245903 0.090866096\n\t\t 0.46166199 0.090866096 0.46166199 0.090828098 0.46738499 0.081325397 0.46811199 0.090842701\n\t\t 0.45586503 0.090866096 0.46166199 0.080350697 0.46245903 0.080350697 0.46245903 0.079333797\n\t\t 0.45674998 0.090842701 0.45586503 0.079333797 0.45674998 0.080350697 0.46245903 0.070193201\n\t\t 0.46518397 0.070193201 0.46518397 0.068209 0.45974499 0.079333797 0.45674998 0.0607002\n\t\t 0.46963698 0.057784401 0.46462703 0.068209 0.45974499 0.068209 0.45974499 0.070193201\n\t\t 0.46518397 0.0607002 0.46963698 0.090828098 0.46738499 0.090866096 0.46166199 0.0961674\n\t\t 0.4619 0.0961674 0.4619 0.095667303 0.46770197 0.090828098 0.46738499 0.096526802\n\t\t 0.45607698 0.0961674 0.4619 0.090866096 0.46166199 0.090866096 0.46166199 0.090842701\n\t\t 0.45586503 0.096526802 0.45607698 0.033859901 0.48886198 0.038865302 0.49178201 0.036389999\n\t\t 0.49646902 0.038865302 0.49178201 0.037762199 0.49712002 0.036389999 0.49646902 0.040101301\n\t\t 0.49815702 0.037762199 0.49712002 0.038865302 0.49178201 0.038865302 0.49178201 0.043857601\n\t\t 0.49458402 0.040101301 0.49815702 0.041698001 0.49883801 0.040101301 0.49815702 0.043857601\n\t\t 0.49458402 0.040101301 0.49815702 0.0397579 0.49851102 0.037762199 0.49712002 0.040994599\n\t\t 0.50072002 0.040101301 0.49815702 0.041698001 0.49883801 0.0406592 0.50030899 0.0397579\n\t\t 0.49851102 0.040101301 0.49815702 0.040101301 0.49815702 0.040994599 0.50072002 0.0406592\n\t\t 0.50030899 0.039994702 0.50319004 0.0406592 0.50030899 0.040994599 0.50072002 0.036389999\n\t\t 0.49646902 0.031184699 0.49386799 0.033859901 0.48886198 0.32380399 0.42720097 0.32587001\n\t\t 0.42973202 0.31741399 0.43660998 0.31741399 0.43660998 0.315364 0.434066 0.32380399\n\t\t 0.42720097 0.315364 0.434066 0.31741399 0.43660998 0.30889499 0.44341302 0.30889499\n\t\t 0.44341302 0.306862 0.44085503 0.315364 0.434066 0.306862 0.44085503 0.30889499 0.44341302\n\t\t 0.30462801 0.44679898 0.30462801 0.44679898 0.30259699 0.44423997 0.306862 0.44085503\n\t\t 0.32587001 0.42973202 0.32380399 0.42720097 0.332275 0.42031997 0.332275 0.42031997\n\t\t 0.33430099 0.42288399 0.32587001 0.42973202 0.33430099 0.42288399 0.332275 0.42031997\n\t\t 0.34106401 0.41371602 0.34106401 0.41371602 0.342913 0.416408 0.33430099 0.42288399\n\t\t 0.342913 0.416408 0.34106401 0.41371602 0.350564 0.407974 0.350564 0.407974 0.35202399\n\t\t 0.41089302 0.342913 0.416408 0.35202399 0.41089302 0.350564 0.407974 0.361013 0.403938\n\t\t 0.361013 0.403938 0.36183801 0.407094 0.35202399 0.41089302 0.36183801 0.407094 0.361013\n\t\t 0.403938 0.36659601 0.402816 0.36659601 0.402816 0.36691701 0.40608197 0.36183801\n\t\t 0.407094 0.36691701 0.40608197 0.36659601 0.402816 0.37764201 0.40280098 0.37764201\n\t\t 0.40280098 0.37735701 0.40607202 0.36691701 0.40608197 0.37735701 0.40607202 0.37764201\n\t\t 0.40280098 0.383268 0.40382898 0.383268 0.40382898 0.382433 0.406977 0.37735701 0.40607202\n\t\t 0.382433 0.406977 0.383268 0.40382898 0.39362699 0.40837002 0.39362699 0.40837002\n\t\t 0.391947 0.41116601 0.382433 0.406977 0.391947 0.41116601 0.39362699 0.40837002 0.402542\n\t\t 0.41511703 0.402542 0.41511703 0.40036899 0.41755497 0.391947 0.41116601 0.40036899\n\t\t 0.41755497 0.402542 0.41511703 0.41032401 0.42296797 0.41032401 0.42296797 0.407913\n\t\t 0.42517197 0.40036899 0.41755497 0.407913 0.42517197 0.41032401 0.42296797 0.417492\n\t\t 0.43125999 0.417492 0.43125999 0.41498899 0.43336099 0.407913 0.42517197 0.41498899\n\t\t 0.43336099 0.417492 0.43125999 0.42097601 0.43546301 0.42443699 0.43967301 0.41498899\n\t\t 0.43336099 0.42097601 0.43546301 0.42443699 0.43967301 0.421913 0.44174802 0.41498899\n\t\t 0.43336099 0.421913 0.44174802 0.42443699 0.43967301 0.427894 0.443883 0.427894 0.443883\n\t\t 0.42536899 0.44595599 0.421913 0.44174802 0.67020202 0.56974804 0.67577702 0.57155502\n\t\t 0.67157203 0.58268702 0.67157203 0.58268702 0.66025102 0.57846797 0.67020202 0.56974804\n\t\t 0.66025102 0.57846797 0.67157203 0.58268702 0.66690898 0.59345299 0.66690898 0.59345299\n\t\t 0.656223 0.58825302 0.66025102 0.57846797 0.656223 0.58825302 0.66690898 0.59345299\n\t\t 0.66123903 0.60364902 0.66123903 0.60364902 0.651169 0.59732604 0.656223 0.58825302\n\t\t 0.651169 0.59732604 0.66123903 0.60364902 0.65448099 0.61311501 0.65448099 0.61311501\n\t\t 0.64513201 0.60570002 0.651169 0.59732604 0.64513201 0.60570002 0.65448099 0.61311501\n\t\t 0.64674801 0.62177396 0.64674801 0.62177396 0.63823599 0.61338699 0.64513201 0.60570002\n\t\t 0.63823599 0.61338699 0.64674801 0.62177396 0.642555 0.62578499 0.642555 0.62578499\n\t\t 0.63449699 0.61695802 0.63823599 0.61338699 0.63449699 0.61695802 0.642555 0.62578499\n\t\t 0.63356799 0.633129 0.63356799 0.633129 0.62649798 0.62351596 0.63449699 0.61695802\n\t\t 0.62649798 0.62351596 0.63356799 0.633129 0.628824 0.63648099 0.628824 0.63648099\n\t\t 0.62226301 0.62648499 0.62649798 0.62351596 0.62226301 0.62648499 0.628824 0.63648099\n\t\t 0.61883003 0.64238298 0.61883003 0.64238298 0.61337602 0.63174498 0.62226301 0.62648499\n\t\t 0.61337602 0.63174498;\n\tsetAttr \".uvst[0].uvsp[9750:9999]\" 0.61883003 0.64238298 0.60823601 0.64718199\n\t\t 0.60823601 0.64718199 0.60400099 0.63601899 0.61337602 0.63174498 0.60400099 0.63601899\n\t\t 0.60823601 0.64718199 0.59714502 0.65075898 0.59714502 0.65075898 0.59422803 0.63921499\n\t\t 0.60400099 0.63601899 0.59422803 0.63921499 0.59714502 0.65075898 0.58566499 0.65299201\n\t\t 0.58566499 0.65299201 0.584135 0.64123297 0.59422803 0.63921499 0.584135 0.64123297\n\t\t 0.58566499 0.65299201 0.57389998 0.65389001 0.57389998 0.65389001 0.57377899 0.64189804\n\t\t 0.584135 0.64123297 0.57377899 0.64189804 0.57389998 0.65389001 0.56793702 0.65398204\n\t\t 0.56793702 0.65398204 0.56854397 0.64159399 0.57377899 0.64189804 0.57438201 0.62952501\n\t\t 0.57377899 0.64189804 0.56854397 0.64159399 0.56854397 0.64159399 0.57039201 0.62916803\n\t\t 0.57438201 0.62952501 0.57377899 0.64189804 0.57438201 0.62952501 0.58268601 0.62899899\n\t\t 0.58268601 0.62899899 0.584135 0.64123297 0.57377899 0.64189804 0.584135 0.64123297\n\t\t 0.58268601 0.62899899 0.59117103 0.627253 0.59117103 0.627253 0.59422803 0.63921499\n\t\t 0.584135 0.64123297 0.59422803 0.63921499 0.59117103 0.627253 0.599563 0.624479 0.599563\n\t\t 0.624479 0.60400099 0.63601899 0.59422803 0.63921499 0.60400099 0.63601899 0.599563\n\t\t 0.624479 0.60769302 0.62075603 0.60769302 0.62075603 0.61337602 0.63174498 0.60400099\n\t\t 0.63601899 0.61337602 0.63174498 0.60769302 0.62075603 0.61545002 0.61615801 0.61545002\n\t\t 0.61615801 0.62226301 0.62648499 0.61337602 0.63174498 0.62226301 0.62648499 0.61545002\n\t\t 0.61615801 0.61915898 0.61355901 0.61915898 0.61355901 0.62649798 0.62351596 0.62226301\n\t\t 0.62648499 0.62649798 0.62351596 0.61915898 0.61355901 0.62616903 0.60781097 0.62616903\n\t\t 0.60781097 0.63449699 0.61695802 0.62649798 0.62351596 0.63449699 0.61695802 0.62616903\n\t\t 0.60781097 0.629444 0.60468501 0.629444 0.60468501 0.63823599 0.61338699 0.63449699\n\t\t 0.61695802 0.63823599 0.61338699 0.629444 0.60468501 0.63547301 0.59798896 0.63547301\n\t\t 0.59798896 0.64513201 0.60570002 0.63823599 0.61338699 0.64513201 0.60570002 0.63547301\n\t\t 0.59798896 0.64071 0.59079999 0.64071 0.59079999 0.651169 0.59732604 0.64513201 0.60570002\n\t\t 0.651169 0.59732604 0.64071 0.59079999 0.64493501 0.58332801 0.64493501 0.58332801\n\t\t 0.656223 0.58825302 0.651169 0.59732604 0.656223 0.58825302 0.64493501 0.58332801\n\t\t 0.65414798 0.57683802 0.65414798 0.57683802 0.66025102 0.57846797 0.656223 0.58825302\n\t\t 0.102016 0.48729098 0.104645 0.48142201 0.11094 0.48470402 0.11094 0.48470402 0.10732\n\t\t 0.49008 0.102016 0.48729098 0.10732 0.49008 0.11094 0.48470402 0.116558 0.48940599\n\t\t 0.116558 0.48940599 0.111773 0.493774 0.10732 0.49008 0.111773 0.493774 0.116558\n\t\t 0.48940599 0.120806 0.49551898 0.120806 0.49551898 0.115003 0.49841303 0.111773 0.493774\n\t\t 0.59356701 0.21433002 0.59718198 0.21433002 0.597507 0.22001398 0.597507 0.22001398\n\t\t 0.59324199 0.22001398 0.59356701 0.21433002 0.58962798 0.22001398 0.58995301 0.21433002\n\t\t 0.59356701 0.21433002 0.59356701 0.21433002 0.59389299 0.22001398 0.58962798 0.22001398\n\t\t 0.58601302 0.22001398 0.58633798 0.21433002 0.58995301 0.21433002 0.58995301 0.21433002\n\t\t 0.59027803 0.22001398 0.58601302 0.22001398 0.58239901 0.22001398 0.58272398 0.21433002\n\t\t 0.58633798 0.21433002 0.58633798 0.21433002 0.58666301 0.22001398 0.58239901 0.22001398\n\t\t 0.578785 0.22001398 0.57910901 0.21433002 0.58272398 0.21433002 0.58272398 0.21433002\n\t\t 0.583049 0.22001398 0.578785 0.22001398 0.57517099 0.22001499 0.575495 0.21433097\n\t\t 0.57910901 0.21433002 0.57910901 0.21433002 0.57943499 0.22001398 0.57517099 0.22001499\n\t\t 0.57155699 0.22001499 0.571881 0.21433097 0.575495 0.21433097 0.575495 0.21433097\n\t\t 0.57582098 0.22001499 0.57155699 0.22001499 0.63300401 0.22000998 0.63332897 0.21432602\n\t\t 0.63694298 0.21432602 0.63694298 0.21432602 0.63726902 0.22000998 0.63300401 0.22000998\n\t\t 0.62939 0.22000998 0.62971503 0.21432698 0.63332897 0.21432602 0.63332897 0.21432602\n\t\t 0.63365501 0.22000998 0.62939 0.22000998 0.62577498 0.22000998 0.6261 0.21432602\n\t\t 0.62971503 0.21432698 0.62971503 0.21432698 0.63003999 0.22000998 0.62577498 0.22000998\n\t\t 0.62216002 0.22000998 0.62248498 0.21432602 0.6261 0.21432602 0.6261 0.21432602 0.62642503\n\t\t 0.22000998 0.62216002 0.22000998 0.61854601 0.22000998 0.61887002 0.21432698 0.62248498\n\t\t 0.21432602 0.62248498 0.21432602 0.62281102 0.22000998 0.61854601 0.22000998 0.61690098\n\t\t 0.220011 0.61706299 0.21432698 0.61887002 0.21432698 0.61887002 0.21432698 0.61903298\n\t\t 0.22000998 0.61690098 0.220011 0.61738998 0.220011 0.61312401 0.22001201 0.61344802\n\t\t 0.21432799 0.61344802 0.21432799 0.61706299 0.21432698 0.61738998 0.220011 0.61361301\n\t\t 0.22001201 0.61148101 0.22001302 0.61164099 0.214329 0.61164099 0.214329 0.61344802\n\t\t 0.21432799 0.61361301 0.22001201 0.60770202 0.22001398 0.60802603 0.21433002 0.61164099\n\t\t 0.214329 0.61164099 0.214329 0.61196703 0.22001302 0.60770202 0.22001398 0.604087\n\t\t 0.22001398 0.60441101 0.21433002 0.60802603 0.21433002 0.60802603 0.21433002 0.60835201\n\t\t 0.22001302 0.604087 0.22001398 0.60047197 0.22001398 0.600797 0.21433002 0.60441101\n\t\t 0.21433002 0.60441101 0.21433002 0.60473698 0.22001398 0.60047197 0.22001398 0.59685701\n\t\t 0.22001398 0.59718198 0.21433002 0.600797 0.21433002 0.600797 0.21433002 0.60112202\n\t\t 0.22001398 0.59685701 0.22001398 0.69391602 0.67265999 0.70036298 0.68188298 0.69682097\n\t\t 0.68353099 0.70312703 0.67912304 0.70036298 0.68188298 0.69391602 0.67265999 0.69391602\n\t\t 0.67265999 0.70478201 0.675583 0.70312703 0.67912304 0.70512599 0.671691 0.70478201\n\t\t 0.675583;\n\tsetAttr \".uvst[0].uvsp[10000:10249]\" 0.69391602 0.67265999 0.69391602 0.67265999\n\t\t 0.70411801 0.66791499 0.70512599 0.671691 0.70187801 0.664711 0.70411801 0.66791499\n\t\t 0.69391602 0.67265999 0.69391602 0.67265999 0.70037699 0.66344702 0.70187801 0.664711\n\t\t 0.69391602 0.67265999 0.69490403 0.661452 0.70037699 0.66344702 0.69490403 0.661452\n\t\t 0.69683599 0.66179299 0.70037699 0.66344702 0.69391602 0.67265999 0.69101101 0.66179001\n\t\t 0.69490403 0.661452 0.68746901 0.66343796 0.69101101 0.66179001 0.69391602 0.67265999\n\t\t 0.69391602 0.67265999 0.68470401 0.66619802 0.68746901 0.66343796 0.68304998 0.66973799\n\t\t 0.68470401 0.66619802 0.69391602 0.67265999 0.69391602 0.67265999 0.682706 0.67363\n\t\t 0.68304998 0.66973799 0.68371397 0.67740601 0.682706 0.67363 0.69391602 0.67265999\n\t\t 0.69391602 0.67265999 0.68595302 0.68061 0.68371397 0.67740601 0.68915302 0.68285501\n\t\t 0.68595302 0.68061 0.69391602 0.67265999 0.69391602 0.67265999 0.69292802 0.683869\n\t\t 0.68915302 0.68285501 0.69682097 0.68353099 0.69292802 0.683869 0.69391602 0.67265999\n\t\t 0.68046099 0.58635902 0.67157203 0.58268702 0.67577702 0.57155502 0.67577702 0.57155502\n\t\t 0.684807 0.57499397 0.68046099 0.58635902 0.684807 0.57499397 0.67577702 0.57155502\n\t\t 0.685076 0.56202102 0.685076 0.56202102 0.68934 0.56383401 0.684807 0.57499397 0.69174403\n\t\t 0.558263 0.68934 0.56383401 0.685076 0.56202102 0.67157203 0.58268702 0.68046099\n\t\t 0.58635902 0.67547101 0.59775198 0.67547101 0.59775198 0.66690898 0.59345299 0.67157203\n\t\t 0.58268702 0.66690898 0.59345299 0.67547101 0.59775198 0.66932899 0.608778 0.66932899\n\t\t 0.608778 0.66123903 0.60364902 0.66690898 0.59345299 0.66123903 0.60364902 0.66932899\n\t\t 0.608778 0.66197997 0.61908799 0.66197997 0.61908799 0.65448099 0.61311501 0.66123903\n\t\t 0.60364902 0.65448099 0.61311501 0.66197997 0.61908799 0.65357101 0.62851799 0.65357101\n\t\t 0.62851799 0.64674801 0.62177396 0.65448099 0.61311501 0.64674801 0.62177396 0.65357101\n\t\t 0.62851799 0.649014 0.63288403 0.649014 0.63288403 0.642555 0.62578499 0.64674801\n\t\t 0.62177396 0.642555 0.62578499 0.649014 0.63288403 0.63923198 0.64078403 0.63923198\n\t\t 0.64078403 0.63356799 0.633129 0.642555 0.62578499 0.63356799 0.633129 0.63923198\n\t\t 0.64078403 0.634161 0.64448702 0.634161 0.64448702 0.628824 0.63648099 0.63356799\n\t\t 0.633129 0.628824 0.63648099 0.634161 0.64448702 0.62322998 0.65091097 0.62322998\n\t\t 0.65091097 0.61883003 0.64238298 0.628824 0.63648099 0.61883003 0.64238298 0.62322998\n\t\t 0.65091097 0.61166197 0.65613699 0.61166197 0.65613699 0.60823601 0.64718199 0.61883003\n\t\t 0.64238298 0.60823601 0.64718199 0.61166197 0.65613699 0.59952497 0.66003704 0.59952497\n\t\t 0.66003704 0.59714502 0.65075898 0.60823601 0.64718199 0.59714502 0.65075898 0.59952497\n\t\t 0.66003704 0.58700901 0.66246104 0.58700901 0.66246104 0.58566499 0.65299201 0.59714502\n\t\t 0.65075898 0.58566499 0.65299201 0.58700901 0.66246104 0.57449698 0.66349304 0.57449698\n\t\t 0.66349304 0.57389998 0.65389001 0.58566499 0.65299201 0.57389998 0.65389001 0.57449698\n\t\t 0.66349304 0.56837398 0.66376197 0.56837398 0.66376197 0.56793702 0.65398204 0.57389998\n\t\t 0.65389001 0.72260797 0.087881029 0.73285902 0.087881029 0.73285902 0.091544986 0.73285902\n\t\t 0.091544986 0.72260797 0.091544986 0.72260797 0.087881029 0.72260797 0.087881029\n\t\t 0.72260797 0.091544986 0.71236902 0.091544986 0.71236902 0.091544986 0.71236902 0.087881029\n\t\t 0.72260797 0.087881029 0.70214999 0.087881029 0.71236902 0.087881029 0.71236902 0.091544986\n\t\t 0.71236902 0.091544986 0.70214999 0.091544986 0.70214999 0.087881029 0.69194698 0.087881029\n\t\t 0.70214999 0.087881029 0.70214999 0.091544986 0.70214999 0.091544986 0.69194698 0.091544986\n\t\t 0.69194698 0.087881029 0.68174899 0.087881029 0.69194698 0.087881029 0.69194698 0.091544986\n\t\t 0.69194698 0.091544986 0.68174899 0.091544986 0.68174899 0.087881029 0.671552 0.087881029\n\t\t 0.68174899 0.087881029 0.68174899 0.091544986 0.68174899 0.091544986 0.671552 0.091544986\n\t\t 0.671552 0.087881029 0.73830497 0.091544986 0.73285902 0.091544986 0.73285902 0.087881029\n\t\t 0.73285902 0.087881029 0.73830497 0.087881029 0.73830497 0.091544986 0.66645199 0.087881029\n\t\t 0.671552 0.087881029 0.671552 0.091544986 0.671552 0.091544986 0.66645199 0.091544986\n\t\t 0.66645199 0.087881029 0.62379998 0.087881029 0.634049 0.087881029 0.634049 0.091544986\n\t\t 0.634049 0.091544986 0.62379998 0.091544986 0.62379998 0.087881029 0.61359698 0.087881029\n\t\t 0.62379998 0.087881029 0.62379998 0.091544986 0.62379998 0.091544986 0.61359698 0.091544986\n\t\t 0.61359698 0.087881029 0.60341299 0.087881029 0.61359698 0.087881029 0.61359698 0.091544986\n\t\t 0.61359698 0.091544986 0.60341299 0.091544986 0.60341299 0.087881029 0.593211 0.087881029\n\t\t 0.60341299 0.087881029 0.60341299 0.091544986 0.60341299 0.091544986 0.593211 0.091544986\n\t\t 0.593211 0.087881029 0.593211 0.087881029 0.593211 0.091544986 0.58820099 0.091544986\n\t\t 0.58820099 0.091544986 0.58820099 0.087881029 0.593211 0.087881029 0.639548 0.091544986\n\t\t 0.634049 0.091544986 0.634049 0.087881029 0.634049 0.087881029 0.639548 0.087881029\n\t\t 0.639548 0.091544986 0.72000998 0.10510302 0.70947599 0.10510302 0.70947599 0.10133302\n\t\t 0.70947599 0.10133302 0.72000998 0.10133302 0.72000998 0.10510302 0.72000998 0.10510302\n\t\t 0.72000998 0.10133302 0.73053098 0.10133302 0.73053098 0.10133302 0.73053098 0.10510302\n\t\t 0.72000998 0.10510302 0.73579699 0.10133302 0.73053098 0.10510302 0.73053098 0.10133302\n\t\t 0.73579699 0.10133302 0.73579699 0.10510302 0.73053098 0.10510302 0.73579699 0.10133302\n\t\t 0.74073899 0.10510302 0.73579699 0.10510302 0.73579699 0.10133302 0.74073899 0.10133302\n\t\t 0.74073899 0.10510302 0.70947599 0.10133302 0.70947599 0.10510302 0.69891101 0.10510302;\n\tsetAttr \".uvst[0].uvsp[10250:10499]\" 0.69891101 0.10510302 0.69891101 0.10133302\n\t\t 0.70947599 0.10133302 0.69891101 0.10133302 0.69891101 0.10510302 0.68831301 0.10510302\n\t\t 0.68831301 0.10510302 0.68831301 0.10133302 0.69891101 0.10133302 0.68831301 0.10133302\n\t\t 0.68831301 0.10510302 0.67771 0.10510302 0.67771 0.10510302 0.67771 0.10133302 0.68831301\n\t\t 0.10133302 0.67771 0.10133302 0.67771 0.10510302 0.66713101 0.10510302 0.66713101\n\t\t 0.10510302 0.66713101 0.10133302 0.67771 0.10133302 0.661856 0.10133302 0.66713101\n\t\t 0.10133302 0.66713101 0.10510302 0.66713101 0.10510302 0.661856 0.10510302 0.661856\n\t\t 0.10133302 0.65134001 0.10133302 0.661856 0.10133302 0.661856 0.10510302 0.661856\n\t\t 0.10510302 0.65134001 0.10510302 0.65134001 0.10133302 0.65134001 0.10133302 0.65134001\n\t\t 0.10510302 0.64609802 0.10510302 0.64609802 0.10510302 0.64609802 0.10133302 0.65134001\n\t\t 0.10133302 0.64609802 0.10133302 0.64609802 0.10510302 0.63564402 0.10510302 0.63564402\n\t\t 0.10510302 0.63564402 0.10133302 0.64609802 0.10133302 0.63564402 0.10133302 0.63564402\n\t\t 0.10510302 0.62520498 0.10510302 0.62520498 0.10510302 0.62520498 0.10133302 0.63564402\n\t\t 0.10133302 0.62520498 0.10133302 0.62520498 0.10510302 0.61473 0.10510302 0.61473\n\t\t 0.10510302 0.61473 0.10133302 0.62520498 0.10133302 0.61473 0.10133302 0.61473 0.10510302\n\t\t 0.604186 0.10510302 0.604186 0.10510302 0.604186 0.10133302 0.61473 0.10133302 0.604186\n\t\t 0.10133302 0.604186 0.10510302 0.59359902 0.10510302 0.59359902 0.10510302 0.59359902\n\t\t 0.10133302 0.604186 0.10133302 0.58820099 0.10133302 0.59359902 0.10133302 0.59359902\n\t\t 0.10510302 0.59359902 0.10510302 0.58820099 0.10510302 0.58820099 0.10133302 0.65179801\n\t\t 0.091544986 0.648821 0.091544986 0.648821 0.087881029 0.65179801 0.091544986 0.648821\n\t\t 0.087881029 0.65423602 0.087881029 0.65179801 0.091544986 0.65423602 0.087881029\n\t\t 0.65423602 0.091544986 0.648821 0.087881029 0.648821 0.091544986 0.64674199 0.091544986\n\t\t 0.64674199 0.091544986 0.64674199 0.087881029 0.648821 0.087881029 0.64674199 0.087881029\n\t\t 0.64674199 0.091544986 0.64458102 0.091544986 0.64458102 0.091544986 0.64458102 0.087881029\n\t\t 0.64674199 0.087881029 0.64458102 0.087881029 0.64458102 0.091544986 0.64268202 0.091544986\n\t\t 0.64268202 0.091544986 0.64268202 0.087881029 0.64458102 0.087881029 0.64268202 0.087881029\n\t\t 0.64268202 0.091544986 0.639548 0.091544986 0.639548 0.091544986 0.639548 0.087881029\n\t\t 0.64268202 0.087881029 0.65423602 0.091544986 0.65423602 0.087881029 0.65638298 0.087881029\n\t\t 0.65638298 0.087881029 0.65638298 0.091544986 0.65423602 0.091544986 0.65638298 0.091544986\n\t\t 0.65638298 0.087881029 0.65795398 0.087881029 0.65795398 0.087881029 0.65795398 0.091544986\n\t\t 0.65638298 0.091544986 0.65795398 0.091544986 0.65795398 0.087881029 0.66129303 0.087881029\n\t\t 0.66129303 0.087881029 0.66129303 0.091544986 0.65795398 0.091544986 0.66129303 0.091544986\n\t\t 0.66129303 0.087881029 0.66645199 0.087881029 0.66645199 0.087881029 0.66645199 0.091544986\n\t\t 0.66129303 0.091544986 0.36659601 0.402816 0.36656499 0.39673197 0.37698999 0.39652199\n\t\t 0.37698999 0.39652199 0.37764201 0.40280098 0.36659601 0.402816 0.374313 0.39174002\n\t\t 0.37698999 0.39652199 0.36656499 0.39673197 0.374313 0.39174002 0.37596399 0.39324403\n\t\t 0.37698999 0.39652199 0.37596399 0.39324403 0.376854 0.39577699 0.37698999 0.39652199\n\t\t 0.374313 0.39174002 0.36656499 0.39673197 0.36656499 0.39584798 0.374313 0.39174002\n\t\t 0.36656499 0.39584798 0.367044 0.393278 0.374313 0.39174002 0.367044 0.393278 0.368568\n\t\t 0.39174902 0.3427 0.35729802 0.34321299 0.36639601 0.3427 0.35729802 0.347305 0.35734999\n\t\t 0.34919199 0.36646903 0.347305 0.35734999 0.46219 0.352786 0.46621501 0.36096901\n\t\t 0.46219 0.352786 0.45192 0.35636997 0.46219 0.352786 0.45192 0.35636997 0.44789299\n\t\t 0.35642397 0.45192 0.35636997 0.44789299 0.35642397 0.46219 0.352786 0.46219 0.352786\n\t\t 0.46412501 0.35062301 0.46412501 0.35062301 0.46412501 0.35062301 0.46489301 0.347826\n\t\t 0.444686 0.35605901 0.44789299 0.35642397 0.444686 0.35605901 0.436207 0.353935 0.444686\n\t\t 0.35605901 0.436207 0.353935 0.436207 0.353935 0.40880099 0.34859699 0.436207 0.353935\n\t\t 0.380007 0.34933001 0.40880099 0.34859699 0.380007 0.34933001 0.36847401 0.35149199\n\t\t 0.380007 0.34933001 0.36847401 0.35149199 0.36170799 0.352925 0.36847401 0.35149199\n\t\t 0.36170799 0.352925 0.350164 0.35610402 0.36170799 0.352925 0.350164 0.35610402 0.347305\n\t\t 0.35734999 0.350164 0.35610402 0.347305 0.35734999 0.347305 0.35734999 0.3427 0.35729802\n\t\t 0.347305 0.35734999 0.33930501 0.35593599 0.3427 0.35729802 0.33930501 0.35593599\n\t\t 0.32208499 0.35254598 0.33930501 0.35593599 0.32208499 0.35254598 0.31327501 0.35168898\n\t\t 0.32208499 0.35254598 0.31327501 0.35168898 0.30050901 0.35089201 0.31327501 0.35168898\n\t\t 0.30050901 0.35089201 0.30050901 0.35089201 0.27077499 0.35124499 0.30050901 0.35089201\n\t\t 0.27077499 0.35124499 0.24347501 0.35369998 0.27077499 0.35124499 0.236157 0.35372698\n\t\t 0.24347501 0.35369998 0.236157 0.35372698 0.74603802 0.23697001 0.745547 0.24158299\n\t\t 0.745547 0.24158299 0.74792701 0.23739201 0.74699801 0.24184299 0.74699801 0.24184299\n\t\t 0.67369199 0.24126399 0.67394203 0.23675901 0.67394203 0.23675901 0.67202699 0.24129498\n\t\t 0.67194498 0.236821 0.67194498 0.236821 0.694857 0.241449 0.690759 0.24144602 0.690759\n\t\t 0.24144602 0.67608202 0.24136001 0.690759 0.24144602 0.67608202 0.24136001 0.67608202\n\t\t 0.24136001 0.67369199 0.24126399 0.67369199 0.24126399 0.67369199 0.24126399 0.67202699\n\t\t 0.24129498 0.67202699 0.24129498 0.67202699 0.24129498;\n\tsetAttr \".uvst[0].uvsp[10500:10749]\" 0.670717 0.24153697 0.670717 0.24153697 0.670717\n\t\t 0.24153697 0.66922301 0.24168801 0.66922301 0.24168801 0.62714303 0.24144202 0.62714303\n\t\t 0.24144202 0.694857 0.241449 0.696922 0.24155098 0.694857 0.241449 0.696922 0.24155098\n\t\t 0.69860399 0.24167299 0.696922 0.24155098 0.69860399 0.24167299 0.69860399 0.24167299\n\t\t 0.71869898 0.24146098 0.69860399 0.24167299 0.72029001 0.24137098 0.71869898 0.24146098\n\t\t 0.72029001 0.24137098 0.72237498 0.241274 0.72029001 0.24137098 0.72237498 0.241274\n\t\t 0.72679299 0.24128699 0.72237498 0.241274 0.72679299 0.24128699 0.74311298 0.24149102\n\t\t 0.72679299 0.24128699 0.74311298 0.24149102 0.745547 0.24158299 0.74311298 0.24149102\n\t\t 0.745547 0.24158299 0.74699801 0.24184299 0.745547 0.24158299 0.74699801 0.24184299\n\t\t 0.74798298 0.24239302 0.74699801 0.24184299 0.74798298 0.24239302 0.74909902 0.243056\n\t\t 0.74798298 0.24239302 0.74909902 0.243056 0.44459701 0.12241203 0.395702 0.12122703\n\t\t 0.399479 0.27685899 0.40132099 0.30086702 0.399479 0.27685899 0.40700901 0.27573299\n\t\t 0.408622 0.29900301 0.40700901 0.27573299 0.753555 0.29826301 0.74861598 0.27706301\n\t\t 0.42237201 0.48341399 0.42237201 0.48341399 0.41910499 0.49809498 0.42505899 0.469181\n\t\t 0.42237201 0.48341399 0.42505899 0.469181 0.44117001 0.372172 0.44117001 0.36907202\n\t\t 0.44117001 0.36907202 0.785353 0.088597 0.78802299 0.088597 0.78802299 0.089864016\n\t\t 0.78802299 0.089864016 0.785353 0.089864016 0.785353 0.088597 0.785353 0.088597 0.785353\n\t\t 0.089864016 0.782686 0.089864016 0.782686 0.089864016 0.782686 0.088597 0.785353\n\t\t 0.088597 0.78802299 0.089864016 0.78802299 0.088597 0.79068798 0.088597 0.79068798\n\t\t 0.088597 0.79068798 0.089864016 0.78802299 0.089864016 0.79335201 0.08979398 0.79068798\n\t\t 0.089864016 0.79068798 0.088597 0.79068798 0.088597 0.79333597 0.088415027 0.79335201\n\t\t 0.08979398 0.78003001 0.088597 0.782686 0.088597 0.782686 0.089864016 0.782686 0.089864016\n\t\t 0.78003001 0.089864016 0.78003001 0.088597 0.78003001 0.088597 0.78003001 0.089864016\n\t\t 0.77737701 0.089864016 0.77737701 0.089864016 0.77737701 0.088597 0.78003001 0.088597\n\t\t 0.77473199 0.088597 0.77737701 0.088597 0.77737701 0.089864016 0.77737701 0.089864016\n\t\t 0.77473199 0.089864016 0.77473199 0.088597 0.77473199 0.088597 0.77473199 0.089864016\n\t\t 0.77208799 0.089864016 0.77208799 0.089864016 0.77208799 0.088597 0.77473199 0.088597\n\t\t 0.769445 0.088597 0.77208799 0.088597 0.77208799 0.089864016 0.77208799 0.089864016\n\t\t 0.769445 0.089864016 0.769445 0.088597 0.769445 0.088597 0.769445 0.089864016 0.76679599\n\t\t 0.089864016 0.76679599 0.089864016 0.76679599 0.088597 0.769445 0.088597 0.76414299\n\t\t 0.088597 0.76679599 0.088597 0.76679599 0.089864016 0.76679599 0.089864016 0.76414299\n\t\t 0.089864016 0.76414299 0.088597 0.76414299 0.088597 0.76414299 0.089864016 0.76148099\n\t\t 0.089864016 0.76148099 0.089864016 0.76148099 0.088597 0.76414299 0.088597 0.75881302\n\t\t 0.088597 0.76148099 0.088597 0.76148099 0.089864016 0.76148099 0.089864016 0.75881302\n\t\t 0.089864016 0.75881302 0.088597 0.75881302 0.088597 0.75881302 0.089864016 0.75613499\n\t\t 0.089864016 0.75613499 0.089864016 0.75613499 0.088597 0.75881302 0.088597 0.75345898\n\t\t 0.088597 0.75613499 0.088597 0.75613499 0.089864016 0.75613499 0.089864016 0.75345898\n\t\t 0.089864016 0.75345898 0.088597 0.75345898 0.088597 0.75345898 0.089864016 0.75079799\n\t\t 0.089864016 0.75079799 0.089864016 0.75079799 0.088597 0.75345898 0.088597 0.75079799\n\t\t 0.092545986 0.75079799 0.089864016 0.75345898 0.089864016 0.75079799 0.089864016\n\t\t 0.75079799 0.092545986 0.74828202 0.092545986 0.74828202 0.092545986 0.748285 0.089863002\n\t\t 0.75079799 0.089864016 0.75345898 0.089864016 0.75345898 0.092545986 0.75079799 0.092545986\n\t\t 0.75345898 0.092545986 0.75345898 0.089864016 0.75613499 0.089864016 0.75613499 0.089864016\n\t\t 0.75613499 0.092545986 0.75345898 0.092545986 0.75613499 0.092545986 0.75613499 0.089864016\n\t\t 0.75881302 0.089864016 0.75881302 0.089864016 0.75881302 0.092545986 0.75613499 0.092545986\n\t\t 0.75881302 0.092545986 0.75881302 0.089864016 0.76148099 0.089864016 0.76148099 0.089864016\n\t\t 0.76148099 0.092545986 0.75881302 0.092545986 0.76414299 0.089864016 0.76414299 0.092545986\n\t\t 0.76148099 0.092545986 0.76148099 0.092545986 0.76148099 0.089864016 0.76414299 0.089864016\n\t\t 0.76414299 0.092545986 0.76414299 0.089864016 0.76679599 0.089864016 0.76679599 0.089864016\n\t\t 0.76679599 0.092545986 0.76414299 0.092545986 0.76679599 0.092545986 0.76679599 0.089864016\n\t\t 0.769445 0.089864016 0.769445 0.089864016 0.769445 0.092545986 0.76679599 0.092545986\n\t\t 0.769445 0.092545986 0.769445 0.089864016 0.77208799 0.089864016 0.77208799 0.089864016\n\t\t 0.77208799 0.092545986 0.769445 0.092545986 0.77208799 0.092545986 0.77208799 0.089864016\n\t\t 0.77473199 0.089864016 0.77473199 0.089864016 0.77473199 0.092545986 0.77208799 0.092545986\n\t\t 0.77473199 0.092545986 0.77473199 0.089864016 0.77737701 0.089864016 0.77737701 0.089864016\n\t\t 0.77737701 0.092545986 0.77473199 0.092545986 0.77737701 0.092545986 0.77737701 0.089864016\n\t\t 0.78003001 0.089864016 0.78003001 0.089864016 0.78003001 0.092545986 0.77737701 0.092545986\n\t\t 0.78003001 0.092545986 0.78003001 0.089864016 0.782686 0.089864016 0.782686 0.089864016\n\t\t 0.782686 0.092545986 0.78003001 0.092545986 0.782686 0.092545986 0.782686 0.089864016\n\t\t 0.785353 0.089864016 0.785353 0.089864016 0.785353 0.092545986 0.782686 0.092545986\n\t\t 0.785353 0.092545986 0.785353 0.089864016 0.78802299 0.089864016 0.78802299 0.089864016\n\t\t 0.78802299 0.092545986 0.785353 0.092545986 0.78802299 0.092545986 0.78802299 0.089864016\n\t\t 0.79068798 0.089864016 0.79068798 0.089864016;\n\tsetAttr \".uvst[0].uvsp[10750:10999]\" 0.79068798 0.092545986 0.78802299 0.092545986\n\t\t 0.577981 0.11754203 0.57667202 0.11682802 0.57718301 0.11519498 0.57718301 0.11519498\n\t\t 0.57866502 0.11535501 0.577981 0.11754203 0.57866502 0.11535501 0.57718301 0.11519498\n\t\t 0.57703102 0.11348599 0.57703102 0.11348599 0.57846099 0.113065 0.57866502 0.11535501\n\t\t 0.57846099 0.113065 0.57703102 0.11348599 0.57623702 0.11196899 0.57623702 0.11196899\n\t\t 0.577398 0.11103398 0.57846099 0.113065 0.577398 0.11103398 0.57623702 0.11196899\n\t\t 0.57492 0.11086798 0.57492 0.11086798 0.575634 0.10956001 0.577398 0.11103398 0.575634\n\t\t 0.10956001 0.57492 0.11086798 0.57328802 0.11035699 0.57328802 0.11035699 0.57344699\n\t\t 0.10887498 0.575634 0.10956001 0.57344699 0.10887498 0.57328802 0.11035699 0.57157803\n\t\t 0.11050999 0.57157803 0.11050999 0.57115698 0.10908002 0.57344699 0.10887498 0.57115698\n\t\t 0.10908002 0.57157803 0.11050999 0.57006198 0.11130297 0.57006198 0.11130297 0.56912702\n\t\t 0.11014199 0.57115698 0.10908002 0.56912702 0.11014199 0.57006198 0.11130297 0.56896102\n\t\t 0.11262 0.56896102 0.11262 0.56765199 0.11190599 0.56912702 0.11014199 0.56765199\n\t\t 0.11190599 0.56896102 0.11262 0.56844902 0.11425298 0.56844902 0.11425298 0.56696802\n\t\t 0.11409301 0.56765199 0.11190599 0.56696802 0.11409301 0.56844902 0.11425298 0.56860203\n\t\t 0.11596298 0.56860203 0.11596298 0.56717199 0.11638302 0.56696802 0.11409301 0.56717199\n\t\t 0.11638302 0.56860203 0.11596298 0.56939501 0.11747903 0.56939501 0.11747903 0.56823403\n\t\t 0.11841398 0.56717199 0.11638302 0.56823403 0.11841398 0.56939501 0.11747903 0.57071197\n\t\t 0.11857998 0.57071197 0.11857998 0.56999898 0.11988801 0.56823403 0.11841398 0.56999898\n\t\t 0.11988801 0.57071197 0.11857998 0.57234502 0.11909097 0.57234502 0.11909097 0.57218599\n\t\t 0.12057298 0.56999898 0.11988801 0.57218599 0.12057298 0.57234502 0.11909097 0.57405502\n\t\t 0.11893803 0.57405502 0.11893803 0.57447499 0.120368 0.57218599 0.12057298 0.57447499\n\t\t 0.120368 0.57405502 0.11893803 0.575571 0.11814499 0.575571 0.11814499 0.57650602\n\t\t 0.11930603 0.57447499 0.120368 0.57650602 0.11930603 0.575571 0.11814499 0.57667202\n\t\t 0.11682802 0.57667202 0.11682802 0.577981 0.11754203 0.57650602 0.11930603 0.78985798\n\t\t 0.051284015 0.78985798 0.052170992 0.788306 0.052170992 0.788306 0.052170992 0.788306\n\t\t 0.051284015 0.78985798 0.051284015 0.788306 0.051284015 0.788306 0.052170992 0.78675199\n\t\t 0.052170992 0.78675199 0.052170992 0.78675199 0.051284015 0.788306 0.051284015 0.78675199\n\t\t 0.051284015 0.78675199 0.052170992 0.7852 0.052170992 0.7852 0.052170992 0.7852 0.051284015\n\t\t 0.78675199 0.051284015 0.7852 0.051284015 0.7852 0.052170992 0.78364599 0.052170992\n\t\t 0.78364599 0.052170992 0.78364599 0.051284015 0.7852 0.051284015 0.78364599 0.051284015\n\t\t 0.78364599 0.052170992 0.78211898 0.052183986 0.78211898 0.052183986 0.78210503 0.051297009\n\t\t 0.78364599 0.051284015 0.78985798 0.052170992 0.78985798 0.051284015 0.791412 0.051284015\n\t\t 0.791412 0.051284015 0.791412 0.052170992 0.78985798 0.052170992 0.791412 0.052170992\n\t\t 0.791412 0.051284015 0.79296499 0.051284015 0.79296499 0.051284015 0.79296499 0.052170992\n\t\t 0.791412 0.052170992 0.79296499 0.052170992 0.79296499 0.051284015 0.79451901 0.051284015\n\t\t 0.79451901 0.051284015 0.79451901 0.052170992 0.79296499 0.052170992 0.79451901 0.052170992\n\t\t 0.79451901 0.051284015 0.79607201 0.051284015 0.79607201 0.051284015 0.79607201 0.052170992\n\t\t 0.79451901 0.052170992 0.79607201 0.052170992 0.79607201 0.051284015 0.79762602 0.051284015\n\t\t 0.79762602 0.051284015 0.79762602 0.052170992 0.79607201 0.052170992 0.79762602 0.052170992\n\t\t 0.79762602 0.051284015 0.79917997 0.051284015 0.79917997 0.051284015 0.79917997 0.052170992\n\t\t 0.79762602 0.052170992 0.79917997 0.052170992 0.79917997 0.051284015 0.800735 0.051284015\n\t\t 0.800735 0.051284015 0.800735 0.052170992 0.79917997 0.052170992 0.800735 0.052170992\n\t\t 0.800735 0.051284015 0.80228901 0.051284015 0.80228901 0.051284015 0.80228901 0.052170992\n\t\t 0.800735 0.052170992 0.80228901 0.052170992 0.80228901 0.051284015 0.80384398 0.051284015\n\t\t 0.80384398 0.051284015 0.80384398 0.052170992 0.80228901 0.052170992 0.80384398 0.052170992\n\t\t 0.80384398 0.051284015 0.80539697 0.051284015 0.80539697 0.051284015 0.80539697 0.052170992\n\t\t 0.80384398 0.052170992 0.80539697 0.052170992 0.80539697 0.051284015 0.806952 0.051284015\n\t\t 0.806952 0.051284015 0.806952 0.052170992 0.80539697 0.052170992 0.82438701 0.030682027\n\t\t 0.82287002 0.030682027 0.82287002 0.029844999 0.82287002 0.029844999 0.82438701 0.029844999\n\t\t 0.82438701 0.030682027 0.82438701 0.030682027 0.82438701 0.029844999 0.82590002 0.029844999\n\t\t 0.82590002 0.029844999 0.82590002 0.030682027 0.82438701 0.030682027 0.827407 0.030682027\n\t\t 0.82590002 0.030682027 0.82590002 0.029844999 0.82590002 0.029844999 0.827407 0.029844999\n\t\t 0.827407 0.030682027 0.827407 0.030682027 0.827407 0.029844999 0.82892102 0.029844999\n\t\t 0.82892102 0.029844999 0.82892102 0.030682027 0.827407 0.030682027 0.82287002 0.029844999\n\t\t 0.82287002 0.030682027 0.82134998 0.030682027 0.82134998 0.030682027 0.82134998 0.029844999\n\t\t 0.82287002 0.029844999 0.81983203 0.029844999 0.82134998 0.029844999 0.82134998 0.030682027\n\t\t 0.82134998 0.030682027 0.81983203 0.030682027 0.81983203 0.029844999 0.81983203 0.029844999\n\t\t 0.81983203 0.030682027 0.818313 0.030682027 0.818313 0.030682027 0.818313 0.029844999\n\t\t 0.81983203 0.029844999 0.816796 0.029844999 0.818313 0.029844999 0.818313 0.030682027\n\t\t 0.818313 0.030682027 0.816796 0.030682027 0.816796 0.029844999 0.816796 0.029844999\n\t\t 0.816796 0.030682027 0.81527799 0.030682027 0.81527799 0.030682027 0.81527799 0.029844999\n\t\t 0.816796 0.029844999 0.813761 0.029844999 0.81527799 0.029844999;\n\tsetAttr \".uvst[0].uvsp[11000:11249]\" 0.81527799 0.030682027 0.81527799 0.030682027\n\t\t 0.813761 0.030682027 0.813761 0.029844999 0.813761 0.029844999 0.813761 0.030682027\n\t\t 0.81224197 0.030682027 0.81224197 0.030682027 0.81224197 0.029844999 0.813761 0.029844999\n\t\t 0.81072301 0.029844999 0.81224197 0.029844999 0.81224197 0.030682027 0.81224197 0.030682027\n\t\t 0.81072301 0.030682027 0.81072301 0.029844999 0.81072301 0.029844999 0.81072301 0.030682027\n\t\t 0.809201 0.030682027 0.809201 0.030682027 0.809201 0.029844999 0.81072301 0.029844999\n\t\t 0.807679 0.029844999 0.809201 0.029844999 0.809201 0.030682027 0.809201 0.030682027\n\t\t 0.807679 0.030682027 0.807679 0.029844999 0.807679 0.029844999 0.807679 0.030682027\n\t\t 0.80615699 0.030682027 0.80615699 0.030682027 0.80615699 0.029844999 0.807679 0.029844999\n\t\t 0.80470401 0.029781997 0.80615699 0.029844999 0.806198 0.030604005 0.806198 0.030604005\n\t\t 0.80463499 0.030535996 0.80470401 0.029781997 0.864375 0.36434001 0.86482799 0.36580002\n\t\t 0.86468798 0.36732799 0.864375 0.36434001 0.86468798 0.36732799 0.86203998 0.36244899\n\t\t 0.86468798 0.36732799 0.857162 0.36509699 0.86203998 0.36244899 0.86468798 0.36732799\n\t\t 0.85980898 0.36997598 0.857162 0.36509699 0.86468798 0.36732799 0.86279702 0.36966199\n\t\t 0.85980898 0.36997598 0.86468798 0.36732799 0.863976 0.36868101 0.86279702 0.36966199\n\t\t 0.86279702 0.36966199 0.86133701 0.370116 0.85980898 0.36997598 0.85980898 0.36997598\n\t\t 0.85747498 0.36808503 0.857162 0.36509699 0.85980898 0.36997598 0.85845602 0.36926401\n\t\t 0.85747498 0.36808503 0.85747498 0.36808503 0.85702097 0.366624 0.857162 0.36509699\n\t\t 0.857162 0.36509699 0.85905302 0.36276299 0.86203998 0.36244899 0.857162 0.36509699\n\t\t 0.85787302 0.36374301 0.85905302 0.36276299 0.85905302 0.36276299 0.86051297 0.36230898\n\t\t 0.86203998 0.36244899 0.864375 0.36434001 0.86203998 0.36244899 0.86339402 0.36316103\n\t\t 0.80596602 0.31341702 0.80357403 0.31656802 0.77424598 0.31743997 0.77424598 0.31743997\n\t\t 0.77665299 0.31417799 0.80596602 0.31341702 0.80357403 0.31656802 0.80596602 0.31341702\n\t\t 0.81845897 0.31267399 0.81845897 0.31267399 0.81598598 0.31559497 0.80357403 0.31656802\n\t\t 0.82247901 0.30725902 0.81845897 0.31267399 0.80596602 0.31341702 0.80596602 0.31341702\n\t\t 0.81050098 0.30757701 0.82247901 0.30725902 0.81050098 0.30757701 0.80596602 0.31341702\n\t\t 0.77665299 0.31417799 0.77665299 0.31417799 0.78156602 0.30808198 0.81050098 0.30757701\n\t\t 0.77665299 0.31417799 0.77424598 0.31743997 0.74944401 0.31656599 0.74944401 0.31656599\n\t\t 0.75145203 0.31318802 0.77665299 0.31417799 0.78156602 0.30808198 0.77665299 0.31417799\n\t\t 0.75145203 0.31318802 0.75145203 0.31318802 0.75538999 0.30685002 0.78156602 0.30808198\n\t\t 0.78406298 0.30523598 0.78156602 0.30808198 0.75538999 0.30685002 0.81050098 0.30757701\n\t\t 0.78156602 0.30808198 0.78406298 0.30523598 0.75538999 0.30685002 0.757312 0.30387598\n\t\t 0.78406298 0.30523598 0.757312 0.30387598 0.75538999 0.30685002 0.74396002 0.305695\n\t\t 0.757312 0.30387598 0.74396002 0.305695 0.74647498 0.30446601 0.757312 0.30387598\n\t\t 0.74647498 0.30446601 0.74963999 0.30375803 0.75538999 0.30685002 0.75145203 0.31318802\n\t\t 0.74108797 0.31215799 0.74108797 0.31215799 0.74396002 0.305695 0.75538999 0.30685002\n\t\t 0.74108797 0.31215799 0.75145203 0.31318802 0.74944401 0.31656599 0.82247901 0.30725902\n\t\t 0.81050098 0.30757701 0.81265599 0.30487502 0.78406298 0.30523598 0.81265599 0.30487502\n\t\t 0.81050098 0.30757701 0.81265599 0.30487502 0.824045 0.30475199 0.82247901 0.30725902\n\t\t 0.74108797 0.31215799 0.74944401 0.31656599 0.74404699 0.31535298 0.74108797 0.31215799\n\t\t 0.74404699 0.31535298 0.74170798 0.31347901 0.82247901 0.30725902 0.824045 0.30475199\n\t\t 0.83049101 0.30556202 0.829997 0.30756903 0.83049101 0.30556202 0.840011 0.30873698\n\t\t 0.840011 0.30873698 0.84113598 0.309246 0.829997 0.30756903 0.829997 0.30756903 0.84113598\n\t\t 0.309246 0.84110099 0.31006998 0.84110099 0.31006998 0.82696199 0.31196302 0.829997\n\t\t 0.30756903 0.82247901 0.30725902 0.829997 0.30756903 0.82696199 0.31196302 0.83049101\n\t\t 0.30556202 0.829997 0.30756903 0.82247901 0.30725902 0.82696199 0.31196302 0.81845897\n\t\t 0.31267399 0.82247901 0.30725902 0.81845897 0.31267399 0.82696199 0.31196302 0.82442802\n\t\t 0.314354 0.82442802 0.314354 0.81598598 0.31559497 0.81845897 0.31267399 0.82696199\n\t\t 0.31196302 0.84110099 0.31006998 0.83951902 0.31071103 0.83951902 0.31071103 0.82442802\n\t\t 0.314354 0.82696199 0.31196302 0.27077499 0.35124499 0.27082601 0.359882 0.241015\n\t\t 0.36227202 0.241015 0.36227202 0.24347501 0.35369998 0.27077499 0.35124499 0.24347501\n\t\t 0.35369998 0.241015 0.36227202 0.23205601 0.36311799 0.23205601 0.36311799 0.236157\n\t\t 0.35372698 0.24347501 0.35369998 0.27082601 0.359882 0.27077499 0.35124499 0.30050901\n\t\t 0.35089201 0.30050901 0.35089201 0.300257 0.35952502 0.27082601 0.359882 0.300257\n\t\t 0.35952502 0.30050901 0.35089201 0.31327501 0.35168898 0.31327501 0.35168898 0.31282899\n\t\t 0.36033499 0.300257 0.35952502 0.32168999 0.36140603 0.31282899 0.36033499 0.31327501\n\t\t 0.35168898 0.31327501 0.35168898 0.32208499 0.35254598 0.32168999 0.36140603 0.32168999\n\t\t 0.36140603 0.32208499 0.35254598 0.33930501 0.35593599 0.33930501 0.35593599 0.339192\n\t\t 0.36552602 0.32168999 0.36140603 0.339192 0.36552602 0.33930501 0.35593599 0.3427\n\t\t 0.35729802 0.3427 0.35729802 0.34321299 0.36639601 0.339192 0.36552602 0.34321299\n\t\t 0.36639601 0.3427 0.35729802 0.347305 0.35734999 0.347305 0.35734999 0.34919199 0.36646903\n\t\t 0.34321299 0.36639601 0.34919199 0.36646903 0.347305 0.35734999 0.350164 0.35610402\n\t\t 0.350164 0.35610402 0.35225901 0.36559099 0.34919199 0.36646903;\n\tsetAttr \".uvst[0].uvsp[11250:11499]\" 0.35225901 0.36559099 0.350164 0.35610402\n\t\t 0.36170799 0.352925 0.36170799 0.352925 0.36356601 0.36170799 0.35225901 0.36559099\n\t\t 0.36356601 0.36170799 0.36170799 0.352925 0.36847401 0.35149199 0.36847401 0.35149199\n\t\t 0.370159 0.36025798 0.36356601 0.36170799 0.370159 0.36025798 0.36847401 0.35149199\n\t\t 0.380007 0.34933001 0.380007 0.34933001 0.381062 0.35816699 0.370159 0.36025798 0.381062\n\t\t 0.35816699 0.380007 0.34933001 0.40880099 0.34859699 0.40880099 0.34859699 0.40842199\n\t\t 0.35755599 0.381062 0.35816699 0.40842199 0.35755599 0.40880099 0.34859699 0.436207\n\t\t 0.353935 0.436207 0.353935 0.43577299 0.363298 0.40842199 0.35755599 0.43577299 0.363298\n\t\t 0.436207 0.353935 0.444686 0.35605901 0.444686 0.35605901 0.44488299 0.36564302 0.43577299\n\t\t 0.363298 0.44488299 0.36564302 0.444686 0.35605901 0.44789299 0.35642397 0.44789299\n\t\t 0.35642397 0.447909 0.36598802 0.44488299 0.36564302 0.447909 0.36598802 0.44789299\n\t\t 0.35642397 0.45192 0.35636997 0.45192 0.35636997 0.453096 0.365704 0.447909 0.36598802\n\t\t 0.453096 0.365704 0.45192 0.35636997 0.46219 0.352786 0.46219 0.352786 0.46621501\n\t\t 0.36096901 0.453096 0.365704 0.46621501 0.36096901 0.46219 0.352786 0.46412501 0.35062301\n\t\t 0.46412501 0.35062301 0.46913999 0.35850698 0.46621501 0.36096901 0.46913999 0.35850698\n\t\t 0.46412501 0.35062301 0.46489301 0.347826 0.46489301 0.347826 0.47121599 0.35637802\n\t\t 0.46913999 0.35850698 0.458498 0.35010099 0.46219 0.352786 0.45192 0.35636997 0.45192\n\t\t 0.35636997 0.450966 0.35289299 0.458498 0.35010099 0.450966 0.35289299 0.45192 0.35636997\n\t\t 0.44789299 0.35642397 0.44789299 0.35642397 0.44764301 0.35273498 0.450966 0.35289299\n\t\t 0.46219 0.352786 0.458498 0.35010099 0.45950001 0.34871 0.45950001 0.34871 0.46412501\n\t\t 0.35062301 0.46219 0.352786 0.46412501 0.35062301 0.45950001 0.34871 0.459997 0.345698\n\t\t 0.459997 0.345698 0.46489301 0.347826 0.46412501 0.35062301 0.44764301 0.35273498\n\t\t 0.44789299 0.35642397 0.444686 0.35605901 0.444686 0.35605901 0.44392499 0.352202\n\t\t 0.44764301 0.35273498 0.44392499 0.352202 0.444686 0.35605901 0.436207 0.353935 0.436207\n\t\t 0.353935 0.43606901 0.350173 0.44392499 0.352202 0.40911701 0.34504199 0.43606901\n\t\t 0.350173 0.436207 0.353935 0.436207 0.353935 0.40880099 0.34859699 0.40911701 0.34504199\n\t\t 0.40911701 0.34504199 0.40880099 0.34859699 0.380007 0.34933001 0.380007 0.34933001\n\t\t 0.379776 0.34575403 0.40911701 0.34504199 0.379776 0.34575403 0.380007 0.34933001\n\t\t 0.36847401 0.35149199 0.36847401 0.35149199 0.36801299 0.34792602 0.379776 0.34575403\n\t\t 0.36801299 0.34792602 0.36847401 0.35149199 0.36170799 0.352925 0.36170799 0.352925\n\t\t 0.36100599 0.34939098 0.36801299 0.34792602 0.36100599 0.34939098 0.36170799 0.352925\n\t\t 0.350164 0.35610402 0.350164 0.35610402 0.349013 0.35265899 0.36100599 0.34939098\n\t\t 0.349013 0.35265899 0.350164 0.35610402 0.347305 0.35734999 0.347305 0.35734999 0.34672701\n\t\t 0.353459 0.349013 0.35265899 0.342926 0.35348499 0.34672701 0.353459 0.347305 0.35734999\n\t\t 0.347305 0.35734999 0.3427 0.35729802 0.342926 0.35348499 0.342926 0.35348499 0.3427\n\t\t 0.35729802 0.33930501 0.35593599 0.33930501 0.35593599 0.34010899 0.35247898 0.342926\n\t\t 0.35348499 0.34010899 0.35247898 0.33930501 0.35593599 0.32208499 0.35254598 0.32208499\n\t\t 0.35254598 0.32262701 0.34900099 0.34010899 0.35247898 0.32262701 0.34900099 0.32208499\n\t\t 0.35254598 0.31327501 0.35168898 0.31327501 0.35168898 0.313629 0.34813499 0.32262701\n\t\t 0.34900099 0.313629 0.34813499 0.31327501 0.35168898 0.30050901 0.35089201 0.30050901\n\t\t 0.35089201 0.300713 0.34732503 0.313629 0.34813499 0.27057201 0.347664 0.300713 0.34732503\n\t\t 0.30050901 0.35089201 0.30050901 0.35089201 0.27077499 0.35124499 0.27057201 0.347664\n\t\t 0.245281 0.34977901 0.27057201 0.347664 0.27077499 0.35124499 0.27077499 0.35124499\n\t\t 0.24347501 0.35369998 0.245281 0.34977901 0.245281 0.34977901 0.24347501 0.35369998\n\t\t 0.236157 0.35372698 0.236157 0.35372698 0.23965 0.34976703 0.245281 0.34977901 0.53700697\n\t\t 0.20373797 0.54662901 0.20373797 0.54662901 0.20830202 0.54662901 0.20830202 0.53700697\n\t\t 0.20830202 0.53700697 0.20373797 0.53700697 0.20373797 0.53700697 0.20830202 0.52739501\n\t\t 0.20830202 0.52739501 0.20830202 0.52739501 0.20373797 0.53700697 0.20373797 0.54662901\n\t\t 0.20830202 0.54662901 0.20373797 0.55623502 0.20373797 0.55623502 0.20373797 0.55635399\n\t\t 0.20843101 0.54662901 0.20830202 0.51781899 0.20373797 0.52739501 0.20373797 0.52739501\n\t\t 0.20830202 0.52739501 0.20830202 0.51781899 0.20830202 0.51781899 0.20373797 0.51781899\n\t\t 0.20373797 0.51781899 0.20830202 0.50826001 0.20830202 0.50826001 0.20830202 0.50826001\n\t\t 0.20373797 0.51781899 0.20373797 0.49872699 0.20373797 0.50826001 0.20373797 0.50826001\n\t\t 0.20830202 0.50826001 0.20830202 0.49872699 0.20830202 0.49872699 0.20373797 0.49872699\n\t\t 0.20373797 0.49872699 0.20830202 0.48919401 0.20830202 0.48919401 0.20830202 0.48919401\n\t\t 0.20373797 0.49872699 0.20373797 0.47966799 0.20373797 0.48919401 0.20373797 0.48919401\n\t\t 0.20830202 0.48919401 0.20830202 0.47966799 0.20830202 0.47966799 0.20373797 0.47966799\n\t\t 0.20373797 0.47966799 0.20830202 0.470121 0.20830202 0.470121 0.20830202 0.470121\n\t\t 0.20373797 0.47966799 0.20373797 0.46056101 0.20373797 0.470121 0.20373797 0.470121\n\t\t 0.20830202 0.470121 0.20830202 0.46056101 0.20830202 0.46056101 0.20373797 0.46056101\n\t\t 0.20373797 0.46056101 0.20830202 0.45096499 0.20830202 0.45096499 0.20830202;\n\tsetAttr \".uvst[0].uvsp[11500:11749]\" 0.45096499 0.20373797 0.46056101 0.20373797\n\t\t 0.441349 0.20373797 0.45096499 0.20373797 0.45096499 0.20830202 0.45096499 0.20830202\n\t\t 0.441349 0.20830202 0.441349 0.20373797 0.441349 0.20373797 0.441349 0.20830202 0.43169799\n\t\t 0.20830202 0.43169799 0.20830202 0.43169799 0.20373797 0.441349 0.20373797 0.422052\n\t\t 0.20373797 0.43169799 0.20373797 0.43169799 0.20830202 0.43169799 0.20830202 0.422052\n\t\t 0.20830202 0.422052 0.20373797 0.422052 0.20373797 0.422052 0.20830202 0.41246 0.20830202\n\t\t 0.41246 0.20830202 0.41246 0.20373797 0.422052 0.20373797 0.41246 0.21797103 0.41246\n\t\t 0.20830202 0.422052 0.20830202 0.41246 0.20830202 0.41246 0.21797103 0.403391 0.21796799\n\t\t 0.403391 0.21796799 0.40340099 0.20829999 0.41246 0.20830202 0.422052 0.20830202\n\t\t 0.422052 0.21797103 0.41246 0.21797103 0.422052 0.21797103 0.422052 0.20830202 0.43169799\n\t\t 0.20830202 0.43169799 0.20830202 0.43169799 0.21797103 0.422052 0.21797103 0.43169799\n\t\t 0.21797103 0.43169799 0.20830202 0.441349 0.20830202 0.441349 0.20830202 0.441349\n\t\t 0.21797103 0.43169799 0.21797103 0.441349 0.21797103 0.441349 0.20830202 0.45096499\n\t\t 0.20830202 0.45096499 0.20830202 0.45096499 0.21797103 0.441349 0.21797103 0.46056101\n\t\t 0.20830202 0.46056101 0.21797103 0.45096499 0.21797103 0.45096499 0.21797103 0.45096499\n\t\t 0.20830202 0.46056101 0.20830202 0.46056101 0.21797103 0.46056101 0.20830202 0.470121\n\t\t 0.20830202 0.470121 0.20830202 0.470121 0.21797103 0.46056101 0.21797103 0.470121\n\t\t 0.21797103 0.470121 0.20830202 0.47966799 0.20830202 0.47966799 0.20830202 0.47966799\n\t\t 0.21797103 0.470121 0.21797103 0.47966799 0.21797103 0.47966799 0.20830202 0.48919401\n\t\t 0.20830202 0.48919401 0.20830202 0.48919401 0.21797103 0.47966799 0.21797103 0.48919401\n\t\t 0.21797103 0.48919401 0.20830202 0.49872699 0.20830202 0.49872699 0.20830202 0.49872699\n\t\t 0.21797103 0.48919401 0.21797103 0.49872699 0.21797103 0.49872699 0.20830202 0.50826001\n\t\t 0.20830202 0.50826001 0.20830202 0.50826001 0.21797103 0.49872699 0.21797103 0.50826001\n\t\t 0.21797103 0.50826001 0.20830202 0.51781899 0.20830202 0.51781899 0.20830202 0.51781899\n\t\t 0.21797103 0.50826001 0.21797103 0.51781899 0.21797103 0.51781899 0.20830202 0.52739501\n\t\t 0.20830202 0.52739501 0.20830202 0.52739501 0.21797103 0.51781899 0.21797103 0.52739501\n\t\t 0.21797103 0.52739501 0.20830202 0.53700697 0.20830202 0.53700697 0.20830202 0.53700697\n\t\t 0.21797103 0.52739501 0.21797103 0.53700697 0.21797103 0.53700697 0.20830202 0.54662901\n\t\t 0.20830202 0.54662901 0.20830202 0.54662901 0.21797103 0.53700697 0.21797103 0.54662901\n\t\t 0.21797103 0.54662901 0.20830202 0.55635399 0.20843101 0.55635399 0.20843101 0.55623502\n\t\t 0.21797103 0.54662901 0.21797103 0.56634003 0.20772398 0.55635399 0.20843101 0.55623502\n\t\t 0.20373797 0.55623502 0.20373797 0.56577897 0.20308 0.56634003 0.20772398 0.44215599\n\t\t 0.0089539886 0.44615301 0.012265027 0.44331801 0.017507017 0.44331801 0.017507017\n\t\t 0.43835899 0.015973985 0.44215599 0.0089539886 0.43835899 0.015973985 0.44331801\n\t\t 0.017507017 0.442702 0.023451984 0.442702 0.023451984 0.437534 0.023936987 0.43835899\n\t\t 0.015973985 0.437534 0.023936987 0.442702 0.023451984 0.44440401 0.029163003 0.44440401\n\t\t 0.029163003 0.43981299 0.031585991 0.437534 0.023936987 0.43981299 0.031585991 0.44440401\n\t\t 0.029163003 0.44817299 0.033802986 0.44817299 0.033802986 0.44486099 0.037800014\n\t\t 0.43981299 0.031585991 0.44486099 0.037800014 0.44817299 0.033802986 0.45341399 0.036638021\n\t\t 0.45341399 0.036638021 0.45188099 0.041597009 0.44486099 0.037800014 0.45188099 0.041597009\n\t\t 0.45341399 0.036638021 0.45936 0.037253022 0.45936 0.037253022 0.45984399 0.042420983\n\t\t 0.45188099 0.041597009 0.45984399 0.042420983 0.45936 0.037253022 0.46507099 0.035552025\n\t\t 0.46507099 0.035552025 0.467493 0.040143013 0.45984399 0.042420983 0.467493 0.040143013\n\t\t 0.46507099 0.035552025 0.46970999 0.031782985 0.46970999 0.031782985 0.47370699 0.035094023\n\t\t 0.467493 0.040143013 0.47370699 0.035094023 0.46970999 0.031782985 0.472545 0.026542008\n\t\t 0.472545 0.026542008 0.47750399 0.02807498 0.47370699 0.035094023 0.47750399 0.02807498\n\t\t 0.472545 0.026542008 0.47316101 0.020596027 0.47316101 0.020596027 0.47832799 0.020111024\n\t\t 0.47750399 0.02807498 0.47832799 0.020111024 0.47316101 0.020596027 0.471459 0.014885008\n\t\t 0.471459 0.014885008 0.47604999 0.012462974 0.47832799 0.020111024 0.47604999 0.012462974\n\t\t 0.471459 0.014885008 0.46768999 0.010245979 0.46768999 0.010245979 0.47100201 0.0062490106\n\t\t 0.47604999 0.012462974 0.47100201 0.0062490106 0.46768999 0.010245979 0.46244901\n\t\t 0.0074110031 0.46244901 0.0074110031 0.46398199 0.0024520159 0.47100201 0.0062490106\n\t\t 0.46398199 0.0024520159 0.46244901 0.0074110031 0.456503 0.0067949891 0.456503 0.0067949891\n\t\t 0.45601901 0.001627028 0.46398199 0.0024520159 0.45601901 0.001627028 0.456503 0.0067949891\n\t\t 0.450793 0.0084969997 0.450793 0.0084969997 0.44837001 0.0039060116 0.45601901 0.001627028\n\t\t 0.44837001 0.0039060116 0.450793 0.0084969997 0.44615301 0.012265027 0.44615301 0.012265027\n\t\t 0.44215599 0.0089539886 0.44837001 0.0039060116 0.70117998 0.21816897 0.70117998\n\t\t 0.21535802 0.70609599 0.21535802 0.70609599 0.21535802 0.70609599 0.21816897 0.70117998\n\t\t 0.21816897 0.70609599 0.21816897 0.70609599 0.21535802 0.711016 0.21535802 0.711016\n\t\t 0.21535802 0.711016 0.21816897 0.70609599 0.21816897 0.711016 0.21816897 0.711016\n\t\t 0.21535802 0.71592999 0.21535802 0.71592999 0.21535802 0.71592999 0.21816897 0.711016\n\t\t 0.21816897 0.71592999 0.21816897 0.71592999 0.21535802 0.720851 0.21535802 0.720851\n\t\t 0.21535802 0.720851 0.21816897 0.71592999 0.21816897 0.70117998 0.21535802 0.70117998\n\t\t 0.21816897;\n\tsetAttr \".uvst[0].uvsp[11750:11999]\" 0.69625998 0.21816897 0.69625998 0.21816897\n\t\t 0.69625998 0.21535802 0.70117998 0.21535802 0.69625998 0.21535802 0.69625998 0.21816897\n\t\t 0.69134498 0.21816897 0.69134498 0.21816897 0.69134498 0.21535802 0.69625998 0.21535802\n\t\t 0.69134498 0.21535802 0.69134498 0.21816897 0.686423 0.21816897 0.686423 0.21816897\n\t\t 0.686423 0.21535802 0.69134498 0.21535802 0.686423 0.21535802 0.686423 0.21816897\n\t\t 0.68150598 0.21816897 0.68150598 0.21816897 0.68150598 0.21535802 0.686423 0.21535802\n\t\t 0.68150598 0.21535802 0.68150598 0.21816897 0.67658401 0.21816897 0.67658401 0.21816897\n\t\t 0.67658401 0.21535802 0.68150598 0.21535802 0.67658401 0.21535802 0.67658401 0.21816897\n\t\t 0.67166501 0.21816897 0.67166501 0.21816897 0.67166501 0.21535802 0.67658401 0.21535802\n\t\t 0.67166501 0.21535802 0.67166501 0.21816897 0.66674 0.21816897 0.66674 0.21816897\n\t\t 0.66674 0.21535802 0.67166501 0.21535802 0.66674 0.21535802 0.66674 0.21816897 0.66182101\n\t\t 0.21816897 0.66182101 0.21816897 0.66182101 0.21535802 0.66674 0.21535802 0.66182101\n\t\t 0.21535802 0.66182101 0.21816897 0.656896 0.21816897 0.656896 0.21816897 0.656896\n\t\t 0.21535802 0.66182101 0.21535802 0.656896 0.21535802 0.656896 0.21816897 0.651977\n\t\t 0.21816897 0.651977 0.21816897 0.651977 0.21535802 0.656896 0.21535802 0.651977 0.21535802\n\t\t 0.651977 0.21816897 0.64705402 0.21816897 0.64705402 0.21816897 0.64705402 0.21535802\n\t\t 0.651977 0.21535802 0.64705402 0.21535802 0.64705402 0.21816897 0.64219099 0.21812803\n\t\t 0.64219099 0.21812803 0.64223498 0.21531701 0.64705402 0.21535802 0.63389999 0.20893198\n\t\t 0.62909502 0.20893198 0.62909502 0.20627898 0.62909502 0.20627898 0.63389999 0.20627898\n\t\t 0.63389999 0.20893198 0.63389999 0.20893198 0.63389999 0.20627898 0.63869101 0.20627898\n\t\t 0.63869101 0.20627898 0.63869101 0.20893198 0.63389999 0.20893198 0.643466 0.20893198\n\t\t 0.63869101 0.20893198 0.63869101 0.20627898 0.63869101 0.20627898 0.643466 0.20627898\n\t\t 0.643466 0.20893198 0.643466 0.20893198 0.643466 0.20627898 0.64825702 0.20627898\n\t\t 0.64825702 0.20627898 0.64825702 0.20893198 0.643466 0.20893198 0.62909502 0.20627898\n\t\t 0.62909502 0.20893198 0.62428498 0.20893198 0.62428498 0.20893198 0.62428498 0.20627898\n\t\t 0.62909502 0.20627898 0.61947697 0.20627898 0.62428498 0.20627898 0.62428498 0.20893198\n\t\t 0.62428498 0.20893198 0.61947697 0.20893198 0.61947697 0.20627898 0.61947697 0.20627898\n\t\t 0.61947697 0.20893198 0.61466801 0.20893198 0.61466801 0.20893198 0.61466801 0.20627898\n\t\t 0.61947697 0.20627898 0.60986501 0.20627898 0.61466801 0.20627898 0.61466801 0.20893198\n\t\t 0.61466801 0.20893198 0.60986501 0.20893198 0.60986501 0.20627898 0.60986501 0.20627898\n\t\t 0.60986501 0.20893198 0.60505599 0.20893198 0.60505599 0.20893198 0.60505599 0.20627898\n\t\t 0.60986501 0.20627898 0.60025299 0.20627898 0.60505599 0.20627898 0.60505599 0.20893198\n\t\t 0.60505599 0.20893198 0.60025299 0.20893198 0.60025299 0.20627898 0.60025299 0.20627898\n\t\t 0.60025299 0.20893198 0.59544301 0.20893198 0.59544301 0.20893198 0.59544301 0.20627898\n\t\t 0.60025299 0.20627898 0.59063399 0.20627898 0.59544301 0.20627898 0.59544301 0.20893198\n\t\t 0.59544301 0.20893198 0.59063399 0.20893198 0.59063399 0.20627898 0.59063399 0.20627898\n\t\t 0.59063399 0.20893198 0.58581197 0.20893198 0.58581197 0.20893198 0.58581197 0.20627898\n\t\t 0.59063399 0.20627898 0.58099401 0.20627898 0.58581197 0.20627898 0.58581197 0.20893198\n\t\t 0.58581197 0.20893198 0.58099401 0.20893198 0.58099401 0.20627898 0.58099401 0.20627898\n\t\t 0.58099401 0.20893198 0.57617497 0.20893198 0.57617497 0.20893198 0.57617497 0.20627898\n\t\t 0.58099401 0.20627898 0.64825702 0.20627898 0.65324497 0.20608002 0.653566 0.20846701\n\t\t 0.653566 0.20846701 0.64819801 0.20868403 0.64825702 0.20627898 0.88393098 0.096786976\n\t\t 0.888556 0.095350981 0.89339298 0.095794976 0.88393098 0.096786976 0.89339298 0.095794976\n\t\t 0.87794298 0.10417998 0.89339298 0.095794976 0.88632703 0.11962998 0.87794298 0.10417998\n\t\t 0.89339298 0.095794976 0.90177798 0.11124498 0.88632703 0.11962998 0.89339298 0.095794976\n\t\t 0.90078503 0.10178399 0.90177798 0.11124498 0.89339298 0.095794976 0.89767897 0.098048985\n\t\t 0.90078503 0.10178399 0.90078503 0.10178399 0.90222198 0.106408 0.90177798 0.11124498\n\t\t 0.90177798 0.11124498 0.89578903 0.11863703 0.88632703 0.11962998 0.90177798 0.11124498\n\t\t 0.89952397 0.11553103 0.89578903 0.11863703 0.89578903 0.11863703 0.89116502 0.12007397\n\t\t 0.88632703 0.11962998 0.88632703 0.11962998 0.87893498 0.11364102 0.87794298 0.10417998\n\t\t 0.88632703 0.11962998 0.88204199 0.11737502 0.87893498 0.11364102 0.87893498 0.11364102\n\t\t 0.87749898 0.10901701 0.87794298 0.10417998 0.88393098 0.096786976 0.87794298 0.10417998\n\t\t 0.88019699 0.099893987 0.72658002 0.236624 0.74326199 0.23676199 0.74326199 0.23676199\n\t\t 0.74326199 0.23676199 0.74603802 0.23697001 0.74603802 0.23697001 0.745915 0.24062502\n\t\t 0.74603802 0.23697001 0.74792701 0.23739201 0.74792701 0.23739201 0.745915 0.24062502\n\t\t 0.72658002 0.236624 0.72211802 0.23665398 0.72658002 0.236624 0.72211802 0.23665398\n\t\t 0.72005397 0.23674202 0.72211802 0.23665398 0.74743998 0.24097198 0.74792701 0.23739201\n\t\t 0.749304 0.23787302 0.749304 0.23787302 0.74743998 0.24097198 0.749304 0.23787302\n\t\t 0.750736 0.23841602 0.750736 0.23841602 0.72005397 0.23674202 0.71864402 0.23684198\n\t\t 0.72005397 0.23674202 0.71864402 0.23684198 0.69898802 0.23705399 0.71864402 0.23684198\n\t\t 0.69898802 0.23705399 0.697537 0.23698699 0.69898802 0.23705399 0.697537 0.23698699\n\t\t 0.69550502 0.23693103 0.697537 0.23698699 0.69550502 0.23693103 0.69138801 0.23692101\n\t\t 0.69550502 0.23693103 0.69138801 0.23692101 0.67656201 0.23678899;\n\tsetAttr \".uvst[0].uvsp[12000:12249]\" 0.69138801 0.23692101 0.67656201 0.23678899\n\t\t 0.67394203 0.23675901 0.67656201 0.23678899 0.67394203 0.23675901 0.67354399 0.24039102\n\t\t 0.67194498 0.236821 0.67394203 0.23675901 0.67194498 0.236821 0.671857 0.240426 0.67041397\n\t\t 0.23685801 0.67194498 0.236821 0.67041397 0.23685801 0.66880602 0.236938 0.67041397\n\t\t 0.23685801 0.66880602 0.236938 0.62691599 0.23678797 0.66880602 0.236938 0.690741\n\t\t 0.24233198 0.69080198 0.24055499 0.69494301 0.24056 0.69494301 0.24056 0.69480199\n\t\t 0.24232 0.690741 0.24233198 0.69480199 0.24232 0.69494301 0.24056 0.69702202 0.24063098\n\t\t 0.69702202 0.24063098 0.69685602 0.24241602 0.69480199 0.24232 0.69685602 0.24241602\n\t\t 0.69702202 0.24063098 0.698672 0.24072701 0.698672 0.24072701 0.69852602 0.24251598\n\t\t 0.69685602 0.24241602 0.69852602 0.24251598 0.698672 0.24072701 0.718602 0.24052697\n\t\t 0.718602 0.24052697 0.71879399 0.24230498 0.69852602 0.24251598 0.71879399 0.24230498\n\t\t 0.718602 0.24052697 0.72017002 0.24042201 0.72017002 0.24042201 0.72035998 0.24220002\n\t\t 0.71879399 0.24230498 0.72035998 0.24220002 0.72017002 0.24042201 0.72228098 0.24032301\n\t\t 0.72228098 0.24032301 0.72242397 0.24208301 0.72035998 0.24220002 0.72242397 0.24208301\n\t\t 0.72228098 0.24032301 0.72677302 0.2403 0.72677302 0.2403 0.72679299 0.24208099 0.72242397\n\t\t 0.24208301 0.72679299 0.24208099 0.72677302 0.2403 0.743393 0.24045801 0.743393 0.24045801\n\t\t 0.743038 0.24225497 0.72679299 0.24208099 0.743038 0.24225497 0.743393 0.24045801\n\t\t 0.745915 0.24062502 0.745915 0.24062502 0.74526501 0.24236202 0.743038 0.24225497\n\t\t 0.74526501 0.24236202 0.745915 0.24062502 0.74743998 0.24097198 0.74743998 0.24097198\n\t\t 0.74656898 0.24246001 0.74526501 0.24236202 0.74656898 0.24246001 0.74743998 0.24097198\n\t\t 0.748469 0.241458 0.748469 0.241458 0.74753398 0.24304098 0.74656898 0.24246001 0.74753398\n\t\t 0.24304098 0.748469 0.241458 0.74973702 0.24207097 0.74973702 0.24207097 0.748595\n\t\t 0.24372602 0.74753398 0.24304098 0.69080198 0.24055499 0.690741 0.24233198 0.67611003\n\t\t 0.24224401 0.67611003 0.24224401 0.67595601 0.24044001 0.69080198 0.24055499 0.67595601\n\t\t 0.24044001 0.67611003 0.24224401 0.67382598 0.24214202 0.67382598 0.24214202 0.67354399\n\t\t 0.24039102 0.67595601 0.24044001 0.67354399 0.24039102 0.67382598 0.24214202 0.67224002\n\t\t 0.24206698 0.67224002 0.24206698 0.671857 0.240426 0.67354399 0.24039102 0.671857\n\t\t 0.240426 0.67224002 0.24206698 0.67085803 0.24233001 0.67085803 0.24233001 0.67062998\n\t\t 0.240538 0.671857 0.240426 0.67062998 0.240538 0.67085803 0.24233001 0.66930699 0.24248499\n\t\t 0.66930699 0.24248499 0.669119 0.240641 0.67062998 0.240538 0.669119 0.240641 0.66930699\n\t\t 0.24248499 0.62714499 0.24221599 0.62714499 0.24221599 0.627114 0.24045402 0.669119\n\t\t 0.240641 0.432439 0.10012001 0.43568501 0.10356498 0.445032 0.11902899 0.432439 0.10012001\n\t\t 0.445032 0.11902899 0.430574 0.099126995 0.445032 0.11902899 0.44459701 0.12241203\n\t\t 0.430574 0.099126995 0.445032 0.11902899 0.44571799 0.12114799 0.44459701 0.12241203\n\t\t 0.44571799 0.12114799 0.44556201 0.12223101 0.44459701 0.12241203 0.44459701 0.12241203\n\t\t 0.395702 0.12122703 0.430574 0.099126995 0.395702 0.12122703 0.40053001 0.10336798\n\t\t 0.430574 0.099126995 0.395702 0.12122703 0.394171 0.12119001 0.40053001 0.10336798\n\t\t 0.394171 0.12119001 0.39258599 0.11971301 0.40053001 0.10336798 0.394171 0.12119001\n\t\t 0.39301699 0.12092799 0.39258599 0.11971301 0.39258599 0.11971301 0.393029 0.11759001\n\t\t 0.40053001 0.10336798 0.40053001 0.10336798 0.42923999 0.098814011 0.430574 0.099126995\n\t\t 0.40053001 0.10336798 0.406618 0.098819017 0.42923999 0.098814011 0.40053001 0.10336798\n\t\t 0.403409 0.10012299 0.406618 0.098819017 0.403409 0.10012299 0.40521401 0.099123001\n\t\t 0.406618 0.098819017 0.44459701 0.12241203 0.443259 0.12237799 0.395702 0.12122703\n\t\t 0.104667 0.61258399 0.103958 0.61321902 0.090680197 0.59758103 0.090680197 0.59758103\n\t\t 0.091200002 0.59672099 0.104667 0.61258399 0.103958 0.61321902 0.104667 0.61258399\n\t\t 0.118742 0.62760603 0.118742 0.62760603 0.117816 0.62801802 0.103958 0.61321902 0.100029\n\t\t 0.61672699 0.103958 0.61321902 0.117816 0.62801802 0.117816 0.62801802 0.108865 0.62623501\n\t\t 0.100029 0.61672699 0.108865 0.62623501 0.117816 0.62801802 0.100041 0.629282 0.108865\n\t\t 0.62623501 0.100041 0.629282 0.093733899 0.62238401 0.100041 0.629282 0.093733899\n\t\t 0.62238401 0.087287404 0.61489296 0.093733899 0.62238401 0.087287404 0.61489296 0.090680197\n\t\t 0.59758103 0.103958 0.61321902 0.100029 0.61672699 0.091367699 0.60661602 0.091367699\n\t\t 0.60661602 0.090680197 0.59758103 0.103958 0.61321902 0.090680197 0.59758103 0.091367699\n\t\t 0.60661602 0.087287404 0.61489296 0.0063268198 0.298406 0.0061354502 0.29938298 0.0063268198\n\t\t 0.298406 0.0061354502 0.29938298 0.058857199 0.29280502 0.058857199 0.29280502 0.082183003\n\t\t 0.29082698 0.058857199 0.29280502 0.082183003 0.29082698 0.127142 0.28692502 0.082183003\n\t\t 0.29082698 0.127142 0.28692502 0.184037 0.282179 0.127142 0.28692502 0.184037 0.282179\n\t\t 0.21425299 0.28079402 0.184037 0.282179 0.21425299 0.28079402 0.24440999 0.28066498\n\t\t 0.21425299 0.28079402 0.24440999 0.28066498 0.29013699 0.28385103 0.24440999 0.28066498\n\t\t 0.29013699 0.28385103 0.33498001 0.29764301 0.29013699 0.28385103 0.33498001 0.29764301\n\t\t 0.33996099 0.29891402 0.33498001 0.29764301 0.33996099 0.29891402 0.34355599 0.29962099\n\t\t 0.33996099 0.29891402 0.34718701 0.29982001 0.34355599 0.29962099 0.34718701 0.29982001\n\t\t 0.374116 0.299007 0.34718701 0.29982001;\n\tsetAttr \".uvst[0].uvsp[12250:12499]\" 0.374116 0.299007 0.374116 0.299007 0.39788601\n\t\t 0.30092001 0.374116 0.299007 0.39788601 0.30092001 0.40132099 0.30086702 0.39788601\n\t\t 0.30092001 0.408622 0.29900301 0.40132099 0.30086702 0.399611 0.27692503 0.399611\n\t\t 0.27692503 0.408622 0.29900301 0.408622 0.29900301 0.40708101 0.27581197 0.454355\n\t\t 0.284621 0.408622 0.29900301 0.454355 0.284621 0.50234902 0.280904 0.454355 0.284621\n\t\t 0.50234902 0.280904 0.53359401 0.280864 0.50234902 0.280904 0.53359401 0.280864 0.56490302\n\t\t 0.28246301 0.53359401 0.280864 0.56490302 0.28246301 0.62393999 0.287305 0.56490302\n\t\t 0.28246301 0.62393999 0.287305 0.67091298 0.29127902 0.62393999 0.287305 0.69557202\n\t\t 0.29304302 0.67091298 0.29127902 0.69557202 0.29304302 0.69557202 0.29304302 0.69557202\n\t\t 0.29304302 0.75331402 0.297288 0.69557202 0.29304302 0.75331402 0.297288 0.753555\n\t\t 0.29826301 0.41911301 0.49823201 0.42238399 0.48355001 0.42238399 0.48355001 0.42238399\n\t\t 0.48355001 0.42507201 0.46931601 0.42507201 0.46931601 0.441111 0.36899799 0.44111201\n\t\t 0.37209898 0.441111 0.36899799 0.107224 0.29610503 0.107185 0.30457097 0.097301297\n\t\t 0.30427998 0.097301297 0.30427998 0.093926199 0.29568899 0.107224 0.29610503 0.107185\n\t\t 0.30457097 0.107224 0.29610503 0.120205 0.29597998 0.120205 0.29597998 0.116527 0.30455899\n\t\t 0.107185 0.30457097 0.53473198 0.07052201 0.53404897 0.061559975 0.54470497 0.060621977\n\t\t 0.54470497 0.060621977 0.54538798 0.069584012 0.53473198 0.07052201 0.54410499 0.052148998\n\t\t 0.54470497 0.060621977 0.53404897 0.061559975 0.53404897 0.061559975 0.53344899 0.053086996\n\t\t 0.54410499 0.052148998 0.73947698 0.26066601 0.73932999 0.24997002 0.74765599 0.25286299\n\t\t 0.74765599 0.25286299 0.74780297 0.26355898 0.73947698 0.26066601 0.57358599 0.55711997\n\t\t 0.58657497 0.557401 0.58600402 0.569148 0.58600402 0.569148 0.57302499 0.56886804\n\t\t 0.57358599 0.55711997 0.59930003 0.569565 0.58600402 0.569148 0.58657497 0.557401\n\t\t 0.58657497 0.557401 0.59988302 0.55781901 0.59930003 0.569565 0.56447798 0.07941401\n\t\t 0.55619502 0.082171023 0.55615902 0.071475029 0.55615902 0.071475029 0.56444198 0.068718016\n\t\t 0.56447798 0.07941401 0.265434 0.39880198 0.26430899 0.40451401 0.26430899 0.40451401\n\t\t 0.265434 0.39880198 0.26925701 0.38131499 0.265434 0.39880198 0.27057099 0.37539798\n\t\t 0.26925701 0.38131499 0.27057099 0.37539798 0.0092298295 0.53191501 0.0132381 0.534702\n\t\t 0.0132381 0.534702 0.0116556 0.53807998 0.0069887801 0.53664899 0.0116556 0.53807998\n\t\t 0.0111046 0.541852 0.0062244399 0.54178202 0.0111046 0.541852 0.0115793 0.54568398\n\t\t 0.0068540499 0.54690397 0.0115793 0.54568398 0.0130195 0.54926503 0.0087836897 0.55168998\n\t\t 0.0130195 0.54926503 0.0153284 0.55229902 0.0119378 0.55580997 0.0153284 0.55229902\n\t\t 0.018348699 0.554488 0.016191 0.55886698 0.018348699 0.554488 0.0218278 0.55556899\n\t\t 0.021248501 0.56041598 0.0218278 0.55556899 0.0129049 0.52811098 0.015758701 0.53207201\n\t\t 0.0129049 0.52811098 0.72103298 0.254825 0.72103298 0.264543 0.72103298 0.254825\n\t\t 0.71565402 0.264543 0.71565402 0.254825 0.71565402 0.264543 0.71027499 0.264543 0.71027499\n\t\t 0.254825 0.71027499 0.264543 0.70489597 0.264543 0.70489597 0.254825 0.70489597 0.264543\n\t\t 0.69951701 0.264543 0.69951701 0.254825 0.69951701 0.264543 0.69413799 0.264543 0.69413698\n\t\t 0.254825 0.69413799 0.264543 0.68875802 0.264543 0.688757 0.254825 0.68875802 0.264543\n\t\t 0.68337899 0.26454401 0.68337798 0.25482601 0.68337899 0.26454401 0.726412 0.254825\n\t\t 0.726412 0.264543 0.726412 0.254825 0.194482 0.37621498 0.219256 0.376589 0.21823999\n\t\t 0.38254303 0.21823999 0.38254303 0.193514 0.38251901 0.194482 0.37621498 0.26245701\n\t\t 0.381432 0.21823999 0.38254303 0.219256 0.376589 0.219256 0.376589 0.263607 0.37535\n\t\t 0.26245701 0.381432 0.193514 0.38251901 0.21823999 0.38254303 0.214086 0.39859903\n\t\t 0.214086 0.39859903 0.21823999 0.38254303 0.26245701 0.381432 0.214086 0.39859903\n\t\t 0.189466 0.39827198 0.193514 0.38251901 0.187534 0.40378499 0.189466 0.39827198 0.214086\n\t\t 0.39859903 0.214086 0.39859903 0.212341 0.40412098 0.187534 0.40378499 0.257274 0.40461302\n\t\t 0.212341 0.40412098 0.214086 0.39859903 0.214086 0.39859903 0.25860301 0.39888299\n\t\t 0.257274 0.40461302 0.26245701 0.381432 0.25860301 0.39888299 0.214086 0.39859903\n\t\t 0.257274 0.40461302 0.25860301 0.39888299 0.265434 0.39880198 0.265434 0.39880198\n\t\t 0.25860301 0.39888299 0.26245701 0.381432 0.265434 0.39880198 0.26430899 0.40451401\n\t\t 0.257274 0.40461302 0.26245701 0.381432 0.263607 0.37535 0.27057099 0.37539798 0.27057099\n\t\t 0.37539798 0.26925701 0.38131499 0.26245701 0.381432 0.26245701 0.381432 0.26925701\n\t\t 0.38131499 0.265434 0.39880198 0.265434 0.39880198 0.27193299 0.399535 0.27246299\n\t\t 0.40635002 0.27246299 0.40635002 0.26430899 0.40451401 0.265434 0.39880198 0.27193299\n\t\t 0.399535 0.265434 0.39880198 0.26925701 0.38131499 0.26925701 0.38131499 0.27660501\n\t\t 0.38133699 0.27193299 0.399535 0.27660501 0.38133699 0.26925701 0.38131499 0.27057099\n\t\t 0.37539798 0.27057099 0.37539798 0.28032601 0.37520403 0.27660501 0.38133699 0.90434402\n\t\t 0.177679 0.90277499 0.183698 0.89583403 0.185574 0.90434402 0.177679 0.89583403 0.185574\n\t\t 0.910667 0.11564499 0.90434402 0.177679 0.910667 0.11564499 0.91274101 0.13796097\n\t\t 0.75379997 0.28426099 0.75661498 0.27311897 0.76301098 0.27288002 0.75379997 0.28426099\n\t\t 0.76301098 0.27288002 0.80336601 0.27692199 0.75379997 0.28426099 0.80336601 0.27692199\n\t\t 0.82487297 0.28268498;\n\tsetAttr \".uvst[0].uvsp[12500:12749]\" 0.56298 0.049157977 0.567644 0.051527023 0.56536001\n\t\t 0.053816974 0.56814599 0.048332989 0.567644 0.051527023 0.56298 0.049157977 0.56298\n\t\t 0.049157977 0.56667501 0.045454025 0.56814599 0.048332989 0.563793 0.043990016 0.56667501\n\t\t 0.045454025 0.56298 0.049157977 0.56298 0.049157977 0.56059998 0.04449898 0.563793\n\t\t 0.043990016 0.55831599 0.04678899 0.56059998 0.04449898 0.56298 0.049157977 0.56298\n\t\t 0.049157977 0.557814 0.049983025 0.55831599 0.04678899 0.55928499 0.052861989 0.557814\n\t\t 0.049983025 0.56298 0.049157977 0.56298 0.049157977 0.56216699 0.054325998 0.55928499\n\t\t 0.052861989 0.56536001 0.053816974 0.56216699 0.054325998 0.56298 0.049157977 0.0132381\n\t\t 0.534702 0.0116556 0.53807998 0.0069887801 0.53664899 0.0069887801 0.53664899 0.0092298295\n\t\t 0.53191501 0.0132381 0.534702 0.0132381 0.534702 0.0092298295 0.53191501 0.0129049\n\t\t 0.52811098 0.0129049 0.52811098 0.015758701 0.53207201 0.0132381 0.534702 0.0062244399\n\t\t 0.54178202 0.0069887801 0.53664899 0.0116556 0.53807998 0.0116556 0.53807998 0.0111046\n\t\t 0.541852 0.0062244399 0.54178202 0.0068540499 0.54690397 0.0062244399 0.54178202\n\t\t 0.0111046 0.541852 0.0111046 0.541852 0.0115793 0.54568398 0.0068540499 0.54690397\n\t\t 0.0087836897 0.55168998 0.0068540499 0.54690397 0.0115793 0.54568398 0.0115793 0.54568398\n\t\t 0.0130195 0.54926503 0.0087836897 0.55168998 0.0119378 0.55580997 0.0087836897 0.55168998\n\t\t 0.0130195 0.54926503 0.0130195 0.54926503 0.0153284 0.55229902 0.0119378 0.55580997\n\t\t 0.016191 0.55886698 0.0119378 0.55580997 0.0153284 0.55229902 0.0153284 0.55229902\n\t\t 0.018348699 0.554488 0.016191 0.55886698 0.021248501 0.56041598 0.016191 0.55886698\n\t\t 0.018348699 0.554488 0.018348699 0.554488 0.0218278 0.55556899 0.021248501 0.56041598\n\t\t 0.026567999 0.56011403 0.021248501 0.56041598 0.0218278 0.55556899 0.0218278 0.55556899\n\t\t 0.025409101 0.55537099 0.026567999 0.56011403 0.018987801 0.53051001 0.015758701\n\t\t 0.53207201 0.0129049 0.52811098 0.0129049 0.52811098 0.0177055 0.52579999 0.018987801\n\t\t 0.53051001 0.72103298 0.254825 0.72103298 0.264543 0.71565402 0.264543 0.71565402\n\t\t 0.264543 0.71565402 0.254825 0.72103298 0.254825 0.72103298 0.264543 0.72103298 0.254825\n\t\t 0.726412 0.254825 0.726412 0.254825 0.726412 0.264543 0.72103298 0.264543 0.71565402\n\t\t 0.254825 0.71565402 0.264543 0.71027499 0.264543 0.71027499 0.264543 0.71027499 0.254825\n\t\t 0.71565402 0.254825 0.71027499 0.254825 0.71027499 0.264543 0.70489597 0.264543 0.70489597\n\t\t 0.264543 0.70489597 0.254825 0.71027499 0.254825 0.70489597 0.254825 0.70489597 0.264543\n\t\t 0.69951701 0.264543 0.69951701 0.264543 0.69951701 0.254825 0.70489597 0.254825 0.69951701\n\t\t 0.254825 0.69951701 0.264543 0.69413799 0.264543 0.69413799 0.264543 0.69413698 0.254825\n\t\t 0.69951701 0.254825 0.69413698 0.254825 0.69413799 0.264543 0.68875802 0.264543 0.68875802\n\t\t 0.264543 0.688757 0.254825 0.69413698 0.254825 0.688757 0.254825 0.68875802 0.264543\n\t\t 0.68337899 0.26454401 0.68337899 0.26454401 0.68337798 0.25482601 0.688757 0.254825\n\t\t 0.68337798 0.25482601 0.68337899 0.26454401 0.67799902 0.26454401 0.67799902 0.26454401\n\t\t 0.67799801 0.25482702 0.68337798 0.25482601 0.726412 0.264543 0.726412 0.254825 0.73179197\n\t\t 0.254825 0.73179197 0.254825 0.73179197 0.264543 0.726412 0.264543 0.90133798 0.25193799\n\t\t 0.90133798 0.25193799 0.90133798 0.25193799 0.90133798 0.25193799 0.89735597 0.25169301\n\t\t 0.91438103 0.251091 0.91438103 0.251091 0.91438103 0.251091 0.90133101 0.25049502\n\t\t 0.91442102 0.24979299 0.91442102 0.24979299 0.91442102 0.24979299 0.93048799 0.24927598\n\t\t 0.93048799 0.24927598 0.90133101 0.25049502 0.90133101 0.25049502 0.89735299 0.25080597\n\t\t 0.89735299 0.25080597 0.93048799 0.24927598 0.94680798 0.24874902 0.947447 0.25063002\n\t\t 0.95056999 0.25060302 0.947447 0.25063002 0.947447 0.25063002 0.94680703 0.25253397\n\t\t 0.94967401 0.25337201 0.94680703 0.25253397 0.94680703 0.25253397 0.945508 0.25374198\n\t\t 0.945508 0.25374198 0.945508 0.25374198 0.94293398 0.25417 0.94293398 0.25417 0.94293398\n\t\t 0.25417 0.93071401 0.25439698 0.93071401 0.25439698 0.93071401 0.25439698 0.914446\n\t\t 0.25380802 0.914446 0.25380802 0.914446 0.25380802 0.90137303 0.25276601 0.94680798\n\t\t 0.24874902 0.94550902 0.247585 0.94680798 0.24874902 0.94965398 0.24786001 0.90137303\n\t\t 0.25276601 0.90137303 0.25276601 0.89735597 0.25169301 0.8944 0.25249898 0.89735597\n\t\t 0.25169301 0.89735597 0.25169301 0.89713699 0.251252 0.89397299 0.25128901 0.89713699\n\t\t 0.251252 0.89713699 0.251252 0.89735299 0.25080597 0.89437801 0.250063 0.90135503\n\t\t 0.24966502 0.90135503 0.24966502 0.90135503 0.24966502 0.914424 0.24837399 0.914424\n\t\t 0.24837399 0.93071502 0.24765497 0.93071502 0.24765497 0.93071502 0.24765497 0.94294\n\t\t 0.24722999 0.94294 0.24722999 0.94294 0.24722999 0.94294 0.24722999 0.94550902 0.247585\n\t\t 0.94965398 0.24786001 0.94550902 0.247585 0.76687902 0.29221499 0.76591301 0.29156601\n\t\t 0.76591301 0.29156601 0.76644701 0.29311901 0.76525497 0.29312301 0.76525497 0.29312301\n\t\t 0.76685601 0.29402 0.76589102 0.29468203 0.76589102 0.29468203 0.78600901 0.28922802\n\t\t 0.77283603 0.29037899 0.77283603 0.29037899 0.77283603 0.29037899 0.76878798 0.29124999\n\t\t 0.76878798 0.29124999 0.76878798 0.29124999 0.76687902 0.29221499 0.76687902 0.29221499\n\t\t 0.76687902 0.29221499 0.76644701 0.29311901 0.76644701 0.29311901 0.76644701 0.29311901\n\t\t 0.76685601 0.29402 0.76685601 0.29402 0.76685601 0.29402 0.768767 0.29493898 0.768767\n\t\t 0.29493898 0.768767 0.29493898;\n\tsetAttr \".uvst[0].uvsp[12750:12999]\" 0.77278298 0.29590601 0.77278298 0.29590601\n\t\t 0.77278298 0.29590601 0.78586 0.29766798 0.78586 0.29766798 0.78586 0.29766798 0.80198997\n\t\t 0.29885203 0.80198997 0.29885203 0.80198997 0.29885203 0.814228 0.29858601 0.814228\n\t\t 0.29858601 0.814228 0.29858601 0.81769699 0.29788297 0.81769699 0.29788297 0.81769699\n\t\t 0.29788297 0.82018799 0.29617798 0.82018799 0.29617798 0.82018799 0.29617798 0.82118601\n\t\t 0.29372698 0.82118601 0.29372698 0.82118601 0.29372698 0.820315 0.291251 0.820315\n\t\t 0.291251 0.820315 0.291251 0.81797302 0.289415 0.81797302 0.289415 0.81797302 0.289415\n\t\t 0.81451702 0.28873903 0.81451702 0.28873903 0.81451702 0.28873903 0.80224001 0.288715\n\t\t 0.80224001 0.288715 0.80224001 0.288715 0.78600901 0.28922802 0.78600901 0.28922802\n\t\t 0.44155499 0.30825198 0.44155401 0.31336302 0.44155401 0.31336302 0.44742799 0.30940098\n\t\t 0.44740999 0.31451201 0.44740999 0.31451201 0.453062 0.309955 0.45302999 0.31506503\n\t\t 0.45302999 0.31506503 0.45864701 0.30947298 0.458608 0.31458402 0.458608 0.31458402\n\t\t 0.464434 0.308384 0.46439901 0.31349498 0.46439901 0.31349498 0.52679503 0.30786097\n\t\t 0.527174 0.312958 0.527174 0.312958 0.53083301 0.30842102 0.53123498 0.31351602 0.53123498\n\t\t 0.31351602 0.53759599 0.307863 0.538019 0.31295598 0.538019 0.31295598 0.914428 0.25238699\n\t\t 0.93047702 0.25273401 0.93071401 0.25439698 0.93071401 0.25439698 0.914446 0.25380802\n\t\t 0.914428 0.25238699 0.93047702 0.25273401 0.914428 0.25238699 0.91438103 0.251091\n\t\t 0.91438103 0.251091 0.93033999 0.251001 0.93047702 0.25273401 0.901232 0.25121802\n\t\t 0.91438103 0.251091 0.914428 0.25238699 0.914428 0.25238699 0.90133798 0.25193799\n\t\t 0.901232 0.25121802 0.90133798 0.25193799 0.914428 0.25238699 0.914446 0.25380802\n\t\t 0.914446 0.25380802 0.90137303 0.25276601 0.90133798 0.25193799 0.901232 0.25121802\n\t\t 0.90133798 0.25193799 0.89735597 0.25169301 0.89735597 0.25169301 0.89713699 0.251252\n\t\t 0.901232 0.25121802 0.89839298 0.25235897 0.89735597 0.25169301 0.90133798 0.25193799\n\t\t 0.90133798 0.25193799 0.90137303 0.25276601 0.89839298 0.25235897 0.94293398 0.25417\n\t\t 0.93071401 0.25439698 0.93047702 0.25273401 0.93047702 0.25273401 0.94320899 0.25260001\n\t\t 0.94293398 0.25417 0.94320899 0.25260001 0.93047702 0.25273401 0.93033999 0.251001\n\t\t 0.93033999 0.251001 0.94346601 0.25068599 0.94320899 0.25260001 0.94293398 0.25417\n\t\t 0.94320899 0.25260001 0.94680703 0.25253397 0.94680703 0.25253397 0.945508 0.25374198\n\t\t 0.94293398 0.25417 0.947447 0.25063002 0.94680703 0.25253397 0.94320899 0.25260001\n\t\t 0.94320899 0.25260001 0.94346601 0.25068599 0.947447 0.25063002 0.91438103 0.251091\n\t\t 0.901232 0.25121802 0.90133101 0.25049502 0.90133101 0.25049502 0.91442102 0.24979299\n\t\t 0.91438103 0.251091 0.93033999 0.251001 0.91438103 0.251091 0.91442102 0.24979299\n\t\t 0.91442102 0.24979299 0.90133101 0.25049502 0.90135503 0.24966502 0.90135503 0.24966502\n\t\t 0.914424 0.24837399 0.91442102 0.24979299 0.93048799 0.24927598 0.91442102 0.24979299\n\t\t 0.914424 0.24837399 0.91442102 0.24979299 0.93048799 0.24927598 0.93033999 0.251001\n\t\t 0.94346601 0.25068599 0.93033999 0.251001 0.93048799 0.24927598 0.914424 0.24837399\n\t\t 0.93071502 0.24765497 0.93048799 0.24927598 0.89837998 0.25011998 0.90135503 0.24966502\n\t\t 0.90133101 0.25049502 0.90133101 0.25049502 0.89735299 0.25080597 0.89837998 0.25011998\n\t\t 0.89735299 0.25080597 0.90133101 0.25049502 0.901232 0.25121802 0.901232 0.25121802\n\t\t 0.89713699 0.251252 0.89735299 0.25080597 0.93048799 0.24927598 0.94321299 0.24878299\n\t\t 0.94346601 0.25068599 0.94321299 0.24878299 0.93048799 0.24927598 0.93071502 0.24765497\n\t\t 0.947447 0.25063002 0.94346601 0.25068599 0.94321299 0.24878299 0.93071502 0.24765497\n\t\t 0.94294 0.24722999 0.94321299 0.24878299 0.94321299 0.24878299 0.94680798 0.24874902\n\t\t 0.947447 0.25063002 0.94680798 0.24874902 0.94321299 0.24878299 0.94294 0.24722999\n\t\t 0.94294 0.24722999 0.94550902 0.247585 0.94680798 0.24874902 0.95056999 0.25060302\n\t\t 0.947447 0.25063002 0.94680798 0.24874902 0.947447 0.25063002 0.95056999 0.25060302\n\t\t 0.94967401 0.25337201 0.94967401 0.25337201 0.94680703 0.25253397 0.947447 0.25063002\n\t\t 0.94680703 0.25253397 0.94967401 0.25337201 0.947236 0.25546998 0.947236 0.25546998\n\t\t 0.945508 0.25374198 0.94680703 0.25253397 0.945508 0.25374198 0.947236 0.25546998\n\t\t 0.94365799 0.25664699 0.94365799 0.25664699 0.94293398 0.25417 0.945508 0.25374198\n\t\t 0.94293398 0.25417 0.94365799 0.25664699 0.93091601 0.25720799 0.93091601 0.25720799\n\t\t 0.93071401 0.25439698 0.94293398 0.25417 0.93071401 0.25439698 0.93091601 0.25720799\n\t\t 0.91412902 0.256652 0.91412902 0.256652 0.914446 0.25380802 0.93071401 0.25439698\n\t\t 0.914446 0.25380802 0.91412902 0.256652 0.90042198 0.25514698 0.90042198 0.25514698\n\t\t 0.90137303 0.25276601 0.914446 0.25380802 0.94680798 0.24874902 0.94965398 0.24786001\n\t\t 0.95056999 0.25060302 0.94965398 0.24786001 0.94680798 0.24874902 0.94550902 0.247585\n\t\t 0.90137303 0.25276601 0.90042198 0.25514698 0.89626002 0.25385201 0.89626002 0.25385201\n\t\t 0.89839298 0.25235897 0.90137303 0.25276601 0.89839298 0.25235897 0.89626002 0.25385201\n\t\t 0.8944 0.25249898 0.8944 0.25249898 0.89735597 0.25169301 0.89839298 0.25235897 0.89735597\n\t\t 0.25169301 0.8944 0.25249898 0.89397299 0.25128901 0.89397299 0.25128901 0.89713699\n\t\t 0.251252 0.89735597 0.25169301 0.89713699 0.251252 0.89397299 0.25128901 0.89437801\n\t\t 0.250063 0.89437801 0.250063 0.89735299 0.25080597 0.89713699 0.251252 0.89735299\n\t\t 0.25080597 0.89437801 0.250063;\n\tsetAttr \".uvst[0].uvsp[13000:13249]\" 0.89622003 0.248667 0.89622003 0.248667 0.89837998\n\t\t 0.25011998 0.89735299 0.25080597 0.89837998 0.25011998 0.89622003 0.248667 0.900361\n\t\t 0.24729902 0.900361 0.24729902 0.90135503 0.24966502 0.89837998 0.25011998 0.90135503\n\t\t 0.24966502 0.900361 0.24729902 0.91402 0.24557698 0.91402 0.24557698 0.914424 0.24837399\n\t\t 0.90135503 0.24966502 0.93071502 0.24765497 0.914424 0.24837399 0.91402 0.24557698\n\t\t 0.91402 0.24557698 0.93088901 0.24485499 0.93071502 0.24765497 0.94294 0.24722999\n\t\t 0.93071502 0.24765497 0.93088901 0.24485499 0.93088901 0.24485499 0.94360697 0.24474299\n\t\t 0.94294 0.24722999 0.94294 0.24722999 0.94360697 0.24474299 0.94720399 0.24582601\n\t\t 0.94720399 0.24582601 0.94550902 0.247585 0.94294 0.24722999 0.94550902 0.247585\n\t\t 0.94720399 0.24582601 0.94965398 0.24786001 0.74862802 0.78362101 0.752581 0.78254902\n\t\t 0.76181602 0.79217499 0.76181602 0.79217499 0.75918001 0.79459399 0.74862802 0.78362101\n\t\t 0.75918001 0.79459399 0.76181602 0.79217499 0.772973 0.80377603 0.772973 0.80377603\n\t\t 0.77031398 0.80616999 0.75918001 0.79459399 0.77031398 0.80616999 0.772973 0.80377603\n\t\t 0.78173202 0.81295902 0.78173202 0.81295902 0.78019601 0.81653398 0.77031398 0.80616999\n\t\t 0.78019601 0.81653398 0.78173202 0.81295902 0.78499299 0.81528497 0.78499299 0.81528497\n\t\t 0.78486001 0.81962198 0.78019601 0.81653398 0.78486001 0.81962198 0.78499299 0.81528497\n\t\t 0.78849 0.815633 0.78849 0.815633 0.79027599 0.81984997 0.78486001 0.81962198 0.79027599\n\t\t 0.81984997 0.78849 0.815633 0.79130501 0.81424701 0.79130501 0.81424701 0.79483199\n\t\t 0.81749201 0.79027599 0.81984997 0.79483199 0.81749201 0.79130501 0.81424701 0.79251498\n\t\t 0.81138301 0.79251498 0.81138301 0.79690701 0.81285101 0.79483199 0.81749201 0.79690701\n\t\t 0.81285101 0.79251498 0.81138301 0.79192901 0.80796498 0.79192901 0.80796498 0.79631102\n\t\t 0.80754101 0.79690701 0.81285101 0.79631102 0.80754101 0.79192901 0.80796498 0.78936398\n\t\t 0.80491102 0.78936398 0.80491102 0.79287797 0.80316001 0.79631102 0.80754101 0.79287797\n\t\t 0.80316001 0.78936398 0.80491102 0.77948397 0.796911 0.77948397 0.796911 0.781726\n\t\t 0.79413098 0.79287797 0.80316001 0.781726 0.79413098 0.77948397 0.796911 0.767021\n\t\t 0.78668201 0.767021 0.78668201 0.76928598 0.783921 0.781726 0.79413098 0.76928598\n\t\t 0.783921 0.767021 0.78668201 0.75670999 0.77819002 0.75670999 0.77819002 0.75753301\n\t\t 0.774212 0.76928598 0.783921 0.75753301 0.774212 0.75670999 0.77819002 0.75311399\n\t\t 0.77566099 0.75311399 0.77566099 0.75254399 0.77105796 0.75753301 0.774212 0.75254399\n\t\t 0.77105796 0.75311399 0.77566099 0.75066102 0.77486098 0.75066102 0.77486098 0.74883801\n\t\t 0.77085501 0.75254399 0.77105796 0.74883801 0.77085501 0.75066102 0.77486098 0.74926102\n\t\t 0.77537602 0.74926102 0.77537602 0.74626702 0.772587 0.74883801 0.77085501 0.74626702\n\t\t 0.772587 0.74926102 0.77537602 0.74883097 0.77679098 0.74883097 0.77679098 0.74468398\n\t\t 0.77524102 0.74626702 0.772587 0.74468398 0.77524102 0.74883097 0.77679098 0.74979502\n\t\t 0.77916199 0.74979502 0.77916199 0.74512601 0.77889401 0.74468398 0.77524102 0.74512601\n\t\t 0.77889401 0.74979502 0.77916199 0.752581 0.78254902 0.752581 0.78254902 0.74862802\n\t\t 0.78362101 0.74512601 0.77889401 0.772524 0.29714102 0.77278298 0.29590601 0.78586\n\t\t 0.29766798 0.78586 0.29766798 0.78578001 0.29896599 0.772524 0.29714102 0.78578001\n\t\t 0.29896599 0.78586 0.29766798 0.80198997 0.29885203 0.80198997 0.29885203 0.80187899\n\t\t 0.30015701 0.78578001 0.29896599 0.80187899 0.30015701 0.80198997 0.29885203 0.814228\n\t\t 0.29858601 0.814228 0.29858601 0.81462502 0.29983902 0.80187899 0.30015701 0.81462502\n\t\t 0.29983902 0.814228 0.29858601 0.81769699 0.29788297 0.81769699 0.29788297 0.818573\n\t\t 0.29898298 0.81462502 0.29983902 0.818573 0.29898298 0.81769699 0.29788297 0.82018799\n\t\t 0.29617798 0.82018799 0.29617798 0.82150102 0.29684901 0.818573 0.29898298 0.82150102\n\t\t 0.29684901 0.82018799 0.29617798 0.82118601 0.29372698 0.82118601 0.29372698 0.822694\n\t\t 0.29374897 0.82150102 0.29684901 0.822694 0.29374897 0.82118601 0.29372698 0.820315\n\t\t 0.291251 0.820315 0.291251 0.82166302 0.29063398 0.822694 0.29374897 0.82166302 0.29063398\n\t\t 0.820315 0.291251 0.81797302 0.289415 0.81797302 0.289415 0.818896 0.28833598 0.82166302\n\t\t 0.29063398 0.818896 0.28833598 0.81797302 0.289415 0.81451702 0.28873903 0.81451702\n\t\t 0.28873903 0.814924 0.28747898 0.818896 0.28833598 0.814924 0.28747898 0.81451702\n\t\t 0.28873903 0.80224001 0.288715 0.80224001 0.288715 0.802158 0.28741002 0.814924 0.28747898\n\t\t 0.802158 0.28741002 0.80224001 0.288715 0.78600901 0.28922802 0.78600901 0.28922802\n\t\t 0.78601599 0.28792799 0.802158 0.28741002 0.78601599 0.28792799 0.78600901 0.28922802\n\t\t 0.77283603 0.29037899 0.77283603 0.29037899 0.77263099 0.28913897 0.78601599 0.28792799\n\t\t 0.77263099 0.28913897 0.77283603 0.29037899 0.76878798 0.29124999 0.76878798 0.29124999\n\t\t 0.76825899 0.29016697 0.77263099 0.28913897 0.76825899 0.29016697 0.76878798 0.29124999\n\t\t 0.76687902 0.29221499 0.76687902 0.29221499 0.76591301 0.29156601 0.76825899 0.29016697\n\t\t 0.76591301 0.29156601 0.76687902 0.29221499 0.76644701 0.29311901 0.76644701 0.29311901\n\t\t 0.76525497 0.29312301 0.76591301 0.29156601 0.76525497 0.29312301 0.76644701 0.29311901\n\t\t 0.76685601 0.29402 0.76685601 0.29402 0.76589102 0.29468203 0.76525497 0.29312301\n\t\t 0.76589102 0.29468203 0.76685601 0.29402 0.768767 0.29493898 0.768767 0.29493898\n\t\t 0.76822501 0.29602098 0.76589102 0.29468203 0.76822501 0.29602098 0.768767 0.29493898\n\t\t 0.77278298 0.29590601;\n\tsetAttr \".uvst[0].uvsp[13250:13499]\" 0.77278298 0.29590601 0.772524 0.29714102\n\t\t 0.76822501 0.29602098 0.77314198 0.291161 0.77283603 0.29037899 0.78600901 0.28922802\n\t\t 0.78600901 0.28922802 0.78606302 0.29004198 0.77314198 0.291161 0.78606302 0.29004198\n\t\t 0.78600901 0.28922802 0.80224001 0.288715 0.80224001 0.288715 0.80225301 0.28953099\n\t\t 0.78606302 0.29004198 0.80225301 0.28953099 0.80224001 0.288715 0.81451702 0.28873903\n\t\t 0.81451702 0.28873903 0.81421798 0.28955102 0.80225301 0.28953099 0.81421798 0.28955102\n\t\t 0.81451702 0.28873903 0.81797302 0.289415 0.81797302 0.289415 0.817406 0.29012102\n\t\t 0.81421798 0.28955102 0.817406 0.29012102 0.81797302 0.289415 0.820315 0.291251 0.820315\n\t\t 0.291251 0.81947201 0.29165399 0.817406 0.29012102 0.81947201 0.29165399 0.820315\n\t\t 0.291251 0.82118601 0.29372698 0.82118601 0.29372698 0.82020497 0.29371297 0.81947201\n\t\t 0.29165399 0.82020497 0.29371297 0.82118601 0.29372698 0.82018799 0.29617798 0.82018799\n\t\t 0.29617798 0.81936598 0.29574502 0.82020497 0.29371297 0.81936598 0.29574502 0.82018799\n\t\t 0.29617798 0.81769699 0.29788297 0.81769699 0.29788297 0.817164 0.29716903 0.81936598\n\t\t 0.29574502 0.817164 0.29716903 0.81769699 0.29788297 0.814228 0.29858601 0.814228\n\t\t 0.29858601 0.81394398 0.297777 0.817164 0.29716903 0.81394398 0.297777 0.814228 0.29858601\n\t\t 0.80198997 0.29885203 0.80198997 0.29885203 0.80203003 0.29803598 0.81394398 0.297777\n\t\t 0.80203003 0.29803598 0.80198997 0.29885203 0.78586 0.29766798 0.78586 0.29766798\n\t\t 0.785972 0.29685903 0.80203003 0.29803598 0.785972 0.29685903 0.78586 0.29766798\n\t\t 0.77278298 0.29590601 0.77278298 0.29590601 0.77312797 0.29513597 0.785972 0.29685903\n\t\t 0.77312797 0.29513597 0.77278298 0.29590601 0.768767 0.29493898 0.768767 0.29493898\n\t\t 0.76933801 0.29430401 0.77312797 0.29513597 0.76933801 0.29430401 0.768767 0.29493898\n\t\t 0.76685601 0.29402 0.76685601 0.29402 0.76771897 0.29368597 0.76933801 0.29430401\n\t\t 0.76771897 0.29368597 0.76685601 0.29402 0.76644701 0.29311901 0.76644701 0.29311901\n\t\t 0.76746899 0.29311699 0.76771897 0.29368597 0.76746899 0.29311699 0.76644701 0.29311901\n\t\t 0.76687902 0.29221499 0.76687902 0.29221499 0.76773399 0.29254198 0.76746899 0.29311699\n\t\t 0.76773399 0.29254198 0.76687902 0.29221499 0.76878798 0.29124999 0.76878798 0.29124999\n\t\t 0.76934302 0.29189098 0.76773399 0.29254198 0.76934302 0.29189098 0.76878798 0.29124999\n\t\t 0.77283603 0.29037899 0.77283603 0.29037899 0.77314198 0.291161 0.76934302 0.29189098\n\t\t 0.41981801 0.30502099 0.419862 0.31013101 0.402143 0.31051803 0.402143 0.31051803\n\t\t 0.402091 0.305408 0.41981801 0.30502099 0.402091 0.305408 0.402143 0.31051803 0.385627\n\t\t 0.31354201 0.385627 0.31354201 0.38557601 0.30843103 0.402091 0.305408 0.38557601\n\t\t 0.30843103 0.385627 0.31354201 0.37936801 0.31523901 0.37936801 0.31523901 0.37931699\n\t\t 0.31012899 0.38557601 0.30843103 0.419862 0.31013101 0.41981801 0.30502099 0.435516\n\t\t 0.30694699 0.435516 0.30694699 0.43553299 0.31205797 0.419862 0.31013101 0.43553299\n\t\t 0.31205797 0.435516 0.30694699 0.44155499 0.30825198 0.44155499 0.30825198 0.44155401\n\t\t 0.31336302 0.43553299 0.31205797 0.44155401 0.31336302 0.44155499 0.30825198 0.44742799\n\t\t 0.30940098 0.44742799 0.30940098 0.44740999 0.31451201 0.44155401 0.31336302 0.44740999\n\t\t 0.31451201 0.44742799 0.30940098 0.453062 0.309955 0.453062 0.309955 0.45302999 0.31506503\n\t\t 0.44740999 0.31451201 0.45302999 0.31506503 0.453062 0.309955 0.45864701 0.30947298\n\t\t 0.45864701 0.30947298 0.458608 0.31458402 0.45302999 0.31506503 0.458608 0.31458402\n\t\t 0.45864701 0.30947298 0.464434 0.308384 0.464434 0.308384 0.46439901 0.31349498 0.458608\n\t\t 0.31458402 0.46439901 0.31349498 0.464434 0.308384 0.47042999 0.30710799 0.47042999\n\t\t 0.30710799 0.47041401 0.31221801 0.46439901 0.31349498 0.47041401 0.31221801 0.47042999\n\t\t 0.30710799 0.48608199 0.305022 0.48608199 0.305022 0.48615399 0.31013298 0.47041401\n\t\t 0.31221801 0.48615399 0.31013298 0.48608199 0.305022 0.50376898 0.30475098 0.50376898\n\t\t 0.30475098 0.50398397 0.30985802 0.48615399 0.31013298 0.50398397 0.30985802 0.50376898\n\t\t 0.30475098 0.52041203 0.30668098 0.52041203 0.30668098 0.52075303 0.31178099 0.50398397\n\t\t 0.30985802 0.52075303 0.31178099 0.52041203 0.30668098 0.52679503 0.30786097 0.52679503\n\t\t 0.30786097 0.527174 0.312958 0.52075303 0.31178099 0.527174 0.312958 0.52679503 0.30786097\n\t\t 0.53083301 0.30842102 0.53083301 0.30842102 0.53123498 0.31351602 0.527174 0.312958\n\t\t 0.53123498 0.31351602 0.53083301 0.30842102 0.53423899 0.30838901 0.53423899 0.30838901\n\t\t 0.53465497 0.313483 0.53123498 0.31351602 0.53465497 0.313483 0.53423899 0.30838901\n\t\t 0.53759599 0.307863 0.53759599 0.307863 0.538019 0.31295598 0.53465497 0.313483 0.538019\n\t\t 0.31295598 0.53759599 0.307863 0.541466 0.30666399 0.541466 0.30666399 0.54189098\n\t\t 0.31175703 0.538019 0.31295598 0.43703499 0.33344001 0.438344 0.33178902 0.438344\n\t\t 0.33178902 0.48790199 0.33142102 0.488033 0.33332199 0.488033 0.33332199 0.488033\n\t\t 0.33332199 0.488033 0.33332199 0.48451701 0.333951 0.48451701 0.333951 0.48451701\n\t\t 0.333951 0.48110101 0.33493298 0.48110101 0.33493298 0.48110101 0.33493298 0.47741401\n\t\t 0.335922 0.47741401 0.335922 0.47741401 0.335922 0.44469601 0.33518898 0.44469601\n\t\t 0.33518898 0.44469601 0.33518898 0.43703499 0.33344001 0.43703499 0.33344001 0.43703499\n\t\t 0.33344001 0.43387499 0.33435702 0.53053999 0.33624703 0.49890801 0.33531302 0.53053999\n\t\t 0.33624703 0.49890801 0.33531302 0.49890801 0.33531302 0.49579701 0.33459401 0.49579701\n\t\t 0.33459401;\n\tsetAttr \".uvst[0].uvsp[13500:13749]\" 0.49579701 0.33459401 0.49209899 0.33385801\n\t\t 0.48811901 0.33691102 0.49209899 0.33385801 0.49209899 0.33385801 0.488033 0.33332199\n\t\t 0.48811901 0.33691102 0.48422399 0.33740801 0.48152101 0.337991 0.48422399 0.33740801\n\t\t 0.48811901 0.33691102 0.48422399 0.33740801 0.48811901 0.33691102 0.48152101 0.337991\n\t\t 0.48152101 0.337991 0.47799101 0.33891201 0.47799101 0.33891201 0.44515201 0.33841902\n\t\t 0.44515201 0.33841902 0.44515201 0.33841902 0.44515201 0.33841902 0.43781099 0.33707398\n\t\t 0.43781099 0.33707398 0.43781099 0.33707398 0.43476701 0.33708501 0.48811901 0.33691102\n\t\t 0.49251801 0.33730298 0.48811901 0.33691102 0.495386 0.33765602 0.49251801 0.33730298\n\t\t 0.495386 0.33765602 0.49826199 0.33833301 0.495386 0.33765602 0.49826199 0.33833301\n\t\t 0.52978498 0.33931899 0.49826199 0.33833301 0.52978498 0.33931899 0.54164499 0.16175598\n\t\t 0.53745198 0.161659 0.536264 0.16004699 0.536264 0.16004699 0.541228 0.16006202 0.54164499\n\t\t 0.16175598 0.53745198 0.161659 0.54164499 0.16175598 0.54197299 0.16254199 0.54197299\n\t\t 0.16254199 0.53915697 0.16235799 0.53745198 0.161659 0.54164499 0.16175598 0.541228\n\t\t 0.16006202 0.57117701 0.16017097 0.57117701 0.16017097 0.57093197 0.16183299 0.54164499\n\t\t 0.16175598 0.57002801 0.15777802 0.57117701 0.16017097 0.541228 0.16006202 0.541228\n\t\t 0.16006202 0.54120702 0.15782702 0.57002801 0.15777802 0.54120702 0.15782702 0.541228\n\t\t 0.16006202 0.536264 0.16004699 0.57002801 0.15777802 0.54120702 0.15782702 0.54127002\n\t\t 0.15649801 0.54127002 0.15649801 0.56897497 0.15621501 0.57002801 0.15777802 0.536264\n\t\t 0.16004699 0.53753799 0.157969 0.54120702 0.15782702 0.54127002 0.15649801 0.54120702\n\t\t 0.15782702 0.53753799 0.157969 0.57093197 0.16183299 0.57117701 0.16017097 0.57905602\n\t\t 0.160155 0.57905602 0.160155 0.578951 0.16161603 0.57093197 0.16183299 0.57093197\n\t\t 0.16183299 0.578951 0.16161603 0.57678699 0.16233897 0.57678699 0.16233897 0.57059401\n\t\t 0.16265303 0.57093197 0.16183299 0.57059401 0.16265303 0.54197299 0.16254199 0.54164499\n\t\t 0.16175598 0.54164499 0.16175598 0.57093197 0.16183299 0.57059401 0.16265303 0.53753799\n\t\t 0.157969 0.53912503 0.15688998 0.54127002 0.15649801 0.48790199 0.33142102 0.488033\n\t\t 0.33332199 0.48451701 0.333951 0.48451701 0.333951 0.482977 0.33253801 0.48790199\n\t\t 0.33142102 0.482977 0.33253801 0.48451701 0.333951 0.48110101 0.33493298 0.48110101\n\t\t 0.33493298 0.480537 0.33354503 0.482977 0.33253801 0.480537 0.33354503 0.48110101\n\t\t 0.33493298 0.47741401 0.335922 0.47741401 0.335922 0.477494 0.33416998 0.480537 0.33354503\n\t\t 0.477494 0.33416998 0.47741401 0.335922 0.44469601 0.33518898 0.44469601 0.33518898\n\t\t 0.44455501 0.33343202 0.477494 0.33416998 0.44455501 0.33343202 0.44469601 0.33518898\n\t\t 0.43703499 0.33344001 0.43703499 0.33344001 0.438344 0.33178902 0.44455501 0.33343202\n\t\t 0.438344 0.33178902 0.43703499 0.33344001 0.43387499 0.33435702 0.43387499 0.33435702\n\t\t 0.434769 0.33192998 0.438344 0.33178902 0.488033 0.33332199 0.48790199 0.33142102\n\t\t 0.493384 0.33229899 0.493384 0.33229899 0.49209899 0.33385801 0.488033 0.33332199\n\t\t 0.49209899 0.33385801 0.493384 0.33229899 0.49605 0.333121 0.49605 0.333121 0.49579701\n\t\t 0.33459401 0.49209899 0.33385801 0.49579701 0.33459401 0.49605 0.333121 0.49883699\n\t\t 0.333552 0.49883699 0.333552 0.49890801 0.33531302 0.49579701 0.33459401 0.49890801\n\t\t 0.33531302 0.49883699 0.333552 0.53113198 0.334535 0.53113198 0.334535 0.53053999\n\t\t 0.33624703 0.49890801 0.33531302 0.488033 0.33332199 0.48811901 0.33691102 0.48422399\n\t\t 0.33740801 0.48422399 0.33740801 0.48451701 0.333951 0.488033 0.33332199 0.48451701\n\t\t 0.333951 0.48422399 0.33740801 0.48152101 0.337991 0.48152101 0.337991 0.48110101\n\t\t 0.33493298 0.48451701 0.333951 0.48110101 0.33493298 0.48152101 0.337991 0.47799101\n\t\t 0.33891201 0.47799101 0.33891201 0.47741401 0.335922 0.48110101 0.33493298 0.47741401\n\t\t 0.335922 0.47799101 0.33891201 0.44515201 0.33841902 0.44515201 0.33841902 0.44469601\n\t\t 0.33518898 0.47741401 0.335922 0.44469601 0.33518898 0.44515201 0.33841902 0.43781099\n\t\t 0.33707398 0.43781099 0.33707398 0.43703499 0.33344001 0.44469601 0.33518898 0.43703499\n\t\t 0.33344001 0.43781099 0.33707398 0.43476701 0.33708501 0.43476701 0.33708501 0.43387499\n\t\t 0.33435702 0.43703499 0.33344001 0.48811901 0.33691102 0.488033 0.33332199 0.49209899\n\t\t 0.33385801 0.49209899 0.33385801 0.49251801 0.33730298 0.48811901 0.33691102 0.49251801\n\t\t 0.33730298 0.49209899 0.33385801 0.49579701 0.33459401 0.49579701 0.33459401 0.495386\n\t\t 0.33765602 0.49251801 0.33730298 0.495386 0.33765602 0.49579701 0.33459401 0.49890801\n\t\t 0.33531302 0.49890801 0.33531302 0.49826199 0.33833301 0.495386 0.33765602 0.49826199\n\t\t 0.33833301 0.49890801 0.33531302 0.53053999 0.33624703 0.53053999 0.33624703 0.52978498\n\t\t 0.33931899 0.49826199 0.33833301 0.48422399 0.33740801 0.48437101 0.33923203 0.48173299\n\t\t 0.3398 0.48173299 0.3398 0.48152101 0.337991 0.48422399 0.33740801 0.48437101 0.33923203\n\t\t 0.48422399 0.33740801 0.48811901 0.33691102 0.48811901 0.33691102 0.48816699 0.33874601\n\t\t 0.48437101 0.33923203 0.48152101 0.337991 0.48173299 0.3398 0.47818699 0.34071302\n\t\t 0.47818699 0.34071302 0.47799101 0.33891201 0.48152101 0.337991 0.44515201 0.33841902\n\t\t 0.47799101 0.33891201 0.47818699 0.34071302 0.47818699 0.34071302 0.44555101 0.34032297\n\t\t 0.44515201 0.33841902 0.44515201 0.33841902 0.44555101 0.34032297 0.43851799 0.33908302\n\t\t 0.43851799 0.33908302 0.43781099 0.33707398 0.44515201 0.33841902 0.43781099 0.33707398\n\t\t 0.43851799 0.33908302 0.43554601 0.33885902;\n\tsetAttr \".uvst[0].uvsp[13750:13999]\" 0.43554601 0.33885902 0.43476701 0.33708501\n\t\t 0.43781099 0.33707398 0.49242201 0.33916098 0.48816699 0.33874601 0.48811901 0.33691102\n\t\t 0.48811901 0.33691102 0.49251801 0.33730298 0.49242201 0.33916098 0.49242201 0.33916098\n\t\t 0.49251801 0.33730298 0.495386 0.33765602 0.495386 0.33765602 0.49515799 0.33950698\n\t\t 0.49242201 0.33916098 0.49515799 0.33950698 0.495386 0.33765602 0.49826199 0.33833301\n\t\t 0.49826199 0.33833301 0.498025 0.34017402 0.49515799 0.33950698 0.498025 0.34017402\n\t\t 0.49826199 0.33833301 0.52978498 0.33931899 0.52978498 0.33931899 0.52925199 0.34118199\n\t\t 0.498025 0.34017402 0.95741099 0.124713 0.95774603 0.15181702 0.95774603 0.15181702\n\t\t 0.95785803 0.12182599 0.95741099 0.124713 0.97419399 0.098936021 0.95785803 0.12182599\n\t\t 0.95785803 0.12182599 0.97419399 0.098936021 0.95848298 0.15473002 0.96374202 0.17944002\n\t\t 0.95848298 0.15473002 0.96374202 0.17944002 0.96011603 0.18010902 0.96011603 0.18010902\n\t\t 0.96385098 0.182419 0.95985502 0.18166602 0.95985502 0.18166602 0.96385098 0.182419\n\t\t 0.958691 0.207201 0.96385098 0.182419 0.96374202 0.17944002 0.96385098 0.182419 0.96374202\n\t\t 0.17944002 0.958327 0.21016598 0.95869601 0.23716003 0.958327 0.21016598 0.958691\n\t\t 0.207201 0.958327 0.21016598 0.958691 0.207201 0.95869601 0.23716003 0.95907402 0.24014598\n\t\t 0.95907402 0.24014598 0.97312897 0.26499599 0.95907402 0.24014598 0.95907402 0.24014598\n\t\t 0.97312897 0.26499599 0.96937001 0.26785302 0.96937001 0.26785302 0.95774603 0.15181702\n\t\t 0.95848298 0.15473002 0.95774603 0.15181702 0.55439198 0.57676196 0.55067301 0.58004403\n\t\t 0.51270002 0.58815098 0.55439198 0.57676196 0.51270002 0.58815098 0.54150701 0.51174301\n\t\t 0.55439198 0.57676196 0.54150701 0.51174301 0.56548703 0.53719401 0.56650299 0.54195297\n\t\t 0.55439198 0.57676196 0.56548703 0.53719401 0.54150701 0.51174301 0.51270002 0.58815098\n\t\t 0.50828201 0.58652496 0.50828201 0.58652496 0.53684998 0.50999796 0.54150701 0.51174301\n\t\t 0.53684998 0.50999796 0.50828201 0.58652496 0.49790001 0.516361 0.50828201 0.58652496\n\t\t 0.48419699 0.555188 0.49790001 0.516361 0.48419699 0.555188 0.48357001 0.55031002\n\t\t 0.49790001 0.516361 0.50183803 0.51346004 0.53684998 0.50999796 0.49790001 0.516361\n\t\t 0.95774603 0.15181702 0.95378 0.15269798 0.95278502 0.12355697 0.95278502 0.12355697\n\t\t 0.95741099 0.124713 0.95774603 0.15181702 0.95774603 0.15181702 0.95741099 0.124713\n\t\t 0.96153599 0.12650502 0.96153599 0.12650502 0.96191299 0.15060002 0.95774603 0.15181702\n\t\t 0.95741099 0.124713 0.95278502 0.12355697 0.95353699 0.12038201 0.95353699 0.12038201\n\t\t 0.95785803 0.12182599 0.95741099 0.124713 0.96153599 0.12650502 0.95741099 0.124713\n\t\t 0.95785803 0.12182599 0.95785803 0.12182599 0.95353699 0.12038201 0.97105998 0.09591198\n\t\t 0.97105998 0.09591198 0.97419399 0.098936021 0.95785803 0.12182599 0.96203899 0.12278199\n\t\t 0.95785803 0.12182599 0.97419399 0.098936021 0.95785803 0.12182599 0.96203899 0.12278199\n\t\t 0.96153599 0.12650502 0.97419399 0.098936021 0.97606701 0.10229701 0.96203899 0.12278199\n\t\t 0.95378 0.15269798 0.95774603 0.15181702 0.95848298 0.15473002 0.95848298 0.15473002\n\t\t 0.95387501 0.15469301 0.95378 0.15269798 0.95387501 0.15469301 0.95848298 0.15473002\n\t\t 0.96374202 0.17944002 0.96374202 0.17944002 0.96011603 0.18010902 0.95387501 0.15469301\n\t\t 0.96674502 0.17846102 0.96374202 0.17944002 0.95848298 0.15473002 0.95848298 0.15473002\n\t\t 0.96335 0.15547699 0.96674502 0.17846102 0.96011603 0.18010902 0.96374202 0.17944002\n\t\t 0.96385098 0.182419 0.96385098 0.182419 0.95985502 0.18166602 0.96011603 0.18010902\n\t\t 0.95985502 0.18166602 0.96385098 0.182419 0.958691 0.207201 0.958691 0.207201 0.95430702\n\t\t 0.20741498 0.95985502 0.18166602 0.962533 0.20643902 0.958691 0.207201 0.96385098\n\t\t 0.182419 0.96385098 0.182419 0.96755302 0.18373102 0.962533 0.20643902 0.96374202\n\t\t 0.17944002 0.96674502 0.17846102 0.96755302 0.18373102 0.96755302 0.18373102 0.96385098\n\t\t 0.182419 0.96374202 0.17944002 0.95430702 0.20741498 0.958691 0.207201 0.958327 0.21016598\n\t\t 0.958327 0.21016598 0.95388198 0.20937598 0.95430702 0.20741498 0.95388198 0.20937598\n\t\t 0.958327 0.21016598 0.95869601 0.23716003 0.95869601 0.23716003 0.95424902 0.238334\n\t\t 0.95388198 0.20937598 0.96198702 0.23548001 0.95869601 0.23716003 0.958327 0.21016598\n\t\t 0.958327 0.21016598 0.96263301 0.21134502 0.96198702 0.23548001 0.958691 0.207201\n\t\t 0.962533 0.20643902 0.96263301 0.21134502 0.96263301 0.21134502 0.958327 0.21016598\n\t\t 0.958691 0.207201 0.95424902 0.238334 0.95869601 0.23716003 0.95907402 0.24014598\n\t\t 0.95907402 0.24014598 0.95869601 0.23716003 0.96198702 0.23548001 0.95907402 0.24014598\n\t\t 0.954768 0.24105102 0.95424902 0.238334 0.954768 0.24105102 0.95907402 0.24014598\n\t\t 0.97312897 0.26499599 0.97312897 0.26499599 0.96937001 0.26785302 0.954768 0.24105102\n\t\t 0.97538799 0.261796 0.97312897 0.26499599 0.95907402 0.24014598 0.95907402 0.24014598\n\t\t 0.96303201 0.23951799 0.97538799 0.261796 0.96198702 0.23548001 0.96303201 0.23951799\n\t\t 0.95907402 0.24014598 0.96937001 0.26785302 0.97312897 0.26499599 0.97488701 0.267156\n\t\t 0.97488701 0.267156 0.97134298 0.27006203 0.96937001 0.26785302 0.95774603 0.15181702\n\t\t 0.96191299 0.15060002 0.96335 0.15547699 0.96335 0.15547699 0.95848298 0.15473002\n\t\t 0.95774603 0.15181702 0.97570401 0.26675498 0.97364998 0.26487303 0.97538799 0.261796\n\t\t 0.97538799 0.261796 0.97767502 0.26361501 0.97570401 0.26675498 0.814331 0.74527204\n\t\t 0.83281499 0.70639002 0.814331 0.74527204 0.81179303 0.24751002 0.81179303 0.24751002\n\t\t 0.84394199 0.26351398 0.81179303 0.24751002;\n\tsetAttr \".uvst[0].uvsp[14000:14249]\" 0.88832903 0.29692298 0.88596499 0.296848\n\t\t 0.88596499 0.296848 0.886388 0.30137998 0.88869601 0.30144799 0.886388 0.30137998\n\t\t 0.250175 0.66298604 0.25248501 0.65764499 0.25248501 0.65764499 0.25248501 0.65764499\n\t\t 0.25248501 0.65764499 0.25282401 0.65294302 0.180815 0.652587 0.250175 0.66298604\n\t\t 0.87495703 0.735511 0.81704402 0.748236 0.83477998 0.70703697 0.83477998 0.70703697\n\t\t 0.87328398 0.707654 0.87495703 0.735511 0.83477998 0.70703697 0.81704402 0.748236\n\t\t 0.814331 0.74527204 0.814331 0.74527204 0.83281499 0.70639002 0.83477998 0.70703697\n\t\t 0.82834899 0.70358801 0.83281499 0.70639002 0.814331 0.74527204 0.814331 0.74527204\n\t\t 0.80939603 0.74324203 0.82834899 0.70358801 0.82316297 0.69995999 0.82834899 0.70358801\n\t\t 0.80939603 0.74324203 0.80939603 0.74324203 0.80364001 0.74000502 0.82316297 0.69995999\n\t\t 0.81759697 0.69592297 0.82316297 0.69995999 0.80364001 0.74000502 0.80364001 0.74000502\n\t\t 0.79586601 0.73451602 0.81759697 0.69592297 0.81759697 0.69592297 0.79586601 0.73451602\n\t\t 0.81759697 0.69592297 0.81357002 0.24340099 0.81179303 0.24751002 0.81044799 0.24625701\n\t\t 0.81044799 0.24625701 0.80976999 0.24152398 0.81357002 0.24340099 0.81625402 0.23782903\n\t\t 0.81357002 0.24340099 0.80976999 0.24152398 0.80976999 0.24152398 0.81130499 0.23542601\n\t\t 0.81625402 0.23782903 0.81130499 0.23542601 0.80976999 0.24152398 0.807212 0.24051201\n\t\t 0.807212 0.24051201 0.80879903 0.23425698 0.81130499 0.23542601 0.80976999 0.24152398\n\t\t 0.81044799 0.24625701 0.80762303 0.24590898 0.80762303 0.24590898 0.807212 0.24051201\n\t\t 0.80976999 0.24152398 0.84394199 0.26351398 0.81179303 0.24751002 0.81357002 0.24340099\n\t\t 0.81357002 0.24340099 0.84580201 0.25938803 0.84394199 0.26351398 0.84834701 0.25369102\n\t\t 0.84580201 0.25938803 0.81357002 0.24340099 0.81357002 0.24340099 0.81625402 0.23782903\n\t\t 0.84834701 0.25369102 0.81044799 0.24625701 0.81179303 0.24751002 0.80887699 0.24784601\n\t\t 0.80887699 0.24784601 0.80762303 0.24590898 0.81044799 0.24625701 0.81179303 0.24751002\n\t\t 0.84394199 0.26351398 0.84358603 0.26490098 0.84358603 0.26490098 0.80887699 0.24784601\n\t\t 0.81179303 0.24751002 0.84834701 0.25369102 0.81625402 0.23782903 0.81929499 0.23163497\n\t\t 0.81929499 0.23163497 0.85139799 0.24748802 0.84834701 0.25369102 0.81130499 0.23542601\n\t\t 0.80879903 0.23425698 0.81185299 0.22801203 0.81185299 0.22801203 0.81434298 0.22922301\n\t\t 0.81130499 0.23542601 0.81434298 0.22922301 0.81929499 0.23163497 0.81625402 0.23782903\n\t\t 0.81625402 0.23782903 0.81130499 0.23542601 0.81434298 0.22922301 0.85139799 0.24748802\n\t\t 0.81929499 0.23163497 0.81929499 0.23163497 0.81929499 0.23163497 0.81434298 0.22922301\n\t\t 0.81434298 0.22922301 0.81185299 0.22801203 0.81434298 0.22922301 0.81185299 0.22801203\n\t\t 0.85832399 0.22729099 0.88547498 0.23508 0.88546401 0.24076098 0.88546401 0.24076098\n\t\t 0.85831302 0.23297101 0.85832399 0.22729099 0.85829997 0.23886001 0.85831302 0.23297101\n\t\t 0.88546401 0.24076098 0.88546401 0.24076098 0.88545102 0.24664998 0.85829997 0.23886001\n\t\t 0.85827899 0.24875802 0.85829997 0.23886001 0.88545102 0.24664998 0.88545102 0.24664998\n\t\t 0.88543397 0.25391698 0.85827899 0.24875802 0.85827899 0.24875802 0.88543397 0.25391698\n\t\t 0.88543397 0.25391698 0.88543397 0.25391698 0.88543397 0.25391698 0.88809699 0.25375199\n\t\t 0.88809699 0.25375199 0.88543397 0.25391698 0.88545102 0.24664998 0.88545102 0.24664998\n\t\t 0.88811302 0.24676102 0.88809699 0.25375199 0.88724899 0.24050999 0.88811302 0.24676102\n\t\t 0.88545102 0.24664998 0.88545102 0.24664998 0.88546401 0.24076098 0.88724899 0.24050999\n\t\t 0.88661897 0.23597503 0.88724899 0.24050999 0.88546401 0.24076098 0.88546401 0.24076098\n\t\t 0.88547498 0.23508 0.88661897 0.23597503 0.77812099 0.32178903 0.77812099 0.32178903\n\t\t 0.83810198 0.32275897 0.922759 0.68750101 0.91578197 0.68653101 0.918495 0.68215597\n\t\t 0.918495 0.68215597 0.92462498 0.685727 0.922759 0.68750101 0.91578197 0.68653101\n\t\t 0.922759 0.68750101 0.92149401 0.68966001 0.92149401 0.68966001 0.91567397 0.69125801\n\t\t 0.91578197 0.68653101 0.91567397 0.69125801 0.92149401 0.68966001 0.95169902 0.714311\n\t\t 0.95169902 0.714311 0.94812202 0.71939099 0.91567397 0.69125801 0.978136 0.74321401\n\t\t 0.94812202 0.71939099 0.95169902 0.714311 0.95169902 0.714311 0.97810203 0.73569202\n\t\t 0.978136 0.74321401 0.991247 0.73565304 0.978136 0.74321401 0.97810203 0.73569202\n\t\t 0.97810203 0.73569202 0.98482502 0.73174298 0.991247 0.73565304 0.991247 0.73565304\n\t\t 0.98482502 0.73174298 0.98555303 0.73082399 0.98555303 0.73082399 0.99289203 0.73407304\n\t\t 0.991247 0.73565304 0.99289203 0.73407304 0.98555303 0.73082399 0.96921599 0.69991601\n\t\t 0.96921599 0.69991601 0.972848 0.69464898 0.99289203 0.73407304 0.972848 0.69464898\n\t\t 0.96921599 0.69991601 0.949525 0.69110799 0.949525 0.69110799 0.95128602 0.68422401\n\t\t 0.972848 0.69464898 0.95128602 0.68422401 0.949525 0.69110799 0.92980301 0.682823\n\t\t 0.92980301 0.682823 0.92873102 0.67647803 0.95128602 0.68422401 0.92873102 0.67647803\n\t\t 0.92980301 0.682823 0.92689502 0.68421501 0.92689502 0.68421501 0.92288399 0.67867899\n\t\t 0.92873102 0.67647803 0.92288399 0.67867899 0.92689502 0.68421501 0.92462498 0.685727\n\t\t 0.92462498 0.685727 0.918495 0.68215597 0.92288399 0.67867899 0.88598299 0.29197502\n\t\t 0.888367 0.29213703 0.88832903 0.29692298 0.88832903 0.29692298 0.88596499 0.296848\n\t\t 0.88598299 0.29197502 0.88596499 0.296848 0.88832903 0.29692298 0.88869601 0.30144799\n\t\t 0.88869601 0.30144799 0.886388 0.30137998 0.88596499 0.296848 0.888367 0.29213703\n\t\t 0.88598299 0.29197502 0.88616902 0.28675199 0.88616902 0.28675199 0.88865298 0.28698099;\n\tsetAttr \".uvst[0].uvsp[14250:14499]\" 0.888367 0.29213703 0.88865298 0.28698099\n\t\t 0.88616902 0.28675199 0.88643199 0.28101897 0.88643199 0.28101897 0.88904703 0.28145403\n\t\t 0.88865298 0.28698099 0.886388 0.30137998 0.88869601 0.30144799 0.88910103 0.340496\n\t\t 0.88910103 0.340496 0.88622999 0.34062803 0.886388 0.30137998 0.88622999 0.34062803\n\t\t 0.88910103 0.340496 0.89002901 0.37511498 0.89002901 0.37511498 0.88673902 0.37561601\n\t\t 0.88622999 0.34062803 0.72852999 0.052998006 0.72823602 0.056375027 0.71459198 0.056380987\n\t\t 0.71459198 0.056380987 0.714486 0.053489029 0.72852999 0.052998006 0.714486 0.053489029\n\t\t 0.71459198 0.056380987 0.71258098 0.056483984 0.71258098 0.056483984 0.71240801 0.053586006\n\t\t 0.714486 0.053489029 0.79584998 0.26294398 0.79558599 0.26567799 0.75572801 0.26656002\n\t\t 0.75572801 0.26656002 0.75502402 0.26238197 0.79584998 0.26294398 0.66739601 0.066302001\n\t\t 0.66773498 0.062838972 0.68943799 0.063422024 0.68943799 0.063422024 0.68927598 0.066029012\n\t\t 0.66739601 0.066302001 0.66773498 0.062838972 0.66739601 0.066302001 0.64532101 0.066336989\n\t\t 0.64532101 0.066336989 0.64583099 0.062044024 0.66773498 0.062838972 0.693097 0.17614698\n\t\t 0.69319201 0.17405599 0.69830602 0.173352 0.69830602 0.173352 0.69831598 0.17559397\n\t\t 0.693097 0.17614698 0.693097 0.17614698 0.69831598 0.17559397 0.69824201 0.17793298\n\t\t 0.69824201 0.17793298 0.693021 0.17834598 0.693097 0.17614698 0.693021 0.17834598\n\t\t 0.69824201 0.17793298 0.69824803 0.18049699 0.69824803 0.18049699 0.69305301 0.18079501\n\t\t 0.693021 0.17834598 0.69316298 0.18363702 0.69305301 0.18079501 0.69824803 0.18049699\n\t\t 0.69824803 0.18049699 0.69830298 0.18345302 0.69316298 0.18363702 0.517501 0.22363102\n\t\t 0.51838797 0.22880697 0.498887 0.22884703 0.498887 0.22884703 0.49809301 0.22346801\n\t\t 0.517501 0.22363102 0.49809301 0.22346801 0.498887 0.22884703 0.47930601 0.22885799\n\t\t 0.47930601 0.22885799 0.478605 0.22330499 0.49809301 0.22346801 0.68722099 0.19225001\n\t\t 0.682064 0.19289601 0.68155301 0.18586302 0.68155301 0.18586302 0.686746 0.18563497\n\t\t 0.68722099 0.19225001 0.682064 0.19289601 0.68722099 0.19225001 0.68733603 0.19325298\n\t\t 0.68733603 0.19325298 0.68230897 0.193941 0.682064 0.19289601 0.60140902 0.0099999905\n\t\t 0.601601 0.0047190189 0.63232601 0.0055339932 0.63232601 0.0055339932 0.63197398\n\t\t 0.011273026 0.60140902 0.0099999905 0.66701102 0.011148989 0.63197398 0.011273026\n\t\t 0.63232601 0.0055339932 0.63232601 0.0055339932 0.66756898 0.0058540106 0.66701102\n\t\t 0.011148989 0.53859198 0.326415 0.50721401 0.32607198 0.50759703 0.320494 0.50759703\n\t\t 0.320494 0.53930199 0.321257 0.53859198 0.326415 0.180815 0.652587 0.21438301 0.65269697\n\t\t 0.25282401 0.65294302 0.180815 0.652587 0.25282401 0.65294302 0.25248501 0.65764499\n\t\t 0.25282401 0.65294302 0.25297201 0.65526301 0.25248501 0.65764499 0.180815 0.652587\n\t\t 0.25248501 0.65764499 0.20936 0.67509401 0.25248501 0.65764499 0.250175 0.66298604\n\t\t 0.20936 0.67509401 0.25248501 0.65764499 0.25151199 0.66015399 0.250175 0.66298604\n\t\t 0.250175 0.66298604 0.229876 0.66924798 0.20936 0.67509401 0.180815 0.652587 0.20936\n\t\t 0.67509401 0.178285 0.65943301 0.20936 0.67509401 0.17829899 0.66055399 0.178285\n\t\t 0.65943301 0.93923599 0.628268 0.95149302 0.62183499 0.385562 0.19188499 0.373072\n\t\t 0.20675099 0.385562 0.19188499 0.385562 0.19188499 0.37220401 0.21384197 0.36480001\n\t\t 0.21591598 0.37220401 0.21384197 0.376304 0.21925002 0.37220401 0.21384197 0.373072\n\t\t 0.20675099 0.373072 0.20675099 0.37220401 0.21384197 0.376304 0.21925002 0.376304\n\t\t 0.21925002 0.406863 0.23412299 0.36480001 0.21591598 0.41149601 0.23498201 0.406863\n\t\t 0.23412299 0.50984001 0.239788 0.41149601 0.23498201 0.41149601 0.23498201 0.41149601\n\t\t 0.23498201 0.393255 0.18755502 0.399542 0.18562102 0.399542 0.18562102 0.399542 0.18562102\n\t\t 0.52797401 0.18991601 0.42355999 0.18654197 0.52797401 0.18991601 0.417918 0.18594199\n\t\t 0.417918 0.18594199 0.42355999 0.18654197 0.42355999 0.18654197 0.417918 0.18594199\n\t\t 0.393255 0.18755502 0.393255 0.18755502 0.70449603 0.349154 0.720828 0.34879601 0.720828\n\t\t 0.34879601 0.720828 0.34879601 0.75402701 0.34662801 0.75402701 0.34662801 0.75402701\n\t\t 0.34662801 0.75402701 0.34662801 0.77091497 0.34457898 0.984604 0.19197899 0.99834901\n\t\t 0.19197899 0.984604 0.19197899 0.63031203 0.96567428 0.62837499 0.90926939 0.63031203\n\t\t 0.96567428 0.75171101 0.96195519 0.70858699 0.99514169 0.75171101 0.96195519 0.63133502\n\t\t 0.99652749 0.63031203 0.96567428 0.63133502 0.99652749 0.99834901 0.16670901 0.984604\n\t\t 0.16670901 0.99834901 0.16670901 0.696926 0.11604297 0.69709802 0.118536 0.696926\n\t\t 0.11604297 0.71217 0.120134 0.71202201 0.11763901 0.71217 0.120134 0.984604 0.17867601\n\t\t 0.984604 0.169891 0.984604 0.17867601 0.61003703 0.9061839 0.62519503 0.90867782\n\t\t 0.61003703 0.9061839 0.60846299 0.96217978 0.60702801 0.90579617 0.60702801 0.90579617\n\t\t 0.60846299 0.96217978 0.60925299 0.99303496 0.60846299 0.96217978 0.48866799 0.96133453\n\t\t 0.48866799 0.96133453 0.53310698 0.99334276 0.984604 0.16670901 0.984604 0.16670901\n\t\t 0.984604 0.11273003 0.62837499 0.90926939 0.62837499 0.90926939 0.63168401 0.90934241\n\t\t 0.71045703 0.14840198 0.71065801 0.15649301 0.71045703 0.14840198 0.69578397 0.15409797\n\t\t 0.69578397 0.15409797 0.69556898 0.14910698 0.94546199 0.62093198 0.93923599 0.628268\n\t\t 0.92276597 0.63005197 0.92276597 0.63005197 0.92661202 0.61794496 0.94546199 0.62093198\n\t\t 0.94546199 0.62093198 0.92661202 0.61794496 0.93436199 0.59341502 0.93436199 0.59341502\n\t\t 0.95700002 0.60541403 0.94546199 0.62093198 0.92661202 0.61794496;\n\tsetAttr \".uvst[0].uvsp[14500:14749]\" 0.92276597 0.63005197 0.917422 0.63016796\n\t\t 0.917422 0.63016796 0.92120302 0.61741799 0.92661202 0.61794496 0.93436199 0.59341502\n\t\t 0.92661202 0.61794496 0.92120302 0.61741799 0.92120302 0.61741799 0.917422 0.63016796\n\t\t 0.81924099 0.63081002 0.81924099 0.63081002 0.82395202 0.617257 0.92120302 0.61741799\n\t\t 0.92120302 0.61741799 0.82395202 0.617257 0.83378798 0.58966398 0.83378798 0.58966398\n\t\t 0.92885798 0.59154999 0.92120302 0.61741799 0.92120302 0.61741799 0.92885798 0.59154999\n\t\t 0.93436199 0.59341502 0.93923599 0.628268 0.94546199 0.62093198 0.95149302 0.62183499\n\t\t 0.95149302 0.62183499 0.94480002 0.62596798 0.93923599 0.628268 0.94546199 0.62093198\n\t\t 0.95700002 0.60541403 0.96358198 0.60907501 0.96358198 0.60907501 0.95149302 0.62183499\n\t\t 0.94546199 0.62093198 0.96231198 0.59723401 0.95700002 0.60541403 0.93436199 0.59341502\n\t\t 0.96358198 0.60907501 0.95700002 0.60541403 0.96231198 0.59723401 0.93436199 0.59341502\n\t\t 0.93717599 0.57980096 0.96231198 0.59723401 0.93272698 0.578444 0.92885798 0.59154999\n\t\t 0.83378798 0.58966398 0.93436199 0.59341502 0.92885798 0.59154999 0.93272698 0.578444\n\t\t 0.93272698 0.578444 0.93717599 0.57980096 0.93436199 0.59341502 0.83378798 0.58966398\n\t\t 0.838947 0.57559097 0.93272698 0.578444 0.96231198 0.59723401 0.96537101 0.60272896\n\t\t 0.96358198 0.60907501 0.36606699 0.20621598 0.373072 0.20675099 0.37220401 0.21384197\n\t\t 0.37220401 0.21384197 0.36480001 0.21591598 0.36606699 0.20621598 0.373072 0.20675099\n\t\t 0.36606699 0.20621598 0.38175401 0.18887502 0.38175401 0.18887502 0.385562 0.19188499\n\t\t 0.373072 0.20675099 0.378144 0.206595 0.373072 0.20675099 0.385562 0.19188499 0.385562\n\t\t 0.19188499 0.389696 0.194686 0.378144 0.206595 0.389696 0.194686 0.385562 0.19188499\n\t\t 0.393255 0.18755502 0.393255 0.18755502 0.396442 0.19130898 0.389696 0.194686 0.36480001\n\t\t 0.21591598 0.37220401 0.21384197 0.376304 0.21925002 0.381199 0.21716797 0.376304\n\t\t 0.21925002 0.37220401 0.21384197 0.37220401 0.21384197 0.37737501 0.21261901 0.381199\n\t\t 0.21716797 0.373072 0.20675099 0.378144 0.206595 0.37737501 0.21261901 0.37737501\n\t\t 0.21261901 0.37220401 0.21384197 0.373072 0.20675099 0.376304 0.21925002 0.381199\n\t\t 0.21716797 0.40849701 0.22985202 0.40849701 0.22985202 0.406863 0.23412299 0.376304\n\t\t 0.21925002 0.36993599 0.22357899 0.376304 0.21925002 0.406863 0.23412299 0.376304\n\t\t 0.21925002 0.36993599 0.22357899 0.36480001 0.21591598 0.406863 0.23412299 0.40434101\n\t\t 0.23917401 0.36993599 0.22357899 0.406863 0.23412299 0.40849701 0.22985202 0.41312799\n\t\t 0.23080403 0.41312799 0.23080403 0.41149601 0.23498201 0.406863 0.23412299 0.40434101\n\t\t 0.23917401 0.406863 0.23412299 0.41149601 0.23498201 0.41149601 0.23498201 0.41312799\n\t\t 0.23080403 0.50844902 0.23558903 0.50844902 0.23558903 0.50984001 0.239788 0.41149601\n\t\t 0.23498201 0.41149601 0.23498201 0.50984001 0.239788 0.50887799 0.24482602 0.50887799\n\t\t 0.24482602 0.40983099 0.23967201 0.41149601 0.23498201 0.41149601 0.23498201 0.40983099\n\t\t 0.23967201 0.40434101 0.23917401 0.396442 0.19130898 0.393255 0.18755502 0.399542\n\t\t 0.18562102 0.39798501 0.18225503 0.399542 0.18562102 0.393255 0.18755502 0.393255\n\t\t 0.18755502 0.391049 0.18465 0.39798501 0.18225503 0.399542 0.18562102 0.39798501\n\t\t 0.18225503 0.41734099 0.18210602 0.41734099 0.18210602 0.417918 0.18594199 0.399542\n\t\t 0.18562102 0.417918 0.18594199 0.41734099 0.18210602 0.42309499 0.18269098 0.42309499\n\t\t 0.18269098 0.42355999 0.18654197 0.417918 0.18594199 0.52797401 0.18991601 0.42355999\n\t\t 0.18654197 0.42309499 0.18269098 0.42309499 0.18269098 0.527381 0.18007803 0.52797401\n\t\t 0.18991601 0.42380801 0.19062102 0.42355999 0.18654197 0.52797401 0.18991601 0.52797401\n\t\t 0.18991601 0.52362698 0.194233 0.42380801 0.19062102 0.40195701 0.189677 0.399542\n\t\t 0.18562102 0.417918 0.18594199 0.417918 0.18594199 0.41839501 0.19014502 0.40195701\n\t\t 0.189677 0.42355999 0.18654197 0.42380801 0.19062102 0.41839501 0.19014502 0.41839501\n\t\t 0.19014502 0.417918 0.18594199 0.42355999 0.18654197 0.399542 0.18562102 0.40195701\n\t\t 0.189677 0.396442 0.19130898 0.391049 0.18465 0.393255 0.18755502 0.385562 0.19188499\n\t\t 0.385562 0.19188499 0.38175401 0.18887502 0.391049 0.18465 0.72390699 0.35302103\n\t\t 0.70906401 0.35349798 0.70449603 0.349154 0.70449603 0.349154 0.720828 0.34879601\n\t\t 0.72390699 0.35302103 0.72390699 0.35302103 0.720828 0.34879601 0.75402701 0.34662801\n\t\t 0.75402701 0.34662801 0.75414002 0.35090297 0.72390699 0.35302103 0.720828 0.34879601\n\t\t 0.70449603 0.349154 0.70366901 0.33915401 0.70366901 0.33915401 0.72023499 0.34001201\n\t\t 0.720828 0.34879601 0.75387198 0.34021997 0.75402701 0.34662801 0.720828 0.34879601\n\t\t 0.720828 0.34879601 0.72023499 0.34001201 0.75387198 0.34021997 0.76950097 0.34889799\n\t\t 0.75414002 0.35090297 0.75402701 0.34662801 0.75402701 0.34662801 0.77091497 0.34457898\n\t\t 0.76950097 0.34889799 0.77093101 0.33938497 0.77091497 0.34457898 0.75402701 0.34662801\n\t\t 0.75402701 0.34662801 0.75387198 0.34021997 0.77093101 0.33938497 0.984604 0.17867601\n\t\t 0.984604 0.169891 0.99834901 0.169891 0.99834901 0.169891 0.99834901 0.17867601 0.984604\n\t\t 0.17867601 0.99834901 0.169891 0.984604 0.169891 0.984604 0.16670901 0.984604 0.16670901\n\t\t 0.99834901 0.16670901 0.99834901 0.169891 0.984604 0.17867601 0.99834901 0.17867601\n\t\t 0.99834901 0.19197899 0.99834901 0.19197899 0.984604 0.19197899 0.984604 0.17867601\n\t\t 0.99834901 0.26771599 0.984604 0.26771599 0.984604 0.19534802 0.984604 0.19534802\n\t\t 0.99834901 0.19534802;\n\tsetAttr \".uvst[0].uvsp[14750:14999]\" 0.99834901 0.26771599 0.99834901 0.19534802\n\t\t 0.984604 0.19534802 0.984604 0.19197899 0.984604 0.19197899 0.99834901 0.19197899\n\t\t 0.99834901 0.19534802 0.62519503 0.90867782 0.62696803 0.96519321 0.61164898 0.96270442\n\t\t 0.61164898 0.96270442 0.61003703 0.9061839 0.62519503 0.90867782 0.61003703 0.9061839\n\t\t 0.61164898 0.96270442 0.60846299 0.96217978 0.60846299 0.96217978 0.60702801 0.90579617\n\t\t 0.61003703 0.9061839 0.61252099 0.99354517 0.61164898 0.96270442 0.62696803 0.96519321\n\t\t 0.62696803 0.96519321 0.62791902 0.99603516 0.61252099 0.99354517 0.61164898 0.96270442\n\t\t 0.61252099 0.99354517 0.60925299 0.99303496 0.60925299 0.99303496 0.60846299 0.96217978\n\t\t 0.61164898 0.96270442 0.62696803 0.96519321 0.62519503 0.90867782 0.62837499 0.90926939\n\t\t 0.62837499 0.90926939 0.63031203 0.96567428 0.62696803 0.96519321 0.62791902 0.99603516\n\t\t 0.62696803 0.96519321 0.63031203 0.96567428 0.63031203 0.96567428 0.63133502 0.99652749\n\t\t 0.62791902 0.99603516 0.74974 0.908687 0.75171101 0.96195519 0.633735 0.96575028\n\t\t 0.633735 0.96575028 0.63168401 0.90934241 0.74974 0.908687 0.633735 0.96575028 0.75171101\n\t\t 0.96195519 0.70858699 0.99514169 0.70858699 0.99514169 0.63482898 0.99666172 0.633735\n\t\t 0.96575028 0.63168401 0.90934241 0.633735 0.96575028 0.63031203 0.96567428 0.63031203\n\t\t 0.96567428 0.62837499 0.90926939 0.63168401 0.90934241 0.63133502 0.99652749 0.63031203\n\t\t 0.96567428 0.633735 0.96575028 0.633735 0.96575028 0.63482898 0.99666172 0.63133502\n\t\t 0.99652749 0.984604 0.0068500042 0.99834901 0.0068500042 0.99834901 0.11273003 0.99834901\n\t\t 0.11273003 0.984604 0.11273003 0.984604 0.0068500042 0.984604 0.11273003 0.99834901\n\t\t 0.11273003 0.99834901 0.16670901 0.99834901 0.16670901 0.984604 0.16670901 0.984604\n\t\t 0.11273003 0.70010298 0.11637801 0.70895702 0.11730498 0.70915198 0.11979598 0.70915198\n\t\t 0.11979598 0.700306 0.11886901 0.70010298 0.11637801 0.70010298 0.11637801 0.700306\n\t\t 0.11886901 0.69709802 0.118536 0.69709802 0.118536 0.696926 0.11604297 0.70010298\n\t\t 0.11637801 0.70915198 0.11979598 0.70895702 0.11730498 0.71202201 0.11763901 0.71202201\n\t\t 0.11763901 0.71217 0.120134 0.70915198 0.11979598 0.58830601 0.12005901 0.58820099\n\t\t 0.117562 0.693753 0.115973 0.693753 0.115973 0.69388199 0.118469 0.58830601 0.12005901\n\t\t 0.69388199 0.118469 0.693753 0.115973 0.696926 0.11604297 0.696926 0.11604297 0.69709802\n\t\t 0.118536 0.69388199 0.118469 0.81957197 0.11489201 0.819628 0.11738998 0.71515697\n\t\t 0.12016499 0.71515697 0.12016499 0.71507001 0.11766797 0.81957197 0.11489201 0.71507001\n\t\t 0.11766797 0.71515697 0.12016499 0.71217 0.120134 0.71217 0.120134 0.71202201 0.11763901\n\t\t 0.71507001 0.11766797 0.97997999 0.17066097 0.984604 0.169891 0.984604 0.17867601\n\t\t 0.984604 0.17867601 0.97997999 0.17702699 0.97997999 0.17066097 0.82898998 0.15759498\n\t\t 0.83883202 0.12986898 0.84057802 0.13130802 0.84057802 0.13130802 0.83235401 0.15878999\n\t\t 0.82898998 0.15759498 0.62313801 0.90476799 0.62519503 0.90867782 0.61003703 0.9061839\n\t\t 0.61003703 0.9061839 0.61330497 0.90316808 0.62313801 0.90476799 0.82326502 0.18546498\n\t\t 0.83484101 0.15604401 0.83666402 0.15681601 0.83666402 0.15681601 0.82683498 0.18546498\n\t\t 0.82326502 0.18546498 0.850573 0.13401997 0.85215998 0.13376403 0.85278201 0.134821\n\t\t 0.85278201 0.134821 0.85117102 0.135068 0.850573 0.13401997 0.85215998 0.13376403\n\t\t 0.850573 0.13401997 0.848773 0.13310301 0.848773 0.13310301 0.850384 0.132855 0.85215998\n\t\t 0.13376403 0.850851 0.16535503 0.85117102 0.135068 0.85278201 0.134821 0.85278201\n\t\t 0.134821 0.85385001 0.16641998 0.850851 0.16535503 0.84141099 0.130768 0.83969003\n\t\t 0.12933803 0.84154302 0.12971699 0.84154302 0.12971699 0.84328902 0.13115603 0.84141099\n\t\t 0.130768 0.84729999 0.15602797 0.84901398 0.15525597 0.84964401 0.15604401 0.84964401\n\t\t 0.15604401 0.84790498 0.15681601 0.84729999 0.15602797 0.84901398 0.15525597 0.84729999\n\t\t 0.15602797 0.84539998 0.15576601 0.84539998 0.15576601 0.84714001 0.15499401 0.84901398\n\t\t 0.15525597 0.84646201 0.18546498 0.84790498 0.15681601 0.84964401 0.15604401 0.84964401\n\t\t 0.15604401 0.84964401 0.18546498 0.84646201 0.18546498 0.837578 0.15602797 0.83578098\n\t\t 0.15525597 0.837758 0.15499401 0.837758 0.15499401 0.83958203 0.15576601 0.837578\n\t\t 0.15602797 0.60522699 0.96195853 0.60397798 0.9055199 0.60702801 0.90579617 0.60702801\n\t\t 0.90579617 0.60846299 0.96217978 0.60522699 0.96195853 0.60593802 0.99287945 0.60522699\n\t\t 0.96195853 0.60846299 0.96217978 0.60846299 0.96217978 0.60925299 0.99303496 0.60593802\n\t\t 0.99287945 0.60397798 0.9055199 0.60522699 0.96195853 0.48866799 0.96133453 0.48866799\n\t\t 0.96133453 0.48754799 0.9080413 0.60397798 0.9055199 0.53310698 0.99334276 0.48866799\n\t\t 0.96133453 0.60522699 0.96195853 0.60522699 0.96195853 0.60593802 0.99287945 0.53310698\n\t\t 0.99334276 0.97934997 0.101358 0.984604 0.11273003 0.984604 0.16670901 0.984604 0.16670901\n\t\t 0.97937298 0.15511602 0.97934997 0.101358 0.63328099 0.9051342 0.63168401 0.90934241\n\t\t 0.62837499 0.90926939 0.62837499 0.90926939 0.629408 0.90519232 0.63328099 0.9051342\n\t\t 0.75729501 0.23214197 0.753851 0.23207998 0.75384998 0.21781301 0.75384998 0.21781301\n\t\t 0.75729799 0.21848601 0.75729501 0.23214197 0.753851 0.23207998 0.75729501 0.23214197\n\t\t 0.75749999 0.23307198 0.75749999 0.23307198 0.75446999 0.23503202 0.753851 0.23207998\n\t\t 0.75446999 0.23503202 0.75749999 0.23307198 0.75824898 0.23364002 0.75824898 0.23364002\n\t\t 0.75690502 0.23688197 0.75446999 0.23503202 0.75690502 0.23688197 0.75824898 0.23364002\n\t\t 0.85685402 0.277381;\n\tsetAttr \".uvst[0].uvsp[15000:15249]\" 0.85685402 0.277381 0.85511202 0.28345501\n\t\t 0.75690502 0.23688197 0.75729799 0.21848601 0.75384998 0.21781301 0.75480902 0.21494699\n\t\t 0.75480902 0.21494699 0.75753403 0.217767 0.75729799 0.21848601 0.75753403 0.217767\n\t\t 0.75480902 0.21494699 0.75768101 0.21398097 0.75768101 0.21398097 0.758241 0.21754199\n\t\t 0.75753403 0.217767 0.758241 0.21754199 0.75768101 0.21398097 0.86500299 0.21398097\n\t\t 0.86500299 0.21398097 0.86500299 0.22030097 0.758241 0.21754199 0.69633102 0.14902103\n\t\t 0.70966202 0.148422 0.70989001 0.15636998 0.70989001 0.15636998 0.69651198 0.15420598\n\t\t 0.69633102 0.14902103 0.71065801 0.15649301 0.70989001 0.15636998 0.70966202 0.148422\n\t\t 0.70966202 0.148422 0.71045703 0.14840198 0.71065801 0.15649301 0.69556898 0.14910698\n\t\t 0.69633102 0.14902103 0.69651198 0.15420598 0.69651198 0.15420598 0.69578397 0.15409797\n\t\t 0.69556898 0.14910698 0.71045703 0.14840198 0.71125501 0.148404 0.71142501 0.15654099\n\t\t 0.71142501 0.15654099 0.71065801 0.15649301 0.71045703 0.14840198 0.81919903 0.157323\n\t\t 0.71142501 0.15654099 0.71125501 0.148404 0.71125501 0.148404 0.81904501 0.14918602\n\t\t 0.81919903 0.157323 0.69481099 0.14916497 0.69556898 0.14910698 0.69578397 0.15409797\n\t\t 0.69578397 0.15409797 0.69506299 0.15408897 0.69481099 0.14916497 0.58820099 0.15557098\n\t\t 0.69481099 0.14916497 0.69506299 0.15408897 0.69506299 0.15408897 0.58847302 0.16049403\n\t\t 0.58820099 0.15557098 0.39858499 0.97083151 0.51025897 0.98320842 0.51100397 0.98353827\n\t\t 0.39858499 0.97083151 0.51100397 0.98353827 0.51066703 0.99915653 0.51100397 0.98353827\n\t\t 0.51162499 0.99817085 0.51066703 0.99915653 0.51100397 0.98353827 0.51126897 0.9843058\n\t\t 0.51162499 0.99817085 0.51162499 0.99817085 0.51139802 0.99890906 0.51066703 0.99915653\n\t\t 0.39858499 0.97083151 0.51066703 0.99915653 0.39934501 0.99924314 0.57985902 0.89640701\n\t\t 0.60355997 0.88852698 0.62545598 0.88002902 0.575638 0.62355602 0.51263899 0.635571\n\t\t 0.46393201 0.586182 0.502666 0.59499502 0.46393201 0.586182 0.51999903 0.59748602\n\t\t 0.57629102 0.59869897 0.51999903 0.59748602 0.502666 0.59499502 0.51999903 0.59748602\n\t\t 0.502666 0.59499502 0.57629102 0.59869897 0.615619 0.59079099 0.57629102 0.59869897\n\t\t 0.615619 0.59079099 0.615619 0.59079099 0.63662899 0.58448696 0.76749998 0.063960016\n\t\t 0.76749998 0.063960016 0.76183498 0.063723981 0.76183498 0.063723981 0.47156399 0.78741199\n\t\t 0.50907999 0.77799898 0.47156399 0.78741199 0.50907999 0.77799898 0.54268903 0.76687902\n\t\t 0.54268903 0.76687902 0.54268903 0.76687902 0.59896803 0.74101496 0.54268903 0.76687902\n\t\t 0.59072798 0.74632901 0.59896803 0.74101496 0.59896803 0.74101496 0.38684201 0.113805\n\t\t 0.38684201 0.113805 0.38684201 0.113805 0.38705501 0.14959902 0.171746 0.64543903\n\t\t 0.171746 0.64543903 0.152053 0.63635302 0.152053 0.63635302 0.118394 0.61516899 0.118394\n\t\t 0.61516899 0.118394 0.61516899 0.118394 0.61516899 0.0830153 0.57183599 0.0830153\n\t\t 0.57183599 0.0830153 0.57183599 0.075556599 0.55575001 0.075556599 0.55575001 0.064199202\n\t\t 0.51736999 0.064199202 0.51736999 0.479435 0.54858303 0.485836 0.511558 0.479435\n\t\t 0.54858303 0.485836 0.511558 0.486781 0.51174599 0.48669401 0.51797104 0.48669401\n\t\t 0.51797104 0.479435 0.54858303 0.479435 0.54858303 0.474525 0.56073499 0.474525 0.56073499\n\t\t 0.474525 0.56073499 0.43165401 0.60671401 0.43165401 0.60671401 0.43165401 0.60671401\n\t\t 0.403283 0.62789899 0.403283 0.62789899 0.403283 0.62789899 0.37024599 0.64702797\n\t\t 0.81073701 0.038096011 0.824476 0.06299901 0.27382299 0.099601984 0.24055199 0.10050398\n\t\t 0.27382299 0.099601984 0.217067 0.10115403 0.24055199 0.10050398 0.217067 0.10115403\n\t\t 0.27382299 0.099601984 0.27382299 0.099601984 0.29618999 0.099223971 0.29618999 0.099223971\n\t\t 0.29618999 0.099223971 0.33705699 0.099372029 0.33705699 0.099372029 0.35699499 0.09957999\n\t\t 0.35699499 0.09957999 0.35699499 0.09957999 0.38874099 0.10004902 0.38874099 0.10004902\n\t\t 0.217067 0.10115403 0.191577 0.10120797 0.217067 0.10115403 0.63964701 0.77440703\n\t\t 0.62420201 0.76142401 0.63964701 0.77440703 0.59896803 0.74101496 0.62420201 0.76142401\n\t\t 0.62479299 0.75922799 0.59896803 0.74101496 0.63964701 0.77440703 0.67027998 0.80272901\n\t\t 0.67027998 0.80272901 0.67027998 0.80272901 0.67027998 0.80272901 0.68573898 0.81940001\n\t\t 0.68573898 0.81940001 0.68573898 0.81940001 0.70552498 0.84636301 0.70552498 0.84636301\n\t\t 0.717125 0.866763 0.717125 0.866763 0.717125 0.866763 0.717125 0.866763 0.72858697\n\t\t 0.889525 0.27256 0.52632296 0.232237 0.52772903 0.232237 0.52772903 0.232237 0.52772903\n\t\t 0.193591 0.531129 0.193591 0.531129 0.193591 0.531129 0.15879101 0.53578401 0.15879101\n\t\t 0.53578401 0.15879101 0.53578401 0.13013799 0.54078996 0.13013799 0.54078996 0.13013799\n\t\t 0.54078996 0.13013799 0.54078996 0.096278802 0.54856396 0.102394 0.56353998 0.096278802\n\t\t 0.54856396 0.13013799 0.54078996 0.096278802 0.54856396 0.102394 0.56353998 0.088756099\n\t\t 0.56896996 0.12279 0.61155498 0.088756099 0.56896996 0.102394 0.56353998 0.088756099\n\t\t 0.56896996 0.12279 0.61155498 0.118394 0.61516899 0.152053 0.63635302 0.118394 0.61516899\n\t\t 0.12279 0.61155498 0.12279 0.61155498 0.15574799 0.63225496 0.152053 0.63635302 0.171746\n\t\t 0.64543903 0.152053 0.63635302 0.15574799 0.63225496 0.15574799 0.63225496 0.19531199\n\t\t 0.648489 0.171746 0.64543903 0.118394 0.61516899 0.0830153 0.57183599 0.088756099\n\t\t 0.56896996 0.0817044 0.553285 0.088756099 0.56896996 0.0830153 0.57183599 0.088756099\n\t\t 0.56896996 0.0817044 0.553285 0.096278802 0.54856396 0.096278802 0.54856396 0.0817044\n\t\t 0.553285;\n\tsetAttr \".uvst[0].uvsp[15250:15499]\" 0.0830153 0.57183599 0.075556599 0.55575001\n\t\t 0.0817044 0.553285 0.0817044 0.553285 0.075556599 0.55575001 0.0817044 0.553285 0.075556599\n\t\t 0.55575001 0.19531199 0.648489 0.15574799 0.63225496 0.163679 0.62401402 0.197501\n\t\t 0.64436799 0.19531199 0.648489 0.163679 0.62401402 0.199958 0.63921601 0.197501 0.64436799\n\t\t 0.163679 0.62401402 0.217894 0.64926398 0.197501 0.64436799 0.199958 0.63921601 0.199958\n\t\t 0.63921601 0.219115 0.64372897 0.217894 0.64926398 0.219115 0.64372897 0.199958 0.63921601\n\t\t 0.205577 0.629071 0.205577 0.629071 0.199958 0.63921601 0.163679 0.62401402 0.205577\n\t\t 0.629071 0.218181 0.62991703 0.219115 0.64372897 0.218181 0.62991703 0.205577 0.629071\n\t\t 0.18391199 0.61487997 0.163679 0.62401402 0.18391199 0.61487997 0.205577 0.629071\n\t\t 0.18391199 0.61487997 0.202126 0.61154902 0.218181 0.62991703 0.202126 0.61154902\n\t\t 0.18391199 0.61487997 0.16002201 0.59466499 0.16002201 0.59466499 0.18391199 0.61487997\n\t\t 0.163679 0.62401402 0.16002201 0.59466499 0.18296701 0.58974802 0.202126 0.61154902\n\t\t 0.18296701 0.58974802 0.16002201 0.59466499 0.134877 0.55528104 0.134877 0.55528104\n\t\t 0.16255 0.55006003 0.18296701 0.58974802 0.18296701 0.58974802 0.16255 0.55006003\n\t\t 0.196173 0.54512501 0.196173 0.54512501 0.21081901 0.58532703 0.18296701 0.58974802\n\t\t 0.202126 0.61154902 0.18296701 0.58974802 0.21081901 0.58532703 0.21081901 0.58532703\n\t\t 0.196173 0.54512501 0.233486 0.54143399 0.233486 0.54143399 0.241639 0.58205903 0.21081901\n\t\t 0.58532703 0.27355599 0.580643 0.241639 0.58205903 0.233486 0.54143399 0.233486 0.54143399\n\t\t 0.27234399 0.53982103 0.27355599 0.580643 0.21081901 0.58532703 0.22458699 0.60906696\n\t\t 0.202126 0.61154902 0.218181 0.62991703 0.202126 0.61154902 0.22458699 0.60906696\n\t\t 0.22458699 0.60906696 0.23624299 0.63056499 0.218181 0.62991703 0.256679 0.630817\n\t\t 0.23624299 0.63056499 0.22458699 0.60906696 0.22458699 0.60906696 0.24966601 0.607355\n\t\t 0.256679 0.630817 0.24966601 0.607355 0.22458699 0.60906696 0.21081901 0.58532703\n\t\t 0.21081901 0.58532703 0.241639 0.58205903 0.24966601 0.607355 0.27830499 0.63077301\n\t\t 0.256679 0.630817 0.24966601 0.607355 0.24966601 0.607355 0.27583799 0.60664701 0.27830499\n\t\t 0.63077301 0.241639 0.58205903 0.27355599 0.580643 0.27583799 0.60664701 0.27583799\n\t\t 0.60664701 0.24966601 0.607355 0.241639 0.58205903 0.27830499 0.63077301 0.27583799\n\t\t 0.60664701 0.301606 0.60718 0.301606 0.60718 0.27583799 0.60664701 0.27355599 0.580643\n\t\t 0.301606 0.60718 0.29993701 0.63060296 0.27830499 0.63077301 0.29993701 0.63060296\n\t\t 0.301606 0.60718 0.32588801 0.60857701 0.32588801 0.60857701 0.32021001 0.62999099\n\t\t 0.29993701 0.63060296 0.349648 0.62743801 0.32021001 0.62999099 0.32588801 0.60857701\n\t\t 0.32588801 0.60857701 0.365531 0.61310899 0.349648 0.62743801 0.38345701 0.59221101\n\t\t 0.365531 0.61310899 0.32588801 0.60857701 0.32588801 0.60857701 0.33438 0.58447701\n\t\t 0.38345701 0.59221101 0.33438 0.58447701 0.32588801 0.60857701 0.301606 0.60718 0.301606\n\t\t 0.60718 0.30482101 0.58172202 0.33438 0.58447701 0.27355599 0.580643 0.30482101 0.58172202\n\t\t 0.301606 0.60718 0.31087899 0.540941 0.30482101 0.58172202 0.27355599 0.580643 0.27355599\n\t\t 0.580643 0.27234399 0.53982103 0.31087899 0.540941 0.30482101 0.58172202 0.31087899\n\t\t 0.540941 0.347776 0.54390502 0.347776 0.54390502 0.33438 0.58447701 0.30482101 0.58172202\n\t\t 0.33438 0.58447701 0.347776 0.54390502 0.40987 0.55200201 0.40987 0.55200201 0.38345701\n\t\t 0.59221101 0.33438 0.58447701 0.31270099 0.52741301 0.31087899 0.540941 0.27234399\n\t\t 0.53982103 0.27234399 0.53982103 0.27256 0.52632296 0.31270099 0.52741301 0.31087899\n\t\t 0.540941 0.31270099 0.52741301 0.35122901 0.53023696 0.35122901 0.53023696 0.347776\n\t\t 0.54390502 0.31087899 0.540941 0.347776 0.54390502 0.35122901 0.53023696 0.41606799\n\t\t 0.53786504 0.41606799 0.53786504 0.40987 0.55200201 0.347776 0.54390502 0.41606799\n\t\t 0.53786504 0.35122901 0.53023696 0.35122901 0.53023696 0.31270099 0.52741301 0.41606799\n\t\t 0.53786504 0.45411 0.54374301 0.41606799 0.53786504 0.40987 0.55200201 0.41606799\n\t\t 0.53786504 0.45411 0.54374301 0.45411 0.54374301 0.45411 0.54374301 0.479435 0.54858303\n\t\t 0.45411 0.54374301 0.232237 0.52772903 0.27256 0.52632296 0.27234399 0.53982103 0.27234399\n\t\t 0.53982103 0.233486 0.54143399 0.232237 0.52772903 0.193591 0.531129 0.232237 0.52772903\n\t\t 0.233486 0.54143399 0.233486 0.54143399 0.196173 0.54512501 0.193591 0.531129 0.193591\n\t\t 0.531129 0.196173 0.54512501 0.16255 0.55006003 0.16255 0.55006003 0.15879101 0.53578401\n\t\t 0.193591 0.531129 0.13013799 0.54078996 0.15879101 0.53578401 0.16255 0.55006003\n\t\t 0.16255 0.55006003 0.134877 0.55528104 0.13013799 0.54078996 0.13013799 0.54078996\n\t\t 0.134877 0.55528104 0.102394 0.56353998 0.102394 0.56353998 0.134877 0.55528104 0.16002201\n\t\t 0.59466499 0.16002201 0.59466499 0.133357 0.60415101 0.102394 0.56353998 0.163679\n\t\t 0.62401402 0.133357 0.60415101 0.16002201 0.59466499 0.133357 0.60415101 0.163679\n\t\t 0.62401402 0.15574799 0.63225496 0.15574799 0.63225496 0.12279 0.61155498 0.133357\n\t\t 0.60415101 0.102394 0.56353998 0.133357 0.60415101 0.12279 0.61155498 0.44675699\n\t\t 0.55829597 0.45411 0.54374301 0.479435 0.54858303 0.45411 0.54374301 0.44675699 0.55829597\n\t\t 0.40987 0.55200201 0.40987 0.55200201 0.44675699 0.55829597 0.41232699 0.59934604\n\t\t 0.41232699 0.59934604;\n\tsetAttr \".uvst[0].uvsp[15500:15749]\" 0.44675699 0.55829597 0.474525 0.56073499\n\t\t 0.474525 0.56073499 0.43165401 0.60671401 0.41232699 0.59934604 0.387999 0.61984503\n\t\t 0.41232699 0.59934604 0.43165401 0.60671401 0.43165401 0.60671401 0.403283 0.62789899\n\t\t 0.387999 0.61984503 0.35878 0.63605404 0.387999 0.61984503 0.403283 0.62789899 0.403283\n\t\t 0.62789899 0.37024599 0.64702797 0.35878 0.63605404 0.41232699 0.59934604 0.38345701\n\t\t 0.59221101 0.40987 0.55200201 0.41232699 0.59934604 0.387999 0.61984503 0.365531\n\t\t 0.61310899 0.365531 0.61310899 0.38345701 0.59221101 0.41232699 0.59934604 0.349648\n\t\t 0.62743801 0.365531 0.61310899 0.387999 0.61984503 0.387999 0.61984503 0.35878 0.63605404\n\t\t 0.349648 0.62743801 0.349648 0.62743801 0.35878 0.63605404 0.32028499 0.63837302\n\t\t 0.32028499 0.63837302 0.32021001 0.62999099 0.349648 0.62743801 0.29993701 0.63060296\n\t\t 0.32021001 0.62999099 0.32028499 0.63837302 0.32028499 0.63837302 0.30011001 0.63986701\n\t\t 0.29993701 0.63060296 0.27830499 0.63077301 0.29993701 0.63060296 0.30011001 0.63986701\n\t\t 0.30011001 0.63986701 0.27988499 0.64810503 0.27830499 0.63077301 0.256679 0.630817\n\t\t 0.27830499 0.63077301 0.27988499 0.64810503 0.27988499 0.64810503 0.259215 0.64798498\n\t\t 0.256679 0.630817 0.256679 0.630817 0.259215 0.64798498 0.23878001 0.64664 0.23878001\n\t\t 0.64664 0.23624299 0.63056499 0.256679 0.630817 0.218181 0.62991703 0.23624299 0.63056499\n\t\t 0.23878001 0.64664 0.23878001 0.64664 0.219115 0.64372897 0.218181 0.62991703 0.23878001\n\t\t 0.64664 0.217894 0.64926398 0.219115 0.64372897 0.240008 0.11434603 0.24055199 0.10050398\n\t\t 0.27382299 0.099601984 0.27382299 0.099601984 0.273256 0.11424899 0.240008 0.11434603\n\t\t 0.273256 0.11424899 0.27382299 0.099601984 0.29618999 0.099223971 0.29618999 0.099223971\n\t\t 0.29547399 0.11413097 0.273256 0.11424899 0.273256 0.11424899 0.29547399 0.11413097\n\t\t 0.240008 0.11434603 0.273256 0.11424899 0.29547399 0.11413097 0.240008 0.11434603\n\t\t 0.21642099 0.11414403 0.240008 0.11434603 0.24055199 0.10050398 0.240008 0.11434603\n\t\t 0.21642099 0.11414403 0.21642099 0.11414403 0.19082101 0.11343598 0.21642099 0.11414403\n\t\t 0.19082101 0.11343598 0.29547399 0.11413097 0.29547399 0.11413097 0.33537 0.11410397\n\t\t 0.33537 0.11410397 0.29547399 0.11413097 0.29618999 0.099223971 0.33537 0.11410397\n\t\t 0.355057 0.114048 0.355057 0.114048 0.355057 0.114048 0.38684201 0.113805 0.38684201\n\t\t 0.113805 0.355057 0.114048 0.33537 0.11410397 0.33705699 0.099372029 0.29618999 0.099223971\n\t\t 0.33705699 0.099372029 0.33537 0.11410397 0.33705699 0.099372029 0.35699499 0.09957999\n\t\t 0.355057 0.114048 0.38874099 0.10004902 0.38684201 0.113805 0.355057 0.114048 0.355057\n\t\t 0.114048 0.35699499 0.09957999 0.38874099 0.10004902 0.21642099 0.11414403 0.19082101\n\t\t 0.11343598 0.191577 0.10120797 0.191577 0.10120797 0.217067 0.10115403 0.21642099\n\t\t 0.11414403 0.21642099 0.11414403 0.217067 0.10115403 0.24055199 0.10050398 0.67393702\n\t\t 0.82428503 0.69283998 0.85166001 0.62545598 0.88002902 0.62545598 0.88002902 0.61096197\n\t\t 0.84985 0.67393702 0.82428503 0.67393702 0.82428503 0.61096197 0.84985 0.599271 0.83183199\n\t\t 0.599271 0.83183199 0.65909898 0.80751699 0.67393702 0.82428503 0.62947297 0.77921498\n\t\t 0.65909898 0.80751699 0.599271 0.83183199 0.599271 0.83183199 0.57464898 0.802387\n\t\t 0.62947297 0.77921498 0.55798602 0.84607303 0.599271 0.83183199 0.61096197 0.84985\n\t\t 0.61096197 0.84985 0.567985 0.864779 0.55798602 0.84607303 0.510019 0.859505 0.55798602\n\t\t 0.84607303 0.567985 0.864779 0.567985 0.864779 0.51819801 0.87881398 0.510019 0.859505\n\t\t 0.52490002 0.90011168 0.51819801 0.87881398 0.567985 0.864779 0.567985 0.864779 0.57985902\n\t\t 0.89640701 0.52490002 0.90011168 0.57985902 0.89640701 0.567985 0.864779 0.61096197\n\t\t 0.84985 0.62545598 0.88002902 0.57985902 0.89640701 0.61096197 0.84985 0.53664201\n\t\t 0.81587398 0.57464898 0.802387 0.599271 0.83183199 0.599271 0.83183199 0.55798602\n\t\t 0.84607303 0.53664201 0.81587398 0.53664201 0.81587398 0.55798602 0.84607303 0.510019\n\t\t 0.859505 0.51819801 0.87881398 0.52490002 0.90011168 0.47872999 0.88834298 0.510019\n\t\t 0.859505 0.51819801 0.87881398 0.47872999 0.88834298 0.47872999 0.88834298 0.47179601\n\t\t 0.86844999 0.510019 0.859505 0.510019 0.859505 0.47179601 0.86844999 0.45835799 0.83736503\n\t\t 0.45835799 0.83736503 0.49295399 0.82889801 0.510019 0.859505 0.510019 0.859505 0.49295399\n\t\t 0.82889801 0.53664201 0.81587398 0.62947297 0.77921498 0.57464898 0.802387 0.56204498\n\t\t 0.78862798 0.56204498 0.78862798 0.614582 0.76625597 0.62947297 0.77921498 0.614582\n\t\t 0.76625597 0.56204498 0.78862798 0.54268903 0.76687902 0.54268903 0.76687902 0.59072798\n\t\t 0.74632901 0.614582 0.76625597 0.57464898 0.802387 0.53664201 0.81587398 0.52573001\n\t\t 0.80144 0.52573001 0.80144 0.56204498 0.78862798 0.57464898 0.802387 0.56204498 0.78862798\n\t\t 0.52573001 0.80144 0.50907999 0.77799898 0.50907999 0.77799898 0.54268903 0.76687902\n\t\t 0.56204498 0.78862798 0.47156399 0.78741199 0.50907999 0.77799898 0.52573001 0.80144\n\t\t 0.52573001 0.80144 0.48442599 0.813577 0.47156399 0.78741199 0.48442599 0.813577\n\t\t 0.52573001 0.80144 0.53664201 0.81587398 0.53664201 0.81587398 0.49295399 0.82889801\n\t\t 0.48442599 0.813577 0.49295399 0.82889801 0.45835799 0.83736503 0.45195499 0.82108498\n\t\t 0.45195499 0.82108498 0.48442599 0.813577 0.49295399 0.82889801 0.47156399 0.78741199\n\t\t 0.48442599 0.813577 0.45195499 0.82108498 0.62420201 0.76142401 0.614582 0.76625597;\n\tsetAttr \".uvst[0].uvsp[15750:15999]\" 0.59072798 0.74632901 0.62947297 0.77921498\n\t\t 0.614582 0.76625597 0.62420201 0.76142401 0.62420201 0.76142401 0.63964701 0.77440703\n\t\t 0.62947297 0.77921498 0.59072798 0.74632901 0.59896803 0.74101496 0.62420201 0.76142401\n\t\t 0.62947297 0.77921498 0.63964701 0.77440703 0.67027998 0.80272901 0.67027998 0.80272901\n\t\t 0.65909898 0.80751699 0.62947297 0.77921498 0.65909898 0.80751699 0.67027998 0.80272901\n\t\t 0.68573898 0.81940001 0.68573898 0.81940001 0.67393702 0.82428503 0.65909898 0.80751699\n\t\t 0.69283998 0.85166001 0.67393702 0.82428503 0.68573898 0.81940001 0.68573898 0.81940001\n\t\t 0.70552498 0.84636301 0.69283998 0.85166001 0.70397002 0.87239099 0.69283998 0.85166001\n\t\t 0.70552498 0.84636301 0.70397002 0.87239099 0.65551299 0.89364702 0.69283998 0.85166001\n\t\t 0.65551299 0.89364702 0.70397002 0.87239099 0.71510601 0.89542902 0.65551299 0.89364702\n\t\t 0.62545598 0.88002902 0.69283998 0.85166001 0.65551299 0.89364702 0.62988698 0.89107198\n\t\t 0.62545598 0.88002902 0.62988698 0.89107198 0.60355997 0.88852698 0.62545598 0.88002902\n\t\t 0.62545598 0.88002902 0.60355997 0.88852698 0.57985902 0.89640701 0.70552498 0.84636301\n\t\t 0.717125 0.866763 0.70397002 0.87239099 0.71510601 0.89542902 0.70397002 0.87239099\n\t\t 0.717125 0.866763 0.717125 0.866763 0.72858697 0.889525 0.71510601 0.89542902 0.615619\n\t\t 0.59079099 0.63662899 0.58448696 0.61719602 0.602795 0.615619 0.59079099 0.61719602\n\t\t 0.602795 0.575638 0.62355602 0.575638 0.62355602 0.57629102 0.59869897 0.615619 0.59079099\n\t\t 0.575638 0.62355602 0.51999903 0.59748602 0.57629102 0.59869897 0.575638 0.62355602\n\t\t 0.53970402 0.63738096 0.51999903 0.59748602 0.53970402 0.63738096 0.51263899 0.635571\n\t\t 0.51999903 0.59748602 0.502666 0.59499502 0.51999903 0.59748602 0.51263899 0.635571\n\t\t 0.51263899 0.635571 0.49415401 0.63292599 0.502666 0.59499502 0.502666 0.59499502\n\t\t 0.49415401 0.63292599 0.502666 0.59499502 0.50347 0.59198403 0.502666 0.59499502\n\t\t 0.46393201 0.586182 0.46393201 0.586182 0.50347 0.59198403 0.57655102 0.59589303\n\t\t 0.57629102 0.59869897 0.51999903 0.59748602 0.51999903 0.59748602 0.52078998 0.594598\n\t\t 0.57655102 0.59589303 0.52078998 0.594598 0.51999903 0.59748602 0.502666 0.59499502\n\t\t 0.502666 0.59499502 0.50347 0.59198403 0.52078998 0.594598 0.61540502 0.58813101\n\t\t 0.615619 0.59079099 0.57629102 0.59869897 0.57629102 0.59869897 0.57655102 0.59589303\n\t\t 0.61540502 0.58813101 0.63612598 0.58191502 0.63662899 0.58448696 0.615619 0.59079099\n\t\t 0.615619 0.59079099 0.61540502 0.58813101 0.63612598 0.58191502 0.277971 0.40843803\n\t\t 0.27732101 0.40630001 0.295329 0.39680302 0.295329 0.39680302 0.29579601 0.398965\n\t\t 0.277971 0.40843803 0.33041 0.38633698 0.29579601 0.398965 0.295329 0.39680302 0.295329\n\t\t 0.39680302 0.33034599 0.38426602 0.33041 0.38633698 0.381616 0.38669097 0.33041 0.38633698\n\t\t 0.33034599 0.38426602 0.33034599 0.38426602 0.38225001 0.38488197 0.381616 0.38669097\n\t\t 0.39715201 0.39090401 0.381616 0.38669097 0.38225001 0.38488197 0.38225001 0.38488197\n\t\t 0.39798099 0.38919502 0.39715201 0.39090401 0.39715201 0.39090401 0.39798099 0.38919502\n\t\t 0.39798099 0.38919502 0.80761302 0.068322003 0.84488702 0.111781 0.84376198 0.11296397\n\t\t 0.84376198 0.11296397 0.80680901 0.069387972 0.80761302 0.068322003 0.85980201 0.14091402\n\t\t 0.84376198 0.11296397 0.84488702 0.111781 0.84488702 0.111781 0.86104101 0.13940799\n\t\t 0.85980201 0.14091402 0.87148899 0.17352599 0.85980201 0.14091402 0.86104101 0.13940799\n\t\t 0.86104101 0.13940799 0.872787 0.17219001 0.87148899 0.17352599 0.80761302 0.068322003\n\t\t 0.80680901 0.069387972 0.80636001 0.067773998 0.79536301 0.064817011 0.80636001 0.067773998\n\t\t 0.80680901 0.069387972 0.80680901 0.069387972 0.79578501 0.065733016 0.79536301 0.064817011\n\t\t 0.79536301 0.064817011 0.79578501 0.065733016 0.76749998 0.063960016 0.79536301 0.064817011\n\t\t 0.76749998 0.063960016 0.76183498 0.063723981 0.76749998 0.063960016 0.76329303 0.064206004\n\t\t 0.76329303 0.064206004 0.76185697 0.063950002 0.76183498 0.063723981 0.79536301 0.064817011\n\t\t 0.47064099 0.78492796 0.50763398 0.77558601 0.50907999 0.77799898 0.50907999 0.77799898\n\t\t 0.47156399 0.78741199 0.47064099 0.78492796 0.54268903 0.76687902 0.50907999 0.77799898\n\t\t 0.50763398 0.77558601 0.50763398 0.77558601 0.54102898 0.764431 0.54268903 0.76687902\n\t\t 0.54102898 0.764431 0.59896803 0.74101496 0.54268903 0.76687902 0.54102898 0.764431\n\t\t 0.598795 0.74006701 0.59896803 0.74101496 0.59896803 0.74101496 0.59072798 0.74632901\n\t\t 0.54268903 0.76687902 0.38896 0.10012001 0.38983199 0.10023499 0.388926 0.11263102\n\t\t 0.388926 0.11263102 0.38684201 0.113805 0.38896 0.10012001 0.38684201 0.113805 0.388926\n\t\t 0.11263102 0.38705501 0.14959902 0.38684201 0.113805 0.151648 0.63753301 0.152053\n\t\t 0.63635302 0.171746 0.64543903 0.171746 0.64543903 0.17129 0.64660203 0.151648 0.63753301\n\t\t 0.118394 0.61516899 0.152053 0.63635302 0.151648 0.63753301 0.151648 0.63753301 0.117801\n\t\t 0.61630297 0.118394 0.61516899 0.118394 0.61516899 0.117801 0.61630297 0.0818763\n\t\t 0.57269001 0.0818763 0.57269001 0.0830153 0.57183599 0.118394 0.61516899 0.0830153\n\t\t 0.57183599 0.0818763 0.57269001 0.074283503 0.55642998 0.074283503 0.55642998 0.075556599\n\t\t 0.55575001 0.0830153 0.57183599 0.064199202 0.51736999 0.075556599 0.55575001 0.074283503\n\t\t 0.55642998 0.074283503 0.55642998 0.064199202 0.51736999 0.48669401 0.51797104 0.48109701\n\t\t 0.54923797 0.479435 0.54858303 0.48669401 0.51797104 0.479435 0.54858303 0.485836\n\t\t 0.511558 0.48669401 0.51797104 0.485836 0.511558 0.48669401 0.51797104 0.486781 0.51174599;\n\tsetAttr \".uvst[0].uvsp[16000:16249]\" 0.487019 0.51179099 0.487019 0.51179099 0.48720899\n\t\t 0.51338303 0.48669401 0.51797104 0.479435 0.54858303 0.48109701 0.54923797 0.47544801\n\t\t 0.56130701 0.47544801 0.56130701 0.474525 0.56073499 0.479435 0.54858303 0.474525\n\t\t 0.56073499 0.47544801 0.56130701 0.43260899 0.60805601 0.43260899 0.60805601 0.43165401\n\t\t 0.60671401 0.474525 0.56073499 0.43165401 0.60671401 0.43260899 0.60805601 0.40401101\n\t\t 0.62913704 0.40401101 0.62913704 0.403283 0.62789899 0.43165401 0.60671401 0.37024599\n\t\t 0.64702797 0.403283 0.62789899 0.40401101 0.62913704 0.40401101 0.62913704 0.371099\n\t\t 0.648341 0.37024599 0.64702797 0.87785202 0.15530503 0.86466402 0.12786198 0.86689401\n\t\t 0.12774801 0.86689401 0.12774801 0.87998801 0.154971 0.87785202 0.15530503 0.88460302\n\t\t 0.17569798 0.87785202 0.15530503 0.87998801 0.154971 0.87998801 0.154971 0.88666099\n\t\t 0.175385 0.88460302 0.17569798 0.89051098 0.19834697 0.88460302 0.17569798 0.88666099\n\t\t 0.175385 0.88666099 0.175385 0.89253598 0.19805503 0.89051098 0.19834697 0.86689401\n\t\t 0.12774801 0.86466402 0.12786198 0.85416198 0.11022598 0.85416198 0.11022598 0.85638797\n\t\t 0.11037701 0.86689401 0.12774801 0.83686101 0.078474998 0.85638797 0.11037701 0.85416198\n\t\t 0.11022598 0.85416198 0.11022598 0.83460498 0.078140974 0.83686101 0.078474998 0.82670999\n\t\t 0.063135982 0.83686101 0.078474998 0.83460498 0.078140974 0.83460498 0.078140974\n\t\t 0.824476 0.06299901 0.82670999 0.063135982 0.81073701 0.038096011 0.82670999 0.063135982\n\t\t 0.824476 0.06299901 0.824476 0.06299901 0.80949199 0.038664997 0.81073701 0.038096011\n\t\t 0.240594 0.099399984 0.27403501 0.09858799 0.27382299 0.099601984 0.27382299 0.099601984\n\t\t 0.24055199 0.10050398 0.240594 0.099399984 0.240594 0.099399984 0.24055199 0.10050398\n\t\t 0.217067 0.10115403 0.217067 0.10115403 0.21708199 0.100034 0.240594 0.099399984\n\t\t 0.27382299 0.099601984 0.27403501 0.09858799 0.29644001 0.098221004 0.29644001 0.098221004\n\t\t 0.29618999 0.099223971 0.27382299 0.099601984 0.29618999 0.099223971 0.29644001 0.098221004\n\t\t 0.33730301 0.098396003 0.33730301 0.098396003 0.33705699 0.099372029 0.29618999 0.099223971\n\t\t 0.35699499 0.09957999 0.33705699 0.099372029 0.33730301 0.098396003 0.33730301 0.098396003\n\t\t 0.35724899 0.098610997 0.35699499 0.09957999 0.38874099 0.10004902 0.35699499 0.09957999\n\t\t 0.35724899 0.098610997 0.35724899 0.098610997 0.38938901 0.099461019 0.38874099 0.10004902\n\t\t 0.19161101 0.10008103 0.21708199 0.100034 0.217067 0.10115403 0.217067 0.10115403\n\t\t 0.191577 0.10120797 0.19161101 0.10008103 0.62479299 0.75922799 0.64026099 0.772273\n\t\t 0.63964701 0.77440703 0.63964701 0.77440703 0.62420201 0.76142401 0.62479299 0.75922799\n\t\t 0.62479299 0.75922799 0.62420201 0.76142401 0.59896803 0.74101496 0.59896803 0.74101496\n\t\t 0.59956598 0.74039304 0.62479299 0.75922799 0.67027998 0.80272901 0.63964701 0.77440703\n\t\t 0.64026099 0.772273 0.64026099 0.772273 0.67123902 0.80073798 0.67027998 0.80272901\n\t\t 0.67027998 0.80272901 0.67123902 0.80073798 0.68704301 0.81757802 0.68704301 0.81757802\n\t\t 0.68573898 0.81940001 0.67027998 0.80272901 0.68573898 0.81940001 0.68704301 0.81757802\n\t\t 0.70746398 0.84516299 0.70746398 0.84516299 0.70552498 0.84636301 0.68573898 0.81940001\n\t\t 0.717125 0.866763 0.70552498 0.84636301 0.70746398 0.84516299 0.70746398 0.84516299\n\t\t 0.71923202 0.865848 0.717125 0.866763 0.717125 0.866763 0.71923202 0.865848 0.73073697\n\t\t 0.88869798 0.73073697 0.88869798 0.72858697 0.889525 0.717125 0.866763 0.31270099\n\t\t 0.52741301 0.27256 0.52632296 0.31270099 0.52741301 0.31270099 0.52741301 0.479435\n\t\t 0.54858303 0.474525 0.56073499 0.44675699 0.55829597 0.49889299 0.29874802 0.48303699\n\t\t 0.29896301 0.47866699 0.29988903 0.47795099 0.28751397 0.47795099 0.28751397 0.808855\n\t\t 0.102516 0.78233498 0.10313499 0.78233498 0.10313499 0.73070699 0.59537697 0.76767403\n\t\t 0.32821101 0.76811898 0.32962 0.76811898 0.32962 0.73092198 0.20718199 0.73729199\n\t\t 0.20872098 0.127242 0.41025501 0.129186 0.39285803 0.14958 0.38585198 0.14958 0.38585198\n\t\t 0.146827 0.40550798 0.127242 0.41025501 0.117264 0.41120303 0.129186 0.39285803 0.127242\n\t\t 0.41025501 0.127242 0.41025501 0.116843 0.41702801 0.117264 0.41120303 0.14958 0.38585198\n\t\t 0.129186 0.39285803 0.132953 0.37122703 0.132953 0.37122703 0.15121201 0.37438202\n\t\t 0.14958 0.38585198 0.15121201 0.37438202 0.132953 0.37122703 0.134939 0.36569798\n\t\t 0.134939 0.36569798 0.150901 0.36980599 0.15121201 0.37438202 0.14868 0.36630201\n\t\t 0.150901 0.36980599 0.134939 0.36569798 0.134939 0.36569798 0.13810401 0.36357403\n\t\t 0.14868 0.36630201 0.164776 0.405352 0.146827 0.40550798 0.14958 0.38585198 0.14958\n\t\t 0.38585198 0.168715 0.38669598 0.164776 0.405352 0.164776 0.405352 0.168715 0.38669598\n\t\t 0.168715 0.38669598 0.603194 0.732602 0.60187602 0.73317003 0.59334803 0.72702897\n\t\t 0.59334803 0.72702897 0.60921502 0.719971 0.603194 0.732602 0.54758102 0.74721301\n\t\t 0.59334803 0.72702897 0.60187602 0.73317003 0.60187602 0.73317003 0.54691303 0.75761598\n\t\t 0.54758102 0.74721301 0.54732901 0.75853699 0.54691303 0.75761598 0.60187602 0.73317003\n\t\t 0.60187602 0.73317003 0.60142702 0.73447204 0.54732901 0.75853699 0.603194 0.732602\n\t\t 0.60921502 0.719971 0.61347097 0.71931696 0.61347097 0.71931696 0.60583502 0.73237896\n\t\t 0.603194 0.732602 0.60583502 0.73237896 0.61347097 0.71931696 0.62134802 0.72115004\n\t\t 0.62134802 0.72115004 0.61093801 0.73360801 0.60583502 0.73237896 0.617266 0.73897099\n\t\t 0.61093801 0.73360801 0.62134802 0.72115004 0.62134802 0.72115004 0.632231 0.72833699\n\t\t 0.617266 0.73897099;\n\tsetAttr \".uvst[0].uvsp[16250:16499]\" 0.62336701 0.74760401 0.617266 0.73897099\n\t\t 0.632231 0.72833699 0.632231 0.72833699 0.64094698 0.73838496 0.62336701 0.74760401\n\t\t 0.62336701 0.74760401 0.64094698 0.73838496 0.64094698 0.73838496 0.72836 0.59352601\n\t\t 0.71946299 0.58645403 0.74374801 0.56016701 0.74374801 0.56016701 0.75059801 0.56433499\n\t\t 0.72836 0.59352601 0.74374801 0.56016701 0.71946299 0.58645403 0.70740998 0.57264\n\t\t 0.70740998 0.57264 0.73457003 0.55104196 0.74374801 0.56016701 0.726861 0.54035604\n\t\t 0.73457003 0.55104196 0.70740998 0.57264 0.70740998 0.57264 0.698111 0.559219 0.726861\n\t\t 0.54035604 0.73070699 0.59537697 0.72836 0.59352601 0.75059801 0.56433499 0.75059801\n\t\t 0.56433499 0.75466198 0.56524897 0.73070699 0.59537697 0.726861 0.54035604 0.698111\n\t\t 0.559219 0.726861 0.54035604 0.539177 0.039846003 0.52359599 0.032953978 0.53108102\n\t\t 0.026257992 0.53108102 0.026257992 0.54518998 0.034364998 0.539177 0.039846003 0.54518998\n\t\t 0.034364998 0.53108102 0.026257992 0.54915297 0.025914013 0.54915297 0.025914013\n\t\t 0.55522197 0.028611004 0.54518998 0.034364998 0.48303699 0.29896301 0.48236999 0.28668898\n\t\t 0.49232599 0.28609502 0.49232599 0.28609502 0.494405 0.29828298 0.48303699 0.29896301\n\t\t 0.49889299 0.29874802 0.49801299 0.28634399 0.50342399 0.286874 0.50342399 0.286874\n\t\t 0.50479603 0.29928499 0.49889299 0.29874802 0.50479603 0.29928499 0.50342399 0.286874\n\t\t 0.52511901 0.30091 0.50479603 0.29928499 0.49477401 0.29842001 0.493806 0.28609902\n\t\t 0.49732399 0.28641802 0.49732399 0.28641802 0.49889299 0.29874802 0.49477401 0.29842001\n\t\t 0.47866699 0.29988903 0.47795099 0.28751397 0.48171699 0.28674603 0.48171699 0.28674603\n\t\t 0.48303699 0.29896301 0.47866699 0.29988903 0.47795099 0.28751397 0.47866699 0.29988903\n\t\t 0.47424901 0.301112 0.47424901 0.301112 0.47334501 0.28867102 0.47795099 0.28751397\n\t\t 0.47334501 0.28867102 0.47424901 0.301112 0.46501899 0.30360198 0.46501899 0.30360198\n\t\t 0.47334501 0.28867102 0.81614202 0.10893399 0.81193399 0.11083102 0.80528301 0.10637802\n\t\t 0.80528301 0.10637802 0.808855 0.102516 0.81614202 0.10893399 0.808855 0.102516 0.80528301\n\t\t 0.10637802 0.78233498 0.10313499 0.78233498 0.10313499 0.78125 0.098941982 0.808855\n\t\t 0.102516 0.78125 0.098941982 0.78233498 0.10313499 0.77977699 0.10381699 0.77977699\n\t\t 0.10381699 0.77867299 0.099546015 0.78125 0.098941982 0.77867299 0.099546015 0.77977699\n\t\t 0.10381699 0.74939299 0.111669 0.74939299 0.111669 0.74654698 0.10789597 0.77867299\n\t\t 0.099546015 0.52511901 0.30091 0.52345002 0.28848201 0.54350501 0.29014403 0.54350501\n\t\t 0.29014403 0.54494101 0.302598 0.52511901 0.30091 0.411219 0.12718397 0.411219 0.12718397\n\t\t 0.41111299 0.13955599 0.41111299 0.13955599 0.411219 0.12718397 0.42781001 0.14039999\n\t\t 0.41111299 0.13955599 0.74052298 0.59581804 0.77201998 0.565584 0.82196701 0.56613898\n\t\t 0.82196701 0.56613898 0.80952197 0.594082 0.74052298 0.59581804 0.77201998 0.565584\n\t\t 0.74052298 0.59581804 0.73070699 0.59537697 0.73070699 0.59537697 0.75466198 0.56524897\n\t\t 0.77201998 0.565584 0.73874998 0.59828699 0.74052298 0.59581804 0.80952197 0.594082\n\t\t 0.80952197 0.594082 0.80960202 0.59757996 0.73874998 0.59828699 0.73874998 0.59828699\n\t\t 0.80960202 0.59757996 0.80996799 0.63336003 0.80996799 0.63336003 0.73727399 0.63246\n\t\t 0.73874998 0.59828699 0.74052298 0.59581804 0.73874998 0.59828699 0.73061699 0.59828401\n\t\t 0.73061699 0.59828401 0.73874998 0.59828699 0.73727399 0.63246 0.73061699 0.59828401\n\t\t 0.73070699 0.59537697 0.74052298 0.59581804 0.73727399 0.63246 0.73083001 0.63213199\n\t\t 0.73061699 0.59828401 0.78632599 0.080056012 0.78566098 0.075591981 0.79216897 0.075096011\n\t\t 0.79216897 0.075096011 0.79391301 0.078951001 0.78632599 0.080056012 0.79391301 0.078951001\n\t\t 0.79216897 0.075096011 0.79593903 0.074199021 0.79593903 0.074199021 0.79824799 0.076838017\n\t\t 0.79391301 0.078951001 0.78566098 0.075591981 0.78632599 0.080056012 0.776568 0.079892993\n\t\t 0.776568 0.079892993 0.77689803 0.075159013 0.78566098 0.075591981 0.79824799 0.076838017\n\t\t 0.79593903 0.074199021 0.79832101 0.074051023 0.79832101 0.074051023 0.80021799 0.075441003\n\t\t 0.79824799 0.076838017 0.80021799 0.075441003 0.79832101 0.074051023 0.80115002 0.074514985\n\t\t 0.77689803 0.075159013 0.776568 0.079892993 0.77689803 0.075159013 0.75576699 0.33288598\n\t\t 0.75593901 0.33093601 0.762007 0.330459 0.762007 0.330459 0.76231498 0.33228499 0.75576699\n\t\t 0.33288598 0.76231498 0.33228499 0.762007 0.330459 0.76560998 0.32927698 0.76560998\n\t\t 0.32927698 0.76600897 0.33088601 0.76231498 0.33228499 0.75593901 0.33093601 0.75576699\n\t\t 0.33288598 0.74706399 0.33151102 0.74706399 0.33151102 0.74762303 0.329602 0.75593901\n\t\t 0.33093601 0.76600897 0.33088601 0.76560998 0.32927698 0.76767403 0.32821101 0.76767403\n\t\t 0.32821101 0.76811898 0.32962 0.76600897 0.33088601 0.74762303 0.329602 0.74706399\n\t\t 0.33151102 0.74762303 0.329602 0.76976103 0.326873 0.77043599 0.32793701 0.76811898\n\t\t 0.32962 0.76811898 0.32962 0.76767403 0.32821101 0.76976103 0.326873 0.454274 0.06407398\n\t\t 0.45952201 0.066451013 0.45782 0.072367013 0.45782 0.072367013 0.45257801 0.069972992\n\t\t 0.454274 0.06407398 0.45257801 0.069972992 0.45782 0.072367013 0.456839 0.076083004\n\t\t 0.456839 0.076083004 0.451619 0.073668003 0.45257801 0.069972992 0.45952201 0.066451013\n\t\t 0.454274 0.06407398 0.456983 0.056061029 0.456983 0.056061029 0.462237 0.058423996\n\t\t 0.45952201 0.066451013 0.451619 0.073668003 0.456839 0.076083004 0.45622101 0.078244984\n\t\t 0.45622101 0.078244984 0.45194101 0.075896978 0.451619 0.073668003 0.45194101 0.075896978\n\t\t 0.45622101 0.078244984 0.455917 0.079187989;\n\tsetAttr \".uvst[0].uvsp[16500:16749]\" 0.455917 0.079187989 0.45329201 0.077982008\n\t\t 0.45194101 0.075896978 0.462237 0.058423996 0.456983 0.056061029 0.462237 0.058423996\n\t\t 0.86312902 0.32464302 0.860241 0.32464302 0.85973299 0.27011001 0.85973299 0.27011001\n\t\t 0.86262101 0.27011001 0.86312902 0.32464302 0.73092198 0.20718199 0.73580998 0.20743299\n\t\t 0.73729199 0.20872098 0.73092198 0.20718199 0.73729199 0.20872098 0.730555 0.21864498\n\t\t 0.73729199 0.20872098 0.737176 0.21919101 0.730555 0.21864498 0.722242 0.20247 0.72423601\n\t\t 0.210908 0.716102 0.21114498 0.716102 0.21114498 0.714109 0.20270699 0.722242 0.20247\n\t\t 0.714109 0.20270699 0.716102 0.21114498 0.70453203 0.21056199 0.70453203 0.21056199\n\t\t 0.70254201 0.202124 0.714109 0.20270699 0.72211099 0.50582999 0.73100698 0.50860798\n\t\t 0.73100698 0.50860798 0.73100698 0.50860798 0.73100698 0.50860798 0.73916698 0.51310098\n\t\t 0.73916698 0.51310098 0.74589902 0.51953 0.74589902 0.51953 0.74589902 0.51953 0.74589902\n\t\t 0.51953 0.75073999 0.52747899 0.75073999 0.52747899 0.75276101 0.53656697 0.75276101\n\t\t 0.53656697 0.75276101 0.53656697 0.75276101 0.53656697 0.75170702 0.54583299 0.75170702\n\t\t 0.54583299 0.74724102 0.55404699 0.74724102 0.55404699 0.72211099 0.50582999 0.71282202\n\t\t 0.50501502 0.72211099 0.50582999 0.71282202 0.50501502 0.70353299 0.505813 0.71282202\n\t\t 0.50501502 0.69461298 0.50852096 0.70353299 0.505813 0.69461298 0.50852096 0.69461298\n\t\t 0.50852096 0.68636602 0.51285601 0.69461298 0.50852096 0.67942399 0.51906002 0.68636602\n\t\t 0.51285601 0.67942399 0.51906002 0.67942399 0.51906002 0.67420697 0.52676904 0.67942399\n\t\t 0.51906002 0.67164397 0.535721 0.67420697 0.52676904 0.67164397 0.535721 0.67164397\n\t\t 0.535721 0.67208201 0.54503798 0.67164397 0.535721 0.676 0.55352801 0.67208201 0.54503798\n\t\t 0.676 0.55352801 0.84815598 0.85432899 0.84676498 0.861292 0.84687001 0.84732699\n\t\t 0.84815598 0.85432899 0.84676498 0.861292 0.84319502 0.86742103 0.837744 0.87197\n\t\t 0.84676498 0.861292 0.84319502 0.86742103 0.84676498 0.861292 0.837744 0.87197 0.84687001\n\t\t 0.84732699 0.837744 0.87197 0.83116698 0.874681 0.837744 0.87197 0.83116698 0.874681\n\t\t 0.82405102 0.87520003 0.82405102 0.87520003 0.82405102 0.87520003 0.82405102 0.87520003\n\t\t 0.81701499 0.873959 0.81701499 0.873959 0.81025898 0.87162697 0.81025898 0.87162697\n\t\t 0.81025898 0.87162697 0.80371797 0.86870098 0.80371797 0.86870098 0.80371797 0.86870098\n\t\t 0.79816902 0.86414897 0.79816902 0.86414897 0.79816902 0.86414897 0.79816902 0.86414897\n\t\t 0.79351097 0.858697 0.79351097 0.858697 0.79014999 0.85237402 0.79014999 0.85237402\n\t\t 0.79014999 0.85237402 0.79014999 0.85237402 0.788073 0.84554398 0.788073 0.84554398\n\t\t 0.787287 0.838471 0.787287 0.838471 0.787287 0.838471 0.787287 0.838471 0.78841299\n\t\t 0.83142 0.78841299 0.83142 0.79218698 0.82534802 0.79218698 0.82534802 0.27306801\n\t\t 0.20334297 0.27306801 0.20334297 0.28235701 0.20334297 0.26377901 0.20334399 0.27306801\n\t\t 0.20334297 0.26377901 0.20334399 0.254491 0.20333898 0.26377901 0.20334399 0.254491\n\t\t 0.20333898 0.245203 0.20334601 0.254491 0.20333898 0.245203 0.20334601 0.23591299\n\t\t 0.20333999 0.245203 0.20334601 0.23591299 0.20333999 0.22661901 0.20335102 0.23591299\n\t\t 0.20333999 0.22661901 0.20335102 0.217307 0.20335698 0.22661901 0.20335102 0.217307\n\t\t 0.20335698 0.20793401 0.20336801 0.217307 0.20335698 0.20793401 0.20336801 0.198411\n\t\t 0.20324898 0.20793401 0.20336801 0.198411 0.20324898 0.338204 0.20336801 0.338204\n\t\t 0.20336801 0.34772801 0.20324701 0.32883099 0.20335102 0.338204 0.20336801 0.32883099\n\t\t 0.20335102 0.31951901 0.20334899 0.32883099 0.20335102 0.31951901 0.20334899 0.31022501\n\t\t 0.20333999 0.31951901 0.20334899 0.31022501 0.20333999 0.300935 0.20334399 0.31022501\n\t\t 0.20333999 0.300935 0.20334399 0.291646 0.20334297 0.300935 0.20334399 0.291646 0.20334297\n\t\t 0.28235701 0.20334297 0.291646 0.20334297 0.28235701 0.20334297 0.27306801 0.20919299\n\t\t 0.27306801 0.20919299 0.26377901 0.20919198 0.28235701 0.20919299 0.27306801 0.20919299\n\t\t 0.28235701 0.20919299 0.291646 0.20919198 0.28235701 0.20919299 0.291646 0.20919198\n\t\t 0.300935 0.20919102 0.291646 0.20919198 0.300935 0.20919102 0.31022501 0.20919502\n\t\t 0.300935 0.20919102 0.31022501 0.20919502 0.31951901 0.20918399 0.31022501 0.20919502\n\t\t 0.31951901 0.20918399 0.32883099 0.20918101 0.31951901 0.20918399 0.32883099 0.20918101\n\t\t 0.338204 0.209162 0.32883099 0.20918101 0.338204 0.209162 0.34772801 0.20928198 0.338204\n\t\t 0.209162 0.34772801 0.20928198 0.20793501 0.20916802 0.20793501 0.20916802 0.198411\n\t\t 0.20928699 0.217307 0.20917898 0.20793501 0.20916802 0.217307 0.20917898 0.22661901\n\t\t 0.20918399 0.217307 0.20917898 0.22661901 0.20918399 0.23591299 0.20919502 0.22661901\n\t\t 0.20918399 0.23591299 0.20919502 0.245203 0.209189 0.23591299 0.20919502 0.245203\n\t\t 0.209189 0.254491 0.20919698 0.245203 0.209189 0.254491 0.20919698 0.26377901 0.20919198\n\t\t 0.254491 0.20919698 0.26377901 0.20919198 0.77898097 0.36221403 0.77898097 0.36221403\n\t\t 0.76993102 0.36221403 0.78803098 0.36221403 0.77898097 0.36221403 0.78803098 0.36221403\n\t\t 0.79708201 0.36221701 0.78803098 0.36221403 0.79708201 0.36221701 0.80613297 0.36221302\n\t\t 0.79708201 0.36221701 0.80613297 0.36221302 0.81518799 0.362216 0.80613297 0.36221302\n\t\t 0.81518799 0.362216 0.82424903 0.36221498 0.81518799 0.362216 0.82424903 0.36221498\n\t\t 0.83332402 0.36221498 0.82424903 0.36221498 0.83332402 0.36221498 0.84243 0.362216\n\t\t 0.83332402 0.36221498 0.84243 0.362216 0.85159802 0.36221701;\n\tsetAttr \".uvst[0].uvsp[16750:16999]\" 0.84243 0.362216 0.85159802 0.36221701 0.71552801\n\t\t 0.36222398 0.71552801 0.36222398 0.706361 0.36222398 0.724635 0.36220902 0.71552801\n\t\t 0.36222398 0.724635 0.36220902 0.733711 0.36220902 0.724635 0.36220902 0.733711 0.36220902\n\t\t 0.742773 0.362216 0.733711 0.36220902 0.742773 0.362216 0.75182801 0.36221403 0.742773\n\t\t 0.362216 0.75182801 0.36221403 0.76087999 0.36221403 0.75182801 0.36221403 0.76087999\n\t\t 0.36221403 0.76993102 0.36221403 0.76087999 0.36221403 0.76993102 0.36221403 0.77898097\n\t\t 0.36104798 0.77898097 0.36104798 0.78803098 0.36104798 0.76993102 0.36104798 0.77898097\n\t\t 0.36104798 0.76993102 0.36104798 0.76087999 0.36104798 0.76993102 0.36104798 0.76087999\n\t\t 0.36104798 0.75182801 0.361049 0.76087999 0.36104798 0.75182801 0.361049 0.742773\n\t\t 0.36104703 0.75182801 0.361049 0.742773 0.36104703 0.733711 0.36105299 0.742773 0.36104703\n\t\t 0.733711 0.36105299 0.724635 0.36105299 0.733711 0.36105299 0.724635 0.36105299 0.71552801\n\t\t 0.36103803 0.724635 0.36105299 0.71552801 0.36103803 0.706361 0.36103898 0.71552801\n\t\t 0.36103803 0.706361 0.36103898 0.84243 0.36104703 0.84243 0.36104703 0.85159802 0.36104602\n\t\t 0.83332402 0.36104703 0.84243 0.36104703 0.83332402 0.36104703 0.82424903 0.36104798\n\t\t 0.83332402 0.36104703 0.82424903 0.36104798 0.81518799 0.36104703 0.82424903 0.36104798\n\t\t 0.81518799 0.36104703 0.80613297 0.36105001 0.81518799 0.36104703 0.80613297 0.36105001\n\t\t 0.79708201 0.36104602 0.80613297 0.36105001 0.79708201 0.36104602 0.78803098 0.36104798\n\t\t 0.79708201 0.36104602 0.78803098 0.36104798 0.18848 0.29937601 0.198606 0.29938799\n\t\t 0.198606 0.29938799 0.198606 0.29938799 0.20872299 0.29938799 0.20872299 0.29938799\n\t\t 0.20872299 0.29938799 0.218839 0.29938799 0.218839 0.29938799 0.14750899 0.29956597\n\t\t 0.157882 0.299537 0.157882 0.299537 0.14750899 0.29956597 0.13696 0.29952198 0.14750899\n\t\t 0.29956597 0.13696 0.29952198 0.126205 0.29805499 0.13696 0.29952198 0.218839 0.29938799\n\t\t 0.228966 0.299389 0.228966 0.299389 0.228966 0.299389 0.28054801 0.29929298 0.291264\n\t\t 0.29756403 0.291264 0.29756403 0.28054801 0.29929298 0.269977 0.29978102 0.28054801\n\t\t 0.29929298 0.269977 0.29978102 0.259574 0.29968202 0.269977 0.29978102 0.259574 0.29968202\n\t\t 0.24930499 0.29947901 0.259574 0.29968202 0.24930499 0.29947901 0.239114 0.29939097\n\t\t 0.24930499 0.29947901 0.239114 0.29939097 0.239114 0.29939097 0.098561697 0.21625501\n\t\t 0.098561697 0.21625501 0.086597197 0.216254 0.110527 0.21625298 0.098561697 0.21625501\n\t\t 0.110527 0.21625298 0.122492 0.21625698 0.110527 0.21625298 0.122492 0.21625698 0.134461\n\t\t 0.21625102 0.122492 0.21625698 0.134461 0.21625102 0.14643499 0.21625698 0.134461\n\t\t 0.21625102 0.14643499 0.21625698 0.158415 0.21625298 0.14643499 0.21625698 0.158415\n\t\t 0.21625298 0.170404 0.21625298 0.158415 0.21625298 0.170404 0.21625298 0.182428 0.21624202\n\t\t 0.170404 0.21625298 0.182428 0.21624202 0.19467101 0.21634001 0.182428 0.21624202\n\t\t 0.19467101 0.21634001 0.0146977 0.21623701 0.0146977 0.21623701 0.0024532999 0.21633703\n\t\t 0.0267208 0.21625602 0.0146977 0.21623701 0.0267208 0.21625602 0.038708199 0.21625203\n\t\t 0.0267208 0.21625602 0.038708199 0.21625203 0.0506882 0.21625698 0.038708199 0.21625203\n\t\t 0.0506882 0.21625698 0.062661298 0.21625298 0.0506882 0.21625698 0.062661298 0.21625298\n\t\t 0.074631102 0.21625501 0.062661298 0.21625298 0.074631102 0.21625501 0.086597197\n\t\t 0.216254 0.074631102 0.21625501 0.086597197 0.216254 0.098561697 0.20858002 0.098561697\n\t\t 0.20858002 0.110527 0.208583 0.086597197 0.20858198 0.098561697 0.20858002 0.086597197\n\t\t 0.20858198 0.074631102 0.20858002 0.086597197 0.20858198 0.074631102 0.20858002 0.062661298\n\t\t 0.208583 0.074631102 0.20858002 0.062661298 0.208583 0.0506882 0.208579 0.062661298\n\t\t 0.208583 0.0506882 0.208579 0.038708799 0.20858502 0.0506882 0.208579 0.038708799\n\t\t 0.20858502 0.026721301 0.208583 0.038708799 0.20858502 0.026721301 0.208583 0.0146993\n\t\t 0.20859802 0.026721301 0.208583 0.0146993 0.20859802 0.0024500999 0.208462 0.0146993\n\t\t 0.20859802 0.0024500999 0.208462 0.182427 0.208597 0.182427 0.208597 0.194675 0.20846403\n\t\t 0.170404 0.20858598 0.182427 0.208597 0.170404 0.20858598 0.158415 0.20858401 0.170404\n\t\t 0.20858598 0.158415 0.20858401 0.14643499 0.208579 0.158415 0.20858401 0.14643499\n\t\t 0.208579 0.134461 0.20858502 0.14643499 0.208579 0.134461 0.20858502 0.122492 0.208579\n\t\t 0.134461 0.20858502 0.122492 0.208579 0.110527 0.208583 0.122492 0.208579 0.110527\n\t\t 0.208583 0.22136199 0.227449 0.22136199 0.227449 0.232987 0.227449 0.209737 0.227449\n\t\t 0.22136199 0.227449 0.209737 0.227449 0.198118 0.22744602 0.209737 0.227449 0.198118\n\t\t 0.22744602 0.186511 0.22745001 0.198118 0.22744602 0.186511 0.22745001 0.17492101\n\t\t 0.22744697 0.186511 0.22745001 0.17492101 0.22744697 0.163351 0.227449 0.17492101\n\t\t 0.22744697 0.163351 0.227449 0.15180101 0.227449 0.163351 0.227449 0.15180101 0.227449\n\t\t 0.14026199 0.22744799 0.15180101 0.227449 0.14026199 0.22744799 0.128668 0.22744602\n\t\t 0.14026199 0.22744799 0.128668 0.22744602 0.302461 0.22744602 0.302461 0.22744602\n\t\t 0.31405601 0.22744501 0.290921 0.227449 0.302461 0.22744602 0.290921 0.227449 0.27937299\n\t\t 0.22745001 0.290921 0.227449 0.27937299 0.22745001 0.26780301 0.22744697 0.27937299\n\t\t 0.22745001 0.26780301 0.22744697 0.256212 0.227449 0.26780301 0.22744697 0.256212\n\t\t 0.227449 0.244605 0.227449 0.256212 0.227449;\n\tsetAttr \".uvst[0].uvsp[17000:17249]\" 0.244605 0.227449 0.232987 0.227449 0.244605\n\t\t 0.227449 0.232987 0.227449 0.22136199 0.22892803 0.22136199 0.22892803 0.209737 0.22892702\n\t\t 0.232987 0.22892803 0.22136199 0.22892803 0.232987 0.22892803 0.244605 0.22892702\n\t\t 0.232987 0.22892803 0.244605 0.22892702 0.256212 0.22892702 0.244605 0.22892702 0.256212\n\t\t 0.22892702 0.26780301 0.22892898 0.256212 0.22892702 0.26780301 0.22892898 0.27937299\n\t\t 0.22892499 0.26780301 0.22892898 0.27937299 0.22892499 0.29092199 0.22892702 0.27937299\n\t\t 0.22892499 0.29092199 0.22892702 0.302461 0.22893 0.29092199 0.22892702 0.302461\n\t\t 0.22893 0.31405601 0.22893101 0.302461 0.22893 0.31405601 0.22893101 0.14026199 0.22892803\n\t\t 0.14026199 0.22892803 0.128668 0.22893 0.15180101 0.22892702 0.14026199 0.22892803\n\t\t 0.15180101 0.22892702 0.16335 0.22892702 0.15180101 0.22892702 0.16335 0.22892702\n\t\t 0.17492101 0.22892898 0.16335 0.22892702 0.17492101 0.22892898 0.186511 0.228926\n\t\t 0.17492101 0.22892898 0.186511 0.228926 0.198118 0.22892898 0.186511 0.228926 0.198118\n\t\t 0.22892898 0.209737 0.22892702 0.198118 0.22892898 0.209737 0.22892702 0.18848 0.29937601\n\t\t 0.17832901 0.29940599 0.18848 0.29937601 0.17832901 0.29940599 0.168138 0.29944402\n\t\t 0.17832901 0.29940599 0.168138 0.29944402 0.157882 0.299537 0.168138 0.29944402 0.24945401\n\t\t 0.158391 0.26014701 0.158391 0.26014599 0.19536299 0.26014599 0.19536299 0.24945299\n\t\t 0.19536501 0.24945401 0.158391 0.24945401 0.158391 0.24945299 0.19536501 0.238759\n\t\t 0.19536799 0.238759 0.19536799 0.23875999 0.15838999 0.24945401 0.158391 0.228067\n\t\t 0.158391 0.23875999 0.15838999 0.238759 0.19536799 0.238759 0.19536799 0.228065 0.19537097\n\t\t 0.228067 0.158391 0.228067 0.158391 0.228065 0.19537097 0.217372 0.19537401 0.217372\n\t\t 0.19537401 0.217373 0.158391 0.228067 0.158391 0.206679 0.158391 0.217373 0.158391\n\t\t 0.217372 0.19537401 0.217372 0.19537401 0.206679 0.19537598 0.206679 0.158391 0.206679\n\t\t 0.158391 0.206679 0.19537598 0.195986 0.19537699 0.195986 0.19537699 0.195986 0.158391\n\t\t 0.206679 0.158391 0.18529201 0.158391 0.195986 0.158391 0.195986 0.19537699 0.195986\n\t\t 0.19537699 0.185293 0.19537699 0.18529201 0.158391 0.18529201 0.158391 0.185293 0.19537699\n\t\t 0.17460001 0.19537699 0.17460001 0.19537699 0.17459901 0.15839201 0.18529201 0.158391\n\t\t 0.16390499 0.15839201 0.17459901 0.15839201 0.17460001 0.19537699 0.17460001 0.19537699\n\t\t 0.16390599 0.19537503 0.16390499 0.15839201 0.16390499 0.15839201 0.16390599 0.19537503\n\t\t 0.153212 0.19537199 0.153212 0.19537199 0.153211 0.15839303 0.16390499 0.15839201\n\t\t 0.142518 0.15839303 0.153211 0.15839303 0.153212 0.19537199 0.153212 0.19537199 0.142518\n\t\t 0.19536901 0.142518 0.15839303 0.31361601 0.158391 0.31361601 0.19536799 0.30292201\n\t\t 0.19536501 0.30292201 0.19536501 0.30292201 0.158391 0.31361601 0.158391 0.29222801\n\t\t 0.158391 0.30292201 0.158391 0.30292201 0.19536501 0.30292201 0.19536501 0.29222801\n\t\t 0.19536299 0.29222801 0.158391 0.29222801 0.158391 0.29222801 0.19536299 0.28153399\n\t\t 0.19536197 0.28153399 0.19536197 0.281535 0.158391 0.29222801 0.158391 0.270841 0.158391\n\t\t 0.281535 0.158391 0.28153399 0.19536197 0.28153399 0.19536197 0.27083999 0.19536197\n\t\t 0.270841 0.158391 0.26014701 0.158391 0.270841 0.158391 0.27083999 0.19536197 0.27083999\n\t\t 0.19536197 0.26014599 0.19536299 0.26014701 0.158391 0.72091699 0.51147902 0.72211099\n\t\t 0.50582999 0.73100698 0.50860798 0.73100698 0.50860798 0.72864199 0.51384604 0.72091699\n\t\t 0.51147902 0.72864199 0.51384604 0.73100698 0.50860798 0.73916698 0.51310098 0.73916698\n\t\t 0.51310098 0.73563302 0.51766098 0.72864199 0.51384604 0.73563302 0.51766098 0.73916698\n\t\t 0.51310098 0.74589902 0.51953 0.74589902 0.51953 0.741337 0.52299798 0.73563302 0.51766098\n\t\t 0.741337 0.52299798 0.74589902 0.51953 0.75073999 0.52747899 0.75073999 0.52747899\n\t\t 0.74537802 0.52948403 0.741337 0.52299798 0.74537802 0.52948403 0.75073999 0.52747899\n\t\t 0.75276101 0.53656697 0.75276101 0.53656697 0.74709702 0.53675801 0.74537802 0.52948403\n\t\t 0.74709702 0.53675801 0.75276101 0.53656697 0.75170702 0.54583299 0.75170702 0.54583299\n\t\t 0.74635297 0.54404902 0.74709702 0.53675801 0.74635297 0.54404902 0.75170702 0.54583299\n\t\t 0.74724102 0.55404699 0.74724102 0.55404699 0.74291301 0.55039901 0.74635297 0.54404902\n\t\t 0.72211099 0.50582999 0.72091699 0.51147902 0.71280199 0.51075602 0.71280199 0.51075602\n\t\t 0.71282202 0.50501502 0.72211099 0.50582999 0.71282202 0.50501502 0.71280199 0.51075602\n\t\t 0.70467103 0.51147199 0.70467103 0.51147199 0.70353299 0.505813 0.71282202 0.50501502\n\t\t 0.70353299 0.505813 0.70467103 0.51147199 0.69688898 0.51379502 0.69688898 0.51379502\n\t\t 0.69461298 0.50852096 0.70353299 0.505813 0.69461298 0.50852096 0.69688898 0.51379502\n\t\t 0.68977702 0.51751101 0.68977702 0.51751101 0.68636602 0.51285601 0.69461298 0.50852096\n\t\t 0.68636602 0.51285601 0.68977702 0.51751101 0.68384999 0.52270699 0.68384999 0.52270699\n\t\t 0.67942399 0.51906002 0.68636602 0.51285601 0.67942399 0.51906002 0.68384999 0.52270699\n\t\t 0.67947 0.52904797 0.67947 0.52904797 0.67420697 0.52676904 0.67942399 0.51906002\n\t\t 0.67420697 0.52676904 0.67947 0.52904797 0.67729801 0.53624797 0.67729801 0.53624797\n\t\t 0.67164397 0.535721 0.67420697 0.52676904 0.67164397 0.535721 0.67729801 0.53624797\n\t\t 0.67754799 0.54359496 0.67754799 0.54359496 0.67208201 0.54503798 0.67164397 0.535721\n\t\t 0.67208201 0.54503798 0.67754799 0.54359496 0.68055803 0.55016398;\n\tsetAttr \".uvst[0].uvsp[17250:17499]\" 0.68055803 0.55016398 0.676 0.55352801 0.67208201\n\t\t 0.54503798 0.73100698 0.50860798 0.72211099 0.50582999 0.72320199 0.50119996 0.72320199\n\t\t 0.50119996 0.73311698 0.50438797 0.73100698 0.50860798 0.73100698 0.50860798 0.73311698\n\t\t 0.50438797 0.74223697 0.50952899 0.74223697 0.50952899 0.73916698 0.51310098 0.73100698\n\t\t 0.50860798 0.74589902 0.51953 0.73916698 0.51310098 0.74223697 0.50952899 0.74223697\n\t\t 0.50952899 0.749744 0.516927 0.74589902 0.51953 0.74589902 0.51953 0.749744 0.516927\n\t\t 0.75509501 0.526088 0.75509501 0.526088 0.75073999 0.52747899 0.74589902 0.51953\n\t\t 0.75276101 0.53656697 0.75073999 0.52747899 0.75509501 0.526088 0.75509501 0.526088\n\t\t 0.75724798 0.53653598 0.75276101 0.53656697 0.75276101 0.53656697 0.75724798 0.53653598\n\t\t 0.75593197 0.547135 0.75593197 0.547135 0.75170702 0.54583299 0.75276101 0.53656697\n\t\t 0.74724102 0.55404699 0.75170702 0.54583299 0.75593197 0.547135 0.75593197 0.547135\n\t\t 0.751118 0.55654901 0.74724102 0.55404699 0.71286201 0.50029099 0.72320199 0.50119996\n\t\t 0.72211099 0.50582999 0.72211099 0.50582999 0.71282202 0.50501502 0.71286201 0.50029099\n\t\t 0.70252597 0.50116301 0.71286201 0.50029099 0.71282202 0.50501502 0.71282202 0.50501502\n\t\t 0.70353299 0.505813 0.70252597 0.50116301 0.70252597 0.50116301 0.70353299 0.505813\n\t\t 0.69461298 0.50852096 0.69461298 0.50852096 0.69260103 0.50425196 0.70252597 0.50116301\n\t\t 0.683397 0.50918198 0.69260103 0.50425196 0.69461298 0.50852096 0.69461298 0.50852096\n\t\t 0.68636602 0.51285601 0.683397 0.50918198 0.683397 0.50918198 0.68636602 0.51285601\n\t\t 0.67942399 0.51906002 0.67942399 0.51906002 0.67566401 0.516298 0.683397 0.50918198\n\t\t 0.66989201 0.52516699 0.67566401 0.516298 0.67942399 0.51906002 0.67942399 0.51906002\n\t\t 0.67420697 0.52676904 0.66989201 0.52516699 0.66989201 0.52516699 0.67420697 0.52676904\n\t\t 0.67164397 0.535721 0.67164397 0.535721 0.66713798 0.53545201 0.66989201 0.52516699\n\t\t 0.66777098 0.54610401 0.66713798 0.53545201 0.67164397 0.535721 0.67164397 0.535721\n\t\t 0.67208201 0.54503798 0.66777098 0.54610401 0.66777098 0.54610401 0.67208201 0.54503798\n\t\t 0.676 0.55352801 0.676 0.55352801 0.67197198 0.55580401 0.66777098 0.54610401 0.086200804\n\t\t 0.26074702 0.078721702 0.26074803 0.0786746 0.233715 0.0786746 0.233715 0.086253501\n\t\t 0.23371601 0.086200804 0.26074702 0.0786746 0.233715 0.078721702 0.26074803 0.071146801\n\t\t 0.26075 0.071146801 0.26075 0.071095698 0.233715 0.0786746 0.233715 0.063516803 0.233715\n\t\t 0.071095698 0.233715 0.071146801 0.26075 0.071146801 0.26075 0.063563898 0.26075298\n\t\t 0.063516803 0.233715 0.063516803 0.233715 0.063563898 0.26075298 0.055989601 0.260755\n\t\t 0.055989601 0.260755 0.055937901 0.23371601 0.063516803 0.233715 0.048359301 0.23371601\n\t\t 0.055937901 0.23371601 0.055989601 0.260755 0.055989601 0.260755 0.0484071 0.26075602\n\t\t 0.048359301 0.23371601 0.048359301 0.23371601 0.0484071 0.26075602 0.040832501 0.26075703\n\t\t 0.040832501 0.26075703 0.0407806 0.23371601 0.048359301 0.23371601 0.033202 0.23371601\n\t\t 0.0407806 0.23371601 0.040832501 0.26075703 0.040832501 0.26075703 0.03325 0.26075703\n\t\t 0.033202 0.23371601 0.033202 0.23371601 0.03325 0.26075703 0.025675699 0.26075602\n\t\t 0.025675699 0.26075602 0.0256231 0.23371601 0.033202 0.23371601 0.0180442 0.23371601\n\t\t 0.0256231 0.23371601 0.025675699 0.26075602 0.025675699 0.26075602 0.018092999 0.260755\n\t\t 0.0180442 0.23371601 0.0180442 0.23371601 0.018092999 0.260755 0.0105179 0.26075298\n\t\t 0.0105179 0.26075298 0.0104653 0.23371702 0.0180442 0.23371601 0.0028859701 0.23371702\n\t\t 0.0104653 0.23371702 0.0105179 0.26075298 0.0105179 0.26075298 0.0029345599 0.26075101\n\t\t 0.0028859701 0.23371702 0.124148 0.23371601 0.1241 0.26075 0.116621 0.26074803 0.116621\n\t\t 0.26074803 0.116568 0.23371601 0.124148 0.23371601 0.10899 0.23371601 0.116568 0.23371601\n\t\t 0.116621 0.26074803 0.116621 0.26074803 0.109038 0.26074702 0.10899 0.23371601 0.10899\n\t\t 0.23371601 0.109038 0.26074702 0.101463 0.260746 0.101463 0.260746 0.101411 0.23371601\n\t\t 0.10899 0.23371601 0.093832202 0.23371601 0.101411 0.23371601 0.101463 0.260746 0.101463\n\t\t 0.260746 0.093879499 0.260746 0.093832202 0.23371601 0.086253501 0.23371601 0.093832202\n\t\t 0.23371601 0.093879499 0.260746 0.093879499 0.260746 0.086200804 0.26074702 0.086253501\n\t\t 0.23371601 0.79816902 0.86414897 0.80095899 0.86128199 0.80590099 0.86525398 0.80590099\n\t\t 0.86525398 0.80371797 0.86870098 0.79816902 0.86414897 0.80095899 0.86128199 0.79816902\n\t\t 0.86414897 0.79351097 0.858697 0.79351097 0.858697 0.79683799 0.85644001 0.80095899\n\t\t 0.86128199 0.79683799 0.85644001 0.79351097 0.858697 0.79014999 0.85237402 0.79014999\n\t\t 0.85237402 0.79385501 0.85084403 0.79683799 0.85644001 0.79385501 0.85084403 0.79014999\n\t\t 0.85237402 0.788073 0.84554398 0.788073 0.84554398 0.79197103 0.84480399 0.79385501\n\t\t 0.85084403 0.79197103 0.84480399 0.788073 0.84554398 0.787287 0.838471 0.787287 0.838471\n\t\t 0.79131299 0.83866203 0.79197103 0.84480399 0.79131299 0.83866203 0.787287 0.838471\n\t\t 0.78841299 0.83142 0.78841299 0.83142 0.79214501 0.83287799 0.79131299 0.83866203\n\t\t 0.79214501 0.83287799 0.78841299 0.83142 0.79218698 0.82534802 0.79218698 0.82534802\n\t\t 0.79512101 0.82812101 0.79214501 0.83287799 0.80371797 0.86870098 0.80590099 0.86525398\n\t\t 0.81174397 0.86798501 0.81174397 0.86798501 0.81025898 0.87162697 0.80371797 0.86870098\n\t\t 0.81025898 0.87162697 0.81174397 0.86798501 0.81792599 0.870094 0.81792599 0.870094\n\t\t 0.81701499 0.873959 0.81025898 0.87162697 0.81701499 0.873959;\n\tsetAttr \".uvst[0].uvsp[17500:17749]\" 0.81792599 0.870094 0.82415301 0.87117201\n\t\t 0.82415301 0.87117201 0.82405102 0.87520003 0.81701499 0.873959 0.82405102 0.87520003\n\t\t 0.82415301 0.87117201 0.83018798 0.87076801 0.83018798 0.87076801 0.83116698 0.874681\n\t\t 0.82405102 0.87520003 0.83116698 0.874681 0.83018798 0.87076801 0.835648 0.86855602\n\t\t 0.835648 0.86855602 0.837744 0.87197 0.83116698 0.874681 0.837744 0.87197 0.835648\n\t\t 0.86855602 0.84011698 0.86484802 0.84011698 0.86484802 0.84319502 0.86742103 0.837744\n\t\t 0.87197 0.84319502 0.86742103 0.84011698 0.86484802 0.84302598 0.85989201 0.84302598\n\t\t 0.85989201 0.84676498 0.861292 0.84319502 0.86742103 0.84676498 0.861292 0.84302598\n\t\t 0.85989201 0.84415698 0.85431898 0.84415698 0.85431898 0.84815598 0.85432899 0.84676498\n\t\t 0.861292 0.84815598 0.85432899 0.84415698 0.85431898 0.84314001 0.84879899 0.84314001\n\t\t 0.84879899 0.84687001 0.84732699 0.84815598 0.85432899 0.84676498 0.861292 0.84815598\n\t\t 0.85432899 0.85058898 0.85441202 0.85058898 0.85441202 0.84815598 0.85432899 0.84687001\n\t\t 0.84732699 0.85058898 0.85441202 0.849069 0.86213303 0.84676498 0.861292 0.837744\n\t\t 0.87197 0.84319502 0.86742103 0.84514701 0.86895204 0.84514701 0.86895204 0.84319502\n\t\t 0.86742103 0.84676498 0.861292 0.84676498 0.861292 0.849069 0.86213303 0.84514701\n\t\t 0.86895204 0.84514701 0.86895204 0.83918101 0.87405598 0.837744 0.87197 0.84687001\n\t\t 0.84732699 0.84936303 0.84663999 0.85058898 0.85441202 0.83199799 0.87716603 0.83116698\n\t\t 0.874681 0.837744 0.87197 0.837744 0.87197 0.83918101 0.87405598 0.83199799 0.87716603\n\t\t 0.82405102 0.87520003 0.83116698 0.874681 0.83199799 0.87716603 0.83199799 0.87716603\n\t\t 0.824242 0.87789702 0.82405102 0.87520003 0.82405102 0.87520003 0.824242 0.87789702\n\t\t 0.81665099 0.87635899 0.81665099 0.87635899 0.81701499 0.873959 0.82405102 0.87520003\n\t\t 0.81025898 0.87162697 0.81701499 0.873959 0.81665099 0.87635899 0.81665099 0.87635899\n\t\t 0.80937099 0.87378597 0.81025898 0.87162697 0.80371797 0.86870098 0.81025898 0.87162697\n\t\t 0.80937099 0.87378597 0.80937099 0.87378597 0.80208498 0.87122297 0.80371797 0.86870098\n\t\t 0.79816902 0.86414897 0.80371797 0.86870098 0.80208498 0.87122297 0.80208498 0.87122297\n\t\t 0.79634202 0.86602497 0.79816902 0.86414897 0.79816902 0.86414897 0.79634202 0.86602497\n\t\t 0.791291 0.860156 0.791291 0.860156 0.79351097 0.858697 0.79816902 0.86414897 0.79014999\n\t\t 0.85237402 0.79351097 0.858697 0.791291 0.860156 0.791291 0.860156 0.787673 0.85330701\n\t\t 0.79014999 0.85237402 0.79014999 0.85237402 0.787673 0.85330701 0.78560603 0.84582698\n\t\t 0.78560603 0.84582698 0.788073 0.84554398 0.79014999 0.85237402 0.787287 0.838471\n\t\t 0.788073 0.84554398 0.78560603 0.84582698 0.78560603 0.84582698 0.78462601 0.83809799\n\t\t 0.787287 0.838471 0.787287 0.838471 0.78462601 0.83809799 0.78616601 0.83042598 0.78616601\n\t\t 0.83042598 0.78841299 0.83142 0.787287 0.838471 0.79218698 0.82534802 0.78841299\n\t\t 0.83142 0.78616601 0.83042598 0.78616601 0.83042598 0.790106 0.823632 0.79218698\n\t\t 0.82534802 0.070900999 0.20072401 0.062449299 0.20072401 0.062449299 0.15720397 0.062449299\n\t\t 0.15720397 0.070900999 0.15720302 0.070900999 0.20072401 0.070900999 0.20072401 0.070900999\n\t\t 0.15720302 0.0793529 0.15720397 0.0793529 0.15720397 0.0793529 0.20072401 0.070900999\n\t\t 0.20072401 0.087805197 0.20072401 0.0793529 0.20072401 0.0793529 0.15720397 0.0793529\n\t\t 0.15720397 0.087805197 0.15720397 0.087805197 0.20072401 0.087805197 0.20072401 0.087805197\n\t\t 0.15720397 0.096257098 0.15720397 0.096257098 0.15720397 0.096257098 0.20072401 0.087805197\n\t\t 0.20072401 0.104709 0.20072401 0.096257098 0.20072401 0.096257098 0.15720397 0.096257098\n\t\t 0.15720397 0.104709 0.15720397 0.104709 0.20072401 0.104709 0.20072401 0.104709 0.15720397\n\t\t 0.113161 0.15720397 0.113161 0.15720397 0.113161 0.20072401 0.104709 0.20072401 0.121613\n\t\t 0.20072401 0.113161 0.20072401 0.113161 0.15720397 0.113161 0.15720397 0.121613 0.15720397\n\t\t 0.121613 0.20072401 0.121613 0.20072401 0.121613 0.15720397 0.13006499 0.15720397\n\t\t 0.13006499 0.15720397 0.13006499 0.20072299 0.121613 0.20072401 0.13851801 0.20072299\n\t\t 0.13006499 0.20072299 0.13006499 0.15720397 0.13006499 0.15720397 0.13851701 0.15720302\n\t\t 0.13851801 0.20072299 0.0032842699 0.20072401 0.0032842699 0.15720397 0.0117366 0.15720397\n\t\t 0.0117366 0.15720397 0.0117369 0.20072401 0.0032842699 0.20072401 0.0201889 0.20072401\n\t\t 0.0117369 0.20072401 0.0117366 0.15720397 0.0117366 0.15720397 0.0201889 0.15720397\n\t\t 0.0201889 0.20072401 0.0201889 0.20072401 0.0201889 0.15720397 0.028640799 0.15720397\n\t\t 0.028640799 0.15720397 0.028641099 0.20072401 0.0201889 0.20072401 0.037093099 0.20072401\n\t\t 0.028641099 0.20072401 0.028640799 0.15720397 0.028640799 0.15720397 0.037093099\n\t\t 0.15720397 0.037093099 0.20072401 0.037093099 0.20072401 0.037093099 0.15720397 0.045545299\n\t\t 0.15720397 0.045545299 0.15720397 0.045545299 0.20072401 0.037093099 0.20072401 0.053997301\n\t\t 0.20072401 0.045545299 0.20072401 0.045545299 0.15720397 0.045545299 0.15720397 0.053997301\n\t\t 0.15720397 0.053997301 0.20072401 0.062449299 0.20072401 0.053997301 0.20072401 0.053997301\n\t\t 0.15720397 0.053997301 0.15720397 0.062449299 0.15720397 0.062449299 0.20072401 0.80208403\n\t\t 0.85816002 0.80501598 0.85614097 0.80907398 0.86015201 0.80907398 0.86015201 0.80713201\n\t\t 0.86314797 0.80208403 0.85816002 0.80501598 0.85614097 0.80208403 0.85816002 0.799227\n\t\t 0.85166299 0.799227 0.85166299 0.802719 0.85091799 0.80501598 0.85614097 0.802719\n\t\t 0.85091799 0.799227 0.85166299 0.79918402 0.84456599 0.79918402 0.84456599 0.80268502\n\t\t 0.84521198;\n\tsetAttr \".uvst[0].uvsp[17750:17999]\" 0.802719 0.85091799 0.80268502 0.84521198\n\t\t 0.79918402 0.84456599 0.80175799 0.83795202 0.80175799 0.83795202 0.80475402 0.83989501\n\t\t 0.80268502 0.84521198 0.80475402 0.83989501 0.80175799 0.83795202 0.80674702 0.83290398\n\t\t 0.80674702 0.83290398 0.80876499 0.83583599 0.80475402 0.83989501 0.80876499 0.83583599\n\t\t 0.80674702 0.83290398 0.81324297 0.83004701 0.81324297 0.83004701 0.81398797 0.83353901\n\t\t 0.80876499 0.83583599 0.81398797 0.83353901 0.81324297 0.83004701 0.82033998 0.83000499\n\t\t 0.82033998 0.83000499 0.81969398 0.83350599 0.81398797 0.83353901 0.81969398 0.83350599\n\t\t 0.82033998 0.83000499 0.82695401 0.832578 0.82695401 0.832578 0.82501203 0.83557403\n\t\t 0.81969398 0.83350599 0.82501203 0.83557403 0.82695401 0.832578 0.832003 0.83756697\n\t\t 0.832003 0.83756697 0.82906997 0.83958501 0.82501203 0.83557403 0.82906997 0.83958501\n\t\t 0.832003 0.83756697 0.83485901 0.84406298 0.83485901 0.84406298 0.83136702 0.84480798\n\t\t 0.82906997 0.83958501 0.83136702 0.84480798 0.83485901 0.84406298 0.83490199 0.85115999\n\t\t 0.83490199 0.85115999 0.83140099 0.85051399 0.83136702 0.84480798 0.83140099 0.85051399\n\t\t 0.83490199 0.85115999 0.83232802 0.85777402 0.83232802 0.85777402 0.82933199 0.85583198\n\t\t 0.83140099 0.85051399 0.82933199 0.85583198 0.83232802 0.85777402 0.82733899 0.862822\n\t\t 0.82733899 0.862822 0.82532102 0.85988998 0.82933199 0.85583198 0.82532102 0.85988998\n\t\t 0.82733899 0.862822 0.82084298 0.86567998 0.82084298 0.86567998 0.82009798 0.86218703\n\t\t 0.82532102 0.85988998 0.82009798 0.86218703 0.82084298 0.86567998 0.81374598 0.865722\n\t\t 0.81374598 0.865722 0.81439197 0.862221 0.82009798 0.86218703 0.81439197 0.862221\n\t\t 0.81374598 0.865722 0.80713201 0.86314797 0.80713201 0.86314797 0.80907398 0.86015201\n\t\t 0.81439197 0.862221 0.266267 0.21716899 0.274719 0.21716899 0.274719 0.22095102 0.274719\n\t\t 0.22095102 0.266267 0.22095001 0.266267 0.21716899 0.266267 0.21716899 0.266267 0.22095001\n\t\t 0.25781301 0.22095001 0.25781301 0.22095001 0.257817 0.21716899 0.266267 0.21716899\n\t\t 0.249369 0.21714902 0.257817 0.21716899 0.25781301 0.22095001 0.25781301 0.22095001\n\t\t 0.249357 0.22092998 0.249369 0.21714902 0.249369 0.21714902 0.249357 0.22092998 0.24090301\n\t\t 0.22089899 0.24090301 0.22089899 0.240918 0.21711701 0.249369 0.21714902 0.232465\n\t\t 0.217085 0.240918 0.21711701 0.24090301 0.22089899 0.24090301 0.22089899 0.23245201\n\t\t 0.22086602 0.232465 0.217085 0.232465 0.217085 0.23245201 0.22086602 0.224004 0.22084397\n\t\t 0.224004 0.22084397 0.22400901 0.21706301 0.232465 0.217085 0.215554 0.217062 0.22400901\n\t\t 0.21706301 0.224004 0.22084397 0.224004 0.22084397 0.215554 0.22084397 0.215554 0.217062\n\t\t 0.215554 0.217062 0.215554 0.22084397 0.207102 0.22084397 0.207102 0.22084397 0.207102\n\t\t 0.217062 0.215554 0.217062 0.19865 0.217062 0.207102 0.217062 0.207102 0.22084397\n\t\t 0.207102 0.22084397 0.19865 0.22084397 0.19865 0.217062 0.33383799 0.21647298 0.33391899\n\t\t 0.220254 0.325468 0.22043401 0.325468 0.22043401 0.325389 0.21665299 0.33383799 0.21647298\n\t\t 0.31694099 0.21682799 0.325389 0.21665299 0.325468 0.22043401 0.325468 0.22043401\n\t\t 0.31701499 0.22060901 0.31694099 0.21682799 0.31694099 0.21682799 0.31701499 0.22060901\n\t\t 0.308557 0.22076499 0.308557 0.22076499 0.30849701 0.21698302 0.31694099 0.21682799\n\t\t 0.300055 0.21710199 0.30849701 0.21698302 0.308557 0.22076499 0.308557 0.22076499\n\t\t 0.30009601 0.22088301 0.300055 0.21710199 0.300055 0.21710199 0.30009601 0.22088301\n\t\t 0.29163101 0.22095001 0.29163101 0.22095001 0.29161701 0.21716899 0.300055 0.21710199\n\t\t 0.283171 0.21716899 0.29161701 0.21716899 0.29163101 0.22095001 0.29163101 0.22095001\n\t\t 0.283171 0.22095001 0.283171 0.21716899 0.274719 0.21716899 0.283171 0.21716899 0.283171\n\t\t 0.22095001 0.283171 0.22095001 0.274719 0.22095102 0.274719 0.21716899 0.27306801\n\t\t 0.20334297 0.28235701 0.20334297 0.28235701 0.20919299 0.28235701 0.20919299 0.27306801\n\t\t 0.20919299 0.27306801 0.20334297 0.27306801 0.20334297 0.27306801 0.20919299 0.26377901\n\t\t 0.20919198 0.26377901 0.20919198 0.26377901 0.20334399 0.27306801 0.20334297 0.254491\n\t\t 0.20333898 0.26377901 0.20334399 0.26377901 0.20919198 0.26377901 0.20919198 0.254491\n\t\t 0.20919698 0.254491 0.20333898 0.254491 0.20333898 0.254491 0.20919698 0.245203 0.209189\n\t\t 0.245203 0.209189 0.245203 0.20334601 0.254491 0.20333898 0.23591299 0.20333999 0.245203\n\t\t 0.20334601 0.245203 0.209189 0.245203 0.209189 0.23591299 0.20919502 0.23591299 0.20333999\n\t\t 0.23591299 0.20333999 0.23591299 0.20919502 0.22661901 0.20918399 0.22661901 0.20918399\n\t\t 0.22661901 0.20335102 0.23591299 0.20333999 0.217307 0.20335698 0.22661901 0.20335102\n\t\t 0.22661901 0.20918399 0.22661901 0.20918399 0.217307 0.20917898 0.217307 0.20335698\n\t\t 0.217307 0.20335698 0.217307 0.20917898 0.20793501 0.20916802 0.20793501 0.20916802\n\t\t 0.20793401 0.20336801 0.217307 0.20335698 0.198411 0.20324898 0.20793401 0.20336801\n\t\t 0.20793501 0.20916802 0.20793501 0.20916802 0.198411 0.20928699 0.198411 0.20324898\n\t\t 0.34772801 0.20324701 0.34772801 0.20928198 0.338204 0.209162 0.338204 0.209162 0.338204\n\t\t 0.20336801 0.34772801 0.20324701 0.32883099 0.20335102 0.338204 0.20336801 0.338204\n\t\t 0.209162 0.338204 0.209162 0.32883099 0.20918101 0.32883099 0.20335102 0.32883099\n\t\t 0.20335102 0.32883099 0.20918101 0.31951901 0.20918399 0.31951901 0.20918399 0.31951901\n\t\t 0.20334899 0.32883099 0.20335102 0.31022501 0.20333999 0.31951901 0.20334899 0.31951901\n\t\t 0.20918399;\n\tsetAttr \".uvst[0].uvsp[18000:18249]\" 0.31951901 0.20918399 0.31022501 0.20919502\n\t\t 0.31022501 0.20333999 0.31022501 0.20333999 0.31022501 0.20919502 0.300935 0.20919102\n\t\t 0.300935 0.20919102 0.300935 0.20334399 0.31022501 0.20333999 0.291646 0.20334297\n\t\t 0.300935 0.20334399 0.300935 0.20919102 0.300935 0.20919102 0.291646 0.20919198 0.291646\n\t\t 0.20334297 0.28235701 0.20334297 0.291646 0.20334297 0.291646 0.20919198 0.291646\n\t\t 0.20919198 0.28235701 0.20919299 0.28235701 0.20334297 0.20445 0.25670499 0.195998\n\t\t 0.25670499 0.195998 0.24848098 0.195998 0.24848098 0.20445 0.24848098 0.20445 0.25670499\n\t\t 0.20445 0.25670499 0.20445 0.24848098 0.21290199 0.24848098 0.21290199 0.24848098\n\t\t 0.21290199 0.25670499 0.20445 0.25670499 0.22135399 0.25670499 0.21290199 0.25670499\n\t\t 0.21290199 0.24848098 0.21290199 0.24848098 0.22135399 0.24848098 0.22135399 0.25670499\n\t\t 0.22135399 0.25670499 0.22135399 0.24848098 0.22980601 0.24848098 0.22980601 0.24848098\n\t\t 0.22980601 0.25670499 0.22135399 0.25670499 0.238258 0.25670499 0.22980601 0.25670499\n\t\t 0.22980601 0.24848098 0.22980601 0.24848098 0.238258 0.24848002 0.238258 0.25670499\n\t\t 0.238258 0.25670499 0.238258 0.24848002 0.246711 0.24848002 0.246711 0.24848002 0.246711\n\t\t 0.25670499 0.238258 0.25670499 0.255162 0.25670499 0.246711 0.25670499 0.246711 0.24848002\n\t\t 0.246711 0.24848002 0.255162 0.24848002 0.255162 0.25670499 0.255162 0.25670499 0.255162\n\t\t 0.24848002 0.26361501 0.24848098 0.26361501 0.24848098 0.26361501 0.25670499 0.255162\n\t\t 0.25670499 0.27206701 0.25670499 0.26361501 0.25670499 0.26361501 0.24848098 0.26361501\n\t\t 0.24848098 0.27206701 0.24848098 0.27206701 0.25670499 0.136833 0.25670499 0.136833\n\t\t 0.24848098 0.145285 0.24848098 0.145285 0.24848098 0.145285 0.25670499 0.136833 0.25670499\n\t\t 0.15373801 0.25670499 0.145285 0.25670499 0.145285 0.24848098 0.145285 0.24848098\n\t\t 0.15373699 0.24848002 0.15373801 0.25670499 0.15373801 0.25670499 0.15373699 0.24848002\n\t\t 0.16219001 0.24848002 0.16219001 0.24848002 0.16219001 0.25670499 0.15373801 0.25670499\n\t\t 0.170642 0.25670499 0.16219001 0.25670499 0.16219001 0.24848002 0.16219001 0.24848002\n\t\t 0.170642 0.24848098 0.170642 0.25670499 0.170642 0.25670499 0.170642 0.24848098 0.179094\n\t\t 0.24848098 0.179094 0.24848098 0.179094 0.25670499 0.170642 0.25670499 0.187546 0.25670499\n\t\t 0.179094 0.25670499 0.179094 0.24848098 0.179094 0.24848098 0.187546 0.24848098 0.187546\n\t\t 0.25670499 0.195998 0.25670499 0.187546 0.25670499 0.187546 0.24848098 0.187546 0.24848098\n\t\t 0.195998 0.24848098 0.195998 0.25670499 0.77898097 0.36221403 0.76993102 0.36221403\n\t\t 0.76993102 0.36104798 0.76993102 0.36104798 0.77898097 0.36104798 0.77898097 0.36221403\n\t\t 0.77898097 0.36221403 0.77898097 0.36104798 0.78803098 0.36104798 0.78803098 0.36104798\n\t\t 0.78803098 0.36221403 0.77898097 0.36221403 0.79708201 0.36221701 0.78803098 0.36221403\n\t\t 0.78803098 0.36104798 0.78803098 0.36104798 0.79708201 0.36104602 0.79708201 0.36221701\n\t\t 0.79708201 0.36221701 0.79708201 0.36104602 0.80613297 0.36105001 0.80613297 0.36105001\n\t\t 0.80613297 0.36221302 0.79708201 0.36221701 0.81518799 0.362216 0.80613297 0.36221302\n\t\t 0.80613297 0.36105001 0.80613297 0.36105001 0.81518799 0.36104703 0.81518799 0.362216\n\t\t 0.81518799 0.362216 0.81518799 0.36104703 0.82424903 0.36104798 0.82424903 0.36104798\n\t\t 0.82424903 0.36221498 0.81518799 0.362216 0.83332402 0.36221498 0.82424903 0.36221498\n\t\t 0.82424903 0.36104798 0.82424903 0.36104798 0.83332402 0.36104703 0.83332402 0.36221498\n\t\t 0.83332402 0.36221498 0.83332402 0.36104703 0.84243 0.36104703 0.84243 0.36104703\n\t\t 0.84243 0.362216 0.83332402 0.36221498 0.85159802 0.36221701 0.84243 0.362216 0.84243\n\t\t 0.36104703 0.84243 0.36104703 0.85159802 0.36104602 0.85159802 0.36221701 0.71552801\n\t\t 0.36103803 0.71552801 0.36222398 0.706361 0.36222398 0.706361 0.36222398 0.706361\n\t\t 0.36103898 0.71552801 0.36103803 0.724635 0.36220902 0.71552801 0.36222398 0.71552801\n\t\t 0.36103803 0.71552801 0.36103803 0.724635 0.36105299 0.724635 0.36220902 0.724635\n\t\t 0.36220902 0.724635 0.36105299 0.733711 0.36105299 0.733711 0.36105299 0.733711 0.36220902\n\t\t 0.724635 0.36220902 0.742773 0.362216 0.733711 0.36220902 0.733711 0.36105299 0.733711\n\t\t 0.36105299 0.742773 0.36104703 0.742773 0.362216 0.742773 0.362216 0.742773 0.36104703\n\t\t 0.75182801 0.361049 0.75182801 0.361049 0.75182801 0.36221403 0.742773 0.362216 0.76087999\n\t\t 0.36221403 0.75182801 0.36221403 0.75182801 0.361049 0.75182801 0.361049 0.76087999\n\t\t 0.36104798 0.76087999 0.36221403 0.76993102 0.36221403 0.76087999 0.36221403 0.76087999\n\t\t 0.36104798 0.76087999 0.36104798 0.76993102 0.36104798 0.76993102 0.36221403 0.28235701\n\t\t 0.19931799 0.28235701 0.20334297 0.27306801 0.20334297 0.27306801 0.20334297 0.27306801\n\t\t 0.19930702 0.28235701 0.19931799 0.27306801 0.19930702 0.27306801 0.20334297 0.26377901\n\t\t 0.20334399 0.26377901 0.20334399 0.26378 0.19931901 0.27306801 0.19930702 0.26378\n\t\t 0.19931901 0.26377901 0.20334399 0.254491 0.20333898 0.254491 0.20333898 0.254491\n\t\t 0.199301 0.26378 0.19931901 0.254491 0.199301 0.254491 0.20333898 0.245203 0.20334601\n\t\t 0.245203 0.20334601 0.245203 0.19932199 0.254491 0.199301 0.245203 0.19932199 0.245203\n\t\t 0.20334601 0.23591299 0.20333999 0.23591299 0.20333999 0.23591501 0.19930398 0.245203\n\t\t 0.19932199 0.23591501 0.19930398 0.23591299 0.20333999 0.22661901 0.20335102 0.22661901\n\t\t 0.20335102 0.226633 0.19933701 0.23591501 0.19930398 0.226633 0.19933701;\n\tsetAttr \".uvst[0].uvsp[18250:18499]\" 0.22661901 0.20335102 0.217307 0.20335698\n\t\t 0.217307 0.20335698 0.217373 0.19934899 0.226633 0.19933701 0.217373 0.19934899 0.217307\n\t\t 0.20335698 0.20793401 0.20336801 0.20793401 0.20336801 0.208213 0.19940299 0.217373\n\t\t 0.19934899 0.208213 0.19940299 0.20793401 0.20336801 0.198411 0.20324898 0.198411\n\t\t 0.20324898 0.199434 0.19901401 0.208213 0.19940299 0.34670499 0.19901401 0.34772801\n\t\t 0.20324701 0.338204 0.20336801 0.338204 0.20336801 0.337928 0.19940501 0.34670499\n\t\t 0.19901401 0.337928 0.19940501 0.338204 0.20336801 0.32883099 0.20335102 0.32883099\n\t\t 0.20335102 0.328767 0.19934201 0.337928 0.19940501 0.328767 0.19934201 0.32883099\n\t\t 0.20335102 0.31951901 0.20334899 0.31951901 0.20334899 0.31950599 0.19933301 0.328767\n\t\t 0.19934201 0.31950599 0.19933301 0.31951901 0.20334899 0.31022501 0.20333999 0.31022501\n\t\t 0.20333999 0.310222 0.19930297 0.31950599 0.19933301 0.310222 0.19930297 0.31022501\n\t\t 0.20333999 0.300935 0.20334399 0.300935 0.20334399 0.300933 0.19932002 0.310222 0.19930297\n\t\t 0.300933 0.19932002 0.300935 0.20334399 0.291646 0.20334297 0.291646 0.20334297 0.291646\n\t\t 0.19930702 0.300933 0.19932002 0.291646 0.19930702 0.291646 0.20334297 0.28235701\n\t\t 0.20334297 0.28235701 0.20334297 0.28235701 0.19931799 0.291646 0.19930702 0.26378\n\t\t 0.21321601 0.26377901 0.20919198 0.27306801 0.20919299 0.27306801 0.20919299 0.27306801\n\t\t 0.213229 0.26378 0.21321601 0.27306801 0.213229 0.27306801 0.20919299 0.28235701\n\t\t 0.20919299 0.28235701 0.20919299 0.28235701 0.21321702 0.27306801 0.213229 0.28235701\n\t\t 0.21321702 0.28235701 0.20919299 0.291646 0.20919198 0.291646 0.20919198 0.291646\n\t\t 0.21322799 0.28235701 0.21321702 0.291646 0.21322799 0.291646 0.20919198 0.300935\n\t\t 0.20919102 0.300935 0.20919102 0.30093399 0.21321601 0.291646 0.21322799 0.30093399\n\t\t 0.21321601 0.300935 0.20919102 0.31022501 0.20919502 0.31022501 0.20919502 0.31022301\n\t\t 0.21323198 0.30093399 0.21321601 0.31022301 0.21323198 0.31022501 0.20919502 0.31951901\n\t\t 0.20918399 0.31951901 0.20918399 0.319507 0.21319997 0.31022301 0.21323198 0.319507\n\t\t 0.21319997 0.31951901 0.20918399 0.32883099 0.20918101 0.32883099 0.20918101 0.32876799\n\t\t 0.21319002 0.319507 0.21319997 0.32876799 0.21319002 0.32883099 0.20918101 0.338204\n\t\t 0.209162 0.338204 0.209162 0.337928 0.21312499 0.32876799 0.21319002 0.337928 0.21312499\n\t\t 0.338204 0.209162 0.34772801 0.20928198 0.34772801 0.20928198 0.346706 0.213516 0.337928\n\t\t 0.21312499 0.199434 0.21352297 0.198411 0.20928699 0.20793501 0.20916802 0.20793501\n\t\t 0.20916802 0.208213 0.21313399 0.199434 0.21352297 0.208213 0.21313399 0.20793501\n\t\t 0.20916802 0.217307 0.20917898 0.217307 0.20917898 0.217374 0.21318698 0.208213 0.21313399\n\t\t 0.217374 0.21318698 0.217307 0.20917898 0.22661901 0.20918399 0.22661901 0.20918399\n\t\t 0.226633 0.21319902 0.217374 0.21318698 0.226633 0.21319902 0.22661901 0.20918399\n\t\t 0.23591299 0.20919502 0.23591299 0.20919502 0.23591501 0.21323103 0.226633 0.21319902\n\t\t 0.23591501 0.21323103 0.23591299 0.20919502 0.245203 0.209189 0.245203 0.209189 0.245203\n\t\t 0.21321303 0.23591501 0.21323103 0.245203 0.21321303 0.245203 0.209189 0.254491 0.20919698\n\t\t 0.254491 0.20919698 0.254491 0.21323502 0.245203 0.21321303 0.254491 0.21323502 0.254491\n\t\t 0.20919698 0.26377901 0.20919198 0.26377901 0.20919198 0.26378 0.21321601 0.254491\n\t\t 0.21323502 0.76993197 0.36444002 0.76993102 0.36221403 0.77898097 0.36221403 0.77898097\n\t\t 0.36221403 0.77898097 0.364443 0.76993197 0.36444002 0.77898097 0.364443 0.77898097\n\t\t 0.36221403 0.78803098 0.36221403 0.78803098 0.36221403 0.78802902 0.36443901 0.77898097\n\t\t 0.364443 0.78802902 0.36443901 0.78803098 0.36221403 0.79708201 0.36221701 0.79708201\n\t\t 0.36221701 0.797077 0.36444801 0.78802902 0.36443901 0.797077 0.36444801 0.79708201\n\t\t 0.36221701 0.80613297 0.36221302 0.80613297 0.36221302 0.80612302 0.36443597 0.797077\n\t\t 0.36444801 0.80612302 0.36443597 0.80613297 0.36221302 0.81518799 0.362216 0.81518799\n\t\t 0.362216 0.81516498 0.36444598 0.80612302 0.36443597 0.81516498 0.36444598 0.81518799\n\t\t 0.362216 0.82424903 0.36221498 0.82424903 0.36221498 0.82419801 0.364438 0.81516498\n\t\t 0.36444598 0.82419801 0.364438 0.82424903 0.36221498 0.83332402 0.36221498 0.83332402\n\t\t 0.36221498 0.83320898 0.36444002 0.82419801 0.364438 0.83320898 0.36444002 0.83332402\n\t\t 0.36221498 0.84243 0.362216 0.84243 0.362216 0.842161 0.364429 0.83320898 0.36444002\n\t\t 0.842161 0.364429 0.84243 0.362216 0.85159802 0.36221701 0.85159802 0.36221701 0.85089397\n\t\t 0.36449498 0.842161 0.364429 0.707066 0.36450797 0.706361 0.36222398 0.71552801 0.36222398\n\t\t 0.71552801 0.36222398 0.71579897 0.36444199 0.707066 0.36450797 0.71579897 0.36444199\n\t\t 0.71552801 0.36222398 0.724635 0.36220902 0.724635 0.36220902 0.72475201 0.36443102\n\t\t 0.71579897 0.36444199 0.72475201 0.36443102 0.724635 0.36220902 0.733711 0.36220902\n\t\t 0.733711 0.36220902 0.73376203 0.36442798 0.72475201 0.36443102 0.73376203 0.36442798\n\t\t 0.733711 0.36220902 0.742773 0.362216 0.742773 0.362216 0.74279499 0.36444497 0.73376203\n\t\t 0.36442798 0.74279499 0.36444497 0.742773 0.362216 0.75182801 0.36221403 0.75182801\n\t\t 0.36221403 0.75183803 0.36443901 0.74279499 0.36444497 0.75183803 0.36443901 0.75182801\n\t\t 0.36221403 0.76087999 0.36221403 0.76087999 0.36221403 0.76088399 0.364443 0.75183803\n\t\t 0.36443901 0.76088399 0.364443 0.76087999 0.36221403 0.76993102 0.36221403 0.76993102\n\t\t 0.36221403 0.76993197 0.36444002;\n\tsetAttr \".uvst[0].uvsp[18500:18749]\" 0.76088399 0.364443 0.78802902 0.358823 0.78803098\n\t\t 0.36104798 0.77898097 0.36104798 0.77898097 0.36104798 0.77898097 0.35881901 0.78802902\n\t\t 0.358823 0.77898097 0.35881901 0.77898097 0.36104798 0.76993102 0.36104798 0.76993102\n\t\t 0.36104798 0.76993197 0.358823 0.77898097 0.35881901 0.76993197 0.358823 0.76993102\n\t\t 0.36104798 0.76087999 0.36104798 0.76087999 0.36104798 0.76088399 0.35882002 0.76993197\n\t\t 0.358823 0.76088399 0.35882002 0.76087999 0.36104798 0.75182801 0.361049 0.75182801\n\t\t 0.361049 0.75183803 0.35882401 0.76088399 0.35882002 0.75183803 0.35882401 0.75182801\n\t\t 0.361049 0.742773 0.36104703 0.742773 0.36104703 0.74279499 0.35881799 0.75183803\n\t\t 0.35882401 0.74279499 0.35881799 0.742773 0.36104703 0.733711 0.36105299 0.733711\n\t\t 0.36105299 0.73376203 0.35883498 0.74279499 0.35881799 0.73376203 0.35883498 0.733711\n\t\t 0.36105299 0.724635 0.36105299 0.724635 0.36105299 0.72475201 0.35883099 0.73376203\n\t\t 0.35883498 0.72475201 0.35883099 0.724635 0.36105299 0.71552801 0.36103803 0.71552801\n\t\t 0.36103803 0.71579897 0.35882097 0.72475201 0.35883099 0.71579897 0.35882097 0.71552801\n\t\t 0.36103803 0.706361 0.36103898 0.706361 0.36103898 0.707066 0.35875499 0.71579897\n\t\t 0.35882097 0.85089397 0.35876799 0.85159802 0.36104602 0.84243 0.36104703 0.84243\n\t\t 0.36104703 0.842161 0.35883403 0.85089397 0.35876799 0.842161 0.35883403 0.84243\n\t\t 0.36104703 0.83332402 0.36104703 0.83332402 0.36104703 0.83320898 0.358823 0.842161\n\t\t 0.35883403 0.83320898 0.358823 0.83332402 0.36104703 0.82424903 0.36104798 0.82424903\n\t\t 0.36104798 0.82419801 0.35882401 0.83320898 0.358823 0.82419801 0.35882401 0.82424903\n\t\t 0.36104798 0.81518799 0.36104703 0.81518799 0.36104703 0.81516498 0.35881698 0.82419801\n\t\t 0.35882401 0.81516498 0.35881698 0.81518799 0.36104703 0.80613297 0.36105001 0.80613297\n\t\t 0.36105001 0.80612302 0.35882699 0.81516498 0.35881698 0.80612302 0.35882699 0.80613297\n\t\t 0.36105001 0.79708201 0.36104602 0.79708201 0.36104602 0.797077 0.358814 0.80612302\n\t\t 0.35882699 0.797077 0.358814 0.79708201 0.36104602 0.78803098 0.36104798 0.78803098\n\t\t 0.36104798 0.78802902 0.358823 0.797077 0.358814 0.0627864 0.22429502 0.070400499\n\t\t 0.22429502 0.070400499 0.23053402 0.070400499 0.23053402 0.0627864 0.23053402 0.0627864\n\t\t 0.22429502 0.0627864 0.22429502 0.0627864 0.23053402 0.0551854 0.23053402 0.0551854\n\t\t 0.23053402 0.0551854 0.22429502 0.0627864 0.22429502 0.047591802 0.22429502 0.0551854\n\t\t 0.22429502 0.0551854 0.23053402 0.0551854 0.23053402 0.047591802 0.23053402 0.047591802\n\t\t 0.22429502 0.047591802 0.22429502 0.047591802 0.23053402 0.039987899 0.23053402 0.039987899\n\t\t 0.23053402 0.039987899 0.22429502 0.047591802 0.22429502 0.032392401 0.22429502 0.039987899\n\t\t 0.22429502 0.039987899 0.23053402 0.039987899 0.23053402 0.032392401 0.23053402 0.032392401\n\t\t 0.22429502 0.032392401 0.22429502 0.032392401 0.23053402 0.024747699 0.23053402 0.024747699\n\t\t 0.23053402 0.024747699 0.22429502 0.032392401 0.22429502 0.016985999 0.22429502 0.024747699\n\t\t 0.22429502 0.024747699 0.23053402 0.024747699 0.23053402 0.016985999 0.23053402 0.016985999\n\t\t 0.22429502 0.016985999 0.22429502 0.016985999 0.23053402 0.0093119703 0.23053402\n\t\t 0.0093119703 0.23053402 0.0093119703 0.22429502 0.016985999 0.22429502 0.0024486401\n\t\t 0.22429502 0.0093119703 0.22429502 0.0093119703 0.23053402 0.0093119703 0.23053402\n\t\t 0.0024486401 0.23053402 0.0024486401 0.22429502 0.115714 0.23053402 0.115714 0.22429502\n\t\t 0.123461 0.22429502 0.123461 0.22429502 0.123461 0.23053402 0.115714 0.23053402 0.108187\n\t\t 0.22429502 0.115714 0.22429502 0.115714 0.23053402 0.115714 0.23053402 0.108187 0.23053402\n\t\t 0.108187 0.22429502 0.108187 0.22429502 0.108187 0.23053402 0.100658 0.23053402 0.100658\n\t\t 0.23053402 0.100658 0.22429502 0.108187 0.22429502 0.0931243 0.22429502 0.100658\n\t\t 0.22429502 0.100658 0.23053402 0.100658 0.23053402 0.0931243 0.23053402 0.0931243\n\t\t 0.22429502 0.0931243 0.22429502 0.0931243 0.23053402 0.085575797 0.23053402 0.085575797\n\t\t 0.23053402 0.085575797 0.22429502 0.0931243 0.22429502 0.078004397 0.22429502 0.085575797\n\t\t 0.22429502 0.085575797 0.23053402 0.085575797 0.23053402 0.078004397 0.23053402 0.078004397\n\t\t 0.22429502 0.070400499 0.22429502 0.078004397 0.22429502 0.078004397 0.23053402 0.078004397\n\t\t 0.23053402 0.070400499 0.23053402 0.070400499 0.22429502 0.082194 0.099443972 0.093473598\n\t\t 0.099443972 0.093473598 0.154567 0.093473598 0.154567 0.082194 0.154567 0.082194\n\t\t 0.099443972 0.093473598 0.154567 0.093473598 0.099443972 0.104753 0.099443972 0.104753\n\t\t 0.099443972 0.104753 0.154567 0.093473598 0.154567 0.116033 0.154567 0.104753 0.154567\n\t\t 0.104753 0.099443972 0.104753 0.099443972 0.116033 0.099443972 0.116033 0.154567\n\t\t 0.116033 0.154567 0.116033 0.099443972 0.127312 0.099443972 0.127312 0.099443972\n\t\t 0.127312 0.154567 0.116033 0.154567 0.13859101 0.154567 0.127312 0.154567 0.127312\n\t\t 0.099443972 0.127312 0.099443972 0.13859101 0.099443972 0.13859101 0.154567 0.13859101\n\t\t 0.154567 0.13859101 0.099443972 0.149872 0.099443972 0.149872 0.099443972 0.149872\n\t\t 0.154567 0.13859101 0.154567 0.16115101 0.154567 0.149872 0.154567 0.149872 0.099443972\n\t\t 0.149872 0.099443972 0.16115101 0.099443972 0.16115101 0.154567 0.16115101 0.154567\n\t\t 0.16115101 0.099443972 0.17243101 0.099443972 0.17243101 0.099443972 0.17243101 0.154567\n\t\t 0.16115101 0.154567 0.18370999 0.154567 0.17243101 0.154567 0.17243101 0.099443972\n\t\t 0.17243101 0.099443972 0.18370999 0.099443972 0.18370999 0.154567 0.0032363001 0.154567\n\t\t 0.0032363001 0.099443972 0.0145159 0.099443972;\n\tsetAttr \".uvst[0].uvsp[18750:18999]\" 0.0145159 0.099443972 0.0145159 0.154567 0.0032363001\n\t\t 0.154567 0.025796 0.154567 0.0145159 0.154567 0.0145159 0.099443972 0.0145159 0.099443972\n\t\t 0.025795 0.099443972 0.025796 0.154567 0.025796 0.154567 0.025795 0.099443972 0.037075099\n\t\t 0.099443972 0.037075099 0.099443972 0.037075602 0.154567 0.025796 0.154567 0.048355199\n\t\t 0.154567 0.037075602 0.154567 0.037075099 0.099443972 0.037075099 0.099443972 0.0483547\n\t\t 0.099443972 0.048355199 0.154567 0.048355199 0.154567 0.0483547 0.099443972 0.059634801\n\t\t 0.099443972 0.059634801 0.099443972 0.059634801 0.154567 0.048355199 0.154567 0.070914403\n\t\t 0.154567 0.059634801 0.154567 0.059634801 0.099443972 0.059634801 0.099443972 0.070914403\n\t\t 0.099443972 0.070914403 0.154567 0.070914403 0.154567 0.070914403 0.099443972 0.082194\n\t\t 0.099443972 0.082194 0.099443972 0.082194 0.154567 0.070914403 0.154567 0.59282202\n\t\t 0.51386297 0.59694499 0.512559 0.59773701 0.52001297 0.59773701 0.52001297 0.593436\n\t\t 0.51964104 0.59282202 0.51386297 0.593436 0.51964104 0.59773701 0.52001297 0.595676\n\t\t 0.52722096 0.595676 0.52722096 0.591838 0.52522701 0.593436 0.51964104 0.591838 0.52522701\n\t\t 0.595676 0.52722096 0.59096402 0.53305101 0.59096402 0.53305101 0.58818698 0.52974701\n\t\t 0.591838 0.52522701 0.58818698 0.52974701 0.59096402 0.53305101 0.58441001 0.53669\n\t\t 0.58441001 0.53669 0.58310699 0.53256702 0.58818698 0.52974701 0.58310699 0.53256702\n\t\t 0.58441001 0.53669 0.57695597 0.53748202 0.57695597 0.53748202 0.57732898 0.53318101\n\t\t 0.58310699 0.53256702 0.57732898 0.53318101 0.57695597 0.53748202 0.569749 0.53542\n\t\t 0.569749 0.53542 0.57174301 0.53158301 0.57732898 0.53318101 0.57174301 0.53158301\n\t\t 0.569749 0.53542 0.56391799 0.53070903 0.56391799 0.53070903 0.56722301 0.52793199\n\t\t 0.57174301 0.53158301 0.56722301 0.52793199 0.56391799 0.53070903 0.56028003 0.52415502\n\t\t 0.56028003 0.52415502 0.564403 0.522852 0.56722301 0.52793199 0.564403 0.522852 0.56028003\n\t\t 0.52415502 0.559488 0.51670098 0.559488 0.51670098 0.56378901 0.51707399 0.564403\n\t\t 0.522852 0.56378901 0.51707399 0.559488 0.51670098 0.56154901 0.50949401 0.56154901\n\t\t 0.50949401 0.56538701 0.51148701 0.56378901 0.51707399 0.56538701 0.51148701 0.56154901\n\t\t 0.50949401 0.56626099 0.503663 0.56626099 0.503663 0.56903797 0.50696802 0.56538701\n\t\t 0.51148701 0.56903797 0.50696802 0.56626099 0.503663 0.572815 0.50002503 0.572815\n\t\t 0.50002503 0.57411802 0.50414699 0.56903797 0.50696802 0.57411802 0.50414699 0.572815\n\t\t 0.50002503 0.58026898 0.49923301 0.58026898 0.49923301 0.57989597 0.50353396 0.57411802\n\t\t 0.50414699 0.57989597 0.50353396 0.58026898 0.49923301 0.58747602 0.50129402 0.58747602\n\t\t 0.50129402 0.58548301 0.50513196 0.57989597 0.50353396 0.58548301 0.50513196 0.58747602\n\t\t 0.50129402 0.59330702 0.506006 0.59330702 0.506006 0.590002 0.50878298 0.58548301\n\t\t 0.50513196 0.590002 0.50878298 0.59330702 0.506006 0.59694499 0.512559 0.59694499\n\t\t 0.512559 0.59282202 0.51386297 0.590002 0.50878298 0.218839 0.30441302 0.208722 0.30441302\n\t\t 0.20872299 0.29938799 0.20872299 0.29938799 0.218839 0.29938799 0.218839 0.30441302\n\t\t 0.198606 0.29938799 0.20872299 0.29938799 0.208722 0.30441302 0.208722 0.30441302\n\t\t 0.198605 0.30441201 0.198606 0.29938799 0.18848 0.29937601 0.198606 0.29938799 0.198605\n\t\t 0.30441201 0.198605 0.30441201 0.188484 0.30440301 0.18848 0.29937601 0.17832901\n\t\t 0.29940599 0.18848 0.29937601 0.188484 0.30440301 0.188484 0.30440301 0.178343 0.30442899\n\t\t 0.17832901 0.29940599 0.168138 0.29944402 0.17832901 0.29940599 0.178343 0.30442899\n\t\t 0.178343 0.30442899 0.168162 0.30447 0.168138 0.29944402 0.157882 0.299537 0.168138\n\t\t 0.29944402 0.168162 0.30447 0.168162 0.30447 0.15789001 0.30456001 0.157882 0.299537\n\t\t 0.14750899 0.29956597 0.157882 0.299537 0.15789001 0.30456001 0.15789001 0.30456001\n\t\t 0.147478 0.30459398 0.14750899 0.29956597 0.13696 0.29952198 0.14750899 0.29956597\n\t\t 0.147478 0.30459398 0.147478 0.30459398 0.13659699 0.30449098 0.13696 0.29952198\n\t\t 0.126205 0.29805499 0.13696 0.29952198 0.13659699 0.30449098 0.13659699 0.30449098\n\t\t 0.125476 0.30308998 0.126205 0.29805499 0.198606 0.29938799 0.18848 0.29937601 0.188473\n\t\t 0.29137802 0.178314 0.29141402 0.188473 0.29137802 0.18848 0.29937601 0.18848 0.29937601\n\t\t 0.17832901 0.29940599 0.178314 0.29141402 0.17832901 0.29940599 0.168138 0.29944402\n\t\t 0.16812401 0.29144198 0.16812401 0.29144198 0.178314 0.29141402 0.17832901 0.29940599\n\t\t 0.15792 0.29153299 0.16812401 0.29144198 0.168138 0.29944402 0.168138 0.29944402\n\t\t 0.157882 0.299537 0.15792 0.29153299 0.157882 0.299537 0.14750899 0.29956597 0.147744\n\t\t 0.29156798 0.147744 0.29156798 0.15792 0.29153299 0.157882 0.299537 0.13780101 0.29159403\n\t\t 0.147744 0.29156798 0.14750899 0.29956597 0.14750899 0.29956597 0.13696 0.29952198\n\t\t 0.13780101 0.29159403 0.13696 0.29952198 0.126205 0.29805499 0.12848599 0.29008299\n\t\t 0.12848599 0.29008299 0.13780101 0.29159403 0.13696 0.29952198 0.188473 0.29137802\n\t\t 0.198607 0.29139602 0.198606 0.29938799 0.20872299 0.29938799 0.198606 0.29938799\n\t\t 0.198607 0.29139602 0.198607 0.29139602 0.20872299 0.29139 0.20872299 0.29938799\n\t\t 0.218839 0.29938799 0.20872299 0.29938799 0.20872299 0.29139 0.20872299 0.29139 0.218841\n\t\t 0.29139 0.218839 0.29938799 0.228966 0.299389 0.218839 0.29938799 0.218841 0.29139\n\t\t 0.218839 0.29938799 0.228966 0.299389 0.228965 0.30441499 0.239099 0.304416;\n\tsetAttr \".uvst[0].uvsp[19000:19249]\" 0.228965 0.30441499 0.228966 0.299389 0.228966\n\t\t 0.299389 0.239114 0.29939097 0.239099 0.304416 0.249248 0.30450499 0.239099 0.304416\n\t\t 0.239114 0.29939097 0.239114 0.29939097 0.24930499 0.29947901 0.249248 0.30450499\n\t\t 0.259527 0.304708 0.249248 0.30450499 0.24930499 0.29947901 0.24930499 0.29947901\n\t\t 0.259574 0.29968202 0.259527 0.304708 0.27010101 0.30480701 0.259527 0.304708 0.259574\n\t\t 0.29968202 0.259574 0.29968202 0.269977 0.29978102 0.27010101 0.30480701 0.28108099\n\t\t 0.30427301 0.27010101 0.30480701 0.269977 0.29978102 0.269977 0.29978102 0.28054801\n\t\t 0.29929298 0.28108099 0.30427301 0.29212999 0.30257499 0.28108099 0.30427301 0.28054801\n\t\t 0.29929298 0.28054801 0.29929298 0.291264 0.29756403 0.29212999 0.30257499 0.228965\n\t\t 0.30441499 0.218839 0.30441302 0.218839 0.29938799 0.291264 0.29756403 0.28054801\n\t\t 0.29929298 0.27947301 0.29140002 0.27947301 0.29140002 0.28877199 0.289666 0.291264\n\t\t 0.29756403 0.28054801 0.29929298 0.269977 0.29978102 0.269631 0.29175901 0.269631\n\t\t 0.29175901 0.27947301 0.29140002 0.28054801 0.29929298 0.259541 0.29166901 0.269631\n\t\t 0.29175901 0.269977 0.29978102 0.269977 0.29978102 0.259574 0.29968202 0.259541 0.29166901\n\t\t 0.259574 0.29968202 0.24930499 0.29947901 0.249347 0.29148 0.249347 0.29148 0.259541\n\t\t 0.29166901 0.259574 0.29968202 0.23914 0.29140902 0.249347 0.29148 0.24930499 0.29947901\n\t\t 0.24930499 0.29947901 0.239114 0.29939097 0.23914 0.29140902 0.228974 0.29139102\n\t\t 0.23914 0.29140902 0.239114 0.29939097 0.239114 0.29939097 0.228966 0.299389 0.228974\n\t\t 0.29139102 0.218841 0.29139 0.228974 0.29139102 0.228966 0.299389 0.086597197 0.20858198\n\t\t 0.098561697 0.20858002 0.098561697 0.21625501 0.098561697 0.21625501 0.086597197\n\t\t 0.216254 0.086597197 0.20858198 0.110527 0.21625298 0.098561697 0.21625501 0.098561697\n\t\t 0.20858002 0.098561697 0.20858002 0.110527 0.208583 0.110527 0.21625298 0.122492\n\t\t 0.21625698 0.110527 0.21625298 0.110527 0.208583 0.110527 0.208583 0.122492 0.208579\n\t\t 0.122492 0.21625698 0.134461 0.21625102 0.122492 0.21625698 0.122492 0.208579 0.122492\n\t\t 0.208579 0.134461 0.20858502 0.134461 0.21625102 0.14643499 0.21625698 0.134461 0.21625102\n\t\t 0.134461 0.20858502 0.134461 0.20858502 0.14643499 0.208579 0.14643499 0.21625698\n\t\t 0.158415 0.21625298 0.14643499 0.21625698 0.14643499 0.208579 0.14643499 0.208579\n\t\t 0.158415 0.20858401 0.158415 0.21625298 0.170404 0.21625298 0.158415 0.21625298 0.158415\n\t\t 0.20858401 0.158415 0.20858401 0.170404 0.20858598 0.170404 0.21625298 0.182428 0.21624202\n\t\t 0.170404 0.21625298 0.170404 0.20858598 0.170404 0.20858598 0.182427 0.208597 0.182428\n\t\t 0.21624202 0.19467101 0.21634001 0.182428 0.21624202 0.182427 0.208597 0.182427 0.208597\n\t\t 0.194675 0.20846403 0.19467101 0.21634001 0.0146977 0.21623701 0.0024532999 0.21633703\n\t\t 0.0024500999 0.208462 0.0024500999 0.208462 0.0146993 0.20859802 0.0146977 0.21623701\n\t\t 0.0267208 0.21625602 0.0146977 0.21623701 0.0146993 0.20859802 0.0146993 0.20859802\n\t\t 0.026721301 0.208583 0.0267208 0.21625602 0.038708199 0.21625203 0.0267208 0.21625602\n\t\t 0.026721301 0.208583 0.026721301 0.208583 0.038708799 0.20858502 0.038708199 0.21625203\n\t\t 0.0506882 0.21625698 0.038708199 0.21625203 0.038708799 0.20858502 0.038708799 0.20858502\n\t\t 0.0506882 0.208579 0.0506882 0.21625698 0.062661298 0.21625298 0.0506882 0.21625698\n\t\t 0.0506882 0.208579 0.0506882 0.208579 0.062661298 0.208583 0.062661298 0.21625298\n\t\t 0.074631102 0.21625501 0.062661298 0.21625298 0.062661298 0.208583 0.062661298 0.208583\n\t\t 0.074631102 0.20858002 0.074631102 0.21625501 0.086597197 0.216254 0.074631102 0.21625501\n\t\t 0.074631102 0.20858002 0.074631102 0.20858002 0.086597197 0.20858198 0.086597197\n\t\t 0.216254 0.21580701 0.23479003 0.22708701 0.23479003 0.22708701 0.24520701 0.22708701\n\t\t 0.24520701 0.21580701 0.24520701 0.21580701 0.23479003 0.23836599 0.24520701 0.22708701\n\t\t 0.24520701 0.22708701 0.23479003 0.22708701 0.23479003 0.23836701 0.23478901 0.23836599\n\t\t 0.24520701 0.24964599 0.24520701 0.23836599 0.24520701 0.23836701 0.23478901 0.23836701\n\t\t 0.23478901 0.24964599 0.23479003 0.24964599 0.24520701 0.26092601 0.24520701 0.24964599\n\t\t 0.24520701 0.24964599 0.23479003 0.24964599 0.23479003 0.26092601 0.23479003 0.26092601\n\t\t 0.24520701 0.27220601 0.24520701 0.26092601 0.24520701 0.26092601 0.23479003 0.26092601\n\t\t 0.23479003 0.27220601 0.23478901 0.27220601 0.24520701 0.28348601 0.24520701 0.27220601\n\t\t 0.24520701 0.27220601 0.23478901 0.27220601 0.23478901 0.28348601 0.23479003 0.28348601\n\t\t 0.24520701 0.29476601 0.24520701 0.28348601 0.24520701 0.28348601 0.23479003 0.28348601\n\t\t 0.23479003 0.29476601 0.23479003 0.29476601 0.24520701 0.30604601 0.24520701 0.29476601\n\t\t 0.24520701 0.29476601 0.23479003 0.29476601 0.23479003 0.30604601 0.23479003 0.30604601\n\t\t 0.24520701 0.317325 0.24520701 0.30604601 0.24520701 0.30604601 0.23479003 0.30604601\n\t\t 0.23479003 0.317325 0.23478901 0.317325 0.24520701 0.148128 0.24520701 0.136849 0.24520701\n\t\t 0.136849 0.23478901 0.136849 0.23478901 0.148128 0.23479003 0.148128 0.24520701 0.159408\n\t\t 0.24520701 0.148128 0.24520701 0.148128 0.23479003 0.148128 0.23479003 0.159408 0.23478901\n\t\t 0.159408 0.24520701 0.170688 0.24520701 0.159408 0.24520701 0.159408 0.23478901 0.159408\n\t\t 0.23478901 0.170688 0.23478901 0.170688 0.24520701 0.181968 0.24520701 0.170688 0.24520701\n\t\t 0.170688 0.23478901 0.170688 0.23478901 0.181968 0.23479003;\n\tsetAttr \".uvst[0].uvsp[19250:19499]\" 0.181968 0.24520701 0.193248 0.24520701 0.181968\n\t\t 0.24520701 0.181968 0.23479003 0.181968 0.23479003 0.193248 0.23478901 0.193248 0.24520701\n\t\t 0.20452701 0.24520701 0.193248 0.24520701 0.193248 0.23478901 0.193248 0.23478901\n\t\t 0.20452701 0.23479003 0.20452701 0.24520701 0.21580701 0.24520701 0.20452701 0.24520701\n\t\t 0.20452701 0.23479003 0.20452701 0.23479003 0.21580701 0.23479003 0.21580701 0.24520701\n\t\t 0.232987 0.22892803 0.22136199 0.22892803 0.22136199 0.227449 0.22136199 0.227449\n\t\t 0.232987 0.227449 0.232987 0.22892803 0.209737 0.227449 0.22136199 0.227449 0.22136199\n\t\t 0.22892803 0.22136199 0.22892803 0.209737 0.22892702 0.209737 0.227449 0.198118 0.22744602\n\t\t 0.209737 0.227449 0.209737 0.22892702 0.209737 0.22892702 0.198118 0.22892898 0.198118\n\t\t 0.22744602 0.186511 0.22745001 0.198118 0.22744602 0.198118 0.22892898 0.198118 0.22892898\n\t\t 0.186511 0.228926 0.186511 0.22745001 0.17492101 0.22744697 0.186511 0.22745001 0.186511\n\t\t 0.228926 0.186511 0.228926 0.17492101 0.22892898 0.17492101 0.22744697 0.163351 0.227449\n\t\t 0.17492101 0.22744697 0.17492101 0.22892898 0.17492101 0.22892898 0.16335 0.22892702\n\t\t 0.163351 0.227449 0.15180101 0.227449 0.163351 0.227449 0.16335 0.22892702 0.16335\n\t\t 0.22892702 0.15180101 0.22892702 0.15180101 0.227449 0.14026199 0.22744799 0.15180101\n\t\t 0.227449 0.15180101 0.22892702 0.15180101 0.22892702 0.14026199 0.22892803 0.14026199\n\t\t 0.22744799 0.128668 0.22744602 0.14026199 0.22744799 0.14026199 0.22892803 0.14026199\n\t\t 0.22892803 0.128668 0.22893 0.128668 0.22744602 0.302461 0.22744602 0.31405601 0.22744501\n\t\t 0.31405601 0.22893101 0.31405601 0.22893101 0.302461 0.22893 0.302461 0.22744602\n\t\t 0.290921 0.227449 0.302461 0.22744602 0.302461 0.22893 0.302461 0.22893 0.29092199\n\t\t 0.22892702 0.290921 0.227449 0.27937299 0.22745001 0.290921 0.227449 0.29092199 0.22892702\n\t\t 0.29092199 0.22892702 0.27937299 0.22892499 0.27937299 0.22745001 0.26780301 0.22744697\n\t\t 0.27937299 0.22745001 0.27937299 0.22892499 0.27937299 0.22892499 0.26780301 0.22892898\n\t\t 0.26780301 0.22744697 0.256212 0.227449 0.26780301 0.22744697 0.26780301 0.22892898\n\t\t 0.26780301 0.22892898 0.256212 0.22892702 0.256212 0.227449 0.244605 0.227449 0.256212\n\t\t 0.227449 0.256212 0.22892702 0.256212 0.22892702 0.244605 0.22892702 0.244605 0.227449\n\t\t 0.232987 0.227449 0.244605 0.227449 0.244605 0.22892702 0.244605 0.22892702 0.232987\n\t\t 0.22892803 0.232987 0.227449 0.086597197 0.22152001 0.086597197 0.216254 0.098561697\n\t\t 0.21625501 0.098561697 0.21625501 0.098561697 0.22152901 0.086597197 0.22152001 0.098561697\n\t\t 0.22152901 0.098561697 0.21625501 0.110527 0.21625298 0.110527 0.21625298 0.110525\n\t\t 0.22151899 0.098561697 0.22152901 0.110525 0.22151899 0.110527 0.21625298 0.122492\n\t\t 0.21625698 0.122492 0.21625698 0.122492 0.221533 0.110525 0.22151899 0.122492 0.221533\n\t\t 0.122492 0.21625698 0.134461 0.21625102 0.134461 0.21625102 0.134461 0.22151703 0.122492\n\t\t 0.221533 0.134461 0.22151703 0.134461 0.21625102 0.14643499 0.21625698 0.14643499\n\t\t 0.21625698 0.14643499 0.221533 0.134461 0.22151703 0.14643499 0.221533 0.14643499\n\t\t 0.21625698 0.158415 0.21625298 0.158415 0.21625298 0.158417 0.22151798 0.14643499\n\t\t 0.221533 0.158417 0.22151798 0.158415 0.21625298 0.170404 0.21625298 0.170404 0.21625298\n\t\t 0.170404 0.22152197 0.158417 0.22151798 0.170404 0.22152197 0.170404 0.21625298 0.182428\n\t\t 0.21624202 0.182428 0.21624202 0.182363 0.22146797 0.170404 0.22152197 0.182363 0.22146797\n\t\t 0.182428 0.21624202 0.19467101 0.21634001 0.19467101 0.21634001 0.193859 0.22181499\n\t\t 0.182363 0.22146797 0.00326508 0.221811 0.0024532999 0.21633703 0.0146977 0.21623701\n\t\t 0.0146977 0.21623701 0.0147595 0.22146398 0.00326508 0.221811 0.0147595 0.22146398\n\t\t 0.0146977 0.21623701 0.0267208 0.21625602 0.0267208 0.21625602 0.026719199 0.22152603\n\t\t 0.0147595 0.22146398 0.026719199 0.22152603 0.0267208 0.21625602 0.038708199 0.21625203\n\t\t 0.038708199 0.21625203 0.0387077 0.22151798 0.026719199 0.22152603 0.0387077 0.22151798\n\t\t 0.038708199 0.21625203 0.0506882 0.21625698 0.0506882 0.21625698 0.050687701 0.22153401\n\t\t 0.0387077 0.22151798 0.050687701 0.22153401 0.0506882 0.21625698 0.062661298 0.21625298\n\t\t 0.062661298 0.21625298 0.062662899 0.22152001 0.050687701 0.22153401 0.062662899\n\t\t 0.22152001 0.062661298 0.21625298 0.074631102 0.21625501 0.074631102 0.21625501 0.074631602\n\t\t 0.22153002 0.062662899 0.22152001 0.074631602 0.22153002 0.074631102 0.21625501 0.086597197\n\t\t 0.216254 0.086597197 0.216254 0.086597197 0.22152001 0.074631602 0.22153002 0.110525\n\t\t 0.20331597 0.110527 0.208583 0.098561697 0.20858002 0.098561697 0.20858002 0.098561697\n\t\t 0.20330602 0.110525 0.20331597 0.098561697 0.20330602 0.098561697 0.20858002 0.086597197\n\t\t 0.20858198 0.086597197 0.20858198 0.086597197 0.20331502 0.098561697 0.20330602 0.086597197\n\t\t 0.20331502 0.086597197 0.20858198 0.074631102 0.20858002 0.074631102 0.20858002 0.074631102\n\t\t 0.20330602 0.086597197 0.20331502 0.074631102 0.20330602 0.074631102 0.20858002 0.062661298\n\t\t 0.208583 0.062661298 0.208583 0.062662899 0.20331699 0.074631102 0.20330602 0.062662899\n\t\t 0.20331699 0.062661298 0.208583 0.0506882 0.208579 0.0506882 0.208579 0.050687701\n\t\t 0.20330298 0.062662899 0.20331699 0.050687701 0.20330298 0.0506882 0.208579 0.038708799\n\t\t 0.20858502 0.038708799 0.20858502 0.038708199 0.20332003 0.050687701 0.20330298 0.038708199\n\t\t 0.20332003 0.038708799 0.20858502 0.026721301 0.208583;\n\tsetAttr \".uvst[0].uvsp[19500:19749]\" 0.026721301 0.208583 0.026721301 0.20331198\n\t\t 0.038708199 0.20332003 0.026721301 0.20331198 0.026721301 0.208583 0.0146993 0.20859802\n\t\t 0.0146993 0.20859802 0.0147685 0.20337403 0.026721301 0.20331198 0.0147685 0.20337403\n\t\t 0.0146993 0.20859802 0.0024500999 0.208462 0.0024500999 0.208462 0.00329386 0.20298398\n\t\t 0.0147685 0.20337403 0.193831 0.20298499 0.194675 0.20846403 0.182427 0.208597 0.182427\n\t\t 0.208597 0.182356 0.203372 0.193831 0.20298499 0.182356 0.203372 0.182427 0.208597\n\t\t 0.170404 0.20858598 0.170404 0.20858598 0.17040201 0.20331699 0.182356 0.203372 0.17040201\n\t\t 0.20331699 0.170404 0.20858598 0.158415 0.20858401 0.158415 0.20858401 0.158417 0.203318\n\t\t 0.17040201 0.20331699 0.158417 0.203318 0.158415 0.20858401 0.14643499 0.208579 0.14643499\n\t\t 0.208579 0.14643499 0.20330298 0.158417 0.203318 0.14643499 0.20330298 0.14643499\n\t\t 0.208579 0.134461 0.20858502 0.134461 0.20858502 0.134461 0.20331901 0.14643499 0.20330298\n\t\t 0.134461 0.20331901 0.134461 0.20858502 0.122492 0.208579 0.122492 0.208579 0.122492\n\t\t 0.20330298 0.134461 0.20331901 0.122492 0.20330298 0.122492 0.208579 0.110527 0.208583\n\t\t 0.110527 0.208583 0.110525 0.20331597 0.122492 0.20330298 0.232987 0.224594 0.232987\n\t\t 0.227449 0.22136199 0.227449 0.22136199 0.227449 0.22136199 0.22459197 0.232987 0.224594\n\t\t 0.22136199 0.22459197 0.22136199 0.227449 0.209737 0.227449 0.209737 0.227449 0.209737\n\t\t 0.22459501 0.22136199 0.22459197 0.209737 0.22459501 0.209737 0.227449 0.198118 0.22744602\n\t\t 0.198118 0.22744602 0.198118 0.22458798 0.209737 0.22459501 0.198118 0.22458798 0.198118\n\t\t 0.22744602 0.186511 0.22745001 0.186511 0.22745001 0.186511 0.22459698 0.198118 0.22458798\n\t\t 0.186511 0.22459698 0.186511 0.22745001 0.17492101 0.22744697 0.17492101 0.22744697\n\t\t 0.17492101 0.22458899 0.186511 0.22459698 0.17492101 0.22458899 0.17492101 0.22744697\n\t\t 0.163351 0.227449 0.163351 0.227449 0.163353 0.22459602 0.17492101 0.22458899 0.163353\n\t\t 0.22459602 0.163351 0.227449 0.15180101 0.227449 0.15180101 0.227449 0.151816 0.224594\n\t\t 0.163353 0.22459602 0.151816 0.224594 0.15180101 0.227449 0.14026199 0.22744799 0.14026199\n\t\t 0.22744799 0.14033499 0.22460097 0.151816 0.224594 0.14033499 0.22460097 0.14026199\n\t\t 0.22744799 0.128668 0.22744602 0.128668 0.22744602 0.12911899 0.22452998 0.14033499\n\t\t 0.22460097 0.313604 0.22452801 0.31405601 0.22744501 0.302461 0.22744602 0.302461\n\t\t 0.22744602 0.302387 0.224599 0.313604 0.22452801 0.302387 0.224599 0.302461 0.22744602\n\t\t 0.290921 0.227449 0.290921 0.227449 0.29090801 0.224594 0.302387 0.224599 0.29090801\n\t\t 0.224594 0.290921 0.227449 0.27937299 0.22745001 0.27937299 0.22745001 0.27937001\n\t\t 0.22459799 0.29090801 0.224594 0.27937001 0.22459799 0.27937299 0.22745001 0.26780301\n\t\t 0.22744697 0.26780301 0.22744697 0.267802 0.22458899 0.27937001 0.22459799 0.267802\n\t\t 0.22458899 0.26780301 0.22744697 0.256212 0.227449 0.256212 0.227449 0.256212 0.22459501\n\t\t 0.267802 0.22458899 0.256212 0.22459501 0.256212 0.227449 0.244605 0.227449 0.244605\n\t\t 0.227449 0.244605 0.22459197 0.256212 0.22459501 0.244605 0.22459197 0.244605 0.227449\n\t\t 0.232987 0.227449 0.232987 0.227449 0.232987 0.224594 0.244605 0.22459197 0.209737\n\t\t 0.23178101 0.209737 0.22892702 0.22136199 0.22892803 0.22136199 0.22892803 0.22136199\n\t\t 0.23178399 0.209737 0.23178101 0.22136199 0.23178399 0.22136199 0.22892803 0.232987\n\t\t 0.22892803 0.232987 0.22892803 0.232987 0.23178101 0.22136199 0.23178399 0.232987\n\t\t 0.23178101 0.232987 0.22892803 0.244605 0.22892702 0.244605 0.22892702 0.244605 0.23178399\n\t\t 0.232987 0.23178101 0.244605 0.23178399 0.244605 0.22892702 0.256212 0.22892702 0.256212\n\t\t 0.22892702 0.256212 0.23178101 0.244605 0.23178399 0.256212 0.23178101 0.256212 0.22892702\n\t\t 0.26780301 0.22892898 0.26780301 0.22892898 0.267802 0.23178703 0.256212 0.23178101\n\t\t 0.267802 0.23178703 0.26780301 0.22892898 0.27937299 0.22892499 0.27937299 0.22892499\n\t\t 0.27937001 0.23177701 0.267802 0.23178703 0.27937001 0.23177701 0.27937299 0.22892499\n\t\t 0.29092199 0.22892702 0.29092199 0.22892702 0.29090801 0.23178202 0.27937001 0.23177701\n\t\t 0.29090801 0.23178202 0.29092199 0.22892702 0.302461 0.22893 0.302461 0.22893 0.302387\n\t\t 0.23177701 0.29090801 0.23178202 0.302387 0.23177701 0.302461 0.22893 0.31405601\n\t\t 0.22893101 0.31405601 0.22893101 0.313604 0.231848 0.302387 0.23177701 0.12911899\n\t\t 0.23184502 0.128668 0.22893 0.14026199 0.22892803 0.14026199 0.22892803 0.14033499\n\t\t 0.23177397 0.12911899 0.23184502 0.14033499 0.23177397 0.14026199 0.22892803 0.15180101\n\t\t 0.22892702 0.15180101 0.22892702 0.151816 0.23178202 0.14033499 0.23177397 0.151816\n\t\t 0.23178202 0.15180101 0.22892702 0.16335 0.22892702 0.16335 0.22892702 0.163353 0.23177999\n\t\t 0.151816 0.23178202 0.163353 0.23177999 0.16335 0.22892702 0.17492101 0.22892898\n\t\t 0.17492101 0.22892898 0.17492101 0.23178703 0.163353 0.23177999 0.17492101 0.23178703\n\t\t 0.17492101 0.22892898 0.186511 0.228926 0.186511 0.228926 0.186511 0.23177898 0.17492101\n\t\t 0.23178703 0.186511 0.23177898 0.186511 0.228926 0.198118 0.22892898 0.198118 0.22892898\n\t\t 0.198118 0.23178703 0.186511 0.23177898 0.198118 0.23178703 0.198118 0.22892898 0.209737\n\t\t 0.22892702 0.209737 0.22892702 0.209737 0.23178101 0.198118 0.23178703 0.418639 0.25081301;\n\tsetAttr \".uvst[0].uvsp[19750:19999]\" 0.453949 0.26051003 0.418639 0.25081301 0.418639\n\t\t 0.25081301 0.87457502 0.52511597 0.87591499 0.49943298 0.87457502 0.52511597 0.87120402\n\t\t 0.524885 0.87255001 0.49920201 0.87120402 0.524885 0.95561397 0.523821 0.93144 0.93526089\n\t\t 0.97995901 0.96852767 0.98186898 0.9657619 0.98186898 0.9657619 0.933559 0.93219113\n\t\t 0.93144 0.93526089 0.96285701 0.38925499 0.96737099 0.38901299 0.96737099 0.38901299\n\t\t 0.93950802 0.56942999 0.95561397 0.523821 0.93950802 0.56942999 0.96737099 0.38901299\n\t\t 0.93679798 0.86629099 0.90270001 0.82978797 0.93679798 0.86629099 0.93879199 0.63484597\n\t\t 0.93919897 0.663715 0.94638002 0.634965 0.93879199 0.63484597 0.75510401 0.63684404\n\t\t 0.74780703 0.63702202 0.74780703 0.63702202 0.89993 0.29459298 0.89313501 0.29694402\n\t\t 0.89993 0.29459298 0.89993 0.29459298 0.89484501 0.47921401 0.90145099 0.482072 0.89484501\n\t\t 0.47921401 0.90145099 0.482072 0.90145099 0.482072 0.713144 0.63769001 0.71374798\n\t\t 0.66477501 0.713144 0.63769001 0.97899503 0.63575602 0.97854197 0.66280496 0.97899503\n\t\t 0.63575602 0.79917097 0.22345501 0.79998899 0.22942001 0.76521701 0.22993797 0.76521701\n\t\t 0.22993797 0.76552403 0.22414398 0.79917097 0.22345501 0.59643298 0.073408008 0.59228301\n\t\t 0.077978015 0.58820099 0.077753007 0.58820099 0.077753007 0.59236699 0.073225021\n\t\t 0.59643298 0.073408008 0.59228301 0.077978015 0.59643298 0.073408008 0.614142 0.073769987\n\t\t 0.614142 0.073769987 0.61131603 0.078086972 0.59228301 0.077978015 0.61131603 0.078086972\n\t\t 0.614142 0.073769987 0.63787001 0.073876977 0.63787001 0.073876977 0.63608402 0.077956021\n\t\t 0.61131603 0.078086972 0.63608402 0.077956021 0.63787001 0.073876977 0.662754 0.074087024\n\t\t 0.662754 0.074087024 0.66140199 0.078081012 0.63608402 0.077956021 0.66140199 0.078081012\n\t\t 0.662754 0.074087024 0.67734498 0.073954999 0.67734498 0.073954999 0.67580402 0.077915013\n\t\t 0.66140199 0.078081012 0.68922597 0.077736974 0.67580402 0.077915013 0.67734498 0.073954999\n\t\t 0.67734498 0.073954999 0.69101202 0.073750019 0.68922597 0.077736974 0.70624298 0.077570975\n\t\t 0.68922597 0.077736974 0.69101202 0.073750019 0.69101202 0.073750019 0.70830101 0.073530972\n\t\t 0.70624298 0.077570975 0.67631602 0.638919 0.67007202 0.63444901 0.68620801 0.625521\n\t\t 0.68620801 0.625521 0.69232899 0.630018 0.67631602 0.638919 0.67007202 0.63444901\n\t\t 0.67631602 0.638919 0.66369402 0.64589703 0.66369402 0.64589703 0.65735298 0.641388\n\t\t 0.67007202 0.63444901 0.66995001 0.650271 0.66369402 0.64589703 0.67631602 0.638919\n\t\t 0.67631602 0.638919 0.682307 0.64309299 0.66995001 0.650271 0.682307 0.64309299 0.67631602\n\t\t 0.638919 0.69232899 0.630018 0.69232899 0.630018 0.69797403 0.63401604 0.682307 0.64309299\n\t\t 0.65735298 0.641388 0.66369402 0.64589703 0.65011102 0.65320897 0.65011102 0.65320897\n\t\t 0.64371699 0.648296 0.65735298 0.641388 0.64371699 0.648296 0.65011102 0.65320897\n\t\t 0.62529498 0.66603303 0.62529498 0.66603303 0.61915702 0.65917897 0.64371699 0.648296\n\t\t 0.62529498 0.66603303 0.65011102 0.65320897 0.656506 0.65806299 0.656506 0.65806299\n\t\t 0.65011102 0.65320897 0.66369402 0.64589703 0.66369402 0.64589703 0.66995001 0.650271\n\t\t 0.656506 0.65806299 0.656506 0.65806299 0.63130599 0.672831 0.62529498 0.66603303\n\t\t 0.66956198 0.66739404 0.656506 0.65806299 0.66995001 0.650271 0.66995001 0.650271\n\t\t 0.68222499 0.65818799 0.66956198 0.66739404 0.68222499 0.65818799 0.66995001 0.650271\n\t\t 0.682307 0.64309299 0.682307 0.64309299 0.69328099 0.65002203 0.68222499 0.65818799\n\t\t 0.70725101 0.63980997 0.69328099 0.65002203 0.682307 0.64309299 0.682307 0.64309299\n\t\t 0.69797403 0.63401604 0.70725101 0.63980997 0.64299703 0.68624997 0.63130599 0.672831\n\t\t 0.656506 0.65806299 0.656506 0.65806299 0.66956198 0.66739404 0.64299703 0.68624997\n\t\t 0.61915702 0.65917897 0.62529498 0.66603303 0.59850103 0.67925096 0.59850103 0.67925096\n\t\t 0.62529498 0.66603303 0.63130599 0.672831 0.59850103 0.67925096 0.59509403 0.66888404\n\t\t 0.61915702 0.65917897 0.59509403 0.66888404 0.59850103 0.67925096 0.57347101 0.69117498\n\t\t 0.57347101 0.69117498 0.57689601 0.67566699 0.59509403 0.66888404 0.57689601 0.67566699\n\t\t 0.57347101 0.69117498 0.56349498 0.69449604 0.56349498 0.69449604 0.57327002 0.677212\n\t\t 0.57689601 0.67566699 0.57327002 0.677212 0.56349498 0.69449604 0.52742302 0.69070601\n\t\t 0.52742302 0.69070601 0.53289098 0.67330301 0.57327002 0.677212 0.51822299 0.71059799\n\t\t 0.52742302 0.69070601 0.56349498 0.69449604 0.56349498 0.69449604 0.54894203 0.71339703\n\t\t 0.51822299 0.71059799 0.57327002 0.677212 0.53289098 0.67330301 0.526443 0.64682698\n\t\t 0.526443 0.64682698 0.54606003 0.65132201 0.57327002 0.677212 0.526443 0.64682698\n\t\t 0.53289098 0.67330301 0.432547 0.646676 0.432547 0.646676 0.53289098 0.67330301 0.52742302\n\t\t 0.69070601 0.432547 0.646676 0.44482401 0.62784201 0.526443 0.64682698 0.49901801\n\t\t 0.75386298 0.51822299 0.71059799 0.54894203 0.71339703 0.54894203 0.71339703 0.53434098\n\t\t 0.751158 0.49901801 0.75386298 0.52742302 0.69070601 0.51822299 0.71059799 0.41583401\n\t\t 0.67382896 0.41583401 0.67382896 0.425928 0.65728599 0.52742302 0.69070601 0.52742302\n\t\t 0.69070601 0.425928 0.65728599 0.432547 0.646676 0.380007 0.73271298 0.41583401 0.67382896\n\t\t 0.51822299 0.71059799 0.51822299 0.71059799 0.49901801 0.75386298 0.380007 0.73271298\n\t\t 0.54894203 0.71339703 0.56349498 0.69449604 0.556346 0.71231902 0.556346 0.71231902\n\t\t 0.56349498 0.69449604 0.56264198 0.71034002 0.56264198 0.71034002 0.56349498 0.69449604\n\t\t 0.57347101 0.69117498 0.57347101 0.69117498 0.57049 0.706572 0.56264198 0.71034002\n\t\t 0.57049 0.706572;\n\tsetAttr \".uvst[0].uvsp[20000:20249]\" 0.57347101 0.69117498 0.59850103 0.67925096\n\t\t 0.59850103 0.67925096 0.60150498 0.68969703 0.57049 0.706572 0.56562299 0.73651898\n\t\t 0.57049 0.706572 0.60150498 0.68969703 0.60150498 0.68969703 0.60578501 0.71140301\n\t\t 0.56562299 0.73651898 0.63130599 0.672831 0.60150498 0.68969703 0.59850103 0.67925096\n\t\t 0.60578501 0.71140301 0.60150498 0.68969703 0.63130599 0.672831 0.63130599 0.672831\n\t\t 0.64299703 0.68624997 0.60578501 0.71140301 0.57049 0.706572 0.56562299 0.73651898\n\t\t 0.55434299 0.74310803 0.55434299 0.74310803 0.56264198 0.71034002 0.57049 0.706572\n\t\t 0.56264198 0.71034002 0.55434299 0.74310803 0.54469597 0.747648 0.54469597 0.747648\n\t\t 0.556346 0.71231902 0.56264198 0.71034002 0.54894203 0.71339703 0.556346 0.71231902\n\t\t 0.54469597 0.747648 0.54469597 0.747648 0.53434098 0.751158 0.54894203 0.71339703\n\t\t 0.64140898 0.25170302 0.64615101 0.25797302 0.63221002 0.25683099 0.63221002 0.25683099\n\t\t 0.62764102 0.25067502 0.64140898 0.25170302 0.64615101 0.25797302 0.64140898 0.25170302\n\t\t 0.65888703 0.25286299 0.65888703 0.25286299 0.66377699 0.25933701 0.64615101 0.25797302\n\t\t 0.62764102 0.25067502 0.63221002 0.25683099 0.61650598 0.25576103 0.61650598 0.25576103\n\t\t 0.61231202 0.249542 0.62764102 0.25067502 0.61231202 0.249542 0.61650598 0.25576103\n\t\t 0.58335501 0.25476801 0.58335501 0.25476801 0.58010697 0.248312 0.61231202 0.249542\n\t\t 0.58010697 0.248312 0.58335501 0.25476801 0.53682601 0.254646 0.53682601 0.254646\n\t\t 0.53567398 0.24812597 0.58010697 0.248312 0.53567398 0.24812597 0.53682601 0.254646\n\t\t 0.48738399 0.25638902 0.48738399 0.25638902 0.48852 0.249798 0.53567398 0.24812597\n\t\t 0.48852 0.249798 0.48738399 0.25638902 0.47456801 0.257541 0.47456801 0.257541 0.47547001\n\t\t 0.25088 0.48852 0.249798 0.47547001 0.25088 0.47456801 0.257541 0.46422401 0.25880599\n\t\t 0.46422401 0.25880599 0.46486399 0.25187999 0.47547001 0.25088 0.46486399 0.25187999\n\t\t 0.46422401 0.25880599 0.453949 0.26051003 0.453949 0.26051003 0.454014 0.25255799\n\t\t 0.46486399 0.25187999 0.75166702 0.13187802 0.74811 0.137793 0.70327199 0.13640702\n\t\t 0.70327199 0.13640702 0.70473802 0.13060898 0.75166702 0.13187802 0.70473802 0.13060898\n\t\t 0.70327199 0.13640702 0.66119099 0.136123 0.66119099 0.136123 0.66102499 0.12995398\n\t\t 0.70473802 0.13060898 0.66102499 0.12995398 0.66119099 0.136123 0.63119203 0.13646001\n\t\t 0.63119203 0.13646001 0.63003403 0.13010502 0.66102499 0.12995398 0.63003403 0.13010502\n\t\t 0.63119203 0.13646001 0.61696702 0.13663298 0.61696702 0.13663298 0.61599398 0.13125098\n\t\t 0.63003403 0.13010502 0.61599398 0.13125098 0.61696702 0.13663298 0.60427201 0.136751\n\t\t 0.60427201 0.136751 0.60373801 0.13366002 0.61599398 0.13125098 0.58820099 0.13687998\n\t\t 0.60373801 0.13366002 0.60427201 0.136751 0.74811 0.137793 0.75166702 0.13187802\n\t\t 0.76350099 0.13203901 0.76350099 0.13203901 0.75982398 0.13812798 0.74811 0.137793\n\t\t 0.75982398 0.13812798 0.76350099 0.13203901 0.77320403 0.13211298 0.77320403 0.13211298\n\t\t 0.76935297 0.13836998 0.75982398 0.13812798 0.76935297 0.13836998 0.77320403 0.13211298\n\t\t 0.78292 0.13215101 0.78292 0.13215101 0.77892601 0.13861299 0.76935297 0.13836998\n\t\t 0.76044399 0.16801298 0.74175 0.16837102 0.74243402 0.163055 0.74243402 0.163055\n\t\t 0.76223499 0.16247302 0.76044399 0.16801298 0.74243402 0.163055 0.74175 0.16837102\n\t\t 0.66422802 0.16950601 0.66422802 0.16950601 0.66591799 0.16388601 0.74243402 0.163055\n\t\t 0.55809802 0.17738003 0.55640399 0.17229801 0.634471 0.17242199 0.634471 0.17242199\n\t\t 0.63444901 0.17805803 0.55809802 0.17738003 0.63444901 0.17805803 0.634471 0.17242199\n\t\t 0.65476298 0.17011702 0.65476298 0.17011702 0.65422702 0.17840898 0.63444901 0.17805803\n\t\t 0.85089397 0.069225013 0.86917198 0.095513999 0.86369801 0.096234977 0.86369801 0.096234977\n\t\t 0.84262198 0.07000798 0.85089397 0.069225013 0.74149799 0.229366 0.73920101 0.22452497\n\t\t 0.74326199 0.22456002 0.74326199 0.22456002 0.745646 0.22953999 0.74149799 0.229366\n\t\t 0.73920101 0.22452497 0.74149799 0.229366 0.72206402 0.229029 0.72206402 0.229029\n\t\t 0.72153902 0.22469401 0.73920101 0.22452497 0.72153902 0.22469401 0.72206402 0.229029\n\t\t 0.69732499 0.22900701 0.69732499 0.22900701 0.697887 0.22485298 0.72153902 0.22469401\n\t\t 0.697887 0.22485298 0.69732499 0.22900701 0.67237902 0.22911 0.67237902 0.22911 0.67307299\n\t\t 0.224958 0.697887 0.22485298 0.67307299 0.224958 0.67237902 0.22911 0.65788603 0.22906703\n\t\t 0.65788603 0.22906703 0.65854102 0.22490901 0.67307299 0.224958 0.65854102 0.22490901\n\t\t 0.65788603 0.22906703 0.644238 0.22899002 0.644238 0.22899002 0.64488298 0.22482997\n\t\t 0.65854102 0.22490901 0.64488298 0.22482997 0.644238 0.22899002 0.62695003 0.22891599\n\t\t 0.62695003 0.22891599 0.62759203 0.224756 0.64488298 0.22482997 0.54129499 0.182661\n\t\t 0.54389 0.18800199 0.53854901 0.18756598 0.56196803 0.18176502 0.54389 0.18800199\n\t\t 0.54129499 0.182661 0.56196803 0.18176502 0.55616999 0.185987 0.54389 0.18800199\n\t\t 0.55616999 0.185987 0.54664803 0.18823302 0.54389 0.18800199 0.55616999 0.185987\n\t\t 0.56196803 0.18176502 0.57347 0.18167198 0.57347 0.18167198 0.57795298 0.18550599\n\t\t 0.55616999 0.185987 0.605582 0.18562597 0.57795298 0.18550599 0.57347 0.18167198\n\t\t 0.57347 0.18167198 0.59130901 0.18213803 0.605582 0.18562597 0.65476298 0.18501401\n\t\t 0.605582 0.18562597 0.59130901 0.18213803 0.41735399 0.25736398 0.418639 0.25081301\n\t\t 0.454014 0.25255799 0.454014 0.25255799 0.453949 0.26051003 0.41735399 0.25736398\n\t\t 0.418639 0.25081301 0.41735399 0.25736398;\n\tsetAttr \".uvst[0].uvsp[20250:20499]\" 0.295825 0.25730002 0.295825 0.25730002 0.296478\n\t\t 0.25040001 0.418639 0.25081301 0.91876698 0.51378798 0.91174501 0.53756404 0.87457502\n\t\t 0.52511597 0.87457502 0.52511597 0.87591499 0.49943298 0.91876698 0.51378798 0.87255001\n\t\t 0.49920201 0.87591499 0.49943298 0.87457502 0.52511597 0.87457502 0.52511597 0.87120402\n\t\t 0.524885 0.87255001 0.49920201 0.87255001 0.49920201 0.87120402 0.524885 0.83272499\n\t\t 0.53235996 0.83272499 0.53235996 0.828188 0.50782204 0.87255001 0.49920201 0.95607698\n\t\t 0.86144501 0.99750799 0.92335349 0.98186898 0.9657619 0.98186898 0.9657619 0.933559\n\t\t 0.93219113 0.95607698 0.86144501 0.93144 0.93526089 0.97995901 0.96852767 0.94585198\n\t\t 0.99818861 0.94585198 0.99818861 0.87327498 0.98140359 0.93144 0.93526089 0.93950802\n\t\t 0.56942999 0.95561397 0.523821 0.99484497 0.58304101 0.99484497 0.58304101 0.98769498\n\t\t 0.60434496 0.93950802 0.56942999 0.98769498 0.60434496 0.99484497 0.58304101 0.99997598\n\t\t 0.58305597 0.99997598 0.58305597 0.99193799 0.60674703 0.98769498 0.60434496 0.95716\n\t\t 0.52035999 0.99997598 0.58305597 0.99484497 0.58304101 0.99484497 0.58304101 0.95561397\n\t\t 0.523821 0.95716 0.52035999 0.93679798 0.86629099 0.90663397 0.91656268 0.89121401\n\t\t 0.90019852 0.89121401 0.90019852 0.90270001 0.82978797 0.93679798 0.86629099 0.89121401\n\t\t 0.90019852 0.90663397 0.91656268 0.90372002 0.92042542 0.90372002 0.92042542 0.88655299\n\t\t 0.9023127 0.89121401 0.90019852 0.90270001 0.82978797 0.89121401 0.90019852 0.88655299\n\t\t 0.9023127 0.88655299 0.9023127 0.90001798 0.82725704 0.90270001 0.82978797 0.93144\n\t\t 0.93526089 0.933559 0.93219113 0.98186898 0.9657619 0.98186898 0.9657619 0.97995901\n\t\t 0.96852767 0.93144 0.93526089 0.968023 0.39150399 0.94847602 0.45217401 0.94391799\n\t\t 0.44914198 0.94391799 0.44914198 0.96340197 0.39137101 0.968023 0.39150399 0.968023\n\t\t 0.39150399 0.96340197 0.39137101 0.96285701 0.38925499 0.96285701 0.38925499 0.96737099\n\t\t 0.38901299 0.968023 0.39150399 0.96737099 0.38901299 0.96285701 0.38925499 0.94170398\n\t\t 0.33152503 0.94170398 0.33152503 0.94628203 0.32827401 0.96737099 0.38901299 0.94391799\n\t\t 0.44914198 0.94847602 0.45217401 0.945517 0.45705801 0.945517 0.45705801 0.94068903\n\t\t 0.45435297 0.94391799 0.44914198 0.94628203 0.32827401 0.94170398 0.33152503 0.93685102\n\t\t 0.325697 0.93685102 0.325697 0.94178498 0.32300299 0.94628203 0.32827401 0.93950802\n\t\t 0.56942999 0.92992401 0.56890899 0.95028901 0.52485502 0.95028901 0.52485502 0.95561397\n\t\t 0.523821 0.93950802 0.56942999 0.90263999 0.55253601 0.95028901 0.52485502 0.92992401\n\t\t 0.56890899 0.92992401 0.56890899 0.89038599 0.573493 0.90263999 0.55253601 0.57262999\n\t\t 0.016678989 0.57298601 0.0089100003 0.59571999 0.040400982 0.59571999 0.040400982\n\t\t 0.58625698 0.045177996 0.57262999 0.016678989 0.58625698 0.045177996 0.59571999 0.040400982\n\t\t 0.57328099 0.095956981 0.57328099 0.095956981 0.57252699 0.085245013 0.58625698 0.045177996\n\t\t 0.57252699 0.085245013 0.57328099 0.095956981 0.57100803 0.097431004 0.57100803 0.097431004\n\t\t 0.56153601 0.092374027 0.57252699 0.085245013 0.56153601 0.092374027 0.57100803 0.097431004\n\t\t 0.51354402 0.096643984 0.51354402 0.096643984 0.51936197 0.088567019 0.56153601 0.092374027\n\t\t 0.51936197 0.088567019 0.51354402 0.096643984 0.491676 0.061649024 0.491676 0.061649024\n\t\t 0.49891201 0.064493001 0.51936197 0.088567019 0.57298601 0.0089100003 0.57262999\n\t\t 0.016678989 0.56008899 0.011471987 0.56008899 0.011471987 0.56788898 0.0066490173\n\t\t 0.57298601 0.0089100003 0.56788898 0.0066490173 0.56008899 0.011471987 0.52707702\n\t\t 0.014357984 0.52707702 0.014357984 0.51941502 0.011000991 0.56788898 0.0066490173\n\t\t 0.51941502 0.011000991 0.52707702 0.014357984 0.51564002 0.021670997 0.51564002 0.021670997\n\t\t 0.51556599 0.013356984 0.51941502 0.011000991 0.51556599 0.013356984 0.51564002 0.021670997\n\t\t 0.49929199 0.050888002 0.49929199 0.050888002 0.49169201 0.05607301 0.51556599 0.013356984\n\t\t 0.49169201 0.05607301 0.49929199 0.050888002 0.49891201 0.064493001 0.49891201 0.064493001\n\t\t 0.491676 0.061649024 0.49169201 0.05607301 0.90145099 0.482072 0.89484501 0.47921401\n\t\t 0.94068903 0.45435297 0.94068903 0.45435297 0.945517 0.45705801 0.90145099 0.482072\n\t\t 0.968023 0.39150399 0.99651802 0.39833802 0.983136 0.493855 0.983136 0.493855 0.94847602\n\t\t 0.45217401 0.968023 0.39150399 0.94178498 0.32300299 0.93685102 0.325697 0.89313501\n\t\t 0.29694402 0.89313501 0.29694402 0.89993 0.29459298 0.94178498 0.32300299 0.94628203\n\t\t 0.32827401 0.98119998 0.28647 0.995655 0.38164502 0.995655 0.38164502 0.96737099\n\t\t 0.38901299 0.94628203 0.32827401 0.94178498 0.32300299 0.97601098 0.27985299 0.98119998\n\t\t 0.28647 0.98119998 0.28647 0.94628203 0.32827401 0.94178498 0.32300299 0.93679798\n\t\t 0.86629099 0.90270001 0.82978797 0.90797597 0.82834399 0.90797597 0.82834399 0.94566399\n\t\t 0.86104202 0.93679798 0.86629099 0.94566399 0.86104202 0.90797597 0.82834399 0.96416003\n\t\t 0.83061898 0.96416003 0.83061898 0.98466402 0.844006 0.94566399 0.86104202 0.945517\n\t\t 0.45705801 0.975797 0.50287801 0.94742298 0.51834404 0.94742298 0.51834404 0.90145099\n\t\t 0.482072 0.945517 0.45705801 0.94690001 0.26092398 0.97569197 0.27962101 0.94178498\n\t\t 0.32300299 0.94178498 0.32300299 0.89993 0.29459298 0.94690001 0.26092398 0.99580902\n\t\t 0.38409197 0.99666399 0.397901 0.968023 0.39150399 0.968023 0.39150399 0.96737099\n\t\t 0.38901299 0.99580902 0.38409197 0.94638002 0.634965 0.97899503 0.63575602 0.97854197\n\t\t 0.66280496 0.97854197 0.66280496 0.94590098 0.66230404 0.94638002 0.634965 0.713144\n\t\t 0.63769001 0.74780703 0.63702202 0.74840701 0.66432297 0.74840701 0.66432297 0.71374798\n\t\t 0.66477501 0.713144 0.63769001;\n\tsetAttr \".uvst[0].uvsp[20500:20749]\" 0.93879199 0.63484597 0.93919897 0.663715\n\t\t 0.850357 0.69917703 0.850357 0.69917703 0.85017997 0.63522398 0.93879199 0.63484597\n\t\t 0.85017997 0.63522398 0.850357 0.69917703 0.84495997 0.69935 0.84495997 0.69935 0.8441\n\t\t 0.635364 0.85017997 0.63522398 0.8441 0.635364 0.84495997 0.69935 0.75519001 0.66571999\n\t\t 0.75519001 0.66571999 0.75510401 0.63684404 0.8441 0.635364 0.93919897 0.663715 0.93879199\n\t\t 0.63484597 0.94638002 0.634965 0.94638002 0.634965 0.94590098 0.66230404 0.93919897\n\t\t 0.663715 0.75510401 0.63684404 0.75519001 0.66571999 0.74840701 0.66432297 0.74840701\n\t\t 0.66432297 0.74780703 0.63702202 0.75510401 0.63684404 0.94847602 0.45217401 0.98284\n\t\t 0.49427998 0.97648501 0.50235903 0.97648501 0.50235903 0.945517 0.45705801 0.94847602\n\t\t 0.45217401 0.89428198 0.293244 0.899225 0.29098201 0.89993 0.29459298 0.89993 0.29459298\n\t\t 0.89313501 0.29694402 0.89428198 0.293244 0.89484501 0.47921401 0.90145099 0.482072\n\t\t 0.90039098 0.48557299 0.90039098 0.48557299 0.89560997 0.48290199 0.89484501 0.47921401\n\t\t 0.899225 0.29098201 0.942693 0.25799102 0.94666499 0.26060402 0.94666499 0.26060402\n\t\t 0.89993 0.29459298 0.899225 0.29098201 0.70917797 0.66396701 0.70890403 0.63958699\n\t\t 0.713144 0.63769001 0.713144 0.63769001 0.71374798 0.66477501 0.70917797 0.66396701\n\t\t 0.90145099 0.482072 0.94716603 0.51865 0.94302601 0.52097702 0.94302601 0.52097702\n\t\t 0.90039098 0.48557299 0.90145099 0.482072 0.983347 0.637523 0.98322397 0.66202402\n\t\t 0.97854197 0.66280496 0.97854197 0.66280496 0.97899503 0.63575602 0.983347 0.637523\n\t\t 0.943088 0.80326998 0.98661298 0.765212 0.943088 0.80326998 0.66681999 0.51896 0.60520202\n\t\t 0.51918399 0.60520202 0.51918399 0.81755197 0.51442701 0.75660598 0.51488996 0.75660598\n\t\t 0.51488996 0.76094598 0.53412497 0.81875098 0.53460503 0.76094598 0.53412497 0.79016602\n\t\t 0.719944 0.729523 0.69159198 0.79016602 0.719944 0.82636201 0.54592097 0.89328003\n\t\t 0.54617596 0.82636201 0.54592097 0.66427797 0.52162302 0.60635197 0.52252698 0.60635197\n\t\t 0.52252698 0.81643599 0.51778102 0.75920802 0.51754904 0.75920802 0.51754904 0.943088\n\t\t 0.80326998 0.98661298 0.765212 0.99494499 0.77966797 0.99494499 0.77966797 0.95142102\n\t\t 0.81833696 0.943088 0.80326998 0.98200703 0.76066399 0.98661298 0.765212 0.943088\n\t\t 0.80326998 0.943088 0.80326998 0.93848199 0.79872102 0.98200703 0.76066399 0.95427603\n\t\t 0.82066202 0.95142102 0.81833696 0.99494499 0.77966797 0.99494499 0.77966797 0.99626201\n\t\t 0.78340399 0.95427603 0.82066202 0.60503203 0.50786799 0.67951399 0.50732899 0.66681999\n\t\t 0.51896 0.66681999 0.51896 0.60520202 0.51918399 0.60503203 0.50786799 0.68039298\n\t\t 0.50091499 0.67951399 0.50732899 0.60503203 0.50786799 0.60503203 0.50786799 0.60575801\n\t\t 0.50078297 0.68039298 0.50091499 0.60520202 0.51918399 0.66681999 0.51896 0.66427797\n\t\t 0.52162302 0.66427797 0.52162302 0.60635197 0.52252698 0.60520202 0.51918399 0.74324399\n\t\t 0.50339997 0.817586 0.50310397 0.81755197 0.51442701 0.81755197 0.51442701 0.75660598\n\t\t 0.51488996 0.74324399 0.50339997 0.81668597 0.496041 0.817586 0.50310397 0.74324399\n\t\t 0.50339997 0.74324399 0.50339997 0.74218601 0.497015 0.81668597 0.496041 0.75660598\n\t\t 0.51488996 0.81755197 0.51442701 0.81643599 0.51778102 0.81643599 0.51778102 0.75920802\n\t\t 0.51754904 0.75660598 0.51488996 0.76094598 0.53412497 0.81875098 0.53460503 0.82226098\n\t\t 0.55187601 0.82226098 0.55187601 0.76408398 0.55051303 0.76094598 0.53412497 0.81928402\n\t\t 0.52815402 0.81875098 0.53460503 0.76094598 0.53412497 0.76094598 0.53412497 0.76147902\n\t\t 0.52767396 0.81928402 0.52815402 0.765513 0.55420399 0.76408398 0.55051303 0.82226098\n\t\t 0.55187601 0.82226098 0.55187601 0.82163203 0.55554599 0.765513 0.55420399 0.73831302\n\t\t 0.67871904 0.78769702 0.703439 0.79016602 0.719944 0.79016602 0.719944 0.729523 0.69159198\n\t\t 0.73831302 0.67871904 0.72814697 0.697918 0.729523 0.69159198 0.79016602 0.719944\n\t\t 0.79016602 0.719944 0.788791 0.72626996 0.72814697 0.697918 0.78769702 0.703439 0.73831302\n\t\t 0.67871904 0.74075502 0.67601204 0.74075502 0.67601204 0.78718299 0.69951999 0.78769702\n\t\t 0.703439 0.88400298 0.56004703 0.82879299 0.56131804 0.82636201 0.54592097 0.82636201\n\t\t 0.54592097 0.89328003 0.54617596 0.88400298 0.56004703 0.894849 0.539895 0.89328003\n\t\t 0.54617596 0.82636201 0.54592097 0.82636201 0.54592097 0.827932 0.53964102 0.894849\n\t\t 0.539895 0.82984698 0.56480896 0.82879299 0.56131804 0.88400298 0.56004703 0.88400298\n\t\t 0.56004703 0.88183999 0.563353 0.82984698 0.56480896 0.81728101 0.562841 0.76959598\n\t\t 0.56167102 0.765513 0.55420399 0.765513 0.55420399 0.82163203 0.55554599 0.81728101\n\t\t 0.562841 0.877675 0.57077396 0.83364999 0.57187599 0.82984698 0.56480896 0.82984698\n\t\t 0.56480896 0.88183999 0.563353 0.877675 0.57077396 0.74721301 0.67124903 0.78669101\n\t\t 0.69115698 0.78718299 0.69951999 0.78718299 0.69951999 0.74075502 0.67601204 0.74721301\n\t\t 0.67124903 0.99796802 0.79160702 0.96219099 0.82318997 0.95427603 0.82066202 0.95427603\n\t\t 0.82066202 0.99626201 0.78340399 0.99796802 0.79160702 0.66031599 0.52892101 0.610973\n\t\t 0.52970201 0.60635197 0.52252698 0.60635197 0.52252698 0.66427797 0.52162302 0.66031599\n\t\t 0.52892101 0.81188798 0.52499801 0.76333302 0.52496898 0.75920802 0.51754904 0.75920802\n\t\t 0.51754904 0.81643599 0.51778102 0.81188798 0.52499801 0.30440399 0.96377498 0.34588099\n\t\t 0.96532512 0.34588099 0.96532512 0.201428 0.33253402 0.211622 0.33239901 0.211622\n\t\t 0.33239901 0.201428 0.33253402 0.201428 0.33253402 0.18189 0.332151 0.18189 0.332151;\n\tsetAttr \".uvst[0].uvsp[20750:20999]\" 0.18189 0.332151 0.171069 0.33231199 0.18189\n\t\t 0.332151 0.683604 0.31071001 0.60754102 0.30937397 0.60754102 0.30937397 0.55400598\n\t\t 0.10601002 0.52312797 0.10667801 0.55400598 0.10601002 0.55400598 0.10601002 0.55400598\n\t\t 0.10601002 0.56345898 0.10579503 0.40402001 0.38401198 0.393516 0.38139802 0.40402001\n\t\t 0.38401198 0.41398001 0.38720399 0.40402001 0.38401198 0.41398001 0.38720399 0.41398001\n\t\t 0.38720399 0.41398001 0.38720399 0.42636099 0.38121003 0.41398001 0.38720399 0.42636099\n\t\t 0.38121003 0.393516 0.38139802 0.40498099 0.37655902 0.393516 0.38139802 0.39135301\n\t\t 0.38265502 0.393516 0.38139802 0.38560301 0.37963599 0.38560301 0.37963599 0.39135301\n\t\t 0.38265502 0.75587898 0.253685 0.76320899 0.25379097 0.76320899 0.25379097 0.76320899\n\t\t 0.25379097 0.77171099 0.25350702 0.77171099 0.25350702 0.53229398 0.14460999 0.53229398\n\t\t 0.14460999 0.54526901 0.14544201 0.53229398 0.14460999 0.54526901 0.14544201 0.66070402\n\t\t 0.19453698 0.67327797 0.19450903 0.67327797 0.19450903 0.83086503 0.13426203 0.79403502\n\t\t 0.13313198 0.83086503 0.13426203 0.61829102 0.23329002 0.61433297 0.233024 0.61829102\n\t\t 0.23329002 0.61433297 0.233024 0.61433297 0.233024 0.60712498 0.23254198 0.53851199\n\t\t 0.23220599 0.52767402 0.23348802 0.53851199 0.23220599 0.556104 0.23083502 0.53851199\n\t\t 0.23220599 0.52767402 0.23348802 0.52767402 0.23348802 0.52012902 0.23489302 0.57581699\n\t\t 0.23046601 0.556104 0.23083502 0.556104 0.23083502 0.57581699 0.23046601 0.59342599\n\t\t 0.23160702 0.57581699 0.23046601 0.59342599 0.23160702 0.60712498 0.23254198 0.59342599\n\t\t 0.23160702 0.60712498 0.23254198 0.69483 0.31716001 0.69240701 0.317231 0.69483 0.31716001\n\t\t 0.74895298 0.19059801 0.74894798 0.19835901 0.74894798 0.19835901 0.89637703 0.40627301\n\t\t 0.902192 0.40642399 0.88349003 0.436764 0.88349003 0.436764 0.87688398 0.43789399\n\t\t 0.89637703 0.40627301 0.90371901 0.33002102 0.902192 0.40642399 0.89637703 0.40627301\n\t\t 0.89637703 0.40627301 0.89757401 0.329009 0.90371901 0.33002102 0.30174699 0.976376\n\t\t 0.30440399 0.96377498 0.34588099 0.96532512 0.34588099 0.96532512 0.34292001 0.97852588\n\t\t 0.30174699 0.976376 0.34588099 0.96532512 0.30440399 0.96377498 0.30314401 0.96038252\n\t\t 0.30314401 0.96038252 0.34488001 0.96196932 0.34588099 0.96532512 0.91665202 0.32239801\n\t\t 0.91588598 0.33377898 0.91015399 0.33258897 0.91015399 0.33258897 0.91028899 0.32029301\n\t\t 0.91665202 0.32239801 0.91015399 0.33258897 0.91588598 0.33377898 0.91457403 0.35557902\n\t\t 0.91457403 0.35557902 0.90960801 0.35588503 0.91015399 0.33258897 0.90960801 0.35588503\n\t\t 0.91457403 0.35557902 0.91404903 0.36761701 0.91404903 0.36761701 0.90933299 0.36936599\n\t\t 0.90960801 0.35588503 0.90933299 0.36936599 0.91404903 0.36761701 0.91394401 0.383102\n\t\t 0.91394401 0.383102 0.9091 0.38453501 0.90933299 0.36936599 0.9091 0.38453501 0.91394401\n\t\t 0.383102 0.91378498 0.39772499 0.91378498 0.39772499 0.90898299 0.39741999 0.9091\n\t\t 0.38453501 0.90918398 0.41151202 0.90898299 0.39741999 0.91378498 0.39772499 0.91378498\n\t\t 0.39772499 0.91399199 0.40990198 0.90918398 0.41151202 0.90918398 0.41151202 0.91399199\n\t\t 0.40990198 0.91476601 0.44443798 0.91476601 0.44443798 0.910043 0.44637299 0.90918398\n\t\t 0.41151202 0.91904002 0.38425702 0.91394401 0.383102 0.91404903 0.36761701 0.91404903\n\t\t 0.36761701 0.918441 0.37413198 0.91904002 0.38425702 0.91394401 0.383102 0.91904002\n\t\t 0.38425702 0.918365 0.39398599 0.918365 0.39398599 0.91378498 0.39772499 0.91394401\n\t\t 0.383102 0.201428 0.33253402 0.211622 0.33239901 0.204916 0.33999699 0.204916 0.33999699\n\t\t 0.19585501 0.33937001 0.201428 0.33253402 0.211622 0.33239901 0.201428 0.33253402\n\t\t 0.20290001 0.33029401 0.20290001 0.33029401 0.213241 0.33008897 0.211622 0.33239901\n\t\t 0.18309399 0.330028 0.20290001 0.33029401 0.201428 0.33253402 0.201428 0.33253402\n\t\t 0.18189 0.332151 0.18309399 0.330028 0.18189 0.332151 0.201428 0.33253402 0.19585501\n\t\t 0.33937001 0.18309399 0.330028 0.18189 0.332151 0.171069 0.33231199 0.171069 0.33231199\n\t\t 0.17215499 0.33018601 0.18309399 0.330028 0.19585501 0.33937001 0.17492899 0.33948499\n\t\t 0.18189 0.332151 0.162683 0.33984101 0.171069 0.33231199 0.18189 0.332151 0.18189\n\t\t 0.332151 0.17492899 0.33948499 0.162683 0.33984101 0.61050302 0.29968601 0.68678898\n\t\t 0.29949999 0.683604 0.31071001 0.683604 0.31071001 0.60754102 0.30937397 0.61050302\n\t\t 0.29968601 0.60754102 0.30937397 0.683604 0.31071001 0.68317598 0.31367898 0.68317598\n\t\t 0.31367898 0.60673499 0.31228 0.60754102 0.30937397 0.52381599 0.10433602 0.555237\n\t\t 0.10390598 0.55400598 0.10601002 0.55400598 0.10601002 0.52312797 0.10667801 0.52381599\n\t\t 0.10433602 0.51870799 0.11390197 0.52312797 0.10667801 0.55400598 0.10601002 0.55400598\n\t\t 0.10601002 0.54760301 0.11408001 0.51870799 0.11390197 0.55331898 0.11419201 0.54760301\n\t\t 0.11408001 0.55400598 0.10601002 0.55400598 0.10601002 0.56345898 0.10579503 0.55331898\n\t\t 0.11419201 0.55400598 0.10601002 0.555237 0.10390598 0.56631702 0.10379601 0.56631702\n\t\t 0.10379601 0.56345898 0.10579503 0.55400598 0.10601002 0.42636099 0.38121003 0.41398001\n\t\t 0.38720399 0.40402001 0.38401198 0.40402001 0.38401198 0.415912 0.37846297 0.42636099\n\t\t 0.38121003 0.415912 0.37846297 0.40402001 0.38401198 0.393516 0.38139802 0.393516\n\t\t 0.38139802 0.40498099 0.37655902 0.415912 0.37846297 0.39135301 0.38265502 0.393516\n\t\t 0.38139802 0.40402001 0.38401198 0.40402001 0.38401198 0.40135899 0.38540697 0.39135301\n\t\t 0.38265502 0.40135899 0.38540697 0.40402001 0.38401198 0.41398001 0.38720399 0.41398001\n\t\t 0.38720399;\n\tsetAttr \".uvst[0].uvsp[21000:21249]\" 0.41072899 0.38871801 0.40135899 0.38540697\n\t\t 0.41389799 0.39401001 0.41072899 0.38871801 0.41398001 0.38720399 0.41398001 0.38720399\n\t\t 0.41738901 0.392241 0.41389799 0.39401001 0.41738901 0.392241 0.41398001 0.38720399\n\t\t 0.42636099 0.38121003 0.42636099 0.38121003 0.43087101 0.385831 0.41738901 0.392241\n\t\t 0.39716601 0.37451398 0.40498099 0.37655902 0.393516 0.38139802 0.393516 0.38139802\n\t\t 0.38560301 0.37963599 0.39716601 0.37451398 0.38560301 0.37963599 0.393516 0.38139802\n\t\t 0.39135301 0.38265502 0.39135301 0.38265502 0.38317099 0.380211 0.38560301 0.37963599\n\t\t 0.85397899 0.28908199 0.85341001 0.32266098 0.85031903 0.32228702 0.85031903 0.32228702\n\t\t 0.850676 0.28865802 0.85397899 0.28908199 0.92834198 0.41460299 0.927953 0.40186298\n\t\t 0.93007898 0.403458 0.93007898 0.403458 0.93060499 0.416215 0.92834198 0.41460299\n\t\t 0.92834198 0.41460299 0.93060499 0.416215 0.93093503 0.43923301 0.93093503 0.43923301\n\t\t 0.9285 0.43728501 0.92834198 0.41460299 0.92965698 0.38948298 0.93007898 0.403458\n\t\t 0.927953 0.40186298 0.927953 0.40186298 0.92768902 0.38782197 0.92965698 0.38948298\n\t\t 0.92981499 0.37776297 0.92965698 0.38948298 0.92768902 0.38782197 0.92768902 0.38782197\n\t\t 0.92802203 0.37598199 0.92981499 0.37776297 0.92798698 0.44937801 0.9285 0.43728501\n\t\t 0.93093503 0.43923301 0.93093503 0.43923301 0.93051302 0.45155197 0.92798698 0.44937801\n\t\t 0.93013698 0.36491501 0.92981499 0.37776297 0.92802203 0.37598199 0.92802203 0.37598199\n\t\t 0.92843097 0.36309701 0.93013698 0.36491501 0.93013698 0.36491501 0.92843097 0.36309701\n\t\t 0.92765701 0.33131099 0.92765701 0.33131099 0.92933398 0.33305699 0.93013698 0.36491501\n\t\t 0.69648302 0.024065971 0.74039698 0.024262011 0.74782097 0.027042985 0.74782097 0.027042985\n\t\t 0.69580901 0.026498973 0.69648302 0.024065971 0.75479102 0.02708602 0.74782097 0.027042985\n\t\t 0.74039698 0.024262011 0.74039698 0.024262011 0.74997801 0.024507999 0.75479102 0.02708602\n\t\t 0.75955403 0.027218997 0.75479102 0.02708602 0.74997801 0.024507999 0.74997801 0.024507999\n\t\t 0.75872099 0.024715006 0.75955403 0.027218997 0.76668102 0.027468979 0.75955403 0.027218997\n\t\t 0.75872099 0.024715006 0.75872099 0.024715006 0.76719803 0.024900973 0.76668102 0.027468979\n\t\t 0.76668102 0.027468979 0.76719803 0.024900973 0.77556002 0.025008976 0.77556002 0.025008976\n\t\t 0.77509099 0.027997017 0.76668102 0.027468979 0.84137797 0.12173599 0.83831 0.12312198\n\t\t 0.81756401 0.096482992 0.81756401 0.096482992 0.82086098 0.094991982 0.84137797 0.12173599\n\t\t 0.619757 0.19606298 0.60738403 0.19566 0.60968399 0.19304502 0.60968399 0.19304502\n\t\t 0.62209201 0.19341201 0.619757 0.19606298 0.619757 0.19606298 0.62209201 0.19341201\n\t\t 0.64348602 0.19375402 0.64348602 0.19375402 0.64118701 0.19652998 0.619757 0.19606298\n\t\t 0.59577602 0.19405699 0.60968399 0.19304502 0.60738403 0.19566 0.60738403 0.19566\n\t\t 0.59346098 0.19656801 0.59577602 0.19405699 0.58411503 0.19410902 0.59577602 0.19405699\n\t\t 0.59346098 0.19656801 0.59346098 0.19656801 0.58143002 0.19608498 0.58411503 0.19410902\n\t\t 0.652439 0.19737703 0.64118701 0.19652998 0.64348602 0.19375402 0.64348602 0.19375402\n\t\t 0.65476298 0.19455701 0.652439 0.19737703 0.57139403 0.19149601 0.58411503 0.19410902\n\t\t 0.58143002 0.19608498 0.58143002 0.19608498 0.56876999 0.19347501 0.57139403 0.19149601\n\t\t 0.57139403 0.19149601 0.56876999 0.19347501 0.53717101 0.19781297 0.53717101 0.19781297\n\t\t 0.539442 0.19550401 0.57139403 0.19149601 0.86774701 0.31599998 0.87083 0.31202298\n\t\t 0.87375301 0.38231498 0.87375301 0.38231498 0.870462 0.38158798 0.86774701 0.31599998\n\t\t 0.87080097 0.30857402 0.87083 0.31202298 0.86774701 0.31599998 0.86774701 0.31599998\n\t\t 0.86752403 0.30793798 0.87080097 0.30857402 0.87080097 0.30857402 0.86752403 0.30793798\n\t\t 0.867562 0.30299997 0.867562 0.30299997 0.87084401 0.30513102 0.87080097 0.30857402\n\t\t 0.873851 0.30920202 0.87080097 0.30857402 0.87084401 0.30513102 0.87084401 0.30513102\n\t\t 0.87383997 0.30535501 0.873851 0.30920202 0.87389898 0.31305099 0.87083 0.31202298\n\t\t 0.87080097 0.30857402 0.87080097 0.30857402 0.873851 0.30920202 0.87389898 0.31305099\n\t\t 0.87105697 0.29557198 0.87084401 0.30513102 0.867562 0.30299997 0.867562 0.30299997\n\t\t 0.86768597 0.29499698 0.87105697 0.29557198 0.87105697 0.29557198 0.86768597 0.29499698\n\t\t 0.867845 0.28545499 0.867845 0.28545499 0.87122297 0.28602302 0.87105697 0.29557198\n\t\t 0.57187003 0.13755602 0.56818497 0.13786101 0.56820798 0.13516301 0.56820798 0.13516301\n\t\t 0.57241702 0.13519901 0.57187003 0.13755602 0.686445 0.19859898 0.687828 0.202016\n\t\t 0.65756702 0.21166098 0.65756702 0.21166098 0.65617698 0.208233 0.686445 0.19859898\n\t\t 0.687828 0.202016 0.686445 0.19859898 0.69871902 0.19483 0.69871902 0.19483 0.70011002\n\t\t 0.19823903 0.687828 0.202016 0.70011002 0.19823903 0.69871902 0.19483 0.71000803\n\t\t 0.19158399 0.71000803 0.19158399 0.71142 0.19498098 0.70011002 0.19823903 0.71142\n\t\t 0.19498098 0.71000803 0.19158399 0.72339499 0.18766898 0.72339499 0.18766898 0.72472697\n\t\t 0.19108999 0.71142 0.19498098 0.72472697 0.19108999 0.72339499 0.18766898 0.73551297\n\t\t 0.18401301 0.73551297 0.18401301 0.73654002 0.18755299 0.72472697 0.19108999 0.73654002\n\t\t 0.18755299 0.73551297 0.18401301 0.75701302 0.17702299 0.75701302 0.17702299 0.75686198\n\t\t 0.18127602 0.73654002 0.18755299 0.75686198 0.18127602 0.75701302 0.17702299 0.768363\n\t\t 0.17291898 0.768363 0.17291898 0.76752001 0.17771 0.75686198 0.18127602 0.76752001\n\t\t 0.17771 0.768363 0.17291898 0.79453599 0.194085 0.79453599 0.194085 0.79362398 0.19913101\n\t\t 0.76752001 0.17771 0.79362398 0.19913101 0.79453599 0.194085;\n\tsetAttr \".uvst[0].uvsp[21250:21499]\" 0.858154 0.202461 0.858154 0.202461 0.85876799\n\t\t 0.20754999 0.79362398 0.19913101 0.85876799 0.20754999 0.858154 0.202461 0.86664701\n\t\t 0.20346701 0.86664701 0.20346701 0.866835 0.20848203 0.85876799 0.20754999 0.866835\n\t\t 0.20848203 0.86664701 0.20346701 0.87243098 0.20423102 0.87243098 0.20423102 0.87178499\n\t\t 0.20905697 0.866835 0.20848203 0.87975401 0.20998102 0.87178499 0.20905697 0.87243098\n\t\t 0.20423102 0.87243098 0.20423102 0.88110203 0.20548201 0.87975401 0.20998102 0.87975401\n\t\t 0.20998102 0.88110203 0.20548201 0.891442 0.206397 0.891442 0.206397 0.88923103 0.21107501\n\t\t 0.87975401 0.20998102 0.084553897 0.66624498 0.084656402 0.687491 0.01113 0.67762697\n\t\t 0.01113 0.67762697 0.0154799 0.66322899 0.084553897 0.66624498 0.084553897 0.66624498\n\t\t 0.0154799 0.66322899 0.0232752 0.63237798 0.0232752 0.63237798 0.078962602 0.62985301\n\t\t 0.084553897 0.66624498 0.076796502 0.61361897 0.078962602 0.62985301 0.0232752 0.63237798\n\t\t 0.0232752 0.63237798 0.0267283 0.615888 0.076796502 0.61361897 0.073854297 0.59056199\n\t\t 0.076796502 0.61361897 0.0267283 0.615888 0.0267283 0.615888 0.0321142 0.58755302\n\t\t 0.073854297 0.59056199 0.070537902 0.56408703 0.073854297 0.59056199 0.0321142 0.58755302\n\t\t 0.0321142 0.58755302 0.0341307 0.56350201 0.070537902 0.56408703 0.0062285401 0.57881999\n\t\t 0.0321142 0.58755302 0.0267283 0.615888 0.0267283 0.615888 0.0032942099 0.58047301\n\t\t 0.0062285401 0.57881999 0.0091545004 0.577169 0.0341307 0.56350201 0.0321142 0.58755302\n\t\t 0.0321142 0.58755302 0.0062285401 0.57881999 0.0091545004 0.577169 0.0191084 0.68937701\n\t\t 0.01113 0.67762697 0.084656402 0.687491 0.01113 0.67762697 0.0191084 0.68937701 0.0038397\n\t\t 0.69329596 0.0038397 0.69329596 0.00256723 0.686782 0.01113 0.67762697 0.0038397\n\t\t 0.69329596 0.0191084 0.68937701 0.018977899 0.70142901 0.018977899 0.70142901 0.0056036799\n\t\t 0.70303798 0.0038397 0.69329596 0.061315302 0.71338999 0.018977899 0.70142901 0.0191084\n\t\t 0.68937701 0.0191084 0.68937701 0.073982902 0.700634 0.061315302 0.71338999 0.084656402\n\t\t 0.687491 0.073982902 0.700634 0.0191084 0.68937701 0.0056036799 0.70303798 0.018977899\n\t\t 0.70142901 0.0198061 0.71975303 0.0198061 0.71975303 0.0084243696 0.71946096 0.0056036799\n\t\t 0.70303798 0.0084243696 0.71946096 0.0198061 0.71975303 0.020848701 0.740026 0.020848701\n\t\t 0.740026 0.0114221 0.73799896 0.0084243696 0.71946096 0.044596702 0.748954 0.020848701\n\t\t 0.740026 0.0198061 0.71975303 0.0198061 0.71975303 0.052045699 0.73047304 0.044596702\n\t\t 0.748954 0.052045699 0.73047304 0.0198061 0.71975303 0.018977899 0.70142901 0.018977899\n\t\t 0.70142901 0.061315302 0.71338999 0.052045699 0.73047304 0.0114221 0.73799896 0.020848701\n\t\t 0.740026 0.0215143 0.75833601 0.0215143 0.75833601 0.0138532 0.754605 0.0114221 0.73799896\n\t\t 0.0138532 0.754605 0.0215143 0.75833601 0.022000801 0.77261603 0.022000801 0.77261603\n\t\t 0.0157081 0.767533 0.0138532 0.754605 0.030810401 0.782812 0.022000801 0.77261603\n\t\t 0.0215143 0.75833601 0.022000801 0.77261603 0.030810401 0.782812 0.029146399 0.78655803\n\t\t 0.029146399 0.78655803 0.022242 0.78011602 0.022000801 0.77261603 0.0157081 0.767533\n\t\t 0.022000801 0.77261603 0.022242 0.78011602 0.022242 0.78011602 0.029146399 0.78655803\n\t\t 0.027483501 0.79030597 0.027483501 0.79030597 0.0223666 0.78422499 0.022242 0.78011602\n\t\t 0.0215143 0.75833601 0.037544001 0.76607597 0.030810401 0.782812 0.037544001 0.76607597\n\t\t 0.0215143 0.75833601 0.020848701 0.740026 0.020848701 0.740026 0.044596702 0.748954\n\t\t 0.037544001 0.76607597 0.022242 0.78011602 0.0166745 0.77433199 0.0157081 0.767533\n\t\t 0.022242 0.78011602 0.0223666 0.78422499 0.0172041 0.77806801 0.0172041 0.77806801\n\t\t 0.0166745 0.77433199 0.022242 0.78011602 0.75587898 0.253685 0.76320899 0.25379097\n\t\t 0.76333398 0.25754601 0.76333398 0.25754601 0.755862 0.25747102 0.75587898 0.253685\n\t\t 0.77087599 0.25727499 0.76333398 0.25754601 0.76320899 0.25379097 0.76320899 0.25379097\n\t\t 0.77171099 0.25350702 0.77087599 0.25727499 0.76341599 0.24928802 0.76320899 0.25379097\n\t\t 0.75587898 0.253685 0.77171099 0.25350702 0.76320899 0.25379097 0.76341599 0.24928802\n\t\t 0.75587898 0.253685 0.756024 0.24928999 0.76341599 0.24928802 0.76341599 0.24928802\n\t\t 0.77203602 0.24906498 0.77171099 0.25350702 0.50370598 0.144481 0.48809001 0.14519203\n\t\t 0.48818901 0.14123201 0.48818901 0.14123201 0.50398701 0.14047903 0.50370598 0.144481\n\t\t 0.53229398 0.14460999 0.50370598 0.144481 0.50398701 0.14047903 0.50398701 0.14047903\n\t\t 0.53385901 0.140769 0.53229398 0.14460999 0.53229398 0.14460999 0.53385901 0.140769\n\t\t 0.54795301 0.14183402 0.54795301 0.14183402 0.54526901 0.14544201 0.53229398 0.14460999\n\t\t 0.501239 0.14915699 0.50370598 0.144481 0.53229398 0.14460999 0.53229398 0.14460999\n\t\t 0.52982199 0.14894497 0.501239 0.14915699 0.52982199 0.14894497 0.53229398 0.14460999\n\t\t 0.54526901 0.14544201 0.485816 0.14963597 0.48809001 0.14519203 0.50370598 0.144481\n\t\t 0.50370598 0.144481 0.501239 0.14915699 0.485816 0.14963597 0.54526901 0.14544201\n\t\t 0.54298902 0.149198 0.52982199 0.14894497 0.66070402 0.19453698 0.67327797 0.19450903\n\t\t 0.67278397 0.19897699 0.67278397 0.19897699 0.66102099 0.19905698 0.66070402 0.19453698\n\t\t 0.67327797 0.19450903 0.66070402 0.19453698 0.66162199 0.18999797 0.66162199 0.18999797\n\t\t 0.67437702 0.19025898 0.67327797 0.19450903 0.79310203 0.13009298 0.83299899 0.13091397\n\t\t 0.83086503 0.13426203 0.83086503 0.13426203 0.79403502 0.13313198 0.79310203 0.13009298\n\t\t 0.79270899 0.13861299 0.79403502 0.13313198 0.83086503 0.13426203 0.83086503 0.13426203\n\t\t 0.82828498 0.13854301 0.79270899 0.13861299;\n\tsetAttr \".uvst[0].uvsp[21500:21749]\" 0.613841 0.22881597 0.61772501 0.22909302\n\t\t 0.61829102 0.23329002 0.61829102 0.23329002 0.61433297 0.233024 0.613841 0.22881597\n\t\t 0.613841 0.22881597 0.61433297 0.233024 0.60712498 0.23254198 0.60712498 0.23254198\n\t\t 0.60676998 0.22831601 0.613841 0.22881597 0.61401999 0.23800403 0.61433297 0.233024\n\t\t 0.61829102 0.23329002 0.61829102 0.23329002 0.61803299 0.23817801 0.61401999 0.23800403\n\t\t 0.60671002 0.237688 0.60712498 0.23254198 0.61433297 0.233024 0.61433297 0.233024\n\t\t 0.61401999 0.23800403 0.60671002 0.237688 0.60676998 0.22831601 0.60712498 0.23254198\n\t\t 0.59342599 0.23160702 0.59342599 0.23160702 0.59332299 0.22734898 0.60676998 0.22831601\n\t\t 0.59332299 0.22734898 0.59342599 0.23160702 0.57581699 0.23046601 0.57581699 0.23046601\n\t\t 0.576015 0.2263 0.59332299 0.22734898 0.576015 0.2263 0.57581699 0.23046601 0.556104\n\t\t 0.23083502 0.556104 0.23083502 0.55662102 0.22670102 0.576015 0.2263 0.55662102 0.22670102\n\t\t 0.556104 0.23083502 0.53851199 0.23220599 0.53851199 0.23220599 0.53946698 0.22800702\n\t\t 0.55662102 0.22670102 0.53946698 0.22800702 0.53851199 0.23220599 0.52767402 0.23348802\n\t\t 0.52767402 0.23348802 0.52932101 0.22924 0.53946698 0.22800702 0.52259398 0.230551\n\t\t 0.52932101 0.22924 0.52767402 0.23348802 0.52767402 0.23348802 0.52012902 0.23489302\n\t\t 0.52259398 0.230551 0.52662998 0.23873001 0.52767402 0.23348802 0.53851199 0.23220599\n\t\t 0.53851199 0.23220599 0.537552 0.23769301 0.52662998 0.23873001 0.537552 0.23769301\n\t\t 0.53851199 0.23220599 0.556104 0.23083502 0.51898199 0.23985898 0.52012902 0.23489302\n\t\t 0.52767402 0.23348802 0.52767402 0.23348802 0.52662998 0.23873001 0.51898199 0.23985898\n\t\t 0.55518001 0.23649001 0.556104 0.23083502 0.57581699 0.23046601 0.556104 0.23083502\n\t\t 0.55518001 0.23649001 0.537552 0.23769301 0.57581699 0.23046601 0.57498097 0.23614699\n\t\t 0.55518001 0.23649001 0.57498097 0.23614699 0.57581699 0.23046601 0.59342599 0.23160702\n\t\t 0.59342599 0.23160702 0.592803 0.237068 0.57498097 0.23614699 0.592803 0.237068 0.59342599\n\t\t 0.23160702 0.60712498 0.23254198 0.60712498 0.23254198 0.60671002 0.237688 0.592803\n\t\t 0.237068 0.67336899 0.18209702 0.66637897 0.18199199 0.67015201 0.17616898 0.67015201\n\t\t 0.17616898 0.67490202 0.17923999 0.67336899 0.18209702 0.66746497 0.175771 0.67015201\n\t\t 0.17616898 0.66637897 0.18199199 0.66637897 0.18199199 0.66382802 0.18182999 0.66746497\n\t\t 0.175771 0.66382802 0.18182999 0.66134399 0.18224001 0.66746497 0.175771 0.69523799\n\t\t 0.30471098 0.69516599 0.30721003 0.69278502 0.30713099 0.69278502 0.30713099 0.69285601\n\t\t 0.30464798 0.69523799 0.30471098 0.69523799 0.30471098 0.69285601 0.30464798 0.69291598\n\t\t 0.30216098 0.69291598 0.30216098 0.69529802 0.30221599 0.69523799 0.30471098 0.69269401\n\t\t 0.30961698 0.69278502 0.30713099 0.69516599 0.30721003 0.69516599 0.30721003 0.69507498\n\t\t 0.30970502 0.69269401 0.30961698 0.69260299 0.31210703 0.69269401 0.30961698 0.69507498\n\t\t 0.30970502 0.69507498 0.30970502 0.69498402 0.31219602 0.69260299 0.31210703 0.692514\n\t\t 0.31459999 0.69260299 0.31210703 0.69498402 0.31219602 0.69498402 0.31219602 0.69489002\n\t\t 0.31468302 0.692514 0.31459999 0.69240701 0.317231 0.692514 0.31459999 0.69489002\n\t\t 0.31468302 0.69489002 0.31468302 0.69483 0.31716001 0.69240701 0.317231 0.69267201\n\t\t 0.31985003 0.69240701 0.317231 0.69483 0.31716001 0.69483 0.31716001 0.69503802 0.31963003\n\t\t 0.69267201 0.31985003 0.69291401 0.32248002 0.69267201 0.31985003 0.69503802 0.31963003\n\t\t 0.69503802 0.31963003 0.69528598 0.32226002 0.69291401 0.32248002 0.69535202 0.29972202\n\t\t 0.69529802 0.30221599 0.69291598 0.30216098 0.69291598 0.30216098 0.69296902 0.29967099\n\t\t 0.69535202 0.29972202 0.69535202 0.29972202 0.69296902 0.29967099 0.69302499 0.29703099\n\t\t 0.69302499 0.29703099 0.69540697 0.29708099 0.69535202 0.29972202 0.41610599 0.42216802\n\t\t 0.414267 0.41980302 0.42295 0.41289401 0.42295 0.41289401 0.425208 0.41579998 0.41610599\n\t\t 0.42216802 0.41610599 0.42216802 0.425208 0.41579998 0.42730299 0.418827 0.42730299\n\t\t 0.418827 0.41780999 0.42462999 0.41610599 0.42216802 0.420508 0.41009998 0.42295\n\t\t 0.41289401 0.414267 0.41980302 0.414267 0.41980302 0.41231701 0.41756898 0.420508\n\t\t 0.41009998 0.41789901 0.40745801 0.420508 0.41009998 0.41231701 0.41756898 0.41231701\n\t\t 0.41756898 0.41023299 0.41546202 0.41789901 0.40745801 0.41514701 0.40496498 0.41789901\n\t\t 0.40745801 0.41023299 0.41546202 0.41023299 0.41546202 0.40803799 0.41346997 0.41514701\n\t\t 0.40496498 0.412251 0.40264601 0.41514701 0.40496498 0.40803799 0.41346997 0.40803799\n\t\t 0.41346997 0.40572199 0.41161698 0.412251 0.40264601 0.409251 0.40051401 0.412251\n\t\t 0.40264601 0.40572199 0.41161698 0.40572199 0.41161698 0.40327999 0.40988201 0.409251\n\t\t 0.40051401 0.40613699 0.39855099 0.409251 0.40051401 0.40327999 0.40988201 0.40327999\n\t\t 0.40988201 0.400747 0.40828502 0.40613699 0.39855099 0.41935 0.42719603 0.41780999\n\t\t 0.42462999 0.42730299 0.418827 0.42730299 0.418827 0.429198 0.42198402 0.41935 0.42719603\n\t\t 0.41935 0.42719603 0.429198 0.42198402 0.43110201 0.42539102 0.43110201 0.42539102\n\t\t 0.42089799 0.42996401 0.41935 0.42719603 0.40613699 0.39855099 0.400747 0.40828502\n\t\t 0.39811799 0.406856 0.39811799 0.406856 0.40290201 0.39679301 0.40613699 0.39855099\n\t\t 0.40290201 0.39679301 0.39811799 0.406856 0.39528501 0.40542901 0.39528501 0.40542901\n\t\t 0.39941499 0.39503801 0.40290201 0.39679301 0.57769102 0.14506698 0.57577503 0.14399397\n\t\t 0.576603 0.14162803 0.576603 0.14162803 0.57878602 0.141927 0.57769102 0.14506698\n\t\t 0.57577503 0.14399397;\n\tsetAttr \".uvst[0].uvsp[21750:21999]\" 0.57769102 0.14506698 0.57558697 0.147627\n\t\t 0.57558697 0.147627 0.57417101 0.14594001 0.57577503 0.14399397 0.57417101 0.14594001\n\t\t 0.57558697 0.147627 0.57270598 0.14924401 0.57270598 0.14924401 0.57195997 0.14717901\n\t\t 0.57417101 0.14594001 0.57195997 0.14717901 0.57270598 0.14924401 0.56946099 0.14983797\n\t\t 0.56946099 0.14983797 0.56945699 0.147636 0.57195997 0.14717901 0.56945699 0.147636\n\t\t 0.56946099 0.14983797 0.56621599 0.149257 0.56621599 0.149257 0.566953 0.14718801\n\t\t 0.56945699 0.147636 0.566953 0.14718801 0.56621599 0.149257 0.56332701 0.147654 0.56332701\n\t\t 0.147654 0.56473398 0.14595801 0.566953 0.14718801 0.56473398 0.14595801 0.56332701\n\t\t 0.147654 0.56120801 0.145109 0.56120801 0.145109 0.56311601 0.14402097 0.56473398\n\t\t 0.14595801 0.56311601 0.14402097 0.56120801 0.145109 0.56008601 0.14198202 0.56008601\n\t\t 0.14198202 0.56176603 0.14173001 0.56311601 0.14402097 0.56237102 0.13915598 0.56176603\n\t\t 0.14173001 0.56008601 0.14198202 0.56008601 0.14198202 0.560233 0.13865203 0.56237102\n\t\t 0.13915598 0.56296998 0.13658798 0.56237102 0.13915598 0.560233 0.13865203 0.560233\n\t\t 0.13865203 0.56103802 0.135203 0.56296998 0.13658798 0.578583 0.13859898 0.57878602\n\t\t 0.141927 0.576603 0.14162803 0.576603 0.14162803 0.57645398 0.13913798 0.578583 0.13859898\n\t\t 0.578583 0.13859898 0.57645398 0.13913798 0.57581198 0.136581 0.57581198 0.136581\n\t\t 0.57771999 0.13516301 0.578583 0.13859898 0.51196599 0.062551022 0.51019597 0.061397016\n\t\t 0.51394397 0.057500005 0.51394397 0.057500005 0.51404798 0.062906027 0.51196599 0.062551022\n\t\t 0.51404798 0.062906027 0.51394397 0.057500005 0.51783901 0.061250985 0.51783901 0.061250985\n\t\t 0.51628602 0.062864006 0.51404798 0.062906027 0.51939201 0.05963701 0.51783901 0.061250985\n\t\t 0.51394397 0.057500005 0.51394397 0.057500005 0.51934999 0.057398021 0.51939201 0.05963701\n\t\t 0.51934999 0.057398021 0.51394397 0.057500005 0.51769298 0.05360502 0.51769298 0.05360502\n\t\t 0.51930702 0.055158973 0.51934999 0.057398021 0.51592302 0.052451015 0.51769298 0.05360502\n\t\t 0.51394397 0.057500005 0.51394397 0.057500005 0.51384002 0.052094996 0.51592302 0.052451015\n\t\t 0.51384002 0.052094996 0.51394397 0.057500005 0.51004702 0.053753018 0.51004702 0.053753018\n\t\t 0.51177102 0.052531004 0.51384002 0.052094996 0.50889301 0.055523992 0.51004702 0.053753018\n\t\t 0.51394397 0.057500005 0.51394397 0.057500005 0.50853801 0.057606995 0.50889301 0.055523992\n\t\t 0.50853801 0.057606995 0.51394397 0.057500005 0.51019597 0.061397016 0.51019597 0.061397016\n\t\t 0.50897503 0.059674025 0.50853801 0.057606995 0.38558501 0.65196502 0.38812301 0.65205401\n\t\t 0.38620201 0.668244 0.38620201 0.668244 0.38210201 0.66811901 0.38558501 0.65196502\n\t\t 0.38558501 0.65196502 0.38210201 0.66811901 0.37781999 0.66715401 0.37781999 0.66715401\n\t\t 0.38310701 0.65140998 0.38558501 0.65196502 0.38979101 0.66750401 0.38620201 0.668244\n\t\t 0.38812301 0.65205401 0.38812301 0.65205401 0.390632 0.65167499 0.38979101 0.66750401\n\t\t 0.39350399 0.66637897 0.38979101 0.66750401 0.390632 0.65167499 0.390632 0.65167499\n\t\t 0.393047 0.65096796 0.39350399 0.66637897 0.380797 0.65035903 0.38310701 0.65140998\n\t\t 0.37781999 0.66715401 0.37781999 0.66715401 0.373822 0.66534001 0.380797 0.65035903\n\t\t 0.380797 0.65035903 0.373822 0.66534001 0.36978599 0.66303396 0.36978599 0.66303396\n\t\t 0.378463 0.64902103 0.380797 0.65035903 0.40093401 0.66008604 0.39350399 0.66637897\n\t\t 0.393047 0.65096796 0.393047 0.65096796 0.39531499 0.650002 0.40093401 0.66008604\n\t\t 0.40093401 0.66008604 0.39531499 0.650002 0.39752901 0.64878601 0.39752901 0.64878601\n\t\t 0.40835401 0.65386301 0.40093401 0.66008604 0.77610803 0.196917 0.77589703 0.204804\n\t\t 0.76472598 0.20111102 0.76472598 0.20111102 0.76461798 0.19623798 0.77610803 0.196917\n\t\t 0.77610803 0.196917 0.76461798 0.19623798 0.76450503 0.191365 0.76450503 0.191365\n\t\t 0.77632201 0.18902999 0.77610803 0.196917 0.70810801 0.17778897 0.70671701 0.17658401\n\t\t 0.70875603 0.174833 0.70875603 0.174833 0.70973802 0.17639297 0.70810801 0.17778897\n\t\t 0.70671701 0.17658401 0.70810801 0.17778897 0.706949 0.17957699 0.706949 0.17957699\n\t\t 0.70525301 0.17885 0.70671701 0.17658401 0.70525301 0.17885 0.706949 0.17957699 0.70643502\n\t\t 0.181633 0.70643502 0.181633 0.70459902 0.18147802 0.70525301 0.17885 0.70459902\n\t\t 0.18147802 0.70643502 0.181633 0.70623702 0.18386197 0.70623702 0.18386197 0.70434302\n\t\t 0.18434298 0.70459902 0.18147802 0.70973802 0.17639297 0.70875603 0.174833 0.71121502\n\t\t 0.17377001 0.71121502 0.17377001 0.71171802 0.175538 0.70973802 0.17639297 0.71171802\n\t\t 0.175538 0.71121502 0.17377001 0.71386099 0.17338699 0.71386099 0.17338699 0.71386099\n\t\t 0.175228 0.71171802 0.175538 0.71386099 0.175228 0.71386099 0.17338699 0.716506 0.17377001\n\t\t 0.716506 0.17377001 0.716003 0.175538 0.71386099 0.175228 0.716003 0.175538 0.716506\n\t\t 0.17377001 0.71896499 0.17483401 0.71896499 0.17483401 0.71798402 0.17639399 0.716003\n\t\t 0.175538 0.71798402 0.17639399 0.71896499 0.17483401 0.72100401 0.17658401 0.72100401\n\t\t 0.17658401 0.71961302 0.17778897 0.71798402 0.17639399 0.71961302 0.17778897 0.72100401\n\t\t 0.17658401 0.72246802 0.17885 0.72246802 0.17885 0.72077203 0.17957801 0.71961302\n\t\t 0.17778897 0.72077203 0.17957801 0.72246802 0.17885 0.72312301 0.18147802 0.72312301\n\t\t 0.18147802 0.72128701 0.181633 0.72077203 0.17957801 0.72128701 0.181633 0.72312301\n\t\t 0.18147802 0.72337902 0.18434399 0.72337902 0.18434399 0.72148597 0.18386197 0.72128701\n\t\t 0.181633 0.74501503 0.19835401 0.74502701 0.19147301 0.74895298 0.19059801 0.74895298\n\t\t 0.19059801 0.74894798 0.19835901;\n\tsetAttr \".uvst[0].uvsp[22000:22249]\" 0.74501503 0.19835401 0.74502701 0.19147301\n\t\t 0.74501503 0.19835401 0.74084598 0.19834501 0.74084598 0.19834501 0.74085999 0.19255602\n\t\t 0.74502701 0.19147301 0.74894798 0.19835901 0.74895298 0.19059801 0.75252301 0.19014198\n\t\t 0.75252301 0.19014198 0.75252301 0.19835901 0.74894798 0.19835901 0.75252301 0.19835901\n\t\t 0.75252301 0.19014198 0.75629801 0.18989801 0.75629801 0.18989801 0.75629801 0.19835901\n\t\t 0.75252301 0.19835901 0.74085999 0.19255602 0.74084598 0.19834501 0.736678 0.19833302\n\t\t 0.736678 0.19833302 0.736691 0.193636 0.74085999 0.19255602 0.736691 0.193636 0.736678\n\t\t 0.19833302 0.73224902 0.19831997 0.73224902 0.19831997 0.73225999 0.19471502 0.736691\n\t\t 0.193636 0.684313 0.182019 0.68433899 0.17684501 0.68777502 0.17357397 0.68777502\n\t\t 0.17357397 0.68773502 0.18203598 0.684313 0.182019 0.68066603 0.17405701 0.68777502\n\t\t 0.17357397 0.68433899 0.17684501 0.68433899 0.17684501 0.68065399 0.17682803 0.68066603\n\t\t 0.17405701 0.0071827699 0.33719301 0.0071827699 0.33719301 0.113811 0.34452999 0.348176\n\t\t 0.16015899 0.35354999 0.19298899 0.35354999 0.19298899 0.84295201 0.32970297 0.86442798\n\t\t 0.32884198 0.86419803 0.35449803 0.86419803 0.35449803 0.84167898 0.35429603 0.84295201\n\t\t 0.32970297 0.117148 0.36316901 0.119199 0.37452298 0.0131006 0.370103 0.117148 0.36316901\n\t\t 0.0131006 0.370103 0.0071827699 0.33719301 0.117148 0.36316901 0.0071827699 0.33719301\n\t\t 0.113811 0.34452999 0.0174411 0.39413399 0.0131006 0.370103 0.119199 0.37452298 0.119199\n\t\t 0.37452298 0.106473 0.39387298 0.0174411 0.39413399 0.114475 0.31726402 0.113811\n\t\t 0.34452999 0.0071827699 0.33719301 0.0071827699 0.33719301 0.00875217 0.31033599\n\t\t 0.114475 0.31726402 0.114475 0.31726402 0.00875217 0.31033599 0.114475 0.31726402\n\t\t 0.42603299 0.17605799 0.394447 0.17605799 0.394447 0.15040201 0.394447 0.15040201\n\t\t 0.42603299 0.15040201 0.42603299 0.17605799 0.35354999 0.19298899 0.321877 0.18804902\n\t\t 0.32679299 0.156847 0.32679299 0.156847 0.348176 0.16015899 0.35354999 0.19298899\n\t\t 0.37265399 0.15640199 0.378158 0.18925703 0.35354999 0.19298899 0.35354999 0.19298899\n\t\t 0.348176 0.16015899 0.37265399 0.15640199 0.72596699 0.33346403 0.703448 0.33346403\n\t\t 0.703448 0.30187702 0.703448 0.30187702 0.73654997 0.30187702 0.72596699 0.33346403\n\t\t 0.59794003 0.33627099 0.589903 0.32953203 0.59112501 0.304896 0.59112501 0.304896\n\t\t 0.599406 0.29825401 0.59794003 0.33627099 0.589903 0.32953203 0.59794003 0.33627099\n\t\t 0.55060798 0.33683598 0.55060798 0.33683598 0.55799103 0.33018202 0.589903 0.32953203\n\t\t 0.55072701 0.297791 0.599406 0.29825401 0.59112501 0.304896 0.55799103 0.33018202\n\t\t 0.55060798 0.33683598 0.55072701 0.297791 0.599406 0.29825401 0.55072701 0.297791\n\t\t 0.55072701 0.297791 0.59112501 0.304896 0.558025 0.30452901 0.55072701 0.297791 0.55072701\n\t\t 0.297791 0.558025 0.30452901 0.55799103 0.33018202 0.64082301 0.055065989 0.64082301\n\t\t 0.055065989 0.64087701 0.069966018 0.26074699 0.68323201 0.27808601 0.678056 0.26074699\n\t\t 0.68323201 0.37468001 0.330037 0.37620899 0.32749099 0.37468001 0.330037 0.30469501\n\t\t 0.30790597 0.303489 0.31177402 0.30469501 0.30790597 0.47812799 0.32804 0.47812799\n\t\t 0.32804 0.48999101 0.323838 0.473851 0.32905602 0.47812799 0.32804 0.473851 0.32905602\n\t\t 0.46988299 0.32901198 0.473851 0.32905602 0.46988299 0.32901198 0.44931901 0.32584\n\t\t 0.46988299 0.32901198 0.44931901 0.32584 0.434971 0.324247 0.44931901 0.32584 0.434971\n\t\t 0.324247 0.434971 0.324247 0.425782 0.32370698 0.434971 0.324247 0.417586 0.323277\n\t\t 0.425782 0.32370698 0.417586 0.323277 0.40525499 0.32365698 0.417586 0.323277 0.40525499\n\t\t 0.32365698 0.39264199 0.32507002 0.40525499 0.32365698 0.39264199 0.32507002 0.38392499\n\t\t 0.32650602 0.39264199 0.32507002 0.38392499 0.32650602 0.37620899 0.32749099 0.38392499\n\t\t 0.32650602 0.37620899 0.32749099 0.37291199 0.32656199 0.37620899 0.32749099 0.37291199\n\t\t 0.32656199 0.36489499 0.32365298 0.37291199 0.32656199 0.36489499 0.32365298 0.342603\n\t\t 0.316181 0.36489499 0.32365298 0.342603 0.316181 0.342603 0.316181 0.31866801 0.31010699\n\t\t 0.342603 0.316181 0.30469501 0.30790597 0.31866801 0.31010699 0.30469501 0.30790597\n\t\t 0.29938099 0.31040603 0.30469501 0.30790597 0.29938099 0.31040603 0.29938099 0.31040603\n\t\t 0.273397 0.32837099 0.29938099 0.31040603 0.490747 0.32616597 0.478616 0.33063298\n\t\t 0.47812799 0.32804 0.47812799 0.32804 0.48999101 0.323838 0.490747 0.32616597 0.473851\n\t\t 0.32905602 0.47812799 0.32804 0.478616 0.33063298 0.478616 0.33063298 0.473995 0.33174598\n\t\t 0.473851 0.32905602 0.46988299 0.32901198 0.473851 0.32905602 0.473995 0.33174598\n\t\t 0.473995 0.33174598 0.469659 0.33188301 0.46988299 0.32901198 0.44931901 0.32584\n\t\t 0.46988299 0.32901198 0.469659 0.33188301 0.469659 0.33188301 0.44862801 0.32915503\n\t\t 0.44931901 0.32584 0.434971 0.324247 0.44931901 0.32584 0.44862801 0.32915503 0.44862801\n\t\t 0.32915503 0.43401101 0.32810003 0.434971 0.324247 0.434971 0.324247 0.43401101 0.32810003\n\t\t 0.42445901 0.32823497 0.42445901 0.32823497 0.425782 0.32370698 0.434971 0.324247\n\t\t 0.417586 0.323277 0.425782 0.32370698 0.42445901 0.32823497 0.42445901 0.32823497\n\t\t 0.41609901 0.32794899 0.417586 0.323277 0.417586 0.323277 0.41609901 0.32794899 0.40411201\n\t\t 0.327654 0.40411201 0.327654 0.40525499 0.32365698 0.417586 0.323277 0.39264199 0.32507002\n\t\t 0.40525499 0.32365698 0.40411201 0.327654 0.40411201 0.327654 0.39191201 0.32832003\n\t\t 0.39264199 0.32507002;\n\tsetAttr \".uvst[0].uvsp[22250:22499]\" 0.39264199 0.32507002 0.39191201 0.32832003\n\t\t 0.38322201 0.32946301 0.38322201 0.32946301 0.38392499 0.32650602 0.39264199 0.32507002\n\t\t 0.37620899 0.32749099 0.38392499 0.32650602 0.38322201 0.32946301 0.38322201 0.32946301\n\t\t 0.37468001 0.330037 0.37620899 0.32749099 0.37291199 0.32656199 0.37620899 0.32749099\n\t\t 0.37468001 0.330037 0.37468001 0.330037 0.37060499 0.32937598 0.37291199 0.32656199\n\t\t 0.36489499 0.32365298 0.37291199 0.32656199 0.37060499 0.32937598 0.37060499 0.32937598\n\t\t 0.36153099 0.32688302 0.36489499 0.32365298 0.36489499 0.32365298 0.36153099 0.32688302\n\t\t 0.33799401 0.32011902 0.33799401 0.32011902 0.342603 0.316181 0.36489499 0.32365298\n\t\t 0.342603 0.316181 0.33799401 0.32011902 0.31510001 0.313528 0.31510001 0.313528 0.31866801\n\t\t 0.31010699 0.342603 0.316181 0.31866801 0.31010699 0.31510001 0.313528 0.303489 0.31177402\n\t\t 0.303489 0.31177402 0.30469501 0.30790597 0.31866801 0.31010699 0.273397 0.32837099\n\t\t 0.29938099 0.31040603 0.29901999 0.314174 0.29901999 0.314174 0.27448699 0.33131701\n\t\t 0.273397 0.32837099 0.29901999 0.314174 0.29938099 0.31040603 0.30469501 0.30790597\n\t\t 0.30469501 0.30790597 0.303489 0.31177402 0.29901999 0.314174 0.48708099 0.31566501\n\t\t 0.48999101 0.323838 0.47812799 0.32804 0.47812799 0.32804 0.47503299 0.31997597 0.48708099\n\t\t 0.31566501 0.47503299 0.31997597 0.47812799 0.32804 0.473851 0.32905602 0.473851\n\t\t 0.32905602 0.47056201 0.32111102 0.47503299 0.31997597 0.47056201 0.32111102 0.473851\n\t\t 0.32905602 0.46988299 0.32901198 0.46988299 0.32901198 0.46640199 0.32110101 0.47056201\n\t\t 0.32111102 0.46640199 0.32110101 0.46988299 0.32901198 0.44931901 0.32584 0.44931901\n\t\t 0.32584 0.445355 0.318259 0.46640199 0.32110101 0.445355 0.318259 0.44931901 0.32584\n\t\t 0.434971 0.324247 0.434971 0.324247 0.431153 0.31664598 0.445355 0.318259 0.42257199\n\t\t 0.31603301 0.431153 0.31664598 0.434971 0.324247 0.434971 0.324247 0.425782 0.32370698\n\t\t 0.42257199 0.31603301 0.42257199 0.31603301 0.425782 0.32370698 0.417586 0.323277\n\t\t 0.417586 0.323277 0.41554701 0.31584901 0.42257199 0.31603301 0.41554701 0.31584901\n\t\t 0.417586 0.323277 0.40525499 0.32365698 0.40525499 0.32365698 0.40544999 0.31615901\n\t\t 0.41554701 0.31584901 0.40544999 0.31615901 0.40525499 0.32365698 0.39264199 0.32507002\n\t\t 0.39264199 0.32507002 0.39508399 0.316953 0.40544999 0.31615901 0.39508399 0.316953\n\t\t 0.39264199 0.32507002 0.38392499 0.32650602 0.38392499 0.32650602 0.38727 0.31790799\n\t\t 0.39508399 0.316953 0.38727 0.31790799 0.38392499 0.32650602 0.37620899 0.32749099\n\t\t 0.37620899 0.32749099 0.37981901 0.31845099 0.38727 0.31790799 0.37981901 0.31845099\n\t\t 0.37620899 0.32749099 0.37291199 0.32656199 0.37291199 0.32656199 0.37781399 0.31722897\n\t\t 0.37981901 0.31845099 0.37781399 0.31722897 0.37291199 0.32656199 0.36489499 0.32365298\n\t\t 0.36489499 0.32365298 0.37369299 0.31403601 0.37781399 0.31722897 0.37369299 0.31403601\n\t\t 0.36489499 0.32365298 0.342603 0.316181 0.342603 0.316181 0.35410899 0.30646098 0.37369299\n\t\t 0.31403601 0.35410899 0.30646098 0.342603 0.316181 0.31866801 0.31010699 0.31866801\n\t\t 0.31010699 0.32381701 0.30101001 0.35410899 0.30646098 0.32381701 0.30101001 0.31866801\n\t\t 0.31010699 0.30469501 0.30790597 0.30469501 0.30790597 0.30618501 0.298976 0.32381701\n\t\t 0.30101001 0.30618501 0.298976 0.30469501 0.30790597 0.29938099 0.31040603 0.29938099\n\t\t 0.31040603 0.30062199 0.30236399 0.30618501 0.298976 0.270208 0.32358098 0.30062199\n\t\t 0.30236399 0.29938099 0.31040603 0.29938099 0.31040603 0.273397 0.32837099 0.270208\n\t\t 0.32358098 0.95228899 0.025599003 0.95029598 0.015402019 0.954373 0.01542002 0.95228899\n\t\t 0.025599003 0.94652498 0.016943991 0.95029598 0.015402019 0.95228899 0.025599003\n\t\t 0.94364202 0.019801021 0.94652498 0.016943991 0.95228899 0.025599003 0.94207799 0.023539007\n\t\t 0.94364202 0.019801021 0.95228899 0.025599003 0.94205302 0.027589023 0.94207799 0.023539007\n\t\t 0.95228899 0.025599003 0.943591 0.031327009 0.94205302 0.027589023 0.95228899 0.025599003\n\t\t 0.946455 0.034204006 0.943591 0.031327009 0.95228899 0.025599003 0.95020503 0.035772026\n\t\t 0.946455 0.034204006 0.95228899 0.025599003 0.95428997 0.035786986 0.95020503 0.035772026\n\t\t 0.95228899 0.025599003 0.95806003 0.034242988 0.95428997 0.035786986 0.95228899 0.025599003\n\t\t 0.96094602 0.031379998 0.95806003 0.034242988 0.95228899 0.025599003 0.96251303 0.027633011\n\t\t 0.96094602 0.031379998 0.95228899 0.025599003 0.96251601 0.023606002 0.96251303 0.027633011\n\t\t 0.95228899 0.025599003 0.96098101 0.019860029 0.96251601 0.023606002 0.95228899 0.025599003\n\t\t 0.95811999 0.016987026 0.96098101 0.019860029 0.95228899 0.025599003 0.954373 0.01542002\n\t\t 0.95811999 0.016987026 0.94652498 0.016943991 0.94364202 0.019801021 0.937859 0.015872002\n\t\t 0.94364202 0.019801021 0.94207799 0.023539007 0.935229 0.022119999 0.935229 0.022119999\n\t\t 0.937859 0.015872002 0.94364202 0.019801021 0.94205302 0.027589023 0.943591 0.031327009\n\t\t 0.937769 0.035184979 0.943591 0.031327009 0.946455 0.034204006 0.94255698 0.040001988\n\t\t 0.94255698 0.040001988 0.937769 0.035184979 0.943591 0.031327009 0.95020503 0.035772026\n\t\t 0.95428997 0.035786986 0.95561802 0.042647004 0.95428997 0.035786986 0.95806003 0.034242988\n\t\t 0.96190399 0.040076971 0.96190399 0.040076971 0.95561802 0.042647004 0.95428997 0.035786986\n\t\t 0.96094602 0.031379998 0.96251303 0.027633011 0.96935499 0.029044986 0.96251303 0.027633011\n\t\t 0.96251601 0.023606002 0.96938002 0.022265017 0.96938002 0.022265017 0.96935499 0.029044986\n\t\t 0.96251303 0.027633011 0.96098101 0.019860029 0.95811999 0.016987026 0.962017 0.011183023\n\t\t 0.95811999 0.016987026;\n\tsetAttr \".uvst[0].uvsp[22500:22749]\" 0.954373 0.01542002 0.95575398 0.0085669756\n\t\t 0.94896603 0.008539021 0.95575398 0.0085669756 0.954373 0.01542002 0.954373 0.01542002\n\t\t 0.95029598 0.015402019 0.94896603 0.008539021 0.94268298 0.011102974 0.94896603 0.008539021\n\t\t 0.95029598 0.015402019 0.95029598 0.015402019 0.94652498 0.016943991 0.94268298 0.011102974\n\t\t 0.937859 0.015872002 0.94268298 0.011102974 0.94652498 0.016943991 0.95575398 0.0085669756\n\t\t 0.962017 0.011183023 0.95811999 0.016987026 0.95575398 0.0085669756 0.94896603 0.008539021\n\t\t 0.94758701 0.0014290214 0.94758701 0.0014290214 0.94896603 0.008539021 0.94268298\n\t\t 0.011102974 0.94758701 0.0014290214 0.95719302 0.0014690161 0.95575398 0.0085669756\n\t\t 0.94268298 0.011102974 0.93869299 0.0050590038 0.94758701 0.0014290214 0.93869299\n\t\t 0.0050590038 0.94268298 0.011102974 0.937859 0.015872002 0.937859 0.015872002 0.93186098\n\t\t 0.011815012 0.93869299 0.0050590038 0.93186098 0.011815012 0.937859 0.015872002 0.935229\n\t\t 0.022119999 0.935229 0.022119999 0.92813402 0.02067399 0.93186098 0.011815012 0.92813402\n\t\t 0.02067399 0.935229 0.022119999 0.93519402 0.028901994 0.93519402 0.028901994 0.935229\n\t\t 0.022119999 0.94207799 0.023539007 0.94207799 0.023539007 0.94205302 0.027589023\n\t\t 0.93519402 0.028901994 0.937769 0.035184979 0.93519402 0.028901994 0.94205302 0.027589023\n\t\t 0.93519402 0.028901994 0.92808998 0.030287981 0.92813402 0.02067399 0.92808998 0.030287981\n\t\t 0.93519402 0.028901994 0.937769 0.035184979 0.937769 0.035184979 0.93173701 0.039187014\n\t\t 0.92808998 0.030287981 0.93173701 0.039187014 0.937769 0.035184979 0.94255698 0.040001988\n\t\t 0.94255698 0.040001988 0.93851501 0.046009004 0.93173701 0.039187014 0.93851501 0.046009004\n\t\t 0.94255698 0.040001988 0.948825 0.042621017 0.948825 0.042621017 0.94255698 0.040001988\n\t\t 0.946455 0.034204006 0.946455 0.034204006 0.95020503 0.035772026 0.948825 0.042621017\n\t\t 0.95561802 0.042647004 0.948825 0.042621017 0.95020503 0.035772026 0.948825 0.042621017\n\t\t 0.94738603 0.049717009 0.93851501 0.046009004 0.94738603 0.049717009 0.948825 0.042621017\n\t\t 0.95561802 0.042647004 0.95561802 0.042647004 0.956999 0.049754977 0.94738603 0.049717009\n\t\t 0.956999 0.049754977 0.95561802 0.042647004 0.96190399 0.040076971 0.96190399 0.040076971\n\t\t 0.96589702 0.046118021 0.956999 0.049754977 0.96589702 0.046118021 0.96190399 0.040076971\n\t\t 0.96672899 0.03530103 0.96672899 0.03530103 0.96190399 0.040076971 0.95806003 0.034242988\n\t\t 0.95806003 0.034242988 0.96094602 0.031379998 0.96672899 0.03530103 0.96935499 0.029044986\n\t\t 0.96672899 0.03530103 0.96094602 0.031379998 0.96672899 0.03530103 0.97272801 0.039354026\n\t\t 0.96589702 0.046118021 0.97272801 0.039354026 0.96672899 0.03530103 0.96935499 0.029044986\n\t\t 0.96935499 0.029044986 0.97644901 0.030489981 0.97272801 0.039354026 0.97644901 0.030489981\n\t\t 0.96935499 0.029044986 0.96938002 0.022265017 0.96938002 0.022265017 0.97648698 0.020877004\n\t\t 0.97644901 0.030489981 0.97648698 0.020877004 0.96938002 0.022265017 0.96680301 0.015991986\n\t\t 0.96680301 0.015991986 0.96938002 0.022265017 0.96251601 0.023606002 0.96251601 0.023606002\n\t\t 0.96098101 0.019860029 0.96680301 0.015991986 0.962017 0.011183023 0.96680301 0.015991986\n\t\t 0.96098101 0.019860029 0.96680301 0.015991986 0.972835 0.011986017 0.97648698 0.020877004\n\t\t 0.972835 0.011986017 0.96680301 0.015991986 0.962017 0.011183023 0.962017 0.011183023\n\t\t 0.96605802 0.0051730275 0.972835 0.011986017 0.96605802 0.0051730275 0.962017 0.011183023\n\t\t 0.95575398 0.0085669756 0.95575398 0.0085669756 0.95719302 0.0014690161 0.96605802\n\t\t 0.0051730275 0.66054398 0.32800198 0.65785903 0.32242602 0.60478902 0.32697201 0.60478902\n\t\t 0.32697201 0.6038 0.32118797 0.6038 0.32118797 0.6038 0.32118797 0.60478902 0.32697201\n\t\t 0.60478902 0.32697201 0.60478902 0.32697201 0.61367399 0.35870999 0.61367399 0.35870999\n\t\t 0.61367399 0.35870999 0.60478902 0.32697201 0.61367399 0.35870999 0.61367399 0.35870999\n\t\t 0.61461103 0.364254 0.61461103 0.364254 0.61461103 0.364254 0.61367399 0.35870999\n\t\t 0.60478902 0.32697201 0.6038 0.32118797 0.65785903 0.32242602 0.65785903 0.32242602\n\t\t 0.65886199 0.32823598 0.60478902 0.32697201 0.66054398 0.32800198 0.65886199 0.32823598\n\t\t 0.65785903 0.32242602 0.66773403 0.35997897 0.65886199 0.32823598 0.66054398 0.32800198\n\t\t 0.66054398 0.32800198 0.66943002 0.35986 0.66773403 0.35997897 0.66773403 0.35997897\n\t\t 0.66943002 0.35986 0.67004198 0.36334997 0.67004198 0.36334997 0.66869497 0.36549097\n\t\t 0.66773403 0.35997897 0.66773403 0.35997897 0.66869497 0.36549097 0.61461103 0.364254\n\t\t 0.61461103 0.364254 0.61367399 0.35870999 0.66773403 0.35997897 0.65785903 0.32242602\n\t\t 0.659944 0.32459903 0.66054398 0.32800198 0.617019 0.35438901 0.61367399 0.35870999\n\t\t 0.60478902 0.32697201 0.60478902 0.32697201 0.610026 0.33102697 0.617019 0.35438901\n\t\t 0.610026 0.33102697 0.60478902 0.32697201 0.65886199 0.32823598 0.66250199 0.35592198\n\t\t 0.66773403 0.35997897 0.61367399 0.35870999 0.61367399 0.35870999 0.617019 0.35438901\n\t\t 0.66250199 0.35592198 0.65551102 0.33255702 0.65886199 0.32823598 0.66773403 0.35997897\n\t\t 0.66773403 0.35997897 0.66250199 0.35592198 0.65551102 0.33255702 0.65886199 0.32823598\n\t\t 0.65551102 0.33255702 0.610026 0.33102697 0.47124499 0.08563 0.48956501 0.069635987\n\t\t 0.51239198 0.10887998 0.51239198 0.10887998 0.49407199 0.124874 0.47124499 0.08563\n\t\t 0.798998 0.164738 0.79893398 0.16952503 0.77682102 0.169227 0.77682102 0.169227 0.77688497\n\t\t 0.16443998 0.798998 0.164738 0.79782301 0.37359601 0.797993 0.36881202 0.83925098\n\t\t 0.37028599 0.83925098 0.37028599 0.83907998 0.37506998 0.79782301 0.37359601 0.78115302\n\t\t 0.238702 0.78115302 0.23391402 0.80326802 0.23391402 0.80326802 0.23391402 0.80326802\n\t\t 0.238702 0.78115302 0.238702;\n\tsetAttr \".uvst[0].uvsp[22750:22999]\" 0.718458 0.078092992 0.71808898 0.073319018\n\t\t 0.759251 0.070138991 0.759251 0.070138991 0.759619 0.074913025 0.718458 0.078092992\n\t\t 0.146175 0.66950399 0.183213 0.69088501 0.183213 0.69088501 0.20527799 0.70029497\n\t\t 0.183213 0.69088501 0.183213 0.69088501 0.20527799 0.70029497 0.36746001 0.699745\n\t\t 0.36122599 0.71204698 0.36122599 0.71204698 0.37717 0.69343603 0.37717 0.69343603\n\t\t 0.278725 0.68712604 0.278725 0.68712604 0.278725 0.68712604 0.75889498 0.002556026\n\t\t 0.75889498 0.002556026 0.75806999 0.0047039986 0.420533 0.80835301 0.420533 0.80835301\n\t\t 0.36844301 0.80451399 0.420533 0.80835301 0.36844301 0.80451399 0.420533 0.80835301\n\t\t 0.44563299 0.80971897 0.33404401 0.80204099 0.33404401 0.80204099 0.36844301 0.80451399\n\t\t 0.33404401 0.80204099 0.47972 0.126176 0.47907501 0.12698501 0.47972 0.126176 0.883403\n\t\t 0.89477998 0.85091603 0.87785298 0.85091603 0.87785298 0.84398198 0.95991212 0.80793899\n\t\t 0.9256168 0.84398198 0.95991212 0.86031997 0.046984971 0.85163599 0.040993989 0.86031997\n\t\t 0.046984971 0.85163599 0.040993989 0.85163599 0.040993989 0.84703702 0.037819982\n\t\t 0.93239802 0.090790987 0.90022099 0.072318971 0.93239802 0.090790987 0.94616801 0.097998023\n\t\t 0.93239802 0.090790987 0.94616801 0.097998023 0.95035899 0.10011297 0.94616801 0.097998023\n\t\t 0.90022099 0.072318971 0.90022099 0.072318971 0.88188303 0.060661972 0.95035899 0.10011297\n\t\t 0.88188303 0.060661972 0.86031997 0.046984971 0.86031997 0.046984971 0.89266402 0.048618972\n\t\t 0.912175 0.060491025 0.912175 0.060491025 0.912175 0.060491025 0.94297999 0.077464998\n\t\t 0.94297999 0.077464998 0.94297999 0.077464998 0.95644999 0.084352016 0.89266402 0.048618972\n\t\t 0.87060499 0.035342991 0.89266402 0.048618972 0.87060499 0.035342991 0.87060499 0.035342991\n\t\t 0.86282301 0.030333996 0.87060499 0.035342991 0.95644999 0.084352016 0.95644999 0.084352016\n\t\t 0.96061599 0.08654201 0.85674101 0.026664972 0.86282301 0.030333996 0.85674101 0.026664972\n\t\t 0.32844001 0.39379299 0.327829 0.39128703 0.32844001 0.39379299 0.34248799 0.39179999\n\t\t 0.34273899 0.39413297 0.34248799 0.39179999 0.060048401 0.43758798 0.061934199 0.44259399\n\t\t 0.060048401 0.43758798 0.046300601 0.44892401 0.0420921 0.44345701 0.046300601 0.44892401\n\t\t 0.046300601 0.44892401 0.048514102 0.451689 0.061934199 0.44259399 0.063020103 0.44571298\n\t\t 0.061934199 0.44259399 0.0416869 0.459683 0.036956899 0.46824098 0.036956899 0.46824098\n\t\t 0.036956899 0.46824098 0.0242359 0.48758 0.048514102 0.451689 0.0416869 0.459683\n\t\t 0.0416869 0.459683 0.048514102 0.451689 0.055163398 0.44806099 0.048514102 0.451689\n\t\t 0.063020103 0.44571298 0.055163398 0.44806099 0.063020103 0.44571298 0.0242359 0.48758\n\t\t 0.063020103 0.44571298 0.063020103 0.44571298 0.89175498 0.12976903 0.89998698 0.12963599\n\t\t 0.88352197 0.12990201 0.89175498 0.12976903 0.89998698 0.12963599 0.88352197 0.12990201\n\t\t 0.92934901 0.14492899 0.90463901 0.240197 0.90463901 0.240197 0.46080399 0.93168032\n\t\t 0.45565 0.91625261 0.51086903 0.35330099 0.51039201 0.36513901 0.51039201 0.36513901\n\t\t 0.53470099 0.176395 0.54040301 0.17356098 0.263336 0.42882299 0.19650801 0.42539501\n\t\t 0.29974499 0.43158299 0.263336 0.42882299 0.19650801 0.42539501 0.19650801 0.42539501\n\t\t 0.169397 0.42580903 0.169397 0.42580903 0.169397 0.42580903 0.169397 0.42580903 0.29974499\n\t\t 0.43158299 0.131869 0.43361199 0.100689 0.448533 0.131869 0.43361199 0.100689 0.448533\n\t\t 0.112222 0.64064002 0.146175 0.66950399 0.112222 0.64064002 0.34700599 0.40703303\n\t\t 0.33025399 0.40390301 0.33025399 0.40390301 0.32748899 0.40415603 0.32635599 0.40506101\n\t\t 0.317577 0.41315699 0.32635599 0.40506101 0.32748899 0.40415603 0.32635599 0.40506101\n\t\t 0.32748899 0.40415603 0.317577 0.41315699 0.31659201 0.41422498 0.317577 0.41315699\n\t\t 0.31659201 0.41422498 0.31373301 0.41013998 0.31373301 0.41013998 0.31230199 0.41305602\n\t\t 0.30645999 0.432733 0.315211 0.41656798 0.30645999 0.432733 0.315211 0.41656798 0.31659201\n\t\t 0.41422498 0.315211 0.41656798 0.31659201 0.41422498 0.40193701 0.24444401 0.39160699\n\t\t 0.24492103 0.39160699 0.24492103 0.38902599 0.244717 0.38805199 0.23987401 0.38805199\n\t\t 0.23987401 0.37735599 0.24245101 0.375891 0.23739398 0.37735599 0.24245101 0.37327099\n\t\t 0.23813403 0.36082399 0.24492502 0.80537301 0.92401022 0.80793899 0.9256168 0.81946099\n\t\t 0.91314852 0.81946099 0.91314852 0.80537301 0.92401022 0.81946099 0.91314852 0.81946099\n\t\t 0.91314852 0.85091603 0.87785298 0.85091603 0.87785298 0.85091603 0.87785298 0.153644\n\t\t 0.36192602 0.13878 0.33371598 0.14737 0.33377397 0.14737 0.33377397 0.15472201 0.347193\n\t\t 0.153644 0.36192602 0.153644 0.36192602 0.15472201 0.347193 0.170789 0.349518 0.170789\n\t\t 0.349518 0.171372 0.362279 0.153644 0.36192602 0.171372 0.362279 0.170789 0.349518\n\t\t 0.18434601 0.34904498 0.18434601 0.34904498 0.18731999 0.36173302 0.171372 0.362279\n\t\t 0.18731999 0.36173302 0.18434601 0.34904498 0.197899 0.348566 0.197899 0.348566 0.203308\n\t\t 0.361229 0.18731999 0.36173302 0.203308 0.361229 0.197899 0.348566 0.214476 0.34557903\n\t\t 0.214476 0.34557903 0.221442 0.35972601 0.203308 0.361229 0.221442 0.35972601 0.214476\n\t\t 0.34557903 0.21876501 0.340249 0.21876501 0.340249 0.233404 0.34860098 0.221442 0.35972601\n\t\t 0.233404 0.34860098 0.21876501 0.340249 0.22956599 0.32624203 0.22956599 0.32624203\n\t\t 0.25862601 0.32567799 0.233404 0.34860098 0.14737 0.33377397 0.13878 0.33371598 0.124433\n\t\t 0.30944997 0.124433 0.30944997 0.14048199 0.32094598 0.14737 0.33377397 0.171895\n\t\t 0.30859703 0.14048199 0.32094598 0.124433 0.30944997;\n\tsetAttr \".uvst[0].uvsp[23000:23249]\" 0.171895 0.30859703 0.169838 0.32039702 0.14048199\n\t\t 0.32094598 0.171895 0.30859703 0.124433 0.30944997 0.124092 0.30861503 0.234914 0.319107\n\t\t 0.169838 0.32039702 0.171895 0.30859703 0.25862601 0.32567799 0.22956599 0.32624203\n\t\t 0.234914 0.319107 0.234914 0.319107 0.171895 0.30859703 0.27257299 0.31194699 0.234914\n\t\t 0.319107 0.27239901 0.31325698 0.25862601 0.32567799 0.234914 0.319107 0.27257299\n\t\t 0.31194699 0.27239901 0.31325698 0.172011 0.71131301 0.183213 0.69088501 0.20527799\n\t\t 0.70029497 0.20527799 0.70029497 0.194773 0.71963 0.172011 0.71131301 0.194773 0.71963\n\t\t 0.20527799 0.70029497 0.25527701 0.71437699 0.25527701 0.71437699 0.24905001 0.73062301\n\t\t 0.194773 0.71963 0.146175 0.66950399 0.183213 0.69088501 0.172011 0.71131301 0.172011\n\t\t 0.71131301 0.130183 0.69045901 0.146175 0.66950399 0.183213 0.69088501 0.146175 0.66950399\n\t\t 0.14928199 0.66229796 0.14928199 0.66229796 0.184911 0.682019 0.183213 0.69088501\n\t\t 0.184911 0.682019 0.14928199 0.66229796 0.155085 0.65250999 0.155085 0.65250999 0.18846899\n\t\t 0.67398298 0.184911 0.682019 0.25527701 0.71437699 0.20527799 0.70029497 0.20529\n\t\t 0.69065899 0.183213 0.69088501 0.184911 0.682019 0.20529 0.69065899 0.20529 0.69065899\n\t\t 0.20527799 0.70029497 0.183213 0.69088501 0.20529 0.69065899 0.251955 0.70353299\n\t\t 0.25527701 0.71437699 0.25120601 0.69191897 0.251955 0.70353299 0.20529 0.69065899\n\t\t 0.251955 0.70353299 0.25120601 0.69191897 0.27759099 0.69138002 0.27759099 0.69138002\n\t\t 0.28082901 0.70425797 0.251955 0.70353299 0.25527701 0.71437699 0.251955 0.70353299\n\t\t 0.28082901 0.70425797 0.315788 0.69211102 0.28082901 0.70425797 0.27759099 0.69138002\n\t\t 0.27759099 0.69138002 0.31338799 0.68538296 0.315788 0.69211102 0.35396901 0.67737997\n\t\t 0.315788 0.69211102 0.31338799 0.68538296 0.315788 0.69211102 0.35396901 0.67737997\n\t\t 0.36746001 0.699745 0.36746001 0.699745 0.32332599 0.70574999 0.315788 0.69211102\n\t\t 0.28082901 0.70425797 0.315788 0.69211102 0.32332599 0.70574999 0.31338799 0.68538296\n\t\t 0.34745401 0.67073601 0.35396901 0.67737997 0.32332599 0.70574999 0.28540301 0.71400797\n\t\t 0.28082901 0.70425797 0.282931 0.73087704 0.28540301 0.71400797 0.32332599 0.70574999\n\t\t 0.32332599 0.70574999 0.32461801 0.72294903 0.282931 0.73087704 0.32461801 0.72294903\n\t\t 0.32332599 0.70574999 0.36746001 0.699745 0.36746001 0.699745 0.36122599 0.71204698\n\t\t 0.32461801 0.72294903 0.36122599 0.71204698 0.36746001 0.699745 0.37717 0.69343603\n\t\t 0.37717 0.69343603 0.37962699 0.70248401 0.36122599 0.71204698 0.37962699 0.70248401\n\t\t 0.37717 0.69343603 0.38962001 0.68301797 0.38962001 0.68301797 0.39707401 0.686203\n\t\t 0.37962699 0.70248401 0.28082901 0.70425797 0.28540301 0.71400797 0.25527701 0.71437699\n\t\t 0.39707401 0.686203 0.38962001 0.68301797 0.40421301 0.66788101 0.40421301 0.66788101\n\t\t 0.40875 0.67190397 0.39707401 0.686203 0.40875 0.67190397 0.40421301 0.66788101 0.40738299\n\t\t 0.664285 0.40738299 0.664285 0.40997699 0.67006201 0.40875 0.67190397 0.40997699\n\t\t 0.67006201 0.40738299 0.664285 0.42522699 0.63301504 0.24905001 0.73062301 0.25527701\n\t\t 0.71437699 0.28540301 0.71400797 0.28540301 0.71400797 0.282931 0.73087704 0.24905001\n\t\t 0.73062301 0.32161799 0.677809 0.343052 0.66613799 0.34745401 0.67073601 0.34745401\n\t\t 0.67073601 0.31338799 0.68538296 0.32161799 0.677809 0.343052 0.66613799 0.32161799\n\t\t 0.677809 0.30866501 0.67701304 0.30866501 0.67701304 0.34206301 0.66168201 0.343052\n\t\t 0.66613799 0.32161799 0.677809 0.31338799 0.68538296 0.278725 0.68712604 0.32161799\n\t\t 0.677809 0.278725 0.68712604 0.30866501 0.67701304 0.31338799 0.68538296 0.27759099\n\t\t 0.69138002 0.278725 0.68712604 0.251535 0.68821299 0.278725 0.68712604 0.27759099\n\t\t 0.69138002 0.27759099 0.69138002 0.25120601 0.69191897 0.251535 0.68821299 0.251535\n\t\t 0.68821299 0.25120601 0.69191897 0.207776 0.681229 0.20529 0.69065899 0.207776 0.681229\n\t\t 0.25120601 0.69191897 0.207776 0.681229 0.20529 0.69065899 0.184911 0.682019 0.184911\n\t\t 0.682019 0.18846899 0.67398298 0.207776 0.681229 0.207776 0.681229 0.208046 0.67878801\n\t\t 0.251535 0.68821299 0.188972 0.67236 0.208046 0.67878801 0.207776 0.681229 0.207776\n\t\t 0.681229 0.18846899 0.67398298 0.188972 0.67236 0.188972 0.67236 0.18846899 0.67398298\n\t\t 0.155085 0.65250999 0.155085 0.65250999 0.14928199 0.66229796 0.155085 0.65250999\n\t\t 0.112222 0.64064002 0.14928199 0.66229796 0.14928199 0.66229796 0.146175 0.66950399\n\t\t 0.112222 0.64064002 0.146175 0.66950399 0.130183 0.69045901 0.130183 0.69045901 0.15474001\n\t\t 0.65295398 0.73977602 0.97656941 0.73923099 0.97386903 0.76185203 0.97139841 0.73977602\n\t\t 0.97656941 0.76185203 0.97139841 0.761244 0.97437388 0.76185203 0.97139841 0.76254302\n\t\t 0.9726122 0.761244 0.97437388 0.73977602 0.97656941 0.761244 0.97437388 0.76226801\n\t\t 0.97939932 0.768085 0.97959149 0.76226801 0.97939932 0.761244 0.97437388 0.76226801\n\t\t 0.97939932 0.768085 0.97959149 0.76971501 0.98755842 0.76971501 0.98755842 0.76387697\n\t\t 0.98740131 0.76226801 0.97939932 0.76591802 0.99743295 0.76387697 0.98740131 0.76971501\n\t\t 0.98755842 0.76971501 0.98755842 0.77180398 0.9975397 0.76591802 0.99743295 0.74081302\n\t\t 0.98155969 0.76226801 0.97939932 0.76387697 0.98740131 0.76226801 0.97939932 0.74081302\n\t\t 0.98155969 0.73977602 0.97656941 0.76387697 0.98740131 0.74254102 0.9894374 0.74081302\n\t\t 0.98155969 0.74449098 0.99944687 0.74254102 0.9894374 0.76387697 0.98740131 0.76387697\n\t\t 0.98740131;\n\tsetAttr \".uvst[0].uvsp[23250:23499]\" 0.76591802 0.99743295 0.74449098 0.99944687\n\t\t 0.78207999 0.98837632 0.76971501 0.98755842 0.768085 0.97959149 0.77180398 0.9975397\n\t\t 0.76971501 0.98755842 0.78207999 0.98837632 0.768085 0.97959149 0.780294 0.97963381\n\t\t 0.78207999 0.98837632 0.78207999 0.98837632 0.78435999 0.99933636 0.77180398 0.9975397\n\t\t 0.761244 0.97437388 0.766936 0.97455639 0.768085 0.97959149 0.780294 0.97963381 0.768085\n\t\t 0.97959149 0.766936 0.97455639 0.766936 0.97455639 0.778148 0.97383571 0.780294 0.97963381\n\t\t 0.77529502 0.97146982 0.778148 0.97383571 0.766936 0.97455639 0.766936 0.97455639\n\t\t 0.76498801 0.97213382 0.77529502 0.97146982 0.76498801 0.97213382 0.766936 0.97455639\n\t\t 0.761244 0.97437388 0.76498801 0.97213382 0.761244 0.97437388 0.76254302 0.9726122\n\t\t 0.76432902 0.97113228 0.76498997 0.9721359 0.76254302 0.9726122 0.76254302 0.9726122\n\t\t 0.76185203 0.97139841 0.76432902 0.97113228 0.86627603 0.83245802 0.87142801 0.81740999\n\t\t 0.89157403 0.82677102 0.89157403 0.82677102 0.88972598 0.84458697 0.86627603 0.83245802\n\t\t 0.86627603 0.83245802 0.88972598 0.84458697 0.88566101 0.87857598 0.88566101 0.87857598\n\t\t 0.85601598 0.86275101 0.86627603 0.83245802 0.85601598 0.86275101 0.88566101 0.87857598\n\t\t 0.883403 0.89477998 0.883403 0.89477998 0.85091603 0.87785298 0.85601598 0.86275101\n\t\t 0.74330699 0.0016509891 0.75889498 0.002556026 0.75806999 0.0047039986 0.75806999\n\t\t 0.0047039986 0.74275601 0.0038480163 0.74330699 0.0016509891 0.74330699 0.0016509891\n\t\t 0.74275601 0.0038480163 0.72892499 0.0035799742 0.72892499 0.0035799742 0.72920197\n\t\t 0.0013340116 0.74330699 0.0016509891 0.72920197 0.0013340116 0.72892499 0.0035799742\n\t\t 0.71526599 0.0037310123 0.71526599 0.0037310123 0.71527702 0.0014250278 0.72920197\n\t\t 0.0013340116 0.71527702 0.0014250278 0.71526599 0.0037310123 0.700288 0.0043780208\n\t\t 0.700288 0.0043780208 0.70005 0.001996994 0.71527702 0.0014250278 0.79083401 0.024802983\n\t\t 0.77415901 0.013175011 0.774867 0.010978997 0.774867 0.010978997 0.79149902 0.02265197\n\t\t 0.79083401 0.024802983 0.75889498 0.002556026 0.774867 0.010978997 0.77415901 0.013175011\n\t\t 0.77415901 0.013175011 0.75806999 0.0047039986 0.75889498 0.002556026 0.66763097\n\t\t 0.021300972 0.65627098 0.027653992 0.65505499 0.026154995 0.65505499 0.026154995\n\t\t 0.66666299 0.01958102 0.66763097 0.021300972 0.66763097 0.021300972 0.66666299 0.01958102\n\t\t 0.68913901 0.0075079799 0.68913901 0.0075079799 0.68961799 0.0096740127 0.66763097\n\t\t 0.021300972 0.700288 0.0043780208 0.68961799 0.0096740127 0.68913901 0.0075079799\n\t\t 0.68913901 0.0075079799 0.70005 0.001996994 0.700288 0.0043780208 0.42185 0.83162403\n\t\t 0.420533 0.80835301 0.44563299 0.80971897 0.44563299 0.80971897 0.44869599 0.83172601\n\t\t 0.42185 0.83162403 0.420533 0.80835301 0.42185 0.83162403 0.367423 0.83082998 0.367423\n\t\t 0.83082998 0.36844301 0.80451399 0.420533 0.80835301 0.366142 0.85516399 0.367423\n\t\t 0.83082998 0.42185 0.83162403 0.42185 0.83162403 0.42299399 0.85255504 0.366142 0.85516399\n\t\t 0.42185 0.83162403 0.44869599 0.83172601 0.45152801 0.85111302 0.45152801 0.85111302\n\t\t 0.42299399 0.85255504 0.42185 0.83162403 0.33404401 0.80204099 0.36844301 0.80451399\n\t\t 0.367423 0.83082998 0.367423 0.83082998 0.33134699 0.829642 0.33404401 0.80204099\n\t\t 0.28475901 0.79887301 0.33404401 0.80204099 0.33134699 0.829642 0.33134699 0.829642\n\t\t 0.27822301 0.82717597 0.28475901 0.79887301 0.23500299 0.79640996 0.28475901 0.79887301\n\t\t 0.27822301 0.82717597 0.27822301 0.82717597 0.225196 0.82338297 0.23500299 0.79640996\n\t\t 0.23500299 0.79640996 0.225196 0.82338297 0.18745901 0.82175601 0.18745901 0.82175601\n\t\t 0.198378 0.79467297 0.23500299 0.79640996 0.198378 0.79467297 0.18745901 0.82175601\n\t\t 0.12937 0.81943399 0.12937 0.81943399 0.142957 0.79033399 0.198378 0.79467297 0.120128\n\t\t 0.84801 0.12937 0.81943399 0.18745901 0.82175601 0.18745901 0.82175601 0.178938 0.85061699\n\t\t 0.120128 0.84801 0.178938 0.85061699 0.18745901 0.82175601 0.225196 0.82338297 0.225196\n\t\t 0.82338297 0.217693 0.85233098 0.178938 0.85061699 0.366142 0.85516399 0.42299399\n\t\t 0.85255504 0.424155 0.87317199 0.424155 0.87317199 0.42299399 0.85255504 0.45152801\n\t\t 0.85111302 0.27822301 0.82717597 0.33134699 0.829642 0.328724 0.85564202 0.328724\n\t\t 0.85564202 0.27312499 0.85449803 0.27822301 0.82717597 0.225196 0.82338297 0.27822301\n\t\t 0.82717597 0.27312499 0.85449803 0.27312499 0.85449803 0.217693 0.85233098 0.225196\n\t\t 0.82338297 0.27312499 0.85449803 0.328724 0.85564202 0.326107 0.88203597 0.326107\n\t\t 0.88203597 0.27056199 0.88413 0.27312499 0.85449803 0.217693 0.85233098 0.27312499\n\t\t 0.85449803 0.27056199 0.88413 0.27056199 0.88413 0.326107 0.88203597 0.323304 0.91085631\n\t\t 0.323304 0.91085631 0.26879299 0.91797519 0.27056199 0.88413 0.27056199 0.88413 0.214975\n\t\t 0.88395298 0.217693 0.85233098 0.214975 0.88395298 0.27056199 0.88413 0.26879299\n\t\t 0.91797519 0.26879299 0.91797519 0.21415 0.91946983 0.214975 0.88395298 0.323304\n\t\t 0.91085631 0.326107 0.88203597 0.364324 0.87919301 0.364324 0.87919301 0.326107 0.88203597\n\t\t 0.328724 0.85564202 0.364324 0.87919301 0.36234099 0.90484357 0.323304 0.91085631\n\t\t 0.36234099 0.90484357 0.364324 0.87919301 0.424155 0.87317199 0.424155 0.87317199\n\t\t 0.42566201 0.895706 0.36234099 0.90484357 0.17533401 0.88305199 0.214975 0.88395298\n\t\t 0.21415 0.91946983 0.120128 0.84801 0.178938 0.85061699 0.17533401 0.88305199 0.217693\n\t\t 0.85233098 0.214975 0.88395298 0.17533401 0.88305199 0.17533401 0.88305199 0.178938\n\t\t 0.85061699 0.217693 0.85233098 0.21415 0.91946983 0.174026 0.92001081;\n\tsetAttr \".uvst[0].uvsp[23500:23749]\" 0.17533401 0.88305199 0.17533401 0.88305199\n\t\t 0.174026 0.92001081 0.111635 0.91796088 0.111635 0.91796088 0.114806 0.88105398 0.17533401\n\t\t 0.88305199 0.328724 0.85564202 0.366142 0.85516399 0.364324 0.87919301 0.424155 0.87317199\n\t\t 0.364324 0.87919301 0.366142 0.85516399 0.089452103 0.87933803 0.114806 0.88105398\n\t\t 0.111635 0.91796088 0.114806 0.88105398 0.089452103 0.87933803 0.095866397 0.84599799\n\t\t 0.056219399 0.83975303 0.095866397 0.84599799 0.089452103 0.87933803 0.089452103\n\t\t 0.87933803 0.048642602 0.87414098 0.056219399 0.83975303 0.048642602 0.87414098 0.089452103\n\t\t 0.87933803 0.085736804 0.91619211 0.111635 0.91796088 0.085736804 0.91619211 0.089452103\n\t\t 0.87933803 0.085736804 0.91619211 0.044029102 0.9131524 0.048642602 0.87414098 0.095866397\n\t\t 0.84599799 0.056219399 0.83975303 0.0660135 0.810444 0.0660135 0.810444 0.105076\n\t\t 0.81751698 0.095866397 0.84599799 0.105076 0.81751698 0.0660135 0.810444 0.079697996\n\t\t 0.78073096 0.079697996 0.78073096 0.118948 0.78847396 0.105076 0.81751698 0.095866397\n\t\t 0.84599799 0.120128 0.84801 0.114806 0.88105398 0.17533401 0.88305199 0.114806 0.88105398\n\t\t 0.120128 0.84801 0.105076 0.81751698 0.118948 0.78847396 0.142957 0.79033399 0.142957\n\t\t 0.79033399 0.12937 0.81943399 0.105076 0.81751698 0.095866397 0.84599799 0.105076\n\t\t 0.81751698 0.12937 0.81943399 0.12937 0.81943399 0.120128 0.84801 0.095866397 0.84599799\n\t\t 0.056219399 0.83975303 0.048642602 0.87414098 0.048642602 0.87414098 0.044029102\n\t\t 0.9131524 0.056219399 0.83975303 0.0660135 0.810444 0.056219399 0.83975303 0.044029102\n\t\t 0.9131524 0.079697996 0.78073096 0.0660135 0.810444 0.0660135 0.810444 0.079697996\n\t\t 0.78073096 0.44919199 0.78250802 0.42668399 0.78149801 0.43040201 0.755144 0.43040201\n\t\t 0.755144 0.456227 0.75485802 0.44919199 0.78250802 0.43040201 0.755144 0.42668399\n\t\t 0.78149801 0.38194099 0.77833903 0.38194099 0.77833903 0.39609501 0.75272501 0.43040201\n\t\t 0.755144 0.39609501 0.75272501 0.38194099 0.77833903 0.351019 0.77561903 0.351019\n\t\t 0.77561903 0.368705 0.75051999 0.39609501 0.75272501 0.38194099 0.77833903 0.42668399\n\t\t 0.78149801 0.420533 0.80835301 0.420533 0.80835301 0.42668399 0.78149801 0.44919199\n\t\t 0.78250802 0.420533 0.80835301 0.36844301 0.80451399 0.38194099 0.77833903 0.351019\n\t\t 0.77561903 0.38194099 0.77833903 0.36844301 0.80451399 0.44919199 0.78250802 0.44563299\n\t\t 0.80971897 0.420533 0.80835301 0.32250601 0.74537301 0.368705 0.75051999 0.351019\n\t\t 0.77561903 0.351019 0.77561903 0.30224001 0.77092397 0.32250601 0.74537301 0.30224001\n\t\t 0.77092397 0.351019 0.77561903 0.33404401 0.80204099 0.36844301 0.80451399 0.33404401\n\t\t 0.80204099 0.351019 0.77561903 0.33404401 0.80204099 0.28475901 0.79887301 0.30224001\n\t\t 0.77092397 0.30224001 0.77092397 0.28475901 0.79887301 0.23500299 0.79640996 0.23500299\n\t\t 0.79640996 0.25174499 0.76654303 0.30224001 0.77092397 0.32250601 0.74537301 0.30224001\n\t\t 0.77092397 0.25174499 0.76654303 0.25174499 0.76654303 0.27289 0.73948801 0.32250601\n\t\t 0.74537301 0.27289 0.73948801 0.25174499 0.76654303 0.215376 0.76297998 0.215376\n\t\t 0.76297998 0.25174499 0.76654303 0.23500299 0.79640996 0.215376 0.76297998 0.236084\n\t\t 0.73398399 0.27289 0.73948801 0.236084 0.73398399 0.215376 0.76297998 0.162195 0.75542098\n\t\t 0.162195 0.75542098 0.182005 0.72391498 0.236084 0.73398399 0.142957 0.79033399 0.162195\n\t\t 0.75542098 0.215376 0.76297998 0.139342 0.75237799 0.162195 0.75542098 0.142957 0.79033399\n\t\t 0.142957 0.79033399 0.118948 0.78847396 0.139342 0.75237799 0.139342 0.75237799 0.118948\n\t\t 0.78847396 0.079697996 0.78073096 0.079697996 0.78073096 0.102257 0.74307203 0.139342\n\t\t 0.75237799 0.160769 0.71903199 0.139342 0.75237799 0.102257 0.74307203 0.160769 0.71903199\n\t\t 0.182005 0.72391498 0.162195 0.75542098 0.162195 0.75542098 0.139342 0.75237799 0.160769\n\t\t 0.71903199 0.102257 0.74307203 0.123933 0.70884097 0.160769 0.71903199 0.215376 0.76297998\n\t\t 0.198378 0.79467297 0.142957 0.79033399 0.23500299 0.79640996 0.198378 0.79467297\n\t\t 0.215376 0.76297998 0.102257 0.74307203 0.079697996 0.78073096 0.102257 0.74307203\n\t\t 0.123933 0.70884097 0.102257 0.74307203 0.123933 0.70884097 0.48168099 0.12727797\n\t\t 0.481078 0.12807798 0.47907501 0.12698501 0.47907501 0.12698501 0.47972 0.126176\n\t\t 0.48168099 0.12727797 0.65029198 0.032266021 0.65096903 0.031534016 0.670394 0.037496984\n\t\t 0.670394 0.037496984 0.67025298 0.039241016 0.65029198 0.032266021 0.67025298 0.039241016\n\t\t 0.670394 0.037496984 0.68782002 0.04243499 0.68782002 0.04243499 0.68931699 0.044767976\n\t\t 0.67025298 0.039241016 0.68931699 0.044767976 0.68782002 0.04243499 0.70376199 0.04094702\n\t\t 0.70376199 0.04094702 0.70450902 0.04361099 0.68931699 0.044767976 0.70450902 0.04361099\n\t\t 0.70376199 0.04094702 0.71803403 0.040867984 0.71803403 0.040867984 0.71846199 0.043603003\n\t\t 0.70450902 0.04361099 0.71846199 0.043603003 0.71803403 0.040867984 0.732086 0.041527987\n\t\t 0.732086 0.041527987 0.73223799 0.044294 0.71846199 0.043603003 0.73223799 0.044294\n\t\t 0.732086 0.041527987 0.74749202 0.043034017 0.74749202 0.043034017 0.74720401 0.04579401\n\t\t 0.73223799 0.044294 0.74720401 0.04579401 0.74749202 0.043034017 0.75941497 0.039960027\n\t\t 0.75941497 0.039960027 0.758977 0.042446971 0.74720401 0.04579401 0.78378999 0.035978973\n\t\t 0.758977 0.042446971 0.75941497 0.039960027 0.75941497 0.039960027 0.78433502 0.034027994\n\t\t 0.78378999 0.035978973 0.78378999 0.035978973 0.78433502 0.034027994 0.797261 0.030694008\n\t\t 0.797261 0.030694008 0.79676402 0.032396972 0.78378999 0.035978973;\n\tsetAttr \".uvst[0].uvsp[23750:23999]\" 0.50785601 0.010591984 0.506199 0.0092499852\n\t\t 0.51691401 0.0013560057 0.51691401 0.0013560057 0.51826602 0.0027909875 0.50785601\n\t\t 0.010591984 0.506199 0.0092499852 0.50785601 0.010591984 0.489052 0.026835978 0.489052\n\t\t 0.026835978 0.48679101 0.025680006 0.506199 0.0092499852 0.48679101 0.025680006 0.489052\n\t\t 0.026835978 0.48064199 0.035273015 0.48064199 0.035273015 0.47807199 0.034187019\n\t\t 0.48679101 0.025680006 0.47807199 0.034187019 0.48064199 0.035273015 0.475732 0.049477994\n\t\t 0.475732 0.049477994 0.47320199 0.048309028 0.47807199 0.034187019 0.47320199 0.048309028\n\t\t 0.475732 0.049477994 0.471627 0.062528014 0.471627 0.062528014 0.46913099 0.061312973\n\t\t 0.47320199 0.048309028 0.46913099 0.061312973 0.471627 0.062528014 0.46794799 0.075886011\n\t\t 0.46794799 0.075886011 0.46549401 0.074622989 0.46913099 0.061312973 0.46549401 0.074622989\n\t\t 0.46794799 0.075886011 0.464443 0.090816021 0.464443 0.090816021 0.462028 0.089468002\n\t\t 0.46549401 0.074622989 0.462028 0.089468002 0.464443 0.090816021 0.47160599 0.10753697\n\t\t 0.47160599 0.10753697 0.469933 0.10783303 0.462028 0.089468002 0.469933 0.10783303\n\t\t 0.47160599 0.10753697 0.47972 0.126176 0.47972 0.126176 0.47907501 0.12698501 0.469933\n\t\t 0.10783303 0.84398198 0.95991212 0.82179201 0.97434449 0.77908403 0.93861169 0.77908403\n\t\t 0.93861169 0.80793899 0.9256168 0.84398198 0.95991212 0.75456798 0.9494676 0.77908403\n\t\t 0.93861169 0.82179201 0.97434449 0.82179201 0.97434449 0.796345 0.9876036 0.75456798\n\t\t 0.9494676 0.85091603 0.87785298 0.883403 0.89477998 0.87388003 0.91226202 0.87388003\n\t\t 0.91226202 0.83976197 0.89059901 0.85091603 0.87785298 0.83976197 0.89059901 0.87388003\n\t\t 0.91226202 0.86472201 0.92800122 0.86472201 0.92800122 0.82959503 0.90183979 0.83976197\n\t\t 0.89059901 0.82959503 0.90183979 0.86472201 0.92800122 0.85497701 0.94359142 0.85497701\n\t\t 0.94359142 0.81946099 0.91314852 0.82959503 0.90183979 0.81946099 0.91314852 0.85497701\n\t\t 0.94359142 0.84398198 0.95991212 0.84398198 0.95991212 0.80793899 0.9256168 0.81946099\n\t\t 0.91314852 0.088991098 0.99580085 0.047867101 0.99423927 0.046918299 0.97280562 0.046918299\n\t\t 0.97280562 0.0882084 0.97422051 0.088991098 0.99580085 0.0882084 0.97422051 0.046918299\n\t\t 0.97280562 0.045530401 0.9520492 0.045530401 0.9520492 0.0872183 0.9536407 0.0882084\n\t\t 0.97422051 0.0872183 0.9536407 0.045530401 0.9520492 0.0444116 0.93239421 0.0444116\n\t\t 0.93239421 0.086378001 0.9345687 0.0872183 0.9536407 0.086378001 0.9345687 0.0444116\n\t\t 0.93239421 0.044029102 0.9131524 0.044029102 0.9131524 0.085736804 0.91619211 0.086378001\n\t\t 0.9345687 0.115325 0.97605443 0.0882084 0.97422051 0.0872183 0.9536407 0.0872183\n\t\t 0.9536407 0.113897 0.9554764 0.115325 0.97605443 0.0882084 0.97422051 0.115325 0.97605443\n\t\t 0.116869 0.99763376 0.116869 0.99763376 0.088991098 0.99580085 0.0882084 0.97422051\n\t\t 0.116869 0.99763376 0.115325 0.97605443 0.180702 0.97734451 0.180702 0.97734451 0.115325\n\t\t 0.97605443 0.113897 0.9554764 0.180702 0.97734451 0.183431 0.99870276 0.116869 0.99763376\n\t\t 0.113897 0.9554764 0.17855699 0.9569515 0.180702 0.97734451 0.176465 0.93823957 0.17855699\n\t\t 0.9569515 0.113897 0.9554764 0.113897 0.9554764 0.112731 0.93640012 0.176465 0.93823957\n\t\t 0.0872183 0.9536407 0.086378001 0.9345687 0.112731 0.93640012 0.112731 0.93640012\n\t\t 0.113897 0.9554764 0.0872183 0.9536407 0.174026 0.92001081 0.176465 0.93823957 0.112731\n\t\t 0.93640012 0.176465 0.93823957 0.174026 0.92001081 0.21415 0.91946983 0.21415 0.91946983\n\t\t 0.218034 0.937886 0.176465 0.93823957 0.17855699 0.9569515 0.176465 0.93823957 0.218034\n\t\t 0.937886 0.112731 0.93640012 0.111635 0.91796088 0.174026 0.92001081 0.111635 0.91796088\n\t\t 0.112731 0.93640012 0.086378001 0.9345687 0.086378001 0.9345687 0.085736804 0.91619211\n\t\t 0.111635 0.91796088 0.218034 0.937886 0.221321 0.95750862 0.17855699 0.9569515 0.180702\n\t\t 0.97734451 0.17855699 0.9569515 0.221321 0.95750862 0.275682 0.93605411 0.218034\n\t\t 0.937886 0.21415 0.91946983 0.218034 0.937886 0.275682 0.93605411 0.221321 0.95750862\n\t\t 0.21415 0.91946983 0.26879299 0.91797519 0.275682 0.93605411 0.333094 0.92651117\n\t\t 0.275682 0.93605411 0.26879299 0.91797519 0.26879299 0.91797519 0.323304 0.91085631\n\t\t 0.333094 0.92651117 0.333094 0.92651117 0.323304 0.91085631 0.36234099 0.90484357\n\t\t 0.36234099 0.90484357 0.37078801 0.91993648 0.333094 0.92651117 0.37078801 0.91993648\n\t\t 0.36234099 0.90484357 0.42566201 0.895706 0.42566201 0.895706 0.43161899 0.91130829\n\t\t 0.37078801 0.91993648 0.38741499 0.95105827 0.37078801 0.91993648 0.43161899 0.91130829\n\t\t 0.43161899 0.91130829 0.44270301 0.94329238 0.38741499 0.95105827 0.44942001 0.96028179\n\t\t 0.38741499 0.95105827 0.44270301 0.94329238 0.44942001 0.96028179 0.44270301 0.94329238\n\t\t 0.459113 0.9340257 0.47592101 0.93936777 0.44942001 0.96028179 0.459113 0.9340257\n\t\t 0.47592101 0.93936777 0.482844 0.95614439 0.44942001 0.96028179 0.46080399 0.93168032\n\t\t 0.47592101 0.93936777 0.459113 0.9340257 0.46080399 0.93168032 0.45565 0.91625261\n\t\t 0.47592101 0.93936777 0.45565 0.91625261 0.46380699 0.90680349 0.47592101 0.93936777\n\t\t 0.45565 0.91625261 0.45499399 0.91488087 0.46380699 0.90680349 0.44942001 0.96028179\n\t\t 0.415943 0.96437639 0.38741499 0.95105827 0.415943 0.96437639 0.39583999 0.967462\n\t\t 0.38741499 0.95105827 0.43161899 0.91130829 0.42566201 0.895706 0.45784 0.89104801\n\t\t 0.45499399 0.91488087 0.45784 0.89104801 0.46380699 0.90680349 0.45276901 0.91354668\n\t\t 0.43161899 0.91130829 0.45784 0.89104801 0.45499399 0.91488087;\n\tsetAttr \".uvst[0].uvsp[24000:24249]\" 0.45276901 0.91354668 0.45784 0.89104801 0.44258201\n\t\t 0.94013119 0.44270301 0.94329238 0.43161899 0.91130829 0.43161899 0.91130829 0.43522799\n\t\t 0.91332358 0.44258201 0.94013119 0.84703702 0.037819982 0.85297102 0.033181012 0.85712498\n\t\t 0.035970986 0.85712498 0.035970986 0.85163599 0.040993989 0.84703702 0.037819982\n\t\t 0.85163599 0.040993989 0.85712498 0.035970986 0.864986 0.04114902 0.864986 0.04114902\n\t\t 0.86031997 0.046984971 0.85163599 0.040993989 0.87060499 0.035342991 0.864986 0.04114902\n\t\t 0.85712498 0.035970986 0.85712498 0.035970986 0.86282301 0.030333996 0.87060499 0.035342991\n\t\t 0.86282301 0.030333996 0.85712498 0.035970986 0.85297102 0.033181012 0.85297102 0.033181012\n\t\t 0.85674101 0.026664972 0.86282301 0.030333996 0.88188303 0.060661972 0.86031997 0.046984971\n\t\t 0.864986 0.04114902 0.864986 0.04114902 0.88685602 0.054566026 0.88188303 0.060661972\n\t\t 0.88685602 0.054566026 0.864986 0.04114902 0.87060499 0.035342991 0.88188303 0.060661972\n\t\t 0.88685602 0.054566026 0.90618998 0.06654799 0.90618998 0.06654799 0.90022099 0.072318971\n\t\t 0.88188303 0.060661972 0.90022099 0.072318971 0.90618998 0.06654799 0.93713701 0.084114015\n\t\t 0.93713701 0.084114015 0.93239802 0.090790987 0.90022099 0.072318971 0.93239802 0.090790987\n\t\t 0.93713701 0.084114015 0.950656 0.091057003 0.950656 0.091057003 0.94616801 0.097998023\n\t\t 0.93239802 0.090790987 0.950656 0.091057003 0.93713701 0.084114015 0.94297999 0.077464998\n\t\t 0.94297999 0.077464998 0.95644999 0.084352016 0.950656 0.091057003 0.94616801 0.097998023\n\t\t 0.950656 0.091057003 0.95485902 0.093195021 0.95485902 0.093195021 0.950656 0.091057003\n\t\t 0.95644999 0.084352016 0.95485902 0.093195021 0.95035899 0.10011297 0.94616801 0.097998023\n\t\t 0.95644999 0.084352016 0.96061599 0.08654201 0.95485902 0.093195021 0.93713701 0.084114015\n\t\t 0.90618998 0.06654799 0.912175 0.060491025 0.912175 0.060491025 0.94297999 0.077464998\n\t\t 0.93713701 0.084114015 0.89266402 0.048618972 0.912175 0.060491025 0.90618998 0.06654799\n\t\t 0.90618998 0.06654799 0.88685602 0.054566026 0.89266402 0.048618972 0.87060499 0.035342991\n\t\t 0.89266402 0.048618972 0.88685602 0.054566026 0.96406502 0.077628016 0.95644999 0.084352016\n\t\t 0.94297999 0.077464998 0.94297999 0.077464998 0.95055902 0.070792019 0.96406502 0.077628016\n\t\t 0.95055902 0.070792019 0.94297999 0.077464998 0.912175 0.060491025 0.972709 0.070744991\n\t\t 0.96406502 0.077628016 0.95055902 0.070792019 0.95055902 0.070792019 0.95920402 0.063947022\n\t\t 0.972709 0.070744991 0.912175 0.060491025 0.92001998 0.053870022 0.95055902 0.070792019\n\t\t 0.95920402 0.063947022 0.95055902 0.070792019 0.92001998 0.053870022 0.92001998 0.053870022\n\t\t 0.912175 0.060491025 0.89266402 0.048618972 0.92001998 0.053870022 0.92872399 0.046958029\n\t\t 0.95920402 0.063947022 0.89266402 0.048618972 0.90053302 0.041987002 0.92001998 0.053870022\n\t\t 0.90053302 0.041987002 0.89266402 0.048618972 0.87060499 0.035342991 0.92001998 0.053870022\n\t\t 0.90053302 0.041987002 0.90925598 0.035022974 0.90925598 0.035022974 0.92872399 0.046958029\n\t\t 0.92001998 0.053870022 0.87060499 0.035342991 0.878483 0.028609991 0.90053302 0.041987002\n\t\t 0.87066698 0.02363801 0.878483 0.028609991 0.87060499 0.035342991 0.87060499 0.035342991\n\t\t 0.86282301 0.030333996 0.87066698 0.02363801 0.90053302 0.041987002 0.878483 0.028609991\n\t\t 0.88722003 0.021552026 0.88722003 0.021552026 0.90925598 0.035022974 0.90053302 0.041987002\n\t\t 0.88722003 0.021552026 0.878483 0.028609991 0.87066698 0.02363801 0.87066698 0.02363801\n\t\t 0.87936401 0.016578972 0.88722003 0.021552026 0.96406502 0.077628016 0.972709 0.070744991\n\t\t 0.97685701 0.072865009 0.97685701 0.072865009 0.96822602 0.079788983 0.96406502 0.077628016\n\t\t 0.95644999 0.084352016 0.96406502 0.077628016 0.96822602 0.079788983 0.96822602 0.079788983\n\t\t 0.96061599 0.08654201 0.95644999 0.084352016 0.87066698 0.02363801 0.86282301 0.030333996\n\t\t 0.85674101 0.026664972 0.85674101 0.026664972 0.86648703 0.019896984 0.87066698 0.02363801\n\t\t 0.87936401 0.016578972 0.87066698 0.02363801 0.86648703 0.019896984 0.86648703 0.019896984\n\t\t 0.875018 0.013567984 0.87936401 0.016578972 0.86970001 0.0093489885 0.875018 0.013567984\n\t\t 0.86648703 0.019896984 0.86648703 0.019896984 0.86163902 0.013337016 0.86970001 0.0093489885\n\t\t 0.86163902 0.013337016 0.86648703 0.019896984 0.85683101 0.026417017 0.85683101 0.026417017\n\t\t 0.85180497 0.018355012 0.86163902 0.013337016 0.86391801 0.0045229793 0.86970001\n\t\t 0.0093489885 0.86163902 0.013337016 0.86163902 0.013337016 0.85653597 0.0052620173\n\t\t 0.86391801 0.0045229793 0.85653597 0.0052620173 0.86163902 0.013337016 0.85180497\n\t\t 0.018355012 0.85180497 0.018355012 0.84721601 0.0072479844 0.85653597 0.0052620173\n\t\t 0.36100399 0.66332901 0.36921099 0.66940296 0.36293301 0.67467099 0.36293301 0.67467099\n\t\t 0.35591099 0.66744196 0.36100399 0.66332901 0.35591099 0.66744196 0.36293301 0.67467099\n\t\t 0.35396901 0.67737997 0.35396901 0.67737997 0.34745401 0.67073601 0.35591099 0.66744196\n\t\t 0.36746001 0.699745 0.35396901 0.67737997 0.36293301 0.67467099 0.36293301 0.67467099\n\t\t 0.37414399 0.68881899 0.36746001 0.699745 0.37414399 0.68881899 0.36293301 0.67467099\n\t\t 0.36921099 0.66940296 0.37414399 0.68881899 0.36921099 0.66940296 0.37490499 0.67745602\n\t\t 0.37414399 0.68881899 0.37490499 0.67745602 0.89098197 0.076961994 0.92762601 0.098527014\n\t\t 0.89098197 0.076961994 0.881468 0.080254972 0.89098197 0.076961994 0.92762601 0.098527014\n\t\t 0.92762601 0.098527014 0.92817599 0.10691398 0.881468 0.080254972 0.92762601 0.098527014\n\t\t 0.942586 0.10712498 0.92762601 0.098527014 0.942586 0.10712498 0.940256 0.11558998\n\t\t 0.92762601 0.098527014 0.940256 0.11558998 0.92275 0.109083 0.92762601 0.098527014\n\t\t 0.89098197 0.076961994 0.87623298 0.067717016 0.87623298 0.067717016 0.89098197 0.076961994\n\t\t 0.881468 0.080254972 0.87553298 0.076572001;\n\tsetAttr \".uvst[0].uvsp[24250:24499]\" 0.87553298 0.076572001 0.87623298 0.067717016\n\t\t 0.89098197 0.076961994 0.942586 0.10712498 0.94665498 0.10950398 0.942586 0.10712498\n\t\t 0.944471 0.11834103 0.940256 0.11558998 0.942586 0.10712498 0.942586 0.10712498 0.94665498\n\t\t 0.10950398 0.944471 0.11834103 0.940256 0.11558998 0.944471 0.11834103 0.93648702\n\t\t 0.14544702 0.93648702 0.14544702 0.92934901 0.14492899 0.940256 0.11558998 0.92275\n\t\t 0.109083 0.940256 0.11558998 0.92934901 0.14492899 0.92934901 0.14492899 0.91709602\n\t\t 0.15165102 0.92275 0.109083 0.89427501 0.24050498 0.91709602 0.15165102 0.92934901\n\t\t 0.14492899 0.92934901 0.14492899 0.90463901 0.240197 0.89427501 0.24050498 0.87623298\n\t\t 0.067717016 0.87553298 0.076572001 0.85036898 0.059862018 0.85036898 0.059862018\n\t\t 0.85502303 0.053844988 0.87623298 0.067717016 0.85502303 0.053844988 0.85036898 0.059862018\n\t\t 0.83154398 0.047464013 0.83154398 0.047464013 0.84238601 0.044852018 0.85502303 0.053844988\n\t\t 0.85502303 0.053844988 0.84238601 0.044852018 0.87623298 0.067717016 0.85502303 0.053844988\n\t\t 0.87623298 0.067717016 0.84238601 0.044852018 0.84238601 0.044852018 0.83459097 0.039299011\n\t\t 0.83459097 0.039299011 0.81859899 0.038455009 0.83459097 0.039299011 0.84238601 0.044852018\n\t\t 0.84238601 0.044852018 0.83154398 0.047464013 0.81859899 0.038455009 0.84703702 0.037819982\n\t\t 0.84703702 0.037819982 0.85163599 0.040993989 0.85163599 0.040993989 0.85163599 0.040993989\n\t\t 0.86031997 0.046984971 0.86031997 0.046984971 0.88188303 0.060661972 0.88188303 0.060661972\n\t\t 0.88188303 0.060661972 0.88188303 0.060661972 0.90022099 0.072318971 0.90022099 0.072318971\n\t\t 0.93239802 0.090790987 0.93239802 0.090790987 0.93239802 0.090790987 0.94616801 0.097998023\n\t\t 0.94616801 0.097998023 0.94616801 0.097998023 0.95035899 0.10011297 0.95035899 0.10011297\n\t\t 0.92275 0.109083 0.92817599 0.10691398 0.92762601 0.098527014 0.327829 0.39128703\n\t\t 0.33479899 0.39079303 0.335235 0.39322001 0.335235 0.39322001 0.32844001 0.39379299\n\t\t 0.327829 0.39128703 0.335235 0.39322001 0.33479899 0.39079303 0.34248799 0.39179999\n\t\t 0.34248799 0.39179999 0.34273899 0.39413297 0.335235 0.39322001 0.35238799 0.39684999\n\t\t 0.34273899 0.39413297 0.34248799 0.39179999 0.34248799 0.39179999 0.35216099 0.39456803\n\t\t 0.35238799 0.39684999 0.35238799 0.39684999 0.35216099 0.39456803 0.36274499 0.39827001\n\t\t 0.36274499 0.39827001 0.362968 0.40055501 0.35238799 0.39684999 0.327829 0.39128703\n\t\t 0.32844001 0.39379299 0.327829 0.39128703 0.31900999 0.39446402 0.31940901 0.39712101\n\t\t 0.31900999 0.39446402 0.31900999 0.39446402 0.31940901 0.39712101 0.311526 0.401223\n\t\t 0.311526 0.401223 0.31132901 0.39849502 0.31900999 0.39446402 0.286358 0.409383 0.31132901\n\t\t 0.39849502 0.311526 0.401223 0.311526 0.401223 0.288073 0.41163999 0.286358 0.409383\n\t\t 0.84266597 0.29570597 0.84215099 0.289114 0.84473503 0.28878099 0.84473503 0.28878099\n\t\t 0.84524399 0.29561901 0.84266597 0.29570597 0.84266597 0.29570597 0.84524399 0.29561901\n\t\t 0.84575099 0.302459 0.84575099 0.302459 0.84318 0.30229902 0.84266597 0.29570597\n\t\t 0.0420921 0.44345701 0.050326299 0.43925202 0.053348798 0.44477898 0.053348798 0.44477898\n\t\t 0.046300601 0.44892401 0.0420921 0.44345701 0.053348798 0.44477898 0.050326299 0.43925202\n\t\t 0.060048401 0.43758798 0.060048401 0.43758798 0.061934199 0.44259399 0.053348798\n\t\t 0.44477898 0.072517402 0.44266099 0.061934199 0.44259399 0.060048401 0.43758798 0.060048401\n\t\t 0.43758798 0.071300998 0.438829 0.072517402 0.44266099 0.084048197 0.44517303 0.072517402\n\t\t 0.44266099 0.071300998 0.438829 0.071300998 0.438829 0.0831533 0.44164002 0.084048197\n\t\t 0.44517303 0.046300601 0.44892401 0.053348798 0.44477898 0.055163398 0.44806099 0.055163398\n\t\t 0.44806099 0.053348798 0.44477898 0.061934199 0.44259399 0.055163398 0.44806099 0.048514102\n\t\t 0.451689 0.046300601 0.44892401 0.061934199 0.44259399 0.063020103 0.44571298 0.055163398\n\t\t 0.44806099 0.073013604 0.44555002 0.063020103 0.44571298 0.061934199 0.44259399 0.061934199\n\t\t 0.44259399 0.072517402 0.44266099 0.073013604 0.44555002 0.072517402 0.44266099 0.084048197\n\t\t 0.44517303 0.083636597 0.448901 0.083636597 0.448901 0.073013604 0.44555002 0.072517402\n\t\t 0.44266099 0.048514102 0.451689 0.055163398 0.44806099 0.056696702 0.45117402 0.056696702\n\t\t 0.45117402 0.055163398 0.44806099 0.063020103 0.44571298 0.056696702 0.45117402 0.050877001\n\t\t 0.454427 0.048514102 0.451689 0.063020103 0.44571298 0.063781999 0.44902498 0.056696702\n\t\t 0.45117402 0.073283598 0.44889802 0.063781999 0.44902498 0.063020103 0.44571298 0.063020103\n\t\t 0.44571298 0.073013604 0.44555002 0.073283598 0.44889802 0.073013604 0.44555002 0.083636597\n\t\t 0.448901 0.082952 0.45191401 0.082952 0.45191401 0.073283598 0.44889802 0.073013604\n\t\t 0.44555002 0.048514102 0.451689 0.050877001 0.454427 0.048514102 0.451689 0.0455244\n\t\t 0.45477802 0.0455244 0.45477802 0.0416869 0.459683 0.0416869 0.459683 0.0392165 0.45712\n\t\t 0.0392165 0.45712 0.033815399 0.45136398 0.033815399 0.45136398 0.033815399 0.45136398\n\t\t 0.0392165 0.45712 0.033728801 0.46559203 0.033728801 0.46559203 0.0392165 0.45712\n\t\t 0.0416869 0.459683 0.033728801 0.46559203 0.0275224 0.45938402 0.033815399 0.45136398\n\t\t 0.0086393496 0.48147899 0.0275224 0.45938402 0.033728801 0.46559203 0.033728801 0.46559203\n\t\t 0.019014601 0.48644102 0.0086393496 0.48147899 0.0416869 0.459683 0.036956899 0.46824098\n\t\t 0.033728801 0.46559203 0.019014601 0.48644102 0.033728801 0.46559203 0.036956899\n\t\t 0.46824098 0.036956899 0.46824098 0.0242359 0.48758 0.019014601 0.48644102 0.036956899\n\t\t 0.46824098 0.0416869 0.459683 0.044039901 0.46187901 0.044039901 0.46187901 0.0416869\n\t\t 0.459683 0.044039901 0.46187901 0.039659899 0.46973997 0.036956899 0.46824098;\n\tsetAttr \".uvst[0].uvsp[24500:24749]\" 0.0242359 0.48758 0.036956899 0.46824098 0.039659899\n\t\t 0.46973997 0.044039901 0.46187901 0.039659899 0.46973997 0.028958101 0.48599797 0.0242359\n\t\t 0.48758 0.046300601 0.44892401 0.0420921 0.44345701 0.046300601 0.44892401 0.046300601\n\t\t 0.44892401 0.048514102 0.451689 0.050877001 0.454427 0.89054602 0.13333601 0.89885801\n\t\t 0.13305199 0.89717698 0.141249 0.89717698 0.141249 0.88925898 0.14215302 0.89054602\n\t\t 0.13333601 0.89054602 0.13333601 0.88925898 0.14215302 0.88134199 0.143058 0.88134199\n\t\t 0.143058 0.88223398 0.13361901 0.89054602 0.13333601 0.89885801 0.13305199 0.89054602\n\t\t 0.13333601 0.89175498 0.12976903 0.89175498 0.12976903 0.89054602 0.13333601 0.88223398\n\t\t 0.13361901 0.89175498 0.12976903 0.89998698 0.12963599 0.89885801 0.13305199 0.88223398\n\t\t 0.13361901 0.88352197 0.12990201 0.89175498 0.12976903 0.89998698 0.12963599 0.89175498\n\t\t 0.12976903 0.89379603 0.12651098 0.89379603 0.12651098 0.89175498 0.12976903 0.88352197\n\t\t 0.12990201 0.89379603 0.12651098 0.90186697 0.12639898 0.89998698 0.12963599 0.88352197\n\t\t 0.12990201 0.88572598 0.12662202 0.89379603 0.12651098 0.82417798 0.18992299 0.82443702\n\t\t 0.19155401 0.82417798 0.18992299 0.82443702 0.19155401 0.82417798 0.18992299 0.83197498\n\t\t 0.18862301 0.83197498 0.18862301 0.83248198 0.19032699 0.82443702 0.19155401 0.83248198\n\t\t 0.19032699 0.83197498 0.18862301 0.85658002 0.18762702 0.85658002 0.18762702 0.85803097\n\t\t 0.18896103 0.83248198 0.19032699 0.85803097 0.18896103 0.85658002 0.18762702 0.857454\n\t\t 0.18079197 0.857454 0.18079197 0.85898203 0.18124598 0.85803097 0.18896103 0.85898203\n\t\t 0.18124598 0.857454 0.18079197 0.85823798 0.17405897 0.85823798 0.17405897 0.86003399\n\t\t 0.17342901 0.85898203 0.18124598 0.815741 0.19106102 0.815741 0.19106102 0.81544602\n\t\t 0.18978399 0.81544602 0.18978399 0.815741 0.19106102 0.808887 0.18960398 0.808887\n\t\t 0.18960398 0.809003 0.18860298 0.81544602 0.18978399 0.809003 0.18860298 0.808887\n\t\t 0.18960398 0.80130899 0.18837702 0.80130899 0.18837702 0.801956 0.18722397 0.809003\n\t\t 0.18860298 0.801956 0.18722397 0.80130899 0.18837702 0.79338902 0.1839 0.79338902\n\t\t 0.1839 0.79416001 0.18250102 0.801956 0.18722397 0.79416001 0.18250102 0.79338902\n\t\t 0.1839 0.78694302 0.17617202 0.78694302 0.17617202 0.787691 0.17476201 0.79416001\n\t\t 0.18250102 0.72938001 0.065674007 0.72902697 0.067391992 0.72080398 0.066233993 0.72080398\n\t\t 0.066233993 0.721349 0.064522028 0.72938001 0.065674007 0.72902697 0.067391992 0.72938001\n\t\t 0.065674007 0.72902697 0.067391992 0.721349 0.064522028 0.72080398 0.066233993 0.69675398\n\t\t 0.065585017 0.69675398 0.065585017 0.69811797 0.064248979 0.721349 0.064522028 0.69811797\n\t\t 0.064248979 0.69675398 0.065585017 0.69553798 0.057914972 0.69553798 0.057914972\n\t\t 0.69704199 0.057678998 0.69811797 0.064248979 0.69704199 0.057678998 0.69553798 0.057914972\n\t\t 0.69420898 0.05014497 0.69420898 0.05014497 0.69605702 0.051209986 0.69704199 0.057678998\n\t\t 0.73837298 0.065394998 0.73837298 0.065394998 0.73793501 0.066735029 0.73793501 0.066735029\n\t\t 0.73837298 0.065394998 0.74466503 0.064031005 0.74466503 0.064031005 0.74475998 0.064989984\n\t\t 0.73793501 0.066735029 0.74475998 0.064989984 0.74466503 0.064031005 0.751477 0.062289\n\t\t 0.751477 0.062289 0.75227702 0.06337899 0.74475998 0.064989984 0.759947 0.058449984\n\t\t 0.75227702 0.06337899 0.751477 0.062289 0.751477 0.062289 0.75894099 0.057092011\n\t\t 0.759947 0.058449984 0.759947 0.058449984 0.75894099 0.057092011 0.76493299 0.048968017\n\t\t 0.76493299 0.048968017 0.765921 0.05033797 0.759947 0.058449984 0.93233001 0.14513701\n\t\t 0.90829003 0.23973298 0.90463901 0.240197 0.90463901 0.240197 0.92934901 0.14492899\n\t\t 0.93233001 0.14513701 0.90829003 0.23973298 0.93233001 0.14513701 0.93670303 0.14555401\n\t\t 0.93670303 0.14555401 0.914428 0.239326 0.90829003 0.23973298 0.914428 0.239326 0.93670303\n\t\t 0.14555401 0.94232702 0.14608401 0.94232702 0.14608401 0.92320102 0.23901701 0.914428\n\t\t 0.239326 0.92320102 0.23901701 0.94232702 0.14608401 0.94932801 0.14674002 0.94932801\n\t\t 0.14674002 0.934246 0.238662 0.92320102 0.23901701 0.46080399 0.93168032 0.46060401\n\t\t 0.93014258 0.45565 0.91625261 0.50427198 0.36357802 0.504884 0.35132903 0.51086903\n\t\t 0.35330099 0.51086903 0.35330099 0.51039201 0.36513901 0.50427198 0.36357802 0.504884\n\t\t 0.35132903 0.50427198 0.36357802 0.488554 0.35942698 0.488554 0.35942698 0.48946601\n\t\t 0.34604299 0.504884 0.35132903 0.51039201 0.36513901 0.51086903 0.35330099 0.52656603\n\t\t 0.35364699 0.52656603 0.35364699 0.526196 0.36548799 0.51039201 0.36513901 0.526196\n\t\t 0.36548799 0.52656603 0.35364699 0.539056 0.35322797 0.539056 0.35322797 0.53874397\n\t\t 0.36507303 0.526196 0.36548799 0.53874397 0.36507303 0.539056 0.35322797 0.55154401\n\t\t 0.352745 0.55154401 0.352745 0.55129099 0.36459601 0.53874397 0.36507303 0.55129099\n\t\t 0.36459601 0.55154401 0.352745 0.56670201 0.35115099 0.56670201 0.35115099 0.56655502\n\t\t 0.363002 0.55129099 0.36459601 0.48946601 0.34604299 0.488554 0.35942698 0.48068801\n\t\t 0.357337 0.48068801 0.357337 0.48178399 0.34317499 0.48946601 0.34604299 0.46320501\n\t\t 0.17187297 0.46232799 0.16005701 0.52240902 0.157924 0.52240902 0.157924 0.52395397\n\t\t 0.17204303 0.46320501 0.17187297 0.46232799 0.16005701 0.46320501 0.17187297 0.43607801\n\t\t 0.17191601 0.43607801 0.17191601 0.43520099 0.160101 0.46232799 0.16005701 0.59270197\n\t\t 0.34187901 0.59267998 0.35373002 0.57993799 0.35829699 0.57993799 0.35829699 0.58000898\n\t\t 0.34644502 0.59270197 0.34187901 0.58000898 0.34644502 0.57993799 0.35829699 0.56655502\n\t\t 0.363002 0.56655502 0.363002 0.56670201 0.35115099 0.58000898 0.34644502;\n\tsetAttr \".uvst[0].uvsp[24750:24999]\" 0.328724 0.85564202 0.33134699 0.829642 0.367423\n\t\t 0.83082998 0.367423 0.83082998 0.366142 0.85516399 0.328724 0.85564202 0.42566201\n\t\t 0.895706 0.424155 0.87317199 0.45443299 0.87014496 0.45443299 0.87014496 0.45784\n\t\t 0.89104801 0.42566201 0.895706 0.45152801 0.85111302 0.45443299 0.87014496 0.424155\n\t\t 0.87317199 0.87851 0.279585 0.88070899 0.27955103 0.88047898 0.31057501 0.88047898\n\t\t 0.31057501 0.87767398 0.31062102 0.87851 0.279585 0.87767398 0.31062102 0.88047898\n\t\t 0.31057501 0.876854 0.34165698 0.54564202 0.17448503 0.54514802 0.171817 0.55314201\n\t\t 0.17382097 0.55314201 0.17382097 0.552136 0.17590898 0.54564202 0.17448503 0.54514802\n\t\t 0.171817 0.54564202 0.17448503 0.54040301 0.17356098 0.54040301 0.17356098 0.53706598\n\t\t 0.17011702 0.54514802 0.171817 0.53470099 0.176395 0.53706598 0.17011702 0.54040301\n\t\t 0.17356098 0.54040301 0.17356098 0.53674799 0.174465 0.53470099 0.176395 0.89408302\n\t\t 0.46616298 0.88068402 0.46734101 0.87940001 0.45935798 0.87940001 0.45935798 0.89014\n\t\t 0.45765299 0.89408302 0.46616298 0.89014 0.45765299 0.87940001 0.45935798 0.87750697\n\t\t 0.45123601 0.87750697 0.45123601 0.88373601 0.45198798 0.89014 0.45765299 0.87940001\n\t\t 0.45935798 0.872271 0.45313197 0.87750697 0.45123601 0.87940001 0.45935798 0.872271\n\t\t 0.45313197 0.87940001 0.45935798 0.86866099 0.46105701 0.86866099 0.46105701 0.87940001\n\t\t 0.45935798 0.88068402 0.46734101 0.88068402 0.46734101 0.86865401 0.46920002 0.86866099\n\t\t 0.46105701 0.86823499 0.48712403 0.86865401 0.46920002 0.88068402 0.46734101 0.88068402\n\t\t 0.46734101 0.87710798 0.48686099 0.86823499 0.48712403 0.87710798 0.48686099 0.88068402\n\t\t 0.46734101 0.89408302 0.46616298 0.89408302 0.46616298 0.88598198 0.48659998 0.87710798\n\t\t 0.48686099 0.30225801 0.41530597 0.29974499 0.43158299 0.263336 0.42882299 0.263336\n\t\t 0.42882299 0.26509199 0.41293103 0.30225801 0.41530597 0.26509199 0.41293103 0.263336\n\t\t 0.42882299 0.19650801 0.42539501 0.19650801 0.42539501 0.196741 0.41019303 0.26509199\n\t\t 0.41293103 0.19608501 0.43793899 0.19650801 0.42539501 0.263336 0.42882299 0.169397\n\t\t 0.42580903 0.19650801 0.42539501 0.19608501 0.43793899 0.196741 0.41019303 0.19650801\n\t\t 0.42539501 0.169397 0.42580903 0.19608501 0.43793899 0.169696 0.43762201 0.169397\n\t\t 0.42580903 0.263336 0.42882299 0.26153499 0.44242603 0.19608501 0.43793899 0.169397\n\t\t 0.42580903 0.16868 0.411102 0.196741 0.41019303 0.128181 0.41997898 0.16868 0.411102\n\t\t 0.169397 0.42580903 0.169397 0.42580903 0.131869 0.43361199 0.128181 0.41997898 0.297133\n\t\t 0.44561499 0.26153499 0.44242603 0.263336 0.42882299 0.263336 0.42882299 0.29974499\n\t\t 0.43158299 0.297133 0.44561499 0.128181 0.41997898 0.131869 0.43361199 0.100689 0.448533\n\t\t 0.131869 0.43361199 0.131869 0.43361199 0.134417 0.44373697 0.134417 0.44373697 0.131869\n\t\t 0.43361199 0.169397 0.42580903 0.169397 0.42580903 0.169696 0.43762201 0.134417 0.44373697\n\t\t 0.128181 0.41997898 0.183431 0.99870276 0.180702 0.97734451 0.22259501 0.97947639\n\t\t 0.22259501 0.97947639 0.218034 0.99825108 0.183431 0.99870276 0.221321 0.95750862\n\t\t 0.22259501 0.97947639 0.180702 0.97734451 0.045530401 0.9520492 0.045530401 0.9520492\n\t\t 0.046918299 0.97280562 0.046918299 0.97280562 0.047867101 0.99423927 0.047867101\n\t\t 0.99423927 0.0444116 0.93239421 0.045530401 0.9520492 0.0444116 0.93239421 0.044029102\n\t\t 0.9131524 0.0444116 0.93239421 0.044029102 0.9131524 0.837915 0.99703872 0.824718\n\t\t 0.99512738 0.840092 0.9732095 0.837915 0.99703872 0.840092 0.9732095 0.868936 0.97805339\n\t\t 0.840092 0.9732095 0.88250101 0.95394248 0.868936 0.97805339 0.840092 0.9732095 0.87713599\n\t\t 0.93236321 0.88250101 0.95394248 0.840092 0.9732095 0.875166 0.92458057 0.87713599\n\t\t 0.93236321 0.87713599 0.93236321 0.88107002 0.94789571 0.88250101 0.95394248 0.88250101\n\t\t 0.95394248 0.87582201 0.96778452 0.868936 0.97805339 0.85175103 0.99892384 0.837915\n\t\t 0.99703872 0.868936 0.97805339 0.85175103 0.99892384 0.868936 0.97805339 0.86205\n\t\t 0.98832148 0.449765 0.91909522 0.45210201 0.92098868 0.45269799 0.92243671 0.43570101\n\t\t 0.91354287 0.449765 0.91909522 0.45269799 0.92243671 0.44245401 0.93985289 0.43570101\n\t\t 0.91354287 0.45269799 0.92243671 0.44245401 0.93985289 0.45269799 0.92243671 0.454521\n\t\t 0.93210828 0.44245401 0.93985289 0.454521 0.93210828 0.454422 0.9335956 0.45250401\n\t\t 0.93556917 0.44245401 0.93985289 0.454422 0.9335956 0.43522799 0.91332358 0.43570101\n\t\t 0.91354287 0.44245401 0.93985289 0.34700599 0.40703303 0.343748 0.40843999 0.330989\n\t\t 0.40521199 0.330989 0.40521199 0.33008999 0.397654 0.34700599 0.40703303 0.33008999\n\t\t 0.397654 0.330989 0.40521199 0.32812899 0.40544897 0.32812899 0.40544897 0.32703301\n\t\t 0.397421 0.33008999 0.397654 0.32703301 0.397421 0.32812899 0.40544897 0.32681701\n\t\t 0.40634602 0.32681701 0.40634602 0.32562599 0.39830101 0.32703301 0.397421 0.32562599\n\t\t 0.39830101 0.32681701 0.40634602 0.318921 0.413508 0.318921 0.413508 0.31483299 0.40887201\n\t\t 0.32562599 0.39830101 0.31483299 0.40887201 0.318921 0.413508 0.31782201 0.41478503\n\t\t 0.31782201 0.41478503 0.31373301 0.41013998 0.31483299 0.40887201 0.31373301 0.41013998\n\t\t 0.31782201 0.41478503 0.316048 0.417642 0.316048 0.417642 0.31230199 0.41305602 0.31373301\n\t\t 0.41013998 0.31230199 0.41305602 0.316048 0.417642 0.30818799 0.43168801 0.30818799\n\t\t 0.43168801 0.30583 0.43385899 0.31230199 0.41305602 0.44245401 0.93985289 0.44258201\n\t\t 0.94013119 0.43522799 0.91332358 0.39160699 0.24492103 0.3906 0.24081397;\n\tsetAttr \".uvst[0].uvsp[25000:25249]\" 0.40193701 0.24444401 0.3906 0.24081397 0.39160699\n\t\t 0.24492103 0.38902599 0.244717 0.38902599 0.244717 0.38805199 0.23987401 0.3906 0.24081397\n\t\t 0.38805199 0.23987401 0.38902599 0.244717 0.387694 0.24440902 0.387694 0.24440902\n\t\t 0.38676399 0.23927802 0.38805199 0.23987401 0.38676399 0.23927802 0.387694 0.24440902\n\t\t 0.378777 0.24264598 0.378777 0.24264598 0.37731299 0.23750299 0.38676399 0.23927802\n\t\t 0.37731299 0.23750299 0.378777 0.24264598 0.37735599 0.24245101 0.37735599 0.24245101\n\t\t 0.375891 0.23739398 0.37731299 0.23750299 0.37327099 0.23813403 0.375891 0.23739398\n\t\t 0.37735599 0.24245101 0.37735599 0.24245101 0.374569 0.24255598 0.37327099 0.23813403\n\t\t 0.37327099 0.23813403 0.374569 0.24255598 0.36082399 0.24492502 0.36082399 0.24492502\n\t\t 0.36050799 0.244959 0.37327099 0.23813403 0.40193701 0.24444401 0.401705 0.24433899\n\t\t 0.39160699 0.24492103 0.155085 0.65250999 0.15474001 0.65295398 0.188972 0.67236\n\t\t 0.15474001 0.65295398 0.155085 0.65250999 0.75446898 0.94715267 0.75456798 0.9494676\n\t\t 0.75318998 0.94831628 0.77908403 0.93861169 0.75456798 0.9494676 0.75446898 0.94715267\n\t\t 0.75446898 0.94715267 0.77812201 0.93608791 0.77908403 0.93861169 0.77908403 0.93861169\n\t\t 0.77812201 0.93608791 0.80537301 0.92401022 0.80537301 0.92401022 0.80793899 0.9256168\n\t\t 0.77908403 0.93861169 0.81946099 0.91314852 0.80793899 0.9256168 0.80537301 0.92401022\n\t\t 0.80537301 0.92401022 0.81706101 0.91126353 0.81946099 0.91314852 0.81946099 0.91314852\n\t\t 0.81706101 0.91126353 0.826985 0.90022528 0.826985 0.90022528 0.82959503 0.90183979\n\t\t 0.81946099 0.91314852 0.82959503 0.90183979 0.826985 0.90022528 0.83699399 0.88928699\n\t\t 0.83699399 0.88928699 0.83976197 0.89059901 0.82959503 0.90183979 0.85091603 0.87785298\n\t\t 0.83976197 0.89059901 0.83699399 0.88928699 0.83699399 0.88928699 0.84824002 0.87638402\n\t\t 0.85091603 0.87785298 0.85601598 0.86275101 0.85091603 0.87785298 0.84824002 0.87638402\n\t\t 0.84824002 0.87638402 0.853104 0.86207801 0.85601598 0.86275101 0.85601598 0.86275101\n\t\t 0.853104 0.86207801 0.86361903 0.83254099 0.86361903 0.83254099 0.86627603 0.83245802\n\t\t 0.85601598 0.86275101 0.87142801 0.81740999 0.86627603 0.83245802 0.86361903 0.83254099\n\t\t 0.86361903 0.83254099 0.86924303 0.81641102 0.87142801 0.81740999 0.26699799 0.054804981\n\t\t 0.26699799 0.054804981 0.26699799 0.054804981 0.279039 0.015354991 0.279039 0.015354991\n\t\t 0.279039 0.015354991 0.26699799 0.015354991 0.26699799 0.015354991 0.26699799 0.015354991\n\t\t 0.279039 0.037030995 0.279039 0.037030995 0.279039 0.037030995 0.45170501 0.43195301\n\t\t 0.47409701 0.43194801 0.475375 0.438833 0.475375 0.438833 0.45223501 0.43911499 0.45170501\n\t\t 0.43195301 0.475375 0.438833 0.47409701 0.43194801 0.48773399 0.43252099 0.48773399\n\t\t 0.43252099 0.48940399 0.43898898 0.475375 0.438833 0.48940399 0.43898898 0.48773399\n\t\t 0.43252099 0.50184101 0.432679 0.50184101 0.432679 0.50377399 0.43921602 0.48940399\n\t\t 0.43898898 0.499906 0.42593801 0.50184101 0.432679 0.48773399 0.43252099 0.48773399\n\t\t 0.43252099 0.486139 0.426072 0.499906 0.42593801 0.486139 0.426072 0.48773399 0.43252099\n\t\t 0.47409701 0.43194801 0.47409701 0.43194801 0.47295401 0.42513698 0.486139 0.426072\n\t\t 0.47295401 0.42513698 0.47409701 0.43194801 0.45170501 0.43195301 0.45170501 0.43195301\n\t\t 0.451368 0.42481798 0.47295401 0.42513698 0.47208399 0.41837698 0.47295401 0.42513698\n\t\t 0.451368 0.42481798 0.451368 0.42481798 0.451213 0.41771603 0.47208399 0.41837698\n\t\t 0.47295401 0.42513698 0.47208399 0.41837698 0.48483199 0.41940802 0.48483199 0.41940802\n\t\t 0.486139 0.426072 0.47295401 0.42513698 0.486139 0.426072 0.48483199 0.41940802 0.49823499\n\t\t 0.41907299 0.49823499 0.41907299 0.499906 0.42593801 0.486139 0.426072 0.497105 0.41209197\n\t\t 0.49823499 0.41907299 0.48483199 0.41940802 0.48483199 0.41940802 0.48401299 0.41251099\n\t\t 0.497105 0.41209197 0.48401299 0.41251099 0.48483199 0.41940802 0.47208399 0.41837698\n\t\t 0.47208399 0.41837698 0.47159299 0.41167498 0.48401299 0.41251099 0.47159299 0.41167498\n\t\t 0.47208399 0.41837698 0.451213 0.41771603 0.451213 0.41771603 0.45128199 0.41067201\n\t\t 0.47159299 0.41167498 0.47155499 0.40484798 0.47159299 0.41167498 0.45128199 0.41067201\n\t\t 0.45128199 0.41067201 0.45155299 0.40375102 0.47155499 0.40484798 0.47159299 0.41167498\n\t\t 0.47155499 0.40484798 0.48375699 0.40551901 0.48375699 0.40551901 0.48401299 0.41251099\n\t\t 0.47159299 0.41167498 0.48401299 0.41251099 0.48375699 0.40551901 0.49662799 0.40522403\n\t\t 0.49662799 0.40522403 0.497105 0.41209197 0.48401299 0.41251099 0.49682999 0.39835101\n\t\t 0.49662799 0.40522403 0.48375699 0.40551901 0.48375699 0.40551901 0.48412499 0.39852899\n\t\t 0.49682999 0.39835101 0.48412499 0.39852899 0.48375699 0.40551901 0.47155499 0.40484798\n\t\t 0.47155499 0.40484798 0.472002 0.398148 0.48412499 0.39852899 0.472002 0.398148 0.47155499\n\t\t 0.40484798 0.45155299 0.40375102 0.45155299 0.40375102 0.45210901 0.39701301 0.472002\n\t\t 0.398148 0.47281101 0.39156401 0.472002 0.398148 0.45210901 0.39701301 0.45210901\n\t\t 0.39701301 0.45299 0.39052701 0.47281101 0.39156401 0.472002 0.398148 0.47281101\n\t\t 0.39156401 0.484851 0.39167702 0.484851 0.39167702 0.48412499 0.39852899 0.472002\n\t\t 0.398148 0.48412499 0.39852899 0.484851 0.39167702 0.497417 0.39151102 0.497417 0.39151102\n\t\t 0.49682999 0.39835101 0.48412499 0.39852899 0.49766001 0.38471001 0.497417 0.39151102\n\t\t 0.484851 0.39167702 0.484851 0.39167702 0.485457 0.38485003 0.49766001 0.38471001\n\t\t 0.485457 0.38485003 0.484851 0.39167702 0.47281101 0.39156401 0.47281101 0.39156401;\n\tsetAttr \".uvst[0].uvsp[25250:25499]\" 0.47388199 0.38487399 0.485457 0.38485003\n\t\t 0.47388199 0.38487399 0.47281101 0.39156401 0.45299 0.39052701 0.45299 0.39052701\n\t\t 0.45463899 0.38428199 0.47388199 0.38487399 0.49662799 0.40522403 0.49682999 0.39835101\n\t\t 0.50966698 0.39794201 0.50966698 0.39794201 0.50971901 0.40473598 0.49662799 0.40522403\n\t\t 0.497105 0.41209197 0.49662799 0.40522403 0.50971901 0.40473598 0.50971901 0.40473598\n\t\t 0.51045197 0.411641 0.497105 0.41209197 0.49823499 0.41907299 0.497105 0.41209197\n\t\t 0.51045197 0.411641 0.51045197 0.411641 0.51183403 0.418607 0.49823499 0.41907299\n\t\t 0.499906 0.42593801 0.49823499 0.41907299 0.51183403 0.418607 0.51183403 0.418607\n\t\t 0.513699 0.42554098 0.499906 0.42593801 0.50184101 0.432679 0.499906 0.42593801 0.513699\n\t\t 0.42554098 0.513699 0.42554098 0.51576698 0.43236798 0.50184101 0.432679 0.50377399\n\t\t 0.43921602 0.50184101 0.432679 0.51576698 0.43236798 0.51576698 0.43236798 0.51772499\n\t\t 0.43905997 0.50377399 0.43921602 0.51772499 0.43905997 0.51576698 0.43236798 0.52949399\n\t\t 0.431907 0.52949399 0.431907 0.53133702 0.438806 0.51772499 0.43905997 0.53133702\n\t\t 0.438806 0.52949399 0.431907 0.542817 0.43128002 0.542817 0.43128002 0.54449099 0.438438\n\t\t 0.53133702 0.438806 0.54449099 0.438438 0.542817 0.43128002 0.55563498 0.43078703\n\t\t 0.55563498 0.43078703 0.55710298 0.43813503 0.54449099 0.438438 0.553765 0.42354798\n\t\t 0.55563498 0.43078703 0.542817 0.43128002 0.542817 0.43128002 0.54080099 0.42411\n\t\t 0.553765 0.42354798 0.54080099 0.42411 0.542817 0.43128002 0.52949399 0.431907 0.52949399\n\t\t 0.431907 0.52742398 0.424936 0.54080099 0.42411 0.52742398 0.424936 0.52949399 0.431907\n\t\t 0.51576698 0.43236798 0.51576698 0.43236798 0.513699 0.42554098 0.52742398 0.424936\n\t\t 0.513699 0.42554098 0.51183403 0.418607 0.52543998 0.417961 0.52543998 0.417961 0.52742398\n\t\t 0.424936 0.513699 0.42554098 0.52742398 0.424936 0.52543998 0.417961 0.53874999 0.41701102\n\t\t 0.53874999 0.41701102 0.54080099 0.42411 0.52742398 0.424936 0.54080099 0.42411 0.53874999\n\t\t 0.41701102 0.55178303 0.41658801 0.55178303 0.41658801 0.553765 0.42354798 0.54080099\n\t\t 0.42411 0.54996997 0.40995598 0.55178303 0.41658801 0.53874999 0.41701102 0.53874999\n\t\t 0.41701102 0.536982 0.41009903 0.54996997 0.40995598 0.536982 0.41009903 0.53874999\n\t\t 0.41701102 0.52543998 0.417961 0.52543998 0.417961 0.523844 0.41107303 0.536982 0.41009903\n\t\t 0.523844 0.41107303 0.52543998 0.417961 0.51183403 0.418607 0.51183403 0.418607 0.51045197\n\t\t 0.411641 0.523844 0.41107303 0.522834 0.40433103 0.523844 0.41107303 0.51045197 0.411641\n\t\t 0.51045197 0.411641 0.50971901 0.40473598 0.522834 0.40433103 0.523844 0.41107303\n\t\t 0.522834 0.40433103 0.535734 0.40348101 0.535734 0.40348101 0.536982 0.41009903 0.523844\n\t\t 0.41107303 0.536982 0.41009903 0.535734 0.40348101 0.54859197 0.403548 0.54859197\n\t\t 0.403548 0.54996997 0.40995598 0.536982 0.41009903 0.54779202 0.39747202 0.54859197\n\t\t 0.403548 0.535734 0.40348101 0.535734 0.40348101 0.53512198 0.39714402 0.54779202\n\t\t 0.39747202 0.53512198 0.39714402 0.535734 0.40348101 0.522834 0.40433103 0.522834\n\t\t 0.40433103 0.52248502 0.39771301 0.53512198 0.39714402 0.52248502 0.39771301 0.522834\n\t\t 0.40433103 0.50971901 0.40473598 0.50971901 0.40473598 0.50966698 0.39794201 0.52248502\n\t\t 0.39771301 0.52259701 0.39114702 0.52248502 0.39771301 0.50966698 0.39794201 0.50966698\n\t\t 0.39794201 0.51002198 0.39125001 0.52259701 0.39114702 0.51002198 0.39125001 0.50966698\n\t\t 0.39794201 0.49682999 0.39835101 0.49682999 0.39835101 0.497417 0.39151102 0.51002198\n\t\t 0.39125001 0.52248502 0.39771301 0.52259701 0.39114702 0.53503501 0.39091098 0.53503501\n\t\t 0.39091098 0.53512198 0.39714402 0.52248502 0.39771301 0.53512198 0.39714402 0.53503501\n\t\t 0.39091098 0.54751402 0.39127803 0.54751402 0.39127803 0.54779202 0.39747202 0.53512198\n\t\t 0.39714402 0.54779202 0.38466799 0.54751402 0.39127803 0.53503501 0.39091098 0.53503501\n\t\t 0.39091098 0.53517503 0.38452601 0.54779202 0.38466799 0.53517503 0.38452601 0.53503501\n\t\t 0.39091098 0.52259701 0.39114702 0.52259701 0.39114702 0.52259499 0.38456202 0.53517503\n\t\t 0.38452601 0.52259499 0.38456202 0.52259701 0.39114702 0.51002198 0.39125001 0.51002198\n\t\t 0.39125001 0.51003802 0.38459402 0.52259499 0.38456202 0.51003802 0.38459402 0.51002198\n\t\t 0.39125001 0.497417 0.39151102 0.497417 0.39151102 0.49766001 0.38471001 0.51003802\n\t\t 0.38459402 0.50864398 0.37791097 0.51003802 0.38459402 0.49766001 0.38471001 0.49766001\n\t\t 0.38471001 0.49643999 0.377922 0.50864398 0.37791097 0.51003802 0.38459402 0.50864398\n\t\t 0.37791097 0.52112198 0.37804103 0.52112198 0.37804103 0.52259499 0.38456202 0.51003802\n\t\t 0.38459402 0.53416401 0.37808299 0.53517503 0.38452601 0.52259499 0.38456202 0.52259499\n\t\t 0.38456202 0.52157003 0.37804198 0.53416401 0.37808299 0.54767299 0.37812299 0.54779202\n\t\t 0.38466799 0.53517503 0.38452601 0.53517503 0.38452601 0.53502399 0.37807101 0.54767299\n\t\t 0.37812299 0.54751402 0.39127803 0.54779202 0.38466799 0.56108999 0.38434899 0.56108999\n\t\t 0.38434899 0.56082702 0.39035302 0.54751402 0.39127803 0.54779202 0.39747202 0.54751402\n\t\t 0.39127803 0.56082702 0.39035302 0.56082702 0.39035302 0.561212 0.39653897 0.54779202\n\t\t 0.39747202 0.54859197 0.403548 0.54779202 0.39747202 0.561212 0.39653897 0.561212\n\t\t 0.39653897 0.56207699 0.402906 0.54859197 0.403548 0.54996997 0.40995598 0.54859197\n\t\t 0.403548 0.56207699 0.402906 0.56207699 0.402906 0.563366 0.40943199 0.54996997 0.40995598\n\t\t 0.55178303 0.41658801 0.54996997 0.40995598;\n\tsetAttr \".uvst[0].uvsp[25500:25749]\" 0.563366 0.40943199 0.563366 0.40943199 0.56499398\n\t\t 0.416444 0.55178303 0.41658801 0.553765 0.42354798 0.55178303 0.41658801 0.56499398\n\t\t 0.416444 0.56499398 0.416444 0.56670898 0.423599 0.553765 0.42354798 0.55563498 0.43078703\n\t\t 0.553765 0.42354798 0.56670898 0.423599 0.56670898 0.423599 0.56826901 0.43083602\n\t\t 0.55563498 0.43078703 0.55710298 0.43813503 0.55563498 0.43078703 0.56826901 0.43083602\n\t\t 0.56826901 0.43083602 0.56943601 0.43817198 0.55710298 0.43813503 0.56943601 0.43817198\n\t\t 0.56826901 0.43083602 0.58108699 0.43112999 0.58108699 0.43112999 0.58189797 0.43838298\n\t\t 0.56943601 0.43817198 0.58189797 0.43838298 0.58108699 0.43112999 0.59433103 0.43139398\n\t\t 0.59433103 0.43139398 0.59480798 0.43862998 0.58189797 0.43838298 0.59480798 0.43862998\n\t\t 0.59433103 0.43139398 0.60813898 0.43160802 0.60813898 0.43160802 0.60839099 0.43884999\n\t\t 0.59480798 0.43862998 0.60768002 0.42441702 0.60813898 0.43160802 0.59433103 0.43139398\n\t\t 0.59433103 0.43139398 0.59358197 0.42427999 0.60768002 0.42441702 0.59358197 0.42427999\n\t\t 0.59433103 0.43139398 0.58108699 0.43112999 0.58108699 0.43112999 0.57993299 0.42406899\n\t\t 0.59358197 0.42427999 0.57993299 0.42406899 0.58108699 0.43112999 0.56826901 0.43083602\n\t\t 0.56826901 0.43083602 0.56670898 0.423599 0.57993299 0.42406899 0.56670898 0.423599\n\t\t 0.56499398 0.416444 0.578605 0.41727501 0.578605 0.41727501 0.57993299 0.42406899\n\t\t 0.56670898 0.423599 0.57993299 0.42406899 0.578605 0.41727501 0.59266597 0.41727197\n\t\t 0.59266597 0.41727197 0.59358197 0.42427999 0.57993299 0.42406899 0.59358197 0.42427999\n\t\t 0.59266597 0.41727197 0.60707098 0.41727799 0.60707098 0.41727799 0.60768002 0.42441702\n\t\t 0.59358197 0.42427999 0.606381 0.41023099 0.60707098 0.41727799 0.59266597 0.41727197\n\t\t 0.59266597 0.41727197 0.59169197 0.410339 0.606381 0.41023099 0.59169197 0.410339\n\t\t 0.59266597 0.41727197 0.578605 0.41727501 0.578605 0.41727501 0.57728601 0.41079998\n\t\t 0.59169197 0.410339 0.57728601 0.41079998 0.578605 0.41727501 0.56499398 0.416444\n\t\t 0.56499398 0.416444 0.563366 0.40943199 0.57728601 0.41079998 0.57617998 0.40431798\n\t\t 0.57728601 0.41079998 0.563366 0.40943199 0.563366 0.40943199 0.56207699 0.402906\n\t\t 0.57617998 0.40431798 0.57728601 0.41079998 0.57617998 0.40431798 0.59078699 0.403512\n\t\t 0.59078699 0.403512 0.59169197 0.410339 0.57728601 0.41079998 0.59169197 0.410339\n\t\t 0.59078699 0.403512 0.60569298 0.40337598 0.60569298 0.40337598 0.606381 0.41023099\n\t\t 0.59169197 0.410339 0.60506898 0.39680701 0.60569298 0.40337598 0.59078699 0.403512\n\t\t 0.59078699 0.403512 0.59004903 0.396905 0.60506898 0.39680701 0.59004903 0.396905\n\t\t 0.59078699 0.403512 0.57617998 0.40431798 0.57617998 0.40431798 0.57535797 0.39771998\n\t\t 0.59004903 0.396905 0.57535797 0.39771998 0.57617998 0.40431798 0.56207699 0.402906\n\t\t 0.56207699 0.402906 0.561212 0.39653897 0.57535797 0.39771998 0.57492 0.39110702\n\t\t 0.57535797 0.39771998 0.561212 0.39653897 0.561212 0.39653897 0.56082702 0.39035302\n\t\t 0.57492 0.39110702 0.57535797 0.39771998 0.57492 0.39110702 0.58954102 0.390567 0.58954102\n\t\t 0.390567 0.59004903 0.396905 0.57535797 0.39771998 0.59004903 0.396905 0.58954102\n\t\t 0.390567 0.60453498 0.39051002 0.60453498 0.39051002 0.60506898 0.39680701 0.59004903\n\t\t 0.396905 0.60400498 0.38435799 0.60453498 0.39051002 0.58954102 0.390567 0.58954102\n\t\t 0.390567 0.58925301 0.38438898 0.60400498 0.38435799 0.58925301 0.38438898 0.58954102\n\t\t 0.390567 0.57492 0.39110702 0.57492 0.39110702 0.57495201 0.38455802 0.58925301 0.38438898\n\t\t 0.57495201 0.38455802 0.57492 0.39110702 0.56082702 0.39035302 0.56082702 0.39035302\n\t\t 0.56108999 0.38434899 0.57495201 0.38455802 0.57512802 0.37829399 0.57495201 0.38455802\n\t\t 0.56108999 0.38434899 0.56108999 0.38434899 0.56223398 0.37827498 0.57512802 0.37829399\n\t\t 0.58875501 0.37806702 0.58925301 0.38438898 0.57495201 0.38455802 0.57495201 0.38455802\n\t\t 0.57552302 0.378084 0.58875501 0.37806702 0.60287398 0.37821198 0.60400498 0.38435799\n\t\t 0.58925301 0.38438898 0.58925301 0.38438898 0.58907199 0.37825298 0.60287398 0.37821198\n\t\t 0.60453498 0.39051002 0.60400498 0.38435799 0.61929202 0.38436699 0.61929202 0.38436699\n\t\t 0.61985302 0.39063901 0.60453498 0.39051002 0.60506898 0.39680701 0.60453498 0.39051002\n\t\t 0.61985302 0.39063901 0.61985302 0.39063901 0.62032098 0.39708698 0.60506898 0.39680701\n\t\t 0.60569298 0.40337598 0.60506898 0.39680701 0.62032098 0.39708698 0.62032098 0.39708698\n\t\t 0.62081099 0.40372401 0.60569298 0.40337598 0.606381 0.41023099 0.60569298 0.40337598\n\t\t 0.62081099 0.40372401 0.62081099 0.40372401 0.621324 0.41055 0.606381 0.41023099\n\t\t 0.60707098 0.41727799 0.606381 0.41023099 0.621324 0.41055 0.621324 0.41055 0.62183303\n\t\t 0.41754001 0.60707098 0.41727799 0.60768002 0.42441702 0.60707098 0.41727799 0.62183303\n\t\t 0.41754001 0.62183303 0.41754001 0.62228 0.42464602 0.60768002 0.42441702 0.60813898\n\t\t 0.43160802 0.60768002 0.42441702 0.62228 0.42464602 0.62228 0.42464602 0.62261599\n\t\t 0.431817 0.60813898 0.43160802 0.60839099 0.43884999 0.60813898 0.43160802 0.62261599\n\t\t 0.431817 0.62261599 0.431817 0.62279999 0.43902397 0.60839099 0.43884999 0.62279999\n\t\t 0.43902397 0.62261599 0.431817 0.63800102 0.43199998 0.63800102 0.43199998 0.638188\n\t\t 0.43915498 0.62279999 0.43902397 0.638188 0.43915498 0.63800102 0.43199998 0.65442699\n\t\t 0.43213099 0.65442699 0.43213099 0.65462297 0.43923903 0.638188 0.43915498 0.65462297\n\t\t 0.43923903 0.65442699 0.43213099 0.67196 0.43218601 0.67196 0.43218601 0.67212701\n\t\t 0.43926799 0.65462297 0.43923903;\n\tsetAttr \".uvst[0].uvsp[25750:25999]\" 0.67177099 0.42512399 0.67196 0.43218601 0.65442699\n\t\t 0.43213099 0.65442699 0.43213099 0.65417498 0.42504299 0.67177099 0.42512399 0.65417498\n\t\t 0.42504299 0.65442699 0.43213099 0.63800102 0.43199998 0.63800102 0.43199998 0.637712\n\t\t 0.424869 0.65417498 0.42504299 0.637712 0.424869 0.63800102 0.43199998 0.62261599\n\t\t 0.431817 0.62261599 0.431817 0.62228 0.42464602 0.637712 0.424869 0.62228 0.42464602\n\t\t 0.62183303 0.41754001 0.63735998 0.41778201 0.63735998 0.41778201 0.637712 0.424869\n\t\t 0.62228 0.42464602 0.637712 0.424869 0.63735998 0.41778201 0.65390199 0.41798198\n\t\t 0.65390199 0.41798198 0.65417498 0.42504299 0.637712 0.424869 0.65417498 0.42504299\n\t\t 0.65390199 0.41798198 0.67158699 0.41806501 0.67158699 0.41806501 0.67177099 0.42512399\n\t\t 0.65417498 0.42504299 0.67143703 0.41098201 0.67158699 0.41806501 0.65390199 0.41798198\n\t\t 0.65390199 0.41798198 0.65364403 0.41096699 0.67143703 0.41098201 0.65364403 0.41096699\n\t\t 0.65390199 0.41798198 0.63735998 0.41778201 0.63735998 0.41778201 0.63698602 0.41076303\n\t\t 0.65364403 0.41096699 0.63698602 0.41076303 0.63735998 0.41778201 0.62183303 0.41754001\n\t\t 0.62183303 0.41754001 0.621324 0.41055 0.63698602 0.41076303 0.63662499 0.403853\n\t\t 0.63698602 0.41076303 0.621324 0.41055 0.621324 0.41055 0.62081099 0.40372401 0.63662499\n\t\t 0.403853 0.63698602 0.41076303 0.63662499 0.403853 0.65342301 0.404037 0.65342301\n\t\t 0.404037 0.65364403 0.41096699 0.63698602 0.41076303 0.65364403 0.41096699 0.65342301\n\t\t 0.404037 0.67133701 0.40391397 0.67133701 0.40391397 0.67143703 0.41098201 0.65364403\n\t\t 0.41096699 0.67126501 0.39703298 0.67133701 0.40391397 0.65342301 0.404037 0.65342301\n\t\t 0.404037 0.653225 0.39725 0.67126501 0.39703298 0.653225 0.39725 0.65342301 0.404037\n\t\t 0.63662499 0.403853 0.63662499 0.403853 0.63628203 0.39712 0.653225 0.39725 0.63628203\n\t\t 0.39712 0.63662499 0.403853 0.62081099 0.40372401 0.62081099 0.40372401 0.62032098\n\t\t 0.39708698 0.63628203 0.39712 0.63593602 0.39061397 0.63628203 0.39712 0.62032098\n\t\t 0.39708698 0.62032098 0.39708698 0.61985302 0.39063901 0.63593602 0.39061397 0.63628203\n\t\t 0.39712 0.63593602 0.39061397 0.653014 0.39066499 0.653014 0.39066499 0.653225 0.39725\n\t\t 0.63628203 0.39712 0.653225 0.39725 0.653014 0.39066499 0.67116201 0.39049602 0.67116201\n\t\t 0.39049602 0.67126501 0.39703298 0.653225 0.39725 0.67097902 0.38428903 0.67116201\n\t\t 0.39049602 0.653014 0.39066499 0.653014 0.39066499 0.65271503 0.38433999 0.67097902\n\t\t 0.38428903 0.65271503 0.38433999 0.653014 0.39066499 0.63593602 0.39061397 0.63593602\n\t\t 0.39061397 0.63548398 0.38433897 0.65271503 0.38433999 0.63548398 0.38433897 0.63593602\n\t\t 0.39061397 0.61985302 0.39063901 0.61985302 0.39063901 0.61929202 0.38436699 0.63548398\n\t\t 0.38433897 0.63424098 0.37824798 0.63548398 0.38433897 0.61929202 0.38436699 0.61929202\n\t\t 0.38436699 0.61855203 0.37827301 0.63424098 0.37824798 0.65167701 0.37829298 0.65271503\n\t\t 0.38433999 0.63548398 0.38433897 0.63548398 0.38433897 0.634911 0.37830299 0.65167701\n\t\t 0.37829298 0.67013401 0.37830502 0.67097902 0.38428903 0.65271503 0.38433999 0.65271503\n\t\t 0.38433999 0.65237498 0.37830299 0.67013401 0.37830502 0.67116201 0.39049602 0.67097902\n\t\t 0.38428903 0.690184 0.38453102 0.690184 0.38453102 0.690319 0.39122897 0.67116201\n\t\t 0.39049602 0.67126501 0.39703298 0.67116201 0.39049602 0.690319 0.39122897 0.690319\n\t\t 0.39122897 0.69037902 0.39800203 0.67126501 0.39703298 0.67133701 0.40391397 0.67126501\n\t\t 0.39703298 0.69037902 0.39800203 0.69037902 0.39800203 0.690391 0.40466303 0.67133701\n\t\t 0.40391397 0.67143703 0.41098201 0.67133701 0.40391397 0.690391 0.40466303 0.690391\n\t\t 0.40466303 0.690409 0.41131097 0.67143703 0.41098201 0.67158699 0.41806501 0.67143703\n\t\t 0.41098201 0.690409 0.41131097 0.690409 0.41131097 0.69045597 0.41810799 0.67158699\n\t\t 0.41806501 0.67177099 0.42512399 0.67158699 0.41806501 0.69045597 0.41810799 0.69045597\n\t\t 0.41810799 0.69053203 0.425071 0.67177099 0.42512399 0.67196 0.43218601 0.67177099\n\t\t 0.42512399 0.69053203 0.425071 0.69053203 0.425071 0.69061798 0.43212402 0.67196\n\t\t 0.43218601 0.67212701 0.43926799 0.67196 0.43218601 0.69061798 0.43212402 0.69061798\n\t\t 0.43212402 0.69070202 0.43921798 0.67212701 0.43926799 0.69070202 0.43921798 0.69061798\n\t\t 0.43212402 0.70975298 0.43198401 0.70975298 0.43198401 0.70975298 0.43912798 0.69070202\n\t\t 0.43921798 0.70975298 0.43912798 0.70975298 0.43198401 0.72957098 0.43198401 0.72957098\n\t\t 0.43198401 0.72957098 0.43912798 0.70975298 0.43912798 0.72957098 0.43912798 0.72957098\n\t\t 0.43198401 0.74909002 0.43198401 0.74909002 0.43198401 0.74909002 0.43912798 0.72957098\n\t\t 0.43912798 0.74909002 0.42480898 0.74909002 0.43198401 0.72957098 0.43198401 0.72957098\n\t\t 0.43198401 0.72957098 0.42480898 0.74909002 0.42480898 0.72957098 0.42480898 0.72957098\n\t\t 0.43198401 0.70975298 0.43198401 0.70975298 0.43198401 0.70975298 0.42480898 0.72957098\n\t\t 0.42480898 0.70975298 0.42480898 0.70975298 0.43198401 0.69061798 0.43212402 0.69061798\n\t\t 0.43212402 0.69053203 0.425071 0.70975298 0.42480898 0.69053203 0.425071 0.69045597\n\t\t 0.41810799 0.70975298 0.41754699 0.70975298 0.41754699 0.70975298 0.42480898 0.69053203\n\t\t 0.425071 0.70975298 0.42480898 0.70975298 0.41754699 0.72957098 0.41754699 0.72957098\n\t\t 0.41754699 0.72957098 0.42480898 0.70975298 0.42480898 0.72957098 0.42480898 0.72957098\n\t\t 0.41754699 0.74909002 0.41754699 0.74909002 0.41754699 0.74909002 0.42480898 0.72957098\n\t\t 0.42480898 0.74909002 0.41019899 0.74909002 0.41754699 0.72957098 0.41754699 0.72957098\n\t\t 0.41754699;\n\tsetAttr \".uvst[0].uvsp[26000:26249]\" 0.72957098 0.41019899 0.74909002 0.41019899\n\t\t 0.72957098 0.41019899 0.72957098 0.41754699 0.70975298 0.41754699 0.70975298 0.41754699\n\t\t 0.70975298 0.41019899 0.72957098 0.41019899 0.70975298 0.41019899 0.70975298 0.41754699\n\t\t 0.69045597 0.41810799 0.69045597 0.41810799 0.690409 0.41131097 0.70975298 0.41019899\n\t\t 0.70975298 0.40285999 0.70975298 0.41019899 0.690409 0.41131097 0.690409 0.41131097\n\t\t 0.690391 0.40466303 0.70975298 0.40285999 0.70975298 0.41019899 0.70975298 0.40285999\n\t\t 0.72957098 0.40285999 0.72957098 0.40285999 0.72957098 0.41019899 0.70975298 0.41019899\n\t\t 0.72957098 0.41019899 0.72957098 0.40285999 0.74909002 0.40285999 0.74909002 0.40285999\n\t\t 0.74909002 0.41019899 0.72957098 0.41019899 0.74909002 0.39579302 0.74909002 0.40285999\n\t\t 0.72957098 0.40285999 0.72957098 0.40285999 0.72957098 0.39579302 0.74909002 0.39579302\n\t\t 0.72957098 0.39579302 0.72957098 0.40285999 0.70975298 0.40285999 0.70975298 0.40285999\n\t\t 0.70975298 0.39579302 0.72957098 0.39579302 0.70975298 0.39579302 0.70975298 0.40285999\n\t\t 0.690391 0.40466303 0.690391 0.40466303 0.69037902 0.39800203 0.70975298 0.39579302\n\t\t 0.70975298 0.38929898 0.70975298 0.39579302 0.69037902 0.39800203 0.69037902 0.39800203\n\t\t 0.690319 0.39122897 0.70975298 0.38929898 0.70975298 0.39579302 0.70975298 0.38929898\n\t\t 0.72957098 0.38929898 0.72957098 0.38929898 0.72957098 0.39579302 0.70975298 0.39579302\n\t\t 0.72957098 0.39579302 0.72957098 0.38929898 0.74909002 0.38929898 0.74909002 0.38929898\n\t\t 0.74909002 0.39579302 0.72957098 0.39579302 0.74909002 0.38366097 0.74909002 0.38929898\n\t\t 0.72957098 0.38929898 0.72957098 0.38929898 0.72957098 0.38366097 0.74909002 0.38366097\n\t\t 0.72957098 0.38366097 0.72957098 0.38929898 0.70975298 0.38929898 0.70975298 0.38929898\n\t\t 0.70975298 0.38366097 0.72957098 0.38366097 0.70975298 0.38366097 0.70975298 0.38929898\n\t\t 0.690319 0.39122897 0.690319 0.39122897 0.690184 0.38453102 0.70975298 0.38366097\n\t\t 0.70901603 0.37810999 0.70975298 0.38366097 0.690184 0.38453102 0.690184 0.38453102\n\t\t 0.689978 0.37811202 0.70901603 0.37810999 0.72895098 0.37895399 0.72957098 0.38366097\n\t\t 0.70975298 0.38366097 0.70975298 0.38366097 0.70978302 0.378959 0.72895098 0.37895399\n\t\t 0.74849802 0.37894601 0.74909002 0.38366097 0.72957098 0.38366097 0.72957098 0.38366097\n\t\t 0.72960597 0.37895399 0.74849802 0.37894601 0.74909002 0.38929898 0.74909002 0.38366097\n\t\t 0.76784199 0.38366097 0.76784199 0.38366097 0.76784199 0.38929898 0.74909002 0.38929898\n\t\t 0.74909002 0.39579302 0.74909002 0.38929898 0.76784199 0.38929898 0.76784199 0.38929898\n\t\t 0.76784199 0.39579302 0.74909002 0.39579302 0.74909002 0.40285999 0.74909002 0.39579302\n\t\t 0.76784199 0.39579302 0.76784199 0.39579302 0.76784199 0.40285999 0.74909002 0.40285999\n\t\t 0.74909002 0.41019899 0.74909002 0.40285999 0.76784199 0.40285999 0.76784199 0.40285999\n\t\t 0.76784199 0.41019899 0.74909002 0.41019899 0.74909002 0.41754699 0.74909002 0.41019899\n\t\t 0.76784199 0.41019899 0.76784199 0.41019899 0.76784199 0.41754699 0.74909002 0.41754699\n\t\t 0.74909002 0.42480898 0.74909002 0.41754699 0.76784199 0.41754699 0.76784199 0.41754699\n\t\t 0.76784199 0.42480898 0.74909002 0.42480898 0.74909002 0.43198401 0.74909002 0.42480898\n\t\t 0.76784199 0.42480898 0.76784199 0.42480898 0.76784199 0.43198401 0.74909002 0.43198401\n\t\t 0.74909002 0.43912798 0.74909002 0.43198401 0.76784199 0.43198401 0.76784199 0.43198401\n\t\t 0.76784199 0.43912798 0.74909002 0.43912798 0.76784199 0.43912798 0.76784199 0.43198401\n\t\t 0.78534901 0.43198401 0.78534901 0.43198401 0.78534901 0.43912798 0.76784199 0.43912798\n\t\t 0.78534901 0.43912798 0.78534901 0.43198401 0.80120897 0.43198401 0.80120897 0.43198401\n\t\t 0.80120897 0.43912798 0.78534901 0.43912798 0.80120897 0.43912798 0.80120897 0.43198401\n\t\t 0.82712501 0.43198401 0.82712501 0.43198401 0.82712501 0.43912798 0.80120897 0.43912798\n\t\t 0.82712501 0.42480898 0.82712501 0.43198401 0.80120897 0.43198401 0.80120897 0.43198401\n\t\t 0.80120897 0.42480898 0.82712501 0.42480898 0.80120897 0.42480898 0.80120897 0.43198401\n\t\t 0.78534901 0.43198401 0.78534901 0.43198401 0.78534901 0.42480898 0.80120897 0.42480898\n\t\t 0.78534901 0.42480898 0.78534901 0.43198401 0.76784199 0.43198401 0.76784199 0.43198401\n\t\t 0.76784199 0.42480898 0.78534901 0.42480898 0.76784199 0.42480898 0.76784199 0.41754699\n\t\t 0.78534901 0.41754699 0.78534901 0.41754699 0.78534901 0.42480898 0.76784199 0.42480898\n\t\t 0.78534901 0.42480898 0.78534901 0.41754699 0.80120897 0.41754699 0.80120897 0.41754699\n\t\t 0.80120897 0.42480898 0.78534901 0.42480898 0.80120897 0.42480898 0.80120897 0.41754699\n\t\t 0.82712501 0.41754699 0.82712501 0.41754699 0.82712501 0.42480898 0.80120897 0.42480898\n\t\t 0.82712501 0.41019899 0.82712501 0.41754699 0.80120897 0.41754699 0.80120897 0.41754699\n\t\t 0.80120897 0.41019899 0.82712501 0.41019899 0.80120897 0.41019899 0.80120897 0.41754699\n\t\t 0.78534901 0.41754699 0.78534901 0.41754699 0.78534901 0.41019899 0.80120897 0.41019899\n\t\t 0.78534901 0.41019899 0.78534901 0.41754699 0.76784199 0.41754699 0.76784199 0.41754699\n\t\t 0.76784199 0.41019899 0.78534901 0.41019899 0.78534901 0.40285999 0.78534901 0.41019899\n\t\t 0.76784199 0.41019899 0.76784199 0.41019899 0.76784199 0.40285999 0.78534901 0.40285999\n\t\t 0.78534901 0.41019899 0.78534901 0.40285999 0.80120897 0.40285999 0.80120897 0.40285999\n\t\t 0.80120897 0.41019899 0.78534901 0.41019899 0.80120897 0.41019899 0.80120897 0.40285999\n\t\t 0.82712501 0.40285999 0.82712501 0.40285999 0.82712501 0.41019899 0.80120897 0.41019899\n\t\t 0.82712501 0.39579302 0.82712501 0.40285999 0.80120897 0.40285999 0.80120897 0.40285999\n\t\t 0.80120897 0.39579302 0.82712501 0.39579302 0.80120897 0.39579302 0.80120897 0.40285999;\n\tsetAttr \".uvst[0].uvsp[26250:26499]\" 0.78534901 0.40285999 0.78534901 0.40285999\n\t\t 0.78534901 0.39579302 0.80120897 0.39579302 0.78534901 0.39579302 0.78534901 0.40285999\n\t\t 0.76784199 0.40285999 0.76784199 0.40285999 0.76784199 0.39579302 0.78534901 0.39579302\n\t\t 0.78534901 0.38929898 0.78534901 0.39579302 0.76784199 0.39579302 0.76784199 0.39579302\n\t\t 0.76784199 0.38929898 0.78534901 0.38929898 0.78534901 0.39579302 0.78534901 0.38929898\n\t\t 0.80120897 0.38929898 0.80120897 0.38929898 0.80120897 0.39579302 0.78534901 0.39579302\n\t\t 0.80120897 0.39579302 0.80120897 0.38929898 0.82712501 0.38929898 0.82712501 0.38929898\n\t\t 0.82712501 0.39579302 0.80120897 0.39579302 0.82712501 0.38366097 0.82712501 0.38929898\n\t\t 0.80120897 0.38929898 0.80120897 0.38929898 0.80120897 0.38366097 0.82712501 0.38366097\n\t\t 0.80120897 0.38366097 0.80120897 0.38929898 0.78534901 0.38929898 0.78534901 0.38929898\n\t\t 0.78534901 0.38366097 0.80120897 0.38366097 0.78534901 0.38366097 0.78534901 0.38929898\n\t\t 0.76784199 0.38929898 0.76784199 0.38929898 0.76784199 0.38366097 0.78534901 0.38366097\n\t\t 0.784863 0.37894899 0.78534901 0.38366097 0.76784199 0.38366097 0.76784199 0.38366097\n\t\t 0.76788503 0.378959 0.784863 0.37894899 0.80078101 0.37894797 0.80120897 0.38366097\n\t\t 0.78534901 0.38366097 0.78534901 0.38366097 0.78537798 0.37896103 0.80078101 0.37894797\n\t\t 0.82712501 0.39579302 0.82712501 0.38929898 0.85441101 0.38929898 0.85441101 0.38929898\n\t\t 0.82712501 0.38929898 0.82712501 0.38366097 0.82712501 0.38366097 0.85441101 0.38366097\n\t\t 0.85441101 0.38929898 0.85441101 0.38929898 0.85441101 0.38366097 0.865794 0.38366097\n\t\t 0.865794 0.38366097 0.865794 0.38929898 0.85441101 0.38929898 0.85441101 0.38929898\n\t\t 0.865794 0.38929898 0.865794 0.39579302 0.865794 0.39579302 0.85441101 0.39579302\n\t\t 0.85441101 0.38929898 0.85441101 0.40285999 0.85441101 0.39579302 0.865794 0.39579302\n\t\t 0.865794 0.39579302 0.865794 0.40285999 0.85441101 0.40285999 0.85441101 0.40285999\n\t\t 0.865794 0.40285999 0.865794 0.41019899 0.865794 0.41019899 0.85441101 0.41019899\n\t\t 0.85441101 0.40285999 0.85441101 0.41754699 0.85441101 0.41019899 0.865794 0.41019899\n\t\t 0.865794 0.41019899 0.865794 0.41754699 0.85441101 0.41754699 0.85441101 0.41754699\n\t\t 0.865794 0.41754699 0.865794 0.42480898 0.865794 0.42480898 0.85441101 0.42480898\n\t\t 0.85441101 0.41754699 0.85441101 0.43198401 0.85441101 0.42480898 0.865794 0.42480898\n\t\t 0.865794 0.42480898 0.865794 0.43198401 0.85441101 0.43198401 0.85441101 0.43198401\n\t\t 0.865794 0.43198401 0.865794 0.43912798 0.865794 0.43912798 0.85441101 0.43912798\n\t\t 0.85441101 0.43198401 0.85441101 0.43198401 0.85441101 0.43912798 0.82712501 0.43912798\n\t\t 0.82712501 0.43912798 0.82712501 0.43198401 0.85441101 0.43198401 0.85441101 0.43198401\n\t\t 0.82712501 0.43198401 0.82712501 0.42480898 0.82712501 0.42480898 0.85441101 0.42480898\n\t\t 0.85441101 0.43198401 0.85441101 0.41754699 0.85441101 0.42480898 0.82712501 0.42480898\n\t\t 0.82712501 0.42480898 0.82712501 0.41754699 0.85441101 0.41754699 0.85441101 0.41754699\n\t\t 0.82712501 0.41754699 0.82712501 0.41019899 0.82712501 0.41019899 0.85441101 0.41019899\n\t\t 0.85441101 0.41754699 0.85441101 0.40285999 0.85441101 0.41019899 0.82712501 0.41019899\n\t\t 0.82712501 0.41019899 0.82712501 0.40285999 0.85441101 0.40285999 0.85441101 0.40285999\n\t\t 0.82712501 0.40285999 0.82712501 0.39579302 0.82712501 0.39579302 0.85441101 0.39579302\n\t\t 0.85441101 0.40285999 0.85441101 0.38929898 0.85441101 0.39579302 0.82712501 0.39579302\n\t\t 0.85441101 0.446311 0.85441101 0.43912798 0.865794 0.43912798 0.865794 0.43912798\n\t\t 0.865794 0.446311 0.85441101 0.446311 0.85441101 0.446311 0.865794 0.446311 0.865794\n\t\t 0.45353299 0.865794 0.45353299 0.85441101 0.45353299 0.85441101 0.446311 0.85441101\n\t\t 0.46066999 0.85441101 0.45353299 0.865794 0.45353299 0.865794 0.45353299 0.865794\n\t\t 0.46066999 0.85441101 0.46066999 0.85441101 0.46066999 0.865794 0.46066999 0.865794\n\t\t 0.46759498 0.865794 0.46759498 0.85441101 0.46759498 0.85441101 0.46066999 0.85441101\n\t\t 0.47432297 0.85441101 0.46759498 0.865794 0.46759498 0.865794 0.46759498 0.865794\n\t\t 0.47432297 0.85441101 0.47432297 0.85441101 0.47432297 0.865794 0.47432297 0.865794\n\t\t 0.481004 0.865794 0.481004 0.85441101 0.481004 0.85441101 0.47432297 0.85441101 0.48759103\n\t\t 0.85441101 0.481004 0.865794 0.481004 0.865794 0.481004 0.865794 0.48759103 0.85441101\n\t\t 0.48759103 0.82712501 0.481004 0.85441101 0.481004 0.85441101 0.48759103 0.85441101\n\t\t 0.47432297 0.85441101 0.481004 0.82712501 0.481004 0.85441101 0.48759103 0.82712501\n\t\t 0.48759103 0.82712501 0.481004 0.82712501 0.481004 0.82712501 0.48759103 0.80120897\n\t\t 0.48759103 0.80120897 0.48759103 0.80120897 0.481004 0.82712501 0.481004 0.80120897\n\t\t 0.481004 0.80120897 0.48759103 0.78534901 0.48759103 0.78534901 0.48759103 0.78534901\n\t\t 0.481004 0.80120897 0.481004 0.78534901 0.481004 0.78534901 0.48759103 0.76784199\n\t\t 0.48759103 0.76784199 0.48759103 0.76784199 0.481004 0.78534901 0.481004 0.76784199\n\t\t 0.481004 0.76784199 0.48759103 0.74909002 0.48759103 0.74909002 0.48759103 0.74909002\n\t\t 0.481004 0.76784199 0.481004 0.74909002 0.481004 0.74909002 0.48759103 0.72957098\n\t\t 0.48759103 0.72957098 0.48759103 0.72957098 0.481004 0.74909002 0.481004 0.72957098\n\t\t 0.481004 0.72957098 0.48759103 0.70975298 0.48759103 0.70975298 0.48759103 0.70975298\n\t\t 0.481004 0.72957098 0.481004 0.70975298 0.481004 0.70975298 0.48759103 0.69024998\n\t\t 0.486826 0.69024998 0.486826 0.69048601 0.48045498 0.70975298 0.481004 0.69048601\n\t\t 0.48045498 0.69024998 0.486826 0.671112 0.486718;\n\tsetAttr \".uvst[0].uvsp[26500:26749]\" 0.671112 0.486718 0.671547 0.48024797 0.69048601\n\t\t 0.48045498 0.671547 0.48024797 0.671112 0.486718 0.65288597 0.486718 0.65288597 0.486718\n\t\t 0.65348899 0.48022401 0.671547 0.48024797 0.65348899 0.48022401 0.65288597 0.486718\n\t\t 0.63565397 0.486754 0.63565397 0.486754 0.636397 0.48029602 0.65348899 0.48022401\n\t\t 0.636397 0.48029602 0.63565397 0.486754 0.61946899 0.48681599 0.61946899 0.48681599\n\t\t 0.62032801 0.48043698 0.636397 0.48029602 0.62032801 0.48043698 0.61946899 0.48681599\n\t\t 0.60426599 0.48687899 0.60426599 0.48687899 0.60524702 0.48059797 0.62032801 0.48043698\n\t\t 0.60524702 0.48059797 0.60426599 0.48687899 0.58977002 0.48689502 0.58977002 0.48689502\n\t\t 0.59096801 0.480685 0.60524702 0.48059797 0.59096801 0.480685 0.58977002 0.48689502\n\t\t 0.57581502 0.48694903 0.57581502 0.48694903 0.57732898 0.48079598 0.59096801 0.480685\n\t\t 0.57732898 0.48079598 0.57581502 0.48694903 0.562325 0.487077 0.562325 0.487077 0.56427503\n\t\t 0.48098701 0.57732898 0.48079598 0.56427503 0.48098701 0.562325 0.487077 0.54930401\n\t\t 0.487212 0.54930401 0.487212 0.55180901 0.481062 0.56427503 0.48098701 0.55180901\n\t\t 0.481062 0.54930401 0.487212 0.53684199 0.48711598 0.53684199 0.48711598 0.53990799\n\t\t 0.48073798 0.55180901 0.481062 0.53990799 0.48073798 0.53684199 0.48711598 0.52441001\n\t\t 0.48689198 0.52441001 0.48689198 0.52792299 0.480214 0.53990799 0.48073798 0.52792299\n\t\t 0.480214 0.52441001 0.48689198 0.511967 0.48662901 0.511967 0.48662901 0.51563501\n\t\t 0.47966999 0.52792299 0.480214 0.51563501 0.47966999 0.511967 0.48662901 0.49960899\n\t\t 0.48632199 0.49960899 0.48632199 0.50296599 0.47917598 0.51563501 0.47966999 0.50296599\n\t\t 0.47917598 0.49960899 0.48632199 0.48718399 0.48622102 0.48371401 0.49365902 0.48718399\n\t\t 0.48622102 0.49960899 0.48632199 0.48718399 0.48622102 0.48371401 0.49365902 0.47394899\n\t\t 0.493406 0.47394899 0.493406 0.47521299 0.48649001 0.48718399 0.48622102 0.49960899\n\t\t 0.48632199 0.49467599 0.49354899 0.48371401 0.49365902 0.48718399 0.48622102 0.48966101\n\t\t 0.47921801 0.50296599 0.47917598 0.48966101 0.47921801 0.48718399 0.48622102 0.47521299\n\t\t 0.48649001 0.47521299 0.48649001 0.47654101 0.47997802 0.48966101 0.47921801 0.47654101\n\t\t 0.47997802 0.47521299 0.48649001 0.455163 0.48667198 0.455163 0.48667198 0.454689\n\t\t 0.48023999 0.47654101 0.47997802 0.47758099 0.47346997 0.47654101 0.47997802 0.454689\n\t\t 0.48023999 0.454689 0.48023999 0.45473099 0.47384602 0.47758099 0.47346997 0.47654101\n\t\t 0.47997802 0.47758099 0.47346997 0.491294 0.47237003 0.491294 0.47237003 0.48966101\n\t\t 0.47921801 0.47654101 0.47997802 0.48966101 0.47921801 0.491294 0.47237003 0.50513101\n\t\t 0.47230101 0.50513101 0.47230101 0.50296599 0.47917598 0.48966101 0.47921801 0.50642902\n\t\t 0.46557701 0.50513101 0.47230101 0.491294 0.47237003 0.491294 0.47237003 0.492226\n\t\t 0.46558797 0.50642902 0.46557701 0.492226 0.46558797 0.491294 0.47237003 0.47758099\n\t\t 0.47346997 0.47758099 0.47346997 0.478118 0.46669197 0.492226 0.46558797 0.478118\n\t\t 0.46669197 0.47758099 0.47346997 0.45473099 0.47384602 0.45473099 0.47384602 0.45460999\n\t\t 0.46722698 0.478118 0.46669197 0.478122 0.45984602 0.478118 0.46669197 0.45460999\n\t\t 0.46722698 0.45460999 0.46722698 0.45421699 0.46036899 0.478122 0.45984602 0.478118\n\t\t 0.46669197 0.478122 0.45984602 0.492457 0.45875901 0.492457 0.45875901 0.492226 0.46558797\n\t\t 0.478118 0.46669197 0.492226 0.46558797 0.492457 0.45875901 0.50689101 0.45888698\n\t\t 0.50689101 0.45888698 0.50642902 0.46557701 0.492226 0.46558797 0.50651699 0.452214\n\t\t 0.50689101 0.45888698 0.492457 0.45875901 0.492457 0.45875901 0.491965 0.45210397\n\t\t 0.50651699 0.452214 0.491965 0.45210397 0.492457 0.45875901 0.478122 0.45984602 0.478122\n\t\t 0.45984602 0.47755599 0.45285201 0.491965 0.45210397 0.47755599 0.45285201 0.478122\n\t\t 0.45984602 0.45421699 0.46036899 0.45421699 0.46036899 0.453594 0.45337802 0.47755599\n\t\t 0.45285201 0.476587 0.44581199 0.47755599 0.45285201 0.453594 0.45337802 0.453594\n\t\t 0.45337802 0.452894 0.446275 0.476587 0.44581199 0.47755599 0.45285201 0.476587 0.44581199\n\t\t 0.49088901 0.44551802 0.49088901 0.44551802 0.491965 0.45210397 0.47755599 0.45285201\n\t\t 0.491965 0.45210397 0.49088901 0.44551802 0.50541598 0.44568098 0.50541598 0.44568098\n\t\t 0.50651699 0.452214 0.491965 0.45210397 0.50377399 0.43921602 0.50541598 0.44568098\n\t\t 0.49088901 0.44551802 0.49088901 0.44551802 0.48940399 0.43898898 0.50377399 0.43921602\n\t\t 0.48940399 0.43898898 0.49088901 0.44551802 0.476587 0.44581199 0.476587 0.44581199\n\t\t 0.475375 0.438833 0.48940399 0.43898898 0.475375 0.438833 0.476587 0.44581199 0.452894\n\t\t 0.446275 0.452894 0.446275 0.45223501 0.43911499 0.475375 0.438833 0.50689101 0.45888698\n\t\t 0.50651699 0.452214 0.52023602 0.452254 0.52023602 0.452254 0.520401 0.45894402 0.50689101\n\t\t 0.45888698 0.50642902 0.46557701 0.50689101 0.45888698 0.520401 0.45894402 0.520401\n\t\t 0.45894402 0.51969498 0.46575201 0.50642902 0.46557701 0.50513101 0.47230101 0.50642902\n\t\t 0.46557701 0.51969498 0.46575201 0.51969498 0.46575201 0.51811898 0.47267199 0.50513101\n\t\t 0.47230101 0.50296599 0.47917598 0.50513101 0.47230101 0.51811898 0.47267199 0.51811898\n\t\t 0.47267199 0.51563501 0.47966999 0.50296599 0.47917598 0.51563501 0.47966999 0.51811898\n\t\t 0.47267199 0.530518 0.47324598 0.530518 0.47324598 0.52792299 0.480214 0.51563501\n\t\t 0.47966999 0.52792299 0.480214 0.530518 0.47324598 0.54247099 0.47387302 0.54247099\n\t\t 0.47387302 0.53990799 0.48073798 0.52792299 0.480214 0.53990799 0.48073798;\n\tsetAttr \".uvst[0].uvsp[26750:26999]\" 0.54247099 0.47387302 0.55420297 0.474361\n\t\t 0.55420297 0.474361 0.55180901 0.481062 0.53990799 0.48073798 0.55614299 0.46731299\n\t\t 0.55420297 0.474361 0.54247099 0.47387302 0.54247099 0.47387302 0.54439598 0.46680301\n\t\t 0.55614299 0.46731299 0.54439598 0.46680301 0.54247099 0.47387302 0.530518 0.47324598\n\t\t 0.530518 0.47324598 0.53230298 0.46622801 0.54439598 0.46680301 0.53230298 0.46622801\n\t\t 0.530518 0.47324598 0.51811898 0.47267199 0.51811898 0.47267199 0.51969498 0.46575201\n\t\t 0.53230298 0.46622801 0.51969498 0.46575201 0.520401 0.45894402 0.53326398 0.45927799\n\t\t 0.53326398 0.45927799 0.53230298 0.46622801 0.51969498 0.46575201 0.53230298 0.46622801\n\t\t 0.53326398 0.45927799 0.545591 0.45969498 0.545591 0.45969498 0.54439598 0.46680301\n\t\t 0.53230298 0.46622801 0.54439598 0.46680301 0.545591 0.45969498 0.55748802 0.46007699\n\t\t 0.55748802 0.46007699 0.55614299 0.46731299 0.54439598 0.46680301 0.55809999 0.45280701\n\t\t 0.55748802 0.46007699 0.545591 0.45969498 0.545591 0.45969498 0.54598403 0.45261502\n\t\t 0.55809999 0.45280701 0.54598403 0.45261502 0.545591 0.45969498 0.53326398 0.45927799\n\t\t 0.53326398 0.45927799 0.53337401 0.45242202 0.54598403 0.45261502 0.53337401 0.45242202\n\t\t 0.53326398 0.45927799 0.520401 0.45894402 0.520401 0.45894402 0.52023602 0.452254\n\t\t 0.53337401 0.45242202 0.5327 0.44562399 0.53337401 0.45242202 0.52023602 0.452254\n\t\t 0.52023602 0.452254 0.51929599 0.445656 0.5327 0.44562399 0.51929599 0.445656 0.52023602\n\t\t 0.452254 0.50651699 0.452214 0.50651699 0.452214 0.50541598 0.44568098 0.51929599\n\t\t 0.445656 0.53337401 0.45242202 0.5327 0.44562399 0.54560202 0.44554299 0.54560202\n\t\t 0.44554299 0.54598403 0.45261502 0.53337401 0.45242202 0.54598403 0.45261502 0.54560202\n\t\t 0.44554299 0.55796701 0.44548601 0.55796701 0.44548601 0.55809999 0.45280701 0.54598403\n\t\t 0.45261502 0.55710298 0.43813503 0.55796701 0.44548601 0.54560202 0.44554299 0.54560202\n\t\t 0.44554299 0.54449099 0.438438 0.55710298 0.43813503 0.54449099 0.438438 0.54560202\n\t\t 0.44554299 0.5327 0.44562399 0.5327 0.44562399 0.53133702 0.438806 0.54449099 0.438438\n\t\t 0.53133702 0.438806 0.5327 0.44562399 0.51929599 0.445656 0.51929599 0.445656 0.51772499\n\t\t 0.43905997 0.53133702 0.438806 0.51772499 0.43905997 0.51929599 0.445656 0.50541598\n\t\t 0.44568098 0.50541598 0.44568098 0.50377399 0.43921602 0.51772499 0.43905997 0.55748802\n\t\t 0.46007699 0.55809999 0.45280701 0.57001102 0.45298302 0.55809999 0.45280701 0.55796701\n\t\t 0.44548601 0.57004601 0.44557601 0.57004601 0.44557601 0.57001102 0.45298302 0.55809999\n\t\t 0.45280701 0.57001102 0.45298302 0.57004601 0.44557601 0.58225203 0.44575799 0.58225203\n\t\t 0.44575799 0.58209598 0.45317 0.57001102 0.45298302 0.56932497 0.460325 0.57001102\n\t\t 0.45298302 0.58209598 0.45317 0.58209598 0.45317 0.581429 0.46050298 0.56932497 0.460325\n\t\t 0.568039 0.46750402 0.56932497 0.460325 0.581429 0.46050298 0.56932497 0.460325 0.568039\n\t\t 0.46750402 0.55614299 0.46731299 0.55420297 0.474361 0.55614299 0.46731299 0.568039\n\t\t 0.46750402 0.568039 0.46750402 0.56630498 0.47444803 0.55420297 0.474361 0.55180901\n\t\t 0.481062 0.55420297 0.474361 0.56630498 0.47444803 0.56630498 0.47444803 0.56427503\n\t\t 0.48098701 0.55180901 0.481062 0.56427503 0.48098701 0.56630498 0.47444803 0.578915\n\t\t 0.474343 0.578915 0.474343 0.57732898 0.48079598 0.56427503 0.48098701 0.57732898\n\t\t 0.48079598 0.578915 0.474343 0.59214401 0.47426403 0.59214401 0.47426403 0.59096801\n\t\t 0.480685 0.57732898 0.48079598 0.59096801 0.480685 0.59214401 0.47426403 0.60611898\n\t\t 0.474145 0.60611898 0.474145 0.60524702 0.48059797 0.59096801 0.480685 0.60693002\n\t\t 0.467457 0.60611898 0.474145 0.59214401 0.47426403 0.59214401 0.47426403 0.59322703\n\t\t 0.46755201 0.60693002 0.467457 0.59322703 0.46755201 0.59214401 0.47426403 0.578915\n\t\t 0.474343 0.578915 0.474343 0.580329 0.46758401 0.59322703 0.46755201 0.580329 0.46758401\n\t\t 0.578915 0.474343 0.56630498 0.47444803 0.56630498 0.47444803 0.568039 0.46750402\n\t\t 0.580329 0.46758401 0.581429 0.46050298 0.580329 0.46758401 0.568039 0.46750402 0.580329\n\t\t 0.46758401 0.581429 0.46050298 0.59411001 0.46054202 0.59411001 0.46054202 0.59322703\n\t\t 0.46755201 0.580329 0.46758401 0.59322703 0.46755201 0.59411001 0.46054202 0.60762298\n\t\t 0.46052098 0.60762298 0.46052098 0.60693002 0.467457 0.59322703 0.46755201 0.608132\n\t\t 0.45338202 0.60762298 0.46052098 0.59411001 0.46054202 0.59411001 0.46054202 0.59470499\n\t\t 0.45330203 0.608132 0.45338202 0.59470499 0.45330203 0.59411001 0.46054202 0.581429\n\t\t 0.46050298 0.581429 0.46050298 0.58209598 0.45317 0.59470499 0.45330203 0.59494197\n\t\t 0.44595802 0.59470499 0.45330203 0.58209598 0.45317 0.58209598 0.45317 0.58225203\n\t\t 0.44575799 0.59494197 0.44595802 0.59470499 0.45330203 0.59494197 0.44595802 0.60839099\n\t\t 0.44612801 0.60839099 0.44612801 0.608132 0.45338202 0.59470499 0.45330203 0.60839099\n\t\t 0.43884999 0.60839099 0.44612801 0.59494197 0.44595802 0.59494197 0.44595802 0.59480798\n\t\t 0.43862998 0.60839099 0.43884999 0.59480798 0.43862998 0.59494197 0.44595802 0.58225203\n\t\t 0.44575799 0.58225203 0.44575799 0.58189797 0.43838298 0.59480798 0.43862998 0.58189797\n\t\t 0.43838298 0.58225203 0.44575799 0.57004601 0.44557601 0.57004601 0.44557601 0.56943601\n\t\t 0.43817198 0.58189797 0.43838298 0.56943601 0.43817198 0.57004601 0.44557601 0.55796701\n\t\t 0.44548601 0.55796701 0.44548601 0.55710298 0.43813503 0.56943601 0.43817198 0.60762298\n\t\t 0.46052098 0.608132 0.45338202 0.62259299 0.45340002 0.62259299 0.45340002 0.62219799\n\t\t 0.46044099;\n\tsetAttr \".uvst[0].uvsp[27000:27249]\" 0.60762298 0.46052098 0.60693002 0.467457\n\t\t 0.60762298 0.46052098 0.62219799 0.46044099 0.62219799 0.46044099 0.62166101 0.4673\n\t\t 0.60693002 0.467457 0.60611898 0.474145 0.60693002 0.467457 0.62166101 0.4673 0.62166101\n\t\t 0.4673 0.62102699 0.47395402 0.60611898 0.474145 0.60524702 0.48059797 0.60611898\n\t\t 0.474145 0.62102699 0.47395402 0.62102699 0.47395402 0.62032801 0.48043698 0.60524702\n\t\t 0.48059797 0.62032801 0.48043698 0.62102699 0.47395402 0.63697499 0.47379601 0.63697499\n\t\t 0.47379601 0.636397 0.48029602 0.62032801 0.48043698 0.636397 0.48029602 0.63697499\n\t\t 0.47379601 0.653943 0.47372103 0.653943 0.47372103 0.65348899 0.48022401 0.636397\n\t\t 0.48029602 0.65348899 0.48022401 0.653943 0.47372103 0.67185801 0.47375703 0.67185801\n\t\t 0.47375703 0.671547 0.48024797 0.65348899 0.48022401 0.67207998 0.46714699 0.67185801\n\t\t 0.47375703 0.653943 0.47372103 0.653943 0.47372103 0.65429902 0.467112 0.67207998\n\t\t 0.46714699 0.65429902 0.467112 0.653943 0.47372103 0.63697499 0.47379601 0.63697499\n\t\t 0.47379601 0.637465 0.46717 0.65429902 0.467112 0.637465 0.46717 0.63697499 0.47379601\n\t\t 0.62102699 0.47395402 0.62102699 0.47395402 0.62166101 0.4673 0.637465 0.46717 0.63785797\n\t\t 0.46036899 0.637465 0.46717 0.62166101 0.4673 0.62166101 0.4673 0.62219799 0.46044099\n\t\t 0.63785797 0.46036899 0.637465 0.46717 0.63785797 0.46036899 0.654558 0.46033698\n\t\t 0.654558 0.46033698 0.65429902 0.467112 0.637465 0.46717 0.65429902 0.467112 0.654558\n\t\t 0.46033698 0.672221 0.46036202 0.672221 0.46036202 0.67207998 0.46714699 0.65429902\n\t\t 0.467112 0.67227697 0.45341498 0.672221 0.46036202 0.654558 0.46033698 0.654558 0.46033698\n\t\t 0.65470499 0.45340002 0.67227697 0.45341498 0.65470499 0.45340002 0.654558 0.46033698\n\t\t 0.63785797 0.46036899 0.63785797 0.46036899 0.63812703 0.45339799 0.65470499 0.45340002\n\t\t 0.63812703 0.45339799 0.63785797 0.46036899 0.62219799 0.46044099 0.62219799 0.46044099\n\t\t 0.62259299 0.45340002 0.63812703 0.45339799 0.63823402 0.44630599 0.63812703 0.45339799\n\t\t 0.62259299 0.45340002 0.62259299 0.45340002 0.62279499 0.44623703 0.63823402 0.44630599\n\t\t 0.62279499 0.44623703 0.62259299 0.45340002 0.608132 0.45338202 0.608132 0.45338202\n\t\t 0.60839099 0.44612801 0.62279499 0.44623703 0.63812703 0.45339799 0.63823402 0.44630599\n\t\t 0.65472198 0.44634598 0.65472198 0.44634598 0.65470499 0.45340002 0.63812703 0.45339799\n\t\t 0.65470499 0.45340002 0.65472198 0.44634598 0.67224002 0.44636101 0.67224002 0.44636101\n\t\t 0.67227697 0.45341498 0.65470499 0.45340002 0.67212701 0.43926799 0.67224002 0.44636101\n\t\t 0.65472198 0.44634598 0.65472198 0.44634598 0.65462297 0.43923903 0.67212701 0.43926799\n\t\t 0.65462297 0.43923903 0.65472198 0.44634598 0.63823402 0.44630599 0.63823402 0.44630599\n\t\t 0.638188 0.43915498 0.65462297 0.43923903 0.638188 0.43915498 0.63823402 0.44630599\n\t\t 0.62279499 0.44623703 0.62279499 0.44623703 0.62279999 0.43902397 0.638188 0.43915498\n\t\t 0.62279999 0.43902397 0.62279499 0.44623703 0.60839099 0.44612801 0.60839099 0.44612801\n\t\t 0.60839099 0.43884999 0.62279999 0.43902397 0.672221 0.46036202 0.67227697 0.45341498\n\t\t 0.690795 0.45344597 0.67227697 0.45341498 0.67224002 0.44636101 0.69076598 0.44634002\n\t\t 0.69076598 0.44634002 0.690795 0.45344597 0.67227697 0.45341498 0.690795 0.45344597\n\t\t 0.69076598 0.44634002 0.70975298 0.446311 0.70975298 0.446311 0.70975298 0.45353299\n\t\t 0.690795 0.45344597 0.69078201 0.46045601 0.690795 0.45344597 0.70975298 0.45353299\n\t\t 0.70975298 0.45353299 0.70975298 0.46066999 0.69078201 0.46045601 0.69072503 0.46729499\n\t\t 0.69078201 0.46045601 0.70975298 0.46066999 0.69078201 0.46045601 0.69072503 0.46729499\n\t\t 0.67207998 0.46714699 0.67185801 0.47375703 0.67207998 0.46714699 0.69072503 0.46729499\n\t\t 0.69072503 0.46729499 0.69063002 0.47395003 0.67185801 0.47375703 0.671547 0.48024797\n\t\t 0.67185801 0.47375703 0.69063002 0.47395003 0.69063002 0.47395003 0.69048601 0.48045498\n\t\t 0.671547 0.48024797 0.69048601 0.48045498 0.69063002 0.47395003 0.70975298 0.47432297\n\t\t 0.70975298 0.47432297 0.70975298 0.481004 0.69048601 0.48045498 0.70975298 0.481004\n\t\t 0.70975298 0.47432297 0.72957098 0.47432297 0.72957098 0.47432297 0.72957098 0.481004\n\t\t 0.70975298 0.481004 0.72957098 0.481004 0.72957098 0.47432297 0.74909002 0.47432297\n\t\t 0.74909002 0.47432297 0.74909002 0.481004 0.72957098 0.481004 0.74909002 0.46759498\n\t\t 0.74909002 0.47432297 0.72957098 0.47432297 0.72957098 0.47432297 0.72957098 0.46759498\n\t\t 0.74909002 0.46759498 0.72957098 0.46759498 0.72957098 0.47432297 0.70975298 0.47432297\n\t\t 0.70975298 0.47432297 0.70975298 0.46759498 0.72957098 0.46759498 0.70975298 0.46759498\n\t\t 0.70975298 0.47432297 0.69063002 0.47395003 0.69063002 0.47395003 0.69072503 0.46729499\n\t\t 0.70975298 0.46759498 0.70975298 0.46066999 0.70975298 0.46759498 0.69072503 0.46729499\n\t\t 0.70975298 0.46759498 0.70975298 0.46066999 0.72957098 0.46066999 0.72957098 0.46066999\n\t\t 0.72957098 0.46759498 0.70975298 0.46759498 0.72957098 0.46759498 0.72957098 0.46066999\n\t\t 0.74909002 0.46066999 0.74909002 0.46066999 0.74909002 0.46759498 0.72957098 0.46759498\n\t\t 0.74909002 0.45353299 0.74909002 0.46066999 0.72957098 0.46066999 0.72957098 0.46066999\n\t\t 0.72957098 0.45353299 0.74909002 0.45353299 0.72957098 0.45353299 0.72957098 0.46066999\n\t\t 0.70975298 0.46066999 0.70975298 0.46066999 0.70975298 0.45353299 0.72957098 0.45353299\n\t\t 0.72957098 0.446311 0.72957098 0.45353299 0.70975298 0.45353299 0.70975298 0.45353299\n\t\t 0.70975298 0.446311 0.72957098 0.446311 0.72957098 0.45353299 0.72957098 0.446311\n\t\t 0.74909002 0.446311;\n\tsetAttr \".uvst[0].uvsp[27250:27499]\" 0.74909002 0.446311 0.74909002 0.45353299\n\t\t 0.72957098 0.45353299 0.74909002 0.43912798 0.74909002 0.446311 0.72957098 0.446311\n\t\t 0.72957098 0.446311 0.72957098 0.43912798 0.74909002 0.43912798 0.72957098 0.43912798\n\t\t 0.72957098 0.446311 0.70975298 0.446311 0.70975298 0.446311 0.70975298 0.43912798\n\t\t 0.72957098 0.43912798 0.70975298 0.43912798 0.70975298 0.446311 0.69076598 0.44634002\n\t\t 0.69076598 0.44634002 0.69070202 0.43921798 0.70975298 0.43912798 0.69070202 0.43921798\n\t\t 0.69076598 0.44634002 0.67224002 0.44636101 0.67224002 0.44636101 0.67212701 0.43926799\n\t\t 0.69070202 0.43921798 0.74909002 0.46066999 0.74909002 0.45353299 0.76784199 0.45353299\n\t\t 0.76784199 0.45353299 0.76784199 0.46066999 0.74909002 0.46066999 0.74909002 0.46759498\n\t\t 0.74909002 0.46066999 0.76784199 0.46066999 0.76784199 0.46066999 0.76784199 0.46759498\n\t\t 0.74909002 0.46759498 0.74909002 0.47432297 0.74909002 0.46759498 0.76784199 0.46759498\n\t\t 0.76784199 0.46759498 0.76784199 0.47432297 0.74909002 0.47432297 0.74909002 0.481004\n\t\t 0.74909002 0.47432297 0.76784199 0.47432297 0.76784199 0.47432297 0.76784199 0.481004\n\t\t 0.74909002 0.481004 0.76784199 0.481004 0.76784199 0.47432297 0.78534901 0.47432297\n\t\t 0.78534901 0.47432297 0.78534901 0.481004 0.76784199 0.481004 0.78534901 0.481004\n\t\t 0.78534901 0.47432297 0.80120897 0.47432297 0.80120897 0.47432297 0.80120897 0.481004\n\t\t 0.78534901 0.481004 0.80120897 0.481004 0.80120897 0.47432297 0.82712501 0.47432297\n\t\t 0.82712501 0.47432297 0.82712501 0.481004 0.80120897 0.481004 0.82712501 0.46759498\n\t\t 0.82712501 0.47432297 0.80120897 0.47432297 0.80120897 0.47432297 0.80120897 0.46759498\n\t\t 0.82712501 0.46759498 0.80120897 0.46759498 0.80120897 0.47432297 0.78534901 0.47432297\n\t\t 0.78534901 0.47432297 0.78534901 0.46759498 0.80120897 0.46759498 0.78534901 0.46759498\n\t\t 0.78534901 0.47432297 0.76784199 0.47432297 0.76784199 0.47432297 0.76784199 0.46759498\n\t\t 0.78534901 0.46759498 0.78534901 0.46066999 0.78534901 0.46759498 0.76784199 0.46759498\n\t\t 0.76784199 0.46759498 0.76784199 0.46066999 0.78534901 0.46066999 0.78534901 0.46759498\n\t\t 0.78534901 0.46066999 0.80120897 0.46066999 0.80120897 0.46066999 0.80120897 0.46759498\n\t\t 0.78534901 0.46759498 0.80120897 0.46759498 0.80120897 0.46066999 0.82712501 0.46066999\n\t\t 0.82712501 0.46066999 0.82712501 0.46759498 0.80120897 0.46759498 0.82712501 0.45353299\n\t\t 0.82712501 0.46066999 0.80120897 0.46066999 0.80120897 0.46066999 0.80120897 0.45353299\n\t\t 0.82712501 0.45353299 0.80120897 0.45353299 0.80120897 0.46066999 0.78534901 0.46066999\n\t\t 0.78534901 0.46066999 0.78534901 0.45353299 0.80120897 0.45353299 0.78534901 0.45353299\n\t\t 0.78534901 0.46066999 0.76784199 0.46066999 0.76784199 0.46066999 0.76784199 0.45353299\n\t\t 0.78534901 0.45353299 0.78534901 0.446311 0.78534901 0.45353299 0.76784199 0.45353299\n\t\t 0.76784199 0.45353299 0.76784199 0.446311 0.78534901 0.446311 0.76784199 0.446311\n\t\t 0.76784199 0.45353299 0.74909002 0.45353299 0.74909002 0.45353299 0.74909002 0.446311\n\t\t 0.76784199 0.446311 0.78534901 0.45353299 0.78534901 0.446311 0.80120897 0.446311\n\t\t 0.80120897 0.446311 0.80120897 0.45353299 0.78534901 0.45353299 0.80120897 0.45353299\n\t\t 0.80120897 0.446311 0.82712501 0.446311 0.82712501 0.446311 0.82712501 0.45353299\n\t\t 0.80120897 0.45353299 0.82712501 0.43912798 0.82712501 0.446311 0.80120897 0.446311\n\t\t 0.80120897 0.446311 0.80120897 0.43912798 0.82712501 0.43912798 0.80120897 0.43912798\n\t\t 0.80120897 0.446311 0.78534901 0.446311 0.78534901 0.446311 0.78534901 0.43912798\n\t\t 0.80120897 0.43912798 0.78534901 0.43912798 0.78534901 0.446311 0.76784199 0.446311\n\t\t 0.76784199 0.446311 0.76784199 0.43912798 0.78534901 0.43912798 0.76784199 0.43912798\n\t\t 0.76784199 0.446311 0.74909002 0.446311 0.74909002 0.446311 0.74909002 0.43912798\n\t\t 0.76784199 0.43912798 0.85441101 0.46066999 0.82712501 0.46066999 0.82712501 0.45353299\n\t\t 0.82712501 0.46759498 0.82712501 0.46066999 0.85441101 0.46066999 0.85441101 0.46066999\n\t\t 0.85441101 0.46759498 0.82712501 0.46759498 0.82712501 0.46759498 0.85441101 0.46759498\n\t\t 0.85441101 0.47432297 0.85441101 0.47432297 0.82712501 0.47432297 0.82712501 0.46759498\n\t\t 0.82712501 0.481004 0.82712501 0.47432297 0.85441101 0.47432297 0.82712501 0.446311\n\t\t 0.82712501 0.43912798 0.85441101 0.43912798 0.85441101 0.43912798 0.85441101 0.446311\n\t\t 0.82712501 0.446311 0.82712501 0.45353299 0.82712501 0.446311 0.85441101 0.446311\n\t\t 0.82712501 0.45353299 0.85441101 0.45353299 0.85441101 0.46066999 0.85441101 0.446311\n\t\t 0.85441101 0.45353299 0.82712501 0.45353299 0.45548001 0.49369103 0.45495501 0.48667002\n\t\t 0.47521299 0.48649001 0.47521299 0.48649001 0.47394899 0.493406 0.45548001 0.49369103\n\t\t 0.54779202 0.38466799 0.54881698 0.37794 0.56153703 0.37799197 0.56153703 0.37799197\n\t\t 0.56108999 0.38434899 0.54779202 0.38466799 0.55614299 0.46731299 0.55748802 0.46007699\n\t\t 0.56932497 0.460325 0.57001102 0.45298302 0.56932497 0.460325 0.55748802 0.46007699\n\t\t 0.60400498 0.38435799 0.603284 0.378281 0.61794102 0.37824202 0.61794102 0.37824202\n\t\t 0.61929202 0.38436699 0.60400498 0.38435799 0.67097902 0.38428903 0.67082798 0.37835401\n\t\t 0.68937403 0.37835503 0.68937403 0.37835503 0.690184 0.38453102 0.67097902 0.38428903\n\t\t 0.67207998 0.46714699 0.672221 0.46036202 0.69078201 0.46045601 0.690795 0.45344597\n\t\t 0.69078201 0.46045601 0.672221 0.46036202 0.74909002 0.38366097 0.74913901 0.37895501\n\t\t 0.76730502 0.37894702 0.76730502 0.37894702 0.76784199 0.38366097 0.74909002 0.38366097\n\t\t 0.80120897 0.38366097 0.80122697 0.37896001 0.82647502 0.37785101 0.82647502 0.37785101;\n\tsetAttr \".uvst[0].uvsp[27500:27749]\" 0.82733101 0.38255602 0.80120897 0.38366097\n\t\t 0.82712501 0.38366097 0.82717001 0.37895399 0.85426301 0.37894899 0.85426301 0.37894899\n\t\t 0.85441101 0.38366097 0.82712501 0.38366097 0.865794 0.38366097 0.85441101 0.38366097\n\t\t 0.85443997 0.37895298 0.85443997 0.37895298 0.86566502 0.37895298 0.865794 0.38366097\n\t\t 0.433898 0.43912798 0.433898 0.43198401 0.43696001 0.43238801 0.43696001 0.43238801\n\t\t 0.437051 0.43969899 0.433898 0.43912798 0.437051 0.43969899 0.43696001 0.43238801\n\t\t 0.440433 0.43262398 0.440433 0.43262398 0.44064301 0.44005299 0.437051 0.43969899\n\t\t 0.45223501 0.43911499 0.44064301 0.44005299 0.440433 0.43262398 0.440433 0.43262398\n\t\t 0.45170501 0.43195301 0.45223501 0.43911499 0.451368 0.42481798 0.45170501 0.43195301\n\t\t 0.440433 0.43262398 0.440433 0.43262398 0.44035101 0.42513001 0.451368 0.42481798\n\t\t 0.44035101 0.42513001 0.440433 0.43262398 0.43696001 0.43238801 0.43696001 0.43238801\n\t\t 0.43693 0.42501098 0.44035101 0.42513001 0.433898 0.42480898 0.43693 0.42501098 0.43696001\n\t\t 0.43238801 0.43696001 0.43238801 0.433898 0.43198401 0.433898 0.42480898 0.436959\n\t\t 0.41756701 0.43693 0.42501098 0.433898 0.42480898 0.433898 0.42480898 0.433898 0.41754699\n\t\t 0.436959 0.41756701 0.43693 0.42501098 0.436959 0.41756701 0.440384 0.41760802 0.440384\n\t\t 0.41760802 0.44035101 0.42513001 0.43693 0.42501098 0.44035101 0.42513001 0.440384\n\t\t 0.41760802 0.451213 0.41771603 0.451213 0.41771603 0.451368 0.42481798 0.44035101\n\t\t 0.42513001 0.45128199 0.41067201 0.451213 0.41771603 0.440384 0.41760802 0.440384\n\t\t 0.41760802 0.440568 0.41010797 0.45128199 0.41067201 0.440568 0.41010797 0.440384\n\t\t 0.41760802 0.436959 0.41756701 0.436959 0.41756701 0.43706799 0.410119 0.440568 0.41010797\n\t\t 0.433898 0.41019899 0.43706799 0.410119 0.436959 0.41756701 0.436959 0.41756701 0.433898\n\t\t 0.41754699 0.433898 0.41019899 0.437213 0.40277201 0.43706799 0.410119 0.433898 0.41019899\n\t\t 0.433898 0.41019899 0.433898 0.40285897 0.437213 0.40277201 0.43706799 0.410119 0.437213\n\t\t 0.40277201 0.44086099 0.40276802 0.44086099 0.40276802 0.440568 0.41010797 0.43706799\n\t\t 0.410119 0.440568 0.41010797 0.44086099 0.40276802 0.45155299 0.40375102 0.45155299\n\t\t 0.40375102 0.45128199 0.41067201 0.440568 0.41010797 0.45210901 0.39701301 0.45155299\n\t\t 0.40375102 0.44086099 0.40276802 0.44086099 0.40276802 0.44128999 0.39576799 0.45210901\n\t\t 0.39701301 0.44128999 0.39576799 0.44086099 0.40276802 0.437213 0.40277201 0.437213\n\t\t 0.40277201 0.437446 0.395769 0.44128999 0.39576799 0.433898 0.39579302 0.437446 0.395769\n\t\t 0.437213 0.40277201 0.437213 0.40277201 0.433898 0.40285897 0.433898 0.39579302 0.437767\n\t\t 0.389368 0.437446 0.395769 0.433898 0.39579302 0.433898 0.39579302 0.433898 0.38929898\n\t\t 0.437767 0.389368 0.437446 0.395769 0.437767 0.389368 0.44190699 0.38929701 0.44190699\n\t\t 0.38929701 0.44128999 0.39576799 0.437446 0.395769 0.44128999 0.39576799 0.44190699\n\t\t 0.38929701 0.45299 0.39052701 0.45299 0.39052701 0.45210901 0.39701301 0.44128999\n\t\t 0.39576799 0.45463899 0.38428199 0.45299 0.39052701 0.44190699 0.38929701 0.44190699\n\t\t 0.38929701 0.44259301 0.38362002 0.45463899 0.38428199 0.44259301 0.38362002 0.44190699\n\t\t 0.38929701 0.437767 0.389368 0.437767 0.389368 0.43800399 0.38379902 0.44259301 0.38362002\n\t\t 0.433898 0.38366097 0.43800399 0.38379902 0.437767 0.389368 0.437767 0.389368 0.433898\n\t\t 0.38929898 0.433898 0.38366097 0.43340799 0.492971 0.433898 0.48759103 0.438131 0.48694003\n\t\t 0.438131 0.48694003 0.43673101 0.492971 0.43340799 0.492971 0.438131 0.48694003 0.433898\n\t\t 0.48759103 0.433898 0.481004 0.433898 0.481004 0.43804201 0.48067403 0.438131 0.48694003\n\t\t 0.438131 0.48694003 0.43804201 0.48067403 0.44249901 0.480452 0.44249901 0.480452\n\t\t 0.44278601 0.48685497 0.438131 0.48694003 0.437592 0.49304402 0.438131 0.48694003\n\t\t 0.44278601 0.48685497 0.44278601 0.48685497 0.44252399 0.49305999 0.437592 0.49304402\n\t\t 0.44278601 0.48685497 0.44249901 0.480452 0.454689 0.48023999 0.454689 0.48023999\n\t\t 0.455163 0.48667198 0.44278601 0.48685497 0.43793201 0.47425997 0.43804201 0.48067403\n\t\t 0.433898 0.481004 0.433898 0.481004 0.433898 0.47432297 0.43793201 0.47425997 0.43804201\n\t\t 0.48067403 0.43793201 0.47425997 0.442303 0.474123 0.442303 0.474123 0.44249901 0.480452\n\t\t 0.43804201 0.48067403 0.44249901 0.480452 0.442303 0.474123 0.45473099 0.47384602\n\t\t 0.45473099 0.47384602 0.454689 0.48023999 0.44249901 0.480452 0.45460999 0.46722698\n\t\t 0.45473099 0.47384602 0.442303 0.474123 0.442303 0.474123 0.442056 0.467785 0.45460999\n\t\t 0.46722698 0.442056 0.467785 0.442303 0.474123 0.43793201 0.47425997 0.43793201 0.47425997\n\t\t 0.43777999 0.467691 0.442056 0.467785 0.433898 0.46759498 0.43777999 0.467691 0.43793201\n\t\t 0.47425997 0.43793201 0.47425997 0.433898 0.47432297 0.433898 0.46759498 0.43760601\n\t\t 0.46097797 0.43777999 0.467691 0.433898 0.46759498 0.433898 0.46759498 0.433898 0.46066999\n\t\t 0.43760601 0.46097797 0.43777999 0.467691 0.43760601 0.46097797 0.441742 0.461281\n\t\t 0.441742 0.461281 0.442056 0.467785 0.43777999 0.467691 0.442056 0.467785 0.441742\n\t\t 0.461281 0.45421699 0.46036899 0.45421699 0.46036899 0.45460999 0.46722698 0.442056\n\t\t 0.467785 0.453594 0.45337802 0.45421699 0.46036899 0.441742 0.461281 0.441742 0.461281\n\t\t 0.44135401 0.45447701 0.453594 0.45337802 0.44135401 0.45447701 0.441742 0.461281;\n\tsetAttr \".uvst[0].uvsp[27750:27999]\" 0.43760601 0.46097797 0.43760601 0.46097797\n\t\t 0.43740001 0.45405799 0.44135401 0.45447701 0.433898 0.45353299 0.43740001 0.45405799\n\t\t 0.43760601 0.46097797 0.43760601 0.46097797 0.433898 0.46066999 0.433898 0.45353299\n\t\t 0.437204 0.44693899 0.43740001 0.45405799 0.433898 0.45353299 0.433898 0.45353299\n\t\t 0.433898 0.446311 0.437204 0.44693899 0.43740001 0.45405799 0.437204 0.44693899 0.44096401\n\t\t 0.44736803 0.44096401 0.44736803 0.44135401 0.45447701 0.43740001 0.45405799 0.44135401\n\t\t 0.45447701 0.44096401 0.44736803 0.452894 0.446275 0.452894 0.446275 0.453594 0.45337802\n\t\t 0.44135401 0.45447701 0.45223501 0.43911499 0.452894 0.446275 0.44096401 0.44736803\n\t\t 0.44096401 0.44736803 0.44064301 0.44005299 0.45223501 0.43911499 0.44064301 0.44005299\n\t\t 0.44096401 0.44736803 0.437204 0.44693899 0.437204 0.44693899 0.437051 0.43969899\n\t\t 0.44064301 0.44005299 0.433898 0.43912798 0.437051 0.43969899 0.437204 0.44693899\n\t\t 0.437204 0.44693899 0.433898 0.446311 0.433898 0.43912798 0.44586799 0.49407202 0.44302601\n\t\t 0.487827 0.455163 0.48667198 0.455163 0.48667198 0.45785299 0.49324298 0.44586799\n\t\t 0.49407202 0.423985 0.050494015 0.41834 0.050755024 0.418051 0.04570502 0.418051\n\t\t 0.04570502 0.423619 0.045405984 0.423985 0.050494015 0.418051 0.04570502 0.41834\n\t\t 0.050755024 0.41431499 0.051060021 0.41431499 0.051060021 0.41408601 0.046032012\n\t\t 0.418051 0.04570502 0.41408601 0.046032012 0.41431499 0.051060021 0.40903601 0.051437974\n\t\t 0.40903601 0.051437974 0.40886 0.046414971 0.41408601 0.046032012 0.40872899 0.05637002\n\t\t 0.40903601 0.051437974 0.41431499 0.051060021 0.41431499 0.051060021 0.414022 0.056023002\n\t\t 0.40872899 0.05637002 0.414022 0.056023002 0.41431499 0.051060021 0.41834 0.050755024\n\t\t 0.41834 0.050755024 0.41810501 0.055751979 0.414022 0.056023002 0.41810501 0.055751979\n\t\t 0.41834 0.050755024 0.423985 0.050494015 0.423985 0.050494015 0.42391101 0.055525005\n\t\t 0.41810501 0.055751979 0.41736501 0.060702026 0.41810501 0.055751979 0.42391101 0.055525005\n\t\t 0.42391101 0.055525005 0.42340001 0.060514987 0.41736501 0.060702026 0.41810501 0.055751979\n\t\t 0.41736501 0.060702026 0.41322801 0.060931027 0.41322801 0.060931027 0.414022 0.056023002\n\t\t 0.41810501 0.055751979 0.414022 0.056023002 0.41322801 0.060931027 0.40795401 0.061231017\n\t\t 0.40795401 0.061231017 0.40872899 0.05637002 0.414022 0.056023002 0.40681201 0.066137016\n\t\t 0.40795401 0.061231017 0.41322801 0.060931027 0.41322801 0.060931027 0.412036 0.065894008\n\t\t 0.40681201 0.066137016 0.412036 0.065894008 0.41322801 0.060931027 0.41736501 0.060702026\n\t\t 0.41736501 0.060702026 0.41622001 0.065721989 0.412036 0.065894008 0.41622001 0.065721989\n\t\t 0.41736501 0.060702026 0.42340001 0.060514987 0.42340001 0.060514987 0.42254001 0.065603971\n\t\t 0.41622001 0.065721989 0.414801 0.070940971 0.41622001 0.065721989 0.42254001 0.065603971\n\t\t 0.42254001 0.065603971 0.42142299 0.07091099 0.414801 0.070940971 0.41622001 0.065721989\n\t\t 0.414801 0.070940971 0.41059199 0.071042001 0.41059199 0.071042001 0.412036 0.065894008\n\t\t 0.41622001 0.065721989 0.412036 0.065894008 0.41059199 0.071042001 0.40545499 0.071219981\n\t\t 0.40545499 0.071219981 0.40681201 0.066137016 0.412036 0.065894008 0.40407601 0.076542974\n\t\t 0.40545499 0.071219981 0.41059199 0.071042001 0.41059199 0.071042001 0.40908399 0.076433003\n\t\t 0.40407601 0.076542974 0.40908399 0.076433003 0.41059199 0.071042001 0.414801 0.070940971\n\t\t 0.414801 0.070940971 0.41328001 0.076404989 0.40908399 0.076433003 0.41328001 0.076404989\n\t\t 0.414801 0.070940971 0.42142299 0.07091099 0.42142299 0.07091099 0.42016399 0.076452971\n\t\t 0.41328001 0.076404989 0.41181001 0.082099974 0.41328001 0.076404989 0.42016399 0.076452971\n\t\t 0.42016399 0.076452971 0.41886899 0.082186997 0.41181001 0.082099974 0.41328001 0.076404989\n\t\t 0.41181001 0.082099974 0.40768 0.082071006 0.40768 0.082071006 0.40908399 0.076433003\n\t\t 0.41328001 0.076404989 0.40908399 0.076433003 0.40768 0.082071006 0.40284401 0.082107008\n\t\t 0.40284401 0.082107008 0.40407601 0.076542974 0.40908399 0.076433003 0.40174299 0.087814987\n\t\t 0.40284401 0.082107008 0.40768 0.082071006 0.40768 0.082071006 0.40639701 0.087822974\n\t\t 0.40174299 0.087814987 0.40639701 0.087822974 0.40768 0.082071006 0.41181001 0.082099974\n\t\t 0.41181001 0.082099974 0.41043401 0.087857008 0.40639701 0.087822974 0.41043401 0.087857008\n\t\t 0.41181001 0.082099974 0.41886899 0.082186997 0.41886899 0.082186997 0.417613 0.087917984\n\t\t 0.41043401 0.087857008 0.42016399 0.076452971 0.42142299 0.07091099 0.42699501 0.070734978\n\t\t 0.42759201 0.06536603 0.42699501 0.070734978 0.42142299 0.07091099 0.42699501 0.070734978\n\t\t 0.42759201 0.06536603 0.43294501 0.064749002 0.43294501 0.059605002 0.43294501 0.064749002\n\t\t 0.42759201 0.06536603 0.42759201 0.06536603 0.42803201 0.060249984 0.43294501 0.059605002\n\t\t 0.43294501 0.054804981 0.43294501 0.059605002 0.42803201 0.060249984 0.42803201 0.060249984\n\t\t 0.42827699 0.055306971 0.43294501 0.054804981 0.43294501 0.050275981 0.43294501 0.054804981\n\t\t 0.42827699 0.055306971 0.42827699 0.055306971 0.42826 0.050424993 0.43294501 0.050275981\n\t\t 0.43294501 0.050275981 0.42826 0.050424993 0.42800301 0.045512974 0.42800301 0.045512974\n\t\t 0.43294501 0.045943022 0.43294501 0.050275981 0.423619 0.045405984 0.42800301 0.045512974\n\t\t 0.42826 0.050424993 0.42826 0.050424993 0.423985 0.050494015 0.423619 0.045405984\n\t\t 0.42391101 0.055525005 0.423985 0.050494015 0.42826 0.050424993 0.42826 0.050424993\n\t\t 0.42827699 0.055306971 0.42391101 0.055525005 0.42827699 0.055306971 0.42803201 0.060249984\n\t\t 0.42340001 0.060514987 0.42340001 0.060514987 0.42391101 0.055525005 0.42827699 0.055306971\n\t\t 0.42254001 0.065603971 0.42340001 0.060514987 0.42803201 0.060249984;\n\tsetAttr \".uvst[0].uvsp[28000:28249]\" 0.42803201 0.060249984 0.42759201 0.06536603\n\t\t 0.42254001 0.065603971 0.42142299 0.07091099 0.42254001 0.065603971 0.42759201 0.06536603\n\t\t 0.42754 0.040522993 0.42800301 0.045512974 0.423619 0.045405984 0.423619 0.045405984\n\t\t 0.422833 0.040265024 0.42754 0.040522993 0.422833 0.040265024 0.423619 0.045405984\n\t\t 0.418051 0.04570502 0.418051 0.04570502 0.41724601 0.040607989 0.422833 0.040265024\n\t\t 0.42175999 0.035144985 0.422833 0.040265024 0.41724601 0.040607989 0.41724601 0.040607989\n\t\t 0.41607201 0.035524011 0.42175999 0.035144985 0.42055601 0.030094981 0.42175999 0.035144985\n\t\t 0.41607201 0.035524011 0.41607201 0.035524011 0.41467601 0.030487001 0.42055601 0.030094981\n\t\t 0.41938901 0.025081992 0.42055601 0.030094981 0.41467601 0.030487001 0.41467601 0.030487001\n\t\t 0.41325501 0.025453985 0.41938901 0.025081992 0.41840601 0.020026028 0.41938901 0.025081992\n\t\t 0.41325501 0.025453985 0.41325501 0.025453985 0.41196901 0.020340979 0.41840601 0.020026028\n\t\t 0.41766399 0.014792979 0.41840601 0.020026028 0.41196901 0.020340979 0.41196901 0.020340979\n\t\t 0.41091701 0.01502198 0.41766399 0.014792979 0.41718301 0.0093140006 0.41766399 0.014792979\n\t\t 0.41091701 0.01502198 0.41091701 0.01502198 0.41012901 0.0094149709 0.41718301 0.0093140006\n\t\t 0.41667601 0.0036720037 0.41718301 0.0093140006 0.41012901 0.0094149709 0.41012901\n\t\t 0.0094149709 0.40959001 0.0036209822 0.41667601 0.0036720037 0.41012901 0.0094149709\n\t\t 0.41091701 0.01502198 0.40704301 0.015075028 0.40704301 0.015075028 0.40618199 0.0094280243\n\t\t 0.41012901 0.0094149709 0.409491 0.0035790205 0.41012901 0.0094149709 0.40618199\n\t\t 0.0094280243 0.40618199 0.0094280243 0.409491 0.0035790205 0.40618199 0.0094280243\n\t\t 0.40704301 0.015075028 0.402448 0.015097022 0.402448 0.015097022 0.40160701 0.0094370246\n\t\t 0.40618199 0.0094280243 0.405518 0.0035570264 0.40618199 0.0094280243 0.40160701\n\t\t 0.0094370246 0.40160701 0.0094370246 0.40100399 0.0035799742 0.405518 0.0035570264\n\t\t 0.41091701 0.01502198 0.41196901 0.020340979 0.40814599 0.020443022 0.40814599 0.020443022\n\t\t 0.40704301 0.015075028 0.41091701 0.01502198 0.40704301 0.015075028 0.40814599 0.020443022\n\t\t 0.40348399 0.020492017 0.40348399 0.020492017 0.402448 0.015097022 0.40704301 0.015075028\n\t\t 0.40469399 0.025729001 0.40348399 0.020492017 0.40814599 0.020443022 0.40814599 0.020443022\n\t\t 0.409455 0.025623977 0.40469399 0.025729001 0.409455 0.025623977 0.40814599 0.020443022\n\t\t 0.41196901 0.020340979 0.41196901 0.020340979 0.41325501 0.025453985 0.409455 0.025623977\n\t\t 0.41086701 0.030731976 0.409455 0.025623977 0.41325501 0.025453985 0.41325501 0.025453985\n\t\t 0.41467601 0.030487001 0.41086701 0.030731976 0.409455 0.025623977 0.41086701 0.030731976\n\t\t 0.405981 0.030924976 0.405981 0.030924976 0.40469399 0.025729001 0.409455 0.025623977\n\t\t 0.40720999 0.036113977 0.405981 0.030924976 0.41086701 0.030731976 0.41086701 0.030731976\n\t\t 0.412227 0.035829008 0.40720999 0.036113977 0.412227 0.035829008 0.41086701 0.030731976\n\t\t 0.41467601 0.030487001 0.41467601 0.030487001 0.41607201 0.035524011 0.412227 0.035829008\n\t\t 0.413344 0.040939987 0.412227 0.035829008 0.41607201 0.035524011 0.41607201 0.035524011\n\t\t 0.41724601 0.040607989 0.413344 0.040939987 0.412227 0.035829008 0.413344 0.040939987\n\t\t 0.408207 0.041292012 0.408207 0.041292012 0.40720999 0.036113977 0.412227 0.035829008\n\t\t 0.40886 0.046414971 0.408207 0.041292012 0.413344 0.040939987 0.413344 0.040939987\n\t\t 0.41408601 0.046032012 0.40886 0.046414971 0.41408601 0.046032012 0.413344 0.040939987\n\t\t 0.41724601 0.040607989 0.41724601 0.040607989 0.418051 0.04570502 0.41408601 0.046032012\n\t\t 0.40469399 0.025729001 0.405981 0.030924976 0.399647 0.030972004 0.40063801 0.036219001\n\t\t 0.399647 0.030972004 0.405981 0.030924976 0.405981 0.030924976 0.40720999 0.036113977\n\t\t 0.40063801 0.036219001 0.399647 0.030972004 0.40063801 0.036219001 0.39228299 0.036090016\n\t\t 0.39228299 0.036090016 0.39158499 0.030776978 0.399647 0.030972004 0.398617 0.025738001\n\t\t 0.399647 0.030972004 0.39158499 0.030776978 0.399647 0.030972004 0.398617 0.025738001\n\t\t 0.40469399 0.025729001 0.40348399 0.020492017 0.40469399 0.025729001 0.398617 0.025738001\n\t\t 0.398617 0.025738001 0.397652 0.020494998 0.40348399 0.020492017 0.402448 0.015097022\n\t\t 0.40348399 0.020492017 0.397652 0.020494998 0.397652 0.020494998 0.39683101 0.015124023\n\t\t 0.402448 0.015097022 0.40160701 0.0094370246 0.402448 0.015097022 0.39683101 0.015124023\n\t\t 0.39683101 0.015124023 0.396144 0.0094739795 0.40160701 0.0094370246 0.396144 0.0094739795\n\t\t 0.39683101 0.015124023 0.38973999 0.014972985 0.38973999 0.014972985 0.38934001 0.0094310045\n\t\t 0.396144 0.0094739795 0.38934001 0.0094310045 0.38973999 0.014972985 0.38062099 0.014605999\n\t\t 0.38062099 0.014605999 0.38062501 0.0092909932 0.38934001 0.0094310045 0.38062501\n\t\t 0.0092909932 0.38062099 0.014605999 0.36882499 0.014239013 0.36882499 0.014239013\n\t\t 0.36932501 0.0091419816 0.38062501 0.0092909932 0.36932501 0.0091419816 0.36882499\n\t\t 0.014239013 0.35367 0.01423502 0.35367 0.01423502 0.354608 0.009115994 0.36932501\n\t\t 0.0091419816 0.354608 0.009115994 0.35367 0.01423502 0.33692899 0.014388025 0.33692899\n\t\t 0.014388025 0.33799899 0.0091320276 0.354608 0.009115994 0.33799899 0.0091320276\n\t\t 0.33692899 0.014388025 0.32042599 0.014697015 0.32042599 0.014697015 0.32118499 0.0091950297\n\t\t 0.33799899 0.0091320276 0.32118499 0.0091950297 0.32042599 0.014697015 0.30583301\n\t\t 0.015354991 0.30583301 0.015354991 0.30583301 0.009370029 0.32118499 0.0091950297\n\t\t 0.35329801 0.019366026 0.35367 0.01423502 0.36882499 0.014239013 0.36882499 0.014239013\n\t\t 0.368662 0.019352019 0.35329801 0.019366026 0.368662 0.019352019 0.36882499 0.014239013\n\t\t 0.38062099 0.014605999 0.35367 0.01423502 0.35329801 0.019366026 0.33648601 0.019623995\n\t\t 0.33648601 0.019623995 0.33692899 0.014388025;\n\tsetAttr \".uvst[0].uvsp[28250:28499]\" 0.35367 0.01423502 0.33692899 0.014388025\n\t\t 0.33648601 0.019623995 0.32008201 0.02017498 0.32008201 0.02017498 0.32042599 0.014697015\n\t\t 0.33692899 0.014388025 0.32042599 0.014697015 0.32008201 0.02017498 0.30583301 0.021309018\n\t\t 0.30583301 0.021309018 0.30583301 0.015354991 0.32042599 0.014697015 0.30583301 0.026961029\n\t\t 0.30583301 0.021309018 0.32008201 0.02017498 0.32008201 0.02017498 0.319895 0.025550008\n\t\t 0.30583301 0.026961029 0.319895 0.025550008 0.32008201 0.02017498 0.33648601 0.019623995\n\t\t 0.33648601 0.019623995 0.33626199 0.024846971 0.319895 0.025550008 0.33626199 0.024846971\n\t\t 0.33648601 0.019623995 0.35329801 0.019366026 0.35329801 0.019366026 0.35314101 0.024569988\n\t\t 0.33626199 0.024846971 0.35314101 0.024569988 0.35329801 0.019366026 0.368662 0.019352019\n\t\t 0.368662 0.019352019 0.36867401 0.024572015 0.35314101 0.024569988 0.35308599 0.029851973\n\t\t 0.35314101 0.024569988 0.36867401 0.024572015 0.36867401 0.024572015 0.36876801 0.029914021\n\t\t 0.35308599 0.029851973 0.35314101 0.024569988 0.35308599 0.029851973 0.336146 0.030059993\n\t\t 0.336146 0.030059993 0.33626199 0.024846971 0.35314101 0.024569988 0.33626199 0.024846971\n\t\t 0.336146 0.030059993 0.31979799 0.030793011 0.31979799 0.030793011 0.319895 0.025550008\n\t\t 0.33626199 0.024846971 0.319895 0.025550008 0.31979799 0.030793011 0.30583301 0.032191992\n\t\t 0.30583301 0.032191992 0.30583301 0.026961029 0.319895 0.025550008 0.30583301 0.037030995\n\t\t 0.30583301 0.032191992 0.31979799 0.030793011 0.31979799 0.030793011 0.31980899 0.035997987\n\t\t 0.30583301 0.037030995 0.31980899 0.035997987 0.31979799 0.030793011 0.336146 0.030059993\n\t\t 0.336146 0.030059993 0.33614901 0.035302997 0.31980899 0.035997987 0.33614901 0.035302997\n\t\t 0.336146 0.030059993 0.35308599 0.029851973 0.35308599 0.029851973 0.35313299 0.035201013\n\t\t 0.33614901 0.035302997 0.35313299 0.035201013 0.35308599 0.029851973 0.36876801 0.029914021\n\t\t 0.36876801 0.029914021 0.36893699 0.035329998 0.35313299 0.035201013 0.35322899 0.040575027\n\t\t 0.35313299 0.035201013 0.36893699 0.035329998 0.36893699 0.035329998 0.36911699 0.040746987\n\t\t 0.35322899 0.040575027 0.35313299 0.035201013 0.35322899 0.040575027 0.33622199 0.040589988\n\t\t 0.33622199 0.040589988 0.33614901 0.035302997 0.35313299 0.035201013 0.33614901 0.035302997\n\t\t 0.33622199 0.040589988 0.31988299 0.041263998 0.31988299 0.041263998 0.31980899 0.035997987\n\t\t 0.33614901 0.035302997 0.31980899 0.035997987 0.31988299 0.041263998 0.30583301 0.041603029\n\t\t 0.30583301 0.041603029 0.30583301 0.037030995 0.31980899 0.035997987 0.30583301 0.045943022\n\t\t 0.30583301 0.041603029 0.31988299 0.041263998 0.31988299 0.041263998 0.31998801 0.046634018\n\t\t 0.30583301 0.045943022 0.31998801 0.046634018 0.31988299 0.041263998 0.33622199 0.040589988\n\t\t 0.30583301 0.050275981 0.30583301 0.045943022 0.31998801 0.046634018 0.31998801 0.046634018\n\t\t 0.32004201 0.052178979 0.30583301 0.050275981 0.32004201 0.052178979 0.31998801 0.046634018\n\t\t 0.33634001 0.045881987 0.33622199 0.040589988 0.33634001 0.045881987 0.31998801 0.046634018\n\t\t 0.33634001 0.045881987 0.33622199 0.040589988 0.35322899 0.040575027 0.33634001 0.045881987\n\t\t 0.33641699 0.051164985 0.32004201 0.052178979 0.33641699 0.051164985 0.33634001 0.045881987\n\t\t 0.35336101 0.045913994 0.35322899 0.040575027 0.35336101 0.045913994 0.33634001 0.045881987\n\t\t 0.35336101 0.045913994 0.35322899 0.040575027 0.36911699 0.040746987 0.35336101 0.045913994\n\t\t 0.35344401 0.051195025 0.33641699 0.051164985 0.35344401 0.051195025 0.35336101 0.045913994\n\t\t 0.36929101 0.04609102 0.36911699 0.040746987 0.36929101 0.04609102 0.35336101 0.045913994\n\t\t 0.36929101 0.04609102 0.36937699 0.051325977 0.35344401 0.051195025 0.30583301 0.054804981\n\t\t 0.30583301 0.050275981 0.32004201 0.052178979 0.32004201 0.052178979 0.32004601 0.057873011\n\t\t 0.30583301 0.054804981 0.32004601 0.057873011 0.32004201 0.052178979 0.33641699 0.051164985\n\t\t 0.33641699 0.051164985 0.336445 0.056398988 0.32004601 0.057873011 0.336445 0.056398988\n\t\t 0.33641699 0.051164985 0.35344401 0.051195025 0.35344401 0.051195025 0.35346901 0.056415975\n\t\t 0.336445 0.056398988 0.35346901 0.056415975 0.35344401 0.051195025 0.36937699 0.051325977\n\t\t 0.36937699 0.051325977 0.36935699 0.05647397 0.35346901 0.056415975 0.35343501 0.061622024\n\t\t 0.35346901 0.056415975 0.36935699 0.05647397 0.36935699 0.05647397 0.36922699 0.061607003\n\t\t 0.35343501 0.061622024 0.35346901 0.056415975 0.35343501 0.061622024 0.33643401 0.061578989\n\t\t 0.33643401 0.061578989 0.336445 0.056398988 0.35346901 0.056415975 0.336445 0.056398988\n\t\t 0.33643401 0.061578989 0.320034 0.063637018 0.320034 0.063637018 0.32004601 0.057873011\n\t\t 0.336445 0.056398988 0.32004601 0.057873011 0.320034 0.063637018 0.30583301 0.059605002\n\t\t 0.30583301 0.059605002 0.30583301 0.054804981 0.32004601 0.057873011 0.30583301 0.064749002\n\t\t 0.30583301 0.059605002 0.320034 0.063637018 0.320034 0.063637018 0.32006299 0.069332004\n\t\t 0.30583301 0.064749002 0.32006299 0.069332004 0.320034 0.063637018 0.33643401 0.061578989\n\t\t 0.33643401 0.061578989 0.33643401 0.066730022 0.32006299 0.069332004 0.33643401 0.066730022\n\t\t 0.33643401 0.061578989 0.35343501 0.061622024 0.35343501 0.061622024 0.35338101 0.066869974\n\t\t 0.33643401 0.066730022 0.35338101 0.066869974 0.35343501 0.061622024 0.36922699 0.061607003\n\t\t 0.36922699 0.061607003 0.36903101 0.066811025 0.35338101 0.066869974 0.35339901 0.072176993\n\t\t 0.35338101 0.066869974 0.36903101 0.066811025 0.36903101 0.066811025 0.368866 0.072120011\n\t\t 0.35339901 0.072176993 0.35338101 0.066869974 0.35339901 0.072176993 0.336541 0.07188803\n\t\t 0.336541 0.07188803 0.33643401 0.066730022 0.35338101 0.066869974 0.33643401 0.066730022\n\t\t 0.336541 0.07188803 0.32020301 0.074759007 0.32020301 0.074759007 0.32006299 0.069332004\n\t\t 0.33643401 0.066730022 0.32006299 0.069332004 0.32020301 0.074759007 0.30583301 0.070222974;\n\tsetAttr \".uvst[0].uvsp[28500:28749]\" 0.30583301 0.070222974 0.30583301 0.064749002\n\t\t 0.32006299 0.069332004 0.30583301 0.076016009 0.30583301 0.070222974 0.32020301 0.074759007\n\t\t 0.32020301 0.074759007 0.32043299 0.079765022 0.30583301 0.076016009 0.32043299 0.079765022\n\t\t 0.32020301 0.074759007 0.336541 0.07188803 0.336541 0.07188803 0.33678001 0.077133\n\t\t 0.32043299 0.079765022 0.33678001 0.077133 0.336541 0.07188803 0.35339901 0.072176993\n\t\t 0.35339901 0.072176993 0.353517 0.077519 0.33678001 0.077133 0.353517 0.077519 0.35339901\n\t\t 0.072176993 0.368866 0.072120011 0.368866 0.072120011 0.368783 0.077486992 0.353517\n\t\t 0.077519 0.35384801 0.082827985 0.353517 0.077519 0.368783 0.077486992 0.368783 0.077486992\n\t\t 0.36890599 0.082809985 0.35384801 0.082827985 0.353517 0.077519 0.35384801 0.082827985\n\t\t 0.33721101 0.082513988 0.33721101 0.082513988 0.33678001 0.077133 0.353517 0.077519\n\t\t 0.33678001 0.077133 0.33721101 0.082513988 0.32074401 0.084316015 0.32074401 0.084316015\n\t\t 0.32043299 0.079765022 0.33678001 0.077133 0.32043299 0.079765022 0.32074401 0.084316015\n\t\t 0.30583301 0.081960022 0.30583301 0.081960022 0.30583301 0.076016009 0.32043299 0.079765022\n\t\t 0.30583301 0.087776005 0.30583301 0.081960022 0.32074401 0.084316015 0.32074401 0.084316015\n\t\t 0.32131499 0.088600993 0.30583301 0.087776005 0.32131499 0.088600993 0.32074401 0.084316015\n\t\t 0.33721101 0.082513988 0.33721101 0.082513988 0.33812901 0.087984979 0.32131499 0.088600993\n\t\t 0.33812901 0.087984979 0.33721101 0.082513988 0.35384801 0.082827985 0.35384801 0.082827985\n\t\t 0.35467401 0.088075995 0.33812901 0.087984979 0.35467401 0.088075995 0.35384801 0.082827985\n\t\t 0.36890599 0.082809985 0.36890599 0.082809985 0.36934501 0.088055015 0.35467401 0.088075995\n\t\t 0.356085 0.093330979 0.35467401 0.088075995 0.36934501 0.088055015 0.36934501 0.088055015\n\t\t 0.37009701 0.093227983 0.356085 0.093330979 0.35467401 0.088075995 0.356085 0.093330979\n\t\t 0.34033701 0.093311012 0.34033701 0.093311012 0.33812901 0.087984979 0.35467401 0.088075995\n\t\t 0.32327899 0.093344986 0.32131499 0.088600993 0.33812901 0.087984979 0.33812901 0.087984979\n\t\t 0.340361 0.093349993 0.32327899 0.093344986 0.306806 0.092666984 0.30583301 0.087776005\n\t\t 0.32131499 0.088600993 0.32131499 0.088600993 0.322799 0.092758 0.306806 0.092666984\n\t\t 0.30583301 0.081960022 0.30583301 0.087776005 0.29161799 0.087776005 0.29161799 0.087776005\n\t\t 0.29161799 0.081960022 0.30583301 0.081960022 0.30583301 0.076016009 0.30583301 0.081960022\n\t\t 0.29161799 0.081960022 0.29161799 0.081960022 0.29161799 0.076016009 0.30583301 0.076016009\n\t\t 0.30583301 0.070222974 0.30583301 0.076016009 0.29161799 0.076016009 0.29161799 0.076016009\n\t\t 0.29161799 0.070222974 0.30583301 0.070222974 0.30583301 0.064749002 0.30583301 0.070222974\n\t\t 0.29161799 0.070222974 0.29161799 0.070222974 0.29161799 0.064749002 0.30583301 0.064749002\n\t\t 0.30583301 0.059605002 0.30583301 0.064749002 0.29161799 0.064749002 0.29161799 0.064749002\n\t\t 0.29161799 0.059605002 0.30583301 0.059605002 0.30583301 0.054804981 0.30583301 0.059605002\n\t\t 0.29161799 0.059605002 0.29161799 0.059605002 0.29161799 0.054804981 0.30583301 0.054804981\n\t\t 0.30583301 0.050275981 0.30583301 0.054804981 0.29161799 0.054804981 0.29161799 0.054804981\n\t\t 0.29161799 0.050275981 0.30583301 0.050275981 0.30583301 0.045943022 0.30583301 0.050275981\n\t\t 0.29161799 0.050275981 0.29161799 0.050275981 0.29161799 0.045943022 0.30583301 0.045943022\n\t\t 0.29161799 0.045943022 0.29161799 0.050275981 0.279039 0.050275981 0.279039 0.050275981\n\t\t 0.279039 0.045943022 0.29161799 0.045943022 0.279039 0.045943022 0.279039 0.050275981\n\t\t 0.26699799 0.050275981 0.26699799 0.050275981 0.26699799 0.045943022 0.279039 0.045943022\n\t\t 0.26699799 0.045943022 0.26699799 0.050275981 0.254612 0.050275981 0.254612 0.050275981\n\t\t 0.254612 0.045943022 0.26699799 0.045943022 0.254612 0.054804981 0.254612 0.050275981\n\t\t 0.26699799 0.050275981 0.26699799 0.050275981 0.26699799 0.054804981 0.254612 0.054804981\n\t\t 0.26699799 0.054804981 0.26699799 0.050275981 0.279039 0.050275981 0.279039 0.050275981\n\t\t 0.279039 0.054804981 0.26699799 0.054804981 0.279039 0.054804981 0.279039 0.050275981\n\t\t 0.29161799 0.050275981 0.29161799 0.050275981 0.29161799 0.054804981 0.279039 0.054804981\n\t\t 0.29161799 0.054804981 0.29161799 0.059605002 0.279039 0.059605002 0.279039 0.059605002\n\t\t 0.279039 0.054804981 0.29161799 0.054804981 0.279039 0.054804981 0.279039 0.059605002\n\t\t 0.26699799 0.059605002 0.26699799 0.059605002 0.26699799 0.054804981 0.279039 0.054804981\n\t\t 0.26699799 0.054804981 0.26699799 0.059605002 0.254612 0.059605002 0.254612 0.059605002\n\t\t 0.254612 0.054804981 0.26699799 0.054804981 0.254612 0.064749002 0.254612 0.059605002\n\t\t 0.26699799 0.059605002 0.26699799 0.059605002 0.26699799 0.064749002 0.254612 0.064749002\n\t\t 0.26699799 0.064749002 0.26699799 0.059605002 0.279039 0.059605002 0.279039 0.059605002\n\t\t 0.279039 0.064749002 0.26699799 0.064749002 0.279039 0.064749002 0.279039 0.059605002\n\t\t 0.29161799 0.059605002 0.29161799 0.059605002 0.29161799 0.064749002 0.279039 0.064749002\n\t\t 0.279039 0.070222974 0.279039 0.064749002 0.29161799 0.064749002 0.29161799 0.064749002\n\t\t 0.29161799 0.070222974 0.279039 0.070222974 0.279039 0.064749002 0.279039 0.070222974\n\t\t 0.26699799 0.070222974 0.26699799 0.070222974 0.26699799 0.064749002 0.279039 0.064749002\n\t\t 0.26699799 0.064749002 0.26699799 0.070222974 0.254612 0.070222974 0.254612 0.070222974\n\t\t 0.254612 0.064749002 0.26699799 0.064749002 0.254612 0.076016009 0.254612 0.070222974\n\t\t 0.26699799 0.070222974 0.26699799 0.070222974 0.26699799 0.076016009 0.254612 0.076016009\n\t\t 0.26699799 0.076016009 0.26699799 0.070222974 0.279039 0.070222974 0.279039 0.070222974\n\t\t 0.279039 0.076016009 0.26699799 0.076016009 0.279039 0.076016009;\n\tsetAttr \".uvst[0].uvsp[28750:28999]\" 0.279039 0.070222974 0.29161799 0.070222974\n\t\t 0.29161799 0.070222974 0.29161799 0.076016009 0.279039 0.076016009 0.279039 0.081960022\n\t\t 0.279039 0.076016009 0.29161799 0.076016009 0.29161799 0.076016009 0.29161799 0.081960022\n\t\t 0.279039 0.081960022 0.279039 0.076016009 0.279039 0.081960022 0.26699799 0.081960022\n\t\t 0.26699799 0.081960022 0.26699799 0.076016009 0.279039 0.076016009 0.26699799 0.076016009\n\t\t 0.26699799 0.081960022 0.254612 0.081960022 0.254612 0.081960022 0.254612 0.076016009\n\t\t 0.26699799 0.076016009 0.254612 0.087776005 0.254612 0.081960022 0.26699799 0.081960022\n\t\t 0.26699799 0.081960022 0.26699799 0.087776005 0.254612 0.087776005 0.26699799 0.087776005\n\t\t 0.26699799 0.081960022 0.279039 0.081960022 0.279039 0.081960022 0.279039 0.087776005\n\t\t 0.26699799 0.087776005 0.279039 0.087776005 0.279039 0.081960022 0.29161799 0.081960022\n\t\t 0.29161799 0.081960022 0.29161799 0.087776005 0.279039 0.087776005 0.27953699 0.093370974\n\t\t 0.279039 0.087776005 0.29161799 0.087776005 0.29161799 0.087776005 0.29153499 0.093515992\n\t\t 0.27953699 0.093370974 0.26748601 0.093464971 0.26699799 0.087776005 0.279039 0.087776005\n\t\t 0.279039 0.087776005 0.27893701 0.093479991 0.26748601 0.093464971 0.25503099 0.093578994\n\t\t 0.254612 0.087776005 0.26699799 0.087776005 0.26699799 0.087776005 0.26689601 0.093484998\n\t\t 0.25503099 0.093578994 0.254612 0.081960022 0.254612 0.087776005 0.241256 0.087776005\n\t\t 0.241256 0.087776005 0.241256 0.081960022 0.254612 0.081960022 0.254612 0.076016009\n\t\t 0.254612 0.081960022 0.241256 0.081960022 0.241256 0.081960022 0.241256 0.076016009\n\t\t 0.254612 0.076016009 0.254612 0.070222974 0.254612 0.076016009 0.241256 0.076016009\n\t\t 0.241256 0.076016009 0.241256 0.070222974 0.254612 0.070222974 0.254612 0.064749002\n\t\t 0.254612 0.070222974 0.241256 0.070222974 0.241256 0.070222974 0.241256 0.064749002\n\t\t 0.254612 0.064749002 0.254612 0.059605002 0.254612 0.064749002 0.241256 0.064749002\n\t\t 0.241256 0.064749002 0.241256 0.059605002 0.254612 0.059605002 0.254612 0.054804981\n\t\t 0.254612 0.059605002 0.241256 0.059605002 0.241256 0.059605002 0.241256 0.054804981\n\t\t 0.254612 0.054804981 0.254612 0.050275981 0.254612 0.054804981 0.241256 0.054804981\n\t\t 0.241256 0.054804981 0.241256 0.050275981 0.254612 0.050275981 0.254612 0.045943022\n\t\t 0.254612 0.050275981 0.241256 0.050275981 0.241256 0.050275981 0.241256 0.045943022\n\t\t 0.254612 0.045943022 0.241256 0.045943022 0.241256 0.050275981 0.22657999 0.050275981\n\t\t 0.22657999 0.050275981 0.22657999 0.045943022 0.241256 0.045943022 0.22657999 0.045943022\n\t\t 0.22657999 0.050275981 0.21060701 0.050275981 0.21060701 0.050275981 0.21060701 0.045943022\n\t\t 0.22657999 0.045943022 0.21060701 0.045943022 0.21060701 0.050275981 0.193698 0.050275981\n\t\t 0.193698 0.050275981 0.193698 0.045943022 0.21060701 0.045943022 0.193698 0.054804981\n\t\t 0.193698 0.050275981 0.21060701 0.050275981 0.21060701 0.050275981 0.21060701 0.054804981\n\t\t 0.193698 0.054804981 0.21060701 0.054804981 0.21060701 0.050275981 0.22657999 0.050275981\n\t\t 0.22657999 0.050275981 0.22657999 0.054804981 0.21060701 0.054804981 0.22657999 0.054804981\n\t\t 0.22657999 0.050275981 0.241256 0.050275981 0.241256 0.050275981 0.241256 0.054804981\n\t\t 0.22657999 0.054804981 0.241256 0.054804981 0.241256 0.059605002 0.22657999 0.059605002\n\t\t 0.22657999 0.059605002 0.22657999 0.054804981 0.241256 0.054804981 0.22657999 0.054804981\n\t\t 0.22657999 0.059605002 0.21060701 0.059605002 0.21060701 0.059605002 0.21060701 0.054804981\n\t\t 0.22657999 0.054804981 0.21060701 0.054804981 0.21060701 0.059605002 0.193698 0.059605002\n\t\t 0.193698 0.059605002 0.193698 0.054804981 0.21060701 0.054804981 0.193698 0.064749002\n\t\t 0.193698 0.059605002 0.21060701 0.059605002 0.21060701 0.059605002 0.21060701 0.064749002\n\t\t 0.193698 0.064749002 0.21060701 0.064749002 0.21060701 0.059605002 0.22657999 0.059605002\n\t\t 0.22657999 0.059605002 0.22657999 0.064749002 0.21060701 0.064749002 0.22657999 0.064749002\n\t\t 0.22657999 0.059605002 0.241256 0.059605002 0.241256 0.059605002 0.241256 0.064749002\n\t\t 0.22657999 0.064749002 0.22657999 0.070222974 0.22657999 0.064749002 0.241256 0.064749002\n\t\t 0.241256 0.064749002 0.241256 0.070222974 0.22657999 0.070222974 0.22657999 0.064749002\n\t\t 0.22657999 0.070222974 0.21060701 0.070222974 0.21060701 0.070222974 0.21060701 0.064749002\n\t\t 0.22657999 0.064749002 0.21060701 0.064749002 0.21060701 0.070222974 0.193698 0.070222974\n\t\t 0.193698 0.070222974 0.193698 0.064749002 0.21060701 0.064749002 0.193698 0.076016009\n\t\t 0.193698 0.070222974 0.21060701 0.070222974 0.21060701 0.070222974 0.21060701 0.076016009\n\t\t 0.193698 0.076016009 0.21060701 0.076016009 0.21060701 0.070222974 0.22657999 0.070222974\n\t\t 0.22657999 0.070222974 0.22657999 0.076016009 0.21060701 0.076016009 0.22657999 0.076016009\n\t\t 0.22657999 0.070222974 0.241256 0.070222974 0.241256 0.070222974 0.241256 0.076016009\n\t\t 0.22657999 0.076016009 0.22657999 0.081960022 0.22657999 0.076016009 0.241256 0.076016009\n\t\t 0.241256 0.076016009 0.241256 0.081960022 0.22657999 0.081960022 0.22657999 0.076016009\n\t\t 0.22657999 0.081960022 0.21060701 0.081960022 0.21060701 0.081960022 0.21060701 0.076016009\n\t\t 0.22657999 0.076016009 0.21060701 0.076016009 0.21060701 0.081960022 0.193698 0.081960022\n\t\t 0.193698 0.081960022 0.193698 0.076016009 0.21060701 0.076016009 0.193698 0.087776005\n\t\t 0.193698 0.081960022 0.21060701 0.081960022 0.21060701 0.081960022 0.21060701 0.087776005\n\t\t 0.193698 0.087776005 0.21060701 0.087776005 0.21060701 0.081960022 0.22657999 0.081960022\n\t\t 0.22657999 0.081960022 0.22657999 0.087776005 0.21060701 0.087776005 0.22657999 0.087776005\n\t\t 0.22657999 0.081960022 0.241256 0.081960022 0.241256 0.081960022 0.241256 0.087776005;\n\tsetAttr \".uvst[0].uvsp[29000:29249]\" 0.22657999 0.087776005 0.22687501 0.093609989\n\t\t 0.22657999 0.087776005 0.241256 0.087776005 0.241256 0.087776005 0.241166 0.093536019\n\t\t 0.22687501 0.093609989 0.21092001 0.093584001 0.21060701 0.087776005 0.22657999 0.087776005\n\t\t 0.22657999 0.087776005 0.21092001 0.093584001 0.19405501 0.093566 0.193698 0.087776005\n\t\t 0.21060701 0.087776005 0.21060701 0.087776005 0.210548 0.093553007 0.19405501 0.093566\n\t\t 0.193698 0.081960022 0.193698 0.087776005 0.17641 0.087776005 0.17641 0.087776005\n\t\t 0.17641 0.081960022 0.193698 0.081960022 0.193698 0.076016009 0.193698 0.081960022\n\t\t 0.17641 0.081960022 0.17641 0.081960022 0.17641 0.076016009 0.193698 0.076016009\n\t\t 0.193698 0.070222974 0.193698 0.076016009 0.17641 0.076016009 0.17641 0.076016009\n\t\t 0.17641 0.070222974 0.193698 0.070222974 0.193698 0.064749002 0.193698 0.070222974\n\t\t 0.17641 0.070222974 0.17641 0.070222974 0.17641 0.064749002 0.193698 0.064749002\n\t\t 0.193698 0.059605002 0.193698 0.064749002 0.17641 0.064749002 0.17641 0.064749002\n\t\t 0.17641 0.059605002 0.193698 0.059605002 0.193698 0.054804981 0.193698 0.059605002\n\t\t 0.17641 0.059605002 0.17641 0.059605002 0.17641 0.054804981 0.193698 0.054804981\n\t\t 0.193698 0.050275981 0.193698 0.054804981 0.17641 0.054804981 0.17641 0.054804981\n\t\t 0.17641 0.050275981 0.193698 0.050275981 0.193698 0.045943022 0.193698 0.050275981\n\t\t 0.17641 0.050275981 0.17641 0.050275981 0.17641 0.045943022 0.193698 0.045943022\n\t\t 0.17641 0.045943022 0.17641 0.050275981 0.159236 0.050275981 0.159236 0.050275981\n\t\t 0.159236 0.045943022 0.17641 0.045943022 0.159236 0.045943022 0.159236 0.050275981\n\t\t 0.14243101 0.050275981 0.14243101 0.050275981 0.14243101 0.045943022 0.159236 0.045943022\n\t\t 0.14243101 0.045943022 0.14243101 0.050275981 0.126 0.050275981 0.126 0.050275981\n\t\t 0.126 0.045943022 0.14243101 0.045943022 0.126 0.054804981 0.126 0.050275981 0.14243101\n\t\t 0.050275981 0.14243101 0.050275981 0.14243101 0.054804981 0.126 0.054804981 0.14243101\n\t\t 0.054804981 0.14243101 0.050275981 0.159236 0.050275981 0.159236 0.050275981 0.159236\n\t\t 0.054804981 0.14243101 0.054804981 0.159236 0.054804981 0.159236 0.050275981 0.17641\n\t\t 0.050275981 0.17641 0.050275981 0.17641 0.054804981 0.159236 0.054804981 0.17641\n\t\t 0.054804981 0.17641 0.059605002 0.159236 0.059605002 0.159236 0.059605002 0.159236\n\t\t 0.054804981 0.17641 0.054804981 0.159236 0.054804981 0.159236 0.059605002 0.14243101\n\t\t 0.059605002 0.14243101 0.059605002 0.14243101 0.054804981 0.159236 0.054804981 0.14243101\n\t\t 0.054804981 0.14243101 0.059605002 0.126 0.059605002 0.126 0.059605002 0.126 0.054804981\n\t\t 0.14243101 0.054804981 0.126 0.064749002 0.126 0.059605002 0.14243101 0.059605002\n\t\t 0.14243101 0.059605002 0.14243101 0.064749002 0.126 0.064749002 0.14243101 0.064749002\n\t\t 0.14243101 0.059605002 0.159236 0.059605002 0.159236 0.059605002 0.159236 0.064749002\n\t\t 0.14243101 0.064749002 0.159236 0.064749002 0.159236 0.059605002 0.17641 0.059605002\n\t\t 0.17641 0.059605002 0.17641 0.064749002 0.159236 0.064749002 0.159236 0.070222974\n\t\t 0.159236 0.064749002 0.17641 0.064749002 0.17641 0.064749002 0.17641 0.070222974\n\t\t 0.159236 0.070222974 0.159236 0.064749002 0.159236 0.070222974 0.14243101 0.070222974\n\t\t 0.14243101 0.070222974 0.14243101 0.064749002 0.159236 0.064749002 0.14243101 0.064749002\n\t\t 0.14243101 0.070222974 0.126 0.070222974 0.126 0.070222974 0.126 0.064749002 0.14243101\n\t\t 0.064749002 0.126 0.076016009 0.126 0.070222974 0.14243101 0.070222974 0.14243101\n\t\t 0.070222974 0.14243101 0.076016009 0.126 0.076016009 0.14243101 0.076016009 0.14243101\n\t\t 0.070222974 0.159236 0.070222974 0.159236 0.070222974 0.159236 0.076016009 0.14243101\n\t\t 0.076016009 0.159236 0.076016009 0.159236 0.070222974 0.17641 0.070222974 0.17641\n\t\t 0.070222974 0.17641 0.076016009 0.159236 0.076016009 0.159236 0.081960022 0.159236\n\t\t 0.076016009 0.17641 0.076016009 0.17641 0.076016009 0.17641 0.081960022 0.159236\n\t\t 0.081960022 0.159236 0.076016009 0.159236 0.081960022 0.14243101 0.081960022 0.14243101\n\t\t 0.081960022 0.14243101 0.076016009 0.159236 0.076016009 0.14243101 0.076016009 0.14243101\n\t\t 0.081960022 0.126 0.081960022 0.126 0.081960022 0.126 0.076016009 0.14243101 0.076016009\n\t\t 0.126 0.087776005 0.126 0.081960022 0.14243101 0.081960022 0.14243101 0.081960022\n\t\t 0.14243101 0.087776005 0.126 0.087776005 0.14243101 0.087776005 0.14243101 0.081960022\n\t\t 0.159236 0.081960022 0.159236 0.081960022 0.159236 0.087776005 0.14243101 0.087776005\n\t\t 0.159236 0.087776005 0.159236 0.081960022 0.17641 0.081960022 0.17641 0.081960022\n\t\t 0.17641 0.087776005 0.159236 0.087776005 0.159666 0.093577027 0.159236 0.087776005\n\t\t 0.17641 0.087776005 0.17641 0.087776005 0.176385 0.093562007 0.159666 0.093577027\n\t\t 0.142858 0.093590021 0.14243101 0.087776005 0.159236 0.087776005 0.159236 0.087776005\n\t\t 0.159217 0.093571007 0.142858 0.093590021 0.126404 0.093595028 0.126 0.087776005\n\t\t 0.14243101 0.087776005 0.14243101 0.087776005 0.142409 0.093578994 0.126404 0.093595028\n\t\t 0.126 0.081960022 0.126 0.087776005 0.109512 0.087776005 0.109512 0.087776005 0.109512\n\t\t 0.081960022 0.126 0.081960022 0.126 0.076016009 0.126 0.081960022 0.109512 0.081960022\n\t\t 0.109512 0.081960022 0.109512 0.076016009 0.126 0.076016009 0.126 0.070222974 0.126\n\t\t 0.076016009 0.109512 0.076016009 0.109512 0.076016009 0.109512 0.070222974 0.126\n\t\t 0.070222974 0.126 0.064749002 0.126 0.070222974 0.109512 0.070222974 0.109512 0.070222974;\n\tsetAttr \".uvst[0].uvsp[29250:29499]\" 0.109512 0.064749002 0.126 0.064749002 0.126\n\t\t 0.059605002 0.126 0.064749002 0.109512 0.064749002 0.109512 0.064749002 0.109512\n\t\t 0.059605002 0.126 0.059605002 0.126 0.054804981 0.126 0.059605002 0.109512 0.059605002\n\t\t 0.109512 0.059605002 0.109512 0.054804981 0.126 0.054804981 0.126 0.050275981 0.126\n\t\t 0.054804981 0.109512 0.054804981 0.109512 0.054804981 0.109512 0.050275981 0.126\n\t\t 0.050275981 0.126 0.045943022 0.126 0.050275981 0.109512 0.050275981 0.109512 0.050275981\n\t\t 0.109512 0.045943022 0.126 0.045943022 0.109512 0.045943022 0.109512 0.050275981\n\t\t 0.092608601 0.050275981 0.092608601 0.050275981 0.092608601 0.045943022 0.109512\n\t\t 0.045943022 0.092608601 0.045943022 0.092608601 0.050275981 0.075532302 0.050275981\n\t\t 0.075532302 0.050275981 0.075532302 0.045943022 0.092608601 0.045943022 0.075532302\n\t\t 0.045943022 0.075532302 0.050275981 0.0437379 0.050275981 0.0437379 0.050275981 0.0437379\n\t\t 0.045943022 0.075532302 0.045943022 0.0437379 0.054804981 0.0437379 0.050275981 0.075532302\n\t\t 0.050275981 0.075532302 0.050275981 0.075532302 0.054804981 0.0437379 0.054804981\n\t\t 0.075532302 0.054804981 0.075532302 0.050275981 0.092608601 0.050275981 0.092608601\n\t\t 0.050275981 0.092608601 0.054804981 0.075532302 0.054804981 0.092608601 0.054804981\n\t\t 0.092608601 0.050275981 0.109512 0.050275981 0.109512 0.050275981 0.109512 0.054804981\n\t\t 0.092608601 0.054804981 0.109512 0.054804981 0.109512 0.059605002 0.092608601 0.059605002\n\t\t 0.092608601 0.059605002 0.092608601 0.054804981 0.109512 0.054804981 0.092608601\n\t\t 0.054804981 0.092608601 0.059605002 0.075532302 0.059605002 0.075532302 0.059605002\n\t\t 0.075532302 0.054804981 0.092608601 0.054804981 0.075532302 0.054804981 0.075532302\n\t\t 0.059605002 0.0437379 0.059605002 0.0437379 0.059605002 0.0437379 0.054804981 0.075532302\n\t\t 0.054804981 0.0437379 0.064749002 0.0437379 0.059605002 0.075532302 0.059605002 0.075532302\n\t\t 0.059605002 0.075532302 0.064749002 0.0437379 0.064749002 0.075532302 0.064749002\n\t\t 0.075532302 0.059605002 0.092608601 0.059605002 0.092608601 0.059605002 0.092608601\n\t\t 0.064749002 0.075532302 0.064749002 0.092608601 0.064749002 0.092608601 0.059605002\n\t\t 0.109512 0.059605002 0.109512 0.059605002 0.109512 0.064749002 0.092608601 0.064749002\n\t\t 0.092608601 0.070222974 0.092608601 0.064749002 0.109512 0.064749002 0.109512 0.064749002\n\t\t 0.109512 0.070222974 0.092608601 0.070222974 0.092608601 0.064749002 0.092608601\n\t\t 0.070222974 0.075532302 0.070222974 0.075532302 0.070222974 0.075532302 0.064749002\n\t\t 0.092608601 0.064749002 0.075532302 0.064749002 0.075532302 0.070222974 0.0437379\n\t\t 0.070222974 0.0437379 0.070222974 0.0437379 0.064749002 0.075532302 0.064749002 0.0437379\n\t\t 0.076016009 0.0437379 0.070222974 0.075532302 0.070222974 0.075532302 0.070222974\n\t\t 0.075532302 0.076016009 0.0437379 0.076016009 0.075532302 0.076016009 0.075532302\n\t\t 0.070222974 0.092608601 0.070222974 0.092608601 0.070222974 0.092608601 0.076016009\n\t\t 0.075532302 0.076016009 0.092608601 0.076016009 0.092608601 0.070222974 0.109512\n\t\t 0.070222974 0.109512 0.070222974 0.109512 0.076016009 0.092608601 0.076016009 0.092608601\n\t\t 0.081960022 0.092608601 0.076016009 0.109512 0.076016009 0.109512 0.076016009 0.109512\n\t\t 0.081960022 0.092608601 0.081960022 0.092608601 0.076016009 0.092608601 0.081960022\n\t\t 0.075532302 0.081960022 0.075532302 0.081960022 0.075532302 0.076016009 0.092608601\n\t\t 0.076016009 0.075532302 0.076016009 0.075532302 0.081960022 0.0437379 0.081960022\n\t\t 0.0437379 0.081960022 0.0437379 0.076016009 0.075532302 0.076016009 0.0437379 0.087776005\n\t\t 0.0437379 0.081960022 0.075532302 0.081960022 0.075532302 0.081960022 0.075532302\n\t\t 0.087776005 0.0437379 0.087776005 0.075532302 0.087776005 0.075532302 0.081960022\n\t\t 0.092608601 0.081960022 0.092608601 0.081960022 0.092608601 0.087776005 0.075532302\n\t\t 0.087776005 0.092608601 0.087776005 0.092608601 0.081960022 0.109512 0.081960022\n\t\t 0.109512 0.081960022 0.109512 0.087776005 0.092608601 0.087776005 0.092608601 0.087776005\n\t\t 0.109512 0.087776005 0.109512 0.087776005 0.109479 0.093572974 0.075910203 0.093566\n\t\t 0.075532302 0.087776005 0.092608601 0.087776005 0.092608601 0.087776005 0.092583798\n\t\t 0.093568027 0.075910203 0.093566 0.0437379 0.076016009 0.0437379 0.081960022 0.0166458\n\t\t 0.081960022 0.0166458 0.081960022 0.0437379 0.081960022 0.0437379 0.087776005 0.0437379\n\t\t 0.087776005 0.0166458 0.087776005 0.0166458 0.081960022 0.0166458 0.081960022 0.0166458\n\t\t 0.087776005 0.0034682699 0.087776005 0.0034682699 0.087776005 0.0034682699 0.081960022\n\t\t 0.0166458 0.081960022 0.0166458 0.081960022 0.0034682699 0.081960022 0.0034682699\n\t\t 0.076016009 0.0034682699 0.076016009 0.0166458 0.076016009 0.0166458 0.081960022\n\t\t 0.0166458 0.070222974 0.0166458 0.076016009 0.0034682699 0.076016009 0.0034682699\n\t\t 0.076016009 0.0034682699 0.070222974 0.0166458 0.070222974 0.0166458 0.070222974\n\t\t 0.0034682699 0.070222974 0.0034682699 0.064749002 0.0034682699 0.064749002 0.0166458\n\t\t 0.064749002 0.0166458 0.070222974 0.0166458 0.059605002 0.0166458 0.064749002 0.0034682699\n\t\t 0.064749002 0.0034682699 0.064749002 0.0034682699 0.059605002 0.0166458 0.059605002\n\t\t 0.0166458 0.059605002 0.0034682699 0.059605002 0.0034682699 0.054804981 0.0034682699\n\t\t 0.054804981 0.0166458 0.054804981 0.0166458 0.059605002 0.0166458 0.050275981 0.0166458\n\t\t 0.054804981 0.0034682699 0.054804981 0.0034682699 0.054804981 0.0034682699 0.050275981\n\t\t 0.0166458 0.050275981 0.0166458 0.050275981 0.0034682699 0.050275981 0.0034682699\n\t\t 0.045943022 0.0034682699 0.045943022 0.0166458 0.045943022 0.0166458 0.050275981\n\t\t 0.0166458 0.050275981 0.0166458 0.045943022 0.0437379 0.045943022 0.0437379 0.045943022\n\t\t 0.0437379 0.050275981 0.0166458 0.050275981 0.0166458 0.050275981 0.0437379 0.050275981\n\t\t 0.0437379 0.054804981 0.0437379 0.054804981 0.0166458 0.054804981 0.0166458 0.050275981\n\t\t 0.0166458 0.059605002;\n\tsetAttr \".uvst[0].uvsp[29500:29749]\" 0.0166458 0.054804981 0.0437379 0.054804981\n\t\t 0.0437379 0.054804981 0.0437379 0.059605002 0.0166458 0.059605002 0.0166458 0.059605002\n\t\t 0.0437379 0.059605002 0.0437379 0.064749002 0.0437379 0.064749002 0.0166458 0.064749002\n\t\t 0.0166458 0.059605002 0.0166458 0.070222974 0.0166458 0.064749002 0.0437379 0.064749002\n\t\t 0.0437379 0.064749002 0.0437379 0.070222974 0.0166458 0.070222974 0.0166458 0.070222974\n\t\t 0.0437379 0.070222974 0.0437379 0.076016009 0.0437379 0.076016009 0.0166458 0.076016009\n\t\t 0.0166458 0.070222974 0.0166458 0.081960022 0.0166458 0.076016009 0.0437379 0.076016009\n\t\t 0.0166458 0.041603029 0.0166458 0.045943022 0.0034682699 0.045943022 0.0034682699\n\t\t 0.045943022 0.0034682699 0.041603029 0.0166458 0.041603029 0.0166458 0.041603029\n\t\t 0.0034682699 0.041603029 0.0034682699 0.037030995 0.0034682699 0.037030995 0.0166458\n\t\t 0.037030995 0.0166458 0.041603029 0.0166458 0.032191992 0.0166458 0.037030995 0.0034682699\n\t\t 0.037030995 0.0034682699 0.037030995 0.0034682699 0.032191992 0.0166458 0.032191992\n\t\t 0.0166458 0.032191992 0.0034682699 0.032191992 0.0034682699 0.026961029 0.0034682699\n\t\t 0.026961029 0.0166458 0.026961029 0.0166458 0.032191992 0.0166458 0.021309018 0.0166458\n\t\t 0.026961029 0.0034682699 0.026961029 0.0034682699 0.026961029 0.0034682699 0.021309018\n\t\t 0.0166458 0.021309018 0.0166458 0.021309018 0.0034682699 0.021309018 0.0034682699\n\t\t 0.015354991 0.0034682699 0.015354991 0.0166458 0.015354991 0.0166458 0.021309018\n\t\t 0.0166458 0.009370029 0.0166458 0.015354991 0.0034682699 0.015354991 0.0034682699\n\t\t 0.015354991 0.0034682699 0.009370029 0.0166458 0.009370029 0.0437379 0.015354991\n\t\t 0.0166458 0.015354991 0.0166458 0.009370029 0.0166458 0.021309018 0.0166458 0.015354991\n\t\t 0.0437379 0.015354991 0.0166458 0.009370029 0.0437379 0.009370029 0.0437379 0.015354991\n\t\t 0.0437379 0.015354991 0.0437379 0.009370029 0.075532302 0.009370029 0.075532302 0.009370029\n\t\t 0.075532302 0.015354991 0.0437379 0.015354991 0.075532302 0.015354991 0.075532302\n\t\t 0.009370029 0.092608601 0.009370029 0.092608601 0.009370029 0.092608601 0.015354991\n\t\t 0.075532302 0.015354991 0.092608601 0.015354991 0.092608601 0.009370029 0.109512\n\t\t 0.009370029 0.109512 0.009370029 0.109512 0.015354991 0.092608601 0.015354991 0.109512\n\t\t 0.015354991 0.109512 0.009370029 0.126 0.009370029 0.126 0.009370029 0.126 0.015354991\n\t\t 0.109512 0.015354991 0.126 0.015354991 0.126 0.009370029 0.14243101 0.009370029 0.14243101\n\t\t 0.009370029 0.14243101 0.015354991 0.126 0.015354991 0.14243101 0.015354991 0.14243101\n\t\t 0.009370029 0.159236 0.009370029 0.159236 0.009370029 0.159236 0.015354991 0.14243101\n\t\t 0.015354991 0.159236 0.015354991 0.159236 0.009370029 0.17641 0.009370029 0.17641\n\t\t 0.009370029 0.17641 0.015354991 0.159236 0.015354991 0.17641 0.015354991 0.17641\n\t\t 0.009370029 0.193698 0.009370029 0.193698 0.009370029 0.193698 0.015354991 0.17641\n\t\t 0.015354991 0.193698 0.015354991 0.193698 0.009370029 0.21060701 0.009370029 0.21060701\n\t\t 0.009370029 0.21060701 0.015354991 0.193698 0.015354991 0.21060701 0.015354991 0.21060701\n\t\t 0.009370029 0.22657999 0.009370029 0.22657999 0.009370029 0.22657999 0.015354991\n\t\t 0.21060701 0.015354991 0.22657999 0.015354991 0.22657999 0.009370029 0.241256 0.009370029\n\t\t 0.241256 0.009370029 0.241256 0.015354991 0.22657999 0.015354991 0.241256 0.015354991\n\t\t 0.241256 0.009370029 0.254612 0.009370029 0.254612 0.009370029 0.254612 0.015354991\n\t\t 0.241256 0.015354991 0.254612 0.015354991 0.254612 0.009370029 0.26699799 0.009370029\n\t\t 0.26699799 0.009370029 0.26699799 0.015354991 0.254612 0.015354991 0.26699799 0.015354991\n\t\t 0.26699799 0.009370029 0.279039 0.009370029 0.279039 0.009370029 0.279039 0.015354991\n\t\t 0.26699799 0.015354991 0.279039 0.015354991 0.279039 0.009370029 0.29161799 0.009370029\n\t\t 0.29161799 0.009370029 0.29161799 0.015354991 0.279039 0.015354991 0.29161799 0.015354991\n\t\t 0.29161799 0.009370029 0.30583301 0.009370029 0.30583301 0.009370029 0.30583301 0.015354991\n\t\t 0.29161799 0.015354991 0.29161799 0.021309018 0.29161799 0.015354991 0.30583301 0.015354991\n\t\t 0.30583301 0.015354991 0.30583301 0.021309018 0.29161799 0.021309018 0.29161799 0.015354991\n\t\t 0.29161799 0.021309018 0.279039 0.021309018 0.279039 0.021309018 0.279039 0.015354991\n\t\t 0.29161799 0.015354991 0.279039 0.015354991 0.279039 0.021309018 0.26699799 0.021309018\n\t\t 0.26699799 0.021309018 0.26699799 0.015354991 0.279039 0.015354991 0.26699799 0.015354991\n\t\t 0.26699799 0.021309018 0.254612 0.021309018 0.254612 0.021309018 0.254612 0.015354991\n\t\t 0.26699799 0.015354991 0.254612 0.026961029 0.254612 0.021309018 0.26699799 0.021309018\n\t\t 0.26699799 0.021309018 0.26699799 0.026961029 0.254612 0.026961029 0.26699799 0.026961029\n\t\t 0.26699799 0.021309018 0.279039 0.021309018 0.279039 0.021309018 0.279039 0.026961029\n\t\t 0.26699799 0.026961029 0.279039 0.026961029 0.279039 0.021309018 0.29161799 0.021309018\n\t\t 0.29161799 0.021309018 0.29161799 0.026961029 0.279039 0.026961029 0.29161799 0.026961029\n\t\t 0.29161799 0.021309018 0.30583301 0.021309018 0.30583301 0.021309018 0.30583301 0.026961029\n\t\t 0.29161799 0.026961029 0.29161799 0.032191992 0.29161799 0.026961029 0.30583301 0.026961029\n\t\t 0.30583301 0.026961029 0.30583301 0.032191992 0.29161799 0.032191992 0.29161799 0.026961029\n\t\t 0.29161799 0.032191992 0.279039 0.032191992 0.279039 0.032191992 0.279039 0.026961029\n\t\t 0.29161799 0.026961029 0.279039 0.026961029 0.279039 0.032191992 0.26699799 0.032191992\n\t\t 0.26699799 0.032191992 0.26699799 0.026961029 0.279039 0.026961029 0.26699799 0.026961029\n\t\t 0.26699799 0.032191992 0.254612 0.032191992 0.254612 0.032191992 0.254612 0.026961029\n\t\t 0.26699799 0.026961029 0.254612 0.037030995 0.254612 0.032191992 0.26699799 0.032191992\n\t\t 0.26699799 0.032191992 0.26699799 0.037030995;\n\tsetAttr \".uvst[0].uvsp[29750:29999]\" 0.254612 0.037030995 0.26699799 0.037030995\n\t\t 0.26699799 0.032191992 0.279039 0.032191992 0.279039 0.032191992 0.279039 0.037030995\n\t\t 0.26699799 0.037030995 0.279039 0.037030995 0.279039 0.032191992 0.29161799 0.032191992\n\t\t 0.29161799 0.032191992 0.29161799 0.037030995 0.279039 0.037030995 0.29161799 0.037030995\n\t\t 0.29161799 0.032191992 0.30583301 0.032191992 0.30583301 0.032191992 0.30583301 0.037030995\n\t\t 0.29161799 0.037030995 0.29161799 0.041603029 0.29161799 0.037030995 0.30583301 0.037030995\n\t\t 0.30583301 0.037030995 0.30583301 0.041603029 0.29161799 0.041603029 0.29161799 0.037030995\n\t\t 0.29161799 0.041603029 0.279039 0.041603029 0.279039 0.041603029 0.279039 0.037030995\n\t\t 0.29161799 0.037030995 0.279039 0.037030995 0.279039 0.041603029 0.26699799 0.041603029\n\t\t 0.26699799 0.041603029 0.26699799 0.037030995 0.279039 0.037030995 0.26699799 0.037030995\n\t\t 0.26699799 0.041603029 0.254612 0.041603029 0.254612 0.041603029 0.254612 0.037030995\n\t\t 0.26699799 0.037030995 0.254612 0.045943022 0.254612 0.041603029 0.26699799 0.041603029\n\t\t 0.26699799 0.041603029 0.26699799 0.045943022 0.254612 0.045943022 0.26699799 0.045943022\n\t\t 0.26699799 0.041603029 0.279039 0.041603029 0.279039 0.041603029 0.279039 0.045943022\n\t\t 0.26699799 0.045943022 0.279039 0.045943022 0.279039 0.041603029 0.29161799 0.041603029\n\t\t 0.29161799 0.041603029 0.29161799 0.045943022 0.279039 0.045943022 0.29161799 0.045943022\n\t\t 0.29161799 0.041603029 0.30583301 0.041603029 0.30583301 0.041603029 0.30583301 0.045943022\n\t\t 0.29161799 0.045943022 0.254612 0.032191992 0.254612 0.037030995 0.241256 0.037030995\n\t\t 0.254612 0.037030995 0.254612 0.041603029 0.241256 0.041603029 0.241256 0.041603029\n\t\t 0.241256 0.037030995 0.254612 0.037030995 0.241256 0.037030995 0.241256 0.041603029\n\t\t 0.22657999 0.041603029 0.22657999 0.041603029 0.22657999 0.037030995 0.241256 0.037030995\n\t\t 0.241256 0.032191992 0.241256 0.037030995 0.22657999 0.037030995 0.22657999 0.037030995\n\t\t 0.22657999 0.032191992 0.241256 0.032191992 0.241256 0.026961029 0.241256 0.032191992\n\t\t 0.22657999 0.032191992 0.241256 0.032191992 0.241256 0.026961029 0.254612 0.026961029\n\t\t 0.254612 0.021309018 0.254612 0.026961029 0.241256 0.026961029 0.241256 0.026961029\n\t\t 0.241256 0.021309018 0.254612 0.021309018 0.254612 0.015354991 0.254612 0.021309018\n\t\t 0.241256 0.021309018 0.241256 0.021309018 0.241256 0.015354991 0.254612 0.015354991\n\t\t 0.241256 0.015354991 0.241256 0.021309018 0.22657999 0.021309018 0.22657999 0.021309018\n\t\t 0.22657999 0.015354991 0.241256 0.015354991 0.22657999 0.015354991 0.22657999 0.021309018\n\t\t 0.21060701 0.021309018 0.21060701 0.021309018 0.21060701 0.015354991 0.22657999 0.015354991\n\t\t 0.21060701 0.015354991 0.21060701 0.021309018 0.193698 0.021309018 0.193698 0.021309018\n\t\t 0.193698 0.015354991 0.21060701 0.015354991 0.193698 0.026961029 0.193698 0.021309018\n\t\t 0.21060701 0.021309018 0.21060701 0.021309018 0.21060701 0.026961029 0.193698 0.026961029\n\t\t 0.21060701 0.026961029 0.21060701 0.021309018 0.22657999 0.021309018 0.22657999 0.021309018\n\t\t 0.22657999 0.026961029 0.21060701 0.026961029 0.22657999 0.026961029 0.22657999 0.021309018\n\t\t 0.241256 0.021309018 0.241256 0.021309018 0.241256 0.026961029 0.22657999 0.026961029\n\t\t 0.22657999 0.032191992 0.22657999 0.026961029 0.241256 0.026961029 0.22657999 0.026961029\n\t\t 0.22657999 0.032191992 0.21060701 0.032191992 0.21060701 0.032191992 0.21060701 0.026961029\n\t\t 0.22657999 0.026961029 0.21060701 0.026961029 0.21060701 0.032191992 0.193698 0.032191992\n\t\t 0.193698 0.032191992 0.193698 0.026961029 0.21060701 0.026961029 0.193698 0.037030995\n\t\t 0.193698 0.032191992 0.21060701 0.032191992 0.21060701 0.032191992 0.21060701 0.037030995\n\t\t 0.193698 0.037030995 0.21060701 0.037030995 0.21060701 0.032191992 0.22657999 0.032191992\n\t\t 0.22657999 0.032191992 0.22657999 0.037030995 0.21060701 0.037030995 0.21060701 0.041603029\n\t\t 0.21060701 0.037030995 0.22657999 0.037030995 0.22657999 0.037030995 0.22657999 0.041603029\n\t\t 0.21060701 0.041603029 0.21060701 0.037030995 0.21060701 0.041603029 0.193698 0.041603029\n\t\t 0.193698 0.041603029 0.193698 0.037030995 0.21060701 0.037030995 0.193698 0.045943022\n\t\t 0.193698 0.041603029 0.21060701 0.041603029 0.21060701 0.041603029 0.21060701 0.045943022\n\t\t 0.193698 0.045943022 0.21060701 0.045943022 0.21060701 0.041603029 0.22657999 0.041603029\n\t\t 0.22657999 0.041603029 0.22657999 0.045943022 0.21060701 0.045943022 0.22657999 0.045943022\n\t\t 0.22657999 0.041603029 0.241256 0.041603029 0.241256 0.041603029 0.241256 0.045943022\n\t\t 0.22657999 0.045943022 0.241256 0.045943022 0.241256 0.041603029 0.254612 0.041603029\n\t\t 0.254612 0.041603029 0.254612 0.045943022 0.241256 0.045943022 0.193698 0.032191992\n\t\t 0.193698 0.037030995 0.17641 0.037030995 0.17641 0.037030995 0.17641 0.032191992\n\t\t 0.193698 0.032191992 0.193698 0.026961029 0.193698 0.032191992 0.17641 0.032191992\n\t\t 0.17641 0.032191992 0.17641 0.026961029 0.193698 0.026961029 0.193698 0.021309018\n\t\t 0.193698 0.026961029 0.17641 0.026961029 0.17641 0.026961029 0.17641 0.021309018\n\t\t 0.193698 0.021309018 0.193698 0.015354991 0.193698 0.021309018 0.17641 0.021309018\n\t\t 0.17641 0.021309018 0.17641 0.015354991 0.193698 0.015354991 0.17641 0.015354991\n\t\t 0.17641 0.021309018 0.159236 0.021309018 0.159236 0.021309018 0.159236 0.015354991\n\t\t 0.17641 0.015354991 0.159236 0.015354991 0.159236 0.021309018 0.14243101 0.021309018\n\t\t 0.14243101 0.021309018 0.14243101 0.015354991 0.159236 0.015354991 0.14243101 0.015354991\n\t\t 0.14243101 0.021309018 0.126 0.021309018 0.126 0.021309018 0.126 0.015354991 0.14243101\n\t\t 0.015354991 0.126 0.026961029 0.126 0.021309018 0.14243101 0.021309018;\n\tsetAttr \".uvst[0].uvsp[30000:30249]\" 0.14243101 0.021309018 0.14243101 0.026961029\n\t\t 0.126 0.026961029 0.14243101 0.026961029 0.14243101 0.021309018 0.159236 0.021309018\n\t\t 0.159236 0.021309018 0.159236 0.026961029 0.14243101 0.026961029 0.159236 0.026961029\n\t\t 0.159236 0.021309018 0.17641 0.021309018 0.17641 0.021309018 0.17641 0.026961029\n\t\t 0.159236 0.026961029 0.159236 0.032191992 0.159236 0.026961029 0.17641 0.026961029\n\t\t 0.17641 0.026961029 0.17641 0.032191992 0.159236 0.032191992 0.159236 0.026961029\n\t\t 0.159236 0.032191992 0.14243101 0.032191992 0.14243101 0.032191992 0.14243101 0.026961029\n\t\t 0.159236 0.026961029 0.14243101 0.026961029 0.14243101 0.032191992 0.126 0.032191992\n\t\t 0.126 0.032191992 0.126 0.026961029 0.14243101 0.026961029 0.126 0.037030995 0.126\n\t\t 0.032191992 0.14243101 0.032191992 0.14243101 0.032191992 0.14243101 0.037030995\n\t\t 0.126 0.037030995 0.14243101 0.037030995 0.14243101 0.032191992 0.159236 0.032191992\n\t\t 0.159236 0.032191992 0.159236 0.037030995 0.14243101 0.037030995 0.159236 0.037030995\n\t\t 0.159236 0.032191992 0.17641 0.032191992 0.17641 0.032191992 0.17641 0.037030995\n\t\t 0.159236 0.037030995 0.159236 0.041603029 0.159236 0.037030995 0.17641 0.037030995\n\t\t 0.17641 0.037030995 0.17641 0.041603029 0.159236 0.041603029 0.17641 0.041603029\n\t\t 0.17641 0.037030995 0.193698 0.037030995 0.193698 0.037030995 0.193698 0.041603029\n\t\t 0.17641 0.041603029 0.159236 0.037030995 0.159236 0.041603029 0.14243101 0.041603029\n\t\t 0.14243101 0.041603029 0.14243101 0.037030995 0.159236 0.037030995 0.14243101 0.037030995\n\t\t 0.14243101 0.041603029 0.126 0.041603029 0.126 0.041603029 0.126 0.037030995 0.14243101\n\t\t 0.037030995 0.126 0.045943022 0.126 0.041603029 0.14243101 0.041603029 0.14243101\n\t\t 0.041603029 0.14243101 0.045943022 0.126 0.045943022 0.14243101 0.045943022 0.14243101\n\t\t 0.041603029 0.159236 0.041603029 0.159236 0.041603029 0.159236 0.045943022 0.14243101\n\t\t 0.045943022 0.159236 0.045943022 0.159236 0.041603029 0.17641 0.041603029 0.17641\n\t\t 0.041603029 0.17641 0.045943022 0.159236 0.045943022 0.17641 0.045943022 0.17641\n\t\t 0.041603029 0.193698 0.041603029 0.193698 0.041603029 0.193698 0.045943022 0.17641\n\t\t 0.045943022 0.126 0.032191992 0.126 0.037030995 0.109512 0.037030995 0.126 0.037030995\n\t\t 0.126 0.041603029 0.109512 0.041603029 0.109512 0.041603029 0.109512 0.037030995\n\t\t 0.126 0.037030995 0.109512 0.037030995 0.109512 0.041603029 0.092608601 0.041603029\n\t\t 0.092608601 0.041603029 0.092608601 0.037030995 0.109512 0.037030995 0.109512 0.032191992\n\t\t 0.109512 0.037030995 0.092608601 0.037030995 0.092608601 0.037030995 0.092608601\n\t\t 0.032191992 0.109512 0.032191992 0.109512 0.026961029 0.109512 0.032191992 0.092608601\n\t\t 0.032191992 0.109512 0.032191992 0.109512 0.026961029 0.126 0.026961029 0.126 0.021309018\n\t\t 0.126 0.026961029 0.109512 0.026961029 0.109512 0.026961029 0.109512 0.021309018\n\t\t 0.126 0.021309018 0.126 0.015354991 0.126 0.021309018 0.109512 0.021309018 0.109512\n\t\t 0.021309018 0.109512 0.015354991 0.126 0.015354991 0.109512 0.015354991 0.109512\n\t\t 0.021309018 0.092608601 0.021309018 0.092608601 0.021309018 0.092608601 0.015354991\n\t\t 0.109512 0.015354991 0.092608601 0.015354991 0.092608601 0.021309018 0.075532302\n\t\t 0.021309018 0.075532302 0.021309018 0.075532302 0.015354991 0.092608601 0.015354991\n\t\t 0.075532302 0.015354991 0.075532302 0.021309018 0.0437379 0.021309018 0.0437379 0.021309018\n\t\t 0.0437379 0.015354991 0.075532302 0.015354991 0.0437379 0.026961029 0.0437379 0.021309018\n\t\t 0.075532302 0.021309018 0.075532302 0.021309018 0.075532302 0.026961029 0.0437379\n\t\t 0.026961029 0.075532302 0.026961029 0.075532302 0.021309018 0.092608601 0.021309018\n\t\t 0.092608601 0.021309018 0.092608601 0.026961029 0.075532302 0.026961029 0.092608601\n\t\t 0.026961029 0.092608601 0.021309018 0.109512 0.021309018 0.109512 0.021309018 0.109512\n\t\t 0.026961029 0.092608601 0.026961029 0.092608601 0.032191992 0.092608601 0.026961029\n\t\t 0.109512 0.026961029 0.092608601 0.026961029 0.092608601 0.032191992 0.075532302\n\t\t 0.032191992 0.075532302 0.032191992 0.075532302 0.026961029 0.092608601 0.026961029\n\t\t 0.075532302 0.026961029 0.075532302 0.032191992 0.0437379 0.032191992 0.0437379 0.032191992\n\t\t 0.0437379 0.026961029 0.075532302 0.026961029 0.0437379 0.037030995 0.0437379 0.032191992\n\t\t 0.075532302 0.032191992 0.075532302 0.032191992 0.075532302 0.037030995 0.0437379\n\t\t 0.037030995 0.075532302 0.037030995 0.075532302 0.032191992 0.092608601 0.032191992\n\t\t 0.092608601 0.032191992 0.092608601 0.037030995 0.075532302 0.037030995 0.075532302\n\t\t 0.041603029 0.075532302 0.037030995 0.092608601 0.037030995 0.092608601 0.037030995\n\t\t 0.092608601 0.041603029 0.075532302 0.041603029 0.075532302 0.037030995 0.075532302\n\t\t 0.041603029 0.0437379 0.041603029 0.0437379 0.041603029 0.0437379 0.037030995 0.075532302\n\t\t 0.037030995 0.0437379 0.045943022 0.0437379 0.041603029 0.075532302 0.041603029 0.075532302\n\t\t 0.041603029 0.075532302 0.045943022 0.0437379 0.045943022 0.075532302 0.045943022\n\t\t 0.075532302 0.041603029 0.092608601 0.041603029 0.092608601 0.041603029 0.092608601\n\t\t 0.045943022 0.075532302 0.045943022 0.092608601 0.045943022 0.092608601 0.041603029\n\t\t 0.109512 0.041603029 0.109512 0.041603029 0.109512 0.045943022 0.092608601 0.045943022\n\t\t 0.109512 0.045943022 0.109512 0.041603029 0.126 0.041603029 0.126 0.041603029 0.126\n\t\t 0.045943022 0.109512 0.045943022 0.0166458 0.032191992 0.0437379 0.032191992 0.0437379\n\t\t 0.037030995 0.0437379 0.026961029 0.0437379 0.032191992 0.0166458 0.032191992 0.0166458\n\t\t 0.032191992 0.0166458 0.026961029 0.0437379 0.026961029 0.0437379 0.026961029 0.0166458\n\t\t 0.026961029 0.0166458 0.021309018 0.0166458 0.021309018;\n\tsetAttr \".uvst[0].uvsp[30250:30499]\" 0.0437379 0.021309018 0.0437379 0.026961029\n\t\t 0.0437379 0.015354991 0.0437379 0.021309018 0.0166458 0.021309018 0.0437379 0.041603029\n\t\t 0.0437379 0.045943022 0.0166458 0.045943022 0.0166458 0.045943022 0.0166458 0.041603029\n\t\t 0.0437379 0.041603029 0.0437379 0.037030995 0.0437379 0.041603029 0.0166458 0.041603029\n\t\t 0.0437379 0.037030995 0.0166458 0.037030995 0.0166458 0.032191992 0.0166458 0.041603029\n\t\t 0.0166458 0.037030995 0.0437379 0.037030995 0.30583301 0.087776005 0.305805 0.093562007\n\t\t 0.292052 0.093356013 0.292052 0.093356013 0.29161799 0.087776005 0.30583301 0.087776005\n\t\t 0.254612 0.087776005 0.241579 0.093622029 0.241579 0.093622029 0.241256 0.087776005\n\t\t 0.254612 0.087776005 0.254612 0.026961029 0.254612 0.032191992 0.241256 0.032191992\n\t\t 0.241256 0.037030995 0.241256 0.032191992 0.254612 0.032191992 0.193698 0.087776005\n\t\t 0.19365899 0.093555987 0.176817 0.093568027 0.176817 0.093568027 0.17641 0.087776005\n\t\t 0.193698 0.087776005 0.126 0.087776005 0.125967 0.093578994 0.109894 0.093582988\n\t\t 0.109894 0.093582988 0.109512 0.087776005 0.126 0.087776005 0.075532302 0.087776005\n\t\t 0.0453966 0.095196009 0.0453966 0.095196009 0.044557601 0.089448988 0.075532302 0.087776005\n\t\t 0.126 0.026961029 0.126 0.032191992 0.109512 0.032191992 0.109512 0.037030995 0.109512\n\t\t 0.032191992 0.126 0.032191992 0.0437379 0.087776005 0.043704301 0.093568027 0.0167739\n\t\t 0.093562007 0.0167739 0.093562007 0.0166458 0.087776005 0.0437379 0.087776005 0.0034682699\n\t\t 0.087776005 0.0166458 0.087776005 0.016618799 0.093566 0.016618799 0.093566 0.0034682699\n\t\t 0.087776005 0.43294501 0.064749002 0.43294501 0.070222974 0.42699501 0.070734978\n\t\t 0.42630199 0.07634002 0.42699501 0.070734978 0.43294501 0.070222974 0.42699501 0.070734978\n\t\t 0.42630199 0.07634002 0.42016399 0.076452971 0.43294501 0.070222974 0.43294501 0.076016009\n\t\t 0.42630199 0.07634002 0.42555699 0.082095027 0.42630199 0.07634002 0.43294501 0.076016009\n\t\t 0.43294501 0.076016009 0.43294501 0.081960022 0.42555699 0.082095027 0.42630199 0.07634002\n\t\t 0.42555699 0.082095027 0.41886899 0.082186997 0.41886899 0.082186997 0.42016399 0.076452971\n\t\t 0.42630199 0.07634002 0.417613 0.087917984 0.41886899 0.082186997 0.42555699 0.082095027\n\t\t 0.42555699 0.082095027 0.42484999 0.087855995 0.417613 0.087917984 0.42484999 0.087855995\n\t\t 0.42555699 0.082095027 0.43294501 0.081960022 0.43294501 0.081960022 0.43294501 0.087776005\n\t\t 0.42484999 0.087855995 0.43277499 0.003798008 0.43294501 0.009370029 0.42455399 0.009239018\n\t\t 0.42455399 0.009239018 0.424622 0.0038210154 0.43277499 0.003798008 0.42473999 0.014725029\n\t\t 0.42455399 0.009239018 0.43294501 0.009370029 0.42455399 0.009239018 0.42473999 0.014725029\n\t\t 0.41766399 0.014792979 0.41766399 0.014792979 0.41718301 0.0093140006 0.42455399\n\t\t 0.009239018 0.42435399 0.0038170218 0.42455399 0.009239018 0.41718301 0.0093140006\n\t\t 0.41718301 0.0093140006 0.41690201 0.0037379861 0.42435399 0.0038170218 0.43294501\n\t\t 0.009370029 0.43294501 0.015354991 0.42473999 0.014725029 0.42512301 0.020093024\n\t\t 0.42473999 0.014725029 0.43294501 0.015354991 0.43294501 0.015354991 0.43294501 0.021309018\n\t\t 0.42512301 0.020093024 0.42473999 0.014725029 0.42512301 0.020093024 0.41840601 0.020026028\n\t\t 0.41840601 0.020026028 0.41766399 0.014792979 0.42473999 0.014725029 0.41938901 0.025081992\n\t\t 0.41840601 0.020026028 0.42512301 0.020093024 0.42512301 0.020093024 0.42563999 0.025319993\n\t\t 0.41938901 0.025081992 0.42563999 0.025319993 0.42512301 0.020093024 0.43294501 0.021309018\n\t\t 0.43294501 0.021309018 0.43294501 0.026961029 0.42563999 0.025319993 0.426276 0.030411005\n\t\t 0.42563999 0.025319993 0.43294501 0.026961029 0.43294501 0.026961029 0.43294501 0.032191992\n\t\t 0.426276 0.030411005 0.42563999 0.025319993 0.426276 0.030411005 0.42055601 0.030094981\n\t\t 0.42055601 0.030094981 0.41938901 0.025081992 0.42563999 0.025319993 0.42175999 0.035144985\n\t\t 0.42055601 0.030094981 0.426276 0.030411005 0.426276 0.030411005 0.42693499 0.035476029\n\t\t 0.42175999 0.035144985 0.42693499 0.035476029 0.426276 0.030411005 0.43294501 0.032191992\n\t\t 0.43294501 0.032191992 0.43294501 0.037030995 0.42693499 0.035476029 0.42754 0.040522993\n\t\t 0.42693499 0.035476029 0.43294501 0.037030995 0.43294501 0.037030995 0.43294501 0.041603029\n\t\t 0.42754 0.040522993 0.42693499 0.035476029 0.42754 0.040522993 0.422833 0.040265024\n\t\t 0.422833 0.040265024 0.42175999 0.035144985 0.42693499 0.035476029 0.42800301 0.045512974\n\t\t 0.42754 0.040522993 0.43294501 0.041603029 0.43294501 0.041603029 0.43294501 0.045943022\n\t\t 0.42800301 0.045512974 0.40886 0.046414971 0.40903601 0.051437974 0.40213001 0.051681995\n\t\t 0.40213001 0.051681995 0.40198299 0.046629012 0.40886 0.046414971 0.40198299 0.046629012\n\t\t 0.40213001 0.051681995 0.39339501 0.051738977 0.39339501 0.051738977 0.39327201 0.046634018\n\t\t 0.40198299 0.046629012 0.39327201 0.046634018 0.39339501 0.051738977 0.38257799 0.051576972\n\t\t 0.38257799 0.051576972 0.382476 0.046404004 0.39327201 0.046634018 0.382476 0.046404004\n\t\t 0.38257799 0.051576972 0.36937699 0.051325977 0.36937699 0.051325977 0.36929101 0.04609102\n\t\t 0.382476 0.046404004 0.36935699 0.05647397 0.36937699 0.051325977 0.38257799 0.051576972\n\t\t 0.38257799 0.051576972 0.38248599 0.056638002 0.36935699 0.05647397 0.38248599 0.056638002\n\t\t 0.38257799 0.051576972 0.39339501 0.051738977 0.39339501 0.051738977 0.39321899 0.056721985\n\t\t 0.38248599 0.056638002 0.39321899 0.056721985 0.39339501 0.051738977 0.40213001 0.051681995\n\t\t 0.40213001 0.051681995 0.40187401 0.056623995 0.39321899 0.056721985 0.40187401 0.056623995\n\t\t 0.40213001 0.051681995 0.40903601 0.051437974 0.40903601 0.051437974 0.40872899 0.05637002\n\t\t 0.40187401 0.056623995 0.40121701 0.061488986 0.40187401 0.056623995 0.40872899 0.05637002\n\t\t 0.40872899 0.05637002 0.40795401 0.061231017;\n\tsetAttr \".uvst[0].uvsp[30500:30749]\" 0.40121701 0.061488986 0.40187401 0.056623995\n\t\t 0.40121701 0.061488986 0.392737 0.061636984 0.392737 0.061636984 0.39321899 0.056721985\n\t\t 0.40187401 0.056623995 0.39321899 0.056721985 0.392737 0.061636984 0.38219401 0.061653972\n\t\t 0.38219401 0.061653972 0.38248599 0.056638002 0.39321899 0.056721985 0.38248599 0.056638002\n\t\t 0.38219401 0.061653972 0.36922699 0.061607003 0.36922699 0.061607003 0.36935699 0.05647397\n\t\t 0.38248599 0.056638002 0.36903101 0.066811025 0.36922699 0.061607003 0.38219401 0.061653972\n\t\t 0.38219401 0.061653972 0.381758 0.066736996 0.36903101 0.066811025 0.381758 0.066736996\n\t\t 0.38219401 0.061653972 0.392737 0.061636984 0.392737 0.061636984 0.39202401 0.066609025\n\t\t 0.381758 0.066736996 0.39202401 0.066609025 0.392737 0.061636984 0.40121701 0.061488986\n\t\t 0.40121701 0.061488986 0.40025201 0.066401005 0.39202401 0.066609025 0.40025201 0.066401005\n\t\t 0.40121701 0.061488986 0.40795401 0.061231017 0.40795401 0.061231017 0.40681201 0.066137016\n\t\t 0.40025201 0.066401005 0.39912 0.071485996 0.40025201 0.066401005 0.40681201 0.066137016\n\t\t 0.40681201 0.066137016 0.40545499 0.071219981 0.39912 0.071485996 0.40025201 0.066401005\n\t\t 0.39912 0.071485996 0.39120999 0.071745992 0.39120999 0.071745992 0.39202401 0.066609025\n\t\t 0.40025201 0.066401005 0.39202401 0.066609025 0.39120999 0.071745992 0.38128901 0.071959972\n\t\t 0.38128901 0.071959972 0.381758 0.066736996 0.39202401 0.066609025 0.381758 0.066736996\n\t\t 0.38128901 0.071959972 0.368866 0.072120011 0.368866 0.072120011 0.36903101 0.066811025\n\t\t 0.381758 0.066736996 0.368783 0.077486992 0.368866 0.072120011 0.38128901 0.071959972\n\t\t 0.38128901 0.071959972 0.38088599 0.077300012 0.368783 0.077486992 0.38088599 0.077300012\n\t\t 0.38128901 0.071959972 0.39120999 0.071745992 0.39120999 0.071745992 0.39043501 0.077062011\n\t\t 0.38088599 0.077300012 0.39043501 0.077062011 0.39120999 0.071745992 0.39912 0.071485996\n\t\t 0.39912 0.071485996 0.398 0.076793015 0.39043501 0.077062011 0.398 0.076793015 0.39912\n\t\t 0.071485996 0.40545499 0.071219981 0.40545499 0.071219981 0.40407601 0.076542974\n\t\t 0.398 0.076793015 0.39704999 0.082292974 0.398 0.076793015 0.40407601 0.076542974\n\t\t 0.40407601 0.076542974 0.40284401 0.082107008 0.39704999 0.082292974 0.398 0.076793015\n\t\t 0.39704999 0.082292974 0.38984299 0.082490981 0.38984299 0.082490981 0.39043501 0.077062011\n\t\t 0.398 0.076793015 0.39043501 0.077062011 0.38984299 0.082490981 0.380674 0.082663\n\t\t 0.380674 0.082663 0.38088599 0.077300012 0.39043501 0.077062011 0.38088599 0.077300012\n\t\t 0.380674 0.082663 0.36890599 0.082809985 0.36890599 0.082809985 0.368783 0.077486992\n\t\t 0.38088599 0.077300012 0.36934501 0.088055015 0.36890599 0.082809985 0.380674 0.082663\n\t\t 0.380674 0.082663 0.38062599 0.08800602 0.36934501 0.088055015 0.38062599 0.08800602\n\t\t 0.380674 0.082663 0.38984299 0.082490981 0.38984299 0.082490981 0.38936001 0.087954998\n\t\t 0.38062599 0.08800602 0.38936001 0.087954998 0.38984299 0.082490981 0.39704999 0.082292974\n\t\t 0.39704999 0.082292974 0.39621499 0.087890029 0.38936001 0.087954998 0.39621499 0.087890029\n\t\t 0.39704999 0.082292974 0.40284401 0.082107008 0.40284401 0.082107008 0.40174299 0.087814987\n\t\t 0.39621499 0.087890029 0.39540401 0.093434989 0.39621499 0.087890029 0.40174299 0.087814987\n\t\t 0.40174299 0.087814987 0.40092501 0.093482018 0.39540401 0.093434989 0.388769 0.093366981\n\t\t 0.38936001 0.087954998 0.39621499 0.087890029 0.39621499 0.087890029 0.39555901 0.093392015\n\t\t 0.388769 0.093366981 0.38038501 0.093326986 0.38062599 0.08800602 0.38936001 0.087954998\n\t\t 0.38936001 0.087954998 0.38896599 0.093316019 0.38038501 0.093326986 0.36968699 0.093321025\n\t\t 0.36934501 0.088055015 0.38062599 0.08800602 0.38062599 0.08800602 0.380656 0.093264997\n\t\t 0.36968699 0.093321025 0.39683101 0.015124023 0.397652 0.020494998 0.390246 0.020273983\n\t\t 0.390246 0.020273983 0.38973999 0.014972985 0.39683101 0.015124023 0.38973999 0.014972985\n\t\t 0.390246 0.020273983 0.38077599 0.019804001 0.38077599 0.019804001 0.38062099 0.014605999\n\t\t 0.38973999 0.014972985 0.38062099 0.014605999 0.38077599 0.019804001 0.368662 0.019352019\n\t\t 0.36867401 0.024572015 0.368662 0.019352019 0.38077599 0.019804001 0.38077599 0.019804001\n\t\t 0.38107401 0.025026977 0.36867401 0.024572015 0.38107401 0.025026977 0.38077599 0.019804001\n\t\t 0.390246 0.020273983 0.390246 0.020273983 0.390885 0.02550602 0.38107401 0.025026977\n\t\t 0.390885 0.02550602 0.390246 0.020273983 0.397652 0.020494998 0.397652 0.020494998\n\t\t 0.398617 0.025738001 0.390885 0.02550602 0.39158499 0.030776978 0.390885 0.02550602\n\t\t 0.398617 0.025738001 0.390885 0.02550602 0.39158499 0.030776978 0.38144001 0.030342996\n\t\t 0.38144001 0.030342996 0.38107401 0.025026977 0.390885 0.02550602 0.38107401 0.025026977\n\t\t 0.38144001 0.030342996 0.36876801 0.029914021 0.36876801 0.029914021 0.36867401 0.024572015\n\t\t 0.38107401 0.025026977 0.36893699 0.035329998 0.36876801 0.029914021 0.38144001 0.030342996\n\t\t 0.38144001 0.030342996 0.38184199 0.035722971 0.36893699 0.035329998 0.38184199 0.035722971\n\t\t 0.38144001 0.030342996 0.39158499 0.030776978 0.39158499 0.030776978 0.39228299 0.036090016\n\t\t 0.38184199 0.035722971 0.3822 0.041100979 0.38184199 0.035722971 0.39228299 0.036090016\n\t\t 0.39228299 0.036090016 0.392865 0.041397989 0.3822 0.041100979 0.392865 0.041397989\n\t\t 0.39228299 0.036090016 0.40063801 0.036219001 0.40063801 0.036219001 0.401445 0.041456997\n\t\t 0.392865 0.041397989 0.401445 0.041456997 0.40063801 0.036219001 0.40720999 0.036113977\n\t\t 0.40720999 0.036113977 0.408207 0.041292012 0.401445 0.041456997 0.38184199 0.035722971\n\t\t 0.3822 0.041100979 0.36911699 0.040746987 0.36911699 0.040746987 0.36893699 0.035329998\n\t\t 0.38184199 0.035722971 0.36929101 0.04609102 0.36911699 0.040746987 0.3822 0.041100979;\n\tsetAttr \".uvst[0].uvsp[30750:30930]\" 0.3822 0.041100979 0.382476 0.046404004 0.36929101\n\t\t 0.04609102 0.382476 0.046404004 0.3822 0.041100979 0.392865 0.041397989 0.392865\n\t\t 0.041397989 0.39327201 0.046634018 0.382476 0.046404004 0.39327201 0.046634018 0.392865\n\t\t 0.041397989 0.401445 0.041456997 0.401445 0.041456997 0.40198299 0.046629012 0.39327201\n\t\t 0.046634018 0.40198299 0.046629012 0.401445 0.041456997 0.408207 0.041292012 0.408207\n\t\t 0.041292012 0.40886 0.046414971 0.40198299 0.046629012 0.97984499 0.51224899 0.98153001\n\t\t 0.51225102 0.97984499 0.51224899 0.97850299 0.52295697 0.97823 0.52547401 0.97823\n\t\t 0.52547401 0.98313898 0.51999104 0.98313898 0.51999104 0.98336202 0.52138299 0.98313898\n\t\t 0.51999104 0.98313898 0.51999104 0.98742199 0.519898 0.98742199 0.519898 0.98345298\n\t\t 0.51894796 0.987423 0.518906 0.98337102 0.51737297 0.987423 0.518906 0.98337102 0.51737297\n\t\t 0.98742199 0.51739299 0.98337102 0.51737297 0.97985101 0.51625401 0.98742199 0.51739299\n\t\t 0.98342001 0.51656497 0.98742098 0.51650101 0.98742098 0.51650101 0.98412901 0.513089\n\t\t 0.98742098 0.51303101 0.98742098 0.51303101 0.98153001 0.51225102 0.98153001 0.51225102\n\t\t 0.98432899 0.51190001 0.98079801 0.51366603 0.98412901 0.513089 0.98412901 0.513089\n\t\t 0.98079801 0.51366603 0.97985101 0.51625401 0.97985101 0.51625401 0.98342001 0.51656497\n\t\t 0.97865802 0.52099502 0.98345298 0.51894796 0.98337102 0.51737297 0.98345298 0.51894796\n\t\t 0.97865802 0.52099502 0.97850299 0.52295697 0.97850299 0.52295697 0.98313898 0.51999104\n\t\t 0.98742098 0.51303101 0.98742098 0.51303101 0.990713 0.51308703 0.98742098 0.51650101\n\t\t 0.98742098 0.51650101 0.990713 0.51308703 0.99142402 0.516563 0.98742199 0.51739299\n\t\t 0.98742199 0.51739299 0.99142402 0.516563 0.99147201 0.51736999 0.987423 0.518906\n\t\t 0.987423 0.518906 0.99147201 0.51736999 0.99139202 0.51894599 0.98742199 0.519898\n\t\t 0.98742199 0.519898 0.99139202 0.51894599 0.99170601 0.51998603 0.99170601 0.51998603\n\t\t 0.99170601 0.51998603 0.99148399 0.52137601 0.99662602 0.52545601 0.99170601 0.51998603\n\t\t 0.99139202 0.51894599 0.99634999 0.52294201 0.99634999 0.52294201 0.99662602 0.52545601\n\t\t 0.99662602 0.52545601 0.99634999 0.52294201 0.99634999 0.52294201 0.99634999 0.52294201\n\t\t 0.99619198 0.52098203 0.99139202 0.51894599 0.99147201 0.51736999 0.99139202 0.51894599\n\t\t 0.99619198 0.52098203 0.99147201 0.51736999 0.993312 0.51224804 0.99499601 0.512245\n\t\t 0.99499601 0.512245 0.99147201 0.51736999 0.99499202 0.51624799 0.99142402 0.516563\n\t\t 0.993312 0.51224804 0.993312 0.51224804 0.99051201 0.51189804 0.99404401 0.51366103\n\t\t 0.990713 0.51308703 0.99499202 0.51624799 0.99499202 0.51624799 0.99404401 0.51366103\n\t\t 0.990713 0.51308703 0.99418098 0.51092696 0.995139 0.51096404 0.99096799 0.51067501\n\t\t 0.99418098 0.51092696 0.99096799 0.51067501 0.98742002 0.51062399 0.99096799 0.51067501\n\t\t 0.98742002 0.51062399 0.98387301 0.51067603 0.98742002 0.51062399 0.98387301 0.51067603\n\t\t 0.98066002 0.51093 0.98387301 0.51067603 0.98421103 0.50651097 0.98066002 0.51093\n\t\t 0.98066002 0.51093 0.979702 0.51096797 0.98337102 0.51737297 0.97823 0.52547401 0.97823\n\t\t 0.52547401 0.977153 0.52573502 0.97823 0.52547401 0.97878802 0.52677703 0.97878802\n\t\t 0.52677703 0.98336202 0.52138299 0.983634 0.52230096 0.983634 0.52230096 0.99148399\n\t\t 0.52137601 0.99121201 0.52229202 0.99148399 0.52137601 0.99662602 0.52545601 0.99607301\n\t\t 0.52675796 0.99770302 0.52571499 0.99662602 0.52545601 0.98742199 0.52245498 0.983634\n\t\t 0.52230096 0.98310602 0.529055 0.983634 0.52230096 0.97878802 0.52677703 0.98742199\n\t\t 0.52245498 0.99607301 0.52675796 0.99607301 0.52675796 0.98742199 0.52245498 0.99121201\n\t\t 0.52229202 0.98742199 0.52245498 0.99607301 0.52675796 0.99121201 0.52229202 0.99177003\n\t\t 0.52904403 0.99607301 0.52675796 0.99562901 0.52802396 0.99177003 0.52904403 0.99552798\n\t\t 0.528494 0.97924 0.52804196 0.97808999 0.52840102 0.97924 0.52804196 0.97924 0.52804196\n\t\t 0.97924 0.52804196 0.98299903 0.53223097 0.99562901 0.52802396 0.99677902 0.52837896\n\t\t 0.99562901 0.52802396;\n\tsetAttr \".cuvs\" -type \"string\" \"TEXCOORD_0\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr -s 13341 \".pt\";\n\tsetAttr \".pt[0:165]\" -type \"float3\"  1.2239892 1.9153632e-07 0.061881788 \n\t\t1.1471673 1.7262875e-07 -0.12706819 1.1590093 1.7499984e-07 -0.11254819 1.2152053 \n\t\t1.8847568e-07 0.016123775 1.1340532 1.7044215e-07 -0.13134417 1.1971353 1.8526725e-07 \n\t\t0.0049777948 1.1703893 1.8104626e-07 0.0026678161 1.1084353 1.6669001e-07 -0.1257402 \n\t\t1.0720392 1.6185811e-07 -0.10437226 1.1347992 1.7587759e-07 0.011635811 1.0947853 \n\t\t1.7023459e-07 0.026237816 1.0302553 1.5648651e-07 -0.07512217 1.2639652 1.999754e-07 \n\t\t0.12258378 1.2641413 2.0131446e-07 0.15783978 1.2395873 1.9588738e-07 0.11400778 \n\t\t1.2870133 2.0634246e-07 0.19793518 1.2928892 2.0621177e-07 0.17000778 1.2623173 2.0246891e-07 \n\t\t0.19644478 1.2492433 1.9931984e-07 0.16613577 1.3360993 2.1735791e-07 0.29002538 \n\t\t1.3428433 2.1757207e-07 0.267759 1.3238213 2.1608317e-07 0.30678159 1.2491792 1.9584343e-07 \n\t\t0.072971791 1.2785853 2.0209791e-07 0.11887977 1.2296813 1.9235485e-07 0.060229808 \n\t\t1.2578353 1.9838591e-07 0.10533577 1.2008992 1.8773098e-07 0.055551797 1.2270873 \n\t\t1.9340494e-07 0.099229798 1.1624293 1.8190012e-07 0.058689803 1.1855112 1.8694512e-07 \n\t\t0.098369792 1.1191152 1.7546583e-07 0.065737814 1.1385193 1.7974568e-07 0.1001358 \n\t\t1.3274813 2.1330284e-07 0.21685179 1.3585212 2.2145099e-07 0.30686441 1.3448733 2.1741771e-07 \n\t\t0.25517601 1.4020351 2.3247361e-07 0.42229897 1.3907971 2.2865669e-07 0.3664121 1.3236092 \n\t\t2.1350587e-07 0.238397 1.3696252 2.2466116e-07 0.34700119 1.3390752 2.1952017e-07 \n\t\t0.3357718 1.2925353 2.0836872e-07 0.22944759 1.2513933 2.0195526e-07 0.2280304 1.2995392 \n\t\t2.1331604e-07 0.333307 1.2555132 2.0658076e-07 0.335224 1.2052153 1.9490339e-07 0.23038019 \n\t\t1.4210352 2.3904389e-07 0.51993167 1.4063731 2.376853e-07 0.54434085 1.3884952 2.3131071e-07 \n\t\t0.44730458 1.3682711 2.288629e-07 0.46555099 1.3846132 2.3498744e-07 0.56224859 1.4121592 \n\t\t2.3569606e-07 0.46683782 1.4181472 2.3888362e-07 0.52762461 1.4254471 2.4187068e-07 \n\t\t0.57757187 1.3915652 2.3182456e-07 0.44835883 1.3978171 2.3509709e-07 0.51033247 \n\t\t1.3682212 2.3016069e-07 0.50063765 1.3617872 2.2682812e-07 0.43780643 1.3239112 2.2090622e-07 \n\t\t0.43602943 1.3308672 2.243419e-07 0.49946263 1.2896372 2.1808238e-07 0.50254804 1.2819892 \n\t\t2.1452203e-07 0.43864003 1.3618912 2.3177338e-07 0.57028067 1.3885112 2.3766407e-07 \n\t\t0.61798787 1.3658532 2.3443008e-07 0.6252178 1.3428012 2.3095194e-07 0.62752378 1.3480551 \n\t\t2.260574e-07 0.47415036 1.3220353 2.1760769e-07 0.35517487 1.2959213 2.1238858e-07 \n\t\t0.32341418 1.3102052 2.1435031e-07 0.31678578 1.3367953 2.1954385e-07 0.34588137 \n\t\t1.2749013 2.0616687e-07 0.24354237 1.4103812 2.4040961e-07 0.60090387 1.3504393 2.2103586e-07 \n\t\t0.32928839 1.1409994 1.7507782e-07 -0.035620224 1.1858414 1.8151755e-07 -0.048870247 \n\t\t1.2249794 1.8705214e-07 -0.062746242 1.1314394 1.6499e-07 -0.26701224 1.2527134 1.9077689e-07 \n\t\t-0.077878222 1.2656914 1.9226047e-07 -0.091930225 1.1664274 1.6945559e-07 -0.29237422 \n\t\t1.2605653 1.910723e-07 -0.10256423 1.2391613 1.8752344e-07 -0.10900624 1.1498913 \n\t\t1.6708829e-07 -0.28728822 1.0899453 1.5866824e-07 -0.2645022 1.1948414 1.9030875e-07 \n\t\t0.15000178 1.2427855 1.9728479e-07 0.13827576 1.2845393 2.0325059e-07 0.12511976 \n\t\t1.3139113 2.0719548e-07 0.10909776 1.3274833 2.0866941e-07 0.092317775 1.3218412 \n\t\t2.0722291e-07 0.076885767 1.3000133 2.0339451e-07 0.064691775 1.2110773 1.9555212e-07 \n\t\t0.22345756 1.2594733 2.0259685e-07 0.21169996 1.2217233 1.9974399e-07 0.29188135 \n\t\t1.2701193 2.0678438e-07 0.28000695 1.2281452 2.0350582e-07 0.36629888 1.2765433 2.1054183e-07 \n\t\t0.35429814 1.2780173 2.1617545e-07 0.49957955 1.2296133 2.0915583e-07 0.51204544 \n\t\t1.3122712 2.1278122e-07 0.26603115 1.3187033 2.1652077e-07 0.33980778 1.3201792 2.2211522e-07 \n\t\t0.4840284 1.3483813 2.2038461e-07 0.32033655 1.3498613 2.2589592e-07 0.46230575 1.3419273 \n\t\t2.1668959e-07 0.24784777 1.3548952 2.1798222e-07 0.22870536 1.3592513 2.2129181e-07 \n\t\t0.29955295 1.3587713 2.2639954e-07 0.4388192 1.3449852 2.1840054e-07 0.28112477 1.3386173 \n\t\t2.2250809e-07 0.41797578 1.3469753 2.1613054e-07 0.21184856 1.3234572 2.1189835e-07 \n\t\t0.19582556 1.3181553 2.1348637e-07 0.26053438 1.3312533 2.1255936e-07 0.18119736 \n\t\t1.3016173 2.0860999e-07 0.19819537 1.3449273 2.140077e-07 0.16330576 1.3391793 2.1251677e-07 \n\t\t0.14711978 1.3170693 2.0858789e-07 0.13339776 1.2645373 2.0304323e-07 0.20265558 \n\t\t0.95193952 1.3343599e-07 -0.36920816 0.86025941 1.1074948e-07 -0.59798229 0.8235054 \n\t\t1.0651316e-07 -0.5591203 0.99057949 1.3806985e-07 -0.4052223 1.0248034 1.4213788e-07 \n\t\t-0.43809426 0.89322132 1.1454264e-07 -0.63299817 0.91859949 1.1744929e-07 -0.66032821 \n\t\t1.0501974 1.4507437e-07 -0.4646883 1.0635633 1.4651695e-07 -0.48145425 0.93310934 \n\t\t1.190947e-07 -0.67639619 0.93345731 1.1910258e-07 -0.67763013 1.0617034 1.4610335e-07 \n\t\t-0.4848423 1.0489933 1.4442251e-07 -0.47720417 0.92370135 1.1786366e-07 -0.67039019 \n\t\t0.88905531 1.1324226e-07 -0.65063614 1.0073713 1.3936283e-07 -0.44024417 0.88690132 \n\t\t1.1322113e-07 -0.64225417 0.99604934 1.3682029e-07 -0.46153221 0.87874335 1.1254843e-07 \n\t\t-0.62643617 0.98253548 1.3494294e-07 -0.45583621 0.95997548 1.3210227e-07 -0.4384422 \n\t\t0.86344945 1.1104309e-07 -0.60334617 0.88404733 1.0906862e-07 -0.74199611 0.86962545 \n\t\t1.0744194e-07 -0.7257902 0.84466332 1.0461628e-07 -0.69801217 0.8124094 1.0095908e-07 \n\t\t-0.6622842 0.77650738 9.6885806e-08 -0.62258029 0.77538151 9.3522665e-08 -0.70828813 \n\t\t0.74032551 8.9614872e-08 -0.66765219 0.80686748 9.7028398e-08 -0.74489611 0.83120936 \n\t\t9.9729142e-08 -0.77345413 0.84522134 1.012699e-07 -0.79026622 0.84572148 1.012961e-07 \n\t\t-0.7916401 0.88468736 1.0912999e-07 -0.74300617 0.84111345 1.0076674e-07 -0.78672022 \n\t\t0.87394732 1.0754164e-07 -0.74106818 0.83002746 1.0003043e-07 -0.76044613 0.84450334 \n\t\t1.0407241e-07 -0.71196419 0.81687546 9.8378379e-08 -0.75019819 0.77294731 8.7692499e-08 \n\t\t-0.85486215 0.83865935 1.0405476e-07 -0.68815619 0.80579948 9.7077297e-08 -0.73914415 \n\t\t0.78910744 9.5506707e-08 -0.71199816 0.82380337 1.0270255e-07 -0.66277021 0.75301737 \n\t\t8.5587821e-08 -0.8286162 0.72958535 8.3070312e-08 -0.79891413 0.70658535 8.0600763e-08 \n\t\t-0.76971811;\n\tsetAttr \".pt[166:331]\" 0.76638544 9.3083926e-08 -0.68270022 0.74064946 9.0235218e-08 \n\t\t-0.65232617 0.68379933 7.815477e-08 -0.74077815 0.80139148 1.0031247e-07 -0.63388211 \n\t\t0.83954936 1.0840231e-07 -0.57501215 0.92560333 1.2781933e-07 -0.41073021 1.0624433 \n\t\t1.5316617e-07 -0.2981002 1.0750533 1.5500591e-07 -0.30105218 1.0791353 1.561251e-07 \n\t\t-0.28793421 1.1380353 1.6440643e-07 -0.31010219 1.1544894 1.6676313e-07 -0.31513229 \n\t\t1.1577774 1.6731991e-07 -0.31383026 0.69201946 7.7241268e-08 -0.79948419 0.71874344 \n\t\t8.0053482e-08 -0.83494419 0.74883533 8.3104275e-08 -0.87798613 0.73812932 8.1756049e-08 \n\t\t-0.86973614 0.72331536 7.9087187e-08 -0.87991017 0.70430934 7.6984641e-08 -0.85744613 \n\t\t0.71892536 7.9624236e-08 -0.84723622 0.69671136 7.7222175e-08 -0.81949216 0.68224937 \n\t\t7.4607733e-08 -0.8296662 0.66287148 7.2594958e-08 -0.80324417 0.67737746 7.5210551e-08 \n\t\t-0.79322213 0.65948343 7.3394148e-08 -0.76768821 1.0855533 1.5750066e-07 -0.27763221 \n\t\t1.0731233 1.5568172e-07 -0.27487019 1.0505033 1.5266752e-07 -0.2618902 0.97478133 \n\t\t1.431338e-07 -0.20348421 1.0048515 1.4571955e-07 -0.25893417 0.88532746 1.2281556e-07 \n\t\t-0.37786022 0.81134546 1.0519363e-07 -0.54405814 0.77519935 9.7403053e-08 -0.60324419 \n\t\t0.63075137 6.8188605e-08 -0.78820616 0.60250139 6.3151063e-08 -0.80621213 0.66389537 \n\t\t7.1648081e-08 -0.83294612 0.67378551 7.3577205e-08 -0.82219416 0.69358134 7.472044e-08 \n\t\t-0.87372214 0.63418943 6.6414984e-08 -0.85015815 0.66243136 6.9297052e-08 -0.89004821 \n\t\t0.70264935 7.6575816e-08 -0.8615362 0.70439333 7.7460875e-08 -0.84499615 0.72368532 \n\t\t7.9435587e-08 -0.8720842 0.72449332 7.8790507e-08 -0.89277822 0.73397934 8.0433082e-08 \n\t\t-0.88804811 0.73657131 7.9948244e-08 -0.91184813 0.73353136 8.0276905e-08 -0.89038414 \n\t\t0.73613733 7.9775845e-08 -0.91467816 0.72425532 7.8405137e-08 -0.90214616 0.70199132 \n\t\t7.5968188e-08 -0.87513214 0.67623335 7.3218104e-08 -0.84201616 0.65386933 7.0907824e-08 \n\t\t-0.8111822 0.64483345 7.0764038e-08 -0.77750212 0.63320148 6.8817293e-08 -0.78149015 \n\t\t0.62020946 6.6536899e-08 -0.78879422 0.64191931 6.873227e-08 -0.8199982 0.61303735 \n\t\t6.354054e-08 -0.83952218 0.66544336 7.1158787e-08 -0.85252815 0.69259936 7.4048288e-08 \n\t\t-0.88770622 0.66095334 6.8545909e-08 -0.90409416 0.71608937 7.6608927e-08 -0.91649014 \n\t\t0.72861135 7.8048288e-08 -0.92983621 0.69488937 7.2299748e-08 -0.94421417 0.72906536 \n\t\t7.8230187e-08 -0.92683417 0.71634531 7.7017461e-08 -0.90657419 0.73372132 8.2323652e-08 \n\t\t-0.8361662 0.70451349 7.9269704e-08 -0.79688221 0.66171348 7.4031611e-08 -0.75982219 \n\t\t0.73830932 8.2071949e-08 -0.86199421 0.76824534 8.5788869e-08 -0.88648611 0.76787531 \n\t\t8.5628216e-08 -0.88926619 0.74843735 8.2957534e-08 -0.88027614 0.75587535 8.4242473e-08 \n\t\t-0.87664813 0.73332536 8.176518e-08 -0.84953016 0.68473148 7.6639225e-08 -0.78538221 \n\t\t0.66396135 7.4536153e-08 -0.75560218 0.68581939 7.8652754e-08 -0.73578817 0.71942937 \n\t\t8.2277296e-08 -0.77802819 0.67179942 7.5823266e-08 -0.75357813 0.74957734 8.551887e-08 \n\t\t-0.81617612 0.75591332 8.4592081e-08 -0.86741012 0.77280337 8.7995005e-08 -0.84613413 \n\t\t0.78595936 8.9356689e-08 -0.8642022 0.78589731 8.9254961e-08 -0.86667818 0.70726532 \n\t\t7.8972263e-08 -0.81631011 0.49803337 4.2044565e-08 -0.93938822 0.46880931 3.9219032e-08 \n\t\t-0.89389819 0.52395934 4.4514476e-08 -0.98073214 0.54328132 4.6272135e-08 -1.0137782 \n\t\t0.68377936 7.1415201e-08 -0.92182416 0.69550735 7.2504456e-08 -0.94128019 0.53792733 \n\t\t4.3940258e-08 -1.0542022 0.53765136 4.4167578e-08 -1.0469462 0.68300933 7.0935371e-08 \n\t\t-0.93152016 0.52609736 4.2861199e-08 -1.0340482 0.50538933 4.0711619e-08 -1.0057762 \n\t\t0.63540137 6.5843452e-08 -0.87055415 0.48123327 3.8257564e-08 -0.97136015 0.45933327 \n\t\t3.6037331e-08 -0.94003421 0.59226733 6.1437561e-08 -0.80974013 0.43856528 3.3934594e-08 \n\t\t-0.91025418 0.48923132 3.6573134e-08 -1.0498623 0.50498533 3.792719e-08 -1.0789303 \n\t\t0.47019932 3.4867082e-08 -1.0166342 0.44460538 3.2456178e-08 -0.97508413 0.41573131 \n\t\t2.9693016e-08 -0.92937213 0.67784548 7.4685268e-08 -0.80928415 0.64141351 7.0186921e-08 \n\t\t-0.77880222 0.64767146 7.1509554e-08 -0.7692582 1.0776694 1.5659417e-07 -0.26923621 \n\t\t1.0897154 1.5929321e-07 -0.24675025 1.1113575 1.611503e-07 -0.2867642 1.1346014 1.6427097e-07 \n\t\t-0.29947424 1.1459334 1.6688894e-07 -0.27620023 1.1573074 1.6837906e-07 -0.28341222 \n\t\t1.1544774 1.6791972e-07 -0.28399828 1.1386973 1.6567274e-07 -0.27882019 1.0668772 \n\t\t1.5453855e-07 -0.27964017 1.0778893 1.571122e-07 -0.25622818 1.0742673 1.5604989e-07 \n\t\t-0.26972821 1.0652993 1.5472823e-07 -0.26798621 1.0469633 1.5232355e-07 -0.25642619 \n\t\t1.0356733 1.4972844e-07 -0.27926019 0.97776932 1.4368096e-07 -0.2011942 1.1226414 \n\t\t1.6375772e-07 -0.26357424 1.0959674 1.6021522e-07 -0.24794823 1.0519714 1.5416182e-07 \n\t\t-0.22783026 1.0555394 1.5475005e-07 -0.22684623 1.1569914 1.683829e-07 -0.28199625 \n\t\t1.1696475 1.7000217e-07 -0.2910642 1.0156893 1.48251e-07 -0.23593222 1.0156173 1.4838535e-07 \n\t\t-0.2320222 1.0423414 1.5191034e-07 -0.24832626 1.0387614 1.5132055e-07 -0.24930221 \n\t\t1.0834374 1.5745729e-07 -0.27000624 1.1194113 1.6229284e-07 -0.28952223 1.1451374 \n\t\t1.6570499e-07 -0.30471224 1.1455973 1.6571046e-07 -0.30647624 1.1425374 1.6522263e-07 \n\t\t-0.30687228 1.1267773 1.6298031e-07 -0.30165216 1.0637152 1.535485e-07 -0.29311022 \n\t\t1.0543633 1.521784e-07 -0.29107419 1.0396253 1.5012846e-07 -0.2849302 1.0045193 1.4581839e-07 \n\t\t-0.25489822 0.96713543 1.4117852e-07 -0.22426416 0.96409935 1.4062512e-07 -0.22652218 \n\t\t1.2094593 2.1492636e-07 0.75087184 1.2683012 2.2018608e-07 0.6477378 1.2198933 2.1319295e-07 \n\t\t0.66093177 1.2578692 2.2190886e-07 0.73738384 1.2741673 2.1822351e-07 0.57061905 \n\t\t1.2257633 2.112168e-07 0.58343178 1.3163253 2.2414218e-07 0.55451721 1.3104553 2.2608204e-07 \n\t\t0.63104182 1.3000213 2.2778561e-07 0.72017974 1.3400933 2.2978205e-07 0.60733384 \n\t\t1.3296553 2.3145054e-07 0.69554579 1.3459873 2.2788439e-07 0.53184336 1.3556672 2.284669e-07 \n\t\t0.50727803 1.3504273 2.3040977e-07 0.58126575 1.3407353 2.3214143e-07 0.66807568 \n\t\t1.3346593 2.2708733e-07 0.55749035 1.3272272 2.2909647e-07 0.64236772 1.3378853 2.2490761e-07 \n\t\t0.48550579 1.3078513 2.1944919e-07 0.46360096 1.3058432 2.2179019e-07 0.53485978 \n\t\t1.3121452 2.3275102e-07 0.80325186;\n\tsetAttr \".pt[332:497]\" 1.2824832 2.2910527e-07 0.82851768 1.2403233 2.2323758e-07 \n\t\t0.84599769 1.1919093 2.162581e-07 0.85958385 1.2650733 2.3019783e-07 0.93021977 1.2228996 \n\t\t2.2433298e-07 0.94783378 1.1744875 2.1735379e-07 0.96141976 1.2947716 2.33834e-07 \n\t\t0.90454578 1.3078213 2.3478624e-07 0.87591577 1.3242813 2.3357616e-07 0.77500176 \n\t\t1.3138753 2.30984e-07 0.74857378 1.2921953 2.2668254e-07 0.72305179 1.3000553 2.326e-07 \n\t\t0.8494277 1.2064675 2.2634568e-07 1.0702018 1.2486535 2.3220706e-07 1.0524437 1.1580553 \n\t\t2.1936647e-07 1.0837878 1.2783896 2.3583323e-07 1.0263438 1.2917693 2.3682436e-07 \n\t\t0.99738777 1.2848933 2.3478189e-07 0.97106576 1.2678854 2.3122199e-07 0.94605976 \n\t\t1.3060353 2.0939997e-07 0.20106979 1.2748393 2.0427434e-07 0.1929376 1.2332072 1.9778491e-07 \n\t\t0.1915146 1.1863552 1.9061328e-07 0.1934464 1.3038353 2.2413116e-07 0.60611773 1.2805552 \n\t\t2.2923398e-07 0.83998787 1.3190212 2.2300976e-07 0.5128814 1.3208532 2.2192823e-07 \n\t\t0.47620255 1.3555511 2.4047347e-07 0.83044177 1.3090112 2.1728923e-07 0.40073159 \n\t\t1.3295612 2.2155128e-07 0.42988959 1.3064892 2.1506864e-07 0.35153159 1.3358412 2.2608384e-07 \n\t\t0.52561057 1.3278612 2.2307484e-07 0.47789958 1.3403552 2.3046231e-07 0.62452781 \n\t\t1.3393931 2.2858865e-07 0.57816982 1.2999253 2.144037e-07 0.36093402 1.2697192 2.0460504e-07 \n\t\t0.22309896 1.2720013 2.0496809e-07 0.22337417 1.2984673 2.1331853e-07 0.33782798 \n\t\t1.3039293 2.1641881e-07 0.39845416 1.3565772 2.3683032e-07 0.72826779 1.3563212 2.4011425e-07 \n\t\t0.81758779 -1.1490828 -1.8184068e-07 -0.11254802 -1.2052788 -1.8574109e-07 0.016123984 \n\t\t-1.2140627 -1.8539653e-07 0.061881997 -1.1372408 -1.8055013e-07 -0.12706801 -1.1241267 \n\t\t-1.7868174e-07 -0.13134399 -1.1872088 -1.8336213e-07 0.0049780034 -1.1604627 -1.7931303e-07 \n\t\t0.0026679949 -1.0985087 -1.7451258e-07 -0.12574002 -1.0621127 -1.6809054e-07 -0.10437202 \n\t\t-1.1248727 -1.7347698e-07 0.01163599 -1.0203288 -1.6054221e-07 -0.075121991 -1.0848588 \n\t\t-1.6674734e-07 0.026237994 -1.2540387 -1.8931834e-07 0.12258399 -1.2542148 -1.8803372e-07 \n\t\t0.15784 -1.2296607 -1.8586852e-07 0.11400799 -1.2770867 -1.9007793e-07 0.1979354 \n\t\t-1.2829627 -1.9202552e-07 0.170008 -1.2620747 -1.8681045e-07 0.2233744 -1.2523907 \n\t\t-1.8631529e-07 0.196445 -1.3261727 -1.9424027e-07 0.29002562 -1.3329167 -1.9611143e-07 \n\t\t0.26775923 -1.3138947 -1.9171857e-07 0.30678183 -1.2392527 -1.8887836e-07 0.072972015 \n\t\t-1.2686588 -1.9171648e-07 0.11888 -1.2197547 -1.86338e-07 0.060229987 -1.2479087 \n\t\t-1.890124e-07 0.10533601 -1.1909727 -1.8206225e-07 0.055551976 -1.2171607 -1.8448583e-07 \n\t\t0.099230021 -1.1525028 -1.7599788e-07 0.058689982 -1.1755847 -1.7809e-07 0.098370001 \n\t\t-1.1091887 -1.690391e-07 0.065737993 -1.1285927 -1.7075914e-07 0.100136 -1.3175547 \n\t\t-1.9563059e-07 0.21685202 -1.3485947 -1.9708024e-07 0.30686465 -1.3349468 -1.9689348e-07 \n\t\t0.25517622 -1.3921088 -1.9951251e-07 0.42229924 -1.3808708 -1.9985455e-07 0.36641234 \n\t\t-1.3136827 -1.9423028e-07 0.23839721 -1.3596989 -1.9730355e-07 0.34700143 -1.3291489 \n\t\t-1.9299823e-07 0.33577204 -1.2826087 -1.8975913e-07 0.22944781 -1.2414668 -1.8345114e-07 \n\t\t0.22803062 -1.2896129 -1.869775e-07 0.33330721 -1.1952888 -1.762244e-07 0.2303804 \n\t\t-1.2455869 -1.8009958e-07 0.33522421 -1.4111089 -1.9881722e-07 0.51993191 -1.3964468 \n\t\t-1.9564217e-07 0.54434109 -1.3785689 -1.9648877e-07 0.44730482 -1.3583448 -1.926831e-07 \n\t\t0.46555123 -1.3746868 -1.9161168e-07 0.56224883 -1.4022329 -1.9942051e-07 0.46683806 \n\t\t-1.4082209 -1.9808449e-07 0.52762485 -1.4155208 -1.9735461e-07 0.57757211 -1.3816389 \n\t\t-1.9692418e-07 0.44835907 -1.3878908 -1.955848e-07 0.5103327 -1.3582948 -1.9136986e-07 \n\t\t0.50063789 -1.3518609 -1.9271302e-07 0.43780667 -1.3139849 -1.8692336e-07 0.43602964 \n\t\t-1.3209409 -1.8563851e-07 0.49946287 -1.2720629 -1.803449e-07 0.43864027 -1.2797109 \n\t\t-1.7914938e-07 0.50254822 -1.3519648 -1.8779988e-07 0.57028091 -1.3785849 -1.9014034e-07 \n\t\t0.61798811 -1.3559269 -1.863683e-07 0.62521803 -1.3294668 -1.8402805e-07 0.57817006 \n\t\t-1.3381288 -1.8923767e-07 0.4741506 -1.3121088 -1.896418e-07 0.35517511 -1.2965627 \n\t\t-1.8737387e-07 0.35153183 -1.2859948 -1.8678624e-07 0.32341442 -1.3002787 -1.8924122e-07 \n\t\t0.31678602 -1.3268688 -1.9226955e-07 0.34588161 -1.4004549 -1.9415721e-07 0.60090411 \n\t\t-1.3405128 -1.9499637e-07 0.32928863 -1.1310726 -1.7619386e-07 -0.035620015 -1.0456126 \n\t\t-1.7009665e-07 -0.22684605 -1.1759146 -1.8361963e-07 -0.048870038 -1.2150526 -1.9018684e-07 \n\t\t-0.062746033 -1.2427866 -1.9503767e-07 -0.077877983 -1.2557646 -1.9756698e-07 -0.091930047 \n\t\t-1.1597207 -1.9012771e-07 -0.29106402 -1.2506387 -1.9717015e-07 -0.10256399 -1.2292347 \n\t\t-1.9410071e-07 -0.109006 -1.1399647 -1.8693284e-07 -0.2872881 -1.0800188 -1.7681711e-07 \n\t\t-0.26450208 -1.1849146 -1.7761128e-07 0.15000199 -1.2328587 -1.8545995e-07 0.13827598 \n\t\t-1.2746125 -1.924048e-07 0.12511998 -1.3039848 -1.9754199e-07 0.109098 -1.3175567 \n\t\t-2.0026464e-07 0.092318013 -1.3119147 -1.9996656e-07 0.076886006 -1.2900867 -1.9704559e-07 \n\t\t0.064691998 -1.2011508 -1.7738826e-07 0.22345778 -1.2495468 -1.8530797e-07 0.21170019 \n\t\t-1.2117968 -1.7648821e-07 0.29188156 -1.2601928 -1.8441226e-07 0.28000718 -1.2182187 \n\t\t-1.7471208e-07 0.36629909 -1.2666167 -1.8264114e-07 0.35429838 -1.2196867 -1.6951601e-07 \n\t\t0.51204562 -1.2680907 -1.7746331e-07 0.49957979 -1.3023447 -1.9144915e-07 0.26603138 \n\t\t-1.3087767 -1.8969843e-07 0.33980799 -1.3102527 -1.8456035e-07 0.48402858 -1.3384547 \n\t\t-1.9501127e-07 0.32033679 -1.3399347 -1.8995759e-07 0.46230599 -1.3320007 -1.9671067e-07 \n\t\t0.247848 -1.3449687 -1.9942783e-07 0.2287056 -1.3493247 -1.9746514e-07 0.29955319 \n\t\t-1.3488448 -1.9220903e-07 0.43881944 -1.3350587 -1.9594525e-07 0.28112501 -1.3286908 \n\t\t-1.898687e-07 0.41797599 -1.3370488 -1.9883061e-07 0.2118488 -1.3135307 -1.957908e-07 \n\t\t0.1958258 -1.3082287 -1.9256338e-07 0.26053461 -1.2940028 -1.8523217e-07 0.3984544 \n\t\t-1.3213267 -1.975404e-07 0.1811976 -1.3350008 -2.0032019e-07 0.163306 -1.2916907 \n\t\t-1.9232608e-07 0.19819559 -1.3292527 -2.0003378e-07 0.14712 -1.3071427 -1.9712607e-07 \n\t\t0.13339798 -1.2546108 -1.8642741e-07 0.20265581 -0.85033262 -1.5371508e-07 -0.59798205 \n\t\t-0.94201249 -1.5937677e-07 -0.36920804 -0.81357861 -1.4658674e-07 -0.55912006 -0.98065257 \n\t\t-1.6669071e-07 -0.40522206;\n\tsetAttr \".pt[498:663]\" -1.0148766 -1.7320502e-07 -0.43809402 -0.88329464 -1.6011403e-07 \n\t\t-0.63299805 -0.90867257 -1.6505447e-07 -0.66032809 -1.0402706 -1.7812056e-07 -0.46468806 \n\t\t-1.0536366 -1.8081084e-07 -0.48145401 -0.92318267 -1.6789566e-07 -0.67639607 -0.92353064 \n\t\t-1.6799538e-07 -0.67763001 -1.0517766 -1.8064935e-07 -0.48484206 -1.0390666 -1.7840013e-07 \n\t\t-0.47720405 -0.91377467 -1.6621767e-07 -0.67039007 -0.87912863 -1.6012623e-07 -0.65063602 \n\t\t-0.99744469 -1.7058997e-07 -0.44024405 -0.87697464 -1.5948135e-07 -0.64225405 -0.98612267 \n\t\t-1.6963163e-07 -0.46153197 -0.86881667 -1.5763152e-07 -0.62643605 -0.97260857 -1.6733037e-07 \n\t\t-0.45583609 -0.95004857 -1.6319528e-07 -0.43844196 -0.85352254 -1.5440783e-07 -0.60334605 \n\t\t-0.87412065 -1.6275136e-07 -0.74199599 -0.87476069 -1.628879e-07 -0.74300605 -0.83579665 \n\t\t-1.5867352e-07 -0.79163998 -0.83529466 -1.5854478e-07 -0.7902661 -0.85969853 -1.5991864e-07 \n\t\t-0.72579008 -0.82128268 -1.5575291e-07 -0.77345401 -0.83473665 -1.5502584e-07 -0.69801205 \n\t\t-0.8024826 -1.4870986e-07 -0.66228408 -0.76658058 -1.4168192e-07 -0.62258005 -0.7654565 \n\t\t-1.4469722e-07 -0.70828801 -0.73039848 -1.377651e-07 -0.66765207 -0.79694057 -1.5092691e-07 \n\t\t-0.74489599 -0.83118856 -1.5777802e-07 -0.7867201 -0.86402065 -1.6115534e-07 -0.74106807 \n\t\t-0.76302063 -1.4977445e-07 -0.85486192 -0.82010055 -1.5508614e-07 -0.76044601 -0.80694854 \n\t\t-1.5267148e-07 -0.75019807 -0.83457667 -1.5552025e-07 -0.71196407 -0.82873267 -1.5373089e-07 \n\t\t-0.68815607 -0.79587257 -1.5054778e-07 -0.73914403 -0.77918053 -1.4695705e-07 -0.71199805 \n\t\t-0.81387854 -1.504898e-07 -0.66277009 -0.74309069 -1.4571663e-07 -0.8286162 -0.71965867 \n\t\t-1.4098876e-07 -0.79891402 -0.69665867 -1.3634653e-07 -0.76971799 -0.75645852 -1.42354e-07 \n\t\t-0.6827001 -0.67387265 -1.3174689e-07 -0.74077803 -0.73072255 -1.3724494e-07 -0.65232605 \n\t\t-0.79146457 -1.4594961e-07 -0.63388199 -0.82962269 -1.4965855e-07 -0.57501203 -0.91567868 \n\t\t-1.5685043e-07 -0.41073009 -1.0525167 -1.7381532e-07 -0.29810008 -1.1445626 -1.8867975e-07 \n\t\t-0.31513205 -1.1352106 -1.8684618e-07 -0.30471206 -1.0324146 -1.6885544e-07 -0.24832608 \n\t\t-0.63774455 -1.2722104e-07 -0.76925808 -0.70881653 -1.4065314e-07 -0.83494395 -0.69446665 \n\t\t-1.3880862e-07 -0.84499592 -0.71375865 -1.4279917e-07 -0.8720842 -0.73890865 -1.4690706e-07 \n\t\t-0.87798589 -0.72405267 -1.4498464e-07 -0.88804787 -0.72360468 -1.450023e-07 -0.8903839 \n\t\t-0.73851264 -1.4693103e-07 -0.88027591 -0.72820264 -1.4494489e-07 -0.8697359 -0.71338868 \n\t\t-1.4303315e-07 -0.87990993 -0.69438463 -1.3925919e-07 -0.8574459 -0.67232269 -1.3481467e-07 \n\t\t-0.8296662 -0.66745055 -1.3270538e-07 -0.79322201 -0.64955652 -1.289888e-07 -0.7676881 \n\t\t-0.63490653 -1.2708902e-07 -0.777502 -1.0756267 -1.7662664e-07 -0.27763209 -1.0631968 \n\t\t-1.7460215e-07 -0.27487007 -1.0057627 -1.6427377e-07 -0.2359321 -0.99492455 -1.6345403e-07 \n\t\t-0.25893405 -0.87540054 -1.4940022e-07 -0.3778601 -0.80141854 -1.4414631e-07 -0.54405802 \n\t\t-0.76527268 -1.4076025e-07 -0.60324407 -0.62082458 -1.2531018e-07 -0.78820604 -0.65396857 \n\t\t-1.320991e-07 -0.83294612 -0.6314885 -1.2660895e-07 -0.7788021 -0.66385847 -1.3322806e-07 \n\t\t-0.82219416 -0.66791856 -1.3337538e-07 -0.80928403 -0.69272268 -1.3915442e-07 -0.86153597 \n\t\t-0.71456665 -1.4369408e-07 -0.89277822 -0.72664464 -1.4627095e-07 -0.91184813 -0.72621065 \n\t\t-1.4630916e-07 -0.91467816 -0.71432865 -1.4400585e-07 -0.90214616 -0.69206464 -1.3955859e-07 \n\t\t-0.87513214 -0.66630667 -1.3434409e-07 -0.84201592 -0.65294456 -1.308356e-07 -0.80324405 \n\t\t-0.64394265 -1.2973923e-07 -0.81118208 -0.62327456 -1.2543906e-07 -0.78149003 -0.61028254 \n\t\t-1.2370222e-07 -0.7887941 -0.63199264 -1.2821974e-07 -0.81999797 -0.58234066 -1.2016166e-07 \n\t\t-0.80974001 -0.65551668 -1.3306706e-07 -0.85252815 -0.62547469 -1.2909317e-07 -0.87055391 \n\t\t-0.68267268 -1.3857441e-07 -0.88770598 -0.65102667 -1.3429158e-07 -0.90409392 -0.70616269 \n\t\t-1.4327709e-07 -0.91649014 -0.67308265 -1.3872202e-07 -0.93151993 -0.71868467 -1.4570962e-07 \n\t\t-0.92983598 -0.71913868 -1.4566811e-07 -0.92683417 -0.70641863 -1.4294768e-07 -0.90657395 \n\t\t-0.67385268 -1.3848029e-07 -0.92182392 -0.68365467 -1.3820591e-07 -0.87372214 -0.68209255 \n\t\t-1.3520209e-07 -0.79948407 -0.69458646 -1.3703689e-07 -0.79688209 -0.65178657 -1.2904088e-07 \n\t\t-0.75982207 -0.66187263 -1.3036791e-07 -0.75357801 -0.72838265 -1.4468465e-07 -0.86199397 \n\t\t-0.74594867 -1.4794568e-07 -0.87664789 -0.72340065 -1.4345063e-07 -0.84952992 -0.70899868 \n\t\t-1.4113868e-07 -0.84723622 -0.69733864 -1.3818527e-07 -0.81630987 -0.68678468 -1.36672e-07 \n\t\t-0.81949216 -0.67480457 -1.3355063e-07 -0.78538209 -0.67589259 -1.3187351e-07 -0.73578805 \n\t\t-0.70950258 -1.3864145e-07 -0.77802807 -0.73965067 -1.4472189e-07 -0.81617588 -0.72379464 \n\t\t-1.430143e-07 -0.8361662 -0.74598664 -1.4760782e-07 -0.86740988 -0.76287669 -1.4942744e-07 \n\t\t-0.84613389 -0.77603269 -1.5213369e-07 -0.86420196 -0.75831866 -1.502242e-07 -0.88648611 \n\t\t-0.75794864 -1.5027042e-07 -0.88926595 -0.77597064 -1.5221623e-07 -0.86667794 -0.65403652 \n\t\t-1.2923172e-07 -0.75560206 -0.48810664 -1.1041672e-07 -0.93938798 -0.5925746 -1.216126e-07 \n\t\t-0.80621201 -0.45888269 -1.0420595e-07 -0.89389795 -0.62426263 -1.2814687e-07 -0.85015792 \n\t\t-0.65250468 -1.3399745e-07 -0.89004797 -0.51403266 -1.1596335e-07 -0.9807319 -0.53335464 \n\t\t-1.201802e-07 -1.013778 -0.68558067 -1.4101742e-07 -0.94128019 -0.52800065 -1.2085658e-07 \n\t\t-1.0542022 -0.52772468 -1.2054393e-07 -1.0469462 -0.68496269 -1.4103105e-07 -0.94421417 \n\t\t-0.51617068 -1.1827773e-07 -1.0340482 -0.49546266 -1.140242e-07 -1.0057759 -0.47130671 \n\t\t-1.0900902e-07 -0.97135991 -0.44940671 -1.0445761e-07 -0.94003421 -0.60311067 -1.2448095e-07 \n\t\t-0.83952218 -0.42863873 -1.001387e-07 -0.91025394 -0.4793067 -1.1316682e-07 -1.0498623 \n\t\t-0.49505869 -1.1668373e-07 -1.0789303 -0.4602727 -1.0898771e-07 -1.016634 -0.43467864 \n\t\t-1.0348474e-07 -0.97508413 -0.40580469 -9.7319827e-08 -0.92937213 -1.0420446 -1.6958165e-07 \n\t\t-0.22783008 -1.0288346 -1.6833827e-07 -0.24930203 -1.1360066 -1.8590835e-07 -0.27620006 \n\t\t-1.1326106 -1.8652457e-07 -0.3068721 -1.1168507 -1.8389379e-07 -0.30165204 -1.0537887 \n\t\t-1.7382631e-07 -0.2931101 -1.0056907 -1.6411715e-07 -0.23202208 -0.95720851 -1.5633296e-07 \n\t\t-0.22426404 -1.0797886 -1.7612101e-07 -0.24675007 -1.1215127 -1.8332565e-07 -0.26701206 \n\t\t-1.0860406 -1.7713218e-07 -0.24794808 -1.1127146 -1.8183752e-07 -0.26357406 -1.1470646 \n\t\t-1.8783362e-07 -0.28199607 -1.1473806 -1.8793516e-07 -0.28341204 -1.1565006 -1.8967862e-07 \n\t\t-0.29237404 -1.1445506 -1.8751943e-07 -0.2839981 -1.1287707 -1.8488711e-07 -0.27882007 \n\t\t-1.0679628 -1.7464535e-07 -0.25622806;\n\tsetAttr \".pt[664:829]\" -1.0643407 -1.7458768e-07 -0.26972809 -1.0553727 -1.7313637e-07 \n\t\t-0.26798609 -1.0405767 -1.7062203e-07 -0.26189008 -1.0370368 -1.6987143e-07 -0.25642607 \n\t\t-0.96485466 -1.5674188e-07 -0.20348409 -0.96784264 -1.5711862e-07 -0.20119406 -1.0677426 \n\t\t-1.7509532e-07 -0.26923603 -1.0735106 -1.7601575e-07 -0.27000606 -1.1014307 -1.8095584e-07 \n\t\t-0.28676403 -1.1094846 -1.8230362e-07 -0.28952205 -1.1246746 -1.8502236e-07 -0.29947406 \n\t\t-1.1356705 -1.8698293e-07 -0.30647606 -1.1478506 -1.8913964e-07 -0.31383002 -1.1281087 \n\t\t-1.8594874e-07 -0.31010208 -1.0569507 -1.7381396e-07 -0.27964005 -1.0692087 -1.7601772e-07 \n\t\t-0.28793409 -1.0651268 -1.7587473e-07 -0.30105206 -1.0444367 -1.7230469e-07 -0.29107407 \n\t\t-1.0257467 -1.6897556e-07 -0.27926007 -1.0296987 -1.6979753e-07 -0.28493008 -0.99459255 \n\t\t-1.6325254e-07 -0.2548981 -0.95417267 -1.5594762e-07 -0.22652204 -1.1995327 -1.575137e-07 \n\t\t0.75087208 -1.2583747 -1.7044839e-07 0.64773804 -1.2479427 -1.6549996e-07 0.73738396 \n\t\t-1.2099668 -1.624734e-07 0.660932 -1.2642407 -1.7422479e-07 0.57061923 -1.2158368 \n\t\t-1.662646e-07 0.58343202 -1.3063987 -1.8134172e-07 0.55451745 -1.3005288 -1.7758683e-07 \n\t\t0.631042 -1.2900947 -1.7265697e-07 0.72017998 -1.3301667 -1.8305111e-07 0.60733408 \n\t\t-1.3197287 -1.781551e-07 0.69554603 -1.3360608 -1.8677126e-07 0.5318436 -1.3457407 \n\t\t-1.8918186e-07 0.50727826 -1.3405007 -1.8561875e-07 0.58126599 -1.3308088 -1.8089025e-07 \n\t\t0.66807592 -1.3247328 -1.8406561e-07 0.55749059 -1.3173007 -1.797584e-07 0.64236796 \n\t\t-1.3279587 -1.872428e-07 0.48550603 -1.2979248 -1.8341449e-07 0.4636012 -1.3022187 \n\t\t-1.7144038e-07 0.8032521 -1.2725567 -1.6591439e-07 0.82851791 -1.2303967 -1.5874589e-07 \n\t\t0.84599793 -1.1819828 -1.5075537e-07 0.85958397 -1.2551467 -1.5943854e-07 0.93022001 \n\t\t-1.2129725 -1.5226284e-07 0.94783401 -1.1645604 -1.4427262e-07 0.96141988 -1.2848445 \n\t\t-1.6498524e-07 0.90454602 -1.2978947 -1.6806814e-07 0.875916 -1.3143548 -1.7436781e-07 \n\t\t0.775002 -1.3039488 -1.7374235e-07 0.74857402 -1.2822688 -1.7134018e-07 0.72305202 \n\t\t-1.2706287 -1.6518953e-07 0.83998811 -1.2901287 -1.6785307e-07 0.84942794 -1.1965405 \n\t\t-1.4516922e-07 1.070202 -1.2387265 -1.5235211e-07 1.052444 -1.1481287 -1.3717906e-07 \n\t\t1.083788 -1.2684625 -1.5792057e-07 1.0263441 -1.2818427 -1.6106662e-07 0.99738801 \n\t\t-1.2749667 -1.6098298e-07 0.971066 -1.2579587 -1.5928389e-07 0.94606 -1.2961087 -1.9290218e-07 \n\t\t0.20107003 -1.2649127 -1.8838173e-07 0.19293781 -1.2232807 -1.819982e-07 0.1915148 \n\t\t-1.1764287 -1.7468281e-07 0.19344661 -1.2939087 -1.7749073e-07 0.60611796 -1.3081747 \n\t\t-1.8166992e-07 0.55307662 -1.2943147 -1.7208606e-07 0.75305802 -1.3090947 -1.8330775e-07 \n\t\t0.51288164 -1.2959167 -1.8045259e-07 0.53486001 -1.3109267 -1.8495575e-07 0.47620279 \n\t\t-1.3414308 -1.7995283e-07 0.73740411 -1.3456248 -1.7713943e-07 0.83044201 -1.2990847 \n\t\t-1.859331e-07 0.40073183 -1.3147507 -1.8666493e-07 0.44615659 -1.3259149 -1.8543457e-07 \n\t\t0.5256108 -1.3179349 -1.8597609e-07 0.47789982 -1.3328749 -1.8271857e-07 0.62752402 \n\t\t-1.2899988 -1.860092e-07 0.36093426 -1.2649747 -1.8650837e-07 0.2435426 -1.2597927 \n\t\t-1.8646789e-07 0.22309922 -1.2885407 -1.8664353e-07 0.33782819 -1.2393167 -1.8542174e-07 \n\t\t0.166136 -1.3466508 -1.8109982e-07 0.72826803 -1.3463949 -1.7773677e-07 0.81758803 \n\t\t0.45504555 8.9395655e-08 0.51180857 0.40563545 8.0396234e-08 0.47524685 0.31311545 \n\t\t6.3544888e-08 0.40678501 0.42745948 8.4371202e-08 0.49139583 0.31311542 6.3544867e-08 \n\t\t0.40678465 0.42745942 8.4371194e-08 0.49139583 0.30438542 6.1954843e-08 0.40032566 \n\t\t0.30438545 6.195485e-08 0.40032563 0.30438542 6.1954843e-08 0.40032566 0.33493945 \n\t\t6.7519842e-08 0.42293382 0.29040346 5.9408219e-08 0.38997978 0.29040343 5.9408215e-08 \n\t\t0.38997978 0.42582145 8.2502019e-08 0.44796684 0.35512546 6.9625635e-08 0.39565384 \n\t\t0.33493942 6.7519828e-08 0.42293343 0.40563545 8.0396248e-08 0.47524717 0.42582145 \n\t\t8.2502041e-08 0.44796723 0.35512543 6.9625614e-08 0.39565343 -0.44511846 -4.9773394e-08 \n\t\t0.51180869 -0.41753256 -4.6268049e-08 0.4913955 -0.30318853 -3.1738235e-08 0.40678507 \n\t\t-0.30318856 -3.1738256e-08 0.40678471 -0.30318856 -3.1738256e-08 0.40678471 -0.29445854 \n\t\t-3.062889e-08 0.40032569 -0.29445857 -3.0628893e-08 0.40032572 -0.28047654 -2.885217e-08 \n\t\t0.38997984 -0.34519857 -3.8647354e-08 0.39565349 -0.41589454 -4.763071e-08 0.44796729 \n\t\t-0.34519854 -3.8647332e-08 0.3956539 -0.32501256 -3.4511459e-08 0.42293349 -0.32501253 \n\t\t-3.4511441e-08 0.42293388 -0.39570853 -4.3494818e-08 0.47524729 -0.39570853 -4.3494836e-08 \n\t\t0.47524691 -0.41589454 -4.7630728e-08 0.4479669 0.45120725 2.2871774e-08 -1.2601002 \n\t\t0.48296529 2.8024814e-08 -1.2535663 0.48634526 2.8533981e-08 -1.2539263 0.45331928 \n\t\t2.3247635e-08 -1.2587743 0.41763929 1.7503201e-08 -1.2649062 0.42499727 1.8718019e-08 \n\t\t-1.2628303 0.38969129 1.3075686e-08 -1.2677722 0.37073126 1.0123031e-08 -1.2683462 \n\t\t0.36305127 9.0020515e-09 -1.2665622 0.36757329 9.8473301e-09 -1.2626343 0.38375127 \n\t\t1.2556811e-08 -1.2570362 0.51035935 3.2473256e-08 -1.2478362 0.51881534 3.3806707e-08 \n\t\t-1.2471342 0.54470336 3.8054456e-08 -1.2405403 0.56088334 4.0764245e-08 -1.2349422 \n\t\t0.56540334 4.1609209e-08 -1.2310143 0.56307733 4.1293582e-08 -1.2298322 0.54954934 \n\t\t3.9225018e-08 -1.2292162 0.53876334 3.7535578e-08 -1.2298043 0.51081532 3.3108133e-08 \n\t\t-1.2326683 0.4772473 2.7739404e-08 -1.2374783 0.44564328 2.2577284e-08 -1.2448962 \n\t\t0.44210932 2.2077277e-08 -1.2436502 0.40963927 1.6804554e-08 -1.2504423 0.39640927 \n\t\t1.4545269e-08 -1.2561902 0.4769533 2.8095432e-08 -1.2266883 0.51403934 3.4026815e-08 \n\t\t-1.2213743 0.54491931 3.8918717e-08 -1.2182102 0.56935531 4.2485421e-08 -1.2238863 \n\t\t0.48700324 2.8972968e-08 -1.2448622 0.44818124 2.2717165e-08 -1.2516822 0.41109324 \n\t\t1.6785553e-08 -1.2569942 0.38021329 1.1893656e-08 -1.2601582 0.37365329 1.1320823e-08 \n\t\t-1.2482963 0.43162724 2.1804556e-08 -1.2074262 0.49133724 3.1426286e-08 -1.1969362 \n\t\t0.37458524 1.2681634e-08 -1.2155962 0.35863525 1.1289243e-08 -1.1867442 0.42312726 \n\t\t2.1603784e-08 -1.1775042 0.49063924 3.2482632e-08 -1.1656462 0.32709324 5.1580429e-09 \n\t\t-1.2204642 0.32997724 6.7367036e-09 -1.1900202 0.30493724 2.7825156e-09 -1.1922482 \n\t\t0.32093528 3.3872523e-09 -1.2424682 0.35926726 8.6316509e-09 -1.2607942 0.29487729 \n\t\t1.4100654e-10 -1.2214402;\n\tsetAttr \".pt[830:995]\" 0.52287936 3.4798848e-08 -1.2373562 0.54651332 4.0386194e-08 \n\t\t-1.1853942 0.55147934 3.949155e-08 -1.2300723 0.59050137 4.7603741e-08 -1.1741922 \n\t\t0.61799532 5.2208424e-08 -1.1646782 0.57435131 4.3419313e-08 -1.2195462 0.62567931 \n\t\t5.3644804e-08 -1.1580023 0.57178134 4.3070578e-08 -1.2182403 0.62172335 5.3107918e-08 \n\t\t-1.1559942 0.61262733 5.1739736e-08 -1.1549702 0.55683535 4.0785096e-08 -1.2175622 \n\t\t0.59873736 4.959303e-08 -1.1549503 0.58041131 4.6722615e-08 -1.1559483 0.53291732 \n\t\t3.9198795e-08 -1.1608142 0.47587731 3.0076102e-08 -1.1689862 0.43812931 2.183932e-08 \n\t\t-1.2335082 0.41616732 2.0454445e-08 -1.1794742 0.40225527 1.6013837e-08 -1.2410122 \n\t\t0.3609913 1.1494543e-08 -1.1910162 0.33721331 7.6050135e-09 -1.1967502 0.31700131 \n\t\t4.2766226e-09 -1.2022202 0.4056493 2.0077486e-08 -1.1459023 0.3432633 9.9467812e-09 \n\t\t-1.1589522 0.31637931 5.549218e-09 -1.1654342 0.47315931 3.0956109e-08 -1.1340423 \n\t\t0.53765333 4.1270962e-08 -1.1248022 0.59135133 4.9777615e-08 -1.1193002 0.3281453 \n\t\t8.93567e-09 -1.1233102 0.29897732 4.1644515e-09 -1.1303443 0.39582932 1.99267e-08 \n\t\t-1.1091522 0.3863613 1.9889413e-08 -1.0708143 0.46907532 3.1729563e-08 -1.0962862 \n\t\t0.46430531 3.2449339e-08 -1.0571222 0.53904533 4.2920195e-08 -1.0862622 0.59730536 \n\t\t5.214957e-08 -1.0802922 0.60076535 5.4179917e-08 -1.0401022 0.61207134 5.3022987e-08 \n\t\t-1.1181722 0.61805332 5.3947453e-08 -1.1181822 0.62777531 5.5449988e-08 -1.1181962 \n\t\t0.63360733 5.6327231e-08 -1.1188523 0.61978531 5.5670608e-08 -1.0790682 0.61454332 \n\t\t5.3871315e-08 -1.1056442 0.63806134 5.6997237e-08 -1.1193522 0.64253336 5.760409e-08 \n\t\t-1.1216242 0.63384533 5.5980031e-08 -1.1291722 0.60275936 5.0773796e-08 -1.1399282 \n\t\t0.55302536 4.2613429e-08 -1.1525942 0.64340931 5.8878921e-08 -1.0910022 0.65283531 \n\t\t6.0640886e-08 -1.0828142 0.60968333 5.3230593e-08 -1.1026702 0.55572325 4.4376755e-08 \n\t\t-1.1164142 0.55651528 4.5908372e-08 -1.0785422 0.48803926 3.3385724e-08 -1.1305722 \n\t\t0.41479325 2.1582787e-08 -1.1434402 0.34482324 1.0392157e-08 -1.1534642 0.33207926 \n\t\t9.7425703e-09 -1.1179702 0.48448724 3.4211876e-08 -1.0936102 0.31373125 5.4529692e-09 \n\t\t-1.1570182 0.29899326 4.4866146e-09 -1.1217523 0.64542335 5.9212329e-08 -1.0904102 \n\t\t0.64101332 5.7885323e-08 -1.1077502 0.40635726 2.2501323e-08 -1.0837022 0.47873324 \n\t\t3.3371997e-08 -1.0922742 0.40992925 2.228491e-08 -1.1043602 0.34062725 1.1988838e-08 \n\t\t-1.0931182 0.31499326 7.1328583e-09 -1.1171142 0.54231334 4.3696684e-08 -1.0789722 \n\t\t0.59300333 5.2013934e-08 -1.0660622 0.58942932 5.2230035e-08 -1.0454042 0.62468535 \n\t\t5.7319912e-08 -1.0551022 0.62111133 5.7536088e-08 -1.0344422 0.63353932 5.8974983e-08 \n\t\t-1.0474102 0.58137536 5.0998409e-08 -1.0450402 0.52307534 4.2544904e-08 -1.0299922 \n\t\t0.39211529 2.0729217e-08 -1.0721523 0.32853332 1.0404309e-08 -1.0854522 0.3249613 \n\t\t1.0620719e-08 -1.0647942 0.27784532 2.0873694e-09 -1.0983622 0.25930929 -9.9477859e-10 \n\t\t-1.1041782 0.25573727 -7.7844409e-10 -1.0835222 0.38791731 2.3211157e-08 -0.98800617 \n\t\t0.46954924 3.4964081e-08 -1.0113262 0.45134324 3.4863213e-08 -0.9383902 0.39277926 \n\t\t2.2593255e-08 -1.0248142 0.54049128 4.6484196e-08 -0.99648613 0.51372731 4.499363e-08 \n\t\t-0.92534012 0.59704733 5.5763937e-08 -0.98208219 0.56346333 5.315437e-08 -0.91267222 \n\t\t0.63239735 6.1684261e-08 -0.96985215 0.59454936 5.8360548e-08 -0.90191811 0.64227736 \n\t\t6.3531154e-08 -0.96126813 0.60323733 5.9984593e-08 -0.89437014 0.63719136 6.2840911e-08 \n\t\t-0.95868617 0.59876531 5.9377744e-08 -0.89209813 0.60763735 5.8321749e-08 -0.95734221 \n\t\t0.57277536 5.5403493e-08 -0.8909182 0.58407336 5.4630885e-08 -0.95862621 0.55205333 \n\t\t5.215789e-08 -0.89204413 0.52301133 4.4957591e-08 -0.96488422 0.4983573 4.3651461e-08 \n\t\t-0.89754814 0.44967136 3.3228091e-08 -0.97538811 0.43386337 3.3336701e-08 -0.90678614 \n\t\t0.37290132 2.0857254e-08 -0.98887616 0.36635336 2.245808e-08 -0.91864616 0.30195937 \n\t\t9.3371577e-09 -1.0037162 0.3039673 1.2327366e-08 -0.93169612 0.24540332 5.7408855e-11 \n\t\t-1.0181202 0.25423133 4.1666239e-09 -0.94436413 0.2247193 -3.3819147e-09 -1.0246103 \n\t\t0.23604329 1.1422878e-09 -0.95007211 0.28141534 1.0863482e-08 -0.87733418 0.26770929 \n\t\t8.5843954e-09 -0.8816362 0.31889534 1.7013241e-08 -0.86778814 0.36590731 2.4647388e-08 \n\t\t-0.8579542 0.41678336 3.2845609e-08 -0.84901613 0.46538529 4.0618716e-08 -0.84205419 \n\t\t0.50585133 4.7029197e-08 -0.83790821 0.52146733 4.9475126e-08 -0.83705813 0.54105133 \n\t\t5.2469776e-08 -0.83794814 0.54442132 5.292716e-08 -0.8396582 0.53787535 5.1703484e-08 \n\t\t-0.84534615 0.51444936 4.7780112e-08 -0.85345215 0.47696924 4.163034e-08 -0.86299819 \n\t\t0.44082531 3.4486273e-08 -0.90481812 0.35078129 7.3930595e-09 -1.2588222 0.30965927 \n\t\t1.7413517e-09 -1.2398502 0.35577729 8.3269462e-09 -1.2544823 0.31629729 2.9821607e-09 \n\t\t-1.2340842 0.34004727 6.9597892e-09 -1.2258662 0.44815528 2.397497e-08 -1.2177702 \n\t\t0.47328126 2.8023788e-08 -1.2133563 0.42415327 2.0136236e-08 -1.2212082 0.40141729 \n\t\t1.4982488e-08 -1.2652482 0.40416726 1.6970114e-08 -1.2232562 0.39061129 1.4858975e-08 \n\t\t-1.2236682 0.37894326 1.154594e-08 -1.2642262 0.38542327 1.249174e-08 -1.2657322 \n\t\t0.38511929 1.4057369e-08 -1.2223922 0.38835329 1.4661916e-08 -1.2195822 0.39992127 \n\t\t1.6599282e-08 -1.2155802 0.38275728 1.2258914e-08 -1.2609122 0.41824928 1.8128777e-08 \n\t\t-1.2506282 0.44164929 2.340677e-08 -1.2060082 0.46677527 2.7455586e-08 -1.2015942 \n\t\t0.47528929 2.7354458e-08 -1.2396883 0.49077728 3.129432e-08 -1.1981562 0.50360924 \n\t\t3.1883761e-08 -1.2356322 0.53628933 3.7044661e-08 -1.2327182 0.52718931 3.5619305e-08 \n\t\t-1.2332143 0.51847535 3.5668386e-08 -1.1956882 0.54770136 3.8789658e-08 -1.2332382 \n\t\t0.52814734 3.7147341e-08 -1.1961282 0.54966533 3.9056161e-08 -1.2342362 0.52657735 \n\t\t3.6768654e-08 -1.1997823 0.54585135 3.8343195e-08 -1.2375503 0.51500934 3.4831285e-08 \n\t\t-1.2037842 0.53219932 3.6056832e-08 -1.2422723 0.45746529 2.5715281e-08 -1.2096822 \n\t\t0.49649927 3.1794073e-08 -1.2085003 0.52981132 3.737312e-08 -1.1969743 0.51076335 \n\t\t3.4460452e-08 -1.1961082 0.41843128 1.9636484e-08 -1.2108642 0.32850724 9.9590558e-09 \n\t\t-1.0973102 0.32336524 1.0270517e-08 -1.0675743 0.64625734 6.1557714e-08 -1.0308422 \n\t\t0.65628731 6.343263e-08 -1.0221282;\n\tsetAttr \".pt[996:1161]\" 0.65112334 6.2731893e-08 -1.0195042 0.38278931 2.0105826e-08 \n\t\t-1.0501562 0.3107613 8.4093408e-09 -1.0652242 0.23233931 -4.504443e-09 -1.0864402 \n\t\t0.34419924 1.1772424e-08 -1.1137762 0.40654126 2.1651644e-08 -1.1073022 0.61393732 \n\t\t5.5330187e-08 -1.0639182 0.64982933 6.1341375e-08 -1.0514982 0.65985936 6.321622e-08 \n\t\t-1.0427862 0.65469533 6.2515483e-08 -1.0401622 0.52664936 4.2328878e-08 -1.0506482 \n\t\t0.53876734 4.4358348e-08 -1.0464562 0.46091932 3.1816384e-08 -1.0600642 0.31433332 \n\t\t8.1929308e-09 -1.0858822 0.28329331 3.1155438e-09 -1.0933663 0.3011353 5.9226615e-09 \n\t\t-1.0920582 0.48091525 3.4428286e-08 -1.0729523 0.47516125 3.358841e-08 -1.0716162 \n\t\t0.40296924 2.1867979e-08 -1.0866462 0.29542124 4.7030246e-09 -1.1010942 0.31142125 \n\t\t7.3492683e-09 -1.0964562 0.28590125 3.3193048e-09 -1.0987263 0.26651126 1.3779577e-10 \n\t\t-1.1036643 0.53874135 4.3913101e-08 -1.0583142 0.55294329 4.6124786e-08 -1.0578842 \n\t\t0.61036533 5.55466e-08 -1.0432602 0.62996536 5.9191091e-08 -1.0267522 0.62540936 \n\t\t5.8572891e-08 -1.0244362 0.62111735 5.8143524e-08 -1.0181422 0.59892136 5.4522463e-08 \n\t\t-1.0232342 0.57780135 5.121451e-08 -1.0243822 0.59719336 5.4396331e-08 -1.0194442 \n\t\t0.53519535 4.4574762e-08 -1.0257982 0.45734531 3.2032411e-08 -1.0394082 0.46073329 \n\t\t3.2665749e-08 -1.0364642 0.38854131 2.0945324e-08 -1.0514942 0.27427331 2.3037794e-09 \n\t\t-1.0777042 0.25333735 -1.0128546e-09 -1.0798502 0.63491333 5.6646723e-08 -1.1156923 \n\t\t0.60781932 5.248177e-08 -1.1150502 0.61876333 5.4177182e-08 -1.1149582 0.61612934 \n\t\t5.4130137e-08 -1.1052783 0.61779535 5.4987584e-08 -1.0891563 0.60240936 5.2624031e-08 \n\t\t-1.0887482 0.60242534 5.2804062e-08 -1.0839763 0.62468934 5.792711e-08 -1.0388002 \n\t\t0.60249335 5.4306049e-08 -1.0438923 0.64034134 5.783248e-08 -1.1063782 0.64798331 \n\t\t5.9982504e-08 -1.0803483 0.62898135 5.8356477e-08 -1.0450943 0.62931532 5.6965082e-08 \n\t\t-1.0838763 0.60372937 5.2217889e-08 -1.1051482 0.62929136 5.6750704e-08 -1.0895382 \n\t\t0.62783933 5.5912192e-08 -1.1060402 0.62364936 5.4904156e-08 -1.1157222 -0.47303873 \n\t\t-1.1977733e-07 -1.253566 -0.44128075 -1.1511054e-07 -1.2601002 -0.47641876 -1.2031329e-07 \n\t\t-1.253926 -0.44339272 -1.1538771e-07 -1.258774 -0.40771273 -1.1009961e-07 -1.2649059 \n\t\t-0.41507071 -1.1115993e-07 -1.26283 -0.37976474 -1.0588537e-07 -1.267772 -0.39149073 \n\t\t-1.0760435e-07 -1.2652482 -0.36080471 -1.0297543e-07 -1.2683462 -0.35312471 -1.0172169e-07 \n\t\t-1.266562 -0.35764673 -1.0227465e-07 -1.262634 -0.50888866 -1.2508055e-07 -1.247134 \n\t\t-0.53477669 -1.2883758e-07 -1.24054 -0.55095667 -1.3113078e-07 -1.234942 -0.55547863 \n\t\t-1.3168375e-07 -1.231014 -0.53777468 -1.2902939e-07 -1.233238 -0.55315065 -1.3127985e-07 \n\t\t-1.2298319 -0.53962266 -1.2916544e-07 -1.2292162 -0.52883667 -1.2751975e-07 -1.229804 \n\t\t-0.50088865 -1.2330545e-07 -1.2326683 -0.46732068 -1.1829468e-07 -1.237478 -0.43571672 \n\t\t-1.1368459e-07 -1.2448959 -0.4321827 -1.1309185e-07 -1.24365 -0.39971271 -1.0832458e-07 \n\t\t-1.250442 -0.37382671 -1.0456785e-07 -1.257036 -0.36372674 -1.0268115e-07 -1.248296 \n\t\t-0.42820269 -1.1209917e-07 -1.2335082 -0.50411266 -1.2338366e-07 -1.221374 -0.53499264 \n\t\t-1.280401e-07 -1.21821 -0.56185466 -1.321942e-07 -1.21824 -0.55942863 -1.320292e-07 \n\t\t-1.223886 -0.47707674 -1.2007776e-07 -1.2448622 -0.40116674 -1.0879317e-07 -1.256994 \n\t\t-0.34085473 -9.9536706e-08 -1.258822 -0.34585074 -1.0014762e-07 -1.254482 -0.42170075 \n\t\t-1.1012346e-07 -1.2074262 -0.43825474 -1.1432948e-07 -1.2516822 -0.48141074 -1.1896455e-07 \n\t\t-1.1969362 -0.36465874 -1.0160851e-07 -1.215596 -0.34870875 -9.8069037e-08 -1.186744 \n\t\t-0.41320276 -1.0769627e-07 -1.1775042 -0.48071274 -1.1769237e-07 -1.1656462 -0.31716675 \n\t\t-9.4447188e-08 -1.220464 -0.37028873 -1.0413704e-07 -1.2601582 -0.32005075 -9.3760292e-08 \n\t\t-1.1900202 -0.29501075 -8.9971905e-08 -1.1922482 -0.28495073 -8.9502791e-08 -1.2214402 \n\t\t-0.31100872 -9.431389e-08 -1.2424682 -0.34934071 -1.0092204e-07 -1.2607939 -0.51295269 \n\t\t-1.2534504e-07 -1.2373559 -0.53658664 -1.270655e-07 -1.1853942 -0.54155266 -1.2949567e-07 \n\t\t-1.230072 -0.58057469 -1.3344942e-07 -1.174192 -0.60806865 -1.3734611e-07 -1.1646782 \n\t\t-0.56442666 -1.3264044e-07 -1.2195462 -0.61575264 -1.3828567e-07 -1.1580023 -0.61179864 \n\t\t-1.3759964e-07 -1.1559939 -0.60270065 -1.3615495e-07 -1.1549699 -0.54690868 -1.2985825e-07 \n\t\t-1.217562 -0.58881068 -1.3400678e-07 -1.1549503 -0.57048464 -1.3121063e-07 -1.1559483 \n\t\t-0.52299064 -1.2404891e-07 -1.1608142 -0.46702668 -1.1784775e-07 -1.2266883 -0.4659507 \n\t\t-1.1553438e-07 -1.1689862 -0.4062407 -1.0669321e-07 -1.1794742 -0.39232871 -1.0683211e-07 \n\t\t-1.2410122 -0.35106468 -9.8592231e-08 -1.191016 -0.32728669 -9.5129408e-08 -1.1967499 \n\t\t-0.30707669 -9.2208396e-08 -1.20222 -0.39572269 -1.0381792e-07 -1.1459023 -0.33333668 \n\t\t-9.4658347e-08 -1.158952 -0.30645269 -9.0743171e-08 -1.1654342 -0.4632327 -1.1381394e-07 \n\t\t-1.134042 -0.52772665 -1.2344117e-07 -1.1248022 -0.58142465 -1.3153837e-07 -1.1193002 \n\t\t-0.31821868 -9.099486e-08 -1.1233102 -0.2890507 -8.6747093e-08 -1.1303443 -0.3859027 \n\t\t-1.0093228e-07 -1.1091522 -0.37643468 -9.804198e-08 -1.0708143 -0.3044067 -8.7466809e-08 \n\t\t-1.0858819 -0.45914871 -1.1177769e-07 -1.0962862 -0.52911866 -1.2222233e-07 -1.086262 \n\t\t-0.52884066 -1.2069823e-07 -1.0464562 -0.58737868 -1.3100744e-07 -1.080292 -0.59083867 \n\t\t-1.3004696e-07 -1.040102 -0.61476266 -1.3369726e-07 -1.0388 -0.60985863 -1.3443739e-07 \n\t\t-1.0790679 -0.60786867 -1.3450511e-07 -1.0891563 -0.60461664 -1.3461582e-07 -1.105644 \n\t\t-0.60620266 -1.3484741e-07 -1.105278 -0.60883665 -1.3561481e-07 -1.1149582 -0.60812664 \n\t\t-1.35625e-07 -1.1181819 -0.61784863 -1.3712858e-07 -1.118196 -0.62368065 -1.3805466e-07 \n\t\t-1.1188523 -0.60214669 -1.347001e-07 -1.1181719 -0.62813467 -1.3876186e-07 -1.1193522 \n\t\t-0.63260669 -1.3953779e-07 -1.121624 -0.62391865 -1.3847544e-07 -1.1291722 -0.59283268 \n\t\t-1.3406965e-07 -1.1399282 -0.54309869 -1.2685186e-07 -1.1525942 -0.63348264 -1.3853381e-07 \n\t\t-1.091002 -0.64290863 -1.3968645e-07 -1.082814 -0.64993268 -1.3928302e-07 -1.0427862 \n\t\t-0.59975666 -1.3375379e-07 -1.10267 -0.54579669 -1.2592275e-07 -1.1164142 -0.47811276 \n\t\t-1.1598535e-07 -1.1305722 -0.40486676 -1.0514001e-07 -1.14344 -0.33489674 -9.4695345e-08 \n\t\t-1.1534642 -0.47456074 -1.1406088e-07 -1.0936102 -0.30380476 -9.0020627e-08 -1.1570179 \n\t\t-0.28906676 -8.6429871e-08 -1.121752;\n\tsetAttr \".pt[1162:1327]\" -0.63549668 -1.3882317e-07 -1.09041 -0.63108665 -1.3878655e-07 \n\t\t-1.1077499 -0.64476866 -1.3838699e-07 -1.0401622 -0.39643076 -1.01613e-07 -1.0837022 \n\t\t-0.46523476 -1.1180067e-07 -1.0716159 -0.33427274 -9.3122125e-08 -1.113776 -0.53238666 \n\t\t-1.2245636e-07 -1.0789722 -0.58307666 -1.2981286e-07 -1.066062 -0.57950467 -1.2849196e-07 \n\t\t-1.045404 -0.61475867 -1.3430322e-07 -1.0551022 -0.61118466 -1.3298192e-07 -1.0344419 \n\t\t-0.62361264 -1.3538587e-07 -1.04741 -0.61905468 -1.3459501e-07 -1.045094 -0.61548269 \n\t\t-1.3327411e-07 -1.024436 -0.57144868 -1.2723292e-07 -1.0450402 -0.51672268 -1.1898072e-07 \n\t\t-1.050648 -0.51314867 -1.1765959e-07 -1.0299922 -0.4509927 -1.0916897e-07 -1.0600642 \n\t\t-0.3186067 -8.96462e-08 -1.0854522 -0.31503469 -8.8325294e-08 -1.0647942 -0.29120868 \n\t\t-8.5656147e-08 -1.0920579 -0.26791871 -8.2289986e-08 -1.098362 -0.26434669 -8.0969073e-08 \n\t\t-1.077704 -0.24938272 -7.964065e-08 -1.104178 -0.2458107 -7.8319822e-08 -1.0835222 \n\t\t-0.37799069 -9.5201365e-08 -0.98800617 -0.45962274 -1.0868973e-07 -1.0113262 -0.38285276 \n\t\t-9.7322641e-08 -1.0248142 -0.44141674 -1.0316114e-07 -0.93838996 -0.53056473 -1.1910546e-07 \n\t\t-0.99648589 -0.50380075 -1.1232038e-07 -0.92533988 -0.58712065 -1.273133e-07 -0.98208219 \n\t\t-0.55353665 -1.1953841e-07 -0.91267198 -0.62247068 -1.3232348e-07 -0.96985191 -0.58462268 \n\t\t-1.2394429e-07 -0.90191787 -0.63235068 -1.3353157e-07 -0.96126789 -0.59331065 -1.2500664e-07 \n\t\t-0.89437014 -0.62726468 -1.3264919e-07 -0.95868617 -0.58883864 -1.242307e-07 -0.89209789 \n\t\t-0.59771067 -1.2803001e-07 -0.95734221 -0.56284869 -1.2016864e-07 -0.89091796 -0.57414669 \n\t\t-1.2443469e-07 -0.95862597 -0.54212666 -1.1700683e-07 -0.89204413 -0.51308465 -1.152271e-07 \n\t\t-0.96488398 -0.48843068 -1.0891001e-07 -0.8975479 -0.43974668 -1.0427959e-07 -0.97538811 \n\t\t-0.42393664 -9.9282694e-08 -0.90678591 -0.3629747 -9.2912202e-08 -0.98887616 -0.35642663 \n\t\t-8.9286672e-08 -0.91864616 -0.29203263 -8.2496435e-08 -1.003716 -0.29404068 -8.0127116e-08 \n\t\t-0.93169588 -0.23547667 -7.4288614e-08 -1.0181202 -0.2443047 -7.2909096e-08 -0.94436413 \n\t\t-0.21479271 -7.1332266e-08 -1.02461 -0.2261167 -7.0309547e-08 -0.95007211 -0.27148867 \n\t\t-7.4617752e-08 -0.87733418 -0.25778273 -7.2658828e-08 -0.8816362 -0.30896866 -8.0057113e-08 \n\t\t-0.86778814 -0.35598069 -8.6959453e-08 -0.85795397 -0.40685663 -9.4492506e-08 -0.84901589 \n\t\t-0.45545873 -1.0174755e-07 -0.84205419 -0.49592465 -1.0784947e-07 -0.83790797 -0.51154065 \n\t\t-1.1023215e-07 -0.83705813 -0.53112465 -1.1329304e-07 -0.83794814 -0.53449464 -1.1387768e-07 \n\t\t-0.83965796 -0.52794868 -1.1307728e-07 -0.84534591 -0.50452268 -1.0975715e-07 -0.85345191 \n\t\t-0.46704274 -1.0431778e-07 -0.86299795 -0.4308987 -1.0028584e-07 -0.90481812 -0.29973271 \n\t\t-9.2473151e-08 -1.2398502 -0.30637074 -9.3284875e-08 -1.2340842 -0.33012071 -9.6650936e-08 \n\t\t-1.2258662 -0.46335471 -1.1678397e-07 -1.213356 -0.41422671 -1.0948075e-07 -1.2212082 \n\t\t-0.38068473 -1.0438656e-07 -1.2236682 -0.37549672 -1.0514962e-07 -1.2657322 -0.37283072 \n\t\t-1.0455808e-07 -1.2609119 -0.37519273 -1.0349e-07 -1.2223922 -0.36901671 -1.0409173e-07 \n\t\t-1.264226 -0.37842673 -1.0388543e-07 -1.2195822 -0.40832272 -1.0966264e-07 -1.250628 \n\t\t-0.38648272 -1.0649305e-07 -1.2561902 -0.43172273 -1.1162012e-07 -1.206008 -0.49368271 \n\t\t-1.2230166e-07 -1.2356319 -0.46536273 -1.1807421e-07 -1.2396883 -0.51726264 -1.2585726e-07 \n\t\t-1.2332143 -0.50083667 -1.2193706e-07 -1.1961082 -0.52636266 -1.272457e-07 -1.232718 \n\t\t-0.51822066 -1.2462544e-07 -1.1961282 -0.50854868 -1.2311374e-07 -1.195688 -0.53973866 \n\t\t-1.2937016e-07 -1.234236 -0.51988465 -1.2491418e-07 -1.196974 -0.52227265 -1.2696887e-07 \n\t\t-1.2422723 -0.50508267 -1.2287913e-07 -1.203784 -0.53592467 -1.2890382e-07 -1.23755 \n\t\t-0.50043267 -1.2379934e-07 -1.2478362 -0.48657271 -1.2019289e-07 -1.2085003 -0.44753873 \n\t\t-1.1420205e-07 -1.209682 -0.43822873 -1.1306364e-07 -1.2177702 -0.51665264 -1.2451899e-07 \n\t\t-1.1997823 -0.48085073 -1.1892336e-07 -1.1981562 -0.45684871 -1.1534048e-07 -1.2015942 \n\t\t-0.40850472 -1.0821122e-07 -1.2108642 -0.38999471 -1.0552497e-07 -1.21558 -0.39424273 \n\t\t-1.0646735e-07 -1.2232562 -0.39304274 -1.0119874e-07 -1.0866462 -0.31343874 -8.8181984e-08 \n\t\t-1.067574 -0.28549474 -8.5108965e-08 -1.101094 -0.60043865 -1.3164868e-07 -1.0432602 \n\t\t-0.64636064 -1.379621e-07 -1.0221282 -0.64119667 -1.370661e-07 -1.0195042 -0.24341069 \n\t\t-7.7812132e-08 -1.07985 -0.40000275 -1.029339e-07 -1.1043602 -0.32215276 -9.1404381e-08 \n\t\t-1.11797 -0.39661476 -1.0251956e-07 -1.107302 -0.46880674 -1.1312157e-07 -1.092274 \n\t\t-0.54658872 -1.2463603e-07 -1.078542 -0.60401064 -1.3296957e-07 -1.0639182 -0.63990265 \n\t\t-1.3805648e-07 -1.0514979 -0.30506676 -8.8730971e-08 -1.1171142 -0.45438069 -1.0958328e-07 \n\t\t-1.057122 -0.38218868 -9.898136e-08 -1.0721523 -0.27336669 -8.2946379e-08 -1.0933663 \n\t\t-0.47098875 -1.1273998e-07 -1.072952 -0.31858075 -9.0083404e-08 -1.0973102 -0.33070076 \n\t\t-9.1801219e-08 -1.093118 -0.30149475 -8.7410065e-08 -1.0964562 -0.27597475 -8.3549025e-08 \n\t\t-1.098726 -0.25658476 -8.0734999e-08 -1.1036643 -0.52881467 -1.2113544e-07 -1.0583142 \n\t\t-0.54301673 -1.2331513e-07 -1.057884 -0.63633066 -1.3673566e-07 -1.0308422 -0.62003869 \n\t\t-1.3406466e-07 -1.026752 -0.61119068 -1.3237636e-07 -1.018142 -0.58899468 -1.2913424e-07 \n\t\t-1.0232342 -0.56787467 -1.2591171e-07 -1.0243822 -0.58726668 -1.2872604e-07 -1.019444 \n\t\t-0.52527064 -1.1937763e-07 -1.0257982 -0.44741869 -1.0784781e-07 -1.039408 -0.45080668 \n\t\t-1.0826206e-07 -1.036464 -0.37861469 -9.7660148e-08 -1.0514942 -0.3728627 -9.6721081e-08 \n\t\t-1.0501562 -0.30083469 -8.6145903e-08 -1.0652239 -0.22241266 -7.4810963e-08 -1.0864402 \n\t\t-0.59789264 -1.3392625e-07 -1.1150502 -0.61372268 -1.3639864e-07 -1.1157219 -0.62498665 \n\t\t-1.3813899e-07 -1.1156923 -0.59380269 -1.3292549e-07 -1.1051482 -0.59248269 -1.3211118e-07 \n\t\t-1.088748 -0.59249866 -1.3193609e-07 -1.083976 -0.59256667 -1.3045513e-07 -1.0438923 \n\t\t-0.63041466 -1.3863162e-07 -1.1063782 -0.61938864 -1.3608968e-07 -1.0838763 -0.63805664 \n\t\t-1.3884456e-07 -1.080348 -0.61936468 -1.3629665e-07 -1.0895382 -0.61791468 -1.3668648e-07 \n\t\t-1.10604 0.23541935 1.2164742e-07 2.291146 0.22873336 1.2110429e-07 2.3043299 0.23879136 \n\t\t1.2240308e-07 2.2974439 0.22461535 1.2025228e-07 2.298542 0.21963936 1.1975735e-07 \n\t\t2.3059161 0.22410336 1.2064382e-07 2.311192 0.26739737 1.2619655e-07 2.2805357 0.22128135 \n\t\t1.2024137e-07 2.3121018 0.22929934 1.2163332e-07 2.316196 0.24531136 1.2432555e-07 \n\t\t2.3220201;\n\tsetAttr \".pt[1328:1493]\" 0.24242534 1.2371297e-07 2.317548 0.25873935 1.2617616e-07 \n\t\t2.3159621 0.26049533 1.2661813e-07 2.320544 0.27624533 1.2890513e-07 2.316566 0.27566335 \n\t\t1.2863372e-07 2.3116899 0.29071733 1.3072537e-07 2.3053536 0.30031332 1.3215053e-07 \n\t\t2.3037839 0.30152133 1.3212045e-07 2.297956 0.30649734 1.3261538e-07 2.2905817 0.30494335 \n\t\t1.3261096e-07 2.2969201 0.30341533 1.3216048e-07 2.291162 0.30485535 1.3213135e-07 \n\t\t2.2843957 0.29683733 1.3073941e-07 2.280302 0.29595333 1.3086513e-07 2.287354 0.28371134 \n\t\t1.2865976e-07 2.27895 0.27858335 1.2709786e-07 2.25828 0.26223534 1.2462955e-07 2.2598701 \n\t\t0.24527936 1.2216741e-07 2.2641521 0.25047341 1.23739e-07 2.2848077 0.29173735 1.2918197e-07 \n\t\t2.2596359 0.29977134 1.3057668e-07 2.2637377 0.30141532 1.3106146e-07 2.2699356 0.29643133 \n\t\t1.3056589e-07 2.2773256 0.28560334 1.2916765e-07 2.2847381 0.27051935 1.2707186e-07 \n\t\t2.2910876 0.25356334 1.2460964e-07 2.2953677 0.23721534 1.2214134e-07 2.296958 0.22406134 \n\t\t1.2005731e-07 2.295604 0.21602733 1.1866258e-07 2.291502 0.21438335 1.1817771e-07 \n\t\t2.2853017 0.21936736 1.1867328e-07 2.2779117 0.23019536 1.2007155e-07 2.2704997 0.23434536 \n\t\t1.2215999e-07 2.3093839 0.22563136 1.2109436e-07 2.316952 0.23548536 1.2249623e-07 \n\t\t2.313684 0.25280139 1.2434971e-07 2.291548 0.26753134 1.2663439e-07 2.2917457 0.26855138 \n\t\t1.2663671e-07 2.28757 0.28373533 1.2892929e-07 2.2860937 0.29356134 1.3075861e-07 \n\t\t2.29443 0.28373733 1.2978168e-07 2.3089941 0.29025733 1.3085199e-07 2.310668 0.25017935 \n\t\t1.2490878e-07 2.3174677 0.23309337 1.2238972e-07 2.32076 0.23507935 1.2188485e-07 \n\t\t2.2989397 0.23609936 1.2218551e-07 2.3027821 0.23599535 1.2224035e-07 2.304688 0.23816936 \n\t\t1.2219216e-07 2.2943597 0.23914336 1.2255352e-07 2.300024 0.24487935 1.230587e-07 \n\t\t2.289768 0.26620334 1.263133e-07 2.2886341 0.24107733 1.230497e-07 2.3053236 0.24922934 \n\t\t1.2434131e-07 2.306164 0.26072934 1.2630076e-07 2.3110421 0.25936133 1.2587114e-07 \n\t\t2.3051801 0.27143332 1.278551e-07 2.3083401 0.26986933 1.2739697e-07 2.302526 0.27921933 \n\t\t1.2869613e-07 2.2985916 0.28989935 1.3006758e-07 2.291074 0.28799933 1.2956924e-07 \n\t\t2.2855759 0.28301933 1.2870474e-07 2.2830338 0.27486733 1.2741314e-07 2.2821937 0.23703335 \n\t\t1.2254647e-07 2.3086019 0.23780136 1.2250365e-07 2.30426 0.24531135 1.2347347e-07 \n\t\t2.2991199 0.24597736 1.2343594e-07 2.2953439 0.25577134 1.2492676e-07 2.2947159 0.24105734 \n\t\t1.2346351e-07 2.3165278 0.24210533 1.234269e-07 2.3111897 0.25040933 1.247426e-07 \n\t\t2.3120461 0.26151535 1.2662038e-07 2.316366 0.27327535 1.2832801e-07 2.313396 0.28095534 \n\t\t1.291781e-07 2.304332 0.28779134 1.3006093e-07 2.299654 0.29124534 1.307512e-07 2.303854 \n\t\t0.29470333 1.3109509e-07 2.298728 0.29093733 1.3037368e-07 2.2949877 0.28798935 1.2979133e-07 \n\t\t2.2915859 0.28482735 1.2918713e-07 2.288486 0.27652335 1.2787143e-07 2.2876296 0.27886733 \n\t\t1.2834597e-07 2.2906437 0.25549933 1.2475894e-07 2.2913361 0.26473534 1.2588332e-07 \n\t\t2.2831779 0.25422734 1.2435748e-07 2.2858319 0.28901735 1.298696e-07 2.289418 0.28592935 \n\t\t1.2956259e-07 2.293998 1.0482652 2.1124154e-07 1.32161 0.95145524 2.0225457e-07 1.482332 \n\t\t1.0828111 2.1389704e-07 1.2494378 1.0782589 2.1182016e-07 1.2125359 1.044825 2.0919221e-07 \n\t\t1.280828 0.95079124 2.0055343e-07 1.4393721 0.84700924 1.9070571e-07 1.6059297 0.84334916 \n\t\t1.8872696e-07 1.5679578 0.95003116 1.9962515e-07 1.417582 0.80824715 1.839681e-07 \n\t\t1.585912 0.79843724 1.8490945e-07 1.6519721 1.0742311 2.106127e-07 1.19682 1.1001309 \n\t\t2.1364509e-07 1.170702 1.135101 2.1684356e-07 1.1113598 1.1045752 2.1539442e-07 1.19925 \n\t\t1.1037152 2.1601882e-07 1.219604 1.1352332 2.1734645e-07 1.124326 1.1373892 2.1727972e-07 \n\t\t1.113574 0.93212521 1.998268e-07 1.4974018 0.8514632 1.9301936e-07 1.6496037 0.96544725 \n\t\t2.0564427e-07 1.5152941 0.80995321 1.863035e-07 1.641588 0.8152892 1.8850696e-07 \n\t\t1.6786361 1.0279632 2.08644e-07 1.3361558 1.0637832 2.1479981e-07 1.352762 1.0617671 \n\t\t2.1111097e-07 1.2619998 1.0986371 2.1744809e-07 1.2791158 1.119723 2.187639e-07 1.226866 \n\t\t1.0829592 2.1233761e-07 1.206912 1.1191329 2.1365112e-07 1.0919099 1.1542132 2.2019512e-07 \n\t\t1.1220219 1.1568031 2.1976986e-07 1.0998318 1.1219529 2.1317796e-07 1.067476 1.1085209 \n\t\t2.104433e-07 1.0497918 1.0946772 2.0856571e-07 1.0568519 1.0437951 2.0298866e-07 \n\t\t1.1183839 1.019545 2.0068653e-07 1.157274 1.0357429 2.0671595e-07 1.2520138 0.98595124 \n\t\t1.9795318e-07 1.223398 0.89426517 1.8953605e-07 1.378144 0.77736115 1.7664665e-07 \n\t\t1.517478 0.82911515 1.8569709e-07 1.5456718 0.73836714 1.7238655e-07 1.5650078 0.78333116 \n\t\t1.8088285e-07 1.6065217 0.72906315 1.7158854e-07 1.5822197 0.72112519 1.714411e-07 \n\t\t1.6112398 0.73594123 1.7610965e-07 1.675148 0.75114924 1.7867006e-07 1.6807698 0.76642925 \n\t\t1.8088603e-07 1.676836 0.77641916 1.8068135e-07 1.6298261 0.78865123 1.8443453e-07 \n\t\t1.6798698 0.79072315 1.825094e-07 1.6195217 0.79723316 1.8291971e-07 1.6034998 0.8050372 \n\t\t1.8595617e-07 1.6526798 0.80030119 1.8636196e-07 1.683264 0.82087123 1.881883e-07 \n\t\t1.646878 0.79309314 1.8172568e-07 1.5886117 0.84101516 1.8766123e-07 1.5490137 0.94275314 \n\t\t1.9818299e-07 1.4090641 1.0421791 2.0805474e-07 1.2612518 1.0689889 2.094143e-07 \n\t\t1.186394 1.0910091 2.1149579e-07 1.15084 1.0948249 2.1251988e-07 1.162508 1.1337069 \n\t\t2.1618526e-07 1.0994599 1.1308692 2.1638115e-07 1.1165159 1.1453412 2.1760867e-07 \n\t\t1.0893738 1.0833352 2.1476636e-07 1.2706238 1.0490592 2.1215341e-07 1.342818 0.95135725 \n\t\t2.0302706e-07 1.5035 0.84833521 1.9161872e-07 1.624958 0.57042146 1.6683454e-07 2.1136179 \n\t\t0.57003343 1.6851969e-07 2.1605196 0.58890545 1.7017774e-07 2.1266661 0.55014348 \n\t\t1.6505298e-07 2.1499939 0.54627734 1.6549942e-07 2.178056 0.56643546 1.6893526e-07 \n\t\t2.1866379 0.55943549 1.6810361e-07 2.193372 0.58769137 1.7248421e-07 2.1936979 0.62657732 \n\t\t1.7794864e-07 2.1789837 0.67039937 1.8369683e-07 2.151386;\n\tsetAttr \".pt[1494:1659]\" 0.68195748 1.8587177e-07 2.161814 0.71223545 1.8882064e-07 \n\t\t2.1152596 0.74595547 1.9256936e-07 2.0758996 0.77115136 1.9578778e-07 2.0577059 0.76623344 \n\t\t1.94351e-07 2.039526 0.77009732 1.9390421e-07 2.0114636 0.76250333 1.9294858e-07 \n\t\t2.017334 0.75693935 1.9130005e-07 1.9961478 0.72868532 1.8691966e-07 1.99582 0.73620546 \n\t\t1.8887151e-07 2.01703 0.70001334 1.837856e-07 2.030724 0.68979943 1.8145523e-07 2.010534 \n\t\t0.64597732 1.757072e-07 2.038136 0.65922731 1.7843573e-07 2.056412 0.64170349 1.7193862e-07 \n\t\t1.954612 0.59778345 1.6617759e-07 1.9822718 0.55585533 1.6104252e-07 2.0184779 0.60414147 \n\t\t1.7058333e-07 2.07426 0.68067533 1.7741515e-07 1.9398661 0.70899135 1.8180512e-07 \n\t\t1.9401938 0.72217935 1.844152e-07 1.955544 0.71830547 1.8486273e-07 1.9836677 0.69798332 \n\t\t1.8307726e-07 2.0201221 0.66418743 1.7932e-07 2.0595679 0.62225932 1.7418492e-07 \n\t\t2.0957737 0.57833946 1.6842394e-07 2.1234341 0.53936744 1.6294744e-07 2.1381817 0.51105136 \n\t\t1.5855746e-07 2.1378536 0.49786335 1.5594739e-07 2.122504 0.50173742 1.5549981e-07 \n\t\t2.094378 0.52205944 1.5728527e-07 2.057924 0.62028944 1.7366672e-07 2.0900316 0.57868147 \n\t\t1.7135899e-07 2.2008939 0.60196948 1.7409417e-07 2.17764 0.59551144 1.7197411e-07 \n\t\t2.147496 0.60960132 1.7321189e-07 2.1222177 0.63303536 1.7581723e-07 2.0948677 0.66210544 \n\t\t1.7937749e-07 2.0697637 0.69255948 1.8337215e-07 2.0505838 0.71958148 1.8716945e-07 \n\t\t2.04036 0.77474934 1.9537222e-07 2.0315876 0.73158348 1.9109559e-07 2.0960081 0.75227934 \n\t\t1.9412975e-07 2.0915599 0.70814943 1.8849026e-07 2.123358 0.72089535 1.9064076e-07 \n\t\t2.1281939 0.67907935 1.8492999e-07 2.1484621 0.64862531 1.8093532e-07 2.1676416 0.64117146 \n\t\t1.8052189e-07 2.1875019 0.60497934 1.7543606e-07 2.2011976 0.57999945 1.6916405e-07 \n\t\t2.1364279 0.58816946 1.7078111e-07 2.1459401 0.59079331 1.7138903e-07 2.151376 0.58239931 \n\t\t1.6888669e-07 2.1190019 0.59499145 1.6999293e-07 2.0964117 0.60606533 1.7223353e-07 \n\t\t2.110616 0.60571533 1.7350129e-07 2.146142 0.62986535 1.7689504e-07 2.137006 0.68305945 \n\t\t1.8364656e-07 2.0974317 0.72992736 1.896392e-07 2.0637479 0.73237145 1.893566e-07 \n\t\t2.0459976 0.72404736 1.877092e-07 2.03631 0.71082133 1.8518635e-07 2.0234621 0.70617545 \n\t\t1.8493839e-07 2.0361021 0.69327545 1.8246615e-07 2.0232596 0.64191133 1.7550276e-07 \n\t\t2.049536 0.62739533 1.7460489e-07 2.0857201 0.61593133 1.7232088e-07 2.07197 0.59911531 \n\t\t1.7303611e-07 2.1610637 0.59282535 1.722844e-07 2.166996 0.59323734 1.7110635e-07 \n\t\t2.1336236 0.62160331 1.7713805e-07 2.177866 0.61698931 1.7580717e-07 2.1612697 0.64158732 \n\t\t1.7926386e-07 2.1519637 0.66930747 1.8289994e-07 2.134506 0.69576943 1.8614077e-07 \n\t\t2.111654 0.71709943 1.8851212e-07 2.0867577 0.74567336 1.9233339e-07 2.07073 0.74835944 \n\t\t1.9202309e-07 2.05123 0.73921531 1.9021333e-07 2.040586 0.68157744 1.8148177e-07 \n\t\t2.0454097 0.65385747 1.7784573e-07 2.0628676 0.71899134 1.8680339e-07 2.032974 0.66912746 \n\t\t1.7907271e-07 2.0323958 0.65707946 1.804647e-07 2.1198659 0.70399934 1.859745e-07 \n\t\t2.0729899 0.71659148 1.8708076e-07 2.0504 1.8487294 3.2666568e-07 1.0977137 1.7968391 \n\t\t3.2149902e-07 1.1744637 1.8255334 3.2617228e-07 1.1808338 1.8208991 3.2202732e-07 \n\t\t1.0886917 1.7937934 3.2163584e-07 1.1907958 1.8226573 3.2626227e-07 1.1952018 1.7936354 \n\t\t3.2201638e-07 1.2016797 1.8223692 3.2655691e-07 1.2043178 1.8554354 3.2702124e-07 \n\t\t1.0794058 1.8279994 3.2242278e-07 1.0698178 1.8586012 3.2732748e-07 1.0744817 1.8314651 \n\t\t3.2276742e-07 1.0646799 1.7952914 3.223775e-07 1.2045038 1.8237492 3.2685324e-07 \n\t\t1.2065477 1.8255712 3.2716275e-07 1.2072958 1.8607354 3.2761585e-07 1.0733638 1.8339274 \n\t\t3.2310984e-07 1.0636518 1.8877832 3.322744e-07 1.0861797 1.8609214 3.2775935e-07 \n\t\t1.0764477 1.8895454 3.3266153e-07 1.0892618 1.8629831 3.282058e-07 1.0798798 1.8912271 \n\t\t3.3320038e-07 1.0967557 1.8648474 3.2879274e-07 1.0879078 1.8928891 3.3424817e-07 \n\t\t1.1180098 1.8666571 3.298949e-07 1.1100098 1.8939354 3.3765818e-07 1.2053077 1.8676333 \n\t\t3.3339188e-07 1.1999358 1.8930933 3.3809437e-07 1.2205298 1.8664134 3.3382963e-07 \n\t\t1.2167697 1.8911091 3.3811338e-07 1.2292857 1.8639994 3.3383193e-07 1.2268617 1.8891991 \n\t\t3.3785605e-07 1.2303058 1.8615074 3.3350136e-07 1.2283318 1.8871315 3.3750499e-07 \n\t\t1.2294618 1.8590934 3.3309561e-07 1.2274578 1.7974794 3.2274517e-07 1.2052938 1.8938694 \n\t\t3.3450902e-07 1.1209478 1.8942331 3.3818418e-07 1.2182078 1.8929474 3.3823099e-07 \n\t\t1.2248077 1.8913132 3.3800811e-07 1.2256078 1.8277614 3.2733146e-07 1.2027297 1.8906971 \n\t\t3.3301581e-07 1.0939977 1.8892092 3.3268805e-07 1.0913718 1.8603512 3.2778348e-07 \n\t\t1.0794659 1.8254714 3.2666347e-07 1.1942918 1.8249013 3.2680603e-07 1.2004918 1.8508894 \n\t\t3.2713368e-07 1.1013157 1.8278772 3.2660654e-07 1.1827657 1.8621632 3.280303e-07 \n\t\t1.0785698 1.8573914 3.2749065e-07 1.0838938 1.8893231 3.3767355e-07 1.2248857 1.8949171 \n\t\t3.3783397e-07 1.2059538 1.8922611 3.3351094e-07 1.1008058 1.8260192 3.2703875e-07 \n\t\t1.2021017 1.504869 2.5636155e-07 0.63701779 1.575219 2.5629492e-07 0.34291884 1.4967511 \n\t\t2.5641356e-07 0.67214578 1.5053791 2.589517e-07 0.70450997 1.448779 2.5201354e-07 \n\t\t0.75321984 1.4491271 2.5230378e-07 0.75957376 1.2415873 2.4561371e-07 1.4421138 1.2517933 \n\t\t2.4893208e-07 1.4888898 1.393965 2.558003e-07 1.0827459 1.490211 2.6153228e-07 0.8368879 \n\t\t1.482331 2.5901198e-07 0.80189592 1.1381353 2.3643193e-07 1.6251978 1.5118971 2.5914946e-07 \n\t\t0.68274182 1.3797013 2.5191315e-07 1.0375439 1.468619 2.5567874e-07 0.76928782 1.228533 \n\t\t2.4133803e-07 1.381444 1.015223 2.2382574e-07 1.7971078 1.0071629 2.1989972e-07 1.7250841 \n\t\t0.78472936 1.972421e-07 2.040374 0.57423919 1.6762561e-07 2.1190157 0.56874132 1.6982376e-07 \n\t\t2.2009358 0.79002541 2.0010253e-07 2.0952439 1.0241151 2.2712076e-07 1.848716 0.58048725 \n\t\t1.7347233e-07 2.2501879 0.5309692 1.6497847e-07 2.2276616 1.4597471 2.356898e-07 \n\t\t0.26893964;\n\tsetAttr \".pt[1660:1825]\" 1.454561 2.3477662e-07 0.26594624 1.4884191 2.4073856e-07 \n\t\t0.28549364 1.563213 2.5390901e-07 0.32868245 1.547441 2.5087735e-07 0.31273904 1.489269 \n\t\t2.5279715e-07 0.60604185 1.435627 2.3110498e-07 0.24594085 1.365985 2.323994e-07 \n\t\t0.57009482 1.430073 2.3012358e-07 0.24264245 1.327239 2.3163875e-07 0.71064383 1.238261 \n\t\t2.2785544e-07 0.97867382 1.093585 2.177151e-07 1.3072838 1.1070312 2.2860213e-07 \n\t\t1.544008 0.99809325 2.091284e-07 1.4732858 0.98824924 2.1639786e-07 1.709558 0.88651919 \n\t\t1.9767327e-07 1.62902 0.6875332 1.7486659e-07 1.8428777 0.43484715 1.4206424e-07 \n\t\t2.011224 0.41108915 1.391744e-07 2.032274 0.39658317 1.3750747e-07 2.0477476 0.38870123 \n\t\t1.3682478e-07 2.06215 0.51575935 1.5970103e-07 2.1490259 0.38097724 1.3879253e-07 \n\t\t2.1471276 0.52122331 1.6448149e-07 2.2547998 0.40503728 1.4411491e-07 2.1901979 0.53171527 \n\t\t1.6611601e-07 2.2551336 0.41631728 1.4588601e-07 2.190928 0.45734128 1.5165568e-07 \n\t\t2.175534 0.5595594 1.6998058e-07 2.2433019 0.71828127 1.8560829e-07 2.0038056 0.78035539 \n\t\t1.9815305e-07 2.08303 0.92806929 2.0965211e-07 1.7783138 1.0427192 2.2130897e-07 \n\t\t1.6152201 1.2360793 2.4627059e-07 1.4826537 1.1387693 2.296572e-07 1.44049 1.2802793 \n\t\t2.3858325e-07 1.0923998 1.366191 2.4119981e-07 0.80575389 1.4045011 2.4146706e-07 \n\t\t0.6537559 1.514153 2.5902338e-07 0.66997981 1.472743 2.3836415e-07 0.28681502 1.4776671 \n\t\t2.3922664e-07 0.28953502 1.359699 2.4853512e-07 1.0298679 1.3581513 2.4821159e-07 \n\t\t1.0276039 1.2077333 2.3766819e-07 1.36924 1.1089753 2.2899602e-07 1.5465158 0.99025923 \n\t\t2.1680736e-07 1.7122117 0.7690832 1.914035e-07 1.9484698 0.76728123 1.9101046e-07 \n\t\t1.945394 0.55081332 1.6346561e-07 2.1045499 0.53750521 1.6189944e-07 2.117754 0.52366322 \n\t\t1.6036012e-07 2.133898 0.52033323 1.604881e-07 2.1511741 0.50871933 1.6124014e-07 \n\t\t2.2196417 0.5261333 1.6517697e-07 2.2530899 0.56399727 1.7058795e-07 2.2411857 1.009757 \n\t\t2.244947e-07 1.8377978 1.0109593 2.2473898e-07 1.8393677 1.1336633 2.3728359e-07 \n\t\t1.6666678 1.234967 2.460452e-07 1.4812177 1.3854151 2.5588218e-07 1.120472 1.4722331 \n\t\t2.5850434e-07 0.83020991 1.474087 2.5871782e-07 0.82824391 1.4823611 2.5310513e-07 \n\t\t0.64302188 1.498353 2.5603208e-07 0.65523785 1.209553 2.3803889e-07 1.3716418 1.1270772 \n\t\t2.3221271e-07 1.5577518 0.78239924 1.9407148e-07 1.964844 0.55541521 1.642766e-07 \n\t\t2.107224 0.54267931 1.6277247e-07 2.1197181 0.56322336 1.6632453e-07 2.1298199 0.54913121 \n\t\t1.6474844e-07 2.1460156 0.52858734 1.6119692e-07 2.1359277 0.54083335 1.6403368e-07 \n\t\t2.161284 0.51075733 1.6154638e-07 2.219404 0.54485542 1.6834966e-07 2.260566 0.55560529 \n\t\t1.7002168e-07 2.2608356 0.53706342 1.6687031e-07 2.2531838 0.77927142 1.9791713e-07 \n\t\t2.0811939 1.148231 2.3982531e-07 1.674448 1.1324953 2.3704771e-07 1.6651818 1.3844153 \n\t\t2.5567746e-07 1.1191239 1.4025832 2.5868061e-07 1.1243459 1.5202551 2.6159316e-07 \n\t\t0.7136898 1.521929 2.4965556e-07 0.38590637 1.534559 2.4886376e-07 0.31214765 1.543287 \n\t\t2.505904e-07 0.32228684 1.5306591 2.5138255e-07 0.39604604 1.487615 2.4385281e-07 \n\t\t0.3725315 1.4757911 2.415307e-07 0.35925278 1.5002431 2.4306067e-07 0.29877225 1.473081 \n\t\t2.3781703e-07 0.27070704 1.460453 2.386092e-07 0.34446666 1.523501 2.4673233e-07 \n\t\t0.30081126 1.5108731 2.4752447e-07 0.37457022 -0.21880664 5.1912775e-08 2.3043299 \n\t\t-0.22549264 5.0388536e-08 2.291146 -0.22886464 5.0101548e-08 2.2974439 -0.21468864 \n\t\t5.2334073e-08 2.298542 -0.20971264 5.3377764e-08 2.3059161 -0.24287465 4.7716163e-08 \n\t\t2.291548 -0.25747064 4.5049809e-08 2.2805357 -0.21135464 5.3354068e-08 2.3121018 \n\t\t-0.21937266 5.2266788e-08 2.316196 -0.23538461 5.000798e-08 2.3220201 -0.23250066 \n\t\t5.0287454e-08 2.317548 -0.24881467 4.770623e-08 2.3159621 -0.25056866 4.7605543e-08 \n\t\t2.320544 -0.26631865 4.5022514e-08 2.316566 -0.26573667 4.4931056e-08 2.3116899 -0.28079066 \n\t\t4.2367883e-08 2.3053536 -0.29038665 4.0825896e-08 2.3037839 -0.29159465 4.0422286e-08 \n\t\t2.297956 -0.29657066 3.9378588e-08 2.2905817 -0.29348865 3.9876671e-08 2.291162 -0.29492867 \n\t\t3.940227e-08 2.2843957 -0.28691065 4.0489571e-08 2.280302 -0.27378467 4.2468592e-08 \n\t\t2.27895 -0.25862464 4.5133131e-08 2.28757 -0.25230867 4.5078931e-08 2.2598701 -0.23535265 \n\t\t4.7859729e-08 2.2641521 -0.24054664 4.7825285e-08 2.2848077 -0.26865667 4.2492299e-08 \n\t\t2.25828 -0.28181067 4.0509089e-08 2.2596359 -0.28984466 3.9419621e-08 2.2637377 -0.29148865 \n\t\t3.939607e-08 2.2699356 -0.28650466 4.0441588e-08 2.2773256 -0.27567667 4.2391449e-08 \n\t\t2.2847381 -0.26059267 4.4959755e-08 2.2910876 -0.24363665 4.7740482e-08 2.2953677 \n\t\t-0.22728866 5.032712e-08 2.296958 -0.21413466 5.2310401e-08 2.295604 -0.20610066 \n\t\t5.3399862e-08 2.291502 -0.20445664 5.3423328e-08 2.2853017 -0.20944065 5.2377807e-08 \n\t\t2.2779117 -0.22026865 5.0427964e-08 2.2704997 -0.21570465 5.2862006e-08 2.316952 \n\t\t-0.22555864 5.121694e-08 2.313684 -0.21417664 5.2883923e-08 2.311192 -0.25760466 \n\t\t4.54462e-08 2.2917457 -0.26894066 4.3652605e-08 2.2906437 -0.27380866 4.2730694e-08 \n\t\t2.2860937 -0.28602666 4.0888633e-08 2.287354 -0.28363466 4.1521737e-08 2.29443 -0.28477666 \n\t\t4.15051e-08 2.298728 -0.29501668 3.985468e-08 2.2969201 -0.28033066 4.2636742e-08 \n\t\t2.310668 -0.23113066 5.0461303e-08 2.3165278 -0.22316664 5.1850044e-08 2.32076 -0.22710665 \n\t\t5.0788515e-08 2.3086019 -0.22617264 5.0716366e-08 2.3027821 -0.22606865 5.0803362e-08 \n\t\t2.304688 -0.22824265 5.0082949e-08 2.2943597 -0.23495264 4.8874707e-08 2.289768 -0.24430065 \n\t\t4.728301e-08 2.2858319 -0.24557264 4.7291156e-08 2.2913361 -0.25627866 4.5535426e-08 \n\t\t2.2886341 -0.23217866 5.0100649e-08 2.3111897 -0.23930266 4.881225e-08 2.306164 -0.25080267 \n\t\t4.721581e-08 2.3110421 -0.24943466 4.7209191e-08 2.3051801 -0.26150665 4.5460393e-08 \n\t\t2.3083401 -0.25994265 4.5485859e-08 2.302526 -0.27786466 4.2608178e-08 2.299654 -0.27997267 \n\t\t4.1963023e-08 2.291074 -0.27807266 4.2052193e-08 2.2855759 -0.27490067 4.2650878e-08 \n\t\t2.288486 -0.26659667 4.3902844e-08 2.2876296;\n\tsetAttr \".pt[1826:1991]\" -0.26494065 4.3956607e-08 2.2821937 -0.25481066 4.5559368e-08 \n\t\t2.2831779 -0.22441864 5.1233187e-08 2.3093839 -0.22921665 5.0143129e-08 2.300024 \n\t\t-0.22787465 5.0508223e-08 2.30426 -0.23538464 4.915589e-08 2.2991199 -0.23605065 \n\t\t4.8912423e-08 2.2953439 -0.24584465 4.7374861e-08 2.2947159 -0.24048266 4.8848683e-08 \n\t\t2.3120461 -0.24025266 4.9085973e-08 2.3174677 -0.25158867 4.7292385e-08 2.316366 \n\t\t-0.26334867 4.5363731e-08 2.313396 -0.27381065 4.3582475e-08 2.3089941 -0.27102867 \n\t\t4.3839115e-08 2.304332 -0.28131866 4.2230454e-08 2.303854 -0.28101066 4.1948166e-08 \n\t\t2.2949877 -0.27806267 4.2277364e-08 2.2915859 -0.22515264 5.0731092e-08 2.2989397 \n\t\t-0.27909067 4.2037762e-08 2.289418 -0.23115066 5.0041315e-08 2.3053236 -0.26929265 \n\t\t4.3893916e-08 2.2985916 -0.27600268 4.2685596e-08 2.293998 -0.27309266 4.2727535e-08 \n\t\t2.2830338 -1.0383389 -1.1135602e-07 1.3216102 -0.9415288 -9.0408534e-08 1.4823322 \n\t\t-1.0728848 -1.1938239e-07 1.249438 -1.0734088 -1.186751e-07 1.2706243 -1.068333 -1.2005175e-07 \n\t\t1.2125361 -1.0348991 -1.1234167e-07 1.2808282 -0.9408648 -9.1904361e-08 1.4393723 \n\t\t-0.83840877 -6.9158816e-08 1.6249583 -0.8370828 -6.966183e-08 1.6059302 -0.83342284 \n\t\t-7.0508861e-08 1.5679582 -0.79832083 -6.4413904e-08 1.5859122 -0.78851277 -6.0439532e-08 \n\t\t1.6519723 -1.0643048 -1.2001374e-07 1.1968203 -0.8109448 -6.4097165e-08 1.6468782 \n\t\t-1.0848991 -1.244744e-07 1.1625081 -1.0902051 -1.2498984e-07 1.1707022 -1.0946488 \n\t\t-1.2461463e-07 1.1992502 -1.0937889 -1.2372433e-07 1.2196043 -0.80002677 -6.2606027e-08 \n\t\t1.6415882 -0.92219877 -8.6859288e-08 1.4974023 -0.84153676 -6.8725377e-08 1.6496042 \n\t\t-0.75650281 -5.4565508e-08 1.6768363 -0.80536276 -6.2052479e-08 1.6786363 -1.0538568 \n\t\t-1.1259603e-07 1.3527622 -1.0180368 -1.07676e-07 1.3361562 -1.0887108 -1.2072486e-07 \n\t\t1.2791163 -1.0518408 -1.1566149e-07 1.2620001 -1.0730329 -1.2098761e-07 1.2069123 \n\t\t-1.109207 -1.3085938e-07 1.0919101 -1.1468768 -1.3638851e-07 1.0998321 -1.112027 \n\t\t-1.3220452e-07 1.0674762 -1.1354148 -1.3500558e-07 1.0893741 -1.098595 -1.3078588e-07 \n\t\t1.0497921 -1.1237811 -1.3283166e-07 1.0994601 -1.0847509 -1.2838282e-07 1.0568521 \n\t\t-1.0338688 -1.1822671e-07 1.1183841 -1.0590631 -1.1959128e-07 1.1863942 -1.0096191 \n\t\t-1.1303057e-07 1.1572741 -1.025817 -1.1200967e-07 1.2520143 -0.97602481 -1.0537637e-07 \n\t\t1.2233982 -0.93282884 -9.178968e-08 1.4090643 -0.88434082 -8.544373e-08 1.3781443 \n\t\t-0.81918883 -6.9137464e-08 1.5456723 -0.76743484 -6.2185144e-08 1.5174782 -0.72844082 \n\t\t-5.4387979e-08 1.5650083 -0.77340484 -5.9794921e-08 1.6065222 -0.71913683 -5.2309108e-08 \n\t\t1.5822202 -0.71119887 -5.0002065e-08 1.6112403 -0.72601479 -4.9914743e-08 1.6751482 \n\t\t-0.7412228 -5.2056773e-08 1.6807703 -0.76649284 -5.7859179e-08 1.6298263 -0.77872479 \n\t\t-5.7888226e-08 1.6798702 -0.78079885 -6.0454347e-08 1.6195222 -0.78730685 -6.2056671e-08 \n\t\t1.6035002 -0.79511076 -6.1433269e-08 1.6526803 -0.79037476 -5.9563071e-08 1.6832643 \n\t\t-0.78316683 -6.1970574e-08 1.5886122 -0.83108884 -7.0852899e-08 1.5490142 -0.94010484 \n\t\t-9.2597638e-08 1.4175823 -1.0322528 -1.1266093e-07 1.2612523 -1.0810828 -1.2431855e-07 \n\t\t1.1508402 -1.1209428 -1.3175823e-07 1.1165161 -1.1251751 -1.326044e-07 1.1113601 \n\t\t-1.1274629 -1.3287571e-07 1.1135741 -1.1442869 -1.3516244e-07 1.1220222 -1.1253068 \n\t\t-1.3214232e-07 1.1243261 -1.1097971 -1.2592906e-07 1.2268662 -1.0391328 -1.1068964e-07 \n\t\t1.3428183 -0.94143081 -8.9605749e-08 1.5035002 -0.95552081 -9.1345278e-08 1.5152943 \n\t\t-0.56049454 -8.0097253e-09 2.1136179 -0.57897854 -1.0381922e-08 2.1266661 -0.54021657 \n\t\t-3.5211634e-09 2.1499939 -0.53635067 -1.8793258e-09 2.178056 -0.56875664 -6.039655e-09 \n\t\t2.2008939 -0.54951066 -3.3440264e-09 2.193372 -0.57776469 -7.7000726e-09 2.1936984 \n\t\t-0.63124454 -1.6198824e-08 2.1875024 -0.61665064 -1.4259517e-08 2.1789837 -0.66047269 \n\t\t-2.206146e-08 2.151386 -0.71096867 -3.0731297e-08 2.1281939 -0.70230854 -2.9873672e-08 \n\t\t2.1152596 -0.73602855 -3.6551459e-08 2.0758996 -0.74235266 -3.6946496e-08 2.0915599 \n\t\t-0.75630653 -4.1039932e-08 2.039526 -0.76017064 -4.2681503e-08 2.0114636 -0.76482266 \n\t\t-4.2651937e-08 2.0315876 -0.75257665 -4.1289013e-08 2.017334 -0.74701267 -4.1217113e-08 \n\t\t1.9961478 -0.71875864 -3.6861113e-08 1.99582 -0.72627854 -3.7234528e-08 2.01703 -0.69008666 \n\t\t-3.1129574e-08 2.030724 -0.67987251 -3.0301671e-08 2.010534 -0.64930063 -2.3868072e-08 \n\t\t2.056412 -0.58785653 -1.7127224e-08 1.9822718 -0.54592866 -9.2978176e-09 2.0184779 \n\t\t-0.59421456 -1.4687435e-08 2.07426 -0.63177657 -2.4946628e-08 1.954612 -0.67074865 \n\t\t-3.152055e-08 1.9398661 -0.69906467 -3.5886131e-08 1.9401938 -0.71225268 -3.7353889e-08 \n\t\t1.955544 -0.70837855 -3.5708489e-08 1.9836677 -0.68805665 -3.121022e-08 2.0201221 \n\t\t-0.65426052 -2.4517467e-08 2.0595679 -0.61233467 -1.6688389e-08 2.0957737 -0.56841254 \n\t\t-8.86864e-09 2.1234341 -0.52944052 -2.2946647e-09 2.1381817 -0.50112468 2.0708752e-09 \n\t\t2.1378536 -0.48793668 3.5386563e-09 2.122504 -0.49181065 1.8931923e-09 2.094378 -0.51213253 \n\t\t-2.6050577e-09 2.057924 -0.63605064 -2.2499593e-08 2.038136 -0.58289868 -9.4873673e-09 \n\t\t2.166996 -0.59204257 -1.0505003e-08 2.17764 -0.55650854 -4.6764952e-09 2.1866379 \n\t\t-0.56010652 -6.2045835e-09 2.1605196 -0.59967464 -1.3747145e-08 2.1222177 -0.62310869 \n\t\t-1.83878e-08 2.0948677 -0.61036253 -1.6597136e-08 2.0900316 -0.73574668 -3.6700236e-08 \n\t\t2.07073 -0.76122469 -4.1123851e-08 2.0577059 -0.72165656 -3.358128e-08 2.0960081 \n\t\t-0.67203057 -2.3460345e-08 2.161814 -0.59505266 -1.0093809e-08 2.2011981 -0.57007253 \n\t\t-8.6417948e-09 2.1364279 -0.58086663 -9.7544062e-09 2.151376 -0.57247263 -9.6612585e-09 \n\t\t2.1190019 -0.58506453 -1.2448568e-08 2.0964117 -0.60600668 -1.6595756e-08 2.07197 \n\t\t-0.60706264 -1.3436287e-08 2.1612697 -0.59578866 -1.2256164e-08 2.146142 -0.64715254 \n\t\t-2.1174934e-08 2.1198659 -0.70717251 -3.1686181e-08 2.0867577 -0.69407266 -3.0173172e-08 \n\t\t2.0729899 -0.70666456 -3.2960472e-08 2.0504 -0.71412069 -3.4637491e-08 2.03631 -0.70089465 \n\t\t-3.3070748e-08 2.0234621 -0.68334854 -3.0365577e-08 2.0232596 -0.67165053 -2.773284e-08 \n\t\t2.0454097 -0.65920055 -2.629225e-08 2.0323958 -0.63198465 -2.1446798e-08 2.049536 \n\t\t-0.58919066 -1.068087e-08 2.1610637 -0.58331066 -1.0792807e-08 2.1336236;\n\tsetAttr \".pt[1992:2157]\" -0.58558452 -1.062818e-08 2.147496 -0.59613866 -1.3632151e-08 \n\t\t2.110616 -0.61167663 -1.3532102e-08 2.177866 -0.63166064 -1.7585503e-08 2.1519637 \n\t\t-0.63869864 -1.8090249e-08 2.1676416 -0.66915268 -2.3512218e-08 2.1484621 -0.65938056 \n\t\t-2.2520695e-08 2.134506 -0.68584251 -2.7462114e-08 2.111654 -0.69822252 -2.8940624e-08 \n\t\t2.123358 -0.72000068 -3.4525634e-08 2.0637479 -0.73843253 -3.7841048e-08 2.05123 \n\t\t-0.72244453 -3.5563929e-08 2.0459976 -0.72928864 -3.6823412e-08 2.040586 -0.70965457 \n\t\t-3.3796315e-08 2.04036 -0.69624853 -3.1882117e-08 2.0361021 -0.68263257 -2.9238183e-08 \n\t\t2.0505838 -0.61746866 -1.7856202e-08 2.0857201 -0.65218055 -2.381652e-08 2.0697637 \n\t\t-0.64393055 -2.2797629e-08 2.0628676 -0.70906669 -3.398025e-08 2.032974 -0.57824254 \n\t\t-9.550976e-09 2.1459401 -0.61993867 -1.6329794e-08 2.137006 -0.67313254 -2.6026298e-08 \n\t\t2.0974317 -1.8336829 -2.4277969e-07 1.094238 -1.7869128 -2.3256375e-07 1.174464 -1.8109728 \n\t\t-2.3947499e-07 1.0886922 -1.8096206 -2.3586803e-07 1.180012 -1.7838666 -2.3148512e-07 \n\t\t1.1907958 -1.8065746 -2.3478943e-07 1.1963438 -1.7837086 -2.3105569e-07 1.2016799 \n\t\t-1.8064169 -2.3436012e-07 1.207226 -1.8407826 -2.4457955e-07 1.075366 -1.8180726 \n\t\t-2.4127493e-07 1.069818 -1.8442466 -2.4530627e-07 1.0702281 -1.8215388 -2.4200199e-07 \n\t\t1.0646801 -1.7853646 -2.3120664e-07 1.204504 -1.8080726 -2.3451095e-07 1.210052 -1.8467108 \n\t\t-2.4572552e-07 1.0692 -1.8240006 -2.4242084e-07 1.063652 -1.8737029 -2.4942247e-07 \n\t\t1.0819962 -1.8509946 -2.4611811e-07 1.0764482 -1.8757646 -2.4961352e-07 1.085428 \n\t\t-1.8530568 -2.4630924e-07 1.07988 -1.8776286 -2.4960298e-07 1.093456 -1.8549206 -2.4629867e-07 \n\t\t1.087908 -1.8794405 -2.4906075e-07 1.1155581 -1.8567308 -2.4575615e-07 1.1100101 \n\t\t-1.8804166 -2.4586561e-07 1.2054843 -1.8577065 -2.4256096e-07 1.1999363 -1.8791949 \n\t\t-2.4505036e-07 1.2223182 -1.8564866 -2.4174599e-07 1.2167702 -1.8766046 -2.4427436e-07 \n\t\t1.2324102 -1.8540726 -2.4099725e-07 1.2268622 -1.8742886 -2.4386168e-07 1.2338783 \n\t\t-1.8515806 -2.4055728e-07 1.2283323 -1.8718746 -2.435209e-07 1.2330062 -1.8491666 \n\t\t-2.4021659e-07 1.2274582 -1.8102628 -2.3482009e-07 1.210844 -1.7875526 -2.3151553e-07 \n\t\t1.2052938 -1.8839426 -2.4955622e-07 1.1209481 -1.8823348 -2.500571e-07 1.100806 -1.8792828 \n\t\t-2.4993628e-07 1.091372 -1.8522369 -2.462312e-07 1.0785701 -1.8409626 -2.4364181e-07 \n\t\t1.1013162 -1.8155446 -2.3625256e-07 1.1942921 -1.8160928 -2.3604673e-07 1.2021019 \n\t\t-1.8813869 -2.4526682e-07 1.2256082 -1.8178346 -2.3629265e-07 1.2027299 -1.8474646 \n\t\t-2.452953e-07 1.083894 -1.8179508 -2.3705344e-07 1.1827662 -1.8504249 -2.4591773e-07 \n\t\t1.0794661 -1.8149745 -2.3593374e-07 1.2004918 -1.8843068 -2.4599359e-07 1.2182081 \n\t\t-1.8830206 -2.4554919e-07 1.2248082 -1.8849908 -2.4655532e-07 1.2059541 -1.8807708 \n\t\t-2.5006861e-07 1.0939982 -1.8793968 -2.4498601e-07 1.2248862 -1.4949429 -2.0742168e-07 \n\t\t0.63701808 -1.5532869 -2.2791467e-07 0.32868269 -1.4793429 -2.0616244e-07 0.60604209 \n\t\t-1.486825 -2.0485956e-07 0.67214608 -1.495453 -2.0498925e-07 0.70451021 -1.4388529 \n\t\t-1.9442622e-07 0.75322008 -1.2316607 -1.3676058e-07 1.4421142 -1.3840389 -1.7369051e-07 \n\t\t1.0827461 -1.472405 -1.9780232e-07 0.80189615 -1.1282088 -1.1395416e-07 1.6251982 \n\t\t-1.1383049 -1.1368254e-07 1.6744483 -1.2186069 -1.3699987e-07 1.3814442 -1.1171507 \n\t\t-1.1475412e-07 1.5577523 -1.0052969 -8.8554934e-08 1.7971083 -0.7724728 -4.6318121e-08 \n\t\t1.9648442 -0.77480268 -4.3867949e-08 2.0403743 -0.55881464 -4.5010022e-09 2.2009363 \n\t\t-1.014189 -8.8009415e-08 1.8487163 -0.54567873 -2.4134678e-10 2.2608361 -0.52104276 \n\t\t2.3331177e-09 2.2276621 -0.53492862 1.4106135e-09 2.260566 -0.53090668 -1.6617228e-09 \n\t\t2.1612842 -0.53920478 -3.5127496e-09 2.1460161 -0.55329669 -6.2940408e-09 2.1298203 \n\t\t-1.4446349 -2.1345096e-07 0.26594651 -1.4257009 -2.1126806e-07 0.24594112 -1.449821 \n\t\t-2.1414137e-07 0.26893988 -1.4201469 -2.1053214e-07 0.24264272 -1.462817 -2.1548547e-07 \n\t\t0.28681529 -1.467741 -2.1614555e-07 0.28953528 -1.565293 -2.2924114e-07 0.34291911 \n\t\t-1.513575 -2.2281209e-07 0.3008115 -1.4631549 -2.161371e-07 0.27070731 -1.5375149 \n\t\t-2.2606949e-07 0.31273934 -1.356059 -1.8843978e-07 0.57009506 -1.317313 -1.7721985e-07 \n\t\t0.71064407 -1.2283349 -1.5349042e-07 0.97867405 -1.1978067 -1.3423816e-07 1.3692403 \n\t\t-1.0836589 -1.1889576e-07 1.3072842 -1.0971047 -1.1216632e-07 1.5440083 -0.98816681 \n\t\t-9.7955542e-08 1.4732863 -0.87659276 -7.4911078e-08 1.6290202 -0.67760676 -3.618964e-08 \n\t\t1.8428782 -0.54088664 -5.3156612e-09 2.1045504 -0.42492083 9.1405763e-09 2.011224 \n\t\t-0.40116283 1.3596903e-08 2.032274 -0.51373678 -2.61835e-11 2.1338983 -0.38665685 \n\t\t1.641534e-08 2.0477476 -0.37877479 1.8169835e-08 2.06215 -0.37105075 2.2525912e-08 \n\t\t2.1471276 -0.49879274 5.4746478e-09 2.2196422 -0.39511073 2.0408748e-08 2.1901984 \n\t\t-0.52178872 3.2399838e-09 2.2551341 -0.40639073 1.869198e-08 2.1909285 -0.44741473 \n\t\t1.1776693e-08 2.175534 -0.54963261 -1.5050405e-09 2.2433023 -0.7704286 -4.160453e-08 \n\t\t2.0830302 -0.70835471 -3.4955494e-08 2.0038056 -1.0010327 -8.6323226e-08 1.8393682 \n\t\t-0.91814274 -7.577983e-08 1.7783142 -1.1237367 -1.1171971e-07 1.6666683 -1.0327927 \n\t\t-9.9573704e-08 1.6152203 -1.1288427 -1.2092491e-07 1.4404902 -1.375489 -1.7096491e-07 \n\t\t1.1204722 -1.2703527 -1.5575493e-07 1.0924001 -1.3562649 -1.7970305e-07 0.80575413 \n\t\t-1.394575 -1.9128159e-07 0.65375614 -1.5042269 -2.0763055e-07 0.66998017 -1.3497729 \n\t\t-1.7036037e-07 1.0298681 -1.3482248 -1.7020525e-07 1.0276041 -0.9783228 -8.7642242e-08 \n\t\t1.7095582 -0.75915676 -4.486866e-08 1.9484702 -0.7573548 -4.4704521e-08 1.9453943 \n\t\t-0.52757877 -2.7669109e-09 2.1177542 -0.53275263 -3.4937297e-09 2.1197183 -0.51866066 \n\t\t-7.1190576e-10 2.1359282 -0.50583267 1.7587238e-09 2.1490264 -0.51129675 4.8496647e-09 \n\t\t2.2548003 -1.1225687 -1.1159443e-07 1.6651822 -1.2250409 -1.3428212e-07 1.4812182 \n\t\t-1.2261528 -1.3440058e-07 1.4826542 -1.3744887 -1.7086042e-07 1.1191242 -1.4641609 \n\t\t-1.9554739e-07 0.82824415 -1.501971 -2.0680693e-07 0.68274206 -1.472435 -2.0371847e-07 \n\t\t0.64302212 -1.4586929 -1.968957e-07 0.76928806 -1.4884269 -2.0573634e-07 0.65523809 \n\t\t-1.439201 -1.9424361e-07 0.759574 -1.3697747 -1.7316711e-07 1.0375441;\n\tsetAttr \".pt[2158:2323]\" -1.1996269 -1.3443019e-07 1.3716422 -1.0990487 -1.1237356e-07 \n\t\t1.5465163 -0.99723679 -8.9988717e-08 1.7250843 -0.98033279 -8.7854247e-08 1.7122122 \n\t\t-0.56431276 -8.39918e-09 2.1190162 -0.54548877 -5.9276788e-09 2.1072242 -0.51040679 \n\t\t1.1314673e-09 2.1511743 -0.50083065 5.1507203e-09 2.219404 -0.51620674 4.0269352e-09 \n\t\t2.2530904 -0.52713662 2.3406261e-09 2.2531843 -0.57056069 -4.4843897e-09 2.2501884 \n\t\t-0.55407071 -2.2699309e-09 2.2411861 -0.7801007 -4.2645404e-08 2.0952444 -0.76934463 \n\t\t-4.1505253e-08 2.0811944 -0.99983072 -8.6195811e-08 1.8377982 -1.2418667 -1.3659799e-07 \n\t\t1.4888903 -1.3926567 -1.7347496e-07 1.1243461 -1.4802849 -1.9771859e-07 0.83688813 \n\t\t-1.462307 -1.9518761e-07 0.83021015 -1.510329 -2.0694758e-07 0.71369004 -1.465865 \n\t\t-2.132614e-07 0.35925308 -1.5120029 -2.1940278e-07 0.38590661 -1.520733 -2.2037518e-07 \n\t\t0.39604631 -1.500947 -2.1811529e-07 0.37457046 -1.5246329 -2.2409989e-07 0.31214789 \n\t\t-1.533361 -2.2507201e-07 0.32228711 -1.490317 -2.1929219e-07 0.29877248 -1.4776889 \n\t\t-2.1459535e-07 0.37253177 -1.478493 -2.1795823e-07 0.28549388 -1.450527 -2.1144025e-07 \n\t\t0.34446689 1.2318653 1.8508376e-07 -0.14425819 1.3081012 2.0000977e-07 -0.059880216 \n\t\t1.3107672 1.989679e-07 -0.098958209 1.2293173 1.861482e-07 -0.1050642 1.3755132 2.125276e-07 \n\t\t-0.0035581859 1.3727231 2.1354508e-07 0.035379801 1.2947651 1.9256214e-07 -0.20462619 \n\t\t1.2162273 1.7887137e-07 -0.24624221 1.2805332 1.890895e-07 -0.23882018 1.3584092 \n\t\t2.0568758e-07 -0.11631823 1.3805592 2.1532036e-07 0.050531805 1.3398532 2.0389089e-07 \n\t\t-0.087504208 1.3667631 2.0750751e-07 -0.10211816 1.3542931 2.1046614e-07 0.029209852 \n\t\t1.3839872 2.1440671e-07 0.011733801 1.3438631 2.0216967e-07 -0.15042424 1.2018833 \n\t\t1.7537702e-07 -0.28055421 1.3126291 1.9846789e-07 -0.12013221 1.3515371 2.0388252e-07 \n\t\t-0.13627625 1.3353091 2.0904859e-07 0.069991797 0.92154503 1.1736017e-07 -0.6749621 \n\t\t0.95532703 1.2217883e-07 -0.68582422 0.94494718 1.2119092e-07 -0.66924608 0.88620305 \n\t\t1.120144e-07 -0.67178398 0.89814103 1.1352905e-07 -0.6806801 0.87590116 1.117877e-07 \n\t\t-0.63507205 0.88776302 1.1254142e-07 -0.66410202 0.91901916 1.1650715e-07 -0.68739206 \n\t\t0.95520306 1.2264465e-07 -0.67279011 0.94086301 1.1981122e-07 -0.68935615 0.97680306 \n\t\t1.261805e-07 -0.66751212 0.97913319 1.2696759e-07 -0.65604013 0.95688719 1.2270588e-07 \n\t\t-0.67814213 0.96130317 1.2470535e-07 -0.64275408 0.93012315 1.2025778e-07 -0.63273013 \n\t\t0.92406905 1.1821282e-07 -0.66253412 0.90222704 1.1490911e-07 -0.66056812 0.90311706 \n\t\t1.1722044e-07 -0.60214818 0.87357104 1.1100059e-07 -0.64654404 0.89140105 1.1326283e-07 \n\t\t-0.65983003 0.88528705 1.149582e-07 -0.58886218 0.88761717 1.1574532e-07 -0.57739002 \n\t\t0.93429917 1.2166835e-07 -0.61217207 0.92258114 1.1771034e-07 -0.66985601 0.96691906 \n\t\t1.2660227e-07 -0.61510807 0.98851913 1.3013812e-07 -0.60983014 0.99084902 1.3092519e-07 \n\t\t-0.59835815 0.97301918 1.2866298e-07 -0.58507216 0.94183916 1.2421539e-07 -0.57504809 \n\t\t0.90921903 1.1928135e-07 -0.57211417 0.89750117 1.1532345e-07 -0.62979615 -1.2193907 \n\t\t-1.9243213e-07 -0.10506396 -1.3008409 -2.0479743e-07 -0.098957971 -1.2981749 -2.0293122e-07 \n\t\t-0.059879977 -1.2219387 -1.9428441e-07 -0.14425795 -1.3655869 -2.1125773e-07 -0.0035579475 \n\t\t-1.2848388 -2.0625522e-07 -0.20462595 -1.2063007 -1.9566141e-07 -0.24624197 -1.3339368 \n\t\t-2.118292e-07 -0.150424 -1.3484828 -2.1280903e-07 -0.11631799 -1.3568368 -2.1357222e-07 \n\t\t-0.10211793 -1.3299268 -2.0886807e-07 -0.08750397 -1.3416108 -2.124892e-07 -0.13627601 \n\t\t-1.3740609 -2.1199885e-07 0.01173404 -1.3443668 -2.0675776e-07 0.029210061 -1.3027028 \n\t\t-2.0587316e-07 -0.12013197 -1.1919568 -1.9472047e-07 -0.28055397 -1.2706069 -2.0532723e-07 \n\t\t-0.23881994 -1.3253828 -2.0230532e-07 0.069992036 -1.3627968 -2.0937753e-07 0.035380039 \n\t\t-1.3706329 -2.1002525e-07 0.050532043 -0.91161895 -1.6605451e-07 -0.67496198 -0.87627697 \n\t\t-1.6047225e-07 -0.67178398 -0.93093693 -1.6957674e-07 -0.68935603 -0.94540095 -1.7168152e-07 \n\t\t-0.6858241 -0.88821495 -1.6264892e-07 -0.6806801 -0.87783694 -1.6042759e-07 -0.66410202 \n\t\t-0.91265482 -1.6602468e-07 -0.66985601 -0.90909284 -1.6612647e-07 -0.68739206 -0.94527698 \n\t\t-1.7117736e-07 -0.67278999 -0.96920687 -1.7425378e-07 -0.65604001 -0.94696087 -1.7163684e-07 \n\t\t-0.67814201 -0.93502086 -1.6945985e-07 -0.66924596 -0.91414297 -1.659823e-07 -0.662534 \n\t\t-0.89230096 -1.6253229e-07 -0.660568 -0.87536097 -1.5724521e-07 -0.58886194 -0.88147497 \n\t\t-1.6083109e-07 -0.65983003 -0.86364496 -1.5758015e-07 -0.64654404 -0.89319283 -1.6049644e-07 \n\t\t-0.60214794 -0.87769085 -1.5717856e-07 -0.57739002 -0.86597484 -1.575135e-07 -0.63507205 \n\t\t-0.92437285 -1.6568998e-07 -0.61217207 -0.95699298 -1.7084244e-07 -0.61510807 -0.96687698 \n\t\t-1.7432043e-07 -0.667512 -0.97859281 -1.7398547e-07 -0.6098299 -0.98092294 -1.7391885e-07 \n\t\t-0.59835792 -0.95137686 -1.7100282e-07 -0.64275396 -0.96309286 -1.7066789e-07 -0.58507192 \n\t\t-0.92019683 -1.658093e-07 -0.63273001 -0.93191284 -1.6547436e-07 -0.57504797 -0.89929295 \n\t\t-1.6032202e-07 -0.57211405 -0.88757485 -1.6065663e-07 -0.62979603 0.35599911 4.0449515e-09 \n\t\t-1.3704842 0.34369108 2.2358546e-09 -1.367964 0.34758109 2.9287268e-09 -1.3655059 \n\t\t0.35453713 3.7535215e-09 -1.372242 0.36492315 5.4132672e-09 -1.37079 0.36666706 5.656311e-09 \n\t\t-1.3715042 0.35759315 4.9350346e-09 -1.3531862 0.3521331 4.0705728e-09 -1.3537322 \n\t\t0.34682709 3.359647e-09 -1.3507919 0.34888715 3.9749906e-09 -1.342814 0.35296115 \n\t\t4.6634878e-09 -1.341238 0.34609917 3.5196903e-09 -1.3434662 0.33733714 1.5801284e-09 \n\t\t-1.3591859 0.34875706 3.3334884e-09 -1.359514 0.36240909 5.5849387e-09 -1.3557302 \n\t\t0.34517106 3.1220675e-09 -1.350296 0.33757114 1.8539097e-09 -1.3528003 0.35877511 \n\t\t5.4366618e-09 -1.3446159 0.36215109 5.7552052e-09 -1.3500823 0.37157717 6.6645152e-09 \n\t\t-1.36481 0.36435917 6.3078662e-09 -1.344404 0.37484315 7.513032e-09 -1.355576 0.37644714 \n\t\t7.4378157e-09 -1.3642622 0.38203308 8.6832612e-09 -1.3540002 0.35983917 5.8301413e-09 \n\t\t-1.3384622 0.35712716 5.3605578e-09 -1.3398139 0.37523308 7.7854816e-09 -1.349874 \n\t\t0.38366914 9.3710959e-09 -1.3423122 0.37271512 7.7535445e-09 -1.34027 0.37986314 \n\t\t8.9653005e-09 -1.337404 0.33427113 1.4258026e-09 -1.3505942 0.33925515 2.8187781e-09 \n\t\t-1.3338662 0.34200317 3.639393e-09 -1.32323 0.35418516 5.5755325e-09 -1.3218123;\n\tsetAttr \".pt[2324:2489]\" 0.37012917 7.4920106e-09 -1.3365542 0.37706113 9.1609982e-09 \n\t\t-1.320502 0.30599716 -2.8373321e-09 -1.347688 0.33076516 1.1467535e-09 -1.3435262 \n\t\t0.3066631 -3.4545915e-09 -1.367044 0.32591507 -2.6688685e-10 -1.361366 0.31873912 \n\t\t-1.0601272e-09 -1.3528682 0.39139712 1.0743957e-08 -1.3375262 0.41524512 1.4748426e-08 \n\t\t-1.328994 0.38338515 9.4390398e-09 -1.3393062 0.40713117 1.3438827e-08 -1.3304762 \n\t\t0.37194115 8.0705638e-09 -1.3285342 0.39334515 1.1849892e-08 -1.3158979 0.36495915 \n\t\t7.1846809e-09 -1.3233322 0.38181916 1.0329203e-08 -1.308876 0.35596117 5.8411915e-09 \n\t\t-1.322052 0.36377519 7.51794e-09 -1.3094562 0.3430472 4.0952739e-09 -1.315316 0.32347319 \n\t\t7.4123996e-10 -1.324126 0.33353916 1.3409871e-09 -1.3498322 0.33375317 1.9125614e-09 \n\t\t-1.3353602 0.33056909 5.579438e-10 -1.358536 0.32886112 5.1490012e-10 -1.3525962 \n\t\t0.32209712 -2.4009703e-10 -1.3447822 0.32380712 2.4030775e-10 -1.3389763 0.3208051 \n\t\t-4.8872983e-10 -1.346096 0.33494911 2.2623667e-09 -1.3309282 0.33386511 1.8840345e-09 \n\t\t-1.336592 0.35126111 5.0683311e-09 -1.3232939 0.3529771 5.1742175e-09 -1.3275782 \n\t\t0.3684791 7.9003346e-09 -1.3187243 0.37319711 8.4975937e-09 -1.3222762 0.38171914 \n\t\t9.9781889e-09 -1.317894 0.38877311 1.0939942e-08 -1.3213562 0.38609514 1.0521304e-08 \n\t\t-1.32148 0.39395314 1.1587201e-08 -1.325484 0.38351113 9.7044772e-09 -1.332696 0.37552315 \n\t\t8.4007405e-09 -1.3345439 0.36443517 7.0719777e-09 -1.3241839 0.35842115 6.3268146e-09 \n\t\t-1.319222 0.35163116 5.3261626e-09 -1.3179022 0.34482315 4.2206412e-09 -1.3193259 \n\t\t0.34646916 4.3001629e-09 -1.324028 0.33875117 3.16036e-09 -1.322592 0.33800316 2.8216121e-09 \n\t\t-1.328588 0.33464915 2.3295523e-09 -1.3278762 0.33221716 1.6791781e-09 -1.3352503 \n\t\t0.35929117 6.1880612e-09 -1.326566 0.34964916 4.9250004e-09 -1.3204483 0.34561315 \n\t\t4.2690185e-09 -1.3213083 0.33961716 3.1259142e-09 -1.327116 0.3389731 2.2529103e-09 \n\t\t-1.3479022 0.32772514 6.9142031e-10 -1.343132 0.32894912 1.0710116e-09 -1.338016 \n\t\t0.33817309 2.7477187e-09 -1.33128 0.35175911 5.0831095e-09 -1.324966 0.3660731 7.4390591e-09 \n\t\t-1.3211242 0.38067913 9.5958583e-09 -1.323848 0.37809113 8.7944043e-09 -1.3346342 \n\t\t0.29539317 -4.0448458e-09 -1.3360802 0.30210912 -4.2750434e-09 -1.370172 0.29083914 \n\t\t-4.8653734e-09 -1.33921 0.29472715 -3.4276668e-09 -1.316726 0.29357508 -5.1922928e-09 \n\t\t-1.359364 0.28230512 -5.7825518e-09 -1.3284003 0.29750103 -4.1967869e-09 -1.348922 \n\t\t0.2862331 -4.7867328e-09 -1.3179582 0.31895509 -2.9929531e-10 -1.333318 0.30768511 \n\t\t-8.8962532e-10 -1.302356 0.35015911 5.0812452e-09 -1.318368 0.33889109 4.491286e-09 \n\t\t-1.2874042 0.3833431 1.0527297e-08 -1.3098842 0.37207311 9.9370512e-09 -1.2789199 \n\t\t0.4090111 1.4553281e-08 -1.308336 0.39774111 1.3963017e-08 -1.2773722 0.41767514 \n\t\t1.5674807e-08 -1.314194 0.40640712 1.5084847e-08 -1.2832302 0.40397513 1.4158092e-08 \n\t\t-1.2980322 0.39586115 1.2848563e-08 -1.2995123 0.38207516 1.1259628e-08 -1.2849342 \n\t\t0.37054917 9.7389394e-09 -1.2779123 0.35250518 6.9276052e-09 -1.2784942 0.33177719 \n\t\t3.5050058e-09 -1.2843522 0.3122032 1.5097648e-10 -1.2931622 0.30960515 -1.8133059e-09 \n\t\t-1.3351582 0.29833716 -2.4033273e-09 -1.3041962 -0.34607291 -1.0449827e-07 -1.3704842 \n\t\t-0.33376494 -1.0250163e-07 -1.367964 -0.34461087 -1.0433763e-07 -1.372242 -0.33765489 \n\t\t-1.0301157e-07 -1.3655059 -0.35499683 -1.0588932e-07 -1.37079 -0.35674092 -1.0618554e-07 \n\t\t-1.3715042 -0.34766683 -1.0410105e-07 -1.3531862 -0.3422069 -1.0327724e-07 -1.3537322 \n\t\t-0.33690089 -1.0234751e-07 -1.3507919 -0.33896083 -1.0236914e-07 -1.342814 -0.34303483 \n\t\t-1.0294035e-07 -1.341238 -0.33617285 -1.0196236e-07 -1.3434662 -0.32741088 -1.0119265e-07 \n\t\t-1.3591859 -0.33883092 -1.0297044e-07 -1.359514 -0.35248294 -1.0494031e-07 -1.3557302 \n\t\t-0.33524492 -1.0207304e-07 -1.350296 -0.32764488 -1.0099122e-07 -1.3528003 -0.34884891 \n\t\t-1.0396492e-07 -1.3446159 -0.35222489 -1.0469026e-07 -1.3500823 -0.36165085 -1.0669555e-07 \n\t\t-1.36481 -0.35443285 -1.0482034e-07 -1.344404 -0.36491683 -1.068569e-07 -1.355576 \n\t\t-0.36652088 -1.0742809e-07 -1.3642622 -0.37210694 -1.0790988e-07 -1.3540002 -0.34991285 \n\t\t-1.0390044e-07 -1.3384622 -0.34720084 -1.0353145e-07 -1.3398139 -0.36530694 -1.0670505e-07 \n\t\t-1.349874 -0.37374288 -1.0772791e-07 -1.3423122 -0.36278886 -1.0595839e-07 -1.34027 \n\t\t-0.36993688 -1.0695686e-07 -1.337404 -0.34183291 -1.0214907e-07 -1.324966 -0.31902286 \n\t\t-9.9108121e-08 -1.338016 -0.31779888 -9.9109243e-08 -1.343132 -0.32904691 -1.0102573e-07 \n\t\t-1.3479022 -0.32969084 -1.0035185e-07 -1.327116 -0.33568683 -1.0106276e-07 -1.3213083 \n\t\t-0.33972284 -1.0165474e-07 -1.3204483 -0.34425884 -1.0240678e-07 -1.3218123 -0.29607084 \n\t\t-9.5919518e-08 -1.347688 -0.32064289 -1.001221e-07 -1.358536 -0.31598893 -9.9507879e-08 \n\t\t-1.361366 -0.30881286 -9.8082239e-08 -1.3528682 -0.3108789 -9.814967e-08 -1.346096 \n\t\t-0.34023291 -1.016562e-07 -1.318368 -0.3734169 -1.0647091e-07 -1.3098842 -0.37884691 \n\t\t-1.0773726e-07 -1.3213562 -0.38402689 -1.0869171e-07 -1.325484 -0.38147086 -1.0874461e-07 \n\t\t-1.3375262 -0.37345883 -1.0757215e-07 -1.3393062 -0.39720485 -1.1091483e-07 -1.3304762 \n\t\t-0.36201483 -1.0540204e-07 -1.3285342 -0.38341883 -1.0824101e-07 -1.3158979 -0.35503283 \n\t\t-1.0412904e-07 -1.3233322 -0.34603485 -1.0269028e-07 -1.322052 -0.32807684 -1.001571e-07 \n\t\t-1.328588 -0.31354681 -9.7744667e-08 -1.324126 -0.29968083 -9.6011419e-08 -1.3351582 \n\t\t-0.32083884 -9.9593905e-08 -1.3435262 -0.32361284 -1.0025741e-07 -1.3498322 -0.32382685 \n\t\t-9.9752015e-08 -1.3353602 -0.31893486 -9.963702e-08 -1.3525962 -0.31217086 -9.8300532e-08 \n\t\t-1.3447822 -0.31388086 -9.8348877e-08 -1.3389763 -0.32502291 -9.9772016e-08 -1.3309282 \n\t\t-0.32393891 -9.9815168e-08 -1.336592 -0.34133491 -1.0200986e-07 -1.3232939 -0.3430509 \n\t\t-1.0243457e-07 -1.3275782 -0.3585529 -1.045018e-07 -1.3187243 -0.36327091 -1.0536339e-07 \n\t\t-1.3222762 -0.37179288 -1.0651787e-07 -1.317894 -0.37617087 -1.0732816e-07 -1.32148 \n\t\t-0.37358686 -1.0734598e-07 -1.332696 -0.36559683 -1.0617946e-07 -1.3345439 -0.35450885 \n\t\t-1.0407972e-07 -1.3241839 -0.34849483 -1.029653e-07 -1.319222 -0.34170485 -1.0186643e-07 \n\t\t-1.3179022 -0.33489683 -1.0086686e-07 -1.3193259 -0.33654284 -1.012963e-07 -1.324028 \n\t\t-0.32882485 -1.0004963e-07 -1.322592 -0.32472283 -9.9612066e-08 -1.3278762;\n\tsetAttr \".pt[2490:2655]\" -0.32229084 -9.9510444e-08 -1.3352503 -0.34936485 -1.0337307e-07 \n\t\t-1.326566 -0.36020285 -1.0542032e-07 -1.3365542 -0.36816487 -1.0657984e-07 -1.3346342 \n\t\t-0.37075287 -1.0657862e-07 -1.323848 -0.36713487 -1.0589476e-07 -1.320502 -0.3561469 \n\t\t-1.0421912e-07 -1.3211242 -0.32824689 -1.0028355e-07 -1.33128 -0.32434487 -1.0039894e-07 \n\t\t-1.3505942 -0.32932884 -1.0054706e-07 -1.3338662 -0.33207685 -1.0057614e-07 -1.32323 \n\t\t-0.29218286 -9.6155027e-08 -1.370172 -0.28546685 -9.3848193e-08 -1.3360802 -0.28091288 \n\t\t-9.3260581e-08 -1.33921 -0.2967369 -9.674271e-08 -1.367044 -0.28480083 -9.3025072e-08 \n\t\t-1.316726 -0.28841084 -9.3116981e-08 -1.3041962 -0.28364894 -9.4433496e-08 -1.359364 \n\t\t-0.27237886 -9.1538972e-08 -1.3284003 -0.28757495 -9.4651938e-08 -1.348922 -0.2763069 \n\t\t-9.1757727e-08 -1.3179582 -0.30902889 -9.7388202e-08 -1.333318 -0.29775891 -9.4493757e-08 \n\t\t-1.302356 -0.32896489 -9.8761994e-08 -1.2874042 -0.36214691 -1.0357638e-07 -1.2789199 \n\t\t-0.3990849 -1.1038168e-07 -1.308336 -0.38781491 -1.0748717e-07 -1.2773722 -0.40775087 \n\t\t-1.1193945e-07 -1.314194 -0.39648086 -1.0904493e-07 -1.2832302 -0.40531886 -1.1211414e-07 \n\t\t-1.328994 -0.39404887 -1.092197e-07 -1.2980322 -0.38593683 -1.0802061e-07 -1.2995123 \n\t\t-0.37214884 -1.053465e-07 -1.2849342 -0.37189284 -1.0619777e-07 -1.308876 -0.36062285 \n\t\t-1.0330326e-07 -1.2779123 -0.35384881 -1.0342968e-07 -1.3094562 -0.3425788 -1.0053523e-07 \n\t\t-1.2784942 -0.33312082 -1.0044308e-07 -1.315316 -0.32185081 -9.7548565e-08 -1.2843522 \n\t\t-0.30227682 -9.4850158e-08 -1.2931622 1.438521 2.4811129e-07 0.6909678 1.447325 2.4812823e-07 \n\t\t0.6548419 1.4392951 2.4815699e-07 0.68897986 1.437427 2.4800565e-07 0.6926738 1.441965 \n\t\t2.4798962e-07 0.67338789 1.3881012 2.4789449e-07 0.89463788 1.3881271 2.4780354e-07 \n\t\t0.89208579 1.3871173 2.4746092e-07 0.88707376 1.436025 2.4765859e-07 0.68917179 1.4330771 \n\t\t2.472207e-07 0.68965191 1.386055 2.4702535e-07 0.8797819 1.4418111 2.4761042e-07 \n\t\t0.66383582 1.3739992 2.4771848e-07 0.94850188 1.376961 2.4754962e-07 0.93165779 1.4267571 \n\t\t2.4452572e-07 0.64348388 1.4326791 2.4480897e-07 0.62648988 1.4330311 2.4607937e-07 \n\t\t0.65916979 1.423313 2.4454968e-07 0.65843785 1.426851 2.460618e-07 0.68437588 1.416959 \n\t\t2.4434112e-07 0.67923391 1.3632951 2.4405364e-07 0.8944838 1.3612872 2.4563394e-07 \n\t\t0.9452979 1.3545793 2.4413697e-07 0.93293792 1.3573611 2.4576968e-07 0.96525979 1.3502591 \n\t\t2.4405529e-07 0.94869375 1.4218551 2.4379122e-07 0.64411187 1.4161451 2.4345951e-07 \n\t\t0.65892184 1.4248791 2.448858e-07 0.66096383 1.409593 2.4313243e-07 0.67735589 1.3582571 \n\t\t2.4293686e-07 0.88540375 1.3688673 2.4455085e-07 0.88469392 1.4511911 2.4873933e-07 \n\t\t0.65520191 1.4541011 2.4879861e-07 0.64470387 1.439273 2.4628838e-07 0.63885188 1.447049 \n\t\t2.486245e-07 0.66932583 1.3744153 2.4578313e-07 0.89475977 1.378993 2.4819303e-07 \n\t\t0.94050592 1.4186831 2.447224e-07 0.68231785 1.4341971 2.4555877e-07 0.64033383 1.4453111 \n\t\t2.465398e-07 0.62051988 1.4451591 2.4806485e-07 0.66213787 1.4418991 2.4863317e-07 \n\t\t0.69095778 1.3911372 2.4834958e-07 0.89425391 1.3882333 2.4771495e-07 0.88926375 \n\t\t1.3733693 2.4756164e-07 0.94690388 1.3752593 2.4826633e-07 0.95798987 1.4464531 2.4807142e-07 \n\t\t0.65693784 1.4402471 2.4763486e-07 0.67099184 1.437049 2.472828e-07 0.6748178 1.4354711 \n\t\t2.4754547e-07 0.68843377 1.387151 2.4737258e-07 0.88455975 -1.4285949 -1.951566e-07 \n\t\t0.69096804 -1.435233 -1.972556e-07 0.6621381 -1.429369 -1.9535024e-07 0.6889801 -1.427501 \n\t\t-1.9492398e-07 0.69267404 -1.3781747 -1.7978311e-07 0.89463812 -1.378201 -1.7988215e-07 \n\t\t0.89208603 -1.3771907 -1.7991245e-07 0.88707399 -1.4260989 -1.9483754e-07 0.68917203 \n\t\t-1.3761289 -1.8001961e-07 0.87978214 -1.3640727 -1.7559869e-07 0.94850212 -1.3670349 \n\t\t-1.766834e-07 0.93165803 -1.422753 -1.9665255e-07 0.62649012 -1.4293469 -1.9721203e-07 \n\t\t0.63885212 -1.435385 -1.9882765e-07 0.62052011 -1.416831 -1.9510466e-07 0.64348412 \n\t\t-1.423105 -1.95491e-07 0.65917003 -1.4133869 -1.9401578e-07 0.65843809 -1.416925 \n\t\t-1.9359766e-07 0.68437612 -1.407033 -1.9225963e-07 0.67923415 -1.3644887 -1.7766268e-07 \n\t\t0.89476001 -1.353369 -1.7595379e-07 0.89448404 -1.3446528 -1.7317539e-07 0.93293816 \n\t\t-1.340333 -1.7192129e-07 0.94869399 -1.411929 -1.9432343e-07 0.64411211 -1.406219 \n\t\t-1.9288957e-07 0.65892208 -1.3996669 -1.9119069e-07 0.67735612 -1.408757 -1.9241142e-07 \n\t\t0.68231809 -1.348331 -1.7551275e-07 0.88540399 -1.3589407 -1.7717947e-07 0.88469416 \n\t\t-1.441265 -1.9844624e-07 0.65520215 -1.431973 -1.9567923e-07 0.69095814 -1.369067 \n\t\t-1.7666834e-07 0.94050616 -1.3513607 -1.7375257e-07 0.94529814 -1.347435 -1.7240289e-07 \n\t\t0.96526003 -1.424271 -1.9637213e-07 0.64033413 -1.436527 -1.9764914e-07 0.65693808 \n\t\t-1.414953 -1.941639e-07 0.66096413 -1.430321 -1.9616674e-07 0.67099214 -1.3772249 \n\t\t-1.8001127e-07 0.88455999 -1.4320389 -1.9634318e-07 0.67338812 -1.4371229 -1.9728034e-07 \n\t\t0.66932607 -1.444175 -1.9928676e-07 0.6447041 -1.4373989 -1.9786194e-07 0.65484214 \n\t\t-1.3812107 -1.8026678e-07 0.89425415 -1.3783067 -1.800035e-07 0.88926399 -1.3634428 \n\t\t-1.7556076e-07 0.94690412 -1.3653327 -1.7544045e-07 0.95799011 -1.431885 -1.966748e-07 \n\t\t0.66383612 -1.427123 -1.9552995e-07 0.67481804 -1.425545 -1.9477935e-07 0.688434 \n\t\t-1.423151 -1.9436391e-07 0.68965214 1.8338991 3.2177786e-07 1.0279717 1.8848934 3.3122032e-07 \n\t\t1.0698578 1.8809232 3.2992907e-07 1.0516517 1.8890474 3.3935115e-07 1.2711178 1.7743194 \n\t\t3.2011187e-07 1.2307538 1.7306573 3.220502e-07 1.4642658 1.7455672 3.2392072e-07 \n\t\t1.4525858 1.6789274 3.1321068e-07 1.4416398 1.8734534 3.276383e-07 1.0211238 1.7847934 \n\t\t3.1196754e-07 0.96835178 1.8196394 3.1829262e-07 0.99355376 1.8435391 3.2223906e-07 \n\t\t1.0003119 1.8121533 3.1758671e-07 1.0056877 1.7772611 3.1124424e-07 0.98020977 1.8264494 \n\t\t3.2107789e-07 1.0401138 1.8772632 3.2890324e-07 1.0392897 1.8475754 3.2354058e-07 \n\t\t1.0185198 1.8803352 3.378853e-07 1.2679218 1.8534912 3.3337574e-07 1.2582638 1.8699812 \n\t\t3.3735398e-07 1.2966638 1.8431754 3.3283888e-07 1.2866979 1.7215474 3.2089255e-07 \n\t\t1.4710058 1.6841614 3.1499152e-07 1.4677538 1.8786231 3.388086e-07 1.2998497;\n\tsetAttr \".pt[2656:2821]\" 1.7068534 3.190589e-07 1.4827797 1.6692032 3.1311188e-07 \n\t\t1.4793898 1.6452234 3.0917255e-07 1.4731557 1.6005992 3.0216356e-07 1.4702017 1.6769272 \n\t\t3.1341864e-07 1.4555398 1.6471132 3.0894589e-07 1.4592118 1.6023592 3.0192425e-07 \n\t\t1.4564577 1.7031032 3.0927106e-07 1.2353098 1.7130034 3.0979666e-07 1.2082998 1.7517651 \n\t\t3.1631373e-07 1.2223918 1.7643491 3.195824e-07 1.2579517 1.7418594 3.1579702e-07 \n\t\t1.2496638 -1.7643926 -2.2698757e-07 1.2307538 -1.8165226 -2.4214054e-07 1.0401142 \n\t\t-1.8791206 -2.4322307e-07 1.2711183 -1.8749666 -2.5006949e-07 1.0698581 -1.8709968 \n\t\t-2.5013316e-07 1.0516522 -1.8686968 -2.4054245e-07 1.2998502 -1.6690006 -2.0439278e-07 \n\t\t1.4416398 -1.6670009 -2.035664e-07 1.4555398 -1.8635266 -2.5011414e-07 1.0211241 \n\t\t-1.7748666 -2.3837052e-07 0.96835214 -1.8336128 -2.4626374e-07 1.0003121 -1.8097126 \n\t\t-2.4282014e-07 0.993554 -1.8239728 -2.4374415e-07 1.0279722 -1.7673348 -2.3676485e-07 \n\t\t0.98021013 -1.8022265 -2.4121124e-07 1.0056882 -1.7030766 -2.1834333e-07 1.2082998 \n\t\t-1.8673369 -2.5002728e-07 1.0392902 -1.8376486 -2.4621019e-07 1.0185201 -1.8704089 \n\t\t-2.4199514e-07 1.2679223 -1.8435649 -2.3820431e-07 1.2582641 -1.8600549 -2.3932489e-07 \n\t\t1.2966642 -1.8332486 -2.3555138e-07 1.2866981 -1.7116206 -2.0988931e-07 1.4710063 \n\t\t-1.6742346 -2.0423029e-07 1.4677542 -1.7356409 -2.1428833e-07 1.4525863 -1.6969266 \n\t\t-2.0717947e-07 1.4827802 -1.6592768 -2.014848e-07 1.4793903 -1.6352966 -1.980093e-07 \n\t\t1.473156 -1.5906729 -1.9122021e-07 1.470202 -1.7207305 -2.1154852e-07 1.4642663 -1.6371869 \n\t\t-1.9882039e-07 1.4592121 -1.5924329 -1.9200372e-07 1.4564577 -1.6931769 -2.1580777e-07 \n\t\t1.2353101 -1.7418388 -2.2381178e-07 1.2223921 -1.7544228 -2.2443417e-07 1.257952 \n\t\t-1.7319326 -2.2126548e-07 1.2496641 0.20001249 -2.1030756e-08 -1.3962722 0.12116247 \n\t\t-4.1532534e-08 -1.6196402 0.1710469 -2.5732582e-08 -1.4022822 0.13077608 -3.2204863e-08 \n\t\t-1.4089003 0.069316074 -4.1943554e-08 -1.4152622 0.0049632145 -5.1964136e-08 -1.4171802 \n\t\t0.12116688 -4.1266553e-08 -1.6125102 0.14625329 -3.7310325e-08 -1.6104202 0.12115447 \n\t\t-4.159077e-08 -1.6211722 0.15021449 -3.658695e-08 -1.6074382 0.080889679 -4.7636231e-08 \n\t\t-1.6163442 0.080889672 -4.7983985e-08 -1.6256902 0.08088927 -4.7979359e-08 -1.6255642 \n\t\t0.14987829 -3.6673679e-08 -1.6083722 0.15038992 -3.4182783e-08 -1.5435541 0.12116692 \n\t\t-3.8853781e-08 -1.5476661 0.080889724 -4.529155e-08 -1.5533301 0.1561479 -3.5486927e-08 \n\t\t-1.6025282 0.035822686 -5.4603774e-08 -1.6163442 0.035822734 -5.2259093e-08 -1.5533301 \n\t\t0.035822276 -5.4946902e-08 -1.6255642 0.035822678 -5.4951528e-08 -1.6256902 0.004963235 \n\t\t-5.937477e-08 -1.6163442 0.0049632289 -5.9722524e-08 -1.6256902 0.0049632262 -5.9717834e-08 \n\t\t-1.6255642 0.20607132 -1.8900826e-08 -1.364204 0.11952893 -3.8679122e-08 -1.5361661 \n\t\t0.16945435 -2.456196e-08 -1.364204 0.15614553 -3.3018043e-08 -1.5361661 0.13149215 \n\t\t-3.0431071e-08 -1.364204 0.081567124 -4.4548173e-08 -1.5361661 0.067689739 -4.0295188e-08 \n\t\t-1.364204 0.034725528 -5.1790074e-08 -1.5361661 0.0049632872 -4.9992952e-08 -1.364204 \n\t\t0.20619129 -1.9253473e-08 -1.3741802 0.0049632266 -5.0364157e-08 -1.3741802 1.3407893 \n\t\t2.2392166e-07 0.44694155 1.3428233 2.2617778e-07 0.49912435 1.3456773 2.2408719e-07 \n\t\t0.43108037 1.3565211 2.293244e-07 0.52677578 1.3640292 2.3413439e-07 0.6248498 1.3682572 \n\t\t2.3749499e-07 0.69759977 1.3351433 2.3087227e-07 0.65720177 1.3246772 2.2140145e-07 \n\t\t0.44615635 1.3372133 2.2446173e-07 0.47631475 1.3361293 2.2562553e-07 0.51209617 \n\t\t1.3705171 2.3872548e-07 0.72127986 1.3503971 2.3568964e-07 0.72328979 1.3513571 2.3636322e-07 \n\t\t0.73740387 1.3710651 2.3932569e-07 0.73513377 1.3363173 2.2711195e-07 0.55126357 \n\t\t1.3108733 2.2721767e-07 0.6598258 1.3181013 2.2436315e-07 0.55307639 1.3042413 2.2966138e-07 \n\t\t0.75305778 1.3343893 2.342066e-07 0.74994588 1.3069773 2.2018237e-07 0.4869372 1.3456733 \n\t\t2.2549152e-07 0.46883902 1.3438993 2.2574058e-07 0.48290396 1.3084693 2.1991265e-07 \n\t\t0.4734892 1.3061013 2.2062119e-07 0.50237018 1.3430413 2.2689251e-07 0.51742733 1.3072853 \n\t\t2.222129e-07 0.54022878 1.3389193 2.3031986e-07 0.62666577 1.3439813 2.2782659e-07 \n\t\t0.53862536 1.2948693 2.2671857e-07 0.7129097 1.3280132 2.2953523e-07 0.65089381 1.3543192 \n\t\t2.3033314e-07 0.56303519 1.3140272 2.2426975e-07 0.56749415 1.3652111 2.351567e-07 \n\t\t0.64741385 1.3341073 2.3276922e-07 0.7124877 1.3683171 2.3776457e-07 0.70459569 1.3063653 \n\t\t2.213127e-07 0.5198586 1.3313972 2.3182969e-07 0.69849777 1.3314852 2.3209289e-07 \n\t\t0.70520568 1.3009193 2.2447735e-07 0.62753779 -0.14621907 -7.9764853e-08 -1.5361661 \n\t\t-0.19008611 -8.1341597e-08 -1.3962719 -0.13995171 -8.148259e-08 -1.6083722 -0.16112053 \n\t\t-7.7087023e-08 -1.402282 -0.12084954 -7.1107209e-08 -1.4089 -0.02589592 -6.4488788e-08 \n\t\t-1.6255642 -0.059389737 -6.1842002e-08 -1.4152622 -0.11124032 -7.7197662e-08 -1.6125102 \n\t\t-0.1363267 -8.0998355e-08 -1.6104202 -0.14028791 -8.1499813e-08 -1.6074382 -0.11122793 \n\t\t-7.7518045e-08 -1.6211722 -0.070963122 -7.1113298e-08 -1.6163442 -0.070963129 -7.1461052e-08 \n\t\t-1.6256902 -0.11123613 -7.746231e-08 -1.6196402 -0.070962913 -7.1456334e-08 -1.6255642 \n\t\t-0.14622131 -8.223445e-08 -1.6025282 -0.025896115 -6.4145752e-08 -1.6163442 -0.025896072 \n\t\t-6.1801074e-08 -1.5533301 -0.025896121 -6.4493506e-08 -1.6256902 -0.19614467 -8.1085069e-08 \n\t\t-1.364204 -0.10960247 -7.4103781e-08 -1.5361661 -0.15952764 -7.5423927e-08 -1.364204 \n\t\t-0.12156565 -6.9554851e-08 -1.364204 -0.071640477 -6.8234698e-08 -1.5361661 -0.057763264 \n\t\t-5.9690734e-08 -1.364204 -0.024798868 -6.0992789e-08 -1.5361661 0.0049632774 -5.6391443e-08 \n\t\t-1.5361661 0.0049632755 -5.7030093e-08 -1.5533301 -0.070963077 -6.8768621e-08 -1.5533301 \n\t\t-0.11124028 -7.4784886e-08 -1.5476661 -0.14046347 -7.9149913e-08 -1.5435541 -0.1962647 \n\t\t-8.1474823e-08 -1.3741802 -1.3339727 -1.8826941e-07 0.4829042 -1.3272867 -1.8748091e-07 \n\t\t0.47631499 -1.3308628 -1.8912672e-07 0.44694179 -1.3465948 -1.8858842e-07 0.52677602 \n\t\t-1.3583908 -1.8379568e-07 0.70459592 -1.3241807 -1.7821301e-07 0.71248794 -1.3244628 \n\t\t-1.7686286e-07 0.74994612 -1.3289927 -1.821503e-07 0.62666601 -1.3262028 -1.8598195e-07 \n\t\t0.51209641 -1.3357507 -1.9047259e-07 0.43108061 -1.3196347 -1.880253e-07 0.42988983;\n\tsetAttr \".pt[2822:2987]\" -1.3263907 -1.8455364e-07 0.55126381 -1.3541028 -1.8609998e-07 \n\t\t0.62485003 -1.3304288 -1.8245187e-07 0.62452805 -1.3605908 -1.8351501e-07 0.7212801 \n\t\t-1.3404708 -1.8032959e-07 0.72329003 -1.3611388 -1.8308425e-07 0.73513401 -1.3009467 \n\t\t-1.7658043e-07 0.65982592 -1.3252168 -1.8043032e-07 0.65720201 -1.2970507 -1.8241106e-07 \n\t\t0.48693743 -1.3357468 -1.8906704e-07 0.4688392 -1.3328967 -1.8749952e-07 0.49912459 \n\t\t-1.2961748 -1.8170138e-07 0.50237036 -1.3331147 -1.868522e-07 0.51742756 -1.2973588 \n\t\t-1.8047577e-07 0.54022896 -1.3340547 -1.8620877e-07 0.5386256 -1.2909927 -1.7624289e-07 \n\t\t0.62753803 -1.3214709 -1.7831459e-07 0.69849801 -1.3583308 -1.8404671e-07 0.69760001 \n\t\t-1.3215588 -1.7807861e-07 0.70520592 -1.3443929 -1.8689883e-07 0.56303543 -1.3552848 \n\t\t-1.8544314e-07 0.64741409 -1.2985427 -1.8314211e-07 0.47348943 -1.3180869 -1.795627e-07 \n\t\t0.65089405 -1.3041009 -1.805036e-07 0.56749439 -1.2849427 -1.7213097e-07 0.71290994 \n\t\t-1.2964387 -1.8109147e-07 0.51985884 1.1968073 1.7881121e-07 -0.16716817 1.2245473 \n\t\t1.8399911e-07 -0.1430022 1.1964033 1.7350848e-07 -0.3080022 1.1677953 1.6989607e-07 \n\t\t-0.28622016 1.2474873 1.9104812e-07 -0.048874207 1.2328672 1.8561627e-07 -0.1341102 \n\t\t1.3608831 2.1714645e-07 0.18136422 1.3578612 2.1318876e-07 0.087555796 1.3384272 \n\t\t2.0310657e-07 -0.10265821 1.2039753 1.7471859e-07 -0.30694219 1.1840153 1.68304e-07 \n\t\t-0.39640221 1.1506133 1.6595864e-07 -0.32064816 1.0853193 1.5728975e-07 -0.28232822 \n\t\t1.1224113 1.6124544e-07 -0.33013621 1.0704893 1.5323759e-07 -0.32961217 1.1322333 \n\t\t1.6449968e-07 -0.28348818 1.1649172 1.7383147e-07 -0.16849622 1.1338253 1.6912662e-07 \n\t\t-0.1657522 1.1589713 1.6881053e-07 -0.27873018 1.1883593 1.7720335e-07 -0.17527822 \n\t\t1.1811293 1.7801381e-07 -0.12345618 1.2036012 1.8102398e-07 -0.13592818 1.1258932 \n\t\t1.6070032e-07 -0.35925421 1.1538392 1.6546659e-07 -0.34727618 1.1598092 1.639454e-07 \n\t\t-0.4129642 1.1234792 1.5831873e-07 -0.41323021 1.0751673 1.5286592e-07 -0.3590382 \n\t\t1.1897053 1.6925297e-07 -0.39454022 1.1662192 1.6501284e-07 -0.41091022 1.3030452 \n\t\t1.9373063e-07 -0.20762616 1.2703772 1.8873099e-07 -0.20625617 1.1341313 1.600435e-07 \n\t\t-0.41113618 1.1901853 1.8045543e-07 -0.095464207 1.1665393 1.7693861e-07 -0.091730185 \n\t\t1.1957413 1.8338902e-07 -0.039708205 1.2201793 1.8700412e-07 -0.044092186 1.2053872 \n\t\t1.853778e-07 -0.026338199 1.2298713 1.8899644e-07 -0.030818203 1.2834831 2.0652601e-07 \n\t\t0.21753623 1.2118613 1.8329649e-07 -0.1091742 1.2390813 1.8927388e-07 -0.061630197 \n\t\t1.1577493 1.7453034e-07 -0.11993018 1.3463391 2.1599507e-07 0.21085162 1.3422232 \n\t\t2.1151918e-07 0.10766183 1.3205771 2.0038713e-07 -0.10157615 1.2868131 2.0315251e-07 \n\t\t0.11303583 1.2802591 1.9425487e-07 -0.098860174 1.3220191 1.9698258e-07 -0.19906616 \n\t\t0.78174341 1.1243177e-07 -0.22653222 0.7655955 1.1074728e-07 -0.20470816 0.8799395 \n\t\t1.3157363e-07 -0.12009624 0.31311542 6.3544867e-08 0.40678465 0.89205152 1.3283717e-07 \n\t\t-0.13646424 0.75030339 1.0670539e-07 -0.24979617 0.45910141 5.3666707e-08 -0.46527416 \n\t\t0.45910138 5.3666703e-08 -0.46527416 0.30012938 2.4712039e-08 -0.58290619 0.30012935 \n\t\t2.4711962e-08 -0.58290815 0.29614341 2.4300142e-08 -0.57741416 0.29614338 2.4300139e-08 \n\t\t-0.57741416 0.44352338 5.2086026e-08 -0.44302815 0.0070560914 -5.4116276e-09 -0.17475815 \n\t\t0.28418136 2.3063887e-08 -0.56093615 0.45520738 5.3271631e-08 -0.45971215 0.7462675 \n\t\t1.0628443e-07 -0.24434018 0.0028704214 7.1530137e-09 0.18031347 0.31311548 6.3544888e-08 \n\t\t0.40678501 0.8799395 1.3157364e-07 -0.12009624 0.77770752 1.1201082e-07 -0.22107624 \n\t\t0.76113939 1.0960314e-07 -0.21694227 0.75710142 1.0918186e-07 -0.21148622 0.74311954 \n\t\t1.0663524e-07 -0.22183216 0.75710142 1.0918186e-07 -0.21148616 0.73100954 1.0537202e-07 \n\t\t-0.20546424 0.78174341 1.1243177e-07 -0.22653222 0.76113939 1.0960314e-07 -0.21694221 \n\t\t0.30438545 6.195485e-08 0.40032563 0.7655955 1.1074728e-07 -0.20470822 0.7449894 \n\t\t1.0791832e-07 -0.19511825 0.74715751 1.0705651e-07 -0.22728819 0.73100954 1.0537202e-07 \n\t\t-0.20546418 0.7449894 1.0791832e-07 -0.19511819 0.77770752 1.1201081e-07 -0.22107621 \n\t\t0.74311954 1.0663524e-07 -0.22183222 0.74715751 1.0705651e-07 -0.22728825 0.75030339 \n\t\t1.0670539e-07 -0.24979623 0.44352341 5.208603e-08 -0.44302815 0.7462675 1.0628443e-07 \n\t\t-0.24434024 0.45520741 5.3271634e-08 -0.45971215 0.73415542 1.050209e-07 -0.22797219 \n\t\t0.28418139 2.306389e-08 -0.56093615 0.28167555 5.7818507e-08 0.3835206 0.0070560686 \n\t\t-5.4116307e-09 -0.17475814 0.0028706884 -6.0587073e-09 -0.17475814 0.73415542 1.0502089e-07 \n\t\t-0.22797213 0.8815555 1.3174221e-07 -0.12228021 0.89608949 1.3325845e-07 -0.14192021 \n\t\t0.89608949 1.3325837e-07 -0.14192224 0.87758154 1.3132762e-07 -0.11691022 0.89205152 \n\t\t1.3283717e-07 -0.13646424 0.88056153 1.3163847e-07 -0.12093821 0.42745945 8.4371187e-08 \n\t\t0.49139538 0.8815555 1.3174221e-07 -0.12228021 0.88056153 1.3163847e-07 -0.12093821 \n\t\t0.9258455 1.3988642e-07 -0.087428212 0.92311352 1.396207e-07 -0.083218217 0.42745942 \n\t\t8.437118e-08 0.49139544 0.47299153 9.2664266e-08 0.52508742 0.87758154 1.3132764e-07 \n\t\t-0.11691022 0.90850753 1.3672852e-07 -0.10025823 0.90516752 1.3635211e-07 -0.096496224 \n\t\t0.91058153 1.3702893e-07 -0.10080221 0.92604154 1.3984477e-07 -0.089362234 -1.1868807 \n\t\t-1.8971674e-07 -0.16716793 -1.2019347 -1.8988626e-07 -0.10917402 -1.2146207 -1.9310627e-07 \n\t\t-0.14300196 -1.1864767 -1.9489454e-07 -0.30800197 -1.1578687 -1.8966115e-07 -0.28621992 \n\t\t-1.2375607 -1.9315053e-07 -0.048873968 -1.2229407 -1.9406173e-07 -0.13410996 -1.3509568 \n\t\t-2.0211513e-07 0.18136446 -1.3285009 -2.0921146e-07 -0.10265797 -1.1940488 -1.9602577e-07 \n\t\t-0.30694196 -1.1936747 -1.8960472e-07 -0.13592795 -1.1439127 -1.8977529e-07 -0.34727594 \n\t\t-1.1797787 -1.9707898e-07 -0.39453998 -1.0753927 -1.767652e-07 -0.28232804 -1.1124847 \n\t\t-1.8427865e-07 -0.33013609 -1.1223067 -1.8406145e-07 -0.28348801 -1.0605627 -1.7623179e-07 \n\t\t-0.32961205 -1.1238987 -1.7992679e-07 -0.16575202 -1.1549907 -1.8483583e-07 -0.16849604 \n\t\t-1.1490448 -1.8801823e-07 -0.27873001 -1.1784327 -1.8871241e-07 -0.17527798 -1.1712028 \n\t\t-1.8566641e-07 -0.123456 -1.1159667 -1.8590042e-07 -0.35925397 -1.1406868 -1.8828575e-07 \n\t\t-0.32064793 -1.1740887 -1.9626856e-07 -0.39640197 -1.1498827 -1.9314245e-07 -0.41296396 \n\t\t-1.0652407 -1.7804994e-07 -0.35903797;\n\tsetAttr \".pt[2988:3153]\" -1.1135527 -1.8753559e-07 -0.41323009 -1.1562927 -1.9405704e-07 \n\t\t-0.41090998 -1.3120928 -2.1026193e-07 -0.19906598 -1.2604508 -2.0254541e-07 -0.20625599 \n\t\t-1.1242048 -1.8910453e-07 -0.41113594 -1.1802588 -1.8602495e-07 -0.095463969 -1.1566128 \n\t\t-1.8223024e-07 -0.091730006 -1.1478227 -1.8192056e-07 -0.11993 -1.1858147 -1.8480932e-07 \n\t\t-0.039707996 -1.2102528 -1.8875066e-07 -0.044091977 -1.1954607 -1.8580315e-07 -0.026337992 \n\t\t-1.2199447 -1.8975517e-07 -0.030817995 -1.2291547 -1.9232554e-07 -0.061629988 -1.3479348 \n\t\t-2.0513842e-07 0.087556034 -1.3364128 -1.9876938e-07 0.21085186 -1.3322968 -2.019726e-07 \n\t\t0.10766205 -1.3106508 -2.0641151e-07 -0.10157597 -1.2735568 -1.8880287e-07 0.21753643 \n\t\t-1.2768868 -1.9320602e-07 0.11303604 -1.2703328 -2.0007712e-07 -0.098859936 -1.2931188 \n\t\t-2.0764699e-07 -0.20762599 -0.88616246 -1.422851e-07 -0.14192206 -0.41753256 -4.6268035e-08 \n\t\t0.49139589 -0.75566846 -1.2444637e-07 -0.20470804 -0.76778048 -1.2692797e-07 -0.22107609 \n\t\t-0.44917461 -8.6756501e-08 -0.46527416 -0.44917464 -8.6756501e-08 -0.46527416 -0.29020259 \n\t\t-6.6555714e-08 -0.58290619 -0.29020262 -6.6555785e-08 -0.58290803 -0.43359664 -8.3520334e-08 \n\t\t-0.44302815 0.0028705916 -6.0587229e-09 -0.17475815 -0.27425462 -6.3272608e-08 -0.56093615 \n\t\t-0.44528064 -8.5947512e-08 -0.45971203 -0.28621665 -6.5735108e-08 -0.57741404 -0.3031885 \n\t\t-3.1738235e-08 0.40678507 -0.4175325 -4.6268028e-08 0.49139589 -0.88212448 -1.4145772e-07 \n\t\t-0.13646406 -0.74717462 -1.2338539e-07 -0.21148604 -0.29445857 -3.0628893e-08 0.40032572 \n\t\t-0.28047657 -2.8852176e-08 0.38997984 -0.7350626 -1.2090379e-07 -0.19511807 -0.7512126 \n\t\t-1.2421269e-07 -0.21694209 -0.77181661 -1.2775499e-07 -0.22653204 -0.7512126 -1.2421269e-07 \n\t\t-0.21694209 -0.75566846 -1.2444637e-07 -0.20470804 -0.29445854 -3.062889e-08 0.40032569 \n\t\t-0.73723048 -1.2243596e-07 -0.22728807 -0.74037659 -1.2375986e-07 -0.24979605 -0.73723048 \n\t\t-1.2243596e-07 -0.22728807 -0.27174851 -2.7743136e-08 0.38352028 -0.7350626 -1.2090379e-07 \n\t\t-0.19511807 -0.74717462 -1.2338539e-07 -0.21148604 -0.77181661 -1.2775499e-07 -0.22653204 \n\t\t-0.7331925 -1.2160866e-07 -0.22183204 -0.72108251 -1.1912737e-07 -0.20546407 -0.74037659 \n\t\t-1.2375986e-07 -0.24979605 -0.27174845 -2.7743114e-08 0.38352066 -0.43359661 -8.3520334e-08 \n\t\t-0.44302815 -0.73634046 -1.2293285e-07 -0.24434006 -0.72422862 -1.2045126e-07 -0.22797205 \n\t\t-0.44528061 -8.5947512e-08 -0.45971203 -0.27425459 -6.3272608e-08 -0.56093615 -0.28621662 \n\t\t-6.5735108e-08 -0.57741404 0.0028706258 7.1530444e-09 0.18031345 -0.76778048 -1.2692797e-07 \n\t\t-0.22107609 -0.72108251 -1.1912738e-07 -0.20546407 -0.73634046 -1.2293285e-07 -0.24434006 \n\t\t-0.72422862 -1.2045128e-07 -0.22797205 -0.7331925 -1.2160866e-07 -0.22183204 -0.88616246 \n\t\t-1.4228502e-07 -0.14192003 -0.87162846 -1.3930723e-07 -0.12228009 -0.88212448 -1.4145772e-07 \n\t\t-0.13646406 -0.87001246 -1.3897612e-07 -0.12009612 -0.8706345 -1.3910362e-07 -0.12093809 \n\t\t-0.87001449 -1.3897643e-07 -0.12009612 -0.87162846 -1.3930723e-07 -0.12228009 -0.91591847 \n\t\t-1.4485785e-07 -0.087428033 -0.8676545 -1.3849302e-07 -0.11691004 -0.91318649 -1.4427881e-07 \n\t\t-0.083218038 -0.8706345 -1.3910362e-07 -0.12093809 -0.8676545 -1.3849302e-07 -0.11691004 \n\t\t-0.41753253 -4.6268042e-08 0.4913955 -0.46306449 -5.2053839e-08 0.52508748 -0.89524049 \n\t\t-1.4199836e-07 -0.096496046 -0.90065449 -1.429956e-07 -0.10080209 -0.91611451 -1.4496011e-07 \n\t\t-0.089362115 -0.89858049 -1.4265471e-07 -0.10025805 0.22156498 3.3415056e-08 -0.022570012 \n\t\t0.00496291 -8.9863867e-09 -0.26213402 0.21626097 2.4041565e-08 -0.25244802 0.0049629104 \n\t\t-1.9798241e-10 -0.025941996 0.22931896 4.3278074e-08 0.21028461 0.0049629156 8.6656211e-09 \n\t\t0.21227102 0.23795494 5.2720264e-08 0.42816442 0.245905 6.0831262e-08 0.61311799 \n\t\t0.0049629328 2.3967676e-08 0.62352002 0.25545102 7.0731396e-08 0.83952397 0.35749102 \n\t\t8.566338e-08 0.81684595 0.364259 9.0129447e-08 0.90875208 0.64787704 1.2819632e-07 \n\t\t0.75336796 0.65515518 1.3049124e-07 0.78480405 0.78433716 1.428955e-07 0.58141595 \n\t\t0.88937509 1.5113422e-07 0.3663972 0.25924101 7.4886039e-08 0.9354341 0.26006502 \n\t\t7.6391274e-08 0.97246408 0.004962971 3.7757307e-08 0.99412197 0.75744504 1.3638166e-07 \n\t\t0.5180921 0.87449509 1.4813608e-07 0.3476485 0.85481703 1.4419496e-07 0.32349211 \n\t\t0.90807909 1.4920882e-07 0.23693533 0.88579911 1.4505947e-07 0.21799454 0.81076306 \n\t\t1.3541694e-07 0.27062553 0.82073301 1.3419965e-07 0.19648494 0.72701502 1.2642231e-07 \n\t\t0.37686852 0.71751702 1.2062689e-07 0.26057914 0.60045105 1.1112803e-07 0.49170816 \n\t\t0.58538502 1.0325788e-07 0.34279454 0.34304902 7.528768e-08 0.59800202 0.33198696 \n\t\t6.6896305e-08 0.41844362 0.32033497 5.721866e-08 0.20676757 0.57176101 9.4628241e-08 \n\t\t0.16747795 0.31019297 4.7236004e-08 -0.019380001 0.56154704 8.6072937e-08 -0.020010049 \n\t\t0.55671901 7.8426879e-08 -0.20544003 0.30366302 3.7929787e-08 -0.24235606 0.71169907 \n\t\t1.1457389e-07 0.12207592 0.8300271 1.3170616e-07 0.090853937 0.83635712 1.2828427e-07 \n\t\t-0.027412103 0.70843112 1.0848101e-07 -0.028094074 0.83988309 1.2422967e-07 -0.15103208 \n\t\t0.70788699 1.0276193e-07 -0.17953603 0.71022898 9.7828462e-08 -0.32185611 0.84076101 \n\t\t1.1983761e-07 -0.2727181 0.71485913 9.3776677e-08 -0.44998804 0.83776098 1.1520783e-07 \n\t\t-0.38468012 0.81916702 1.0648295e-07 -0.54190606 0.73019302 8.8938094e-08 -0.64374 \n\t\t0.59167117 6.3553507e-08 -0.75039607 0.56720507 6.8193224e-08 -0.52404416 0.55924898 \n\t\t7.2524543e-08 -0.37458003 0.30284095 3.0280731e-08 -0.44451207 0.30633497 2.4191145e-08 \n\t\t-0.62269002 0.32067099 1.6294887e-08 -0.894472 0.21497497 1.6067979e-08 -0.46139807 \n\t\t0.21679695 9.4835375e-09 -0.64592808 0.22612298 4.3906873e-10 -0.92775202 0.0049629272 \n\t\t-2.4177741e-08 -0.67040807 0.23714301 -3.5199168e-09 -1.0799402 0.0049629696 -4.0664546e-08 \n\t\t-1.113498 0.24738503 -5.1543445e-09 -1.1664222 0.62822706 1.2223738e-07 0.67486596 \n\t\t0.33498302 1.2995261e-08 -1.042618 0.61590904 6.297639e-08 -0.86661601 0.75672513 \n\t\t8.9679226e-08 -0.73406398 0.78707504 9.2990632e-08 -0.77117407 0.90275115 1.1803991e-07 \n\t\t-0.5786041 0.86241919 1.1222719e-07 -0.56724215 0.88105899 1.2255117e-07 -0.36723015 \n\t\t0.88743895 1.2771892e-07 -0.25485405 0.9231391 1.3814896e-07 -0.12287809 0.91829509 \n\t\t1.4175021e-07 -0.0059660813 0.90627313 1.4413439e-07 0.10806192 0.24007514 -1.2200968e-08 \n\t\t-1.3254303 0.32705918 2.1154993e-09 -1.3020922 0.25491312 -1.1581336e-08 -1.37043 \n\t\t0.34996912 4.5722413e-09 -1.3312582;\n\tsetAttr \".pt[3154:3319]\" 0.25704712 -1.0842344e-08 -1.359436 0.0049630543 -5.1104188e-08 \n\t\t-1.394068 0.2253592 -1.2001585e-08 -1.2589263 0.0049631409 -4.6754778e-08 -1.2771763 \n\t\t0.21123523 -1.1164751e-08 -1.1777502 0.25156307 -9.3901082e-09 -1.2976202 0.24629506 \n\t\t-8.5967722e-09 -1.25441 0.0049630064 -4.7189324e-08 -1.2888542 0.23706704 -7.0815158e-09 \n\t\t-1.175344 0.0049629835 -4.3915108e-08 -1.2008582 0.28823122 1.3815937e-09 -1.1604842 \n\t\t0.7598812 8.174959e-08 -0.96028996 0.42846113 1.7962266e-08 -1.297534 0.41357517 \n\t\t1.733552e-08 -1.2525262 0.75483716 7.840972e-08 -1.0290922 0.74059314 7.5841022e-08 \n\t\t-1.0389422 0.42815712 1.8230931e-08 -1.2890502 0.41658908 1.8643886e-08 -1.2298862 \n\t\t0.70803708 7.1957039e-08 -1.008054 0.90742725 1.0943396e-07 -0.82932222 0.9238413 \n\t\t1.1277438e-07 -0.8077482 1.0420709 1.4024587e-07 -0.5606901 1.0579309 1.4394388e-07 \n\t\t-0.5272041 1.0670731 1.4732734e-07 -0.47425812 0.93429321 1.1733149e-07 -0.72870219 \n\t\t0.86965913 1.0388739e-07 -0.82146001 1.1213852 1.6240274e-07 -0.29477012 1.1059572 \n\t\t1.584679e-07 -0.33641613 1.0695231 1.5137967e-07 -0.37553015 1.0039629 1.3364517e-07 \n\t\t-0.57974613 0.68784511 6.9844297e-08 -0.98093617 0.40743706 1.8730248e-08 -1.189538 \n\t\t0.39103103 1.8718188e-08 -1.1216942 0.84476513 1.0058348e-07 -0.80681813 0.79813707 \n\t\t9.4215366e-08 -0.78422213 0.91488117 1.1955241e-07 -0.58835608 0.97448504 1.290226e-07 \n\t\t-0.58149809 1.0361611 1.4565396e-07 -0.39079013 0.34810108 8.4852001e-09 -1.218334 \n\t\t0.36183712 6.6370389e-09 -1.325078 0.39672518 1.7137841e-08 -1.1878263 0.65585524 \n\t\t6.478988e-08 -0.9838562 0.37996322 1.7526199e-08 -1.1077422 0.75810724 8.2803375e-08 \n\t\t-0.92459822 0.8510952 9.9911631e-08 -0.85117626 0.3192952 3.4253331e-09 -1.2346302 \n\t\t0.81189513 1.4879564e-07 0.62547988 0.87260103 1.5413282e-07 0.51668292 0.83899117 \n\t\t1.5522275e-07 0.68562597 0.66797113 1.3322656e-07 0.80506605 0.70689118 1.4436465e-07 \n\t\t0.94269198 0.37084702 9.3332652e-08 0.96746594 0.3892031 1.0453219e-07 1.192188 0.54763913 \n\t\t1.2671796e-07 1.1301301 0.26281703 7.7691816e-08 0.99598205 0.27270111 8.7541878e-08 \n\t\t1.2196376 0.0049629728 3.863283e-08 1.0176519 0.25963902 7.6596216e-08 0.97974205 \n\t\t0.79929316 1.4654117e-07 0.61725193 0.85903502 1.5179118e-07 0.51011771 0.65778518 \n\t\t1.312293e-07 0.79371196 0.366027 9.2010872e-08 0.9519701 0.25843701 7.5922721e-08 \n\t\t0.96663606 0.0049629733 3.8009883e-08 1.0009099 0.33122304 8.7176382e-09 -1.141958 \n\t\t0.32653704 8.1930507e-09 -1.136586 0.64123505 6.4881803e-08 -0.9206382 0.78121716 \n\t\t9.2350874e-08 -0.76402807 0.78728306 9.3020709e-08 -0.7712301 0.90202105 1.1791848e-07 \n\t\t-0.57883412 0.65104711 6.5798233e-08 -0.93677819 0.33566105 9.2688461e-09 -1.1455842 \n\t\t0.24280904 -5.686104e-09 -1.1617 0.32208103 7.1682851e-09 -1.145612 0.78917515 1.4454973e-07 \n\t\t0.60577196 0.85421902 1.5069455e-07 0.50065595 0.84799504 1.4968244e-07 0.49931616 \n\t\t0.79499704 1.4552498e-07 0.60779196 0.65036303 1.2962541e-07 0.78144604 0.363713 \n\t\t9.1167465e-08 0.93891793 0.36612302 9.1741811e-08 0.94433993 0.0049629724 3.7529297e-08 \n\t\t0.98799407 0.044829234 -3.6939944e-08 -1.179044 0.24608302 -4.9857749e-09 -1.156482 \n\t\t0.0049629831 -4.3500378e-08 -1.1897122 0.0049629845 -4.3316646e-08 -1.1847743 0.014929777 \n\t\t-4.1612836e-08 -1.1803962 0.32810304 8.2225382e-09 -1.1423002 0.63546705 6.4181592e-08 \n\t\t-0.91549027 0.63991302 6.4552474e-08 -0.92399597 0.89578718 1.1716902e-07 -0.5730741 \n\t\t0.35647112 6.2953167e-09 -1.3119659 0.34976313 4.7911044e-09 -1.3245202 0.34978706 \n\t\t7.6511721e-09 -1.2477542 0.34296706 8.2075458e-09 -1.204464 0.34702313 3.6815149e-09 \n\t\t-1.3429562 0.32688719 2.334412e-09 -1.2954942 0.34678712 3.8963326e-09 -1.3362023 \n\t\t0.30726719 1.3917751e-09 -1.239306 0.30716318 1.6156176e-09 -1.2328579 0.34293908 \n\t\t6.1191612e-09 -1.260474 0.34301907 5.887431e-09 -1.2670342 0.33606306 6.4173329e-09 \n\t\t-1.2238902 0.33603308 6.6549273e-09 -1.2173802 0.32360104 7.2185053e-09 -1.150578 \n\t\t0.28815722 1.6065853e-09 -1.15413 0.35501507 7.9598914e-09 -1.2611799 0.35346314 \n\t\t5.3925495e-09 -1.32373 0.35886514 5.7399037e-09 -1.3368403 0.33365518 3.8152268e-09 \n\t\t-1.283818 0.33899918 4.1589865e-09 -1.2967839 0.3140192 3.0862195e-09 -1.221822 0.29503122 \n\t\t3.071551e-09 -1.1433202 0.30027521 3.4096019e-09 -1.156024 0.0049629165 -1.7036792e-08 \n\t\t-0.47849202 -0.21163902 -3.3560063e-08 -0.022569982 -0.20633504 -4.1293511e-08 -0.25244796 \n\t\t-0.21939303 -2.6094641e-08 0.21028464 -0.22802904 -1.9322773e-08 0.42816445 0.0049629235 \n\t\t1.694176e-08 0.43469566 -0.23597904 -1.366999e-08 0.61311799 0.0049629509 3.2619081e-08 \n\t\t0.85603005 -0.24552701 -6.7218644e-09 0.83952409 -0.347565 -2.3341174e-08 0.81684607 \n\t\t-0.35433298 -2.0967828e-08 0.90875208 -0.63795096 -7.059797e-08 0.75336808 -0.64522886 \n\t\t-7.0553469e-08 0.78480417 -0.77441084 -9.8093345e-08 0.58141607 -0.84429294 -1.1190238e-07 \n\t\t0.50065607 -0.87944889 -1.2233323e-07 0.36639738 -0.24931499 -3.7388115e-09 0.9354341 \n\t\t-0.250139 -2.4883668e-09 0.97246408 0.0049629649 3.6326927e-08 0.95567995 -0.74751896 \n\t\t-9.6291949e-08 0.51809227 -0.86456889 -1.2073035e-07 0.34764868 -0.84489095 -1.1858688e-07 \n\t\t0.32349226 -0.89815289 -1.3004207e-07 0.23693548 -0.87587291 -1.2730224e-07 0.21799468 \n\t\t-0.80083698 -1.1374305e-07 0.27062565 -0.81080693 -1.1804312e-07 0.19648507 -0.71709096 \n\t\t-9.6842406e-08 0.37686864 -0.70759094 -9.9700642e-08 0.26057926 -0.59052497 -7.300175e-08 \n\t\t0.49170828 -0.57545894 -7.6213368e-08 0.34279466 -0.333123 -2.9251291e-08 0.59800202 \n\t\t-0.32206106 -3.4222207e-08 0.41844365 -0.31040901 -4.029695e-08 0.20676763 -0.56183493 \n\t\t-8.0630343e-08 0.16747805 -0.30026701 -4.7143619e-08 -0.019379972 -0.55162096 -8.6027413e-08 \n\t\t-0.020009959 -0.54679304 -9.2180613e-08 -0.20543991 -0.29373699 -5.4430707e-08 -0.242356 \n\t\t-0.70177299 -1.0395469e-07 0.12207606 -0.8201009 -1.234104e-07 0.090854071 -0.82643092 \n\t\t-1.2878958e-07 -0.027411925 -0.69850492 -1.0903707e-07 -0.028093955 -0.82995689 -1.3393445e-07 \n\t\t-0.1510319 -0.69796103 -1.1458795e-07 -0.17953591 -0.70030302 -1.2024557e-07 -0.32185587 \n\t\t-0.83083504 -1.38598e-07 -0.27271792 -0.70493293 -1.25729e-07 -0.44998804 -0.82783502 \n\t\t-1.4230014e-07 -0.38467988 -0.80924094 -1.4527561e-07 -0.54190606 -0.72026694 -1.3530898e-07 \n\t\t-0.64374 -0.58174485 -1.1786143e-07 -0.75039607 -0.55727887 -1.0565661e-07 -0.52404392;\n\tsetAttr \".pt[3320:3485]\" -0.54932302 -9.8865236e-08 -0.37457991 -0.29291704 \n\t\t-6.1825901e-08 -0.44451207 -0.29640901 -6.8995554e-08 -0.62269002 -0.31074503 -8.1324622e-08 \n\t\t-0.894472 -0.20504904 -4.886946e-08 -0.46139807 -0.20687102 -5.6017271e-08 -0.64592808 \n\t\t-0.21619701 -6.7945422e-08 -0.92775202 0.0049629523 -3.5045289e-08 -0.96247804 -0.22721699 \n\t\t-7.5311881e-08 -1.0799402 -0.23745897 -8.0113217e-08 -1.1664222 -0.61830097 -7.0480965e-08 \n\t\t0.67486608 -0.325057 -8.9049635e-08 -1.042618 -0.60598296 -1.2593313e-07 -0.86661601 \n\t\t-0.31817695 -9.1695007e-08 -1.1423002 -0.62998694 -1.3177927e-07 -0.92399597 -0.74679881 \n\t\t-1.4277175e-07 -0.73406398 -0.77714896 -1.4884482e-07 -0.77117395 -0.85249287 -1.5290526e-07 \n\t\t-0.56724191 -0.87113303 -1.483449e-07 -0.36722991 -0.87751299 -1.451499e-07 -0.25485387 \n\t\t-0.9132129 -1.4575859e-07 -0.12287797 -0.90836889 -1.4065955e-07 -0.0059659025 -0.89634693 \n\t\t-1.3455806e-07 0.10806209 -0.23014885 -8.4899533e-08 -1.3254303 -0.33709687 -1.0208625e-07 \n\t\t-1.3429562 -0.24498689 -8.8867935e-08 -1.37043 -0.24712087 -8.8788788e-08 -1.359436 \n\t\t0.0049630762 -5.1374393e-08 -1.40133 0.004963113 -4.9431122e-08 -1.3491039 -0.21543279 \n\t\t-8.0149839e-08 -1.2589263 -0.20130879 -7.4945753e-08 -1.1777502 0.0049631712 -4.3524238e-08 \n\t\t-1.1903542 0.0049630213 -4.8899498e-08 -1.334816 -0.24163692 -8.5640856e-08 -1.2976202 \n\t\t-0.23637094 -8.3218922e-08 -1.25441 -0.32613692 -9.5961504e-08 -1.2238902 -0.29734081 \n\t\t-9.2083106e-08 -1.239306 -0.41853487 -1.129868e-07 -1.297534 -0.74995476 -1.5167726e-07 \n\t\t-0.96028996 -0.40364885 -1.0901067e-07 -1.2525262 -0.74491084 -1.5345748e-07 -1.0290922 \n\t\t-0.73066682 -1.516218e-07 -1.0389422 -0.41823286 -1.1262443e-07 -1.2890502 -0.40666494 \n\t\t-1.0863457e-07 -1.2298862 -0.69811088 -1.4543922e-07 -1.008054 -0.89750069 -1.6961532e-07 \n\t\t-0.82932198 -0.91391474 -1.7135025e-07 -0.80774796 -1.032145 -1.8043643e-07 -0.56068987 \n\t\t-1.0480051 -1.8164249e-07 -0.52720398 -1.0571468 -1.8108577e-07 -0.47425801 -0.9243688 \n\t\t-1.7002529e-07 -0.72870195 -0.85973293 -1.6348372e-07 -0.82146001 -1.1114589 -1.8280413e-07 \n\t\t-0.29477 -1.0960308 -1.8196849e-07 -0.33641601 -1.059597 -1.7779104e-07 -0.37553003 \n\t\t-0.99403679 -1.7525379e-07 -0.57974601 -0.67791891 -1.4130843e-07 -0.98093593 -0.39751092 \n\t\t-1.0571802e-07 -1.189538 -0.64112091 -1.3397624e-07 -0.93677795 -0.83483893 -1.5909021e-07 \n\t\t-0.80681801 -0.78821099 -1.5104055e-07 -0.78422201 -0.90495485 -1.6180171e-07 -0.58835584 \n\t\t-0.96455896 -1.7076157e-07 -0.58149785 -1.026235 -1.7320095e-07 -0.39079002 -0.35191286 \n\t\t-1.0371164e-07 -1.325078 -0.34893888 -1.0368951e-07 -1.3368403 -0.3867988 -1.0399818e-07 \n\t\t-1.1878263 -0.6459288 -1.3647127e-07 -0.98385596 -0.37003678 -9.8426881e-08 -1.1077422 \n\t\t-0.74818081 -1.5007494e-07 -0.92459798 -0.84116876 -1.6171933e-07 -0.85117602 -0.29034877 \n\t\t-8.7903288e-08 -1.156024 -0.80196881 -1.0071435e-07 0.62548012 -0.82906485 -1.0266555e-07 \n\t\t0.68562609 -0.86267495 -1.1414797e-07 0.51668304 -0.69696486 -7.267726e-08 0.9426921 \n\t\t-0.65804482 -7.1780946e-08 0.80506617 -0.360921 -1.9801689e-08 0.96746606 -0.53771281 \n\t\t-4.1081911e-08 1.1301301 -0.3792769 -1.4277964e-08 1.1921883 -0.252891 -2.0387647e-09 \n\t\t0.99598205 -0.26277491 4.7550999e-09 1.2196381 0.004963011 4.683908e-08 1.2381982 \n\t\t-0.249713 -2.1517024e-09 0.97974205 -0.64786094 -7.062895e-08 0.79371208 -0.83806896 \n\t\t-1.1098998e-07 0.49931628 -0.78936684 -9.9072189e-08 0.61725205 -0.84910893 -1.1229489e-07 \n\t\t0.51011789 -0.77924883 -9.7935065e-08 0.60577208 -0.64043695 -6.993757e-08 0.78144616 \n\t\t-0.35378698 -1.9760975e-08 0.93891805 -0.35610098 -1.9633079e-08 0.9519701 -0.24851099 \n\t\t-2.4535227e-09 0.96663606 -0.62554097 -1.3077542e-07 -0.91549003 -0.77129084 -1.4767323e-07 \n\t\t-0.76402795 -0.89209497 -1.5945922e-07 -0.57883388 -0.31215495 -9.0887205e-08 -1.145612 \n\t\t-0.23615697 -7.9542062e-08 -1.156482 -0.034903359 -4.926693e-08 -1.179044 -0.77735698 \n\t\t-1.4887907e-07 -0.77122998 -0.63130897 -1.3185873e-07 -0.92063797 -0.32129696 -9.2164633e-08 \n\t\t-1.141958 -0.38110495 -1.006572e-07 -1.1216942 -0.31367496 -9.130698e-08 -1.150578 \n\t\t-0.23288296 -7.9230041e-08 -1.1617 -0.22714096 -7.8849979e-08 -1.175344 0.004962984 \n\t\t-4.3380268e-08 -1.1864842 -0.78507096 -9.8760026e-08 0.60779208 -0.356197 -1.9931829e-08 \n\t\t0.94434005 0.0049626804 -4.3258783e-08 -1.183218 -0.0050038034 -4.4694648e-08 -1.1803962 \n\t\t-0.31661096 -9.1240274e-08 -1.136586 -0.89282483 -1.5956351e-07 -0.57860398 -0.88586086 \n\t\t-1.5828108e-07 -0.57307398 -0.31696081 -9.7207135e-08 -1.2954942 -0.30409282 -9.2476441e-08 \n\t\t-1.221822 -0.2972368 -9.1827104e-08 -1.2328579 -0.28510678 -8.6620169e-08 -1.1433202 \n\t\t-0.27823278 -8.5959634e-08 -1.15413 -0.33983687 -1.0182389e-07 -1.3245202 -0.33301494 \n\t\t-9.838611e-08 -1.260474 -0.32610694 -9.571464e-08 -1.2173802 -0.33686087 -1.0179846e-07 \n\t\t-1.3362023 -0.3171328 -9.747923e-08 -1.3020922 -0.34004286 -1.0210645e-07 -1.3312582 \n\t\t-0.33309293 -9.8642261e-08 -1.2670342 -0.27830479 -8.6207201e-08 -1.1604842 -0.33304092 \n\t\t-9.6306067e-08 -1.204464 -0.34508893 -1.0027907e-07 -1.2611799 -0.33986092 -9.8971235e-08 \n\t\t-1.2477542 -0.33817494 -9.7615889e-08 -1.218334 -0.32573697 -9.2986006e-08 -1.1455842 \n\t\t-0.34654486 -1.0239384e-07 -1.3119659 -0.34353688 -1.0236652e-07 -1.32373 -0.3237288 \n\t\t-9.781904e-08 -1.283818 -0.3290728 -9.9127689e-08 -1.2967839 -0.30936882 -9.3768705e-08 \n\t\t-1.2346302 0.35296124 1.0008081e-08 -1.1976002 0.33050522 4.5894577e-09 -1.249922 \n\t\t0.22954519 -1.1465366e-08 -1.2619082 0.097629234 -3.1413975e-08 -1.249918 0.2124473 \n\t\t-1.8678001e-08 -1.3847082 0.21256927 -1.8651409e-08 -1.3845003 0.20670733 -1.9479026e-08 \n\t\t-1.3823861 0.20697729 -1.9579279e-08 -1.3862022 0.13771588 -3.0767072e-08 -1.3990942 \n\t\t0.15834144 -2.7305312e-08 -1.3917582 0.22951727 -1.5793933e-08 -1.3781242 0.30505323 \n\t\t1.8563096e-09 -1.2176223 0.26001722 -1.0675101e-08 -1.3672823 0.20040603 -1.5129924e-08 \n\t\t-1.23932 0.075531244 -4.0427956e-08 -1.4003543 0.0049631889 -5.1422226e-08 -1.402616 \n\t\t0.30030125 4.0791366e-09 -1.1381382 0.26571921 -1.9395285e-09 -1.1562022 0.36302125 \n\t\t1.4501775e-08 -1.1186302 0.2434392 -6.4827357e-09 -1.1857282 0.24758917 -8.7843341e-09 \n\t\t-1.264828 0.33823523 8.7763468e-09 -1.1695162 0.31893122 3.7473273e-09 -1.2244642 \n\t\t0.32768518 3.8786485e-09 -1.257308 0.31783119 5.1502989e-09 -1.182188 0.31281719 \n\t\t1.4153759e-09 -1.2617322 0.33484718 7.9629867e-09 -1.1772982 0.2228792 -9.5266897e-09 \n\t\t-1.1821079 0.2133892 -1.0783207e-08 -1.176446;\n\tsetAttr \".pt[3486:3651]\" 0.22089921 -1.2610299e-08 -1.2567543 0.26645133 -9.1066719e-09 \n\t\t-1.3518642 0.21308932 -1.7206931e-08 -1.3478401 0.24924935 -1.0523251e-08 -1.3184602 \n\t\t0.21308732 -1.8428802e-08 -1.3806701 0.30563533 2.9965594e-09 -1.1893963 0.30564734 \n\t\t3.6960073e-09 -1.1706482 0.33675134 8.5104688e-09 -1.1704962 0.3367514 1.721345e-08 \n\t\t-0.93660015 0.3059454 1.1978686e-08 -0.94928616 0.32586321 7.8219333e-09 -1.1437602 \n\t\t0.0049631582 -4.5847987e-08 -1.2528059 0.10138541 -2.790248e-08 -1.1711522 0.0049631642 \n\t\t-4.2877989e-08 -1.172986 0.10197241 -3.0774874e-08 -1.250788 0.20669521 -1.1386589e-08 \n\t\t-1.1648482 0.21286722 -1.3355107e-08 -1.243398 0.2668013 -9.3412353e-09 -1.3596222 \n\t\t0.35726124 1.0974567e-08 -1.1894922 0.26728728 -9.412922e-09 -1.3635682 0.36988524 \n\t\t1.3623509e-08 -1.1707542 0.33675134 7.819505e-09 -1.1890662 0.36903724 1.2804266e-08 \n\t\t-1.1892482 0.37073532 2.2079123e-08 -0.94703811 0.35726124 1.1665682e-08 -1.1709182 \n\t\t0.35726124 1.990176e-08 -0.94957012 0.17378289 -2.5726321e-08 -1.4134822 0.18620844 \n\t\t-2.2965775e-08 -1.3909202 0.13057128 -3.2663159e-08 -1.4203662 0.19680527 -2.198718e-08 \n\t\t-1.4086503 0.070156246 -4.1471782e-08 -1.4060742 0.0049632112 -5.2385861e-08 -1.4285142 \n\t\t0.16892806 -2.6507784e-08 -1.4143122 0.12812746 -3.3052519e-08 -1.4206762 0.19203126 \n\t\t-2.2759338e-08 -1.4095662 0.069251046 -4.2371536e-08 -1.4264942 0.20186649 -2.0914687e-08 \n\t\t-1.4008563 0.20681329 -2.0126596e-08 -1.4002302 0.0049632136 -5.2385634e-08 -1.4285082 \n\t\t0.12812746 -3.1533066e-08 -1.3798403 0.16892849 -2.498774e-08 -1.3734622 0.19207826 \n\t\t-2.1235e-08 -1.3687942 0.068953872 -4.0898765e-08 -1.3856782 0.068953872 -4.2418225e-08 \n\t\t-1.4265143 0.2029693 -1.9459964e-08 -1.3663422 0.20619129 -1.8931026e-08 -1.3655143 \n\t\t0.20619129 -1.9692759e-08 -1.3859862 0.0049632173 -5.0866181e-08 -1.3876722 0.20670733 \n\t\t-1.8717216e-08 -1.3619121 0.35881925 1.084782e-08 -1.1993722 0.25156727 -1.6009312e-09 \n\t\t-1.0883002 0.30030125 6.36591e-09 -1.0766802 0.25156724 -3.8877093e-09 -1.1497582 \n\t\t0.35726124 1.6022602e-08 -1.0538242 0.35726124 1.3735828e-08 -1.1152822 -0.30900478 \n\t\t-9.3334151e-08 -1.2244639 -0.19047956 -7.556244e-08 -1.23932 -0.2109728 -7.937949e-08 \n\t\t-1.2567543 -0.3177588 -9.5909641e-08 -1.257308 -0.21961884 -8.0907974e-08 -1.2619082 \n\t\t-0.087702766 -6.0067066e-08 -1.249918 -0.092045985 -6.0770915e-08 -1.250788 0.0049631754 \n\t\t-4.5839133e-08 -1.252568 -0.20252071 -8.2833751e-08 -1.3847079 -0.25736073 -9.052566e-08 \n\t\t-1.3635682 -0.19678068 -8.185993e-08 -1.3823861 -0.17628194 -7.9008267e-08 -1.3909199 \n\t\t-0.12778953 -7.18153e-08 -1.3990942 -0.065604761 -6.2248162e-08 -1.4003543 0.0049632089 \n\t\t-5.1628962e-08 -1.4081722 -0.21959074 -8.5227867e-08 -1.378124 -0.29512674 -9.0933973e-08 \n\t\t-1.217622 -0.25009078 -8.9539895e-08 -1.3672823 -0.14841513 -7.4731133e-08 -1.391758 \n\t\t-0.25579277 -8.2567425e-08 -1.1562022 -0.29037476 -8.7241801e-08 -1.1381382 -0.35309476 \n\t\t-9.6212695e-08 -1.1186299 -0.30289081 -9.3775611e-08 -1.2617322 -0.23766282 -8.3806285e-08 \n\t\t-1.264828 -0.3249208 -9.4039855e-08 -1.1772982 -0.32057878 -9.6070806e-08 -1.249922 \n\t\t-0.32830879 -9.42741e-08 -1.1695162 -0.31593877 -9.140328e-08 -1.14376 -0.30790481 \n\t\t-9.1591055e-08 -1.182188 -0.21295279 -7.6908108e-08 -1.1821079 -0.23351279 -8.0221476e-08 \n\t\t-1.1857282 -0.20346279 -7.523024e-08 -1.176446 -0.19676878 -7.3763779e-08 -1.1648482 \n\t\t-0.20294078 -7.7640735e-08 -1.243398 -0.20316067 -8.2782449e-08 -1.3806701 -0.23932265 \n\t\t-8.6058492e-08 -1.3184602 -0.20316267 -8.1561197e-08 -1.3478401 -0.25652671 -8.9961226e-08 \n\t\t-1.3518642 -0.29570866 -8.9973689e-08 -1.1893963 -0.29572067 -8.9277961e-08 -1.1706482 \n\t\t-0.2960186 -8.1087421e-08 -0.94928616 -0.091458991 -5.7717017e-08 -1.1711522 -0.35911074 \n\t\t-9.9770403e-08 -1.1892482 -0.25687468 -9.0303686e-08 -1.359622 -0.35996076 -9.9213672e-08 \n\t\t-1.170754 -0.32682666 -9.4772382e-08 -1.1890662 -0.32682666 -9.4081415e-08 -1.1704962 \n\t\t-0.32682666 -8.5378446e-08 -0.93660015 -0.3608087 -9.1020581e-08 -0.94703788 -0.34733474 \n\t\t-9.7267744e-08 -1.170918 -0.34733474 -8.9031666e-08 -0.94956988 -0.16385633 -7.7926721e-08 \n\t\t-1.413482 -0.12064495 -7.1502221e-08 -1.4203662 -0.19705071 -8.204367e-08 -1.3862022 \n\t\t-0.060229935 -6.1630026e-08 -1.4060742 -0.1968867 -8.2540268e-08 -1.4002299 -0.11820093 \n\t\t-7.1135894e-08 -1.420676 -0.18687874 -8.1306304e-08 -1.4086503 -0.059324536 -6.2249853e-08 \n\t\t-1.4264942 -0.1962647 -8.1914109e-08 -1.3859862 -0.20264275 -8.2844885e-08 -1.3845 \n\t\t-0.1590019 -7.5687119e-08 -1.373462 -0.11820093 -6.9616448e-08 -1.3798403 -0.15900153 \n\t\t-7.7207048e-08 -1.4143122 -0.18215173 -7.9092487e-08 -1.368794 -0.1821049 -8.0602319e-08 \n\t\t-1.4095659 -0.059027541 -6.2204677e-08 -1.4265143 -0.059027534 -6.0685217e-08 -1.3856782 \n\t\t-0.19304271 -8.0685048e-08 -1.3663422 -0.19193991 -8.1798767e-08 -1.400856 -0.1962647 \n\t\t-8.1152365e-08 -1.365514 -0.19678068 -8.1098122e-08 -1.3619121 -0.34889275 -9.8567362e-08 \n\t\t-1.1993722 -0.34733474 -9.7958861e-08 -1.189492 -0.34303474 -9.7595759e-08 -1.1976002 \n\t\t-0.34733474 -9.5197606e-08 -1.1152822 -0.24164076 -7.785291e-08 -1.0883 -0.24164076 \n\t\t-8.0139692e-08 -1.1497582 -0.29037476 -8.4955019e-08 -1.0766799 -0.34733474 -9.2910824e-08 \n\t\t-1.0538239 0.67127925 1.3200474e-07 0.75848377 0.68364131 1.4290039e-07 0.99994391 \n\t\t0.6712774 1.409894e-07 0.9999578 0.68364131 1.3391598e-07 0.75848377 0.6344794 1.3530104e-07 \n\t\t0.99997789 0.63448125 1.2631563e-07 0.75848389 0.57713526 1.174497e-07 0.75848389 \n\t\t0.50914127 1.0693756e-07 0.75848389 0.44040129 9.6310067e-08 0.75848389 0.44039929 \n\t\t1.052973e-07 1.0000279 0.38103932 9.6120303e-08 1.0000359 0.38103932 8.7132463e-08 \n\t\t0.75848389 0.34117532 8.0969322e-08 0.75848389 0.34117532 8.9957169e-08 1.0000359 \n\t\t0.3252193 7.850246e-08 0.75848389 0.33758333 8.041399e-08 0.75848389 0.33758134 8.9400629e-08 \n\t\t1.0000119 0.37437934 8.6102801e-08 0.75848389 0.43172735 9.4969039e-08 0.75848377 \n\t\t0.49972135 1.0548119e-07 0.75848377 0.56846148 1.1610869e-07 0.75848377 0.56845945 \n\t\t1.2509273e-07 0.99994189 0.62782335 1.3427041e-07 0.99993593 0.62782335 1.2528629e-07 \n\t\t0.75848377 0.66768545 1.3144913e-07 0.75848377 0.59366143 1.2974805e-07 1.02034 0.62079126 \n\t\t1.3394235e-07 1.0203378 0.61890727 1.3365049e-07 1.0203218 0.66477746 1.4074161e-07 \n\t\t1.0203059 0.62738931 1.3496131e-07 1.0203078 0.65050143 1.3853418e-07 1.0202978;\n\tsetAttr \".pt[3652:3817]\" 0.61644143 1.3326844e-07 1.0202999 0.58909148 1.2904002e-07 \n\t\t1.0202999 0.54836148 1.2274322e-07 1.0203059 0.50021535 1.1530008e-07 1.0203178 0.50119942 \n\t\t1.1545222e-07 1.0203178 0.55431342 1.2366536e-07 1.0203578 0.56947929 1.2601005e-07 \n\t\t1.0203578 0.50766128 1.1645341e-07 1.020376 0.5086413 1.1660493e-07 1.020376 0.46049932 \n\t\t1.0916242e-07 1.0203879 0.44713929 1.0709698e-07 1.0203899 0.41977131 1.02866e-07 \n\t\t1.0203959 0.39242131 9.86375e-08 1.0203938 0.3583613 9.337176e-08 1.0203959 0.3814733 \n\t\t9.6944603e-08 1.020386 0.34408331 9.1164026e-08 1.0203879 0.38995531 9.8255434e-08 \n\t\t1.0203719 0.35514534 9.2873734e-08 1.0203738 0.41520134 1.0215798e-07 1.0203559 0.38806733 \n\t\t9.7962946e-08 1.0203559 0.45454934 1.082406e-07 1.0203359 0.65371537 1.390319e-07 \n\t\t1.0203199 0.66768748 1.4043357e-07 0.99993593 0.61483544 1.3302007e-07 1.0202978 \n\t\t0.56172132 1.2480864e-07 1.020304 0.49971935 1.1446575e-07 0.99995577 0.43172535 \n\t\t1.0395426e-07 0.99997377 0.57713139 1.2643547e-07 0.99999589 0.50913531 1.1592373e-07 \n\t\t1.000016 0.39402732 9.8885948e-08 1.0203979 0.3252193 8.748993e-08 1.0000259 0.37437734 \n\t\t9.5088772e-08 0.99999392 0.43937933 1.0589525e-07 1.0203359 0.33798331 6.6525729e-08 \n\t\t0.38356915 0.34556738 7.4723737e-08 0.57238185 0.3363173 7.3294053e-08 0.57239306 \n\t\t0.34735337 6.7974362e-08 0.38356873 0.30879137 6.9038926e-08 0.57240629 0.31009132 \n\t\t6.2213509e-08 0.38356915 0.26662332 5.5493178e-08 0.38356915 0.21503331 5.4544621e-08 \n\t\t0.57243526 0.21508333 4.7524871e-08 0.38356873 0.16297993 3.9469487e-08 0.38356915 \n\t\t0.11798412 3.2512951e-08 0.38356915 0.087767527 2.784134e-08 0.38356915 0.089395754 \n\t\t3.5121097e-08 0.57245028 0.077460371 3.3275622e-08 0.57244444 0.075673342 2.5971529e-08 \n\t\t0.38356915 0.085044146 2.7420278e-08 0.38356873 0.11423098 3.8959588e-08 0.57241964 \n\t\t0.11293595 3.173248e-08 0.38356915 0.15640473 3.8452935e-08 0.38356915 0.20794336 \n\t\t4.6421018e-08 0.38356915 0.26004735 5.4476491e-08 0.3835687 0.3050434 6.1433084e-08 \n\t\t0.38356912 0.33525935 6.610459e-08 0.38356912 0.3246693 7.1849939e-08 0.58197987 \n\t\t0.28045732 6.5014582e-08 0.58197987 0.29971331 6.7991643e-08 0.58197987 0.29996532 \n\t\t6.8030602e-08 0.58197987 0.33305532 7.3146452e-08 0.58197987 0.3065173 6.9043566e-08 \n\t\t0.58197987 0.32223335 7.147333e-08 0.58197987 0.2980594 6.773594e-08 0.58197987 0.29519939 \n\t\t6.7293769e-08 0.58197987 0.27692741 6.4468843e-08 0.58197987 0.25493735 6.1069095e-08 \n\t\t0.58197987 0.24545737 5.9603448e-08 0.58197987 0.20831937 5.3861761e-08 0.58197987 \n\t\t0.20901737 5.3969675e-08 0.58197987 0.16220416 4.6732161e-08 0.58197987 0.25005534 \n\t\t6.0314314e-08 0.58197987 0.26081932 6.1978469e-08 0.58197987 0.21400934 5.4741456e-08 \n\t\t0.58197987 0.21470533 5.4849057e-08 0.58197987 0.17756973 4.910774e-08 0.58197987 \n\t\t0.16808714 4.7641691e-08 0.58197987 0.14610034 4.4242444e-08 0.58197987 0.12782875 \n\t\t4.1417579e-08 0.58197987 0.12496734 4.0975195e-08 0.58197987 0.10079336 3.7237797e-08 \n\t\t0.58197987 0.11650897 3.9667494e-08 0.58197987 0.089971967 3.5564767e-08 0.58197987 \n\t\t0.12306277 4.0680742e-08 0.58197987 0.098355755 3.6860936e-08 0.58197987 0.14256996 \n\t\t4.3696634e-08 0.58197987 0.12331118 4.0719147e-08 0.58197987 0.17297117 4.8396785e-08 \n\t\t0.58197987 0.086706959 3.4704783e-08 0.57243371 0.15712777 4.5591047e-08 0.57240462 \n\t\t0.11921415 3.9731187e-08 0.57245147 0.16361633 4.6595762e-08 0.57244647 0.26589337 \n\t\t6.2407302e-08 0.57242203 0.3336314 7.2878152e-08 0.57237566 0.3038134 6.8268157e-08 \n\t\t0.57237524 0.25940934 6.1403306e-08 0.57238066 0.20798936 5.3453938e-08 0.57239062 \n\t\t0.48195532 6.4601871e-08 -0.26634619 0.53600937 7.2958855e-08 -0.26634619 0.48195538 \n\t\t7.5177645e-08 0.017881846 0.58214933 8.0092271e-08 -0.26634619 0.61245549 8.4777732e-08 \n\t\t-0.26634619 0.62364948 8.6508365e-08 -0.26634619 0.61245549 8.4777732e-08 -0.26634619 \n\t\t0.58214748 8.0091993e-08 -0.26634619 0.53600943 7.2958862e-08 -0.26634616 0.48195535 \n\t\t6.4601878e-08 -0.26634616 0.48195541 7.5177645e-08 0.017881826 0.42790139 6.6820675e-08 \n\t\t0.017881826 0.42790133 5.6244904e-08 -0.26634616 0.38176334 4.911178e-08 -0.26634619 \n\t\t0.35145739 4.4426354e-08 -0.26634619 0.34026134 4.2695397e-08 -0.26634619 0.3402614 \n\t\t5.3271169e-08 0.017881852 0.35145536 5.5001806e-08 0.01788185 0.3514553 4.4426034e-08 \n\t\t-0.26634619 0.38176331 4.9111776e-08 -0.26634619 0.4279013 5.6244897e-08 -0.26634619 \n\t\t0.48195538 8.2280557e-08 0.20877562 0.51844543 8.7922068e-08 0.20877562 0.56608343 \n\t\t9.5287099e-08 0.20877562 0.54959345 9.2737665e-08 0.20877525 0.57005143 9.5900567e-08 \n\t\t0.20877564 0.60093147 1.0067475e-07 0.20877564 0.57760948 9.7069076e-08 0.20877564 \n\t\t0.57005143 9.5900567e-08 0.20877564 0.56608343 9.5287099e-08 0.20877562 0.54959345 \n\t\t9.2737679e-08 0.20877562 0.51844543 8.7922068e-08 0.20877564 0.48195541 8.2280565e-08 \n\t\t0.20877564 0.4365674 7.5263387e-08 0.20877564 0.44546339 7.6638749e-08 0.20877564 \n\t\t0.4143174 7.182345e-08 0.20877564 0.39385739 6.8660249e-08 0.20877564 0.3863014 6.749206e-08 \n\t\t0.20877564 0.39385736 6.8660242e-08 0.20877564 0.41431737 7.1823429e-08 0.20877525 \n\t\t0.43656737 7.5263387e-08 0.20877562 0.44546336 7.6638742e-08 0.20877562 0.53600937 \n\t\t8.9445741e-08 0.17674583 0.48195538 8.0169791e-08 0.15204784 0.53600937 8.8526839e-08 \n\t\t0.15204984 0.58214748 9.5659892e-08 0.15204783 0.61245549 1.0126464e-07 0.17674622 \n\t\t0.61245549 1.0034572e-07 0.15204982 0.53600943 8.8526768e-08 0.15204783 0.3817614 \n\t\t6.5598371e-08 0.17674583 0.35145539 6.0912953e-08 0.17674625 0.3402614 5.8263389e-08 \n\t\t0.15204985 0.35145536 6.0912946e-08 0.17674625 0.38176137 6.4679384e-08 0.15204784 \n\t\t0.38176137 6.559835e-08 0.17674544 0.42790136 7.1812892e-08 0.15204984 0.54333937 \n\t\t8.9244466e-08 0.14087984 0.59573346 9.7344795e-08 0.14087982 0.63014948 1.0266565e-07 \n\t\t0.14087984 0.63014948 1.0124919e-07 0.10281184 0.64286345 1.0321482e-07 0.10281182 \n\t\t0.63014948 1.0266566e-07 0.14087982 0.63014948 1.012492e-07 0.10281183 0.54333943 \n\t\t8.7828006e-08 0.10281183 0.48195541 7.9754251e-08 0.14087982 0.36817539 6.2163387e-08 \n\t\t0.14087984 0.33376139 5.6842843e-08 0.14087985 0.33376139 5.542638e-08 0.10281186 \n\t\t0.33376136 5.684284e-08 0.14087985;\n\tsetAttr \".pt[3818:3983]\" 0.42057136 7.0264022e-08 0.14087984 0.48195538 7.792223e-08 \n\t\t0.091643848 0.61245549 9.8098084e-08 0.091643833 0.61245549 9.6099377e-08 0.037927814 \n\t\t0.62364948 9.9828718e-08 0.091643818 0.61245549 9.8098084e-08 0.091643825 0.61245549 \n\t\t9.6099377e-08 0.037927818 0.58214748 9.1413639e-08 0.037927821 0.53600943 8.4280508e-08 \n\t\t0.037927821 0.42790139 6.9565267e-08 0.09164384 0.35145539 5.5747694e-08 0.037927847 \n\t\t0.3402614 5.4017054e-08 0.037927847 0.35145536 5.5747691e-08 0.037927844 0.38176137 \n\t\t6.243183e-08 0.091643848 0.48195538 7.5411315e-08 0.024161851 0.48195538 7.5689854e-08 \n\t\t0.031647835 0.58992344 9.2103612e-08 0.024161821 0.62258148 9.7431226e-08 0.031647809 \n\t\t0.62258148 9.7152686e-08 0.024161823 0.63464344 9.9017512e-08 0.024161827 0.63464344 \n\t\t9.9296059e-08 0.031647813 0.4237074 6.6405939e-08 0.024161831 0.37398741 5.8719021e-08 \n\t\t0.024161831 0.34132937 5.3948501e-08 0.031647839 0.34132937 5.3669957e-08 0.024161853 \n\t\t0.37398738 5.8719017e-08 0.024161881 0.37398738 5.8997561e-08 0.031647868 0.48195538 \n\t\t7.9754244e-08 0.14087984 0.61245549 1.0034572e-07 0.15204984 0.64286345 1.0463129e-07 \n\t\t0.14087982 0.62364948 1.0207635e-07 0.15204982 0.59573346 9.7344802e-08 0.14087982 \n\t\t0.58214748 9.5659971e-08 0.15204982 0.54333943 8.9244466e-08 0.14087982 0.48195541 \n\t\t8.0169798e-08 0.15204783 0.42790139 7.1812821e-08 0.15204784 0.3817614 6.4679462e-08 \n\t\t0.15204984 0.42057139 7.0264029e-08 0.14087984 0.35145539 5.9994029e-08 0.15204985 \n\t\t0.3210474 5.4877205e-08 0.14087985 0.35145536 5.9994022e-08 0.15204985 0.36817735 \n\t\t6.2163693e-08 0.14087985 0.58214748 9.3412339e-08 0.091643848 0.54333937 8.7827999e-08 \n\t\t0.10281185 0.53600937 8.6279208e-08 0.091643848 0.59573346 9.5928335e-08 0.10281185 \n\t\t0.48195538 7.8337777e-08 0.10281185 0.42057136 6.8847555e-08 0.10281185 0.42790136 \n\t\t6.956526e-08 0.091643848 0.36817735 6.0747233e-08 0.10281185 0.33376136 5.5426376e-08 \n\t\t0.10281185 0.35145536 5.7746394e-08 0.091643848 0.3210474 5.3460742e-08 0.10281185 \n\t\t0.3402614 5.6015761e-08 0.091643848 0.35145539 5.7746398e-08 0.091643855 0.36817738 \n\t\t6.0747233e-08 0.10281186 0.3817614 6.243183e-08 0.091643855 0.48195541 7.8337784e-08 \n\t\t0.10281183 0.48195541 7.7922238e-08 0.091643825 0.42057139 6.8847562e-08 0.10281184 \n\t\t0.53600943 8.6279215e-08 0.091643825 0.59573346 9.5928343e-08 0.10281183 0.58214748 \n\t\t9.3412346e-08 0.091643825 0.48195538 7.5923531e-08 0.03792784 0.54020339 8.4695245e-08 \n\t\t0.031647835 0.53600937 8.4280501e-08 0.03792784 0.58992344 9.2382159e-08 0.031647809 \n\t\t0.58214748 9.1413632e-08 0.037927814 0.62364948 9.7830018e-08 0.037927818 0.62258148 \n\t\t9.7431233e-08 0.031647813 0.58992344 9.2382166e-08 0.031647816 0.54020345 8.4695252e-08 \n\t\t0.031647816 0.48195541 7.5689861e-08 0.031647816 0.48195541 7.5923538e-08 0.037927821 \n\t\t0.42790139 6.756656e-08 0.037927821 0.37398741 5.8997564e-08 0.031647816 0.3817634 \n\t\t6.0433436e-08 0.037927821 0.4237074 6.6684478e-08 0.031647816 0.3413294 5.3948504e-08 \n\t\t0.031647842 0.32926741 5.2083671e-08 0.031647842 0.38176137 6.0433123e-08 0.037927844 \n\t\t0.42370737 6.6684478e-08 0.031647835 0.42790136 6.7566553e-08 0.03792784 0.58214748 \n\t\t9.0667747e-08 0.017881818 0.54020339 8.4416698e-08 0.024161851 0.53600937 8.3534616e-08 \n\t\t0.017881846 0.42370737 6.6405931e-08 0.024161851 0.42790136 6.6820668e-08 0.017881846 \n\t\t0.38176137 5.9687238e-08 0.017881848 0.32926741 5.1805124e-08 0.024161857 0.34133139 \n\t\t5.3670266e-08 0.024161858 0.35145539 5.5001809e-08 0.017881854 0.3817634 5.9687551e-08 \n\t\t0.017881826 0.48195541 7.5411322e-08 0.024161832 0.54020345 8.4416705e-08 0.024161831 \n\t\t0.53600943 8.3534623e-08 0.017881826 0.58992344 9.2103619e-08 0.024161831 0.58214748 \n\t\t9.0667754e-08 0.017881826 0.62258148 9.7152686e-08 0.024161829 0.61245549 9.5353492e-08 \n\t\t0.017881824 0.62364948 9.7084133e-08 0.017881822 0.61245549 9.5353492e-08 0.01788182 \n\t\t0.48195538 8.1088757e-08 0.17674544 0.52734345 8.9297735e-08 0.20877562 0.48195538 \n\t\t8.2280557e-08 0.20877562 0.58214748 9.6578873e-08 0.17674582 0.59153146 9.9221467e-08 \n\t\t0.20877564 0.61245549 1.0126463e-07 0.17674623 0.62364948 1.0299527e-07 0.17674623 \n\t\t0.59153146 9.9221467e-08 0.20877562 0.58214748 9.6578894e-08 0.17674622 0.52734345 \n\t\t8.9297743e-08 0.20877562 0.53600943 8.9445749e-08 0.17674582 0.48195541 8.1088764e-08 \n\t\t0.17674543 0.48195541 8.2280565e-08 0.20877564 0.42790139 7.2731787e-08 0.17674544 \n\t\t0.39782539 6.9273717e-08 0.20877564 0.37237939 6.5339663e-08 0.20877564 0.3402614 \n\t\t5.9182312e-08 0.17674625 0.36297941 6.3886382e-08 0.20877564 0.37237936 6.5339655e-08 \n\t\t0.20877564 0.39782536 6.927371e-08 0.20877562 0.42790136 7.273178e-08 0.17674544 \n\t\t0.87919742 1.3708167e-07 0.031017814 0.87919742 1.5093161e-07 0.40324059 0.94869143 \n\t\t1.4782573e-07 0.031017814 1.0078193 1.7081707e-07 0.40324059 1.0078193 1.5696715e-07 \n\t\t0.031017816 1.0469713 1.630202e-07 0.031017788 1.0610952 1.6520383e-07 0.03101779 \n\t\t1.0469713 1.630202e-07 0.031017793 1.0078194 1.5696715e-07 0.031017795 0.94869149 \n\t\t1.6167567e-07 0.40324062 0.94869149 1.4782573e-07 0.031017797 0.87919748 1.5093161e-07 \n\t\t0.40324062 0.87919748 1.3708168e-07 0.031017797 0.80970544 1.2633792e-07 0.031017797 \n\t\t0.75057745 1.3104643e-07 0.40324059 0.75057745 1.1719649e-07 0.031017825 0.71142548 \n\t\t1.2499336e-07 0.4032402 0.71142548 1.1114344e-07 0.031017823 0.69730145 1.089598e-07 \n\t\t0.031017819 0.71142548 1.1114344e-07 0.031017818 0.75057739 1.1719649e-07 0.031017816 \n\t\t0.80970341 1.2633761e-07 0.031017814 0.87919742 1.6024023e-07 0.65341383 0.92442751 \n\t\t1.67233e-07 0.65341383 0.87919742 1.6024023e-07 0.65341383 0.98719752 1.7693749e-07 \n\t\t0.65341383 0.96290946 1.7318246e-07 0.65341383 1.0200713 1.8201992e-07 0.65341383 \n\t\t0.98839158 1.7712209e-07 0.65341383 1.0319313 1.8385352e-07 0.65341383 0.99758357 \n\t\t1.7854322e-07 0.65341383 0.98839158 1.7712209e-07 0.65341383 0.98719758 1.769375e-07 \n\t\t0.65341383 0.96290946 1.7318246e-07 0.65341383 0.93754947 1.692617e-07 0.65341383 \n\t\t0.92442757 1.67233e-07 0.65341383 0.87919748 1.6024023e-07 0.65341383 0.87919748 \n\t\t1.6024023e-07 0.65341383 0.83396947 1.5324781e-07 0.65341383 0.77119946 1.435433e-07 \n\t\t0.65341383 0.79548758 1.4729835e-07 0.65341383 0.73832345 1.3846054e-07 0.65341383 \n\t\t0.77000546 1.433587e-07 0.65341383;\n\tsetAttr \".pt[3984:4149]\" 0.76081145 1.4193726e-07 0.65341383 0.77000546 1.433587e-07 \n\t\t0.65341383 0.77119941 1.435433e-07 0.65341383 0.79548758 1.4729834e-07 0.65341383 \n\t\t0.82084543 1.5121877e-07 0.65341383 0.83396941 1.532478e-07 0.65341383 0.87919742 \n\t\t1.5746937e-07 0.57894582 0.94869143 1.6941691e-07 0.61128986 0.87919742 1.5867285e-07 \n\t\t0.61128986 1.0078193 1.7855832e-07 0.61128986 1.0469713 1.8461139e-07 0.6112898 1.0610952 \n\t\t1.8679501e-07 0.6112898 1.0610952 1.8559153e-07 0.57894582 1.0469713 1.8461139e-07 \n\t\t0.6112898 1.0078194 1.7855832e-07 0.6112898 0.94869149 1.6941692e-07 0.6112898 0.87919748 \n\t\t1.5867286e-07 0.6112898 0.80970347 1.479288e-07 0.6112898 0.80970347 1.4672533e-07 \n\t\t0.57894582 0.93754941 1.692617e-07 0.65341383 0.80970341 1.4792879e-07 0.61128986 \n\t\t0.80970341 1.4672531e-07 0.57894582 0.75057739 1.3758419e-07 0.57894582 0.75057739 \n\t\t1.3878767e-07 0.61128986 0.7114256 1.3153115e-07 0.57894582 0.7114256 1.3273464e-07 \n\t\t0.61128986 0.69729948 1.3055067e-07 0.61128986 0.7114256 1.3273464e-07 0.61128986 \n\t\t0.75057745 1.3758419e-07 0.57894582 0.75057745 1.3878767e-07 0.61128986 0.82084548 \n\t\t1.5121879e-07 0.65341383 0.72646344 1.3662692e-07 0.65341383 0.73832345 1.3846054e-07 \n\t\t0.65341383 0.9581154 1.6912618e-07 0.56431943 1.0252593 1.776519e-07 0.51446527 1.0697193 \n\t\t1.845256e-07 0.51446515 1.0697193 1.845256e-07 0.51446515 0.95811343 1.6912588e-07 \n\t\t0.56431943 0.95811546 1.6727118e-07 0.51446515 0.87919748 1.5692515e-07 0.56431943 \n\t\t0.80027956 1.447241e-07 0.56431895 0.73313743 1.3248867e-07 0.51446563 0.67263544 \n\t\t1.249898e-07 0.56431907 0.67263544 1.231348e-07 0.51446527 0.68867558 1.2746966e-07 \n\t\t0.56431907 0.68867546 1.2561465e-07 0.51446527 0.73313749 1.3434367e-07 0.56431907 \n\t\t0.73313737 1.3248867e-07 0.51446563 0.80028152 1.4472442e-07 0.56431943 0.94869143 \n\t\t1.6265248e-07 0.4294928 1.0078193 1.744114e-07 0.4998394 1.0078193 1.7179386e-07 \n\t\t0.429492 1.0469713 1.8046448e-07 0.49983981 1.0469713 1.7784696e-07 0.42949277 1.0610952 \n\t\t1.8264809e-07 0.49983981 1.0610952 1.8003057e-07 0.42949277 0.94869149 1.6527e-07 \n\t\t0.49983943 0.94869149 1.6265248e-07 0.4294928 0.87919748 1.5452594e-07 0.49983943 \n\t\t0.80970347 1.4378189e-07 0.49983984 0.75057745 1.3464074e-07 0.4998394 0.75057745 \n\t\t1.3202325e-07 0.4294928 0.71142548 1.2858769e-07 0.4998394 0.71142548 1.2597016e-07 \n\t\t0.42949203 0.69729948 1.2640375e-07 0.4998394 0.69729948 1.2378621e-07 0.42949203 \n\t\t0.71142548 1.2858769e-07 0.4998394 0.71142548 1.2597016e-07 0.42949241 0.75057739 \n\t\t1.320232e-07 0.42949203 0.80970341 1.4378188e-07 0.49983981 0.80970341 1.4116436e-07 \n\t\t0.4294928 0.95401943 1.6316724e-07 0.4211894 0.87919742 1.5159948e-07 0.42118981 \n\t\t0.95401943 1.6280832e-07 0.41154322 1.0176773 1.7265009e-07 0.41154319 1.0598313 \n\t\t1.7916726e-07 0.41154277 1.0598313 1.791673e-07 0.41154379 1.0176774 1.7300903e-07 \n\t\t0.4211894 0.95401949 1.6280833e-07 0.41154319 0.87919748 1.5159948e-07 0.42118981 \n\t\t0.69856548 1.2331409e-07 0.41154322 0.69856346 1.2331378e-07 0.41154322 0.74071741 \n\t\t1.2983097e-07 0.41154322 0.80437738 1.4003197e-07 0.42118943 0.80437738 1.3967308e-07 \n\t\t0.41154382 0.94869143 1.6821343e-07 0.57894582 0.87919742 1.5692513e-07 0.56431907 \n\t\t1.0252593 1.7950688e-07 0.56431907 1.0078193 1.7735485e-07 0.57894582 1.0697193 1.8638059e-07 \n\t\t0.56431895 1.0469713 1.8340791e-07 0.57894582 1.0857593 1.8886045e-07 0.56431943 \n\t\t1.0697193 1.863806e-07 0.56431895 1.0469713 1.8340792e-07 0.57894582 1.0252594 1.795069e-07 \n\t\t0.56431895 1.0078194 1.7735485e-07 0.57894582 0.94869149 1.6821345e-07 0.57894582 \n\t\t0.87919748 1.5746939e-07 0.57894582 0.73313546 1.3434337e-07 0.56431943 0.68867558 \n\t\t1.2746966e-07 0.56431907 0.7114256 1.3153115e-07 0.57894582 0.69729948 1.293472e-07 \n\t\t0.57894582 0.9581154 1.672712e-07 0.51446563 0.94869143 1.6526998e-07 0.4998394 0.87919742 \n\t\t1.5507014e-07 0.51446563 0.87919742 1.5452592e-07 0.4998394 0.80028141 1.4286941e-07 \n\t\t0.51446563 0.75057739 1.3464076e-07 0.49983981 0.68867546 1.2561465e-07 0.51446527 \n\t\t0.87919748 1.5507014e-07 0.51446515 0.80028147 1.428694e-07 0.51446515 1.0252594 \n\t\t1.776519e-07 0.51446515 1.0078194 1.744114e-07 0.4998394 1.0469713 1.8046448e-07 \n\t\t0.49983981 1.0857593 1.8700547e-07 0.51446563 0.87919742 1.5190842e-07 0.4294928 \n\t\t1.0176773 1.7300901e-07 0.4211894 1.0598313 1.7952621e-07 0.42118979 1.0750393 1.8187743e-07 \n\t\t0.42118979 1.0598313 1.795262e-07 0.4211894 1.0469713 1.7784693e-07 0.42949197 1.0078194 \n\t\t1.717939e-07 0.42949277 0.95401949 1.6316727e-07 0.42118981 0.87919748 1.5190842e-07 \n\t\t0.4294928 0.80970347 1.4116434e-07 0.429492 0.74071747 1.3018989e-07 0.42118943 0.80437744 \n\t\t1.4003199e-07 0.42118943 0.69856548 1.2367302e-07 0.4211894 0.68335748 1.213218e-07 \n\t\t0.42118981 0.69856346 1.2367271e-07 0.42118943 0.74071741 1.3018987e-07 0.42118943 \n\t\t0.94869143 1.6167567e-07 0.40324059 0.87919742 1.5124051e-07 0.4115428 0.80970341 \n\t\t1.4018755e-07 0.40324059 0.75057739 1.3104642e-07 0.40324062 0.71142548 1.2499336e-07 \n\t\t0.40324059 0.68335748 1.2096287e-07 0.41154322 0.69729948 1.2280944e-07 0.40324059 \n\t\t0.74071747 1.2983095e-07 0.41154283 0.80437744 1.3967306e-07 0.41154319 0.80970347 \n\t\t1.4018754e-07 0.4032402 0.87919748 1.5124053e-07 0.4115428 1.0176774 1.726501e-07 \n\t\t0.41154319 1.0078194 1.7081709e-07 0.40324059 1.0469713 1.7687015e-07 0.40324059 \n\t\t1.0750393 1.8151849e-07 0.41154316 1.0610952 1.7905376e-07 0.40324059 1.0469713 1.7687015e-07 \n\t\t0.40324059 1.0200713 1.8201992e-07 0.65341383 -0.66135269 -7.4025614e-08 0.75848401 \n\t\t-0.67371464 -7.5936832e-08 0.75848401 -0.66135061 -6.5040354e-08 0.99995804 -0.62455672 \n\t\t-6.833681e-08 0.75848401 -0.56720871 -5.9470572e-08 0.75848401 -0.49921471 -4.895842e-08 \n\t\t0.75848401 -0.43047473 -3.8330935e-08 0.75848401 -0.3711127 -2.9153327e-08 0.75848401 \n\t\t-0.3312487 -2.2990188e-08 0.75848401 -0.31529269 -1.153585e-08 1.000026 -0.31529468 \n\t\t-2.0523629e-08 0.75848401 -0.32765666 -2.2434843e-08 0.75848401 -0.32765466 -1.3447588e-08 \n\t\t1.0000119 -0.36445066 -1.9137065e-08 0.99999404 -0.36445266 -2.8123655e-08 0.75848401 \n\t\t-0.42180067 -3.6989892e-08 0.75848401 -0.48979267 -3.851687e-08 0.99995601;\n\tsetAttr \".pt[4150:4315]\" -0.48979467 -4.7502045e-08 0.75848401 -0.55853456 -5.8129512e-08 \n\t\t0.75848401 -0.61789668 -6.7307141e-08 0.75848401 -0.65776056 -7.3470261e-08 0.75848401 \n\t\t-0.65776056 -6.4486144e-08 0.99993593 -0.58373463 -5.2282218e-08 1.02034 -0.6108647 \n\t\t-5.6476718e-08 1.0203378 -0.60898072 -5.6186039e-08 1.0203218 -0.65485054 -6.3278307e-08 \n\t\t1.0203059 -0.61746264 -5.7497903e-08 1.020308 -0.60651451 -5.5805579e-08 1.0202999 \n\t\t-0.57916456 -5.1577164e-08 1.0202999 -0.53843457 -4.5279915e-08 1.0203059 -0.49127266 \n\t\t-3.7988038e-08 1.020318 -0.54438663 -4.6198188e-08 1.0203578 -0.55955273 -4.8542933e-08 \n\t\t1.0203578 -0.49773666 -3.8985245e-08 1.020376 -0.4505727 -3.1693059e-08 1.0203879 \n\t\t-0.4098447 -2.5396039e-08 1.020396 -0.38249469 -2.1167695e-08 1.0203938 -0.34843469 \n\t\t-1.5901799e-08 1.020396 -0.37154669 -1.947538e-08 1.020386 -0.38002869 -2.0787256e-08 \n\t\t1.0203719 -0.34521866 -1.5405414e-08 1.0203738 -0.40527466 -2.4690983e-08 1.0203559 \n\t\t-0.44462267 -3.0775091e-08 1.0203359 -0.64378858 -6.1567548e-08 1.0203199 -0.62455261 \n\t\t-5.9350494e-08 0.99997789 -0.67371464 -6.6952417e-08 0.99994391 -0.64057451 -6.1071468e-08 \n\t\t1.020298 -0.61789668 -5.8323021e-08 0.99993593 -0.60490853 -5.5557354e-08 1.020298 \n\t\t-0.55179465 -4.7345509e-08 1.020304 -0.55853456 -4.9145175e-08 0.99994189 -0.49029067 \n\t\t-3.7836216e-08 1.020318 -0.42945266 -2.8429746e-08 1.0203359 -0.42179868 -2.8004049e-08 \n\t\t0.99997401 -0.56720459 -5.0483585e-08 0.99999589 -0.49920875 -3.9970402e-08 1.000016 \n\t\t-0.49871475 -3.9136456e-08 1.020376 -0.43721274 -2.962747e-08 1.02039 -0.43047273 \n\t\t-2.9343086e-08 1.0000279 -0.3711127 -2.0165485e-08 1.000036 -0.38410071 -2.1415843e-08 \n\t\t1.0203979 -0.3312487 -1.4002345e-08 1.000036 -0.33415869 -1.3694971e-08 1.0203879 \n\t\t-0.37814066 -2.0495955e-08 1.0203559 -0.33564064 -3.0593817e-08 0.57238191 -0.32805669 \n\t\t-3.6446792e-08 0.38356921 -0.32639068 -2.9163321e-08 0.57239312 -0.33742663 -3.7895436e-08 \n\t\t0.38356879 -0.3001647 -3.2134576e-08 0.38356921 -0.2566967 -2.5414245e-08 0.38356921 \n\t\t-0.20515668 -1.7445959e-08 0.38356879 -0.15305328 -9.3905452e-09 0.38356918 -0.15368988 \n\t\t-2.4610805e-09 0.57244647 -0.10928766 4.4038684e-09 0.57245147 -0.10805748 -2.4340101e-09 \n\t\t0.38356918 -0.077841073 2.2375701e-09 0.38356915 -0.065746665 4.1074144e-09 0.38356915 \n\t\t-0.075117454 2.6586364e-09 0.38356873 -0.076780237 9.42899e-09 0.57243371 -0.10300925 \n\t\t-1.6535338e-09 0.38356915 -0.14647806 -8.3739895e-09 0.38356915 -0.19801663 -1.6342064e-08 \n\t\t0.38356915 -0.25012067 -2.4397579e-08 0.38356873 -0.24948266 -1.7273488e-08 0.57238066 \n\t\t-0.2938866 -2.4138719e-08 0.5723753 -0.2951166 -3.1354119e-08 0.38356918 -0.32533267 \n\t\t-3.602565e-08 0.38356918 -0.31474268 -2.7005781e-08 0.58197987 -0.2705307 -2.0170427e-08 \n\t\t0.58197987 -0.2900387 -2.3186445e-08 0.58197987 -0.2897867 -2.3147484e-08 0.58197987 \n\t\t-0.3231287 -2.8302292e-08 0.58197987 -0.29659069 -2.4199407e-08 0.58197987 -0.31230667 \n\t\t-2.6629166e-08 0.58197987 -0.28813261 -2.2891756e-08 0.58197987 -0.2852726 -2.2449585e-08 \n\t\t0.58197987 -0.26700062 -1.9624663e-08 0.58197987 -0.24501263 -1.6225227e-08 0.58197987 \n\t\t-0.23553061 -1.4759271e-08 0.58197987 -0.19839263 -9.0175849e-09 0.58197987 -0.19909063 \n\t\t-9.1254995e-09 0.58197987 -0.16304463 -3.55264e-09 0.58197987 -0.24012867 -1.5470148e-08 \n\t\t0.58197987 -0.2508927 -1.7134312e-08 0.58197987 -0.20408267 -9.8972892e-09 0.58197987 \n\t\t-0.20477866 -1.0004892e-08 0.58197987 -0.16764326 -4.2636072e-09 0.58197987 -0.15816066 \n\t\t-2.7975577e-09 0.58197987 -0.13617386 6.0169264e-10 0.58197987 -0.11790226 3.4265559e-09 \n\t\t0.58197987 -0.11504084 3.8689443e-09 0.58197987 -0.09086664 7.6063742e-09 0.58197987 \n\t\t-0.10658223 5.1766791e-09 0.58197987 -0.080045231 9.2794084e-09 0.58197987 -0.11313603 \n\t\t4.1634358e-09 0.58197987 -0.088429235 7.9832079e-09 0.58197987 -0.13264325 1.1475401e-09 \n\t\t0.58197987 -0.11338443 4.1250332e-09 0.58197987 -0.15227763 -1.8880171e-09 0.58197987 \n\t\t-0.10430444 5.1731126e-09 0.57241964 -0.067533635 1.0858954e-08 0.5724445 -0.079469264 \n\t\t9.0138723e-09 0.57245028 -0.14720123 -1.459466e-09 0.57240462 -0.20510669 -1.0410746e-08 \n\t\t0.57243532 -0.25596663 -1.8274397e-08 0.57242209 -0.29886463 -2.4907191e-08 0.57240629 \n\t\t-0.3237046 -2.8748691e-08 0.57237571 -0.19806263 -9.323367e-09 0.57239068 -0.52608258 \n\t\t-8.066916e-08 0.017881935 -0.4720287 -8.2887972e-08 -0.26634607 -0.47202864 -7.2312204e-08 \n\t\t0.017881935 -0.52608258 -9.1244921e-08 -0.26634607 -0.57222265 -9.8378372e-08 -0.26634607 \n\t\t-0.60252857 -1.030638e-07 -0.26634607 -0.61372256 -1.0479443e-07 -0.26634607 -0.60252857 \n\t\t-9.248803e-08 0.017881943 -0.60252857 -1.0306379e-07 -0.26634607 -0.57222265 -9.8378372e-08 \n\t\t-0.26634607 -0.52608252 -8.0669153e-08 0.017881915 -0.52608252 -9.1244914e-08 -0.26634604 \n\t\t-0.47202867 -8.2887965e-08 -0.26634604 -0.41797459 -6.3955227e-08 0.017881915 -0.37183666 \n\t\t-6.739787e-08 -0.26634607 -0.41797465 -7.4530995e-08 -0.26634604 -0.3718366 -5.6822103e-08 \n\t\t0.017881915 -0.34152859 -5.2136361e-08 0.017881913 -0.34153059 -6.2712431e-08 -0.26634607 \n\t\t-0.33033466 -6.0981499e-08 -0.26634607 -0.3303346 -5.0405724e-08 0.017881911 -0.34152868 \n\t\t-6.2712132e-08 -0.26634607 -0.37183669 -6.7397878e-08 -0.26634607 -0.37183663 -5.6822106e-08 \n\t\t0.017881937 -0.41797468 -7.4531002e-08 -0.26634607 -0.47202864 -6.5209285e-08 0.20877573 \n\t\t-0.50851852 -7.0850774e-08 0.20877573 -0.47202864 -6.5209292e-08 0.20877573 -0.55615652 \n\t\t-7.8215805e-08 0.20877573 -0.53966653 -7.5666399e-08 0.20877534 -0.58160454 -8.2150173e-08 \n\t\t0.20877574 -0.56012654 -7.8829586e-08 0.20877574 -0.59100455 -8.3603453e-08 0.20877574 \n\t\t-0.56768256 -7.9997783e-08 0.20877574 -0.56012452 -7.8829274e-08 0.20877573 -0.55615652 \n\t\t-7.8215805e-08 0.20877573 -0.53966653 -7.5666385e-08 0.20877573 -0.50851852 -7.0850774e-08 \n\t\t0.20877573 -0.47202861 -6.5209285e-08 0.2087757 -0.47202861 -6.5209285e-08 0.2087757 \n\t\t-0.4266406 -5.8192111e-08 0.2087757 -0.43553659 -5.9567469e-08 0.2087757 -0.4043906 \n\t\t-5.4752171e-08 0.2087757 -0.38393059 -5.158897e-08 0.2087757 -0.3763746 -5.0420784e-08 \n\t\t0.2087757 -0.36245263 -4.8268387e-08 0.2087757 -0.38393062 -5.158897e-08 0.20877573 \n\t\t-0.38790062 -5.2202751e-08 0.20877571 -0.40439063 -5.4752189e-08 0.20877533 -0.42664063 \n\t\t-5.8192114e-08 0.20877571 -0.43553662 -5.9567473e-08 0.20877571 -0.52608258 -7.4758034e-08 \n\t\t0.17674592 -0.47202864 -6.7320059e-08 0.15204793 -0.61372256 -8.9226447e-08 0.15204994 \n\t\t-0.60252857 -8.7495806e-08 0.15204993;\n\tsetAttr \".pt[4316:4481]\" -0.57222056 -8.2810068e-08 0.15204993 -0.52608252 -7.4758027e-08 \n\t\t0.17674591 -0.52608252 -7.5677008e-08 0.15204792 -0.47202861 -6.7320052e-08 0.15204792 \n\t\t-0.47202861 -6.6401086e-08 0.17674552 -0.37183461 -5.1829574e-08 0.15204991 -0.3303346 \n\t\t-4.5413504e-08 0.15204991 -0.3303346 -4.4494584e-08 0.17674631 -0.34152862 -4.6225221e-08 \n\t\t0.17674632 -0.34152862 -4.7144145e-08 0.15204991 -0.47202864 -6.9152065e-08 0.10281194 \n\t\t-0.58580655 -8.6742602e-08 0.10281194 -0.58580655 -8.5326143e-08 0.14087993 -0.62022257 \n\t\t-9.0646999e-08 0.14087994 -0.63293654 -9.402909e-08 0.10281194 -0.62022257 -9.2063459e-08 \n\t\t0.10281195 -0.47202861 -6.9152058e-08 0.10281192 -0.41064459 -5.8245377e-08 0.14087991 \n\t\t-0.41064459 -5.9661836e-08 0.10281192 -0.35824859 -5.0144742e-08 0.14087991 -0.3111206 \n\t\t-4.2858563e-08 0.14087991 -0.35825062 -5.1561518e-08 0.10281193 -0.41064462 -5.9661843e-08 \n\t\t0.10281194 -0.47202864 -7.1566319e-08 0.037927929 -0.47202864 -6.9567612e-08 0.091643937 \n\t\t-0.52608258 -7.9923275e-08 0.037927929 -0.60252857 -8.9743445e-08 0.091643937 -0.60252857 \n\t\t-9.1742145e-08 0.037927933 -0.61372256 -9.3472785e-08 0.037927937 -0.61372256 -9.1474078e-08 \n\t\t0.091643937 -0.60252857 -9.1742145e-08 0.037927937 -0.57222253 -8.7056705e-08 0.03792794 \n\t\t-0.52608252 -7.7924561e-08 0.091643915 -0.52608252 -7.9923268e-08 0.037927911 -0.47202861 \n\t\t-6.9567605e-08 0.091643915 -0.3718366 -5.4077514e-08 0.091643915 -0.34152859 -5.1390476e-08 \n\t\t0.037927907 -0.3303346 -4.7661135e-08 0.091643907 -0.41797462 -6.1210642e-08 0.091643937 \n\t\t-0.61265457 -9.3819878e-08 0.02416195 -0.57999653 -8.8770811e-08 0.024161952 -0.57999653 \n\t\t-8.8492264e-08 0.031647936 -0.47202861 -7.2078528e-08 0.024161922 -0.4137806 -6.3073145e-08 \n\t\t0.02416192 -0.36406261 -5.5107996e-08 0.031647906 -0.3314046 -5.0058933e-08 0.031647902 \n\t\t-0.3314046 -5.033748e-08 0.024161918 -0.33140263 -5.0058627e-08 0.031647898 -0.33140463 \n\t\t-5.033748e-08 0.024161913 -0.36406064 -5.5107691e-08 0.031647928 -0.41378063 -6.2794605e-08 \n\t\t0.031647924 -0.41378063 -6.3073152e-08 0.024161942 -0.53341258 -7.7225806e-08 0.14087993 \n\t\t-0.47202864 -6.7735606e-08 0.14087993 -0.52608258 -7.5676937e-08 0.15204993 -0.57222253 \n\t\t-8.2810452e-08 0.15204793 -0.60252857 -8.7495813e-08 0.15204994 -0.63293654 -9.261263e-08 \n\t\t0.14087994 -0.62022257 -9.0646992e-08 0.14087994 -0.58580655 -8.5326135e-08 0.14087993 \n\t\t-0.53341252 -7.7225806e-08 0.14087991 -0.47202861 -6.7735598e-08 0.14087991 -0.41797459 \n\t\t-5.8963078e-08 0.15204792 -0.3238346 -4.4824198e-08 0.14087991 -0.34152859 -4.7144141e-08 \n\t\t0.15204991 -0.32383463 -4.4824201e-08 0.14087991 -0.35825062 -5.0145054e-08 0.14087991 \n\t\t-0.37183464 -5.1829652e-08 0.15204792 -0.41064462 -5.8245384e-08 0.14087993 -0.41797462 \n\t\t-5.896301e-08 0.15204991 -0.57222253 -8.5058005e-08 0.091643937 -0.53341258 -7.8642273e-08 \n\t\t0.10281194 -0.52608258 -7.7924568e-08 0.091643937 -0.37183663 -5.4077518e-08 0.091643922 \n\t\t-0.32383463 -4.6240661e-08 0.10281191 -0.34152862 -4.9391772e-08 0.091643907 -0.3111206 \n\t\t-4.4275026e-08 0.10281191 -0.3238346 -4.6240661e-08 0.10281192 -0.34152859 -4.9391772e-08 \n\t\t0.091643915 -0.35825059 -5.1561511e-08 0.10281192 -0.41797459 -6.1210635e-08 0.091643915 \n\t\t-0.53341252 -7.8642266e-08 0.10281192 -0.58580655 -8.6742595e-08 0.10281193 -0.57222056 \n\t\t-8.50577e-08 0.091643929 -0.60252857 -8.9743438e-08 0.091643944 -0.62022257 -9.2063459e-08 \n\t\t0.10281194 -0.53027862 -8.080567e-08 0.031647924 -0.47202864 -7.1799988e-08 0.031647924 \n\t\t-0.57999653 -8.8492271e-08 0.031647928 -0.57222253 -8.7056712e-08 0.037927933 -0.61265457 \n\t\t-9.3541338e-08 0.031647928 -0.62471652 -9.5406165e-08 0.031647932 -0.61265457 -9.3541331e-08 \n\t\t0.031647932 -0.53027654 -8.080535e-08 0.031647906 -0.47202861 -7.1799981e-08 0.031647906 \n\t\t-0.47202861 -7.1566312e-08 0.037927911 -0.4137806 -6.2794598e-08 0.031647906 -0.41797459 \n\t\t-6.3209342e-08 0.037927911 -0.3718366 -5.6076217e-08 0.037927911 -0.31934062 -4.8193794e-08 \n\t\t0.031647902 -0.3303346 -4.9659839e-08 0.037927907 -0.34152862 -5.1390479e-08 0.037927903 \n\t\t-0.37183663 -5.6076221e-08 0.037927933 -0.41797462 -6.3209342e-08 0.037927929 -0.57222253 \n\t\t-8.7802597e-08 0.017881937 -0.53027862 -8.1084217e-08 0.024161942 -0.57999653 -8.8770818e-08 \n\t\t0.024161942 -0.47202864 -7.2078535e-08 0.024161942 -0.41797462 -6.3955227e-08 0.017881935 \n\t\t-0.36406064 -5.5386234e-08 0.024161942 -0.34152862 -5.2136365e-08 0.017881909 -0.31934062 \n\t\t-4.8472341e-08 0.024161916 -0.36406261 -5.538654e-08 0.02416192 -0.47202861 -7.2312197e-08 \n\t\t0.017881915 -0.53027654 -8.1083897e-08 0.02416192 -0.57222253 -8.780259e-08 0.017881945 \n\t\t-0.62471652 -9.5684705e-08 0.024161948 -0.61372256 -9.421867e-08 0.017881941 -0.61265457 \n\t\t-9.3819878e-08 0.024161944 -0.60252857 -9.248803e-08 0.017881939 -0.51741654 -7.2226449e-08 \n\t\t0.20877573 -0.47202864 -6.6401093e-08 0.17674553 -0.57222253 -8.1891471e-08 0.17674592 \n\t\t-0.60252857 -8.657689e-08 0.17674634 -0.61372256 -8.8307523e-08 0.17674634 -0.58160454 \n\t\t-8.2150173e-08 0.20877573 -0.60252857 -8.657689e-08 0.17674632 -0.57222056 -8.1891145e-08 \n\t\t0.17674632 -0.51741654 -7.2226442e-08 0.2087757 -0.41797459 -5.8044112e-08 0.17674552 \n\t\t-0.37183461 -5.0910668e-08 0.17674591 -0.38790059 -5.2202747e-08 0.2087757 -0.3624526 \n\t\t-4.8268383e-08 0.2087757 -0.34152859 -4.6225221e-08 0.17674631 -0.35305262 -4.681511e-08 \n\t\t0.2087757 -0.37183464 -5.0910685e-08 0.17674552 -0.41797462 -5.8044119e-08 0.17674552 \n\t\t-0.86927062 -1.3323867e-07 0.031017963 -0.93876463 -1.4398273e-07 0.031017993 -0.99789274 \n\t\t-1.5312418e-07 0.031017995 -0.99789274 -1.3927423e-07 0.40324077 -1.0370448 -1.4532731e-07 \n\t\t0.40324077 -1.0370448 -1.5917723e-07 0.031017996 -1.0511687 -1.6136084e-07 0.031017968 \n\t\t-1.0511687 -1.4751092e-07 0.40324077 -1.0370448 -1.5917723e-07 0.031017972 -0.99789268 \n\t\t-1.5312418e-07 0.031017944 -0.93876457 -1.3013279e-07 0.40324077 -0.93876457 -1.4398272e-07 \n\t\t0.031017946 -0.86927253 -1.3323897e-07 0.031017946 -0.79977852 -1.2249491e-07 0.031017946 \n\t\t-0.79977655 -1.0864468e-07 0.40324035 -0.74065053 -1.1335348e-07 0.031017944 -0.74065053 \n\t\t-9.9503538e-08 0.40324071 -0.70149857 -1.0730042e-07 0.031017942 -0.68737453 -1.0511679e-07 \n\t\t0.031017939 -0.68737257 -9.126655e-08 0.40324071 -0.70149857 -1.0730043e-07 0.031017937 \n\t\t-0.74065059 -1.1335349e-07 0.031017935 -0.79977661 -1.0864467e-07 0.40324077 -0.79977661 \n\t\t-1.2249461e-07 0.031017963 -0.86927062 -1.1008011e-07 0.65341395 -0.91450047 -1.1707283e-07 \n\t\t0.65341395 -0.95298254 -1.2302232e-07 0.65341395 -0.97846442 -1.2696192e-07 0.65341395 \n\t\t-0.98765641 -1.2838304e-07 0.65341395;\n\tsetAttr \".pt[4482:4647]\" -1.0101447 -1.3185982e-07 0.65341395 -0.97846442 -1.2696192e-07 \n\t\t0.65341395 -0.95298254 -1.2302232e-07 0.65341395 -0.91450042 -1.1707282e-07 0.65341395 \n\t\t-0.86927056 -1.100801e-07 0.65341395 -0.86927056 -1.100801e-07 0.65341395 -0.82404256 \n\t\t-1.0308766e-07 0.65341395 -0.76127255 -9.3383164e-08 0.65341395 -0.78556043 -9.713817e-08 \n\t\t0.65341395 -0.76007855 -9.3198565e-08 0.65341395 -0.75088453 -9.1777139e-08 0.65341395 \n\t\t-0.72839653 -8.8300403e-08 0.65341395 -0.76007855 -9.3198572e-08 0.65341395 -0.78556043 \n\t\t-9.7138177e-08 0.65341395 -0.81091863 -1.0105865e-07 0.65341395 -0.82404262 -1.0308767e-07 \n\t\t0.65341395 -0.86927062 -1.1285097e-07 0.57894593 -0.93876463 -1.2239154e-07 0.61129004 \n\t\t-0.86927062 -1.1164749e-07 0.61129004 -0.99789274 -1.3153299e-07 0.61129004 -1.0370448 \n\t\t-1.3758606e-07 0.61129004 -1.0370448 -1.3878953e-07 0.57894593 -1.0511687 -1.3976967e-07 \n\t\t0.61129004 -1.0511687 -1.4097316e-07 0.57894593 -1.0370448 -1.3758606e-07 0.61129004 \n\t\t-0.99789268 -1.3153299e-07 0.61129004 -0.93876457 -1.2239154e-07 0.61128998 -0.86927056 \n\t\t-1.1164748e-07 0.61128998 -0.86927056 -1.1285096e-07 0.57894593 -0.79977655 -1.0090342e-07 \n\t\t0.61128998 -0.79977655 -1.021069e-07 0.57894593 -1.0101447 -1.3185982e-07 0.65341395 \n\t\t-1.0220047 -1.3369342e-07 0.65341395 -0.97727042 -1.2677732e-07 0.65341395 -0.92762256 \n\t\t-1.1910156e-07 0.65341395 -0.81091857 -1.0105864e-07 0.65341395 -0.97727048 -1.2677732e-07 \n\t\t0.65341395 -0.92762262 -1.1910156e-07 0.65341395 -0.86927062 -1.1008011e-07 0.65341395 \n\t\t-0.79977661 -1.0090343e-07 0.61129004 -0.79977661 -1.0210691e-07 0.57894593 -0.74065059 \n\t\t-9.1762296e-08 0.61129004 -0.70149845 -8.5709225e-08 0.61128998 -0.68737257 -8.4728782e-08 \n\t\t0.57894593 -0.68737257 -8.3525308e-08 0.61128998 -0.70149845 -8.6912706e-08 0.57894593 \n\t\t-0.70149845 -8.5709225e-08 0.61128998 -0.74065053 -9.1762296e-08 0.61128998 -0.72839653 \n\t\t-8.8300396e-08 0.65341395 -0.71653652 -8.6466791e-08 0.65341395 -0.76127261 -9.3383171e-08 \n\t\t0.65341395 -0.9481886 -1.2559624e-07 0.56431955 -0.9481886 -1.2745124e-07 0.51446575 \n\t\t-1.0153327 -1.35977e-07 0.56431919 -1.0597928 -1.4285071e-07 0.56431919 -1.0758327 \n\t\t-1.4718555e-07 0.51446575 -1.0597928 -1.4470571e-07 0.51446539 -1.0153326 -1.3783199e-07 \n\t\t0.51446539 -0.94818854 -1.2559623e-07 0.56431955 -0.86927056 -1.1339519e-07 0.56431955 \n\t\t-0.79035455 -1.0304946e-07 0.51446539 -0.67874843 -8.3939703e-08 0.56431919 -0.67874855 \n\t\t-8.5794717e-08 0.51446539 -0.72321045 -9.0813707e-08 0.56431919 -0.72321057 -9.2668706e-08 \n\t\t0.51446575 -0.79035461 -1.0304945e-07 0.51446575 -0.93876463 -1.2653847e-07 0.49983957 \n\t\t-0.93876463 -1.2915598e-07 0.42949298 -0.86927062 -1.1579441e-07 0.49983957 -0.99789274 \n\t\t-1.3567993e-07 0.49983957 -1.0370448 -1.4173297e-07 0.49983993 -1.0370448 -1.4435049e-07 \n\t\t0.42949298 -1.0511687 -1.4391658e-07 0.49983993 -1.0511687 -1.4653411e-07 0.42949295 \n\t\t-1.0370448 -1.4173297e-07 0.49983993 -0.99789268 -1.3567991e-07 0.49983957 -0.99789268 \n\t\t-1.3829742e-07 0.42949292 -0.93876457 -1.2915598e-07 0.42949295 -0.86927056 -1.1579441e-07 \n\t\t0.49983954 -0.79977655 -1.0505033e-07 0.49983996 -0.74065053 -9.5909222e-08 0.49983951 \n\t\t-0.79977655 -1.0766788e-07 0.42949218 -0.74065053 -9.8526733e-08 0.42949292 -0.70149857 \n\t\t-9.2473705e-08 0.42949215 -0.70149857 -9.2473691e-08 0.42949256 -0.74065059 -9.5909215e-08 \n\t\t0.49983993 -0.74065059 -9.8526769e-08 0.42949215 -0.94409263 -1.3064759e-07 0.41154337 \n\t\t-0.86927062 -1.1872086e-07 0.42118996 -1.0077507 -1.4013048e-07 0.42118958 -1.0499047 \n\t\t-1.4664764e-07 0.42118999 -1.0499047 -1.4700659e-07 0.41154298 -1.0651127 -1.4899885e-07 \n\t\t0.42118996 -1.0499047 -1.4664765e-07 0.42118958 -1.0077506 -1.4013047e-07 0.42118958 \n\t\t-1.0077506 -1.4048939e-07 0.41154337 -0.79445052 -1.0715339e-07 0.42118955 -0.73079056 \n\t\t-9.7311293e-08 0.42118955 -0.79445052 -1.0751231e-07 0.41154337 -0.68863857 -9.1153346e-08 \n\t\t0.41154334 -0.67343056 -8.8443194e-08 0.42118993 -0.68863857 -9.079443e-08 0.42118955 \n\t\t-0.68863857 -9.1153353e-08 0.41154334 -0.73079062 -9.7670224e-08 0.41154334 -0.79445058 \n\t\t-1.071534e-07 0.42118958 -0.79445058 -1.0751229e-07 0.41154397 -0.86927062 -1.1339521e-07 \n\t\t0.56431919 -0.93876463 -1.2359503e-07 0.57894593 -0.99789274 -1.3273647e-07 0.57894593 \n\t\t-1.0758327 -1.4533055e-07 0.56431955 -1.0597928 -1.4285071e-07 0.56431919 -1.0370448 \n\t\t-1.3878953e-07 0.57894593 -1.0153326 -1.35977e-07 0.56431919 -0.99789268 -1.3273646e-07 \n\t\t0.57894593 -0.93876457 -1.2359502e-07 0.57894593 -0.7903524 -1.0119413e-07 0.56431919 \n\t\t-0.72320855 -9.0813401e-08 0.56431955 -0.74065053 -9.2965777e-08 0.57894593 -0.67874843 \n\t\t-8.3939696e-08 0.56431919 -0.66270852 -8.1459866e-08 0.56431919 -0.70149845 -8.6912706e-08 \n\t\t0.57894593 -0.74065059 -9.2965784e-08 0.57894593 -0.79035449 -1.0119444e-07 0.56431955 \n\t\t-1.0153327 -1.37832e-07 0.51446539 -0.86927062 -1.152502e-07 0.51446575 -0.79977661 \n\t\t-1.0505034e-07 0.49983993 -0.70149857 -8.9856172e-08 0.49983951 -0.66270852 -8.3314859e-08 \n\t\t0.51446539 -0.68737257 -8.7672234e-08 0.49983951 -0.67874855 -8.579471e-08 0.51446539 \n\t\t-0.70149857 -8.9856172e-08 0.49983951 -0.72321051 -9.2668699e-08 0.51446575 -0.86927056 \n\t\t-1.152502e-07 0.51446539 -0.94818854 -1.2745124e-07 0.51446539 -0.93876457 -1.2653847e-07 \n\t\t0.49983954 -1.0597928 -1.4470571e-07 0.51446539 -0.86927062 -1.1841192e-07 0.42949295 \n\t\t-0.94409263 -1.3028867e-07 0.42118958 -0.99789274 -1.3829745e-07 0.42949218 -1.0370448 \n\t\t-1.4435052e-07 0.42949215 -0.94409257 -1.3028864e-07 0.42118996 -0.86927056 -1.1872086e-07 \n\t\t0.42118996 -0.86927056 -1.1841191e-07 0.42949295 -0.68863857 -9.079443e-08 0.42118952 \n\t\t-0.68737257 -9.0289767e-08 0.42949215 -0.73079062 -9.73113e-08 0.42118955 -0.79977661 \n\t\t-1.0766786e-07 0.42949295 -1.0077507 -1.404894e-07 0.41154337 -0.93876463 -1.3013279e-07 \n\t\t0.40324077 -0.86927062 -1.1907982e-07 0.41154295 -0.86927062 -1.1938873e-07 0.40324077 \n\t\t-0.74065059 -9.9503545e-08 0.40324074 -0.70149857 -9.3450488e-08 0.40324074 -0.67343056 \n\t\t-8.8802132e-08 0.41154334 -0.70149857 -9.3450502e-08 0.40324032 -0.73079056 -9.7670231e-08 \n\t\t0.41154295 -0.86927056 -1.1907981e-07 0.41154295 -0.86927056 -1.1938873e-07 0.40324074 \n\t\t-0.94409257 -1.3064758e-07 0.41154337 -0.99789268 -1.3927423e-07 0.40324074 -1.0499047 \n\t\t-1.4700655e-07 0.41154397 -1.0370448 -1.4532729e-07 0.40324077 -1.0651127 -1.4935779e-07 \n\t\t0.41154334 1.1282513 1.5444978e-07 -0.53703821 1.0395813 1.4205547e-07 -0.5017122 \n\t\t1.0745953 1.4818103e-07 -0.4825702;\n\tsetAttr \".pt[4648:4813]\" 1.022945 1.3879553e-07 -0.52020019 1.0587373 1.4501408e-07 \n\t\t-0.50179219 0.83564925 1.0332499e-07 -0.69526213 0.85888737 1.0717489e-07 -0.68835014 \n\t\t0.71274334 8.0688977e-08 -0.79293412 0.65462536 6.9972081e-08 -0.83947212 0.57970333 \n\t\t5.6680346e-08 -0.8853882 0.57083732 5.5618759e-08 -0.87708014 0.48483133 3.9849208e-08 \n\t\t-0.9435342 0.47876734 3.9131077e-08 -0.9376381 0.64354533 6.8639189e-08 -0.82925612 \n\t\t0.63147932 6.7154154e-08 -0.81903213 0.56097531 5.4403927e-08 -0.86875218 0.47169733 \n\t\t3.8258523e-08 -0.93171221 0.71986336 8.2462421e-08 -0.77485615 0.73260748 8.3950489e-08 \n\t\t-0.78781611 0.84760934 1.0629687e-07 -0.66508621 0.70609343 8.0817095e-08 -0.76186019 \n\t\t0.83516532 1.0527038e-07 -0.64096814 0.53678733 5.1287316e-08 -0.85201019 0.45304531 \n\t\t3.582112e-08 -0.91971821 0.80503345 1.0254955e-07 -0.58889216 0.97299731 1.3047143e-07 \n\t\t-0.53637815 0.97508138 1.2897934e-07 -0.58513814 1.0737833 1.5092785e-07 -0.4053742 \n\t\t1.1054612 1.5762964e-07 -0.35688421 1.1791253 1.7262668e-07 -0.2599102 1.1618153 \n\t\t1.657456e-07 -0.37291822 1.2015632 1.8128979e-07 -0.12031619 1.1452513 1.6938922e-07 \n\t\t-0.20617017 1.1652153 1.6163935e-07 -0.49740222 1.3053432 1.9525702e-07 -0.17615217 \n\t\t1.1280413 1.6564124e-07 -0.23539022 1.1109333 1.618743e-07 -0.26554421 1.0857753 \n\t\t1.5635904e-07 -0.3092362 0.96978331 1.3189667e-07 -0.4847202 0.95827544 1.3444674e-07 \n\t\t-0.36837021 0.60291946 6.3501162e-08 -0.79854017 0.41044936 2.9607699e-08 -0.90971822 \n\t\t0.67394537 7.6819589e-08 -0.73571819 0.92426348 1.2993318e-07 -0.34835216 1.0971373 \n\t\t1.6506752e-07 -0.12240224 1.1308973 1.7284898e-07 -0.053546187 1.1257573 1.7524133e-07 \n\t\t0.032105807 1.1559273 1.7872823e-07 0.00045982175 1.1516833 1.8134571e-07 0.088439807 \n\t\t1.1788692 1.8419466e-07 0.052047819 0.92078334 1.3048268e-07 -0.31912419 1.0664533 \n\t\t1.6144057e-07 -0.092384182 1.0551313 1.6132412e-07 -0.048470195 0.76794332 9.7252766e-08 \n\t\t-0.57713413 0.76807135 9.7937999e-08 -0.55925018 0.63624936 7.1305223e-08 -0.72729021 \n\t\t0.63338745 7.1336359e-08 -0.71456212 0.56403947 5.7804947e-08 -0.79008013 0.56191534 \n\t\t5.7861286e-08 -0.77974015 0.49626732 4.5362839e-08 -0.84287018 0.49519137 4.5418481e-08 \n\t\t-0.83690411 1.0848793 1.6852053e-07 0.021331821 1.0996453 1.6912045e-07 -0.023898181 \n\t\t1.1083893 1.7429686e-07 0.078887805 1.1316413 1.8004118e-07 0.13665579 1.132089 1.5605488e-07 \n\t\t-0.50984621 1.2505351 1.8075647e-07 -0.33813024 1.2505351 1.8216944e-07 -0.30015618 \n\t\t1.1320913 1.5746826e-07 -0.47187021 1.0922951 1.5032757e-07 -0.4984242 1.0921893 \n\t\t1.4827344e-07 -0.55319023 1.0240533 1.4028696e-07 -0.48472217 1.0395813 1.4342922e-07 \n\t\t-0.46479222 0.9459033 1.240244e-07 -0.59706819 0.94609338 1.2489573e-07 -0.57444018 \n\t\t0.83567727 1.0384817e-07 -0.6813181 0.71274334 8.1154084e-08 -0.78043419 0.63425332 \n\t\t6.6630847e-08 -0.84462219 0.63425332 6.7095961e-08 -0.83212215 0.55784136 5.3560711e-08 \n\t\t-0.87839216 0.55784136 5.3095601e-08 -0.89089221 0.46108133 3.5955892e-08 -0.9494862 \n\t\t1.2867391 1.8696889e-07 -0.32159811 1.2505351 1.8290037e-07 -0.28051215 1.2720772 \n\t\t1.8868381e-07 -0.21458817 1.3129492 1.9945243e-07 -0.095002182 1.2886171 1.9695354e-07 \n\t\t-0.061060164 1.3045292 2.0667466e-07 0.13408384 1.3205031 2.0531694e-07 0.031221833 \n\t\t1.3387471 2.2487004e-07 0.48091465 1.2327633 1.9742274e-07 0.18362541 1.1987553 1.931449e-07 \n\t\t0.20996182 1.3027011 2.2027712e-07 0.50725126 1.1884753 2.1351623e-07 0.80016387 \n\t\t1.1378216 2.1309805e-07 0.99939376 1.2799336 2.3797479e-07 1.0774838 1.1302793 2.1270296e-07 \n\t\t1.0201137 1.1766193 2.2996085e-07 1.2913818 1.0410215 2.0579355e-07 1.2052917 1.2874755 \n\t\t2.3836975e-07 1.0567617 1.5889533 2.8906675e-07 1.1666098 1.3458213 2.3882234e-07 \n\t\t0.82649577 1.1638553 2.283778e-07 1.3018718 1.0418153 2.0660875e-07 1.2239017 1.3427052 \n\t\t2.3778969e-07 0.81168985 1.3702911 2.3981968e-07 0.75162578 1.2005312 2.1492217e-07 \n\t\t0.78785586 1.5814875 2.8867575e-07 1.1871217 1.7894392 3.0871584e-07 0.86165786 1.785639 \n\t\t3.2180776e-07 1.2292978 1.773797 3.2125601e-07 1.2636738 1.5391191 2.9560519e-07 \n\t\t1.5493958 1.7702192 3.0379417e-07 0.80924577 1.1412294 2.2816951e-07 1.3902857 1.1112514 \n\t\t2.2472599e-07 1.4222997 1.7613392 3.044633e-07 0.86412579 1.6961894 2.9480881e-07 \n\t\t0.87535781 1.6069834 2.904406e-07 1.1286159 1.5708772 2.8854956e-07 1.2278159 1.4369454 \n\t\t2.795347e-07 1.5420318 1.4764291 2.8329893e-07 1.4791398 1.5166892 2.9280628e-07 \n\t\t1.5673717 1.5191674 2.9177966e-07 1.5294838 1.7744411 3.0911912e-07 0.9348138 1.7718712 \n\t\t3.1802472e-07 1.1848338 1.7348992 3.1613962e-07 1.2877917 1.5748134 2.9867221e-07 \n\t\t1.4835118 1.7838012 3.0679593e-07 0.83348578 1.5465151 2.6079243e-07 0.58305782 1.7755932 \n\t\t3.0567153e-07 0.83737177 1.4907033 2.8915483e-07 1.5772098 1.6172153 2.9495655e-07 \n\t\t1.2074699 1.1739514 2.4127939e-07 1.606658 1.5129012 2.9191284e-07 1.5590998 1.3688091 \n\t\t2.3779174e-07 0.70328188 1.6882292 2.902716e-07 0.78649378 1.1484531 2.3791273e-07 \n\t\t1.6221238 1.7711533 3.1937054e-07 1.2239858 1.759289 3.1881774e-07 1.2584257 1.3742132 \n\t\t2.309e-07 0.49560943 1.4896171 2.5022482e-07 0.53546262 1.3282392 2.2308973e-07 0.47672924 \n\t\t0.93542939 2.0218015e-07 1.5469201 1.374191 2.318797e-07 0.52203083 1.6293932 2.9553706e-07 \n\t\t1.1724718 1.2490593 2.3154757e-07 1.0330338 1.2366573 2.309321e-07 1.0680239 1.002727 \n\t\t2.1242577e-07 1.54265 0.98575932 2.1055641e-07 1.562912 1.5369111 2.5825707e-07 0.55482405 \n\t\t1.4112211 2.7636068e-07 1.5636138 1.4124051 2.7579136e-07 1.5433937 1.3900791 2.727553e-07 \n\t\t1.5545638 1.0907952 2.2768853e-07 1.586916 1.7063591 2.9364492e-07 0.80182177 1.6782671 \n\t\t2.878696e-07 0.76333177 1.7005292 2.9151292e-07 0.76874769 1.4727792 2.4802466e-07 \n\t\t0.54629564 0.9454034 2.0335224e-07 1.536978 1.0967911 2.2931245e-07 1.6056458 1.3282912 \n\t\t2.2363385e-07 0.49113685 -1.013019 -1.7597287e-07 -0.52020007 -0.96515459 -1.709891e-07 \n\t\t-0.5851379 -0.82572269 -1.5352992e-07 -0.6952619 -0.70281667 -1.3816242e-07 -0.792934 \n\t\t-0.47490466 -1.0852992e-07 -0.9435342 -0.45115465 -1.0507953e-07 -0.94948596 -0.56091064 \n\t\t-1.1935411e-07 -0.8770799 -0.56977665 -1.2103398e-07 -0.8853882;\n\tsetAttr \".pt[4814:4979]\" -0.46884066 -1.0737301e-07 -0.9376381 -0.63361865 -1.2881561e-07 \n\t\t-0.82925612 -0.64469868 -1.3090876e-07 -0.83947212 -0.62155265 -1.2656973e-07 -0.81903189 \n\t\t-0.55105066 -1.1751985e-07 -0.86875194 -0.46177271 -1.0605978e-07 -0.93171221 -0.70993668 \n\t\t-1.3859054e-07 -0.77485603 -0.72268057 -1.4104302e-07 -0.78781599 -0.83768266 -1.542562e-07 \n\t\t-0.66508609 -0.84896058 -1.5686541e-07 -0.6883499 -0.69616652 -1.3597806e-07 -0.76186007 \n\t\t-0.82523865 -1.5143489e-07 -0.64096802 -0.66401869 -1.3003515e-07 -0.73571807 -0.52686065 \n\t\t-1.1315703e-07 -0.85200995 -0.96307075 -1.6885264e-07 -0.53637803 -1.0638567 -1.7956008e-07 \n\t\t-0.40537408 -1.0488107 -1.8082149e-07 -0.50179195 -1.0955347 -1.8265337e-07 -0.35688397 \n\t\t-1.0646688 -1.8255798e-07 -0.48257008 -1.1691988 -1.9043385e-07 -0.25990996 -1.1518887 \n\t\t-1.9196254e-07 -0.37291798 -1.1916367 -1.8870874e-07 -0.12031595 -1.1353247 -1.8319719e-07 \n\t\t-0.20616999 -1.1689427 -1.7878671e-07 0.052047998 -1.1181147 -1.8162369e-07 -0.23539004 \n\t\t-1.1010067 -1.8010073e-07 -0.26554403 -1.0758487 -1.7783691e-07 -0.30923602 -0.95985675 \n\t\t-1.6643361e-07 -0.48471996 -1.1460007 -1.7715931e-07 0.00046000056 -0.59299254 -1.2139174e-07 \n\t\t-0.79854006 -0.44311869 -1.0272951e-07 -0.91971797 -0.40052262 -9.5771888e-08 -0.90971798 \n\t\t-0.62632269 -1.238936e-07 -0.72729009 -0.79510856 -1.4483898e-07 -0.58889204 -0.94834852 \n\t\t-1.6032516e-07 -0.36837009 -1.0872108 -1.7264168e-07 -0.122402 -1.1209707 -1.7529905e-07 \n\t\t-0.053546008 -1.1417568 -1.7322955e-07 0.088440001 -1.0452048 -1.6339645e-07 -0.048470017 \n\t\t-0.91433656 -1.5432192e-07 -0.34835204 -1.0565268 -1.6678086e-07 -0.092384003 -0.91085666 \n\t\t-1.5269639e-07 -0.31912407 -0.75801665 -1.3866691e-07 -0.57713401 -0.75814468 -1.3802126e-07 \n\t\t-0.55925006 -0.62346053 -1.229775e-07 -0.714562 -0.55411464 -1.1506627e-07 -0.79008001 \n\t\t-0.55198866 -1.1435284e-07 -0.77974004 -0.4863407 -1.0655239e-07 -0.84286994 -0.48526463 \n\t\t-1.0616404e-07 -0.83690411 -1.0749527 -1.6539836e-07 0.021331999 -1.0897187 -1.693642e-07 \n\t\t-0.023898002 -1.0984627 -1.6689152e-07 0.078887999 -1.1158308 -1.713174e-07 0.032105986 \n\t\t-1.1217147 -1.6833691e-07 0.13665599 -1.1183248 -1.9288011e-07 -0.53703797 -1.1552887 \n\t\t-1.9712009e-07 -0.49740198 -1.2768128 -2.0936676e-07 -0.32159787 -1.2406088 -2.0438461e-07 \n\t\t-0.33813 -1.1221647 -1.9104897e-07 -0.47186998 -1.1221629 -1.9246173e-07 -0.50984597 \n\t\t-1.082369 -1.8588442e-07 -0.49842408 -1.0296547 -1.7648317e-07 -0.46479198 -1.0822628 \n\t\t-1.8790577e-07 -0.55318999 -1.0141268 -1.7482405e-07 -0.48472205 -1.0296547 -1.7785692e-07 \n\t\t-0.50171196 -0.93616658 -1.6610937e-07 -0.57443994 -0.93597674 -1.6692199e-07 -0.59706807 \n\t\t-0.82575071 -1.5301542e-07 -0.68131799 -0.70281667 -1.3769731e-07 -0.78043407 -0.62432665 \n\t\t-1.2748568e-07 -0.83212215 -0.62432665 -1.2795078e-07 -0.84462219 -0.54791468 -1.1739371e-07 \n\t\t-0.87839192 -0.54791468 -1.1785882e-07 -0.89089197 -1.2406088 -2.0297165e-07 -0.300156 \n\t\t-1.2954168 -2.0683116e-07 -0.17615199 -1.2621509 -2.0311826e-07 -0.21458799 -1.2406088 \n\t\t-2.0224071e-07 -0.28051198 -1.3030229 -2.049876e-07 -0.095002003 -1.2786908 -1.9996281e-07 \n\t\t-0.061059926 -1.2946029 -1.9516183e-07 0.13408406 -1.3105768 -2.0145883e-07 0.031222071 \n\t\t-1.1888287 -1.7598539e-07 0.20996201 -1.2228367 -1.8222312e-07 0.18362562 -1.2927748 \n\t\t-1.8099412e-07 0.5072515 -1.3288208 -1.8754693e-07 0.48091483 -1.1278945 -1.3719095e-07 \n\t\t0.99939388 -1.1203527 -1.35254e-07 1.0201139 -1.2775484 -1.5819347e-07 1.056762 -1.5715605 \n\t\t-1.9879842e-07 1.187122 -1.1313026 -1.2317325e-07 1.390286 -1.1539288 -1.2996114e-07 \n\t\t1.301872 -1.0318887 -1.1399441e-07 1.223902 -1.1666927 -1.3232481e-07 1.2913821 -1.0310944 \n\t\t-1.1456407e-07 1.205292 -1.3327787 -1.7585111e-07 0.81169009 -1.1906047 -1.5475726e-07 \n\t\t0.7878561 -1.1785487 -1.5243539e-07 0.8001641 -1.3358947 -1.7578195e-07 0.82649601 \n\t\t-1.2700065 -1.5625642e-07 1.077484 -1.775713 -2.2879189e-07 1.2292982 -1.763871 -2.2568197e-07 \n\t\t1.2636743 -1.5291928 -1.7876843e-07 1.5493963 -1.5029749 -1.7435396e-07 1.5591003 \n\t\t-1.3801528 -1.5553395e-07 1.554564 -1.1013246 -1.1734734e-07 1.4222997 -1.4024788 \n\t\t-1.5940127e-07 1.5433937 -0.9354766 -8.7439538e-08 1.536978 -1.7514129 -2.3862259e-07 \n\t\t0.86412615 -1.6862626 -2.2813217e-07 0.87535816 -1.5790267 -2.0071595e-07 1.16661 \n\t\t-1.5970566 -2.0491714e-07 1.1286161 -1.5609509 -1.9564393e-07 1.2278161 -1.4665028 \n\t\t-1.7169043e-07 1.47914 -1.5092406 -1.7642465e-07 1.5294843 -1.7645148 -2.38018e-07 \n\t\t0.93481416 -1.7795129 -2.4305879e-07 0.86165822 -1.7619449 -2.2831776e-07 1.1848341 \n\t\t-1.7249728 -2.1877079e-07 1.2877922 -1.5648866 -1.8673829e-07 1.4835123 -1.7738749 \n\t\t-2.4323541e-07 0.83348614 -1.6906029 -2.3277002e-07 0.76874804 -1.7612268 -2.2674992e-07 \n\t\t1.2239863 -1.6194667 -2.0675e-07 1.1724721 -1.7656668 -2.4182179e-07 0.83737212 -1.5067629 \n\t\t-1.7463181e-07 1.5673722 -1.4270186 -1.632459e-07 1.542032 -1.4807765 -1.7024816e-07 \n\t\t1.5772103 -1.3603648 -1.8235095e-07 0.75162601 -1.6683408 -2.2952973e-07 0.76333201 \n\t\t-1.6783029 -2.3020807e-07 0.78649402 -1.3588828 -1.8392063e-07 0.70328212 -1.3183649 \n\t\t-1.8555004e-07 0.49113709 -1.6072887 -2.0356501e-07 1.2074702 -1.7493629 -2.2363426e-07 \n\t\t1.2584262 -1.3642869 -1.9248337e-07 0.49560967 -1.4796908 -2.0884239e-07 0.53546286 \n\t\t-1.1385268 -1.1566377e-07 1.6221238 -0.97583264 -9.2713769e-08 1.562912 -1.0868648 \n\t\t-1.0828974e-07 1.6056458 -1.364265 -1.9149685e-07 0.52203107 -1.5365888 -2.158681e-07 \n\t\t0.58305812 -1.2391328 -1.5313714e-07 1.0330341 -1.2267307 -1.4991778e-07 1.0680242 \n\t\t-1.1640246 -1.201813e-07 1.606658 -0.99280065 -9.6091021e-08 1.54265 -1.5269848 -2.1543383e-07 \n\t\t0.55482435 -1.7602929 -2.4203752e-07 0.80924612 -1.6964328 -2.324407e-07 0.80182213 \n\t\t-1.4012948 -1.5846585e-07 1.5636138 -0.9255026 -8.5527581e-08 1.5469201 -1.0808688 \n\t\t-1.0805964e-07 1.586916 -1.4628528 -2.0583609e-07 0.54629588 -1.3183129 -1.860781e-07 \n\t\t0.47672948 1.5475012 2.9556449e-07 1.5134737 1.5053872 2.9027555e-07 1.5463178 1.4121234 \n\t\t2.7530331e-07 1.5314478 1.6081976 2.9273269e-07 1.1851718 1.6773653 3.0436516e-07 \n\t\t1.2104038 1.4510971 2.8187361e-07 1.5460898 1.5649092 2.8543897e-07 1.1690158 1.5676712 \n\t\t2.98196e-07 1.5003898 1.7711194 3.0729774e-07 0.89966577 1.6805291 2.8936088e-07 \n\t\t0.79401177 1.8008871 3.1028108e-07 0.85615778 1.7195032 2.9593124e-07 0.80865377 \n\t\t1.7619132 3.0371075e-07 0.84151578;\n\tsetAttr \".pt[4980:5145]\" 1.8542372 3.2255164e-07 0.96426177 1.5443614 2.9684594e-07 \n\t\t1.5609598 1.798475 3.2472127e-07 1.2542658 1.6377494 3.0999908e-07 1.5264238 1.7595032 \n\t\t3.1815134e-07 1.2396257 1.8502332 3.2112754e-07 0.94262576 1.8535674 3.3398823e-07 \n\t\t1.2744079 1.8608111 3.352059e-07 1.2770357 1.7800971 3.1145075e-07 0.97397578 1.7780932 \n\t\t3.0924224e-07 0.92294776 1.8442491 3.226674e-07 1.0088737 1.8507792 3.3351978e-07 \n\t\t1.2734038 1.6754211 3.1383811e-07 1.4730718 1.6547271 3.1210803e-07 1.5125598 1.6005071 \n\t\t3.0188275e-07 1.4630377 1.7100772 3.0987337e-07 1.2225198 1.6943452 3.0722174e-07 \n\t\t1.2166238 -1.4411708 -1.652829e-07 1.5460898 -1.6278226 -1.9487177e-07 1.5264243 \n\t\t-1.4954609 -1.7366787e-07 1.5463183 -1.5577449 -1.8500614e-07 1.5003901 -1.6448008 \n\t\t-1.9801253e-07 1.5125602 -1.5982705 -2.0300045e-07 1.1851721 -1.5375749 -1.8140095e-07 \n\t\t1.513474 -1.6674387 -2.1275531e-07 1.2104038 -1.4021966 -1.5980214e-07 1.5314478 \n\t\t-1.6844187 -2.1514903e-07 1.216624 -1.7095768 -2.3421862e-07 0.80865413 -1.7611926 \n\t\t-2.3881216e-07 0.89966613 -1.5549827 -1.9690911e-07 1.169016 -1.7681669 -2.3902413e-07 \n\t\t0.922948 -1.6706028 -2.2873787e-07 0.79401213 -1.7519869 -2.3955263e-07 0.84151614 \n\t\t-1.8443109 -2.4925907e-07 0.96426213 -1.8436406 -2.3761531e-07 1.2744081 -1.5344346 \n\t\t-1.7914854e-07 1.5609603 -1.7885489 -2.2984736e-07 1.2542663 -1.8508848 -2.3863751e-07 \n\t\t1.2770362 -1.8403069 -2.4944509e-07 0.94262612 -1.7909608 -2.4503336e-07 0.85615814 \n\t\t-1.7495767 -2.2436683e-07 1.2396262 -1.8343228 -2.4605492e-07 1.0088742 -1.8408529 \n\t\t-2.3722167e-07 1.2734042 -1.6654948 -2.0268119e-07 1.4730723 -1.5905808 -1.9147255e-07 \n\t\t1.463038 -1.7001508 -2.173619e-07 1.2225198 -1.7701708 -2.3743527e-07 0.97397602 \n\t\t0.97631729 1.3032798e-07 -0.55402821 0.96254522 1.2594019e-07 -0.61472821 1.0438551 \n\t\t1.3947525e-07 -0.5888142 0.72527325 8.3875406e-08 -0.75936013 0.65910143 7.17029e-08 \n\t\t-0.81155413 0.59904331 6.0947166e-08 -0.85107416 0.42724928 3.0266836e-08 -0.96180815 \n\t\t0.41921327 2.9483292e-08 -0.94947618 0.71243137 8.1244202e-08 -0.77671617 0.76036727 \n\t\t9.0026205e-08 -0.73987216 0.90700537 1.1929735e-07 -0.56248623 0.92990738 1.2163656e-07 \n\t\t-0.59477824 0.86963338 1.1209589e-07 -0.60074621 0.9412114 1.2386458e-07 -0.58186823 \n\t\t0.98700541 1.3253742e-07 -0.53905821 0.84845126 1.0657744e-07 -0.66104418 0.83575541 \n\t\t1.0431262e-07 -0.66916019 0.76545137 9.3070796e-08 -0.67917222 1.0349151 1.3749143e-07 \n\t\t-0.60498422 1.1633332 1.6302114e-07 -0.45244622 0.58708537 5.8824039e-08 -0.85844821 \n\t\t0.41798133 2.8597695e-08 -0.96815819 0.3633053 2.047215e-08 -0.9593541 0.51814532 \n\t\t4.8235655e-08 -0.85656613 0.54842329 5.3673141e-08 -0.83623821 0.63879937 6.8070946e-08 \n\t\t-0.82480818 0.69641942 7.8451741e-08 -0.78523415 0.56271327 5.6023676e-08 -0.8324421 \n\t\t0.64940542 6.9866744e-08 -0.82061416 0.61418128 6.522108e-08 -0.79911011 0.74698538 \n\t\t8.7752888e-08 -0.74536616 0.6687054 7.505782e-08 -0.76129419 0.66828728 7.3222267e-08 \n\t\t-0.80888814 0.70438325 8.1882988e-08 -0.72610813 0.78245926 9.4562964e-08 -0.70973819 \n\t\t0.7961114 9.6868391e-08 -0.70450419 1.0922171 1.4973313e-07 -0.51407623 0.87632525 \n\t\t1.120812e-07 -0.62894613 0.83686531 1.0404203e-07 -0.68104416 0.89565343 1.1514949e-07 \n\t\t-0.62679416 0.9922173 1.3393907e-07 -0.52304417 0.76856536 9.1382432e-08 -0.73748618 \n\t\t0.75068933 8.8560533e-08 -0.73905021 0.70929736 8.0512741e-08 -0.7833522 0.69176948 \n\t\t7.7744744e-08 -0.7849142 0.63933945 6.7996901e-08 -0.82904214 1.1878031 1.696402e-07 \n\t\t-0.37623024 1.070721 1.4623308e-07 -0.51882422 1.1950972 1.7010343e-07 -0.39408809 \n\t\t1.2133832 1.7393678e-07 -0.36704421 1.2278252 1.770631e-07 -0.34303021 1.2175151 \n\t\t1.7611217e-07 -0.32574821 1.2397971 1.7973089e-07 -0.3210761 1.2244111 1.7813026e-07 \n\t\t-0.30016416 0.98754138 1.3400981e-07 -0.50171423 1.0437831 1.4078964e-07 -0.55319023 \n\t\t0.84867728 1.0724865e-07 -0.6439442 0.81574541 1.0026854e-07 -0.69470412 0.87349129 \n\t\t1.1108553e-07 -0.64393014 0.79128528 9.6486751e-08 -0.69470817 0.96718526 1.2898066e-07 \n\t\t-0.55229419 0.94187742 1.2506617e-07 -0.55234224 0.72412729 8.4046953e-08 -0.74998814 \n\t\t0.68926531 7.6950599e-08 -0.79585212 0.66564548 7.3298878e-08 -0.79585212 0.59628534 \n\t\t6.08756e-08 -0.84153813 0.44195327 3.2998845e-08 -0.94948012 1.067643 1.4447849e-07 \n\t\t-0.55319023 1.1759292 1.6739128e-07 -0.38733423 1.1995652 1.7102823e-07 -0.38779813 \n\t\t1.2056012 1.7238033e-07 -0.37654012 1.1541572 1.6414602e-07 -0.3840881 1.1597571 \n\t\t1.6540524e-07 -0.37351412 1.1901171 1.7066101e-07 -0.35841024 1.2143312 1.7440468e-07 \n\t\t-0.35840821 0.46108133 3.6421007e-08 -0.93698615 0.62207747 6.5270079e-08 -0.83060211 \n\t\t0.44434527 3.3775567e-08 -0.93854421 0.61961132 6.4481888e-08 -0.84153813 0.74813539 \n\t\t8.7758778e-08 -0.74998611 0.8184014 1.0112381e-07 -0.68275422 0.97054529 1.3045118e-07 \n\t\t-0.52673417 1.0164913 1.3968766e-07 -0.46940818 1.0131912 1.3797545e-07 -0.5017122 \n\t\t1.1867611 1.6836285e-07 -0.40623021 1.2012931 1.7245168e-07 -0.35672224 1.2083791 \n\t\t1.7402087e-07 -0.34399223 1.2244111 1.767656e-07 -0.33684009 0.8187573 1.0318497e-07 \n\t\t-0.62883812 0.91206729 1.202407e-07 -0.55816621 0.74866325 8.0577465e-08 -0.94518018 \n\t\t0.64517128 7.1224825e-08 -0.76652211 0.5640713 5.6581086e-08 -0.8231042 0.44578132 \n\t\t3.5432809e-08 -0.89997214 0.39801523 2.0782224e-08 -1.0952423 0.28034323 3.8994441e-10 \n\t\t-1.1543602 0.30889934 1.1032681e-08 -0.98698419 0.32422721 4.5173638e-09 -1.2257742 \n\t\t0.31794521 3.878414e-09 -1.2168442 0.86460525 1.0238426e-07 -0.84085822 0.85913724 \n\t\t9.9763056e-08 -0.88858426 0.91036332 1.1111503e-07 -0.79634225 0.99758321 1.3304135e-07 \n\t\t-0.56946623 0.96263528 1.2787119e-07 -0.5632062 0.97211933 1.2354994e-07 -0.71874821 \n\t\t1.0317072 1.3615494e-07 -0.62757421 1.012857 1.3148421e-07 -0.67477822 1.0784372 \n\t\t1.4861553e-07 -0.48685622 1.0390891 1.4066545e-07 -0.53702408 1.0762069 1.462072e-07 \n\t\t-0.54231411 1.0548211 1.4114535e-07 -0.58949423 1.1104232 1.5397259e-07 -0.47578621 \n\t\t1.1485572 1.6288679e-07 -0.39466208 1.1281911 1.5802145e-07 -0.4407981 1.1121632 \n\t\t1.5557517e-07 -0.43994612 1.1033791 1.5243101e-07 -0.48794812 1.1443032 1.6328642e-07 \n\t\t-0.36624622 1.1377392 1.6021269e-07 -0.4215802 1.1228292 1.5820299e-07 -0.41364008;\n\tsetAttr \".pt[5146:5311]\" 1.1160351 1.5936904e-07 -0.35407221 1.0937011 1.5415621e-07 \n\t\t-0.40137011 0.59105128 5.3825516e-08 -1.0092642 0.51433527 4.0844775e-08 -1.0393683 \n\t\t0.61263525 5.7236015e-08 -1.0072882 0.72310722 7.6315629e-08 -0.95353222 0.77844721 \n\t\t8.5825e-08 -0.92790425 0.55547726 4.8738496e-08 -0.99816823 0.68967122 7.1569126e-08 \n\t\t-0.94216824 0.48059523 3.5982207e-08 -1.0298603 0.80744523 9.075093e-08 -0.91600621 \n\t\t0.77184123 8.5050246e-08 -0.921278 0.74898124 8.1643165e-08 -0.91786027 0.33050922 \n\t\t5.1562474e-09 -1.2347059 0.32873321 5.3309264e-09 -1.2226319 0.5353893 4.4068045e-08 \n\t\t-1.0402222 0.29565123 1.0289454e-09 -1.2007922 1.0948712 1.518916e-07 -0.46709412 \n\t\t1.1125731 1.5456774e-07 -0.46872425 1.0853932 1.4969936e-07 -0.4866302 1.0681329 \n\t\t1.4570756e-07 -0.52219409 1.086643 1.485413e-07 -0.52294624 1.0556712 1.4552565e-07 \n\t\t-0.47530425 1.0658371 1.4782582e-07 -0.45572609 1.0371631 1.4133781e-07 -0.51095223 \n\t\t1.0353152 1.3811746e-07 -0.58982211 0.99222928 1.2823153e-07 -0.67648625 0.93320131 \n\t\t1.1565713e-07 -0.7691642 0.95473319 1.1910452e-07 -0.76598024 0.87362522 1.0347613e-07 \n\t\t-0.84899223 0.89642322 1.0719733e-07 -0.84371018 0.8341372 9.558093e-08 -0.89710426 \n\t\t0.8312372 9.4391162e-08 -0.91703022 0.80356723 8.9654556e-08 -0.92935824 0.8010512 \n\t\t9.0810708e-08 -0.88783193 0.83928925 9.8547922e-08 -0.83877218 0.89783722 1.1058717e-07 \n\t\t-0.75848222 0.95691127 1.2317658e-07 -0.66559219 1.0019712 1.33375e-07 -0.57873207 \n\t\t1.1713872 1.6491153e-07 -0.4351061 1.1711651 1.663465e-07 -0.3956182 1.1221812 1.5730407e-07 \n\t\t-0.4351061 1.1132711 1.5535204e-07 -0.45054609 1.1011912 1.5300333e-07 -0.46347612 \n\t\t1.1372612 1.6011163e-07 -0.42231023 1.1063192 1.5563633e-07 -0.41402012 1.1500771 \n\t\t1.6196525e-07 -0.42574412 1.1457092 1.6068351e-07 -0.44204223 1.1466192 1.614651e-07 \n\t\t-0.4248181 1.1422511 1.6018335e-07 -0.44111621 1.1230131 1.5805088e-07 -0.4184922 \n\t\t1.1186452 1.5676916e-07 -0.43479007 1.1063192 1.5563633e-07 -0.41402012 1.1019531 \n\t\t1.5435489e-07 -0.43031824 1.0852592 1.5194041e-07 -0.42584419 1.0685672 1.4952614e-07 \n\t\t-0.42137212 1.1435772 1.6037519e-07 -0.44147009 1.1191449 1.5411484e-07 -0.5082022 \n\t\t1.1293732 1.5559415e-07 -0.51094425 1.1435772 1.6037519e-07 -0.44147009 1.1244092 \n\t\t1.5760284e-07 -0.43633407 1.1035732 1.5186262e-07 -0.50403023 1.085331 1.4922418e-07 \n\t\t-0.49914211 1.0570391 1.4785884e-07 -0.41828209 1.0670872 1.4658549e-07 -0.49425423 \n\t\t1.0488452 1.4394708e-07 -0.48936611 1.0570412 1.4785917e-07 -0.41828209 1.1244092 \n\t\t1.5760284e-07 -0.43633407 1.1019531 1.5435489e-07 -0.43031824 1.1019531 1.5435489e-07 \n\t\t-0.43031824 1.1186452 1.5676916e-07 -0.43479007 1.1328932 1.5882989e-07 -0.43860811 \n\t\t1.1561671 1.621961e-07 -0.44484425 1.1422511 1.6018335e-07 -0.44111621 1.1608171 \n\t\t1.6286864e-07 -0.44609022 1.1561671 1.621961e-07 -0.44484425 1.1328932 1.5882989e-07 \n\t\t-0.43860811 1.1019531 1.5435489e-07 -0.43031824 1.0852592 1.5194041e-07 -0.42584419 \n\t\t1.0794972 1.5110703e-07 -0.42430019 1.0685672 1.4952616e-07 -0.42137212 1.0794972 \n\t\t1.5110703e-07 -0.42430019 1.0835432 1.4869514e-07 -0.50593221 1.0693769 1.4664622e-07 \n\t\t-0.50213623 1.049341 1.4374831e-07 -0.49676824 1.0552089 1.4459702e-07 -0.49834025 \n\t\t1.0434731 1.4289961e-07 -0.49519622 1.049341 1.4374831e-07 -0.49676824 1.0693752 \n\t\t1.4664595e-07 -0.50213623 1.0552089 1.4459702e-07 -0.49834025 1.1177431 1.5364161e-07 \n\t\t-0.51509613 1.1098012 1.5249293e-07 -0.51296812 1.1098012 1.5249293e-07 -0.51296812 \n\t\t1.1230131 1.5805088e-07 -0.4184922 1.1466192 1.614651e-07 -0.4248181 1.2001612 1.7301646e-07 \n\t\t-0.33684009 1.0896271 1.5322215e-07 -0.40954608 1.1031832 1.5901635e-07 -0.31015015 \n\t\t1.0742892 1.5483729e-07 -0.3024081 1.0729351 1.5080788e-07 -0.40507424 1.1800731 \n\t\t1.6830558e-07 -0.37998021 1.1272292 1.6081714e-07 -0.3616662 1.1397052 1.6046506e-07 \n\t\t-0.42296624 1.1063192 1.5563633e-07 -0.41402012 1.0729351 1.5080788e-07 -0.40507424 \n\t\t1.0743852 1.5332867e-07 -0.3433522 1.0977089 1.5074397e-07 -0.50972819 1.1191449 \n\t\t1.5411484e-07 -0.5082022 1.0835432 1.4869514e-07 -0.50593221 1.1177449 1.5364189e-07 \n\t\t-0.51509613 1.1331512 1.5614059e-07 -0.51195621 1.1206789 1.5406617e-07 -0.5158841 \n\t\t1.1293732 1.5559415e-07 -0.51094425 1.1035732 1.5186262e-07 -0.50403023 1.0977089 \n\t\t1.5074397e-07 -0.50972819 1.085331 1.4922418e-07 -0.49914211 1.0835432 1.4869514e-07 \n\t\t-0.50593221 1.0670872 1.4658549e-07 -0.49425423 1.0488452 1.4394708e-07 -0.48936611 \n\t\t1.1609712 1.6918936e-07 -0.27685815 1.1839272 1.7069138e-07 -0.33187425 1.1839292 \n\t\t1.7273871e-07 -0.27686018 1.1609712 1.6737447e-07 -0.32563424 1.1320772 1.6472232e-07 \n\t\t-0.27685618 1.1320772 1.6319542e-07 -0.31789219 1.1950132 1.72285e-07 -0.3351081 \n\t\t1.1950132 1.7445232e-07 -0.27686018 1.1031832 1.6025518e-07 -0.27685618 1.0742911 \n\t\t1.5578843e-07 -0.2768541 1.2001612 1.7524823e-07 -0.27686018 -1.033857 -1.8042203e-07 \n\t\t-0.55318999 -1.1614609 -1.9575636e-07 -0.43510598 -1.024989 -1.809782e-07 -0.6049841 \n\t\t-0.95261878 -1.7015202e-07 -0.61472797 -0.97707862 -1.7111803e-07 -0.53905797 -0.93195063 \n\t\t-1.6463534e-07 -0.55234212 -0.97761458 -1.6981137e-07 -0.50171399 -0.8385247 -1.5423596e-07 \n\t\t-0.66104394 -0.71534669 -1.3885035e-07 -0.75936002 -0.71420074 -1.3832447e-07 -0.74998802 \n\t\t-0.65571856 -1.3098943e-07 -0.79585201 -0.58635867 -1.2196601e-07 -0.84153789 -0.58911663 \n\t\t-1.2274724e-07 -0.85107392 -0.70250458 -1.3751071e-07 -0.77671605 -0.75044072 -1.4355092e-07 \n\t\t-0.73987204 -0.91998059 -1.6436371e-07 -0.59477812 -0.89707857 -1.5962142e-07 -0.56248611 \n\t\t-0.96639073 -1.7002266e-07 -0.55402809 -0.85970658 -1.5526717e-07 -0.6007461 -0.93128461 \n\t\t-1.6563099e-07 -0.58186811 -0.82582861 -1.5257508e-07 -0.66915995 -0.7725327 -1.4584518e-07 \n\t\t-0.70973808 -0.75552458 -1.4207833e-07 -0.67917198 -0.69445872 -1.3438373e-07 -0.72610801 \n\t\t-1.0912648 -1.8595938e-07 -0.463476 -1.033929 -1.8175869e-07 -0.58881408 -0.41732273 \n\t\t-1.0030746e-07 -0.96180791 -0.57715869 -1.2117286e-07 -0.85844797 -0.40805465 -9.9110849e-08 \n\t\t-0.96815795 -0.35337868 -9.0330133e-08 -0.95935386 -0.50821865 -1.1044443e-07 -0.85656589 \n\t\t-0.62887257 -1.2791634e-07 -0.82480818 -0.64917463 -1.3056196e-07 -0.81155401 -0.55278671 \n\t\t-1.1643721e-07 -0.8324421 -0.68649262 -1.3535214e-07 -0.78523403 -0.63947862 -1.2940002e-07 \n\t\t-0.82061416;\n\tsetAttr \".pt[5312:5477]\" -0.60425472 -1.2315412e-07 -0.79911 -0.73705858 -1.416864e-07 \n\t\t-0.74536604 -0.65877861 -1.3017666e-07 -0.76129407 -0.65836072 -1.3188296e-07 -0.80888802 \n\t\t-0.53849673 -1.1436916e-07 -0.83623821 -0.78618461 -1.4776107e-07 -0.70450407 -1.082291 \n\t\t-1.8645476e-07 -0.51407599 -0.86639869 -1.5735107e-07 -0.62894589 -0.82693875 -1.5318891e-07 \n\t\t-0.68104404 -0.88572663 -1.6025918e-07 -0.62679392 -0.98229074 -1.7132798e-07 -0.52304393 \n\t\t-0.96061873 -1.6811471e-07 -0.52673393 -0.75863868 -1.4472958e-07 -0.73748606 -0.69937068 \n\t\t-1.3727312e-07 -0.78335208 -0.68184257 -1.3462132e-07 -0.78491408 -0.62941253 -1.2815737e-07 \n\t\t-0.8290419 -0.61215055 -1.2554663e-07 -0.83060187 -0.45115465 -1.0461441e-07 -0.93698591 \n\t\t-1.1778768 -1.9610363e-07 -0.37623 -1.1851709 -1.978958e-07 -0.39408797 -1.0607949 \n\t\t-1.8330805e-07 -0.51882398 -1.2034569 -1.9971661e-07 -0.36704397 -1.1984528 -1.9808523e-07 \n\t\t-0.34399199 -1.2178988 -2.0105587e-07 -0.34302998 -1.2075888 -1.9881885e-07 -0.32574797 \n\t\t-1.2298708 -2.0208991e-07 -0.32107598 -1.0032647 -1.737769e-07 -0.50171196 -0.83875275 \n\t\t-1.5363496e-07 -0.64394397 -0.80581862 -1.5043192e-07 -0.694704 -0.78135872 -1.4665046e-07 \n\t\t-0.69470805 -0.9572587 -1.6854629e-07 -0.55229408 -0.73820859 -1.420361e-07 -0.74998599 \n\t\t-0.40928671 -9.8606201e-08 -0.94947594 -0.43202865 -1.0212235e-07 -0.94948012 -1.1768348 \n\t\t-1.970588e-07 -0.40622997 -1.057717 -1.8411089e-07 -0.55318999 -1.1660029 -1.9468104e-07 \n\t\t-0.38733399 -1.1896389 -1.9835252e-07 -0.38779801 -1.1956749 -1.9886683e-07 -0.37654001 \n\t\t-1.1442308 -1.9119422e-07 -0.38408798 -1.1801908 -1.9579832e-07 -0.35841 -1.2144848 \n\t\t-2.0029773e-07 -0.33683985 -1.1902349 -1.965486e-07 -0.33683985 -0.60968465 -1.2557231e-07 \n\t\t-0.84153789 -0.43441871 -1.0208495e-07 -0.93854398 -0.67933863 -1.3464118e-07 -0.79585201 \n\t\t-0.74076265 -1.4202406e-07 -0.73905009 -0.8084746 -1.5039791e-07 -0.6827541 -0.86356473 \n\t\t-1.5747047e-07 -0.6439299 -1.0065647 -1.7308513e-07 -0.46940807 -1.1913668 -1.9746336e-07 \n\t\t-0.356722 -1.2044048 -1.9954184e-07 -0.35840797 -1.2144848 -1.9893307e-07 -0.30016398 \n\t\t-0.80883074 -1.4844682e-07 -0.62883788 -0.90214074 -1.6024332e-07 -0.55816609 -0.63524473 \n\t\t-1.2673274e-07 -0.76652199 -0.55414474 -1.1629971e-07 -0.8231042 -0.52546275 -1.1994403e-07 \n\t\t-1.0402219 -0.4358547 -1.0087174e-07 -0.8999719 -0.38808879 -1.0075268e-07 -1.095242 \n\t\t-0.29897267 -8.2946819e-08 -0.98698395 -0.27041674 -8.4759812e-08 -1.1543602 -0.31430078 \n\t\t-9.4201688e-08 -1.2257742 -0.30801877 -9.289819e-08 -1.2168442 -0.85467881 -1.634241e-07 \n\t\t-0.84085798 -0.90043664 -1.6884208e-07 -0.79634202 -0.88649678 -1.6844942e-07 -0.84370995 \n\t\t-0.98765677 -1.738849e-07 -0.56946599 -0.95270872 -1.6824886e-07 -0.56320596 -0.96219265 \n\t\t-1.7550263e-07 -0.71874797 -0.94480675 -1.7457215e-07 -0.76598001 -1.0217808 -1.8132275e-07 \n\t\t-0.62757397 -1.0685109 -1.8331146e-07 -0.48685598 -1.029163 -1.7909481e-07 -0.53702396 \n\t\t-1.0662811 -1.8503025e-07 -0.54231399 -1.0448948 -1.8347934e-07 -0.58949399 -1.1004969 \n\t\t-1.8784473e-07 -0.47578597 -1.0767171 -1.8592304e-07 -0.522946 -1.1386309 -1.9072188e-07 \n\t\t-0.39466196 -1.1182648 -1.8928986e-07 -0.44079798 -1.1022369 -1.8678017e-07 -0.439946 \n\t\t-1.1026468 -1.8791435e-07 -0.46872401 -1.1343769 -1.8900687e-07 -0.36624599 -1.1278129 \n\t\t-1.9005095e-07 -0.42157996 -1.1129029 -1.8745037e-07 -0.41363996 -1.1498308 -1.9166654e-07 \n\t\t-0.373514 -1.0849448 -1.851169e-07 -0.467094 -1.0837748 -1.8249051e-07 -0.40136999 \n\t\t-1.1061088 -1.8418353e-07 -0.35407197 -0.58112472 -1.273977e-07 -1.009264 -0.60271072 \n\t\t-1.3066146e-07 -1.007288 -0.71318078 -1.4574039e-07 -0.95353198 -0.73873878 -1.4938099e-07 \n\t\t-0.94517994 -0.76852077 -1.533426e-07 -0.92790401 -0.5455507 -1.2148494e-07 -0.99816799 \n\t\t-0.67974478 -1.401482e-07 -0.942168 -0.47066879 -1.1108711e-07 -1.02986 -0.79751879 \n\t\t-1.573831e-07 -0.91600597 -0.82131076 -1.6109954e-07 -0.91702998 -0.7390548 -1.4841331e-07 \n\t\t-0.91786003 -0.32058278 -9.550525e-08 -1.2347059 -0.50440872 -1.1665723e-07 -1.0393683 \n\t\t-0.31880677 -9.4781413e-08 -1.2226319 -0.28572479 -8.8854179e-08 -1.2007922 -1.0934528 \n\t\t-1.8720822e-07 -0.487948 -1.0754669 -1.8437848e-07 -0.48662996 -1.058207 -1.8303332e-07 \n\t\t-0.52219397 -1.0457449 -1.7936192e-07 -0.47530401 -1.0559108 -1.8020513e-07 -0.45572597 \n\t\t-1.0272368 -1.7782691e-07 -0.510952 -1.0253888 -1.8047585e-07 -0.58982199 -0.98230273 \n\t\t-1.7703921e-07 -0.67648602 -1.0029311 -1.801649e-07 -0.67477798 -0.92327464 -1.7136166e-07 \n\t\t-0.76916397 -0.86369878 -1.6512129e-07 -0.84899199 -0.82421076 -1.6080647e-07 -0.89710402 \n\t\t-0.8492108 -1.6435456e-07 -0.88858402 -0.79364079 -1.5728035e-07 -0.92935801 -0.79112476 \n\t\t-1.5534624e-07 -0.88783193 -0.82936281 -1.5943253e-07 -0.83877194 -0.76191479 -1.5207473e-07 \n\t\t-0.921278 -0.88791078 -1.6549681e-07 -0.75848198 -0.94698471 -1.7117355e-07 -0.66559196 \n\t\t-0.99204475 -1.7490807e-07 -0.57873195 -1.1122549 -1.881489e-07 -0.43510598 -1.1612388 \n\t\t-1.9425272e-07 -0.39561796 -1.1534069 -1.9515637e-07 -0.45244598 -1.1033448 -1.8734588e-07 \n\t\t-0.45054597 -1.1087189 -1.8759047e-07 -0.43478996 -1.1273348 -1.9000422e-07 -0.42230999 \n\t\t-1.0920268 -1.8484343e-07 -0.430318 -1.1323248 -1.9147544e-07 -0.44111598 -1.1130868 \n\t\t-1.8765935e-07 -0.41849196 -1.1087189 -1.8759047e-07 -0.43478996 -1.0963929 -1.84912e-07 \n\t\t-0.41402 -1.0920268 -1.8484342e-07 -0.430318 -1.0753329 -1.82096e-07 -0.42584395 \n\t\t-1.1194469 -1.9208267e-07 -0.51094401 -1.1508908 -1.945309e-07 -0.44608998 -1.1092191 \n\t\t-1.9039938e-07 -0.50820196 -1.1144829 -1.8853906e-07 -0.43633395 -1.0754051 -1.8483449e-07 \n\t\t-0.49914199 -1.0571609 -1.8183198e-07 -0.49425399 -1.0695709 -1.8114771e-07 -0.42429996 \n\t\t-1.0389189 -1.7882981e-07 -0.48936599 -1.0471148 -1.7745199e-07 -0.41828197 -1.1144829 \n\t\t-1.8853906e-07 -0.43633395 -1.0920268 -1.8484343e-07 -0.430318 -1.1336509 -1.9169363e-07 \n\t\t-0.44146997 -1.1229669 -1.8993535e-07 -0.43860799 -1.1462408 -1.9376563e-07 -0.44484401 \n\t\t-1.1357828 -1.9204451e-07 -0.44204199 -1.1462408 -1.9376563e-07 -0.44484401 -1.1323248 \n\t\t-1.9147544e-07 -0.44111598 -1.1336509 -1.9169363e-07 -0.44146997 -1.1229669 -1.8993534e-07 \n\t\t-0.43860799 -1.0920268 -1.8484342e-07 -0.430318 -1.0753329 -1.8209599e-07 -0.42584395 \n\t\t-1.0586408 -1.7934894e-07 -0.421372 -1.0695709 -1.8114773e-07 -0.42429996 -1.0586408 \n\t\t-1.7934894e-07 -0.421372 -1.0471128 -1.7745168e-07 -0.41828197 -1.0736169 -1.8481066e-07 \n\t\t-0.50593197 -1.0736169 -1.8481066e-07 -0.50593197 -1.0394151 -1.7918195e-07 -0.496768 \n\t\t-1.0452831 -1.8014765e-07 -0.49834001;\n\tsetAttr \".pt[5478:5643]\" -1.0335468 -1.782162e-07 -0.49519598 -1.0394151 -1.7918195e-07 \n\t\t-0.496768 -1.0452831 -1.8014767e-07 -0.49834001 -1.1107531 -1.9092238e-07 -0.51588398 \n\t\t-1.0998749 -1.8913207e-07 -0.512968 -1.1130868 -1.8765935e-07 -0.41849196 -1.1740009 \n\t\t-1.9385396e-07 -0.33187401 -1.1221509 -1.853175e-07 -0.31789196 -1.0963929 -1.84912e-07 \n\t\t-0.41402 -1.1366929 -1.9154433e-07 -0.42481798 -1.1401508 -1.9211339e-07 -0.425744 \n\t\t-1.0797008 -1.8216487e-07 -0.40954596 -1.0932568 -1.8056228e-07 -0.31014997 -1.0630088 \n\t\t-1.7941781e-07 -0.405074 -1.1366929 -1.9154433e-07 -0.42481798 -1.1297789 -1.9040648e-07 \n\t\t-0.422966 -1.1173029 -1.8619674e-07 -0.36166596 -1.1701468 -1.9504807e-07 -0.37997997 \n\t\t-1.0963929 -1.84912e-07 -0.41402 -1.0630088 -1.7941781e-07 -0.405074 -1.0644588 -1.773454e-07 \n\t\t-0.34335196 -1.0877831 -1.8714206e-07 -0.50972795 -1.0936469 -1.8783662e-07 -0.50402999 \n\t\t-1.0594511 -1.8247934e-07 -0.50213599 -1.0571609 -1.8183198e-07 -0.49425399 -1.1194469 \n\t\t-1.9208267e-07 -0.51094401 -1.1078191 -1.9043945e-07 -0.51509601 -1.1232249 -1.9270441e-07 \n\t\t-0.51195598 -1.1078168 -1.904391e-07 -0.51509601 -1.1092191 -1.9039938e-07 -0.50820196 \n\t\t-1.0998749 -1.8913207e-07 -0.512968 -1.0936469 -1.8783662e-07 -0.50402999 -1.0877831 \n\t\t-1.8714206e-07 -0.50972795 -1.0754051 -1.8483449e-07 -0.49914199 -1.0736169 -1.8481066e-07 \n\t\t-0.50593197 -1.0594488 -1.8247898e-07 -0.50213599 -1.0389189 -1.7882981e-07 -0.48936599 \n\t\t-1.1510448 -1.882578e-07 -0.27685797 -1.1510448 -1.900727e-07 -0.325634 -1.1740029 \n\t\t-1.9180729e-07 -0.27686 -1.1221509 -1.837906e-07 -0.27685601 -1.1850868 -1.9568823e-07 \n\t\t-0.33510786 -1.1850868 -1.935209e-07 -0.27686 -1.0932568 -1.7932346e-07 -0.27685601 \n\t\t-1.0643648 -1.7485655e-07 -0.27685398 -1.0643629 -1.758071e-07 -0.30240798 -1.1902349 \n\t\t-1.9431681e-07 -0.27686 0.096795574 -1.8046817e-08 -0.88720614 0.096795551 -1.8046745e-08 \n\t\t-0.88720411 0.25538942 6.4724421e-09 -0.88720614 0.30532134 6.6163475e-09 -1.0908083 \n\t\t0.29877537 5.6043179e-09 -1.0908082 0.30532137 4.1914859e-08 -0.14214619 0.30532137 \n\t\t4.1914859e-08 -0.14214619 0.30532131 6.6163417e-09 -1.0908083 0.053650036 3.0055138e-09 \n\t\t-0.14214414 0.053649787 -3.2293105e-08 -1.0908082 0.29870746 4.0892399e-08 -0.14214414 \n\t\t0.26217741 7.5218942e-09 -0.88720614 0.096795365 -2.5622622e-08 -1.0908082 0.096795335 \n\t\t-2.5622628e-08 -1.0908083 0.25567338 -1.0594291e-09 -1.0908082 0.26217535 -5.419809e-11 \n\t\t-1.0908083 0.053649738 -3.2293116e-08 -1.0908083 0.0049632895 -3.982024e-08 -1.0908083 \n\t\t0.30532134 3.647747e-08 -0.28827819 -0.29539463 -5.0958299e-08 -0.14214613 -0.29539466 \n\t\t-8.6256811e-08 -1.0908083 -0.28878054 -4.9935657e-08 -0.14214408 -0.29539469 -8.6256819e-08 \n\t\t-1.0908083 -0.043723356 -1.2048813e-08 -0.14214414 -0.043723013 -4.7347342e-08 -1.0908082 \n\t\t0.0049633896 -4.5216422e-09 -0.14214414 -0.25225061 -7.2010792e-08 -0.88720614 -0.086868845 \n\t\t-4.6442015e-08 -0.88720411 -0.24546261 -7.0961335e-08 -0.88720614 -0.086869009 -4.6442118e-08 \n\t\t-0.88720614 -0.086868659 -5.4017836e-08 -1.0908083 -0.28884864 -8.5244771e-08 -1.0908082 \n\t\t-0.086868629 -5.4017832e-08 -1.0908082 -0.24574666 -7.8581024e-08 -1.0908082 -0.25224867 \n\t\t-7.9586265e-08 -1.0908083 -0.043723263 -4.7347381e-08 -1.0908083 0.0049633379 -3.9820232e-08 \n\t\t-1.0908082 0.004963344 -4.5217252e-09 -0.14214619 -0.29539463 -5.0958302e-08 -0.14214613 \n\t\t0.0049633035 -9.9591144e-09 -0.28827813 0.0049633398 -4.5217257e-09 -0.14214619 -0.29539466 \n\t\t-5.6395688e-08 -0.28827807 1.1159252 1.5823244e-07 -0.38416213 1.0957332 1.5213791e-07 \n\t\t-0.46405607 1.0801191 1.4994738e-07 -0.45805025 1.0667852 1.469289e-07 -0.48377025 \n\t\t1.0729772 1.4685783e-07 -0.51140821 1.0555612 1.4438895e-07 -0.50539625 1.0255949 \n\t\t1.3568177e-07 -0.61489409 1.0042429 1.3260659e-07 -0.60882223 0.98921514 1.2743251e-07 \n\t\t-0.68543625 0.96445918 1.2383049e-07 -0.67938018 0.93376726 1.1744917e-07 -0.72335422 \n\t\t0.90841115 1.1206604e-07 -0.76267219 0.87180936 1.0430176e-07 -0.81925797 0.89776725 \n\t\t1.0811752e-07 -0.82456422 0.83214325 9.6059622e-08 -0.87595427 0.8022992 8.9970214e-08 \n\t\t-0.91560602 0.77250123 8.4090487e-08 -0.9498142 0.75722921 8.1482156e-08 -0.95645821 \n\t\t0.72114325 7.539068e-08 -0.97023022 0.66485721 6.5213825e-08 -1.0098662 0.62610924 \n\t\t5.937973e-08 -1.0056602 0.53312129 4.3713449e-08 -1.0403283 0.50396127 3.8203684e-08 \n\t\t-1.0672442 0.47974318 3.4610537e-08 -1.0631843 0.31162518 2.8216187e-09 -1.218986 \n\t\t0.45314518 2.9627472e-08 -1.0865902 0.32649919 4.7462145e-09 -1.229064 1.1315012 \n\t\t1.6039289e-07 -0.39081824 1.0961791 1.5218268e-07 -0.46470612 1.1299431 1.6017678e-07 \n\t\t-0.39015222 1.0832992 1.4925863e-07 -0.48977423 1.0829072 1.4917377e-07 -0.49042612 \n\t\t1.0723091 1.467306e-07 -0.51205212 1.0215149 1.3502925e-07 -0.6154781 0.98572516 \n\t\t1.2693032e-07 -0.68443227 0.96059132 1.2158712e-07 -0.72360027 0.9626593 1.2169572e-07 \n\t\t-0.72927427 0.93882126 1.1655667e-07 -0.76834023 0.94009936 1.1726164e-07 -0.75470424 \n\t\t0.90923923 1.1082492e-07 -0.79946828 0.85252523 9.902859e-08 -0.8808502 0.87566119 \n\t\t1.0395038e-07 -0.84470618 0.82082123 9.2666433e-08 -0.92010403 0.84720922 9.8341481e-08 \n\t\t-0.87722826 0.79219121 8.6980378e-08 -0.95395994 0.81816119 9.2795446e-08 -0.90558422 \n\t\t0.77999723 8.4846583e-08 -0.96063995 0.81215119 9.1800416e-08 -0.90735424 0.7508052 \n\t\t7.9819671e-08 -0.97444618 0.8004452 8.9955947e-08 -0.90828621 0.72860122 7.7793409e-08 \n\t\t-0.9366442 0.60246128 5.61901e-08 -0.99312425 0.5650233 4.8489134e-08 -1.0445342 \n\t\t0.52441126 4.2804572e-08 -1.0285642 0.47585118 3.2963403e-08 -1.0912802 0.49411723 \n\t\t3.7027053e-08 -1.0579642 0.32804322 4.959317e-09 -1.2297522 -1.1059989 -1.8528615e-07 \n\t\t-0.38416201 -1.0701928 -1.8249966e-07 -0.45805001 -1.1200168 -1.8767626e-07 -0.39015198 \n\t\t-1.0568589 -1.8139519e-07 -0.48377001 -1.0630509 -1.8338088e-07 -0.51140797 -1.0456349 \n\t\t-1.804646e-07 -0.50539601 -0.99431682 -1.7637896e-07 -0.60882199 -0.95453286 -1.7285356e-07 \n\t\t-0.67937994 -0.9238407 -1.6974465e-07 -0.72335398 -0.9288947 -1.7219989e-07 -0.76833999 \n\t\t-0.89848685 -1.6728781e-07 -0.76267195 -0.86188269 -1.6373416e-07 -0.81925797 -0.88784081 \n\t\t-1.6794482e-07 -0.82456398 -0.8425988 -1.6304455e-07 -0.88084996 -0.82221681 -1.5971123e-07 \n\t\t-0.87595403 -0.79237276 -1.5657263e-07 -0.91560602 -0.76257479 -1.5323856e-07 -0.94981396 \n\t\t-0.74730277 -1.5112467e-07 -0.95645797 -0.71121681 -1.4605806e-07 -0.97022998 -0.6161828 \n\t\t-1.3268372e-07 -1.0056602;\n\tsetAttr \".pt[5644:5809]\" -0.52319473 -1.1959735e-07 -1.040328 -0.4698168 -1.1219533e-07 \n\t\t-1.063184 -0.4432188 -1.0895408e-07 -1.0865902 -0.4659248 -1.1263902e-07 -1.09128 \n\t\t-0.3017008 -9.2001102e-08 -1.218986 -1.1215749 -1.8794192e-07 -0.390818 -1.0858068 \n\t\t-1.8513713e-07 -0.46405596 -1.0862528 -1.8523026e-07 -0.464706 -1.0733728 -1.8417172e-07 \n\t\t-0.48977399 -1.0729809 -1.8413537e-07 -0.490426 -1.0623828 -1.8330155e-07 -0.512052 \n\t\t-1.0156691 -1.7990604e-07 -0.61489397 -1.0115891 -1.7929698e-07 -0.61547798 -0.97928882 \n\t\t-1.7690627e-07 -0.68543601 -0.97579885 -1.7632935e-07 -0.68443203 -0.95066464 -1.739009e-07 \n\t\t-0.72360003 -0.95273274 -1.7443175e-07 -0.72927403 -0.93017268 -1.7189009e-07 -0.754704 \n\t\t-0.89931279 -1.6878464e-07 -0.79946804 -0.86573476 -1.6527659e-07 -0.84470594 -0.81089479 \n\t\t-1.5960357e-07 -0.92010403 -0.83728278 -1.620879e-07 -0.87722802 -0.78226477 -1.5643698e-07 \n\t\t-0.95395994 -0.80823475 -1.5865204e-07 -0.90558398 -0.77007079 -1.548003e-07 -0.96063995 \n\t\t-0.80222476 -1.5778873e-07 -0.907354 -0.74087876 -1.5080079e-07 -0.97444594 -0.79051876 \n\t\t-1.5601361e-07 -0.90828598 -0.65493077 -1.3883081e-07 -1.009866 -0.71867478 -1.4596141e-07 \n\t\t-0.9366442 -0.55509675 -1.2468603e-07 -1.044534 -0.59253472 -1.2856118e-07 -0.99312401 \n\t\t-0.4940348 -1.160906e-07 -1.0672442 -0.51448673 -1.1781332e-07 -1.028564 -0.48419279 \n\t\t-1.142237e-07 -1.0579642 -0.31811678 -9.4939672e-08 -1.2297522 -0.31657282 -9.4675357e-08 \n\t\t-1.229064 0.46134529 2.5557947e-08 -1.2300322 0.46721929 2.6565365e-08 -1.2273642 \n\t\t0.45388928 2.4417419e-08 -1.2297043 0.47953528 2.8566802e-08 -1.2247483 0.48896128 \n\t\t3.0116752e-08 -1.2222582 0.49406329 3.0979443e-08 -1.2202722 0.49406329 3.1023347e-08 \n\t\t-1.2190922 0.48896128 3.0241775e-08 -1.2188982 0.47953528 2.875389e-08 -1.2197202 \n\t\t0.46721929 2.6786088e-08 -1.2214322 0.45388928 2.4638071e-08 -1.2237742 0.44157329 \n\t\t2.2636705e-08 -1.2263882 0.43214929 2.1087063e-08 -1.2288783 0.42704728 2.0224379e-08 \n\t\t-1.2308642 0.42704728 2.0180469e-08 -1.2320442 0.43214929 2.0962045e-08 -1.2322382 \n\t\t0.44157529 2.2449925e-08 -1.2314162 0.50177526 3.243094e-08 -1.2133062 0.48766729 \n\t\t3.0111149e-08 -1.2170322 0.50940937 3.372179e-08 -1.2103342 0.50940937 3.3787501e-08 \n\t\t-1.2085682 0.50177526 3.2618029e-08 -1.2082782 0.48766729 3.039111e-08 -1.2095082 \n\t\t0.46923727 2.7446424e-08 -1.2120702 0.44928727 2.423169e-08 -1.2155743 0.43085527 \n\t\t2.1236394e-08 -1.2194883 0.41674727 1.8916598e-08 -1.2232143 0.40911329 1.7625768e-08 \n\t\t-1.2261863 0.40911329 1.7560058e-08 -1.2279522 0.41674727 1.872951e-08 -1.2282423 \n\t\t0.43085527 2.0956431e-08 -1.2270123 0.44928727 2.3901425e-08 -1.2244502 0.46923727 \n\t\t2.7116156e-08 -1.2209462 0.46933728 2.7468953e-08 -1.2118802 0.44580528 2.3676986e-08 \n\t\t-1.2160143 0.49107927 3.1002109e-08 -1.2072642 0.50771934 3.3738303e-08 -1.2028682 \n\t\t0.51672536 3.5261124e-08 -1.1993623 0.51672536 3.5338594e-08 -1.1972802 0.50771934 \n\t\t3.3958948e-08 -1.1969383 0.49107927 3.1332377e-08 -1.1983882 0.46933728 2.7858533e-08 \n\t\t-1.2014102 0.44580528 2.4066566e-08 -1.2055442 0.42406327 2.0533404e-08 -1.2101603 \n\t\t0.40742329 1.7797301e-08 -1.2145542 0.39841726 1.6274477e-08 -1.2180603 0.39841726 \n\t\t1.6196934e-08 -1.2201443 0.40742329 1.7576578e-08 -1.2204862 0.42406327 2.0203139e-08 \n\t\t-1.2190362 -0.45141873 -1.1555911e-07 -1.230032 -0.44396272 -1.1439419e-07 -1.2297043 \n\t\t-0.45729274 -1.1636799e-07 -1.2273642 -0.46960872 -1.1817476e-07 -1.2247483 -0.47903472 \n\t\t-1.1953941e-07 -1.2222582 -0.48413673 -1.202543e-07 -1.2202722 -0.48413673 -1.202104e-07 \n\t\t-1.2190922 -0.47903472 -1.1941438e-07 -1.2188982 -0.46960872 -1.1798767e-07 -1.2197202 \n\t\t-0.45729274 -1.1614726e-07 -1.221432 -0.44396272 -1.1417353e-07 -1.223774 -0.43164873 \n\t\t-1.12367e-07 -1.226388 -0.42222273 -1.1100235e-07 -1.228878 -0.41712072 -1.1028747e-07 \n\t\t-1.2308642 -0.41712072 -1.1033136e-07 -1.232044 -0.42222273 -1.1112738e-07 -1.2322382 \n\t\t-0.43164873 -1.1255409e-07 -1.231416 -0.49184871 -1.211874e-07 -1.213306 -0.49948269 \n\t\t-1.2225706e-07 -1.2103342 -0.49184871 -1.2100031e-07 -1.2082779 -0.47774073 -1.1886493e-07 \n\t\t-1.2095079 -0.43936071 -1.1315693e-07 -1.215574 -0.42092872 -1.1045291e-07 -1.2194883 \n\t\t-0.39918673 -1.0734072e-07 -1.226186 -0.39918673 -1.0740644e-07 -1.227952 -0.42092872 \n\t\t-1.1073287e-07 -1.2270123 -0.43936071 -1.134872e-07 -1.2244502 -0.45931071 -1.1644118e-07 \n\t\t-1.2209462 -0.47774073 -1.1914489e-07 -1.217032 -0.45941073 -1.161193e-07 -1.21188 \n\t\t-0.43587872 -1.1263499e-07 -1.2160143 -0.48115271 -1.1930894e-07 -1.2072639 -0.49779266 \n\t\t-1.2171797e-07 -1.202868 -0.50679868 -1.229799e-07 -1.199362 -0.49948269 -1.2219135e-07 \n\t\t-1.2085682 -0.50679868 -1.2290242e-07 -1.1972799 -0.49779266 -1.2149732e-07 -1.196938 \n\t\t-0.48115271 -1.1897868e-07 -1.1983882 -0.45931071 -1.161109e-07 -1.21207 -0.45941073 \n\t\t-1.1572973e-07 -1.2014102 -0.43587872 -1.122454e-07 -1.205544 -0.41413671 -1.0905575e-07 \n\t\t-1.21016 -0.40682071 -1.084104e-07 -1.2232143 -0.39749673 -1.0664664e-07 -1.2145542 \n\t\t-0.38849071 -1.0538472e-07 -1.21806 -0.38849071 -1.0546226e-07 -1.220144 -0.40682071 \n\t\t-1.0859748e-07 -1.2282423 -0.39749673 -1.0686735e-07 -1.2204859 -0.41413671 -1.0938602e-07 \n\t\t-1.2190362 0.0070562675 7.8001623e-09 0.18031347 0.28167549 5.7818486e-08 0.38352025 \n\t\t0.28167549 5.781849e-08 0.38352025 0.0070563219 7.8001712e-09 0.18031347 0.28167552 \n\t\t5.7818507e-08 0.3835206 0.29040346 5.9408222e-08 0.38997978 0.0070562055 7.8001525e-09 \n\t\t0.18031345 0.0070561999 7.8001516e-09 0.18031345 0.29040343 5.9408215e-08 0.38997978 \n\t\t0.028880058 1.1775086e-08 0.19646226 0.028880233 1.1775113e-08 0.19646226 0.04906626 \n\t\t1.3880887e-08 0.16918185 0.049066234 1.3880883e-08 0.16918185 0.25985152 5.3843554e-08 \n\t\t0.36737192 0.28003746 5.5949336e-08 0.34009203 0.25985149 5.3843536e-08 0.3673715 \n\t\t0.28003743 5.5949318e-08 0.34009165 0.0028704675 7.1530208e-09 0.18031347 -0.27174851 \n\t\t-2.7743134e-08 0.38352028 -0.27174848 -2.7743114e-08 0.38352066 -0.28047654 -2.885217e-08 \n\t\t0.38997984 0.0028706202 7.1530435e-09 0.18031345 -0.28047657 -2.8852178e-08 0.38997984 \n\t\t-0.018953366 4.3798432e-09 0.19646227 -0.039139338 2.4393942e-10 0.16918187 -0.039139565 \n\t\t2.4390479e-10 0.16918187 -0.27011055 -2.9105808e-08 0.34009206 -0.018953342 4.3798463e-09 \n\t\t0.19646227 -0.27011058 -2.9105825e-08 0.34009171 -0.24992448 -2.4969909e-08 0.36737195 \n\t\t-0.2499245 -2.4969927e-08 0.36737156;\n\tsetAttr \".pt[5810:5975]\" 1.400755 2.0625261e-07 -0.27708212 1.325299 1.9364333e-07 \n\t\t-0.30243811 1.371515 2.0252141e-07 -0.25586614 1.366789 2.0328788e-07 -0.21563013 \n\t\t1.431489 2.146669e-07 -0.17864616 1.3069352 1.9361198e-07 -0.22697814 1.140879 1.631501e-07 \n\t\t-0.3556821 1.075639 1.5018124e-07 -0.43315014 1.1975831 1.7292491e-07 -0.32858816 \n\t\t1.2769471 1.8871279e-07 -0.23404415 0.50455308 1.2192611e-07 1.1803719 0.40454507 \n\t\t1.0921181e-07 1.254208 0.71829915 1.4730685e-07 0.97436398 0.76409906 1.6059917e-07 \n\t\t1.1413 0.20749307 8.1447745e-08 1.3267978 0.19984145 7.7308833e-08 1.2473558 0.38869902 \n\t\t1.0392463e-07 1.1779538 0.19287045 7.3924156e-08 1.1853561 0.48264104 1.1587323e-07 \n\t\t1.1087439 0.68174517 1.3949875e-07 0.91640198 0.64577913 1.3230458e-07 0.87249595 \n\t\t0.73630506 1.4077602e-07 0.72402996 0.78775102 1.5031435e-07 0.76661605 0.89632505 \n\t\t1.585552e-07 0.53696138 0.86363506 1.5226443e-07 0.50372308 0.99780512 1.643282e-07 \n\t\t0.27045891 1.0826169 1.7866495e-07 0.30336729 0.94907707 1.6811879e-07 0.57479995 \n\t\t0.83246106 1.5903966e-07 0.81533986 0.88352305 1.7222342e-07 0.95749396 1.099075 \n\t\t1.8529639e-07 0.41320628 1.0969849 1.774644e-07 0.21140271 1.1337469 1.8472032e-07 \n\t\t0.2536605 1.1121451 1.6844955e-07 -0.093866155 0.84577101 1.459193e-07 0.40742111 \n\t\t0.8925671 1.4655355e-07 0.23002693 0.80600303 1.4266166e-07 0.4851087 0.73264104 \n\t\t1.3973113e-07 0.71117204 0.64081717 1.3131901e-07 0.86662596 0.45921311 1.0993695e-07 \n\t\t1.046548 0.46159109 1.1053507e-07 1.052742 0.37241909 9.8928844e-08 1.1113341 1.3047051 \n\t\t1.9481561e-07 -0.18536419 1.3000611 1.9946447e-07 -0.041128162 1.2869571 1.9234824e-07 \n\t\t-0.17793214 1.2963891 1.9342484e-07 -0.18818814 1.2543851 1.8730242e-07 -0.17820215 \n\t\t1.2460672 1.8466299e-07 -0.21457618 1.1943952 1.7664408e-07 -0.21538818 1.2025832 \n\t\t1.7927755e-07 -0.17863417 1.1365992 1.6905568e-07 -0.17918414 1.1286732 1.6644896e-07 \n\t\t-0.21630818 1.2676132 1.9444788e-07 -0.041128162 1.2160071 1.8646944e-07 -0.041126166 \n\t\t1.1502732 1.7630671e-07 -0.041126166 1.1740052 1.7061784e-07 -0.29262418 1.2312351 \n\t\t1.7952009e-07 -0.29116619 1.2789172 1.8978818e-07 -0.21332818 1.2701012 1.8578241e-07 \n\t\t-0.28435415 1.2964132 1.9283783e-07 -0.20406421 1.3028872 1.9394911e-07 -0.20109814 \n\t\t1.3175932 2.02175e-07 -0.041128162 1.3504832 2.0215674e-07 -0.17827815 1.480903 2.3081994e-07 \n\t\t0.050155833 1.522817 2.3834215e-07 0.078163818 1.444139 2.260726e-07 0.075325862 \n\t\t1.4431031 2.2521627e-07 0.056615859 1.4706891 2.3058962e-07 0.086405843 1.4856731 \n\t\t2.3245688e-07 0.074329831 1.4984051 2.3457936e-07 0.078469828 1.5045431 2.3627867e-07 \n\t\t0.098635837 1.137907 1.7195842e-07 -0.10660608 1.4075171 2.1910571e-07 0.04025387 \n\t\t1.3017892 1.9982197e-07 -0.038700167 1.458639 2.2740893e-07 0.050991818 1.4312891 \n\t\t2.2346963e-07 0.058761857 1.441539 2.3194818e-07 0.24403726 1.4685071 2.2983338e-07 \n\t\t0.075147852 1.376261 2.3461882e-07 0.58704585 1.339157 2.2695272e-07 0.53518504 1.402207 \n\t\t2.4026917e-07 0.6310938 1.4675411 2.3686893e-07 0.26824465 1.495057 2.3434889e-07 \n\t\t0.08618784 1.2747989 2.2485847e-07 0.74631196 1.3128611 2.3317781e-07 0.81174785 \n\t\t1.199285 2.2774363e-07 1.1376159 1.0193532 2.0739047e-07 1.3382421 1.0439131 2.1528147e-07 \n\t\t1.4482678 0.90288121 2.011908e-07 1.65557 0.87796122 1.9290425e-07 1.5364097 0.6284892 \n\t\t1.6907077e-07 1.9324437 0.60956913 1.6086226e-07 1.7904497 0.64463735 1.7536168e-07 \n\t\t2.0344176 0.93798524 2.1062689e-07 1.7633098 1.088155 2.2586993e-07 1.54901 1.484231 \n\t\t2.4021602e-07 0.28885204 1.414301 2.4370812e-07 0.67326581 1.3563471 2.4540077e-07 \n\t\t0.95955777 1.3519371 2.4306436e-07 0.91508991 1.2444073 2.3934336e-07 1.261878 1.2531413 \n\t\t2.4212761e-07 1.300416 1.228683 2.3503036e-07 1.2112998 1.3399171 2.3939961e-07 0.86654192 \n\t\t1.1074013 2.307595e-07 1.60045 1.1208533 2.3401101e-07 1.631942 0.9566133 2.1552781e-07 \n\t\t1.8176237 0.66980743 1.8311319e-07 2.13816 0.65818137 1.7974978e-07 2.0960736 0.52125931 \n\t\t1.6240003e-07 2.19871 0.5101952 1.5813279e-07 2.129998 0.25956926 1.2310065e-07 2.2298579 \n\t\t0.26522928 1.2655843e-07 2.2992697 0.2705313 1.2914668e-07 2.3467999 0.25390923 1.1865302e-07 \n\t\t2.1338439 0.49848121 1.5266576e-07 2.0317416 0.48538113 1.4535726e-07 1.8897541 0.0049631917 \n\t\t8.4739845e-08 2.2567964 0.0049631563 8.1238852e-08 2.1627059 0.0049631195 7.6625938e-08 \n\t\t2.0387321 1.144169 1.7905052e-07 0.0579779 1.277851 2.0224118e-07 0.12578188 1.140553 \n\t\t1.7283952e-07 -0.093920156 1.240467 2.0644102e-07 0.39398614 1.189253 2.0538597e-07 \n\t\t0.57842791 1.4047711 2.2511479e-07 0.21315986 1.004817 1.806734e-07 0.68060786 1.0814549 \n\t\t1.9943418e-07 0.86637783 1.1599152 2.1818987e-07 1.0444379 0.94709903 1.8944748e-07 \n\t\t1.1562359 0.81620514 1.7628665e-07 1.3464041 0.57174915 1.4723925e-07 1.58147 0.53983718 \n\t\t1.344588e-07 1.3705857 0.45765111 1.3299228e-07 1.6726598 0.24773715 1.1279156e-07 \n\t\t2.00196 0.23426314 1.0215786e-07 1.7721601 0.43425307 1.2086373e-07 1.4439197 0.22289309 \n\t\t9.1925344e-08 1.5443999 1.139003 1.7278533e-07 -0.088936135 1.139119 1.7194598e-07 \n\t\t-0.1119761 1.280627 1.9788004e-07 -0.0029601553 1.292309 1.9943415e-07 -0.0097321374 \n\t\t1.4068531 2.1968003e-07 0.05844786 1.490013 2.3386109e-07 0.094035842 1.5143811 2.3761889e-07 \n\t\t0.093777828 1.463335 2.2883351e-07 0.069765821 1.4855471 2.322591e-07 0.069537833 \n\t\t1.3799431 2.1365422e-07 0.0083138272 1.3621372 2.1090418e-07 0.0083898231 1.3603312 \n\t\t2.1003022e-07 -0.0075941756 1.3782911 2.1273635e-07 -0.0094901696 1.510043 2.362149e-07 \n\t\t0.07406982 1.468001 2.294594e-07 0.067199826 1.467471 2.2897696e-07 0.056435853 1.4319431 \n\t\t2.2289413e-07 0.040577851 1.2803531 1.9714977e-07 -0.021448145 1.291877 1.9869151e-07 \n\t\t-0.027896145 1.4107851 2.083251e-07 -0.26305816 1.077849 1.5088682e-07 -0.42337015 \n\t\t1.4701711 2.2048462e-07 -0.1830181 1.4923691 2.3321863e-07 0.066979825 1.4529511 \n\t\t2.168881e-07 -0.20812614 0.24383937 1.201592e-07 2.2161636 0.45316133 1.463265e-07 \n\t\t2.0496778 0.48175737 1.53218e-07 2.1160717 0.25668335 1.2431532e-07 2.2744937 0.50582945 \n\t\t1.5908005e-07 2.1735959;\n\tsetAttr \".pt[5976:6141]\" 0.26479134 1.2707908e-07 2.3150821 0.52085537 1.6288351e-07 \n\t\t2.213382 0.53135735 1.656575e-07 2.244298 0.61621344 1.7013541e-07 2.0120621 0.64281934 \n\t\t1.7636276e-07 2.068876 0.58436352 1.6276731e-07 1.9463798 0.91496134 2.0580346e-07 \n\t\t1.7293438 0.94435334 2.1239563e-07 1.7843858 0.96079135 2.1632528e-07 1.821696 0.65893537 \n\t\t1.8030831e-07 2.1079516 0.97075331 2.1892372e-07 1.8501378 1.1125792 2.315668e-07 \n\t\t1.6006318 1.0973394 2.2775265e-07 1.5614477 1.248965 2.3992752e-07 1.2586398 1.3532633 \n\t\t2.4312533e-07 0.91121787 1.419203 2.4595792e-07 0.71336186 1.4087831 2.4287726e-07 \n\t\t0.67386383 1.495419 2.4259933e-07 0.30641702 1.3643632 2.3293357e-07 0.59118986 1.3797252 \n\t\t2.2172098e-07 0.22601682 1.4027711 2.2106231e-07 0.11255782 1.3177471 2.0283186e-07 \n\t\t-0.024114165 1.3366132 2.2210484e-07 0.41546601 1.3303611 2.2607024e-07 0.54801506 \n\t\t1.4611392 2.3135708e-07 0.14671183 1.4616311 2.3615793e-07 0.27369243 1.3917731 2.2331611e-07 \n\t\t0.21882702 0.99517113 1.567756e-07 0.078423895 1.0409789 1.6441022e-07 0.093273915 \n\t\t0.99642509 1.5494865e-07 0.024113905 1.0442389 1.6264451e-07 0.0322739 0.9465031 \n\t\t1.4712745e-07 0.021343898 0.94620109 1.4905795e-07 0.074481912 1.0780729 1.7204111e-07 \n\t\t0.14422992 1.087377 1.7013576e-07 0.054363918 1.0720209 1.7316357e-07 0.19954272 \n\t\t1.1081589 1.7427122e-07 0.079155907 1.0424149 1.5689126e-07 -0.11476807 0.99140108 \n\t\t1.4868877e-07 -0.12324809 0.98570698 1.4295658e-07 -0.25364408 1.039753 1.5183629e-07 \n\t\t-0.23956208 0.96601307 1.3246502e-07 -0.45378014 1.019793 1.4095836e-07 -0.44897613 \n\t\t0.95214099 1.2724027e-07 -0.53655815 1.004373 1.3541451e-07 -0.53389806 0.91013312 \n\t\t1.2386957e-07 -0.45260212 0.89746696 1.1884802e-07 -0.53493005 1.087365 1.6098026e-07 \n\t\t-0.19164418 1.112059 1.6696724e-07 -0.13334613 1.045341 1.4220639e-07 -0.52158815 \n\t\t1.0593491 1.4496548e-07 -0.50564015 0.93145108 1.344651e-07 -0.25642005 1.0883989 \n\t\t1.6486078e-07 -0.091650084 1.0532068 1.4308127e-07 -0.53075814 1.0939571 1.5160502e-07 \n\t\t-0.47099814 1.2882571 1.8914997e-07 -0.26928818 0.93909907 1.405034e-07 -0.12591611 \n\t\t0.88856912 1.2807484e-07 -0.24998407 0.86809111 1.1767341e-07 -0.44444004 0.85562706 \n\t\t1.126877e-07 -0.52664405 0.84990317 1.1525574e-07 -0.433844 0.83712506 1.1022149e-07 \n\t\t-0.51604801 0.86832899 1.2533991e-07 -0.23938808 0.89628112 1.3411076e-07 -0.11981009 \n\t\t0.87504512 1.3122185e-07 -0.10921407 0.90385711 1.4075894e-07 0.027383907 0.90382111 \n\t\t1.4272611e-07 0.080401912 0.88163108 1.3771697e-07 0.037979916 0.88159508 1.3968413e-07 \n\t\t0.090997919 0.83331114 1.0867446e-07 -0.54177803 0.90336508 1.4395165e-07 0.11523391 \n\t\t0.88079113 1.4070423e-07 0.12175392 0.87840909 1.4184857e-07 0.16240592 0.8999871 \n\t\t1.4539715e-07 0.16811793 0.94668508 1.5062231e-07 0.11451393 0.87523907 1.4305529e-07 \n\t\t0.20800854 0.99884307 1.6137157e-07 0.18668573 0.99432707 1.5770868e-07 0.1070079 \n\t\t0.95006913 1.5351206e-07 0.17811613 0.94044513 1.5488568e-07 0.2550211 1.0393249 \n\t\t1.6535077e-07 0.12542391 1.0623591 1.4830165e-07 -0.42848602 0.94454116 1.2470935e-07 \n\t\t-0.57300001 0.90019315 1.1840714e-07 -0.55810618 1.0280148 1.3863868e-07 -0.54548019 \n\t\t1.0379108 1.4022744e-07 -0.54390019 0.85969305 1.1199675e-07 -0.56210816 0.84232903 \n\t\t1.1016555e-07 -0.53917402 1.0330031 1.415148e-07 -0.48891011 0.98637718 1.3509127e-07 \n\t\t-0.46781215 1.079571 1.4861214e-07 -0.49165812 0.99645513 1.3272525e-07 -0.57327414 \n\t\t0.93871516 1.2246009e-07 -0.60924202 0.98894519 1.3014989e-07 -0.61128414 0.9450891 \n\t\t1.2468705e-07 -0.57587606 0.88620514 1.1461055e-07 -0.60202014 0.84644306 1.0903224e-07 \n\t\t-0.58672619 0.84976119 1.1033525e-07 -0.56549418 0.83115304 1.0785262e-07 -0.55489814 \n\t\t0.82980317 1.0707002e-07 -0.57032216 1.028331 1.3656847e-07 -0.60243219 1.0407509 \n\t\t1.3896839e-07 -0.58953816 1.0722808 1.4515228e-07 -0.5543521 1.0186168 1.3442066e-07 \n\t\t-0.61979216 1.0301931 1.3666019e-07 -0.60770416 0.98126918 1.2835136e-07 -0.62772602 \n\t\t0.93536901 1.2135725e-07 -0.62497818 0.88761514 1.1426892e-07 -0.61706018 0.85178918 \n\t\t1.0936546e-07 -0.59998417 0.83849114 1.0798591e-07 -0.58180618 0.96944517 1.2643387e-07 \n\t\t-0.63012999 0.93411916 1.2108723e-07 -0.627042 0.89596313 1.1538505e-07 -0.62175006 \n\t\t1.037955 1.3864056e-07 -0.58673209 0.86295515 1.1081248e-07 -0.60749018 0.97829902 \n\t\t1.3332374e-07 -0.48175016 1.0144268 1.3654166e-07 -0.54538012 0.95657116 1.2793078e-07 \n\t\t-0.53640813 1.090243 1.5032495e-07 -0.48996815 1.0010231 1.3362869e-07 -0.56797409 \n\t\t0.94396716 1.2517002e-07 -0.5582341 1.058079 1.4208736e-07 -0.57771409 0.98204505 \n\t\t1.303485e-07 -0.57727611 0.99871701 1.3359856e-07 -0.55920202 0.99130517 1.3252394e-07 \n\t\t-0.55728614 1.0393268 1.40354e-07 -0.54638219 1.0404588 1.411024e-07 -0.53097218 \n\t\t1.082931 1.4979304e-07 -0.47388211 1.0346551 1.4244227e-07 -0.47084811 0.94733107 \n\t\t1.2554737e-07 -0.56207007 0.94726312 1.2562765e-07 -0.55963016 0.89353502 1.1728512e-07 \n\t\t-0.56059605 0.85191905 1.1115705e-07 -0.55237406 0.86093718 1.1264818e-07 -0.54977006 \n\t\t1.0247988 1.3764266e-07 -0.55888617 1.0508128 1.4221843e-07 -0.54400015 1.0370208 \n\t\t1.3949227e-07 -0.55996019 0.98775917 1.3146038e-07 -0.57113606 0.89855915 1.1768063e-07 \n\t\t-0.57084215 0.89135706 1.1645091e-07 -0.57396615 1.034271 1.4182432e-07 -0.48586014 \n\t\t0.98643303 1.3441712e-07 -0.48616216 0.84108716 1.0951447e-07 -0.55151206 1.1018492 \n\t\t1.5942742e-07 -0.29356015 1.4542651 2.2955014e-07 0.12671182 1.3895251 2.0695032e-07 \n\t\t-0.21167012 1.307127 1.9680238e-07 -0.1420321 1.3854411 2.0547985e-07 -0.23422009 \n\t\t1.3856311 2.0828679e-07 -0.15957215 1.357591 1.9956327e-07 -0.2775121 1.3577831 2.023706e-07 \n\t\t-0.20286211 1.3254911 1.9623798e-07 -0.23350415 1.197775 1.7573223e-07 -0.25393811 \n\t\t1.164445 1.6877577e-07 -0.30240813 1.164253 1.6596852e-07 -0.37705615 1.2432051 1.8220327e-07 \n\t\t-0.26879016 1.2430151 1.7939627e-07 -0.34344015 1.528955 2.400416e-07 0.098333821 \n\t\t1.3271792 2.1246821e-07 0.19567582 1.3021472 2.0042005e-07 -0.024114165 1.3072971 \n\t\t2.0939436e-07 0.19567603 1.0316391 1.4280634e-07 -0.44853213 0.98186505 1.3459416e-07 \n\t\t-0.46242413 0.98604906 1.3581754e-07 -0.44693014 1.0379111 1.4309963e-07 -0.46671012 \n\t\t1.108217 1.5536797e-07 -0.42911813;\n\tsetAttr \".pt[6142:6307]\" 1.068231 1.4844372e-07 -0.44906613 1.095495 1.5286572e-07 \n\t\t-0.44350615 0.84884906 1.091844e-07 -0.59263402 0.93257314 1.2128638e-07 -0.61526603 \n\t\t0.93458104 1.220416e-07 -0.60331213 1.0021911 1.3176025e-07 -0.62304217 1.0125169 \n\t\t1.3376179e-07 -0.61215419 0.92613506 1.2205635e-07 -0.5678221 0.82819742 1.8837183e-07 \n\t\t1.6213697 0.97887743 2.058331e-07 1.464566 0.87909341 1.9788013e-07 1.6654338 0.5430094 \n\t\t1.5466443e-07 1.90044 0.76934737 1.7737752e-07 1.5704178 0.49518934 1.4529458e-07 \n\t\t1.847316 0.41743734 1.3906066e-07 2.00284 0.37612733 1.306588e-07 1.9486821 0.22862738 \n\t\t1.1530688e-07 2.148962 0.20990936 1.1060114e-07 2.1002679 0.91419941 1.939804e-07 \n\t\t1.4147598 0.18826537 1.0515982e-07 2.043962 0.004963336 7.7650178e-08 2.066258 1.0681752 \n\t\t2.2119966e-07 1.5065118 1.0348134 2.1608376e-07 1.5076398 0.0049630078 5.0477571e-08 \n\t\t1.3359841 0.0049630124 4.4945814e-08 1.1873159 0.0049633062 8.6382911e-08 2.3009539 \n\t\t0.0049632909 8.7912703e-08 2.3420677 1.389717 2.0975762e-07 -0.13702013 1.366981 \n\t\t2.0619707e-07 -0.13824214 1.2771372 1.9209519e-07 -0.14393009 1.3717071 2.0532866e-07 \n\t\t-0.18121812 1.3929292 2.2346897e-07 0.21813183 1.4595312 2.3542289e-07 0.26266363 \n\t\t1.4599172 2.3554762e-07 0.26441184 1.4304131 2.2639782e-07 0.14109783 1.3852111 2.2243874e-07 \n\t\t0.22251262 1.4297732 2.2663174e-07 0.15004383 1.4402572 2.2750353e-07 0.12991183 \n\t\t1.4087912 2.2156647e-07 0.10109382 1.4463252 2.2843088e-07 0.12962182 1.4132571 2.2228394e-07 \n\t\t0.10181984 1.4791411 2.3408444e-07 0.14521182 1.4745492 2.3357707e-07 0.15065582 \n\t\t1.4825292 2.3475425e-07 0.14913583 1.4580011 2.3028082e-07 0.13082582 1.4779571 2.3424981e-07 \n\t\t0.15457582 1.4828812 2.353767e-07 0.16440183 1.462731 2.3658281e-07 0.28054103 1.4000372 \n\t\t2.2213511e-07 0.15274982 1.4047612 2.2240327e-07 0.14032783 1.4395492 2.2771287e-07 \n\t\t0.13847981 1.4090451 2.2304273e-07 0.13971382 1.4457352 2.2864835e-07 0.1379178 1.4368411 \n\t\t2.2778542e-07 0.15168183 1.4408332 2.2854884e-07 0.15561183 1.4783351 2.3487426e-07 \n\t\t0.16978782 1.4458371 2.298914e-07 0.17090182 0.19216345 7.3584232e-08 1.1791582 0.37394905 \n\t\t9.9394882e-08 1.117502 1.083501 1.5159276e-07 -0.42788211 1.230741 1.7725523e-07 \n\t\t-0.34998211 1.231377 1.7709912e-07 -0.35682014 1.4355091 2.1325644e-07 -0.23325613 \n\t\t1.4247711 2.1105238e-07 -0.24787411 1.441627 2.1457551e-07 -0.22322617 1.458801 2.1815383e-07 \n\t\t-0.19841613 1.485007 2.2375512e-07 -0.15676619 1.473561 2.2141624e-07 -0.17206617 \n\t\t1.4405031 2.1660642e-07 -0.16397418 1.3462511 2.010203e-07 -0.19123615 -1.233089 \n\t\t-2.0341959e-07 -0.34343991 -1.347665 -2.186804e-07 -0.27751186 -1.4317009 -2.296528e-07 \n\t\t-0.22322594 -1.448875 -2.3138482e-07 -0.19841589 -1.379599 -2.2116762e-07 -0.21166988 \n\t\t-1.463635 -2.3268633e-07 -0.17206587 -1.3568629 -2.1779989e-07 -0.21562989 -1.4215629 \n\t\t-2.2642665e-07 -0.17864586 -1.2970089 -2.0896847e-07 -0.22697796 -1.187657 -1.9584299e-07 \n\t\t-0.32858804 -0.49462694 -3.2551213e-08 1.180372 -0.39461893 -1.4342223e-08 1.254208 \n\t\t-0.52991086 -3.0928632e-08 1.3705862 -0.70837283 -7.3262505e-08 0.9743641 -0.75417298 \n\t\t-7.4131918e-08 1.1413002 -0.19756693 1.8823812e-08 1.3267981 -0.18991554 1.7050809e-08 \n\t\t1.2473561 -0.378773 -1.4729688e-08 1.1779541 -0.36402297 -1.4698617e-08 1.1175022 \n\t\t-0.47271496 -3.1828723e-08 1.108744 -0.67181885 -6.97678e-08 0.9164021 -0.63585281 \n\t\t-6.5840986e-08 0.87249607 -0.72637898 -8.5360938e-08 0.72403008 -0.77782494 -9.1730122e-08 \n\t\t0.76661617 -0.88639897 -1.1706127e-07 0.5369615 -0.85370898 -1.1324401e-07 0.50372326 \n\t\t-0.98787892 -1.4266671e-07 0.27045909 -1.0726911 -1.5455453e-07 0.3033675 -0.93915099 \n\t\t-1.2380902e-07 0.57480007 -0.82253498 -9.6829524e-08 0.81533998 -0.87359697 -9.9434544e-08 \n\t\t0.95749408 -1.0891491 -1.5301204e-07 0.41320649 -1.0982331 -1.6684605e-07 0.079156086 \n\t\t-0.83584493 -1.1406543e-07 0.40742123 -0.8826409 -1.279009e-07 0.23002708 -0.79607695 \n\t\t-1.0502648e-07 0.48510888 -0.72271496 -8.5272887e-08 0.71117216 -0.63089085 -6.5292262e-08 \n\t\t0.86662608 -0.45166489 -3.0658057e-08 1.0527421 -0.44928691 -3.0520884e-08 1.0465481 \n\t\t-0.36249289 -1.4691567e-08 1.1113341 0.0049630082 4.7486736e-08 1.2556041 0.0049630119 \n\t\t4.5177256e-08 1.193536 0.0049630329 5.9199081e-08 1.5703782 -0.18223755 1.57003e-08 \n\t\t1.1791582 -1.2901348 -2.0099046e-07 -0.041127924 -1.2770308 -2.0405484e-07 -0.17793196 \n\t\t-1.2864628 -2.0589466e-07 -0.18818796 -1.2444588 -1.9902912e-07 -0.17820197 -1.2361408 \n\t\t-1.9909656e-07 -0.21457601 -1.1844689 -1.9113807e-07 -0.215388 -1.1926569 -1.9103641e-07 \n\t\t-0.17863399 -1.1266729 -1.8085547e-07 -0.17918396 -1.1187469 -1.8101142e-07 -0.216308 \n\t\t-1.2576869 -1.9597388e-07 -0.041127954 -1.2060808 -1.879953e-07 -0.041125957 -1.1403469 \n\t\t-1.7783256e-07 -0.041125957 -1.2213088 -1.9965329e-07 -0.29116601 -1.2689909 -2.0412887e-07 \n\t\t-0.213328 -1.2783308 -2.0765506e-07 -0.269288 -1.2929609 -2.0737967e-07 -0.20109797 \n\t\t-1.2864869 -2.0648912e-07 -0.20406403 -1.4709769 -2.2555282e-07 0.050156072 -1.5128909 \n\t\t-2.3099076e-07 0.078164086 -1.4342129 -2.1893243e-07 0.075326115 -1.433177 -2.1946845e-07 \n\t\t0.056616098 -1.2707009 -1.9656572e-07 -0.0029599168 -1.396927 -2.1379589e-07 0.058448099 \n\t\t-1.397591 -2.1457551e-07 0.040254109 -1.3522109 -2.0874518e-07 0.0083900616 -1.453409 \n\t\t-2.2210708e-07 0.069766089 -1.488479 -2.2720519e-07 0.078470096 -1.431613 -2.1225293e-07 \n\t\t0.24403751 -1.3663349 -1.8939775e-07 0.58704609 -1.3922809 -1.9177016e-07 0.63109404 \n\t\t-1.457615 -2.1537222e-07 0.26824489 -1.4851309 -2.2640039e-07 0.086188108 -1.264873 \n\t\t-1.6778523e-07 0.74631208 -1.302935 -1.71235e-07 0.81174809 -1.1893589 -1.4155054e-07 \n\t\t1.1376162 -1.0339868 -1.0597039e-07 1.4482683 -0.89295477 -7.6452814e-08 1.6555703 \n\t\t-0.86803478 -7.7033881e-08 1.5364102 -0.61856276 -2.3728559e-08 1.9324442 -0.59964281 \n\t\t-2.6086868e-08 1.7904502 -0.63471067 -2.2430768e-08 2.0344181 -0.9280588 -7.7871171e-08 \n\t\t1.7633103 -1.078229 -1.0906194e-07 1.5490103 -1.4743049 -2.1718577e-07 0.2888523 \n\t\t-1.329991 -1.7337915e-07 0.86654216 -1.2187569 -1.4335389e-07 1.2113003 -1.342011 \n\t\t-1.7343108e-07 0.91509014 -1.2344807 -1.4390291e-07 1.2618783 -1.346421 -1.7245829e-07 \n\t\t0.95955801 -1.2432147 -1.4381926e-07 1.3004162 -1.0974747 -1.1012338e-07 1.6004503;\n\tsetAttr \".pt[6308:6473]\" -1.404375 -1.9207077e-07 0.67326605 -1.409277 -1.9133671e-07 \n\t\t0.7133621 -1.4854929 -2.182619e-07 0.30641729 -0.94668674 -7.8730181e-08 1.8176242 \n\t\t-0.64825457 -2.2230592e-08 2.0960736 -0.51133275 2.757069e-09 2.1987104 -0.50026876 \n\t\t1.9109079e-09 2.129998 -0.24964279 4.4374389e-08 2.2298584 -0.25530273 4.6082061e-08 \n\t\t2.2992702 -0.24398281 4.167687e-08 2.1338439 -0.48855478 6.595724e-11 2.0317421 0.0049632313 \n\t\t8.731714e-08 2.326062 0.004963275 8.9112397e-08 2.37431 -1.1342431 -1.7320136e-07 \n\t\t0.057978079 -1.2679249 -1.9134622e-07 0.12578209 -1.2305411 -1.7558698e-07 0.39398634 \n\t\t-1.123821 -1.6430896e-07 0.25366068 -1.1793271 -1.6080624e-07 0.57842809 -1.394845 \n\t\t-2.0771736e-07 0.21316011 -1.3292309 -1.8559101e-07 0.53518528 -0.99489099 -1.2848967e-07 \n\t\t0.68060809 -1.071529 -1.3342596e-07 0.86637807 -1.1499889 -1.3893079e-07 1.0444381 \n\t\t-1.0094268 -1.0626725e-07 1.3382421 -0.93717295 -1.0186871e-07 1.1562362 -0.80627882 \n\t\t-7.4556041e-08 1.3464041 -0.56182283 -2.8015625e-08 1.5814703 -0.44772491 -6.9825554e-09 \n\t\t1.6726602 -0.47545487 -3.1919278e-09 1.8897543 -0.23781084 3.7723847e-08 2.00196 \n\t\t-0.22433688 3.1256423e-08 1.7721603 -0.42432693 -1.1876253e-08 1.4439201 -0.21296692 \n\t\t2.4539601e-08 1.5444001 0.0049630734 6.7774046e-08 1.8008338 -1.1291929 -1.7874436e-07 \n\t\t-0.11197592 -1.1306269 -1.7829421e-07 -0.093919918 -1.1279809 -1.7835717e-07 -0.1066059 \n\t\t-1.129077 -1.7786914e-07 -0.088935897 -1.282383 -1.9862379e-07 -0.009731899 -1.421363 \n\t\t-2.175621e-07 0.058762096 -1.458581 -2.2270645e-07 0.075148106 -1.460763 -2.2262489e-07 \n\t\t0.086406112 -1.4800869 -2.2532855e-07 0.094036095 -1.504455 -2.2910555e-07 0.093778096 \n\t\t-1.494617 -2.274038e-07 0.098636106 -1.475621 -2.2554964e-07 0.069538102 -1.2922208 \n\t\t-2.0067991e-07 -0.024113927 -1.3504049 -2.090607e-07 -0.0075939372 -1.3076669 -2.0370099e-07 \n\t\t-0.041127924 -1.3683648 -2.1190793e-07 -0.0094899312 -1.2918628 -2.0116728e-07 -0.038699929 \n\t\t-1.4487129 -2.2207962e-07 0.050992057 -1.475747 -2.2539082e-07 0.074330069 -1.4580749 \n\t\t-2.2292394e-07 0.067200094 -1.482443 -2.2669953e-07 0.066980094 -1.4575449 -2.2324252e-07 \n\t\t0.056436092 -1.270427 -1.9721129e-07 -0.021447906 -1.281951 -1.9923286e-07 -0.027895907 \n\t\t-1.0679229 -1.8085834e-07 -0.42336991 -1.5001169 -2.2916818e-07 0.074070089 -1.425583 \n\t\t-2.2908014e-07 -0.23325589 -1.422017 -2.1833982e-07 0.04057809 -0.23391263 4.6296773e-08 \n\t\t2.2161636 -0.21870062 4.6148127e-08 2.148962 -0.47183064 5.7893774e-09 2.1160717 \n\t\t-0.24675666 4.6481418e-08 2.2744937 -0.49590266 4.2081481e-09 2.1735959 -0.25486666 \n\t\t4.6737821e-08 2.3150821 -0.51092869 3.3654486e-09 2.213382 -0.26060671 4.7030564e-08 \n\t\t2.3467999 -0.52143067 2.8921581e-09 2.2442985 -0.60628653 -1.8868116e-08 2.0120621 \n\t\t-0.63289267 -2.0867564e-08 2.068876 -0.57443649 -1.6387931e-08 1.9463798 -0.90503466 \n\t\t-7.5575393e-08 1.7293438 -0.93442667 -7.807148e-08 1.7843858 -0.95086467 -7.9224598e-08 \n\t\t1.821696 -0.64900869 -2.1905217e-08 2.1079516 -0.96082664 -7.9706481e-08 1.8501378 \n\t\t-1.1109267 -1.1103134e-07 1.6319423 -1.1026527 -1.1091716e-07 1.6006318 -0.65988052 \n\t\t-2.2462034e-08 2.13816 -1.0874126 -1.1001898e-07 1.5614477 -1.2390389 -1.4472811e-07 \n\t\t1.2586401 -1.3433367 -1.7378009e-07 0.91121811 -1.398857 -1.9119541e-07 0.67386413 \n\t\t-1.3544369 -1.8740408e-07 0.5911901 -1.3697989 -2.0336674e-07 0.22601707 -1.3172529 \n\t\t-1.9637186e-07 0.19567606 -1.3928448 -2.1115139e-07 0.11255806 -1.3700168 -2.1150088e-07 \n\t\t0.0083140656 -1.4443388 -2.1858592e-07 0.12671207 -1.4480748 -2.1901046e-07 0.13082607 \n\t\t-1.3204348 -1.837537e-07 0.54801524 -0.98524493 -1.4940485e-07 0.078424074 -1.0310531 \n\t\t-1.5593443e-07 0.093274094 -0.98649889 -1.5161953e-07 0.024114083 -1.0343131 -1.5870818e-07 \n\t\t0.032274079 -0.9365769 -1.4400446e-07 0.021344077 -0.93627489 -1.4198056e-07 0.074482091 \n\t\t-0.93675888 -1.4056586e-07 0.11451409 -1.0324891 -1.6389741e-07 -0.11476789 -0.98147488 \n\t\t-1.5632595e-07 -0.12324791 -0.97578102 -1.6029752e-07 -0.2536439 -1.0298271 -1.6812929e-07 \n\t\t-0.2395619 -0.95608687 -1.6469953e-07 -0.45377991 -1.009867 -1.7283541e-07 -0.44897589 \n\t\t-0.94221503 -1.6563494e-07 -0.53655791 -0.99444687 -1.7361123e-07 -0.53389794 -0.90020692 \n\t\t-1.5601643e-07 -0.45260188 -0.887541 -1.5712155e-07 -0.53493005 -0.88360894 -1.5746865e-07 \n\t\t-0.56059605 -0.92152488 -1.5201259e-07 -0.25641987 -0.92917287 -1.4833911e-07 -0.12591593 \n\t\t-0.84570098 -1.503446e-07 -0.52664405 -0.85816491 -1.4921287e-07 -0.44444004 -0.82719898 \n\t\t-1.4708985e-07 -0.51604801 -0.83997685 -1.4600666e-07 -0.433844 -0.87864292 -1.4514339e-07 \n\t\t-0.24998389 -0.85840303 -1.4161995e-07 -0.2393879 -0.88635492 -1.4149209e-07 -0.11980991 \n\t\t-0.86511892 -1.3781465e-07 -0.10921396 -0.89393091 -1.3718646e-07 0.027384086 -0.89389491 \n\t\t-1.3520817e-07 0.080402076 -0.87170488 -1.3335597e-07 0.037980095 -0.87166888 -1.3137767e-07 \n\t\t0.090998068 -0.8934409 -1.3384192e-07 0.11523409 -0.87086493 -1.3010899e-07 0.12175408 \n\t\t-0.86848289 -1.2822811e-07 0.16240607 -0.8900609 -1.3135161e-07 0.16811807 -0.86531287 \n\t\t-1.2604119e-07 0.20800868 -0.93051893 -1.3437304e-07 0.25502127 -0.98891687 -1.4594427e-07 \n\t\t0.18668589 -0.98440099 -1.482108e-07 0.10700808 -0.94014293 -1.3872248e-07 0.17811629 \n\t\t-1.062095 -1.5677952e-07 0.19954291 -1.029399 -1.5448245e-07 0.1254241 -1.0439931 \n\t\t-1.5574795e-07 0.15205209 -1.077439 -1.7370732e-07 -0.19164394 -1.032853 -1.760623e-07 \n\t\t-0.44019189 -1.0529389 -1.713112e-07 -0.2290459 -1.052433 -1.7865389e-07 -0.4284859 \n\t\t-1.1021329 -1.7535592e-07 -0.13334589 -1.0152149 -1.7664756e-07 -0.52920794 -1.0354149 \n\t\t-1.7948703e-07 -0.52158791 -1.049423 -1.8105932e-07 -0.50563991 -1.0784731 -1.7014654e-07 \n\t\t-0.091649905 -1.0588751 -1.6754794e-07 -0.10324191 -1.102219 -1.7390022e-07 -0.093865916 \n\t\t-1.0294012 -1.7947983e-07 -0.54638195 -1.0432812 -1.8104438e-07 -0.5307579 -1.084031 \n\t\t-1.8512087e-07 -0.4709979 -1.0982909 -1.8576722e-07 -0.42911789 -1.130953 -1.8808444e-07 \n\t\t-0.35568187 -1.0774511 -1.6455554e-07 0.054364096 -1.087059 -1.6019776e-07 0.21140291 \n\t\t-1.0681471 -1.5977331e-07 0.14423011 -1.0593851 -1.621719e-07 0.043360095 -1.051905 \n\t\t-1.5829185e-07 0.11655808 -0.98137885 -1.724611e-07 -0.5572859 -0.93461686 -1.6581622e-07 \n\t\t-0.57300001 -0.93733692 -1.6573925e-07 -0.55962992 -0.89026684 -1.5840533e-07 -0.55810595 \n\t\t-0.83240294 -1.4875489e-07 -0.53917402 -0.83116084 -1.4902194e-07 -0.55151206 -0.99708092 \n\t\t-1.7523244e-07 -0.56652391;\n\tsetAttr \".pt[6474:6639]\" -1.000891 -1.7530414e-07 -0.55261993 -1.0305332 -1.7908147e-07 \n\t\t-0.53097206 -1.0696449 -1.8366546e-07 -0.491658 -1.023077 -1.7636363e-07 -0.48890999 \n\t\t-0.97645086 -1.6836999e-07 -0.46781191 -1.073005 -1.8352353e-07 -0.47388199 -0.92878884 \n\t\t-1.6626369e-07 -0.60924202 -0.97901887 -1.7410544e-07 -0.6112839 -0.87627882 -1.578767e-07 \n\t\t-0.60201991 -0.83651698 -1.5116029e-07 -0.58672595 -0.83983487 -1.5088324e-07 -0.56549394 \n\t\t-0.81987685 -1.4797729e-07 -0.57032192 -0.92544293 -1.6633192e-07 -0.62497795 -0.97134286 \n\t\t-1.7353048e-07 -0.62772602 -0.87768883 -1.5865432e-07 -0.61705995 -0.84186286 -1.524801e-07 \n\t\t-0.59998393 -0.82856482 -1.4974779e-07 -0.58180594 -0.92419285 -1.6621544e-07 -0.627042 \n\t\t-0.85302883 -1.5448569e-07 -0.60748994 -0.99022496 -1.7636349e-07 -0.62540793 -0.99817693 \n\t\t-1.7697053e-07 -0.60868192 -1.0086912 -1.7900948e-07 -0.61979204 -1.018405 -1.7986532e-07 \n\t\t-0.60243207 -1.0064089 -1.7674908e-07 -0.56852591 -1.0308253 -1.8130578e-07 -0.58953804 \n\t\t-1.0408872 -1.8116698e-07 -0.54399991 -1.0803169 -1.8525252e-07 -0.48996791 -1.0623552 \n\t\t-1.848712e-07 -0.55435187 -1.020267 -1.8034936e-07 -0.60770392 -1.0481529 -1.8354474e-07 \n\t\t-0.57771397 -0.99226499 -1.7659085e-07 -0.62304205 -1.0025913 -1.777822e-07 -0.61215407 \n\t\t-1.0045012 -1.7559292e-07 -0.54538 -0.94664484 -1.6631424e-07 -0.53640789 -0.99109697 \n\t\t-1.7436125e-07 -0.56797397 -0.93404084 -1.6517772e-07 -0.55823398 -1.0180892 -1.7769739e-07 \n\t\t-0.54548007 -1.0090352 -1.766313e-07 -0.55444807 -1.024729 -1.7594697e-07 -0.47084799 \n\t\t-1.027985 -1.7629638e-07 -0.46671 -0.98879105 -1.7367834e-07 -0.55920202 -0.93740487 \n\t\t-1.6584055e-07 -0.56207007 -0.84199297 -1.5072871e-07 -0.55237406 -0.85101086 -1.5202602e-07 \n\t\t-0.54977006 -0.82338482 -1.4745754e-07 -0.54177803 -1.0148731 -1.7769899e-07 -0.55888593 \n\t\t-1.0270952 -1.7962854e-07 -0.55996007 -1.0279852 -1.7916857e-07 -0.54390007 -1.0243449 \n\t\t-1.7644616e-07 -0.48586002 -0.96837294 -1.6763974e-07 -0.48175004 -0.97650898 -1.6906176e-07 \n\t\t-0.48616192 -0.97783285 -1.7242823e-07 -0.57113606 -0.98652881 -1.738522e-07 -0.5732739 \n\t\t-0.93516493 -1.6600795e-07 -0.57587606 -0.88863283 -1.5862659e-07 -0.57084191 -0.88143098 \n\t\t-1.576294e-07 -0.57396591 -0.84976697 -1.5229278e-07 -0.56210792 -0.82122695 -1.4761211e-07 \n\t\t-0.5548979 -1.2601749 -2.0540867e-07 -0.28435397 -1.021713 -1.7465034e-07 -0.44853202 \n\t\t-1.1640788 -1.9085954e-07 -0.292624 -0.97612298 -1.6754231e-07 -0.4469299 -1.0919229 \n\t\t-1.7973876e-07 -0.29355997 -1.4033308 -2.1317211e-07 0.10182007 -1.3570549 -2.1495006e-07 \n\t\t-0.1382419 -1.375515 -2.2137529e-07 -0.23421985 -1.361589 -2.2002769e-07 -0.2558659 \n\t\t-1.2670208 -2.0459511e-07 -0.23404391 -1.2672108 -2.0127146e-07 -0.14392991 -1.1543269 \n\t\t-1.9249346e-07 -0.37705591 -1.233279 -2.0067134e-07 -0.26878992 -1.154519 -1.8974559e-07 \n\t\t-0.30240789 -1.3153729 -2.1463266e-07 -0.30290189 -1.5190289 -2.3118922e-07 0.098334089 \n\t\t-1.3078208 -2.0309172e-07 -0.024113927 -1.2973708 -1.9329799e-07 0.19567627 -1.3266869 \n\t\t-1.8965227e-07 0.41546625 -0.97193897 -1.6747197e-07 -0.46242389 -1.0583049 -1.8032746e-07 \n\t\t-0.44906589 -1.0855689 -1.843357e-07 -0.44350603 -0.83892298 -1.5175209e-07 -0.59263402 \n\t\t-0.92264682 -1.6553825e-07 -0.61526603 -0.92465496 -1.6540392e-07 -0.6033119 -0.88603681 \n\t\t-1.6011946e-07 -0.62175006 -0.95951885 -1.717919e-07 -0.63012999 -0.97797096 -1.7455463e-07 \n\t\t-0.62771004 -1.028029 -1.8076905e-07 -0.58673185 -0.97211897 -1.7177329e-07 -0.57727599 \n\t\t-0.91620898 -1.6277761e-07 -0.56782198 -0.81827062 -6.6178899e-08 1.6213697 -0.9689526 \n\t\t-9.5309417e-08 1.464566 -0.86916661 -7.2408064e-08 1.6654338 -0.5330826 -1.170381e-08 \n\t\t1.90044 -0.48526266 -6.2873249e-09 1.847316 -0.40751067 1.1520303e-08 2.00284 -0.36620066 \n\t\t1.5891851e-08 1.9486821 -0.75942057 -5.8976298e-08 1.5704178 -0.44323465 7.7400015e-09 \n\t\t2.0496778 -0.19998263 4.7230156e-08 2.1002679 -0.90427262 -8.7162853e-08 1.4147598 \n\t\t0.0049633379 7.9807393e-08 2.124234 -0.1783388 4.8481311e-08 2.043962 -1.0582489 \n\t\t-1.0755424e-07 1.5065118 -1.0248866 -1.0235433e-07 1.5076398 0.0049633197 8.4192955e-08 \n\t\t2.2420979 0.0049633323 8.1672965e-08 2.174372 -1.1878489 -1.9309503e-07 -0.25393787 \n\t\t-1.361781 -2.1727982e-07 -0.18121788 -1.3797909 -2.1841967e-07 -0.13701989 -1.2972009 \n\t\t-2.0583741e-07 -0.14203192 -1.375705 -2.1862711e-07 -0.15957192 -1.315565 -2.1208014e-07 \n\t\t-0.23350391 -1.347857 -2.1593246e-07 -0.20286188 -1.4496049 -2.1434148e-07 0.2626639 \n\t\t-1.3991188 -2.1111094e-07 0.13971406 -1.3948349 -2.1042578e-07 0.14032806 -1.4198469 \n\t\t-2.1393122e-07 0.15004407 -1.3988649 -2.1250868e-07 0.10109406 -1.4646229 -2.20831e-07 \n\t\t0.15065607 -1.4512129 -2.1890452e-07 0.14671208 -1.4499909 -2.1433611e-07 0.26441211 \n\t\t-1.4528049 -2.1417102e-07 0.2805413 -1.3830029 -2.0570151e-07 0.21813206 -1.4296229 \n\t\t-2.1587292e-07 0.13848008 -1.4358089 -2.1685021e-07 0.13791807 -1.4269148 -2.1496301e-07 \n\t\t0.15168208 -1.4309069 -2.1543397e-07 0.15561208 -1.4680308 -2.2121202e-07 0.15457608 \n\t\t-1.4684088 -2.2070445e-07 0.16978808 -1.4359108 -2.1563868e-07 0.17090207 -1.3818468 \n\t\t-2.0549692e-07 0.21882726 -1.3901109 -2.0923322e-07 0.15275006 -0.18294455 1.5821612e-08 \n\t\t1.1853561 -1.0735749 -1.8190003e-07 -0.42788187 -1.0657129 -1.8088056e-07 -0.4331499 \n\t\t-1.2208149 -2.0176539e-07 -0.34998187 -1.2214509 -2.0211814e-07 -0.3568199 -1.390829 \n\t\t-2.2533774e-07 -0.27708188 -1.400859 -2.2636661e-07 -0.26305792 -1.414845 -2.2796392e-07 \n\t\t-0.24787387 -1.443025 -2.3084169e-07 -0.2081259 -1.460245 -2.3256973e-07 -0.18301786 \n\t\t-1.475081 -2.3388664e-07 -0.15676589 -1.4305768 -2.2727433e-07 -0.16397388 -1.3363248 \n\t\t-2.1371696e-07 -0.19123591 -1.3405569 -2.1388909e-07 -0.17827791 -1.2947788 -2.0707529e-07 \n\t\t-0.18536401 0.96943742 1.7817423e-07 0.76044583 1.0220855 1.9165337e-07 0.90394783 \n\t\t0.92288941 1.715642e-07 0.77620775 1.0650012 1.9744003e-07 0.88114983 1.1251916 2.0945056e-07 \n\t\t0.95384383 1.0837333 2.0397175e-07 0.97885984 1.1868435 2.2179168e-07 1.0293498 1.1458633 \n\t\t2.164135e-07 1.0550838 1.2204692 2.2613195e-07 1.0062797 1.1594152 2.1393045e-07 \n\t\t0.93204182 1.1007373 2.0224893e-07 0.86190575 1.0087932 1.838001e-07 0.74811774 1.1234493 \n\t\t2.0529319e-07 0.84935182 1.0345533 1.8752827e-07 0.74127984 1.1807975 2.1667542e-07 \n\t\t0.91696984 1.2412193 2.2871831e-07 0.98957169 1.2465053 2.2923371e-07 0.98145974 \n\t\t1.1866512 2.1734387e-07 0.91061181 1.1302593 2.0618759e-07 0.84509373;\n\tsetAttr \".pt[6640:6805]\" 1.0434092 1.8887705e-07 0.74073184 1.1194593 2.0470547e-07 \n\t\t0.85013574 1.0332912 1.8753937e-07 0.74682182 1.1754313 2.1574689e-07 0.91431183 \n\t\t1.2348715 2.2751337e-07 0.98356384 1.2087193 2.2390168e-07 0.99516183 1.1494855 2.1221229e-07 \n\t\t0.92712384 1.0933533 2.0116143e-07 0.86335975 1.0064592 1.8382102e-07 0.75837785 \n\t\t1.0553695 1.9602155e-07 0.8830477 0.96639144 1.782013e-07 0.77382976 1.1122376 2.0720917e-07 \n\t\t0.94742984 1.1715152 2.1888219e-07 1.0148456 1.1292454 2.1325923e-07 1.0393598 1.0116414 \n\t\t1.9011523e-07 0.90600574 1.2670375 2.355182e-07 1.0650456 1.2939312 2.3931852e-07 \n\t\t1.0554357 1.3059373 2.4115744e-07 1.0549717 1.3005753 2.4066807e-07 1.0640998 1.2793316 \n\t\t2.3801567e-07 1.0810838 1.2448555 2.3352347e-07 1.1036036 1.2028075 2.2793355e-07 \n\t\t1.1280837 1.2958753 2.441592e-07 1.1774538 1.2519252 2.3815942e-07 1.1988218 1.3365575 \n\t\t2.532133e-07 1.2517498 1.2905753 2.4671857e-07 1.2682598 1.3635492 2.6019902e-07 \n\t\t1.3273418 1.3161132 2.5323797e-07 1.3373598 1.4026035 2.6588884e-07 1.3179858 1.3744155 \n\t\t2.5848109e-07 1.2360218 1.3319852 2.4899427e-07 1.1573596 1.3543253 2.5186583e-07 \n\t\t1.1417098 1.3979332 2.6165296e-07 1.2235498 1.4268636 2.6937118e-07 1.3107736 1.4332952 \n\t\t2.7021383e-07 1.3066957 1.4041693 2.623386e-07 1.2160658 1.3601035 2.5242264e-07 \n\t\t1.1326656 1.3477473 2.5048391e-07 1.1319017 1.3914473 2.6032978e-07 1.2149378 1.4201677 \n\t\t2.6817747e-07 1.3065138 1.3902097 2.6367942e-07 1.3101038 1.3624096 2.560318e-07 \n\t\t1.2200818 1.3198097 2.4643646e-07 1.1392076 1.2799957 2.4082317e-07 1.1537776 1.2288173 \n\t\t2.3026548e-07 1.0826838 1.3208994 2.500189e-07 1.2309598 1.3473834 2.5731711e-07 \n\t\t1.3170598 1.2985834 2.5011298e-07 1.3262117 1.2735974 2.4325496e-07 1.2457178 1.2347076 \n\t\t2.3454241e-07 1.1731536 1.1854213 2.2440167e-07 1.1054037 1.1433734 2.1881175e-07 \n\t\t1.1298838 1.1907574 2.2854262e-07 1.1945218 1.2276156 2.367603e-07 1.2622278 1.3061557 \n\t\t2.5468961e-07 1.4177477 1.3552957 2.6218135e-07 1.4149117 1.3985777 2.6875355e-07 \n\t\t1.4117038 1.4290375 2.733475e-07 1.4086058 1.4426413 2.7535657e-07 1.4060758 1.4365792 \n\t\t2.7436189e-07 1.4045318 1.4125355 2.7063089e-07 1.4041618 1.3735036 2.6463039e-07 \n\t\t1.4050758 1.3258976 2.5734502e-07 1.4070837 1.3683676 2.6670571e-07 1.4821918 1.3216972 \n\t\t2.5924032e-07 1.4754738 1.3500893 2.6662346e-07 1.5559278 1.3052875 2.5912553e-07 \n\t\t1.5405718 1.3206176 2.645821e-07 1.6235218 1.2784375 2.5720144e-07 1.6004238 1.3533975 \n\t\t2.706588e-07 1.6506338 1.3858715 2.7283616e-07 1.5742198 1.4062712 2.7288675e-07 \n\t\t1.4908178 1.4291673 2.7677171e-07 1.5000938 1.4067115 2.767469e-07 1.5927318 1.3712975 \n\t\t2.7443383e-07 1.6777138 1.3722335 2.754347e-07 1.7007238 1.4100856 2.7786234e-07 \n\t\t1.6086898 1.4342295 2.7787115e-07 1.5086077 1.4199417 2.7590025e-07 1.5150058 1.3947573 \n\t\t2.7589525e-07 1.6195138 1.3553653 2.733924e-07 1.7159238 1.3239093 2.6873113e-07 \n\t\t1.7213517 1.3637476 2.7126012e-07 1.6237898 1.3891957 2.7127382e-07 1.5184197 1.3460937 \n\t\t2.6460165e-07 1.5181937 1.3212274 2.6456712e-07 1.6205858 1.2821554 2.6206803e-07 \n\t\t1.7157677 1.2367356 2.5447537e-07 1.7004337 1.2739974 2.5689636e-07 1.6106738 1.2975494 \n\t\t2.5695928e-07 1.5145057 1.2291974 2.4939877e-07 1.5953197 1.2508817 2.4949429e-07 \n\t\t1.5077878 1.1945536 2.4709442e-07 1.6773357 1.1869975 2.4967071e-07 1.7779698 1.2303293 \n\t\t2.5709352e-07 1.7974157 1.2713673 2.6370711e-07 1.8046438 1.3036455 2.6845134e-07 \n\t\t1.7980298 1.3226935 2.706922e-07 1.7791078 1.3250095 2.6997878e-07 1.7503117 1.3109075 \n\t\t2.665339e-07 1.7163237 1.2819055 2.6078089e-07 1.6822138 1.2429155 2.5366847e-07 \n\t\t1.6530697 1.2350013 2.5534897e-07 1.7311177 1.1997273 2.4864227e-07 1.6974378 1.1809633 \n\t\t2.4841725e-07 1.7693558 1.1498773 2.4223817e-07 1.7324538 1.1208413 2.4011516e-07 \n\t\t1.7960438 1.0943713 2.3457166e-07 1.7570437 1.1349733 2.4400583e-07 1.8418878 1.2005335 \n\t\t2.5305448e-07 1.8126677 1.2595655 2.6061488e-07 1.7705758 1.2691635 2.6356264e-07 \n\t\t1.8099178 1.2050775 2.5536664e-07 1.8559278 1.1340655 2.455715e-07 1.8877378 1.1188452 \n\t\t2.4467005e-07 1.9267517 1.1945115 2.5510076e-07 1.8926837 1.2629555 2.638443e-07 \n\t\t1.8432817 1.2412575 2.6130672e-07 1.8652397 1.1698536 2.521918e-07 1.9169598 1.0910915 \n\t\t2.4134084e-07 1.9525958 1.0554373 2.3617586e-07 1.9619298 1.1353375 2.4717801e-07 \n\t\t1.9256278 1.2079135 2.5643908e-07 1.8729658 1.1676255 2.4990192e-07 1.8646758 1.0959213 \n\t\t2.4075189e-07 1.9166998 1.0170953 2.2990191e-07 1.9526278 0.98189151 2.234986e-07 \n\t\t1.9268098 1.0576773 2.3392768e-07 1.8922018 1.1266795 2.4273669e-07 1.8422397 1.0265936 \n\t\t2.2774893e-07 1.8552998 0.90121353 2.1170325e-07 1.9450258 0.93302155 2.1760991e-07 \n\t\t1.9716058 0.97000366 2.2368366e-07 1.9811778 1.0066292 2.2898801e-07 1.9715538 1.0374513 \n\t\t2.3276252e-07 1.9449278 1.0574435 2.3435798e-07 1.9047378 1.0640473 2.3362173e-07 \n\t\t1.8575118 1.0556935 2.3057342e-07 1.8102977 1.0342133 2.2575813e-07 1.7701358 0.98787344 \n\t\t2.2002313e-07 1.8085498 0.97153348 2.1600231e-07 1.7683818 0.91973746 2.0869574e-07 \n\t\t1.7872298 0.90846145 2.055088e-07 1.7484318 0.85364348 1.9682304e-07 1.7427698 0.84712744 \n\t\t1.9448244e-07 1.7069398 0.84491944 1.9704343e-07 1.7849418 0.91643745 2.0988219e-07 \n\t\t1.8328278 0.99034148 2.2216118e-07 1.8557558 0.97798747 2.2200753e-07 1.9029578 0.89847547 \n\t\t2.0880177e-07 1.8784238 0.82168543 1.9502238e-07 1.8271638 0.78797746 1.9114961e-07 \n\t\t1.8631397 0.8691076 2.0570477e-07 1.9172158 0.95323545 2.1967492e-07 1.9431138 0.91942358 \n\t\t2.1543676e-07 1.9697018 0.83242744 2.009896e-07 1.9429017 0.74859947 1.8595031e-07 \n\t\t1.8870238 0.70965344 1.8025302e-07 1.8957298 0.79419547 1.9542341e-07 1.9521638 0.88195163 \n\t\t2.1000005e-07 1.9792858 0.84648961 2.0416012e-07 1.9696817 0.76028544 1.8983579e-07 \n\t\t1.9428918 0.67720145 1.7492148e-07 1.8872818 0.65582943 1.7073685e-07 1.8636198 0.73558557 \n\t\t1.8506111e-07 1.9171997 0.81824762 1.9880389e-07 1.9430778;\n\tsetAttr \".pt[6806:6971]\" 0.80190754 1.9478306e-07 1.9029098 0.7243095 1.8187416e-07 \n\t\t1.8784018 0.58157545 1.5609227e-07 1.7785698 0.60002148 1.5970033e-07 1.7988938 0.63123548 \n\t\t1.6478654e-07 1.805892 0.67089546 1.7062195e-07 1.7979318 0.71275145 1.7630632e-07 \n\t\t1.776788 0.75039345 1.8095072e-07 1.745204 0.77837348 1.8390355e-07 1.7083038 0.79194748 \n\t\t1.8463636e-07 1.6715977 0.78965944 1.8312765e-07 1.6405578 0.73699147 1.7280493e-07 \n\t\t1.5819681 0.73832148 1.7207304e-07 1.556772 0.69112349 1.6199861e-07 1.4821278 0.69537544 \n\t\t1.6194672e-07 1.4630657 0.63602346 1.4613843e-07 1.284822 0.64370745 1.469927e-07 \n\t\t1.2758538 0.61090142 1.426709e-07 1.2960138 0.66999346 1.5958778e-07 1.505132 0.71924746 \n\t\t1.7117929e-07 1.6120058 0.68716747 1.6735103e-07 1.6424137 0.63457137 1.5498706e-07 \n\t\t1.528666 0.57152939 1.3702154e-07 1.3077778 0.52434337 1.3011932e-07 1.3183378 0.59070742 \n\t\t1.4896956e-07 1.5492001 0.64610547 1.6197873e-07 1.6686457 0.60206747 1.5583298e-07 \n\t\t1.686456 0.54486537 1.4241144e-07 1.5634238 0.4763473 1.2298425e-07 1.3260059 0.43473536 \n\t\t1.1669017e-07 1.3297498 0.50396144 1.3631211e-07 1.5694598 0.56174147 1.4986111e-07 \n\t\t1.693516 0.53154147 1.4499768e-07 1.688292 0.47455338 1.3163817e-07 1.5660378 0.40623131 \n\t\t1.122491e-07 1.32883 0.39457136 1.1025056e-07 1.323566 0.46057141 1.2903014e-07 1.5540417 \n\t\t0.51557344 1.4192447e-07 1.6720458 0.51690143 1.411922e-07 1.646848 0.3891513 1.0169282e-07 \n\t\t1.1160939 0.4174293 1.0606911e-07 1.1162119 0.45921737 1.1248238e-07 1.1149399 0.4174293 \n\t\t1.0220967e-07 1.0124879 0.45921731 1.0866997e-07 1.0124799 0.50775129 1.1989596e-07 \n\t\t1.1125219 0.55576926 1.2719926e-07 1.1092839 0.50775129 1.1617308e-07 1.0124679 0.55576926 \n\t\t1.2359619e-07 1.01245 0.59612942 1.3330731e-07 1.105742 0.62224728 1.3722223e-07 \n\t\t1.1024358 0.59612942 1.2983529e-07 1.01243 0.62224728 1.3387255e-07 1.0124118 0.63079149 \n\t\t1.3844696e-07 1.0998499 0.63079149 1.3519299e-07 1.0123978 0.61971146 1.3668044e-07 \n\t\t1.0984118 0.61971146 1.3347967e-07 1.0123899 0.59143347 1.3230415e-07 1.0982938 0.60354346 \n\t\t1.4055296e-07 1.269666 0.54964346 1.2589058e-07 1.099566 0.59143347 1.2910778e-07 \n\t\t1.0123899 0.54964346 1.2264709e-07 1.0123959 0.50111139 1.1847737e-07 1.1019859 0.51393747 \n\t\t1.271242e-07 1.28108 0.45309335 1.1117407e-07 1.1052239 0.50111133 1.1514435e-07 \n\t\t1.0124099 0.45309335 1.0772124e-07 1.0124278 0.41273341 1.0506597e-07 1.1087639 0.42737734 \n\t\t1.1457229e-07 1.3034039 0.41273335 1.0148209e-07 1.0124459 0.40225539 1.111047e-07 \n\t\t1.314594 0.4648234 1.2897826e-07 1.5349801 0.48595339 1.3138909e-07 1.511976 0.53464544 \n\t\t1.428179e-07 1.616812 0.57928747 1.5458359e-07 1.74753 0.59286147 1.553164e-07 1.710824 \n\t\t0.64931148 1.6839596e-07 1.8277898 0.65803546 1.6817556e-07 1.7856178 0.72760952 \n\t\t1.8068771e-07 1.8328037 0.79943949 1.92645e-07 1.8557038 0.87973565 2.0688837e-07 \n\t\t1.9048657 0.87137949 2.0383963e-07 1.8576498 0.95542151 2.1795516e-07 1.8878118 0.94128954 \n\t\t2.1406451e-07 1.8419678 1.0070215 2.2311136e-07 1.8119857 1.0914032 2.3602963e-07 \n\t\t1.8085598 1.0668396 2.3076382e-07 1.7691017 1.1190033 2.3680491e-07 1.7147157 1.1617755 \n\t\t2.41018e-07 1.6502237 1.1934134 2.4318572e-07 1.5770258 1.2129754 2.4331288e-07 1.4991617 \n\t\t1.2585497 2.4740419e-07 1.4197538 1.2195174 2.4140363e-07 1.4206678 1.2511456 2.4315173e-07 \n\t\t1.3362317 1.2120936 2.3746225e-07 1.3455877 1.1897576 2.3149259e-07 1.2779578 1.1546475 \n\t\t2.2370763e-07 1.2146177 1.1088953 2.1431933e-07 1.1524057 1.0882655 2.0788111e-07 \n\t\t1.0650938 1.0546395 2.0354072e-07 1.0881617 1.0282333 1.960633e-07 0.99692184 1.0696917 \n\t\t2.0154209e-07 0.97190571 0.9687236 1.8432826e-07 0.92880386 0.99400955 1.9158338e-07 \n\t\t1.0187237 0.93298745 1.7951935e-07 0.94804782 0.87304157 1.649839e-07 0.80647975 \n\t\t0.83368558 1.5935809e-07 0.81880993 0.91027546 1.764751e-07 0.96060187 0.80792546 \n\t\t1.5562991e-07 0.82564783 0.97262758 1.8883844e-07 1.0337958 1.0338875 2.0095406e-07 \n\t\t1.1048698 1.0286033 2.0043895e-07 1.1129818 0.96677357 1.8816989e-07 1.0401518 0.90346557 \n\t\t1.7558069e-07 0.96485984 0.79906958 1.5428105e-07 0.82619375 0.9142676 1.7706304e-07 \n\t\t0.95981586 0.80918759 1.5561874e-07 0.82010382 0.97799355 1.8976687e-07 1.0364518 \n\t\t1.0402375 2.0215936e-07 1.1108778 1.0663893 2.0577097e-07 1.0992798 1.0039374 1.9330118e-07 \n\t\t1.0236398 0.94037151 1.8060678e-07 0.94659185 0.83601958 1.5933709e-07 0.80854791 \n\t\t0.97835553 1.8574677e-07 0.92690581 0.87608755 1.6495683e-07 0.79309583 1.0411855 \n\t\t1.9830433e-07 1.0033338 1.1035935 2.1079047e-07 1.0795958 1.1211913 2.1681701e-07 \n\t\t1.1684418 1.0942953 2.1301635e-07 1.1780517 1.0822915 2.1117779e-07 1.1785158 1.0876535 \n\t\t2.1166713e-07 1.1693876 1.1323096 2.2083634e-07 1.2302659 1.1662393 2.2832064e-07 \n\t\t1.2904298 1.1878333 2.3397988e-07 1.3527998 1.1814013 2.3313711e-07 1.3568758 1.1600035 \n\t\t2.2763497e-07 1.2979118 1.1265296 2.2027925e-07 1.2393098 1.1388875 2.2221819e-07 \n\t\t1.2400718 1.1727256 2.2964389e-07 1.2990417 1.1945293 2.3517354e-07 1.3570578 1.2244873 \n\t\t2.3967166e-07 1.3534698 1.2017635 2.3394179e-07 1.2938957 1.1668235 2.2626544e-07 \n\t\t1.2327678 1.2066393 2.3187899e-07 1.2181978 1.1594115 2.2206974e-07 1.1508038 1.2432733 \n\t\t2.3995469e-07 1.2830198 1.2673132 2.4603389e-07 1.3465137 1.2334756 2.4328108e-07 \n\t\t1.4131278 1.2030153 2.3868708e-07 1.4162258 1.1894115 2.3667793e-07 1.4187537 1.1954736 \n\t\t2.3767268e-07 1.4202998 1.1900796 2.3942795e-07 1.4898858 1.1725752 2.3927535e-07 \n\t\t1.5585158 1.1438755 2.3724297e-07 1.6231438 1.1429393 2.3624206e-07 1.6001338 1.1691992 \n\t\t2.3815956e-07 1.5425558 1.1850175 2.3832854e-07 1.4813718 1.1993053 2.4029944e-07 \n\t\t1.4749738 1.1845293 2.4012689e-07 1.5317317 1.1598076 2.3828447e-07 1.5849358 1.1912613 \n\t\t2.429453e-07 1.5795058 1.2155396 2.4476211e-07 1.5274558 1.2300513 2.4492584e-07 \n\t\t1.4715598 1.2731556 2.5159835e-07 1.4717858 1.2767572 2.4985323e-07 1.4099197 1.2580575 \n\t\t2.5145476e-07 1.5306598 1.2330176 2.4960883e-07 1.5850918;\n\tsetAttr \".pt[6972:7137]\" 1.1585435 2.3963179e-07 1.6263977 1.1262653 2.3488747e-07 \n\t\t1.6330098 1.1072173 2.3264663e-07 1.6519318 1.1049013 2.3336011e-07 1.6807297 1.0572416 \n\t\t2.2781606e-07 1.7297598 1.0024775 2.2079927e-07 1.7687278 0.9421975 2.1249895e-07 \n\t\t1.7961198 0.95741749 2.134002e-07 1.7571018 1.0130435 2.2106516e-07 1.7319717 1.0634495 \n\t\t2.2753447e-07 1.6963978 1.0851493 2.3007225e-07 1.6744378 1.0377015 2.239741e-07 \n\t\t1.7076957 0.9851715 2.1672953e-07 1.7312598 1.0208255 2.2189448e-07 1.7219257 1.0722172 \n\t\t2.2898786e-07 1.6990278 1.1184915 2.3493962e-07 1.6667118 1.1587795 2.4147676e-07 \n\t\t1.6750017 1.1995815 2.4624538e-07 1.6336257 1.1116333 2.3541394e-07 1.7079558 1.0591675 \n\t\t2.2816843e-07 1.7312278 0.96542549 2.1377815e-07 1.7339858 0.92879951 2.0847372e-07 \n\t\t1.7436098 0.89797753 2.0469916e-07 1.7702338 0.87798554 2.0310381e-07 1.8104258 0.81179351 \n\t\t1.9279865e-07 1.8085017 0.74557352 1.8176846e-07 1.7872077 0.68127143 1.7019683e-07 \n\t\t1.7433938 0.71497947 1.7406968e-07 1.7074198 0.77493954 1.8486509e-07 1.7484138 0.83654553 \n\t\t1.9513128e-07 1.7683458 0.87035751 1.9936951e-07 1.7417598 0.81161952 1.8958029e-07 \n\t\t1.7227298 0.75435543 1.7926868e-07 1.6835358 0.79330343 1.8496625e-07 1.6748297 0.84985143 \n\t\t1.9514648e-07 1.7134678 0.90782952 2.0480623e-07 1.7321758 0.94329154 2.1064615e-07 \n\t\t1.7417798 1.0024074 2.198518e-07 1.7435558 0.88376147 2.0073411e-07 1.7227398 0.82575548 \n\t\t1.9029774e-07 1.6832758 0.73999745 1.744331e-07 1.6132358 0.70033747 1.6859768e-07 \n\t\t1.6211958 0.65848148 1.6291332e-07 1.6423398 0.62083948 1.582689e-07 1.6739237 0.56672543 \n\t\t1.4664614e-07 1.5864037 0.52137548 1.3598982e-07 1.4884418 0.4667494 1.2022166e-07 \n\t\t1.29164 0.56523943 1.4200732e-07 1.4679078 0.60778743 1.5201844e-07 1.5601717 0.65182543 \n\t\t1.5816421e-07 1.542362 0.61108148 1.4856552e-07 1.453686 0.56193143 1.3425894e-07 \n\t\t1.273412 0.65198344 1.5466452e-07 1.4476498 0.69215345 1.641364e-07 1.5353018 0.72235346 \n\t\t1.6899982e-07 1.5405258 0.77121347 1.795196e-07 1.6202338 0.68139344 1.593387e-07 \n\t\t1.4510701 0.63204747 1.4499409e-07 1.2705878 1.1480075 2.4255834e-07 1.7488278 0.3891513 \n\t\t9.7837777e-08 1.0124879 0.37807131 9.6124467e-08 1.0124799 0.37807137 9.9926318e-08 \n\t\t1.114656 0.38661531 9.7444804e-08 1.0124638 0.38661531 1.0115102e-07 1.1120698 0.92749155 \n\t\t1.6817746e-07 0.66606587 0.8791995 1.5988864e-07 0.64395583 0.92749155 1.6735478e-07 \n\t\t0.64395583 0.8791995 1.6085978e-07 0.67005581 0.93168539 1.6974417e-07 0.69074583 \n\t\t0.88356739 1.6260111e-07 0.69870585 0.97260159 1.7585066e-07 0.68485183 0.96857959 \n\t\t1.7442142e-07 0.6631518 0.96857959 1.7370715e-07 0.64395583 0.99578756 1.7857795e-07 \n\t\t0.66180974 0.99578756 1.7791362e-07 0.64395577 0.99966347 1.7992909e-07 0.68201774 \n\t\t1.0093833 1.8145163e-07 0.68254977 1.0056013 1.8010881e-07 0.66217583 1.0056013 1.7943087e-07 \n\t\t0.64395577 0.99578756 1.7866934e-07 0.66426581 0.99578756 1.7791355e-07 0.64395374 \n\t\t0.99953747 1.8007646e-07 0.6865018 0.97236758 1.7612324e-07 0.69314975 0.96857959 \n\t\t1.7459057e-07 0.66769785 0.96857959 1.7370708e-07 0.64395374 0.92749161 1.6839812e-07 \n\t\t0.67199582 0.92749161 1.6735478e-07 0.64395577 0.93138146 1.7009999e-07 0.70157176 \n\t\t0.87919956 1.6109904e-07 0.67648584 0.87919956 1.5988864e-07 0.64395577 0.83090544 \n\t\t1.5378096e-07 0.68047374 0.83090544 1.5242217e-07 0.64395577 0.78981745 1.4753701e-07 \n\t\t0.68338782 0.79420358 1.4973735e-07 0.72429794 0.88323748 1.6298678e-07 0.71044183 \n\t\t0.78981745 1.4606972e-07 0.64395386 0.76260948 1.4338056e-07 0.68473184 0.76260948 \n\t\t1.4186327e-07 0.64395386 0.76714146 1.4565887e-07 0.72713184 0.75742155 1.4413634e-07 \n\t\t0.72659975 0.75279546 1.4184965e-07 0.68436581 0.75279546 1.4034605e-07 0.64395583 \n\t\t0.76260948 1.4328917e-07 0.68227583 0.76260948 1.4186334e-07 0.64395583 0.76726747 \n\t\t1.4551151e-07 0.72264785 0.79443759 1.4946475e-07 0.71599984 0.78981745 1.4736793e-07 \n\t\t0.6788438 0.78981745 1.4606979e-07 0.64395583 0.83090538 1.5356038e-07 0.67454582 \n\t\t0.83090538 1.5242216e-07 0.64395583 0.83542341 1.5548797e-07 0.70757782 0.91958958 \n\t\t1.7159392e-07 0.79071784 0.83511949 1.5584372e-07 0.71840185 0.52796745 9.2205305e-08 \n\t\t0.28432503 0.50769347 9.1443681e-08 0.34809545 0.49081936 8.6865064e-08 0.29515585 \n\t\t0.54379946 9.6504927e-08 0.3340964 0.55745149 9.9790178e-08 0.36566389 0.52216744 \n\t\t9.4902155e-08 0.38090333 0.57623148 1.040997e-07 0.40345243 0.54195344 9.941315e-08 \n\t\t0.41992623 0.60401148 1.0787453e-07 0.3894752 0.58651745 1.0382685e-07 0.35338062 \n\t\t0.57381344 1.0074233e-07 0.3232688 0.55910146 9.6722658e-08 0.27636743 0.59304744 \n\t\t1.0349405e-07 0.31730422 0.57936144 9.97114e-08 0.27250981 0.60478348 1.0637568e-07 \n\t\t0.3459852 0.62085944 1.1013419e-07 0.3802003 0.62491947 1.1063438e-07 0.37677351 \n\t\t0.61021745 1.0715366e-07 0.34431541 0.59935343 1.0445076e-07 0.31681421 0.58645147 \n\t\t1.008286e-07 0.27307561 0.59145343 1.0342396e-07 0.32204339 0.57895547 9.9856884e-08 \n\t\t0.27810642 0.60166544 1.0599885e-07 0.34881341 0.61522543 1.0925294e-07 0.37992606 \n\t\t0.59357548 1.0624211e-07 0.38896522 0.58067346 1.0311948e-07 0.35865167 0.57073748 \n\t\t1.0059575e-07 0.33211002 0.55819148 9.6971029e-08 0.28682342 0.53950745 9.6276246e-08 \n\t\t0.3457838 0.52641743 9.2481535e-08 0.29818901 0.54966146 9.8844552e-08 0.37261763 \n\t\t0.56260347 1.0196749e-07 0.40277344 0.52724946 9.7109435e-08 0.41910863 0.57360548 \n\t\t9.7629993e-08 0.24048744 0.58107346 9.8673198e-08 0.23749405 0.57934946 9.6986085e-08 \n\t\t0.19931564 0.57178545 9.5816674e-08 0.19931604 0.57366145 9.7507055e-08 0.23695084 \n\t\t0.55082345 9.257586e-08 0.19931604 0.55292946 9.4373306e-08 0.23887262 0.51916343 \n\t\t8.768108e-08 0.19931564 0.52136546 8.9651444e-08 0.24312043 0.48397136 8.4090587e-08 \n\t\t0.24904443 0.48195538 8.1928576e-08 0.19931604 0.57178545 9.5816659e-08 0.19931564 \n\t\t0.44621736 7.8507256e-08 0.25585982 0.45302138 8.1476934e-08 0.30740005 0.47070941 \n\t\t8.6292069e-08 0.36331418 0.42046937 7.6879111e-08 0.31908682 0.43864137 8.1855831e-08 \n\t\t0.37733278 0.39869937 7.3854928e-08 0.32826605 0.41695136 7.8892093e-08 0.38780406 \n\t\t0.39057541 7.2798201e-08 0.33362165;\n\tsetAttr \".pt[7138:7303]\" 0.4085134 7.7790688e-08 0.39326364 0.3979294 7.3954283e-08 \n\t\t0.33413562 0.4151834 7.8798656e-08 0.39263892 0.41902539 7.7059838e-08 0.32994381 \n\t\t0.43531346 8.1675502e-08 0.386314 0.45110741 8.1707078e-08 0.321538 0.46624547 8.6040302e-08 \n\t\t0.37509578 0.50282937 9.1167436e-08 0.36088166 0.44814545 8.4778137e-08 0.41638103 \n\t\t0.47800139 8.8926257e-08 0.40381062 0.51363146 9.3863953e-08 0.38846853 0.46440139 \n\t\t8.8529745e-08 0.4496628 0.42902547 8.2109757e-08 0.42411163 0.44675547 8.6157371e-08 \n\t\t0.45922402 0.44219947 8.5589498e-08 0.46289262 0.42316541 8.1272887e-08 0.42596924 \n\t\t0.43211541 8.2484782e-08 0.42135182 0.45210341 8.7004331e-08 0.4597654 0.47442138 \n\t\t9.0112451e-08 0.45056501 0.45395136 8.5483357e-08 0.41121024 0.48576543 8.9870433e-08 \n\t\t0.39692566 0.50614744 9.4493593e-08 0.43648684 0.47751945 9.2609618e-08 0.50480503 \n\t\t0.46605739 9.0873058e-08 0.50575966 0.46868941 9.105068e-08 0.49959701 0.48430339 \n\t\t9.3019409e-08 0.48763064 0.51177144 9.8852162e-08 0.53025723 0.53645748 1.0199242e-07 \n\t\t0.51208121 0.55072957 1.0663368e-07 0.57751584 0.60510147 1.1696975e-07 0.62938386 \n\t\t0.67881149 1.3046598e-07 0.68583184 0.70227152 1.3320117e-07 0.66186374 0.76079762 \n\t\t1.4542583e-07 0.74722785 0.84000152 1.601535e-07 0.8139438 0.86666149 1.6341959e-07 \n\t\t0.79094774 0.90536761 1.7295314e-07 0.88633984 0.66720754 1.2949538e-07 0.70796174 \n\t\t0.59408343 1.1601161e-07 0.64941382 0.74778551 1.4426931e-07 0.77021176 0.82530963 \n\t\t1.5869382e-07 0.83575982 0.88927954 1.711301e-07 0.90419173 0.88659763 1.712518e-07 \n\t\t0.91860586 0.82394564 1.591329e-07 0.85322779 0.74798965 1.4497517e-07 0.78833383 \n\t\t0.6687035 1.3035951e-07 0.72496992 0.59606355 1.1686686e-07 0.66417187 0.68358558 \n\t\t1.3299456e-07 0.73395175 0.61139345 1.194927e-07 0.67104584 0.76172364 1.4748026e-07 \n\t\t0.79859382 0.83629149 1.6142486e-07 0.86352783 0.89778364 1.7330558e-07 0.9273237 \n\t\t0.92072165 1.769321e-07 0.92947972 0.86007965 1.6518038e-07 0.86561781 0.78649551 \n\t\t1.513592e-07 0.79991382 0.70916361 1.3694888e-07 0.73394793 0.63728547 1.2343097e-07 \n\t\t0.66930586 0.74198544 1.4167699e-07 0.72464174 0.67016357 1.2812561e-07 0.65886587 \n\t\t0.81906551 1.5609439e-07 0.79184383 0.89229965 1.6991541e-07 0.85899776 0.95257753 \n\t\t1.8167663e-07 0.92462784 0.9887175 1.8684877e-07 0.91346782 0.92816752 1.7492872e-07 \n\t\t0.8446998 1.0241077 1.9171306e-07 0.89714986 0.96255565 1.7948672e-07 0.82431382 \n\t\t0.85449564 1.6097245e-07 0.77572984 0.88757354 1.6525928e-07 0.75349981 0.77696347 \n\t\t1.4645286e-07 0.70765984 0.80881959 1.5054188e-07 0.68518978 0.70483148 1.3284281e-07 \n\t\t0.64159584 0.73594755 1.36845e-07 0.61986786 1.0530874 1.9549577e-07 0.87839973 0.99003565 \n\t\t1.8287565e-07 0.80121171 0.91317552 1.6829847e-07 0.72880173 0.83271945 1.5333249e-07 \n\t\t0.66088384 0.75888145 1.395459e-07 0.59716386 0.84440744 1.5430857e-07 0.63855177 \n\t\t0.76962155 1.4045817e-07 0.57705575 0.92669165 1.6952153e-07 0.70551175 1.0056394 \n\t\t1.8446255e-07 0.77902585 1.0704134 1.9749665e-07 0.86018372 1.0739233 1.9748437e-07 \n\t\t0.84526974 1.0074974 1.8408362e-07 0.76112181 0.92659366 1.6882292e-07 0.68714374 \n\t\t0.84264952 1.5340356e-07 0.62153381 0.76709956 1.3952648e-07 0.56249505 0.82724553 \n\t\t1.506949e-07 0.61274177 0.7512576 1.3683575e-07 0.55600482 0.91240561 1.6624519e-07 \n\t\t0.67681777 0.99481553 1.8172875e-07 0.7505278 1.0625494 1.9538709e-07 0.83616382 \n\t\t1.0386734 1.9161384e-07 0.83396173 0.97018951 1.7784481e-07 0.74846774 0.88696563 \n\t\t1.6226882e-07 0.67565578 0.80121565 1.4668129e-07 0.61302978 0.72515166 1.3287747e-07 \n\t\t0.55809635 0.76832366 1.4195176e-07 0.62258977 0.69255567 1.2823082e-07 0.56865364 \n\t\t0.85390961 1.5747241e-07 0.68409973 0.93707764 1.7298851e-07 0.75553375 1.0055894 \n\t\t1.8669559e-07 0.83924776 0.96862751 1.814176e-07 0.85097784 0.90073562 1.6792102e-07 \n\t\t0.77034575 0.81839561 1.5259322e-07 0.70053172 0.73362154 1.3722094e-07 0.63963574 \n\t\t0.65843165 1.2359169e-07 0.58576185 0.7857495 1.4837308e-07 0.72275972 0.9334175 \n\t\t1.7659299e-07 0.86761385 1.0100514 1.9129526e-07 0.94432586 1.0472034 1.967887e-07 \n\t\t0.93759573 1.0801994 2.0177971e-07 0.93463171 1.1036834 2.0546202e-07 0.93601781 \n\t\t1.1144376 2.0732432e-07 0.94138372 1.1101797 2.0698953e-07 0.95007783 1.0921234 2.0459154e-07 \n\t\t0.96065569 1.0625756 2.0042779e-07 0.97152585 1.0268894 1.9526055e-07 0.98093182 \n\t\t1.0791694 2.0573368e-07 1.0451758 1.0438657 2.0030885e-07 1.0460696 1.0750974 2.0773324e-07 \n\t\t1.1158338 1.0408374 2.0213987e-07 1.1078618 1.0515716 2.0652949e-07 1.1812336 1.0189877 \n\t\t2.0089863e-07 1.1652896 1.0775776 2.1125256e-07 1.2001116 1.1031237 2.1241783e-07 \n\t\t1.1252837 1.1083874 2.1021488e-07 1.0442076 1.1262176 2.1294167e-07 1.0434058 1.1198096 \n\t\t2.1535401e-07 1.1348636 1.0922374 2.1422754e-07 1.2191538 1.0936714 2.1505241e-07 \n\t\t1.2353637 1.1229914 2.1615053e-07 1.1430497 1.1303537 2.1356051e-07 1.0428518 1.1195736 \n\t\t2.1188441e-07 1.0425979 1.1115756 2.1458494e-07 1.1484078 1.0810434 2.1349425e-07 \n\t\t1.2459576 1.0568835 2.0989336e-07 1.2495679 1.0879216 2.1099649e-07 1.1502498 1.0961556 \n\t\t2.0826644e-07 1.0426658 1.0633134 2.0320384e-07 1.0430678 1.0553117 2.0587709e-07 \n\t\t1.1481599 1.0245836 2.0474323e-07 1.2453638 0.98935366 1.9888419e-07 1.2342819 1.0190296 \n\t\t2.0006145e-07 1.1426159 1.0263914 1.97521e-07 1.0437518 0.93874365 1.9395549e-07 \n\t\t1.3121078 0.97252363 1.9973852e-07 1.3271718 1.0044254 2.0488031e-07 1.3328058 1.0293354 \n\t\t2.0854351e-07 1.3277538 1.0437076 2.1022323e-07 1.3131797 1.0447817 2.0956287e-07 \n\t\t1.2909696 1.0329953 2.0677153e-07 1.2649238 1.0098016 2.0222511e-07 1.2391078 0.97950763 \n\t\t1.9673142e-07 1.2173357 0.95406759 1.9543215e-07 1.2881217 0.92658556 1.9022184e-07 \n\t\t1.2622818 0.8886556 1.8676347e-07 1.3269378 0.86441559 1.819546e-07 1.2984158 0.81784755 \n\t\t1.7683146e-07 1.3542218 0.79718959 1.7251411e-07 1.3240258 0.82929558 1.7993888e-07 \n\t\t1.3901678 0.90442759 1.9046401e-07 1.3608577 0.97380358 1.9962521e-07 1.3188078 0.98203766 \n\t\t2.0205177e-07 1.3498098 0.90860158 1.9238595e-07 1.3951678 0.82907158 1.812576e-07 \n\t\t1.4265398 0.81760758 1.8064449e-07 1.4576957;\n\tsetAttr \".pt[7304:7469]\" 0.90091157 1.9228987e-07 1.4245378 0.97786564 2.023924e-07 \n\t\t1.3762997 0.96135765 2.0049032e-07 1.3937718 0.88201159 1.9009143e-07 1.4439838 0.79620755 \n\t\t1.7810507e-07 1.4783658 0.76852757 1.741038e-07 1.4858418 0.85524565 1.8621307e-07 \n\t\t1.4509658 0.93554562 1.9672947e-07 1.3999478 0.90416765 1.9163474e-07 1.3934017 0.82454962 \n\t\t1.8120353e-07 1.4438758 0.73870158 1.6921612e-07 1.4784118 0.71136355 1.6422135e-07 \n\t\t1.4577658 0.79474366 1.7586821e-07 1.4243318 0.87220562 1.8603163e-07 1.3756198 0.77058762 \n\t\t1.7103794e-07 1.3948858 0.62706757 1.5184668e-07 1.4754457 0.65166157 1.5644454e-07 \n\t\t1.4968258 0.68039155 1.6117394e-07 1.5045558 0.70884758 1.6528811e-07 1.4968898 0.7327196 \n\t\t1.6818613e-07 1.4755858 0.7480436 1.693585e-07 1.4434217 0.7528336 1.6870023e-07 \n\t\t1.4058278 0.74592561 1.6624828e-07 1.3686337 0.72909957 1.6248451e-07 1.3373938 0.67428756 \n\t\t1.5510064e-07 1.3666958 0.66138756 1.5193692e-07 1.3352697 0.60433352 1.4347528e-07 \n\t\t1.3449218 0.59529549 1.4094221e-07 1.3143978 0.53745753 1.3145824e-07 1.2998319 0.53206354 \n\t\t1.2957092e-07 1.2715218 0.5310775 1.3172891e-07 1.3336158 0.60216552 1.4449307e-07 \n\t\t1.3812838 0.67660356 1.5685083e-07 1.4041098 0.66722959 1.5680656e-07 1.4418697 0.58833951 \n\t\t1.4371952e-07 1.4179418 0.51308751 1.3021565e-07 1.3676958 0.48675546 1.2722687e-07 \n\t\t1.3967818 0.56547153 1.413477e-07 1.4492158 0.64806759 1.5504411e-07 1.4741218 0.6217916 \n\t\t1.5177434e-07 1.4954238 0.53689355 1.3769652e-07 1.4698318 0.45601547 1.231886e-07 \n\t\t1.4159778 0.42568946 1.1875451e-07 1.4228158 0.50715154 1.3336991e-07 1.4771317 0.59265959 \n\t\t1.4755291e-07 1.5030158 0.56514758 1.4300713e-07 1.4951597 0.4808735 1.290216e-07 \n\t\t1.4694557 0.40055946 1.1460654e-07 1.4157537 0.38430148 1.1137009e-07 1.3963258 0.46197549 \n\t\t1.2531962e-07 1.4484857 0.54341757 1.3884551e-07 1.4736037 0.31195745 9.7098649e-08 \n\t\t1.3133678 0.32592145 9.9879742e-08 1.3300898 0.35009539 1.0383614e-07 1.3359758 0.38101339 \n\t\t1.0838372e-07 1.3297278 0.41373745 1.1281081e-07 1.3127377 0.44318345 1.164126e-07 \n\t\t1.2871878 0.46490139 1.1866116e-07 1.2573798 0.47506145 1.191366e-07 1.2279418 0.47293741 \n\t\t1.1789452e-07 1.2033858 0.4194814 1.0718591e-07 1.1376998 0.42018345 1.0655399e-07 \n\t\t1.1177998 0.37306538 9.6283578e-08 1.0375559 0.3760694 9.619032e-08 1.0225677 0.31707737 \n\t\t8.0326799e-08 0.84134388 0.32284337 8.0959722e-08 0.83439577 0.29783335 7.767769e-08 \n\t\t0.85010779 0.35698742 9.4479375e-08 1.055872 0.40606141 1.0600577e-07 1.1617439 0.38114142 \n\t\t1.030654e-07 1.1862638 0.32947537 9.0928843e-08 1.0747638 0.26731536 7.3306047e-08 \n\t\t0.85942191 0.23057137 6.7937975e-08 0.86782587 0.29518136 8.6241613e-08 1.0912859 \n\t\t0.34901336 9.8886503e-08 1.207448 0.31455538 9.4091014e-08 1.2217418 0.25931337 8.1119929e-08 \n\t\t1.1026719 0.19314736 6.2379044e-08 0.87392581 0.16073377 5.7478136e-08 0.87689191 \n\t\t0.22737542 7.6359157e-08 1.1074278 0.28308347 8.9431687e-08 1.227288 0.2596854 8.5650314e-08 \n\t\t1.222882 0.20457618 7.2726912e-08 1.1045418 0.13864958 5.4035322e-08 0.87612587 0.19404678 \n\t\t7.0733492e-08 1.094718 0.24763943 8.3290992e-08 1.2095258 0.24937744 8.2792376e-08 \n\t\t1.1889038 0.12246516 4.3840018e-08 0.66936982 0.14430377 4.7219856e-08 0.66946387 \n\t\t0.17664073 5.218185e-08 0.66845787 0.14445734 4.3435747e-08 0.56712627 0.17666414 \n\t\t4.8415028e-08 0.56712568 0.21420933 5.7918967e-08 0.66654587 0.25135735 6.356732e-08 \n\t\t0.66399586 0.21406934 5.4198022e-08 0.56712568 0.25107935 5.9919927e-08 0.56712568 \n\t\t0.28252929 6.8283633e-08 0.66122782 0.30262336 7.1295382e-08 0.65867782 0.28218532 \n\t\t6.4729036e-08 0.56712568 0.30231732 6.7841547e-08 0.56712627 0.30915537 7.2231735e-08 \n\t\t0.6567018 0.30890337 6.8859777e-08 0.56712627 0.30064541 7.0875721e-08 0.65561783 \n\t\t0.30036333 6.7539425e-08 0.56712562 0.27894935 6.7518144e-08 0.65552986 0.29224339 \n\t\t7.6054029e-08 0.82969791 0.2468774 6.2595191e-08 0.65648383 0.2785694 6.4170024e-08 \n\t\t0.56712627 0.24635936 5.9190192e-08 0.56712562 0.2095314 5.6889657e-08 0.65831983 \n\t\t0.2238234 6.5796833e-08 0.83831978 0.1724126 5.1243887e-08 0.66081786 0.20895337 \n\t\t5.3407071e-08 0.56712562 0.17194337 4.7685177e-08 0.56712568 0.14109398 4.650467e-08 \n\t\t0.66357982 0.1562206 5.5994303e-08 0.85576582 0.12073917 4.3454548e-08 0.6661818 \n\t\t0.14083715 4.2876028e-08 0.56712568 0.12070715 3.9763847e-08 0.56712568 0.13622898 \n\t\t5.3235119e-08 0.86467779 0.19799642 7.076612e-08 1.0791838 0.2151854 7.2733457e-08 \n\t\t1.0606358 0.26402345 8.415217e-08 1.1645939 0.32234344 9.6651334e-08 1.2581918 0.37993142 \n\t\t1.0960402e-07 1.3670198 0.38758144 1.0951704e-07 1.3328958 0.45382148 1.2288423e-07 \n\t\t1.4169137 0.45717344 1.220354e-07 1.3801738 0.53120357 1.3574893e-07 1.4411318 0.52994359 \n\t\t1.3414653e-07 1.4033018 0.60471559 1.4579031e-07 1.4055518 0.69095761 1.5990693e-07 \n\t\t1.4266018 0.68031359 1.5690676e-07 1.3901978 0.75555962 1.6743576e-07 1.3605177 0.84468561 \n\t\t1.8078353e-07 1.3489218 0.82568163 1.7668809e-07 1.3178178 0.88589561 1.8397297e-07 \n\t\t1.2634099 0.93142962 1.8860129e-07 1.1986018 0.98466152 1.9444029e-07 1.1343459 0.9575035 \n\t\t1.8988285e-07 1.1247059 0.99104762 1.9208946e-07 1.0446318 0.96275753 1.8774828e-07 \n\t\t1.0455078 0.94583166 1.8212813e-07 0.96479183 0.92918766 1.7993838e-07 0.97509784 \n\t\t0.94639361 1.8524365e-07 1.0461878 0.94225353 1.8717024e-07 1.1151677 0.91812152 \n\t\t1.8584227e-07 1.1797476 0.91782755 1.8521287e-07 1.1640537 0.94025362 1.8656509e-07 \n\t\t1.1072137 0.94341564 1.848006e-07 1.0466539 0.92597753 1.7975225e-07 0.98343372 0.93668365 \n\t\t1.8159744e-07 0.9885397 0.95427763 1.8648957e-07 1.0469136 0.95184565 1.8817018e-07 \n\t\t1.1021857 0.93067151 1.8682785e-07 1.1540897 0.95411152 1.9033054e-07 1.1508317 0.9746955 \n\t\t1.9164251e-07 1.1005638 0.97680753 1.8997331e-07 1.0469277 0.95922363 1.8513312e-07 \n\t\t0.98990774 0.99079561 1.8991575e-07 0.98725975 1.0081414 1.9480761e-07 1.0466578 \n\t\t1.0058054 1.9652722e-07 1.1025796 0.98497963 1.9525008e-07 1.1547878 0.91627562 1.8622694e-07 \n\t\t1.1977558 0.89203554 1.8265101e-07 1.2023697 0.87747365 1.8091153e-07 1.2161257;\n\tsetAttr \".pt[7470:7635]\" 0.87535763 1.8138459e-07 1.2376318 0.81858164 1.7444869e-07 \n\t\t1.2871337 0.75241762 1.6568637e-07 1.3265578 0.68148756 1.5574928e-07 1.3542118 0.69351959 \n\t\t1.5648503e-07 1.3239918 0.76085359 1.6593047e-07 1.2980658 0.82365966 1.7427818e-07 \n\t\t1.2614517 0.84027165 1.7623111e-07 1.2449138 0.77970558 1.6815864e-07 1.2796178 0.71466959 \n\t\t1.5902495e-07 1.3043737 0.74154556 1.6292208e-07 1.2974398 0.80576557 1.7194741e-07 \n\t\t1.2731618 0.86541766 1.7990743e-07 1.2392337 0.89559555 1.8480191e-07 1.2453837 0.94684952 \n\t\t1.911507e-07 1.2030478 0.83539158 1.7677567e-07 1.2798258 0.77041757 1.6764477e-07 \n\t\t1.3043997 0.67698359 1.5340638e-07 1.3099598 0.64949155 1.4942086e-07 1.3170778 0.6261276 \n\t\t1.4655971e-07 1.3372618 0.61041355 1.4528915e-07 1.3684077 0.5402056 1.343472e-07 \n\t\t1.3660557 0.47187343 1.2296485e-07 1.3440738 0.40642342 1.1118278e-07 1.2993739 0.4327215 \n\t\t1.1420717e-07 1.2713858 0.49481544 1.2539023e-07 1.3139317 0.55958956 1.3618477e-07 \n\t\t1.3348998 0.58509159 1.393787e-07 1.3147757 0.52238756 1.2893055e-07 1.2945158 0.4622975 \n\t\t1.1810857e-07 1.2533478 0.49121544 1.2234335e-07 1.2470038 0.55082357 1.3307489e-07 \n\t\t1.2877438 0.61307955 1.4344357e-07 1.3077297 0.63979155 1.4784163e-07 1.3149397 0.7048496 \n\t\t1.5798166e-07 1.3171377 0.57635152 1.3728082e-07 1.2947098 0.51563549 1.2635499e-07 \n\t\t1.2533518 0.43524939 1.1129104e-07 1.1825099 0.40573949 1.0694463e-07 1.1883137 0.37421548 \n\t\t1.026652e-07 1.2042859 0.3448655 9.9042225e-08 1.2288678 0.28968146 8.7220492e-08 \n\t\t1.1404459 0.2433494 7.6393782e-08 1.0419858 0.187163 6.0433798e-08 0.8465119 0.2775214 \n\t\t8.1082767e-08 1.0260179 0.3216874 9.1409085e-08 1.1200299 0.35500139 9.6058585e-08 \n\t\t1.106566 0.3123734 8.6070372e-08 1.01525 0.26059741 7.1265461e-08 0.83249378 0.3431294 \n\t\t9.0659789e-08 1.0107999 0.38514546 1.0052661e-07 1.1013958 0.40791145 1.0419241e-07 \n\t\t1.1053219 0.45874739 1.1511963e-07 1.1877698 0.36534739 9.4190334e-08 1.0133679 0.31392339 \n\t\t7.9431445e-08 0.8303858 0.97442365 1.8614509e-07 0.95394784 0.90833962 1.8841703e-07 \n\t\t1.2895898 0.95663565 1.9321155e-07 1.2177719 0.61070555 1.4811684e-07 1.4431897 0.31090346 \n\t\t9.5989257e-08 1.2879318 0.1298324 5.251416e-08 0.87187982 0.12266335 4.0066283e-08 \n\t\t0.56712568 0.11412315 3.8745934e-08 0.56712568 0.11398557 4.2486619e-08 0.66822982 \n\t\t0.55272347 9.4587477e-08 0.24548422 0.55082345 9.2575846e-08 0.19931562 0.52085948 \n\t\t8.9899785e-08 0.25189701 0.51916343 8.7681094e-08 0.19931604 0.48195541 8.1928583e-08 \n\t\t0.19931604 0.44544941 7.8722707e-08 0.26484102 0.4832094 8.4332243e-08 0.25870502 \n\t\t0.44474539 7.6175759e-08 0.19931604 0.41329941 7.3920859e-08 0.26937422 0.48882541 \n\t\t8.7123802e-08 0.31039441 0.4130874 7.1281292e-08 0.19931564 0.3920694 7.0717455e-08 \n\t\t0.27149323 0.3921234 6.8040173e-08 0.19931565 0.3845174 6.953023e-08 0.27096504 0.38456139 \n\t\t6.6871053e-08 0.19931565 0.39238736 7.0627429e-08 0.26775244 0.39212337 6.804018e-08 \n\t\t0.19931605 0.41388938 7.3754883e-08 0.26246223 0.41308737 7.1281299e-08 0.19931605 \n\t\t0.44474536 7.6175759e-08 0.19931604 0.60111147 1.0963306e-07 0.4487862 0.56801748 \n\t\t1.0518153e-07 0.46665666 0.63445145 1.1671722e-07 0.50064641 0.60245544 1.1248856e-07 \n\t\t0.51994461 0.67861158 1.2567909e-07 0.55801326 0.64736158 1.2161529e-07 0.57864183 \n\t\t0.70187157 1.2850663e-07 0.53735787 0.65890944 1.1981474e-07 0.48226961 0.62721545 \n\t\t1.1307055e-07 0.43270662 0.64208543 1.1493236e-07 0.42095819 0.67175746 1.2125953e-07 \n\t\t0.46771461 0.71317148 1.2960508e-07 0.51992762 0.71138543 1.288936e-07 0.50822723 \n\t\t0.67167145 1.2092204e-07 0.45900181 0.64412546 1.1502956e-07 0.41509399 0.63265944 \n\t\t1.1329949e-07 0.41623941 0.65827143 1.1880252e-07 0.45771644 0.69636947 1.2642654e-07 \n\t\t0.50431615 0.67099148 1.2265346e-07 0.50835985 0.63409948 1.1528746e-07 0.46368343 \n\t\t0.60983944 1.1005759e-07 0.42393023 0.57861745 1.0572519e-07 0.43722424 0.60244948 \n\t\t1.1085999e-07 0.47620085 0.63884747 1.1811451e-07 0.5199334 0.60484147 1.1349243e-07 \n\t\t0.53700984 0.56821144 1.06197e-07 0.49314165 0.54389548 1.0097827e-07 0.45392025 \n\t\t0.51083946 9.6524758e-08 0.47157964 0.49280345 9.2395354e-08 0.43554068 0.57400346 \n\t\t1.0947576e-07 0.55719346 0.62782562 1.1965278e-07 0.60707182 0.49826145 9.7309929e-08 \n\t\t0.54494363 0.53891355 1.0545662e-07 0.59497786 0.54004145 1.0607765e-07 0.60698181 \n\t\t0.4976894 9.7557852e-08 0.55398363 0.51086748 9.9655665e-08 0.55560762 0.55465543 \n\t\t1.0849807e-07 0.61130983 0.58005345 1.1228562e-07 0.60757184 0.53528959 1.0321606e-07 \n\t\t0.54981965 0.50080544 9.5923987e-08 0.49712566 0.53273743 1.0035875e-07 0.48363265 \n\t\t0.56757957 1.0773833e-07 0.53719121 0.61270756 1.1690327e-07 0.59599382 -0.95951062 \n\t\t-1.2004905e-07 0.76044595 -1.0121585 -1.2284912e-07 0.90394795 -1.0550747 -1.3033241e-07 \n\t\t0.88115007 -0.91296262 -1.1226606e-07 0.77620798 -1.1152645 -1.3693315e-07 0.95384395 \n\t\t-1.0738068 -1.2959281e-07 0.97886008 -1.1769165 -1.4365531e-07 1.02935 -1.1359367 \n\t\t-1.3636215e-07 1.055084 -1.2105427 -1.4971248e-07 1.0062799 -1.1494887 -1.4303558e-07 \n\t\t0.93204206 -1.0908108 -1.3657341e-07 0.86190599 -0.99886662 -1.2659237e-07 0.74811798 \n\t\t-1.1135228 -1.4055188e-07 0.84935206 -1.0246267 -1.3082942e-07 0.74127996 -1.1708704 \n\t\t-1.4690208e-07 0.91697007 -1.2312927 -1.535422e-07 0.98957193 -1.2365787 -1.5466127e-07 \n\t\t0.98145998 -1.1767247 -1.4804375e-07 0.91061205 -1.1203327 -1.4176317e-07 0.84509397 \n\t\t-1.0334827 -1.3221897e-07 0.74073195 -1.1095327 -1.3990584e-07 0.85013598 -1.0233647 \n\t\t-1.3042808e-07 0.74682206 -1.1655047 -1.4617142e-07 0.91431206 -1.2249445 -1.5278428e-07 \n\t\t0.98356408 -1.1987927 -1.4830955e-07 0.99516207 -1.1395584 -1.416833e-07 0.92712408 \n\t\t-1.0834267 -1.3537769e-07 0.86335999 -0.99653238 -1.2584972e-07 0.75837797 -1.0454425 \n\t\t-1.287726e-07 0.88304794 -0.95646453 -1.1908012e-07 0.77382988 -1.1023105 -1.3516906e-07 \n\t\t0.94743007 -1.1615887 -1.4182525e-07 1.0148458 -1.2571105 -1.5472544e-07 1.0650458 \n\t\t-1.2840047 -1.5924097e-07 1.0554359 -1.2960107 -1.6111441e-07 1.0549719 -1.2906487 \n\t\t-1.5994578e-07 1.0641 -1.2694045 -1.5602939e-07 1.081084 -1.2349285 -1.4986132e-07 \n\t\t1.1036038 -1.1928805 -1.4244965e-07 1.1280839;\n\tsetAttr \".pt[7636:7801]\" -1.2859488 -1.5500139e-07 1.177454 -1.2419987 -1.4741146e-07 \n\t\t1.198822 -1.3266305 -1.5852649e-07 1.25175 -1.2806487 -1.508032e-07 1.26826 -1.3536227 \n\t\t-1.5988691e-07 1.327342 -1.3061867 -1.5218036e-07 1.3373598 -1.3926765 -1.6627291e-07 \n\t\t1.317986 -1.3644885 -1.6496472e-07 1.236022 -1.3220587 -1.6133181e-07 1.1573598 -1.3443987 \n\t\t-1.6536798e-07 1.14171 -1.3880067 -1.6906479e-07 1.2235501 -1.4169365 -1.7029197e-07 \n\t\t1.3107741 -1.4233687 -1.7143815e-07 1.3066959 -1.3942428 -1.7030739e-07 1.2160658 \n\t\t-1.3501765 -1.6659776e-07 1.1326659 -1.3378208 -1.6471594e-07 1.131902 -1.3815207 \n\t\t-1.6838248e-07 1.2149378 -1.4102404 -1.6941524e-07 1.306514 -1.3802824 -1.6465005e-07 \n\t\t1.3101038 -1.3524823 -1.6370163e-07 1.220082 -1.3098824 -1.6012474e-07 1.1392078 \n\t\t-1.2700684 -1.5342719e-07 1.1537778 -1.2188905 -1.481602e-07 1.082684 -1.3109726 \n\t\t-1.5687931e-07 1.2309598 -1.3374566 -1.5777016e-07 1.31706 -1.2886566 -1.4988495e-07 \n\t\t1.3262119 -1.2636706 -1.4901708e-07 1.245718 -1.2247803 -1.4570452e-07 1.1731539 \n\t\t-1.1754946 -1.4060562e-07 1.1054039 -1.1334466 -1.3319396e-07 1.129884 -1.1808306 \n\t\t-1.3811463e-07 1.1945218 -1.2962284 -1.4764964e-07 1.417748 -1.3453684 -1.5535241e-07 \n\t\t1.414912 -1.3886504 -1.6216336e-07 1.4117041 -1.4191107 -1.669879e-07 1.4086061 -1.4327147 \n\t\t-1.6918528e-07 1.4060758 -1.4266527 -1.6830552e-07 1.4045318 -1.4026085 -1.6460196e-07 \n\t\t1.4041618 -1.3635765 -1.5853344e-07 1.405076 -1.3159705 -1.5109865e-07 1.407084 -1.3584405 \n\t\t-1.5487001e-07 1.482192 -1.3117707 -1.4790463e-07 1.4754738 -1.3401628 -1.4930056e-07 \n\t\t1.555928 -1.2953604 -1.4294532e-07 1.5405718 -1.3106905 -1.4222894e-07 1.623522 -1.2685105 \n\t\t-1.3656718e-07 1.6004241 -1.3434705 -1.4628806e-07 1.6506341 -1.3759445 -1.5415195e-07 \n\t\t1.5742198 -1.3963447 -1.6040917e-07 1.490818 -1.4192407 -1.6360386e-07 1.5000938 \n\t\t-1.3967844 -1.5668508e-07 1.5927318 -1.3613704 -1.4804786e-07 1.6777138 -1.3623065 \n\t\t-1.4733641e-07 1.7007238 -1.4001585 -1.5661294e-07 1.60869 -1.4243025 -1.6406963e-07 \n\t\t1.5086077 -1.4100144 -1.6162258e-07 1.5150061 -1.3848307 -1.5384046e-07 1.619514 \n\t\t-1.3454387 -1.44163e-07 1.715924 -1.3139827 -1.3909781e-07 1.7213517 -1.3538203 -1.4888704e-07 \n\t\t1.62379 -1.3792684 -1.5674209e-07 1.51842 -1.3361664 -1.5008675e-07 1.518194 -1.3113006 \n\t\t-1.4243254e-07 1.6205858 -1.2722286 -1.3285025e-07 1.7157677 -1.2268083 -1.2639863e-07 \n\t\t1.700434 -1.2640706 -1.3549941e-07 1.6106738 -1.2876226 -1.4271892e-07 1.5145057 \n\t\t-1.2409544 -1.3575379e-07 1.5077878 -1.2192706 -1.2914442e-07 1.59532 -1.1770705 \n\t\t-1.1582392e-07 1.7779701 -1.2204027 -1.217997e-07 1.797416 -1.2614408 -1.2787542e-07 \n\t\t1.8046438 -1.2937185 -1.3311178e-07 1.7980298 -1.3127664 -1.3676073e-07 1.779108 \n\t\t-1.3150824 -1.3819027e-07 1.7503117 -1.3009804 -1.372747e-07 1.7163237 -1.2719785 \n\t\t-1.3406006e-07 1.682214 -1.2329885 -1.2911646e-07 1.65307 -1.2250748 -1.249889e-07 \n\t\t1.731118 -1.1898007 -1.2078857e-07 1.697438 -1.1710367 -1.1521161e-07 1.769356 -1.1399508 \n\t\t-1.1177866e-07 1.7324541 -1.1109147 -1.0492348e-07 1.7960438 -1.0844448 -1.0228226e-07 \n\t\t1.7570437 -1.1250467 -1.0540255e-07 1.8418878 -1.1906065 -1.1662559e-07 1.8126677 \n\t\t-1.2496384 -1.2731836e-07 1.770576 -1.2592365 -1.273384e-07 1.8099178 -1.1951505 \n\t\t-1.1571846e-07 1.8559278 -1.1241385 -1.035561e-07 1.887738 -1.1089187 -9.9751404e-08 \n\t\t1.9267517 -1.1845845 -1.1271727e-07 1.892684 -1.2530285 -1.2513718e-07 1.843282 -1.2313305 \n\t\t-1.2096555e-07 1.8652397 -1.1599265 -1.0800176e-07 1.91696 -1.0811645 -9.4498866e-08 \n\t\t1.9525958 -1.0455108 -8.8639339e-08 1.96193 -1.1254104 -1.0234292e-07 1.9256278 -1.1979865 \n\t\t-1.1552294e-07 1.8729661 -1.1576985 -1.0960272e-07 1.864676 -1.0859947 -9.6581282e-08 \n\t\t1.9166998 -1.0071688 -8.3057635e-08 1.9526278 -0.97196448 -7.8575553e-08 1.92681 \n\t\t-1.0477507 -9.1580141e-08 1.8922018 -1.1167525 -1.0410712e-07 1.8422397 -1.0814767 \n\t\t-9.9906529e-08 1.8085598 -1.1380805 -1.1088025e-07 1.7488278 -0.94549447 -7.5934253e-08 \n\t\t1.8878118 -0.89128649 -6.5424622e-08 1.9450258 -0.92309451 -6.9353256e-08 1.971606 \n\t\t-0.96007639 -7.4714642e-08 1.981178 -0.99670243 -8.0735276e-08 1.971554 -1.0275247 \n\t\t-8.6491255e-08 1.9449278 -1.0475165 -9.1077482e-08 1.9047378 -1.0541208 -9.3855753e-08 \n\t\t1.857512 -1.0457665 -9.4320917e-08 1.810298 -1.0242867 -9.2494446e-08 1.7701358 -0.97794652 \n\t\t-8.3900716e-08 1.8085498 -0.96160656 -8.2869079e-08 1.7683821 -0.90981054 -7.4159892e-08 \n\t\t1.78723 -0.89853454 -7.3860207e-08 1.7484318 -0.84371656 -6.5595799e-08 1.7427698 \n\t\t-0.83720052 -6.5921583e-08 1.7069398 -0.83499253 -6.2677863e-08 1.7849418 -0.90651053 \n\t\t-7.1953053e-08 1.832828 -0.98041457 -8.2525801e-08 1.855756 -0.96806055 -7.88595e-08 \n\t\t1.9029578 -0.88854855 -6.7479498e-08 1.8784238 -0.81175852 -5.7514765e-08 1.8271638 \n\t\t-0.77805054 -5.0964754e-08 1.8631397 -0.85918045 -6.1495655e-08 1.9172161 -0.94330853 \n\t\t-7.3538573e-08 1.943114 -0.90949643 -6.7321778e-08 1.969702 -0.82250053 -5.4869059e-08 \n\t\t1.9429017 -0.73867255 -4.3988059e-08 1.8870238 -0.69972652 -3.7642895e-08 1.89573 \n\t\t-0.78426856 -4.8613607e-08 1.9521638 -0.87202436 -6.1171846e-08 1.9792858 -0.83656234 \n\t\t-5.604662e-08 1.969682 -0.75035852 -4.3715968e-08 1.9428921 -0.66727453 -3.2940033e-08 \n\t\t1.8872818 -0.64590251 -3.0516251e-08 1.86362 -0.72565842 -4.0853209e-08 1.9171997 \n\t\t-0.80832034 -5.2670188e-08 1.943078 -0.71438247 -4.0553523e-08 1.878402 -0.63938457 \n\t\t-3.084174e-08 1.82779 -0.57164854 -2.2200894e-08 1.7785698 -0.59009457 -2.4296497e-08 \n\t\t1.7988938 -0.62130857 -2.8861917e-08 1.805892 -0.66096854 -3.5289702e-08 1.7979318 \n\t\t-0.70282656 -4.2547857e-08 1.776788 -0.74046856 -4.9542667e-08 1.745204 -0.76844656 \n\t\t-5.5241188e-08 1.7083038 -0.78202057 -5.8705563e-08 1.671598 -0.77973253 -5.9506778e-08 \n\t\t1.640558 -0.72706455 -5.3544152e-08 1.5819681 -0.72839457 -5.4687291e-08 1.556772 \n\t\t-0.68119657 -5.0167703e-08 1.4821278 -0.68544853 -5.1534347e-08 1.4630657 -0.62609655 \n\t\t-4.8990515e-08 1.284822 -0.63378054 -5.0512185e-08 1.2758538 -0.60097462 -4.4690108e-08 \n\t\t1.2960141 -0.66006655 -4.604496e-08 1.505132 -0.70932055 -4.9683191e-08 1.6120058 \n\t\t-0.67724055 -4.3592053e-08 1.6424137 -0.62464458 -3.96929e-08 1.528666;\n\tsetAttr \".pt[7802:7967]\" -0.56160259 -3.8165322e-08 1.3077778 -0.51441658 -3.0477242e-08 \n\t\t1.3183378 -0.58078063 -3.2147305e-08 1.5492001 -0.63617855 -3.626764e-08 1.6686457 \n\t\t-0.59214056 -2.8796487e-08 1.686456 -0.53493857 -2.453069e-08 1.5634238 -0.46642068 \n\t\t-2.2771562e-08 1.3260059 -0.42480862 -1.6198852e-08 1.3297501 -0.49403664 -1.7982494e-08 \n\t\t1.5694598 -0.55181456 -2.2299226e-08 1.693516 -0.52161455 -1.7824558e-08 1.688292 \n\t\t-0.46462664 -1.3562915e-08 1.5660378 -0.3963047 -1.1826262e-08 1.32883 -0.45064461 \n\t\t-1.1847597e-08 1.5540417 -0.50564653 -1.5960335e-08 1.6720458 -0.50697452 -1.7103227e-08 \n\t\t1.646848 -0.37922469 -1.7101263e-08 1.1160939 -0.36814463 -1.5441742e-08 1.114656 \n\t\t-0.36814469 -1.9243588e-08 1.01248 -0.37922469 -2.095631e-08 1.0124879 -0.40750268 \n\t\t-2.5328205e-08 1.0124879 -0.40750268 -2.1468766e-08 1.1162119 -0.44929063 -2.7976684e-08 \n\t\t1.1149399 -0.44929069 -3.1789096e-08 1.01248 -0.4978247 -3.9293106e-08 1.0124679 \n\t\t-0.4978247 -3.5570224e-08 1.1125219 -0.54584271 -4.3114479e-08 1.1092839 -0.54584271 \n\t\t-4.6717549e-08 1.01245 -0.58620262 -5.29581e-08 1.01243 -0.58620262 -4.9486079e-08 \n\t\t1.105742 -0.61232072 -5.364706e-08 1.1024358 -0.61232072 -5.699674e-08 1.0124118 \n\t\t-0.62086457 -5.8318175e-08 1.012398 -0.62086457 -5.5064202e-08 1.0998499 -0.60978454 \n\t\t-5.3404683e-08 1.098412 -0.60978454 -5.6605458e-08 1.0123899 -0.58150655 -5.2233563e-08 \n\t\t1.0123899 -0.58150655 -4.903718e-08 1.098294 -0.53971857 -4.2529258e-08 1.099566 \n\t\t-0.53971857 -4.5772747e-08 1.0123959 -0.49118465 -3.8268681e-08 1.0124099 -0.49118465 \n\t\t-3.4935674e-08 1.1019859 -0.44316667 -2.7391415e-08 1.1052239 -0.44316667 -3.084423e-08 \n\t\t1.012428 -0.40280667 -2.4603743e-08 1.0124459 -0.40280661 -2.1019865e-08 1.1087639 \n\t\t-0.37668869 -1.6858914e-08 1.1120698 -0.41745067 -1.6041591e-08 1.3034039 -0.39232859 \n\t\t-1.1741244e-08 1.314594 -0.47602659 -1.7336966e-08 1.511976 -0.52471852 -2.0964123e-08 \n\t\t1.616812 -0.56936055 -2.3002114e-08 1.74753 -0.58293456 -2.6466493e-08 1.710824 -0.64810854 \n\t\t-3.3759665e-08 1.7856181 -0.71768248 -4.2760362e-08 1.832804 -0.7919805 -5.1638583e-08 \n\t\t1.90291 -0.78951246 -5.3013487e-08 1.8557041 -0.86145246 -6.4063293e-08 1.85765 -0.93136251 \n\t\t-7.5455183e-08 1.8419681 -1.0166665 -8.8147473e-08 1.8552998 -0.99709451 -8.6733209e-08 \n\t\t1.811986 -1.0569125 -9.7576994e-08 1.7691017 -1.1090767 -1.0766541e-07 1.714716 -1.1846263 \n\t\t-1.2073657e-07 1.677336 -1.1518484 -1.1667776e-07 1.650224 -1.1834866 -1.2429277e-07 \n\t\t1.5770258 -1.2030486 -1.3021436e-07 1.499162 -1.2486224 -1.4021492e-07 1.419754 -1.2095906 \n\t\t-1.3414643e-07 1.4206678 -1.2412183 -1.4217797e-07 1.3362319 -1.2021663 -1.3579225e-07 \n\t\t1.345588 -1.2176883 -1.4129373e-07 1.262228 -1.1798303 -1.3485544e-07 1.2779578 -1.1447204 \n\t\t-1.3178409e-07 1.214618 -1.0989687 -1.2702552e-07 1.152406 -1.0783385 -1.2708476e-07 \n\t\t1.065094 -1.0447124 -1.2102771e-07 1.0881619 -1.0183067 -1.203402e-07 0.99692196 \n\t\t-1.0597644 -1.2768055e-07 0.97190595 -1.0017146 -1.2115787e-07 0.90600598 -1.1193186 \n\t\t-1.34378e-07 1.03936 -0.9840824 -1.1423776e-07 1.018724 -0.92306054 -1.0743329e-07 \n\t\t0.94804794 -0.86311442 -1.0343295e-07 0.80647987 -0.82375842 -9.6889558e-08 0.81881005 \n\t\t-0.90035057 -1.0345512e-07 0.96060199 -0.79799855 -9.2652549e-08 0.82564795 -0.96270043 \n\t\t-1.1037122e-07 1.0337958 -1.0239605 -1.1719769e-07 1.1048698 -1.0186768 -1.1607896e-07 \n\t\t1.112982 -0.95684642 -1.0922967e-07 1.0401518 -0.89353842 -1.022435e-07 0.96485996 \n\t\t-0.78914243 -9.1263047e-08 0.82619387 -0.90434045 -1.0410123e-07 0.95981598 -0.79926044 \n\t\t-9.3053927e-08 0.82010394 -0.96806639 -1.11102e-07 1.0364518 -1.0303105 -1.1795588e-07 \n\t\t1.110878 -1.0564628 -1.2243068e-07 1.0992799 -0.99401248 -1.1559007e-07 1.0236399 \n\t\t-0.93044448 -1.0862905e-07 0.94659197 -0.82609242 -9.7632245e-08 0.80854803 -0.96842849 \n\t\t-1.1523403e-07 0.92690605 -0.86616051 -1.0440188e-07 0.79309595 -1.0312585 -1.2210401e-07 \n\t\t1.003334 -1.0936664 -1.2891492e-07 1.079596 -1.1112647 -1.2832984e-07 1.168442 -1.0843687 \n\t\t-1.2381403e-07 1.1780519 -1.0723644 -1.2194087e-07 1.1785159 -1.0777265 -1.231095e-07 \n\t\t1.1693878 -1.1223825 -1.2774831e-07 1.2302659 -1.1563127 -1.3075544e-07 1.2904298 \n\t\t-1.1779068 -1.3177326e-07 1.3527998 -1.1714747 -1.3062717e-07 1.3568758 -1.1500765 \n\t\t-1.295129e-07 1.2979118 -1.1166025 -1.2651819e-07 1.23931 -1.1289605 -1.2840043e-07 \n\t\t1.240072 -1.1627985 -1.3143773e-07 1.299042 -1.1846027 -1.3265004e-07 1.3570578 -1.2145607 \n\t\t-1.3741519e-07 1.3534698 -1.1918365 -1.3611859e-07 1.293896 -1.1568965 -1.3299122e-07 \n\t\t1.2327678 -1.1967127 -1.3968911e-07 1.2181978 -1.1494845 -1.3489507e-07 1.150804 \n\t\t-1.2333467 -1.4294092e-07 1.28302 -1.2573867 -1.4429507e-07 1.346514 -1.2235485 -1.3658494e-07 \n\t\t1.4131278 -1.2668307 -1.4339589e-07 1.40992 -1.2632285 -1.4053703e-07 1.471786 -1.2201247 \n\t\t-1.3388141e-07 1.47156 -1.1930888 -1.3176046e-07 1.4162258 -1.1893787 -1.2900094e-07 \n\t\t1.4749738 -1.1794845 -1.2956312e-07 1.4187537 -1.1855465 -1.304428e-07 1.4203 -1.1801525 \n\t\t-1.2701966e-07 1.489886 -1.1626487 -1.2175985e-07 1.558516 -1.1339484 -1.1491797e-07 \n\t\t1.6231438 -1.1330128 -1.1562948e-07 1.6001338 -1.1592727 -1.2183176e-07 1.542556 \n\t\t-1.1750904 -1.2655384e-07 1.4813718 -1.1746027 -1.2460461e-07 1.5317317 -1.1498805 \n\t\t-1.188028e-07 1.5849358 -1.1813347 -1.2386779e-07 1.5795058 -1.2056125 -1.2955795e-07 \n\t\t1.527456 -1.2481304 -1.3601219e-07 1.5306598 -1.2230905 -1.3011555e-07 1.5850921 \n\t\t-1.1486164 -1.1706463e-07 1.6263977 -1.1163387 -1.1182834e-07 1.6330098 -1.0972908 \n\t\t-1.0817936e-07 1.651932 -1.0949748 -1.0674977e-07 1.6807297 -1.0473145 -9.7556963e-08 \n\t\t1.7297598 -0.99255049 -8.7640259e-08 1.768728 -0.93227047 -7.7301507e-08 1.7961198 \n\t\t-0.94749045 -8.1106386e-08 1.757102 -1.0031165 -9.0641457e-08 1.731972 -1.0535225 \n\t\t-9.975809e-08 1.696398 -1.0752227 -1.0393014e-07 1.674438 -1.0277745 -9.535696e-08 \n\t\t1.707696 -0.97524446 -8.6358817e-08 1.7312601 -1.0108985 -9.2218386e-08 1.721926 \n\t\t-1.0622907 -1.0101583e-07 1.699028 -1.1085645 -1.0937239e-07 1.666712 -1.1488525 \n\t\t-1.1529263e-07 1.6750017 -1.1896545 -1.2314032e-07 1.633626 -1.1017067 -1.0677752e-07 \n\t\t1.7079561 -1.0492405 -9.7800111e-08 1.7312278 -0.95549846 -8.3204583e-08 1.7339858;\n\tsetAttr \".pt[7968:8133]\" -0.99248046 -8.8566061e-08 1.743556 -0.93336451 -7.9492573e-08 \n\t\t1.74178 -0.89790249 -7.436735e-08 1.7321761 -0.91887248 -7.7183962e-08 1.7436098 \n\t\t-0.86043048 -6.8217417e-08 1.74176 -0.8880505 -7.1428111e-08 1.7702338 -0.8680585 \n\t\t-6.6841764e-08 1.810426 -0.8018685 -5.6680111e-08 1.808502 -0.73564649 -4.7234249e-08 \n\t\t1.7872077 -0.67134452 -3.8923154e-08 1.7433938 -0.70505255 -4.5473104e-08 1.7074198 \n\t\t-0.7650125 -5.3217821e-08 1.748414 -0.82661849 -6.2000709e-08 1.7683461 -0.80169249 \n\t\t-5.9844375e-08 1.7227298 -0.74442852 -5.2449472e-08 1.6835361 -0.78337651 -5.8794935e-08 \n\t\t1.67483 -0.83992451 -6.6099808e-08 1.7134681 -0.87383455 -7.0997451e-08 1.7227398 \n\t\t-0.81582856 -6.3497893e-08 1.6832758 -0.73007053 -5.2845451e-08 1.6132358 -0.69041055 \n\t\t-4.6417668e-08 1.621196 -0.64855456 -3.9159826e-08 1.6423398 -0.61091256 -3.2165008e-08 \n\t\t1.673924 -0.55679852 -2.7055275e-08 1.5864037 -0.51144856 -2.3689024e-08 1.4884418 \n\t\t-0.4568226 -2.256637e-08 1.29164 -0.50401056 -3.0254746e-08 1.28108 -0.55531251 -3.1234617e-08 \n\t\t1.4679078 -0.59786052 -3.4379688e-08 1.5601717 -0.64189851 -4.1850821e-08 1.542362 \n\t\t-0.60115457 -3.8851162e-08 1.453686 -0.55200452 -3.7960127e-08 1.273412 -0.59361655 \n\t\t-4.4532904e-08 1.269666 -0.64205652 -4.5399371e-08 1.4476498 -0.68222654 -4.8348401e-08 \n\t\t1.5353018 -0.71242654 -5.2823069e-08 1.5405258 -0.76128656 -5.7411185e-08 1.620234 \n\t\t-0.67146653 -4.9819015e-08 1.4510701 -0.62212056 -4.8905441e-08 1.2705878 -0.95879644 \n\t\t-1.1367425e-07 0.92880398 -0.86980838 -6.3598307e-08 1.904866 -0.4548966 -1.3214231e-08 \n\t\t1.5349801 -0.38464463 -1.0219434e-08 1.323566 -0.37668869 -2.0565128e-08 1.0124638 \n\t\t-0.86927247 -1.1043231e-07 0.64395601 -0.91756451 -1.1707577e-07 0.66606599 -0.91756451 \n\t\t-1.1789846e-07 0.64395601 -0.86927247 -1.0946116e-07 0.67005605 -0.92175859 -1.1680589e-07 \n\t\t0.69074595 -0.8736406 -1.0907046e-07 0.69870609 -0.96267444 -1.2335096e-07 0.68485194 \n\t\t-0.95865244 -1.2353657e-07 0.66315204 -0.95865244 -1.2425083e-07 0.64395601 -0.98586041 \n\t\t-1.2779297e-07 0.66180998 -0.98586041 -1.2845729e-07 0.64395601 -0.98973656 -1.2764032e-07 \n\t\t0.68201798 -0.9994567 -1.2912329e-07 0.68255001 -0.99567443 -1.2929664e-07 0.66217595 \n\t\t-0.99567443 -1.2997458e-07 0.64395601 -0.98586041 -1.2770158e-07 0.66426605 -0.98586041 \n\t\t-1.2845736e-07 0.64395398 -0.98961055 -1.2745399e-07 0.68650204 -0.96244043 -1.2300602e-07 \n\t\t0.69314986 -0.95865244 -1.2336741e-07 0.66769797 -0.95865244 -1.242509e-07 0.64395398 \n\t\t-0.91756445 -1.1685512e-07 0.67199594 -0.91756445 -1.1789845e-07 0.64395595 -0.92145455 \n\t\t-1.1635606e-07 0.70157188 -0.86927241 -1.104323e-07 0.64395595 -0.82097852 -1.0160709e-07 \n\t\t0.68047398 -0.82097852 -1.0296587e-07 0.64395595 -0.86927241 -1.0922191e-07 0.67648596 \n\t\t-0.77989054 -9.6613576e-08 0.64395398 -0.77989054 -9.5146291e-08 0.68338794 -0.78427643 \n\t\t-9.4302152e-08 0.72429806 -0.87331057 -1.0858276e-07 0.71044195 -0.75268257 -9.0889813e-08 \n\t\t0.68473196 -0.75268257 -9.2407113e-08 0.64395398 -0.75721455 -9.0012826e-08 0.72713196 \n\t\t-0.7474944 -8.8529852e-08 0.72659987 -0.74286854 -8.9386148e-08 0.68436593 -0.74286854 \n\t\t-9.0889749e-08 0.64395595 -0.75268257 -9.0981203e-08 0.68227595 -0.75268257 -9.2407042e-08 \n\t\t0.64395595 -0.75734055 -9.0199151e-08 0.72264796 -0.78451043 -9.4647092e-08 0.71599996 \n\t\t-0.77989054 -9.5315364e-08 0.67884403 -0.77989054 -9.6613505e-08 0.64395601 -0.82097858 \n\t\t-1.0182767e-07 0.67454594 -0.82097858 -1.0296588e-07 0.64395601 -0.82549661 -1.0129709e-07 \n\t\t0.70757794 -0.82519257 -1.0084734e-07 0.71840197 -0.90966243 -1.1121594e-07 0.79071796 \n\t\t-0.51804054 -6.951182e-08 0.28432512 -0.49776658 -6.4004567e-08 0.34809551 -0.53387254 \n\t\t-7.0107589e-08 0.33409652 -0.48089263 -6.3365597e-08 0.29515591 -0.54752654 -7.1043964e-08 \n\t\t0.36566398 -0.51224053 -6.5021567e-08 0.38090339 -0.56630456 -7.2541063e-08 0.40345255 \n\t\t-0.53202653 -6.6628566e-08 0.41992632 -0.59408456 -7.7356034e-08 0.38947532 -0.57659054 \n\t\t-7.5994421e-08 0.35338071 -0.56388652 -7.5150751e-08 0.32326892 -0.54917455 -7.4621362e-08 \n\t\t0.27636752 -0.58312052 -7.8346339e-08 0.31730434 -0.56943452 -7.789717e-08 0.2725099 \n\t\t-0.59485656 -7.9093596e-08 0.34598532 -0.61093253 -8.0305909e-08 0.38020042 -0.61499256 \n\t\t-8.106111e-08 0.37677363 -0.60029054 -7.9995843e-08 0.34431553 -0.58942652 -7.9339507e-08 \n\t\t0.31681433 -0.57652456 -7.8972263e-08 0.27307573 -0.58152652 -7.7923559e-08 0.32204351 \n\t\t-0.56902856 -7.7626161e-08 0.27810651 -0.59173852 -7.8506304e-08 0.3488135 -0.60529852 \n\t\t-7.9445066e-08 0.37992617 -0.58364856 -7.5761562e-08 0.38896534 -0.57074654 -7.4894785e-08 \n\t\t0.35865179 -0.56081057 -7.4346225e-08 0.33211011 -0.54826456 -7.4091616e-08 0.28682351 \n\t\t-0.52958053 -6.9009147e-08 0.34578392 -0.51649052 -6.8756322e-08 0.2981891 -0.53973454 \n\t\t-6.9580544e-08 0.37261775 -0.55267656 -7.0459372e-08 0.40277356 -0.49290261 -6.277682e-08 \n\t\t0.36088172 -0.47889861 -6.2490308e-08 0.3103945 -0.56367856 -7.8198788e-08 0.24048753 \n\t\t-0.57114655 -7.9464755e-08 0.23749413 -0.56942254 -8.0618783e-08 0.19931574 -0.56185853 \n\t\t-7.9449343e-08 0.19931614 -0.56373453 -7.8339035e-08 0.23695095 -0.54089653 -7.6208529e-08 \n\t\t0.19931614 -0.54300255 -7.5062275e-08 0.23887275 -0.50923651 -7.1313778e-08 0.19931573 \n\t\t-0.51143855 -7.0024299e-08 0.24312054 -0.47404462 -6.4022615e-08 0.24904451 -0.47202864 \n\t\t-6.5561267e-08 0.19931611 -0.43629062 -5.7932102e-08 0.25585991 -0.44309464 -5.7066284e-08 \n\t\t0.30740014 -0.46078256 -5.7720413e-08 0.36331427 -0.41054463 -5.159907e-08 0.31908691 \n\t\t-0.42871463 -5.2240967e-08 0.37733287 -0.38877264 -4.7891479e-08 0.32826611 -0.40702462 \n\t\t-4.8497977e-08 0.38780415 -0.38064861 -4.6436202e-08 0.33362171 -0.3985866 -4.6990287e-08 \n\t\t0.3932637 -0.3880026 -4.7554035e-08 0.33413568 -0.4052566 -4.804474e-08 0.39263901 \n\t\t-0.4090986 -5.0971533e-08 0.3299439 -0.42538655 -5.1392252e-08 0.38631406 -0.44118062 \n\t\t-5.6244314e-08 0.32153809 -0.45631856 -5.6591883e-08 0.37509587 -0.43821853 -5.2257374e-08 \n\t\t0.41638109 -0.46807459 -5.7340973e-08 0.40381071 -0.4544746 -5.3532258e-08 0.44966286 \n\t\t-0.48287654 -5.844878e-08 0.43554074 -0.50370455 -6.3420366e-08 0.38846862 -0.51732254 \n\t\t-6.4385688e-08 0.41910872 -0.41909856 -4.9013703e-08 0.42411169 -0.43682855 -5.0448346e-08 \n\t\t0.45922408 -0.43227255 -4.9607465e-08 0.46289268 -0.41323861 -4.8038615e-08 0.4259693 \n\t\t-0.42218861 -4.9594128e-08 0.42135191 -0.44217661 -5.1255032e-08 0.45976552 -0.46449465 \n\t\t-5.5047824e-08 0.45056513;\n\tsetAttr \".pt[8134:8299]\" -0.44402656 -5.3347716e-08 0.41121033 -0.47583857 -5.8797497e-08 \n\t\t0.39692572 -0.49622056 -6.0476616e-08 0.43648693 -0.46759254 -5.3508572e-08 0.50480515 \n\t\t-0.49087861 -5.7394438e-08 0.49712572 -0.52536243 -6.0765096e-08 0.54981977 -0.50094056 \n\t\t-5.6774013e-08 0.55560774 -0.45613059 -5.1700987e-08 0.50575978 -0.45876262 -5.2337214e-08 \n\t\t0.49959707 -0.47437659 -5.5196452e-08 0.4876307 -0.50184453 -5.7857026e-08 0.53025728 \n\t\t-0.54080242 -6.2121643e-08 0.5775159 -0.59517455 -6.8597856e-08 0.62938386 -0.66888446 \n\t\t-7.7893354e-08 0.68583196 -0.69234633 -8.2412477e-08 0.66186386 -0.75087035 -8.8284239e-08 \n\t\t0.74722797 -0.83007449 -9.8047103e-08 0.81394404 -0.89544034 -1.0545917e-07 0.88633996 \n\t\t-0.6572805 -7.5275914e-08 0.70796186 -0.58415651 -6.6149127e-08 0.64941388 -0.73785847 \n\t\t-8.5417348e-08 0.77021188 -0.81538236 -9.4963895e-08 0.83576006 -0.87935251 -1.0230768e-07 \n\t\t0.90419197 -0.87667239 -1.01357e-07 0.91860598 -0.81401837 -9.4103058e-08 0.85322803 \n\t\t-0.73806238 -8.4774577e-08 0.78833395 -0.65877646 -7.4874343e-08 0.72497004 -0.5861364 \n\t\t-6.5906107e-08 0.66417187 -0.67365843 -7.6840941e-08 0.73395187 -0.60146654 -6.8020434e-08 \n\t\t0.67104596 -0.75179636 -8.6516145e-08 0.79859406 -0.82636446 -9.5628565e-08 0.86352795 \n\t\t-0.88785636 -1.027617e-07 0.92732394 -0.91079438 -1.0622779e-07 0.92947996 -0.85015237 \n\t\t-9.9228508e-08 0.86561805 -0.77656847 -9.0296901e-08 0.79991394 -0.69923645 -8.0795552e-08 \n\t\t0.73394805 -0.62735856 -7.2088184e-08 0.66930598 -0.73205853 -8.6216254e-08 0.72464186 \n\t\t-0.66023642 -7.7559697e-08 0.65886599 -0.80913848 -9.5632636e-08 0.79184395 -0.88237238 \n\t\t-1.0445618e-07 0.85899788 -0.9426505 -1.1133341e-07 0.92462796 -0.97879046 -1.1733605e-07 \n\t\t0.91346794 -0.91824049 -1.1053354e-07 0.84470004 -1.0141804 -1.2341465e-07 0.89714998 \n\t\t-0.95262837 -1.1660859e-07 0.82431406 -0.84456837 -1.0170982e-07 0.77572995 -0.87764651 \n\t\t-1.0765098e-07 0.75350004 -0.76703656 -9.2255874e-08 0.70765996 -0.79889244 -9.8017004e-08 \n\t\t0.68518996 -0.69490457 -8.3562135e-08 0.64159596 -0.7260204 -8.9181235e-08 0.61986798 \n\t\t-1.0431606 -1.2859276e-07 0.87839997 -0.98010838 -1.2171671e-07 0.80121195 -0.90324849 \n\t\t-1.1252814e-07 0.72880197 -0.82279456 -1.0261677e-07 0.66088396 -0.74895453 -9.3571735e-08 \n\t\t0.59716398 -0.83448052 -1.0525441e-07 0.63855195 -0.75969642 -9.5980667e-08 0.57705599 \n\t\t-0.91676438 -1.1548435e-07 0.70551187 -0.9957124 -1.2495467e-07 0.77902597 -1.0604866 \n\t\t-1.3194924e-07 0.86018395 -1.0639966 -1.3304683e-07 0.84526986 -0.99757063 -1.2590814e-07 \n\t\t0.76112205 -0.91666639 -1.1615264e-07 0.68714398 -0.83272249 -1.0561584e-07 0.62153393 \n\t\t-0.75717443 -9.6132545e-08 0.56249517 -0.8173185 -1.0356145e-07 0.61274195 -0.74133253 \n\t\t-9.3924818e-08 0.55600494 -0.90247834 -1.1434333e-07 0.67681795 -0.98488849 -1.2434161e-07 \n\t\t0.75052804 -1.0526226 -1.3162717e-07 0.83616406 -1.0287466 -1.2801779e-07 0.83396196 \n\t\t-0.96026248 -1.2061099e-07 0.74846786 -0.87703836 -1.1045344e-07 0.6756559 -0.79128838 \n\t\t-9.9526375e-08 0.6130299 -0.71522647 -8.9810896e-08 0.55809647 -0.75839639 -9.4085422e-08 \n\t\t0.62258989 -0.68262839 -8.4378279e-08 0.56865376 -0.84398234 -1.0502865e-07 0.68409985 \n\t\t-0.92715037 -1.152288e-07 0.75553387 -0.99566233 -1.2270614e-07 0.83924788 -0.95870048 \n\t\t-1.1655523e-07 0.85097796 -0.89080834 -1.0905904e-07 0.77034587 -0.80846834 -9.8926627e-08 \n\t\t0.70053196 -0.7236945 -8.8086111e-08 0.63963586 -0.64850438 -7.8465987e-08 0.58576196 \n\t\t-0.61789834 -7.2941255e-08 0.60707194 -0.85673648 -1.0302482e-07 0.79094785 -0.77582246 \n\t\t-9.3052364e-08 0.72275996 -0.92349046 -1.1049261e-07 0.86761397 -1.0001246 -1.194862e-07 \n\t\t0.94432598 -1.0372766 -1.2548047e-07 0.93759596 -1.0702726 -1.3069207e-07 0.93463194 \n\t\t-1.0937566 -1.3427122e-07 0.93601793 -1.1045103 -1.3573413e-07 0.94138396 -1.1002524 \n\t\t-1.3475236e-07 0.95007795 -1.0821966 -1.3156726e-07 0.96065593 -1.0526483 -1.2659451e-07 \n\t\t0.97152597 -1.0169626 -1.2072738e-07 0.98093194 -1.0692426 -1.2641964e-07 1.0451759 \n\t\t-1.0339384 -1.2092819e-07 1.0460699 -1.0651706 -1.23161e-07 1.1158339 -1.0309106 \n\t\t-1.1816088e-07 1.1078619 -1.0416443 -1.1709029e-07 1.1812339 -1.0090604 -1.1264593e-07 \n\t\t1.1652899 -1.0676503 -1.2040849e-07 1.2001119 -1.0931964 -1.2714227e-07 1.125284 \n\t\t-1.0984606 -1.3097286e-07 1.0442078 -1.1162903 -1.3375926e-07 1.0434059 -1.1098824 \n\t\t-1.2936553e-07 1.1348639 -1.0823106 -1.2196649e-07 1.2191538 -1.0837446 -1.2158506e-07 \n\t\t1.235364 -1.1130646 -1.2955293e-07 1.14305 -1.1204264 -1.3441934e-07 1.042852 -1.1096463 \n\t\t-1.3276214e-07 1.042598 -1.1016483 -1.2758856e-07 1.1484081 -1.0711166 -1.1923852e-07 \n\t\t1.2459579 -1.0469567 -1.1536896e-07 1.2495681 -1.0779943 -1.2386302e-07 1.1502501 \n\t\t-1.0862284 -1.291391e-07 1.0426661 -1.0533866 -1.2404665e-07 1.0430681 -1.0453844 \n\t\t-1.1889915e-07 1.1481601 -1.0146563 -1.1053162e-07 1.2453641 -0.97942638 -1.0549728e-07 \n\t\t1.2342821 -1.0091023 -1.1349608e-07 1.142616 -1.0164646 -1.1831292e-07 1.0437521 \n\t\t-0.98112035 -1.128158e-07 1.0446321 -0.97473449 -1.0849038e-07 1.134346 -0.92881638 \n\t\t-9.4776958e-08 1.312108 -0.96259838 -9.9439283e-08 1.327172 -0.99449837 -1.0416153e-07 \n\t\t1.3328058 -1.0194086 -1.0820072e-07 1.327754 -1.0337803 -1.1096493e-07 1.31318 -1.0348544 \n\t\t-1.119574e-07 1.2909698 -1.0230685 -1.111044e-07 1.2649238 -0.99987435 -1.0847906e-07 \n\t\t1.2391078 -0.96958035 -1.0460559e-07 1.2173359 -0.94414043 -9.8038605e-08 1.2881219 \n\t\t-0.9166584 -9.475125e-08 1.2622818 -0.87872845 -8.6481357e-08 1.3269378 -0.85448843 \n\t\t-8.3795022e-08 1.2984158 -0.8079204 -7.4518944e-08 1.3542218 -0.78726244 -7.2448692e-08 \n\t\t1.3240258 -0.81936842 -7.4951352e-08 1.3901678 -0.89450043 -8.7657646e-08 1.360858 \n\t\t-0.96387643 -9.9948089e-08 1.3188078 -0.97211039 -1.0006756e-07 1.3498098 -0.89867443 \n\t\t-8.7026329e-08 1.3951681 -0.81914443 -7.3563363e-08 1.4265398 -0.80768043 -7.06317e-08 \n\t\t1.457696 -0.89098442 -8.4744613e-08 1.4245378 -0.96793836 -9.8436892e-08 1.3762997 \n\t\t-0.95143038 -9.5234576e-08 1.3937718 -0.87208444 -8.1099024e-08 1.443984 -0.78628039 \n\t\t-6.6554065e-08 1.4783658 -0.75860041 -6.1996452e-08 1.485842 -0.84531838 -7.6701106e-08 \n\t\t1.4509658 -0.92561835 -9.101413e-08 1.3999478 -0.89424038 -8.640653e-08 1.3934017 \n\t\t-0.81462234 -7.2219173e-08 1.443876 -0.72877443 -5.7661698e-08 1.4784118 -0.7014364 \n\t\t-5.4203326e-08 1.4577661 -0.78481638 -6.8338267e-08 1.4243318 -0.86227834 -8.2126718e-08 \n\t\t1.3756198;\n\tsetAttr \".pt[8300:8465]\" -0.89841235 -9.0914249e-08 1.2895898 -0.76066035 -6.5699282e-08 \n\t\t1.394886 -0.61714041 -4.0512976e-08 1.475446 -0.64173645 -4.3520107e-08 1.4968258 \n\t\t-0.6704644 -4.7673943e-08 1.5045558 -0.69892043 -5.2358597e-08 1.4968901 -0.72279245 \n\t\t-5.6842012e-08 1.4755858 -0.73811644 -6.0407949e-08 1.4434217 -0.74290842 -6.2547628e-08 \n\t\t1.405828 -0.73599845 -6.2863258e-08 1.368634 -0.71917242 -6.1424281e-08 1.337394 \n\t\t-0.6643604 -5.1859843e-08 1.3666958 -0.65146041 -5.1034764e-08 1.3352699 -0.59440649 \n\t\t-4.1854854e-08 1.3449218 -0.58536845 -4.1593296e-08 1.3143978 -0.52753049 -3.3193292e-08 \n\t\t1.2998319 -0.52213651 -3.3412732e-08 1.271522 -0.52115047 -3.0949849e-08 1.333616 \n\t\t-0.59223849 -4.0166682e-08 1.381284 -0.66667843 -5.0826088e-08 1.4041098 -0.65730244 \n\t\t-4.7971515e-08 1.44187 -0.57841247 -3.6665124e-08 1.417942 -0.50316048 -2.6900457e-08 \n\t\t1.3676958 -0.47682855 -2.1747178e-08 1.3967818 -0.5555445 -3.1965985e-08 1.4492158 \n\t\t-0.63814044 -4.3808932e-08 1.474122 -0.61186445 -3.8953935e-08 1.495424 -0.52696848 \n\t\t-2.6780917e-08 1.4698318 -0.44609055 -1.6280698e-08 1.4159778 -0.41576454 -1.1337731e-08 \n\t\t1.422816 -0.49722454 -2.1910767e-08 1.4771317 -0.58273244 -3.416752e-08 1.503016 \n\t\t-0.55522043 -3.0206369e-08 1.4951597 -0.47094652 -1.8133681e-08 1.469456 -0.39063254 \n\t\t-7.7149993e-09 1.4157537 -0.37437651 -5.9246319e-09 1.3963261 -0.45204851 -1.5992246e-08 \n\t\t1.4484857 -0.53349042 -2.7648884e-08 1.473604 -0.44389451 -1.5906348e-08 1.416914 \n\t\t-0.52127641 -2.6968786e-08 1.4411321 -0.30203053 2.1735855e-09 1.3133678 -0.31599453 \n\t\t6.3690514e-10 1.33009 -0.3401686 -2.8815053e-09 1.3359758 -0.3710866 -7.8940356e-09 \n\t\t1.3297278 -0.40381053 -1.3585461e-08 1.3127379 -0.43325654 -1.9088622e-08 1.2871878 \n\t\t-0.45497459 -2.3555433e-08 1.25738 -0.46513453 -2.6221551e-08 1.227942 -0.46301061 \n\t\t-2.6806887e-08 1.2033858 -0.4095546 -2.0986462e-08 1.1376998 -0.41025653 -2.1835437e-08 \n\t\t1.1177999 -0.36313865 -1.7536589e-08 1.0375559 -0.3661426 -1.8558703e-08 1.0225679 \n\t\t-0.30715063 -1.6181408e-08 0.841344 -0.31291664 -1.7331386e-08 0.83439589 -0.28790662 \n\t\t-1.2880112e-08 0.85010791 -0.34706056 -1.4369335e-08 1.055872 -0.39613655 -1.801733e-08 \n\t\t1.1617439 -0.37121457 -1.3251925e-08 1.1862639 -0.31954864 -9.4129344e-09 1.0747639 \n\t\t-0.25738862 -7.815343e-09 0.85942191 -0.22064464 -1.8218673e-09 0.86782598 -0.28525463 \n\t\t-3.4961753e-09 1.0912859 -0.33908662 -7.4965794e-09 1.207448 -0.30463058 -1.6376795e-09 \n\t\t1.2217418 -0.24938662 2.4728211e-09 1.1026719 -0.18322062 4.1910058e-09 0.87392581 \n\t\t-0.15080704 9.3126449e-09 0.87689191 -0.21744859 7.5875342e-09 1.1074278 -0.27315655 \n\t\t3.4346972e-09 1.227288 -0.24975862 6.8881771e-09 1.222882 -0.19464962 1.1004967e-08 \n\t\t1.1045419 -0.12872301 1.2698422e-08 0.87612587 -0.18412001 1.2267353e-08 1.094718 \n\t\t-0.23771258 8.2535747e-09 1.2095258 -0.23945057 7.2175554e-09 1.1889038 -0.18806978 \n\t\t1.1078696e-08 1.0791838 -0.11253864 7.5074675e-09 0.66936994 -0.10405883 8.7760625e-09 \n\t\t0.66822994 -0.10419665 4.9927951e-09 0.56712568 -0.11273685 3.6724446e-09 0.56712568 \n\t\t-0.13453066 3.0305397e-10 0.56712627 -0.13437703 4.1346579e-09 0.66946387 -0.16671427 \n\t\t-9.0224422e-10 0.66845787 -0.16673747 -4.6762727e-09 0.56712568 -0.20414265 -1.0459267e-08 \n\t\t0.56712568 -0.20428266 -6.7816148e-09 0.66654587 -0.24143066 -1.261973e-08 0.66399586 \n\t\t-0.24115264 -1.6181165e-08 0.56712568 -0.2722587 -2.0990289e-08 0.56712568 -0.27260268 \n\t\t-1.7542042e-08 0.66122794 -0.29269662 -2.0743531e-08 0.65867794 -0.2923907 -2.4102755e-08 \n\t\t0.56712627 -0.29897663 -2.5120967e-08 0.56712627 -0.29922864 -2.1826931e-08 0.65670192 \n\t\t-0.29071862 -2.0551587e-08 0.65561789 -0.29043666 -2.3800677e-08 0.56712568 -0.2686426 \n\t\t-2.0431203e-08 0.56712627 -0.26902267 -1.7200581e-08 0.65552986 -0.23695061 -1.2206607e-08 \n\t\t0.65648389 -0.23643263 -1.545143e-08 0.56712568 -0.19902663 -9.6683097e-09 0.56712568 \n\t\t-0.1996046 -6.3644463e-09 0.65831989 -0.16248581 -5.3278215e-10 0.66081786 -0.16201663 \n\t\t-3.9464121e-09 0.56712568 -0.13091044 8.6273427e-10 0.56712568 -0.13116722 4.4119757e-09 \n\t\t0.66357994 -0.11081243 7.6557249e-09 0.66618192 -0.1462938 9.2243333e-09 0.85576582 \n\t\t-0.20525861 7.7310887e-09 1.0606359 -0.25409654 4.0486907e-09 1.1645939 -0.31241658 \n\t\t-1.4851731e-09 1.2581918 -0.37765458 -8.791587e-09 1.332896 -0.44724658 -1.7791647e-08 \n\t\t1.3801738 -0.52001643 -2.8181603e-08 1.4033018 -0.6007784 -3.9183554e-08 1.4431897 \n\t\t-0.59478843 -3.9657941e-08 1.4055518 -0.68103045 -5.2208065e-08 1.4266018 -0.67038643 \n\t\t-5.1916995e-08 1.390198 -0.74563438 -6.4654998e-08 1.360518 -0.83475834 -7.8865398e-08 \n\t\t1.348922 -0.81575435 -7.708465e-08 1.3178178 -0.87596834 -8.8418432e-08 1.2634099 \n\t\t-0.92150235 -9.7869595e-08 1.1986021 -0.94757646 -1.0465033e-07 1.124706 -0.95283049 \n\t\t-1.0840949e-07 1.045508 -0.93590438 -1.0879598e-07 0.96479195 -0.91926038 -1.0583928e-07 \n\t\t0.97509795 -0.93646634 -1.0585422e-07 1.046188 -0.9323265 -1.0264753e-07 1.115168 \n\t\t-0.90819448 -9.6513681e-08 1.1797478 -0.90790051 -9.7052187e-08 1.1640539 -0.93032634 \n\t\t-1.0263425e-07 1.107214 -0.93348837 -1.0537647e-07 1.0466541 -0.91605049 -1.0503285e-07 \n\t\t0.98343396 -0.92675638 -1.0649804e-07 0.98853993 -0.94435036 -1.0704611e-07 1.0469139 \n\t\t-0.94191837 -1.0461351e-07 1.102186 -0.92074448 -9.9408659e-08 1.1540899 -0.94418448 \n\t\t-1.0315381e-07 1.1508319 -0.96476847 -1.0820659e-07 1.1005639 -0.9668805 -1.1052884e-07 \n\t\t1.0469279 -0.94929636 -1.099319e-07 0.98990798 -0.98086834 -1.1491159e-07 0.98725998 \n\t\t-0.99821436 -1.1538323e-07 1.0466579 -0.99587834 -1.1294129e-07 1.1025798 -0.97505236 \n\t\t-1.0777892e-07 1.1547879 -0.90634835 -9.5558214e-08 1.1977558 -0.93692249 -1.0008819e-07 \n\t\t1.203048 -0.8856684 -9.0588813e-08 1.245384 -0.85549039 -8.6152014e-08 1.239234 -0.88210851 \n\t\t-9.1638945e-08 1.2023699 -0.83034438 -8.2052999e-08 1.2449138 -0.86754638 -8.8875737e-08 \n\t\t1.216126 -0.86543036 -8.7748376e-08 1.237632 -0.80865437 -7.7128675e-08 1.2871339 \n\t\t-0.74249035 -6.5432538e-08 1.3265578 -0.67156041 -5.3437489e-08 1.354212 -0.68359244 \n\t\t-5.6422138e-08 1.323992 -0.75092643 -6.7796933e-08 1.2980658 -0.81373239 -7.8869348e-08 \n\t\t1.261452 -0.76977843 -7.1397949e-08 1.279618 -0.70474243 -6.0421975e-08 1.304374 \n\t\t-0.7316184 -6.4835127e-08 1.2974398 -0.79583842 -7.566716e-08 1.2731618 -0.82546443 \n\t\t-7.9999502e-08 1.2798258;\n\tsetAttr \".pt[8466:8631]\" -0.76049042 -6.9039878e-08 1.3044 -0.66705644 -5.438773e-08 \n\t\t1.3099598 -0.63956439 -4.9872497e-08 1.3170778 -0.61620045 -4.550931e-08 1.3372618 \n\t\t-0.6004864 -4.1920945e-08 1.368408 -0.53027844 -3.1154023e-08 1.366056 -0.46194658 \n\t\t-2.1407555e-08 1.344074 -0.39649656 -1.2951951e-08 1.2993739 -0.42279452 -1.8059124e-08 \n\t\t1.2713858 -0.48488858 -2.607603e-08 1.3139319 -0.54966241 -3.5310148e-08 1.3348998 \n\t\t-0.57516444 -4.0001648e-08 1.3147759 -0.51246041 -3.1061202e-08 1.2945158 -0.45237052 \n\t\t-2.3302867e-08 1.2533478 -0.48128858 -2.800976e-08 1.247004 -0.54089642 -3.5709494e-08 \n\t\t1.287744 -0.60315239 -4.4590873e-08 1.30773 -0.62986439 -4.8452385e-08 1.31494 -0.69492245 \n\t\t-5.8428839e-08 1.317138 -0.56642449 -3.9397044e-08 1.2947098 -0.50570846 -3.1548979e-08 \n\t\t1.2533518 -0.42532259 -2.175693e-08 1.1825099 -0.44882059 -2.5194105e-08 1.1877698 \n\t\t-0.39798453 -2.0402423e-08 1.1053219 -0.37521854 -1.7028789e-08 1.1013958 -0.39581251 \n\t\t-1.6978593e-08 1.188314 -0.34507653 -1.2176337e-08 1.106566 -0.36428851 -1.1510558e-08 \n\t\t1.2042859 -0.33493853 -6.0582597e-09 1.228868 -0.27975455 -8.1665885e-10 1.1404459 \n\t\t-0.23342261 2.6828748e-09 1.0419859 -0.17723641 4.0961536e-09 0.8465119 -0.2138966 \n\t\t-1.876477e-09 0.8383199 -0.26759461 -3.1944041e-09 1.0260179 -0.3117606 -6.5245804e-09 \n\t\t1.1200299 -0.3024466 -8.9833279e-09 1.01525 -0.25067061 -7.7786684e-09 0.8324939 \n\t\t-0.2823166 -1.2775303e-08 0.82969791 -0.3332026 -1.3903914e-08 1.0107999 -0.35542059 \n\t\t-1.7243355e-08 1.0133679 -0.30399659 -1.6101525e-08 0.8303858 -0.96449637 -1.1361991e-07 \n\t\t0.95394796 -0.94670838 -1.0105325e-07 1.2177721 -0.30097654 1.3900945e-09 1.2879318 \n\t\t-0.37000456 -6.3391612e-09 1.3670198 -0.11990581 1.3903607e-08 0.87187982 -0.12630221 \n\t\t1.2646725e-08 0.86467791 -0.11078045 3.9749133e-09 0.56712568 -0.56185853 -7.9449357e-08 \n\t\t0.19931573 -0.54279655 -7.4784417e-08 0.24548432 -0.54089653 -7.6208543e-08 0.19931573 \n\t\t-0.51093256 -6.9619503e-08 0.2518971 -0.50923651 -7.1313757e-08 0.19931613 -0.47202861 \n\t\t-6.5561267e-08 0.19931611 -0.43552262 -5.7479184e-08 0.26484111 -0.4348186 -5.9808443e-08 \n\t\t0.19931611 -0.40337262 -5.2339988e-08 0.26937428 -0.4732846 -6.3545656e-08 0.25870511 \n\t\t-0.4031606 -5.4914e-08 0.19931571 -0.3821426 -4.8978897e-08 0.27149329 -0.38219661 \n\t\t-5.1672885e-08 0.19931571 -0.37459061 -4.7830984e-08 0.2709651 -0.37463459 -5.0503765e-08 \n\t\t0.19931571 -0.38246062 -4.9167252e-08 0.2677525 -0.38219664 -5.167287e-08 0.19931613 \n\t\t-0.40396264 -5.2688396e-08 0.26246232 -0.40316063 -5.491399e-08 0.19931613 -0.43481863 \n\t\t-5.980845e-08 0.19931611 -0.59118456 -7.4700793e-08 0.44878632 -0.55809057 -6.8919398e-08 \n\t\t0.46665671 -0.62452453 -7.7925641e-08 0.50064653 -0.59252852 -7.2260868e-08 0.51994473 \n\t\t-0.66868442 -8.2618392e-08 0.55801338 -0.63743442 -7.701945e-08 0.57864195 -0.69194442 \n\t\t-8.6983043e-08 0.53735799 -0.64898252 -8.239072e-08 0.48226973 -0.61728853 -7.9334875e-08 \n\t\t0.43270674 -0.63215852 -8.2070983e-08 0.42095831 -0.66183054 -8.4918653e-08 0.46771473 \n\t\t-0.70324457 -8.9378652e-08 0.51992774 -0.70145851 -8.9537878e-08 0.50822735 -0.66174453 \n\t\t-8.5229544e-08 0.45900193 -0.63419855 -8.2604579e-08 0.41509411 -0.62273252 -8.0789263e-08 \n\t\t0.41623953 -0.64834452 -8.3205677e-08 0.45771655 -0.68644255 -8.7361869e-08 0.50431639 \n\t\t-0.66106457 -8.3287865e-08 0.50835997 -0.62417257 -7.9246568e-08 0.46368355 -0.59991252 \n\t\t-7.6975034e-08 0.42393035 -0.56869054 -7.1653332e-08 0.4372243 -0.59252256 -7.3887591e-08 \n\t\t0.47620091 -0.62892056 -7.7887634e-08 0.51993352 -0.59491456 -7.1994776e-08 0.53700989 \n\t\t-0.55828452 -6.7963903e-08 0.49314171 -0.53396857 -6.566394e-08 0.4539203 -0.52653056 \n\t\t-6.2349891e-08 0.51208133 -0.50091255 -5.9896259e-08 0.4715797 -0.56407654 -6.6476083e-08 \n\t\t0.55719358 -0.48833454 -5.5221861e-08 0.54494375 -0.52898639 -5.9645096e-08 0.59497792 \n\t\t-0.53011453 -5.9372859e-08 0.60698193 -0.4877626 -5.4797074e-08 0.55398375 -0.54472852 \n\t\t-6.1471205e-08 0.61130995 -0.57012653 -6.5536923e-08 0.60757196 -0.6027804 -7.1016153e-08 \n\t\t0.59599394 -0.55765241 -6.6227152e-08 0.53719133 -0.52281255 -6.2833614e-08 0.48363271 \n\t\t1.2535193 2.3362722e-07 1.0703938 1.1406232 2.2492155e-07 1.3055139 1.3058492 2.5143092e-07 \n\t\t1.3314418 1.0955535 2.0920506e-07 1.0703938 1.2437395 2.2462592e-07 0.86911577 1.0871295 \n\t\t2.0041337e-07 0.86911577 1.2362673 2.1331554e-07 0.59619182 1.0806932 1.8926316e-07 \n\t\t0.59619182 1.1976953 1.9395864e-07 0.23623559 1.0474713 1.7073339e-07 0.23623559 \n\t\t1.1249613 1.7095981e-07 -0.07965418 0.92940146 1.4072545e-07 -0.07965418 1.0669193 \n\t\t1.5489535e-07 -0.27022621 0.83331347 1.1877891e-07 -0.27022621 0.95066732 1.3395841e-07 \n\t\t-0.34988219 1.0853014 1.5477337e-07 -0.34988219 0.57355946 1.0860098e-07 0.53552824 \n\t\t0.59717536 1.1225208e-07 0.53552806 0.0049632951 2.0693664e-08 0.53552806 0.0049633314 \n\t\t2.0693678e-08 0.5355283 0.56914532 1.0160584e-07 0.36587211 0.0049633174 1.4380986e-08 \n\t\t0.36587217 0.56577343 9.6260912e-08 0.23623545 0.004963336 9.5573736e-09 0.23623548 \n\t\t0.54836541 9.3569575e-08 0.23623563 0.0049633598 9.5573842e-09 0.23623566 0.48649937 \n\t\t6.5160023e-08 -0.27022621 0.0049633184 -9.2874188e-09 -0.27022609 0.43615133 5.7376013e-08 \n\t\t-0.27022621 0.0049633477 -9.2874171e-09 -0.27022615 0.0049633658 -1.2251315e-08 -0.34988219 \n\t\t0.49764335 6.3919039e-08 -0.34988219 -0.42622465 -7.5950851e-08 -0.27022609 -0.48771667 \n\t\t-8.8421665e-08 -0.34988207 -0.47657469 -8.3735173e-08 -0.27022609 -0.53843862 -7.4454789e-08 \n\t\t0.23623572 -0.55584663 -7.7146154e-08 0.23623554 -0.55921865 -7.2843861e-08 0.36587223 \n\t\t-0.56363255 -6.7213577e-08 0.5355283 -0.58724868 -7.0864743e-08 0.53552818 -1.1306969 \n\t\t-1.2623386e-07 1.3055141 -1.0856265 -1.2801432e-07 1.070394 -1.2435927 -1.5243656e-07 \n\t\t1.070394 -1.2959229 -1.5081375e-07 1.3314418 -1.2338125 -1.5841378e-07 0.86911589 \n\t\t-1.0772024 -1.3420123e-07 0.86911589 -1.2263408 -1.6741377e-07 0.596192 -1.0707667 \n\t\t-1.4336139e-07 0.596192 -1.1877687 -1.7484389e-07 0.23623578 -1.0375447 -1.5161865e-07 \n\t\t0.23623577 -1.1150347 -1.7535277e-07 -0.079654001 -0.91947657 -1.4511869e-07 -0.07965406 \n\t\t-1.0569928 -1.7347018e-07 -0.27022609 -0.82338655 -1.3735371e-07 -0.27022609 -0.94074064 \n\t\t-1.5846103e-07 -0.34988207 -1.0753746 -1.79276e-07 -0.34988207 -0.94074064 -1.6489145e-07 \n\t\t-0.52270204 -0.43622869 -1.018725e-07 -0.92531389 0.0049633333 -3.5502755e-08 -0.97477418;\n\tsetAttr \".pt[8632:8797]\" 0.44615531 3.4547682e-08 -0.92531413 0.95066732 1.27528e-07 \n\t\t-0.52270216 0.34384531 1.3805412e-08 -1.0576682 0.0049633193 -3.9920547e-08 -1.0935042 \n\t\t-0.33391869 -9.0979675e-08 -1.057668 0.25471726 -1.1337847e-08 -1.3630723 0.0049632988 \n\t\t-5.0114405e-08 -1.3674682 -0.24479072 -8.856383e-08 -1.3630723 1.3043531 2.5119959e-07 \n\t\t1.3314418 1.1393354 2.2568719e-07 1.3314418 0.59649926 1.1214756e-07 0.53552806 0.0049632681 \n\t\t2.0693664e-08 0.53552818 -0.58657473 -7.0760542e-08 0.53552818 -1.1294086 -1.2506996e-07 \n\t\t1.3314418 -1.2944268 -1.5058245e-07 1.3314418 1.3020271 2.5277046e-07 1.3833238 1.1373334 \n\t\t2.2730813e-07 1.3833238 0.59545141 1.4655772e-07 1.4646698 0.0049633165 5.9335299e-08 \n\t\t1.574038 -1.2921026 -1.4829266e-07 1.3833238 -1.1274066 -1.2282997e-07 1.3833238 \n\t\t-0.58552462 -3.6026016e-08 1.4646698 -1.1262509 -1.2061649e-07 1.43801 -0.58491862 \n\t\t-1.9285507e-08 1.91206 1.3006872 2.5459809e-07 1.4380097 1.1361772 2.2916424e-07 \n\t\t1.4380118 0.59484541 1.6311085e-07 1.91206 0.0049633756 8.1619611e-08 2.1729379 -1.2907609 \n\t\t-1.4605035e-07 1.4380118 0.0049633174 1.4380986e-08 0.36587217 -0.55921865 -7.2843861e-08 \n\t\t0.36587223 -0.55921865 -7.2843861e-08 0.36587223 -0.61372256 -9.3472785e-08 0.037927937 \n\t\t-0.60252857 -9.1742145e-08 0.037927937 0.61393732 5.5330187e-08 -1.0639182 0.64982933 \n\t\t6.1341375e-08 -1.0514982 1.4745492 2.3357707e-07 0.15065582 1.4779571 2.3424981e-07 \n\t\t0.15457582 1.4779571 2.3424981e-07 0.15457582 1.3295612 2.2155128e-07 0.42988959 \n\t\t1.3295612 2.2155128e-07 0.42988959 1.3358412 2.2608384e-07 0.52561057 1.2239892 1.9153632e-07 \n\t\t0.061881788 1.2239892 1.9153632e-07 0.061881788 1.1590093 1.7499984e-07 -0.11254819 \n\t\t1.4825292 2.3475425e-07 0.14913583 1.4825292 2.3475425e-07 0.14913583 1.4828812 2.353767e-07 \n\t\t0.16440183 0.65985936 6.321622e-08 -1.0427862 1.280627 1.9788004e-07 -0.0029601553 \n\t\t1.4068531 2.1968003e-07 0.05844786 1.4068531 2.1968003e-07 0.05844786 0.65469533 \n\t\t6.2515483e-08 -1.0401622 0.65469533 6.2515483e-08 -1.0401622 1.3403552 2.3046231e-07 \n\t\t0.62452781 1.3403552 2.3046231e-07 0.62452781 -0.33376494 -1.0250163e-07 -1.367964 \n\t\t-0.33765489 -1.0301157e-07 -1.3655059 -0.47657469 -8.3735173e-08 -0.27022609 -0.47657469 \n\t\t-8.3735173e-08 -0.27022609 -0.91947657 -1.4511869e-07 -0.07965406 -0.91947657 -1.4511869e-07 \n\t\t-0.07965406 0.69729948 1.2378621e-07 0.42949203 0.71142548 1.2597016e-07 0.42949241 \n\t\t0.08088927 -4.7979359e-08 -1.6255642 0.035822276 -5.4946902e-08 -1.6255642 1.3278612 \n\t\t2.2307484e-07 0.47789958 1.3393931 2.2858865e-07 0.57816982 0.69729948 1.2640375e-07 \n\t\t0.4998394 0.71142548 1.2858769e-07 0.4998394 0.89608949 1.3325845e-07 -0.14192021 \n\t\t0.89608949 1.3325837e-07 -0.14192224 -0.35499683 -1.0588932e-07 -1.37079 -0.33690089 \n\t\t-1.0234751e-07 -1.3507919 -1.0375447 -1.5161865e-07 0.23623577 -1.0375447 -1.5161865e-07 \n\t\t0.23623577 -1.0375447 -1.5161865e-07 0.23623577 -0.39461893 -1.4342223e-08 1.254208 \n\t\t-0.19756693 1.8823812e-08 1.3267981 0.0049633598 9.5573842e-09 0.23623566 -0.53843862 \n\t\t-7.4454789e-08 0.23623572 0.65036303 1.2962541e-07 0.78144604 0.363713 9.1167465e-08 \n\t\t0.93891793 -1.0488107 -1.8082149e-07 -0.50179195 -1.0646688 -1.8255798e-07 -0.48257008 \n\t\t-1.0646688 -1.8255798e-07 -0.48257008 -0.27909067 4.2037762e-08 2.289418 -0.27600268 \n\t\t4.2685596e-08 2.293998 -0.75417298 -7.4131918e-08 1.1413002 0.66564548 7.3298878e-08 \n\t\t-0.79585212 0.59628534 6.08756e-08 -0.84153813 -0.47098875 -1.1273998e-07 -1.072952 \n\t\t-0.54301673 -1.2331513e-07 -1.057884 0.72412729 8.4046953e-08 -0.74998814 -0.34303483 \n\t\t-1.0294035e-07 -1.341238 -0.34303483 -1.0294035e-07 -1.341238 -0.34720084 -1.0353145e-07 \n\t\t-1.3398139 -0.34720084 -1.0353145e-07 -1.3398139 1.4791411 2.3408444e-07 0.14521182 \n\t\t-0.66270852 -8.3314859e-08 0.51446539 -0.67874855 -8.579471e-08 0.51446539 -1.0758327 \n\t\t-1.4533055e-07 0.56431955 -1.0597928 -1.4285071e-07 0.56431919 -0.57222253 -8.7056705e-08 \n\t\t0.03792794 -0.98137885 -1.724611e-07 -0.5572859 -0.98137885 -1.724611e-07 -0.5572859 \n\t\t-0.93733692 -1.6573925e-07 -0.55962992 0.64191133 1.7550276e-07 2.049536 0.61593133 \n\t\t1.7232088e-07 2.07197 0.59573346 9.7344795e-08 0.14087982 0.63014948 1.0266565e-07 \n\t\t0.14087984 0.88056153 1.3163847e-07 -0.12093821 0.88056153 1.3163847e-07 -0.12093821 \n\t\t0.9258455 1.3988642e-07 -0.087428212 0.9258455 1.3988642e-07 -0.087428212 0.92990738 \n\t\t1.2163656e-07 -0.59477824 0.83575541 1.0431262e-07 -0.66916019 0.65628731 6.343263e-08 \n\t\t-1.0221282 0.65112334 6.2731893e-08 -1.0195042 -0.55584663 -7.7146154e-08 0.23623554 \n\t\t-0.55584663 -7.7146154e-08 0.23623554 -0.55584663 -7.7146154e-08 0.23623554 -0.79510856 \n\t\t-1.4483898e-07 -0.58889204 -0.94834852 -1.6032516e-07 -0.36837009 0.94869143 1.6821343e-07 \n\t\t0.57894582 1.0078193 1.7735485e-07 0.57894582 -1.3081747 -1.8166992e-07 0.55307662 \n\t\t-1.3081747 -1.8166992e-07 0.55307662 -1.3090947 -1.8330775e-07 0.51288164 -0.73705858 \n\t\t-1.416864e-07 -0.74536604 -0.73705858 -1.416864e-07 -0.74536604 -0.73705858 -1.416864e-07 \n\t\t-0.74536604 -0.65877861 -1.3017666e-07 -0.76129407 1.0469713 1.8340791e-07 0.57894582 \n\t\t-1.0153327 -1.37832e-07 0.51446539 -1.0597928 -1.4470571e-07 0.51446539 0.50396127 \n\t\t3.8203684e-08 -1.0672442 0.50396127 3.8203684e-08 -1.0672442 0.47974318 3.4610537e-08 \n\t\t-1.0631843 -0.48771667 -8.8421665e-08 -0.34988207 -0.94074064 -1.5846103e-07 -0.34988207 \n\t\t1.3428433 2.1757207e-07 0.267759 1.3585212 2.2145099e-07 0.30686441 -0.70149857 -8.9856172e-08 \n\t\t0.49983951 -0.68737257 -8.7672234e-08 0.49983951 0.0049633184 -9.2874188e-09 -0.27022609 \n\t\t-0.33070076 -9.1801219e-08 -1.093118 -0.30149475 -8.7410065e-08 -1.0964562 0.12116692 \n\t\t-3.8853781e-08 -1.5476661 0.080889724 -4.529155e-08 -1.5533301 -1.0872108 -1.7264168e-07 \n\t\t-0.122402 -1.2939087 -1.7749073e-07 0.60611796 -1.2959167 -1.8045259e-07 0.53486001 \n\t\t1.2639652 1.999754e-07 0.12258378 1.4580011 2.3028082e-07 0.13082582 1.4580011 2.3028082e-07 \n\t\t0.13082582 -0.74076265 -1.4202406e-07 -0.73905009 -0.8084746 -1.5039791e-07 -0.6827541 \n\t\t-0.32741088 -1.0119265e-07 -1.3591859 -0.32764488 -1.0099122e-07 -1.3528003 1.0252593 \n\t\t1.7950688e-07 0.56431907 1.0697193 1.8638059e-07 0.56431895 -0.93876463 -1.2359503e-07 \n\t\t0.57894593 -0.99789274 -1.3273647e-07 0.57894593 -0.52608252 -7.9923268e-08 0.037927911 \n\t\t0.30716318 1.6156176e-09 -1.2328579;\n\tsetAttr \".pt[8798:8963]\" 0.28815722 1.6065853e-09 -1.15413 0.54333937 8.9244466e-08 \n\t\t0.14087984 0.73415542 1.050209e-07 -0.22797219 0.28167555 5.7818507e-08 0.3835206 \n\t\t0.28167555 5.7818507e-08 0.3835206 0.7462675 1.0628443e-07 -0.24434024 0.7462675 \n\t\t1.0628443e-07 -0.24434024 -1.0772024 -1.3420123e-07 0.86911589 -0.3422069 -1.0327724e-07 \n\t\t-1.3537322 -0.33896083 -1.0236914e-07 -1.342814 -0.33896083 -1.0236914e-07 -1.342814 \n\t\t0.75057739 1.320232e-07 0.42949203 0.0049633658 -1.2251315e-08 -0.34988219 1.2395873 \n\t\t1.9588738e-07 0.11400778 0.74835944 1.9202309e-07 2.05123 0.73921531 1.9021333e-07 \n\t\t2.040586 0.45520741 5.3271634e-08 -0.45971215 1.3064892 2.1506864e-07 0.35153159 \n\t\t1.2492433 1.9931984e-07 0.16613577 1.2492433 1.9931984e-07 0.16613577 -0.52608252 \n\t\t-7.7924561e-08 0.091643915 -0.47202861 -6.9567605e-08 0.091643915 0.74567336 1.9233339e-07 \n\t\t2.07073 1.3407893 2.2392166e-07 0.44694155 1.3407893 2.2392166e-07 0.44694155 1.3456773 \n\t\t2.2408719e-07 0.43108037 1.3456773 2.2408719e-07 0.43108037 0.71899134 1.8680339e-07 \n\t\t2.032974 0.71659148 1.8708076e-07 2.0504 1.2491792 1.9584343e-07 0.072971791 -0.70149857 \n\t\t-8.9856172e-08 0.49983951 -1.000891 -1.7530414e-07 -0.55261993 0.48091525 3.4428286e-08 \n\t\t-1.0729523 0.55294329 4.6124786e-08 -1.0578842 1.2984673 2.1331853e-07 0.33782798 \n\t\t1.3039293 2.1641881e-07 0.39845416 -0.89026684 -1.5840533e-07 -0.55810595 -0.89026684 \n\t\t-1.5840533e-07 -0.55810595 -0.72321051 -9.2668699e-08 0.51446575 0.33122304 8.7176382e-09 \n\t\t-1.141958 0.33122304 8.7176382e-09 -1.141958 0.33122304 8.7176382e-09 -1.141958 0.64123505 \n\t\t6.4881803e-08 -0.9206382 0.52664936 4.2328878e-08 -1.0506482 0.46091932 3.1816384e-08 \n\t\t-1.0600642 -0.27381065 4.3582475e-08 2.3089941 -0.28131866 4.2230454e-08 2.303854 \n\t\t-0.26494065 4.3956607e-08 2.2821937 -0.25481066 4.5559368e-08 2.2831779 -0.58580655 \n\t\t-8.5326143e-08 0.14087993 -0.62022257 -9.0646999e-08 0.14087994 1.3565211 2.293244e-07 \n\t\t0.52677578 0.75057745 1.3464074e-07 0.4998394 0.71142548 1.2858769e-07 0.4998394 \n\t\t0.87919748 1.5452594e-07 0.49983943 0.80970347 1.4378189e-07 0.49983984 -1.1490828 \n\t\t-1.8184068e-07 -0.11254802 -1.2140627 -1.8539653e-07 0.061881997 -1.2140627 -1.8539653e-07 \n\t\t0.061881997 -1.1209707 -1.7529905e-07 -0.053546008 -0.60401064 -1.3296957e-07 -1.0639182 \n\t\t-0.63990265 -1.3805648e-07 -1.0514979 1.4304131 2.2639782e-07 0.14109783 1.4402572 \n\t\t2.2750353e-07 0.12991183 1.3190212 2.2300976e-07 0.5128814 1.3208532 2.2192823e-07 \n\t\t0.47620255 -0.47202864 -6.9567612e-08 0.091643937 -0.41797462 -6.1210642e-08 0.091643937 \n\t\t1.4463252 2.2843088e-07 0.12962182 -0.58899468 -1.2913424e-07 -1.0232342 -0.56787467 \n\t\t-1.2591171e-07 -1.0243822 -0.9783228 -8.7642242e-08 1.7095582 -0.7573548 -4.4704521e-08 \n\t\t1.9453943 0.91058153 1.3702893e-07 -0.10080221 0.92604154 1.3984477e-07 -0.089362234 \n\t\t0.59717536 1.1225208e-07 0.53552806 0.59649926 1.1214756e-07 0.53552806 0.59649926 \n\t\t1.1214756e-07 0.53552806 -0.86927056 -1.152502e-07 0.51446539 -0.94818854 -1.2745124e-07 \n\t\t0.51446539 -0.58726668 -1.2872604e-07 -1.019444 -0.52527064 -1.1937763e-07 -1.0257982 \n\t\t-0.61119068 -1.3237636e-07 -1.018142 1.1995652 1.7102823e-07 -0.38779813 1.2056012 \n\t\t1.7238033e-07 -0.37654012 0.32810304 8.2225382e-09 -1.1423002 0.63991302 6.4552474e-08 \n\t\t-0.92399597 -0.93516493 -1.6600795e-07 -0.57587606 -0.88143098 -1.576294e-07 -0.57396591 \n\t\t-0.88143098 -1.576294e-07 -0.57396591 1.2928892 2.0621177e-07 0.17000778 1.4087912 \n\t\t2.2156647e-07 0.10109382 1.4087912 2.2156647e-07 0.10109382 1.4132571 2.2228394e-07 \n\t\t0.10181984 -0.33972284 -1.0165474e-07 -1.3204483 -0.33972284 -1.0165474e-07 -1.3204483 \n\t\t1.3640292 2.3413439e-07 0.6248498 1.3640292 2.3413439e-07 0.6248498 0.38278931 2.0105826e-08 \n\t\t-1.0501562 0.3107613 8.4093408e-09 -1.0652242 0.75057745 1.3202325e-07 0.4294928 \n\t\t0.71142548 1.2597016e-07 0.42949203 -0.57715869 -1.2117286e-07 -0.85844797 -0.40805465 \n\t\t-9.9110849e-08 -0.96815795 -0.22441864 5.1233187e-08 2.3093839 -0.22787465 5.0508223e-08 \n\t\t2.30426 -1.1640788 -1.9085954e-07 -0.292624 -1.0919229 -1.7973876e-07 -0.29355997 \n\t\t0.63014948 1.0124919e-07 0.10281184 0.64286345 1.0321482e-07 0.10281182 0.70399934 \n\t\t1.859745e-07 2.0729899 0.94869149 1.6527e-07 0.49983943 1.1541572 1.6414602e-07 -0.3840881 \n\t\t1.1597571 1.6540524e-07 -0.37351412 1.1597571 1.6540524e-07 -0.37351412 0.63014948 \n\t\t1.012492e-07 0.10281183 -1.8600549 -2.3932489e-07 1.2966642 -1.8600549 -2.3932489e-07 \n\t\t1.2966642 -1.8332486 -2.3555138e-07 1.2866981 0.33675134 8.5104688e-09 -1.1704962 \n\t\t0.3367514 1.721345e-08 -0.93660015 0.60571533 1.7350129e-07 2.146142 0.62986535 1.7689504e-07 \n\t\t2.137006 1.2143312 1.7440468e-07 -0.35840821 -0.88863283 -1.5862659e-07 -0.57084191 \n\t\t-0.88863283 -1.5862659e-07 -0.57084191 -0.84976697 -1.5229278e-07 -0.56210792 -0.68649262 \n\t\t-1.3535214e-07 -0.78523403 -0.63947862 -1.2940002e-07 -0.82061416 -0.32215276 -9.1404381e-08 \n\t\t-1.11797 -0.39661476 -1.0251956e-07 -1.107302 -1.021713 -1.7465034e-07 -0.44853202 \n\t\t-0.97612298 -1.6754231e-07 -0.4469299 0.92311352 1.396207e-07 -0.083218217 0.47299153 \n\t\t9.2664266e-08 0.52508742 0.47299153 9.2664266e-08 0.52508742 -0.26929265 4.3893916e-08 \n\t\t2.2985916 0.38067913 9.5958583e-09 -1.323848 0.37809113 8.7944043e-09 -1.3346342 \n\t\t-1.513575 -2.2281209e-07 0.3008115 -1.513575 -2.2281209e-07 0.3008115 -1.4631549 \n\t\t-2.161371e-07 0.27070731 -1.4631549 -2.161371e-07 0.27070731 -1.8704089 -2.4199514e-07 \n\t\t1.2679223 -1.8704089 -2.4199514e-07 1.2679223 -1.8435649 -2.3820431e-07 1.2582641 \n\t\t0.69856346 1.2331378e-07 0.41154322 0.74071741 1.2983097e-07 0.41154322 0.47516125 \n\t\t3.358841e-08 -1.0716162 0.53874135 4.3913101e-08 -1.0583142 0.42745942 8.437118e-08 \n\t\t0.49139544 0.42745942 8.437118e-08 0.49139544 -0.29539463 -5.0958302e-08 -0.14214613 \n\t\t-0.29539463 -5.0958302e-08 -0.14214613 0.0049633398 -4.5217257e-09 -0.14214619 -1.1712028 \n\t\t-1.8566641e-07 -0.123456 -1.1802588 -1.8602495e-07 -0.095463969 -1.0153326 -1.35977e-07 \n\t\t0.56431919 -1.1978067 -1.3423816e-07 1.3692403 -1.0971047 -1.1216632e-07 1.5440083 \n\t\t-1.3329167 -1.9611143e-07 0.26775923 -1.3485947 -1.9708024e-07 0.30686465 -0.55278671 \n\t\t-1.1643721e-07 -0.8324421 0.80437738 1.3967308e-07 0.41154382 1.8223692 3.2655691e-07 \n\t\t1.2043178 1.8223692 3.2655691e-07 1.2043178;\n\tsetAttr \".pt[8964:9129]\" 1.8237492 3.2685324e-07 1.2065477 -0.3303346 -4.5413504e-08 \n\t\t0.15204991 -0.34152862 -4.7144145e-08 0.15204991 -0.29539466 -5.6395688e-08 -0.28827807 \n\t\t-0.47202861 -7.2078528e-08 0.024161922 -0.4137806 -6.3073145e-08 0.02416192 -1.8673369 \n\t\t-2.5002728e-07 1.0392902 1.389717 2.0975762e-07 -0.13702013 1.389717 2.0975762e-07 \n\t\t-0.13702013 1.366981 2.0619707e-07 -0.13824214 -1.0370448 -1.3878953e-07 0.57894593 \n\t\t-0.99789268 -1.3273646e-07 0.57894593 0.15021449 -3.658695e-08 -1.6074382 -0.61265457 \n\t\t-9.3819878e-08 0.02416195 -0.57999653 -8.8770811e-08 0.024161952 0.53600937 8.8526839e-08 \n\t\t0.15204984 0.58214748 9.5659892e-08 0.15204783 0.48195538 8.0169791e-08 0.15204784 \n\t\t1.7936354 3.2201638e-07 1.2016797 -0.82572269 -1.5352992e-07 -0.6952619 -0.70281667 \n\t\t-1.3816242e-07 -0.792934 1.0729772 1.4685783e-07 -0.51140821 1.0255949 1.3568177e-07 \n\t\t-0.61489409 -0.23538464 4.915589e-08 2.2991199 -0.54658872 -1.2463603e-07 -1.078542 \n\t\t-0.3303346 -4.4494584e-08 0.17674631 -0.34152862 -4.6225221e-08 0.17674632 0.49764335 \n\t\t6.3919039e-08 -0.34988219 1.7937934 3.2163584e-07 1.1907958 1.8226573 3.2626227e-07 \n\t\t1.1952018 1.8226573 3.2626227e-07 1.1952018 0.40296924 2.1867979e-08 -1.0866462 -1.0499047 \n\t\t-1.4664765e-07 0.42118958 -1.0077506 -1.4013047e-07 0.42118958 -0.24584465 4.7374861e-08 \n\t\t2.2947159 -0.93876457 -1.2359502e-07 0.57894593 0.57999945 1.6916405e-07 2.1364279 \n\t\t0.58816946 1.7078111e-07 2.1459401 -1.1552887 -1.9712009e-07 -0.49740198 -1.2768128 \n\t\t-2.0936676e-07 -0.32159787 -1.2768128 -2.0936676e-07 -0.32159787 -0.33568683 -1.0106276e-07 \n\t\t-1.3213083 -0.33568683 -1.0106276e-07 -1.3213083 -1.0651127 -1.4899885e-07 0.42118996 \n\t\t0.26281703 7.7691816e-08 0.99598205 0.0049629728 3.863283e-08 1.0176519 0.94869143 \n\t\t1.6526998e-07 0.4998394 0.87919742 1.5452592e-07 0.4998394 -1.0148731 -1.7769899e-07 \n\t\t-0.55888593 -1.0279852 -1.7916857e-07 -0.54390007 0.48649937 6.5160023e-08 -0.27022621 \n\t\t0.48649937 6.5160023e-08 -0.27022621 0.70689118 1.4436465e-07 0.94269198 0.3892031 \n\t\t1.0453219e-07 1.192188 1.3078513 2.1944919e-07 0.46360096 1.3058432 2.2179019e-07 \n\t\t0.53485978 0.9581154 1.672712e-07 0.51446563 0.87919742 1.5507014e-07 0.51446563 \n\t\t0.37084702 9.3332652e-08 0.96746594 -1.1159667 -1.8590042e-07 -0.35925397 -1.1498827 \n\t\t-1.9314245e-07 -0.41296396 0.58239931 1.6888669e-07 2.1190019 1.8487294 3.2666568e-07 \n\t\t1.0977137 1.8255334 3.2617228e-07 1.1808338 -0.91998059 -1.6436371e-07 -0.59477812 \n\t\t-0.96639073 -1.7002266e-07 -0.55402809 -0.96639073 -1.7002266e-07 -0.55402809 -1.0499047 \n\t\t-1.4664764e-07 0.42118999 -0.87627882 -1.578767e-07 -0.60201991 -0.87627882 -1.578767e-07 \n\t\t-0.60201991 -0.87768883 -1.5865432e-07 -0.61705995 -0.87768883 -1.5865432e-07 -0.61705995 \n\t\t-0.62887257 -1.2791634e-07 -0.82480818 0.64625734 6.1557714e-08 -1.0308422 1.3372133 \n\t\t2.2446173e-07 0.47631475 1.3361293 2.2562553e-07 0.51209617 -1.0257467 -1.6897556e-07 \n\t\t-0.27926007 -0.99459255 -1.6325254e-07 -0.2548981 1.2785853 2.0209791e-07 0.11887977 \n\t\t1.3274813 2.1330284e-07 0.21685179 -0.83651698 -1.5116029e-07 -0.58672595 -0.83651698 \n\t\t-1.5116029e-07 -0.58672595 -0.81987685 -1.4797729e-07 -0.57032192 -0.82582861 -1.5257508e-07 \n\t\t-0.66915995 0.32772514 6.9142031e-10 -1.343132 0.32894912 1.0710116e-09 -1.338016 \n\t\t-0.83983487 -1.5088324e-07 -0.56549394 -0.83983487 -1.5088324e-07 -0.56549394 -0.64469868 \n\t\t-1.3090876e-07 -0.83947212 -0.72268057 -1.4104302e-07 -0.78781599 0.3402614 5.3271169e-08 \n\t\t0.017881852 0.35145536 5.5001806e-08 0.01788185 0.33817309 2.7477187e-09 -1.33128 \n\t\t0.33817309 2.7477187e-09 -1.33128 0.35175911 5.0831095e-09 -1.324966 0.35175911 5.0831095e-09 \n\t\t-1.324966 -0.97901887 -1.7410544e-07 -0.6112839 -0.97134286 -1.7353048e-07 -0.62772602 \n\t\t-0.97134286 -1.7353048e-07 -0.62772602 1.8554354 3.2702124e-07 1.0794058 0.59499145 \n\t\t1.6999293e-07 2.0964117 0.3660731 7.4390591e-09 -1.3211242 0.3660731 7.4390591e-09 \n\t\t-1.3211242 -0.89707857 -1.5962142e-07 -0.56248611 -1.463635 -2.3268633e-07 -0.17206587 \n\t\t-1.4215629 -2.2642665e-07 -0.17864586 0.31433332 8.1929308e-09 -1.0858822 0.28329331 \n\t\t3.1155438e-09 -1.0933663 -0.087702766 -6.0067066e-08 -1.249918 0.0049631754 -4.5839133e-08 \n\t\t-1.252568 0.33606306 6.4173329e-09 -1.2238902 0.32360104 7.2185053e-09 -1.150578 \n\t\t0.32360104 7.2185053e-09 -1.150578 -1.0444367 -1.7230469e-07 -0.29107407 -1.0444367 \n\t\t-1.7230469e-07 -0.29107407 0.56577343 9.6260912e-08 0.23623545 0.56577343 9.6260912e-08 \n\t\t0.23623545 0.56577343 9.6260912e-08 0.23623545 0.004963336 9.5573736e-09 0.23623548 \n\t\t0.68867558 1.2746966e-07 0.56431907 0.73313749 1.3434367e-07 0.56431907 -1.2686588 \n\t\t-1.9171648e-07 0.11888 -1.3175547 -1.9563059e-07 0.21685202 -0.34425884 -1.0240678e-07 \n\t\t-1.3218123 -1.2406088 -2.0438461e-07 -0.33813 -1.2406088 -2.0438461e-07 -0.33813 \n\t\t-1.1221629 -1.9246173e-07 -0.50984597 -1.1281087 -1.8594874e-07 -0.31010208 -1.0692087 \n\t\t-1.7601772e-07 -0.28793409 -1.0692087 -1.7601772e-07 -0.28793409 0.95811343 1.6912588e-07 \n\t\t0.56431943 0.87919748 1.5692515e-07 0.56431943 -1.3568629 -2.1779989e-07 -0.21562989 \n\t\t-1.2970089 -2.0896847e-07 -0.22697796 1.1406232 2.2492155e-07 1.3055139 1.1406232 \n\t\t2.2492155e-07 1.3055139 1.1406232 2.2492155e-07 1.3055139 1.1393354 2.2568719e-07 \n\t\t1.3314418 1.1393354 2.2568719e-07 1.3314418 1.2623173 2.0246891e-07 0.19644478 -1.0077507 \n\t\t-1.4013048e-07 0.42118958 0.80027956 1.447241e-07 0.56431895 -1.2822688 -1.7134018e-07 \n\t\t0.72305202 -1.2706287 -1.6518953e-07 0.83998811 0.34301907 5.887431e-09 -1.2670342 \n\t\t-1.1562927 -1.9405704e-07 -0.41090998 0.30960515 -1.8133059e-09 -1.3351582 0.30960515 \n\t\t-1.8133059e-09 -1.3351582 0.29833716 -2.4033273e-09 -1.3041962 0.67263544 1.231348e-07 \n\t\t0.51446527 0.68867546 1.2561465e-07 0.51446527 -0.40000275 -1.029339e-07 -1.1043602 \n\t\t-0.46880674 -1.1312157e-07 -1.092274 -0.36406064 -5.5107691e-08 0.031647928 -0.41378063 \n\t\t-6.2794605e-08 0.031647924 0.34293908 6.1191612e-09 -1.260474 0.33603308 6.6549273e-09 \n\t\t-1.2173802 0.75227934 1.9412975e-07 2.0915599 0.72089535 1.9064076e-07 2.1281939 \n\t\t0.54836541 9.3569575e-08 0.23623563 -0.32083884 -9.9593905e-08 -1.3435262 -0.32229084 \n\t\t-9.9510444e-08 -1.3352503 0.35842115 6.3268146e-09 -1.319222 0.35163116 5.3261626e-09 \n\t\t-1.3179022 0.35163116 5.3261626e-09 -1.3179022 -0.84153676 -6.8725377e-08 1.6496042;\n\tsetAttr \".pt[9130:9295]\" -0.80536276 -6.2052479e-08 1.6786363 -0.80536276 -6.2052479e-08 \n\t\t1.6786363 0.74311954 1.0663524e-07 -0.22183216 0.74311954 1.0663524e-07 -0.22183216 \n\t\t0.75710142 1.0918186e-07 -0.21148616 0.75710142 1.0918186e-07 -0.21148616 -1.7116206 \n\t\t-2.0988931e-07 1.4710063 -1.6969266 -2.0717947e-07 1.4827802 -1.2102528 -1.8875066e-07 \n\t\t-0.044091977 1.0669193 1.5489535e-07 -0.27022621 0.83331347 1.1877891e-07 -0.27022621 \n\t\t0.36443517 7.0719777e-09 -1.3241839 -0.75650281 -5.4565508e-08 1.6768363 -1.0651268 \n\t\t-1.7587473e-07 -0.30105206 -1.0651268 -1.7587473e-07 -0.30105206 0.67263544 1.249898e-07 \n\t\t0.56431907 -0.52608258 -7.5676937e-08 0.15204993 -0.57222253 -8.2810452e-08 0.15204793 \n\t\t0.73158348 1.9109559e-07 2.0960081 0.70814943 1.8849026e-07 2.123358 -0.22824265 \n\t\t5.0082949e-08 2.2943597 -0.23495264 4.8874707e-08 2.289768 0.3402614 5.4017054e-08 \n\t\t0.037927847 0.35145536 5.5747691e-08 0.037927844 0.57355946 1.0860098e-07 0.53552824 \n\t\t0.57355946 1.0860098e-07 0.53552824 0.57355946 1.0860098e-07 0.53552824 0.0049633314 \n\t\t2.0693678e-08 0.5355283 0.95066732 1.3395841e-07 -0.34988219 0.95066732 1.3395841e-07 \n\t\t-0.34988219 1.0853014 1.5477337e-07 -0.34988219 0.37552315 8.4007405e-09 -1.3345439 \n\t\t-0.60252857 -8.7495813e-08 0.15204994 -0.24430065 4.728301e-08 2.2858319 -0.32382685 \n\t\t-9.9752015e-08 -1.3353602 -0.32472283 -9.9612066e-08 -1.3278762 -1.1014307 -1.8095584e-07 \n\t\t-0.28676403 -1.1246746 -1.8502236e-07 -0.29947406 0.94869143 1.6265248e-07 0.4294928 \n\t\t1.0078193 1.7179386e-07 0.429492 -1.4317009 -2.296528e-07 -0.22322594 -1.448875 -2.3138482e-07 \n\t\t-0.19841589 1.0474713 1.7073339e-07 0.23623559 1.0474713 1.7073339e-07 0.23623559 \n\t\t1.0474713 1.7073339e-07 0.23623559 0.92940146 1.4072545e-07 -0.07965418 0.92940146 \n\t\t1.4072545e-07 -0.07965418 0.34482315 4.2206412e-09 -1.3193259 0.34482315 4.2206412e-09 \n\t\t-1.3193259 0.64117146 1.8052189e-07 2.1875019 0.60497934 1.7543606e-07 2.2011976 \n\t\t0.58708537 5.8824039e-08 -0.85844821 0.63879937 6.8070946e-08 -0.82480818 -0.19047956 \n\t\t-7.556244e-08 -1.23932 1.0078193 1.744114e-07 0.4998394 1.0469713 1.8046448e-07 0.49983981 \n\t\t-0.17628194 -7.9008267e-08 -1.3909199 -0.12778953 -7.18153e-08 -1.3990942 -0.33140263 \n\t\t-5.0058627e-08 0.031647898 -1.0243449 -1.7644616e-07 -0.48586002 -0.96837294 -1.6763974e-07 \n\t\t-0.48175004 -1.2929609 -2.0737967e-07 -0.20109797 -1.2929609 -2.0737967e-07 -0.20109797 \n\t\t-1.2864869 -2.0648912e-07 -0.20406403 -1.2864869 -2.0648912e-07 -0.20406403 0.66210544 \n\t\t1.7937749e-07 2.0697637 0.69255948 1.8337215e-07 2.0505838 -1.1356705 -1.8698293e-07 \n\t\t-0.30647606 0.81189513 1.4879564e-07 0.62547988 0.87260103 1.5413282e-07 0.51668292 \n\t\t-0.47202864 -6.9152065e-08 0.10281194 -0.41064462 -5.9661843e-08 0.10281194 -0.61936468 \n\t\t-1.3629665e-07 -1.0895382 -0.61791468 -1.3668648e-07 -1.10604 -0.61791468 -1.3668648e-07 \n\t\t-1.10604 0.73313546 1.3434337e-07 0.56431943 0.68867558 1.2746966e-07 0.56431907 \n\t\t0.38609514 1.0521304e-08 -1.32148 0.38351113 9.7044772e-09 -1.332696 1.0610952 1.8264809e-07 \n\t\t0.49983981 -1.0538568 -1.1259603e-07 1.3527622 -1.0887108 -1.2072486e-07 1.2791163 \n\t\t-1.472435 -2.0371847e-07 0.64302212 -1.472435 -2.0371847e-07 0.64302212 -1.4884269 \n\t\t-2.0573634e-07 0.65523809 -1.4884269 -2.0573634e-07 0.65523809 0.63303536 1.7581723e-07 \n\t\t2.0948677 1.444139 2.260726e-07 0.075325862 1.4706891 2.3058962e-07 0.086405843 -0.9288947 \n\t\t-1.7219989e-07 -0.76833999 -0.88784081 -1.6794482e-07 -0.82456398 0.33800316 2.8216121e-09 \n\t\t-1.328588 0.33800316 2.8216121e-09 -1.328588 0.33221716 1.6791781e-09 -1.3352503 \n\t\t0.33875117 3.16036e-09 -1.322592 0.33875117 3.16036e-09 -1.322592 0.66797113 1.3322656e-07 \n\t\t0.80506605 -0.63293654 -9.261263e-08 0.14087994 -0.62022257 -9.0646992e-08 0.14087994 \n\t\t-1.4586929 -1.968957e-07 0.76928806 -1.3697747 -1.7316711e-07 1.0375441 0.41798133 \n\t\t2.8597695e-08 -0.96815819 0.56914532 1.0160584e-07 0.36587211 0.56914532 1.0160584e-07 \n\t\t0.36587211 0.42790136 7.1812892e-08 0.15204984 0.33464915 2.3295523e-09 -1.3278762 \n\t\t-0.56977665 -1.2103398e-07 -0.8853882 -1.4111089 -1.9881722e-07 0.51993191 -1.4155208 \n\t\t-1.9735461e-07 0.57757211 0.0049631582 -4.5847987e-08 -1.2528059 0.10197241 -3.0774874e-08 \n\t\t-1.250788 -0.7725327 -1.4584518e-07 -0.70973808 -0.7725327 -1.4584518e-07 -0.70973808 \n\t\t-0.7725327 -1.4584518e-07 -0.70973808 -0.69445872 -1.3438373e-07 -0.72610801 0.21286722 \n\t\t-1.3355107e-08 -1.243398 0.21286722 -1.3355107e-08 -1.243398 0.22873336 1.2110429e-07 \n\t\t2.3043299 0.22410336 1.2064382e-07 2.311192 -1.379599 -2.2116762e-07 -0.21166988 \n\t\t-1.379599 -2.2116762e-07 -0.21166988 -0.47202864 -6.7735606e-08 0.14087993 -0.41064462 \n\t\t-5.8245384e-08 0.14087993 0.59719336 5.4396331e-08 -1.0194442 0.53519535 4.4574762e-08 \n\t\t-1.0257982 0.98921514 1.2743251e-07 -0.68543625 0.34646916 4.3001629e-09 -1.324028 \n\t\t0.34646916 4.3001629e-09 -1.324028 -0.2109728 -7.937949e-08 -1.2567543 -0.21961884 \n\t\t-8.0907974e-08 -1.2619082 -0.21961884 -8.0907974e-08 -1.2619082 1.0469713 1.7784696e-07 \n\t\t0.42949277 -1.6352966 -1.980093e-07 1.473156 -1.439201 -1.9424361e-07 0.759574 -1.0735106 \n\t\t-1.7601575e-07 -0.27000606 -1.1094846 -1.8230362e-07 -0.28952205 0.59892136 5.4522463e-08 \n\t\t-1.0232342 0.57780135 5.121451e-08 -1.0243822 -0.55411464 -1.1506627e-07 -0.79008001 \n\t\t-0.4863407 -1.0655239e-07 -0.84286994 -1.3349468 -1.9689348e-07 0.25517622 0.69641942 \n\t\t7.8451741e-08 -0.78523415 0.74698538 8.7752888e-08 -0.74536616 0.74698538 8.7752888e-08 \n\t\t-0.74536616 0.74698538 8.7752888e-08 -0.74536616 0.54842329 5.3673141e-08 -0.83623821 \n\t\t0.59551144 1.7197411e-07 2.147496 0.60960132 1.7321189e-07 2.1222177 0.43615133 5.7376013e-08 \n\t\t-0.27022621 0.65778518 1.312293e-07 0.79371196 0.366027 9.2010872e-08 0.9519701 -0.58580655 \n\t\t-8.5326135e-08 0.14087993 -0.53341252 -7.7225806e-08 0.14087991 -1.7909608 -2.4503336e-07 \n\t\t0.85615814 -1.7909608 -2.4503336e-07 0.85615814 -1.7909608 -2.4503336e-07 0.85615814 \n\t\t-1.1768348 -1.970588e-07 -0.40622997 -1.057717 -1.8411089e-07 -0.55318999 -1.057717 \n\t\t-1.8411089e-07 -0.55318999 -1.3808708 -1.9985455e-07 0.36641234 -1.1183248 -1.9288011e-07 \n\t\t-0.53703797 -1.0677426 -1.7509532e-07 -0.26923603 -1.1896389 -1.9835252e-07 -0.38779801 \n\t\t-1.1956749 -1.9886683e-07 -0.37654001 0.35647112 6.2953167e-09 -1.3119659 0.34978706 \n\t\t7.6511721e-09 -1.2477542;\n\tsetAttr \".pt[9296:9461]\" 0.34296706 8.2075458e-09 -1.204464 0.34296706 8.2075458e-09 \n\t\t-1.204464 0.34296706 8.2075458e-09 -1.204464 -0.98652881 -1.738522e-07 -0.5732739 \n\t\t-0.98652881 -1.738522e-07 -0.5732739 0.33494911 2.2623667e-09 -1.3309282 0.35126111 \n\t\t5.0683311e-09 -1.3232939 0.2668013 -9.3412353e-09 -1.3596222 0.26728728 -9.412922e-09 \n\t\t-1.3635682 -1.3106508 -2.0641151e-07 -0.10157597 -1.2931188 -2.0764699e-07 -0.20762599 \n\t\t-1.2931188 -2.0764699e-07 -0.20762599 -1.2931188 -2.0764699e-07 -0.20762599 0.56271327 \n\t\t5.6023676e-08 -0.8324421 0.64940542 6.9866744e-08 -0.82061416 -0.8425988 -1.6304455e-07 \n\t\t-0.88084996 1.0610952 1.8003057e-07 0.42949277 -0.36406261 -5.5107996e-08 0.031647906 \n\t\t-0.3314046 -5.0058933e-08 0.031647902 -1.3364128 -1.9876938e-07 0.21085186 -1.3364128 \n\t\t-1.9876938e-07 0.21085186 -1.3364128 -1.9876938e-07 0.21085186 -1.3322968 -2.019726e-07 \n\t\t0.10766205 -0.74065059 -9.9503545e-08 0.40324074 -0.70149857 -9.3450488e-08 0.40324074 \n\t\t-1.0990487 -1.1237356e-07 1.5465163 -0.98033279 -8.7854247e-08 1.7122122 0.62207747 \n\t\t6.5270079e-08 -0.83060211 0.44434527 3.3775567e-08 -0.93854421 0.44434527 3.3775567e-08 \n\t\t-0.93854421 -1.2735568 -1.8880287e-07 0.21753643 0.76113939 1.0960314e-07 -0.21694227 \n\t\t0.75710142 1.0918186e-07 -0.21148622 0.75710142 1.0918186e-07 -0.21148622 0.33386511 \n\t\t1.8840345e-09 -1.336592 0.3529771 5.1742175e-09 -1.3275782 0.34964916 4.9250004e-09 \n\t\t-1.3204483 0.34964916 4.9250004e-09 -1.3204483 0.34561315 4.2690185e-09 -1.3213083 \n\t\t0.34561315 4.2690185e-09 -1.3213083 -1.0370448 -1.4173297e-07 0.49983993 -0.99789268 \n\t\t-1.3567991e-07 0.49983957 0.7114256 1.3153115e-07 0.57894582 0.69729948 1.293472e-07 \n\t\t0.57894582 -1.3921088 -1.9951251e-07 0.42229924 0.32688719 2.334412e-09 -1.2954942 \n\t\t1.4856731 2.3245688e-07 0.074329831 1.4984051 2.3457936e-07 0.078469828 -1.1343769 \n\t\t-1.8900687e-07 -0.36624599 -1.1129029 -1.8745037e-07 -0.41363996 1.0697193 1.863806e-07 \n\t\t0.56431895 1.0252594 1.795069e-07 0.56431895 0.20669521 -1.1386589e-08 -1.1648482 \n\t\t-0.70149857 -9.2473691e-08 0.42949256 -0.74065059 -9.8526769e-08 0.42949215 0.34678712 \n\t\t3.8963326e-09 -1.3362023 0.3038134 6.8268157e-08 0.57237524 0.25940934 6.1403306e-08 \n\t\t0.57238066 -1.0849448 -1.851169e-07 -0.467094 -1.0849448 -1.851169e-07 -0.467094 \n\t\t0.37319711 8.4975937e-09 -1.3222762 -1.0511687 -1.4391658e-07 0.49983993 1.0469713 \n\t\t1.8340792e-07 0.57894582 1.0078194 1.7735485e-07 0.57894582 0.3684791 7.9003346e-09 \n\t\t-1.3187243 0.48195541 7.5177645e-08 0.017881826 0.42790139 6.6820675e-08 0.017881826 \n\t\t0.62258148 9.7152686e-08 0.024161823 0.63464344 9.9017512e-08 0.024161827 1.0857593 \n\t\t1.8886045e-07 0.56431943 -1.4022329 -1.9942051e-07 0.46683806 0.67907935 1.8492999e-07 \n\t\t2.1484621 0.64862531 1.8093532e-07 2.1676416 -1.0679628 -1.7464535e-07 -0.25622806 \n\t\t-1.0679628 -1.7464535e-07 -0.25622806 -1.0643407 -1.7458768e-07 -0.26972809 -1.0643407 \n\t\t-1.7458768e-07 -0.26972809 0.94869149 1.6821345e-07 0.57894582 1.0871295 2.0041337e-07 \n\t\t0.86911577 -1.1996269 -1.3443019e-07 1.3716422 0.46073329 3.2665749e-08 -1.0364642 \n\t\t1.068231 1.4844372e-07 -0.44906613 1.068231 1.4844372e-07 -0.44906613 1.095495 1.5286572e-07 \n\t\t-0.44350615 0.62258148 9.7431226e-08 0.031647809 0.63464344 9.9296059e-08 0.031647813 \n\t\t0.38877311 1.0939942e-08 -1.3213562 0.39395314 1.1587201e-08 -1.325484 -1.1278129 \n\t\t-1.9005095e-07 -0.42157996 -1.1498308 -1.9166654e-07 -0.373514 -1.1498308 -1.9166654e-07 \n\t\t-0.373514 -0.31902286 -9.9108121e-08 -1.338016 -0.31779888 -9.9109243e-08 -1.343132 \n\t\t0.20798936 5.3453938e-08 0.57239062 0.38171914 9.9781889e-09 -1.317894 -0.79751879 \n\t\t-1.573831e-07 -0.91600597 -0.82131076 -1.6109954e-07 -0.91702998 -0.82131076 -1.6109954e-07 \n\t\t-0.91702998 -1.6371869 -1.9882039e-07 1.4592121 -1.1287707 -1.8488711e-07 -0.27882007 \n\t\t0.23879136 1.2240308e-07 2.2974439 1.4121592 2.3569606e-07 0.46683782 1.4181472 2.3888362e-07 \n\t\t0.52762461 -1.2199447 -1.8975517e-07 -0.030817995 0.45734531 3.2032411e-08 -1.0394082 \n\t\t0.38854131 2.0945324e-08 -1.0514942 1.2312351 1.7952009e-07 -0.29116619 1.2701012 \n\t\t1.8578241e-07 -0.28435415 -1.7418388 -2.2381178e-07 1.2223921 -1.7418388 -2.2381178e-07 \n\t\t1.2223921 -1.7319326 -2.2126548e-07 1.2496641 -1.7319326 -2.2126548e-07 1.2496641 \n\t\t-1.1473806 -1.8793516e-07 -0.28341204 -1.1445506 -1.8751943e-07 -0.2839981 -0.63293654 \n\t\t-9.402909e-08 0.10281194 -0.62022257 -9.2063459e-08 0.10281195 -1.4793429 -2.0616244e-07 \n\t\t0.60604209 -1.4388529 -1.9442622e-07 0.75322008 0.58992344 9.2103612e-08 0.024161821 \n\t\t1.1740052 1.7061784e-07 -0.29262418 1.2645373 2.0304323e-07 0.20265558 1.012857 1.3148421e-07 \n\t\t-0.67477822 1.0548211 1.4114535e-07 -0.58949423 -0.55615652 -7.8215805e-08 0.20877573 \n\t\t-0.58160454 -8.2150173e-08 0.20877574 -0.50440872 -1.1665723e-07 -1.0393683 -0.50440872 \n\t\t-1.1665723e-07 -1.0393683 -0.31880677 -9.4781413e-08 -1.2226319 1.0899453 1.5866824e-07 \n\t\t-0.2645022 1.0899453 1.5866824e-07 -0.2645022 -0.36652088 -1.0742809e-07 -1.3642622 \n\t\t0.79929316 1.4654117e-07 0.61725193 0.85903502 1.5179118e-07 0.51011771 -0.52713662 \n\t\t2.3406261e-09 2.2531843 -0.99789268 -1.3829742e-07 0.42949292 -0.93876457 -1.2915598e-07 \n\t\t0.42949295 -0.36491683 -1.068569e-07 -1.355576 -0.37210694 -1.0790988e-07 -1.3540002 \n\t\t-0.36278886 -1.0595839e-07 -1.34027 -0.36278886 -1.0595839e-07 -1.34027 -0.36993688 \n\t\t-1.0695686e-07 -1.337404 -0.24943466 4.7209191e-08 2.3051801 -0.25994265 4.5485859e-08 \n\t\t2.302526 -1.486825 -2.0485956e-07 0.67214608 -1.495453 -2.0498925e-07 0.70451021 \n\t\t-1.495453 -2.0498925e-07 0.70451021 -0.37374288 -1.0772791e-07 -1.3423122 -1.058207 \n\t\t-1.8303332e-07 -0.52219397 -1.0253888 -1.8047585e-07 -0.58982199 -0.23930266 4.881225e-08 \n\t\t2.306164 -0.33524492 -1.0207304e-07 -1.350296 -0.33524492 -1.0207304e-07 -1.350296 \n\t\t1.3448733 2.1741771e-07 0.25517601 -0.51822066 -1.2462544e-07 -1.1961282 -0.50854868 \n\t\t-1.2311374e-07 -1.195688 0.41743734 1.3906066e-07 2.00284 0.20990936 1.1060114e-07 \n\t\t2.1002679 -0.41064459 -5.8245377e-08 0.14087991 -0.35824859 -5.0144742e-08 0.14087991 \n\t\t-0.51040679 1.1314673e-09 2.1511743 0.2124473 -1.8678001e-08 -1.3847082 0.21256927 \n\t\t-1.8651409e-08 -1.3845003 0.21256927 -1.8651409e-08 -1.3845003 1.480903 2.3081994e-07 \n\t\t0.050155833 1.522817 2.3834215e-07 0.078163818 1.522817 2.3834215e-07 0.078163818;\n\tsetAttr \".pt[9462:9627]\" 1.3907971 2.2865669e-07 0.3664121 -0.71318078 -1.4574039e-07 \n\t\t-0.95353198 -0.34884891 -1.0396492e-07 -1.3446159 -0.34884891 -1.0396492e-07 -1.3446159 \n\t\t0.26049533 1.2661813e-07 2.320544 0.27624533 1.2890513e-07 2.316566 1.4020351 2.3247361e-07 \n\t\t0.42229897 1.4210352 2.3904389e-07 0.51993167 -0.79977655 -1.0766788e-07 0.42949218 \n\t\t-0.74065053 -9.8526733e-08 0.42949292 -0.86927056 -1.1579441e-07 0.49983954 -0.79977655 \n\t\t-1.0505033e-07 0.49983996 0.87919748 1.5746939e-07 0.57894582 0.73313737 1.3248867e-07 \n\t\t0.51446563 0.61036533 5.55466e-08 -1.0432602 0.80028152 1.4472442e-07 0.56431943 \n\t\t-0.70149857 -9.2473705e-08 0.42949215 0.57868147 1.7135899e-07 2.2008939 0.7598812 \n\t\t8.174959e-08 -0.96028996 0.93429321 1.1733149e-07 -0.72870219 -0.37179288 -1.0651787e-07 \n\t\t-1.317894 -0.37617087 -1.0732816e-07 -1.32148 -0.25652671 -8.9961226e-08 -1.3518642 \n\t\t-0.25652671 -8.9961226e-08 -1.3518642 -0.25652671 -8.9961226e-08 -1.3518642 -0.29570866 \n\t\t-8.9973689e-08 -1.1893963 0.24531136 1.2432555e-07 2.3220201 -0.34519854 -3.8647332e-08 \n\t\t0.3956539 -0.34519854 -3.8647332e-08 0.3956539 -0.32501253 -3.4511441e-08 0.42293388 \n\t\t-0.32501253 -3.4511441e-08 0.42293388 -1.0754669 -1.8437848e-07 -0.48662996 -0.34183291 \n\t\t-1.0214907e-07 -1.324966 -0.34183291 -1.0214907e-07 -1.324966 1.8196394 3.1829262e-07 \n\t\t0.99355376 1.8121533 3.1758671e-07 1.0056877 1.1443032 1.6328642e-07 -0.36624622 \n\t\t1.1228292 1.5820299e-07 -0.41364008 0.62111735 5.8143524e-08 -1.0181422 -0.86927056 \n\t\t-1.1907981e-07 0.41154295 -0.94409257 -1.3064758e-07 0.41154337 0.20697729 -1.9579279e-08 \n\t\t-1.3862022 -0.53341258 -7.7225806e-08 0.14087993 -0.76852077 -1.533426e-07 -0.92790401 \n\t\t-0.76852077 -1.533426e-07 -0.92790401 0.8799395 1.3157363e-07 -0.12009624 0.89205152 \n\t\t1.3283717e-07 -0.13646424 0.89205152 1.3283717e-07 -0.13646424 1.4254471 2.4187068e-07 \n\t\t0.57757187 -0.9668805 -1.1052884e-07 1.0469279 -1.062095 -1.5677952e-07 0.19954291 \n\t\t-1.029399 -1.5448245e-07 0.1254241 -1.029399 -1.5448245e-07 0.1254241 0.71958148 \n\t\t1.8716945e-07 2.04036 -0.20316067 -8.2782449e-08 -1.3806701 -1.3109267 -1.8495575e-07 \n\t\t0.47620279 -1.3147507 -1.8666493e-07 0.44615659 -1.3147507 -1.8666493e-07 0.44615659 \n\t\t-0.37358686 -1.0734598e-07 -1.332696 0.62540936 5.8572891e-08 -1.0244362 0.23706704 \n\t\t-7.0815158e-09 -1.175344 0.0049629835 -4.3915108e-08 -1.2008582 -1.0553727 -1.7313637e-07 \n\t\t-0.26798609 -1.0553727 -1.7313637e-07 -0.26798609 -0.36559683 -1.0617946e-07 -1.3345439 \n\t\t-0.35450885 -1.0407972e-07 -1.3241839 -0.60271072 -1.3066146e-07 -1.007288 -0.73873878 \n\t\t-1.4938099e-07 -0.94517994 -1.0370368 -1.6987143e-07 -0.25642607 1.3047051 1.9481561e-07 \n\t\t-0.18536419 1.3028872 1.9394911e-07 -0.20109814 1.3028872 1.9394911e-07 -0.20109814 \n\t\t1.8734534 3.276383e-07 1.0211238 -0.35443285 -1.0482034e-07 -1.344404 -1.0758327 \n\t\t-1.4718555e-07 0.51446575 -1.0597928 -1.4470571e-07 0.51446539 -0.35222489 -1.0469026e-07 \n\t\t-1.3500823 -0.36165085 -1.0669555e-07 -1.36481 -1.0153327 -1.35977e-07 0.56431919 \n\t\t-1.0597928 -1.4285071e-07 0.56431919 0.096795574 -1.8046817e-08 -0.88720614 0.096795574 \n\t\t-1.8046817e-08 -0.88720614 0.096795551 -1.8046745e-08 -0.88720411 0.096795551 -1.8046745e-08 \n\t\t-0.88720411 0.62996536 5.9191091e-08 -1.0267522 -1.2943147 -1.7208606e-07 0.75305802 \n\t\t-1.2943147 -1.7208606e-07 0.75305802 -1.3414308 -1.7995283e-07 0.73740411 -1.3414308 \n\t\t-1.7995283e-07 0.73740411 -0.94818854 -1.2559623e-07 0.56431955 -0.86927056 -1.1339519e-07 \n\t\t0.56431955 -0.34152859 -5.2136361e-08 0.017881913 -0.3303346 -5.0405724e-08 0.017881911 \n\t\t0.7655955 1.1074728e-07 -0.20470816 0.31311542 6.3544867e-08 0.40678465 0.31311542 \n\t\t6.3544867e-08 0.40678465 0.25538942 6.4724421e-09 -0.88720614 0.25538942 6.4724421e-09 \n\t\t-0.88720614 -0.33489683 -1.0086686e-07 -1.3193259 -0.33489683 -1.0086686e-07 -1.3193259 \n\t\t-0.32882485 -1.0004963e-07 -1.322592 -0.32882485 -1.0004963e-07 -1.322592 1.2012931 \n\t\t1.7245168e-07 -0.35672224 1.2083791 1.7402087e-07 -0.34399223 0.30532134 6.6163475e-09 \n\t\t-1.0908083 0.29877537 5.6043179e-09 -1.0908082 0.29877537 5.6043179e-09 -1.0908082 \n\t\t-1.4082209 -1.9808449e-07 0.52762485 0.45120725 2.2871774e-08 -1.2601002 0.48634526 \n\t\t2.8533981e-08 -1.2539263 -0.58657473 -7.0760542e-08 0.53552818 -0.58657473 -7.0760542e-08 \n\t\t0.53552818 -1.1294086 -1.2506996e-07 1.3314418 -1.1294086 -1.2506996e-07 1.3314418 \n\t\t-0.33654284 -1.012963e-07 -1.324028 -0.33654284 -1.012963e-07 -1.324028 0.0049632681 \n\t\t2.0693664e-08 0.53552818 0.59573346 9.7344802e-08 0.14087982 0.54333943 8.9244466e-08 \n\t\t0.14087982 -1.533361 -2.2507201e-07 0.32228711 -1.533361 -2.2507201e-07 0.32228711 \n\t\t-1.490317 -2.1929219e-07 0.29877248 -1.490317 -2.1929219e-07 0.29877248 1.3422232 \n\t\t2.1151918e-07 0.10766183 1.3205771 2.0038713e-07 -0.10157615 -0.34170485 -1.0186643e-07 \n\t\t-1.3179022 -0.34170485 -1.0186643e-07 -1.3179022 -0.98440099 -1.482108e-07 0.10700808 \n\t\t0.97054529 1.3045118e-07 -0.52673417 1.0164913 1.3968766e-07 -0.46940818 1.0164913 \n\t\t1.3968766e-07 -0.46940818 1.1373334 2.2730813e-07 1.3833238 1.1373334 2.2730813e-07 \n\t\t1.3833238 0.59545141 1.4655772e-07 1.4646698 -0.39570853 -4.3494836e-08 0.47524691 \n\t\t-0.39570853 -4.3494836e-08 0.47524691 -0.41589454 -4.7630728e-08 0.4479669 -0.41589454 \n\t\t-4.7630728e-08 0.4479669 1.099075 1.8529639e-07 0.41320628 1.099075 1.8529639e-07 \n\t\t0.41320628 -0.72839653 -8.8300396e-08 0.65341395 -0.71653652 -8.6466791e-08 0.65341395 \n\t\t1.3020271 2.5277046e-07 1.3833238 -1.1442869 -1.3516244e-07 1.1220222 -1.1097971 \n\t\t-1.2592906e-07 1.2268662 -0.36020285 -1.0542032e-07 -1.3365542 -0.36816487 -1.0657984e-07 \n\t\t-1.3346342 1.0969849 1.774644e-07 0.21140271 -0.58552462 -3.6026016e-08 1.4646698 \n\t\t-0.58552462 -3.6026016e-08 1.4646698 0.45331928 2.3247635e-08 -1.2587743 0.42499727 \n\t\t1.8718019e-08 -1.2628303 -0.34936485 -1.0337307e-07 -1.326566 -0.37283072 -1.0455808e-07 \n\t\t-1.2609119 -0.36901671 -1.0409173e-07 -1.264226 0.38969129 1.3075686e-08 -1.2677722 \n\t\t0.37073126 1.0123031e-08 -1.2683462 -1.1262509 -1.2061649e-07 1.43801 -0.34849483 \n\t\t-1.029653e-07 -1.319222 0.51881534 3.3806707e-08 -1.2471342 -0.37075287 -1.0657862e-07 \n\t\t-1.323848 0.71142548 1.2499336e-07 0.40324059 0.69729948 1.2280944e-07 0.40324059 \n\t\t-0.52608258 -8.066916e-08 0.017881935 -0.47202864 -7.2312204e-08 0.017881935 0.41763929 \n\t\t1.7503201e-08 -1.2649062;\n\tsetAttr \".pt[9628:9793]\" 1.0826169 1.7866495e-07 0.30336729 -0.76649284 -5.7859179e-08 \n\t\t1.6298263 -0.77872479 -5.7888226e-08 1.6798702 -0.77872479 -5.7888226e-08 1.6798702 \n\t\t-0.19676878 -7.3763779e-08 -1.1648482 -0.20294078 -7.7640735e-08 -1.243398 -0.20294078 \n\t\t-7.7640735e-08 -1.243398 1.4896171 2.5022482e-07 0.53546262 1.3282392 2.2308973e-07 \n\t\t0.47672924 1.3587713 2.2639954e-07 0.4388192 -1.1087189 -1.8759047e-07 -0.43478996 \n\t\t-1.0920268 -1.8484343e-07 -0.430318 0.80970341 1.4018755e-07 0.40324059 0.75057739 \n\t\t1.3104642e-07 0.40324062 0.30505323 1.8563096e-09 -1.2176223 0.20040603 -1.5129924e-08 \n\t\t-1.23932 0.48296529 2.8024814e-08 -1.2535663 0.51035935 3.2473256e-08 -1.2478362 \n\t\t-0.3718366 -5.6822103e-08 0.017881915 -0.32501256 -3.4511459e-08 0.42293349 -0.32501256 \n\t\t-3.4511459e-08 0.42293349 1.0316391 1.4280634e-07 -0.44853213 0.98604906 1.3581754e-07 \n\t\t-0.44693014 1.3081012 2.0000977e-07 -0.059880216 1.2293173 1.861482e-07 -0.1050642 \n\t\t-0.9481886 -1.2559624e-07 0.56431955 1.3727231 2.1354508e-07 0.035379801 -1.5120029 \n\t\t-2.1940278e-07 0.38590661 -1.520733 -2.2037518e-07 0.39604631 -1.520733 -2.2037518e-07 \n\t\t0.39604631 0.61245549 1.0034572e-07 0.15204984 0.62364948 1.0207635e-07 0.15204982 \n\t\t-0.49368271 -1.2230166e-07 -1.2356319 -0.46536273 -1.1807421e-07 -1.2396883 0.36757329 \n\t\t9.8473301e-09 -1.2626343 0.38375127 1.2556811e-08 -1.2570362 -0.29218286 -9.6155027e-08 \n\t\t-1.370172 -0.28364894 -9.4433496e-08 -1.359364 0.22951727 -1.5793933e-08 -1.3781242 \n\t\t0.26001722 -1.0675101e-08 -1.3672823 0.98186505 1.3459416e-07 -0.46242413 1.0379111 \n\t\t1.4309963e-07 -0.46671012 0.54333937 8.7827999e-08 0.10281185 0.59573346 9.5928335e-08 \n\t\t0.10281185 1.0469713 1.7687015e-07 0.40324059 1.0610952 1.7905376e-07 0.40324059 \n\t\t-0.79037476 -5.9563071e-08 1.6832643 -0.79037476 -5.9563071e-08 1.6832643 0.48195538 \n\t\t7.8337777e-08 0.10281185 0.58214748 9.3412339e-08 0.091643848 0.53600937 8.6279208e-08 \n\t\t0.091643848 1.2118613 1.8329649e-07 -0.1091742 1.2118613 1.8329649e-07 -0.1091742 \n\t\t1.2390813 1.8927388e-07 -0.061630197 0.30532137 4.1914859e-08 -0.14214619 0.30532137 \n\t\t4.1914859e-08 -0.14214619 0.30532137 4.1914859e-08 -0.14214619 0.98719758 1.769375e-07 \n\t\t0.65341383 0.93754947 1.692617e-07 0.65341383 0.36305127 9.0020515e-09 -1.2665622 \n\t\t0.99432707 1.5770868e-07 0.1070079 1.0393249 1.6535077e-07 0.12542391 1.0393249 1.6535077e-07 \n\t\t0.12542391 1.1901853 1.8045543e-07 -0.095464207 1.2201793 1.8700412e-07 -0.044092186 \n\t\t-0.2967369 -9.674271e-08 -1.367044 0.70439333 7.7460875e-08 -0.84499615 0.67784548 \n\t\t7.4685268e-08 -0.80928415 -0.79977661 -1.0090343e-07 0.61129004 -0.74065059 -9.1762296e-08 \n\t\t0.61129004 -0.99789274 -1.3567993e-07 0.49983957 -1.0370448 -1.4173297e-07 0.49983993 \n\t\t0.87919748 1.6024023e-07 0.65341383 1.3463391 2.1599507e-07 0.21085162 1.3463391 \n\t\t2.1599507e-07 0.21085162 1.3463391 2.1599507e-07 0.21085162 -0.57056069 -4.4843897e-09 \n\t\t2.2501884 -0.57056069 -4.4843897e-09 2.2501884 -0.55407071 -2.2699309e-09 2.2411861 \n\t\t-0.55407071 -2.2699309e-09 2.2411861 -1.1274066 -1.2282997e-07 1.3833238 -1.0726911 \n\t\t-1.5455453e-07 0.3033675 -1.0891491 -1.5301204e-07 0.41320649 -1.0891491 -1.5301204e-07 \n\t\t0.41320649 0.59484541 1.6311085e-07 1.91206 1.0078194 1.7081709e-07 0.40324059 -1.2921026 \n\t\t-1.4829266e-07 1.3833238 0.45520738 5.3271631e-08 -0.45971215 0.7462675 1.0628443e-07 \n\t\t-0.24434018 0.7462675 1.0628443e-07 -0.24434018 -1.0736169 -1.8481066e-07 -0.50593197 \n\t\t-1.0594488 -1.8247898e-07 -0.50213599 0.075531244 -4.0427956e-08 -1.4003543 0.0049631889 \n\t\t-5.1422226e-08 -1.402616 1.2298713 1.8899644e-07 -0.030818203 -1.0936469 -1.8783662e-07 \n\t\t-0.50402999 -1.0754051 -1.8483449e-07 -0.49914199 -0.21959074 -8.5227867e-08 -1.378124 \n\t\t-0.25009078 -8.9539895e-08 -1.3672823 -0.93876463 -1.2653847e-07 0.49983957 -0.70149845 \n\t\t-8.5709225e-08 0.61128998 -1.084031 -1.8512087e-07 -0.4709979 -1.084031 -1.8512087e-07 \n\t\t-0.4709979 -1.0982909 -1.8576722e-07 -0.42911789 -1.0982909 -1.8576722e-07 -0.42911789 \n\t\t-1.0982909 -1.8576722e-07 -0.42911789 0.36817735 6.0747233e-08 0.10281185 0.33376136 \n\t\t5.5426376e-08 0.10281185 -1.0370448 -1.4435049e-07 0.42949298 -1.0511687 -1.4653411e-07 \n\t\t0.42949295 0.67378551 7.3577205e-08 -0.82219416 0.64141351 7.0186921e-08 -0.77880222 \n\t\t-0.14841513 -7.4731133e-08 -1.391758 0.35145536 5.7746394e-08 0.091643848 0.3402614 \n\t\t5.6015761e-08 0.091643848 -0.7801007 -4.2645404e-08 2.0952444 0.95006913 1.5351206e-07 \n\t\t0.17811613 -0.86927062 -1.1579441e-07 0.49983957 -0.57999653 -8.8770818e-08 0.024161942 \n\t\t-0.61265457 -9.3819878e-08 0.024161944 -0.68737257 -8.3525308e-08 0.61128998 -0.70149845 \n\t\t-8.5709225e-08 0.61128998 -1.0877831 -1.8714206e-07 -0.50972795 -0.68737257 -8.4728782e-08 \n\t\t0.57894593 -0.70149845 -8.6912706e-08 0.57894593 -0.76934463 -4.1505253e-08 2.0811944 \n\t\t-0.57222253 -8.7802597e-08 0.017881937 -0.60252857 -9.248803e-08 0.017881939 0.3210474 \n\t\t5.3460742e-08 0.10281185 1.3667631 2.0750751e-07 -0.10211816 1.3839872 2.1440671e-07 \n\t\t0.011733801 -1.2965627 -1.8737387e-07 0.35153183 -1.2859948 -1.8678624e-07 0.32341442 \n\t\t-0.67874843 -8.3939703e-08 0.56431919 -0.72321045 -9.0813707e-08 0.56431919 -1.0856265 \n\t\t-1.2801432e-07 1.070394 -1.0856265 -1.2801432e-07 1.070394 -1.0856265 -1.2801432e-07 \n\t\t1.070394 -0.56363255 -6.7213577e-08 0.5355283 -0.56363255 -6.7213577e-08 0.5355283 \n\t\t-0.56363255 -6.7213577e-08 0.5355283 -0.58724868 -7.0864743e-08 0.53552818 1.0693752 \n\t\t1.4664595e-07 -0.50213623 1.0552089 1.4459702e-07 -0.49834025 -1.1078168 -1.904391e-07 \n\t\t-0.51509601 -1.0998749 -1.8913207e-07 -0.512968 -1.1092191 -1.9039938e-07 -0.50820196 \n\t\t1.4319431 2.2289413e-07 0.040577851 1.4319431 2.2289413e-07 0.040577851 1.291877 \n\t\t1.9869151e-07 -0.027896145 -0.11790226 3.4265559e-09 0.58197987 -0.09086664 7.6063742e-09 \n\t\t0.58197987 0.74071747 1.2983095e-07 0.41154283 0.80437744 1.3967306e-07 0.41154319 \n\t\t1.467471 2.2897696e-07 0.056435853 -0.99983072 -8.6195811e-08 1.8377982 0.44210932 \n\t\t2.2077277e-08 -1.2436502 0.40963927 1.6804554e-08 -1.2504423 0.34132937 5.3948501e-08 \n\t\t0.031647839 0.37398738 5.8997561e-08 0.031647868 -0.15816066 -2.7975577e-09 0.58197987 \n\t\t-1.1354148 -1.3500558e-07 1.0893741 -1.1354148 -1.3500558e-07 1.0893741 -1.1237811 \n\t\t-1.3283166e-07 1.0994601 -0.20477866 -1.0004892e-08 0.58197987 -1.0569928 -1.7347018e-07 \n\t\t-0.27022609;\n\tsetAttr \".pt[9794:9959]\" -0.82338655 -1.3735371e-07 -0.27022609 -1.375515 -2.2137529e-07 \n\t\t-0.23421985 -1.361589 -2.2002769e-07 -0.2558659 -0.53027862 -8.1084217e-08 0.024161942 \n\t\t-1.1468768 -1.3638851e-07 1.0998321 -1.1468768 -1.3638851e-07 1.0998321 -1.112027 \n\t\t-1.3220452e-07 1.0674762 -0.93876463 -1.3013279e-07 0.40324077 -0.86927062 -1.1938873e-07 \n\t\t0.40324077 0.35346314 5.3925495e-09 -1.32373 0.33365518 3.8152268e-09 -1.283818 -1.1306969 \n\t\t-1.2623386e-07 1.3055141 -1.1306969 -1.2623386e-07 1.3055141 -1.1306969 -1.2623386e-07 \n\t\t1.3055141 -0.47202864 -7.2078535e-08 0.024161942 0.3140192 3.0862195e-09 -1.221822 \n\t\t-1.2959229 -1.5081375e-07 1.3314418 0.35886514 5.7399037e-09 -1.3368403 0.33899918 \n\t\t4.1589865e-09 -1.2967839 1.0834374 1.5745729e-07 -0.27000624 1.1194113 1.6229284e-07 \n\t\t-0.28952223 -1.098595 -1.3078588e-07 1.0497921 0.34888715 3.9749906e-09 -1.342814 \n\t\t0.34888715 3.9749906e-09 -1.342814 0.35296115 4.6634878e-09 -1.341238 0.35296115 \n\t\t4.6634878e-09 -1.341238 0.34682709 3.359647e-09 -1.3507919 -0.67874855 -8.5794717e-08 \n\t\t0.51446539 -0.72321057 -9.2668706e-08 0.51446575 0.57003343 1.6851969e-07 2.1605196 \n\t\t0.56643546 1.6893526e-07 2.1866379 1.6782671 2.878696e-07 0.76333177 0.98719752 1.7693749e-07 \n\t\t0.65341383 1.0200713 1.8201992e-07 0.65341383 -1.3926567 -1.7347496e-07 1.1243461 \n\t\t-1.4802849 -1.9771859e-07 0.83688813 0.36492315 5.4132672e-09 -1.37079 0.42057136 \n\t\t6.8847555e-08 0.10281185 0.34132937 5.3669957e-08 0.024161853 0.37398738 5.8719017e-08 \n\t\t0.024161881 1.0319313 1.8385352e-07 0.65341383 -0.72271496 -8.5272887e-08 0.71117216 \n\t\t-0.11124028 -7.4784886e-08 -1.5476661 -0.14046347 -7.9149913e-08 -1.5435541 -0.14046347 \n\t\t-7.9149913e-08 -1.5435541 1.3805592 2.1532036e-07 0.050531805 1.3805592 2.1532036e-07 \n\t\t0.050531805 0.58890545 1.7017774e-07 2.1266661 -1.1383049 -1.1368254e-07 1.6744483 \n\t\t-1.014189 -8.8009415e-08 1.8487163 0.29503122 3.071551e-09 -1.1433202 -1.1549907 \n\t\t-1.8483583e-07 -0.16849604 1.0423414 1.5191034e-07 -0.24832626 0.3521331 4.0705728e-09 \n\t\t-1.3537322 -1.510329 -2.0694758e-07 0.71369004 -1.510329 -2.0694758e-07 0.71369004 \n\t\t-0.74065053 -9.1762296e-08 0.61128998 -1.1490448 -1.8801823e-07 -0.27873001 -1.1784327 \n\t\t-1.8871241e-07 -0.17527798 -1.1784327 -1.8871241e-07 -0.17527798 -0.79035461 -1.0304945e-07 \n\t\t0.51446575 -1.3488448 -1.9220903e-07 0.43881944 -1.1406868 -1.8828575e-07 -0.32064793 \n\t\t-1.1124847 -1.8427865e-07 -0.33013609 -1.1124847 -1.8427865e-07 -0.33013609 -1.1223067 \n\t\t-1.8406145e-07 -0.28348801 -0.36713487 -1.0589476e-07 -1.320502 -0.3561469 -1.0421912e-07 \n\t\t-1.3211242 -0.3561469 -1.0421912e-07 -1.3211242 -0.2508927 -1.7134312e-08 0.58197987 \n\t\t1.7063591 2.9364492e-07 0.80182177 1.7063591 2.9364492e-07 0.80182177 1.7005292 2.9151292e-07 \n\t\t0.76874769 -1.0605627 -1.7623179e-07 -0.32961205 -0.37189284 -1.0619777e-07 -1.308876 \n\t\t-0.37189284 -1.0619777e-07 -1.308876 -0.35384881 -1.0342968e-07 -1.3094562 -0.35384881 \n\t\t-1.0342968e-07 -1.3094562 0.34369108 2.2358546e-09 -1.367964 0.34758109 2.9287268e-09 \n\t\t-1.3655059 -1.2670208 -2.0459511e-07 -0.23404391 -1.2670208 -2.0459511e-07 -0.23404391 \n\t\t-1.2672108 -2.0127146e-07 -0.14392991 -1.2672108 -2.0127146e-07 -0.14392991 -0.32765466 \n\t\t-1.3447588e-08 1.0000119 -0.36445066 -1.9137065e-08 0.99999404 0.26645133 -9.1066719e-09 \n\t\t-1.3518642 0.26645133 -9.1066719e-09 -1.3518642 0.26645133 -9.1066719e-09 -1.3518642 \n\t\t0.30563533 2.9965594e-09 -1.1893963 1.1425374 1.6522263e-07 -0.30687228 1.1267773 \n\t\t1.6298031e-07 -0.30165216 1.4855471 2.322591e-07 0.069537833 1.3799431 2.1365422e-07 \n\t\t0.0083138272 -0.36062285 -1.0330326e-07 -1.2779123 0.94869149 1.6167567e-07 0.40324062 \n\t\t0.87919748 1.5093161e-07 0.40324062 -0.33312082 -1.0044308e-07 -1.315316 0.21308732 \n\t\t-1.8428802e-08 -1.3806701 -1.2418667 -1.3659799e-07 1.4888903 -1.3272867 -1.8748091e-07 \n\t\t0.47631499 -1.3308628 -1.8912672e-07 0.44694179 -1.3308628 -1.8912672e-07 0.44694179 \n\t\t1.1455973 1.6571046e-07 -0.30647624 -0.3425788 -1.0053523e-07 -1.2784942 1.1177431 \n\t\t1.5364161e-07 -0.51509613 1.1098012 1.5249293e-07 -0.51296812 -1.408757 -1.9241142e-07 \n\t\t0.68231809 -1.3589407 -1.7717947e-07 0.88469416 0.32768518 3.8786485e-09 -1.257308 \n\t\t0.32768518 3.8786485e-09 -1.257308 0.31281719 1.4153759e-09 -1.2617322 0.31281719 \n\t\t1.4153759e-09 -1.2617322 0.75057745 1.3104643e-07 0.40324059 0.71142548 1.2499336e-07 \n\t\t0.4032402 0.2434392 -6.4827357e-09 -1.1857282 0.24758917 -8.7843341e-09 -1.264828 \n\t\t0.24758917 -8.7843341e-09 -1.264828 0.33733714 1.5801284e-09 -1.3591859 -0.47202864 \n\t\t-6.6401093e-08 0.17674553 -0.41797462 -5.8044119e-08 0.17674552 -0.68184257 -1.3462132e-07 \n\t\t-0.78491408 -0.61215055 -1.2554663e-07 -0.83060187 0.33484718 7.9629867e-09 -1.1772982 \n\t\t-0.79364079 -1.5728035e-07 -0.92935801 -0.79364079 -1.5728035e-07 -0.92935801 -0.79364079 \n\t\t-1.5728035e-07 -0.92935801 -0.76191479 -1.5207473e-07 -0.921278 1.8912271 3.3320038e-07 \n\t\t1.0967557 1.8928891 3.3424817e-07 1.1180098 -0.82421076 -1.6080647e-07 -0.89710402 \n\t\t0.31783119 5.1502989e-09 -1.182188 -1.233279 -2.0067134e-07 -0.26878992 -1.154519 \n\t\t-1.8974559e-07 -0.30240789 -1.154519 -1.8974559e-07 -0.30240789 -0.62432665 -1.2795078e-07 \n\t\t-0.84462219 -0.54791468 -1.1785882e-07 -0.89089197 1.8895454 3.3266153e-07 1.0892618 \n\t\t-0.94409257 -1.3028864e-07 0.42118996 -0.86927056 -1.1872086e-07 0.42118996 -0.92327464 \n\t\t-1.7136166e-07 -0.76916397 -0.86369878 -1.6512129e-07 -0.84899199 1.1451374 1.6570499e-07 \n\t\t-0.30471224 1.463335 2.2883351e-07 0.069765821 1.3621372 2.1090418e-07 0.0083898231 \n\t\t-1.1021329 -1.7535592e-07 -0.13334589 -1.102219 -1.7390022e-07 -0.093865916 -0.070963077 \n\t\t-6.8768621e-08 -1.5533301 1.8939354 3.3765818e-07 1.2053077 1.8930933 3.3809437e-07 \n\t\t1.2205298 1.8930933 3.3809437e-07 1.2205298 -1.0631968 -1.7460215e-07 -0.27487007 \n\t\t-1.0631968 -1.7460215e-07 -0.27487007 -0.96687698 -1.7432043e-07 -0.667512 -0.96687698 \n\t\t-1.7432043e-07 -0.667512 -0.96687698 -1.7432043e-07 -0.667512 -0.97859281 -1.7398547e-07 \n\t\t-0.6098299 -0.40832272 -1.0966264e-07 -1.250628 -0.38648272 -1.0649305e-07 -1.2561902 \n\t\t-1.2186069 -1.3699987e-07 1.3814442 -1.1171507 -1.1475412e-07 1.5577523 -0.86639869 \n\t\t-1.5735107e-07 -0.62894589 -0.96061873 -1.6811471e-07 -0.52673393 -1.3583908 -1.8379568e-07 \n\t\t0.70459592 -1.3583908 -1.8379568e-07 0.70459592 -1.3241807 -1.7821301e-07 0.71248794;\n\tsetAttr \".pt[9960:10125]\" -1.3241807 -1.7821301e-07 0.71248794 1.8607354 3.2761585e-07 \n\t\t1.0733638 1.8877832 3.322744e-07 1.0861797 1.8664134 3.3382963e-07 1.2167697 0.39211529 \n\t\t2.0729217e-08 -1.0721523 0.32853332 1.0404309e-08 -1.0854522 1.8911091 3.3811338e-07 \n\t\t1.2292857 1.8911091 3.3811338e-07 1.2292857 1.8891991 3.3785605e-07 1.2303058 -1.2228367 \n\t\t-1.8222312e-07 0.18362562 -1.3288208 -1.8754693e-07 0.48091483 -1.3288208 -1.8754693e-07 \n\t\t0.48091483 -0.52104276 2.3331177e-09 2.2276621 -0.53492862 1.4106135e-09 2.260566 \n\t\t0.5430094 1.5466443e-07 1.90044 -1.3262028 -1.8598195e-07 0.51209641 0.79813707 9.4215366e-08 \n\t\t-0.78422213 0.91488117 1.1955241e-07 -0.58835608 -1.1291929 -1.7874436e-07 -0.11197592 \n\t\t-1.1291929 -1.7874436e-07 -0.11197592 -1.1279809 -1.7835717e-07 -0.1066059 -1.1279809 \n\t\t-1.7835717e-07 -0.1066059 -1.0432812 -1.8104438e-07 -0.5307579 0.23780136 1.2250365e-07 \n\t\t2.30426 0.24531135 1.2347347e-07 2.2991199 0.61483544 1.3302007e-07 1.0202978 0.56172132 \n\t\t1.2480864e-07 1.020304 0.73264104 1.3973113e-07 0.71117204 -0.28363466 4.1521737e-08 \n\t\t2.29443 -0.28477666 4.15051e-08 2.298728 -0.69458646 -1.3703689e-07 -0.79688209 -0.66187263 \n\t\t-1.3036791e-07 -0.75357801 -0.54567873 -2.4134678e-10 2.2608361 -0.53090668 -1.6617228e-09 \n\t\t2.1612842 -0.53920478 -3.5127496e-09 2.1460161 -1.0294012 -1.7947983e-07 -0.54638195 \n\t\t0.49971935 1.1446575e-07 0.99995577 0.43172535 1.0395426e-07 0.99997377 1.8639994 \n\t\t3.3383193e-07 1.2268617 -0.73634046 -1.2293285e-07 -0.24434006 -0.73634046 -1.2293285e-07 \n\t\t-0.24434006 -0.44528061 -8.5947512e-08 -0.45971203 1.8586012 3.2732748e-07 1.0744817 \n\t\t-0.72422862 -1.2045126e-07 -0.22797205 -0.080045231 9.2794084e-09 0.58197987 1.0693769 \n\t\t1.4664622e-07 -0.50213623 1.0552089 1.4459702e-07 -0.49834025 -0.31529269 -1.153585e-08 \n\t\t1.000026 -0.91414297 -1.659823e-07 -0.662534 -0.91414297 -1.659823e-07 -0.662534 \n\t\t-0.89230096 -1.6253229e-07 -0.660568 -0.89230096 -1.6253229e-07 -0.660568 -0.68209255 \n\t\t-1.3520209e-07 -0.79948407 -0.65178657 -1.2904088e-07 -0.75982207 -0.088429235 7.9832079e-09 \n\t\t0.58197987 -0.11338443 4.1250332e-09 0.58197987 0.82819742 1.8837183e-07 1.6213697 \n\t\t0.97887743 2.058331e-07 1.464566 -0.98230273 -1.7703921e-07 -0.67648602 -1.2019347 \n\t\t-1.8988626e-07 -0.10917402 -1.2019347 -1.8988626e-07 -0.10917402 -1.1936747 -1.8960472e-07 \n\t\t-0.13592795 -1.460763 -2.2262489e-07 0.086406112 -1.4800869 -2.2532855e-07 0.094036095 \n\t\t1.8871315 3.3750499e-07 1.2294618 1.0045193 1.4581839e-07 -0.25489822 0.96713543 \n\t\t1.4117852e-07 -0.22426416 -1.2954168 -2.0683116e-07 -0.17615199 -1.3030229 -2.049876e-07 \n\t\t-0.095002003 -1.0590631 -1.1959128e-07 1.1863942 -1.025817 -1.1200967e-07 1.2520143 \n\t\t0.25577134 1.2492676e-07 2.2947159 -0.3990849 -1.1038168e-07 -1.308336 -0.3990849 \n\t\t-1.1038168e-07 -1.308336 -0.40775087 -1.1193945e-07 -1.314194 1.8255712 3.2716275e-07 \n\t\t1.2072958 -0.30289081 -9.3775611e-08 -1.2617322 -0.30289081 -9.3775611e-08 -1.2617322 \n\t\t-0.23766282 -8.3806285e-08 -1.264828 -0.23766282 -8.3806285e-08 -1.264828 -0.59249866 \n\t\t-1.3193609e-07 -1.083976 -0.59256667 -1.3045513e-07 -1.0438923 -0.59256667 -1.3045513e-07 \n\t\t-1.0438923 -1.494617 -2.274038e-07 0.098636106 -0.28621662 -6.5735108e-08 -0.57741404 \n\t\t-0.93282884 -9.178968e-08 1.4090643 -0.94696087 -1.7163684e-07 -0.67814201 -0.94696087 \n\t\t-1.7163684e-07 -0.67814201 -0.93502086 -1.6945985e-07 -0.66924596 -0.93502086 -1.6945985e-07 \n\t\t-0.66924596 -0.38781491 -1.0748717e-07 -1.2773722 -0.96920687 -1.7425378e-07 -0.65604001 \n\t\t-0.96920687 -1.7425378e-07 -0.65604001 -0.96920687 -1.7425378e-07 -0.65604001 -1.0753746 \n\t\t-1.79276e-07 -0.34988207 -0.72108251 -1.1912738e-07 -0.20546407 -0.7331925 -1.2160866e-07 \n\t\t-0.22183204 -0.7331925 -1.2160866e-07 -0.22183204 -0.59248269 -1.3211118e-07 -1.088748 \n\t\t0.69358134 7.472044e-08 -0.87372214 0.71634531 7.7017461e-08 -0.90657419 -1.282383 \n\t\t-1.9862379e-07 -0.009731899 -1.421363 -2.175621e-07 0.058762096 -1.421363 -2.175621e-07 \n\t\t0.058762096 1.0469713 1.7687015e-07 0.40324059 0.35514534 9.2873734e-08 1.0203738 \n\t\t0.38806733 9.7962946e-08 1.0203559 0.88761514 1.1426892e-07 -0.61706018 0.88761514 \n\t\t1.1426892e-07 -0.61706018 1.3556672 2.284669e-07 0.50727803 1.3504273 2.3040977e-07 \n\t\t0.58126575 -1.3105768 -2.0145883e-07 0.031222071 -0.70641863 -1.4294768e-07 -0.90657395 \n\t\t-0.68365467 -1.3820591e-07 -0.87372214 -0.73634046 -1.2293285e-07 -0.24434006 -0.73634046 \n\t\t-1.2293285e-07 -0.24434006 -0.72422862 -1.2045128e-07 -0.22797205 -0.067533635 1.0858954e-08 \n\t\t0.5724445 -0.079469264 9.0138723e-09 0.57245028 0.34408331 9.1164026e-08 1.0203879 \n\t\t0.30210912 -4.2750434e-09 -1.370172 0.29357508 -5.1922928e-09 -1.359364 -0.63869864 \n\t\t-1.8090249e-08 2.1676416 -0.66915268 -2.3512218e-08 2.1484621 0.98126918 1.2835136e-07 \n\t\t-0.62772602 0.98126918 1.2835136e-07 -0.62772602 0.93536901 1.2135725e-07 -0.62497818 \n\t\t-0.92019683 -1.658093e-07 -0.63273001 -0.92019683 -1.658093e-07 -0.63273001 -0.92019683 \n\t\t-1.658093e-07 -0.63273001 -0.93191284 -1.6547436e-07 -0.57504797 1.1019531 1.5435489e-07 \n\t\t-0.43031824 1.0794972 1.5110703e-07 -0.42430019 -0.21570465 5.2862006e-08 2.316952 \n\t\t-0.21417664 5.2883923e-08 2.311192 0.25985149 5.3843536e-08 0.3673715 0.25985149 \n\t\t5.3843536e-08 0.3673715 0.28003743 5.5949318e-08 0.34009165 0.28003743 5.5949318e-08 \n\t\t0.34009165 -0.95137686 -1.7100282e-07 -0.64275396 -0.95137686 -1.7100282e-07 -0.64275396 \n\t\t-0.95137686 -1.7100282e-07 -0.64275396 1.132089 1.5605488e-07 -0.50984621 1.2505351 \n\t\t1.8075647e-07 -0.33813024 1.2505351 1.8075647e-07 -0.33813024 -0.96309286 -1.7066789e-07 \n\t\t-0.58507192 1.2959213 2.1238858e-07 0.32341418 1.2749013 2.0616687e-07 0.24354237 \n\t\t-1.1306269 -1.7829421e-07 -0.093919918 -1.1306269 -1.7829421e-07 -0.093919918 -1.458581 \n\t\t-2.2270645e-07 0.075148106 -0.40531886 -1.1211414e-07 -1.328994 0.4772473 2.7739404e-08 \n\t\t-1.2374783 1.1435772 1.6037519e-07 -0.44147009 1.1244092 1.5760284e-07 -0.43633407 \n\t\t-0.81918883 -6.9137464e-08 1.5456723 -0.15227763 -1.8880171e-09 0.58197987 -0.25596663 \n\t\t-1.8274397e-08 0.57242209 -0.29886463 -2.4907191e-08 0.57240629 0.28798935 1.2979133e-07 \n\t\t2.2915859 0.27886733 1.2834597e-07 2.2906437 -1.3513607 -1.7375257e-07 0.94529814 \n\t\t-1.3513607 -1.7375257e-07 0.94529814 -1.347435 -1.7240289e-07 0.96526003 -0.59380269 \n\t\t-1.3292549e-07 -1.1051482 -0.59380269 -1.3292549e-07 -1.1051482;\n\tsetAttr \".pt[10126:10291]\" 1.085331 1.4922418e-07 -0.49914211 1.0670872 1.4658549e-07 \n\t\t-0.49425423 -1.0695709 -1.8114773e-07 -0.42429996 -1.0471128 -1.7745168e-07 -0.41828197 \n\t\t1.0731233 1.5568172e-07 -0.27487019 1.0731233 1.5568172e-07 -0.27487019 1.0637152 \n\t\t1.535485e-07 -0.29311022 1.0637152 1.535485e-07 -0.29311022 1.0543633 1.521784e-07 \n\t\t-0.29107419 1.0543633 1.521784e-07 -0.29107419 -0.61167663 -1.3532102e-08 2.177866 \n\t\t-0.28757495 -9.4651938e-08 -1.348922 -0.28757495 -9.4651938e-08 -1.348922 -0.62498665 \n\t\t-1.3813899e-07 -1.1156923 -0.62498665 -1.3813899e-07 -1.1156923 -0.63041466 -1.3863162e-07 \n\t\t-1.1063782 -0.63041466 -1.3863162e-07 -1.1063782 0.87919742 1.5159948e-07 0.42118981 \n\t\t0.80437738 1.4003197e-07 0.42118943 0.20607132 -1.8900826e-08 -1.364204 0.20607132 \n\t\t-1.8900826e-08 -1.364204 0.15614553 -3.3018043e-08 -1.5361661 -0.61372256 -9.421867e-08 \n\t\t0.017881941 0.53876334 3.7535578e-08 -1.2298043 0.51081532 3.3108133e-08 -1.2326683 \n\t\t-0.3728627 -9.6721081e-08 -1.0501562 -0.30083469 -8.6145903e-08 -1.0652239 0.3817614 \n\t\t6.4679462e-08 0.15204984 0.35145539 5.9994029e-08 0.15204985 -0.62471652 -9.5684705e-08 \n\t\t0.024161948 0.3583613 9.337176e-08 1.0203959 -0.10430444 5.1731126e-09 0.57241964 \n\t\t-0.14720123 -1.459466e-09 0.57240462 0.0028704675 7.1530208e-09 0.18031347 0.0028706202 \n\t\t7.1530435e-09 0.18031345 0.56307733 4.1293582e-08 -1.2298322 0.54954934 3.9225018e-08 \n\t\t-1.2292162 -1.2375607 -1.9315053e-07 -0.048873968 -1.3509568 -2.0211513e-07 0.18136446 \n\t\t-1.3509568 -2.0211513e-07 0.18136446 -0.30902889 -9.7388202e-08 -1.333318 -0.30902889 \n\t\t-9.7388202e-08 -1.333318 -0.29775891 -9.4493757e-08 -1.302356 -0.45080668 -1.0826206e-07 \n\t\t-1.036464 1.0010231 1.3362869e-07 -0.56797409 1.058079 1.4208736e-07 -0.57771409 \n\t\t1.058079 1.4208736e-07 -0.57771409 1.058079 1.4208736e-07 -0.57771409 1.1035732 1.5186262e-07 \n\t\t-0.50403023 0.29750103 -4.1967869e-09 -1.348922 0.29750103 -4.1967869e-09 -1.348922 \n\t\t0.31895509 -2.9929531e-10 -1.333318 0.31895509 -2.9929531e-10 -1.333318 0.8510952 \n\t\t9.9911631e-08 -0.85117626 0.2862331 -4.7867328e-09 -1.3179582 -1.482443 -2.2669953e-07 \n\t\t0.066980094 -1.4575449 -2.2324252e-07 0.056436092 -1.462817 -2.1548547e-07 0.28681529 \n\t\t-1.467741 -2.1614555e-07 0.28953528 -1.565293 -2.2924114e-07 0.34291911 -1.565293 \n\t\t-2.2924114e-07 0.34291911 -0.59789264 -1.3392625e-07 -1.1150502 -0.59789264 -1.3392625e-07 \n\t\t-1.1150502 -0.61372268 -1.3639864e-07 -1.1157219 -0.61372268 -1.3639864e-07 -1.1157219 \n\t\t-1.475081 -2.3388664e-07 -0.15676589 0.26151535 1.2662038e-07 2.316366 0.27327535 \n\t\t1.2832801e-07 2.313396 0.95401943 1.6280832e-07 0.41154322 1.0176773 1.7265009e-07 \n\t\t0.41154319 -0.86927062 -1.1841192e-07 0.42949295 -0.79977661 -1.0766786e-07 0.42949295 \n\t\t1.0852592 1.5194041e-07 -0.42584419 1.0685672 1.4952614e-07 -0.42137212 -0.86597484 \n\t\t-1.575135e-07 -0.63507205 -0.86597484 -1.575135e-07 -0.63507205 -0.86597484 -1.575135e-07 \n\t\t-0.63507205 -0.88757485 -1.6065663e-07 -0.62979603 -0.88757485 -1.6065663e-07 -0.62979603 \n\t\t-0.88757485 -1.6065663e-07 -0.62979603 -1.1130868 -1.8765935e-07 -0.41849196 -1.0963929 \n\t\t-1.84912e-07 -0.41402 -0.65551668 -1.3306706e-07 -0.85252815 -0.68267268 -1.3857441e-07 \n\t\t-0.88770598 0.42790139 7.1812821e-08 0.15204784 0.04906626 1.3880887e-08 0.16918185 \n\t\t0.04906626 1.3880887e-08 0.16918185 0.049066234 1.3880883e-08 0.16918185 0.049066234 \n\t\t1.3880883e-08 0.16918185 -0.65920055 -2.629225e-08 2.0323958 -0.63198465 -2.1446798e-08 \n\t\t2.049536 -1.436527 -1.9764914e-07 0.65693808 -1.430321 -1.9616674e-07 0.67099214 \n\t\t1.1244092 1.5760284e-07 -0.43633407 -1.424271 -1.9637213e-07 0.64033413 -1.414953 \n\t\t-1.941639e-07 0.66096413 1.0598313 1.7916726e-07 0.41154277 1.1664274 1.6945559e-07 \n\t\t-0.29237422 1.1498913 1.6708829e-07 -0.28728822 -1.4257009 -2.1126806e-07 0.24594112 \n\t\t-1.4201469 -2.1053214e-07 0.24264272 -0.64043695 -6.993757e-08 0.78144616 -0.35378698 \n\t\t-1.9760975e-08 0.93891805 -0.77924883 -9.7935065e-08 0.60577208 -1.0797008 -1.8216487e-07 \n\t\t-0.40954596 -0.24851099 -2.4535227e-09 0.96663606 0.70001334 1.837856e-07 2.030724 \n\t\t0.65922731 1.7843573e-07 2.056412 0.54470336 3.8054456e-08 -1.2405403 0.3833431 1.0527297e-08 \n\t\t-1.3098842 0.3833431 1.0527297e-08 -1.3098842 0.4090111 1.4553281e-08 -1.308336 0.4090111 \n\t\t1.4553281e-08 -1.308336 -0.44741869 -1.0784781e-07 -1.039408 -0.37861469 -9.7660148e-08 \n\t\t-1.0514942 0.56845945 1.2509273e-07 0.99994189 0.62782335 1.3427041e-07 0.99993593 \n\t\t0.41767514 1.5674807e-08 -1.314194 0.73620546 1.8887151e-07 2.01703 -0.27380866 4.2730694e-08 \n\t\t2.2860937 -0.28602666 4.0888633e-08 2.287354 0.99025923 2.1680736e-07 1.7122117 0.7690832 \n\t\t1.914035e-07 1.9484698 -0.20510669 -1.0410746e-08 0.57243532 0.94396716 1.2517002e-07 \n\t\t-0.5582341 -0.70616269 -1.4327709e-07 -0.91649014 0.37207311 9.9370512e-09 -1.2789199 \n\t\t1.0186168 1.3442066e-07 -0.61979216 -1.3328967 -1.8749952e-07 0.49912459 -1.3331147 \n\t\t-1.868522e-07 0.51742756 -1.1336509 -1.9169363e-07 -0.44146997 -1.1462408 -1.9376563e-07 \n\t\t-0.44484401 1.1089753 2.2899602e-07 1.5465158 -0.87536097 -1.5724521e-07 -0.58886194 \n\t\t-0.86364496 -1.5758015e-07 -0.64654404 -0.86364496 -1.5758015e-07 -0.64654404 -0.86364496 \n\t\t-1.5758015e-07 -0.64654404 -0.49029067 -3.7836216e-08 1.020318 -0.42945266 -2.8429746e-08 \n\t\t1.0203359 -0.55329669 -6.2940408e-09 2.1298203 -1.2970507 -1.8241106e-07 0.48693743 \n\t\t-1.2961748 -1.8170138e-07 0.50237036 -1.2961748 -1.8170138e-07 0.50237036 -1.3340547 \n\t\t-1.8620877e-07 0.5386256 -1.3340547 -1.8620877e-07 0.5386256 -0.22316664 5.1850044e-08 \n\t\t2.32076 1.0301931 1.3666019e-07 -0.60770416 0.69259936 7.4048288e-08 -0.88770622 \n\t\t0.71608937 7.6608927e-08 -0.91649014 1.0330031 1.415148e-07 -0.48891011 1.079571 \n\t\t1.4861214e-07 -0.49165812 1.079571 1.4861214e-07 -0.49165812 0.39774111 1.3963017e-08 \n\t\t-1.2773722 0.35015911 5.0812452e-09 -1.318368 0.35015911 5.0812452e-09 -1.318368 \n\t\t0.54020345 8.4416705e-08 0.024161831 0.58992344 9.2103619e-08 0.024161831 -0.88147497 \n\t\t-1.6083109e-07 -0.65983003 -0.88147497 -1.6083109e-07 -0.65983003 -0.88147497 -1.6083109e-07 \n\t\t-0.65983003 0.29124534 1.307512e-07 2.303854 0.29470333 1.3109509e-07 2.298728 -1.0370448 \n\t\t-1.4532731e-07 0.40324077 -1.0511687 -1.4751092e-07 0.40324077 0.76250333 1.9294858e-07 \n\t\t2.017334 0.66544336 7.1158787e-08 -0.85252815;\n\tsetAttr \".pt[10292:10457]\" -0.89319283 -1.6049644e-07 -0.60214794 -0.25760466 \n\t\t4.54462e-08 2.2917457 -0.26894066 4.3652605e-08 2.2906437 0.30768511 -8.8962532e-10 \n\t\t-1.302356 -0.71868467 -1.4570962e-07 -0.92983598 -0.71913868 -1.4566811e-07 -0.92683417 \n\t\t0.88620514 1.1461055e-07 -0.60202014 0.88620514 1.1461055e-07 -0.60202014 0.98894519 \n\t\t1.3014989e-07 -0.61128414 0.62079126 1.3394235e-07 1.0203378 0.56947929 1.2601005e-07 \n\t\t1.0203578 -1.3818468 -2.0549692e-07 0.21882726 -1.3901109 -2.0923322e-07 0.15275006 \n\t\t-0.99789274 -1.3927423e-07 0.40324077 -0.27011058 -2.9105825e-08 0.34009171 -0.27011058 \n\t\t-2.9105825e-08 0.34009171 -0.2499245 -2.4969927e-08 0.36737156 -0.2499245 -2.4969927e-08 \n\t\t0.36737156 0.62258148 9.7152686e-08 0.024161829 -0.62554097 -1.3077542e-07 -0.91549003 \n\t\t-0.77129084 -1.4767323e-07 -0.76402795 -0.60490853 -5.5557354e-08 1.020298 -0.55179465 \n\t\t-4.7345509e-08 1.020304 -1.0153326 -1.3783199e-07 0.51446539 -0.83806896 -1.1098998e-07 \n\t\t0.49931628 0.56088334 4.0764245e-08 -1.2349422 1.0488452 1.4394708e-07 -0.48936611 \n\t\t-0.49920875 -3.9970402e-08 1.000016 -0.43047273 -2.9343086e-08 1.0000279 0.94733107 \n\t\t1.2554737e-07 -0.56207007 0.89353502 1.1728512e-07 -0.56059605 0.89353502 1.1728512e-07 \n\t\t-0.56059605 -0.22555864 5.121694e-08 2.313684 -0.23113066 5.0461303e-08 2.3165278 \n\t\t-0.24992448 -2.4969909e-08 0.36737195 -0.24992448 -2.4969909e-08 0.36737195 0.63425332 \n\t\t6.6630847e-08 -0.84462219 0.55784136 5.3095601e-08 -0.89089221 -0.49871475 -3.9136456e-08 \n\t\t1.020376 -0.43721274 -2.962747e-08 1.02039 -1.1399647 -1.8693284e-07 -0.2872881 -1.0800188 \n\t\t-1.7681711e-07 -0.26450208 -1.0800188 -1.7681711e-07 -0.26450208 0.56540334 4.1609209e-08 \n\t\t-1.2310143 -0.61789668 -5.8323021e-08 0.99993593 -0.55853456 -4.9145175e-08 0.99994189 \n\t\t-1.0695709 -1.8114771e-07 -0.42429996 -1.0471148 -1.7745199e-07 -0.41828197 0.53600943 \n\t\t8.3534623e-08 0.017881826 0.58214748 9.0667754e-08 0.017881826 1.082931 1.4979304e-07 \n\t\t-0.47388211 1.082931 1.4979304e-07 -0.47388211 1.0346551 1.4244227e-07 -0.47084811 \n\t\t-0.78936684 -9.9072189e-08 0.61725205 -0.84910893 -1.1229489e-07 0.51011789 1.1019531 \n\t\t1.5435489e-07 -0.43031824 1.0794972 1.5110703e-07 -0.42430019 0.66477746 1.4074161e-07 \n\t\t1.0203059 0.65050143 1.3853418e-07 1.0202978 0.99871701 1.3359856e-07 -0.55920202 \n\t\t0.99871701 1.3359856e-07 -0.55920202 1.0393268 1.40354e-07 -0.54638219 0.35145539 \n\t\t5.5001809e-08 0.017881854 0.3817634 5.9687551e-08 0.017881826 0.53750521 1.6189944e-07 \n\t\t2.117754 0.52366322 1.6036012e-07 2.133898 0.62020946 6.6536899e-08 -0.78879422 0.64191931 \n\t\t6.873227e-08 -0.8199982 -0.99280065 -9.6091021e-08 1.54265 -0.2763069 -9.1757727e-08 \n\t\t-1.3179582 0.33889109 4.491286e-09 -1.2874042 -0.64057451 -6.1071468e-08 1.020298 \n\t\t0.20749307 8.1447745e-08 1.3267978 0.0049630078 5.0477571e-08 1.3359841 -1.475747 \n\t\t-2.2539082e-07 0.074330069 -1.4580749 -2.2292394e-07 0.067200094 0.99645513 1.3272525e-07 \n\t\t-0.57327414 0.99645513 1.3272525e-07 -0.57327414 0.9450891 1.2468705e-07 -0.57587606 \n\t\t0.61245549 9.5353492e-08 0.017881824 0.62364948 9.7084133e-08 0.017881822 -0.87769085 \n\t\t-1.5717856e-07 -0.57739002 0.76728123 1.9101046e-07 1.945394 0.55081332 1.6346561e-07 \n\t\t2.1045499 -1.3405007 -1.8561875e-07 0.58126599 -1.4309069 -2.1543397e-07 0.15561208 \n\t\t-1.4309069 -2.1543397e-07 0.15561208 -1.4359108 -2.1563868e-07 0.17090207 1.6081976 \n\t\t2.9273269e-07 1.1851718 1.5649092 2.8543897e-07 1.1690158 -0.37183464 -5.0910685e-08 \n\t\t0.17674552 1.4341971 2.4555877e-07 0.64033383 1.4453111 2.465398e-07 0.62051988 1.4453111 \n\t\t2.465398e-07 0.62051988 1.4453111 2.465398e-07 0.62051988 -1.1144829 -1.8853906e-07 \n\t\t-0.43633395 -1.0920268 -1.8484343e-07 -0.430318 -0.56720459 -5.0483585e-08 0.99999589 \n\t\t-0.88212448 -1.4145772e-07 -0.13646406 -0.88212448 -1.4145772e-07 -0.13646406 -0.87001246 \n\t\t-1.3897612e-07 -0.12009612 1.1457092 1.6068351e-07 -0.44204223 1.1422511 1.6018335e-07 \n\t\t-0.44111621 -1.4680308 -2.2121202e-07 0.15457608 -1.4680308 -2.2121202e-07 0.15457608 \n\t\t-1.4680308 -2.2121202e-07 0.15457608 -1.3568368 -2.1357222e-07 -0.10211793 -1.3416108 \n\t\t-2.124892e-07 -0.13627601 -1.3416108 -2.124892e-07 -0.13627601 -1.3457407 -1.8918186e-07 \n\t\t0.50727826 0.58214748 9.6578873e-08 0.17674582 0.61245549 1.0126463e-07 0.17674623 \n\t\t0.5086413 1.1660493e-07 1.020376 -1.3076669 -2.0370099e-07 -0.041127924 -1.3076669 \n\t\t-2.0370099e-07 -0.041127924 -1.3683648 -2.1190793e-07 -0.0094899312 -1.4684088 -2.2070445e-07 \n\t\t0.16978808 -1.4684088 -2.2070445e-07 0.16978808 1.4418991 2.4863317e-07 0.69095778 \n\t\t1.3911372 2.4834958e-07 0.89425391 -1.3504049 -2.090607e-07 -0.0075939372 -1.2918628 \n\t\t-2.0116728e-07 -0.038699929 -1.3214709 -1.7831459e-07 0.69849801 -1.3215588 -1.7807861e-07 \n\t\t0.70520592 -1.3215588 -1.7807861e-07 0.70520592 -0.3624526 -4.8268383e-08 0.2087757 \n\t\t-0.35305262 -4.681511e-08 0.2087757 0.42790136 6.6820668e-08 0.017881846 0.38176137 \n\t\t5.9687238e-08 0.017881848 -0.69407266 -3.0173172e-08 2.0729899 -0.70666456 -3.2960472e-08 \n\t\t2.0504 0.72425532 7.8405137e-08 -0.90214616 0.70199132 7.5968188e-08 -0.87513214 \n\t\t0.84976119 1.1033525e-07 -0.56549418 0.83115304 1.0785262e-07 -0.55489814 1.3581513 \n\t\t2.4821159e-07 1.0276039 1.2077333 2.3766819e-07 1.36924 0.38103932 9.6120303e-08 \n\t\t1.0000359 0.34117532 8.9957169e-08 1.0000359 -0.58506453 -1.2448568e-08 2.0964117 \n\t\t-0.60600668 -1.6595756e-08 2.07197 0.99130517 1.3252394e-07 -0.55728614 0.99130517 \n\t\t1.3252394e-07 -0.55728614 0.94726312 1.2562765e-07 -0.55963016 -0.87162846 -1.3930723e-07 \n\t\t-0.12228009 -0.8706345 -1.3910362e-07 -0.12093809 -0.8706345 -1.3910362e-07 -0.12093809 \n\t\t0.44039929 1.052973e-07 1.0000279 1.1019531 1.5435489e-07 -0.43031824 1.1186452 1.5676916e-07 \n\t\t-0.43479007 -0.38790059 -5.2202747e-08 0.2087757 0.67623335 7.3218104e-08 -0.84201616 \n\t\t0.52734345 8.9297735e-08 0.20877562 0.48195538 8.2280557e-08 0.20877562 0.44713929 \n\t\t1.0709698e-07 1.0203899 0.65386933 7.0907824e-08 -0.8111822 -1.4269148 -2.1496301e-07 \n\t\t0.15168208 -1.4487129 -2.2207962e-07 0.050992057 0.72368532 7.9435587e-08 -0.8720842 \n\t\t0.73397934 8.0433082e-08 -0.88804811 0.61245549 9.5353492e-08 0.01788182 -0.37183461 \n\t\t-5.0910668e-08 0.17674591 -0.34152859 -4.6225221e-08 0.17674631 -0.8676545 -1.3849302e-07 \n\t\t-0.11691004 -0.8706345 -1.3910362e-07 -0.12093809 -0.8706345 -1.3910362e-07 -0.12093809;\n\tsetAttr \".pt[10458:10623]\" 1.1186452 1.5676916e-07 -0.43479007 1.1019531 1.5435489e-07 \n\t\t-0.43031824 0.73613733 7.9775845e-08 -0.91467816 -0.62082458 -1.2531018e-07 -0.78820604 \n\t\t-0.65396857 -1.320991e-07 -0.83294612 -0.33564064 -3.0593817e-08 0.57238191 -0.32639068 \n\t\t-2.9163321e-08 0.57239312 1.3129492 1.9945243e-07 -0.095002182 1.3205031 2.0531694e-07 \n\t\t0.031221833 0.3863613 1.9889413e-08 -1.0708143 0.46430531 3.2449339e-08 -1.0571222 \n\t\t0.6712774 1.409894e-07 0.9999578 0.6344794 1.3530104e-07 0.99997789 -0.63130897 -1.3185873e-07 \n\t\t-0.92063797 -0.32129696 -9.2164633e-08 -1.141958 -0.32129696 -9.2164633e-08 -1.141958 \n\t\t-0.32129696 -9.2164633e-08 -1.141958 -0.68334854 -3.0365577e-08 2.0232596 0.68364131 \n\t\t1.4290039e-07 0.99994391 1.1328932 1.5882989e-07 -0.43860811 -0.70089465 -3.3070748e-08 \n\t\t2.0234621 1.3854151 2.5588218e-07 1.120472 1.474087 2.5871782e-07 0.82824391 -1.0756267 \n\t\t-1.7662664e-07 -0.27763209 1.0404588 1.411024e-07 -0.53097218 0.72449332 7.8790507e-08 \n\t\t-0.89277822 0.73657131 7.9948244e-08 -0.91184813 0.73353136 8.0276905e-08 -0.89038414 \n\t\t-0.57007253 -8.6417948e-09 2.1364279 -0.57247263 -9.6612585e-09 2.1190019 0.32926741 \n\t\t5.1805124e-08 0.024161857 0.34133139 5.3670266e-08 0.024161858 -1.3357507 -1.9047259e-07 \n\t\t0.43108061 -1.3357507 -1.9047259e-07 0.43108061 -1.3196347 -1.880253e-07 0.42988983 \n\t\t-1.3196347 -1.880253e-07 0.42988983 -0.77735698 -1.4887907e-07 -0.77122998 -1.2193907 \n\t\t-1.9243213e-07 -0.10506396 -1.2981749 -2.0293122e-07 -0.059879977 1.3612872 2.4563394e-07 \n\t\t0.9452979 1.3612872 2.4563394e-07 0.9452979 1.3573611 2.4576968e-07 0.96525979 0.97680753 \n\t\t1.8997331e-07 1.0469277 -1.4296229 -2.1587292e-07 0.13848008 -1.4296229 -2.1587292e-07 \n\t\t0.13848008 -1.4358089 -2.1685021e-07 0.13791807 1.3545793 2.4413697e-07 0.93293792 \n\t\t-0.39643076 -1.01613e-07 -1.0837022 -0.46523476 -1.1180067e-07 -1.0716159 1.1608171 \n\t\t1.6286864e-07 -0.44609022 1.1561671 1.621961e-07 -0.44484425 -1.1194469 -1.9208267e-07 \n\t\t-0.51094401 -1.1232249 -1.9270441e-07 -0.51195598 -0.71456665 -1.4369408e-07 -0.89277822 \n\t\t-0.72664464 -1.4627095e-07 -0.91184813 1.1422511 1.6018335e-07 -0.44111621 0.63320148 \n\t\t6.8817293e-08 -0.78149015 0.55651528 4.5908372e-08 -1.0785422 0.48448724 3.4211876e-08 \n\t\t-1.0936102 -0.15368988 -2.4610805e-09 0.57244647 -0.10928766 4.4038684e-09 0.57245147 \n\t\t-0.71338868 -1.4303315e-07 -0.87990993 -0.69438463 -1.3925919e-07 -0.8574459 1.3387471 \n\t\t2.2487004e-07 0.48091465 1.3387471 2.2487004e-07 0.48091465 -0.60252857 -8.657689e-08 \n\t\t0.17674634 -0.61372256 -8.8307523e-08 0.17674634 -1.3603648 -1.8235095e-07 0.75162601 \n\t\t-1.6783029 -2.3020807e-07 0.78649402 -0.60252857 -8.657689e-08 0.17674632 1.6773653 \n\t\t3.0436516e-07 1.2104038 1.6773653 3.0436516e-07 1.2104038 1.6773653 3.0436516e-07 \n\t\t1.2104038 0.63075137 6.8188605e-08 -0.78820616 0.66389537 7.1648081e-08 -0.83294612 \n\t\t0.39782539 6.9273717e-08 0.20877564 0.37237939 6.5339663e-08 0.20877564 0.50455308 \n\t\t1.2192611e-07 1.1803719 0.37398741 5.8997564e-08 0.031647816 0.4237074 6.6684478e-08 \n\t\t0.031647816 -1.1087189 -1.8759047e-07 -0.43478996 -1.0920268 -1.8484342e-07 -0.430318 \n\t\t1.1561671 1.621961e-07 -0.44484425 -0.67232269 -1.3481467e-07 -0.8296662 -1.3740609 \n\t\t-2.1199885e-07 0.01173404 -0.23615697 -7.9542062e-08 -1.156482 -0.034903359 -4.926693e-08 \n\t\t-1.179044 -0.034903359 -4.926693e-08 -1.179044 -0.034903359 -4.926693e-08 -1.179044 \n\t\t-0.034903359 -4.926693e-08 -1.179044 -0.69272268 -1.3915442e-07 -0.86153597 1.4354711 \n\t\t2.4754547e-07 0.68843377 1.387151 2.4737258e-07 0.88455975 0.3413294 5.3948504e-08 \n\t\t0.031647842 -0.57222056 -8.1891145e-08 0.17674632 -1.6683408 -2.2952973e-07 0.76333201 \n\t\t-0.66745055 -1.3270538e-07 -0.79322201 -0.64955652 -1.289888e-07 -0.7676881 1.798475 \n\t\t3.2472127e-07 1.2542658 1.798475 3.2472127e-07 1.2542658 1.798475 3.2472127e-07 1.2542658 \n\t\t1.7595032 3.1815134e-07 1.2396257 -0.57222253 -8.1891471e-08 0.17674592 0.40454507 \n\t\t1.0921181e-07 1.254208 1.1975831 1.7292491e-07 -0.32858816 1.2769471 1.8871279e-07 \n\t\t-0.23404415 1.2769471 1.8871279e-07 -0.23404415 1.5443614 2.9684594e-07 1.5609598 \n\t\t1.5443614 2.9684594e-07 1.5609598 1.5443614 2.9684594e-07 1.5609598 0.72861135 7.8048288e-08 \n\t\t-0.92983621 0.72906536 7.8230187e-08 -0.92683417 -0.6314885 -1.2660895e-07 -0.7788021 \n\t\t-0.66385847 -1.3322806e-07 -0.82219416 1.4511911 2.4873933e-07 0.65520191 1.4541011 \n\t\t2.4879861e-07 0.64470387 1.4541011 2.4879861e-07 0.64470387 -0.65804482 -7.1780946e-08 \n\t\t0.80506617 -0.360921 -1.9801689e-08 0.96746606 -0.93093693 -1.6957674e-07 -0.68935603 \n\t\t-0.93093693 -1.6957674e-07 -0.68935603 -0.94540095 -1.7168152e-07 -0.6858241 -0.94540095 \n\t\t-1.7168152e-07 -0.6858241 -1.3289927 -1.821503e-07 0.62666601 0.42790139 6.756656e-08 \n\t\t0.037927821 0.3817634 6.0433436e-08 0.037927821 0.36297941 6.3886382e-08 0.20877564 \n\t\t0.37237936 6.5339655e-08 0.20877564 1.447049 2.486245e-07 0.66932583 1.0986371 2.1744809e-07 \n\t\t1.2791158 1.119723 2.187639e-07 1.226866 0.45734128 1.5165568e-07 2.175534 0.5595594 \n\t\t1.6998058e-07 2.2433019 0.5595594 1.6998058e-07 2.2433019 1.1542132 2.2019512e-07 \n\t\t1.1220219 -0.62455261 -5.9350494e-08 0.99997789 -0.57144868 -1.2723292e-07 -1.0450402 \n\t\t-0.51672268 -1.1898072e-07 -1.050648 1.2474873 1.9104812e-07 -0.048874207 1.3608831 \n\t\t2.1714645e-07 0.18136422 1.3608831 2.1714645e-07 0.18136422 -0.88821495 -1.6264892e-07 \n\t\t-0.6806801 -0.88821495 -1.6264892e-07 -0.6806801 -0.90909284 -1.6612647e-07 -0.68739206 \n\t\t-0.90909284 -1.6612647e-07 -0.68739206 -0.252891 -2.0387647e-09 0.99598205 -0.80196881 \n\t\t-1.0071435e-07 0.62548012 -0.86267495 -1.1414797e-07 0.51668304 -0.91265482 -1.6602468e-07 \n\t\t-0.66985601 -0.91265482 -1.6602468e-07 -0.66985601 -0.91265482 -1.6602468e-07 -0.66985601 \n\t\t-0.94527698 -1.7117736e-07 -0.67278999 -0.94527698 -1.7117736e-07 -0.67278999 -0.94527698 \n\t\t-1.7117736e-07 -0.67278999 -0.69822252 -2.8940624e-08 2.123358 -0.63199264 -1.2821974e-07 \n\t\t-0.81999797 -0.4509927 -1.0916897e-07 -1.0600642 0.78035539 1.9815305e-07 2.08303 \n\t\t-0.61028254 -1.2370222e-07 -0.7887941 1.8535674 3.3398823e-07 1.2744079 1.8608111 \n\t\t3.352059e-07 1.2770357 1.0896271 1.5322215e-07 -0.40954608 1.0729351 1.5080788e-07 \n\t\t-0.40507424 1.3895251 2.0695032e-07 -0.21167012 1.3895251 2.0695032e-07 -0.21167012 \n\t\t1.3854411 2.0547985e-07 -0.23422009;\n\tsetAttr \".pt[10624:10789]\" 1.140879 1.631501e-07 -0.3556821 1.075639 1.5018124e-07 \n\t\t-0.43315014 0.58992344 9.2382166e-08 0.031647816 0.54020345 8.4695252e-08 0.031647816 \n\t\t-0.59967464 -1.3747145e-08 2.1222177 -0.62310869 -1.83878e-08 2.0948677 -0.79977655 \n\t\t-1.0864468e-07 0.40324035 -0.74065053 -9.9503538e-08 0.40324071 -1.2973588 -1.8047577e-07 \n\t\t0.54022896 -1.2973588 -1.8047577e-07 0.54022896 -1.2973588 -1.8047577e-07 0.54022896 \n\t\t1.4402471 2.4763486e-07 0.67099184 0.62258148 9.7431233e-08 0.031647813 1.8008871 \n\t\t3.1028108e-07 0.85615778 1.8008871 3.1028108e-07 0.85615778 1.8008871 3.1028108e-07 \n\t\t0.85615778 1.7195032 2.9593124e-07 0.80865377 1.7195032 2.9593124e-07 0.80865377 \n\t\t1.3578612 2.1318876e-07 0.087555796 1.3384272 2.0310657e-07 -0.10265821 1.0109593 \n\t\t2.2473898e-07 1.8393677 1.1336633 2.3728359e-07 1.6666678 -1.394845 -2.0771736e-07 \n\t\t0.21316011 -1.3292309 -1.8559101e-07 0.53518528 1.0637832 2.1479981e-07 1.352762 \n\t\t0.0070562675 7.8001623e-09 0.18031347 0.0070561999 7.8001516e-09 0.18031345 0.57713139 \n\t\t1.2643547e-07 0.99999589 0.50913531 1.1592373e-07 1.000016 0.39782536 6.927371e-08 \n\t\t0.20877562 1.4464531 2.4807142e-07 0.65693784 0.76794332 9.7252766e-08 -0.57713413 \n\t\t0.63624936 7.1305223e-08 -0.72729021 -0.7331925 -1.2160866e-07 -0.22183204 -0.7331925 \n\t\t-1.2160866e-07 -0.22183204 -0.72108251 -1.1912737e-07 -0.20546407 0.0070563219 7.8001712e-09 \n\t\t0.18031347 0.0070563219 7.8001712e-09 0.18031347 -0.66630667 -1.3434409e-07 -0.84201592 \n\t\t-0.64394265 -1.2973923e-07 -0.81118208 -0.70965457 -3.3796315e-08 2.04036 -0.68263257 \n\t\t-2.9238183e-08 2.0505838 1.3069352 1.9361198e-07 -0.22697814 0.28167549 5.7818486e-08 \n\t\t0.38352025 0.28167549 5.7818486e-08 0.38352025 0.28167549 5.7818486e-08 0.38352025 \n\t\t-0.62327456 -1.2543906e-07 -0.78149003 0.56403947 5.7804947e-08 -0.79008013 0.49626732 \n\t\t4.5362839e-08 -0.84287018 0.33050922 5.1562474e-09 -1.2347059 0.5353893 4.4068045e-08 \n\t\t-1.0402222 0.5353893 4.4068045e-08 -1.0402222 0.48195541 7.5411322e-08 0.024161832 \n\t\t0.48195541 7.5689861e-08 0.031647816 0.26473534 1.2588332e-07 2.2831779 0.25422734 \n\t\t1.2435748e-07 2.2858319 1.0664533 1.6144057e-07 -0.092384182 0.76409906 1.6059917e-07 \n\t\t1.1413 0.88352305 1.7222342e-07 0.95749396 0.97913319 1.2696759e-07 -0.65604013 0.97913319 \n\t\t1.2696759e-07 -0.65604013 0.97913319 1.2696759e-07 -0.65604013 0.95688719 1.2270588e-07 \n\t\t-0.67814213 0.95688719 1.2270588e-07 -0.67814213 -0.31230667 -2.6629166e-08 0.58197987 \n\t\t-0.2852726 -2.2449585e-08 0.58197987 -0.58289868 -9.4873673e-09 2.166996 -0.59204257 \n\t\t-1.0505003e-08 2.17764 -0.73851264 -1.4693103e-07 -0.88027591 -0.72820264 -1.4494489e-07 \n\t\t-0.8697359 -0.26434669 -8.0969073e-08 -1.077704 -0.2458107 -7.8319822e-08 -1.0835222 \n\t\t1.1224113 1.6124544e-07 -0.33013621 1.1224113 1.6124544e-07 -0.33013621 1.0704893 \n\t\t1.5323759e-07 -0.32961217 1.1811293 1.7801381e-07 -0.12345618 0.59300333 5.2013934e-08 \n\t\t-1.0660622 0.62468535 5.7319912e-08 -1.0551022 -0.72928864 -3.6823412e-08 2.040586 \n\t\t-0.6108647 -5.6476718e-08 1.0203378 -0.55955273 -4.8542933e-08 1.0203578 1.366789 \n\t\t2.0328788e-07 -0.21563013 -0.24501263 -1.6225227e-08 0.58197987 0.54485542 1.6834966e-07 \n\t\t2.260566 0.55560529 1.7002168e-07 2.2608356 0.46108133 3.5955892e-08 -0.9494862 0.46108133 \n\t\t3.5955892e-08 -0.9494862 1.197775 1.7573223e-07 -0.25393811 1.164445 1.6877577e-07 \n\t\t-0.30240813 1.164445 1.6877577e-07 -0.30240813 0.58942932 5.2230035e-08 -1.0454042 \n\t\t0.62111133 5.7536088e-08 -1.0344422 -0.72360468 -1.450023e-07 -0.8903839 -0.72621065 \n\t\t-1.4630916e-07 -0.91467816 0.96544725 2.0564427e-07 1.5152941 0.28901735 1.298696e-07 \n\t\t2.289418 0.28592935 1.2956259e-07 2.293998 -0.93876463 -1.2239154e-07 0.61129004 \n\t\t-0.99789274 -1.3153299e-07 0.61129004 1.1322333 1.6449968e-07 -0.28348818 0.54020339 \n\t\t8.4695245e-08 0.031647835 0.58992344 9.2382159e-08 0.031647809 0.95520306 1.2264465e-07 \n\t\t-0.67279011 0.95520306 1.2264465e-07 -0.67279011 0.95520306 1.2264465e-07 -0.67279011 \n\t\t0.94086301 1.1981122e-07 -0.68935615 0.94086301 1.1981122e-07 -0.68935615 -0.19839263 \n\t\t-9.0175849e-09 0.58197987 0.69201946 7.7241268e-08 -0.79948419 0.71874344 8.0053482e-08 \n\t\t-0.83494419 0.8514632 1.9301936e-07 1.6496037 0.97680306 1.261805e-07 -0.66751212 \n\t\t0.97680306 1.261805e-07 -0.66751212 0.97680306 1.261805e-07 -0.66751212 -0.73890865 \n\t\t-1.4690706e-07 -0.87798589 -0.71432865 -1.4400585e-07 -0.90214616 -1.0753329 -1.82096e-07 \n\t\t-0.42584395 1.3577831 2.023706e-07 -0.20286211 1.3254911 1.9623798e-07 -0.23350415 \n\t\t-0.3231287 -2.8302292e-08 0.58197987 1.1589713 1.6881053e-07 -0.27873018 1.1883593 \n\t\t1.7720335e-07 -0.17527822 1.1883593 1.7720335e-07 -0.17527822 0.91901916 1.1650715e-07 \n\t\t-0.68739206 0.91901916 1.1650715e-07 -0.68739206 -0.64993268 -1.3928302e-07 -1.0427862 \n\t\t-0.64476866 -1.3838699e-07 -1.0401622 -0.64476866 -1.3838699e-07 -1.0401622 0.0070562055 \n\t\t7.8001525e-09 0.18031345 0.0070562055 7.8001525e-09 0.18031345 -0.72405267 -1.4498464e-07 \n\t\t-0.88804787 1.2036012 1.8102398e-07 -0.13592818 -0.3186067 -8.96462e-08 -1.0854522 \n\t\t-0.29120868 -8.5656147e-08 -1.0920579 1.1649172 1.7383147e-07 -0.16849622 -0.55650854 \n\t\t-4.6764952e-09 2.1866379 -0.56010652 -6.2045835e-09 2.1605196 -1.0735749 -1.8190003e-07 \n\t\t-0.42788187 -1.2214509 -2.0211814e-07 -0.3568199 -0.71375865 -1.4279917e-07 -0.8720842 \n\t\t0.8152892 1.8850696e-07 1.6786361 0.8152892 1.8850696e-07 1.6786361 0.63353932 5.8974983e-08 \n\t\t-1.0474102 0.48195538 7.5923531e-08 0.03792784 0.53600937 8.4280501e-08 0.03792784 \n\t\t-0.31474268 -2.7005781e-08 0.58197987 -0.73843253 -3.7841048e-08 2.05123 -0.69446665 \n\t\t-1.3880862e-07 -0.84499592 0.70264935 7.6575816e-08 -0.8615362 -0.31503469 -8.8325294e-08 \n\t\t-1.0647942 1.1258932 1.6070032e-07 -0.35925421 -0.86927062 -1.1164749e-07 0.61129004 \n\t\t-0.69206464 -1.3955859e-07 -0.87513214 -1.0370448 -1.3758606e-07 0.61129004 -1.0511687 \n\t\t-1.3976967e-07 0.61129004 0.72310722 7.6315629e-08 -0.95353222 0.77844721 8.5825e-08 \n\t\t-0.92790425 0.77844721 8.5825e-08 -0.92790425 1.1598092 1.639454e-07 -0.4129642 1.1662192 \n\t\t1.6501284e-07 -0.41091022 0.48195541 7.7922238e-08 0.091643825 0.53600943 8.6279215e-08 \n\t\t0.091643825 0.93145108 1.344651e-07 -0.25642005 0.93909907 1.405034e-07 -0.12591611 \n\t\t-1.0657129 -1.8088056e-07 -0.4331499 0.51433527 4.0844775e-08 -1.0393683;\n\tsetAttr \".pt[10790:10955]\" 0.51433527 4.0844775e-08 -1.0393683 0.48059523 3.5982207e-08 \n\t\t-1.0298603 1.164253 1.6596852e-07 -0.37705615 1.164253 1.6596852e-07 -0.37705615 \n\t\t1.2430151 1.7939627e-07 -0.34344015 -0.2897867 -2.3147484e-08 0.58197987 -0.19998263 \n\t\t4.7230156e-08 2.1002679 0.0049633379 7.9807393e-08 2.124234 -1.0630088 -1.7941781e-07 \n\t\t-0.405074 1.1331512 1.5614059e-07 -0.51195621 1.1293732 1.5559415e-07 -0.51094425 \n\t\t0.73372132 8.2323652e-08 -0.8361662 0.70451349 7.9269704e-08 -0.79688221 0.88620305 \n\t\t1.120144e-07 -0.67178398 0.88620305 1.120144e-07 -0.67178398 0.89814103 1.1352905e-07 \n\t\t-0.6806801 0.89814103 1.1352905e-07 -0.6806801 -1.4293469 -1.9721203e-07 0.63885212 \n\t\t-1.435385 -1.9882765e-07 0.62052011 -1.435385 -1.9882765e-07 0.62052011 -1.435385 \n\t\t-1.9882765e-07 0.62052011 -0.94757646 -1.0465033e-07 1.124706 -0.95283049 -1.0840949e-07 \n\t\t1.045508 0.88776302 1.1254142e-07 -0.66410202 0.88776302 1.1254142e-07 -0.66410202 \n\t\t0.87919742 1.6024023e-07 0.65341383 0.82084543 1.5121877e-07 0.65341383 -0.97583264 \n\t\t-9.2713769e-08 1.562912 0.28301933 1.2870474e-07 2.2830338 0.27486733 1.2741314e-07 \n\t\t2.2821937 0.34556738 7.4723737e-08 0.57238185 0.3363173 7.3294053e-08 0.57239306 \n\t\t1.435627 2.3110498e-07 0.24594085 1.430073 2.3012358e-07 0.24264245 0.48195541 7.8337784e-08 \n\t\t0.10281183 0.42057139 6.8847562e-08 0.10281184 -1.423105 -1.95491e-07 0.65917003 \n\t\t1.1177449 1.5364189e-07 -0.51509613 1.1206789 1.5406617e-07 -0.5158841 1.0532068 \n\t\t1.4308127e-07 -0.53075814 1.0939571 1.5160502e-07 -0.47099814 1.0939571 1.5160502e-07 \n\t\t-0.47099814 1.3030452 1.9373063e-07 -0.20762616 1.3030452 1.9373063e-07 -0.20762616 \n\t\t1.3030452 1.9373063e-07 -0.20762616 -0.7512126 -1.2421269e-07 -0.21694209 -0.7512126 \n\t\t-1.2421269e-07 -0.21694209 0.35145539 5.7746398e-08 0.091643855 0.3817614 6.243183e-08 \n\t\t0.091643855 -0.93876457 -1.2239154e-07 0.61128998 -0.86927056 -1.1164748e-07 0.61128998 \n\t\t-1.416925 -1.9359766e-07 0.68437612 -0.40751067 1.1520303e-08 2.00284 1.1070312 2.2860213e-07 \n\t\t1.544008 0.98824924 2.1639786e-07 1.709558 0.34200317 3.639393e-09 -1.32323 0.34200317 \n\t\t3.639393e-09 -1.32323 -1.7493629 -2.2363426e-07 1.2584262 -0.37183663 -5.6076221e-08 \n\t\t0.037927933 -0.41797462 -6.3209342e-08 0.037927929 -0.81827062 -6.6178899e-08 1.6213697 \n\t\t-0.9689526 -9.5309417e-08 1.464566 1.1559273 1.7872823e-07 0.00045982175 1.1788692 \n\t\t1.8419466e-07 0.052047819 -0.34152862 -5.1390479e-08 0.037927903 1.4330311 2.4607937e-07 \n\t\t0.65916979 1.426851 2.460618e-07 0.68437588 -0.5330826 -1.170381e-08 1.90044 -0.99789268 \n\t\t-1.3153299e-07 0.61129004 -1.364265 -1.9149685e-07 0.52203107 -1.5365888 -2.158681e-07 \n\t\t0.58305812 0.87590116 1.117877e-07 -0.63507205 0.87590116 1.117877e-07 -0.63507205 \n\t\t0.87590116 1.117877e-07 -0.63507205 -0.31367496 -9.130698e-08 -1.150578 -0.31367496 \n\t\t-9.130698e-08 -1.150578 -0.22714096 -7.8849979e-08 -1.175344 1.441965 2.4798962e-07 \n\t\t0.67338789 0.28799933 1.2956924e-07 2.2855759 -0.35191286 -1.0371164e-07 -1.325078 \n\t\t-0.34893888 -1.0368951e-07 -1.3368403 0.54267931 1.6277247e-07 2.1197181 0.52858734 \n\t\t1.6119692e-07 2.1359277 0.0049626804 -4.3258783e-08 -1.183218 0.0049626804 -4.3258783e-08 \n\t\t-1.183218 0.0049626804 -4.3258783e-08 -1.183218 -0.0050038034 -4.4694648e-08 -1.1803962 \n\t\t0.68473148 7.6639225e-08 -0.78538221 0.66396135 7.4536153e-08 -0.75560218 0.89596313 \n\t\t1.1538505e-07 -0.62175006 0.86295515 1.1081248e-07 -0.60749018 0.54913121 1.6474844e-07 \n\t\t2.1460156 0.54083335 1.6403368e-07 2.161284 0.56322336 1.6632453e-07 2.1298199 0.25936133 \n\t\t1.2587114e-07 2.3051801 0.26986933 1.2739697e-07 2.302526 -1.0370448 -1.3878953e-07 \n\t\t0.57894593 -1.0511687 -1.4097316e-07 0.57894593 0.54231334 4.3696684e-08 -1.0789722 \n\t\t-1.0370448 -1.3758606e-07 0.61129004 1.2703772 1.8873099e-07 -0.20625617 1.7619132 \n\t\t3.0371075e-07 0.84151578 -1.8096206 -2.3586803e-07 1.180012 -1.8065746 -2.3478943e-07 \n\t\t1.1963438 -1.8065746 -2.3478943e-07 1.1963438 -1.8336829 -2.4277969e-07 1.094238 \n\t\t1.0971373 1.6506752e-07 -0.12240224 1.1308973 1.7284898e-07 -0.053546187 0.089395754 \n\t\t3.5121097e-08 0.57245028 0.077460371 3.3275622e-08 0.57244444 0.58214748 9.1413632e-08 \n\t\t0.037927814 -1.3644887 -1.7766268e-07 0.89476001 -1.390829 -2.2533774e-07 -0.27708188 \n\t\t-1.390829 -2.2533774e-07 -0.27708188 -1.414845 -2.2796392e-07 -0.24787387 1.0977089 \n\t\t1.5074397e-07 -0.50972819 1.0835432 1.4869514e-07 -0.50593221 -1.8064169 -2.3436012e-07 \n\t\t1.207226 -1.8064169 -2.3436012e-07 1.207226 -1.8064169 -2.3436012e-07 1.207226 -1.7838666 \n\t\t-2.3148512e-07 1.1907958 0.53171527 1.6611601e-07 2.2551336 0.53171527 1.6611601e-07 \n\t\t2.2551336 0.41631728 1.4588601e-07 2.190928 0.028880058 1.1775086e-08 0.19646226 \n\t\t0.028880058 1.1775086e-08 0.19646226 0.028880233 1.1775113e-08 0.19646226 0.028880233 \n\t\t1.1775113e-08 0.19646226 -0.86927062 -1.1285097e-07 0.57894593 -0.79977661 -1.0210691e-07 \n\t\t0.57894593 -1.400859 -2.2636661e-07 -0.26305792 -1.400859 -2.2636661e-07 -0.26305792 \n\t\t-0.74594867 -1.4794568e-07 -0.87664789 -0.72340065 -1.4345063e-07 -0.84952992 0.27921933 \n\t\t1.2869613e-07 2.2985916 -0.92152488 -1.5201259e-07 -0.25641987 -0.92917287 -1.4833911e-07 \n\t\t-0.12591593 -0.11123613 -7.746231e-08 -1.6196402 -0.070962913 -7.1456334e-08 -1.6255642 \n\t\t1.0409789 1.6441022e-07 0.093273915 1.0442389 1.6264451e-07 0.0322739 -0.87912863 \n\t\t-1.6012623e-07 -0.65063602 -0.99744469 -1.7058997e-07 -0.44024405 -0.3303346 -4.9659839e-08 \n\t\t0.037927907 0.76787531 8.5628216e-08 -0.88926619 0.75587535 8.4242473e-08 -0.87664813 \n\t\t-0.32682666 -9.4772382e-08 -1.1890662 -0.32682666 -9.4081415e-08 -1.1704962 -0.92762262 \n\t\t-1.1910156e-07 0.65341395 -0.86927062 -1.1008011e-07 0.65341395 0.9575035 1.8988285e-07 \n\t\t1.1247059 -0.87697464 -1.5948135e-07 -0.64225405 -0.98612267 -1.6963163e-07 -0.46153197 \n\t\t-0.97727048 -1.2677732e-07 0.65341395 0.35712716 5.3605578e-09 -1.3398139 0.35712716 \n\t\t5.3605578e-09 -1.3398139 0.73332536 8.176518e-08 -0.84953016 0.52122331 1.6448149e-07 \n\t\t2.2547998 -0.69733864 -1.3818527e-07 -0.81630987 -0.67480457 -1.3355063e-07 -0.78538209 \n\t\t0.55541521 1.642766e-07 2.107224 0.25567338 -1.0594291e-09 -1.0908082 0.25567338 \n\t\t-1.0594291e-09 -1.0908082 0.26217535 -5.419809e-11 -1.0908083 0.26217535 -5.419809e-11 \n\t\t-1.0908083 0.48195541 8.1088764e-08 0.17674543;\n\tsetAttr \".pt[10956:11121]\" 0.42790139 7.2731787e-08 0.17674544 0.96275753 1.8774828e-07 \n\t\t1.0455078 -0.70899868 -1.4113868e-07 -0.84723622 -0.68678468 -1.36672e-07 -0.81949216 \n\t\t0.33757114 1.8539097e-09 -1.3528003 -0.47202861 -7.1566312e-08 0.037927911 -0.41797459 \n\t\t-6.3209342e-08 0.037927911 -0.90065449 -1.429956e-07 -0.10080209 -0.91611451 -1.4496011e-07 \n\t\t-0.089362115 0.40635726 2.2501323e-08 -1.0837022 0.34062725 1.1988838e-08 -1.0931182 \n\t\t0.76824534 8.5788869e-08 -0.88648611 0.34517106 3.1220675e-09 -1.350296 0.34517106 \n\t\t3.1220675e-09 -1.350296 0.35877511 5.4366618e-09 -1.3446159 0.35877511 5.4366618e-09 \n\t\t-1.3446159 -0.89858049 -1.4265471e-07 -0.10025805 -0.89858049 -1.4265471e-07 -0.10025805 \n\t\t-0.47202861 -7.1799981e-08 0.031647906 -0.4137806 -6.2794598e-08 0.031647906 -0.887541 \n\t\t-1.5712155e-07 -0.53493005 -0.88360894 -1.5746865e-07 -0.56059605 -0.88360894 -1.5746865e-07 \n\t\t-0.56059605 1.2874755 2.3836975e-07 1.0567617 1.2874755 2.3836975e-07 1.0567617 1.2874755 \n\t\t2.3836975e-07 1.0567617 -0.85352254 -1.5440783e-07 -0.60334605 1.2799336 2.3797479e-07 \n\t\t1.0774838 1.2799336 2.3797479e-07 1.0774838 1.2799336 2.3797479e-07 1.0774838 1.1302793 \n\t\t2.1270296e-07 1.0201137 -1.2707009 -1.9656572e-07 -0.0029599168 -1.396927 -2.1379589e-07 \n\t\t0.058448099 -1.396927 -2.1379589e-07 0.058448099 -0.97727042 -1.2677732e-07 0.65341395 \n\t\t-0.92762256 -1.1910156e-07 0.65341395 1.5889533 2.8906675e-07 1.1666098 1.5889533 \n\t\t2.8906675e-07 1.1666098 0.47873324 3.3371997e-08 -1.0922742 0.40992925 2.228491e-08 \n\t\t-1.1043602 -1.3541028 -1.8609998e-07 0.62485003 -1.3541028 -1.8609998e-07 0.62485003 \n\t\t-1.3304288 -1.8245187e-07 0.62452805 -1.3304288 -1.8245187e-07 0.62452805 0.58214748 \n\t\t9.6578894e-08 0.17674622 0.53600943 8.9445749e-08 0.17674582 -1.8407826 -2.4457955e-07 \n\t\t1.075366 -0.16385633 -7.7926721e-08 -1.413482 -0.12064495 -7.1502221e-08 -1.4203662 \n\t\t-0.14028791 -8.1499813e-08 -1.6074382 1.1766193 2.2996085e-07 1.2913818 1.1337069 \n\t\t2.1618526e-07 1.0994599 1.1453412 2.1760867e-07 1.0893738 1.1453412 2.1760867e-07 \n\t\t1.0893738 1.0424149 1.5689126e-07 -0.11476807 -0.64112091 -1.3397624e-07 -0.93677795 \n\t\t-0.78821099 -1.5104055e-07 -0.78422201 0.77119946 1.435433e-07 0.65341383 0.73832345 \n\t\t1.3846054e-07 0.65341383 0.37644714 7.4378157e-09 -1.3642622 0.37484315 7.513032e-09 \n\t\t-1.355576 0.38203308 8.6832612e-09 -1.3540002 0.36435917 6.3078662e-09 -1.344404 \n\t\t0.38366914 9.3710959e-09 -1.3423122 -0.53027654 -8.080535e-08 0.031647906 -0.89524049 \n\t\t-1.4199836e-07 -0.096496046 -1.397591 -2.1457551e-07 0.040254109 -1.397591 -2.1457551e-07 \n\t\t0.040254109 1.0910091 2.1149579e-07 1.15084 0.9465031 1.4712745e-07 0.021343898 0.94620109 \n\t\t1.4905795e-07 0.074481912 -0.97260857 -1.6733037e-07 -0.45583609 0.23816936 1.2219216e-07 \n\t\t2.2943597 0.24487935 1.230587e-07 2.289768 -0.37643468 -9.804198e-08 -1.0708143 -0.3044067 \n\t\t-8.7466809e-08 -1.0858819 0.36215109 5.7552052e-09 -1.3500823 0.37157717 6.6645152e-09 \n\t\t-1.36481 -0.52884066 -1.2069823e-07 -1.0464562 -0.59083867 -1.3004696e-07 -1.040102 \n\t\t-1.422753 -1.9665255e-07 0.62649012 0.52734345 8.9297743e-08 0.20877562 0.48195541 \n\t\t8.2280565e-08 0.20877564 -1.0931964 -1.2714227e-07 1.125284 -0.90020692 -1.5601643e-07 \n\t\t-0.45260188 -0.8676545 -1.3849302e-07 -0.11691004 -0.41753253 -4.6268042e-08 0.4913955 \n\t\t-0.41753253 -4.6268042e-08 0.4913955 1.1609712 1.6737447e-07 -0.32563424 0.23609936 \n\t\t1.2218551e-07 2.3027821 0.24107733 1.230497e-07 2.3053236 -1.7095768 -2.3421862e-07 \n\t\t0.80865413 -1.7095768 -2.3421862e-07 0.80865413 -1.7611926 -2.3881216e-07 0.89966613 \n\t\t-1.7611926 -2.3881216e-07 0.89966613 -0.61476266 -1.3369726e-07 -1.0388 -0.61476266 \n\t\t-1.3369726e-07 -1.0388 -0.60985863 -1.3443739e-07 -1.0790679 0.67737746 7.5210551e-08 \n\t\t-0.79322213 0.65948343 7.3394148e-08 -0.76768821 0.77119941 1.435433e-07 0.65341383 \n\t\t-0.90495485 -1.6180171e-07 -0.58835584 -0.79977655 -1.0090342e-07 0.61128998 -1.2940028 \n\t\t-1.8523217e-07 0.3984544 -1.2979248 -1.8341449e-07 0.4636012 -0.24948266 -1.7273488e-08 \n\t\t0.57238066 -0.2938866 -2.4138719e-08 0.5723753 1.3438631 2.0216967e-07 -0.15042424 \n\t\t1.3515371 2.0388252e-07 -0.13627625 1.3515371 2.0388252e-07 -0.13627625 1.0689889 \n\t\t2.094143e-07 1.186394 1.039753 1.5183629e-07 -0.23956208 -0.32682666 -8.5378446e-08 \n\t\t-0.93660015 -0.73574668 -3.6700236e-08 2.07073 -0.72165656 -3.358128e-08 2.0960081 \n\t\t0.78707504 9.2990632e-08 -0.77117407 0.90275115 1.1803991e-07 -0.5786041 0.30879137 \n\t\t6.9038926e-08 0.57240629 -0.73723048 -1.2243596e-07 -0.22728807 -0.73723048 -1.2243596e-07 \n\t\t-0.22728807 1.8772632 3.2890324e-07 1.0392897 0.37271512 7.7535445e-09 -1.34027 0.37271512 \n\t\t7.7535445e-09 -1.34027 0.69671136 7.7222175e-08 -0.81949216 1.0855533 1.5750066e-07 \n\t\t-0.27763221 1.3126291 1.9846789e-07 -0.12013221 0.62364948 1.0299527e-07 0.17674623 \n\t\t-0.75831866 -1.502242e-07 -0.88648611 -0.75794864 -1.5027042e-07 -0.88926595 -0.60883665 \n\t\t-1.3561481e-07 -1.1149582 -0.60883665 -1.3561481e-07 -1.1149582 -0.61784863 -1.3712858e-07 \n\t\t-1.118196 -1.0101447 -1.3185982e-07 0.65341395 0.33207926 9.7425703e-09 -1.1179702 \n\t\t0.29899326 4.4866146e-09 -1.1217523 -0.86927056 -1.1285096e-07 0.57894593 -0.79977655 \n\t\t-1.021069e-07 0.57894593 0.68224937 7.4607733e-08 -0.8296662 0.66287148 7.2594958e-08 \n\t\t-0.80324417 -1.4709769 -2.2555282e-07 0.050156072 -1.5128909 -2.3099076e-07 0.078164086 \n\t\t-1.5128909 -2.3099076e-07 0.078164086 -0.99444687 -1.7361123e-07 -0.53389794 -1.024989 \n\t\t-1.809782e-07 -0.6049841 -1.024989 -1.809782e-07 -0.6049841 -0.95261878 -1.7015202e-07 \n\t\t-0.61472797 -1.5982705 -2.0300045e-07 1.1851721 -1.6674387 -2.1275531e-07 1.2104038 \n\t\t-1.6674387 -2.1275531e-07 1.2104038 -1.6674387 -2.1275531e-07 1.2104038 -1.0220047 \n\t\t-1.3369342e-07 0.65341395 -1.775713 -2.2879189e-07 1.2292982 -1.763871 -2.2568197e-07 \n\t\t1.2636743 -1.763871 -2.2568197e-07 1.2636743 0.58214748 9.3412346e-08 0.091643825 \n\t\t0.73812932 8.1756049e-08 -0.86973614 0.71892536 7.9624236e-08 -0.84723622 -1.6844187 \n\t\t-2.1514903e-07 1.216624 -1.6844187 -2.1514903e-07 1.216624 -1.6844187 -2.1514903e-07 \n\t\t1.216624 -1.5375749 -1.8140095e-07 1.513474 -1.5375749 -1.8140095e-07 1.513474 0.24922934 \n\t\t1.2434131e-07 2.306164 0.72331536 7.9087187e-08 -0.87991017 0.70430934 7.6984641e-08 \n\t\t-0.85744613 -1.3522109 -2.0874518e-07 0.0083900616;\n\tsetAttr \".pt[11122:11287]\" -1.453409 -2.2210708e-07 0.069766089 -1.3627968 -2.0937753e-07 \n\t\t0.035380039 -1.3706329 -2.1002525e-07 0.050532043 -1.3706329 -2.1002525e-07 0.050532043 \n\t\t0.48195538 8.1088757e-08 0.17674544 0.42790136 7.273178e-08 0.17674544 0.60291946 \n\t\t6.3501162e-08 -0.79854017 0.67394537 7.6819589e-08 -0.73571819 -1.5291928 -1.7876843e-07 \n\t\t1.5493963 -0.93195063 -1.6463534e-07 -0.55234212 -0.97761458 -1.6981137e-07 -0.50171399 \n\t\t-0.97761458 -1.6981137e-07 -0.50171399 -0.9365769 -1.4400446e-07 0.021344077 0.37986314 \n\t\t8.9653005e-09 -1.337404 1.0505033 1.5266752e-07 -0.2618902 1.0469713 1.8461139e-07 \n\t\t0.6112898 1.0078194 1.7855832e-07 0.6112898 -1.8436406 -2.3761531e-07 1.2744081 -1.7885489 \n\t\t-2.2984736e-07 1.2542663 -1.7885489 -2.2984736e-07 1.2542663 -1.7885489 -2.2984736e-07 \n\t\t1.2542663 1.3341073 2.3276922e-07 0.7124877 1.3341073 2.3276922e-07 0.7124877 1.3683171 \n\t\t2.3776457e-07 0.70459569 1.3683171 2.3776457e-07 0.70459569 -1.8508848 -2.3863751e-07 \n\t\t1.2770362 0.94869149 1.6941692e-07 0.6112898 0.69856346 1.2367271e-07 0.42118943 \n\t\t0.74071741 1.3018987e-07 0.42118943 -1.5344346 -1.7914854e-07 1.5609603 -1.5344346 \n\t\t-1.7914854e-07 1.5609603 -1.5344346 -1.7914854e-07 1.5609603 -0.60620266 -1.3484741e-07 \n\t\t-1.105278 -0.60620266 -1.3484741e-07 -1.105278 0.87919748 1.5867286e-07 0.6112898 \n\t\t1.3313972 2.3182969e-07 0.69849777 1.3314852 2.3209289e-07 0.70520568 1.3314852 2.3209289e-07 \n\t\t0.70520568 -1.361781 -2.1727982e-07 -0.18121788 -1.347857 -2.1593246e-07 -0.20286188 \n\t\t-0.47202864 -6.5209292e-08 0.20877573 -0.42664063 -5.8192114e-08 0.20877571 -1.1919568 \n\t\t-1.9472047e-07 -0.28055397 -1.2706069 -2.0532723e-07 -0.23881994 1.0610952 1.8679501e-07 \n\t\t0.6112898 0.69856548 1.2367302e-07 0.4211894 0.68335748 1.213218e-07 0.42118981 -0.60786867 \n\t\t-1.3450511e-07 -1.0891563 -1.375705 -2.1862711e-07 -0.15957192 -1.3253828 -2.0230532e-07 \n\t\t0.069992036 -0.4321827 -1.1309185e-07 -1.24365 -0.39971271 -1.0832458e-07 -1.250442 \n\t\t0.65462536 6.9972081e-08 -0.83947212 0.57970333 5.6680346e-08 -0.8853882 0.80503345 \n\t\t1.0254955e-07 -0.58889216 0.95827544 1.3444674e-07 -0.36837021 0.20831937 5.3861761e-08 \n\t\t0.58197987 0.16220416 4.6732161e-08 0.58197987 -1.0448948 -1.8347934e-07 -0.58949399 \n\t\t-1.0767171 -1.8592304e-07 -0.522946 0.94869143 1.6941691e-07 0.61128986 0.87919742 \n\t\t1.5867285e-07 0.61128986 0.26081932 6.1978469e-08 0.58197987 0.21470533 5.4849057e-08 \n\t\t0.58197987 -1.3797909 -2.1841967e-07 -0.13701989 -1.3797909 -2.1841967e-07 -0.13701989 \n\t\t0.83564925 1.0332499e-07 -0.69526213 0.71274334 8.0688977e-08 -0.79293412 0.25493735 \n\t\t6.1069095e-08 0.58197987 -0.65571856 -1.3098943e-07 -0.79585201 -0.58635867 -1.2196601e-07 \n\t\t-0.84153789 -0.75566846 -1.2444637e-07 -0.20470804 -0.76778048 -1.2692797e-07 -0.22107609 \n\t\t-0.76778048 -1.2692797e-07 -0.22107609 1.0078193 1.7855832e-07 0.61128986 -0.57222056 \n\t\t-8.50577e-08 0.091643929 -0.60252857 -8.9743438e-08 0.091643944 -0.72379464 -1.430143e-07 \n\t\t-0.8361662 -0.74598664 -1.4760782e-07 -0.86740988 -0.25056866 4.7605543e-08 2.320544 \n\t\t-0.26631865 4.5022514e-08 2.316566 0.30599716 -2.8373321e-09 -1.347688 0.3066631 \n\t\t-3.4545915e-09 -1.367044 0.29519939 6.7293769e-08 0.58197987 0.32591507 -2.6688685e-10 \n\t\t-1.361366 0.31873912 -1.0601272e-09 -1.3528682 0.16808714 4.7641691e-08 0.58197987 \n\t\t0.12782875 4.1417579e-08 0.58197987 -0.3238346 -4.6240661e-08 0.10281192 -0.35825059 \n\t\t-5.1561511e-08 0.10281192 1.8803352 3.378853e-07 1.2679218 1.8803352 3.378853e-07 \n\t\t1.2679218 1.8699812 3.3735398e-07 1.2966638 1.8699812 3.3735398e-07 1.2966638 -0.37382671 \n\t\t-1.0456785e-07 -1.257036 1.0395813 1.4205547e-07 -0.5017122 1.0395813 1.4205547e-07 \n\t\t-0.5017122 1.0745953 1.4818103e-07 -0.4825702 1.0745953 1.4818103e-07 -0.4825702 \n\t\t-0.44528064 -8.5947512e-08 -0.45971203 -0.28621665 -6.5735108e-08 -0.57741404 -0.3031885 \n\t\t-3.1738235e-08 0.40678507 -0.3031885 -3.1738235e-08 0.40678507 -0.3031885 -3.1738235e-08 \n\t\t0.40678507 -0.4175325 -4.6268028e-08 0.49139589 -0.4175325 -4.6268028e-08 0.49139589 \n\t\t-0.3111206 -4.4275026e-08 0.10281191 -0.53962266 -1.2916544e-07 -1.2292162 -0.52883667 \n\t\t-1.2751975e-07 -1.229804 -0.93627489 -1.4198056e-07 0.074482091 -0.19008611 -8.1341597e-08 \n\t\t-1.3962719 -0.13995171 -8.148259e-08 -1.6083722 -0.13995171 -8.148259e-08 -1.6083722 \n\t\t1.4312891 2.2346963e-07 0.058761857 1.4312891 2.2346963e-07 0.058761857 1.4685071 \n\t\t2.2983338e-07 0.075147852 1.0742673 1.5604989e-07 -0.26972821 1.0742673 1.5604989e-07 \n\t\t-0.26972821 1.0652993 1.5472823e-07 -0.26798621 1.0652993 1.5472823e-07 -0.26798621 \n\t\t0.80970341 1.4792879e-07 0.61128986 0.75057739 1.3878767e-07 0.61128986 0.44815528 \n\t\t2.397497e-08 -1.2177702 0.47328126 2.8023788e-08 -1.2133563 1.019793 1.4095836e-07 \n\t\t-0.44897613 -0.33817494 -9.7615889e-08 -1.218334 -0.32573697 -9.2986006e-08 -1.1455842 \n\t\t-0.32573697 -9.2986006e-08 -1.1455842 -0.32573697 -9.2986006e-08 -1.1455842 0.87919748 \n\t\t1.5190842e-07 0.4294928 0.80970347 1.4116434e-07 0.429492 -1.8839426 -2.4955622e-07 \n\t\t1.1209481 -1.8823348 -2.500571e-07 1.100806 -0.55315065 -1.3127985e-07 -1.2298319 \n\t\t1.1035732 1.5186262e-07 -0.50403023 1.085331 1.4922418e-07 -0.49914211 -0.93675888 \n\t\t-1.4056586e-07 0.11451409 -0.93675888 -1.4056586e-07 0.11451409 1.0778893 1.571122e-07 \n\t\t-0.25622818 1.0778893 1.571122e-07 -0.25622818 -0.33304092 -9.6306067e-08 -1.204464 \n\t\t-0.33304092 -9.6306067e-08 -1.204464 -0.33304092 -9.6306067e-08 -1.204464 0.33375317 \n\t\t1.9125614e-09 -1.3353602 -0.23538461 5.000798e-08 2.3220201 -0.53341252 -7.8642266e-08 \n\t\t0.10281192 -0.58580655 -8.6742595e-08 0.10281193 1.0670872 1.4658549e-07 -0.49425423 \n\t\t-0.55547863 -1.3168375e-07 -1.231014 0.3246693 7.1849939e-08 0.58197987 0.29971331 \n\t\t6.7991643e-08 0.58197987 -0.34508893 -1.0027907e-07 -1.2611799 0.75057739 1.3758419e-07 \n\t\t0.57894582 0.7114256 1.3153115e-07 0.57894582 0.80970341 1.4672531e-07 0.57894582 \n\t\t0.91013312 1.2386957e-07 -0.45260212 -1.8792828 -2.4993628e-07 1.091372 -1.8522369 \n\t\t-2.462312e-07 1.0785701 -0.74995476 -1.5167726e-07 -0.96028996 -0.84116876 -1.6171933e-07 \n\t\t-0.85117602 0.098355755 3.6860936e-08 0.58197987 0.12331118 4.0719147e-08 0.58197987 \n\t\t1.4967511 2.5641356e-07 0.67214578 1.5053791 2.589517e-07 0.70450997 1.5053791 2.589517e-07 \n\t\t0.70450997 -0.53027862 -8.080567e-08 0.031647924;\n\tsetAttr \".pt[11288:11453]\" -0.57999653 -8.8492271e-08 0.031647928 0.32223335 7.147333e-08 \n\t\t0.58197987 -0.50088865 -1.2330545e-07 -1.2326683 0.33305532 7.3146452e-08 0.58197987 \n\t\t1.3797252 2.2172098e-07 0.22601682 1.4027711 2.2106231e-07 0.11255782 -0.99789268 \n\t\t-1.3927423e-07 0.40324074 -1.0370448 -1.4532729e-07 0.40324077 1.0977089 1.5074397e-07 \n\t\t-0.50972819 1.0835432 1.4869514e-07 -0.50593221 1.3543192 2.3033314e-07 0.56303519 \n\t\t1.3652111 2.351567e-07 0.64741385 1.3652111 2.351567e-07 0.64741385 0.089971967 3.5564767e-08 \n\t\t0.58197987 1.0668772 1.5453855e-07 -0.27964017 1.0668772 1.5453855e-07 -0.27964017 \n\t\t1.004373 1.3541451e-07 -0.53389806 0.88690132 1.1322113e-07 -0.64225417 1.1282513 \n\t\t1.5444978e-07 -0.53703821 -0.53477669 -1.2883758e-07 -1.24054 -0.55095667 -1.3113078e-07 \n\t\t-1.234942 1.0469633 1.5232355e-07 -0.25642619 1.339157 2.2695272e-07 0.53518504 1.2747989 \n\t\t2.2485847e-07 0.74631196 1.3797013 2.5191315e-07 1.0375439 1.228533 2.4133803e-07 \n\t\t1.381444 -1.0499047 -1.4700655e-07 0.41154397 -1.0651127 -1.4935779e-07 0.41154334 \n\t\t-0.33986092 -9.8971235e-08 -1.2477542 -0.61265457 -9.3541338e-08 0.031647928 -0.46732068 \n\t\t-1.1829468e-07 -1.237478 1.1839272 1.7069138e-07 -0.33187425 1.1839272 1.7069138e-07 \n\t\t-0.33187425 1.1950132 1.72285e-07 -0.3351081 -0.57222253 -8.5058005e-08 0.091643937 \n\t\t-0.52608258 -7.7924568e-08 0.091643937 0.74071747 1.3018989e-07 0.42118943 1.0469713 \n\t\t1.8461139e-07 0.6112898 1.1386973 1.6567274e-07 -0.27882019 1.8534912 3.3337574e-07 \n\t\t1.2582638 0.10079336 3.7237797e-08 0.58197987 -1.8791949 -2.4505036e-07 1.2223182 \n\t\t-1.8791949 -2.4505036e-07 1.2223182 -1.8564866 -2.4174599e-07 1.2167702 -0.37183464 \n\t\t-5.1829652e-08 0.15204792 -0.41797462 -5.896301e-08 0.15204991 -0.29445857 -3.0628893e-08 \n\t\t0.40032572 -0.29445857 -3.0628893e-08 0.40032572 -0.28047657 -2.8852176e-08 0.38997984 \n\t\t-0.28047657 -2.8852176e-08 0.38997984 -0.28047657 -2.8852176e-08 0.38997984 -0.3585529 \n\t\t-1.045018e-07 -1.3187243 -0.62998694 -1.3177927e-07 -0.92399597 -0.77714896 -1.4884482e-07 \n\t\t-0.77117395 -0.62471652 -9.5406165e-08 0.031647932 -0.61265457 -9.3541331e-08 0.031647932 \n\t\t0.80437744 1.4003199e-07 0.42118943 1.0488452 1.4394708e-07 -0.48936611 1.1839292 \n\t\t1.7273871e-07 -0.27686018 1.5465151 2.6079243e-07 0.58305782 -0.59100455 -8.3603453e-08 \n\t\t0.20877574 1.0948712 1.518916e-07 -0.46709412 1.0948712 1.518916e-07 -0.46709412 \n\t\t1.0853932 1.4969936e-07 -0.4866302 -0.34133491 -1.0200986e-07 -1.3232939 0.89746696 \n\t\t1.1884802e-07 -0.53493005 -0.35825062 -5.0145054e-08 0.14087991 1.1569914 1.683829e-07 \n\t\t-0.28199625 1.1696475 1.7000217e-07 -0.2910642 1.1544774 1.6791972e-07 -0.28399828 \n\t\t-0.3430509 -1.0243457e-07 -1.3275782 -0.36327091 -1.0536339e-07 -1.3222762 1.0176773 \n\t\t1.7300901e-07 0.4211894 1.0598313 1.7952621e-07 0.42118979 -1.8804166 -2.4586561e-07 \n\t\t1.2054843 1.3042413 2.2966138e-07 0.75305778 1.3042413 2.2966138e-07 0.75305778 1.3343893 \n\t\t2.342066e-07 0.74994588 1.3343893 2.342066e-07 0.74994588 1.6452234 3.0917255e-07 \n\t\t1.4731557 1.6471132 3.0894589e-07 1.4592118 -0.34654486 -1.0239384e-07 -1.3119659 \n\t\t0.25280139 1.2434971e-07 2.291548 0.26855138 1.2663671e-07 2.28757 -0.31817695 -9.1695007e-08 \n\t\t-1.1423002 1.468619 2.5567874e-07 0.76928782 1.495057 2.3434889e-07 0.08618784 -1.8794405 \n\t\t-2.4906075e-07 1.1155581 -0.36080471 -1.0297543e-07 -1.2683462 -0.35312471 -1.0172169e-07 \n\t\t-1.266562 -1.8843068 -2.4599359e-07 1.2182081 -1.8830206 -2.4554919e-07 1.2248082 \n\t\t-1.8830206 -2.4554919e-07 1.2248082 1.0658371 1.4782582e-07 -0.45572609 0.3336314 \n\t\t7.2878152e-08 0.57237566 -0.31388086 -9.8348877e-08 -1.3389763 -0.32502291 -9.9772016e-08 \n\t\t-1.3309282 -1.1326106 -1.8652457e-07 -0.3068721 -1.1168507 -1.8389379e-07 -0.30165204 \n\t\t-1.8849908 -2.4655532e-07 1.2059541 -1.7681669 -2.3902413e-07 0.922948 -1.0858068 \n\t\t-1.8513713e-07 -0.46405596 -1.0733728 -1.8417172e-07 -0.48977399 0.87919742 1.5746937e-07 \n\t\t0.57894582 -0.88649678 -1.6844942e-07 -0.84370995 -0.94480675 -1.7457215e-07 -0.76598001 \n\t\t1.0750393 1.8187743e-07 0.42118979 1.0598313 1.795262e-07 0.4211894 -1.8776286 -2.4960298e-07 \n\t\t1.093456 1.0959674 1.6021522e-07 -0.24794823 1.0555394 1.5475005e-07 -0.22684623 \n\t\t1.3108733 2.2721767e-07 0.6598258 1.3181013 2.2436315e-07 0.55307639 1.3181013 2.2436315e-07 \n\t\t0.55307639 0.22563136 1.2109436e-07 2.316952 0.23309337 1.2238972e-07 2.32076 0.42790136 \n\t\t6.7566553e-08 0.03792784 1.0681329 1.4570756e-07 -0.52219409 -0.32393891 -9.9815168e-08 \n\t\t-1.336592 1.4757911 2.415307e-07 0.35925278 1.460453 2.386092e-07 0.34446666 1.460453 \n\t\t2.386092e-07 0.34446666 1.487615 2.4385281e-07 0.3725315 1.487615 2.4385281e-07 0.3725315 \n\t\t1.5002431 2.4306067e-07 0.29877225 1.5002431 2.4306067e-07 0.29877225 -0.40771273 \n\t\t-1.1009961e-07 -1.2649059 -0.37976474 -1.0588537e-07 -1.267772 1.8431754 3.3283888e-07 \n\t\t1.2866979 -0.71420074 -1.3832447e-07 -0.74998802 0.23507935 1.2188485e-07 2.2989397 \n\t\t1.1573074 1.6837906e-07 -0.28341222 0.86344945 1.1104309e-07 -0.60334617 0.36377519 \n\t\t7.51794e-09 -1.3094562 0.36377519 7.51794e-09 -1.3094562 0.3430472 4.0952739e-09 \n\t\t-1.315316 -0.44339272 -1.1538771e-07 -1.258774 -0.41507071 -1.1115993e-07 -1.26283 \n\t\t0.28373533 1.2892929e-07 2.2860937 -0.47202861 -6.5209285e-08 0.2087757 -0.4266406 \n\t\t-5.8192111e-08 0.2087757 1.0353152 1.3811746e-07 -0.58982211 0.99222928 1.2823153e-07 \n\t\t-0.67648625 1.0073713 1.3936283e-07 -0.44024417 1.0791353 1.561251e-07 -0.28793421 \n\t\t1.0791353 1.561251e-07 -0.28793421 -0.32383463 -4.4824201e-08 0.14087991 0.30341533 \n\t\t1.3216048e-07 2.291162 0.29595333 1.3086513e-07 2.287354 0.11921415 3.9731187e-08 \n\t\t0.57245147 0.16361633 4.6595762e-08 0.57244647 -1.8467108 -2.4572552e-07 1.0692 -1.8737029 \n\t\t-2.4942247e-07 1.0819962 0.30494335 1.3261096e-07 2.2969201 1.7215474 3.2089255e-07 \n\t\t1.4710058 1.3363173 2.2711195e-07 0.55126357 1.3363173 2.2711195e-07 0.55126357 0.93320131 \n\t\t1.1565713e-07 -0.7691642 -0.32361284 -1.0025741e-07 -1.3498322 -0.31893486 -9.963702e-08 \n\t\t-1.3525962 1.523501 2.4673233e-07 0.30081126 1.523501 2.4673233e-07 0.30081126 1.5108731 \n\t\t2.4752447e-07 0.37457022 1.5108731 2.4752447e-07 0.37457022 0.99604934 1.3682029e-07 \n\t\t-0.46153221 1.0750533 1.5500591e-07 -0.30105218;\n\tsetAttr \".pt[11454:11619]\" 1.0750533 1.5500591e-07 -0.30105218 -0.9243688 -1.7002529e-07 \n\t\t-0.72870195 1.1459334 1.6688894e-07 -0.27620023 0.33353916 1.3409871e-09 -1.3498322 \n\t\t0.32886112 5.1490012e-10 -1.3525962 -0.23745897 -8.0113217e-08 -1.1664222 -1.3991188 \n\t\t-2.1111094e-07 0.13971406 -1.3948349 -2.1042578e-07 0.14032806 -1.3948349 -2.1042578e-07 \n\t\t0.14032806 -0.86927062 -1.1872086e-07 0.42118996 -0.79445058 -1.071534e-07 0.42118958 \n\t\t-0.34353688 -1.0236652e-07 -1.32373 0.32347319 7.4123996e-10 -1.324126 0.32347319 \n\t\t7.4123996e-10 -1.324126 1.4369454 2.795347e-07 1.5420318 1.4369454 2.795347e-07 1.5420318 \n\t\t1.4369454 2.795347e-07 1.5420318 1.5166892 2.9280628e-07 1.5673717 -0.39149073 -1.0760435e-07 \n\t\t-1.2652482 0.30031332 1.3215053e-07 2.3037839 1.1113575 1.611503e-07 -0.2867642 1.1346014 \n\t\t1.6427097e-07 -0.29947424 -0.24574666 -7.8581024e-08 -1.0908082 -0.24574666 -7.8581024e-08 \n\t\t-1.0908082 -0.25224867 -7.9586265e-08 -1.0908083 -0.25224867 -7.9586265e-08 -1.0908083 \n\t\t-1.8757646 -2.4961352e-07 1.085428 0.98253548 1.3494294e-07 -0.45583621 1.0624433 \n\t\t1.5316617e-07 -0.2981002 1.0624433 1.5316617e-07 -0.2981002 -0.47202861 -6.7735598e-08 \n\t\t0.14087991 -0.31354681 -9.7744667e-08 -1.324126 -0.31354681 -9.7744667e-08 -1.324126 \n\t\t-0.29968083 -9.6011419e-08 -1.3351582 -0.29968083 -9.6011419e-08 -1.3351582 -0.31696081 \n\t\t-9.7207135e-08 -1.2954942 -0.2972368 -9.1827104e-08 -1.2328579 1.0252593 1.776519e-07 \n\t\t0.51446527 1.0697193 1.845256e-07 0.51446515 1.3503971 2.3568964e-07 0.72328979 1.3513571 \n\t\t2.3636322e-07 0.73740387 1.3513571 2.3636322e-07 0.73740387 -0.22886464 5.0101548e-08 \n\t\t2.2974439 -0.24287465 4.7716163e-08 2.291548 -0.3237288 -9.781904e-08 -1.283818 0.8341372 \n\t\t9.558093e-08 -0.89710426 0.80356723 8.9654556e-08 -0.92935824 0.80356723 8.9654556e-08 \n\t\t-0.92935824 0.80356723 8.9654556e-08 -0.92935824 -1.315565 -2.1208014e-07 -0.23350391 \n\t\t-1.1215127 -1.8332565e-07 -0.26701206 -1.0860406 -1.7713218e-07 -0.24794808 1.473081 \n\t\t2.3781703e-07 0.27070704 1.473081 2.3781703e-07 0.27070704 -1.8442466 -2.4530627e-07 \n\t\t1.0702281 -1.0797886 -1.7612101e-07 -0.24675007 -1.1127146 -1.8183752e-07 -0.26357406 \n\t\t-0.71096867 -3.0731297e-08 2.1281939 -0.74235266 -3.6946496e-08 2.0915599 -0.47202864 \n\t\t-7.1799988e-08 0.031647924 -1.7837086 -2.3105569e-07 1.2016799 1.7068534 3.190589e-07 \n\t\t1.4827797 0.35145539 5.5747694e-08 0.037927847 -0.31217086 -9.8300532e-08 -1.3447822 \n\t\t-1.1470646 -1.8783362e-07 -0.28199607 0.37894326 1.154594e-08 -1.2642262 0.38542327 \n\t\t1.249174e-08 -1.2657322 0.8312372 9.4391162e-08 -0.91703022 0.8312372 9.4391162e-08 \n\t\t-0.91703022 -0.52227265 -1.2696887e-07 -1.2422723 -0.53592467 -1.2890382e-07 -1.23755 \n\t\t0.38511929 1.4057369e-08 -1.2223922 0.38835329 1.4661916e-08 -1.2195822 -1.0156691 \n\t\t-1.7990604e-07 -0.61489397 -0.97928882 -1.7690627e-07 -0.68543601 0.30438545 6.195485e-08 \n\t\t0.40032563 0.30438545 6.195485e-08 0.40032563 0.30438545 6.195485e-08 0.40032563 \n\t\t0.7449894 1.0791832e-07 -0.19511825 -0.95273274 -1.7443175e-07 -0.72927403 0.85191905 \n\t\t1.1115705e-07 -0.55237406 0.53792733 4.3940258e-08 -1.0542022 -0.21880664 5.1912775e-08 \n\t\t2.3043299 -0.3290728 -9.9127689e-08 -1.2967839 -0.30936882 -9.3768705e-08 -1.2346302 \n\t\t-1.8080726 -2.3451095e-07 1.210052 0.88905531 1.1324226e-07 -0.65063614 0.3208051 \n\t\t-4.8872983e-10 -1.346096 1.0469713 1.7784693e-07 0.42949197 1.0078194 1.717939e-07 \n\t\t0.42949277 -0.086868629 -5.4017832e-08 -1.0908082 -0.086868629 -5.4017832e-08 -1.0908082 \n\t\t-0.35764673 -1.0227465e-07 -1.262634 0.32380712 2.4030775e-10 -1.3389763 0.87349129 \n\t\t1.1108553e-07 -0.64393014 0.96718526 1.2898066e-07 -0.55229419 0.32209712 -2.4009703e-10 \n\t\t-1.3447822 0.80970347 1.479288e-07 0.6112898 -1.8474646 -2.452953e-07 1.083894 -1.8504249 \n\t\t-2.4591773e-07 1.0794661 0.87362522 1.0347613e-07 -0.84899223 -0.1962647 -8.1914109e-08 \n\t\t-1.3859862 -0.1962647 -8.1914109e-08 -1.3859862 -0.20264275 -8.2844885e-08 -1.3845 \n\t\t-0.20264275 -8.2844885e-08 -1.3845 0.84867728 1.0724865e-07 -0.6439442 0.79128528 \n\t\t9.6486751e-08 -0.69470817 -1.4512129 -2.1890452e-07 0.14671208 -1.4499909 -2.1433611e-07 \n\t\t0.26441211 0.95473319 1.1910452e-07 -0.76598024 0.89642322 1.0719733e-07 -0.84371018 \n\t\t-0.1821049 -8.0602319e-08 -1.4095659 -0.19193991 -8.1798767e-08 -1.400856 -0.19193991 \n\t\t-8.1798767e-08 -1.400856 0.94187742 1.2506617e-07 -0.55234224 -1.8097126 -2.4282014e-07 \n\t\t0.993554 -1.8022265 -2.4121124e-07 1.0056882 1.563213 2.5390901e-07 0.32868245 1.547441 \n\t\t2.5087735e-07 0.31273904 1.547441 2.5087735e-07 0.31273904 -1.4443388 -2.1858592e-07 \n\t\t0.12671207 -1.4443388 -2.1858592e-07 0.12671207 -1.4480748 -2.1901046e-07 0.13082607 \n\t\t-1.4480748 -2.1901046e-07 0.13082607 0.80028141 1.4286941e-07 0.51446563 0.58214748 \n\t\t9.1413639e-08 0.037927821 0.53600943 8.4280508e-08 0.037927821 -1.0525167 -1.7381532e-07 \n\t\t-0.29810008 -1.0525167 -1.7381532e-07 -0.29810008 1.4047612 2.2240327e-07 0.14032783 \n\t\t1.4047612 2.2240327e-07 0.14032783 1.4395492 2.2771287e-07 0.13847981 1.4395492 2.2771287e-07 \n\t\t0.13847981 0.61612934 5.4130137e-08 -1.1052783 0.61612934 5.4130137e-08 -1.1052783 \n\t\t0.61779535 5.4987584e-08 -1.0891563 0.81574541 1.0026854e-07 -0.69470412 0.78865123 \n\t\t1.8443453e-07 1.6798698 0.78865123 1.8443453e-07 1.6798698 0.80030119 1.8636196e-07 \n\t\t1.683264 -0.30409282 -9.2476441e-08 -1.221822 -0.28510678 -8.6620169e-08 -1.1433202 \n\t\t-0.27823278 -8.5959634e-08 -1.15413 1.785639 3.2180776e-07 1.2292978 1.773797 3.2125601e-07 \n\t\t1.2636738 1.773797 3.2125601e-07 1.2636738 1.4090451 2.2304273e-07 0.13971382 1.7894392 \n\t\t3.0871584e-07 0.86165786 -0.61372256 -8.9226447e-08 0.15204994 -0.60252857 -8.7495806e-08 \n\t\t0.15204993 0.90222704 1.1490911e-07 -0.66056812 0.90222704 1.1490911e-07 -0.66056812 \n\t\t-0.77007079 -1.548003e-07 -0.96063995 -0.74087876 -1.5080079e-07 -0.97444594 -0.52608252 \n\t\t-7.4758027e-08 0.17674591 -0.47202861 -6.6401086e-08 0.17674552 -0.52800065 -1.2085658e-07 \n\t\t-1.0542022 -0.15900153 -7.7207048e-08 -1.4143122 1.5391191 2.9560519e-07 1.5493958 \n\t\t1.2175151 1.7611217e-07 -0.32574821 1.2244111 1.7813026e-07 -0.30016416 1.2244111 \n\t\t1.7813026e-07 -0.30016416 0.60781932 5.248177e-08 -1.1150502 0.60781932 5.248177e-08 \n\t\t-1.1150502 0.61876333 5.4177182e-08 -1.1149582 0.61876333 5.4177182e-08 -1.1149582;\n\tsetAttr \".pt[11620:11785]\" 0.62364948 9.9828718e-08 0.091643818 0.61245549 9.8098084e-08 \n\t\t0.091643825 -0.65493077 -1.3883081e-07 -1.009866 1.4408332 2.2854884e-07 0.15561183 \n\t\t1.4408332 2.2854884e-07 0.15561183 1.4458371 2.298914e-07 0.17090182 -0.57222056 \n\t\t-8.2810068e-08 0.15204993 0.26006502 7.6391274e-08 0.97246408 0.004962971 3.7757307e-08 \n\t\t0.99412197 -0.25225061 -7.2010792e-08 -0.88720614 -0.25225061 -7.2010792e-08 -0.88720614 \n\t\t-0.086868845 -4.6442015e-08 -0.88720411 -0.086868845 -4.6442015e-08 -0.88720411 -0.50888866 \n\t\t-1.2508055e-07 -1.247134 0.61245549 9.8098084e-08 0.091643833 -0.30881286 -9.8082239e-08 \n\t\t-1.3528682 -0.3108789 -9.814967e-08 -1.346096 -0.33301494 -9.838611e-08 -1.260474 \n\t\t-0.32610694 -9.571464e-08 -1.2173802 -0.33983687 -1.0182389e-07 -1.3245202 -0.55509675 \n\t\t-1.2468603e-07 -1.044534 -0.4940348 -1.160906e-07 -1.0672442 -0.4940348 -1.160906e-07 \n\t\t-1.0672442 -0.81089479 -1.5960357e-07 -0.92010403 -0.78226477 -1.5643698e-07 -0.95395994 \n\t\t-0.78226477 -1.5643698e-07 -0.95395994 -0.34889275 -9.8567362e-08 -1.1993722 -0.34889275 \n\t\t-9.8567362e-08 -1.1993722 -0.34733474 -9.7958861e-08 -1.189492 -0.34733474 -9.7958861e-08 \n\t\t-1.189492 1.0247988 1.3764266e-07 -0.55888617 0.98775917 1.3146038e-07 -0.57113606 \n\t\t0.98775917 1.3146038e-07 -0.57113606 -0.52608252 -7.5677008e-08 0.15204792 -0.47202861 \n\t\t-6.7320052e-08 0.15204792 -0.31598893 -9.9507879e-08 -1.361366 -0.34303474 -9.7595759e-08 \n\t\t-1.1976002 0.77641916 1.8068135e-07 1.6298261 1.1713872 1.6491153e-07 -0.4351061 \n\t\t1.1711651 1.663465e-07 -0.3956182 1.1711651 1.663465e-07 -0.3956182 -1.8635266 -2.5011414e-07 \n\t\t1.0211241 -1.2250409 -1.3428212e-07 1.4812182 -1.3744887 -1.7086042e-07 1.1191242 \n\t\t1.1878031 1.696402e-07 -0.37623024 1.070721 1.4623308e-07 -0.51882422 1.070721 1.4623308e-07 \n\t\t-0.51882422 -0.86927062 -1.1339521e-07 0.56431919 -0.79035449 -1.0119444e-07 0.56431955 \n\t\t-1.3697989 -2.0336674e-07 0.22601707 -1.3928448 -2.1115139e-07 0.11255806 0.63491333 \n\t\t5.6646723e-08 -1.1156923 0.63491333 5.6646723e-08 -1.1156923 0.64034134 5.783248e-08 \n\t\t-1.1063782 0.64034134 5.783248e-08 -1.1063782 0.98754138 1.3400981e-07 -0.50171423 \n\t\t0.98754138 1.3400981e-07 -0.50171423 1.0437831 1.4078964e-07 -0.55319023 1.0437831 \n\t\t1.4078964e-07 -0.55319023 1.0508128 1.4221843e-07 -0.54400015 1.0370208 1.3949227e-07 \n\t\t-0.55996019 -1.1357828 -1.9204451e-07 -0.44204199 -1.1323248 -1.9147544e-07 -0.44111598 \n\t\t-0.38790062 -5.2202751e-08 0.20877571 -0.40850472 -1.0821122e-07 -1.2108642 -0.38999471 \n\t\t-1.0552497e-07 -1.21558 1.1380353 1.6440643e-07 -0.31010219 -1.1229669 -1.8993534e-07 \n\t\t-0.43860799 -1.1229669 -1.8993534e-07 -0.43860799 0.96130317 1.2470535e-07 -0.64275408 \n\t\t0.96130317 1.2470535e-07 -0.64275408 0.96130317 1.2470535e-07 -0.64275408 1.3069773 \n\t\t2.2018237e-07 0.4869372 1.3061013 2.2062119e-07 0.50237018 1.3061013 2.2062119e-07 \n\t\t0.50237018 -0.38402689 -1.0869171e-07 -1.325484 -0.38147086 -1.0874461e-07 -1.3375262 \n\t\t-0.69008666 -3.1129574e-08 2.030724 -0.64930063 -2.3868072e-08 2.056412 1.4368411 \n\t\t2.2778542e-07 0.15168183 -0.99109697 -1.7436125e-07 -0.56797397 -0.93404084 -1.6517772e-07 \n\t\t-0.55823398 0.93012315 1.2025778e-07 -0.63273013 0.93012315 1.2025778e-07 -0.63273013 \n\t\t0.93012315 1.2025778e-07 -0.63273013 1.4457352 2.2864835e-07 0.1379178 1.3084693 \n\t\t2.1991265e-07 0.4734892 1.3084693 2.1991265e-07 0.4734892 1.3084693 2.1991265e-07 \n\t\t0.4734892 -1.1462408 -1.9376563e-07 -0.44484401 -1.1336509 -1.9169363e-07 -0.44146997 \n\t\t-0.039139338 2.4393942e-10 0.16918187 -0.039139338 2.4393942e-10 0.16918187 -0.039139565 \n\t\t2.4390479e-10 0.16918187 -0.039139565 2.4390479e-10 0.16918187 -0.34004286 -1.0210645e-07 \n\t\t-1.3312582 -0.33309293 -9.8642261e-08 -1.2670342 -1.1689427 -1.7878671e-07 0.052047998 \n\t\t-1.1689427 -1.7878671e-07 0.052047998 -1.1460007 -1.7715931e-07 0.00046000056 -0.36245263 \n\t\t-4.8268387e-08 0.2087757 -0.37345883 -1.0757215e-07 -1.3393062 -0.36201483 -1.0540204e-07 \n\t\t-1.3285342 0.92406905 1.1821282e-07 -0.66253412 0.92406905 1.1821282e-07 -0.66253412 \n\t\t0.58214748 9.0667747e-08 0.017881818 -0.75257665 -4.1289013e-08 2.017334 -0.72627854 \n\t\t-3.7234528e-08 2.01703 0.60240936 5.2624031e-08 -1.0887482 0.60242534 5.2804062e-08 \n\t\t-1.0839763 -0.48085073 -1.1892336e-07 -1.1981562 -0.45684871 -1.1534048e-07 -1.2015942 \n\t\t-0.76482266 -4.2651937e-08 2.0315876 0.36817539 6.2163387e-08 0.14087984 0.33376139 \n\t\t5.6842843e-08 0.14087985 1.3456733 2.2549152e-07 0.46883902 1.3456733 2.2549152e-07 \n\t\t0.46883902 1.3438993 2.2574058e-07 0.48290396 1.1544894 1.6676313e-07 -0.31513229 \n\t\t-0.39720485 -1.1091483e-07 -1.3304762 -0.38341883 -1.0824101e-07 -1.3158979 1.441627 \n\t\t2.1457551e-07 -0.22322617 1.458801 2.1815383e-07 -0.19841613 1.4247711 2.1105238e-07 \n\t\t-0.24787411 -1.020267 -1.8034936e-07 -0.60770392 -1.0481529 -1.8354474e-07 -0.57771397 \n\t\t-1.0481529 -1.8354474e-07 -0.57771397 -1.0481529 -1.8354474e-07 -0.57771397 1.1577774 \n\t\t1.6731991e-07 -0.31383026 0.32926741 5.2083671e-08 0.031647842 1.473561 2.2141624e-07 \n\t\t-0.17206617 0.62468934 5.792711e-08 -1.0388002 0.62468934 5.792711e-08 -1.0388002 \n\t\t0.60249335 5.4306049e-08 -1.0438923 0.60249335 5.4306049e-08 -1.0438923 0.90311706 \n\t\t1.1722044e-07 -0.60214818 0.89140105 1.1326283e-07 -0.65983003 0.89140105 1.1326283e-07 \n\t\t-0.65983003 0.89140105 1.1326283e-07 -0.65983003 -1.0803169 -1.8525252e-07 -0.48996791 \n\t\t-1.0803169 -1.8525252e-07 -0.48996791 -1.0623552 -1.848712e-07 -0.55435187 -1.2392527 \n\t\t-1.8887836e-07 0.072972015 -1.0408872 -1.8116698e-07 -0.54399991 0.61245549 9.6099377e-08 \n\t\t0.037927818 -1.1225687 -1.1159443e-07 1.6651822 1.1568031 2.1976986e-07 1.0998318 \n\t\t1.1568031 2.1976986e-07 1.0998318 1.1219529 2.1317796e-07 1.067476 -1.3180869 -1.795627e-07 \n\t\t0.65089405 -1.3180869 -1.795627e-07 0.65089405 -1.3180869 -1.795627e-07 0.65089405 \n\t\t-1.3041009 -1.805036e-07 0.56749439 0.53628933 3.7044661e-08 -1.2327182 0.52718931 \n\t\t3.5619305e-08 -1.2332143 0.38176137 6.0433123e-08 0.037927844 -0.35503283 -1.0412904e-07 \n\t\t-1.3233322 -0.34603485 -1.0269028e-07 -1.322052 -0.34603485 -1.0269028e-07 -1.322052 \n\t\t-0.32064289 -1.001221e-07 -1.358536 0.69729948 1.3055067e-07 0.61128986 0.7114256 \n\t\t1.3273464e-07 0.61128986 -0.68863857 -9.1153353e-08 0.41154334 -0.73079062 -9.7670224e-08 \n\t\t0.41154334 0.79002541 2.0010253e-07 2.0952439 1.0241151 2.2712076e-07 1.848716;\n\tsetAttr \".pt[11786:11951]\" -1.3443929 -1.8689883e-07 0.56303543 -1.3552848 -1.8544314e-07 \n\t\t0.64741409 -1.3552848 -1.8544314e-07 0.64741409 0.58048725 1.7347233e-07 2.2501879 \n\t\t0.58048725 1.7347233e-07 2.2501879 0.7114256 1.3273464e-07 0.61128986 0.53678733 \n\t\t5.1287316e-08 -0.85201019 0.45304531 3.582112e-08 -0.91971821 0.72646344 1.3662692e-07 \n\t\t0.65341383 0.73832345 1.3846054e-07 0.65341383 1.7517651 3.1631373e-07 1.2223918 \n\t\t1.7517651 3.1631373e-07 1.2223918 1.7418594 3.1579702e-07 1.2496638 1.7418594 3.1579702e-07 \n\t\t1.2496638 -0.47641876 -1.2031329e-07 -1.253926 1.485007 2.2375512e-07 -0.15676619 \n\t\t1.0078194 1.744114e-07 0.4998394 1.0469713 1.8046448e-07 0.49983981 0.70438325 8.1882988e-08 \n\t\t-0.72610813 0.78245926 9.4562964e-08 -0.70973819 0.78245926 9.4562964e-08 -0.70973819 \n\t\t0.78245926 9.4562964e-08 -0.70973819 -0.67343056 -8.8443194e-08 0.42118993 -0.68863857 \n\t\t-9.079443e-08 0.42118955 0.7961114 9.6868391e-08 -0.70450419 0.7961114 9.6868391e-08 \n\t\t-0.70450419 -1.2620747 -1.8681045e-07 0.2233744 -1.2523907 -1.8631529e-07 0.196445 \n\t\t-0.79445058 -1.0751229e-07 0.41154397 -1.2829627 -1.9202552e-07 0.170008 -0.64636064 \n\t\t-1.379621e-07 -1.0221282 -0.64119667 -1.370661e-07 -1.0195042 1.1031237 2.1241783e-07 \n\t\t1.1252837 0.85252523 9.902859e-08 -0.8808502 0.82082123 9.2666433e-08 -0.92010403 \n\t\t0.9626593 1.2169572e-07 -0.72927427 0.93882126 1.1655667e-07 -0.76834023 -0.83875275 \n\t\t-1.5363496e-07 -0.64394397 -0.78135872 -1.4665046e-07 -0.69470805 -1.0086912 -1.7900948e-07 \n\t\t-0.61979204 0.79219121 8.6980378e-08 -0.95395994 0.79219121 8.6980378e-08 -0.95395994 \n\t\t0.93429917 1.2166835e-07 -0.61217207 0.92258114 1.1771034e-07 -0.66985601 0.92258114 \n\t\t1.1771034e-07 -0.66985601 0.92258114 1.1771034e-07 -0.66985601 0.87919748 1.5507014e-07 \n\t\t0.51446515 0.80028147 1.428694e-07 0.51446515 1.543287 2.505904e-07 0.32228684 1.543287 \n\t\t2.505904e-07 0.32228684 1.5306591 2.5138255e-07 0.39604604 1.5306591 2.5138255e-07 \n\t\t0.39604604 -0.29607084 -9.5919518e-08 -1.347688 0.77999723 8.4846583e-08 -0.96063995 \n\t\t0.38181916 1.0329203e-08 -1.308876 0.38181916 1.0329203e-08 -1.308876 0.37194115 \n\t\t8.0705638e-09 -1.3285342 0.36495915 7.1846809e-09 -1.3233322 0.6687054 7.505782e-08 \n\t\t-0.76129419 0.74311954 1.0663524e-07 -0.22183222 0.74311954 1.0663524e-07 -0.22183222 \n\t\t0.74715751 1.0705651e-07 -0.22728825 -0.44128075 -1.1511054e-07 -1.2601002 -0.80581862 \n\t\t-1.5043192e-07 -0.694704 -0.73820859 -1.420361e-07 -0.74998599 1.083501 1.5159276e-07 \n\t\t-0.42788211 1.231377 1.7709912e-07 -0.35682014 0.39334515 1.1849892e-08 -1.3158979 \n\t\t0.62783933 5.5912192e-08 -1.1060402 0.62783933 5.5912192e-08 -1.1060402 0.62364936 \n\t\t5.4904156e-08 -1.1157222 0.62364936 5.4904156e-08 -1.1157222 0.35596117 5.8411915e-09 \n\t\t-1.322052 0.35596117 5.8411915e-09 -1.322052 0.62929136 5.6750704e-08 -1.0895382 \n\t\t-0.53275263 -3.4937297e-09 2.1197183 -0.51866066 -7.1190576e-10 2.1359282 -0.61475867 \n\t\t-1.3430322e-07 -1.0551022 -0.62361264 -1.3538587e-07 -1.04741 0.44615531 3.4547682e-08 \n\t\t-0.92531413 0.87357104 1.1100059e-07 -0.64654404 0.87357104 1.1100059e-07 -0.64654404 \n\t\t0.87357104 1.1100059e-07 -0.64654404 0.88528705 1.149582e-07 -0.58886218 -0.92544293 \n\t\t-1.6633192e-07 -0.62497795 0.40713117 1.3438827e-08 -1.3304762 1.3389193 2.3031986e-07 \n\t\t0.62666577 1.3439813 2.2782659e-07 0.53862536 1.3439813 2.2782659e-07 0.53862536 \n\t\t1.0955535 2.0920506e-07 1.0703938 1.0955535 2.0920506e-07 1.0703938 1.0955535 2.0920506e-07 \n\t\t1.0703938 -1.8766046 -2.4427436e-07 1.2324102 -1.8766046 -2.4427436e-07 1.2324102 \n\t\t-1.8766046 -2.4427436e-07 1.2324102 -1.1984528 -1.9808523e-07 -0.34399199 -1.2075888 \n\t\t-1.9881885e-07 -0.32574797 -0.3711127 -2.0165485e-08 1.000036 -0.61905468 -1.3459501e-07 \n\t\t-1.045094 -0.61905468 -1.3459501e-07 -1.045094 -0.3312487 -1.4002345e-08 1.000036 \n\t\t1.534559 2.4886376e-07 0.31214765 -0.57950467 -1.2849196e-07 -1.045404 -0.61118466 \n\t\t-1.3298192e-07 -1.0344419 0.53600937 8.3534616e-08 0.017881846 -0.32383463 -4.6240661e-08 \n\t\t0.10281191 -1.8540726 -2.4099725e-07 1.2268622 -1.1778768 -1.9610363e-07 -0.37623 \n\t\t-1.0607949 -1.8330805e-07 -0.51882398 -1.0607949 -1.8330805e-07 -0.51882398 -0.38410071 \n\t\t-2.1415843e-08 1.0203979 -1.8742886 -2.4386168e-07 1.2338783 -1.8718746 -2.435209e-07 \n\t\t1.2330062 0.75068933 8.8560533e-08 -0.73905021 0.69176948 7.7744744e-08 -0.7849142 \n\t\t0.7508052 7.9819671e-08 -0.97444618 1.0776694 1.5659417e-07 -0.26923621 0.75057745 \n\t\t1.3878767e-07 0.61128986 -0.47303873 -1.1977733e-07 -1.253566 0.044829234 -3.6939944e-08 \n\t\t-1.179044 0.044829234 -3.6939944e-08 -1.179044 0.044829234 -3.6939944e-08 -1.179044 \n\t\t0.044829234 -3.6939944e-08 -1.179044 0.014929777 -4.1612836e-08 -1.1803962 -1.0090352 \n\t\t-1.766313e-07 -0.55444807 -0.98879105 -1.7367834e-07 -0.55920202 -0.98879105 -1.7367834e-07 \n\t\t-0.55920202 0.0049629845 -4.3316646e-08 -1.1847743 0.0049629845 -4.3316646e-08 -1.1847743 \n\t\t0.0049629845 -4.3316646e-08 -1.1847743 0.0049629845 -4.3316646e-08 -1.1847743 0.0049629845 \n\t\t-4.3316646e-08 -1.1847743 0.16892806 -2.6507784e-08 -1.4143122 0.12812746 -3.3052519e-08 \n\t\t-1.4206762 0.035822734 -5.2259093e-08 -1.5533301 0.19203126 -2.2759338e-08 -1.4095662 \n\t\t0.71082133 1.8518635e-07 2.0234621 0.69327545 1.8246615e-07 2.0232596 -1.1801908 \n\t\t-1.9579832e-07 -0.35841 -1.1902349 -1.965486e-07 -0.33683985 -1.1902349 -1.965486e-07 \n\t\t-0.33683985 -1.1902349 -1.965486e-07 -0.33683985 -1.2540387 -1.8931834e-07 0.12258399 \n\t\t0.41524512 1.4748426e-08 -1.328994 0.14987829 -3.6673679e-08 -1.6083722 0.14987829 \n\t\t-3.6673679e-08 -1.6083722 0.24608302 -4.9857749e-09 -1.156482 0.15038992 -3.4182783e-08 \n\t\t-1.5435541 0.15038992 -3.4182783e-08 -1.5435541 -0.37183663 -5.4077518e-08 0.091643922 \n\t\t-0.34152862 -4.9391772e-08 0.091643907 0.38338515 9.4390398e-09 -1.3393062 -0.37884691 \n\t\t-1.0773726e-07 -1.3213562 0.78917515 1.4454973e-07 0.60577196 0.84799504 1.4968244e-07 \n\t\t0.49931616 0.20186649 -2.0914687e-08 -1.4008563 0.20186649 -2.0914687e-08 -1.4008563 \n\t\t0.20681329 -2.0126596e-08 -1.4002302 0.20681329 -2.0126596e-08 -1.4002302 0.85421902 \n\t\t1.5069455e-07 0.50065595 0.79499704 1.4552498e-07 0.60779196 0.0049632262 -5.9717834e-08 \n\t\t-1.6255642 0.30438542 6.1954843e-08 0.40032566 0.30438542 6.1954843e-08 0.40032566 \n\t\t0.29040343 5.9408215e-08 0.38997978 0.29040343 5.9408215e-08 0.38997978;\n\tsetAttr \".pt[11952:12117]\" 0.29040343 5.9408215e-08 0.38997978 -1.2144848 -2.0029773e-07 \n\t\t-0.33683985 -1.2144848 -2.0029773e-07 -0.33683985 1.0349151 1.3749143e-07 -0.60498422 \n\t\t1.0349151 1.3749143e-07 -0.60498422 1.1633332 1.6302114e-07 -0.45244622 1.1633332 \n\t\t1.6302114e-07 -0.45244622 -0.58307666 -1.2981286e-07 -1.066062 0.3817614 6.5598371e-08 \n\t\t0.17674583 0.35145539 6.0912953e-08 0.17674625 -0.34023291 -1.016562e-07 -1.318368 \n\t\t-0.34023291 -1.016562e-07 -1.318368 -0.3734169 -1.0647091e-07 -1.3098842 -0.3734169 \n\t\t-1.0647091e-07 -1.3098842 -0.93740487 -1.6584055e-07 -0.56207007 0.23434536 1.2215999e-07 \n\t\t2.3093839 0.23548536 1.2249623e-07 2.313684 -1.2296607 -1.8586852e-07 0.11400799 \n\t\t0.39139712 1.0743957e-08 -1.3375262 0.64767146 7.1509554e-08 -0.7692582 0.44164929 \n\t\t2.340677e-08 -1.2060082 0.46677527 2.7455586e-08 -1.2015942 -0.49462694 -3.2551213e-08 \n\t\t1.180372 0.62931532 5.6965082e-08 -1.0838763 -0.60252857 -8.9743445e-08 0.091643937 \n\t\t-0.61372256 -9.1474078e-08 0.091643937 -1.8102628 -2.3482009e-07 1.210844 1.3058492 \n\t\t2.5143092e-07 1.3314418 -0.67874843 -8.3939696e-08 0.56431919 -0.66270852 -8.1459866e-08 \n\t\t0.56431919 -0.44741473 1.1776693e-08 2.175534 -0.54963261 -1.5050405e-09 2.2433023 \n\t\t-0.54963261 -1.5050405e-09 2.2433023 -0.53238666 -1.2245636e-07 -1.0789722 -0.87359697 \n\t\t-9.9434544e-08 0.95749408 -0.47202864 -7.1566319e-08 0.037927929 -0.52608258 -7.9923275e-08 \n\t\t0.037927929 -0.7704286 -4.160453e-08 2.0830302 -1.0010327 -8.6323226e-08 1.8393682 \n\t\t0.35145536 6.0912946e-08 0.17674625 0.38176137 6.559835e-08 0.17674544 -0.84896058 \n\t\t-1.5686541e-07 -0.6883499 -0.26334867 4.5363731e-08 2.313396 0.17378289 -2.5726321e-08 \n\t\t-1.4134822 0.13057128 -3.2663159e-08 -1.4203662 -0.52178872 3.2399838e-09 2.2551341 \n\t\t-0.52178872 3.2399838e-09 2.2551341 -0.40639073 1.869198e-08 2.1909285 -0.99022496 \n\t\t-1.7636349e-07 -0.62540793 0.19680527 -2.198718e-08 -1.4086503 0.89205152 1.3283717e-07 \n\t\t-0.13646424 0.89205152 1.3283717e-07 -0.13646424 0.95401943 1.6316724e-07 0.4211894 \n\t\t-0.70149845 -8.6912706e-08 0.57894593 -0.74065059 -9.2965784e-08 0.57894593 -0.35825062 \n\t\t-5.1561518e-08 0.10281193 -0.60968465 -1.2557231e-07 -0.84153789 -0.67933863 -1.3464118e-07 \n\t\t-0.79585201 -0.72320855 -9.0813401e-08 0.56431955 -0.60252857 -9.1742145e-08 0.037927933 \n\t\t-0.84199297 -1.5072871e-07 -0.55237406 -0.82338482 -1.4745754e-07 -0.54177803 -0.24025266 \n\t\t4.9085973e-08 2.3174677 -0.25158867 4.7292385e-08 2.316366 -0.42622465 -7.5950851e-08 \n\t\t-0.27022609 -0.75801665 -1.3866691e-07 -0.57713401 -1.1237367 -1.1171971e-07 1.6666683 \n\t\t0.38176137 6.4679384e-08 0.15204784 0.80970341 1.4116436e-07 0.4294928 0.78728306 \n\t\t9.3020709e-08 -0.7712301 0.90202105 1.1791848e-07 -0.57883412 0.0028706258 7.1530444e-09 \n\t\t0.18031345 0.0028706258 7.1530444e-09 0.18031345 -0.092045985 -6.0770915e-08 -1.250788 \n\t\t-0.065604761 -6.2248162e-08 -1.4003543 0.25843701 7.5922721e-08 0.96663606 0.0049629724 \n\t\t3.7529297e-08 0.98799407 0.25963902 7.6596216e-08 0.97974205 0.0049629733 3.8009883e-08 \n\t\t1.0009099 0.053649787 -3.2293105e-08 -1.0908082 0.0049633379 -3.9820232e-08 -1.0908082 \n\t\t-0.250139 -2.4883668e-09 0.97246408 0.0028704214 7.1530137e-09 0.18031347 0.0028704214 \n\t\t7.1530137e-09 0.18031347 -0.025896072 -6.1801074e-08 -1.5533301 0.0049632755 -5.7030093e-08 \n\t\t-1.5533301 -0.249713 -2.1517024e-09 0.97974205 0.0049629831 -4.3500378e-08 -1.1897122 \n\t\t0.24738503 -5.1543445e-09 -1.1664222 -0.02589592 -6.4488788e-08 -1.6255642 0.097629234 \n\t\t-3.1413975e-08 -1.249918 -0.060229935 -6.1630026e-08 -1.4060742 0.0049632089 -5.1628962e-08 \n\t\t-1.4081722 -0.059324536 -6.2249853e-08 -1.4264942 0.0049632112 -5.2385861e-08 -1.4285142 \n\t\t-0.059027541 -6.2204677e-08 -1.4265143 0.0049632136 -5.2385634e-08 -1.4285082 -0.043723013 \n\t\t-4.7347342e-08 -1.0908082 0.068953872 -4.2418225e-08 -1.4265143 0.069251046 -4.2371536e-08 \n\t\t-1.4264942 0.070156246 -4.1471782e-08 -1.4060742 0.73415542 1.0502089e-07 -0.22797213 \n\t\t-0.96515459 -1.709891e-07 -0.5851379 0.75057739 1.3464076e-07 0.49983981 0.80970341 \n\t\t1.4378188e-07 0.49983981 -0.43202865 -1.0212235e-07 -0.94948012 -0.43202865 -1.0212235e-07 \n\t\t-0.94948012 0.73100954 1.0537202e-07 -0.20546418 -1.375489 -1.7096491e-07 1.1204722 \n\t\t-1.4641609 -1.9554739e-07 0.82824415 -0.88603681 -1.6011946e-07 -0.62175006 0.47585118 \n\t\t3.2963403e-08 -1.0912802 0.5650233 4.8489134e-08 -1.0445342 1.3246772 2.2140145e-07 \n\t\t0.44615635 1.3246772 2.2140145e-07 0.44615635 -0.27806267 4.2277364e-08 2.2915859 \n\t\t-0.86356473 -1.5747047e-07 -0.6439299 -0.9572587 -1.6854629e-07 -0.55229408 0.37054917 \n\t\t9.7389394e-09 -1.2779123 -0.7903524 -1.0119413e-07 0.56431919 0.66485721 6.5213825e-08 \n\t\t-1.0098662 1.139003 1.7278533e-07 -0.088936135 1.139003 1.7278533e-07 -0.088936135 \n\t\t0.20619129 -1.9692759e-08 -1.3859862 0.20619129 -1.9692759e-08 -1.3859862 0.65515518 \n\t\t1.3049124e-07 0.78480405 0.36612302 9.1741811e-08 0.94433993 1.4783351 2.3487426e-07 \n\t\t0.16978782 0.48195538 7.9754244e-08 0.14087984 0.58137536 5.0998409e-08 -1.0450402 \n\t\t-0.51373678 -2.61835e-11 2.1338983 -0.50583267 1.7587238e-09 2.1490264 1.4542651 \n\t\t2.2955014e-07 0.12671182 1.4542651 2.2955014e-07 0.12671182 0.8815555 1.3174221e-07 \n\t\t-0.12228021 0.88056153 1.3163847e-07 -0.12093821 0.88056153 1.3163847e-07 -0.12093821 \n\t\t0.9581154 1.6912618e-07 0.56431943 0.60076535 5.4179917e-08 -1.0401022 -0.74065059 \n\t\t-9.5909215e-08 0.49983993 -0.38218868 -9.898136e-08 -1.0721523 -0.39304274 -1.0119874e-07 \n\t\t-1.0866462 -0.31858075 -9.0083404e-08 -1.0973102 0.8815555 1.3174221e-07 -0.12228021 \n\t\t0.20619129 -1.9253473e-08 -1.3741802 1.4611392 2.3135708e-07 0.14671183 1.4107851 \n\t\t2.083251e-07 -0.26305816 1.4107851 2.083251e-07 -0.26305816 -0.22515264 5.0731092e-08 \n\t\t2.2989397 1.139119 1.7194598e-07 -0.1119761 1.139119 1.7194598e-07 -0.1119761 1.137907 \n\t\t1.7195842e-07 -0.10660608 1.137907 1.7195842e-07 -0.10660608 0.87919742 1.5692513e-07 \n\t\t0.56431907 -1.5042269 -2.0763055e-07 0.66998017 -0.3238346 -4.4824198e-08 0.14087991 \n\t\t1.292309 1.9943415e-07 -0.0097321374 0.62898135 5.8356477e-08 -1.0450943 0.62898135 \n\t\t5.8356477e-08 -1.0450943 1.140553 1.7283952e-07 -0.093920156 1.140553 1.7283952e-07 \n\t\t-0.093920156 0.13771588 -3.0767072e-08 -1.3990942 0.20670733 -1.9479026e-08 -1.3823861 \n\t\t0.58214748 9.5659971e-08 0.15204982 0.53600943 8.8526768e-08 0.15204783 -0.93461686 \n\t\t-1.6581622e-07 -0.57300001;\n\tsetAttr \".pt[12118:12283]\" -0.97783285 -1.7242823e-07 -0.57113606 -0.97783285 \n\t\t-1.7242823e-07 -0.57113606 0.40654126 2.1651644e-08 -1.1073022 -0.53849673 -1.1436916e-07 \n\t\t-0.83623821 -1.3009467 -1.7658043e-07 0.65982592 0.68926531 7.6950599e-08 -0.79585212 \n\t\t0.61961132 6.4481888e-08 -0.84153813 0.74813539 8.7758778e-08 -0.74998611 0.32649919 \n\t\t4.7462145e-09 -1.229064 -0.22617264 5.0716366e-08 2.3027821 -0.27807266 4.2052193e-08 \n\t\t2.2855759 -0.3111206 -4.2858563e-08 0.14087991 -0.28549474 -8.5108965e-08 -1.101094 \n\t\t-0.54088664 -5.3156612e-09 2.1045504 -0.52757877 -2.7669109e-09 2.1177542 0.36302125 \n\t\t1.4501775e-08 -1.1186302 0.35726124 1.3735828e-08 -1.1152822 0.35726124 1.3735828e-08 \n\t\t-1.1152822 1.4355091 2.1325644e-07 -0.23325613 -0.41797459 -6.1210635e-08 0.091643915 \n\t\t0.34419924 1.1772424e-08 -1.1137762 0.35726124 1.0974567e-08 -1.1894922 0.35726124 \n\t\t1.0974567e-08 -1.1894922 0.35881925 1.084782e-08 -1.1993722 0.35881925 1.084782e-08 \n\t\t-1.1993722 0.44195327 3.2998845e-08 -0.94948012 0.44195327 3.2998845e-08 -0.94948012 \n\t\t0.87919748 1.5159948e-07 0.42118981 0.48195541 8.0169798e-08 0.15204783 -0.79035455 \n\t\t-1.0304946e-07 0.51446539 1.2720013 2.0496809e-07 0.22337417 0.48195538 7.792223e-08 \n\t\t0.091643848 0.42790136 6.956526e-08 0.091643848 1.2921953 2.2668254e-07 0.72305179 \n\t\t1.2805552 2.2923398e-07 0.83998787 -1.2649747 -1.8650837e-07 0.2435426 0.87919748 \n\t\t1.5124053e-07 0.4115428 -1.3404708 -1.8032959e-07 0.72329003 0.90700537 1.1929735e-07 \n\t\t-0.56248623 0.97631729 1.3032798e-07 -0.55402821 0.97631729 1.3032798e-07 -0.55402821 \n\t\t0.45504555 8.9395655e-08 0.51180857 0.45504555 8.9395655e-08 0.51180857 0.30726719 \n\t\t1.3917751e-09 -1.239306 0.28823122 1.3815937e-09 -1.1604842 -1.0032647 -1.737769e-07 \n\t\t-0.50171196 -1.0032647 -1.737769e-07 -0.50171196 -0.27336669 -8.2946379e-08 -1.0933663 \n\t\t0.53876734 4.4358348e-08 -1.0464562 0.60196948 1.7409417e-07 2.17764 0.62160331 1.7713805e-07 \n\t\t2.177866 -1.033857 -1.8042203e-07 -0.55318999 -1.033857 -1.8042203e-07 -0.55318999 \n\t\t-0.62003869 -1.3406466e-07 -1.026752 -0.61548269 -1.3327411e-07 -1.024436 0.30030125 \n\t\t4.0791366e-09 -1.1381382 -0.75044072 -1.4355092e-07 -0.73987204 -0.74065053 -9.5909222e-08 \n\t\t0.49983951 0.63546705 6.4181592e-08 -0.91549027 0.32653704 8.1930507e-09 -1.136586 \n\t\t-0.23115066 5.0041315e-08 2.3053236 0.25156724 -3.8877093e-09 -1.1497582 0.41921327 \n\t\t2.9483292e-08 -0.94947618 1.510043 2.362149e-07 0.07406982 -0.52686065 -1.1315703e-07 \n\t\t-0.85200995 -0.44311869 -1.0272951e-07 -0.91971797 -1.0855689 -1.843357e-07 -0.44350603 \n\t\t0.54333943 8.7828006e-08 0.10281183 0.42745945 8.4371187e-08 0.49139538 0.42745945 \n\t\t8.4371187e-08 0.49139538 0.87632525 1.120812e-07 -0.62894613 -1.2261528 -1.3440058e-07 \n\t\t1.4826542 1.0131912 1.3797545e-07 -0.5017122 1.0131912 1.3797545e-07 -0.5017122 -0.83116084 \n\t\t-1.4902194e-07 -0.55151206 0.59282535 1.722844e-07 2.166996 -0.29512674 -9.0933973e-08 \n\t\t-1.217622 0.94869149 1.6265248e-07 0.4294928 1.3428233 2.2617778e-07 0.49912435 1.3430413 \n\t\t2.2689251e-07 0.51742733 -0.75915676 -4.486866e-08 1.9484702 -1.2601749 -2.0540867e-07 \n\t\t-0.28435397 -1.2213088 -1.9965329e-07 -0.29116601 0.48195541 7.9754251e-08 0.14087982 \n\t\t0.42057139 7.0264029e-08 0.14087984 -0.59299254 -1.2139174e-07 -0.79854006 0.31893122 \n\t\t3.7473273e-09 -1.2244642 0.8184014 1.0112381e-07 -0.68275422 -0.58580655 -8.6742602e-08 \n\t\t0.10281194 -0.62022257 -9.2063459e-08 0.10281194 1.4923691 2.3321863e-07 0.066979825 \n\t\t-0.85101086 -1.5202602e-07 -0.54977006 -1.0583049 -1.8032746e-07 -0.44906589 -1.0583049 \n\t\t-1.8032746e-07 -0.44906589 0.36817738 6.0747233e-08 0.10281186 -0.31657282 -9.4675357e-08 \n\t\t-1.229064 -0.4659248 -1.1263902e-07 -1.09128 0.33376139 5.542638e-08 0.10281186 0.90516752 \n\t\t1.3635211e-07 -0.096496224 0.35296124 1.0008081e-08 -1.1976002 0.59573346 9.5928343e-08 \n\t\t0.10281183 -0.29539463 -5.0958299e-08 -0.14214613 0.90850753 1.3672852e-07 -0.10025823 \n\t\t0.90850753 1.3672852e-07 -0.10025823 0.25333735 -1.0128546e-09 -1.0798502 0.32586321 \n\t\t7.8219333e-09 -1.1437602 -0.93876457 -1.2653847e-07 0.49983954 -0.51314867 -1.1765959e-07 \n\t\t-1.0299922 1.1800731 1.6830558e-07 -0.37998021 1.1800731 1.6830558e-07 -0.37998021 \n\t\t1.1901171 1.7066101e-07 -0.35841024 0.65707946 1.804647e-07 2.1198659 1.4595312 2.3542289e-07 \n\t\t0.26266363 -1.3259149 -1.8543457e-07 0.5256108 -1.5375149 -2.2606949e-07 0.31273934 \n\t\t-1.5375149 -2.2606949e-07 0.31273934 0.43656737 7.5263387e-08 0.20877562 0.41843128 \n\t\t1.9636484e-08 -1.2108642 -0.4698168 -1.1219533e-07 -1.063184 -0.30900478 -9.3334151e-08 \n\t\t-1.2244639 -0.32057878 -9.6070806e-08 -1.249922 0.53600937 8.9445741e-08 0.17674583 \n\t\t-0.27309266 4.2727535e-08 2.2830338 0.68305945 1.8364656e-07 2.0974317 0.29614341 \n\t\t2.4300142e-08 -0.57741416 -1.0296547 -1.7785692e-07 -0.50171196 -1.0296547 -1.7785692e-07 \n\t\t-0.50171196 -0.99708092 -1.7523244e-07 -0.56652391 -0.53341258 -7.8642273e-08 0.10281194 \n\t\t0.32208103 7.1682851e-09 -1.145612 0.32208103 7.1682851e-09 -1.145612 0.32208103 \n\t\t7.1682851e-09 -1.145612 0.35501507 7.9598914e-09 -1.2611799 0.36183712 6.6370389e-09 \n\t\t-1.325078 -1.0822628 -1.8790577e-07 -0.55318999 -0.61938864 -1.3608968e-07 -1.0838763 \n\t\t-1.3179349 -1.8597609e-07 0.47789982 -1.3294668 -1.8402805e-07 0.57817006 0.64286345 \n\t\t1.0463129e-07 0.14087982 0.63014948 1.0266566e-07 0.14087982 0.77770752 1.1201082e-07 \n\t\t-0.22107624 0.77770752 1.1201082e-07 -0.22107624 0.7655955 1.1074728e-07 -0.20470822 \n\t\t-1.3328749 -1.8271857e-07 0.62752402 -1.0180892 -1.7769739e-07 -0.54548007 -1.0305332 \n\t\t-1.7908147e-07 -0.53097206 1.1485572 1.6288679e-07 -0.39466208 1.1485572 1.6288679e-07 \n\t\t-0.39466208 -0.82122695 -1.4761211e-07 -0.5548979 -1.1534069 -1.9515637e-07 -0.45244598 \n\t\t-1.1534069 -1.9515637e-07 -0.45244598 -1.1614609 -1.9575636e-07 -0.43510598 1.067643 \n\t\t1.4447849e-07 -0.55319023 1.067643 1.4447849e-07 -0.55319023 -1.0696449 -1.8366546e-07 \n\t\t-0.491658 -1.0696449 -1.8366546e-07 -0.491658 1.1867611 1.6836285e-07 -0.40623021 \n\t\t-0.47456074 -1.1406088e-07 -1.0936102 0.33566105 9.2688461e-09 -1.1455842 0.33566105 \n\t\t9.2688461e-09 -1.1455842 0.33566105 9.2688461e-09 -1.1455842 1.2244111 1.767656e-07 \n\t\t-0.33684009 1.2244111 1.767656e-07 -0.33684009 0.39992127 1.6599282e-08 -1.2155802 \n\t\t1.2001612 1.7301646e-07 -0.33684009 1.2001612 1.7301646e-07 -0.33684009;\n\tsetAttr \".pt[12284:12449]\" 1.2001612 1.7301646e-07 -0.33684009 -0.83240294 -1.4875489e-07 \n\t\t-0.53917402 1.3717071 2.0532866e-07 -0.18121812 1.3856311 2.0828679e-07 -0.15957215 \n\t\t0.32850724 9.9590558e-09 -1.0973102 0.29542124 4.7030246e-09 -1.1010942 0.78121716 \n\t\t9.2350874e-08 -0.76402807 -1.3482248 -1.7020525e-07 1.0276041 -0.93597674 -1.6692199e-07 \n\t\t-0.59706807 0.37706113 9.1609982e-09 -1.320502 0.34810108 8.4852001e-09 -1.218334 \n\t\t0.61245549 1.0034572e-07 0.15204982 1.307127 1.9680238e-07 -0.1420321 1.2771372 1.9209519e-07 \n\t\t-0.14393009 1.2771372 1.9209519e-07 -0.14393009 -1.2393167 -1.8542174e-07 0.166136 \n\t\t-1.2393167 -1.8542174e-07 0.166136 -0.24341069 -7.7812132e-08 -1.07985 0.87758154 \n\t\t1.3132764e-07 -0.11691022 0.39061129 1.4858975e-08 -1.2236682 0.40416726 1.6970114e-08 \n\t\t-1.2232562 0.69856548 1.2331409e-07 0.41154322 0.68335748 1.2096287e-07 0.41154322 \n\t\t-1.0064089 -1.7674908e-07 -0.56852591 -0.22241266 -7.4810963e-08 -1.0864402 -0.57999653 \n\t\t-8.8492264e-08 0.031647936 1.2432051 1.8220327e-07 -0.26879016 0.89578718 1.1716902e-07 \n\t\t-0.5730741 -0.32434487 -1.0039894e-07 -1.3505942 -0.32904691 -1.0102573e-07 -1.3479022 \n\t\t-0.34152859 -4.7144141e-08 0.15204991 -0.32932884 -1.0054706e-07 -1.3338662 -0.32969084 \n\t\t-1.0035185e-07 -1.327116 0.3389731 2.2529103e-09 -1.3479022 0.33427113 1.4258026e-09 \n\t\t-1.3505942 0.42745948 8.4371202e-08 0.49139583 0.42745948 8.4371202e-08 0.49139583 \n\t\t0.37012917 7.4920106e-09 -1.3365542 0.33675134 7.819505e-09 -1.1890662 0.42057136 \n\t\t7.0264022e-08 0.14087984 1.0832992 1.4925863e-07 -0.48977423 0.33925515 2.8187781e-09 \n\t\t-1.3338662 -0.53027654 -8.1083897e-08 0.02416192 -0.28906676 -8.6429871e-08 -1.121752 \n\t\t-1.0270952 -1.7962854e-07 -0.55996007 -0.33207685 -1.0057614e-07 -1.32323 -0.33207685 \n\t\t-1.0057614e-07 -1.32323 1.458639 2.2740893e-07 0.050991818 -0.33427274 -9.3122125e-08 \n\t\t-1.113776 -0.30506676 -8.8730971e-08 -1.1171142 -1.2947788 -2.0707529e-07 -0.18536401 \n\t\t-0.25687468 -9.0303686e-08 -1.359622 -0.25736073 -9.052566e-08 -1.3635682 -1.3497729 \n\t\t-1.7036037e-07 1.0298681 -1.187657 -1.9584299e-07 -0.32858804 1.4297732 2.2663174e-07 \n\t\t0.15004383 -1.130953 -1.8808444e-07 -0.35568187 1.0957332 1.5213791e-07 -0.46405607 \n\t\t1.3038353 2.2413116e-07 0.60611773 -0.19678068 -8.185993e-08 -1.3823861 -0.63633066 \n\t\t-1.3673566e-07 -1.0308422 -0.41378063 -6.3073152e-08 0.024161942 -1.1543269 -1.9249346e-07 \n\t\t-0.37705591 -1.1543269 -1.9249346e-07 -0.37705591 1.3021472 2.0042005e-07 -0.024114165 \n\t\t1.3021472 2.0042005e-07 -0.024114165 -1.0296987 -1.6979753e-07 -0.28493008 -0.99492455 \n\t\t-1.6345403e-07 -0.25893405 -1.2783308 -2.0765506e-07 -0.269288 -1.2783308 -2.0765506e-07 \n\t\t-0.269288 1.3917731 2.2331611e-07 0.21882702 1.5143811 2.3761889e-07 0.093777828 \n\t\t1.1299431 1.6017678e-07 -0.39015222 0.73313743 1.3248867e-07 0.51446563 0.68867546 \n\t\t1.2561465e-07 0.51446527 -0.20252071 -8.2833751e-08 -1.3847079 -1.0499047 -1.4700659e-07 \n\t\t0.41154298 -0.36406064 -5.5386234e-08 0.024161942 -0.63549668 -1.3882317e-07 -1.09041 \n\t\t0.76113939 1.0960314e-07 -0.21694221 -0.19705071 -8.204367e-08 -1.3862022 -0.60043865 \n\t\t-1.3164868e-07 -1.0432602 -0.86927062 -1.1907982e-07 0.41154295 -0.94409263 -1.3064759e-07 \n\t\t0.41154337 -1.023077 -1.7636363e-07 -0.48890999 -0.97650898 -1.6906176e-07 -0.48616192 \n\t\t-0.94409263 -1.3028867e-07 0.42118958 0.3192952 3.4253331e-09 -1.2346302 0.30027521 \n\t\t3.4096019e-09 -1.156024 -0.33140463 -5.033748e-08 0.024161913 0.78174341 1.1243177e-07 \n\t\t-0.22653222 0.78174341 1.1243177e-07 -0.22653222 -1.0077507 -1.404894e-07 0.41154337 \n\t\t-1.8408529 -2.3722167e-07 1.2734042 0.77474934 1.9537222e-07 2.0315876 0.77115136 \n\t\t1.9578778e-07 2.0577059 0.48195538 7.5689854e-08 0.031647835 0.42370737 6.6684478e-08 \n\t\t0.031647835 1.3603312 2.1003022e-07 -0.0075941756 0.3011353 5.9226615e-09 -1.0920582 \n\t\t1.2803531 1.9714977e-07 -0.021448145 1.4075171 2.1910571e-07 0.04025387 1.4075171 \n\t\t2.1910571e-07 0.04025387 -1.501971 -2.0680693e-07 0.68274206 -0.31934062 -4.8193794e-08 \n\t\t0.031647902 -1.073005 -1.8352353e-07 -0.47388199 -1.073005 -1.8352353e-07 -0.47388199 \n\t\t-1.1740887 -1.9626856e-07 -0.39640197 -1.1797787 -1.9707898e-07 -0.39453998 -0.95552081 \n\t\t-9.1345278e-08 1.5152943 -1.013019 -1.7597287e-07 -0.52020007 -0.31934062 -4.8472341e-08 \n\t\t0.024161916 1.3705171 2.3872548e-07 0.72127986 1.3710651 2.3932569e-07 0.73513377 \n\t\t1.3710651 2.3932569e-07 0.73513377 1.3017892 1.9982197e-07 -0.038700167 -1.2406088 \n\t\t-2.0297165e-07 -0.300156 -1.2406088 -2.0297165e-07 -0.300156 -1.1386309 -1.9072188e-07 \n\t\t-0.39466196 -1.1386309 -1.9072188e-07 -0.39466196 -1.1442308 -1.9119422e-07 -0.38408798 \n\t\t-1.2885407 -1.8664353e-07 0.33782819 1.0252594 1.776519e-07 0.51446515 0.95811546 \n\t\t1.6727118e-07 0.51446515 -0.3314046 -5.033748e-08 0.024161918 -1.0934528 -1.8720822e-07 \n\t\t-0.487948 0.77250123 8.4090487e-08 -0.9498142 -0.63805664 -1.3884456e-07 -1.080348 \n\t\t0.34976313 4.7911044e-09 -1.3245202 -1.0569507 -1.7381396e-07 -0.27964005 -1.0569507 \n\t\t-1.7381396e-07 -0.27964005 -1.0537887 -1.7382631e-07 -0.2931101 -1.0537887 -1.7382631e-07 \n\t\t-0.2931101 -1.3363248 -2.1371696e-07 -0.19123591 1.3351433 2.3087227e-07 0.65720177 \n\t\t1.3428012 2.3095194e-07 0.62752378 -0.62632269 -1.238936e-07 -0.72729009 -1.2546108 \n\t\t-1.8642741e-07 0.20265581 -0.52881467 -1.2113544e-07 -1.0583142 0.29040346 5.9408219e-08 \n\t\t0.38997978 0.29040346 5.9408219e-08 0.38997978 0.27427331 2.3037794e-09 -1.0777042 \n\t\t0.25573727 -7.7844409e-10 -1.0835222 1.468001 2.294594e-07 0.067199826 -1.2604508 \n\t\t-2.0254541e-07 -0.20625599 0.52981132 3.737312e-08 -1.1969743 0.52814734 3.7147341e-08 \n\t\t-1.1961282 1.4431031 2.2521627e-07 0.056615859 -1.347665 -2.186804e-07 -0.27751186 \n\t\t-0.68737257 -9.0289767e-08 0.42949215 1.3682572 2.3749499e-07 0.69759977 -1.3120928 \n\t\t-2.1026193e-07 -0.19906598 -1.3120928 -2.1026193e-07 -0.19906598 -1.1026468 -1.8791435e-07 \n\t\t-0.46872401 0.34996912 4.5722413e-09 -1.3312582 0.62777531 5.5449988e-08 -1.1181962 \n\t\t0.52657735 3.6768654e-08 -1.1997823 -0.3177588 -9.5909641e-08 -1.257308 -0.3177588 \n\t\t-9.5909641e-08 -1.257308 0.87919742 1.5190842e-07 0.4294928 0.7449894 1.0791832e-07 \n\t\t-0.19511819 0.38176137 6.243183e-08 0.091643848 0.32705918 2.1154993e-09 -1.3020922 \n\t\t0.73100954 1.0537202e-07 -0.20546424 0.89776725 1.0811752e-07 -0.82456422 -1.0324146 \n\t\t-1.6885544e-07 -0.24832608;\n\tsetAttr \".pt[12450:12615]\" 0.3249613 1.0620719e-08 -1.0647942 0.51500934 3.4831285e-08 \n\t\t-1.2037842 -0.78618461 -1.4776107e-07 -0.70450407 -0.78618461 -1.4776107e-07 -0.70450407 \n\t\t-1.1701468 -1.9504807e-07 -0.37997997 -1.1701468 -1.9504807e-07 -0.37997997 0.42415327 \n\t\t2.0136236e-08 -1.2212082 0.62028944 1.7366672e-07 2.0900316 0.52307534 4.2544904e-08 \n\t\t-1.0299922 -1.1352106 -1.8684618e-07 -0.30471206 -1.1478506 -1.8913964e-07 -0.31383002 \n\t\t-0.40052262 -9.5771888e-08 -0.90971798 -0.99723679 -8.9988717e-08 1.7250843 -0.7724728 \n\t\t-4.6318121e-08 1.9648442 -0.97645086 -1.6836999e-07 -0.46781191 -1.024729 -1.7594697e-07 \n\t\t-0.47084799 0.75057745 1.3758419e-07 0.57894582 -1.2044048 -1.9954184e-07 -0.35840797 \n\t\t0.48195538 7.5411315e-08 0.024161851 0.54020339 8.4416698e-08 0.024161851 -1.1612388 \n\t\t-1.9425272e-07 -0.39561796 -1.1612388 -1.9425272e-07 -0.39561796 -1.0559108 -1.8020513e-07 \n\t\t-0.45572597 0.35929117 6.1880612e-09 -1.326566 0.54585135 3.8343195e-08 -1.2375503 \n\t\t0.54966533 3.9056161e-08 -1.2342362 -1.0056907 -1.6411715e-07 -0.23202208 -0.96784264 \n\t\t-1.5711862e-07 -0.20119406 -0.36406261 -5.538654e-08 0.02416192 -0.47490466 -1.0852992e-07 \n\t\t-0.9435342 -1.7495767 -2.2436683e-07 1.2396262 -1.1445626 -1.8867975e-07 -0.31513205 \n\t\t0.49649927 3.1794073e-08 -1.2085003 -1.3479348 -2.0513842e-07 0.087556034 0.23233931 \n\t\t-4.504443e-09 -1.0864402 -0.76257479 -1.5323856e-07 -0.94981396 -0.79977661 -1.0864467e-07 \n\t\t0.40324077 0.74715751 1.0705651e-07 -0.22728819 1.4000372 2.2213511e-07 0.15274982 \n\t\t0.33961716 3.1259142e-09 -1.327116 0.34702313 3.6815149e-09 -1.3429562 -1.0288346 \n\t\t-1.6833827e-07 -0.24930203 -0.45115465 -1.0507953e-07 -0.94948596 -0.45115465 -1.0507953e-07 \n\t\t-0.94948596 -1.0370448 -1.4435052e-07 0.42949215 -1.6931769 -2.1580777e-07 1.2353101 \n\t\t1.490013 2.3386109e-07 0.094035842 0.68195748 1.8587177e-07 2.161814 -1.0912648 -1.8595938e-07 \n\t\t-0.463476 -0.68737257 -9.126655e-08 0.40324071 0.8799395 1.3157364e-07 -0.12009624 \n\t\t0.53219932 3.6056832e-08 -1.2422723 -1.7519869 -2.3955263e-07 0.84151614 -0.41753256 \n\t\t-4.6268049e-08 0.4913955 -0.41753256 -4.6268049e-08 0.4913955 -0.41753256 -4.6268035e-08 \n\t\t0.49139589 -0.41753256 -4.6268035e-08 0.49139589 -0.79977661 -1.0505034e-07 0.49983993 \n\t\t0.84884906 1.091844e-07 -0.59263402 0.46108133 3.6421007e-08 -0.93698615 0.46108133 \n\t\t3.6421007e-08 -0.93698615 -1.7030766 -2.1834333e-07 1.2082998 -0.67343056 -8.8802132e-08 \n\t\t0.41154334 -0.47202864 -6.7320059e-08 0.15204793 -1.2291547 -1.9232554e-07 -0.061629988 \n\t\t-0.32824689 -1.0028355e-07 -1.33128 -0.32824689 -1.0028355e-07 -1.33128 1.5045431 \n\t\t2.3627867e-07 0.098635837 -0.73079056 -9.7670231e-08 0.41154295 -0.79445052 -1.0751231e-07 \n\t\t0.41154337 1.0610952 1.8559153e-07 0.57894582 -0.83892298 -1.5175209e-07 -0.59263402 \n\t\t-0.85302883 -1.5448569e-07 -0.60748994 1.108217 1.5536797e-07 -0.42911813 1.108217 \n\t\t1.5536797e-07 -0.42911813 1.108217 1.5536797e-07 -0.42911813 0.15712777 4.5591047e-08 \n\t\t0.57240462 0.4237074 6.6405939e-08 0.024161831 1.8260192 3.2703875e-07 1.2021017 \n\t\t1.8893231 3.3767355e-07 1.2248857 -0.68863857 -9.1153346e-08 0.41154334 0.66912746 \n\t\t1.7907271e-07 2.0323958 -0.7390548 -1.4841331e-07 -0.91786003 0.29025733 1.3085199e-07 \n\t\t2.310668 0.31142125 7.3492683e-09 -1.0964562 -1.1597207 -1.9012771e-07 -0.29106402 \n\t\t-1.1565006 -1.8967862e-07 -0.29237404 -1.3285009 -2.0921146e-07 -0.10265797 0.35418516 \n\t\t5.5755325e-09 -1.3218123 -1.5532869 -2.2791467e-07 0.32868269 -0.39570853 -4.3494818e-08 \n\t\t0.47524729 -0.39570853 -4.3494818e-08 0.47524729 -0.70149857 -9.3450502e-08 0.40324032 \n\t\t-1.8793968 -2.4498601e-07 1.2248862 -1.8793968 -2.4498601e-07 1.2248862 -1.8178346 \n\t\t-2.3629265e-07 1.2027299 -0.53973866 -1.2937016e-07 -1.234236 0.85913724 9.9763056e-08 \n\t\t-0.88858426 1.6882292 2.902716e-07 0.78649378 0.80970347 1.4672533e-07 0.57894582 \n\t\t-1.0248866 -1.0235433e-07 1.5076398 1.1018492 1.5942742e-07 -0.29356015 -1.5715605 \n\t\t-1.9879842e-07 1.187122 -1.5715605 -1.9879842e-07 1.187122 -1.2700065 -1.5625642e-07 \n\t\t1.077484 -1.2700065 -1.5625642e-07 1.077484 -1.2700065 -1.5625642e-07 1.077484 0.51076335 \n\t\t3.4460452e-08 -1.1961082 0.51847535 3.5668386e-08 -1.1956882 -1.5790267 -2.0071595e-07 \n\t\t1.16661 -1.5790267 -2.0071595e-07 1.16661 -0.51988465 -1.2491418e-07 -1.196974 -0.51665264 \n\t\t-1.2451899e-07 -1.1997823 0.096795365 -2.5622622e-08 -1.0908082 0.096795365 -2.5622622e-08 \n\t\t-1.0908082 -0.97193897 -1.6747197e-07 -0.46242389 -1.027985 -1.7629638e-07 -0.46671 \n\t\t0.48195538 7.5177645e-08 0.017881846 -0.32058278 -9.550525e-08 -1.2347059 -0.52546275 \n\t\t-1.1994403e-07 -1.0402219 -0.52546275 -1.1994403e-07 -1.0402219 -1.0077506 -1.4048939e-07 \n\t\t0.41154337 -1.8160928 -2.3604673e-07 1.2021019 -1.8160928 -2.3604673e-07 1.2021019 \n\t\t-1.462307 -1.9518761e-07 0.83021015 -0.47066879 -1.1108711e-07 -1.02986 1.3177471 \n\t\t2.0283186e-07 -0.024114165 1.3177471 2.0283186e-07 -0.024114165 1.3175932 2.02175e-07 \n\t\t-0.041128162 1.3175932 2.02175e-07 -0.041128162 0.49077728 3.129432e-08 -1.1981562 \n\t\t-0.53777468 -1.2902939e-07 -1.233238 1.3782911 2.1273635e-07 -0.0094901696 1.0156893 \n\t\t1.48251e-07 -0.23593222 0.97478133 1.431338e-07 -0.20348421 1.2964132 1.9283783e-07 \n\t\t-0.20406421 1.2964132 1.9283783e-07 -0.20406421 1.3702911 2.3981968e-07 0.75162578 \n\t\t-0.30318856 -3.1738256e-08 0.40678471 -0.30318856 -3.1738256e-08 0.40678471 1.3271792 \n\t\t2.1246821e-07 0.19567582 1.528955 2.400416e-07 0.098333821 1.0156173 1.4838535e-07 \n\t\t-0.2320222 -0.93876457 -1.3013279e-07 0.40324077 -0.86927056 -1.1841191e-07 0.42949295 \n\t\t-0.29445854 -3.062889e-08 0.40032569 -0.29445854 -3.062889e-08 0.40032569 -0.29445854 \n\t\t-3.062889e-08 0.40032569 -0.28047654 -2.885217e-08 0.38997984 -0.28047654 -2.885217e-08 \n\t\t0.38997984 1.086643 1.485413e-07 -0.52294624 -1.3172529 -1.9637186e-07 0.19567606 \n\t\t-1.3266869 -1.8965227e-07 0.41546625 -0.52636266 -1.272457e-07 -1.232718 -0.41064459 \n\t\t-5.9661836e-08 0.10281192 -1.8807708 -2.5006861e-07 1.0939982 -1.4024788 -1.5940127e-07 \n\t\t1.5433937 -0.51741654 -7.2226449e-08 0.20877573 -1.504455 -2.2910555e-07 0.093778096 \n\t\t-1.5190289 -2.3118922e-07 0.098334089 0.26217741 7.5218942e-09 -0.88720614 0.26217741 \n\t\t7.5218942e-09 -0.88720614 -0.34152862 -5.2136365e-08 0.017881909 0.35145536 5.9994022e-08 \n\t\t0.15204985 -1.1313026 -1.2317325e-07 1.390286 -0.37183663 -5.6822106e-08 0.017881937;\n\tsetAttr \".pt[12616:12781]\" 0.74866325 8.0577465e-08 -0.94518018 0.61263525 5.7236015e-08 \n\t\t-1.0072882 0.096795335 -2.5622628e-08 -1.0908083 0.096795335 -2.5622628e-08 -1.0908083 \n\t\t-0.56431276 -8.39918e-09 2.1190162 -0.9481886 -1.2745124e-07 0.51446575 -0.51726264 \n\t\t-1.2585726e-07 -1.2332143 -0.34519857 -3.8647354e-08 0.39565349 -0.34519857 -3.8647354e-08 \n\t\t0.39565349 1.325299 1.9364333e-07 -0.30243811 0.42370737 6.6405931e-08 0.024161851 \n\t\t-0.86927056 -1.1938873e-07 0.40324074 -0.54548877 -5.9276788e-09 2.1072242 0.3402614 \n\t\t5.8263389e-08 0.15204985 -0.86927062 -1.152502e-07 0.51446575 0.3402614 5.9182312e-08 \n\t\t0.17674625 1.1377392 1.6021269e-07 -0.4215802 1.1125731 1.5456774e-07 -0.46872425 \n\t\t-0.50083667 -1.2193706e-07 -1.1961082 -1.3078208 -2.0309172e-07 -0.024113927 -1.3078208 \n\t\t-2.0309172e-07 -0.024113927 -0.31593877 -9.140328e-08 -1.14376 -0.35309476 -9.6212695e-08 \n\t\t-1.1186299 0.93542939 2.0218015e-07 1.5469201 1.0967911 2.2931245e-07 1.6056458 -0.47202861 \n\t\t-6.9152058e-08 0.10281192 -1.2922208 -2.0067991e-07 -0.024113927 -1.2922208 -2.0067991e-07 \n\t\t-0.024113927 0.75030339 1.0670539e-07 -0.24979617 0.75030339 1.0670539e-07 -0.24979623 \n\t\t0.77770752 1.1201081e-07 -0.22107621 0.77770752 1.1201081e-07 -0.22107621 0.87919742 \n\t\t1.5124051e-07 0.4115428 -0.41589454 -4.763071e-08 0.44796729 -0.41589454 -4.763071e-08 \n\t\t0.44796729 -0.41797462 -6.3955227e-08 0.017881935 -0.94014293 -1.3872248e-07 0.17811629 \n\t\t1.1121451 1.6844955e-07 -0.093866155 1.112059 1.6696724e-07 -0.13334613 1.374191 \n\t\t2.318797e-07 0.52203083 -1.1666927 -1.3232481e-07 1.2913821 -1.4270186 -1.632459e-07 \n\t\t1.542032 -1.4270186 -1.632459e-07 1.542032 -1.4270186 -1.632459e-07 1.542032 -0.49879274 \n\t\t5.4746478e-09 2.2196422 -0.51129675 4.8496647e-09 2.2548003 -1.1278945 -1.3719095e-07 \n\t\t0.99939388 -1.2775484 -1.5819347e-07 1.056762 -1.2775484 -1.5819347e-07 1.056762 \n\t\t-1.2775484 -1.5819347e-07 1.056762 -0.57222253 -8.780259e-08 0.017881945 -0.52608252 \n\t\t-8.0669153e-08 0.017881915 0.80744523 9.075093e-08 -0.91600621 1.0078193 1.7081707e-07 \n\t\t0.40324059 0.94869143 1.6167567e-07 0.40324059 1.1081589 1.7427122e-07 0.079155907 \n\t\t0.98575932 2.1055641e-07 1.562912 0.29870746 4.0892399e-08 -0.14214414 -1.0810828 \n\t\t-1.2431855e-07 1.1508402 -1.0405767 -1.7062203e-07 -0.26189008 -0.23351279 -8.0221476e-08 \n\t\t-1.1857282 -0.45438069 -1.0958328e-07 -1.057122 -0.21295279 -7.6908108e-08 -1.1821079 \n\t\t0.42745942 8.4371194e-08 0.49139583 0.42745942 8.4371194e-08 0.49139583 -0.28033066 \n\t\t4.2636742e-08 2.310668 -0.29038665 4.0825896e-08 2.3037839 -1.0057627 -1.6427377e-07 \n\t\t-0.2359321 -0.96485466 -1.5674188e-07 -0.20348409 0.87919742 1.5093161e-07 0.40324059 \n\t\t-0.47202861 -7.2312197e-08 0.017881915 -0.41797459 -6.3955227e-08 0.017881915 -1.4776889 \n\t\t-2.1459535e-07 0.37253177 -1.4776889 -2.1459535e-07 0.37253177 -0.67371464 -6.6952417e-08 \n\t\t0.99994391 -0.65776056 -6.4486144e-08 0.99993593 -1.478493 -2.1795823e-07 0.28549388 \n\t\t-0.29501668 3.985468e-08 2.2969201 -1.465865 -2.132614e-07 0.35925308 -1.450527 -2.1144025e-07 \n\t\t0.34446689 -1.450527 -2.1144025e-07 0.34446689 1.3220191 1.9698258e-07 -0.19906616 \n\t\t1.3220191 1.9698258e-07 -0.19906616 -1.5246329 -2.2409989e-07 0.31214789 0.29614338 \n\t\t2.4300139e-08 -0.57741416 1.3366132 2.2210484e-07 0.41546601 -0.32807684 -1.001571e-07 \n\t\t-1.328588 -0.32807684 -1.001571e-07 -1.328588 -0.29348865 3.9876671e-08 2.291162 \n\t\t-0.72839653 -8.8300403e-08 0.65341395 -0.37842673 -1.0388543e-07 -1.2195822 0.37398741 \n\t\t5.8719021e-08 0.024161831 0.18620844 -2.2965775e-08 -1.3909202 -1.500947 -2.1811529e-07 \n\t\t0.37457046 -1.500947 -2.1811529e-07 0.37457046 -1.1203527 -1.35254e-07 1.0201139 \n\t\t-1.1229669 -1.8993535e-07 -0.43860799 -1.1323248 -1.9147544e-07 -0.44111598 1.1033791 \n\t\t1.5243101e-07 -0.48794812 1.0200713 1.8201992e-07 0.65341383 -1.3570549 -2.1495006e-07 \n\t\t-0.1382419 0.31311548 6.3544888e-08 0.40678501 0.31311548 6.3544888e-08 0.40678501 \n\t\t0.31311548 6.3544888e-08 0.40678501 -0.37519273 -1.0349e-07 -1.2223922 -0.19806263 \n\t\t-9.323367e-09 0.57239068 0.40141729 1.4982488e-08 -1.2652482 -1.2972009 -2.0583741e-07 \n\t\t-0.14203192 -1.431973 -1.9567923e-07 0.69095814 -1.3812107 -1.8026678e-07 0.89425415 \n\t\t-1.3988649 -2.1250868e-07 0.10109406 -1.3988649 -2.1250868e-07 0.10109406 0.15834144 \n\t\t-2.7305312e-08 -1.3917582 0.82084548 1.5121879e-07 0.65341383 -0.76127261 -9.3383171e-08 \n\t\t0.65341395 -0.43571672 -1.1368459e-07 -1.2448959 -1.7001508 -2.173619e-07 1.2225198 \n\t\t-0.356197 -1.9931829e-08 0.94434005 0.3210474 5.4877205e-08 0.14087985 0.33376136 \n\t\t5.684284e-08 0.14087985 -0.43172273 -1.1162012e-07 -1.206008 -0.77340484 -5.9794921e-08 \n\t\t1.6065222 -0.78316683 -6.1970574e-08 1.5886122 -0.29037476 -8.7241801e-08 -1.1381382 \n\t\t-0.34733474 -9.5197606e-08 -1.1152822 -0.34733474 -9.5197606e-08 -1.1152822 1.3742132 \n\t\t2.309e-07 0.49560943 -1.5577449 -1.8500614e-07 1.5003901 -0.81091863 -1.0105865e-07 \n\t\t0.65341395 -1.4033308 -2.1317211e-07 0.10182007 1.2834831 2.0652601e-07 0.21753623 \n\t\t-0.37549672 -1.0514962e-07 -1.2657322 -0.78507096 -9.8760026e-08 0.60779208 -0.84429294 \n\t\t-1.1190238e-07 0.50065607 1.759289 3.1881774e-07 1.2584257 -0.39424273 -1.0646735e-07 \n\t\t-1.2232562 -0.38068473 -1.0438656e-07 -1.2236682 0.38275728 1.2258914e-08 -1.2609122 \n\t\t0.39640927 1.4545269e-08 -1.2561902 1.2882571 1.8914997e-07 -0.26928818 1.2882571 \n\t\t1.8914997e-07 -0.26928818 -1.6964328 -2.324407e-07 0.80182213 -1.6964328 -2.324407e-07 \n\t\t0.80182213 1.0598313 1.791673e-07 0.41154379 1.0750393 1.8151849e-07 0.41154316 0.36817735 \n\t\t6.2163693e-08 0.14087985 0.39103103 1.8718188e-08 -1.1216942 1.4112211 2.7636068e-07 \n\t\t1.5636138 1.0176774 1.726501e-07 0.41154319 0.30532134 3.647747e-08 -0.28827819 1.8277614 \n\t\t3.2733146e-07 1.2027297 -0.25862464 4.5133131e-08 2.28757 -1.0982331 -1.6684605e-07 \n\t\t0.079156086 -0.14621907 -7.9764853e-08 -1.5361661 -1.444175 -1.9928676e-07 0.6447041 \n\t\t-1.444175 -1.9928676e-07 0.6447041 -1.0571609 -1.8183198e-07 -0.49425399 -0.24164076 \n\t\t-8.0139692e-08 -1.1497582 -0.93876463 -1.2915598e-07 0.42949298 -0.99789274 -1.3829745e-07 \n\t\t0.42949218 0.94668508 1.5062231e-07 0.11451393 0.94668508 1.5062231e-07 0.11451393 \n\t\t-1.0452831 -1.8014767e-07 -0.49834001 -1.369067 -1.7666834e-07 0.94050616 -1.3653327 \n\t\t-1.7544045e-07 0.95799011 0.95401949 1.6280833e-07 0.41154319;\n\tsetAttr \".pt[12782:12947]\" 0.93754941 1.692617e-07 0.65341383 -1.1194469 -1.9208267e-07 \n\t\t-0.51094401 -0.19614467 -8.1085069e-08 -1.364204 -0.19614467 -8.1085069e-08 -1.364204 \n\t\t1.1098012 1.5249293e-07 -0.51296812 -1.1740009 -1.9385396e-07 -0.33187401 -1.1740009 \n\t\t-1.9385396e-07 -0.33187401 -1.1510448 -1.900727e-07 -0.325634 0.76036727 9.0026205e-08 \n\t\t-0.73987216 -1.425545 -1.9477935e-07 0.688434 -1.1850868 -1.9568823e-07 -0.33510786 \n\t\t0.97776932 1.4368096e-07 -0.2011942 1.1230131 1.5805088e-07 -0.4184922 1.1063192 \n\t\t1.5563633e-07 -0.41402012 1.0720209 1.7316357e-07 0.19954272 0.80970347 1.4018754e-07 \n\t\t0.4032402 -0.76127255 -9.3383164e-08 0.65341395 -0.81091857 -1.0105864e-07 0.65341395 \n\t\t-1.3772249 -1.8001127e-07 0.88455999 0.41824928 1.8128777e-08 -1.2506282 -1.087059 \n\t\t-1.6019776e-07 0.21140291 0.96254522 1.2594019e-07 -0.61472821 -1.1740029 -1.9180729e-07 \n\t\t-0.27686 -1.1439127 -1.8977529e-07 -0.34727594 -1.0456126 -1.7009665e-07 -0.22684605 \n\t\t-0.73079062 -9.73113e-08 0.42118955 0.22954519 -1.1465366e-08 -1.2619082 0.22954519 \n\t\t-1.1465366e-08 -1.2619082 -1.3153729 -2.1463266e-07 -0.30290189 -0.74065053 -9.2965777e-08 \n\t\t0.57894593 -1.2144848 -1.9893307e-07 -0.30016398 -1.2144848 -1.9893307e-07 -0.30016398 \n\t\t1.0387614 1.5132055e-07 -0.24930221 0.2228792 -9.5266897e-09 -1.1821079 -0.60252857 \n\t\t-9.248803e-08 0.017881943 -1.0065647 -1.7308513e-07 -0.46940807 -1.0065647 -1.7308513e-07 \n\t\t-0.46940807 -1.082291 -1.8645476e-07 -0.51407599 -0.1962647 -8.1474823e-08 -1.3741802 \n\t\t-1.1902349 -1.9431681e-07 -0.27686 -1.0296547 -1.7648317e-07 -0.46479198 -1.0296547 \n\t\t-1.7648317e-07 -0.46479198 1.2018833 1.7537702e-07 -0.28055421 1.2805332 1.890895e-07 \n\t\t-0.23882018 0.86093718 1.1264818e-07 -0.54977006 0.84232903 1.1016555e-07 -0.53917402 \n\t\t-1.3339727 -1.8826941e-07 0.4829042 -0.45115465 -1.0461441e-07 -0.93698591 -0.45115465 \n\t\t-1.0461441e-07 -0.93698591 0.85969305 1.1199675e-07 -0.56210816 0.84108716 1.0951447e-07 \n\t\t-0.55151206 -1.1878489 -1.9309503e-07 -0.25393787 -1.3357468 -1.8906704e-07 0.4688392 \n\t\t-1.3357468 -1.8906704e-07 0.4688392 -1.0389189 -1.7882981e-07 -0.48936599 -0.8492108 \n\t\t-1.6435456e-07 -0.88858402 -1.233089 -2.0341959e-07 -0.34343991 -1.441265 -1.9844624e-07 \n\t\t0.65520215 -1.4371229 -1.9728034e-07 0.66932607 -0.73079056 -9.7311293e-08 0.42118955 \n\t\t-0.79445052 -1.0715339e-07 0.42118955 -0.68863857 -9.079443e-08 0.42118952 1.0379108 \n\t\t1.4022744e-07 -0.54390019 -1.3465948 -1.8858842e-07 0.52677602 0.24105734 1.2346351e-07 \n\t\t2.3165278 1.0570412 1.4785917e-07 -0.41828209 0.56608343 9.5287099e-08 0.20877562 \n\t\t1.002727 2.1242577e-07 1.54265 0.94454116 1.2470935e-07 -0.57300001 -0.72838265 -1.4468465e-07 \n\t\t-0.86199397 -0.42179868 -2.8004049e-08 0.99997401 -1.3583308 -1.8404671e-07 0.69760001 \n\t\t0.50021535 1.1530008e-07 1.0203178 0.43937933 1.0589525e-07 1.0203359 -0.95699298 \n\t\t-1.7084244e-07 -0.61510807 -0.43441871 -1.0208495e-07 -0.93854398 -0.43441871 -1.0208495e-07 \n\t\t-0.93854398 -1.3605908 -1.8351501e-07 0.7212801 -1.3611388 -1.8308425e-07 0.73513401 \n\t\t-1.3611388 -1.8308425e-07 0.73513401 -1.3244628 -1.7686286e-07 0.74994612 -1.3244628 \n\t\t-1.7686286e-07 0.74994612 -1.129077 -1.7786914e-07 -0.088935897 -1.129077 -1.7786914e-07 \n\t\t-0.088935897 -0.92437285 -1.6568998e-07 -0.61217207 -0.64522886 -7.0553469e-08 0.78480417 \n\t\t0.90019315 1.1840714e-07 -0.55810618 0.90019315 1.1840714e-07 -0.55810618 1.0280148 \n\t\t1.3863868e-07 -0.54548019 0.89855915 1.1768063e-07 -0.57084215 0.89855915 1.1768063e-07 \n\t\t-0.57084215 1.0348134 2.1608376e-07 1.5076398 -0.98092294 -1.7391885e-07 -0.59835792 \n\t\t0.22089921 -1.2610299e-08 -1.2567543 0.59153146 9.9221467e-08 0.20877564 0.60093147 \n\t\t1.0067475e-07 0.20877564 -0.74037659 -1.2375986e-07 -0.24979605 0.66768748 1.4043357e-07 \n\t\t0.99993593 -0.89929295 -1.6032202e-07 -0.57211405 1.0570391 1.4785884e-07 -0.41828209 \n\t\t0.59153146 9.9221467e-08 0.20877562 1.0396253 1.5012846e-07 -0.2849302 1.0048515 \n\t\t1.4571955e-07 -0.25893417 -0.70881653 -1.4065314e-07 -0.83494395 0.65104711 6.5798233e-08 \n\t\t-0.93677819 1.0356733 1.4972844e-07 -0.27926019 -1.1888287 -1.7598539e-07 0.20996201 \n\t\t-0.52608258 -7.4758034e-08 0.17674592 0.25017935 1.2490878e-07 2.3174677 -1.6906029 \n\t\t-2.3277002e-07 0.76874804 -1.4796908 -2.0884239e-07 0.53546286 -0.27174845 -2.7743114e-08 \n\t\t0.38352066 -0.27174845 -2.7743114e-08 0.38352066 -1.4851309 -2.2640039e-07 0.086188108 \n\t\t-0.7350626 -1.2090379e-07 -0.19511807 -0.74717462 -1.2338539e-07 -0.21148604 -0.74717462 \n\t\t-1.2338539e-07 -0.21148604 -0.30790481 -9.1591055e-08 -1.182188 -1.0029311 -1.801649e-07 \n\t\t-0.67477798 -1.4320389 -1.9634318e-07 0.67338812 0.96409935 1.4062512e-07 -0.22652218 \n\t\t-1.4342129 -2.1893243e-07 0.075326115 1.1314394 1.6499e-07 -0.26701224 -0.95720851 \n\t\t-1.5633296e-07 -0.22426404 -0.076780237 9.42899e-09 0.57243371 -0.87162846 -1.3930723e-07 \n\t\t-0.12228009 -1.3700168 -2.1150088e-07 0.0083140656 -0.27174851 -2.7743136e-08 0.38352028 \n\t\t-0.27174851 -2.7743136e-08 0.38352028 -0.27174851 -2.7743136e-08 0.38352028 -0.95417267 \n\t\t-1.5594762e-07 -0.22652204 -1.475621 -2.2554964e-07 0.069538102 -0.9255026 -8.5527581e-08 \n\t\t1.5469201 -1.0868648 -1.0828974e-07 1.6056458 0.44564328 2.2577284e-08 -1.2448962 \n\t\t1.1293732 1.5559415e-07 -0.51094425 1.1191449 1.5411484e-07 -0.5082022 0.4365674 \n\t\t7.5263387e-08 0.20877564 -1.0736169 -1.8481066e-07 -0.50593197 -1.0594511 -1.8247934e-07 \n\t\t-0.50213599 -1.0452831 -1.8014765e-07 -0.49834001 -0.66135061 -6.5040354e-08 0.99995804 \n\t\t-0.3303346 -4.7661135e-08 0.091643907 0.39402732 9.8885948e-08 1.0203979 0.47528929 \n\t\t2.7354458e-08 -1.2396883 1.090243 1.5032495e-07 -0.48996815 1.090243 1.5032495e-07 \n\t\t-0.48996815 -1.0877831 -1.8714206e-07 -0.50972795 -0.3249208 -9.4039855e-08 -1.1772982 \n\t\t0.26753134 1.2663439e-07 2.2917457 0.65371537 1.390319e-07 1.0203199 1.0921893 1.4827344e-07 \n\t\t-0.55319023 1.1652153 1.6163935e-07 -0.49740222 -1.0586408 -1.7934894e-07 -0.421372 \n\t\t0.25985152 5.3843554e-08 0.36737192 0.25985152 5.3843554e-08 0.36737192 0.28003746 \n\t\t5.5949336e-08 0.34009203 0.28003746 5.5949336e-08 0.34009203 -0.28841084 -9.3116981e-08 \n\t\t-1.3041962 1.2867391 1.8696889e-07 -0.32159811 1.2867391 1.8696889e-07 -0.32159811 \n\t\t0.50360924 3.1883761e-08 -1.2356322 -0.72601479 -4.9914743e-08 1.6751482 -0.58558452 \n\t\t-1.062818e-08 2.147496 0.97829902 1.3332374e-07 -0.48175016 1.034271 1.4182432e-07 \n\t\t-0.48586014;\n\tsetAttr \".pt[12948:13113]\" 0.29356134 1.3075861e-07 2.29443 -0.3718366 -5.6076217e-08 \n\t\t0.037927911 -0.3237046 -2.8748691e-08 0.57237571 0.56608343 9.5287099e-08 0.20877562 \n\t\t-0.7412228 -5.2056773e-08 1.6807703 -1.0998749 -1.8913207e-07 -0.512968 1.1191449 \n\t\t1.5411484e-07 -0.5082022 -1.4012948 -1.5846585e-07 1.5636138 1.0722808 1.4515228e-07 \n\t\t-0.5543521 -0.66791856 -1.3337538e-07 -0.80928403 -0.63774455 -1.2722104e-07 -0.76925808 \n\t\t0.54770136 3.8789658e-08 -1.2332382 -0.018953342 4.3798463e-09 0.19646227 -0.018953342 \n\t\t4.3798463e-09 0.19646227 -0.43822873 -1.1306364e-07 -1.2177702 -0.46335471 -1.1678397e-07 \n\t\t-1.213356 -1.433177 -2.1946845e-07 0.056616098 0.33050522 4.5894577e-09 -1.249922 \n\t\t-0.32896489 -9.8761994e-08 -1.2874042 -0.018953366 4.3798432e-09 0.19646227 -0.018953366 \n\t\t4.3798432e-09 0.19646227 -0.3718366 -5.4077514e-08 0.091643915 1.1435772 1.6037519e-07 \n\t\t-0.44147009 -0.35610098 -1.9633079e-08 0.9519701 -0.36214691 -1.0357638e-07 -1.2789199 \n\t\t-1.270427 -1.9721129e-07 -0.021447906 -0.76778048 -1.2692797e-07 -0.22107609 -0.76778048 \n\t\t-1.2692797e-07 -0.22107609 -0.75566846 -1.2444637e-07 -0.20470804 1.209553 2.3803889e-07 \n\t\t1.3716418 -0.34152859 -5.1390476e-08 0.037927907 -0.64786094 -7.062895e-08 0.79371208 \n\t\t-1.422017 -2.1833982e-07 0.04057809 -1.422017 -2.1833982e-07 0.04057809 -0.91591847 \n\t\t-1.4485785e-07 -0.087428033 -0.91591847 -1.4485785e-07 -0.087428033 -0.34152859 -4.9391772e-08 \n\t\t0.091643915 -1.2985427 -1.8314211e-07 0.47348943 -1.2985427 -1.8314211e-07 0.47348943 \n\t\t-1.2985427 -1.8314211e-07 0.47348943 -1.1508908 -1.945309e-07 -0.44608998 0.28373733 \n\t\t1.2978168e-07 2.3089941 0.98643303 1.3441712e-07 -0.48616216 -1.3642869 -1.9248337e-07 \n\t\t0.49560967 0.98637718 1.3509127e-07 -0.46781215 1.2505351 1.8216944e-07 -0.30015618 \n\t\t1.2505351 1.8216944e-07 -0.30015618 -1.2964387 -1.8109147e-07 0.51985884 -1.264873 \n\t\t-1.6778523e-07 0.74631208 -0.44511846 -4.9773394e-08 0.51180869 -0.44511846 -4.9773394e-08 \n\t\t0.51180869 -0.31215495 -9.0887205e-08 -1.145612 -0.31215495 -9.0887205e-08 -1.145612 \n\t\t-0.31215495 -9.0887205e-08 -1.145612 -0.41422671 -1.0948075e-07 -1.2212082 -0.27011055 \n\t\t-2.9105808e-08 0.34009206 -0.27011055 -2.9105808e-08 0.34009206 -0.48979267 -3.851687e-08 \n\t\t0.99995601 -1.3263907 -1.8455364e-07 0.55126381 -1.3263907 -1.8455364e-07 0.55126381 \n\t\t-1.3252168 -1.8043032e-07 0.65720201 -0.31661096 -9.1240274e-08 -1.136586 1.3688673 \n\t\t2.4455085e-07 0.88469392 1.4186831 2.447224e-07 0.68231785 0.52033323 1.604881e-07 \n\t\t2.1511741 -0.88212448 -1.4145772e-07 -0.13646406 -0.88212448 -1.4145772e-07 -0.13646406 \n\t\t-0.87001449 -1.3897643e-07 -0.12009612 1.4248791 2.448858e-07 0.66096383 -1.4496049 \n\t\t-2.1434148e-07 0.2626639 -1.5001169 -2.2916818e-07 0.074070089 -1.0571609 -1.8183198e-07 \n\t\t-0.49425399 -1.0389189 -1.7882981e-07 -0.48936599 -1.2909927 -1.7624289e-07 0.62753803 \n\t\t-1.2849427 -1.7213097e-07 0.71290994 -1.2849427 -1.7213097e-07 0.71290994 -0.65485054 \n\t\t-6.3278307e-08 1.0203059 0.31499326 7.1328583e-09 -1.1171142 -1.3183129 -1.860781e-07 \n\t\t0.47672948 0.51575935 1.5970103e-07 2.1490259 1.400755 2.0625261e-07 -0.27708212 \n\t\t1.400755 2.0625261e-07 -0.27708212 1.378993 2.4819303e-07 0.94050592 1.3752593 2.4826633e-07 \n\t\t0.95798987 1.5053872 2.9027555e-07 1.5463178 1.1328932 1.5882989e-07 -0.43860811 \n\t\t1.1328932 1.5882989e-07 -0.43860811 -0.61993867 -1.6329794e-08 2.137006 -0.64715254 \n\t\t-2.1174934e-08 2.1198659 -1.4646229 -2.20831e-07 0.15065607 -1.3027028 -2.0587316e-07 \n\t\t-0.12013197 -1.1092191 -1.9039938e-07 -0.50820196 1.3053432 1.9525702e-07 -0.17615217 \n\t\t1.4510971 2.8187361e-07 1.5460898 1.4510971 2.8187361e-07 1.5460898 1.5475012 2.9556449e-07 \n\t\t1.5134737 1.5475012 2.9556449e-07 1.5134737 1.6943452 3.0722174e-07 1.2166238 1.6943452 \n\t\t3.0722174e-07 1.2166238 1.6943452 3.0722174e-07 1.2166238 -0.33415869 -1.3694971e-08 \n\t\t1.0203879 -0.34521866 -1.5405414e-08 1.0203738 -0.88616246 -1.4228502e-07 -0.14192003 \n\t\t-0.88616246 -1.422851e-07 -0.14192206 -1.488479 -2.2720519e-07 0.078470096 -1.0936469 \n\t\t-1.8783662e-07 -0.50402999 -1.0754051 -1.8483449e-07 -0.49914199 1.5676712 2.98196e-07 \n\t\t1.5003898 -0.67313254 -2.6026298e-08 2.0974317 -1.1078191 -1.9043945e-07 -0.51509601 \n\t\t-1.1144829 -1.8853906e-07 -0.43633395 -1.0920268 -1.8484342e-07 -0.430318 0.53706342 \n\t\t1.6687031e-07 2.2531838 -1.3339368 -2.118292e-07 -0.150424 -0.59578866 -1.2256164e-08 \n\t\t2.146142 0.3252193 8.748993e-08 1.0000259 -0.46306449 -5.2053839e-08 0.52508748 -0.46306449 \n\t\t-5.2053839e-08 0.52508748 1.4121234 2.7530331e-07 1.5314478 -0.37814066 -2.0495955e-08 \n\t\t1.0203559 1.3744153 2.4578313e-07 0.89475977 0.56399727 1.7058795e-07 2.2411857 0.56399727 \n\t\t1.7058795e-07 2.2411857 0.61978531 5.5670608e-08 -1.0790682 0.89135706 1.1645091e-07 \n\t\t-0.57396615 0.89135706 1.1645091e-07 -0.57396615 -0.91318649 -1.4427881e-07 -0.083218038 \n\t\t-1.4198469 -2.1393122e-07 0.15004407 -1.4198469 -2.1393122e-07 0.15004407 1.439273 \n\t\t2.4628838e-07 0.63885188 1.359699 2.4853512e-07 1.0298679 1.4491271 2.5230378e-07 \n\t\t0.75957376 -1.1107531 -1.9092238e-07 -0.51588398 1.2327633 1.9742274e-07 0.18362541 \n\t\t1.2327633 1.9742274e-07 0.18362541 1.371515 2.0252141e-07 -0.25586614 1.575219 2.5629492e-07 \n\t\t0.34291884 1.575219 2.5629492e-07 0.34291884 1.575219 2.5629492e-07 0.34291884 1.4776671 \n\t\t2.3922664e-07 0.28953502 -0.88586086 -1.5828108e-07 -0.57307398 -0.41797459 -5.8044112e-08 \n\t\t0.17674552 -0.89209497 -1.5945922e-07 -0.57883388 1.1516833 1.8134571e-07 0.088439807 \n\t\t1.448779 2.5201354e-07 0.75321984 1.357591 1.9956327e-07 -0.2775121 1.472743 2.3836415e-07 \n\t\t0.28681502 1.472743 2.3836415e-07 0.28681502 -0.34843469 -1.5901799e-08 1.020396 \n\t\t1.514153 2.5902338e-07 0.66997981 0.64483345 7.0764038e-08 -0.77750212 -0.57824254 \n\t\t-9.550976e-09 2.1459401 -0.38110495 -1.006572e-07 -1.1216942 1.022945 1.3879553e-07 \n\t\t-0.52020019 -0.87783694 -1.6042759e-07 -0.66410202 -0.87783694 -1.6042759e-07 -0.66410202 \n\t\t-0.87627697 -1.6047225e-07 -0.67178398 -0.87627697 -1.6047225e-07 -0.67178398 0.9459033 \n\t\t1.240244e-07 -0.59706819 1.5202551 2.6159316e-07 0.7136898 1.5202551 2.6159316e-07 \n\t\t0.7136898 1.5118971 2.5914946e-07 0.68274182 1.498353 2.5603208e-07 0.65523785 1.498353 \n\t\t2.5603208e-07 0.65523785 0.89750117 1.1532345e-07 -0.62979615 0.89750117 1.1532345e-07 \n\t\t-0.62979615;\n\tsetAttr \".pt[13114:13279]\" 0.89750117 1.1532345e-07 -0.62979615 0.90921903 1.1928135e-07 \n\t\t-0.57211417 0.50871933 1.6124014e-07 2.2196417 -0.29034877 -8.7903288e-08 -1.156024 \n\t\t-0.70906669 -3.398025e-08 2.032974 -0.58160454 -8.2150173e-08 0.20877573 -0.55615652 \n\t\t-7.8215805e-08 0.20877573 1.1397052 1.6046506e-07 -0.42296624 1.1397052 1.6046506e-07 \n\t\t-0.42296624 0.94183916 1.2421539e-07 -0.57504809 -0.51741654 -7.2226442e-08 0.2087757 \n\t\t0.83331114 1.0867446e-07 -0.54177803 0.76642925 1.8088603e-07 1.676836 1.2360793 \n\t\t2.4627059e-07 1.4826537 0.48195541 7.5923538e-08 0.037927821 -0.65294456 -1.308356e-07 \n\t\t-0.80324405 -0.63490653 -1.2708902e-07 -0.777502 -1.1297789 -1.9040648e-07 -0.422966 \n\t\t-1.1297789 -1.9040648e-07 -0.422966 1.1412294 2.2816951e-07 1.3902857 1.4124051 2.7579136e-07 \n\t\t1.5433937 -1.425583 -2.2908014e-07 -0.23325589 0.41044936 2.9607699e-08 -0.90971822 \n\t\t1.6805291 2.8936088e-07 0.79401177 1.3844153 2.5567746e-07 1.1191239 1.4722331 2.5850434e-07 \n\t\t0.83020991 -0.65218055 -2.381652e-08 2.0697637 -0.64378858 -6.1567548e-08 1.0203199 \n\t\t-0.74037659 -1.2375986e-07 -0.24979605 1.234967 2.460452e-07 1.4812177 -0.57897854 \n\t\t-1.0381922e-08 2.1266661 -0.61036253 -1.6597136e-08 2.0900316 0.92426348 1.2993318e-07 \n\t\t-0.34835216 0.66171348 7.4031611e-08 -0.75982219 1.7711194 3.0729774e-07 0.89966577 \n\t\t1.7711194 3.0729774e-07 0.89966577 1.009757 2.244947e-07 1.8377978 1.1324953 2.3704771e-07 \n\t\t1.6651818 0.73830932 8.2071949e-08 -0.86199421 0.75591332 8.4592081e-08 -0.86741012 \n\t\t0.74898124 8.1643165e-08 -0.91786027 0.77927142 1.9791713e-07 2.0811939 1.3462511 \n\t\t2.010203e-07 -0.19123615 0.67179942 7.5823266e-08 -0.75357813 -0.56875664 -6.039655e-09 \n\t\t2.2008939 1.431489 2.146669e-07 -0.17864616 0.77184123 8.5050246e-08 -0.921278 -0.77181661 \n\t\t-1.2775499e-07 -0.22653204 1.7780932 3.0924224e-07 0.92294776 -1.281951 -1.9923286e-07 \n\t\t-0.027895907 0.32873321 5.3309264e-09 -1.2226319 -0.74717462 -1.2338539e-07 -0.21148604 \n\t\t-0.74717462 -1.2338539e-07 -0.21148604 -0.7350626 -1.2090379e-07 -0.19511807 1.1897053 \n\t\t1.6925297e-07 -0.39454022 -0.89282483 -1.5956351e-07 -0.57860398 -0.30227682 -9.4850158e-08 \n\t\t-1.2931622 1.1506133 1.6595864e-07 -0.32064816 1.1538392 1.6546659e-07 -0.34727618 \n\t\t1.1840153 1.68304e-07 -0.39640221 0.95532703 1.2217883e-07 -0.68582422 0.95532703 \n\t\t1.2217883e-07 -0.68582422 -0.77181661 -1.2775499e-07 -0.22653204 0.33758134 8.9400629e-08 \n\t\t1.0000119 -1.3446528 -1.7317539e-07 0.93293816 0.61245549 9.6099377e-08 0.037927814 \n\t\t0.62364948 9.7830018e-08 0.037927818 0.5309692 1.6497847e-07 2.2276616 0.42790139 \n\t\t6.9565267e-08 0.09164384 1.489269 2.5279715e-07 0.60604185 0.78333116 1.8088285e-07 \n\t\t1.6065217 0.79309314 1.8172568e-07 1.5886117 -0.1968867 -8.2540268e-08 -1.4002299 \n\t\t-0.1968867 -8.2540268e-08 -1.4002299 -0.59505266 -1.0093809e-08 2.2011981 0.78239924 \n\t\t1.9407148e-07 1.964844 0.57423919 1.6762561e-07 2.1190157 -0.18687874 -8.1306304e-08 \n\t\t-1.4086503 0.70726532 7.8972263e-08 -0.81631011 0.37437734 9.5088772e-08 0.99999392 \n\t\t0.82911515 1.8569709e-07 1.5456718 0.086706959 3.4704783e-08 0.57243371 0.94275314 \n\t\t1.9818299e-07 1.4090641 1.0357429 2.0671595e-07 1.2520138 1.5814875 2.8867575e-07 \n\t\t1.1871217 1.5814875 2.8867575e-07 1.1871217 -0.65403652 -1.2923172e-07 -0.75560206 \n\t\t0.74843735 8.2957534e-08 -0.88027614 0.74883533 8.3104275e-08 -0.87798613 1.3353091 \n\t\t2.0904859e-07 0.069991797 1.4823611 2.5310513e-07 0.64302188 1.4823611 2.5310513e-07 \n\t\t0.64302188 0.94494718 1.2119092e-07 -0.66924608 0.94494718 1.2119092e-07 -0.66924608 \n\t\t-1.0101447 -1.3185982e-07 0.65341395 1.2001612 1.7524823e-07 -0.27686018 -1.5549827 \n\t\t-1.9690911e-07 1.169016 0.64798331 5.9982504e-08 -1.0803483 0.64542335 5.9212329e-08 \n\t\t-1.0904102 1.4326791 2.4480897e-07 0.62648988 -0.86927056 -1.100801e-07 0.65341395 \n\t\t1.1270772 2.3221271e-07 1.5577518 1.0071629 2.1989972e-07 1.7250841 -0.76122469 -4.1123851e-08 \n\t\t2.0577059 0.61245549 1.0126464e-07 0.17674622 -1.6706028 -2.2873787e-07 0.79401213 \n\t\t0.26589337 6.2407302e-08 0.57242203 0.21503331 5.4544621e-08 0.57243526 -1.7795129 \n\t\t-2.4305879e-07 0.86165822 -1.7738749 -2.4323541e-07 0.83348614 -0.63124454 -1.6198824e-08 \n\t\t2.1875024 -1.4411708 -1.652829e-07 1.5460898 -1.4411708 -1.652829e-07 1.5460898 1.3072853 \n\t\t2.222129e-07 0.54022878 1.3072853 2.222129e-07 0.54022878 1.3072853 2.222129e-07 \n\t\t0.54022878 1.3280132 2.2953523e-07 0.65089381 1.3280132 2.2953523e-07 0.65089381 \n\t\t1.3280132 2.2953523e-07 0.65089381 1.1378216 2.1309805e-07 0.99939376 1.3063653 2.213127e-07 \n\t\t0.5198586 1.2948693 2.2671857e-07 0.7129097 1.2948693 2.2671857e-07 0.7129097 1.3140272 \n\t\t2.2426975e-07 0.56749415 -1.5067629 -1.7463181e-07 1.5673722 -0.67203057 -2.3460345e-08 \n\t\t2.161814 -1.4954609 -1.7366787e-07 1.5463183 0.85888737 1.0717489e-07 -0.68835014 \n\t\t0.73260748 8.3950489e-08 -0.78781611 -1.4021966 -1.5980214e-07 1.5314478 0.97508138 \n\t\t1.2897934e-07 -0.58513814 -0.28884864 -8.5244771e-08 -1.0908082 -0.28884864 -8.5244771e-08 \n\t\t-1.0908082 -0.28878054 -4.9935657e-08 -0.14214408 0.48483133 3.9849208e-08 -0.9435342 \n\t\t-0.40928671 -9.8606201e-08 -0.94947594 1.3009193 2.2447735e-07 0.62753779 -1.8179508 \n\t\t-2.3705344e-07 1.1827662 -1.8155446 -2.3625256e-07 1.1942921 -1.8149745 -2.3593374e-07 \n\t\t1.2004918 -1.8149745 -2.3593374e-07 1.2004918 1.148231 2.3982531e-07 1.674448 -0.29539466 \n\t\t-8.6256811e-08 -1.0908083 1.0587373 1.4501408e-07 -0.50179219 -1.8409626 -2.4364181e-07 \n\t\t1.1013162 1.7130034 3.0979666e-07 1.2082998 1.2517933 2.4893208e-07 1.4888898 0.33056909 \n\t\t5.579438e-10 -1.358536 1.4025832 2.5868061e-07 1.1243459 1.490211 2.6153228e-07 0.8368879 \n\t\t0.33076516 1.1467535e-09 -1.3435262 1.8507792 3.3351978e-07 1.2734038 -1.8813869 \n\t\t-2.4526682e-07 1.2256082 1.4047711 2.2511479e-07 0.21315986 -0.24546261 -7.0961335e-08 \n\t\t-0.88720614 -0.24546261 -7.0961335e-08 -0.88720614 -0.086869009 -4.6442118e-08 -0.88720614 \n\t\t-0.086869009 -4.6442118e-08 -0.88720614 -1.0420446 -1.6958165e-07 -0.22783008 -0.57222253 \n\t\t-8.7056712e-08 0.037927933 -1.0630509 -1.8338088e-07 -0.51140797 1.7838012 3.0679593e-07 \n\t\t0.83348578 -1.1200168 -1.8767626e-07 -0.39015198 0.11423098 3.8959588e-08 0.57241964 \n\t\t1.0897154 1.5929321e-07 -0.24675025 1.1226414 1.6375772e-07 -0.26357424;\n\tsetAttr \".pt[13280:13340]\" 1.0519714 1.5416182e-07 -0.22783026 1.7031032 3.0927106e-07 \n\t\t1.2353098 -0.37183461 -5.1829574e-08 0.15204991 1.4884191 2.4073856e-07 0.28549364 \n\t\t-0.086868659 -5.4017836e-08 -1.0908083 -0.086868659 -5.4017836e-08 -1.0908083 -0.41797459 \n\t\t-5.8963078e-08 0.15204792 -1.1913668 -1.9746336e-07 -0.356722 -1.1360066 -1.8590835e-07 \n\t\t-0.27620006 0.95401949 1.6316727e-07 0.42118981 -0.11820093 -7.1135894e-08 -1.420676 \n\t\t-0.33686087 -1.0179846e-07 -1.3362023 1.0176774 1.7300903e-07 0.4211894 1.0857593 \n\t\t1.8700547e-07 0.51446563 -0.50508267 -1.2287913e-07 -1.203784 1.0697193 1.845256e-07 \n\t\t0.51446515 -0.27830479 -8.6207201e-08 -1.1604842 -0.29734081 -9.2083106e-08 -1.239306 \n\t\t0.40563545 8.0396248e-08 0.47524717 0.40563545 8.0396248e-08 0.47524717 0.42582145 \n\t\t8.2502041e-08 0.44796723 0.42582145 8.2502041e-08 0.44796723 0.40563545 8.0396234e-08 \n\t\t0.47524685 0.40563545 8.0396234e-08 0.47524685 0.35512543 6.9625614e-08 0.39565343 \n\t\t0.35512543 6.9625614e-08 0.39565343 0.42582145 8.2502019e-08 0.44796684 0.42582145 \n\t\t8.2502019e-08 0.44796684 -0.50043267 -1.2379934e-07 -1.2478362 0.33493942 6.7519828e-08 \n\t\t0.42293343 0.33493942 6.7519828e-08 0.42293343 -0.32613692 -9.5961504e-08 -1.2238902 \n\t\t-0.48657271 -1.2019289e-07 -1.2085003 0.60372937 5.2217889e-08 -1.1051482 0.60372937 \n\t\t5.2217889e-08 -1.1051482 0.73594123 1.7610965e-07 1.675148 1.7100772 3.0987337e-07 \n\t\t1.2225198 0.35512546 6.9625635e-08 0.39565384 0.35512546 6.9625635e-08 0.39565384 \n\t\t1.1011912 1.5300333e-07 -0.46347612 0.33493945 6.7519842e-08 0.42293382 0.33493945 \n\t\t6.7519842e-08 0.42293382 1.0922171 1.4973313e-07 -0.51407623 -0.33709687 -1.0208625e-07 \n\t\t-1.3429562 1.1085209 2.104433e-07 1.0497918 -0.3171328 -9.747923e-08 -1.3020922 0.96691906 \n\t\t1.2660227e-07 -0.61510807 1.0395813 1.4342922e-07 -0.46479222 1.0395813 1.4342922e-07 \n\t\t-0.46479222 1.521929 2.4965556e-07 0.38590637 0.98851913 1.3013812e-07 -0.60983014 \n\t\t0.97301918 1.2866298e-07 -0.58507216 0.88761717 1.1574532e-07 -0.57739002 0.99084902 \n\t\t1.3092519e-07 -0.59835815 -0.66401869 -1.3003515e-07 -0.73571807 0.12116247 -4.1532534e-08 \n\t\t-1.6196402 0.87758154 1.3132762e-07 -0.11691022 1.4616311 2.3615793e-07 0.27369243 \n\t\t0.35250518 6.9276052e-09 -1.2784942 0.20001249 -2.1030756e-08 -1.3962722 0.3122032 \n\t\t1.5097648e-10 -1.2931622;\n\tsetAttr -s 13341 \".vt\";\n\tsetAttr \".vt[0:165]\"  -0.61199456 -0.48309004 -0.030940875 -0.5735836 -0.48685801 0.063534111\n\t\t -0.57950461 -0.52175802 0.056274116 -0.6076026 -0.44481397 -0.0080618709 -0.56702656 -0.47124302 0.0656721\n\t\t -0.59856761 -0.431817 -0.0024888813 -0.58519459 -0.42213696 -0.0013338923 -0.55421758 -0.46076399 0.062870115\n\t\t -0.53601956 -0.45573097 0.052186146 -0.56739956 -0.41637301 -0.0058178902 -0.54739261 -0.41256601 -0.013118893\n\t\t -0.5151276 -0.45342201 0.037561104 -0.63198256 -0.436573 -0.061291873 -0.6320706 -0.43411401 -0.078919873\n\t\t -0.61979359 -0.46517003 -0.057003871 -0.64350659 -0.40487501 -0.098967575 -0.64644456 -0.40248001 -0.085003875\n\t\t -0.63115859 -0.42638999 -0.098222375 -0.62462157 -0.44725001 -0.083067872 -0.66804957 -0.33135301 -0.14501268\n\t\t -0.67142159 -0.32667199 -0.13387948 -0.66191059 -0.333922 -0.15339078 -0.62458956 -0.41600999 -0.036485881\n\t\t -0.6392926 -0.386114 -0.059439868 -0.61484057 -0.405211 -0.030114889 -0.62891757 -0.377386 -0.052667871\n\t\t -0.60044956 -0.396826 -0.027775884 -0.61354357 -0.370208 -0.049614884 -0.58121461 -0.391574 -0.029344887\n\t\t -0.59275556 -0.365621 -0.049184881 -0.55955756 -0.38789001 -0.032868892 -0.56925958 -0.36232999 -0.050067887\n\t\t -0.66374058 -0.31118399 -0.10842588 -0.67926055 -0.29002699 -0.15343219 -0.67243659 -0.27484301 -0.12758799\n\t\t -0.70101756 -0.15720901 -0.21114948 -0.69539857 -0.14394701 -0.18320605 -0.66180456 -0.26740101 -0.11919849\n\t\t -0.68481261 -0.13919002 -0.1735006 -0.6695376 -0.13637301 -0.1678859 -0.64626759 -0.26154801 -0.11472379\n\t\t -0.6256966 -0.258295 -0.11401519 -0.6497696 -0.13576099 -0.1666535 -0.6277566 -0.13625002 -0.167612\n\t\t -0.60260761 -0.25634301 -0.11519009 -0.71051759 -0.035130024 -0.25996584 -0.70318657 -0.042585522 -0.27217042\n\t\t -0.6942476 -0.16314301 -0.22365229 -0.68413556 -0.16744302 -0.23277549 -0.69230658 -0.048130319 -0.28112429\n\t\t -0.7060796 -0.018795907 -0.23341891 -0.7090736 0.057309493 -0.2638123 -0.71272355 0.037702486 -0.28878593\n\t\t -0.6957826 -0.013249114 -0.22417942 -0.69890857 0.064046994 -0.25516623 -0.68411058 0.067709908 -0.25031883\n\t\t -0.6808936 -0.010254413 -0.21890321 -0.6619556 -0.010061815 -0.21801472 -0.66543359 0.067954317 -0.24973132\n\t\t -0.6448186 0.066489115 -0.25127402 -0.64099461 -0.011270612 -0.21932001 -0.68094558 -0.050883517 -0.28514034\n\t\t -0.69425559 0.022464886 -0.30899394 -0.6829266 0.019113392 -0.3126089 -0.67140061 0.017329782 -0.31376189\n\t\t -0.67402756 -0.16936702 -0.23707518 -0.6610176 -0.29901999 -0.17758742 -0.6479606 -0.33480099 -0.16170707\n\t\t -0.65510255 -0.33478701 -0.15839288 -0.66839761 -0.29781801 -0.17294067 -0.63745058 -0.39408901 -0.12177117\n\t\t -0.7051906 0.028952479 -0.30045193 -0.6752196 -0.29491699 -0.16464418 -0.5704996 -0.63773501 0.017810136\n\t\t -0.5929206 -0.63394302 0.024435148 -0.61248958 -0.62668902 0.031373143 -0.5657196 -0.65349495 0.13350615\n\t\t -0.6263566 -0.61251003 0.038939133 -0.63284558 -0.59356803 0.045965135 -0.58321357 -0.59510392 0.14618713\n\t\t -0.63028258 -0.57202202 0.051282138 -0.61958057 -0.551094 0.054503143 -0.57494557 -0.57273191 0.14364412\n\t\t -0.5449726 -0.53862697 0.13225111 -0.59742057 -0.595137 -0.075000867 -0.62139261 -0.59161901 -0.069137856\n\t\t -0.64226955 -0.58519 -0.062559858 -0.6569556 -0.57294101 -0.05454886 -0.66374159 -0.55602002 -0.046158865\n\t\t -0.66092056 -0.53557301 -0.038442865 -0.65000659 -0.515176 -0.032345869 -0.60553861 -0.57635301 -0.11172876\n\t\t -0.6297366 -0.572833 -0.10584996 -0.6108616 -0.55834001 -0.14594066 -0.6350596 -0.554712 -0.14000346\n\t\t -0.61407256 -0.53874999 -0.18314943 -0.63827157 -0.53500497 -0.17714906 -0.63900858 -0.49462402 -0.24978976\n\t\t -0.61480659 -0.49880099 -0.25602269 -0.65613556 -0.54795599 -0.13301556 -0.65935159 -0.527942 -0.16990387\n\t\t -0.66008955 -0.48691499 -0.24201418 -0.67419058 -0.51424402 -0.16016826 -0.67493057 -0.472139 -0.23115286\n\t\t -0.67096359 -0.53494298 -0.12392386 -0.67744756 -0.51746303 -0.11435266 -0.67962557 -0.49575502 -0.14977646\n\t\t -0.6793856 -0.45279604 -0.21940958 -0.67249256 -0.47431904 -0.14056237 -0.6693086 -0.43138099 -0.20898788\n\t\t -0.6734876 -0.497307 -0.10592426 -0.66172856 -0.478055 -0.097912766 -0.65907758 -0.456137 -0.13026717\n\t\t -0.66562659 -0.55397499 -0.090598658 -0.65080857 -0.56635797 -0.099097662 -0.6724636 -0.53707701 -0.081652857\n\t\t -0.66958958 -0.51705998 -0.073559865 -0.65853459 -0.49708802 -0.066698864 -0.63226861 -0.443407 -0.10132778\n\t\t -0.47596964 -0.67677796 0.18460411 -0.43012959 -0.67711794 0.29899117 -0.41175258 -0.67954695 0.27956018\n\t\t -0.49528965 -0.67428094 0.20261118 -0.51240158 -0.66766393 0.21904716 -0.44661057 -0.67032194 0.31649911\n\t\t -0.45929965 -0.65479195 0.33016413 -0.52509856 -0.65280592 0.23234418 -0.53178155 -0.63208991 0.24072716\n\t\t -0.46655458 -0.63338196 0.33819813 -0.46672857 -0.60894895 0.33881509 -0.5308516 -0.60789591 0.24242118\n\t\t -0.52449656 -0.58470893 0.2386021 -0.46185058 -0.58739597 0.33519512 -0.44452757 -0.56625193 0.3253181\n\t\t -0.50368559 -0.55206996 0.2201221 -0.44345057 -0.54563594 0.32112712 -0.49802458 -0.52928597 0.23076612\n\t\t -0.43937159 -0.53445894 0.31321812 -0.49126765 -0.51724893 0.22791812 -0.47998765 -0.50841093 0.21922112\n\t\t -0.43172464 -0.52635193 0.30167311 -0.44202358 -0.63309592 0.37099808 -0.43481264 -0.65463996 0.36289513\n\t\t -0.42233157 -0.67030692 0.34900612 -0.40620458 -0.67714596 0.33114213 -0.38825357 -0.67957091 0.31129017\n\t\t -0.38769063 -0.67682695 0.3541441 -0.37016264 -0.67925096 0.33382612 -0.40343365 -0.66998994 0.37244809\n\t\t -0.41560459 -0.65432596 0.38672709 -0.42261058 -0.63278294 0.39513314 -0.42286065 -0.60830992 0.39582008\n\t\t -0.44234359 -0.60862094 0.37150311 -0.42055663 -0.59271896 0.39336014 -0.43697357 -0.58808094 0.37053412\n\t\t -0.41501364 -0.57399696 0.3802231 -0.42225158 -0.55141091 0.35598212 -0.40843764 -0.55411792 0.37509912\n\t\t -0.38647357 -0.58172196 0.42743111 -0.41932958 -0.54032695 0.34407812 -0.40289965 -0.54607797 0.3695721\n\t\t -0.39455363 -0.53788096 0.35599911 -0.41190159 -0.53263295 0.33138514 -0.37650859 -0.56079292 0.41430813\n\t\t -0.36479259 -0.54804796 0.3994571 -0.35329258 -0.54546493 0.38485909;\n\tsetAttr \".vt[166:331]\" -0.38319263 -0.53665894 0.34135014 -0.37032464 -0.53892493 0.32616311\n\t\t -0.34189957 -0.54796296 0.3703891 -0.40069565 -0.53155094 0.31694108 -0.41977459 -0.52507997 0.2875061\n\t\t -0.46280158 -0.50648493 0.20536512 -0.53122157 -0.50247991 0.14905012 -0.53752661 -0.51357591 0.15052611\n\t\t -0.53956759 -0.54072696 0.14396712 -0.56901759 -0.57470292 0.15505111 -0.57724458 -0.59707594 0.15756616\n\t\t -0.5788886 -0.62023991 0.15691516 -0.34600964 -0.66588992 0.39974213 -0.35937163 -0.66032696 0.41747212\n\t\t -0.37441757 -0.62905496 0.4389931 -0.36906457 -0.58819592 0.4348681 -0.36165759 -0.58815694 0.43995512\n\t\t -0.35215458 -0.57146597 0.4287231 -0.35946259 -0.57151693 0.42361814 -0.34835559 -0.56098092 0.40974611\n\t\t -0.34112459 -0.56088191 0.41483313 -0.33143565 -0.55908597 0.40162212 -0.33868864 -0.55922395 0.39661109\n\t\t -0.32974163 -0.56185794 0.38384414 -0.54277658 -0.51108795 0.13881612 -0.53656161 -0.49983495 0.13743511\n\t\t -0.52525157 -0.49225193 0.13094512 -0.48739058 -0.49040794 0.10174212 -0.50242567 -0.49290794 0.1294671\n\t\t -0.44266364 -0.50801492 0.18893012 -0.40567264 -0.52722692 0.2720291 -0.38759959 -0.53377491 0.30162212\n\t\t -0.31537557 -0.68149793 0.39410311 -0.30125058 -0.67762196 0.40310609 -0.33194757 -0.67886692 0.41647309\n\t\t -0.33689263 -0.67515993 0.41109711 -0.34679058 -0.67160696 0.4368611 -0.31709459 -0.67519993 0.42507911\n\t\t -0.33121559 -0.66836596 0.44502413 -0.35132459 -0.66838497 0.43076813 -0.35219657 -0.66005492 0.42249811\n\t\t -0.36184257 -0.64695692 0.43604213 -0.36224657 -0.65284795 0.44638914 -0.36698958 -0.62886095 0.44402409\n\t\t -0.36828557 -0.63146895 0.45592409 -0.36676559 -0.60827494 0.4451921 -0.36806858 -0.60716796 0.45733911\n\t\t -0.36212757 -0.58344597 0.45107311 -0.35099557 -0.56380296 0.4375661 -0.33811659 -0.55121392 0.42100811\n\t\t -0.32693458 -0.54865295 0.40559113 -0.32241663 -0.56168395 0.38875109 -0.31660065 -0.55110693 0.3907451\n\t\t -0.31010464 -0.54685593 0.39439714 -0.32095957 -0.54448295 0.40999913 -0.30651858 -0.54776192 0.41976112\n\t\t -0.33272159 -0.54736292 0.42626411 -0.34629959 -0.56074792 0.44385314 -0.33047658 -0.56304193 0.45204711\n\t\t -0.35804459 -0.58154792 0.4582451 -0.36430559 -0.60666996 0.46491814 -0.34744459 -0.60669196 0.47210711\n\t\t -0.36453259 -0.63241696 0.46341711 -0.35817257 -0.65509295 0.45328712 -0.36686057 -0.66948593 0.41808313\n\t\t -0.35225663 -0.67632592 0.39844114 -0.33085665 -0.66767496 0.37991112 -0.36915457 -0.64720994 0.43099713\n\t\t -0.38412258 -0.63227594 0.44324309 -0.38393757 -0.60780293 0.44463313 -0.37421858 -0.60837996 0.4401381\n\t\t -0.37793759 -0.58392292 0.43832409 -0.36666259 -0.56415594 0.42476511 -0.34236565 -0.54887992 0.39269114\n\t\t -0.33198059 -0.55131495 0.37780112 -0.34290957 -0.67886096 0.36789411 -0.35971457 -0.67643893 0.38901412\n\t\t -0.33589959 -0.67875296 0.37678909 -0.37478858 -0.66960293 0.40808809 -0.37795657 -0.65381992 0.43370509\n\t\t -0.38640159 -0.65394294 0.42306709 -0.39297959 -0.63239992 0.43210113 -0.39294857 -0.60791993 0.43333912\n\t\t -0.35363257 -0.55148196 0.40815508 -0.24901658 -0.67351896 0.46969414 -0.23440455 -0.67592692 0.44694912\n\t\t -0.26197958 -0.66669697 0.4903661 -0.27164057 -0.65104693 0.5068891 -0.34188959 -0.65270394 0.46091211\n\t\t -0.34775358 -0.63116395 0.47064012 -0.26896358 -0.62428594 0.5271011 -0.26882559 -0.60500395 0.52347308\n\t\t -0.34150457 -0.58281094 0.46576011 -0.26304859 -0.58112097 0.5170241 -0.25269458 -0.56134397 0.50288808\n\t\t -0.31770059 -0.55036491 0.4352771 -0.24061655 -0.54865992 0.4856801 -0.22966655 -0.54605496 0.47001714\n\t\t -0.29613358 -0.55019695 0.40487009 -0.21928255 -0.54848993 0.45512712 -0.24461555 -0.64964992 0.52493113\n\t\t -0.25249258 -0.62958694 0.53946513 -0.23509955 -0.66529793 0.50831711 -0.22230259 -0.67211896 0.48754209\n\t\t -0.20786555 -0.67452496 0.4646861 -0.33892265 -0.66565192 0.40464211 -0.32070664 -0.67755592 0.38940114\n\t\t -0.32383564 -0.66749793 0.38462913 -0.53883457 -0.65546292 0.13461813 -0.54485756 -0.65336597 0.12337515\n\t\t -0.55567861 -0.64955395 0.14338213 -0.56730056 -0.63640392 0.14973715 -0.57296658 -0.63475597 0.13810015\n\t\t -0.57865357 -0.61675292 0.14170614 -0.57723856 -0.59600896 0.14199916 -0.56934857 -0.57529491 0.13941011\n\t\t -0.53343856 -0.54272991 0.1398201 -0.5389446 -0.54087591 0.1281141 -0.53713357 -0.51348794 0.13486412\n\t\t -0.53264958 -0.50405395 0.13399312 -0.52348161 -0.49843293 0.12821311 -0.51783657 -0.50112295 0.13963011\n\t\t -0.48888457 -0.49773794 0.10059711 -0.5613206 -0.64772493 0.13178715 -0.54798359 -0.66016293 0.12397414\n\t\t -0.5259856 -0.65534395 0.11391515 -0.52776957 -0.66271996 0.11342314 -0.57849556 -0.63860393 0.14099815\n\t\t -0.58482361 -0.61822796 0.14553213 -0.50784457 -0.48999798 0.11796612 -0.50780857 -0.49703097 0.11601111\n\t\t -0.52117056 -0.66512692 0.12416315 -0.51938057 -0.65775192 0.12465113 -0.5417186 -0.66244292 0.13500315\n\t\t -0.55970556 -0.65566093 0.14476115 -0.5725686 -0.64068097 0.15235615 -0.57279855 -0.61834592 0.15323815\n\t\t -0.57126856 -0.59770995 0.15343615 -0.56338859 -0.57713395 0.1508261 -0.53185755 -0.51598597 0.14655513\n\t\t -0.52718157 -0.50666994 0.14553711 -0.51981258 -0.49503493 0.14246511 -0.50225961 -0.49987197 0.12744913\n\t\t -0.48356763 -0.50076896 0.1121321 -0.48204958 -0.49343997 0.1132611 -0.60472959 -0.42479703 -0.37543589\n\t\t -0.63415056 -0.45131004 -0.32386887 -0.60994661 -0.45616204 -0.33046585 -0.62893456 -0.41967204 -0.36869189\n\t\t -0.63708359 -0.47385603 -0.28530949 -0.6128816 -0.47835702 -0.29171586 -0.65816259 -0.46580404 -0.27725857\n\t\t -0.6552276 -0.44288599 -0.31552088 -0.65001059 -0.41092104 -0.36008984 -0.67004657 -0.427315 -0.30366689\n\t\t -0.66482759 -0.39491802 -0.3477729 -0.6729936 -0.450647 -0.26592165 -0.67783356 -0.43158501 -0.25363898\n\t\t -0.67521358 -0.408364 -0.29063284 -0.6703676 -0.37590802 -0.33403784 -0.66732961 -0.38979799 -0.27874517\n\t\t -0.66361356 -0.358136 -0.32118386 -0.66894257 -0.41181904 -0.24275288 -0.6539256 -0.39322001 -0.23180047\n\t\t -0.65292156 -0.37142503 -0.26742989 -0.65607256 -0.34623203 -0.40162593;\n\tsetAttr \".vt[332:497]\" -0.64124155 -0.36266902 -0.41425884 -0.62016159 -0.37162602 -0.42299885\n\t\t -0.5959546 -0.37684202 -0.42979193 -0.63253659 -0.31337902 -0.46510988 -0.61144972 -0.32246104 -0.47391689\n\t\t -0.58724368 -0.32767704 -0.48070988 -0.64738572 -0.29656702 -0.45227289 -0.65391058 -0.27706003 -0.43795788\n\t\t -0.66214061 -0.32699803 -0.38750088 -0.6569376 -0.30965003 -0.37428689 -0.6460976 -0.29324603 -0.36152589\n\t\t -0.65002757 -0.25989202 -0.42471385 -0.6032337 -0.25955704 -0.53510088 -0.62432671 -0.25032702 -0.52622187\n\t\t -0.57902759 -0.26477304 -0.5418939 -0.63919473 -0.23307103 -0.51317191 -0.64588457 -0.21318702 -0.49869388\n\t\t -0.64244658 -0.19607604 -0.48553288 -0.63394272 -0.18035203 -0.47302988 -0.65301758 -0.303238 -0.10053488\n\t\t -0.63741958 -0.29677799 -0.096468791 -0.61660355 -0.29294401 -0.095757291 -0.59317756 -0.29042301 -0.096723191\n\t\t -0.65191758 -0.34963 -0.30305886 -0.64027756 -0.23686203 -0.41999394 -0.65951055 -0.33381402 -0.2564407\n\t\t -0.66042656 -0.33127004 -0.23810126 -0.67777556 -0.069816336 -0.41522089 -0.65450555 -0.35364401 -0.20036578\n\t\t -0.66478056 -0.310175 -0.21494478 -0.65324455 -0.31158999 -0.17576578 -0.66792059 -0.17988501 -0.26280528\n\t\t -0.66393059 -0.17018701 -0.23894979 -0.67017758 -0.066247821 -0.31226391 -0.66969657 -0.046399623 -0.28908491\n\t\t -0.6499626 -0.371867 -0.18046699 -0.63485956 -0.41874799 -0.11154947 -0.63600057 -0.407884 -0.11168707\n\t\t -0.64923358 -0.42258099 -0.16891398 -0.6519646 -0.40893203 -0.19922706 -0.67828858 0.016094372 -0.36413389\n\t\t -0.67816061 -0.057648435 -0.4087939 0.57454145 -0.52175802 0.056274027 0.60263944 -0.44481397 -0.0080619752\n\t\t 0.6070314 -0.48309004 -0.03094098 0.56862044 -0.48685801 0.063534021 0.5620634 -0.47124302 0.06567201\n\t\t 0.59360445 -0.431817 -0.0024889857 0.58023143 -0.42213696 -0.0013339818 0.54925442 -0.46076399 0.062870026\n\t\t 0.5310564 -0.45573097 0.052186027 0.5624364 -0.41637301 -0.0058179796 0.51016444 -0.45342201 0.037561014\n\t\t 0.54242945 -0.41256601 -0.013118982 0.62701941 -0.436573 -0.061291978 0.62710744 -0.43411401 -0.078919984\n\t\t 0.61483043 -0.46517003 -0.057003975 0.63854343 -0.40487501 -0.098967686 0.6414814 -0.40248001 -0.085003987\n\t\t 0.63103741 -0.407884 -0.11168718 0.62619543 -0.42638999 -0.098222487 0.66308641 -0.33135301 -0.1450128\n\t\t 0.66645843 -0.32667199 -0.1338796 0.65694743 -0.333922 -0.1533909 0.6196264 -0.41600999 -0.036485992\n\t\t 0.63432944 -0.386114 -0.059439987 0.60987741 -0.405211 -0.030114979 0.62395442 -0.377386 -0.05266799\n\t\t 0.5954864 -0.396826 -0.027775973 0.60858041 -0.370208 -0.049614996 0.57625145 -0.391574 -0.029344976\n\t\t 0.5877924 -0.365621 -0.049184985 0.5545944 -0.38789001 -0.032868981 0.56429642 -0.36232999 -0.050067984\n\t\t 0.65877742 -0.31118399 -0.108426 0.67429739 -0.29002699 -0.15343231 0.66747344 -0.27484301 -0.12758809\n\t\t 0.6960544 -0.15720901 -0.21114962 0.69043541 -0.14394701 -0.18320617 0.6568414 -0.26740101 -0.1191986\n\t\t 0.67984945 -0.13919002 -0.17350072 0.66457444 -0.13637301 -0.16788602 0.64130443 -0.26154801 -0.1147239\n\t\t 0.62073344 -0.258295 -0.1140153 0.64480644 -0.13576099 -0.1666536 0.59764445 -0.25634301 -0.11519019\n\t\t 0.62279344 -0.13625002 -0.16761211 0.70555443 -0.035130024 -0.25996596 0.69822341 -0.042585522 -0.27217054\n\t\t 0.68928444 -0.16314301 -0.22365241 0.6791724 -0.16744302 -0.23277561 0.68734342 -0.048130319 -0.28112441\n\t\t 0.70111644 -0.018795907 -0.23341903 0.70411044 0.057309493 -0.26381242 0.70776039 0.037702486 -0.28878605\n\t\t 0.69081944 -0.013249114 -0.22417954 0.69394541 0.064046994 -0.25516635 0.67914742 0.067709908 -0.25031894\n\t\t 0.67593044 -0.010254413 -0.21890333 0.65699244 -0.010061815 -0.21801482 0.66047043 0.067954317 -0.24973144\n\t\t 0.63603145 -0.011270612 -0.21932013 0.63985544 0.066489115 -0.25127411 0.67598242 -0.050883517 -0.28514045\n\t\t 0.68929243 0.022464886 -0.30899405 0.67796344 0.019113392 -0.31260902 0.66473341 -0.046399623 -0.28908503\n\t\t 0.6690644 -0.16936702 -0.2370753 0.65605444 -0.29901999 -0.17758754 0.6482814 -0.31158999 -0.1757659\n\t\t 0.64299744 -0.33480099 -0.16170719 0.65013939 -0.33478701 -0.158393 0.66343445 -0.29781801 -0.17294079\n\t\t 0.70022744 0.028952479 -0.30045205 0.67025644 -0.29491699 -0.1646443 0.56553644 -0.63773501 0.017810032\n\t\t 0.52280641 -0.66271996 0.11342305 0.58795744 -0.63394302 0.024435043 0.60752642 -0.62668902 0.031373039\n\t\t 0.62139344 -0.61251003 0.038939014 0.62788242 -0.59356803 0.045965046 0.57986045 -0.61822796 0.14553204\n\t\t 0.62531942 -0.57202202 0.051282018 0.61461741 -0.551094 0.054503024 0.56998241 -0.57273191 0.14364406\n\t\t 0.54000944 -0.53862697 0.13225105 0.59245741 -0.595137 -0.075000972 0.61642945 -0.59161901 -0.069137968\n\t\t 0.63730639 -0.58519 -0.06255997 0.65199244 -0.57294101 -0.054548979 0.65877843 -0.55602002 -0.046158984\n\t\t 0.6559574 -0.53557301 -0.038442984 0.64504343 -0.515176 -0.03234598 0.60057545 -0.57635301 -0.11172887\n\t\t 0.62477344 -0.572833 -0.10585007 0.60589844 -0.55834001 -0.14594077 0.63009644 -0.554712 -0.14000358\n\t\t 0.6091094 -0.53874999 -0.18314953 0.63330841 -0.53500497 -0.17714918 0.60984343 -0.49880099 -0.25602278\n\t\t 0.63404542 -0.49462402 -0.24978988 0.6511724 -0.54795599 -0.13301568 0.65438843 -0.527942 -0.16990398\n\t\t 0.65512639 -0.48691499 -0.24201427 0.66922742 -0.51424402 -0.16016838 0.66996741 -0.472139 -0.23115298\n\t\t 0.66600043 -0.53494298 -0.12392398 0.6724844 -0.51746303 -0.11435278 0.67466241 -0.49575502 -0.14977658\n\t\t 0.67442244 -0.45279604 -0.2194097 0.6675294 -0.47431904 -0.14056249 0.66434544 -0.43138099 -0.20898798\n\t\t 0.66852444 -0.497307 -0.10592438 0.6567654 -0.478055 -0.097912885 0.65411443 -0.456137 -0.13026729\n\t\t 0.64700145 -0.40893203 -0.19922718 0.66066343 -0.55397499 -0.090598777 0.66750044 -0.53707701 -0.081652977\n\t\t 0.64584541 -0.56635797 -0.099097773 0.66462642 -0.51705998 -0.073559977 0.65357143 -0.49708802 -0.066698976\n\t\t 0.62730545 -0.443407 -0.10132789 0.42516643 -0.67711794 0.29899105 0.47100636 -0.67677796 0.18460405\n\t\t 0.40678942 -0.67954695 0.27956006 0.49032637 -0.67428094 0.20261106;\n\tsetAttr \".vt[498:663]\" 0.50743842 -0.66766393 0.21904704 0.44164741 -0.67032194 0.31649905\n\t\t 0.45433637 -0.65479195 0.33016407 0.5201354 -0.65280592 0.23234406 0.52681839 -0.63208991 0.24072704\n\t\t 0.46159142 -0.63338196 0.33819807 0.46176541 -0.60894895 0.33881503 0.52588844 -0.60789591 0.24242106\n\t\t 0.5195334 -0.58470893 0.23860204 0.45688742 -0.58739597 0.33519506 0.43956441 -0.56625193 0.32531804\n\t\t 0.49872243 -0.55206996 0.22012204 0.43848741 -0.54563594 0.32112706 0.49306142 -0.52928597 0.230766\n\t\t 0.43440843 -0.53445894 0.31321806 0.48630437 -0.51724893 0.22791806 0.47502437 -0.50841093 0.219221\n\t\t 0.42676136 -0.52635193 0.30167305 0.43706042 -0.63309592 0.37099802 0.43738043 -0.60862094 0.37150306\n\t\t 0.41789842 -0.60830992 0.39582002 0.41764742 -0.63278294 0.39513308 0.42984936 -0.65463996 0.36289507\n\t\t 0.41064143 -0.65432596 0.38672704 0.41736841 -0.67030692 0.34900606 0.40124142 -0.67714596 0.33114207\n\t\t 0.38329041 -0.67957091 0.31129006 0.38272837 -0.67682695 0.35414404 0.36519936 -0.67925096 0.33382607\n\t\t 0.39847037 -0.66998994 0.37244803 0.41559437 -0.59271896 0.39336008 0.43201041 -0.58808094 0.37053406\n\t\t 0.38151041 -0.58172196 0.42743099 0.41005036 -0.57399696 0.38022304 0.40347436 -0.55411792 0.37509906\n\t\t 0.41728842 -0.55141091 0.35598207 0.41436642 -0.54032695 0.34407806 0.39793637 -0.54607797 0.36957204\n\t\t 0.38959035 -0.53788096 0.35599905 0.40693936 -0.53263295 0.33138508 0.37154543 -0.56079292 0.41430813\n\t\t 0.35982943 -0.54804796 0.39945704 0.34832942 -0.54546493 0.38485903 0.37822935 -0.53665894 0.34135008\n\t\t 0.33693641 -0.54796296 0.37038904 0.36536136 -0.53892493 0.32616305 0.39573237 -0.53155094 0.31694102\n\t\t 0.41481143 -0.52507997 0.28750604 0.45783943 -0.50648493 0.20536506 0.52625841 -0.50247991 0.14905006\n\t\t 0.57228142 -0.59707594 0.15756604 0.56760544 -0.64068097 0.15235606 0.5162074 -0.66512692 0.12416306\n\t\t 0.31887236 -0.66749793 0.38462907 0.35440835 -0.66032696 0.417472 0.34723341 -0.66005492 0.42249799\n\t\t 0.35687941 -0.64695692 0.43604213 0.36945441 -0.62905496 0.43899298 0.36202642 -0.62886095 0.44402397\n\t\t 0.36180243 -0.60827494 0.44519198 0.36925641 -0.60837996 0.44013798 0.36410141 -0.58819592 0.43486798\n\t\t 0.35669443 -0.58815694 0.439955 0.34719241 -0.57146597 0.42872298 0.33616143 -0.56088191 0.41483313\n\t\t 0.33372536 -0.55922395 0.39661103 0.32477835 -0.56185794 0.38384408 0.31745335 -0.56168395 0.38875103\n\t\t 0.53781343 -0.51108795 0.13881606 0.53159845 -0.49983495 0.13743505 0.50288141 -0.48999798 0.11796606\n\t\t 0.49746236 -0.49290794 0.12946704 0.43770036 -0.50801492 0.18893006 0.40070936 -0.52722692 0.27202904\n\t\t 0.38263643 -0.53377491 0.30162206 0.31041241 -0.68149793 0.39410305 0.32698441 -0.67886692 0.41647309\n\t\t 0.31574437 -0.67755592 0.38940108 0.33192936 -0.67515993 0.41109711 0.33395937 -0.66565192 0.40464205\n\t\t 0.34636143 -0.66838497 0.43076801 0.35728341 -0.65284795 0.44638914 0.36332241 -0.63146895 0.45592409\n\t\t 0.36310542 -0.60716796 0.45733911 0.35716441 -0.58344597 0.45107311 0.34603241 -0.56380296 0.4375661\n\t\t 0.33315343 -0.55121392 0.42100799 0.32647237 -0.55908597 0.40162206 0.32197142 -0.54865295 0.40559107\n\t\t 0.31163737 -0.55110693 0.39074504 0.30514136 -0.54685593 0.39439708 0.31599641 -0.54448295 0.40999901\n\t\t 0.29117042 -0.55019695 0.40487003 0.32775843 -0.54736292 0.42626411 0.31273744 -0.55036491 0.43527699\n\t\t 0.34133643 -0.56074792 0.44385302 0.32551342 -0.56304193 0.45204699 0.35308143 -0.58154792 0.4582451\n\t\t 0.33654141 -0.58281094 0.46575999 0.35934243 -0.60666996 0.46491802 0.35956943 -0.63241696 0.46341711\n\t\t 0.35320941 -0.65509295 0.45328701 0.33692643 -0.65270394 0.46091199 0.34182742 -0.67160696 0.4368611\n\t\t 0.34104636 -0.66588992 0.39974207 0.34729335 -0.67632592 0.39844108 0.32589337 -0.66767496 0.37991107\n\t\t 0.33093643 -0.67875296 0.37678903 0.36419141 -0.64720994 0.43099701 0.37297443 -0.58392292 0.43832397\n\t\t 0.36170042 -0.56415594 0.42476499 0.35449943 -0.57151693 0.42361814 0.34866941 -0.55148196 0.40815496\n\t\t 0.34339243 -0.56098092 0.40974611 0.33740237 -0.54887992 0.39269108 0.33794641 -0.67886096 0.36789405\n\t\t 0.35475141 -0.67643893 0.38901407 0.36982542 -0.66960293 0.40808797 0.36189741 -0.66948593 0.41808313\n\t\t 0.37299341 -0.65381992 0.43370497 0.38143843 -0.65394294 0.42306697 0.38801643 -0.63239992 0.43210101\n\t\t 0.37915942 -0.63227594 0.44324309 0.37897441 -0.60780293 0.44463301 0.38798541 -0.60791993 0.433339\n\t\t 0.32701835 -0.55131495 0.37780106 0.24405342 -0.67351896 0.46969402 0.29628742 -0.67762196 0.40310603\n\t\t 0.22944145 -0.67592692 0.44694901 0.31213143 -0.67519993 0.42507899 0.32625243 -0.66836596 0.44502401\n\t\t 0.25701642 -0.66669697 0.49036598 0.26667741 -0.65104693 0.50688899 0.34279042 -0.63116395 0.47064012\n\t\t 0.26400042 -0.62428594 0.5271011 0.26386243 -0.60500395 0.52347308 0.34248143 -0.60669196 0.47210711\n\t\t 0.25808543 -0.58112097 0.5170241 0.24773142 -0.56134397 0.50288796 0.23565345 -0.54865992 0.48567998\n\t\t 0.22470345 -0.54605496 0.47001714 0.30155542 -0.54776192 0.41976112 0.21431945 -0.54848993 0.455127\n\t\t 0.23965345 -0.64964992 0.52493113 0.24752945 -0.62958694 0.53946513 0.23013645 -0.66529793 0.50831699\n\t\t 0.21733943 -0.67211896 0.48754209 0.20290245 -0.67452496 0.4646861 0.52102244 -0.65534395 0.11391506\n\t\t 0.51441741 -0.65775192 0.12465104 0.56800342 -0.63475597 0.13810006 0.5663054 -0.59770995 0.15343606\n\t\t 0.55842543 -0.57713395 0.15082604 0.52689439 -0.51598597 0.14655507 0.50284541 -0.49703097 0.11601105\n\t\t 0.47860435 -0.50076896 0.11213204 0.5398944 -0.65336597 0.12337506 0.56075644 -0.65349495 0.13350606\n\t\t 0.54302043 -0.66016293 0.12397406 0.55635744 -0.64772493 0.13178706 0.5735324 -0.63860393 0.14099807\n\t\t 0.57369041 -0.61675292 0.14170605 0.57825041 -0.59510392 0.14618704 0.5722754 -0.59600896 0.14199907\n\t\t 0.56438541 -0.57529491 0.13941005 0.53398144 -0.54087591 0.12811404;\n\tsetAttr \".vt[664:829]\" 0.53217041 -0.51348794 0.13486406 0.52768642 -0.50405395 0.13399306\n\t\t 0.52028841 -0.49225193 0.13094506 0.51851845 -0.49843293 0.12821305 0.48242742 -0.49040794 0.10174206\n\t\t 0.48392141 -0.49773794 0.10059705 0.53387141 -0.65546292 0.13461804 0.53675544 -0.66244292 0.13500306\n\t\t 0.55071545 -0.64955395 0.14338204 0.5547424 -0.65566093 0.14476106 0.5623374 -0.63640392 0.14973706\n\t\t 0.56783539 -0.61834592 0.15323806 0.57392544 -0.62023991 0.15691504 0.56405443 -0.57470292 0.15505105\n\t\t 0.5284754 -0.54272991 0.13982004 0.53460443 -0.54072696 0.14396706 0.53256345 -0.51357591 0.15052605\n\t\t 0.52221841 -0.50666994 0.14553705 0.51287341 -0.50112295 0.13963005 0.51484942 -0.49503493 0.14246505\n\t\t 0.49729636 -0.49987197 0.12744907 0.47708642 -0.49343997 0.11326104 0.59976643 -0.42479703 -0.37543601\n\t\t 0.62918741 -0.45131004 -0.32386899 0.6239714 -0.41967204 -0.36869195 0.60498345 -0.45616204 -0.33046597\n\t\t 0.63212043 -0.47385603 -0.28530958 0.60791844 -0.47835702 -0.29171598 0.65319943 -0.46580404 -0.27725869\n\t\t 0.65026444 -0.44288599 -0.31552097 0.64504743 -0.41092104 -0.36008996 0.66508341 -0.427315 -0.30366701\n\t\t 0.65986443 -0.39491802 -0.34777302 0.66803044 -0.450647 -0.26592177 0.6728704 -0.43158501 -0.2536391\n\t\t 0.67025042 -0.408364 -0.29063296 0.66540444 -0.37590802 -0.33403796 0.66236645 -0.38979799 -0.27874529\n\t\t 0.6586504 -0.358136 -0.32118398 0.66397941 -0.41181904 -0.242753 0.64896244 -0.39322001 -0.23180059\n\t\t 0.6511094 -0.34623203 -0.40162605 0.63627839 -0.36266902 -0.41425896 0.61519843 -0.37162602 -0.42299896\n\t\t 0.59099144 -0.37684202 -0.42979199 0.62757343 -0.31337902 -0.46511 0.60648632 -0.32246104 -0.47391701\n\t\t 0.58228028 -0.32767704 -0.48070994 0.64242232 -0.29656702 -0.45227301 0.64894742 -0.27706003 -0.437958\n\t\t 0.65717745 -0.32699803 -0.387501 0.65197444 -0.30965003 -0.37428701 0.64113444 -0.29324603 -0.36152601\n\t\t 0.6353144 -0.23686203 -0.41999406 0.64506441 -0.25989202 -0.42471397 0.5982703 -0.25955704 -0.535101\n\t\t 0.61936331 -0.25032702 -0.52622199 0.57406443 -0.26477304 -0.54189402 0.63423133 -0.23307103 -0.51317203\n\t\t 0.64092141 -0.21318702 -0.498694 0.63748342 -0.19607604 -0.485533 0.62897933 -0.18035203 -0.47303\n\t\t 0.64805442 -0.303238 -0.100535 0.63245642 -0.29677799 -0.096468896 0.61164039 -0.29294401 -0.095757395\n\t\t 0.5882144 -0.29042301 -0.096723296 0.64695442 -0.34963 -0.30305898 0.65408742 -0.33073801 -0.27653831\n\t\t 0.64715743 -0.21209303 -0.37652901 0.65454739 -0.33381402 -0.25644082 0.6479584 -0.37142503 -0.26743001\n\t\t 0.6554634 -0.33127004 -0.23810138 0.67071539 -0.06953153 -0.36870205 0.6728124 -0.069816336 -0.41522101\n\t\t 0.64954239 -0.35364401 -0.2003659 0.6573754 -0.32339603 -0.22307828 0.66295743 -0.17988501 -0.2628054\n\t\t 0.65896744 -0.17018701 -0.23894991 0.66643745 0.017329782 -0.31376201 0.64499944 -0.371867 -0.18046711\n\t\t 0.63248742 -0.39408901 -0.12177128 0.6298964 -0.41874799 -0.11154959 0.64427042 -0.42258099 -0.16891408\n\t\t 0.61965841 -0.44725001 -0.083067983 0.67332542 0.016094372 -0.36413401 0.67319745 -0.057648435 -0.40879402\n\t\t -0.22752264 -0.81936502 -0.25590426 -0.2028176 -0.728513 -0.23762339 -0.1565576 -0.80649799 -0.20339248\n\t\t -0.21372961 -0.83844501 -0.24569789 -0.1565576 -0.700477 -0.2033923 -0.21372961 -0.69546002 -0.24569789\n\t\t -0.15219261 -0.69896799 -0.2001628 -0.15219261 -0.81661499 -0.20016278 -0.15219261 -0.68770701 -0.2001628\n\t\t -0.16746961 -0.79462397 -0.21146688 -0.14520161 -0.80367398 -0.19498986 -0.14520161 -0.69728798 -0.19498986\n\t\t -0.21291061 -0.728513 -0.22398339 -0.17756261 -0.79462397 -0.19782689 -0.16746961 -0.71776801 -0.21146668\n\t\t -0.2028176 -0.80053002 -0.23762356 -0.21291061 -0.80053002 -0.22398359 -0.17756261 -0.71776801 -0.19782668\n\t\t 0.22255936 -0.81936502 -0.25590432 0.20876639 -0.71785498 -0.24569772 0.15159439 -0.80649799 -0.20339251\n\t\t 0.15159439 -0.700477 -0.20339233 0.15159439 -0.68171799 -0.20339233 0.14722939 -0.81661499 -0.20016281\n\t\t 0.14722939 -0.68770701 -0.20016283 0.14023839 -0.80367398 -0.19498989 0.17259939 -0.71776801 -0.19782671\n\t\t 0.20794739 -0.80053002 -0.22398362 0.17259939 -0.79462397 -0.19782692 0.16250639 -0.71776801 -0.21146671\n\t\t 0.16250639 -0.79462397 -0.21146691 0.19785438 -0.80053002 -0.23762362 0.19785438 -0.728513 -0.23762342\n\t\t 0.20794739 -0.728513 -0.22398342 -0.22560355 -0.52722496 0.63005012 -0.24148256 -0.53561991 0.62678313\n\t\t -0.24317256 -0.52776593 0.62696314 -0.22665955 -0.53516293 0.62938714 -0.20881955 -0.53279394 0.63245308\n\t\t -0.21249855 -0.53986192 0.63141513 -0.19484556 -0.54380095 0.6338861 -0.18536554 -0.55891895 0.6341731\n\t\t -0.18152554 -0.57632393 0.63328111 -0.18378656 -0.59391797 0.63131714 -0.19187555 -0.60957694 0.6285181\n\t\t -0.25517958 -0.54117596 0.62391812 -0.25940758 -0.53435194 0.6235671 -0.27235159 -0.54618794 0.62027013\n\t\t -0.28044158 -0.56184793 0.6174711 -0.28270158 -0.57944095 0.61550713 -0.28153858 -0.58830297 0.61491609\n\t\t -0.27477458 -0.60481793 0.61460811 -0.26938158 -0.61196393 0.61490214 -0.25540757 -0.62297195 0.61633414\n\t\t -0.23862354 -0.62854093 0.61873913 -0.22282155 -0.62018496 0.62244809 -0.22105455 -0.62799895 0.6218251\n\t\t -0.20481955 -0.62141293 0.62522113 -0.19820455 -0.60464293 0.62809509 -0.23847654 -0.63342291 0.61334413\n\t\t -0.25701958 -0.62726992 0.61068714 -0.27245957 -0.61510795 0.60910511 -0.28467757 -0.55973697 0.61194313\n\t\t -0.24350154 -0.52208191 0.6224311 -0.22409055 -0.52148396 0.62584108 -0.20554654 -0.52763695 0.62849712\n\t\t -0.19010656 -0.53979796 0.63007909 -0.18682656 -0.61247092 0.62414813 -0.21581355 -0.48909193 0.6037131\n\t\t -0.24566855 -0.49001193 0.59846812 -0.18729255 -0.49855494 0.6077981 -0.17931755 -0.48709494 0.59337211\n\t\t -0.21156356 -0.47639596 0.58875209 -0.24531955 -0.47743493 0.5828231 -0.16354655 -0.51725996 0.61023211\n\t\t -0.16498855 -0.49648696 0.5950101 -0.15246855 -0.50824296 0.59612411 -0.16046755 -0.54848093 0.62123412\n\t\t -0.17963354 -0.55650091 0.63039708 -0.14743856 -0.54294991 0.6107201;\n\tsetAttr \".vt[830:995]\" -0.26143959 -0.52935797 0.61867809 -0.27325657 -0.50120294 0.59269708\n\t\t -0.27573958 -0.54243594 0.61503613 -0.29525059 -0.52131695 0.5870961 -0.30899757 -0.54792595 0.58233911\n\t\t -0.28717557 -0.57917494 0.6097731 -0.31283957 -0.57782197 0.57900113 -0.28589058 -0.58896595 0.60912013\n\t\t -0.31086159 -0.59288096 0.57799709 -0.30631357 -0.60739893 0.57748508 -0.27841759 -0.60721195 0.6087811\n\t\t -0.29936859 -0.62094396 0.57747513 -0.29020557 -0.63308793 0.57797414 -0.26645857 -0.65179294 0.58040708\n\t\t -0.23793855 -0.66125596 0.5844931 -0.21906455 -0.63282496 0.61675411 -0.20808356 -0.66033596 0.58973712\n\t\t -0.20112754 -0.62554795 0.62050611 -0.18049555 -0.64914495 0.5955081 -0.16860655 -0.64008194 0.59837508\n\t\t -0.15850055 -0.62903196 0.6011101 -0.20282455 -0.67001295 0.57295114 -0.17163154 -0.65735894 0.57947612\n\t\t -0.15818955 -0.64711195 0.58271712 -0.23657955 -0.67105192 0.56702113 -0.26882657 -0.66035295 0.56240112\n\t\t -0.29567558 -0.63920492 0.55965012 -0.16407254 -0.66285694 0.5616551 -0.14948855 -0.65173995 0.56517214\n\t\t -0.19791456 -0.67658591 0.5545761 -0.19318055 -0.68160695 0.53540713 -0.23453756 -0.67771393 0.54814309\n\t\t -0.23215255 -0.68280697 0.52856112 -0.26952258 -0.66610491 0.54313111 -0.29865259 -0.64316094 0.54014611\n\t\t -0.30038258 -0.64603692 0.52005112 -0.30603558 -0.62547392 0.55908608 -0.30902657 -0.61964095 0.55909109\n\t\t -0.31388757 -0.61015892 0.55909812 -0.31680357 -0.60085195 0.55942613 -0.30989257 -0.62826395 0.53953409\n\t\t -0.30727157 -0.62636793 0.55282211 -0.31903058 -0.59374493 0.55967611 -0.32126659 -0.57671791 0.56081212\n\t\t -0.31692258 -0.54291594 0.5645861 -0.30137959 -0.51282996 0.56996411 -0.27651259 -0.49008894 0.5762971\n\t\t -0.32170457 -0.53869396 0.54550111 -0.32641757 -0.57536691 0.54140711 -0.30484158 -0.50605291 0.5513351\n\t\t -0.27786157 -0.48137993 0.55820709 -0.27825758 -0.47387296 0.53927112 -0.24401955 -0.46765095 0.5652861\n\t\t -0.20739655 -0.46652293 0.57172012 -0.17241155 -0.47813195 0.5767321 -0.16603956 -0.47041696 0.55898511\n\t\t -0.24224354 -0.45926395 0.54680508 -0.15686555 -0.48832095 0.57850909 -0.14949656 -0.48125994 0.56087613\n\t\t -0.32271159 -0.59381497 0.54520512 -0.32050657 -0.59377295 0.55387509 -0.20317855 -0.47031796 0.5418511\n\t\t -0.23936655 -0.47230196 0.54613709 -0.20496455 -0.47124195 0.55218011 -0.17031355 -0.48122293 0.5465591\n\t\t -0.15749656 -0.49171793 0.55855709 -0.27115658 -0.48519796 0.53948611 -0.29650158 -0.50837493 0.53303111\n\t\t -0.29471457 -0.50745094 0.5227021 -0.31234258 -0.53903693 0.52755111 -0.31055558 -0.53811294 0.51722109\n\t\t -0.31676957 -0.57348591 0.52370512 -0.29068759 -0.63717091 0.52252012 -0.26153758 -0.65779996 0.51499611\n\t\t -0.19605754 -0.66856897 0.53607613 -0.16426656 -0.65567297 0.5427261 -0.16248055 -0.65474892 0.53239709\n\t\t -0.13892256 -0.63249594 0.5491811 -0.12965456 -0.61789095 0.5520891 -0.12786855 -0.61696696 0.5417611\n\t\t -0.19395858 -0.45957398 0.49400312 -0.23477454 -0.45726895 0.5056631 -0.22567154 -0.46727496 0.46919513\n\t\t -0.19638956 -0.45608595 0.51240712 -0.27024558 -0.47165793 0.49824309 -0.25686359 -0.47992897 0.46267009\n\t\t -0.29852358 -0.49751794 0.49104112 -0.28173158 -0.50266993 0.45633614 -0.31619859 -0.53173095 0.4849261\n\t\t -0.29727459 -0.53275591 0.45095909 -0.32113859 -0.57016891 0.48063409 -0.30161858 -0.56655794 0.4471851\n\t\t -0.31859559 -0.58953094 0.47934312 -0.29938257 -0.58358395 0.44604909 -0.30381858 -0.62561196 0.47867113\n\t\t -0.28638759 -0.61531293 0.44545913 -0.29203659 -0.64122593 0.47931314 -0.27602658 -0.62904394 0.44602209\n\t\t -0.26150557 -0.66527492 0.48244214 -0.24917854 -0.65019196 0.4487741 -0.22483557 -0.67744195 0.48769408\n\t\t -0.21693158 -0.66089195 0.4533931 -0.18645056 -0.67625892 0.49443811 -0.18317658 -0.65985197 0.45932311\n\t\t -0.15097958 -0.66186994 0.50185812 -0.15198354 -0.64719892 0.46584809 -0.12270156 -0.63600993 0.50906008\n\t\t -0.12711558 -0.62445796 0.4721821 -0.11235955 -0.61971396 0.51230514 -0.11802155 -0.61012691 0.47503608\n\t\t -0.14070758 -0.60662997 0.43866712 -0.13385455 -0.59583092 0.44081813 -0.15944758 -0.62376791 0.4338941\n\t\t -0.18295355 -0.63330293 0.42897713 -0.20839158 -0.63408697 0.42450809 -0.23269255 -0.62602395 0.42102712\n\t\t -0.25292557 -0.61008692 0.41895413 -0.26073357 -0.59973896 0.41852909 -0.27052557 -0.57582897 0.4189741\n\t\t -0.27221057 -0.56299794 0.41982913 -0.26893759 -0.53752494 0.42267311 -0.25722459 -0.51485294 0.4267261\n\t\t -0.23848455 -0.49771494 0.43149912 -0.22041258 -0.47695094 0.45240909 -0.17539056 -0.57573193 0.6294111\n\t\t -0.15482955 -0.57402897 0.61992508 -0.17788856 -0.59516996 0.62724113 -0.15814856 -0.59985393 0.61704212\n\t\t -0.17002355 -0.62283891 0.6129331 -0.22407755 -0.53991193 0.60888511 -0.23664054 -0.54029894 0.60667813\n\t\t -0.21207654 -0.54389393 0.61060411 -0.20070855 -0.54914796 0.63262409 -0.20208354 -0.55176395 0.61162812\n\t\t -0.19530556 -0.56257397 0.61183411 -0.18947154 -0.57658792 0.6321131 -0.19271155 -0.56190294 0.63286608\n\t\t -0.19255956 -0.57501996 0.6111961 -0.19417655 -0.58759993 0.6097911 -0.19996054 -0.59879696 0.60779011\n\t\t -0.19137855 -0.59143096 0.63045609 -0.20912455 -0.61462891 0.62531412 -0.22082455 -0.61196995 0.6030041\n\t\t -0.23338754 -0.61235696 0.60079712 -0.23764455 -0.62064195 0.61984414 -0.24538855 -0.60837495 0.59907812\n\t\t -0.25180453 -0.61594296 0.61781609 -0.26814458 -0.60062695 0.61635911 -0.26359457 -0.60665697 0.61660713\n\t\t -0.25923759 -0.59539396 0.59784412 -0.27385059 -0.58669394 0.61661911 -0.26407358 -0.58358496 0.59806412\n\t\t -0.27483258 -0.57921696 0.61711812 -0.26328859 -0.56466794 0.59989113 -0.27292559 -0.56437397 0.61877513\n\t\t -0.25750458 -0.55347097 0.60189211 -0.26609957 -0.55116296 0.62113613 -0.22873256 -0.57613397 0.60484111\n\t\t -0.24824955 -0.54500794 0.60425013 -0.26490557 -0.57724893 0.59848714 -0.25538158 -0.60050392 0.59805411\n\t\t -0.20921555 -0.60726094 0.60543209 -0.16425355 -0.46949297 0.54865509 -0.16168255 -0.46816295 0.53378713\n\t\t -0.32312858 -0.53394192 0.51542109 -0.32814357 -0.57296795 0.51106411;\n\tsetAttr \".vt[996:1161]\" -0.32556158 -0.59262693 0.50975209 -0.19139455 -0.68068296 0.52507812\n\t\t -0.15538055 -0.66607392 0.53261209 -0.11616956 -0.62327296 0.5432201 -0.17209955 -0.48214597 0.5568881\n\t\t -0.20327055 -0.45806295 0.55365109 -0.30696857 -0.50012892 0.53195912 -0.32491457 -0.53486496 0.52574909\n\t\t -0.32992959 -0.57389194 0.52139312 -0.32734758 -0.59354997 0.5200811 -0.26332459 -0.65872395 0.52532411\n\t\t -0.26938358 -0.67045397 0.52322811 -0.23045956 -0.66962892 0.5300321 -0.15716656 -0.66699696 0.54294109\n\t\t -0.14164655 -0.65516591 0.54668313 -0.15056755 -0.64522892 0.54602909 -0.24045755 -0.45833993 0.53647614\n\t\t -0.23758055 -0.47137797 0.53580809 -0.20148455 -0.45713994 0.5433231 -0.14771055 -0.48033595 0.55054712\n\t\t -0.15571055 -0.49079496 0.54822809 -0.14295055 -0.50277597 0.54936314 -0.13325556 -0.49390996 0.55183214\n\t\t -0.26937059 -0.48427397 0.5291571 -0.27647159 -0.47294998 0.52894211 -0.30518258 -0.49920595 0.52163011\n\t\t -0.31498259 -0.57256293 0.51337612 -0.31270459 -0.58991593 0.51221812 -0.31055859 -0.62925994 0.50907111\n\t\t -0.29946059 -0.62225294 0.51161712 -0.28890058 -0.63624692 0.51219112 -0.29859659 -0.64511293 0.50972211\n\t\t -0.26759759 -0.66952991 0.5128991 -0.22867255 -0.66870493 0.5197041 -0.23036654 -0.68188393 0.51823211\n\t\t -0.19427055 -0.66764492 0.52574712 -0.13713655 -0.63157195 0.5388521 -0.12666857 -0.63981795 0.5399251\n\t\t -0.31745657 -0.60008192 0.55784613 -0.30390957 -0.61364394 0.5575251 -0.30938157 -0.61979795 0.55747908\n\t\t -0.30806458 -0.62491792 0.55263913 -0.30889758 -0.62754393 0.54457814 -0.30120459 -0.62111193 0.54437411\n\t\t -0.30121258 -0.62149996 0.54198813 -0.31234458 -0.63018394 0.51940012 -0.30124658 -0.62317693 0.52194613\n\t\t -0.32017058 -0.59535795 0.5531891 -0.32399157 -0.59383994 0.54017413 -0.31449059 -0.59083992 0.52254713\n\t\t -0.31465757 -0.59089893 0.54193813 -0.30186459 -0.61844397 0.5525741 -0.31464559 -0.59090292 0.54476911\n\t\t -0.31391957 -0.59241992 0.55302012 -0.31182459 -0.59694797 0.55786109 0.23651946 -0.53561991 0.62678301\n\t\t 0.22064045 -0.52722496 0.63005012 0.23820946 -0.52776593 0.62696302 0.22169645 -0.53516293 0.62938702\n\t\t 0.20385645 -0.53279394 0.63245296 0.20753545 -0.53986192 0.63141501 0.18988246 -0.54380095 0.63388598\n\t\t 0.19574545 -0.54914796 0.63262409 0.18040244 -0.55891895 0.6341731 0.17656244 -0.57632393 0.63328099\n\t\t 0.17882346 -0.59391797 0.63131702 0.25444442 -0.53435194 0.62356699 0.26738843 -0.54618794 0.62027001\n\t\t 0.27547842 -0.56184793 0.61747098 0.27773941 -0.57944095 0.61550701 0.26888743 -0.58669394 0.61661899\n\t\t 0.27657542 -0.58830297 0.61491597 0.26981142 -0.60481793 0.61460811 0.26441842 -0.61196393 0.61490202\n\t\t 0.25044441 -0.62297195 0.61633414 0.23366044 -0.62854093 0.61873901 0.21785845 -0.62018496 0.62244797\n\t\t 0.21609145 -0.62799895 0.62182498 0.19985645 -0.62141293 0.62522101 0.18691345 -0.60957694 0.62851799\n\t\t 0.18186346 -0.61247092 0.62414801 0.21410145 -0.63282496 0.61675411 0.25205642 -0.62726992 0.61068702\n\t\t 0.26749641 -0.61510795 0.60910499 0.28092742 -0.58896595 0.60912001 0.27971441 -0.55973697 0.61194301\n\t\t 0.23853844 -0.52208191 0.6224311 0.20058344 -0.52763695 0.628497 0.17042746 -0.57573193 0.62941098\n\t\t 0.17292546 -0.59516996 0.62724102 0.21085045 -0.48909193 0.6037131 0.21912745 -0.52148396 0.62584108\n\t\t 0.24070545 -0.49001193 0.59846812 0.18232945 -0.49855494 0.60779798 0.17435445 -0.48709494 0.59337199\n\t\t 0.20660146 -0.47639596 0.58875209 0.24035645 -0.47743493 0.5828231 0.15858345 -0.51725996 0.610232\n\t\t 0.18514445 -0.53979796 0.63007909 0.16002545 -0.49648696 0.5950101 0.14750545 -0.50824296 0.59612411\n\t\t 0.14247546 -0.54294991 0.6107201 0.15550445 -0.54848093 0.62123412 0.17467044 -0.55650091 0.63039696\n\t\t 0.25647643 -0.52935797 0.61867797 0.26829341 -0.50120294 0.59269708 0.27077642 -0.54243594 0.61503601\n\t\t 0.29028744 -0.52131695 0.58709598 0.30403441 -0.54792595 0.58233911 0.28221342 -0.57917494 0.6097731\n\t\t 0.30787641 -0.57782197 0.57900113 0.30589941 -0.59288096 0.57799697 0.30135041 -0.60739893 0.57748497\n\t\t 0.27345443 -0.60721195 0.60878098 0.29440543 -0.62094396 0.57747513 0.28524241 -0.63308793 0.57797414\n\t\t 0.26149541 -0.65179294 0.58040708 0.23351344 -0.63342291 0.61334413 0.23297545 -0.66125596 0.5844931\n\t\t 0.20312046 -0.66033596 0.58973712 0.19616444 -0.62554795 0.62050611 0.17553245 -0.64914495 0.59550798\n\t\t 0.16364345 -0.64008194 0.59837496 0.15353845 -0.62903196 0.60110998 0.19786145 -0.67001295 0.57295114\n\t\t 0.16666844 -0.65735894 0.579476 0.15322645 -0.64711195 0.58271712 0.23161645 -0.67105192 0.56702101\n\t\t 0.26386341 -0.66035295 0.56240112 0.29071242 -0.63920492 0.55965012 0.15910944 -0.66285694 0.5616551\n\t\t 0.14452545 -0.65173995 0.56517214 0.19295146 -0.67658591 0.5545761 0.18821745 -0.68160695 0.53540713\n\t\t 0.15220346 -0.66699696 0.54294097 0.22957446 -0.67771393 0.54814309 0.26455942 -0.66610491 0.54313099\n\t\t 0.26442042 -0.67045397 0.52322811 0.29368943 -0.64316094 0.54014599 0.29541942 -0.64603692 0.520051\n\t\t 0.30738142 -0.63018394 0.5194 0.30492941 -0.62826395 0.53953397 0.30393443 -0.62754393 0.54457814\n\t\t 0.30230841 -0.62636793 0.55282199 0.30310142 -0.62491792 0.55263901 0.30441841 -0.61979795 0.55747908\n\t\t 0.30406341 -0.61964095 0.55909097 0.30892441 -0.61015892 0.55909801 0.31184042 -0.60085195 0.55942613\n\t\t 0.30107343 -0.62547392 0.55908597 0.31406742 -0.59374493 0.55967611 0.31630343 -0.57671791 0.560812\n\t\t 0.31195942 -0.54291594 0.5645861 0.29641643 -0.51282996 0.56996411 0.27154943 -0.49008894 0.5762971\n\t\t 0.31674141 -0.53869396 0.54550099 0.32145441 -0.57536691 0.54140699 0.32496643 -0.57389194 0.52139312\n\t\t 0.29987842 -0.50605291 0.55133498 0.27289841 -0.48137993 0.55820709 0.23905645 -0.46765095 0.5652861\n\t\t 0.20243345 -0.46652293 0.57172 0.16744845 -0.47813195 0.5767321 0.23728044 -0.45926395 0.54680508\n\t\t 0.15190245 -0.48832095 0.57850897 0.14453346 -0.48125994 0.56087601;\n\tsetAttr \".vt[1162:1327]\" 0.31774843 -0.59381497 0.545205 0.31554341 -0.59377295 0.55387497\n\t\t 0.32238442 -0.59354997 0.5200811 0.19821545 -0.47031796 0.5418511 0.23261745 -0.47137797 0.53580797\n\t\t 0.16713645 -0.48214597 0.55688798 0.26619342 -0.48519796 0.53948611 0.29153842 -0.50837493 0.53303099\n\t\t 0.28975242 -0.50745094 0.52270198 0.30737942 -0.53903693 0.52755111 0.30559242 -0.53811294 0.51722097\n\t\t 0.31180641 -0.57348591 0.52370501 0.30952743 -0.59083992 0.52254701 0.30774143 -0.58991593 0.512218\n\t\t 0.28572443 -0.63717091 0.52252012 0.25836143 -0.65872395 0.52532399 0.25657442 -0.65779996 0.51499611\n\t\t 0.22549646 -0.66962892 0.5300321 0.15930346 -0.65567297 0.5427261 0.15751745 -0.65474892 0.53239709\n\t\t 0.14560445 -0.64522892 0.54602897 0.13395946 -0.63249594 0.54918098 0.13217345 -0.63157195 0.53885198\n\t\t 0.12469146 -0.61789095 0.55208898 0.12290545 -0.61696696 0.5417611 0.18899542 -0.45957398 0.49400312\n\t\t 0.22981144 -0.45726895 0.5056631 0.19142646 -0.45608595 0.51240712 0.22070844 -0.46727496 0.46919501\n\t\t 0.26528242 -0.47165793 0.49824297 0.25190043 -0.47992897 0.46266997 0.29356042 -0.49751794 0.49104112\n\t\t 0.27676842 -0.50266993 0.45633602 0.31123543 -0.53173095 0.48492599 0.29231143 -0.53275591 0.45095897\n\t\t 0.31617543 -0.57016891 0.48063397 0.29665542 -0.56655794 0.4471851 0.31363243 -0.58953094 0.47934312\n\t\t 0.29441941 -0.58358395 0.44604897 0.29885542 -0.62561196 0.47867113 0.28142443 -0.61531293 0.44545901\n\t\t 0.28707343 -0.64122593 0.47931302 0.27106342 -0.62904394 0.44602209 0.25654241 -0.66527492 0.48244202\n\t\t 0.24421544 -0.65019196 0.44877398 0.21987344 -0.67744195 0.48769408 0.21196842 -0.66089195 0.45339298\n\t\t 0.18148746 -0.67625892 0.49443811 0.17821342 -0.65985197 0.45932311 0.14601642 -0.66186994 0.501858\n\t\t 0.14702044 -0.64719892 0.46584797 0.11773843 -0.63600993 0.50906008 0.12215245 -0.62445796 0.4721821\n\t\t 0.10739645 -0.61971396 0.51230502 0.11305845 -0.61012691 0.47503608 0.13574442 -0.60662997 0.43866712\n\t\t 0.12889145 -0.59583092 0.44081813 0.15448442 -0.62376791 0.4338941 0.17799045 -0.63330293 0.42897701\n\t\t 0.20342842 -0.63408697 0.42450798 0.22772945 -0.62602395 0.42102712 0.24796242 -0.61008692 0.41895401\n\t\t 0.25577042 -0.59973896 0.41852909 0.26556242 -0.57582897 0.4189741 0.26724741 -0.56299794 0.41982901\n\t\t 0.26397443 -0.53752494 0.42267299 0.25226143 -0.51485294 0.42672598 0.23352145 -0.49771494 0.431499\n\t\t 0.21544942 -0.47695094 0.45240909 0.14986645 -0.57402897 0.61992508 0.15318546 -0.59985393 0.61704212\n\t\t 0.16506045 -0.62283891 0.6129331 0.23167744 -0.54029894 0.60667801 0.20711344 -0.54389393 0.61060411\n\t\t 0.19034246 -0.56257397 0.61183411 0.18774845 -0.56190294 0.63286608 0.18641545 -0.59143096 0.63045597\n\t\t 0.18759646 -0.57501996 0.6111961 0.18450844 -0.57658792 0.63211298 0.18921345 -0.58759993 0.6097911\n\t\t 0.20416145 -0.61462891 0.625314 0.19324145 -0.60464293 0.62809509 0.21586145 -0.61196995 0.60300398\n\t\t 0.24684145 -0.61594296 0.61781597 0.23268145 -0.62064195 0.61984414 0.25863141 -0.60665697 0.61660713\n\t\t 0.25041842 -0.60050392 0.59805411 0.26318142 -0.60062695 0.616359 0.25911042 -0.58358496 0.59806412\n\t\t 0.25427443 -0.59539396 0.597844 0.26986942 -0.57921696 0.617118 0.25994241 -0.57724893 0.59848702\n\t\t 0.26113641 -0.55116296 0.62113613 0.25254142 -0.55347097 0.60189199 0.26796243 -0.56437397 0.61877501\n\t\t 0.25021642 -0.54117596 0.62391812 0.24328645 -0.54500794 0.60425013 0.22376946 -0.57613397 0.60484099\n\t\t 0.21911445 -0.53991193 0.60888511 0.25832641 -0.56466794 0.59989113 0.24042545 -0.60837495 0.59907812\n\t\t 0.22842444 -0.61235696 0.60079712 0.20425245 -0.60726094 0.60543209 0.19499744 -0.59879696 0.60778999\n\t\t 0.19712146 -0.55176395 0.61162812 0.19652145 -0.45713994 0.5433231 0.15671945 -0.46816295 0.53378701\n\t\t 0.14274745 -0.48033595 0.550547 0.30021942 -0.49920595 0.52163011 0.32318041 -0.57296795 0.51106411\n\t\t 0.32059842 -0.59262693 0.50975209 0.12170544 -0.63981795 0.53992498 0.20000145 -0.47124195 0.55218011\n\t\t 0.16107646 -0.47041696 0.55898499 0.19830745 -0.45806295 0.55365098 0.23440345 -0.47230196 0.54613698\n\t\t 0.27329442 -0.47387296 0.539271 0.30200541 -0.50012892 0.53195912 0.31995142 -0.53486496 0.52574897\n\t\t 0.15253346 -0.49171793 0.55855709 0.22719045 -0.68280697 0.528561 0.19109444 -0.66856897 0.53607613\n\t\t 0.13668345 -0.65516591 0.54668313 0.23549445 -0.45833993 0.53647602 0.15929045 -0.46949297 0.54865509\n\t\t 0.16535045 -0.48122293 0.54655898 0.15074745 -0.49079496 0.54822809 0.13798745 -0.50277597 0.54936302\n\t\t 0.12829246 -0.49390996 0.55183214 0.26440743 -0.48427397 0.5291571 0.27150843 -0.47294998 0.52894199\n\t\t 0.31816542 -0.53394192 0.51542109 0.31001943 -0.57256293 0.513376 0.30559543 -0.62925994 0.50907099\n\t\t 0.29449743 -0.62225294 0.51161712 0.28393742 -0.63624692 0.51219112 0.29363343 -0.64511293 0.50972199\n\t\t 0.26263541 -0.66952991 0.5128991 0.22370945 -0.66870493 0.51970398 0.22540344 -0.68188393 0.51823199\n\t\t 0.18930745 -0.66764492 0.52574712 0.18643145 -0.68068296 0.52507812 0.15041745 -0.66607392 0.53261197\n\t\t 0.11120643 -0.62327296 0.5432201 0.29894641 -0.61364394 0.5575251 0.30686143 -0.59694797 0.55786097\n\t\t 0.31249341 -0.60008192 0.55784613 0.29690143 -0.61844397 0.5525741 0.29624143 -0.62111193 0.54437399\n\t\t 0.29624942 -0.62149996 0.54198802 0.29628342 -0.62317693 0.52194613 0.31520742 -0.59535795 0.5531891\n\t\t 0.30969441 -0.59089893 0.54193813 0.31902841 -0.59383994 0.54017401 0.30968243 -0.59090292 0.54476911\n\t\t 0.30895743 -0.59241992 0.55302 -0.1177097 0.1471719 -1.14557302 -0.1143667 0.15255891 -1.15216494\n\t\t -0.1193957 0.14718892 -1.14872193 -0.1123077 0.15294291 -1.14927101 -0.1098197 0.16048293 -1.15295804\n\t\t -0.1120517 0.15957789 -1.15559602 -0.1336987 0.1439759 -1.14026785 -0.1106407 0.16860192 -1.15605092\n\t\t -0.1146497 0.17611091 -1.15809798 -0.12265571 0.1794389 -1.16101003;\n\tsetAttr \".vt[1328:1493]\" -0.1212127 0.18182291 -1.15877402 -0.12936971 0.18490191 -1.15798104\n\t\t -0.1302477 0.18230389 -1.160272 -0.13812269 0.18226592 -1.158283 -0.1378317 0.18486093 -1.15584493\n\t\t -0.1453587 0.18170591 -1.15267682 -0.15015669 0.17395891 -1.15189195 -0.1507607 0.1759349 -1.14897799\n\t\t -0.1532487 0.16839491 -1.14529085 -0.15247171 0.16694091 -1.14846003 -0.15170769 0.15938391 -1.14558101\n\t\t -0.1524277 0.16027491 -1.14219785 -0.14841869 0.15276693 -1.14015102 -0.1479767 0.15239491 -1.143677\n\t\t -0.1418557 0.1470549 -1.13947499 -0.1392917 0.15121089 -1.12914002 -0.1311177 0.14812593 -1.12993503\n\t\t -0.1226397 0.14816691 -1.13207603 -0.12523672 0.14401691 -1.14240384 -0.1458687 0.15693389 -1.12981796\n\t\t -0.1498857 0.1644579 -1.13186884 -0.15070769 0.17259391 -1.1349678 -0.1482157 0.1801499 -1.13866282\n\t\t -0.1428017 0.18593191 -1.14236903 -0.1352597 0.18909292 -1.14554381 -0.1267817 0.18913491 -1.14768386\n\t\t -0.1186077 0.18604992 -1.14847898 -0.1120307 0.18032591 -1.147802 -0.1080137 0.1728019 -1.145751\n\t\t -0.1071917 0.16466691 -1.14265084 -0.1096837 0.15711091 -1.13895583 -0.1150977 0.15132891 -1.13524985\n\t\t -0.1171727 0.16050993 -1.15469193 -0.1128157 0.16713391 -1.158476 -0.1177427 0.16615193 -1.15684199\n\t\t -0.12640071 0.14425193 -1.14577401 -0.1337657 0.1490389 -1.14587283 -0.1342757 0.1442139 -1.143785\n\t\t -0.1418677 0.14707892 -1.14304686 -0.1467807 0.16036592 -1.14721501 -0.1418687 0.17525791 -1.15449703\n\t\t -0.1451287 0.1793289 -1.155334 -0.1250897 0.17533992 -1.15873384 -0.11654671 0.17412291 -1.16038001\n\t\t -0.1175397 0.16280891 -1.14946985 -0.1180497 0.1678509 -1.15139103 -0.1179977 0.16161393 -1.15234399\n\t\t -0.1190847 0.15812691 -1.14717984 -0.1195717 0.15684392 -1.15001202 -0.1224397 0.15454291 -1.14488399\n\t\t -0.1331017 0.15117191 -1.14431703 -0.1205387 0.17251392 -1.1526618 -0.1246147 0.17606191 -1.15308201\n\t\t -0.1303647 0.1770599 -1.15552104 -0.12968069 0.17797391 -1.15259004 -0.13571669 0.17703392 -1.15417004\n\t\t -0.13493469 0.17794792 -1.151263 -0.13960969 0.1759889 -1.14929581 -0.1449497 0.1614819 -1.14553702\n\t\t -0.1439997 0.1626799 -1.14278793 -0.1415097 0.15801691 -1.14151692 -0.13743369 0.15446989 -1.14109683\n\t\t -0.1185167 0.16674991 -1.15430093 -0.1189007 0.15526991 -1.15213001 -0.1226557 0.1512609 -1.14955997\n\t\t -0.1229887 0.15319391 -1.14767194 -0.1278857 0.14906792 -1.14735794 -0.1205287 0.1713699 -1.15826392\n\t\t -0.1210527 0.17149989 -1.15559483 -0.1252047 0.17511292 -1.15602303 -0.1307577 0.17747889 -1.15818298\n\t\t -0.1366377 0.17744993 -1.15669799 -0.1404777 0.17503791 -1.15216601 -0.1438957 0.1713879 -1.149827\n\t\t -0.1456227 0.17124791 -1.15192699 -0.1473517 0.16600792 -1.14936399 -0.1454687 0.16661792 -1.14749384\n\t\t -0.1439947 0.1551479 -1.14579296 -0.14241371 0.1567329 -1.144243 -0.13826171 0.15311991 -1.1438148\n\t\t -0.1394337 0.15117891 -1.14532185 -0.1277497 0.1511979 -1.14566803 -0.1323677 0.15255789 -1.14158893\n\t\t -0.1271137 0.15258391 -1.14291596 -0.1445087 0.16772191 -1.14470899 -0.14296471 0.17240493 -1.146999\n\t\t -0.52413273 0.64532495 -0.66080499 -0.47572771 0.65727293 -0.741166 -0.54140568 0.63982493 -0.6247189\n\t\t -0.53912956 0.65119392 -0.60626793 -0.5224126 0.65758193 -0.640414 -0.47539571 0.67036796 -0.71968603\n\t\t -0.42350471 0.66529691 -0.80296487 -0.4216747 0.67987192 -0.78397888 -0.4750157 0.67582196 -0.70879102\n\t\t -0.40412369 0.68725693 -0.79295599 -0.39921871 0.66799992 -0.82598603 -0.53711569 0.65620893 -0.59841001\n\t\t -0.55006558 0.64579695 -0.58535099 -0.5675506 0.63446891 -0.55567992 -0.5522877 0.63657796 -0.59962499\n\t\t -0.55185771 0.63185894 -0.60980201 -0.5676167 0.63192493 -0.562163 -0.56869471 0.63237095 -0.55678701\n\t\t -0.46606269 0.62767392 -0.74870092 -0.42573169 0.65063995 -0.82480186 -0.48272371 0.64259297 -0.75764704\n\t\t -0.4049767 0.63607395 -0.82079399 -0.40764469 0.65525591 -0.83931804 -0.5139817 0.61672795 -0.66807789\n\t\t -0.5318917 0.63088197 -0.67638099 -0.53088367 0.61207992 -0.63099992 -0.54931867 0.62592393 -0.6395579\n\t\t -0.5598616 0.62432295 -0.613433 -0.54147971 0.61028492 -0.60345602 -0.55956656 0.61074293 -0.54595494\n\t\t -0.57710671 0.62546295 -0.56101096 -0.57840168 0.62835091 -0.54991591 -0.56097656 0.61472791 -0.53373802\n\t\t -0.55426055 0.62882793 -0.52489591 -0.54733872 0.63681096 -0.52842593 -0.52189767 0.65651894 -0.55919194\n\t\t -0.5097726 0.66356397 -0.578637 -0.51787156 0.67291695 -0.6260069 -0.49297571 0.67019892 -0.61169899\n\t\t -0.44713271 0.68269992 -0.68907201 -0.3886807 0.69364393 -0.75873899 -0.4145577 0.69652194 -0.77283591\n\t\t -0.36918369 0.69368696 -0.7825039 -0.3916657 0.69553292 -0.80326086 -0.3645317 0.69139993 -0.79110986\n\t\t -0.36056271 0.68410295 -0.8056199 -0.36797071 0.65464795 -0.83757401 -0.37557471 0.64634591 -0.8403849\n\t\t -0.38321471 0.64146596 -0.83841801 -0.3882097 0.69104391 -0.81491303 -0.3943257 0.66735393 -0.83993489\n\t\t -0.39536169 0.68347394 -0.80976087 -0.3986167 0.68599892 -0.80174989 -0.40251869 0.66467792 -0.8263399\n\t\t -0.40015069 0.66036391 -0.84163201 -0.41043571 0.65996891 -0.823439 -0.39654669 0.69724792 -0.79430586\n\t\t -0.4205077 0.68611592 -0.77450687 -0.47137669 0.68592095 -0.70453203 -0.52108967 0.66275895 -0.6306259\n\t\t -0.53449458 0.66630495 -0.59319699 -0.54550469 0.66021591 -0.57542002 -0.54741257 0.65029693 -0.58125401\n\t\t -0.56685358 0.64452595 -0.54972994 -0.56543469 0.63667995 -0.55825794 -0.5726707 0.63856095 -0.54468691\n\t\t -0.5416677 0.63347197 -0.6353119 -0.5245297 0.63824594 -0.67140901 -0.47567871 0.64963192 -0.75174999\n\t\t -0.42416769 0.65696591 -0.81247902 -0.28521076 0.11530189 -1.056808949 -0.28501675 0.13229893 -1.0802598\n\t\t -0.29445276 0.1153859 -1.063333035 -0.27507177 0.13347392 -1.074996948 -0.2731387 0.15730689 -1.089028001\n\t\t -0.28321776 0.15447991 -1.093318939 -0.27971777 0.18303393 -1.096686006 -0.29384571 0.20688693 -1.096848965\n\t\t -0.31328869 0.22509791 -1.089491844 -0.33519971 0.23499893 -1.075693011;\n\tsetAttr \".vt[1494:1659]\" -0.34097877 0.22678991 -1.080906987 -0.35611776 0.23502691 -1.057629824\n\t\t -0.37297776 0.2251759 -1.0379498 -0.38557571 0.2007349 -1.02885294 -0.38311675 0.20700391 -1.019762993\n\t\t -0.38504869 0.18317191 -1.0057318211 -0.38125169 0.15460889 -1.0086669922 -0.37846971 0.15744491 -0.99807388\n\t\t -0.36434269 0.13359092 -0.99791002 -0.36810276 0.13240789 -1.0085150003 -0.3500067 0.11545892 -1.015362024\n\t\t -0.34489974 0.11538093 -1.005267024 -0.32298869 0.10547893 -1.019068003 -0.32961369 0.10624291 -1.028205991\n\t\t -0.32085177 0.12971292 -0.97730601 -0.29889175 0.11978991 -0.9911359 -0.2779277 0.11976193 -1.0092389584\n\t\t -0.30207077 0.10545091 -1.037129998 -0.34033769 0.14796491 -0.96993303 -0.3544957 0.17187093 -0.97009689\n\t\t -0.36108971 0.19765492 -0.977772 -0.35915276 0.2215399 -0.99183387 -0.34899169 0.23975192 -1.010061026\n\t\t -0.33209375 0.24962489 -1.029783964 -0.31112969 0.24959691 -1.047886848 -0.28916976 0.2396739 -1.061717033\n\t\t -0.26968375 0.2214229 -1.069090843 -0.25552571 0.19751589 -1.068926811 -0.24893171 0.17173292 -1.061251998\n\t\t -0.25086874 0.14784692 -1.047188997 -0.26102975 0.1296349 -1.028962016 -0.31014475 0.10621791 -1.045015812\n\t\t -0.28934076 0.17842491 -1.10044694 -0.30098477 0.17540793 -1.088819981 -0.29775575 0.1409689 -1.073747993\n\t\t -0.30480069 0.12834091 -1.061108828 -0.31651771 0.1214949 -1.047433853 -0.33105275 0.12151392 -1.03488183\n\t\t -0.34627977 0.12839492 -1.02529192 -0.35979077 0.14104991 -1.020179987 -0.3873747 0.17855291 -1.0157938\n\t\t -0.36579177 0.20469292 -1.048004031 -0.3761397 0.2176479 -1.045779943 -0.35407475 0.21153791 -1.061679006\n\t\t -0.3604477 0.22681592 -1.064096928 -0.33953971 0.21151893 -1.074231029 -0.32431269 0.20463891 -1.08382082\n\t\t -0.32058576 0.21757491 -1.093750954 -0.3024897 0.20062591 -1.10059881 -0.28999975 0.1648169 -1.06821394\n\t\t -0.29408476 0.18079291 -1.072970033 -0.29539669 0.1610399 -1.075688004 -0.29119968 0.15001689 -1.059500933\n\t\t -0.29749575 0.13873093 -1.048205853 -0.3030327 0.13446991 -1.055307984 -0.3028577 0.19560592 -1.073071003\n\t\t -0.3149327 0.20691492 -1.068503022 -0.34152976 0.21308093 -1.04871583 -0.36496371 0.1924759 -1.031873941\n\t\t -0.36618575 0.17740093 -1.02299881 -0.36202371 0.16112791 -1.018154979 -0.3554107 0.1649019 -1.011731029\n\t\t -0.35308775 0.1460389 -1.018051028 -0.34663776 0.15008889 -1.01162982 -0.32095569 0.13263093 -1.024767995\n\t\t -0.3136977 0.1282389 -1.042860031 -0.3079657 0.13261391 -1.035984993 -0.29955769 0.17731391 -1.080531836\n\t\t -0.29641271 0.15752991 -1.083498001 -0.2966187 0.14596491 -1.0668118 -0.31080168 0.19198392 -1.088932991\n\t\t -0.30849469 0.19240193 -1.080634832 -0.32079369 0.2039219 -1.075981855 -0.33465376 0.21018492 -1.067252994\n\t\t -0.34788474 0.2102019 -1.055827022 -0.35854974 0.20397089 -1.04337883 -0.37283671 0.19206493 -1.035364985\n\t\t -0.37417975 0.17550389 -1.025614977 -0.36960769 0.1576259 -1.020292997 -0.34078875 0.13451992 -1.02270484\n\t\t -0.32692876 0.12825589 -1.031433821 -0.3594957 0.18087892 -1.016487002 -0.33456376 0.13877992 -1.01619792\n\t\t -0.32853976 0.21306391 -1.059932947 -0.3519997 0.20696391 -1.03649497 -0.35829577 0.1956789 -1.025200009\n\t\t -0.92436469 -0.080377251 -0.54885685 -0.89841956 -0.10961604 -0.58723187 -0.9127667 -0.11017004 -0.59041691\n\t\t -0.91044956 -0.079047054 -0.54434586 -0.89689672 -0.11227605 -0.59539789 -0.91132867 -0.11297105 -0.59760088\n\t\t -0.89681768 -0.11021805 -0.60083985 -0.91118461 -0.11157005 -0.6021589 -0.92771769 -0.070128247 -0.53970289\n\t\t -0.91399968 -0.068319649 -0.53490889 -0.92930061 -0.064195544 -0.53724086 -0.91573256 -0.06198214 -0.53233993\n\t\t -0.89764571 -0.10621305 -0.60225189 -0.91187459 -0.10814404 -0.60327387 -0.91278559 -0.10407405 -0.60364789\n\t\t -0.93036771 -0.059517741 -0.53668189 -0.9169637 -0.056772649 -0.5318259 -0.94389158 0.0032250434 -0.54308987\n\t\t -0.93046069 0.0059770942 -0.53822386 -0.94477272 0.007995218 -0.54463089 -0.93149155 0.011272356 -0.53993988\n\t\t -0.94561356 0.01329425 -0.54837787 -0.93242371 0.016912952 -0.5439539 -0.94644457 0.020910159 -0.5590049\n\t\t -0.93332857 0.024870858 -0.55500489 -0.94696772 0.03844595 -0.60265386 -0.93381667 0.042794779 -0.5999679\n\t\t -0.94654667 0.039102152 -0.6102649 -0.93320668 0.043235049 -0.60838485 -0.94555455 0.036221951 -0.61464286\n\t\t -0.93199968 0.039751127 -0.61343086 -0.94459957 0.032116756 -0.6151529 -0.93075371 0.035151154 -0.6141659\n\t\t -0.94356573 0.027512252 -0.61473089 -0.92954671 0.030019954 -0.61372888 -0.8987397 -0.10156004 -0.60264689\n\t\t -0.9469347 0.018496856 -0.56047392 -0.94711655 0.036383659 -0.60910392 -0.94647372 0.03492406 -0.61240387\n\t\t -0.9456566 0.031684861 -0.61280388 -0.91388071 -0.10413204 -0.60136485 -0.94534856 0.0066093504 -0.54699886\n\t\t -0.94460458 0.0027802587 -0.54568589 -0.9301756 -0.063739344 -0.53973293 -0.9127357 -0.11063504 -0.59714592\n\t\t -0.91245067 -0.11045204 -0.60024589 -0.92544472 -0.078910351 -0.55065787 -0.91393858 -0.10825705 -0.59138286\n\t\t -0.93108159 -0.05996345 -0.53928488 -0.92869568 -0.069140047 -0.54194689 -0.94466156 0.027454361 -0.61244285\n\t\t -0.94745857 0.035666659 -0.60297692 -0.94613057 0.01135616 -0.55040288 -0.91300958 -0.10783304 -0.60105085\n\t\t -0.75243455 0.42154199 -0.31850892 -0.78760958 0.35399699 -0.17145944 -0.74837559 0.42514998 -0.33607292\n\t\t -0.7526896 0.37661898 -0.35225499 -0.72438955 0.48971701 -0.37660995 -0.7245636 0.48605496 -0.37978691\n\t\t -0.6207937 0.49639893 -0.72105688 -0.62589669 0.43006092 -0.74444491 -0.69698256 0.46443295 -0.54137295\n\t\t -0.74510556 0.38937801 -0.41844395 -0.74116558 0.43838996 -0.40094799 -0.56906772 0.51016694 -0.81259888\n\t\t -0.7559486 0.42771399 -0.34137094 -0.68985069 0.51614392 -0.51877195 -0.73430955 0.48555696 -0.38464394\n\t\t -0.61426657 0.55204892 -0.69072199 -0.50761157 0.52031493 -0.89855391 -0.50358158 0.57980293 -0.86254203\n\t\t -0.39236477 0.53091395 -1.02018702 -0.28711969 0.59969497 -1.059507847 -0.28437075 0.52935594 -1.10046792\n\t\t -0.39501277 0.45363891 -1.047621965 -0.5120576 0.44648194 -0.92435801 -0.29024369 0.45659184 -1.12509394\n\t\t -0.26548469 0.52813792 -1.1138308 -0.7298736 0.38215101 -0.13446984;\n\tsetAttr \".vt[1660:1825]\" -0.72728056 0.38147599 -0.13297313 -0.74420959 0.38591498 -0.14274684\n\t\t -0.78160655 0.39562196 -0.16434124 -0.77372056 0.438649 -0.15636954 -0.74463457 0.47243601 -0.30302095\n\t\t -0.71781355 0.44613498 -0.12297044 -0.68299258 0.484667 -0.28504744 -0.71503657 0.44637901 -0.12132124\n\t\t -0.66361958 0.50058299 -0.35532194 -0.61913055 0.52941096 -0.48933694 -0.54679257 0.56049395 -0.65364188\n\t\t -0.55351567 0.57089293 -0.77200401 -0.49904671 0.57350993 -0.7366429 -0.49412471 0.58261192 -0.85477901\n\t\t -0.44325969 0.58318692 -0.81450999 -0.34376669 0.59324896 -0.92143887 -0.21742366 0.59776294 -1.0056120157\n\t\t -0.20554467 0.59214395 -1.016137004 -0.19829167 0.58642995 -1.023873806 -0.1943507 0.57771593 -1.031075001\n\t\t -0.25787976 0.58445996 -1.074512959 -0.1904887 0.50106692 -1.073563814 -0.26061171 0.46650589 -1.12739992\n\t\t -0.2025187 0.42662692 -1.095098972 -0.2658577 0.45619184 -1.12756681 -0.2081587 0.41657192 -1.095463991\n\t\t -0.2286707 0.4043889 -1.087767005 -0.27977976 0.44624788 -1.12165093 -0.35914069 0.40261292 -1.0019028187\n\t\t -0.39017776 0.4437269 -1.041514993 -0.46403471 0.39715892 -0.88915688 -0.52135968 0.39129895 -0.80761003\n\t\t -0.61803973 0.42070395 -0.74132687 -0.56938469 0.38293594 -0.720245 -0.6401397 0.36274391 -0.54619992\n\t\t -0.68309557 0.34506196 -0.40287694 -0.7022506 0.33612901 -0.32687795 -0.75707656 0.37060499 -0.33498991\n\t\t -0.73637158 0.316598 -0.14340752 -0.73883361 0.31825697 -0.14476752 -0.67984957 0.51661491 -0.51493394\n\t\t -0.67907572 0.52044892 -0.51380193 -0.6038667 0.55560392 -0.68462002 -0.55448771 0.56714195 -0.77325791\n\t\t -0.4951297 0.57889491 -0.85610586 -0.38454169 0.59190595 -0.97423488 -0.38364071 0.59556895 -0.97269702\n\t\t -0.27540675 0.60191894 -1.052274942 -0.26875269 0.59859496 -1.058876991 -0.2618317 0.59297794 -1.06694901\n\t\t -0.2601667 0.58145094 -1.075587034 -0.25435975 0.52420497 -1.10982084 -0.26306671 0.46997786 -1.12654495\n\t\t -0.28199869 0.45043087 -1.12059283 -0.50487858 0.44076294 -0.91889888 -0.50547969 0.43681192 -0.91968387\n\t\t -0.56683171 0.43003094 -0.83333391 -0.61748356 0.42467391 -0.74060887 -0.6927076 0.39877993 -0.56023598\n\t\t -0.73611659 0.38431698 -0.41510496 -0.73704356 0.37993199 -0.41412196 -0.7411806 0.47260696 -0.32151097\n\t\t -0.74917656 0.47255498 -0.32761896 -0.60477656 0.55181992 -0.68582088 -0.56353867 0.56773692 -0.77887589\n\t\t -0.39119971 0.59325397 -0.98242199 -0.2777077 0.59809697 -1.053611994 -0.27133974 0.59515995 -1.059859037\n\t\t -0.28161177 0.59711492 -1.064909935 -0.2745657 0.59168893 -1.073007822 -0.26429376 0.58977193 -1.067963839\n\t\t -0.27041677 0.58337295 -1.080641985 -0.25537875 0.52426493 -1.10970199 -0.27242777 0.47589689 -1.130283\n\t\t -0.27780271 0.46568888 -1.13041782 -0.26853177 0.45983189 -1.12659192 -0.38963577 0.44765794 -1.040596962\n\t\t -0.57411557 0.43954992 -0.83722401 -0.5662477 0.43399191 -0.83259088 -0.69220769 0.40276492 -0.55956197\n\t\t -0.70129168 0.40782994 -0.56217295 -0.7601276 0.38124996 -0.3568449 -0.76096457 0.39790696 -0.1929532\n\t\t -0.76727957 0.39180899 -0.15607384 -0.77164358 0.36245596 -0.16114344 -0.7653296 0.368554 -0.19802304\n\t\t -0.74380755 0.35112399 -0.18626577 -0.73789561 0.39201397 -0.17962641 -0.75012159 0.34502596 -0.14938614\n\t\t -0.73654056 0.42746001 -0.13535354 -0.73022658 0.433559 -0.17223334 -0.76175058 0.42266899 -0.15040565\n\t\t -0.7554366 0.42876697 -0.18728513 0.1094033 0.15255891 -1.15216494 0.1127463 0.1471719 -1.14557302\n\t\t 0.1144323 0.14718892 -1.14872193 0.1073443 0.15294291 -1.14927101 0.1048563 0.16048293 -1.15295804\n\t\t 0.1214373 0.14425193 -1.14577401 0.1287353 0.1439759 -1.14026785 0.1056773 0.16860192 -1.15605092\n\t\t 0.1096863 0.17611091 -1.15809798 0.11769228 0.1794389 -1.16101003 0.1162503 0.18182291 -1.15877402\n\t\t 0.12440731 0.18490191 -1.15798104 0.1252843 0.18230389 -1.160272 0.13315929 0.18226592 -1.158283\n\t\t 0.1328683 0.18486093 -1.15584493 0.1403953 0.18170591 -1.15267682 0.14519329 0.17395891 -1.15189195\n\t\t 0.1457973 0.1759349 -1.14897799 0.1482853 0.16839491 -1.14529085 0.1467443 0.15938391 -1.14558101\n\t\t 0.14746431 0.16027491 -1.14219785 0.1434553 0.15276693 -1.14015102 0.1368923 0.1470549 -1.13947499\n\t\t 0.12931231 0.1442139 -1.143785 0.1261543 0.14812593 -1.12993503 0.1176763 0.14816691 -1.13207603\n\t\t 0.1202733 0.14401691 -1.14240384 0.13432831 0.15121089 -1.12914002 0.14090531 0.15693389 -1.12981796\n\t\t 0.1449223 0.1644579 -1.13186884 0.14574429 0.17259391 -1.1349678 0.1432523 0.1801499 -1.13866282\n\t\t 0.1378383 0.18593191 -1.14236903 0.1302963 0.18909292 -1.14554381 0.1218183 0.18913491 -1.14768386\n\t\t 0.1136443 0.18604992 -1.14847898 0.1070673 0.18032591 -1.147802 0.1030503 0.1728019 -1.145751\n\t\t 0.1022283 0.16466691 -1.14265084 0.1047203 0.15711091 -1.13895583 0.1101343 0.15132891 -1.13524985\n\t\t 0.1078523 0.16713391 -1.158476 0.1127793 0.16615193 -1.15684199 0.1070883 0.15957789 -1.15559602\n\t\t 0.1288023 0.1490389 -1.14587283 0.1344703 0.15117891 -1.14532185 0.1369043 0.14707892 -1.14304686\n\t\t 0.1430133 0.15239491 -1.143677 0.1418173 0.16036592 -1.14721501 0.1423883 0.16600792 -1.14936399\n\t\t 0.14750831 0.16694091 -1.14846003 0.1401653 0.1793289 -1.155334 0.1155653 0.1713699 -1.15826392\n\t\t 0.11158329 0.17412291 -1.16038001 0.1135533 0.16674991 -1.15430093 0.1130863 0.1678509 -1.15139103\n\t\t 0.1130343 0.16161393 -1.15234399 0.1141213 0.15812691 -1.14717984 0.1174763 0.15454291 -1.14488399\n\t\t 0.1221503 0.15258391 -1.14291596 0.1227863 0.1511979 -1.14566803 0.1281393 0.15117191 -1.14431703\n\t\t 0.1160893 0.17149989 -1.15559483 0.1196513 0.17606191 -1.15308201 0.1254013 0.1770599 -1.15552104\n\t\t 0.1247173 0.17797391 -1.15259004 0.13075329 0.17703392 -1.15417004 0.1299713 0.17794792 -1.151263\n\t\t 0.1389323 0.1713879 -1.149827 0.13998631 0.1614819 -1.14553702 0.1390363 0.1626799 -1.14278793\n\t\t 0.13745031 0.1567329 -1.144243 0.13329831 0.15311991 -1.1438148;\n\tsetAttr \".vt[1826:1991]\" 0.13247029 0.15446989 -1.14109683 0.1274053 0.15255789 -1.14158893\n\t\t 0.1122093 0.16050993 -1.15469193 0.1146083 0.15684392 -1.15001202 0.1139373 0.15526991 -1.15213001\n\t\t 0.1176923 0.1512609 -1.14955997 0.1180253 0.15319391 -1.14767194 0.1229223 0.14906792 -1.14735794\n\t\t 0.1202413 0.17511292 -1.15602303 0.1201263 0.17533992 -1.15873384 0.12579431 0.17747889 -1.15818298\n\t\t 0.1316743 0.17744993 -1.15669799 0.1369053 0.17525791 -1.15449703 0.1355143 0.17503791 -1.15216601\n\t\t 0.1406593 0.17124791 -1.15192699 0.1405053 0.16661792 -1.14749384 0.13903131 0.1551479 -1.14579296\n\t\t 0.1125763 0.16280891 -1.14946985 0.13954531 0.16772191 -1.14470899 0.1155753 0.17251392 -1.1526618\n\t\t 0.1346463 0.1759889 -1.14929581 0.13800131 0.17240493 -1.146999 0.1365463 0.15801691 -1.14151692\n\t\t 0.51916933 0.64532495 -0.66080511 0.47076431 0.65727293 -0.74116611 0.53644228 0.63982493 -0.62471902\n\t\t 0.5367043 0.63347197 -0.63531214 0.5341664 0.65119392 -0.60626805 0.51744944 0.65758193 -0.64041412\n\t\t 0.47043231 0.67036796 -0.71968615 0.41920429 0.65696591 -0.81247914 0.41854131 0.66529691 -0.8029651\n\t\t 0.4167113 0.67987192 -0.78397912 0.3991603 0.68725693 -0.79295611 0.39425629 0.66799992 -0.82598615\n\t\t 0.5321523 0.65620893 -0.59841013 0.40547231 0.65996891 -0.82343912 0.54244941 0.65029693 -0.58125407\n\t\t 0.54510242 0.64579695 -0.58535111 0.5473243 0.63657796 -0.59962511 0.54689431 0.63185894 -0.60980213\n\t\t 0.4000133 0.63607395 -0.82079411 0.4610993 0.62767392 -0.74870116 0.42076829 0.65063995 -0.8248021\n\t\t 0.37825131 0.64146596 -0.83841813 0.40268129 0.65525591 -0.83931816 0.52692831 0.63088197 -0.67638111\n\t\t 0.5090183 0.61672795 -0.66807812 0.54435527 0.62592393 -0.63955814 0.52592027 0.61207992 -0.63100004\n\t\t 0.53651631 0.61028492 -0.60345614 0.5546034 0.61074293 -0.54595506 0.57343829 0.62835091 -0.54991603\n\t\t 0.55601341 0.61472791 -0.53373808 0.5677073 0.63856095 -0.54468703 0.54929739 0.62882793 -0.52489603\n\t\t 0.56189042 0.64452595 -0.54973006 0.54237533 0.63681096 -0.52842605 0.51693428 0.65651894 -0.55919206\n\t\t 0.52953142 0.66630495 -0.59319711 0.50480944 0.66356397 -0.57863706 0.5129084 0.67291695 -0.62600714\n\t\t 0.48801231 0.67019892 -0.6116991 0.4664143 0.68592095 -0.70453215 0.44217029 0.68269992 -0.68907213\n\t\t 0.4095943 0.69652194 -0.77283615 0.3837173 0.69364393 -0.75873911 0.36422029 0.69368696 -0.78250414\n\t\t 0.3867023 0.69553292 -0.8032611 0.3595683 0.69139993 -0.7911101 0.35559931 0.68410295 -0.80562013\n\t\t 0.36300731 0.65464795 -0.83757412 0.37061131 0.64634591 -0.84038514 0.3832463 0.69104391 -0.81491315\n\t\t 0.38936231 0.66735393 -0.83993512 0.39039931 0.68347394 -0.80976111 0.3936533 0.68599892 -0.80175012\n\t\t 0.39755529 0.66467792 -0.82634014 0.39518729 0.66036391 -0.84163213 0.39158329 0.69724792 -0.7943061\n\t\t 0.4155443 0.68611592 -0.77450711 0.4700523 0.67582196 -0.70879114 0.51612628 0.66275895 -0.63062614\n\t\t 0.54054129 0.66021591 -0.57542008 0.5604713 0.63667995 -0.55825806 0.56258744 0.63446891 -0.55568004\n\t\t 0.56373131 0.63237095 -0.55678707 0.57214332 0.62546295 -0.56101108 0.5626533 0.63192493 -0.56216305\n\t\t 0.55489844 0.62432295 -0.61343312 0.5195663 0.63824594 -0.67140913 0.47071531 0.64963192 -0.75175011\n\t\t 0.47776031 0.64259297 -0.75764716 0.28024724 0.11530189 -1.056808949 0.28948924 0.1153859 -1.063333035\n\t\t 0.27010825 0.13347392 -1.074996948 0.2681753 0.15730689 -1.089028001 0.28437829 0.17842491 -1.10044694\n\t\t 0.2747553 0.18303393 -1.096686006 0.28888232 0.20688693 -1.096849203 0.31562224 0.21757491 -1.093751192\n\t\t 0.30832529 0.22509791 -1.089491844 0.33023632 0.23499893 -1.075693011 0.35548431 0.22681592 -1.064096928\n\t\t 0.35115424 0.23502691 -1.057629824 0.36801425 0.2251759 -1.0379498 0.3711763 0.2176479 -1.045779943\n\t\t 0.37815323 0.20700391 -1.019762993 0.38008529 0.18317191 -1.0057318211 0.3824113 0.17855291 -1.0157938\n\t\t 0.37628829 0.15460889 -1.0086669922 0.37350631 0.15744491 -0.99807388 0.35937929 0.13359092 -0.99791002\n\t\t 0.36313924 0.13240789 -1.0085150003 0.3450433 0.11545892 -1.015362024 0.33993623 0.11538093 -1.005267024\n\t\t 0.32465029 0.10624291 -1.028205991 0.29392824 0.11978991 -0.9911359 0.2729643 0.11976193 -1.0092389584\n\t\t 0.29710725 0.10545091 -1.037129998 0.31588826 0.12971292 -0.97730601 0.3353743 0.14796491 -0.96993303\n\t\t 0.34953231 0.17187093 -0.97009689 0.35612631 0.19765492 -0.977772 0.35418925 0.2215399 -0.99183387\n\t\t 0.34402829 0.23975192 -1.010061026 0.32713023 0.24962489 -1.029783964 0.3061673 0.24959691 -1.047886848\n\t\t 0.28420624 0.2396739 -1.061717033 0.26472023 0.2214229 -1.069090843 0.25056231 0.19751589 -1.068926811\n\t\t 0.24396831 0.17173292 -1.061251998 0.2459053 0.14784692 -1.047188997 0.25606623 0.1296349 -1.028962016\n\t\t 0.31802529 0.10547893 -1.019068003 0.29144931 0.15752991 -1.083498001 0.29602125 0.17540793 -1.088819981\n\t\t 0.27825424 0.15447991 -1.093318939 0.28005323 0.13229893 -1.0802598 0.29983729 0.12834091 -1.061108828\n\t\t 0.31155431 0.1214949 -1.047433853 0.30518124 0.10621791 -1.045015812 0.36787331 0.19206493 -1.035364985\n\t\t 0.38061231 0.2007349 -1.02885294 0.36082825 0.20469292 -1.048004031 0.33601525 0.22678991 -1.080906987\n\t\t 0.2975263 0.20062591 -1.10059905 0.28503624 0.1648169 -1.06821394 0.29043329 0.1610399 -1.075688004\n\t\t 0.28623629 0.15001689 -1.059500933 0.29253224 0.13873093 -1.048205853 0.30300331 0.13261391 -1.035984993\n\t\t 0.30353129 0.19240193 -1.080634832 0.2978943 0.19560592 -1.073071003 0.32357624 0.21306391 -1.059932947\n\t\t 0.35358623 0.20397089 -1.04337883 0.3470363 0.20696391 -1.03649497 0.35333225 0.1956789 -1.025200009\n\t\t 0.35706031 0.16112791 -1.018154979 0.3504473 0.1649019 -1.011731029 0.34167424 0.15008889 -1.01162982\n\t\t 0.33582523 0.13451992 -1.02270484 0.32960024 0.13877992 -1.01619792 0.3159923 0.13263093 -1.024767995\n\t\t 0.2945953 0.17731391 -1.080531836 0.2916553 0.14596491 -1.0668118;\n\tsetAttr \".vt[1992:2157]\" 0.29279223 0.1409689 -1.073747993 0.2980693 0.13446991 -1.055307984\n\t\t 0.30583829 0.19198392 -1.088932991 0.31583029 0.2039219 -1.075981855 0.31934929 0.20463891 -1.08382082\n\t\t 0.33457631 0.21151893 -1.074231029 0.32969025 0.21018492 -1.067252994 0.34292123 0.2102019 -1.055827022\n\t\t 0.34911123 0.21153791 -1.061679006 0.36000031 0.1924759 -1.031873941 0.36921623 0.17550389 -1.025614977\n\t\t 0.36122224 0.17740093 -1.02299881 0.36464429 0.1576259 -1.020292997 0.35482726 0.14104991 -1.020179987\n\t\t 0.34812424 0.1460389 -1.018051028 0.34131625 0.12839492 -1.02529192 0.3087343 0.1282389 -1.042860031\n\t\t 0.32609025 0.12151392 -1.03488183 0.32196525 0.12825589 -1.031433821 0.35453331 0.18087892 -1.016487002\n\t\t 0.28912124 0.18079291 -1.072970033 0.30996931 0.20691492 -1.068503022 0.33656624 0.21308093 -1.04871583\n\t\t 0.91684145 -0.081095636 -0.54711902 0.8934564 -0.10961604 -0.58723199 0.9054864 -0.079047054 -0.54434609\n\t\t 0.90481031 -0.11166505 -0.59000599 0.89193332 -0.11227605 -0.59539789 0.90328729 -0.11432505 -0.59817189\n\t\t 0.89185429 -0.11021805 -0.60083997 0.90320843 -0.11226705 -0.60361302 0.92039132 -0.070368245 -0.53768301\n\t\t 0.90903628 -0.068319649 -0.53490901 0.92212331 -0.064030737 -0.53511405 0.9107694 -0.06198214 -0.53234005\n\t\t 0.89268231 -0.10621305 -0.60225201 0.90403628 -0.10826205 -0.60502601 0.9233554 -0.058821246 -0.53460002\n\t\t 0.9120003 -0.056772649 -0.53182602 0.93685144 0.0039285719 -0.5409981 0.92549729 0.0059770942 -0.5382241\n\t\t 0.9378823 0.0092237592 -0.542714 0.92652839 0.011272356 -0.53994 0.93881428 0.014864355 -0.54672801\n\t\t 0.92746031 0.016912952 -0.54395401 0.93972027 0.022822157 -0.55777907 0.92836541 0.024870858 -0.55500507\n\t\t 0.94020832 0.040746078 -0.60274214 0.92885327 0.042794779 -0.59996814 0.93959743 0.041186437 -0.61115909\n\t\t 0.92824328 0.043235049 -0.60838509 0.93830228 0.037617758 -0.6162051 0.92703629 0.039751127 -0.6134311\n\t\t 0.93714428 0.033102661 -0.61693913 0.92579031 0.035151154 -0.61416614 0.93593729 0.027971461 -0.61650312\n\t\t 0.92458332 0.030019954 -0.61372912 0.9051314 -0.10360905 -0.60542202 0.8937763 -0.10156004 -0.60264689\n\t\t 0.9419713 0.018496856 -0.56047404 0.94116741 0.01135616 -0.550403 0.93964142 0.0027802587 -0.54568601\n\t\t 0.92611843 -0.05996345 -0.53928506 0.92048132 -0.078910351 -0.55065811 0.9077723 -0.11063504 -0.59714603\n\t\t 0.90804642 -0.10783304 -0.60105097 0.94069344 0.031684861 -0.61280411 0.90891731 -0.10413204 -0.60136497\n\t\t 0.92373228 -0.069140047 -0.54194701 0.90897542 -0.10825705 -0.5913831 0.92521244 -0.063739344 -0.53973305\n\t\t 0.90748727 -0.11045204 -0.60024589 0.94215339 0.036383659 -0.60910404 0.94151032 0.03492406 -0.61240411\n\t\t 0.94249541 0.035666659 -0.60297704 0.9403854 0.0066093504 -0.5469991 0.9396984 0.027454361 -0.61244309\n\t\t 0.74747139 0.42108697 -0.31850907 0.7766434 0.39516801 -0.16434136 0.73967141 0.471982 -0.30302107\n\t\t 0.74341244 0.42469597 -0.33607307 0.74772644 0.37616497 -0.35225511 0.71942639 0.48926198 -0.37661007\n\t\t 0.6158303 0.49594492 -0.72105712 0.6920194 0.46397793 -0.54137307 0.73620242 0.43793601 -0.40094811\n\t\t 0.56410432 0.50971293 -0.81259912 0.56915241 0.43909591 -0.83722413 0.60930341 0.55159491 -0.69072211\n\t\t 0.55857527 0.56728292 -0.77887613 0.50264841 0.51986092 -0.89855415 0.38623631 0.59279996 -0.98242211\n\t\t 0.38740125 0.53045893 -1.02018714 0.27940723 0.52890193 -1.10046816 0.50709444 0.44602793 -0.92435813\n\t\t 0.27283931 0.46523488 -1.13041806 0.26052129 0.52768296 -1.11383104 0.26746425 0.47544187 -1.130283\n\t\t 0.26545325 0.58291793 -1.080642104 0.2696023 0.59123492 -1.07300806 0.27664825 0.59665996 -1.064910173\n\t\t 0.7223174 0.38147599 -0.13297327 0.71285039 0.44613498 -0.12297057 0.72491044 0.38215101 -0.13446996\n\t\t 0.71007341 0.44637901 -0.12132137 0.73140842 0.316598 -0.14340766 0.73387045 0.31825697 -0.14476766\n\t\t 0.78264642 0.35354197 -0.17145957 0.75678742 0.42266899 -0.15040576 0.7315774 0.42746001 -0.13535367\n\t\t 0.7687574 0.43819499 -0.15636969 0.67802942 0.484667 -0.28504756 0.65865642 0.50058299 -0.35532206\n\t\t 0.61416739 0.52941096 -0.48933706 0.5989033 0.55514896 -0.68462014 0.54182941 0.56049395 -0.65364212\n\t\t 0.54855227 0.57043797 -0.77200413 0.49408332 0.57350993 -0.73664314 0.43829629 0.58318692 -0.81451011\n\t\t 0.33880329 0.59324896 -0.92143911 0.27044323 0.60146391 -1.052275181 0.21246032 0.59776294 -1.0056120157\n\t\t 0.20058133 0.59214395 -1.016137004 0.2568683 0.59252393 -1.066949129 0.19332834 0.58642995 -1.023873806\n\t\t 0.18938731 0.57771593 -1.031075001 0.1855253 0.50106692 -1.073563814 0.24939629 0.52375096 -1.10982108\n\t\t 0.1975553 0.42662692 -1.095099211 0.2608943 0.45573789 -1.12756705 0.2031953 0.41657192 -1.09546423\n\t\t 0.2237073 0.4043889 -1.087767005 0.27481624 0.44579285 -1.12165117 0.38521424 0.44327295 -1.041515112\n\t\t 0.3541773 0.40261292 -1.0019028187 0.5005163 0.43635792 -0.91968411 0.45907131 0.39715892 -0.88915712\n\t\t 0.56186831 0.42957592 -0.83333415 0.51639628 0.39129895 -0.80761015 0.5644213 0.38293594 -0.72024512\n\t\t 0.68774444 0.39832592 -0.5602361 0.6351763 0.36274391 -0.54620004 0.67813241 0.34506196 -0.40287706\n\t\t 0.69728744 0.33612901 -0.32687807 0.7521134 0.37014997 -0.33499008 0.67488641 0.51615995 -0.51493406\n\t\t 0.67411232 0.51999491 -0.51380205 0.48916131 0.58215797 -0.85477912 0.37957829 0.59145093 -0.97423512\n\t\t 0.37867731 0.59511495 -0.97269714 0.2637893 0.59814095 -1.05887711 0.26637623 0.59470594 -1.059859157\n\t\t 0.25933024 0.58931696 -1.067964077 0.25291625 0.58400494 -1.074513197 0.25564831 0.46605188 -1.12740016\n\t\t 0.5612843 0.4335379 -0.83259112 0.6125204 0.42421991 -0.74060911 0.61307633 0.42024994 -0.74132711\n\t\t 0.6872443 0.40231091 -0.55956209 0.7320804 0.37947696 -0.41412207 0.75098544 0.42725998 -0.34137106\n\t\t 0.73621744 0.47215199 -0.32151109 0.72934639 0.48510301 -0.38464406 0.7442134 0.47209996 -0.32761908\n\t\t 0.71960044 0.48560101 -0.37978703 0.68488729 0.51568997 -0.51877207;\n\tsetAttr \".vt[2158:2323]\" 0.5998134 0.55136591 -0.68582112 0.54952431 0.56668693 -0.77325815\n\t\t 0.4986183 0.57934892 -0.86254215 0.49016631 0.57844096 -0.8561061 0.28215629 0.59924096 -1.059508085\n\t\t 0.2727443 0.59764296 -1.053612113 0.25520331 0.58099693 -1.075587153 0.25041524 0.52380997 -1.10970199\n\t\t 0.25810331 0.46952289 -1.12654519 0.26356825 0.45937687 -1.12659216 0.28528029 0.45613688 -1.12509418\n\t\t 0.2770353 0.44997585 -1.12059307 0.39005029 0.45318395 -1.047622204 0.38467225 0.44720393 -1.0405972\n\t\t 0.4999153 0.44030792 -0.91889912 0.62093329 0.4296059 -0.74444515 0.69632828 0.40737593 -0.56217307\n\t\t 0.74014241 0.38892299 -0.41844407 0.73115343 0.38386196 -0.41510507 0.75516444 0.38079596 -0.35684502\n\t\t 0.73293245 0.39201397 -0.17962655 0.75600141 0.39790696 -0.19295332 0.76036644 0.368554 -0.19802317\n\t\t 0.75047344 0.42876697 -0.18728524 0.76231641 0.39180899 -0.15607396 0.76668042 0.36245596 -0.16114357\n\t\t 0.74515843 0.34502596 -0.14938626 0.73884439 0.35112399 -0.1862659 0.73924643 0.38591498 -0.14274696\n\t\t 0.72526342 0.433559 -0.17223346 -0.61593258 -0.23454298 0.072129101 -0.65405059 -0.17117098 0.029940113\n\t\t -0.65538359 -0.16886598 0.049479112 -0.61465859 -0.23684698 0.052532107 -0.6877566 -0.037979394 0.0017790943\n\t\t -0.68636155 -0.0407774 -0.017689899 -0.64738256 -0.16311298 0.1023131 -0.60811359 -0.22891699 0.12312111\n\t\t -0.6402666 -0.16099198 0.1194101 -0.67920458 -0.030133992 0.058159113 -0.6902796 -0.020669296 -0.025265902\n\t\t -0.66992658 0.0052226782 0.043752104 -0.68338156 -0.0094542205 0.051059082 -0.67714655 -0.0011311173 -0.014604926\n\t\t -0.69199359 -0.017628983 -0.0058669001 -0.67193156 -0.027690589 0.075212121 -0.6009416 -0.22679798 0.14027712\n\t\t -0.65631455 0.0072939396 0.060066104 -0.67576855 -0.0071453005 0.068138123 -0.66765457 -0.0033853203 -0.034995899\n\t\t -0.46077257 0.40940702 0.33748102 -0.47766358 0.41479105 0.34291208 -0.47247365 0.39531207 0.33462304\n\t\t -0.44310158 0.41479105 0.33589196 -0.44907057 0.42350304 0.34034002 -0.43795064 0.40576202 0.317536\n\t\t -0.44388157 0.40402406 0.33205098 -0.45950964 0.42683107 0.343696 -0.47760159 0.43485403 0.33639503\n\t\t -0.47043157 0.42350304 0.34467804 -0.48840159 0.42184407 0.33375603 -0.48956665 0.40576202 0.32802004\n\t\t -0.47844365 0.40402406 0.33907104 -0.48065165 0.39275205 0.32137704 -0.46506163 0.38778305 0.31636506\n\t\t -0.46203458 0.39198405 0.33126706 -0.45111358 0.39531207 0.33028406 -0.45155859 0.44556504 0.30107406\n\t\t -0.43678558 0.42184407 0.32327199 -0.44570059 0.43485403 0.32991499 -0.44264358 0.43255502 0.29443106\n\t\t -0.44380865 0.41647404 0.28869498 -0.46714965 0.45053506 0.306086 -0.46129063 0.43982303 0.33492798\n\t\t -0.48345959 0.44556504 0.30755401 -0.49425963 0.43255502 0.30491504 -0.49542457 0.41647404 0.29917905\n\t\t -0.48650965 0.40346402 0.29253605 -0.47091964 0.39849406 0.28752404 -0.45460957 0.40346402 0.28605705\n\t\t -0.44875064 0.39275205 0.31489807 0.60969543 -0.23684698 0.052531987 0.65042043 -0.16886598 0.049478993\n\t\t 0.64908743 -0.17117098 0.029939994 0.61096942 -0.23454298 0.072128981 0.68279344 -0.037979394 0.0017789751\n\t\t 0.6424194 -0.16311298 0.10231298 0.60315043 -0.22891699 0.12312099 0.66696841 -0.027690589 0.075212002\n\t\t 0.67424142 -0.030133992 0.058158994 0.6784184 -0.0094542205 0.051058963 0.66496342 0.0052226782 0.043751985\n\t\t 0.67080539 -0.0071453005 0.068138003 0.68703043 -0.017628983 -0.0058670193 0.67218339 -0.0011311173 -0.01460503\n\t\t 0.65135139 0.0072939396 0.060065985 0.59597844 -0.22679798 0.140277 0.63530344 -0.16099198 0.11940998\n\t\t 0.66269141 -0.0033853203 -0.034996018 0.68139839 -0.0407774 -0.017690018 0.68531644 -0.020669296 -0.025266021\n\t\t 0.45580941 0.40940702 0.33748096 0.43813843 0.41479105 0.33589196 0.46546841 0.42350304 0.34467798\n\t\t 0.47270042 0.41479105 0.34291202 0.44410741 0.42350304 0.34034002 0.43891841 0.40402406 0.33205098\n\t\t 0.45632735 0.43982303 0.33492798 0.45454636 0.42683107 0.343696 0.47263843 0.43485403 0.33639497\n\t\t 0.48460338 0.40576202 0.32801998 0.47348037 0.40402406 0.33907098 0.46751037 0.39531207 0.33462298\n\t\t 0.45707142 0.39198405 0.331267 0.44615042 0.39531207 0.330284 0.43768042 0.43255502 0.29443094\n\t\t 0.44073743 0.43485403 0.32991499 0.43182242 0.42184407 0.32327199 0.44659635 0.44556504 0.30107394\n\t\t 0.43884537 0.41647404 0.28869498 0.43298736 0.40576202 0.317536 0.46218637 0.45053506 0.306086\n\t\t 0.47849643 0.44556504 0.30755401 0.48343843 0.42184407 0.33375597 0.48929635 0.43255502 0.30491492\n\t\t 0.49046141 0.41647404 0.29917893 0.47568837 0.39275205 0.32137698 0.48154637 0.40346402 0.29253593\n\t\t 0.46009836 0.38778305 0.316365 0.46595636 0.39849406 0.28752398 0.44964641 0.40346402 0.286057\n\t\t 0.44378737 0.39275205 0.31489801 -0.17799953 -0.16369492 0.68524212 -0.17184553 -0.10611694 0.68398201\n\t\t -0.17379051 -0.16317293 0.68275297 -0.17726855 -0.10663393 0.68612099 -0.18246154 -0.16404593 0.685395\n\t\t -0.18333352 -0.10697393 0.68575209 -0.17879654 -0.21039093 0.67659312 -0.17606652 -0.20972292 0.67686611\n\t\t -0.17341352 -0.20872393 0.67539597 -0.17444354 -0.22306094 0.67140698 -0.17648055 -0.22396293 0.67061901\n\t\t -0.17304955 -0.21872392 0.67173308 -0.16866855 -0.063394725 0.67959297 -0.17437851 -0.061640427 0.679757\n\t\t -0.18120453 -0.06046693 0.67786509 -0.17258552 -0.049509928 0.67514801 -0.16878556 -0.054627225 0.67640013\n\t\t -0.17938755 -0.047204033 0.67230797 -0.18107551 -0.20973292 0.67504114 -0.18578856 -0.16370493 0.68240499\n\t\t -0.18217956 -0.20874295 0.67220199 -0.18742155 -0.16318893 0.67778802 -0.18822356 -0.10661694 0.68213111\n\t\t -0.19101653 -0.10608693 0.67700011 -0.17991956 -0.21873094 0.66923112 -0.17856355 -0.22306293 0.66990697\n\t\t -0.18761653 -0.061625034 0.67493701 -0.19183455 -0.063367844 0.67115611 -0.18635754 -0.04950574 0.67013502\n\t\t -0.18993156 -0.054614842 0.66870201 -0.16713555 -0.10594393 0.67529708 -0.16962755 -0.20839094 0.66693312\n\t\t -0.17100155 -0.22750694 0.66161501 -0.17709255 -0.22175294 0.66090614;\n\tsetAttr \".vt[2324:2489]\" -0.18506455 -0.16301695 0.66827708 -0.18853055 -0.05276984 0.66025102\n\t\t -0.15299855 -0.21763495 0.67384398 -0.16538255 -0.21025294 0.67176312 -0.15333152 -0.16439193 0.68352199\n\t\t -0.16295752 -0.10637493 0.68068302 -0.15936954 -0.061624616 0.6764341 -0.19569854 -0.10635193 0.6687631\n\t\t -0.20762254 -0.10732293 0.66449702 -0.19169255 -0.16345492 0.66965312 -0.20356555 -0.16439193 0.66523808\n\t\t -0.18597054 -0.21026795 0.66426712 -0.19667254 -0.21763495 0.65794897 -0.18247955 -0.22530094 0.6616661\n\t\t -0.19090955 -0.23749694 0.65443802 -0.17798056 -0.23330393 0.661026 -0.18188755 -0.24709395 0.65472811\n\t\t -0.17152356 -0.24932593 0.65765798 -0.16173655 -0.24709395 0.662063 -0.16676955 -0.16322592 0.67491609\n\t\t -0.16687655 -0.20926994 0.66768008 -0.16528451 -0.16344193 0.679268 -0.16443054 -0.10615993 0.67629808\n\t\t -0.16104855 -0.063194737 0.67239112 -0.16190355 -0.050970942 0.66948813 -0.16040255 -0.047806248 0.67304802\n\t\t -0.16747455 -0.04259254 0.6654641 -0.16693255 -0.038213938 0.66829598 -0.17563055 -0.03936474 0.66164696\n\t\t -0.17648855 -0.034474447 0.66378909 -0.18423955 -0.04259254 0.65936214 -0.18659855 -0.038213938 0.66113812\n\t\t -0.19085956 -0.050964549 0.65894699 -0.19438656 -0.047800943 0.66067809 -0.19304755 -0.063169137 0.66074002\n\t\t -0.19697656 -0.061603844 0.66274202 -0.19175555 -0.10613094 0.66634798 -0.18776155 -0.16324192 0.66727197\n\t\t -0.18221755 -0.20928894 0.66209197 -0.17921054 -0.22344694 0.65961099 -0.17581555 -0.23036493 0.6589511\n\t\t -0.17241155 -0.23201494 0.65966296 -0.17323455 -0.23554695 0.66201401 -0.16937555 -0.23036493 0.66129601\n\t\t -0.16900155 -0.23330393 0.664294 -0.16732454 -0.22344194 0.66393811 -0.16610855 -0.22529694 0.66762513\n\t\t -0.17964555 -0.20841195 0.66328299 -0.17482455 -0.22750694 0.66022414 -0.17280655 -0.22848694 0.66065413\n\t\t -0.16980855 -0.22174793 0.66355801 -0.16948652 -0.16299894 0.67395109 -0.16386256 -0.063979551 0.67156601\n\t\t -0.16447455 -0.05277814 0.66900802 -0.16908655 -0.045466542 0.66564 -0.17587955 -0.042783037 0.66248298\n\t\t -0.18303655 -0.045465931 0.6605621 -0.19033955 -0.06394884 0.661924 -0.18904555 -0.10590994 0.66731709\n\t\t -0.14769655 -0.16439193 0.6680401 -0.15105455 -0.10732293 0.68508601 -0.14541955 -0.10732293 0.66960502\n\t\t -0.14736354 -0.21763495 0.65836298 -0.14678752 -0.056862921 0.67968202 -0.14115255 -0.056862935 0.66420013\n\t\t -0.14875051 -0.03778322 0.67446101 -0.14311655 -0.037783235 0.65897912 -0.15947755 -0.023823544 0.666659\n\t\t -0.15384255 -0.02382344 0.651178 -0.17507955 -0.018123642 0.65918398 -0.16944554 -0.018123642 0.64370209\n\t\t -0.19167155 -0.02382344 0.6549421 -0.18603656 -0.02382344 0.63945997 -0.20450555 -0.037783235 0.65416801\n\t\t -0.19887055 -0.037783235 0.63868612 -0.20883755 -0.056862935 0.65709698 -0.20320354 -0.056862935 0.64161509\n\t\t -0.20198755 -0.10732293 0.64901608 -0.19793054 -0.16439193 0.64975613 -0.19103755 -0.21763495 0.64246708\n\t\t -0.18527456 -0.23749694 0.63895613 -0.17625254 -0.24709395 0.63924712 -0.16588855 -0.24932595 0.64217609\n\t\t -0.15610155 -0.24709395 0.64658111 -0.15480255 -0.23749793 0.66757911 -0.14916855 -0.23749694 0.65209812\n\t\t 0.17303649 -0.16369492 0.68524212 0.16688249 -0.10611694 0.68398201 0.17230545 -0.10663393 0.68612099\n\t\t 0.16882747 -0.16317293 0.68275297 0.17749844 -0.16404593 0.685395 0.17837048 -0.10697393 0.68575209\n\t\t 0.17383344 -0.21039093 0.67659312 0.17110348 -0.20972292 0.67686611 0.16845047 -0.20872393 0.67539597\n\t\t 0.16948044 -0.22306094 0.67140698 0.17151745 -0.22396293 0.67061901 0.16808645 -0.21872392 0.67173308\n\t\t 0.16370545 -0.063394725 0.67959297 0.16941547 -0.061640427 0.679757 0.17624149 -0.06046693 0.67786509\n\t\t 0.16762248 -0.049509928 0.67514801 0.16382246 -0.054627225 0.67640013 0.17442445 -0.047204033 0.67230797\n\t\t 0.17611247 -0.20973292 0.67504114 0.18082546 -0.16370493 0.68240499 0.17721646 -0.20874295 0.67220199\n\t\t 0.18245845 -0.16318893 0.67778802 0.18326046 -0.10661694 0.68213111 0.18605348 -0.10608693 0.67700011\n\t\t 0.17495646 -0.21873094 0.66923112 0.17360045 -0.22306293 0.66990697 0.18265349 -0.061625034 0.67493701\n\t\t 0.18687145 -0.063367844 0.67115611 0.18139444 -0.04950574 0.67013502 0.18496846 -0.054614842 0.66870201\n\t\t 0.17091645 -0.042783037 0.66248298 0.15951145 -0.05277814 0.66900802 0.15889946 -0.063979551 0.67156601\n\t\t 0.16452348 -0.16299894 0.67395109 0.16484545 -0.22174793 0.66355801 0.16784345 -0.22848694 0.66065413\n\t\t 0.16986145 -0.22750694 0.66022414 0.17212945 -0.22175294 0.66090614 0.14803545 -0.21763495 0.67384398\n\t\t 0.16032147 -0.16344193 0.679268 0.15799448 -0.10637493 0.68068302 0.15440644 -0.061624616 0.6764341\n\t\t 0.15543945 -0.047806248 0.67304802 0.17011645 -0.018123642 0.65918398 0.18670845 -0.02382344 0.6549421\n\t\t 0.18942346 -0.047800943 0.66067809 0.19201346 -0.061603844 0.66274202 0.19073544 -0.10635193 0.6687631\n\t\t 0.18672945 -0.16345492 0.66965312 0.19860245 -0.16439193 0.66523808 0.18100744 -0.21026795 0.66426712\n\t\t 0.19170944 -0.21763495 0.65794897 0.17751645 -0.22530094 0.6616661 0.17301746 -0.23330393 0.661026\n\t\t 0.16403845 -0.23330393 0.664294 0.15677345 -0.24709395 0.662063 0.14984044 -0.23749793 0.66757911\n\t\t 0.16041945 -0.21025294 0.67176312 0.16180645 -0.16322592 0.67491609 0.16191345 -0.20926994 0.66768008\n\t\t 0.15946744 -0.10615993 0.67629808 0.15608545 -0.063194737 0.67239112 0.15694045 -0.050970942 0.66948813\n\t\t 0.16251145 -0.04259254 0.6654641 0.16196945 -0.038213938 0.66829598 0.17066745 -0.03936474 0.66164696\n\t\t 0.17152545 -0.034474447 0.66378909 0.17927645 -0.04259254 0.65936214 0.18163545 -0.038213938 0.66113812\n\t\t 0.18589646 -0.050964549 0.65894699 0.18808545 -0.063169137 0.66074002 0.18679345 -0.10613094 0.66634798\n\t\t 0.18279845 -0.16324192 0.66727197 0.17725445 -0.20928894 0.66209197 0.17424744 -0.22344694 0.65961099\n\t\t 0.17085245 -0.23036493 0.6589511 0.16744845 -0.23201494 0.65966296 0.16827145 -0.23554695 0.66201401\n\t\t 0.16441245 -0.23036493 0.66129601 0.16236144 -0.22344194 0.66393811;\n\tsetAttr \".vt[2490:2655]\" 0.16114545 -0.22529694 0.66762513 0.17468245 -0.20841195 0.66328299\n\t\t 0.18010145 -0.16301695 0.66827708 0.18408245 -0.10590994 0.66731709 0.18537645 -0.06394884 0.661924\n\t\t 0.18356745 -0.05276984 0.66025102 0.17807345 -0.045465931 0.6605621 0.16412345 -0.045466542 0.66564\n\t\t 0.16217245 -0.10594393 0.67529708 0.16466445 -0.20839094 0.66693312 0.16603845 -0.22750694 0.66161501\n\t\t 0.14609145 -0.10732293 0.68508601 0.14273345 -0.16439193 0.6680401 0.14045645 -0.10732293 0.66960502\n\t\t 0.14836848 -0.16439193 0.68352199 0.14240044 -0.21763495 0.65836298 0.14420545 -0.23749694 0.65209812\n\t\t 0.14182448 -0.056862921 0.67968202 0.13618945 -0.056862935 0.66420013 0.14378747 -0.03778322 0.67446101\n\t\t 0.13815345 -0.037783235 0.65897912 0.15451445 -0.023823544 0.666659 0.14887945 -0.02382344 0.651178\n\t\t 0.16448244 -0.018123642 0.64370209 0.18107346 -0.02382344 0.63945997 0.19954245 -0.037783235 0.65416801\n\t\t 0.19390745 -0.037783235 0.63868612 0.20387545 -0.056862935 0.65709698 0.19824044 -0.056862935 0.64161509\n\t\t 0.20265944 -0.10732293 0.66449702 0.19702445 -0.10732293 0.64901608 0.19296844 -0.16439193 0.64975613\n\t\t 0.18607445 -0.21763495 0.64246708 0.18594645 -0.23749694 0.65443802 0.18031146 -0.23749694 0.63895613\n\t\t 0.17692445 -0.24709395 0.65472811 0.17128944 -0.24709395 0.63924712 0.16656046 -0.24932593 0.65765798\n\t\t 0.16092545 -0.24932595 0.64217609 0.15113845 -0.24709395 0.64658111 -0.71926057 0.26383996 -0.3454839\n\t\t -0.72366256 0.25632298 -0.32742095 -0.71964759 0.25774497 -0.34448993 -0.71871358 0.26668698 -0.3463369\n\t\t -0.72098255 0.26526296 -0.33669394 -0.69405067 0.264341 -0.44731894 -0.6940636 0.27014399 -0.4460429\n\t\t -0.69355869 0.25577098 -0.44353688 -0.71801257 0.25003296 -0.3445859 -0.71653861 0.24556898 -0.34482595\n\t\t -0.69302756 0.25019801 -0.43989095 -0.7209056 0.24953897 -0.33191791 -0.68699968 0.26647198 -0.47425094\n\t\t -0.68848056 0.27354097 -0.4658289 -0.71337861 0.26900101 -0.32174194 -0.71633959 0.25733697 -0.31324494\n\t\t -0.7165156 0.27470201 -0.3295849 -0.71165657 0.27405101 -0.32921892 -0.71342558 0.27747601 -0.34218794\n\t\t -0.70847958 0.27635896 -0.33961695 -0.6816476 0.28333896 -0.4472419 -0.68064368 0.28385901 -0.47264895\n\t\t -0.67728972 0.28267699 -0.46646896 -0.6786806 0.27781296 -0.4826299 -0.67512959 0.27796197 -0.47434688\n\t\t -0.71092761 0.24480297 -0.32205594 -0.7080726 0.23944397 -0.32946092 -0.7124396 0.23750399 -0.33048192\n\t\t -0.70479655 0.23796298 -0.33867794 -0.67912859 0.24271898 -0.44270188 -0.6844337 0.24026297 -0.44234696\n\t\t -0.72559559 0.26606196 -0.32760096 -0.7270506 0.25604296 -0.32235193 -0.71963656 0.268112 -0.31942594\n\t\t -0.72352457 0.27019197 -0.33466291 -0.6872077 0.28438997 -0.44737989 -0.68949658 0.27856797 -0.47025296\n\t\t -0.70934159 0.23557697 -0.34115893 -0.71709859 0.24431597 -0.32016692 -0.72265559 0.25659198 -0.31025994\n\t\t -0.7225796 0.26234198 -0.33106893 -0.72094959 0.27206099 -0.34547889 -0.69556868 0.278543 -0.44712695\n\t\t -0.69411671 0.27294797 -0.44463187 -0.68668473 0.27159399 -0.47345194 -0.6876297 0.27460498 -0.47899494\n\t\t -0.72322661 0.24522997 -0.32846892 -0.72012359 0.24082099 -0.33549592 -0.71852458 0.24633096 -0.3374089\n\t\t -0.71773559 0.23969997 -0.34421688 -0.69357556 0.24445395 -0.44227988 0.71429741 0.26383996 -0.34548402\n\t\t 0.71761644 0.26234198 -0.33106905 0.71468443 0.25774497 -0.34449005 0.71375042 0.26668698 -0.34633702\n\t\t 0.68908727 0.264341 -0.44731906 0.68910044 0.27014399 -0.44604301 0.68859529 0.25577098 -0.443537\n\t\t 0.71304941 0.25003296 -0.34458601 0.6880644 0.25019801 -0.43989107 0.68203628 0.26647198 -0.47425106\n\t\t 0.6835174 0.27354097 -0.46582901 0.71137643 0.25733697 -0.31324506 0.7146734 0.268112 -0.31942606\n\t\t 0.71769243 0.25659198 -0.31026006 0.70841545 0.26900101 -0.32174206 0.71155244 0.27470201 -0.32958502\n\t\t 0.70669341 0.27405101 -0.32921904 0.70846242 0.27747601 -0.34218806 0.70351642 0.27635896 -0.33961707\n\t\t 0.6822443 0.28438997 -0.44738001 0.67668444 0.28333896 -0.44724202 0.67232633 0.28267699 -0.46646908\n\t\t 0.67016643 0.27796197 -0.474347 0.70596445 0.24480297 -0.32205606 0.70310944 0.23944397 -0.32946104\n\t\t 0.69983339 0.23796298 -0.33867806 0.70437843 0.23557697 -0.34115905 0.67416543 0.24271898 -0.442702\n\t\t 0.6794703 0.24026297 -0.44234708 0.72063243 0.26606196 -0.32760108 0.71598643 0.27206099 -0.34547907\n\t\t 0.68453342 0.27856797 -0.47025308 0.67568028 0.28385901 -0.47264907 0.67371744 0.27781296 -0.48263001\n\t\t 0.71213543 0.24431597 -0.32016706 0.71826345 0.24522997 -0.32846904 0.70747644 0.23750399 -0.33048207\n\t\t 0.71516043 0.24082099 -0.33549607 0.6886124 0.24445395 -0.44227999 0.71601939 0.26526296 -0.33669406\n\t\t 0.71856141 0.27019197 -0.33466303 0.72208744 0.25604296 -0.32235205 0.7186994 0.25632298 -0.32742107\n\t\t 0.69060528 0.278543 -0.44712707 0.68915331 0.27294797 -0.44463199 0.68172133 0.27159399 -0.47345206\n\t\t 0.6826663 0.27460498 -0.47899505 0.71594244 0.24953897 -0.33191806 0.71356142 0.24633096 -0.33740902\n\t\t 0.71277243 0.23969997 -0.344217 0.71157545 0.24556898 -0.34482607 -0.91694957 -0.078916237 -0.51398587\n\t\t -0.94244671 0.044155076 -0.53492892 -0.94046158 0.032287955 -0.52582586 -0.94452369 0.084472343 -0.6355589\n\t\t -0.88715971 -0.16131204 -0.61537689 -0.86532867 0.032103643 -0.73213291 -0.8727836 0.043950841 -0.72629291\n\t\t -0.83946371 -0.092401356 -0.72081989 -0.93672669 0.044321284 -0.51056188 -0.89239669 -0.084639534 -0.48417589\n\t\t -0.90981972 -0.084386125 -0.49677688 -0.92176956 0.05403088 -0.50015593 -0.90607667 -0.09800034 -0.50284386\n\t\t -0.88863057 -0.098336637 -0.49010488 -0.9132247 -0.092542335 -0.5200569 -0.93863159 0.056259677 -0.51964486\n\t\t -0.92378771 0.066064671 -0.50925988 -0.94016761 0.10315894 -0.6339609 -0.92674559 0.11711393 -0.62913191\n\t\t -0.93499058 0.10313495 -0.64833188 -0.92158771 0.11711992 -0.64334893 -0.86077368 0.055785134 -0.7355029\n\t\t -0.84208071 0.065930948 -0.73387688 -0.93931156 0.084475532 -0.64992487;\n\tsetAttr \".vt[2656:2821]\" -0.85342669 0.043839738 -0.74138987 -0.83460158 0.053920642 -0.73969489\n\t\t -0.82261169 -0.084310457 -0.73657787 -0.80029958 -0.084537059 -0.73510087 -0.8384636 -0.078865156 -0.72776991\n\t\t -0.8235566 -0.097843051 -0.72960591 -0.80117959 -0.098141953 -0.72822887 -0.85155159 -0.18282005 -0.61765492\n\t\t -0.8565017 -0.18274504 -0.60414988 -0.87588257 -0.17592104 -0.61119592 -0.88217455 -0.16138504 -0.62897587\n\t\t -0.87092972 -0.17598605 -0.62483191 0.88219631 -0.16131204 -0.61537689 0.9082613 -0.092542335 -0.52005708\n\t\t 0.93956029 0.084472343 -0.63555914 0.93748331 0.044155076 -0.53492904 0.93549842 0.032287955 -0.5258261\n\t\t 0.9343484 0.084475532 -0.64992511 0.83450031 -0.092401356 -0.72081989 0.83350044 -0.078865156 -0.72776991\n\t\t 0.93176329 0.044321284 -0.51056206 0.88743329 -0.084639534 -0.48417607 0.9168064 0.05403088 -0.50015604\n\t\t 0.90485632 -0.084386125 -0.496777 0.91198641 -0.078916237 -0.51398611 0.88366741 -0.098336637 -0.49010506\n\t\t 0.90111327 -0.09800034 -0.5028441 0.8515383 -0.18274504 -0.60414988 0.93366843 0.056259677 -0.51964509\n\t\t 0.91882432 0.066064671 -0.50926006 0.93520445 0.10315894 -0.63396114 0.92178243 0.11711393 -0.62913203\n\t\t 0.93002743 0.10313495 -0.64833212 0.91662431 0.11711992 -0.64334905 0.85581028 0.055785134 -0.73550314\n\t\t 0.83711731 0.065930948 -0.73387712 0.86782044 0.043950841 -0.72629315 0.8484633 0.043839738 -0.74139011\n\t\t 0.82963842 0.053920642 -0.73969513 0.81764829 -0.084310457 -0.73657799 0.79533643 -0.084537059 -0.73510098\n\t\t 0.86036527 0.032103643 -0.73213315 0.81859344 -0.097843051 -0.72960603 0.79621643 -0.098141953 -0.72822887\n\t\t 0.84658843 -0.18282005 -0.61765504 0.87091941 -0.17592104 -0.61119604 0.87721139 -0.16138504 -0.62897599\n\t\t 0.86596632 -0.17598605 -0.62483203 -0.10000615 -0.61380392 0.69813609 -0.060581129 -0.6945799 0.80982012\n\t\t -0.085523352 -0.60461992 0.70114112 -0.065387949 -0.59739596 0.70445013 -0.034657944 -0.59336597 0.70763111\n\t\t -0.0024815155 -0.59333295 0.70859009 -0.060583327 -0.71676797 0.8062551 -0.073126532 -0.71125895 0.80521011\n\t\t -0.060577128 -0.70357186 0.81058609 -0.075107135 -0.71681494 0.8037191 -0.040444728 -0.71713394 0.80817211\n\t\t -0.040444728 -0.69981986 0.81284511 -0.040444527 -0.69080585 0.81278211 -0.074939035 -0.70223391 0.80418611\n\t\t -0.075194836 -0.82948697 0.77177709 -0.060583334 -0.82948697 0.7738331 -0.040444735 -0.82948697 0.77666509\n\t\t -0.078073837 -0.70799285 0.80126411 -0.017911231 -0.71713394 0.80817211 -0.017911239 -0.82948697 0.77666509\n\t\t -0.017911032 -0.69080585 0.81278211 -0.017911231 -0.69981986 0.81284511 -0.0024815067 -0.71713394 0.80817211\n\t\t -0.0024815062 -0.69981986 0.81284511 -0.0024815062 -0.69080585 0.81278211 -0.10303553 -0.81324095 0.68210208\n\t\t -0.059764337 -0.82948697 0.7680831 -0.084727049 -0.81324095 0.68210208 -0.078072637 -0.82948697 0.7680831\n\t\t -0.06574595 -0.81324095 0.68210208 -0.040783435 -0.82948697 0.7680831 -0.033844743 -0.81324095 0.68210208\n\t\t -0.017362636 -0.82948697 0.7680831 -0.0024815178 -0.81324095 0.68210208 -0.10309555 -0.61996496 0.6870901\n\t\t -0.0024815174 -0.61996496 0.6870901 -0.6703946 -0.32312202 -0.22347076 -0.67141157 -0.31113601 -0.24956216\n\t\t -0.67283857 -0.310321 -0.21554017 -0.67826056 -0.18075201 -0.26338789 -0.68201458 -0.067581415 -0.3124249\n\t\t -0.68412858 -0.090359822 -0.34879988 -0.6675716 -0.27458304 -0.32860088 -0.66233855 -0.32339603 -0.22307816\n\t\t -0.66860658 -0.33073199 -0.23815736 -0.66806459 -0.33321899 -0.25604808 -0.68525857 -0.069231734 -0.36063993\n\t\t -0.67519855 -0.067668632 -0.36164489 -0.67567855 -0.06953153 -0.36870193 -0.68553257 -0.071057424 -0.36756688\n\t\t -0.66815859 -0.33031601 -0.27563179 -0.65543658 -0.27472004 -0.3299129 -0.65905058 -0.33073801 -0.27653819\n\t\t -0.65212059 -0.21209303 -0.37652889 -0.6671946 -0.21233703 -0.37497294 -0.65348858 -0.30717701 -0.24346858\n\t\t -0.6728366 -0.30556804 -0.23441949 -0.67194957 -0.30932504 -0.24145196 -0.65423459 -0.303882 -0.23674458\n\t\t -0.6530506 -0.308671 -0.25118509 -0.67152059 -0.31151599 -0.25871366 -0.65364259 -0.30850804 -0.27011439\n\t\t -0.66945958 -0.25768802 -0.31333289 -0.67199057 -0.31102604 -0.26931268 -0.64743459 -0.20095703 -0.35645485\n\t\t -0.66400659 -0.08856082 -0.3254469 -0.67715961 -0.18963002 -0.2815176 -0.6570136 -0.18866701 -0.28374708\n\t\t -0.68260556 -0.089060619 -0.32370692 -0.66705358 -0.20308404 -0.35624385 -0.68415856 -0.091903724 -0.35229784\n\t\t -0.65318257 -0.30892003 -0.2599293 -0.66569859 -0.089715324 -0.34924889 -0.66574258 -0.091168426 -0.35260284\n\t\t -0.65045959 -0.25531104 -0.31376889 0.073109664 -0.82948697 0.7680831 0.095043153 -0.61380392 0.69813597\n\t\t 0.069975965 -0.70223391 0.80418611 0.080560364 -0.60461992 0.701141 0.060424864 -0.59739596 0.70445001\n\t\t 0.012948067 -0.69080585 0.81278211 0.02969496 -0.59336597 0.70763111 0.055620272 -0.71676797 0.8062551\n\t\t 0.068163462 -0.71125895 0.80521011 0.070144065 -0.71681494 0.8037191 0.055614073 -0.70357186 0.81058609\n\t\t 0.035481673 -0.71713394 0.80817211 0.035481673 -0.69981986 0.81284511 0.055618171 -0.6945799 0.80982012\n\t\t 0.035481565 -0.69080585 0.81278211 0.073110767 -0.70799285 0.80126411 0.012948168 -0.71713394 0.80817211\n\t\t 0.012948165 -0.82948697 0.77666509 0.012948168 -0.69981986 0.81284511 0.098072462 -0.81324095 0.68210208\n\t\t 0.054801363 -0.82948697 0.7680831 0.079763949 -0.81324095 0.68210208 0.060782954 -0.81324095 0.68210208\n\t\t 0.035820365 -0.82948697 0.7680831 0.028881758 -0.81324095 0.68210208 0.012399563 -0.82948697 0.7680831\n\t\t -0.0024815104 -0.82948697 0.7680831 -0.0024815095 -0.82948697 0.77666509 0.035481665 -0.82948697 0.77666509\n\t\t 0.055620264 -0.82948697 0.7738331 0.070231862 -0.82948697 0.77177709 0.098132446 -0.61996496 0.6870901\n\t\t 0.66698641 -0.30932504 -0.24145208 0.66364342 -0.33073199 -0.23815748 0.66543144 -0.32312202 -0.22347088\n\t\t 0.67329741 -0.18075201 -0.26338801 0.6791954 -0.091903724 -0.35229796 0.66209042 -0.20308404 -0.35624397\n\t\t 0.66223145 -0.21233703 -0.37497306 0.66449642 -0.25768802 -0.313333 0.66310143 -0.33321899 -0.2560482\n\t\t 0.66787541 -0.310321 -0.21554029 0.6598174 -0.310175 -0.2149449;\n\tsetAttr \".vt[2822:2987]\" 0.66319543 -0.33031601 -0.2756319 0.67705142 -0.067581415 -0.31242502\n\t\t 0.66521442 -0.066247821 -0.31226403 0.68029541 -0.069231734 -0.36064005 0.6702354 -0.067668632 -0.36164501\n\t\t 0.68056941 -0.071057424 -0.367567 0.65047342 -0.27472004 -0.32991296 0.66260844 -0.27458304 -0.328601\n\t\t 0.64852542 -0.30717701 -0.2434687 0.66787344 -0.30556804 -0.23441958 0.66644841 -0.31113601 -0.24956228\n\t\t 0.64808744 -0.308671 -0.25118518 0.66655743 -0.31151599 -0.25871378 0.64867944 -0.30850804 -0.27011448\n\t\t 0.66702741 -0.31102604 -0.2693128 0.64549643 -0.25531104 -0.31376901 0.66073543 -0.089715324 -0.34924901\n\t\t 0.67916542 -0.090359822 -0.3488 0.66077942 -0.091168426 -0.35260296 0.67219645 -0.18963002 -0.28151771\n\t\t 0.67764241 -0.089060619 -0.32370704 0.64927143 -0.303882 -0.2367447 0.65904343 -0.08856082 -0.32544702\n\t\t 0.65205044 -0.18866701 -0.2837472 0.64247143 -0.20095703 -0.35645497 0.64821941 -0.30892003 -0.25992942\n\t\t -0.59840357 -0.34865397 0.0835841 -0.61227357 -0.28914696 0.071501106 -0.59820157 -0.28214198 0.15400112\n\t\t -0.58389759 -0.36383098 0.1431101 -0.62374359 -0.27690101 0.024437115 -0.61643356 -0.27249396 0.067055106\n\t\t -0.68044156 0.016814798 -0.090682112 -0.67893058 0.018351808 -0.043777898 -0.66921359 0.021742418 0.051329106\n\t\t -0.6019876 -0.26355696 0.15347111 -0.59200758 -0.27393597 0.19820112 -0.57530659 -0.38511699 0.1603241\n\t\t -0.54265958 -0.40081197 0.14116412 -0.56120557 -0.39628798 0.16506812 -0.53524458 -0.39787698 0.1648061\n\t\t -0.56611657 -0.39918196 0.14174411 -0.58245856 -0.37796801 0.084248126 -0.56691259 -0.37943 0.082876116\n\t\t -0.5794856 -0.38773 0.13936511 -0.59417957 -0.36769098 0.087639123 -0.59056461 -0.36272401 0.061728105\n\t\t -0.60180056 -0.35302699 0.067964107 -0.56294656 -0.37869897 0.17962712 -0.57691956 -0.36956498 0.17363811\n\t\t -0.57990456 -0.27331898 0.20648211 -0.56173956 -0.27322498 0.20661512 -0.53758359 -0.37999797 0.17951912\n\t\t -0.59485257 -0.25902796 0.19727013 -0.58310956 -0.25819597 0.20545512 -0.65152258 0.033291221 0.10381308\n\t\t -0.63518858 0.034684211 0.10312808 -0.5670656 -0.25807098 0.2055681 -0.59509259 -0.34748399 0.047732115\n\t\t -0.5832696 -0.34865999 0.045865104 -0.59787059 -0.297005 0.019854113 -0.6100896 -0.29646 0.022046104\n\t\t -0.60269356 -0.28061801 0.01316911 -0.61493558 -0.28015801 0.015409112 -0.64174157 0.028622702 -0.10876811\n\t\t -0.60593057 -0.339212 0.054587111 -0.61954057 -0.292602 0.03081511 -0.57887459 -0.36410397 0.059965104\n\t\t -0.67316955 0.027140096 -0.10542581 -0.67111158 0.028521895 -0.053830914 -0.66028857 0.031597406 0.050788075\n\t\t -0.64340657 0.029982403 -0.056517914 -0.64012957 0.03301321 0.049430087 -0.66100955 0.02359581 0.099533081\n\t\t -0.39087158 -0.81112802 0.11326614 -0.38279763 -0.74446303 0.10235411 -0.43996963 -0.758205 0.060048148\n\t\t -0.1565576 -0.68171799 -0.2033923 -0.44602564 -0.76330298 0.068232149 -0.37515157 -0.75649798 0.12489811\n\t\t -0.22955059 -0.77235198 0.23263711 -0.22955059 -0.72150099 0.23263711 -0.15006457 -0.75324696 0.29145312\n\t\t -0.15006457 -0.70239496 0.29145411 -0.14807159 -0.76340896 0.28870711 -0.14807159 -0.69168496 0.28870711\n\t\t -0.22176158 -0.70575595 0.22151411 -0.0035279456 -0.64807391 0.087379098 -0.14209057 -0.68660492 0.28046811\n\t\t -0.22760358 -0.71080196 0.2298561 -0.37313363 -0.74578202 0.12217012 -0.001435111 -0.64493501 -0.090156712\n\t\t -0.1565576 -0.82470298 -0.20339248 -0.43996963 -0.83844501 0.060048148 -0.38885364 -0.82128501 0.11053815\n\t\t -0.38056958 -0.79959899 0.10847116 -0.37855059 -0.80989897 0.10574314 -0.37155965 -0.755521 0.11091611\n\t\t -0.37855059 -0.75720102 0.10574311 -0.36550465 -0.81149298 0.10273215 -0.39087158 -0.76027697 0.11326614\n\t\t -0.38056958 -0.76806098 0.10847113 -0.15219261 -0.805354 -0.20016278 -0.38279763 -0.82470298 0.10235414\n\t\t -0.37249458 -0.81317401 0.097559154 -0.37357864 -0.76638103 0.11364412 -0.36550465 -0.75056702 0.10273212\n\t\t -0.37249458 -0.75224698 0.097559124 -0.38885364 -0.74956 0.11053813 -0.37155965 -0.80821902 0.11091614\n\t\t -0.37357864 -0.79791898 0.11364415 -0.37515157 -0.80734998 0.12489814 -0.22176158 -0.78599501 0.22151411\n\t\t -0.37313363 -0.81750602 0.12217015 -0.22760358 -0.78252602 0.2298561 -0.36707759 -0.82092398 0.11398613\n\t\t -0.14209057 -0.76684493 0.28046811 -0.14083764 -0.82092398 -0.19176027 -0.0035279156 -0.767515 0.087379098\n\t\t -0.0014352256 -0.767515 0.087379098 -0.36707759 -0.74068499 0.1139861 -0.44077763 -0.77438802 0.061140135\n\t\t -0.44804463 -0.82486999 0.070960134 -0.44804463 -0.774019 0.070961148 -0.43879065 -0.77049702 0.058455139\n\t\t -0.44602564 -0.83502698 0.068232149 -0.44028065 -0.825032 0.060469136 -0.21372961 -0.81604898 -0.24569766\n\t\t -0.44077763 -0.82248598 0.061140135 -0.44028065 -0.77170402 0.060469136 -0.46292263 -0.77714598 0.043714136\n\t\t -0.46155664 -0.77596903 0.041609138 -0.21372961 -0.71785498 -0.24569769 -0.23649564 -0.72332799 -0.26254368\n\t\t -0.43879065 -0.82582599 0.058455139 -0.45425364 -0.82839102 0.050129145 -0.45258364 -0.82914102 0.048248142\n\t\t -0.45529065 -0.82597399 0.050401136 -0.46302065 -0.77973402 0.044681147 0.59344041 -0.34865397 0.083583981\n\t\t 0.60096741 -0.339212 0.054587021 0.60731041 -0.28914696 0.071500987 0.59323841 -0.28214198 0.154001\n\t\t 0.57893443 -0.36383098 0.14310998 0.61878043 -0.27690101 0.024436995 0.6114704 -0.27249396 0.067054987\n\t\t 0.6754784 0.016814798 -0.090682231 0.66425043 0.021742418 0.051328987 0.59702444 -0.26355696 0.15347099\n\t\t 0.5968374 -0.35302699 0.067963988 0.5719564 -0.36956498 0.17363799 0.58988941 -0.25902796 0.19727001\n\t\t 0.53769642 -0.40081197 0.14116403 0.55624241 -0.39628798 0.16506806 0.56115341 -0.39918196 0.14174402\n\t\t 0.53028142 -0.39787698 0.16480604 0.56194943 -0.37943 0.082876027 0.5774954 -0.37796801 0.084248036\n\t\t 0.57452244 -0.38773 0.13936502 0.58921641 -0.36769098 0.087639004 0.58560145 -0.36272401 0.061728016\n\t\t 0.5579834 -0.37869897 0.179627 0.57034343 -0.38511699 0.16032398 0.58704442 -0.27393597 0.198201\n\t\t 0.5749414 -0.27331898 0.20648199 0.53262043 -0.37999797 0.179519;\n\tsetAttr \".vt[2988:3153]\" 0.5567764 -0.27322498 0.20661506 0.5781464 -0.25819597 0.20545501\n\t\t 0.65604639 0.02359581 0.099532992 0.63022542 0.034684211 0.10312799 0.56210244 -0.25807098 0.20556799\n\t\t 0.59012944 -0.34748399 0.047731996 0.57830644 -0.34865999 0.045865014 0.57391143 -0.36410397 0.059965014\n\t\t 0.59290743 -0.297005 0.019854009 0.60512644 -0.29646 0.022046 0.5977304 -0.28061801 0.013169006\n\t\t 0.60997242 -0.28015801 0.015409008 0.61457741 -0.292602 0.030815005 0.67396742 0.018351808 -0.043778017\n\t\t 0.66820639 0.027140096 -0.10542593 0.66614842 0.028521895 -0.053831026 0.65532541 0.031597406 0.050787985\n\t\t 0.63677841 0.028622702 -0.10876822 0.63844341 0.029982403 -0.056518018 0.63516641 0.03301321 0.049429968\n\t\t 0.64655942 0.033291221 0.10381299 0.44308135 -0.774019 0.070961058 0.20876639 -0.69546002 -0.24569792\n\t\t 0.37783435 -0.74446303 0.10235405 0.38389036 -0.74956 0.11053807 0.22458743 -0.77235198 0.23263711\n\t\t 0.22458743 -0.72150099 0.23263711 0.14510141 -0.75324696 0.29145312 0.14510141 -0.70239496 0.29145405\n\t\t 0.21679842 -0.70575595 0.22151411 -0.0014351956 -0.64807391 0.087379098 0.13712741 -0.68660492 0.28046811\n\t\t 0.22264042 -0.71080196 0.22985604 0.14310843 -0.69168496 0.28870705 0.15159439 -0.82470298 -0.20339251\n\t\t 0.20876639 -0.83844501 -0.24569792 0.44106236 -0.83502698 0.068232059 0.37358743 -0.75720102 0.10574305\n\t\t 0.14722939 -0.69896799 -0.20016283 0.14023839 -0.69728798 -0.19498989 0.36753142 -0.81317401 0.097559065\n\t\t 0.37560642 -0.79959899 0.10847107 0.38590842 -0.76027697 0.11326605 0.37560642 -0.76806098 0.10847107\n\t\t 0.37783435 -0.82470298 0.10235405 0.14722939 -0.805354 -0.20016281 0.36861536 -0.76638103 0.11364406\n\t\t 0.37018842 -0.75649798 0.12489805 0.36861536 -0.79791898 0.11364406 0.13587436 -0.677939 -0.19176011\n\t\t 0.36753142 -0.75224698 0.097559065 0.37358743 -0.80989897 0.10574305 0.38590842 -0.81112802 0.11326605\n\t\t 0.36659637 -0.80821902 0.11091605 0.36054137 -0.81149298 0.10273206 0.37018842 -0.80734998 0.12489805\n\t\t 0.13587436 -0.82092398 -0.1917603 0.21679842 -0.78599501 0.22151411 0.36817035 -0.81750602 0.12217006\n\t\t 0.36211443 -0.82092398 0.11398605 0.22264042 -0.78252602 0.22985604 0.13712741 -0.76684493 0.28046811\n\t\t 0.14310843 -0.76340896 0.28870705 -0.0014351911 -0.78792 -0.090156697 0.38389036 -0.82128501 0.11053807\n\t\t 0.36054137 -0.75056702 0.10273206 0.36817035 -0.74578202 0.12217006 0.36211443 -0.74068499 0.11398605\n\t\t 0.36659637 -0.755521 0.11091605 0.44308135 -0.82486999 0.070960045 0.43581435 -0.82248598 0.061140075\n\t\t 0.44106236 -0.76330298 0.068232059 0.43500635 -0.758205 0.060048088 0.43531737 -0.825032 0.060469076\n\t\t 0.43500736 -0.83844501 0.060048088 0.43581435 -0.77438802 0.061140075 0.45795935 -0.77714598 0.043714046\n\t\t 0.43382737 -0.77049702 0.05845505 0.45659336 -0.77596903 0.041609049 0.43531737 -0.77170402 0.060469076\n\t\t 0.43382737 -0.82582599 0.05845505 0.20876639 -0.81604898 -0.24569772 0.23153237 -0.72332799 -0.26254371\n\t\t 0.44762036 -0.82914102 0.048248053 0.45032737 -0.82597399 0.050401077 0.45805737 -0.77973402 0.044681087\n\t\t 0.44929036 -0.82839102 0.050129056 -0.11078261 0.77753901 0.011284977 -0.0024815658 0.717255 0.13106698\n\t\t -0.1081306 0.71372402 0.12622398 -0.0024815763 0.78369099 0.012970969 -0.11465961 0.82682794 -0.10514233\n\t\t -0.0024815868 0.83501202 -0.10613554 -0.11897761 0.86197191 -0.21408224 -0.12295263 0.88335198 -0.30655903\n\t\t -0.0024816047 0.89392298 -0.31176004 -0.12772565 0.88999802 -0.41976202 -0.17874564 0.87596995 -0.40842301\n\t\t -0.18212964 0.86201292 -0.45437607 -0.32393864 0.79236001 -0.37668401 -0.32757771 0.78243798 -0.39240205\n\t\t -0.3921687 0.73095 -0.29070801 -0.44468763 0.66163099 -0.18319863 -0.12962064 0.87541896 -0.46771708\n\t\t -0.13003264 0.86450797 -0.48623207 -0.0024816208 0.87478596 -0.49706101 -0.37872264 0.74543399 -0.25904608\n\t\t -0.43724763 0.66996503 -0.17382428 -0.42740864 0.67944199 -0.16174608 -0.45403963 0.63673902 -0.11846769\n\t\t -0.44289964 0.64798403 -0.10899729 -0.40538165 0.694161 -0.1353128 -0.41036662 0.67765099 -0.098242491\n\t\t -0.36350763 0.74456799 -0.18843429 -0.35875863 0.72918397 -0.1302896 -0.30022565 0.80132693 -0.24585411\n\t\t -0.29269263 0.78392601 -0.1713973 -0.17152464 0.86956102 -0.29900104 -0.16599362 0.84904891 -0.20922184\n\t\t -0.1601676 0.81537896 -0.10338382 -0.28588063 0.75570601 -0.083739005 -0.15509661 0.76822102 0.0096899718\n\t\t -0.28077364 0.71715099 0.010004997 -0.27835959 0.66874498 0.10271999 -0.15183161 0.70724398 0.121178\n\t\t -0.35584965 0.70424098 -0.061037987 -0.41501364 0.65303302 -0.045426995 -0.41817865 0.62370402 0.013706028\n\t\t -0.35421565 0.67140597 0.014047012 -0.41994163 0.59115201 0.075516015 -0.35394359 0.631984 0.089767992\n\t\t -0.35511458 0.58727998 0.16092804 -0.42038059 0.556871 0.13635904 -0.35742965 0.54057801 0.224994\n\t\t -0.41888058 0.52310801 0.19234005 -0.40958357 0.46999305 0.270953 -0.36509657 0.45416003 0.32186997\n\t\t -0.29583564 0.43326104 0.37519801 -0.28360263 0.54901606 0.26202205 -0.27962458 0.61097401 0.18728998\n\t\t -0.15142058 0.63211799 0.222256 -0.15316758 0.55047005 0.31134498 -0.16033556 0.39812803 0.447236\n\t\t -0.10748758 0.63500202 0.230699 -0.10839856 0.54948509 0.32296401 -0.11306155 0.39051604 0.46387601\n\t\t -0.0024815481 0.54650408 0.33520401 -0.11857155 0.29107004 0.5399701 -0.0024815288 0.28452802 0.55674899\n\t\t -0.12369255 0.21976705 0.58321112 -0.31411365 0.80566496 -0.33743301 -0.16749156 0.30126905 0.52130902\n\t\t -0.30795458 0.35649705 0.43330801 -0.37836263 0.39397603 0.36703199 -0.39353758 0.34161305 0.38558704\n\t\t -0.45137563 0.39353907 0.28930205 -0.43120965 0.43804604 0.28362104 -0.44052958 0.50912601 0.18361506\n\t\t -0.44371957 0.54030299 0.12742701 -0.46156964 0.55541098 0.061439022 -0.45914763 0.58639598 0.0029830188\n\t\t -0.45313665 0.617235 -0.054030985 -0.12003753 -0.24758792 0.66271514 -0.16352955 -0.24582694 0.6510461\n\t\t -0.12745655 -0.14175594 0.685215 -0.17498454 -0.068483546 0.66562909;\n\tsetAttr \".vt[3154:3319]\" -0.12852354 -0.069144428 0.67971802 -0.0024815165 -0.069139719 0.697034\n\t\t -0.11267955 -0.31687695 0.62946314 -0.0024815216 -0.31678894 0.63858813 -0.10561755 -0.38969094 0.58887511\n\t\t -0.12578155 0.057649955 0.64881009 -0.12314755 0.11823805 0.62720501 -0.0024815211 0.11567606 0.64442712\n\t\t -0.11853355 0.21410604 0.587672 -0.0024815248 0.21335407 0.60042912 -0.14411555 -0.38732094 0.5802421\n\t\t -0.37994057 -0.16127695 0.48014498 -0.21423055 -0.12629095 0.64876699 -0.20678756 -0.23196594 0.62626308\n\t\t -0.37741858 -0.057004049 0.5145461 -0.37029657 0.013597965 0.51947111 -0.21407855 -0.053658545 0.64452511\n\t\t -0.20829456 0.075194553 0.61494309 -0.35401857 0.13871105 0.50402701 -0.45371363 0.064181313 0.41466111\n\t\t -0.46192065 -0.0040922612 0.4038741 -0.52103543 0.12726603 0.28034505 -0.52896547 0.061714515 0.26360205\n\t\t -0.53353655 -0.0057581216 0.23712906 -0.46714658 -0.10678496 0.36435109 -0.43482959 0.18457504 0.41073\n\t\t -0.56069261 0.11642303 0.14738506 -0.55297858 0.18019603 0.16820806 -0.53476161 0.28381002 0.18776506\n\t\t -0.5019815 0.23937602 0.28987306 -0.34392259 0.19787104 0.49046808 -0.20371854 0.13547806 0.594769\n\t\t -0.19551554 0.23040004 0.5608471 -0.42238259 0.24243502 0.40340906 -0.39906859 0.33300805 0.39211106\n\t\t -0.45744064 0.38518304 0.29417804 -0.48724258 0.29478306 0.29074904 -0.51808059 0.33652401 0.19539505\n\t\t -0.17405055 0.12363108 0.60916698 -0.18091854 -0.065928236 0.66253901 -0.19836254 -0.30125594 0.59391314\n\t\t -0.32792759 -0.25365394 0.4919281 -0.18998155 -0.37403393 0.5538711 -0.37905359 -0.19562796 0.46229911\n\t\t -0.42554757 -0.13550596 0.42558813 -0.15964755 -0.31250393 0.61731511 -0.40594769 0.72084898 -0.31273997\n\t\t -0.43630064 0.68547201 -0.25834149 -0.4194957 0.69906998 -0.34281301 -0.33398569 0.783454 -0.40253305\n\t\t -0.35344571 0.74509794 -0.47134602 -0.18542364 0.85288197 -0.483733 -0.19460167 0.79508299 -0.59609401\n\t\t -0.27381968 0.77093494 -0.56506503 -0.13140865 0.86588103 -0.49799106 -0.13635068 0.80612093 -0.60981888\n\t\t -0.0024816219 0.876028 -0.50882602 -0.12981965 0.86084002 -0.48987105 -0.3996467 0.71766102 -0.308626\n\t\t -0.42951763 0.68278497 -0.25505888 -0.32889271 0.779383 -0.39685601 -0.18301363 0.84795803 -0.47598508\n\t\t -0.12921864 0.86088997 -0.48331806 -0.0024816212 0.87092501 -0.50045502 -0.16561155 0.21976705 0.570979\n\t\t -0.16326855 0.22265108 0.56829298 -0.32061759 0.29086703 0.4603191 -0.39060864 0.34016806 0.38201404\n\t\t -0.39364159 0.33506203 0.38561505 -0.45101058 0.38681805 0.28941706 -0.32552359 0.28902102 0.46838909\n\t\t -0.16783056 0.22002204 0.57279211 -0.12140455 0.21649708 0.58085001 -0.16104054 0.21949606 0.572806\n\t\t -0.3945877 0.71797699 -0.30288601 -0.42710963 0.68592203 -0.250328 -0.42399764 0.68339801 -0.24965811\n\t\t -0.39749864 0.72070599 -0.30389601 -0.32518163 0.77933198 -0.39072305 -0.18185663 0.84793097 -0.469459\n\t\t -0.18306164 0.85147494 -0.47217 -0.0024816208 0.87111801 -0.49399707 -0.022414651 0.21690206 0.589522\n\t\t -0.12304155 0.21835206 0.57824099 -0.0024815253 0.21823506 0.59485608 -0.0024815258 0.21687905 0.59238714\n\t\t -0.007464922 0.21683307 0.5901981 -0.16405155 0.22458704 0.57115012 -0.31773359 0.29527003 0.45774513\n\t\t -0.31995657 0.29664302 0.46199799 -0.44789365 0.39188707 0.28653705 -0.17823555 -0.064476937 0.65598297\n\t\t -0.17488155 -0.068124846 0.66226012 -0.17489354 0.063827351 0.62387711 -0.17148355 0.12421606 0.60223198\n\t\t -0.17351155 -0.14078793 0.67147809 -0.16344355 -0.24436694 0.6477471 -0.17339355 -0.13994893 0.66810113\n\t\t -0.15363355 -0.31474793 0.61965299 -0.15358154 -0.31302595 0.61642897 -0.17146955 0.060130253 0.63023698\n\t\t -0.17150955 0.060378358 0.63351709 -0.16803154 0.12158807 0.61194509 -0.16801655 0.12124504 0.60869008\n\t\t -0.16180055 0.21825705 0.57528901 -0.14407855 -0.38547295 0.57706499 -0.17750755 0.062938645 0.63058996\n\t\t -0.17673156 -0.13642594 0.661865 -0.17943256 -0.13834193 0.66842014 -0.16682754 -0.24095695 0.641909\n\t\t -0.16949955 -0.24352895 0.64839196 -0.15700956 -0.30963695 0.61091101 -0.14751555 -0.38207093 0.5716601\n\t\t -0.15013754 -0.38508293 0.57801199 -0.0024815565 0.63530302 0.23924598 0.10581939 0.77753901 0.011284962\n\t\t 0.10316741 0.71372402 0.12622395 0.10969639 0.82682794 -0.10514235 0.11401439 0.86197191 -0.21408226\n\t\t -0.0024815965 0.87162203 -0.21734786 0.11798938 0.88335198 -0.30655903 -0.0024816147 0.90099496 -0.42801505\n\t\t 0.12276337 0.88999802 -0.41976207 0.17378236 0.87596995 -0.40842307 0.17716636 0.86201292 -0.45437607\n\t\t 0.31897536 0.79236001 -0.37668407 0.32261431 0.78243798 -0.39240211 0.3872053 0.73095 -0.29070807\n\t\t 0.42214635 0.68592203 -0.25032806 0.43972436 0.66163099 -0.18319872 0.12465736 0.87541896 -0.46771708\n\t\t 0.12506936 0.86450797 -0.48623207 -0.0024816194 0.88598198 -0.47784001 0.37375936 0.74543399 -0.25904617\n\t\t 0.43228436 0.66996503 -0.17382437 0.42244536 0.67944199 -0.16174616 0.44907635 0.63673902 -0.11846776\n\t\t 0.43793637 0.64798403 -0.10899736 0.40041837 0.694161 -0.13531286 0.40540335 0.67765099 -0.098242559\n\t\t 0.35854536 0.74456799 -0.18843435 0.35379535 0.72918397 -0.13028966 0.29526237 0.80132693 -0.24585417\n\t\t 0.28772935 0.78392601 -0.17139736 0.16656137 0.86956102 -0.29900104 0.1610304 0.84904891 -0.20922185\n\t\t 0.15520439 0.81537896 -0.10338385 0.28091735 0.75570601 -0.083739057 0.15013339 0.76822102 0.0096899569\n\t\t 0.27581036 0.71715099 0.010004953 0.27339643 0.66874498 0.10271993 0.14686839 0.70724398 0.12117797\n\t\t 0.35088637 0.70424098 -0.061038055 0.41005036 0.65303302 -0.045427062 0.41321537 0.62370402 0.013705939\n\t\t 0.34925237 0.67140597 0.014046952 0.41497836 0.59115201 0.075515926 0.34898043 0.631984 0.089767933\n\t\t 0.35015142 0.58727998 0.16092792 0.41541743 0.556871 0.13635895 0.35246637 0.54057801 0.224994\n\t\t 0.41391742 0.52310801 0.19233993 0.40462041 0.46999305 0.270953 0.36013341 0.45416003 0.32186997\n\t\t 0.29087237 0.43326104 0.37519801 0.27863935 0.54901606 0.26202193;\n\tsetAttr \".vt[3320:3485]\" 0.27466142 0.61097401 0.18728992 0.14645842 0.63211799 0.222256\n\t\t 0.14820442 0.55047005 0.31134498 0.15537246 0.39812803 0.447236 0.10252442 0.63500202 0.230699\n\t\t 0.10343543 0.54948509 0.32296401 0.10809845 0.39051604 0.46387601 -0.0024815353 0.38305104 0.48123902\n\t\t 0.11360845 0.29107004 0.5399701 0.11872945 0.21976705 0.58321112 0.30915037 0.80566496 -0.33743307\n\t\t 0.16252846 0.30126905 0.52130902 0.30299142 0.35649705 0.43330801 0.15908845 0.22458704 0.57115012\n\t\t 0.31499341 0.29664302 0.46199799 0.37339935 0.39397603 0.36703199 0.38857442 0.34161305 0.38558698\n\t\t 0.42624637 0.43804604 0.28362092 0.43556643 0.50912601 0.18361494 0.43875641 0.54030299 0.12742692\n\t\t 0.45660636 0.55541098 0.061438963 0.45418435 0.58639598 0.0029829293 0.44817337 0.617235 -0.054031067\n\t\t 0.11507446 -0.24758792 0.66271514 0.16854845 -0.14078793 0.67147809 0.12249347 -0.14175594 0.685215\n\t\t 0.12356044 -0.069144428 0.67971802 -0.0024815162 -0.14148894 0.700665 -0.0024815183 -0.24739194 0.67455196\n\t\t 0.10771645 -0.31687695 0.62946314 0.10065445 -0.38969094 0.58887511 -0.0024815253 -0.38979793 0.59517711\n\t\t -0.0024815192 0.055061355 0.66740799 0.12081845 0.057649955 0.64881009 0.11818545 0.11823805 0.62720501\n\t\t 0.16306844 0.12158807 0.61194509 0.14867045 -0.31474793 0.61965299 0.20926745 -0.12629095 0.64876699\n\t\t 0.37497741 -0.16127695 0.48014498 0.20182446 -0.23196594 0.62626308 0.37245542 -0.057004049 0.5145461\n\t\t 0.36533341 0.013597965 0.51947111 0.20911644 -0.053658545 0.64452511 0.20333245 0.075194553 0.61494309\n\t\t 0.34905541 0.13871105 0.50402701 0.44875035 0.064181313 0.41466099 0.45695737 -0.0040922612 0.40387398\n\t\t 0.51607251 0.12726603 0.28034493 0.52400255 0.061714515 0.26360199 0.52857339 -0.0057581216 0.237129\n\t\t 0.46218443 -0.10678496 0.36435097 0.42986643 0.18457504 0.41073 0.55572945 0.11642303 0.147385\n\t\t 0.54801542 0.18019603 0.168208 0.52979845 0.28381002 0.187765 0.49701837 0.23937602 0.289873\n\t\t 0.33895943 0.19787104 0.49046797 0.19875544 0.13547806 0.594769 0.32056043 0.28902102 0.46838897\n\t\t 0.41741943 0.24243502 0.403409 0.39410543 0.33300805 0.392111 0.45247737 0.38518304 0.29417792\n\t\t 0.48227942 0.29478306 0.29074892 0.51311743 0.33652401 0.19539499 0.17595644 -0.065928236 0.66253901\n\t\t 0.17446946 -0.13834193 0.66842014 0.19339944 -0.30125594 0.59391314 0.32296443 -0.25365394 0.49192798\n\t\t 0.18501845 -0.37403393 0.5538711 0.37409043 -0.19562796 0.46229899 0.42058441 -0.13550596 0.42558801\n\t\t 0.14517444 -0.38508293 0.57801199 0.40098429 0.72084898 -0.31274009 0.4145323 0.69906998 -0.34281307\n\t\t 0.43133736 0.68547201 -0.25834155 0.34848231 0.74509794 -0.47134608 0.32902229 0.783454 -0.40253311\n\t\t 0.18046036 0.85288197 -0.48373306 0.26885629 0.77093494 -0.56506503 0.18963833 0.79508299 -0.59609413\n\t\t 0.12644537 0.86588103 -0.49799106 0.13138734 0.80612093 -0.60981911 -0.0024816315 0.814601 -0.61909914\n\t\t 0.12485637 0.86084002 -0.48987105 0.32393035 0.779383 -0.39685607 0.41903436 0.68339801 -0.24965817\n\t\t 0.3946833 0.71766102 -0.30862606 0.42455435 0.68278497 -0.25505897 0.3896243 0.71797699 -0.30288607\n\t\t 0.32021835 0.77933198 -0.39072311 0.17689335 0.84793097 -0.46945906 0.17805035 0.84795803 -0.47598508\n\t\t 0.12425536 0.86088997 -0.48331806 0.31277043 0.29527003 0.45774502 0.38564536 0.34016806 0.38201398\n\t\t 0.44604743 0.38681805 0.28941694 0.15607744 0.21949606 0.572806 0.11807845 0.21835206 0.57824099\n\t\t 0.017451646 0.21690206 0.589522 0.38867843 0.33506203 0.38561499 0.31565443 0.29086703 0.46031898\n\t\t 0.16064845 0.21976705 0.570979 0.19055244 0.23040004 0.5608471 0.15683745 0.21825705 0.57528901\n\t\t 0.11644145 0.21649708 0.58085001 0.11357045 0.21410604 0.587672 -0.0024815255 0.21644206 0.59324211\n\t\t 0.39253536 0.72070599 -0.30389607 0.17809837 0.85147494 -0.47217005 -0.0024813737 0.21683307 0.591609\n\t\t 0.0025018682 0.21683307 0.5901981 0.15830545 0.22265108 0.56829298 0.44641235 0.39353907 0.28930199\n\t\t 0.44293037 0.39188707 0.28653699 0.15848045 -0.24436694 0.6477471 0.15204646 -0.30963695 0.61091101\n\t\t 0.14861844 -0.31302595 0.61642897 0.14255345 -0.38207093 0.5716601 0.13911645 -0.38547295 0.57706499\n\t\t 0.16991845 -0.068124846 0.66226012 0.16650745 0.060130253 0.63023698 0.16305345 0.12124504 0.60869008\n\t\t 0.16843045 -0.13994893 0.66810113 0.15856645 -0.24582694 0.6510461 0.17002144 -0.068483546 0.66562909\n\t\t 0.16654645 0.060378358 0.63351709 0.13915245 -0.38732094 0.5802421 0.16652045 0.12421606 0.60223198\n\t\t 0.17254445 0.062938645 0.63058996 0.16993044 0.063827351 0.62387711 0.16908745 0.12363108 0.60916698\n\t\t 0.16286846 0.22002204 0.57279211 0.17327245 -0.064476937 0.65598297 0.17176846 -0.13642594 0.661865\n\t\t 0.16186444 -0.24095695 0.641909 0.16453645 -0.24352895 0.64839196 0.15468445 -0.31250393 0.61731511\n\t\t -0.17648055 -0.49255794 0.59880012 -0.16525255 -0.35130695 0.62496102 -0.11477254 -0.33432394 0.63095409\n\t\t -0.04881455 -0.42581093 0.62495899 -0.10622355 -0.61224496 0.69235408 -0.10628454 -0.61689395 0.69225013\n\t\t -0.10335354 -0.81324095 0.6911931 -0.10348855 -0.60423595 0.69310111 -0.068857849 -0.57958394 0.69954711\n\t\t -0.079170637 -0.52060992 0.6958791 -0.11475855 -0.54283196 0.68906212 -0.15252654 -0.46637297 0.60881114\n\t\t -0.13000852 -0.56359893 0.68364114 -0.10020295 -0.43914795 0.61966002 -0.037765544 -0.50873893 0.70017713\n\t\t -0.002481516 -0.50719893 0.70130801 -0.15015055 -0.47103995 0.56906909 -0.13285954 -0.39686894 0.5781011\n\t\t -0.18151055 -0.47488397 0.55931509 -0.12171955 -0.32240695 0.5928641 -0.12379453 -0.32594493 0.63241398\n\t\t -0.16911756 -0.35078195 0.5847581 -0.15946555 -0.41497993 0.61223209 -0.16384254 -0.33421594 0.628654\n\t\t -0.15891555 -0.32227993 0.59109402 -0.15640855 -0.32583994 0.63086611 -0.16742355 -0.33217695 0.58864909\n\t\t -0.11143955 -0.33230594 0.59105396 -0.10669455 -0.34600294 0.58822298;\n\tsetAttr \".vt[3486:3651]\" -0.11044955 -0.34706795 0.62837714 -0.13322555 -0.79723096 0.67593211\n\t\t -0.10654453 -0.81324095 0.67392009 -0.12462455 -0.79723895 0.65923011 -0.10654353 -0.81324095 0.69033509\n\t\t -0.15281755 -0.75532293 0.59469813 -0.15282355 -0.75532293 0.58532411 -0.16837555 -0.75532293 0.58524811\n\t\t -0.16837558 -0.75532293 0.4683001 -0.15297258 -0.75532293 0.47464311 -0.16293155 -0.41487494 0.5718801\n\t\t -0.0024815225 -0.36571294 0.62640297 -0.050692651 -0.36510393 0.58557612 -0.0024815262 -0.36164093 0.58649302\n\t\t -0.050986148 -0.36922893 0.62539399 -0.10334755 -0.37604693 0.5824241 -0.10643355 -0.38055095 0.62169898\n\t\t -0.13340054 -0.63391393 0.67981112 -0.17863055 -0.49818498 0.59474611 -0.13364355 -0.57722497 0.68178409\n\t\t -0.18494254 -0.52408195 0.5853771 -0.16837555 -0.75532293 0.59453309 -0.18451855 -0.53000993 0.5946241\n\t\t -0.18536758 -0.51815295 0.47351909 -0.17863055 -0.49818498 0.58545911 -0.17863055 -0.49818498 0.47478509\n\t\t -0.086891353 -0.59855992 0.70674109 -0.093104132 -0.59087092 0.69546008 -0.065285549 -0.59097093 0.71018308\n\t\t -0.098402537 -0.60596097 0.70432514 -0.035078034 -0.57347995 0.70303708 -0.0024815151 -0.58627594 0.71425712\n\t\t -0.084463932 -0.60464096 0.70715612 -0.064063638 -0.59779495 0.71033812 -0.096015535 -0.61130792 0.70478308\n\t\t -0.034625433 -0.58681995 0.71324712 -0.10093315 -0.61577296 0.70042813 -0.10340655 -0.61115593 0.70011508\n\t\t -0.0024815151 -0.59334093 0.71425408 -0.064063638 -0.59779495 0.68992013 -0.084464148 -0.60464096 0.6867311\n\t\t -0.096039034 -0.61135292 0.6843971 -0.034476843 -0.59386492 0.69283909 -0.034476843 -0.59386492 0.71325713\n\t\t -0.10148455 -0.61687297 0.68317109 -0.10309555 -0.61996496 0.68275714 -0.10309555 -0.61996496 0.6929931\n\t\t -0.0024815169 -0.59334093 0.69383609 -0.10335354 -0.81324095 0.68095613 -0.17940955 -0.47546798 0.59968609\n\t\t -0.12578356 -0.45674893 0.54415011 -0.15015055 -0.47103995 0.53834009 -0.12578355 -0.45674893 0.57487911\n\t\t -0.17863055 -0.49818498 0.52691209 -0.17863055 -0.49818498 0.55764109 0.15450245 -0.41497993 0.61223197\n\t\t 0.095239848 -0.43914795 0.61966002 0.10548645 -0.34706795 0.62837714 0.15887944 -0.33421594 0.628654\n\t\t 0.10980947 -0.33432394 0.63095409 0.04385145 -0.42581093 0.62495899 0.046023048 -0.36922893 0.62539399\n\t\t -0.0024815225 -0.42135793 0.626284 0.10126045 -0.61224496 0.69235396 0.12868045 -0.57722497 0.68178409\n\t\t 0.098390467 -0.81324095 0.6911931 0.088141061 -0.59087092 0.69545996 0.063894853 -0.57958394 0.69954711\n\t\t 0.032802459 -0.50873893 0.70017713 -0.002481516 -0.57268095 0.70408612 0.10979545 -0.54283196 0.689062\n\t\t 0.14756344 -0.46637297 0.60881102 0.12504548 -0.56359893 0.68364114 0.074207649 -0.52060992 0.69587898\n\t\t 0.12789644 -0.39686894 0.5781011 0.14518745 -0.47103995 0.56906909 0.17654745 -0.47488397 0.55931497\n\t\t 0.15144545 -0.32583994 0.63086611 0.11883146 -0.32594493 0.63241398 0.16246045 -0.33217695 0.58864909\n\t\t 0.16028945 -0.35130695 0.62496102 0.16415446 -0.35078195 0.5847581 0.15796944 -0.41487494 0.57187998\n\t\t 0.15395245 -0.32227993 0.59109402 0.10647645 -0.33230594 0.59105396 0.11675645 -0.32240695 0.5928641\n\t\t 0.10173145 -0.34600294 0.58822298 0.098384447 -0.37604693 0.5824241 0.10147045 -0.38055095 0.62169898\n\t\t 0.10158046 -0.81324095 0.69033509 0.11966145 -0.79723895 0.65923011 0.10158146 -0.81324095 0.67392009\n\t\t 0.12826347 -0.79723096 0.67593211 0.14785445 -0.75532293 0.59469813 0.14786045 -0.75532293 0.58532411\n\t\t 0.14800942 -0.75532293 0.47464311 0.045729551 -0.36510393 0.58557612 0.17955545 -0.53000993 0.5946241\n\t\t 0.12843744 -0.63391393 0.679811 0.17998046 -0.52408195 0.58537698 0.16341345 -0.75532293 0.59453309\n\t\t 0.16341345 -0.75532293 0.58524811 0.16341345 -0.75532293 0.4683001 0.18040442 -0.51815295 0.47351897\n\t\t 0.17366745 -0.49818498 0.58545899 0.17366745 -0.49818498 0.47478497 0.081928253 -0.59855992 0.70674098\n\t\t 0.060322568 -0.59097093 0.71018308 0.09852545 -0.60423595 0.69310111 0.030115057 -0.57347995 0.70303708\n\t\t 0.098443449 -0.61115593 0.70011497 0.059100557 -0.59779495 0.710338 0.093439467 -0.60596097 0.70432514\n\t\t 0.02966236 -0.58681995 0.71324712 0.098132446 -0.61996496 0.6929931 0.10132147 -0.61689395 0.69225001\n\t\t 0.079501048 -0.60464096 0.68673098 0.059100557 -0.59779495 0.68992013 0.079500861 -0.60464096 0.70715612\n\t\t 0.091075964 -0.61135292 0.68439698 0.091052547 -0.61130792 0.70478296 0.029513862 -0.59386492 0.71325713\n\t\t 0.029513858 -0.59386492 0.69283909 0.096521452 -0.61687297 0.68317109 0.09597005 -0.61577296 0.70042801\n\t\t 0.098132446 -0.61996496 0.68275702 0.098390467 -0.81324095 0.68095613 0.17444645 -0.47546798 0.59968609\n\t\t 0.17366745 -0.49818498 0.59474599 0.17151745 -0.49255794 0.59880012 0.17366745 -0.49818498 0.55764109\n\t\t 0.12082045 -0.45674893 0.54414999 0.12082045 -0.45674893 0.57487911 0.14518745 -0.47103995 0.53833997\n\t\t 0.17366745 -0.49818498 0.52691197 -0.33563963 -0.08591713 -0.37924188 -0.34182063 -0.12028404 -0.49997196\n\t\t -0.3356387 -0.085914925 -0.4999789 -0.34182063 -0.12028603 -0.37924188 -0.3172397 -0.056234434 -0.49998894\n\t\t -0.31724063 -0.056236222 -0.37924194 -0.28856763 -0.036304221 -0.37924194 -0.25457063 -0.028326437 -0.37924194\n\t\t -0.22020064 -0.034507737 -0.37924194 -0.22019964 -0.034507826 -0.50001395 -0.19051965 -0.052905932 -0.50001794\n\t\t -0.19051965 -0.052906334 -0.37924194 -0.17058764 -0.081579939 -0.37924194 -0.17058764 -0.081578732 -0.50001794\n\t\t -0.16260964 -0.11557702 -0.37924194 -0.16879164 -0.14994603 -0.37924194 -0.16879064 -0.14994505 -0.50000596\n\t\t -0.18718964 -0.17962703 -0.37924194 -0.21586365 -0.19955903 -0.37924188 -0.24986064 -0.20753703 -0.37924188\n\t\t -0.28423071 -0.20135602 -0.37924188 -0.2842297 -0.20135503 -0.49997094 -0.31391165 -0.18295603 -0.49996796\n\t\t -0.31391165 -0.18295702 -0.37924188 -0.33384269 -0.15428403 -0.37924188 -0.29683071 -0.07560204 -0.51016998\n\t\t -0.31039563 -0.062729225 -0.51016891 -0.30945364 -0.095966235 -0.51016092 -0.3323887 -0.12003703 -0.51015294\n\t\t -0.31369463 -0.11954704 -0.51015389 -0.32525069 -0.15045604 -0.51014888;\n\tsetAttr \".vt[3652:3817]\" -0.30822068 -0.14287305 -0.51014996 -0.29454571 -0.16254604 -0.51014996\n\t\t -0.27418071 -0.17517003 -0.51015294 -0.25010765 -0.19810504 -0.5101589 -0.25059968 -0.17941102 -0.5101589\n\t\t -0.27715671 -0.061926529 -0.51017892 -0.28473964 -0.044895828 -0.51017892 -0.25383064 -0.05645293 -0.51018798\n\t\t -0.25432065 -0.037758425 -0.51018798 -0.23024964 -0.06069383 -0.51019394 -0.22356965 -0.043289334 -0.51019496\n\t\t -0.20988564 -0.07331723 -0.51019794 -0.19621064 -0.09299054 -0.51019692 -0.17918064 -0.085405827 -0.51019794\n\t\t -0.19073664 -0.11631604 -0.51019299 -0.17204164 -0.11582404 -0.51019394 -0.19497764 -0.13989705 -0.51018596\n\t\t -0.17757264 -0.14657503 -0.51018691 -0.20760064 -0.16026205 -0.51017797 -0.19403364 -0.17313203 -0.51017797\n\t\t -0.22727464 -0.17393702 -0.51016796 -0.32685769 -0.089285538 -0.51015997 -0.33384371 -0.15428203 -0.49996796\n\t\t -0.30741769 -0.17611203 -0.51014888 -0.28086063 -0.19257402 -0.51015198 -0.24985965 -0.20753703 -0.49997789\n\t\t -0.21586265 -0.19955903 -0.49998689 -0.2885657 -0.036303237 -0.49999794 -0.25456765 -0.028326124 -0.50000799\n\t\t -0.19701365 -0.059750825 -0.51019895 -0.16260964 -0.11557504 -0.50001293 -0.18718864 -0.17962605 -0.49999696\n\t\t -0.21968964 -0.19096604 -0.51016796 -0.16899161 -0.30294299 -0.19178456 -0.17278364 -0.328969 -0.28619093\n\t\t -0.16815861 -0.30326003 -0.28619653 -0.17367664 -0.32899401 -0.19178435 -0.15439564 -0.28105903 -0.28620315\n\t\t -0.15504561 -0.28044501 -0.19178456 -0.13331161 -0.26533601 -0.19178456 -0.10751662 -0.26018304 -0.28621763\n\t\t -0.10754163 -0.259289 -0.19178435 -0.081489928 -0.26397499 -0.19178456 -0.058992017 -0.27792099 -0.19178456\n\t\t -0.043883719 -0.29965499 -0.19178456 -0.044697832 -0.300017 -0.28622514 -0.038730133 -0.32544702 -0.28622222\n\t\t -0.037836619 -0.325425 -0.19178456 -0.042522017 -0.35147601 -0.19178435 -0.057115432 -0.37335801 -0.28620982\n\t\t -0.056467917 -0.37397403 -0.19178456 -0.078202307 -0.38908201 -0.19178456 -0.10397162 -0.39513004 -0.19178456\n\t\t -0.13002361 -0.39044404 -0.19178434 -0.15252164 -0.37649804 -0.19178455 -0.16762961 -0.35476404 -0.19178455\n\t\t -0.16233461 -0.30549604 -0.29098994 -0.14022861 -0.29450303 -0.29098994 -0.14985661 -0.285366 -0.29098994\n\t\t -0.14998262 -0.310238 -0.29098994 -0.16652761 -0.32880503 -0.29098994 -0.15325861 -0.32845801 -0.29098994\n\t\t -0.16111661 -0.35186303 -0.29098994 -0.14902964 -0.34648103 -0.29098994 -0.14759964 -0.37131 -0.29098994\n\t\t -0.13846365 -0.36168104 -0.29098994 -0.12746862 -0.38378799 -0.29098994 -0.12272862 -0.37143499 -0.29098994\n\t\t -0.10415962 -0.38798004 -0.29098994 -0.10450862 -0.37471199 -0.29098994 -0.081102021 -0.38256902 -0.29098994\n\t\t -0.12502763 -0.28393704 -0.29098994 -0.13040961 -0.27184904 -0.29098994 -0.10700463 -0.27970701 -0.29098994\n\t\t -0.10735262 -0.26643902 -0.29098994 -0.088784821 -0.28298402 -0.29098994 -0.084043525 -0.27063102 -0.29098994\n\t\t -0.073050126 -0.29273802 -0.29098994 -0.063914329 -0.28310901 -0.29098994 -0.062483624 -0.30793804 -0.29098994\n\t\t -0.050396632 -0.30255502 -0.29098994 -0.058254432 -0.32596099 -0.29098994 -0.044985931 -0.32561201 -0.29098994\n\t\t -0.061531331 -0.344181 -0.29098994 -0.049177825 -0.348921 -0.29098994 -0.071284927 -0.35991603 -0.29098994\n\t\t -0.061655533 -0.36905104 -0.29098994 -0.086485527 -0.37048304 -0.29098994 -0.043353423 -0.351156 -0.28621686\n\t\t -0.078563824 -0.38826799 -0.28620231 -0.059607033 -0.27856904 -0.28622574 -0.081808127 -0.26480702 -0.28622323\n\t\t -0.13294664 -0.26615003 -0.28621101 -0.16681564 -0.35440004 -0.28618783 -0.15190664 -0.37584901 -0.28618762\n\t\t -0.12970461 -0.38961202 -0.28619033 -0.10399462 -0.39423603 -0.28619531 -0.24097759 -0.46938896 0.13317311\n\t\t -0.26800463 -0.47498697 0.13317311 -0.24097762 -0.46938902 -0.0089409053 -0.29107457 -0.49013996 0.13317311\n\t\t -0.30622765 -0.51320893 0.13317311 -0.31182465 -0.54023594 0.13317311 -0.30622765 -0.56726295 0.13317311\n\t\t -0.29107365 -0.59033293 0.13317311 -0.26800463 -0.60548592 0.13317311 -0.24097759 -0.61108392 0.13317311\n\t\t -0.24097762 -0.61108398 -0.0089408904 -0.2139506 -0.60548598 -0.0089408904 -0.21395057 -0.60548592 0.13317311\n\t\t -0.19088158 -0.59033293 0.13317311 -0.1757286 -0.56726396 0.13317311 -0.17013058 -0.54023695 0.13317311\n\t\t -0.17013061 -0.540236 -0.0089409053 -0.17572761 -0.51320899 -0.0089409053 -0.17572758 -0.51320893 0.13317311\n\t\t -0.19088158 -0.49013996 0.13317311 -0.21395057 -0.47498697 0.13317311 -0.24097762 -0.49240899 -0.1043878\n\t\t -0.25922263 -0.49618804 -0.1043878 -0.28304163 -0.49817199 -0.1043878 -0.27479663 -0.50641698 -0.1043876\n\t\t -0.28502563 -0.52199101 -0.1043878 -0.30046564 -0.540236 -0.1043878 -0.28880465 -0.540236 -0.1043878\n\t\t -0.28502563 -0.55848199 -0.1043878 -0.28304163 -0.58230102 -0.10438779 -0.27479663 -0.57405502 -0.10438779\n\t\t -0.25922263 -0.58428502 -0.1043878 -0.24097762 -0.588063 -0.1043878 -0.21828361 -0.59502399 -0.1043878\n\t\t -0.22273161 -0.58428502 -0.1043878 -0.20715861 -0.57405502 -0.1043878 -0.19692861 -0.55848199 -0.1043878\n\t\t -0.19315061 -0.540236 -0.1043878 -0.19692861 -0.52199101 -0.1043878 -0.20715861 -0.50641698 -0.1043876\n\t\t -0.21828361 -0.485448 -0.1043878 -0.22273161 -0.49618804 -0.1043878 -0.26800463 -0.47498703 -0.088372901\n\t\t -0.24097762 -0.46938902 -0.076023906 -0.26800463 -0.47498602 -0.076024905 -0.29107365 -0.49014002 -0.076023899\n\t\t -0.30622765 -0.56726301 -0.088373087 -0.30622765 -0.56726301 -0.07602489 -0.26800463 -0.60548598 -0.076023892\n\t\t -0.19088061 -0.59033298 -0.088372894 -0.17572761 -0.56726301 -0.088373102 -0.17013061 -0.540236 -0.076024905\n\t\t -0.17572761 -0.51320899 -0.088373102 -0.19088061 -0.49014002 -0.076023906 -0.19088061 -0.49014002 -0.088372707\n\t\t -0.2139506 -0.47498602 -0.076024905 -0.27166963 -0.46613902 -0.070439905 -0.29786664 -0.483347 -0.070439897\n\t\t -0.31507465 -0.50954401 -0.070439897 -0.31507465 -0.50954401 -0.051405899 -0.32143164 -0.540236 -0.051405892\n\t\t -0.31507465 -0.57092798 -0.07043989 -0.31507465 -0.57092798 -0.051405892 -0.27166963 -0.61433297 -0.051405892\n\t\t -0.24097762 -0.62068999 -0.07043989 -0.1840876 -0.59712499 -0.070439897 -0.16688061 -0.57092798 -0.070439905\n\t\t -0.16688061 -0.57092899 -0.051405907 -0.16688061 -0.50954401 -0.070439905;\n\tsetAttr \".vt[3818:3983]\" -0.2102856 -0.46613902 -0.070439905 -0.24097762 -0.46938902 -0.045821905\n\t\t -0.30622765 -0.51320899 -0.045821898 -0.30622765 -0.51320899 -0.018963888 -0.31182465 -0.540236 -0.04582189\n\t\t -0.30622765 -0.56726301 -0.04582189 -0.30622765 -0.56726301 -0.018963888 -0.29107365 -0.59033298 -0.018963888\n\t\t -0.26800463 -0.60548598 -0.018963888 -0.2139506 -0.60548598 -0.045821898 -0.17572761 -0.56726402 -0.018963903\n\t\t -0.17013061 -0.540236 -0.018963903 -0.17572761 -0.51320899 -0.018963903 -0.19088061 -0.49014002 -0.045821905\n\t\t -0.24097762 -0.46389204 -0.012080908 -0.24097762 -0.46389204 -0.015823901 -0.29496163 -0.48625302 -0.012080893\n\t\t -0.31129065 -0.51111197 -0.015823886 -0.31129065 -0.51111197 -0.012080893 -0.31732163 -0.540236 -0.012080893\n\t\t -0.31732163 -0.540236 -0.015823886 -0.21185361 -0.61054897 -0.012080893 -0.18699361 -0.59421998 -0.012080893\n\t\t -0.17066461 -0.51111197 -0.015823901 -0.17066461 -0.51111197 -0.012080908 -0.18699361 -0.48625302 -0.012080923\n\t\t -0.18699361 -0.48625302 -0.015823916 -0.24097762 -0.45978299 -0.070439905 -0.30622765 -0.51320899 -0.076024897\n\t\t -0.32143164 -0.540236 -0.07043989 -0.31182465 -0.540236 -0.07602489 -0.29786664 -0.59712499 -0.07043989\n\t\t -0.29107365 -0.59033298 -0.07602489 -0.27166963 -0.61433297 -0.07043989 -0.24097762 -0.61108297 -0.076023892\n\t\t -0.2139506 -0.60548598 -0.076023899 -0.19088061 -0.59033298 -0.076024897 -0.2102856 -0.61433297 -0.070439897\n\t\t -0.17572761 -0.56726301 -0.076024905 -0.16052361 -0.540236 -0.070439905 -0.17572761 -0.51320899 -0.076024905\n\t\t -0.1840886 -0.483347 -0.070439912 -0.29107365 -0.49014002 -0.045821905 -0.27166963 -0.46613902 -0.051405907\n\t\t -0.26800463 -0.47498602 -0.045821905 -0.29786664 -0.483347 -0.051405907 -0.24097762 -0.45978299 -0.051405907\n\t\t -0.2102856 -0.46613902 -0.051405907 -0.2139506 -0.47498602 -0.045821905 -0.1840886 -0.483347 -0.051405907\n\t\t -0.16688061 -0.50954401 -0.051405907 -0.17572761 -0.51320899 -0.045821905 -0.16052361 -0.54023701 -0.051405907\n\t\t -0.17013061 -0.540236 -0.045821905 -0.17572761 -0.56726301 -0.045821905 -0.1840886 -0.59712601 -0.051405907\n\t\t -0.19088061 -0.59033298 -0.045821905 -0.24097762 -0.62068999 -0.051405892 -0.24097762 -0.61108297 -0.04582189\n\t\t -0.2102856 -0.61433297 -0.051405899 -0.26800463 -0.60548598 -0.04582189 -0.29786664 -0.59712499 -0.051405892\n\t\t -0.29107365 -0.59033298 -0.04582189 -0.24097762 -0.46938902 -0.018963903 -0.27010164 -0.46992403 -0.015823901\n\t\t -0.26800463 -0.47498602 -0.018963903 -0.29496163 -0.48625302 -0.015823886 -0.29107365 -0.49014002 -0.018963888\n\t\t -0.31182465 -0.540236 -0.018963888 -0.31129065 -0.56936002 -0.015823886 -0.29496163 -0.59421998 -0.015823886\n\t\t -0.27010164 -0.61054897 -0.015823886 -0.24097762 -0.61658102 -0.015823886 -0.24097762 -0.61108297 -0.018963888\n\t\t -0.2139506 -0.60548598 -0.018963888 -0.18699361 -0.59421998 -0.015823886 -0.19088161 -0.59033298 -0.018963888\n\t\t -0.21185361 -0.61054897 -0.015823886 -0.17066461 -0.56936097 -0.015823901 -0.16463362 -0.540236 -0.015823901\n\t\t -0.19088061 -0.49014002 -0.018963903 -0.21185361 -0.46992403 -0.015823901 -0.2139506 -0.47498602 -0.018963903\n\t\t -0.29107365 -0.49014002 -0.0089408904 -0.27010164 -0.46992403 -0.012080908 -0.26800463 -0.47498602 -0.0089409053\n\t\t -0.21185361 -0.46992403 -0.012080908 -0.2139506 -0.47498602 -0.0089409053 -0.19088061 -0.49014002 -0.0089409053\n\t\t -0.16463362 -0.54023701 -0.012080908 -0.17066561 -0.56936097 -0.012080908 -0.17572761 -0.56726402 -0.0089409053\n\t\t -0.19088161 -0.59033298 -0.0089408904 -0.24097762 -0.61658001 -0.012080893 -0.27010164 -0.61054897 -0.012080893\n\t\t -0.26800463 -0.60548598 -0.0089408904 -0.29496163 -0.59421998 -0.012080893 -0.29107365 -0.59033298 -0.0089408904\n\t\t -0.31129065 -0.56936002 -0.012080893 -0.30622765 -0.56726301 -0.0089408904 -0.31182465 -0.540236 -0.0089408904\n\t\t -0.30622765 -0.51320899 -0.0089408904 -0.24097762 -0.46938902 -0.088372707 -0.26367164 -0.485448 -0.1043878\n\t\t -0.24097762 -0.480748 -0.1043878 -0.29107365 -0.49014002 -0.088372894 -0.29576564 -0.517542 -0.1043878\n\t\t -0.30622765 -0.51320899 -0.088373095 -0.31182465 -0.540236 -0.088373095 -0.29576564 -0.56292999 -0.10438779\n\t\t -0.29107365 -0.59033298 -0.088373087 -0.26367164 -0.59502399 -0.10438779 -0.26800463 -0.60548598 -0.088372886\n\t\t -0.24097762 -0.61108297 -0.088372692 -0.24097762 -0.59972399 -0.1043878 -0.2139506 -0.60548598 -0.0883727\n\t\t -0.19891261 -0.58230102 -0.1043878 -0.18618961 -0.56292999 -0.1043878 -0.17013061 -0.540236 -0.088373102\n\t\t -0.18148962 -0.540236 -0.1043878 -0.18618961 -0.517542 -0.1043878 -0.19891261 -0.49817199 -0.1043878\n\t\t -0.2139506 -0.47498703 -0.088372707 -0.43959865 -0.44303399 -0.01550889 -0.43959865 -0.44303399 -0.20162028\n\t\t -0.47434565 -0.45009601 -0.01550889 -0.50390959 -0.46967202 -0.20162028 -0.50390959 -0.46967202 -0.01550889\n\t\t -0.5234856 -0.49923599 -0.015508875 -0.53054756 -0.53398299 -0.015508875 -0.5234856 -0.56873 -0.015508875\n\t\t -0.50390959 -0.59829301 -0.015508875 -0.47434565 -0.61786902 -0.20162028 -0.47434565 -0.61786902 -0.015508875\n\t\t -0.43959865 -0.62493199 -0.20162028 -0.43959865 -0.62493199 -0.015508875 -0.40485263 -0.61786997 -0.015508875\n\t\t -0.37528864 -0.59829402 -0.20162028 -0.37528864 -0.59829402 -0.01550889 -0.35571265 -0.56873 -0.20162009\n\t\t -0.35571265 -0.56873101 -0.01550889 -0.34865063 -0.53398401 -0.01550889 -0.35571265 -0.499237 -0.01550889\n\t\t -0.37528864 -0.46967202 -0.01550889 -0.40485165 -0.45009601 -0.01550889 -0.43959865 -0.47479004 -0.32670689\n\t\t -0.4622137 -0.47938603 -0.32670689 -0.43959865 -0.45761603 -0.32670689 -0.4935987 -0.47998303 -0.32670689\n\t\t -0.48145464 -0.492127 -0.32670689 -0.51003557 -0.504807 -0.32670689 -0.4941957 -0.51136798 -0.32670689\n\t\t -0.51596558 -0.53398299 -0.32670689 -0.49879169 -0.53398299 -0.32670689 -0.4941957 -0.55659699 -0.32670689\n\t\t -0.4935987 -0.587982 -0.32670689 -0.48145464 -0.57583803 -0.32670689 -0.46877465 -0.60442001 -0.32670689\n\t\t -0.4622137 -0.588579 -0.32670689 -0.43959865 -0.61035001 -0.32670689 -0.43959865 -0.59317601 -0.32670689\n\t\t -0.41698465 -0.588579 -0.32670689 -0.38559964 -0.587982 -0.32670689 -0.3977437 -0.57583803 -0.32670689\n\t\t -0.36916164 -0.56315899 -0.32670689 -0.38500264 -0.55659699 -0.32670689;\n\tsetAttr \".vt[3984:4149]\" -0.38040563 -0.53398299 -0.32670689 -0.38500264 -0.51136798 -0.32670689\n\t\t -0.38559964 -0.47998303 -0.32670689 -0.3977437 -0.492127 -0.32670689 -0.41042265 -0.46354604 -0.32670689\n\t\t -0.41698465 -0.47938603 -0.32670689 -0.43959865 -0.44303399 -0.28947288 -0.47434565 -0.45009601 -0.3056449\n\t\t -0.43959865 -0.44303399 -0.3056449 -0.50390959 -0.46967202 -0.3056449 -0.5234856 -0.49923599 -0.30564487\n\t\t -0.53054756 -0.53398299 -0.30564487 -0.53054756 -0.53398299 -0.28947288 -0.5234856 -0.56873 -0.30564487\n\t\t -0.50390959 -0.59829301 -0.30564487 -0.47434565 -0.61786902 -0.30564487 -0.43959865 -0.62493199 -0.30564487\n\t\t -0.40485165 -0.61786902 -0.30564487 -0.40485165 -0.61786997 -0.28947288 -0.46877465 -0.46354604 -0.32670689\n\t\t -0.40485165 -0.45009601 -0.3056449 -0.40485165 -0.45009601 -0.28947288 -0.37528864 -0.46967202 -0.28947288\n\t\t -0.37528864 -0.46967202 -0.3056449 -0.35571271 -0.49923599 -0.28947288 -0.35571271 -0.49923599 -0.3056449\n\t\t -0.34864965 -0.53398299 -0.3056449 -0.35571271 -0.56873 -0.3056449 -0.37528864 -0.59829301 -0.28947288\n\t\t -0.37528864 -0.59829301 -0.3056449 -0.41042265 -0.60442001 -0.32670689 -0.36323163 -0.53398299 -0.32670689\n\t\t -0.36916164 -0.504807 -0.32670689 -0.47905764 -0.43872201 -0.28215969 -0.51262957 -0.46095204 -0.25723261\n\t\t -0.5348596 -0.494524 -0.25723255 -0.5348596 -0.57344198 -0.25723255 -0.47905663 -0.62924403 -0.28215969\n\t\t -0.47905764 -0.62924403 -0.25723255 -0.43959865 -0.63726401 -0.28215969 -0.40013969 -0.62924403 -0.28215945\n\t\t -0.36656862 -0.607014 -0.25723279 -0.33631763 -0.53398299 -0.28215951 -0.33631763 -0.53398299 -0.25723261\n\t\t -0.3443377 -0.494524 -0.28215951 -0.34433764 -0.49452502 -0.25723261 -0.36656868 -0.46095204 -0.28215951\n\t\t -0.36656862 -0.46095204 -0.25723279 -0.4001407 -0.43872201 -0.28215969 -0.47434565 -0.45009601 -0.21474639\n\t\t -0.50390959 -0.46967202 -0.24991968 -0.50390959 -0.46967202 -0.21474598 -0.5234856 -0.49923599 -0.24991989\n\t\t -0.5234856 -0.49923599 -0.21474637 -0.53054756 -0.53398299 -0.24991989 -0.53054756 -0.53398299 -0.21474637\n\t\t -0.47434565 -0.61786902 -0.24991968 -0.47434565 -0.61786997 -0.21474637 -0.43959865 -0.62493199 -0.24991968\n\t\t -0.40485165 -0.61786997 -0.24991989 -0.37528864 -0.59829301 -0.24991968 -0.37528864 -0.59829402 -0.21474639\n\t\t -0.35571265 -0.56873 -0.24991968 -0.35571265 -0.56873 -0.214746 -0.34864965 -0.53398299 -0.24991968\n\t\t -0.34864965 -0.53398299 -0.214746 -0.35571265 -0.49923599 -0.24991968 -0.35571265 -0.49923599 -0.21474619\n\t\t -0.37528864 -0.46967202 -0.214746 -0.40485165 -0.45009601 -0.24991989 -0.40485165 -0.45009601 -0.21474639\n\t\t -0.47700965 -0.44366604 -0.21059468 -0.43959865 -0.43606299 -0.21059489 -0.47700965 -0.44366604 -0.2057716\n\t\t -0.50883859 -0.46474302 -0.20577158 -0.52991557 -0.49657202 -0.20577137 -0.52991557 -0.57139301 -0.20577188\n\t\t -0.50883859 -0.60322303 -0.21059467 -0.47700965 -0.6243 -0.20577157 -0.43959865 -0.63190299 -0.21059488\n\t\t -0.34928265 -0.57139403 -0.2057716 -0.34928164 -0.49657202 -0.2057716 -0.37035865 -0.46474302 -0.2057716\n\t\t -0.40218863 -0.44366604 -0.2105947 -0.40218863 -0.44366604 -0.20577189 -0.47434565 -0.45009601 -0.28947288\n\t\t -0.43959865 -0.43070203 -0.28215951 -0.51262957 -0.46095204 -0.28215951 -0.50390959 -0.46967202 -0.28947288\n\t\t -0.5348596 -0.494524 -0.28215945 -0.5234856 -0.49923599 -0.28947288 -0.54287958 -0.53398299 -0.28215969\n\t\t -0.5348596 -0.57344198 -0.28215945 -0.5234856 -0.56873 -0.28947288 -0.51262957 -0.60701299 -0.28215945\n\t\t -0.50390959 -0.59829301 -0.28947288 -0.47434565 -0.61786902 -0.28947288 -0.43959865 -0.62493199 -0.28947288\n\t\t -0.36656764 -0.60701299 -0.28215969 -0.3443377 -0.57344103 -0.28215951 -0.35571271 -0.56873 -0.28947288\n\t\t -0.34864965 -0.53398299 -0.28947288 -0.47905764 -0.43872201 -0.25723279 -0.47434565 -0.45009601 -0.24991968\n\t\t -0.43959865 -0.43070203 -0.25723279 -0.43959865 -0.44303399 -0.24991968 -0.40014064 -0.43872201 -0.25723279\n\t\t -0.37528864 -0.46967202 -0.24991989 -0.34433764 -0.57344198 -0.25723261 -0.43959865 -0.63726401 -0.25723255\n\t\t -0.40014064 -0.62924403 -0.25723255 -0.51262957 -0.60701299 -0.25723255 -0.50390959 -0.59829301 -0.24991968\n\t\t -0.5234856 -0.56873 -0.24991989 -0.54287958 -0.53398299 -0.25723279 -0.43959865 -0.44303399 -0.21474639\n\t\t -0.50883859 -0.46474302 -0.21059468 -0.52991557 -0.49657202 -0.21059488 -0.53751957 -0.53398299 -0.21059488\n\t\t -0.52991557 -0.57139301 -0.21059468 -0.5234856 -0.56873 -0.21474597 -0.50390959 -0.59829301 -0.21474637\n\t\t -0.47700965 -0.6243 -0.21059488 -0.43959865 -0.62493199 -0.21474637 -0.40485165 -0.61786997 -0.21474597\n\t\t -0.37035865 -0.60322303 -0.21059468 -0.40218863 -0.6243 -0.21059468 -0.34928265 -0.57139403 -0.21059468\n\t\t -0.34167865 -0.53398299 -0.21059489 -0.34928164 -0.49657202 -0.2105947 -0.37035865 -0.46474302 -0.2105947\n\t\t -0.47434565 -0.45009601 -0.20162028 -0.43959865 -0.43606299 -0.20577139 -0.40485165 -0.45009601 -0.20162028\n\t\t -0.37528864 -0.46967202 -0.2016203 -0.35571265 -0.49923599 -0.20162028 -0.34167865 -0.53398299 -0.2057716\n\t\t -0.34864965 -0.53398299 -0.20162028 -0.37035865 -0.60322303 -0.20577139 -0.40218863 -0.6243 -0.20577157\n\t\t -0.40485165 -0.61786997 -0.20162007 -0.43959865 -0.63190299 -0.20577137 -0.50883859 -0.60322303 -0.20577157\n\t\t -0.50390959 -0.59829301 -0.20162028 -0.5234856 -0.56873 -0.20162028 -0.53751957 -0.53398299 -0.20577157\n\t\t -0.53054756 -0.53398299 -0.20162028 -0.5234856 -0.49923599 -0.20162028 -0.51003557 -0.56315899 -0.32670689\n\t\t 0.33067635 -0.08591713 -0.379242 0.33685735 -0.12028603 -0.379242 0.3306753 -0.085914925 -0.49997902\n\t\t 0.31227836 -0.056236222 -0.379242 0.28360435 -0.036304221 -0.379242 0.24960735 -0.028326437 -0.379242\n\t\t 0.21523736 -0.034507737 -0.379242 0.18555637 -0.052906334 -0.379242 0.16562437 -0.081579939 -0.379242\n\t\t 0.15764636 -0.11557504 -0.50001299 0.15764736 -0.11557702 -0.379242 0.16382836 -0.14994603 -0.379242\n\t\t 0.16382736 -0.14994505 -0.50000596 0.18222536 -0.17962605 -0.49999702 0.18222636 -0.17962703 -0.379242\n\t\t 0.21090037 -0.19955903 -0.379242 0.24489637 -0.20753703 -0.49997801;\n\tsetAttr \".vt[4150:4315]\" 0.24489737 -0.20753703 -0.379242 0.27926731 -0.20135602 -0.379242\n\t\t 0.30894837 -0.18295702 -0.379242 0.32888031 -0.15428403 -0.379242 0.32888031 -0.15428203 -0.49996796\n\t\t 0.29186732 -0.07560204 -0.51016998 0.30543235 -0.062729225 -0.51016891 0.30449036 -0.095966235 -0.51016092\n\t\t 0.3274253 -0.12003703 -0.51015294 0.30873135 -0.11954704 -0.51015401 0.30325729 -0.14287305 -0.51014996\n\t\t 0.28958231 -0.16254604 -0.51014996 0.26921731 -0.17517003 -0.51015294 0.24563636 -0.17941102 -0.51015902\n\t\t 0.27219331 -0.061926529 -0.51017892 0.27977636 -0.044895828 -0.51017892 0.24886835 -0.05645293 -0.51018798\n\t\t 0.22528636 -0.06069383 -0.51019394 0.20492236 -0.07331723 -0.510198 0.19124736 -0.09299054 -0.51019692\n\t\t 0.17421736 -0.085405827 -0.510198 0.18577336 -0.11631604 -0.51019299 0.19001436 -0.13989705 -0.51018596\n\t\t 0.17260936 -0.14657503 -0.51018691 0.20263736 -0.16026205 -0.51017797 0.22231136 -0.17393702 -0.51016796\n\t\t 0.32189429 -0.089285538 -0.51015997 0.3122763 -0.056234434 -0.49998894 0.33685735 -0.12028404 -0.49997196\n\t\t 0.32028729 -0.15045604 -0.510149 0.30894837 -0.18295603 -0.49996796 0.30245429 -0.17611203 -0.510149\n\t\t 0.27589735 -0.19257402 -0.51015198 0.27926731 -0.20135503 -0.49997094 0.24514537 -0.19810504 -0.51015902\n\t\t 0.21472636 -0.19096604 -0.51016796 0.21089937 -0.19955903 -0.49998701 0.2836023 -0.036303237 -0.49999794\n\t\t 0.24960437 -0.028326124 -0.50000799 0.24935737 -0.037758425 -0.51018798 0.21860637 -0.043289334 -0.51019502\n\t\t 0.21523637 -0.034507826 -0.50001395 0.18555637 -0.052905932 -0.500018 0.19205037 -0.059750825 -0.51019895\n\t\t 0.16562437 -0.081578732 -0.500018 0.16707936 -0.11582404 -0.51019394 0.18907036 -0.17313203 -0.51017797\n\t\t 0.16782036 -0.328969 -0.28619096 0.16402839 -0.30294299 -0.19178459 0.16319539 -0.30326003 -0.28619656\n\t\t 0.16871336 -0.32899401 -0.19178438 0.15008239 -0.28044501 -0.19178459 0.1283484 -0.26533601 -0.19178459\n\t\t 0.10257838 -0.259289 -0.19178438 0.076526679 -0.26397499 -0.19178458 0.076844975 -0.26480702 -0.28622323\n\t\t 0.054643877 -0.27856904 -0.28622574 0.054028783 -0.27792099 -0.19178458 0.038920581 -0.29965499 -0.19178456\n\t\t 0.032873385 -0.325425 -0.19178456 0.037558783 -0.35147601 -0.19178435 0.038390175 -0.351156 -0.28621686\n\t\t 0.051504683 -0.37397403 -0.19178456 0.073239088 -0.38908201 -0.19178456 0.099008374 -0.39513004 -0.19178456\n\t\t 0.12506039 -0.39044404 -0.19178435 0.12474139 -0.38961202 -0.28619033 0.14694336 -0.37584901 -0.28618765\n\t\t 0.14755836 -0.37649804 -0.19178458 0.1626664 -0.35476404 -0.19178458 0.15737139 -0.30549604 -0.29098994\n\t\t 0.1352654 -0.29450303 -0.29098994 0.1450194 -0.310238 -0.29098994 0.14489339 -0.285366 -0.29098994\n\t\t 0.16156439 -0.32880503 -0.29098994 0.14829539 -0.32845801 -0.29098994 0.1561534 -0.35186303 -0.29098994\n\t\t 0.14406636 -0.34648103 -0.29098994 0.14263636 -0.37131 -0.29098994 0.13350037 -0.36168104 -0.29098994\n\t\t 0.12250637 -0.38378799 -0.29098994 0.11776537 -0.37143499 -0.29098994 0.099196374 -0.38798004 -0.29098994\n\t\t 0.099545375 -0.37471199 -0.29098994 0.081522375 -0.37048304 -0.29098994 0.12006438 -0.28393704 -0.29098994\n\t\t 0.12544639 -0.27184904 -0.29098994 0.10204138 -0.27970701 -0.29098994 0.10238937 -0.26643902 -0.29098994\n\t\t 0.083821677 -0.28298402 -0.29098994 0.079080373 -0.27063102 -0.29098994 0.068086974 -0.29273802 -0.29098994\n\t\t 0.058951177 -0.28310901 -0.29098994 0.057520468 -0.30793804 -0.29098994 0.045433369 -0.30255502 -0.29098994\n\t\t 0.053291168 -0.32596099 -0.29098994 0.040022667 -0.32561201 -0.29098994 0.056568068 -0.344181 -0.29098994\n\t\t 0.04421467 -0.348921 -0.29098994 0.066321678 -0.35991603 -0.29098994 0.056692269 -0.36905104 -0.29098994\n\t\t 0.076138876 -0.38256902 -0.29098994 0.052152276 -0.37335801 -0.28620982 0.033766869 -0.32544702 -0.28622225\n\t\t 0.039734676 -0.300017 -0.28622514 0.073600672 -0.38826799 -0.28620231 0.10255338 -0.26018304 -0.28621766\n\t\t 0.12798336 -0.26615003 -0.28621104 0.14943236 -0.28105903 -0.28620315 0.16185236 -0.35440004 -0.28618786\n\t\t 0.099031374 -0.39423603 -0.28619534 0.26304135 -0.47498602 -0.00894095 0.23601443 -0.46938896 0.13317305\n\t\t 0.2360144 -0.46938902 -0.00894095 0.26304135 -0.47498697 0.13317305 0.28611141 -0.49013996 0.13317305\n\t\t 0.30126438 -0.51320893 0.13317305 0.30686137 -0.54023594 0.13317305 0.30126438 -0.56726301 -0.00894095\n\t\t 0.30126438 -0.56726295 0.13317305 0.28611141 -0.59033293 0.13317305 0.26304135 -0.60548598 -0.0089409351\n\t\t 0.26304135 -0.60548592 0.13317305 0.23601443 -0.61108392 0.13317305 0.20898739 -0.60548598 -0.0089409351\n\t\t 0.18591842 -0.59033293 0.13317305 0.20898741 -0.60548592 0.13317305 0.18591839 -0.59033298 -0.0089409351\n\t\t 0.17076439 -0.56726402 -0.0089409351 0.17076539 -0.56726396 0.13317305 0.16516742 -0.54023695 0.13317305\n\t\t 0.16516739 -0.540236 -0.0089409351 0.17076442 -0.51320893 0.13317305 0.18591842 -0.49013996 0.13317305\n\t\t 0.18591839 -0.49014002 -0.00894095 0.20898741 -0.47498697 0.13317305 0.2360144 -0.49240899 -0.10438785\n\t\t 0.25425935 -0.49618804 -0.10438785 0.2360144 -0.480748 -0.10438785 0.27807835 -0.49817199 -0.10438785\n\t\t 0.26983336 -0.50641698 -0.10438765 0.29080236 -0.517542 -0.10438785 0.28006336 -0.52199101 -0.10438785\n\t\t 0.29550236 -0.540236 -0.10438785 0.28384137 -0.540236 -0.10438785 0.28006235 -0.55848199 -0.10438784\n\t\t 0.27807835 -0.58230102 -0.10438784 0.26983336 -0.57405502 -0.10438784 0.25425935 -0.58428502 -0.10438784\n\t\t 0.2360144 -0.59972399 -0.10438783 0.2360144 -0.588063 -0.10438783 0.21332039 -0.59502399 -0.10438783\n\t\t 0.21776839 -0.58428502 -0.10438783 0.20219539 -0.57405502 -0.10438783 0.19196539 -0.55848199 -0.10438783\n\t\t 0.18818739 -0.540236 -0.10438783 0.18122639 -0.517542 -0.10438783 0.19196539 -0.52199101 -0.10438784\n\t\t 0.19395038 -0.49817199 -0.10438784 0.20219539 -0.50641698 -0.10438764 0.21332039 -0.485448 -0.10438784\n\t\t 0.21776839 -0.49618804 -0.10438784 0.26304135 -0.47498703 -0.088372946 0.2360144 -0.46938902 -0.076023951\n\t\t 0.30686137 -0.540236 -0.07602495 0.30126438 -0.56726301 -0.076024942;\n\tsetAttr \".vt[4316:4481]\" 0.28611037 -0.59033298 -0.076024942 0.26304135 -0.60548598 -0.088372931\n\t\t 0.26304135 -0.60548598 -0.076023936 0.2360144 -0.61108297 -0.076023936 0.2360144 -0.61108297 -0.088372737\n\t\t 0.18591739 -0.59033298 -0.076024935 0.16516739 -0.540236 -0.076024935 0.16516739 -0.540236 -0.088373132\n\t\t 0.17076439 -0.51320899 -0.08837314 0.17076439 -0.51320899 -0.076024935 0.2360144 -0.45978299 -0.051405951\n\t\t 0.29290336 -0.483347 -0.051405951 0.29290336 -0.483347 -0.07043995 0.31011137 -0.50954401 -0.07043995\n\t\t 0.31646836 -0.540236 -0.051405951 0.31011137 -0.57092798 -0.051405951 0.2360144 -0.62068999 -0.051405936\n\t\t 0.20532238 -0.61433297 -0.070439935 0.20532238 -0.61433297 -0.051405936 0.17912439 -0.59712499 -0.070439935\n\t\t 0.15556039 -0.540236 -0.070439935 0.17912538 -0.483347 -0.051405944 0.20532238 -0.46613902 -0.051405951\n\t\t 0.2360144 -0.46938902 -0.018963948 0.2360144 -0.46938902 -0.04582195 0.26304135 -0.47498602 -0.018963948\n\t\t 0.30126438 -0.51320899 -0.04582195 0.30126438 -0.51320899 -0.018963948 0.30686137 -0.540236 -0.018963948\n\t\t 0.30686137 -0.540236 -0.04582195 0.30126438 -0.56726301 -0.018963948 0.28611135 -0.59033298 -0.018963948\n\t\t 0.26304135 -0.60548598 -0.045821935 0.26304135 -0.60548598 -0.018963933 0.2360144 -0.61108297 -0.045821935\n\t\t 0.18591839 -0.59033298 -0.045821935 0.17076439 -0.56726402 -0.018963933 0.16516739 -0.540236 -0.045821935\n\t\t 0.20898739 -0.47498602 -0.04582195 0.30632737 -0.56936002 -0.012080953 0.28999835 -0.59421998 -0.012080953\n\t\t 0.28999835 -0.59421998 -0.015823945 0.2360144 -0.61658001 -0.012080938 0.20689039 -0.61054897 -0.012080938\n\t\t 0.18203139 -0.59421998 -0.015823931 0.16570239 -0.56936097 -0.015823931 0.16570239 -0.56936097 -0.012080938\n\t\t 0.16570139 -0.51111197 -0.015823931 0.16570239 -0.51111197 -0.012080938 0.18203039 -0.48625302 -0.015823945\n\t\t 0.20689039 -0.46992403 -0.015823945 0.20689039 -0.46992403 -0.012080953 0.26670635 -0.46613902 -0.07043995\n\t\t 0.2360144 -0.45978299 -0.07043995 0.26304135 -0.47498602 -0.07602495 0.28611135 -0.49014002 -0.076023951\n\t\t 0.30126438 -0.51320899 -0.07602495 0.31646836 -0.540236 -0.07043995 0.31011137 -0.57092798 -0.07043995\n\t\t 0.29290336 -0.59712499 -0.070439942 0.26670635 -0.61433297 -0.070439935 0.2360144 -0.62068999 -0.070439935\n\t\t 0.20898739 -0.60548598 -0.076023936 0.16191739 -0.57092798 -0.070439935 0.17076439 -0.56726301 -0.076024935\n\t\t 0.16191739 -0.50954401 -0.070439935 0.17912538 -0.483347 -0.070439942 0.18591739 -0.49014002 -0.076023944\n\t\t 0.20532238 -0.46613902 -0.07043995 0.20898739 -0.47498602 -0.076024942 0.28611135 -0.49014002 -0.04582195\n\t\t 0.26670635 -0.46613902 -0.051405951 0.26304135 -0.47498602 -0.04582195 0.18591839 -0.49014002 -0.045821942\n\t\t 0.16191739 -0.50954401 -0.051405936 0.17076439 -0.51320899 -0.045821935 0.15556039 -0.54023701 -0.051405936\n\t\t 0.16191739 -0.57092899 -0.051405936 0.17076439 -0.56726301 -0.045821935 0.17912538 -0.59712601 -0.051405936\n\t\t 0.20898739 -0.60548598 -0.045821935 0.26670635 -0.61433297 -0.051405936 0.29290336 -0.59712499 -0.051405944\n\t\t 0.28611037 -0.59033298 -0.045821942 0.30126438 -0.56726301 -0.04582195 0.31011137 -0.50954401 -0.051405951\n\t\t 0.26513937 -0.46992403 -0.015823945 0.2360144 -0.46389204 -0.015823945 0.28999835 -0.48625302 -0.015823945\n\t\t 0.28611135 -0.49014002 -0.018963948 0.30632737 -0.51111197 -0.015823945 0.31235835 -0.540236 -0.015823945\n\t\t 0.30632737 -0.56936002 -0.015823945 0.26513836 -0.61054897 -0.015823931 0.2360144 -0.61658102 -0.015823931\n\t\t 0.2360144 -0.61108297 -0.018963933 0.20689039 -0.61054897 -0.015823931 0.20898739 -0.60548598 -0.018963933\n\t\t 0.18591839 -0.59033298 -0.018963933 0.1596704 -0.540236 -0.015823931 0.16516739 -0.540236 -0.018963933\n\t\t 0.17076439 -0.51320899 -0.018963933 0.18591839 -0.49014002 -0.018963948 0.20898739 -0.47498602 -0.018963948\n\t\t 0.28611135 -0.49014002 -0.00894095 0.26513937 -0.46992403 -0.012080953 0.28999835 -0.48625302 -0.012080953\n\t\t 0.2360144 -0.46389204 -0.012080953 0.20898739 -0.47498602 -0.00894095 0.18203039 -0.48625302 -0.012080953\n\t\t 0.17076439 -0.51320899 -0.0089409351 0.1596704 -0.54023701 -0.012080938 0.18203139 -0.59421998 -0.012080938\n\t\t 0.2360144 -0.61108398 -0.0089409351 0.26513836 -0.61054897 -0.012080938 0.28611135 -0.59033298 -0.00894095\n\t\t 0.31235835 -0.540236 -0.012080953 0.30686137 -0.540236 -0.00894095 0.30632737 -0.51111197 -0.012080953\n\t\t 0.30126438 -0.51320899 -0.00894095 0.25870836 -0.485448 -0.10438785 0.2360144 -0.46938902 -0.088372752\n\t\t 0.28611135 -0.49014002 -0.088372946 0.30126438 -0.51320899 -0.088373147 0.30686137 -0.540236 -0.088373147\n\t\t 0.29080236 -0.56292999 -0.10438784 0.30126438 -0.56726301 -0.08837314 0.28611037 -0.59033298 -0.08837314\n\t\t 0.25870836 -0.59502399 -0.10438783 0.20898739 -0.60548598 -0.088372737 0.18591739 -0.59033298 -0.088372931\n\t\t 0.19395038 -0.58230102 -0.10438783 0.18122639 -0.56292999 -0.10438783 0.17076439 -0.56726301 -0.088373132\n\t\t 0.1765264 -0.540236 -0.10438783 0.18591739 -0.49014002 -0.088372745 0.20898739 -0.47498703 -0.088372745\n\t\t 0.43463537 -0.44303399 -0.015508965 0.46938238 -0.45009601 -0.01550898 0.49894643 -0.46967202 -0.01550898\n\t\t 0.49894643 -0.46967202 -0.20162037 0.51852244 -0.49923599 -0.20162037 0.51852244 -0.49923599 -0.01550898\n\t\t 0.5255844 -0.53398299 -0.015508965 0.5255844 -0.53398299 -0.20162037 0.51852244 -0.56873 -0.015508965\n\t\t 0.49894643 -0.59829301 -0.01550895 0.46938238 -0.61786902 -0.20162036 0.46938238 -0.61786902 -0.01550895\n\t\t 0.43463635 -0.62493199 -0.01550895 0.39988935 -0.61786997 -0.01550895 0.39988837 -0.61786997 -0.20162015\n\t\t 0.37032536 -0.59829402 -0.01550895 0.37032536 -0.59829402 -0.20162034 0.35074937 -0.56873101 -0.01550895\n\t\t 0.34368736 -0.53398401 -0.01550895 0.34368637 -0.53398299 -0.20162034 0.35074937 -0.499237 -0.01550895\n\t\t 0.37032536 -0.46967202 -0.01550895 0.39988837 -0.45009601 -0.20162037 0.39988837 -0.45009601 -0.015508965\n\t\t 0.43463537 -0.47479004 -0.32670695 0.4572503 -0.47938603 -0.32670695 0.47649136 -0.492127 -0.32670695\n\t\t 0.4892323 -0.51136798 -0.32670695 0.4938283 -0.53398299 -0.32670695;\n\tsetAttr \".vt[4482:4647]\" 0.50507241 -0.56315899 -0.32670695 0.4892323 -0.55659699 -0.32670695\n\t\t 0.47649136 -0.57583803 -0.32670695 0.4572503 -0.588579 -0.32670695 0.43463537 -0.61035001 -0.32670695\n\t\t 0.43463537 -0.59317601 -0.32670695 0.41202137 -0.588579 -0.32670695 0.38063636 -0.587982 -0.32670695\n\t\t 0.3927803 -0.57583803 -0.32670695 0.38003936 -0.55659699 -0.32670695 0.37544236 -0.53398299 -0.32670695\n\t\t 0.36419836 -0.504807 -0.32670695 0.38003936 -0.51136798 -0.32670695 0.3927803 -0.492127 -0.32670695\n\t\t 0.40545937 -0.46354604 -0.32670695 0.41202137 -0.47938603 -0.32670695 0.43463537 -0.44303399 -0.28947294\n\t\t 0.46938238 -0.45009601 -0.30564499 0.43463537 -0.44303399 -0.30564499 0.49894643 -0.46967202 -0.30564499\n\t\t 0.51852244 -0.49923599 -0.30564499 0.51852244 -0.49923599 -0.28947294 0.5255844 -0.53398299 -0.30564499\n\t\t 0.5255844 -0.53398299 -0.28947294 0.51852244 -0.56873 -0.30564499 0.49894643 -0.59829301 -0.30564499\n\t\t 0.46938238 -0.61786902 -0.30564496 0.43463537 -0.62493199 -0.30564496 0.43463537 -0.62493199 -0.28947294\n\t\t 0.39988837 -0.61786902 -0.30564496 0.39988837 -0.61786997 -0.28947294 0.50507241 -0.504807 -0.32670695\n\t\t 0.51100242 -0.53398299 -0.32670695 0.4886353 -0.587982 -0.32670695 0.46381137 -0.60442001 -0.32670695\n\t\t 0.40545937 -0.60442001 -0.32670695 0.4886353 -0.47998303 -0.32670695 0.46381137 -0.46354604 -0.32670695\n\t\t 0.43463537 -0.45761603 -0.32670695 0.39988837 -0.45009601 -0.30564499 0.39988837 -0.45009601 -0.28947294\n\t\t 0.37032536 -0.46967202 -0.30564499 0.35074931 -0.49923599 -0.30564496 0.34368637 -0.53398299 -0.28947294\n\t\t 0.34368637 -0.53398299 -0.30564496 0.35074931 -0.56873 -0.28947294 0.35074931 -0.56873 -0.30564496\n\t\t 0.37032536 -0.59829301 -0.30564496 0.36419836 -0.56315899 -0.32670695 0.35826835 -0.53398299 -0.32670695\n\t\t 0.38063636 -0.47998303 -0.32670695 0.47409436 -0.43872201 -0.28215975 0.47409436 -0.43872201 -0.25723284\n\t\t 0.50766641 -0.46095204 -0.28215957 0.52989644 -0.494524 -0.28215957 0.53791642 -0.53398299 -0.25723284\n\t\t 0.52989644 -0.57344198 -0.25723267 0.50766641 -0.60701299 -0.25723267 0.47409436 -0.62924403 -0.28215975\n\t\t 0.43463537 -0.63726401 -0.28215975 0.39517736 -0.62924403 -0.25723267 0.3393743 -0.494524 -0.28215957\n\t\t 0.33937436 -0.49452502 -0.25723267 0.36160529 -0.46095204 -0.28215957 0.36160535 -0.46095204 -0.25723284\n\t\t 0.39517736 -0.43872201 -0.25723284 0.46938238 -0.45009601 -0.24991977 0.46938238 -0.45009601 -0.21474648\n\t\t 0.43463537 -0.44303399 -0.24991977 0.49894643 -0.46967202 -0.24991977 0.51852244 -0.49923599 -0.24991995\n\t\t 0.51852244 -0.49923599 -0.21474648 0.5255844 -0.53398299 -0.24991995 0.5255844 -0.53398299 -0.21474646\n\t\t 0.51852244 -0.56873 -0.24991995 0.49894643 -0.59829301 -0.24991977 0.49894643 -0.59829301 -0.21474645\n\t\t 0.46938238 -0.61786997 -0.21474645 0.43463537 -0.62493199 -0.24991974 0.39988837 -0.61786997 -0.24991995\n\t\t 0.37032536 -0.59829301 -0.24991974 0.39988837 -0.61786997 -0.21474606 0.37032536 -0.59829402 -0.21474645\n\t\t 0.35074937 -0.56873 -0.21474606 0.35074937 -0.49923599 -0.21474627 0.37032536 -0.46967202 -0.24991995\n\t\t 0.37032536 -0.46967202 -0.21474606 0.47204638 -0.44366604 -0.20577167 0.43463537 -0.43606299 -0.21059497\n\t\t 0.50387543 -0.46474302 -0.21059477 0.52495241 -0.49657202 -0.21059498 0.52495241 -0.49657202 -0.20577148\n\t\t 0.53255641 -0.53398299 -0.21059497 0.52495241 -0.57139301 -0.21059477 0.50387543 -0.60322303 -0.21059476\n\t\t 0.50387543 -0.60322303 -0.20577165 0.39722535 -0.6243 -0.21059474 0.36539537 -0.60322303 -0.21059474\n\t\t 0.39722535 -0.6243 -0.20577165 0.34431937 -0.57139403 -0.20577165 0.33671537 -0.53398299 -0.21059495\n\t\t 0.34431937 -0.49657202 -0.21059476 0.34431937 -0.49657202 -0.20577165 0.36539537 -0.46474302 -0.20577165\n\t\t 0.39722535 -0.44366604 -0.21059477 0.39722535 -0.44366604 -0.20577197 0.43463537 -0.43070203 -0.28215957\n\t\t 0.46938238 -0.45009601 -0.28947294 0.49894643 -0.46967202 -0.28947294 0.53791642 -0.53398299 -0.28215975\n\t\t 0.52989644 -0.57344198 -0.28215957 0.51852244 -0.56873 -0.28947294 0.50766641 -0.60701299 -0.28215957\n\t\t 0.49894643 -0.59829301 -0.28947294 0.46938238 -0.61786902 -0.28947294 0.39517629 -0.62924403 -0.28215957\n\t\t 0.36160436 -0.60701299 -0.28215975 0.37032536 -0.59829301 -0.28947294 0.3393743 -0.57344103 -0.28215957\n\t\t 0.33135435 -0.53398299 -0.28215957 0.35074931 -0.49923599 -0.28947294 0.37032536 -0.46967202 -0.28947294\n\t\t 0.3951773 -0.43872201 -0.28215975 0.50766641 -0.46095204 -0.25723267 0.43463537 -0.43070203 -0.25723284\n\t\t 0.39988837 -0.45009601 -0.24991995 0.35074937 -0.49923599 -0.24991974 0.33135435 -0.53398299 -0.25723267\n\t\t 0.34368637 -0.53398299 -0.24991974 0.33937436 -0.57344198 -0.25723267 0.35074937 -0.56873 -0.24991974\n\t\t 0.36160535 -0.607014 -0.25723284 0.43463537 -0.63726401 -0.25723267 0.47409436 -0.62924403 -0.25723267\n\t\t 0.46938238 -0.61786902 -0.24991974 0.52989644 -0.494524 -0.25723267 0.43463537 -0.44303399 -0.21474646\n\t\t 0.47204638 -0.44366604 -0.21059477 0.49894643 -0.46967202 -0.21474607 0.51852244 -0.56873 -0.21474606\n\t\t 0.47204638 -0.6243 -0.21059495 0.43463537 -0.63190299 -0.21059495 0.43463537 -0.62493199 -0.21474645\n\t\t 0.34431937 -0.57139403 -0.21059474 0.34368637 -0.53398299 -0.21474606 0.36539537 -0.46474302 -0.21059476\n\t\t 0.39988837 -0.45009601 -0.21474646 0.50387543 -0.46474302 -0.20577167 0.46938238 -0.45009601 -0.20162037\n\t\t 0.43463537 -0.43606299 -0.20577146 0.43463537 -0.44303399 -0.20162037 0.37032536 -0.46967202 -0.20162036\n\t\t 0.35074937 -0.49923599 -0.20162036 0.33671537 -0.53398299 -0.20577165 0.35074937 -0.56873 -0.20162015\n\t\t 0.36539537 -0.60322303 -0.20577145 0.43463537 -0.63190299 -0.20577145 0.43463537 -0.62493199 -0.20162034\n\t\t 0.47204638 -0.6243 -0.20577165 0.49894643 -0.59829301 -0.20162036 0.52495241 -0.57139301 -0.20577197\n\t\t 0.51852244 -0.56873 -0.20162037 0.53255641 -0.53398299 -0.20577165 -0.5641256 -0.26283297 0.2685191\n\t\t -0.51979059 -0.37552497 0.2508561 -0.53729761 -0.38001797 0.24128512;\n\tsetAttr \".vt[4648:4813]\" -0.51147246 -0.38277796 0.2601001 -0.52936858 -0.38734096 0.2508961\n\t\t -0.41782457 -0.45341396 0.3476311 -0.42944363 -0.46118295 0.3441751 -0.35637158 -0.49284995 0.39646709\n\t\t -0.32731259 -0.52256495 0.41973609 -0.28985158 -0.54098392 0.44269413 -0.28541857 -0.56532794 0.4385401\n\t\t -0.24241558 -0.56430793 0.47176713 -0.23938358 -0.58877593 0.46881908 -0.32177258 -0.54681093 0.41462809\n\t\t -0.31573957 -0.57041395 0.4095161 -0.28048757 -0.58830392 0.43437612 -0.23584858 -0.61095595 0.46585613\n\t\t -0.35993159 -0.52646893 0.3874281 -0.36630365 -0.50169593 0.39390808 -0.42380458 -0.48837793 0.33254313\n\t\t -0.35304663 -0.55105394 0.38093013 -0.41758257 -0.51489592 0.3204841 -0.26839358 -0.62810194 0.42600513\n\t\t -0.22652255 -0.64502597 0.45985913 -0.40251663 -0.56488693 0.29444611 -0.48649859 -0.44617996 0.2681891\n\t\t -0.48754063 -0.41996396 0.2925691 -0.53689158 -0.40553796 0.20268711 -0.55273056 -0.38572198 0.17844212\n\t\t -0.58956259 -0.28242996 0.12995511 -0.58090758 -0.26597196 0.18645912 -0.60078156 -0.29280198 0.060158104\n\t\t -0.57262558 -0.37975097 0.1030851 -0.58260757 -0.20230497 0.24870113 -0.65267158 0.050906017 0.088076085\n\t\t -0.56402057 -0.39737898 0.11769512 -0.55546659 -0.41023898 0.13277212 -0.54288757 -0.42340297 0.15461811\n\t\t -0.48489159 -0.47094995 0.24236012 -0.47913763 -0.51397896 0.18418512 -0.30145964 -0.61473793 0.39927012\n\t\t -0.20522457 -0.65931892 0.45485914 -0.33697259 -0.59937197 0.36785913 -0.46213165 -0.52210695 0.1741761\n\t\t -0.54856861 -0.45763397 0.06120114 -0.56544858 -0.44041997 0.02677311 -0.56287861 -0.42918199 -0.016052887\n\t\t -0.57796359 -0.42369097 -0.00022989511 -0.57584161 -0.41541499 -0.044219889 -0.58943456 -0.403144 -0.026023895\n\t\t -0.46039158 -0.53741497 0.15956211 -0.53322661 -0.45960599 0.04619211 -0.5275656 -0.46888399 0.024235114\n\t\t -0.38397157 -0.57767892 0.2885671 -0.38403559 -0.59763992 0.27962512 -0.31812459 -0.61389291 0.36364514\n\t\t -0.31669363 -0.63581592 0.35728109 -0.28201964 -0.62936497 0.39504009 -0.28095758 -0.64800197 0.38987011\n\t\t -0.24813356 -0.64258194 0.42143512 -0.24759558 -0.65326893 0.41845208 -0.54243958 -0.451186 -0.010665894\n\t\t -0.54982257 -0.44286901 0.011949107 -0.55419457 -0.43659201 -0.039443888 -0.56582057 -0.42194501 -0.068327881\n\t\t -0.56604445 -0.19843397 0.25492311 -0.62526757 0.051189438 0.16906512 -0.62526757 0.051189825 0.15007809\n\t\t -0.56604558 -0.20464697 0.23593512 -0.54614747 -0.27292997 0.24921212 -0.5460946 -0.26208597 0.27659512\n\t\t -0.51202661 -0.38955298 0.2423611 -0.51979059 -0.38200998 0.23239613 -0.47295159 -0.41375896 0.29853413\n\t\t -0.47304663 -0.42435396 0.28722012 -0.41783857 -0.46653694 0.34065908 -0.35637158 -0.50639397 0.39021713\n\t\t -0.31712657 -0.51364493 0.42231113 -0.31712657 -0.52718896 0.4160611 -0.27892059 -0.54576695 0.43919611\n\t\t -0.27892059 -0.53222293 0.44544613 -0.23054057 -0.55574793 0.47474313 -0.64336956 0.051188633 0.16079906\n\t\t -0.62526757 0.051189825 0.14025608 -0.6360386 0.050589338 0.10729408 -0.65647459 0.050196007 0.047501087\n\t\t -0.64430857 0.049212798 0.03053008 -0.6522646 0.047381505 -0.067041919 -0.66025156 0.048777804 -0.015610918\n\t\t -0.66937357 0.043713197 -0.24045733 -0.61638159 -0.315393 -0.091812693 -0.59937757 -0.315393 -0.10498089\n\t\t -0.65135056 0.043713197 -0.25362563 -0.59423757 -0.22582603 -0.40008193 -0.56891072 -0.30210704 -0.49969688\n\t\t -0.63996673 -0.32723504 -0.53874189 -0.56513959 -0.30210704 -0.51005685 -0.58830959 -0.23963805 -0.64569092\n\t\t -0.52051067 -0.22582604 -0.60264587 -0.64373767 -0.32723504 -0.52838087 -0.79447657 -0.22244005 -0.58330488\n\t\t -0.67291057 -0.23963803 -0.41324788 -0.5819276 -0.22503005 -0.65093589 -0.52090758 -0.21302305 -0.61195087\n\t\t -0.67135257 -0.22485504 -0.40584493 -0.68514556 -0.043320328 -0.37581289 -0.60026556 -0.21278404 -0.39392793\n\t\t -0.79074371 -0.22244005 -0.59356087 -0.8947196 0.11486097 -0.43082893 -0.89281958 0.19906093 -0.61464888\n\t\t -0.88689858 0.19949593 -0.63183689 -0.76955956 0.11485894 -0.7746979 -0.8851096 0.10821198 -0.40462288\n\t\t -0.5706147 -0.044678256 -0.69514287 -0.55562568 -0.022287861 -0.71114987 -0.88066959 0.069231465 -0.43206289\n\t\t -0.8480947 -0.063035131 -0.4376789 -0.80349171 -0.18082504 -0.56430793 -0.7854386 -0.18082504 -0.61390793\n\t\t -0.71847272 -0.071093068 -0.77101588 -0.73821455 -0.063034967 -0.7395699 -0.75834459 0.096072838 -0.78368586\n\t\t -0.75958371 0.069231823 -0.7647419 -0.88722056 0.11415796 -0.4674069 -0.8859356 0.17180596 -0.59241688\n\t\t -0.86744958 0.17213194 -0.64389586 -0.78740668 0.11421095 -0.7417559 -0.8919006 0.096072361 -0.41674289\n\t\t -0.77325755 0.17936097 -0.29152891 -0.88779658 0.12686698 -0.41868588 -0.74535167 0.10821293 -0.78860492\n\t\t -0.8086077 0.272807 -0.60373497 -0.58697569 0.17936094 -0.80332899 -0.75645059 0.12686493 -0.7795499\n\t\t -0.68440455 -0.020208925 -0.35164094 -0.8441146 -0.070808038 -0.39324689 -0.57422656 0.16209693 -0.81106192\n\t\t -0.88557673 0.21218394 -0.6119929 -0.87964457 0.21260394 -0.62921286 -0.68710661 0.18284599 -0.24780472\n\t\t -0.74480855 0.058669463 -0.26773131 -0.6641196 0.079249814 -0.23836462 -0.4677147 0.072769657 -0.77346003\n\t\t -0.68709558 0.20165201 -0.26101542 -0.81469667 0.27261996 -0.58623588 -0.62452972 0.32093495 -0.51651692\n\t\t -0.61832869 0.32158995 -0.53401196 -0.50136358 0.20164894 -0.77132499 -0.49287969 0.18284495 -0.78145599\n\t\t -0.76845556 0.16209696 -0.27741203 -0.70561057 -0.054028556 -0.78180689 -0.70620257 -0.070845261 -0.77169687\n\t\t -0.69503957 -0.058301553 -0.77728188 -0.54539758 0.040244356 -0.79345798 -0.85317957 -0.07109274 -0.40091088\n\t\t -0.83913356 -0.058228329 -0.38166589 -0.85026461 -0.054028526 -0.38437384 -0.73638958 0.046938285 -0.27314782\n\t\t -0.4727017 0.059744135 -0.768489 -0.54839557 0.052191451 -0.80282289 -0.66414559 0.066285208 -0.24556842\n\t\t 0.50650954 -0.38277796 0.26010004 0.48257735 -0.41996396 0.29256898 0.41286141 -0.45341396 0.34763098\n\t\t 0.35140842 -0.49284995 0.39646703 0.23745242 -0.56430793 0.47176713 0.22557741 -0.55574793 0.47474301\n\t\t 0.28045541 -0.56532794 0.43853998 0.28488842 -0.54098392 0.44269413;\n\tsetAttr \".vt[4814:4979]\" 0.23442042 -0.58877593 0.46881908 0.31680942 -0.54681093 0.41462809\n\t\t 0.32234943 -0.52256495 0.41973609 0.31077641 -0.57041395 0.40951598 0.27552542 -0.58830392 0.434376\n\t\t 0.23088644 -0.61095595 0.46585613 0.35496843 -0.52646893 0.38742805 0.36134037 -0.50169593 0.39390802\n\t\t 0.41884142 -0.48837793 0.33254308 0.42448035 -0.46118295 0.34417498 0.34808335 -0.55105394 0.38093007\n\t\t 0.41261941 -0.51489592 0.32048404 0.33200943 -0.59937197 0.36785907 0.26343042 -0.62810194 0.42600501\n\t\t 0.48153543 -0.44617996 0.26818904 0.53192842 -0.40553796 0.20268705 0.52440542 -0.38734096 0.25089598\n\t\t 0.5477674 -0.38572198 0.178442 0.53233445 -0.38001797 0.24128506 0.58459944 -0.28242996 0.12995499\n\t\t 0.57594442 -0.26597196 0.186459 0.5958184 -0.29280198 0.060157984 0.56766242 -0.37975097 0.10308501\n\t\t 0.5844714 -0.403144 -0.026023984 0.55905741 -0.39737898 0.11769503 0.55050343 -0.41023898 0.13277203\n\t\t 0.53792441 -0.42340297 0.15461802 0.47992843 -0.47094995 0.24236 0.57300043 -0.42369097 -0.00022998452\n\t\t 0.29649636 -0.61473793 0.39927006 0.22155945 -0.64502597 0.45985901 0.20026141 -0.65931892 0.45485902\n\t\t 0.31316143 -0.61389291 0.36364508 0.39755437 -0.56488693 0.29444605 0.47417435 -0.51397896 0.18418506\n\t\t 0.54360545 -0.45763397 0.061201021 0.56048542 -0.44041997 0.026773021 0.57087845 -0.41541499 -0.044219986\n\t\t 0.52260244 -0.46888399 0.024235025 0.45716837 -0.52210695 0.17417604 0.52826345 -0.45960599 0.04619202\n\t\t 0.45542842 -0.53741497 0.15956205 0.37900841 -0.57767892 0.28856704 0.37907243 -0.59763992 0.27962506\n\t\t 0.31173036 -0.63581592 0.35728103 0.27705741 -0.62936497 0.39504004 0.27599442 -0.64800197 0.38987005\n\t\t 0.24317046 -0.64258194 0.421435 0.24263242 -0.65326893 0.41845208 0.53747642 -0.451186 -0.010665983\n\t\t 0.54485941 -0.44286901 0.011949018 0.54923141 -0.43659201 -0.039443985 0.55791545 -0.42918199 -0.016052976\n\t\t 0.56085742 -0.42194501 -0.068327978 0.55916244 -0.26283297 0.26851898 0.57764441 -0.20230497 0.24870101\n\t\t 0.6384064 0.051188633 0.16079894 0.62030441 0.051189438 0.169065 0.56108242 -0.20464697 0.235935\n\t\t 0.56108153 -0.19843397 0.25492299 0.54118454 -0.27292997 0.24921206 0.51482743 -0.38200998 0.23239601\n\t\t 0.54113144 -0.26208597 0.276595 0.50706345 -0.38955298 0.24236104 0.51482743 -0.37552497 0.25085598\n\t\t 0.46808335 -0.42435396 0.28722 0.46798843 -0.41375896 0.29853407 0.41287541 -0.46653694 0.34065902\n\t\t 0.35140842 -0.50639397 0.39021707 0.31216341 -0.52718896 0.4160611 0.31216341 -0.51364493 0.42231113\n\t\t 0.27395743 -0.54576695 0.43919599 0.27395743 -0.53222293 0.44544601 0.62030441 0.051189825 0.150078\n\t\t 0.64770842 0.050906017 0.088075995 0.63107544 0.050589338 0.10729399 0.62030441 0.051189825 0.14025599\n\t\t 0.65151143 0.050196007 0.047500998 0.63934541 0.049212798 0.030529961 0.64730144 0.047381505 -0.06704203\n\t\t 0.6552884 0.048777804 -0.015611038 0.59441441 -0.315393 -0.10498099 0.61141843 -0.315393 -0.091812797\n\t\t 0.6463874 0.043713197 -0.25362575 0.66441041 0.043713197 -0.24045742 0.56394732 -0.30210704 -0.49969694\n\t\t 0.56017643 -0.30210704 -0.51005697 0.63877428 -0.32723504 -0.52838099 0.78578031 -0.22244005 -0.59356099\n\t\t 0.5656513 -0.044678256 -0.69514298 0.57696444 -0.22503005 -0.65093601 0.51594442 -0.21302305 -0.61195099\n\t\t 0.58334643 -0.23963805 -0.64569104 0.51554728 -0.22582604 -0.60264599 0.66638941 -0.22485504 -0.40584505\n\t\t 0.5953024 -0.21278404 -0.39392805 0.58927441 -0.22582603 -0.40008205 0.66794741 -0.23963803 -0.413248\n\t\t 0.63500333 -0.32723504 -0.53874201 0.88785642 0.19906093 -0.61464912 0.88193542 0.19949593 -0.63183713\n\t\t 0.7645964 0.11485894 -0.77469814 0.75148743 0.12686493 -0.77955014 0.69007641 -0.058301553 -0.777282\n\t\t 0.55066228 -0.022287861 -0.71114987 0.70123941 -0.070845261 -0.77169687 0.4677383 0.059744135 -0.768489\n\t\t 0.87570643 0.069231465 -0.43206307 0.8431313 -0.063035131 -0.43767908 0.78951341 -0.22244005 -0.583305\n\t\t 0.79852831 -0.18082504 -0.56430805 0.78047544 -0.18082504 -0.61390805 0.73325139 -0.063034967 -0.73957002\n\t\t 0.75462031 0.069231823 -0.76474214 0.8822574 0.11415796 -0.46740708 0.88975644 0.11486097 -0.43082911\n\t\t 0.88097245 0.17180596 -0.59241706 0.86248642 0.17213194 -0.6438961 0.78244328 0.11421095 -0.74175614\n\t\t 0.88693744 0.096072361 -0.41674307 0.84530145 -0.054028526 -0.38437402 0.88061333 0.21218394 -0.61199313\n\t\t 0.80973327 0.27261996 -0.58623606 0.88283342 0.12686698 -0.41868606 0.75338143 0.096072838 -0.7836861\n\t\t 0.71350932 -0.071093068 -0.771016 0.74038827 0.10821293 -0.78860515 0.6801824 -0.043320328 -0.37581301\n\t\t 0.8341704 -0.058228329 -0.381666 0.83915144 -0.070808038 -0.39324701 0.67944139 -0.020208925 -0.35164106\n\t\t 0.65918243 0.066285208 -0.24556854 0.8036443 0.272807 -0.60373509 0.87468141 0.21260394 -0.62921309\n\t\t 0.68214345 0.18284599 -0.24780484 0.7398454 0.058669463 -0.26773143 0.5692634 0.16209693 -0.81106192\n\t\t 0.48791629 0.18284495 -0.78145599 0.54343241 0.052191451 -0.80282289 0.68213242 0.20165201 -0.26101553\n\t\t 0.76829439 0.17936097 -0.29152906 0.61956632 0.32093495 -0.51651704 0.61336529 0.32158995 -0.53401208\n\t\t 0.5820123 0.17936094 -0.80332899 0.4964003 0.20164894 -0.77132499 0.76349241 0.16209696 -0.27741218\n\t\t 0.88014644 0.10821198 -0.40462306 0.84821641 -0.07109274 -0.40091106 0.70064741 -0.054028556 -0.78180689\n\t\t 0.4627513 0.072769657 -0.77346003 0.54043442 0.040244356 -0.79345798 0.73142642 0.046938285 -0.27314794\n\t\t 0.65915644 0.079249814 -0.23836474 -0.7737506 -0.10171506 -0.75673687 -0.75269359 0.10867794 -0.77315891\n\t\t -0.70606172 -0.074124157 -0.76572388 -0.80409873 -0.22051905 -0.59258592 -0.83868259 -0.21691504 -0.6052019\n\t\t -0.72554857 -0.077794567 -0.77304488 -0.78245455 -0.21788704 -0.58450788 -0.78383559 -0.10196606 -0.75019491\n\t\t -0.88555968 -0.10177503 -0.44983289 -0.84026456 -0.074124232 -0.39700589 -0.90044355 0.10500698 -0.42807889\n\t\t -0.85975158 -0.077794626 -0.40432689 -0.88095659 0.10867797 -0.42075789;\n\tsetAttr \".vt[4980:5145]\" -0.9271186 0.07607536 -0.48213089 -0.77218068 0.10500695 -0.78047991\n\t\t -0.89923757 0.19510992 -0.62713289 -0.81887472 0.082856938 -0.76321191 -0.87975168 0.19877996 -0.61981285\n\t\t -0.9251166 0.082857057 -0.47131288 -0.92678368 0.15351595 -0.63720393 -0.93040556 0.14222492 -0.63851786\n\t\t -0.89004856 -0.09119194 -0.48698789 -0.88904661 -0.10205103 -0.46147388 -0.92212456 0.060238376 -0.50443685\n\t\t -0.92538959 0.11656494 -0.63670188 -0.83771056 0.06011413 -0.73653591 -0.82736355 0.07599254 -0.75627989\n\t\t -0.80025357 -0.09107545 -0.73151886 -0.85503858 -0.18317005 -0.61125988 -0.84717256 -0.20972905 -0.60831189\n\t\t 0.72058541 -0.077794567 -0.77304488 0.81391132 0.082856938 -0.76321214 0.74773043 0.10867794 -0.77315915\n\t\t 0.77887243 -0.10196606 -0.75019503 0.82240039 0.07599254 -0.75628012 0.79913533 -0.22051905 -0.59258604\n\t\t 0.76878744 -0.10171506 -0.75673699 0.83371943 -0.21691504 -0.6052019 0.70109832 -0.074124157 -0.76572388\n\t\t 0.8422094 -0.20972905 -0.60831201 0.85478842 -0.077794626 -0.40432706 0.88059628 -0.10177503 -0.44983307\n\t\t 0.77749139 -0.21788704 -0.584508 0.88408345 -0.10205103 -0.461474 0.8353014 -0.074124232 -0.39700606\n\t\t 0.87599343 0.10867797 -0.42075807 0.92215544 0.07607536 -0.48213106 0.92182028 0.15351595 -0.63720405\n\t\t 0.76721728 0.10500695 -0.78048015 0.89427441 0.19510992 -0.62713313 0.9254424 0.14222492 -0.6385181\n\t\t 0.92015344 0.082857057 -0.47131306 0.89548039 0.10500698 -0.42807907 0.87478828 0.19877996 -0.61981308\n\t\t 0.91716141 0.060238376 -0.50443709 0.92042643 0.11656494 -0.63670212 0.8327474 0.06011413 -0.73653615\n\t\t 0.79529041 -0.09107545 -0.73151898 0.85007542 -0.18317005 -0.61125988 0.8850854 -0.09119194 -0.48698801\n\t\t -0.48815858 -0.36091396 0.27701411 -0.48127258 -0.25199196 0.30736411 -0.52192748 -0.25617698 0.2944071\n\t\t -0.36263657 -0.45993596 0.3796801 -0.32955065 -0.48105693 0.4057771 -0.29952157 -0.49684793 0.42553711\n\t\t -0.21362455 -0.54104191 0.4809041 -0.20960654 -0.55574691 0.47473812 -0.35621563 -0.44704598 0.38835812\n\t\t -0.38018358 -0.43459296 0.36993611 -0.45350263 -0.35877597 0.28124312 -0.46495363 -0.37984097 0.29738912\n\t\t -0.43481663 -0.37602398 0.30037311 -0.47060564 -0.38393897 0.29093412 -0.49350265 -0.36464998 0.2695291\n\t\t -0.42422557 -0.41914496 0.33052212 -0.41787764 -0.41475493 0.33458012 -0.38272563 -0.41088593 0.33958614\n\t\t -0.51745749 -0.25357497 0.30249211 -0.58166659 -0.029589474 0.22622311 -0.29354259 -0.49186796 0.42922413\n\t\t -0.20899057 -0.53449595 0.48407912 -0.18165258 -0.52734894 0.47967708 -0.25907257 -0.48436195 0.4282831\n\t\t -0.27421159 -0.47553694 0.41811913 -0.31939963 -0.47879195 0.41240412 -0.34820965 -0.44414198 0.39261711\n\t\t -0.28135657 -0.45727897 0.41622108 -0.32470265 -0.46034998 0.41030711 -0.30709058 -0.44135696 0.39955509\n\t\t -0.37349263 -0.43094897 0.37268311 -0.33435264 -0.42843896 0.38064712 -0.33414358 -0.46260893 0.4044441\n\t\t -0.35219157 -0.43120295 0.3630541 -0.39122957 -0.43360293 0.35486913 -0.39805564 -0.43791997 0.35225213\n\t\t -0.54610848 -0.26857296 0.25703812 -0.43816257 -0.44335398 0.31447309 -0.41843259 -0.46639395 0.34052211\n\t\t -0.44782665 -0.44487596 0.31339711 -0.49610859 -0.40433896 0.26152211 -0.38428259 -0.48905796 0.36874312\n\t\t -0.37534457 -0.48736495 0.36952513 -0.35464859 -0.50757396 0.39167613 -0.34588465 -0.50588292 0.39245713\n\t\t -0.31966963 -0.52595192 0.4145211 -0.59390157 -0.059843376 0.18811512 -0.53536046 -0.26779196 0.25941211\n\t\t -0.5975486 -0.09324678 0.19704404 -0.6066916 -0.054433376 0.18352211 -0.61391258 -0.018641576 0.17151511\n\t\t -0.60875756 0.016838133 0.1628741 -0.61989856 0.016449422 0.16053805 -0.61220556 0.051189944 0.15008208\n\t\t -0.49377063 -0.37552297 0.25085711 -0.52189147 -0.26208496 0.27659512 -0.42433858 -0.43268397 0.32197213\n\t\t -0.40787265 -0.45318693 0.34735209 -0.43674558 -0.43268096 0.3219651 -0.39564258 -0.45318693 0.34735411\n\t\t -0.48359257 -0.39567196 0.2761471 -0.47093865 -0.39568797 0.27617112 -0.36206359 -0.47551495 0.3749941\n\t\t -0.34463257 -0.49403197 0.39792609 -0.33282265 -0.49403393 0.39792609 -0.29814258 -0.51241094 0.4207691\n\t\t -0.22097655 -0.55574691 0.47474009 -0.53382146 -0.26208597 0.27659512 -0.58796459 -0.023472771 0.19366711\n\t\t -0.59978259 -0.023362264 0.19389907 -0.60280061 -0.0069903433 0.18827006 -0.57707858 -0.024255574 0.19204405\n\t\t -0.57987857 -0.012002766 0.18675706 -0.59505856 0.019556433 0.17920512 -0.60716558 0.019556224 0.17920411\n\t\t -0.23054057 -0.56929195 0.4684931 -0.31103864 -0.52425992 0.41530108 -0.22217254 -0.56759793 0.46927214\n\t\t -0.30980557 -0.51240891 0.4207691 -0.37406763 -0.47551495 0.37499309 -0.40920064 -0.46474296 0.34137714\n\t\t -0.48527259 -0.40326598 0.26336712 -0.50824559 -0.38119897 0.23470411 -0.50659555 -0.37552398 0.2508561\n\t\t -0.59338057 -0.049746469 0.20311511 -0.60064656 -0.031905472 0.17836112 -0.60418957 -0.012523666 0.17199612\n\t\t -0.61220556 0.051189944 0.16842005 -0.40937859 -0.40724996 0.31441909 -0.45603359 -0.36781898 0.2790831\n\t\t -0.37433159 -0.24407296 0.47259009 -0.32258558 -0.45912898 0.38326108 -0.28203559 -0.48189795 0.41155213\n\t\t -0.22289059 -0.51350796 0.4499861 -0.19900756 -0.41727394 0.54762113 -0.14017154 -0.46317893 0.57718009\n\t\t -0.15444958 -0.54953897 0.49349213 -0.16211355 -0.36596093 0.61288708 -0.15897255 -0.37578094 0.6084221\n\t\t -0.43230259 -0.20338295 0.42042911 -0.42956859 -0.15674695 0.44429213 -0.45518163 -0.17891896 0.39817113\n\t\t -0.49879158 -0.26051196 0.28473312 -0.48131758 -0.31760296 0.2816031 -0.48605964 -0.14308298 0.35937411\n\t\t -0.51585358 -0.10286796 0.3137871 -0.50642848 -0.083207652 0.33738911 -0.5392186 -0.14333896 0.24342811\n\t\t -0.51954448 -0.20146997 0.26851204 -0.53810346 -0.065261871 0.27115706 -0.52741057 -0.053757071 0.29474711\n\t\t -0.5552116 -0.035917178 0.2378931 -0.57427859 -0.036508471 0.19733104 -0.56409556 -0.020484462 0.22039905\n\t\t -0.55608159 -0.08898057 0.21997306 -0.55168957 -0.018690065 0.24397406 -0.5721516 -0.0018348545 0.18312311\n\t\t -0.56886959 -0.012007877 0.2107901 -0.5614146 -0.001831755 0.20682004;\n\tsetAttr \".vt[5146:5311]\" -0.55801755 0.00055791438 0.17703611 -0.54685056 0.00056216121 0.20068505\n\t\t -0.29552558 -0.30997396 0.50463212 -0.25716758 -0.34698495 0.51968414 -0.30631757 -0.31907594 0.50364411\n\t\t -0.36155358 -0.23843695 0.47676611 -0.38922358 -0.20391196 0.46395212 -0.27773857 -0.30799094 0.49908412\n\t\t -0.34483558 -0.23750396 0.47108412 -0.24029756 -0.34455594 0.51493013 -0.40372258 -0.20621595 0.4580031\n\t\t -0.38592058 -0.15987995 0.460639 -0.37449059 -0.20358196 0.45893013 -0.16525455 -0.35614094 0.61735296\n\t\t -0.16436654 -0.34697494 0.61131597 -0.26769459 -0.35622093 0.52011108 -0.14782555 -0.34458596 0.6003961\n\t\t -0.54743558 -0.0018360019 0.23354706 -0.55628657 -0.012051776 0.23436213 -0.5426966 -0.0085910559 0.2433151\n\t\t -0.53406644 -0.020889267 0.26109704 -0.54332149 -0.030775964 0.26147312 -0.52783561 -0.0062081069 0.23765212\n\t\t -0.53291857 0.00056360662 0.22786304 -0.51858157 -0.018536672 0.25547612 -0.51765758 -0.044274077 0.29491106\n\t\t -0.49611464 -0.074241966 0.33824313 -0.46660063 -0.10628995 0.3845821 -0.47736657 -0.11470196 0.38299012\n\t\t -0.43681258 -0.13382995 0.42449611 -0.44821158 -0.14147195 0.42185509 -0.41706857 -0.15027696 0.44855213\n\t\t -0.41561857 -0.16627495 0.45851511 -0.40178359 -0.16117595 0.46467912 -0.40052557 -0.14859895 0.44391596\n\t\t -0.41964459 -0.13184495 0.41938609 -0.44891858 -0.10414796 0.37924111 -0.47845563 -0.072020948 0.3327961\n\t\t -0.50098562 -0.041979074 0.28936604 -0.5856936 -0.031069174 0.21755305 -0.58558255 -0.03464447 0.1978091\n\t\t -0.56109059 -0.031069174 0.21755305 -0.55663556 -0.029753566 0.22527304 -0.55059558 -0.028655976 0.23173806\n\t\t -0.56863058 0.050705031 0.21115512 -0.55315959 0.057339028 0.20701006 -0.57503855 0.034688935 0.21287206\n\t\t -0.57285458 0.034688935 0.22102112 -0.5733096 0.026048228 0.21240905 -0.57112557 0.026048228 0.22055811\n\t\t -0.56150657 0.013828322 0.2092461 -0.5593226 0.013828427 0.21739504 -0.55315959 0.010249227 0.20701006\n\t\t -0.55097657 0.010249332 0.21515912 -0.5426296 0.055549428 0.2129221 -0.53428358 0.051970318 0.21068606\n\t\t -0.57178861 0.05623503 0.22073504 -0.55957246 0.052192524 0.2541011 -0.5646866 0.025245726 0.25547212\n\t\t -0.57178861 0.013142824 0.22073504 -0.5622046 0.006625697 0.21816704 -0.5517866 0.011890829 0.25201511\n\t\t -0.54266548 0.0099351257 0.24957106 -0.52851957 0.05793722 0.20914105 -0.53354359 0.011890829 0.24712712\n\t\t -0.52442259 0.015802428 0.24468306 -0.52852058 0.01144053 0.20914105 -0.5622046 0.062752232 0.21816704\n\t\t -0.55097657 0.057339028 0.21515912 -0.55097657 0.065159723 0.21515912 -0.5593226 0.055549428 0.21739504\n\t\t -0.5664466 0.050705031 0.21930405 -0.57808357 0.046313122 0.22242212 -0.57112557 0.043329641 0.22055811\n\t\t -0.58040857 0.034688935 0.22304511 -0.57808357 0.023064733 0.22242212 -0.5664466 0.018672928 0.21930405\n\t\t -0.55097657 0.0042182207 0.21515912 -0.5426296 0.013828322 0.2129221 -0.53974861 0.0066255927 0.2121501\n\t\t -0.53428358 0.017407432 0.21068606 -0.53974861 0.062752232 0.2121501 -0.54177159 0.034688935 0.25296611\n\t\t -0.53468847 0.016984925 0.25106812 -0.52467048 0.027355626 0.24838412 -0.52760446 0.020022526 0.24917012\n\t\t -0.52173656 0.034688935 0.24759811 -0.52467048 0.042022124 0.24838412 -0.53468758 0.052392825 0.25106812\n\t\t -0.52760446 0.049355313 0.24917012 -0.55887157 0.042022124 0.25754806 -0.55490059 0.048281416 0.25648406\n\t\t -0.55490059 0.021096423 0.25648406 -0.56150657 0.055549428 0.2092461 -0.5733096 0.043329641 0.21240905\n\t\t -0.60008061 0.051189944 0.16842005 -0.54481357 0.055549428 0.20477304 -0.55159158 0.08358793 0.15507507\n\t\t -0.5371446 0.077453032 0.15120405 -0.53646755 0.051970318 0.20253712 -0.59003657 -0.012076974 0.1899901\n\t\t -0.56361461 -0.012077063 0.1808331 -0.56985259 0.017407432 0.21148312 -0.55315959 0.017407432 0.20701006\n\t\t -0.53646755 0.017407432 0.20253712 -0.53719258 -0.012077063 0.1716761 -0.54885447 0.016984925 0.2548641\n\t\t -0.55957246 0.01718533 0.2541011 -0.54177159 0.015466228 0.25296611 -0.55887246 0.027355626 0.25754806\n\t\t -0.56657559 0.034688935 0.25597811 -0.56033945 0.034688935 0.25794205 -0.5646866 0.044132218 0.25547212\n\t\t -0.5517866 0.057486936 0.25201511 -0.54885447 0.052392825 0.2548641 -0.54266548 0.059442744 0.24957106\n\t\t -0.54177159 0.053911641 0.25296611 -0.53354359 0.057486936 0.24712712 -0.52442259 0.053575441 0.24468306\n\t\t -0.58048558 0.08358784 0.13842908 -0.59196359 0.075703844 0.16593713 -0.5919646 0.075703844 0.13843009\n\t\t -0.58048558 0.08358793 0.16281712 -0.56603861 0.086655334 0.13842809 -0.56603861 0.086655334 0.1589461\n\t\t -0.59750658 0.064321533 0.16755405 -0.59750658 0.064321443 0.13843009 -0.55159158 0.08358784 0.13842809\n\t\t -0.53714556 0.077452943 0.13842705 -0.60008061 0.051189944 0.13843009 0.51692855 -0.26208496 0.276595\n\t\t 0.58073044 -0.031069174 0.21755299 0.51249456 -0.25357497 0.30249205 0.47630942 -0.25199196 0.30736399\n\t\t 0.48853937 -0.36464998 0.26952899 0.46597537 -0.39568797 0.27617106 0.48880735 -0.37552297 0.250857\n\t\t 0.41926241 -0.41914496 0.330522 0.35767341 -0.45993596 0.37968004 0.35710043 -0.47551495 0.37499404\n\t\t 0.32785937 -0.49403393 0.39792603 0.29317942 -0.51241094 0.42076898 0.29455841 -0.49684793 0.42553699\n\t\t 0.35125235 -0.44704598 0.38835806 0.37522042 -0.43459296 0.36993605 0.45999035 -0.37984097 0.29738906\n\t\t 0.44853935 -0.35877597 0.28124306 0.48319542 -0.36091396 0.27701405 0.42985335 -0.37602398 0.30037305\n\t\t 0.46564236 -0.38393897 0.29093406 0.41291437 -0.41475493 0.33458 0.38626641 -0.43360293 0.35486907\n\t\t 0.37776235 -0.41088593 0.33958602 0.34722942 -0.43120295 0.36305404 0.54563242 -0.028655976 0.231738\n\t\t 0.51696455 -0.25617698 0.29440704 0.20866145 -0.54104191 0.48090398 0.28857943 -0.49186796 0.42922401\n\t\t 0.20402741 -0.53449595 0.484079 0.17668942 -0.52734894 0.47967696 0.25410941 -0.48436195 0.42828298\n\t\t 0.31443635 -0.47879195 0.41240412 0.32458737 -0.48105693 0.40577704 0.27639341 -0.45727897 0.41622108\n\t\t 0.34324637 -0.44414198 0.39261705 0.31973937 -0.46034998 0.41030711;\n\tsetAttr \".vt[5312:5477]\" 0.30212742 -0.44135696 0.39955503 0.36852935 -0.43094897 0.37268305\n\t\t 0.32938936 -0.42843896 0.38064706 0.32918042 -0.46260893 0.40444404 0.26924843 -0.47553694 0.41811913\n\t\t 0.39309236 -0.43791997 0.35225207 0.54114556 -0.26857296 0.257038 0.43319941 -0.44335398 0.31447297\n\t\t 0.41346943 -0.46639395 0.34052205 0.44286337 -0.44487596 0.31339699 0.49114543 -0.40433896 0.261522\n\t\t 0.48030943 -0.40326598 0.263367 0.37931943 -0.48905796 0.36874306 0.34968543 -0.50757396 0.39167607\n\t\t 0.34092137 -0.50588292 0.39245707 0.31470636 -0.52595192 0.41452098 0.30607536 -0.52425992 0.41530097\n\t\t 0.22557741 -0.56929195 0.46849298 0.58893842 -0.059843376 0.188115 0.59258544 -0.09324678 0.19704399\n\t\t 0.53039753 -0.26779196 0.25941199 0.60172844 -0.054433376 0.18352199 0.59922642 -0.012523666 0.171996\n\t\t 0.60894942 -0.018641576 0.17151499 0.6037944 0.016838133 0.16287398 0.6149354 0.016449422 0.16053799\n\t\t 0.50163239 -0.37552398 0.25085598 0.41937643 -0.43268397 0.32197201 0.40290937 -0.45318693 0.34735203\n\t\t 0.39067942 -0.45318693 0.34735405 0.47862941 -0.39567196 0.27614704 0.36910436 -0.47551495 0.37499303\n\t\t 0.20464344 -0.55574691 0.474738 0.21601442 -0.55574691 0.47474009 0.58841741 -0.049746469 0.20311499\n\t\t 0.52885854 -0.26208597 0.276595 0.58300143 -0.023472771 0.19366699 0.59481943 -0.023362264 0.19389901\n\t\t 0.59783745 -0.0069903433 0.18827 0.57211542 -0.024255574 0.19204399 0.5900954 0.019556433 0.179205\n\t\t 0.60724241 0.051189944 0.16841993 0.59511745 0.051189944 0.16841993 0.30484241 -0.51240891 0.42076898\n\t\t 0.21720944 -0.56759793 0.46927202 0.33966941 -0.49403197 0.39792603 0.37038141 -0.48736495 0.36952507\n\t\t 0.40423736 -0.46474296 0.34137708 0.43178242 -0.43268096 0.32196498 0.50328243 -0.38119897 0.23470405\n\t\t 0.5956834 -0.031905472 0.178361 0.60220242 0.019556224 0.17920399 0.60724241 0.051189944 0.15008199\n\t\t 0.40441543 -0.40724996 0.31441897 0.45107043 -0.36781898 0.27908304 0.31762242 -0.45912898 0.38326102\n\t\t 0.27707243 -0.48189795 0.41155213 0.26273143 -0.35622093 0.52011096 0.21792743 -0.51350796 0.44998598\n\t\t 0.19404446 -0.41727394 0.54762101 0.14948642 -0.54953897 0.49349201 0.13520844 -0.46317893 0.57718009\n\t\t 0.15715045 -0.36596093 0.61288708 0.15400945 -0.37578094 0.6084221 0.42733943 -0.20338295 0.42042899\n\t\t 0.45021835 -0.17891896 0.39817101 0.44324842 -0.14147195 0.42185497 0.49382842 -0.26051196 0.284733\n\t\t 0.47635442 -0.31760296 0.28160298 0.48109636 -0.14308298 0.35937399 0.47240341 -0.11470196 0.38299\n\t\t 0.51089042 -0.10286796 0.31378698 0.53425545 -0.14333896 0.24342799 0.51458156 -0.20146997 0.26851198\n\t\t 0.53314054 -0.065261871 0.271157 0.52244741 -0.053757071 0.29474699 0.55024844 -0.035917178 0.23789299\n\t\t 0.53835857 -0.030775964 0.261473 0.56931543 -0.036508471 0.19733098 0.5591324 -0.020484462 0.22039899\n\t\t 0.55111843 -0.08898057 0.219973 0.55132341 -0.012051776 0.23436201 0.56718844 -0.0018348545 0.18312299\n\t\t 0.56390643 -0.012007877 0.21078998 0.55645144 -0.001831755 0.20681998 0.57491541 -0.012002766 0.186757\n\t\t 0.54247242 -0.0018360019 0.233547 0.5418874 0.00056216121 0.20068499 0.55305439 0.00055791438 0.17703599\n\t\t 0.29056242 -0.30997396 0.504632 0.30135542 -0.31907594 0.50364399 0.35659042 -0.23843695 0.47676599\n\t\t 0.36936942 -0.24407296 0.47258997 0.38426042 -0.20391196 0.463952 0.27277541 -0.30799094 0.499084\n\t\t 0.33987242 -0.23750396 0.471084 0.23533446 -0.34455594 0.51493001 0.39875942 -0.20621595 0.45800298\n\t\t 0.41065541 -0.16627495 0.45851499 0.36952743 -0.20358196 0.45893002 0.16029145 -0.35614094 0.61735296\n\t\t 0.25220442 -0.34698495 0.51968414 0.15940344 -0.34697494 0.61131597 0.14286245 -0.34458596 0.6003961\n\t\t 0.54672641 -0.018690065 0.243974 0.53773344 -0.0085910559 0.24331498 0.52910352 -0.020889267 0.26109698\n\t\t 0.52287245 -0.0062081069 0.237652 0.52795541 0.00056360662 0.22786298 0.51361841 -0.018536672 0.255476\n\t\t 0.51269442 -0.044274077 0.294911 0.49115136 -0.074241966 0.33824301 0.50146556 -0.083207652 0.33738899\n\t\t 0.46163735 -0.10628995 0.38458198 0.43184942 -0.13382995 0.424496 0.41210541 -0.15027696 0.44855201\n\t\t 0.42460543 -0.15674695 0.44429201 0.39682043 -0.16117595 0.464679 0.39556241 -0.14859895 0.44391596\n\t\t 0.41468143 -0.13184495 0.41938597 0.38095742 -0.15987995 0.460639 0.44395542 -0.10414796 0.37924099\n\t\t 0.47349235 -0.072020948 0.33279598 0.49602237 -0.041979074 0.28936598 0.55612743 -0.031069174 0.21755299\n\t\t 0.58061939 -0.03464447 0.19780898 0.57670343 -0.029589474 0.22622299 0.5516724 -0.029753566 0.22527298\n\t\t 0.55435944 0.055549428 0.21739498 0.56366742 0.050705031 0.211155 0.54601341 0.057339028 0.215159\n\t\t 0.56616241 0.043329641 0.22055799 0.55654341 0.013828322 0.20924598 0.55435944 0.013828427 0.21739498\n\t\t 0.54819643 0.010249227 0.20701 0.54601341 0.010249332 0.215159 0.53766644 0.055549428 0.21292198\n\t\t 0.55972344 0.044132218 0.255472 0.57544541 0.034688935 0.22304499 0.55460954 0.01718533 0.25410098\n\t\t 0.55724144 0.006625697 0.21816698 0.53770256 0.0099351257 0.249571 0.52858043 0.057486936 0.247127\n\t\t 0.53478545 0.0066255927 0.21214998 0.51945943 0.015802428 0.244683 0.52355742 0.01144053 0.20914099\n\t\t 0.55724144 0.062752232 0.21816698 0.54601341 0.065159723 0.215159 0.56682545 0.05623503 0.22073498\n\t\t 0.56148344 0.050705031 0.219304 0.57312042 0.046313122 0.222422 0.56789142 0.034688935 0.221021\n\t\t 0.57312042 0.023064733 0.222422 0.56616241 0.026048228 0.22055799 0.56682545 0.013142824 0.22073498\n\t\t 0.56148344 0.018672928 0.219304 0.54601341 0.0042182207 0.215159 0.53766644 0.013828322 0.21292198\n\t\t 0.52932042 0.017407432 0.210686 0.53478545 0.062752232 0.21214998 0.52932042 0.051970318 0.210686\n\t\t 0.52355641 0.05793722 0.20914099 0.53680843 0.015466228 0.25296599 0.53680843 0.034688935 0.25296599\n\t\t 0.51970756 0.027355626 0.248384 0.52264154 0.020022526 0.24917001;\n\tsetAttr \".vt[5478:5643]\" 0.5167734 0.034688935 0.24759799 0.51970756 0.042022124 0.248384\n\t\t 0.52264154 0.049355313 0.24917001 0.55537653 0.034688935 0.25794199 0.54993743 0.021096423 0.256484\n\t\t 0.55654341 0.055549428 0.20924598 0.58700043 0.075703844 0.16593701 0.56107545 0.086655334 0.15894598\n\t\t 0.54819643 0.057339028 0.20701 0.56834644 0.043329641 0.21240899 0.57007539 0.034688935 0.212872\n\t\t 0.53985041 0.055549428 0.20477298 0.54662842 0.08358793 0.15507498 0.53150439 0.051970318 0.202537\n\t\t 0.56834644 0.026048228 0.21240899 0.56488943 0.017407432 0.211483 0.55865145 -0.012077063 0.18083298\n\t\t 0.58507341 -0.012076974 0.18998998 0.54819643 0.017407432 0.20701 0.53150439 0.017407432 0.202537\n\t\t 0.53222942 -0.012077063 0.17167598 0.54389155 0.016984925 0.25486398 0.54682344 0.011890829 0.25201499\n\t\t 0.52972555 0.016984925 0.251068 0.52858043 0.011890829 0.247127 0.55972344 0.025245726 0.255472\n\t\t 0.55390954 0.027355626 0.257548 0.56161243 0.034688935 0.25597799 0.55390841 0.042022124 0.257548\n\t\t 0.55460954 0.052192524 0.25410098 0.54993743 0.048281416 0.256484 0.54682344 0.057486936 0.25201499\n\t\t 0.54389155 0.052392825 0.25486398 0.53770256 0.059442744 0.249571 0.53680843 0.053911641 0.25296599\n\t\t 0.52972442 0.052392825 0.251068 0.51945943 0.053575441 0.244683 0.57552242 0.08358784 0.13842899\n\t\t 0.57552242 0.08358793 0.162817 0.58700144 0.075703844 0.13843 0.56107545 0.086655334 0.138428\n\t\t 0.59254342 0.064321533 0.16755393 0.59254342 0.064321443 0.13843 0.54662842 0.08358784 0.138428\n\t\t 0.5321824 0.077452943 0.13842699 0.53218144 0.077453032 0.15120399 0.59511745 0.051189944 0.13843\n\t\t -0.048397657 -0.84030396 0.4436031 -0.048397657 -0.76772493 0.44360209 -0.12769458 -0.83691096 0.4436031\n\t\t -0.15266055 -0.74403894 0.54540414 -0.14938755 -0.89659792 0.54540414 -0.15266058 -0.69061202 0.071073115\n\t\t -0.15266058 -0.63780302 0.071073115 -0.15266055 -0.63225794 0.54540414 -0.026824895 -0.799707 0.071072102\n\t\t -0.026824754 -0.90097392 0.54540414 -0.14935361 -0.77673203 0.071072102 -0.13108858 -0.76772493 0.4436031\n\t\t -0.048397548 -0.87441194 0.54540414 -0.048397548 -0.76772493 0.54540414 -0.12783656 -0.87054896 0.54540414\n\t\t -0.13108756 -0.76772493 0.54540414 -0.026824754 -0.74406695 0.54540414 -0.0024815297 -0.74406695 0.54540414\n\t\t -0.15266058 -0.56099796 0.14413911 0.14769742 -0.69061202 0.071073085 0.14769745 -0.74403894 0.54540414\n\t\t 0.14439039 -0.77673203 0.071072072 0.14769745 -0.63225794 0.54540414 0.021861801 -0.799707 0.071072102\n\t\t 0.021861646 -0.90097392 0.54540414 -0.0024815712 -0.799707 0.071072102 0.12612543 -0.76772493 0.4436031\n\t\t 0.043434542 -0.76772493 0.44360209 0.12273143 -0.83691096 0.4436031 0.043434635 -0.84030396 0.4436031\n\t\t 0.043434449 -0.76772493 0.54540414 0.14442445 -0.89659792 0.54540414 0.043434449 -0.87441194 0.54540414\n\t\t 0.12287346 -0.87054896 0.54540414 0.12612446 -0.76772493 0.54540414 0.021861747 -0.74406695 0.54540414\n\t\t -0.0024815297 -0.90097296 0.54540414 -0.0024815712 -0.65195298 0.071073115 0.14769742 -0.63780302 0.071073085\n\t\t -0.0024815649 -0.56099796 0.14413908 -0.0024815712 -0.63780397 0.071073115 0.14769742 -0.56099796 0.14413905\n\t\t -0.5579626 0.011160135 0.19208106 -0.54786658 0.0098098069 0.23202804 -0.54005957 0.011165336 0.22902513\n\t\t -0.53339261 0.0094728023 0.24188513 -0.53648859 0.0030380934 0.2557041 -0.52778059 0.0043941736 0.25269812\n\t\t -0.51279747 -0.032737866 0.30744705 -0.50212145 -0.031376868 0.30441111 -0.49460757 -0.057128459 0.34271812\n\t\t -0.48222959 -0.055779457 0.33969009 -0.46688363 -0.070988446 0.36167711 -0.45420557 -0.084586948 0.38133609\n\t\t -0.43590465 -0.10415795 0.40962899 -0.44888359 -0.10527696 0.41228211 -0.41607159 -0.12369996 0.43797714\n\t\t -0.40114957 -0.13721396 0.45780301 -0.38625059 -0.14979395 0.4749071 -0.37861457 -0.15872395 0.47822911\n\t\t -0.36057159 -0.18135495 0.48511511 -0.33242857 -0.24211794 0.50493312 -0.31305459 -0.24161595 0.50283009\n\t\t -0.26656058 -0.30057794 0.52016413 -0.25198057 -0.33270195 0.53362209 -0.23987155 -0.32900494 0.53159213\n\t\t -0.15581255 -0.33162993 0.60949302 -0.22657254 -0.33095694 0.54329509 -0.16324955 -0.33540595 0.61453199\n\t\t -0.5657506 -0.018001363 0.19540912 -0.54808956 -0.017996177 0.23235306 -0.56497157 0.0098059773 0.19507611\n\t\t -0.54164958 0.0081174523 0.24488711 -0.5414536 -0.019688666 0.24521306 -0.53615457 -0.024767265 0.25602606\n\t\t -0.51075745 -0.060538277 0.30773905 -0.49286258 -0.084436655 0.34221613 -0.48029563 -0.09813296 0.36180013\n\t\t -0.48132965 -0.072293758 0.36463714 -0.46941063 -0.085815966 0.38417011 -0.47004965 -0.10914695 0.37735212\n\t\t -0.45461959 -0.12499796 0.39973414 -0.42626259 -0.12469395 0.4404251 -0.43783057 -0.14128095 0.42235309\n\t\t -0.41041058 -0.13808295 0.46005201 -0.42360458 -0.15358995 0.43861413 -0.39609557 -0.15063296 0.47697997\n\t\t -0.40908056 -0.16635595 0.45279211 -0.38999858 -0.15956695 0.48031998 -0.40607557 -0.17320995 0.45367712\n\t\t -0.37540257 -0.18201895 0.48722309 -0.40022257 -0.18888496 0.45414311 -0.36430058 -0.24296996 0.4683221\n\t\t -0.30123058 -0.31292093 0.49656212 -0.28251159 -0.30164894 0.5222671 -0.26220557 -0.35123295 0.51428211\n\t\t -0.23792554 -0.33454695 0.54564011 -0.24705856 -0.35307494 0.5289821 -0.16402155 -0.35416195 0.61487609\n\t\t 0.55299944 0.011160135 0.192081 0.53509641 0.011165336 0.22902501 0.56000841 0.0098059773 0.19507599\n\t\t 0.52842945 0.0094728023 0.24188501 0.53152543 0.0030380934 0.25570399 0.52281743 0.0043941736 0.252698\n\t\t 0.49715841 -0.031376868 0.30441099 0.47726643 -0.055779457 0.33968997 0.46192035 -0.070988446 0.36167699\n\t\t 0.46444735 -0.085815966 0.38417 0.44924343 -0.084586948 0.38133597 0.43094137 -0.10415795 0.40962899\n\t\t 0.44392043 -0.10527696 0.41228199 0.42129943 -0.12469395 0.44042498 0.41110843 -0.12369996 0.43797702\n\t\t 0.39618641 -0.13721396 0.45780301 0.38128743 -0.14979395 0.47490698 0.37365142 -0.15872395 0.47822899\n\t\t 0.35560843 -0.18135495 0.48511499 0.30809143 -0.24161595 0.50283009;\n\tsetAttr \".vt[5644:5809]\" 0.26159742 -0.30057794 0.52016401 0.23490845 -0.32900494 0.53159201\n\t\t 0.22160944 -0.33095694 0.54329509 0.23296244 -0.33454695 0.54563999 0.15085045 -0.33162993 0.60949302\n\t\t 0.56078744 -0.018001363 0.195409 0.54290342 0.0098098069 0.23202798 0.5431264 -0.017996177 0.232353\n\t\t 0.53668642 0.0081174523 0.24488699 0.53649044 -0.019688666 0.245213 0.53119141 -0.024767265 0.256026\n\t\t 0.50783455 -0.032737866 0.30744699 0.50579453 -0.060538277 0.30773899 0.48964441 -0.057128459 0.34271801\n\t\t 0.48789942 -0.084436655 0.34221601 0.47533235 -0.09813296 0.36180001 0.47636637 -0.072293758 0.36463702\n\t\t 0.46508637 -0.10914695 0.377352 0.44965643 -0.12499796 0.39973402 0.43286741 -0.14128095 0.42235297\n\t\t 0.40544742 -0.13808295 0.46005201 0.41864142 -0.15358995 0.43861401 0.39113241 -0.15063296 0.47697997\n\t\t 0.40411741 -0.16635595 0.45279199 0.38503543 -0.15956695 0.48031998 0.40111241 -0.17320995 0.453677\n\t\t 0.37043941 -0.18201895 0.48722297 0.39525941 -0.18888496 0.45414299 0.32746542 -0.24211794 0.504933\n\t\t 0.35933742 -0.24296996 0.4683221 0.27754843 -0.30164894 0.52226698 0.29626742 -0.31292093 0.496562\n\t\t 0.24701744 -0.33270195 0.53362209 0.25724342 -0.35123295 0.51428199 0.24209645 -0.35307494 0.5289821\n\t\t 0.15905845 -0.35416195 0.61487609 0.15828645 -0.33540595 0.61453199 -0.23067255 -0.57730591 0.6150161\n\t\t -0.23360956 -0.56011194 0.61368209 -0.22694455 -0.56021494 0.61485213 -0.23976755 -0.56259793 0.61237413\n\t\t -0.24448055 -0.56729293 0.61112911 -0.24703155 -0.57348293 0.61013609 -0.24703155 -0.58022493 0.60954612\n\t\t -0.24448055 -0.58649296 0.60944909 -0.23976755 -0.59133291 0.60986012 -0.23360956 -0.59400797 0.6107161\n\t\t -0.22694455 -0.59410995 0.6118871 -0.22078656 -0.59162492 0.61319411 -0.21607456 -0.58692992 0.61443913\n\t\t -0.21352355 -0.58073992 0.61543208 -0.21352355 -0.57399791 0.61602211 -0.21607456 -0.56772894 0.61611909\n\t\t -0.22078755 -0.56288993 0.61570811 -0.25088754 -0.56209695 0.60665309 -0.24383356 -0.55507094 0.6085161\n\t\t -0.25470459 -0.57136095 0.60516709 -0.25470459 -0.58145094 0.60428411 -0.25088754 -0.59083194 0.60413909\n\t\t -0.24383356 -0.59807593 0.60475409 -0.23461854 -0.60207891 0.60603511 -0.22464354 -0.60223192 0.60778713\n\t\t -0.21542755 -0.59851193 0.60974413 -0.20837355 -0.59148592 0.61160713 -0.20455655 -0.58222193 0.61309314\n\t\t -0.20455655 -0.57213193 0.61397612 -0.20837355 -0.56275094 0.61412114 -0.21542755 -0.55550694 0.61350614\n\t\t -0.22464354 -0.55150396 0.61222512 -0.23461854 -0.55135095 0.6104731 -0.23466855 -0.54636496 0.6059401\n\t\t -0.22290255 -0.54654497 0.60800713 -0.24553955 -0.55075192 0.60363209 -0.25385958 -0.55904096 0.60143411\n\t\t -0.25836259 -0.56996793 0.59968114 -0.25836259 -0.58186996 0.59864008 -0.25385958 -0.59293592 0.59846914\n\t\t -0.24553955 -0.60147995 0.59919411 -0.23466855 -0.60620195 0.60070509 -0.22290255 -0.60638297 0.60277212\n\t\t -0.21203154 -0.60199493 0.60508013 -0.20371155 -0.59370697 0.6072771 -0.19920854 -0.58277994 0.60903013\n\t\t -0.19920854 -0.57087696 0.61007214 -0.20371155 -0.55981094 0.61024308 -0.21203154 -0.55126697 0.60951811\n\t\t 0.22570945 -0.57730693 0.61501598 0.22198145 -0.56021494 0.61485213 0.22864646 -0.56011194 0.61368209\n\t\t 0.23480445 -0.56259793 0.61237413 0.23951745 -0.56729293 0.61112911 0.24206845 -0.57348293 0.61013609\n\t\t 0.24206845 -0.58022493 0.60954612 0.23951745 -0.58649296 0.60944909 0.23480445 -0.59133291 0.60986012\n\t\t 0.22864646 -0.59400797 0.61071599 0.22198145 -0.59410995 0.61188698 0.21582446 -0.59162492 0.61319399\n\t\t 0.21111146 -0.58692992 0.61443901 0.20856045 -0.58073992 0.61543208 0.20856045 -0.57399791 0.61602199\n\t\t 0.21111146 -0.56772894 0.61611909 0.21582446 -0.56288993 0.61570799 0.24592444 -0.56209695 0.60665298\n\t\t 0.24974144 -0.57136095 0.60516709 0.24592444 -0.59083194 0.60413897 0.23887046 -0.59807593 0.60475397\n\t\t 0.21968044 -0.60223192 0.60778701 0.21046445 -0.59851193 0.60974413 0.19959345 -0.58222193 0.61309302\n\t\t 0.19959345 -0.57213193 0.613976 0.21046445 -0.55550694 0.61350614 0.21968044 -0.55150396 0.61222512\n\t\t 0.22965544 -0.55135095 0.6104731 0.23887046 -0.55507094 0.60851598 0.22970545 -0.54636496 0.60593998\n\t\t 0.21793945 -0.54654592 0.60800713 0.24057645 -0.55075192 0.60363197 0.24889642 -0.55904096 0.60143399\n\t\t 0.25339943 -0.56996793 0.59968102 0.24974144 -0.58145094 0.60428411 0.25339943 -0.58187091 0.59863997\n\t\t 0.24889642 -0.59293592 0.59846902 0.24057645 -0.60147995 0.59919411 0.22965544 -0.60207891 0.60603499\n\t\t 0.22970545 -0.60620195 0.60070509 0.21793945 -0.60638297 0.602772 0.20706844 -0.60199493 0.60508001\n\t\t 0.20341045 -0.59148592 0.61160713 0.19874845 -0.59370697 0.6072771 0.19424544 -0.58277994 0.60903001\n\t\t 0.19424544 -0.57087696 0.61007202 0.20341045 -0.56275094 0.61412114 0.19874845 -0.55981094 0.61024296\n\t\t 0.20706844 -0.55126697 0.60951811 -0.0035280311 -0.66382402 -0.090156712 -0.14083764 -0.677939 -0.19176009\n\t\t -0.14083764 -0.69682801 -0.19176009 -0.0035280613 -0.64493501 -0.090156712 -0.14083764 -0.80285901 -0.19176027\n\t\t -0.14520161 -0.81493503 -0.19498986 -0.003527981 -0.78792 -0.090156697 -0.003527981 -0.76985502 -0.090156697\n\t\t -0.14520161 -0.68602699 -0.19498986 -0.014439912 -0.75865197 -0.0982311 -0.014440011 -0.68027198 -0.098231107\n\t\t -0.024533013 -0.75865299 -0.084590897 -0.024533013 -0.68027198 -0.084590904 -0.12992564 -0.78641099 -0.18368593\n\t\t -0.14001861 -0.78641099 -0.17004599 -0.12992564 -0.708031 -0.18368572 -0.14001861 -0.708031 -0.17004579\n\t\t -0.0014351311 -0.66382402 -0.090156712 0.13587436 -0.69682801 -0.19176011 0.13587436 -0.80285901 -0.1917603\n\t\t 0.14023839 -0.81493503 -0.19498989 -0.0014351911 -0.76985502 -0.090156697 0.14023839 -0.68602699 -0.19498989\n\t\t 0.0094767883 -0.68027198 -0.098231114 0.019569786 -0.75865299 -0.084590904 0.019569887 -0.68027198 -0.084590912\n\t\t 0.13505539 -0.78641099 -0.170046 0.0094767883 -0.75865197 -0.098231107 0.13505539 -0.708031 -0.17004582\n\t\t 0.12496236 -0.78641099 -0.18368594 0.12496236 -0.708031 -0.18368575;\n\tsetAttr \".vt[5810:5975]\" -0.70037758 0.41407496 0.13854104 -0.66264957 0.39770001 0.15121904\n\t\t -0.68575758 0.33246797 0.12793306 -0.68339455 0.22854201 0.10781506 -0.71574455 0.19493203 0.089323074\n\t\t -0.6534676 0.18566404 0.11348906 -0.57043958 0.33093601 0.17784104 -0.53781956 0.47008896 0.21657506\n\t\t -0.5987916 0.34784901 0.16429406 -0.63847357 0.16418003 0.11702207 -0.25227666 0.82692999 -0.590186\n\t\t -0.20227267 0.84106201 -0.62710404 -0.35914969 0.78195995 -0.48718202 -0.38204965 0.78028196 -0.57064998\n\t\t -0.10374667 0.85248595 -0.66339898 -0.099920854 0.82998699 -0.62367797 -0.19434965 0.82510394 -0.58897698\n\t\t -0.096435353 0.800219 -0.59267807 -0.24132064 0.81041497 -0.55437201 -0.3408727 0.76900494 -0.45820102\n\t\t -0.32288969 0.75376892 -0.436248 -0.36815265 0.727759 -0.36201501 -0.39387563 0.742773 -0.38330805\n\t\t -0.44816265 0.70814401 -0.26848072 -0.43181765 0.70027798 -0.25186157 -0.49890265 0.66976798 -0.13522948\n\t\t -0.54130858 0.67346299 -0.15168367 -0.47453865 0.71444499 -0.28740001 -0.41623065 0.75242001 -0.40766996\n\t\t -0.44176164 0.75433892 -0.47874701 -0.5495376 0.67923802 -0.20660317 -0.54849255 0.65124398 -0.10570138\n\t\t -0.56687355 0.65077001 -0.12683028 -0.55607259 0.572613 0.046933055 -0.42288563 0.67656201 -0.20371059\n\t\t -0.44628364 0.64719301 -0.11501349 -0.40300164 0.68137097 -0.24255438 -0.36632064 0.72440302 -0.35558605\n\t\t -0.3204087 0.75163001 -0.43331301 -0.22960667 0.78253895 -0.523274 -0.23079567 0.78542691 -0.526371\n\t\t -0.18620966 0.79347295 -0.55566704 -0.65235257 0.052336231 0.092682093 -0.65003055 0.051534906 0.020564079\n\t\t -0.64347857 0.051505938 0.088966072 -0.64819455 0.051503733 0.094094068 -0.62719256 0.051506028 0.089101076\n\t\t -0.62303358 0.051501021 0.10728809 -0.59719759 0.051501021 0.10769409 -0.6012916 0.051506117 0.089317083\n\t\t -0.56829959 0.051506117 0.089592069 -0.5643366 0.051501021 0.10815409 -0.63380659 0.051534787 0.020564079\n\t\t -0.60800356 0.051534697 0.020563081 -0.5751366 0.051534608 0.020563081 -0.58700258 0.051500842 0.14631209\n\t\t -0.61561757 0.051500842 0.14558309 -0.6394586 0.051500931 0.10666409 -0.63505059 0.051500842 0.14217708\n\t\t -0.64820659 0.051500723 0.1020321 -0.6514436 0.052940115 0.10054907 -0.65879661 0.051534906 0.020564079\n\t\t -0.67524159 0.098215148 0.089139074 -0.74045157 0.19375302 -0.025077924 -0.76140857 0.24102701 -0.039081916\n\t\t -0.72206956 0.42798698 -0.037662946 -0.7215516 0.42471498 -0.028307945 -0.73534459 0.36765999 -0.043202937\n\t\t -0.74283659 0.30628496 -0.037164927 -0.74920261 0.24094202 -0.039234921 -0.75227159 0.24087001 -0.049317926\n\t\t -0.56895357 0.55905002 0.053303018 -0.7037586 0.48574996 -0.020126954 -0.65089458 0.054891512 0.019350082\n\t\t -0.72931957 0.19452699 -0.025495917 -0.7156446 0.490251 -0.029380947 -0.72076958 0.447496 -0.12201864\n\t\t -0.73425359 0.42809796 -0.037573941 -0.68813056 0.48773396 -0.29352295 -0.66957855 0.56725901 -0.26759255\n\t\t -0.70110357 0.41277397 -0.31554693 -0.73377061 0.38254398 -0.13412234 -0.74752855 0.36776596 -0.043093935\n\t\t -0.63739955 0.59578401 -0.37315601 -0.6564306 0.51334602 -0.40587395 -0.59964257 0.54850292 -0.56880796\n\t\t -0.50967669 0.65656394 -0.66912103 -0.52195668 0.57944894 -0.72413391 -0.45144069 0.59242892 -0.82778502\n\t\t -0.4389807 0.66962391 -0.76820487 -0.31424469 0.59999394 -0.96622187 -0.30478469 0.68038195 -0.89522487\n\t\t -0.32231876 0.51397794 -1.017208815 -0.46899271 0.50909096 -0.88165492 -0.54407758 0.49736893 -0.77450502\n\t\t -0.74211556 0.31743497 -0.14442603 -0.70715058 0.33765799 -0.33663291 -0.6781736 0.26257497 -0.47977889\n\t\t -0.67596859 0.3521629 -0.45754495 -0.62220371 0.37523693 -0.63093901 -0.6265707 0.27137792 -0.650208\n\t\t -0.61434156 0.46736795 -0.60564989 -0.66995859 0.43414897 -0.43327099 -0.55370069 0.39610893 -0.80022502\n\t\t -0.56042671 0.27901793 -0.81597102 -0.47830671 0.40401191 -0.90881187 -0.33490375 0.28259492 -1.069079995\n\t\t -0.32909074 0.40669692 -1.048036814 -0.26062971 0.40773994 -1.099354982 -0.25509769 0.51589096 -1.064998984\n\t\t -0.1297847 0.51776195 -1.11492896 -0.1326147 0.40871084 -1.14963484 -0.13526569 0.28294492 -1.17339993\n\t\t -0.1269547 0.60574192 -1.066921949 -0.2492407 0.60294092 -1.01587081 -0.24269067 0.68453395 -0.94487703\n\t\t -0.0024816762 0.51890385 -1.12839818 -0.002481672 0.60742694 -1.081352949 -0.0024816664 0.69038695 -1.019366026\n\t\t -0.57208461 0.60308701 -0.028988972 -0.63892555 0.56819803 -0.062890962 -0.57027656 0.56702101 0.046960056\n\t\t -0.6202336 0.61250502 -0.1969931 -0.59462661 0.64151198 -0.28921399 -0.7023856 0.51410198 -0.10657995\n\t\t -0.50240862 0.71721703 -0.34030396 -0.54072756 0.67861903 -0.43318895 -0.57995772 0.62875092 -0.52221894\n\t\t -0.47354963 0.71281195 -0.57811797 -0.40810269 0.73308092 -0.67320204 -0.28587469 0.75718093 -0.79073501\n\t\t -0.26991871 0.81458992 -0.6852929 -0.22882567 0.76642191 -0.83632988 -0.12386868 0.68823797 -1.00098001957\n\t\t -0.11713169 0.77131993 -0.88608003 -0.21712667 0.82556397 -0.72195989 -0.11144667 0.83712095 -0.77219999\n\t\t -0.56950158 0.56347299 0.044468045 -0.56955957 0.562675 0.055988029 -0.64031357 0.533149 0.0014800578\n\t\t -0.64615458 0.53683299 0.0048660487 -0.7034266 0.49012697 -0.029223949 -0.74500656 0.30733299 -0.047017932\n\t\t -0.75719059 0.30743396 -0.046888925 -0.73166758 0.19339402 -0.034882918 -0.74277359 0.19345801 -0.034768924\n\t\t -0.68997157 0.098263517 -0.0041569173 -0.6810686 0.098242089 -0.0041949153 -0.68016559 0.10150202 0.0037970841\n\t\t -0.68914557 0.099007204 0.0047450811 -0.75502157 0.30638599 -0.037034921 -0.73400056 0.36549997 -0.033599928\n\t\t -0.73373556 0.42482597 -0.028217942 -0.71597159 0.48586899 -0.020288944 -0.64017659 0.52898699 0.010724053\n\t\t -0.64593858 0.53249103 0.013948053 -0.7053926 0.41794497 0.13152906 -0.53892457 0.47300696 0.21168506\n\t\t -0.73508561 0.29058701 0.091509044 -0.74618459 0.36560601 -0.033489928 -0.7264756 0.33707899 0.10406306\n\t\t -0.1219197 0.1010289 -1.10808182 -0.22658066 0.040223822 -1.024838924 -0.2408787 0.1010109 -1.058035851\n\t\t -0.1283417 0.16177391 -1.13724685 -0.25291476 0.16173391 -1.086797953;\n\tsetAttr \".vt[5976:6141]\" -0.1323957 0.22239091 -1.15754104 -0.26042771 0.2223299 -1.106691\n\t\t -0.2656787 0.2828629 -1.12214899 -0.30810675 0.10094891 -1.0060310364 -0.3214097 0.16160391 -1.034438014\n\t\t -0.29218176 0.040231511 -0.97318989 -0.4574807 0.10077496 -0.86467189 -0.4721767 0.16123293 -0.8921929\n\t\t -0.4803957 0.22156493 -0.91084802 -0.32946771 0.22213091 -1.053975821 -0.48537669 0.28183293 -0.92506891\n\t\t -0.55628967 0.21945594 -0.80031592 -0.5486697 0.15983094 -0.78072387 -0.62448257 0.21372594 -0.62931991\n\t\t -0.67663169 0.20724295 -0.45560893 -0.70960158 0.256271 -0.35668093 -0.7043916 0.20287399 -0.33693191\n\t\t -0.74770957 0.24608602 -0.15320852 -0.6821816 0.095856771 -0.29559493 -0.68986261 0.098749802 -0.11300841\n\t\t -0.70138556 0.11917 -0.056278914 -0.65887356 0.050566509 0.012057081 -0.66830659 0.044165805 -0.20773301\n\t\t -0.66518056 0.042235777 -0.27400753 -0.7305696 0.17874499 -0.073355921 -0.73081559 0.19351901 -0.13684621\n\t\t -0.69588655 0.10838099 -0.10941352 -0.49758565 0.67058498 -0.039211974 -0.52048957 0.66980398 -0.046636984\n\t\t -0.49821264 0.65603799 -0.012056977 -0.52211958 0.653615 -0.016136974 -0.47325164 0.64836401 -0.010671973\n\t\t -0.47310063 0.66266698 -0.037240982 -0.53903657 0.66168702 -0.072114982 -0.5436886 0.63850701 -0.027181983\n\t\t -0.53601056 0.67595297 -0.09977138 -0.55407959 0.61934501 -0.039577976 -0.52120757 0.61356801 0.057384014\n\t\t -0.49570063 0.61593598 0.06162402 -0.49285358 0.58024698 0.12682202 -0.5198766 0.57934201 0.11978102\n\t\t -0.48300663 0.521622 0.22689006 -0.50989658 0.51809198 0.22448805 -0.47607058 0.49502903 0.26827905\n\t\t -0.50218654 0.49050802 0.266949 -0.45506665 0.51347798 0.22630104 -0.44873357 0.48705506 0.267465\n\t\t -0.54368258 0.57162797 0.095822066 -0.55602956 0.561759 0.06667304 -0.52267057 0.46762407 0.26079404\n\t\t -0.52967459 0.44113404 0.25282004 -0.46572563 0.57219303 0.12821001 -0.54419959 0.598997 0.045825019\n\t\t -0.52660346 0.43050706 0.26537904 -0.54697859 0.345635 0.23549905 -0.64412856 0.051500842 0.13464409\n\t\t -0.46954963 0.60809797 0.062958032 -0.44428465 0.54662102 0.12499201 -0.43404564 0.48847598 0.22222\n\t\t -0.42781359 0.46202606 0.263322 -0.42495164 0.45397598 0.21692199 -0.41856259 0.42752606 0.25802398\n\t\t -0.43416458 0.51212102 0.11969402 -0.44814065 0.58244801 0.059905022 -0.43752265 0.547948 0.054607019\n\t\t -0.45192865 0.62269098 -0.013691977 -0.45191064 0.63695699 -0.040200979 -0.44081563 0.58819097 -0.01898998\n\t\t -0.44079763 0.60245699 -0.045498982 -0.41665563 0.41944605 0.27088898 -0.45168263 0.64265299 -0.057616979\n\t\t -0.44039565 0.60999697 -0.06087698 -0.43920463 0.61848301 -0.081202984 -0.44999364 0.64560801 -0.084058985\n\t\t -0.47334263 0.674429 -0.057256989 -0.43761963 0.627442 -0.10400429 -0.49942163 0.67434299 -0.093342885\n\t\t -0.49716365 0.67857999 -0.053503975 -0.47503465 0.67326999 -0.089058086 -0.47022265 0.66789401 -0.12751058\n\t\t -0.51966256 0.67836601 -0.062711976 -0.53117961 0.49968898 0.21424299 -0.47227064 0.47938102 0.28649998\n\t\t -0.45009664 0.47583902 0.27905306 -0.51400745 0.45641905 0.27274007 -0.51895547 0.42432904 0.27195007\n\t\t -0.42984658 0.44663107 0.28105405 -0.42116457 0.41616702 0.26958698 -0.51650161 0.34638596 0.24445504\n\t\t -0.49318865 0.34512496 0.23390606 -0.53978556 0.348692 0.24582905 -0.49822763 0.47755003 0.28663704\n\t\t -0.46935764 0.47443306 0.30462098 -0.49447265 0.46915007 0.30564204 -0.47254464 0.48253602 0.287938\n\t\t -0.44310263 0.46684206 0.30101004 -0.42322159 0.44259602 0.29336306 -0.42488065 0.44964904 0.28274706\n\t\t -0.41557658 0.41514903 0.27744904 -0.41490164 0.40912807 0.28516105 -0.51416558 0.44279104 0.30121607\n\t\t -0.52037549 0.41365206 0.29476905 -0.53614044 0.34101003 0.27717605 -0.50930846 0.43684107 0.30989605\n\t\t -0.5150966 0.40869105 0.30385205 -0.49063465 0.46231103 0.31386298 -0.46768457 0.46696705 0.31248906\n\t\t -0.44380763 0.45965302 0.30853006 -0.42589465 0.43667805 0.29999205 -0.41924563 0.40513307 0.29090306\n\t\t -0.48472264 0.45366806 0.31506497 -0.46705964 0.45674604 0.31352097 -0.44798163 0.45068204 0.310875\n\t\t -0.51897758 0.35099506 0.29336604 -0.43147764 0.42989707 0.30374506 -0.48914957 0.33799899 0.24087507\n\t\t -0.50721347 0.33757007 0.27269006 -0.47828564 0.33412904 0.26820406 -0.54512155 0.34437299 0.24498406\n\t\t -0.50051159 0.33882707 0.28398705 -0.47198364 0.33510107 0.27911705 -0.52903956 0.34255302 0.28885704\n\t\t -0.49102259 0.34720105 0.28863806 -0.49935859 0.48213905 0.27960098 -0.49565265 0.47933203 0.27864304\n\t\t -0.51966345 0.45817304 0.27319106 -0.52022946 0.43016702 0.26548606 -0.54146558 0.34993196 0.23694104\n\t\t -0.51732761 0.34752798 0.23542404 -0.47366562 0.48688602 0.28103501 -0.47363165 0.48345703 0.27981505\n\t\t -0.44676757 0.47898602 0.28029799 -0.42595959 0.45394605 0.276187 -0.43046865 0.45066702 0.274885\n\t\t -0.51239944 0.45119303 0.27944306 -0.52540648 0.42437506 0.27200004 -0.51851046 0.45262003 0.27998006\n\t\t -0.49387965 0.47509807 0.285568 -0.44927964 0.47183406 0.28542104 -0.44567859 0.47468102 0.28698304\n\t\t -0.51713556 0.34118599 0.24293005 -0.49321657 0.34407997 0.24308106 -0.42054364 0.41213107 0.275756\n\t\t -0.5509246 0.051500842 0.14678007 -0.72713256 0.16953899 -0.063355915 -0.69476259 0.24533702 0.10583505\n\t\t -0.65356356 0.19373401 0.071016043 -0.69272059 0.2942 0.11711004 -0.6928156 0.30227101 0.079786062\n\t\t -0.67879558 0.37073499 0.13875604 -0.6788916 0.37880498 0.10143104 -0.66274559 0.40577 0.11675206\n\t\t -0.59888756 0.355919 0.12696904 -0.58222258 0.43825001 0.15120405 -0.58212656 0.430179 0.18852806\n\t\t -0.62160259 0.43031299 0.13439506 -0.62150759 0.422243 0.17172006 -0.76447755 0.24095501 -0.049166918\n\t\t -0.6635896 0.047366187 -0.09783791 -0.65107358 0.050566509 0.012057081 -0.65364856 0.047366187 -0.097838014\n\t\t -0.51581961 0.34294897 0.22426605 -0.49093258 0.33927596 0.23121205 -0.49302459 0.34025997 0.22346506\n\t\t -0.51895559 0.34245598 0.23335505 -0.55410856 0.34961897 0.21455905;\n\tsetAttr \".vt[6142:6307]\" -0.53411555 0.345222 0.22453305 -0.54774755 0.34767199 0.22175306\n\t\t -0.42442459 0.40147603 0.29631698 -0.46628663 0.43049204 0.30763298 -0.46729058 0.40514702 0.30165604\n\t\t -0.50109559 0.43108606 0.31152105 -0.50625849 0.40591407 0.30607706 -0.46306759 0.34340703 0.28391105\n\t\t -0.41409871 0.0070272088 -0.81068486 -0.48943871 0.0070388168 -0.732283 -0.4395467 0.040253535 -0.83271688\n\t\t -0.2715047 0.0070052296 -0.95021999 -0.38467368 -0.0021869242 -0.78520888 -0.24759467 -0.0022089481 -0.92365801\n\t\t -0.20871867 0.0069974661 -1.0014200211 -0.18806367 -0.0022167712 -0.97434103 -0.1143137 0.040221199 -1.07448101\n\t\t -0.10495468 0.0069950074 -1.050133944 -0.45709971 -0.0021752715 -0.70737988 -0.094132684 -0.0022192448 -1.021981001\n\t\t -0.0024816678 -0.002219215 -1.033128977 -0.5340876 0.10007994 -0.7532559 -0.5174067 0.040265247 -0.75381988\n\t\t -0.0024816357 0.85249001 -0.66799212 -0.0024816294 0.79711801 -0.59365797 -0.002481678 0.16176991 -1.15047693\n\t\t -0.0024816799 0.22238593 -1.17103386 -0.69485855 0.253407 0.068510056 -0.68349057 0.23661201 0.069121063\n\t\t -0.63856858 0.172251 0.071965039 -0.6858536 0.34053797 0.090609044 -0.6964646 0.109403 -0.10906592\n\t\t -0.72976559 0.18834402 -0.13133182 -0.72995859 0.18916501 -0.13220592 -0.71520656 0.121507 -0.070548922\n\t\t -0.69260556 0.10295899 -0.11125632 -0.71488661 0.123215 -0.075021923 -0.7201286 0.127151 -0.06495592\n\t\t -0.70439559 0.12465401 -0.050546914 -0.72316259 0.13108499 -0.064810917 -0.70662856 0.12879901 -0.050909922\n\t\t -0.73957056 0.16506799 -0.072605915 -0.73727459 0.16249402 -0.075327918 -0.74126458 0.16932701 -0.074567921\n\t\t -0.72900057 0.17372401 -0.065412916 -0.73897856 0.16675802 -0.07728792 -0.74144059 0.17481001 -0.082200922\n\t\t -0.73136556 0.19651 -0.14027052 -0.70001858 0.12333201 -0.076374918 -0.7023806 0.129355 -0.070163921\n\t\t -0.7197746 0.12872101 -0.069239914 -0.70452255 0.133707 -0.069856919 -0.72286761 0.132607 -0.068958908\n\t\t -0.71842057 0.16200902 -0.07584092 -0.72041661 0.16627701 -0.077805921 -0.73916757 0.17231999 -0.08489392\n\t\t -0.72291857 0.17187102 -0.085450917 -0.096081853 0.79711801 -0.58957911 -0.18697464 0.79651397 -0.55875099\n\t\t -0.54175055 0.46710801 0.21394104 -0.61537057 0.45464599 0.17499104 -0.61568856 0.447272 0.17841005\n\t\t -0.7177546 0.38352197 0.11662805 -0.71238559 0.380629 0.12393704 -0.72081357 0.33555496 0.11161307\n\t\t -0.72940058 0.29043198 0.099208057 -0.74250358 0.23790501 0.078383088 -0.73678058 0.23854803 0.086033076\n\t\t -0.72025156 0.19141202 0.081987083 -0.67312557 0.10333203 0.095618069 0.61654443 0.422243 0.17171994\n\t\t 0.67383242 0.37073499 0.13875592 0.71585041 0.33555496 0.11161295 0.72443742 0.29043198 0.099207938\n\t\t 0.68979943 0.24533702 0.10583493 0.73181742 0.23854803 0.086032927 0.67843139 0.22854201 0.10781494\n\t\t 0.7107814 0.19493203 0.089322925 0.64850444 0.18566404 0.11348897 0.59382844 0.34784901 0.164294\n\t\t 0.24731334 0.82692999 -0.59018606 0.19730933 0.84106201 -0.62710404 0.26495531 0.81458992 -0.68529314\n\t\t 0.3541863 0.78195995 -0.48718208 0.37708637 0.78028196 -0.5706501 0.098783329 0.85248595 -0.6633991\n\t\t 0.094957642 0.82998699 -0.62367809 0.18938637 0.82510394 -0.5889771 0.18201137 0.79651397 -0.55875111\n\t\t 0.23635736 0.81041497 -0.55437207 0.33590931 0.76900494 -0.45820108 0.31792629 0.75376892 -0.43624806\n\t\t 0.36318937 0.727759 -0.36201507 0.38891235 0.742773 -0.38330811 0.44319937 0.70814401 -0.26848078\n\t\t 0.42685437 0.70027798 -0.25186166 0.49393937 0.66976798 -0.13522957 0.53634542 0.67346299 -0.15168378\n\t\t 0.46957538 0.71444499 -0.28740007 0.41126737 0.75242001 -0.40767002 0.43679836 0.75433892 -0.47874707\n\t\t 0.54457444 0.67923802 -0.20660327 0.54911643 0.61934501 -0.039578065 0.41792235 0.67656201 -0.20371065\n\t\t 0.44132036 0.64719301 -0.11501356 0.39803836 0.68137097 -0.24255447 0.36135736 0.72440302 -0.35558611\n\t\t 0.3154453 0.75163001 -0.43331307 0.22583233 0.78542691 -0.52637106 0.22464333 0.78253895 -0.52327406\n\t\t 0.18124633 0.79347295 -0.55566704 -0.0024816324 0.82997197 -0.62780213 -0.0024816296 0.80022699 -0.59676802\n\t\t -0.0024816459 0.83790487 -0.78518915 0.091118649 0.79711801 -0.58957911 0.64506739 0.051534906 0.02056396\n\t\t 0.63851541 0.051505938 0.088965982 0.64323139 0.051503733 0.094093978 0.6222294 0.051506028 0.089100987\n\t\t 0.61807042 0.051501021 0.107288 0.59223443 0.051501021 0.107694 0.59632844 0.051506117 0.089316994\n\t\t 0.56333643 0.051506117 0.08959198 0.55937344 0.051501021 0.108154 0.62884343 0.051534787 0.020563975\n\t\t 0.6030404 0.051534697 0.020562977 0.57017344 0.051534608 0.020562977 0.61065441 0.051500842 0.145583\n\t\t 0.63449544 0.051500931 0.106664 0.6391654 0.051500842 0.134644 0.64648044 0.052940115 0.10054898\n\t\t 0.64324343 0.051500723 0.10203201 0.73548841 0.19375302 -0.025078043 0.75644541 0.24102701 -0.03908205\n\t\t 0.7171064 0.42798698 -0.037663072 0.71658844 0.42471498 -0.028308064 0.63535041 0.533149 0.0014799386\n\t\t 0.69846344 0.49012697 -0.029224068 0.69879544 0.48574996 -0.020127073 0.67610544 0.098242089 -0.0041950345\n\t\t 0.72670442 0.19339402 -0.034883052 0.74423945 0.24094202 -0.039235055 0.71580642 0.447496 -0.12201877\n\t\t 0.6831674 0.48773396 -0.29352307 0.69614041 0.41277397 -0.31554705 0.72880745 0.38254398 -0.13412246\n\t\t 0.74256539 0.36776596 -0.043094069 0.63243639 0.59578401 -0.37315607 0.65146744 0.51334602 -0.40587407\n\t\t 0.59467942 0.54850292 -0.56880808 0.51699328 0.57944894 -0.72413415 0.44647729 0.59242892 -0.82778513\n\t\t 0.4340173 0.66962391 -0.76820511 0.30928129 0.59999394 -0.96622211 0.29982129 0.68038195 -0.89522511\n\t\t 0.31735525 0.51397794 -1.017209053 0.46402931 0.50909096 -0.88165516 0.53911442 0.49736893 -0.77450514\n\t\t 0.7371524 0.31743497 -0.14442617 0.66499543 0.43414897 -0.43327111 0.6093784 0.46736795 -0.60565013\n\t\t 0.67100543 0.3521629 -0.45754507 0.61724031 0.37523693 -0.63093913 0.67321044 0.26257497 -0.47977901\n\t\t 0.6216073 0.27137792 -0.65020812 0.54873729 0.39610893 -0.80022514;\n\tsetAttr \".vt[6308:6473]\" 0.70218742 0.33765799 -0.33663303 0.70463842 0.256271 -0.35668105\n\t\t 0.74274641 0.24608602 -0.15320866 0.47334331 0.40401191 -0.90881211 0.32412723 0.40669692 -1.048036814\n\t\t 0.25566632 0.40773994 -1.099355221 0.25013429 0.51589096 -1.064998984 0.12482131 0.51776195 -1.1149292\n\t\t 0.1276513 0.40871084 -1.14963508 0.12199131 0.60574192 -1.066921949 0.2442773 0.60294092 -1.015871048\n\t\t -0.002481679 0.40928888 -1.16303098 -0.0024816813 0.28293693 -1.18715501 0.56712145 0.60308701 -0.028989062\n\t\t 0.63396239 0.56819803 -0.062891066 0.61527044 0.61250502 -0.1969932 0.56191039 0.65077001 -0.12683037\n\t\t 0.58966345 0.64151198 -0.28921407 0.69742244 0.51410198 -0.10658008 0.66461539 0.56725901 -0.26759267\n\t\t 0.49744537 0.71721703 -0.34030408 0.5357644 0.67861903 -0.43318906 0.57499433 0.62875092 -0.52221906\n\t\t 0.5047133 0.65656394 -0.66912103 0.46858636 0.71281195 -0.57811809 0.40313929 0.73308092 -0.67320204\n\t\t 0.2809113 0.75718093 -0.79073513 0.22386234 0.76642191 -0.83633012 0.23772733 0.68453395 -0.94487715\n\t\t 0.11890531 0.68823797 -1.00098001957 0.11216832 0.77131993 -0.88608015 0.21216333 0.82556397 -0.72196013\n\t\t 0.10648333 0.83712095 -0.77220011 -0.0024816561 0.77240092 -0.90041691 0.56459641 0.562675 0.055987939\n\t\t 0.5653134 0.56702101 0.046959937 0.56399041 0.55905002 0.053302929 0.56453842 0.56347299 0.044467926\n\t\t 0.64119142 0.53683299 0.0048659295 0.71068144 0.490251 -0.029381067 0.72929043 0.42809796 -0.037574068\n\t\t 0.73038143 0.36765999 -0.043203071 0.7400434 0.30733299 -0.047018059 0.75222743 0.30743396 -0.046889059\n\t\t 0.74730843 0.24087001 -0.04931806 0.73781043 0.19345801 -0.034769058 0.64611042 0.050566509 0.012056962\n\t\t 0.67520243 0.10150202 0.0037969649 0.65383345 0.051534906 0.02056396 0.68418241 0.099007204 0.0047449619\n\t\t 0.64593142 0.054891512 0.019349962 0.72435641 0.19452699 -0.025496036 0.73787344 0.30628496 -0.037165046\n\t\t 0.7290374 0.36549997 -0.033600062 0.74122143 0.36560601 -0.033490062 0.7287724 0.42482597 -0.028218061\n\t\t 0.63521343 0.52898699 0.010723934 0.64097542 0.53249103 0.013947934 0.53396142 0.47300696 0.21168494\n\t\t 0.75005841 0.30638599 -0.037035055 0.71279144 0.38352197 0.11662793 0.71100843 0.48586899 -0.020289063\n\t\t 0.1169563 0.1010289 -1.10808182 0.1093503 0.040221199 -1.07448101 0.2359153 0.1010109 -1.058035851\n\t\t 0.12337831 0.16177391 -1.13724685 0.2479513 0.16173391 -1.086797953 0.1274333 0.22239091 -1.15754104\n\t\t 0.25546432 0.2223299 -1.106691 0.13030331 0.28294492 -1.17339993 0.26071531 0.2828629 -1.12214923\n\t\t 0.30314323 0.10094891 -1.0060310364 0.3164463 0.16160391 -1.034438014 0.28721824 0.040231511 -0.97318989\n\t\t 0.4525173 0.10077496 -0.86467189 0.4672133 0.16123293 -0.8921929 0.47543231 0.22156493 -0.91084802\n\t\t 0.32450432 0.22213091 -1.053975821 0.48041329 0.28183293 -0.92506891 0.55546331 0.27901793 -0.81597114\n\t\t 0.55132627 0.21945594 -0.80031592 0.32994023 0.28259492 -1.069079995 0.5437063 0.15983094 -0.78072387\n\t\t 0.61951941 0.21372594 -0.62932003 0.67166829 0.20724295 -0.45560905 0.69942844 0.20287399 -0.33693206\n\t\t 0.67721844 0.095856771 -0.29559505 0.68489945 0.098749802 -0.11300854 0.65862644 0.047366187 -0.097838029\n\t\t 0.6964224 0.11917 -0.056279033 0.68500841 0.098263517 -0.0041570365 0.7221694 0.16953899 -0.063356042\n\t\t 0.72403741 0.17372401 -0.065413043 0.6602174 0.042235777 -0.27400762 0.49262238 0.67058498 -0.039212063\n\t\t 0.51552641 0.66980398 -0.046637073 0.49324936 0.65603799 -0.012057066 0.51715642 0.653615 -0.016137064\n\t\t 0.46828836 0.64836401 -0.010672063 0.46813735 0.66266698 -0.037241071 0.46837935 0.674429 -0.057257071\n\t\t 0.51624441 0.61356801 0.057383925 0.49073735 0.61593598 0.061623931 0.48789042 0.58024698 0.12682194\n\t\t 0.51491344 0.57934201 0.11978093 0.47804335 0.521622 0.22688994 0.50493342 0.51809198 0.22448793\n\t\t 0.47110742 0.49502903 0.26827893 0.49722335 0.49050802 0.26694894 0.45010337 0.51347798 0.22630093\n\t\t 0.44377041 0.48705506 0.267465 0.44180441 0.47898602 0.28029799 0.46076235 0.57219303 0.12820992\n\t\t 0.46458635 0.60809797 0.062957942 0.42285043 0.46202606 0.263322 0.42908236 0.48847598 0.22222\n\t\t 0.41359943 0.42752606 0.25802398 0.41998836 0.45397598 0.21692199 0.43932137 0.54662102 0.12499192\n\t\t 0.42920142 0.51212102 0.11969393 0.44317737 0.58244801 0.059904933 0.43255937 0.547948 0.054606959\n\t\t 0.44696537 0.62269098 -0.013692066 0.44694737 0.63695699 -0.04020106 0.43585235 0.58819097 -0.01899007\n\t\t 0.43583435 0.60245699 -0.045499057 0.44672036 0.64265299 -0.057617068 0.43543237 0.60999697 -0.060877062\n\t\t 0.43424135 0.61848301 -0.081203058 0.44503036 0.64560801 -0.08405906 0.43265635 0.627442 -0.10400436\n\t\t 0.46525937 0.66789401 -0.12751067 0.49445835 0.67434299 -0.093342967 0.49220037 0.67857999 -0.053504065\n\t\t 0.47007138 0.67326999 -0.089058168 0.5310474 0.67595297 -0.099771477 0.5146994 0.67836601 -0.062712073\n\t\t 0.52199644 0.67664599 -0.076026067 0.53871942 0.57162797 0.095821947 0.51642644 0.51022601 0.22009593\n\t\t 0.52646941 0.57363898 0.11452293 0.52621645 0.49968898 0.21424294 0.5510664 0.561759 0.066672921\n\t\t 0.5076074 0.48179704 0.26460394 0.51770741 0.46762407 0.26079392 0.52471143 0.44113404 0.25281993\n\t\t 0.53923643 0.598997 0.04582493 0.52943742 0.606543 0.05162093 0.55110943 0.572613 0.046932936\n\t\t 0.51470053 0.45817304 0.27319095 0.52164054 0.43050706 0.26537892 0.54201543 0.345635 0.23549893\n\t\t 0.5491454 0.34961897 0.21455893 0.56547642 0.33093601 0.17784092 0.53872544 0.63850701 -0.027182072\n\t\t 0.54352939 0.65124398 -0.10570148 0.53407341 0.66168702 -0.072115079 0.52969241 0.64630598 -0.021680072\n\t\t 0.5259524 0.66625202 -0.058279067 0.49068937 0.47933203 0.27864292 0.46730837 0.47938102 0.28649998\n\t\t 0.46866837 0.48345703 0.27981493 0.44513336 0.47583902 0.27905294 0.41620141 0.41616702 0.26958698\n\t\t 0.41558036 0.41213107 0.275756 0.4985404 0.46594703 0.28326192;\n\tsetAttr \".vt[6474:6639]\" 0.50044543 0.47028303 0.27630994 0.51526654 0.43016702 0.265486\n\t\t 0.5348224 0.348692 0.24582899 0.51153845 0.34638596 0.24445498 0.48822537 0.34512496 0.23390594\n\t\t 0.53650242 0.34993196 0.23694098 0.46439436 0.47443306 0.30462098 0.48950937 0.46915007 0.30564192\n\t\t 0.43813935 0.46684206 0.30100992 0.41825843 0.44259602 0.29336295 0.41991737 0.44964904 0.28274694\n\t\t 0.40993837 0.40912807 0.28516093 0.46272141 0.46696705 0.31248894 0.48567137 0.46231103 0.31386298\n\t\t 0.43884435 0.45965302 0.30852994 0.42093137 0.43667805 0.29999194 0.41428235 0.40513307 0.29090294\n\t\t 0.46209636 0.45674604 0.31352097 0.42651436 0.42989707 0.30374494 0.49511242 0.45306003 0.31270394\n\t\t 0.49908841 0.45994407 0.30434093 0.50434554 0.43684107 0.30989599 0.50920242 0.44279104 0.30121601\n\t\t 0.50320441 0.46859902 0.28426293 0.51541257 0.41365206 0.29476899 0.52044356 0.42437506 0.27199993\n\t\t 0.54015839 0.34437299 0.24498394 0.53117752 0.34101003 0.27717593 0.51013345 0.40869105 0.30385193\n\t\t 0.5240764 0.34255302 0.28885698 0.49613243 0.43108606 0.31152099 0.50129557 0.40591407 0.306077\n\t\t 0.50225055 0.33757007 0.27269 0.47332236 0.33412904 0.26820394 0.49554843 0.33882707 0.28398699\n\t\t 0.46702036 0.33510107 0.27911699 0.50904453 0.45641905 0.27274001 0.50451756 0.47328603 0.277224\n\t\t 0.51236445 0.34752798 0.23542398 0.51399243 0.34245598 0.23335499 0.49439543 0.48213905 0.27960098\n\t\t 0.46870235 0.48688602 0.28103501 0.42099643 0.45394605 0.276187 0.42550537 0.45066702 0.274885\n\t\t 0.41169235 0.41944605 0.27088898 0.50743651 0.45119303 0.27944294 0.51354754 0.45262003 0.27998\n\t\t 0.51399255 0.42432904 0.27195001 0.5121724 0.34118599 0.24293 0.48418641 0.33799899 0.24087501\n\t\t 0.48825443 0.34407997 0.24308094 0.48891637 0.47509807 0.285568 0.49326435 0.47755003 0.28663692\n\t\t 0.46758237 0.48253602 0.287938 0.44431636 0.47183406 0.28542092 0.44071543 0.47468102 0.28698292\n\t\t 0.42488343 0.44663107 0.28105393 0.41061342 0.41514903 0.27744892 0.63008744 0.051500842 0.14217699\n\t\t 0.51085645 0.34294897 0.22426599 0.58203942 0.051500842 0.146312 0.48806143 0.34025997 0.22346494\n\t\t 0.54596144 0.051500842 0.14677998 0.7016654 0.12879901 -0.050910041 0.67852741 0.23661201 0.069120944\n\t\t 0.68775743 0.2942 0.11710992 0.68079442 0.33246797 0.12793294 0.63351041 0.16418003 0.11702195\n\t\t 0.63360542 0.172251 0.071964949 0.5771634 0.430179 0.18852794 0.61663944 0.43031299 0.13439494\n\t\t 0.57725942 0.43825001 0.15120393 0.65768641 0.39770001 0.15145093 0.75951439 0.24095501 -0.049167052\n\t\t 0.6539104 0.050566509 0.012056962 0.6486854 0.047366187 -0.097838134 0.66334343 0.044165805 -0.20773312\n\t\t 0.48596942 0.33927596 0.23121193 0.52915239 0.345222 0.22453293 0.54278439 0.34767199 0.221753\n\t\t 0.41946143 0.40147603 0.29631698 0.46132335 0.43049204 0.30763298 0.46232742 0.40514702 0.30165592\n\t\t 0.44301835 0.45068204 0.310875 0.47975937 0.45366806 0.31506497 0.48898542 0.44429106 0.31385499\n\t\t 0.51401442 0.35099506 0.29336593 0.48605943 0.34720105 0.288638 0.45810443 0.34340703 0.28391099\n\t\t 0.40913531 0.0070272088 -0.81068486 0.4844763 0.0070388168 -0.732283 0.43458331 0.040253535 -0.83271688\n\t\t 0.2665413 0.0070052296 -0.95021999 0.24263133 -0.0022089481 -0.92365801 0.20375533 0.0069974661 -1.0014200211\n\t\t 0.18310033 -0.0022167712 -0.97434103 0.37971029 -0.0021869242 -0.78520888 0.22161733 0.040223822 -1.024838924\n\t\t 0.099991314 0.0069950074 -1.050133944 0.45213631 -0.0021752715 -0.70737988 -0.0024816701 0.0069950521 -1.062116981\n\t\t 0.089169398 -0.0022192448 -1.021981001 0.52912444 0.10007994 -0.7532559 0.5124433 0.040265247 -0.75381988\n\t\t -0.0024816755 0.10102792 -1.12104893 -0.0024816724 0.040221319 -1.087185979 0.5939244 0.355919 0.12696892\n\t\t 0.68089044 0.34053797 0.090608925 0.68989539 0.253407 0.068509936 0.6486004 0.19373401 0.071015954\n\t\t 0.68785244 0.30227101 0.079785943 0.65778244 0.40577 0.11675194 0.67392844 0.37880498 0.10143092\n\t\t 0.72480243 0.18834402 -0.13133195 0.69955939 0.133707 -0.069857039 0.69741744 0.129355 -0.07016404\n\t\t 0.70992345 0.123215 -0.075022042 0.69943243 0.12465401 -0.050547034 0.73231143 0.16249402 -0.075328045\n\t\t 0.72560644 0.17874499 -0.073356047 0.72499543 0.18916501 -0.13220605 0.7264024 0.19651 -0.14027065\n\t\t 0.69150144 0.109403 -0.10906604 0.71481144 0.12872101 -0.069240049 0.71790445 0.132607 -0.068959042\n\t\t 0.71345741 0.16200902 -0.075841047 0.71545345 0.16627701 -0.077806048 0.73401541 0.16675802 -0.077288046\n\t\t 0.73420441 0.17231999 -0.084894046 0.71795541 0.17187102 -0.085451044 0.69092339 0.10838099 -0.10941364\n\t\t 0.69505543 0.12333201 -0.076375037 0.091472149 0.800219 -0.59267807 0.53678739 0.46710801 0.21394092\n\t\t 0.5328564 0.47008896 0.21657494 0.61040741 0.45464599 0.17499092 0.6107254 0.447272 0.17840993\n\t\t 0.69541442 0.41407496 0.13854092 0.70042944 0.41794497 0.13152894 0.70742244 0.380629 0.12393692\n\t\t 0.72151244 0.33707899 0.10406294 0.73012245 0.29058701 0.091508925 0.73754042 0.23790501 0.078382939\n\t\t 0.7152884 0.19141202 0.081986934 0.66816241 0.10333203 0.09561795 0.67027843 0.098215148 0.089138955\n\t\t 0.64738941 0.052336231 0.092682004 -0.48471865 -0.46986902 -0.38022289 -0.51104271 -0.45303202 -0.45197389\n\t\t -0.46144465 -0.46488702 -0.38810384 -0.53250057 -0.45822203 -0.44057488 -0.56259573 -0.45471102 -0.47692189\n\t\t -0.5418666 -0.44929704 -0.48942989 -0.5934217 -0.45583704 -0.5146749 -0.57293159 -0.45007902 -0.52754188\n\t\t -0.61023456 -0.470438 -0.50313985 -0.57970756 -0.468979 -0.46602088 -0.55036861 -0.47224104 -0.43095285\n\t\t -0.50439656 -0.48359102 -0.37405884 -0.5617246 -0.49327201 -0.42467588 -0.51727659 -0.50428098 -0.37063989\n\t\t -0.59039867 -0.49024701 -0.45848489 -0.62060958 -0.49197704 -0.49478582 -0.62325257 -0.51696903 -0.49072984\n\t\t -0.59332556 -0.51506799 -0.45530587 -0.56512958 -0.51790202 -0.42254683;\n\tsetAttr \".vt[6640:6805]\" -0.52170455 -0.52857703 -0.37036589 -0.55972958 -0.542454 -0.42506784\n\t\t -0.51664555 -0.55285501 -0.37341088 -0.58771557 -0.53973198 -0.45715588 -0.61743569 -0.54167199 -0.49178189\n\t\t -0.60435957 -0.562415 -0.49758089 -0.57474267 -0.56056702 -0.46356189 -0.54667658 -0.56326902 -0.43167984\n\t\t -0.50322956 -0.573493 -0.3791889 -0.52768469 -0.57695901 -0.44152382 -0.48319563 -0.58713698 -0.38691485\n\t\t -0.55611873 -0.57417798 -0.47371489 -0.58575755 -0.57581198 -0.5074228 -0.56462258 -0.58015501 -0.5196799\n\t\t -0.50582057 -0.581765 -0.45300284 -0.6335187 -0.57102102 -0.5325228 -0.64696556 -0.55053198 -0.52771783\n\t\t -0.65296859 -0.52590197 -0.52748585 -0.65028757 -0.50078601 -0.53204989 -0.63966572 -0.47895104 -0.54054189\n\t\t -0.6224277 -0.46392101 -0.5518018 -0.60140371 -0.45767105 -0.56404185 -0.6479376 -0.47573 -0.58872688\n\t\t -0.62596256 -0.46897304 -0.59941089 -0.66827869 -0.48803109 -0.62587488 -0.64528757 -0.48088807 -0.63412988\n\t\t -0.68177456 -0.49759007 -0.6636709 -0.65805656 -0.49031705 -0.66867989 -0.70130169 -0.51332706 -0.65899289\n\t\t -0.6872077 -0.50374407 -0.61801088 -0.66599256 -0.49116904 -0.5786798 -0.67716259 -0.51324898 -0.5708549\n\t\t -0.69896656 -0.52593905 -0.61177492 -0.71343172 -0.53543007 -0.65538681 -0.71664757 -0.56035209 -0.65334785\n\t\t -0.7020846 -0.55104804 -0.60803288 -0.68005168 -0.53841299 -0.56633282 -0.6738736 -0.56288201 -0.56595087\n\t\t -0.69572359 -0.57529306 -0.6074689 -0.71008372 -0.58433807 -0.65325689 -0.69510472 -0.60384607 -0.65505189\n\t\t -0.68120468 -0.59509104 -0.6100409 -0.65990472 -0.583031 -0.5696038 -0.63999772 -0.59555501 -0.5768888\n\t\t -0.61440855 -0.58401799 -0.5413419 -0.66044956 -0.60718304 -0.61547989 -0.67369157 -0.61566406 -0.65852988\n\t\t -0.64929157 -0.61833107 -0.66310585 -0.63679856 -0.61007208 -0.62285888 -0.61735368 -0.59888601 -0.58657682\n\t\t -0.59271055 -0.58787799 -0.55270183 -0.57168657 -0.58162802 -0.56494188 -0.59537858 -0.59212899 -0.59726089\n\t\t -0.61380768 -0.60292906 -0.63111389 -0.65307772 -0.62055707 -0.70887387 -0.67764771 -0.61775506 -0.70745587\n\t\t -0.69928873 -0.60594308 -0.70585191 -0.71451861 -0.58658606 -0.70430291 -0.72132057 -0.56286907 -0.70303792\n\t\t -0.71828955 -0.53829706 -0.70226592 -0.70626771 -0.51656806 -0.70208091 -0.68675172 -0.50117403 -0.70253789\n\t\t -0.66294873 -0.49416208 -0.70354187 -0.68418372 -0.49869007 -0.7410959 -0.66084856 -0.49232805 -0.73773688\n\t\t -0.6750446 -0.49004608 -0.77796388 -0.65264368 -0.48472208 -0.7702859 -0.66030872 -0.47514707 -0.8117609\n\t\t -0.63921869 -0.47124809 -0.80021191 -0.67669868 -0.48697406 -0.82531691 -0.69293571 -0.50351906 -0.78710991\n\t\t -0.70313555 -0.51334107 -0.74540889 -0.71458358 -0.53434604 -0.75004691 -0.70335567 -0.52338308 -0.79636592\n\t\t -0.68564868 -0.50521606 -0.83885688 -0.6861167 -0.52689904 -0.85036188 -0.70504272 -0.54642403 -0.80434489\n\t\t -0.71711469 -0.55832005 -0.75430387 -0.70997071 -0.58166307 -0.75750291 -0.69737858 -0.56919205 -0.80975688\n\t\t -0.67768258 -0.54879707 -0.85796189 -0.66195458 -0.56763506 -0.86067587 -0.68187368 -0.58830309 -0.81189489\n\t\t -0.69459772 -0.60091704 -0.75920987 -0.67304671 -0.61292505 -0.75909686 -0.6606136 -0.60063905 -0.8102929\n\t\t -0.64107758 -0.58036304 -0.85788387 -0.61836767 -0.58532107 -0.85021687 -0.63699859 -0.60462505 -0.80533689\n\t\t -0.64877456 -0.61618006 -0.75725287 -0.61459857 -0.59930104 -0.79765987 -0.62544072 -0.60981804 -0.75389391\n\t\t -0.59727669 -0.58142203 -0.83866787 -0.59349871 -0.55769604 -0.88898492 -0.61516458 -0.55156404 -0.89870787\n\t\t -0.6356836 -0.53844905 -0.90232188 -0.65182269 -0.52010208 -0.89901489 -0.66134667 -0.49946505 -0.8895539\n\t\t -0.66250467 -0.47964907 -0.87515587 -0.65545368 -0.46357805 -0.85816187 -0.64095271 -0.45390207 -0.84110689\n\t\t -0.6214577 -0.45181206 -0.82653487 -0.6175006 -0.42684007 -0.86555886 -0.59986359 -0.42691505 -0.84871888\n\t\t -0.59048158 -0.39448905 -0.88467789 -0.5749386 -0.39705807 -0.86622691 -0.56042057 -0.35737705 -0.89802188\n\t\t -0.5471856 -0.36273909 -0.87852186 -0.56748658 -0.35820806 -0.92094392 -0.6002667 -0.39860409 -0.90633386\n\t\t -0.62978268 -0.43392509 -0.88528788 -0.63458169 -0.44736409 -0.9049589 -0.6025387 -0.40903908 -0.92796391\n\t\t -0.56703269 -0.36535507 -0.94386888 -0.55942255 -0.37750506 -0.96337587 -0.59725571 -0.4239881 -0.94634187\n\t\t -0.63147771 -0.4649021 -0.92164087 -0.62062871 -0.4839831 -0.93261987 -0.58492672 -0.44131505 -0.95847988\n\t\t -0.5455457 -0.39297509 -0.97629791 -0.5277186 -0.40932709 -0.9809649 -0.56766868 -0.45834106 -0.96281391\n\t\t -0.6039567 -0.50170004 -0.93648291 -0.58381271 -0.51524508 -0.93233788 -0.54796058 -0.47240907 -0.95834988\n\t\t -0.5085476 -0.42405707 -0.97631389 -0.4909457 -0.43503308 -0.96340489 -0.52883857 -0.48153806 -0.94610089\n\t\t -0.56333971 -0.52276307 -0.92111987 -0.51329672 -0.48410708 -0.92764992 -0.4506067 -0.3842631 -0.9725129\n\t\t -0.46651071 -0.37119406 -0.98580289 -0.48500177 -0.35561305 -0.9905889 -0.50331455 -0.3398391 -0.9857769\n\t\t -0.51872557 -0.32623106 -0.97246391 -0.52872169 -0.31699109 -0.95236892 -0.53202361 -0.31332707 -0.92875588\n\t\t -0.52784669 -0.31603509 -0.90514886 -0.51710659 -0.32446006 -0.88506788 -0.49393669 -0.27322006 -0.90427488\n\t\t -0.48576671 -0.28478506 -0.88419092 -0.4598687 -0.23169307 -0.89361489 -0.4542307 -0.24627608 -0.8742159\n\t\t -0.42682171 -0.19421208 -0.87138492 -0.42356369 -0.21149807 -0.85346991 -0.42245969 -0.18140708 -0.8924709\n\t\t -0.45821869 -0.22196408 -0.9164139 -0.49517071 -0.2669251 -0.9278779 -0.4889937 -0.2670911 -0.9514789\n\t\t -0.4492377 -0.21879907 -0.93921191 -0.41084269 -0.17525607 -0.91358191 -0.3939887 -0.17641507 -0.93156987\n\t\t -0.43455377 -0.22241108 -0.95860791 -0.47661769 -0.27344108 -0.9715569 -0.45971176 -0.28524208 -0.98485088\n\t\t -0.41621369 -0.23251808 -0.97145087 -0.37429971 -0.18500307 -0.9435119 -0.35482669 -0.19944708 -0.94786489\n\t\t -0.39709771 -0.24735607 -0.97608191 -0.44097576 -0.3005181 -0.98964292 -0.42324474 -0.31703907 -0.98484087\n\t\t -0.38014269 -0.26481509 -0.97144592 -0.3386007 -0.21774407 -0.94364089 -0.32791469 -0.23701108 -0.9318099\n\t\t -0.36779276 -0.2821871 -0.95859987 -0.40912375 -0.33229208 -0.9715389;\n\tsetAttr \".vt[6806:6971]\" -0.40095371 -0.34385705 -0.95145488 -0.36215469 -0.2967701 -0.93920088\n\t\t -0.2907877 -0.19983107 -0.88928491 -0.30001071 -0.17904608 -0.8994469 -0.31561771 -0.16010807 -0.902946\n\t\t -0.3354477 -0.14603308 -0.8989659 -0.35637569 -0.13872907 -0.888394 -0.3751967 -0.13960806 -0.87260199\n\t\t -0.38918671 -0.14821705 -0.8541519 -0.39597371 -0.16353606 -0.83579886 -0.39482969 -0.18301407 -0.82027888\n\t\t -0.3684957 -0.13924307 -0.79098403 -0.36916071 -0.16044106 -0.778386 -0.34556171 -0.12091106 -0.74106389\n\t\t -0.34768769 -0.14339605 -0.73153287 -0.3180117 -0.10044204 -0.64241099 -0.3218537 -0.12435304 -0.63792688\n\t\t -0.30545071 -0.079965547 -0.64800692 -0.3349967 -0.10210506 -0.75256598 -0.3596237 -0.12193606 -0.80600291\n\t\t -0.3435837 -0.11136807 -0.82120687 -0.31728569 -0.090051159 -0.76433301 -0.28576469 -0.066243738 -0.65388888\n\t\t -0.26217169 -0.061057344 -0.6591689 -0.29535371 -0.086279958 -0.77460003 -0.3230527 -0.10885107 -0.83432287\n\t\t -0.30103371 -0.11510406 -0.84322798 -0.27243268 -0.091717057 -0.78171188 -0.23817363 -0.065562144 -0.66300297\n\t\t -0.21736766 -0.078704238 -0.66487491 -0.25198069 -0.10518906 -0.7847299 -0.28087071 -0.12885106 -0.84675801\n\t\t -0.2657707 -0.14826205 -0.84414601 -0.23727667 -0.12493306 -0.78301889 -0.20311564 -0.098796651 -0.664415\n\t\t -0.19728567 -0.12256805 -0.66178298 -0.23028567 -0.14775605 -0.77702087 -0.25778669 -0.17022006 -0.83602291\n\t\t -0.25845069 -0.19141906 -0.82342398 -0.19457564 -0.092262238 -0.55804694 -0.20871463 -0.072082743 -0.55810595\n\t\t -0.22960867 -0.05902335 -0.55746996 -0.20871463 -0.072082728 -0.50624394 -0.22960864 -0.059023336 -0.50623995\n\t\t -0.25387564 -0.054751754 -0.55626094 -0.27788463 -0.060291737 -0.55464196 -0.25387564 -0.054751739 -0.50623393\n\t\t -0.27788463 -0.060291931 -0.50622499 -0.29806471 -0.074430645 -0.55287099 -0.31112364 -0.095324837 -0.55121791\n\t\t -0.29806471 -0.07443054 -0.50621498 -0.31112364 -0.095324837 -0.50620592 -0.31539571 -0.11959204 -0.54992497\n\t\t -0.31539571 -0.11959204 -0.50619888 -0.3098557 -0.14360103 -0.5492059 -0.3098557 -0.14360103 -0.50619495\n\t\t -0.2957167 -0.16378005 -0.54914689 -0.3017717 -0.16821705 -0.63483298 -0.2748217 -0.17684005 -0.54978299\n\t\t -0.2957167 -0.16378003 -0.50619495 -0.2748217 -0.17684004 -0.50619793 -0.25055566 -0.18111104 -0.55099297\n\t\t -0.25696871 -0.18586305 -0.64054 -0.22654665 -0.17557104 -0.55261195 -0.25055563 -0.18111102 -0.50620496\n\t\t -0.22654665 -0.17557102 -0.5062139 -0.20636667 -0.16143204 -0.55438197 -0.21368864 -0.16695504 -0.65170193\n\t\t -0.20636664 -0.16143203 -0.50622296 -0.20112766 -0.14647904 -0.65729702 -0.23241167 -0.17024106 -0.76749003\n\t\t -0.24297667 -0.18904606 -0.755988 -0.26732269 -0.20872606 -0.808406 -0.2896437 -0.21930908 -0.87376499\n\t\t -0.29643071 -0.23462808 -0.85541201 -0.32465571 -0.25429806 -0.91389489 -0.3290177 -0.26710305 -0.89280891\n\t\t -0.3638047 -0.30649906 -0.91640186 -0.39971969 -0.35015208 -0.92785192 -0.43986776 -0.3926881 -0.95243287\n\t\t -0.43568969 -0.39539605 -0.9288249 -0.47771069 -0.44039506 -0.94390589 -0.47064471 -0.43956405 -0.92098391\n\t\t -0.50351071 -0.47999108 -0.90599287 -0.54570156 -0.52283907 -0.90427989 -0.53341973 -0.51575404 -0.88455087\n\t\t -0.55950159 -0.54593009 -0.85735786 -0.58088768 -0.56959605 -0.82511187 -0.59670657 -0.58582807 -0.78851289\n\t\t -0.60648757 -0.59516704 -0.74958086 -0.62927473 -0.61354506 -0.70987689 -0.60975856 -0.59815204 -0.71033388\n\t\t -0.62557268 -0.61105806 -0.66811585 -0.60604668 -0.59532207 -0.67279387 -0.59487867 -0.58721608 -0.6389789\n\t\t -0.57732368 -0.57669008 -0.60730886 -0.55444759 -0.56659901 -0.57620287 -0.54413271 -0.57439703 -0.53254688\n\t\t -0.52731967 -0.55979699 -0.54408085 -0.51411659 -0.57340699 -0.49846089 -0.53484571 -0.578821 -0.48595282\n\t\t -0.48436171 -0.57657403 -0.4644019 -0.49700469 -0.55913901 -0.50936186 -0.46649364 -0.56255502 -0.47402388\n\t\t -0.4365207 -0.58704603 -0.40323985 -0.4168427 -0.57332402 -0.40940493 -0.45513764 -0.54152399 -0.4803009\n\t\t -0.40396264 -0.552634 -0.41282389 -0.4863137 -0.537871 -0.51689792 -0.51694369 -0.538257 -0.55243492\n\t\t -0.5143016 -0.51326603 -0.5564909 -0.4833867 -0.51305002 -0.52007592 -0.4517327 -0.51689398 -0.48242989\n\t\t -0.3995347 -0.528337 -0.41309685 -0.45713371 -0.492342 -0.4799079 -0.40459371 -0.50405902 -0.41005188\n\t\t -0.48899668 -0.48838603 -0.51822591 -0.52011871 -0.48856199 -0.55543888 -0.5331946 -0.46781904 -0.54963988\n\t\t -0.50196862 -0.46755201 -0.5118199 -0.4701857 -0.47152799 -0.4732959 -0.4180097 -0.48342103 -0.40427393\n\t\t -0.4891777 -0.45783702 -0.46345288 -0.43804371 -0.46977699 -0.39654788 -0.52059269 -0.45394003 -0.5016669\n\t\t -0.55179667 -0.45442206 -0.5397979 -0.56059557 -0.47452801 -0.58422089 -0.54714757 -0.49501699 -0.58902586\n\t\t -0.54114568 -0.51964802 -0.5892579 -0.5438267 -0.54476303 -0.58469379 -0.56615472 -0.55461109 -0.61513293\n\t\t -0.58311957 -0.56502104 -0.64521492 -0.59391659 -0.57321805 -0.67639989 -0.59070057 -0.54829603 -0.67843789\n\t\t -0.58000171 -0.53991205 -0.64895588 -0.56326473 -0.52944607 -0.61965489 -0.5694437 -0.50497806 -0.62003589\n\t\t -0.58636272 -0.51566708 -0.64952087 -0.59726459 -0.52431107 -0.6785289 -0.61224359 -0.50480205 -0.67673492\n\t\t -0.6008817 -0.49587005 -0.64694786 -0.58341169 -0.48482805 -0.61638391 -0.60331959 -0.47230405 -0.60909891\n\t\t -0.57970572 -0.461532 -0.5754019 -0.62163657 -0.48377705 -0.64150989 -0.63365656 -0.49298507 -0.67325687\n\t\t -0.61673772 -0.50877607 -0.70656389 -0.6015076 -0.52813405 -0.7081129 -0.5947057 -0.55185008 -0.70937687\n\t\t -0.59773672 -0.57642305 -0.71014988 -0.59503973 -0.57416207 -0.7449429 -0.58628756 -0.56596303 -0.77925789\n\t\t -0.57193768 -0.55135304 -0.8115719 -0.5714696 -0.52967006 -0.80006689 -0.58459955 -0.54292303 -0.7712779\n\t\t -0.59250867 -0.55018806 -0.74068588 -0.59965259 -0.52684504 -0.7374869 -0.59226459 -0.52015406 -0.76586586\n\t\t -0.57990372 -0.50777209 -0.79246789 -0.59563059 -0.48893309 -0.7897529 -0.60776973 -0.50104308 -0.7637279\n\t\t -0.61502558 -0.50759107 -0.73577988 -0.63657773 -0.49558306 -0.73589289 -0.63837856 -0.4969641 -0.70495987\n\t\t -0.62902868 -0.48870808 -0.7653299 -0.61650872 -0.47620606 -0.79254591;\n\tsetAttr \".vt[6972:7137]\" -0.57927167 -0.47105807 -0.81319886 -0.56313258 -0.48940605 -0.8165049\n\t\t -0.5536086 -0.51004308 -0.82596588 -0.5524506 -0.52985907 -0.84036487 -0.52862072 -0.50231504 -0.86487991\n\t\t -0.5012387 -0.46955609 -0.88436389 -0.47109869 -0.43241709 -0.8980599 -0.47870868 -0.42026705 -0.87855089\n\t\t -0.5065217 -0.45460707 -0.86598587 -0.53172469 -0.48477709 -0.84819889 -0.54257458 -0.4656961 -0.83721888\n\t\t -0.51885068 -0.43728006 -0.85384786 -0.49258569 -0.40479708 -0.86562991 -0.51041269 -0.38844508 -0.86096287\n\t\t -0.53610855 -0.42025506 -0.84951389 -0.55924571 -0.44797906 -0.8333559 -0.57938969 -0.43443307 -0.83750087\n\t\t -0.59979069 -0.45794407 -0.81681287 -0.55581659 -0.40618607 -0.85397792 -0.52958369 -0.3737151 -0.86561388\n\t\t -0.48271269 -0.35310906 -0.86699289 -0.4643997 -0.36888409 -0.87180489 -0.44898871 -0.38249207 -0.88511688\n\t\t -0.43899271 -0.39173108 -0.90521288 -0.40589669 -0.34998608 -0.90425086 -0.3727867 -0.30966505 -0.89360386\n\t\t -0.34063569 -0.27325305 -0.87169689 -0.35748971 -0.27209407 -0.85370988 -0.38746971 -0.30605206 -0.8742069\n\t\t -0.4182727 -0.3436361 -0.88417292 -0.4351787 -0.33183506 -0.87087989 -0.4058097 -0.29594505 -0.8613649\n\t\t -0.37717769 -0.26350605 -0.84176791 -0.39665169 -0.24906206 -0.83741486 -0.42492568 -0.28110707 -0.85673392\n\t\t -0.4539147 -0.31656006 -0.86608791 -0.47164571 -0.30003807 -0.8708899 -0.50120366 -0.33752906 -0.87177789\n\t\t -0.4418807 -0.26364806 -0.86136991 -0.41287771 -0.23076606 -0.84163791 -0.36999869 -0.22273706 -0.80661792\n\t\t -0.3501687 -0.23681206 -0.8105979 -0.32924071 -0.24411605 -0.82116991 -0.31041971 -0.24323706 -0.83696187\n\t\t -0.28336269 -0.21929406 -0.79320186 -0.26068771 -0.20110106 -0.74422091 -0.23337467 -0.18067704 -0.64582002\n\t\t -0.28261968 -0.20487206 -0.73395389 -0.30389369 -0.22181106 -0.78008586 -0.32591268 -0.21555705 -0.77118099\n\t\t -0.30554071 -0.19943406 -0.726843 -0.28096569 -0.18135904 -0.63670599 -0.32599169 -0.18596207 -0.72382492\n\t\t -0.3460767 -0.20181106 -0.7676509 -0.3611767 -0.18239906 -0.7702629 -0.38560671 -0.20379905 -0.81011689\n\t\t -0.34069669 -0.16621906 -0.72553504 -0.31602371 -0.14812404 -0.6352939 -0.5740037 -0.55560607 -0.87441391\n\t\t -0.19457564 -0.092262238 -0.50624394 -0.18903564 -0.11627103 -0.50623995 -0.18903567 -0.11627103 -0.55732799\n\t\t -0.19330764 -0.14053804 -0.5062319 -0.19330764 -0.14053804 -0.55603492 -0.46374571 -0.47568899 -0.33303291\n\t\t -0.43959969 -0.47078103 -0.32197788 -0.46374571 -0.47568899 -0.32197788 -0.43959969 -0.47078103 -0.33502787\n\t\t -0.46584263 -0.47510701 -0.34537289 -0.44178364 -0.47019202 -0.3493529 -0.48630071 -0.48872203 -0.34242588\n\t\t -0.48428971 -0.48929304 -0.33157587 -0.48428971 -0.48929304 -0.32197788 -0.49789369 -0.50983697 -0.33090484\n\t\t -0.49789369 -0.50983697 -0.32197785 -0.49983165 -0.50928098 -0.34100884 -0.5046916 -0.53344202 -0.34127486\n\t\t -0.50280058 -0.53398299 -0.33108789 -0.50280058 -0.53398299 -0.32197785 -0.49789369 -0.55812901 -0.33213288\n\t\t -0.49789369 -0.55812901 -0.32197684 -0.49976864 -0.55760199 -0.34325087 -0.4861837 -0.57815498 -0.34657484\n\t\t -0.48428971 -0.57867301 -0.33384889 -0.48428971 -0.57867301 -0.32197684 -0.46374571 -0.59227699 -0.33599788\n\t\t -0.46374571 -0.59227699 -0.32197785 -0.46569064 -0.59176302 -0.35078585 -0.43959969 -0.59718502 -0.33824289\n\t\t -0.43959969 -0.59718502 -0.32197785 -0.41545263 -0.59227699 -0.34023684 -0.41545263 -0.59227699 -0.32197785\n\t\t -0.39490864 -0.57867301 -0.34169388 -0.3971017 -0.57813799 -0.36214894 -0.44161865 -0.59666902 -0.35522088\n\t\t -0.39490864 -0.57867301 -0.3219769 -0.38130465 -0.55812901 -0.34236589 -0.38130465 -0.55812901 -0.3219769\n\t\t -0.38357064 -0.55757999 -0.36356589 -0.37871069 -0.533418 -0.36329985 -0.37639764 -0.53398299 -0.34218287\n\t\t -0.37639764 -0.53398299 -0.32197788 -0.38130465 -0.50983697 -0.34113789 -0.38130465 -0.50983697 -0.32197788\n\t\t -0.38363364 -0.50925899 -0.36132389 -0.3972187 -0.48870504 -0.35799989 -0.39490864 -0.48929304 -0.33942187\n\t\t -0.39490864 -0.48929304 -0.32197788 -0.41545263 -0.47568899 -0.33727288 -0.41545263 -0.47568899 -0.32197788\n\t\t -0.41771165 -0.47509801 -0.35378888 -0.4597947 -0.59202802 -0.39535889 -0.41755965 -0.59175402 -0.35920089\n\t\t -0.26398364 -0.49650401 -0.1421625 -0.25384665 -0.49595201 -0.17404771 -0.24540961 -0.49251103 -0.14757791\n\t\t -0.27189964 -0.50002998 -0.16704819 -0.27872565 -0.50486201 -0.18283193 -0.26108363 -0.50069302 -0.19045165\n\t\t -0.28811565 -0.51304799 -0.2017262 -0.27097663 -0.50872201 -0.2099631 -0.30200565 -0.52397299 -0.19473758\n\t\t -0.29325864 -0.51563799 -0.1766903 -0.28690663 -0.51069701 -0.16163439 -0.27955064 -0.50704497 -0.1381837\n\t\t -0.29652363 -0.52640003 -0.1586521 -0.28968063 -0.52260399 -0.13625489 -0.30239165 -0.53146499 -0.17299259\n\t\t -0.31042963 -0.53993899 -0.19010013 -0.31245965 -0.55847698 -0.18838674 -0.30510864 -0.54993498 -0.17215769\n\t\t -0.29967663 -0.54477698 -0.15840709 -0.29322565 -0.54085201 -0.13653779 -0.29572663 -0.56330299 -0.16102168\n\t\t -0.28947765 -0.559295 -0.1390532 -0.30083263 -0.56847101 -0.17440669 -0.30761263 -0.57695001 -0.18996301\n\t\t -0.29678765 -0.59264398 -0.19448259 -0.29033664 -0.58434999 -0.17932582 -0.28536865 -0.57925802 -0.16605499\n\t\t -0.27909565 -0.57522303 -0.1434117 -0.26975363 -0.590065 -0.17289189 -0.26320863 -0.58605999 -0.14909449\n\t\t -0.27483064 -0.59500998 -0.1863088 -0.28130165 -0.60302597 -0.20138669 -0.26362464 -0.60671502 -0.20955428\n\t\t -0.28680265 -0.55846202 -0.1202437 -0.29053664 -0.53998101 -0.118747 -0.28967464 -0.540236 -0.099657796\n\t\t -0.28589264 -0.521631 -0.099657997 -0.28683063 -0.521626 -0.1184754 -0.27541164 -0.50580198 -0.099657997\n\t\t -0.27646464 -0.50599402 -0.11943629 -0.25958163 -0.49532104 -0.099657804 -0.26068264 -0.49550104 -0.1215602\n\t\t -0.2419856 -0.49160403 -0.1245222 -0.24097762 -0.491539 -0.099658005 -0.28589264 -0.55884099 -0.099657796\n\t\t -0.2231086 -0.49529803 -0.1279299 -0.22651061 -0.49615103 -0.15370001 -0.23535463 -0.49956703 -0.18165708\n\t\t -0.21023461 -0.506639 -0.1595434 -0.21932061 -0.51008898 -0.18866637 -0.19934961 -0.52265102 -0.16413301\n\t\t -0.2084756 -0.52618802 -0.19390202 -0.19528762 -0.54151702 -0.16681081;\n\tsetAttr \".vt[7138:7303]\" -0.20425661 -0.54516399 -0.1966318 -0.19896461 -0.56034499 -0.1670678\n\t\t -0.20759161 -0.56409502 -0.19631945 -0.20951261 -0.57628697 -0.16497189 -0.21765664 -0.58012098 -0.19315699\n\t\t -0.22555362 -0.58670902 -0.16076899 -0.23312265 -0.59060502 -0.18754788 -0.2514146 -0.59419501 -0.18044081\n\t\t -0.22407264 -0.58471602 -0.2081905 -0.2390006 -0.595272 -0.2019053 -0.25681564 -0.598979 -0.19423425\n\t\t -0.23220061 -0.59214598 -0.22483139 -0.21451265 -0.56865299 -0.2120558 -0.22337765 -0.57605797 -0.22961199\n\t\t -0.22109964 -0.55716503 -0.2314463 -0.21158262 -0.54971302 -0.21298461 -0.21605761 -0.53075403 -0.2106759\n\t\t -0.22605161 -0.53830802 -0.22988269 -0.23721062 -0.52239001 -0.22528249 -0.2269756 -0.51469302 -0.2056051\n\t\t -0.24288264 -0.50423098 -0.19846281 -0.25307363 -0.51209199 -0.21824341 -0.23875964 -0.54969501 -0.25240248\n\t\t -0.23302861 -0.56833303 -0.2528798 -0.23434462 -0.587107 -0.24979849 -0.2421516 -0.60320002 -0.24381529\n\t\t -0.25588563 -0.619201 -0.26512858 -0.26822865 -0.63014799 -0.25604057 -0.2753647 -0.641473 -0.28875789\n\t\t -0.30255064 -0.671336 -0.3146919 -0.33940563 -0.71011502 -0.34291589 -0.35113564 -0.72079301 -0.33093184\n\t\t -0.38039869 -0.75186598 -0.37361389 -0.42000064 -0.79064602 -0.40697187 -0.43333063 -0.800668 -0.39547384\n\t\t -0.45268369 -0.82051206 -0.44316989 -0.33360365 -0.69462103 -0.35398084 -0.29704162 -0.65555602 -0.32470688\n\t\t -0.37389264 -0.73668402 -0.38510585 -0.4126547 -0.77572203 -0.41787988 -0.44463965 -0.80571508 -0.45209584\n\t\t -0.4432987 -0.78853905 -0.4593029 -0.4119727 -0.758452 -0.42661387 -0.37399471 -0.71919698 -0.39416689\n\t\t -0.33435163 -0.67684603 -0.36248493 -0.29803169 -0.63747299 -0.33208591 -0.3417927 -0.65948898 -0.36697584\n\t\t -0.30569664 -0.61981201 -0.33552289 -0.3808617 -0.70209002 -0.39929688 -0.41814563 -0.74151897 -0.43176389\n\t\t -0.4488917 -0.77168304 -0.46366182 -0.46036071 -0.75730103 -0.46473983 -0.4300397 -0.72715998 -0.43280888\n\t\t -0.39324763 -0.68772101 -0.39995688 -0.35458171 -0.64504498 -0.36697394 -0.31864265 -0.60519397 -0.3346529\n\t\t -0.37099263 -0.63579702 -0.36232084 -0.3350817 -0.59602797 -0.3294329 -0.40953264 -0.67825103 -0.39592189\n\t\t -0.44614971 -0.71742898 -0.42949885 -0.47628865 -0.74736905 -0.46231389 -0.49435863 -0.74333107 -0.45673388\n\t\t -0.46408364 -0.71372402 -0.42234987 -0.51205373 -0.74626404 -0.4485749 -0.4812777 -0.71705401 -0.41215688\n\t\t -0.4272477 -0.675008 -0.38786489 -0.44378665 -0.678895 -0.37674987 -0.38848165 -0.632999 -0.35382989\n\t\t -0.40440971 -0.63744402 -0.34259486 -0.35241565 -0.59351301 -0.32079789 -0.36797369 -0.59836 -0.3099339\n\t\t -0.52654356 -0.75559205 -0.43919984 -0.49501771 -0.72675002 -0.40060583 -0.45658764 -0.68912101 -0.36440083\n\t\t -0.41635963 -0.64821702 -0.33044189 -0.37944064 -0.60955 -0.2985819 -0.42220363 -0.663912 -0.31927586\n\t\t -0.38481069 -0.62558502 -0.28852785 -0.46334571 -0.70439702 -0.35275584 -0.5028196 -0.741638 -0.3895129\n\t\t -0.53520656 -0.77023 -0.43009183 -0.53696156 -0.78767502 -0.42263484 -0.5037486 -0.75918198 -0.38056087\n\t\t -0.46329671 -0.72214198 -0.34357184 -0.42132464 -0.681903 -0.31076688 -0.38354969 -0.643812 -0.2812475\n\t\t -0.41362265 -0.69939601 -0.30637085 -0.37562871 -0.66142499 -0.27800238 -0.45620269 -0.73958898 -0.33840886\n\t\t -0.49740764 -0.77664697 -0.37526387 -0.53127456 -0.80520803 -0.41808188 -0.51933658 -0.82019198 -0.41698083\n\t\t -0.48509464 -0.79141903 -0.37423384 -0.4434827 -0.75414401 -0.33782786 -0.40060771 -0.71380401 -0.30651486\n\t\t -0.36257571 -0.67583197 -0.27904814 -0.38416171 -0.72279203 -0.31129485 -0.34627771 -0.684699 -0.28432679\n\t\t -0.42695469 -0.76344597 -0.34204984 -0.4685387 -0.80110002 -0.37776685 -0.50279456 -0.83018899 -0.41962385\n\t\t -0.48431364 -0.83386302 -0.42548889 -0.45036769 -0.80444199 -0.38517284 -0.40919769 -0.76635802 -0.35026583\n\t\t -0.36681065 -0.72531599 -0.31981784 -0.32921571 -0.68702501 -0.29288089 -0.39287463 -0.76220399 -0.36137983\n\t\t -0.46670863 -0.83034801 -0.4338069 -0.50502557 -0.84891003 -0.4721629 -0.52360159 -0.84515208 -0.46879783\n\t\t -0.54009956 -0.83502805 -0.46731582 -0.55184156 -0.81991404 -0.46800888 -0.55721867 -0.80227405 -0.47069183\n\t\t -0.55508971 -0.78477007 -0.47503889 -0.54606158 -0.77013403 -0.48032781 -0.53128767 -0.76086503 -0.48576289\n\t\t -0.5134446 -0.75801206 -0.49046588 -0.53958458 -0.76236004 -0.5225879 -0.52193272 -0.75948906 -0.52303481\n\t\t -0.5375486 -0.75224906 -0.55791688 -0.52041858 -0.74948305 -0.55393088 -0.52578568 -0.73203307 -0.59061682\n\t\t -0.50949371 -0.72971505 -0.58264482 -0.53878868 -0.74051404 -0.60005581 -0.55156171 -0.76133907 -0.56264186\n\t\t -0.55419356 -0.77163106 -0.52210379 -0.56310868 -0.78627908 -0.52170289 -0.55990469 -0.77577507 -0.56743181\n\t\t -0.54611856 -0.75427705 -0.60957688 -0.5468356 -0.77097708 -0.61768186 -0.5614956 -0.79309803 -0.57152486\n\t\t -0.56517673 -0.80380607 -0.52142584 -0.55978668 -0.82147604 -0.52129889 -0.55578768 -0.81060904 -0.57420385\n\t\t -0.54052156 -0.78802508 -0.62297881 -0.52844161 -0.80282605 -0.62478387 -0.54396069 -0.82565504 -0.57512486\n\t\t -0.5480777 -0.83661908 -0.52133286 -0.53165656 -0.84675604 -0.52153385 -0.52765572 -0.83576906 -0.57407987\n\t\t -0.51229167 -0.81295806 -0.62268186 -0.49467671 -0.81704009 -0.61714089 -0.50951469 -0.83957607 -0.5713079\n\t\t -0.51319557 -0.85050708 -0.52187586 -0.46937171 -0.78382105 -0.6560539 -0.4862617 -0.77909106 -0.6635859\n\t\t -0.50221258 -0.76882404 -0.66640288 -0.51466757 -0.75443608 -0.66387689 -0.52185369 -0.73827004 -0.65658987\n\t\t -0.52239072 -0.72280508 -0.64548481 -0.51649755 -0.71041304 -0.63246191 -0.50490069 -0.70321405 -0.61955392\n\t\t -0.48975369 -0.70190507 -0.60866785 -0.4770337 -0.66754705 -0.64406085 -0.46329269 -0.66772908 -0.63114089\n\t\t -0.44432771 -0.62678808 -0.6634689 -0.4322077 -0.62886304 -0.64920789 -0.40892369 -0.58269405 -0.67711091\n\t\t -0.39859471 -0.58698106 -0.66201288 -0.4146477 -0.58311903 -0.69508392 -0.4522137 -0.62984806 -0.68042886\n\t\t -0.4869017 -0.67290205 -0.65940392 -0.49101871 -0.68335807 -0.67490488 -0.4543007 -0.63793707 -0.69758391\n\t\t -0.4145357 -0.58854103 -0.71326989 -0.4088037 -0.59794503 -0.72884786;\n\tsetAttr \".vt[7304:7469]\" -0.4504557 -0.64962304 -0.71226889 -0.4889327 -0.69710803 -0.68814987\n\t\t -0.48067871 -0.71207905 -0.69688588 -0.44100571 -0.66318709 -0.7219919 -0.39810368 -0.60999608 -0.73918289\n\t\t -0.38426369 -0.62275404 -0.74292088 -0.42762271 -0.67649007 -0.72548288 -0.46777269 -0.72594708 -0.69997388\n\t\t -0.45208371 -0.73647505 -0.69670087 -0.41227469 -0.68741804 -0.72193789 -0.3693507 -0.63422507 -0.7392059\n\t\t -0.35568169 -0.64271307 -0.72888291 -0.39737171 -0.69439304 -0.71216589 -0.43610269 -0.74218404 -0.68780988\n\t\t -0.38529369 -0.69613904 -0.69744289 -0.31353369 -0.58940804 -0.73772287 -0.3258307 -0.57920408 -0.74841291\n\t\t -0.34019569 -0.56703305 -0.75227791 -0.3544237 -0.55474007 -0.74844491 -0.36635971 -0.54420406 -0.73779291\n\t\t -0.37402171 -0.53717107 -0.72171086 -0.37641671 -0.53458107 -0.70291388 -0.37296271 -0.53702009 -0.68431687\n\t\t -0.3645497 -0.54375905 -0.66869688 -0.33714369 -0.4918561 -0.68334788 -0.33069369 -0.50111103 -0.66763484\n\t\t -0.3021667 -0.44929206 -0.67246091 -0.29764768 -0.46094805 -0.65719891 -0.2687287 -0.41141605 -0.64991593\n\t\t -0.26603171 -0.42518306 -0.6357609 -0.26553869 -0.40088207 -0.66680789 -0.3010827 -0.44118705 -0.69064188\n\t\t -0.33830169 -0.48651206 -0.70205492 -0.33361471 -0.4862631 -0.72093487 -0.29416969 -0.43824905 -0.7089709\n\t\t -0.2565437 -0.39556706 -0.6838479 -0.24337767 -0.39607707 -0.6983909 -0.28273571 -0.44072405 -0.72460788\n\t\t -0.32403371 -0.49094808 -0.7370609 -0.31089571 -0.50001806 -0.7477119 -0.26844671 -0.44842505 -0.73491591\n\t\t -0.22800767 -0.40255705 -0.70798892 -0.21284467 -0.41377506 -0.7114079 -0.25357571 -0.45996305 -0.73856586\n\t\t -0.29632971 -0.51190907 -0.75150788 -0.2825737 -0.52485204 -0.74757987 -0.24043667 -0.47366709 -0.73472786\n\t\t -0.20027967 -0.42814505 -0.70787686 -0.19215067 -0.44336605 -0.69816291 -0.23098767 -0.48737305 -0.72424287\n\t\t -0.2717087 -0.53684008 -0.73680186 -0.15597866 -0.40718305 -0.65668392 -0.16296066 -0.39078504 -0.6650449\n\t\t -0.17504764 -0.37592405 -0.66798788 -0.19050664 -0.36501306 -0.66486388 -0.20686866 -0.35955507 -0.65636885\n\t\t -0.22159167 -0.36065102 -0.64359391 -0.23245063 -0.36787504 -0.62868989 -0.23753066 -0.38032007 -0.61397088\n\t\t -0.23646864 -0.39572906 -0.60169291 -0.20974064 -0.35559905 -0.56884992 -0.21009167 -0.37224203 -0.55889988\n\t\t -0.18653265 -0.33685404 -0.51877797 -0.18803464 -0.35437903 -0.51128387 -0.15853864 -0.31568202 -0.42067194\n\t\t -0.16142164 -0.33414903 -0.41719788 -0.14891663 -0.29968503 -0.42505389 -0.17849366 -0.32192504 -0.52793598\n\t\t -0.20303065 -0.34170806 -0.58087194 -0.19057067 -0.33300906 -0.5931319 -0.16473764 -0.31214902 -0.53738189\n\t\t -0.13365763 -0.28880703 -0.42971095 -0.11528564 -0.28453603 -0.43391293 -0.14759064 -0.30884904 -0.54564297\n\t\t -0.17450663 -0.33064806 -0.603724 -0.15727764 -0.33528107 -0.6108709 -0.12965664 -0.31285203 -0.55133593\n\t\t -0.096573636 -0.28786603 -0.4369629 -0.080366842 -0.29799104 -0.43844596 -0.11368766 -0.32325503 -0.55371392\n\t\t -0.14154167 -0.34591705 -0.613644 -0.12984264 -0.36111706 -0.61144102 -0.10228804 -0.33867407 -0.55227089\n\t\t -0.069324739 -0.31359503 -0.43806294 -0.097023338 -0.35657203 -0.54735899 -0.12381966 -0.37839502 -0.60476291\n\t\t -0.12468866 -0.39510202 -0.5944519 -0.061232533 -0.30738503 -0.33468491 -0.07215184 -0.29179302 -0.33473194\n\t\t -0.088320322 -0.28173202 -0.33422893 -0.072228625 -0.29187202 -0.28356314 -0.088332027 -0.28180701 -0.28356284\n\t\t -0.10710462 -0.27849102 -0.33327293 -0.12567863 -0.28285903 -0.33199793 -0.10703462 -0.27851403 -0.28356284\n\t\t -0.12553963 -0.28278399 -0.28356284 -0.1412646 -0.29385802 -0.33061391 -0.15131164 -0.31002602 -0.32933891\n\t\t -0.14109261 -0.29368103 -0.28356284 -0.15115862 -0.309784 -0.28356314 -0.15457764 -0.32872903 -0.3283509\n\t\t -0.15445164 -0.32848704 -0.28356314 -0.15032265 -0.34715903 -0.32780892 -0.15018161 -0.34699202 -0.28356281\n\t\t -0.13947462 -0.36263001 -0.32776493 -0.14612164 -0.36754102 -0.41484895 -0.12343864 -0.37266999 -0.32824191\n\t\t -0.13928464 -0.36254603 -0.28356314 -0.12317962 -0.37261099 -0.28356281 -0.10476564 -0.37598002 -0.32915992\n\t\t -0.11191164 -0.38107502 -0.41915989 -0.086206242 -0.37174201 -0.33040893 -0.10447662 -0.37590402 -0.28356281\n\t\t -0.085971624 -0.37163299 -0.28356284 -0.07054694 -0.36085701 -0.33178991 -0.07811024 -0.36661303 -0.42788291\n\t\t -0.060369533 -0.34471703 -0.3330909 -0.070418522 -0.36073601 -0.28356284 -0.060353525 -0.34463203 -0.28356284\n\t\t -0.068114437 -0.35072103 -0.43233889 -0.098998152 -0.37422007 -0.53959191 -0.10759264 -0.38890803 -0.5303179\n\t\t -0.13201167 -0.40867102 -0.58229697 -0.16117164 -0.43463606 -0.62909591 -0.18996564 -0.45706105 -0.68350989\n\t\t -0.19379064 -0.46715105 -0.66644788 -0.22691067 -0.49890906 -0.70845687 -0.22858664 -0.50655907 -0.6900869\n\t\t -0.26560169 -0.54593503 -0.72056592 -0.2649717 -0.55083609 -0.70165092 -0.3023577 -0.59795403 -0.7027759\n\t\t -0.34547871 -0.64674509 -0.71330088 -0.3401567 -0.64588803 -0.69509888 -0.37777969 -0.69261104 -0.68025887\n\t\t -0.42234269 -0.74195409 -0.67446089 -0.41284069 -0.73607504 -0.6589089 -0.44294769 -0.77423006 -0.63170493\n\t\t -0.46571469 -0.80502605 -0.59930086 -0.49233064 -0.83617407 -0.56717288 -0.47875163 -0.82641506 -0.5623529\n\t\t -0.49552369 -0.84697104 -0.52231586 -0.48137864 -0.83703405 -0.52275383 -0.47291571 -0.83552009 -0.48239589\n\t\t -0.46459371 -0.82063806 -0.48754889 -0.47319669 -0.82208604 -0.52309382 -0.47112665 -0.81165004 -0.55758381\n\t\t -0.45906064 -0.79092407 -0.58987379 -0.45891365 -0.77434307 -0.58202684 -0.47012669 -0.79449707 -0.55360687\n\t\t -0.4717077 -0.80477303 -0.52332687 -0.46298864 -0.80338305 -0.49171683 -0.46834171 -0.78648609 -0.49426982\n\t\t -0.4771387 -0.78784704 -0.52345681 -0.4759227 -0.77768505 -0.55109286 -0.46533564 -0.75791907 -0.57704484\n\t\t -0.47705564 -0.74380404 -0.57541585 -0.48734763 -0.76337403 -0.55028188 -0.48840365 -0.77345103 -0.52346385\n\t\t -0.47961169 -0.77207905 -0.49495384 -0.49539769 -0.76210904 -0.49362984 -0.50407058 -0.76353407 -0.5233289\n\t\t -0.50290257 -0.75352407 -0.5512898 -0.4924897 -0.73396409 -0.57739389 -0.45813769 -0.71669805 -0.59887791\n\t\t -0.44601765 -0.73046708 -0.60118484 -0.43873671 -0.74610108 -0.60806286;\n\tsetAttr \".vt[7470:7635]\" -0.43767869 -0.76149905 -0.6188159 -0.4092907 -0.72528207 -0.64356685\n\t\t -0.37620869 -0.68417805 -0.66327888 -0.34074369 -0.64009404 -0.6771059 -0.34675971 -0.63057107 -0.66199589\n\t\t -0.3804267 -0.67244208 -0.64903289 -0.41182971 -0.71154308 -0.63072586 -0.42013571 -0.69700807 -0.62245691\n\t\t -0.3898527 -0.65922004 -0.63980889 -0.3573347 -0.61878204 -0.65218687 -0.37077269 -0.60646409 -0.64871991\n\t\t -0.4028827 -0.64639807 -0.63658088 -0.43270871 -0.68368608 -0.61961687 -0.44779769 -0.67347205 -0.62269187\n\t\t -0.47342464 -0.70673603 -0.60152388 -0.4176957 -0.63580203 -0.6399129 -0.3852087 -0.59535706 -0.65219986\n\t\t -0.33849171 -0.56551504 -0.65497988 -0.32474568 -0.57737309 -0.65853888 -0.31306371 -0.58770204 -0.6686309\n\t\t -0.30520669 -0.59493405 -0.68420386 -0.27010271 -0.55058306 -0.68302786 -0.23593664 -0.50892907 -0.67203689\n\t\t -0.20321164 -0.47185707 -0.64968693 -0.21636067 -0.47092605 -0.63569289 -0.24740764 -0.50609803 -0.65696585\n\t\t -0.27979469 -0.54561704 -0.66744989 -0.29254571 -0.53671205 -0.65738785 -0.26119369 -0.49852008 -0.64725792\n\t\t -0.23114868 -0.46451908 -0.62667388 -0.24560764 -0.45374805 -0.6235019 -0.2754117 -0.48744005 -0.6438719\n\t\t -0.30653968 -0.52526808 -0.65386486 -0.31989568 -0.51282305 -0.65746987 -0.35242471 -0.55376905 -0.65856886\n\t\t -0.2881757 -0.47430009 -0.6473549 -0.25781769 -0.43998504 -0.6266759 -0.21762463 -0.42591006 -0.59125495\n\t\t -0.20286967 -0.43642807 -0.59415686 -0.18710767 -0.44188303 -0.60214293 -0.17243268 -0.44125104 -0.61443388\n\t\t -0.14484067 -0.41679502 -0.57022297 -0.12167464 -0.39817303 -0.52099288 -0.093581438 -0.37715903 -0.42325595\n\t\t -0.13876064 -0.40100002 -0.51300895 -0.16084364 -0.41867304 -0.56001496 -0.17750064 -0.41396904 -0.55328298\n\t\t -0.15618664 -0.39686003 -0.50762498 -0.13029864 -0.37757802 -0.41624689 -0.17156464 -0.38668403 -0.50539994\n\t\t -0.19257267 -0.40364802 -0.55069792 -0.20395567 -0.38902903 -0.55266094 -0.22937363 -0.41166103 -0.59388489\n\t\t -0.18267363 -0.37178904 -0.50668395 -0.15696163 -0.35228503 -0.4151929 -0.4872117 -0.84540606 -0.47697389\n\t\t -0.45416969 -0.78201407 -0.64479488 -0.47831771 -0.81414509 -0.60888588 -0.30535269 -0.59594506 -0.72159487\n\t\t -0.15545167 -0.42258805 -0.6439659 -0.064916149 -0.33210203 -0.43593991 -0.061331626 -0.30742401 -0.28356284\n\t\t -0.057061523 -0.32592899 -0.28356284 -0.056992732 -0.32595104 -0.33411491 -0.27636164 -0.57433701 -0.12274209\n\t\t -0.27541164 -0.57467002 -0.099657789 -0.26042965 -0.58503401 -0.12594849 -0.25958163 -0.58515197 -0.099657997\n\t\t -0.24097762 -0.58893299 -0.099657997 -0.22272462 -0.58544099 -0.1324205 -0.24160461 -0.58906698 -0.1293525\n\t\t -0.22237261 -0.58515197 -0.099657997 -0.20664962 -0.57500798 -0.1346871 -0.24441262 -0.59024602 -0.15519719\n\t\t -0.20654361 -0.57467002 -0.099657796 -0.19603461 -0.559129 -0.1357466 -0.19606161 -0.55884099 -0.099657804\n\t\t -0.19225861 -0.54041499 -0.1354825 -0.19228061 -0.540236 -0.099657804 -0.19619361 -0.52168202 -0.1338762\n\t\t -0.19606161 -0.521631 -0.099658005 -0.20694461 -0.505768 -0.1312311 -0.20654361 -0.50580198 -0.099658005\n\t\t -0.22237261 -0.49532104 -0.099658005 -0.30055565 -0.52556801 -0.22439308 -0.28400865 -0.52099502 -0.23332831\n\t\t -0.31722564 -0.54334402 -0.25032318 -0.30122763 -0.538535 -0.25997227 -0.3393057 -0.56730098 -0.2790066\n\t\t -0.3236807 -0.56236601 -0.28932089 -0.3509357 -0.57863498 -0.2686789 -0.32945463 -0.55462903 -0.24113479\n\t\t -0.31360763 -0.53668898 -0.2163533 -0.32104263 -0.55279201 -0.21047908 -0.33587864 -0.57082099 -0.23385729\n\t\t -0.35658565 -0.59482002 -0.25996378 -0.35569263 -0.613217 -0.25411358 -0.33583564 -0.58932501 -0.22950089\n\t\t -0.32206264 -0.57134199 -0.20754698 -0.31632963 -0.58964199 -0.20811969 -0.32913563 -0.607391 -0.22885819\n\t\t -0.34818465 -0.63103801 -0.25215805 -0.33549565 -0.64566499 -0.25417989 -0.31704965 -0.62236702 -0.23184168\n\t\t -0.30491963 -0.60500503 -0.21196508 -0.28930864 -0.61494899 -0.21861209 -0.30122465 -0.631832 -0.23810039\n\t\t -0.31942365 -0.65473098 -0.25996667 -0.30242065 -0.65719402 -0.26850489 -0.28410563 -0.63464803 -0.2465708\n\t\t -0.27194765 -0.618213 -0.22696009 -0.25541964 -0.61401302 -0.23578979 -0.24640164 -0.60281003 -0.21777031\n\t\t -0.28700164 -0.65247798 -0.2785967 -0.31391269 -0.68227202 -0.30353588 -0.24913064 -0.60314399 -0.27247179\n\t\t -0.26945668 -0.625512 -0.2974889 -0.27002063 -0.607153 -0.30349088 -0.24884461 -0.58455098 -0.27699178\n\t\t -0.25543365 -0.56621099 -0.27780378 -0.27732763 -0.58915102 -0.30565488 -0.29002663 -0.574233 -0.30378589\n\t\t -0.2676447 -0.55093098 -0.27490979 -0.25040263 -0.53405899 -0.24856281 -0.26636863 -0.52407002 -0.24181631\n\t\t -0.28378969 -0.54129702 -0.26859558 -0.30635369 -0.56490499 -0.29799688 0.47975537 -0.46986902 -0.38022295\n\t\t 0.50607932 -0.45303202 -0.45197394 0.52753741 -0.45822203 -0.440575 0.45648137 -0.46488702 -0.38810396\n\t\t 0.55763233 -0.45471102 -0.47692195 0.53690344 -0.44929704 -0.48943001 0.5884583 -0.45583704 -0.51467502\n\t\t 0.56796843 -0.45007902 -0.527542 0.6052714 -0.470438 -0.50313997 0.5747444 -0.468979 -0.466021\n\t\t 0.54540545 -0.47224104 -0.43095297 0.4994334 -0.48359102 -0.37405896 0.55676144 -0.49327201 -0.424676\n\t\t 0.51231343 -0.50428098 -0.37063995 0.58543527 -0.49024701 -0.45848501 0.61564642 -0.49197704 -0.49478593\n\t\t 0.61828941 -0.51696903 -0.49072996 0.5883624 -0.51506799 -0.45530599 0.56016642 -0.51790202 -0.42254695\n\t\t 0.51674139 -0.52857703 -0.37036595 0.55476642 -0.542454 -0.42506796 0.51168239 -0.55285501 -0.373411\n\t\t 0.58275241 -0.53973198 -0.457156 0.6124723 -0.54167199 -0.49178201 0.59939641 -0.562415 -0.49758101\n\t\t 0.56977928 -0.56056702 -0.46356201 0.54171342 -0.56326902 -0.43167996 0.49826628 -0.573493 -0.37918895\n\t\t 0.52272129 -0.57695901 -0.44152394 0.47823235 -0.58713698 -0.38691491 0.55115533 -0.57417798 -0.47371501\n\t\t 0.58079439 -0.57581198 -0.50742292 0.6285553 -0.57102102 -0.53252292 0.6420024 -0.55053198 -0.52771795\n\t\t 0.64800543 -0.52590197 -0.52748597 0.64532441 -0.50078601 -0.53205001 0.63470232 -0.47895104 -0.54054201\n\t\t 0.6174643 -0.46392101 -0.55180192 0.59644032 -0.45767105 -0.56404197;\n\tsetAttr \".vt[7636:7801]\" 0.64297444 -0.47573 -0.588727 0.6209994 -0.46897304 -0.59941101\n\t\t 0.6633153 -0.48803109 -0.625875 0.64032441 -0.48088807 -0.63413 0.6768114 -0.49759007 -0.66367102\n\t\t 0.6530934 -0.49031705 -0.66867989 0.6963383 -0.51332706 -0.65899301 0.6822443 -0.50374407 -0.618011\n\t\t 0.6610294 -0.49116904 -0.57867992 0.67219943 -0.51324898 -0.57085502 0.6940034 -0.52593905 -0.61177504\n\t\t 0.70846832 -0.53543007 -0.65538704 0.71168441 -0.56035209 -0.65334797 0.69712144 -0.55104804 -0.60803288\n\t\t 0.67508829 -0.53841299 -0.56633294 0.66891044 -0.56288201 -0.56595099 0.69076043 -0.57529306 -0.6074689\n\t\t 0.70512033 -0.58433807 -0.65325701 0.69014132 -0.60384607 -0.65505189 0.67624128 -0.59509104 -0.61004102\n\t\t 0.65494132 -0.583031 -0.56960392 0.63503432 -0.59555501 -0.57688892 0.60944539 -0.58401799 -0.54134202\n\t\t 0.6554864 -0.60718304 -0.61547989 0.66872841 -0.61566406 -0.65853 0.64432842 -0.61833107 -0.66310596\n\t\t 0.6318354 -0.61007208 -0.622859 0.61239028 -0.59888601 -0.58657694 0.5877474 -0.58787799 -0.55270195\n\t\t 0.56672341 -0.58162802 -0.564942 0.59041542 -0.59212899 -0.59726089 0.64811432 -0.62055707 -0.70887399\n\t\t 0.67268431 -0.61775506 -0.70745599 0.69432533 -0.60594308 -0.70585203 0.70955545 -0.58658606 -0.70430303\n\t\t 0.71635741 -0.56286907 -0.70303792 0.71332639 -0.53829706 -0.70226592 0.70130432 -0.51656806 -0.70208091\n\t\t 0.68178833 -0.50117403 -0.70253801 0.65798533 -0.49416208 -0.70354199 0.67922032 -0.49869007 -0.74109602\n\t\t 0.6558854 -0.49232805 -0.73773688 0.67008144 -0.49004608 -0.777964 0.64768028 -0.48472208 -0.7702859\n\t\t 0.65534532 -0.47514707 -0.81176102 0.63425529 -0.47124809 -0.80021203 0.67173529 -0.48697406 -0.82531703\n\t\t 0.68797231 -0.50351906 -0.78710991 0.69817239 -0.51334107 -0.74540901 0.70962042 -0.53434604 -0.75004691\n\t\t 0.69839227 -0.52338308 -0.79636592 0.68068528 -0.50521606 -0.83885688 0.6811533 -0.52689904 -0.85036188\n\t\t 0.70007932 -0.54642403 -0.80434501 0.71215129 -0.55832005 -0.75430387 0.70500731 -0.58166307 -0.75750303\n\t\t 0.69241542 -0.56919205 -0.80975699 0.67271942 -0.54879707 -0.85796201 0.65699142 -0.56763506 -0.86067587\n\t\t 0.67691028 -0.58830309 -0.81189501 0.68963432 -0.60091704 -0.75920999 0.66808331 -0.61292505 -0.75909698\n\t\t 0.65565044 -0.60063905 -0.8102929 0.63611442 -0.58036304 -0.85788387 0.61340427 -0.58532107 -0.85021698\n\t\t 0.63203543 -0.60462505 -0.80533689 0.6438114 -0.61618006 -0.75725287 0.62047732 -0.60981804 -0.75389391\n\t\t 0.60963541 -0.59930104 -0.79765999 0.58853531 -0.55769604 -0.88898504 0.61020142 -0.55156404 -0.89870799\n\t\t 0.63072044 -0.53844905 -0.90232188 0.64685929 -0.52010208 -0.89901489 0.65638328 -0.49946505 -0.88955402\n\t\t 0.65754128 -0.47964907 -0.87515587 0.65049028 -0.46357805 -0.85816187 0.63598931 -0.45390207 -0.84110701\n\t\t 0.6164943 -0.45181206 -0.82653499 0.61253744 -0.42684007 -0.86555898 0.59490043 -0.42691505 -0.848719\n\t\t 0.58551842 -0.39448905 -0.88467801 0.56997544 -0.39705807 -0.86622703 0.55545741 -0.35737705 -0.89802188\n\t\t 0.54222244 -0.36273909 -0.87852186 0.56252342 -0.35820806 -0.92094392 0.5953033 -0.39860409 -0.90633386\n\t\t 0.62481928 -0.43392509 -0.885288 0.62961829 -0.44736409 -0.9049589 0.59757531 -0.40903908 -0.92796391\n\t\t 0.5620693 -0.36535507 -0.94386899 0.55445939 -0.37750506 -0.96337587 0.59229231 -0.4239881 -0.94634199\n\t\t 0.62651432 -0.4649021 -0.92164099 0.61566532 -0.4839831 -0.93261987 0.57996333 -0.44131505 -0.95848\n\t\t 0.5405823 -0.39297509 -0.97629791 0.52275544 -0.40932709 -0.98096502 0.56270528 -0.45834106 -0.96281391\n\t\t 0.5989933 -0.50170004 -0.93648303 0.57884932 -0.51524508 -0.932338 0.54299742 -0.47240907 -0.95834988\n\t\t 0.50358444 -0.42405707 -0.97631389 0.4859823 -0.43503308 -0.96340501 0.52387542 -0.48153806 -0.94610089\n\t\t 0.55837631 -0.52276307 -0.92111987 0.5407384 -0.52283907 -0.90427989 0.5690403 -0.55560607 -0.87441391\n\t\t 0.4727473 -0.44039506 -0.94390589 0.44564331 -0.3842631 -0.9725129 0.46154732 -0.37119406 -0.98580301\n\t\t 0.48003826 -0.35561305 -0.99058902 0.49835128 -0.3398391 -0.98577702 0.51376241 -0.32623106 -0.97246391\n\t\t 0.52375829 -0.31699109 -0.95236892 0.52706045 -0.31332707 -0.928756 0.5228833 -0.31603509 -0.90514898\n\t\t 0.51214343 -0.32446006 -0.88506788 0.48897329 -0.27322006 -0.90427488 0.48080331 -0.28478506 -0.88419104\n\t\t 0.4549053 -0.23169307 -0.89361501 0.4492673 -0.24627608 -0.8742159 0.42185831 -0.19421208 -0.87138492\n\t\t 0.41860029 -0.21149807 -0.85346991 0.41749629 -0.18140708 -0.8924709 0.4532553 -0.22196408 -0.91641402\n\t\t 0.49020731 -0.2669251 -0.92787802 0.48403031 -0.2670911 -0.9514789 0.44427431 -0.21879907 -0.93921191\n\t\t 0.40587929 -0.17525607 -0.91358191 0.3890253 -0.17641507 -0.93156987 0.42959026 -0.22241108 -0.95860803\n\t\t 0.4716543 -0.27344108 -0.97155702 0.45474824 -0.28524208 -0.984851 0.41125029 -0.23251808 -0.97145087\n\t\t 0.36933631 -0.18500307 -0.9435119 0.34986329 -0.19944708 -0.94786501 0.39213431 -0.24735607 -0.97608191\n\t\t 0.43601224 -0.3005181 -0.98964292 0.41828123 -0.31703907 -0.98484099 0.37517929 -0.26481509 -0.97144604\n\t\t 0.3336373 -0.21774407 -0.94364089 0.32295129 -0.23701108 -0.93181002 0.36282924 -0.2821871 -0.95859987\n\t\t 0.40416023 -0.33229208 -0.97153902 0.35719129 -0.2967701 -0.939201 0.31969231 -0.25429806 -0.91389501\n\t\t 0.2858243 -0.19983107 -0.88928491 0.29504731 -0.17904608 -0.8994469 0.31065431 -0.16010807 -0.902946\n\t\t 0.3304843 -0.14603308 -0.8989659 0.35141331 -0.13872907 -0.888394 0.37023431 -0.13960806 -0.87260199\n\t\t 0.38422331 -0.14821705 -0.8541519 0.39101031 -0.16353606 -0.83579898 0.38986629 -0.18301407 -0.820279\n\t\t 0.3635323 -0.13924307 -0.79098403 0.36419731 -0.16044106 -0.778386 0.34059832 -0.12091106 -0.74106389\n\t\t 0.34272429 -0.14339605 -0.73153287 0.3130483 -0.10044204 -0.64241099 0.3168903 -0.12435304 -0.63792688\n\t\t 0.30048731 -0.079965547 -0.64800704 0.3300333 -0.10210506 -0.75256598 0.3546603 -0.12193606 -0.80600291\n\t\t 0.33862031 -0.11136807 -0.82120687 0.31232229 -0.090051159 -0.76433301;\n\tsetAttr \".vt[7802:7967]\" 0.2808013 -0.066243738 -0.65388888 0.25720829 -0.061057344 -0.6591689\n\t\t 0.29039031 -0.086279958 -0.77460003 0.31808931 -0.10885107 -0.83432287 0.29607031 -0.11510406 -0.84322798\n\t\t 0.26746929 -0.091717057 -0.78171188 0.23321036 -0.065562144 -0.66300297 0.21240433 -0.078704238 -0.66487503\n\t\t 0.24701834 -0.10518906 -0.7847299 0.27590731 -0.12885106 -0.84675801 0.26080731 -0.14826205 -0.84414601\n\t\t 0.23231333 -0.12493306 -0.78301889 0.19815236 -0.098796651 -0.664415 0.22532234 -0.14775605 -0.77702087\n\t\t 0.25282329 -0.17022006 -0.83602291 0.25348729 -0.19141906 -0.82342398 0.18961236 -0.092262238 -0.55804694\n\t\t 0.18407233 -0.11627103 -0.55732799 0.18407236 -0.11627103 -0.50624001 0.18961236 -0.092262238 -0.50624394\n\t\t 0.20375136 -0.072082728 -0.50624394 0.20375136 -0.072082743 -0.55810595 0.22464533 -0.05902335 -0.55746996\n\t\t 0.22464536 -0.059023336 -0.50624001 0.24891236 -0.054751739 -0.50623393 0.24891236 -0.054751754 -0.55626094\n\t\t 0.27292135 -0.060291737 -0.55464196 0.27292135 -0.060291931 -0.50622499 0.29310131 -0.07443054 -0.50621498\n\t\t 0.29310131 -0.074430645 -0.55287099 0.30616036 -0.095324837 -0.55121791 0.30616036 -0.095324837 -0.50620592\n\t\t 0.31043231 -0.11959204 -0.506199 0.31043231 -0.11959204 -0.54992497 0.3048923 -0.14360103 -0.54920602\n\t\t 0.3048923 -0.14360103 -0.50619495 0.2907533 -0.16378003 -0.50619495 0.2907533 -0.16378005 -0.54914701\n\t\t 0.26985931 -0.17684005 -0.54978299 0.26985931 -0.17684004 -0.50619793 0.24559236 -0.18111102 -0.50620496\n\t\t 0.24559236 -0.18111104 -0.55099297 0.22158337 -0.17557104 -0.55261195 0.22158337 -0.17557102 -0.50621402\n\t\t 0.20140336 -0.16143203 -0.50622296 0.20140333 -0.16143204 -0.55438197 0.18834436 -0.14053804 -0.55603492\n\t\t 0.20872536 -0.16695504 -0.65170193 0.19616432 -0.14647904 -0.65729702 0.23801333 -0.18904606 -0.755988\n\t\t 0.26235929 -0.20872606 -0.808406 0.28468031 -0.21930908 -0.87376499 0.29146731 -0.23462808 -0.85541201\n\t\t 0.3240543 -0.26710305 -0.89280903 0.3588413 -0.30649906 -0.91640198 0.39599031 -0.34385705 -0.951455\n\t\t 0.39475629 -0.35015208 -0.92785203 0.43072629 -0.39539605 -0.92882502 0.46568131 -0.43956405 -0.92098403\n\t\t 0.50833333 -0.48410708 -0.92764992 0.49854732 -0.47999108 -0.90599298 0.52845633 -0.51575404 -0.88455087\n\t\t 0.55453843 -0.54593009 -0.85735798 0.59231329 -0.58142203 -0.83866799 0.57592428 -0.56959605 -0.82511199\n\t\t 0.59174341 -0.58582807 -0.78851289 0.60152441 -0.59516704 -0.74958098 0.62431133 -0.61354506 -0.70987701\n\t\t 0.6047954 -0.59815204 -0.71033388 0.62060928 -0.61105806 -0.66811597 0.60108328 -0.59532207 -0.67279398\n\t\t 0.60884428 -0.60292906 -0.63111401 0.58991528 -0.58721608 -0.6389789 0.57236028 -0.57669008 -0.60730898\n\t\t 0.54948443 -0.56659901 -0.57620299 0.53916931 -0.57439703 -0.532547 0.52235627 -0.55979699 -0.54408097\n\t\t 0.50915343 -0.57340699 -0.49846095 0.52988231 -0.578821 -0.48595294 0.50085741 -0.581765 -0.45300296\n\t\t 0.55965942 -0.58015501 -0.51968002 0.49204129 -0.55913901 -0.50936198 0.46153036 -0.56255502 -0.47402394\n\t\t 0.4315573 -0.58704603 -0.40323991 0.4118793 -0.57332402 -0.40940499 0.45017537 -0.54152399 -0.48030096\n\t\t 0.39899936 -0.552634 -0.41282395 0.4813503 -0.537871 -0.51689792 0.5119803 -0.538257 -0.55243492\n\t\t 0.50933844 -0.51326603 -0.55649102 0.4784233 -0.51305002 -0.52007592 0.4467693 -0.51689398 -0.48242995\n\t\t 0.3945713 -0.528337 -0.4130969 0.45217031 -0.492342 -0.47990796 0.39963031 -0.50405902 -0.41005194\n\t\t 0.48403329 -0.48838603 -0.51822591 0.51515532 -0.48856199 -0.555439 0.52823144 -0.46781904 -0.54963994\n\t\t 0.4970063 -0.46755201 -0.51181996 0.4652223 -0.47152799 -0.47329596 0.4130463 -0.48342103 -0.40427399\n\t\t 0.48421431 -0.45783702 -0.46345299 0.43308032 -0.46977699 -0.39654794 0.51562929 -0.45394003 -0.50166702\n\t\t 0.54683328 -0.45442206 -0.53979802 0.55563241 -0.47452801 -0.58422101 0.54218441 -0.49501699 -0.58902597\n\t\t 0.53618228 -0.51964802 -0.58925796 0.5388633 -0.54476303 -0.58469391 0.56119132 -0.55461109 -0.61513293\n\t\t 0.57815641 -0.56502104 -0.64521492 0.58895344 -0.57321805 -0.67639989 0.58573741 -0.54829603 -0.67843789\n\t\t 0.57503831 -0.53991205 -0.64895588 0.55830133 -0.52944607 -0.61965501 0.5644803 -0.50497806 -0.62003601\n\t\t 0.58139932 -0.51566708 -0.64952099 0.59230143 -0.52431107 -0.6785289 0.60728043 -0.50480205 -0.67673492\n\t\t 0.5959183 -0.49587005 -0.64694798 0.5784483 -0.48482805 -0.61638391 0.59835643 -0.47230405 -0.60909891\n\t\t 0.57474232 -0.461532 -0.57540202 0.61667341 -0.48377705 -0.64151001 0.6286934 -0.49298507 -0.67325699\n\t\t 0.61177433 -0.50877607 -0.70656389 0.6334154 -0.4969641 -0.70495999 0.63161433 -0.49558306 -0.73589301\n\t\t 0.61006242 -0.50759107 -0.73578 0.59654444 -0.52813405 -0.7081129 0.59468943 -0.52684504 -0.7374869\n\t\t 0.5897423 -0.55185008 -0.70937687 0.59277332 -0.57642305 -0.71015 0.59007633 -0.57416207 -0.74494302\n\t\t 0.5813244 -0.56596303 -0.77925801 0.56697428 -0.55135304 -0.8115719 0.56650645 -0.52967006 -0.80006689\n\t\t 0.57963639 -0.54292303 -0.77127802 0.58754528 -0.55018806 -0.74068588 0.58730143 -0.52015406 -0.76586586\n\t\t 0.57494032 -0.50777209 -0.79246789 0.59066743 -0.48893309 -0.7897529 0.60280633 -0.50104308 -0.76372802\n\t\t 0.62406528 -0.48870808 -0.7653299 0.61154532 -0.47620606 -0.79254603 0.57430828 -0.47105807 -0.81319886\n\t\t 0.55816942 -0.48940605 -0.8165049 0.54864544 -0.51004308 -0.825966 0.54748744 -0.52985907 -0.84036487\n\t\t 0.52365732 -0.50231504 -0.86487991 0.49627531 -0.46955609 -0.88436401 0.46613529 -0.43241709 -0.8980599\n\t\t 0.47374529 -0.42026705 -0.87855101 0.5015583 -0.45460707 -0.86598599 0.52676129 -0.48477709 -0.84819901\n\t\t 0.53761142 -0.4656961 -0.837219 0.51388729 -0.43728006 -0.85384798 0.48762229 -0.40479708 -0.86563003\n\t\t 0.5054493 -0.38844508 -0.86096299 0.53114539 -0.42025506 -0.84951401 0.55428231 -0.44797906 -0.83335602\n\t\t 0.57442629 -0.43443307 -0.83750087 0.59482729 -0.45794407 -0.81681299 0.55085343 -0.40618607 -0.85397804\n\t\t 0.52462029 -0.3737151 -0.86561388 0.47774929 -0.35310906 -0.86699289;\n\tsetAttr \".vt[7968:8133]\" 0.49624029 -0.33752906 -0.87177801 0.46668231 -0.30003807 -0.87089002\n\t\t 0.4489513 -0.31656006 -0.86608803 0.4594363 -0.36888409 -0.87180489 0.4302153 -0.33183506 -0.87088001\n\t\t 0.44402531 -0.38249207 -0.88511688 0.43402931 -0.39173108 -0.905213 0.40093431 -0.34998608 -0.90425098\n\t\t 0.3678233 -0.30966505 -0.89360386 0.33567229 -0.27325305 -0.87169689 0.35252631 -0.27209407 -0.85370988\n\t\t 0.38250631 -0.30605206 -0.87420702 0.41330931 -0.3436361 -0.88417304 0.4008463 -0.29594505 -0.8613649\n\t\t 0.37221429 -0.26350605 -0.84176803 0.39168829 -0.24906206 -0.83741498 0.41996229 -0.28110707 -0.85673404\n\t\t 0.4369173 -0.26364806 -0.86136991 0.40791431 -0.23076606 -0.84163791 0.3650353 -0.22273706 -0.80661792\n\t\t 0.34520531 -0.23681206 -0.81059802 0.32427731 -0.24411605 -0.82116991 0.30545631 -0.24323706 -0.83696198\n\t\t 0.27839929 -0.21929406 -0.79320186 0.25572431 -0.20110106 -0.74422091 0.22841133 -0.18067704 -0.64582002\n\t\t 0.25200531 -0.18586305 -0.64054 0.27765629 -0.20487206 -0.73395389 0.29893029 -0.22181106 -0.78008586\n\t\t 0.32094929 -0.21555705 -0.77118099 0.30057731 -0.19943406 -0.726843 0.27600229 -0.18135904 -0.63670599\n\t\t 0.2968083 -0.16821705 -0.63483298 0.32102829 -0.18596207 -0.72382492 0.3411133 -0.20181106 -0.7676509\n\t\t 0.3562133 -0.18239906 -0.7702629 0.38064331 -0.20379905 -0.81011701 0.33573329 -0.16621906 -0.72553504\n\t\t 0.31106031 -0.14812404 -0.6352939 0.47939831 -0.57657403 -0.46440196 0.43490425 -0.3926881 -0.95243299\n\t\t 0.22744833 -0.17024106 -0.76749003 0.19232233 -0.12256805 -0.66178298 0.18834436 -0.14053804 -0.5062319\n\t\t 0.43463629 -0.47078103 -0.32197797 0.45878232 -0.47568899 -0.33303297 0.45878232 -0.47568899 -0.32197797\n\t\t 0.43463629 -0.47078103 -0.33502799 0.46087936 -0.47510701 -0.34537295 0.43682036 -0.47019202 -0.34935302\n\t\t 0.48133731 -0.48872203 -0.34242594 0.47932631 -0.48929304 -0.33157599 0.47932631 -0.48929304 -0.32197797\n\t\t 0.49293029 -0.50983697 -0.33090496 0.49293029 -0.50983697 -0.32197797 0.49486837 -0.50928098 -0.34100896\n\t\t 0.49972844 -0.53344202 -0.34127498 0.49783731 -0.53398299 -0.33108795 0.49783731 -0.53398299 -0.32197797\n\t\t 0.49293029 -0.55812901 -0.332133 0.49293029 -0.55812901 -0.32197696 0.49480537 -0.55760199 -0.34325099\n\t\t 0.4812203 -0.57815498 -0.3465749 0.47932631 -0.57867301 -0.33384895 0.47932631 -0.57867301 -0.32197696\n\t\t 0.45878232 -0.59227699 -0.33599794 0.45878232 -0.59227699 -0.32197794 0.46072736 -0.59176302 -0.35078591\n\t\t 0.43463629 -0.59718502 -0.32197794 0.41048935 -0.59227699 -0.34023696 0.41048935 -0.59227699 -0.32197794\n\t\t 0.43463629 -0.59718502 -0.33824295 0.38994536 -0.57867301 -0.32197696 0.38994536 -0.57867301 -0.34169394\n\t\t 0.3921383 -0.57813799 -0.362149 0.43665537 -0.59666902 -0.35522094 0.37634137 -0.55812901 -0.34236595\n\t\t 0.37634137 -0.55812901 -0.32197696 0.37860736 -0.55757999 -0.36356595 0.37374729 -0.533418 -0.36329991\n\t\t 0.37143436 -0.53398299 -0.34218293 0.37143436 -0.53398299 -0.32197794 0.37634137 -0.50983697 -0.34113795\n\t\t 0.37634137 -0.50983697 -0.32197794 0.37867036 -0.50925899 -0.36132395 0.39225531 -0.48870504 -0.35799995\n\t\t 0.38994536 -0.48929304 -0.33942199 0.38994536 -0.48929304 -0.32197797 0.41048935 -0.47568899 -0.33727294\n\t\t 0.41048935 -0.47568899 -0.32197797 0.41274837 -0.47509801 -0.35378894 0.41259637 -0.59175402 -0.35920095\n\t\t 0.4548313 -0.59202802 -0.39535895 0.25902036 -0.49650401 -0.14216255 0.24888337 -0.49595201 -0.17404774\n\t\t 0.26693636 -0.50002998 -0.16704825 0.24044639 -0.49251103 -0.14757794 0.27376336 -0.50486201 -0.18283197\n\t\t 0.25612035 -0.50069302 -0.19045168 0.28315237 -0.51304799 -0.20172626 0.26601335 -0.50872201 -0.20996314\n\t\t 0.29704237 -0.52397299 -0.19473764 0.28829536 -0.51563799 -0.17669034 0.28194335 -0.51069701 -0.16163445\n\t\t 0.27458736 -0.50704497 -0.13818374 0.29156035 -0.52640003 -0.15865216 0.28471735 -0.52260399 -0.13625494\n\t\t 0.29742837 -0.53146499 -0.17299265 0.30546635 -0.53993899 -0.19010019 0.30749637 -0.55847698 -0.1883868\n\t\t 0.30014536 -0.54993498 -0.17215775 0.29471335 -0.54477698 -0.15840715 0.28826237 -0.54085201 -0.13653785\n\t\t 0.29076335 -0.56330299 -0.16102174 0.28451437 -0.559295 -0.13905324 0.29586935 -0.56847101 -0.17440674\n\t\t 0.30264935 -0.57695001 -0.18996307 0.29182437 -0.59264398 -0.19448265 0.28537336 -0.58434999 -0.17932588\n\t\t 0.28040537 -0.57925802 -0.16605504 0.27413237 -0.57522303 -0.14341174 0.26479036 -0.590065 -0.17289194\n\t\t 0.25824535 -0.58605999 -0.14909454 0.26986736 -0.59500998 -0.18630886 0.27633837 -0.60302597 -0.20138675\n\t\t 0.24645139 -0.59419501 -0.18044084 0.2394494 -0.59024602 -0.15519723 0.28183937 -0.55846202 -0.12024374\n\t\t 0.28557336 -0.53998101 -0.11874704 0.28471136 -0.540236 -0.099657848 0.28092936 -0.521631 -0.09965805\n\t\t 0.28186736 -0.521626 -0.11847545 0.27044836 -0.50580198 -0.09965805 0.27150136 -0.50599402 -0.11943635\n\t\t 0.25461835 -0.49532104 -0.099657848 0.25571936 -0.49550104 -0.12156025 0.23702239 -0.49160403 -0.12452224\n\t\t 0.2360144 -0.491539 -0.099658042 0.21814539 -0.49529803 -0.12792994 0.22154739 -0.49615103 -0.15370005\n\t\t 0.23039135 -0.49956703 -0.18165712 0.20527239 -0.506639 -0.15954344 0.21435739 -0.51008898 -0.18866642\n\t\t 0.19438639 -0.52265102 -0.16413304 0.20351239 -0.52618802 -0.19390206 0.1903244 -0.54151702 -0.16681084\n\t\t 0.19929339 -0.54516399 -0.19663183 0.19400139 -0.56034499 -0.16706783 0.20262839 -0.56409502 -0.19631949\n\t\t 0.20454939 -0.57628697 -0.16497193 0.21269336 -0.58012098 -0.19315702 0.2205904 -0.58670902 -0.16076903\n\t\t 0.22815937 -0.59060502 -0.18754792 0.21910936 -0.58471602 -0.20819053 0.23403738 -0.595272 -0.20190534\n\t\t 0.22723739 -0.59214598 -0.22483142 0.24143836 -0.60281003 -0.21777034 0.25185236 -0.598979 -0.1942343\n\t\t 0.25866136 -0.60671502 -0.20955433 0.20954937 -0.56865299 -0.21205583 0.21841437 -0.57605797 -0.22961202\n\t\t 0.21613637 -0.55716503 -0.23144633 0.2066194 -0.54971302 -0.21298464 0.21109439 -0.53075403 -0.21067594\n\t\t 0.22108839 -0.53830802 -0.22988275 0.2322474 -0.52239001 -0.22528255;\n\tsetAttr \".vt[8134:8299]\" 0.22201335 -0.51469302 -0.20560515 0.23791936 -0.50423098 -0.19846284\n\t\t 0.24811035 -0.51209199 -0.21824345 0.23379636 -0.54969501 -0.25240254 0.2454394 -0.53405899 -0.24856284\n\t\t 0.26268131 -0.55093098 -0.27490985 0.25047037 -0.56621099 -0.27780384 0.22806539 -0.56833303 -0.25287986\n\t\t 0.2293814 -0.587107 -0.24979852 0.23718838 -0.60320002 -0.24381532 0.25092235 -0.619201 -0.26512861\n\t\t 0.2704013 -0.641473 -0.28875792 0.29758736 -0.671336 -0.3146919 0.33444235 -0.71011502 -0.34291595\n\t\t 0.34617329 -0.72079301 -0.3309319 0.37543529 -0.75186598 -0.37361395 0.41503736 -0.79064602 -0.40697199\n\t\t 0.44772029 -0.82051206 -0.44316995 0.32864037 -0.69462103 -0.3539809 0.29207835 -0.65555602 -0.32470691\n\t\t 0.36892936 -0.73668402 -0.38510591 0.4076913 -0.77572203 -0.41788 0.43967637 -0.80571508 -0.45209596\n\t\t 0.43833631 -0.78853905 -0.45930296 0.4070093 -0.758452 -0.42661399 0.36903131 -0.71919698 -0.39416695\n\t\t 0.32938835 -0.67684603 -0.36248499 0.29306829 -0.63747299 -0.33208591 0.3368293 -0.65948898 -0.3669759\n\t\t 0.30073336 -0.61981201 -0.33552295 0.3758983 -0.70209002 -0.399297 0.41318235 -0.74151897 -0.43176395\n\t\t 0.4439283 -0.77168304 -0.46366194 0.45539731 -0.75730103 -0.46473995 0.42507631 -0.72715998 -0.432809\n\t\t 0.38828436 -0.68772101 -0.39995694 0.34961832 -0.64504498 -0.366974 0.31367937 -0.60519397 -0.33465296\n\t\t 0.36602935 -0.63579702 -0.3623209 0.3301183 -0.59602797 -0.32943296 0.40456936 -0.67825103 -0.39592195\n\t\t 0.44118631 -0.71742898 -0.42949891 0.47132537 -0.74736905 -0.46231395 0.48939535 -0.74333107 -0.45673394\n\t\t 0.45912036 -0.71372402 -0.42234999 0.50709033 -0.74626404 -0.44857496 0.47631431 -0.71705401 -0.412157\n\t\t 0.42228431 -0.675008 -0.38786495 0.43882337 -0.678895 -0.37674999 0.38351837 -0.632999 -0.35382995\n\t\t 0.39944631 -0.63744402 -0.34259495 0.34745237 -0.59351301 -0.32079795 0.36301029 -0.59836 -0.30993396\n\t\t 0.5215804 -0.75559205 -0.43919995 0.49005431 -0.72675002 -0.40060595 0.45162436 -0.68912101 -0.36440095\n\t\t 0.41139737 -0.64821702 -0.33044195 0.37447736 -0.60955 -0.29858196 0.41724035 -0.663912 -0.31927595\n\t\t 0.3798483 -0.62558502 -0.28852797 0.45838231 -0.70439702 -0.3527559 0.49785632 -0.741638 -0.38951296\n\t\t 0.5302434 -0.77023 -0.43009195 0.5319984 -0.78767502 -0.4226349 0.49878544 -0.75918198 -0.38056099\n\t\t 0.45833331 -0.72214198 -0.34357196 0.41636136 -0.681903 -0.31076694 0.37858731 -0.643812 -0.28124756\n\t\t 0.40865937 -0.69939601 -0.30637094 0.37066635 -0.66142499 -0.27800244 0.45123929 -0.73958898 -0.33840895\n\t\t 0.49244437 -0.77664697 -0.37526399 0.5263114 -0.80520803 -0.418082 0.51437342 -0.82019198 -0.41698095\n\t\t 0.48013136 -0.79141903 -0.3742339 0.4385193 -0.75414401 -0.33782792 0.39564431 -0.71380401 -0.30651492\n\t\t 0.35761335 -0.67583197 -0.2790482 0.37919831 -0.72279203 -0.31129491 0.34131432 -0.684699 -0.28432685\n\t\t 0.42199129 -0.76344597 -0.3420499 0.4635753 -0.80110002 -0.37776691 0.49783128 -0.83018899 -0.41962391\n\t\t 0.47935036 -0.83386302 -0.42548895 0.44540429 -0.80444199 -0.3851729 0.40423429 -0.76635802 -0.35026595\n\t\t 0.36184737 -0.72531599 -0.3198179 0.32425231 -0.68702501 -0.29288095 0.30894929 -0.68227202 -0.30353594\n\t\t 0.42836836 -0.800668 -0.3954739 0.38791135 -0.76220399 -0.36137995 0.46174535 -0.83034801 -0.43380696\n\t\t 0.50006241 -0.84891003 -0.47216296 0.51863843 -0.84515208 -0.46879795 0.5351364 -0.83502805 -0.46731594\n\t\t 0.5468784 -0.81991404 -0.46800894 0.55225527 -0.80227405 -0.47069195 0.55012631 -0.78477007 -0.47503895\n\t\t 0.54109842 -0.77013403 -0.48032793 0.52632427 -0.76086503 -0.48576295 0.50848144 -0.75801206 -0.49046594\n\t\t 0.53462142 -0.76236004 -0.52258795 0.51696932 -0.75948906 -0.52303493 0.53258544 -0.75224906 -0.55791694\n\t\t 0.51545542 -0.74948305 -0.55393094 0.52082229 -0.73203307 -0.59061694 0.50453031 -0.72971505 -0.58264494\n\t\t 0.53382528 -0.74051404 -0.60005593 0.54659832 -0.76133907 -0.56264198 0.5492304 -0.77163106 -0.52210391\n\t\t 0.55814528 -0.78627908 -0.52170295 0.5549413 -0.77577507 -0.56743193 0.5411554 -0.75427705 -0.60957688\n\t\t 0.54187244 -0.77097708 -0.61768198 0.55653244 -0.79309803 -0.57152498 0.56021333 -0.80380607 -0.52142596\n\t\t 0.55482328 -0.82147604 -0.52129894 0.55082428 -0.81060904 -0.57420397 0.5355584 -0.78802508 -0.62297893\n\t\t 0.52347845 -0.80282605 -0.62478399 0.53899729 -0.82565504 -0.57512498 0.5431143 -0.83661908 -0.52133298\n\t\t 0.5266934 -0.84675604 -0.52153397 0.52269232 -0.83576906 -0.57407999 0.50732827 -0.81295806 -0.62268198\n\t\t 0.48971331 -0.81704009 -0.61714101 0.50455129 -0.83957607 -0.57130796 0.50823241 -0.85050708 -0.52187598\n\t\t 0.49056029 -0.84697104 -0.52231598 0.48736736 -0.83617407 -0.56717294 0.46440831 -0.78382105 -0.65605402\n\t\t 0.48129931 -0.77909106 -0.66358602 0.49724931 -0.76882404 -0.66640288 0.50970441 -0.75443608 -0.66387701\n\t\t 0.51689029 -0.73827004 -0.65658998 0.51742733 -0.72280508 -0.64548492 0.51153439 -0.71041304 -0.63246191\n\t\t 0.4999373 -0.70321405 -0.61955392 0.4847903 -0.70190507 -0.60866797 0.47207031 -0.66754705 -0.64406097\n\t\t 0.45832929 -0.66772908 -0.63114089 0.43936431 -0.62678808 -0.6634689 0.42724431 -0.62886304 -0.64920789\n\t\t 0.40396029 -0.58269405 -0.67711091 0.39363131 -0.58698106 -0.66201288 0.4096843 -0.58311903 -0.69508392\n\t\t 0.44725031 -0.62984806 -0.68042898 0.4819383 -0.67290205 -0.65940392 0.48605531 -0.68335807 -0.67490488\n\t\t 0.4493373 -0.63793707 -0.69758403 0.4095723 -0.58854103 -0.71326989 0.4038403 -0.59794503 -0.72884798\n\t\t 0.4454923 -0.64962304 -0.71226889 0.4839693 -0.69710803 -0.68814987 0.47571531 -0.71207905 -0.69688588\n\t\t 0.43604231 -0.66318709 -0.72199202 0.39314029 -0.60999608 -0.73918289 0.3793003 -0.62275404 -0.74292099\n\t\t 0.42265931 -0.67649007 -0.72548288 0.46280929 -0.72594708 -0.69997388 0.44712031 -0.73647505 -0.69670087\n\t\t 0.40731129 -0.68741804 -0.72193801 0.3643873 -0.63422507 -0.7392059 0.35071829 -0.64271307 -0.72888303\n\t\t 0.39240831 -0.69439304 -0.71216589 0.43113929 -0.74218404 -0.68780988;\n\tsetAttr \".vt[8300:8465]\" 0.44920629 -0.78201407 -0.64479488 0.38033029 -0.69613904 -0.69744301\n\t\t 0.3085703 -0.58940804 -0.73772299 0.32086831 -0.57920408 -0.74841291 0.33523229 -0.56703305 -0.75227791\n\t\t 0.3494603 -0.55474007 -0.74844503 0.36139631 -0.54420406 -0.73779291 0.36905831 -0.53717107 -0.72171086\n\t\t 0.3714543 -0.53458107 -0.702914 0.36799932 -0.53702009 -0.68431699 0.3595863 -0.54375905 -0.668697\n\t\t 0.33218029 -0.4918561 -0.68334788 0.32573029 -0.50111103 -0.66763496 0.2972033 -0.44929206 -0.67246091\n\t\t 0.29268429 -0.46094805 -0.65719891 0.26376531 -0.41141605 -0.64991593 0.26106831 -0.42518306 -0.63576102\n\t\t 0.26057529 -0.40088207 -0.66680801 0.2961193 -0.44118705 -0.690642 0.3333393 -0.48651206 -0.70205492\n\t\t 0.32865131 -0.4862631 -0.72093499 0.2892063 -0.43824905 -0.70897102 0.2515803 -0.39556706 -0.6838479\n\t\t 0.23841433 -0.39607707 -0.6983909 0.27777231 -0.44072405 -0.72460788 0.31907031 -0.49094808 -0.73706102\n\t\t 0.30593231 -0.50001806 -0.74771202 0.2634843 -0.44842505 -0.73491591 0.22304533 -0.40255705 -0.70798892\n\t\t 0.20788233 -0.41377506 -0.71140802 0.24861234 -0.45996305 -0.73856586 0.29136631 -0.51190907 -0.751508\n\t\t 0.2776103 -0.52485204 -0.74757987 0.23547333 -0.47366709 -0.73472798 0.19531633 -0.42814505 -0.70787686\n\t\t 0.18718833 -0.44336605 -0.69816303 0.22602433 -0.48737305 -0.72424287 0.2667453 -0.53684008 -0.73680198\n\t\t 0.22194733 -0.49890906 -0.70845699 0.2606383 -0.54593503 -0.72056603 0.15101533 -0.40718305 -0.65668392\n\t\t 0.15799733 -0.39078504 -0.66504502 0.17008436 -0.37592405 -0.66798788 0.18554336 -0.36501306 -0.66486388\n\t\t 0.20190533 -0.35955507 -0.65636897 0.21662833 -0.36065102 -0.64359391 0.22748736 -0.36787504 -0.62869\n\t\t 0.23256733 -0.38032007 -0.61397099 0.23150536 -0.39572906 -0.60169291 0.20477736 -0.35559905 -0.56884992\n\t\t 0.20512833 -0.37224203 -0.55889994 0.18156937 -0.33685404 -0.51877797 0.18307136 -0.35437903 -0.51128393\n\t\t 0.15357536 -0.31568202 -0.420672 0.15645836 -0.33414903 -0.41719794 0.14395335 -0.29968503 -0.42505395\n\t\t 0.17353033 -0.32192504 -0.52793598 0.19806834 -0.34170806 -0.58087194 0.18560733 -0.33300906 -0.59313196\n\t\t 0.15977436 -0.31214902 -0.53738195 0.12869436 -0.28880703 -0.42971095 0.11032236 -0.28453603 -0.43391299\n\t\t 0.14262736 -0.30884904 -0.54564297 0.16954336 -0.33064806 -0.603724 0.15231533 -0.33528107 -0.6108709\n\t\t 0.12469336 -0.31285203 -0.55133593 0.091610357 -0.28786603 -0.4369629 0.075403564 -0.29799104 -0.43844596\n\t\t 0.10872435 -0.32325503 -0.55371392 0.13657834 -0.34591705 -0.613644 0.12487936 -0.36111706 -0.61144102\n\t\t 0.097324863 -0.33867407 -0.55227095 0.064361557 -0.31359503 -0.43806294 0.092060059 -0.35657203 -0.54735899\n\t\t 0.11885635 -0.37839502 -0.60476291 0.11972535 -0.39510202 -0.5944519 0.094034947 -0.37422007 -0.53959191\n\t\t 0.056269366 -0.30738503 -0.33468497 0.052029468 -0.32595104 -0.33411497 0.052098375 -0.32592899 -0.28356284\n\t\t 0.056368474 -0.30742401 -0.28356284 0.067265376 -0.29187202 -0.28356314 0.067188561 -0.29179302 -0.33473194\n\t\t 0.083357178 -0.28173202 -0.33422893 0.083368778 -0.28180701 -0.28356284 0.10207137 -0.27851403 -0.28356284\n\t\t 0.10214137 -0.27849102 -0.33327293 0.12071537 -0.28285903 -0.33199793 0.12057637 -0.28278399 -0.28356284\n\t\t 0.13612939 -0.29368103 -0.28356284 0.13630138 -0.29385802 -0.33061397 0.14634836 -0.31002602 -0.32933897\n\t\t 0.1461954 -0.309784 -0.28356314 0.14948836 -0.32848704 -0.28356314 0.14961436 -0.32872903 -0.32835096\n\t\t 0.14535937 -0.34715903 -0.32780895 0.14521839 -0.34699202 -0.28356284 0.13432136 -0.36254603 -0.28356314\n\t\t 0.1345114 -0.36263001 -0.32776493 0.11847536 -0.37266999 -0.32824194 0.11821637 -0.37261099 -0.28356284\n\t\t 0.099513374 -0.37590402 -0.28356284 0.09980236 -0.37598002 -0.32915995 0.081242964 -0.37174201 -0.33040893\n\t\t 0.081008375 -0.37163299 -0.28356284 0.065455273 -0.36073601 -0.28356284 0.065583661 -0.36085701 -0.33178997\n\t\t 0.055406269 -0.34471703 -0.33309096 0.073146962 -0.36661303 -0.42788291 0.10262936 -0.38890803 -0.53031796\n\t\t 0.12704833 -0.40867102 -0.58229697 0.15620837 -0.43463606 -0.62909591 0.18882737 -0.46715105 -0.666448\n\t\t 0.22362337 -0.50655907 -0.6900869 0.26000831 -0.55083609 -0.70165092 0.30038929 -0.59594506 -0.72159487\n\t\t 0.29739431 -0.59795403 -0.7027759 0.34051532 -0.64674509 -0.71330088 0.33519331 -0.64588803 -0.695099\n\t\t 0.37281731 -0.69261104 -0.68025899 0.41737929 -0.74195409 -0.67446101 0.4078773 -0.73607504 -0.6589089\n\t\t 0.43798429 -0.77423006 -0.63170493 0.4607513 -0.80502605 -0.59930098 0.47378835 -0.82641506 -0.56235296\n\t\t 0.47641537 -0.83703405 -0.52275395 0.46795231 -0.83552009 -0.48239595 0.45963031 -0.82063806 -0.48754895\n\t\t 0.46823329 -0.82208604 -0.52309394 0.46616337 -0.81165004 -0.55758393 0.45409736 -0.79092407 -0.58987391\n\t\t 0.45395038 -0.77434307 -0.58202696 0.46516329 -0.79449707 -0.55360699 0.4667443 -0.80477303 -0.52332699\n\t\t 0.45802537 -0.80338305 -0.49171695 0.46337831 -0.78648609 -0.49426994 0.4721753 -0.78784704 -0.52345693\n\t\t 0.47095931 -0.77768505 -0.55109298 0.46037236 -0.75791907 -0.57704496 0.47209236 -0.74380404 -0.57541597\n\t\t 0.48238435 -0.76337403 -0.55028194 0.48344037 -0.77345103 -0.52346396 0.4746483 -0.77207905 -0.49495396\n\t\t 0.49043429 -0.76210904 -0.49362996 0.4991073 -0.76353407 -0.52332896 0.49793929 -0.75352407 -0.55128992\n\t\t 0.4875263 -0.73396409 -0.57739395 0.45317429 -0.71669805 -0.59887791 0.46846136 -0.70673603 -0.601524\n\t\t 0.44283429 -0.67347205 -0.62269199 0.42774531 -0.68368608 -0.61961699 0.44105437 -0.73046708 -0.60118496\n\t\t 0.41517231 -0.69700807 -0.62245691 0.43377331 -0.74610108 -0.60806298 0.4327153 -0.76149905 -0.61881602\n\t\t 0.4043273 -0.72528207 -0.64356697 0.37124529 -0.68417805 -0.66327888 0.33578029 -0.64009404 -0.67710602\n\t\t 0.34179631 -0.63057107 -0.66199601 0.37546331 -0.67244208 -0.64903289 0.40686631 -0.71154308 -0.63072598\n\t\t 0.3848893 -0.65922004 -0.63980901 0.35237131 -0.61878204 -0.65218699 0.36580929 -0.60646409 -0.64871991\n\t\t 0.3979193 -0.64639807 -0.63658088 0.4127323 -0.63580203 -0.6399129;\n\tsetAttr \".vt[8466:8631]\" 0.3802453 -0.59535706 -0.65219998 0.33352831 -0.56551504 -0.65497988\n\t\t 0.31978229 -0.57737309 -0.65853888 0.30810031 -0.58770204 -0.6686309 0.30024329 -0.59493405 -0.68420398\n\t\t 0.26513931 -0.55058306 -0.68302798 0.23097336 -0.50892907 -0.67203701 0.19824836 -0.47185707 -0.64968693\n\t\t 0.21139733 -0.47092605 -0.63569289 0.24244437 -0.50609803 -0.65696597 0.2748313 -0.54561704 -0.66744989\n\t\t 0.28758231 -0.53671205 -0.65738797 0.25623029 -0.49852008 -0.64725792 0.22618534 -0.46451908 -0.62667388\n\t\t 0.24064437 -0.45374805 -0.62350202 0.2704483 -0.48744005 -0.64387202 0.30157629 -0.52526808 -0.65386498\n\t\t 0.31493229 -0.51282305 -0.65746999 0.34746131 -0.55376905 -0.65856898 0.2832123 -0.47430009 -0.6473549\n\t\t 0.25285429 -0.43998504 -0.6266759 0.21266136 -0.42591006 -0.59125495 0.22441036 -0.41166103 -0.59388489\n\t\t 0.19899233 -0.38902903 -0.55266094 0.18760933 -0.40364802 -0.55069792 0.19790633 -0.43642807 -0.59415698\n\t\t 0.17253833 -0.41396904 -0.55328298 0.18214433 -0.44188303 -0.60214293 0.16746934 -0.44125104 -0.614434\n\t\t 0.13987733 -0.41679502 -0.57022297 0.11671136 -0.39817303 -0.52099293 0.088618264 -0.37715903 -0.42325595\n\t\t 0.10694836 -0.38107502 -0.41915995 0.13379736 -0.40100002 -0.51300895 0.15588036 -0.41867304 -0.56001496\n\t\t 0.15122336 -0.39686003 -0.50762498 0.12533537 -0.37757802 -0.41624695 0.14115836 -0.36754102 -0.41484895\n\t\t 0.16660136 -0.38668403 -0.50539994 0.17771035 -0.37178904 -0.50668395 0.15199836 -0.35228503 -0.4151929\n\t\t 0.48224831 -0.84540606 -0.47697395 0.47335431 -0.81414509 -0.608886 0.15048833 -0.42258805 -0.6439659\n\t\t 0.18500236 -0.45706105 -0.68350989 0.059952959 -0.33210203 -0.43593991 0.063151158 -0.35072103 -0.43233895\n\t\t 0.055390276 -0.34463203 -0.28356284 0.28092936 -0.55884099 -0.099657841 0.27139837 -0.57433701 -0.12274214\n\t\t 0.27044836 -0.57467002 -0.099657841 0.25546637 -0.58503401 -0.12594853 0.25461835 -0.58515197 -0.099658042\n\t\t 0.2360144 -0.58893299 -0.099658035 0.2177614 -0.58544099 -0.13242054 0.21740939 -0.58515197 -0.099658035\n\t\t 0.2016864 -0.57500798 -0.13468713 0.23664239 -0.58906698 -0.12935254 0.20158039 -0.57467002 -0.099657834\n\t\t 0.19107139 -0.559129 -0.13574663 0.19109839 -0.55884099 -0.099657834 0.18729539 -0.54041499 -0.13548253\n\t\t 0.18731739 -0.540236 -0.099657834 0.19123039 -0.52168202 -0.13387623 0.19109839 -0.521631 -0.099658042\n\t\t 0.2019814 -0.505768 -0.13123114 0.20158039 -0.50580198 -0.099658042 0.21740939 -0.49532104 -0.099658042\n\t\t 0.29559237 -0.52556801 -0.22439314 0.27904537 -0.52099502 -0.23332834 0.31226236 -0.54334402 -0.25032324\n\t\t 0.29626435 -0.538535 -0.25997233 0.3343423 -0.56730098 -0.27900666 0.3187173 -0.56236601 -0.28932095\n\t\t 0.3459723 -0.57863498 -0.26867896 0.32449135 -0.55462903 -0.24113485 0.30864435 -0.53668898 -0.21635336\n\t\t 0.31607935 -0.55279201 -0.21047914 0.33091536 -0.57082099 -0.23385735 0.35162237 -0.59482002 -0.25996384\n\t\t 0.35072935 -0.613217 -0.25411364 0.33087236 -0.58932501 -0.22950095 0.31709936 -0.57134199 -0.20754704\n\t\t 0.31136635 -0.58964199 -0.20811975 0.32417235 -0.607391 -0.22885825 0.34322137 -0.63103801 -0.25215816\n\t\t 0.33053237 -0.64566499 -0.25417995 0.31208637 -0.62236702 -0.23184174 0.29995635 -0.60500503 -0.21196514\n\t\t 0.28434536 -0.61494899 -0.21861212 0.29626137 -0.631832 -0.23810042 0.31446037 -0.65473098 -0.25996673\n\t\t 0.29745737 -0.65719402 -0.26850492 0.27914235 -0.63464803 -0.24657083 0.26698437 -0.618213 -0.22696012\n\t\t 0.26326537 -0.63014799 -0.25604063 0.25045636 -0.61401302 -0.23578982 0.28203836 -0.65247798 -0.27859676\n\t\t 0.24416736 -0.60314399 -0.27247185 0.26449329 -0.625512 -0.29748893 0.26505736 -0.607153 -0.30349094\n\t\t 0.24388139 -0.58455098 -0.27699184 0.27236435 -0.58915102 -0.30565494 0.28506336 -0.574233 -0.30378595\n\t\t 0.30139029 -0.56490499 -0.29799694 0.2788263 -0.54129702 -0.26859564 0.26140636 -0.52407002 -0.24181634\n\t\t -0.62675959 -0.25216603 -0.5351969 -0.57031161 -0.13430306 -0.65275693 -0.6529246 -0.13430306 -0.66572088\n\t\t -0.5477767 -0.25216603 -0.5351969 -0.62186968 -0.33789203 -0.43455788 -0.54356468 -0.33789203 -0.43455788\n\t\t -0.6181336 -0.40634 -0.29809588 -0.54034656 -0.40634 -0.29809588 -0.59884757 -0.429187 -0.11811778\n\t\t -0.52373558 -0.429187 -0.11811778 -0.56248057 -0.50829703 0.039827108 -0.46470064 -0.50829703 0.039827108\n\t\t -0.5334596 -0.53379494 0.13511312 -0.41665664 -0.53379494 0.13511312 -0.47533357 -0.61408997 0.17494112\n\t\t -0.54265058 -0.61408997 0.17494112 -0.2867797 -0.25216603 -0.26776412 -0.29858765 -0.13430302 -0.26776403\n\t\t -0.0024816268 -0.13430302 -0.26776403 -0.0024816268 -0.25216603 -0.26776415 -0.28457263 -0.25428501 -0.18293604\n\t\t -0.0024816194 -0.25428501 -0.18293607 -0.28288665 -0.35280001 -0.11811771 -0.0024816135 -0.35280001 -0.11811773\n\t\t -0.27418265 -0.429187 -0.1181178 -0.0024816135 -0.429187 -0.11811782 -0.24324961 -0.438618 0.13511312\n\t\t -0.0024815914 -0.438618 0.13511306 -0.21807557 -0.53379494 0.13511312 -0.0024815914 -0.53379494 0.13511309\n\t\t -0.0024815879 -0.61408997 0.17494112 -0.24882159 -0.61408997 0.17494112 0.21311241 -0.53379494 0.13511306\n\t\t 0.24385843 -0.61408997 0.17494106 0.23828742 -0.438618 0.13511306 0.26921937 -0.429187 -0.11811785\n\t\t 0.27792338 -0.35280001 -0.11811776 0.27960935 -0.25428501 -0.1829361 0.2818163 -0.25216603 -0.26776415\n\t\t 0.29362437 -0.13430302 -0.26776409 0.56534845 -0.13430306 -0.65275705 0.5428133 -0.25216603 -0.53519702\n\t\t 0.62179643 -0.25216603 -0.53519702 0.64796144 -0.13430306 -0.66572088 0.61690629 -0.33789203 -0.43455794\n\t\t 0.53860128 -0.33789203 -0.43455794 0.61317044 -0.40634 -0.29809597 0.5353834 -0.40634 -0.29809597\n\t\t 0.59388441 -0.429187 -0.11811788 0.51877242 -0.429187 -0.11811787 0.55751741 -0.50829703 0.039827019\n\t\t 0.45973837 -0.50829703 0.039827049 0.52849644 -0.53379494 0.13511306 0.41169336 -0.53379494 0.13511306\n\t\t 0.47037041 -0.61408997 0.17494106 0.53768742 -0.61408997 0.17494106 0.47037041 -0.66505694 0.26135105\n\t\t 0.21811445 -0.66505694 0.46265697 -0.0024815607 -0.68499792 0.48738712;\n\tsetAttr \".vt[8632:8797]\" -0.22307755 -0.66505694 0.46265709 -0.47533357 -0.66505694 0.26135111\n\t\t -0.17192255 -0.66505694 0.5288341 -0.0024815537 -0.68499792 0.5467521 0.16695945 -0.66505694 0.52883399\n\t\t -0.12735853 -0.66505694 0.68153614 -0.0024815435 -0.68499792 0.68373412 0.12239546 -0.66505694 0.68153614\n\t\t -0.65217656 -0.047064647 -0.66572088 -0.5696677 -0.047064751 -0.66572088 -0.29824963 -0.047064722 -0.26776403\n\t\t -0.0024816268 -0.047064722 -0.26776409 0.29328737 -0.047064722 -0.26776409 0.5647043 -0.047064751 -0.66572088\n\t\t 0.6472134 -0.047064647 -0.66572088 -0.65101355 0.047537729 -0.69166189 -0.5686667 0.04753764 -0.69166189\n\t\t -0.29772571 0.088653252 -0.73233491 -0.002481672 0.088653252 -0.78701901 0.64605129 0.047537729 -0.69166189\n\t\t 0.5637033 0.04753764 -0.69166189 0.29276231 0.088653252 -0.73233491 0.56312543 0.067918733 -0.71900499\n\t\t 0.29245931 0.067918822 -0.95603001 -0.6503436 0.067918852 -0.71900487 -0.56808859 0.067918733 -0.71900588\n\t\t -0.29742271 0.067918822 -0.95603001 -0.0024816983 0.067918703 -1.086468935 0.64538044 0.067918852 -0.71900588\n\t\t -0.0024816194 -0.25428501 -0.18293607 0.27960935 -0.25428501 -0.1829361 0.27960935 -0.25428501 -0.1829361\n\t\t 0.30686137 -0.540236 -0.018963948 0.30126438 -0.56726301 -0.018963948 -0.30696857 -0.50012892 0.53195912\n\t\t -0.32491457 -0.53486496 0.52574909 -0.73727459 0.16249402 -0.075327918 -0.73897856 0.16675802 -0.07728792\n\t\t -0.73897856 0.16675802 -0.07728792 -0.66478056 -0.310175 -0.21494478 -0.66478056 -0.310175 -0.21494478\n\t\t -0.66792059 -0.17988501 -0.26280528 -0.61199456 -0.48309004 -0.030940875 -0.61199456 -0.48309004 -0.030940875\n\t\t -0.57950461 -0.52175802 0.056274116 -0.74126458 0.16932701 -0.074567921 -0.74126458 0.16932701 -0.074567921\n\t\t -0.74144059 0.17481001 -0.082200922 -0.32992959 -0.57389194 0.52139312 -0.64031357 0.533149 0.0014800578\n\t\t -0.7034266 0.49012697 -0.029223949 -0.7034266 0.49012697 -0.029223949 -0.32734758 -0.59354997 0.5200811\n\t\t -0.32734758 -0.59354997 0.5200811 -0.67017758 -0.066247821 -0.31226391 -0.67017758 -0.066247821 -0.31226391\n\t\t 0.16688249 -0.10611694 0.68398201 0.16882747 -0.16317293 0.68275297 0.23828742 -0.438618 0.13511306\n\t\t 0.23828742 -0.438618 0.13511306 0.45973837 -0.50829703 0.039827049 0.45973837 -0.50829703 0.039827049\n\t\t -0.34864965 -0.53398299 -0.214746 -0.35571265 -0.49923599 -0.21474619 -0.040444527 -0.69080585 0.81278211\n\t\t -0.017911032 -0.69080585 0.81278211 -0.66393059 -0.17018701 -0.23894979 -0.66969657 -0.046399623 -0.28908491\n\t\t -0.34864965 -0.53398299 -0.24991968 -0.35571265 -0.49923599 -0.24991968 -0.44804463 -0.82486999 0.070960134\n\t\t -0.44804463 -0.774019 0.070961148 0.17749844 -0.16404593 0.685395 0.16845047 -0.20872393 0.67539597\n\t\t 0.51877242 -0.429187 -0.11811787 0.51877242 -0.429187 -0.11811787 0.51877242 -0.429187 -0.11811787\n\t\t 0.19730933 0.84106201 -0.62710404 0.098783329 0.85248595 -0.6633991 -0.0024816135 -0.429187 -0.11811782\n\t\t 0.26921937 -0.429187 -0.11811785 -0.32518163 0.77933198 -0.39072305 -0.18185663 0.84793097 -0.469459\n\t\t 0.52440542 -0.38734096 0.25089598 0.53233445 -0.38001797 0.24128506 0.53233445 -0.38001797 0.24128506\n\t\t 0.13954531 0.16772191 -1.14470899 0.13800131 0.17240493 -1.146999 0.37708637 0.78028196 -0.5706501\n\t\t -0.33282265 -0.49403393 0.39792609 -0.29814258 -0.51241094 0.4207691 0.23549445 -0.45833993 0.53647602\n\t\t 0.27150843 -0.47294998 0.52894199 -0.36206359 -0.47551495 0.3749941 0.17151745 -0.22396293 0.67061901\n\t\t 0.17151745 -0.22396293 0.67061901 0.17360045 -0.22306293 0.66990697 0.17360045 -0.22306293 0.66990697\n\t\t -0.73957056 0.16506799 -0.072605915 0.33135435 -0.53398299 -0.25723267 0.33937436 -0.57344198 -0.25723267\n\t\t 0.53791642 -0.53398299 -0.28215975 0.52989644 -0.57344198 -0.28215957 0.28611135 -0.59033298 -0.018963948\n\t\t 0.49068937 0.47933203 0.27864292 0.49068937 0.47933203 0.27864292 0.46866837 0.48345703 0.27981493\n\t\t -0.32095569 0.13263093 -1.024767995 -0.3079657 0.13261391 -1.035984993 -0.29786664 -0.483347 -0.070439897\n\t\t -0.31507465 -0.50954401 -0.070439897 -0.44028065 -0.77170402 0.060469136 -0.44028065 -0.77170402 0.060469136\n\t\t -0.46292263 -0.77714598 0.043714136 -0.46292263 -0.77714598 0.043714136 -0.46495363 -0.37984097 0.29738912\n\t\t -0.41787764 -0.41475493 0.33458012 -0.32814357 -0.57296795 0.51106411 -0.32556158 -0.59262693 0.50975209\n\t\t 0.27792338 -0.35280001 -0.11811776 0.27792338 -0.35280001 -0.11811776 0.27792338 -0.35280001 -0.11811776\n\t\t 0.39755437 -0.56488693 0.29444605 0.47417435 -0.51397896 0.18418506 -0.47434565 -0.45009601 -0.28947288\n\t\t -0.50390959 -0.46967202 -0.28947288 0.65408742 -0.33073801 -0.27653831 0.65408742 -0.33073801 -0.27653831\n\t\t 0.65454739 -0.33381402 -0.25644082 0.36852935 -0.43094897 0.37268305 0.36852935 -0.43094897 0.37268305\n\t\t 0.36852935 -0.43094897 0.37268305 0.32938936 -0.42843896 0.38064706 -0.5234856 -0.49923599 -0.28947288\n\t\t 0.50766641 -0.46095204 -0.25723267 0.52989644 -0.494524 -0.25723267 -0.25198057 -0.33270195 0.53362209\n\t\t -0.25198057 -0.33270195 0.53362209 -0.23987155 -0.32900494 0.53159213 0.24385843 -0.61408997 0.17494106\n\t\t 0.47037041 -0.61408997 0.17494106 -0.67142159 -0.32667199 -0.13387948 -0.67926055 -0.29002699 -0.15343219\n\t\t 0.35074937 -0.49923599 -0.24991974 0.34368637 -0.53398299 -0.24991974 -0.0024815914 -0.438618 0.13511306\n\t\t 0.16535045 -0.48122293 0.54655898 0.15074745 -0.49079496 0.54822809 -0.060583334 -0.82948697 0.7738331\n\t\t -0.040444735 -0.82948697 0.77666509 0.54360545 -0.45763397 0.061201021 0.64695442 -0.34963 -0.30305898\n\t\t 0.6479584 -0.37142503 -0.26743001 -0.63198256 -0.436573 -0.061291873 -0.72900057 0.17372401 -0.065412916\n\t\t -0.72900057 0.17372401 -0.065412916 0.37038141 -0.48736495 0.36952507 0.40423736 -0.46474296 0.34137708\n\t\t 0.16370545 -0.063394725 0.67959297 0.16382246 -0.054627225 0.67640013 -0.51262957 -0.46095204 -0.28215951\n\t\t -0.5348596 -0.494524 -0.28215945 0.46938238 -0.45009601 -0.28947294 0.49894643 -0.46967202 -0.28947294\n\t\t 0.26304135 -0.60548598 -0.018963933 -0.15358154 -0.31302595 0.61642897;\n\tsetAttr \".vt[8798:8963]\" -0.14407855 -0.38547295 0.57706499 -0.27166963 -0.46613902 -0.070439905\n\t\t -0.36707759 -0.82092398 0.11398613 -0.14083764 -0.82092398 -0.19176027 -0.14083764 -0.82092398 -0.19176027\n\t\t -0.37313363 -0.81750602 0.12217015 -0.37313363 -0.81750602 0.12217015 0.53860128 -0.33789203 -0.43455794\n\t\t 0.17110348 -0.20972292 0.67686611 0.16948044 -0.22306094 0.67140698 0.16948044 -0.22306094 0.67140698\n\t\t -0.37528864 -0.46967202 -0.214746 -0.0024815879 -0.61408997 0.17494112 -0.61979359 -0.46517003 -0.057003871\n\t\t -0.37417975 0.17550389 -1.025614977 -0.36960769 0.1576259 -1.020292997 -0.22760358 -0.78252602 0.2298561\n\t\t -0.65324455 -0.31158999 -0.17576578 -0.62462157 -0.44725001 -0.083067872 -0.62462157 -0.44725001 -0.083067872\n\t\t 0.26304135 -0.60548598 -0.045821935 0.2360144 -0.61108297 -0.045821935 -0.37283671 0.19206493 -1.035364985\n\t\t -0.6703946 -0.32312202 -0.22347076 -0.6703946 -0.32312202 -0.22347076 -0.67283857 -0.310321 -0.21554017\n\t\t -0.67283857 -0.310321 -0.21554017 -0.3594957 0.18087892 -1.016487002 -0.35829577 0.1956789 -1.025200009\n\t\t -0.62458956 -0.41600999 -0.036485881 0.35074937 -0.56873 -0.24991974 0.50044543 0.47028303 0.27630994\n\t\t -0.24045755 -0.45833993 0.53647614 -0.27647159 -0.47294998 0.52894211 -0.64923358 -0.42258099 -0.16891398\n\t\t -0.6519646 -0.40893203 -0.19922706 0.44513336 0.47583902 0.27905294 0.44513336 0.47583902 0.27905294\n\t\t 0.36160535 -0.607014 -0.25723284 -0.16561155 0.21976705 0.570979 -0.16561155 0.21976705 0.570979\n\t\t -0.16561155 0.21976705 0.570979 -0.32061759 0.29086703 0.4603191 -0.26332459 -0.65872395 0.52532411\n\t\t -0.23045956 -0.66962892 0.5300321 0.1369053 0.17525791 -1.15449703 0.1406593 0.17124791 -1.15192699\n\t\t 0.13247029 0.15446989 -1.14109683 0.1274053 0.15255789 -1.14158893 0.29290336 -0.483347 -0.07043995\n\t\t 0.31011137 -0.50954401 -0.07043995 -0.67826056 -0.18075201 -0.26338789 -0.37528864 -0.59829301 -0.24991968\n\t\t -0.35571265 -0.56873 -0.24991968 -0.43959865 -0.62493199 -0.24991968 -0.40485165 -0.61786997 -0.24991989\n\t\t 0.57454145 -0.52175802 0.056274027 0.6070314 -0.48309004 -0.03094098 0.6070314 -0.48309004 -0.03094098\n\t\t 0.56048542 -0.44041997 0.026773021 0.30200541 -0.50012892 0.53195912 0.31995142 -0.53486496 0.52574897\n\t\t -0.71520656 0.121507 -0.070548922 -0.7201286 0.127151 -0.06495592 -0.65951055 -0.33381402 -0.2564407\n\t\t -0.66042656 -0.33127004 -0.23810126 0.2360144 -0.46938902 -0.04582195 0.20898739 -0.47498602 -0.04582195\n\t\t -0.72316259 0.13108499 -0.064810917 0.29449743 -0.62225294 0.51161712 0.28393742 -0.63624692 0.51219112\n\t\t 0.48916131 0.58215797 -0.85477912 0.37867731 0.59511495 -0.97269714 -0.45529065 -0.82597399 0.050401136\n\t\t -0.46302065 -0.77973402 0.044681147 -0.29858765 -0.13430302 -0.26776403 -0.29824963 -0.047064722 -0.26776403\n\t\t -0.29824963 -0.047064722 -0.26776403 0.43463537 -0.63726401 -0.25723267 0.47409436 -0.62924403 -0.25723267\n\t\t 0.29363343 -0.64511293 0.50972199 0.26263541 -0.66952991 0.5128991 0.30559543 -0.62925994 0.50907099\n\t\t -0.59978259 -0.023362264 0.19389907 -0.60280061 -0.0069903433 0.18827006 -0.16405155 0.22458704 0.57115012\n\t\t -0.31995657 0.29664302 0.46199799 0.46758237 0.48253602 0.287938 0.44071543 0.47468102 0.28698292\n\t\t 0.44071543 0.47468102 0.28698292 -0.64644456 -0.40248001 -0.085003875 -0.70439559 0.12465401 -0.050546914\n\t\t -0.70439559 0.12465401 -0.050546914 -0.70662856 0.12879901 -0.050909922 0.16986145 -0.22750694 0.66022414\n\t\t 0.16986145 -0.22750694 0.66022414 -0.68201458 -0.067581415 -0.3124249 -0.68201458 -0.067581415 -0.3124249\n\t\t -0.19139455 -0.68068296 0.52507812 -0.15538055 -0.66607392 0.53261209 -0.37528864 -0.59829402 -0.21474639\n\t\t -0.35571265 -0.56873 -0.214746 0.28857943 -0.49186796 0.42922401 0.20402741 -0.53449595 0.484079\n\t\t 0.1122093 0.16050993 -1.15469193 0.1139373 0.15526991 -1.15213001 0.58203942 0.051500842 0.146312\n\t\t 0.54596144 0.051500842 0.14677998 -0.31507465 -0.50954401 -0.051405899 -0.32143164 -0.540236 -0.051405892\n\t\t -0.3519997 0.20696391 -1.03649497 -0.47434565 -0.61786902 -0.24991968 -0.57707858 -0.024255574 0.19204405\n\t\t -0.57987857 -0.012002766 0.18675706 -0.57987857 -0.012002766 0.18675706 -0.31507465 -0.57092798 -0.051405892\n\t\t 0.93002743 0.10313495 -0.64833212 0.93002743 0.10313495 -0.64833212 0.91662431 0.11711992 -0.64334905\n\t\t -0.16837555 -0.75532293 0.58524811 -0.16837558 -0.75532293 0.4683001 -0.3028577 0.19560592 -1.073071003\n\t\t -0.3149327 0.20691492 -1.068503022 -0.60716558 0.019556224 0.17920411 0.44431636 0.47183406 0.28542092\n\t\t 0.44431636 0.47183406 0.28542092 0.42488343 0.44663107 0.28105393 0.34324637 -0.44414198 0.39261705\n\t\t 0.31973937 -0.46034998 0.41030711 0.16107646 -0.47041696 0.55898499 0.19830745 -0.45806295 0.55365098\n\t\t 0.51085645 0.34294897 0.22426599 0.48806143 0.34025997 0.22346494 -0.46155664 -0.77596903 0.041609138\n\t\t -0.23649564 -0.72332799 -0.26254368 -0.23649564 -0.72332799 -0.26254368 0.1346463 0.1759889 -1.14929581\n\t\t -0.19033955 -0.06394884 0.661924 -0.18904555 -0.10590994 0.66731709 0.75678742 0.42266899 -0.15040576\n\t\t 0.75678742 0.42266899 -0.15040576 0.7315774 0.42746001 -0.13535367 0.7315774 0.42746001 -0.13535367\n\t\t 0.93520445 0.10315894 -0.63396114 0.93520445 0.10315894 -0.63396114 0.92178243 0.11711393 -0.62913203\n\t\t -0.34928164 -0.49657202 -0.2057716 -0.37035865 -0.46474302 -0.2057716 -0.23758055 -0.47137797 0.53580809\n\t\t -0.26937059 -0.48427397 0.5291571 -0.21372961 -0.71785498 -0.24569769 -0.21372961 -0.71785498 -0.24569769\n\t\t 0.14769742 -0.63780302 0.071073085 0.14769742 -0.63780302 0.071073085 -0.0024815712 -0.63780397 0.071073115\n\t\t 0.58560145 -0.36272401 0.061728016 0.59012944 -0.34748399 0.047731996 0.50766641 -0.60701299 -0.28215957\n\t\t 0.5989033 0.55514896 -0.68462014 0.54855227 0.57043797 -0.77200413 0.66645843 -0.32667199 -0.1338796\n\t\t 0.67429739 -0.29002699 -0.15343231 0.27639341 -0.45727897 0.41622108 -0.40218863 -0.44366604 -0.20577189\n\t\t -0.91118461 -0.11157005 -0.6021589 -0.91118461 -0.11157005 -0.6021589;\n\tsetAttr \".vt[8964:9129]\" -0.91187459 -0.10814404 -0.60327387 0.16516739 -0.540236 -0.076024935\n\t\t 0.17076439 -0.51320899 -0.076024935 0.14769742 -0.56099796 0.14413905 0.2360144 -0.61658001 -0.012080938\n\t\t 0.20689039 -0.61054897 -0.012080938 0.93366843 0.056259677 -0.51964509 -0.69485855 0.253407 0.068510056\n\t\t -0.69485855 0.253407 0.068510056 -0.68349057 0.23661201 0.069121063 0.51852244 -0.56873 -0.28947294\n\t\t 0.49894643 -0.59829301 -0.28947294 -0.075107135 -0.71681494 0.8037191 0.30632737 -0.56936002 -0.012080953\n\t\t 0.28999835 -0.59421998 -0.012080953 -0.26800463 -0.47498602 -0.076024905 -0.29107365 -0.49014002 -0.076023899\n\t\t -0.24097762 -0.46938902 -0.076023906 -0.89681768 -0.11021805 -0.60083985 0.41286141 -0.45341396 0.34763098\n\t\t 0.35140842 -0.49284995 0.39646703 -0.53648859 0.0030380934 0.2557041 -0.51279747 -0.032737866 0.30744705\n\t\t 0.1176923 0.1512609 -1.14955997 0.27329442 -0.47387296 0.539271 0.16516739 -0.540236 -0.088373132\n\t\t 0.17076439 -0.51320899 -0.08837314 -0.24882159 -0.61408997 0.17494112 -0.89689672 -0.11227605 -0.59539789\n\t\t -0.91132867 -0.11297105 -0.59760088 -0.91132867 -0.11297105 -0.59760088 -0.20148455 -0.45713994 0.5433231\n\t\t 0.52495241 -0.57139301 -0.21059477 0.50387543 -0.60322303 -0.21059476 0.1229223 0.14906792 -1.14735794\n\t\t 0.46938238 -0.61786902 -0.28947294 -0.28999975 0.1648169 -1.06821394 -0.29408476 0.18079291 -1.072970033\n\t\t 0.57764441 -0.20230497 0.24870101 0.6384064 0.051188633 0.16079894 0.6384064 0.051188633 0.16079894\n\t\t 0.16784345 -0.22848694 0.66065413 0.16784345 -0.22848694 0.66065413 0.53255641 -0.53398299 -0.21059497\n\t\t -0.13140865 0.86588103 -0.49799106 -0.0024816219 0.876028 -0.50882602 -0.47434565 -0.45009601 -0.24991968\n\t\t -0.43959865 -0.44303399 -0.24991968 0.50743651 0.45119303 0.27944294 0.51399255 0.42432904 0.27195001\n\t\t -0.24324961 -0.438618 0.13511312 -0.24324961 -0.438618 0.13511312 -0.35344571 0.74509794 -0.47134602\n\t\t -0.19460167 0.79508299 -0.59609401 -0.6539256 -0.39322001 -0.23180047 -0.65292156 -0.37142503 -0.26742989\n\t\t -0.47905764 -0.43872201 -0.25723279 -0.43959865 -0.43070203 -0.25723279 -0.18542364 0.85288197 -0.483733\n\t\t 0.5579834 -0.37869897 0.179627 0.5749414 -0.27331898 0.20648199 -0.29119968 0.15001689 -1.059500933\n\t\t -0.92436469 -0.080377251 -0.54885685 -0.9127667 -0.11017004 -0.59041691 0.45999035 -0.37984097 0.29738906\n\t\t 0.48319542 -0.36091396 0.27701405 0.48319542 -0.36091396 0.27701405 0.52495241 -0.49657202 -0.21059498\n\t\t 0.43813935 0.46684206 0.30100992 0.43813935 0.46684206 0.30100992 0.43884435 0.45965302 0.30852994\n\t\t 0.43884435 0.45965302 0.30852994 0.31443635 -0.47879195 0.41240412 -0.32312858 -0.53394192 0.51542109\n\t\t -0.66860658 -0.33073199 -0.23815736 -0.66806459 -0.33321899 -0.25604808 0.51287341 -0.50112295 0.13963005\n\t\t 0.49729636 -0.49987197 0.12744907 -0.6392926 -0.386114 -0.059439868 -0.66374058 -0.31118399 -0.10842588\n\t\t 0.41825843 0.44259602 0.29336295 0.41825843 0.44259602 0.29336295 0.40993837 0.40912807 0.28516093\n\t\t 0.41291437 -0.41475493 0.33458 -0.16386256 -0.063979551 0.67156601 -0.16447455 -0.05277814 0.66900802\n\t\t 0.41991737 0.44964904 0.28274694 0.41991737 0.44964904 0.28274694 0.32234943 -0.52256495 0.41973609\n\t\t 0.36134037 -0.50169593 0.39390802 -0.17013061 -0.540236 -0.0089409053 -0.17572761 -0.51320899 -0.0089409053\n\t\t -0.16908655 -0.045466542 0.66564 -0.16908655 -0.045466542 0.66564 -0.17587955 -0.042783037 0.66248298\n\t\t -0.17587955 -0.042783037 0.66248298 0.48950937 0.46915007 0.30564192 0.48567137 0.46231103 0.31386298\n\t\t 0.48567137 0.46231103 0.31386298 -0.92771769 -0.070128247 -0.53970289 -0.29749575 0.13873093 -1.048205853\n\t\t -0.18303655 -0.045465931 0.6605621 -0.18303655 -0.045465931 0.6605621 0.44853935 -0.35877597 0.28124306\n\t\t 0.73181742 0.23854803 0.086032927 0.7107814 0.19493203 0.089322925 -0.15716656 -0.66699696 0.54294109\n\t\t -0.14164655 -0.65516591 0.54668313 0.04385145 -0.42581093 0.62495899 -0.0024815225 -0.42135793 0.626284\n\t\t -0.16803154 0.12158807 0.61194509 -0.16180055 0.21825705 0.57528901 -0.16180055 0.21825705 0.57528901\n\t\t 0.52221841 -0.50666994 0.14553705 0.52221841 -0.50666994 0.14553705 -0.28288665 -0.35280001 -0.11811771\n\t\t -0.28288665 -0.35280001 -0.11811771 -0.28288665 -0.35280001 -0.11811771 -0.0024816135 -0.35280001 -0.11811773\n\t\t -0.3443377 -0.494524 -0.28215951 -0.36656868 -0.46095204 -0.28215951 0.63432944 -0.386114 -0.059439987\n\t\t 0.65877742 -0.31118399 -0.108426 0.17212945 -0.22175294 0.66090614 0.62030441 0.051189438 0.169065\n\t\t 0.62030441 0.051189438 0.169065 0.56108153 -0.19843397 0.25492299 0.56405443 -0.57470292 0.15505105\n\t\t 0.53460443 -0.54072696 0.14396706 0.53460443 -0.54072696 0.14396706 -0.47905663 -0.62924403 -0.28215969\n\t\t -0.43959865 -0.63726401 -0.28215969 0.67843139 0.22854201 0.10781494 0.64850444 0.18566404 0.11348897\n\t\t -0.57031161 -0.13430306 -0.65275693 -0.57031161 -0.13430306 -0.65275693 -0.57031161 -0.13430306 -0.65275693\n\t\t -0.5696677 -0.047064751 -0.66572088 -0.5696677 -0.047064751 -0.66572088 -0.63115859 -0.42638999 -0.098222375\n\t\t 0.50387543 -0.46474302 -0.21059477 -0.40013969 -0.62924403 -0.28215945 0.64113444 -0.29324603 -0.36152601\n\t\t 0.6353144 -0.23686203 -0.41999406 -0.17150955 0.060378358 0.63351709 0.5781464 -0.25819597 0.20545501\n\t\t -0.15480255 -0.23749793 0.66757911 -0.15480255 -0.23749793 0.66757911 -0.14916855 -0.23749694 0.65209812\n\t\t -0.33631763 -0.53398299 -0.25723261 -0.34433764 -0.49452502 -0.25723261 0.20000145 -0.47124195 0.55218011\n\t\t 0.23440345 -0.47230196 0.54613698 0.18203039 -0.48625302 -0.015823945 0.20689039 -0.46992403 -0.015823945\n\t\t -0.17146955 0.060130253 0.63023698 -0.16801655 0.12124504 0.60869008 -0.3761397 0.2176479 -1.045779943\n\t\t -0.3604477 0.22681592 -1.064096928 -0.27418265 -0.429187 -0.1181178 0.16041945 -0.21025294 0.67176312\n\t\t 0.16114545 -0.22529694 0.66762513 -0.17921054 -0.22344694 0.65961099 -0.17581555 -0.23036493 0.6589511\n\t\t -0.17581555 -0.23036493 0.6589511 0.42076829 0.65063995 -0.8248021;\n\tsetAttr \".vt[9130:9295]\" 0.40268129 0.65525591 -0.83931816 0.40268129 0.65525591 -0.83931816\n\t\t -0.37155965 -0.755521 0.11091611 -0.37155965 -0.755521 0.11091611 -0.37855059 -0.75720102 0.10574311\n\t\t -0.37855059 -0.75720102 0.10574311 0.85581028 0.055785134 -0.73550314 0.8484633 0.043839738 -0.74139011\n\t\t 0.60512644 -0.29646 0.022046 -0.5334596 -0.53379494 0.13511312 -0.41665664 -0.53379494 0.13511312\n\t\t -0.18221755 -0.20928894 0.66209197 0.37825131 0.64146596 -0.83841813 0.53256345 -0.51357591 0.15052605\n\t\t 0.53256345 -0.51357591 0.15052605 -0.33631763 -0.53398299 -0.28215951 0.26304135 -0.47498602 -0.07602495\n\t\t 0.28611135 -0.49014002 -0.076023951 -0.36579177 0.20469292 -1.048004031 -0.35407475 0.21153791 -1.061679006\n\t\t 0.1141213 0.15812691 -1.14717984 0.1174763 0.15454291 -1.14488399 -0.17013061 -0.540236 -0.018963903\n\t\t -0.17572761 -0.51320899 -0.018963903 -0.2867797 -0.25216603 -0.26776412 -0.2867797 -0.25216603 -0.26776412\n\t\t -0.2867797 -0.25216603 -0.26776412 -0.0024816268 -0.25216603 -0.26776415 -0.47533357 -0.61408997 0.17494112\n\t\t -0.47533357 -0.61408997 0.17494112 -0.54265058 -0.61408997 0.17494112 -0.18776155 -0.16324192 0.66727197\n\t\t 0.30126438 -0.51320899 -0.07602495 0.1221503 0.15258391 -1.14291596 0.16191345 -0.20926994 0.66768008\n\t\t 0.16236144 -0.22344194 0.66393811 0.55071545 -0.64955395 0.14338204 0.5623374 -0.63640392 0.14973706\n\t\t -0.47434565 -0.45009601 -0.21474639 -0.50390959 -0.46967202 -0.21474598 0.71585041 0.33555496 0.11161295\n\t\t 0.72443742 0.29043198 0.099207938 -0.52373558 -0.429187 -0.11811778 -0.52373558 -0.429187 -0.11811778\n\t\t -0.52373558 -0.429187 -0.11811778 -0.46470064 -0.50829703 0.039827108 -0.46470064 -0.50829703 0.039827108\n\t\t -0.17241155 -0.23201494 0.65966296 -0.17241155 -0.23201494 0.65966296 -0.32058576 0.21757491 -1.093750954\n\t\t -0.3024897 0.20062591 -1.10059881 -0.29354259 -0.49186796 0.42922413 -0.31939963 -0.47879195 0.41240412\n\t\t 0.095239848 -0.43914795 0.61966002 -0.50390959 -0.46967202 -0.24991968 -0.5234856 -0.49923599 -0.24991989\n\t\t 0.088141061 -0.59087092 0.69545996 0.063894853 -0.57958394 0.69954711 0.16570139 -0.51111197 -0.015823931\n\t\t 0.5121724 0.34118599 0.24293 0.48418641 0.33799899 0.24087501 0.64648044 0.052940115 0.10054898\n\t\t 0.64648044 0.052940115 0.10054898 0.64324343 0.051500723 0.10203201 0.64324343 0.051500723 0.10203201\n\t\t -0.33105275 0.12151392 -1.03488183 -0.34627977 0.12839492 -1.02529192 0.56783539 -0.61834592 0.15323806\n\t\t -0.40594769 0.72084898 -0.31273997 -0.43630064 0.68547201 -0.25834149 0.2360144 -0.45978299 -0.051405951\n\t\t 0.20532238 -0.46613902 -0.051405951 0.30968243 -0.59090292 0.54476911 0.30895743 -0.59241992 0.55302\n\t\t 0.30895743 -0.59241992 0.55302 -0.36656764 -0.60701299 -0.28215969 -0.3443377 -0.57344103 -0.28215951\n\t\t -0.19304755 -0.063169137 0.66074002 -0.19175555 -0.10613094 0.66634798 -0.53054756 -0.53398299 -0.24991989\n\t\t 0.52692831 0.63088197 -0.67638111 0.54435527 0.62592393 -0.63955814 0.73621744 0.47215199 -0.32151109\n\t\t 0.73621744 0.47215199 -0.32151109 0.7442134 0.47209996 -0.32761908 0.7442134 0.47209996 -0.32761908\n\t\t -0.31651771 0.1214949 -1.047433853 -0.72206956 0.42798698 -0.037662946 -0.73534459 0.36765999 -0.043202937\n\t\t 0.46444735 -0.085815966 0.38417 0.44392043 -0.10527696 0.41228199 -0.16900155 -0.23330393 0.664294\n\t\t -0.16900155 -0.23330393 0.664294 -0.16610855 -0.22529694 0.66762513 -0.16937555 -0.23036493 0.66129601\n\t\t -0.16937555 -0.23036493 0.66129601 -0.33398569 0.783454 -0.40253305 0.31646836 -0.540236 -0.07043995\n\t\t 0.31011137 -0.57092798 -0.07043995 0.72934639 0.48510301 -0.38464406 0.68488729 0.51568997 -0.51877207\n\t\t -0.20899057 -0.53449595 0.48407912 -0.28457263 -0.25428501 -0.18293604 -0.28457263 -0.25428501 -0.18293604\n\t\t -0.2139506 -0.47498602 -0.076024905 -0.16732454 -0.22344194 0.66393811 0.28488842 -0.54098392 0.44269413\n\t\t 0.70555443 -0.035130024 -0.25996596 0.70776039 0.037702486 -0.28878605 -0.0024815225 -0.36571294 0.62640297\n\t\t -0.050986148 -0.36922893 0.62539399 0.38626641 -0.43360293 0.35486907 0.38626641 -0.43360293 0.35486907\n\t\t 0.38626641 -0.43360293 0.35486907 0.34722942 -0.43120295 0.36305404 -0.10643355 -0.38055095 0.62169898\n\t\t -0.10643355 -0.38055095 0.62169898 -0.1143667 0.15255891 -1.15216494 -0.1120517 0.15957789 -1.15559602\n\t\t 0.68979943 0.24533702 0.10583493 0.68979943 0.24533702 0.10583493 0.2360144 -0.45978299 -0.07043995\n\t\t 0.20532238 -0.46613902 -0.07043995 -0.29859659 -0.64511293 0.50972211 -0.26759759 -0.66952991 0.5128991\n\t\t -0.49460757 -0.057128459 0.34271812 -0.17323455 -0.23554695 0.66201401 -0.17323455 -0.23554695 0.66201401\n\t\t 0.10548645 -0.34706795 0.62837714 0.10980947 -0.33432394 0.63095409 0.10980947 -0.33432394 0.63095409\n\t\t -0.5234856 -0.49923599 -0.21474637 0.81764829 -0.084310457 -0.73657799 0.71960044 0.48560101 -0.37978703\n\t\t 0.53675544 -0.66244292 0.13500306 0.5547424 -0.65566093 0.14476106 -0.29946059 -0.62225294 0.51161712\n\t\t -0.28890058 -0.63624692 0.51219112 0.27705741 -0.62936497 0.39504004 0.24317046 -0.64258194 0.421435\n\t\t 0.66747344 -0.27484301 -0.12758809 -0.34820965 -0.44414198 0.39261711 -0.37349263 -0.43094897 0.37268311\n\t\t -0.37349263 -0.43094897 0.37268311 -0.37349263 -0.43094897 0.37268311 -0.27421159 -0.47553694 0.41811913\n\t\t -0.29775575 0.1409689 -1.073747993 -0.30480069 0.12834091 -1.061108828 -0.21807557 -0.53379494 0.13511312\n\t\t -0.32889271 0.779383 -0.39685601 -0.18301363 0.84795803 -0.47598508 0.29290336 -0.59712499 -0.070439942\n\t\t 0.26670635 -0.61433297 -0.070439935 0.89548039 0.10500698 -0.42807907 0.89548039 0.10500698 -0.42807907\n\t\t 0.89548039 0.10500698 -0.42807907 0.58841741 -0.049746469 0.20311499 0.52885854 -0.26208597 0.276595\n\t\t 0.52885854 -0.26208597 0.276595 0.69043541 -0.14394701 -0.18320617 0.55916244 -0.26283297 0.26851898\n\t\t 0.53387141 -0.65546292 0.13461804 0.59481943 -0.023362264 0.19389901 0.59783745 -0.0069903433 0.18827\n\t\t -0.17823555 -0.064476937 0.65598297 -0.17489354 0.063827351 0.62387711;\n\tsetAttr \".vt[9296:9461]\" -0.17148355 0.12421606 0.60223198 -0.17148355 0.12421606 0.60223198\n\t\t -0.17148355 0.12421606 0.60223198 0.49326435 0.47755003 0.28663692 0.49326435 0.47755003 0.28663692\n\t\t -0.16747455 -0.04259254 0.6654641 -0.17563055 -0.03936474 0.66164696 -0.13340054 -0.63391393 0.67981112\n\t\t -0.13364355 -0.57722497 0.68178409 0.65532541 0.031597406 0.050787985 0.64655942 0.033291221 0.10381299\n\t\t 0.64655942 0.033291221 0.10381299 0.64655942 0.033291221 0.10381299 -0.28135657 -0.45727897 0.41622108\n\t\t -0.32470265 -0.46034998 0.41030711 0.42129943 -0.12469395 0.44042498 -0.53054756 -0.53398299 -0.21474637\n\t\t 0.18203139 -0.59421998 -0.015823931 0.16570239 -0.56936097 -0.015823931 0.66820639 0.027140096 -0.10542593\n\t\t 0.66820639 0.027140096 -0.10542593 0.66820639 0.027140096 -0.10542593 0.66614842 0.028521895 -0.053831026\n\t\t 0.37032536 -0.46967202 -0.20162036 0.35074937 -0.49923599 -0.20162036 0.54952431 0.56668693 -0.77325815\n\t\t 0.49016631 0.57844096 -0.8561061 -0.31103864 -0.52425992 0.41530108 -0.22217254 -0.56759793 0.46927214\n\t\t -0.22217254 -0.56759793 0.46927214 0.63677841 0.028622702 -0.10876822 -0.38056958 -0.79959899 0.10847116\n\t\t -0.37855059 -0.80989897 0.10574314 -0.37855059 -0.80989897 0.10574314 -0.16693255 -0.038213938 0.66829598\n\t\t -0.17648855 -0.034474447 0.66378909 -0.17482455 -0.22750694 0.66022414 -0.17482455 -0.22750694 0.66022414\n\t\t -0.17280655 -0.22848694 0.66065413 -0.17280655 -0.22848694 0.66065413 0.51852244 -0.56873 -0.24991995\n\t\t 0.49894643 -0.59829301 -0.24991977 -0.35571271 -0.56873 -0.28947288 -0.34864965 -0.53398299 -0.28947288\n\t\t 0.6960544 -0.15720901 -0.21114962 -0.16344355 -0.24436694 0.6477471 -0.74283659 0.30628496 -0.037164927\n\t\t -0.74920261 0.24094202 -0.039234921 0.56718844 -0.0018348545 0.18312299 0.55645144 -0.001831755 0.20681998\n\t\t -0.5348596 -0.57344198 -0.28215945 -0.51262957 -0.60701299 -0.28215945 -0.10334755 -0.37604693 0.5824241\n\t\t 0.35074937 -0.49923599 -0.21474627 0.37032536 -0.46967202 -0.21474606 -0.17339355 -0.13994893 0.66810113\n\t\t -0.15190664 -0.37584901 -0.28618762 -0.12970461 -0.38961202 -0.28619033 0.54247242 -0.0018360019 0.233547\n\t\t 0.54247242 -0.0018360019 0.233547 -0.18659855 -0.038213938 0.66113812 0.5255844 -0.53398299 -0.24991995\n\t\t -0.5234856 -0.56873 -0.28947288 -0.50390959 -0.59829301 -0.28947288 -0.18423955 -0.04259254 0.65936214\n\t\t -0.24097762 -0.61108398 -0.0089408904 -0.2139506 -0.60548598 -0.0089408904 -0.31129065 -0.51111197 -0.012080893\n\t\t -0.31732163 -0.540236 -0.012080893 -0.54287958 -0.53398299 -0.28215969 0.70111644 -0.018795907 -0.23341903\n\t\t -0.33953971 0.21151893 -1.074231029 -0.32431269 0.20463891 -1.08382082 0.53398144 -0.54087591 0.12811404\n\t\t 0.53398144 -0.54087591 0.12811404 0.53217041 -0.51348794 0.13486406 0.53217041 -0.51348794 0.13486406\n\t\t -0.47434565 -0.61786902 -0.28947288 -0.54356468 -0.33789203 -0.43455788 0.5998134 0.55136591 -0.68582112\n\t\t -0.23036654 -0.68188393 0.51823211 -0.53411555 0.345222 0.22453305 -0.53411555 0.345222 0.22453305\n\t\t -0.54774755 0.34767199 0.22175306 -0.31129065 -0.51111197 -0.015823886 -0.31732163 -0.540236 -0.015823886\n\t\t -0.19438656 -0.047800943 0.66067809 -0.19697656 -0.061603844 0.66274202 0.56390643 -0.012007877 0.21078998\n\t\t 0.57491541 -0.012002766 0.186757 0.57491541 -0.012002766 0.186757 0.15951145 -0.05277814 0.66900802\n\t\t 0.15889946 -0.063979551 0.67156601 -0.10399462 -0.39423603 -0.28619531 -0.19085956 -0.050964549 0.65894699\n\t\t 0.39875942 -0.20621595 0.45800298 0.41065541 -0.16627495 0.45851499 0.41065541 -0.16627495 0.45851499\n\t\t 0.81859344 -0.097843051 -0.72960603 0.56438541 -0.57529491 0.13941005 -0.1193957 0.14718892 -1.14872193\n\t\t -0.7060796 -0.018795907 -0.23341891 -0.7090736 0.057309493 -0.2638123 0.60997242 -0.28015801 0.015409008\n\t\t -0.22867255 -0.66870493 0.5197041 -0.19427055 -0.66764492 0.52574712 -0.61561757 0.051500842 0.14558309\n\t\t -0.63505059 0.051500842 0.14217708 0.87091941 -0.17592104 -0.61119604 0.87091941 -0.17592104 -0.61119604\n\t\t 0.86596632 -0.17598605 -0.62483203 0.86596632 -0.17598605 -0.62483203 0.57369041 -0.61675292 0.14170605\n\t\t 0.5722754 -0.59600896 0.14199907 0.31646836 -0.540236 -0.051405951 0.31011137 -0.57092798 -0.051405951\n\t\t 0.73967141 0.471982 -0.30302107 0.71942639 0.48926198 -0.37661007 -0.29496163 -0.48625302 -0.012080893\n\t\t -0.58700258 0.051500842 0.14631209 -0.63226861 -0.443407 -0.10132778 -0.50642848 -0.083207652 0.33738911\n\t\t -0.52741057 -0.053757071 0.29474711 0.27807835 -0.49817199 -0.10438785 0.29080236 -0.517542 -0.10438785\n\t\t 0.25220442 -0.34698495 0.51968414 0.25220442 -0.34698495 0.51968414 0.15940344 -0.34697494 0.61131597\n\t\t -0.5449726 -0.53862697 0.13225111 -0.5449726 -0.53862697 0.13225111 0.18326046 -0.10661694 0.68213111\n\t\t -0.3996467 0.71766102 -0.308626 -0.42951763 0.68278497 -0.25505888 0.26356825 0.45937687 -1.12659216\n\t\t 0.49894643 -0.59829301 -0.21474645 0.46938238 -0.61786997 -0.21474645 0.18245845 -0.16318893 0.67778802\n\t\t 0.18605348 -0.10608693 0.67700011 0.18139444 -0.04950574 0.67013502 0.18139444 -0.04950574 0.67013502\n\t\t 0.18496846 -0.054614842 0.66870201 0.1247173 0.17797391 -1.15259004 0.1299713 0.17794792 -1.151263\n\t\t 0.74341244 0.42469597 -0.33607307 0.74772644 0.37616497 -0.35225511 0.74772644 0.37616497 -0.35225511\n\t\t 0.18687145 -0.063367844 0.67115611 0.52910352 -0.020889267 0.26109698 0.51269442 -0.044274077 0.294911\n\t\t 0.1196513 0.17606191 -1.15308201 0.16762248 -0.049509928 0.67514801 0.16762248 -0.049509928 0.67514801\n\t\t -0.67243659 -0.27484301 -0.12758799 0.25911042 -0.58358496 0.59806412 0.25427443 -0.59539396 0.597844\n\t\t -0.20871867 0.0069974661 -1.0014200211 -0.10495468 0.0069950074 -1.050133944 0.20532238 -0.61433297 -0.070439935\n\t\t 0.17912439 -0.59712499 -0.070439935 0.25520331 0.58099693 -1.075587153 -0.10622355 -0.61224496 0.69235408\n\t\t -0.10628454 -0.61689395 0.69225013 -0.10628454 -0.61689395 0.69225013 -0.74045157 0.19375302 -0.025077924\n\t\t -0.76140857 0.24102701 -0.039081916 -0.76140857 0.24102701 -0.039081916;\n\tsetAttr \".vt[9462:9627]\" -0.69539857 -0.14394701 -0.18320605 0.35659042 -0.23843695 0.47676599\n\t\t 0.17442445 -0.047204033 0.67230797 0.17442445 -0.047204033 0.67230797 -0.1302477 0.18230389 -1.160272\n\t\t -0.13812269 0.18226592 -1.158283 -0.70101756 -0.15720901 -0.21114948 -0.71051759 -0.035130024 -0.25996584\n\t\t 0.39988837 -0.61786997 -0.21474606 0.37032536 -0.59829402 -0.21474645 0.43463537 -0.62493199 -0.24991974\n\t\t 0.39988837 -0.61786997 -0.24991995 -0.43959865 -0.62493199 -0.28947288 -0.36656862 -0.46095204 -0.25723279\n\t\t -0.30518258 -0.49920595 0.52163011 -0.4001407 -0.43872201 -0.28215969 0.35074937 -0.56873 -0.21474606\n\t\t -0.28934076 0.17842491 -1.10044694 -0.37994057 -0.16127695 0.48014498 -0.46714658 -0.10678496 0.36435109\n\t\t 0.18589646 -0.050964549 0.65894699 0.18808545 -0.063169137 0.66074002 0.12826347 -0.79723096 0.67593211\n\t\t 0.12826347 -0.79723096 0.67593211 0.12826347 -0.79723096 0.67593211 0.14785445 -0.75532293 0.59469813\n\t\t -0.12265571 0.1794389 -1.16101003 0.17259939 -0.79462397 -0.19782692 0.17259939 -0.79462397 -0.19782692\n\t\t 0.16250639 -0.79462397 -0.21146691 0.16250639 -0.79462397 -0.21146691 0.53773344 -0.0085910559 0.24331498\n\t\t 0.17091645 -0.042783037 0.66248298 0.17091645 -0.042783037 0.66248298 -0.90981972 -0.084386125 -0.49677688\n\t\t -0.90607667 -0.09800034 -0.50284386 -0.5721516 -0.0018348545 0.18312311 -0.5614146 -0.001831755 0.20682004\n\t\t -0.31055859 -0.62925994 0.50907111 0.43463537 -0.63190299 -0.20577145 0.47204638 -0.6243 -0.20577165\n\t\t -0.10348855 -0.60423595 0.69310111 0.26670635 -0.46613902 -0.07043995 0.38426042 -0.20391196 0.463952\n\t\t 0.38426042 -0.20391196 0.463952 -0.43996963 -0.758205 0.060048148 -0.44602564 -0.76330298 0.068232149\n\t\t -0.44602564 -0.76330298 0.068232149 -0.71272355 0.037702486 -0.28878593 0.48344037 -0.77345103 -0.52346396\n\t\t 0.5310474 0.67595297 -0.099771477 0.5146994 0.67836601 -0.062712073 0.5146994 0.67836601 -0.062712073\n\t\t -0.35979077 0.14104991 -1.020179987 0.10158046 -0.81324095 0.69033509 0.6554634 -0.33127004 -0.23810138\n\t\t 0.6573754 -0.32339603 -0.22307828 0.6573754 -0.32339603 -0.22307828 0.18679345 -0.10613094 0.66634798\n\t\t -0.31270459 -0.58991593 0.51221812 -0.11853355 0.21410604 0.587672 -0.0024815248 0.21335407 0.60042912\n\t\t 0.52768642 -0.50405395 0.13399306 0.52768642 -0.50405395 0.13399306 0.18279845 -0.16324192 0.66727197\n\t\t 0.17725445 -0.20928894 0.66209197 0.30135542 -0.31907594 0.50364399 0.36936942 -0.24407296 0.47258997\n\t\t 0.51851845 -0.49843293 0.12821305 -0.65235257 0.052336231 0.092682093 -0.6514436 0.052940115 0.10054907\n\t\t -0.6514436 0.052940115 0.10054907 -0.93672669 0.044321284 -0.51056188 0.17721646 -0.20874295 0.67220199\n\t\t 0.53791642 -0.53398299 -0.25723284 0.52989644 -0.57344198 -0.25723267 0.17611247 -0.20973292 0.67504114\n\t\t 0.18082546 -0.16370493 0.68240499 0.50766641 -0.46095204 -0.28215957 0.52989644 -0.494524 -0.28215957\n\t\t -0.048397657 -0.84030396 0.4436031 -0.048397657 -0.84030396 0.4436031 -0.048397657 -0.76772493 0.44360209\n\t\t -0.048397657 -0.76772493 0.44360209 -0.31498259 -0.57256293 0.51337612 0.64715743 -0.21209303 -0.37652901\n\t\t 0.64715743 -0.21209303 -0.37652901 0.67071539 -0.06953153 -0.36870205 0.67071539 -0.06953153 -0.36870205\n\t\t 0.47409436 -0.62924403 -0.28215975 0.43463537 -0.63726401 -0.28215975 0.17076439 -0.56726402 -0.0089409351\n\t\t 0.16516739 -0.540236 -0.0089409351 -0.38279763 -0.74446303 0.10235411 -0.1565576 -0.68171799 -0.2033923\n\t\t -0.1565576 -0.68171799 -0.2033923 -0.12769458 -0.83691096 0.4436031 -0.12769458 -0.83691096 0.4436031\n\t\t 0.16744845 -0.23201494 0.65966296 0.16744845 -0.23201494 0.65966296 0.16441245 -0.23036493 0.66129601\n\t\t 0.16441245 -0.23036493 0.66129601 -0.60064656 -0.031905472 0.17836112 -0.60418957 -0.012523666 0.17199612\n\t\t -0.15266055 -0.74403894 0.54540414 -0.14938755 -0.89659792 0.54540414 -0.14938755 -0.89659792 0.54540414\n\t\t 0.70411044 0.057309493 -0.26381242 -0.22560355 -0.52722496 0.63005012 -0.24317256 -0.52776593 0.62696314\n\t\t 0.29328737 -0.047064722 -0.26776409 0.29328737 -0.047064722 -0.26776409 0.5647043 -0.047064751 -0.66572088\n\t\t 0.5647043 -0.047064751 -0.66572088 0.16827145 -0.23554695 0.66201401 0.16827145 -0.23554695 0.66201401\n\t\t -0.0024816268 -0.047064722 -0.26776409 -0.29786664 -0.59712499 -0.07043989 -0.27166963 -0.61433297 -0.07043989\n\t\t 0.76668042 0.36245596 -0.16114357 0.76668042 0.36245596 -0.16114357 0.74515843 0.34502596 -0.14938626\n\t\t 0.74515843 0.34502596 -0.14938626 -0.67111158 0.028521895 -0.053830914 -0.66028857 0.031597406 0.050788075\n\t\t 0.17085245 -0.23036493 0.6589511 0.17085245 -0.23036493 0.6589511 0.49220037 0.67857999 -0.053504065\n\t\t -0.48527259 -0.40326598 0.26336712 -0.50824559 -0.38119897 0.23470411 -0.50824559 -0.38119897 0.23470411\n\t\t -0.5686667 0.04753764 -0.69166189 -0.5686667 0.04753764 -0.69166189 -0.29772571 0.088653252 -0.73233491\n\t\t 0.19785438 -0.728513 -0.23762342 0.19785438 -0.728513 -0.23762342 0.20794739 -0.728513 -0.22398342\n\t\t 0.20794739 -0.728513 -0.22398342 -0.5495376 0.67923802 -0.20660317 -0.5495376 0.67923802 -0.20660317\n\t\t 0.36419836 -0.56315899 -0.32670695 0.35826835 -0.53398299 -0.32670695 -0.65101355 0.047537729 -0.69166189\n\t\t 0.57214332 0.62546295 -0.56101108 0.55489844 0.62432295 -0.61343312 0.18010145 -0.16301695 0.66827708\n\t\t 0.18408245 -0.10590994 0.66731709 -0.54849255 0.65124398 -0.10570138 0.29276231 0.088653252 -0.73233491\n\t\t 0.29276231 0.088653252 -0.73233491 -0.22665955 -0.53516293 0.62938714 -0.21249855 -0.53986192 0.63141513\n\t\t 0.17468245 -0.20841195 0.66328299 0.18641545 -0.59143096 0.63045597 0.18450844 -0.57658792 0.63211298\n\t\t -0.19484556 -0.54380095 0.6338861 -0.18536554 -0.55891895 0.6341731 0.56312543 0.067918733 -0.71900499\n\t\t 0.17424744 -0.22344694 0.65961099 -0.25940758 -0.53435194 0.6235671 0.18537645 -0.06394884 0.661924\n\t\t -0.35571265 -0.49923599 -0.20162028 -0.34864965 -0.53398299 -0.20162028 0.26304135 -0.47498602 -0.00894095\n\t\t 0.2360144 -0.46938902 -0.00894095 -0.20881955 -0.53279394 0.63245308;\n\tsetAttr \".vt[9628:9793]\" -0.54130858 0.67346299 -0.15168367 0.3832463 0.69104391 -0.81491315\n\t\t 0.38936231 0.66735393 -0.83993512 0.38936231 0.66735393 -0.83993512 0.098384447 -0.37604693 0.5824241\n\t\t 0.10147045 -0.38055095 0.62169898 0.10147045 -0.38055095 0.62169898 -0.74480855 0.058669463 -0.26773131\n\t\t -0.6641196 0.079249814 -0.23836462 -0.6793856 -0.45279604 -0.21940958 0.55435944 0.055549428 0.21739498\n\t\t 0.54601341 0.057339028 0.215159 -0.40485165 -0.45009601 -0.20162028 -0.37528864 -0.46967202 -0.2016203\n\t\t -0.15252654 -0.46637297 0.60881114 -0.10020295 -0.43914795 0.61966002 -0.24148256 -0.53561991 0.62678313\n\t\t -0.25517958 -0.54117596 0.62391812 0.18591839 -0.59033298 -0.0089409351 0.16250639 -0.71776801 -0.21146671\n\t\t 0.16250639 -0.71776801 -0.21146671 -0.51581961 0.34294897 0.22426605 -0.49302459 0.34025997 0.22346506\n\t\t -0.65405059 -0.17117098 0.029940113 -0.61465859 -0.23684698 0.052532107 0.47409436 -0.43872201 -0.28215975\n\t\t -0.68636155 -0.0407774 -0.017689899 0.75600141 0.39790696 -0.19295332 0.76036644 0.368554 -0.19802317\n\t\t 0.76036644 0.368554 -0.19802317 -0.30622765 -0.51320899 -0.076024897 -0.31182465 -0.540236 -0.07602489\n\t\t 0.24684145 -0.61594296 0.61781597 0.23268145 -0.62064195 0.61984414 -0.18378656 -0.59391797 0.63131714\n\t\t -0.19187555 -0.60957694 0.6285181 0.14609145 -0.10732293 0.68508601 0.14182448 -0.056862921 0.67968202\n\t\t -0.11475855 -0.54283196 0.68906212 -0.13000852 -0.56359893 0.68364114 -0.49093258 0.33927596 0.23121205\n\t\t -0.51895559 0.34245598 0.23335505 -0.27166963 -0.46613902 -0.051405907 -0.29786664 -0.483347 -0.051405907\n\t\t -0.5234856 -0.56873 -0.20162028 -0.53054756 -0.53398299 -0.20162028 0.39518729 0.66036391 -0.84163213\n\t\t 0.39518729 0.66036391 -0.84163213 -0.24097762 -0.45978299 -0.051405907 -0.29107365 -0.49014002 -0.045821905\n\t\t -0.26800463 -0.47498602 -0.045821905 -0.60593057 -0.339212 0.054587111 -0.60593057 -0.339212 0.054587111\n\t\t -0.61954057 -0.292602 0.03081511 -0.15266058 -0.69061202 0.071073115 -0.15266058 -0.63780302 0.071073115\n\t\t -0.15266058 -0.63780302 0.071073115 -0.4935987 -0.587982 -0.32670689 -0.46877465 -0.60442001 -0.32670689\n\t\t -0.18152554 -0.57632393 0.63328111 -0.49716365 0.67857999 -0.053503975 -0.51966256 0.67836601 -0.062711976\n\t\t -0.51966256 0.67836601 -0.062711976 -0.59509259 -0.34748399 0.047732115 -0.6100896 -0.29646 0.022046104\n\t\t 0.14836848 -0.16439193 0.68352199 -0.35219657 -0.66005492 0.42249811 -0.33892265 -0.66565192 0.40464211\n\t\t 0.39988837 -0.45009601 -0.30564499 0.37032536 -0.46967202 -0.30564499 0.49894643 -0.46967202 -0.24991977\n\t\t 0.51852244 -0.49923599 -0.24991995 -0.43959865 -0.61035001 -0.32670689 -0.67316955 0.027140096 -0.10542581\n\t\t -0.67316955 0.027140096 -0.10542581 -0.67316955 0.027140096 -0.10542581 0.28528029 0.45613688 -1.12509418\n\t\t 0.28528029 0.45613688 -1.12509418 0.2770353 0.44997585 -1.12059307 0.2770353 0.44997585 -1.12059307\n\t\t 0.5637033 0.04753764 -0.69166189 0.53634542 0.67346299 -0.15168378 0.54457444 0.67923802 -0.20660327\n\t\t 0.54457444 0.67923802 -0.20660327 -0.29742271 0.067918822 -0.95603001 -0.50390959 -0.59829301 -0.20162028\n\t\t 0.64605129 0.047537729 -0.69166189 -0.22760358 -0.71080196 0.2298561 -0.37313363 -0.74578202 0.12217012\n\t\t -0.37313363 -0.74578202 0.12217012 0.53680843 0.053911641 0.25296599 0.52972442 0.052392825 0.251068\n\t\t -0.037765544 -0.50873893 0.70017713 -0.002481516 -0.50719893 0.70130801 -0.61493558 -0.28015801 0.015409112\n\t\t 0.54682344 0.057486936 0.25201499 0.53770256 0.059442744 0.249571 0.10979545 -0.54283196 0.689062\n\t\t 0.12504548 -0.56359893 0.68364114 0.46938238 -0.45009601 -0.24991977 0.35074931 -0.49923599 -0.30564496\n\t\t 0.54201543 0.345635 0.23549893 0.54201543 0.345635 0.23549893 0.5491454 0.34961897 0.21455893\n\t\t 0.5491454 0.34961897 0.21455893 0.5491454 0.34961897 0.21455893 -0.1840886 -0.483347 -0.051405907\n\t\t -0.16688061 -0.50954401 -0.051405907 0.51852244 -0.49923599 -0.21474648 0.5255844 -0.53398299 -0.21474646\n\t\t -0.33689263 -0.67515993 0.41109711 -0.32070664 -0.67755592 0.38940114 0.074207649 -0.52060992 0.69587898\n\t\t -0.17572761 -0.51320899 -0.045821905 -0.17013061 -0.540236 -0.045821905 0.39005029 0.45318395 -1.047622204\n\t\t -0.47503465 0.67326999 -0.089058086 0.43463537 -0.44303399 -0.24991977 0.28999835 -0.48625302 -0.012080953\n\t\t 0.30632737 -0.51111197 -0.012080953 0.34368637 -0.53398299 -0.30564496 0.35074931 -0.56873 -0.30564496\n\t\t 0.54389155 0.052392825 0.25486398 0.34368637 -0.53398299 -0.28947294 0.35074931 -0.56873 -0.28947294\n\t\t 0.38467225 0.44720393 -1.0405972 0.28611135 -0.49014002 -0.00894095 0.30126438 -0.51320899 -0.00894095\n\t\t -0.16052361 -0.54023701 -0.051405907 -0.68338156 -0.0094542205 0.051059082 -0.69199359 -0.017628983 -0.0058669001\n\t\t 0.6482814 -0.31158999 -0.1757659 0.64299744 -0.33480099 -0.16170719 0.3393743 -0.494524 -0.28215957\n\t\t 0.36160529 -0.46095204 -0.28215957 0.5428133 -0.25216603 -0.53519702 0.5428133 -0.25216603 -0.53519702\n\t\t 0.5428133 -0.25216603 -0.53519702 0.2818163 -0.25216603 -0.26776415 0.2818163 -0.25216603 -0.26776415\n\t\t 0.2818163 -0.25216603 -0.26776415 0.29362437 -0.13430302 -0.26776409 -0.53468758 0.052392825 0.25106812\n\t\t -0.52760446 0.049355313 0.24917012 0.55390841 0.042022124 0.257548 0.54993743 0.048281416 0.256484\n\t\t 0.55460954 0.052192524 0.25410098 -0.71597159 0.48586899 -0.020288944 -0.71597159 0.48586899 -0.020288944\n\t\t -0.64593858 0.53249103 0.013948053 0.058951177 -0.28310901 -0.29098994 0.045433369 -0.30255502 -0.29098994\n\t\t -0.37035865 -0.60322303 -0.20577139 -0.40218863 -0.6243 -0.20577157 -0.73373556 0.42482597 -0.028217942\n\t\t 0.4999153 0.44030792 -0.91889912 -0.22105455 -0.62799895 0.6218251 -0.20481955 -0.62141293 0.62522113\n\t\t -0.17066461 -0.51111197 -0.015823901 -0.18699361 -0.48625302 -0.015823916 0.079080373 -0.27063102 -0.29098994\n\t\t 0.5677073 0.63856095 -0.54468703 0.5677073 0.63856095 -0.54468703 0.56189042 0.64452595 -0.54973006\n\t\t 0.10238937 -0.26643902 -0.29098994 0.52849644 -0.53379494 0.13511306;\n\tsetAttr \".vt[9794:9959]\" 0.41169336 -0.53379494 0.13511306 0.68775743 0.2942 0.11710992\n\t\t 0.68079442 0.33246797 0.12793294 0.26513937 -0.46992403 -0.012080953 0.57343829 0.62835091 -0.54991603\n\t\t 0.57343829 0.62835091 -0.54991603 0.55601341 0.61472791 -0.53373808 0.46938238 -0.45009601 -0.20162037\n\t\t 0.43463537 -0.44303399 -0.20162037 -0.17673156 -0.13642594 0.661865 -0.16682754 -0.24095695 0.641909\n\t\t 0.56534845 -0.13430306 -0.65275705 0.56534845 -0.13430306 -0.65275705 0.56534845 -0.13430306 -0.65275705\n\t\t 0.2360144 -0.46389204 -0.012080953 -0.15700956 -0.30963695 0.61091101 0.64796144 -0.13430306 -0.66572088\n\t\t -0.17943256 -0.13834193 0.66842014 -0.16949955 -0.24352895 0.64839196 -0.5417186 -0.66244292 0.13500315\n\t\t -0.55970556 -0.65566093 0.14476115 0.54929739 0.62882793 -0.52489603 -0.17444354 -0.22306094 0.67140698\n\t\t -0.17444354 -0.22306094 0.67140698 -0.17648055 -0.22396293 0.67061901 -0.17648055 -0.22396293 0.67061901\n\t\t -0.17341352 -0.20872393 0.67539597 0.33937436 -0.49452502 -0.25723267 0.36160535 -0.46095204 -0.25723284\n\t\t -0.28501675 0.13229893 -1.0802598 -0.28321776 0.15447991 -1.093318939 -0.83913356 -0.058228329 -0.38166589\n\t\t -0.4935987 -0.47998303 -0.32670689 -0.51003557 -0.504807 -0.32670689 0.69632828 0.40737593 -0.56217307\n\t\t 0.74014241 0.38892299 -0.41844407 -0.18246154 -0.16404593 0.685395 -0.2102856 -0.46613902 -0.051405907\n\t\t -0.17066461 -0.51111197 -0.012080908 -0.18699361 -0.48625302 -0.012080923 -0.51596558 -0.53398299 -0.32670689\n\t\t 0.36135736 0.72440302 -0.35558611 0.055620264 -0.82948697 0.7738331 0.070231862 -0.82948697 0.77177709\n\t\t 0.070231862 -0.82948697 0.77177709 -0.6902796 -0.020669296 -0.025265902 -0.6902796 -0.020669296 -0.025265902\n\t\t -0.29445276 0.1153859 -1.063333035 0.56915241 0.43909591 -0.83722413 0.50709444 0.44602793 -0.92435813\n\t\t -0.14751555 -0.38207093 0.5716601 0.5774954 -0.37796801 0.084248036 -0.52117056 -0.66512692 0.12416315\n\t\t -0.17606652 -0.20972292 0.67686611 0.75516444 0.38079596 -0.35684502 0.75516444 0.38079596 -0.35684502\n\t\t 0.37032536 -0.59829301 -0.30564496 0.57452244 -0.38773 0.13936502 0.58921641 -0.36769098 0.087639004\n\t\t 0.58921641 -0.36769098 0.087639004 0.39517736 -0.43872201 -0.25723284 0.67442244 -0.45279604 -0.2194097\n\t\t 0.57034343 -0.38511699 0.16032398 0.55624241 -0.39628798 0.16506806 0.55624241 -0.39628798 0.16506806\n\t\t 0.56115341 -0.39918196 0.14174402 0.18356745 -0.05276984 0.66025102 0.17807345 -0.045465931 0.6605621\n\t\t 0.17807345 -0.045465931 0.6605621 0.12544639 -0.27184904 -0.29098994 -0.85317957 -0.07109274 -0.40091088\n\t\t -0.85317957 -0.07109274 -0.40091088 -0.85026461 -0.054028526 -0.38437384 0.53028142 -0.39787698 0.16480604\n\t\t 0.18594645 -0.23749694 0.65443802 0.18594645 -0.23749694 0.65443802 0.17692445 -0.24709395 0.65472811\n\t\t 0.17692445 -0.24709395 0.65472811 -0.17184553 -0.10611694 0.68398201 -0.17379051 -0.16317293 0.68275297\n\t\t 0.63351041 0.16418003 0.11702195 0.63351041 0.16418003 0.11702195 0.63360542 0.172251 0.071964949\n\t\t 0.63360542 0.172251 0.071964949 0.16382736 -0.14994505 -0.50000596 0.18222536 -0.17962605 -0.49999702\n\t\t -0.13322555 -0.79723096 0.67593211 -0.13322555 -0.79723096 0.67593211 -0.13322555 -0.79723096 0.67593211\n\t\t -0.15281755 -0.75532293 0.59469813 -0.57126856 -0.59770995 0.15343615 -0.56338859 -0.57713395 0.1508261\n\t\t -0.74277359 0.19345801 -0.034768924 -0.68997157 0.098263517 -0.0041569173 0.18031146 -0.23749694 0.63895613\n\t\t -0.47434565 -0.61786902 -0.20162028 -0.43959865 -0.62493199 -0.20162028 0.16656046 -0.24932593 0.65765798\n\t\t -0.10654353 -0.81324095 0.69033509 0.62093329 0.4296059 -0.74444515 0.66364342 -0.33073199 -0.23815748\n\t\t 0.66543144 -0.32312202 -0.22347088 0.66543144 -0.32312202 -0.22347088 -0.57279855 -0.61834592 0.15323815\n\t\t 0.17128944 -0.24709395 0.63924712 -0.55887157 0.042022124 0.25754806 -0.55490059 0.048281416 0.25648406\n\t\t 0.70437843 0.23557697 -0.34115905 0.6794703 0.24026297 -0.44234708 -0.16384254 -0.33421594 0.628654\n\t\t -0.16384254 -0.33421594 0.628654 -0.15640855 -0.32583994 0.63086611 -0.15640855 -0.32583994 0.63086611\n\t\t -0.37528864 -0.59829402 -0.20162028 -0.35571265 -0.56873 -0.20162009 -0.12171955 -0.32240695 0.5928641\n\t\t -0.12379453 -0.32594493 0.63241398 -0.12379453 -0.32594493 0.63241398 -0.16866855 -0.063394725 0.67959297\n\t\t 0.2360144 -0.46938902 -0.088372752 0.20898739 -0.47498703 -0.088372745 0.34092137 -0.50588292 0.39245707\n\t\t 0.30607536 -0.52425992 0.41530097 -0.16742355 -0.33217695 0.58864909 0.39682043 -0.16117595 0.464679\n\t\t 0.39682043 -0.16117595 0.464679 0.39682043 -0.16117595 0.464679 0.38095742 -0.15987995 0.460639\n\t\t -0.94561356 0.01329425 -0.54837787 -0.94644457 0.020910159 -0.5590049 0.41210541 -0.15027696 0.44855201\n\t\t -0.15891555 -0.32227993 0.59109402 0.61663944 0.43031299 0.13439494 0.57725942 0.43825001 0.15120393\n\t\t 0.57725942 0.43825001 0.15120393 0.31216341 -0.51364493 0.42231113 0.27395743 -0.53222293 0.44544601\n\t\t -0.94477272 0.007995218 -0.54463089 0.47204638 -0.6243 -0.21059495 0.43463537 -0.63190299 -0.21059495\n\t\t 0.46163735 -0.10628995 0.38458198 0.43184942 -0.13382995 0.424496 -0.5725686 -0.64068097 0.15235615\n\t\t -0.73166758 0.19339402 -0.034882918 -0.6810686 0.098242089 -0.0041949153 0.5510664 0.561759 0.066672921\n\t\t 0.55110943 0.572613 0.046932936 0.035481665 -0.82948697 0.77666509 -0.94696772 0.03844595 -0.60265386\n\t\t -0.94654667 0.039102152 -0.6102649 -0.94654667 0.039102152 -0.6102649 0.53159845 -0.49983495 0.13743505\n\t\t 0.53159845 -0.49983495 0.13743505 0.48343843 0.42184407 0.33375597 0.48343843 0.42184407 0.33375597\n\t\t 0.48343843 0.42184407 0.33375597 0.48929635 0.43255502 0.30491492 0.20416145 -0.61462891 0.625314\n\t\t 0.19324145 -0.60464293 0.62809509 0.60930341 0.55159491 -0.69072211 0.55857527 0.56728292 -0.77887613\n\t\t 0.43319941 -0.44335398 0.31447297 0.48030943 -0.40326598 0.263367 0.6791954 -0.091903724 -0.35229796\n\t\t 0.6791954 -0.091903724 -0.35229796 0.66209042 -0.20308404 -0.35624397;\n\tsetAttr \".vt[9960:10125]\" 0.66209042 -0.20308404 -0.35624397 -0.93036771 -0.059517741 -0.53668189\n\t\t -0.94389158 0.0032250434 -0.54308987 -0.93320668 0.043235049 -0.60838485 -0.19605754 -0.66856897 0.53607613\n\t\t -0.16426656 -0.65567297 0.5427261 -0.94555455 0.036221951 -0.61464286 -0.94555455 0.036221951 -0.61464286\n\t\t -0.94459957 0.032116756 -0.6151529 0.61141843 -0.315393 -0.091812797 0.66441041 0.043713197 -0.24045742\n\t\t 0.66441041 0.043713197 -0.24045742 0.26052129 0.52768296 -1.11383104 0.26746425 0.47544187 -1.130283\n\t\t -0.2715047 0.0070052296 -0.95021999 0.66310143 -0.33321899 -0.2560482 -0.39906859 0.33300805 0.39211106\n\t\t -0.45744064 0.38518304 0.29417804 0.56459641 0.562675 0.055987939 0.56459641 0.562675 0.055987939\n\t\t 0.56399041 0.55905002 0.053302929 0.56399041 0.55905002 0.053302929 0.52164054 0.43050706 0.26537892\n\t\t -0.1189007 0.15526991 -1.15213001 -0.1226557 0.1512609 -1.14955997 -0.30741769 -0.17611203 -0.51014888\n\t\t -0.28086063 -0.19257402 -0.51015198 -0.36632064 0.72440302 -0.35558605 0.1418173 0.16036592 -1.14721501\n\t\t 0.1423883 0.16600792 -1.14936399 0.34729335 -0.67632592 0.39844108 0.33093643 -0.67875296 0.37678903\n\t\t 0.27283931 0.46523488 -1.13041806 0.26545325 0.58291793 -1.080642104 0.2696023 0.59123492 -1.07300806\n\t\t 0.51470053 0.45817304 0.27319095 -0.24985965 -0.20753703 -0.49997789 -0.21586265 -0.19955903 -0.49998689\n\t\t -0.93199968 0.039751127 -0.61343086 0.36817035 -0.81750602 0.12217006 0.36817035 -0.81750602 0.12217006\n\t\t 0.22264042 -0.78252602 0.22985604 -0.92930061 -0.064195544 -0.53724086 0.36211443 -0.82092398 0.11398605\n\t\t 0.040022667 -0.32561201 -0.29098994 -0.53468847 0.016984925 0.25106812 -0.52760446 0.020022526 0.24917012\n\t\t 0.15764636 -0.11557504 -0.50001299 0.45707142 0.39198405 0.331267 0.45707142 0.39198405 0.331267\n\t\t 0.44615042 0.39531207 0.330284 0.44615042 0.39531207 0.330284 0.34104636 -0.66588992 0.39974207\n\t\t 0.32589337 -0.66767496 0.37991107 0.04421467 -0.348921 -0.29098994 0.056692269 -0.36905104 -0.29098994\n\t\t -0.41409871 0.0070272088 -0.81068486 -0.48943871 0.0070388168 -0.732283 0.49115136 -0.074241966 0.33824301\n\t\t 0.60096741 -0.339212 0.054587021 0.60096741 -0.339212 0.054587021 0.5968374 -0.35302699 0.067963988\n\t\t 0.73038143 0.36765999 -0.043203071 0.7400434 0.30733299 -0.047018059 -0.94356573 0.027512252 -0.61473089\n\t\t -0.50225961 -0.49987197 0.12744913 -0.48356763 -0.50076896 0.1121321 0.64770842 0.050906017 0.088075995\n\t\t 0.65151143 0.050196007 0.047500998 0.52953142 0.66630495 -0.59319711 0.5129084 0.67291695 -0.62600714\n\t\t -0.1278857 0.14906792 -1.14735794 0.19954245 -0.037783235 0.65416801 0.19954245 -0.037783235 0.65416801\n\t\t 0.20387545 -0.056862935 0.65709698 -0.91278559 -0.10407405 -0.60364789 0.15144545 -0.32583994 0.63086611\n\t\t 0.15144545 -0.32583994 0.63086611 0.11883146 -0.32594493 0.63241398 0.11883146 -0.32594493 0.63241398\n\t\t 0.29624942 -0.62149996 0.54198802 0.29628342 -0.62317693 0.52194613 0.29628342 -0.62317693 0.52194613\n\t\t 0.74730843 0.24087001 -0.04931806 0.14310843 -0.76340896 0.28870705 0.4664143 0.68592095 -0.70453215\n\t\t 0.47348037 0.40402406 0.33907098 0.47348037 0.40402406 0.33907098 0.46751037 0.39531207 0.33462298\n\t\t 0.46751037 0.39531207 0.33462298 0.19390745 -0.037783235 0.63868612 0.48460338 0.40576202 0.32801998\n\t\t 0.48460338 0.40576202 0.32801998 0.48460338 0.40576202 0.32801998 0.53768742 -0.61408997 0.17494106\n\t\t 0.36054137 -0.75056702 0.10273206 0.36659637 -0.755521 0.11091605 0.36659637 -0.755521 0.11091605\n\t\t 0.29624143 -0.62111193 0.54437399 -0.34679058 -0.67160696 0.4368611 -0.35817257 -0.65509295 0.45328712\n\t\t 0.64119142 0.53683299 0.0048659295 0.71068144 0.490251 -0.029381067 0.71068144 0.490251 -0.029381067\n\t\t -0.5234856 -0.49923599 -0.20162028 -0.17757264 -0.14657503 -0.51018691 -0.19403364 -0.17313203 -0.51017797\n\t\t -0.44380763 0.45965302 0.30853006 -0.44380763 0.45965302 0.30853006 -0.67783356 -0.43158501 -0.25363898\n\t\t -0.67521358 -0.408364 -0.29063284 0.6552884 0.048777804 -0.015611038 0.35320941 -0.65509295 0.45328701\n\t\t 0.34182742 -0.67160696 0.4368611 0.36817035 -0.74578202 0.12217006 0.36817035 -0.74578202 0.12217006\n\t\t 0.36211443 -0.74068499 0.11398605 0.033766869 -0.32544702 -0.28622225 0.039734676 -0.300017 -0.28622514\n\t\t -0.17204164 -0.11582404 -0.51019394 -0.15105455 -0.10732293 0.68508601 -0.14678752 -0.056862921 0.67968202\n\t\t 0.31934929 0.20463891 -1.08382082 0.33457631 0.21151893 -1.074231029 -0.49063465 0.46231103 0.31386298\n\t\t -0.49063465 0.46231103 0.31386298 -0.46768457 0.46696705 0.31248906 0.46009836 0.38778305 0.316365\n\t\t 0.46009836 0.38778305 0.316365 0.46009836 0.38778305 0.316365 0.46595636 0.39849406 0.28752398\n\t\t -0.55097657 0.065159723 0.21515912 -0.53974861 0.062752232 0.2121501 0.1078523 0.16713391 -1.158476\n\t\t 0.1070883 0.15957789 -1.15559602 -0.12992564 -0.708031 -0.18368572 -0.12992564 -0.708031 -0.18368572\n\t\t -0.14001861 -0.708031 -0.17004579 -0.14001861 -0.708031 -0.17004579 0.47568837 0.39275205 0.32137698\n\t\t 0.47568837 0.39275205 0.32137698 0.47568837 0.39275205 0.32137698 -0.56604445 -0.19843397 0.25492311\n\t\t -0.62526757 0.051189438 0.16906512 -0.62526757 0.051189438 0.16906512 0.48154637 0.40346402 0.29253593\n\t\t -0.6479606 -0.33480099 -0.16170707 -0.63745058 -0.39408901 -0.12177117 0.5653134 0.56702101 0.046959937\n\t\t 0.5653134 0.56702101 0.046959937 0.72929043 0.42809796 -0.037574068 0.20265944 -0.10732293 0.66449702\n\t\t -0.23862354 -0.62854093 0.61873913 -0.57178861 0.013142824 0.22073504 -0.5622046 0.006625697 0.21816704\n\t\t 0.4095943 0.69652194 -0.77283615 0.076138876 -0.38256902 -0.29098994 0.12798336 -0.26615003 -0.28621104\n\t\t 0.14943236 -0.28105903 -0.28620315 -0.1439947 0.1551479 -1.14579296 -0.1394337 0.15117891 -1.14532185\n\t\t 0.67568028 0.28385901 -0.47264907 0.67568028 0.28385901 -0.47264907 0.67371744 0.27781296 -0.48263001\n\t\t 0.29690143 -0.61844397 0.5525741 0.29690143 -0.61844397 0.5525741;\n\tsetAttr \".vt[10126:10291]\" -0.54266548 0.0099351257 0.24957106 -0.53354359 0.011890829 0.24712712\n\t\t 0.53478545 0.062752232 0.21214998 0.52355641 0.05793722 0.20914099 -0.53656161 -0.49983495 0.13743511\n\t\t -0.53656161 -0.49983495 0.13743511 -0.53185755 -0.51598597 0.14655513 -0.53185755 -0.51598597 0.14655513\n\t\t -0.52718157 -0.50666994 0.14553711 -0.52718157 -0.50666994 0.14553711 0.30583829 0.19198392 -1.088932991\n\t\t 0.14378747 -0.03778322 0.67446101 0.14378747 -0.03778322 0.67446101 0.31249341 -0.60008192 0.55784613\n\t\t 0.31249341 -0.60008192 0.55784613 0.31520742 -0.59535795 0.5531891 0.31520742 -0.59535795 0.5531891\n\t\t -0.43959865 -0.43606299 -0.21059489 -0.40218863 -0.44366604 -0.2105947 -0.10303553 -0.81324095 0.68210208\n\t\t -0.10303553 -0.81324095 0.68210208 -0.078072637 -0.82948697 0.7680831 0.30686137 -0.540236 -0.00894095\n\t\t -0.26938158 -0.61196393 0.61490214 -0.25540757 -0.62297195 0.61633414 0.18643145 -0.68068296 0.52507812\n\t\t 0.15041745 -0.66607392 0.53261197 -0.19088061 -0.59033298 -0.076024897 -0.17572761 -0.56726301 -0.076024905\n\t\t 0.31235835 -0.540236 -0.012080953 -0.17918064 -0.085405827 -0.51019794 0.052152276 -0.37335801 -0.28620982\n\t\t 0.073600672 -0.38826799 -0.28620231 -0.0014351311 -0.66382402 -0.090156712 -0.0014351911 -0.76985502 -0.090156697\n\t\t -0.28153858 -0.58830297 0.61491609 -0.27477458 -0.60481793 0.61460811 0.61878043 -0.27690101 0.024436995\n\t\t 0.6754784 0.016814798 -0.090682231 0.6754784 0.016814798 -0.090682231 0.15451445 -0.023823544 0.666659\n\t\t 0.15451445 -0.023823544 0.666659 0.14887945 -0.02382344 0.651178 0.22540344 -0.68188393 0.51823199\n\t\t -0.50051159 0.33882707 0.28398705 -0.52903956 0.34255302 0.28885704 -0.52903956 0.34255302 0.28885704\n\t\t -0.52903956 0.34255302 0.28885704 -0.5517866 0.011890829 0.25201511 -0.14875051 -0.03778322 0.67446101\n\t\t -0.14875051 -0.03778322 0.67446101 -0.15947755 -0.023823544 0.666659 -0.15947755 -0.023823544 0.666659\n\t\t -0.42554757 -0.13550596 0.42558813 -0.14311655 -0.037783235 0.65897912 0.74122143 0.36560601 -0.033490062\n\t\t 0.7287724 0.42482597 -0.028218061 0.73140842 0.316598 -0.14340766 0.73387045 0.31825697 -0.14476766\n\t\t 0.78264642 0.35354197 -0.17145957 0.78264642 0.35354197 -0.17145957 0.29894641 -0.61364394 0.5575251\n\t\t 0.29894641 -0.61364394 0.5575251 0.30686143 -0.59694797 0.55786097 0.30686143 -0.59694797 0.55786097\n\t\t 0.73754042 0.23790501 0.078382939 -0.1307577 0.17747889 -1.15818298 -0.1366377 0.17744993 -1.15669799\n\t\t -0.47700965 -0.44366604 -0.2057716 -0.50883859 -0.46474302 -0.20577158 0.43463537 -0.44303399 -0.21474646\n\t\t 0.39988837 -0.45009601 -0.21474646 -0.5426296 0.055549428 0.2129221 -0.53428358 0.051970318 0.21068606\n\t\t 0.43298736 0.40576202 0.317536 0.43298736 0.40576202 0.317536 0.43298736 0.40576202 0.317536\n\t\t 0.44378737 0.39275205 0.31489801 0.44378737 0.39275205 0.31489801 0.44378737 0.39275205 0.31489801\n\t\t 0.55654341 0.055549428 0.20924598 0.54819643 0.057339028 0.20701 0.32775843 -0.54736292 0.42626411\n\t\t 0.34133643 -0.56074792 0.44385302 -0.2139506 -0.60548598 -0.076023899 -0.024533013 -0.75865299 -0.084590897\n\t\t -0.024533013 -0.75865299 -0.084590897 -0.024533013 -0.68027198 -0.084590904 -0.024533013 -0.68027198 -0.084590904\n\t\t 0.32960024 0.13877992 -1.01619792 0.3159923 0.13263093 -1.024767995 0.71826345 0.24522997 -0.32846904\n\t\t 0.71516043 0.24082099 -0.33549607 -0.5622046 0.062752232 0.21816704 0.71213543 0.24431597 -0.32016706\n\t\t 0.70747644 0.23750399 -0.33048207 -0.52991557 -0.49657202 -0.20577137 -0.58321357 -0.59510392 0.14618713\n\t\t -0.57494557 -0.57273191 0.14364412 0.71285039 0.44613498 -0.12297057 0.71007341 0.44637901 -0.12132137\n\t\t 0.32021835 0.77933198 -0.39072311 0.17689335 0.84793097 -0.46945906 0.3896243 0.71797699 -0.30288607\n\t\t 0.53985041 0.055549428 0.20477298 0.12425536 0.86088997 -0.48331806 -0.3500067 0.11545892 -1.015362024\n\t\t -0.32961369 0.10624291 -1.028205991 -0.27235159 -0.54618794 0.62027013 -0.19167155 -0.02382344 0.6549421\n\t\t -0.19167155 -0.02382344 0.6549421 -0.20450555 -0.037783235 0.65416801 -0.20450555 -0.037783235 0.65416801\n\t\t 0.22370945 -0.66870493 0.51970398 0.18930745 -0.66764492 0.52574712 -0.2842297 -0.20135503 -0.49997094\n\t\t -0.31391165 -0.18295603 -0.49996796 -0.20883755 -0.056862935 0.65709698 -0.36810276 0.13240789 -1.0085150003\n\t\t 0.1369043 0.14707892 -1.14304686 0.1430133 0.15239491 -1.143677 -0.4951297 0.57889491 -0.85610586\n\t\t -0.38454169 0.59190595 -0.97423488 0.10255338 -0.26018304 -0.28621766 -0.47198364 0.33510107 0.27911705\n\t\t 0.35308143 -0.58154792 0.4582451 -0.18603656 -0.02382344 0.63945997 -0.50930846 0.43684107 0.30989605\n\t\t 0.66644841 -0.31113601 -0.24956228 0.66655743 -0.31151599 -0.25871378 0.56682545 0.05623503 0.22073498\n\t\t 0.57312042 0.046313122 0.222422 -0.55448771 0.56714195 -0.77325791 0.43768042 0.43255502 0.29443094\n\t\t 0.43182242 0.42184407 0.32327199 0.43182242 0.42184407 0.32327199 0.43182242 0.42184407 0.32327199\n\t\t 0.24514537 -0.19810504 -0.51015902 0.21472636 -0.19096604 -0.51016796 0.27664825 0.59665996 -1.064910173\n\t\t 0.64852542 -0.30717701 -0.2434687 0.64808744 -0.308671 -0.25118518 0.64808744 -0.308671 -0.25118518\n\t\t 0.66702741 -0.31102604 -0.2693128 0.66702741 -0.31102604 -0.2693128 0.11158329 0.17412291 -1.16038001\n\t\t -0.5150966 0.40869105 0.30385205 -0.34629959 -0.56074792 0.44385314 -0.35804459 -0.58154792 0.4582451\n\t\t -0.51650161 0.34638596 0.24445504 -0.53978556 0.348692 0.24582905 -0.53978556 0.348692 0.24582905\n\t\t -0.19887055 -0.037783235 0.63868612 -0.17507955 -0.018123642 0.65918398 -0.17507955 -0.018123642 0.65918398\n\t\t -0.27010164 -0.61054897 -0.012080893 -0.29496163 -0.59421998 -0.012080893 0.44073743 0.43485403 0.32991499\n\t\t 0.44073743 0.43485403 0.32991499 0.44073743 0.43485403 0.32991499 -0.1456227 0.17124791 -1.15192699\n\t\t -0.1473517 0.16600792 -1.14936399 0.51852244 -0.49923599 -0.20162037 0.5255844 -0.53398299 -0.20162037\n\t\t -0.38125169 0.15460889 -1.0086669922 -0.33272159 -0.54736292 0.42626411;\n\tsetAttr \".vt[10292:10457]\" 0.44659635 0.44556504 0.30107394 0.1288023 0.1490389 -1.14587283\n\t\t 0.1344703 0.15117891 -1.14532185 -0.15384255 -0.02382344 0.651178 0.35934243 -0.60666996 0.46491802\n\t\t 0.35956943 -0.63241696 0.46341711 -0.44310263 0.46684206 0.30101004 -0.44310263 0.46684206 0.30101004\n\t\t -0.49447265 0.46915007 0.30564204 -0.31039563 -0.062729225 -0.51016891 -0.28473964 -0.044895828 -0.51017892\n\t\t 0.69092339 0.10838099 -0.10941364 0.69505543 0.12333201 -0.076375037 0.49894643 -0.46967202 -0.20162037\n\t\t 0.13505539 -0.708031 -0.17004582 0.13505539 -0.708031 -0.17004582 0.12496236 -0.708031 -0.18368575\n\t\t 0.12496236 -0.708031 -0.18368575 -0.31129065 -0.56936002 -0.012080893 0.31277043 0.29527003 0.45774502\n\t\t 0.38564536 0.34016806 0.38201398 0.30245429 -0.17611203 -0.510149 0.27589735 -0.19257402 -0.51015198\n\t\t 0.50766641 -0.60701299 -0.25723267 0.41903436 0.68339801 -0.24965817 -0.28044158 -0.56184793 0.6174711\n\t\t -0.52442259 0.015802428 0.24468306 0.24960437 -0.028326124 -0.50000799 0.21523637 -0.034507826 -0.50001395\n\t\t -0.47366562 0.48688602 0.28103501 -0.44676757 0.47898602 0.28029799 -0.44676757 0.47898602 0.28029799\n\t\t 0.1127793 0.16615193 -1.15684199 0.1155653 0.1713699 -1.15826392 0.12496236 -0.78641099 -0.18368594\n\t\t 0.12496236 -0.78641099 -0.18368594 -0.31712657 -0.51364493 0.42231113 -0.27892059 -0.53222293 0.44544613\n\t\t 0.24935737 -0.037758425 -0.51018798 0.21860637 -0.043289334 -0.51019502 0.56998241 -0.57273191 0.14364406\n\t\t 0.54000944 -0.53862697 0.13225105 0.54000944 -0.53862697 0.13225105 -0.28270158 -0.57944095 0.61550713\n\t\t 0.30894837 -0.18295603 -0.49996796 0.27926731 -0.20135503 -0.49997094 0.53478545 0.0066255927 0.21214998\n\t\t 0.52355742 0.01144053 0.20914099 -0.26800463 -0.60548598 -0.0089408904 -0.29107365 -0.59033298 -0.0089408904\n\t\t -0.54146558 0.34993196 0.23694104 -0.54146558 0.34993196 0.23694104 -0.51732761 0.34752798 0.23542404\n\t\t 0.3946833 0.71766102 -0.30862606 0.42455435 0.68278497 -0.25505897 -0.55097657 0.0042182207 0.21515912\n\t\t -0.53974861 0.0066255927 0.2121501 -0.3323887 -0.12003703 -0.51015294 -0.32525069 -0.15045604 -0.51014888\n\t\t -0.49935859 0.48213905 0.27960098 -0.49935859 0.48213905 0.27960098 -0.51966345 0.45817304 0.27319106\n\t\t -0.17572761 -0.56726402 -0.0089409053 -0.19088161 -0.59033298 -0.0089408904 -0.26875269 0.59859496 -1.058876991\n\t\t -0.2618317 0.59297794 -1.06694901 -0.31010464 -0.54685593 0.39439714 -0.32095957 -0.54448295 0.40999913\n\t\t 0.4964003 0.20164894 -0.77132499 0.13815345 -0.037783235 0.65897912 -0.16944554 -0.018123642 0.64370209\n\t\t 0.32028729 -0.15045604 -0.510149 -0.10374667 0.85248595 -0.66339898 -0.0024816357 0.85249001 -0.66799212\n\t\t 0.73787344 0.30628496 -0.037165046 0.7290374 0.36549997 -0.033600062 -0.49822763 0.47755003 0.28663704\n\t\t -0.49822763 0.47755003 0.28663704 -0.47254464 0.48253602 0.287938 -0.30622765 -0.56726301 -0.0089408904\n\t\t -0.31182465 -0.540236 -0.0089408904 0.43884537 0.41647404 0.28869498 -0.38364071 0.59556895 -0.97269702\n\t\t -0.27540675 0.60191894 -1.052274942 0.67025042 -0.408364 -0.29063296 0.71545345 0.16627701 -0.077806048\n\t\t 0.71545345 0.16627701 -0.077806048 0.71795541 0.17187102 -0.085451044 -0.80409873 -0.22051905 -0.59258592\n\t\t -0.78245455 -0.21788704 -0.58450788 0.18591739 -0.49014002 -0.088372745 -0.71709859 0.24431597 -0.32016692\n\t\t -0.72265559 0.25659198 -0.31025994 -0.72265559 0.25659198 -0.31025994 -0.72265559 0.25659198 -0.31025994\n\t\t 0.55724144 0.062752232 0.21816698 0.54601341 0.065159723 0.215159 0.2836023 -0.036303237 -0.49999794\n\t\t 0.44106236 -0.76330298 0.068232059 0.44106236 -0.76330298 0.068232059 0.43500635 -0.758205 0.060048088\n\t\t -0.57285458 0.034688935 0.22102112 -0.57112557 0.026048228 0.22055811 0.73401541 0.16675802 -0.077288046\n\t\t 0.73401541 0.16675802 -0.077288046 0.73401541 0.16675802 -0.077288046 0.6784184 -0.0094542205 0.051058963\n\t\t 0.67080539 -0.0071453005 0.068138003 0.67080539 -0.0071453005 0.068138003 0.6728704 -0.43158501 -0.2536391\n\t\t -0.29107365 -0.49014002 -0.088372894 -0.30622765 -0.51320899 -0.088373095 -0.25432065 -0.037758425 -0.51018798\n\t\t 0.65383345 0.051534906 0.02056396 0.65383345 0.051534906 0.02056396 0.68418241 0.099007204 0.0047449619\n\t\t 0.73420441 0.17231999 -0.084894046 0.73420441 0.17231999 -0.084894046 -0.72094959 0.27206099 -0.34547889\n\t\t -0.69556868 0.278543 -0.44712695 0.67520243 0.10150202 0.0037969649 0.64593142 0.054891512 0.019349962\n\t\t 0.66073543 -0.089715324 -0.34924901 0.66077942 -0.091168426 -0.35260296 0.66077942 -0.091168426 -0.35260296\n\t\t 0.18122639 -0.56292999 -0.10438783 0.1765264 -0.540236 -0.10438783 -0.2139506 -0.47498602 -0.0089409053\n\t\t -0.19088061 -0.49014002 -0.0089409053 0.3470363 0.20696391 -1.03649497 0.35333225 0.1956789 -1.025200009\n\t\t -0.36212757 -0.58344597 0.45107311 -0.35099557 -0.56380296 0.4375661 -0.42488065 0.44964904 0.28274706\n\t\t -0.41557658 0.41514903 0.27744904 -0.67907572 0.52044892 -0.51380193 -0.6038667 0.55560392 -0.68462002\n\t\t -0.19051965 -0.052905932 -0.50001794 -0.17058764 -0.081578732 -0.50001794 0.29253224 0.13873093 -1.048205853\n\t\t 0.30300331 0.13261391 -1.035984993 -0.49565265 0.47933203 0.27864304 -0.49565265 0.47933203 0.27864304\n\t\t -0.47363165 0.48345703 0.27981505 0.43581435 -0.82248598 0.061140075 0.43531737 -0.825032 0.060469076\n\t\t 0.43531737 -0.825032 0.060469076 -0.22019964 -0.034507826 -0.50001395 -0.55097657 0.057339028 0.21515912\n\t\t -0.5593226 0.055549428 0.21739504 0.19395038 -0.58230102 -0.10438783 -0.33811659 -0.55121392 0.42100811\n\t\t -0.26367164 -0.485448 -0.1043878 -0.24097762 -0.480748 -0.1043878 -0.22356965 -0.043289334 -0.51019496\n\t\t -0.32693458 -0.54865295 0.40559113 0.71345741 0.16200902 -0.075841047 0.72435641 0.19452699 -0.025496036\n\t\t -0.36184257 -0.64695692 0.43604213 -0.36698958 -0.62886095 0.44402409 -0.30622765 -0.51320899 -0.0089408904\n\t\t 0.18591739 -0.59033298 -0.088372931 0.17076439 -0.56726301 -0.088373132 0.43382737 -0.77049702 0.05845505\n\t\t 0.43531737 -0.77170402 0.060469076 0.43531737 -0.77170402 0.060469076;\n\tsetAttr \".vt[10458:10623]\" -0.5593226 0.013828427 0.21739504 -0.55097657 0.010249332 0.21515912\n\t\t -0.36806858 -0.60716796 0.45733911 0.31041241 -0.68149793 0.39410305 0.32698441 -0.67886692 0.41647309\n\t\t 0.16782036 -0.328969 -0.28619096 0.16319539 -0.30326003 -0.28619656 -0.65647459 0.050196007 0.047501087\n\t\t -0.66025156 0.048777804 -0.015610918 -0.19318055 -0.68160695 0.53540713 -0.23215255 -0.68280697 0.52856112\n\t\t -0.3356387 -0.085914925 -0.4999789 -0.3172397 -0.056234434 -0.49998894 0.31565443 0.29086703 0.46031898\n\t\t 0.16064845 0.21976705 0.570979 0.16064845 0.21976705 0.570979 0.16064845 0.21976705 0.570979\n\t\t 0.34167424 0.15008889 -1.01162982 -0.34182063 -0.12028404 -0.49997196 -0.5664466 0.050705031 0.21930405\n\t\t 0.3504473 0.1649019 -1.011731029 -0.6927076 0.39877993 -0.56023598 -0.73704356 0.37993199 -0.41412196\n\t\t 0.53781343 -0.51108795 0.13881606 -0.52022946 0.43016702 0.26548606 -0.36224657 -0.65284795 0.44638914\n\t\t -0.36828557 -0.63146895 0.45592409 -0.36676559 -0.60827494 0.4451921 0.28503624 0.1648169 -1.06821394\n\t\t 0.28623629 0.15001689 -1.059500933 -0.16463362 -0.54023701 -0.012080908 -0.17066561 -0.56936097 -0.012080908\n\t\t 0.66787541 -0.310321 -0.21554029 0.66787541 -0.310321 -0.21554029 0.6598174 -0.310175 -0.2149449\n\t\t 0.6598174 -0.310175 -0.2149449 0.38867843 0.33506203 0.38561499 0.60969543 -0.23684698 0.052531987\n\t\t 0.64908743 -0.17117098 0.029939994 -0.68064368 0.28385901 -0.47264895 -0.68064368 0.28385901 -0.47264895\n\t\t -0.6786806 0.27781296 -0.4826299 -0.48840365 -0.77345103 -0.52346385 0.71481144 0.12872101 -0.069240049\n\t\t 0.71481144 0.12872101 -0.069240049 0.71790445 0.132607 -0.068959042 -0.67728972 0.28267699 -0.46646896\n\t\t 0.19821545 -0.47031796 0.5418511 0.23261745 -0.47137797 0.53580797 -0.58040857 0.034688935 0.22304511\n\t\t -0.57808357 0.023064733 0.22242212 0.55972344 0.025245726 0.255472 0.56161243 0.034688935 0.25597799\n\t\t 0.35728341 -0.65284795 0.44638914 0.36332241 -0.63146895 0.45592409 -0.57112557 0.043329641 0.22055811\n\t\t -0.31660065 -0.55110693 0.3907451 -0.27825758 -0.47387296 0.53927112 -0.24224354 -0.45926395 0.54680508\n\t\t 0.076844975 -0.26480702 -0.28622323 0.054643877 -0.27856904 -0.28622574 0.35669443 -0.58815694 0.439955\n\t\t 0.34719241 -0.57146597 0.42872298 -0.66937357 0.043713197 -0.24045733 -0.66937357 0.043713197 -0.24045733\n\t\t 0.30126438 -0.51320899 -0.088373147 0.30686137 -0.540236 -0.088373147 0.6801824 -0.043320328 -0.37581301\n\t\t 0.83915144 -0.070808038 -0.39324701 0.30126438 -0.56726301 -0.08837314 -0.83868259 -0.21691504 -0.6052019\n\t\t -0.83868259 -0.21691504 -0.6052019 -0.83868259 -0.21691504 -0.6052019 -0.31537557 -0.68149793 0.39410311\n\t\t -0.33194757 -0.67886692 0.41647309 -0.19891261 -0.58230102 -0.1043878 -0.18618961 -0.56292999 -0.1043878\n\t\t -0.25227666 0.82692999 -0.590186 -0.18699361 -0.59421998 -0.015823886 -0.21185361 -0.61054897 -0.015823886\n\t\t 0.55435944 0.013828427 0.21739498 0.54601341 0.010249332 0.215159 -0.57808357 0.046313122 0.22242212\n\t\t 0.33616143 -0.56088191 0.41483313 0.68703043 -0.017628983 -0.0058670193 0.11807845 0.21835206 0.57824099\n\t\t 0.017451646 0.21690206 0.589522 0.017451646 0.21690206 0.589522 0.017451646 0.21690206 0.589522\n\t\t 0.017451646 0.21690206 0.589522 0.34636143 -0.66838497 0.43076801 -0.71773559 0.23969997 -0.34421688\n\t\t -0.69357556 0.24445395 -0.44227988 -0.17066461 -0.56936097 -0.015823901 0.28611037 -0.59033298 -0.08837314\n\t\t 0.8341704 -0.058228329 -0.381666 0.33372536 -0.55922395 0.39661103 0.32477835 -0.56185794 0.38384408\n\t\t -0.89923757 0.19510992 -0.62713289 -0.89923757 0.19510992 -0.62713289 -0.89923757 0.19510992 -0.62713289\n\t\t -0.87975168 0.19877996 -0.61981285 0.28611135 -0.49014002 -0.088372946 -0.20227267 0.84106201 -0.62710404\n\t\t -0.5987916 0.34784901 0.16429406 -0.63847357 0.16418003 0.11702207 -0.63847357 0.16418003 0.11702207\n\t\t -0.77218068 0.10500695 -0.78047991 -0.77218068 0.10500695 -0.78047991 -0.77218068 0.10500695 -0.78047991\n\t\t -0.36430559 -0.60666996 0.46491814 -0.36453259 -0.63241696 0.46341711 0.31574437 -0.67755592 0.38940108\n\t\t 0.33192936 -0.67515993 0.41109711 -0.72559559 0.26606196 -0.32760096 -0.7270506 0.25604296 -0.32235193\n\t\t -0.7270506 0.25604296 -0.32235193 0.32902229 0.783454 -0.40253311 0.18046036 0.85288197 -0.48373306\n\t\t 0.46546841 0.42350304 0.34467798 0.46546841 0.42350304 0.34467798 0.47270042 0.41479105 0.34291202\n\t\t 0.47270042 0.41479105 0.34291202 0.66449642 -0.25768802 -0.313333 -0.2139506 -0.60548598 -0.018963888\n\t\t -0.19088161 -0.59033298 -0.018963888 -0.18148962 -0.540236 -0.1043878 -0.18618961 -0.517542 -0.1043878\n\t\t -0.72352457 0.27019197 -0.33466291 -0.54931867 0.62592393 -0.6395579 -0.5598616 0.62432295 -0.613433\n\t\t -0.2286707 0.4043889 -1.087767005 -0.27977976 0.44624788 -1.12165093 -0.27977976 0.44624788 -1.12165093\n\t\t -0.57710671 0.62546295 -0.56101096 0.3122763 -0.056234434 -0.49998894 0.28572443 -0.63717091 0.52252012\n\t\t 0.25836143 -0.65872395 0.52532399 -0.62374359 -0.27690101 0.024437115 -0.68044156 0.016814798 -0.090682112\n\t\t -0.68044156 0.016814798 -0.090682112 0.44410741 0.42350304 0.34034002 0.44410741 0.42350304 0.34034002\n\t\t 0.45454636 0.42683107 0.343696 0.45454636 0.42683107 0.343696 0.12644537 0.86588103 -0.49799106\n\t\t 0.40098429 0.72084898 -0.31274009 0.43133736 0.68547201 -0.25834155 0.45632735 0.43982303 0.33492798\n\t\t 0.45632735 0.43982303 0.33492798 0.45632735 0.43982303 0.33492798 0.47263843 0.43485403 0.33639497\n\t\t 0.47263843 0.43485403 0.33639497 0.47263843 0.43485403 0.33639497 0.34911123 0.21153791 -1.061679006\n\t\t 0.31599641 -0.54448295 0.40999901 0.22549646 -0.66962892 0.5300321 -0.39017776 0.4437269 -1.041514993\n\t\t 0.30514136 -0.54685593 0.39439708 -0.92678368 0.15351595 -0.63720393 -0.93040556 0.14222492 -0.63851786\n\t\t -0.54481357 0.055549428 0.20477304 -0.53646755 0.051970318 0.20253712 -0.69476259 0.24533702 0.10583505\n\t\t -0.69476259 0.24533702 0.10583505 -0.69272059 0.2942 0.11711004;\n\tsetAttr \".vt[10624:10789]\" -0.57043958 0.33093601 0.17784104 -0.53781956 0.47008896 0.21657506\n\t\t -0.29496163 -0.59421998 -0.015823886 -0.27010164 -0.61054897 -0.015823886 0.29983729 0.12834091 -1.061108828\n\t\t 0.31155431 0.1214949 -1.047433853 0.39988837 -0.61786997 -0.20162015 0.37032536 -0.59829402 -0.20162034\n\t\t 0.64867944 -0.30850804 -0.27011448 0.64867944 -0.30850804 -0.27011448 0.64867944 -0.30850804 -0.27011448\n\t\t -0.72012359 0.24082099 -0.33549592 -0.31129065 -0.56936002 -0.015823886 -0.90044355 0.10500698 -0.42807889\n\t\t -0.90044355 0.10500698 -0.42807889 -0.90044355 0.10500698 -0.42807889 -0.85975158 -0.077794626 -0.40432689\n\t\t -0.85975158 -0.077794626 -0.40432689 -0.67893058 0.018351808 -0.043777898 -0.66921359 0.021742418 0.051329106\n\t\t -0.50547969 0.43681192 -0.91968387 -0.56683171 0.43003094 -0.83333391 0.69742244 0.51410198 -0.10658008\n\t\t 0.66461539 0.56725901 -0.26759267 -0.5318917 0.63088197 -0.67638099 -0.0035280311 -0.66382402 -0.090156712\n\t\t -0.003527981 -0.76985502 -0.090156697 -0.2885657 -0.036303237 -0.49999794 -0.25456765 -0.028326124 -0.50000799\n\t\t -0.19891261 -0.49817199 -0.1043878 -0.72322661 0.24522997 -0.32846892 -0.38397157 -0.57767892 0.2885671\n\t\t -0.31812459 -0.61389291 0.36364514 0.36659637 -0.80821902 0.11091605 0.36659637 -0.80821902 0.11091605\n\t\t 0.36054137 -0.81149298 0.10273206 -0.0035280613 -0.64493501 -0.090156712 -0.0035280613 -0.64493501 -0.090156712\n\t\t 0.33315343 -0.55121392 0.42100799 0.32197142 -0.54865295 0.40559107 0.35482726 0.14104991 -1.020179987\n\t\t 0.34131625 0.12839492 -1.02529192 -0.6534676 0.18566404 0.11348906 -0.14083764 -0.677939 -0.19176009\n\t\t -0.14083764 -0.677939 -0.19176009 -0.14083764 -0.677939 -0.19176009 0.31163737 -0.55110693 0.39074504\n\t\t -0.28201964 -0.62936497 0.39504009 -0.24813356 -0.64258194 0.42143512 -0.16525455 -0.35614094 0.61735296\n\t\t -0.26769459 -0.35622093 0.52011108 -0.26769459 -0.35622093 0.52011108 -0.24097762 -0.61658001 -0.012080893\n\t\t -0.24097762 -0.61658102 -0.015823886 -0.1323677 0.15255789 -1.14158893 -0.1271137 0.15258391 -1.14291596\n\t\t -0.53322661 -0.45960599 0.04619211 -0.38204965 0.78028196 -0.57064998 -0.44176164 0.75433892 -0.47874701\n\t\t -0.48956665 0.40576202 0.32802004 -0.48956665 0.40576202 0.32802004 -0.48956665 0.40576202 0.32802004\n\t\t -0.47844365 0.40402406 0.33907104 -0.47844365 0.40402406 0.33907104 0.1561534 -0.35186303 -0.29098994\n\t\t 0.14263636 -0.37131 -0.29098994 0.29144931 0.15752991 -1.083498001 0.29602125 0.17540793 -1.088819981\n\t\t 0.36925641 -0.60837996 0.44013798 0.36410141 -0.58819592 0.43486798 0.13217345 -0.63157195 0.53885198\n\t\t 0.12290545 -0.61696696 0.5417611 -0.56120557 -0.39628798 0.16506812 -0.56120557 -0.39628798 0.16506812\n\t\t -0.53524458 -0.39787698 0.1648061 -0.59056461 -0.36272401 0.061728105 -0.29650158 -0.50837493 0.53303111\n\t\t -0.31234258 -0.53903693 0.52755111 0.36464429 0.1576259 -1.020292997 0.30543235 -0.062729225 -0.51016891\n\t\t 0.27977636 -0.044895828 -0.51017892 -0.68339455 0.22854201 0.10781506 0.12250637 -0.38378799 -0.29098994\n\t\t -0.27242777 0.47589689 -1.130283 -0.27780271 0.46568888 -1.13041782 -0.23054057 -0.55574793 0.47474313\n\t\t -0.23054057 -0.55574793 0.47474313 -0.59888756 0.355919 0.12696904 -0.58222258 0.43825001 0.15120405\n\t\t -0.58222258 0.43825001 0.15120405 -0.29471457 -0.50745094 0.5227021 -0.31055558 -0.53811294 0.51722109\n\t\t 0.36180243 -0.60827494 0.44519198 0.36310542 -0.60716796 0.45733911 -0.48272371 0.64259297 -0.75764704\n\t\t -0.1445087 0.16772191 -1.14470899 -0.14296471 0.17240493 -1.146999 0.46938238 -0.45009601 -0.30564499\n\t\t 0.49894643 -0.46967202 -0.30564499 -0.56611657 -0.39918196 0.14174411 -0.27010164 -0.46992403 -0.015823901\n\t\t -0.29496163 -0.48625302 -0.015823886 -0.47760159 0.43485403 0.33639503 -0.47760159 0.43485403 0.33639503\n\t\t -0.47760159 0.43485403 0.33639503 -0.47043157 0.42350304 0.34467804 -0.47043157 0.42350304 0.34467804\n\t\t 0.099196374 -0.38798004 -0.29098994 -0.34600964 -0.66588992 0.39974213 -0.35937163 -0.66032696 0.41747212\n\t\t -0.42573169 0.65063995 -0.82480186 -0.48840159 0.42184407 0.33375603 -0.48840159 0.42184407 0.33375603\n\t\t -0.48840159 0.42184407 0.33375603 0.36945441 -0.62905496 0.43899298 0.35716441 -0.58344597 0.45107311\n\t\t 0.53766644 0.055549428 0.21292198 -0.6788916 0.37880498 0.10143104 -0.66274559 0.40577 0.11675206\n\t\t 0.16156439 -0.32880503 -0.29098994 -0.5794856 -0.38773 0.13936511 -0.59417957 -0.36769098 0.087639123\n\t\t -0.59417957 -0.36769098 0.087639123 -0.45950964 0.42683107 0.343696 -0.45950964 0.42683107 0.343696\n\t\t 0.32496643 -0.57389194 0.52139312 0.32238442 -0.59354997 0.5200811 0.32238442 -0.59354997 0.5200811\n\t\t -0.003527981 -0.78792 -0.090156697 -0.003527981 -0.78792 -0.090156697 0.36202642 -0.62886095 0.44402397\n\t\t -0.60180056 -0.35302699 0.067964107 0.15930346 -0.65567297 0.5427261 0.14560445 -0.64522892 0.54602897\n\t\t -0.58245856 -0.37796801 0.084248126 0.27825424 0.15447991 -1.093318939 0.28005323 0.13229893 -1.0802598\n\t\t 0.53678739 0.46710801 0.21394092 0.6107254 0.447272 0.17840993 0.35687941 -0.64695692 0.43604213\n\t\t -0.40764469 0.65525591 -0.83931804 -0.40764469 0.65525591 -0.83931804 -0.31676957 -0.57348591 0.52370512\n\t\t -0.24097762 -0.46938902 -0.018963903 -0.26800463 -0.47498602 -0.018963903 0.15737139 -0.30549604 -0.29098994\n\t\t 0.36921623 0.17550389 -1.025614977 0.34723341 -0.66005492 0.42249799 -0.35132459 -0.66838497 0.43076813\n\t\t 0.15751745 -0.65474892 0.53239709 -0.56294656 -0.37869897 0.17962712 0.43463537 -0.44303399 -0.30564499\n\t\t 0.34603241 -0.56380296 0.4375661 0.51852244 -0.49923599 -0.30564499 0.5255844 -0.53398299 -0.30564499\n\t\t -0.36155358 -0.23843695 0.47676611 -0.38922358 -0.20391196 0.46395212 -0.38922358 -0.20391196 0.46395212\n\t\t -0.57990456 -0.27331898 0.20648211 -0.58310956 -0.25819597 0.20545512 -0.24097762 -0.61108297 -0.04582189\n\t\t -0.26800463 -0.60548598 -0.04582189 -0.46572563 0.57219303 0.12821001 -0.46954963 0.60809797 0.062958032\n\t\t 0.5328564 0.47008896 0.21657494 -0.25716758 -0.34698495 0.51968414;\n\tsetAttr \".vt[10790:10955]\" -0.25716758 -0.34698495 0.51968414 -0.24029756 -0.34455594 0.51493013\n\t\t -0.58212656 0.430179 0.18852806 -0.58212656 0.430179 0.18852806 -0.62150759 0.422243 0.17172006\n\t\t 0.14489339 -0.285366 -0.29098994 0.099991314 0.0069950074 -1.050133944 -0.0024816701 0.0069950521 -1.062116981\n\t\t 0.53150439 0.051970318 0.202537 -0.56657559 0.034688935 0.25597811 -0.5646866 0.044132218 0.25547212\n\t\t -0.36686057 -0.66948593 0.41808313 -0.35225663 -0.67632592 0.39844114 -0.44310158 0.41479105 0.33589196\n\t\t -0.44310158 0.41479105 0.33589196 -0.44907057 0.42350304 0.34034002 -0.44907057 0.42350304 0.34034002\n\t\t 0.7146734 0.268112 -0.31942606 0.71769243 0.25659198 -0.31026006 0.71769243 0.25659198 -0.31026006\n\t\t 0.71769243 0.25659198 -0.31026006 0.47378835 -0.82641506 -0.56235296 0.47641537 -0.83703405 -0.52275395\n\t\t -0.44388157 0.40402406 0.33205098 -0.44388157 0.40402406 0.33205098 -0.43959865 -0.45761603 -0.32670689\n\t\t -0.41042265 -0.46354604 -0.32670689 0.48791629 0.18284495 -0.78145599 -0.1415097 0.15801691 -1.14151692\n\t\t -0.13743369 0.15446989 -1.14109683 -0.17278364 -0.328969 -0.28619093 -0.16815861 -0.30326003 -0.28619653\n\t\t -0.71781355 0.44613498 -0.12297044 -0.71503657 0.44637901 -0.12132124 -0.24097762 -0.62068999 -0.051405892\n\t\t -0.2102856 -0.61433297 -0.051405899 0.71155244 0.27470201 -0.32958502 -0.55887246 0.027355626 0.25754806\n\t\t -0.56033945 0.034688935 0.25794205 -0.52660346 0.43050706 0.26537904 -0.54697859 0.345635 0.23549905\n\t\t -0.54697859 0.345635 0.23549905 -0.65152258 0.033291221 0.10381308 -0.65152258 0.033291221 0.10381308\n\t\t -0.65152258 0.033291221 0.10381308 0.37560642 -0.79959899 0.10847107 0.37560642 -0.76806098 0.10847107\n\t\t -0.17572761 -0.56726301 -0.045821905 -0.19088061 -0.59033298 -0.045821905 0.46938238 -0.61786902 -0.30564496\n\t\t 0.43463537 -0.62493199 -0.30564496 0.70846242 0.27747601 -0.34218806 0.20375533 0.0069974661 -1.0014200211\n\t\t -0.55351567 0.57089293 -0.77200401 -0.49412471 0.58261192 -0.85477901 -0.17100155 -0.22750694 0.66161501\n\t\t -0.17100155 -0.22750694 0.66161501 0.87468141 0.21260394 -0.62921309 0.18591839 -0.49014002 -0.018963948\n\t\t 0.20898739 -0.47498602 -0.018963948 0.40913531 0.0070272088 -0.81068486 0.4844763 0.0070388168 -0.732283\n\t\t -0.57796359 -0.42369097 -0.00022989511 -0.58943456 -0.403144 -0.026023895 0.17076439 -0.51320899 -0.018963933\n\t\t -0.7165156 0.27470201 -0.3295849 -0.71342558 0.27747601 -0.34218794 0.2665413 0.0070052296 -0.95021999\n\t\t 0.49894643 -0.59829301 -0.30564499 0.68213242 0.20165201 -0.26101553 0.76829439 0.17936097 -0.29152906\n\t\t -0.43795064 0.40576202 0.317536 -0.43795064 0.40576202 0.317536 -0.43795064 0.40576202 0.317536\n\t\t 0.15683745 0.21825705 0.57528901 0.15683745 0.21825705 0.57528901 0.11357045 0.21410604 0.587672\n\t\t -0.72098255 0.26526296 -0.33669394 -0.1439997 0.1626799 -1.14278793 0.17595644 -0.065928236 0.66253901\n\t\t 0.17446946 -0.13834193 0.66842014 -0.27133974 0.59515995 -1.059859037 -0.26429376 0.58977193 -1.067963839\n\t\t -0.0024813737 0.21683307 0.591609 -0.0024813737 0.21683307 0.591609 -0.0024813737 0.21683307 0.591609\n\t\t 0.0025018682 0.21683307 0.5901981 -0.34236565 -0.54887992 0.39269114 -0.33198059 -0.55131495 0.37780112\n\t\t -0.44798163 0.45068204 0.310875 -0.43147764 0.42989707 0.30374506 -0.2745657 0.59168893 -1.073007822\n\t\t -0.27041677 0.58337295 -1.080641985 -0.28161177 0.59711492 -1.064909935 -0.12968069 0.17797391 -1.15259004\n\t\t -0.13493469 0.17794792 -1.151263 0.51852244 -0.49923599 -0.28947294 0.5255844 -0.53398299 -0.28947294\n\t\t -0.27115658 -0.48519796 0.53948611 0.51852244 -0.56873 -0.30564499 -0.63518858 0.034684211 0.10312808\n\t\t -0.88095659 0.10867797 -0.42075789 0.90481031 -0.11166505 -0.59000599 0.90328729 -0.11432505 -0.59817189\n\t\t 0.90328729 -0.11432505 -0.59817189 0.91684145 -0.081095636 -0.54711902 -0.54856861 -0.45763397 0.06120114\n\t\t -0.56544858 -0.44041997 0.02677311 -0.044697832 -0.300017 -0.28622514 -0.038730133 -0.32544702 -0.28622222\n\t\t -0.29107365 -0.49014002 -0.018963888 0.6822443 0.28438997 -0.44738001 0.69541442 0.41407496 0.13854092\n\t\t 0.69541442 0.41407496 0.13854092 0.70742244 0.380629 0.12393692 -0.54885447 0.016984925 0.2548641\n\t\t -0.54177159 0.015466228 0.25296611 0.90320843 -0.11226705 -0.60361302 0.90320843 -0.11226705 -0.60361302\n\t\t 0.90320843 -0.11226705 -0.60361302 0.89193332 -0.11227605 -0.59539789 -0.2658577 0.45619184 -1.12756681\n\t\t -0.2658577 0.45619184 -1.12756681 -0.2081587 0.41657192 -1.095463991 -0.014439912 -0.75865197 -0.0982311\n\t\t -0.014439912 -0.75865197 -0.0982311 -0.014440011 -0.68027198 -0.098231107 -0.014440011 -0.68027198 -0.098231107\n\t\t 0.43463537 -0.44303399 -0.28947294 0.39988837 -0.45009601 -0.28947294 0.70042944 0.41794497 0.13152894\n\t\t 0.70042944 0.41794497 0.13152894 0.37297443 -0.58392292 0.43832397 0.36170042 -0.56415594 0.42476499\n\t\t -0.13960969 0.1759889 -1.14929581 0.46076235 0.57219303 0.12820992 0.46458635 0.60809797 0.062957942\n\t\t 0.055618171 -0.6945799 0.80982012 0.035481565 -0.69080585 0.81278211 -0.52048957 0.66980398 -0.046636984\n\t\t -0.52211958 0.653615 -0.016136974 0.43956441 -0.56625193 0.32531804 0.49872243 -0.55206996 0.22012204\n\t\t 0.16516739 -0.540236 -0.018963933 -0.38393757 -0.60780293 0.44463313 -0.37793759 -0.58392292 0.43832409\n\t\t 0.16341345 -0.75532293 0.59453309 0.16341345 -0.75532293 0.58524811 0.46381137 -0.46354604 -0.32670695\n\t\t 0.43463537 -0.45761603 -0.32670695 -0.47875163 -0.82641506 -0.5623529 0.43848741 -0.54563594 0.32112706\n\t\t 0.49306142 -0.52928597 0.230766 0.4886353 -0.47998303 -0.32670695 -0.17856355 -0.22306293 0.66990697\n\t\t -0.17856355 -0.22306293 0.66990697 -0.36666259 -0.56415594 0.42476511 -0.26061171 0.46650589 -1.12739992\n\t\t 0.34866941 -0.55148196 0.40815496 0.33740237 -0.54887992 0.39269108 -0.2777077 0.59809697 -1.053611994\n\t\t -0.12783656 -0.87054896 0.54540414 -0.12783656 -0.87054896 0.54540414 -0.13108756 -0.76772493 0.54540414\n\t\t -0.13108756 -0.76772493 0.54540414 -0.24097762 -0.61108297 -0.088372692;\n\tsetAttr \".vt[10956:11121]\" -0.2139506 -0.60548598 -0.0883727 -0.48137864 -0.83703405 -0.52275383\n\t\t 0.35449943 -0.57151693 0.42361814 0.34339243 -0.56098092 0.40974611 -0.16878556 -0.054627225 0.67640013\n\t\t 0.2360144 -0.61108297 -0.018963933 0.20898739 -0.60548598 -0.018963933 0.45032737 -0.82597399 0.050401077\n\t\t 0.45805737 -0.77973402 0.044681087 -0.20317855 -0.47031796 0.5418511 -0.17031355 -0.48122293 0.5465591\n\t\t -0.38412258 -0.63227594 0.44324309 -0.17258552 -0.049509928 0.67514801 -0.17258552 -0.049509928 0.67514801\n\t\t -0.17938755 -0.047204033 0.67230797 -0.17938755 -0.047204033 0.67230797 0.44929036 -0.82839102 0.050129056\n\t\t 0.44929036 -0.82839102 0.050129056 0.2360144 -0.61658102 -0.015823931 0.20689039 -0.61054897 -0.015823931\n\t\t 0.44377041 0.48705506 0.267465 0.44180441 0.47898602 0.28029799 0.44180441 0.47898602 0.28029799\n\t\t -0.64373767 -0.32723504 -0.52838087 -0.64373767 -0.32723504 -0.52838087 -0.64373767 -0.32723504 -0.52838087\n\t\t 0.42676136 -0.52635193 0.30167305 -0.63996673 -0.32723504 -0.53874189 -0.63996673 -0.32723504 -0.53874189\n\t\t -0.63996673 -0.32723504 -0.53874189 -0.56513959 -0.30210704 -0.51005685 0.63535041 0.533149 0.0014799386\n\t\t 0.69846344 0.49012697 -0.029224068 0.69846344 0.49012697 -0.029224068 0.4886353 -0.587982 -0.32670695\n\t\t 0.46381137 -0.60442001 -0.32670695 -0.79447657 -0.22244005 -0.58330488 -0.79447657 -0.22244005 -0.58330488\n\t\t -0.23936655 -0.47230196 0.54613709 -0.20496455 -0.47124195 0.55218011 0.67705142 -0.067581415 -0.31242502\n\t\t 0.67705142 -0.067581415 -0.31242502 0.66521442 -0.066247821 -0.31226403 0.66521442 -0.066247821 -0.31226403\n\t\t -0.29107365 -0.59033298 -0.088373087 -0.26800463 -0.60548598 -0.088372886 0.92039132 -0.070368245 -0.53768301\n\t\t 0.081928253 -0.59855992 0.70674098 0.060322568 -0.59097093 0.71018308 0.070144065 -0.71681494 0.8037191\n\t\t -0.58830959 -0.23963805 -0.64569092 -0.56685358 0.64452595 -0.54972994 -0.5726707 0.63856095 -0.54468691\n\t\t -0.5726707 0.63856095 -0.54468691 -0.52120757 0.61356801 0.057384014 0.32056043 0.28902102 0.46838897\n\t\t 0.39410543 0.33300805 0.392111 -0.38559964 -0.587982 -0.32670689 -0.36916164 -0.56315899 -0.32670689\n\t\t -0.18822356 -0.10661694 0.68213111 -0.18742155 -0.16318893 0.67778802 -0.19101653 -0.10608693 0.67700011\n\t\t -0.18217956 -0.20874295 0.67220199 -0.19183455 -0.063367844 0.67115611 0.26513836 -0.61054897 -0.015823931\n\t\t 0.44762036 -0.82914102 0.048248053 0.69879544 0.48574996 -0.020127073 0.69879544 0.48574996 -0.020127073\n\t\t -0.54550469 0.66021591 -0.57542002 -0.47325164 0.64836401 -0.010671973 -0.47310063 0.66266698 -0.037240982\n\t\t 0.48630437 -0.51724893 0.22791806 -0.1190847 0.15812691 -1.14717984 -0.1224397 0.15454291 -1.14488399\n\t\t 0.18821745 -0.68160695 0.53540713 0.15220346 -0.66699696 0.54294097 -0.18107551 -0.20973292 0.67504114\n\t\t -0.18578856 -0.16370493 0.68240499 0.26442042 -0.67045397 0.52322811 0.29541942 -0.64603692 0.520051\n\t\t 0.71137643 0.25733697 -0.31324506 -0.26367164 -0.59502399 -0.10438779 -0.24097762 -0.59972399 -0.1043878\n\t\t 0.54659832 -0.76133907 -0.56264198 0.45010337 0.51347798 0.22630093 0.43382737 -0.82582599 0.05845505\n\t\t 0.20876639 -0.81604898 -0.24569772 0.20876639 -0.81604898 -0.24569772 -0.58048558 0.08358793 0.16281712\n\t\t -0.1180497 0.1678509 -1.15139103 -0.1205387 0.17251392 -1.1526618 0.85478842 -0.077794626 -0.40432706\n\t\t 0.85478842 -0.077794626 -0.40432706 0.88059628 -0.10177503 -0.44983307 0.88059628 -0.10177503 -0.44983307\n\t\t 0.30738142 -0.63018394 0.5194 0.30738142 -0.63018394 0.5194 0.30492941 -0.62826395 0.53953397\n\t\t -0.33868864 -0.55922395 0.39661109 -0.32974163 -0.56185794 0.38384414 -0.38559964 -0.47998303 -0.32670689\n\t\t 0.45247737 0.38518304 0.29417792 0.39988837 -0.61786902 -0.30564496 0.64700145 -0.40893203 -0.19922718\n\t\t 0.64896244 -0.39322001 -0.23180059 0.12474139 -0.38961202 -0.28619033 0.14694336 -0.37584901 -0.28618765\n\t\t -0.67193156 -0.027690589 0.075212121 -0.67576855 -0.0071453005 0.068138123 -0.67576855 -0.0071453005 0.068138123\n\t\t -0.53449458 0.66630495 -0.59319699 -0.5198766 0.57934201 0.11978102 0.16341345 -0.75532293 0.4683001\n\t\t 0.36787331 0.19206493 -1.035364985 0.36082825 0.20469292 -1.048004031 -0.39353758 0.34161305 0.38558704\n\t\t -0.45137563 0.39353907 0.28930205 -0.15439564 -0.28105903 -0.28620315 0.36861536 -0.76638103 0.11364406\n\t\t 0.36861536 -0.79791898 0.11364406 -0.93863159 0.056259677 -0.51964486 -0.18635754 -0.04950574 0.67013502\n\t\t -0.18635754 -0.04950574 0.67013502 -0.34835559 -0.56098092 0.40974611 -0.54277658 -0.51108795 0.13881612\n\t\t -0.65631455 0.0072939396 0.060066104 -0.31182465 -0.540236 -0.088373095 0.37915942 -0.63227594 0.44324309\n\t\t 0.37897441 -0.60780293 0.44463301 0.30441841 -0.61979795 0.55747908 0.30441841 -0.61979795 0.55747908\n\t\t 0.30892441 -0.61015892 0.55909801 0.50507241 -0.504807 -0.32670695 -0.16603956 -0.47041696 0.55898511\n\t\t -0.14949656 -0.48125994 0.56087613 0.43463537 -0.62493199 -0.28947294 0.39988837 -0.61786997 -0.28947294\n\t\t -0.34112459 -0.56088191 0.41483313 -0.33143565 -0.55908597 0.40162212 0.73548841 0.19375302 -0.025078043\n\t\t 0.75644541 0.24102701 -0.03908205 0.75644541 0.24102701 -0.03908205 0.49722335 0.49050802 0.26694894\n\t\t 0.51249456 -0.25357497 0.30249205 0.51249456 -0.25357497 0.30249205 0.47630942 -0.25199196 0.30736399\n\t\t 0.79913533 -0.22051905 -0.59258604 0.83371943 -0.21691504 -0.6052019 0.83371943 -0.21691504 -0.6052019\n\t\t 0.83371943 -0.21691504 -0.6052019 0.51100242 -0.53398299 -0.32670695 0.88785642 0.19906093 -0.61464912\n\t\t 0.88193542 0.19949593 -0.63183713 0.88193542 0.19949593 -0.63183713 -0.29107365 -0.59033298 -0.04582189\n\t\t -0.36906457 -0.58819592 0.4348681 -0.35946259 -0.57151693 0.42361814 0.8422094 -0.20972905 -0.60831201\n\t\t 0.8422094 -0.20972905 -0.60831201 0.8422094 -0.20972905 -0.60831201 0.76878744 -0.10171506 -0.75673699\n\t\t 0.76878744 -0.10171506 -0.75673699 -0.1246147 0.17606191 -1.15308201 -0.36165759 -0.58815694 0.43995512\n\t\t -0.35215458 -0.57146597 0.4287231 0.67610544 0.098242089 -0.0041950345;\n\tsetAttr \".vt[11122:11287]\" 0.72670442 0.19339402 -0.034883052 0.68139839 -0.0407774 -0.017690018\n\t\t 0.68531644 -0.020669296 -0.025266021 0.68531644 -0.020669296 -0.025266021 -0.24097762 -0.46938902 -0.088372707\n\t\t -0.2139506 -0.47498703 -0.088372707 -0.30145964 -0.61473793 0.39927012 -0.33697259 -0.59937197 0.36785913\n\t\t 0.7645964 0.11485894 -0.77469814 0.46597537 -0.39568797 0.27617106 0.48880735 -0.37552297 0.250857\n\t\t 0.48880735 -0.37552297 0.250857 0.46828836 0.64836401 -0.010672063 -0.18993156 -0.054614842 0.66870201\n\t\t -0.52525157 -0.49225193 0.13094512 -0.5234856 -0.56873 -0.30564487 -0.50390959 -0.59829301 -0.30564487\n\t\t 0.92182028 0.15351595 -0.63720405 0.89427441 0.19510992 -0.62713313 0.89427441 0.19510992 -0.62713313\n\t\t 0.89427441 0.19510992 -0.62713313 -0.66705358 -0.20308404 -0.35624385 -0.66705358 -0.20308404 -0.35624385\n\t\t -0.68415856 -0.091903724 -0.35229784 -0.68415856 -0.091903724 -0.35229784 0.9254424 0.14222492 -0.6385181\n\t\t -0.47434565 -0.61786902 -0.30564487 -0.34928164 -0.49657202 -0.2105947 -0.37035865 -0.46474302 -0.2105947\n\t\t 0.76721728 0.10500695 -0.78048015 0.76721728 0.10500695 -0.78048015 0.76721728 0.10500695 -0.78048015\n\t\t 0.30310142 -0.62491792 0.55263901 0.30310142 -0.62491792 0.55263901 -0.43959865 -0.62493199 -0.30564487\n\t\t -0.66569859 -0.089715324 -0.34924889 -0.66574258 -0.091168426 -0.35260284 -0.66574258 -0.091168426 -0.35260284\n\t\t 0.68089044 0.34053797 0.090608925 0.67392844 0.37880498 0.10143092 0.2360144 -0.480748 -0.10438785\n\t\t 0.21332039 -0.485448 -0.10438784 0.59597844 -0.22679798 0.140277 0.63530344 -0.16099198 0.11940998\n\t\t -0.53054756 -0.53398299 -0.30564487 -0.34928265 -0.57139403 -0.21059468 -0.34167865 -0.53398299 -0.21059489\n\t\t 0.30393443 -0.62754393 0.54457814 0.68785244 0.30227101 0.079785943 0.66269141 -0.0033853203 -0.034996018\n\t\t 0.21609145 -0.62799895 0.62182498 0.19985645 -0.62141293 0.62522101 -0.32731259 -0.52256495 0.41973609\n\t\t -0.28985158 -0.54098392 0.44269413 -0.40251663 -0.56488693 0.29444611 -0.47913763 -0.51397896 0.18418512\n\t\t -0.10415962 -0.38798004 -0.29098994 -0.081102021 -0.38256902 -0.29098994 0.52244741 -0.053757071 0.29474699\n\t\t 0.53835857 -0.030775964 0.261473 -0.47434565 -0.45009601 -0.3056449 -0.43959865 -0.44303399 -0.3056449\n\t\t -0.13040961 -0.27184904 -0.29098994 -0.10735262 -0.26643902 -0.29098994 0.68989539 0.253407 0.068509936\n\t\t 0.68989539 0.253407 0.068509936 -0.41782457 -0.45341396 0.3476311 -0.35637158 -0.49284995 0.39646709\n\t\t -0.12746862 -0.38378799 -0.29098994 0.32785937 -0.49403393 0.39792603 0.29317942 -0.51241094 0.42076898\n\t\t 0.37783435 -0.74446303 0.10235405 0.38389036 -0.74956 0.11053807 0.38389036 -0.74956 0.11053807\n\t\t -0.50390959 -0.46967202 -0.3056449 0.28611037 -0.59033298 -0.045821942 0.30126438 -0.56726301 -0.04582195\n\t\t 0.36189741 -0.66948593 0.41808313 0.37299341 -0.65381992 0.43370497 0.1252843 0.18230389 -1.160272\n\t\t 0.13315929 0.18226592 -1.158283 -0.15299855 -0.21763495 0.67384398 -0.15333152 -0.16439193 0.68352199\n\t\t -0.14759964 -0.37131 -0.29098994 -0.16295752 -0.10637493 0.68068302 -0.15936954 -0.061624616 0.6764341\n\t\t -0.084043525 -0.27063102 -0.29098994 -0.063914329 -0.28310901 -0.29098994 0.16191739 -0.57092899 -0.051405936\n\t\t 0.17912538 -0.59712601 -0.051405936 -0.94016761 0.10315894 -0.6339609 -0.94016761 0.10315894 -0.6339609\n\t\t -0.93499058 0.10313495 -0.64833188 -0.93499058 0.10313495 -0.64833188 0.18691345 -0.60957694 0.62851799\n\t\t -0.51979059 -0.37552497 0.2508561 -0.51979059 -0.37552497 0.2508561 -0.53729761 -0.38001797 0.24128512\n\t\t -0.53729761 -0.38001797 0.24128512 0.22264042 -0.71080196 0.22985604 0.14310843 -0.69168496 0.28870705\n\t\t 0.15159439 -0.82470298 -0.20339251 0.15159439 -0.82470298 -0.20339251 0.15159439 -0.82470298 -0.20339251\n\t\t 0.20876639 -0.83844501 -0.24569792 0.20876639 -0.83844501 -0.24569792 0.15556039 -0.54023701 -0.051405936\n\t\t 0.26981142 -0.60481793 0.61460811 0.26441842 -0.61196393 0.61490202 0.46813735 0.66266698 -0.037241071\n\t\t 0.095043153 -0.61380392 0.69813597 0.069975965 -0.70223391 0.80418611 0.069975965 -0.70223391 0.80418611\n\t\t -0.7156446 0.490251 -0.029380947 -0.7156446 0.490251 -0.029380947 -0.73425359 0.42809796 -0.037573941\n\t\t -0.53713357 -0.51348794 0.13486412 -0.53713357 -0.51348794 0.13486412 -0.53264958 -0.50405395 0.13399312\n\t\t -0.53264958 -0.50405395 0.13399312 -0.40485165 -0.45009601 -0.3056449 -0.37528864 -0.46967202 -0.3056449\n\t\t -0.22407755 -0.53991193 0.60888511 -0.23664054 -0.54029894 0.60667813 -0.50989658 0.51809198 0.22448805\n\t\t 0.16908745 0.12363108 0.60916698 0.16286846 0.22002204 0.57279211 0.16286846 0.22002204 0.57279211\n\t\t 0.16286846 0.22002204 0.57279211 -0.43959865 -0.62493199 -0.21474637 -0.40485165 -0.61786997 -0.21474597\n\t\t 0.9419713 0.018496856 -0.56047404 0.94116741 0.01135616 -0.550403 0.27657542 -0.58830297 0.61491597\n\t\t -0.5517866 0.057486936 0.25201511 -0.54266548 0.059442744 0.24957106 0.46837935 0.674429 -0.057257071\n\t\t 0.46837935 0.674429 -0.057257071 -0.5389446 -0.54087591 0.1281141 -0.5389446 -0.54087591 0.1281141\n\t\t 0.16652045 0.12421606 0.60223198 0.16652045 0.12421606 0.60223198 0.16652045 0.12421606 0.60223198\n\t\t -0.16687655 -0.20926994 0.66768008 0.11769228 0.1794389 -1.16101003 0.26670635 -0.61433297 -0.051405936\n\t\t 0.29290336 -0.59712499 -0.051405944 -0.53354359 0.057486936 0.24712712 0.27773941 -0.57944095 0.61550701\n\t\t -0.16233461 -0.30549604 -0.29098994 -0.14985661 -0.285366 -0.29098994 0.17254445 0.062938645 0.63058996\n\t\t -0.37528864 -0.46967202 -0.28947288 -0.35571271 -0.49923599 -0.28947288 -0.40485165 -0.45009601 -0.28947288\n\t\t -0.45506665 0.51347798 0.22630104 0.93964142 0.0027802587 -0.54568601 0.92611843 -0.05996345 -0.53928506\n\t\t 0.37497741 -0.16127695 0.48014498 0.42058441 -0.13550596 0.42558801 -0.049177825 -0.348921 -0.29098994\n\t\t -0.061655533 -0.36905104 -0.29098994 -0.74837559 0.42514998 -0.33607292 -0.7526896 0.37661898 -0.35225499\n\t\t -0.7526896 0.37661898 -0.35225499 0.26513937 -0.46992403 -0.015823945;\n\tsetAttr \".vt[11288:11453]\" 0.28999835 -0.48625302 -0.015823945 -0.16111661 -0.35186303 -0.29098994\n\t\t 0.25044441 -0.62297195 0.61633414 -0.16652761 -0.32880503 -0.29098994 -0.68986261 0.098749802 -0.11300841\n\t\t -0.70138556 0.11917 -0.056278914 0.49894643 -0.59829301 -0.20162036 0.51852244 -0.56873 -0.20162037\n\t\t -0.54885447 0.052392825 0.2548641 -0.54177159 0.053911641 0.25296611 -0.67715961 -0.18963002 -0.2815176\n\t\t -0.68260556 -0.089060619 -0.32370692 -0.68260556 -0.089060619 -0.32370692 -0.044985931 -0.32561201 -0.29098994\n\t\t -0.53343856 -0.54272991 0.1398201 -0.53343856 -0.54272991 0.1398201 -0.50218654 0.49050802 0.266949\n\t\t -0.44345057 -0.54563594 0.32112712 -0.5641256 -0.26283297 0.2685191 0.26738843 -0.54618794 0.62027001\n\t\t 0.27547842 -0.56184793 0.61747098 -0.52348161 -0.49843293 0.12821311 -0.66957855 0.56725901 -0.26759255\n\t\t -0.63739955 0.59578401 -0.37315601 -0.68985069 0.51614392 -0.51877195 -0.61426657 0.55204892 -0.69072199\n\t\t 0.52495241 -0.57139301 -0.20577197 0.53255641 -0.53398299 -0.20577165 0.16993044 0.063827351 0.62387711\n\t\t 0.30632737 -0.51111197 -0.015823945 0.23366044 -0.62854093 0.61873901 -0.59196359 0.075703844 0.16593713\n\t\t -0.59196359 0.075703844 0.16593713 -0.59750658 0.064321533 0.16755405 0.28611135 -0.49014002 -0.04582195\n\t\t 0.26304135 -0.47498602 -0.04582195 -0.37035865 -0.60322303 -0.21059468 -0.5234856 -0.49923599 -0.30564487\n\t\t -0.56934857 -0.57529491 0.13941011 -0.92674559 0.11711393 -0.62913191 -0.050396632 -0.30255502 -0.29098994\n\t\t 0.93959743 0.041186437 -0.61115909 0.93959743 0.041186437 -0.61115909 0.92824328 0.043235049 -0.60838509\n\t\t 0.18591739 -0.49014002 -0.076023944 0.20898739 -0.47498602 -0.076024942 0.14722939 -0.69896799 -0.20016283\n\t\t 0.14722939 -0.69896799 -0.20016283 0.14023839 -0.69728798 -0.19498989 0.14023839 -0.69728798 -0.19498989\n\t\t 0.14023839 -0.69728798 -0.19498989 0.17927645 -0.04259254 0.65936214 0.31499341 0.29664302 0.46199799\n\t\t 0.38857442 0.34161305 0.38558698 0.31235835 -0.540236 -0.015823945 0.30632737 -0.56936002 -0.015823945\n\t\t -0.40218863 -0.6243 -0.21059468 -0.52442259 0.053575441 0.24468306 -0.5919646 0.075703844 0.13843009\n\t\t -0.77325755 0.17936097 -0.29152891 0.29550236 -0.540236 -0.10438785 -0.54743558 -0.0018360019 0.23354706\n\t\t -0.54743558 -0.0018360019 0.23354706 -0.5426966 -0.0085910559 0.2433151 0.17066745 -0.03936474 0.66164696\n\t\t -0.44873357 0.48705506 0.267465 0.17912538 -0.483347 -0.070439942 -0.57849556 -0.63860393 0.14099815\n\t\t -0.58482361 -0.61822796 0.14553213 -0.57723856 -0.59600896 0.14199916 0.17152545 -0.034474447 0.66378909\n\t\t 0.18163545 -0.038213938 0.66113812 -0.50883859 -0.46474302 -0.21059468 -0.52991557 -0.49657202 -0.21059488\n\t\t 0.94020832 0.040746078 -0.60274214 -0.65212059 -0.21209303 -0.37652889 -0.65212059 -0.21209303 -0.37652889\n\t\t -0.6671946 -0.21233703 -0.37497294 -0.6671946 -0.21233703 -0.37497294 -0.82261169 -0.084310457 -0.73657787\n\t\t -0.8235566 -0.097843051 -0.72960591 0.17327245 -0.064476937 0.65598297 -0.12640071 0.14425193 -1.14577401\n\t\t -0.1342757 0.1442139 -1.143785 0.15908845 0.22458704 0.57115012 -0.73430955 0.48555696 -0.38464394\n\t\t -0.74752855 0.36776596 -0.043093935 0.93972027 0.022822157 -0.55777907 0.18040244 -0.55891895 0.6341731\n\t\t 0.17656244 -0.57632393 0.63328099 0.94215339 0.036383659 -0.60910404 0.94151032 0.03492406 -0.61240411\n\t\t 0.94151032 0.03492406 -0.61240411 -0.53291857 0.00056360662 0.22786304 -0.16681564 -0.35440004 -0.28618783\n\t\t 0.15694045 -0.050970942 0.66948813 0.16251145 -0.04259254 0.6654641 0.5663054 -0.59770995 0.15343606\n\t\t 0.55842543 -0.57713395 0.15082604 0.94249541 0.035666659 -0.60297704 0.88408345 -0.10205103 -0.461474\n\t\t 0.54290342 0.0098098069 0.23202798 0.53668642 0.0081174523 0.24488699 -0.43959865 -0.44303399 -0.28947288\n\t\t 0.44324842 -0.14147195 0.42185497 0.47240341 -0.11470196 0.38299 -0.53751957 -0.53398299 -0.21059488\n\t\t -0.52991557 -0.57139301 -0.21059468 0.93881428 0.014864355 -0.54672801 -0.54798359 -0.66016293 0.12397414\n\t\t -0.52776957 -0.66271996 0.11342314 -0.65543658 -0.27472004 -0.3299129 -0.65905058 -0.33073801 -0.27653819\n\t\t -0.65905058 -0.33073801 -0.27653819 -0.1128157 0.16713391 -1.158476 -0.11654671 0.17412291 -1.16038001\n\t\t -0.2139506 -0.47498602 -0.018963903 -0.53406644 -0.020889267 0.26109704 0.16196945 -0.038213938 0.66829598\n\t\t -0.73789561 0.39201397 -0.17962641 -0.73022658 0.433559 -0.17223334 -0.73022658 0.433559 -0.17223334\n\t\t -0.74380755 0.35112399 -0.18626577 -0.74380755 0.35112399 -0.18626577 -0.75012159 0.34502596 -0.14938614\n\t\t -0.75012159 0.34502596 -0.14938614 0.20385645 -0.53279394 0.63245296 0.18988246 -0.54380095 0.63388598\n\t\t -0.92158771 0.11711992 -0.64334893 0.35710043 -0.47551495 0.37499404 -0.1175397 0.16280891 -1.14946985\n\t\t -0.57865357 -0.61675292 0.14170614 -0.43172464 -0.52635193 0.30167311 -0.18188755 -0.24709395 0.65472811\n\t\t -0.18188755 -0.24709395 0.65472811 -0.17152356 -0.24932593 0.65765798 0.22169645 -0.53516293 0.62938702\n\t\t 0.20753545 -0.53986192 0.63141501 -0.1418677 0.14707892 -1.14304686 0.2360144 -0.59972399 -0.10438783\n\t\t 0.21332039 -0.59502399 -0.10438783 -0.51765758 -0.044274077 0.29491106 -0.49611464 -0.074241966 0.33824313\n\t\t -0.50368559 -0.55206996 0.2201221 -0.53956759 -0.54072696 0.14396712 -0.53956759 -0.54072696 0.14396712\n\t\t 0.16191739 -0.50954401 -0.070439935 -0.15170769 0.15938391 -1.14558101 -0.1479767 0.15239491 -1.143677\n\t\t -0.059607033 -0.27856904 -0.28622574 -0.081808127 -0.26480702 -0.28622323 0.9233554 -0.058821246 -0.53460002\n\t\t 0.93685144 0.0039285719 -0.5409981 -0.15247171 0.16694091 -1.14846003 -0.86077368 0.055785134 -0.7355029\n\t\t -0.66815859 -0.33031601 -0.27563179 -0.66815859 -0.33031601 -0.27563179 -0.46660063 -0.10628995 0.3845821\n\t\t 0.16180645 -0.16322592 0.67491609 0.15946744 -0.10615993 0.67629808 -0.76175058 0.42266899 -0.15040565\n\t\t -0.76175058 0.42266899 -0.15040565 -0.7554366 0.42876697 -0.18728513 -0.7554366 0.42876697 -0.18728513\n\t\t -0.49802458 -0.52928597 0.23076612 -0.53752661 -0.51357591 0.15052611;\n\tsetAttr \".vt[11454:11619]\" -0.53752661 -0.51357591 0.15052611 0.46218443 -0.10678496 0.36435097\n\t\t -0.57296658 -0.63475597 0.13810015 -0.16676955 -0.16322592 0.67491609 -0.16443054 -0.10615993 0.67629808\n\t\t 0.11872945 0.21976705 0.58321112 0.69955939 0.133707 -0.069857039 0.69741744 0.129355 -0.07016404\n\t\t 0.69741744 0.129355 -0.07016404 0.43463537 -0.43606299 -0.21059497 0.39722535 -0.44366604 -0.21059477\n\t\t 0.17176846 -0.13642594 0.661865 -0.16173655 -0.24709395 0.662063 -0.16173655 -0.24709395 0.662063\n\t\t -0.71847272 -0.071093068 -0.77101588 -0.71847272 -0.071093068 -0.77101588 -0.71847272 -0.071093068 -0.77101588\n\t\t -0.75834459 0.096072838 -0.78368586 0.19574545 -0.54914796 0.63262409 -0.15015669 0.17395891 -1.15189195\n\t\t -0.55567861 -0.64955395 0.14338213 -0.56730056 -0.63640392 0.14973715 0.12287346 -0.87054896 0.54540414\n\t\t 0.12287346 -0.87054896 0.54540414 0.12612446 -0.76772493 0.54540414 0.12612446 -0.76772493 0.54540414\n\t\t 0.9378823 0.0092237592 -0.542714 -0.49126765 -0.51724893 0.22791812 -0.53122157 -0.50247991 0.14905012\n\t\t -0.53122157 -0.50247991 0.14905012 0.2360144 -0.62068999 -0.070439935 0.15677345 -0.24709395 0.662063\n\t\t 0.15677345 -0.24709395 0.662063 0.14984044 -0.23749793 0.66757911 0.14984044 -0.23749793 0.66757911\n\t\t 0.15848045 -0.24436694 0.6477471 0.14861844 -0.31302595 0.61642897 -0.51262957 -0.46095204 -0.25723261\n\t\t -0.5348596 -0.494524 -0.25723255 -0.67519855 -0.067668632 -0.36164489 -0.67567855 -0.06953153 -0.36870193\n\t\t -0.67567855 -0.06953153 -0.36870193 0.1144323 0.14718892 -1.14872193 0.1214373 0.14425193 -1.14577401\n\t\t 0.16186444 -0.24095695 0.641909 -0.41706857 -0.15027696 0.44855213 -0.40178359 -0.16117595 0.46467912\n\t\t -0.40178359 -0.16117595 0.46467912 -0.40178359 -0.16117595 0.46467912 0.65778244 0.40577 0.11675194\n\t\t 0.56075644 -0.65349495 0.13350606 0.54302043 -0.66016293 0.12397406 -0.73654056 0.42746001 -0.13535354\n\t\t -0.73654056 0.42746001 -0.13535354 0.92212331 -0.064030737 -0.53511405 0.5398944 -0.65336597 0.12337506\n\t\t 0.55635744 -0.64772493 0.13178706 0.35548431 0.22681592 -1.064096928 0.3711763 0.2176479 -1.045779943\n\t\t 0.2360144 -0.46389204 -0.015823945 0.89185429 -0.11021805 -0.60083997 -0.85342669 0.043839738 -0.74138987\n\t\t -0.17572761 -0.56726402 -0.018963903 0.15608545 -0.063194737 0.67239112 0.5735324 -0.63860393 0.14099807\n\t\t -0.18947154 -0.57658792 0.6321131 -0.19271155 -0.56190294 0.63286608 -0.41561857 -0.16627495 0.45851511\n\t\t -0.41561857 -0.16627495 0.45851511 0.26113641 -0.55116296 0.62113613 0.26796243 -0.56437397 0.61877501\n\t\t -0.19255956 -0.57501996 0.6111961 -0.19417655 -0.58759993 0.6097911 0.50783455 -0.032737866 0.30744699\n\t\t 0.48964441 -0.057128459 0.34271801 -0.15219261 -0.805354 -0.20016278 -0.15219261 -0.805354 -0.20016278\n\t\t -0.15219261 -0.805354 -0.20016278 -0.37249458 -0.81317401 0.097559154 0.47636637 -0.072293758 0.36463702\n\t\t -0.42595959 0.45394605 0.276187 -0.26896358 -0.62428594 0.5271011 0.1094033 0.15255891 -1.15216494\n\t\t 0.16453645 -0.24352895 0.64839196 0.15468445 -0.31250393 0.61731511 0.90403628 -0.10826205 -0.60502601\n\t\t -0.44452757 -0.56625193 0.3253181 -0.16040255 -0.047806248 0.67304802 -0.5234856 -0.56873 -0.21474597\n\t\t -0.50390959 -0.59829301 -0.21474637 0.043434449 -0.87441194 0.54540414 0.043434449 -0.87441194 0.54540414\n\t\t 0.17882346 -0.59391797 0.63131702 -0.16190355 -0.050970942 0.66948813 -0.43674558 -0.43268096 0.3219651\n\t\t -0.48359257 -0.39567196 0.2761471 -0.16104855 -0.063194737 0.67239112 -0.40485165 -0.61786902 -0.30564487\n\t\t 0.92373228 -0.069140047 -0.54194701 0.92521244 -0.063739344 -0.53973305 -0.43681258 -0.13382995 0.42449611\n\t\t 0.098132446 -0.61996496 0.6929931 0.098132446 -0.61996496 0.6929931 0.10132147 -0.61689395 0.69225001\n\t\t 0.10132147 -0.61689395 0.69225001 -0.42433858 -0.43268397 0.32197213 -0.39564258 -0.45318693 0.34735411\n\t\t 0.72560644 0.17874499 -0.073356047 0.72499543 0.18916501 -0.13220605 -0.47736657 -0.11470196 0.38299012\n\t\t -0.44821158 -0.14147195 0.42185509 0.091052547 -0.61130792 0.70478296 0.09597005 -0.61577296 0.70042801\n\t\t 0.09597005 -0.61577296 0.70042801 -0.47093865 -0.39568797 0.27617112 0.90485632 -0.084386125 -0.496777\n\t\t 0.90111327 -0.09800034 -0.5028441 -0.78160655 0.39562196 -0.16434124 -0.77372056 0.438649 -0.15636954\n\t\t -0.77372056 0.438649 -0.15636954 0.7221694 0.16953899 -0.063356042 0.7221694 0.16953899 -0.063356042\n\t\t 0.72403741 0.17372401 -0.065413043 0.72403741 0.17372401 -0.065413043 -0.40014064 -0.43872201 -0.25723279\n\t\t -0.29107365 -0.59033298 -0.018963888 -0.26800463 -0.60548598 -0.018963888 0.52625841 -0.50247991 0.14905006\n\t\t 0.52625841 -0.50247991 0.14905006 -0.7023806 0.129355 -0.070163921 -0.7023806 0.129355 -0.070163921\n\t\t -0.7197746 0.12872101 -0.069239914 -0.7197746 0.12872101 -0.069239914 -0.30806458 -0.62491792 0.55263913\n\t\t -0.30806458 -0.62491792 0.55263913 -0.30889758 -0.62754393 0.54457814 -0.40787265 -0.45318693 0.34735209\n\t\t -0.3943257 0.66735393 -0.83993489 -0.3943257 0.66735393 -0.83993489 -0.40015069 0.66036391 -0.84163201\n\t\t 0.15204646 -0.30963695 0.61091101 0.14255345 -0.38207093 0.5716601 0.13911645 -0.38547295 0.57706499\n\t\t -0.89281958 0.19906093 -0.61464888 -0.88689858 0.19949593 -0.63183689 -0.88689858 0.19949593 -0.63183689\n\t\t -0.70452255 0.133707 -0.069856919 -0.8947196 0.11486097 -0.43082893 0.30686137 -0.540236 -0.07602495\n\t\t 0.30126438 -0.56726301 -0.076024942 -0.45111358 0.39531207 0.33028406 -0.45111358 0.39531207 0.33028406\n\t\t 0.38503543 -0.15956695 0.48031998 0.37043941 -0.18201895 0.48722297 0.26304135 -0.60548598 -0.088372931\n\t\t 0.2360144 -0.61108297 -0.088372737 0.26400042 -0.62428594 0.5271011 0.079500861 -0.60464096 0.70715612\n\t\t -0.76955956 0.11485894 -0.7746979 -0.60875756 0.016838133 0.1628741 -0.61220556 0.051189944 0.15008208\n\t\t -0.61220556 0.051189944 0.15008208 -0.30390957 -0.61364394 0.5575251 -0.30390957 -0.61364394 0.5575251\n\t\t -0.30938157 -0.61979795 0.55747908 -0.30938157 -0.61979795 0.55747908;\n\tsetAttr \".vt[11620:11785]\" -0.31182465 -0.540236 -0.04582189 -0.30622765 -0.56726301 -0.04582189\n\t\t 0.32746542 -0.24211794 0.504933 -0.72041661 0.16627701 -0.077805921 -0.72041661 0.16627701 -0.077805921\n\t\t -0.72291857 0.17187102 -0.085450917 0.28611037 -0.59033298 -0.076024942 -0.13003264 0.86450797 -0.48623207\n\t\t -0.0024816208 0.87478596 -0.49706101 0.12612543 -0.76772493 0.4436031 0.12612543 -0.76772493 0.4436031\n\t\t 0.043434542 -0.76772493 0.44360209 0.043434542 -0.76772493 0.44360209 0.25444442 -0.53435194 0.62356699\n\t\t -0.30622765 -0.51320899 -0.045821898 0.15440644 -0.061624616 0.6764341 0.15543945 -0.047806248 0.67304802\n\t\t 0.16650745 0.060130253 0.63023698 0.16305345 0.12124504 0.60869008 0.16991845 -0.068124846 0.66226012\n\t\t 0.27754843 -0.30164894 0.52226698 0.24701744 -0.33270195 0.53362209 0.24701744 -0.33270195 0.53362209\n\t\t 0.40544742 -0.13808295 0.46005201 0.39113241 -0.15063296 0.47697997 0.39113241 -0.15063296 0.47697997\n\t\t 0.17444645 -0.47546798 0.59968609 0.17444645 -0.47546798 0.59968609 0.17366745 -0.49818498 0.59474599\n\t\t 0.17366745 -0.49818498 0.59474599 -0.51239944 0.45119303 0.27944306 -0.49387965 0.47509807 0.285568\n\t\t -0.49387965 0.47509807 0.285568 0.26304135 -0.60548598 -0.076023936 0.2360144 -0.61108297 -0.076023936\n\t\t 0.15799448 -0.10637493 0.68068302 0.17151745 -0.49255794 0.59880012 -0.3882097 0.69104391 -0.81491303\n\t\t -0.5856936 -0.031069174 0.21755305 -0.58558255 -0.03464447 0.1978091 -0.58558255 -0.03464447 0.1978091\n\t\t 0.93176329 0.044321284 -0.51056206 0.6125204 0.42421991 -0.74060911 0.6872443 0.40231091 -0.55956209\n\t\t -0.59390157 -0.059843376 0.18811512 -0.53536046 -0.26779196 0.25941211 -0.53536046 -0.26779196 0.25941211\n\t\t 0.43463537 -0.43070203 -0.28215957 0.3951773 -0.43872201 -0.28215975 0.68489945 0.098749802 -0.11300854\n\t\t 0.6964224 0.11917 -0.056279033 -0.31745657 -0.60008192 0.55784613 -0.31745657 -0.60008192 0.55784613\n\t\t -0.32017058 -0.59535795 0.5531891 -0.32017058 -0.59535795 0.5531891 -0.49377063 -0.37552297 0.25085711\n\t\t -0.49377063 -0.37552297 0.25085711 -0.52189147 -0.26208496 0.27659512 -0.52189147 -0.26208496 0.27659512\n\t\t -0.52540648 0.42437506 0.27200004 -0.51851046 0.45262003 0.27998006 0.56789142 0.034688935 0.221021\n\t\t 0.56616241 0.026048228 0.22055799 0.19395038 -0.49817199 -0.10438784 0.20425245 -0.60726094 0.60543209\n\t\t 0.19499744 -0.59879696 0.60778999 -0.56901759 -0.57470292 0.15505111 0.56148344 0.018672928 0.219304\n\t\t 0.56148344 0.018672928 0.219304 -0.48065165 0.39275205 0.32137704 -0.48065165 0.39275205 0.32137704\n\t\t -0.48065165 0.39275205 0.32137704 -0.65348858 -0.30717701 -0.24346858 -0.6530506 -0.308671 -0.25118509\n\t\t -0.6530506 -0.308671 -0.25118509 0.19201346 -0.061603844 0.66274202 0.19073544 -0.10635193 0.6687631\n\t\t 0.3450433 0.11545892 -1.015362024 0.32465029 0.10624291 -1.028205991 -0.71842057 0.16200902 -0.07584092\n\t\t 0.49554843 0.33882707 0.28398699 0.46702036 0.33510107 0.27911699 -0.46506163 0.38778305 0.31636506\n\t\t -0.46506163 0.38778305 0.31636506 -0.46506163 0.38778305 0.31636506 -0.72286761 0.132607 -0.068958908\n\t\t -0.65423459 -0.303882 -0.23674458 -0.65423459 -0.303882 -0.23674458 -0.65423459 -0.303882 -0.23674458\n\t\t 0.57312042 0.023064733 0.222422 0.56682545 0.013142824 0.22073498 0.019569786 -0.75865299 -0.084590904\n\t\t 0.019569786 -0.75865299 -0.084590904 0.019569887 -0.68027198 -0.084590912 0.019569887 -0.68027198 -0.084590912\n\t\t 0.17002144 -0.068483546 0.66562909 0.16654645 0.060378358 0.63351709 0.5844714 -0.403144 -0.026023984\n\t\t 0.5844714 -0.403144 -0.026023984 0.57300043 -0.42369097 -0.00022998452 0.18122639 -0.517542 -0.10438783\n\t\t 0.18672945 -0.16345492 0.66965312 0.18100744 -0.21026795 0.66426712 -0.46203458 0.39198405 0.33126706\n\t\t -0.46203458 0.39198405 0.33126706 -0.29107365 -0.49014002 -0.0089408904 0.37628829 0.15460889 -1.0086669922\n\t\t 0.36313924 0.13240789 -1.0085150003 -0.30120459 -0.62111193 0.54437411 -0.30121258 -0.62149996 0.54198813\n\t\t 0.24042545 -0.60837495 0.59907812 0.22842444 -0.61235696 0.60079712 0.3824113 0.17855291 -1.0157938\n\t\t -0.1840876 -0.59712499 -0.070439897 -0.16688061 -0.57092798 -0.070439905 -0.6728366 -0.30556804 -0.23441949\n\t\t -0.6728366 -0.30556804 -0.23441949 -0.67194957 -0.30932504 -0.24145196 -0.57724458 -0.59707594 0.15756616\n\t\t 0.19860245 -0.16439193 0.66523808 0.19170944 -0.21763495 0.65794897 -0.72081357 0.33555496 0.11161307\n\t\t -0.72940058 0.29043198 0.099208057 -0.71238559 0.380629 0.12393704 0.51013345 0.40869105 0.30385193\n\t\t 0.5240764 0.34255302 0.28885698 0.5240764 0.34255302 0.28885698 0.5240764 0.34255302 0.28885698\n\t\t -0.5788886 -0.62023991 0.15691516 -0.16463362 -0.540236 -0.015823901 -0.73678058 0.23854803 0.086033076\n\t\t -0.31234458 -0.63018394 0.51940012 -0.31234458 -0.63018394 0.51940012 -0.30124658 -0.62317693 0.52194613\n\t\t -0.30124658 -0.62317693 0.52194613 -0.45155859 0.44556504 0.30107406 -0.44570059 0.43485403 0.32991499\n\t\t -0.44570059 0.43485403 0.32991499 -0.44570059 0.43485403 0.32991499 0.54015839 0.34437299 0.24498394\n\t\t 0.54015839 0.34437299 0.24498394 0.53117752 0.34101003 0.27717593 0.6196264 -0.41600999 -0.036485992\n\t\t 0.52044356 0.42437506 0.27199993 -0.30622765 -0.56726301 -0.018963888 0.5612843 0.4335379 -0.83259112\n\t\t -0.57840168 0.62835091 -0.54991591 -0.57840168 0.62835091 -0.54991591 -0.56097656 0.61472791 -0.53373802\n\t\t 0.65904343 -0.08856082 -0.32544702 0.65904343 -0.08856082 -0.32544702 0.65904343 -0.08856082 -0.32544702\n\t\t 0.65205044 -0.18866701 -0.2837472 -0.26814458 -0.60062695 0.61635911 -0.26359457 -0.60665697 0.61660713\n\t\t -0.19088061 -0.49014002 -0.018963903 0.17751645 -0.22530094 0.6616661 0.17301746 -0.23330393 0.661026\n\t\t 0.17301746 -0.23330393 0.661026 0.16032147 -0.16344193 0.679268 -0.34864965 -0.53398299 -0.3056449\n\t\t -0.35571271 -0.56873 -0.3056449 0.34431937 -0.49657202 -0.20577165 0.36539537 -0.46474302 -0.20577165\n\t\t -0.39501277 0.45363891 -1.047621965 -0.5120576 0.44648194 -0.92435801;\n\tsetAttr \".vt[11786:11951]\" 0.67219645 -0.18963002 -0.28151771 0.67764241 -0.089060619 -0.32370704\n\t\t 0.67764241 -0.089060619 -0.32370704 -0.29024369 0.45659184 -1.12509394 -0.29024369 0.45659184 -1.12509394\n\t\t -0.35571271 -0.49923599 -0.3056449 -0.26839358 -0.62810194 0.42600513 -0.22652255 -0.64502597 0.45985913\n\t\t -0.36323163 -0.53398299 -0.32670689 -0.36916164 -0.504807 -0.32670689 -0.87588257 -0.17592104 -0.61119592\n\t\t -0.87588257 -0.17592104 -0.61119592 -0.87092972 -0.17598605 -0.62483191 -0.87092972 -0.17598605 -0.62483191\n\t\t 0.23820946 -0.52776593 0.62696302 -0.74250358 0.23790501 0.078383088 -0.50390959 -0.59829301 -0.24991968\n\t\t -0.5234856 -0.56873 -0.24991989 -0.35219157 -0.43120295 0.3630541 -0.39122957 -0.43360293 0.35486913\n\t\t -0.39122957 -0.43360293 0.35486913 -0.39122957 -0.43360293 0.35486913 0.33671537 -0.53398299 -0.21059495\n\t\t 0.34431937 -0.49657202 -0.21059476 -0.39805564 -0.43791997 0.35225213 -0.39805564 -0.43791997 0.35225213\n\t\t 0.63103741 -0.407884 -0.11168718 0.62619543 -0.42638999 -0.098222487 0.39722535 -0.44366604 -0.20577197\n\t\t 0.6414814 -0.40248001 -0.085003987 0.32318041 -0.57296795 0.51106411 0.32059842 -0.59262693 0.50975209\n\t\t -0.55156171 -0.76133907 -0.56264186 -0.42626259 -0.12469395 0.4404251 -0.41041058 -0.13808295 0.46005201\n\t\t -0.48132965 -0.072293758 0.36463714 -0.46941063 -0.085815966 0.38417011 0.41937643 -0.43268397 0.32197201\n\t\t 0.39067942 -0.45318693 0.34735405 0.50434554 0.43684107 0.30989599 -0.39609557 -0.15063296 0.47697997\n\t\t -0.39609557 -0.15063296 0.47697997 -0.46714965 0.45053506 0.306086 -0.46129063 0.43982303 0.33492798\n\t\t -0.46129063 0.43982303 0.33492798 -0.46129063 0.43982303 0.33492798 -0.43959865 -0.63726401 -0.25723255\n\t\t -0.40014064 -0.62924403 -0.25723255 -0.77164358 0.36245596 -0.16114344 -0.77164358 0.36245596 -0.16114344\n\t\t -0.7653296 0.368554 -0.19802304 -0.7653296 0.368554 -0.19802304 0.14803545 -0.21763495 0.67384398\n\t\t -0.38999858 -0.15956695 0.48031998 -0.19090955 -0.23749694 0.65443802 -0.19090955 -0.23749694 0.65443802\n\t\t -0.18597054 -0.21026795 0.66426712 -0.18247955 -0.22530094 0.6616661 -0.33435264 -0.42843896 0.38064712\n\t\t -0.37155965 -0.80821902 0.11091614 -0.37155965 -0.80821902 0.11091614 -0.37357864 -0.79791898 0.11364415\n\t\t 0.22064045 -0.52722496 0.63005012 0.40290937 -0.45318693 0.34735203 0.36910436 -0.47551495 0.37499303\n\t\t -0.54175055 0.46710801 0.21394104 -0.61568856 0.447272 0.17841005 -0.19667254 -0.21763495 0.65794897\n\t\t -0.31391957 -0.59241992 0.55302012 -0.31391957 -0.59241992 0.55302012 -0.31182459 -0.59694797 0.55786109\n\t\t -0.31182459 -0.59694797 0.55786109 -0.17798056 -0.23330393 0.661026 -0.17798056 -0.23330393 0.661026\n\t\t -0.31464559 -0.59090292 0.54476911 0.26637623 0.59470594 -1.059859157 0.25933024 0.58931696 -1.067964077\n\t\t 0.30737942 -0.53903693 0.52755111 0.31180641 -0.57348591 0.52370501 -0.22307755 -0.66505694 0.46265709\n\t\t -0.43678558 0.42184407 0.32327199 -0.43678558 0.42184407 0.32327199 -0.43678558 0.42184407 0.32327199\n\t\t -0.44264358 0.43255502 0.29443106 0.46272141 0.46696705 0.31248894 -0.20356555 -0.16439193 0.66523808\n\t\t -0.66945958 -0.25768802 -0.31333289 -0.67199057 -0.31102604 -0.26931268 -0.67199057 -0.31102604 -0.26931268\n\t\t -0.5477767 -0.25216603 -0.5351969 -0.5477767 -0.25216603 -0.5351969 -0.5477767 -0.25216603 -0.5351969\n\t\t 0.93830228 0.037617758 -0.6162051 0.93830228 0.037617758 -0.6162051 0.93830228 0.037617758 -0.6162051\n\t\t 0.59922642 -0.012523666 0.171996 0.6037944 0.016838133 0.16287398 0.18555637 -0.052905932 -0.500018\n\t\t 0.30952743 -0.59083992 0.52254701 0.30952743 -0.59083992 0.52254701 0.16562437 -0.081578732 -0.500018\n\t\t -0.76727957 0.39180899 -0.15607384 0.28975242 -0.50745094 0.52270198 0.30559242 -0.53811294 0.51722097\n\t\t -0.26800463 -0.47498602 -0.0089409053 0.16191739 -0.50954401 -0.051405936 0.92703629 0.039751127 -0.6134311\n\t\t 0.58893842 -0.059843376 0.188115 0.53039753 -0.26779196 0.25941199 0.53039753 -0.26779196 0.25941199\n\t\t 0.19205037 -0.059750825 -0.51019895 0.93714428 0.033102661 -0.61693913 0.93593729 0.027971461 -0.61650312\n\t\t -0.37534457 -0.48736495 0.36952513 -0.34588465 -0.50588292 0.39245713 -0.37540257 -0.18201895 0.48722309\n\t\t -0.53883457 -0.65546292 0.13461813 -0.37528864 -0.59829301 -0.3056449 0.23651946 -0.53561991 0.62678301\n\t\t -0.022414651 0.21690206 0.589522 -0.022414651 0.21690206 0.589522 -0.022414651 0.21690206 0.589522\n\t\t -0.022414651 0.21690206 0.589522 -0.007464922 0.21683307 0.5901981 0.50451756 0.47328603 0.277224\n\t\t 0.49439543 0.48213905 0.27960098 0.49439543 0.48213905 0.27960098 -0.0024815258 0.21687905 0.59238714\n\t\t -0.0024815258 0.21687905 0.59238714 -0.0024815258 0.21687905 0.59238714 -0.0024815258 0.21687905 0.59238714\n\t\t -0.0024815258 0.21687905 0.59238714 -0.084463932 -0.60464096 0.70715612 -0.064063638 -0.59779495 0.71033812\n\t\t -0.017911239 -0.82948697 0.77666509 -0.096015535 -0.61130792 0.70478308 -0.3554107 0.1649019 -1.011731029\n\t\t -0.34663776 0.15008889 -1.01162982 0.5900954 0.019556433 0.179205 0.59511745 0.051189944 0.16841993\n\t\t 0.59511745 0.051189944 0.16841993 0.59511745 0.051189944 0.16841993 0.62701941 -0.436573 -0.061291978\n\t\t -0.20762254 -0.10732293 0.66449702 -0.074939035 -0.70223391 0.80418611 -0.074939035 -0.70223391 0.80418611\n\t\t -0.12304155 0.21835206 0.57824099 -0.075194836 -0.82948697 0.77177709 -0.075194836 -0.82948697 0.77177709\n\t\t 0.18591839 -0.49014002 -0.045821942 0.17076439 -0.51320899 -0.045821935 -0.19169255 -0.16345492 0.66965312\n\t\t 0.18942346 -0.047800943 0.66067809 -0.3945877 0.71797699 -0.30288601 -0.42399764 0.68339801 -0.24965811\n\t\t -0.10093315 -0.61577296 0.70042813 -0.10093315 -0.61577296 0.70042813 -0.10340655 -0.61115593 0.70011508\n\t\t -0.10340655 -0.61115593 0.70011508 -0.42710963 0.68592203 -0.250328 -0.39749864 0.72070599 -0.30389601\n\t\t -0.0024815062 -0.69080585 0.81278211 -0.15219261 -0.69896799 -0.2001628 -0.15219261 -0.69896799 -0.2001628\n\t\t -0.14520161 -0.69728798 -0.19498986 -0.14520161 -0.69728798 -0.19498986;\n\tsetAttr \".vt[11952:12117]\" -0.14520161 -0.69728798 -0.19498986 0.60724241 0.051189944 0.16841993\n\t\t 0.60724241 0.051189944 0.16841993 -0.51745749 -0.25357497 0.30249211 -0.51745749 -0.25357497 0.30249211\n\t\t -0.58166659 -0.029589474 0.22622311 -0.58166659 -0.029589474 0.22622311 0.29153842 -0.50837493 0.53303099\n\t\t -0.19088061 -0.59033298 -0.088372894 -0.17572761 -0.56726301 -0.088373102 0.17011645 -0.018123642 0.65918398\n\t\t 0.17011645 -0.018123642 0.65918398 0.18670845 -0.02382344 0.6549421 0.18670845 -0.02382344 0.6549421\n\t\t 0.46870235 0.48688602 0.28103501 -0.1171727 0.16050993 -1.15469193 -0.1177427 0.16615193 -1.15684199\n\t\t 0.61483043 -0.46517003 -0.057003975 -0.19569854 -0.10635193 0.6687631 -0.32383564 -0.66749793 0.38462913\n\t\t -0.22082455 -0.61196995 0.6030041 -0.23338754 -0.61235696 0.60079712 0.24731334 0.82692999 -0.59018606\n\t\t -0.31465757 -0.59089893 0.54193813 0.30126438 -0.51320899 -0.04582195 0.30686137 -0.540236 -0.04582195\n\t\t 0.9051314 -0.10360905 -0.60542202 -0.6529246 -0.13430306 -0.66572088 0.3393743 -0.57344103 -0.28215957\n\t\t 0.33135435 -0.53398299 -0.28215957 0.2237073 0.4043889 -1.087767005 0.27481624 0.44579285 -1.12165117\n\t\t 0.27481624 0.44579285 -1.12165117 0.26619342 -0.48519796 0.53948611 0.43679836 0.75433892 -0.47874707\n\t\t 0.2360144 -0.46938902 -0.018963948 0.26304135 -0.47498602 -0.018963948 0.38521424 0.44327295 -1.041515112\n\t\t 0.5005163 0.43635792 -0.91968411 -0.17572761 -0.51320899 -0.088373102 -0.19088061 -0.49014002 -0.088372707\n\t\t 0.42448035 -0.46118295 0.34417498 0.1316743 0.17744993 -1.15669799 -0.086891353 -0.59855992 0.70674109\n\t\t -0.065285549 -0.59097093 0.71018308 0.2608943 0.45573789 -1.12756705 0.2608943 0.45573789 -1.12756705\n\t\t 0.2031953 0.41657192 -1.09546423 0.49511242 0.45306003 0.31270394 -0.098402537 -0.60596097 0.70432514\n\t\t -0.44602564 -0.83502698 0.068232149 -0.44602564 -0.83502698 0.068232149 -0.47700965 -0.44366604 -0.21059468\n\t\t 0.35074931 -0.49923599 -0.28947294 0.37032536 -0.46967202 -0.28947294 0.17912538 -0.483347 -0.051405944\n\t\t 0.30484241 -0.51240891 0.42076898 0.33966941 -0.49403197 0.39792603 0.36160436 -0.60701299 -0.28215975\n\t\t 0.30126438 -0.51320899 -0.018963948 0.42099643 0.45394605 0.276187 0.41169235 0.41944605 0.27088898\n\t\t 0.1201263 0.17533992 -1.15873384 0.12579431 0.17747889 -1.15818298 0.21311241 -0.53379494 0.13511306\n\t\t 0.37900841 -0.57767892 0.28856704 0.56186831 0.42957592 -0.83333415 -0.19088061 -0.49014002 -0.076023906\n\t\t -0.40485165 -0.45009601 -0.21474639 -0.39364159 0.33506203 0.38561505 -0.45101058 0.38681805 0.28941706\n\t\t -0.0014351911 -0.78792 -0.090156697 -0.0014351911 -0.78792 -0.090156697 0.046023048 -0.36922893 0.62539399\n\t\t 0.032802459 -0.50873893 0.70017713 -0.12921864 0.86088997 -0.48331806 -0.0024816208 0.87111801 -0.49399707\n\t\t -0.12981965 0.86084002 -0.48987105 -0.0024816212 0.87092501 -0.50045502 -0.026824754 -0.90097392 0.54540414\n\t\t -0.0024815297 -0.90097296 0.54540414 0.12506936 0.86450797 -0.48623207 -0.001435111 -0.64493501 -0.090156712\n\t\t -0.001435111 -0.64493501 -0.090156712 0.012948165 -0.82948697 0.77666509 -0.0024815095 -0.82948697 0.77666509\n\t\t 0.12485637 0.86084002 -0.48987105 -0.0024815253 0.21823506 0.59485608 -0.12369255 0.21976705 0.58321112\n\t\t 0.012948067 -0.69080585 0.81278211 -0.04881455 -0.42581093 0.62495899 0.030115057 -0.57347995 0.70303708\n\t\t -0.002481516 -0.57268095 0.70408612 0.02966236 -0.58681995 0.71324712 -0.0024815151 -0.58627594 0.71425712\n\t\t 0.029513862 -0.59386492 0.71325713 -0.0024815151 -0.59334093 0.71425408 0.021861646 -0.90097392 0.54540414\n\t\t -0.034476843 -0.59386492 0.71325713 -0.034625433 -0.58681995 0.71324712 -0.035078034 -0.57347995 0.70303708\n\t\t -0.36707759 -0.74068499 0.1139861 0.48257735 -0.41996396 0.29256898 -0.37528864 -0.46967202 -0.24991989\n\t\t -0.40485165 -0.45009601 -0.24991989 0.21601442 -0.55574691 0.47474009 0.21601442 -0.55574691 0.47474009\n\t\t -0.36550465 -0.75056702 0.10273212 0.68774444 0.39832592 -0.5602361 0.7320804 0.37947696 -0.41412207\n\t\t 0.44301835 0.45068204 0.310875 -0.23792554 -0.33454695 0.54564011 -0.28251159 -0.30164894 0.5222671\n\t\t -0.66233855 -0.32339603 -0.22307816 -0.66233855 -0.32339603 -0.22307816 0.13903131 0.1551479 -1.14579296\n\t\t 0.43178242 -0.43268096 0.32196498 0.47862941 -0.39567196 0.27614704 -0.18527456 -0.23749694 0.63895613\n\t\t 0.39517629 -0.62924403 -0.28215957 -0.33242857 -0.24211794 0.50493312 -0.56950158 0.56347299 0.044468045\n\t\t -0.56950158 0.56347299 0.044468045 -0.10309555 -0.61996496 0.6929931 -0.10309555 -0.61996496 0.6929931\n\t\t -0.32757771 0.78243798 -0.39240205 -0.18306164 0.85147494 -0.47217 -0.73916757 0.17231999 -0.08489392\n\t\t -0.24097762 -0.45978299 -0.070439905 -0.29068759 -0.63717091 0.52252012 0.2568683 0.59252393 -1.066949129\n\t\t 0.25291625 0.58400494 -1.074513197 -0.72713256 0.16953899 -0.063355915 -0.72713256 0.16953899 -0.063355915\n\t\t -0.44077763 -0.82248598 0.061140135 -0.44028065 -0.825032 0.060469136 -0.44028065 -0.825032 0.060469136\n\t\t -0.47905764 -0.43872201 -0.28215969 -0.30038258 -0.64603692 0.52005112 0.37032536 -0.46967202 -0.24991995\n\t\t 0.19109444 -0.66856897 0.53607613 0.19652145 -0.45713994 0.5433231 0.15929045 -0.46949297 0.54865509\n\t\t -0.44077763 -0.77438802 0.061140135 -0.10309555 -0.61996496 0.6870901 -0.7305696 0.17874499 -0.073355921\n\t\t -0.7053926 0.41794497 0.13152906 -0.7053926 0.41794497 0.13152906 0.1125763 0.16280891 -1.14946985\n\t\t -0.56955957 0.562675 0.055988029 -0.56955957 0.562675 0.055988029 -0.56895357 0.55905002 0.053303018\n\t\t -0.56895357 0.55905002 0.053303018 -0.43959865 -0.43070203 -0.28215951 0.7521134 0.37014997 -0.33499008\n\t\t 0.16191739 -0.57092798 -0.070439935 -0.64615458 0.53683299 0.0048660487 -0.31449059 -0.59083992 0.52254713\n\t\t -0.31449059 -0.59083992 0.52254713 -0.57027656 0.56702101 0.046960056 -0.57027656 0.56702101 0.046960056\n\t\t -0.068857849 -0.57958394 0.69954711 -0.10335354 -0.81324095 0.6911931 -0.29107365 -0.59033298 -0.07602489\n\t\t -0.26800463 -0.60548598 -0.076023892 0.46730837 0.47938102 0.28649998;\n\tsetAttr \".vt[12118:12283]\" 0.48891637 0.47509807 0.285568 0.48891637 0.47509807 0.285568\n\t\t -0.20327055 -0.45806295 0.55365109 0.26924843 -0.47553694 0.41811913 0.65047342 -0.27472004 -0.32991296\n\t\t -0.34463257 -0.49403197 0.39792609 -0.30980557 -0.51240891 0.4207691 -0.37406763 -0.47551495 0.37499309\n\t\t -0.16324955 -0.33540595 0.61453199 0.1130863 0.1678509 -1.15139103 0.1390363 0.1626799 -1.14278793\n\t\t 0.15556039 -0.540236 -0.070439935 0.14274745 -0.48033595 0.550547 0.27044323 0.60146391 -1.052275181\n\t\t 0.2637893 0.59814095 -1.05887711 -0.18151055 -0.47488397 0.55931509 -0.17863055 -0.49818498 0.55764109\n\t\t -0.17863055 -0.49818498 0.55764109 -0.7177546 0.38352197 0.11662805 0.20898739 -0.60548598 -0.045821935\n\t\t -0.17209955 -0.48214597 0.5568881 -0.17863055 -0.49818498 0.59474611 -0.17863055 -0.49818498 0.59474611\n\t\t -0.17940955 -0.47546798 0.59968609 -0.17940955 -0.47546798 0.59968609 -0.22097655 -0.55574691 0.47474009\n\t\t -0.22097655 -0.55574691 0.47474009 -0.43959865 -0.63190299 -0.21059488 -0.24097762 -0.61108297 -0.076023892\n\t\t 0.39517736 -0.62924403 -0.25723267 -0.63600057 -0.407884 -0.11168707 -0.24097762 -0.46938902 -0.045821905\n\t\t -0.2139506 -0.47498602 -0.045821905 -0.6460976 -0.29324603 -0.36152589 -0.64027756 -0.23686203 -0.41999394\n\t\t 0.63248742 -0.39408901 -0.12177128 -0.43959865 -0.63190299 -0.20577137 0.6702354 -0.067668632 -0.36164501\n\t\t -0.45350263 -0.35877597 0.28124312 -0.48815858 -0.36091396 0.27701411 -0.48815858 -0.36091396 0.27701411\n\t\t -0.22752264 -0.81936502 -0.25590426 -0.22752264 -0.81936502 -0.25590426 -0.15363355 -0.31474793 0.61965299\n\t\t -0.14411555 -0.38732094 0.5802421 0.50163239 -0.37552398 0.25085598 0.50163239 -0.37552398 0.25085598\n\t\t 0.13668345 -0.65516591 0.54668313 -0.26938358 -0.67045397 0.52322811 -0.30098477 0.17540793 -1.088819981\n\t\t -0.31080168 0.19198392 -1.088932991 0.51692855 -0.26208496 0.276595 0.51692855 -0.26208496 0.276595\n\t\t 0.31001943 -0.57256293 0.513376 0.30774143 -0.58991593 0.512218 -0.15015055 -0.47103995 0.56906909\n\t\t 0.37522042 -0.43459296 0.36993605 0.37032536 -0.59829301 -0.24991974 -0.31773359 0.29527003 0.45774513\n\t\t -0.16326855 0.22265108 0.56829298 0.1155753 0.17251392 -1.1526618 -0.12578355 -0.45674893 0.57487911\n\t\t -0.20960654 -0.55574691 0.47473812 -0.75502157 0.30638599 -0.037034921 0.26343042 -0.62810194 0.42600501\n\t\t 0.22155945 -0.64502597 0.45985901 0.54278439 0.34767199 0.221753 -0.27166963 -0.61433297 -0.051405892\n\t\t -0.21372961 -0.81604898 -0.24569766 -0.21372961 -0.81604898 -0.24569766 -0.43816257 -0.44335398 0.31447309\n\t\t 0.61307633 0.42024994 -0.74132711 -0.50659555 -0.37552398 0.2508561 -0.50659555 -0.37552398 0.2508561\n\t\t 0.41558036 0.41213107 0.275756 -0.29641271 0.15752991 -1.083498001 0.14756344 -0.46637297 0.60881102\n\t\t -0.47434565 -0.61786997 -0.21474637 -0.67141157 -0.31113601 -0.24956216 -0.67152059 -0.31151599 -0.25871366\n\t\t 0.37957829 0.59145093 -0.97423512 0.63008744 0.051500842 0.14217699 0.61065441 0.051500842 0.145583\n\t\t -0.24097762 -0.62068999 -0.07043989 -0.2102856 -0.61433297 -0.070439897 0.29649636 -0.61473793 0.39927006\n\t\t -0.15946555 -0.41497993 0.61223209 -0.40920064 -0.46474296 0.34137714 0.29290336 -0.483347 -0.051405951\n\t\t 0.31011137 -0.50954401 -0.051405951 -0.74618459 0.36560601 -0.033489928 0.42550537 0.45066702 0.274885\n\t\t 0.52915239 0.345222 0.22453293 0.52915239 0.345222 0.22453293 -0.1840886 -0.59712601 -0.051405907\n\t\t 0.15828645 -0.33540595 0.61453199 0.23296244 -0.33454695 0.54563999 -0.16688061 -0.57092899 -0.051405907\n\t\t -0.45258364 -0.82914102 0.048248142 -0.17648055 -0.49255794 0.59880012 -0.29786664 -0.59712499 -0.051405892\n\t\t 0.14769742 -0.69061202 0.071073085 -0.45425364 -0.82839102 0.050129145 -0.45425364 -0.82839102 0.050129145\n\t\t -0.12666857 -0.63981795 0.5399251 -0.16293155 -0.41487494 0.5718801 0.46938238 -0.61786902 -0.24991974\n\t\t 0.25657442 -0.65779996 0.51499611 -0.59003657 -0.012076974 0.1899901 -0.59003657 -0.012076974 0.1899901\n\t\t -0.59505856 0.019556433 0.17920512 -0.32853976 0.21306391 -1.059932947 -0.72976559 0.18834402 -0.13133182\n\t\t 0.66295743 -0.17988501 -0.2628054 0.7687574 0.43819499 -0.15636969 0.7687574 0.43819499 -0.15636969\n\t\t -0.21828361 -0.485448 -0.1043878 -0.20921555 -0.60726094 0.60543209 0.23490845 -0.32900494 0.53159201\n\t\t 0.15450245 -0.41497993 0.61223197 0.16028945 -0.35130695 0.62496102 -0.26800463 -0.47498703 -0.088372901\n\t\t 0.1365463 0.15801691 -1.14151692 -0.34152976 0.21308093 -1.04871583 -0.14807159 -0.76340896 0.28870711\n\t\t 0.51482743 -0.37552497 0.25085598 0.51482743 -0.37552497 0.25085598 0.4985404 0.46594703 0.28326192\n\t\t 0.26670635 -0.46613902 -0.051405951 -0.16104054 0.21949606 0.572806 -0.16104054 0.21949606 0.572806\n\t\t -0.16104054 0.21949606 0.572806 -0.17750755 0.062938645 0.63058996 -0.18091854 -0.065928236 0.66253901\n\t\t 0.54113144 -0.26208597 0.276595 0.30969441 -0.59089893 0.54193813 0.65896744 -0.17018701 -0.23894991\n\t\t 0.66473341 -0.046399623 -0.28908503 -0.32143164 -0.540236 -0.07043989 -0.31507465 -0.57092798 -0.07043989\n\t\t -0.38885364 -0.82128501 0.11053815 -0.38885364 -0.82128501 0.11053815 -0.38279763 -0.82470298 0.10235414\n\t\t 0.66643745 0.017329782 -0.31376201 0.50904453 0.45641905 0.27274001 0.51526654 0.43016702 0.265486\n\t\t -0.57427859 -0.036508471 0.19733104 -0.57427859 -0.036508471 0.19733104 0.41061342 0.41514903 0.27744892\n\t\t 0.57670343 -0.029589474 0.22622299 0.57670343 -0.029589474 0.22622299 0.58073044 -0.031069174 0.21755299\n\t\t -0.53382146 -0.26208597 0.27659512 -0.53382146 -0.26208597 0.27659512 0.5348224 0.348692 0.24582899\n\t\t 0.5348224 0.348692 0.24582899 -0.59338057 -0.049746469 0.20311511 0.23728044 -0.45926395 0.54680508\n\t\t -0.16783056 0.22002204 0.57279211 -0.16783056 0.22002204 0.57279211 -0.16783056 0.22002204 0.57279211\n\t\t -0.61220556 0.051189944 0.16842005 -0.61220556 0.051189944 0.16842005 -0.19996054 -0.59879696 0.60779011\n\t\t -0.60008061 0.051189944 0.16842005 -0.60008061 0.051189944 0.16842005;\n\tsetAttr \".vt[12284:12449]\" -0.60008061 0.051189944 0.16842005 0.41620141 0.41616702 0.26958698\n\t\t -0.6858536 0.34053797 0.090609044 -0.6928156 0.30227101 0.079786062 -0.16425355 -0.46949297 0.54865509\n\t\t -0.14771055 -0.48033595 0.55054712 -0.39060864 0.34016806 0.38201404 0.67411232 0.51999491 -0.51380205\n\t\t 0.46798843 -0.41375896 0.29853407 -0.18853055 -0.05276984 0.66025102 -0.17405055 0.12363108 0.60916698\n\t\t -0.30622765 -0.56726301 -0.07602489 -0.65356356 0.19373401 0.071016043 -0.63856858 0.172251 0.071965039\n\t\t -0.63856858 0.172251 0.071965039 0.61965841 -0.44725001 -0.083067983 0.61965841 -0.44725001 -0.083067983\n\t\t 0.12170544 -0.63981795 0.53992498 -0.43879065 -0.82582599 0.058455139 -0.19530556 -0.56257397 0.61183411\n\t\t -0.20208354 -0.55176395 0.61162812 -0.34928265 -0.57139403 -0.2057716 -0.34167865 -0.53398299 -0.2057716\n\t\t 0.50320441 0.46859902 0.28426293 0.11120643 -0.62327296 0.5432201 0.28999835 -0.59421998 -0.015823945\n\t\t -0.62160259 0.43031299 0.13439506 -0.44789365 0.39188707 0.28653705 0.16217245 -0.10594393 0.67529708\n\t\t 0.16452348 -0.16299894 0.67395109 0.17076439 -0.56726301 -0.076024935 0.16466445 -0.20839094 0.66693312\n\t\t 0.16484545 -0.22174793 0.66355801 -0.16948652 -0.16299894 0.67395109 -0.16713555 -0.10594393 0.67529708\n\t\t -0.21372961 -0.83844501 -0.24569789 -0.21372961 -0.83844501 -0.24569789 -0.18506455 -0.16301695 0.66827708\n\t\t -0.16837555 -0.75532293 0.59453309 -0.2102856 -0.46613902 -0.070439905 -0.54164958 0.0081174523 0.24488711\n\t\t -0.16962755 -0.20839094 0.66693312 0.26513836 -0.61054897 -0.012080938 0.14453346 -0.48125994 0.56087601\n\t\t 0.51354754 0.45262003 0.27998 0.16603845 -0.22750694 0.66161501 0.16603845 -0.22750694 0.66161501\n\t\t -0.72931957 0.19452699 -0.025495917 0.16713645 -0.48214597 0.55688798 0.15253346 -0.49171793 0.55855709\n\t\t 0.64738941 0.052336231 0.092682004 0.12843744 -0.63391393 0.679811 0.12868045 -0.57722497 0.68178409\n\t\t 0.67488641 0.51615995 -0.51493406 0.59382844 0.34784901 0.164294 -0.71488661 0.123215 -0.075021923\n\t\t 0.56547642 0.33093601 0.17784092 -0.54786658 0.0098098069 0.23202804 -0.65191758 -0.34963 -0.30305886\n\t\t 0.098390467 -0.81324095 0.6911931 0.31816542 -0.53394192 0.51542109 0.20689039 -0.46992403 -0.012080953\n\t\t 0.5771634 0.430179 0.18852794 0.5771634 0.430179 0.18852794 -0.65107358 0.050566509 0.012057081\n\t\t -0.65107358 0.050566509 0.012057081 0.51484942 -0.49503493 0.14246505 0.49746236 -0.49290794 0.12946704\n\t\t 0.6391654 0.051500842 0.134644 0.6391654 0.051500842 0.134644 -0.69588655 0.10838099 -0.10941352\n\t\t -0.75719059 0.30743396 -0.046888925 -0.56497157 0.0098059773 0.19507611 -0.36656862 -0.607014 -0.25723279\n\t\t -0.34433764 -0.57344198 -0.25723261 0.10126045 -0.61224496 0.69235396 0.52495241 -0.49657202 -0.20577148\n\t\t 0.18203039 -0.48625302 -0.012080953 0.31774843 -0.59381497 0.545205 -0.38056958 -0.76806098 0.10847113\n\t\t 0.09852545 -0.60423595 0.69310111 0.30021942 -0.49920595 0.52163011 0.43463537 -0.43606299 -0.20577146\n\t\t 0.47204638 -0.44366604 -0.20577167 0.51153845 0.34638596 0.24445498 0.48825443 0.34407997 0.24308094\n\t\t 0.47204638 -0.44366604 -0.21059477 -0.15964755 -0.31250393 0.61731511 -0.15013754 -0.38508293 0.57801199\n\t\t 0.16570239 -0.51111197 -0.012080938 -0.39087158 -0.76027697 0.11326614 -0.39087158 -0.81112802 0.11326614\n\t\t 0.50387543 -0.46474302 -0.20577167 0.92042643 0.11656494 -0.63670212 -0.3873747 0.17855291 -1.0157938\n\t\t -0.38557571 0.2007349 -1.02885294 -0.24097762 -0.46389204 -0.015823901 -0.21185361 -0.46992403 -0.015823901\n\t\t -0.68016559 0.10150202 0.0037970841 -0.15056755 -0.64522892 0.54602909 -0.64017659 0.52898699 0.010724053\n\t\t -0.7037586 0.48574996 -0.020126954 -0.7037586 0.48574996 -0.020126954 0.75098544 0.42725998 -0.34137106\n\t\t 0.1596704 -0.540236 -0.015823931 0.53650242 0.34993196 0.23694098 0.53650242 0.34993196 0.23694098\n\t\t 0.58704442 -0.27393597 0.198201 0.58988941 -0.25902796 0.19727001 0.47776031 0.64259297 -0.75764716\n\t\t 0.50650954 -0.38277796 0.26010004 0.1596704 -0.54023701 -0.012080938 -0.68525857 -0.069231734 -0.36063993\n\t\t -0.68553257 -0.071057424 -0.36756688 -0.68553257 -0.071057424 -0.36756688 -0.65089458 0.054891512 0.019350082\n\t\t 0.62030441 0.051189825 0.150078 0.62030441 0.051189825 0.150078 0.56931543 -0.036508471 0.19733098\n\t\t 0.56931543 -0.036508471 0.19733098 0.57211542 -0.024255574 0.19204399 0.64427042 -0.42258099 -0.16891408\n\t\t -0.51262957 -0.60701299 -0.25723255 -0.47905764 -0.62924403 -0.25723255 0.16570239 -0.56936097 -0.012080938\n\t\t 0.54672641 -0.018690065 0.243974 -0.38625059 -0.14979395 0.4749071 0.31902841 -0.59383994 0.54017401\n\t\t -0.17488155 -0.068124846 0.66226012 0.5284754 -0.54272991 0.13982004 0.5284754 -0.54272991 0.13982004\n\t\t 0.52689439 -0.51598597 0.14655507 0.52689439 -0.51598597 0.14655507 0.66816241 0.10333203 0.09561795\n\t\t -0.6675716 -0.27458304 -0.32860088 -0.67140061 0.017329782 -0.31376189 0.31316143 -0.61389291 0.36364508\n\t\t 0.62730545 -0.443407 -0.10132789 0.26440743 -0.48427397 0.5291571 -0.14520161 -0.80367398 -0.19498986\n\t\t -0.14520161 -0.80367398 -0.19498986 -0.13713655 -0.63157195 0.5388521 -0.12786855 -0.61696696 0.5417611\n\t\t -0.73400056 0.36549997 -0.033599928 0.63022542 0.034684211 0.10312799 -0.26490557 -0.57724893 0.59848714\n\t\t -0.26407358 -0.58358496 0.59806412 -0.7215516 0.42471498 -0.028307945 0.67383242 0.37073499 0.13875592\n\t\t 0.34368637 -0.53398299 -0.21474606 -0.68412858 -0.090359822 -0.34879988 0.65604639 0.02359581 0.099532992\n\t\t 0.65604639 0.02359581 0.099532992 0.55132341 -0.012051776 0.23436201 -0.17498454 -0.068483546 0.66562909\n\t\t -0.31388757 -0.61015892 0.55909812 -0.26328859 -0.56466794 0.59989113 0.15887944 -0.33421594 0.628654\n\t\t 0.15887944 -0.33421594 0.628654 -0.43959865 -0.44303399 -0.21474639 -0.37249458 -0.75224698 0.097559124\n\t\t -0.19088061 -0.49014002 -0.045821905 -0.16352955 -0.24582694 0.6510461 -0.36550465 -0.81149298 0.10273215\n\t\t -0.44888359 -0.10527696 0.41228211 0.5162074 -0.66512692 0.12416306;\n\tsetAttr \".vt[12450:12615]\" -0.16248055 -0.65474892 0.53239709 -0.25750458 -0.55347097 0.60189211\n\t\t 0.39309236 -0.43791997 0.35225207 0.39309236 -0.43791997 0.35225207 0.58507341 -0.012076974 0.18998998\n\t\t 0.58507341 -0.012076974 0.18998998 -0.21207654 -0.54389393 0.61060411 -0.31014475 0.10621791 -1.045015812\n\t\t -0.26153758 -0.65779996 0.51499611 0.56760544 -0.64068097 0.15235606 0.57392544 -0.62023991 0.15691504\n\t\t 0.20026141 -0.65931892 0.45485902 0.4986183 0.57934892 -0.86254215 0.38623631 0.59279996 -0.98242211\n\t\t 0.48822537 0.34512496 0.23390594 0.51236445 0.34752798 0.23542398 -0.37528864 -0.59829301 -0.28947288\n\t\t 0.60220242 0.019556224 0.17920399 -0.24097762 -0.46389204 -0.012080908 -0.27010164 -0.46992403 -0.012080908\n\t\t 0.58061939 -0.03464447 0.19780898 0.58061939 -0.03464447 0.19780898 0.52795541 0.00056360662 0.22786298\n\t\t -0.17964555 -0.20841195 0.66328299 -0.27292559 -0.56437397 0.61877513 -0.27483258 -0.57921696 0.61711812\n\t\t 0.50284541 -0.49703097 0.11601105 0.48392141 -0.49773794 0.10059705 0.18203139 -0.59421998 -0.012080938\n\t\t 0.23745242 -0.56430793 0.47176713 0.87478828 0.19877996 -0.61981308 0.57228142 -0.59707594 0.15756604\n\t\t -0.24824955 -0.54500794 0.60425013 0.67396742 0.018351808 -0.043778017 -0.11616956 -0.62327296 0.5432201\n\t\t 0.38128743 -0.14979395 0.47490698 0.39988837 -0.45009601 -0.20162037 -0.37357864 -0.76638103 0.11364412\n\t\t -0.70001858 0.12333201 -0.076374918 -0.16980855 -0.22174793 0.66355801 -0.17351155 -0.14078793 0.67147809\n\t\t 0.51441741 -0.65775192 0.12465104 0.22557741 -0.55574793 0.47474301 0.22557741 -0.55574793 0.47474301\n\t\t 0.51852244 -0.56873 -0.21474606 0.84658843 -0.18282005 -0.61765504 -0.74500656 0.30733299 -0.047017932\n\t\t -0.34097877 0.22678991 -1.080906987 0.54563242 -0.028655976 0.231738 0.34368637 -0.53398299 -0.20162034\n\t\t -0.43996963 -0.83844501 0.060048148 -0.26609957 -0.55116296 0.62113613 0.87599343 0.10867797 -0.42075807\n\t\t 0.20876639 -0.71785498 -0.24569772 0.20876639 -0.71785498 -0.24569772 0.20876639 -0.69546002 -0.24569792\n\t\t 0.20876639 -0.69546002 -0.24569792 0.39988837 -0.45009601 -0.24991995 -0.42442459 0.40147603 0.29631698\n\t\t -0.23054057 -0.56929195 0.4684931 -0.23054057 -0.56929195 0.4684931 0.8515383 -0.18274504 -0.60414988\n\t\t 0.33671537 -0.53398299 -0.20577165 0.2360144 -0.46938902 -0.076023951 0.61457741 -0.292602 0.030815005\n\t\t 0.16412345 -0.045466542 0.66564 0.16412345 -0.045466542 0.66564 -0.75227159 0.24087001 -0.049317926\n\t\t 0.36539537 -0.60322303 -0.20577145 0.39722535 -0.6243 -0.20577165 -0.53054756 -0.53398299 -0.28947288\n\t\t 0.41946143 0.40147603 0.29631698 0.42651436 0.42989707 0.30374494 -0.55410856 0.34961897 0.21455905\n\t\t -0.55410856 0.34961897 0.21455905 -0.55410856 0.34961897 0.21455905 -0.078563824 -0.38826799 -0.28620231\n\t\t -0.21185361 -0.61054897 -0.012080893 -0.91300958 -0.10783304 -0.60105085 -0.94466156 0.027454361 -0.61244285\n\t\t 0.34431937 -0.57139403 -0.20577165 -0.33456376 0.13877992 -1.01619792 0.36952743 -0.20358196 0.45893002\n\t\t -0.1451287 0.1793289 -1.155334 -0.15571055 -0.49079496 0.54822809 0.57986045 -0.61822796 0.14553204\n\t\t 0.57825041 -0.59510392 0.14618704 0.66425043 0.021742418 0.051328987 -0.17709255 -0.22175294 0.66090614\n\t\t 0.7766434 0.39516801 -0.16434136 0.19785438 -0.80053002 -0.23762362 0.19785438 -0.80053002 -0.23762362\n\t\t 0.35074937 -0.56873 -0.20162015 0.9396984 0.027454361 -0.61244309 0.9396984 0.027454361 -0.61244309\n\t\t 0.90891731 -0.10413204 -0.60136497 0.26986942 -0.57921696 0.617118 -0.42956859 -0.15674695 0.44429213\n\t\t -0.8441146 -0.070808038 -0.39324689 -0.40485165 -0.61786997 -0.28947288 0.5124433 0.040265247 -0.75381988\n\t\t -0.5509246 0.051500842 0.14678007 0.78578031 -0.22244005 -0.59356099 0.78578031 -0.22244005 -0.59356099\n\t\t 0.63500333 -0.32723504 -0.53874201 0.63500333 -0.32723504 -0.53874201 0.63500333 -0.32723504 -0.53874201\n\t\t -0.25538158 -0.60050392 0.59805411 -0.25923759 -0.59539396 0.59784412 0.78951341 -0.22244005 -0.583305\n\t\t 0.78951341 -0.22244005 -0.583305 0.25994241 -0.57724893 0.59848702 0.25832641 -0.56466794 0.59989113\n\t\t -0.048397548 -0.87441194 0.54540414 -0.048397548 -0.87441194 0.54540414 0.48596942 0.33927596 0.23121193\n\t\t 0.51399243 0.34245598 0.23335499 -0.24097762 -0.46938902 -0.0089409053 0.16029145 -0.35614094 0.61735296\n\t\t 0.26273143 -0.35622093 0.52011096 0.26273143 -0.35622093 0.52011096 0.50387543 -0.60322303 -0.20577165\n\t\t 0.90804642 -0.10783304 -0.60105097 0.90804642 -0.10783304 -0.60105097 0.73115343 0.38386196 -0.41510507\n\t\t 0.23533446 -0.34455594 0.51493001 -0.65887356 0.050566509 0.012057081 -0.65887356 0.050566509 0.012057081\n\t\t -0.65879661 0.051534906 0.020564079 -0.65879661 0.051534906 0.020564079 -0.24538855 -0.60837495 0.59907812\n\t\t 0.26888743 -0.58669394 0.61661899 -0.68914557 0.099007204 0.0047450811 -0.50784457 -0.48999798 0.11796612\n\t\t -0.48739058 -0.49040794 0.10174212 -0.64820659 0.051500723 0.1020321 -0.64820659 0.051500723 0.1020321\n\t\t -0.68514556 -0.043320328 -0.37581289 0.15159439 -0.68171799 -0.20339233 0.15159439 -0.68171799 -0.20339233\n\t\t -0.6635896 0.047366187 -0.09783791 -0.76447755 0.24095501 -0.049166918 -0.50780857 -0.49703097 0.11601111\n\t\t 0.46938238 -0.61786902 -0.20162036 0.43463537 -0.62493199 -0.21474645 0.14722939 -0.805354 -0.20016281\n\t\t 0.14722939 -0.805354 -0.20016281 0.14722939 -0.805354 -0.20016281 0.14023839 -0.80367398 -0.19498989\n\t\t 0.14023839 -0.80367398 -0.19498989 -0.54332149 -0.030775964 0.26147312 0.65862644 0.047366187 -0.097838029\n\t\t 0.66334343 0.044165805 -0.20773312 0.26318142 -0.60062695 0.616359 0.20532238 -0.61433297 -0.051405936\n\t\t 0.9403854 0.0066093504 -0.5469991 0.70123941 -0.070845261 -0.77169687 0.25870836 -0.485448 -0.10438785\n\t\t 0.75222743 0.30743396 -0.046889059 0.75951439 0.24095501 -0.049167052 -0.13108858 -0.76772493 0.4436031\n\t\t -0.13108858 -0.76772493 0.4436031 0.17076439 -0.51320899 -0.0089409351 -0.17572761 -0.51320899 -0.076024905\n\t\t 0.5656513 -0.044678256 -0.69514298 0.18591839 -0.49014002 -0.00894095;\n\tsetAttr \".vt[12616:12781]\" -0.37433159 -0.24407296 0.47259009 -0.30631757 -0.31907594 0.50364411\n\t\t -0.048397548 -0.76772493 0.54540414 -0.048397548 -0.76772493 0.54540414 0.28215629 0.59924096 -1.059508085\n\t\t 0.47409436 -0.43872201 -0.25723284 0.25863141 -0.60665697 0.61660713 0.17259939 -0.71776801 -0.19782671\n\t\t 0.17259939 -0.71776801 -0.19782671 -0.66264957 0.39770001 0.15121904 -0.21185361 -0.46992403 -0.012080908\n\t\t 0.43463537 -0.62493199 -0.20162034 0.2727443 0.59764296 -1.053612113 -0.17013061 -0.540236 -0.076024905\n\t\t 0.43463537 -0.43070203 -0.25723284 -0.17013061 -0.540236 -0.088373102 -0.56886959 -0.012007877 0.2107901\n\t\t -0.55628657 -0.012051776 0.23436213 0.25041842 -0.60050392 0.59805411 0.6539104 0.050566509 0.012056962\n\t\t 0.6539104 0.050566509 0.012056962 0.15796944 -0.41487494 0.57187998 0.17654745 -0.47488397 0.55931497\n\t\t -0.4677147 0.072769657 -0.77346003 -0.54839557 0.052191451 -0.80282289 0.2360144 -0.62068999 -0.051405936\n\t\t 0.64611042 0.050566509 0.012056962 0.64611042 0.050566509 0.012056962 -0.37515157 -0.75649798 0.12489811\n\t\t -0.37515157 -0.80734998 0.12489814 -0.38885364 -0.74956 0.11053813 -0.38885364 -0.74956 0.11053813\n\t\t -0.43959865 -0.43606299 -0.20577139 0.20794739 -0.80053002 -0.22398362 0.20794739 -0.80053002 -0.22398362\n\t\t 0.20898739 -0.47498602 -0.00894095 0.47007138 0.67326999 -0.089058168 -0.55607259 0.572613 0.046933055\n\t\t -0.55602956 0.561759 0.06667304 -0.68709558 0.20165201 -0.26101542 0.58334643 -0.23963805 -0.64569104\n\t\t 0.71350932 -0.071093068 -0.771016 0.71350932 -0.071093068 -0.771016 0.71350932 -0.071093068 -0.771016\n\t\t 0.24939629 0.52375096 -1.10982108 0.25564831 0.46605188 -1.12740016 0.56394732 -0.30210704 -0.49969694\n\t\t 0.63877428 -0.32723504 -0.52838099 0.63877428 -0.32723504 -0.52838099 0.63877428 -0.32723504 -0.52838099\n\t\t 0.28611135 -0.59033298 -0.00894095 0.26304135 -0.60548598 -0.0089409351 -0.40372258 -0.20621595 0.4580031\n\t\t -0.50390959 -0.46967202 -0.20162028 -0.47434565 -0.45009601 -0.20162028 -0.55407959 0.61934501 -0.039577976\n\t\t -0.49287969 0.18284495 -0.78145599 -0.14935361 -0.77673203 0.071072102 0.54054129 0.66021591 -0.57542008\n\t\t 0.52028841 -0.49225193 0.13094506 0.11675645 -0.32240695 0.5928641 0.22719045 -0.68280697 0.528561\n\t\t 0.10647645 -0.33230594 0.59105396 -0.21372961 -0.69546002 -0.24569789 -0.21372961 -0.69546002 -0.24569789\n\t\t 0.1401653 0.1793289 -1.155334 0.14519329 0.17395891 -1.15189195 0.50288141 -0.48999798 0.11796606\n\t\t 0.48242742 -0.49040794 0.10174206 -0.43959865 -0.44303399 -0.20162028 0.2360144 -0.61108398 -0.0089409351\n\t\t 0.20898739 -0.60548598 -0.0089409351 0.73884439 0.35112399 -0.1862659 0.73884439 0.35112399 -0.1862659\n\t\t 0.33685735 -0.12028404 -0.49997196 0.32888031 -0.15428203 -0.49996796 0.73924643 0.38591498 -0.14274696\n\t\t 0.14750831 0.16694091 -1.14846003 0.73293245 0.39201397 -0.17962655 0.72526342 0.433559 -0.17223346\n\t\t 0.72526342 0.433559 -0.17223346 -0.66100955 0.02359581 0.099533081 -0.66100955 0.02359581 0.099533081\n\t\t 0.76231641 0.39180899 -0.15607396 -0.14807159 -0.69168496 0.28870711 -0.66830659 0.044165805 -0.20773301\n\t\t 0.16403845 -0.23330393 0.664294 0.16403845 -0.23330393 0.664294 0.1467443 0.15938391 -1.14558101\n\t\t 0.36419836 -0.504807 -0.32670695 0.18921345 -0.58759993 0.6097911 -0.18699361 -0.59421998 -0.012080893\n\t\t -0.093104132 -0.59087092 0.69546008 0.75047344 0.42876697 -0.18728524 0.75047344 0.42876697 -0.18728524\n\t\t 0.56017643 -0.30210704 -0.51005697 0.56148344 0.050705031 0.219304 0.56616241 0.043329641 0.22055799\n\t\t -0.55168957 -0.018690065 0.24397406 -0.51003557 -0.56315899 -0.32670689 0.67852741 0.23661201 0.069120944\n\t\t -0.1565576 -0.82470298 -0.20339248 -0.1565576 -0.82470298 -0.20339248 -0.1565576 -0.82470298 -0.20339248\n\t\t 0.18759646 -0.57501996 0.6111961 0.099031374 -0.39423603 -0.28619534 -0.20070855 -0.54914796 0.63262409\n\t\t 0.6486004 0.19373401 0.071015954 0.71598643 0.27206099 -0.34547907 0.69060528 0.278543 -0.44712707\n\t\t 0.69943243 0.12465401 -0.050547034 0.69943243 0.12465401 -0.050547034 -0.079170637 -0.52060992 0.6958791\n\t\t -0.41042265 -0.60442001 -0.32670689 0.38063636 -0.47998303 -0.32670695 0.21785845 -0.62018496 0.62244797\n\t\t 0.85007542 -0.18317005 -0.61125988 0.17809837 0.85147494 -0.47217005 -0.16052361 -0.540236 -0.070439905\n\t\t -0.16688061 -0.50954401 -0.070439905 0.21586145 -0.61196995 0.60300398 0.3867023 0.69553292 -0.8032611\n\t\t 0.39158329 0.69724792 -0.7943061 0.14518745 -0.47103995 0.56906909 0.17366745 -0.49818498 0.55764109\n\t\t 0.17366745 -0.49818498 0.55764109 -0.68710661 0.18284599 -0.24780472 0.77887243 -0.10196606 -0.75019503\n\t\t 0.40545937 -0.46354604 -0.32670695 0.7016654 0.12879901 -0.050910041 -0.64174157 0.028622702 -0.10876811\n\t\t 0.18774845 -0.56190294 0.63286608 0.39253536 0.72070599 -0.30389607 0.42214635 0.68592203 -0.25032806\n\t\t -0.87964457 0.21260394 -0.62921286 0.19712146 -0.55176395 0.61162812 0.19034246 -0.56257397 0.61183411\n\t\t -0.19137855 -0.59143096 0.63045609 -0.19820455 -0.60464293 0.62809509 -0.64412856 0.051500842 0.13464409\n\t\t -0.64412856 0.051500842 0.13464409 0.84821641 -0.07109274 -0.40091106 0.84821641 -0.07109274 -0.40091106\n\t\t -0.52991557 -0.57139301 -0.20577188 -0.53751957 -0.53398299 -0.20577157 -0.1840886 -0.483347 -0.070439912\n\t\t -0.19551554 0.23040004 0.5608471 -0.70561057 -0.054028556 -0.78180689 -0.50883859 -0.60322303 -0.20577157\n\t\t -0.15266058 -0.56099796 0.14413911 -0.91388071 -0.10413204 -0.60136485 0.12931231 0.1442139 -1.143785\n\t\t 0.54911643 0.61934501 -0.039578065 0.073109664 -0.82948697 0.7680831 0.72208744 0.25604296 -0.32235205\n\t\t 0.72208744 0.25604296 -0.32235205 0.52858043 0.057486936 0.247127 0.12082045 -0.45674893 0.57487911\n\t\t 0.46938238 -0.45009601 -0.21474648 0.49894643 -0.46967202 -0.21474607 -0.47334263 0.674429 -0.057256989\n\t\t -0.47334263 0.674429 -0.057256989 0.52264154 0.049355313 0.24917001 0.68453342 0.27856797 -0.47025308\n\t\t 0.6826663 0.27460498 -0.47899505 -0.47700965 -0.6243 -0.20577157;\n\tsetAttr \".vt[12782:12947]\" -0.46877465 -0.46354604 -0.32670689 0.55972344 0.044132218 0.255472\n\t\t 0.098072462 -0.81324095 0.68210208 0.098072462 -0.81324095 0.68210208 -0.55490059 0.021096423 0.25648406\n\t\t 0.58700043 0.075703844 0.16593701 0.58700043 0.075703844 0.16593701 0.57552242 0.08358793 0.162817\n\t\t -0.38018358 -0.43459296 0.36993611 0.71277243 0.23969997 -0.344217 0.59254342 0.064321533 0.16755393\n\t\t -0.48888457 -0.49773794 0.10059711 -0.56150657 0.055549428 0.2092461 -0.55315959 0.057339028 0.20701006\n\t\t -0.53601056 0.67595297 -0.09977138 -0.40485165 -0.61786997 -0.20162007 0.38063636 -0.587982 -0.32670695\n\t\t 0.40545937 -0.60442001 -0.32670695 0.6886124 0.24445395 -0.44227999 -0.20912455 -0.61462891 0.62531412\n\t\t 0.54352939 0.65124398 -0.10570148 -0.48127258 -0.25199196 0.30736411 0.58700144 0.075703844 0.13843\n\t\t 0.5719564 -0.36956498 0.17363799 0.52280641 -0.66271996 0.11342305 0.36539537 -0.46474302 -0.21059476\n\t\t -0.11477254 -0.33432394 0.63095409 -0.11477254 -0.33432394 0.63095409 0.65768641 0.39770001 0.15145093\n\t\t 0.37032536 -0.59829301 -0.28947294 0.60724241 0.051189944 0.15008199 0.60724241 0.051189944 0.15008199\n\t\t -0.51938057 -0.65775192 0.12465113 -0.11143955 -0.33230594 0.59105396 0.30126438 -0.56726301 -0.00894095\n\t\t 0.50328243 -0.38119897 0.23470405 0.50328243 -0.38119897 0.23470405 0.54114556 -0.26857296 0.257038\n\t\t 0.098132446 -0.61996496 0.6870901 0.59511745 0.051189944 0.13843 0.51482743 -0.38200998 0.23239601\n\t\t 0.51482743 -0.38200998 0.23239601 -0.6009416 -0.22679798 0.14027712 -0.6402666 -0.16099198 0.1194101\n\t\t -0.43046865 0.45066702 0.274885 -0.42116457 0.41616702 0.26958698 0.66698641 -0.30932504 -0.24145208\n\t\t 0.22557741 -0.56929195 0.46849298 0.22557741 -0.56929195 0.46849298 -0.42984658 0.44663107 0.28105405\n\t\t -0.42054364 0.41213107 0.275756 0.5939244 0.355919 0.12696892 0.66787344 -0.30556804 -0.23441958\n\t\t 0.66787344 -0.30556804 -0.23441958 0.51945943 0.053575441 0.244683 0.42460543 -0.15674695 0.44429201\n\t\t 0.61654443 0.422243 0.17171994 0.72063243 0.26606196 -0.32760108 0.71856141 0.27019197 -0.33466303\n\t\t 0.36539537 -0.60322303 -0.21059474 0.39722535 -0.6243 -0.21059474 0.34431937 -0.57139403 -0.21059474\n\t\t -0.51895547 0.42432904 0.27195007 0.67329741 -0.18075201 -0.26338801 -0.1205287 0.1713699 -1.15826392\n\t\t -0.52852058 0.01144053 0.20914105 -0.28304163 -0.49817199 -0.1043878 -0.50136358 0.20164894 -0.77132499\n\t\t -0.47227064 0.47938102 0.28649998 0.36419141 -0.64720994 0.43099701 0.21089937 -0.19955903 -0.49998701\n\t\t 0.67916542 -0.090359822 -0.3488 -0.25010765 -0.19810504 -0.5101589 -0.21968964 -0.19096604 -0.51016796\n\t\t 0.47849643 0.44556504 0.30755401 0.21720944 -0.56759793 0.46927202 0.21720944 -0.56759793 0.46927202\n\t\t 0.68029541 -0.069231734 -0.36064005 0.68056941 -0.071057424 -0.367567 0.68056941 -0.071057424 -0.367567\n\t\t 0.66223145 -0.21233703 -0.37497306 0.66223145 -0.21233703 -0.37497306 0.56453842 0.56347299 0.044467926\n\t\t 0.56453842 0.56347299 0.044467926 0.46218637 0.45053506 0.306086 0.32261431 0.78243798 -0.39240211\n\t\t -0.45009664 0.47583902 0.27905306 -0.45009664 0.47583902 0.27905306 -0.51400745 0.45641905 0.27274007\n\t\t -0.44927964 0.47183406 0.28542104 -0.44927964 0.47183406 0.28542104 -0.5174067 0.040265247 -0.75381988\n\t\t 0.49046141 0.41647404 0.29917893 -0.11044955 -0.34706795 0.62837714 -0.29576564 -0.517542 -0.1043878\n\t\t -0.30046564 -0.540236 -0.1043878 0.37018842 -0.75649798 0.12489805 -0.33384371 -0.15428203 -0.49996796\n\t\t 0.44964641 0.40346402 0.286057 -0.52851957 0.05793722 0.20914105 -0.29576564 -0.56292999 -0.10438779\n\t\t -0.51981258 -0.49503493 0.14246511 -0.50242567 -0.49290794 0.1294671 0.35440835 -0.66032696 0.417472\n\t\t -0.32552359 0.28902102 0.46838909 -0.51783657 -0.50112295 0.13963011 0.59441441 -0.315393 -0.10498099\n\t\t 0.26304135 -0.47498703 -0.088372946 -0.1250897 0.17533992 -1.15873384 0.84530145 -0.054028526 -0.38437402\n\t\t 0.7398454 0.058669463 -0.26773143 0.13587436 -0.82092398 -0.1917603 0.13587436 -0.82092398 -0.1917603\n\t\t 0.74256539 0.36776596 -0.043094069 0.36753142 -0.81317401 0.097559065 0.37358743 -0.80989897 0.10574305\n\t\t 0.37358743 -0.80989897 0.10574305 0.15395245 -0.32227993 0.59109402 0.50146556 -0.083207652 0.33738899\n\t\t 0.71601939 0.26526296 -0.33669406 -0.48204958 -0.49343997 0.1132611 0.7171064 0.42798698 -0.037663072\n\t\t -0.5657196 -0.65349495 0.13350615 0.47860435 -0.50076896 0.11213204 0.038390175 -0.351156 -0.28621686\n\t\t 0.43581435 -0.77438802 0.061140075 0.68500841 0.098263517 -0.0041570365 0.13587436 -0.677939 -0.19176011\n\t\t 0.13587436 -0.677939 -0.19176011 0.13587436 -0.677939 -0.19176011 0.47708642 -0.49343997 0.11326104\n\t\t 0.73781043 0.19345801 -0.034769058 0.4627513 0.072769657 -0.77346003 0.54343241 0.052191451 -0.80282289\n\t\t -0.22282155 -0.62018496 0.62244809 -0.5646866 0.025245726 0.25547212 -0.55957246 0.01718533 0.2541011\n\t\t -0.21828361 -0.59502399 -0.1043878 0.53680843 0.015466228 0.25296599 0.52972555 0.016984925 0.251068\n\t\t 0.52264154 0.020022526 0.24917001 0.3306753 -0.085914925 -0.49997902 0.16516739 -0.540236 -0.045821935\n\t\t -0.19701365 -0.059750825 -0.51019895 -0.23764455 -0.62064195 0.61984414 -0.54512155 0.34437299 0.24498406\n\t\t -0.54512155 0.34437299 0.24498406 0.54389155 0.016984925 0.25486398 0.16246045 -0.33217695 0.58864909\n\t\t -0.1337657 0.1490389 -1.14587283 -0.32685769 -0.089285538 -0.51015997 -0.5460946 -0.26208597 0.27659512\n\t\t -0.58260757 -0.20230497 0.24870113 0.52932042 0.051970318 0.210686 -0.12992564 -0.78641099 -0.18368593\n\t\t -0.12992564 -0.78641099 -0.18368593 -0.14001861 -0.78641099 -0.17004599 -0.14001861 -0.78641099 -0.17004599\n\t\t 0.14420545 -0.23749694 0.65209812 -0.64336956 0.051188633 0.16079906 -0.64336956 0.051188633 0.16079906\n\t\t -0.25180453 -0.61594296 0.61781609 0.36300731 0.65464795 -0.83757412 0.29279223 0.1409689 -1.073747993\n\t\t -0.48914957 0.33799899 0.24087507 -0.51713556 0.34118599 0.24293005;\n\tsetAttr \".vt[12948:13113]\" -0.1467807 0.16036592 -1.14721501 0.18591839 -0.59033298 -0.018963933\n\t\t 0.16185236 -0.35440004 -0.28618786 -0.28304163 -0.58230102 -0.10438779 0.37061131 0.64634591 -0.84038514\n\t\t 0.54993743 0.021096423 0.256484 -0.55957246 0.052192524 0.2541011 0.70064741 -0.054028556 -0.78180689\n\t\t -0.53614044 0.34101003 0.27717605 0.33395937 -0.66565192 0.40464205 0.31887236 -0.66749793 0.38462907\n\t\t -0.27385059 -0.58669394 0.61661911 0.0094767883 -0.75865197 -0.098231107 0.0094767883 -0.75865197 -0.098231107\n\t\t 0.21911445 -0.53991193 0.60888511 0.23167744 -0.54029894 0.60667801 0.71658844 0.42471498 -0.028308064\n\t\t -0.16525255 -0.35130695 0.62496102 0.16448244 -0.018123642 0.64370209 0.0094767883 -0.68027198 -0.098231114\n\t\t 0.0094767883 -0.68027198 -0.098231114 0.18591839 -0.59033298 -0.045821935 -0.57178861 0.05623503 0.22073504\n\t\t 0.17805035 0.84795803 -0.47598508 0.18107346 -0.02382344 0.63945997 0.63521343 0.52898699 0.010723934\n\t\t 0.38389036 -0.82128501 0.11053807 0.38389036 -0.82128501 0.11053807 0.37783435 -0.82470298 0.10235405\n\t\t -0.60477656 0.55181992 -0.68582088 0.17076439 -0.56726402 -0.018963933 0.32393035 0.779383 -0.39685607\n\t\t 0.71100843 0.48586899 -0.020289063 0.71100843 0.48586899 -0.020289063 0.45795935 -0.77714598 0.043714046\n\t\t 0.45795935 -0.77714598 0.043714046 0.17076439 -0.56726301 -0.045821935 0.64927143 -0.303882 -0.2367447\n\t\t 0.64927143 -0.303882 -0.2367447 0.64927143 -0.303882 -0.2367447 0.57544541 0.034688935 0.22304499\n\t\t -0.1418687 0.17525791 -1.15449703 -0.49321657 0.34407997 0.24308106 0.68214345 0.18284599 -0.24780484\n\t\t -0.49318865 0.34512496 0.23390606 -0.62526757 0.051189825 0.15007809 -0.62526757 0.051189825 0.15007809\n\t\t 0.64821941 -0.30892003 -0.25992942 0.63243639 0.59578401 -0.37315607 0.22255936 -0.81936502 -0.25590432\n\t\t 0.22255936 -0.81936502 -0.25590432 0.15607744 0.21949606 0.572806 0.15607744 0.21949606 0.572806\n\t\t 0.15607744 0.21949606 0.572806 0.20711344 -0.54389393 0.61060411 0.13505539 -0.78641099 -0.170046\n\t\t 0.13505539 -0.78641099 -0.170046 0.24489637 -0.20753703 -0.49997801 0.66319543 -0.33031601 -0.2756319\n\t\t 0.66319543 -0.33031601 -0.2756319 0.66260844 -0.27458304 -0.328601 0.15830545 0.22265108 0.56829298\n\t\t -0.6844337 0.24026297 -0.44234696 -0.70934159 0.23557697 -0.34115893 -0.2601667 0.58145094 -1.075587034\n\t\t 0.44106236 -0.83502698 0.068232059 0.44106236 -0.83502698 0.068232059 0.43500736 -0.83844501 0.060048088\n\t\t -0.7124396 0.23750399 -0.33048192 0.72480243 0.18834402 -0.13133195 0.75005841 0.30638599 -0.037035055\n\t\t 0.52858043 0.011890829 0.247127 0.51945943 0.015802428 0.244683 0.64549643 -0.25531104 -0.31376901\n\t\t 0.64247143 -0.20095703 -0.35645497 0.64247143 -0.20095703 -0.35645497 0.3274253 -0.12003703 -0.51015294\n\t\t -0.15749656 -0.49171793 0.55855709 0.65915644 0.079249814 -0.23836474 -0.25787976 0.58445996 -1.074512959\n\t\t -0.70037758 0.41407496 0.13854104 -0.70037758 0.41407496 0.13854104 -0.68949658 0.27856797 -0.47025296\n\t\t -0.6876297 0.27460498 -0.47899494 -0.75269359 0.10867794 -0.77315891 -0.5664466 0.018672928 0.21930405\n\t\t -0.5664466 0.018672928 0.21930405 0.30996931 0.20691492 -1.068503022 0.32357624 0.21306391 -1.059932947\n\t\t 0.73231143 0.16249402 -0.075328045 0.65135139 0.0072939396 0.060065985 0.55460954 0.01718533 0.25410098\n\t\t -0.65267158 0.050906017 0.088076085 -0.72554857 -0.077794567 -0.77304488 -0.72554857 -0.077794567 -0.77304488\n\t\t -0.7737506 -0.10171506 -0.75673687 -0.7737506 -0.10171506 -0.75673687 -0.84717256 -0.20972905 -0.60831189\n\t\t -0.84717256 -0.20972905 -0.60831189 -0.84717256 -0.20972905 -0.60831189 0.16707936 -0.11582404 -0.51019394\n\t\t 0.17260936 -0.14657503 -0.51018691 0.44308135 -0.82486999 0.070960045 0.44308135 -0.774019 0.070961058\n\t\t 0.74423945 0.24094202 -0.039235055 0.54682344 0.011890829 0.25201499 0.53770256 0.0099351257 0.249571\n\t\t -0.78383559 -0.10196606 -0.75019491 0.33656624 0.21308093 -1.04871583 0.55390954 0.027355626 0.257548\n\t\t 0.55724144 0.006625697 0.21816698 0.54601341 0.0042182207 0.215159 -0.26853177 0.45983189 -1.12659192\n\t\t 0.66696841 -0.027690589 0.075212002 0.2978943 0.19560592 -1.073071003 -0.16260964 -0.11557504 -0.50001293\n\t\t 0.23153237 -0.72332799 -0.26254371 0.23153237 -0.72332799 -0.26254371 -0.70606172 -0.074124157 -0.76572388\n\t\t 0.18907036 -0.17313203 -0.51017797 -0.6872077 0.28438997 -0.44737989 -0.28199869 0.45043087 -1.12059283\n\t\t -0.28199869 0.45043087 -1.12059283 -0.30989257 -0.62826395 0.53953409 -0.44567859 0.47468102 0.28698304\n\t\t -0.44567859 0.47468102 0.28698304 0.45659336 -0.77596903 0.041609049 0.70992345 0.123215 -0.075022042\n\t\t 0.70992345 0.123215 -0.075022042 -0.71963656 0.268112 -0.31942594 -0.67984957 0.51661491 -0.51493394\n\t\t -0.7245636 0.48605496 -0.37978691 0.55537653 0.034688935 0.25794199 -0.61638159 -0.315393 -0.091812693\n\t\t -0.61638159 -0.315393 -0.091812693 -0.68575758 0.33246797 0.12793306 -0.78760958 0.35399699 -0.17145944\n\t\t -0.78760958 0.35399699 -0.17145944 -0.78760958 0.35399699 -0.17145944 -0.73883361 0.31825697 -0.14476752\n\t\t 0.44293037 0.39188707 0.28653699 0.20898739 -0.60548598 -0.088372737 0.44604743 0.38681805 0.28941694\n\t\t -0.57584161 -0.41541499 -0.044219889 -0.72438955 0.48971701 -0.37660995 -0.67879558 0.37073499 0.13875604\n\t\t -0.73637158 0.316598 -0.14340752 -0.73637158 0.316598 -0.14340752 0.17421736 -0.085405827 -0.510198\n\t\t -0.75707656 0.37060499 -0.33498991 -0.32241663 -0.56168395 0.38875109 0.28912124 0.18079291 -1.072970033\n\t\t 0.19055244 0.23040004 0.5608471 -0.51147246 -0.38277796 0.2601001 0.43891841 0.40402406 0.33205098\n\t\t 0.43891841 0.40402406 0.33205098 0.43813843 0.41479105 0.33589196 0.43813843 0.41479105 0.33589196\n\t\t -0.47295159 -0.41375896 0.29853413 -0.7601276 0.38124996 -0.3568449 -0.7601276 0.38124996 -0.3568449\n\t\t -0.7559486 0.42771399 -0.34137094 -0.74917656 0.47255498 -0.32761896 -0.74917656 0.47255498 -0.32761896\n\t\t -0.44875064 0.39275205 0.31489807 -0.44875064 0.39275205 0.31489807;\n\tsetAttr \".vt[13114:13279]\" -0.44875064 0.39275205 0.31489807 -0.45460957 0.40346402 0.28605705\n\t\t -0.25435975 0.52420497 -1.10982084 0.14517444 -0.38508293 0.57801199 0.35453331 0.18087892 -1.016487002\n\t\t 0.29080236 -0.56292999 -0.10438784 0.27807835 -0.58230102 -0.10438784 -0.56985259 0.017407432 0.21148312\n\t\t -0.56985259 0.017407432 0.21148312 -0.47091964 0.39849406 0.28752404 0.25870836 -0.59502399 -0.10438783\n\t\t -0.41665563 0.41944605 0.27088898 -0.38321471 0.64146596 -0.83841801 -0.61803973 0.42070395 -0.74132687\n\t\t -0.24097762 -0.61108297 -0.018963888 0.32647237 -0.55908597 0.40162206 0.31745335 -0.56168395 0.38875103\n\t\t 0.56488943 0.017407432 0.211483 0.56488943 0.017407432 0.211483 -0.5706147 -0.044678256 -0.69514287\n\t\t -0.70620257 -0.070845261 -0.77169687 0.71279144 0.38352197 0.11662793 -0.20522457 -0.65931892 0.45485914\n\t\t -0.84026456 -0.074124232 -0.39700589 -0.69220769 0.40276492 -0.55956197 -0.73611659 0.38431698 -0.41510496\n\t\t 0.32609025 0.12151392 -1.03488183 0.32189429 -0.089285538 -0.51015997 0.37018842 -0.80734998 0.12489805\n\t\t -0.61748356 0.42467391 -0.74060887 0.28948924 0.1153859 -1.063333035 0.30518124 0.10621791 -1.045015812\n\t\t -0.46213165 -0.52210695 0.1741761 -0.33085665 -0.66767496 0.37991112 -0.88555968 -0.10177503 -0.44983289\n\t\t -0.88555968 -0.10177503 -0.44983289 -0.50487858 0.44076294 -0.91889888 -0.5662477 0.43399191 -0.83259088\n\t\t -0.36915457 -0.64720994 0.43099713 -0.37795657 -0.65381992 0.43370509 -0.37449059 -0.20358196 0.45893013\n\t\t -0.38963577 0.44765794 -1.040596962 -0.67312557 0.10333203 0.095618069 -0.33589959 -0.67875296 0.37678909\n\t\t 0.28437829 0.17842491 -1.10044694 -0.71574455 0.19493203 0.089323074 -0.38592058 -0.15987995 0.460639\n\t\t 0.38590842 -0.76027697 0.11326605 -0.88904661 -0.10205103 -0.46147388 0.64097542 0.53249103 0.013947934\n\t\t -0.16436654 -0.34697494 0.61131597 0.37358743 -0.75720102 0.10574305 0.37358743 -0.75720102 0.10574305\n\t\t 0.36753142 -0.75224698 0.097559065 -0.59485257 -0.25902796 0.19727013 0.44641235 0.39353907 0.28930199\n\t\t 0.15113845 -0.24709395 0.64658111 -0.57530659 -0.38511699 0.1603241 -0.57691956 -0.36956498 0.17363811\n\t\t -0.59200758 -0.27393597 0.19820112 -0.47766358 0.41479105 0.34291208 -0.47766358 0.41479105 0.34291208\n\t\t 0.38590842 -0.81112802 0.11326605 -0.16879064 -0.14994505 -0.50000596 0.67232633 0.28267699 -0.46646908\n\t\t -0.30622765 -0.51320899 -0.018963888 -0.31182465 -0.540236 -0.018963888 -0.26548469 0.52813792 -1.1138308\n\t\t -0.2139506 -0.60548598 -0.045821898 -0.74463457 0.47243601 -0.30302095 -0.3916657 0.69553292 -0.80326086\n\t\t -0.39654669 0.69724792 -0.79430586 0.098443449 -0.61115593 0.70011497 0.098443449 -0.61115593 0.70011497\n\t\t 0.2975263 0.20062591 -1.10059905 -0.39119971 0.59325397 -0.98242199 -0.28711969 0.59969497 -1.059507847\n\t\t 0.093439467 -0.60596097 0.70432514 -0.35363257 -0.55148196 0.40815508 -0.18718864 -0.17962605 -0.49999696\n\t\t -0.4145577 0.69652194 -0.77283591 -0.043353423 -0.351156 -0.28621686 -0.47137669 0.68592095 -0.70453203\n\t\t -0.51787156 0.67291695 -0.6260069 -0.79074371 -0.22244005 -0.59356087 -0.79074371 -0.22244005 -0.59356087\n\t\t 0.32701835 -0.55131495 0.37780106 -0.37421858 -0.60837996 0.4401381 -0.37441757 -0.62905496 0.4389931\n\t\t -0.66765457 -0.0033853203 -0.034995899 -0.7411806 0.47260696 -0.32151097 -0.7411806 0.47260696 -0.32151097\n\t\t -0.47247365 0.39531207 0.33462304 -0.47247365 0.39531207 0.33462304 0.50507241 -0.56315899 -0.32670695\n\t\t -0.60008061 0.051189944 0.13843009 0.77749139 -0.21788704 -0.584508 -0.32399157 -0.59383994 0.54017413\n\t\t -0.32271159 -0.59381497 0.54520512 -0.71633959 0.25733697 -0.31324494 0.43463537 -0.61035001 -0.32670695\n\t\t -0.56353867 0.56773692 -0.77887589 -0.50358158 0.57980293 -0.86254203 0.38061231 0.2007349 -1.02885294\n\t\t -0.30622765 -0.56726301 -0.088373087 0.8353014 -0.074124232 -0.39700606 -0.13294664 -0.26615003 -0.28621101\n\t\t -0.10751662 -0.26018304 -0.28621763 0.88975644 0.11486097 -0.43082911 0.88693744 0.096072361 -0.41674307\n\t\t 0.31562224 0.21757491 -1.093751192 0.72058541 -0.077794567 -0.77304488 0.72058541 -0.077794567 -0.77304488\n\t\t -0.65364259 -0.30850804 -0.27011439 -0.65364259 -0.30850804 -0.27011439 -0.65364259 -0.30850804 -0.27011439\n\t\t -0.66400659 -0.08856082 -0.3254469 -0.66400659 -0.08856082 -0.3254469 -0.66400659 -0.08856082 -0.3254469\n\t\t -0.56891072 -0.30210704 -0.49969688 -0.65318257 -0.30892003 -0.2599293 -0.64743459 -0.20095703 -0.35645485\n\t\t -0.64743459 -0.20095703 -0.35645485 -0.6570136 -0.18866701 -0.28374708 0.75338143 0.096072838 -0.7836861\n\t\t 0.33601525 0.22678991 -1.080906987 0.74773043 0.10867794 -0.77315915 -0.42944363 -0.46118295 0.3441751\n\t\t -0.36630365 -0.50169593 0.39390808 0.70109832 -0.074124157 -0.76572388 -0.48754063 -0.41996396 0.2925691\n\t\t 0.14442445 -0.89659792 0.54540414 0.14442445 -0.89659792 0.54540414 0.14439039 -0.77673203 0.071072072\n\t\t -0.24241558 -0.56430793 0.47176713 0.20464344 -0.55574691 0.474738 -0.65045959 -0.25531104 -0.31376889\n\t\t 0.90897542 -0.10825705 -0.5913831 0.9077723 -0.11063504 -0.59714603 0.90748727 -0.11045204 -0.60024589\n\t\t 0.90748727 -0.11045204 -0.60024589 -0.57411557 0.43954992 -0.83722401 0.14769745 -0.74403894 0.54540414\n\t\t -0.52936858 -0.38734096 0.2508961 0.92048132 -0.078910351 -0.55065811 -0.8565017 -0.18274504 -0.60414988\n\t\t -0.62589669 0.43006092 -0.74444491 -0.16528451 -0.16344193 0.679268 -0.70129168 0.40782994 -0.56217295\n\t\t -0.74510556 0.38937801 -0.41844395 -0.16538255 -0.21025294 0.67176312 -0.92538959 0.11656494 -0.63670188\n\t\t 0.94069344 0.031684861 -0.61280411 -0.7023856 0.51410198 -0.10657995 0.12273143 -0.83691096 0.4436031\n\t\t 0.12273143 -0.83691096 0.4436031 0.043434635 -0.84030396 0.4436031 0.043434635 -0.84030396 0.4436031\n\t\t 0.52102244 -0.65534395 0.11391506 0.28611135 -0.49014002 -0.018963948 0.53152543 0.0030380934 0.25570399\n\t\t -0.8919006 0.096072361 -0.41674289 0.56000841 0.0098059773 0.19507599 -0.057115432 -0.37335801 -0.28620982\n\t\t -0.54485756 -0.65336597 0.12337515 -0.5613206 -0.64772493 0.13178715;\n\tsetAttr \".vt[13280:13340]\" -0.5259856 -0.65534395 0.11391515 -0.85155159 -0.18282005 -0.61765492\n\t\t 0.18591739 -0.59033298 -0.076024935 -0.74420959 0.38591498 -0.14274684 0.043434449 -0.76772493 0.54540414\n\t\t 0.043434449 -0.76772493 0.54540414 0.20898739 -0.60548598 -0.076023936 0.5956834 -0.031905472 0.178361\n\t\t 0.56800342 -0.63475597 0.13810006 -0.47700965 -0.6243 -0.21059488 0.059100557 -0.59779495 0.710338\n\t\t 0.16843045 -0.13994893 0.66810113 -0.50883859 -0.60322303 -0.21059467 -0.54287958 -0.53398299 -0.25723279\n\t\t 0.25254142 -0.55347097 0.60189199 -0.5348596 -0.57344198 -0.25723255 0.13915245 -0.38732094 0.5802421\n\t\t 0.14867045 -0.31474793 0.61965299 -0.2028176 -0.80053002 -0.23762356 -0.2028176 -0.80053002 -0.23762356\n\t\t -0.21291061 -0.80053002 -0.22398359 -0.21291061 -0.80053002 -0.22398359 -0.2028176 -0.728513 -0.23762339\n\t\t -0.2028176 -0.728513 -0.23762339 -0.17756261 -0.71776801 -0.19782668 -0.17756261 -0.71776801 -0.19782668\n\t\t -0.21291061 -0.728513 -0.22398339 -0.21291061 -0.728513 -0.22398339 0.25021642 -0.54117596 0.62391812\n\t\t -0.16746961 -0.71776801 -0.21146668 -0.16746961 -0.71776801 -0.21146668 0.16306844 0.12158807 0.61194509\n\t\t 0.24328645 -0.54500794 0.60425013 -0.30186459 -0.61844397 0.5525741 -0.30186459 -0.61844397 0.5525741\n\t\t -0.36797071 0.65464795 -0.83757401 -0.85503858 -0.18317005 -0.61125988 -0.17756261 -0.79462397 -0.19782689\n\t\t -0.17756261 -0.79462397 -0.19782689 -0.55059558 -0.028655976 0.23173806 -0.16746961 -0.79462397 -0.21146688\n\t\t -0.16746961 -0.79462397 -0.21146688 -0.54610848 -0.26857296 0.25703812 0.16854845 -0.14078793 0.67147809\n\t\t -0.55426055 0.62882793 -0.52489591 0.15856645 -0.24582694 0.6510461 -0.48345959 0.44556504 0.30755401\n\t\t -0.51979059 -0.38200998 0.23239613 -0.51979059 -0.38200998 0.23239613 -0.76096457 0.39790696 -0.1929532\n\t\t -0.49425963 0.43255502 0.30491504 -0.48650965 0.40346402 0.29253605 -0.44380865 0.41647404 0.28869498\n\t\t -0.49542457 0.41647404 0.29917905 0.33200943 -0.59937197 0.36785907 -0.060581129 -0.6945799 0.80982012\n\t\t -0.43879065 -0.77049702 0.058455139 -0.73081559 0.19351901 -0.13684621 -0.17625254 -0.24709395 0.63924712\n\t\t -0.10000615 -0.61380392 0.69813609 -0.15610155 -0.24709395 0.64658111;\n\tsetAttr -s 28224 \".ed\";\n\tsetAttr \".ed[0:165]\"  8674 8676 0 8676 1 0 1 8674 0 1 3 0 3 8674 0 1 4 0\n\t\t 4 3 0 4 5 0 5 3 0 6 5 0 4 6 0 4 7 0 7 6 0 7 8 0 8 6 0 8 9 0 9 6 0 10 9 0 8 10 0 8 11 0\n\t\t 11 10 0 8785 8674 0 3 8785 0 8675 12 0 12 13 0 13 8675 0 13 8811 0 8811 8675 0 15 13 0\n\t\t 12 15 0 12 8888 0 8888 15 0 15 369 0 369 13 0 369 9103 0 9103 13 0 9103 8811 0 9103 8816 0\n\t\t 8816 8811 0 19 15 0 8888 19 0 19 369 0 8888 20 0 20 19 0 19 21 0 21 369 0 16 8785 0\n\t\t 8785 8827 0 8827 16 0 8827 23 0 23 16 0 8773 16 0 23 8773 0 3 8827 0 9042 22 0 22 24 0\n\t\t 24 9042 0 24 25 0 25 9042 0 22 3 0 5 22 0 5 24 0 6 24 0 6 26 0 26 24 0 26 25 0 26 27 0\n\t\t 27 25 0 26 28 0 28 27 0 28 29 0 29 27 0 9 26 0 9 28 0 10 28 0 10 30 0 30 28 0 30 29 0\n\t\t 30 31 0 31 29 0 9043 9042 0 25 9043 0 23 32 0 32 8773 0 8774 8773 0 32 8774 0 32 9448 0\n\t\t 9448 8774 0 35 8774 0 9448 35 0 9448 9462 0 9462 35 0 36 34 0 34 37 0 37 36 0 37 38 0\n\t\t 38 36 0 39 38 0 37 39 0 37 40 0 40 39 0 40 41 0 41 39 0 41 42 0 42 39 0 43 42 0 41 43 0\n\t\t 41 44 0 44 43 0 45 35 0 9462 45 0 9468 9469 0 9469 46 0 46 9468 0 46 47 0 47 9468 0\n\t\t 33 9468 0 47 33 0 48 47 0 46 48 0 46 49 0 49 48 0 9462 50 0 50 45 0 9397 36 0 38 9397 0\n\t\t 50 9398 0 9398 45 0 9398 52 0 52 45 0 51 9397 0 9397 53 0 53 51 0 38 53 0 53 54 0\n\t\t 54 51 0 55 54 0 53 55 0 53 56 0 56 55 0 56 57 0 57 55 0 42 57 0 56 42 0 57 58 0 58 55 0\n\t\t 59 58 0 57 59 0 57 60 0 60 59 0 38 56 0 39 56 0 42 60 0 43 60 0 61 49 0 49 62 0 62 61 0\n\t\t 62 63 0 63 61 0 63 12419 0 12419 61 0 12419 8699 0 8699 61 0 65 61 0 8699 65 0 8699 8698 0;\n\tsetAttr \".ed[166:331]\" 8698 65 0 66 65 0 8698 66 0 8698 362 0 362 66 0 362 10106 0\n\t\t 10106 66 0 10106 68 0 68 66 0 69 66 0 68 69 0 68 21 0 21 69 0 10106 10107 0 10107 68 0\n\t\t 10107 21 0 69 48 0 48 66 0 48 65 0 61 48 0 46 62 0 46 71 0 71 62 0 9469 71 0 9469 9510 0\n\t\t 9510 71 0 69 72 0 72 48 0 72 47 0 72 33 0 20 33 0 72 20 0 72 19 0 19 69 0 10107 369 0\n\t\t 73 11398 0 11398 11397 0 11397 73 0 11397 74 0 74 73 0 75 74 0 11397 75 0 11397 12904 0\n\t\t 12904 75 0 12904 11355 0 11355 75 0 11355 77 0 77 75 0 78 77 0 11355 78 0 11355 11356 0\n\t\t 11356 78 0 11356 10223 0 10223 78 0 10223 80 0 80 78 0 81 80 0 10223 81 0 10223 10224 0\n\t\t 10224 81 0 10224 9424 0 9424 81 0 9424 2 0 2 81 0 84 73 0 74 84 0 74 85 0 85 84 0\n\t\t 75 86 0 86 74 0 77 86 0 86 85 0 77 87 0 87 86 0 78 88 0 88 77 0 88 87 0 80 88 0 80 89 0\n\t\t 89 88 0 81 90 0 90 80 0 90 89 0 2 90 0 2 0 0 0 90 0 91 84 0 85 91 0 85 92 0 92 91 0\n\t\t 86 92 0 93 91 0 92 93 0 92 94 0 94 93 0 95 93 0 94 95 0 94 96 0 96 95 0 96 97 0 97 95 0\n\t\t 97 98 0 98 95 0 94 99 0 99 96 0 99 100 0 100 96 0 100 97 0 100 101 0 101 97 0 100 102 0\n\t\t 102 101 0 102 103 0 103 101 0 99 104 0 104 100 0 104 102 0 104 105 0 105 102 0 105 106 0\n\t\t 106 102 0 106 103 0 106 9637 0 9637 103 0 107 106 0 106 108 0 108 107 0 108 109 0\n\t\t 109 107 0 105 110 0 110 106 0 110 108 0 110 111 0 111 108 0 111 112 0 112 108 0 112 109 0\n\t\t 112 370 0 370 109 0 370 371 0 371 109 0 113 104 0 99 113 0 99 114 0 114 113 0 94 114 0\n\t\t 92 114 0 86 114 0 87 114 0 87 113 0 88 113 0 88 115 0 115 113 0 115 104 0 115 105 0\n\t\t 115 116 0 116 105 0 116 110 0 89 115 0 89 116 0 90 116 0 90 117 0 117 116 0 117 110 0\n\t\t 117 111 0 117 14 0;\n\tsetAttr \".ed[332:497]\" 14 111 0 14 8817 0 8817 111 0 0 14 0 117 0 0 8817 9416 0\n\t\t 9416 111 0 9416 112 0 9416 370 0 119 121 0 121 120 0 120 119 0 120 122 0 122 119 0\n\t\t 123 122 0 120 123 0 120 124 0 124 123 0 124 125 0 125 123 0 125 126 0 126 123 0 127 126 0\n\t\t 125 127 0 125 128 0 128 127 0 128 129 0 129 127 0 129 130 0 130 127 0 131 130 0 129 131 0\n\t\t 129 132 0 132 131 0 132 133 0 133 131 0 133 11431 0 11431 131 0 134 11540 0 11540 135 0\n\t\t 135 134 0 135 136 0 136 134 0 11452 11305 0 11305 137 0 137 11452 0 137 138 0 138 11452 0\n\t\t 139 11481 0 11481 137 0 137 139 0 137 11420 0 11420 139 0 141 128 0 125 141 0 125 142 0\n\t\t 142 141 0 124 142 0 124 143 0 143 142 0 120 143 0 120 144 0 144 143 0 121 144 0 121 145 0\n\t\t 145 144 0 146 144 0 145 146 0 145 147 0 147 146 0 148 143 0 144 148 0 146 148 0 148 149 0\n\t\t 149 143 0 149 142 0 150 141 0 142 150 0 149 150 0 150 151 0 151 141 0 151 152 0 152 141 0\n\t\t 152 128 0 152 129 0 151 153 0 153 152 0 153 154 0 154 152 0 154 129 0 154 132 0 154 155 0\n\t\t 155 132 0 155 133 0 11540 155 0 155 156 0 156 11540 0 156 135 0 157 156 0 155 157 0\n\t\t 155 158 0 158 157 0 154 158 0 153 158 0 151 158 0 11305 156 0 156 159 0 159 11305 0\n\t\t 159 137 0 157 160 0 160 156 0 160 159 0 160 161 0 161 159 0 161 162 0 162 159 0 162 137 0\n\t\t 162 11420 0 158 163 0 163 157 0 163 160 0 163 161 0 163 164 0 164 161 0 164 165 0\n\t\t 165 161 0 165 166 0 166 161 0 166 162 0 167 166 0 165 167 0 165 168 0 168 167 0 140 162 0\n\t\t 162 169 0 169 140 0 166 169 0 167 169 0 169 170 0 170 140 0 139 140 0 170 139 0 170 171 0\n\t\t 171 139 0 307 139 0 171 307 0 307 11481 0 307 11482 0 11482 11481 0 138 11483 0 11483 11453 0\n\t\t 11453 138 0 11453 11452 0 136 11454 0 11454 11432 0 11432 136 0 11432 134 0 11431 11433 0\n\t\t 11433 131 0 11433 11686 0 11686 131 0 11686 130 0 11686 11738 0 11738 130 0 11738 11748 0\n\t\t 11748 130 0;\n\tsetAttr \".ed[498:663]\" 11748 127 0 11748 126 0 11748 9936 0 9936 126 0 9936 9814 0\n\t\t 9814 126 0 9814 123 0 9814 122 0 9814 9813 0 9813 122 0 9813 119 0 9813 297 0 297 119 0\n\t\t 9695 10732 0 10732 232 0 232 9695 0 232 273 0 273 9695 0 10733 10732 0 9695 10733 0\n\t\t 9695 9694 0 9694 10733 0 9694 10450 0 10450 10733 0 10450 233 0 233 10733 0 180 233 0\n\t\t 10450 180 0 10450 209 0 209 180 0 209 211 0 211 180 0 211 236 0 236 180 0 11111 236 0\n\t\t 211 11111 0 211 11119 0 11119 11111 0 11119 11120 0 11120 11111 0 11120 11112 0 11112 11111 0\n\t\t 11079 11112 0 11120 11079 0 11120 11093 0 11093 11079 0 11093 11094 0 11094 11079 0\n\t\t 11094 11054 0 11054 11079 0 11055 11054 0 11094 11055 0 11094 217 0 217 11055 0 8676 83 0\n\t\t 83 11080 0 11080 8676 0 11080 1 0 11080 10130 0 10130 1 0 10130 4 0 4 10131 0 10131 7 0\n\t\t 10131 11136 0 11136 7 0 11136 295 0 295 7 0 295 8 0 295 11 0 295 12584 0 12584 11 0\n\t\t 171 12884 0 12884 307 0 310 12884 0 171 310 0 171 195 0 195 310 0 170 195 0 170 196 0\n\t\t 196 195 0 197 196 0 170 197 0 169 197 0 167 197 0 198 199 0 199 203 0 203 198 0 203 200 0\n\t\t 200 198 0 10531 10532 0 10532 201 0 201 10531 0 10532 10059 0 10059 201 0 202 200 0\n\t\t 203 202 0 203 204 0 204 202 0 10059 10772 0 10772 201 0 9738 205 0 205 206 0 206 9738 0\n\t\t 207 206 0 205 207 0 205 208 0 208 207 0 10483 10772 0 10059 10483 0 10451 207 0 208 10451 0\n\t\t 208 210 0 210 10451 0 10485 10451 0 210 10485 0 210 212 0 212 10485 0 182 10485 0\n\t\t 212 182 0 212 10423 0 10423 182 0 183 182 0 10423 183 0 10423 10424 0 10424 183 0\n\t\t 186 183 0 10424 186 0 10424 10443 0 10443 186 0 187 186 0 10443 187 0 10443 216 0\n\t\t 216 187 0 13098 187 0 216 13098 0 216 10514 0 10514 13098 0 219 218 0 218 10447 0\n\t\t 10447 219 0 10447 220 0 220 219 0 10358 10359 0 10359 221 0 221 10358 0 221 264 0\n\t\t 264 10358 0 10447 215 0 215 10291 0 10291 10447 0 10291 220 0 215 214 0 214 10291 0\n\t\t 10359 222 0 222 221 0 222 261 0 261 221 0 214 223 0 223 10291 0 222 10273 0 10273 224 0\n\t\t 224 222 0 224 261 0 10273 10274 0 10274 224 0 10274 258 0;\n\tsetAttr \".ed[664:829]\" 258 224 0 225 223 0 214 225 0 214 213 0 213 225 0 213 10460 0\n\t\t 10460 225 0 10460 10568 0 10568 225 0 10274 226 0 226 227 0 227 10274 0 227 258 0\n\t\t 10569 10568 0 10460 10569 0 226 228 0 228 227 0 228 255 0 255 227 0 10460 10484 0\n\t\t 10484 10569 0 10484 10483 0 10483 10569 0 10483 10060 0 10060 10569 0 228 229 0 229 254 0\n\t\t 254 228 0 254 255 0 10059 10060 0 229 202 0 202 254 0 204 254 0 178 179 0 179 10801 0\n\t\t 10801 178 0 10801 10802 0 10802 178 0 13147 178 0 10802 13147 0 10802 243 0 243 13147 0\n\t\t 245 10801 0 179 245 0 179 13152 0 13152 245 0 10967 245 0 13152 10967 0 13152 13202 0\n\t\t 13202 10967 0 10934 10967 0 13202 10934 0 13202 13201 0 13201 10934 0 10935 10934 0\n\t\t 13201 10935 0 13201 181 0 181 10935 0 10946 10935 0 181 10946 0 181 184 0 184 10946 0\n\t\t 249 10946 0 184 249 0 184 185 0 185 249 0 10877 249 0 185 10877 0 185 188 0 188 10877 0\n\t\t 10878 10877 0 188 10878 0 188 189 0 189 10878 0 231 242 0 242 241 0 241 231 0 241 13157 0\n\t\t 13157 231 0 244 242 0 231 244 0 231 230 0 230 244 0 230 13153 0 13153 244 0 13153 246 0\n\t\t 246 244 0 247 246 0 13153 247 0 13153 234 0 234 247 0 234 235 0 235 247 0 235 248 0\n\t\t 248 247 0 158 248 0 235 158 0 235 237 0 237 158 0 237 238 0 238 158 0 238 163 0 238 164 0\n\t\t 238 13192 0 13192 164 0 13192 239 0 239 164 0 239 165 0 239 168 0 239 240 0 240 168 0\n\t\t 247 150 0 150 246 0 248 150 0 149 246 0 248 151 0 148 246 0 148 244 0 148 242 0 146 242 0\n\t\t 147 242 0 147 241 0 250 203 0 199 250 0 199 251 0 251 250 0 250 204 0 250 252 0 252 204 0\n\t\t 252 253 0 253 204 0 253 254 0 253 255 0 253 11535 0 11535 255 0 255 256 0 256 257 0\n\t\t 257 255 0 257 227 0 257 258 0 257 259 0 259 258 0 259 260 0 260 258 0 260 224 0 260 261 0\n\t\t 260 262 0 262 261 0 262 263 0 263 261 0 263 221 0 263 264 0 263 265 0 265 264 0 253 266 0\n\t\t 266 11535 0 266 267 0 267 11535 0 268 266 0 253 268 0 252 268 0 269 268 0 252 269 0\n\t\t 250 269 0 270 269 0 250 270 0;\n\tsetAttr \".ed[830:995]\" 251 270 0 206 271 0 271 9738 0 272 9738 0 271 272 0\n\t\t 271 11971 0 11971 272 0 201 9739 0 9739 10531 0 11902 13278 0 13278 291 0 291 11902 0\n\t\t 291 298 0 298 11902 0 289 13278 0 11902 289 0 11902 11474 0 11474 289 0 11474 11475 0\n\t\t 11475 289 0 11475 11456 0 11456 289 0 11419 11456 0 11475 11419 0 11475 9897 0 9897 11419 0\n\t\t 9897 9884 0 9884 11419 0 9884 11357 0 11357 11419 0 11326 11357 0 9884 11326 0 9884 9885 0\n\t\t 9885 11326 0 9885 11302 0 11302 11326 0 11302 11261 0 11261 11326 0 11260 282 0 282 10133 0\n\t\t 10133 11260 0 10133 11239 0 11239 11260 0 11238 10132 0 10132 10134 0 10134 11238 0\n\t\t 10134 11240 0 11240 11238 0 11309 11241 0 11241 10135 0 10135 11309 0 10135 12887 0\n\t\t 12887 11309 0 12887 308 0 308 11309 0 308 296 0 296 11309 0 12793 296 0 308 12793 0\n\t\t 308 309 0 309 12793 0 275 13279 0 13279 76 0 76 275 0 76 290 0 290 275 0 13280 275 0\n\t\t 290 13280 0 290 292 0 292 13280 0 293 76 0 13279 293 0 13279 278 0 278 293 0 294 293 0\n\t\t 278 294 0 278 279 0 279 294 0 79 294 0 279 79 0 279 280 0 280 79 0 82 79 0 280 82 0\n\t\t 280 281 0 281 82 0 281 283 0 283 82 0 283 9425 0 9425 82 0 283 284 0 284 9425 0 284 190 0\n\t\t 190 9425 0 191 190 0 284 191 0 284 285 0 285 191 0 192 191 0 285 192 0 285 286 0\n\t\t 286 192 0 12583 192 0 286 12583 0 286 12592 0 12592 12583 0 193 12583 0 12592 193 0\n\t\t 12592 288 0 288 193 0 274 12814 0 12814 9846 0 9846 274 0 9846 299 0 299 274 0 276 274 0\n\t\t 299 276 0 299 300 0 300 276 0 277 276 0 300 277 0 300 301 0 301 277 0 302 277 0 301 302 0\n\t\t 301 177 0 177 302 0 303 302 0 177 303 0 177 176 0 176 303 0 304 303 0 176 304 0 176 175 0\n\t\t 175 304 0 11303 304 0 175 11303 0 175 174 0 174 11303 0 305 11303 0 174 305 0 174 173 0\n\t\t 173 305 0 306 305 0 173 306 0 173 172 0 172 306 0 287 306 0 172 287 0 172 12883 0\n\t\t 12883 287 0 10025 287 0 12883 10025 0 12883 194 0 194 10025 0 10026 10025 0 194 10026 0\n\t\t 194 12902 0 12902 10026 0 311 313 0 313 312 0 312 311 0 312 314 0 314 311 0 315 312 0\n\t\t 313 315 0;\n\tsetAttr \".ed[996:1161]\" 313 316 0 316 315 0 315 317 0 317 312 0 317 318 0 318 312 0\n\t\t 318 314 0 318 319 0 319 314 0 318 320 0 320 319 0 320 321 0 321 319 0 317 322 0 322 318 0\n\t\t 322 320 0 322 10069 0 10069 320 0 10069 10070 0 10070 320 0 10070 321 0 10070 325 0\n\t\t 325 321 0 325 324 0 324 326 0 326 325 0 326 327 0 327 325 0 324 323 0 323 328 0 328 324 0\n\t\t 328 326 0 328 9018 0 9018 326 0 9018 9019 0 9019 326 0 9019 327 0 9019 355 0 355 327 0\n\t\t 321 331 0 331 319 0 331 332 0 332 319 0 332 314 0 332 333 0 333 314 0 333 311 0 333 334 0\n\t\t 334 311 0 332 335 0 335 333 0 335 336 0 336 333 0 336 334 0 336 337 0 337 334 0 338 335 0\n\t\t 332 338 0 331 338 0 339 338 0 331 339 0 331 340 0 340 339 0 321 340 0 325 340 0 341 340 0\n\t\t 325 341 0 327 341 0 12151 341 0 327 12151 0 355 12151 0 12151 356 0 356 341 0 356 343 0\n\t\t 343 341 0 343 339 0 340 343 0 344 336 0 335 344 0 344 337 0 335 345 0 345 344 0 338 345 0\n\t\t 344 346 0 346 337 0 347 338 0 339 347 0 347 345 0 339 348 0 348 347 0 343 348 0 349 343 0\n\t\t 356 349 0 349 348 0 356 350 0 350 349 0 34 9043 0 9043 351 0 351 34 0 351 37 0 25 351 0\n\t\t 351 352 0 352 37 0 25 352 0 352 40 0 352 353 0 353 40 0 353 41 0 29 353 0 352 29 0\n\t\t 352 27 0 353 354 0 354 41 0 29 354 0 354 44 0 31 354 0 316 98 0 97 316 0 97 315 0\n\t\t 101 315 0 101 317 0 103 317 0 103 322 0 9637 322 0 9637 10069 0 323 107 0 109 323 0\n\t\t 109 328 0 371 328 0 371 9018 0 12342 11400 0 11400 11399 0 11399 12342 0 11399 342 0\n\t\t 342 12342 0 12152 342 0 11399 12152 0 11399 11364 0 11364 12152 0 8862 11400 0 12342 8862 0\n\t\t 12342 330 0 330 8862 0 330 329 0 329 8862 0 329 8863 0 8863 8862 0 11364 11494 0\n\t\t 11494 12152 0 11494 359 0 359 12152 0 329 360 0 360 8863 0 360 12065 0 12065 8863 0\n\t\t 8671 12065 0 360 8671 0 360 8815 0 8815 8671 0 8673 8671 0 8815 8673 0 8815 364 0\n\t\t 364 8673 0 8686 8673 0 364 8686 0 364 366 0;\n\tsetAttr \".ed[1162:1327]\" 366 8686 0 2751 8686 0 366 2751 0 11494 2751 0 2751 359 0\n\t\t 366 64 0 64 2751 0 67 8815 0 360 67 0 360 367 0 367 67 0 329 367 0 70 67 0 367 70 0\n\t\t 367 368 0 368 70 0 12148 70 0 368 12148 0 368 17 0 17 12148 0 118 368 0 367 118 0\n\t\t 118 17 0 367 8832 0 8832 118 0 367 8833 0 8833 8832 0 118 18 0 18 17 0 329 8833 0\n\t\t 64 372 0 372 2751 0 372 373 0 373 2751 0 373 359 0 8854 8855 0 8855 375 0 375 8854 0\n\t\t 375 377 0 377 8854 0 378 377 0 375 378 0 375 379 0 379 378 0 379 380 0 380 378 0\n\t\t 380 381 0 381 378 0 382 381 0 380 382 0 380 383 0 383 382 0 384 382 0 383 384 0 383 385 0\n\t\t 385 384 0 8855 11928 0 11928 375 0 387 386 0 386 376 0 376 387 0 376 388 0 388 387 0\n\t\t 387 389 0 389 386 0 389 11815 0 11815 386 0 11812 389 0 387 11812 0 387 11813 0 11813 11812 0\n\t\t 388 11813 0 388 12299 0 12299 11813 0 389 393 0 393 11815 0 11812 393 0 393 8958 0\n\t\t 8958 11815 0 11812 395 0 395 393 0 396 11928 0 11928 390 0 390 396 0 390 397 0 397 396 0\n\t\t 390 394 0 394 397 0 396 375 0 398 11762 0 11762 9085 0 9085 398 0 9085 399 0 399 398 0\n\t\t 398 379 0 379 11762 0 375 11762 0 398 380 0 398 400 0 400 380 0 399 400 0 399 401 0\n\t\t 401 400 0 402 400 0 401 402 0 401 403 0 403 402 0 402 383 0 383 400 0 402 385 0 402 404 0\n\t\t 404 385 0 403 404 0 403 405 0 405 404 0 9085 406 0 406 399 0 394 9086 0 9086 397 0\n\t\t 394 8959 0 8959 9086 0 8959 9270 0 9270 9086 0 8959 9340 0 9340 9270 0 9340 410 0\n\t\t 410 9270 0 411 408 0 408 9289 0 9289 411 0 9289 412 0 412 411 0 412 413 0 413 411 0\n\t\t 413 414 0 414 411 0 415 414 0 413 415 0 413 416 0 416 415 0 417 415 0 416 417 0 416 418 0\n\t\t 418 417 0 9340 9237 0 9237 410 0 420 419 0 419 409 0 409 420 0 409 421 0 421 420 0\n\t\t 409 407 0 407 421 0 421 422 0 422 420 0 422 423 0 423 420 0 9237 9366 0 9366 410 0\n\t\t 9289 424 0 424 412 0 9569 9366 0 9237 9569 0 9237 9238 0 9238 9569 0 427 424 0;\n\tsetAttr \".ed[1328:1493]\" 424 425 0 425 427 0 427 412 0 425 428 0 428 427 0 428 429 0\n\t\t 429 427 0 429 430 0 430 427 0 431 430 0 429 431 0 431 416 0 416 430 0 431 418 0 429 432 0\n\t\t 432 431 0 433 431 0 432 433 0 433 418 0 432 434 0 434 433 0 430 412 0 430 413 0 435 423 0\n\t\t 422 435 0 436 423 0 435 436 0 435 437 0 437 436 0 742 437 0 435 742 0 435 12255 0\n\t\t 12255 742 0 435 439 0 439 12255 0 422 439 0 440 439 0 422 440 0 741 439 0 440 741 0\n\t\t 741 12255 0 440 9759 0 9759 741 0 9760 9759 0 440 9760 0 440 443 0 443 9760 0 440 444 0\n\t\t 444 443 0 422 444 0 444 395 0 395 443 0 443 744 0 744 9760 0 395 744 0 436 420 0\n\t\t 436 445 0 445 420 0 445 419 0 445 426 0 426 419 0 444 393 0 444 446 0 446 393 0 422 446 0\n\t\t 421 446 0 407 446 0 446 8958 0 407 8958 0 11812 744 0 656 12806 0 12806 447 0 447 656 0\n\t\t 447 449 0 449 656 0 449 450 0 450 656 0 450 655 0 655 656 0 658 655 0 450 658 0 450 451 0\n\t\t 451 658 0 451 452 0 452 658 0 452 12535 0 12535 658 0 660 12535 0 452 660 0 452 454 0\n\t\t 454 660 0 454 455 0 455 660 0 455 10332 0 10332 660 0 10333 10332 0 455 10333 0 455 374 0\n\t\t 374 10333 0 447 458 0 458 449 0 458 459 0 459 449 0 460 450 0 449 460 0 459 460 0\n\t\t 460 451 0 460 461 0 461 451 0 462 452 0 451 462 0 461 462 0 462 454 0 462 463 0 463 454 0\n\t\t 464 455 0 454 464 0 463 464 0 464 374 0 464 8856 0 8856 374 0 458 465 0 465 459 0\n\t\t 465 466 0 466 459 0 466 460 0 465 467 0 467 466 0 467 468 0 468 466 0 467 469 0 469 468 0\n\t\t 469 470 0 470 468 0 469 471 0 471 470 0 471 472 0 472 470 0 473 468 0 470 473 0 470 474 0\n\t\t 474 473 0 472 474 0 472 475 0 475 474 0 476 474 0 475 476 0 475 477 0 477 476 0 476 478 0\n\t\t 478 474 0 478 473 0 479 478 0 476 479 0 476 480 0 480 479 0 477 480 0 477 481 0 481 480 0\n\t\t 482 480 0 480 9855 0 9855 482 0 9855 483 0 483 482 0 482 484 0 484 480 0;\n\tsetAttr \".ed[1494:1659]\" 484 479 0 485 484 0 482 485 0 482 486 0 486 485 0 483 486 0\n\t\t 483 746 0 746 486 0 483 11059 0 11059 746 0 478 488 0 488 473 0 489 488 0 478 489 0\n\t\t 479 489 0 489 462 0 462 488 0 461 488 0 490 488 0 461 490 0 490 473 0 490 468 0 490 466 0\n\t\t 490 460 0 489 463 0 489 491 0 491 463 0 484 491 0 491 479 0 491 464 0 491 492 0 492 464 0\n\t\t 484 492 0 485 492 0 11969 492 0 485 11969 0 485 12300 0 12300 11969 0 11969 8856 0\n\t\t 8856 492 0 12421 12300 0 485 12421 0 486 12421 0 746 12421 0 494 496 0 496 495 0\n\t\t 495 494 0 495 497 0 497 494 0 497 498 0 498 494 0 498 499 0 499 494 0 500 499 0 498 500 0\n\t\t 498 501 0 501 500 0 501 502 0 502 500 0 502 503 0 503 500 0 504 503 0 502 504 0 502 505 0\n\t\t 505 504 0 505 506 0 506 504 0 506 507 0 507 504 0 10931 507 0 506 10931 0 506 509 0\n\t\t 509 10931 0 510 508 0 508 10932 0 10932 510 0 10932 10942 0 10942 510 0 512 10941 0\n\t\t 10941 511 0 511 512 0 511 513 0 513 512 0 512 11027 0 11027 514 0 514 512 0 514 10982 0\n\t\t 10982 512 0 503 516 0 516 500 0 504 517 0 517 503 0 517 516 0 517 518 0 518 516 0\n\t\t 518 519 0 519 516 0 520 516 0 519 520 0 519 521 0 521 520 0 522 520 0 521 522 0 522 499 0\n\t\t 499 520 0 522 494 0 522 523 0 523 494 0 523 496 0 523 524 0 524 496 0 523 525 0 525 524 0\n\t\t 525 526 0 526 524 0 527 525 0 523 527 0 522 527 0 521 527 0 500 520 0 528 518 0 517 528 0\n\t\t 517 529 0 529 528 0 530 528 0 529 530 0 529 531 0 531 530 0 532 530 0 531 532 0 531 533 0\n\t\t 533 532 0 531 508 0 508 533 0 510 533 0 534 533 0 533 10941 0 10941 534 0 512 534 0\n\t\t 534 535 0 535 533 0 535 532 0 536 535 0 534 536 0 534 537 0 537 536 0 512 537 0 10982 537 0\n\t\t 10931 531 0 531 507 0 529 507 0 529 504 0 538 530 0 532 538 0 535 538 0 536 538 0\n\t\t 536 539 0 539 538 0 540 539 0 536 540 0 536 541 0 541 540 0 537 541 0 542 540 0 541 542 0\n\t\t 541 543 0;\n\tsetAttr \".ed[1660:1825]\" 543 542 0 544 537 0 537 515 0 515 544 0 544 541 0 544 543 0\n\t\t 515 545 0 545 544 0 515 514 0 514 545 0 514 546 0 546 545 0 514 683 0 683 546 0 11027 683 0\n\t\t 11027 11581 0 11581 683 0 680 547 0 547 513 0 513 680 0 511 680 0 679 9144 0 9144 10942 0\n\t\t 10942 679 0 10932 679 0 9093 509 0 506 9093 0 506 677 0 677 9093 0 505 677 0 505 12481 0\n\t\t 12481 677 0 676 12481 0 505 676 0 502 676 0 501 676 0 501 12459 0 12459 676 0 673 12459 0\n\t\t 501 673 0 498 673 0 497 673 0 497 671 0 671 673 0 12449 671 0 497 12449 0 495 12449 0\n\t\t 577 12958 0 12958 604 0 604 577 0 604 602 0 602 577 0 602 12885 0 12885 577 0 12885 10771 0\n\t\t 10771 577 0 10763 10771 0 12885 10763 0 12885 12851 0 12851 10763 0 12851 10738 0\n\t\t 10738 10763 0 10738 10754 0 10754 10763 0 10716 10754 0 10738 10716 0 10738 10692 0\n\t\t 10692 10716 0 10692 10693 0 10693 10716 0 10693 10519 0 10519 10716 0 10520 10519 0\n\t\t 10693 10520 0 10693 10958 0 10958 10520 0 10958 611 0 611 10520 0 611 10541 0 10541 10520 0\n\t\t 585 10541 0 611 585 0 611 10554 0 10554 585 0 10554 10555 0 10555 585 0 10555 13130 0\n\t\t 13130 585 0 377 10481 0 10481 8854 0 10481 457 0 457 8854 0 9946 10481 0 377 9946 0\n\t\t 378 9946 0 9945 378 0 381 9945 0 381 666 0 666 9945 0 12683 666 0 381 12683 0 382 12683 0\n\t\t 668 12683 0 382 668 0 384 668 0 683 12351 0 12351 546 0 570 546 0 12351 570 0 12351 12912 0\n\t\t 12912 570 0 570 571 0 571 546 0 571 545 0 571 572 0 572 545 0 572 544 0 572 543 0\n\t\t 627 625 0 625 10461 0 10461 627 0 10461 10462 0 10462 627 0 574 573 0 573 10570 0\n\t\t 10570 574 0 10570 10571 0 10571 574 0 12957 576 0 576 575 0 575 12957 0 12957 553 0\n\t\t 553 576 0 553 10548 0 10548 576 0 553 554 0 554 10548 0 554 10511 0 10511 10548 0\n\t\t 554 556 0 556 10511 0 556 580 0 580 10511 0 556 557 0 557 580 0 557 581 0 581 580 0\n\t\t 557 560 0 560 581 0 560 582 0 582 581 0 560 561 0 561 582 0 561 583 0 583 582 0 561 562 0\n\t\t 562 583 0 562 10662 0 10662 583 0 562 13129 0 13129 10662 0 13129 586 0 586 10662 0\n\t\t 13129 565 0 565 586 0 565 587 0;\n\tsetAttr \".ed[1826:1991]\" 587 586 0 10663 10670 0 10670 588 0 588 10663 0 588 10613 0\n\t\t 10613 10663 0 589 10616 0 10616 590 0 590 589 0 590 639 0 639 589 0 591 584 0 584 10663 0\n\t\t 10663 591 0 10613 591 0 10776 584 0 591 10776 0 10208 589 0 639 10208 0 639 592 0\n\t\t 592 10208 0 591 10209 0 10209 10776 0 594 593 0 593 10208 0 10208 594 0 592 594 0\n\t\t 10251 593 0 594 10251 0 594 596 0 596 10251 0 10209 595 0 595 10776 0 595 10739 0\n\t\t 10739 10776 0 10717 10739 0 595 10717 0 595 10296 0 10296 10717 0 634 597 0 597 10251 0\n\t\t 10251 634 0 596 634 0 10296 598 0 598 10717 0 10297 597 0 634 10297 0 634 631 0 631 10297 0\n\t\t 598 10512 0 10512 10717 0 579 10512 0 598 579 0 598 599 0 599 579 0 600 10072 0 10072 10297 0\n\t\t 10297 600 0 631 600 0 599 10073 0 10073 579 0 601 10072 0 600 601 0 600 628 0 628 601 0\n\t\t 10073 578 0 578 579 0 10571 578 0 10073 10571 0 10073 574 0 10462 601 0 601 627 0\n\t\t 628 627 0 10012 9990 0 9990 616 0 616 10012 0 616 552 0 552 10012 0 10012 10013 0\n\t\t 10013 9990 0 10013 9991 0 9991 9990 0 616 617 0 617 552 0 617 606 0 606 552 0 617 620 0\n\t\t 620 606 0 620 555 0 555 606 0 620 621 0 621 555 0 621 558 0 558 555 0 621 10922 0\n\t\t 10922 558 0 10922 559 0 559 558 0 10922 10923 0 10923 559 0 10923 609 0 609 559 0\n\t\t 10923 10948 0 10948 609 0 10948 10959 0 10959 609 0 10948 10949 0 10949 10959 0 10949 563 0\n\t\t 563 10959 0 10949 623 0 623 563 0 623 564 0 564 563 0 603 605 0 605 613 0 613 603 0\n\t\t 613 614 0 614 603 0 614 615 0 615 603 0 615 11199 0 11199 603 0 11200 11199 0 615 11200 0\n\t\t 615 618 0 618 11200 0 618 619 0 619 11200 0 619 11083 0 11083 11200 0 11084 11083 0\n\t\t 619 11084 0 619 622 0 622 11084 0 622 530 0 530 11084 0 530 607 0 607 11084 0 608 607 0\n\t\t 530 608 0 538 608 0 539 608 0 539 610 0 610 608 0 612 610 0 539 612 0 540 612 0 542 612 0\n\t\t 542 13200 0 13200 612 0 519 619 0 618 519 0 519 622 0 618 521 0 518 622 0 518 530 0\n\t\t 618 527 0 615 527 0 614 527 0 614 525 0 614 526 0 613 526 0 624 626 0 626 625 0 625 624 0;\n\tsetAttr \".ed[1992:2157]\" 627 624 0 628 624 0 628 629 0 629 624 0 630 629 0 628 630 0\n\t\t 600 630 0 631 630 0 631 11610 0 11610 630 0 633 632 0 632 631 0 631 633 0 634 633 0\n\t\t 596 633 0 596 635 0 635 633 0 636 635 0 596 636 0 594 636 0 592 636 0 592 637 0 637 636 0\n\t\t 638 637 0 592 638 0 639 638 0 590 638 0 590 640 0 640 638 0 641 630 0 11610 641 0\n\t\t 11610 642 0 642 641 0 641 643 0 643 630 0 643 629 0 643 644 0 644 629 0 644 624 0\n\t\t 644 645 0 645 624 0 645 626 0 575 551 0 551 12957 0 9291 12491 0 12491 13272 0 13272 9291 0\n\t\t 13272 654 0 654 9291 0 654 657 0 657 9291 0 657 9166 0 9166 9291 0 9167 9166 0 657 9167 0\n\t\t 657 13288 0 13288 9167 0 13288 9408 0 9408 9167 0 9408 9197 0 9197 9167 0 11385 9197 0\n\t\t 9408 11385 0 9408 9409 0 9409 11385 0 9409 9395 0 9395 11385 0 9395 11386 0 11386 11385 0\n\t\t 678 11386 0 9395 678 0 9395 9370 0 9370 678 0 12415 12414 0 12414 9369 0 9369 12415 0\n\t\t 9369 9371 0 9371 12415 0 681 12416 0 12416 9372 0 9372 681 0 9372 9524 0 9524 681 0\n\t\t 9078 9525 0 9525 9530 0 9530 9078 0 9530 9040 0 9040 9078 0 684 9040 0 9530 684 0\n\t\t 9530 652 0 652 684 0 652 669 0 669 684 0 669 12905 0 12905 684 0 11509 11505 0 11505 11504 0\n\t\t 11504 11509 0 11504 11510 0 11510 11509 0 11509 646 0 646 11505 0 646 448 0 448 11505 0\n\t\t 11504 11518 0 11518 11510 0 11518 648 0 648 11510 0 11518 453 0 453 648 0 453 659 0\n\t\t 659 648 0 453 12536 0 12536 659 0 12536 661 0 661 659 0 12536 456 0 456 661 0 456 662 0\n\t\t 662 661 0 663 662 0 456 663 0 456 10334 0 10334 663 0 664 663 0 10334 664 0 10334 566 0\n\t\t 566 664 0 566 567 0 567 664 0 567 665 0 665 664 0 567 12675 0 12675 665 0 12675 667 0\n\t\t 667 665 0 12675 568 0 568 667 0 568 12476 0 12476 667 0 568 12684 0 12684 12476 0\n\t\t 12684 12477 0 12477 12476 0 670 9264 0 9264 550 0 550 670 0 550 647 0 647 670 0 670 672 0\n\t\t 672 9264 0 672 9265 0 9265 9264 0 672 674 0 674 9265 0 674 549 0 549 9265 0 674 675 0\n\t\t 675 549 0 675 12460 0 12460 549 0 675 649 0 649 12460 0 649 548 0 548 12460 0;\n\tsetAttr \".ed[2158:2323]\" 649 650 0 650 548 0 650 9091 0 9091 548 0 650 12413 0\n\t\t 12413 9091 0 12413 9092 0 9092 9091 0 12413 651 0 651 9092 0 651 9143 0 9143 9092 0\n\t\t 651 9077 0 9077 9143 0 9077 11582 0 11582 9143 0 9077 682 0 682 11582 0 682 12350 0\n\t\t 12350 11582 0 682 9041 0 9041 12350 0 9041 569 0 569 12350 0 9041 653 0 653 569 0\n\t\t 653 685 0 685 569 0 686 688 0 688 687 0 687 686 0 687 689 0 689 686 0 687 690 0 690 689 0\n\t\t 690 691 0 691 689 0 692 690 0 687 692 0 687 693 0 693 692 0 688 693 0 688 694 0 694 693 0\n\t\t 695 693 0 694 695 0 694 696 0 696 695 0 695 697 0 697 693 0 697 692 0 10401 697 0\n\t\t 695 10401 0 695 10376 0 10376 10401 0 696 10376 0 696 700 0 700 10376 0 701 699 0\n\t\t 699 700 0 700 701 0 700 702 0 702 701 0 701 703 0 703 699 0 703 698 0 698 699 0 11060 703 0\n\t\t 701 11060 0 701 8784 0 8784 11060 0 702 8784 0 702 730 0 730 8784 0 705 696 0 694 705 0\n\t\t 694 706 0 706 705 0 688 706 0 688 707 0 707 706 0 686 707 0 686 708 0 708 707 0 709 706 0\n\t\t 707 709 0 707 710 0 710 709 0 708 710 0 708 711 0 711 710 0 712 705 0 706 712 0 709 712 0\n\t\t 712 713 0 713 705 0 713 714 0 714 705 0 714 696 0 714 700 0 714 715 0 715 700 0 715 702 0\n\t\t 715 9106 0 9106 702 0 9106 730 0 9107 9106 0 715 9107 0 715 718 0 718 9107 0 714 718 0\n\t\t 713 718 0 710 719 0 719 709 0 719 720 0 720 709 0 720 712 0 711 721 0 721 710 0 721 719 0\n\t\t 712 722 0 722 713 0 720 722 0 722 723 0 723 713 0 723 718 0 718 724 0 724 9107 0\n\t\t 723 724 0 724 725 0 725 9107 0 411 726 0 726 408 0 726 406 0 406 408 0 726 399 0\n\t\t 727 726 0 411 727 0 727 399 0 414 727 0 728 727 0 414 728 0 415 728 0 728 403 0 403 727 0\n\t\t 401 727 0 729 728 0 415 729 0 417 729 0 729 405 0 405 728 0 690 472 0 472 691 0 471 691 0\n\t\t 690 475 0 692 475 0 692 477 0 697 477 0 697 481 0 10401 481 0 9855 698 0 698 483 0\n\t\t 703 483 0 703 11059 0 11060 11059 0 8783 716 0;\n\tsetAttr \".ed[2324:2489]\" 716 2828 0 2828 8783 0 2828 8758 0 8758 8783 0 716 717 0\n\t\t 717 2828 0 717 9547 0 9547 2828 0 8758 8760 0 8760 8783 0 8760 734 0 734 8783 0 704 734 0\n\t\t 8760 704 0 8760 9517 0 9517 704 0 9549 9547 0 717 9549 0 717 737 0 737 9549 0 738 704 0\n\t\t 9517 738 0 9517 9518 0 9518 738 0 9518 10493 0 10493 738 0 10493 441 0 441 738 0\n\t\t 10493 12231 0 12231 441 0 12231 12254 0 12254 441 0 12231 10999 0 10999 12254 0 10999 438 0\n\t\t 438 12254 0 10999 2826 0 2826 438 0 2826 9549 0 737 2826 0 2826 12261 0 12261 438 0\n\t\t 441 442 0 442 738 0 442 743 0 743 738 0 743 704 0 442 12153 0 12153 743 0 12153 745 0\n\t\t 745 743 0 12153 391 0 391 745 0 391 392 0 392 745 0 493 743 0 745 493 0 392 493 0\n\t\t 493 12405 0 12405 743 0 12405 487 0 487 743 0 392 747 0 747 493 0 487 704 0 748 12261 0\n\t\t 2826 748 0 2826 749 0 749 748 0 737 749 0 8933 8949 0 8949 12186 0 12186 8933 0 12186 12159 0\n\t\t 12159 8933 0 8949 13302 0 13302 12186 0 13302 13298 0 13298 12186 0 752 12186 0 13298 752 0\n\t\t 752 12718 0 12718 12186 0 12718 12319 0 12319 12186 0 752 11531 0 11531 12718 0 752 754 0\n\t\t 754 11531 0 754 8949 0 8949 12679 0 12679 754 0 12679 9557 0 9557 754 0 754 11948 0\n\t\t 11948 11531 0 2924 757 0 757 12719 0 12719 2924 0 758 11948 0 754 758 0 9557 758 0\n\t\t 752 13320 0 13320 754 0 13298 13320 0 13320 13310 0 13310 754 0 13310 13302 0 8949 13310 0\n\t\t 12423 11531 0 11948 12423 0 11948 11950 0 11950 12423 0 13318 13301 0 13301 13306 0\n\t\t 13306 13318 0 13306 13304 0 13304 13318 0 13317 13305 0 13305 13309 0 13309 13317 0\n\t\t 13309 13321 0 13321 13317 0 13300 763 0 763 759 0 759 13300 0 759 13299 0 13299 13300 0\n\t\t 13307 766 0 766 765 0 765 13307 0 765 751 0 751 13307 0 767 762 0 762 13303 0 13303 767 0\n\t\t 13303 764 0 764 767 0 13065 12998 0 12998 11043 0 11043 13065 0 11043 12503 0 12503 13065 0\n\t\t 9597 12503 0 11043 9597 0 11043 12540 0 12540 9597 0 11043 770 0 770 12540 0 11223 770 0\n\t\t 11043 11223 0 11043 11226 0 11226 11223 0 12596 770 0 11223 12596 0 771 770 0 12596 771 0\n\t\t 12506 12503 0 12503 771 0 771 12506 0 771 12588 0 12588 12506 0 12596 11334 0 11334 771 0\n\t\t 11224 773 0 773 12595 0;\n\tsetAttr \".ed[2490:2655]\" 12595 11224 0 774 12588 0 771 774 0 11334 774 0 9492 770 0\n\t\t 771 9492 0 9492 12540 0 771 9648 0 9648 9492 0 12503 9648 0 9597 9648 0 12596 12598 0\n\t\t 12598 11334 0 12598 11336 0 11336 11334 0 9490 12623 0 12623 9599 0 9599 9490 0 9599 12649 0\n\t\t 12649 9490 0 9489 9491 0 9491 9647 0 9647 9489 0 9647 12624 0 12624 9489 0 12650 12541 0\n\t\t 12541 780 0 780 12650 0 780 778 0 778 12650 0 9598 9596 0 9596 781 0 781 9598 0 781 777 0\n\t\t 777 9598 0 776 779 0 779 782 0 782 776 0 782 783 0 783 776 0 9570 9571 0 9571 9644 0\n\t\t 9644 9570 0 9644 9612 0 9612 9570 0 9627 9570 0 9612 9627 0 9612 9613 0 9613 9627 0\n\t\t 9617 9627 0 9613 9617 0 9613 962 0 962 9617 0 9618 9617 0 962 9618 0 962 11520 0\n\t\t 11520 9618 0 9687 9618 0 11520 9687 0 11520 11519 0 11519 9687 0 9662 9687 0 11519 9662 0\n\t\t 11519 12753 0 12753 9662 0 9663 9662 0 12753 9663 0 12753 12754 0 12754 9663 0 9645 9644 0\n\t\t 9571 9645 0 9571 9621 0 9621 9645 0 986 9645 0 9621 986 0 9621 10234 0 10234 986 0\n\t\t 984 986 0 10234 984 0 10234 798 0 798 984 0 982 984 0 798 982 0 798 799 0 799 982 0\n\t\t 12959 982 0 799 12959 0 799 10161 0 10161 12959 0 11773 12959 0 10161 11773 0 10161 10162 0\n\t\t 10162 11773 0 11774 11773 0 10162 11774 0 10162 802 0 802 11774 0 976 11774 0 802 976 0\n\t\t 802 803 0 803 976 0 12926 976 0 803 12926 0 803 804 0 804 12926 0 12916 12926 0 804 12916 0\n\t\t 804 806 0 806 12916 0 12801 12916 0 806 12801 0 806 9785 0 9785 12801 0 12754 12801 0\n\t\t 9785 12754 0 9785 9663 0 794 807 0 807 847 0 847 794 0 847 817 0 817 794 0 807 9784 0\n\t\t 9784 845 0 845 807 0 845 847 0 9784 10112 0 10112 809 0 809 9784 0 809 845 0 10112 10150 0\n\t\t 10150 810 0 810 10112 0 810 809 0 10150 10149 0 10149 811 0 811 10150 0 811 810 0\n\t\t 840 811 0 10149 840 0 10149 801 0 801 840 0 837 840 0 801 837 0 801 800 0 800 837 0\n\t\t 835 837 0 800 835 0 800 10335 0 10335 835 0 812 835 0 10335 812 0 10335 10317 0 10317 812 0\n\t\t 832 812 0 10317 832 0 10317 797 0 797 832 0 830 832 0 797 830 0 797 796 0 796 830 0\n\t\t 813 830 0 796 813 0 796 786 0 786 813 0 814 813 0;\n\tsetAttr \".ed[2656:2821]\" 786 814 0 786 784 0 784 814 0 815 814 0 784 815 0 784 788 0\n\t\t 788 815 0 816 815 0 788 816 0 788 790 0 790 816 0 828 816 0 790 828 0 790 791 0 791 828 0\n\t\t 954 828 0 791 954 0 791 792 0 792 954 0 956 954 0 792 956 0 792 793 0 793 956 0 817 956 0\n\t\t 793 817 0 793 794 0 818 819 0 819 813 0 813 818 0 814 818 0 820 818 0 814 820 0 815 820 0\n\t\t 820 821 0 821 818 0 821 822 0 822 818 0 822 819 0 822 823 0 823 819 0 824 820 0 815 824 0\n\t\t 816 824 0 824 825 0 825 820 0 825 821 0 824 826 0 826 825 0 816 827 0 827 824 0 828 827 0\n\t\t 827 829 0 829 824 0 819 830 0 819 831 0 831 830 0 823 831 0 831 832 0 831 833 0 833 832 0\n\t\t 833 812 0 833 834 0 834 812 0 834 835 0 834 836 0 836 835 0 836 837 0 836 838 0 838 837 0\n\t\t 839 837 0 838 839 0 839 840 0 839 841 0 841 840 0 841 811 0 841 842 0 842 811 0 842 810 0\n\t\t 842 843 0 843 810 0 843 809 0 843 844 0 844 809 0 844 845 0 844 846 0 846 845 0 846 847 0\n\t\t 846 848 0 848 847 0 849 847 0 848 849 0 849 958 0 958 847 0 849 850 0 850 958 0 958 817 0\n\t\t 846 851 0 851 848 0 851 852 0 852 848 0 852 849 0 852 853 0 853 849 0 844 854 0 854 846 0\n\t\t 854 851 0 843 855 0 855 844 0 855 854 0 856 855 0 843 856 0 842 856 0 852 857 0 857 853 0\n\t\t 857 858 0 858 853 0 851 859 0 859 852 0 859 857 0 859 10467 0 10467 857 0 10467 9070 0\n\t\t 9070 857 0 9070 858 0 9070 9071 0 9071 858 0 854 861 0 861 851 0 861 859 0 861 10468 0\n\t\t 10468 859 0 10468 10467 0 855 863 0 863 854 0 863 861 0 863 1007 0 1007 861 0 1007 10468 0\n\t\t 856 864 0 864 855 0 864 863 0 864 12090 0 12090 863 0 12090 1007 0 866 856 0 842 866 0\n\t\t 841 866 0 867 866 0 841 867 0 839 867 0 12439 867 0 839 12439 0 839 869 0 869 12439 0\n\t\t 1041 12090 0 864 1041 0 864 13071 0 13071 1041 0 11589 13071 0 864 11589 0 856 11589 0\n\t\t 856 871 0 871 11589 0 866 871 0 867 871 0 872 869 0;\n\tsetAttr \".ed[2822:2987]\" 839 872 0 838 872 0 873 872 0 838 873 0 836 873 0 874 873 0\n\t\t 836 874 0 834 874 0 875 874 0 834 875 0 833 875 0 876 875 0 833 876 0 831 876 0 823 876 0\n\t\t 874 877 0 877 873 0 877 878 0 878 873 0 877 8667 0 8667 878 0 8667 8680 0 8680 878 0\n\t\t 875 879 0 879 874 0 879 877 0 879 8666 0 8666 877 0 8666 8667 0 876 880 0 880 875 0\n\t\t 880 879 0 880 10515 0 10515 879 0 10515 8666 0 823 882 0 882 876 0 882 880 0 883 882 0\n\t\t 823 883 0 822 883 0 884 883 0 822 884 0 821 884 0 884 11089 0 11089 883 0 11089 12120 0\n\t\t 12120 883 0 12120 882 0 12120 10516 0 10516 882 0 10516 880 0 10516 10515 0 887 884 0\n\t\t 821 887 0 825 887 0 11090 11089 0 884 11090 0 887 11090 0 8680 8684 0 8684 1044 0\n\t\t 1044 8680 0 1044 878 0 1044 13212 0 13212 878 0 13212 890 0 890 878 0 890 873 0 890 872 0\n\t\t 13212 11673 0 11673 890 0 890 869 0 11671 869 0 890 11671 0 11673 11671 0 11671 12439 0\n\t\t 12439 11619 0 11619 867 0 11619 871 0 11619 11587 0 11587 871 0 11587 11589 0 10965 1013 0\n\t\t 1013 10994 0 10994 10965 0 10994 10995 0 10995 10965 0 10966 10965 0 10995 10966 0\n\t\t 10995 1000 0 1000 10966 0 1016 10966 0 1000 1016 0 1000 895 0 895 1016 0 10888 10994 0\n\t\t 1013 10888 0 1013 8947 0 8947 10888 0 10700 10888 0 8947 10700 0 8947 10714 0 10714 10700 0\n\t\t 10701 10700 0 10714 10701 0 10714 10715 0 10715 10701 0 10766 10701 0 10715 10766 0\n\t\t 10715 9546 0 9546 10766 0 1045 10766 0 9546 1045 0 9546 1023 0 1023 1045 0 1042 1045 0\n\t\t 1023 1042 0 1023 9266 0 9266 1042 0 12081 1042 0 9266 12081 0 9266 9267 0 9267 12081 0\n\t\t 1006 12081 0 9267 1006 0 9267 903 0 903 1006 0 1008 1006 0 903 1008 0 903 1029 0\n\t\t 1029 1008 0 9964 1008 0 1029 9964 0 1029 9401 0 9401 9964 0 9965 9964 0 9401 9965 0\n\t\t 9401 12450 0 12450 9965 0 1011 9965 0 12450 1011 0 907 1011 0 12450 907 0 12450 1032 0\n\t\t 1032 907 0 908 907 0 1032 908 0 1032 12426 0 12426 908 0 910 912 0 912 911 0 911 910 0\n\t\t 911 913 0 913 910 0 914 911 0 912 914 0 912 915 0 915 914 0 916 914 0 915 916 0 915 917 0\n\t\t 917 916 0 918 916 0 917 918 0 917 919 0 919 918 0;\n\tsetAttr \".ed[2988:3153]\" 920 918 0 919 920 0 919 921 0 921 920 0 922 920 0 921 922 0\n\t\t 921 923 0 923 922 0 924 922 0 923 924 0 923 925 0 925 924 0 926 924 0 925 926 0 925 927 0\n\t\t 927 926 0 928 926 0 927 928 0 927 929 0 929 928 0 930 928 0 929 930 0 929 931 0 931 930 0\n\t\t 932 930 0 931 932 0 931 933 0 933 932 0 934 932 0 933 934 0 933 935 0 935 934 0 936 934 0\n\t\t 935 936 0 935 937 0 937 936 0 938 936 0 937 938 0 937 939 0 939 938 0 937 940 0 940 939 0\n\t\t 940 941 0 941 939 0 935 942 0 942 937 0 942 940 0 933 943 0 943 935 0 943 942 0 931 944 0\n\t\t 944 933 0 944 943 0 929 945 0 945 931 0 945 944 0 946 945 0 929 946 0 927 946 0 947 946 0\n\t\t 927 947 0 925 947 0 948 947 0 925 948 0 923 948 0 949 948 0 923 949 0 921 949 0 950 949 0\n\t\t 921 950 0 919 950 0 951 950 0 919 951 0 917 951 0 952 951 0 917 952 0 915 952 0 912 952 0\n\t\t 912 953 0 953 952 0 954 827 0 954 955 0 955 827 0 956 955 0 956 957 0 957 955 0 817 957 0\n\t\t 958 957 0 785 11245 0 11245 11244 0 11244 785 0 11244 787 0 787 785 0 11244 12456 0\n\t\t 12456 789 0 789 11244 0 789 787 0 12456 12304 0 12304 12722 0 12722 12456 0 12722 789 0\n\t\t 12304 12303 0 12303 966 0 966 12304 0 966 12722 0 12303 11525 0 11525 965 0 965 12303 0\n\t\t 965 966 0 11525 11526 0 11526 970 0 970 11525 0 970 965 0 11526 12281 0 12281 808 0\n\t\t 808 11526 0 808 970 0 12281 991 0 991 971 0 971 12281 0 971 808 0 991 11972 0 11972 805 0\n\t\t 805 991 0 805 971 0 11972 11973 0 11973 974 0 974 11972 0 974 805 0 11973 12580 0\n\t\t 12580 12943 0 12943 11973 0 12943 974 0 12580 990 0 990 978 0 978 12580 0 978 12943 0\n\t\t 977 978 0 990 977 0 990 12558 0 12558 977 0 12558 12430 0 12430 977 0 12430 980 0\n\t\t 980 977 0 12430 989 0 989 980 0 989 12475 0 12475 980 0 989 12440 0 12440 12474 0\n\t\t 12474 989 0 12474 12475 0 12440 12451 0 12451 12501 0 12501 12440 0 12501 12474 0\n\t\t 12451 988 0 988 795 0 795 12451 0 795 12501 0 988 11245 0 785 988 0 785 795 0 987 961 0\n\t\t 961 959 0;\n\tsetAttr \".ed[3154:3319]\" 959 987 0 960 987 0 959 960 0 960 12482 0 12482 987 0\n\t\t 985 987 0 12482 985 0 985 983 0 983 987 0 12429 987 0 983 12429 0 12429 981 0 981 987 0\n\t\t 981 12557 0 12557 987 0 981 979 0 979 12557 0 12557 975 0 975 987 0 973 987 0 975 973 0\n\t\t 973 972 0 972 987 0 12235 987 0 972 12235 0 12235 969 0 969 987 0 968 987 0 969 968 0\n\t\t 968 967 0 967 987 0 964 987 0 967 964 0 964 963 0 963 987 0 963 961 0 911 8830 0\n\t\t 8830 913 0 8830 8995 0 8995 913 0 8995 12288 0 12288 913 0 12288 993 0 993 913 0\n\t\t 12288 1015 0 1015 993 0 8831 8830 0 911 8831 0 914 8831 0 9476 8831 0 914 9476 0\n\t\t 916 9476 0 9037 9476 0 916 9037 0 918 9037 0 8749 9037 0 918 8749 0 920 8749 0 8750 8749 0\n\t\t 920 8750 0 922 8750 0 9500 8750 0 922 9500 0 924 9500 0 9253 9500 0 924 9253 0 926 9253 0\n\t\t 1028 9253 0 926 1028 0 928 1028 0 9376 1028 0 928 9376 0 930 9376 0 8896 9376 0 930 8896 0\n\t\t 932 8896 0 8897 8896 0 932 8897 0 934 8897 0 1033 8897 0 934 1033 0 936 1033 0 12484 1033 0\n\t\t 936 12484 0 938 12484 0 885 12138 0 12138 893 0 893 885 0 893 1001 0 1001 885 0 886 1001 0\n\t\t 893 886 0 893 892 0 892 886 0 892 896 0 896 886 0 896 881 0 881 886 0 896 897 0 897 881 0\n\t\t 897 1002 0 1002 881 0 897 899 0 899 1002 0 899 1003 0 1003 1002 0 899 901 0 901 1003 0\n\t\t 901 1004 0 1004 1003 0 885 888 0 888 12138 0 888 13025 0 13025 12138 0 901 12110 0\n\t\t 12110 1004 0 12110 8685 0 8685 1004 0 865 902 0 902 8841 0 8841 865 0 8841 12166 0\n\t\t 12166 865 0 8841 8842 0 8842 12166 0 8842 862 0 862 12166 0 8842 904 0 904 862 0\n\t\t 904 860 0 860 862 0 904 905 0 905 860 0 905 1009 0 1009 860 0 1010 1009 0 905 1010 0\n\t\t 905 12383 0 12383 1010 0 865 11752 0 11752 902 0 11752 11753 0 11753 902 0 1012 8946 0\n\t\t 8946 891 0 891 1012 0 891 1014 0 1014 1012 0 992 1014 0 891 992 0 891 894 0 894 992 0\n\t\t 12289 992 0 894 12289 0 894 12534 0 12534 12289 0 12534 1017 0 1017 12289 0 1017 1018 0\n\t\t 1018 12289 0 1019 8946 0 1012 1019 0 1012 1020 0 1020 1019 0 898 1019 0 1020 898 0;\n\tsetAttr \".ed[3320:3485]\" 1020 1021 0 1021 898 0 900 898 0 1021 900 0 1021 994 0\n\t\t 994 900 0 1022 900 0 994 1022 0 994 995 0 995 1022 0 995 996 0 996 1022 0 996 9521 0\n\t\t 9521 1022 0 996 1024 0 1024 9521 0 1024 1025 0 1025 9521 0 1026 1025 0 1024 1026 0\n\t\t 1024 1027 0 1027 1026 0 12458 1026 0 1027 12458 0 1027 9254 0 9254 12458 0 9400 12458 0\n\t\t 9254 9400 0 9254 1030 0 1030 9400 0 1031 9400 0 1030 1031 0 1030 997 0 997 1031 0\n\t\t 906 1031 0 997 906 0 997 998 0 998 906 0 12425 906 0 998 12425 0 998 12222 0 12222 12425 0\n\t\t 12222 999 0 999 12425 0 999 909 0 909 12425 0 868 11672 0 11672 11857 0 11857 868 0\n\t\t 11857 11617 0 11617 868 0 11617 11618 0 11618 868 0 11588 1036 0 1036 11616 0 11616 11588 0\n\t\t 11616 13314 0 13314 11588 0 1038 1037 0 1037 13313 0 13313 1038 0 13313 11728 0 11728 1038 0\n\t\t 870 1038 0 11728 870 0 11728 11729 0 11729 870 0 11751 870 0 11729 11751 0 11729 11754 0\n\t\t 11754 11751 0 11854 11856 0 11856 1034 0 1034 11854 0 1034 1043 0 1043 11854 0 11860 11855 0\n\t\t 11855 11674 0 11674 11860 0 11674 889 0 889 11860 0 11975 11860 0 889 11975 0 889 13211 0\n\t\t 13211 11975 0 12109 11975 0 13211 12109 0 13211 1005 0 1005 12109 0 1042 1040 0 1040 1045 0\n\t\t 1040 1046 0 1046 1045 0 1040 1035 0 1035 1046 0 1040 1047 0 1047 1035 0 1040 1039 0\n\t\t 1039 1047 0 1035 1048 0 1048 1046 0 1035 1049 0 1049 1048 0 1035 1050 0 1050 1049 0\n\t\t 11904 1053 0 1053 1052 0 1052 11904 0 1052 11424 0 11424 11904 0 1052 1055 0 1055 11424 0\n\t\t 1055 11425 0 11425 11424 0 1055 11415 0 11415 11425 0 11415 11472 0 11472 11425 0\n\t\t 11415 1059 0 1059 11472 0 1059 1237 0 1237 11472 0 1059 1060 0 1060 1237 0 1060 1240 0\n\t\t 1240 1237 0 1060 1061 0 1061 1240 0 1061 1238 0 1238 1240 0 1061 1075 0 1075 1238 0\n\t\t 1075 9952 0 9952 1238 0 11904 1257 0 1257 1053 0 1257 1062 0 1062 1053 0 1257 11523 0\n\t\t 11523 1062 0 11523 11307 0 11307 1062 0 11523 11524 0 11524 11307 0 11524 1064 0\n\t\t 1064 11307 0 11524 12546 0 12546 1064 0 12546 1065 0 1065 1064 0 12546 12581 0 12581 1065 0\n\t\t 12581 1067 0 1067 1065 0 12581 1249 0 1249 1067 0 1249 1068 0 1068 1067 0 1249 1247 0\n\t\t 1247 1068 0 1247 1069 0 1069 1068 0 1247 9660 0 9660 1069 0 9660 1070 0 1070 1069 0;\n\tsetAttr \".ed[3486:3651]\" 9660 9661 0 9661 1070 0 9661 1071 0 1071 1070 0 9661 12731 0\n\t\t 12731 1071 0 12731 11172 0 11172 1071 0 12731 9951 0 9951 11172 0 9951 1074 0 1074 11172 0\n\t\t 9951 9952 0 9952 1074 0 1075 1074 0 1116 11173 0 11173 11216 0 11216 1116 0 11216 1076 0\n\t\t 1076 1116 0 1116 1077 0 1077 11173 0 1077 1073 0 1073 11173 0 1077 1113 0 1113 1073 0\n\t\t 1113 11318 0 11318 1073 0 1113 1078 0 1078 11318 0 1078 11290 0 11290 11318 0 1078 1079 0\n\t\t 1079 11290 0 1079 11230 0 11230 11290 0 1079 1109 0 1109 11230 0 1109 11229 0 11229 11230 0\n\t\t 1109 1080 0 1080 11229 0 1080 11255 0 11255 11229 0 1080 1105 0 1105 11255 0 1105 11270 0\n\t\t 11270 11255 0 1105 1081 0 1081 11270 0 1081 11308 0 11308 11270 0 1081 1102 0 1102 11308 0\n\t\t 1102 1063 0 1063 11308 0 1102 1100 0 1100 1063 0 1100 11633 0 11633 1063 0 1100 1082 0\n\t\t 1082 11633 0 1082 11800 0 11800 11633 0 1082 1087 0 1087 11800 0 1087 11848 0 11848 11800 0\n\t\t 1087 1083 0 1083 11848 0 1083 11414 0 11414 11848 0 1083 1094 0 1094 11414 0 1094 1057 0\n\t\t 1057 11414 0 1094 1099 0 1099 1057 0 1099 11376 0 11376 1057 0 1099 1084 0 1084 11376 0\n\t\t 1084 11377 0 11377 11376 0 1084 1085 0 1085 11377 0 1085 11546 0 11546 11377 0 1085 1076 0\n\t\t 1076 11546 0 11216 11546 0 1086 1087 0 1082 1086 0 1082 1088 0 1088 1086 0 1086 1089 0\n\t\t 1089 1087 0 1089 1083 0 1090 1089 0 1086 1090 0 1086 1091 0 1091 1090 0 1088 1091 0\n\t\t 1088 1092 0 1092 1091 0 1089 1093 0 1093 1083 0 1093 1094 0 1090 1095 0 1095 1089 0\n\t\t 1095 1093 0 1095 1096 0 1096 1093 0 1097 1094 0 1093 1097 0 1097 1098 0 1098 1094 0\n\t\t 1098 1099 0 1100 1088 0 1100 1101 0 1101 1088 0 1101 1092 0 1102 1101 0 1102 1103 0\n\t\t 1103 1101 0 1081 1103 0 1081 1104 0 1104 1103 0 1105 1104 0 1105 1106 0 1106 1104 0\n\t\t 1080 1106 0 1080 1107 0 1107 1106 0 1108 1107 0 1080 1108 0 1109 1108 0 1109 1110 0\n\t\t 1110 1108 0 1079 1110 0 1079 1111 0 1111 1110 0 1078 1111 0 1078 1112 0 1112 1111 0\n\t\t 1113 1112 0 1113 1114 0 1114 1112 0 1077 1114 0 1077 1115 0 1115 1114 0 1116 1115 0\n\t\t 1116 1117 0 1117 1115 0 1118 1117 0 1116 1118 0 1116 1233 0 1233 1118 0 1076 1233 0\n\t\t 1233 1119 0 1119 1118 0 1120 1115 0 1117 1120 0 1117 1121 0 1121 1120 0 1118 1121 0;\n\tsetAttr \".ed[3652:3817]\" 1118 1122 0 1122 1121 0 1120 1123 0 1123 1115 0 1123 1114 0\n\t\t 1123 1124 0 1124 1114 0 1124 1112 0 1124 1125 0 1125 1112 0 1126 1121 0 1122 1126 0\n\t\t 1122 1127 0 1127 1126 0 1128 1120 0 1121 1128 0 1126 1128 0 11030 1128 0 1126 11030 0\n\t\t 1126 11031 0 11031 11030 0 1127 11031 0 1127 1284 0 1284 11031 0 1131 1123 0 1120 1131 0\n\t\t 1128 1131 0 11030 1282 0 1282 1128 0 1282 1131 0 1132 1124 0 1123 1132 0 1131 1132 0\n\t\t 1282 11034 0 11034 1131 0 11034 1132 0 1134 1125 0 1124 1134 0 1132 1134 0 11034 11035 0\n\t\t 11035 1132 0 11035 1134 0 11035 11051 0 11051 1134 0 11051 11053 0 11053 1134 0 11169 1134 0\n\t\t 11053 11169 0 11169 1125 0 11169 1139 0 1139 1125 0 11169 11154 0 11154 1139 0 11154 11085 0\n\t\t 11085 1139 0 11085 1142 0 1142 1139 0 11085 11087 0 11087 1142 0 1108 1142 0 11087 1108 0\n\t\t 11087 1144 0 1144 1108 0 1110 1142 0 1110 1145 0 1145 1142 0 1145 1139 0 1111 1145 0\n\t\t 1111 1125 0 1125 1145 0 1144 1146 0 1146 1108 0 1146 1107 0 1146 1147 0 1147 1107 0\n\t\t 1147 1106 0 1147 1148 0 1148 1106 0 1148 1104 0 1148 1149 0 1149 1104 0 1149 1103 0\n\t\t 1149 1150 0 1150 1103 0 1150 1101 0 1150 1092 0 1151 1148 0 1147 1151 0 1147 1152 0\n\t\t 1152 1151 0 8859 1151 0 1152 8859 0 1152 10749 0 10749 8859 0 1154 1149 0 1148 1154 0\n\t\t 1151 1154 0 8859 8858 0 8858 1151 0 8858 1154 0 1155 1150 0 1149 1155 0 1154 1155 0\n\t\t 8858 8988 0 8988 1154 0 8988 1155 0 1156 1092 0 1150 1156 0 1155 1156 0 1156 1157 0\n\t\t 1157 1092 0 1157 1091 0 1157 1158 0 1158 1091 0 1158 1090 0 8927 1158 0 1157 8927 0\n\t\t 1157 8928 0 8928 8927 0 1156 8928 0 1156 12275 0 12275 8928 0 8988 12275 0 12275 1155 0\n\t\t 1158 1160 0 1160 1090 0 1160 1095 0 12327 1160 0 1158 12327 0 8927 12327 0 1152 1315 0\n\t\t 1315 10749 0 1152 12362 0 12362 1315 0 1163 12362 0 1152 1163 0 1147 1163 0 1146 1163 0\n\t\t 1163 10141 0 10141 12362 0 1144 1163 0 10139 10141 0 1163 10139 0 1144 10139 0 11087 10139 0\n\t\t 1315 10750 0 10750 10749 0 9116 10506 0 10506 10505 0 10505 9116 0 10505 1274 0 1274 9116 0\n\t\t 10505 1287 0 1287 1274 0 1287 1167 0 1167 1274 0 1287 1288 0 1288 1167 0 1288 1281 0\n\t\t 1281 1167 0 9116 11985 0 11985 10506 0 11985 1291 0 1291 10506 0 11985 11959 0 11959 1291 0;\n\tsetAttr \".ed[3818:3983]\" 11959 11888 0 11888 1291 0 11959 11863 0 11863 11888 0\n\t\t 11863 11889 0 11889 11888 0 11863 11864 0 11864 11889 0 11864 1294 0 1294 11889 0\n\t\t 11864 11884 0 11884 1294 0 11884 12172 0 12172 1294 0 11884 10042 0 10042 12172 0\n\t\t 10042 8867 0 8867 12172 0 10042 10594 0 10594 8867 0 10594 8868 0 8868 8867 0 10594 10595 0\n\t\t 10595 8868 0 10595 12225 0 12225 8868 0 10595 10614 0 10614 12225 0 10614 1300 0\n\t\t 1300 12225 0 10614 1283 0 1283 1300 0 1283 1302 0 1302 1300 0 1283 10756 0 10756 1302 0\n\t\t 10756 10773 0 10773 1302 0 10756 10757 0 10757 10773 0 1183 10773 0 10757 1183 0\n\t\t 1183 10694 0 10694 10773 0 1183 1185 0 1185 10694 0 1185 10695 0 10695 10694 0 1187 1189 0\n\t\t 1189 1188 0 1188 1187 0 1188 1190 0 1190 1187 0 1188 1191 0 1191 1190 0 1191 1192 0\n\t\t 1192 1190 0 1191 1193 0 1193 1192 0 1193 1194 0 1194 1192 0 1193 1195 0 1195 1194 0\n\t\t 1195 1196 0 1196 1194 0 1195 1197 0 1197 1196 0 1197 1198 0 1198 1196 0 1197 1199 0\n\t\t 1199 1198 0 1199 1200 0 1200 1198 0 1199 1201 0 1201 1200 0 1201 1202 0 1202 1200 0\n\t\t 1201 1203 0 1203 1202 0 1203 1204 0 1204 1202 0 1203 1205 0 1205 1204 0 1205 1206 0\n\t\t 1206 1204 0 1205 1207 0 1207 1206 0 1207 1208 0 1208 1206 0 1207 1209 0 1209 1208 0\n\t\t 1209 1210 0 1210 1208 0 1209 1211 0 1211 1210 0 1211 1212 0 1212 1210 0 1211 1213 0\n\t\t 1213 1212 0 1213 1214 0 1214 1212 0 1213 1215 0 1215 1214 0 1215 1216 0 1216 1214 0\n\t\t 1217 1214 0 1216 1217 0 1216 1218 0 1218 1217 0 1217 1219 0 1219 1214 0 1219 1212 0\n\t\t 1219 1220 0 1220 1212 0 1220 1210 0 1220 1221 0 1221 1210 0 1221 1208 0 1221 1222 0\n\t\t 1222 1208 0 1222 1206 0 1222 1223 0 1223 1206 0 1223 1204 0 1223 1224 0 1224 1204 0\n\t\t 1224 1202 0 1224 1225 0 1225 1202 0 1225 1200 0 1225 1226 0 1226 1200 0 1226 1198 0\n\t\t 1226 1227 0 1227 1198 0 1227 1196 0 1227 1228 0 1228 1196 0 1228 1194 0 1228 1229 0\n\t\t 1229 1194 0 1229 1192 0 1229 1230 0 1230 1192 0 1230 1190 0 1098 1231 0 1231 1099 0\n\t\t 1231 1084 0 1231 1232 0 1232 1084 0 1232 1085 0 1232 1233 0 1233 1085 0 1260 12963 0\n\t\t 12963 1051 0 1051 1260 0 1051 1054 0 1054 1260 0 1056 13002 0 13002 1260 0 1260 1056 0\n\t\t 1054 1056 0 1058 1266 0 1266 13002 0 13002 1058 0 1056 1058 0;\n\tsetAttr \".ed[3984:4149]\" 12747 12752 0 12752 1266 0 1266 12747 0 1058 12747 0\n\t\t 9616 12720 0 12720 12752 0 12752 9616 0 12747 9616 0 9615 12706 0 12706 12720 0 12720 9615 0\n\t\t 9616 9615 0 1243 11685 0 11685 12706 0 12706 1243 0 9615 1243 0 1242 11684 0 11684 11685 0\n\t\t 11685 1242 0 1243 1242 0 1072 12736 0 12736 11684 0 11684 1072 0 1242 1072 0 1246 11731 0\n\t\t 11731 12736 0 12736 1246 0 1072 1246 0 1245 11730 0 11730 11731 0 11731 1245 0 1246 1245 0\n\t\t 12622 12634 0 12634 11730 0 11730 12622 0 1245 12622 0 12603 9450 0 9450 12634 0\n\t\t 12634 12603 0 12622 12603 0 12603 1066 0 1066 9449 0 9449 12603 0 9449 9450 0 1066 1252 0\n\t\t 1252 12561 0 12561 1066 0 12561 9449 0 1256 1261 0 1261 12561 0 12561 1256 0 1252 1256 0\n\t\t 1254 13294 0 13294 1261 0 1261 1254 0 1256 1254 0 13308 13312 0 13312 13294 0 13294 13308 0\n\t\t 1254 13308 0 12963 13312 0 13312 1051 0 13308 1051 0 1259 12962 0 12962 1235 0 1235 1259 0\n\t\t 1234 12962 0 1259 1234 0 1259 1258 0 1258 1234 0 1255 1258 0 1259 1255 0 1259 12562 0\n\t\t 12562 1255 0 1253 12562 0 1259 1253 0 1259 1250 0 1250 1253 0 1259 1248 0 1248 1250 0\n\t\t 1248 1251 0 1251 1250 0 1259 1262 0 1262 1248 0 1263 1262 0 1259 1263 0 1259 1244 0\n\t\t 1244 1263 0 1264 1244 0 1259 1264 0 1259 1265 0 1265 1264 0 1241 1265 0 1259 1241 0\n\t\t 1259 1239 0 1239 1241 0 1236 1239 0 1259 1236 0 1259 12751 0 12751 1236 0 1235 12751 0\n\t\t 1285 1188 0 1189 1285 0 1189 12093 0 12093 1285 0 1189 1268 0 1268 12093 0 1268 1286 0\n\t\t 1286 12093 0 12130 1286 0 1268 12130 0 1285 8724 0 8724 1188 0 8724 1191 0 8724 12365 0\n\t\t 12365 1191 0 12365 1193 0 12365 1293 0 1293 1193 0 1293 1195 0 1293 11816 0 11816 1195 0\n\t\t 11816 1197 0 11816 11817 0 11817 1197 0 11817 1199 0 11817 1295 0 1295 1199 0 1295 1201 0\n\t\t 1295 8878 0 8878 1201 0 8878 1203 0 8878 8879 0 8879 1203 0 8879 1205 0 8879 1301 0\n\t\t 1301 1205 0 1301 1207 0 1301 10151 0 10151 1207 0 10151 1209 0 10151 10152 0 10152 1209 0\n\t\t 10152 1211 0 10152 12301 0 12301 1211 0 12301 1213 0 12301 12308 0 12308 1213 0 12308 1215 0\n\t\t 9115 12332 0 12332 1275 0 1275 9115 0 1275 1276 0 1276 9115 0 1276 1159 0 1159 9115 0\n\t\t 1159 1277 0 1277 9115 0 1168 1277 0 1159 1168 0 1159 1278 0 1278 1168 0 1169 1168 0\n\t\t 1278 1169 0 1278 1279 0;\n\tsetAttr \".ed[4150:4315]\" 1279 1169 0 1171 1169 0 1279 1171 0 1279 1280 0 1280 1171 0\n\t\t 1173 1171 0 1280 1173 0 1280 1153 0 1153 1173 0 1161 1275 0 12332 1161 0 12332 12333 0\n\t\t 12333 1161 0 11885 1173 0 1153 11885 0 1153 10751 0 10751 11885 0 1177 1176 0 1176 1135 0\n\t\t 1135 1177 0 1135 1133 0 1133 1177 0 1179 1177 0 1133 1179 0 1133 12677 0 12677 1179 0\n\t\t 12092 1179 0 12677 12092 0 12677 1129 0 1129 12092 0 1180 12092 0 1129 1180 0 1129 1130 0\n\t\t 1130 1180 0 1130 12165 0 12165 1180 0 12165 1182 0 1182 1180 0 11052 1135 0 1176 11052 0\n\t\t 1176 1312 0 1312 11052 0 1165 1166 0 1166 8723 0 8723 1165 0 8723 1267 0 1267 1165 0\n\t\t 1267 12094 0 12094 1165 0 12094 8778 0 8778 1165 0 1269 8778 0 12094 1269 0 1269 8779 0\n\t\t 8779 8778 0 1269 1289 0 1289 8779 0 1269 1290 0 1290 1289 0 1166 12422 0 12422 8723 0\n\t\t 12422 1292 0 1292 8723 0 12422 1170 0 1170 1292 0 1170 1270 0 1270 1292 0 1170 1172 0\n\t\t 1172 1270 0 1172 12344 0 12344 1270 0 1172 12171 0 12171 12344 0 12171 1271 0 1271 12344 0\n\t\t 1272 1271 0 12171 1272 0 12171 1175 0 1175 1272 0 8880 1272 0 1175 8880 0 1175 1296 0\n\t\t 1296 8880 0 1296 1297 0 1297 8880 0 1297 1298 0 1298 8880 0 1297 1178 0 1178 1298 0\n\t\t 1178 1299 0 1299 1298 0 1178 10239 0 10239 1299 0 10239 10169 0 10169 1299 0 10239 10240 0\n\t\t 10240 10169 0 10240 1303 0 1303 10169 0 10240 1181 0 1181 1303 0 1181 1304 0 1304 1303 0\n\t\t 1181 1184 0 1184 1304 0 1184 1273 0 1273 1304 0 1305 1273 0 1184 1305 0 1184 1186 0\n\t\t 1186 1305 0 1143 11086 0 11086 10187 0 10187 1143 0 10187 10189 0 10189 1143 0 10189 10140 0\n\t\t 10140 1143 0 10188 1141 0 1141 11155 0 11155 10188 0 11155 10125 0 10125 10188 0\n\t\t 10124 1140 0 1140 1138 0 1138 10124 0 1138 10058 0 10058 10124 0 1138 1137 0 1137 10058 0\n\t\t 1137 10040 0 10040 10058 0 1137 1136 0 1136 10040 0 1136 10041 0 10041 10040 0 1308 10190 0\n\t\t 10190 1317 0 1317 1308 0 1317 1313 0 1313 1308 0 10142 9203 0 9203 9202 0 9202 10142 0\n\t\t 9202 1162 0 1162 10142 0 9202 12253 0 12253 1162 0 12253 12411 0 12411 1162 0 12253 1174 0\n\t\t 1174 12411 0 1174 1164 0 1164 12411 0 11884 1314 0 1314 1311 0 1311 11884 0 1311 10042 0\n\t\t 1306 1311 0 1314 1306 0 1306 1309 0 1309 1311 0 1309 1310 0 1310 1311 0 1314 1316 0\n\t\t 1316 1306 0;\n\tsetAttr \".ed[4316:4481]\" 1316 9204 0 9204 1306 0 9204 1307 0 1307 1306 0 1318 9396 0\n\t\t 9396 9247 0 9247 1318 0 9247 1321 0 1321 1318 0 1322 1321 0 9247 1322 0 9247 9248 0\n\t\t 9248 1322 0 1363 9396 0 1318 1363 0 1318 1346 0 1346 1363 0 1346 1324 0 1324 1363 0\n\t\t 1324 11371 0 11371 1363 0 9248 1361 0 1361 1322 0 1361 1325 0 1325 1322 0 1326 1325 0\n\t\t 1361 1326 0 1361 11403 0 11403 1326 0 11403 9488 0 9488 1326 0 9488 1328 0 1328 1326 0\n\t\t 1329 1328 0 9488 1329 0 9488 9466 0 9466 1329 0 9466 9467 0 9467 1329 0 9467 1332 0\n\t\t 1332 1329 0 1333 1332 0 9467 1333 0 9467 1369 0 1369 1333 0 1369 11473 0 11473 1333 0\n\t\t 11473 1335 0 1335 1333 0 1336 1335 0 11473 1336 0 11473 11441 0 11441 1336 0 11441 11435 0\n\t\t 11435 1336 0 11435 1339 0 1339 1336 0 1340 1339 0 11435 1340 0 11435 11436 0 11436 1340 0\n\t\t 11436 11426 0 11426 1340 0 11426 1342 0 1342 1340 0 1324 1342 0 11426 1324 0 11426 11371 0\n\t\t 1343 1342 0 1324 1343 0 1343 1340 0 1324 1344 0 1344 1343 0 1345 1344 0 1324 1345 0\n\t\t 1346 1345 0 1343 1347 0 1347 1340 0 1347 1348 0 1348 1340 0 1348 1339 0 1348 1336 0\n\t\t 1348 1349 0 1349 1336 0 1349 1350 0 1350 1336 0 1350 1335 0 1350 1333 0 1350 1351 0\n\t\t 1351 1333 0 1351 1352 0 1352 1333 0 1352 1332 0 1352 1329 0 1352 1353 0 1353 1329 0\n\t\t 1353 1354 0 1354 1329 0 1354 1328 0 1354 1326 0 1354 1355 0 1355 1326 0 1355 1356 0\n\t\t 1356 1326 0 1356 1325 0 1356 1357 0 1357 1325 0 1357 1322 0 1357 1358 0 1358 1322 0\n\t\t 1358 1321 0 1358 1318 0 1358 1359 0 1359 1318 0 1359 1345 0 1345 1318 0 11967 11968 0\n\t\t 11968 11402 0 11402 11967 0 11402 1323 0 1323 11967 0 9983 11967 0 1323 9983 0 1323 1319 0\n\t\t 1319 9983 0 9984 9983 0 1319 9984 0 1319 1320 0 1320 9984 0 10031 9984 0 1320 10031 0\n\t\t 1320 11370 0 11370 10031 0 12931 10031 0 11370 12931 0 11370 1365 0 1365 12931 0\n\t\t 10120 12931 0 1365 10120 0 1365 1366 0 1366 10120 0 1405 10120 0 1366 1405 0 1366 1341 0\n\t\t 1341 1405 0 1367 1405 0 1341 1367 0 1341 1338 0 1338 1367 0 1403 1367 0 1338 1403 0\n\t\t 1338 1337 0 1337 1403 0 10286 1403 0 1337 10286 0 1337 1334 0 1334 10286 0 12989 10286 0\n\t\t 1334 12989 0 1334 12533 0 12533 12989 0 10193 12989 0 12533 10193 0 12533 1331 0\n\t\t 1331 10193 0 1398 10193 0;\n\tsetAttr \".ed[4482:4647]\" 1331 1398 0 1331 1330 0 1330 1398 0 12890 1398 0 1330 12890 0\n\t\t 1330 1327 0 1327 12890 0 1395 12890 0 1327 1395 0 1327 1371 0 1371 1395 0 11968 1395 0\n\t\t 1371 11968 0 1371 11402 0 11418 11045 0 11045 1390 0 1390 11418 0 1390 1374 0 1374 11418 0\n\t\t 11028 11418 0 1374 11028 0 1374 1376 0 1376 11028 0 11029 11028 0 1376 11029 0 1376 1393 0\n\t\t 1393 11029 0 10679 11029 0 1393 10679 0 1393 1409 0 1409 10679 0 1410 10679 0 1409 1410 0\n\t\t 1409 1378 0 1378 1410 0 1396 1390 0 11045 1396 0 11045 11046 0 11046 1396 0 1397 1396 0\n\t\t 11046 1397 0 11046 11118 0 11118 1397 0 1381 1397 0 11118 1381 0 11118 10884 0 10884 1381 0\n\t\t 1383 1381 0 10884 1383 0 10884 10885 0 10885 1383 0 1400 1383 0 10885 1400 0 10885 10924 0\n\t\t 10924 1400 0 1401 1400 0 10924 1401 0 10924 10720 0 10720 1401 0 1404 1401 0 10720 1404 0\n\t\t 10720 1412 0 1412 1404 0 1386 1404 0 1412 1386 0 1412 10868 0 10868 1386 0 1406 1386 0\n\t\t 10868 1406 0 10868 10818 0 10818 1406 0 1407 1406 0 10818 1407 0 10818 10819 0 10819 1407 0\n\t\t 1378 1407 0 10819 1378 0 10819 1410 0 1390 1362 0 1362 1360 0 1360 1390 0 1360 1374 0\n\t\t 1360 1376 0 1360 1391 0 1391 1376 0 1391 1392 0 1392 1376 0 1392 1393 0 1392 1409 0\n\t\t 1392 1394 0 1394 1409 0 12846 1362 0 1390 12846 0 1396 12846 0 1397 12846 0 1397 1370 0\n\t\t 1370 12846 0 10192 1370 0 1397 10192 0 1381 10192 0 1383 10192 0 1383 1399 0 1399 10192 0\n\t\t 1368 1399 0 1383 1368 0 1400 1368 0 1401 1368 0 1401 1402 0 1402 1368 0 10287 1402 0\n\t\t 1401 10287 0 1404 10287 0 1386 10287 0 1386 12948 0 12948 10287 0 10119 12948 0 1386 10119 0\n\t\t 1406 10119 0 1407 10119 0 1407 1408 0 1408 10119 0 1364 1408 0 1407 1364 0 1378 1364 0\n\t\t 1409 1364 0 1394 1364 0 1372 1375 0 1375 1377 0 1377 1372 0 1377 10678 0 10678 1372 0\n\t\t 1377 1411 0 1411 10678 0 10678 10719 0 10719 1372 0 10678 1388 0 1388 10719 0 10678 1389 0\n\t\t 1389 1388 0 1388 1387 0 1387 10719 0 10719 1382 0 1382 1372 0 10719 1385 0 1385 1382 0\n\t\t 10719 1413 0 1413 1385 0 1385 1384 0 1384 1382 0 1382 1379 0 1379 1372 0 1382 1380 0\n\t\t 1380 1379 0 1373 1372 0 1379 1373 0 1414 1415 0 1415 1482 0 1482 1414 0 1482 1481 0\n\t\t 1481 1414 0 1416 1414 0 1481 1416 0 1481 1480 0 1480 1416 0 1416 1417 0 1417 1414 0;\n\tsetAttr \".ed[4648:4813]\" 1417 1418 0 1418 1414 0 1418 1415 0 1418 1419 0 1419 1415 0\n\t\t 1483 1482 0 1415 1483 0 1415 1420 0 1420 1483 0 1419 1420 0 1419 1421 0 1421 1420 0\n\t\t 1419 1422 0 1422 1421 0 1418 1422 0 1422 1471 0 1471 1421 0 1471 1465 0 1465 1421 0\n\t\t 1471 1466 0 1466 1465 0 1471 1423 0 1423 1466 0 1465 1424 0 1424 1421 0 1424 1420 0\n\t\t 1424 1483 0 1473 1418 0 1417 1473 0 1473 1422 0 1417 1425 0 1425 1473 0 1424 1469 0\n\t\t 1469 1483 0 1424 1467 0 1467 1469 0 1476 1425 0 1417 1476 0 1417 1426 0 1426 1476 0\n\t\t 1478 1476 0 1426 1478 0 1426 1427 0 1427 1478 0 1428 1426 0 1417 1428 0 1416 1428 0\n\t\t 1429 1428 0 1416 1429 0 1480 1429 0 1429 1430 0 1430 1428 0 1430 1431 0 1431 1428 0\n\t\t 1431 1427 0 1426 1431 0 1432 10718 0 10718 10734 0 10734 1432 0 10734 1435 0 1435 1432 0\n\t\t 1462 1435 0 10734 1462 0 10734 10764 0 10764 1462 0 1432 1437 0 1437 10718 0 1437 10648 0\n\t\t 10648 10718 0 1437 1439 0 1439 10648 0 1439 10587 0 10587 10648 0 10588 10587 0 1439 10588 0\n\t\t 1439 1442 0 1442 10588 0 1442 1443 0 1443 10588 0 1443 10592 0 10592 10588 0 11766 10592 0\n\t\t 1443 11766 0 1443 1446 0 1446 11766 0 11767 11768 0 11768 1447 0 1447 11767 0 1447 1479 0\n\t\t 1479 11767 0 11009 13324 0 13324 1448 0 1448 11009 0 1448 1477 0 1477 11009 0 1475 1477 0\n\t\t 1448 1475 0 1448 1449 0 1449 1475 0 1474 1475 0 1449 1474 0 1449 1450 0 1450 1474 0\n\t\t 13197 1474 0 1450 13197 0 1450 1452 0 1452 13197 0 1452 1453 0 1453 13197 0 1453 13196 0\n\t\t 13196 13197 0 1453 1454 0 1454 13196 0 1454 13194 0 13194 13196 0 1454 1456 0 1456 13194 0\n\t\t 1456 1470 0 1470 13194 0 13184 1470 0 1456 13184 0 1456 1458 0 1458 13184 0 1463 13184 0\n\t\t 1458 1463 0 1458 1459 0 1459 1463 0 1459 1460 0 1460 1463 0 1460 1464 0 1464 1463 0\n\t\t 11591 13315 0 13315 1461 0 1461 11591 0 1461 1468 0 1468 11591 0 1436 1468 0 1461 1436 0\n\t\t 1461 13126 0 13126 1436 0 11657 11592 0 11592 1424 0 1424 11657 0 1465 11657 0 1457 11657 0\n\t\t 1465 1457 0 1466 1457 0 11592 1467 0 11592 11593 0 11593 1467 0 11593 1469 0 11593 10765 0\n\t\t 10765 1469 0 13185 1457 0 1466 13185 0 1423 13185 0 1455 13185 0 1423 1455 0 1471 1455 0\n\t\t 1422 1455 0 1422 1472 0 1472 1455 0 1451 1472 0 1422 1451 0 1473 1451 0 11066 1451 0;\n\tsetAttr \".ed[4814:4979]\" 1473 11066 0 1425 11066 0 11024 11066 0 1425 11024 0\n\t\t 1476 11024 0 11007 11024 0 1476 11007 0 1478 11007 0 11008 11007 0 1478 11008 0 1427 11008 0\n\t\t 1431 11008 0 1431 1445 0 1445 11008 0 1444 1445 0 1431 1444 0 1430 1444 0 1441 1444 0\n\t\t 1430 1441 0 1429 1441 0 1440 1441 0 1429 1440 0 1480 1440 0 1438 1440 0 1480 1438 0\n\t\t 1481 1438 0 1482 1438 0 1482 1434 0 1434 1438 0 1483 1434 0 1483 1433 0 1433 1434 0\n\t\t 10765 1433 0 1483 10765 0 1484 9841 0 9841 9823 0 9823 1484 0 9823 1487 0 1487 1484 0\n\t\t 1488 1487 0 9823 1488 0 9823 9824 0 9824 1488 0 1525 9841 0 1484 1525 0 1484 1511 0\n\t\t 1511 1525 0 9824 1526 0 1526 1488 0 1526 1490 0 1490 1488 0 1491 1490 0 1526 1491 0\n\t\t 1526 9180 0 9180 1491 0 9180 9179 0 9179 1491 0 9179 1492 0 1492 1491 0 1493 1492 0\n\t\t 9179 1493 0 9179 12497 0 12497 1493 0 12497 9122 0 9122 1493 0 9122 1495 0 1495 1493 0\n\t\t 1496 1495 0 9122 1496 0 9122 9121 0 9121 1496 0 9121 12379 0 12379 1496 0 12379 1498 0\n\t\t 1498 1496 0 1499 1498 0 12379 1499 0 12379 12378 0 12378 1499 0 12378 10290 0 10290 1499 0\n\t\t 10290 1501 0 1501 1499 0 1502 1501 0 10290 1502 0 10290 10244 0 10244 1502 0 10244 10232 0\n\t\t 10232 1502 0 10232 1505 0 1505 1502 0 1506 1505 0 10232 1506 0 10232 10233 0 10233 1506 0\n\t\t 1508 1505 0 1506 1508 0 1508 1502 0 1506 1509 0 1509 1508 0 1510 1509 0 1506 1510 0\n\t\t 1506 1511 0 1511 1510 0 1508 1512 0 1512 1502 0 1512 1513 0 1513 1502 0 1513 1501 0\n\t\t 1513 1499 0 1513 1514 0 1514 1499 0 1514 1515 0 1515 1499 0 1515 1498 0 1515 1496 0\n\t\t 1515 1516 0 1516 1496 0 1516 1517 0 1517 1496 0 1517 1495 0 1517 1493 0 1517 1518 0\n\t\t 1518 1493 0 1518 1519 0 1519 1493 0 1519 1492 0 1519 1491 0 1519 1520 0 1520 1491 0\n\t\t 1520 1521 0 1521 1491 0 1521 1490 0 1521 1522 0 1522 1490 0 1522 1488 0 1522 1523 0\n\t\t 1523 1488 0 1523 1487 0 1523 1484 0 1523 1524 0 1524 1484 0 1524 1510 0 1510 1484 0\n\t\t 1506 1525 0 10233 1525 0 1562 12167 0 12167 9479 0 9479 1562 0 9479 1489 0 1489 1562 0\n\t\t 9276 1562 0 1489 9276 0 1489 1485 0 1485 9276 0 9277 9276 0 1485 9277 0 1485 1486 0\n\t\t 1486 9277 0 9216 9277 0 1486 9216 0 1486 12457 0 12457 9216 0 9195 9216 0 12457 9195 0\n\t\t 12457 1507 0;\n\tsetAttr \".ed[4980:5145]\" 1507 9195 0 9196 9195 0 1507 9196 0 1507 1504 0 1504 9196 0\n\t\t 9515 9196 0 1504 9515 0 1504 1503 0 1503 9515 0 8813 9515 0 1503 8813 0 1503 1500 0\n\t\t 1500 8813 0 8812 8813 0 1500 8812 0 1500 1534 0 1534 8812 0 8820 8812 0 1534 8820 0\n\t\t 1534 1497 0 1497 8820 0 9148 8820 0 1497 9148 0 1497 1536 0 1536 9148 0 9149 9148 0\n\t\t 1536 9149 0 1536 1538 0 1538 9149 0 9367 9149 0 1538 9367 0 1538 1494 0 1494 9367 0\n\t\t 9368 9367 0 1494 9368 0 1494 1541 0 1541 9368 0 1564 9368 0 1541 1564 0 1541 1542 0\n\t\t 1542 1564 0 12167 1564 0 1542 12167 0 1542 9479 0 9000 9001 0 9001 1561 0 1561 9000 0\n\t\t 1561 1545 0 1545 9000 0 9025 9000 0 1545 9025 0 1545 1563 0 1563 9025 0 9064 9025 0\n\t\t 1563 9064 0 1563 1548 0 1548 9064 0 8740 9064 0 1548 8740 0 1548 1559 0 1559 8740 0\n\t\t 1565 1561 0 9001 1565 0 9001 8919 0 8919 1565 0 1566 1565 0 8919 1566 0 8919 8920 0\n\t\t 8920 1566 0 1567 1566 0 8920 1567 0 8920 1577 0 1577 1567 0 1568 1567 0 1577 1568 0\n\t\t 1577 12241 0 12241 1568 0 1569 1568 0 12241 1569 0 12241 8908 0 8908 1569 0 1552 1569 0\n\t\t 8908 1552 0 8908 8826 0 8826 1552 0 1553 1552 0 8826 1553 0 8826 8825 0 8825 1553 0\n\t\t 1554 1553 0 8825 1554 0 8825 11922 0 11922 1554 0 1556 1554 0 11922 1556 0 11922 11923 0\n\t\t 11923 1556 0 1573 1556 0 11923 1573 0 11923 12531 0 12531 1573 0 1574 1573 0 12531 1574 0\n\t\t 12531 8739 0 8739 1574 0 1559 1574 0 8739 1559 0 8739 8740 0 1561 1527 0 1527 12193 0\n\t\t 12193 1561 0 12193 1545 0 12193 1563 0 12193 1528 0 1528 1563 0 1528 1529 0 1529 1563 0\n\t\t 1529 1548 0 1529 1559 0 1529 1530 0 1530 1559 0 12168 1527 0 1561 12168 0 1565 12168 0\n\t\t 1566 12168 0 1566 1540 0 1540 12168 0 1539 1540 0 1566 1539 0 1567 1539 0 1568 1539 0\n\t\t 1568 1537 0 1537 1539 0 1535 1537 0 1568 1535 0 1569 1535 0 1552 1535 0 1552 1570 0\n\t\t 1570 1535 0 1571 1570 0 1552 1571 0 1553 1571 0 1554 1571 0 1554 1572 0 1572 1571 0\n\t\t 1533 1572 0 1554 1533 0 1556 1533 0 1573 1533 0 1573 1532 0 1532 1533 0 1531 1532 0\n\t\t 1573 1531 0 1574 1531 0 1559 1531 0 1530 1531 0 1543 1546 0 1546 1547 0 1547 1543 0\n\t\t 1547 1558 0 1558 1543 0 1547 1560 0 1560 1558 0 1558 1575 0 1575 1543 0 1558 1557 0;\n\tsetAttr \".ed[5146:5311]\" 1557 1575 0 1558 1576 0 1576 1557 0 1557 1555 0 1555 1575 0\n\t\t 1575 12229 0 12229 1543 0 1575 1578 0 1578 12229 0 1575 1579 0 1579 1578 0 1578 1551 0\n\t\t 1551 12229 0 12229 1549 0 1549 1543 0 12229 1550 0 1550 1549 0 1544 1543 0 1549 1544 0\n\t\t 9026 9027 0 9027 1581 0 1581 9026 0 1581 1583 0 1583 9026 0 8992 1581 0 9027 8992 0\n\t\t 9027 8994 0 8994 8992 0 1586 1584 0 1584 8993 0 8993 1586 0 8993 8963 0 8963 1586 0\n\t\t 9063 9026 0 1583 9063 0 1583 1589 0 1589 9063 0 10002 9063 0 1589 10002 0 1589 1591 0\n\t\t 1591 10002 0 1592 8982 0 8982 8962 0 8962 1592 0 8962 8964 0 8964 1592 0 1615 1592 0\n\t\t 8964 1615 0 8964 10035 0 10035 1615 0 9961 10002 0 1591 9961 0 1591 1596 0 1596 9961 0\n\t\t 9962 9961 0 1596 9962 0 1596 1598 0 1598 9962 0 9931 9962 0 1598 9931 0 1598 1600 0\n\t\t 1600 9931 0 9922 9931 0 1600 9922 0 1600 1602 0 1602 9922 0 9923 9922 0 1602 9923 0\n\t\t 1602 1604 0 1604 9923 0 9942 9923 0 1604 9942 0 1604 1606 0 1606 9942 0 9944 9942 0\n\t\t 1606 9944 0 1606 9963 0 9963 9944 0 1609 1607 0 1607 1608 0 1608 1609 0 1608 9998 0\n\t\t 9998 1609 0 9968 9967 0 9967 1610 0 1610 9968 0 1610 1612 0 1612 9968 0 10024 9968 0\n\t\t 1612 10024 0 1612 1614 0 1614 10024 0 10035 10024 0 1614 10035 0 1614 1615 0 1601 1603 0\n\t\t 1603 1616 0 1616 1601 0 1603 1605 0 1605 1631 0 1631 1603 0 1631 1616 0 1617 1631 0\n\t\t 1605 1617 0 1605 9943 0 9943 1617 0 1618 1617 0 9943 1618 0 9943 9966 0 9966 1618 0\n\t\t 1619 1618 0 9966 1619 0 9966 1611 0 1611 1619 0 12529 1619 0 1611 12529 0 1611 1613 0\n\t\t 1613 12529 0 1613 1594 0 1594 12529 0 1594 12766 0 12766 12529 0 1616 1632 0 1632 1601 0\n\t\t 1599 1601 0 1632 1599 0 1632 1621 0 1621 1599 0 1597 1599 0 1621 1597 0 1621 1622 0\n\t\t 1622 1597 0 1622 1628 0 1628 1597 0 1628 1595 0 1595 1597 0 1590 1595 0 1628 1590 0\n\t\t 1628 1623 0 1623 1590 0 1588 1590 0 1623 1588 0 1623 1629 0 1629 1588 0 1580 1588 0\n\t\t 1629 1580 0 1629 1626 0 1626 1580 0 1582 1580 0 1626 1582 0 1626 1627 0 1627 1582 0\n\t\t 1585 1582 0 1627 1585 0 1627 1624 0 1624 1585 0 1587 1585 0 1624 1587 0 1624 1625 0\n\t\t 1625 1587 0 1593 1587 0 1625 1593 0 1625 12528 0 12528 1593 0 1594 1593 0 12528 1594 0;\n\tsetAttr \".ed[5312:5477]\" 12528 12766 0 1624 12528 0 1624 1626 0 1626 12528 0\n\t\t 1626 1628 0 1628 12528 0 1629 1628 0 1628 12529 0 12529 12528 0 1628 1631 0 1631 12529 0\n\t\t 1628 1621 0 1621 1631 0 1632 1631 0 1631 1619 0 1617 1619 0 1620 1633 0 1633 1630 0\n\t\t 1630 1620 0 11572 1664 0 1664 1634 0 1634 11572 0 1634 11571 0 11571 11572 0 13084 11571 0\n\t\t 1634 13084 0 1634 1697 0 1697 13084 0 1634 11284 0 11284 1697 0 11284 11285 0 11285 1697 0\n\t\t 13204 11284 0 1634 13204 0 1664 13204 0 1664 13092 0 13092 13204 0 13092 13079 0\n\t\t 13079 13204 0 1720 1697 0 11285 1720 0 11285 13139 0 13139 1720 0 1640 13260 0 13260 1740 0\n\t\t 1740 1640 0 1740 1642 0 1642 1640 0 1740 13263 0 13263 1642 0 13263 1644 0 1644 1642 0\n\t\t 1640 1645 0 1645 13260 0 1645 1737 0 1737 13260 0 13109 1644 0 13263 13109 0 13263 13108 0\n\t\t 13108 13109 0 11312 1642 0 1644 11312 0 11312 1640 0 1644 11373 0 11373 11312 0 11312 11313 0\n\t\t 11313 1640 0 11313 1645 0 11313 1724 0 1724 1645 0 1650 1645 0 1724 1650 0 1650 1737 0\n\t\t 1724 13216 0 13216 1650 0 13216 13189 0 13189 1650 0 13189 1652 0 1652 1650 0 13189 13190 0\n\t\t 13190 1652 0 13190 1654 0 1654 1652 0 1652 11784 0 11784 1650 0 1654 11784 0 11784 11785 0\n\t\t 11785 1650 0 11785 1737 0 1654 11789 0 11789 11784 0 1654 10708 0 10708 11789 0 1654 13181 0\n\t\t 13181 10708 0 13181 10707 0 10707 10708 0 1731 13181 0 1654 1731 0 13190 1731 0 13190 1729 0\n\t\t 1729 1731 0 13190 10883 0 10883 1729 0 13110 11373 0 1644 13110 0 13109 13110 0 1667 10822 0\n\t\t 10822 1659 0 1659 1667 0 1659 1660 0 1660 1667 0 13095 1660 0 1659 13095 0 1659 13087 0\n\t\t 13087 13095 0 1659 13283 0 13283 13087 0 13283 11413 0 11413 13087 0 13085 13087 0\n\t\t 11413 13085 0 11413 11835 0 11835 13085 0 1662 13085 0 11835 1662 0 11835 11887 0\n\t\t 11887 1662 0 11573 1662 0 11887 11573 0 11887 11449 0 11449 11573 0 10822 11573 0\n\t\t 11449 10822 0 11507 13283 0 1659 11507 0 10822 11507 0 11449 11507 0 13183 1663 0\n\t\t 1663 1665 0 1665 13183 0 1666 13183 0 1665 1666 0 10823 1666 0 1665 10823 0 1666 1668 0\n\t\t 1668 13183 0 1668 1638 0 1638 13183 0 1668 1669 0 1669 1638 0 1669 10427 0 10427 1638 0\n\t\t 1702 10427 0 1669 1702 0 1669 1670 0 1670 1702 0 10843 1702 0 1670 10843 0 1670 1672 0\n\t\t 1672 10843 0 10844 10843 0 1672 10844 0 1672 1674 0 1674 10844 0 10374 10844 0;\n\tsetAttr \".ed[5478:5643]\" 1674 10374 0 1674 1675 0 1675 10374 0 10375 10374 0\n\t\t 1675 10375 0 1675 1676 0 1676 10375 0 10356 10375 0 1676 10356 0 1676 1677 0 1677 10356 0\n\t\t 1709 10356 0 1677 1709 0 1677 1678 0 1678 1709 0 1678 1679 0 1679 1709 0 1679 13027 0\n\t\t 13027 1709 0 1679 1681 0 1681 13027 0 1681 1711 0 1711 13027 0 10947 1711 0 1681 10947 0\n\t\t 1681 1683 0 1683 10947 0 10911 10947 0 1683 10911 0 1683 10913 0 10913 10911 0 10912 1685 0\n\t\t 1685 10589 0 10589 10912 0 10589 10590 0 10590 10912 0 10591 1686 0 1686 1688 0 1688 10591 0\n\t\t 1688 10615 0 10615 10591 0 10644 10615 0 1688 10644 0 1688 1690 0 1690 10644 0 10645 10644 0\n\t\t 1690 10645 0 1690 1691 0 1691 10645 0 13127 10645 0 1691 13127 0 1691 1693 0 1693 13127 0\n\t\t 10479 13127 0 1693 10479 0 1693 1694 0 1694 10479 0 10480 10479 0 1694 10480 0 1694 1695 0\n\t\t 1695 10480 0 1695 1696 0 1696 10480 0 1696 13097 0 13097 10480 0 1696 13086 0 13086 13097 0\n\t\t 1696 13094 0 13094 13086 0 1698 1699 0 1699 1635 0 1635 1698 0 13078 13079 0 13092 13078 0\n\t\t 13092 1701 0 1701 13078 0 1723 13078 0 1701 1723 0 1701 10428 0 10428 1723 0 10258 1723 0\n\t\t 10428 10258 0 10428 1671 0 1671 10258 0 10247 10258 0 1671 10247 0 1671 1673 0 1673 10247 0\n\t\t 10248 10247 0 1673 10248 0 1673 1706 0 1706 10248 0 10950 10248 0 1706 10950 0 1706 1707 0\n\t\t 1707 10950 0 1707 1708 0 1708 10950 0 1708 1727 0 1727 10950 0 1730 1727 0 1708 1730 0\n\t\t 1708 10357 0 10357 1730 0 13012 1730 0 10357 13012 0 10357 1680 0 1680 13012 0 1680 13116 0\n\t\t 13116 13012 0 13116 1732 0 1732 13012 0 13116 1682 0 1682 1732 0 1682 1712 0 1712 1732 0\n\t\t 1735 1712 0 1682 1735 0 1682 1684 0 1684 1735 0 13069 1735 0 1684 13069 0 1684 1687 0\n\t\t 1687 13069 0 13155 13069 0 1687 13155 0 1687 1689 0 1689 13155 0 13150 13155 0 1689 13150 0\n\t\t 1689 1715 0 1715 13150 0 1738 13150 0 1715 1738 0 1715 1716 0 1716 1738 0 13143 1738 0\n\t\t 1716 13143 0 1716 1692 0 1692 13143 0 1739 13143 0 1692 1739 0 1692 1718 0 1718 1739 0\n\t\t 13139 1739 0 1718 13139 0 1718 1720 0 11286 1636 0 1636 1646 0 1646 11286 0 1646 13107 0\n\t\t 13107 11286 0 13111 1646 0 1636 13111 0 1636 1721 0 1721 13111 0 13205 1639 0 1639 1648 0\n\t\t 1648 13205 0 1648 1722 0 1722 13205 0 1647 1648 0 1639 1647 0 1639 1700 0 1700 1647 0\n\t\t 1649 1647 0;\n\tsetAttr \".ed[5644:5809]\" 1700 1649 0 1700 12977 0 12977 1649 0 13215 1649 0 12977 13215 0\n\t\t 12977 1703 0 1703 13215 0 1651 13215 0 1703 1651 0 1703 1704 0 1704 1651 0 1704 1705 0\n\t\t 1705 1651 0 1705 1725 0 1725 1651 0 1653 1725 0 1705 1653 0 1705 1726 0 1726 1653 0\n\t\t 1726 10871 0 10871 1653 0 10871 1728 0 1728 1653 0 10881 1728 0 10871 10881 0 10871 10872 0\n\t\t 10872 10881 0 10882 10881 0 10872 10882 0 10872 1710 0 1710 10882 0 1710 1732 0 1732 10882 0\n\t\t 1732 1658 0 1658 10882 0 1712 1658 0 1712 1733 0 1733 1658 0 1734 1733 0 1712 1734 0\n\t\t 1712 13060 0 13060 1734 0 11790 1734 0 13060 11790 0 13060 1713 0 1713 11790 0 1655 1657 0\n\t\t 1657 13070 0 13070 1655 0 13070 1736 0 1736 1655 0 1656 1655 0 1736 1656 0 1736 1714 0\n\t\t 1714 1656 0 13255 1656 0 1714 13255 0 1714 13151 0 13151 13255 0 1641 13255 0 13151 1641 0\n\t\t 13151 1717 0 1717 1641 0 1717 13138 0 13138 1641 0 13138 13262 0 13262 1641 0 1643 13262 0\n\t\t 13138 1643 0 13138 1719 0 1719 1643 0 1741 1643 0 1719 1741 0 1719 1637 0 1637 1741 0\n\t\t 11451 1742 0 1742 11407 0 11407 11451 0 11407 11408 0 11408 11451 0 11411 11407 0\n\t\t 1742 11411 0 1742 11837 0 11837 11411 0 1743 13329 0 13329 11450 0 11450 1743 0 11450 11448 0\n\t\t 11448 1743 0 1743 11834 0 11834 13329 0 11834 11836 0 11836 13329 0 11410 1745 0\n\t\t 1745 1744 0 1744 11410 0 1744 11412 0 11412 11410 0 1661 1747 0 1747 1746 0 1746 1661 0\n\t\t 1746 1748 0 1748 1661 0 1661 11506 0 11506 1747 0 11506 11409 0 11409 1747 0 1751 1752 0\n\t\t 1752 1750 0 1750 1751 0 1750 1749 0 1749 1751 0 11536 11496 0 11496 1754 0 1754 11536 0\n\t\t 1754 1756 0 1756 11536 0 1756 1757 0 1757 11536 0 1757 10094 0 10094 11536 0 11496 11497 0\n\t\t 11497 1754 0 11497 1779 0 1779 1754 0 1759 1779 0 11497 1759 0 11497 12767 0 12767 1759 0\n\t\t 1794 10094 0 1757 1794 0 1757 1760 0 1760 1794 0 1760 1761 0 1761 1794 0 1761 1806 0\n\t\t 1806 1794 0 11266 1806 0 1761 11266 0 1761 1763 0 1763 11266 0 1763 1764 0 1764 11266 0\n\t\t 1764 11201 0 11201 11266 0 11202 11201 0 1764 11202 0 1764 1767 0 1767 11202 0 1767 1768 0\n\t\t 1768 11202 0 1768 12681 0 12681 11202 0 12682 12681 0 1768 12682 0 1768 1770 0 1770 12682 0\n\t\t 1770 1771 0 1771 12682 0 1771 1803 0 1803 12682 0 12704 1803 0 1771 12704 0 1771 1773 0\n\t\t 1773 12704 0 1773 1774 0;\n\tsetAttr \".ed[5810:5975]\" 1774 12704 0 1774 1800 0 1800 12704 0 1799 1800 0 1774 1799 0\n\t\t 1774 1775 0 1775 1799 0 1775 1759 0 1759 1799 0 12767 1799 0 1777 1759 0 1775 1777 0\n\t\t 1777 1778 0 1778 1759 0 1778 1779 0 1775 1780 0 1780 1777 0 1774 1780 0 1774 1781 0\n\t\t 1781 1780 0 1773 1781 0 1773 1782 0 1782 1781 0 1771 1782 0 1771 1783 0 1783 1782 0\n\t\t 1770 1784 0 1784 1783 0 1783 1770 0 1768 1784 0 1768 1785 0 1785 1784 0 1767 1785 0\n\t\t 1767 1786 0 1786 1785 0 1764 1786 0 1764 1787 0 1787 1786 0 1763 1787 0 1763 1788 0\n\t\t 1788 1787 0 1761 1788 0 1761 1789 0 1789 1788 0 1760 1789 0 1760 1790 0 1790 1789 0\n\t\t 1757 1790 0 1757 1791 0 1791 1790 0 1756 1791 0 1756 1792 0 1792 1791 0 1754 1792 0\n\t\t 1754 1793 0 1793 1792 0 1779 1793 0 1778 1793 0 10093 10324 0 10324 8902 0 8902 10093 0\n\t\t 8902 1796 0 1796 10093 0 8902 8903 0 8903 1796 0 8903 1753 0 1753 1796 0 8903 1831 0\n\t\t 1831 1753 0 1831 1755 0 1755 1753 0 1831 8998 0 8998 1755 0 8998 1758 0 1758 1755 0\n\t\t 8998 10293 0 10293 1758 0 10293 1776 0 1776 1758 0 10293 10294 0 10294 1776 0 10294 10245 0\n\t\t 10245 1776 0 10294 1842 0 1842 10245 0 1842 10246 0 10246 10245 0 1842 9988 0 9988 10246 0\n\t\t 9988 1772 0 1772 10246 0 9988 9989 0 9989 1772 0 9989 12693 0 12693 1772 0 9989 8844 0\n\t\t 8844 12693 0 8844 1769 0 1769 12693 0 8844 8843 0 8843 1769 0 8843 1804 0 1804 1769 0\n\t\t 8843 11994 0 11994 1804 0 11994 1766 0 1766 1804 0 11994 12015 0 12015 1766 0 12015 1765 0\n\t\t 1765 1766 0 12015 12014 0 12014 1765 0 12014 1762 0 1762 1765 0 12014 10325 0 10325 1762 0\n\t\t 10325 10271 0 10271 1762 0 10325 10324 0 10324 10271 0 10093 10271 0 1807 12127 0\n\t\t 12127 1843 0 1843 1807 0 1843 1809 0 1809 1807 0 1843 9150 0 9150 1809 0 9150 1829 0\n\t\t 1829 1809 0 9150 9151 0 9151 1829 0 9151 1832 0 1832 1829 0 9151 9163 0 9163 1832 0\n\t\t 9163 1813 0 1813 1832 0 9163 8846 0 8846 1813 0 8846 1814 0 1814 1813 0 1807 1815 0\n\t\t 1815 12127 0 1815 1845 0 1845 12127 0 1815 1834 0 1834 1845 0 1834 9445 0 9445 1845 0\n\t\t 1834 1817 0 1817 9445 0 1817 9437 0 9437 9445 0 1817 1819 0 1819 9437 0 1819 9438 0\n\t\t 9438 9437 0 1819 1839 0 1839 9438 0 1839 1846 0 1846 9438 0 1839 1821 0 1821 1846 0\n\t\t 1821 8719 0;\n\tsetAttr \".ed[5976:6141]\" 8719 1846 0 1821 1841 0 1841 8719 0 1841 1844 0 1844 8719 0\n\t\t 1841 1822 0 1822 1844 0 1822 12128 0 12128 1844 0 1822 1824 0 1824 12128 0 1824 1848 0\n\t\t 1848 12128 0 1824 1825 0 1825 1848 0 1825 8845 0 8845 1848 0 1825 1814 0 1814 8845 0\n\t\t 8846 8845 0 1828 1795 0 1795 1807 0 1807 1828 0 1809 1828 0 1829 1828 0 1829 1830 0\n\t\t 1830 1828 0 8987 1830 0 1829 8987 0 1832 8987 0 1813 8987 0 1813 1833 0 1833 8987 0\n\t\t 1795 1805 0 1805 1807 0 1805 1815 0 1805 1834 0 1805 1835 0 1835 1834 0 1835 1836 0\n\t\t 1836 1834 0 1836 1817 0 1836 1819 0 1836 1837 0 1837 1819 0 1837 1838 0 1838 1819 0\n\t\t 1838 1839 0 1838 1821 0 1838 1840 0 1840 1821 0 1840 1802 0 1802 1821 0 1802 1841 0\n\t\t 1802 1822 0 1802 1801 0 1801 1822 0 1801 12067 0 12067 1822 0 12067 1824 0 12067 1825 0\n\t\t 12067 1798 0 1798 1825 0 1798 1797 0 1797 1825 0 1797 1814 0 1797 1813 0 1797 1833 0\n\t\t 1811 1810 0 1810 12100 0 12100 1811 0 12100 1827 0 1827 1811 0 12100 8718 0 8718 1827 0\n\t\t 12100 1818 0 1818 8718 0 12100 12178 0 12178 1818 0 12100 1808 0 1808 12178 0 12178 1816 0\n\t\t 1816 1818 0 1818 8934 0 8934 8718 0 1818 1820 0 1820 8934 0 8934 1847 0 1847 8718 0\n\t\t 8718 12240 0 12240 1827 0 8718 1823 0 1823 12240 0 12240 1826 0 1826 1827 0 1827 1812 0\n\t\t 1812 1811 0 1849 1916 0 1916 1917 0 1917 1849 0 1917 1850 0 1850 1849 0 1849 1851 0\n\t\t 1851 1916 0 1851 1852 0 1852 1916 0 1853 1851 0 1849 1853 0 1849 1854 0 1854 1853 0\n\t\t 1850 1854 0 1850 1855 0 1855 1854 0 1917 1856 0 1856 1850 0 1856 1857 0 1857 1850 0\n\t\t 1857 1855 0 1857 1858 0 1858 1855 0 1907 1855 0 1858 1907 0 1907 1854 0 1858 1906 0\n\t\t 1906 1907 0 1858 1901 0 1901 1906 0 1901 1902 0 1902 1906 0 1902 1859 0 1859 1906 0\n\t\t 1857 1860 0 1860 1858 0 1860 1901 0 1856 1860 0 1854 1908 0 1908 1853 0 1907 1908 0\n\t\t 1908 1861 0 1861 1853 0 1856 1862 0 1862 1860 0 1862 1903 0 1903 1860 0 1861 1863 0\n\t\t 1863 1853 0 1864 1863 0 1863 1910 0 1910 1864 0 1910 1911 0 1911 1864 0 1911 1912 0\n\t\t 1912 1864 0 1912 1865 0 1865 1864 0 1853 1864 0 1865 1853 0 1865 1851 0 1865 1866 0\n\t\t 1866 1851 0 1866 1852 0 1912 1914 0 1914 1865 0 1914 1866 0 1918 1868 0 1868 1867 0;\n\tsetAttr \".ed[6142:6307]\" 1867 1918 0 1867 9129 0 9129 1918 0 1867 9142 0 9142 9129 0\n\t\t 9142 9130 0 9130 9129 0 1918 9210 0 9210 1868 0 9210 1873 0 1873 1868 0 9210 9211 0\n\t\t 9211 1873 0 9211 1875 0 1875 1873 0 1876 1875 0 9211 1876 0 9211 1915 0 1915 1876 0\n\t\t 1915 1913 0 1913 1876 0 1913 1877 0 1877 1876 0 1913 9798 0 9798 1877 0 9798 1879 0\n\t\t 1879 1877 0 9800 9799 0 9799 9790 0 9790 9800 0 9790 1881 0 1881 9800 0 9815 9789 0\n\t\t 9789 9791 0 9791 9815 0 9791 1883 0 1883 9815 0 9791 12674 0 12674 1883 0 12674 1884 0\n\t\t 1884 1883 0 12674 10029 0 10029 1884 0 10029 1886 0 1886 1884 0 10029 10030 0 10030 1886 0\n\t\t 10030 1888 0 1888 1886 0 10030 10045 0 10045 1888 0 10045 1890 0 1890 1888 0 10045 10115 0\n\t\t 10115 1890 0 10115 1892 0 1892 1890 0 10115 1905 0 1905 1892 0 1905 1893 0 1893 1892 0\n\t\t 1905 12737 0 12737 1893 0 12737 1895 0 1895 1893 0 12737 9629 0 9629 1895 0 9629 1896 0\n\t\t 1896 1895 0 9629 9630 0 9630 1896 0 9630 12944 0 12944 1896 0 1897 9631 0 9631 9675 0\n\t\t 9675 1897 0 9675 12952 0 12952 1897 0 1898 1904 0 1904 1871 0 1871 1898 0 1871 1870 0\n\t\t 1870 1898 0 1860 1900 0 1900 1899 0 1899 1860 0 1899 1901 0 1899 1894 0 1894 1901 0\n\t\t 1894 1902 0 1903 1900 0 1903 9674 0 9674 1900 0 1862 9674 0 1862 9131 0 9131 9674 0\n\t\t 1894 12738 0 12738 1902 0 12738 1859 0 12738 1891 0 1891 1859 0 1891 1906 0 1891 1907 0\n\t\t 1891 1889 0 1889 1907 0 1889 1887 0 1887 1907 0 1887 1908 0 1887 1885 0 1885 1908 0\n\t\t 1885 1861 0 1885 1909 0 1909 1861 0 1909 1863 0 1909 1882 0 1882 1863 0 1882 1910 0\n\t\t 1882 1880 0 1880 1910 0 1880 1911 0 1880 1912 0 1880 1878 0 1878 1912 0 1878 9605 0\n\t\t 9605 1912 0 9605 1914 0 9605 9606 0 9606 1914 0 9606 1866 0 9606 1874 0 1874 1866 0\n\t\t 1874 1852 0 1874 1872 0 1872 1852 0 1872 1916 0 1872 1917 0 1872 12393 0 12393 1917 0\n\t\t 12393 1856 0 12393 1869 0 1869 1856 0 1869 9131 0 9131 1856 0 1964 13144 0 13144 1919 0\n\t\t 1919 1964 0 1919 1921 0 1921 1964 0 1921 1922 0 1922 1964 0 1922 1963 0 1963 1964 0\n\t\t 13144 1967 0 1967 1919 0 1967 1945 0 1945 1919 0 13158 1963 0 1922 13158 0 1922 1924 0\n\t\t 1924 13158 0 1924 1925 0 1925 13158 0 1925 1972 0 1972 13158 0 13224 1972 0 1925 13224 0;\n\tsetAttr \".ed[6308:6473]\" 1925 1927 0 1927 13224 0 1927 1928 0 1928 13224 0 1928 1971 0\n\t\t 1971 13224 0 11511 1971 0 1928 11511 0 1928 1930 0 1930 11511 0 1930 1931 0 1931 11511 0\n\t\t 1931 11512 0 11512 11511 0 1969 11512 0 1931 1969 0 1931 1933 0 1933 1969 0 1933 1934 0\n\t\t 1934 1969 0 1934 11732 0 11732 1969 0 11726 11732 0 1934 11726 0 1934 1937 0 1937 11726 0\n\t\t 1937 1938 0 1938 11726 0 1938 11727 0 11727 11726 0 11697 11727 0 1938 11697 0 1938 1941 0\n\t\t 1941 11697 0 1941 1960 0 1960 11697 0 1960 11698 0 11698 11697 0 1943 1960 0 1941 1943 0\n\t\t 1943 1944 0 1944 1960 0 1944 1945 0 1945 1960 0 1941 1946 0 1946 1943 0 1938 1946 0\n\t\t 1938 1947 0 1947 1946 0 1937 1947 0 1937 1948 0 1948 1947 0 1934 1948 0 1934 1949 0\n\t\t 1949 1948 0 1933 1950 0 1950 1949 0 1949 1933 0 1931 1950 0 1931 1951 0 1951 1950 0\n\t\t 1930 1951 0 1930 1952 0 1952 1951 0 1928 1952 0 1928 1953 0 1953 1952 0 1927 1953 0\n\t\t 1927 1954 0 1954 1953 0 1925 1954 0 1925 1955 0 1955 1954 0 1924 1955 0 1924 1956 0\n\t\t 1956 1955 0 1922 1956 0 1922 1957 0 1957 1956 0 1921 1957 0 1921 1958 0 1958 1957 0\n\t\t 1919 1958 0 1919 1959 0 1959 1958 0 1945 1959 0 1944 1959 0 1967 1960 0 1967 11698 0\n\t\t 1923 10691 0 10691 10690 0 10690 1923 0 10690 10759 0 10759 1923 0 10690 1992 0 1992 10759 0\n\t\t 1992 10760 0 10760 10759 0 1992 10628 0 10628 10760 0 10628 1920 0 1920 10760 0 10628 10629 0\n\t\t 10629 1920 0 10629 13145 0 13145 1920 0 10629 2009 0 2009 13145 0 2009 1942 0 1942 13145 0\n\t\t 2009 10665 0 10665 1942 0 10665 1940 0 1940 1942 0 10665 10664 0 10664 1940 0 10664 1939 0\n\t\t 1939 1940 0 10664 10702 0 10702 1939 0 10702 1936 0 1936 1939 0 10702 2002 0 2002 1936 0\n\t\t 2002 1935 0 1935 1936 0 2002 11069 0 11069 1935 0 11069 13217 0 13217 1935 0 11069 11070 0\n\t\t 11070 13217 0 11070 1932 0 1932 13217 0 11070 10612 0 10612 1932 0 10612 1929 0 1929 1932 0\n\t\t 10612 1997 0 1997 1929 0 1997 13239 0 13239 1929 0 1997 10082 0 10082 13239 0 10082 1926 0\n\t\t 1926 13239 0 10082 10136 0 10136 1926 0 10136 13188 0 13188 1926 0 10136 10691 0\n\t\t 10691 13188 0 1923 13188 0 1990 13099 0 13099 10486 0 10486 1990 0 10486 1974 0 1974 1990 0\n\t\t 10486 10487 0 10487 1974 0 10487 1991 0 1991 1974 0 10487 10431 0 10431 1991 0 10431 1993 0\n\t\t 1993 1991 0;\n\tsetAttr \".ed[6474:6639]\" 10431 10432 0 10432 1993 0 10432 2008 0 2008 1993 0\n\t\t 1990 1978 0 1978 13099 0 1978 13062 0 13062 13099 0 1978 1995 0 1995 13062 0 1995 13035 0\n\t\t 13035 13062 0 1995 1998 0 1998 13035 0 1998 13036 0 13036 13035 0 1998 1999 0 1999 13036 0\n\t\t 1999 13056 0 13056 13036 0 1999 1981 0 1981 13056 0 1981 10421 0 10421 13056 0 1981 2001 0\n\t\t 2001 10421 0 2001 10422 0 10422 10421 0 2001 2003 0 2003 10422 0 2003 13118 0 13118 10422 0\n\t\t 2003 1984 0 1984 13118 0 1984 10478 0 10478 13118 0 1984 2006 0 2006 10478 0 2006 10475 0\n\t\t 10475 10478 0 2006 1987 0 1987 10475 0 1987 10215 0 10215 10475 0 1987 2010 0 2010 10215 0\n\t\t 2010 10216 0 10216 10215 0 2010 2008 0 2008 10216 0 10432 10216 0 1961 1962 0 1962 1990 0\n\t\t 1990 1961 0 1974 1961 0 1991 1961 0 1991 12945 0 12945 1961 0 1965 12945 0 1991 1965 0\n\t\t 1993 1965 0 2008 1965 0 2008 1966 0 1966 1965 0 1962 1994 0 1994 1990 0 1994 1978 0\n\t\t 1994 1995 0 1994 1996 0 1996 1995 0 1996 10083 0 10083 1995 0 10083 1998 0 10083 1999 0\n\t\t 10083 2000 0 2000 1999 0 2000 1970 0 1970 1999 0 1970 1981 0 1970 2001 0 1970 1968 0\n\t\t 1968 2001 0 1968 10770 0 10770 2001 0 10770 2003 0 10770 1984 0 10770 2004 0 2004 1984 0\n\t\t 2004 2005 0 2005 1984 0 2005 2006 0 2005 1987 0 2005 2007 0 2007 1987 0 2007 13140 0\n\t\t 13140 1987 0 13140 2010 0 13140 2008 0 13140 1966 0 1976 1975 0 1975 1973 0 1973 1976 0\n\t\t 1973 1989 0 1989 1976 0 1973 2011 0 2011 1989 0 1973 1980 0 1980 2011 0 1973 1979 0\n\t\t 1979 1980 0 1973 2012 0 2012 1979 0 1979 2013 0 2013 1980 0 1980 1982 0 1982 2011 0\n\t\t 1980 2014 0 2014 1982 0 1982 1983 0 1983 2011 0 2011 1986 0 1986 1989 0 2011 1985 0\n\t\t 1985 1986 0 1986 1988 0 1988 1989 0 1989 1977 0 1977 1976 0 2015 2017 0 2017 2016 0\n\t\t 2016 2015 0 2016 2018 0 2018 2015 0 2016 10910 0 10910 2018 0 10910 10894 0 10894 2018 0\n\t\t 2020 2019 0 2019 11514 0 11514 2020 0 11514 10907 0 10907 2020 0 2015 11002 0 11002 2017 0\n\t\t 11002 2024 0 2024 2017 0 11002 11508 0 11508 2024 0 11508 2026 0 2026 2024 0 10908 2021 0\n\t\t 2021 2027 0 2027 10908 0 2027 11539 0 11539 10908 0 2027 2050 0 2050 11539 0 2050 2049 0\n\t\t 2049 11539 0 11508 11439 0 11439 2026 0 11439 2030 0 2030 2026 0 11439 11440 0 11440 2030 0\n\t\t 11440 2032 0;\n\tsetAttr \".ed[6640:6805]\" 2032 2030 0 11440 11480 0 11480 2032 0 11480 2034 0\n\t\t 2034 2032 0 11480 11396 0 11396 2034 0 11396 2036 0 2036 2034 0 11396 11375 0 11375 2036 0\n\t\t 11375 2038 0 2038 2036 0 11375 11362 0 11362 2038 0 11362 2040 0 2040 2038 0 11362 11329 0\n\t\t 11329 2040 0 11329 11331 0 11331 2040 0 2042 11330 0 11330 11879 0 11879 2042 0 11879 11892 0\n\t\t 11892 2042 0 2044 11880 0 11880 2045 0 2045 2044 0 2045 2046 0 2046 2044 0 2045 2047 0\n\t\t 2047 2046 0 2047 2048 0 2048 2046 0 2047 2049 0 2049 2048 0 2050 2048 0 11253 2037 0\n\t\t 2037 2035 0 2035 11253 0 2035 11254 0 11254 11253 0 2035 2033 0 2033 11254 0 2033 12605 0\n\t\t 12605 11254 0 2033 2031 0 2031 12605 0 2031 11278 0 11278 12605 0 2031 2029 0 2029 11278 0\n\t\t 2029 11279 0 11279 11278 0 2029 2025 0 2025 11279 0 2025 11553 0 11553 11279 0 2025 2023 0\n\t\t 2023 11553 0 2023 2060 0 2060 11553 0 2023 10895 0 10895 2060 0 10895 13258 0 13258 2060 0\n\t\t 10895 10892 0 10892 13258 0 10892 2061 0 2061 13258 0 10892 10893 0 10893 2061 0\n\t\t 10893 13252 0 13252 2061 0 10893 10909 0 10909 13252 0 10909 13253 0 13253 13252 0\n\t\t 13254 2022 0 2022 2028 0 2028 13254 0 2028 12572 0 12572 13254 0 2028 11978 0 11978 12572 0\n\t\t 11978 12545 0 12545 12572 0 11253 11387 0 11387 2037 0 11387 2039 0 2039 2037 0 11387 11378 0\n\t\t 11378 2039 0 11378 2041 0 2041 2039 0 11378 11379 0 11379 2041 0 11379 2043 0 2043 2041 0\n\t\t 11878 11380 0 11380 13266 0 13266 11878 0 13266 11897 0 11897 11878 0 13266 12543 0\n\t\t 12543 11897 0 12543 11898 0 11898 11897 0 12543 12545 0 12545 11898 0 11978 11898 0\n\t\t 11552 2055 0 2055 13251 0 13251 11552 0 13251 2062 0 2062 11552 0 13251 12573 0 12573 2062 0\n\t\t 13251 2056 0 2056 12573 0 2056 2063 0 2063 12573 0 12573 12544 0 12544 2062 0 12544 2051 0\n\t\t 2051 2062 0 12544 2058 0 2058 2051 0 2058 2064 0 2064 2051 0 2058 2065 0 2065 2064 0\n\t\t 2064 2066 0 2066 2051 0 2051 2054 0 2054 2062 0 2051 2053 0 2053 2054 0 2051 2052 0\n\t\t 2052 2053 0 2052 2067 0 2067 2053 0 2057 2059 0 2059 2068 0 2068 2057 0 12232 12539 0\n\t\t 12539 2069 0 2069 12232 0 2069 9412 0 9412 12232 0 12539 2099 0 2099 2069 0 2099 2136 0\n\t\t 2136 2069 0 9439 2069 0 2136 9439 0 2136 9440 0 9440 9439 0 9439 2153 0 2153 2069 0\n\t\t 2153 9412 0 9413 9412 0 2153 9413 0 2153 2156 0 2156 9413 0;\n\tsetAttr \".ed[6806:6971]\" 2136 2151 0 2151 9440 0 2151 2176 0 2176 9440 0 9828 9893 0\n\t\t 9893 2075 0 2075 9828 0 2075 2076 0 2076 9828 0 2175 9828 0 2076 2175 0 2076 2077 0\n\t\t 2077 2175 0 2078 2075 0 9893 2078 0 9893 9842 0 9842 2078 0 2077 12387 0 12387 2175 0\n\t\t 12387 9849 0 9849 2175 0 2076 2157 0 2157 2077 0 2075 2157 0 2157 9229 0 9229 2077 0\n\t\t 2075 9953 0 9953 2157 0 2078 9953 0 2078 9954 0 9954 9953 0 2078 2082 0 2082 9954 0\n\t\t 9842 2082 0 2082 2160 0 2160 9954 0 12463 2160 0 2082 12463 0 2082 2084 0 2084 12463 0\n\t\t 2162 12463 0 2084 2162 0 2084 2085 0 2085 2162 0 9743 2084 0 2082 9743 0 9743 2085 0\n\t\t 2082 9843 0 9843 9743 0 9842 9843 0 9743 9705 0 9705 2085 0 9705 9992 0 9992 2085 0\n\t\t 9992 9972 0 9972 2085 0 9992 9973 0 9973 9972 0 9972 9993 0 9993 2085 0 9993 2162 0\n\t\t 9993 9994 0 9994 2162 0 9994 10265 0 10265 2162 0 9229 9215 0 9215 2077 0 9215 12387 0\n\t\t 2093 2095 0 2095 10225 0 10225 2093 0 10225 10226 0 10226 2093 0 2093 10183 0 10183 2095 0\n\t\t 10183 10184 0 10184 2095 0 2186 2095 0 10184 2186 0 10184 9583 0 9583 2186 0 10184 10185 0\n\t\t 10185 9583 0 10185 9581 0 9581 9583 0 10185 2070 0 2070 9581 0 2070 2182 0 2182 9581 0\n\t\t 2070 12233 0 12233 2182 0 12233 8937 0 8937 2182 0 12233 10225 0 10225 8937 0 2186 8939 0\n\t\t 8939 2095 0 8939 10225 0 8939 8937 0 2094 2102 0 2102 2071 0 2071 2094 0 2096 2094 0\n\t\t 2071 2096 0 2071 2103 0 2103 2096 0 2071 2074 0 2074 2103 0 2074 2104 0 2104 2103 0\n\t\t 2074 2138 0 2138 2104 0 2138 2105 0 2105 2104 0 2138 8956 0 8956 2105 0 8956 2107 0\n\t\t 2107 2105 0 8956 8957 0 8957 2107 0 8957 2109 0 2109 2107 0 8957 2139 0 2139 2109 0\n\t\t 2139 2110 0 2110 2109 0 2139 8870 0 8870 2110 0 8870 2111 0 2111 2110 0 8870 12131 0\n\t\t 12131 2111 0 12131 2113 0 2113 2111 0 12131 2142 0 2142 2113 0 2142 2114 0 2114 2113 0\n\t\t 2142 12082 0 12082 2114 0 12082 2116 0 2116 2114 0 2117 2116 0 12082 2117 0 12082 12083 0\n\t\t 12083 2117 0 2118 2117 0 12083 2118 0 12083 12660 0 12660 2118 0 12660 12661 0 12661 2118 0\n\t\t 12661 2120 0 2120 2118 0 12661 11997 0 11997 2120 0 11997 11999 0 11999 2120 0 11982 2122 0\n\t\t 2122 11998 0 11998 11982 0 11998 11983 0 11983 11982 0 2123 11984 0 11984 11989 0\n\t\t 11989 2123 0;\n\tsetAttr \".ed[6972:7137]\" 11989 2126 0 2126 2123 0 11989 11990 0 11990 2126 0\n\t\t 11990 2128 0 2128 2126 0 11990 12018 0 12018 2128 0 12018 2130 0 2130 2128 0 12018 2149 0\n\t\t 2149 2130 0 2149 2131 0 2131 2130 0 2149 12060 0 12060 2131 0 12060 2133 0 2133 2131 0\n\t\t 12060 12061 0 12061 2133 0 12061 2134 0 2134 2133 0 2135 2134 0 12061 2135 0 12061 12106 0\n\t\t 12106 2135 0 12106 10186 0 10186 2135 0 10186 2098 0 2098 2135 0 2098 2097 0 2097 2135 0\n\t\t 2156 12337 0 12337 9413 0 12337 12291 0 12291 9413 0 12337 9375 0 9375 12291 0 9375 2106 0\n\t\t 2106 12291 0 9375 9321 0 9321 2106 0 9321 2108 0 2108 2106 0 9321 2161 0 2161 2108 0\n\t\t 2161 8869 0 8869 2108 0 2161 12198 0 12198 8869 0 12198 2141 0 2141 8869 0 12198 2163 0\n\t\t 2163 2141 0 2163 2112 0 2112 2141 0 12132 2112 0 2163 12132 0 2163 11861 0 11861 12132 0\n\t\t 11861 11862 0 11862 12132 0 11862 2115 0 2115 12132 0 11862 9455 0 9455 2115 0 9455 2145 0\n\t\t 2145 2115 0 2119 2145 0 9455 2119 0 9455 2165 0 2165 2119 0 2146 2119 0 2165 2146 0\n\t\t 2165 2166 0 2166 2146 0 2166 9429 0 9429 2146 0 9429 2121 0 2121 2146 0 9429 9707 0\n\t\t 9707 2121 0 9707 2124 0 2124 2121 0 9707 9753 0 9753 2124 0 9753 2125 0 2125 2124 0\n\t\t 9753 9783 0 9783 2125 0 9783 2127 0 2127 2125 0 9783 11765 0 11765 2127 0 11765 2129 0\n\t\t 2129 2127 0 11765 11662 0 11662 2129 0 11662 12189 0 12189 2129 0 11662 11663 0 11663 12189 0\n\t\t 11663 2132 0 2132 12189 0 11663 2176 0 2176 2132 0 2151 2132 0 9441 2177 0 2177 2152 0\n\t\t 2152 9441 0 2152 2072 0 2072 9441 0 2152 9214 0 9214 2072 0 9214 9212 0 9212 2072 0\n\t\t 9213 2155 0 2155 2154 0 2154 9213 0 2154 9263 0 9263 9213 0 2154 9230 0 9230 9263 0\n\t\t 9230 2137 0 2137 9263 0 9230 2080 0 2080 2137 0 2080 2158 0 2158 2137 0 2080 2081 0\n\t\t 2081 2158 0 2081 2159 0 2159 2158 0 2081 12462 0 12462 2159 0 12462 9322 0 9322 2159 0\n\t\t 2140 9322 0 12462 2140 0 12462 2083 0 2083 2140 0 2083 12620 0 12620 2140 0 12620 12628 0\n\t\t 12628 2140 0 2143 12628 0 12620 2143 0 12620 2092 0 2092 2143 0 2092 2091 0 2091 2143 0\n\t\t 2091 2144 0 2144 2143 0 2091 2090 0 2090 2144 0 2090 2164 0 2164 2144 0 2165 2164 0\n\t\t 2090 2165 0 2090 2088 0 2088 2165 0 2088 2166 0 2088 2089 0 2089 2166 0 2089 2087 0\n\t\t 2087 2166 0;\n\tsetAttr \".ed[7138:7303]\" 2087 2167 0 2167 2166 0 2087 9704 0 9704 2167 0 9704 9706 0\n\t\t 9706 2167 0 2169 2168 0 2168 2170 0 2170 2169 0 2170 2171 0 2171 2169 0 2170 2086 0\n\t\t 2086 2171 0 2086 2172 0 2172 2171 0 2086 2079 0 2079 2172 0 2079 2147 0 2147 2172 0\n\t\t 2079 2173 0 2173 2147 0 2173 2148 0 2148 2147 0 2150 2148 0 2173 2150 0 2173 2174 0\n\t\t 2174 2150 0 2174 9829 0 9829 2150 0 9829 12574 0 12574 2150 0 9829 9848 0 9848 12574 0\n\t\t 9848 2073 0 2073 12574 0 12694 9655 0 9655 12710 0 12710 12694 0 12710 12695 0 12695 12694 0\n\t\t 12694 2185 0 2185 9655 0 2185 9656 0 9656 9655 0 12709 2179 0 2179 12699 0 12699 12709 0\n\t\t 12699 2100 0 2100 12709 0 9582 12699 0 2179 9582 0 2179 9657 0 9657 9582 0 2183 2180 0\n\t\t 2180 12689 0 12689 2183 0 12689 9584 0 9584 2183 0 12688 2178 0 2178 12692 0 12692 12688 0\n\t\t 12692 2184 0 2184 12688 0 8940 12692 0 2178 8940 0 2178 12696 0 12696 8940 0 2187 2181 0\n\t\t 2181 8938 0 8938 2187 0 8938 2101 0 2101 2187 0 2188 2190 0 2190 9651 0 9651 2188 0\n\t\t 9651 9652 0 9652 2188 0 2190 2192 0 2192 9651 0 2192 9654 0 9654 9651 0 2194 2190 0\n\t\t 2188 2194 0 2194 2192 0 2188 2195 0 2195 2194 0 2195 2204 0 2204 2194 0 2204 12825 0\n\t\t 12825 2194 0 12825 2203 0 2203 2194 0 2203 2197 0 2197 2194 0 2197 2192 0 2200 2197 0\n\t\t 2203 2200 0 2200 2192 0 2203 11064 0 11064 2200 0 9839 9654 0 2192 9839 0 2192 9758 0\n\t\t 9758 9839 0 2200 9758 0 2199 9757 0 9757 11065 0 11065 2199 0 11065 2205 0 2205 2199 0\n\t\t 2199 2201 0 2201 9757 0 2201 2202 0 2202 9757 0 9840 2202 0 2201 9840 0 2201 13203 0\n\t\t 13203 9840 0 11063 2196 0 2196 12824 0 12824 11063 0 12824 11081 0 11081 11063 0\n\t\t 2206 11063 0 11081 2206 0 2198 2207 0 2207 2191 0 2191 2198 0 2191 2193 0 2193 2198 0\n\t\t 2191 2189 0 2189 2193 0 2208 10813 0 10813 10803 0 10803 2208 0 10805 2208 0 10803 10805 0\n\t\t 10805 10747 0 10747 2208 0 2217 2208 0 10747 2217 0 2217 13174 0 13174 2208 0 2220 2208 0\n\t\t 13174 2220 0 2220 13206 0 13206 2208 0 11724 2208 0 13206 11724 0 11724 11604 0 11604 2208 0\n\t\t 11604 10813 0 11757 10806 0 10806 2211 0 2211 11757 0 2211 11867 0 11867 11757 0\n\t\t 10861 11868 0 11868 10804 0 10804 10861 0 10804 10814 0 10814 10861 0 2212 11758 0\n\t\t 11758 11830 0 11830 2212 0 11830 2215 0;\n\tsetAttr \".ed[7304:7469]\" 2215 2212 0 10748 2231 0 2231 10726 0 10726 10748 0\n\t\t 10726 10729 0 10729 10748 0 10730 10727 0 10727 10736 0 10736 10730 0 10736 2209 0\n\t\t 2209 10730 0 13175 10735 0 10735 10683 0 10683 13175 0 10683 10686 0 10686 13175 0\n\t\t 10687 10684 0 10684 11689 0 11689 10687 0 11689 13207 0 13207 10687 0 2210 11690 0\n\t\t 11690 11702 0 11702 2210 0 11702 11723 0 11723 2210 0 2223 11703 0 11703 13114 0\n\t\t 13114 2223 0 13114 2224 0 2224 2223 0 10862 2214 0 2214 11605 0 11605 10862 0 11605 2238 0\n\t\t 2238 10862 0 2225 11756 0 11756 11866 0 11866 2225 0 11866 11869 0 11869 2225 0 2228 2226 0\n\t\t 2226 10863 0 10863 2228 0 10863 13332 0 13332 2228 0 2227 11755 0 11755 11828 0 11828 2227 0\n\t\t 11828 11829 0 11829 2227 0 11831 2230 0 2230 2232 0 2232 11831 0 2232 10728 0 10728 11831 0\n\t\t 2216 13326 0 13326 13330 0 13330 2216 0 13330 2218 0 2218 2216 0 10737 2233 0 2233 13333 0\n\t\t 13333 10737 0 13333 10685 0 10685 10737 0 2219 2234 0 2234 2235 0 2235 2219 0 2235 2221 0\n\t\t 2221 2219 0 11691 13331 0 13331 2236 0 2236 11691 0 2236 11704 0 11704 11691 0 2222 13123 0\n\t\t 13123 13115 0 13115 2222 0 13115 13113 0 13113 2222 0 2229 2213 0 2213 13112 0 13112 2229 0\n\t\t 13112 2237 0 2237 2229 0 10495 10496 0 10496 2240 0 2240 10495 0 2240 2242 0 2242 10495 0\n\t\t 2243 2240 0 10496 2243 0 10496 11123 0 11123 2243 0 2240 2244 0 2244 2242 0 2243 2244 0\n\t\t 2244 2245 0 2245 2242 0 2254 2245 0 2244 2254 0 2244 11165 0 11165 2254 0 13061 11165 0\n\t\t 2244 13061 0 2244 2247 0 2247 13061 0 2243 2247 0 2247 10398 0 10398 13061 0 2243 10398 0\n\t\t 10398 10399 0 10399 13061 0 11123 11124 0 11124 2243 0 11124 2251 0 2251 2243 0 2251 10398 0\n\t\t 2248 2249 0 2249 2253 0 2253 2248 0 2253 10400 0 10400 2248 0 2248 10542 0 10542 2249 0\n\t\t 10542 2252 0 2252 2249 0 10542 11125 0 11125 2252 0 11125 11171 0 11171 2252 0 2246 2250 0\n\t\t 2250 13038 0 13038 2246 0 13038 11164 0 11164 2246 0 11164 2255 0 2255 2246 0 2256 2258 0\n\t\t 2258 2257 0 2257 2256 0 2257 2241 0 2241 2256 0 2241 2239 0 2239 2256 0 2259 13104 0\n\t\t 13104 13102 0 13102 2259 0 10599 13104 0 2259 10599 0 2259 10601 0 10601 10599 0\n\t\t 10577 10601 0 2259 10577 0 2259 10579 0 10579 10577 0 10046 10579 0 2259 10046 0\n\t\t 2259 10048 0 10048 10046 0 10008 10048 0 2259 10008 0 2259 10010 0 10010 10008 0\n\t\t 13102 10010 0;\n\tsetAttr \".ed[7470:7635]\" 2260 2263 0 2263 10284 0 10284 2260 0 10284 10261 0\n\t\t 10261 2260 0 13105 2275 0 2275 10201 0 10201 13105 0 10201 13103 0 13103 13105 0\n\t\t 10607 10285 0 10285 10600 0 10600 10607 0 10600 2266 0 2266 10607 0 10609 10606 0\n\t\t 10606 10602 0 10602 10609 0 10602 2261 0 2261 10609 0 9949 10611 0 10611 10578 0\n\t\t 10578 9949 0 10578 2262 0 2262 9949 0 10051 9948 0 9948 10580 0 10580 10051 0 10580 10047 0\n\t\t 10047 10051 0 10101 10052 0 10052 2269 0 2269 10101 0 2269 10049 0 10049 10101 0\n\t\t 10088 10100 0 10100 2270 0 2270 10088 0 2270 2271 0 2271 10088 0 10205 10089 0 10089 10009 0\n\t\t 10009 10205 0 10009 10011 0 10011 10205 0 2272 2264 0 2264 10200 0 10200 2272 0 10200 10203 0\n\t\t 10203 2272 0 10259 10260 0 10260 10283 0 10283 10259 0 10283 10292 0 10292 10259 0\n\t\t 10262 2273 0 2273 10373 0 10373 10262 0 10373 10202 0 10202 10262 0 2276 2274 0 2274 10608 0\n\t\t 10608 2276 0 10608 2279 0 2279 2276 0 12866 2265 0 2265 10610 0 10610 12866 0 10610 12856 0\n\t\t 12856 12866 0 2280 2267 0 2267 9947 0 9947 2280 0 9947 2282 0 2282 2280 0 9950 2281 0\n\t\t 2281 10053 0 10053 9950 0 10053 12874 0 12874 9950 0 2283 2268 0 2268 10099 0 10099 2283 0\n\t\t 10099 10105 0 10105 2283 0 2285 2284 0 2284 10087 0 10087 2285 0 10087 2287 0 2287 2285 0\n\t\t 10090 2286 0 2286 10204 0 10204 10090 0 10204 12880 0 12880 10090 0 2278 2277 0 2277 2288 0\n\t\t 2288 2278 0 2288 2289 0 2289 2278 0 2290 9873 0 9873 9872 0 9872 2290 0 9872 2293 0\n\t\t 2293 2290 0 9830 2290 0 2293 9830 0 2293 2295 0 2295 9830 0 9830 2296 0 2296 2290 0\n\t\t 2296 2297 0 2297 2290 0 2290 9847 0 9847 9873 0 9847 9820 0 9820 9873 0 9817 2297 0\n\t\t 2296 9817 0 2296 9818 0 9818 9817 0 2301 9820 0 9847 2301 0 9847 9816 0 9816 2301 0\n\t\t 9872 9912 0 9912 2293 0 9912 2303 0 2303 2293 0 2303 2295 0 2303 2304 0 2304 2295 0\n\t\t 10968 2303 0 9912 10968 0 9912 10960 0 10960 10968 0 10970 2304 0 2303 10970 0 10968 10970 0\n\t\t 11032 2296 0 2296 2294 0 2294 11032 0 2294 11033 0 11033 11032 0 2294 2295 0 2295 11033 0\n\t\t 11018 2308 0 2308 2309 0 2309 11018 0 2309 11016 0 11016 11018 0 2309 2312 0 2312 11016 0\n\t\t 2295 11015 0 11015 11033 0 2304 11015 0 2312 11017 0 11017 11016 0 11018 2314 0 2314 2308 0\n\t\t 2314 10945 0 10945 2308 0 11032 10944 0 10944 2296 0 10944 9818 0 2304 2316 0;\n\tsetAttr \".ed[7636:7801]\" 2316 11015 0 2312 2316 0 2316 11017 0 10970 2316 0 2316 2317 0\n\t\t 2317 11017 0 10970 11077 0 11077 2316 0 11077 2317 0 11077 2319 0 2319 2317 0 11078 2307 0\n\t\t 2307 9059 0 9059 11078 0 9056 9058 0 9058 10971 0 10971 9056 0 10971 2305 0 2305 9056 0\n\t\t 9049 9057 0 9057 10969 0 10969 9049 0 10969 2306 0 2306 9049 0 9048 9049 0 2306 9048 0\n\t\t 2306 2302 0 2302 9048 0 12318 9048 0 2302 12318 0 2302 2291 0 2291 12318 0 2375 12318 0\n\t\t 2291 2375 0 2291 2292 0 2292 2375 0 12325 2375 0 2292 12325 0 2292 2298 0 2298 12325 0\n\t\t 9059 9065 0 9065 11078 0 11135 2318 0 2318 2380 0 2380 11135 0 2374 12325 0 2298 2374 0\n\t\t 2298 2301 0 2301 2374 0 10845 2374 0 2301 10845 0 9816 10845 0 2373 2322 0 2322 2299 0\n\t\t 2299 2373 0 2299 2300 0 2300 2373 0 9333 9335 0 9335 9819 0 9819 9333 0 9819 2315 0\n\t\t 2315 9333 0 12538 2372 0 2372 10945 0 10945 12538 0 2314 12538 0 2371 12538 0 2314 2371 0\n\t\t 2314 2310 0 2310 2371 0 12321 2371 0 2310 12321 0 2310 2311 0 2311 12321 0 2311 2313 0\n\t\t 2313 12321 0 2313 8936 0 8936 12321 0 2313 11019 0 11019 8936 0 11019 8935 0 8935 8936 0\n\t\t 12293 8935 0 11019 12293 0 11019 11135 0 11135 12293 0 2380 12293 0 2345 13264 0\n\t\t 13264 11203 0 11203 2345 0 11203 11204 0 11204 2345 0 11206 2345 0 11204 11206 0\n\t\t 11204 2384 0 2384 11206 0 11207 11206 0 2384 11207 0 2384 10081 0 10081 11207 0 2349 11207 0\n\t\t 10081 2349 0 10081 10175 0 10175 2349 0 2351 2349 0 10175 2351 0 10175 10177 0 10177 2351 0\n\t\t 9331 2351 0 10177 9331 0 10177 10280 0 10280 9331 0 9356 9331 0 10280 9356 0 10280 10235 0\n\t\t 10235 9356 0 2357 9356 0 10235 2357 0 10235 10237 0 10237 2357 0 2359 2357 0 10237 2359 0\n\t\t 10237 2399 0 2399 2359 0 11970 2359 0 2399 11970 0 2399 11929 0 11929 11970 0 11937 11970 0\n\t\t 11929 11937 0 11929 11871 0 11871 11937 0 11842 11937 0 11871 11842 0 11871 11853 0\n\t\t 11853 11842 0 11843 11842 0 11853 11843 0 11853 11840 0 11840 11843 0 11858 11843 0\n\t\t 11840 11858 0 11840 11421 0 11421 11858 0 2366 11858 0 11421 2366 0 11421 11423 0\n\t\t 11423 2366 0 9222 2366 0 11423 9222 0 11423 11466 0 11466 9222 0 9223 9222 0 11466 9223 0\n\t\t 11466 2408 0 2408 9223 0 13264 9223 0 2408 13264 0 2408 11203 0 2343 2344 0 2344 2327 0\n\t\t 2327 2343 0 2327 13261 0 13261 2343 0 2346 2343 0 13261 2346 0;\n\tsetAttr \".ed[7802:7967]\" 13261 2329 0 2329 2346 0 2347 2346 0 2329 2347 0 2329 2330 0\n\t\t 2330 2347 0 2348 2347 0 2330 2348 0 2330 11541 0 11541 2348 0 9301 2348 0 11541 9301 0\n\t\t 11541 9330 0 9330 9301 0 9302 9301 0 9330 9302 0 9330 2353 0 2353 9302 0 9360 9302 0\n\t\t 2353 9360 0 2353 2355 0 2355 9360 0 9390 9360 0 2355 9390 0 2355 9382 0 9382 9390 0\n\t\t 9207 9390 0 9382 9207 0 9382 9383 0 9383 9207 0 9208 9207 0 9383 9208 0 9383 2331 0\n\t\t 2331 9208 0 9161 9208 0 2331 9161 0 2331 2333 0 2333 9161 0 9141 9161 0 2333 9141 0\n\t\t 2333 2335 0 2335 9141 0 9126 9141 0 2335 9126 0 2335 2337 0 2337 9126 0 9127 9126 0\n\t\t 2337 9127 0 2337 2339 0 2339 9127 0 9178 9128 0 9128 11859 0 11859 9178 0 11859 9256 0\n\t\t 9256 9178 0 9225 2365 0 2365 9257 0 9257 9225 0 9257 2368 0 2368 9225 0 9235 2367 0\n\t\t 2367 9221 0 9221 9235 0 9221 2370 0 2370 9235 0 2344 9235 0 2370 2344 0 2370 2327 0\n\t\t 2361 2362 0 2362 12473 0 12473 2361 0 2323 12473 0 2362 2323 0 2362 2363 0 2363 2323 0\n\t\t 9332 2323 0 2363 9332 0 2363 2364 0 2364 9332 0 9334 9332 0 2364 9334 0 2364 9177 0\n\t\t 9177 9334 0 10846 9334 0 9177 10846 0 9177 9224 0 9224 10846 0 12489 10846 0 9224 12489 0\n\t\t 9224 2369 0 2369 12489 0 2321 12489 0 2369 2321 0 2369 11265 0 11265 2321 0 12317 2321 0\n\t\t 11265 12317 0 11265 11457 0 11457 12317 0 2320 12317 0 11457 2320 0 11457 11458 0\n\t\t 11458 2320 0 2376 2320 0 11458 2376 0 11458 11550 0 11550 2376 0 2377 2376 0 11550 2377 0\n\t\t 11550 11547 0 11547 2377 0 2378 2377 0 11547 2378 0 11547 2350 0 2350 2378 0 2379 2378 0\n\t\t 2350 2379 0 2350 2352 0 2352 2379 0 9066 2379 0 2352 9066 0 2352 2354 0 2354 9066 0\n\t\t 2325 9066 0 2354 2325 0 2354 2356 0 2356 2325 0 2381 2325 0 2356 2381 0 2356 2358 0\n\t\t 2358 2381 0 2382 2381 0 2358 2382 0 2358 2360 0 2360 2382 0 2324 2382 0 2360 2324 0\n\t\t 2360 2361 0 2361 2324 0 12473 2324 0 2383 2385 0 2385 10080 0 10080 2383 0 10080 2328 0\n\t\t 2328 2383 0 2328 2326 0 2326 2383 0 2326 2386 0 2386 2383 0 2409 2386 0 2326 2409 0\n\t\t 2326 9111 0 9111 2409 0 2387 10080 0 2385 2387 0 2385 2388 0 2388 2387 0 10176 2387 0\n\t\t 2388 10176 0 2388 2390 0 2390 10176 0 10178 2389 0 2389 10180 0 10180 10178 0 10180 10295 0\n\t\t 10295 10178 0;\n\tsetAttr \".ed[7968:8133]\" 10279 2391 0 2391 2392 0 2392 10279 0 2392 2394 0 2394 10279 0\n\t\t 10236 2393 0 2393 10362 0 10362 10236 0 10362 10252 0 10252 10236 0 10238 2395 0\n\t\t 2395 2396 0 2396 10238 0 2396 2398 0 2398 10238 0 10243 2397 0 2397 10278 0 10278 10243 0\n\t\t 10278 2400 0 2400 10243 0 2332 10243 0 2400 2332 0 2400 2401 0 2401 2332 0 2334 2332 0\n\t\t 2401 2334 0 2401 2402 0 2402 2334 0 2336 2334 0 2402 2336 0 2402 2403 0 2403 2336 0\n\t\t 11841 2336 0 2403 11841 0 2403 2404 0 2404 11841 0 11422 2338 0 2338 12070 0 12070 11422 0\n\t\t 12070 2405 0 2405 11422 0 2341 2340 0 2340 13338 0 13338 2341 0 13338 2406 0 2406 2341 0\n\t\t 11467 2341 0 2406 11467 0 2406 13340 0 13340 11467 0 9110 2342 0 2342 2407 0 2407 9110 0\n\t\t 2407 9112 0 9112 9110 0 2410 2412 0 2412 8688 0 8688 2410 0 8688 8689 0 8689 2410 0\n\t\t 2410 8704 0 8704 2412 0 8704 2415 0 2415 2412 0 2416 8704 0 2410 2416 0 2410 2417 0\n\t\t 2417 2416 0 8806 2410 0 8689 8806 0 8689 8705 0 8705 8806 0 2417 8808 0 8808 2416 0\n\t\t 8808 8726 0 8726 2416 0 2421 8807 0 8807 8806 0 8806 2421 0 8705 2421 0 8790 8688 0\n\t\t 2412 8790 0 2412 2423 0 2423 8790 0 2415 2423 0 2415 2424 0 2424 2423 0 2423 9446 0\n\t\t 9446 8790 0 9446 8791 0 8791 8790 0 9464 9446 0 2423 9464 0 2424 9464 0 2414 2416 0\n\t\t 2416 9538 0 9538 2414 0 9538 9539 0 9539 2414 0 2415 2414 0 9539 2415 0 2429 2428 0\n\t\t 2428 9535 0 9535 2429 0 9535 9432 0 9432 2429 0 9426 2429 0 9432 9426 0 9539 2432 0\n\t\t 2432 2415 0 2432 2424 0 9432 9433 0 9433 9426 0 2434 9535 0 2428 2434 0 2428 8729 0\n\t\t 8729 2434 0 8728 9538 0 2416 8728 0 8726 8728 0 2432 2436 0 2436 2424 0 2436 9426 0\n\t\t 9433 2436 0 2436 9464 0 9433 9442 0 9442 2436 0 2436 9434 0 9434 9464 0 9442 9434 0\n\t\t 9442 9436 0 9436 9434 0 9494 9465 0 9465 9435 0 9435 9494 0 2427 9495 0 9495 2497 0\n\t\t 2497 2427 0 2497 2425 0 2425 2427 0 9447 12516 0 12516 9387 0 9387 9447 0 9387 2426 0\n\t\t 2426 9447 0 9387 9388 0 9388 2426 0 9388 2422 0 2422 2426 0 9388 2498 0 2498 2422 0\n\t\t 2498 2411 0 2411 2422 0 2498 12313 0 12313 2411 0 12313 2413 0 2413 2411 0 12313 2499 0\n\t\t 2499 2413 0 2499 2418 0 2418 2413 0 9435 2496 0 2496 9494 0 9862 2438 0 2438 2439 0\n\t\t 2439 9862 0;\n\tsetAttr \".ed[8134:8299]\" 2499 12316 0 12316 2418 0 12316 2421 0 2421 2418 0 12316 2500 0\n\t\t 2500 2421 0 2500 8807 0 2419 12330 0 12330 9006 0 9006 2419 0 9006 2420 0 2420 2419 0\n\t\t 8727 9005 0 9005 8892 0 8892 8727 0 8892 2435 0 2435 8727 0 8729 8893 0 8893 9087 0\n\t\t 9087 8729 0 9087 2434 0 9087 2491 0 2491 2434 0 2491 2430 0 2430 2434 0 2491 2492 0\n\t\t 2492 2430 0 2492 2431 0 2431 2430 0 2433 2431 0 2492 2433 0 2492 2493 0 2493 2433 0\n\t\t 2437 2433 0 2493 2437 0 2493 2494 0 2494 2437 0 2494 2495 0 2495 2437 0 2495 2439 0\n\t\t 2439 2437 0 2495 9862 0 11838 9124 0 9124 11779 0 11779 11838 0 11779 9693 0 9693 11838 0\n\t\t 11779 11655 0 11655 9693 0 11655 9664 0 9664 9693 0 11655 11635 0 11635 9664 0 11635 9665 0\n\t\t 9665 9664 0 11635 11636 0 11636 9665 0 11636 10137 0 10137 9665 0 11636 11406 0 11406 10137 0\n\t\t 11406 10167 0 10167 10137 0 11406 11358 0 11358 10167 0 11358 11962 0 11962 10167 0\n\t\t 11358 2478 0 2478 11962 0 2478 11964 0 11964 11962 0 2478 11938 0 11938 11964 0 11938 10032 0\n\t\t 10032 11964 0 11938 11695 0 11695 10032 0 11695 2517 0 2517 10032 0 11695 11696 0\n\t\t 11696 2517 0 11696 2519 0 2519 2517 0 11696 11721 0 11721 2519 0 11721 11739 0 11739 2519 0\n\t\t 11721 11722 0 11722 11739 0 11722 11740 0 11740 11739 0 11722 11776 0 11776 11740 0\n\t\t 11776 9868 0 9868 11740 0 11776 11777 0 11777 9868 0 11777 9870 0 9870 9868 0 11777 2487 0\n\t\t 2487 9870 0 2487 9891 0 9891 9870 0 2487 12702 0 12702 9891 0 12702 11485 0 11485 9891 0\n\t\t 12702 9125 0 9125 11485 0 9125 11487 0 11487 11485 0 9125 9124 0 9124 11487 0 11838 11487 0\n\t\t 2467 9164 0 9164 2468 0 2468 2467 0 2468 2449 0 2449 2467 0 2468 2470 0 2470 2449 0\n\t\t 2470 2450 0 2450 2449 0 2470 11517 0 11517 2450 0 11517 2451 0 2451 2450 0 11517 2472 0\n\t\t 2472 2451 0 2472 2452 0 2452 2451 0 2472 2473 0 2473 2452 0 2473 2474 0 2474 2452 0\n\t\t 2473 2475 0 2475 2474 0 2475 2476 0 2476 2474 0 2475 2477 0 2477 2476 0 2477 11359 0\n\t\t 11359 2476 0 2477 2479 0 2479 11359 0 2479 2455 0 2455 11359 0 2479 2480 0 2480 2455 0\n\t\t 2480 2456 0 2456 2455 0 2480 2481 0 2481 2456 0 2481 2457 0 2457 2456 0 2481 2482 0\n\t\t 2482 2457 0 2482 2458 0 2458 2457 0 2482 9527 0 9527 2458 0 9527 2460 0 2460 2458 0\n\t\t 9527 9620 0 9620 2460 0 9620 2462 0;\n\tsetAttr \".ed[8300:8465]\" 2462 2460 0 9620 9588 0 9588 2462 0 9588 2463 0 2463 2462 0\n\t\t 11778 9587 0 9587 9561 0 9561 11778 0 9561 9576 0 9576 11778 0 9577 9560 0 9560 9562 0\n\t\t 9562 9577 0 9562 2464 0 2464 9577 0 12703 9563 0 9563 9165 0 9165 12703 0 9165 2490 0\n\t\t 2490 12703 0 9165 9164 0 9164 2490 0 2467 2490 0 9614 2483 0 2483 9526 0 9526 9614 0\n\t\t 9526 9607 0 9607 9614 0 9526 9520 0 9520 9607 0 9520 9608 0 9608 9607 0 9520 9483 0\n\t\t 9483 9608 0 9483 9622 0 9622 9608 0 9483 9482 0 9482 9622 0 9482 9860 0 9860 9622 0\n\t\t 9482 11339 0 11339 9860 0 11339 9861 0 9861 9860 0 11339 11352 0 11352 9861 0 11352 2440 0\n\t\t 2440 9861 0 11352 11384 0 11384 2440 0 11384 12515 0 12515 2440 0 11384 11383 0 11383 12515 0\n\t\t 11383 2441 0 2441 12515 0 11383 2471 0 2471 2441 0 2471 2442 0 2442 2441 0 2471 11447 0\n\t\t 11447 2442 0 11447 12312 0 12312 2442 0 11447 11446 0 11446 12312 0 11446 2443 0\n\t\t 2443 12312 0 11446 2469 0 2469 2443 0 2469 12315 0 12315 2443 0 2469 2489 0 2489 12315 0\n\t\t 2489 2444 0 2444 12315 0 2489 2488 0 2488 2444 0 2488 12329 0 12329 2444 0 2488 2486 0\n\t\t 2486 12329 0 2486 2445 0 2445 12329 0 2486 2485 0 2485 2445 0 2485 2446 0 2446 2445 0\n\t\t 2485 2484 0 2484 2446 0 2484 2447 0 2447 2446 0 2484 2483 0 2483 2447 0 9614 2447 0\n\t\t 2501 2503 0 2503 2502 0 2502 2501 0 2502 2504 0 2504 2501 0 2502 2505 0 2505 2504 0\n\t\t 2505 2448 0 2448 2504 0 2505 12940 0 12940 2448 0 12940 11488 0 11488 2448 0 2501 2507 0\n\t\t 2507 2503 0 2507 2508 0 2508 2503 0 2507 10138 0 10138 2508 0 10138 2510 0 2510 2508 0\n\t\t 10361 2509 0 2509 10166 0 10166 10361 0 10166 10168 0 10168 10361 0 2512 2511 0 2511 11963 0\n\t\t 11963 2512 0 11963 2513 0 2513 2512 0 12966 2453 0 2453 11965 0 11965 12966 0 11965 2514 0\n\t\t 2514 12966 0 12972 2454 0 2454 10033 0 10033 12972 0 10033 2516 0 2516 12972 0 10050 2515 0\n\t\t 2515 10034 0 10034 10050 0 10034 2518 0 2518 10050 0 10034 10111 0 10111 2518 0 10111 2520 0\n\t\t 2520 2518 0 10111 2459 0 2459 2520 0 2459 2521 0 2521 2520 0 2459 2461 0 2461 2521 0\n\t\t 2461 2522 0 2522 2521 0 2461 9869 0 9869 2522 0 9869 9888 0 9888 2522 0 2524 2523 0\n\t\t 2523 9871 0 9871 2524 0 9871 9898 0 9898 2524 0 2526 2525 0 2525 2527 0 2527 2526 0\n\t\t 2527 2528 0;\n\tsetAttr \".ed[8466:8631]\" 2528 2526 0 2527 11486 0 11486 2528 0 11486 13170 0\n\t\t 13170 2528 0 2529 2465 0 2465 2466 0 2466 2529 0 2466 2506 0 2506 2529 0 2530 2532 0\n\t\t 2532 2531 0 2531 2530 0 2531 2570 0 2570 2530 0 2533 2530 0 2570 2533 0 2570 10867 0\n\t\t 10867 2533 0 2535 2532 0 2530 2535 0 2530 2536 0 2536 2535 0 2535 2537 0 2537 2532 0\n\t\t 2537 2538 0 2538 2532 0 2538 2531 0 2539 2538 0 2537 2539 0 2537 2540 0 2540 2539 0\n\t\t 2538 2541 0 2541 2531 0 2539 2541 0 2542 2535 0 2536 2542 0 2536 2574 0 2574 2542 0\n\t\t 2543 2574 0 2536 2543 0 2536 2573 0 2573 2543 0 2530 2573 0 2533 2573 0 2539 2578 0\n\t\t 2578 2541 0 2544 2563 0 2563 10386 0 10386 2544 0 10386 2545 0 2545 2544 0 10855 2563 0\n\t\t 2544 10855 0 2544 2547 0 2547 10855 0 10856 10855 0 2547 10856 0 2547 2549 0 2549 10856 0\n\t\t 2565 10856 0 2549 2565 0 2549 2550 0 2550 2565 0 10498 2565 0 2550 10498 0 2550 2552 0\n\t\t 2552 10498 0 10499 10497 0 10497 10504 0 10504 10499 0 10504 2554 0 2554 10499 0\n\t\t 2555 13213 0 13213 10384 0 10384 2555 0 10384 10383 0 10383 2555 0 2556 2555 0 10383 2556 0\n\t\t 10383 13016 0 13016 2556 0 2558 2556 0 13016 2558 0 13016 2567 0 2567 2558 0 2559 2558 0\n\t\t 2567 2559 0 2567 13010 0 13010 2559 0 10572 10573 0 10573 10385 0 10385 10572 0 10385 13077 0\n\t\t 13077 10572 0 10586 10572 0 13077 10586 0 13077 2546 0 2546 10586 0 10410 10586 0\n\t\t 2546 10410 0 2546 2548 0 2548 10410 0 2572 10410 0 2548 2572 0 2548 13068 0 13068 2572 0\n\t\t 13030 2572 0 13068 13030 0 13068 2551 0 2551 13030 0 2575 13030 0 2551 2575 0 2551 2553 0\n\t\t 2553 2575 0 2560 13011 0 13011 10549 0 10549 2560 0 10549 10550 0 10550 2560 0 10635 10549 0\n\t\t 13011 10635 0 13011 2557 0 2557 10635 0 10654 10635 0 2557 10654 0 2557 2568 0 2568 10654 0\n\t\t 2562 10654 0 2568 2562 0 2568 2569 0 2569 2562 0 2561 2564 0 2564 2534 0 2534 2561 0\n\t\t 2534 2570 0 2570 2561 0 10574 2561 0 2570 10574 0 2531 10574 0 2533 2534 0 2564 2533 0\n\t\t 2564 2571 0 2571 2533 0 2571 10411 0 10411 2533 0 10411 2573 0 10411 2543 0 10411 2566 0\n\t\t 2566 2543 0 2566 2574 0 2566 13031 0 13031 2574 0 2541 10574 0 2541 2576 0 2576 10574 0\n\t\t 2577 2576 0 2541 2577 0 2578 2577 0 2579 2577 0 2578 2579 0 2539 2579 0 2580 2579 0\n\t\t 2539 2580 0 2540 2580 0 2581 2582 0;\n\tsetAttr \".ed[8632:8797]\" 2582 2623 0 2623 2581 0 2623 2583 0 2583 2581 0 2581 2584 0\n\t\t 2584 2582 0 2584 2620 0 2620 2582 0 2583 2585 0 2585 2581 0 2585 2586 0 2586 2581 0\n\t\t 2587 2585 0 2583 2587 0 2583 2588 0 2588 2587 0 2623 2588 0 2588 2631 0 2631 2587 0\n\t\t 2631 2589 0 2589 2587 0 2623 2628 0 2628 2588 0 2628 2631 0 2585 2590 0 2590 2586 0\n\t\t 2590 2626 0 2626 2586 0 2626 2591 0 2591 2586 0 2591 2625 0 2625 2586 0 2625 2584 0\n\t\t 2581 2625 0 2628 2629 0 2629 2631 0 2592 10808 0 10808 10807 0 10807 2592 0 10807 2595 0\n\t\t 2595 2592 0 10807 10826 0 10826 2595 0 10826 2597 0 2597 2595 0 10826 10841 0 10841 2597 0\n\t\t 10841 2599 0 2599 2597 0 10841 10901 0 10901 2599 0 10901 2601 0 2601 2599 0 10901 2613 0\n\t\t 2613 2601 0 2613 13178 0 13178 2601 0 2602 10121 0 10121 10123 0 10123 2602 0 10123 2603 0\n\t\t 2603 2602 0 10809 11036 0 11036 2604 0 2604 10809 0 2604 2615 0 2615 10809 0 2604 2605 0\n\t\t 2605 2615 0 2605 2617 0 2617 2615 0 2605 2606 0 2606 2617 0 2606 9901 0 9901 2617 0\n\t\t 2606 2608 0 2608 9901 0 2608 9902 0 9902 9901 0 10810 2622 0 2622 12839 0 12839 10810 0\n\t\t 12839 2593 0 2593 10810 0 12839 2621 0 2621 2593 0 2621 2596 0 2596 2593 0 2621 12724 0\n\t\t 12724 2596 0 12724 2598 0 2598 2596 0 12724 2624 0 2624 2598 0 2624 2600 0 2600 2598 0\n\t\t 2624 12779 0 12779 2600 0 12779 10122 0 10122 2600 0 12779 2627 0 2627 10122 0 2627 2614 0\n\t\t 2614 10122 0 12771 2594 0 2594 10220 0 10220 12771 0 10220 10217 0 10217 12771 0\n\t\t 10220 10221 0 10221 10217 0 10221 10218 0 10218 10217 0 10221 2607 0 2607 10218 0\n\t\t 2607 2630 0 2630 10218 0 2607 2609 0 2609 2630 0 2609 2619 0 2619 2630 0 2610 2582 0\n\t\t 2582 12901 0 12901 2610 0 12901 12840 0 12840 2610 0 2610 12770 0 12770 2582 0 12770 2623 0\n\t\t 12901 2584 0 2584 12840 0 2584 2611 0 2611 12840 0 12725 2611 0 2584 12725 0 2625 12725 0\n\t\t 2591 12725 0 2591 2612 0 2612 12725 0 2626 2612 0 2626 12780 0 12780 2612 0 12770 2628 0\n\t\t 12770 2616 0 2616 2628 0 2616 2618 0 2618 2628 0 2618 2629 0 2618 12791 0 12791 2629 0\n\t\t 12791 2631 0 12791 12800 0 12800 2631 0 12800 2589 0 2632 2634 0 2634 2633 0 2633 2632 0\n\t\t 2633 2635 0 2635 2632 0 2635 2636 0 2636 2632 0 2636 2646 0 2646 2632 0 2666 2636 0\n\t\t 2635 2666 0 2635 2655 0;\n\tsetAttr \".ed[8798:8963]\" 2655 2666 0 2655 2637 0 2637 2666 0 2655 2638 0 2638 2637 0\n\t\t 2637 2639 0 2639 2666 0 2637 2660 0 2660 2639 0 9534 9496 0 9496 2641 0 2641 9534 0\n\t\t 2641 2643 0 2643 9534 0 2632 2642 0 2642 2640 0 2640 2632 0 2640 2634 0 9496 9497 0\n\t\t 9497 2641 0 2644 2642 0 2632 2644 0 9497 2645 0 2645 2641 0 2664 2645 0 9497 2664 0\n\t\t 9497 2665 0 2665 2664 0 11796 2644 0 2644 2646 0 2646 11796 0 2636 11796 0 11076 9534 0\n\t\t 2643 11076 0 2643 2648 0 2648 11076 0 11213 11076 0 2648 11213 0 2648 2650 0 2650 11213 0\n\t\t 2647 2649 0 2649 2635 0 2635 2647 0 2633 2647 0 11214 11212 0 11212 11327 0 11327 11214 0\n\t\t 11327 11416 0 11416 11214 0 11442 2651 0 2651 2652 0 2652 11442 0 2652 2654 0 2654 11442 0\n\t\t 11215 2653 0 2653 2638 0 2638 11215 0 2655 11215 0 2649 11215 0 2655 2649 0 11515 11442 0\n\t\t 2654 11515 0 2654 2657 0 2657 11515 0 11367 11515 0 2657 11367 0 2657 2659 0 2659 11367 0\n\t\t 2656 2658 0 2658 2660 0 2660 2656 0 2637 2656 0 2653 2656 0 2637 2653 0 2661 11367 0\n\t\t 2659 2661 0 2658 11368 0 11368 2660 0 2659 2662 0 2662 2661 0 2667 2661 0 2662 2667 0\n\t\t 2662 13281 0 13281 2667 0 11368 11799 0 11799 2666 0 2666 11368 0 2639 11368 0 11797 11798 0\n\t\t 11798 2663 0 2663 11797 0 2663 13259 0 13259 11797 0 2640 2647 0 2633 2640 0 2666 11796 0\n\t\t 11799 11796 0 2680 2669 0 2669 2668 0 2668 2680 0 2668 2670 0 2670 2680 0 2670 2671 0\n\t\t 2671 2680 0 2672 2680 0 2671 2672 0 2668 2702 0 2702 2670 0 2702 2673 0 2673 2670 0\n\t\t 2702 2697 0 2697 2673 0 2702 2674 0 2674 2697 0 2674 2675 0 2675 2697 0 2692 2673 0\n\t\t 2697 2692 0 11661 2678 0 2678 2677 0 2677 11661 0 2677 2679 0 2679 11661 0 2676 11569 0\n\t\t 11569 2680 0 2680 2676 0 2672 2676 0 2677 2681 0 2681 2679 0 2681 11570 0 11570 2679 0\n\t\t 11569 2682 0 2682 2680 0 2681 12511 0 12511 11570 0 12511 2701 0 2701 11570 0 2669 2682 0\n\t\t 2682 9404 0 9404 2669 0 9404 2668 0 11661 8970 0 8970 2678 0 8970 2685 0 2685 2678 0\n\t\t 8970 8941 0 8941 2685 0 8941 8943 0 8943 2685 0 2670 2686 0 2686 2684 0 2684 2670 0\n\t\t 2684 2671 0 2687 8942 0 8942 8914 0 8914 2687 0 8914 8916 0 8916 2687 0 2689 8915 0\n\t\t 8915 9136 0 9136 2689 0 9136 2691 0 2691 2689 0 2692 2690 0 2690 2688 0 2688 2692 0;\n\tsetAttr \".ed[8964:9129]\" 2688 2673 0 2673 2686 0 2688 2686 0 9136 9137 0 9137 2691 0\n\t\t 9137 2694 0 2694 2691 0 9137 9262 0 9262 2694 0 9262 2696 0 2696 2694 0 2675 2695 0\n\t\t 2695 2693 0 2693 2675 0 2693 2697 0 2697 2690 0 2693 2690 0 9262 9394 0 9394 2696 0\n\t\t 2698 2695 0 2675 2698 0 9394 2699 0 2699 2696 0 9394 2703 0 2703 2699 0 2703 12495 0\n\t\t 12495 2699 0 2702 9407 0 9407 2698 0 2698 2702 0 2698 2674 0 2700 9406 0 9406 9405 0\n\t\t 9405 2700 0 9405 2683 0 2683 2700 0 2671 2676 0 2684 2676 0 9404 9407 0 2702 9404 0\n\t\t 10146 10147 0 10147 2721 0 2721 10146 0 2721 2738 0 2738 10146 0 2704 2738 0 2721 2704 0\n\t\t 2721 11931 0 11931 2704 0 13339 2717 0 2717 13335 0 13335 13339 0 13335 2706 0 2706 13339 0\n\t\t 13335 8696 0 8696 2706 0 8696 2707 0 2707 2706 0 8696 8697 0 8697 2707 0 8697 2708 0\n\t\t 2708 2707 0 2709 2708 0 8697 2709 0 8697 2728 0 2728 2709 0 2710 2712 0 2712 2711 0\n\t\t 2711 2710 0 2711 8976 0 8976 2710 0 2710 2714 0 2714 2712 0 2714 2715 0 2715 2712 0\n\t\t 2705 2712 0 2715 2705 0 2715 2716 0 2716 2705 0 2705 11930 0 11930 2712 0 11930 2711 0\n\t\t 8976 11933 0 11933 2710 0 11933 8780 0 8780 2710 0 8781 2714 0 2710 8781 0 8780 8781 0\n\t\t 11930 2721 0 2721 2711 0 2721 2713 0 2713 2711 0 10147 2713 0 10147 11934 0 11934 2713 0\n\t\t 2722 2714 0 8781 2722 0 8781 11920 0 11920 2722 0 2724 2716 0 2715 2724 0 2715 2725 0\n\t\t 2725 2724 0 2714 2725 0 2722 2725 0 11920 2806 0 2806 2722 0 2806 2726 0 2726 2722 0\n\t\t 2726 2725 0 2725 2727 0 2727 2724 0 2726 2727 0 2727 11947 0 11947 2724 0 10145 2731 0\n\t\t 2731 2730 0 2730 10145 0 2730 2732 0 2732 10145 0 2731 2733 0 2733 2730 0 2733 2734 0\n\t\t 2734 2730 0 2733 2735 0 2735 2734 0 2735 2736 0 2736 2734 0 2735 2737 0 2737 2736 0\n\t\t 2737 2805 0 2805 2736 0 2805 12037 0 12037 2736 0 12037 2723 0 2723 2736 0 2723 2734 0\n\t\t 2723 2720 0 2720 2734 0 2719 2730 0 2734 2719 0 2720 2719 0 2718 2732 0 2730 2718 0\n\t\t 2719 2718 0 2737 2729 0 2729 12096 0 12096 2737 0 12096 2739 0 2739 2737 0 9038 8821 0\n\t\t 8821 2761 0 2761 9038 0 2761 12196 0 12196 9038 0 11736 2761 0 8821 11736 0 8821 8823 0\n\t\t 8823 11736 0 11298 11736 0 8823 11298 0 8823 8849 0 8849 11298 0 8849 8894 0 8894 11298 0;\n\tsetAttr \".ed[9130:9295]\" 8894 11299 0 11299 11298 0 8894 2750 0 2750 11299 0\n\t\t 2750 12434 0 12434 11299 0 11145 12434 0 2750 11145 0 2750 12397 0 12397 11145 0\n\t\t 11143 11145 0 12397 11143 0 12397 11366 0 11366 11143 0 11872 11143 0 11366 11872 0\n\t\t 11366 12418 0 12418 11872 0 11873 11872 0 12418 11873 0 12418 2754 0 2754 11873 0\n\t\t 2764 11873 0 2754 2764 0 2754 9039 0 9039 2764 0 12196 2764 0 9039 12196 0 9039 9038 0\n\t\t 358 2747 0 2747 8822 0 8822 358 0 8822 2748 0 2748 358 0 8824 2740 0 2740 12066 0\n\t\t 12066 8824 0 12066 8672 0 8672 8824 0 357 358 0 2748 357 0 2748 2749 0 2749 357 0\n\t\t 11401 357 0 2749 11401 0 2749 11444 0 11444 11401 0 361 363 0 363 2743 0 2743 361 0\n\t\t 2743 2742 0 2742 361 0 8895 2743 0 363 8895 0 363 365 0 365 8895 0 8687 11493 0 11493 12396 0\n\t\t 12396 8687 0 12396 2744 0 2744 8687 0 12398 12396 0 11493 12398 0 11493 11495 0 11495 12398 0\n\t\t 2752 11363 0 11363 11365 0 11365 2752 0 11365 2753 0 2753 2752 0 11443 2746 0 2746 2755 0\n\t\t 2755 11443 0 2755 2756 0 2756 11443 0 2757 2755 0 2746 2757 0 2746 2758 0 2758 2757 0\n\t\t 11692 11737 0 11737 11735 0 11735 11692 0 11735 11706 0 11706 11692 0 2741 11737 0\n\t\t 11692 2741 0 11692 11693 0 11693 2741 0 12197 2741 0 11693 12197 0 11693 13234 0\n\t\t 13234 12197 0 13234 13227 0 13227 12197 0 13227 11874 0 11874 12197 0 2766 2767 0\n\t\t 2767 13229 0 13229 2766 0 13229 13250 0 13250 2766 0 11144 2766 0 13250 11144 0 13250 2768 0\n\t\t 2768 11144 0 11157 13230 0 13230 11300 0 11300 11157 0 11300 2745 0 2745 11157 0\n\t\t 11158 11157 0 2745 11158 0 2745 11146 0 11146 11158 0 13231 13237 0 13237 2770 0\n\t\t 2770 13231 0 2770 2772 0 2772 13231 0 13237 11708 0 11708 2770 0 11708 2760 0 2760 2770 0\n\t\t 11159 2774 0 2774 2773 0 2773 11159 0 2773 13236 0 13236 11159 0 13228 2775 0 2775 2763 0\n\t\t 2763 13228 0 2765 11694 0 11694 13235 0 13235 2765 0 11694 13232 0 13232 13235 0\n\t\t 11694 11707 0 11707 13232 0 11694 2759 0 2759 11707 0 2762 2771 0 2771 2769 0 2769 2762 0\n\t\t 13232 2776 0 2776 13235 0 2776 2777 0 2777 13235 0 13235 2778 0 2778 2765 0 12785 2810 0\n\t\t 2810 2794 0 2794 12785 0 2794 12769 0 12769 12785 0 2810 2780 0 2780 2794 0 2780 11233 0\n\t\t 11233 2794 0 2792 11234 0 11234 11232 0 11232 2792 0 11232 2782 0 2782 2792 0 2793 2792 0\n\t\t 2782 2793 0 2782 2783 0;\n\tsetAttr \".ed[9296:9461]\" 2783 2793 0 12041 2793 0 2783 12041 0 2783 2785 0 2785 12041 0\n\t\t 2785 2709 0 2709 12041 0 2728 12041 0 2786 2788 0 2788 2787 0 2787 2786 0 2787 2789 0\n\t\t 2789 2786 0 2790 2786 0 2789 2790 0 2789 2791 0 2791 2790 0 2789 10927 0 10927 2791 0\n\t\t 10927 10928 0 10928 2791 0 2787 2781 0 2781 2789 0 2781 10927 0 9837 2788 0 2786 9837 0\n\t\t 2786 9836 0 9836 9837 0 9941 9836 0 2786 9941 0 2790 9941 0 2787 11005 0 11005 2794 0\n\t\t 2794 2787 0 2794 2781 0 11005 2809 0 2809 12769 0 12769 11005 0 2790 2795 0 2795 9941 0\n\t\t 2795 12036 0 12036 9941 0 10928 2784 0 2784 2791 0 2784 2797 0 2797 2791 0 2797 2795 0\n\t\t 2790 2797 0 2806 12036 0 2795 2806 0 2795 2726 0 2797 2726 0 2727 2797 0 2784 2727 0\n\t\t 2784 11947 0 12784 2779 0 2779 2799 0 2799 12784 0 2799 2800 0 2800 12784 0 2801 2800 0\n\t\t 2799 2801 0 2799 2802 0 2802 2801 0 2803 2801 0 2802 2803 0 2802 2804 0 2804 2803 0\n\t\t 2737 2803 0 2804 2737 0 2804 2805 0 2804 12037 0 2804 2796 0 2796 12037 0 2802 2796 0\n\t\t 2802 2807 0 2807 2796 0 2808 2807 0 2802 2808 0 2799 2808 0 9838 2808 0 2799 9838 0\n\t\t 2779 9838 0 2739 12820 0 12820 2737 0 12820 2798 0 2798 2737 0 12828 9895 0 9895 9894 0\n\t\t 9894 12828 0 9894 10254 0 10254 12828 0 12828 12835 0 12835 9895 0 12835 10491 0\n\t\t 10491 9895 0 12835 11786 0 11786 10491 0 11786 12845 0 12845 10491 0 10997 12845 0\n\t\t 11786 10997 0 11786 11787 0 11787 10997 0 2825 10997 0 11787 2825 0 11787 2839 0\n\t\t 2839 2825 0 2839 9957 0 9957 2825 0 9957 12860 0 12860 2825 0 9957 9959 0 9959 12860 0\n\t\t 9959 12862 0 12862 12860 0 9959 10581 0 10581 12862 0 10581 2829 0 2829 12862 0 10581 10269 0\n\t\t 10269 2829 0 10269 13006 0 13006 2829 0 10269 10255 0 10255 13006 0 10255 9975 0\n\t\t 9975 13006 0 10255 10254 0 10254 9975 0 9894 9975 0 735 2812 0 2812 9896 0 9896 735 0\n\t\t 9896 9519 0 9519 735 0 739 2813 0 2813 10490 0 10490 739 0 10490 10492 0 10492 739 0\n\t\t 735 733 0 733 2812 0 733 2819 0 2819 2812 0 733 8759 0 8759 2819 0 8759 2822 0 2822 2819 0\n\t\t 2821 2820 0 2820 2814 0 2814 2821 0 2814 740 0 740 2821 0 2814 10996 0 10996 740 0\n\t\t 10996 10998 0 10998 740 0 2824 2823 0 2823 12859 0 12859 2824 0 12859 12155 0 12155 2824 0\n\t\t 12859 12861 0 12861 12155 0 12861 9550 0;\n\tsetAttr \".ed[9462:9627]\" 9550 12155 0 736 2827 0 2827 12863 0 12863 736 0 12863 9548 0\n\t\t 9548 736 0 12122 13008 0 13008 13007 0 13007 12122 0 13007 731 0 731 12122 0 12122 732 0\n\t\t 732 13008 0 732 2817 0 2817 13008 0 10266 12986 0 12986 12834 0 12834 10266 0 12834 2811 0\n\t\t 2811 10266 0 2811 2832 0 2832 10266 0 2832 10267 0 10267 10266 0 2832 2834 0 2834 10267 0\n\t\t 2834 12995 0 12995 10267 0 10632 12995 0 2834 10632 0 2834 10270 0 10270 10632 0\n\t\t 10633 2836 0 2836 2818 0 2818 10633 0 2818 13021 0 13021 10633 0 2818 9960 0 9960 13021 0\n\t\t 9960 13023 0 13023 13021 0 10414 12853 0 12853 11788 0 11788 10414 0 11788 11771 0\n\t\t 11771 10414 0 10414 10415 0 10415 12853 0 10415 9958 0 9958 12853 0 11770 2842 0\n\t\t 2842 2841 0 2841 11770 0 2841 11772 0 11772 11770 0 12985 11772 0 2841 12985 0 2841 2831 0\n\t\t 2831 12985 0 10416 2846 0 2846 2816 0 2816 10416 0 2816 2815 0 2815 10416 0 2844 2845 0\n\t\t 2845 2843 0 2843 2844 0 11769 12987 0 12987 10268 0 10268 11769 0 12987 2830 0 2830 10268 0\n\t\t 10268 13022 0 13022 11769 0 10268 10634 0 10634 13022 0 2833 2847 0 2847 2835 0 2835 2833 0\n\t\t 10634 2837 0 2837 13022 0 13022 2838 0 2838 11769 0 13022 2840 0 2840 2838 0 9681 9679 0\n\t\t 9679 2848 0 2848 9681 0 2848 2849 0 2849 9681 0 2850 2849 0 2848 2850 0 2848 2851 0\n\t\t 2851 2850 0 10596 9681 0 2849 10596 0 2849 2853 0 2853 10596 0 2850 2853 0 10597 10596 0\n\t\t 2853 10597 0 2853 10642 0 10642 10597 0 10643 10642 0 2853 10643 0 2853 2857 0 2857 10643 0\n\t\t 2850 2857 0 10745 2848 0 9679 10745 0 2887 2869 0 2869 2867 0 2867 2887 0 10745 10744 0\n\t\t 10744 2848 0 10744 2851 0 2851 2871 0 2871 2850 0 10744 2871 0 2871 13173 0 13173 2850 0\n\t\t 2857 2875 0 2875 10643 0 13173 2875 0 2875 2850 0 2875 2895 0 2895 10643 0 10744 2859 0\n\t\t 2859 2871 0 2860 10698 0 10698 10696 0 10696 2860 0 10696 10723 0 10723 2860 0 10723 10758 0\n\t\t 10758 2860 0 10758 2865 0 2865 2860 0 2864 2863 0 2863 2866 0 2866 2864 0 2866 10746 0\n\t\t 10746 2864 0 2868 2864 0 10746 2868 0 10746 10755 0 10755 2868 0 10774 10697 0 10697 2862 0\n\t\t 2862 10774 0 2861 2870 0 2870 13172 0 13172 2861 0 13172 13171 0 13171 2861 0 13171 2866 0\n\t\t 2863 13171 0 2863 2861 0 2858 13172 0 2870 2858 0 2870 10782 0 10782 2858 0 2873 2872 0\n\t\t 2872 10774 0 10774 2873 0 10774 2874 0;\n\tsetAttr \".ed[9628:9793]\" 2874 2873 0 2862 2874 0 13168 2858 0 10782 13168 0 10782 10783 0\n\t\t 10783 13168 0 2876 2872 0 2873 2876 0 12698 13168 0 10783 12698 0 10783 10832 0 10832 12698 0\n\t\t 10890 10833 0 10833 2876 0 2876 10890 0 2876 2879 0 2879 10890 0 2873 2879 0 2880 2868 0\n\t\t 10755 2880 0 10699 9691 0 9691 2881 0 2881 10699 0 2882 2881 0 9691 2882 0 9691 2883 0\n\t\t 2883 2882 0 2884 2882 0 2883 2884 0 2883 9722 0 9722 2884 0 9722 9702 0 9702 2884 0\n\t\t 9702 12746 0 12746 2884 0 9703 2885 0 2885 2852 0 2852 9703 0 2852 10598 0 10598 9703 0\n\t\t 9692 2880 0 2880 9680 0 9680 9692 0 9680 2888 0 2888 9692 0 2888 2852 0 2885 2888 0\n\t\t 2885 9692 0 10755 9680 0 2881 2889 0 2889 10699 0 10758 10699 0 2889 10758 0 2889 2865 0\n\t\t 9701 2854 0 2854 2855 0 2855 9701 0 2855 9585 0 9585 9701 0 9586 9585 0 2855 9586 0\n\t\t 2855 2856 0 2856 9586 0 2886 2890 0 2890 2891 0 2891 2886 0 2891 2893 0 2893 2886 0\n\t\t 2891 2892 0 2892 2893 0 2892 2894 0 2894 2893 0 2856 12697 0 12697 9586 0 12697 10834 0\n\t\t 10834 9586 0 2878 2894 0 2892 2878 0 2892 2877 0 2877 2878 0 2922 8703 0 8703 8702 0\n\t\t 8702 2922 0 8702 12375 0 12375 2922 0 2916 12375 0 8702 2916 0 8702 12003 0 12003 2916 0\n\t\t 9509 8703 0 2922 9509 0 2922 12647 0 12647 9509 0 12680 9507 0 9507 9555 0 9555 12680 0\n\t\t 9555 9556 0 9556 12680 0 12646 9555 0 9507 12646 0 9507 9508 0 9508 12646 0 12644 2933 0\n\t\t 2933 2902 0 2902 12644 0 2902 2903 0 2903 12644 0 2936 2902 0 2933 2936 0 2933 8804 0\n\t\t 8804 2936 0 2902 2904 0 2904 2903 0 2904 2905 0 2905 2903 0 2936 12242 0 12242 2902 0\n\t\t 12242 2904 0 9716 12644 0 2903 9716 0 2903 9715 0 9715 9716 0 2905 9715 0 2905 12700 0\n\t\t 12700 9715 0 10668 12053 0 12053 2908 0 2908 10668 0 2908 10661 0 10661 10668 0 2909 10661 0\n\t\t 2908 2909 0 2908 2910 0 2910 2909 0 2911 2908 0 12053 2911 0 12053 9717 0 9717 2911 0\n\t\t 12034 10661 0 2909 12034 0 2909 3018 0 3018 12034 0 2907 2910 0 2908 2907 0 2911 2907 0\n\t\t 12717 2925 0 2925 12500 0 12500 12717 0 12500 12320 0 12320 12717 0 2947 12500 0\n\t\t 2925 2947 0 2925 12259 0 12259 2947 0 12487 2923 0 2923 9327 0 9327 12487 0 9327 2932 0\n\t\t 2932 12487 0 9134 2923 0 12487 9134 0 12487 9132 0 9132 9134 0 11845 2932 0 9327 11845 0\n\t\t 9327 9328 0;\n\tsetAttr \".ed[9794:9959]\" 9328 11845 0 11949 12444 0 12444 2928 0 2928 11949 0\n\t\t 2928 11951 0 11951 11949 0 9133 2928 0 12444 9133 0 12444 9135 0 9135 9133 0 12424 12447 0\n\t\t 12447 11532 0 11532 12424 0 11532 11530 0 11530 12424 0 2918 11532 0 12447 2918 0\n\t\t 12447 11846 0 11846 2918 0 12374 2896 0 2896 2917 0 2917 12374 0 2917 12363 0 12363 12374 0\n\t\t 11529 2926 0 2926 12260 0 12260 11529 0 12260 2914 0 2914 11529 0 12645 2901 0 2901 2927 0\n\t\t 2927 12645 0 2927 11847 0 11847 12645 0 761 12059 0 12059 2942 0 2942 761 0 2942 5780 0\n\t\t 5780 761 0 2920 2929 0 2929 2897 0 2897 2920 0 2897 2930 0 2930 2920 0 12363 2920 0\n\t\t 2930 12363 0 2930 12374 0 2899 2897 0 2929 2899 0 2929 756 0 756 2899 0 9329 2917 0\n\t\t 2896 9329 0 2896 12258 0 12258 9329 0 2931 2921 0 2921 2937 0 2937 2931 0 2937 8803 0\n\t\t 8803 2931 0 11847 2931 0 8803 11847 0 8803 12645 0 8801 2937 0 2921 8801 0 2921 760 0\n\t\t 760 8801 0 2919 2927 0 2901 2919 0 2901 2912 0 2912 2919 0 2934 8814 0 8814 2935 0\n\t\t 2935 2934 0 2935 8800 0 8800 2934 0 2934 2938 0 2938 8814 0 2938 2906 0 2906 8814 0\n\t\t 10753 2934 0 8800 10753 0 8800 8802 0 8802 10753 0 2940 2938 0 2934 2940 0 10753 2940 0\n\t\t 10753 12023 0 12023 2940 0 12023 2941 0 2941 2940 0 2926 9329 0 12258 2926 0 12258 12260 0\n\t\t 12059 2919 0 2912 12059 0 2912 2942 0 12095 12086 0 12086 2944 0 2944 12095 0 2944 2945 0\n\t\t 2945 12095 0 8744 12095 0 2945 8744 0 2945 2900 0 2900 8744 0 13336 8744 0 2900 13336 0\n\t\t 2900 2898 0 2898 13336 0 2954 13336 0 2898 2954 0 2898 755 0 755 2954 0 12002 2944 0\n\t\t 12086 12002 0 12086 12087 0 12087 12002 0 2915 12002 0 12087 2915 0 12087 2956 0\n\t\t 2956 2915 0 753 2915 0 2956 753 0 2956 12187 0 12187 753 0 8871 2950 0 2950 2943 0\n\t\t 2943 8871 0 2943 8872 0 8872 8871 0 2943 8743 0 8743 8872 0 8743 8745 0 8745 8872 0\n\t\t 8871 12220 0 12220 2950 0 12220 2948 0 2948 2950 0 8746 2951 0 2951 2946 0 2946 8746 0\n\t\t 2946 8931 0 8931 8746 0 2946 8948 0 8948 8931 0 8948 8932 0 8932 8931 0 2958 12302 0\n\t\t 12302 12088 0 12088 2958 0 12088 12221 0 12221 2958 0 2958 12160 0 12160 12302 0\n\t\t 12160 2949 0 2949 12302 0 12216 2957 0 2957 2959 0 2959 12216 0 2959 2952 0 2952 12216 0\n\t\t 2959 2960 0 2960 2952 0 2952 2955 0 2955 12216 0;\n\tsetAttr \".ed[9960:10125]\" 2952 2953 0 2953 2955 0 2955 750 0 750 12216 0 2961 10020 0\n\t\t 10020 3000 0 3000 2961 0 3000 2963 0 2963 2961 0 2963 2964 0 2964 2961 0 2964 2965 0\n\t\t 2965 2961 0 3000 10163 0 10163 2963 0 10163 2967 0 2967 2963 0 2967 2964 0 10163 10164 0\n\t\t 10164 2967 0 10164 3001 0 3001 2967 0 3001 12537 0 12537 2967 0 12537 2970 0 2970 2967 0\n\t\t 2970 2964 0 2961 9853 0 9853 10020 0 2981 10021 0 10021 10019 0 10019 2981 0 2965 2980 0\n\t\t 2980 2961 0 2980 9853 0 12805 2965 0 2964 12805 0 12805 2980 0 2964 2985 0 2985 12805 0\n\t\t 12392 2970 0 12537 12392 0 12392 2964 0 12392 2985 0 12537 12436 0 12436 12392 0\n\t\t 12805 9856 0 9856 2980 0 2974 9859 0 9859 9857 0 9857 2974 0 9857 2977 0 2977 2974 0\n\t\t 2974 2978 0 2978 9859 0 2978 9845 0 9845 9859 0 9851 2976 0 2976 2979 0 2979 9851 0\n\t\t 2979 9852 0 9852 9851 0 2979 2982 0 2982 9852 0 2982 2971 0 2971 9852 0 9867 9858 0\n\t\t 9858 2983 0 2983 9867 0 2972 9023 0 9023 2975 0 2975 2972 0 2975 2984 0 2984 2972 0\n\t\t 9851 2984 0 2984 2976 0 2975 2976 0 2972 12391 0 12391 9023 0 12391 9024 0 9024 9023 0\n\t\t 2987 2983 0 2983 2986 0 2986 2987 0 2987 9867 0 2986 2988 0 2988 2987 0 12391 2973 0\n\t\t 2973 9024 0 2973 2989 0 2989 9024 0 2986 9109 0 9109 2988 0 2973 12435 0 12435 2989 0\n\t\t 12435 9308 0 9308 2989 0 9109 9307 0 9307 12428 0 12428 9109 0 12428 2992 0 2992 9109 0\n\t\t 2992 2988 0 2982 8954 0 8954 2971 0 2994 2993 0 2993 8953 0 8953 2994 0 8953 2995 0\n\t\t 2995 2994 0 2994 2996 0 2996 2993 0 2996 9138 0 9138 2993 0 2996 2998 0 2998 9138 0\n\t\t 2998 9399 0 9399 9138 0 9316 9399 0 2998 9316 0 2998 9326 0 9326 9316 0 2966 2999 0\n\t\t 2999 9317 0 9317 2966 0 9317 10165 0 10165 2966 0 2962 8954 0 8954 2997 0 2997 2962 0\n\t\t 2997 12514 0 12514 2962 0 2966 12514 0 12514 2999 0 2997 2999 0 2962 2971 0 8953 9845 0\n\t\t 9845 2995 0 2978 2995 0 12483 2968 0 2968 9315 0 9315 12483 0 9315 3003 0 3003 12483 0\n\t\t 3003 9305 0 9305 12483 0 9305 2969 0 2969 12483 0 9318 3002 0 3002 3005 0 3005 9318 0\n\t\t 3005 3006 0 3006 9318 0 3007 3004 0 3004 9318 0 9318 3007 0 3006 3007 0 2990 2969 0\n\t\t 9305 2990 0 9305 9306 0 9306 2990 0 2991 3008 0 3008 3004 0 3004 2991 0 3007 2991 0\n\t\t 3030 3040 0;\n\tsetAttr \".ed[10126:10291]\" 3040 3057 0 3057 3030 0 3057 3009 0 3009 3030 0 3040 3052 0\n\t\t 3052 3057 0 3052 3024 0 3024 3057 0 3009 3059 0 3059 3030 0 3059 11195 0 11195 3030 0\n\t\t 12505 772 0 772 11193 0 11193 12505 0 11193 10392 0 10392 12505 0 11193 11194 0 11194 10392 0\n\t\t 11194 10390 0 10390 10392 0 3035 3014 0 3014 3013 0 3013 3035 0 3013 3043 0 3043 3035 0\n\t\t 3013 3048 0 3048 3043 0 3048 9999 0 9999 3043 0 3015 3013 0 3014 3015 0 3014 3016 0\n\t\t 3016 3015 0 3015 3050 0 3050 3013 0 3050 3048 0 3035 3054 0 3054 3014 0 3054 3020 0\n\t\t 3020 3014 0 3020 3016 0 3020 3021 0 3021 3016 0 3037 12034 0 12034 3017 0 3017 3037 0\n\t\t 3017 3055 0 3055 3037 0 3018 3017 0 3018 3019 0 3019 3017 0 3017 11221 0 11221 3055 0\n\t\t 11221 10075 0 10075 3055 0 11222 11221 0 3017 11222 0 3019 11222 0 11225 11227 0\n\t\t 11227 3062 0 3062 11225 0 3062 3032 0 3032 11225 0 3062 13013 0 13013 3032 0 13013 12975 0\n\t\t 12975 3032 0 3034 11075 0 11075 10835 0 10835 3034 0 10835 3031 0 3031 3034 0 3031 3025 0\n\t\t 3025 3034 0 3025 3056 0 3056 3034 0 11075 3041 0 3041 10835 0 3041 3039 0 3039 10835 0\n\t\t 11335 11338 0 11338 10055 0 10055 11335 0 10055 3038 0 3038 11335 0 10055 10056 0\n\t\t 10056 3038 0 10056 13166 0 13166 3038 0 775 12597 0 12597 12896 0 12896 775 0 12896 10659 0\n\t\t 10659 775 0 12896 12898 0 12898 10659 0 12898 10657 0 10657 10659 0 3029 13176 0\n\t\t 13176 13161 0 13161 3029 0 13161 10836 0 10836 3029 0 3022 12976 0 12976 3028 0 3028 3022 0\n\t\t 3028 3033 0 3033 3022 0 11074 12878 0 12878 13142 0 13142 11074 0 13142 3036 0 3036 11074 0\n\t\t 12911 10076 0 10076 3053 0 3053 12911 0 3053 3027 0 3027 12911 0 13165 3012 0 3012 3011 0\n\t\t 3011 13165 0 3011 13167 0 13167 13165 0 13165 10836 0 10836 3012 0 13161 3012 0 3026 13167 0\n\t\t 3011 3026 0 3011 12589 0 12589 3026 0 12897 12974 0 12974 13176 0 13176 12897 0 3029 12897 0\n\t\t 10658 10000 0 10000 3047 0 3047 10658 0 3047 3042 0 3042 10658 0 10658 3036 0 3036 10000 0\n\t\t 13142 10000 0 12599 3042 0 3047 12599 0 3047 12894 0 12894 12599 0 10057 10074 0\n\t\t 10074 12878 0 12878 10057 0 11074 10057 0 3045 10003 0 10003 3046 0 3046 3045 0 3046 10001 0\n\t\t 10001 3045 0 3049 3045 0 10001 3049 0 10001 10044 0 10044 3049 0 3045 12023 0 12023 10003 0\n\t\t 12023 12893 0 12893 10003 0 3045 2941 0 3049 2941 0;\n\tsetAttr \".ed[10292:10457]\" 12976 12974 0 12974 3028 0 12897 3028 0 10076 10074 0\n\t\t 10074 3053 0 10057 3053 0 12907 13051 0 13051 13050 0 13050 12907 0 13050 10436 0\n\t\t 10436 12907 0 12907 10456 0 10456 13051 0 10456 10391 0 10391 13051 0 10456 3065 0\n\t\t 3065 10391 0 3065 3060 0 3060 10391 0 3065 12504 0 12504 3060 0 12504 3010 0 3010 3060 0\n\t\t 13050 13014 0 13014 10436 0 13014 10437 0 10437 10436 0 13014 13015 0 13015 10437 0\n\t\t 13015 11041 0 11041 10437 0 13015 3023 0 3023 11041 0 3023 11042 0 11042 11041 0\n\t\t 10963 10964 0 10964 3063 0 3063 10963 0 3063 3058 0 3058 10963 0 10457 3063 0 10964 10457 0\n\t\t 10964 12982 0 12982 10457 0 10972 10963 0 3058 10972 0 3058 10438 0 10438 10972 0\n\t\t 12983 13074 0 13074 10455 0 10455 12983 0 10455 3067 0 3067 12983 0 769 10455 0 13074 769 0\n\t\t 13074 3070 0 3070 769 0 3071 10973 0 10973 3061 0 3061 3071 0 3061 3068 0 3068 3071 0\n\t\t 12997 3071 0 3068 12997 0 3068 3069 0 3069 12997 0 13064 3066 0 3066 3064 0 3064 13064 0\n\t\t 3064 11021 0 11021 13064 0 3064 3072 0 3072 11021 0 3064 3073 0 3073 3072 0 3072 3074 0\n\t\t 3074 11021 0 11021 768 0 768 13064 0 3075 3077 0 3077 3076 0 3076 3075 0 3076 3078 0\n\t\t 3078 3075 0 3079 3075 0 3078 3079 0 3078 3080 0 3080 3079 0 3081 3079 0 3080 3081 0\n\t\t 3080 3273 0 3273 3081 0 3082 3081 0 3273 3082 0 3273 3083 0 3083 3082 0 3083 3275 0\n\t\t 3275 3082 0 3275 3084 0 3084 3082 0 3084 3085 0 3085 3082 0 3086 3085 0 3084 3086 0\n\t\t 3086 3087 0 3087 3085 0 12077 3087 0 3086 12077 0 12077 3231 0 3231 3087 0 3231 3089 0\n\t\t 3089 3087 0 3090 3089 0 3231 3090 0 3231 11945 0 11945 3090 0 3086 3234 0 3234 12077 0\n\t\t 3086 3091 0 3091 3234 0 3084 3091 0 3275 3091 0 3091 11627 0 11627 3234 0 3091 3286 0\n\t\t 3286 11627 0 3275 3286 0 3286 11628 0 11628 11627 0 3090 3094 0 3094 3089 0 3090 3095 0\n\t\t 3095 3094 0 3095 3096 0 3096 3094 0 3095 3097 0 3097 3096 0 3097 3098 0 3098 3096 0\n\t\t 3099 3096 0 3098 3099 0 3099 3094 0 3098 3100 0 3100 3099 0 3101 3099 0 3100 3101 0\n\t\t 3101 3094 0 3100 3102 0 3102 3101 0 3103 3101 0 3102 3103 0 3103 3094 0 3102 3104 0\n\t\t 3104 3103 0 3105 3103 0 3104 3105 0 3104 3106 0 3106 3105 0 3107 3106 0 3104 3107 0\n\t\t 3104 3108 0 3108 3107 0 3102 3108 0 3109 3107 0 3108 3109 0 3108 3110 0;\n\tsetAttr \".ed[10458:10623]\" 3110 3109 0 3110 3111 0 3111 3109 0 3111 3112 0 3112 3109 0\n\t\t 3102 3113 0 3113 3108 0 3100 3113 0 3100 3114 0 3114 3113 0 3114 3115 0 3115 3113 0\n\t\t 3115 3116 0 3116 3113 0 3116 3108 0 3116 3110 0 3115 3117 0 3117 3116 0 3117 3118 0\n\t\t 3118 3116 0 3118 3111 0 3110 3118 0 3119 3118 0 3117 3119 0 3119 3111 0 3117 3120 0\n\t\t 3120 3119 0 3121 3119 0 3120 3121 0 3120 3122 0 3122 3121 0 3122 3123 0 3123 3121 0\n\t\t 3123 3124 0 3124 3121 0 3124 3125 0 3125 3121 0 3125 3126 0 3126 3121 0 3126 3119 0\n\t\t 3126 3127 0 3127 3119 0 3127 3111 0 3127 3128 0 3128 3111 0 3128 3112 0 3129 3128 0\n\t\t 3127 3129 0 3126 3129 0 3125 3130 0 3130 3126 0 3130 3129 0 3128 3131 0 3131 3112 0\n\t\t 3131 3077 0 3077 3112 0 3132 3131 0 3128 3132 0 3129 3132 0 3130 3133 0 3133 3129 0\n\t\t 3133 3132 0 3134 3132 0 3133 3134 0 3134 3131 0 3133 3327 0 3327 3134 0 3133 3135 0\n\t\t 3135 3327 0 3130 3135 0 3135 3136 0 3136 3327 0 3238 3136 0 3135 3238 0 3135 12040 0\n\t\t 12040 3238 0 3075 3112 0 3075 3109 0 3079 3109 0 3079 3107 0 3079 3106 0 3081 3106 0\n\t\t 3082 3106 0 3082 3105 0 3085 3105 0 3085 3103 0 3085 3138 0 3138 3103 0 3138 3094 0\n\t\t 3138 3089 0 3138 3087 0 3139 3241 0 3241 12040 0 12040 3139 0 3139 3140 0 3140 3241 0\n\t\t 3140 3243 0 3243 3241 0 3140 3141 0 3141 3243 0 3141 11071 0 11071 3243 0 11072 11071 0\n\t\t 3141 11072 0 3141 3144 0 3144 11072 0 3139 3130 0 3130 3140 0 3125 3140 0 3124 3140 0\n\t\t 3124 3141 0 3123 3144 0 3141 3123 0 3122 3144 0 3122 3145 0 3145 3144 0 3120 3145 0\n\t\t 3120 3146 0 3146 3145 0 3117 3146 0 3117 3147 0 3147 3146 0 3115 3147 0 3115 3148 0\n\t\t 3148 3147 0 3149 3148 0 3115 3149 0 3114 3149 0 3100 3149 0 3098 3149 0 3097 3149 0\n\t\t 3249 12446 0 12446 3150 0 3150 3249 0 3150 3152 0 3152 3249 0 12438 3249 0 3152 12438 0\n\t\t 3152 3154 0 3154 12438 0 3152 3347 0 3347 3154 0 3150 3347 0 3347 3155 0 3155 3154 0\n\t\t 3150 3348 0 3348 3347 0 3150 3156 0 3156 3348 0 12446 3156 0 3156 3157 0 3157 3348 0\n\t\t 3351 3157 0 3156 3351 0 3156 3158 0 3158 3351 0 3155 3352 0 3352 3154 0 3352 3159 0\n\t\t 3159 3154 0 3159 12438 0 3160 3159 0 3352 3160 0 3352 3161 0 3161 3160 0 9522 3160 0;\n\tsetAttr \".ed[10624:10789]\" 3161 9522 0 3161 9523 0 9523 9522 0 3255 3159 0 3160 3255 0\n\t\t 3255 12438 0 3160 9074 0 9074 3255 0 9076 9074 0 3160 9076 0 9522 9076 0 12162 3158 0\n\t\t 3156 12162 0 3156 3252 0 3252 12162 0 12446 3252 0 9480 3167 0 3167 3166 0 3166 9480 0\n\t\t 3166 3168 0 3168 9480 0 3169 3168 0 3166 3169 0 3166 3170 0 3170 3169 0 3170 3171 0\n\t\t 3171 3169 0 3171 3172 0 3172 3169 0 3169 3173 0 3173 3168 0 3173 3174 0 3174 3168 0\n\t\t 3173 3175 0 3175 3174 0 3175 3176 0 3176 3174 0 3176 3177 0 3177 3174 0 3177 9481 0\n\t\t 9481 3174 0 9481 9480 0 3168 9481 0 3172 3179 0 3179 3169 0 3179 3173 0 3179 3175 0\n\t\t 3176 3180 0 3180 3177 0 3175 3180 0 3175 3181 0 3181 3180 0 3182 3181 0 3175 3182 0\n\t\t 3175 3183 0 3183 3182 0 3179 3183 0 3184 3172 0 3171 3184 0 3171 3185 0 3185 3184 0\n\t\t 3224 3184 0 3185 3224 0 3185 12762 0 12762 3224 0 3187 3179 0 3172 3187 0 3184 3187 0\n\t\t 3224 9976 0 9976 3184 0 9976 3187 0 9976 9977 0 9977 3187 0 9977 3190 0 3190 3187 0\n\t\t 3190 3183 0 3179 3190 0 3191 3182 0 3183 3191 0 3190 3191 0 9977 3191 0 3185 12294 0\n\t\t 12294 12762 0 3171 12294 0 3171 12250 0 12250 12294 0 12294 12278 0 12278 12762 0\n\t\t 12251 12250 0 3171 12251 0 3170 12251 0 9811 12251 0 3170 9811 0 3166 9811 0 3167 9811 0\n\t\t 3167 9812 0 9812 9811 0 3167 3194 0 3194 9812 0 3167 3195 0 3195 3194 0 3196 3194 0\n\t\t 3195 3196 0 9480 3195 0 9480 3197 0 3197 3195 0 9480 10179 0 10179 3197 0 3178 3198 0\n\t\t 3198 3165 0 3165 3178 0 3194 12371 0 12371 9812 0 3196 12371 0 3196 3267 0 3267 12371 0\n\t\t 3200 3202 0 3202 3201 0 3201 3200 0 3200 3203 0 3203 3202 0 3203 9016 0 9016 3202 0\n\t\t 3203 9022 0 9022 9016 0 9022 9017 0 9017 9016 0 3204 3206 0 3206 3207 0 3207 3204 0\n\t\t 9022 9008 0 9008 9017 0 9008 3209 0 3209 9017 0 3402 3209 0 9008 3402 0 9008 9009 0\n\t\t 9009 3402 0 3210 3208 0 3208 12029 0 12029 3210 0 12029 3217 0 3217 3210 0 3205 9226 0\n\t\t 9226 9279 0 9279 3205 0 9279 3215 0 3215 3205 0 3208 3205 0 3215 3208 0 3215 12029 0\n\t\t 9226 9198 0 9198 9427 0 9427 9226 0 9427 9279 0 9428 9427 0 9198 9428 0 9198 9199 0\n\t\t 9199 9428 0 11940 3228 0 3228 3212 0 3212 11940 0 3212 3213 0 3213 11940 0 3228 8713 0\n\t\t 8713 3212 0;\n\tsetAttr \".ed[10790:10955]\" 8713 3214 0 3214 3212 0 8713 8714 0 8714 3214 0 8714 9280 0\n\t\t 9280 3214 0 8714 12027 0 12027 9280 0 12027 3211 0 3211 9280 0 12027 12028 0 12028 3211 0\n\t\t 12028 12030 0 12030 3211 0 8837 12177 0 12177 3242 0 3242 8837 0 3242 8840 0 8840 8837 0\n\t\t 3242 12290 0 12290 8840 0 12290 3222 0 3222 8840 0 12290 3244 0 3244 3222 0 3244 12022 0\n\t\t 12022 3222 0 8837 12247 0 12247 12177 0 12247 3226 0 3226 12177 0 3226 11932 0 11932 12177 0\n\t\t 11907 11932 0 3226 11907 0 11915 3236 0 3236 3226 0 3226 11915 0 11909 11905 0 11905 11916 0\n\t\t 11916 11909 0 11916 10874 0 10874 11909 0 3426 11915 0 3226 3426 0 3189 3188 0 3188 12021 0\n\t\t 12021 3189 0 12021 3223 0 3223 3189 0 3188 12886 0 12886 12021 0 12886 3220 0 3220 12021 0\n\t\t 12886 12276 0 12276 3220 0 12886 3186 0 3186 12276 0 12276 8839 0 8839 3220 0 3258 3162 0\n\t\t 3162 3226 0 3226 3258 0 12247 3258 0 3162 3426 0 3162 3163 0 3163 3426 0 11939 3230 0\n\t\t 3230 3229 0 3229 11939 0 3229 11946 0 11946 11939 0 11946 3088 0 3088 11939 0 3088 3232 0\n\t\t 3232 11939 0 3233 3232 0 3088 3233 0 3088 12078 0 12078 3233 0 3216 3233 0 12078 3216 0\n\t\t 12078 3092 0 3092 3216 0 3092 3093 0 3093 3216 0 3093 3235 0 3235 3216 0 3137 3237 0\n\t\t 3237 11906 0 11906 3137 0 12039 3137 0 11906 12039 0 11913 12039 0 11906 11913 0\n\t\t 10875 3239 0 3239 11908 0 11908 10875 0 11908 3240 0 3240 10875 0 3219 3237 0 3137 3219 0\n\t\t 3137 8883 0 8883 3219 0 12176 3219 0 8883 12176 0 8883 8884 0 8884 12176 0 3221 12176 0\n\t\t 8884 3221 0 8884 3142 0 3142 3221 0 12311 3221 0 3142 12311 0 3142 3143 0 3143 12311 0\n\t\t 9351 9803 0 9803 9804 0 9804 9351 0 9804 3250 0 3250 9351 0 9804 9809 0 9809 3250 0\n\t\t 9809 8797 0 8797 3250 0 9809 9844 0 9844 8797 0 9844 3259 0 3259 8797 0 9294 9803 0\n\t\t 9351 9294 0 9351 12412 0 12412 9294 0 12412 3254 0 3254 9294 0 3254 9295 0 9295 9294 0\n\t\t 3254 3257 0 3257 9295 0 3257 9296 0 9296 9295 0 3257 12248 0 12248 9296 0 12249 8838 0\n\t\t 8838 9297 0 9297 12249 0 12490 3251 0 3251 9341 0 9341 12490 0 9341 3151 0 3151 12490 0\n\t\t 12161 3151 0 9341 12161 0 9341 3253 0 3253 12161 0 3246 3251 0 12490 3246 0 12490 3153 0\n\t\t 3153 3246 0 9119 3246 0 3153 9119 0 3153 9108 0 9108 9119 0 9108 3256 0 3256 9119 0\n\t\t 3256 9120 0;\n\tsetAttr \".ed[10956:11121]\" 9120 9119 0 3256 9075 0 9075 9120 0 9075 3227 0 3227 9120 0\n\t\t 3253 8798 0 8798 12161 0 8798 3164 0 3164 12161 0 3260 3247 0 3247 9298 0 9298 3260 0\n\t\t 9298 3192 0 3192 3260 0 12277 3192 0 9298 12277 0 3248 3218 0 3218 3225 0 3225 3248 0\n\t\t 3260 3193 0 3193 3247 0 3193 3245 0 3245 3247 0 3261 3245 0 3193 3261 0 3193 3262 0\n\t\t 3262 3261 0 3263 3261 0 3262 3263 0 3262 3264 0 3264 3263 0 3264 3199 0 3199 3263 0\n\t\t 3199 3265 0 3265 3263 0 3266 3265 0 3199 3266 0 3199 12372 0 12372 3266 0 3131 3076 0\n\t\t 3131 3268 0 3268 3076 0 3134 3268 0 3135 3139 0 3076 3270 0 3270 3269 0 3269 3076 0\n\t\t 3269 3078 0 3269 3271 0 3271 3078 0 3271 3080 0 3271 3272 0 3272 3080 0 3272 3273 0\n\t\t 3272 3274 0 3274 3273 0 3274 3083 0 3274 3275 0 3274 3276 0 3276 3275 0 3277 3276 0\n\t\t 3274 3277 0 3277 3278 0 3278 3276 0 3279 3278 0 3277 3279 0 3279 12867 0 12867 3278 0\n\t\t 12748 12867 0 3279 12748 0 3279 3281 0 3281 12748 0 12749 12748 0 3281 12749 0 3281 3283 0\n\t\t 3283 12749 0 12867 12733 0 12733 3278 0 3284 3278 0 12733 3284 0 3284 3276 0 3284 3275 0\n\t\t 12733 12033 0 12033 3284 0 3286 3284 0 12033 3286 0 12033 11628 0 3281 3287 0 3287 3283 0\n\t\t 3288 3283 0 3287 3288 0 3289 3288 0 3287 3289 0 3290 3288 0 3289 3290 0 3289 3291 0\n\t\t 3291 3290 0 3289 3292 0 3292 3291 0 3287 3292 0 3292 3293 0 3293 3291 0 3292 3294 0\n\t\t 3294 3293 0 3287 3294 0 3294 3295 0 3295 3293 0 3294 3296 0 3296 3295 0 3287 3296 0\n\t\t 3296 3297 0 3297 3295 0 3296 3298 0 3298 3297 0 3298 3299 0 3299 3297 0 3299 3300 0\n\t\t 3300 3297 0 3300 3301 0 3301 3297 0 3301 3295 0 3300 3302 0 3302 3301 0 3302 3303 0\n\t\t 3303 3301 0 3304 3303 0 3302 3304 0 3302 3305 0 3305 3304 0 3301 3306 0 3306 3295 0\n\t\t 3306 3293 0 3306 3307 0 3307 3293 0 3308 3307 0 3306 3308 0 3306 3309 0 3309 3308 0\n\t\t 3301 3309 0 3303 3309 0 3310 3308 0 3309 3310 0 3309 3311 0 3311 3310 0 3304 3311 0\n\t\t 3311 3303 0 3311 3312 0 3312 3310 0 3304 3312 0 3312 3313 0 3313 3310 0 3312 3314 0\n\t\t 3314 3313 0 3314 3315 0 3315 3313 0 3316 3315 0 3314 3316 0 3314 3317 0 3317 3316 0\n\t\t 3318 3317 0 3314 3318 0 3314 3319 0 3319 3318 0 3312 3319 0 3312 3320 0 3320 3319 0;\n\tsetAttr \".ed[11122:11287]\" 3304 3320 0 3321 3320 0 3304 3321 0 3305 3321 0 3321 3322 0\n\t\t 3322 3320 0 3322 3319 0 3322 3323 0 3323 3319 0 3323 3318 0 3324 3321 0 3305 3324 0\n\t\t 3305 3270 0 3270 3324 0 3324 3325 0 3325 3321 0 3325 3322 0 3325 3326 0 3326 3322 0\n\t\t 3326 3323 0 3325 3134 0 3134 3326 0 3324 3134 0 3327 3326 0 3328 3326 0 3327 3328 0\n\t\t 3328 3323 0 3136 3328 0 3238 3328 0 3238 11459 0 11459 3328 0 3305 3269 0 3302 3269 0\n\t\t 3302 3271 0 3300 3271 0 3299 3271 0 3299 3272 0 3299 3274 0 3298 3274 0 3298 3277 0\n\t\t 3296 3277 0 3296 3330 0 3330 3277 0 3287 3330 0 3281 3330 0 3279 3330 0 3331 3328 0\n\t\t 11459 3331 0 3331 3323 0 3331 3332 0 3332 3323 0 3331 11372 0 11372 3332 0 11372 11340 0\n\t\t 11340 3332 0 3335 3332 0 11340 3335 0 11340 11341 0 11341 3335 0 3337 3335 0 11341 3337 0\n\t\t 11341 3432 0 3432 3337 0 3332 3318 0 3335 3317 0 3317 3332 0 3335 3316 0 3337 3316 0\n\t\t 3337 3338 0 3338 3316 0 3338 3315 0 3338 3313 0 3338 3339 0 3339 3313 0 3339 3310 0\n\t\t 3339 3340 0 3340 3310 0 3340 3308 0 3340 3341 0 3341 3308 0 3341 3342 0 3342 3308 0\n\t\t 3342 3307 0 3342 3293 0 3342 3291 0 3342 3290 0 3343 13325 0 13325 13323 0 13323 3343 0\n\t\t 13323 3345 0 3345 3343 0 13323 11715 0 11715 3345 0 11715 3346 0 3346 3345 0 3347 3345 0\n\t\t 3346 3347 0 3347 3343 0 3346 3155 0 3348 3343 0 3349 3343 0 3348 3349 0 3349 13325 0\n\t\t 3157 3349 0 3350 3349 0 3157 3350 0 3351 3350 0 3346 3352 0 3346 3353 0 3353 3352 0\n\t\t 11715 3353 0 3353 3354 0 3354 3352 0 3354 3161 0 3354 3425 0 3425 3161 0 3425 9523 0\n\t\t 3353 11716 0 11716 3354 0 11715 11716 0 11716 13311 0 13311 3354 0 10865 3425 0 3354 10865 0\n\t\t 13311 10865 0 3350 3446 0 3446 3349 0 3446 13297 0 13297 3349 0 13297 13325 0 3357 3359 0\n\t\t 3359 11280 0 11280 3357 0 11280 3360 0 3360 3357 0 3360 3361 0 3361 3357 0 3361 3362 0\n\t\t 3362 3357 0 3363 3362 0 3361 3363 0 3361 3364 0 3364 3363 0 3365 3361 0 3360 3365 0\n\t\t 3360 3366 0 3366 3365 0 3367 3365 0 3366 3367 0 3366 3368 0 3368 3367 0 3369 3368 0\n\t\t 3366 3369 0 3366 11455 0 11455 3369 0 3360 11455 0 11280 11455 0 3371 3364 0 3361 3371 0\n\t\t 3365 3371 0 3367 3371 0 3369 3372 0 3372 3368 0 3372 3367 0 3372 3373 0 3373 3367 0;\n\tsetAttr \".ed[11288:11453]\" 3373 3374 0 3374 3367 0 3374 3375 0 3375 3367 0 3375 3371 0\n\t\t 3364 3376 0 3376 3363 0 3376 3377 0 3377 3363 0 3376 11011 0 11011 3377 0 11011 13100 0\n\t\t 13100 3377 0 3371 3379 0 3379 3364 0 3379 3376 0 3379 11012 0 11012 3376 0 11012 11011 0\n\t\t 11057 11012 0 3379 11057 0 3379 3382 0 3382 11057 0 3371 3382 0 3375 3382 0 3374 3383 0\n\t\t 3383 3375 0 3383 3382 0 3383 11057 0 11247 3377 0 13100 11247 0 11247 3363 0 11247 11273 0\n\t\t 11273 3363 0 13100 11248 0 11248 11247 0 11273 10869 0 10869 3363 0 10869 3362 0\n\t\t 10869 10870 0 10870 3362 0 10870 3357 0 10870 3359 0 10870 3455 0 3455 3359 0 3386 3359 0\n\t\t 3455 3386 0 3386 3387 0 3387 3359 0 3386 3388 0 3388 3387 0 3387 11280 0 3387 3389 0\n\t\t 3389 11280 0 3389 11281 0 11281 11280 0 3358 3390 0 3390 3370 0 3370 3358 0 3455 3456 0\n\t\t 3456 3386 0 3456 3388 0 3456 13117 0 13117 3388 0 10604 10605 0 10605 3393 0 3393 10604 0\n\t\t 3393 3395 0 3395 10604 0 3395 3396 0 3396 10604 0 3395 3397 0 3397 3396 0 3395 3398 0\n\t\t 3398 3397 0 3398 3399 0 3399 3397 0 10603 3397 0 3399 10603 0 3399 3401 0 3401 10603 0\n\t\t 3401 3402 0 3402 10603 0 9009 10603 0 12038 3400 0 3400 3210 0 3210 12038 0 3217 12038 0\n\t\t 12979 10575 0 10575 10576 0 10576 12979 0 10576 3411 0 3411 12979 0 10576 3400 0\n\t\t 3400 3411 0 12038 3411 0 3406 3392 0 3392 10575 0 10575 3406 0 12979 3406 0 3407 3394 0\n\t\t 3394 3392 0 3392 3407 0 3406 3407 0 10316 10346 0 10346 10345 0 10345 10316 0 10345 10229 0\n\t\t 10229 10316 0 10227 10229 0 10345 10227 0 10345 3404 0 3404 10227 0 10228 10227 0\n\t\t 3404 10228 0 3404 12971 0 12971 10228 0 10231 10228 0 12971 10231 0 12971 3403 0\n\t\t 3403 10231 0 12028 10231 0 3403 12028 0 3403 12030 0 10472 10471 0 10471 10311 0\n\t\t 10311 10472 0 10311 13009 0 13009 10472 0 10312 10311 0 10471 10312 0 10471 10494 0\n\t\t 10494 10312 0 3433 10312 0 10494 3433 0 10494 13090 0 13090 3433 0 13009 12999 0\n\t\t 12999 10472 0 3424 12999 0 13009 3424 0 13009 10543 0 10543 3424 0 10543 10544 0\n\t\t 10544 3424 0 11915 3424 0 3424 3418 0 3418 11915 0 11914 10545 0 10545 10876 0 10876 11914 0\n\t\t 10876 10873 0 10873 11914 0 3426 3424 0 3415 3419 0 3419 3380 0 3380 3415 0 3380 3381 0\n\t\t 3381 3415 0 3378 3380 0 3419 3378 0 3419 3420 0 3420 3378 0 3420 11250 0 11250 3378 0\n\t\t 3420 10473 0;\n\tsetAttr \".ed[11454:11619]\" 10473 11250 0 11250 3422 0 3422 3378 0 10864 12999 0\n\t\t 3424 10864 0 3424 10866 0 10866 10864 0 3426 10866 0 3163 10866 0 3408 3427 0 3427 3282 0\n\t\t 3282 3408 0 3282 3405 0 3405 3408 0 3280 3427 0 3408 3280 0 3408 3409 0 3409 3280 0\n\t\t 3409 3410 0 3410 3280 0 3410 3428 0 3428 3280 0 3410 3412 0 3412 3428 0 3412 3285 0\n\t\t 3285 3428 0 3093 3285 0 3412 3093 0 3412 3235 0 10546 3417 0 3417 3329 0 3329 10546 0\n\t\t 3329 12039 0 12039 10546 0 11913 10546 0 10547 11917 0 11917 3429 0 3429 10547 0\n\t\t 3429 3430 0 3430 10547 0 3417 3431 0 3431 3329 0 3431 3333 0 3333 3329 0 3431 3413 0\n\t\t 3413 3333 0 3413 3334 0 3334 3333 0 3413 3414 0 3414 3334 0 3414 3336 0 3336 3334 0\n\t\t 13169 3336 0 3414 13169 0 3414 13088 0 13088 13169 0 11498 11465 0 11465 13291 0\n\t\t 13291 11498 0 13291 11489 0 11489 11498 0 11594 11498 0 11489 11594 0 11489 11490 0\n\t\t 11490 11594 0 11595 11594 0 11490 11595 0 11490 11596 0 11596 11595 0 11465 11369 0\n\t\t 11369 13291 0 11369 11639 0 11639 13291 0 11637 11639 0 11369 11637 0 11369 3449 0\n\t\t 3449 11637 0 11638 11637 0 3449 11638 0 3449 11263 0 11263 11638 0 13000 11638 0\n\t\t 11263 13000 0 11264 10474 0 10474 13001 0 13001 11264 0 3434 3442 0 3442 3344 0 3344 3434 0\n\t\t 3344 3443 0 3443 3434 0 3443 3356 0 3356 3434 0 3356 3436 0 3436 3434 0 3442 3439 0\n\t\t 3439 3344 0 3439 3444 0 3444 3344 0 3439 3440 0 3440 3444 0 3440 3445 0 3445 3444 0\n\t\t 3355 3445 0 3440 3355 0 3440 3441 0 3441 3355 0 3423 3355 0 3441 3423 0 3441 3416 0\n\t\t 3416 3423 0 3438 3436 0 3356 3438 0 3356 13296 0 13296 3438 0 11262 11316 0 11316 3448 0\n\t\t 3448 11262 0 3448 3450 0 3450 11262 0 3450 11249 0 11249 11262 0 3451 3421 0 3421 3447 0\n\t\t 3447 3451 0 3384 3448 0 11316 3384 0 11316 3452 0 3452 3384 0 3452 3453 0 3453 3384 0\n\t\t 3453 3385 0 3385 3384 0 3453 3454 0 3454 3385 0 3454 11537 0 11537 3385 0 11538 11537 0\n\t\t 3454 11538 0 3454 3435 0 3435 11538 0 3435 3437 0 3437 11538 0 3437 3391 0 3391 11538 0\n\t\t 3076 3324 0 3268 3324 0 11459 11372 0 9642 9643 0 9643 9245 0 9245 9642 0 9245 12204 0\n\t\t 12204 9642 0 12204 12142 0 12142 9642 0 12142 3457 0 3457 9642 0 3458 12204 0 9245 3458 0\n\t\t 9245 3486 0 3486 3458 0 9904 3458 0 3486 9904 0 3486 12808 0 12808 9904 0 12808 9911 0;\n\tsetAttr \".ed[11620:11785]\" 9911 9904 0 9911 9905 0 9905 9904 0 9643 12042 0 12042 9245 0\n\t\t 12042 3500 0 3500 9245 0 12042 9073 0 9073 3500 0 9073 3497 0 3497 3500 0 9456 9304 0\n\t\t 9304 9303 0 9303 9456 0 9303 9457 0 9457 9456 0 9303 9881 0 9881 9457 0 9881 9892 0\n\t\t 9892 9457 0 9892 12114 0 12114 9457 0 12114 12076 0 12076 9457 0 9667 9304 0 9456 9667 0\n\t\t 9456 9503 0 9503 9667 0 3467 9667 0 9503 3467 0 9503 3513 0 3513 3467 0 3513 12113 0\n\t\t 12113 3467 0 12113 12728 0 12728 3467 0 12113 3516 0 3516 12728 0 3516 3471 0 3471 12728 0\n\t\t 3516 12044 0 12044 3471 0 12044 9721 0 9721 3471 0 9666 3468 0 3468 12217 0 12217 9666 0\n\t\t 12217 3469 0 3469 9666 0 3470 3468 0 9666 3470 0 9666 3466 0 3466 3470 0 3466 9720 0\n\t\t 9720 3470 0 9720 3460 0 3460 3470 0 12217 12139 0 12139 3469 0 12139 3505 0 3505 3469 0\n\t\t 3548 3460 0 9720 3548 0 9720 3472 0 3472 3548 0 3538 12173 0 12173 12223 0 12223 3538 0\n\t\t 12223 3474 0 3474 3538 0 12133 12223 0 12173 12133 0 12173 12135 0 12135 12133 0\n\t\t 9906 9910 0 9910 9909 0 9909 9906 0 9909 3481 0 3481 9906 0 12965 3480 0 3480 9917 0\n\t\t 9917 12965 0 9917 3478 0 3478 12965 0 3478 3496 0 3496 12965 0 3496 3479 0 3479 12965 0\n\t\t 9903 3482 0 3482 9925 0 9925 9903 0 9925 3483 0 3483 9903 0 3477 12809 0 12809 3484 0\n\t\t 3484 3477 0 3484 3476 0 3476 3477 0 3485 12815 0 12815 3459 0 3459 3485 0 3459 12875 0\n\t\t 12875 3485 0 12875 9246 0 9246 3485 0 9246 3501 0 3501 3485 0 9880 3489 0 3489 3488 0\n\t\t 3488 9880 0 3488 3490 0 3490 9880 0 3491 3489 0 9880 3491 0 9882 3507 0 3507 9883 0\n\t\t 9883 9882 0 3492 9883 0 3507 3492 0 3507 8917 0 8917 3492 0 8917 8918 0 8918 3492 0\n\t\t 8918 3495 0 3495 3492 0 12141 3479 0 3496 12141 0 3496 3475 0 3475 12141 0 9239 3499 0\n\t\t 3499 3498 0 3498 9239 0 3498 9240 0 9240 9239 0 3498 9348 0 9348 9240 0 9348 3502 0\n\t\t 3502 9240 0 3508 12322 0 12322 3487 0 3487 3508 0 3487 3503 0 3503 3508 0 12139 3508 0\n\t\t 3503 12139 0 3503 3505 0 3506 3493 0 3493 12322 0 12322 3506 0 3508 3506 0 3494 3493 0\n\t\t 3506 3494 0 3506 3509 0 3509 3494 0 3510 3506 0 3508 3510 0 3510 3509 0 3508 3504 0\n\t\t 3504 3510 0 3510 3511 0 3511 3509 0 3465 12708 0 12708 11995 0 11995 3465 0 11995 11996 0\n\t\t 11996 3465 0;\n\tsetAttr \".ed[11786:11951]\" 12001 11995 0 12708 12001 0 12708 3464 0 3464 12001 0\n\t\t 12052 3465 0 11996 12052 0 11996 3521 0 3521 12052 0 11944 12001 0 3464 11944 0 3464 3461 0\n\t\t 3461 11944 0 3461 9458 0 9458 11944 0 3555 12052 0 3521 3555 0 3521 3517 0 3517 3555 0\n\t\t 3514 3512 0 3512 11918 0 11918 3514 0 11918 11919 0 11919 3514 0 11921 11918 0 3512 11921 0\n\t\t 3512 3515 0 3515 11921 0 12051 3514 0 11919 12051 0 11919 3529 0 3529 12051 0 11941 11921 0\n\t\t 3515 11941 0 3515 11943 0 11943 11941 0 12046 12051 0 3529 12046 0 3529 12048 0 12048 12046 0\n\t\t 3532 11942 0 11942 3523 0 3523 3532 0 3523 3462 0 3462 3532 0 3518 3526 0 3526 3525 0\n\t\t 3525 3518 0 3525 3519 0 3519 3518 0 3518 3520 0 3520 3526 0 3520 3527 0 3527 3526 0\n\t\t 3525 3528 0 3528 3519 0 3528 12050 0 12050 3519 0 3530 3527 0 3520 3530 0 3520 3522 0\n\t\t 3522 3530 0 3531 3530 0 3522 3531 0 3522 12075 0 12075 3531 0 3524 12050 0 3528 3524 0\n\t\t 3528 3533 0 3533 3524 0 3534 3531 0 12075 3534 0 12075 3463 0 3463 3534 0 3475 3540 0\n\t\t 3540 12140 0 12140 3475 0 12140 12141 0 3535 12139 0 12217 3535 0 3536 3537 0 3537 3473 0\n\t\t 3473 3536 0 3473 12179 0 12179 3536 0 3537 3539 0 3539 3473 0 3539 12134 0 12134 3473 0\n\t\t 3557 12237 0 12237 9634 0 9634 3557 0 9634 9183 0 9183 3557 0 11647 12237 0 3557 11647 0\n\t\t 3557 11656 0 11656 11647 0 12237 3566 0 3566 9634 0 3566 9258 0 9258 9634 0 3566 12441 0\n\t\t 12441 9258 0 12441 9259 0 9259 9258 0 10038 9259 0 12441 10038 0 12441 10036 0 10036 10038 0\n\t\t 9072 9183 0 9634 9072 0 9634 12025 0 12025 9072 0 9073 9072 0 12025 9073 0 12025 3497 0\n\t\t 12359 11557 0 11557 3584 0 3584 12359 0 3584 12336 0 12336 12359 0 9485 3584 0 11557 9485 0\n\t\t 11557 3575 0 3575 9485 0 12343 3575 0 11557 12343 0 11557 11555 0 11555 12343 0 12336 9726 0\n\t\t 9726 12359 0 9726 3594 0 3594 12359 0 9726 9725 0 9725 3594 0 9725 9186 0 9186 3594 0\n\t\t 9187 9186 0 9725 9187 0 9725 9740 0 9740 9187 0 3595 9187 0 9740 3595 0 9740 12026 0\n\t\t 12026 3595 0 12044 3595 0 12026 12044 0 12026 9721 0 3615 12194 0 12194 3556 0 3556 3615 0\n\t\t 3556 3558 0 3558 3615 0 12194 3542 0 3542 3556 0 3542 3559 0 3559 3556 0 3554 3559 0\n\t\t 3542 3554 0 3542 3546 0 3546 3554 0 11648 3615 0 3558 11648 0 3558 3550 0 3550 11648 0\n\t\t 3546 3548 0;\n\tsetAttr \".ed[11952:12117]\" 3548 3554 0 3472 3554 0 3618 3560 0 3560 3568 0 3568 3618 0\n\t\t 3568 12739 0 12739 3618 0 3568 12638 0 12638 12739 0 12638 12741 0 12741 12739 0\n\t\t 3571 10039 0 10039 10037 0 10037 3571 0 10037 12899 0 12899 3571 0 12930 12442 0\n\t\t 12442 12238 0 12238 12930 0 12238 3567 0 3567 12930 0 12238 3541 0 3541 3567 0 3541 12637 0\n\t\t 12637 3567 0 3569 3563 0 3563 3544 0 3544 3569 0 3544 3565 0 3565 3569 0 12678 3545 0\n\t\t 3545 3564 0 3564 12678 0 3564 12676 0 12676 12678 0 9260 3570 0 3570 3572 0 3572 9260 0\n\t\t 3572 3543 0 3543 9260 0 3572 9632 0 9632 3543 0 9632 9633 0 9633 3543 0 9516 3577 0\n\t\t 3577 3576 0 3576 9516 0 3576 9484 0 9484 9516 0 3576 3579 0 3579 9484 0 9487 10936 0\n\t\t 10936 9486 0 9486 9487 0 9487 3580 0 3580 10936 0 3580 10937 0 10937 10936 0 3580 3581 0\n\t\t 3581 10937 0 3581 3588 0 3588 10937 0 3541 3613 0 3613 12637 0 3613 3562 0 3562 12637 0\n\t\t 9239 3547 0 3547 3499 0 3547 3582 0 3582 3499 0 3547 3574 0 3574 3582 0 3574 3573 0\n\t\t 3573 3582 0 3583 12335 0 12335 3578 0 3578 3583 0 3578 3586 0 3586 3583 0 3583 11648 0\n\t\t 11648 12335 0 3550 12335 0 3585 3583 0 3586 3585 0 3586 3587 0 3587 3585 0 3587 11068 0\n\t\t 11068 3585 0 11068 3589 0 3589 3585 0 3585 3590 0 3590 3583 0 3589 3590 0 3590 3614 0\n\t\t 3614 3583 0 3589 3591 0 3591 3590 0 3553 11004 0 11004 11003 0 11003 3553 0 11003 3552 0\n\t\t 3552 3553 0 11003 13191 0 13191 3552 0 13191 12364 0 12364 3552 0 3553 12043 0 12043 11004 0\n\t\t 12043 3599 0 3599 11004 0 13191 13186 0 13186 12364 0 13186 3549 0 3549 12364 0 13186 11558 0\n\t\t 11558 3549 0 12043 3555 0 3555 3599 0 3517 3599 0 3593 13290 0 13290 3604 0 3604 3593 0\n\t\t 3604 3592 0 3592 3593 0 3604 3606 0 3606 3592 0 3606 3598 0 3598 3592 0 3593 12045 0\n\t\t 12045 13290 0 12045 3607 0 3607 13290 0 3606 11566 0 11566 3598 0 11566 3596 0 3596 3598 0\n\t\t 12045 12046 0 12046 3607 0 12048 3607 0 11556 3601 0 3601 13187 0 13187 11556 0 13187 3610 0\n\t\t 3610 11556 0 3597 3603 0 3603 3602 0 3602 3597 0 3602 11611 0 11611 3597 0 3602 3605 0\n\t\t 3605 11611 0 3605 11565 0 11565 11611 0 3597 12047 0 12047 3603 0 12047 3608 0 3608 3603 0\n\t\t 3605 3609 0 3609 11565 0 3609 11567 0 11567 11565 0 3609 3611 0 3611 11567 0 3611 3600 0\n\t\t 3600 11567 0 12047 3524 0;\n\tsetAttr \".ed[12118:12283]\" 3524 3608 0 3533 3608 0 3612 3551 0 3551 3600 0 3600 3612 0\n\t\t 3611 3612 0 11646 3615 0 11648 11646 0 3613 11649 0 11649 3562 0 11649 12740 0 12740 3562 0\n\t\t 3617 12773 0 12773 3561 0 3561 3617 0 3561 3619 0 3619 3617 0 3561 3616 0 3616 3619 0\n\t\t 3616 3620 0 3620 3619 0 3621 10469 0 10469 10476 0 10476 3621 0 10476 3624 0 3624 3621 0\n\t\t 10470 10469 0 3621 10470 0 3621 3626 0 3626 10470 0 3626 3627 0 3627 10470 0 3627 10651 0\n\t\t 10651 10470 0 10652 10651 0 3627 10652 0 3627 3628 0 3628 10652 0 3628 3629 0 3629 10652 0\n\t\t 3629 10439 0 10439 10652 0 10429 10439 0 3629 10429 0 3629 3632 0 3632 10429 0 3632 3633 0\n\t\t 3633 10429 0 3633 10430 0 10430 10429 0 13063 10430 0 3633 13063 0 3633 3635 0 3635 13063 0\n\t\t 3635 3636 0 3636 13063 0 3636 13177 0 13177 13063 0 3683 13177 0 3636 3683 0 3636 3638 0\n\t\t 3638 3683 0 3638 3639 0 3639 3683 0 3639 9997 0 9997 3683 0 3639 3640 0 3640 3677 0\n\t\t 3677 3639 0 3677 9997 0 3640 3641 0 3641 3677 0 3641 10241 0 10241 3677 0 10242 10241 0\n\t\t 3641 10242 0 3641 3644 0 3644 10242 0 3644 3645 0 3645 10242 0 3645 12879 0 12879 10242 0\n\t\t 3645 3624 0 3624 12879 0 10476 12879 0 3673 10301 0 10301 3646 0 3646 3673 0 3646 3648 0\n\t\t 3648 3673 0 10349 3673 0 3648 10349 0 3648 3650 0 3650 10349 0 10350 10349 0 3650 10350 0\n\t\t 3650 3652 0 3652 10350 0 9985 10350 0 3652 9985 0 3652 3653 0 3653 9985 0 3676 9985 0\n\t\t 3653 3676 0 3653 3654 0 3654 3676 0 12854 3676 0 3654 12854 0 3654 3656 0 3656 12854 0\n\t\t 3684 12854 0 3656 3684 0 3656 3672 0 3672 3684 0 3657 3646 0 10301 3657 0 10301 10302 0\n\t\t 10302 3657 0 3659 3657 0 10302 3659 0 10302 10404 0 10404 3659 0 3661 3659 0 10404 3661 0\n\t\t 10404 10446 0 10446 3661 0 3663 3661 0 10446 3663 0 10446 12925 0 12925 3663 0 3664 3663 0\n\t\t 12925 3664 0 12925 10156 0 10156 3664 0 3666 3664 0 10156 3666 0 10156 10079 0 10079 3666 0\n\t\t 3668 3666 0 10079 3668 0 10079 10065 0 10065 3668 0 3670 3668 0 10065 3670 0 10065 10066 0\n\t\t 10066 3670 0 3672 3670 0 10066 3672 0 10066 3684 0 3625 3647 0 3647 12932 0 12932 3625 0\n\t\t 12932 3623 0 3623 3625 0 3622 3623 0 12932 3622 0 12932 3649 0 3649 3622 0 3649 3651 0\n\t\t 3651 3622 0 3651 3674 0 3674 3622 0 3643 3674 0 3651 3643 0 3651 3675 0 3675 3643 0;\n\tsetAttr \".ed[12284:12449]\" 3675 9986 0 9986 3643 0 9986 3642 0 3642 3643 0 9996 3642 0\n\t\t 9986 9996 0 9986 3655 0 3655 9996 0 3655 12855 0 12855 9996 0 12855 3678 0 3678 9996 0\n\t\t 3625 3679 0 3679 3647 0 3679 3658 0 3658 3647 0 3679 3680 0 3680 3658 0 3680 3660 0\n\t\t 3660 3658 0 3662 3660 0 3680 3662 0 3680 3630 0 3630 3662 0 3630 3631 0 3631 3662 0\n\t\t 3631 3681 0 3681 3662 0 3665 3681 0 3631 3665 0 3631 3634 0 3634 3665 0 3634 3682 0\n\t\t 3682 3665 0 3682 3667 0 3667 3665 0 3669 3667 0 3682 3669 0 3682 3637 0 3637 3669 0\n\t\t 3637 13193 0 13193 3669 0 13193 3671 0 3671 3669 0 12855 3671 0 13193 12855 0 13193 3678 0\n\t\t 3685 10821 0 10821 10820 0 10820 3685 0 10820 3688 0 3688 3685 0 11073 10821 0 3685 11073 0\n\t\t 3685 3690 0 3690 11073 0 3690 3691 0 3691 11073 0 3691 3744 0 3744 11073 0 13221 3744 0\n\t\t 3691 13221 0 3691 3693 0 3693 13221 0 3693 3694 0 3694 13221 0 3694 3743 0 3743 13221 0\n\t\t 3742 3743 0 3694 3742 0 3694 3695 0 3695 3742 0 3695 3696 0 3696 3742 0 3696 10898 0\n\t\t 10898 3742 0 10899 10898 0 3696 10899 0 3696 3699 0 3699 10899 0 3699 3700 0 3700 10899 0\n\t\t 3700 3740 0 3740 10899 0 13277 3740 0 3700 13277 0 3700 3702 0 3702 13277 0 3702 3703 0\n\t\t 3703 13277 0 3703 12526 0 12526 13277 0 9389 12526 0 3703 9389 0 3703 3704 0 3704 9389 0\n\t\t 3704 3705 0 3705 9389 0 3705 9353 0 9353 9389 0 9352 9353 0 3705 9352 0 3705 3706 0\n\t\t 3706 9352 0 3706 3707 0 3707 9352 0 3707 11382 0 11382 9352 0 3707 3688 0 3688 11382 0\n\t\t 10820 11382 0 11271 11272 0 11272 3709 0 3709 11271 0 3709 3711 0 3711 11271 0 11291 11271 0\n\t\t 3711 11291 0 3711 3713 0 3713 11291 0 11289 11291 0 3713 11289 0 3713 3715 0 3715 11289 0\n\t\t 11205 11289 0 3715 11205 0 3715 3717 0 3717 11205 0 11190 11205 0 3717 11190 0 3717 3719 0\n\t\t 3719 11190 0 11178 11190 0 3719 11178 0 3719 3721 0 3721 11178 0 11179 11178 0 3721 11179 0\n\t\t 3721 3739 0 3739 11179 0 3723 3709 0 11272 3723 0 11272 11184 0 11184 3723 0 3725 3723 0\n\t\t 11184 3725 0 11184 11185 0 11185 3725 0 3727 3725 0 11185 3727 0 11185 11208 0 11208 3727 0\n\t\t 3729 3727 0 11208 3729 0 11208 3730 0 3730 3729 0 3731 3729 0 3730 3731 0 3730 3732 0\n\t\t 3732 3731 0 3733 3731 0 3732 3733 0 3732 11301 0 11301 3733 0 3735 3733 0 11301 3735 0;\n\tsetAttr \".ed[12450:12615]\" 11301 3736 0 3736 3735 0 3737 3735 0 3736 3737 0 3736 11283 0\n\t\t 11283 3737 0 3739 3737 0 11283 3739 0 11283 11179 0 3701 3738 0 3738 11282 0 11282 3701 0\n\t\t 3722 3738 0 3701 3722 0 11282 13195 0 13195 3701 0 3698 3734 0 3734 11328 0 11328 3698 0\n\t\t 11282 3734 0 3698 11282 0 3698 13195 0 11328 3697 0 3697 3698 0 3701 3741 0 3741 3722 0\n\t\t 11328 11209 0 11209 11437 0 11437 11328 0 11437 3697 0 11209 3728 0 3728 11437 0\n\t\t 3728 11438 0 11438 11437 0 3692 11438 0 3728 3692 0 3728 3726 0 3726 3692 0 3726 3724 0\n\t\t 3724 3692 0 3724 13220 0 13220 3692 0 3724 3710 0 3710 13220 0 3710 3689 0 3689 13220 0\n\t\t 3710 3708 0 3708 3689 0 3708 3687 0 3687 3689 0 3686 3687 0 3708 3686 0 3708 3712 0\n\t\t 3712 3686 0 3712 3714 0 3714 3686 0 3714 3745 0 3745 3686 0 3746 3745 0 3714 3746 0\n\t\t 3714 3716 0 3716 3746 0 3716 3718 0 3718 3746 0 3718 3747 0 3747 3746 0 3748 3747 0\n\t\t 3718 3748 0 3718 3720 0 3720 3748 0 3720 3722 0 3722 3748 0 3741 3748 0 11890 3750 0\n\t\t 3750 3749 0 3749 11890 0 3749 12567 0 12567 11890 0 3752 3750 0 11890 3752 0 11890 11725 0\n\t\t 11725 3752 0 11725 10452 0 10452 3752 0 10452 3753 0 3753 3752 0 3754 3753 0 10452 3754 0\n\t\t 10452 10372 0 10372 3754 0 10372 10371 0 10371 3754 0 10371 3755 0 3755 3754 0 3756 3755 0\n\t\t 10371 3756 0 10371 3915 0 3915 3756 0 3915 3913 0 3913 3756 0 3913 3757 0 3757 3756 0\n\t\t 3758 3757 0 3913 3758 0 3913 9361 0 9361 3758 0 9361 9362 0 9362 3758 0 9362 3761 0\n\t\t 3761 3758 0 9362 10355 0 10355 3762 0 3762 9362 0 3762 3761 0 10355 10354 0 10354 3762 0\n\t\t 10354 3763 0 3763 3762 0 3764 3763 0 10354 3764 0 10354 9054 0 9054 3764 0 9054 9055 0\n\t\t 9055 3764 0 9055 3767 0 3767 3764 0 3768 3767 0 9055 3768 0 9055 10420 0 10420 3768 0\n\t\t 10420 10419 0 10419 3768 0 10419 3769 0 3769 3768 0 10419 12567 0 12567 3769 0 3749 3769 0\n\t\t 10444 10445 0 10445 3770 0 3770 10444 0 3770 3771 0 3771 10444 0 12848 10444 0 3771 12848 0\n\t\t 3771 3773 0 3773 12848 0 3924 12848 0 3773 3924 0 3773 3774 0 3774 3924 0 12877 3924 0\n\t\t 3774 12877 0 3774 3776 0 3776 12877 0 3927 12877 0 3776 3927 0 3776 3777 0 3777 3927 0\n\t\t 12951 3927 0 3777 12951 0 3777 3779 0 3779 12951 0 3929 12951 0 3779 3929 0 3779 3780 0\n\t\t 3780 3929 0;\n\tsetAttr \".ed[12616:12781]\" 3932 3929 0 3780 3932 0 3780 3781 0 3781 3932 0 12919 3932 0\n\t\t 3781 12919 0 3781 3783 0 3783 12919 0 10533 12919 0 3783 10533 0 3783 3784 0 3784 10533 0\n\t\t 10534 10533 0 3784 10534 0 3784 3785 0 3785 10534 0 3937 10534 0 3785 3937 0 3785 3786 0\n\t\t 3786 3937 0 3938 3937 0 3786 3938 0 3786 3787 0 3787 3938 0 10653 3938 0 3787 10653 0\n\t\t 3787 3788 0 3788 10653 0 12234 10653 0 3788 12234 0 3788 3790 0 3790 12234 0 10445 12234 0\n\t\t 3790 10445 0 3790 3770 0 12239 8979 0 8979 8981 0 8981 12239 0 8981 3920 0 3920 12239 0\n\t\t 8980 8979 0 12239 8980 0 12239 10402 0 10402 8980 0 10402 10403 0 10403 8980 0 10403 9658 0\n\t\t 9658 8980 0 3848 9658 0 10403 3848 0 10403 3926 0 3926 3848 0 3926 13218 0 13218 3848 0\n\t\t 13218 12295 0 12295 3848 0 3850 12295 0 13218 3850 0 13218 3928 0 3928 3850 0 3928 11001 0\n\t\t 11001 3850 0 11001 12116 0 12116 3850 0 12146 12116 0 11001 12146 0 11001 3931 0\n\t\t 3931 12146 0 3931 10956 0 10956 12146 0 10956 3853 0 3853 12146 0 10956 11960 0 11960 10153 0\n\t\t 10153 10956 0 10153 3853 0 11960 11961 0 11961 10153 0 11961 3856 0 3856 10153 0\n\t\t 12629 3856 0 11961 12629 0 11961 3936 0 3936 12629 0 3936 11991 0 11991 12629 0 11991 3858 0\n\t\t 3858 12629 0 12019 3858 0 11991 12019 0 11991 11992 0 11992 12019 0 11992 3940 0\n\t\t 3940 12019 0 3940 9234 0 9234 12019 0 3940 3920 0 3920 9234 0 8981 9234 0 8799 9670 0\n\t\t 9670 9676 0 9676 8799 0 9676 12080 0 12080 8799 0 9671 9670 0 8799 9671 0 8799 8741 0\n\t\t 8741 9671 0 8741 8742 0 8742 9671 0 8742 8906 0 8906 9671 0 8907 8906 0 8742 8907 0\n\t\t 8742 3847 0 3847 8907 0 3847 12257 0 12257 8907 0 12257 8913 0 8913 8907 0 3879 8913 0\n\t\t 12257 3879 0 12257 3849 0 3849 3879 0 3849 3851 0 3851 3879 0 3851 12185 0 12185 3879 0\n\t\t 10824 12185 0 3851 10824 0 3851 12201 0 12201 10824 0 12201 3855 0 3855 10824 0 3855 10825 0\n\t\t 10825 10824 0 3855 11733 0 11733 3873 0 3873 3855 0 3873 10825 0 11733 11734 0 11734 3873 0\n\t\t 11734 12215 0 12215 3873 0 3870 12215 0 11734 3870 0 11734 3857 0 3857 3870 0 3857 12735 0\n\t\t 12735 3870 0 12735 9735 0 9735 3870 0 9734 9735 0 12735 9734 0 12735 3859 0 3859 9734 0\n\t\t 3859 12323 0 12323 9734 0 12323 3865 0 3865 9734 0 12323 12080 0 12080 3865 0 9676 3865 0\n\t\t 9678 3883 0 3883 3881 0 3881 9678 0;\n\tsetAttr \".ed[12782:12947]\" 3881 12149 0 12149 9678 0 3885 3883 0 9678 3885 0 9678 3860 0\n\t\t 3860 3885 0 3860 11634 0 11634 3885 0 11634 13179 0 13179 3885 0 3886 13179 0 11634 3886 0\n\t\t 11634 11620 0 11620 3886 0 11620 11621 0 11621 3886 0 11621 11764 0 11764 3886 0\n\t\t 11579 11764 0 11621 11579 0 11621 11110 0 11110 11579 0 11110 10785 0 10785 11579 0\n\t\t 10785 11580 0 11580 11579 0 3891 11580 0 10785 3891 0 10785 10784 0 10784 3891 0\n\t\t 10784 3827 0 3827 3891 0 3827 3892 0 3892 3891 0 3827 10838 0 10838 3894 0 3894 3827 0\n\t\t 3894 3892 0 10838 10837 0 10837 3894 0 10837 11516 0 11516 3894 0 9152 11516 0 10837 9152 0\n\t\t 10837 9742 0 9742 9152 0 9742 9741 0 9741 9152 0 9741 9153 0 9153 9152 0 11775 9153 0\n\t\t 9741 11775 0 9741 12445 0 12445 11775 0 12445 3866 0 3866 11775 0 3866 11404 0 11404 11775 0\n\t\t 3866 12149 0 12149 11404 0 3881 11404 0 12468 12380 0 12380 10724 0 10724 12468 0\n\t\t 10724 3902 0 3902 12468 0 9414 3902 0 10724 9414 0 10724 10725 0 10725 9414 0 10725 9380 0\n\t\t 9380 9414 0 9380 9363 0 9363 9414 0 9364 9363 0 9380 9364 0 9380 9381 0 9381 9364 0\n\t\t 9381 10636 0 10636 9364 0 10636 10310 0 10310 9364 0 10282 10310 0 10636 10282 0\n\t\t 10636 10626 0 10626 10282 0 10626 10627 0 10627 10282 0 10627 10281 0 10281 10282 0\n\t\t 10676 10281 0 10627 10676 0 10627 3890 0 3890 10676 0 3890 10537 0 10537 10676 0\n\t\t 10537 12527 0 12527 10676 0 10537 3893 0 3893 12707 0 12707 10537 0 12707 12527 0\n\t\t 3893 3896 0 3896 12707 0 3896 3908 0 3908 12707 0 10488 3908 0 3896 10488 0 3896 11749 0\n\t\t 11749 10488 0 11749 9786 0 9786 10488 0 9786 9832 0 9832 10488 0 9833 9832 0 9786 9833 0\n\t\t 9786 9787 0 9787 9833 0 9787 3899 0 3899 9833 0 3899 3904 0 3904 9833 0 3899 12380 0\n\t\t 12380 3904 0 12468 3904 0 3792 3793 0 3793 3805 0 3805 3792 0 3805 3845 0 3845 3792 0\n\t\t 3806 3805 0 3793 3806 0 3793 3794 0 3794 3806 0 3807 3806 0 3794 3807 0 3794 3846 0\n\t\t 3846 3807 0 12256 3807 0 3846 12256 0 3846 9659 0 9659 12256 0 3810 12256 0 9659 3810 0\n\t\t 9659 3796 0 3796 3810 0 9579 3810 0 3796 9579 0 3796 12115 0 12115 9579 0 9580 9579 0\n\t\t 12115 9580 0 12115 3797 0 3797 9580 0 3813 9580 0 3797 3813 0 3797 3852 0 3852 3813 0\n\t\t 12202 3813 0 3852 12202 0 3852 10210 0 10210 12202 0 10210 3854 0 3854 3814 0 3814 10210 0\n\t\t 3814 12202 0;\n\tsetAttr \".ed[12948:13113]\" 3815 3814 0 3854 3815 0 3854 10154 0 10154 3815 0 12734 3815 0\n\t\t 10154 12734 0 10154 3800 0 3800 12734 0 3817 12734 0 3800 3817 0 3800 12613 0 12613 3817 0\n\t\t 12761 3817 0 12613 12761 0 12613 3802 0 3802 12761 0 3818 12761 0 3802 3818 0 3802 3804 0\n\t\t 3804 3818 0 3845 3818 0 3804 3845 0 3804 3792 0 9677 3862 0 3862 3861 0 3861 9677 0\n\t\t 3861 3863 0 3863 9677 0 3864 3861 0 3862 3864 0 3862 3819 0 3819 3864 0 9831 3864 0\n\t\t 3819 9831 0 3819 12150 0 12150 9831 0 3867 9831 0 12150 3867 0 12150 3831 0 3831 3867 0\n\t\t 3868 3867 0 3831 3868 0 3831 3869 0 3869 3868 0 9756 3868 0 3869 9756 0 3869 3871 0\n\t\t 3871 9756 0 3816 9756 0 3871 3816 0 3871 3872 0 3872 3816 0 12212 3816 0 3872 12212 0\n\t\t 3872 3874 0 3874 12212 0 3877 12212 0 3874 3877 0 3874 13182 0 13182 3877 0 13182 3876 0\n\t\t 3876 3875 0 3875 13182 0 3875 3877 0 3812 3875 0 3876 3812 0 3876 3878 0 3878 3812 0\n\t\t 12218 3812 0 3878 12218 0 3878 3880 0 3880 12218 0 3811 12218 0 3880 3811 0 3880 3823 0\n\t\t 3823 3811 0 3809 3811 0 3823 3809 0 3823 3822 0 3822 3809 0 3808 3809 0 3822 3808 0\n\t\t 3822 3820 0 3820 3808 0 3863 3808 0 3820 3863 0 3820 9677 0 10767 10768 0 10768 3882 0\n\t\t 3882 10767 0 3882 3833 0 3833 10767 0 3884 3882 0 10768 3884 0 10768 10900 0 10900 3884 0\n\t\t 3835 3884 0 10900 3835 0 10900 3821 0 3821 3835 0 3838 3835 0 3821 3838 0 3821 13180 0\n\t\t 13180 3838 0 3887 3838 0 13180 3887 0 13180 3824 0 3824 3887 0 3888 3887 0 3824 3888 0\n\t\t 3824 3825 0 3825 3888 0 3889 3888 0 3825 3889 0 3825 3826 0 3826 3889 0 10677 3889 0\n\t\t 3826 10677 0 3826 13128 0 13128 10677 0 3895 10677 0 13128 3895 0 13128 10582 0 10582 3895 0\n\t\t 10582 10583 0 10583 10536 0 10536 10582 0 10536 3895 0 10551 10536 0 10583 10551 0\n\t\t 10583 3828 0 3828 10551 0 3897 10551 0 3828 3897 0 3828 3829 0 3829 3897 0 3841 3897 0\n\t\t 3829 3841 0 3829 3830 0 3830 3841 0 3844 3841 0 3830 3844 0 3830 3898 0 3898 3844 0\n\t\t 12381 3844 0 3898 12381 0 3898 3900 0 3900 12381 0 3833 12381 0 3900 3833 0 3900 10767 0\n\t\t 3901 3903 0 3903 12469 0 12469 3901 0 12469 3834 0 3834 3901 0 3832 12469 0 3903 3832 0\n\t\t 3903 3751 0 3751 3832 0 12626 3832 0 3751 12626 0 3751 3905 0 3905 12626 0 3843 12626 0\n\t\t 3905 3843 0;\n\tsetAttr \".ed[13114:13279]\" 3905 3906 0 3906 3843 0 3842 3843 0 3906 3842 0 3906 3766 0\n\t\t 3766 3842 0 3907 3842 0 3766 3907 0 3766 3765 0 3765 3907 0 10489 3907 0 3765 10489 0\n\t\t 3765 3909 0 3909 10489 0 3840 10489 0 3909 3840 0 3909 3910 0 3910 3840 0 3839 3840 0\n\t\t 3910 3839 0 3910 3760 0 3760 3839 0 3760 3759 0 3759 3911 0 3911 3760 0 3911 3839 0\n\t\t 3912 3911 0 3759 3912 0 3759 10340 0 10340 3912 0 3914 3912 0 10340 3914 0 10340 10341 0\n\t\t 10341 3914 0 3916 3914 0 10341 3916 0 10341 3917 0 3917 3916 0 3837 3916 0 3917 3837 0\n\t\t 3917 3918 0 3918 3837 0 3836 3837 0 3918 3836 0 3918 3919 0 3919 3836 0 3834 3836 0\n\t\t 3919 3834 0 3919 3901 0 11126 3922 0 3922 3921 0 3921 11126 0 3921 3791 0 3791 11126 0\n\t\t 3923 3791 0 3921 3923 0 3921 3772 0 3772 3923 0 3772 12876 0 12876 3923 0 12876 3925 0\n\t\t 3925 3923 0 11082 3925 0 12876 11082 0 12876 3775 0 3775 11082 0 3775 12882 0 12882 11082 0\n\t\t 12882 3795 0 3795 11082 0 11000 3795 0 12882 11000 0 12882 3778 0 3778 11000 0 3778 11037 0\n\t\t 11037 11000 0 11037 3930 0 3930 11000 0 10955 3930 0 11037 10955 0 11037 11038 0\n\t\t 11038 10955 0 11038 3782 0 3782 10955 0 3782 3933 0 3933 10955 0 3782 3934 0 3934 3798 0\n\t\t 3798 3782 0 3798 3933 0 3934 3935 0 3935 3798 0 3935 3799 0 3799 3798 0 12631 3799 0\n\t\t 3935 12631 0 3935 10584 0 10584 12631 0 10584 10585 0 10585 12631 0 10585 3801 0\n\t\t 3801 12631 0 3803 3801 0 10585 3803 0 10585 3939 0 3939 3803 0 3939 3789 0 3789 3803 0\n\t\t 3789 11127 0 11127 3803 0 3789 3922 0 3922 11127 0 11126 11127 0 3941 12685 0 12685 4115 0\n\t\t 4115 3941 0 4115 3943 0 3943 3941 0 4115 12669 0 12669 3943 0 12669 3945 0 3945 3943 0\n\t\t 12669 10064 0 10064 3945 0 10064 3946 0 3946 3945 0 10064 9673 0 9673 3946 0 9673 3947 0\n\t\t 3947 3946 0 9673 9672 0 9672 3947 0 9672 3948 0 3948 3947 0 9672 4127 0 4127 3948 0\n\t\t 4127 3949 0 3949 3948 0 4127 9889 0 9889 3949 0 9889 3951 0 3951 3949 0 9889 9890 0\n\t\t 9890 3951 0 9890 3953 0 3953 3951 0 9890 4124 0 4124 3953 0 4124 3954 0 3954 3953 0\n\t\t 9907 3956 0 3956 3954 0 3954 9907 0 4124 9907 0 9907 9908 0 9908 3956 0 9908 3958 0\n\t\t 3958 3956 0 9908 4121 0 4121 3958 0 4121 3959 0 3959 3958 0 4121 4119 0 4119 3959 0\n\t\t 4119 3960 0 3960 3959 0;\n\tsetAttr \".ed[13280:13445]\" 4119 9641 0 9641 3960 0 9641 3961 0 3961 3960 0 9641 9640 0\n\t\t 9640 3961 0 9640 3962 0 3962 3961 0 9640 12685 0 12685 3962 0 3941 3962 0 3963 3964 0\n\t\t 3964 4003 0 4003 3963 0 4003 10815 0 10815 3963 0 9826 4003 0 3964 9826 0 3964 3967 0\n\t\t 3967 9826 0 9827 9826 0 3967 9827 0 3967 3969 0 3969 9827 0 9834 9827 0 3969 9834 0\n\t\t 3969 3971 0 3971 9834 0 4132 9834 0 3971 4132 0 3971 3972 0 3972 4132 0 9685 4132 0\n\t\t 3972 9685 0 3972 3974 0 3974 9685 0 9686 9685 0 3974 9686 0 3974 3976 0 3976 9686 0\n\t\t 9700 9686 0 3976 9700 0 3976 3978 0 3978 9700 0 12729 9700 0 3978 12729 0 3978 3979 0\n\t\t 3979 12729 0 11013 12729 0 3979 11013 0 3979 3981 0 3981 11013 0 11014 11013 0 3981 11014 0\n\t\t 3981 3983 0 3983 11014 0 11794 11014 0 3983 11794 0 3983 3984 0 3984 11794 0 11795 11794 0\n\t\t 3984 11795 0 3984 3985 0 3985 11795 0 11056 11795 0 3985 11056 0 3985 3987 0 3987 11056 0\n\t\t 10816 11056 0 3987 10816 0 3987 3989 0 3989 10816 0 10815 10816 0 3989 10815 0 3989 3963 0\n\t\t 11391 11183 0 11183 11182 0 11182 11391 0 11182 4069 0 4069 11391 0 11182 11196 0\n\t\t 11196 4069 0 11196 8757 0 8757 4069 0 11196 11325 0 11325 8757 0 11325 8765 0 8765 8757 0\n\t\t 11325 3995 0 3995 8765 0 3995 12520 0 12520 8765 0 3995 3997 0 3997 12520 0 3997 9358 0\n\t\t 9358 12520 0 3997 11138 0 11138 9358 0 11138 9359 0 9359 9358 0 11138 11148 0 11148 9359 0\n\t\t 11148 9373 0 9373 9359 0 11148 11156 0 11156 9373 0 11156 9474 0 9474 9373 0 11156 11551 0\n\t\t 11551 9474 0 11551 12549 0 12549 9474 0 3968 3994 0 3994 3993 0 3993 3968 0 3993 3966 0\n\t\t 3966 3968 0 3993 3991 0 3991 3966 0 3991 12782 0 12782 3966 0 3991 3992 0 3992 12782 0\n\t\t 3992 3965 0 3965 12782 0 3975 3999 0 3999 3998 0 3998 3975 0 3998 3973 0 3973 3975 0\n\t\t 3975 3977 0 3977 3999 0 3977 4000 0 4000 3999 0 3977 4014 0 4014 4000 0 4014 4001 0\n\t\t 4001 4000 0 3992 4004 0 4004 3965 0 11276 11242 0 11242 11183 0 11183 11276 0 11276 11274 0\n\t\t 11274 11242 0 11274 11243 0 11243 11242 0 11274 11275 0 11275 11243 0 11275 11791 0\n\t\t 11791 11243 0 11275 9339 0 9339 11791 0 9339 11780 0 11780 11791 0 9339 4084 0 4084 11780 0\n\t\t 4084 11781 0 11781 11780 0 4084 12466 0 12466 11781 0 12466 11903 0 11903 11781 0\n\t\t 12466 12549 0 12549 11903 0 11551 11903 0;\n\tsetAttr \".ed[13446:13611]\" 3980 4013 0 4013 4001 0 4001 3980 0 4014 3980 0 3980 3982 0\n\t\t 3982 4013 0 3982 4011 0 4011 4013 0 3982 4015 0 4015 4011 0 4015 4010 0 4010 4011 0\n\t\t 4015 4016 0 4016 4010 0 4016 4009 0 4009 4010 0 4016 3986 0 3986 4009 0 3986 4007 0\n\t\t 4007 4009 0 3986 3988 0 3988 4007 0 3988 4004 0 4004 4007 0 3988 3965 0 11391 11276 0\n\t\t 4088 4070 0 4070 12089 0 12089 4088 0 12089 4086 0 4086 4088 0 12089 4071 0 4071 4086 0\n\t\t 4071 11491 0 11491 4086 0 4071 4073 0 4073 11491 0 4073 11492 0 11492 11491 0 4073 9365 0\n\t\t 9365 11492 0 9365 4098 0 4098 11492 0 9365 9346 0 9346 4098 0 9346 13295 0 13295 4098 0\n\t\t 9346 9347 0 9347 13295 0 9347 4095 0 4095 13295 0 9347 9094 0 9094 4095 0 9094 12407 0\n\t\t 12407 4095 0 9094 9095 0 9095 12407 0 9095 11832 0 11832 12407 0 9095 9105 0 9105 11832 0\n\t\t 9105 11833 0 11833 11832 0 9205 12357 0 12357 11833 0 11833 9205 0 9105 9205 0 9205 4083 0\n\t\t 4083 12357 0 4083 12358 0 12358 12357 0 4083 9145 0 9145 12358 0 9145 9113 0 9113 12358 0\n\t\t 9145 9083 0 9083 9113 0 9083 9114 0 9114 9113 0 9083 9084 0 9084 9114 0 9084 9475 0\n\t\t 9475 9114 0 9084 9477 0 9477 9475 0 9477 4090 0 4090 9475 0 9477 4070 0 4070 4090 0\n\t\t 4088 4090 0 12443 9011 0 9011 4087 0 4087 12443 0 4087 9168 0 9168 12443 0 4087 9184 0\n\t\t 9184 9168 0 9184 9169 0 9169 9168 0 9184 9185 0 9185 9169 0 9185 9261 0 9261 9169 0\n\t\t 9185 9209 0 9209 9261 0 9209 9312 0 9312 9261 0 9209 11803 0 11803 9312 0 11803 4104 0\n\t\t 4104 9312 0 11803 11802 0 11802 4104 0 11802 4105 0 4105 4104 0 11802 8909 0 8909 4105 0\n\t\t 8909 12195 0 12195 4105 0 8909 8852 0 8852 12195 0 8852 11251 0 11251 12195 0 8852 8853 0\n\t\t 8853 11251 0 8853 11252 0 11252 11251 0 8850 8898 0 8898 11252 0 11252 8850 0 8853 8850 0\n\t\t 8850 8851 0 8851 8898 0 8851 8899 0 8899 8898 0 8851 8700 0 8700 8899 0 8700 8694 0\n\t\t 8694 8899 0 8700 8701 0 8701 8694 0 8701 8695 0 8695 8694 0 8701 12055 0 12055 8695 0\n\t\t 12055 8809 0 8809 8695 0 12055 12056 0 12056 8809 0 12056 12020 0 12020 8809 0 12056 9011 0\n\t\t 9011 12020 0 12443 12020 0 4116 10143 0 10143 12004 0 12004 4116 0 12004 10194 0\n\t\t 10194 4116 0 12004 11360 0 11360 10194 0 11360 10195 0 10195 10194 0 11360 11361 0\n\t\t 11361 10195 0 11361 10222 0;\n\tsetAttr \".ed[13612:13777]\" 10222 10195 0 11361 11394 0 11394 10222 0 11394 4129 0\n\t\t 4129 10222 0 11394 11395 0 11395 4129 0 11395 12759 0 12759 4129 0 11395 13292 0\n\t\t 13292 12759 0 13292 4126 0 4126 12759 0 13292 4106 0 4106 4126 0 4106 12781 0 12781 4126 0\n\t\t 4106 12145 0 12145 12781 0 12145 4125 0 4125 12781 0 12145 11344 0 11344 4125 0 11344 9781 0\n\t\t 9781 4125 0 11324 9780 0 9780 9781 0 9781 11324 0 11344 11324 0 11324 11167 0 11167 9780 0\n\t\t 11167 12305 0 12305 9780 0 11167 11168 0 11168 12305 0 11168 4120 0 4120 12305 0\n\t\t 11168 11149 0 11149 4120 0 11149 8944 0 8944 4120 0 11149 11150 0 11150 8944 0 11150 8945 0\n\t\t 8945 8944 0 11150 10144 0 10144 8945 0 10144 8961 0 8961 8945 0 10144 10143 0 10143 8961 0\n\t\t 4116 8961 0 3990 8756 0 8756 4017 0 4017 3990 0 4017 12105 0 12105 3990 0 8792 4017 0\n\t\t 8756 8792 0 8756 4072 0 4072 8792 0 8793 8792 0 4072 8793 0 4072 4074 0 4074 8793 0\n\t\t 4075 8793 0 4074 4075 0 4074 3996 0 3996 4075 0 4076 4075 0 3996 4076 0 3996 4077 0\n\t\t 4077 4076 0 4078 4076 0 4077 4078 0 4077 4079 0 4079 4078 0 4021 4078 0 4079 4021 0\n\t\t 4079 4080 0 4080 4021 0 4023 4021 0 4080 4023 0 4080 4081 0 4081 4023 0 4024 4023 0\n\t\t 4081 4024 0 4081 4002 0 4002 4024 0 4002 4012 0 4012 4082 0 4082 4002 0 4082 4024 0\n\t\t 9206 4082 0 4012 9206 0 4012 9338 0 9338 9206 0 4026 9206 0 9338 4026 0 9338 4085 0\n\t\t 4085 4026 0 4028 4026 0 4085 4028 0 4085 4008 0 4008 4028 0 4030 4028 0 4008 4030 0\n\t\t 4008 4006 0 4006 4030 0 4032 4030 0 4006 4032 0 4006 4005 0 4005 4032 0 12105 4032 0\n\t\t 4005 12105 0 4005 3990 0 4034 9010 0 9010 9020 0 9020 4034 0 9020 4018 0 4018 4034 0\n\t\t 9021 9020 0 9010 9021 0 9010 4089 0 4089 9021 0 11578 9021 0 4089 11578 0 4089 4053 0\n\t\t 4053 11578 0 4031 11578 0 4053 4031 0 4053 4091 0 4091 4031 0 4029 4031 0 4091 4029 0\n\t\t 4091 4050 0 4050 4029 0 4027 4029 0 4050 4027 0 4050 4048 0 4048 4027 0 4092 4027 0\n\t\t 4048 4092 0 4048 4046 0 4046 4092 0 4025 4092 0 4046 4025 0 4046 4044 0 4044 4025 0\n\t\t 4094 4025 0 4044 4094 0 4044 4043 0 4043 4094 0 4043 4042 0 4042 4093 0 4093 4043 0\n\t\t 4093 4094 0 4022 4093 0 4042 4022 0 4042 4040 0 4040 4022 0 12406 4022 0 4040 12406 0\n\t\t 4040 4096 0 4096 12406 0 4020 12406 0;\n\tsetAttr \".ed[13778:13943]\" 4096 4020 0 4096 4097 0 4097 4020 0 13293 4020 0 4097 13293 0\n\t\t 4097 4038 0 4038 13293 0 4019 13293 0 4038 4019 0 4038 4036 0 4036 4019 0 4018 4019 0\n\t\t 4036 4018 0 4036 4034 0 4099 4033 0 4033 4055 0 4055 4099 0 4055 4056 0 4056 4099 0\n\t\t 4100 4055 0 4033 4100 0 4033 4035 0 4035 4100 0 4101 4100 0 4035 4101 0 4035 4037 0\n\t\t 4037 4101 0 4102 4101 0 4037 4102 0 4037 4039 0 4039 4102 0 4103 4102 0 4039 4103 0\n\t\t 4039 11542 0 11542 4103 0 4061 4103 0 11542 4061 0 11542 11543 0 11543 4061 0 13289 4061 0\n\t\t 11543 13289 0 11543 4041 0 4041 13289 0 4063 13289 0 4041 4063 0 4041 4107 0 4107 4063 0\n\t\t 4110 4063 0 4107 4110 0 4107 4108 0 4108 4110 0 4108 4045 0 4045 4109 0 4109 4108 0\n\t\t 4109 4110 0 4111 4109 0 4045 4111 0 4045 4047 0 4047 4111 0 4112 4111 0 4047 4112 0\n\t\t 4047 4049 0 4049 4112 0 4113 4112 0 4049 4113 0 4049 4051 0 4051 4113 0 4114 4113 0\n\t\t 4051 4114 0 4051 4052 0 4052 4114 0 4067 4114 0 4052 4067 0 4052 4054 0 4054 4067 0\n\t\t 4056 4067 0 4054 4056 0 4054 4099 0 3944 12670 0 12670 4057 0 4057 3944 0 4057 4058 0\n\t\t 4058 3944 0 12648 4057 0 12670 12648 0 12670 3942 0 3942 12648 0 4068 12648 0 3942 4068 0\n\t\t 3942 4117 0 4117 4068 0 4066 4068 0 4117 4066 0 4117 4118 0 4118 4066 0 4065 4066 0\n\t\t 4118 4065 0 4118 9623 0 9623 4065 0 12306 4065 0 9623 12306 0 9623 9624 0 9624 12306 0\n\t\t 4064 12306 0 9624 4064 0 9624 3957 0 3957 4064 0 4122 4064 0 3957 4122 0 3957 3955 0\n\t\t 3955 4122 0 4123 4122 0 3955 4123 0 3955 12797 0 12797 4123 0 12797 3952 0 3952 12154 0\n\t\t 12154 12797 0 12154 4123 0 4062 12154 0 3952 4062 0 3952 3950 0 3950 4062 0 12764 4062 0\n\t\t 3950 12764 0 3950 9713 0 9713 12764 0 4060 12764 0 9713 4060 0 9713 4128 0 4128 4060 0\n\t\t 12760 4060 0 4128 12760 0 4128 4130 0 4130 12760 0 4059 12760 0 4130 4059 0 4130 4131 0\n\t\t 4131 4059 0 4058 4059 0 4131 4058 0 4131 3944 0 3968 3970 0 3970 3994 0 3970 11166 0\n\t\t 11166 3994 0 3970 12715 0 12715 11166 0 12715 11137 0 11137 11166 0 12715 3973 0\n\t\t 3973 11137 0 3998 11137 0 4133 4134 0 4134 4178 0 4178 4133 0 4178 12923 0 12923 4133 0\n\t\t 12923 10593 0 10593 4133 0 10593 4136 0 4136 4133 0 4137 4136 0 10593 4137 0 10593 10389 0\n\t\t 10389 4137 0;\n\tsetAttr \".ed[13944:14109]\" 10389 4188 0 4188 4137 0 4188 4138 0 4138 4137 0 4139 4138 0\n\t\t 4188 4139 0 4188 10320 0 10320 4139 0 10320 11883 0 11883 4139 0 11883 4140 0 4140 4139 0\n\t\t 4141 4140 0 11883 4141 0 11883 11886 0 11886 4141 0 11886 10007 0 10007 4141 0 10007 4143 0\n\t\t 4143 4141 0 4144 4143 0 10007 4144 0 10007 9878 0 9878 4144 0 9878 9879 0 9879 4144 0\n\t\t 9879 4147 0 4147 4144 0 4148 4147 0 9879 4148 0 9879 4186 0 4186 4148 0 4186 13005 0\n\t\t 13005 4148 0 13005 4150 0 4150 4148 0 4151 4150 0 13005 4151 0 13005 4183 0 4183 4151 0\n\t\t 4183 4180 0 4180 4151 0 4180 4152 0 4152 4151 0 4153 4152 0 4180 4153 0 4180 12691 0\n\t\t 12691 4153 0 4134 4153 0 12691 4134 0 12691 4178 0 4155 10703 0 10703 4176 0 4176 4155 0\n\t\t 4176 4157 0 4157 4155 0 4176 13024 0 13024 4157 0 13024 4159 0 4159 4157 0 13024 4179 0\n\t\t 4179 4159 0 4179 4160 0 4160 4159 0 4179 10313 0 10313 4160 0 10313 4161 0 4161 4160 0\n\t\t 10313 4182 0 4182 4161 0 4182 4162 0 4162 4161 0 4182 10263 0 10263 4162 0 10263 4163 0\n\t\t 4163 4162 0 10263 10264 0 10264 4163 0 10264 4175 0 4175 4163 0 4155 4164 0 4164 10703 0\n\t\t 4164 10704 0 10704 10703 0 4164 4166 0 4166 10704 0 4166 10330 0 10330 10704 0 4166 4167 0\n\t\t 4167 10330 0 4167 4190 0 4190 10330 0 4167 4168 0 4168 4190 0 4168 11896 0 11896 4190 0\n\t\t 4168 4169 0 4169 11896 0 4169 13096 0 13096 11896 0 4169 4171 0 4171 13096 0 4171 13048 0\n\t\t 13048 13096 0 4171 4172 0 4172 13048 0 4172 13049 0 13049 13048 0 4172 4174 0 4174 13049 0\n\t\t 4174 13067 0 13067 13049 0 4174 4175 0 4175 13067 0 10264 13067 0 13141 4156 0 4156 4177 0\n\t\t 4177 13141 0 4177 4135 0 4135 13141 0 4135 12690 0 12690 13141 0 12690 4158 0 4158 13141 0\n\t\t 10363 4158 0 12690 10363 0 12690 4154 0 4154 10363 0 4154 10336 0 10336 10363 0 10336 4181 0\n\t\t 4181 10363 0 10314 4181 0 10336 10314 0 10336 10337 0 10337 10314 0 10337 4149 0\n\t\t 4149 10314 0 4149 4184 0 4184 10314 0 4185 4184 0 4149 4185 0 4149 12852 0 12852 4185 0\n\t\t 4187 4177 0 4156 4187 0 4156 4165 0 4165 4187 0 10319 4187 0 4165 10319 0 4165 4189 0\n\t\t 4189 10319 0 4189 10331 0 10331 10319 0 10331 4191 0 4191 10319 0 4192 4191 0 10331 4192 0\n\t\t 10331 4193 0 4193 4192 0 4193 4170 0 4170 4192 0 4170 4194 0 4194 4192 0 4142 4194 0\n\t\t 4170 4142 0;\n\tsetAttr \".ed[14110:14275]\" 4170 4195 0 4195 4142 0 4195 4173 0 4173 4142 0 4173 4145 0\n\t\t 4145 4142 0 4146 4145 0 4173 4146 0 4173 4196 0 4196 4146 0 4196 4185 0 4185 4146 0\n\t\t 12852 4146 0 10463 10464 0 10464 4198 0 4198 10463 0 4198 4200 0 4200 10463 0 10464 10118 0\n\t\t 10118 4198 0 10118 4201 0 4201 4198 0 4202 4201 0 10118 4202 0 10118 4257 0 4257 4202 0\n\t\t 4257 4256 0 4256 4202 0 4256 4203 0 4203 4202 0 4204 4203 0 4256 4204 0 4256 10517 0\n\t\t 10517 4204 0 10517 10518 0 10518 4204 0 10518 4207 0 4207 4204 0 4208 4207 0 10518 4208 0\n\t\t 10518 4254 0 4254 4208 0 4254 4253 0 4253 4208 0 4253 4209 0 4209 4208 0 4210 4209 0\n\t\t 4253 4210 0 4253 12906 0 12906 4210 0 12906 4252 0 4252 4210 0 4252 4212 0 4212 4210 0\n\t\t 4213 4212 0 4252 4213 0 4252 10158 0 10158 4213 0 10158 4260 0 4260 4213 0 4260 4214 0\n\t\t 4214 4213 0 4215 4214 0 4260 4215 0 4260 11061 0 11061 4215 0 11061 11062 0 11062 4215 0\n\t\t 11062 4218 0 4218 4215 0 4219 4218 0 11062 4219 0 11062 4259 0 4259 4219 0 4200 4219 0\n\t\t 4259 4200 0 4259 10463 0 4220 4222 0 4222 4221 0 4221 4220 0 4221 4223 0 4223 4220 0\n\t\t 4220 10743 0 10743 4222 0 10743 4225 0 4225 4222 0 10743 4226 0 4226 4225 0 4226 4227 0\n\t\t 4227 4225 0 4226 10689 0 10689 4227 0 10689 4229 0 4229 4227 0 10689 4230 0 4230 4229 0\n\t\t 4230 4231 0 4231 4229 0 4230 4232 0 4232 4231 0 4232 4233 0 4233 4231 0 4232 4251 0\n\t\t 4251 4233 0 4251 4234 0 4234 4233 0 4221 4235 0 4235 4223 0 4235 9863 0 9863 4223 0\n\t\t 4235 4237 0 4237 9863 0 4237 9792 0 9792 9863 0 4237 4239 0 4239 9792 0 4239 9788 0\n\t\t 9788 9792 0 4239 4241 0 4241 9788 0 4241 9778 0 9778 9788 0 4241 4243 0 4243 9778 0\n\t\t 4243 9779 0 9779 9778 0 4243 4245 0 4245 9779 0 4245 4246 0 4246 9779 0 4245 4247 0\n\t\t 4247 4246 0 4247 4248 0 4248 4246 0 4247 4249 0 4249 4248 0 4249 10015 0 10015 4248 0\n\t\t 4249 4234 0 4234 10015 0 4251 10015 0 10014 4250 0 4250 10157 0 10157 10014 0 4250 10116 0\n\t\t 10116 10157 0 10157 4211 0 4211 10014 0 4244 10004 0 10004 10077 0 10077 4244 0 10004 10014 0\n\t\t 10014 10077 0 4211 10077 0 10077 10078 0 10078 4244 0 10116 4255 0 4255 10157 0 4206 4242 0\n\t\t 4242 4244 0 4244 4206 0 10078 4206 0 4240 4242 0 4206 4240 0 4206 4205 0 4205 4240 0;\n\tsetAttr \".ed[14276:14441]\" 4205 10249 0 10249 4240 0 10249 4238 0 4238 4240 0 4236 4238 0\n\t\t 10249 4236 0 10249 10117 0 10117 4236 0 10795 4236 0 10117 10795 0 10117 4258 0 4258 10795 0\n\t\t 10769 10795 0 4258 10769 0 4258 4199 0 4199 10769 0 4199 4197 0 4197 10769 0 4197 4224 0\n\t\t 4224 10769 0 10688 4224 0 4197 10688 0 4197 12950 0 12950 10688 0 12950 4217 0 4217 10688 0\n\t\t 4217 4228 0 4228 10688 0 10706 4228 0 4217 10706 0 4217 4216 0 4216 10706 0 4216 12721 0\n\t\t 12721 10706 0 12721 10731 0 10731 10706 0 10116 10731 0 12721 10116 0 12721 4255 0\n\t\t 9625 9626 0 9626 4262 0 4262 9625 0 4262 4264 0 4264 9625 0 4264 4265 0 4265 9625 0\n\t\t 4265 9754 0 9754 9625 0 4435 9754 0 4265 4435 0 4265 4266 0 4266 4435 0 4266 4267 0\n\t\t 4267 4435 0 4267 10148 0 10148 4435 0 12816 10148 0 4267 12816 0 4267 4269 0 4269 12816 0\n\t\t 4269 4270 0 4270 12816 0 4270 12666 0 12666 12816 0 12667 12666 0 4270 12667 0 4270 4272 0\n\t\t 4272 12667 0 4272 4273 0 4273 12667 0 4273 4429 0 4429 12667 0 12687 4429 0 4273 12687 0\n\t\t 4273 4276 0 4276 12687 0 4276 4275 0 4275 12687 0 4275 9646 0 9646 12687 0 9553 9646 0\n\t\t 4275 9553 0 4275 4279 0 4279 9553 0 4279 4280 0 4280 9553 0 4280 9554 0 9554 9553 0\n\t\t 4426 9554 0 4280 4426 0 4280 4282 0 4282 4426 0 4282 4283 0 4283 4426 0 4283 12615 0\n\t\t 12615 4426 0 4424 12615 0 4283 4424 0 4283 4285 0 4285 4424 0 9626 4424 0 4285 9626 0\n\t\t 4285 4262 0 4436 4287 0 4287 4286 0 4286 4436 0 4286 11162 0 11162 4436 0 4436 9419 0\n\t\t 9419 4287 0 9419 4290 0 4290 4287 0 9419 9420 0 9420 4290 0 9420 4292 0 4292 4290 0\n\t\t 9420 11348 0 11348 4292 0 11348 4294 0 4294 4292 0 11348 4441 0 4441 4294 0 4441 4295 0\n\t\t 4295 4294 0 4441 13120 0 13120 4295 0 13120 4297 0 4297 4295 0 13120 4444 0 4444 4297 0\n\t\t 4444 4298 0 4298 4297 0 4444 11427 0 11427 4298 0 11427 4300 0 4300 4298 0 11427 11428 0\n\t\t 11428 4300 0 11428 4302 0 4302 4300 0 11428 10442 0 10442 4302 0 10442 4303 0 4303 4302 0\n\t\t 10442 10417 0 10417 4303 0 10417 4304 0 4304 4303 0 10417 10418 0 10418 4304 0 10418 4305 0\n\t\t 4305 4304 0 10418 11720 0 11720 4305 0 11720 4307 0 4307 4305 0 11720 11683 0 11683 4307 0\n\t\t 11683 4309 0 4309 4307 0 11683 11163 0 11163 4309 0 11163 4311 0 4311 4309 0 11163 11162 0\n\t\t 11162 4311 0;\n\tsetAttr \".ed[14442:14607]\" 4286 4311 0 12889 9913 0 9913 12513 0 12513 12889 0\n\t\t 12513 9146 0 9146 12889 0 9146 9147 0 9147 12889 0 9147 4438 0 4438 12889 0 10523 4438 0\n\t\t 9147 10523 0 9147 9162 0 9162 10523 0 9162 11602 0 11602 10523 0 11602 4440 0 4440 10523 0\n\t\t 10527 4440 0 11602 10527 0 11602 11603 0 11603 10527 0 11603 11626 0 11626 10527 0\n\t\t 11626 10552 0 10552 10527 0 11608 10552 0 11626 11608 0 11626 11653 0 11653 11608 0\n\t\t 11653 11654 0 11654 11608 0 11654 11609 0 11609 11608 0 4445 11609 0 11654 4445 0\n\t\t 11654 4378 0 4378 4445 0 4378 4321 0 4321 4445 0 4321 4446 0 4446 4445 0 10454 4446 0\n\t\t 4321 10454 0 4321 4380 0 4380 10454 0 4380 8965 0 8965 10454 0 8965 8989 0 8989 10454 0\n\t\t 8990 8989 0 8965 8990 0 8965 8966 0 8966 8990 0 8966 11332 0 11332 8990 0 11332 10382 0\n\t\t 10382 8990 0 9914 10382 0 11332 9914 0 11332 4385 0 4385 9914 0 9913 9914 0 4385 9913 0\n\t\t 4385 12513 0 4368 9251 0 9251 9200 0 9200 4368 0 9200 4387 0 4387 4368 0 4387 12206 0\n\t\t 12206 4368 0 12206 8847 0 8847 4368 0 8848 8847 0 12206 8848 0 12206 12207 0 12207 8848 0\n\t\t 12207 9410 0 9410 8848 0 9410 9227 0 9227 8848 0 9228 9227 0 9410 9228 0 9410 9411 0\n\t\t 9411 9228 0 9411 4398 0 4398 9228 0 4398 9281 0 9281 9228 0 9282 9281 0 4398 9282 0\n\t\t 4398 11267 0 11267 9282 0 11267 12641 0 12641 9282 0 12641 11484 0 11484 9282 0 9453 11484 0\n\t\t 12641 9453 0 12641 12604 0 12604 9453 0 12604 11211 0 11211 9453 0 11211 9454 0 9454 9453 0\n\t\t 4379 9454 0 11211 4379 0 11211 11210 0 11210 4379 0 11210 11228 0 11228 4379 0 11228 12129 0\n\t\t 12129 4379 0 11434 12129 0 11228 11434 0 11228 11891 0 11891 11434 0 11891 12007 0\n\t\t 12007 11434 0 12007 4382 0 4382 11434 0 9252 4382 0 12007 9252 0 12007 9201 0 9201 9252 0\n\t\t 9251 9252 0 9201 9251 0 9201 9200 0 4388 8864 0 8864 11987 0 11987 4388 0 11987 11988 0\n\t\t 11988 4388 0 11988 4405 0 4405 4388 0 4405 4386 0 4386 4388 0 11976 4386 0 4405 11976 0\n\t\t 4405 12011 0 12011 11976 0 12011 8664 0 8664 11976 0 8664 11977 0 11977 11976 0 11198 11977 0\n\t\t 8664 11198 0 8664 8665 0 8665 11198 0 8665 8735 0 8735 11198 0 8735 11197 0 11197 11198 0\n\t\t 8818 11197 0 8735 8818 0 8735 8796 0 8796 8818 0 8796 10961 0 10961 8818 0 10961 8819 0\n\t\t 8819 8818 0 12137 8819 0 10961 12137 0 10961 10962 0 10962 12137 0;\n\tsetAttr \".ed[14608:14773]\" 10962 12949 0 12949 12137 0 12949 12969 0 12969 12137 0\n\t\t 4394 12969 0 12949 4394 0 12949 12978 0 12978 4394 0 12978 4416 0 4416 4394 0 4416 12924 0\n\t\t 12924 4394 0 4391 12924 0 4416 4391 0 4416 10854 0 10854 4391 0 10854 10848 0 10848 4391 0\n\t\t 10848 11935 0 11935 4391 0 8865 11935 0 10848 8865 0 10848 10849 0 10849 8865 0 8864 8865 0\n\t\t 10849 8864 0 10849 11987 0 11287 4403 0 4403 9808 0 9808 11287 0 9808 9797 0 9797 11287 0\n\t\t 9797 4422 0 4422 11287 0 4422 11288 0 11288 11287 0 11317 11288 0 4422 11317 0 4422 9747 0\n\t\t 9747 11317 0 9747 4432 0 4432 11317 0 4432 11342 0 11342 11317 0 11343 11342 0 4432 11343 0\n\t\t 4432 8977 0 8977 11343 0 8977 8978 0 8978 11343 0 8978 12309 0 12309 11343 0 11020 12309 0\n\t\t 8978 11020 0 8978 4430 0 4430 11020 0 4430 8968 0 8968 11020 0 8968 4410 0 4410 11020 0\n\t\t 10975 4410 0 8968 10975 0 8968 8969 0 8969 10975 0 12478 9313 0 9313 10975 0 10975 12478 0\n\t\t 8969 12478 0 9314 9313 0 12478 9314 0 12478 12408 0 12408 9314 0 12408 4427 0 4427 9314 0\n\t\t 4427 4415 0 4415 9314 0 9188 4415 0 4427 9188 0 4427 12373 0 12373 9188 0 12373 4425 0\n\t\t 4425 9188 0 4425 9117 0 9117 9188 0 9118 9117 0 4425 9118 0 4425 12345 0 12345 9118 0\n\t\t 4403 9118 0 12345 4403 0 12345 9808 0 4313 4369 0 4369 9504 0 9504 4313 0 9504 4370 0\n\t\t 4370 4313 0 9504 4328 0 4328 4370 0 4328 4371 0 4371 4370 0 4328 4329 0 4329 4371 0\n\t\t 4329 4372 0 4372 4371 0 4329 4373 0 4373 4372 0 4373 4314 0 4314 4372 0 4373 4374 0\n\t\t 4374 4314 0 4374 4315 0 4315 4314 0 4374 4375 0 4375 4315 0 4375 4316 0 4316 4315 0\n\t\t 4375 4376 0 4376 4316 0 4376 4318 0 4318 4316 0 4376 4377 0 4377 4318 0 4377 4319 0\n\t\t 4319 4318 0 4377 4333 0 4333 4319 0 4333 13286 0 13286 4319 0 4333 4335 0 4335 13286 0\n\t\t 4335 13282 0 13282 13286 0 4335 12107 0 12107 13282 0 12107 12314 0 12314 13282 0\n\t\t 12107 4336 0 4336 12314 0 4336 4322 0 4322 12314 0 4336 4381 0 4381 4322 0 4381 4325 0\n\t\t 4325 4322 0 4381 11354 0 11354 4325 0 11354 4383 0 4383 4325 0 11354 4384 0 4384 4383 0\n\t\t 4384 11333 0 11333 4383 0 4384 4369 0 4369 11333 0 4313 11333 0 11322 4327 0 4327 12246 0\n\t\t 12246 11322 0 12246 11323 0 11323 11322 0 12246 4326 0 4326 11323 0 4326 4340 0 4340 11323 0\n\t\t 4326 4338 0 4338 4340 0;\n\tsetAttr \".ed[14774:14939]\" 4338 4354 0 4354 4340 0 4338 4337 0 4337 4354 0 4337 4389 0\n\t\t 4389 4354 0 4337 4390 0 4390 4389 0 4390 11936 0 11936 4389 0 4390 4392 0 4392 11936 0\n\t\t 4392 4353 0 4353 11936 0 4392 4393 0 4393 4353 0 4393 12984 0 12984 4353 0 4393 4395 0\n\t\t 4395 12984 0 4395 4351 0 4351 12984 0 4395 4334 0 4334 4351 0 4334 4396 0 4396 4351 0\n\t\t 4334 4332 0 4332 4396 0 4332 4350 0 4350 4396 0 4332 4397 0 4397 4350 0 4397 4348 0\n\t\t 4348 4350 0 4397 11268 0 11268 4348 0 11268 4399 0 4399 4348 0 11268 4331 0 4331 4399 0\n\t\t 4331 4400 0 4400 4399 0 4331 4330 0 4330 4400 0 4330 4345 0 4345 4400 0 4330 4401 0\n\t\t 4401 4345 0 4401 4342 0 4342 4345 0 4401 4327 0 4327 4342 0 11322 4342 0 4339 11513 0\n\t\t 11513 4402 0 4402 4339 0 4402 4341 0 4341 4339 0 4402 4404 0 4404 4341 0 4404 13273 0\n\t\t 13273 4341 0 4404 4406 0 4406 13273 0 4406 4343 0 4343 13273 0 4406 4407 0 4407 4343 0\n\t\t 4407 4344 0 4344 4343 0 4407 4408 0 4408 4344 0 4408 4346 0 4346 4344 0 4408 4357 0\n\t\t 4357 4346 0 4357 4347 0 4347 4346 0 4357 4409 0 4409 4347 0 4409 4349 0 4349 4347 0\n\t\t 4409 10974 0 10974 4349 0 10974 4411 0 4411 4349 0 10974 4412 0 4412 4411 0 4412 4413 0\n\t\t 4413 4411 0 4412 4360 0 4360 4413 0 4360 4414 0 4414 4413 0 4360 4361 0 4361 4414 0\n\t\t 4361 4352 0 4352 4414 0 4361 12388 0 12388 4352 0 12388 10933 0 10933 4352 0 12388 4363 0\n\t\t 4363 10933 0 4363 4417 0 4417 10933 0 4363 4365 0 4365 4417 0 4365 4418 0 4418 4417 0\n\t\t 4365 4366 0 4366 4418 0 4366 4419 0 4419 4418 0 4366 11513 0 11513 4419 0 4339 4419 0\n\t\t 4420 9746 0 9746 4421 0 4421 4420 0 4421 4261 0 4261 4420 0 4421 4423 0 4423 4261 0\n\t\t 4423 4263 0 4263 4261 0 4423 4367 0 4367 4263 0 4367 12651 0 12651 4263 0 4367 12361 0\n\t\t 12361 12651 0 12361 4284 0 4284 12651 0 12361 4364 0 4364 4284 0 4364 12612 0 12612 4284 0\n\t\t 4364 12395 0 12395 12612 0 12395 4281 0 4281 12612 0 12395 4362 0 4362 4281 0 4362 4278 0\n\t\t 4278 4281 0 4362 4428 0 4428 4278 0 4428 4277 0 4277 4278 0 4428 4359 0 4359 4277 0\n\t\t 4359 4274 0 4274 4277 0 4359 4358 0 4358 4274 0 4358 12686 0 12686 4274 0 4358 12326 0\n\t\t 12326 12686 0 12326 4271 0 4271 12686 0 12326 4356 0 4356 4271 0 4356 4431 0 4431 4271 0;\n\tsetAttr \".ed[14940:15105]\" 4356 4355 0 4355 4431 0 4355 4268 0 4268 4431 0 4355 10155 0\n\t\t 10155 4268 0 10155 4433 0 4433 4268 0 10155 4434 0 4434 4433 0 4434 9755 0 9755 4433 0\n\t\t 4434 9746 0 9746 9755 0 4420 9755 0 12607 4288 0 4288 4437 0 4437 12607 0 4437 4312 0\n\t\t 4312 12607 0 4312 10560 0 10560 12607 0 10560 4289 0 4289 12607 0 4291 4289 0 10560 4291 0\n\t\t 10560 4439 0 4439 4291 0 4439 10524 0 10524 4291 0 10524 4293 0 4293 4291 0 13119 4293 0\n\t\t 10524 13119 0 10524 4442 0 4442 13119 0 4442 4443 0 4443 13119 0 4443 4296 0 4296 13119 0\n\t\t 13124 4296 0 4443 13124 0 4443 4317 0 4317 13124 0 4317 4320 0 4320 13124 0 4320 4299 0\n\t\t 4299 13124 0 4301 4299 0 4320 4301 0 4320 13089 0 13089 4301 0 10453 4447 0 4447 4301 0\n\t\t 4301 10453 0 13089 10453 0 4448 4447 0 10453 4448 0 10453 4449 0 4449 4448 0 4449 4323 0\n\t\t 4323 4448 0 4323 4450 0 4450 4448 0 4306 4450 0 4323 4306 0 4323 4324 0 4324 4306 0\n\t\t 4324 4451 0 4451 4306 0 4451 4308 0 4308 4306 0 4310 4308 0 4451 4310 0 4451 4452 0\n\t\t 4452 4310 0 4288 4310 0 4452 4288 0 4452 4437 0 4453 4454 0 4454 9801 0 9801 4453 0\n\t\t 9801 4632 0 4632 4453 0 4454 4455 0 4455 9801 0 4455 10305 0 10305 9801 0 10288 10305 0\n\t\t 4455 10288 0 4455 4458 0 4458 10288 0 4458 4459 0 4459 10288 0 4459 10289 0 10289 10288 0\n\t\t 4643 10289 0 4459 4643 0 4459 4461 0 4461 4643 0 4461 4462 0 4462 4643 0 4462 4641 0\n\t\t 4641 4643 0 12593 4641 0 4462 12593 0 4462 4464 0 4464 12593 0 4464 4465 0 4465 12593 0\n\t\t 4465 4639 0 4639 12593 0 10630 4639 0 4465 10630 0 4465 4466 0 4466 10630 0 4466 4468 0\n\t\t 4468 10630 0 4468 10631 0 10631 10630 0 4636 10631 0 4468 4636 0 4468 4470 0 4470 4636 0\n\t\t 4470 4471 0 4471 4636 0 4471 12499 0 12499 4636 0 9320 12499 0 4471 9320 0 4471 4473 0\n\t\t 4473 9320 0 4473 4474 0 4474 9320 0 4474 9319 0 9319 9320 0 12486 9319 0 4474 12486 0\n\t\t 4474 4476 0 4476 12486 0 4476 4453 0 4453 12486 0 4632 12486 0 4477 4520 0 4520 4519 0\n\t\t 4519 4477 0 4519 4478 0 4478 4477 0 4519 4518 0 4518 4478 0 4518 4479 0 4479 4478 0\n\t\t 4518 4513 0 4513 4479 0 4513 4480 0 4480 4479 0 4513 4514 0 4514 4480 0 4514 4481 0\n\t\t 4481 4480 0 4514 13208 0 13208 4481 0 13208 4483 0 4483 4481 0 13208 4515 0 4515 4483 0;\n\tsetAttr \".ed[15106:15271]\" 4515 4484 0 4484 4483 0 4515 4516 0 4516 4484 0 4516 4485 0\n\t\t 4485 4484 0 4516 13214 0 13214 4485 0 13214 4487 0 4487 4485 0 13214 4517 0 4517 4487 0\n\t\t 4517 4488 0 4488 4487 0 4517 12798 0 12798 4488 0 12798 4490 0 4490 4488 0 12798 9602 0\n\t\t 9602 4490 0 9602 4491 0 4491 4490 0 9602 9603 0 9603 4491 0 9603 4492 0 4492 4491 0\n\t\t 9603 12705 0 12705 4492 0 12705 4494 0 4494 4492 0 12705 4532 0 4532 4494 0 4532 4495 0\n\t\t 4495 4494 0 4532 12744 0 12744 4495 0 12744 4497 0 4497 4495 0 12744 4520 0 4520 4497 0\n\t\t 4477 4497 0 10918 8794 0 8794 10721 0 10721 10918 0 10721 10775 0 10775 10918 0 10722 10721 0\n\t\t 8794 10722 0 8794 8795 0 8795 10722 0 10777 10722 0 8795 10777 0 8795 10886 0 10886 10777 0\n\t\t 4504 10777 0 10886 4504 0 10886 10887 0 10887 4504 0 4506 4504 0 10887 4506 0 10887 4593 0\n\t\t 4593 4506 0 4507 4506 0 4593 4507 0 4593 8975 0 8975 4507 0 4508 4507 0 8975 4508 0\n\t\t 8975 8999 0 8999 4508 0 10840 4508 0 8999 10840 0 8999 11091 0 11091 10840 0 11058 10840 0\n\t\t 11091 11058 0 11091 11092 0 11092 11058 0 4501 4502 0 4502 11088 0 11088 4501 0 11106 11088 0\n\t\t 4502 11106 0 4502 10778 0 10778 11106 0 10778 10889 0 10889 4482 0 4482 10778 0 4482 11106 0\n\t\t 10990 4482 0 10889 10990 0 10889 10858 0 10858 10990 0 10858 10839 0 10839 10991 0\n\t\t 10991 10858 0 10991 10990 0 4486 10991 0 10839 4486 0 10839 4509 0 4509 4486 0 4509 4511 0\n\t\t 4511 12799 0 12799 4509 0 12799 4486 0 11088 10943 0 10943 4501 0 4499 4501 0 10943 4499 0\n\t\t 10943 10938 0 10938 4499 0 4500 4499 0 10938 4500 0 10938 10939 0 10939 4500 0 4521 4500 0\n\t\t 10939 4521 0 10775 9696 0 9696 10919 0 10919 10775 0 12006 10919 0 9696 12006 0 9696 9697 0\n\t\t 9697 12006 0 12005 12006 0 9697 12005 0 9697 9728 0 9728 12005 0 9751 12005 0 9728 9751 0\n\t\t 9728 4526 0 4526 9751 0 9752 9751 0 4526 9752 0 4526 9749 0 9749 9752 0 4599 9752 0\n\t\t 9749 4599 0 9749 9850 0 9850 4599 0 11092 4599 0 9850 11092 0 9850 11058 0 10919 10918 0\n\t\t 4511 4529 0 4529 4489 0 4489 4511 0 4489 12799 0 4529 4528 0 4528 4530 0 4530 4529 0\n\t\t 4530 4489 0 4531 4530 0 4528 4531 0 4528 9748 0 9748 4531 0 9748 4524 0 4524 4493 0\n\t\t 4493 9748 0 4493 4531 0 12730 4493 0 4524 12730 0 4524 4523 0 4523 12730 0 4496 12730 0\n\t\t 4523 4496 0;\n\tsetAttr \".ed[15272:15437]\" 4523 4521 0 4521 4496 0 10939 4496 0 12630 12621 0 12621 9653 0\n\t\t 9653 12630 0 9653 11667 0 11667 12630 0 9540 9653 0 12621 9540 0 12621 8766 0 8766 9540 0\n\t\t 9541 9540 0 8766 9541 0 8766 8767 0 8767 9541 0 8733 9541 0 8767 8733 0 8767 9536 0\n\t\t 9536 8733 0 4592 8733 0 9536 4592 0 9536 9537 0 9537 4592 0 8955 4592 0 9537 8955 0\n\t\t 9537 10315 0 10315 8955 0 9551 8955 0 10315 9551 0 10315 4615 0 4615 9551 0 9552 9551 0\n\t\t 4615 9552 0 4615 8876 0 8876 9552 0 12071 9552 0 8876 12071 0 8876 12147 0 12147 12071 0\n\t\t 4598 12071 0 12147 4598 0 12147 4613 0 4613 4598 0 11980 4598 0 4613 11980 0 4613 8732 0\n\t\t 8732 11980 0 11981 11980 0 8732 11981 0 8732 8731 0 8731 11981 0 9761 11981 0 8731 9761 0\n\t\t 8731 9821 0 9821 9761 0 9762 9761 0 9821 9762 0 9821 9822 0 9822 9762 0 11668 9762 0\n\t\t 9822 11668 0 9822 9854 0 9854 11668 0 11667 11668 0 9854 11667 0 9854 12630 0 4618 12774 0\n\t\t 12774 9727 0 9727 4618 0 9727 9745 0 9745 4618 0 9698 9727 0 12774 9698 0 12774 12775 0\n\t\t 12775 9698 0 9699 9698 0 12775 9699 0 12775 9736 0 9736 9699 0 9357 9699 0 9736 9357 0\n\t\t 9736 9737 0 9737 9357 0 9336 9357 0 9737 9336 0 9737 12494 0 12494 9336 0 9337 9336 0\n\t\t 12494 9337 0 12494 9430 0 9430 9337 0 4616 9337 0 9430 4616 0 9430 9431 0 9431 4616 0\n\t\t 9472 4616 0 9431 9472 0 9431 4624 0 4624 9472 0 9473 9472 0 4624 9473 0 4624 9470 0\n\t\t 9470 9473 0 12175 9473 0 9470 12175 0 9470 9471 0 9471 12175 0 4612 12175 0 9471 4612 0\n\t\t 9471 9478 0 9478 4612 0 4610 4612 0 9478 4610 0 9478 12433 0 12433 4610 0 4608 4610 0\n\t\t 12433 4608 0 12433 9349 0 9349 4608 0 12091 4608 0 9349 12091 0 9349 9350 0 9350 12091 0\n\t\t 12507 12091 0 9350 12507 0 9350 10197 0 10197 12507 0 9745 12507 0 10197 9745 0 10197 4618 0\n\t\t 4631 12367 0 12367 4619 0 4619 4631 0 4619 11463 0 11463 4631 0 9104 4619 0 12367 9104 0\n\t\t 12367 12376 0 12376 9104 0 9031 9104 0 12376 9031 0 12376 12360 0 12360 9031 0 9007 9031 0\n\t\t 12360 9007 0 12360 4644 0 4644 9007 0 8996 9007 0 4644 8996 0 4644 4642 0 4642 8996 0\n\t\t 8997 8996 0 4642 8997 0 4642 12571 0 12571 8997 0 9932 8997 0 12571 9932 0 12571 4640 0\n\t\t 4640 9932 0 4623 9932 0 4640 4623 0 4640 4638 0 4638 4623 0 4578 4623 0 4638 4578 0;\n\tsetAttr \".ed[15438:15603]\" 4638 12519 0 12519 4578 0 12841 4578 0 12519 12841 0\n\t\t 12519 4637 0 4637 12841 0 12843 12841 0 4637 12843 0 4637 12530 0 12530 12843 0 11808 12843 0\n\t\t 12530 11808 0 12530 4635 0 4635 11808 0 11809 11808 0 4635 11809 0 4635 11782 0 11782 11809 0\n\t\t 12807 11809 0 11782 12807 0 11782 11783 0 11783 12807 0 11464 12807 0 11783 11464 0\n\t\t 11783 11814 0 11814 11464 0 11463 11464 0 11814 11463 0 11814 4631 0 4498 4588 0\n\t\t 4588 4533 0 4533 4498 0 4533 4589 0 4589 4498 0 4533 4535 0 4535 4589 0 4535 4590 0\n\t\t 4590 4589 0 4535 4536 0 4536 4590 0 4536 4503 0 4503 4590 0 4536 4591 0 4591 4503 0\n\t\t 4591 4505 0 4505 4503 0 4591 8734 0 8734 4505 0 8734 8974 0 8974 4505 0 8734 4594 0\n\t\t 4594 8974 0 4594 4595 0 4595 8974 0 4594 4540 0 4540 4595 0 4540 4596 0 4596 4595 0\n\t\t 4540 4541 0 4541 4596 0 4541 4510 0 4510 4596 0 4541 4597 0 4597 4510 0 4597 4512 0\n\t\t 4512 4510 0 4597 12010 0 12010 4512 0 12010 12811 0 12811 4512 0 12010 4600 0 4600 12811 0\n\t\t 4600 4527 0 4527 12811 0 4600 4601 0 4601 4527 0 4601 4525 0 4525 4527 0 4601 4543 0\n\t\t 4543 4525 0 4543 4602 0 4602 4525 0 4543 4545 0 4545 4602 0 4545 4603 0 4603 4602 0\n\t\t 4545 4604 0 4604 4603 0 4604 4522 0 4522 4603 0 4604 4588 0 4588 4522 0 4498 4522 0\n\t\t 4551 4605 0 4605 4534 0 4534 4551 0 4534 4548 0 4548 4551 0 4534 4606 0 4606 4548 0\n\t\t 4606 4550 0 4550 4548 0 4606 4547 0 4547 4550 0 4547 4607 0 4607 4550 0 4547 4546 0\n\t\t 4546 4607 0 4546 4567 0 4567 4607 0 4546 4544 0 4544 4567 0 4544 8775 0 8775 4567 0\n\t\t 4544 4609 0 4609 8775 0 4609 8776 0 8776 8775 0 4609 4611 0 4611 8776 0 4611 8828 0\n\t\t 8828 8776 0 4611 8836 0 8836 8828 0 8836 4562 0 4562 8828 0 8836 4542 0 4542 4562 0\n\t\t 4542 4561 0 4561 4562 0 4542 4614 0 4614 4561 0 4614 4560 0 4560 4561 0 4614 8877 0\n\t\t 8877 4560 0 8877 12224 0 12224 4560 0 8877 4539 0 4539 12224 0 4539 4557 0 4557 12224 0\n\t\t 4539 4538 0 4538 4557 0 4538 4556 0 4556 4557 0 4538 4537 0 4537 4556 0 4537 4554 0\n\t\t 4554 4556 0 4537 4617 0 4617 4554 0 4617 4552 0 4552 4554 0 4617 4605 0 4605 4552 0\n\t\t 4551 4552 0 10196 4570 0 4570 12370 0 12370 10196 0 12370 4549 0 4549 10196 0 12370 4571 0\n\t\t 4571 4549 0 4571 4620 0 4620 4549 0;\n\tsetAttr \".ed[15604:15769]\" 4571 4572 0 4572 4620 0 4572 4553 0 4553 4620 0 4572 4574 0\n\t\t 4574 4553 0 4574 4555 0 4555 4553 0 4574 4575 0 4575 4555 0 4575 4621 0 4621 4555 0\n\t\t 4575 4576 0 4576 4621 0 4576 4558 0 4558 4621 0 4576 4622 0 4622 4558 0 4622 4559 0\n\t\t 4559 4558 0 4622 9933 0 9933 4559 0 9933 12594 0 12594 4559 0 9933 12842 0 12842 12594 0\n\t\t 12842 4563 0 4563 12594 0 12842 4579 0 4579 4563 0 4579 4564 0 4564 4563 0 4579 4625 0\n\t\t 4625 4564 0 4625 4565 0 4565 4564 0 4625 4582 0 4582 4565 0 4582 4626 0 4626 4565 0\n\t\t 4582 4583 0 4583 4626 0 4583 4566 0 4566 4626 0 4583 4627 0 4627 4566 0 4627 4568 0\n\t\t 4568 4566 0 4627 4586 0 4586 4568 0 4586 4628 0 4628 4568 0 4586 4570 0 4570 4628 0\n\t\t 10196 4628 0 4456 4629 0 4629 4569 0 4569 4456 0 4569 4630 0 4630 4456 0 4569 12366 0\n\t\t 12366 4630 0 12366 9802 0 9802 4630 0 12366 4587 0 4587 9802 0 4587 4475 0 4475 9802 0\n\t\t 4587 4585 0 4585 4475 0 4585 4633 0 4633 4475 0 4585 4584 0 4584 4633 0 4584 4634 0\n\t\t 4634 4633 0 4584 12512 0 12512 4634 0 12512 4472 0 4472 4634 0 12512 4581 0 4581 4472 0\n\t\t 4581 12542 0 12542 4472 0 4581 12518 0 12518 12542 0 12518 4469 0 4469 12542 0 12518 4580 0\n\t\t 4580 4469 0 4580 4467 0 4467 4469 0 4580 9501 0 9501 4467 0 9501 12627 0 12627 4467 0\n\t\t 9501 9502 0 9502 12627 0 9502 4463 0 4463 12627 0 9502 4577 0 4577 4463 0 4577 11294 0\n\t\t 11294 4463 0 4577 11314 0 11314 11294 0 11314 11295 0 11295 11294 0 11314 11315 0\n\t\t 11315 11295 0 11315 4460 0 4460 11295 0 11315 4573 0 4573 4460 0 4573 4457 0 4457 4460 0\n\t\t 4573 4629 0 4629 4457 0 4456 4457 0 11306 11219 0 11219 11217 0 11217 11306 0 11217 12933 0\n\t\t 12933 11306 0 11220 13257 0 13257 13101 0 13101 11220 0 13101 4646 0 4646 11220 0\n\t\t 4718 13101 0 13257 4718 0 13257 4671 0 4671 4718 0 11188 4718 0 4671 11188 0 4671 13241 0\n\t\t 13241 11188 0 11189 11188 0 13241 11189 0 13241 4663 0 4663 11189 0 4722 11189 0\n\t\t 4663 4722 0 4663 11174 0 11174 4722 0 11174 11175 0 11175 4722 0 11175 10329 0 10329 4722 0\n\t\t 10709 10329 0 11175 10709 0 11175 4656 0 4656 10709 0 4655 4657 0 4657 13248 0 13248 4655 0\n\t\t 13248 4654 0 4654 4655 0 4658 4655 0 4654 4658 0 4654 4653 0 4653 4658 0 4658 4659 0\n\t\t 4659 4655 0 4659 4660 0 4660 4655 0;\n\tsetAttr \".ed[15770:15935]\" 4660 4657 0 4660 4661 0 4661 4657 0 4662 4658 0 4653 4662 0\n\t\t 4653 13242 0 13242 4662 0 4664 4662 0 13242 4664 0 13242 4651 0 4651 4664 0 4665 4662 0\n\t\t 4664 4665 0 4665 4659 0 4658 4665 0 4664 4666 0 4666 4665 0 4665 11129 0 11129 4659 0\n\t\t 11129 11128 0 11128 4659 0 11128 4660 0 11128 11792 0 11792 4660 0 11792 4661 0 11792 11793 0\n\t\t 11793 4661 0 11176 11129 0 4665 11176 0 4666 11176 0 4670 4664 0 4651 4670 0 4670 4666 0\n\t\t 4651 13244 0 13244 4670 0 4672 4670 0 13244 4672 0 13244 4649 0 4649 4672 0 4673 4672 0\n\t\t 4649 4673 0 4649 4647 0 4647 4673 0 4674 4673 0 4647 4674 0 4647 4675 0 4675 4674 0\n\t\t 4674 4676 0 4676 4673 0 4676 4677 0 4677 4673 0 12934 4675 0 4647 12934 0 4647 4645 0\n\t\t 4645 12934 0 13040 4675 0 12934 13040 0 13040 4674 0 12934 12942 0 12942 13040 0\n\t\t 4676 13082 0 13082 4677 0 13082 4694 0 4694 4677 0 4733 4676 0 4674 4733 0 4674 4730 0\n\t\t 4730 4733 0 13040 4730 0 10522 13082 0 4676 10522 0 4733 10522 0 4677 4680 0 4680 4673 0\n\t\t 4680 4681 0 4681 4673 0 4694 10852 0 10852 4677 0 10852 4680 0 10852 4681 0 10852 10897 0\n\t\t 10897 4681 0 4682 4681 0 10897 4682 0 4682 4672 0 4672 4681 0 4682 4670 0 4682 4683 0\n\t\t 4683 4670 0 4682 10896 0 10896 4683 0 10897 10896 0 10896 11177 0 11177 4683 0 4683 4666 0\n\t\t 11177 4666 0 11177 11176 0 4667 4685 0 4685 10671 0 10671 4667 0 10671 4704 0 4704 4667 0\n\t\t 4668 4667 0 4704 4668 0 4704 13136 0 13136 4668 0 10656 10671 0 4685 10656 0 4685 4687 0\n\t\t 4687 10656 0 10655 10656 0 4687 10655 0 4687 4669 0 4669 10655 0 13146 10655 0 4669 13146 0\n\t\t 4669 4684 0 4684 13146 0 4696 13146 0 4684 4696 0 4684 4689 0 4689 4696 0 4707 4696 0\n\t\t 4689 4707 0 4689 4690 0 4690 4707 0 4691 4707 0 4690 4691 0 4690 4692 0 4692 4691 0\n\t\t 13091 4691 0 4692 13091 0 4692 10853 0 10853 13091 0 4695 4688 0 4688 10680 0 10680 4695 0\n\t\t 10680 4697 0 4697 4695 0 4698 4688 0 4695 4698 0 4695 4699 0 4699 4698 0 4700 4698 0\n\t\t 4699 4700 0 4699 4701 0 4701 4700 0 4702 4700 0 4701 4702 0 4701 4703 0 4703 4702 0\n\t\t 10672 4702 0 4703 10672 0 4703 4705 0 4705 10672 0 4686 10672 0 4705 4686 0 4706 4697 0\n\t\t 10680 4706 0 10680 4707 0 4707 4706 0 4708 4706 0 4707 4708 0 4691 4708 0 4709 4708 0\n\t\t 4691 4709 0;\n\tsetAttr \".ed[15936:16101]\" 13091 4709 0 12933 10102 0 10102 11306 0 10102 4678 0\n\t\t 4678 11306 0 12941 4678 0 10102 12941 0 10102 10103 0 10103 12941 0 4710 4713 0 4713 12993 0\n\t\t 12993 4710 0 12993 10104 0 10104 4710 0 4714 4713 0 4710 4714 0 4710 4715 0 4715 4714 0\n\t\t 11218 13327 0 13327 4714 0 4714 11218 0 4715 11218 0 4716 13327 0 11218 4716 0 11218 4648 0\n\t\t 4648 4716 0 4648 13106 0 13106 4716 0 13106 4719 0 4719 4716 0 13106 4650 0 4650 4719 0\n\t\t 4650 4720 0 4720 4719 0 4650 4652 0 4652 4720 0 4652 4721 0 4721 4720 0 4652 10328 0\n\t\t 10328 4721 0 10328 4723 0 4723 4721 0 4724 4723 0 10328 4724 0 10328 4725 0 4725 4724 0\n\t\t 12510 4724 0 4725 12510 0 4725 4726 0 4726 12510 0 4711 12994 0 12994 4727 0 4727 4711 0\n\t\t 4679 4727 0 12994 4679 0 12994 4728 0 4728 4679 0 4728 4729 0 4729 4679 0 10465 4679 0\n\t\t 4729 10465 0 4729 4731 0 4731 10465 0 4731 4732 0 4732 10465 0 4732 10466 0 10466 10465 0\n\t\t 4732 10521 0 10521 10466 0 10853 4735 0 4735 13091 0 13081 4736 0 4736 4693 0 4693 13081 0\n\t\t 4737 4736 0 13081 4737 0 13081 4734 0 4734 4737 0 10979 13233 0 13233 4738 0 4738 10979 0\n\t\t 4738 4746 0 4746 10979 0 4739 10981 0 10981 10983 0 10983 4739 0 10983 10986 0 10986 4739 0\n\t\t 4741 10984 0 10984 11006 0 11006 4741 0 11006 4743 0 4743 4741 0 9864 10992 0 10992 10980 0\n\t\t 10980 9864 0 10980 4746 0 4746 9864 0 13198 4764 0 4764 4742 0 4742 13198 0 4742 10985 0\n\t\t 10985 13198 0 4758 4748 0 4748 4747 0 4747 4758 0 4747 4796 0 4796 4758 0 4748 4743 0\n\t\t 4743 4747 0 11006 4747 0 11469 13134 0 13134 4747 0 4747 11469 0 11006 11469 0 4749 4751 0\n\t\t 4751 12587 0 12587 4749 0 12587 4780 0 4780 4749 0 4738 4751 0 4749 4738 0 4749 4746 0\n\t\t 4780 4746 0 4780 9864 0 13199 4740 0 4740 4744 0 4744 13199 0 4744 10993 0 10993 13199 0\n\t\t 4782 11597 0 11597 11601 0 11601 4782 0 11601 4774 0 4774 4782 0 11598 11597 0 4782 11598 0\n\t\t 4782 12750 0 12750 11598 0 11612 11599 0 11599 4783 0 4783 11612 0 4783 4778 0 4778 11612 0\n\t\t 4757 4774 0 11601 4757 0 11601 4772 0 4772 4757 0 4766 11612 0 4778 4766 0 4778 4775 0\n\t\t 4775 4766 0 13133 13134 0 13134 4797 0 4797 13133 0 4797 4759 0 4759 13133 0 4797 4798 0\n\t\t 4798 4759 0 4798 4803 0 4803 4759 0 4760 4761 0 4761 4799 0 4799 4760 0 4799 13275 0\n\t\t 13275 4760 0;\n\tsetAttr \".ed[16102:16267]\" 4745 4799 0 4761 4745 0 4761 4762 0 4762 4745 0 4752 4745 0\n\t\t 4762 4752 0 4762 4763 0 4763 4752 0 11468 4752 0 4763 11468 0 4763 4765 0 4765 11468 0\n\t\t 11471 11468 0 4765 11471 0 4765 4767 0 4767 11471 0 13275 4753 0 4753 4760 0 4753 4768 0\n\t\t 4768 4760 0 4769 4768 0 4753 4769 0 4753 4754 0 4754 4769 0 4770 4769 0 4754 4770 0\n\t\t 4754 4755 0 4755 4770 0 4771 4770 0 4755 4771 0 4755 4756 0 4756 4771 0 4756 11471 0\n\t\t 4767 4756 0 4767 4771 0 4801 4757 0 4772 4801 0 4772 9865 0 9865 4801 0 11347 4789 0\n\t\t 4789 4782 0 4782 11347 0 4774 11347 0 4775 4795 0 4795 11470 0 11470 4775 0 11470 4766 0\n\t\t 4776 4777 0 4777 4778 0 4778 4776 0 4783 4776 0 4777 4775 0 4777 4781 0 4781 4775 0\n\t\t 4750 4779 0 4779 9825 0 9825 4750 0 9825 12548 0 12548 4750 0 4802 9825 0 4779 4802 0\n\t\t 4779 4805 0 4805 4802 0 4801 9635 0 9635 4757 0 9635 4794 0 4794 4757 0 4781 12640 0\n\t\t 12640 4775 0 12640 4795 0 4789 4776 0 4776 4782 0 4776 12750 0 12742 4794 0 9635 12742 0\n\t\t 9635 9636 0 9636 12742 0 12639 12640 0 4781 12639 0 4781 4793 0 4793 12639 0 12655 4790 0\n\t\t 4790 4789 0 4789 12655 0 11347 12655 0 4790 4791 0 4791 4789 0 4791 4776 0 4791 4777 0\n\t\t 4791 4792 0 4792 4777 0 4788 4773 0 4773 4794 0 4794 4788 0 4794 4784 0 4784 4788 0\n\t\t 4777 12849 0 12849 12672 0 12672 4777 0 12672 4781 0 4773 4774 0 4774 4794 0 12763 4797 0\n\t\t 13134 12763 0 11469 12763 0 12763 4804 0 4804 4797 0 4804 4798 0 4780 4800 0 4800 9864 0\n\t\t 4800 9866 0 9866 9864 0 4800 4802 0 4802 9866 0 4802 4785 0 4785 9866 0 4787 4803 0\n\t\t 4798 4787 0 4804 4787 0 4786 4785 0 4802 4786 0 4805 4786 0 12244 4832 0 4832 4868 0\n\t\t 4868 12244 0 4868 12252 0 12252 12244 0 4806 8715 0 8715 8716 0 8716 4806 0 8716 4878 0\n\t\t 4878 4806 0 4806 4880 0 4880 8715 0 4880 12054 0 12054 8715 0 4880 8983 0 8983 12054 0\n\t\t 8983 11993 0 11993 12054 0 8983 8984 0 8984 11993 0 8984 9053 0 9053 11993 0 8984 4884 0\n\t\t 4884 9053 0 4884 4816 0 4816 9053 0 4813 4816 0 4884 4813 0 4884 4886 0 4886 4813 0\n\t\t 12479 4813 0 4886 12479 0 4886 12492 0 12492 12479 0 4812 9236 0 9236 4810 0 4810 4812 0\n\t\t 4810 4814 0 4814 4812 0 4812 4815 0 4815 9236 0 4815 9052 0 9052 9236 0 4817 4815 0;\n\tsetAttr \".ed[16268:16433]\" 4812 4817 0 4812 4818 0 4818 4817 0 4814 4818 0 4814 4819 0\n\t\t 4819 4818 0 4815 4820 0 4820 9052 0 4820 4821 0 4821 9052 0 4820 4822 0 4822 4821 0\n\t\t 4822 4823 0 4823 4821 0 4820 4824 0 4824 4822 0 4815 4824 0 4817 4824 0 4824 4825 0\n\t\t 4825 4822 0 13334 4824 0 4817 13334 0 4817 4843 0 4843 13334 0 4818 4843 0 4818 12182 0\n\t\t 12182 4843 0 4844 12182 0 4818 4844 0 4819 4844 0 8754 4825 0 4824 8754 0 13334 8754 0\n\t\t 4822 4828 0 4828 4823 0 4825 4828 0 4828 4807 0 4807 4823 0 4828 4829 0 4829 4807 0\n\t\t 4829 4830 0 4830 4807 0 4829 4831 0 4831 4830 0 4831 8717 0 8717 4830 0 4831 4833 0\n\t\t 4833 8717 0 4833 4834 0 4834 8717 0 4835 4833 0 4831 4835 0 4831 4836 0 4836 4835 0\n\t\t 4834 9002 0 9002 8717 0 9002 9290 0 9290 8717 0 4834 4888 0 4888 9002 0 4833 4888 0\n\t\t 4888 9003 0 9003 9002 0 4896 4835 0 4836 4896 0 4836 11717 0 11717 4896 0 4835 4894 0\n\t\t 4894 4833 0 4894 10028 0 10028 4833 0 10028 4888 0 9971 4894 0 4835 9971 0 4896 9971 0\n\t\t 4831 4838 0 4838 4836 0 4831 4839 0 4839 4838 0 4829 4839 0 4829 4840 0 4840 4839 0\n\t\t 4828 4840 0 4828 4841 0 4841 4840 0 8782 4840 0 4841 8782 0 4841 8755 0 8755 8782 0\n\t\t 4825 4841 0 4825 8755 0 8754 8755 0 8782 8857 0 8857 4840 0 8857 4839 0 8857 11719 0\n\t\t 11719 4839 0 11719 4838 0 11719 4836 0 11719 11717 0 4827 4861 0 4861 4859 0 4859 4827 0\n\t\t 4859 12203 0 12203 4827 0 4827 12183 0 12183 4861 0 12183 12461 0 12461 4861 0 4859 12420 0\n\t\t 12420 12203 0 12420 4826 0 4826 12203 0 12420 4856 0 4856 4826 0 4856 4847 0 4847 4826 0\n\t\t 4856 4853 0 4853 4847 0 4853 4848 0 4848 4847 0 4853 4854 0 4854 4848 0 4854 4849 0\n\t\t 4849 4848 0 4854 4864 0 4864 4849 0 4864 4850 0 4850 4849 0 4864 4866 0 4866 4850 0\n\t\t 4866 4842 0 4842 4850 0 4866 4851 0 4851 4842 0 4851 11718 0 11718 4842 0 4852 4854 0\n\t\t 4853 4852 0 4853 4855 0 4855 4852 0 4853 12017 0 12017 4855 0 12017 4857 0 4857 4855 0\n\t\t 12017 4846 0 4846 4857 0 4846 4858 0 4858 4857 0 4846 9268 0 9268 4858 0 9268 4860 0\n\t\t 4860 4858 0 9268 9269 0 9269 4860 0 9269 4862 0 4862 4860 0 4845 4862 0 9269 4845 0\n\t\t 4852 4863 0 4863 4854 0 4863 4864 0 4863 4865 0 4865 4864 0 4865 4866 0 4865 4867 0;\n\tsetAttr \".ed[16434:16599]\" 4867 4866 0 4867 4851 0 4868 4869 0 4869 4873 0 4873 4868 0\n\t\t 4873 12252 0 4869 9004 0 9004 4873 0 9004 9088 0 9088 4873 0 9089 12401 0 12401 4872 0\n\t\t 4872 9089 0 4872 9090 0 9090 9089 0 4872 4874 0 4874 9090 0 4874 4876 0 4876 9090 0\n\t\t 4874 12822 0 12822 12243 0 12243 4874 0 12243 4876 0 4877 12394 0 12394 12243 0 12243 4877 0\n\t\t 12822 4877 0 4877 4879 0 4879 12394 0 4879 12292 0 12292 12394 0 4879 4881 0 4881 12292 0\n\t\t 4881 4808 0 4808 12292 0 4881 4882 0 4882 4808 0 4882 4809 0 4809 4808 0 4882 4883 0\n\t\t 4883 4809 0 4883 9929 0 9929 4809 0 4883 4885 0 4885 9929 0 4885 9930 0 9930 9929 0\n\t\t 4885 12830 0 12830 9930 0 12830 12493 0 12493 9930 0 4870 12400 0 12400 4871 0 4871 4870 0\n\t\t 10027 12400 0 4870 10027 0 10027 4889 0 4889 12400 0 4889 4890 0 4890 12400 0 10027 4891 0\n\t\t 4891 4889 0 4891 4892 0 4892 4889 0 4893 4892 0 4891 4893 0 4891 10071 0 10071 4893 0\n\t\t 4898 4893 0 10071 4898 0 12888 9969 0 9969 4837 0 4837 12888 0 4851 4895 0 4895 11718 0\n\t\t 12888 4897 0 4897 9969 0 4897 9970 0 9970 9969 0 4911 4910 0 4910 4899 0 4899 4911 0\n\t\t 4899 12664 0 12664 4911 0 12555 12665 0 12665 12662 0 12662 12555 0 12662 12711 0\n\t\t 12711 12555 0 12556 4900 0 4900 4907 0 4907 12556 0 4907 12656 0 12656 12556 0 12757 4911 0\n\t\t 4911 4901 0 4901 12757 0 4901 4923 0 4923 12757 0 12552 12554 0 12554 4906 0 4906 12552 0\n\t\t 4906 12659 0 12659 12552 0 12614 4919 0 4919 4904 0 4904 12614 0 4904 4905 0 4905 12614 0\n\t\t 4904 12656 0 12656 4905 0 4907 4905 0 12658 12656 0 4904 12658 0 4904 12606 0 12606 12658 0\n\t\t 4941 4909 0 4909 4908 0 4908 4941 0 4908 10526 0 10526 4941 0 4909 4910 0 4910 4908 0\n\t\t 4911 4908 0 4911 10526 0 12757 10526 0 12553 12560 0 12560 12663 0 12663 12553 0\n\t\t 12663 4912 0 4912 12553 0 4935 4937 0 4937 4929 0 4929 4935 0 4929 11107 0 11107 4935 0\n\t\t 11107 11108 0 11108 4935 0 11108 4947 0 4947 4935 0 10847 11109 0 11109 11130 0 11130 10847 0\n\t\t 11130 4916 0 4916 10847 0 4937 4960 0 4960 4929 0 4960 13223 0 13223 4929 0 11130 13238 0\n\t\t 13238 4916 0 13238 4940 0 4940 4916 0 4903 4918 0 4918 4917 0 4917 4903 0 4917 12606 0\n\t\t 12606 4903 0 4964 4917 0 4918 4964 0 4918 4920 0 4920 4964 0 4921 4933 0 4933 4961 0\n\t\t 4961 4921 0 4961 4922 0;\n\tsetAttr \".ed[16600:16765]\" 4922 4921 0 4961 12559 0 12559 4922 0 12559 4924 0 4924 4922 0\n\t\t 12559 4902 0 4902 4924 0 4902 4925 0 4925 4924 0 4902 4939 0 4939 4925 0 4939 4926 0\n\t\t 4926 4925 0 4939 4938 0 4938 4926 0 4938 4927 0 4927 4926 0 4921 4928 0 4928 4933 0\n\t\t 4928 13222 0 13222 4933 0 4928 4930 0 4930 13222 0 4930 4913 0 4913 13222 0 4930 4931 0\n\t\t 4931 4913 0 4931 4914 0 4914 4913 0 4931 4932 0 4932 4914 0 4932 4915 0 4915 4914 0\n\t\t 4932 4927 0 4927 4915 0 4938 4915 0 4934 12758 0 12758 13223 0 13223 4934 0 4960 4934 0\n\t\t 4935 4936 0 4936 4954 0 4954 4935 0 4954 4937 0 13238 12657 0 12657 4940 0 12657 12955 0\n\t\t 12955 4940 0 4916 4957 0 4957 4946 0 4946 4916 0 4946 10847 0 4940 4950 0 4950 4957 0\n\t\t 4957 4940 0 10525 4943 0 4943 10553 0 10553 10525 0 10553 4944 0 4944 10525 0 10553 4965 0\n\t\t 4965 4944 0 4965 4945 0 4945 4944 0 4960 4959 0 4959 12892 0 12892 4960 0 12892 4934 0\n\t\t 12915 4950 0 4940 12915 0 12955 12915 0 4946 4936 0 4935 4946 0 4947 4946 0 12991 4966 0\n\t\t 4966 12892 0 12892 12991 0 4959 12991 0 4963 10817 0 10817 4950 0 4950 4963 0 12915 4963 0\n\t\t 10859 4954 0 4936 10859 0 4936 4955 0 4955 10859 0 4946 4955 0 4946 4956 0 4956 4955 0\n\t\t 4957 4956 0 4957 10360 0 10360 4956 0 10860 4953 0 4953 4948 0 4948 10860 0 4948 4959 0\n\t\t 4959 10860 0 4958 4957 0 4950 4958 0 4950 4951 0 4951 4958 0 4937 10860 0 4959 4937 0\n\t\t 4917 4962 0 4962 12606 0 4962 12658 0 12757 12891 0 12891 4942 0 4942 12757 0 4942 10526 0\n\t\t 4964 4952 0 4952 4917 0 4952 4962 0 4920 12914 0 12914 4964 0 12914 4952 0 12891 4949 0\n\t\t 4949 4965 0 4965 12891 0 4965 4942 0 4949 4945 0 4949 13026 0 13026 4945 0 13042 13043 0\n\t\t 13043 4983 0 4983 13042 0 4983 10567 0 10567 13042 0 4972 4981 0 4981 13032 0 13032 4972 0\n\t\t 13032 13066 0 13066 4972 0 13043 4974 0 4974 4983 0 4974 4993 0 4993 4983 0 10380 10529 0\n\t\t 10529 13044 0 13044 10380 0 13044 13041 0 13041 10380 0 13041 4969 0 4969 10380 0\n\t\t 4969 10381 0 10381 10380 0 13055 4967 0 4967 10528 0 10528 13055 0 10528 13045 0\n\t\t 13045 13055 0 10641 13149 0 13149 10530 0 10530 10641 0 10530 4970 0 4970 10641 0\n\t\t 4970 4973 0 4973 10641 0 4973 13137 0 13137 10641 0 13046 4971 0 4971 4975 0 4975 13046 0\n\t\t 4975 4989 0 4989 13046 0 10637 4985 0;\n\tsetAttr \".ed[16766:16931]\" 4985 13148 0 13148 10637 0 13148 10640 0 10640 10637 0\n\t\t 10638 4978 0 4978 4976 0 4976 10638 0 4976 10891 0 10891 10638 0 4985 4980 0 4980 13148 0\n\t\t 4980 13162 0 13162 13148 0 10617 10557 0 10557 10565 0 10565 10617 0 10565 4983 0\n\t\t 4983 10617 0 10566 10556 0 10556 10559 0 10559 10566 0 10559 4968 0 4968 10566 0\n\t\t 4987 10617 0 4983 4987 0 4993 4987 0 4985 10639 0 10639 10558 0 10558 4985 0 10558 4986 0\n\t\t 4986 4985 0 4982 4977 0 4977 4979 0 4979 4982 0 4979 4984 0 4984 4982 0 4986 10618 0\n\t\t 10618 4985 0 10618 4980 0 4988 13162 0 4980 4988 0 4980 4990 0 4990 4988 0 10618 4990 0\n\t\t 10618 4991 0 4991 4990 0 13265 4987 0 4993 13265 0 4993 4992 0 4992 13265 0 4974 4992 0\n\t\t 4974 4994 0 4994 4992 0 4974 13047 0 13047 4994 0 13047 13316 0 13316 4994 0 4995 4996 0\n\t\t 4996 13162 0 13162 4995 0 4988 4995 0 13226 5015 0 5015 4998 0 4998 13226 0 4998 11117 0\n\t\t 11117 13226 0 13240 11152 0 11152 13225 0 13225 13240 0 13225 5005 0 5005 13240 0\n\t\t 12743 11117 0 4998 12743 0 4998 5001 0 5001 12743 0 11102 4997 0 4997 11116 0 11116 11102 0\n\t\t 11116 11103 0 11103 11102 0 13243 4997 0 11102 13243 0 11102 5009 0 5009 13243 0\n\t\t 11104 5003 0 5003 5000 0 5000 11104 0 5000 11113 0 11113 11104 0 11047 5002 0 5002 11105 0\n\t\t 11105 11047 0 11105 11049 0 11049 11047 0 13210 5002 0 11047 13210 0 11047 5011 0\n\t\t 5011 13210 0 11050 5004 0 5004 11115 0 11115 11050 0 11115 11388 0 11388 11050 0\n\t\t 9283 11048 0 11048 5008 0 5008 9283 0 5008 5018 0 5018 9283 0 13219 5007 0 5007 9285 0\n\t\t 9285 13219 0 9285 12502 0 12502 13219 0 5013 5018 0 5008 5013 0 5008 5010 0 5010 5013 0\n\t\t 11139 4998 0 4998 11151 0 11151 11139 0 11151 11140 0 11140 11139 0 12480 11141 0\n\t\t 11141 11153 0 11153 12480 0 11153 4999 0 4999 12480 0 11139 11147 0 11147 4998 0\n\t\t 11147 5001 0 5018 5014 0 5014 5016 0 5016 5018 0 5016 9284 0 9284 5018 0 5012 5019 0\n\t\t 5019 11142 0 11142 5012 0 11142 5020 0 5020 5012 0 5017 5014 0 5018 5017 0 5013 5017 0\n\t\t 5026 5021 0 5021 5013 0 5013 5026 0 5010 5026 0 5021 5022 0 5022 5017 0 5017 5021 0\n\t\t 12377 5023 0 5023 5001 0 5001 12377 0 11147 12377 0 5023 5024 0 5024 12743 0 12743 5023 0\n\t\t 5024 5025 0 5025 11114 0 11114 5024 0 11114 12743 0 12732 5026 0 5010 12732 0 5010 5006 0\n\t\t 5006 12732 0 11677 11675 0;\n\tsetAttr \".ed[16932:17097]\" 11675 5041 0 5041 11677 0 5041 5029 0 5029 11677 0 5029 11658 0\n\t\t 11658 11677 0 11658 11659 0 11659 11677 0 12157 5037 0 5037 12803 0 12803 12157 0\n\t\t 12803 5045 0 5045 12157 0 5041 5027 0 5027 11956 0 11956 5041 0 11956 5029 0 11675 5088 0\n\t\t 5088 5041 0 5088 5040 0 5040 5041 0 5042 5040 0 5088 5042 0 5088 11559 0 11559 5042 0\n\t\t 11811 5042 0 11559 11811 0 11559 11560 0 11560 11811 0 5030 11811 0 11560 5030 0\n\t\t 11560 8725 0 8725 5030 0 5031 5030 0 8725 5031 0 8725 8721 0 8721 5031 0 8721 8722 0\n\t\t 8722 5031 0 8722 5032 0 5032 5031 0 5033 5032 0 8722 5033 0 8722 12180 0 12180 5033 0\n\t\t 5030 5035 0 5035 11811 0 5035 12790 0 12790 11811 0 5059 5035 0 5030 5059 0 5031 5059 0\n\t\t 12156 12158 0 12158 8747 0 8747 12156 0 8747 5039 0 5039 12156 0 5040 5038 0 5038 5027 0\n\t\t 5027 5040 0 5042 5038 0 5042 8748 0 8748 5038 0 8747 5043 0 5043 5039 0 11806 8748 0\n\t\t 5042 11806 0 5042 11810 0 11810 11806 0 5043 5044 0 5044 5039 0 5043 11805 0 11805 11804 0\n\t\t 11804 5043 0 11804 5044 0 5189 11957 0 11957 11955 0 11955 5189 0 11955 5028 0 5028 5189 0\n\t\t 11956 11958 0 11958 5029 0 11958 11658 0 5033 5048 0 5048 5047 0 5047 5033 0 5047 5032 0\n\t\t 9181 9231 0 9231 5049 0 5049 9181 0 5049 5050 0 5050 9181 0 5050 9275 0 9275 9181 0\n\t\t 9275 9182 0 9182 9181 0 5047 5052 0 5052 5031 0 5031 5047 0 9271 9310 0 9310 9309 0\n\t\t 9309 9271 0 9309 5056 0 5056 9271 0 9272 9271 0 5056 9272 0 5056 11844 0 11844 9272 0\n\t\t 5053 9274 0 9274 12790 0 12790 5053 0 5035 5053 0 5055 5053 0 5035 5055 0 5059 5055 0\n\t\t 5031 5055 0 5052 5055 0 5054 5055 0 5052 5054 0 5052 5051 0 5051 5054 0 9273 5058 0\n\t\t 5058 5060 0 5060 9273 0 5060 11807 0 11807 9273 0 5036 5057 0 5057 5061 0 5061 5036 0\n\t\t 5061 5062 0 5062 5036 0 13328 5109 0 5109 5074 0 5074 13328 0 5074 5063 0 5063 13328 0\n\t\t 12188 5066 0 5066 5065 0 5065 12188 0 5065 5107 0 5107 12188 0 5067 5066 0 12188 5067 0\n\t\t 12188 9590 0 9590 5067 0 5065 5068 0 5068 5107 0 5068 11899 0 11899 5107 0 5068 5070 0\n\t\t 5070 11899 0 5070 11900 0 11900 11899 0 9590 9591 0 9591 5067 0 9591 4717 0 4717 5067 0\n\t\t 5070 5072 0 5072 11900 0 5072 5103 0 5103 11900 0 9324 5103 0 5072 9324 0 5072 12509 0\n\t\t 12509 9324 0 13322 11665 0;\n\tsetAttr \".ed[17098:17263]\" 11665 11664 0 11664 13322 0 11664 5075 0 5075 13322 0\n\t\t 11664 9564 0 9564 5075 0 9564 5076 0 5076 5075 0 9564 9565 0 9565 5076 0 9565 5077 0\n\t\t 5077 5076 0 9565 11613 0 11613 5077 0 11613 5079 0 5079 5077 0 4712 5079 0 11613 4712 0\n\t\t 11613 11614 0 11614 4712 0 5081 11678 0 11678 12270 0 12270 5081 0 12270 12191 0\n\t\t 12191 5081 0 5083 11548 0 11548 11590 0 11590 5083 0 11590 5086 0 5086 5083 0 11549 11548 0\n\t\t 5083 11549 0 5083 11568 0 11568 11549 0 11590 5106 0 5106 5086 0 5106 5089 0 5089 5086 0\n\t\t 5106 12123 0 12123 5089 0 12123 5091 0 5091 5089 0 11568 11676 0 11676 11549 0 11676 5110 0\n\t\t 5110 11549 0 12123 5105 0 5105 5091 0 5105 5092 0 5092 5091 0 5034 5092 0 5105 5034 0\n\t\t 5105 12143 0 12143 5034 0 5082 11660 0 11660 5111 0 5111 5082 0 5111 12271 0 12271 5082 0\n\t\t 11660 5095 0 5095 5111 0 5095 8881 0 8881 5111 0 8882 8881 0 5095 8882 0 5095 12226 0\n\t\t 12226 8882 0 5095 8910 0 8910 12226 0 8910 8911 0 8911 12226 0 12265 8910 0 5095 12265 0\n\t\t 11660 12265 0 12226 12228 0 12228 8882 0 12228 8921 0 8921 8882 0 12279 8921 0 12228 12279 0\n\t\t 12228 12283 0 12283 12279 0 9325 5102 0 5102 10710 0 10710 9325 0 10710 12144 0 12144 9325 0\n\t\t 9323 5104 0 5104 5093 0 5093 9323 0 5093 12124 0 12124 9323 0 5071 9323 0 12124 5071 0\n\t\t 12124 5090 0 5090 5071 0 5069 5071 0 5090 5069 0 5090 12125 0 12125 5069 0 12205 5069 0\n\t\t 12125 12205 0 12125 5084 0 5084 12205 0 5064 12205 0 5084 5064 0 5084 5085 0 5085 5064 0\n\t\t 5108 5064 0 5085 5108 0 5085 5087 0 5087 5108 0 9592 5108 0 5087 9592 0 5087 12190 0\n\t\t 12190 9592 0 11666 9592 0 12190 11666 0 12190 5094 0 5094 11666 0 5073 11666 0 5094 5073 0\n\t\t 5094 12274 0 12274 5073 0 5112 5073 0 12274 5112 0 12274 5096 0 5096 5112 0 5113 5112 0\n\t\t 5096 5113 0 5096 5097 0 5097 5113 0 5097 5101 0 5101 5113 0 5101 5078 0 5078 5113 0\n\t\t 11615 5078 0 5101 11615 0 5101 12280 0 12280 11615 0 12668 5116 0 5116 5115 0 5115 12668 0\n\t\t 5115 12616 0 12616 12668 0 5150 12616 0 5115 5150 0 5115 5118 0 5118 5150 0 5118 5119 0\n\t\t 5119 5150 0 5119 10674 0 10674 5150 0 5119 5120 0 5120 10674 0 5120 5121 0 5121 10674 0\n\t\t 5122 5121 0 5120 5122 0 5120 5123 0 5123 5122 0 5121 5124 0 5124 10674 0 5124 5159 0\n\t\t 5159 10674 0 5125 5124 0;\n\tsetAttr \".ed[17264:17429]\" 5121 5125 0 5122 5125 0 12668 5126 0 5126 5116 0 12547 5126 0\n\t\t 12668 12547 0 12668 5178 0 5178 12547 0 5128 5126 0 12547 5128 0 12547 5176 0 5176 5128 0\n\t\t 5128 5129 0 5129 5126 0 5129 5130 0 5130 5126 0 5130 5116 0 5131 5128 0 5176 5131 0\n\t\t 5176 11563 0 11563 5131 0 5132 5131 0 11563 5132 0 11563 9417 0 9417 5132 0 5132 5134 0\n\t\t 5134 5131 0 5134 5135 0 5135 5131 0 5135 5128 0 5135 5129 0 5136 5132 0 9417 5136 0\n\t\t 9417 9418 0 9418 5136 0 5138 5136 0 9418 5138 0 9418 5167 0 5167 5138 0 5138 12264 0\n\t\t 12264 5136 0 5098 12264 0 5138 5098 0 5138 5140 0 5140 5098 0 5167 5140 0 8912 5098 0\n\t\t 5140 8912 0 5140 5144 0 5144 8912 0 12264 5141 0 5141 5136 0 5141 5132 0 5141 5134 0\n\t\t 5167 12714 0 12714 5140 0 12714 5164 0 5164 5140 0 5164 5144 0 9498 5099 0 5099 12632 0\n\t\t 12632 9498 0 12632 9499 0 9499 9498 0 12632 12633 0 12633 9499 0 12633 11349 0 11349 9499 0\n\t\t 5146 5143 0 5143 5145 0 5145 5146 0 5145 5147 0 5147 5146 0 5145 5163 0 5163 5147 0\n\t\t 5163 11381 0 11381 5147 0 10675 10789 0 10789 5148 0 5148 10675 0 5148 12617 0 12617 10675 0\n\t\t 5148 5151 0 5151 12617 0 5151 5117 0 5117 12617 0 5156 5117 0 5151 5156 0 5151 10780 0\n\t\t 10780 5156 0 10779 5148 0 5148 5153 0 5153 10779 0 5153 5154 0 5154 10779 0 10781 10779 0\n\t\t 5154 10781 0 10791 5153 0 5148 10791 0 10789 10791 0 5154 5158 0 5158 10781 0 11501 11521 0\n\t\t 11521 5156 0 5156 11501 0 10780 11501 0 13160 11502 0 11502 5152 0 5152 13160 0 5152 13154 0\n\t\t 13154 13160 0 10673 5160 0 5160 10790 0 10790 10673 0 10790 5161 0 5161 10673 0 5149 13164 0\n\t\t 13164 5162 0 5162 5149 0 5162 5155 0 5155 5149 0 12633 5142 0 5142 11349 0 5142 11351 0\n\t\t 11351 11349 0 11405 11351 0 5142 11405 0 5142 12600 0 12600 11405 0 11350 5165 0\n\t\t 5165 5168 0 5168 11350 0 5168 5169 0 5169 11350 0 5170 5168 0 5165 5170 0 5165 5166 0\n\t\t 5166 5170 0 11429 11405 0 12600 11429 0 12600 5137 0 5137 11429 0 11430 11429 0 5137 11430 0\n\t\t 5137 5133 0 5133 11430 0 5173 11430 0 5133 5173 0 5133 5174 0 5174 5173 0 5175 5173 0\n\t\t 5174 5175 0 5174 11564 0 11564 5175 0 5177 5175 0 11564 5177 0 11564 5127 0 5127 5177 0\n\t\t 5127 11522 0 11522 5177 0 11522 11500 0 11500 5177 0 11554 11499 0 11499 5180 0 5180 11554 0\n\t\t 5180 5181 0;\n\tsetAttr \".ed[17430:17595]\" 5181 11554 0 11445 11554 0 5181 11445 0 5157 5180 0\n\t\t 11499 5157 0 11499 5179 0 5179 5157 0 5172 11445 0 11445 5182 0 5182 5172 0 5181 5182 0\n\t\t 5182 5183 0 5183 5172 0 5171 5172 0 5183 5171 0 5183 5184 0 5184 5171 0 5166 5171 0\n\t\t 5184 5166 0 5184 5170 0 5139 5186 0 5186 5185 0 5185 5139 0 5185 5187 0 5187 5139 0\n\t\t 5185 5046 0 5046 5187 0 5046 5188 0 5188 5187 0 5046 13319 0 13319 5188 0 5216 5239 0\n\t\t 5239 5190 0 5190 5216 0 5190 10477 0 10477 5216 0 12795 5239 0 5216 12795 0 5216 5214 0\n\t\t 5214 12795 0 5190 5240 0 5240 10477 0 5240 5219 0 5219 10477 0 5240 5192 0 5192 5219 0\n\t\t 5192 10393 0 10393 5219 0 5192 5194 0 5194 10393 0 5194 10394 0 10394 10393 0 5194 13122 0\n\t\t 13122 10394 0 13122 5222 0 5222 10394 0 13033 5248 0 5248 5196 0 5196 13033 0 5196 10458 0\n\t\t 10458 13033 0 5196 5198 0 5198 10458 0 5198 10459 0 10459 10458 0 5214 10198 0 10198 12795 0\n\t\t 10198 5242 0 5242 12795 0 10620 5242 0 10198 10620 0 10198 10199 0 10199 10620 0\n\t\t 11256 5213 0 5213 12970 0 12970 11256 0 12970 12954 0 12954 11256 0 10091 5213 0\n\t\t 11256 10091 0 11256 11257 0 11257 10091 0 12970 5218 0 5218 12954 0 5218 10800 0\n\t\t 10800 12954 0 5218 10507 0 10507 10800 0 10507 10799 0 10799 10800 0 10507 10508 0\n\t\t 10508 10799 0 10508 12917 0 12917 10799 0 10508 10113 0 10113 12917 0 10113 5253 0\n\t\t 5253 12917 0 10113 10114 0 10114 5253 0 10114 10174 0 10174 5253 0 10114 10347 0\n\t\t 10347 10174 0 10347 10126 0 10126 10174 0 11257 11269 0 11269 10091 0 11269 10092 0\n\t\t 10092 10091 0 5209 10092 0 11269 5209 0 11269 11345 0 11345 5209 0 10127 10126 0\n\t\t 10347 10127 0 10347 5225 0 5225 10127 0 10318 10127 0 5225 10318 0 5225 12847 0 12847 10318 0\n\t\t 10219 5215 0 5215 10440 0 10440 10219 0 10440 10441 0 10441 10219 0 5202 10219 0\n\t\t 10441 5202 0 10441 5217 0 5217 5202 0 10540 5202 0 5217 10540 0 5217 10513 0 10513 10540 0\n\t\t 5220 10540 0 10513 5220 0 10513 5193 0 5193 5220 0 5221 5220 0 5193 5221 0 5193 5195 0\n\t\t 5195 5221 0 5205 5221 0 5195 5205 0 5195 13034 0 13034 5205 0 5206 5205 0 13034 5206 0\n\t\t 13034 5197 0 5197 5206 0 5223 5206 0 5197 5223 0 5197 5199 0 5199 5223 0 5199 5224 0\n\t\t 5224 5223 0 5224 10348 0 10348 5223 0 5224 5226 0 5226 10348 0 5226 5212 0 5212 10348 0\n\t\t 5227 5200 0 5200 10440 0 10440 5227 0;\n\tsetAttr \".ed[17596:17761]\" 5215 5227 0 5201 5200 0 5227 5201 0 5227 12881 0 12881 5201 0\n\t\t 10906 10005 0 10005 5228 0 5228 10906 0 5228 5252 0 5252 10906 0 5230 5228 0 10005 5230 0\n\t\t 10005 10006 0 10006 5230 0 5230 5232 0 5232 5228 0 5232 5233 0 5233 5228 0 9770 5228 0\n\t\t 5233 9770 0 5233 9771 0 9771 9770 0 9770 5262 0 5262 5228 0 5262 5260 0 5260 5228 0\n\t\t 9899 5228 0 5260 9899 0 5260 9900 0 9900 9899 0 9899 5257 0 5257 5228 0 5257 5255 0\n\t\t 5255 5228 0 5255 5252 0 5255 12786 0 12786 5252 0 12794 5268 0 5268 11319 0 11319 12794 0\n\t\t 11319 5190 0 5190 12794 0 5270 5268 0 12794 5270 0 12794 5191 0 5191 5270 0 11319 5271 0\n\t\t 5271 5190 0 5271 5240 0 5271 12282 0 12282 5240 0 12282 5192 0 5191 10619 0 10619 5270 0\n\t\t 10619 5243 0 5243 5270 0 5244 5243 0 10619 5244 0 10619 5245 0 5245 5244 0 12282 5100 0\n\t\t 5100 5192 0 5100 5194 0 5100 13122 0 5100 5246 0 5246 13122 0 5247 5249 0 5249 13121 0\n\t\t 13121 5247 0 13121 12227 0 12227 5247 0 5250 5249 0 5247 5250 0 5247 5251 0 5251 5250 0\n\t\t 10905 5238 0 5238 12918 0 12918 10905 0 12918 5207 0 5207 10905 0 5254 10905 0 5207 5254 0\n\t\t 5207 5208 0 5208 5254 0 5229 5254 0 5208 5229 0 5208 5210 0 5210 5229 0 5231 5229 0\n\t\t 5210 5231 0 5210 5211 0 5211 5231 0 5204 12918 0 5238 5204 0 5238 10827 0 10827 5204 0\n\t\t 5256 5204 0 10827 5256 0 10827 10828 0 10828 5256 0 5258 5256 0 10828 5258 0 10828 5236 0\n\t\t 5236 5258 0 5203 5258 0 5236 5203 0 5236 5237 0 5237 5203 0 5259 5203 0 5237 5259 0\n\t\t 5237 11296 0 11296 5259 0 5261 5259 0 11296 5261 0 11296 11297 0 11297 5261 0 5263 5261 0\n\t\t 11297 5263 0 11297 5234 0 5234 5263 0 5264 5263 0 5234 5264 0 5234 5235 0 5235 5264 0\n\t\t 5265 5267 0 5267 11320 0 11320 5265 0 11320 11044 0 11044 5265 0 5269 5265 0 11044 5269 0\n\t\t 11044 5270 0 5270 5269 0 11321 5266 0 5266 11346 0 11346 11321 0 11346 5272 0 5272 11321 0\n\t\t 12284 11321 0 5272 12284 0 5272 5275 0 5275 12284 0 5273 5269 0 5270 5273 0 5243 5273 0\n\t\t 5274 5273 0 5243 5274 0 5244 5274 0 5114 5241 0 5241 13209 0 13209 5114 0 13209 5080 0\n\t\t 5080 5114 0 13209 4728 0 4728 5080 0 12994 5080 0 12169 5301 0 5301 5280 0 5280 12169 0\n\t\t 5280 11132 0 11132 12169 0 12269 5301 0 12169 12269 0 12169 12471 0 12471 12269 0\n\t\t 5292 5293 0;\n\tsetAttr \".ed[17762:17927]\" 5293 11099 0 11099 5292 0 11099 11101 0 11101 5292 0\n\t\t 11100 9030 0 9030 5280 0 5280 11100 0 5301 11100 0 5280 5295 0 5295 11131 0 11131 5280 0\n\t\t 11131 11132 0 5295 5283 0 5283 11131 0 5283 5339 0 5339 11131 0 5283 12452 0 12452 5339 0\n\t\t 12452 5341 0 5341 5339 0 12452 5284 0 5284 5341 0 5284 11417 0 11417 5341 0 5284 5308 0\n\t\t 5308 11417 0 5308 11191 0 11191 11417 0 11192 11191 0 5308 11192 0 5308 5288 0 5288 11192 0\n\t\t 5288 5302 0 5302 11192 0 5302 5344 0 5344 11192 0 5289 5284 0 12452 5289 0 12452 12174 0\n\t\t 12174 5289 0 5289 5315 0 5315 5284 0 5315 5308 0 9028 9029 0 9029 9067 0 9067 9028 0\n\t\t 9067 5294 0 5294 9028 0 9030 5291 0 5291 5295 0 5295 9030 0 5291 5283 0 5291 5296 0\n\t\t 5296 5283 0 9047 9028 0 5294 9047 0 5296 9242 0 9242 5283 0 9242 12453 0 12453 5283 0\n\t\t 5294 5298 0 5298 9047 0 9244 9241 0 9241 9047 0 9047 9244 0 5298 9244 0 12498 5279 0\n\t\t 5279 5278 0 5278 12498 0 5278 5438 0 5438 12498 0 12268 11100 0 5301 12268 0 12269 12268 0\n\t\t 5288 8900 0 8900 5302 0 8900 5304 0 5304 5302 0 5305 8901 0 8901 5303 0 5303 5305 0\n\t\t 5303 5306 0 5306 5305 0 5316 5306 0 5303 5316 0 5303 5307 0 5307 5316 0 5308 8900 0\n\t\t 5308 9036 0 9036 8900 0 5309 5311 0 5311 8925 0 8925 5309 0 8925 5312 0 5312 5309 0\n\t\t 8925 8761 0 8761 5312 0 8761 8764 0 8764 5312 0 12174 8762 0 8762 5310 0 5310 12174 0\n\t\t 5310 5289 0 5310 8926 0 8926 5289 0 8926 5315 0 8926 5308 0 8926 9036 0 8926 8960 0\n\t\t 8960 9036 0 8960 12121 0 12121 9036 0 5299 5314 0 5314 8763 0 8763 5299 0 8763 5297 0\n\t\t 5297 5299 0 9243 5313 0 5313 5290 0 5290 9243 0 5290 5317 0 5317 9243 0 12823 12819 0\n\t\t 12819 11895 0 11895 12823 0 11895 12817 0 12817 12823 0 9955 8789 0 8789 5320 0 5320 9955 0\n\t\t 5320 5321 0 5321 9955 0 5321 5322 0 5322 9955 0 5322 9956 0 9956 9955 0 5324 5320 0\n\t\t 8789 5324 0 8789 8788 0 8788 5324 0 5325 5324 0 8788 5325 0 8788 9915 0 9915 5325 0\n\t\t 12818 9956 0 5322 12818 0 5322 4875 0 4875 12818 0 5327 5325 0 9915 5327 0 9915 9916 0\n\t\t 9916 5327 0 9916 12857 0 12857 5327 0 12857 12829 0 12829 5327 0 5318 5331 0 5331 11893 0\n\t\t 11893 5318 0 11893 11894 0 11894 5318 0 13287 11893 0 5331 13287 0 5331 5333 0 5333 13287 0\n\t\t 11881 13287 0;\n\tsetAttr \".ed[17928:18093]\" 5333 11881 0 5333 5335 0 5335 11881 0 11882 11881 0\n\t\t 5335 11882 0 5335 5337 0 5337 11882 0 5337 4887 0 4887 11882 0 4887 5364 0 5364 11882 0\n\t\t 9288 12170 0 12170 11133 0 11133 9288 0 11133 12163 0 12163 9288 0 11823 11824 0\n\t\t 11824 11849 0 11849 11823 0 11849 12068 0 12068 11823 0 12068 12069 0 12069 11823 0\n\t\t 12069 5281 0 5281 11823 0 11850 11849 0 11824 11850 0 11824 5285 0 5285 11850 0 5357 11850 0\n\t\t 5285 5357 0 5285 5286 0 5286 5357 0 5282 5281 0 12069 5282 0 12069 5338 0 5338 5282 0\n\t\t 12008 5357 0 5286 12008 0 5286 5287 0 5287 12008 0 5287 13249 0 13249 12008 0 13249 12057 0\n\t\t 12057 12008 0 9286 12470 0 12470 5276 0 5276 9286 0 5276 9287 0 9287 9286 0 5348 12470 0\n\t\t 9286 5348 0 9286 9292 0 9292 5348 0 9292 9293 0 9293 5348 0 9293 12455 0 12455 5348 0\n\t\t 12404 5348 0 12455 12404 0 12455 5397 0 5397 12404 0 12403 12470 0 5348 12403 0 12404 12403 0\n\t\t 11924 12455 0 9293 11924 0 9293 5363 0 5363 11924 0 5363 11953 0 11953 11924 0 11953 11925 0\n\t\t 11925 11924 0 12858 5345 0 5345 4811 0 4811 12858 0 4811 5329 0 5329 12858 0 5328 5355 0\n\t\t 5355 12058 0 12058 5328 0 12058 5356 0 5356 5328 0 5328 5326 0 5326 5355 0 5326 12009 0\n\t\t 12009 5355 0 5326 5358 0 5358 12009 0 5358 5343 0 5343 12009 0 5358 5359 0 5359 5343 0\n\t\t 5359 5340 0 5340 5343 0 5359 5319 0 5319 5340 0 5319 5360 0 5360 5340 0 5319 5323 0\n\t\t 5323 5360 0 5323 5342 0 5342 5360 0 5323 5361 0 5361 5342 0 5361 12164 0 12164 5342 0\n\t\t 5361 5332 0 5332 12164 0 5332 5347 0 5347 12164 0 5332 5330 0 5330 5347 0 5330 5346 0\n\t\t 5346 5347 0 5330 5362 0 5362 5346 0 5362 5349 0 5349 5346 0 5362 5334 0 5334 5349 0\n\t\t 5334 5350 0 5350 5349 0 12467 5350 0 5334 12467 0 5334 5336 0 5336 12467 0 5336 12812 0\n\t\t 12812 12467 0 12812 11954 0 11954 12467 0 5365 5366 0 5366 9391 0 9391 5365 0 9391 5404 0\n\t\t 5404 5365 0 5404 5402 0 5402 5365 0 5402 5367 0 5367 5365 0 5368 5367 0 5402 5368 0\n\t\t 5402 12569 0 12569 5368 0 5370 5368 0 12569 5370 0 12569 5371 0 5371 5370 0 5372 5370 0\n\t\t 5371 5372 0 5371 5373 0 5373 5372 0 5374 5371 0 12569 5374 0 12569 5412 0 5412 5374 0\n\t\t 5375 5373 0 5371 5375 0 5374 5375 0 5376 9391 0 5366 5376 0 5376 5428 0 5428 9391 0\n\t\t 5428 9392 0 9392 9391 0 5376 5377 0;\n\tsetAttr \".ed[18094:18259]\" 5377 5428 0 5377 11392 0 11392 5428 0 5379 5377 0 5376 5379 0\n\t\t 5376 5380 0 5380 5379 0 5366 5380 0 5377 5381 0 5381 11392 0 5381 11393 0 11393 11392 0\n\t\t 5381 5383 0 5383 11393 0 5383 5424 0 5424 11393 0 5384 5383 0 5381 5384 0 5381 5385 0\n\t\t 5385 5384 0 5377 5385 0 5379 5385 0 5383 5386 0 5386 5424 0 5386 11180 0 11180 5424 0\n\t\t 5386 5388 0 5388 11180 0 5388 11181 0 11181 11180 0 12402 5388 0 5386 12402 0 12402 5351 0\n\t\t 5351 5388 0 5351 5391 0 5391 5388 0 5391 11181 0 5351 9386 0 9386 5391 0 9386 5395 0\n\t\t 5395 5391 0 5386 5392 0 5392 12402 0 5383 5392 0 5384 5392 0 5391 5416 0 5416 11181 0\n\t\t 5395 12437 0 12437 5391 0 12437 5416 0 9344 5396 0 5396 9384 0 9384 9344 0 9384 9385 0\n\t\t 9385 9344 0 5393 9384 0 5396 5393 0 5396 9355 0 9355 5393 0 5399 9345 0 9345 5394 0\n\t\t 5394 5399 0 9354 9345 0 5399 9354 0 5394 5400 0 5400 5399 0 5399 5420 0 5420 9354 0\n\t\t 5401 5413 0 5413 12570 0 12570 5401 0 12570 9528 0 9528 5401 0 9463 5401 0 9528 9463 0\n\t\t 9528 9529 0 9529 9463 0 9529 5409 0 5409 9463 0 5409 9506 0 9506 9463 0 5406 5401 0\n\t\t 5401 5403 0 5403 5406 0 5403 5407 0 5407 5406 0 5403 9505 0 9505 5407 0 12575 5413 0\n\t\t 5401 12575 0 5406 12575 0 9505 12532 0 12532 5407 0 9920 9506 0 5409 9920 0 5409 9393 0\n\t\t 9393 9920 0 5405 9918 0 9918 5432 0 5432 5405 0 5432 5411 0 5411 5405 0 12568 5369 0\n\t\t 5369 9421 0 9421 12568 0 9421 9423 0 9423 12568 0 5415 5414 0 5414 9422 0 9422 5415 0\n\t\t 9422 5408 0 5408 5415 0 12409 5393 0 9355 12409 0 9355 5417 0 5417 12409 0 5417 9443 0\n\t\t 9443 12409 0 9443 5389 0 5389 12409 0 5419 9493 0 9493 5398 0 5398 5419 0 5398 12472 0\n\t\t 12472 5419 0 5421 5418 0 5418 9493 0 9493 5421 0 5419 5421 0 9443 5422 0 5422 5389 0\n\t\t 5422 5387 0 5387 5389 0 5422 5423 0 5423 5387 0 5423 12900 0 12900 5387 0 5423 9934 0\n\t\t 9934 12900 0 9934 5382 0 5382 12900 0 9934 9935 0 9935 5382 0 9935 5378 0 5378 5382 0\n\t\t 9935 9924 0 9924 5378 0 9924 12837 0 12837 5378 0 5410 12837 0 9924 5410 0 9924 9919 0\n\t\t 9919 5410 0 5430 5427 0 5427 5426 0 5426 5430 0 5426 5431 0 5431 5430 0 5426 5425 0\n\t\t 5425 5431 0 9921 5429 0 5429 5427 0 5427 9921 0 5430 9921 0 5433 5425 0 5425 10018 0;\n\tsetAttr \".ed[18260:18425]\" 10018 5433 0 5433 5431 0 10018 5434 0 5434 5433 0 10018 9444 0\n\t\t 9444 5434 0 9444 5435 0 5435 5434 0 9444 5418 0 5418 5435 0 5421 5435 0 5390 5436 0\n\t\t 5436 5277 0 5277 5390 0 5277 5437 0 5437 5390 0 12267 5277 0 5436 12267 0 5436 5439 0\n\t\t 5439 12267 0 5439 5300 0 5300 12267 0 9638 5461 0 5461 5441 0 5441 9638 0 5441 5483 0\n\t\t 5483 9638 0 5483 10207 0 10207 9638 0 10207 9639 0 9639 9638 0 5487 5441 0 5461 5487 0\n\t\t 5461 12713 0 12713 5487 0 5488 5487 0 12713 5488 0 12713 11681 0 11681 5488 0 5492 5488 0\n\t\t 11681 5492 0 11681 11682 0 11682 5492 0 13131 5492 0 11682 13131 0 11682 11687 0\n\t\t 11687 13131 0 5444 13132 0 13132 5467 0 5467 5444 0 5467 10538 0 10538 5444 0 5446 5444 0\n\t\t 10538 5446 0 10538 10539 0 10539 5446 0 10740 9639 0 10207 10740 0 10207 10230 0\n\t\t 10230 10740 0 10230 10798 0 10798 10740 0 10798 5472 0 5472 10740 0 9723 5507 0 5507 10256 0\n\t\t 10256 9723 0 10256 10387 0 10387 9723 0 10387 10388 0 10388 9723 0 10388 5511 0 5511 9723 0\n\t\t 10257 10256 0 5507 10257 0 5507 12783 0 12783 10257 0 12988 10257 0 12783 12988 0\n\t\t 12783 5505 0 5505 12988 0 5464 12988 0 5505 5464 0 5505 10509 0 10509 5464 0 5466 5464 0\n\t\t 10509 5466 0 10509 13039 0 13039 5466 0 13058 5466 0 13039 13058 0 13039 5500 0 5500 13058 0\n\t\t 5468 13058 0 5500 5468 0 5500 13054 0 13054 5468 0 12772 5511 0 10388 12772 0 10388 10128 0\n\t\t 10128 12772 0 10128 5473 0 5473 12772 0 5473 5514 0 5514 12772 0 13054 5502 0 5502 5468 0\n\t\t 5502 10338 0 10338 5468 0 5502 13020 0 13020 10338 0 13020 10339 0 10339 10338 0\n\t\t 5458 5440 0 5440 5442 0 5442 5458 0 5442 5459 0 5459 5458 0 5458 5460 0 5460 5440 0\n\t\t 5460 12712 0 12712 5440 0 5460 5462 0 5462 12712 0 5462 5443 0 5443 12712 0 5462 5450 0\n\t\t 5450 5443 0 5450 5463 0 5463 5443 0 5450 11709 0 11709 5463 0 11709 5465 0 5465 5463 0\n\t\t 11709 11710 0 11710 5465 0 11710 11688 0 11688 5465 0 11710 5452 0 5452 11688 0 5452 5445 0\n\t\t 5445 11688 0 5452 13059 0 13059 5445 0 13059 5447 0 5447 5445 0 5469 5447 0 13059 5469 0\n\t\t 13059 5455 0 5455 5469 0 5470 5469 0 5455 5470 0 5455 5457 0 5457 5470 0 5471 5459 0\n\t\t 5442 5471 0 5442 5448 0 5448 5471 0 5448 12935 0 12935 5471 0 12935 10129 0 10129 5471 0\n\t\t 12920 5499 0 5499 5475 0 5475 12920 0 5475 5501 0;\n\tsetAttr \".ed[18426:18591]\" 5501 12920 0 5475 5476 0 5476 5501 0 5476 12922 0 12922 5501 0\n\t\t 5478 5476 0 5475 5478 0 5475 5479 0 5479 5478 0 5475 9719 0 9719 5479 0 9719 12778 0\n\t\t 12778 5479 0 9718 9719 0 5475 9718 0 5475 5510 0 5510 9718 0 5475 5506 0 5506 5510 0\n\t\t 5506 9773 0 9773 5510 0 13080 5506 0 5475 13080 0 5475 5504 0 5504 13080 0 5499 5504 0\n\t\t 5499 12953 0 12953 5504 0 10206 5441 0 5441 12787 0 12787 10206 0 12787 5516 0 5516 10206 0\n\t\t 5516 5485 0 5485 10206 0 5485 5486 0 5486 10206 0 5519 12787 0 5441 5519 0 5487 5519 0\n\t\t 11927 5519 0 5487 11927 0 5488 11927 0 5489 5486 0 5485 5489 0 5485 5490 0 5490 5489 0\n\t\t 5490 5523 0 5523 5489 0 5523 5491 0 5491 5489 0 5352 11927 0 5488 5352 0 5492 5352 0\n\t\t 13131 5352 0 13131 5495 0 5495 5352 0 5494 12454 0 12454 5493 0 5493 5494 0 5493 5496 0\n\t\t 5496 5494 0 5496 5497 0 5497 5494 0 5497 5498 0 5498 5494 0 12929 13053 0 13053 5451 0\n\t\t 5451 12929 0 5451 5482 0 5482 12929 0 12929 5474 0 5474 13053 0 5474 5453 0 5453 13053 0\n\t\t 5474 12921 0 12921 5453 0 12921 13019 0 13019 5453 0 12921 5477 0 5477 13019 0 5477 5456 0\n\t\t 5456 13019 0 5451 5503 0 5503 5482 0 5503 13057 0 13057 5482 0 5503 10510 0 10510 13057 0\n\t\t 10510 5481 0 5481 13057 0 10510 5449 0 5449 5481 0 5449 9772 0 9772 5481 0 5449 9774 0\n\t\t 9774 9772 0 9774 5508 0 5508 9772 0 9774 5509 0 5509 5508 0 5509 9750 0 9750 5508 0\n\t\t 5509 9724 0 9724 9750 0 9724 5512 0 5512 9750 0 9724 5454 0 5454 5512 0 5454 5513 0\n\t\t 5513 5512 0 5454 12836 0 12836 5513 0 12836 5480 0 5480 5513 0 5515 12789 0 12789 12788 0\n\t\t 12788 5515 0 12788 5517 0 5517 5515 0 5515 5518 0 5518 12789 0 5518 5485 0 5485 12789 0\n\t\t 12804 5484 0 5484 12792 0 12792 12804 0 12792 5520 0 5520 12804 0 12792 11926 0 11926 5520 0\n\t\t 11926 5524 0 5524 5520 0 5518 5521 0 5521 5485 0 5521 5490 0 5521 5522 0 5522 5490 0\n\t\t 5522 5523 0 5353 12813 0 12813 12821 0 12821 5353 0 12821 5354 0 5354 5353 0 4890 12821 0\n\t\t 12813 4890 0 12813 12400 0 9542 9544 0 9544 12610 0 12610 9542 0 12610 9558 0 9558 9542 0\n\t\t 5535 9567 0 9567 9566 0 9566 5535 0 9566 9682 0 9682 5535 0 9566 9683 0 9683 9682 0\n\t\t 9566 5532 0 5532 9683 0 5532 5543 0 5543 9683 0 5533 12031 0 12031 9568 0 9568 5533 0;\n\tsetAttr \".ed[18592:18757]\" 9568 12673 0 12673 5533 0 5561 12031 0 5533 5561 0 5533 5550 0\n\t\t 5550 5561 0 12618 5540 0 5540 12611 0 12611 12618 0 12611 9545 0 9545 12618 0 10953 10951 0\n\t\t 10951 9559 0 9559 10953 0 9559 5536 0 5536 10953 0 9543 5527 0 5527 10952 0 10952 9543 0\n\t\t 10952 12563 0 12563 9543 0 5525 12564 0 12564 12619 0 12619 5525 0 12619 5526 0 5526 5525 0\n\t\t 5537 5539 0 5539 5529 0 5529 5537 0 5529 5534 0 5534 5537 0 5528 5529 0 5539 5528 0\n\t\t 5539 10954 0 10954 5528 0 5534 5541 0 5541 5537 0 5541 5528 0 10954 5541 0 5534 12032 0\n\t\t 12032 5541 0 12032 5542 0 5542 5541 0 5541 5538 0 5538 5537 0 10954 5538 0 5562 5530 0\n\t\t 5530 9684 0 9684 5562 0 9684 8952 0 8952 5562 0 5564 5565 0 5565 5531 0 5531 5564 0\n\t\t 5531 12765 0 12765 5564 0 13268 11629 0 11629 11631 0 11631 13268 0 11631 13270 0\n\t\t 13270 13268 0 12219 5563 0 5563 13256 0 13256 12219 0 13256 13246 0 13246 12219 0\n\t\t 13246 13247 0 13247 12219 0 5547 13256 0 5563 5547 0 5563 5566 0 5566 5547 0 5548 5546 0\n\t\t 5546 5556 0 5556 5548 0 5556 12049 0 12049 5548 0 12049 5561 0 5561 5548 0 5550 5548 0\n\t\t 13285 11632 0 11632 11630 0 11630 13285 0 11630 5559 0 5559 13285 0 11476 11478 0\n\t\t 11478 5551 0 5551 11476 0 5551 13269 0 13269 11476 0 13271 11545 0 11545 11477 0\n\t\t 11477 13271 0 11477 5553 0 5553 13271 0 5554 5552 0 5552 5555 0 5555 5554 0 5555 5557 0\n\t\t 5557 5554 0 13245 5558 0 5558 11544 0 11544 13245 0 11544 5549 0 5549 13245 0 13245 5545 0\n\t\t 5545 5558 0 5545 11479 0 11479 5558 0 5560 5549 0 11544 5560 0 5545 5560 0 5560 11479 0\n\t\t 12032 5549 0 5560 12032 0 5560 5542 0 11544 13284 0 13284 5560 0 13284 11479 0 8952 8950 0\n\t\t 8950 5562 0 8950 5544 0 5544 5562 0 8951 5565 0 5564 8951 0 5564 8967 0 8967 8951 0\n\t\t 5567 5596 0 5596 12341 0 12341 5567 0 12341 5569 0 5569 5567 0 12341 5597 0 5597 5569 0\n\t\t 5597 5570 0 5570 5569 0 5597 8985 0 8985 5570 0 8985 5572 0 5572 5570 0 8985 8986 0\n\t\t 8986 5572 0 8986 5574 0 5574 5572 0 8986 9255 0 9255 5574 0 9255 5576 0 5576 5574 0\n\t\t 5577 5576 0 9255 5577 0 9255 5603 0 5603 5577 0 5603 5604 0 5604 5577 0 5604 5578 0\n\t\t 5578 5577 0 5579 5578 0 5604 5579 0 5604 12448 0 12448 5579 0 12448 5607 0 5607 5579 0\n\t\t 5607 5581 0 5581 5579 0 5582 5581 0 5607 5582 0;\n\tsetAttr \".ed[18758:18923]\" 5607 11820 0 11820 5582 0 11820 11826 0 11826 5582 0\n\t\t 11826 12410 0 12410 5582 0 5583 11827 0 11827 11839 0 11839 5583 0 11839 5584 0 5584 5583 0\n\t\t 11839 5615 0 5615 5584 0 5615 5585 0 5585 5584 0 5615 12072 0 12072 5585 0 12072 5587 0\n\t\t 5587 5585 0 12072 5619 0 5619 5587 0 5619 5588 0 5588 5587 0 5619 8768 0 8768 5588 0\n\t\t 8768 8770 0 8770 5588 0 5591 5592 0 5592 5621 0 5621 5591 0 5621 12126 0 12126 5591 0\n\t\t 8769 5621 0 5592 8769 0 5592 5590 0 5590 8769 0 5594 5595 0 5595 5568 0 5568 5594 0\n\t\t 5568 12356 0 12356 5594 0 12324 5568 0 5595 12324 0 5595 5598 0 5598 12324 0 5571 12324 0\n\t\t 5598 5571 0 5598 5599 0 5599 5571 0 5573 5571 0 5599 5573 0 5599 5600 0 5600 5573 0\n\t\t 5575 5573 0 5600 5575 0 5600 5601 0 5601 5575 0 5601 5602 0 5602 5575 0 5602 11821 0\n\t\t 11821 5575 0 11822 11821 0 5602 11822 0 5602 5605 0 5605 11822 0 5580 11822 0 5605 5580 0\n\t\t 5605 5606 0 5606 5580 0 11819 5580 0 5606 11819 0 5606 5608 0 5608 11819 0 5609 11819 0\n\t\t 5608 5609 0 5608 5610 0 5610 5609 0 5611 5609 0 5610 5611 0 5610 5612 0 5612 5611 0\n\t\t 5613 5611 0 5612 5613 0 5612 5614 0 5614 5613 0 11901 5613 0 5614 11901 0 5614 5616 0\n\t\t 5616 11901 0 5586 11901 0 5616 5586 0 5616 5617 0 5617 5586 0 5617 5618 0 5618 5586 0\n\t\t 5618 12064 0 12064 5586 0 5589 12064 0 5618 5589 0 5618 5620 0 5620 5589 0 12063 5589 0\n\t\t 5620 12063 0 5620 5622 0 5622 12063 0 5622 5623 0 5623 12063 0 5623 5593 0 5593 12063 0\n\t\t 5624 5625 0 5625 5650 0 5650 5624 0 5650 13276 0 13276 5624 0 5652 5650 0 5625 5652 0\n\t\t 5625 5627 0 5627 5652 0 13274 5652 0 5627 13274 0 5627 5629 0 5629 13274 0 5655 13274 0\n\t\t 5629 5655 0 5629 5630 0 5630 5655 0 5657 5655 0 5630 5657 0 5630 5631 0 5631 5657 0\n\t\t 5631 5632 0 5632 5657 0 5632 11533 0 11533 5657 0 9219 11533 0 5632 9219 0 5632 5634 0\n\t\t 5634 9219 0 5634 5635 0 5635 9219 0 5635 9220 0 9220 9219 0 9311 9220 0 5635 9311 0\n\t\t 5635 5638 0 5638 9311 0 5638 5639 0 5639 9311 0 5639 11643 0 11643 9311 0 11645 11643 0\n\t\t 5639 11645 0 5639 12485 0 12485 11645 0 11606 5666 0 5666 5640 0 5640 11606 0 5640 5641 0\n\t\t 5641 11606 0 11607 11606 0 5641 11607 0 5641 5642 0 5642 11607 0 5642 5643 0 5643 11607 0\n\t\t 5643 11622 0;\n\tsetAttr \".ed[18924:19089]\" 11622 11607 0 5643 5644 0 5644 11622 0 5644 11640 0\n\t\t 11640 11622 0 5644 12236 0 12236 11640 0 12236 11642 0 11642 11640 0 5680 12214 0\n\t\t 12214 5646 0 5646 5680 0 5646 5648 0 5648 5680 0 12214 5676 0 5676 5646 0 5676 5645 0\n\t\t 5645 5646 0 5649 5626 0 5626 11389 0 11389 5649 0 11389 5651 0 5651 5649 0 11389 11390 0\n\t\t 11390 5651 0 11390 5653 0 5653 5651 0 11390 5628 0 5628 5653 0 5628 5654 0 5654 5653 0\n\t\t 5628 11527 0 11527 5654 0 11527 5656 0 5656 5654 0 11527 11528 0 11528 5656 0 11528 5658 0\n\t\t 5658 5656 0 5659 5658 0 11528 5659 0 11528 5660 0 5660 5659 0 5660 5633 0 5633 5659 0\n\t\t 5633 5661 0 5661 5659 0 5633 5636 0 5636 5661 0 5636 5662 0 5662 5661 0 5636 5637 0\n\t\t 5637 5662 0 5637 5663 0 5663 5662 0 5637 5664 0 5664 5663 0 5664 5665 0 5665 5663 0\n\t\t 5664 11644 0 11644 5665 0 11644 5667 0 5667 5665 0 11644 5668 0 5668 5667 0 5668 5669 0\n\t\t 5669 5667 0 5668 5670 0 5670 5669 0 5670 5671 0 5671 5669 0 5670 5672 0 5672 5671 0\n\t\t 5672 5673 0 5673 5671 0 5672 5674 0 5674 5673 0 5674 5675 0 5675 5673 0 5674 11641 0\n\t\t 11641 5675 0 11641 5677 0 5677 5675 0 11641 5647 0 5647 5677 0 5647 5678 0 5678 5677 0\n\t\t 5679 5678 0 5647 5679 0 5647 12213 0 12213 5679 0 5681 5683 0 5683 5682 0 5682 5681 0\n\t\t 5682 5684 0 5684 5681 0 5684 5685 0 5685 5681 0 5685 5686 0 5686 5681 0 5686 5687 0\n\t\t 5687 5681 0 5687 5688 0 5688 5681 0 5688 5689 0 5689 5681 0 5689 5690 0 5690 5681 0\n\t\t 5690 5691 0 5691 5681 0 5691 5692 0 5692 5681 0 5692 5693 0 5693 5681 0 5693 5694 0\n\t\t 5694 5681 0 5694 5695 0 5695 5681 0 5695 5696 0 5696 5681 0 5696 5697 0 5697 5681 0\n\t\t 5697 5683 0 5698 5685 0 5684 5698 0 5684 5699 0 5699 5698 0 5698 5700 0 5700 5685 0\n\t\t 5700 5686 0 5700 5701 0 5701 5686 0 5701 5687 0 5701 5702 0 5702 5687 0 5702 5688 0\n\t\t 5702 5703 0 5703 5688 0 5703 5689 0 5703 5704 0 5704 5689 0 5704 5690 0 5704 5705 0\n\t\t 5705 5690 0 5705 5691 0 5705 5706 0 5706 5691 0 5706 5692 0 5706 5707 0 5707 5692 0\n\t\t 5707 5693 0 5707 5708 0 5708 5693 0 5708 5694 0 5708 5709 0 5709 5694 0 5709 5695 0\n\t\t 5709 5710 0 5710 5695 0 5710 5696 0 5710 5711 0 5711 5696 0 5711 5697 0 5711 5712 0\n\t\t 5712 5697 0 5712 5683 0;\n\tsetAttr \".ed[19090:19255]\" 5712 5713 0 5713 5683 0 5713 5682 0 5713 5699 0 5699 5682 0\n\t\t 5714 5713 0 5712 5714 0 5712 5715 0 5715 5714 0 5711 5715 0 5714 5716 0 5716 5713 0\n\t\t 5716 5699 0 5716 5717 0 5717 5699 0 5717 5698 0 5717 5718 0 5718 5698 0 5718 5700 0\n\t\t 5718 5719 0 5719 5700 0 5719 5701 0 5719 5720 0 5720 5701 0 5720 5702 0 5720 5721 0\n\t\t 5721 5702 0 5721 5703 0 5721 5722 0 5722 5703 0 5722 5704 0 5722 5723 0 5723 5704 0\n\t\t 5723 5705 0 5723 5724 0 5724 5705 0 5724 5706 0 5724 5725 0 5725 5706 0 5725 5707 0\n\t\t 5725 5726 0 5726 5707 0 5726 5708 0 5726 5727 0 5727 5708 0 5727 5709 0 5727 5728 0\n\t\t 5728 5709 0 5728 5710 0 5728 5729 0 5729 5710 0 5729 5711 0 5729 5715 0 5730 5732 0\n\t\t 5732 5731 0 5731 5730 0 5730 5733 0 5733 5732 0 5730 5734 0 5734 5733 0 5730 5735 0\n\t\t 5735 5734 0 5730 5736 0 5736 5735 0 5730 5737 0 5737 5736 0 5730 5738 0 5738 5737 0\n\t\t 5730 5739 0 5739 5738 0 5730 5740 0 5740 5739 0 5730 5741 0 5741 5740 0 5730 5742 0\n\t\t 5742 5741 0 5730 5743 0 5743 5742 0 5730 5744 0 5744 5743 0 5730 5745 0 5745 5744 0\n\t\t 5730 5746 0 5746 5745 0 5731 5746 0 5734 5747 0 5747 5733 0 5735 5748 0 5748 5734 0\n\t\t 5748 5747 0 5737 5749 0 5749 5736 0 5738 5750 0 5750 5737 0 5750 5749 0 5740 5751 0\n\t\t 5751 5739 0 5741 5752 0 5752 5740 0 5752 5751 0 5743 5753 0 5753 5742 0 5744 5754 0\n\t\t 5754 5743 0 5754 5753 0 5746 5755 0 5755 5745 0 5731 5756 0 5756 5746 0 5757 5756 0\n\t\t 5731 5757 0 5732 5757 0 5758 5757 0 5732 5758 0 5733 5758 0 5747 5758 0 5756 5755 0\n\t\t 5757 5759 0 5759 5756 0 5758 5759 0 5759 5760 0 5760 5756 0 5758 5761 0 5761 5759 0\n\t\t 5747 5761 0 5747 5762 0 5762 5761 0 5748 5762 0 5748 5763 0 5763 5762 0 5748 5764 0\n\t\t 5764 5763 0 5735 5764 0 5736 5764 0 5749 5764 0 5764 5765 0 5765 5763 0 5749 5765 0\n\t\t 5749 5766 0 5766 5765 0 5750 5766 0 5750 5767 0 5767 5766 0 5750 5768 0 5768 5767 0\n\t\t 5738 5768 0 5739 5768 0 5751 5768 0 5768 5769 0 5769 5767 0 5751 5769 0 5751 5770 0\n\t\t 5770 5769 0 5752 5770 0 5752 5771 0 5771 5770 0 5752 5772 0 5772 5771 0 5741 5772 0\n\t\t 5742 5772 0 5753 5772 0 5772 5773 0 5773 5771 0 5753 5773 0 5753 5774 0 5774 5773 0;\n\tsetAttr \".ed[19256:19421]\" 5754 5774 0 5754 5775 0 5775 5774 0 5754 5776 0 5776 5775 0\n\t\t 5744 5776 0 5745 5776 0 5755 5776 0 5776 5777 0 5777 5775 0 5755 5777 0 5755 5778 0\n\t\t 5778 5777 0 5756 5778 0 5760 5778 0 10649 5781 0 5781 10667 0 10667 10649 0 10667 10660 0\n\t\t 10660 10649 0 5781 11950 0 11950 10667 0 5781 5783 0 5783 11950 0 5783 12423 0 5784 12423 0\n\t\t 5783 5784 0 5783 2939 0 2939 5784 0 10752 2939 0 5783 10752 0 5783 5786 0 5786 10752 0\n\t\t 11952 5787 0 5787 10669 0 10669 11952 0 5796 5779 0 5779 5782 0 5782 5796 0 5782 12035 0\n\t\t 12035 5796 0 5796 10160 0 10160 5779 0 10160 10650 0 10650 5779 0 10160 12024 0 12024 10650 0\n\t\t 12024 5785 0 5785 10650 0 10649 5786 0 5786 10914 0 10914 10649 0 12937 10914 0 5786 12937 0\n\t\t 5783 12937 0 10096 12937 0 5783 10096 0 5781 10096 0 10916 10096 0 5781 10916 0 10914 10916 0\n\t\t 10916 10649 0 10098 10213 0 10213 10211 0 10211 10098 0 10211 12939 0 12939 10098 0\n\t\t 10212 10214 0 10214 10917 0 10917 10212 0 10917 10915 0 10915 10212 0 12938 5790 0\n\t\t 5790 5788 0 5788 12938 0 5788 12936 0 12936 12938 0 10097 5793 0 5793 5792 0 5792 10097 0\n\t\t 5792 10095 0 10095 10097 0 5791 5795 0 5795 5794 0 5794 5791 0 5794 5789 0 5789 5791 0\n\t\t 10159 2913 0 2913 12909 0 12909 10159 0 12909 5797 0 5797 10159 0 11336 5797 0 12909 11336 0\n\t\t 5798 5797 0 11336 5798 0 12598 5798 0 12598 5799 0 5799 5798 0 5799 3044 0 3044 5798 0\n\t\t 3044 3051 0 3051 5798 0 3051 5800 0 5800 5798 0 12910 5801 0 5801 11337 0 11337 12910 0\n\t\t 12961 5800 0 5800 10159 0 10159 12961 0 10159 12967 0 12967 12961 0 5797 12967 0\n\t\t 10327 5798 0 5800 10327 0 12961 10327 0 10309 5797 0 5798 10309 0 10327 10309 0 10309 12967 0\n\t\t 10307 13004 0 13004 11711 0 11711 10307 0 11711 11713 0 11713 10307 0 11712 5806 0\n\t\t 5806 12968 0 12968 11712 0 12968 11714 0 11714 11712 0 13003 5808 0 5808 12960 0\n\t\t 12960 13003 0 12960 5803 0 5803 13003 0 10306 10308 0 10308 10326 0 10326 10306 0\n\t\t 10326 5805 0 5805 10306 0 5804 5802 0 5802 5809 0 5809 5804 0 5809 5807 0 5807 5804 0\n\t\t 13028 12625 0 12625 6132 0 6132 13028 0 6132 6203 0 6203 13028 0 6125 12625 0 13028 6125 0\n\t\t 13028 11743 0 11743 6125 0 13083 6125 0 11743 13083 0 11743 11741 0 11741 13083 0\n\t\t 10623 13083 0 11741 10623 0 11741 11742 0 11742 10623 0 10621 10623 0 11742 10621 0\n\t\t 11742 11750 0;\n\tsetAttr \".ed[19422:19587]\" 11750 10621 0 10705 10621 0 11750 10705 0 11750 13159 0\n\t\t 13159 10705 0 10666 10705 0 13159 10666 0 13159 6211 0 6211 10666 0 11851 6203 0\n\t\t 6132 11851 0 6132 10793 0 10793 11851 0 10624 11851 0 10793 10624 0 10624 10625 0\n\t\t 10625 11851 0 10793 10562 0 10562 10624 0 10562 10563 0 10563 10624 0 10563 10666 0\n\t\t 6211 10563 0 10563 12586 0 12586 10624 0 6211 9533 0 9533 10563 0 9533 12586 0 10535 5821 0\n\t\t 5821 5945 0 5945 10535 0 5945 5941 0 5941 10535 0 5822 10535 0 5941 5822 0 5941 10681 0\n\t\t 10681 5822 0 5821 10364 0 10364 5945 0 10364 5946 0 5946 5945 0 5825 5824 0 5824 10561 0\n\t\t 10561 5825 0 10561 5826 0 5826 5825 0 5827 5825 0 5826 5827 0 5826 6200 0 6200 5827 0\n\t\t 5828 5820 0 5820 5822 0 5822 5828 0 5828 5826 0 10561 5828 0 10561 5820 0 5822 5829 0\n\t\t 5829 5828 0 5829 5830 0 5830 5828 0 5831 5830 0 5829 5831 0 5829 5832 0 5832 5831 0\n\t\t 5822 5832 0 5832 5833 0 5833 5831 0 5833 5834 0 5834 5831 0 5833 5835 0 5835 5834 0\n\t\t 5836 5835 0 5833 5836 0 5833 5837 0 5837 5836 0 5832 5837 0 5835 6055 0 6055 5834 0\n\t\t 5832 5838 0 5838 5837 0 5838 10682 0 10682 5837 0 10682 5935 0 5935 5837 0 5935 5836 0\n\t\t 5935 5840 0 5840 5836 0 5841 9628 0 9628 9601 0 9601 5841 0 9600 5842 0 5842 9609 0\n\t\t 9609 9600 0 6012 9609 0 5842 6012 0 5842 5929 0 5929 6012 0 5822 5838 0 12653 6012 0\n\t\t 5929 12653 0 5929 12111 0 12111 12653 0 6024 12653 0 12111 6024 0 12111 12102 0 12102 6024 0\n\t\t 12102 5967 0 5967 6024 0 10681 5838 0 10681 10682 0 5844 5834 0 6055 5844 0 6055 5845 0\n\t\t 5845 5844 0 5846 5844 0 5845 5846 0 5845 6051 0 6051 5846 0 5846 5847 0 5847 5844 0\n\t\t 5844 9987 0 9987 5834 0 9987 5831 0 9987 5848 0 5848 5831 0 5848 5830 0 5848 5849 0\n\t\t 5849 5830 0 5849 5850 0 5850 5830 0 5850 5828 0 5850 5826 0 5850 6200 0 5851 6200 0\n\t\t 5850 5851 0 5849 5851 0 5851 6199 0 6199 6200 0 9531 12579 0 12579 5853 0 5853 9531 0\n\t\t 5853 5854 0 5854 9531 0 5854 5855 0 5855 9531 0 5856 5854 0 5853 5856 0 5856 5857 0\n\t\t 5857 5854 0 5858 5857 0 5856 5858 0 5856 5859 0 5859 5858 0 5859 5860 0 5860 5858 0\n\t\t 5860 5861 0 5861 5858 0 5856 5862 0 5862 5859 0 5853 5862 0 5862 5863 0 5863 5859 0\n\t\t 5863 5860 0 5863 5864 0 5864 5860 0 5858 9415 0;\n\tsetAttr \".ed[19588:19753]\" 9415 5857 0 9415 9402 0 9402 5857 0 12551 9415 0 5858 12551 0\n\t\t 5861 12551 0 5857 5867 0 5867 5854 0 9402 5867 0 9402 9403 0 9403 5867 0 9403 12755 0\n\t\t 12755 5867 0 12755 12585 0 12585 5867 0 12585 5854 0 12585 5855 0 9532 9531 0 5855 9532 0\n\t\t 12585 9532 0 12578 5852 0 5852 5872 0 5872 12578 0 5872 5959 0 5959 12578 0 9459 5959 0\n\t\t 5872 9459 0 5872 6210 0 6210 9459 0 9460 9459 0 6210 9460 0 6210 6208 0 6208 9460 0\n\t\t 12386 5951 0 5951 9217 0 9217 12386 0 9217 12431 0 12431 12386 0 5961 12431 0 9217 5961 0\n\t\t 9217 9218 0 9218 5961 0 9342 5961 0 9218 9342 0 9218 5952 0 5952 9342 0 9343 9342 0\n\t\t 5952 9343 0 5952 12517 0 12517 9343 0 12104 12074 0 12074 5949 0 5949 12104 0 5949 5964 0\n\t\t 5964 12104 0 5949 8682 0 8682 5964 0 8682 12385 0 12385 5964 0 5958 9938 0 9938 12349 0\n\t\t 12349 5958 0 12349 12399 0 12399 5958 0 5954 9938 0 5958 5954 0 5958 12331 0 12331 5954 0\n\t\t 12331 9343 0 9343 5954 0 12517 5954 0 11235 5934 0 5934 5886 0 5886 11235 0 5886 11237 0\n\t\t 11237 11235 0 5888 5886 0 5934 5888 0 5934 11310 0 11310 5888 0 5888 5890 0 5890 5886 0\n\t\t 5890 5891 0 5891 5886 0 11374 11237 0 5886 11374 0 5891 11374 0 11310 11311 0 11311 5888 0\n\t\t 11311 5894 0 5894 5888 0 11311 5937 0 5937 5894 0 5937 5895 0 5895 5894 0 5937 5896 0\n\t\t 5896 5895 0 5896 5897 0 5897 5895 0 5898 5897 0 5896 5898 0 5896 5899 0 5899 5898 0\n\t\t 5900 5898 0 5899 5900 0 5899 5901 0 5901 5900 0 5900 5902 0 5902 5898 0 5902 5903 0\n\t\t 5903 5898 0 5903 5897 0 5903 5904 0 5904 5897 0 5905 5891 0 5890 5905 0 5890 5906 0\n\t\t 5906 5905 0 5906 5991 0 5991 5905 0 5907 5991 0 5906 5907 0 5906 5908 0 5908 5907 0\n\t\t 5908 5909 0 5909 5907 0 5909 5910 0 5910 5907 0 5911 5909 0 5908 5911 0 5911 5904 0\n\t\t 5904 5909 0 5908 5912 0 5912 5911 0 5906 5912 0 5890 5912 0 5904 5913 0 5913 5909 0\n\t\t 5913 5910 0 5913 5914 0 5914 5910 0 5991 5993 0 5993 5905 0 5913 5915 0 5915 5914 0\n\t\t 5904 5915 0 5915 5986 0 5986 5914 0 5916 5986 0 5915 5916 0 5915 5917 0 5917 5916 0\n\t\t 5895 5911 0 5912 5895 0 5912 5894 0 5897 5911 0 5917 5918 0 5918 5916 0 5919 5918 0\n\t\t 5917 5919 0 5919 5920 0 5920 5918 0 5920 5921 0 5921 5918 0 5978 5918 0 5921 5978 0;\n\tsetAttr \".ed[19754:19919]\" 5978 5916 0 5921 5922 0 5922 5978 0 5923 5920 0 5919 5923 0\n\t\t 5919 5924 0 5924 5923 0 5943 5923 0 5924 5943 0 5924 5925 0 5925 5943 0 5917 5902 0\n\t\t 5902 5919 0 5915 5902 0 5915 5903 0 5901 5925 0 5924 5901 0 5924 5900 0 5900 5919 0\n\t\t 6319 5921 0 5920 6319 0 6319 5922 0 5920 5926 0 5926 6319 0 5923 5926 0 6319 6320 0\n\t\t 6320 5922 0 5927 5923 0 5943 5927 0 5927 5926 0 5943 5928 0 5928 5927 0 5929 5930 0\n\t\t 5930 5950 0 5950 5929 0 5950 12111 0 5932 5930 0 5929 5932 0 5842 5932 0 5933 5932 0\n\t\t 5842 5933 0 5842 5840 0 5840 5933 0 13267 5930 0 5932 13267 0 13267 5950 0 5932 5889 0\n\t\t 5889 13267 0 5933 5889 0 13267 5885 0 5885 5950 0 5935 5933 0 5935 5936 0 5936 5933 0\n\t\t 5893 5933 0 5936 5893 0 5893 5889 0 5936 5937 0 5937 5893 0 5936 5896 0 5936 5938 0\n\t\t 5938 5896 0 5935 5938 0 5935 5839 0 5839 5938 0 5939 5938 0 5839 5939 0 5939 5896 0\n\t\t 5839 5823 0 5823 5939 0 5940 5939 0 5823 5940 0 5823 5941 0 5941 5940 0 5940 5901 0\n\t\t 5901 5939 0 5940 5942 0 5942 5901 0 5942 5925 0 5942 5943 0 5942 5944 0 5944 5943 0\n\t\t 5942 5945 0 5945 5944 0 5945 5940 0 5946 5944 0 5899 5939 0 5944 5928 0 5944 6341 0\n\t\t 6341 5928 0 5946 6341 0 5946 6255 0 6255 6341 0 12073 12103 0 12103 12101 0 12101 12073 0\n\t\t 12101 12112 0 12112 12073 0 5931 12108 0 12108 8681 0 8681 5931 0 8681 5947 0 5947 5931 0\n\t\t 8683 8681 0 12108 8683 0 12108 11236 0 11236 8683 0 5875 8683 0 11236 5875 0 11236 5887 0\n\t\t 5887 5875 0 5877 5875 0 5887 5877 0 5887 5892 0 5892 5877 0 12496 5877 0 5892 12496 0\n\t\t 5892 12355 0 12355 12496 0 5880 12496 0 12355 5880 0 12355 6133 0 6133 5880 0 9937 5880 0\n\t\t 6133 9937 0 6133 9886 0 9886 9937 0 9886 9887 0 9887 9937 0 9887 5957 0 5957 9937 0\n\t\t 6135 5957 0 9887 6135 0 9887 12576 0 12576 6135 0 12382 5883 0 5883 5871 0 5871 12382 0\n\t\t 5871 12582 0 12582 12382 0 5884 12382 0 12582 5884 0 12582 5873 0 5873 5884 0 5879 5884 0\n\t\t 5873 5879 0 5873 9461 0 9461 5879 0 5878 5879 0 9461 5878 0 9461 12181 0 12181 5878 0\n\t\t 12427 5878 0 12181 12427 0 12181 5969 0 5969 12427 0 5876 12427 0 5969 5876 0 5969 9782 0\n\t\t 9782 5876 0 5882 5876 0 9782 5882 0 9782 9775 0 9775 5882 0 12384 5882 0 9775 12384 0;\n\tsetAttr \".ed[19920:20085]\" 9775 9777 0 9777 12384 0 5881 12384 0 9777 5881 0 9777 5948 0\n\t\t 5948 5881 0 9776 12098 0 12098 6202 0 6202 9776 0 6202 5965 0 5965 9776 0 6202 5967 0\n\t\t 5967 5965 0 12102 5965 0 5960 5874 0 5874 11801 0 11801 5960 0 11801 5968 0 5968 5960 0\n\t\t 12208 5960 0 5968 12208 0 5968 5970 0 5970 12208 0 5962 12208 0 5970 5962 0 5970 6204 0\n\t\t 6204 5962 0 5963 5962 0 6204 5963 0 6204 12099 0 12099 5963 0 5971 6158 0 6158 5972 0\n\t\t 5972 5971 0 5972 5973 0 5973 5971 0 5974 5971 0 5973 5974 0 5973 5975 0 5975 5974 0\n\t\t 5976 5974 0 5975 5976 0 5975 5977 0 5977 5976 0 5922 5976 0 5977 5922 0 5977 5978 0\n\t\t 5973 5979 0 5979 5975 0 5979 5980 0 5980 5975 0 5972 5981 0 5981 5973 0 5981 5979 0\n\t\t 5982 5979 0 5981 5982 0 5982 5980 0 5981 6152 0 6152 5982 0 5982 5983 0 5983 5980 0\n\t\t 5983 5984 0 5984 5980 0 5984 5985 0 5985 5980 0 5985 5975 0 5985 5977 0 5984 5986 0\n\t\t 5986 5985 0 5984 5914 0 5984 5987 0 5987 5914 0 5983 5987 0 5916 5985 0 5977 5916 0\n\t\t 5983 5988 0 5988 5987 0 5982 5988 0 5987 5989 0 5989 5914 0 5988 5989 0 5989 5910 0\n\t\t 5989 5990 0 5990 5910 0 5990 5907 0 5990 5991 0 5990 5992 0 5992 5991 0 5992 5993 0\n\t\t 5992 6189 0 6189 5993 0 5992 5994 0 5994 6189 0 5994 11292 0 11292 6189 0 6134 11292 0\n\t\t 5994 6134 0 11293 11292 0 6134 11293 0 5956 11293 0 6134 5956 0 5956 6180 0 6180 11293 0\n\t\t 6134 12577 0 12577 5956 0 5956 12085 0 12085 6180 0 5956 5955 0 5955 12085 0 5955 6186 0\n\t\t 6186 12085 0 5994 12701 0 12701 6134 0 5994 5999 0 5999 12701 0 5955 12591 0 12591 6186 0\n\t\t 6189 12591 0 12591 5993 0 12097 6186 0 12591 12097 0 6189 12097 0 11292 6177 0 6177 6189 0\n\t\t 6177 13337 0 13337 6189 0 6177 12354 0 12354 13337 0 12354 6175 0 6175 13337 0 6003 9688 0\n\t\t 9688 9689 0 9689 6003 0 9689 10929 0 10929 6003 0 6005 6003 0 10929 6005 0 10929 6006 0\n\t\t 6006 6005 0 6005 11025 0 11025 6003 0 11025 11026 0 11026 6003 0 11026 9688 0 11026 12777 0\n\t\t 12777 9688 0 10930 6004 0 6004 6009 0 6009 10930 0 6009 6010 0 6010 10930 0 12796 6009 0\n\t\t 6004 12796 0 6004 9690 0 9690 12796 0 12796 9628 0 9628 6009 0 5841 6009 0 5841 6010 0\n\t\t 5841 12671 0 12671 6010 0 6006 11010 0 11010 6005 0 11010 6014 0 6014 6005 0 6014 11025 0;\n\tsetAttr \".ed[20086:20251]\" 6015 6014 0 11010 6015 0 11010 6016 0 6016 6015 0 6017 6015 0\n\t\t 6016 6017 0 6016 11246 0 11246 6017 0 6019 6017 0 11246 6019 0 11246 6020 0 6020 6019 0\n\t\t 6021 6017 0 6019 6021 0 6019 6022 0 6022 6021 0 10321 6019 0 6020 10321 0 10321 6022 0\n\t\t 6020 6099 0 6099 10321 0 10321 10322 0 10322 6022 0 6018 11067 0 11067 6023 0 6023 6018 0\n\t\t 6023 6057 0 6057 6018 0 11304 6018 0 6057 11304 0 6023 12654 0 12654 6057 0 12654 5967 0\n\t\t 5967 6057 0 6057 6025 0 6025 11304 0 10352 11304 0 6025 10352 0 6026 6025 0 6057 6026 0\n\t\t 5817 6026 0 6057 5817 0 6021 6027 0 6027 6017 0 5843 12654 0 6023 5843 0 6023 6028 0\n\t\t 6028 5843 0 11067 6028 0 11067 6013 0 6013 6028 0 6025 10353 0 10353 10352 0 6026 10829 0\n\t\t 10829 6025 0 10829 10353 0 10830 10829 0 6026 10830 0 6026 12523 0 12523 10830 0\n\t\t 5817 12523 0 5817 5816 0 5816 12523 0 5816 5869 0 5869 12523 0 5869 12756 0 12756 12523 0\n\t\t 12671 5843 0 6028 12671 0 6028 6010 0 6013 10930 0 10930 6028 0 6027 6015 0 6032 6014 0\n\t\t 6015 6032 0 6027 6032 0 6032 11025 0 10787 10786 0 10786 6033 0 6033 10787 0 6034 6033 0\n\t\t 10786 6034 0 10786 11277 0 11277 6034 0 6035 6034 0 11277 6035 0 11277 11353 0 11353 6035 0\n\t\t 6036 6034 0 6035 6036 0 6035 6037 0 6037 6036 0 6036 6038 0 6038 6034 0 6038 6033 0\n\t\t 6033 6039 0 6039 10787 0 6007 10787 0 6039 6007 0 6038 6040 0 6040 6033 0 6040 6039 0\n\t\t 6039 6041 0 6041 6007 0 6041 6042 0 6042 6007 0 6042 6008 0 6008 6007 0 6043 6041 0\n\t\t 6039 6043 0 6040 6043 0 6043 6042 0 6043 6044 0 6044 6042 0 11534 6035 0 11353 11534 0\n\t\t 11534 6037 0 11353 10323 0 10323 11534 0 11534 13125 0 13125 6037 0 12776 6008 0\n\t\t 6042 12776 0 6042 6046 0 6046 12776 0 6044 6046 0 6044 6047 0 6047 6046 0 6047 6048 0\n\t\t 6048 6046 0 6048 6049 0 6049 6046 0 6049 12776 0 6049 6054 0 6054 12776 0 6048 6051 0\n\t\t 6051 6049 0 5845 6049 0 5845 6054 0 6055 6054 0 6052 6053 0 6053 6050 0 6050 6052 0\n\t\t 6050 9744 0 9744 6052 0 5835 6052 0 9744 5835 0 9744 6055 0 5836 6052 0 5836 6011 0\n\t\t 6011 6052 0 6011 6053 0 6011 6056 0 6056 6053 0 5967 5817 0 10434 6113 0 6113 12850 0\n\t\t 12850 10434 0 12850 6106 0 6106 10434 0 12869 6106 0 12850 12869 0 12850 6114 0 6114 12869 0\n\t\t 11651 6100 0 6100 12870 0;\n\tsetAttr \".ed[20252:20417]\" 12870 11651 0 12870 11650 0 11650 11651 0 12844 11650 0\n\t\t 12870 12844 0 12870 10482 0 10482 12844 0 10482 10343 0 10343 12844 0 10343 10277 0\n\t\t 10277 12844 0 12868 12872 0 12872 12831 0 12831 12868 0 12831 6109 0 6109 12868 0\n\t\t 12827 6109 0 12831 12827 0 12831 12832 0 12832 12827 0 10275 10344 0 10344 12992 0\n\t\t 12992 10275 0 12992 12990 0 12990 10275 0 10342 10344 0 10275 10342 0 10275 10276 0\n\t\t 10276 10342 0 10368 6069 0 6069 6068 0 6068 10368 0 6068 10370 0 10370 10368 0 13073 10370 0\n\t\t 6068 13073 0 6068 10299 0 10299 13073 0 6115 6071 0 6071 6072 0 6072 6115 0 6072 10425 0\n\t\t 10425 6115 0 10426 10425 0 6072 10426 0 6072 6075 0 6075 10426 0 10300 10369 0 10369 6112 0\n\t\t 6112 10300 0 6112 6076 0 6076 10300 0 6077 6076 0 6112 6077 0 6112 6111 0 6111 6077 0\n\t\t 6111 12928 0 12928 6077 0 12928 12956 0 12956 6077 0 10253 6076 0 6077 10253 0 6077 10272 0\n\t\t 10272 10253 0 12956 10272 0 6081 10300 0 6076 6081 0 10253 6081 0 6069 10084 0 10084 10086 0\n\t\t 10086 6069 0 10086 6068 0 10086 10299 0 10086 10068 0 10068 10299 0 12956 6097 0\n\t\t 6097 10272 0 10298 10067 0 10067 6084 0 6084 10298 0 6084 6072 0 6072 10298 0 6084 6075 0\n\t\t 6084 6085 0 6085 6075 0 6147 6079 0 6079 6080 0 6080 6147 0 6080 6148 0 6148 6147 0\n\t\t 6080 10173 0 10173 6148 0 6086 10085 0 10085 6079 0 6079 6086 0 6147 6086 0 6086 6087 0\n\t\t 6087 10085 0 6087 6082 0 6082 10085 0 6083 6082 0 6087 6083 0 6087 10879 0 10879 6083 0\n\t\t 10173 6089 0 6089 6148 0 10879 10880 0 10880 6083 0 10880 6084 0 6084 6083 0 10880 6085 0\n\t\t 10880 6144 0 6144 6085 0 12946 6093 0 6093 6092 0 6092 12946 0 6092 12947 0 12947 12946 0\n\t\t 12927 12947 0 6092 12927 0 6092 6078 0 6078 12927 0 10170 6092 0 6093 10170 0 10170 6078 0\n\t\t 6093 10250 0 10250 10170 0 10170 10171 0 10171 6078 0 6098 6095 0 6095 6096 0 6096 6098 0\n\t\t 10172 6095 0 6098 10172 0 6096 6149 0 6149 6098 0 6098 6089 0 6089 10172 0 6060 10433 0\n\t\t 10433 10351 0 10351 6060 0 10351 6101 0 6101 6060 0 6102 6060 0 6101 6102 0 6101 6029 0\n\t\t 6029 6102 0 6103 6102 0 6029 6103 0 6029 6030 0 6030 6103 0 6104 6103 0 6030 6104 0\n\t\t 6030 6140 0 6140 6104 0 6065 6104 0 6140 6065 0 6140 6138 0 6138 6065 0 6105 10351 0\n\t\t 10433 6105 0 10433 10435 0 10435 6105 0 6107 6105 0 10435 6107 0 10435 6059 0;\n\tsetAttr \".ed[20418:20583]\" 6059 6107 0 6108 6107 0 6059 6108 0 6059 12826 0 12826 6108 0\n\t\t 6045 6108 0 12826 6045 0 12826 6063 0 6063 6045 0 6110 6061 0 6061 11679 0 11679 6110 0\n\t\t 11679 11680 0 11680 6110 0 11652 6110 0 11680 11652 0 11680 6067 0 6067 11652 0 6058 11652 0\n\t\t 6067 6058 0 6067 6070 0 6070 6058 0 12871 6058 0 6070 12871 0 6070 13072 0 13072 12871 0\n\t\t 6094 11679 0 6061 6094 0 6061 6066 0 6066 6094 0 6116 6094 0 6066 6116 0 6066 6064 0\n\t\t 6064 6116 0 6091 6116 0 6064 6091 0 6064 6117 0 6117 6091 0 13072 6073 0 6073 12871 0\n\t\t 6073 6062 0 6062 12871 0 6118 6062 0 6073 6118 0 6073 6074 0 6074 6118 0 9379 12525 0\n\t\t 12525 6031 0 6031 9379 0 6031 5868 0 5868 9379 0 9377 9379 0 5868 9377 0 5868 5866 0\n\t\t 5866 9377 0 9649 9377 0 5866 9649 0 5866 5865 0 5865 9649 0 6139 9649 0 5865 6139 0\n\t\t 5865 6119 0 6119 6139 0 8891 8889 0 8889 6120 0 6120 8891 0 8973 8971 0 8971 10622 0\n\t\t 10622 8973 0 10622 5813 0 5813 8973 0 12296 8973 0 5813 12296 0 5813 5815 0 5815 12296 0\n\t\t 6123 6121 0 6121 6169 0 6169 6123 0 6169 12287 0 12287 6123 0 5812 6123 0 12287 5812 0\n\t\t 12287 6172 0 6172 5812 0 13093 5812 0 6172 13093 0 6172 10741 0 10741 13093 0 5811 13093 0\n\t\t 10741 5811 0 10741 10742 0 10742 5811 0 12297 12296 0 5815 12297 0 5815 10564 0 10564 12297 0\n\t\t 10711 12298 0 12298 5819 0 5819 10711 0 5819 5818 0 5818 10711 0 10712 10711 0 5818 10712 0\n\t\t 5818 6130 0 6130 10712 0 10792 10794 0 10794 12310 0 12310 10792 0 12310 10713 0\n\t\t 10713 10792 0 10742 12310 0 10794 10742 0 10794 5811 0 5888 5912 0 12591 5953 0 5953 5993 0\n\t\t 5953 5905 0 5953 11374 0 11374 5905 0 12590 6136 0 6136 12348 0 12348 12590 0 12348 5997 0\n\t\t 5997 12590 0 12590 5998 0 5998 6136 0 6137 9650 0 9650 9668 0 9668 6137 0 9668 9669 0\n\t\t 9669 6137 0 9378 6137 0 9669 9378 0 9669 10831 0 10831 9378 0 10831 12524 0 12524 9378 0\n\t\t 6141 6143 0 6143 6142 0 6142 6141 0 12508 6090 0 6090 6145 0 6145 12508 0 6145 6146 0\n\t\t 6146 12508 0 6087 6145 0 6090 6087 0 6090 6088 0 6088 6087 0 6086 6145 0 6147 6145 0\n\t\t 6147 6146 0 6148 6146 0 6089 6146 0 6098 6146 0 6098 12508 0 6149 12508 0 6150 6151 0\n\t\t 6151 6164 0 6164 6150 0 6164 6152 0 6152 6150 0 6153 6150 0 6152 6153 0 5981 6153 0\n\t\t 6154 10016 0;\n\tsetAttr \".ed[20584:20749]\" 10016 9974 0 9974 6154 0 10017 10016 0 6154 10017 0\n\t\t 9974 6155 0 6155 6154 0 9974 9451 0 9451 6155 0 6156 6153 0 5981 6156 0 9451 6157 0\n\t\t 6157 6155 0 5972 6156 0 6158 6156 0 6158 9452 0 9452 6156 0 6154 6160 0 6160 10017 0\n\t\t 10797 9452 0 6158 10797 0 6161 6159 0 6159 6574 0 6574 6161 0 6161 6157 0 9451 6161 0\n\t\t 9451 6159 0 6574 6162 0 6162 6161 0 6158 6579 0 6579 10797 0 6152 12873 0 12873 6163 0\n\t\t 6163 6152 0 6163 5982 0 6163 5988 0 10364 10365 0 10365 5946 0 10365 6255 0 6165 5824 0\n\t\t 5825 6165 0 5825 6253 0 6253 6165 0 5827 6253 0 5827 6254 0 6254 6253 0 6166 6254 0\n\t\t 5827 6166 0 5974 6167 0 6167 6578 0 6578 5974 0 6578 5971 0 6578 6158 0 6578 6579 0\n\t\t 5976 6167 0 5976 6168 0 6168 6167 0 5922 6168 0 6320 6168 0 8972 6170 0 6170 6122 0\n\t\t 6122 8972 0 6122 6128 0 6128 8972 0 6122 6171 0 6171 6128 0 6128 12286 0 12286 8972 0\n\t\t 6128 6131 0 6131 12286 0 6128 6129 0 6129 6131 0 6131 6127 0 6127 12286 0 6127 6126 0\n\t\t 6126 12286 0 12286 6124 0 6124 8972 0 6173 12488 0 12488 11584 0 11584 6173 0 11584 11600 0\n\t\t 11600 6173 0 11600 11699 0 11699 6173 0 11699 12230 0 12230 6173 0 11699 11625 0\n\t\t 11625 12230 0 11699 11623 0 11623 11625 0 12230 6175 0 6175 6173 0 8860 6177 0 11292 8860 0\n\t\t 5995 5996 0 5996 6176 0 6176 5995 0 8860 12339 0 12339 6177 0 12339 12354 0 8861 6176 0\n\t\t 5996 8861 0 5996 8890 0 8890 8861 0 8860 6179 0 6179 6192 0 6192 8860 0 6192 12339 0\n\t\t 8866 8861 0 8890 8866 0 8890 6182 0 6182 8866 0 6183 8866 0 6182 6183 0 6182 12084 0\n\t\t 12084 6183 0 6181 8730 0 8730 8668 0 8668 6181 0 8668 6194 0 6194 6181 0 6179 6181 0\n\t\t 6194 6179 0 6194 6192 0 8678 6183 0 12084 8678 0 12084 8787 0 8787 8678 0 8730 6185 0\n\t\t 6185 8669 0 8669 8730 0 8669 8668 0 8679 8677 0 8677 8786 0 8786 8679 0 8786 6000 0\n\t\t 6000 8679 0 6001 8679 0 6000 6001 0 13337 12097 0 6188 13337 0 6175 6188 0 6175 6197 0\n\t\t 6197 6188 0 6185 6188 0 6197 6185 0 6197 8669 0 12354 6173 0 12354 12488 0 6002 6178 0\n\t\t 6178 6190 0 6190 6002 0 11583 6190 0 6178 11583 0 6178 11585 0 11585 11583 0 6193 6191 0\n\t\t 6191 11586 0 11586 6193 0 11586 11705 0 11705 6193 0 6195 6193 0 11705 6195 0 11705 6184 0\n\t\t 6184 6195 0 6196 6195 0;\n\tsetAttr \".ed[20750:20915]\" 6184 6196 0 6184 8670 0 8670 6196 0 11624 6187 0 6187 12079 0\n\t\t 12079 11624 0 12079 6198 0 6198 11624 0 6174 6198 0 12079 6174 0 12230 6197 0 6199 5827 0\n\t\t 6199 6166 0 6201 5817 0 5967 6201 0 6202 6201 0 6202 11852 0 11852 6201 0 5810 11852 0\n\t\t 6202 5810 0 12098 5810 0 13029 5966 0 5966 12136 0 12136 13029 0 12136 6205 0 6205 13029 0\n\t\t 6206 6205 0 12136 6206 0 12136 5970 0 5970 6206 0 6207 6206 0 5970 6207 0 5968 6207 0\n\t\t 11801 6207 0 11801 6209 0 6209 6207 0 11801 6210 0 6210 6209 0 6210 5814 0 5814 6209 0\n\t\t 13156 5814 0 6210 13156 0 5872 13156 0 5852 13156 0 5852 5870 0 5870 13156 0 10903 10762 0\n\t\t 10762 12838 0 12838 10903 0 12838 12810 0 12810 10903 0 12810 12432 0 12432 10903 0\n\t\t 12432 10904 0 10904 10903 0 12432 9796 0 9796 10904 0 9796 9170 0 9170 10904 0 9796 9795 0\n\t\t 9795 9170 0 9795 9171 0 9171 9170 0 9795 9249 0 9249 9171 0 9249 9068 0 9068 9171 0\n\t\t 9249 9096 0 9096 9068 0 9096 9069 0 9069 9068 0 9096 9097 0 9097 9069 0 9097 6618 0\n\t\t 6618 9069 0 10762 10761 0 10761 12838 0 10761 12346 0 12346 12838 0 6461 12346 0\n\t\t 10761 6461 0 6461 12338 0 12338 12346 0 10761 10788 0 10788 6461 0 9875 12338 0 6461 9875 0\n\t\t 9097 9875 0 9875 6618 0 6461 9194 0 9194 9875 0 9875 9192 0 9192 6618 0 9194 9192 0\n\t\t 6339 8709 0 8709 6222 0 6222 6339 0 6222 6224 0 6224 6339 0 6222 6225 0 6225 6224 0\n\t\t 6225 8720 0 8720 6224 0 8710 8709 0 6339 8710 0 6339 6340 0 6340 8710 0 6223 6227 0\n\t\t 6227 6228 0 6228 6223 0 6228 6229 0 6229 6223 0 6228 6606 0 6606 6229 0 6606 6230 0\n\t\t 6230 6229 0 6225 11974 0 11974 6231 0 6231 6225 0 6229 6231 0 6231 6223 0 11974 6223 0\n\t\t 6231 6232 0 6232 6225 0 6233 6232 0 6231 6233 0 6233 6234 0 6234 6232 0 6234 6235 0\n\t\t 6235 6232 0 6235 6225 0 6236 6235 0 6234 6236 0 6234 6237 0 6237 6236 0 6238 6236 0\n\t\t 6237 6238 0 6238 9709 0 9709 6236 0 9709 6240 0 6240 6236 0 6240 6235 0 6237 6439 0\n\t\t 6439 6238 0 6240 6241 0 6241 6235 0 11986 6241 0 6240 11986 0 6240 6328 0 6328 11986 0\n\t\t 9709 6328 0 9709 9710 0 9710 6328 0 9711 6239 0 6239 12802 0 12802 9711 0 6463 6324 0\n\t\t 6324 6243 0 6243 6463 0 6463 12768 0 12768 6324 0 12768 6321 0 6321 6324 0 6241 6225 0\n\t\t 12768 6456 0 6456 6321 0;\n\tsetAttr \".ed[20916:21081]\" 6456 10108 0 10108 6321 0 6456 6450 0 6450 10108 0 6450 9979 0\n\t\t 9979 10108 0 6450 6366 0 6366 9979 0 6241 8720 0 11986 8720 0 6245 6246 0 6246 6439 0\n\t\t 6439 6245 0 6237 6245 0 6245 6247 0 6247 6246 0 6247 6438 0 6438 6246 0 6237 6248 0\n\t\t 6248 6245 0 6245 9835 0 9835 6247 0 6234 6248 0 6249 6248 0 6234 6249 0 6233 6249 0\n\t\t 6233 6250 0 6250 6249 0 6231 6250 0 6229 6250 0 6230 6250 0 6250 6251 0 6251 6249 0\n\t\t 6252 6251 0 6250 6252 0 6230 6252 0 6606 6252 0 6228 6253 0 6253 6606 0 6254 6606 0\n\t\t 6228 6165 0 6227 6165 0 10365 8710 0 6340 10365 0 6340 6255 0 6166 6256 0 6256 6254 0\n\t\t 6257 6356 0 6356 6620 0 6620 6257 0 6620 6258 0 6258 6257 0 6620 6259 0 6259 6258 0\n\t\t 6258 6260 0 6260 6257 0 6261 6260 0 6258 6261 0 6261 6262 0 6262 6260 0 6262 6263 0\n\t\t 6263 6260 0 6264 6263 0 6262 6264 0 6262 6265 0 6265 6264 0 6266 6260 0 6263 6266 0\n\t\t 6266 6257 0 6263 6267 0 6267 6266 0 6268 6267 0 6263 6268 0 6264 6268 0 6534 6262 0\n\t\t 6261 6534 0 6534 6265 0 6261 12200 0 12200 6534 0 6534 8905 0 8905 6265 0 6258 6270 0\n\t\t 6270 6261 0 6270 12200 0 6270 6532 0 6532 12200 0 12352 6532 0 6270 12352 0 6270 9193 0\n\t\t 9193 12352 0 6258 9193 0 6259 9193 0 9191 9193 0 6259 9191 0 6620 9191 0 6619 12334 0\n\t\t 12334 10406 0 10406 6619 0 10406 10407 0 10407 6619 0 10407 11095 0 11095 6619 0\n\t\t 11095 6617 0 6617 6619 0 11095 11096 0 11096 6617 0 11096 10191 0 10191 6617 0 12903 10989 0\n\t\t 10989 11022 0 11022 12903 0 11022 12964 0 12964 12903 0 12964 6361 0 6361 12903 0\n\t\t 6361 10022 0 10022 12903 0 6361 10366 0 10366 10022 0 10366 10023 0 10023 10022 0\n\t\t 10366 13052 0 13052 10023 0 13052 10043 0 10043 10023 0 9981 12973 0 12973 10987 0\n\t\t 10987 9981 0 10987 12864 0 12864 9981 0 10988 10987 0 12973 10988 0 12973 11023 0\n\t\t 11023 10988 0 10412 6358 0 6358 6354 0 6354 10412 0 6354 11121 0 11121 10412 0 11121 11122 0\n\t\t 11122 10412 0 11122 10449 0 10449 10412 0 13052 10449 0 11122 13052 0 11122 10043 0\n\t\t 6284 6326 0 6326 10063 0 10063 6284 0 10063 6348 0 6348 6284 0 6284 6285 0 6285 6326 0\n\t\t 6285 6327 0 6327 6326 0 6286 6285 0 6284 6286 0 6284 6287 0 6287 6286 0 6348 12895 0\n\t\t 12895 6284 0 12895 6287 0 12996 6327 0 6285 12996 0 6285 6290 0 6290 12996 0;\n\tsetAttr \".ed[21082:21247]\" 6330 12996 0 6290 6330 0 6290 6291 0 6291 6330 0 6331 6330 0\n\t\t 6291 6331 0 6291 6292 0 6292 6331 0 6292 6293 0 6293 6331 0 6293 6294 0 6294 6331 0\n\t\t 6293 6295 0 6295 6294 0 6295 6296 0 6296 6294 0 6297 6295 0 6293 6297 0 6293 6298 0\n\t\t 6298 6297 0 6292 6298 0 6292 6299 0 6299 6298 0 6287 6300 0 6300 6286 0 12895 6300 0\n\t\t 6290 6301 0 6301 6291 0 6301 6302 0 6302 6291 0 6302 6292 0 6302 6299 0 6301 6303 0\n\t\t 6303 6302 0 6303 6304 0 6304 6302 0 6304 6299 0 6303 6305 0 6305 6304 0 6305 6306 0\n\t\t 6306 6304 0 6304 6307 0 6307 6299 0 6306 6307 0 6306 6387 0 6387 6307 0 6303 6308 0\n\t\t 6308 6305 0 6301 6308 0 6308 6309 0 6309 6305 0 6308 6300 0 6300 6309 0 6300 6310 0\n\t\t 6310 6309 0 6311 6307 0 6387 6311 0 6298 6311 0 6311 6297 0 6311 6299 0 6387 6386 0\n\t\t 6386 6311 0 6386 6389 0 6389 6311 0 6389 6312 0 6312 6311 0 6301 6286 0 6286 6308 0\n\t\t 6313 6312 0 6389 6313 0 6313 6314 0 6314 6312 0 6315 6314 0 6313 6315 0 6313 6316 0\n\t\t 6316 6315 0 6313 6378 0 6378 6316 0 6389 6378 0 6378 6377 0 6377 6316 0 6315 6317 0\n\t\t 6317 6314 0 6317 6318 0 6318 6314 0 6317 6337 0 6337 6318 0 6337 6336 0 6336 6318 0\n\t\t 6314 6297 0 6297 6312 0 6336 6296 0 6296 6318 0 6295 6318 0 6295 6314 0 6316 6319 0\n\t\t 6319 6315 0 6377 6319 0 5926 6315 0 5926 6317 0 6377 6320 0 6317 5927 0 5927 6337 0\n\t\t 5928 6337 0 10061 6322 0 6322 6321 0 6321 10061 0 10108 10061 0 6322 6323 0 6323 6321 0\n\t\t 6323 6324 0 6323 6325 0 6325 6324 0 6325 9710 0 9710 6324 0 6322 10646 0 10646 6323 0\n\t\t 10061 10646 0 10646 10647 0 10647 6323 0 10647 6325 0 10061 10062 0 10062 10646 0\n\t\t 6325 6328 0 6325 6329 0 6329 6328 0 6325 6289 0 6289 6329 0 10647 6289 0 6289 6330 0\n\t\t 6330 6329 0 6331 6329 0 6331 6332 0 6332 6329 0 6332 6328 0 6332 6242 0 6242 6328 0\n\t\t 6332 6333 0 6333 6242 0 6331 6333 0 6333 6226 0 6226 6242 0 6333 6334 0 6334 6226 0\n\t\t 6334 6224 0 6224 6226 0 6296 6334 0 6333 6296 0 6335 6334 0 6296 6335 0 6336 6335 0\n\t\t 6337 6335 0 6337 6338 0 6338 6335 0 6339 6335 0 6338 6339 0 6334 6339 0 6338 6340 0\n\t\t 6333 6294 0 5928 6338 0 6341 6338 0 6341 6340 0 12865 6343 0 6343 9978 0 9978 12865 0\n\t\t 9978 9980 0;\n\tsetAttr \".ed[21248:21413]\" 9980 12865 0 10109 6345 0 6345 6278 0 6278 10109 0 6278 6346 0\n\t\t 6346 10109 0 6278 6279 0 6279 6346 0 6279 6347 0 6347 6346 0 6279 6276 0 6276 6347 0\n\t\t 6276 10110 0 10110 6347 0 6276 6349 0 6349 10110 0 6349 6288 0 6288 10110 0 6349 6350 0\n\t\t 6350 6288 0 6350 12608 0 12608 6288 0 6350 6352 0 6352 12608 0 6352 6547 0 6547 12608 0\n\t\t 6352 6282 0 6282 6547 0 6282 12913 0 12913 6547 0 6398 12913 0 6282 6398 0 6282 6281 0\n\t\t 6281 6398 0 6281 12642 0 12642 6398 0 12642 6548 0 6548 6398 0 6355 6357 0 6357 10405 0\n\t\t 10405 6355 0 10405 10413 0 10413 6355 0 6355 6359 0 6359 6357 0 6359 6274 0 6274 6357 0\n\t\t 6359 6283 0 6283 6274 0 6283 11097 0 11097 6274 0 6283 6360 0 6360 11097 0 6360 13018 0\n\t\t 13018 11097 0 6360 10367 0 10367 13018 0 10367 10181 0 10181 13018 0 10367 6277 0\n\t\t 6277 10181 0 6277 10182 0 10182 10181 0 6277 6280 0 6280 10182 0 6280 12981 0 12981 10182 0\n\t\t 6280 6364 0 6364 12981 0 6364 6365 0 6365 12981 0 6364 6344 0 6344 6365 0 6344 6342 0\n\t\t 6342 6365 0 6369 13163 0 13163 6609 0 6609 6369 0 6609 10920 0 10920 6369 0 6366 6609 0\n\t\t 13163 6366 0 13163 9979 0 6616 6275 0 6275 6367 0 6367 6616 0 6367 6615 0 6615 6616 0\n\t\t 6367 6362 0 6362 6615 0 6362 6614 0 6614 6615 0 6362 6363 0 6363 6614 0 6363 13135 0\n\t\t 13135 6614 0 6363 12980 0 12980 13135 0 12980 10921 0 10921 13135 0 6571 6371 0 6371 6370 0\n\t\t 6370 6571 0 6370 6372 0 6372 6571 0 6370 6373 0 6373 6372 0 6373 6374 0 6374 6372 0\n\t\t 6373 6375 0 6375 6374 0 6375 6376 0 6376 6374 0 6375 6377 0 6377 6376 0 6378 6376 0\n\t\t 6379 6372 0 6374 6379 0 6374 6380 0 6380 6379 0 6379 6381 0 6381 6372 0 6381 6571 0\n\t\t 6379 6382 0 6382 6381 0 6380 6382 0 6382 6565 0 6565 6381 0 6380 6383 0 6383 6382 0\n\t\t 6384 6383 0 6380 6384 0 6380 6385 0 6385 6384 0 6376 6385 0 6385 6374 0 6386 6384 0\n\t\t 6385 6386 0 6387 6384 0 6387 6388 0 6388 6384 0 6388 6383 0 6385 6389 0 6376 6389 0\n\t\t 6388 6390 0 6390 6383 0 6390 6382 0 6391 6388 0 6387 6391 0 6391 6390 0 6306 6391 0\n\t\t 6392 6391 0 6306 6392 0 6305 6392 0 6309 6392 0 6309 6393 0 6393 6392 0 6310 6393 0\n\t\t 6310 6595 0 6595 6393 0 6394 6393 0 6595 6394 0 6595 11669 0 11669 6394 0 12601 6394 0\n\t\t 11669 12601 0;\n\tsetAttr \".ed[21414:21579]\" 11669 11670 0 11670 12601 0 12908 12601 0 11670 12908 0\n\t\t 12908 12636 0 12636 12601 0 12726 12908 0 11670 12726 0 12726 11574 0 11574 12908 0\n\t\t 11574 6353 0 6353 12908 0 11574 11576 0 11576 6353 0 12601 6550 0 6550 6394 0 6550 6401 0\n\t\t 6401 6394 0 6310 12609 0 12609 6595 0 11576 12609 0 12609 6353 0 6593 6595 0 12609 6593 0\n\t\t 11576 6593 0 6604 11669 0 6595 6604 0 6595 11562 0 11562 6604 0 6444 9589 0 9589 6402 0\n\t\t 6402 6444 0 6402 6403 0 6403 6444 0 6402 6404 0 6404 6403 0 6404 6405 0 6405 6403 0\n\t\t 6406 6404 0 6402 6406 0 6402 6407 0 6407 6406 0 9589 6407 0 9589 11259 0 11259 6407 0\n\t\t 6409 6405 0 6404 6409 0 6404 6410 0 6410 6409 0 6406 6410 0 6410 6411 0 6411 6409 0\n\t\t 6411 6412 0 6412 6409 0 6411 6413 0 6413 6412 0 6413 6414 0 6414 6412 0 6413 6415 0\n\t\t 6415 6414 0 6415 6416 0 6416 6414 0 6413 6417 0 6417 6415 0 6417 10976 0 10976 6415 0\n\t\t 6415 11966 0 11966 6416 0 10976 11966 0 11966 11912 0 11912 6416 0 10976 10977 0\n\t\t 10977 11966 0 6411 6420 0 6420 6413 0 6420 6417 0 6421 6420 0 6411 6421 0 6410 6421 0\n\t\t 6406 6421 0 6422 6418 0 6418 11040 0 11040 6422 0 11040 6423 0 6423 6422 0 11040 10925 0\n\t\t 10925 6423 0 6424 6422 0 6423 6424 0 6423 6425 0 6425 6424 0 10925 6426 0 6426 6423 0\n\t\t 6426 6425 0 10925 10926 0 10926 6426 0 6426 6427 0 6427 6425 0 10926 6428 0 6428 6426 0\n\t\t 10926 11134 0 11134 6428 0 6428 6429 0 6429 6426 0 6429 6427 0 11134 6430 0 6430 6428 0\n\t\t 6431 6430 0 11134 6431 0 11134 11231 0 11231 6431 0 6430 6432 0 6432 6428 0 6432 6429 0\n\t\t 6431 6432 0 6431 6433 0 6433 6432 0 6424 12013 0 12013 6422 0 12013 12012 0 12012 6422 0\n\t\t 12012 6418 0 12012 10978 0 10978 6418 0 11231 11258 0 11258 6431 0 11258 6434 0 6434 6431 0\n\t\t 6434 6433 0 6434 6435 0 6435 6433 0 6436 6435 0 6434 6436 0 6434 6437 0 6437 6436 0\n\t\t 11258 6437 0 11258 6442 0 6442 6437 0 6438 6436 0 6437 6438 0 6437 6246 0 6442 6246 0\n\t\t 6442 6439 0 6408 6441 0 6441 6440 0 6440 6408 0 6440 12652 0 12652 6408 0 6440 6238 0\n\t\t 6238 12652 0 6439 12652 0 6440 9709 0 6440 6443 0 6443 9709 0 6441 6443 0 6441 9514 0\n\t\t 9514 6443 0 9512 9513 0 9513 6445 0 6445 9512 0 6446 6448 0 6448 6447 0 6447 6446 0\n\t\t 6447 6449 0 6449 6446 0 9939 6446 0;\n\tsetAttr \".ed[21580:21745]\" 6449 9939 0 6449 6366 0 6366 9939 0 6447 6451 0 6451 6449 0\n\t\t 6451 6452 0 6452 6449 0 6452 6453 0 6453 6449 0 6453 6608 0 6608 6449 0 6446 6454 0\n\t\t 6454 6448 0 6454 6455 0 6455 6448 0 9939 9940 0 9940 6446 0 9940 6454 0 6451 6511 0\n\t\t 6511 6452 0 6511 9995 0 9995 6452 0 9982 6453 0 6452 9982 0 9995 9982 0 9982 9729 0\n\t\t 9729 6453 0 9729 9731 0 9731 6453 0 9731 6608 0 9731 12340 0 12340 6608 0 6273 12340 0\n\t\t 9731 6273 0 9731 6271 0 6271 6273 0 9940 6244 0 6244 6454 0 6244 6462 0 6462 6454 0\n\t\t 6244 12802 0 12802 6462 0 12802 6464 0 6464 6462 0 6465 6462 0 6464 6465 0 6465 6454 0\n\t\t 6465 6455 0 6464 6466 0 6466 6465 0 6464 9512 0 9512 6466 0 6445 6466 0 6239 9512 0\n\t\t 6464 6239 0 9513 6466 0 9513 6403 0 6403 6466 0 6403 6465 0 6405 6465 0 6409 6465 0\n\t\t 6409 6455 0 6409 6448 0 6412 6448 0 6414 6448 0 6414 6447 0 6414 11098 0 11098 6447 0\n\t\t 11098 6451 0 11098 11911 0 11911 6451 0 11911 6511 0 6608 6366 0 8736 8738 0 8738 12117 0\n\t\t 12117 8736 0 12117 12119 0 12119 8736 0 8738 8834 0 8834 12117 0 8834 6528 0 6528 12117 0\n\t\t 8924 8923 0 8923 8835 0 8835 8924 0 8835 6517 0 6517 8924 0 6517 12285 0 12285 8924 0\n\t\t 12285 12192 0 12192 8924 0 8737 6525 0 6525 12245 0 12245 8737 0 12245 8829 0 8829 8737 0\n\t\t 6510 8829 0 12245 6510 0 12245 6519 0 6519 6510 0 6519 9013 0 9013 6510 0 9013 12263 0\n\t\t 12263 6510 0 12390 12263 0 9013 12390 0 9013 12272 0 12272 12390 0 12368 6524 0 6524 12464 0\n\t\t 12464 12368 0 12464 6512 0 6512 12368 0 6512 12389 0 12389 12368 0 12389 6476 0 6476 12368 0\n\t\t 9299 6527 0 6527 6480 0 6480 9299 0 6480 6481 0 6481 9299 0 6527 8887 0 8887 6480 0\n\t\t 8887 9033 0 9033 6480 0 6483 6482 0 6482 6529 0 6529 6483 0 6529 9050 0 9050 6483 0\n\t\t 9046 9045 0 9045 9051 0 9051 9046 0 9051 6531 0 6531 9046 0 6480 11870 0 11870 6481 0\n\t\t 9033 11870 0 11870 9061 0 9061 6481 0 9033 9034 0 9034 11870 0 6489 6488 0 6488 9032 0\n\t\t 9032 6489 0 9032 9044 0 9044 6489 0 9044 6485 0 6485 6490 0 6490 9044 0 6490 6489 0\n\t\t 9062 6486 0 6486 6491 0 6491 9062 0 6486 9035 0 9035 6491 0 6491 6558 0 6558 9062 0\n\t\t 9035 12062 0 12062 6491 0 12522 12062 0 9035 12522 0 9035 6489 0 6489 12522 0 6490 6554 0;\n\tsetAttr \".ed[21746:21911]\" 6554 6489 0 6554 12522 0 6493 9062 0 6558 6493 0 6487 12000 0\n\t\t 12000 6494 0 6494 6487 0 12000 11825 0 11825 6494 0 11825 6496 0 6496 6494 0 6496 6520 0\n\t\t 6520 6494 0 6520 12307 0 12307 6494 0 6496 6498 0 6498 6520 0 11825 6498 0 6498 11763 0\n\t\t 11763 6520 0 11759 11763 0 6498 11759 0 6498 11761 0 11761 11759 0 11825 11744 0\n\t\t 11744 6498 0 11744 11761 0 11744 11746 0 11746 11761 0 6502 6495 0 6495 6504 0 6504 6502 0\n\t\t 6495 6493 0 6493 6504 0 6504 6505 0 6505 6502 0 11745 6502 0 6505 11745 0 6493 6559 0\n\t\t 6559 6504 0 6505 6560 0 6560 11745 0 9060 6494 0 12307 9060 0 12307 6526 0 6526 9060 0\n\t\t 9060 6487 0 6558 6559 0 6506 6507 0 6507 9190 0 9190 6506 0 9190 9189 0 9189 6506 0\n\t\t 9189 11760 0 11760 6506 0 11760 6501 0 6501 6506 0 6506 11700 0 11700 6507 0 6501 11700 0\n\t\t 11700 11701 0 11701 6507 0 6501 6503 0 6503 11700 0 6509 6508 0 6508 6561 0 6561 6509 0\n\t\t 6508 11747 0 11747 6561 0 6561 6562 0 6562 6509 0 11747 6560 0 6560 6561 0 12262 6457 0\n\t\t 6457 11910 0 11910 12262 0 11910 6474 0 6474 12262 0 12262 6475 0 6475 6457 0 6475 6458 0\n\t\t 6458 6457 0 6475 6479 0 6479 6458 0 6479 9730 0 9730 6458 0 6479 12465 0 12465 9730 0\n\t\t 12465 12566 0 12566 9730 0 12465 6478 0 6478 12566 0 6478 12565 0 12565 12566 0 11910 6514 0\n\t\t 6514 6474 0 6514 6467 0 6467 6474 0 6514 6515 0 6515 6467 0 6515 6469 0 6469 6467 0\n\t\t 6515 6419 0 6419 6469 0 6419 6470 0 6470 6469 0 6419 6516 0 6516 6470 0 6516 12209 0\n\t\t 12209 6470 0 6516 6518 0 6518 12209 0 6518 6471 0 6471 12209 0 9012 12328 0 12328 6499 0\n\t\t 6499 9012 0 6499 6521 0 6521 9012 0 9012 6473 0 6473 12328 0 6473 6497 0 6497 12328 0\n\t\t 6499 6500 0 6500 6521 0 6500 12273 0 12273 6521 0 6500 6522 0 6522 12273 0 6522 6477 0\n\t\t 6477 12273 0 6522 6523 0 6523 6477 0 6523 12369 0 12369 6477 0 6473 12118 0 12118 6497 0\n\t\t 12118 9300 0 9300 6497 0 12118 6468 0 6468 9300 0 6468 8885 0 8885 9300 0 6468 8922 0\n\t\t 8922 8885 0 8922 8886 0 8886 8885 0 6484 8886 0 8922 6484 0 8922 6530 0 6530 6484 0\n\t\t 6530 6472 0 6472 6484 0 6472 12266 0 12266 6484 0 12184 12199 0 12199 12353 0 12353 12184 0\n\t\t 12353 9732 0 9732 12184 0 12184 12210 0 12210 12199 0 12210 6269 0 6269 12199 0 12210 8929 0\n\t\t 8929 6269 0;\n\tsetAttr \".ed[21912:22077]\" 8929 8904 0 8904 6269 0 8929 8930 0 8930 8904 0 8930 6536 0\n\t\t 6536 8904 0 12727 12745 0 12745 11575 0 11575 12727 0 12716 6218 0 6218 9250 0 9250 12716 0\n\t\t 9250 6582 0 6582 12716 0 12716 6583 0 6583 6218 0 6583 6220 0 6220 6218 0 11186 6216 0\n\t\t 6216 6539 0 6539 11186 0 6539 11170 0 11170 11186 0 6539 6540 0 6540 11170 0 6540 11160 0\n\t\t 11160 11170 0 6540 6213 0 6213 11160 0 6213 11161 0 11161 11160 0 6213 6546 0 6546 11161 0\n\t\t 6546 6585 0 6585 11161 0 6583 9876 0 9876 6220 0 9876 9874 0 9874 6220 0 6580 6221 0\n\t\t 6221 6541 0 6541 6580 0 6541 9877 0 9877 6580 0 6580 9928 0 9928 6221 0 9928 12347 0\n\t\t 12347 6221 0 6543 9927 0 9927 9926 0 9926 6543 0 9926 6212 0 6212 6543 0 9926 6585 0\n\t\t 6585 6212 0 6546 6212 0 6285 6301 0 6300 6351 0 6351 6310 0 6351 12609 0 12895 6351 0\n\t\t 12635 12643 0 12643 6549 0 6549 12635 0 6549 6396 0 6396 12635 0 6549 12602 0 12602 6396 0\n\t\t 6533 6513 0 6513 6551 0 6551 6533 0 6551 6535 0 6535 6533 0 6533 12211 0 12211 6513 0\n\t\t 12211 6459 0 6459 6513 0 9733 6459 0 12211 9733 0 6552 6553 0 6553 6460 0 6460 6552 0\n\t\t 12521 6556 0 6556 6555 0 6555 12521 0 6555 6492 0 6492 12521 0 6555 6491 0 6491 6492 0\n\t\t 6491 6557 0 6557 6492 0 6555 6558 0 6555 6559 0 6555 6504 0 6556 6504 0 6556 6505 0\n\t\t 6556 6560 0 6556 6561 0 12521 6561 0 12521 6562 0 6577 10851 0 10851 10850 0 10850 6577 0\n\t\t 10850 6565 0 6565 6577 0 10850 6566 0 6566 6565 0 6566 6381 0 6567 10857 0 10857 6563 0\n\t\t 6563 6567 0 6568 10857 0 6567 6568 0 6566 10842 0 10842 6381 0 6567 6569 0 6569 6568 0\n\t\t 6563 6570 0 6570 6567 0 10842 6571 0 10842 6371 0 10842 10796 0 10796 6371 0 6573 6570 0\n\t\t 6563 6573 0 6563 6564 0 6564 6573 0 10796 10797 0 10797 6371 0 6574 6572 0 6572 6162 0\n\t\t 6572 6575 0 6575 6162 0 6572 6568 0 6568 6575 0 6569 6575 0 6579 6371 0 6382 6576 0\n\t\t 6576 6565 0 6576 12550 0 12550 6565 0 6390 6576 0 6167 6373 0 6373 6578 0 6370 6578 0\n\t\t 6371 6578 0 6167 6375 0 6168 6375 0 6168 6377 0 6544 6545 0 6545 12833 0 12833 6544 0\n\t\t 12833 6581 0 6581 6544 0 12833 11187 0 11187 6581 0 12833 12723 0 12723 11187 0 12833 6542 0\n\t\t 6542 12723 0 12723 6538 0 6538 11187 0 11187 6584 0 6584 6581 0 11503 6544 0 6581 11503 0;\n\tsetAttr \".ed[22078:22243]\" 6581 6586 0 6586 11503 0 10379 10378 0 10378 10448 0\n\t\t 10448 10379 0 13017 10379 0 10448 13017 0 6596 13017 0 10448 6596 0 10448 11460 0\n\t\t 11460 6596 0 11460 11461 0 11461 6596 0 6605 6596 0 11461 6605 0 11562 13017 0 6596 11562 0\n\t\t 6604 13076 0 13076 11669 0 6590 6397 0 6397 6395 0 6395 6590 0 6590 10501 0 10501 6397 0\n\t\t 10501 6591 0 6591 6397 0 10501 6598 0 6598 6591 0 6598 6537 0 6537 6591 0 6598 6592 0\n\t\t 6592 6537 0 6592 6399 0 6399 6537 0 6592 10397 0 10397 6399 0 10397 11577 0 11577 6399 0\n\t\t 6400 10396 0 10396 10409 0 10409 6400 0 10409 11561 0 11561 6400 0 10409 6594 0 6594 11561 0\n\t\t 6593 11562 0 6596 6604 0 10304 13075 0 13075 10303 0 10303 10304 0 10304 11462 0\n\t\t 11462 13075 0 11462 10502 0 10502 13075 0 6597 6589 0 6589 6588 0 6588 6597 0 6588 10503 0\n\t\t 10503 6597 0 6588 6599 0 6599 10503 0 6599 13037 0 13037 10503 0 6599 6600 0 6600 13037 0\n\t\t 6600 10395 0 10395 13037 0 10408 6601 0 6601 10377 0 10377 10408 0 10377 6603 0 6603 10408 0\n\t\t 6603 6587 0 6587 10408 0 11562 6602 0 6602 13017 0 6605 6604 0 6606 6256 0 6256 6252 0\n\t\t 6607 6366 0 6608 6607 0 6607 6609 0 6607 6610 0 6610 6609 0 6610 10902 0 10902 6609 0\n\t\t 10902 10920 0 6368 6612 0 6612 6611 0 6611 6368 0 6611 6613 0 6613 6368 0 6613 6214 0\n\t\t 6214 6368 0 6214 6614 0 6614 6368 0 6214 6215 0 6215 6614 0 6215 6615 0 6215 6616 0\n\t\t 6215 6217 0 6217 6616 0 6617 6616 0 6217 6617 0 6217 6219 0 6219 6617 0 6219 12417 0\n\t\t 12417 6617 0 12417 6619 0 12417 12334 0 12417 6272 0 6272 12334 0 6621 6623 0 6623 6622 0\n\t\t 6622 6621 0 6622 6624 0 6624 6621 0 6625 6624 0 6622 6625 0 6622 6626 0 6626 6625 0\n\t\t 6627 6625 0 6626 6627 0 6626 6628 0 6628 6627 0 6627 6629 0 6629 6625 0 6629 6630 0\n\t\t 6630 6625 0 6630 6624 0 6630 6631 0 6631 6624 0 6631 6621 0 6631 6632 0 6632 6621 0\n\t\t 6631 6633 0 6633 6632 0 6633 6634 0 6634 6632 0 6635 6633 0 6631 6635 0 6630 6635 0\n\t\t 6636 6635 0 6630 6636 0 6629 6636 0 6636 6637 0 6637 6635 0 6637 6638 0 6638 6635 0\n\t\t 6638 6633 0 6638 6639 0 6639 6633 0 6639 6634 0 6639 6640 0 6640 6634 0 6639 6641 0\n\t\t 6641 6640 0 6641 6642 0 6642 6640 0 6643 6641 0 6639 6643 0 6638 6643 0 6644 6643 0\n\t\t 6638 6644 0 6637 6644 0 6644 6645 0;\n\tsetAttr \".ed[22244:22409]\" 6645 6643 0 6645 6646 0 6646 6643 0 6646 6641 0 6646 6647 0\n\t\t 6647 6641 0 6647 6642 0 6647 6648 0 6648 6642 0 6647 6649 0 6649 6648 0 6649 6650 0\n\t\t 6650 6648 0 6651 6649 0 6647 6651 0 6646 6651 0 6652 6651 0 6646 6652 0 6645 6652 0\n\t\t 6652 6653 0 6653 6651 0 6653 6906 0 6906 6651 0 6906 6649 0 6906 6654 0 6654 6649 0\n\t\t 6654 6650 0 6654 7083 0 7083 6650 0 6655 6645 0 6644 6655 0 6644 6656 0 6656 6655 0\n\t\t 6637 6656 0 6637 6657 0 6657 6656 0 6636 6657 0 6636 6658 0 6658 6657 0 6629 6658 0\n\t\t 6629 6659 0 6659 6658 0 6627 6659 0 6627 6660 0 6660 6659 0 6628 6660 0 6628 6661 0\n\t\t 6661 6660 0 6662 6660 0 6661 6662 0 6661 6663 0 6663 6662 0 6664 6662 0 6663 6664 0\n\t\t 6663 6665 0 6665 6664 0 6666 6664 0 6665 6666 0 6665 6667 0 6667 6666 0 6666 6668 0\n\t\t 6668 6664 0 6668 6669 0 6669 6664 0 6669 6662 0 6669 6670 0 6670 6662 0 6670 6660 0\n\t\t 6670 6659 0 6671 6658 0 6659 6671 0 6670 6671 0 6672 6671 0 6670 6672 0 6669 6672 0\n\t\t 6673 6672 0 6669 6673 0 6668 6673 0 6673 6674 0 6674 6672 0 6674 6675 0 6675 6672 0\n\t\t 6675 6671 0 6675 6676 0 6676 6671 0 6676 6658 0 6676 6657 0 6676 6677 0 6677 6657 0\n\t\t 6677 6656 0 6678 6677 0 6676 6678 0 6675 6678 0 6679 6678 0 6675 6679 0 6674 6679 0\n\t\t 6679 6680 0 6680 6678 0 6680 6681 0 6681 6678 0 6681 6677 0 6681 6682 0 6682 6677 0\n\t\t 6682 6656 0 6682 6655 0 6682 6683 0 6683 6655 0 6683 6684 0 6684 6655 0 6684 6645 0\n\t\t 6684 6652 0 6685 6683 0 6682 6685 0 6681 6685 0 6686 6685 0 6681 6686 0 6680 6686 0\n\t\t 6686 6687 0 6687 6685 0 6687 6688 0 6688 6685 0 6688 6683 0 6688 6689 0 6689 6683 0\n\t\t 6689 6684 0 6689 6690 0 6690 6684 0 6690 6652 0 6690 6653 0 6690 6691 0 6691 6653 0\n\t\t 6691 6903 0 6903 6653 0 6692 6691 0 6690 6692 0 6689 6692 0 6688 6693 0 6693 6689 0\n\t\t 6693 6692 0 6687 6898 0 6898 6688 0 6898 6693 0 6694 6687 0 6686 6694 0 6686 6695 0\n\t\t 6695 6694 0 6680 6695 0 6680 6696 0 6696 6695 0 6679 6696 0 6679 6697 0 6697 6696 0\n\t\t 6674 6697 0 6674 6698 0 6698 6697 0 6673 6698 0 6673 6699 0 6699 6698 0 6668 6699 0\n\t\t 6668 6700 0 6700 6699 0 6666 6700 0 6666 6701 0 6701 6700 0 6667 6701 0 6667 6702 0;\n\tsetAttr \".ed[22410:22575]\" 6702 6701 0 6703 6701 0 6702 6703 0 6702 6704 0 6704 6703 0\n\t\t 6705 6703 0 6704 6705 0 6704 6706 0 6706 6705 0 6707 6705 0 6706 6707 0 6706 6708 0\n\t\t 6708 6707 0 6707 6709 0 6709 6705 0 6709 6710 0 6710 6705 0 6710 6703 0 6710 6711 0\n\t\t 6711 6703 0 6711 6701 0 6711 6700 0 6712 6699 0 6700 6712 0 6711 6712 0 6713 6712 0\n\t\t 6711 6713 0 6710 6713 0 6714 6713 0 6710 6714 0 6709 6714 0 6714 6715 0 6715 6713 0\n\t\t 6715 6716 0 6716 6713 0 6716 6712 0 6716 6717 0 6717 6712 0 6717 6699 0 6717 6698 0\n\t\t 6717 6718 0 6718 6698 0 6718 6697 0 6719 6718 0 6717 6719 0 6716 6719 0 6720 6719 0\n\t\t 6716 6720 0 6715 6720 0 6720 6721 0 6721 6719 0 6721 6722 0 6722 6719 0 6722 6718 0\n\t\t 6722 6723 0 6723 6718 0 6723 6697 0 6723 6696 0 6723 6724 0 6724 6696 0 6724 6695 0\n\t\t 6725 6724 0 6723 6725 0 6722 6725 0 6726 6725 0 6722 6726 0 6721 6726 0 6726 6727 0\n\t\t 6727 6725 0 6727 6728 0 6728 6725 0 6728 6724 0 6728 6729 0 6729 6724 0 6729 6695 0\n\t\t 6729 6694 0 6729 6731 0 6731 6694 0 6731 6896 0 6896 6694 0 6728 6730 0 6730 6729 0\n\t\t 6730 6731 0 6727 6732 0 6732 6728 0 6732 6730 0 6733 6727 0 6726 6733 0 6726 6734 0\n\t\t 6734 6733 0 6721 6734 0 6721 6735 0 6735 6734 0 6720 6735 0 6720 6736 0 6736 6735 0\n\t\t 6715 6736 0 6715 6737 0 6737 6736 0 6714 6737 0 6714 6738 0 6738 6737 0 6709 6738 0\n\t\t 6709 6739 0 6739 6738 0 6707 6739 0 6707 6740 0 6740 6739 0 6708 6740 0 6708 6741 0\n\t\t 6741 6740 0 6742 6740 0 6741 6742 0 6741 6743 0 6743 6742 0 6744 6742 0 6743 6744 0\n\t\t 6743 6745 0 6745 6744 0 6746 6744 0 6745 6746 0 6745 6747 0 6747 6746 0 6746 6748 0\n\t\t 6748 6744 0 6748 6749 0 6749 6744 0 6749 6742 0 6749 6750 0 6750 6742 0 6750 6740 0\n\t\t 6750 6739 0 6751 6738 0 6739 6751 0 6750 6751 0 6752 6751 0 6750 6752 0 6749 6752 0\n\t\t 6753 6752 0 6749 6753 0 6748 6753 0 6753 6754 0 6754 6752 0 6754 6755 0 6755 6752 0\n\t\t 6755 6751 0 6755 6756 0 6756 6751 0 6756 6738 0 6756 6737 0 6756 6757 0 6757 6737 0\n\t\t 6757 6736 0 6758 6757 0 6756 6758 0 6755 6758 0 6759 6758 0 6755 6759 0 6754 6759 0\n\t\t 6759 6760 0 6760 6758 0 6760 6761 0 6761 6758 0 6761 6757 0 6761 6762 0 6762 6757 0;\n\tsetAttr \".ed[22576:22741]\" 6762 6736 0 6762 6735 0 6762 6763 0 6763 6735 0 6763 6734 0\n\t\t 6764 6763 0 6762 6764 0 6761 6764 0 6765 6764 0 6761 6765 0 6760 6765 0 6765 6766 0\n\t\t 6766 6764 0 6766 6767 0 6767 6764 0 6767 6763 0 6767 6768 0 6768 6763 0 6768 6734 0\n\t\t 6768 6733 0 6768 6890 0 6890 6733 0 6890 7030 0 7030 6733 0 6767 6769 0 6769 6768 0\n\t\t 6769 6890 0 6766 6887 0 6887 6767 0 6887 6769 0 6770 6766 0 6765 6770 0 6765 6771 0\n\t\t 6771 6770 0 6760 6771 0 6760 6772 0 6772 6771 0 6759 6772 0 6759 6773 0 6773 6772 0\n\t\t 6754 6773 0 6754 6774 0 6774 6773 0 6753 6774 0 6753 6775 0 6775 6774 0 6748 6775 0\n\t\t 6748 6776 0 6776 6775 0 6746 6776 0 6746 6777 0 6777 6776 0 6747 6777 0 6747 6778 0\n\t\t 6778 6777 0 6779 6777 0 6778 6779 0 6778 6780 0 6780 6779 0 6781 6779 0 6780 6781 0\n\t\t 6780 6782 0 6782 6781 0 6783 6781 0 6782 6783 0 6782 6784 0 6784 6783 0 6783 6785 0\n\t\t 6785 6781 0 6785 6786 0 6786 6781 0 6786 6779 0 6786 6787 0 6787 6779 0 6787 6777 0\n\t\t 6787 6776 0 6788 6775 0 6776 6788 0 6787 6788 0 6789 6788 0 6787 6789 0 6786 6789 0\n\t\t 6790 6789 0 6786 6790 0 6785 6790 0 6790 6791 0 6791 6789 0 6791 6792 0 6792 6789 0\n\t\t 6792 6788 0 6792 6793 0 6793 6788 0 6793 6775 0 6793 6774 0 6793 6794 0 6794 6774 0\n\t\t 6794 6773 0 6795 6794 0 6793 6795 0 6792 6795 0 6796 6795 0 6792 6796 0 6791 6796 0\n\t\t 6796 6797 0 6797 6795 0 6797 6798 0 6798 6795 0 6798 6794 0 6798 6799 0 6799 6794 0\n\t\t 6799 6773 0 6799 6772 0 6799 6800 0 6800 6772 0 6800 6771 0 6801 6800 0 6799 6801 0\n\t\t 6798 6801 0 6802 6801 0 6798 6802 0 6797 6802 0 6802 6803 0 6803 6801 0 6803 6804 0\n\t\t 6804 6801 0 6804 6800 0 6804 6805 0 6805 6800 0 6805 6771 0 6805 6770 0 6805 6806 0\n\t\t 6806 6770 0 6806 6885 0 6885 6770 0 6804 6807 0 6807 6805 0 6807 6806 0 6803 6881 0\n\t\t 6881 6804 0 6881 6807 0 6808 6803 0 6802 6808 0 6802 6809 0 6809 6808 0 6797 6809 0\n\t\t 6797 6810 0 6810 6809 0 6796 6810 0 6796 6811 0 6811 6810 0 6791 6811 0 6791 6812 0\n\t\t 6812 6811 0 6790 6812 0 6790 6813 0 6813 6812 0 6785 6813 0 6785 6814 0 6814 6813 0\n\t\t 6783 6814 0 6783 6815 0 6815 6814 0 6784 6815 0 6784 6816 0 6816 6815 0 6817 6815 0;\n\tsetAttr \".ed[22742:22907]\" 6816 6817 0 6816 6818 0 6818 6817 0 6819 6817 0 6818 6819 0\n\t\t 6818 6820 0 6820 6819 0 6821 6819 0 6820 6821 0 6820 6822 0 6822 6821 0 6821 6823 0\n\t\t 6823 6819 0 6823 6824 0 6824 6819 0 6824 6817 0 6824 6825 0 6825 6817 0 6825 6815 0\n\t\t 6825 6814 0 6826 6813 0 6814 6826 0 6825 6826 0 6827 6826 0 6825 6827 0 6824 6827 0\n\t\t 6823 6828 0 6828 6824 0 6828 6827 0 6828 6829 0 6829 6827 0 6829 6830 0 6830 6827 0\n\t\t 6830 6826 0 6830 6831 0 6831 6826 0 6831 6813 0 6831 6812 0 6831 6832 0 6832 6812 0\n\t\t 6832 6811 0 6833 6832 0 6831 6833 0 6830 6833 0 6829 6834 0 6834 6830 0 6834 6833 0\n\t\t 6834 6835 0 6835 6833 0 6835 6836 0 6836 6833 0 6836 6832 0 6836 6837 0 6837 6832 0\n\t\t 6837 6811 0 6837 6810 0 6837 6838 0 6838 6810 0 6838 6809 0 6839 6838 0 6837 6839 0\n\t\t 6836 6839 0 6835 6840 0 6840 6836 0 6840 6839 0 6840 6841 0 6841 6839 0 6841 6842 0\n\t\t 6842 6839 0 6842 6838 0 6842 6843 0 6843 6838 0 6843 6809 0 6843 6808 0 6843 6844 0\n\t\t 6844 6808 0 6844 6879 0 6879 6808 0 6842 6876 0 6876 6843 0 6876 6844 0 6845 6840 0\n\t\t 6835 6845 0 6845 6841 0 6835 6846 0 6846 6845 0 6847 6846 0 6835 6847 0 6848 6846 0\n\t\t 6847 6848 0 6847 6849 0 6849 6848 0 6847 6850 0 6850 6849 0 6829 6850 0 6847 6829 0\n\t\t 6851 6850 0 6829 6851 0 6852 6850 0 6851 6852 0 6852 6849 0 6851 6853 0 6853 6852 0\n\t\t 6851 6854 0 6854 6853 0 6823 6854 0 6851 6823 0 6855 6854 0 6823 6855 0 6856 6854 0\n\t\t 6855 6856 0 6856 6853 0 6855 6857 0 6857 6856 0 6855 6858 0 6858 6857 0 6822 6858 0\n\t\t 6855 6822 0 6855 6821 0 6858 6859 0 6859 6857 0 6851 6828 0 6858 6860 0 6860 6859 0\n\t\t 6860 6861 0 6861 6859 0 6860 6862 0 6862 6861 0 6863 6862 0 6860 6863 0 6864 6862 0\n\t\t 6863 6864 0 6865 6862 0 6864 6865 0 6865 6861 0 6864 6866 0 6866 6865 0 6864 6867 0\n\t\t 6867 6866 0 6868 6867 0 6864 6868 0 6869 6867 0 6868 6869 0 6870 6867 0 6869 6870 0\n\t\t 6870 6866 0 6869 6871 0 6871 6870 0 6869 6872 0 6872 6871 0 6873 6872 0 6869 6873 0\n\t\t 7035 6872 0 6873 7035 0 6874 6872 0 7035 6874 0 6874 6871 0 7035 7034 0 7034 6874 0\n\t\t 6873 6875 0 6875 7035 0 6876 6875 0 6873 6876 0 6873 6877 0 6877 6876 0 6877 6844 0;\n\tsetAttr \".ed[22908:23073]\" 6877 6878 0 6878 6844 0 6878 6879 0 6878 6880 0 6880 6879 0\n\t\t 6881 6879 0 6880 6881 0 6880 6882 0 6882 6881 0 6882 6807 0 6882 6883 0 6883 6807 0\n\t\t 6883 6806 0 6883 6884 0 6884 6806 0 6884 6885 0 6884 6886 0 6886 6885 0 6887 6885 0\n\t\t 6886 6887 0 6886 6888 0 6888 6887 0 6888 6769 0 6888 6889 0 6889 6769 0 6889 6890 0\n\t\t 6889 6891 0 6891 6890 0 6891 7030 0 6891 6892 0 6892 7030 0 6732 7030 0 6892 6732 0\n\t\t 6892 6893 0 6893 6732 0 6893 6730 0 6893 6894 0 6894 6730 0 6894 6731 0 6894 6895 0\n\t\t 6895 6731 0 6895 6896 0 6895 6897 0 6897 6896 0 6898 6896 0 6897 6898 0 6897 6899 0\n\t\t 6899 6898 0 6899 6693 0 6899 6900 0 6900 6693 0 6900 6692 0 6900 6901 0 6901 6692 0\n\t\t 6901 6691 0 6901 6902 0 6902 6691 0 6902 6903 0 6902 6904 0 6904 6903 0 6905 6903 0\n\t\t 6904 6905 0 6905 6906 0 6906 6903 0 6905 6654 0 6905 6907 0 6907 6654 0 6904 6908 0\n\t\t 6908 6905 0 6908 6907 0 6908 6909 0 6909 6907 0 6910 6907 0 6909 6910 0 6909 6911 0\n\t\t 6911 6910 0 6909 6912 0 6912 6911 0 6912 6913 0 6913 6911 0 6914 6912 0 6909 6914 0\n\t\t 6908 6914 0 6915 6914 0 6908 6915 0 6904 6915 0 6915 6916 0 6916 6914 0 6916 6917 0\n\t\t 6917 6914 0 6917 6912 0 6917 6918 0 6918 6912 0 6918 6913 0 6918 6919 0 6919 6913 0\n\t\t 6918 6920 0 6920 6919 0 6920 6921 0 6921 6919 0 6922 6920 0 6918 6922 0 6917 6922 0\n\t\t 6923 6922 0 6917 6923 0 6916 6923 0 6923 6924 0 6924 6922 0 6924 6925 0 6925 6922 0\n\t\t 6925 6920 0 6925 6926 0 6926 6920 0 6926 6921 0 6926 6927 0 6927 6921 0 6926 6928 0\n\t\t 6928 6927 0 6928 6929 0 6929 6927 0 6930 6928 0 6926 6930 0 6925 6930 0 6931 6930 0\n\t\t 6925 6931 0 6924 6931 0 6931 6628 0 6628 6930 0 6626 6930 0 6626 6928 0 6622 6928 0\n\t\t 6622 6929 0 6623 6929 0 6932 6924 0 6923 6932 0 6923 6933 0 6933 6932 0 6916 6933 0\n\t\t 6916 6934 0 6934 6933 0 6915 6934 0 6915 6935 0 6935 6934 0 6904 6935 0 6902 6935 0\n\t\t 6936 6935 0 6902 6936 0 6901 6936 0 6937 6936 0 6901 6937 0 6900 6937 0 6938 6937 0\n\t\t 6900 6938 0 6899 6938 0 6938 6939 0 6939 6937 0 6939 6940 0 6940 6937 0 6940 6936 0\n\t\t 6940 6941 0 6941 6936 0 6941 6935 0 6941 6934 0 6942 6933 0 6934 6942 0 6941 6942 0;\n\tsetAttr \".ed[23074:23239]\" 6943 6942 0 6941 6943 0 6940 6943 0 6944 6943 0 6940 6944 0\n\t\t 6939 6944 0 6944 6945 0 6945 6943 0 6945 6946 0 6946 6943 0 6946 6942 0 6946 6947 0\n\t\t 6947 6942 0 6947 6933 0 6947 6932 0 6947 6948 0 6948 6932 0 6948 6949 0 6949 6932 0\n\t\t 6949 6924 0 6949 6931 0 6950 6948 0 6947 6950 0 6946 6950 0 6951 6950 0 6946 6951 0\n\t\t 6945 6951 0 6951 6667 0 6667 6950 0 6665 6950 0 6665 6948 0 6663 6948 0 6663 6949 0\n\t\t 6661 6949 0 6661 6931 0 6952 6945 0 6944 6952 0 6944 6953 0 6953 6952 0 6939 6953 0\n\t\t 6939 6954 0 6954 6953 0 6938 6954 0 6938 6955 0 6955 6954 0 6899 6955 0 6897 6955 0\n\t\t 6956 6955 0 6897 6956 0 6895 6956 0 6957 6956 0 6895 6957 0 6894 6957 0 6958 6957 0\n\t\t 6894 6958 0 6893 6958 0 6958 6959 0 6959 6957 0 6959 6960 0 6960 6957 0 6960 6956 0\n\t\t 6960 6961 0 6961 6956 0 6961 6955 0 6961 6954 0 6962 6953 0 6954 6962 0 6961 6962 0\n\t\t 6963 6962 0 6961 6963 0 6960 6963 0 6964 6963 0 6960 6964 0 6959 6964 0 6964 6965 0\n\t\t 6965 6963 0 6965 6966 0 6966 6963 0 6966 6962 0 6966 6967 0 6967 6962 0 6967 6953 0\n\t\t 6967 6952 0 6967 6968 0 6968 6952 0 6968 6969 0 6969 6952 0 6969 6945 0 6969 6951 0\n\t\t 6970 6968 0 6967 6970 0 6966 6970 0 6971 6970 0 6966 6971 0 6965 6971 0 6971 6708 0\n\t\t 6708 6970 0 6706 6970 0 6706 6968 0 6704 6968 0 6704 6969 0 6702 6969 0 6702 6951 0\n\t\t 6972 6965 0 6964 6972 0 6964 6973 0 6973 6972 0 6959 6973 0 6959 6974 0 6974 6973 0\n\t\t 6958 6974 0 6958 6975 0 6975 6974 0 6893 6975 0 6892 6975 0 6976 6975 0 6892 6976 0\n\t\t 6891 6976 0 6977 6976 0 6891 6977 0 6889 6977 0 6978 6977 0 6889 6978 0 6888 6978 0\n\t\t 6978 6979 0 6979 6977 0 6979 6980 0 6980 6977 0 6980 6976 0 6980 6981 0 6981 6976 0\n\t\t 6981 6975 0 6981 6974 0 6982 6973 0 6974 6982 0 6981 6982 0 6983 6982 0 6981 6983 0\n\t\t 6980 6983 0 6984 6983 0 6980 6984 0 6979 6984 0 6984 6985 0 6985 6983 0 6985 6986 0\n\t\t 6986 6983 0 6986 6982 0 6986 6987 0 6987 6982 0 6987 6973 0 6987 6972 0 6987 6988 0\n\t\t 6988 6972 0 6988 6989 0 6989 6972 0 6989 6965 0 6989 6971 0 6990 6988 0 6987 6990 0\n\t\t 6986 6990 0 6991 6990 0 6986 6991 0 6985 6991 0 6991 6747 0 6747 6990 0 6745 6990 0;\n\tsetAttr \".ed[23240:23405]\" 6745 6988 0 6743 6988 0 6743 6989 0 6741 6989 0 6741 6971 0\n\t\t 6992 6985 0 6984 6992 0 6984 6993 0 6993 6992 0 6979 6993 0 6979 6994 0 6994 6993 0\n\t\t 6978 6994 0 6978 6995 0 6995 6994 0 6888 6995 0 6886 6995 0 6996 6995 0 6886 6996 0\n\t\t 6884 6996 0 6997 6996 0 6884 6997 0 6883 6997 0 6998 6997 0 6883 6998 0 6882 6998 0\n\t\t 6998 6999 0 6999 6997 0 6999 7000 0 7000 6997 0 7000 6996 0 7000 7001 0 7001 6996 0\n\t\t 7001 6995 0 7001 6994 0 7002 6993 0 6994 7002 0 7001 7002 0 7003 7002 0 7001 7003 0\n\t\t 7000 7003 0 7004 7003 0 7000 7004 0 6999 7004 0 7004 7005 0 7005 7003 0 7005 7006 0\n\t\t 7006 7003 0 7006 7002 0 7006 7007 0 7007 7002 0 7007 6993 0 7007 6992 0 7007 7008 0\n\t\t 7008 6992 0 7008 7009 0 7009 6992 0 7009 6985 0 7009 6991 0 7010 7008 0 7007 7010 0\n\t\t 7006 7010 0 7011 7010 0 7006 7011 0 7005 7011 0 7011 6784 0 6784 7010 0 6782 7010 0\n\t\t 6782 7008 0 6780 7008 0 6780 7009 0 6778 7009 0 6778 6991 0 7012 7005 0 7004 7012 0\n\t\t 7004 7013 0 7013 7012 0 6999 7013 0 6999 7014 0 7014 7013 0 6998 7014 0 6998 7015 0\n\t\t 7015 7014 0 6882 7015 0 6880 7015 0 7016 7015 0 6880 7016 0 6878 7016 0 7017 7016 0\n\t\t 6878 7017 0 6877 7017 0 7018 7017 0 6877 7018 0 6873 7018 0 7018 6868 0 6868 7017 0\n\t\t 6868 7019 0 7019 7017 0 7019 7016 0 7019 7020 0 7020 7016 0 7020 7015 0 7020 7014 0\n\t\t 7021 7013 0 7014 7021 0 7020 7021 0 7022 7021 0 7020 7022 0 7019 7022 0 6868 7023 0\n\t\t 7023 7019 0 7023 7022 0 7023 6863 0 6863 7022 0 6863 7024 0 7024 7022 0 7024 7021 0\n\t\t 7024 7025 0 7025 7021 0 7025 7013 0 7025 7012 0 7025 7026 0 7026 7012 0 7026 7027 0\n\t\t 7027 7012 0 7027 7005 0 7027 7011 0 7028 7026 0 7025 7028 0 7024 7028 0 6863 7029 0\n\t\t 7029 7024 0 7029 7028 0 7029 6822 0 6822 7028 0 6820 7028 0 6820 7026 0 6818 7026 0\n\t\t 6818 7027 0 6816 7027 0 6816 7011 0 7023 6864 0 7029 6858 0 7029 6860 0 7018 6869 0\n\t\t 6907 7083 0 6910 7083 0 6687 6896 0 6727 7030 0 6766 6885 0 6803 6879 0 6841 6875 0\n\t\t 6875 6842 0 6847 6834 0 7031 6845 0 6846 7031 0 6848 7031 0 7031 7032 0 7032 6845 0\n\t\t 7032 7033 0 7033 6845 0 7033 6841 0 7033 7035 0 7035 6841 0 7032 7034 0 7034 7033 0;\n\tsetAttr \".ed[23406:23571]\" 7036 7038 0 7038 7037 0 7037 7036 0 7037 7039 0 7039 7036 0\n\t\t 7040 7036 0 7039 7040 0 7039 7041 0 7041 7040 0 7041 6623 0 6623 7040 0 6621 7040 0\n\t\t 6632 7040 0 6632 7042 0 7042 7040 0 7042 7036 0 7042 7043 0 7043 7036 0 7043 7038 0\n\t\t 7043 7044 0 7044 7038 0 7043 7045 0 7045 7044 0 7045 7046 0 7046 7044 0 7047 7045 0\n\t\t 7043 7047 0 7042 7047 0 6634 7042 0 6634 7047 0 6640 7047 0 6640 7048 0 7048 7047 0\n\t\t 7048 7045 0 7048 7049 0 7049 7045 0 7049 7046 0 7049 7050 0 7050 7046 0 7049 7051 0\n\t\t 7051 7050 0 7051 7052 0 7052 7050 0 7053 7051 0 7049 7053 0 7048 7053 0 6642 7048 0\n\t\t 6642 7053 0 6648 7053 0 6648 7054 0 7054 7053 0 7054 7051 0 7054 7055 0 7055 7051 0\n\t\t 7055 7052 0 7055 7056 0 7056 7052 0 7055 7057 0 7057 7056 0 7057 7058 0 7058 7056 0\n\t\t 7059 7057 0 7055 7059 0 7054 7059 0 6650 7054 0 6650 7059 0 7083 7059 0 7083 7066 0\n\t\t 7066 7059 0 7066 7057 0 7066 7060 0 7060 7057 0 7060 7058 0 7060 7061 0 7061 7058 0\n\t\t 7062 7063 0 7063 7061 0 7061 7062 0 7060 7062 0 7062 7064 0 7064 7063 0 7065 7064 0\n\t\t 7062 7065 0 7062 7084 0 7084 7065 0 7060 7084 0 7066 7084 0 6911 7065 0 7084 6911 0\n\t\t 7084 6910 0 7064 7067 0 7067 7063 0 7064 7068 0 7068 7067 0 7068 7069 0 7069 7067 0\n\t\t 7070 7068 0 7064 7070 0 7065 7070 0 6913 7065 0 6913 7070 0 6919 7070 0 6919 7071 0\n\t\t 7071 7070 0 7071 7068 0 7071 7072 0 7072 7068 0 7072 7069 0 7072 7073 0 7073 7069 0\n\t\t 7072 7074 0 7074 7073 0 7074 7075 0 7075 7073 0 7076 7074 0 7072 7076 0 7071 7076 0\n\t\t 6921 7071 0 6921 7076 0 6927 7076 0 6927 7077 0 7077 7076 0 7077 7074 0 7077 7078 0\n\t\t 7078 7074 0 7078 7075 0 7078 7079 0 7079 7075 0 7078 7080 0 7080 7079 0 7080 7081 0\n\t\t 7081 7079 0 7082 7080 0 7078 7082 0 7077 7082 0 6929 7077 0 6929 7082 0 6623 7082 0\n\t\t 7041 7082 0 7041 7080 0 7039 7080 0 7039 7081 0 7037 7081 0 6910 7066 0 7085 7087 0\n\t\t 7087 7086 0 7086 7085 0 7086 7088 0 7088 7085 0 7089 7088 0 7086 7089 0 7086 7090 0\n\t\t 7090 7089 0 7091 7089 0 7090 7091 0 7090 7092 0 7092 7091 0 7091 7093 0 7093 7089 0\n\t\t 7093 7094 0 7094 7089 0 7094 7088 0 7094 7095 0 7095 7088 0 7095 7085 0 7095 7096 0;\n\tsetAttr \".ed[23572:23737]\" 7096 7085 0 7095 7097 0 7097 7096 0 7097 7098 0 7098 7096 0\n\t\t 7099 7097 0 7095 7099 0 7094 7099 0 7100 7099 0 7094 7100 0 7093 7100 0 7100 7101 0\n\t\t 7101 7099 0 7101 7102 0 7102 7099 0 7102 7097 0 7102 7103 0 7103 7097 0 7103 7098 0\n\t\t 7103 7104 0 7104 7098 0 7103 7105 0 7105 7104 0 7105 7106 0 7106 7104 0 7107 7105 0\n\t\t 7103 7107 0 7102 7107 0 7108 7107 0 7102 7108 0 7101 7108 0 7108 7109 0 7109 7107 0\n\t\t 7109 7110 0 7110 7107 0 7110 7105 0 7110 7111 0 7111 7105 0 7111 7106 0 7111 7112 0\n\t\t 7112 7106 0 7111 7113 0 7113 7112 0 7113 7114 0 7114 7112 0 7115 7113 0 7111 7115 0\n\t\t 7110 7115 0 7116 7115 0 7110 7116 0 7109 7116 0 7116 7117 0 7117 7115 0 7117 7148 0\n\t\t 7148 7115 0 7148 7113 0 7148 7145 0 7145 7113 0 7145 7114 0 7145 7543 0 7543 7114 0\n\t\t 7118 7106 0 7112 7118 0 7118 7119 0 7119 7106 0 7120 7119 0 7118 7120 0 7120 7121 0\n\t\t 7121 7119 0 7121 7122 0 7122 7119 0 7121 7123 0 7123 7122 0 7123 7124 0 7124 7122 0\n\t\t 7123 7125 0 7125 7124 0 7125 7126 0 7126 7124 0 7127 7126 0 7125 7127 0 7125 7128 0\n\t\t 7128 7127 0 7127 7087 0 7087 7126 0 7085 7126 0 7096 7124 0 7126 7096 0 7098 7124 0\n\t\t 7098 7122 0 7104 7119 0 7122 7104 0 7118 7129 0 7129 7120 0 7127 7130 0 7130 7087 0\n\t\t 7130 7131 0 7131 7087 0 7131 7086 0 7131 7132 0 7132 7086 0 7131 7133 0 7133 7132 0\n\t\t 7133 7134 0 7134 7132 0 7133 7135 0 7135 7134 0 7135 7136 0 7136 7134 0 7135 7137 0\n\t\t 7137 7136 0 7137 7138 0 7138 7136 0 7137 7139 0 7139 7138 0 7139 7140 0 7140 7138 0\n\t\t 7139 7141 0 7141 7140 0 7141 7142 0 7142 7140 0 7141 7143 0 7143 7142 0 7143 7144 0\n\t\t 7144 7142 0 7143 7543 0 7543 7144 0 7145 7144 0 7146 7142 0 7144 7146 0 7144 7147 0\n\t\t 7147 7146 0 7145 7147 0 7148 7147 0 7582 7147 0 7148 7582 0 7117 7582 0 7582 7149 0\n\t\t 7149 7147 0 7149 7146 0 7150 7140 0 7142 7150 0 7146 7150 0 7151 7150 0 7146 7151 0\n\t\t 7149 7151 0 7151 7152 0 7152 7150 0 7152 7153 0 7153 7150 0 7153 7140 0 7153 7138 0\n\t\t 7153 7154 0 7154 7138 0 7154 7136 0 7155 7154 0 7153 7155 0 7152 7155 0 7155 7156 0\n\t\t 7156 7154 0 7156 7157 0 7157 7154 0 7157 7136 0 7157 7134 0 7157 7158 0 7158 7134 0;\n\tsetAttr \".ed[23738:23903]\" 7158 7132 0 7159 7158 0 7157 7159 0 7156 7159 0 7159 7092 0\n\t\t 7092 7158 0 7090 7158 0 7090 7132 0 7160 7155 0 7152 7160 0 7152 7161 0 7161 7160 0\n\t\t 7151 7161 0 7151 7162 0 7162 7161 0 7149 7162 0 7149 7163 0 7163 7162 0 7582 7163 0\n\t\t 7582 7581 0 7581 7163 0 7164 7163 0 7581 7164 0 7581 7165 0 7165 7164 0 7166 7164 0\n\t\t 7165 7166 0 7165 7583 0 7583 7166 0 7167 7166 0 7583 7167 0 7583 7584 0 7584 7167 0\n\t\t 7168 7167 0 7584 7168 0 7584 7169 0 7169 7168 0 7170 7168 0 7169 7170 0 7169 7244 0\n\t\t 7244 7170 0 7171 7170 0 7244 7171 0 7244 7172 0 7172 7171 0 7173 7171 0 7172 7173 0\n\t\t 7172 7245 0 7245 7173 0 7168 7174 0 7174 7167 0 7174 7175 0 7175 7167 0 7175 7166 0\n\t\t 7176 7174 0 7168 7176 0 7170 7176 0 7177 7176 0 7170 7177 0 7171 7177 0 7178 7177 0\n\t\t 7171 7178 0 7173 7178 0 7178 7179 0 7179 7177 0 7179 7180 0 7180 7177 0 7180 7176 0\n\t\t 7180 7181 0 7181 7176 0 7181 7174 0 7181 7182 0 7182 7174 0 7182 7175 0 7182 7183 0\n\t\t 7183 7175 0 7182 7184 0 7184 7183 0 7184 7185 0 7185 7183 0 7186 7184 0 7182 7186 0\n\t\t 7181 7186 0 7187 7186 0 7181 7187 0 7180 7187 0 7188 7187 0 7180 7188 0 7179 7188 0\n\t\t 7188 7189 0 7189 7187 0 7189 7190 0 7190 7187 0 7190 7186 0 7190 7191 0 7191 7186 0\n\t\t 7191 7184 0 7191 7192 0 7192 7184 0 7192 7185 0 7192 7193 0 7193 7185 0 7192 7194 0\n\t\t 7194 7193 0 7194 7195 0 7195 7193 0 7196 7194 0 7192 7196 0 7191 7196 0 7197 7196 0\n\t\t 7191 7197 0 7190 7197 0 7198 7197 0 7190 7198 0 7189 7198 0 7198 7199 0 7199 7197 0\n\t\t 7199 7200 0 7200 7197 0 7200 7196 0 7199 7201 0 7201 7200 0 7201 7202 0 7202 7200 0\n\t\t 7203 7200 0 7202 7203 0 7203 7196 0 7203 7194 0 7202 7204 0 7204 7203 0 7205 7203 0\n\t\t 7204 7205 0 7205 7194 0 7205 7195 0 7204 7206 0 7206 7205 0 7207 7205 0 7206 7207 0\n\t\t 7207 7195 0 7206 7208 0 7208 7207 0 7201 7209 0 7209 7202 0 7209 7210 0 7210 7202 0\n\t\t 7210 7204 0 7210 7211 0 7211 7204 0 7211 7206 0 7211 7212 0 7212 7206 0 7212 7208 0\n\t\t 7212 7213 0 7213 7208 0 7212 7214 0 7214 7213 0 7214 7215 0 7215 7213 0 7216 7214 0\n\t\t 7212 7216 0 7211 7216 0 7217 7216 0 7211 7217 0 7210 7217 0 7218 7217 0 7210 7218 0;\n\tsetAttr \".ed[23904:24069]\" 7209 7218 0 7218 7219 0 7219 7217 0 7219 7220 0 7220 7217 0\n\t\t 7220 7216 0 7220 7221 0 7221 7216 0 7221 7214 0 7221 7222 0 7222 7214 0 7222 7215 0\n\t\t 7222 7223 0 7223 7215 0 7222 7224 0 7224 7223 0 7224 7225 0 7225 7223 0 7226 7224 0\n\t\t 7222 7226 0 7221 7226 0 7227 7226 0 7221 7227 0 7220 7227 0 7228 7227 0 7220 7228 0\n\t\t 7219 7228 0 7228 7229 0 7229 7227 0 7229 7230 0 7230 7227 0 7230 7226 0 7230 7231 0\n\t\t 7231 7226 0 7231 7224 0 7231 7232 0 7232 7224 0 7232 7225 0 7232 7233 0 7233 7225 0\n\t\t 7232 7234 0 7234 7233 0 7234 7235 0 7235 7233 0 7236 7234 0 7232 7236 0 7231 7236 0\n\t\t 7237 7236 0 7231 7237 0 7230 7237 0 7238 7237 0 7230 7238 0 7229 7238 0 7238 7239 0\n\t\t 7239 7237 0 7239 7240 0 7240 7237 0 7240 7236 0 7240 7241 0 7241 7236 0 7241 7234 0\n\t\t 7241 7242 0 7242 7234 0 7242 7235 0 7242 7243 0 7243 7235 0 7242 7169 0 7169 7243 0\n\t\t 7584 7243 0 7242 7244 0 7241 7244 0 7240 7172 0 7172 7241 0 7239 7245 0 7245 7240 0\n\t\t 7246 7239 0 7238 7246 0 7238 7247 0 7247 7246 0 7229 7247 0 7229 7248 0 7248 7247 0\n\t\t 7228 7248 0 7228 7249 0 7249 7248 0 7219 7249 0 7219 7250 0 7250 7249 0 7218 7250 0\n\t\t 7218 7251 0 7251 7250 0 7209 7251 0 7209 7252 0 7252 7251 0 7201 7252 0 7201 7253 0\n\t\t 7253 7252 0 7199 7253 0 7199 7254 0 7254 7253 0 7255 7253 0 7254 7255 0 7254 7256 0\n\t\t 7256 7255 0 7257 7255 0 7256 7257 0 7256 7258 0 7258 7257 0 7259 7257 0 7258 7259 0\n\t\t 7258 7260 0 7260 7259 0 7259 7261 0 7261 7257 0 7261 11818 0 11818 7257 0 11818 7255 0\n\t\t 11818 7263 0 7263 7255 0 7263 7253 0 7263 7252 0 7264 7251 0 7252 7264 0 7263 7264 0\n\t\t 7265 7264 0 7263 7265 0 7263 7262 0 7262 7265 0 7266 7265 0 7262 7266 0 7262 7261 0\n\t\t 7261 7266 0 7266 7267 0 7267 7265 0 7267 7268 0 7268 7265 0 7268 7264 0 7268 7269 0\n\t\t 7269 7264 0 7269 7251 0 7269 7250 0 7269 7270 0 7270 7250 0 7270 7249 0 7271 7270 0\n\t\t 7269 7271 0 7268 7271 0 7272 7271 0 7268 7272 0 7267 7272 0 7272 7273 0 7273 7271 0\n\t\t 7273 7274 0 7274 7271 0 7274 7270 0 7274 7275 0 7275 7270 0 7275 7249 0 7275 7248 0\n\t\t 7275 7276 0 7276 7248 0 7276 7247 0 7277 7276 0 7275 7277 0 7274 7277 0 7278 7277 0;\n\tsetAttr \".ed[24070:24235]\" 7274 7278 0 7273 7278 0 7278 7279 0 7279 7277 0 7279 7280 0\n\t\t 7280 7277 0 7280 7276 0 7280 7281 0 7281 7276 0 7281 7247 0 7281 7246 0 7281 7444 0\n\t\t 7444 7246 0 7444 7525 0 7525 7246 0 7280 7442 0 7442 7281 0 7442 7444 0 7279 7527 0\n\t\t 7527 7280 0 7527 7442 0 7282 7279 0 7278 7282 0 7278 7283 0 7283 7282 0 7273 7283 0\n\t\t 7273 7284 0 7284 7283 0 7272 7284 0 7272 7285 0 7285 7284 0 7267 7285 0 7267 7286 0\n\t\t 7286 7285 0 7266 7286 0 7266 7287 0 7287 7286 0 7261 7287 0 7261 7288 0 7288 7287 0\n\t\t 7259 7288 0 7259 7289 0 7289 7288 0 7260 7289 0 7260 7290 0 7290 7289 0 7291 7289 0\n\t\t 7290 7291 0 7290 7292 0 7292 7291 0 7293 7291 0 7292 7293 0 7292 7294 0 7294 7293 0\n\t\t 7295 7293 0 7294 7295 0 7294 7296 0 7296 7295 0 7295 7297 0 7297 7293 0 7297 7298 0\n\t\t 7298 7293 0 7298 7291 0 7298 7299 0 7299 7291 0 7299 7289 0 7299 7288 0 7300 7287 0\n\t\t 7288 7300 0 7299 7300 0 7301 7300 0 7299 7301 0 7298 7301 0 7302 7301 0 7298 7302 0\n\t\t 7297 7302 0 7302 7303 0 7303 7301 0 7303 7304 0 7304 7301 0 7304 7300 0 7304 7305 0\n\t\t 7305 7300 0 7305 7287 0 7305 7286 0 7305 7306 0 7306 7286 0 7306 7285 0 7307 7306 0\n\t\t 7305 7307 0 7304 7307 0 7308 7307 0 7304 7308 0 7303 7308 0 7308 7309 0 7309 7307 0\n\t\t 7309 7310 0 7310 7307 0 7310 7306 0 7310 7311 0 7311 7306 0 7311 7285 0 7311 7284 0\n\t\t 7311 7312 0 7312 7284 0 7312 7283 0 7313 7312 0 7311 7313 0 7310 7313 0 7314 7313 0\n\t\t 7310 7314 0 7309 7314 0 7314 7315 0 7315 7313 0 7315 7316 0 7316 7313 0 7316 7312 0\n\t\t 7316 7317 0 7317 7312 0 7317 7283 0 7317 7282 0 7317 7438 0 7438 7282 0 7438 7526 0\n\t\t 7526 7282 0 7316 7318 0 7318 7317 0 7318 7438 0 7315 7435 0 7435 7316 0 7435 7318 0\n\t\t 7319 7315 0 7314 7319 0 7314 7320 0 7320 7319 0 7309 7320 0 7309 7321 0 7321 7320 0\n\t\t 7308 7321 0 7308 7322 0 7322 7321 0 7303 7322 0 7303 7323 0 7323 7322 0 7302 7323 0\n\t\t 7302 7324 0 7324 7323 0 7297 7324 0 7297 7325 0 7325 7324 0 7295 7325 0 7295 7326 0\n\t\t 7326 7325 0 7296 7326 0 7296 7327 0 7327 7326 0 7328 7326 0 7327 7328 0 7327 7329 0\n\t\t 7329 7328 0 7330 7328 0 7329 7330 0 7329 7331 0 7331 7330 0 7332 7330 0 7331 7332 0;\n\tsetAttr \".ed[24236:24401]\" 7331 7333 0 7333 7332 0 7332 7334 0 7334 7330 0 7334 7335 0\n\t\t 7335 7330 0 7335 7328 0 7335 7336 0 7336 7328 0 7336 7326 0 7336 7325 0 7337 7324 0\n\t\t 7325 7337 0 7336 7337 0 7338 7337 0 7336 7338 0 7335 7338 0 7339 7338 0 7335 7339 0\n\t\t 7334 7339 0 7339 7340 0 7340 7338 0 7340 7341 0 7341 7338 0 7341 7337 0 7341 7342 0\n\t\t 7342 7337 0 7342 7324 0 7342 7323 0 7342 7343 0 7343 7323 0 7343 7322 0 7344 7343 0\n\t\t 7342 7344 0 7341 7344 0 7345 7344 0 7341 7345 0 7340 7345 0 7345 7346 0 7346 7344 0\n\t\t 7346 7347 0 7347 7344 0 7347 7343 0 7347 7348 0 7348 7343 0 7348 7322 0 7348 7321 0\n\t\t 7348 7349 0 7349 7321 0 7349 7320 0 7350 7349 0 7348 7350 0 7347 7350 0 7351 7350 0\n\t\t 7347 7351 0 7346 7351 0 7351 7352 0 7352 7350 0 7352 7353 0 7353 7350 0 7353 7349 0\n\t\t 7353 7354 0 7354 7349 0 7354 7320 0 7354 7319 0 7354 7432 0 7432 7319 0 7432 7528 0\n\t\t 7528 7319 0 7353 7430 0 7430 7354 0 7430 7432 0 7352 7428 0 7428 7353 0 7428 7430 0\n\t\t 7355 7352 0 7351 7355 0 7351 7356 0 7356 7355 0 7346 7356 0 7346 7357 0 7357 7356 0\n\t\t 7345 7357 0 7345 7358 0 7358 7357 0 7340 7358 0 7340 7359 0 7359 7358 0 7339 7359 0\n\t\t 7339 7360 0 7360 7359 0 7334 7360 0 7334 7361 0 7361 7360 0 7332 7361 0 7332 7362 0\n\t\t 7362 7361 0 7333 7362 0 7333 7363 0 7363 7362 0 7364 7362 0 7363 7364 0 7363 7365 0\n\t\t 7365 7364 0 7366 7364 0 7365 7366 0 7365 7367 0 7367 7366 0 7368 7366 0 7367 7368 0\n\t\t 7367 7369 0 7369 7368 0 7368 7370 0 7370 7366 0 7370 7371 0 7371 7366 0 7371 7364 0\n\t\t 7371 7372 0 7372 7364 0 7372 7362 0 7372 7361 0 7373 7360 0 7361 7373 0 7372 7373 0\n\t\t 7374 7373 0 7372 7374 0 7371 7374 0 7370 7375 0 7375 7371 0 7375 7374 0 7375 7376 0\n\t\t 7376 7374 0 7376 7377 0 7377 7374 0 7377 7373 0 7377 7378 0 7378 7373 0 7378 7360 0\n\t\t 7378 7359 0 7378 7379 0 7379 7359 0 7379 7358 0 7380 7379 0 7378 7380 0 7377 7380 0\n\t\t 7376 7381 0 7381 7377 0 7381 7380 0 7381 7382 0 7382 7380 0 7382 7383 0 7383 7380 0\n\t\t 7383 7379 0 7383 7384 0 7384 7379 0 7384 7358 0 7384 7357 0 7384 7385 0 7385 7357 0\n\t\t 7385 7356 0 7386 7385 0 7384 7386 0 7383 7386 0 7382 7387 0 7387 7383 0 7387 7386 0;\n\tsetAttr \".ed[24402:24567]\" 7387 7530 0 7530 7386 0 7530 7388 0 7388 7386 0 7388 7385 0\n\t\t 7388 7389 0 7389 7385 0 7389 7356 0 7389 7355 0 7389 7390 0 7390 7355 0 7390 7529 0\n\t\t 7529 7355 0 7388 7424 0 7424 7389 0 7424 7390 0 7391 7387 0 7382 7391 0 7391 7530 0\n\t\t 7382 7392 0 7392 7391 0 7393 7392 0 7382 7393 0 7394 7392 0 7393 7394 0 7393 7395 0\n\t\t 7395 7394 0 7393 7396 0 7396 7395 0 7376 7396 0 7393 7376 0 7397 7396 0 7376 7397 0\n\t\t 7398 7396 0 7397 7398 0 7398 7395 0 7397 7399 0 7399 7398 0 7397 7400 0 7400 7399 0\n\t\t 7370 7400 0 7397 7370 0 7401 7400 0 7370 7401 0 7402 7400 0 7401 7402 0 7402 7399 0\n\t\t 7401 7403 0 7403 7402 0 7401 7404 0 7404 7403 0 7369 7404 0 7401 7369 0 7401 7368 0\n\t\t 7404 7405 0 7405 7403 0 7397 7375 0 7404 7406 0 7406 7405 0 7406 7407 0 7407 7405 0\n\t\t 7406 7408 0 7408 7407 0 7409 7408 0 7406 7409 0 7410 7408 0 7409 7410 0 7411 7408 0\n\t\t 7410 7411 0 7411 7407 0 7410 7412 0 7412 7411 0 7410 7413 0 7413 7412 0 7414 7413 0\n\t\t 7410 7414 0 7415 7413 0 7414 7415 0 7416 7413 0 7415 7416 0 7416 7412 0 7415 7417 0\n\t\t 7417 7416 0 7415 7418 0 7418 7417 0 7419 7418 0 7415 7419 0 7420 7418 0 7419 7420 0\n\t\t 7421 7418 0 7420 7421 0 7421 7417 0 7420 7422 0 7422 7421 0 7419 7423 0 7423 7420 0\n\t\t 7424 7423 0 7419 7424 0 7419 7425 0 7425 7424 0 7425 7390 0 7425 7426 0 7426 7390 0\n\t\t 7426 7529 0 7426 7427 0 7427 7529 0 7428 7529 0 7427 7428 0 7427 7429 0 7429 7428 0\n\t\t 7429 7430 0 7429 7431 0 7431 7430 0 7431 7432 0 7431 7433 0 7433 7432 0 7433 7528 0\n\t\t 7433 7434 0 7434 7528 0 7435 7528 0 7434 7435 0 7434 7436 0 7436 7435 0 7436 7318 0\n\t\t 7436 7437 0 7437 7318 0 7437 7438 0 7437 7439 0 7439 7438 0 7439 7526 0 7439 7440 0\n\t\t 7440 7526 0 7527 7526 0 7440 7527 0 7440 7441 0 7441 7527 0 7441 7442 0 7441 10940 0\n\t\t 10940 7442 0 10940 7444 0 10940 7445 0 7445 7444 0 7445 7525 0 7445 7446 0 7446 7525 0\n\t\t 7245 7525 0 7446 7245 0 7446 7173 0 7446 7447 0 7447 7173 0 7447 7178 0 7448 7447 0\n\t\t 7446 7448 0 7446 10957 0 10957 7448 0 7449 7448 0 10957 7449 0 10957 7443 0 7443 7449 0\n\t\t 7450 7449 0 7443 7450 0 7443 7441 0 7441 7450 0 7450 7451 0 7451 7449 0 7451 7452 0;\n\tsetAttr \".ed[24568:24733]\" 7452 7449 0 7452 7448 0 7452 7453 0 7453 7448 0 7453 7447 0\n\t\t 7453 7454 0 7454 7447 0 7454 7178 0 7454 7179 0 7454 7455 0 7455 7179 0 7455 7188 0\n\t\t 7456 7455 0 7454 7456 0 7453 7456 0 7457 7456 0 7453 7457 0 7452 7457 0 7458 7457 0\n\t\t 7452 7458 0 7451 7458 0 7458 7459 0 7459 7457 0 7459 7460 0 7460 7457 0 7460 7456 0\n\t\t 7460 10500 0 10500 7456 0 7456 7461 0 7461 7455 0 7461 7462 0 7462 7455 0 7462 7188 0\n\t\t 7462 7189 0 7462 7463 0 7463 7189 0 7463 7198 0 7464 7463 0 7462 7464 0 7461 7464 0\n\t\t 7465 7464 0 7464 10500 0 10500 7465 0 7460 7465 0 7466 7465 0 7460 7466 0 7459 7466 0\n\t\t 7466 7260 0 7260 7465 0 7258 7465 0 7258 7464 0 7256 7464 0 7256 7463 0 7254 7463 0\n\t\t 7254 7198 0 7467 7459 0 7458 7467 0 7458 7468 0 7468 7467 0 7451 7468 0 7451 7469 0\n\t\t 7469 7468 0 7450 7469 0 7450 7470 0 7470 7469 0 7441 7470 0 7440 7470 0 7471 7470 0\n\t\t 7440 7471 0 7439 7471 0 7472 7471 0 7439 7472 0 7437 7472 0 7473 7472 0 7437 7473 0\n\t\t 7436 7473 0 7473 7474 0 7474 7472 0 7474 7475 0 7475 7472 0 7475 7471 0 7475 7476 0\n\t\t 7476 7471 0 7476 7470 0 7476 7469 0 7477 7468 0 7469 7477 0 7476 7477 0 7478 7477 0\n\t\t 7476 7478 0 7475 7478 0 7479 7478 0 7475 7479 0 7474 7479 0 7479 7480 0 7480 7478 0\n\t\t 7480 7481 0 7481 7478 0 7481 7477 0 7481 7482 0 7482 7477 0 7482 7468 0 7482 7467 0\n\t\t 7482 7483 0 7483 7467 0 7483 7484 0 7484 7467 0 7484 7459 0 7484 7466 0 7485 7483 0\n\t\t 7482 7485 0 7481 7485 0 7486 7485 0 7481 7486 0 7480 7486 0 7486 7296 0 7296 7485 0\n\t\t 7294 7485 0 7294 7483 0 7292 7483 0 7292 7484 0 7290 7484 0 7290 7466 0 7487 7480 0\n\t\t 7479 7487 0 7479 7488 0 7488 7487 0 7474 7488 0 7474 7489 0 7489 7488 0 7473 7489 0\n\t\t 7473 7490 0 7490 7489 0 7436 7490 0 7434 7490 0 7491 7490 0 7434 7491 0 7433 7491 0\n\t\t 7492 7491 0 7433 7492 0 7431 7492 0 7493 7492 0 7431 7493 0 7429 7493 0 7493 7494 0\n\t\t 7494 7492 0 7494 7495 0 7495 7492 0 7495 7491 0 7495 7496 0 7496 7491 0 7496 7490 0\n\t\t 7496 7489 0 7497 7488 0 7489 7497 0 7496 7497 0 7498 7497 0 7496 7498 0 7495 7498 0\n\t\t 7499 7498 0 7495 7499 0 7494 7499 0 7499 7500 0 7500 7498 0 7500 7501 0 7501 7498 0;\n\tsetAttr \".ed[24734:24899]\" 7501 7497 0 7501 7502 0 7502 7497 0 7502 7488 0 7502 7487 0\n\t\t 7502 7503 0 7503 7487 0 7503 7504 0 7504 7487 0 7504 7480 0 7504 7486 0 7505 7503 0\n\t\t 7502 7505 0 7501 7505 0 7506 7505 0 7501 7506 0 7500 7506 0 7506 7333 0 7333 7505 0\n\t\t 7331 7505 0 7331 7503 0 7329 7503 0 7329 7504 0 7327 7504 0 7327 7486 0 7507 7500 0\n\t\t 7499 7507 0 7499 7508 0 7508 7507 0 7494 7508 0 7494 7509 0 7509 7508 0 7493 7509 0\n\t\t 7493 7510 0 7510 7509 0 7429 7510 0 7427 7510 0 7511 7510 0 7427 7511 0 7426 7511 0\n\t\t 7512 7511 0 7426 7512 0 7425 7512 0 7513 7512 0 7425 7513 0 7419 7513 0 7513 7414 0\n\t\t 7414 7512 0 7414 7514 0 7514 7512 0 7514 7511 0 7514 7515 0 7515 7511 0 7515 7510 0\n\t\t 7515 7509 0 7516 7508 0 7509 7516 0 7515 7516 0 7517 7516 0 7515 7517 0 7514 7517 0\n\t\t 7414 7518 0 7518 7514 0 7518 7517 0 7518 7409 0 7409 7517 0 7409 7519 0 7519 7517 0\n\t\t 7519 7516 0 7519 7520 0 7520 7516 0 7520 7508 0 7520 7507 0 7520 7521 0 7521 7507 0\n\t\t 7521 7522 0 7522 7507 0 7522 7500 0 7522 7506 0 7523 7521 0 7520 7523 0 7519 7523 0\n\t\t 7409 7524 0 7524 7519 0 7524 7523 0 7524 7369 0 7369 7523 0 7367 7523 0 7367 7521 0\n\t\t 7365 7521 0 7365 7522 0 7363 7522 0 7363 7506 0 7518 7410 0 7524 7404 0 7524 7406 0\n\t\t 7513 7415 0 7239 7525 0 7279 7526 0 7315 7528 0 7352 7529 0 7530 7423 0 7423 7388 0\n\t\t 7393 7381 0 7531 7391 0 7392 7531 0 7394 7531 0 7531 7532 0 7532 7391 0 7532 7533 0\n\t\t 7533 7391 0 7533 7530 0 7533 7420 0 7420 7530 0 7532 7422 0 7422 7533 0 7112 7534 0\n\t\t 7534 7118 0 7534 7129 0 7534 7535 0 7535 7129 0 7534 7536 0 7536 7535 0 7536 7537 0\n\t\t 7537 7535 0 7114 7534 0 7114 7536 0 7543 7536 0 7543 7540 0 7540 7536 0 7540 7537 0\n\t\t 7540 7538 0 7538 7537 0 7540 7539 0 7539 7538 0 7539 7541 0 7541 7538 0 7539 7542 0\n\t\t 7542 7541 0 7141 7542 0 7539 7141 0 7539 7143 0 7540 7143 0 7542 7544 0 7544 7541 0\n\t\t 7542 7545 0 7545 7544 0 7545 7546 0 7546 7544 0 7139 7542 0 7139 7545 0 7137 7545 0\n\t\t 7137 7547 0 7547 7545 0 7547 7546 0 7547 7548 0 7548 7546 0 7547 7549 0 7549 7548 0\n\t\t 7549 7550 0 7550 7548 0 7135 7547 0 7135 7549 0 7133 7549 0 7133 7551 0 7551 7549 0;\n\tsetAttr \".ed[24900:25065]\" 7551 7550 0 7551 7552 0 7552 7550 0 7551 7130 0 7130 7552 0\n\t\t 7130 7553 0 7553 7552 0 7131 7551 0 7127 7553 0 7128 7553 0 7554 7091 0 7092 7554 0\n\t\t 7092 7555 0 7555 7554 0 7556 7554 0 7555 7556 0 7555 7557 0 7557 7556 0 7558 7556 0\n\t\t 7557 7558 0 7557 7559 0 7559 7558 0 7208 7558 0 7559 7208 0 7559 7207 0 7213 7558 0\n\t\t 7213 7560 0 7560 7558 0 7560 7556 0 7560 7561 0 7561 7556 0 7561 7554 0 7561 7562 0\n\t\t 7562 7554 0 7562 7091 0 7562 7093 0 7562 7563 0 7563 7093 0 7563 7100 0 7564 7563 0\n\t\t 7562 7564 0 7561 7564 0 7565 7564 0 7561 7565 0 7560 7565 0 7215 7565 0 7560 7215 0\n\t\t 7223 7565 0 7223 7566 0 7566 7565 0 7566 7564 0 7566 7567 0 7567 7564 0 7567 7563 0\n\t\t 7567 7568 0 7568 7563 0 7568 7100 0 7568 7101 0 7568 7569 0 7569 7101 0 7569 7108 0\n\t\t 7570 7569 0 7568 7570 0 7567 7570 0 7571 7570 0 7567 7571 0 7566 7571 0 7225 7571 0\n\t\t 7566 7225 0 7233 7571 0 7233 7572 0 7572 7571 0 7572 7570 0 7572 7573 0 7573 7570 0\n\t\t 7573 7569 0 7573 7574 0 7574 7569 0 7574 7108 0 7574 7109 0 7574 7575 0 7575 7109 0\n\t\t 7575 7116 0 7576 7575 0 7574 7576 0 7573 7576 0 7577 7576 0 7573 7577 0 7572 7577 0\n\t\t 7235 7577 0 7572 7235 0 7243 7577 0 7243 7578 0 7578 7577 0 7578 7576 0 7578 7579 0\n\t\t 7579 7576 0 7579 7575 0 7579 7580 0 7580 7575 0 7580 7116 0 7580 7117 0 7580 7581 0\n\t\t 7581 7117 0 7579 7165 0 7165 7580 0 7578 7583 0 7583 7579 0 7584 7578 0 7585 7162 0\n\t\t 7163 7585 0 7164 7585 0 7586 7585 0 7164 7586 0 7166 7586 0 7175 7586 0 7183 7586 0\n\t\t 7183 7587 0 7587 7586 0 7587 7585 0 7587 7588 0 7588 7585 0 7588 7162 0 7588 7161 0\n\t\t 7588 7589 0 7589 7161 0 7589 7160 0 7590 7589 0 7588 7590 0 7587 7590 0 7185 7590 0\n\t\t 7587 7185 0 7193 7590 0 7193 7591 0 7591 7590 0 7591 7589 0 7591 7592 0 7592 7589 0\n\t\t 7592 7160 0 7592 7593 0 7593 7160 0 7593 7155 0 7593 7156 0 7593 7594 0 7594 7156 0\n\t\t 7594 7159 0 7595 7594 0 7593 7595 0 7592 7595 0 7596 7595 0 7592 7596 0 7591 7596 0\n\t\t 7195 7596 0 7591 7195 0 7207 7596 0 7559 7596 0 7559 7595 0 7557 7595 0 7557 7594 0\n\t\t 7555 7594 0 7555 7159 0 7597 7599 0 7599 7598 0 7598 7597 0 7598 7600 0 7600 7597 0;\n\tsetAttr \".ed[25066:25231]\" 7599 7601 0 7601 7598 0 7601 7602 0 7602 7598 0 7601 7603 0\n\t\t 7603 7602 0 7603 7604 0 7604 7602 0 7605 7603 0 7601 7605 0 7601 7606 0 7606 7605 0\n\t\t 7599 7606 0 7599 7607 0 7607 7606 0 7597 7607 0 7597 7608 0 7608 7607 0 7609 7607 0\n\t\t 7608 7609 0 7608 7610 0 7610 7609 0 7609 7611 0 7611 7607 0 7611 7606 0 7611 7612 0\n\t\t 7612 7606 0 7612 7605 0 7613 7612 0 7611 7613 0 7611 7614 0 7614 7613 0 7609 7614 0\n\t\t 7609 7615 0 7615 7614 0 7610 7615 0 7610 7616 0 7616 7615 0 7617 7615 0 7616 7617 0\n\t\t 7616 7618 0 7618 7617 0 7617 7619 0 7619 7615 0 7619 7614 0 7619 7620 0 7620 7614 0\n\t\t 7620 7613 0 7621 7620 0 7619 7621 0 7619 7622 0 7622 7621 0 7617 7622 0 7617 7623 0\n\t\t 7623 7622 0 7618 7623 0 7618 7624 0 7624 7623 0 7625 7623 0 7624 7625 0 7624 7626 0\n\t\t 7626 7625 0 7625 7627 0 7627 7623 0 7627 7622 0 7627 7628 0 7628 7622 0 7628 7621 0\n\t\t 7882 7628 0 7627 7882 0 7627 7880 0 7880 7882 0 7625 7880 0 7625 7881 0 7881 7880 0\n\t\t 7626 7881 0 7626 8060 0 8060 7881 0 7621 7629 0 7629 7620 0 7629 7630 0 7630 7620 0\n\t\t 7630 7613 0 7630 7631 0 7631 7613 0 7631 7612 0 7631 7632 0 7632 7612 0 7632 7605 0\n\t\t 7632 7633 0 7633 7605 0 7633 7603 0 7633 7634 0 7634 7603 0 7634 7604 0 7634 7635 0\n\t\t 7635 7604 0 7634 7636 0 7636 7635 0 7636 7637 0 7637 7635 0 7636 7638 0 7638 7637 0\n\t\t 7638 7639 0 7639 7637 0 7638 7640 0 7640 7639 0 7640 7641 0 7641 7639 0 7642 7640 0\n\t\t 7638 7642 0 7638 7643 0 7643 7642 0 7636 7643 0 7636 7644 0 7644 7643 0 7634 7644 0\n\t\t 7633 7644 0 7632 7645 0 7645 7633 0 7645 7644 0 7645 7646 0 7646 7644 0 7646 7643 0\n\t\t 7646 7647 0 7647 7643 0 7647 7642 0 7648 7647 0 7646 7648 0 7646 7649 0 7649 7648 0\n\t\t 7645 7649 0 7645 7650 0 7650 7649 0 7632 7650 0 7631 7650 0 7651 7650 0 7631 7651 0\n\t\t 7630 7651 0 7651 7652 0 7652 7650 0 7652 7649 0 7652 7653 0 7653 7649 0 7653 7648 0\n\t\t 7654 7653 0 7652 7654 0 7652 7655 0 7655 7654 0 7651 7655 0 7651 7656 0 7656 7655 0\n\t\t 7630 7656 0 7629 7656 0 7657 7656 0 7629 7657 0 7629 7658 0 7658 7657 0 7621 7658 0\n\t\t 7628 7658 0 7657 7659 0 7659 7656 0 7659 7655 0 7659 7660 0 7660 7655 0 7660 7654 0;\n\tsetAttr \".ed[25232:25397]\" 7661 7660 0 7659 7661 0 7659 7662 0 7662 7661 0 7657 7662 0\n\t\t 7657 7663 0 7663 7662 0 7658 7663 0 7658 7664 0 7664 7663 0 7628 7664 0 7882 7664 0\n\t\t 7665 7664 0 7882 7665 0 7882 7877 0 7877 7665 0 7665 7666 0 7666 7664 0 7666 7663 0\n\t\t 7873 7662 0 7663 7873 0 7666 7873 0 7871 7661 0 7662 7871 0 7873 7871 0 7661 7667 0\n\t\t 7667 7660 0 7667 7668 0 7668 7660 0 7668 7654 0 7668 7669 0 7669 7654 0 7669 7653 0\n\t\t 7669 7670 0 7670 7653 0 7670 7648 0 7670 7671 0 7671 7648 0 7671 7647 0 7671 7672 0\n\t\t 7672 7647 0 7672 7642 0 7672 7673 0 7673 7642 0 7673 7640 0 7673 7674 0 7674 7640 0\n\t\t 7674 7641 0 7674 7675 0 7675 7641 0 7674 7676 0 7676 7675 0 7676 7677 0 7677 7675 0\n\t\t 7676 7678 0 7678 7677 0 7678 7679 0 7679 7677 0 7678 7680 0 7680 7679 0 7680 7681 0\n\t\t 7681 7679 0 7682 7680 0 7678 7682 0 7678 7683 0 7683 7682 0 7676 7683 0 7676 7684 0\n\t\t 7684 7683 0 7674 7684 0 7673 7684 0 7672 7685 0 7685 7673 0 7685 7684 0 7685 7686 0\n\t\t 7686 7684 0 7686 7683 0 7686 7687 0 7687 7683 0 7687 7682 0 7688 7687 0 7686 7688 0\n\t\t 7686 7689 0 7689 7688 0 7685 7689 0 7685 7690 0 7690 7689 0 7672 7690 0 7671 7690 0\n\t\t 7691 7690 0 7671 7691 0 7670 7691 0 7691 7692 0 7692 7690 0 7692 7689 0 7692 7693 0\n\t\t 7693 7689 0 7693 7688 0 7694 7693 0 7692 7694 0 7692 7695 0 7695 7694 0 7691 7695 0\n\t\t 7691 7696 0 7696 7695 0 7670 7696 0 7669 7696 0 7697 7696 0 7669 7697 0 7668 7697 0\n\t\t 7697 7698 0 7698 7696 0 7698 7695 0 7698 7699 0 7699 7695 0 7699 7694 0 7700 7699 0\n\t\t 7698 7700 0 7698 7701 0 7701 7700 0 7697 7701 0 7697 7702 0 7702 7701 0 7668 7702 0\n\t\t 7667 7702 0 7703 7702 0 7667 7703 0 7667 7869 0 7869 7703 0 7704 7701 0 7702 7704 0\n\t\t 7703 7704 0 7865 7700 0 7701 7865 0 7704 7865 0 7700 7705 0 7705 7699 0 7705 7706 0\n\t\t 7706 7699 0 7706 7694 0 7706 7707 0 7707 7694 0 7707 7693 0 7707 7708 0 7708 7693 0\n\t\t 7708 7688 0 7708 7709 0 7709 7688 0 7709 7687 0 7709 7710 0 7710 7687 0 7710 7682 0\n\t\t 7710 7711 0 7711 7682 0 7711 7680 0 7711 7712 0 7712 7680 0 7712 7681 0 7712 7713 0\n\t\t 7713 7681 0 7712 7714 0 7714 7713 0 7714 7715 0 7715 7713 0 7714 7716 0 7716 7715 0;\n\tsetAttr \".ed[25398:25563]\" 7716 7717 0 7717 7715 0 7716 7718 0 7718 7717 0 7718 7719 0\n\t\t 7719 7717 0 7720 7718 0 7716 7720 0 7716 7721 0 7721 7720 0 7714 7721 0 7714 7722 0\n\t\t 7722 7721 0 7712 7722 0 7711 7722 0 7710 7723 0 7723 7711 0 7723 7722 0 7723 7724 0\n\t\t 7724 7722 0 7724 7721 0 7724 7725 0 7725 7721 0 7725 7720 0 7726 7725 0 7724 7726 0\n\t\t 7724 7727 0 7727 7726 0 7723 7727 0 7723 7728 0 7728 7727 0 7710 7728 0 7709 7728 0\n\t\t 7729 7728 0 7709 7729 0 7708 7729 0 7729 7730 0 7730 7728 0 7730 7727 0 7730 7731 0\n\t\t 7731 7727 0 7731 7726 0 7732 7731 0 7730 7732 0 7730 7733 0 7733 7732 0 7729 7733 0\n\t\t 7729 7734 0 7734 7733 0 7708 7734 0 7707 7734 0 7735 7734 0 7707 7735 0 7706 7735 0\n\t\t 7735 7736 0 7736 7734 0 7736 7733 0 7736 7737 0 7737 7733 0 7737 7732 0 7738 7737 0\n\t\t 7736 7738 0 7736 7739 0 7739 7738 0 7735 7739 0 7735 7740 0 7740 7739 0 7706 7740 0\n\t\t 7705 7740 0 7741 7740 0 7705 7741 0 7705 7742 0 7742 7741 0 7861 7739 0 7740 7861 0\n\t\t 7741 7861 0 7743 7738 0 7739 7743 0 7861 7743 0 7738 7744 0 7744 7737 0 7744 7745 0\n\t\t 7745 7737 0 7745 7732 0 7745 7746 0 7746 7732 0 7746 7731 0 7746 7747 0 7747 7731 0\n\t\t 7747 7726 0 7747 7748 0 7748 7726 0 7748 7725 0 7748 7749 0 7749 7725 0 7749 7720 0\n\t\t 7749 7750 0 7750 7720 0 7750 7718 0 7750 7751 0 7751 7718 0 7751 7719 0 7751 7752 0\n\t\t 7752 7719 0 7751 7753 0 7753 7752 0 7753 7754 0 7754 7752 0 7753 7755 0 7755 7754 0\n\t\t 7755 7756 0 7756 7754 0 7755 7757 0 7757 7756 0 7757 7758 0 7758 7756 0 7759 7757 0\n\t\t 7755 7759 0 7755 7760 0 7760 7759 0 7753 7760 0 7753 7761 0 7761 7760 0 7751 7761 0\n\t\t 7750 7761 0 7749 7762 0 7762 7750 0 7762 7761 0 7762 7763 0 7763 7761 0 7763 7760 0\n\t\t 7763 7764 0 7764 7760 0 7764 7759 0 7765 7764 0 7763 7765 0 7763 7766 0 7766 7765 0\n\t\t 7762 7766 0 7762 7767 0 7767 7766 0 7749 7767 0 7748 7767 0 7768 7767 0 7748 7768 0\n\t\t 7747 7768 0 7768 7769 0 7769 7767 0 7769 7766 0 7769 7770 0 7770 7766 0 7770 7765 0\n\t\t 7771 7770 0 7769 7771 0 7769 7772 0 7772 7771 0 7768 7772 0 7768 7773 0 7773 7772 0\n\t\t 7747 7773 0 7746 7773 0 7774 7773 0 7746 7774 0 7745 7774 0 7774 7775 0 7775 7773 0;\n\tsetAttr \".ed[25564:25729]\" 7775 7772 0 7775 7776 0 7776 7772 0 7776 7771 0 7777 7776 0\n\t\t 7775 7777 0 7775 7778 0 7778 7777 0 7774 7778 0 7774 7779 0 7779 7778 0 7745 7779 0\n\t\t 7744 7779 0 7857 7779 0 7744 7857 0 7744 8008 0 8008 7857 0 7780 7778 0 7779 7780 0\n\t\t 7857 7780 0 7781 7777 0 7778 7781 0 7780 7781 0 7777 7782 0 7782 7776 0 7782 7783 0\n\t\t 7783 7776 0 7783 7771 0 7783 7784 0 7784 7771 0 7784 7770 0 7784 7785 0 7785 7770 0\n\t\t 7785 7765 0 7785 7786 0 7786 7765 0 7786 7764 0 7786 7787 0 7787 7764 0 7787 7759 0\n\t\t 7787 7788 0 7788 7759 0 7788 7757 0 7788 7789 0 7789 7757 0 7789 7758 0 7789 7790 0\n\t\t 7790 7758 0 7789 7791 0 7791 7790 0 7791 7792 0 7792 7790 0 7791 7793 0 7793 7792 0\n\t\t 7793 7794 0 7794 7792 0 7793 7795 0 7795 7794 0 7795 7796 0 7796 7794 0 7797 7795 0\n\t\t 7793 7797 0 7793 7798 0 7798 7797 0 7791 7798 0 7791 7799 0 7799 7798 0 7789 7799 0\n\t\t 7788 7799 0 7787 7800 0 7800 7788 0 7800 7799 0 7800 7801 0 7801 7799 0 7801 7798 0\n\t\t 7801 7802 0 7802 7798 0 7802 7797 0 7803 7802 0 7801 7803 0 7801 7804 0 7804 7803 0\n\t\t 7800 7804 0 7800 7805 0 7805 7804 0 7787 7805 0 7786 7805 0 7806 7805 0 7786 7806 0\n\t\t 7785 7806 0 7806 7807 0 7807 7805 0 7807 7804 0 7807 7808 0 7808 7804 0 7808 7803 0\n\t\t 7809 7808 0 7807 7809 0 7807 7810 0 7810 7809 0 7806 7810 0 7806 7811 0 7811 7810 0\n\t\t 7785 7811 0 7784 7811 0 7812 7811 0 7784 7812 0 7783 7812 0 7812 7813 0 7813 7811 0\n\t\t 7813 7810 0 7813 7814 0 7814 7810 0 7814 7809 0 8010 7814 0 7813 8010 0 7813 7815 0\n\t\t 7815 8010 0 7812 7815 0 7812 7816 0 7816 7815 0 7783 7816 0 7782 7816 0 7817 7816 0\n\t\t 7782 7817 0 7782 7853 0 7853 7817 0 8009 7815 0 7816 8009 0 7817 8009 0 7814 7818 0\n\t\t 7818 7809 0 8010 7818 0 8010 7819 0 7819 7818 0 7819 7820 0 7820 7818 0 7820 7821 0\n\t\t 7821 7818 0 7821 7822 0 7822 7818 0 7822 7823 0 7823 7818 0 7824 7823 0 7822 7824 0\n\t\t 7822 7825 0 7825 7824 0 7825 7826 0 7826 7824 0 7826 7827 0 7827 7824 0 7828 7827 0\n\t\t 7826 7828 0 7826 7829 0 7829 7828 0 7829 7830 0 7830 7828 0 7830 7831 0 7831 7828 0\n\t\t 7832 7831 0 7830 7832 0 7830 7833 0 7833 7832 0 7833 7834 0 7834 7832 0 7834 7835 0;\n\tsetAttr \".ed[25730:25895]\" 7835 7832 0 7835 7796 0 7796 7832 0 7795 7832 0 7797 7832 0\n\t\t 7797 7831 0 7797 7828 0 7802 7828 0 7803 7828 0 7803 7827 0 7803 7824 0 7808 7824 0\n\t\t 7809 7824 0 7809 7823 0 7836 7835 0 7834 7836 0 7834 7837 0 7837 7836 0 7837 7838 0\n\t\t 7838 7836 0 7838 7839 0 7839 7836 0 7840 7839 0 7838 7840 0 7838 7841 0 7841 7840 0\n\t\t 7841 7842 0 7842 7840 0 7842 7843 0 7843 7840 0 7844 7843 0 7842 7844 0 7842 7845 0\n\t\t 7845 7844 0 7845 7846 0 7846 7844 0 7846 7847 0 7847 7844 0 7848 7847 0 7846 7848 0\n\t\t 7846 8011 0 8011 7848 0 7849 7847 0 7848 7849 0 7849 7844 0 7848 7850 0 7850 7849 0\n\t\t 7850 8009 0 8009 7849 0 8009 7851 0 7851 7849 0 7817 7851 0 7817 7852 0 7852 7851 0\n\t\t 7853 7852 0 7853 7854 0 7854 7852 0 7853 7781 0 7781 7854 0 7781 7855 0 7855 7854 0\n\t\t 7780 7855 0 7780 7856 0 7856 7855 0 7857 7856 0 7857 7858 0 7858 7856 0 8008 7858 0\n\t\t 8008 7859 0 7859 7858 0 8008 7743 0 7743 7859 0 7743 7860 0 7860 7859 0 7861 7860 0\n\t\t 7861 7862 0 7862 7860 0 7741 7862 0 7741 7863 0 7863 7862 0 7742 7863 0 7742 7864 0\n\t\t 7864 7863 0 7742 7865 0 7865 7864 0 7865 7866 0 7866 7864 0 7704 7866 0 7704 7867 0\n\t\t 7867 7866 0 7703 7867 0 7703 7868 0 7868 7867 0 7869 7868 0 7869 7870 0 7870 7868 0\n\t\t 7869 7871 0 7871 7870 0 7871 7872 0 7872 7870 0 7873 7872 0 7873 7874 0 7874 7872 0\n\t\t 7666 7874 0 7666 7875 0 7875 7874 0 7665 7875 0 7665 7876 0 7876 7875 0 7877 7876 0\n\t\t 7877 7878 0 7878 7876 0 7877 7879 0 7879 7878 0 7880 7879 0 7877 7880 0 7881 7879 0\n\t\t 7881 8007 0 8007 7879 0 7879 7883 0 7883 7878 0 8007 7883 0 8007 7884 0 7884 7883 0\n\t\t 8007 7885 0 7885 7884 0 7885 7886 0 7886 7884 0 7887 7884 0 7886 7887 0 7886 7888 0\n\t\t 7888 7887 0 7887 7889 0 7889 7884 0 7889 7883 0 7889 7890 0 7890 7883 0 7890 7878 0\n\t\t 7891 7890 0 7889 7891 0 7889 7892 0 7892 7891 0 7887 7892 0 7887 7893 0 7893 7892 0\n\t\t 7888 7893 0 7888 7894 0 7894 7893 0 7895 7893 0 7894 7895 0 7894 7896 0 7896 7895 0\n\t\t 7895 7897 0 7897 7893 0 7897 7892 0 7897 7898 0 7898 7892 0 7898 7891 0 7899 7898 0\n\t\t 7897 7899 0 7897 7900 0 7900 7899 0 7895 7900 0 7895 7901 0 7901 7900 0 7896 7901 0;\n\tsetAttr \".ed[25896:26061]\" 7896 7902 0 7902 7901 0 7903 7901 0 7902 7903 0 7902 7904 0\n\t\t 7904 7903 0 7903 7905 0 7905 7901 0 7905 7900 0 7905 7906 0 7906 7900 0 7906 7899 0\n\t\t 7604 7906 0 7905 7604 0 7905 7602 0 7903 7602 0 7903 7598 0 7904 7598 0 7904 7600 0\n\t\t 7899 7907 0 7907 7898 0 7907 7908 0 7908 7898 0 7908 7891 0 7908 7909 0 7909 7891 0\n\t\t 7909 7890 0 7909 7910 0 7910 7890 0 7910 7878 0 7910 7876 0 7910 7911 0 7911 7876 0\n\t\t 7911 7875 0 7911 7912 0 7912 7875 0 7912 7874 0 7912 7913 0 7913 7874 0 7913 7872 0\n\t\t 7914 7913 0 7912 7914 0 7912 7915 0 7915 7914 0 7911 7915 0 7911 7916 0 7916 7915 0\n\t\t 7910 7916 0 7909 7916 0 7908 7917 0 7917 7909 0 7917 7916 0 7917 7918 0 7918 7916 0\n\t\t 7918 7915 0 7918 7919 0 7919 7915 0 7919 7914 0 7920 7919 0 7918 7920 0 7918 7921 0\n\t\t 7921 7920 0 7917 7921 0 7917 7922 0 7922 7921 0 7908 7922 0 7907 7922 0 7923 7922 0\n\t\t 7907 7923 0 7907 7924 0 7924 7923 0 7899 7924 0 7906 7924 0 7923 7925 0 7925 7922 0\n\t\t 7925 7921 0 7925 7926 0 7926 7921 0 7926 7920 0 7641 7926 0 7925 7641 0 7925 7639 0\n\t\t 7923 7639 0 7923 7637 0 7924 7637 0 7924 7635 0 7906 7635 0 7920 7927 0 7927 7919 0\n\t\t 7926 7928 0 7928 7920 0 7928 7927 0 7928 7929 0 7929 7927 0 7929 7930 0 7930 7927 0\n\t\t 7931 7927 0 7930 7931 0 7930 7932 0 7932 7931 0 7933 7931 0 7932 7933 0 7933 7914 0\n\t\t 7914 7931 0 7933 7913 0 7933 7934 0 7934 7913 0 7934 7872 0 7934 7870 0 7934 7935 0\n\t\t 7935 7870 0 7935 7868 0 7935 7936 0 7936 7868 0 7936 7867 0 7936 7937 0 7937 7867 0\n\t\t 7937 7866 0 7938 7937 0 7936 7938 0 7936 7939 0 7939 7938 0 7935 7939 0 7935 7940 0\n\t\t 7940 7939 0 7934 7940 0 7933 7940 0 7932 7940 0 7932 7941 0 7941 7940 0 7941 7939 0\n\t\t 7941 7942 0 7942 7939 0 7942 7938 0 7943 7942 0 7941 7943 0 7941 7944 0 7944 7943 0\n\t\t 7932 7944 0 7930 7944 0 7945 7944 0 7930 7945 0 7929 7945 0 7945 7946 0 7946 7944 0\n\t\t 7946 7943 0 7681 7946 0 7945 7681 0 7945 7679 0 7929 7679 0 7929 7677 0 7928 7677 0\n\t\t 7928 7675 0 7926 7675 0 7943 7947 0 7947 7942 0 7947 7948 0 7948 7942 0 7948 7938 0\n\t\t 7948 7949 0 7949 7938 0 7949 7937 0 7949 7950 0 7950 7937 0 7950 7866 0 7950 7864 0;\n\tsetAttr \".ed[26062:26227]\" 7950 7951 0 7951 7864 0 7951 7863 0 7951 7952 0 7952 7863 0\n\t\t 7952 7862 0 7952 7953 0 7953 7862 0 7953 7860 0 7954 7953 0 7952 7954 0 7952 7955 0\n\t\t 7955 7954 0 7951 7955 0 7951 7956 0 7956 7955 0 7950 7956 0 7949 7956 0 7957 7956 0\n\t\t 7949 7957 0 7948 7957 0 7957 7958 0 7958 7956 0 7958 7955 0 7958 7959 0 7959 7955 0\n\t\t 7959 7954 0 7960 7959 0 7958 7960 0 7958 7961 0 7961 7960 0 7957 7961 0 7957 7962 0\n\t\t 7962 7961 0 7948 7962 0 7947 7962 0 7963 7962 0 7947 7963 0 7947 7964 0 7964 7963 0\n\t\t 7943 7964 0 7946 7964 0 7963 7965 0 7965 7962 0 7965 7961 0 7965 7966 0 7966 7961 0\n\t\t 7966 7960 0 7719 7966 0 7965 7719 0 7965 7717 0 7963 7717 0 7963 7715 0 7964 7715 0\n\t\t 7964 7713 0 7946 7713 0 7960 7967 0 7967 7959 0 7966 7968 0 7968 7960 0 7968 7967 0\n\t\t 7968 7969 0 7969 7967 0 7969 7970 0 7970 7967 0 7971 7967 0 7970 7971 0 7970 7972 0\n\t\t 7972 7971 0 7973 7971 0 7972 7973 0 7973 7954 0 7954 7971 0 7973 7953 0 7973 7974 0\n\t\t 7974 7953 0 7974 7860 0 7974 7859 0 7974 7975 0 7975 7859 0 7975 7858 0 7975 7976 0\n\t\t 7976 7858 0 7976 7856 0 7976 7977 0 7977 7856 0 7977 7855 0 7978 7977 0 7976 7978 0\n\t\t 7976 7979 0 7979 7978 0 7975 7979 0 7975 7980 0 7980 7979 0 7974 7980 0 7973 7980 0\n\t\t 7972 7980 0 7972 7981 0 7981 7980 0 7981 7979 0 7981 7982 0 7982 7979 0 7982 7978 0\n\t\t 7983 7982 0 7981 7983 0 7981 7984 0 7984 7983 0 7972 7984 0 7970 7984 0 7985 7984 0\n\t\t 7970 7985 0 7969 7985 0 7985 7986 0 7986 7984 0 7986 7983 0 7758 7986 0 7985 7758 0\n\t\t 7985 7756 0 7969 7756 0 7969 7754 0 7968 7754 0 7968 7752 0 7966 7752 0 7983 7987 0\n\t\t 7987 7982 0 7987 7988 0 7988 7982 0 7988 7978 0 7988 7989 0 7989 7978 0 7989 7977 0\n\t\t 7989 7990 0 7990 7977 0 7990 7855 0 7990 7854 0 7990 7991 0 7991 7854 0 7991 7852 0\n\t\t 7991 7992 0 7992 7852 0 7992 7851 0 7992 7993 0 7993 7851 0 7993 7849 0 7994 7993 0\n\t\t 7992 7994 0 7992 7995 0 7995 7994 0 7991 7995 0 7991 7996 0 7996 7995 0 7990 7996 0\n\t\t 7989 7996 0 7997 7996 0 7989 7997 0 7988 7997 0 7997 7998 0 7998 7996 0 7998 7995 0\n\t\t 7998 7999 0 7999 7995 0 7999 7994 0 8000 7999 0 7998 8000 0 7998 8001 0 8001 8000 0;\n\tsetAttr \".ed[26228:26393]\" 7997 8001 0 7997 8002 0 8002 8001 0 7988 8002 0 7987 8002 0\n\t\t 8003 8002 0 7987 8003 0 7987 8004 0 8004 8003 0 7983 8004 0 7986 8004 0 8003 8005 0\n\t\t 8005 8002 0 8005 8001 0 8005 8006 0 8006 8001 0 8006 8000 0 7796 8006 0 8005 7796 0\n\t\t 8005 7794 0 8003 7794 0 8003 7792 0 8004 7792 0 8004 7790 0 7986 7790 0 7840 7999 0\n\t\t 8000 7840 0 7840 7994 0 7843 7994 0 7844 7994 0 7844 7993 0 7835 8006 0 7836 8006 0\n\t\t 7836 8000 0 8000 7839 0 8060 7885 0 8007 8060 0 7869 7661 0 7919 7931 0 7742 7700 0\n\t\t 8008 7738 0 7959 7971 0 7853 7777 0 7850 7815 0 7850 8010 0 7848 8010 0 7848 7819 0\n\t\t 7848 7820 0 8011 7820 0 8012 8014 0 8014 8013 0 8013 8012 0 8013 8015 0 8015 8012 0\n\t\t 8013 8016 0 8016 8015 0 8016 8017 0 8017 8015 0 7600 8017 0 8016 7600 0 8016 7597 0\n\t\t 8016 7608 0 8016 8018 0 8018 7608 0 8013 8018 0 8013 8019 0 8019 8018 0 8020 8019 0\n\t\t 8013 8020 0 8014 8020 0 8021 8019 0 8020 8021 0 8020 8022 0 8022 8021 0 8021 8023 0\n\t\t 8023 8019 0 8023 8018 0 8023 7610 0 7610 8018 0 8023 7616 0 8023 8024 0 8024 7616 0\n\t\t 8021 8024 0 8021 8025 0 8025 8024 0 8026 8025 0 8021 8026 0 8022 8026 0 8027 8025 0\n\t\t 8026 8027 0 8026 8028 0 8028 8027 0 8027 8029 0 8029 8025 0 8029 8024 0 8029 7618 0\n\t\t 7618 8024 0 8029 7624 0 8029 8030 0 8030 7624 0 8027 8030 0 8027 8031 0 8031 8030 0\n\t\t 8032 8031 0 8027 8032 0 8028 8032 0 8033 8031 0 8032 8033 0 8032 8034 0 8034 8033 0\n\t\t 8033 8035 0 8035 8031 0 8035 8030 0 8035 7626 0 7626 8030 0 8035 8060 0 8035 8043 0\n\t\t 8043 8060 0 8033 8043 0 8033 8039 0 8039 8043 0 8036 8039 0 8033 8036 0 8034 8036 0\n\t\t 8036 8038 0 8038 8037 0 8037 8036 0 8037 8039 0 8038 8040 0 8040 8037 0 8040 8041 0\n\t\t 8041 8037 0 8041 8042 0 8042 8037 0 8042 8059 0 8059 8037 0 8059 8039 0 8059 8043 0\n\t\t 8042 7886 0 7886 8059 0 7885 8059 0 8044 8041 0 8040 8044 0 8040 8045 0 8045 8044 0\n\t\t 8044 8046 0 8046 8041 0 8046 8042 0 8046 7888 0 7888 8042 0 8046 7894 0 8046 8047 0\n\t\t 8047 7894 0 8044 8047 0 8044 8048 0 8048 8047 0 8049 8048 0 8044 8049 0 8045 8049 0\n\t\t 8050 8048 0 8049 8050 0 8049 8051 0 8051 8050 0 8050 8052 0 8052 8048 0 8052 8047 0;\n\tsetAttr \".ed[26394:26559]\" 8052 7896 0 7896 8047 0 8052 7902 0 8052 8053 0 8053 7902 0\n\t\t 8050 8053 0 8050 8054 0 8054 8053 0 8055 8054 0 8050 8055 0 8051 8055 0 8056 8054 0\n\t\t 8055 8056 0 8055 8057 0 8057 8056 0 8056 8058 0 8058 8054 0 8058 8053 0 8058 7904 0\n\t\t 7904 8053 0 8058 7600 0 8058 8017 0 8056 8017 0 8056 8015 0 8056 8012 0 8057 8012 0\n\t\t 7885 8043 0 8061 8063 0 8063 8062 0 8062 8061 0 8062 8064 0 8064 8061 0 8063 8065 0\n\t\t 8065 8062 0 8065 8066 0 8066 8062 0 8065 8067 0 8067 8066 0 8067 8068 0 8068 8066 0\n\t\t 8069 8067 0 8065 8069 0 8065 8070 0 8070 8069 0 8063 8070 0 8063 8071 0 8071 8070 0\n\t\t 8061 8071 0 8061 8072 0 8072 8071 0 8073 8071 0 8072 8073 0 8072 8074 0 8074 8073 0\n\t\t 8073 8075 0 8075 8071 0 8075 8070 0 8075 8076 0 8076 8070 0 8076 8069 0 8077 8076 0\n\t\t 8075 8077 0 8075 8078 0 8078 8077 0 8073 8078 0 8073 8079 0 8079 8078 0 8074 8079 0\n\t\t 8074 8080 0 8080 8079 0 8081 8079 0 8080 8081 0 8080 8082 0 8082 8081 0 8081 8083 0\n\t\t 8083 8079 0 8083 8078 0 8083 8084 0 8084 8078 0 8084 8077 0 8085 8084 0 8083 8085 0\n\t\t 8083 8086 0 8086 8085 0 8081 8086 0 8081 8087 0 8087 8086 0 8082 8087 0 8082 8088 0\n\t\t 8088 8087 0 8089 8087 0 8088 8089 0 8088 8090 0 8090 8089 0 8089 8091 0 8091 8087 0\n\t\t 8091 8086 0 8091 8092 0 8092 8086 0 8092 8085 0 8126 8092 0 8091 8126 0 8091 8125 0\n\t\t 8125 8126 0 8089 8125 0 8089 8093 0 8093 8125 0 8090 8093 0 8090 8094 0 8094 8093 0\n\t\t 8082 8095 0 8095 8088 0 8096 8095 0 8082 8096 0 8096 8097 0 8097 8095 0 8098 8097 0\n\t\t 8096 8098 0 8096 8099 0 8099 8098 0 8100 8098 0 8099 8100 0 8099 8101 0 8101 8100 0\n\t\t 8102 8100 0 8101 8102 0 8101 8103 0 8103 8102 0 8103 8104 0 8104 8102 0 8104 8105 0\n\t\t 8105 8102 0 8064 8104 0 8103 8064 0 8103 8061 0 8103 8072 0 8101 8072 0 8099 8074 0\n\t\t 8074 8101 0 8099 8080 0 8096 8080 0 8106 8104 0 8064 8106 0 8064 8107 0 8107 8106 0\n\t\t 8062 8107 0 8062 8108 0 8108 8107 0 8109 8107 0 8108 8109 0 8108 8110 0 8110 8109 0\n\t\t 8111 8109 0 8110 8111 0 8110 8112 0 8112 8111 0 8113 8111 0 8112 8113 0 8112 8114 0\n\t\t 8114 8113 0 8115 8113 0 8114 8115 0 8114 8116 0 8116 8115 0 8117 8115 0 8116 8117 0;\n\tsetAttr \".ed[26560:26725]\" 8116 8118 0 8118 8117 0 8119 8117 0 8118 8119 0 8118 8120 0\n\t\t 8120 8119 0 8094 8119 0 8120 8094 0 8120 8093 0 8118 8121 0 8121 8120 0 8121 8122 0\n\t\t 8122 8120 0 8122 8093 0 8122 8125 0 8121 8123 0 8123 8122 0 8123 8124 0 8124 8122 0\n\t\t 8124 8125 0 8124 8126 0 8116 8127 0 8127 8118 0 8127 8121 0 8127 8128 0 8128 8121 0\n\t\t 8128 8123 0 8129 8128 0 8127 8129 0 8127 8130 0 8130 8129 0 8116 8130 0 8114 8130 0\n\t\t 8131 8130 0 8114 8131 0 8112 8131 0 8131 8132 0 8132 8130 0 8132 8129 0 8133 8132 0\n\t\t 8131 8133 0 8131 8134 0 8134 8133 0 8112 8134 0 8110 8134 0 8135 8134 0 8110 8135 0\n\t\t 8108 8135 0 8135 8136 0 8136 8134 0 8136 8133 0 8068 8136 0 8135 8068 0 8135 8066 0\n\t\t 8108 8066 0 8132 8137 0 8137 8129 0 8138 8137 0 8132 8138 0 8133 8138 0 8138 8139 0\n\t\t 8139 8137 0 8139 8140 0 8140 8137 0 8141 8137 0 8140 8141 0 8141 8129 0 8141 8128 0\n\t\t 8141 8142 0 8142 8128 0 8142 8123 0 8142 8143 0 8143 8123 0 8143 8124 0 8143 8562 0\n\t\t 8562 8124 0 8143 8144 0 8144 8562 0 8144 8561 0 8561 8562 0 8144 8145 0 8145 8561 0\n\t\t 8145 8563 0 8563 8561 0 8145 8146 0 8146 8563 0 8146 8222 0 8222 8563 0 8146 8147 0\n\t\t 8147 8222 0 8147 8148 0 8148 8222 0 8147 8149 0 8149 8148 0 8149 8224 0 8224 8148 0\n\t\t 8149 8150 0 8150 8224 0 8150 8223 0 8223 8224 0 8150 8151 0 8151 8223 0 8151 8225 0\n\t\t 8225 8223 0 8152 8147 0 8146 8152 0 8146 8153 0 8153 8152 0 8145 8153 0 8152 8154 0\n\t\t 8154 8147 0 8154 8149 0 8154 8155 0 8155 8149 0 8155 8150 0 8155 8156 0 8156 8150 0\n\t\t 8156 8151 0 8157 8156 0 8155 8157 0 8155 8158 0 8158 8157 0 8154 8158 0 8154 8159 0\n\t\t 8159 8158 0 8152 8159 0 8152 8160 0 8160 8159 0 8153 8160 0 8153 8161 0 8161 8160 0\n\t\t 8162 8160 0 8161 8162 0 8161 8163 0 8163 8162 0 8162 8164 0 8164 8160 0 8164 8159 0\n\t\t 8164 8165 0 8165 8159 0 8165 8158 0 8165 8166 0 8166 8158 0 8166 8157 0 8167 8166 0\n\t\t 8165 8167 0 8165 8168 0 8168 8167 0 8164 8168 0 8164 8169 0 8169 8168 0 8162 8169 0\n\t\t 8162 8170 0 8170 8169 0 8163 8170 0 8163 8171 0 8171 8170 0 8172 8170 0 8171 8172 0\n\t\t 8171 8173 0 8173 8172 0 8172 8174 0 8174 8170 0 8174 8169 0 8174 8175 0 8175 8169 0;\n\tsetAttr \".ed[26726:26891]\" 8175 8168 0 8175 8176 0 8176 8168 0 8176 8167 0 8177 8176 0\n\t\t 8175 8177 0 8175 8178 0 8178 8177 0 8174 8178 0 8179 8177 0 8178 8179 0 8178 8180 0\n\t\t 8180 8179 0 8178 8181 0 8181 8180 0 8174 8181 0 8172 8181 0 8181 8182 0 8182 8180 0\n\t\t 8181 8183 0 8183 8182 0 8172 8183 0 8173 8183 0 8183 8184 0 8184 8182 0 8183 8185 0\n\t\t 8185 8184 0 8173 8185 0 8185 8186 0 8186 8184 0 8187 8179 0 8180 8187 0 8180 8188 0\n\t\t 8188 8187 0 8182 8188 0 8182 8189 0 8189 8188 0 8184 8189 0 8184 8190 0 8190 8189 0\n\t\t 8186 8190 0 8186 8191 0 8191 8190 0 8192 8190 0 8191 8192 0 8191 8193 0 8193 8192 0\n\t\t 8192 8194 0 8194 8190 0 8194 8189 0 8194 8195 0 8195 8189 0 8195 8188 0 8195 8196 0\n\t\t 8196 8188 0 8196 8187 0 8197 8196 0 8195 8197 0 8195 8198 0 8198 8197 0 8194 8198 0\n\t\t 8194 8199 0 8199 8198 0 8192 8199 0 8192 8200 0 8200 8199 0 8193 8200 0 8193 8201 0\n\t\t 8201 8200 0 8202 8200 0 8201 8202 0 8201 8203 0 8203 8202 0 8202 8204 0 8204 8200 0\n\t\t 8204 8199 0 8204 8205 0 8205 8199 0 8205 8198 0 8205 8206 0 8206 8198 0 8206 8197 0\n\t\t 8207 8206 0 8205 8207 0 8205 8208 0 8208 8207 0 8204 8208 0 8204 8209 0 8209 8208 0\n\t\t 8202 8209 0 8202 8210 0 8210 8209 0 8203 8210 0 8203 8211 0 8211 8210 0 8212 8210 0\n\t\t 8211 8212 0 8211 8213 0 8213 8212 0 8212 8214 0 8214 8210 0 8214 8209 0 8214 8215 0\n\t\t 8215 8209 0 8215 8208 0 8215 8216 0 8216 8208 0 8216 8207 0 8217 8216 0 8215 8217 0\n\t\t 8215 8218 0 8218 8217 0 8214 8218 0 8214 8219 0 8219 8218 0 8212 8219 0 8212 8220 0\n\t\t 8220 8219 0 8213 8220 0 8213 8221 0 8221 8220 0 8148 8220 0 8221 8148 0 8221 8222 0\n\t\t 8224 8220 0 8224 8219 0 8223 8218 0 8219 8223 0 8225 8217 0 8218 8225 0 8217 8226 0\n\t\t 8226 8216 0 8226 8227 0 8227 8216 0 8227 8207 0 8227 8228 0 8228 8207 0 8228 8206 0\n\t\t 8228 8229 0 8229 8206 0 8229 8197 0 8229 8230 0 8230 8197 0 8230 8196 0 8230 8231 0\n\t\t 8231 8196 0 8231 8187 0 8231 8232 0 8232 8187 0 8232 8179 0 8232 8233 0 8233 8179 0\n\t\t 8233 8177 0 8233 8234 0 8234 8177 0 8233 8235 0 8235 8234 0 8235 8236 0 8236 8234 0\n\t\t 8235 8237 0 8237 8236 0 8237 8238 0 8238 8236 0 8237 8239 0 8239 8238 0 8239 8240 0;\n\tsetAttr \".ed[26892:27057]\" 8240 8238 0 8241 8239 0 8237 8241 0 8237 8242 0 8242 8241 0\n\t\t 8235 8242 0 8235 8243 0 8243 8242 0 8233 8243 0 8232 8243 0 8231 8244 0 8244 8232 0\n\t\t 8244 8243 0 8244 8245 0 8245 8243 0 8245 11039 0 11039 8243 0 8245 8246 0 8246 11039 0\n\t\t 8246 8241 0 8241 11039 0 8247 8246 0 8245 8247 0 8245 8248 0 8248 8247 0 8244 8248 0\n\t\t 8244 8249 0 8249 8248 0 8231 8249 0 8230 8249 0 8250 8249 0 8230 8250 0 8229 8250 0\n\t\t 8250 8251 0 8251 8249 0 8251 8248 0 8251 8252 0 8252 8248 0 8252 8247 0 8253 8252 0\n\t\t 8251 8253 0 8251 8254 0 8254 8253 0 8250 8254 0 8250 8255 0 8255 8254 0 8229 8255 0\n\t\t 8228 8255 0 8256 8255 0 8228 8256 0 8227 8256 0 8256 8257 0 8257 8255 0 8257 8254 0\n\t\t 8257 8258 0 8258 8254 0 8258 8253 0 8259 8258 0 8257 8259 0 8257 8260 0 8260 8259 0\n\t\t 8256 8260 0 8256 8261 0 8261 8260 0 8227 8261 0 8226 8261 0 8262 8261 0 8226 8262 0\n\t\t 8226 8507 0 8507 8262 0 8263 8260 0 8261 8263 0 8262 8263 0 8508 8259 0 8260 8508 0\n\t\t 8263 8508 0 8259 8264 0 8264 8258 0 8264 8265 0 8265 8258 0 8265 8253 0 8265 8266 0\n\t\t 8266 8253 0 8266 8252 0 8266 8267 0 8267 8252 0 8267 8247 0 8267 8268 0 8268 8247 0\n\t\t 8268 8246 0 8268 8269 0 8269 8246 0 8269 8241 0 8269 8270 0 8270 8241 0 8270 8239 0\n\t\t 8270 8271 0 8271 8239 0 8271 8240 0 8271 8272 0 8272 8240 0 8271 8273 0 8273 8272 0\n\t\t 8273 8274 0 8274 8272 0 8273 8275 0 8275 8274 0 8275 8276 0 8276 8274 0 8275 8277 0\n\t\t 8277 8276 0 8277 8278 0 8278 8276 0 8279 8277 0 8275 8279 0 8275 8280 0 8280 8279 0\n\t\t 8273 8280 0 8273 8281 0 8281 8280 0 8271 8281 0 8270 8281 0 8269 8282 0 8282 8270 0\n\t\t 8282 8281 0 8282 8283 0 8283 8281 0 8283 8280 0 8283 8284 0 8284 8280 0 8284 8279 0\n\t\t 8285 8284 0 8283 8285 0 8283 8286 0 8286 8285 0 8282 8286 0 8282 8287 0 8287 8286 0\n\t\t 8269 8287 0 8268 8287 0 8288 8287 0 8268 8288 0 8267 8288 0 8288 8289 0 8289 8287 0\n\t\t 8289 8286 0 8289 8290 0 8290 8286 0 8290 8285 0 8291 8290 0 8289 8291 0 8289 8292 0\n\t\t 8292 8291 0 8288 8292 0 8288 8293 0 8293 8292 0 8267 8293 0 8266 8293 0 8294 8293 0\n\t\t 8266 8294 0 8265 8294 0 8294 8295 0 8295 8293 0 8295 8292 0 8295 8296 0 8296 8292 0;\n\tsetAttr \".ed[27058:27223]\" 8296 8291 0 8297 8296 0 8295 8297 0 8295 8298 0 8298 8297 0\n\t\t 8294 8298 0 8294 8299 0 8299 8298 0 8265 8299 0 8264 8299 0 8420 8299 0 8264 8420 0\n\t\t 8264 8300 0 8300 8420 0 8301 8298 0 8299 8301 0 8420 8301 0 8417 8297 0 8298 8417 0\n\t\t 8301 8417 0 8297 8302 0 8302 8296 0 8302 8303 0 8303 8296 0 8303 8291 0 8303 8304 0\n\t\t 8304 8291 0 8304 8290 0 8304 8305 0 8305 8290 0 8305 8285 0 8305 8306 0 8306 8285 0\n\t\t 8306 8284 0 8306 8307 0 8307 8284 0 8307 8279 0 8307 8308 0 8308 8279 0 8308 8277 0\n\t\t 8308 8309 0 8309 8277 0 8309 8278 0 8309 8310 0 8310 8278 0 8309 8311 0 8311 8310 0\n\t\t 8311 8312 0 8312 8310 0 8311 8313 0 8313 8312 0 8313 8314 0 8314 8312 0 8313 8315 0\n\t\t 8315 8314 0 8315 8316 0 8316 8314 0 8317 8315 0 8313 8317 0 8313 8318 0 8318 8317 0\n\t\t 8311 8318 0 8311 8319 0 8319 8318 0 8309 8319 0 8308 8319 0 8307 8320 0 8320 8308 0\n\t\t 8320 8319 0 8320 8321 0 8321 8319 0 8321 8318 0 8321 8322 0 8322 8318 0 8322 8317 0\n\t\t 8323 8322 0 8321 8323 0 8321 8324 0 8324 8323 0 8320 8324 0 8320 8325 0 8325 8324 0\n\t\t 8307 8325 0 8306 8325 0 8326 8325 0 8306 8326 0 8305 8326 0 8326 8327 0 8327 8325 0\n\t\t 8327 8324 0 8327 8328 0 8328 8324 0 8328 8323 0 8329 8328 0 8327 8329 0 8327 8330 0\n\t\t 8330 8329 0 8326 8330 0 8326 8331 0 8331 8330 0 8305 8331 0 8304 8331 0 8332 8331 0\n\t\t 8304 8332 0 8303 8332 0 8332 8333 0 8333 8331 0 8333 8330 0 8333 8334 0 8334 8330 0\n\t\t 8334 8329 0 8335 8334 0 8333 8335 0 8333 8336 0 8336 8335 0 8332 8336 0 8332 8337 0\n\t\t 8337 8336 0 8303 8337 0 8302 8337 0 8339 8337 0 8302 8339 0 8302 8415 0 8415 8339 0\n\t\t 8338 8336 0 8337 8338 0 8339 8338 0 8510 8335 0 8336 8510 0 8338 8510 0 8335 8340 0\n\t\t 8340 8334 0 8340 8341 0 8341 8334 0 8341 8329 0 8341 8342 0 8342 8329 0 8342 8328 0\n\t\t 8342 8343 0 8343 8328 0 8343 8323 0 8343 8344 0 8344 8323 0 8344 8322 0 8344 8345 0\n\t\t 8345 8322 0 8345 8317 0 8345 8346 0 8346 8317 0 8346 8315 0 8346 8347 0 8347 8315 0\n\t\t 8347 8316 0 8347 8348 0 8348 8316 0 8347 8349 0 8349 8348 0 8349 8350 0 8350 8348 0\n\t\t 8349 8351 0 8351 8350 0 8351 8352 0 8352 8350 0 8351 8353 0 8353 8352 0 8353 8354 0;\n\tsetAttr \".ed[27224:27389]\" 8354 8352 0 8355 8353 0 8351 8355 0 8351 8356 0 8356 8355 0\n\t\t 8349 8356 0 8349 8357 0 8357 8356 0 8347 8357 0 8346 8357 0 8345 8358 0 8358 8346 0\n\t\t 8358 8357 0 8358 8359 0 8359 8357 0 8359 8356 0 8359 8360 0 8360 8356 0 8360 8355 0\n\t\t 8361 8360 0 8359 8361 0 8359 8362 0 8362 8361 0 8358 8362 0 8358 8363 0 8363 8362 0\n\t\t 8345 8363 0 8344 8363 0 8364 8363 0 8344 8364 0 8343 8364 0 8364 8365 0 8365 8363 0\n\t\t 8365 8362 0 8365 8366 0 8366 8362 0 8366 8361 0 8367 8366 0 8365 8367 0 8365 8368 0\n\t\t 8368 8367 0 8364 8368 0 8364 8369 0 8369 8368 0 8343 8369 0 8342 8369 0 8370 8369 0\n\t\t 8342 8370 0 8341 8370 0 8370 8371 0 8371 8369 0 8371 8368 0 8371 8372 0 8372 8368 0\n\t\t 8372 8367 0 8511 8372 0 8371 8511 0 8371 8373 0 8373 8511 0 8370 8373 0 8370 8374 0\n\t\t 8374 8373 0 8341 8374 0 8340 8374 0 8375 8374 0 8340 8375 0 8340 8509 0 8509 8375 0\n\t\t 8376 8373 0 8374 8376 0 8375 8376 0 8372 8377 0 8377 8367 0 8511 8377 0 8511 8378 0\n\t\t 8378 8377 0 8378 8379 0 8379 8377 0 8379 8380 0 8380 8377 0 8380 8381 0 8381 8377 0\n\t\t 8381 8382 0 8382 8377 0 8383 8382 0 8381 8383 0 8381 8384 0 8384 8383 0 8384 8385 0\n\t\t 8385 8383 0 8385 8386 0 8386 8383 0 8387 8386 0 8385 8387 0 8385 8388 0 8388 8387 0\n\t\t 8388 8389 0 8389 8387 0 8389 8390 0 8390 8387 0 8391 8390 0 8389 8391 0 8389 8392 0\n\t\t 8392 8391 0 8392 8393 0 8393 8391 0 8393 8394 0 8394 8391 0 8394 8354 0 8354 8391 0\n\t\t 8353 8391 0 8355 8391 0 8355 8390 0 8355 8387 0 8360 8387 0 8361 8387 0 8361 8386 0\n\t\t 8361 8383 0 8366 8383 0 8367 8383 0 8367 8382 0 8395 8394 0 8393 8395 0 8393 8396 0\n\t\t 8396 8395 0 8396 8397 0 8397 8395 0 8397 8398 0 8398 8395 0 8399 8398 0 8397 8399 0\n\t\t 8397 8400 0 8400 8399 0 8400 8401 0 8401 8399 0 8401 8402 0 8402 8399 0 8403 8402 0\n\t\t 8401 8403 0 8401 8404 0 8404 8403 0 8404 8405 0 8405 8403 0 8405 8406 0 8406 8403 0\n\t\t 8407 8406 0 8405 8407 0 8405 8513 0 8513 8407 0 8408 8406 0 8407 8408 0 8408 8403 0\n\t\t 8407 8512 0 8512 8408 0 8512 8376 0 8376 8408 0 8376 8409 0 8409 8408 0 8375 8409 0\n\t\t 8375 8410 0 8410 8409 0 8509 8410 0 8509 8411 0 8411 8410 0 8509 8510 0 8510 8411 0;\n\tsetAttr \".ed[27390:27555]\" 8510 8412 0 8412 8411 0 8338 8412 0 8338 8413 0 8413 8412 0\n\t\t 8339 8413 0 8339 8414 0 8414 8413 0 8415 8414 0 8415 8416 0 8416 8414 0 8415 8417 0\n\t\t 8417 8416 0 8417 8418 0 8418 8416 0 8301 8418 0 8301 8419 0 8419 8418 0 8420 8419 0\n\t\t 8420 8421 0 8421 8419 0 8300 8421 0 8300 8422 0 8422 8421 0 8300 8508 0 8508 8422 0\n\t\t 8508 8423 0 8423 8422 0 8263 8423 0 8263 10811 0 10811 8423 0 8262 10811 0 8262 8425 0\n\t\t 8425 10811 0 8507 8425 0 8507 8426 0 8426 8425 0 8507 8225 0 8225 8426 0 8151 8426 0\n\t\t 8427 8426 0 8151 8427 0 8156 8427 0 8427 8428 0 8428 8426 0 8428 10812 0 10812 8426 0\n\t\t 8428 8429 0 8429 10812 0 8429 8424 0 8424 10812 0 8429 8430 0 8430 8424 0 8430 8423 0\n\t\t 8423 8424 0 8431 8430 0 8429 8431 0 8429 8432 0 8432 8431 0 8428 8432 0 8428 8433 0\n\t\t 8433 8432 0 8427 8433 0 8427 8434 0 8434 8433 0 8156 8434 0 8157 8434 0 8435 8434 0\n\t\t 8157 8435 0 8166 8435 0 8435 8436 0 8436 8434 0 8436 8433 0 8436 8437 0 8437 8433 0\n\t\t 8437 8432 0 8437 8438 0 8438 8432 0 8438 8431 0 8439 8438 0 8437 8439 0 8437 8440 0\n\t\t 8440 8439 0 8436 8440 0 8436 9511 0 9511 8440 0 8441 8436 0 8435 8441 0 8435 8442 0\n\t\t 8442 8441 0 8166 8442 0 8167 8442 0 8443 8442 0 8167 8443 0 8176 8443 0 8443 8444 0\n\t\t 8444 8442 0 8444 8441 0 9511 8444 0 8444 8445 0 8445 9511 0 8445 8440 0 8445 8446 0\n\t\t 8446 8440 0 8446 8439 0 8240 8446 0 8445 8240 0 8445 8238 0 8444 8238 0 8444 8236 0\n\t\t 8443 8236 0 8443 8234 0 8176 8234 0 8439 8447 0 8447 8438 0 8446 8448 0 8448 8439 0\n\t\t 8448 8447 0 8448 8449 0 8449 8447 0 8449 8450 0 8450 8447 0 8451 8447 0 8450 8451 0\n\t\t 8450 8452 0 8452 8451 0 8453 8451 0 8452 8453 0 8453 8431 0 8431 8451 0 8453 8430 0\n\t\t 8453 8454 0 8454 8430 0 8454 8423 0 8454 8422 0 8454 8455 0 8455 8422 0 8455 8421 0\n\t\t 8455 8456 0 8456 8421 0 8456 8419 0 8456 8457 0 8457 8419 0 8457 8418 0 8458 8457 0\n\t\t 8456 8458 0 8456 8459 0 8459 8458 0 8455 8459 0 8455 8460 0 8460 8459 0 8454 8460 0\n\t\t 8453 8460 0 8452 8460 0 8452 8461 0 8461 8460 0 8461 8459 0 8461 8462 0 8462 8459 0\n\t\t 8462 8458 0 8463 8462 0 8461 8463 0 8461 8464 0 8464 8463 0 8452 8464 0 8450 8464 0;\n\tsetAttr \".ed[27556:27721]\" 8465 8464 0 8450 8465 0 8449 8465 0 8465 8466 0 8466 8464 0\n\t\t 8466 8463 0 8278 8466 0 8465 8278 0 8465 8276 0 8449 8276 0 8449 8274 0 8448 8274 0\n\t\t 8448 8272 0 8446 8272 0 8463 8467 0 8467 8462 0 8467 8468 0 8468 8462 0 8468 8458 0\n\t\t 8468 8469 0 8469 8458 0 8469 8457 0 8469 8470 0 8470 8457 0 8470 8418 0 8470 8416 0\n\t\t 8470 8471 0 8471 8416 0 8471 8414 0 8471 8472 0 8472 8414 0 8472 8413 0 8472 8473 0\n\t\t 8473 8413 0 8473 8412 0 8474 8473 0 8472 8474 0 8472 8475 0 8475 8474 0 8471 8475 0\n\t\t 8471 8476 0 8476 8475 0 8470 8476 0 8469 8476 0 8477 8476 0 8469 8477 0 8468 8477 0\n\t\t 8477 8478 0 8478 8476 0 8478 8475 0 8478 8479 0 8479 8475 0 8479 8474 0 8480 8479 0\n\t\t 8478 8480 0 8478 8481 0 8481 8480 0 8477 8481 0 8477 8482 0 8482 8481 0 8468 8482 0\n\t\t 8467 8482 0 8483 8482 0 8467 8483 0 8467 8484 0 8484 8483 0 8463 8484 0 8466 8484 0\n\t\t 8483 8485 0 8485 8482 0 8485 8481 0 8485 8486 0 8486 8481 0 8486 8480 0 8316 8486 0\n\t\t 8485 8316 0 8485 8314 0 8483 8314 0 8483 8312 0 8484 8312 0 8484 8310 0 8466 8310 0\n\t\t 8480 8487 0 8487 8479 0 8486 8488 0 8488 8480 0 8488 8487 0 8488 8489 0 8489 8487 0\n\t\t 8489 8490 0 8490 8487 0 8491 8487 0 8490 8491 0 8490 8492 0 8492 8491 0 8493 8491 0\n\t\t 8492 8493 0 8493 8474 0 8474 8491 0 8493 8473 0 8493 8494 0 8494 8473 0 8494 8412 0\n\t\t 8494 8411 0 8494 8495 0 8495 8411 0 8495 8410 0 8495 8496 0 8496 8410 0 8496 8409 0\n\t\t 8496 8497 0 8497 8409 0 8497 8408 0 8498 8497 0 8496 8498 0 8496 8499 0 8499 8498 0\n\t\t 8495 8499 0 8495 8500 0 8500 8499 0 8494 8500 0 8493 8500 0 8492 8500 0 8492 8501 0\n\t\t 8501 8500 0 8501 8499 0 8501 8502 0 8502 8499 0 8502 8498 0 8503 8502 0 8501 8503 0\n\t\t 8501 8504 0 8504 8503 0 8492 8504 0 8490 8504 0 8505 8504 0 8490 8505 0 8489 8505 0\n\t\t 8505 8506 0 8506 8504 0 8506 8503 0 8354 8506 0 8505 8354 0 8505 8352 0 8489 8352 0\n\t\t 8489 8350 0 8488 8350 0 8488 8348 0 8486 8348 0 8399 8502 0 8503 8399 0 8399 8498 0\n\t\t 8402 8498 0 8403 8498 0 8403 8497 0 8394 8506 0 8395 8506 0 8395 8503 0 8503 8398 0\n\t\t 8507 8217 0 8300 8259 0 8438 8451 0 8415 8297 0 8509 8335 0 8512 8373 0 8512 8511 0;\n\tsetAttr \".ed[27722:27887]\" 8479 8491 0 8407 8511 0 8407 8378 0 8407 8379 0 8513 8379 0\n\t\t 8097 8514 0 8514 8095 0 8515 8095 0 8514 8515 0 8515 8088 0 8514 8516 0 8516 8515 0\n\t\t 8517 8515 0 8516 8517 0 8516 8518 0 8518 8517 0 8517 8090 0 8090 8515 0 8517 8094 0\n\t\t 8517 8523 0 8523 8094 0 8518 8523 0 8518 8519 0 8519 8523 0 8519 8521 0 8521 8520 0\n\t\t 8520 8519 0 8520 8523 0 8522 8520 0 8521 8522 0 8522 8117 0 8117 8520 0 8119 8520 0\n\t\t 8119 8523 0 8521 8524 0 8524 8522 0 8525 8522 0 8524 8525 0 8524 8526 0 8526 8525 0\n\t\t 8525 8115 0 8115 8522 0 8525 8113 0 8525 8527 0 8527 8113 0 8526 8527 0 8526 8528 0\n\t\t 8528 8527 0 8529 8527 0 8528 8529 0 8528 8530 0 8530 8529 0 8529 8111 0 8111 8527 0\n\t\t 8529 8109 0 8529 8531 0 8531 8109 0 8530 8531 0 8530 8532 0 8532 8531 0 8106 8531 0\n\t\t 8532 8106 0 8532 8533 0 8533 8106 0 8107 8531 0 8533 8104 0 8533 8105 0 8067 8534 0\n\t\t 8534 8068 0 8534 8535 0 8535 8068 0 8534 8536 0 8536 8535 0 8536 8537 0 8537 8535 0\n\t\t 8536 8538 0 8538 8537 0 8538 8539 0 8539 8537 0 8538 8186 0 8186 8539 0 8185 8539 0\n\t\t 8538 8191 0 8538 8540 0 8540 8191 0 8536 8540 0 8536 8541 0 8541 8540 0 8534 8541 0\n\t\t 8534 8542 0 8542 8541 0 8067 8542 0 8069 8542 0 8543 8542 0 8069 8543 0 8076 8543 0\n\t\t 8543 8544 0 8544 8542 0 8544 8541 0 8544 8545 0 8545 8541 0 8545 8540 0 8545 8193 0\n\t\t 8193 8540 0 8545 8201 0 8545 8546 0 8546 8201 0 8544 8546 0 8544 8547 0 8547 8546 0\n\t\t 8543 8547 0 8543 8548 0 8548 8547 0 8076 8548 0 8077 8548 0 8549 8548 0 8077 8549 0\n\t\t 8084 8549 0 8549 8550 0 8550 8548 0 8550 8547 0 8550 8551 0 8551 8547 0 8551 8546 0\n\t\t 8551 8203 0 8203 8546 0 8551 8211 0 8551 8552 0 8552 8211 0 8550 8552 0 8550 8553 0\n\t\t 8553 8552 0 8549 8553 0 8549 8554 0 8554 8553 0 8084 8554 0 8085 8554 0 8555 8554 0\n\t\t 8085 8555 0 8092 8555 0 8555 8556 0 8556 8554 0 8556 8553 0 8556 8557 0 8557 8553 0\n\t\t 8557 8552 0 8557 8213 0 8213 8552 0 8557 8221 0 8557 8558 0 8558 8221 0 8556 8558 0\n\t\t 8556 8559 0 8559 8558 0 8555 8559 0 8555 8560 0 8560 8559 0 8092 8560 0 8126 8560 0\n\t\t 8562 8560 0 8126 8562 0 8561 8559 0 8560 8561 0 8563 8558 0 8559 8563 0 8558 8222 0;\n\tsetAttr \".ed[27888:28053]\" 8142 8564 0 8564 8143 0 8564 8144 0 8564 8565 0 8565 8144 0\n\t\t 8565 8145 0 8565 8153 0 8565 8161 0 8565 8566 0 8566 8161 0 8564 8566 0 8564 8567 0\n\t\t 8567 8566 0 8142 8567 0 8141 8567 0 8140 8567 0 8140 8568 0 8568 8567 0 8568 8566 0\n\t\t 8568 8163 0 8163 8566 0 8568 8171 0 8568 8569 0 8569 8171 0 8140 8569 0 8139 8569 0\n\t\t 8570 8569 0 8139 8570 0 8139 8571 0 8571 8570 0 8138 8571 0 8138 8572 0 8572 8571 0\n\t\t 8133 8572 0 8136 8572 0 8570 8173 0 8173 8569 0 8570 8185 0 8570 8539 0 8571 8539 0\n\t\t 8571 8537 0 8572 8537 0 8572 8535 0 8136 8535 0 8573 8575 0 8575 8574 0 8574 8573 0\n\t\t 8574 11877 0 11877 8573 0 8577 8573 0 11877 8577 0 11877 9374 0 9374 8577 0 8579 8577 0\n\t\t 9374 8579 0 9374 8580 0 8580 8579 0 8581 8579 0 8580 8581 0 8580 9172 0 9172 8581 0\n\t\t 8583 8581 0 9172 8583 0 9172 9175 0 9175 8583 0 9139 8583 0 9175 9139 0 9175 9140 0\n\t\t 9140 9139 0 8585 8586 0 8586 9158 0 9158 8585 0 9158 9160 0 9160 8585 0 8589 11876 0\n\t\t 11876 9099 0 9099 8589 0 9100 8873 0 8873 9156 0 9156 9100 0 9154 8590 0 8590 8591 0\n\t\t 8591 9154 0 8591 9157 0 9157 9154 0 9232 9155 0 9155 8592 0 8592 9232 0 8592 8594 0\n\t\t 8594 9232 0 9079 9233 0 9233 8661 0 8661 9079 0 8580 9081 0 9081 9172 0 8661 8596 0\n\t\t 8596 9079 0 9123 9080 0 9080 9082 0 9082 9123 0 9123 9173 0 9173 9080 0 9082 8598 0\n\t\t 8598 9123 0 9014 8597 0 8597 8711 0 8711 9014 0 8711 8600 0 8600 9014 0 9278 9015 0\n\t\t 9015 8777 0 8777 9278 0 8777 8602 0 8602 9278 0 8602 8603 0 8603 9278 0 8603 8604 0\n\t\t 8604 9278 0 8586 9278 0 8604 8586 0 8604 9158 0 8601 9140 0 9175 8601 0 9176 9015 0\n\t\t 9278 9176 0 8599 8584 0 8584 9174 0 9174 8599 0 8582 8597 0 9014 8582 0 8578 8593 0\n\t\t 8593 8595 0 8595 8578 0 8578 11875 0 11875 8593 0 8576 9155 0 9232 8576 0 8602 12016 0\n\t\t 12016 8603 0 8777 12016 0 12016 8771 0 8771 8603 0 8777 8690 0 8690 12016 0 8691 8600 0\n\t\t 8711 8691 0 8711 8608 0 8608 8691 0 8712 8598 0 9082 8712 0 9082 8753 0 8753 8712 0\n\t\t 8609 8596 0 8661 8609 0 8661 8662 0 8662 8609 0 8663 8594 0 8592 8663 0 8592 9767 0\n\t\t 9767 8663 0 9766 9157 0 8591 9766 0 8591 9769 0 9769 9766 0 8611 8612 0 8612 9805 0;\n\tsetAttr \".ed[28054:28219]\" 9805 8611 0 9807 9765 0 9765 9768 0 9768 9807 0 9767 9764 0\n\t\t 9764 8663 0 8615 9763 0 9763 9806 0 9806 8615 0 9806 9810 0 9810 8615 0 8615 8617 0\n\t\t 8617 9763 0 8617 8618 0 8618 9763 0 8614 8805 0 8805 8610 0 8610 8614 0 8752 8610 0\n\t\t 8805 8752 0 8617 8619 0 8619 8618 0 8619 8620 0 8620 8618 0 8620 8751 0 8751 8618 0\n\t\t 8619 8621 0 8621 8620 0 8621 8708 0 8708 8620 0 8621 8623 0 8623 8708 0 8623 8693 0\n\t\t 8693 8708 0 8623 8625 0 8625 8693 0 8625 8626 0 8626 8693 0 8772 9794 0 9794 9793 0\n\t\t 9793 8772 0 9793 10054 0 10054 8772 0 8708 8751 0 8707 8712 0 8753 8707 0 8772 8771 0\n\t\t 8771 9794 0 12016 9794 0 8626 8605 0 8605 8693 0 8690 8692 0 8692 12016 0 8608 8706 0\n\t\t 8706 8691 0 8622 8624 0 8624 8607 0 8607 8622 0 8627 8628 0 8628 8629 0 8629 8627 0\n\t\t 8606 8627 0 8629 8606 0 8629 8630 0 8630 8606 0 8810 8606 0 8630 8810 0 8630 8631 0\n\t\t 8631 8810 0 8991 8810 0 8631 8991 0 8631 11865 0 11865 8991 0 9159 8991 0 11865 9159 0\n\t\t 8632 8633 0 8633 8587 0 8587 8632 0 8633 8588 0 8588 8587 0 8634 11865 0 8631 8634 0\n\t\t 8631 8635 0 8635 8634 0 8630 8636 0 8636 8631 0 8636 8635 0 8637 8634 0 8635 8637 0\n\t\t 8635 8638 0 8638 8637 0 8639 8638 0 8635 8639 0 8636 8639 0 9374 9081 0 8640 9102 0\n\t\t 9102 9098 0 9098 8640 0 9098 11979 0 11979 8640 0 9100 9101 0 9101 8873 0 9101 8874 0\n\t\t 8874 8873 0 8590 8875 0 8875 8591 0 8875 9578 0 9578 8591 0 9578 9572 0 9572 8591 0\n\t\t 9572 9769 0 8612 9573 0 9573 9575 0 9575 8612 0 9575 9805 0 8613 9574 0 9574 8646 0\n\t\t 8646 8613 0 8646 8616 0 8616 8613 0 8640 9604 0 9604 9102 0 9604 9593 0 9593 9102 0\n\t\t 8643 8642 0 8642 9595 0 9595 8643 0 9593 8649 0 8649 9102 0 8642 8641 0 8641 9595 0\n\t\t 9595 8650 0 8650 8643 0 8651 8646 0 9574 8651 0 9574 8652 0 8652 8651 0 8650 9610 0\n\t\t 9610 8643 0 9610 8644 0 8644 8643 0 8645 8644 0 9610 8645 0 8653 8652 0 9574 8653 0\n\t\t 9619 9708 0 9708 9611 0 9611 9619 0 9610 8655 0 8655 8654 0 8654 9610 0 8650 8655 0\n\t\t 8648 8647 0 8647 8656 0 8656 8648 0 8656 8657 0 8657 8648 0 9595 8658 0 8658 8650 0\n\t\t 9595 9594 0 9594 8658 0 8657 9712 0 9712 8648 0 8658 8659 0 8659 8650 0 8659 8655 0;\n\tsetAttr \".ed[28220:28223]\" 9619 8660 0 8660 9708 0 8660 9714 0 9714 9708 0;\n\tsetAttr -s 46356 \".n\";\n\tsetAttr \".n[0:165]\" -type \"float3\"  0.918302 -0.09683498 -0.38380077 0.91866815\n\t\t 0.064607941 -0.38962981 0.88079464 0.16220611 -0.44477674 0.88079464 0.16220611 -0.44477674\n\t\t 0.86513871 0.05630688 -0.49833673 0.918302 -0.09683498 -0.38380077 0.86513871 0.05630688\n\t\t -0.49833673 0.88079464 0.16220611 -0.44477674 0.66991162 0.5016939 -0.54722744 0.66991162\n\t\t 0.5016939 -0.54722744 0.63142782 0.42243737 -0.65022743 0.86513871 0.05630688 -0.49833673\n\t\t 0.27567348 0.68312633 -0.67622918 0.63142782 0.42243737 -0.65022743 0.66991162 0.5016939\n\t\t -0.54722744 0.66991162 0.5016939 -0.54722744 0.20352769 0.82320625 -0.52995396 0.27567348\n\t\t 0.68312633 -0.67622918 0.27567348 0.68312633 -0.67622918 0.20352769 0.82320625 -0.52995396\n\t\t -0.11267461 0.87624735 -0.46845919 -0.11267461 0.87624735 -0.46845919 0.0064391689\n\t\t 0.76552624 -0.64336073 0.27567348 0.68312633 -0.67622918 -0.083590433 0.77068388\n\t\t -0.63167214 0.0064391689 0.76552624 -0.64336073 -0.11267461 0.87624735 -0.46845919\n\t\t -0.11267461 0.87624735 -0.46845919 -0.23581679 0.8602556 -0.45204023 -0.083590433\n\t\t 0.77068388 -0.63167214 0.9127171 -0.13324356 -0.38621172 0.918302 -0.09683498 -0.38380077\n\t\t 0.86513871 0.05630688 -0.49833673 0.92422265 -0.38175574 0.0029603238 0.90527064\n\t\t -0.42069739 0.058595568 0.88213766 -0.44734004 0.14719079 0.88213766 -0.44734004\n\t\t 0.14719079 0.93667424 -0.34928405 -0.024384264 0.92422265 -0.38175574 0.0029603238\n\t\t 0.85476255 -0.46433881 0.2317576 0.88213766 -0.44734004 0.14719079 0.90527064 -0.42069739\n\t\t 0.058595568 0.90527064 -0.42069739 0.058595568 0.89779365 -0.42490894 0.11560415\n\t\t 0.85476255 -0.46433881 0.2317576 0.88213766 -0.44734004 0.14719079 0.85476255 -0.46433881\n\t\t 0.2317576 0.78337979 -0.50364673 0.36414689 0.78337979 -0.50364673 0.36414689 0.89910591\n\t\t -0.39310867 0.19244975 0.88213766 -0.44734004 0.14719079 0.93667424 -0.34928405 -0.024384264\n\t\t 0.88213766 -0.44734004 0.14719079 0.89910591 -0.39310867 0.19244975 0.89910591 -0.39310867\n\t\t 0.19244975 0.94018382 -0.33588642 0.056764454 0.93667424 -0.34928405 -0.024384264\n\t\t 0.87026596 -0.39445144 0.29490039 0.85476255 -0.46433881 0.2317576 0.89779365 -0.42490894\n\t\t 0.11560415 0.78337979 -0.50364673 0.36414689 0.85476255 -0.46433881 0.2317576 0.87026596\n\t\t -0.39445144 0.29490039 0.89779365 -0.42490894 0.11560415 0.93130296 -0.33344492 0.1463668\n\t\t 0.87026596 -0.39445144 0.29490039 0.87026596 -0.39445144 0.29490039 0.67775524 -0.48454213\n\t\t 0.55302596 0.78337979 -0.50364673 0.36414689 0.92944127 -0.12353867 -0.34760582 0.9127171\n\t\t -0.13324356 -0.38621172 0.91192365 -0.14560355 -0.38358715 0.91192365 -0.14560355\n\t\t -0.38358715 0.92745757 -0.13602075 -0.34827724 0.92944127 -0.12353867 -0.34760582\n\t\t 0.94476151 -0.062898383 -0.32157353 0.92944127 -0.12353867 -0.34760582 0.92745757\n\t\t -0.13602075 -0.34827724 0.86513871 0.05630688 -0.49833673 0.91192365 -0.14560355\n\t\t -0.38358715 0.9127171 -0.13324356 -0.38621172 0.66713458 0.2368543 -0.70622885 0.69801927\n\t\t 0.22327358 -0.68034911 0.56672859 0.36048475 -0.7408368 0.56672859 0.36048475 -0.7408368\n\t\t 0.53483677 0.34098342 -0.77306437 0.66713458 0.2368543 -0.70622885 0.69801927 0.22327358\n\t\t -0.68034911 0.86513871 0.05630688 -0.49833673 0.63142782 0.42243737 -0.65022743 0.63142782\n\t\t 0.42243737 -0.65022743 0.56672859 0.36048475 -0.7408368 0.69801927 0.22327358 -0.68034911\n\t\t 0.56672859 0.36048475 -0.7408368 0.63142782 0.42243737 -0.65022743 0.27567348 0.68312633\n\t\t -0.67622918 0.27567348 0.68312633 -0.67622918 0.25928509 0.56797999 -0.78112131 0.56672859\n\t\t 0.36048475 -0.7408368 0.53483677 0.34098342 -0.77306437 0.56672859 0.36048475 -0.7408368\n\t\t 0.25928509 0.56797999 -0.78112131 0.25928509 0.56797999 -0.78112131 0.25540927 0.4922941\n\t\t -0.83208722 0.53483677 0.34098342 -0.77306437 0.25540927 0.4922941 -0.83208722 0.25928509\n\t\t 0.56797999 -0.78112131 0.039643351 0.63090909 -0.774804 0.039643351 0.63090909 -0.774804\n\t\t 0.083864696 0.54393131 -0.8348949 0.25540927 0.4922941 -0.83208722 0.25928509 0.56797999\n\t\t -0.78112131 0.27567348 0.68312633 -0.67622918 0.0064391689 0.76552624 -0.64336073\n\t\t 0.0064391689 0.76552624 -0.64336073 0.039643351 0.63090909 -0.774804 0.25928509 0.56797999\n\t\t -0.78112131 0.039643351 0.63090909 -0.774804 0.0064391689 0.76552624 -0.64336073\n\t\t -0.083590433 0.77068388 -0.63167214 -0.083590433 0.77068388 -0.63167214 -0.0090031493\n\t\t 0.61119413 -0.79140604 0.039643351 0.63090909 -0.774804 0.083864696 0.54393131 -0.8348949\n\t\t 0.039643351 0.63090909 -0.774804 -0.0090031493 0.61119413 -0.79140604 -0.0090031493\n\t\t 0.61119413 -0.79140604 0.044099078 0.54036069 -0.84023565 0.083864696 0.54393131\n\t\t -0.8348949 0.67766345 0.22025223 -0.70159 0.66713458 0.2368543 -0.70622885 0.53483677\n\t\t 0.34098342 -0.77306437 0.92745757 -0.13602075 -0.34827724 0.94476151 -0.069704011\n\t\t -0.32023072 0.94476151 -0.062898383 -0.32157353 0.95623648 -0.048432603 -0.28852198\n\t\t 0.94476151 -0.062898383 -0.32157353 0.94476151 -0.069704011 -0.32023072 0.94476151\n\t\t -0.069704011 -0.32023072 0.95776236 -0.057038821 -0.28177741 0.95623648 -0.048432603\n\t\t -0.28852198 0.97567677 -0.033570074 -0.2164983 0.95623648 -0.048432603 -0.28852198\n\t\t 0.95776236 -0.057038821 -0.28177741 0.95776236 -0.057038821 -0.28177741 0.97677541\n\t\t -0.035828445 -0.21109653 0.97567677 -0.033570074 -0.2164983 0.70751053 0.18820782\n\t\t -0.68114263 0.68474376 0.18997787 -0.7035737 0.54390079 0.26047561 -0.79766226 0.54390079\n\t\t 0.26047561 -0.79766226 0.5583666 0.25223559 -0.79027683 0.70751053 0.18820782 -0.68114263\n\t\t 0.23105553 0.34577471 -0.90939057 0.5583666 0.25223559 -0.79027683 0.54390079 0.26047561\n\t\t -0.79766226 0.54390079 0.26047561 -0.79766226 0.24066885 0.36973175 -0.89739674 0.23105553\n\t\t 0.34577471 -0.90939057 0.23105553 0.34577471 -0.90939057 0.24066885 0.36973175 -0.89739674\n\t\t 0.04464845 0.42362738 -0.90472126 0.04464845 0.42362738 -0.90472126 0.010711878 0.38529614\n\t\t -0.92272711 0.23105553 0.34577471 -0.90939057 -0.046754479 0.39500099 -0.91744745;\n\tsetAttr \".n[166:331]\" -type \"float3\"  0.010711878 0.38529614 -0.92272711 0.04464845\n\t\t 0.42362738 -0.90472126 0.04464845 0.42362738 -0.90472126 -0.0081485789 0.44291508\n\t\t -0.89651179 -0.046754479 0.39500099 -0.91744745 0.98660237 0.0028995513 -0.16302988\n\t\t 0.97567677 -0.033570074 -0.2164983 0.97677541 -0.035828445 -0.21109653 0.89544362\n\t\t -0.25592792 0.36420792 0.88900423 -0.20697623 0.40839872 0.80294204 -0.25598899 0.53825498\n\t\t 0.80294204 -0.25598899 0.53825498 0.81298268 -0.30280438 0.49732965 0.89544362 -0.25592792\n\t\t 0.36420792 0.93533134 -0.27542922 0.22190009 0.89544362 -0.25592792 0.36420792 0.81298268\n\t\t -0.30280438 0.49732965 0.57463312 -0.36960942 0.73015535 0.81298268 -0.30280438 0.49732965\n\t\t 0.80294204 -0.25598899 0.53825498 0.80294204 -0.25598899 0.53825498 0.55034041 -0.33301774\n\t\t 0.76561785 0.57463312 -0.36960942 0.73015535 0.97677541 -0.035828445 -0.21109653\n\t\t 0.98681599 0.0054936246 -0.16156499 0.98660237 0.0028995513 -0.16302988 0.71440774\n\t\t 0.22034381 -0.66411328 0.70751053 0.18820782 -0.68114263 0.5583666 0.25223559 -0.79027683\n\t\t 0.98660237 0.0028995513 -0.16302988 0.98681599 0.0054936246 -0.16156499 0.99063081\n\t\t 0.021058068 -0.1347087 0.99063081 0.021058068 -0.1347087 0.99145484 0.020813921 -0.12854396\n\t\t 0.98660237 0.0028995513 -0.16302988 0.71547586 0.23480959 -0.65797907 0.71440774\n\t\t 0.22034381 -0.66411328 0.55766469 0.27909189 -0.78170109 0.5583666 0.25223559 -0.79027683\n\t\t 0.55766469 0.27909189 -0.78170109 0.71440774 0.22034381 -0.66411328 0.55766469 0.27909189\n\t\t -0.78170109 0.53904831 0.29453427 -0.78908658 0.71547586 0.23480959 -0.65797907 0.20340577\n\t\t 0.35932493 -0.91073334 0.53904831 0.29453427 -0.78908658 0.55766469 0.27909189 -0.78170109\n\t\t 0.55766469 0.27909189 -0.78170109 0.21619302 0.35374004 -0.91000092 0.20340577 0.35932493\n\t\t -0.91073334 0.20340577 0.35932493 -0.91073334 0.21619302 0.35374004 -0.91000092 -0.016205447\n\t\t 0.37852103 -0.92544329 0.010711878 0.38529614 -0.92272711 -0.016205447 0.37852103\n\t\t -0.92544329 0.21619302 0.35374004 -0.91000092 -0.016205447 0.37852103 -0.92544329\n\t\t -0.028412851 0.37751392 -0.92553484 0.20340577 0.35932493 -0.91073334 -0.093325719\n\t\t 0.37907031 -0.92062134 -0.028412851 0.37751392 -0.92553484 -0.016205447 0.37852103\n\t\t -0.92544329 -0.016205447 0.37852103 -0.92544329 -0.07782232 0.38309875 -0.92040771\n\t\t -0.093325719 0.37907031 -0.92062134 0.21619302 0.35374004 -0.91000092 0.55766469\n\t\t 0.27909189 -0.78170109 0.5583666 0.25223559 -0.79027683 0.5583666 0.25223559 -0.79027683\n\t\t 0.23105553 0.34577471 -0.90939057 0.21619302 0.35374004 -0.91000092 0.21619302 0.35374004\n\t\t -0.91000092 0.23105553 0.34577471 -0.90939057 0.010711878 0.38529614 -0.92272711\n\t\t -0.07782232 0.38309875 -0.92040771 -0.016205447 0.37852103 -0.92544329 0.010711878\n\t\t 0.38529614 -0.92272711 0.010711878 0.38529614 -0.92272711 -0.046754479 0.39500099\n\t\t -0.91744745 -0.07782232 0.38309875 -0.92040771 0.28156388 -0.36790049 0.88619649\n\t\t 0.55034041 -0.33301774 0.76561785 0.56169331 -0.31684291 0.7642445 0.56169331 -0.31684291\n\t\t 0.7642445 0.27536863 -0.35792091 0.89220864 0.28156388 -0.36790049 0.88619649 0.28156388\n\t\t -0.36790049 0.88619649 0.27536863 -0.35792091 0.89220864 0.15109725 -0.36439088 0.91888177\n\t\t 0.15109725 -0.36439088 0.91888177 0.17505428 -0.36652717 0.9137547 0.28156388 -0.36790049\n\t\t 0.88619649 0.31296742 -0.39683202 0.86284983 0.28156388 -0.36790049 0.88619649 0.17505428\n\t\t -0.36652717 0.9137547 0.17505428 -0.36652717 0.9137547 0.20294821 -0.40119621 0.89321578\n\t\t 0.31296742 -0.39683202 0.86284983 0.49534604 -0.42536679 0.75737792 0.31296742 -0.39683202\n\t\t 0.86284983 0.20294821 -0.40119621 0.89321578 0.20294821 -0.40119621 0.89321578 0.63176376\n\t\t -0.47898772 0.60939366 0.49534604 -0.42536679 0.75737792 0.49534604 -0.42536679 0.75737792\n\t\t 0.63176376 -0.47898772 0.60939366 0.37766671 -0.52668828 0.76152843 0.37766671 -0.52668828\n\t\t 0.76152843 0.45783883 -0.52189684 0.71968752 0.49534604 -0.42536679 0.75737792 0.66402185\n\t\t -0.41105354 0.62453085 0.49534604 -0.42536679 0.75737792 0.45783883 -0.52189684 0.71968752\n\t\t 0.45783883 -0.52189684 0.71968752 0.67775524 -0.48454213 0.55302596 0.66402185 -0.41105354\n\t\t 0.62453085 0.45783883 -0.52189684 0.71968752 0.37766671 -0.52668828 0.76152843 0.46790996\n\t\t -0.55342245 0.68901646 0.67775524 -0.48454213 0.55302596 0.45783883 -0.52189684 0.71968752\n\t\t 0.46790996 -0.55342245 0.68901646 0.49534604 -0.42536679 0.75737792 0.66402185 -0.41105354\n\t\t 0.62453085 0.57463312 -0.36960942 0.73015535 0.57463312 -0.36960942 0.73015535 0.31296742\n\t\t -0.39683202 0.86284983 0.49534604 -0.42536679 0.75737792 0.57463312 -0.36960942 0.73015535\n\t\t 0.55034041 -0.33301774 0.76561785 0.28156388 -0.36790049 0.88619649 0.28156388 -0.36790049\n\t\t 0.88619649 0.31296742 -0.39683202 0.86284983 0.57463312 -0.36960942 0.73015535 0.56169331\n\t\t -0.31684291 0.7642445 0.55034041 -0.33301774 0.76561785 0.80294204 -0.25598899 0.53825498\n\t\t 0.80294204 -0.25598899 0.53825498 0.81142616 -0.23532793 0.53495896 0.56169331 -0.31684291\n\t\t 0.7642445 0.81142616 -0.23532793 0.53495896 0.80294204 -0.25598899 0.53825498 0.88900423\n\t\t -0.20697623 0.40839872 0.88900423 -0.20697623 0.40839872 0.88409078 -0.19482987 0.4247261\n\t\t 0.81142616 -0.23532793 0.53495896 0.57463312 -0.36960942 0.73015535 0.66402185 -0.41105354\n\t\t 0.62453085 0.86846536 -0.32975221 0.37015903 0.86846536 -0.32975221 0.37015903 0.81298268\n\t\t -0.30280438 0.49732965 0.57463312 -0.36960942 0.73015535 0.81298268 -0.30280438 0.49732965\n\t\t 0.86846536 -0.32975221 0.37015903 0.93533134 -0.27542922 0.22190009 0.93130296 -0.33344492\n\t\t 0.1463668 0.93533134 -0.27542922 0.22190009 0.86846536 -0.32975221 0.37015903 0.86846536\n\t\t -0.32975221 0.37015903 0.87026596 -0.39445144 0.29490039 0.93130296 -0.33344492 0.1463668\n\t\t 0.66402185 -0.41105354 0.62453085 0.67775524 -0.48454213 0.55302596 0.87026596 -0.39445144\n\t\t 0.29490039 0.87026596 -0.39445144 0.29490039 0.86846536 -0.32975221 0.37015903;\n\tsetAttr \".n[332:497]\" -type \"float3\"  0.66402185 -0.41105354 0.62453085 0.46790996\n\t\t -0.55342245 0.68901646 0.78337979 -0.50364673 0.36414689 0.67775524 -0.48454213 0.55302596\n\t\t 0.23139164 -0.9414044 0.24533837 0.2057866 -0.96536142 0.16028328 0.29572466 -0.94839311\n\t\t 0.11432239 0.29572466 -0.94839311 0.11432239 0.31409681 -0.92580938 0.21021156 0.23139164\n\t\t -0.9414044 0.24533837 0.56514198 -0.82216847 0.067903742 0.31409681 -0.92580938 0.21021156\n\t\t 0.29572466 -0.94839311 0.11432239 0.29572466 -0.94839311 0.11432239 0.55662733 -0.82992017\n\t\t -0.037049409 0.56514198 -0.82216847 0.067903742 0.56514198 -0.82216847 0.067903742\n\t\t 0.55662733 -0.82992017 -0.037049409 0.80260646 -0.54774594 -0.23612167 0.80260646\n\t\t -0.54774594 -0.23612167 0.81371522 -0.5671252 -0.1273537 0.56514198 -0.82216847 0.067903742\n\t\t 0.92938024 -0.19669154 -0.31232643 0.81371522 -0.5671252 -0.1273537 0.80260646 -0.54774594\n\t\t -0.23612167 0.80260646 -0.54774594 -0.23612167 0.90328687 -0.17166637 -0.39313945\n\t\t 0.92938024 -0.19669154 -0.31232643 0.92938024 -0.19669154 -0.31232643 0.90328687\n\t\t -0.17166637 -0.39313945 0.86385685 0.18420996 -0.46876431 0.86385685 0.18420996 -0.46876431\n\t\t 0.88756973 0.17273501 -0.42701498 0.92938024 -0.19669154 -0.31232643 0.70778507 0.5278483\n\t\t -0.46943575 0.88756973 0.17273501 -0.42701498 0.86385685 0.18420996 -0.46876431 0.86385685\n\t\t 0.18420996 -0.46876431 0.71456021 0.50785869 -0.48106331 0.70778507 0.5278483 -0.46943575\n\t\t 0.70778507 0.5278483 -0.46943575 0.71456021 0.50785869 -0.48106331 0.57740998 0.68498808\n\t\t -0.44422749 0.57740998 0.68498808 -0.44422749 0.54786801 0.7086094 -0.4445937 0.70778507\n\t\t 0.5278483 -0.46943575 0.22592881 -0.89983821 0.37308884 0.23139164 -0.9414044 0.24533837\n\t\t 0.31409681 -0.92580938 0.21021156 0.31409681 -0.92580938 0.21021156 0.29871544 -0.88836318\n\t\t 0.34864351 0.22592881 -0.89983821 0.37308884 0.31409681 -0.92580938 0.21021156 0.56514198\n\t\t -0.82216847 0.067903742 0.54017788 -0.80797738 0.23529777 0.54017788 -0.80797738\n\t\t 0.23529777 0.56514198 -0.82216847 0.067903742 0.81371522 -0.5671252 -0.1273537 0.54017788\n\t\t -0.80797738 0.23529777 0.29871544 -0.88836318 0.34864351 0.31409681 -0.92580938 0.21021156\n\t\t 0.81371522 -0.5671252 -0.1273537 0.81685859 -0.57536525 0.040589657 0.54017788 -0.80797738\n\t\t 0.23529777 0.81371522 -0.5671252 -0.1273537 0.92938024 -0.19669154 -0.31232643 0.96267593\n\t\t -0.19885832 -0.18347727 0.96267593 -0.19885832 -0.18347727 0.81685859 -0.57536525\n\t\t 0.040589657 0.81371522 -0.5671252 -0.1273537 0.96267593 -0.19885832 -0.18347727 0.92938024\n\t\t -0.19669154 -0.31232643 0.88756973 0.17273501 -0.42701498 0.88756973 0.17273501 -0.42701498\n\t\t 0.91964471 0.17471872 -0.3516953 0.96267593 -0.19885832 -0.18347727 0.88756973 0.17273501\n\t\t -0.42701498 0.70778507 0.5278483 -0.46943575 0.73128432 0.50459319 -0.45884582 0.73128432\n\t\t 0.50459319 -0.45884582 0.91964471 0.17471872 -0.3516953 0.88756973 0.17273501 -0.42701498\n\t\t 0.73128432 0.50459319 -0.45884582 0.70778507 0.5278483 -0.46943575 0.54786801 0.7086094\n\t\t -0.4445937 0.54786801 0.7086094 -0.4445937 0.58140796 0.6264841 -0.51905888 0.73128432\n\t\t 0.50459319 -0.45884582 0.22898065 -0.8811608 0.41361743 0.22592881 -0.89983821 0.37308884\n\t\t 0.29871544 -0.88836318 0.34864351 0.29871544 -0.88836318 0.34864351 0.3065587 -0.86706126\n\t\t 0.39268172 0.22898065 -0.8811608 0.41361743 0.3065587 -0.86706126 0.39268172 0.29871544\n\t\t -0.88836318 0.34864351 0.54017788 -0.80797738 0.23529777 0.2355116 -0.87087607 0.43134868\n\t\t 0.22898065 -0.8811608 0.41361743 0.3065587 -0.86706126 0.39268172 0.3065587 -0.86706126\n\t\t 0.39268172 0.31839988 -0.85235125 0.41477713 0.2355116 -0.87087607 0.43134868 0.24600998\n\t\t -0.85656291 0.45353562 0.2355116 -0.87087607 0.43134868 0.31839988 -0.85235125 0.41477713\n\t\t 0.31839988 -0.85235125 0.41477713 0.33179751 -0.83486414 0.43916142 0.24600998 -0.85656291\n\t\t 0.45353562 0.24600998 -0.85656291 0.45353562 0.33179751 -0.83486414 0.43916142 0.3600271\n\t\t -0.80730593 0.46754363 0.3600271 -0.80730593 0.46754363 0.2673119 -0.83727521 0.4769128\n\t\t 0.24600998 -0.85656291 0.45353562 0.33179751 -0.83486414 0.43916142 0.31839988 -0.85235125\n\t\t 0.41477713 0.5731073 -0.7470929 0.33668026 0.5731073 -0.7470929 0.33668026 0.59483653\n\t\t -0.71428555 0.36863312 0.33179751 -0.83486414 0.43916142 0.3600271 -0.80730593 0.46754363\n\t\t 0.33179751 -0.83486414 0.43916142 0.59483653 -0.71428555 0.36863312 0.59483653 -0.71428555\n\t\t 0.36863312 0.62791848 -0.66557795 0.40333268 0.3600271 -0.80730593 0.46754363 0.62791848\n\t\t -0.66557795 0.40333268 0.59483653 -0.71428555 0.36863312 0.88143569 -0.42475632 0.20648827\n\t\t 0.88143569 -0.42475632 0.20648827 0.9052096 -0.35355663 0.23566397 0.62791848 -0.66557795\n\t\t 0.40333268 0.59483653 -0.71428555 0.36863312 0.5731073 -0.7470929 0.33668026 0.85705149\n\t\t -0.48609856 0.17062901 0.85705149 -0.48609856 0.17062901 0.88143569 -0.42475632 0.20648827\n\t\t 0.59483653 -0.71428555 0.36863312 0.88143569 -0.42475632 0.20648827 0.85705149 -0.48609856\n\t\t 0.17062901 0.99398792 -0.097323224 -0.049714644 0.99398792 -0.097323224 -0.049714644\n\t\t 0.99969482 0.0061040092 -0.023560289 0.88143569 -0.42475632 0.20648827 0.9052096\n\t\t -0.35355663 0.23566397 0.88143569 -0.42475632 0.20648827 0.99969482 0.0061040092\n\t\t -0.023560289 0.99969482 0.0061040092 -0.023560289 0.98037666 -0.15424024 0.1226539\n\t\t 0.9052096 -0.35355663 0.23566397 0.92468017 0.33924404 -0.17276531 0.99969482 0.0061040092\n\t\t -0.023560289 0.90649116 0.36872488 -0.20557271 0.90649116 0.36872488 -0.20557271\n\t\t 0.87243253 0.4302502 -0.23169655 0.92468017 0.33924404 -0.17276531 0.99969482 0.0061040092\n\t\t -0.023560289 0.99398792 -0.097323224 -0.049714644 0.93377477 0.27417856 -0.22986543\n\t\t 0.93377477 0.27417856 -0.22986543 0.90649116 0.36872488 -0.20557271 0.99969482 0.0061040092\n\t\t -0.023560289 0.90649116 0.36872488 -0.20557271 0.93377477 0.27417856 -0.22986543\n\t\t 0.77648228 0.51792985 -0.35886717;\n\tsetAttr \".n[498:663]\" -type \"float3\"  0.77648228 0.51792985 -0.35886717 0.77101946\n\t\t 0.55531502 -0.31159401 0.90649116 0.36872488 -0.20557271 0.90649116 0.36872488 -0.20557271\n\t\t 0.77101946 0.55531502 -0.31159401 0.87243253 0.4302502 -0.23169655 0.77101946 0.55531502\n\t\t -0.31159401 0.77892375 0.55244631 -0.2967315 0.87243253 0.4302502 -0.23169655 0.77892375\n\t\t 0.55244631 -0.2967315 0.81530178 0.50007653 -0.29178751 0.87243253 0.4302502 -0.23169655\n\t\t 0.83590215 -0.53505027 0.12222667 0.85705149 -0.48609856 0.17062901 0.5731073 -0.7470929\n\t\t 0.33668026 0.5731073 -0.7470929 0.33668026 0.55174434 -0.77733678 0.30210277 0.83590215\n\t\t -0.53505027 0.12222667 0.55174434 -0.77733678 0.30210277 0.5731073 -0.7470929 0.33668026\n\t\t 0.31839988 -0.85235125 0.41477713 0.31839988 -0.85235125 0.41477713 0.3065587 -0.86706126\n\t\t 0.39268172 0.55174434 -0.77733678 0.30210277 0.54017788 -0.80797738 0.23529777 0.55174434\n\t\t -0.77733678 0.30210277 0.3065587 -0.86706126 0.39268172 0.55174434 -0.77733678 0.30210277\n\t\t 0.54017788 -0.80797738 0.23529777 0.81685859 -0.57536525 0.040589657 0.81685859 -0.57536525\n\t\t 0.040589657 0.83590215 -0.53505027 0.12222667 0.55174434 -0.77733678 0.30210277 0.83590215\n\t\t -0.53505027 0.12222667 0.81685859 -0.57536525 0.040589657 0.96267593 -0.19885832\n\t\t -0.18347727 0.96267593 -0.19885832 -0.18347727 0.98071235 -0.1643419 -0.10574661\n\t\t 0.83590215 -0.53505027 0.12222667 0.85705149 -0.48609856 0.17062901 0.83590215 -0.53505027\n\t\t 0.12222667 0.98071235 -0.1643419 -0.10574661 0.98071235 -0.1643419 -0.10574661 0.99398792\n\t\t -0.097323224 -0.049714644 0.85705149 -0.48609856 0.17062901 0.99398792 -0.097323224\n\t\t -0.049714644 0.98071235 -0.1643419 -0.10574661 0.93371373 0.2049931 -0.29340497 0.93371373\n\t\t 0.2049931 -0.29340497 0.93377477 0.27417856 -0.22986543 0.99398792 -0.097323224 -0.049714644\n\t\t 0.98071235 -0.1643419 -0.10574661 0.96267593 -0.19885832 -0.18347727 0.91964471 0.17471872\n\t\t -0.3516953 0.91964471 0.17471872 -0.3516953 0.93371373 0.2049931 -0.29340497 0.98071235\n\t\t -0.1643419 -0.10574661 0.93371373 0.2049931 -0.29340497 0.91964471 0.17471872 -0.3516953\n\t\t 0.73128432 0.50459319 -0.45884582 0.73128432 0.50459319 -0.45884582 0.75518036 0.49714673\n\t\t -0.42716759 0.93371373 0.2049931 -0.29340497 0.93377477 0.27417856 -0.22986543 0.93371373\n\t\t 0.2049931 -0.29340497 0.75518036 0.49714673 -0.42716759 0.75518036 0.49714673 -0.42716759\n\t\t 0.77648228 0.51792985 -0.35886717 0.93377477 0.27417856 -0.22986543 0.77648228 0.51792985\n\t\t -0.35886717 0.75518036 0.49714673 -0.42716759 0.62889475 0.57426691 -0.5240944 0.62889475\n\t\t 0.57426691 -0.5240944 0.66801947 0.58006543 -0.46610922 0.77648228 0.51792985 -0.35886717\n\t\t 0.58140796 0.6264841 -0.51905888 0.62889475 0.57426691 -0.5240944 0.75518036 0.49714673\n\t\t -0.42716759 0.75518036 0.49714673 -0.42716759 0.73128432 0.50459319 -0.45884582 0.58140796\n\t\t 0.6264841 -0.51905888 0.77648228 0.51792985 -0.35886717 0.66801947 0.58006543 -0.46610922\n\t\t 0.68291253 0.61894614 -0.38792083 0.68291253 0.61894614 -0.38792083 0.77101946 0.55531502\n\t\t -0.31159401 0.77648228 0.51792985 -0.35886717 0.77892375 0.55244631 -0.2967315 0.77101946\n\t\t 0.55531502 -0.31159401 0.68291253 0.61894614 -0.38792083 0.13776086 -0.99035609 0.013092514\n\t\t 0.085635245 -0.99536121 -0.043427765 0.16089389 -0.98190248 -0.099551305 0.16089389\n\t\t -0.98190248 -0.099551305 0.20835017 -0.97711104 -0.042298578 0.13776086 -0.99035609\n\t\t 0.013092514 0.43400398 -0.87774271 -0.20294803 0.20835017 -0.97711104 -0.042298578\n\t\t 0.16089389 -0.98190248 -0.099551305 0.16089389 -0.98190248 -0.099551305 0.39402473\n\t\t -0.87905502 -0.26831868 0.43400398 -0.87774271 -0.20294803 0.43400398 -0.87774271\n\t\t -0.20294803 0.39402473 -0.87905502 -0.26831868 0.64595497 -0.61400175 -0.4535355\n\t\t 0.64595497 -0.61400175 -0.4535355 0.69234306 -0.60966802 -0.38590649 0.43400398 -0.87774271\n\t\t -0.20294803 0.83632928 -0.2308723 -0.497177 0.69234306 -0.60966802 -0.38590649 0.64595497\n\t\t -0.61400175 -0.4535355 0.64595497 -0.61400175 -0.4535355 0.79277939 -0.23761693 -0.56123537\n\t\t 0.83632928 -0.2308723 -0.497177 0.83632928 -0.2308723 -0.497177 0.79277939 -0.23761693\n\t\t -0.56123537 0.81347078 0.12424106 -0.5681631 0.81347078 0.12424106 -0.5681631 0.8406933\n\t\t 0.15024284 -0.52018797 0.83632928 -0.2308723 -0.497177 0.73818159 0.481094 -0.47285381\n\t\t 0.8406933 0.15024284 -0.52018797 0.81347078 0.12424106 -0.5681631 0.81347078 0.12424106\n\t\t -0.5681631 0.71913797 0.48857099 -0.49406418 0.73818159 0.481094 -0.47285381 0.73818159\n\t\t 0.481094 -0.47285381 0.71913797 0.48857099 -0.49406418 0.60267931 0.68044078 -0.41679135\n\t\t 0.60267931 0.68044078 -0.41679135 0.64018661 0.64470363 -0.41770691 0.73818159 0.481094\n\t\t -0.47285381 0.88698995 0.014069272 -0.46153143 0.84307379 0.16605142 -0.51149023\n\t\t 0.84652233 0.13715041 -0.51432842 0.84652233 0.13715041 -0.51432842 0.87664419 -0.012207168\n\t\t -0.48094118 0.88698995 0.014069272 -0.46153143 0.70323783 0.5150916 -0.48997471 0.62504941\n\t\t 0.59761357 -0.50212109 0.49323991 0.74065381 -0.45616022 0.49323991 0.74065381 -0.45616022\n\t\t 0.70781559 0.51081902 -0.48786893 0.70323783 0.5150916 -0.48997471 0.17792261 0.9424116\n\t\t -0.28318131 0.3740651 0.84859776 -0.37403491 0.49323991 0.74065381 -0.45616022 0.49323991\n\t\t 0.74065381 -0.45616022 0.32865357 0.86141557 -0.38718837 0.17792261 0.9424116 -0.28318131\n\t\t 0.76598412 -0.23917337 -0.59666735 0.79277939 -0.23761693 -0.56123537 0.64595497\n\t\t -0.61400175 -0.4535355 0.64595497 -0.61400175 -0.4535355 0.62050253 -0.61479527 -0.48677015\n\t\t 0.76598412 -0.23917337 -0.59666735 0.62050253 -0.61479527 -0.48677015 0.64595497\n\t\t -0.61400175 -0.4535355 0.39402473 -0.87905502 -0.26831868 0.39402473 -0.87905502\n\t\t -0.26831868 0.37220401 -0.88021475 -0.29438147 0.62050253 -0.61479527 -0.48677015\n\t\t 0.37220401 -0.88021475 -0.29438147 0.39402473 -0.87905502 -0.26831868 0.16089389\n\t\t -0.98190248 -0.099551305 0.16089389 -0.98190248 -0.099551305;\n\tsetAttr \".n[664:829]\" -type \"float3\"  0.14380351 -0.98260438 -0.11731307 0.37220401\n\t\t -0.88021475 -0.29438147 0.14380351 -0.98260438 -0.11731307 0.16089389 -0.98190248\n\t\t -0.099551305 0.085635245 -0.99536121 -0.043427765 0.085635245 -0.99536121 -0.043427765\n\t\t 0.069307841 -0.99584949 -0.058900647 0.14380351 -0.98260438 -0.11731307 0.13678426\n\t\t -0.98300111 -0.12222656 0.14380351 -0.98260438 -0.11731307 0.069307841 -0.99584949\n\t\t -0.058900647 0.069307841 -0.99584949 -0.058900647 0.063600875 -0.99591053 -0.063875169\n\t\t 0.13678426 -0.98300111 -0.12222656 0.36204135 -0.88183218 -0.30210266 0.37220401\n\t\t -0.88021475 -0.29438147 0.14380351 -0.98260438 -0.11731307 0.14380351 -0.98260438\n\t\t -0.11731307 0.13678426 -0.98300111 -0.12222656 0.36204135 -0.88183218 -0.30210266\n\t\t 0.37220401 -0.88021475 -0.29438147 0.36204135 -0.88183218 -0.30210266 0.60951585\n\t\t -0.61693156 -0.49784839 0.60951585 -0.61693156 -0.49784839 0.62050253 -0.61479527\n\t\t -0.48677015 0.37220401 -0.88021475 -0.29438147 0.75530267 -0.24185899 -0.60908842\n\t\t 0.76598412 -0.23917337 -0.59666735 0.62050253 -0.61479527 -0.48677015 0.62050253\n\t\t -0.61479527 -0.48677015 0.60951585 -0.61693156 -0.49784839 0.75530267 -0.24185899\n\t\t -0.60908842 0.76598412 -0.23917337 -0.59666735 0.75530267 -0.24185899 -0.60908842\n\t\t 0.77059233 0.10235927 -0.629017 0.77059233 0.10235927 -0.629017 0.78865927 0.10293914\n\t\t -0.60609758 0.76598412 -0.23917337 -0.59666735 0.79277939 -0.23761693 -0.56123537\n\t\t 0.76598412 -0.23917337 -0.59666735 0.78865927 0.10293914 -0.60609758 0.78865927 0.10293914\n\t\t -0.60609758 0.81347078 0.12424106 -0.5681631 0.79277939 -0.23761693 -0.56123537 0.78865927\n\t\t 0.10293914 -0.60609758 0.77059233 0.10235927 -0.629017 0.73375648 0.28720987 -0.6156804\n\t\t 0.73375648 0.28720987 -0.6156804 0.71401095 0.45094168 -0.53553885 0.78865927 0.10293914\n\t\t -0.60609758 0.81347078 0.12424106 -0.5681631 0.78865927 0.10293914 -0.60609758 0.71401095\n\t\t 0.45094168 -0.53553885 0.71401095 0.45094168 -0.53553885 0.71913797 0.48857099 -0.49406418\n\t\t 0.81347078 0.12424106 -0.5681631 0.71913797 0.48857099 -0.49406418 0.71401095 0.45094168\n\t\t -0.53553885 0.6990568 0.50862163 -0.50257885 0.6990568 0.50862163 -0.50257885 0.60267931\n\t\t 0.68044078 -0.41679135 0.71913797 0.48857099 -0.49406418 0.84307379 0.16605142 -0.51149023\n\t\t 0.6990568 0.50862163 -0.50257885 0.70760202 0.48161277 -0.51701415 0.70760202 0.48161277\n\t\t -0.51701415 0.84652233 0.13715041 -0.51432842 0.84307379 0.16605142 -0.51149023 0.62306571\n\t\t 0.56624055 -0.53956729 0.70760202 0.48161277 -0.51701415 0.6990568 0.50862163 -0.50257885\n\t\t 0.6990568 0.50862163 -0.50257885 0.64537472 0.48616004 -0.58915991 0.62306571 0.56624055\n\t\t -0.53956729 0.64537472 0.48616004 -0.58915991 0.6990568 0.50862163 -0.50257885 0.71401095\n\t\t 0.45094168 -0.53553885 0.71401095 0.45094168 -0.53553885 0.73375648 0.28720987 -0.6156804\n\t\t 0.64537472 0.48616004 -0.58915991 0.64537472 0.48616004 -0.58915991 0.73375648 0.28720987\n\t\t -0.6156804 0.77059233 0.10235927 -0.629017 0.62504941 0.59761357 -0.50212109 0.70760202\n\t\t 0.48161277 -0.51701415 0.43675014 0.78698087 -0.43574333 0.43675014 0.78698087 -0.43574333\n\t\t 0.49323991 0.74065381 -0.45616022 0.62504941 0.59761357 -0.50212109 0.70760202 0.48161277\n\t\t -0.51701415 0.62306571 0.56624055 -0.53956729 0.37363788 0.80767244 -0.45606866 0.37363788\n\t\t 0.80767244 -0.45606866 0.43675014 0.78698087 -0.43574333 0.70760202 0.48161277 -0.51701415\n\t\t 0.43675014 0.78698087 -0.43574333 0.37363788 0.80767244 -0.45606866 0.092623375 0.95620596\n\t\t -0.2775659 0.092623375 0.95620596 -0.2775659 0.10464767 0.95806766 -0.26673183 0.43675014\n\t\t 0.78698087 -0.43574333 0.49323991 0.74065381 -0.45616022 0.43675014 0.78698087 -0.43574333\n\t\t 0.10464767 0.95806766 -0.26673183 0.10464767 0.95806766 -0.26673183 0.32865357 0.86141557\n\t\t -0.38718837 0.49323991 0.74065381 -0.45616022 0.62306571 0.56624055 -0.53956729 0.64537472\n\t\t 0.48616004 -0.58915991 0.41196913 0.73155928 -0.543199 0.41196913 0.73155928 -0.543199\n\t\t 0.37363788 0.80767244 -0.45606866 0.62306571 0.56624055 -0.53956729 0.092623375 0.95620596\n\t\t -0.2775659 0.37363788 0.80767244 -0.45606866 0.41196913 0.73155928 -0.543199 0.41196913\n\t\t 0.73155928 -0.543199 0.11941864 0.92123181 -0.37015906 0.092623375 0.95620596 -0.2775659\n\t\t 0.092623375 0.95620596 -0.2775659 0.11941864 0.92123181 -0.37015906 -0.15921536 0.97683638\n\t\t -0.14294878 -0.15921536 0.97683638 -0.14294878 -0.15472914 0.98336732 -0.094912641\n\t\t 0.092623375 0.95620596 -0.2775659 0.10464767 0.95806766 -0.26673183 0.092623375 0.95620596\n\t\t -0.2775659 -0.15472914 0.98336732 -0.094912641 -0.22583726 0.97317415 -0.043733094\n\t\t -0.15472914 0.98336732 -0.094912641 -0.15921536 0.97683638 -0.14294878 -0.15921536\n\t\t 0.97683638 -0.14294878 -0.26685414 0.96291995 -0.039124798 -0.22583726 0.97317415\n\t\t -0.043733094 -0.087832578 0.98336738 -0.15884891 0.10464767 0.95806766 -0.26673183\n\t\t -0.15857448 0.98217714 -0.10083324 -0.15472914 0.98336732 -0.094912641 -0.15857448\n\t\t 0.98217714 -0.10083324 0.10464767 0.95806766 -0.26673183 -0.15857448 0.98217714 -0.10083324\n\t\t -0.15472914 0.98336732 -0.094912641 -0.22583726 0.97317415 -0.043733094 -0.15857448\n\t\t 0.98217714 -0.10083324 -0.15903226 0.97906423 -0.12686552 -0.087832578 0.98336738\n\t\t -0.15884891 0.17792261 0.9424116 -0.28318131 -0.087832578 0.98336738 -0.15884891\n\t\t -0.15903226 0.97906423 -0.12686552 -0.15903226 0.97906423 -0.12686552 -0.099215977\n\t\t 0.98388618 -0.14853366 0.17792261 0.9424116 -0.28318131 0.16583729 0.95208597 -0.25687435\n\t\t 0.17792261 0.9424116 -0.28318131 -0.099215977 0.98388618 -0.14853366 0.3740651 0.84859776\n\t\t -0.37403491 0.17792261 0.9424116 -0.28318131 0.16583729 0.95208597 -0.25687435 0.16583729\n\t\t 0.95208597 -0.25687435 0.36417711 0.86449796 -0.34638515 0.3740651 0.84859776 -0.37403491\n\t\t 0.70781559 0.51081902 -0.48786893 0.74120283 0.48313874 -0.46595663 0.73964643 0.48628214\n\t\t -0.46519366 0.73964643 0.48628214 -0.46519366 0.70323783 0.5150916 -0.48997471;\n\tsetAttr \".n[830:995]\" -type \"float3\"  0.70781559 0.51081902 -0.48786893 0.87664419\n\t\t -0.012207168 -0.48094118 0.89941096 -0.03756804 -0.43540758 0.90026551 -0.026947599\n\t\t -0.43443099 0.90026551 -0.026947599 -0.43443099 0.88698995 0.014069272 -0.46153143\n\t\t 0.87664419 -0.012207168 -0.48094118 0.73818159 0.481094 -0.47285381 0.64018661 0.64470363\n\t\t -0.41770691 0.62739933 0.66313684 -0.40812409 0.62739933 0.66313684 -0.40812409 0.72545528\n\t\t 0.51692271 -0.45435959 0.73818159 0.481094 -0.47285381 0.8406933 0.15024284 -0.52018797\n\t\t 0.73818159 0.481094 -0.47285381 0.72545528 0.51692271 -0.45435959 0.72545528 0.51692271\n\t\t -0.45435959 0.8474074 0.20548137 -0.48951691 0.8406933 0.15024284 -0.52018797 0.8406933\n\t\t 0.15024284 -0.52018797 0.8474074 0.20548137 -0.48951691 0.86913669 -0.15622401 -0.46922207\n\t\t 0.86913669 -0.15622401 -0.46922207 0.83632928 -0.2308723 -0.497177 0.8406933 0.15024284\n\t\t -0.52018797 0.69234306 -0.60966802 -0.38590649 0.83632928 -0.2308723 -0.497177 0.86913669\n\t\t -0.15622401 -0.46922207 0.86913669 -0.15622401 -0.46922207 0.76210839 -0.52986211\n\t\t -0.37195957 0.69234306 -0.60966802 -0.38590649 0.69234306 -0.60966802 -0.38590649\n\t\t 0.76210839 -0.52986211 -0.37195957 0.5097509 -0.84124255 -0.18002863 0.5097509 -0.84124255\n\t\t -0.18002863 0.43400398 -0.87774271 -0.20294803 0.69234306 -0.60966802 -0.38590649\n\t\t 0.20835017 -0.97711104 -0.042298578 0.43400398 -0.87774271 -0.20294803 0.5097509\n\t\t -0.84124255 -0.18002863 0.5097509 -0.84124255 -0.18002863 0.25376171 -0.96725357\n\t\t -0.0022582978 0.20835017 -0.97711104 -0.042298578 0.13776086 -0.99035609 0.013092514\n\t\t 0.20835017 -0.97711104 -0.042298578 0.25376171 -0.96725357 -0.0022582978 0.25376171\n\t\t -0.96725357 -0.0022582978 0.16394573 -0.98416084 0.06707976 0.13776086 -0.99035609\n\t\t 0.013092514 0.067446209 -0.98712116 -0.14484078 0.069246806 -0.98654133 -0.14807573\n\t\t 0.023163859 -0.99697864 -0.073976792 0.023163859 -0.99697864 -0.073976792 0.02432356\n\t\t -0.99697864 -0.073580049 0.067446209 -0.98712116 -0.14484078 0.23093385 -0.89635909\n\t\t -0.37836841 0.069246806 -0.98654133 -0.14807573 0.067446209 -0.98712116 -0.14484078\n\t\t 0.067446209 -0.98712116 -0.14484078 0.23020139 -0.89706099 -0.37717819 0.23093385\n\t\t -0.89635909 -0.37836841 0.23093385 -0.89635909 -0.37836841 0.23020139 -0.89706099\n\t\t -0.37717819 0.42222378 -0.63744003 -0.64445931 0.42222378 -0.63744003 -0.64445931\n\t\t 0.42027059 -0.64192629 -0.64128536 0.23093385 -0.89635909 -0.37836841 0.53651547\n\t\t -0.26526678 -0.80108035 0.42027059 -0.64192629 -0.64128536 0.42222378 -0.63744003\n\t\t -0.64445931 0.42222378 -0.63744003 -0.64445931 0.53801084 -0.2527847 -0.80410171\n\t\t 0.53651547 -0.26526678 -0.80108035 0.53651547 -0.26526678 -0.80108035 0.53801084\n\t\t -0.2527847 -0.80410171 0.55583358 0.15915415 -0.81588185 0.55583358 0.15915415 -0.81588185\n\t\t 0.55674911 0.14423059 -0.81804866 0.53651547 -0.26526678 -0.80108035 0.49217185 0.50071728\n\t\t -0.71202743 0.55674911 0.14423059 -0.81804866 0.55583358 0.15915415 -0.81588185 0.55583358\n\t\t 0.15915415 -0.81588185 0.48734993 0.51423699 -0.70567954 0.49217185 0.50071728 -0.71202743\n\t\t 0.49217185 0.50071728 -0.71202743 0.48734993 0.51423699 -0.70567954 0.36649653 0.77358323\n\t\t -0.51689208 0.36649653 0.77358323 -0.51689208 0.37162367 0.76610619 -0.52433854 0.49217185\n\t\t 0.50071728 -0.71202743 0.19409743 0.9464401 -0.25800353 0.37162367 0.76610619 -0.52433854\n\t\t 0.36649653 0.77358323 -0.51689208 0.36649653 0.77358323 -0.51689208 0.18872616 0.94970554\n\t\t -0.24979408 0.19409743 0.9464401 -0.25800353 0.19409743 0.9464401 -0.25800353 0.18872616\n\t\t 0.94970554 -0.24979408 -0.0042729005 0.99938965 0.034577396 -0.0042729005 0.99938965\n\t\t 0.034577396 -0.0034489005 0.99945068 0.032532655 0.19409743 0.9464401 -0.25800353\n\t\t -0.07712058 0.98620564 0.14639722 -0.0034489005 0.99945068 0.032532655 -0.0042729005\n\t\t 0.99938965 0.034577396 -0.0042729005 0.99938965 0.034577396 -0.074801169 0.98632771\n\t\t 0.14664136 -0.07712058 0.98620564 0.14639722 0.91866815 0.064607941 -0.38962981 0.91213721\n\t\t -0.024780778 -0.4090701 0.86620677 0.22629498 -0.44541767 0.86620677 0.22629498 -0.44541767\n\t\t 0.88079464 0.16220611 -0.44477674 0.91866815 0.064607941 -0.38962981 0.88079464 0.16220611\n\t\t -0.44477674 0.86620677 0.22629498 -0.44541767 0.76338989 0.45164362 -0.46174508 0.76338989\n\t\t 0.45164362 -0.46174508 0.66991162 0.5016939 -0.54722744 0.88079464 0.16220611 -0.44477674\n\t\t 0.20352769 0.82320625 -0.52995396 0.66991162 0.5016939 -0.54722744 0.30213299 0.81307417\n\t\t -0.49757385 0.30213299 0.81307417 -0.49757385 0.098177768 0.88662374 -0.45188764\n\t\t 0.20352769 0.82320625 -0.52995396 0.20352769 0.82320625 -0.52995396 0.098177768 0.88662374\n\t\t -0.45188764 -0.19580704 0.9051789 -0.37717831 -0.19580704 0.9051789 -0.37717831 -0.11267461\n\t\t 0.87624735 -0.46845919 0.20352769 0.82320625 -0.52995396 -0.23581679 0.8602556 -0.45204023\n\t\t -0.11267461 0.87624735 -0.46845919 -0.19580704 0.9051789 -0.37717831 -0.19580704\n\t\t 0.9051789 -0.37717831 -0.3110449 0.87539279 -0.37003699 -0.23581679 0.8602556 -0.45204023\n\t\t -0.099215977 0.98388618 -0.14853366 -0.069033176 0.98764002 -0.14059885 0.16583729\n\t\t 0.95208597 -0.25687435 -0.12585863 0.98553419 -0.11325426 -0.069033176 0.98764002\n\t\t -0.14059885 -0.099215977 0.98388618 -0.14853366 -0.099215977 0.98388618 -0.14853366\n\t\t -0.17340647 0.97827077 -0.11355945 -0.12585863 0.98553419 -0.11325426 -0.17340647\n\t\t 0.97827077 -0.11355945 -0.099215977 0.98388618 -0.14853366 -0.15903226 0.97906423\n\t\t -0.12686552 -0.15903226 0.97906423 -0.12686552 -0.24878719 0.96407968 -0.092928939\n\t\t -0.17340647 0.97827077 -0.11355945 -0.22867548 0.97177035 -0.057985239 -0.24878719\n\t\t 0.96407968 -0.092928939 -0.15903226 0.97906423 -0.12686552 -0.15903226 0.97906423\n\t\t -0.12686552 -0.15857448 0.98217714 -0.10083324 -0.22867548 0.97177035 -0.057985239\n\t\t -0.22583726 0.97317415 -0.043733094 -0.22867548 0.97177035 -0.057985239 -0.15857448\n\t\t 0.98217714 -0.10083324 -0.13046633 -0.97012246 -0.20447394 -0.050019532 -0.98818934\n\t\t -0.14481026 0.0022281527 -0.9753105 -0.22067927;\n\tsetAttr \".n[996:1161]\" -type \"float3\"  0.0022281527 -0.9753105 -0.22067927 -0.072359085\n\t\t -0.95648062 -0.28260133 -0.13046633 -0.97012246 -0.20447394 0.4363234 -0.87044883\n\t\t 0.22782074 0.48500043 -0.86184251 0.1481369 0.47782856 -0.86458927 0.15533927 0.47782856\n\t\t -0.86458927 0.15533927 0.48500043 -0.86184251 0.1481369 0.62831533 -0.77587187 -0.056337114\n\t\t 0.081332095 -0.8625142 -0.49940482 -0.072359085 -0.95648062 -0.28260133 0.0022281527\n\t\t -0.9753105 -0.22067927 0.0022281527 -0.9753105 -0.22067927 0.15649918 -0.88067263\n\t\t -0.44709611 0.081332095 -0.8625142 -0.49940482 0.62831533 -0.77587187 -0.056337114\n\t\t 0.6176033 -0.78521055 -0.044343334 0.47782856 -0.86458927 0.15533927 0.75472283 -0.47505084\n\t\t 0.45240641 0.84353173 -0.42304727 0.33079016 0.83172107 -0.42924255 0.35203102 0.93182176\n\t\t -0.29615128 0.20972322 0.83172107 -0.42924255 0.35203102 0.84353173 -0.42304727 0.33079016\n\t\t 0.84353173 -0.42304727 0.33079016 0.93664366 -0.28775874 0.19956055 0.93182176 -0.29615128\n\t\t 0.20972322 0.78423434 -0.5532698 -0.28080079 0.6176033 -0.78521055 -0.044343334 0.62831533\n\t\t -0.77587187 -0.056337114 0.98678553 -0.097201139 0.12945952 0.93182176 -0.29615128\n\t\t 0.20972322 0.93664366 -0.28775874 0.19956055 0.93664366 -0.28775874 0.19956055 0.98733485\n\t\t -0.092867509 0.12842189 0.98678553 -0.097201139 0.12945952 0.98638868 0.11642842\n\t\t 0.11590929 0.98678553 -0.097201139 0.12945952 0.98733485 -0.092867509 0.12842189\n\t\t 0.98733485 -0.092867509 0.12842189 0.98666334 0.11279672 0.11716055 0.98638868 0.11642842\n\t\t 0.11590929 0.9402141 0.2979525 0.16486098 0.98638868 0.11642842 0.11590929 0.98666334\n\t\t 0.11279672 0.11716055 0.98666334 0.11279672 0.11716055 0.94192314 0.29242864 0.16498305\n\t\t 0.9402141 0.2979525 0.16486098 0.87011307 0.42371929 0.25156406 0.9402141 0.2979525\n\t\t 0.16486098 0.94192314 0.29242864 0.16498305 0.94192314 0.29242864 0.16498305 0.87087607\n\t\t 0.42075899 0.25388345 0.87011307 0.42371929 0.25156406 0.78264701 0.49092102 0.38261053\n\t\t 0.87011307 0.42371929 0.25156406 0.87087607 0.42075899 0.25388345 0.87087607 0.42075899\n\t\t 0.25388345 0.78618717 0.48399332 0.38416696 0.78264701 0.49092102 0.38261053 0.69679844\n\t\t 0.50108373 0.51313818 0.78264701 0.49092102 0.38261053 0.78618717 0.48399332 0.38416696\n\t\t 0.78618717 0.48399332 0.38416696 0.70769352 0.49269104 0.50633252 0.69679844 0.50108373\n\t\t 0.51313818 0.67339075 0.48619062 0.55687118 0.69679844 0.50108373 0.51313818 0.70769352\n\t\t 0.49269104 0.50633252 0.70769352 0.49269104 0.50633252 0.68135613 0.47898823 0.55345309\n\t\t 0.67339075 0.48619062 0.55687118 0.34305829 0.85998118 0.37772754 0.34577444 0.85686833\n\t\t 0.38233584 0.40253887 0.87163925 0.27951896 0.40253887 0.87163925 0.27951896 0.4045836\n\t\t 0.87176132 0.27625349 0.34305829 0.85998118 0.37772754 -0.22513534 0.97430336 -0.0029603678\n\t\t -0.14481063 0.9826349 -0.11581782 -0.066378064 0.99642932 -0.051789984 -0.066378064\n\t\t 0.99642932 -0.051789984 -0.14468855 0.98760945 0.060579166 -0.22513534 0.97430336\n\t\t -0.0029603678 0.40253887 0.87163925 0.27951896 0.5525679 0.832362 0.042664815 0.54960757\n\t\t 0.83391845 0.04968407 0.54960757 0.83391845 0.04968407 0.4045836 0.87176132 0.27625349\n\t\t 0.40253887 0.87163925 0.27951896 0.54960757 0.83391845 0.04968407 0.5525679 0.832362\n\t\t 0.042664815 0.69853795 0.691275 -0.18482013 -0.066378064 0.99642932 -0.051789984\n\t\t -0.14481063 0.9826349 -0.11581782 0.042664591 0.92342907 -0.38135934 0.042664591\n\t\t 0.92342907 -0.38135934 0.11911345 0.93820006 -0.3248696 -0.066378064 0.99642932 -0.051789984\n\t\t 0.69853795 0.691275 -0.18482013 0.69457054 0.69640213 -0.18039495 0.54960757 0.83391845\n\t\t 0.04968407 0.042664591 0.92342907 -0.38135934 0.21683377 0.7473678 -0.62797946 0.28849122\n\t\t 0.76262701 -0.57890564 0.28849122 0.76262701 -0.57890564 0.11911345 0.93820006 -0.3248696\n\t\t 0.042664591 0.92342907 -0.38135934 0.28849122 0.76262701 -0.57890564 0.21683377 0.7473678\n\t\t -0.62797946 0.3308205 0.48512226 -0.80941194 0.3308205 0.48512226 -0.80941194 0.40391234\n\t\t 0.50364703 -0.7636342 0.28849122 0.76262701 -0.57890564 0.81365389 0.47288451 -0.33808407\n\t\t 0.69457054 0.69640213 -0.18039495 0.69853795 0.691275 -0.18482013 0.69853795 0.691275\n\t\t -0.18482013 0.81530184 0.46852037 -0.34015933 0.81365389 0.47288451 -0.33808407 0.81365389\n\t\t 0.47288451 -0.33808407 0.81530184 0.46852037 -0.34015933 0.8893398 0.15094478 -0.43153173\n\t\t 0.8893398 0.15094478 -0.43153173 0.88866842 0.15659072 -0.43092135 0.81365389 0.47288451\n\t\t -0.33808407 0.3308205 0.48512226 -0.80941194 0.38871422 0.13013096 -0.91210669 0.4662312\n\t\t 0.14545131 -0.87258524 0.4662312 0.14545131 -0.87258524 0.40391234 0.50364703 -0.7636342\n\t\t 0.3308205 0.48512226 -0.80941194 0.88500631 -0.20801392 -0.41645554 0.88866842 0.15659072\n\t\t -0.43092135 0.8893398 0.15094478 -0.43153173 0.4662312 0.14545131 -0.87258524 0.38871422\n\t\t 0.13013096 -0.91210669 0.36371967 -0.26746416 -0.89226967 0.36371967 -0.26746416\n\t\t -0.89226967 0.44657743 -0.26252013 -0.85534227 0.4662312 0.14545131 -0.87258524 0.8893398\n\t\t 0.15094478 -0.43153173 0.88323623 -0.21878695 -0.41468549 0.88500631 -0.20801392\n\t\t -0.41645554 0.88500631 -0.20801392 -0.41645554 0.88323623 -0.21878695 -0.41468549\n\t\t 0.78423434 -0.5532698 -0.28080079 0.78423434 -0.5532698 -0.28080079 0.7881102 -0.5437175\n\t\t -0.28849143 0.88500631 -0.20801392 -0.41645554 0.36371967 -0.26746416 -0.89226967\n\t\t 0.25672188 -0.61900693 -0.74221009 0.33396426 -0.6284371 -0.70247501 0.33396426 -0.6284371\n\t\t -0.70247501 0.44657743 -0.26252013 -0.85534227 0.36371967 -0.26746416 -0.89226967\n\t\t 0.62831533 -0.77587187 -0.056337114 0.7881102 -0.5437175 -0.28849143 0.78423434 -0.5532698\n\t\t -0.28080079 0.33396426 -0.6284371 -0.70247501 0.25672188 -0.61900693 -0.74221009\n\t\t 0.081332095 -0.8625142 -0.49940482 0.081332095 -0.8625142 -0.49940482 0.15649918\n\t\t -0.88067263 -0.44709611 0.33396426 -0.6284371 -0.70247501 -0.65559852 -0.46864247\n\t\t -0.5920285;\n\tsetAttr \".n[1162:1327]\" -type \"float3\"  -0.58091968 -0.43021968 -0.69090849 -0.58061451\n\t\t -0.42548931 -0.6941129 -0.58061451 -0.42548931 -0.6941129 -0.65404207 -0.46464455\n\t\t -0.59691149 -0.65559852 -0.46864247 -0.5920285 -0.67860943 -0.47029048 -0.5641346\n\t\t -0.65559852 -0.46864247 -0.5920285 -0.65404207 -0.46464455 -0.59691149 -0.65404207\n\t\t -0.46464455 -0.59691149 -0.67891467 -0.46839833 -0.56538582 -0.67860943 -0.47029048\n\t\t -0.5641346 -0.49217191 -0.32206205 -0.80870998 -0.58061451 -0.42548931 -0.6941129\n\t\t -0.58091968 -0.43021968 -0.69090849 -0.58091968 -0.43021968 -0.69090849 -0.49012718\n\t\t -0.31870499 -0.81127352 -0.49217191 -0.32206205 -0.80870998 -0.43845937 -0.15707897\n\t\t -0.88488418 -0.49217191 -0.32206205 -0.80870998 -0.49012718 -0.31870499 -0.81127352\n\t\t -0.49012718 -0.31870499 -0.81127352 -0.43720812 -0.14597023 -0.8874172 -0.43845937\n\t\t -0.15707897 -0.88488418 -0.42097232 0.031708535 -0.90649128 -0.43845937 -0.15707897\n\t\t -0.88488418 -0.43720812 -0.14597023 -0.8874172 -0.43720812 -0.14597023 -0.8874172\n\t\t -0.42036194 0.043732826 -0.90627766 -0.42097232 0.031708535 -0.90649128 -0.44331193\n\t\t 0.21314107 -0.87063205 -0.42097232 0.031708535 -0.90649128 -0.42036194 0.043732826\n\t\t -0.90627766 -0.42036194 0.043732826 -0.90627766 -0.44187754 0.2207707 -0.86944181\n\t\t -0.44331193 0.21314107 -0.87063205 -0.49928293 0.36191881 -0.78719443 -0.44331193\n\t\t 0.21314107 -0.87063205 -0.44187754 0.2207707 -0.86944181 -0.44187754 0.2207707 -0.86944181\n\t\t -0.49250782 0.36024028 -0.79223001 -0.49928293 0.36191881 -0.78719443 -0.61272025\n\t\t 0.44788942 -0.65108192 -0.49928293 0.36191881 -0.78719443 -0.49250782 0.36024028\n\t\t -0.79223001 -0.49250782 0.36024028 -0.79223001 -0.60252702 0.44309801 -0.66374713\n\t\t -0.61272025 0.44788942 -0.65108192 -0.7280497 0.45551899 -0.51225322 -0.61272025\n\t\t 0.44788942 -0.65108192 -0.60252702 0.44309801 -0.66374713 -0.60252702 0.44309801\n\t\t -0.66374713 -0.72847694 0.45045292 -0.51609856 -0.7280497 0.45551899 -0.51225322\n\t\t -0.7739495 0.43589559 -0.45927307 -0.7280497 0.45551899 -0.51225322 -0.72847694 0.45045292\n\t\t -0.51609856 -0.72847694 0.45045292 -0.51609856 -0.77925974 0.42789975 -0.4578082\n\t\t -0.7739495 0.43589559 -0.45927307 0.14996825 -0.98004085 -0.13040552 0.13769981 -0.98303163\n\t\t -0.12112789 0.06442488 -0.99591053 -0.062929094 0.06442488 -0.99591053 -0.062929094\n\t\t 0.064485915 -0.99591053 -0.062898576 0.14996825 -0.98004085 -0.13040552 0.36341467\n\t\t -0.88189328 -0.30021051 0.13769981 -0.98303163 -0.12112789 0.14996825 -0.98004085\n\t\t -0.13040552 0.14996825 -0.98004085 -0.13040552 0.38740224 -0.8655048 -0.31742296\n\t\t 0.36341467 -0.88189328 -0.30021051 0.36341467 -0.88189328 -0.30021051 0.38740224\n\t\t -0.8655048 -0.31742296 0.62465304 -0.59736919 -0.50288391 0.62465304 -0.59736919\n\t\t -0.50288391 0.61116385 -0.61778605 -0.49473551 0.36341467 -0.88189328 -0.30021051\n\t\t 0.75643182 -0.24478877 -0.60652488 0.61116385 -0.61778605 -0.49473551 0.62465304\n\t\t -0.59736919 -0.50288391 0.62465304 -0.59736919 -0.50288391 0.76073492 -0.22898018\n\t\t -0.60728782 0.75643182 -0.24478877 -0.60652488 0.75643182 -0.24478877 -0.60652488\n\t\t 0.76073492 -0.22898018 -0.60728782 0.76909691 0.15039541 -0.62114322 0.76909691 0.15039541\n\t\t -0.62114322 0.77391881 0.14563452 -0.61629081 0.75643182 -0.24478877 -0.60652488\n\t\t 0.64537472 0.48616004 -0.58915991 0.77391881 0.14563452 -0.61629081 0.76909691 0.15039541\n\t\t -0.62114322 0.76909691 0.15039541 -0.62114322 0.63646334 0.48793012 -0.59733886 0.64537472\n\t\t 0.48616004 -0.58915991 0.64537472 0.48616004 -0.58915991 0.63646334 0.48793012 -0.59733886\n\t\t 0.37379047 0.72682887 -0.576159 0.37379047 0.72682887 -0.576159 0.41196913 0.73155928\n\t\t -0.543199 0.64537472 0.48616004 -0.58915991 0.11941864 0.92123181 -0.37015906 0.41196913\n\t\t 0.73155928 -0.543199 0.37379047 0.72682887 -0.576159 0.37379047 0.72682887 -0.576159\n\t\t 0.028320894 0.916776 -0.39832765 0.11941864 0.92123181 -0.37015906 0.11941864 0.92123181\n\t\t -0.37015906 0.028320894 0.916776 -0.39832765 -0.19559343 0.9691152 -0.15002906 -0.19559343\n\t\t 0.9691152 -0.15002906 -0.15921536 0.97683638 -0.14294878 0.11941864 0.92123181 -0.37015906\n\t\t -0.26685414 0.96291995 -0.039124798 -0.15921536 0.97683638 -0.14294878 -0.19559343\n\t\t 0.9691152 -0.15002906 -0.19559343 0.9691152 -0.15002906 -0.28922421 0.95617533 -0.045350578\n\t\t -0.26685414 0.96291995 -0.039124798 0.61116385 -0.61778605 -0.49473551 0.75643182\n\t\t -0.24478877 -0.60652488 0.75530267 -0.24185899 -0.60908842 0.75530267 -0.24185899\n\t\t -0.60908842 0.75643182 -0.24478877 -0.60652488 0.77391881 0.14563452 -0.61629081\n\t\t 0.75530267 -0.24185899 -0.60908842 0.60951585 -0.61693156 -0.49784839 0.61116385\n\t\t -0.61778605 -0.49473551 0.77391881 0.14563452 -0.61629081 0.77059233 0.10235927 -0.629017\n\t\t 0.75530267 -0.24185899 -0.60908842 0.77059233 0.10235927 -0.629017 0.77391881 0.14563452\n\t\t -0.61629081 0.64537472 0.48616004 -0.58915991 0.61116385 -0.61778605 -0.49473551\n\t\t 0.60951585 -0.61693156 -0.49784839 0.36204135 -0.88183218 -0.30210266 0.36204135\n\t\t -0.88183218 -0.30210266 0.36341467 -0.88189328 -0.30021051 0.61116385 -0.61778605\n\t\t -0.49473551 0.13769981 -0.98303163 -0.12112789 0.36341467 -0.88189328 -0.30021051\n\t\t 0.36204135 -0.88183218 -0.30210266 0.36204135 -0.88183218 -0.30210266 0.13678426\n\t\t -0.98300111 -0.12222656 0.13769981 -0.98303163 -0.12112789 0.13769981 -0.98303163\n\t\t -0.12112789 0.13678426 -0.98300111 -0.12222656 0.063600875 -0.99591053 -0.063875169\n\t\t 0.063600875 -0.99591053 -0.063875169 0.06442488 -0.99591053 -0.062929094 0.13769981\n\t\t -0.98303163 -0.12112789 0.072329171 -0.98333687 -0.16656995 0.0022281527 -0.9753105\n\t\t -0.22067927 -0.050019532 -0.98818934 -0.14481026 -0.050019532 -0.98818934 -0.14481026\n\t\t 0.021760004 -0.99557483 -0.091402858 0.072329171 -0.98333687 -0.16656995 0.15649918\n\t\t -0.88067263 -0.44709611 0.0022281527 -0.9753105 -0.22067927 0.072329171 -0.98333687\n\t\t -0.16656995 0.072329171 -0.98333687 -0.16656995 0.22980465 -0.88784444 -0.39857167\n\t\t 0.15649918 -0.88067263 -0.44709611 0.15649918 -0.88067263 -0.44709611 0.22980465\n\t\t -0.88784444 -0.39857167;\n\tsetAttr \".n[1328:1493]\" -type \"float3\"  0.40549964 -0.64799947 -0.64467293 0.40549964\n\t\t -0.64799947 -0.64467293 0.33396426 -0.6284371 -0.70247501 0.15649918 -0.88067263\n\t\t -0.44709611 0.44657743 -0.26252013 -0.85534227 0.33396426 -0.6284371 -0.70247501\n\t\t 0.40549964 -0.64799947 -0.64467293 0.40549964 -0.64799947 -0.64467293 0.50706524\n\t\t -0.53730875 -0.67390966 0.44657743 -0.26252013 -0.85534227 0.44657743 -0.26252013\n\t\t -0.85534227 0.58436835 0.15405756 -0.79671621 0.55351412 0.23218493 -0.79979855 0.55351412\n\t\t 0.23218493 -0.79979855 0.4662312 0.14545131 -0.87258524 0.44657743 -0.26252013 -0.85534227\n\t\t 0.40391234 0.50364703 -0.7636342 0.4662312 0.14545131 -0.87258524 0.55351412 0.23218493\n\t\t -0.79979855 0.55351412 0.23218493 -0.79979855 0.47639379 0.5156408 -0.71211898 0.40391234\n\t\t 0.50364703 -0.7636342 0.40391234 0.50364703 -0.7636342 0.47639379 0.5156408 -0.71211898\n\t\t 0.35999611 0.7712028 -0.52497947 0.35999611 0.7712028 -0.52497947 0.28849122 0.76262701\n\t\t -0.57890564 0.40391234 0.50364703 -0.7636342 0.11911345 0.93820006 -0.3248696 0.28849122\n\t\t 0.76262701 -0.57890564 0.35999611 0.7712028 -0.52497947 0.35999611 0.7712028 -0.52497947\n\t\t 0.1940669 0.94451743 -0.2648702 0.11911345 0.93820006 -0.3248696 0.11911345 0.93820006\n\t\t -0.3248696 0.1940669 0.94451743 -0.2648702 0.01434339 0.99981689 0.011902144 0.01434339\n\t\t 0.99981689 0.011902144 -0.066378064 0.99642932 -0.051789984 0.11911345 0.93820006\n\t\t -0.3248696 -0.14468855 0.98760945 0.060579166 -0.066378064 0.99642932 -0.051789984\n\t\t 0.01434339 0.99981689 0.011902144 0.01434339 0.99981689 0.011902144 -0.057649769\n\t\t 0.99087495 0.1217993 -0.14468855 0.98760945 0.060579166 0.50706524 -0.53730875 -0.67390966\n\t\t 0.40549964 -0.64799947 -0.64467293 0.42991444 -0.66454047 -0.6111331 0.42991444 -0.66454047\n\t\t -0.6111331 0.59111321 -0.6123538 -0.52491832 0.50706524 -0.53730875 -0.67390966 0.22763783\n\t\t -0.88335824 -0.40964988 0.42991444 -0.66454047 -0.6111331 0.40549964 -0.64799947\n\t\t -0.64467293 0.40549964 -0.64799947 -0.64467293 0.22980465 -0.88784444 -0.39857167\n\t\t 0.22763783 -0.88335824 -0.40964988 0.064791098 -0.98260444 -0.17392491 0.22763783\n\t\t -0.88335824 -0.40964988 0.22980465 -0.88784444 -0.39857167 0.22980465 -0.88784444\n\t\t -0.39857167 0.072329171 -0.98333687 -0.16656995 0.064791098 -0.98260444 -0.17392491\n\t\t 0.012512896 -0.9951781 -0.097048789 0.064791098 -0.98260444 -0.17392491 0.072329171\n\t\t -0.98333687 -0.16656995 0.072329171 -0.98333687 -0.16656995 0.021760004 -0.99557483\n\t\t -0.091402858 0.012512896 -0.9951781 -0.097048789 0.83172107 -0.42924255 0.35203102\n\t\t 0.74822241 -0.47190744 0.4662618 0.75472283 -0.47505084 0.45240641 0.72646272 -0.47099188\n\t\t 0.50038153 0.75472283 -0.47505084 0.45240641 0.74822241 -0.47190744 0.4662618 0.74822241\n\t\t -0.47190744 0.4662618 0.7267679 -0.46565115 0.50492883 0.72646272 -0.47099188 0.50038153\n\t\t 0.47782856 -0.86458927 0.15533927 0.43836814 -0.86855668 0.23111673 0.4363234 -0.87044883\n\t\t 0.22782074 0.24167638 -0.96887106 0.053285386 0.24353801 -0.96856588 0.0501725 0.1665398\n\t\t -0.97997981 0.10898166 0.1665398 -0.97997981 0.10898166 0.17300972 -0.97839284 0.11297959\n\t\t 0.24167638 -0.96887106 0.053285386 0.51927269 -0.84618652 -0.11951043 0.24353801\n\t\t -0.96856588 0.0501725 0.24167638 -0.96887106 0.053285386 0.24167638 -0.96887106 0.053285386\n\t\t 0.51139891 -0.85164934 -0.11447486 0.51927269 -0.84618652 -0.11951043 0.51927269\n\t\t -0.84618652 -0.11951043 0.51139891 -0.85164934 -0.11447486 0.78063315 -0.54609799\n\t\t -0.30390328 0.78063315 -0.54609799 -0.30390328 0.7880491 -0.53282243 -0.30823693\n\t\t 0.51927269 -0.84618652 -0.11951043 0.89138466 -0.1334572 -0.43308815 0.7880491 -0.53282243\n\t\t -0.30823693 0.78063315 -0.54609799 -0.30390328 0.78063315 -0.54609799 -0.30390328\n\t\t 0.88967568 -0.15097483 -0.43082979 0.89138466 -0.1334572 -0.43308815 0.89138466 -0.1334572\n\t\t -0.43308815 0.88967568 -0.15097483 -0.43082979 0.85528117 0.20609173 -0.47535634\n\t\t 0.85528117 0.20609173 -0.47535634 0.85113066 0.21930625 -0.47688225 0.89138466 -0.1334572\n\t\t -0.43308815 0.71504849 0.53071707 -0.45500049 0.85113066 0.21930625 -0.47688225 0.85528117\n\t\t 0.20609173 -0.47535634 0.85528117 0.20609173 -0.47535634 0.71907693 0.5213784 -0.45939514\n\t\t 0.71504849 0.53071707 -0.45500049 0.71504849 0.53071707 -0.45500049 0.71907693 0.5213784\n\t\t -0.45939514 0.61729765 0.6756494 -0.40296647 0.61729765 0.6756494 -0.40296647 0.618671\n\t\t 0.67720592 -0.3982361 0.71504849 0.53071707 -0.45500049 0.90887171 -0.048096921 -0.41422772\n\t\t 0.90679646 -0.051728625 -0.4183172 0.9119541 -0.042634103 -0.40803248 0.9119541 -0.042634103\n\t\t -0.40803248 0.91387677 -0.039124474 -0.40403455 0.90887171 -0.048096921 -0.41422772\n\t\t 0.78124321 0.42561135 -0.45655695 0.77950364 0.43998557 -0.44578388 0.78084648 0.42921254\n\t\t -0.45390183 0.78084648 0.42921254 -0.45390183 0.78237242 0.41474676 -0.46455279 0.78124321\n\t\t 0.42561135 -0.45655695 0.096163526 0.95733511 -0.27246931 0.3188571 0.88055068 -0.35056618\n\t\t 0.30893859 0.88280904 -0.35377061 0.30893859 0.88280904 -0.35377061 0.14007966 0.94604331\n\t\t -0.29215375 0.096163526 0.95733511 -0.27246931 0.096163526 0.95733511 -0.27246931\n\t\t 0.14007966 0.94604331 -0.29215375 -0.11636738 0.97567672 -0.18573572 -0.11636738\n\t\t 0.97567672 -0.18573572 -0.12704885 0.97531044 -0.1805781 0.096163526 0.95733511 -0.27246931\n\t\t -0.17914395 0.969634 -0.16629544 -0.12704885 0.97531044 -0.1805781 -0.11636738 0.97567672\n\t\t -0.18573572 -0.11636738 0.97567672 -0.18573572 -0.1850035 0.9680776 -0.16907261 -0.17914395\n\t\t 0.969634 -0.16629544 -0.4346751 -0.11609261 -0.89303261 -0.44148073 -0.06192226 -0.89510787\n\t\t -0.43922237 -0.075014696 -0.89519942 -0.43922237 -0.075014696 -0.89519942 -0.43498027\n\t\t -0.12582801 -0.89156771 -0.4346751 -0.11609261 -0.89303261 -0.43888661 -0.15659067\n\t\t -0.88476211 -0.4346751 -0.11609261 -0.89303261 -0.43498027 -0.12582801 -0.89156771\n\t\t -0.43498027 -0.12582801 -0.89156771 -0.43983269 -0.16525792 -0.88271737 -0.43888661\n\t\t -0.15659067 -0.88476211;\n\tsetAttr \".n[1494:1659]\" -type \"float3\"  -0.47483748 -0.034028351 -0.87939084\n\t\t -0.43922237 -0.075014696 -0.89519942 -0.44148073 -0.06192226 -0.89510787 -0.44148073\n\t\t -0.06192226 -0.89510787 -0.48194832 -0.02179043 -0.87591171 -0.47483748 -0.034028351\n\t\t -0.87939084 -0.52717674 -0.036378291 -0.84896392 -0.47483748 -0.034028351 -0.87939084\n\t\t -0.48194832 -0.02179043 -0.87591171 -0.48194832 -0.02179043 -0.87591171 -0.5353862\n\t\t -0.032105699 -0.84398937 -0.52717674 -0.036378291 -0.84896392 -0.56031984 -0.081393093\n\t\t -0.8242439 -0.52717674 -0.036378291 -0.84896392 -0.5353862 -0.032105699 -0.84398937\n\t\t -0.5353862 -0.032105699 -0.84398937 -0.56413466 -0.083285242 -0.82143623 -0.56031984\n\t\t -0.081393093 -0.8242439 -0.54985195 -0.14923574 -0.82180244 -0.56031984 -0.081393093\n\t\t -0.8242439 -0.56413466 -0.083285242 -0.82143623 -0.56413466 -0.083285242 -0.82143623\n\t\t -0.54734939 -0.16129054 -0.82119203 -0.54985195 -0.14923574 -0.82180244 -0.54985195\n\t\t -0.14923574 -0.82180244 -0.54734939 -0.16129054 -0.82119203 -0.50138855 -0.20758711\n\t\t -0.83993042 -0.50138855 -0.20758711 -0.83993042 -0.50093073 -0.20426059 -0.84102911\n\t\t -0.54985195 -0.14923574 -0.82180244 -0.50093073 -0.20426059 -0.84102911 -0.50138855\n\t\t -0.20758711 -0.83993042 -0.50154114 -0.21198177 -0.83874017 -0.50154114 -0.21198177\n\t\t -0.83874017 -0.50077814 -0.20661052 -0.84054077 -0.50093073 -0.20426059 -0.84102911\n\t\t -0.54344302 -0.16156521 -0.8237251 -0.50077814 -0.20661052 -0.84054077 -0.50154114\n\t\t -0.21198177 -0.83874017 -0.50154114 -0.21198177 -0.83874017 -0.55439919 -0.16388464\n\t\t -0.81591237 -0.54344302 -0.16156521 -0.8237251 -0.59492779 -0.16754685 -0.78609574\n\t\t -0.54344302 -0.16156521 -0.8237251 -0.55439919 -0.16388464 -0.81591237 -0.55439919\n\t\t -0.16388464 -0.81591237 -0.60231322 -0.17639722 -0.77849668 -0.59492779 -0.16754685\n\t\t -0.78609574 -0.60798967 -0.20554242 -0.76686913 -0.59492779 -0.16754685 -0.78609574\n\t\t -0.60231322 -0.17639722 -0.77849668 -0.60231322 -0.17639722 -0.77849668 -0.60853904\n\t\t -0.21259218 -0.76448864 -0.60798967 -0.20554242 -0.76686913 -0.60692155 -0.23615249\n\t\t -0.75884277 -0.60798967 -0.20554242 -0.76686913 -0.60853904 -0.21259218 -0.76448864\n\t\t -0.60853904 -0.21259218 -0.76448864 -0.60728776 -0.24198152 -0.75670642 -0.60692155\n\t\t -0.23615249 -0.75884277 0.43552962 0.13425112 0.89007235 0.43443093 0.16403718 0.8856166\n\t\t 0.43723863 0.15851334 0.88525039 0.43723863 0.15851334 0.88525039 0.43723866 0.12652993\n\t\t 0.89037752 0.43552962 0.13425112 0.89007235 0.42997524 0.085604623 0.89877009 0.43552962\n\t\t 0.13425112 0.89007235 0.43723866 0.12652993 0.89037752 0.43723866 0.12652993 0.89037752\n\t\t 0.43852043 0.077913955 0.89532149 0.42997524 0.085604623 0.89877009 0.46263009 0.038453531\n\t\t 0.88567764 0.42997524 0.085604623 0.89877009 0.43852043 0.077913955 0.89532149 0.43852043\n\t\t 0.077913955 0.89532149 0.4755089 0.035859462 0.87896359 0.46263009 0.038453531 0.88567764\n\t\t 0.52003539 0.038514584 0.8532365 0.46263009 0.038453531 0.88567764 0.4755089 0.035859462\n\t\t 0.87896359 0.4755089 0.035859462 0.87896359 0.52903837 0.038819771 0.84768212 0.52003539\n\t\t 0.038514584 0.8532365 0.55699331 0.086367615 0.82598346 0.52003539 0.038514584 0.8532365\n\t\t 0.52903837 0.038819771 0.84768212 0.52903837 0.038819771 0.84768212 0.56114382 0.084994279\n\t\t 0.82332838 0.55699331 0.086367615 0.82598346 0.54585397 0.16214506 0.82201606 0.55699331\n\t\t 0.086367615 0.82598346 0.56114382 0.084994279 0.82332838 0.56114382 0.084994279 0.82332838\n\t\t 0.54972982 0.15009025 0.82171088 0.54585397 0.16214506 0.82201606 0.50193787 0.20889941\n\t\t 0.83925903 0.54585397 0.16214506 0.82201606 0.54972982 0.15009025 0.82171088 0.54972982\n\t\t 0.15009025 0.82171088 0.50175476 0.20423007 0.84054077 0.50193787 0.20889941 0.83925903\n\t\t 0.50096124 0.20682415 0.84035766 0.50193787 0.20889941 0.83925903 0.50175476 0.20423007\n\t\t 0.84054077 0.50175476 0.20423007 0.84054077 0.50529492 0.20456578 0.83834344 0.50096124\n\t\t 0.20682415 0.84035766 0.55323946 0.14810655 0.81972718 0.50096124 0.20682415 0.84035766\n\t\t 0.50529492 0.20456578 0.83834344 0.50529492 0.20456578 0.83834344 0.55088955 0.16690595\n\t\t 0.81768245 0.55323946 0.14810655 0.81972718 0.59987175 0.16248079 0.78337961 0.55323946\n\t\t 0.14810655 0.81972718 0.55088955 0.16690595 0.81768245 0.55088955 0.16690595 0.81768245\n\t\t 0.59318823 0.17822833 0.78505814 0.59987175 0.16248079 0.78337961 0.61000389 0.20319249\n\t\t 0.76586199 0.59987175 0.16248079 0.78337961 0.59318823 0.17822833 0.78505814 0.59318823\n\t\t 0.17822833 0.78505814 0.60609752 0.21106626 0.76683861 0.61000389 0.20319249 0.76586199\n\t\t 0.60252684 0.23581678 0.76241338 0.61000389 0.20319249 0.76586199 0.60609752 0.21106626\n\t\t 0.76683861 0.60609752 0.21106626 0.76683861 0.6001159 0.24173735 0.76247442 0.60252684\n\t\t 0.23581678 0.76241338 0.32291657 -0.71623874 0.61861026 0.30195037 -0.78749943 0.53721738\n\t\t 0.39585581 -0.75438684 0.52360612 0.39585581 -0.75438684 0.52360612 0.41404483 -0.684591\n\t\t 0.59987187 0.32291657 -0.71623874 0.61861026 0.37714797 -0.78844553 0.48585474 0.39585581\n\t\t -0.75438684 0.52360612 0.30195037 -0.78749943 0.53721738 0.30195037 -0.78749943 0.53721738\n\t\t 0.28128937 -0.82329774 0.49296555 0.37714797 -0.78844553 0.48585474 0.39585581 -0.75438684\n\t\t 0.52360612 0.37714797 -0.78844553 0.48585474 0.6417129 -0.63859957 0.42469564 0.6417129\n\t\t -0.63859957 0.42469564 0.65370667 -0.60274035 0.45750302 0.39585581 -0.75438684 0.52360612\n\t\t 0.41404483 -0.684591 0.59987187 0.39585581 -0.75438684 0.52360612 0.65370667 -0.60274035\n\t\t 0.45750302 0.65370667 -0.60274035 0.45750302 0.66359466 -0.53645414 0.52131724 0.41404483\n\t\t -0.684591 0.59987187 0.66359466 -0.53645414 0.52131724 0.65370667 -0.60274035 0.45750302\n\t\t 0.90432459 -0.30973205 0.29364914 0.90432459 -0.30973205 0.29364914 0.89977729 -0.27008852\n\t\t 0.34263134 0.66359466 -0.53645414 0.52131724 0.65370667 -0.60274035 0.45750302 0.6417129\n\t\t -0.63859957 0.42469564 0.90639985 -0.33136967 0.26187935 0.90639985 -0.33136967 0.26187935;\n\tsetAttr \".n[1660:1825]\" -type \"float3\"  0.90432459 -0.30973205 0.29364914 0.65370667\n\t\t -0.60274035 0.45750302 0.90432459 -0.30973205 0.29364914 0.90639985 -0.33136967 0.26187935\n\t\t 0.97659236 -0.15121891 0.15274516 0.97659236 -0.15121891 0.15274516 0.97277755 -0.13928616\n\t\t 0.18515581 0.90432459 -0.30973205 0.29364914 0.89977729 -0.27008852 0.34263134 0.90432459\n\t\t -0.30973205 0.29364914 0.97277755 -0.13928616 0.18515581 0.97277755 -0.13928616 0.18515581\n\t\t 0.99530017 0.07519792 0.06048768 0.89977729 -0.27008852 0.34263134 0.99530017 0.07519792\n\t\t 0.06048768 0.93853563 0.31611103 -0.13849303 0.89483309 0.39564219 -0.20664085 0.89483309\n\t\t 0.39564219 -0.20664085 0.90597236 0.36436072 -0.21536915 0.99530017 0.07519792 0.06048768\n\t\t 0.93853563 0.31611103 -0.13849303 0.92843395 0.33451369 -0.16144295 0.88268673 0.41496041\n\t\t -0.2205573 0.88268673 0.41496041 -0.2205573 0.89483309 0.39564219 -0.20664085 0.93853563\n\t\t 0.31611103 -0.13849303 0.89483309 0.39564219 -0.20664085 0.88268673 0.41496041 -0.2205573\n\t\t 0.82265675 0.49494943 -0.27970216 0.82265675 0.49494943 -0.27970216 0.82937086 0.48426795\n\t\t -0.27854246 0.89483309 0.39564219 -0.20664085 0.90597236 0.36436072 -0.21536915 0.89483309\n\t\t 0.39564219 -0.20664085 0.82937086 0.48426795 -0.27854246 0.82937086 0.48426795 -0.27854246\n\t\t 0.82268733 0.47901875 -0.30607015 0.90597236 0.36436072 -0.21536915 0.66359466 -0.53645414\n\t\t 0.52131724 0.89977729 -0.27008852 0.34263134 0.89465016 -0.24253029 0.37516406 0.89465016\n\t\t -0.24253029 0.37516406 0.66930163 -0.48600703 0.56196791 0.66359466 -0.53645414 0.52131724\n\t\t 0.41404483 -0.684591 0.59987187 0.66359466 -0.53645414 0.52131724 0.66930163 -0.48600703\n\t\t 0.56196791 0.66930163 -0.48600703 0.56196791 0.42222378 -0.62987131 0.65187544 0.41404483\n\t\t -0.684591 0.59987187 0.32291657 -0.71623874 0.61861026 0.41404483 -0.684591 0.59987187\n\t\t 0.42222378 -0.62987131 0.65187544 0.42222378 -0.62987131 0.65187544 0.33121759 -0.66359431\n\t\t 0.67073584 0.32291657 -0.71623874 0.61861026 0.42222378 -0.62987131 0.65187544 0.66930163\n\t\t -0.48600703 0.56196791 0.67210925 -0.47016791 0.57197797 0.67210925 -0.47016791 0.57197797\n\t\t 0.42374969 -0.60863048 0.67079687 0.42222378 -0.62987131 0.65187544 0.33121759 -0.66359431\n\t\t 0.67073584 0.42222378 -0.62987131 0.65187544 0.42374969 -0.60863048 0.67079687 0.42374969\n\t\t -0.60863048 0.67079687 0.33225521 -0.6415599 0.69133586 0.33121759 -0.66359431 0.67073584\n\t\t 0.89336836 -0.24088228 0.37925354 0.67210925 -0.47016791 0.57197797 0.66930163 -0.48600703\n\t\t 0.56196791 0.66930163 -0.48600703 0.56196791 0.89465016 -0.24253029 0.37516406 0.89336836\n\t\t -0.24088228 0.37925354 0.99270606 0.032227859 0.11600085 0.89336836 -0.24088228 0.37925354\n\t\t 0.89465016 -0.24253029 0.37516406 0.89465016 -0.24253029 0.37516406 0.99337751 0.05926726\n\t\t 0.098391667 0.99270606 0.032227859 0.11600085 0.99337751 0.05926726 0.098391667 0.89465016\n\t\t -0.24253029 0.37516406 0.89977729 -0.27008852 0.34263134 0.89977729 -0.27008852 0.34263134\n\t\t 0.99530017 0.07519792 0.06048768 0.99337751 0.05926726 0.098391667 0.93578893 0.30903071\n\t\t -0.16959138 0.99337751 0.05926726 0.098391667 0.99530017 0.07519792 0.06048768 0.99530017\n\t\t 0.07519792 0.06048768 0.90597236 0.36436072 -0.21536915 0.93578893 0.30903071 -0.16959138\n\t\t 0.88204587 0.38663924 -0.26911226 0.93578893 0.30903071 -0.16959138 0.90597236 0.36436072\n\t\t -0.21536915 0.90597236 0.36436072 -0.21536915 0.82268733 0.47901875 -0.30607015 0.88204587\n\t\t 0.38663924 -0.26911226 0.93578893 0.30903071 -0.16959138 0.88204587 0.38663924 -0.26911226\n\t\t 0.91067219 0.33961022 -0.23514515 0.91067219 0.33961022 -0.23514515 0.95434427 0.26557237\n\t\t -0.13653983 0.93578893 0.30903071 -0.16959138 0.95434427 0.26557237 -0.13653983 0.99270606\n\t\t 0.032227859 0.11600085 0.99337751 0.05926726 0.098391667 0.99337751 0.05926726 0.098391667\n\t\t 0.93578893 0.30903071 -0.16959138 0.95434427 0.26557237 -0.13653983 0.42133871 -0.60301507\n\t\t 0.67735839 0.42374969 -0.60863048 0.67079687 0.67210925 -0.47016791 0.57197797 0.33225521\n\t\t -0.6415599 0.69133586 0.42374969 -0.60863048 0.67079687 0.42133871 -0.60301507 0.67735839\n\t\t 0.67210925 -0.47016791 0.57197797 0.67915905 -0.46241623 0.56996375 0.42133871 -0.60301507\n\t\t 0.67735839 0.67915905 -0.46241623 0.56996375 0.67210925 -0.47016791 0.57197797 0.89336836\n\t\t -0.24088228 0.37925354 0.42133871 -0.60301507 0.67735839 0.33249936 -0.63487637 0.69737852\n\t\t 0.33225521 -0.6415599 0.69133586 0.90173048 -0.23319162 0.36393327 0.89336836 -0.24088228\n\t\t 0.37925354 0.99270606 0.032227859 0.11600085 0.89336836 -0.24088228 0.37925354 0.90173048\n\t\t -0.23319162 0.36393327 0.67915905 -0.46241623 0.56996375 0.99270606 0.032227859 0.11600085\n\t\t 0.99502546 0.032563567 0.093844414 0.90173048 -0.23319162 0.36393327 0.99502546 0.032563567\n\t\t 0.093844414 0.99270606 0.032227859 0.11600085 0.95434427 0.26557237 -0.13653983 0.95641953\n\t\t 0.25110659 -0.14889982 0.95434427 0.26557237 -0.13653983 0.91067219 0.33961022 -0.23514515\n\t\t 0.95434427 0.26557237 -0.13653983 0.95641953 0.25110659 -0.14889982 0.99502546 0.032563567\n\t\t 0.093844414 0.91067219 0.33961022 -0.23514515 0.92071277 0.31690446 -0.22766811 0.95641953\n\t\t 0.25110659 -0.14889982 0.68474376 0.18997787 -0.7035737 0.67766345 0.22025223 -0.70159\n\t\t 0.54286313 0.30274373 -0.78331858 0.54286313 0.30274373 -0.78331858 0.54390079 0.26047561\n\t\t -0.79766226 0.68474376 0.18997787 -0.7035737 0.53483677 0.34098342 -0.77306437 0.54286313\n\t\t 0.30274373 -0.78331858 0.67766345 0.22025223 -0.70159 0.54390079 0.26047561 -0.79766226\n\t\t 0.54286313 0.30274373 -0.78331858 0.25251004 0.42875457 -0.86739713 0.25251004 0.42875457\n\t\t -0.86739713 0.54286313 0.30274373 -0.78331858 0.53483677 0.34098342 -0.77306437 0.25251004\n\t\t 0.42875457 -0.86739713 0.24066885 0.36973175 -0.89739674 0.54390079 0.26047561 -0.79766226\n\t\t 0.24066885 0.36973175 -0.89739674 0.25251004 0.42875457 -0.86739713;\n\tsetAttr \".n[1826:1991]\" -type \"float3\"  0.067445755 0.48588517 -0.87139505 0.067445755\n\t\t 0.48588517 -0.87139505 0.04464845 0.42362738 -0.90472126 0.24066885 0.36973175 -0.89739674\n\t\t 0.083864696 0.54393131 -0.8348949 0.067445755 0.48588517 -0.87139505 0.25251004 0.42875457\n\t\t -0.86739713 0.25251004 0.42875457 -0.86739713 0.25540927 0.4922941 -0.83208722 0.083864696\n\t\t 0.54393131 -0.8348949 0.53483677 0.34098342 -0.77306437 0.25540927 0.4922941 -0.83208722\n\t\t 0.25251004 0.42875457 -0.86739713 0.04464845 0.42362738 -0.90472126 0.067445755 0.48588517\n\t\t -0.87139505 0.017395394 0.50444037 -0.86324662 0.017395394 0.50444037 -0.86324662\n\t\t 0.067445755 0.48588517 -0.87139505 0.083864696 0.54393131 -0.8348949 0.017395394\n\t\t 0.50444037 -0.86324662 -0.0081485789 0.44291508 -0.89651179 0.04464845 0.42362738\n\t\t -0.90472126 0.083864696 0.54393131 -0.8348949 0.044099078 0.54036069 -0.84023565\n\t\t 0.017395394 0.50444037 -0.86324662 0.28128937 -0.82329774 0.49296555 0.2673119 -0.83727521\n\t\t 0.4769128 0.3600271 -0.80730593 0.46754363 0.3600271 -0.80730593 0.46754363 0.37714797\n\t\t -0.78844553 0.48585474 0.28128937 -0.82329774 0.49296555 0.37714797 -0.78844553 0.48585474\n\t\t 0.3600271 -0.80730593 0.46754363 0.62791848 -0.66557795 0.40333268 0.62791848 -0.66557795\n\t\t 0.40333268 0.6417129 -0.63859957 0.42469564 0.37714797 -0.78844553 0.48585474 0.6417129\n\t\t -0.63859957 0.42469564 0.62791848 -0.66557795 0.40333268 0.9052096 -0.35355663 0.23566397\n\t\t 0.9052096 -0.35355663 0.23566397 0.90639985 -0.33136967 0.26187935 0.6417129 -0.63859957\n\t\t 0.42469564 0.90639985 -0.33136967 0.26187935 0.9052096 -0.35355663 0.23566397 0.98037666\n\t\t -0.15424024 0.1226539 0.98037666 -0.15424024 0.1226539 0.97659236 -0.15121891 0.15274516\n\t\t 0.90639985 -0.33136967 0.26187935 0.92843395 0.33451369 -0.16144295 0.92468017 0.33924404\n\t\t -0.17276531 0.87243253 0.4302502 -0.23169655 0.87243253 0.4302502 -0.23169655 0.88268673\n\t\t 0.41496041 -0.2205573 0.92843395 0.33451369 -0.16144295 0.88268673 0.41496041 -0.2205573\n\t\t 0.87243253 0.4302502 -0.23169655 0.81530178 0.50007653 -0.29178751 0.81530178 0.50007653\n\t\t -0.29178751 0.82265675 0.49494943 -0.27970216 0.88268673 0.41496041 -0.2205573 0.9781183\n\t\t -0.13803491 0.1556139 0.97085488 -0.21317148 0.10925628 0.97076333 -0.11767906 0.20914336\n\t\t 0.97076333 -0.11767906 0.20914336 0.96899325 -0.12240943 0.21451461 0.9781183 -0.13803491\n\t\t 0.1556139 0.97598201 -0.13550188 0.17050692 0.96899325 -0.12240943 0.21451461 0.97076333\n\t\t -0.11767906 0.20914336 0.97076333 -0.11767906 0.20914336 0.97293013 -0.12955076 0.19125952\n\t\t 0.97598201 -0.13550188 0.17050692 0.98623621 -0.14673269 0.075960577 0.97085488 -0.21317148\n\t\t 0.10925628 0.9781183 -0.13803491 0.1556139 0.9781183 -0.13803491 0.1556139 0.98376423\n\t\t -0.13931668 0.11294902 0.98623621 -0.14673269 0.075960577 0.98623621 -0.14673269\n\t\t 0.075960577 0.98376423 -0.13931668 0.11294902 0.99627674 -0.077058934 -0.038239684\n\t\t 0.99627674 -0.077058934 -0.038239684 0.98916596 -0.14600024 -0.013092429 0.98623621\n\t\t -0.14673269 0.075960577 0.97598201 -0.13550188 0.17050692 0.97293013 -0.12955076\n\t\t 0.19125952 0.99932861 -0.014465466 -0.03274636 0.99932861 -0.014465466 -0.03274636\n\t\t 0.98702967 -0.15326366 -0.047364715 0.97598201 -0.13550188 0.17050692 0.98916596\n\t\t -0.14600024 -0.013092429 0.99627674 -0.077058934 -0.038239684 0.98272657 -0.10959167\n\t\t -0.14896083 0.98272657 -0.10959167 -0.14896083 0.97302169 -0.22855282 -0.031128863\n\t\t 0.98916596 -0.14600024 -0.013092429 0.97100741 -0.045716442 -0.23459578 0.97302169\n\t\t -0.22855282 -0.031128863 0.98272657 -0.10959167 -0.14896083 0.98272657 -0.10959167\n\t\t -0.14896083 0.96624655 -0.05178963 -0.25223547 0.97100741 -0.045716442 -0.23459578\n\t\t 0.98580891 0.028046804 -0.16537981 0.97100741 -0.045716442 -0.23459578 0.96624655\n\t\t -0.05178963 -0.25223547 0.96624655 -0.05178963 -0.25223547 0.98867762 0.016297178\n\t\t -0.14908291 0.98580891 0.028046804 -0.16537981 0.99447614 -0.063813902 -0.083132409\n\t\t 0.98580891 0.028046804 -0.16537981 0.98867762 0.016297178 -0.14908291 0.98867762\n\t\t 0.016297178 -0.14908291 0.99746698 -0.023132727 -0.066957608 0.99447614 -0.063813902\n\t\t -0.083132409 0.99682605 -0.024567097 -0.075563833 0.99447614 -0.063813902 -0.083132409\n\t\t 0.99746698 -0.023132727 -0.066957608 0.98702967 -0.15326366 -0.047364715 0.99932861\n\t\t -0.014465466 -0.03274636 0.99682605 -0.024567097 -0.075563833 0.99746698 -0.023132727\n\t\t -0.066957608 0.99398786 -0.016418658 -0.10797448 0.99682605 -0.024567097 -0.075563833\n\t\t 0.97762996 -0.066377468 -0.19943845 0.96624655 -0.05178963 -0.25223547 0.98272657\n\t\t -0.10959167 -0.14896083 0.98272657 -0.10959167 -0.14896083 0.98638874 -0.032837622\n\t\t -0.16101566 0.97762996 -0.066377468 -0.19943845 0.98638874 -0.032837622 -0.16101566\n\t\t 0.98272657 -0.10959167 -0.14896083 0.99627674 -0.077058934 -0.038239684 0.98226875\n\t\t -0.030579256 -0.18488114 0.97762996 -0.066377468 -0.19943845 0.98638874 -0.032837622\n\t\t -0.16101566 0.98638874 -0.032837622 -0.16101566 0.97833186 -0.048096884 -0.2013306\n\t\t 0.98226875 -0.030579256 -0.18488114 0.99368274 -0.10382366 -0.042054497 0.98226875\n\t\t -0.030579256 -0.18488114 0.97833186 -0.048096884 -0.2013306 0.97833186 -0.048096884\n\t\t -0.2013306 0.9548021 -0.0081176506 -0.29706717 0.99368274 -0.10382366 -0.042054497\n\t\t 0.9477523 0.00082426908 -0.31891844 0.97833186 -0.048096884 -0.2013306 0.98638874\n\t\t -0.032837622 -0.16101566 0.9548021 -0.0081176506 -0.29706717 0.97833186 -0.048096884\n\t\t -0.2013306 0.9477523 0.00082426908 -0.31891844 0.9477523 0.00082426908 -0.31891844\n\t\t 0.98638874 -0.032837622 -0.16101566 0.9778741 0.032960277 -0.20645772 0.98638874\n\t\t -0.032837622 -0.16101566 0.99664295 0.01297067 -0.080690935 0.9778741 0.032960277\n\t\t -0.20645772 0.9477523 0.00082426908 -0.31891844 0.92306286 -0.009948778 -0.38447219\n\t\t 0.9548021 -0.0081176506 -0.29706717 0.99627674 -0.077058934 -0.038239684 0.99664295\n\t\t 0.01297067 -0.080690935 0.98638874 -0.032837622 -0.16101566 0.99682605 -0.024567097\n\t\t -0.075563833 0.99398786 -0.016418658 -0.10797448 0.99285865 -0.03320384 -0.11444441;\n\tsetAttr \".n[1992:2157]\" -type \"float3\"  0.99285865 -0.03320384 -0.11444441 0.99740595\n\t\t -0.048890345 -0.052247684 0.99682605 -0.024567097 -0.075563833 0.99682605 -0.024567097\n\t\t -0.075563833 0.99740595 -0.048890345 -0.052247684 0.98702967 -0.15326366 -0.047364715\n\t\t -0.91268653 0.033783678 -0.40723899 -0.92983788 -0.10419051 -0.35282448 -0.86776328\n\t\t 0.072938934 -0.4915311 -0.86776328 0.072938934 -0.4915311 -0.86822116 0.16956054\n\t\t -0.46626177 -0.91268653 0.033783678 -0.40723899 -0.66991198 0.50169355 -0.54722744\n\t\t -0.86822116 0.16956054 -0.46626177 -0.86776328 0.072938934 -0.4915311 -0.86776328\n\t\t 0.072938934 -0.4915311 -0.63142806 0.42243695 -0.65022743 -0.66991198 0.50169355\n\t\t -0.54722744 -0.66991198 0.50169355 -0.54722744 -0.63142806 0.42243695 -0.65022743\n\t\t -0.2756739 0.68312621 -0.67622918 -0.2756739 0.68312621 -0.67622918 -0.2035282 0.82320613\n\t\t -0.52995396 -0.66991198 0.50169355 -0.54722744 0.12610221 0.87838376 -0.46098214\n\t\t -0.2035282 0.82320613 -0.52995396 -0.2756739 0.68312621 -0.67622918 -0.2756739 0.68312621\n\t\t -0.67622918 0.008789096 0.76003289 -0.64980018 0.12610221 0.87838376 -0.46098214\n\t\t 0.19983493 0.86629844 -0.45777771 0.12610221 0.87838376 -0.46098214 0.008789096 0.76003289\n\t\t -0.64980018 0.008789096 0.76003289 -0.64980018 0.07470908 0.74694043 -0.66066474\n\t\t 0.19983493 0.86629844 -0.45777771 -0.86776328 0.072938934 -0.4915311 -0.92983788\n\t\t -0.10419051 -0.35282448 -0.91271698 -0.13324413 -0.38621172 -0.88213742 -0.44734058\n\t\t 0.14719079 -0.9052704 -0.42069793 0.058595568 -0.92422241 -0.38175634 0.0029603238\n\t\t -0.92422241 -0.38175634 0.0029603238 -0.936674 -0.34928465 -0.024384264 -0.88213742\n\t\t -0.44734058 0.14719079 -0.9052704 -0.42069793 0.058595568 -0.88213742 -0.44734058\n\t\t 0.14719079 -0.85476232 -0.46433935 0.2317576 -0.85476232 -0.46433935 0.2317576 -0.89779341\n\t\t -0.42490947 0.11560415 -0.9052704 -0.42069793 0.058595568 -0.78337944 -0.50364721\n\t\t 0.36414689 -0.85476232 -0.46433935 0.2317576 -0.88213742 -0.44734058 0.14719079 -0.88213742\n\t\t -0.44734058 0.14719079 -0.89910567 -0.39313972 0.19244975 -0.78337944 -0.50364721\n\t\t 0.36414689 -0.89910567 -0.39313972 0.19244975 -0.88213742 -0.44734058 0.14719079\n\t\t -0.936674 -0.34928465 -0.024384264 -0.936674 -0.34928465 -0.024384264 -0.94018358\n\t\t -0.33588701 0.056764454 -0.89910567 -0.39313972 0.19244975 -0.89779341 -0.42490947\n\t\t 0.11560415 -0.85476232 -0.46433935 0.2317576 -0.87026572 -0.39445198 0.29490039 -0.87026572\n\t\t -0.39445198 0.29490039 -0.85476232 -0.46433935 0.2317576 -0.78337944 -0.50364721\n\t\t 0.36414689 -0.87026572 -0.39445198 0.29490039 -0.93130273 -0.33344552 0.1463668 -0.89779341\n\t\t -0.42490947 0.11560415 -0.78337944 -0.50364721 0.36414689 -0.67775488 -0.48454255\n\t\t 0.55302596 -0.87026572 -0.39445198 0.29490039 -0.91192353 -0.14560412 -0.38358715\n\t\t -0.91271698 -0.13324413 -0.38621172 -0.92944115 -0.12353925 -0.34760582 -0.92944115\n\t\t -0.12353925 -0.34760582 -0.92745745 -0.13602132 -0.34827724 -0.91192353 -0.14560412\n\t\t -0.38358715 -0.92745745 -0.13602132 -0.34827724 -0.92944115 -0.12353925 -0.34760582\n\t\t -0.94476151 -0.062898964 -0.32157353 -0.91271698 -0.13324413 -0.38621172 -0.91192353\n\t\t -0.14560412 -0.38358715 -0.86776328 0.072938934 -0.4915311 -0.56672883 0.36048439\n\t\t -0.7408368 -0.69801939 0.22327316 -0.68034911 -0.6671347 0.2368844 -0.70622885 -0.6671347\n\t\t 0.2368844 -0.70622885 -0.53483701 0.34098306 -0.77306437 -0.56672883 0.36048439 -0.7408368\n\t\t -0.69801939 0.22327316 -0.68034911 -0.56672883 0.36048439 -0.7408368 -0.63142806\n\t\t 0.42243695 -0.65022743 -0.63142806 0.42243695 -0.65022743 -0.86776328 0.072938934\n\t\t -0.4915311 -0.69801939 0.22327316 -0.68034911 -0.2756739 0.68312621 -0.67622918 -0.63142806\n\t\t 0.42243695 -0.65022743 -0.56672883 0.36048439 -0.7408368 -0.56672883 0.36048439 -0.7408368\n\t\t -0.25928545 0.56797987 -0.78112131 -0.2756739 0.68312621 -0.67622918 -0.25928545\n\t\t 0.56797987 -0.78112131 -0.56672883 0.36048439 -0.7408368 -0.53483701 0.34098306 -0.77306437\n\t\t -0.53483701 0.34098306 -0.77306437 -0.25540957 0.49229392 -0.83208722 -0.25928545\n\t\t 0.56797987 -0.78112131 -0.039643738 0.63090909 -0.774804 -0.25928545 0.56797987 -0.78112131\n\t\t -0.25540957 0.49229392 -0.83208722 -0.25540957 0.49229392 -0.83208722 -0.084505923\n\t\t 0.5427106 -0.83562738 -0.039643738 0.63090909 -0.774804 -0.25928545 0.56797987 -0.78112131\n\t\t -0.039643738 0.63090909 -0.774804 0.008789096 0.76003289 -0.64980018 0.008789096\n\t\t 0.76003289 -0.64980018 -0.2756739 0.68312621 -0.67622918 -0.25928545 0.56797987 -0.78112131\n\t\t 0.07470908 0.74694043 -0.66066474 0.008789096 0.76003289 -0.64980018 -0.039643738\n\t\t 0.63090909 -0.774804 -0.039643738 0.63090909 -0.774804 0.0090027712 0.61119413 -0.79140604\n\t\t 0.07470908 0.74694043 -0.66066474 0.0090027712 0.61119413 -0.79140604 -0.039643738\n\t\t 0.63090909 -0.774804 -0.084505923 0.5427106 -0.83562738 -0.084505923 0.5427106 -0.83562738\n\t\t -0.04229882 0.53907889 -0.84115124 0.0090027712 0.61119413 -0.79140604 -0.53483701\n\t\t 0.34098306 -0.77306437 -0.6671347 0.2368844 -0.70622885 -0.67766356 0.22025181 -0.70159\n\t\t -0.94476151 -0.062898964 -0.32157353 -0.94476151 -0.069704592 -0.32023072 -0.92745745\n\t\t -0.13602132 -0.34827724 -0.94476151 -0.069704592 -0.32023072 -0.94476151 -0.062898964\n\t\t -0.32157353 -0.95623648 -0.048433192 -0.28852198 -0.95623648 -0.048433192 -0.28852198\n\t\t -0.95776236 -0.05703941 -0.28177741 -0.94476151 -0.069704592 -0.32023072 -0.95776236\n\t\t -0.05703941 -0.28177741 -0.95623648 -0.048433192 -0.28852198 -0.97567677 -0.033570677\n\t\t -0.2164983 -0.97567677 -0.033570677 -0.2164983 -0.97677541 -0.035829049 -0.21109653\n\t\t -0.95776236 -0.05703941 -0.28177741 -0.54390091 0.26047525 -0.79766226 -0.68471336\n\t\t 0.18997745 -0.7035737 -0.70751065 0.18820737 -0.68114263 -0.70751065 0.18820737 -0.68114263\n\t\t -0.55836672 0.25223523 -0.79027683 -0.54390091 0.26047525 -0.79766226 -0.54390091\n\t\t 0.26047525 -0.79766226 -0.55836672 0.25223523 -0.79027683 -0.23105574 0.34577459\n\t\t -0.90939057 -0.23105574 0.34577459 -0.90939057 -0.24066909 0.36973163 -0.89739674\n\t\t -0.54390091 0.26047525 -0.79766226 -0.04544219 0.42222351 -0.90533167;\n\tsetAttr \".n[2158:2323]\" -type \"float3\"  -0.24066909 0.36973163 -0.89739674 -0.23105574\n\t\t 0.34577459 -0.90939057 -0.23105574 0.34577459 -0.90939057 -0.012421153 0.38514352\n\t\t -0.92275763 -0.04544219 0.42222351 -0.90533167 0.010162528 0.44102293 -0.89742732\n\t\t -0.04544219 0.42222351 -0.90533167 -0.012421153 0.38514352 -0.92275763 -0.012421153\n\t\t 0.38514352 -0.92275763 0.050141789 0.39652696 -0.91662341 0.010162528 0.44102293\n\t\t -0.89742732 -0.97677541 -0.035829049 -0.21109653 -0.97567677 -0.033570677 -0.2164983\n\t\t -0.98660237 0.0028989413 -0.16302988 -0.80294192 -0.25598946 0.53825498 -0.88900411\n\t\t -0.20697677 0.40839872 -0.8954435 -0.25592846 0.36420792 -0.8954435 -0.25592846 0.36420792\n\t\t -0.81298244 -0.30280486 0.49732965 -0.80294192 -0.25598946 0.53825498 -0.81298244\n\t\t -0.30280486 0.49732965 -0.8954435 -0.25592846 0.36420792 -0.93533123 -0.27542982\n\t\t 0.22190009 -0.80294192 -0.25598946 0.53825498 -0.81298244 -0.30280486 0.49732965\n\t\t -0.57463288 -0.36960977 0.73015535 -0.57463288 -0.36960977 0.73015535 -0.55034018\n\t\t -0.33301809 0.76561785 -0.80294192 -0.25598946 0.53825498 -0.98660237 0.0028989413\n\t\t -0.16302988 -0.98681599 0.0054930146 -0.16156499 -0.97677541 -0.035829049 -0.21109653\n\t\t -0.55836672 0.25223523 -0.79027683 -0.70751065 0.18820737 -0.68114263 -0.71440786\n\t\t 0.22034337 -0.66411328 -0.99063081 0.021057457 -0.1347087 -0.98681599 0.0054930146\n\t\t -0.16156499 -0.98660237 0.0028989413 -0.16302988 -0.98660237 0.0028989413 -0.16302988\n\t\t -0.99145484 0.020813307 -0.12854396 -0.99063081 0.021057457 -0.1347087 -0.55766481\n\t\t 0.27909154 -0.78170109 -0.71440786 0.22034337 -0.66411328 -0.71547598 0.23480915\n\t\t -0.65797907 -0.71440786 0.22034337 -0.66411328 -0.55766481 0.27909154 -0.78170109\n\t\t -0.55836672 0.25223523 -0.79027683 -0.71547598 0.23480915 -0.65797907 -0.53904855\n\t\t 0.29453391 -0.78908658 -0.55766481 0.27909154 -0.78170109 -0.55766481 0.27909154\n\t\t -0.78170109 -0.53904855 0.29453391 -0.78908658 -0.20340598 0.35932481 -0.91073334\n\t\t -0.20340598 0.35932481 -0.91073334 -0.21619323 0.35373992 -0.91000092 -0.55766481\n\t\t 0.27909154 -0.78170109 0.01480136 0.37855154 -0.92544329 -0.21619323 0.35373992 -0.91000092\n\t\t -0.20340598 0.35932481 -0.91073334 -0.21619323 0.35373992 -0.91000092 0.01480136\n\t\t 0.37855154 -0.92544329 -0.012421153 0.38514352 -0.92275763 0.050141789 0.39652696\n\t\t -0.91662341 -0.012421153 0.38514352 -0.92275763 0.01480136 0.37855154 -0.92544329\n\t\t -0.20340598 0.35932481 -0.91073334 0.027191876 0.37903982 -0.92495501 0.01480136\n\t\t 0.37855154 -0.92544329 0.080629781 0.38395333 -0.91979736 0.01480136 0.37855154 -0.92544329\n\t\t 0.027191876 0.37903982 -0.92495501 0.01480136 0.37855154 -0.92544329 0.080629781\n\t\t 0.38395333 -0.91979736 0.050141789 0.39652696 -0.91662341 0.027191876 0.37903982\n\t\t -0.92495501 0.095919557 0.38236639 -0.9190039 0.080629781 0.38395333 -0.91979736\n\t\t -0.55836672 0.25223523 -0.79027683 -0.55766481 0.27909154 -0.78170109 -0.21619323\n\t\t 0.35373992 -0.91000092 -0.21619323 0.35373992 -0.91000092 -0.23105574 0.34577459\n\t\t -0.90939057 -0.55836672 0.25223523 -0.79027683 -0.012421153 0.38514352 -0.92275763\n\t\t -0.23105574 0.34577459 -0.90939057 -0.21619323 0.35373992 -0.91000092 -0.28156364\n\t\t -0.36790067 0.88619649 -0.55034018 -0.33301809 0.76561785 -0.57463288 -0.36960977\n\t\t 0.73015535 -0.56169307 -0.31684327 0.7642445 -0.55034018 -0.33301809 0.76561785 -0.28156364\n\t\t -0.36790067 0.88619649 -0.28156364 -0.36790067 0.88619649 -0.27536839 -0.35792109\n\t\t 0.89220864 -0.56169307 -0.31684327 0.7642445 -0.15109701 -0.364391 0.91888177 -0.27536839\n\t\t -0.35792109 0.89220864 -0.28156364 -0.36790067 0.88619649 -0.28156364 -0.36790067\n\t\t 0.88619649 -0.17505404 -0.36652729 0.9137547 -0.15109701 -0.364391 0.91888177 -0.17505404\n\t\t -0.36652729 0.9137547 -0.28156364 -0.36790067 0.88619649 -0.31296718 -0.3968322 0.86284983\n\t\t -0.57463288 -0.36960977 0.73015535 -0.31296718 -0.3968322 0.86284983 -0.28156364\n\t\t -0.36790067 0.88619649 -0.4953458 -0.42536709 0.75737792 -0.31296718 -0.3968322 0.86284983\n\t\t -0.57463288 -0.36960977 0.73015535 -0.20297849 -0.40119633 0.89321578 -0.31296718\n\t\t -0.3968322 0.86284983 -0.4953458 -0.42536709 0.75737792 -0.31296718 -0.3968322 0.86284983\n\t\t -0.20297849 -0.40119633 0.89321578 -0.17505404 -0.36652729 0.9137547 -0.4953458 -0.42536709\n\t\t 0.75737792 -0.63176352 -0.47898814 0.60939366 -0.20297849 -0.40119633 0.89321578\n\t\t -0.37766641 -0.52668852 0.76152843 -0.63176352 -0.47898814 0.60939366 -0.4953458\n\t\t -0.42536709 0.75737792 -0.4953458 -0.42536709 0.75737792 -0.45783854 -0.52189708\n\t\t 0.71968752 -0.37766641 -0.52668852 0.76152843 -0.45783854 -0.52189708 0.71968752\n\t\t -0.4953458 -0.42536709 0.75737792 -0.66402161 -0.41105396 0.62453085 -0.57463288\n\t\t -0.36960977 0.73015535 -0.66402161 -0.41105396 0.62453085 -0.4953458 -0.42536709\n\t\t 0.75737792 -0.66402161 -0.41105396 0.62453085 -0.67775488 -0.48454255 0.55302596\n\t\t -0.45783854 -0.52189708 0.71968752 -0.45783854 -0.52189708 0.71968752 -0.4679096\n\t\t -0.55342269 0.68901646 -0.37766641 -0.52668852 0.76152843 -0.4679096 -0.55342269\n\t\t 0.68901646 -0.45783854 -0.52189708 0.71968752 -0.67775488 -0.48454255 0.55302596\n\t\t -0.80294192 -0.25598946 0.53825498 -0.55034018 -0.33301809 0.76561785 -0.56169307\n\t\t -0.31684327 0.7642445 -0.56169307 -0.31684327 0.7642445 -0.81142604 -0.23532844 0.53495896\n\t\t -0.80294192 -0.25598946 0.53825498 -0.88900411 -0.20697677 0.40839872 -0.80294192\n\t\t -0.25598946 0.53825498 -0.81142604 -0.23532844 0.53495896 -0.81142604 -0.23532844\n\t\t 0.53495896 -0.88409066 -0.1948304 0.4247261 -0.88900411 -0.20697677 0.40839872 -0.87026572\n\t\t -0.39445198 0.29490039 -0.67775488 -0.48454255 0.55302596 -0.66402161 -0.41105396\n\t\t 0.62453085 -0.66402161 -0.41105396 0.62453085 -0.86846513 -0.32972223 0.37015903\n\t\t -0.87026572 -0.39445198 0.29490039 -0.86846513 -0.32972223 0.37015903 -0.66402161\n\t\t -0.41105396 0.62453085 -0.57463288 -0.36960977 0.73015535 -0.57463288 -0.36960977\n\t\t 0.73015535 -0.81298244 -0.30280486 0.49732965 -0.86846513 -0.32972223 0.37015903\n\t\t -0.93533123 -0.27542982 0.22190009 -0.86846513 -0.32972223 0.37015903;\n\tsetAttr \".n[2324:2489]\" -type \"float3\"  -0.81298244 -0.30280486 0.49732965 -0.93130273\n\t\t -0.33344552 0.1463668 -0.87026572 -0.39445198 0.29490039 -0.86846513 -0.32972223\n\t\t 0.37015903 -0.86846513 -0.32972223 0.37015903 -0.93533123 -0.27542982 0.22190009\n\t\t -0.93130273 -0.33344552 0.1463668 -0.67775488 -0.48454255 0.55302596 -0.78337944\n\t\t -0.50364721 0.36414689 -0.4679096 -0.55342269 0.68901646 -0.29572406 -0.94839334\n\t\t 0.11432239 -0.205786 -0.96536154 0.16028328 -0.23139104 -0.94140452 0.24533837 -0.23139104\n\t\t -0.94140452 0.24533837 -0.31409621 -0.92580962 0.21021156 -0.29572406 -0.94839334\n\t\t 0.11432239 -0.29572406 -0.94839334 0.11432239 -0.31409621 -0.92580962 0.21021156\n\t\t -0.5651415 -0.82216883 0.067903742 -0.5651415 -0.82216883 0.067903742 -0.55662686\n\t\t -0.82992053 -0.037049409 -0.29572406 -0.94839334 0.11432239 -0.80260611 -0.54774642\n\t\t -0.23612167 -0.55662686 -0.82992053 -0.037049409 -0.5651415 -0.82216883 0.067903742\n\t\t -0.5651415 -0.82216883 0.067903742 -0.81371486 -0.56712568 -0.1273537 -0.80260611\n\t\t -0.54774642 -0.23612167 -0.80260611 -0.54774642 -0.23612167 -0.81371486 -0.56712568\n\t\t -0.1273537 -0.92938012 -0.19669211 -0.31232643 -0.92938012 -0.19669211 -0.31232643\n\t\t -0.90328676 -0.17169745 -0.39313945 -0.80260611 -0.54774642 -0.23612167 -0.86385697\n\t\t 0.18420942 -0.46876431 -0.90328676 -0.17169745 -0.39313945 -0.92938012 -0.19669211\n\t\t -0.31232643 -0.92938012 -0.19669211 -0.31232643 -0.88756984 0.17273447 -0.42701498\n\t\t -0.86385697 0.18420942 -0.46876431 -0.86385697 0.18420942 -0.46876431 -0.88756984\n\t\t 0.17273447 -0.42701498 -0.70778543 0.52784783 -0.46943575 -0.70778543 0.52784783\n\t\t -0.46943575 -0.71456057 0.50785822 -0.48106331 -0.86385697 0.18420942 -0.46876431\n\t\t -0.57741046 0.68498772 -0.44422749 -0.71456057 0.50785822 -0.48106331 -0.70778543\n\t\t 0.52784783 -0.46943575 -0.70778543 0.52784783 -0.46943575 -0.54786849 0.70860904\n\t\t -0.4445937 -0.57741046 0.68498772 -0.44422749 -0.31409621 -0.92580962 0.21021156\n\t\t -0.23139104 -0.94140452 0.24533837 -0.22592825 -0.89983833 0.37308884 -0.22592825\n\t\t -0.89983833 0.37308884 -0.29871491 -0.88836342 0.34864351 -0.31409621 -0.92580962\n\t\t 0.21021156 -0.5401774 -0.80797774 0.23529777 -0.5651415 -0.82216883 0.067903742 -0.31409621\n\t\t -0.92580962 0.21021156 -0.31409621 -0.92580962 0.21021156 -0.29871491 -0.88836342\n\t\t 0.34864351 -0.5401774 -0.80797774 0.23529777 -0.81371486 -0.56712568 -0.1273537 -0.5651415\n\t\t -0.82216883 0.067903742 -0.5401774 -0.80797774 0.23529777 -0.5401774 -0.80797774\n\t\t 0.23529777 -0.81685823 -0.57536572 0.040589657 -0.81371486 -0.56712568 -0.1273537\n\t\t -0.96267581 -0.19885892 -0.18347727 -0.92938012 -0.19669211 -0.31232643 -0.81371486\n\t\t -0.56712568 -0.1273537 -0.81371486 -0.56712568 -0.1273537 -0.81685823 -0.57536572\n\t\t 0.040589657 -0.96267581 -0.19885892 -0.18347727 -0.88756984 0.17273447 -0.42701498\n\t\t -0.92938012 -0.19669211 -0.31232643 -0.96267581 -0.19885892 -0.18347727 -0.96267581\n\t\t -0.19885892 -0.18347727 -0.91964483 0.17471816 -0.3516953 -0.88756984 0.17273447\n\t\t -0.42701498 -0.73128468 0.50459272 -0.45884582 -0.70778543 0.52784783 -0.46943575\n\t\t -0.88756984 0.17273447 -0.42701498 -0.88756984 0.17273447 -0.42701498 -0.91964483\n\t\t 0.17471816 -0.3516953 -0.73128468 0.50459272 -0.45884582 -0.54786849 0.70860904 -0.4445937\n\t\t -0.70778543 0.52784783 -0.46943575 -0.73128468 0.50459272 -0.45884582 -0.73128468\n\t\t 0.50459272 -0.45884582 -0.58140832 0.62648374 -0.51905888 -0.54786849 0.70860904\n\t\t -0.4445937 -0.29871491 -0.88836342 0.34864351 -0.22592825 -0.89983833 0.37308884\n\t\t -0.22898011 -0.88116091 0.41361743 -0.22898011 -0.88116091 0.41361743 -0.30655816\n\t\t -0.8670615 0.39268172 -0.29871491 -0.88836342 0.34864351 -0.5401774 -0.80797774 0.23529777\n\t\t -0.29871491 -0.88836342 0.34864351 -0.30655816 -0.8670615 0.39268172 -0.30655816\n\t\t -0.8670615 0.39268172 -0.22898011 -0.88116091 0.41361743 -0.23551106 -0.87087619\n\t\t 0.43134868 -0.23551106 -0.87087619 0.43134868 -0.31839934 -0.85235149 0.41477713\n\t\t -0.30655816 -0.8670615 0.39268172 -0.31839934 -0.85235149 0.41477713 -0.23551106\n\t\t -0.87087619 0.43134868 -0.24393418 -0.85818046 0.45161295 -0.24393418 -0.85818046\n\t\t 0.45161295 -0.33243784 -0.83516961 0.43809327 -0.31839934 -0.85235149 0.41477713\n\t\t -0.33243784 -0.83516961 0.43809327 -0.24393418 -0.85818046 0.45161295 -0.26596853\n\t\t -0.83657336 0.4788965 -0.26596853 -0.83657336 0.4788965 -0.36103374 -0.80632961 0.46842867\n\t\t -0.33243784 -0.83516961 0.43809327 -0.57310683 -0.74709326 0.33668026 -0.31839934\n\t\t -0.85235149 0.41477713 -0.33243784 -0.83516961 0.43809327 -0.33243784 -0.83516961\n\t\t 0.43809327 -0.59483606 -0.71428591 0.36863312 -0.57310683 -0.74709326 0.33668026\n\t\t -0.59483606 -0.71428591 0.36863312 -0.33243784 -0.83516961 0.43809327 -0.36103374\n\t\t -0.80632961 0.46842867 -0.36103374 -0.80632961 0.46842867 -0.62791812 -0.66557831\n\t\t 0.40333268 -0.59483606 -0.71428591 0.36863312 -0.88143545 -0.42475685 0.20648827\n\t\t -0.59483606 -0.71428591 0.36863312 -0.62791812 -0.66557831 0.40333268 -0.62791812\n\t\t -0.66557831 0.40333268 -0.90520936 -0.35355717 0.23566397 -0.88143545 -0.42475685\n\t\t 0.20648827 -0.59483606 -0.71428591 0.36863312 -0.88143545 -0.42475685 0.20648827\n\t\t -0.85705113 -0.48609909 0.17062901 -0.85705113 -0.48609909 0.17062901 -0.57310683\n\t\t -0.74709326 0.33668026 -0.59483606 -0.71428591 0.36863312 -0.9939878 -0.097323835\n\t\t -0.049714644 -0.85705113 -0.48609909 0.17062901 -0.88143545 -0.42475685 0.20648827\n\t\t -0.88143545 -0.42475685 0.20648827 -0.99969482 0.0061033908 -0.023560289 -0.9939878\n\t\t -0.097323835 -0.049714644 -0.99969482 0.0061033908 -0.023560289 -0.88143545 -0.42475685\n\t\t 0.20648827 -0.90520936 -0.35355717 0.23566397 -0.90520936 -0.35355717 0.23566397\n\t\t -0.98037654 -0.15424083 0.1226539 -0.99969482 0.0061033908 -0.023560289 -0.9064914\n\t\t 0.36872435 -0.20557271 -0.99969482 0.0061033908 -0.023560289 -0.92468041 0.33924344\n\t\t -0.17276531 -0.92468041 0.33924344 -0.17276531 -0.87243277 0.43024966 -0.23169655\n\t\t -0.9064914 0.36872435 -0.20557271 -0.99969482 0.0061033908 -0.023560289 -0.9064914\n\t\t 0.36872435 -0.20557271 -0.93377489 0.27417797 -0.22986543;\n\tsetAttr \".n[2490:2655]\" -type \"float3\"  -0.93377489 0.27417797 -0.22986543 -0.9939878\n\t\t -0.097323835 -0.049714644 -0.99969482 0.0061033908 -0.023560289 -0.77648264 0.51792938\n\t\t -0.35886717 -0.93377489 0.27417797 -0.22986543 -0.9064914 0.36872435 -0.20557271\n\t\t -0.9064914 0.36872435 -0.20557271 -0.77101982 0.55531454 -0.31159401 -0.77648264\n\t\t 0.51792938 -0.35886717 -0.87243277 0.43024966 -0.23169655 -0.77101982 0.55531454\n\t\t -0.31159401 -0.9064914 0.36872435 -0.20557271 -0.87243277 0.43024966 -0.23169655\n\t\t -0.77892411 0.55244583 -0.2967315 -0.77101982 0.55531454 -0.31159401 -0.87243277\n\t\t 0.43024966 -0.23169655 -0.81530213 0.50007606 -0.29178751 -0.77892411 0.55244583\n\t\t -0.2967315 -0.57310683 -0.74709326 0.33668026 -0.85705113 -0.48609909 0.17062901\n\t\t -0.8359018 -0.53505075 0.12222667 -0.98071223 -0.16434249 -0.10574661 -0.8359018\n\t\t -0.53505075 0.12222667 -0.85705113 -0.48609909 0.17062901 -0.85705113 -0.48609909\n\t\t 0.17062901 -0.9939878 -0.097323835 -0.049714644 -0.98071223 -0.16434249 -0.10574661\n\t\t -0.8359018 -0.53505075 0.12222667 -0.98071223 -0.16434249 -0.10574661 -0.96267581\n\t\t -0.19885892 -0.18347727 -0.96267581 -0.19885892 -0.18347727 -0.81685823 -0.57536572\n\t\t 0.040589657 -0.8359018 -0.53505075 0.12222667 -0.55174387 -0.77733713 0.30210277\n\t\t -0.8359018 -0.53505075 0.12222667 -0.81685823 -0.57536572 0.040589657 -0.8359018\n\t\t -0.53505075 0.12222667 -0.55174387 -0.77733713 0.30210277 -0.57310683 -0.74709326\n\t\t 0.33668026 -0.31839934 -0.85235149 0.41477713 -0.57310683 -0.74709326 0.33668026\n\t\t -0.55174387 -0.77733713 0.30210277 -0.55174387 -0.77733713 0.30210277 -0.30655816\n\t\t -0.8670615 0.39268172 -0.31839934 -0.85235149 0.41477713 -0.30655816 -0.8670615 0.39268172\n\t\t -0.55174387 -0.77733713 0.30210277 -0.5401774 -0.80797774 0.23529777 -0.81685823\n\t\t -0.57536572 0.040589657 -0.5401774 -0.80797774 0.23529777 -0.55174387 -0.77733713\n\t\t 0.30210277 -0.91964483 0.17471816 -0.3516953 -0.96267581 -0.19885892 -0.18347727\n\t\t -0.98071223 -0.16434249 -0.10574661 -0.98071223 -0.16434249 -0.10574661 -0.93371385\n\t\t 0.20499253 -0.29340497 -0.91964483 0.17471816 -0.3516953 -0.9939878 -0.097323835\n\t\t -0.049714644 -0.93377489 0.27417797 -0.22986543 -0.93371385 0.20499253 -0.29340497\n\t\t -0.93371385 0.20499253 -0.29340497 -0.98071223 -0.16434249 -0.10574661 -0.9939878\n\t\t -0.097323835 -0.049714644 -0.73128468 0.50459272 -0.45884582 -0.91964483 0.17471816\n\t\t -0.3516953 -0.93371385 0.20499253 -0.29340497 -0.93371385 0.20499253 -0.29340497\n\t\t -0.75518072 0.49714625 -0.42716759 -0.73128468 0.50459272 -0.45884582 -0.75518072\n\t\t 0.49714625 -0.42716759 -0.93371385 0.20499253 -0.29340497 -0.93377489 0.27417797\n\t\t -0.22986543 -0.93377489 0.27417797 -0.22986543 -0.77648264 0.51792938 -0.35886717\n\t\t -0.75518072 0.49714625 -0.42716759 -0.6288951 0.57426655 -0.5240944 -0.75518072 0.49714625\n\t\t -0.42716759 -0.77648264 0.51792938 -0.35886717 -0.77648264 0.51792938 -0.35886717\n\t\t -0.66801983 0.58006507 -0.46610922 -0.6288951 0.57426655 -0.5240944 -0.75518072 0.49714625\n\t\t -0.42716759 -0.6288951 0.57426655 -0.5240944 -0.58140832 0.62648374 -0.51905888 -0.58140832\n\t\t 0.62648374 -0.51905888 -0.73128468 0.50459272 -0.45884582 -0.75518072 0.49714625\n\t\t -0.42716759 -0.68291289 0.61894566 -0.38792083 -0.66801983 0.58006507 -0.46610922\n\t\t -0.77648264 0.51792938 -0.35886717 -0.77648264 0.51792938 -0.35886717 -0.77101982\n\t\t 0.55531454 -0.31159401 -0.68291289 0.61894566 -0.38792083 -0.68291289 0.61894566\n\t\t -0.38792083 -0.77101982 0.55531454 -0.31159401 -0.77892411 0.55244583 -0.2967315\n\t\t -0.16089329 -0.9819026 -0.099551305 -0.085634634 -0.99536121 -0.043427765 -0.14069001\n\t\t -0.98992896 0.01379444 -0.14069001 -0.98992896 0.01379444 -0.20841061 -0.9771722\n\t\t -0.041108359 -0.16089329 -0.9819026 -0.099551305 -0.16089329 -0.9819026 -0.099551305\n\t\t -0.20841061 -0.9771722 -0.041108359 -0.43400344 -0.87774295 -0.20294803 -0.43400344\n\t\t -0.87774295 -0.20294803 -0.39402419 -0.87905526 -0.26831868 -0.16089329 -0.9819026\n\t\t -0.099551305 -0.64595461 -0.61400211 -0.4535355 -0.39402419 -0.87905526 -0.26831868\n\t\t -0.43400344 -0.87774295 -0.20294803 -0.43400344 -0.87774295 -0.20294803 -0.6923427\n\t\t -0.60966849 -0.38590649 -0.64595461 -0.61400211 -0.4535355 -0.64595461 -0.61400211\n\t\t -0.4535355 -0.6923427 -0.60966849 -0.38590649 -0.83632916 -0.23087281 -0.497177 -0.83632916\n\t\t -0.23087281 -0.497177 -0.79277927 -0.2376174 -0.56123537 -0.64595461 -0.61400211\n\t\t -0.4535355 -0.8134709 0.12424055 -0.5681631 -0.79277927 -0.2376174 -0.56123537 -0.83632916\n\t\t -0.23087281 -0.497177 -0.83632916 -0.23087281 -0.497177 -0.84069341 0.15024233 -0.52018797\n\t\t -0.8134709 0.12424055 -0.5681631 -0.8134709 0.12424055 -0.5681631 -0.84069341 0.15024233\n\t\t -0.52018797 -0.73818183 0.48109353 -0.47285381 -0.73818183 0.48109353 -0.47285381\n\t\t -0.71913832 0.48857057 -0.49406418 -0.8134709 0.12424055 -0.5681631 -0.60267979 0.68044043\n\t\t -0.41679135 -0.71913832 0.48857057 -0.49406418 -0.73818183 0.48109353 -0.47285381\n\t\t -0.73818183 0.48109353 -0.47285381 -0.64018697 0.64470327 -0.41770691 -0.60267979\n\t\t 0.68044043 -0.41679135 -0.84652245 0.13714987 -0.51432842 -0.8430739 0.16605091 -0.51149023\n\t\t -0.88698995 0.014068725 -0.46153143 -0.88698995 0.014068725 -0.46153143 -0.87664419\n\t\t -0.01220771 -0.48094118 -0.84652245 0.13714987 -0.51432842 -0.4932709 0.74065346\n\t\t -0.45616022 -0.62504977 0.59761322 -0.50212109 -0.70323819 0.51509112 -0.48997471\n\t\t -0.70323819 0.51509112 -0.48997471 -0.70781595 0.51081854 -0.48786893 -0.4932709\n\t\t 0.74065346 -0.45616022 -0.4932709 0.74065346 -0.45616022 -0.37406564 0.84859753 -0.37403491\n\t\t -0.1779232 0.94241148 -0.28318131 -0.1779232 0.94241148 -0.28318131 -0.32865411 0.86141533\n\t\t -0.38718837 -0.4932709 0.74065346 -0.45616022 -0.64595461 -0.61400211 -0.4535355\n\t\t -0.79277927 -0.2376174 -0.56123537 -0.765984 -0.23920436 -0.59666735 -0.79277927\n\t\t -0.2376174 -0.56123537 -0.8134709 0.12424055 -0.5681631 -0.78865939 0.10293865 -0.60609758\n\t\t -0.78865939 0.10293865 -0.60609758 -0.765984 -0.23920436 -0.59666735 -0.79277927\n\t\t -0.2376174 -0.56123537 -0.765984 -0.23920436 -0.59666735;\n\tsetAttr \".n[2656:2821]\" -type \"float3\"  -0.78865939 0.10293865 -0.60609758 -0.77059245\n\t\t 0.10232828 -0.629017 -0.77059245 0.10232828 -0.629017 -0.75527203 -0.24185947 -0.60908842\n\t\t -0.765984 -0.23920436 -0.59666735 -0.62050217 -0.61479563 -0.48677015 -0.765984 -0.23920436\n\t\t -0.59666735 -0.75527203 -0.24185947 -0.60908842 -0.75527203 -0.24185947 -0.60908842\n\t\t -0.60951549 -0.61693192 -0.49784839 -0.62050217 -0.61479563 -0.48677015 -0.37220347\n\t\t -0.88021499 -0.29438147 -0.62050217 -0.61479563 -0.48677015 -0.60951549 -0.61693192\n\t\t -0.49784839 -0.62050217 -0.61479563 -0.48677015 -0.37220347 -0.88021499 -0.29438147\n\t\t -0.39402419 -0.87905526 -0.26831868 -0.16089329 -0.9819026 -0.099551305 -0.39402419\n\t\t -0.87905526 -0.26831868 -0.37220347 -0.88021499 -0.29438147 -0.37220347 -0.88021499\n\t\t -0.29438147 -0.14380291 -0.9826045 -0.11731307 -0.16089329 -0.9819026 -0.099551305\n\t\t -0.085634634 -0.99536121 -0.043427765 -0.16089329 -0.9819026 -0.099551305 -0.14380291\n\t\t -0.9826045 -0.11731307 -0.14380291 -0.9826045 -0.11731307 -0.06930723 -0.99584949\n\t\t -0.058870129 -0.085634634 -0.99536121 -0.043427765 -0.06930723 -0.99584949 -0.058870129\n\t\t -0.14380291 -0.9826045 -0.11731307 -0.13678366 -0.98300123 -0.12222656 -0.13678366\n\t\t -0.98300123 -0.12222656 -0.063600264 -0.99591053 -0.063875169 -0.06930723 -0.99584949\n\t\t -0.058870129 -0.36204082 -0.88183242 -0.30210266 -0.13678366 -0.98300123 -0.12222656\n\t\t -0.14380291 -0.9826045 -0.11731307 -0.14380291 -0.9826045 -0.11731307 -0.37220347\n\t\t -0.88021499 -0.29438147 -0.36204082 -0.88183242 -0.30210266 -0.60951549 -0.61693192\n\t\t -0.49784839 -0.36204082 -0.88183242 -0.30210266 -0.37220347 -0.88021499 -0.29438147\n\t\t -0.39402419 -0.87905526 -0.26831868 -0.64595461 -0.61400211 -0.4535355 -0.62050217\n\t\t -0.61479563 -0.48677015 -0.765984 -0.23920436 -0.59666735 -0.62050217 -0.61479563\n\t\t -0.48677015 -0.64595461 -0.61400211 -0.4535355 -0.7337566 0.28723991 -0.6156804 -0.77059245\n\t\t 0.10232828 -0.629017 -0.78865939 0.10293865 -0.60609758 -0.78865939 0.10293865 -0.60609758\n\t\t -0.71401119 0.45094126 -0.53553885 -0.7337566 0.28723991 -0.6156804 -0.64537507 0.48615962\n\t\t -0.58915991 -0.7337566 0.28723991 -0.6156804 -0.71401119 0.45094126 -0.53553885 -0.71401119\n\t\t 0.45094126 -0.53553885 -0.69905716 0.50862116 -0.50257885 -0.64537507 0.48615962\n\t\t -0.58915991 -0.62306607 0.56624019 -0.53956729 -0.64537507 0.48615962 -0.58915991\n\t\t -0.69905716 0.50862116 -0.50257885 -0.69905716 0.50862116 -0.50257885 -0.70760226\n\t\t 0.48161235 -0.51701415 -0.62306607 0.56624019 -0.53956729 -0.70760226 0.48161235\n\t\t -0.51701415 -0.69905716 0.50862116 -0.50257885 -0.8430739 0.16605091 -0.51149023\n\t\t -0.8430739 0.16605091 -0.51149023 -0.84652245 0.13714987 -0.51432842 -0.70760226\n\t\t 0.48161235 -0.51701415 -0.43675062 0.78698063 -0.43574333 -0.70760226 0.48161235\n\t\t -0.51701415 -0.62504977 0.59761322 -0.50212109 -0.62504977 0.59761322 -0.50212109\n\t\t -0.4932709 0.74065346 -0.45616022 -0.43675062 0.78698063 -0.43574333 -0.70760226\n\t\t 0.48161235 -0.51701415 -0.43675062 0.78698063 -0.43574333 -0.37363836 0.8076722 -0.45606866\n\t\t -0.37363836 0.8076722 -0.45606866 -0.62306607 0.56624019 -0.53956729 -0.70760226\n\t\t 0.48161235 -0.51701415 -0.092623971 0.95620596 -0.2775659 -0.37363836 0.8076722 -0.45606866\n\t\t -0.43675062 0.78698063 -0.43574333 -0.43675062 0.78698063 -0.43574333 -0.10464827\n\t\t 0.95803696 -0.26673183 -0.092623971 0.95620596 -0.2775659 -0.10464827 0.95803696\n\t\t -0.26673183 -0.43675062 0.78698063 -0.43574333 -0.4932709 0.74065346 -0.45616022\n\t\t -0.4932709 0.74065346 -0.45616022 -0.32865411 0.86141533 -0.38718837 -0.10464827\n\t\t 0.95803696 -0.26673183 -0.71913832 0.48857057 -0.49406418 -0.60267979 0.68044043\n\t\t -0.41679135 -0.69905716 0.50862116 -0.50257885 -0.69905716 0.50862116 -0.50257885\n\t\t -0.71401119 0.45094126 -0.53553885 -0.71913832 0.48857057 -0.49406418 -0.8134709\n\t\t 0.12424055 -0.5681631 -0.71913832 0.48857057 -0.49406418 -0.71401119 0.45094126 -0.53553885\n\t\t -0.71401119 0.45094126 -0.53553885 -0.78865939 0.10293865 -0.60609758 -0.8134709\n\t\t 0.12424055 -0.5681631 -0.4119696 0.73155904 -0.54316849 -0.64537507 0.48615962 -0.58915991\n\t\t -0.62306607 0.56624019 -0.53956729 -0.62306607 0.56624019 -0.53956729 -0.37363836\n\t\t 0.8076722 -0.45606866 -0.4119696 0.73155904 -0.54316849 -0.4119696 0.73155904 -0.54316849\n\t\t -0.37363836 0.8076722 -0.45606866 -0.092623971 0.95620596 -0.2775659 -0.092623971\n\t\t 0.95620596 -0.2775659 -0.11941921 0.92123169 -0.37015906 -0.4119696 0.73155904 -0.54316849\n\t\t 0.15912321 0.97711116 -0.14099559 -0.11941921 0.92123169 -0.37015906 -0.092623971\n\t\t 0.95620596 -0.2775659 -0.092623971 0.95620596 -0.2775659 0.15784143 0.98281813 -0.095523007\n\t\t 0.15912321 0.97711116 -0.14099559 0.15784143 0.98281813 -0.095523007 -0.092623971\n\t\t 0.95620596 -0.2775659 -0.10464827 0.95803696 -0.26673183 0.26068881 0.96465963 -0.037965097\n\t\t 0.15912321 0.97711116 -0.14099559 0.15784143 0.98281813 -0.095523007 0.15784143 0.98281813\n\t\t -0.095523007 0.22595875 0.97296065 -0.047486871 0.26068881 0.96465963 -0.037965097\n\t\t 0.15857388 0.98217726 -0.10083324 -0.10464827 0.95803696 -0.26673183 0.087831967\n\t\t 0.98336738 -0.15884891 -0.10464827 0.95803696 -0.26673183 0.15857388 0.98217726 -0.10083324\n\t\t 0.15784143 0.98281813 -0.095523007 0.22595875 0.97296065 -0.047486871 0.15784143\n\t\t 0.98281813 -0.095523007 0.15857388 0.98217726 -0.10083324 0.087831967 0.98336738\n\t\t -0.15884891 0.15915373 0.97955269 -0.12286759 0.15857388 0.98217726 -0.10083324 0.15915373\n\t\t 0.97955269 -0.12286759 0.087831967 0.98336738 -0.15884891 -0.1779232 0.94241148 -0.28318131\n\t\t -0.1779232 0.94241148 -0.28318131 0.10449507 0.98342854 -0.14801484 0.15915373 0.97955269\n\t\t -0.12286759 0.10449507 0.98342854 -0.14801484 -0.1779232 0.94241148 -0.28318131 -0.16583788\n\t\t 0.95208585 -0.25687435 -0.16583788 0.95208585 -0.25687435 -0.1779232 0.94241148 -0.28318131\n\t\t -0.37406564 0.84859753 -0.37403491 -0.37406564 0.84859753 -0.37403491 -0.36417764\n\t\t 0.86449772 -0.34638515 -0.16583788 0.95208585 -0.25687435 -0.73964679 0.48628166\n\t\t -0.46519366 -0.74120319 0.48316878 -0.46595663;\n\tsetAttr \".n[2822:2987]\" -type \"float3\"  -0.70781595 0.51081854 -0.48786893 -0.70781595\n\t\t 0.51081854 -0.48786893 -0.70323819 0.51509112 -0.48997471 -0.73964679 0.48628166\n\t\t -0.46519366 -0.90026551 -0.026948154 -0.43443099 -0.89941096 -0.037568599 -0.43540758\n\t\t -0.87664419 -0.01220771 -0.48094118 -0.87664419 -0.01220771 -0.48094118 -0.88698995\n\t\t 0.014068725 -0.46153143 -0.90026551 -0.026948154 -0.43443099 -0.62739968 0.66313648\n\t\t -0.40812409 -0.64018697 0.64470327 -0.41770691 -0.73818183 0.48109353 -0.47285381\n\t\t -0.73818183 0.48109353 -0.47285381 -0.72545564 0.51692224 -0.45435959 -0.62739968\n\t\t 0.66313648 -0.40812409 -0.72545564 0.51692224 -0.45435959 -0.73818183 0.48109353\n\t\t -0.47285381 -0.84069341 0.15024233 -0.52018797 -0.84069341 0.15024233 -0.52018797\n\t\t -0.84740752 0.20548083 -0.48951691 -0.72545564 0.51692224 -0.45435959 -0.86913657\n\t\t -0.15622455 -0.46922207 -0.84740752 0.20548083 -0.48951691 -0.84069341 0.15024233\n\t\t -0.52018797 -0.84069341 0.15024233 -0.52018797 -0.83632916 -0.23087281 -0.497177\n\t\t -0.86913657 -0.15622455 -0.46922207 -0.86913657 -0.15622455 -0.46922207 -0.83632916\n\t\t -0.23087281 -0.497177 -0.6923427 -0.60966849 -0.38590649 -0.6923427 -0.60966849 -0.38590649\n\t\t -0.76210803 -0.52986258 -0.37195957 -0.86913657 -0.15622455 -0.46922207 -0.50975043\n\t\t -0.84124291 -0.18002863 -0.76210803 -0.52986258 -0.37195957 -0.6923427 -0.60966849\n\t\t -0.38590649 -0.6923427 -0.60966849 -0.38590649 -0.43400344 -0.87774295 -0.20294803\n\t\t -0.50975043 -0.84124291 -0.18002863 -0.50975043 -0.84124291 -0.18002863 -0.43400344\n\t\t -0.87774295 -0.20294803 -0.20841061 -0.9771722 -0.041108359 -0.20841061 -0.9771722\n\t\t -0.041108359 -0.25138065 -0.9678641 -0.0031433345 -0.50975043 -0.84124291 -0.18002863\n\t\t -0.16449447 -0.98449665 0.060609832 -0.25138065 -0.9678641 -0.0031433345 -0.20841061\n\t\t -0.9771722 -0.041108359 -0.20841061 -0.9771722 -0.041108359 -0.14069001 -0.98992896\n\t\t 0.01379444 -0.16449447 -0.98449665 0.060609832 -0.067445599 -0.98712116 -0.14484078\n\t\t -0.024322942 -0.99697864 -0.073580049 -0.02316324 -0.99697864 -0.073976792 -0.02316324\n\t\t -0.99697864 -0.073976792 -0.069246195 -0.98654133 -0.14807573 -0.067445599 -0.98712116\n\t\t -0.14484078 -0.067445599 -0.98712116 -0.14484078 -0.069246195 -0.98654133 -0.14807573\n\t\t -0.23093328 -0.89635921 -0.37833789 -0.23093328 -0.89635921 -0.37833789 -0.23020083\n\t\t -0.89706111 -0.37717819 -0.067445599 -0.98712116 -0.14484078 -0.42225388 -0.63744026\n\t\t -0.64445931 -0.23020083 -0.89706111 -0.37717819 -0.23093328 -0.89635921 -0.37833789\n\t\t -0.23093328 -0.89635921 -0.37833789 -0.42027017 -0.64192653 -0.64128536 -0.42225388\n\t\t -0.63744026 -0.64445931 -0.42225388 -0.63744026 -0.64445931 -0.42027017 -0.64192653\n\t\t -0.64128536 -0.53651536 -0.26526713 -0.80108035 -0.53651536 -0.26526713 -0.80108035\n\t\t -0.53801072 -0.25278506 -0.80410171 -0.42225388 -0.63744026 -0.64445931 -0.55580318\n\t\t 0.15915379 -0.81591237 -0.53801072 -0.25278506 -0.80410171 -0.53651536 -0.26526713\n\t\t -0.80108035 -0.53651536 -0.26526713 -0.80108035 -0.55668819 0.14423023 -0.81807917\n\t\t -0.55580318 0.15915379 -0.81591237 -0.55580318 0.15915379 -0.81591237 -0.55668819\n\t\t 0.14423023 -0.81807917 -0.49217215 0.50071692 -0.71205795 -0.49217215 0.50071692\n\t\t -0.71205795 -0.48735023 0.51423663 -0.70567954 -0.55580318 0.15915379 -0.81591237\n\t\t -0.36652753 0.77358299 -0.51689208 -0.48735023 0.51423663 -0.70567954 -0.49217215\n\t\t 0.50071692 -0.71205795 -0.49217215 0.50071692 -0.71205795 -0.37162414 0.76610595\n\t\t -0.52430803 -0.36652753 0.77358299 -0.51689208 -0.36652753 0.77358299 -0.51689208\n\t\t -0.37162414 0.76610595 -0.52430803 -0.19409803 0.94643998 -0.25800353 -0.19409803\n\t\t 0.94643998 -0.25800353 -0.18872675 0.94970542 -0.24979408 -0.36652753 0.77358299\n\t\t -0.51689208 0.0042722821 0.99938965 0.034577396 -0.18872675 0.94970542 -0.24979408\n\t\t -0.19409803 0.94643998 -0.25800353 -0.19409803 0.94643998 -0.25800353 0.0034482826\n\t\t 0.99945068 0.032532655 0.0042722821 0.99938965 0.034577396 0.0042722821 0.99938965\n\t\t 0.034577396 0.0034482826 0.99945068 0.032532655 0.077119969 0.98620564 0.14639722\n\t\t 0.077119969 0.98620564 0.14639722 0.074800558 0.98632771 0.14664136 0.0042722821\n\t\t 0.99938965 0.034577396 -0.91268653 0.033783678 -0.40723899 -0.86822116 0.16956054\n\t\t -0.46626177 -0.86620688 0.22629444 -0.44541767 -0.86620688 0.22629444 -0.44541767\n\t\t -0.91213721 -0.024781341 -0.4090701 -0.91268653 0.033783678 -0.40723899 -0.76339012\n\t\t 0.45164314 -0.46174508 -0.86620688 0.22629444 -0.44541767 -0.86822116 0.16956054\n\t\t -0.46626177 -0.86822116 0.16956054 -0.46626177 -0.66991198 0.50169355 -0.54722744\n\t\t -0.76339012 0.45164314 -0.46174508 -0.30213347 0.81307393 -0.49757385 -0.66991198\n\t\t 0.50169355 -0.54722744 -0.2035282 0.82320613 -0.52995396 -0.2035282 0.82320613 -0.52995396\n\t\t -0.09817832 0.88662362 -0.45188764 -0.30213347 0.81307393 -0.49757385 0.19852263\n\t\t 0.91039771 -0.3629567 -0.09817832 0.88662362 -0.45188764 -0.2035282 0.82320613 -0.52995396\n\t\t -0.2035282 0.82320613 -0.52995396 0.12610221 0.87838376 -0.46098214 0.19852263 0.91039771\n\t\t -0.3629567 0.2729573 0.89324629 -0.3571887 0.19852263 0.91039771 -0.3629567 0.12610221\n\t\t 0.87838376 -0.46098214 0.12610221 0.87838376 -0.46098214 0.19983493 0.86629844 -0.45777771\n\t\t 0.2729573 0.89324629 -0.3571887 -0.16583788 0.95208585 -0.25687435 0.075960264 0.98675495\n\t\t -0.1431624 0.10449507 0.98342854 -0.14801484 0.16562365 0.97906435 -0.11804567 0.10449507\n\t\t 0.98342854 -0.14801484 0.075960264 0.98675495 -0.1431624 0.075960264 0.98675495 -0.1431624\n\t\t 0.1248204 0.98431355 -0.12460715 0.16562365 0.97906435 -0.11804567 0.10449507 0.98342854\n\t\t -0.14801484 0.16562365 0.97906435 -0.11804567 0.23422927 0.96816927 -0.08813753 0.23422927\n\t\t 0.96816927 -0.08813753 0.15915373 0.97955269 -0.12286759 0.10449507 0.98342854 -0.14801484\n\t\t 0.15915373 0.97955269 -0.12286759 0.23422927 0.96816927 -0.08813753 0.22867489 0.97177047\n\t\t -0.057985239 0.22867489 0.97177047 -0.057985239 0.15857388 0.98217726 -0.10083324\n\t\t 0.15915373 0.97955269 -0.12286759 0.15857388 0.98217726 -0.10083324 0.22867489 0.97177047\n\t\t -0.057985239 0.22595875 0.97296065 -0.047486871;\n\tsetAttr \".n[2988:3153]\" -type \"float3\"  -0.0022275497 -0.9753105 -0.22067927\n\t\t 0.050020143 -0.98818934 -0.14481026 0.13046692 -0.97012234 -0.20447394 0.13046692\n\t\t -0.97012234 -0.20447394 0.072359681 -0.95648062 -0.28260133 -0.0022275497 -0.9753105\n\t\t -0.22067927 -0.48475572 -0.86144614 0.1512498 -0.44251812 -0.86785495 0.22574547\n\t\t -0.4388864 -0.87005228 0.22434162 -0.4388864 -0.87005228 0.22434162 -0.474471 -0.86623752\n\t\t 0.15634638 -0.48475572 -0.86144614 0.1512498 -0.74822217 -0.47190791 0.4662618 -0.7547226\n\t\t -0.47505131 0.45240641 -0.72646248 -0.47096184 0.50038153 -0.7547226 -0.47505131\n\t\t 0.45240641 -0.74822217 -0.47190791 0.4662618 -0.83172083 -0.42924309 0.35203102 -0.83172083\n\t\t -0.42924309 0.35203102 -0.84353149 -0.42304781 0.33079016 -0.7547226 -0.47505131\n\t\t 0.45240641 -0.84353149 -0.42304781 0.33079016 -0.83172083 -0.42924309 0.35203102\n\t\t -0.93182153 -0.29615188 0.20972322 -0.93182153 -0.29615188 0.20972322 -0.93664354\n\t\t -0.28775933 0.19956055 -0.84353149 -0.42304781 0.33079016 -0.93664354 -0.28775933\n\t\t 0.19956055 -0.93182153 -0.29615188 0.20972322 -0.98678541 -0.09720175 0.12945952\n\t\t -0.98678541 -0.09720175 0.12945952 -0.98733485 -0.092868119 0.12842189 -0.93664354\n\t\t -0.28775933 0.19956055 -0.98733485 -0.092868119 0.12842189 -0.98678541 -0.09720175\n\t\t 0.12945952 -0.9863888 0.11642781 0.11590929 -0.9863888 0.11642781 0.11590929 -0.98666346\n\t\t 0.11279611 0.11716055 -0.98733485 -0.092868119 0.12842189 -0.98666346 0.11279611\n\t\t 0.11716055 -0.9863888 0.11642781 0.11590929 -0.94021434 0.29792139 0.16486098 -0.94021434\n\t\t 0.29792139 0.16486098 -0.94192338 0.29242805 0.16498305 -0.98666346 0.11279611 0.11716055\n\t\t -0.94192338 0.29242805 0.16498305 -0.94021434 0.29792139 0.16486098 -0.87011331 0.42377979\n\t\t 0.25153354 -0.87011331 0.42377979 0.25153354 -0.87087631 0.42081949 0.25385293 -0.94192338\n\t\t 0.29242805 0.16498305 -0.87087631 0.42081949 0.25385293 -0.87011331 0.42377979 0.25153354\n\t\t -0.78264737 0.49092054 0.38261053 -0.78264737 0.49092054 0.38261053 -0.78621805 0.48399284\n\t\t 0.38416696 -0.87087631 0.42081949 0.25385293 -0.78621805 0.48399284 0.38416696 -0.78264737\n\t\t 0.49092054 0.38261053 -0.6967988 0.50108325 0.51313818 -0.6967988 0.50108325 0.51313818\n\t\t -0.70769387 0.49269062 0.50633252 -0.78621805 0.48399284 0.38416696 -0.70769387 0.49269062\n\t\t 0.50633252 -0.6967988 0.50108325 0.51313818 -0.6733911 0.4861902 0.55687118 -0.6733911\n\t\t 0.4861902 0.55687118 -0.68135637 0.47898781 0.55345309 -0.70769387 0.49269062 0.50633252\n\t\t -0.4025394 0.87163901 0.27951896 -0.34577498 0.85686809 0.38233584 -0.34305882 0.85998094\n\t\t 0.37772754 -0.34305882 0.85998094 0.37772754 -0.40458414 0.87176108 0.27625349 -0.4025394\n\t\t 0.87163901 0.27951896 0.14780085 0.98226881 -0.11526848 0.22608082 0.97405934 -0.009125107\n\t\t 0.14154454 0.98809785 0.059999317 0.14154454 0.98809785 0.059999317 0.066102788 0.99652088\n\t\t -0.050111465 0.14780085 0.98226881 -0.11526848 -0.54960805 0.83391809 0.049714588\n\t\t -0.55256838 0.83236164 0.042664815 -0.4025394 0.87163901 0.27951896 -0.4025394 0.87163901\n\t\t 0.27951896 -0.40458414 0.87176108 0.27625349 -0.54960805 0.83391809 0.049714588 -0.69853842\n\t\t 0.69127452 -0.18482013 -0.55256838 0.83236164 0.042664815 -0.54960805 0.83391809\n\t\t 0.049714588 -0.042665165 0.92342907 -0.38135934 0.14780085 0.98226881 -0.11526848\n\t\t 0.066102788 0.99652088 -0.050111465 0.066102788 0.99652088 -0.050111465 -0.11911403\n\t\t 0.93819994 -0.3248696 -0.042665165 0.92342907 -0.38135934 -0.54960805 0.83391809\n\t\t 0.049714588 -0.69457102 0.69640166 -0.18039495 -0.69853842 0.69127452 -0.18482013\n\t\t -0.2884917 0.76262689 -0.57890564 -0.21683425 0.74736768 -0.62797946 -0.042665165\n\t\t 0.92342907 -0.38135934 -0.042665165 0.92342907 -0.38135934 -0.11911403 0.93819994\n\t\t -0.3248696 -0.2884917 0.76262689 -0.57890564 -0.3308208 0.48512208 -0.80941194 -0.21683425\n\t\t 0.74736768 -0.62797946 -0.2884917 0.76262689 -0.57890564 -0.2884917 0.76262689 -0.57890564\n\t\t -0.40391263 0.50364679 -0.7636342 -0.3308208 0.48512208 -0.80941194 -0.69853842 0.69127452\n\t\t -0.18482013 -0.69457102 0.69640166 -0.18039495 -0.81365412 0.47288403 -0.33808407\n\t\t -0.81365412 0.47288403 -0.33808407 -0.81530207 0.4685199 -0.34015933 -0.69853842\n\t\t 0.69127452 -0.18482013 -0.88933992 0.15094425 -0.43153173 -0.81530207 0.4685199 -0.34015933\n\t\t -0.81365412 0.47288403 -0.33808407 -0.81365412 0.47288403 -0.33808407 -0.88866854\n\t\t 0.15659018 -0.43092135 -0.88933992 0.15094425 -0.43153173 -0.46623132 0.14545101\n\t\t -0.87258524 -0.38871428 0.13013072 -0.91210669 -0.3308208 0.48512208 -0.80941194\n\t\t -0.3308208 0.48512208 -0.80941194 -0.40391263 0.50364679 -0.7636342 -0.46623132 0.14545101\n\t\t -0.87258524 -0.88933992 0.15094425 -0.43153173 -0.88866854 0.15659018 -0.43092135\n\t\t -0.88500619 -0.20801446 -0.41645554 -0.36371949 -0.2674644 -0.89223915 -0.38871428\n\t\t 0.13013072 -0.91210669 -0.46623132 0.14545101 -0.87258524 -0.46623132 0.14545101\n\t\t -0.87258524 -0.44657725 -0.26252043 -0.85534227 -0.36371949 -0.2674644 -0.89223915\n\t\t -0.88500619 -0.20801446 -0.41645554 -0.88323611 -0.21878749 -0.41468549 -0.88933992\n\t\t 0.15094425 -0.43153173 -0.78423399 -0.55327028 -0.28080079 -0.88323611 -0.21878749\n\t\t -0.41468549 -0.88500619 -0.20801446 -0.41645554 -0.88500619 -0.20801446 -0.41645554\n\t\t -0.78810984 -0.54371798 -0.28849143 -0.78423399 -0.55327028 -0.28080079 -0.33396384\n\t\t -0.62843734 -0.70247501 -0.25672153 -0.61900705 -0.74221009 -0.36371949 -0.2674644\n\t\t -0.89223915 -0.36371949 -0.2674644 -0.89223915 -0.44657725 -0.26252043 -0.85534227\n\t\t -0.33396384 -0.62843734 -0.70247501 -0.78423399 -0.55327028 -0.28080079 -0.78810984\n\t\t -0.54371798 -0.28849143 -0.62831485 -0.77587223 -0.056337114 -0.081331559 -0.8625142\n\t\t -0.49943534 -0.25672153 -0.61900705 -0.74221009 -0.33396384 -0.62843734 -0.70247501\n\t\t -0.33396384 -0.62843734 -0.70247501 -0.15646812 -0.88067275 -0.44709611 -0.081331559\n\t\t -0.8625142 -0.49943534 -0.62831485 -0.77587223 -0.056337114 -0.61760283 -0.78521091\n\t\t -0.044343334 -0.78423399 -0.55327028 -0.28080079 -0.474471 -0.86623752 0.15634638;\n\tsetAttr \".n[3154:3319]\" -type \"float3\"  -0.61760283 -0.78521091 -0.044343334\n\t\t -0.62831485 -0.77587223 -0.056337114 -0.62831485 -0.77587223 -0.056337114 -0.48475572\n\t\t -0.86144614 0.1512498 -0.474471 -0.86623752 0.15634638 -0.0022275497 -0.9753105 -0.22067927\n\t\t 0.072359681 -0.95648062 -0.28260133 -0.081331559 -0.8625142 -0.49943534 -0.081331559\n\t\t -0.8625142 -0.49943534 -0.15646812 -0.88067275 -0.44709611 -0.0022275497 -0.9753105\n\t\t -0.22067927 0.65559876 -0.46864206 -0.5920285 0.6540423 -0.46464413 -0.59691149 0.58061475\n\t\t -0.42548895 -0.6941129 0.58061475 -0.42548895 -0.6941129 0.58091992 -0.43021932 -0.69090849\n\t\t 0.65559876 -0.46864206 -0.5920285 0.6540423 -0.46464413 -0.59691149 0.65559876 -0.46864206\n\t\t -0.5920285 0.67860967 -0.47029006 -0.5641346 0.67860967 -0.47029006 -0.5641346 0.6789149\n\t\t -0.46839792 -0.56538582 0.6540423 -0.46464413 -0.59691149 0.58091992 -0.43021932\n\t\t -0.69090849 0.58061475 -0.42548895 -0.6941129 0.49217209 -0.32206175 -0.80870998\n\t\t 0.49217209 -0.32206175 -0.80870998 0.49012735 -0.31870469 -0.81127352 0.58091992\n\t\t -0.43021932 -0.69090849 0.49012735 -0.31870469 -0.81127352 0.49217209 -0.32206175\n\t\t -0.80870998 0.43845949 -0.1570787 -0.88488418 0.43845949 -0.1570787 -0.88488418 0.43720824\n\t\t -0.14596996 -0.8874172 0.49012735 -0.31870469 -0.81127352 0.43720824 -0.14596996\n\t\t -0.8874172 0.43845949 -0.1570787 -0.88488418 0.42100284 0.031708796 -0.90649128 0.42100284\n\t\t 0.031708796 -0.90649128 0.42039245 0.043733086 -0.90624714 0.43720824 -0.14596996\n\t\t -0.8874172 0.42039245 0.043733086 -0.90624714 0.42100284 0.031708796 -0.90649128\n\t\t 0.44334233 0.21314134 -0.87063205 0.44334233 0.21314134 -0.87063205 0.44187742 0.22077097\n\t\t -0.86947232 0.42039245 0.043733086 -0.90624714 0.44187742 0.22077097 -0.86947232\n\t\t 0.44334233 0.21314134 -0.87063205 0.49922165 0.36194962 -0.78722495 0.49922165 0.36194962\n\t\t -0.78722495 0.49244654 0.3602711 -0.79223001 0.44187742 0.22077097 -0.86947232 0.49244654\n\t\t 0.3602711 -0.79223001 0.49922165 0.36194962 -0.78722495 0.61272001 0.44788978 -0.65108192\n\t\t 0.61272001 0.44788978 -0.65108192 0.60252678 0.44309837 -0.66374713 0.49244654 0.3602711\n\t\t -0.79223001 0.60252678 0.44309837 -0.66374713 0.61272001 0.44788978 -0.65108192 0.72804946\n\t\t 0.45551947 -0.51225322 0.72804946 0.45551947 -0.51225322 0.7284767 0.45048392 -0.51606804\n\t\t 0.60252678 0.44309837 -0.66374713 0.7284767 0.45048392 -0.51606804 0.72804946 0.45551947\n\t\t -0.51225322 0.77394927 0.43592659 -0.45924255 0.77394927 0.43592659 -0.45924255 0.7792595\n\t\t 0.42796126 -0.45777768 0.7284767 0.45048392 -0.51606804 -0.14996766 -0.98004097 -0.13040552\n\t\t -0.064485304 -0.99591053 -0.062898576 -0.064424269 -0.99591053 -0.062929094 -0.064424269\n\t\t -0.99591053 -0.062929094 -0.1376687 -0.98303175 -0.12115841 -0.14996766 -0.98004097\n\t\t -0.13040552 -0.14996766 -0.98004097 -0.13040552 -0.1376687 -0.98303175 -0.12115841\n\t\t -0.36344466 -0.88189352 -0.30021051 -0.36344466 -0.88189352 -0.30021051 -0.3874017\n\t\t -0.86550504 -0.31742296 -0.14996766 -0.98004097 -0.13040552 -0.62465268 -0.59736955\n\t\t -0.50288391 -0.3874017 -0.86550504 -0.31742296 -0.36344466 -0.88189352 -0.30021051\n\t\t -0.36344466 -0.88189352 -0.30021051 -0.6111635 -0.61778641 -0.49473551 -0.62465268\n\t\t -0.59736955 -0.50288391 -0.62465268 -0.59736955 -0.50288391 -0.6111635 -0.61778641\n\t\t -0.49473551 -0.7564317 -0.24478924 -0.60652488 -0.7564317 -0.24478924 -0.60652488\n\t\t -0.76076537 -0.22898066 -0.60728782 -0.62465268 -0.59736955 -0.50288391 -0.76909703\n\t\t 0.15039493 -0.62114322 -0.76076537 -0.22898066 -0.60728782 -0.7564317 -0.24478924\n\t\t -0.60652488 -0.7564317 -0.24478924 -0.60652488 -0.77388841 0.14563404 -0.61629081\n\t\t -0.76909703 0.15039493 -0.62114322 -0.76909703 0.15039493 -0.62114322 -0.77388841\n\t\t 0.14563404 -0.61629081 -0.64537507 0.48615962 -0.58915991 -0.64537507 0.48615962\n\t\t -0.58915991 -0.6364637 0.4879297 -0.59733886 -0.76909703 0.15039493 -0.62114322 -0.37382147\n\t\t 0.72682863 -0.576159 -0.6364637 0.4879297 -0.59733886 -0.64537507 0.48615962 -0.58915991\n\t\t -0.64537507 0.48615962 -0.58915991 -0.4119696 0.73155904 -0.54316849 -0.37382147\n\t\t 0.72682863 -0.576159 -0.37382147 0.72682863 -0.576159 -0.4119696 0.73155904 -0.54316849\n\t\t -0.11941921 0.92123169 -0.37015906 -0.11941921 0.92123169 -0.37015906 -0.02832146\n\t\t 0.91680652 -0.39829713 -0.37382147 0.72682863 -0.576159 0.19559284 0.96911532 -0.15002906\n\t\t -0.02832146 0.91680652 -0.39829713 -0.11941921 0.92123169 -0.37015906 -0.11941921\n\t\t 0.92123169 -0.37015906 0.15912321 0.97711116 -0.14099559 0.19559284 0.96911532 -0.15002906\n\t\t 0.19559284 0.96911532 -0.15002906 0.15912321 0.97711116 -0.14099559 0.26068881 0.96465963\n\t\t -0.037965097 0.26068881 0.96465963 -0.037965097 0.28925413 0.95617557 -0.045350578\n\t\t 0.19559284 0.96911532 -0.15002906 -0.75527203 -0.24185947 -0.60908842 -0.7564317\n\t\t -0.24478924 -0.60652488 -0.6111635 -0.61778641 -0.49473551 -0.77388841 0.14563404\n\t\t -0.61629081 -0.7564317 -0.24478924 -0.60652488 -0.75527203 -0.24185947 -0.60908842\n\t\t -0.6111635 -0.61778641 -0.49473551 -0.60951549 -0.61693192 -0.49784839 -0.75527203\n\t\t -0.24185947 -0.60908842 -0.75527203 -0.24185947 -0.60908842 -0.77059245 0.10232828\n\t\t -0.629017 -0.77388841 0.14563404 -0.61629081 -0.64537507 0.48615962 -0.58915991 -0.77388841\n\t\t 0.14563404 -0.61629081 -0.77059245 0.10232828 -0.629017 -0.77059245 0.10232828 -0.629017\n\t\t -0.7337566 0.28723991 -0.6156804 -0.64537507 0.48615962 -0.58915991 -0.36204082 -0.88183242\n\t\t -0.30210266 -0.60951549 -0.61693192 -0.49784839 -0.6111635 -0.61778641 -0.49473551\n\t\t -0.6111635 -0.61778641 -0.49473551 -0.36344466 -0.88189352 -0.30021051 -0.36204082\n\t\t -0.88183242 -0.30210266 -0.36204082 -0.88183242 -0.30210266 -0.36344466 -0.88189352\n\t\t -0.30021051 -0.1376687 -0.98303175 -0.12115841 -0.1376687 -0.98303175 -0.12115841\n\t\t -0.13678366 -0.98300123 -0.12222656 -0.36204082 -0.88183242 -0.30210266 -0.063600264\n\t\t -0.99591053 -0.063875169 -0.13678366 -0.98300123 -0.12222656 -0.1376687 -0.98303175\n\t\t -0.12115841 -0.1376687 -0.98303175 -0.12115841 -0.064424269 -0.99591053 -0.062929094;\n\tsetAttr \".n[3320:3485]\" -type \"float3\"  -0.063600264 -0.99591053 -0.063875169\n\t\t -0.07232856 -0.98333687 -0.16656995 -0.021759389 -0.99557483 -0.091402858 0.050020143\n\t\t -0.98818934 -0.14481026 0.050020143 -0.98818934 -0.14481026 -0.0022275497 -0.9753105\n\t\t -0.22067927 -0.07232856 -0.98333687 -0.16656995 -0.07232856 -0.98333687 -0.16656995\n\t\t -0.0022275497 -0.9753105 -0.22067927 -0.15646812 -0.88067275 -0.44709611 -0.15646812\n\t\t -0.88067275 -0.44709611 -0.22980411 -0.88784456 -0.39857167 -0.07232856 -0.98333687\n\t\t -0.16656995 -0.40549922 -0.6479997 -0.64467293 -0.22980411 -0.88784456 -0.39857167\n\t\t -0.15646812 -0.88067275 -0.44709611 -0.15646812 -0.88067275 -0.44709611 -0.33396384\n\t\t -0.62843734 -0.70247501 -0.40549922 -0.6479997 -0.64467293 -0.40549922 -0.6479997\n\t\t -0.64467293 -0.33396384 -0.62843734 -0.70247501 -0.44657725 -0.26252043 -0.85534227\n\t\t -0.44657725 -0.26252043 -0.85534227 -0.50706488 -0.53727859 -0.67390966 -0.40549922\n\t\t -0.6479997 -0.64467293 -0.55351424 0.2321846 -0.79976803 -0.58436847 0.15408772 -0.79671621\n\t\t -0.44657725 -0.26252043 -0.85534227 -0.44657725 -0.26252043 -0.85534227 -0.46623132\n\t\t 0.14545101 -0.87258524 -0.55351424 0.2321846 -0.79976803 -0.55351424 0.2321846 -0.79976803\n\t\t -0.46623132 0.14545101 -0.87258524 -0.40391263 0.50364679 -0.7636342 -0.40391263\n\t\t 0.50364679 -0.7636342 -0.47639409 0.51564056 -0.71211898 -0.55351424 0.2321846 -0.79976803\n\t\t -0.35999659 0.77120256 -0.52497947 -0.47639409 0.51564056 -0.71211898 -0.40391263\n\t\t 0.50364679 -0.7636342 -0.40391263 0.50364679 -0.7636342 -0.2884917 0.76262689 -0.57890564\n\t\t -0.35999659 0.77120256 -0.52497947 -0.35999659 0.77120256 -0.52497947 -0.2884917\n\t\t 0.76262689 -0.57890564 -0.11911403 0.93819994 -0.3248696 -0.11911403 0.93819994 -0.3248696\n\t\t -0.19406749 0.94451731 -0.2648702 -0.35999659 0.77120256 -0.52497947 -0.014344009\n\t\t 0.99981689 0.011902144 -0.19406749 0.94451731 -0.2648702 -0.11911403 0.93819994 -0.3248696\n\t\t -0.11911403 0.93819994 -0.3248696 0.066102788 0.99652088 -0.050111465 -0.014344009\n\t\t 0.99981689 0.011902144 -0.014344009 0.99981689 0.011902144 0.066102788 0.99652088\n\t\t -0.050111465 0.14154454 0.98809785 0.059999317 0.14154454 0.98809785 0.059999317\n\t\t 0.057649158 0.99087495 0.1217993 -0.014344009 0.99981689 0.011902144 -0.42991403\n\t\t -0.66454071 -0.6111331 -0.40549922 -0.6479997 -0.64467293 -0.50706488 -0.53727859\n\t\t -0.67390966 -0.50706488 -0.53727859 -0.67390966 -0.59111285 -0.61232364 -0.52494884\n\t\t -0.42991403 -0.66454071 -0.6111331 -0.40549922 -0.6479997 -0.64467293 -0.42991403\n\t\t -0.66454071 -0.6111331 -0.22763729 -0.88335836 -0.40964988 -0.22763729 -0.88335836\n\t\t -0.40964988 -0.22980411 -0.88784456 -0.39857167 -0.40549922 -0.6479997 -0.64467293\n\t\t -0.22980411 -0.88784456 -0.39857167 -0.22763729 -0.88335836 -0.40964988 -0.064790487\n\t\t -0.98260444 -0.17392491 -0.064790487 -0.98260444 -0.17392491 -0.07232856 -0.98333687\n\t\t -0.16656995 -0.22980411 -0.88784456 -0.39857167 -0.07232856 -0.98333687 -0.16656995\n\t\t -0.064790487 -0.98260444 -0.17392491 -0.012512282 -0.9951781 -0.097048789 -0.012512282\n\t\t -0.9951781 -0.097048789 -0.021759389 -0.99557483 -0.091402858 -0.07232856 -0.98333687\n\t\t -0.16656995 -0.72646248 -0.47096184 0.50038153 -0.72676766 -0.4655906 0.50492883\n\t\t -0.74822217 -0.47190791 0.4662618 -0.24167578 -0.96887118 0.053285386 -0.17300913\n\t\t -0.97839296 0.11297959 -0.16653921 -0.97997993 0.10898166 -0.16653921 -0.97997993\n\t\t 0.10898166 -0.24353741 -0.968566 0.0501725 -0.24167578 -0.96887118 0.053285386 -0.24167578\n\t\t -0.96887118 0.053285386 -0.24353741 -0.968566 0.0501725 -0.51927221 -0.84618688 -0.1194799\n\t\t -0.51927221 -0.84618688 -0.1194799 -0.51139843 -0.85168022 -0.11447486 -0.24167578\n\t\t -0.96887118 0.053285386 -0.78063279 -0.54609847 -0.30390328 -0.51139843 -0.85168022\n\t\t -0.11447486 -0.51927221 -0.84618688 -0.1194799 -0.51927221 -0.84618688 -0.1194799\n\t\t -0.78804874 -0.53282291 -0.30823693 -0.78063279 -0.54609847 -0.30390328 -0.78063279\n\t\t -0.54609847 -0.30390328 -0.78804874 -0.53282291 -0.30823693 -0.89138454 -0.13345774\n\t\t -0.43308815 -0.89138454 -0.13345774 -0.43308815 -0.88967556 -0.15100588 -0.43082979\n\t\t -0.78063279 -0.54609847 -0.30390328 -0.85528129 0.2060912 -0.47535634 -0.88967556\n\t\t -0.15100588 -0.43082979 -0.89138454 -0.13345774 -0.43308815 -0.89138454 -0.13345774\n\t\t -0.43308815 -0.85113078 0.21930571 -0.47688225 -0.85528129 0.2060912 -0.47535634\n\t\t -0.85528129 0.2060912 -0.47535634 -0.85113078 0.21930571 -0.47688225 -0.71504885\n\t\t 0.53068608 -0.45500049 -0.71504885 0.53068608 -0.45500049 -0.71907729 0.52137792\n\t\t -0.45939514 -0.85528129 0.2060912 -0.47535634 -0.61729813 0.67564905 -0.40296647\n\t\t -0.71907729 0.52137792 -0.45939514 -0.71504885 0.53068608 -0.45500049 -0.71504885\n\t\t 0.53068608 -0.45500049 -0.61867148 0.67720556 -0.3982361 -0.61729813 0.67564905 -0.40296647\n\t\t -0.9119541 -0.04263467 -0.40803248 -0.90679646 -0.051729184 -0.4183172 -0.90887171\n\t\t -0.04809748 -0.41422772 -0.90887171 -0.04809748 -0.41422772 -0.91387677 -0.03912504\n\t\t -0.40403455 -0.9119541 -0.04263467 -0.40803248 -0.78084671 0.42921206 -0.45390183\n\t\t -0.77950388 0.4399851 -0.44578388 -0.78124344 0.42561087 -0.45655695 -0.78124344\n\t\t 0.42561087 -0.45655695 -0.78237265 0.41474628 -0.46455279 -0.78084671 0.42921206\n\t\t -0.45390183 -0.30893913 0.8828088 -0.35377061 -0.31885764 0.88055044 -0.35056618\n\t\t -0.096164122 0.95733511 -0.27246931 -0.096164122 0.95733511 -0.27246931 -0.14008026\n\t\t 0.94604319 -0.29215375 -0.30893913 0.8828088 -0.35377061 0.11636678 0.97567683 -0.18573572\n\t\t -0.14008026 0.94604319 -0.29215375 -0.096164122 0.95733511 -0.27246931 -0.096164122\n\t\t 0.95733511 -0.27246931 0.12704825 0.97531056 -0.1805781 0.11636678 0.97567683 -0.18573572\n\t\t 0.11636678 0.97567683 -0.18573572 0.12704825 0.97531056 -0.1805781 0.17914335 0.96963412\n\t\t -0.16629544 0.17914335 0.96963412 -0.16629544 0.18500291 0.96807772 -0.16907261 0.11636678\n\t\t 0.97567683 -0.18573572 0.43467516 -0.11609235 -0.89303261 0.43498033 -0.12582774\n\t\t -0.89156771 0.43922243 -0.075014427 -0.89519942 0.43922243 -0.075014427 -0.89519942\n\t\t 0.44148079 -0.061921984 -0.89510787 0.43467516 -0.11609235 -0.89303261;\n\tsetAttr \".n[3486:3651]\" -type \"float3\"  0.43498033 -0.12582774 -0.89156771 0.43467516\n\t\t -0.11609235 -0.89303261 0.43888673 -0.1565904 -0.88476211 0.43888673 -0.1565904 -0.88476211\n\t\t 0.43983281 -0.16525765 -0.88271737 0.43498033 -0.12582774 -0.89156771 0.44148079\n\t\t -0.061921984 -0.89510787 0.43922243 -0.075014427 -0.89519942 0.47483748 -0.034028061\n\t\t -0.87939084 0.47483748 -0.034028061 -0.87939084 0.48194832 -0.021790132 -0.87591171\n\t\t 0.44148079 -0.061921984 -0.89510787 0.48194832 -0.021790132 -0.87591171 0.47483748\n\t\t -0.034028061 -0.87939084 0.52717674 -0.036377963 -0.84896392 0.52717674 -0.036377963\n\t\t -0.84896392 0.5353862 -0.032105371 -0.84398937 0.48194832 -0.021790132 -0.87591171\n\t\t 0.5353862 -0.032105371 -0.84398937 0.52717674 -0.036377963 -0.84896392 0.56031984\n\t\t -0.08139275 -0.8242439 0.56031984 -0.08139275 -0.8242439 0.56413466 -0.0832849 -0.82143623\n\t\t 0.5353862 -0.032105371 -0.84398937 0.56413466 -0.0832849 -0.82143623 0.56031984 -0.08139275\n\t\t -0.8242439 0.54985207 -0.14923541 -0.82180244 0.54985207 -0.14923541 -0.82180244\n\t\t 0.54734951 -0.16129021 -0.82119203 0.56413466 -0.0832849 -0.82143623 0.50138867 -0.20758681\n\t\t -0.83993042 0.54734951 -0.16129021 -0.82119203 0.54985207 -0.14923541 -0.82180244\n\t\t 0.54985207 -0.14923541 -0.82180244 0.50093085 -0.20422977 -0.84102911 0.50138867\n\t\t -0.20758681 -0.83993042 0.50154126 -0.21198148 -0.83874017 0.50138867 -0.20758681\n\t\t -0.83993042 0.50093085 -0.20422977 -0.84102911 0.50093085 -0.20422977 -0.84102911\n\t\t 0.50077826 -0.20661022 -0.84054077 0.50154126 -0.21198148 -0.83874017 0.50154126\n\t\t -0.21198148 -0.83874017 0.50077826 -0.20661022 -0.84054077 0.54344314 -0.16156489\n\t\t -0.8237251 0.54344314 -0.16156489 -0.8237251 0.55439931 -0.16388428 -0.81591237 0.50154126\n\t\t -0.21198148 -0.83874017 0.55439931 -0.16388428 -0.81591237 0.54344314 -0.16156489\n\t\t -0.8237251 0.59492791 -0.1675465 -0.78609574 0.59492791 -0.1675465 -0.78609574 0.60231334\n\t\t -0.17639686 -0.77849668 0.55439931 -0.16388428 -0.81591237 0.60231334 -0.17639686\n\t\t -0.77849668 0.59492791 -0.1675465 -0.78609574 0.60798979 -0.20554203 -0.76686913\n\t\t 0.60798979 -0.20554203 -0.76686913 0.60853916 -0.2125918 -0.76448864 0.60231334 -0.17639686\n\t\t -0.77849668 0.60853916 -0.2125918 -0.76448864 0.60798979 -0.20554203 -0.76686913\n\t\t 0.60692167 -0.2361521 -0.75884277 0.60692167 -0.2361521 -0.75884277 0.60728788 -0.24198113\n\t\t -0.75670642 0.60853916 -0.2125918 -0.76448864 -0.43552968 0.13425085 0.89007235 -0.43723872\n\t\t 0.12656018 0.89037752 -0.43720824 0.15851307 0.88525039 -0.43720824 0.15851307 0.88525039\n\t\t -0.43443105 0.16403691 0.8856166 -0.43552968 0.13425085 0.89007235 -0.43723872 0.12656018\n\t\t 0.89037752 -0.43552968 0.13425085 0.89007235 -0.4299753 0.085604355 0.89877009 -0.4299753\n\t\t 0.085604355 0.89877009 -0.43852049 0.077913687 0.89532149 -0.43723872 0.12656018\n\t\t 0.89037752 -0.43852049 0.077913687 0.89532149 -0.4299753 0.085604355 0.89877009 -0.46263009\n\t\t 0.038453247 0.88567764 -0.46263009 0.038453247 0.88567764 -0.4755089 0.035859171\n\t\t 0.87896359 -0.43852049 0.077913687 0.89532149 -0.4755089 0.035859171 0.87896359 -0.46263009\n\t\t 0.038453247 0.88567764 -0.52003539 0.038514264 0.8532365 -0.52003539 0.038514264\n\t\t 0.8532365 -0.52900785 0.038819443 0.84768212 -0.4755089 0.035859171 0.87896359 -0.52900785\n\t\t 0.038819443 0.84768212 -0.52003539 0.038514264 0.8532365 -0.55699331 0.086367272\n\t\t 0.82598346 -0.55699331 0.086367272 0.82598346 -0.56114382 0.084993936 0.82332838\n\t\t -0.52900785 0.038819443 0.84768212 -0.56114382 0.084993936 0.82332838 -0.55699331\n\t\t 0.086367272 0.82598346 -0.54585409 0.16214474 0.82201606 -0.54585409 0.16214474 0.82201606\n\t\t -0.54972994 0.15008992 0.82171088 -0.56114382 0.084993936 0.82332838 -0.54972994\n\t\t 0.15008992 0.82171088 -0.54585409 0.16214474 0.82201606 -0.50193799 0.20889911 0.83925903\n\t\t -0.50193799 0.20889911 0.83925903 -0.50172436 0.20422977 0.84054077 -0.54972994 0.15008992\n\t\t 0.82171088 -0.50172436 0.20422977 0.84054077 -0.50193799 0.20889911 0.83925903 -0.50096136\n\t\t 0.20682386 0.84035766 -0.50096136 0.20682386 0.84035766 -0.50529504 0.20456548 0.83831292\n\t\t -0.50172436 0.20422977 0.84054077 -0.50529504 0.20456548 0.83831292 -0.50096136 0.20682386\n\t\t 0.84035766 -0.55323958 0.14810622 0.81972718 -0.55323958 0.14810622 0.81972718 -0.55088967\n\t\t 0.16690563 0.81768245 -0.50529504 0.20456548 0.83831292 -0.55088967 0.16690563 0.81768245\n\t\t -0.55323958 0.14810622 0.81972718 -0.59987187 0.16248043 0.78337961 -0.59987187 0.16248043\n\t\t 0.78337961 -0.59318835 0.17822798 0.78505814 -0.55088967 0.16690563 0.81768245 -0.59318835\n\t\t 0.17822798 0.78505814 -0.59987187 0.16248043 0.78337961 -0.61000401 0.2031921 0.76589251\n\t\t -0.61000401 0.2031921 0.76589251 -0.60609764 0.21106587 0.76683861 -0.59318835 0.17822798\n\t\t 0.78505814 -0.60609764 0.21106587 0.76683861 -0.61000401 0.2031921 0.76589251 -0.60255748\n\t\t 0.23578587 0.76241338 -0.60255748 0.23578587 0.76241338 -0.60011601 0.24173699 0.76247442\n\t\t -0.60609764 0.21106587 0.76683861 -0.32291615 -0.71623898 0.61861026 -0.41404441\n\t\t -0.68459123 0.59987187 -0.39585534 -0.75438708 0.52360612 -0.39585534 -0.75438708\n\t\t 0.52360612 -0.30194989 -0.78749967 0.53721738 -0.32291615 -0.71623898 0.61861026\n\t\t -0.30194989 -0.78749967 0.53721738 -0.39585534 -0.75438708 0.52360612 -0.3771475\n\t\t -0.78844577 0.48585474 -0.3771475 -0.78844577 0.48585474 -0.28128883 -0.82329786\n\t\t 0.49296555 -0.30194989 -0.78749967 0.53721738 -0.64171255 -0.63859993 0.42469564\n\t\t -0.3771475 -0.78844577 0.48585474 -0.39585534 -0.75438708 0.52360612 -0.39585534\n\t\t -0.75438708 0.52360612 -0.65370631 -0.60274071 0.45750302 -0.64171255 -0.63859993\n\t\t 0.42469564 -0.65370631 -0.60274071 0.45750302 -0.39585534 -0.75438708 0.52360612\n\t\t -0.41404441 -0.68459123 0.59987187 -0.41404441 -0.68459123 0.59987187 -0.66359431\n\t\t -0.5364545 0.52131724 -0.65370631 -0.60274071 0.45750302 -0.90432435 -0.30973259\n\t\t 0.29364914 -0.65370631 -0.60274071 0.45750302 -0.66359431 -0.5364545 0.52131724 -0.66359431\n\t\t -0.5364545 0.52131724;\n\tsetAttr \".n[3652:3817]\" -type \"float3\"  -0.89977717 -0.27008906 0.34263134 -0.90432435\n\t\t -0.30973259 0.29364914 -0.65370631 -0.60274071 0.45750302 -0.90432435 -0.30973259\n\t\t 0.29364914 -0.90639961 -0.3313702 0.26187935 -0.90639961 -0.3313702 0.26187935 -0.64171255\n\t\t -0.63859993 0.42469564 -0.65370631 -0.60274071 0.45750302 -0.97659224 -0.1512195\n\t\t 0.15274516 -0.90639961 -0.3313702 0.26187935 -0.90432435 -0.30973259 0.29364914 -0.90432435\n\t\t -0.30973259 0.29364914 -0.97277743 -0.13928676 0.18515581 -0.97659224 -0.1512195\n\t\t 0.15274516 -0.97277743 -0.13928676 0.18515581 -0.90432435 -0.30973259 0.29364914\n\t\t -0.89977717 -0.27008906 0.34263134 -0.89977717 -0.27008906 0.34263134 -0.99530017\n\t\t 0.075197309 0.06048768 -0.97277743 -0.13928676 0.18515581 -0.89483333 0.39564165\n\t\t -0.20664085 -0.93853587 0.31611043 -0.13849303 -0.99530017 0.075197309 0.06048768\n\t\t -0.99530017 0.075197309 0.06048768 -0.9059726 0.36436018 -0.21536915 -0.89483333\n\t\t 0.39564165 -0.20664085 -0.93853587 0.31611043 -0.13849303 -0.89483333 0.39564165\n\t\t -0.20664085 -0.88268697 0.41495988 -0.2205573 -0.88268697 0.41495988 -0.2205573 -0.92843419\n\t\t 0.3345131 -0.16144295 -0.93853587 0.31611043 -0.13849303 -0.82265711 0.49494889 -0.27970216\n\t\t -0.88268697 0.41495988 -0.2205573 -0.89483333 0.39564165 -0.20664085 -0.89483333\n\t\t 0.39564165 -0.20664085 -0.82937121 0.48426741 -0.27854246 -0.82265711 0.49494889\n\t\t -0.27970216 -0.82937121 0.48426741 -0.27854246 -0.89483333 0.39564165 -0.20664085\n\t\t -0.9059726 0.36436018 -0.21536915 -0.9059726 0.36436018 -0.21536915 -0.82268757 0.47901821\n\t\t -0.30607015 -0.82937121 0.48426741 -0.27854246 -0.89465004 -0.24253085 0.37516406\n\t\t -0.89977717 -0.27008906 0.34263134 -0.66359431 -0.5364545 0.52131724 -0.66359431\n\t\t -0.5364545 0.52131724 -0.66930127 -0.48600745 0.56196791 -0.89465004 -0.24253085\n\t\t 0.37516406 -0.66930127 -0.48600745 0.56196791 -0.66359431 -0.5364545 0.52131724 -0.41404441\n\t\t -0.68459123 0.59987187 -0.41404441 -0.68459123 0.59987187 -0.42222336 -0.62987155\n\t\t 0.65187544 -0.66930127 -0.48600745 0.56196791 -0.42222336 -0.62987155 0.65187544\n\t\t -0.41404441 -0.68459123 0.59987187 -0.32291615 -0.71623898 0.61861026 -0.32291615\n\t\t -0.71623898 0.61861026 -0.33121717 -0.66359454 0.67073584 -0.42222336 -0.62987155\n\t\t 0.65187544 -0.67210901 -0.47016832 0.57197797 -0.66930127 -0.48600745 0.56196791\n\t\t -0.42222336 -0.62987155 0.65187544 -0.42222336 -0.62987155 0.65187544 -0.42374933\n\t\t -0.60863072 0.67079687 -0.67210901 -0.47016832 0.57197797 -0.42374933 -0.60863072\n\t\t 0.67079687 -0.42222336 -0.62987155 0.65187544 -0.33121717 -0.66359454 0.67073584\n\t\t -0.33121717 -0.66359454 0.67073584 -0.3322548 -0.64156014 0.69133586 -0.42374933\n\t\t -0.60863072 0.67079687 -0.89336824 -0.24088284 0.37925354 -0.89465004 -0.24253085\n\t\t 0.37516406 -0.66930127 -0.48600745 0.56196791 -0.66930127 -0.48600745 0.56196791\n\t\t -0.67210901 -0.47016832 0.57197797 -0.89336824 -0.24088284 0.37925354 -0.89465004\n\t\t -0.24253085 0.37516406 -0.89336824 -0.24088284 0.37925354 -0.99270606 0.032227248\n\t\t 0.11600085 -0.99270606 0.032227248 0.11600085 -0.99337751 0.059266649 0.098391667\n\t\t -0.89465004 -0.24253085 0.37516406 -0.89977717 -0.27008906 0.34263134 -0.89465004\n\t\t -0.24253085 0.37516406 -0.99337751 0.059266649 0.098391667 -0.99337751 0.059266649\n\t\t 0.098391667 -0.99530017 0.075197309 0.06048768 -0.89977717 -0.27008906 0.34263134\n\t\t -0.99530017 0.075197309 0.06048768 -0.99337751 0.059266649 0.098391667 -0.93578917\n\t\t 0.30903012 -0.16959138 -0.93578917 0.30903012 -0.16959138 -0.9059726 0.36436018 -0.21536915\n\t\t -0.99530017 0.075197309 0.06048768 -0.9059726 0.36436018 -0.21536915 -0.93578917\n\t\t 0.30903012 -0.16959138 -0.8820461 0.38666922 -0.26911226 -0.8820461 0.38666922 -0.26911226\n\t\t -0.82268757 0.47901821 -0.30607015 -0.9059726 0.36436018 -0.21536915 -0.91067243\n\t\t 0.33960968 -0.23514515 -0.8820461 0.38666922 -0.26911226 -0.93578917 0.30903012 -0.16959138\n\t\t -0.93578917 0.30903012 -0.16959138 -0.95434439 0.26557177 -0.13653983 -0.91067243\n\t\t 0.33960968 -0.23514515 -0.95434439 0.26557177 -0.13653983 -0.93578917 0.30903012\n\t\t -0.16959138 -0.99337751 0.059266649 0.098391667 -0.99337751 0.059266649 0.098391667\n\t\t -0.99270606 0.032227248 0.11600085 -0.95434439 0.26557177 -0.13653983 -0.67210901\n\t\t -0.47016832 0.57197797 -0.42374933 -0.60863072 0.67079687 -0.42133835 -0.6030153\n\t\t 0.67735839 -0.42133835 -0.6030153 0.67735839 -0.67915881 -0.46241665 0.56996375 -0.67210901\n\t\t -0.47016832 0.57197797 -0.89336824 -0.24088284 0.37925354 -0.67210901 -0.47016832\n\t\t 0.57197797 -0.67915881 -0.46241665 0.56996375 -0.42374933 -0.60863072 0.67079687\n\t\t -0.3322548 -0.64156014 0.69133586 -0.33249894 -0.63487661 0.69737852 -0.33249894\n\t\t -0.63487661 0.69737852 -0.42133835 -0.6030153 0.67735839 -0.42374933 -0.60863072\n\t\t 0.67079687 -0.99270606 0.032227248 0.11600085 -0.89336824 -0.24088284 0.37925354\n\t\t -0.90173036 -0.23319219 0.36393327 -0.67915881 -0.46241665 0.56996375 -0.90173036\n\t\t -0.23319219 0.36393327 -0.89336824 -0.24088284 0.37925354 -0.90173036 -0.23319219\n\t\t 0.36393327 -0.99502546 0.032562949 0.093844414 -0.99270606 0.032227248 0.11600085\n\t\t -0.95434439 0.26557177 -0.13653983 -0.99270606 0.032227248 0.11600085 -0.99502546\n\t\t 0.032562949 0.093844414 -0.91067243 0.33960968 -0.23514515 -0.95434439 0.26557177\n\t\t -0.13653983 -0.95641965 0.25110599 -0.14889982 -0.99502546 0.032562949 0.093844414\n\t\t -0.95641965 0.25110599 -0.14889982 -0.95434439 0.26557177 -0.13653983 -0.95641965\n\t\t 0.25110599 -0.14889982 -0.92071301 0.31690386 -0.22766811 -0.91067243 0.33960968\n\t\t -0.23514515 -0.68471336 0.18997745 -0.7035737 -0.54390091 0.26047525 -0.79766226\n\t\t -0.54286337 0.30274338 -0.78331858 -0.54286337 0.30274338 -0.78331858 -0.67766356\n\t\t 0.22025181 -0.70159 -0.68471336 0.18997745 -0.7035737 -0.67766356 0.22025181 -0.70159\n\t\t -0.54286337 0.30274338 -0.78331858 -0.53483701 0.34098306 -0.77306437 -0.25251028\n\t\t 0.42875439 -0.86739713 -0.54286337 0.30274338 -0.78331858 -0.54390091 0.26047525\n\t\t -0.79766226 -0.53483701 0.34098306 -0.77306437 -0.54286337 0.30274338 -0.78331858;\n\tsetAttr \".n[3818:3983]\" -type \"float3\"  -0.25251028 0.42875439 -0.86739713 -0.54390091\n\t\t 0.26047525 -0.79766226 -0.24066909 0.36973163 -0.89739674 -0.25251028 0.42875439\n\t\t -0.86739713 -0.068331093 0.4865565 -0.87093729 -0.25251028 0.42875439 -0.86739713\n\t\t -0.24066909 0.36973163 -0.89739674 -0.24066909 0.36973163 -0.89739674 -0.04544219\n\t\t 0.42222351 -0.90533167 -0.068331093 0.4865565 -0.87093729 -0.25251028 0.42875439\n\t\t -0.86739713 -0.068331093 0.4865565 -0.87093729 -0.084505923 0.5427106 -0.83562738\n\t\t -0.084505923 0.5427106 -0.83562738 -0.25540957 0.49229392 -0.83208722 -0.25251028\n\t\t 0.42875439 -0.86739713 -0.25251028 0.42875439 -0.86739713 -0.25540957 0.49229392\n\t\t -0.83208722 -0.53483701 0.34098306 -0.77306437 -0.016022373 0.50700396 -0.86178172\n\t\t -0.068331093 0.4865565 -0.87093729 -0.04544219 0.42222351 -0.90533167 -0.04544219\n\t\t 0.42222351 -0.90533167 0.010162528 0.44102293 -0.89742732 -0.016022373 0.50700396\n\t\t -0.86178172 -0.068331093 0.4865565 -0.87093729 -0.016022373 0.50700396 -0.86178172\n\t\t -0.04229882 0.53907889 -0.84115124 -0.04229882 0.53907889 -0.84115124 -0.084505923\n\t\t 0.5427106 -0.83562738 -0.068331093 0.4865565 -0.87093729 -0.28128883 -0.82329786\n\t\t 0.49296555 -0.3771475 -0.78844577 0.48585474 -0.36103374 -0.80632961 0.46842867 -0.36103374\n\t\t -0.80632961 0.46842867 -0.26596853 -0.83657336 0.4788965 -0.28128883 -0.82329786\n\t\t 0.49296555 -0.62791812 -0.66557831 0.40333268 -0.36103374 -0.80632961 0.46842867\n\t\t -0.3771475 -0.78844577 0.48585474 -0.3771475 -0.78844577 0.48585474 -0.64171255 -0.63859993\n\t\t 0.42469564 -0.62791812 -0.66557831 0.40333268 -0.90520936 -0.35355717 0.23566397\n\t\t -0.62791812 -0.66557831 0.40333268 -0.64171255 -0.63859993 0.42469564 -0.64171255\n\t\t -0.63859993 0.42469564 -0.90639961 -0.3313702 0.26187935 -0.90520936 -0.35355717\n\t\t 0.23566397 -0.98037654 -0.15424083 0.1226539 -0.90520936 -0.35355717 0.23566397 -0.90639961\n\t\t -0.3313702 0.26187935 -0.90639961 -0.3313702 0.26187935 -0.97659224 -0.1512195 0.15274516\n\t\t -0.98037654 -0.15424083 0.1226539 -0.87243277 0.43024966 -0.23169655 -0.92468041\n\t\t 0.33924344 -0.17276531 -0.92843419 0.3345131 -0.16144295 -0.92843419 0.3345131 -0.16144295\n\t\t -0.88268697 0.41495988 -0.2205573 -0.87243277 0.43024966 -0.23169655 -0.81530213\n\t\t 0.50007606 -0.29178751 -0.87243277 0.43024966 -0.23169655 -0.88268697 0.41495988\n\t\t -0.2205573 -0.88268697 0.41495988 -0.2205573 -0.82265711 0.49494889 -0.27970216 -0.81530213\n\t\t 0.50007606 -0.29178751 -0.97811818 -0.13803551 0.1556139 -0.96899313 -0.12241002\n\t\t 0.21451461 -0.97076321 -0.11767966 0.20914336 -0.97076321 -0.11767966 0.20914336\n\t\t -0.97085476 -0.21317208 0.10925628 -0.97811818 -0.13803551 0.1556139 -0.97076321\n\t\t -0.11767966 0.20914336 -0.96899313 -0.12241002 0.21451461 -0.97598189 -0.13550247\n\t\t 0.17050692 -0.97598189 -0.13550247 0.17050692 -0.97293001 -0.12955135 0.19125952\n\t\t -0.97076321 -0.11767966 0.20914336 -0.97811818 -0.13803551 0.1556139 -0.97085476\n\t\t -0.21317208 0.10925628 -0.9862361 -0.14673328 0.075960577 -0.9862361 -0.14673328\n\t\t 0.075960577 -0.98376411 -0.13931727 0.11294902 -0.97811818 -0.13803551 0.1556139\n\t\t -0.99627674 -0.077059545 -0.038239684 -0.98376411 -0.13931727 0.11294902 -0.9862361\n\t\t -0.14673328 0.075960577 -0.9862361 -0.14673328 0.075960577 -0.98916584 -0.14600086\n\t\t -0.013092429 -0.99627674 -0.077059545 -0.038239684 -0.99932861 -0.014435567 -0.03274636\n\t\t -0.97293001 -0.12955135 0.19125952 -0.97598189 -0.13550247 0.17050692 -0.97598189\n\t\t -0.13550247 0.17050692 -0.98702955 -0.15326425 -0.047364715 -0.99932861 -0.014435567\n\t\t -0.03274636 -0.98272645 -0.10959228 -0.14896083 -0.99627674 -0.077059545 -0.038239684\n\t\t -0.98916584 -0.14600086 -0.013092429 -0.98916584 -0.14600086 -0.013092429 -0.97302157\n\t\t -0.22855341 -0.031128863 -0.98272645 -0.10959228 -0.14896083 -0.98272645 -0.10959228\n\t\t -0.14896083 -0.97302157 -0.22855341 -0.031128863 -0.97100741 -0.045717046 -0.23459578\n\t\t -0.97100741 -0.045717046 -0.23459578 -0.96624655 -0.051790226 -0.25223547 -0.98272645\n\t\t -0.10959228 -0.14896083 -0.96624655 -0.051790226 -0.25223547 -0.97100741 -0.045717046\n\t\t -0.23459578 -0.98580891 0.028046193 -0.16537981 -0.98580891 0.028046193 -0.16537981\n\t\t -0.98867762 0.016296567 -0.14908291 -0.96624655 -0.051790226 -0.25223547 -0.98867762\n\t\t 0.016296567 -0.14908291 -0.98580891 0.028046193 -0.16537981 -0.99447614 -0.063814513\n\t\t -0.083132409 -0.99447614 -0.063814513 -0.083132409 -0.99746698 -0.023133345 -0.066957608\n\t\t -0.98867762 0.016296567 -0.14908291 -0.99746698 -0.023133345 -0.066957608 -0.99447614\n\t\t -0.063814513 -0.083132409 -0.99682605 -0.024537195 -0.075563833 -0.99682605 -0.024537195\n\t\t -0.075563833 -0.99932861 -0.014435567 -0.03274636 -0.98702955 -0.15326425 -0.047364715\n\t\t -0.99682605 -0.024537195 -0.075563833 -0.99398786 -0.016419273 -0.10797448 -0.99746698\n\t\t -0.023133345 -0.066957608 -0.98272645 -0.10959228 -0.14896083 -0.96624655 -0.051790226\n\t\t -0.25223547 -0.97762996 -0.066378079 -0.19943845 -0.97762996 -0.066378079 -0.19943845\n\t\t -0.98638874 -0.032838233 -0.16101566 -0.98272645 -0.10959228 -0.14896083 -0.99627674\n\t\t -0.077059545 -0.038239684 -0.98272645 -0.10959228 -0.14896083 -0.98638874 -0.032838233\n\t\t -0.16101566 -0.98638874 -0.032838233 -0.16101566 -0.97762996 -0.066378079 -0.19943845\n\t\t -0.98226875 -0.030579863 -0.18488114 -0.98226875 -0.030579863 -0.18488114 -0.97833186\n\t\t -0.048097488 -0.2013306 -0.98638874 -0.032838233 -0.16101566 -0.97833186 -0.048097488\n\t\t -0.2013306 -0.98226875 -0.030579863 -0.18488114 -0.99368262 -0.10379376 -0.042054497\n\t\t -0.99368262 -0.10379376 -0.042054497 -0.9548021 -0.0081182411 -0.29706717 -0.97833186\n\t\t -0.048097488 -0.2013306 -0.9477523 0.00082368293 -0.31891844 -0.98638874 -0.032838233\n\t\t -0.16101566 -0.97833186 -0.048097488 -0.2013306 -0.9477523 0.00082368293 -0.31891844\n\t\t -0.97833186 -0.048097488 -0.2013306 -0.9548021 -0.0081182411 -0.29706717 -0.9477523\n\t\t 0.00082368293 -0.31891844 -0.9778741 0.032959674 -0.20645772 -0.98638874 -0.032838233\n\t\t -0.16101566 -0.9778741 0.032959674 -0.20645772 -0.99664295 0.012970054 -0.080690935\n\t\t -0.98638874 -0.032838233 -0.16101566 -0.9548021 -0.0081182411 -0.29706717 -0.92306286\n\t\t -0.0099493479 -0.38447219 -0.9477523 0.00082368293 -0.31891844;\n\tsetAttr \".n[3984:4149]\" -type \"float3\"  -0.98638874 -0.032838233 -0.16101566\n\t\t -0.99664295 0.012970054 -0.080690935 -0.99627674 -0.077059545 -0.038239684 -0.99285865\n\t\t -0.033204451 -0.11444441 -0.99398786 -0.016419273 -0.10797448 -0.99682605 -0.024537195\n\t\t -0.075563833 -0.99682605 -0.024537195 -0.075563833 -0.99740595 -0.048890963 -0.052247684\n\t\t -0.99285865 -0.033204451 -0.11444441 -0.98702955 -0.15326425 -0.047364715 -0.99740595\n\t\t -0.048890963 -0.052247684 -0.99682605 -0.024537195 -0.075563833 -0.59480578 -1.2410007e-07\n\t\t 0.80382705 -0.59480578 -1.2410007e-07 0.80382705 -0.59480578 -1.2410007e-07 0.80382705\n\t\t -0.59480578 -1.2410007e-07 0.80382705 -0.59480578 -1.2410007e-07 0.80382705 -0.59480578\n\t\t -1.2410007e-07 0.80382705 -0.59480578 -1.2410007e-07 0.80382705 -0.59480578 -1.2410007e-07\n\t\t 0.80382705 -0.59480578 -1.240978e-07 0.80385756 -0.59480578 -1.240978e-07 0.80385756\n\t\t -0.59480578 -1.240978e-07 0.80385756 -0.59480578 -1.2410007e-07 0.80382705 -0.59480578\n\t\t -1.240978e-07 0.80385756 -0.59480578 -1.2410007e-07 0.80382705 -0.59480578 -1.240978e-07\n\t\t 0.80385756 -0.59480578 -1.2410007e-07 0.80382705 -0.59480578 -1.240978e-07 0.80385756\n\t\t -0.59480578 -1.240978e-07 0.80385756 -0.59480578 -1.240978e-07 0.80385756 -0.59480578\n\t\t -1.2410007e-07 0.80382705 -0.59480578 -1.2410007e-07 0.80382705 -0.59480578 -1.240978e-07\n\t\t 0.80385756 -0.59480578 -1.240978e-07 0.80385756 -0.59477526 -1.2408836e-07 0.80385756\n\t\t -0.59477526 -1.2408836e-07 0.80385756 -0.59480578 -1.240978e-07 0.80385756 -0.59477526\n\t\t -1.2408836e-07 0.80385756 -0.59477526 -1.2408836e-07 0.80385756 -0.59480578 -1.2410007e-07\n\t\t 0.80382705 -0.59480578 -1.2410007e-07 0.80382705 -0.59480578 -1.2410007e-07 0.80382705\n\t\t -0.59480578 -1.240978e-07 0.80385756 -0.59477526 -1.2408836e-07 0.80385756 -0.59477526\n\t\t -1.2408836e-07 0.80385756 -0.59477526 -1.2408836e-07 0.80385756 -0.59477526 -1.2408836e-07\n\t\t 0.80385756 -0.59477526 -1.2408836e-07 0.80385756 -0.59477526 -1.2408836e-07 0.80385756\n\t\t -0.59477526 -1.2408836e-07 0.80385756 -0.59474468 -1.2407665e-07 0.80388808 -0.59477526\n\t\t -1.2408836e-07 0.80385756 -0.59477526 -1.2408836e-07 0.80385756 -0.59477526 -1.2408836e-07\n\t\t 0.80385756 -0.59480578 -1.240978e-07 0.80385756 -0.59474468 -1.2407665e-07 0.80388808\n\t\t -0.59477526 -1.2408836e-07 0.80385756 -0.59480578 -1.240978e-07 0.80385756 -0.59480578\n\t\t -1.2410007e-07 0.80382705 -0.59480578 -1.240978e-07 0.80385756 -0.59480578 -1.2410007e-07\n\t\t 0.80382705 -0.59480578 -1.240978e-07 0.80385756 -0.59480578 -1.2410007e-07 0.80382705\n\t\t -0.59480578 -1.2410007e-07 0.80382705 -0.59477526 -1.2408836e-07 0.80385756 -0.59480578\n\t\t -1.2410007e-07 0.80382705 -0.59480578 -1.240978e-07 0.80385756 -0.59480578 -1.2410007e-07\n\t\t 0.80382705 -0.59480578 -1.2410007e-07 0.80382705 -0.59477526 -1.2408836e-07 0.80385756\n\t\t -0.59480578 -1.2410007e-07 0.80382705 -0.59483629 -1.241095e-07 0.80382705 -0.59477526\n\t\t -1.2408836e-07 0.80385756 -0.59477526 -1.2408836e-07 0.80385756 -0.59477526 -1.2408836e-07\n\t\t 0.80385756 -0.59486681 -1.2412121e-07 0.80379653 -0.59483629 -1.241095e-07 0.80382705\n\t\t -0.59480578 -1.2410007e-07 0.80382705 -0.59480578 -1.2410007e-07 0.80382705 -0.59480578\n\t\t -1.2410007e-07 0.80382705 -0.59480578 -1.2410007e-07 0.80382705 -0.59480578 -1.2410007e-07\n\t\t 0.80382705 -0.59480578 -1.2410007e-07 0.80382705 0.80385756 2.928233e-07 0.59480578\n\t\t 0.80385756 2.928233e-07 0.59480578 0.80385756 2.928233e-07 0.59480578 0.80385756\n\t\t 2.928233e-07 0.59480578 0.80385756 2.928233e-07 0.59480578 0.80385756 2.928233e-07\n\t\t 0.59480578 0.10699759 0.99108863 0.079164937 0.10699759 0.99108863 0.079164937 0.10699759\n\t\t 0.99108863 0.079164937 0.10699759 0.99108863 0.079164937 0.10699759 0.99108863 0.079164937\n\t\t 0.10699759 0.99108863 0.079164937 -0.80385756 -2.928233e-07 -0.59480578 -0.80385756\n\t\t -2.928233e-07 -0.59480578 -0.80385756 -2.928233e-07 -0.59480578 -0.80385756 -2.928233e-07\n\t\t -0.59480578 -0.80385756 -2.928233e-07 -0.59480578 -0.80385756 -2.928233e-07 -0.59480578\n\t\t -0.19080143 -0.97140419 -0.14117855 -0.19080143 -0.97140419 -0.14117855 -0.19080143\n\t\t -0.97140419 -0.14117855 -0.19080143 -0.97140419 -0.14117855 -0.19080143 -0.97140419\n\t\t -0.14117855 -0.19080143 -0.97140419 -0.14117855 0.59480578 2.4373759e-07 0.80382705\n\t\t 0.59480578 2.4373759e-07 0.80382705 0.59480578 2.4373759e-07 0.80382705 0.59480578\n\t\t 2.4373759e-07 0.80382705 0.59480578 2.4373759e-07 0.80382705 0.59480578 2.4373759e-07\n\t\t 0.80382705 0.59480578 2.4373986e-07 0.80385756 0.59480578 2.4373759e-07 0.80382705\n\t\t 0.59480578 2.4373759e-07 0.80382705 0.59480578 2.4373759e-07 0.80382705 0.59480578\n\t\t 2.4373986e-07 0.80385756 0.59480578 2.4373986e-07 0.80385756 0.59480578 2.4373986e-07\n\t\t 0.80385756 0.59480578 2.4373759e-07 0.80382705 0.59480578 2.4373986e-07 0.80385756\n\t\t 0.59480578 2.4373986e-07 0.80385756 0.59480578 2.4373986e-07 0.80385756 0.59480578\n\t\t 2.4373759e-07 0.80382705 0.59480578 2.4373759e-07 0.80382705 0.59480578 2.4373759e-07\n\t\t 0.80382705 0.59480578 2.4373986e-07 0.80385756 0.59477526 2.4373043e-07 0.80385756\n\t\t 0.59480578 2.4373986e-07 0.80385756 0.59480578 2.4373986e-07 0.80385756 0.59477526\n\t\t 2.4373043e-07 0.80385756 0.59480578 2.4373986e-07 0.80385756 0.59477526 2.4373043e-07\n\t\t 0.80385756 0.59480578 2.4373759e-07 0.80382705 0.59480578 2.4373759e-07 0.80382705\n\t\t 0.59477526 2.4373043e-07 0.80385756 0.59477526 2.4373043e-07 0.80385756 0.59480578\n\t\t 2.4373986e-07 0.80385756 0.59480578 2.4373759e-07 0.80382705 0.59477526 2.4373043e-07\n\t\t 0.80385756 0.59477526 2.4373043e-07 0.80385756 0.59477526 2.4373043e-07 0.80385756\n\t\t 0.59477526 2.4373043e-07 0.80385756 0.59477526 2.4373043e-07 0.80385756 0.59477526\n\t\t 2.4373043e-07 0.80385756 0.59474468 2.4372324e-07 0.80388808 0.59480578 2.4373986e-07\n\t\t 0.80385756 0.59477526 2.4373043e-07 0.80385756 0.59477526 2.4373043e-07 0.80385756\n\t\t 0.59477526 2.4373043e-07 0.80385756 0.59474468 2.4372324e-07 0.80388808 0.59480578\n\t\t 2.4373759e-07 0.80382705 0.59480578 2.4373986e-07 0.80385756 0.59477526 2.4373043e-07\n\t\t 0.80385756 0.59480578 2.4373986e-07 0.80385756 0.59480578 2.4373759e-07 0.80382705\n\t\t 0.59480578 2.4373986e-07 0.80385756 0.59477526 2.4373043e-07 0.80385756 0.59480578\n\t\t 2.4373759e-07 0.80382705 0.59480578 2.4373759e-07 0.80382705 0.59480578 2.4373759e-07\n\t\t 0.80382705 0.59477526 2.4373043e-07 0.80385756 0.59480578 2.4373759e-07 0.80382705\n\t\t 0.59480578 2.4373759e-07 0.80382705;\n\tsetAttr \".n[4150:4315]\" -type \"float3\"  0.59480578 2.4373986e-07 0.80385756 0.59480578\n\t\t 2.4373759e-07 0.80382705 0.59477526 2.4373043e-07 0.80385756 0.59477526 2.4373043e-07\n\t\t 0.80385756 0.59483629 2.4374702e-07 0.80382705 0.59483629 2.4374702e-07 0.80382705\n\t\t 0.59483629 2.4374475e-07 0.80379653 0.59477526 2.4373043e-07 0.80385756 0.59480578\n\t\t 2.4373759e-07 0.80382705 0.59480578 2.4373759e-07 0.80382705 0.59480578 2.4373759e-07\n\t\t 0.80382705 0.59480578 2.4373759e-07 0.80382705 0.59480578 2.4373759e-07 0.80382705\n\t\t 0.59480578 2.4373759e-07 0.80382705 -0.80385756 -2.0429543e-07 0.59480578 -0.80385756\n\t\t -2.0429543e-07 0.59480578 -0.80385756 -2.0429543e-07 0.59480578 -0.80385756 -2.0429543e-07\n\t\t 0.59480578 -0.80385756 -2.0429543e-07 0.59480578 -0.80385756 -2.0429543e-07 0.59480578\n\t\t -0.1069982 0.99108851 0.079164937 -0.1069982 0.99108851 0.079164937 -0.1069982 0.99108851\n\t\t 0.079164937 -0.1069982 0.99108851 0.079164937 -0.1069982 0.99108851 0.079164937 -0.1069982\n\t\t 0.99108851 0.079164937 0.80385756 2.0429543e-07 -0.59480578 0.80385756 2.0429543e-07\n\t\t -0.59480578 0.80385756 2.0429543e-07 -0.59480578 0.80385756 2.0429543e-07 -0.59480578\n\t\t 0.80385756 2.0429543e-07 -0.59480578 0.80385756 2.0429543e-07 -0.59480578 0.19080202\n\t\t -0.97140408 -0.14117855 0.19080202 -0.97140408 -0.14117855 0.19080202 -0.97140408\n\t\t -0.14117855 0.19080202 -0.97140408 -0.14117855 0.19080202 -0.97140408 -0.14117855\n\t\t 0.19080202 -0.97140408 -0.14117855 0.16605122 -0.060090967 -0.98425245 0.17569508\n\t\t -0.060304593 -0.98257393 0.17569508 -0.060335111 -0.98257393 0.17569508 -0.060335111\n\t\t -0.98257393 0.16605122 -0.060090967 -0.98425245 0.16605122 -0.060090967 -0.98425245\n\t\t 0.15689567 -0.063051261 -0.98556477 0.16605122 -0.060090967 -0.98425245 0.16605122\n\t\t -0.060090967 -0.98425245 0.16605122 -0.060090967 -0.98425245 0.15689567 -0.063051261\n\t\t -0.98559529 0.15689567 -0.063051261 -0.98556477 0.14929657 -0.069093935 -0.98635823\n\t\t 0.15689567 -0.063051261 -0.98556477 0.15689567 -0.063051261 -0.98559529 0.15689567\n\t\t -0.063051261 -0.98559529 0.14926605 -0.069093935 -0.98635823 0.14929657 -0.069093935\n\t\t -0.98635823 0.14407791 -0.077364452 -0.98651081 0.14929657 -0.069093935 -0.98635823\n\t\t 0.14926605 -0.069093935 -0.98635823 0.14926605 -0.069093935 -0.98635823 0.14407791\n\t\t -0.077364452 -0.98651081 0.14407791 -0.077364452 -0.98651081 0.14203317 -0.08685571\n\t\t -0.98602253 0.14407791 -0.077364452 -0.98651081 0.14407791 -0.077364452 -0.98651081\n\t\t 0.14407791 -0.077364452 -0.98651081 0.14203317 -0.08685571 -0.98602253 0.14203317\n\t\t -0.08685571 -0.98602253 0.14328443 -0.096469037 -0.98495436 0.14203317 -0.08685571\n\t\t -0.98602253 0.14203317 -0.08685571 -0.98602253 0.14203317 -0.08685571 -0.98602253\n\t\t 0.14328443 -0.096469037 -0.98495436 0.14328443 -0.096469037 -0.98495436 0.14764857\n\t\t -0.10504474 -0.98342848 0.14328443 -0.096469037 -0.98495436 0.14328443 -0.096469037\n\t\t -0.98495436 0.14328443 -0.096469037 -0.98495436 0.14761806 -0.10504474 -0.98342848\n\t\t 0.14764857 -0.10504474 -0.98342848 0.18457596 -0.063905776 -0.98071229 0.17569508\n\t\t -0.060335111 -0.98257393 0.17569508 -0.060304593 -0.98257393 0.17569508 -0.060304593\n\t\t -0.98257393 0.18457596 -0.063936293 -0.98071229 0.18457596 -0.063905776 -0.98071229\n\t\t 0.19162573 -0.070406213 -0.9789117 0.18457596 -0.063905776 -0.98071229 0.18457596\n\t\t -0.063936293 -0.98071229 0.18457596 -0.063936293 -0.98071229 0.19162573 -0.070406213\n\t\t -0.9789117 0.19162573 -0.070406213 -0.9789117 0.19608146 -0.078951396 -0.97738576\n\t\t 0.19162573 -0.070406213 -0.9789117 0.19162573 -0.070406213 -0.9789117 0.19162573\n\t\t -0.070406213 -0.9789117 0.19611198 -0.078951396 -0.97738576 0.19608146 -0.078951396\n\t\t -0.97738576 0.19739375 -0.087252431 -0.9764092 0.19608146 -0.078951396 -0.97738576\n\t\t 0.19611198 -0.078951396 -0.97738576 0.19611198 -0.078951396 -0.97738576 0.19739375\n\t\t -0.087435544 -0.9764092 0.19739375 -0.087252431 -0.9764092 0.19635612 -0.094729468\n\t\t -0.97592092 0.19739375 -0.087252431 -0.9764092 0.19739375 -0.087435544 -0.9764092\n\t\t 0.19739375 -0.087435544 -0.9764092 0.19638664 -0.094515838 -0.97595143 0.19635612\n\t\t -0.094729468 -0.97592092 0.1936705 -0.10129094 -0.97579885 0.19635612 -0.094729468\n\t\t -0.97592092 0.19638664 -0.094515838 -0.97595143 0.19638664 -0.094515838 -0.97595143\n\t\t 0.19354841 -0.10147406 -0.97579885 0.1936705 -0.10129094 -0.97579885 0.18912323 -0.1073031\n\t\t -0.97604299 0.1936705 -0.10129094 -0.97579885 0.19354841 -0.10147406 -0.97579885\n\t\t 0.19354841 -0.10147406 -0.97579885 0.18927583 -0.10718103 -0.97604299 0.18912323\n\t\t -0.1073031 -0.97604299 0.18240917 -0.11239968 -0.97674489 0.18912323 -0.1073031 -0.97604299\n\t\t 0.18927583 -0.10718103 -0.97604299 0.18927583 -0.10718103 -0.97604299 0.18240917\n\t\t -0.11239968 -0.97674489 0.18240917 -0.11239968 -0.97674489 0.17322309 -0.11535998\n\t\t -0.97808772 0.18240917 -0.11239968 -0.97674489 0.18240917 -0.11239968 -0.97674489\n\t\t 0.18240917 -0.11239968 -0.97674489 0.17322309 -0.11535998 -0.97808772 0.17322309\n\t\t -0.11535998 -0.97808772 0.16360976 -0.11508532 -0.97976625 0.17322309 -0.11535998\n\t\t -0.97808772 0.17322309 -0.11535998 -0.97808772 0.17322309 -0.11535998 -0.97808772\n\t\t 0.16360976 -0.11511584 -0.97976625 0.16360976 -0.11508532 -0.97976625 0.15466784\n\t\t -0.1115757 -0.98162788 0.16360976 -0.11508532 -0.97976625 0.16360976 -0.11511584\n\t\t -0.97976625 0.16360976 -0.11511584 -0.97976625 0.15466784 -0.11160622 -0.98162788\n\t\t 0.15466784 -0.1115757 -0.98162788 0.14761806 -0.10504474 -0.98342848 0.15466784 -0.1115757\n\t\t -0.98162788 0.15466784 -0.11160622 -0.98162788 0.15466784 -0.11160622 -0.98162788\n\t\t 0.14764857 -0.10504474 -0.98342848 0.14761806 -0.10504474 -0.98342848 -0.40070787\n\t\t -0.47959855 -0.78063291 -0.23136063 -0.63438839 -0.73754078 -0.20554197 -0.62514126\n\t\t -0.75292206 -0.20554197 -0.62514126 -0.75292206 -0.35059649 -0.45023975 -0.82116145\n\t\t -0.40070787 -0.47959855 -0.78063291 -0.23136063 -0.63438839 -0.73754078 -0.018982289\n\t\t -0.72051156 -0.69313633 -0.01416037 -0.7087009 -0.70531321 -0.01416037 -0.7087009\n\t\t -0.70531321 -0.20554197 -0.62514126 -0.75292206 -0.23136063 -0.63438839 -0.73754078\n\t\t -0.018982289 -0.72051156 -0.69313633 0.21079157 -0.72765285 -0.65272981;\n\tsetAttr \".n[4316:4481]\" -type \"float3\"  0.21115778 -0.71565902 -0.66573071 0.21115778\n\t\t -0.71565902 -0.66573071 -0.01416037 -0.7087009 -0.70531321 -0.018982289 -0.72051156\n\t\t -0.69313633 0.21079157 -0.72765285 -0.65272981 0.43037224 -0.65480506 -0.62123471\n\t\t 0.42640483 -0.64424568 -0.63487649 0.42640483 -0.64424568 -0.63487649 0.21115778\n\t\t -0.71565902 -0.66573071 0.21079157 -0.72765285 -0.65272981 0.43037224 -0.65480506\n\t\t -0.62123471 0.5917846 -0.53398222 -0.60380864 0.58595556 -0.52476567 -0.61745042\n\t\t 0.58595556 -0.52476567 -0.61745042 0.42640483 -0.64424568 -0.63487649 0.43037224\n\t\t -0.65480506 -0.62123471 0.6855374 -0.38877514 -0.61549729 0.58595556 -0.52476567\n\t\t -0.61745042 0.5917846 -0.53398222 -0.60380864 0.5917846 -0.53398222 -0.60380864 0.69975901\n\t\t -0.39072829 -0.59801018 0.6855374 -0.38877514 -0.61549729 0.75328845 -0.22342582\n\t\t -0.61854917 0.6855374 -0.38877514 -0.61549729 0.69975901 -0.39072829 -0.59801018\n\t\t 0.69975901 -0.39072829 -0.59801018 0.76503807 -0.23145218 -0.60090947 0.75328845\n\t\t -0.22342582 -0.61854917 0.77764213 -0.056764234 -0.62611777 0.75328845 -0.22342582\n\t\t -0.61854917 0.76503807 -0.23145218 -0.60090947 0.76503807 -0.23145218 -0.60090947\n\t\t 0.78847623 -0.053864971 -0.61268961 0.77764213 -0.056764234 -0.62611777 0.74745929\n\t\t 0.13962238 -0.64943385 0.77764213 -0.056764234 -0.62611777 0.78847623 -0.053864971\n\t\t -0.61268961 0.78847623 -0.053864971 -0.61268961 0.7578966 0.14474948 -0.63606679\n\t\t 0.74745929 0.13962238 -0.64943385 0.64369631 0.34043413 -0.68535417 0.74745929 0.13962238\n\t\t -0.64943385 0.7578966 0.14474948 -0.63606679 0.7578966 0.14474948 -0.63606679 0.65202785\n\t\t 0.34962019 -0.67271948 0.64369631 0.34043413 -0.68535417 0.47767556 0.49223313 -0.72765291\n\t\t 0.64369631 0.34043413 -0.68535417 0.65202785 0.34962019 -0.67271948 0.65202785 0.34962019\n\t\t -0.67271948 0.48268059 0.50444055 -0.71590328 0.47767556 0.49223313 -0.72765291 0.26947826\n\t\t 0.57670826 -0.7712028 0.47767556 0.49223313 -0.72765291 0.48268059 0.50444055 -0.71590328\n\t\t 0.48268059 0.50444055 -0.71590328 0.27033278 0.59059417 -0.76030767 0.26947826 0.57670826\n\t\t -0.7712028 0.044160105 0.58363593 -0.81078529 0.26947826 0.57670826 -0.7712028 0.27033278\n\t\t 0.59059417 -0.76030767 0.27033278 0.59059417 -0.76030767 0.040497877 0.59767443 -0.80068368\n\t\t 0.044160105 0.58363593 -0.81078529 -0.1710564 0.51219201 -0.84163952 0.044160105\n\t\t 0.58363593 -0.81078529 0.040497877 0.59767443 -0.80068368 0.040497877 0.59767443\n\t\t -0.80068368 -0.17902175 0.52476567 -0.83217877 -0.1710564 0.51219201 -0.84163952\n\t\t -0.33277395 0.37491974 -0.86523026 -0.1710564 0.51219201 -0.84163952 -0.17902175\n\t\t 0.52476567 -0.83217877 -0.17902175 0.52476567 -0.83217877 -0.36179703 0.38087082\n\t\t -0.85088658 -0.33277395 0.37491974 -0.86523026 -0.42887667 0.1590928 -0.88921779\n\t\t -0.33277395 0.37491974 -0.86523026 -0.36179703 0.38087082 -0.85088658 -0.36179703\n\t\t 0.38087082 -0.85088658 -0.48579368 0.18304981 -0.85467088 -0.42887667 0.1590928 -0.88921779\n\t\t -0.47508159 -0.050233681 -0.87847531 -0.42887667 0.1590928 -0.88921779 -0.48579368\n\t\t 0.18304981 -0.85467088 -0.48579368 0.18304981 -0.85467088 -0.53605759 -0.044587769\n\t\t -0.84298229 -0.47508159 -0.050233681 -0.87847531 -0.44785905 -0.26187953 -0.85485399\n\t\t -0.47508159 -0.050233681 -0.87847531 -0.53605759 -0.044587769 -0.84298229 -0.53605759\n\t\t -0.044587769 -0.84298229 -0.5064851 -0.27472782 -0.81728566 -0.44785905 -0.26187953\n\t\t -0.85485399 -0.35059649 -0.45023975 -0.82116145 -0.44785905 -0.26187953 -0.85485399\n\t\t -0.5064851 -0.27472782 -0.81728566 -0.5064851 -0.27472782 -0.81728566 -0.40070787\n\t\t -0.47959855 -0.78063291 -0.35059649 -0.45023975 -0.82116145 0.017883636 0.67915887\n\t\t -0.7337566 0.27359822 0.67125463 -0.68886387 0.26947826 0.57670826 -0.7712028 0.26947826\n\t\t 0.57670826 -0.7712028 0.044160105 0.58363593 -0.81078529 0.017883636 0.67915887 -0.7337566\n\t\t -0.21424012 0.59669781 -0.77330858 0.017883636 0.67915887 -0.7337566 0.044160105\n\t\t 0.58363593 -0.81078529 0.044160105 0.58363593 -0.81078529 -0.1710564 0.51219201 -0.84163952\n\t\t -0.21424012 0.59669781 -0.77330858 0.017883636 0.67915887 -0.7337566 -0.21424012\n\t\t 0.59669781 -0.77330858 -0.27768815 0.73863935 -0.61418504 -0.27768815 0.73863935\n\t\t -0.61418504 -0.027192244 0.81615645 -0.57713556 0.017883636 0.67915887 -0.7337566\n\t\t 0.27359822 0.67125463 -0.68886387 0.017883636 0.67915887 -0.7337566 -0.027192244\n\t\t 0.81615645 -0.57713556 -0.027192244 0.81615645 -0.57713556 0.27075997 0.80700094\n\t\t -0.52479637 0.27359822 0.67125463 -0.68886387 -0.36686316 0.45664829 -0.8104496 -0.21424012\n\t\t 0.59669781 -0.77330858 -0.1710564 0.51219201 -0.84163952 -0.1710564 0.51219201 -0.84163952\n\t\t -0.33277395 0.37491974 -0.86523026 -0.36686316 0.45664829 -0.8104496 -0.21424012\n\t\t 0.59669781 -0.77330858 -0.36686316 0.45664829 -0.8104496 -0.39555061 0.63377768 -0.66469318\n\t\t -0.21424012 0.59669781 -0.77330858 -0.39555061 0.63377768 -0.66469318 -0.27768815\n\t\t 0.73863935 -0.61418504 -0.36686316 0.45664829 -0.8104496 -0.45146048 0.5475629 -0.70448935\n\t\t -0.39555061 0.63377768 -0.66469318 -0.36686316 0.45664829 -0.8104496 -0.33277395\n\t\t 0.37491974 -0.86523026 -0.4148992 0.23212358 -0.87972653 -0.33277395 0.37491974 -0.86523026\n\t\t -0.42887667 0.1590928 -0.88921779 -0.4148992 0.23212358 -0.87972653 -0.36686316 0.45664829\n\t\t -0.8104496 -0.4148992 0.23212358 -0.87972653 -0.50355554 0.33088148 -0.79805905 0.47767556\n\t\t 0.49223313 -0.72765291 0.26947826 0.57670826 -0.7712028 0.27359822 0.67125463 -0.68886387\n\t\t 0.27359822 0.67125463 -0.68886387 0.50993359 0.57539612 -0.63939333 0.47767556 0.49223313\n\t\t -0.72765291 0.50993359 0.57539612 -0.63939333 0.27359822 0.67125463 -0.68886387 0.27075997\n\t\t 0.80700094 -0.52479637 0.64369631 0.34043413 -0.68535417 0.47767556 0.49223313 -0.72765291\n\t\t 0.50993359 0.57539612 -0.63939333 0.50993359 0.57539612 -0.63939333 0.69835496 0.40308866\n\t\t -0.59141827 0.64369631 0.34043413 -0.68535417 0.74745929 0.13962238 -0.64943385 0.64369631\n\t\t 0.34043413 -0.68535417 0.69835496 0.40308866 -0.59141827;\n\tsetAttr \".n[4482:4647]\" -type \"float3\"  0.69835496 0.40308866 -0.59141827 0.81609541\n\t\t 0.17514594 -0.55067599 0.74745929 0.13962238 -0.64943385 0.77764213 -0.056764234\n\t\t -0.62611777 0.74745929 0.13962238 -0.64943385 0.81609541 0.17514594 -0.55067599 0.81609541\n\t\t 0.17514594 -0.55067599 0.84878081 -0.048127469 -0.52650535 0.77764213 -0.056764234\n\t\t -0.62611777 0.75328845 -0.22342582 -0.61854917 0.77764213 -0.056764234 -0.62611777\n\t\t 0.84878081 -0.048127469 -0.52650535 0.84878081 -0.048127469 -0.52650535 0.8295542\n\t\t -0.20953988 -0.5175634 0.75328845 -0.22342582 -0.61854917 0.79033798 -0.33323139\n\t\t -0.51408428 0.75328845 -0.22342582 -0.61854917 0.8295542 -0.20953988 -0.5175634 0.79033798\n\t\t -0.33323139 -0.51408428 0.6855374 -0.38877514 -0.61549729 0.75328845 -0.22342582\n\t\t -0.61854917 0.79033798 -0.33323139 -0.51408428 0.73152882 -0.44892707 -0.51310766\n\t\t 0.6855374 -0.38877514 -0.61549729 0.58595556 -0.52476567 -0.61745042 0.6855374 -0.38877514\n\t\t -0.61549729 0.73152882 -0.44892707 -0.51310766 0.73152882 -0.44892707 -0.51310766\n\t\t 0.63188595 -0.57765424 -0.51667833 0.58595556 -0.52476567 -0.61745042 0.42640483\n\t\t -0.64424568 -0.63487649 0.58595556 -0.52476567 -0.61745042 0.63188595 -0.57765424\n\t\t -0.51667833 0.63188595 -0.57765424 -0.51667833 0.45170468 -0.71459085 -0.53413486\n\t\t 0.42640483 -0.64424568 -0.63487649 0.21115778 -0.71565902 -0.66573071 0.42640483\n\t\t -0.64424568 -0.63487649 0.45170468 -0.71459085 -0.53413486 0.45170468 -0.71459085\n\t\t -0.53413486 0.20740405 -0.79564804 -0.56910908 0.21115778 -0.71565902 -0.66573071\n\t\t -0.01416037 -0.7087009 -0.70531321 0.21115778 -0.71565902 -0.66573071 0.20740405\n\t\t -0.79564804 -0.56910908 0.20740405 -0.79564804 -0.56910908 -0.048310559 -0.78774381\n\t\t -0.61406285 -0.01416037 -0.7087009 -0.70531321 -0.20554197 -0.62514126 -0.75292206\n\t\t -0.01416037 -0.7087009 -0.70531321 -0.048310559 -0.78774381 -0.61406285 -0.048310559\n\t\t -0.78774381 -0.61406285 -0.25592801 -0.70763278 -0.65855885 -0.20554197 -0.62514126\n\t\t -0.75292206 -0.33881629 -0.63457155 -0.69460124 -0.20554197 -0.62514126 -0.75292206\n\t\t -0.25592801 -0.70763278 -0.65855885 -0.33881629 -0.63457155 -0.69460124 -0.31253991\n\t\t -0.51060534 -0.80095822 -0.20554197 -0.62514126 -0.75292206 -0.33881629 -0.63457155\n\t\t -0.69460124 -0.42435971 -0.56352448 -0.70876181 -0.31253991 -0.51060534 -0.80095822\n\t\t -0.31253991 -0.51060534 -0.80095822 -0.35059649 -0.45023975 -0.82116145 -0.20554197\n\t\t -0.62514126 -0.75292206 -0.25592801 -0.70763278 -0.65855885 -0.048310559 -0.78774381\n\t\t -0.61406285 -0.10434251 -0.89303273 -0.43766588 -0.10434251 -0.89303273 -0.43766588\n\t\t -0.34717834 -0.80043966 -0.48860127 -0.25592801 -0.70763278 -0.65855885 -0.33881629\n\t\t -0.63457155 -0.69460124 -0.25592801 -0.70763278 -0.65855885 -0.34717834 -0.80043966\n\t\t -0.48860127 -0.34717834 -0.80043966 -0.48860127 -0.44022927 -0.73885328 -0.51014733\n\t\t -0.33881629 -0.63457155 -0.69460124 -0.048310559 -0.78774381 -0.61406285 0.20740405\n\t\t -0.79564804 -0.56910908 0.1936097 -0.90221864 -0.38529614 0.1936097 -0.90221864 -0.38529614\n\t\t -0.10434251 -0.89303273 -0.43766588 -0.048310559 -0.78774381 -0.61406285 0.20740405\n\t\t -0.79564804 -0.56910908 0.45170468 -0.71459085 -0.53413486 0.47828633 -0.80779433\n\t\t -0.34449288 0.47828633 -0.80779433 -0.34449288 0.1936097 -0.90221864 -0.38529614\n\t\t 0.20740405 -0.79564804 -0.56910908 0.68901658 -0.64876223 -0.32297733 0.47828633\n\t\t -0.80779433 -0.34449288 0.45170468 -0.71459085 -0.53413486 0.45170468 -0.71459085\n\t\t -0.53413486 0.63188595 -0.57765424 -0.51667833 0.68901658 -0.64876223 -0.32297733\n\t\t -0.44022927 -0.73885328 -0.51014733 -0.34717834 -0.80043966 -0.48860127 -0.39411578\n\t\t -0.83855718 -0.37607953 -0.39411578 -0.83855718 -0.37607953 -0.49327043 -0.77318662\n\t\t -0.39854115 -0.44022927 -0.73885328 -0.51014733 -0.34717834 -0.80043966 -0.48860127\n\t\t -0.10434251 -0.89303273 -0.43766588 -0.13565449 -0.93676573 -0.32248902 -0.13565449\n\t\t -0.93676573 -0.32248902 -0.39411578 -0.83855718 -0.37607953 -0.34717834 -0.80043966\n\t\t -0.48860127 -0.39411578 -0.83855718 -0.37607953 -0.13565449 -0.93676573 -0.32248902\n\t\t -0.14529833 -0.94769132 -0.28412727 -0.14529833 -0.94769132 -0.28412727 -0.40891725\n\t\t -0.84746861 -0.33838916 -0.39411578 -0.83855718 -0.37607953 -0.49327043 -0.77318662\n\t\t -0.39854115 -0.39411578 -0.83855718 -0.37607953 -0.40891725 -0.84746861 -0.33838916\n\t\t -0.40891725 -0.84746861 -0.33838916 -0.50886542 -0.78160971 -0.36066768 -0.49327043\n\t\t -0.77318662 -0.39854115 -0.10434251 -0.89303273 -0.43766588 0.1936097 -0.90221864\n\t\t -0.38529614 0.18118869 -0.94653153 -0.26685378 0.18118869 -0.94653153 -0.26685378\n\t\t -0.13565449 -0.93676573 -0.32248902 -0.10434251 -0.89303273 -0.43766588 -0.13565449\n\t\t -0.93676573 -0.32248902 0.18118869 -0.94653153 -0.26685378 0.17648883 -0.95760971\n\t\t -0.22754593 0.17648883 -0.95760971 -0.22754593 -0.14529833 -0.94769132 -0.28412727\n\t\t -0.13565449 -0.93676573 -0.32248902 0.1936097 -0.90221864 -0.38529614 0.47828633\n\t\t -0.80779433 -0.34449288 0.4838407 -0.84609497 -0.22348699 0.4838407 -0.84609497 -0.22348699\n\t\t 0.18118869 -0.94653153 -0.26685378 0.1936097 -0.90221864 -0.38529614 0.18118869 -0.94653153\n\t\t -0.26685378 0.4838407 -0.84609497 -0.22348699 0.48399332 -0.85558623 -0.18353826\n\t\t 0.48399332 -0.85558623 -0.18353826 0.17648883 -0.95760971 -0.22754593 0.18118869\n\t\t -0.94653153 -0.26685378 0.47828633 -0.80779433 -0.34449288 0.68901658 -0.64876223\n\t\t -0.32297733 0.70802963 -0.67723602 -0.1999267 0.70802963 -0.67723602 -0.1999267 0.4838407\n\t\t -0.84609497 -0.22348699 0.47828633 -0.80779433 -0.34449288 0.4838407 -0.84609497\n\t\t -0.22348699 0.70802963 -0.67723602 -0.1999267 0.71251589 -0.68333972 -0.15912347\n\t\t 0.71251589 -0.68333972 -0.15912347 0.48399332 -0.85558623 -0.18353826 0.4838407 -0.84609497\n\t\t -0.22348699 0.80605507 -0.49940467 -0.31751454 0.68901658 -0.64876223 -0.32297733\n\t\t 0.63188595 -0.57765424 -0.51667833 0.63188595 -0.57765424 -0.51667833 0.73152882\n\t\t -0.44892707 -0.51310766 0.80605507 -0.49940467 -0.31751454 0.84368432 -0.43278274\n\t\t -0.31754506 0.80605507 -0.49940467 -0.31751454 0.73152882 -0.44892707 -0.51310766\n\t\t 0.73152882 -0.44892707 -0.51310766;\n\tsetAttr \".n[4648:4813]\" -type \"float3\"  0.79033798 -0.33323139 -0.51408428 0.84368432\n\t\t -0.43278274 -0.31754506 0.85094774 -0.35566247 -0.38639483 0.84368432 -0.43278274\n\t\t -0.31754506 0.79033798 -0.33323139 -0.51408428 0.79033798 -0.33323139 -0.51408428\n\t\t 0.90069288 -0.29346573 -0.32032225 0.85094774 -0.35566247 -0.38639483 0.79186392\n\t\t -0.59123486 -0.15277562 0.71251589 -0.68333972 -0.15912347 0.70802963 -0.67723602\n\t\t -0.1999267 0.70802963 -0.67723602 -0.1999267 0.78691995 -0.58574152 -0.1939756 0.79186392\n\t\t -0.59123486 -0.15277562 0.78579074 -0.57145888 -0.23654892 0.78691995 -0.58574152\n\t\t -0.1939756 0.70802963 -0.67723602 -0.1999267 0.78579074 -0.57145888 -0.23654892 0.70802963\n\t\t -0.67723602 -0.1999267 0.68901658 -0.64876223 -0.32297733 0.68901658 -0.64876223\n\t\t -0.32297733 0.82531226 -0.51298541 -0.23596907 0.78579074 -0.57145888 -0.23654892\n\t\t 0.68901658 -0.64876223 -0.32297733 0.80605507 -0.49940467 -0.31751454 0.82531226\n\t\t -0.51298541 -0.23596907 0.82531226 -0.51298541 -0.23596907 0.80605507 -0.49940467\n\t\t -0.31751454 0.84368432 -0.43278274 -0.31754506 0.9206214 -0.21967198 -0.32273319\n\t\t 0.90069288 -0.29346573 -0.32032225 0.79033798 -0.33323139 -0.51408428 0.79033798\n\t\t -0.33323139 -0.51408428 0.8295542 -0.20953988 -0.5175634 0.9206214 -0.21967198 -0.32273319\n\t\t 0.94186223 -0.031342246 -0.33448285 0.9206214 -0.21967198 -0.32273319 0.8295542 -0.20953988\n\t\t -0.5175634 0.8295542 -0.20953988 -0.5175634 0.84878081 -0.048127469 -0.52650535 0.94186223\n\t\t -0.031342246 -0.33448285 0.90289003 0.2289196 -0.36381119 0.94186223 -0.031342246\n\t\t -0.33448285 0.84878081 -0.048127469 -0.52650535 0.84878081 -0.048127469 -0.52650535\n\t\t 0.81609541 0.17514594 -0.55067599 0.90289003 0.2289196 -0.36381119 0.7656787 0.49452212\n\t\t -0.41126746 0.90289003 0.2289196 -0.36381119 0.81609541 0.17514594 -0.55067599 0.81609541\n\t\t 0.17514594 -0.55067599 0.69835496 0.40308866 -0.59141827 0.7656787 0.49452212 -0.41126746\n\t\t 0.54615903 0.6952728 -0.46717739 0.7656787 0.49452212 -0.41126746 0.69835496 0.40308866\n\t\t -0.59141827 0.69835496 0.40308866 -0.59141827 0.50993359 0.57539612 -0.63939333 0.54615903\n\t\t 0.6952728 -0.46717739 0.27075997 0.80700094 -0.52479637 0.54615903 0.6952728 -0.46717739\n\t\t 0.50993359 0.57539612 -0.63939333 0.94186223 -0.031342246 -0.33448285 0.90289003\n\t\t 0.2289196 -0.36381119 0.93530071 0.25617263 -0.2439955 0.93530071 0.25617263 -0.2439955\n\t\t 0.97701955 -0.020508152 -0.21213415 0.94186223 -0.031342246 -0.33448285 0.97701955\n\t\t -0.020508152 -0.21213415 0.93530071 0.25617263 -0.2439955 0.94256413 0.26410744 -0.20438248\n\t\t 0.94256413 0.26410744 -0.20438248 0.98501539 -0.018005628 -0.17151402 0.97701955\n\t\t -0.020508152 -0.21213415 0.90289003 0.2289196 -0.36381119 0.7656787 0.49452212 -0.41126746\n\t\t 0.78942209 0.53859091 -0.29447314 0.78942209 0.53859091 -0.29447314 0.93530071 0.25617263\n\t\t -0.2439955 0.90289003 0.2289196 -0.36381119 0.93530071 0.25617263 -0.2439955 0.78942209\n\t\t 0.53859091 -0.29447314 0.79436612 0.5509814 -0.25565359 0.79436612 0.5509814 -0.25565359\n\t\t 0.94256413 0.26410744 -0.20438248 0.93530071 0.25617263 -0.2439955 0.7656787 0.49452212\n\t\t -0.41126746 0.54615903 0.6952728 -0.46717739 0.55598599 0.75203729 -0.3539232 0.55598599\n\t\t 0.75203729 -0.3539232 0.78942209 0.53859091 -0.29447314 0.7656787 0.49452212 -0.41126746\n\t\t 0.78942209 0.53859091 -0.29447314 0.55598599 0.75203729 -0.3539232 0.55726773 0.76781535\n\t\t -0.31604975 0.55726773 0.76781535 -0.31604975 0.79436612 0.5509814 -0.25565359 0.78942209\n\t\t 0.53859091 -0.29447314 0.54615903 0.6952728 -0.46717739 0.27075997 0.80700094 -0.52479637\n\t\t 0.26322189 0.87081516 -0.41514334 0.26322189 0.87081516 -0.41514334 0.55598599 0.75203729\n\t\t -0.3539232 0.54615903 0.6952728 -0.46717739 -0.053621292 0.88058102 -0.47083962 0.26322189\n\t\t 0.87081516 -0.41514334 0.27075997 0.80700094 -0.52479637 0.27075997 0.80700094 -0.52479637\n\t\t -0.027192244 0.81615645 -0.57713556 -0.053621292 0.88058102 -0.47083962 -0.32023096\n\t\t 0.79851663 -0.50968969 -0.053621292 0.88058102 -0.47083962 -0.027192244 0.81615645\n\t\t -0.57713556 -0.027192244 0.81615645 -0.57713556 -0.27768815 0.73863935 -0.61418504\n\t\t -0.32023096 0.79851663 -0.50968969 -0.053621292 0.88058102 -0.47083962 -0.32023096\n\t\t 0.79851663 -0.50968969 -0.33390325 0.81469142 -0.47404405 -0.33390325 0.81469142\n\t\t -0.47404405 -0.061983373 0.89837331 -0.43476674 -0.053621292 0.88058102 -0.47083962\n\t\t 0.26322189 0.87081516 -0.41514334 -0.053621292 0.88058102 -0.47083962 -0.061983373\n\t\t 0.89837331 -0.43476674 -0.061983373 0.89837331 -0.43476674 0.25983432 0.88845491\n\t\t -0.37821594 0.26322189 0.87081516 -0.41514334 0.55598599 0.75203729 -0.3539232 0.26322189\n\t\t 0.87081516 -0.41514334 0.25983432 0.88845491 -0.37821594 0.25983432 0.88845491 -0.37821594\n\t\t 0.55726773 0.76781535 -0.31604975 0.55598599 0.75203729 -0.3539232 -0.425001 0.73949385\n\t\t -0.52201915 -0.32023096 0.79851663 -0.50968969 -0.27768815 0.73863935 -0.61418504\n\t\t -0.27768815 0.73863935 -0.61418504 -0.39555061 0.63377768 -0.66469318 -0.425001 0.73949385\n\t\t -0.52201915 -0.43946677 0.75530243 -0.4861294 -0.33390325 0.81469142 -0.47404405\n\t\t -0.32023096 0.79851663 -0.50968969 -0.32023096 0.79851663 -0.50968969 -0.425001 0.73949385\n\t\t -0.52201915 -0.43946677 0.75530243 -0.4861294 0.98501539 -0.018005628 -0.17151402\n\t\t 0.97705013 -0.13907257 -0.16116823 0.96914583 -0.14075108 -0.20224614 0.96914583\n\t\t -0.14075108 -0.20224614 0.97701955 -0.020508152 -0.21213415 0.98501539 -0.018005628\n\t\t -0.17151402 0.97701955 -0.020508152 -0.21213415 0.96914583 -0.14075108 -0.20224614\n\t\t 0.95776242 -0.15155463 -0.24436168 0.97701955 -0.020508152 -0.21213415 0.95776242\n\t\t -0.15155463 -0.24436168 0.94491416 -0.22098425 -0.24137087 0.94491416 -0.22098425\n\t\t -0.24137087 0.94186223 -0.031342246 -0.33448285 0.97701955 -0.020508152 -0.21213415\n\t\t 0.9206214 -0.21967198 -0.32273319 0.94186223 -0.031342246 -0.33448285 0.94491416\n\t\t -0.22098425 -0.24137087 0.94491416 -0.22098425 -0.24137087 0.95776242 -0.15155463\n\t\t -0.24436168;\n\tsetAttr \".n[4814:4979]\" -type \"float3\"  0.92468041 -0.2983487 -0.23645739 0.90069288\n\t\t -0.29346573 -0.32032225 0.9206214 -0.21967198 -0.32273319 0.94491416 -0.22098425\n\t\t -0.24137087 0.92468041 -0.29792142 -0.23694569 0.90069288 -0.29346573 -0.32032225\n\t\t 0.94491416 -0.22098425 -0.24137087 0.94491416 -0.22098425 -0.24137087 0.92468041\n\t\t -0.2983487 -0.23645739 0.92468041 -0.29792142 -0.23694569 0.85094774 -0.35566247\n\t\t -0.38639483 0.90069288 -0.29346573 -0.32032225 0.92468041 -0.29792142 -0.23694569\n\t\t 0.84368432 -0.43278274 -0.31754506 0.85094774 -0.35566247 -0.38639483 0.86516935\n\t\t -0.44358629 -0.23374124 0.82531226 -0.51298541 -0.23596907 0.84368432 -0.43278274\n\t\t -0.31754506 0.86516935 -0.44358629 -0.23374124 0.86516935 -0.44358629 -0.23374124\n\t\t 0.86513883 -0.44361681 -0.23386331 0.82531226 -0.51298541 -0.23596907 0.78579074\n\t\t -0.57145888 -0.23654892 0.82531226 -0.51298541 -0.23596907 0.86513883 -0.44361681\n\t\t -0.23386331 -0.12668262 0.98580885 -0.11008033 0.21521623 0.97528005 -0.050019909\n\t\t 0.21521623 0.97528005 -0.050019909 0.21521623 0.97528005 -0.050019909 -0.12668262\n\t\t 0.98580885 -0.11008033 -0.12668262 0.98580885 -0.11008033 -0.4144111 0.89730507 -0.15182965\n\t\t -0.12668262 0.98580885 -0.11008033 -0.12668262 0.98580885 -0.11008033 -0.12668262\n\t\t 0.98580885 -0.11008033 -0.4144111 0.89730507 -0.15182965 -0.4144111 0.89730507 -0.15182965\n\t\t -0.52729905 0.83333826 -0.16562401 -0.4144111 0.89730507 -0.15182965 -0.4144111 0.89730507\n\t\t -0.15182965 -0.4144111 0.89730507 -0.15182965 -0.52729905 0.83333826 -0.16562401\n\t\t -0.52729905 0.83333826 -0.16562401 0.5311439 0.84710246 0.016052673 0.21521623 0.97528005\n\t\t -0.050019909 0.21521623 0.97528005 -0.050019909 0.21521623 0.97528005 -0.050019909\n\t\t 0.5311439 0.84710246 0.016052673 0.5311439 0.84710246 0.016052673 0.78301322 0.61674881\n\t\t 0.080263637 0.5311439 0.84710246 0.016052673 0.5311439 0.84710246 0.016052673 0.5311439\n\t\t 0.84710246 0.016052673 0.78301322 0.61677933 0.080263637 0.78301322 0.61674881 0.080263637\n\t\t 0.94042772 0.31202155 0.13476971 0.78301322 0.61674881 0.080263637 0.78301322 0.61677933\n\t\t 0.080263637 0.78301322 0.61677933 0.080263637 0.94042772 0.31205207 0.13476971 0.94042772\n\t\t 0.31202155 0.13476971 0.98547322 0.01345898 0.16928618 0.94042772 0.31202155 0.13476971\n\t\t 0.94042772 0.31205207 0.13476971 0.94042772 0.31205207 0.13476971 0.98547322 0.01345898\n\t\t 0.16925566 0.98547322 0.01345898 0.16928618 0.94686741 -0.29734153 0.12244029 0.98547322\n\t\t 0.01345898 0.16928618 0.98547322 0.01345898 0.16925566 0.98547322 0.01345898 0.16925566\n\t\t 0.95147562 -0.24475813 0.18640707 0.94686741 -0.29734153 0.12244029 0.8820461 -0.45564109\n\t\t 0.1196631 0.94686741 -0.29734153 0.12244029 0.95147562 -0.24475813 0.18640707 0.95147562\n\t\t -0.24475813 0.18640707 0.85229057 -0.48692256 0.19092382 0.8820461 -0.45564109 0.1196631\n\t\t 0.69518137 -0.69524193 0.1824397 0.8820461 -0.45564109 0.1196631 0.85229057 -0.48692256\n\t\t 0.19092382 0.85229057 -0.48692256 0.19092382 0.69518137 -0.69527245 0.18247022 0.69518137\n\t\t -0.69524193 0.1824397 0.45329168 -0.87740701 0.15692623 0.69518137 -0.69524193 0.1824397\n\t\t 0.69518137 -0.69527245 0.18247022 0.69518137 -0.69527245 0.18247022 0.45326117 -0.87743753\n\t\t 0.15692623 0.45329168 -0.87740701 0.15692623 0.12668262 -0.98580885 0.11011086 0.45329168\n\t\t -0.87740701 0.15692623 0.45326117 -0.87743753 0.15692623 0.45326117 -0.87743753 0.15692623\n\t\t 0.12665211 -0.98580885 0.11011086 0.12668262 -0.98580885 0.11011086 -0.21518572 -0.97528005\n\t\t 0.049989391 0.12668262 -0.98580885 0.11011086 0.12665211 -0.98580885 0.11011086 0.12665211\n\t\t -0.98580885 0.11011086 -0.21521623 -0.97528005 0.049989391 -0.21518572 -0.97528005\n\t\t 0.049989391 -0.49415544 -0.86931992 -0.0076600811 -0.21518572 -0.97528005 0.049989391\n\t\t -0.21521623 -0.97528005 0.049989391 -0.21521623 -0.97528005 0.049989391 -0.51670867\n\t\t -0.85607487 0.011139319 -0.49415544 -0.86931992 -0.0076600811 -0.72716433 -0.66472387\n\t\t 0.17123941 -0.49415544 -0.86931992 -0.0076600811 -0.51670867 -0.85607487 0.011139319\n\t\t -0.7654956 -0.64168245 -0.047059495 -0.72716433 -0.66472387 0.17123941 -0.51670867\n\t\t -0.85607487 0.011139319 -0.7654956 -0.64168245 -0.047059495 -0.51670867 -0.85607487\n\t\t 0.011139319 -0.75597382 -0.65053278 -0.072511934 -0.83184284 -0.54676986 -0.094912529\n\t\t -0.7654956 -0.64168245 -0.047059495 -0.75597382 -0.65053278 -0.072511934 -0.75597382\n\t\t -0.65053278 -0.072511934 -0.83184284 -0.54676986 -0.094912529 -0.83184284 -0.54676986\n\t\t -0.094912529 0.009033177 0.97445601 0.22431096 0.20493151 0.89413136 0.39811391 0.18427046\n\t\t 0.97231978 0.14349796 0.18427046 0.97231978 0.14349796 -0.069613025 0.99710071 0.03018273\n\t\t 0.009033177 0.97445601 0.22431096 0.48631218 0.84749919 0.21262239 0.18427046 0.97231978\n\t\t 0.14349796 0.20493151 0.89413136 0.39811391 0.20493151 0.89413136 0.39811391 0.38712704\n\t\t 0.78743875 0.47962883 0.48631218 0.84749919 0.21262239 0.7330544 0.62184536 0.27546\n\t\t 0.48631218 0.84749919 0.21262239 0.38712704 0.78743875 0.47962883 0.38712704 0.78743875\n\t\t 0.47962883 0.60890514 0.5846433 0.53608805 0.7330544 0.62184536 0.27546 0.88729501\n\t\t 0.32328287 0.32883692 0.7330544 0.62184536 0.27546 0.60890514 0.5846433 0.53608805\n\t\t 0.60890514 0.5846433 0.53608805 0.74752027 0.31632462 0.58406323 0.88729501 0.32328287\n\t\t 0.32883692 0.93118078 0.030366234 0.3632313 0.88729501 0.32328287 0.32883692 0.74752027\n\t\t 0.31632462 0.58406323 0.74752027 0.31632462 0.58406323 0.78621787 0.053438198 0.61558884\n\t\t 0.93118078 0.030366234 0.3632313 0.8979767 -0.22168614 0.38004702 0.93118078 0.030366234\n\t\t 0.3632313 0.78621787 0.053438198 0.61558884 0.78621787 0.053438198 0.61558884 0.75630975\n\t\t -0.1734364 0.63075656 0.8979767 -0.22168614 0.38004702 0.80050063 -0.45973057 0.38450274\n\t\t 0.8979767 -0.22168614 0.38004702 0.75630975 -0.1734364 0.63075656 0.75630975 -0.1734364\n\t\t 0.63075656 0.66896582 -0.38673028 0.63472396 0.80050063 -0.45973057 0.38450274;\n\tsetAttr \".n[4980:5145]\" -type \"float3\"  0.64717567 -0.66304493 0.37614068 0.80050063\n\t\t -0.45973057 0.38450274 0.66896582 -0.38673028 0.63472396 0.66896582 -0.38673028 0.63472396\n\t\t 0.53096122 -0.56978035 0.62718594 0.64717567 -0.66304493 0.37614068 0.41004696 -0.84200555\n\t\t 0.35050514 0.64717567 -0.66304493 0.37614068 0.53096122 -0.56978035 0.62718594 0.53096122\n\t\t -0.56978035 0.62718594 0.31861347 -0.73088759 0.6035341 0.41004696 -0.84200555 0.35050514\n\t\t 0.090060413 -0.94817954 0.30466634 0.41004696 -0.84200555 0.35050514 0.31861347 -0.73088759\n\t\t 0.6035341 0.31861347 -0.73088759 0.6035341 0.031037578 -0.82628858 0.56233412 0.090060413\n\t\t -0.94817954 0.30466634 -0.24488024 -0.93786436 0.24582666 0.090060413 -0.94817954\n\t\t 0.30466634 0.031037578 -0.82628858 0.56233412 0.031037578 -0.82628858 0.56233412\n\t\t -0.26993597 -0.81704152 0.50944555 -0.24488024 -0.93786436 0.24582666 -0.55439901\n\t\t -0.81228083 0.18106638 -0.24488024 -0.93786436 0.24582666 -0.26993597 -0.81704152\n\t\t 0.50944555 -0.26993597 -0.81704152 0.50944555 -0.54811221 -0.70418423 0.45127726\n\t\t -0.55439901 -0.81228083 0.18106638 -0.77492583 -0.61925131 0.12631616 -0.55439901\n\t\t -0.81228083 0.18106638 -0.54811221 -0.70418423 0.45127726 -0.54811221 -0.70418423\n\t\t 0.45127726 -0.74581116 -0.53044242 0.4029054 -0.77492583 -0.61925131 0.12631616 -0.84896374\n\t\t -0.51792985 0.10467853 -0.77492583 -0.61925131 0.12631616 -0.74581116 -0.53044242\n\t\t 0.4029054 -0.74581116 -0.53044242 0.4029054 -0.81234157 -0.4390395 0.3838008 -0.84896374\n\t\t -0.51792985 0.10467853 -0.81234157 -0.4390395 0.3838008 -0.74581116 -0.53044242 0.4029054\n\t\t -0.70424503 -0.46748272 0.53428763 -0.70424503 -0.46748272 0.53428763 -0.7664417\n\t\t -0.38380098 0.51499987 -0.81234157 -0.4390395 0.3838008 -0.74581116 -0.53044242 0.4029054\n\t\t -0.54811221 -0.70418423 0.45127726 -0.5259558 -0.62257773 0.57939398 -0.5259558 -0.62257773\n\t\t 0.57939398 -0.70424503 -0.46748272 0.53428763 -0.74581116 -0.53044242 0.4029054 -0.54811221\n\t\t -0.70418423 0.45127726 -0.26993597 -0.81704152 0.50944555 -0.27402547 -0.72478408\n\t\t 0.63209945 -0.27402547 -0.72478408 0.63209945 -0.5259558 -0.62257773 0.57939398 -0.54811221\n\t\t -0.70418423 0.45127726 -0.26993597 -0.81704152 0.50944555 0.031037578 -0.82628858\n\t\t 0.56233412 -0.0013731063 -0.73317659 0.67998296 -0.0013731063 -0.73317659 0.67998296\n\t\t -0.27402547 -0.72478408 0.63209945 -0.26993597 -0.81704152 0.50944555 0.031037578\n\t\t -0.82628858 0.56233412 0.31861347 -0.73088759 0.6035341 0.25910234 -0.64677864 0.71730709\n\t\t 0.25910234 -0.64677864 0.71730709 -0.0013731063 -0.73317659 0.67998296 0.031037578\n\t\t -0.82628858 0.56233412 0.45097217 -0.50309747 0.73720515 0.25910234 -0.64677864 0.71730709\n\t\t 0.31861347 -0.73088759 0.6035341 0.31861347 -0.73088759 0.6035341 0.53096122 -0.56978035\n\t\t 0.62718594 0.45097217 -0.50309747 0.73720515 0.57850897 -0.33387226 0.74419385 0.45097217\n\t\t -0.50309747 0.73720515 0.53096122 -0.56978035 0.62718594 0.53096122 -0.56978035 0.62718594\n\t\t 0.66896582 -0.38673028 0.63472396 0.57850897 -0.33387226 0.74419385 0.65617853 -0.14416917\n\t\t 0.74065369 0.57850897 -0.33387226 0.74419385 0.66896582 -0.38673028 0.63472396 0.66896582\n\t\t -0.38673028 0.63472396 0.75630975 -0.1734364 0.63075656 0.65617853 -0.14416917 0.74065369\n\t\t 0.68385875 0.065523498 0.72664571 0.65617853 -0.14416917 0.74065369 0.75630975 -0.1734364\n\t\t 0.63075656 0.75630975 -0.1734364 0.63075656 0.78621787 0.053438198 0.61558884 0.68385875\n\t\t 0.065523498 0.72664571 0.64757216 0.30179781 0.69963682 0.68385875 0.065523498 0.72664571\n\t\t 0.78621787 0.053438198 0.61558884 0.78621787 0.053438198 0.61558884 0.74752027 0.31632462\n\t\t 0.58406323 0.64757216 0.30179781 0.69963682 0.52201891 0.54481667 0.65620893 0.64757216\n\t\t 0.30179781 0.69963682 0.74752027 0.31632462 0.58406323 0.74752027 0.31632462 0.58406323\n\t\t 0.60890514 0.5846433 0.53608805 0.52201891 0.54481667 0.65620893 0.35599822 0.71041006\n\t\t 0.60704362 0.52201891 0.54481667 0.65620893 0.60890514 0.5846433 0.53608805 0.60890514\n\t\t 0.5846433 0.53608805 0.38712704 0.78743875 0.47962883 0.35599822 0.71041006 0.60704362\n\t\t 0.35599822 0.71041006 0.60704362 0.38712704 0.78743875 0.47962883 0.20493151 0.89413136\n\t\t 0.39811391 0.20493151 0.89413136 0.39811391 0.27988502 0.79116195 0.5437482 0.35599822\n\t\t 0.71041006 0.60704362 -0.4148992 0.23212358 -0.87972653 -0.42887667 0.1590928 -0.88921779\n\t\t -0.47508159 -0.050233681 -0.87847531 -0.47508159 -0.050233681 -0.87847531 -0.42200992\n\t\t -0.054780923 -0.90490431 -0.4148992 0.23212358 -0.87972653 -0.42200992 -0.054780923\n\t\t -0.90490431 -0.47508159 -0.050233681 -0.87847531 -0.44785905 -0.26187953 -0.85485399\n\t\t -0.44785905 -0.26187953 -0.85485399 -0.39692363 -0.25006884 -0.8831141 -0.42200992\n\t\t -0.054780923 -0.90490431 -0.39692363 -0.25006884 -0.8831141 -0.44785905 -0.26187953\n\t\t -0.85485399 -0.35059649 -0.45023975 -0.82116145 -0.35059649 -0.45023975 -0.82116145\n\t\t -0.31253991 -0.51060534 -0.80095822 -0.39692363 -0.25006884 -0.8831141 -0.15155461\n\t\t -0.95400864 -0.25852224 -0.15155461 -0.95400864 -0.25852224 0.1732844 -0.96401864\n\t\t -0.20145261 0.1732844 -0.96401864 -0.20145261 0.1732844 -0.96401864 -0.20145261 -0.15155461\n\t\t -0.95400864 -0.25852224 0.1732844 -0.96401864 -0.20145261 0.48359656 -0.86107957\n\t\t -0.15698716 0.48362708 -0.86104906 -0.15701768 0.48362708 -0.86104906 -0.15701768\n\t\t 0.1732844 -0.96401864 -0.20145261 0.1732844 -0.96401864 -0.20145261 0.48359656 -0.86107957\n\t\t -0.15698716 0.74199671 -0.65755159 -0.1304971 0.74199671 -0.65752107 -0.13052762\n\t\t 0.74199671 -0.65752107 -0.13052762 0.48362708 -0.86104906 -0.15701768 0.48359656\n\t\t -0.86107957 -0.15698716 0.74199671 -0.65755159 -0.1304971 0.91729498 -0.37797144\n\t\t -0.12518689 0.91729498 -0.37797144 -0.12518689 0.91729498 -0.37797144 -0.12518689\n\t\t 0.74199671 -0.65752107 -0.13052762 0.74199671 -0.65755159 -0.1304971 0.91729498 -0.37797144\n\t\t -0.12518689 0.98831141 -0.056153763 -0.14169744 0.98831141 -0.056153763 -0.14166692\n\t\t 0.98831141 -0.056153763 -0.14166692;\n\tsetAttr \".n[5146:5311]\" -type \"float3\"  0.91729498 -0.37797144 -0.12518689 0.91729498\n\t\t -0.37797144 -0.12518689 0.98831141 -0.056153763 -0.14169744 0.94650102 0.26911253\n\t\t -0.17801449 0.94650102 0.26911253 -0.17801449 0.94650102 0.26911253 -0.17801449 0.98831141\n\t\t -0.056153763 -0.14166692 0.98831141 -0.056153763 -0.14169744 0.94650102 0.26911253\n\t\t -0.17801449 0.79692966 0.55864155 -0.22974338 0.79689914 0.55867207 -0.22977391 0.79689914\n\t\t 0.55867207 -0.22977391 0.94650102 0.26911253 -0.17801449 0.94650102 0.26911253 -0.17801449\n\t\t 0.79692966 0.55864155 -0.22974338 0.55760342 0.77752024 -0.29068887 0.5575729 0.77752024\n\t\t -0.29068887 0.5575729 0.77752024 -0.29068887 0.79689914 0.55867207 -0.22977391 0.79692966\n\t\t 0.55864155 -0.22974338 0.55760342 0.77752024 -0.29068887 0.25739285 0.89928895 -0.35349596\n\t\t 0.25739285 0.89928895 -0.35349596 0.25739285 0.89928895 -0.35349596 0.5575729 0.77752024\n\t\t -0.29068887 0.55760342 0.77752024 -0.29068887 0.25739285 0.89928895 -0.35349596 -0.067446187\n\t\t 0.90929896 -0.41059607 -0.067446187 0.90929896 -0.41059607 -0.067446187 0.90929896\n\t\t -0.41059607 0.25739285 0.89928895 -0.35349596 0.25739285 0.89928895 -0.35349596 -0.067446187\n\t\t 0.90929896 -0.41059607 -0.37778887 0.80632937 -0.45503104 -0.37778887 0.80632937\n\t\t -0.45503104 -0.37778887 0.80632937 -0.45503104 -0.067446187 0.90929896 -0.41059607\n\t\t -0.067446187 0.90929896 -0.41059607 -0.37778887 0.80632937 -0.45503104 -0.60695231\n\t\t 0.63414389 -0.47898805 -0.60844773 0.63258743 -0.47914067 -0.60844773 0.63258743\n\t\t -0.47914067 -0.37778887 0.80632937 -0.45503104 -0.37778887 0.80632937 -0.45503104\n\t\t -0.75649291 0.43623132 -0.48722804 -0.60844773 0.63258743 -0.47914067 -0.60695231\n\t\t 0.63414389 -0.47898805 -0.60695231 0.63414389 -0.47898805 -0.75756109 0.43436968\n\t\t -0.48719752 -0.75649291 0.43623132 -0.48722804 -0.75649291 0.43623132 -0.48722804\n\t\t -0.75756109 0.43436968 -0.48719752 -0.8509782 0.2062743 -0.48295546 -0.8509782 0.2062743\n\t\t -0.48295546 -0.85149699 0.20422956 -0.48289439 -0.75649291 0.43623132 -0.48722804\n\t\t -0.85149699 0.20422956 -0.48289439 -0.8509782 0.2062743 -0.48295546 -0.88357186 -0.04126133\n\t\t -0.46641439 -0.88357186 -0.04126133 -0.46641439 -0.88357186 -0.039063998 -0.46662802\n\t\t -0.85149699 0.20422956 -0.48289439 -0.88357186 -0.04126133 -0.46641439 -0.84066272\n\t\t -0.32383221 -0.4340342 -0.84066272 -0.32383221 -0.4340342 -0.84066272 -0.32383221\n\t\t -0.4340342 -0.88357186 -0.039063998 -0.46662802 -0.88357186 -0.04126133 -0.46641439\n\t\t -0.84066272 -0.32383221 -0.4340342 -0.69109148 -0.61339176 -0.38224426 -0.69109148\n\t\t -0.61339176 -0.38224426 -0.69109148 -0.61339176 -0.38224426 -0.84066272 -0.32383221\n\t\t -0.4340342 -0.84066272 -0.32383221 -0.4340342 -0.69109148 -0.61339176 -0.38224426\n\t\t -0.45173472 -0.83227038 -0.32129881 -0.45173472 -0.83227038 -0.32129881 -0.45173472\n\t\t -0.83227038 -0.32129881 -0.69109148 -0.61339176 -0.38224426 -0.69109148 -0.61339176\n\t\t -0.38224426 -0.45173472 -0.83227038 -0.32129881 -0.15155461 -0.95400864 -0.25852224\n\t\t -0.15155461 -0.95400864 -0.25852224 -0.15155461 -0.95400864 -0.25852224 -0.45173472\n\t\t -0.83227038 -0.32129881 -0.45173472 -0.83227038 -0.32129881 0.16971347 -0.087771259\n\t\t -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685\n\t\t 0.16971347 -0.087740734 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347\n\t\t -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087740734\n\t\t -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16974398 -0.087771259 -0.98156685\n\t\t 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347\n\t\t -0.087771259 -0.98156685 0.16974398 -0.087771259 -0.98156685 0.16971347 -0.087710217\n\t\t -0.98156685 0.16968295 -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685\n\t\t 0.16971347 -0.087710217 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16968295\n\t\t -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087771259\n\t\t -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685\n\t\t 0.16971347 -0.087771259 -0.98156685 0.16980502 -0.087832294 -0.98153633 0.16971347\n\t\t -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087771259\n\t\t -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685\n\t\t 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347\n\t\t -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087740734\n\t\t -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685\n\t\t 0.16971347 -0.087740734 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347\n\t\t -0.087771259 -0.98156685 0.16974398 -0.087771259 -0.98156685 0.16971347 -0.087771259\n\t\t -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16974398 -0.087771259 -0.98156685\n\t\t 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347\n\t\t -0.087771259 -0.98156685 0.16974398 -0.087740734 -0.98156685 0.16971347 -0.087771259\n\t\t -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685\n\t\t 0.16974398 -0.087740734 -0.98156685 0.16971347 -0.087740734 -0.98156685 0.16971347\n\t\t -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087740734\n\t\t -0.98156685 -0.069613025 0.99710071 0.03018273 0.18427046 0.97231978 0.14349796 0.20557238\n\t\t 0.97860658 0.0038757778 0.20557238 0.97860658 0.0038757778 -0.13577716 0.98913532\n\t\t -0.056093097 -0.069613025 0.99710071 0.03018273 -0.069613025 0.99710071 0.03018273\n\t\t -0.13577716 0.98913532 -0.056093097 -0.40531659 0.9035309 -0.13898137 -0.40531659\n\t\t 0.9035309 -0.13898137 -0.34446272 0.92788464 -0.14255203 -0.069613025 0.99710071\n\t\t 0.03018273 -0.34446272 0.92788464 -0.14255203 -0.40531659 0.9035309 -0.13898137 -0.52726853\n\t\t 0.83336878 -0.16571556 0.52104229 0.85064262 0.069856808 0.20557238 0.97860658 0.0038757778\n\t\t 0.18427046 0.97231978 0.14349796 0.18427046 0.97231978 0.14349796 0.48631218 0.84749919\n\t\t 0.21262239 0.52104229 0.85064262 0.069856808 0.7725454 0.62065518 0.13391517 0.52104229\n\t\t 0.85064262 0.069856808;\n\tsetAttr \".n[5312:5477]\" -type \"float3\"  0.48631218 0.84749919 0.21262239 0.48631218\n\t\t 0.84749919 0.21262239 0.7330544 0.62184536 0.27546 0.7725454 0.62065518 0.13391517\n\t\t 0.92971575 0.31638569 0.1883297 0.7725454 0.62065518 0.13391517 0.7330544 0.62184536\n\t\t 0.27546 0.7330544 0.62184536 0.27546 0.88729501 0.32328287 0.32883692 0.92971575\n\t\t 0.31638569 0.1883297 0.97470015 0.018036759 0.22269356 0.92971575 0.31638569 0.1883297\n\t\t 0.88729501 0.32328287 0.32883692 0.88729501 0.32328287 0.32883692 0.93118078 0.030366234\n\t\t 0.3632313 0.97470015 0.018036759 0.22269356 0.94079417 -0.23941739 0.2398755 0.97470015\n\t\t 0.018036759 0.22269356 0.93118078 0.030366234 0.3632313 0.93118078 0.030366234 0.3632313\n\t\t 0.8979767 -0.22168614 0.38004702 0.94079417 -0.23941739 0.2398755 0.84163958 -0.48155126\n\t\t 0.24436173 0.94079417 -0.23941739 0.2398755 0.8979767 -0.22168614 0.38004702 0.8979767\n\t\t -0.22168614 0.38004702 0.80050063 -0.45973057 0.38450274 0.84163958 -0.48155126 0.24436173\n\t\t 0.68501872 -0.6892603 0.2358776 0.84163958 -0.48155126 0.24436173 0.80050063 -0.45973057\n\t\t 0.38450274 0.80050063 -0.45973057 0.38450274 0.64717567 -0.66304493 0.37614068 0.68501872\n\t\t -0.6892603 0.2358776 0.44331214 -0.87130332 0.21039467 0.68501872 -0.6892603 0.2358776\n\t\t 0.64717567 -0.66304493 0.37614068 0.64717567 -0.66304493 0.37614068 0.41004696 -0.84200555\n\t\t 0.35050514 0.44331214 -0.87130332 0.21039467 0.11719138 -0.97952205 0.16367084 0.44331214\n\t\t -0.87130332 0.21039467 0.41004696 -0.84200555 0.35050514 0.41004696 -0.84200555 0.35050514\n\t\t 0.090060413 -0.94817954 0.30466634 0.11719138 -0.97952205 0.16367084 -0.22418867\n\t\t -0.96899325 0.10373248 0.11719138 -0.97952205 0.16367084 0.090060413 -0.94817954\n\t\t 0.30466634 0.090060413 -0.94817954 0.30466634 -0.24488024 -0.93786436 0.24582666\n\t\t -0.22418867 -0.96899325 0.10373248 -0.53962803 -0.84102929 0.037720941 -0.22418867\n\t\t -0.96899325 0.10373248 -0.24488024 -0.93786436 0.24582666 -0.24488024 -0.93786436\n\t\t 0.24582666 -0.55439901 -0.81228083 0.18106638 -0.53962803 -0.84102929 0.037720941\n\t\t -0.76424432 -0.64461219 -0.018677279 -0.53962803 -0.84102929 0.037720941 -0.55439901\n\t\t -0.81228083 0.18106638 -0.55439901 -0.81228083 0.18106638 -0.77492583 -0.61925131\n\t\t 0.12631616 -0.76424432 -0.64461219 -0.018677279 -0.8398692 -0.54118496 -0.041169427\n\t\t -0.76424432 -0.64461219 -0.018677279 -0.77492583 -0.61925131 0.12631616 -0.77492583\n\t\t -0.61925131 0.12631616 -0.84896374 -0.51792985 0.10467853 -0.8398692 -0.54118496\n\t\t -0.041169427 -0.16974398 0.087771259 0.98156685 -0.16971347 0.087771259 0.98156685\n\t\t -0.16971347 0.087740734 0.98156685 -0.16971347 0.087740734 0.98156685 -0.16971347\n\t\t 0.087740734 0.98156685 -0.16974398 0.087771259 0.98156685 -0.16971347 0.087740734\n\t\t 0.98156685 -0.16971347 0.087740734 0.98156685 -0.16971347 0.087740734 0.98156685\n\t\t -0.16971347 0.087740734 0.98156685 -0.16971347 0.087740734 0.98156685 -0.16971347\n\t\t 0.087740734 0.98156685 -0.16971347 0.087740734 0.98156685 -0.16971347 0.087740734\n\t\t 0.98156685 -0.16971347 0.087771259 0.98156685 -0.16971347 0.087771259 0.98156685\n\t\t -0.16971347 0.087771259 0.98156685 -0.16971347 0.087740734 0.98156685 -0.16971347\n\t\t 0.087771259 0.98156685 -0.16971347 0.087771259 0.98156685 -0.16968295 0.087771259\n\t\t 0.98156685 -0.16968295 0.087771259 0.98156685 -0.16968295 0.087771259 0.98156685\n\t\t -0.16971347 0.087771259 0.98156685 -0.16968295 0.087771259 0.98156685 -0.16968295\n\t\t 0.087771259 0.98156685 -0.1697745 0.087740734 0.98153633 -0.1697745 0.087740734 0.98153633\n\t\t -0.1697745 0.087740734 0.98153633 -0.16968295 0.087771259 0.98156685 -0.1697745 0.087740734\n\t\t 0.98153633 -0.1697745 0.087740734 0.98153633 -0.16971347 0.087740734 0.98156685 -0.16971347\n\t\t 0.087740734 0.98156685 -0.16971347 0.087771259 0.98156685 -0.1697745 0.087740734\n\t\t 0.98153633 -0.16971347 0.087771259 0.98156685 -0.16974398 0.087771259 0.98156685\n\t\t -0.16974398 0.087801777 0.98156685 -0.16974398 0.087801777 0.98156685 -0.16971347\n\t\t 0.087801777 0.98156685 -0.16971347 0.087771259 0.98156685 -0.16971347 0.087771259\n\t\t 0.98156685 -0.16971347 0.087740734 0.98156685 -0.16974398 0.087771259 0.98156685\n\t\t -0.16974398 0.087771259 0.98156685 -0.16974398 0.087801777 0.98153633 -0.16971347\n\t\t 0.087771259 0.98156685 -0.16971347 0.087740734 0.98156685 -0.16971347 0.087771259\n\t\t 0.98156685 -0.16971347 0.087710217 0.98156685 -0.16971347 0.087710217 0.98156685\n\t\t -0.16971347 0.087710217 0.98156685 -0.16971347 0.087740734 0.98156685 -0.16971347\n\t\t 0.087710217 0.98156685 -0.16971347 0.087710217 0.98156685 -0.16971347 0.087740734\n\t\t 0.98156685 -0.16971347 0.087740734 0.98156685 -0.16971347 0.087740734 0.98156685\n\t\t -0.16971347 0.087710217 0.98156685 -0.16971347 0.087740734 0.98156685 -0.16971347\n\t\t 0.087740734 0.98156685 -0.16971347 0.087801777 0.98156685 -0.16971347 0.087801777\n\t\t 0.98156685 -0.16971347 0.087801777 0.98156685 -0.16971347 0.087740734 0.98156685\n\t\t -0.16971347 0.087801777 0.98156685 -0.16971347 0.087801777 0.98156685 -0.16971347\n\t\t 0.087771259 0.98156685 -0.16971347 0.087771259 0.98156685 -0.16971347 0.087771259\n\t\t 0.98156685 -0.16971347 0.087801777 0.98156685 -0.16974398 0.087771259 0.98156685\n\t\t -0.16971347 0.087771259 0.98156685 -0.16971347 0.087771259 0.98156685 -0.16971347\n\t\t 0.087771259 0.98156685 -0.16974398 0.087771259 0.98156685 -0.16974398 0.087771259\n\t\t 0.98156685 -0.16971347 0.087771259 0.98156685 -0.16971347 0.087740734 0.98156685\n\t\t -0.16971347 0.087771259 0.98156685 -0.16971347 0.087771259 0.98156685 -0.16971347\n\t\t 0.087801777 0.98156685 -0.16971347 0.087771259 0.98156685 0.16971347 -0.087740734\n\t\t -0.98156685 0.16971347 -0.087740734 -0.98156685 0.16971347 -0.087801777 -0.98156685\n\t\t 0.16971347 -0.087801777 -0.98156685 0.16971347 -0.087801777 -0.98156685 0.16971347\n\t\t -0.087740734 -0.98156685 0.16971347 -0.087710217 -0.98156685 0.16971347 -0.087801777\n\t\t -0.98156685 0.16971347 -0.087801777 -0.98156685 0.16971347 -0.087801777 -0.98156685\n\t\t 0.16971347 -0.087710217 -0.98156685 0.16971347 -0.087710217 -0.98156685;\n\tsetAttr \".n[5478:5643]\" -type \"float3\"  0.16971347 -0.087771259 -0.98156685 0.16971347\n\t\t -0.087710217 -0.98156685 0.16971347 -0.087710217 -0.98156685 0.16971347 -0.087771259\n\t\t -0.98156685 0.16971347 -0.087710217 -0.98156685 0.16974398 -0.087801777 -0.98156685\n\t\t 0.16971347 -0.087771259 -0.98156685 0.16974398 -0.087801777 -0.98156685 0.16971347\n\t\t -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087771259\n\t\t -0.98156685 0.16968295 -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685\n\t\t 0.16971347 -0.087740734 -0.98156685 0.16971347 -0.087740734 -0.98156685 0.16971347\n\t\t -0.087740734 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087771259\n\t\t -0.98156685 0.16968295 -0.087801777 -0.98156685 0.16971347 -0.087771259 -0.98156685\n\t\t 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16965242\n\t\t -0.087801777 -0.98156685 0.16968295 -0.087801777 -0.98156685 0.16965242 -0.087771259\n\t\t -0.98156685 0.16968295 -0.087801777 -0.98156685 0.16965242 -0.087801777 -0.98156685\n\t\t 0.16965242 -0.087801777 -0.98156685 0.16965242 -0.087771259 -0.98156685 0.16965242\n\t\t -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16965242 -0.087771259\n\t\t -0.98156685 0.16965242 -0.087771259 -0.98156685 0.16965242 -0.087771259 -0.98156685\n\t\t 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347\n\t\t -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16974398 -0.087771259\n\t\t -0.98156685 0.16974398 -0.087771259 -0.98156685 0.16974398 -0.087771259 -0.98156685\n\t\t 0.16971347 -0.087771259 -0.98156685 0.16974398 -0.087771259 -0.98156685 0.16974398\n\t\t -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087771259\n\t\t -0.98156685 0.16974398 -0.087771259 -0.98156685 0.16974398 -0.087771259 -0.98156685\n\t\t 0.16971347 -0.087740734 -0.98156685 0.16974398 -0.087771259 -0.98156685 0.16971347\n\t\t -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087740734\n\t\t -0.98156685 0.16971347 -0.087740734 -0.98156685 0.16971347 -0.087771259 -0.98156685\n\t\t 0.16971347 -0.087740734 -0.98156685 0.16971347 -0.087740734 -0.98156685 0.16971347\n\t\t -0.087740734 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087771259\n\t\t -0.98156685 0.16971347 -0.087801777 -0.98156685 0.16971347 -0.087771259 -0.98156685\n\t\t 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347\n\t\t -0.087801777 -0.98156685 0.16971347 -0.087801777 -0.98156685 0.16971347 -0.087801777\n\t\t -0.98156685 0.16971347 -0.087801777 -0.98156685 0.16971347 -0.087801777 -0.98156685\n\t\t 0.16971347 -0.087801777 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347\n\t\t -0.087801777 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087801777\n\t\t -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685\n\t\t 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16974398\n\t\t -0.087771259 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087771259\n\t\t -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16974398 -0.087740734 -0.98156685\n\t\t 0.16974398 -0.087771259 -0.98156685 0.16974398 -0.087771259 -0.98156685 0.16974398\n\t\t -0.087740734 -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16971347 -0.087771259\n\t\t -0.98156685 0.16971347 -0.087771259 -0.98156685 0.16974398 -0.087771259 -0.98156685\n\t\t 0.12359997 -0.024811434 0.99200416 -0.059511065 -0.10226747 0.9929502 0.035340462\n\t\t -0.087679595 0.9955138 0.12359997 -0.024811434 0.99200416 0.035340462 -0.087679595\n\t\t 0.9955138 0.14169742 0.040681291 0.98904383 0.12359997 -0.024811434 0.99200416 0.14169742\n\t\t 0.040681291 0.98904383 0.11673326 0.11117904 0.98690754 0.53733921 0.49418646 0.68337041\n\t\t 0.55037063 0.49440008 0.67278045 0.53453153 0.49412543 0.68559825 0.53453153 0.49412543\n\t\t 0.68559825 0.52290398 0.49382022 0.69475383 0.53733921 0.49418646 0.68337041 0.6579178\n\t\t 0.74840558 0.08362066 0.71492636 0.6831876 0.14865561 0.66365528 0.7126379 0.22727127\n\t\t 0.66365528 0.7126379 0.22727127 0.61522239 0.76387846 0.19476907 0.6579178 0.74840558\n\t\t 0.08362066 0.62132609 0.78350186 0.0029907557 0.6579178 0.74840558 0.08362066 0.61522239\n\t\t 0.76387846 0.19476907 0.61522239 0.76387846 0.19476907 0.5844292 0.80672646 0.087343916\n\t\t 0.62132609 0.78350186 0.0029907557 0.55287308 0.83187371 0.047334146 0.62132609 0.78350186\n\t\t 0.0029907557 0.5844292 0.80672646 0.087343916 0.5844292 0.80672646 0.087343916 0.52095073\n\t\t 0.85067314 0.070284069 0.55287308 0.83187371 0.047334146 -0.29810461 -0.60344255\n\t\t 0.73955512 -0.34055588 -0.6086002 0.7166357 -0.30097336 -0.60383928 0.73809022 -0.30097336\n\t\t -0.60383928 0.73809022 -0.26044479 -0.59776604 0.75814086 -0.29810461 -0.60344255\n\t\t 0.73955512 -0.35084048 -0.9286173 0.12070077 -0.41236582 -0.8888517 0.19968267 -0.3633531\n\t\t -0.90069288 0.23810548 -0.3633531 -0.90069288 0.23810548 -0.31742272 -0.93508726\n\t\t 0.15747558 -0.35084048 -0.9286173 0.12070077 -0.31769738 -0.94805759 0.014099622\n\t\t -0.35084048 -0.9286173 0.12070077 -0.31742272 -0.93508726 0.15747558 -0.31742272\n\t\t -0.93508726 0.15747558 -0.28672111 -0.95718259 0.039338429 -0.31769738 -0.94805759\n\t\t 0.014099622 -0.2400583 -0.97009194 0.035676207 -0.31769738 -0.94805759 0.014099622\n\t\t -0.28672111 -0.95718259 0.039338429 -0.28672111 -0.95718259 0.039338429 -0.2151552\n\t\t -0.97528005 0.049989391 -0.2400583 -0.97009194 0.035676207 0.94686741 -0.29734153\n\t\t 0.12244029 0.8820461 -0.45564109 0.1196631 0.91579956 -0.40009737 -0.034882627 0.91579956\n\t\t -0.40009737 -0.034882627 0.91216785 -0.40974125 -0.0043030796 0.94686741 -0.29734153\n\t\t 0.12244029 0.91216785 -0.40974125 -0.0043030796 0.91579956 -0.40009737 -0.034882627\n\t\t 0.90881079 -0.41547871 -0.03769033 0.91579956 -0.40009737 -0.034882627 0.88592196\n\t\t -0.45728907 -0.077455938 0.90881079 -0.41547871 -0.03769033 0.91579956 -0.40009737\n\t\t -0.034882627 0.88628817 -0.45658717 -0.077242307 0.88592196 -0.45728907 -0.077455938\n\t\t 0.91216785 -0.40974125 -0.0043030796 0.90881079 -0.41547871 -0.03769033 0.90484339\n\t\t -0.42570242 -0.0025940416 0.90881079 -0.41547871 -0.03769033;\n\tsetAttr \".n[5644:5809]\" -type \"float3\"  0.90432459 -0.42677057 0.0012207722 0.90484339\n\t\t -0.42570242 -0.0025940416 0.90881079 -0.41547871 -0.03769033 0.90362269 -0.42817441\n\t\t 0.0094607696 0.90432459 -0.42677057 0.0012207722 -0.17569505 -0.060335223 -0.98257393\n\t\t -0.17569505 -0.060304705 -0.98257393 -0.16608171 -0.060091071 -0.98425245 -0.16608171\n\t\t -0.060091071 -0.98425245 -0.16608171 -0.060091071 -0.98425245 -0.17569505 -0.060335223\n\t\t -0.98257393 -0.16608171 -0.060091071 -0.98425245 -0.16608171 -0.060091071 -0.98425245\n\t\t -0.15689564 -0.063051365 -0.98556477 -0.15689564 -0.063051365 -0.98556477 -0.15689564\n\t\t -0.063051365 -0.98559529 -0.16608171 -0.060091071 -0.98425245 -0.15689564 -0.063051365\n\t\t -0.98559529 -0.15689564 -0.063051365 -0.98556477 -0.14926602 -0.069063507 -0.98635823\n\t\t -0.14926602 -0.069063507 -0.98635823 -0.14926602 -0.069063507 -0.98635823 -0.15689564\n\t\t -0.063051365 -0.98559529 -0.14926602 -0.069063507 -0.98635823 -0.14926602 -0.069063507\n\t\t -0.98635823 -0.14407785 -0.077364542 -0.98651081 -0.14407785 -0.077364542 -0.98651081\n\t\t -0.14407785 -0.077364542 -0.98651081 -0.14926602 -0.069063507 -0.98635823 -0.14407785\n\t\t -0.077364542 -0.98651081 -0.14407785 -0.077364542 -0.98651081 -0.14203312 -0.086855799\n\t\t -0.98602253 -0.14203312 -0.086855799 -0.98602253 -0.14203312 -0.086886317 -0.98602253\n\t\t -0.14407785 -0.077364542 -0.98651081 -0.14203312 -0.086886317 -0.98602253 -0.14203312\n\t\t -0.086855799 -0.98602253 -0.14328437 -0.096469127 -0.98495436 -0.14328437 -0.096469127\n\t\t -0.98495436 -0.14328437 -0.096469127 -0.98495436 -0.14203312 -0.086886317 -0.98602253\n\t\t -0.14328437 -0.096469127 -0.98495436 -0.14328437 -0.096469127 -0.98495436 -0.14764851\n\t\t -0.10504483 -0.98342848 -0.14764851 -0.10504483 -0.98342848 -0.147618 -0.10504483\n\t\t -0.98342848 -0.14328437 -0.096469127 -0.98495436 -0.17569505 -0.060304705 -0.98257393\n\t\t -0.17569505 -0.060335223 -0.98257393 -0.18460645 -0.063905895 -0.98071229 -0.18460645\n\t\t -0.063905895 -0.98071229 -0.18460645 -0.063905895 -0.98071229 -0.17569505 -0.060304705\n\t\t -0.98257393 -0.18460645 -0.063905895 -0.98071229 -0.18460645 -0.063905895 -0.98071229\n\t\t -0.1916257 -0.070406333 -0.9789117 -0.1916257 -0.070406333 -0.9789117 -0.1916257\n\t\t -0.070406333 -0.9789117 -0.18460645 -0.063905895 -0.98071229 -0.1916257 -0.070406333\n\t\t -0.9789117 -0.1916257 -0.070406333 -0.9789117 -0.1960814 -0.078951515 -0.97738576\n\t\t -0.1960814 -0.078951515 -0.97738576 -0.19611192 -0.078951515 -0.97738576 -0.1916257\n\t\t -0.070406333 -0.9789117 -0.19611192 -0.078951515 -0.97738576 -0.1960814 -0.078951515\n\t\t -0.97738576 -0.19739369 -0.08725255 -0.9764092 -0.19739369 -0.08725255 -0.9764092\n\t\t -0.19736317 -0.087435663 -0.9764092 -0.19611192 -0.078951515 -0.97738576 -0.19736317\n\t\t -0.087435663 -0.9764092 -0.19739369 -0.08725255 -0.9764092 -0.19635606 -0.094729587\n\t\t -0.97592092 -0.19635606 -0.094729587 -0.97592092 -0.19638658 -0.094515957 -0.97595143\n\t\t -0.19736317 -0.087435663 -0.9764092 -0.19638658 -0.094515957 -0.97595143 -0.19635606\n\t\t -0.094729587 -0.97592092 -0.19367044 -0.10129106 -0.97579885 -0.19367044 -0.10129106\n\t\t -0.97579885 -0.19354835 -0.10147418 -0.97579885 -0.19638658 -0.094515957 -0.97595143\n\t\t -0.19354835 -0.10147418 -0.97579885 -0.19367044 -0.10129106 -0.97579885 -0.18912317\n\t\t -0.10730322 -0.97604299 -0.18912317 -0.10730322 -0.97604299 -0.18927577 -0.10718115\n\t\t -0.97604299 -0.19354835 -0.10147418 -0.97579885 -0.18927577 -0.10718115 -0.97604299\n\t\t -0.18912317 -0.10730322 -0.97604299 -0.18240911 -0.1123998 -0.97674489 -0.18240911\n\t\t -0.1123998 -0.97674489 -0.18240911 -0.1123998 -0.97674489 -0.18927577 -0.10718115\n\t\t -0.97604299 -0.18240911 -0.1123998 -0.97674489 -0.18240911 -0.1123998 -0.97674489\n\t\t -0.17322303 -0.11536009 -0.97808772 -0.17322303 -0.11536009 -0.97808772 -0.17322303\n\t\t -0.11536009 -0.97808772 -0.18240911 -0.1123998 -0.97674489 -0.17322303 -0.11536009\n\t\t -0.97808772 -0.17322303 -0.11536009 -0.97808772 -0.1636097 -0.11508542 -0.97976625\n\t\t -0.1636097 -0.11508542 -0.97976625 -0.1636097 -0.11511595 -0.97976625 -0.17322303\n\t\t -0.11536009 -0.97808772 -0.1636097 -0.11511595 -0.97976625 -0.1636097 -0.11508542\n\t\t -0.97976625 -0.1546983 -0.11157579 -0.98162788 -0.1546983 -0.11157579 -0.98162788\n\t\t -0.15466778 -0.11160631 -0.98162788 -0.1636097 -0.11511595 -0.97976625 -0.15466778\n\t\t -0.11160631 -0.98162788 -0.1546983 -0.11157579 -0.98162788 -0.147618 -0.10504483\n\t\t -0.98342848 -0.147618 -0.10504483 -0.98342848 -0.14764851 -0.10504483 -0.98342848\n\t\t -0.15466778 -0.11160631 -0.98162788 0.20554236 -0.62514114 -0.75292206 0.23136102\n\t\t -0.63438827 -0.73754078 0.40067765 -0.47959831 -0.78063291 0.40067765 -0.47959831\n\t\t -0.78063291 0.35056627 -0.45023951 -0.82119197 0.20554236 -0.62514114 -0.75292206\n\t\t 0.23136102 -0.63438827 -0.73754078 0.20554236 -0.62514114 -0.75292206 0.014160807\n\t\t -0.7087009 -0.70531321 0.014160807 -0.7087009 -0.70531321 0.018982736 -0.72051156\n\t\t -0.69316685 0.23136102 -0.63438827 -0.73754078 0.018982736 -0.72051156 -0.69316685\n\t\t 0.014160807 -0.7087009 -0.70531321 -0.21115734 -0.71565914 -0.66573071 -0.21115734\n\t\t -0.71565914 -0.66573071 -0.21079113 -0.72765297 -0.65272981 0.018982736 -0.72051156\n\t\t -0.69316685 -0.21079113 -0.72765297 -0.65272981 -0.21115734 -0.71565914 -0.66573071\n\t\t -0.42640442 -0.64424592 -0.63487649 -0.42640442 -0.64424592 -0.63487649 -0.43037182\n\t\t -0.6548053 -0.62123471 -0.21079113 -0.72765297 -0.65272981 -0.43037182 -0.6548053\n\t\t -0.62123471 -0.42640442 -0.64424592 -0.63487649 -0.5859552 -0.52476603 -0.61745042\n\t\t -0.5859552 -0.52476603 -0.61745042 -0.59178424 -0.53398257 -0.60380864 -0.43037182\n\t\t -0.6548053 -0.62123471 -0.59178424 -0.53398257 -0.60380864 -0.5859552 -0.52476603\n\t\t -0.61745042 -0.68553716 -0.38877556 -0.61549729 -0.68553716 -0.38877556 -0.61549729\n\t\t -0.69978929 -0.39072871 -0.59797966 -0.59178424 -0.53398257 -0.60380864 -0.69978929\n\t\t -0.39072871 -0.59797966 -0.68553716 -0.38877556 -0.61549729 -0.75328833 -0.22345681\n\t\t -0.61854917 -0.75328833 -0.22345681 -0.61854917 -0.76503795 -0.23151369 -0.60090947\n\t\t -0.69978929 -0.39072871 -0.59797966 -0.76503795 -0.23151369 -0.60090947 -0.75328833\n\t\t -0.22345681 -0.61854917 -0.77764213 -0.056795236 -0.62611777 -0.77764213 -0.056795236\n\t\t -0.62611777 -0.78844571 -0.053865455 -0.61268961;\n\tsetAttr \".n[5810:5975]\" -type \"float3\"  -0.76503795 -0.23151369 -0.60090947 -0.78844571\n\t\t -0.053865455 -0.61268961 -0.77764213 -0.056795236 -0.62611777 -0.74745941 0.13965242\n\t\t -0.64943385 -0.74745941 0.13965242 -0.64943385 -0.75789672 0.14477952 -0.63606679\n\t\t -0.78844571 -0.053865455 -0.61268961 -0.75789672 0.14477952 -0.63606679 -0.74745941\n\t\t 0.13965242 -0.64943385 -0.64369655 0.34043372 -0.68535417 -0.64369655 0.34043372\n\t\t -0.68535417 -0.65202808 0.34961978 -0.67271948 -0.75789672 0.14477952 -0.63606679\n\t\t -0.65202808 0.34961978 -0.67271948 -0.64369655 0.34043372 -0.68535417 -0.47767586\n\t\t 0.49223283 -0.72765291 -0.47767586 0.49223283 -0.72765291 -0.48268089 0.50444019\n\t\t -0.71590328 -0.65202808 0.34961978 -0.67271948 -0.48268089 0.50444019 -0.71590328\n\t\t -0.47767586 0.49223283 -0.72765291 -0.26947862 0.57670814 -0.7712028 -0.26947862\n\t\t 0.57670814 -0.7712028 -0.27030262 0.59059405 -0.76033819 -0.48268089 0.50444019 -0.71590328\n\t\t -0.27030262 0.59059405 -0.76033819 -0.26947862 0.57670814 -0.7712028 -0.044129945\n\t\t 0.58363593 -0.81078529 -0.044129945 0.58363593 -0.81078529 -0.040498249 0.59767443\n\t\t -0.80068368 -0.27030262 0.59059405 -0.76033819 -0.040498249 0.59767443 -0.80068368\n\t\t -0.044129945 0.58363593 -0.81078529 0.17105608 0.51219213 -0.84163952 0.17105608\n\t\t 0.51219213 -0.84163952 0.17902142 0.52476579 -0.83217877 -0.040498249 0.59767443\n\t\t -0.80068368 0.17902142 0.52476579 -0.83217877 0.17105608 0.51219213 -0.84163952 0.34028125\n\t\t 0.37577447 -0.86193424 0.34028125 0.37577447 -0.86193424 0.36182731 0.38087106 -0.85085607\n\t\t 0.17902142 0.52476579 -0.83217877 0.36182731 0.38087106 -0.85085607 0.34028125 0.37577447\n\t\t -0.86193424 0.42887655 0.15912358 -0.88921779 0.42887655 0.15912358 -0.88921779 0.48579356\n\t\t 0.18305011 -0.85467088 0.36182731 0.38087106 -0.85085607 0.48579356 0.18305011 -0.85467088\n\t\t 0.42887655 0.15912358 -0.88921779 0.47505113 -0.050263908 -0.87850583 0.47505113\n\t\t -0.050263908 -0.87850583 0.53605759 -0.044587441 -0.84298229 0.48579356 0.18305011\n\t\t -0.85467088 0.53605759 -0.044587441 -0.84298229 0.47505113 -0.050263908 -0.87850583\n\t\t 0.44785923 -0.26184872 -0.85485399 0.44785923 -0.26184872 -0.85485399 0.50648522\n\t\t -0.27472752 -0.81728566 0.53605759 -0.044587441 -0.84298229 0.50648522 -0.27472752\n\t\t -0.81728566 0.44785923 -0.26184872 -0.85485399 0.35056627 -0.45023951 -0.82119197\n\t\t 0.35056627 -0.45023951 -0.82119197 0.40067765 -0.47959831 -0.78063291 0.50648522\n\t\t -0.27472752 -0.81728566 -0.017884057 0.67915887 -0.7337566 -0.044129945 0.58363593\n\t\t -0.81078529 -0.26947862 0.57670814 -0.7712028 -0.26947862 0.57670814 -0.7712028 -0.27359864\n\t\t 0.67125452 -0.68886387 -0.017884057 0.67915887 -0.7337566 -0.044129945 0.58363593\n\t\t -0.81078529 -0.017884057 0.67915887 -0.7337566 0.21423976 0.59669793 -0.77330858\n\t\t 0.21423976 0.59669793 -0.77330858 0.17105608 0.51219213 -0.84163952 -0.044129945\n\t\t 0.58363593 -0.81078529 0.27768767 0.73863947 -0.61418504 0.21423976 0.59669793 -0.77330858\n\t\t -0.017884057 0.67915887 -0.7337566 -0.017884057 0.67915887 -0.7337566 0.027191741\n\t\t 0.81615645 -0.57713556 0.27768767 0.73863947 -0.61418504 0.027191741 0.81615645 -0.57713556\n\t\t -0.017884057 0.67915887 -0.7337566 -0.27359864 0.67125452 -0.68886387 -0.27359864\n\t\t 0.67125452 -0.68886387 -0.27076045 0.8069703 -0.52479637 0.027191741 0.81615645 -0.57713556\n\t\t 0.17105608 0.51219213 -0.84163952 0.21423976 0.59669793 -0.77330858 0.36732063 0.43809327\n\t\t -0.82042915 0.36732063 0.43809327 -0.82042915 0.34028125 0.37577447 -0.86193424 0.17105608\n\t\t 0.51219213 -0.84163952 0.21423976 0.59669793 -0.77330858 0.27768767 0.73863947 -0.61418504\n\t\t 0.39555019 0.63377792 -0.66469318 0.21423976 0.59669793 -0.77330858 0.39555019 0.63377792\n\t\t -0.66469318 0.36732063 0.43809327 -0.82042915 0.39555019 0.63377792 -0.66469318 0.45146012\n\t\t 0.54756314 -0.70448935 0.36732063 0.43809327 -0.82042915 0.40736094 0.36008796 -0.83925903\n\t\t 0.34028125 0.37577447 -0.86193424 0.36732063 0.43809327 -0.82042915 0.40736094 0.36008796\n\t\t -0.83925903 0.3975645 0.34568322 -0.84994048 0.34028125 0.37577447 -0.86193424 0.3975645\n\t\t 0.34568322 -0.84994048 0.42887655 0.15912358 -0.88921779 0.34028125 0.37577447 -0.86193424\n\t\t -0.27359864 0.67125452 -0.68886387 -0.26947862 0.57670814 -0.7712028 -0.47767586\n\t\t 0.49223283 -0.72765291 -0.47767586 0.49223283 -0.72765291 -0.50993395 0.57539576\n\t\t -0.63939333 -0.27359864 0.67125452 -0.68886387 -0.27076045 0.8069703 -0.52479637\n\t\t -0.27359864 0.67125452 -0.68886387 -0.50993395 0.57539576 -0.63939333 -0.50993395\n\t\t 0.57539576 -0.63939333 -0.47767586 0.49223283 -0.72765291 -0.64369655 0.34043372\n\t\t -0.68535417 -0.64369655 0.34043372 -0.68535417 -0.6983552 0.40308824 -0.59141827\n\t\t -0.50993395 0.57539576 -0.63939333 -0.6983552 0.40308824 -0.59141827 -0.64369655\n\t\t 0.34043372 -0.68535417 -0.74745941 0.13965242 -0.64943385 -0.74745941 0.13965242\n\t\t -0.64943385 -0.81609553 0.17514543 -0.55067599 -0.6983552 0.40308824 -0.59141827\n\t\t -0.81609553 0.17514543 -0.55067599 -0.74745941 0.13965242 -0.64943385 -0.77764213\n\t\t -0.056795236 -0.62611777 -0.77764213 -0.056795236 -0.62611777 -0.84878081 -0.048097473\n\t\t -0.52650535 -0.81609553 0.17514543 -0.55067599 -0.84878081 -0.048097473 -0.52650535\n\t\t -0.77764213 -0.056795236 -0.62611777 -0.75328833 -0.22345681 -0.61854917 -0.75328833\n\t\t -0.22345681 -0.61854917 -0.82955408 -0.2095709 -0.5175634 -0.84878081 -0.048097473\n\t\t -0.52650535 -0.79033774 -0.33326238 -0.51408428 -0.82955408 -0.2095709 -0.5175634\n\t\t -0.75328833 -0.22345681 -0.61854917 -0.79033774 -0.33326238 -0.51408428 -0.75328833\n\t\t -0.22345681 -0.61854917 -0.68553716 -0.38877556 -0.61549729 -0.79033774 -0.33326238\n\t\t -0.51408428 -0.68553716 -0.38877556 -0.61549729 -0.73152858 -0.44892755 -0.51310766\n\t\t -0.73152858 -0.44892755 -0.51310766 -0.68553716 -0.38877556 -0.61549729 -0.5859552\n\t\t -0.52476603 -0.61745042 -0.5859552 -0.52476603 -0.61745042 -0.63188559 -0.57768512\n\t\t -0.51667833 -0.73152858 -0.44892755 -0.51310766 -0.63188559 -0.57768512 -0.51667833\n\t\t -0.5859552 -0.52476603 -0.61745042 -0.42640442 -0.64424592 -0.63487649;\n\tsetAttr \".n[5976:6141]\" -type \"float3\"  -0.42640442 -0.64424592 -0.63487649 -0.45170426\n\t\t -0.71456057 -0.53413486 -0.63188559 -0.57768512 -0.51667833 -0.45170426 -0.71456057\n\t\t -0.53413486 -0.42640442 -0.64424592 -0.63487649 -0.21115734 -0.71565914 -0.66573071\n\t\t -0.21115734 -0.71565914 -0.66573071 -0.20740354 -0.79564816 -0.56910908 -0.45170426\n\t\t -0.71456057 -0.53413486 -0.20740354 -0.79564816 -0.56910908 -0.21115734 -0.71565914\n\t\t -0.66573071 0.014160807 -0.7087009 -0.70531321 0.014160807 -0.7087009 -0.70531321\n\t\t 0.048311044 -0.78774381 -0.61406285 -0.20740354 -0.79564816 -0.56910908 0.048311044\n\t\t -0.78774381 -0.61406285 0.014160807 -0.7087009 -0.70531321 0.20554236 -0.62514114\n\t\t -0.75292206 0.20554236 -0.62514114 -0.75292206 0.25592843 -0.70763266 -0.65855885\n\t\t 0.048311044 -0.78774381 -0.61406285 0.3388167 -0.63457131 -0.69460124 0.25592843\n\t\t -0.70763266 -0.65855885 0.20554236 -0.62514114 -0.75292206 0.3388167 -0.63457131\n\t\t -0.69460124 0.20554236 -0.62514114 -0.75292206 0.3125402 -0.5106051 -0.80095822 0.20554236\n\t\t -0.62514114 -0.75292206 0.35056627 -0.45023951 -0.82119197 0.3125402 -0.5106051 -0.80095822\n\t\t 0.3388167 -0.63457131 -0.69460124 0.3125402 -0.5106051 -0.80095822 0.42436007 -0.56349367\n\t\t -0.70873129 0.10434306 -0.89303261 -0.43766588 0.048311044 -0.78774381 -0.61406285\n\t\t 0.25592843 -0.70763266 -0.65855885 0.25592843 -0.70763266 -0.65855885 0.34717882\n\t\t -0.80043942 -0.48860127 0.10434306 -0.89303261 -0.43766588 0.34717882 -0.80043942\n\t\t -0.48860127 0.25592843 -0.70763266 -0.65855885 0.3388167 -0.63457131 -0.69460124\n\t\t 0.3388167 -0.63457131 -0.69460124 0.44022974 -0.73885304 -0.51014733 0.34717882 -0.80043942\n\t\t -0.48860127 0.048311044 -0.78774381 -0.61406285 0.10434306 -0.89303261 -0.43766588\n\t\t -0.19363967 -0.90221876 -0.38529614 -0.19363967 -0.90221876 -0.38529614 -0.20740354\n\t\t -0.79564816 -0.56910908 0.048311044 -0.78774381 -0.61406285 -0.20740354 -0.79564816\n\t\t -0.56910908 -0.19363967 -0.90221876 -0.38529614 -0.47828585 -0.80779457 -0.34449288\n\t\t -0.47828585 -0.80779457 -0.34449288 -0.45170426 -0.71456057 -0.53413486 -0.20740354\n\t\t -0.79564816 -0.56910908 -0.45170426 -0.71456057 -0.53413486 -0.47828585 -0.80779457\n\t\t -0.34449288 -0.68898571 -0.64879322 -0.32297733 0.39411631 -0.83855695 -0.37607953\n\t\t 0.34717882 -0.80043942 -0.48860127 0.44022974 -0.73885304 -0.51014733 0.44022974\n\t\t -0.73885304 -0.51014733 0.4932709 -0.77318627 -0.39854115 0.39411631 -0.83855695\n\t\t -0.37607953 0.13565506 -0.93676561 -0.32248902 0.10434306 -0.89303261 -0.43766588\n\t\t 0.34717882 -0.80043942 -0.48860127 0.34717882 -0.80043942 -0.48860127 0.39411631\n\t\t -0.83855695 -0.37607953 0.13565506 -0.93676561 -0.32248902 0.14529893 -0.9476912\n\t\t -0.28412727 0.13565506 -0.93676561 -0.32248902 0.39411631 -0.83855695 -0.37607953\n\t\t 0.39411631 -0.83855695 -0.37607953 0.40891778 -0.84749889 -0.33838916 0.14529893\n\t\t -0.9476912 -0.28412727 0.40891778 -0.84749889 -0.33838916 0.39411631 -0.83855695\n\t\t -0.37607953 0.4932709 -0.77318627 -0.39854115 0.4932709 -0.77318627 -0.39854115 0.50886589\n\t\t -0.78160936 -0.36066768 0.40891778 -0.84749889 -0.33838916 -0.18118809 -0.94653165\n\t\t -0.26685378 -0.19363967 -0.90221876 -0.38529614 0.10434306 -0.89303261 -0.43766588\n\t\t 0.10434306 -0.89303261 -0.43766588 0.13565506 -0.93676561 -0.32248902 -0.18118809\n\t\t -0.94653165 -0.26685378 0.13565506 -0.93676561 -0.32248902 0.14529893 -0.9476912\n\t\t -0.28412727 -0.17651877 -0.95760983 -0.22757645 -0.17651877 -0.95760983 -0.22757645\n\t\t -0.18118809 -0.94653165 -0.26685378 0.13565506 -0.93676561 -0.32248902 -0.48384017\n\t\t -0.84609532 -0.22348699 -0.47828585 -0.80779457 -0.34449288 -0.19363967 -0.90221876\n\t\t -0.38529614 -0.19363967 -0.90221876 -0.38529614 -0.18118809 -0.94653165 -0.26685378\n\t\t -0.48384017 -0.84609532 -0.22348699 -0.18118809 -0.94653165 -0.26685378 -0.17651877\n\t\t -0.95760983 -0.22757645 -0.48399279 -0.85558659 -0.18356878 -0.48399279 -0.85558659\n\t\t -0.18356878 -0.48384017 -0.84609532 -0.22348699 -0.18118809 -0.94653165 -0.26685378\n\t\t -0.70802915 -0.6772365 -0.1999267 -0.68898571 -0.64879322 -0.32297733 -0.47828585\n\t\t -0.80779457 -0.34449288 -0.47828585 -0.80779457 -0.34449288 -0.48384017 -0.84609532\n\t\t -0.22348699 -0.70802915 -0.6772365 -0.1999267 -0.48384017 -0.84609532 -0.22348699\n\t\t -0.48399279 -0.85558659 -0.18356878 -0.71251541 -0.68334019 -0.15912347 -0.71251541\n\t\t -0.68334019 -0.15912347 -0.70802915 -0.6772365 -0.1999267 -0.48384017 -0.84609532\n\t\t -0.22348699 -0.70802915 -0.6772365 -0.1999267 -0.71251541 -0.68334019 -0.15912347\n\t\t -0.79186356 -0.59123534 -0.15277562 -0.79186356 -0.59123534 -0.15277562 -0.78691959\n\t\t -0.585742 -0.1939756 -0.70802915 -0.6772365 -0.1999267 -0.78579038 -0.57142884 -0.2365184\n\t\t -0.70802915 -0.6772365 -0.1999267 -0.78691959 -0.585742 -0.1939756 -0.68898571 -0.64879322\n\t\t -0.32297733 -0.70802915 -0.6772365 -0.1999267 -0.78579038 -0.57142884 -0.2365184\n\t\t -0.78579038 -0.57142884 -0.2365184 -0.8253119 -0.51295537 -0.23593855 -0.68898571\n\t\t -0.64879322 -0.32297733 -0.78579038 -0.57142884 -0.2365184 -0.86510807 -0.44364786\n\t\t -0.23389383 -0.8253119 -0.51295537 -0.23593855 -0.8253119 -0.51295537 -0.23593855\n\t\t -0.86510807 -0.44364786 -0.23389383 -0.86516911 -0.44361734 -0.23377176 -0.86516911\n\t\t -0.44361734 -0.23377176 -0.84371459 -0.43275276 -0.31754506 -0.8253119 -0.51295537\n\t\t -0.23593855 -0.84371459 -0.43275276 -0.31754506 -0.86516911 -0.44361734 -0.23377176\n\t\t -0.8509475 -0.355663 -0.38642535 -0.79033774 -0.33326238 -0.51408428 -0.84371459\n\t\t -0.43275276 -0.31754506 -0.8509475 -0.355663 -0.38642535 -0.8509475 -0.355663 -0.38642535\n\t\t -0.90069264 -0.29346627 -0.32032225 -0.79033774 -0.33326238 -0.51408428 -0.84371459\n\t\t -0.43275276 -0.31754506 -0.79033774 -0.33326238 -0.51408428 -0.73152858 -0.44892755\n\t\t -0.51310766 -0.73152858 -0.44892755 -0.51310766 -0.80608523 -0.49937463 -0.31748402\n\t\t -0.84371459 -0.43275276 -0.31754506 -0.8253119 -0.51295537 -0.23593855 -0.84371459\n\t\t -0.43275276 -0.31754506 -0.80608523 -0.49937463 -0.31748402 -0.80608523 -0.49937463\n\t\t -0.31748402 -0.73152858 -0.44892755 -0.51310766 -0.63188559 -0.57768512 -0.51667833\n\t\t -0.63188559 -0.57768512 -0.51667833;\n\tsetAttr \".n[6142:6307]\" -type \"float3\"  -0.68898571 -0.64879322 -0.32297733 -0.80608523\n\t\t -0.49937463 -0.31748402 -0.68898571 -0.64879322 -0.32297733 -0.8253119 -0.51295537\n\t\t -0.23593855 -0.80608523 -0.49937463 -0.31748402 -0.68898571 -0.64879322 -0.32297733\n\t\t -0.63188559 -0.57768512 -0.51667833 -0.45170426 -0.71456057 -0.53413486 -0.79033774\n\t\t -0.33326238 -0.51408428 -0.90069264 -0.29346627 -0.32032225 -0.92062128 -0.21967255\n\t\t -0.32270268 -0.92062128 -0.21967255 -0.32270268 -0.82955408 -0.2095709 -0.5175634\n\t\t -0.79033774 -0.33326238 -0.51408428 -0.82955408 -0.2095709 -0.5175634 -0.92062128\n\t\t -0.21967255 -0.32270268 -0.94186223 -0.031342827 -0.33445233 -0.94186223 -0.031342827\n\t\t -0.33445233 -0.84878081 -0.048097473 -0.52650535 -0.82955408 -0.2095709 -0.5175634\n\t\t -0.84878081 -0.048097473 -0.52650535 -0.94186223 -0.031342827 -0.33445233 -0.90289015\n\t\t 0.22891903 -0.36378065 -0.90289015 0.22891903 -0.36378065 -0.81609553 0.17514543\n\t\t -0.55067599 -0.84878081 -0.048097473 -0.52650535 -0.81609553 0.17514543 -0.55067599\n\t\t -0.90289015 0.22891903 -0.36378065 -0.76567906 0.49452165 -0.41126746 -0.76567906\n\t\t 0.49452165 -0.41126746 -0.6983552 0.40308824 -0.59141827 -0.81609553 0.17514543 -0.55067599\n\t\t -0.6983552 0.40308824 -0.59141827 -0.76567906 0.49452165 -0.41126746 -0.54615951\n\t\t 0.69527245 -0.46717739 -0.54615951 0.69527245 -0.46717739 -0.50993395 0.57539576\n\t\t -0.63939333 -0.6983552 0.40308824 -0.59141827 -0.50993395 0.57539576 -0.63939333\n\t\t -0.54615951 0.69527245 -0.46717739 -0.27076045 0.8069703 -0.52479637 -0.93530083\n\t\t 0.25617203 -0.2439955 -0.90289015 0.22891903 -0.36378065 -0.94186223 -0.031342827\n\t\t -0.33445233 -0.94186223 -0.031342827 -0.33445233 -0.97701955 -0.020508755 -0.21213415\n\t\t -0.93530083 0.25617203 -0.2439955 -0.94256425 0.26410684 -0.20438248 -0.93530083\n\t\t 0.25617203 -0.2439955 -0.97701955 -0.020508755 -0.21213415 -0.97701955 -0.020508755\n\t\t -0.21213415 -0.98501539 -0.018006239 -0.17151402 -0.94256425 0.26410684 -0.20438248\n\t\t -0.78942245 0.53859043 -0.29447314 -0.76567906 0.49452165 -0.41126746 -0.90289015\n\t\t 0.22891903 -0.36378065 -0.90289015 0.22891903 -0.36378065 -0.93530083 0.25617203\n\t\t -0.2439955 -0.78942245 0.53859043 -0.29447314 -0.93530083 0.25617203 -0.2439955 -0.94256425\n\t\t 0.26410684 -0.20438248 -0.79436648 0.55098093 -0.25565359 -0.79436648 0.55098093\n\t\t -0.25565359 -0.78942245 0.53859043 -0.29447314 -0.93530083 0.25617203 -0.2439955\n\t\t -0.55598646 0.75203693 -0.3539232 -0.54615951 0.69527245 -0.46717739 -0.76567906\n\t\t 0.49452165 -0.41126746 -0.76567906 0.49452165 -0.41126746 -0.78942245 0.53859043\n\t\t -0.29447314 -0.55598646 0.75203693 -0.3539232 -0.78942245 0.53859043 -0.29447314\n\t\t -0.79436648 0.55098093 -0.25565359 -0.5572682 0.76781499 -0.31604975 -0.5572682 0.76781499\n\t\t -0.31604975 -0.55598646 0.75203693 -0.3539232 -0.78942245 0.53859043 -0.29447314\n\t\t -0.26322243 0.87081504 -0.41514334 -0.27076045 0.8069703 -0.52479637 -0.54615951\n\t\t 0.69527245 -0.46717739 -0.54615951 0.69527245 -0.46717739 -0.55598646 0.75203693\n\t\t -0.3539232 -0.26322243 0.87081504 -0.41514334 -0.27076045 0.8069703 -0.52479637 -0.26322243\n\t\t 0.87081504 -0.41514334 0.053620748 0.88058102 -0.47083962 0.053620748 0.88058102\n\t\t -0.47083962 0.027191741 0.81615645 -0.57713556 -0.27076045 0.8069703 -0.52479637\n\t\t 0.027191741 0.81615645 -0.57713556 0.053620748 0.88058102 -0.47083962 0.32023048\n\t\t 0.79851687 -0.50968969 0.32023048 0.79851687 -0.50968969 0.27768767 0.73863947 -0.61418504\n\t\t 0.027191741 0.81615645 -0.57713556 0.33390278 0.81469166 -0.47404405 0.32023048 0.79851687\n\t\t -0.50968969 0.053620748 0.88058102 -0.47083962 0.053620748 0.88058102 -0.47083962\n\t\t 0.061982814 0.89837331 -0.43476674 0.33390278 0.81469166 -0.47404405 0.061982814\n\t\t 0.89837331 -0.43476674 0.053620748 0.88058102 -0.47083962 -0.26322243 0.87081504\n\t\t -0.41514334 -0.26322243 0.87081504 -0.41514334 -0.25983486 0.88845479 -0.37821594\n\t\t 0.061982814 0.89837331 -0.43476674 -0.55598646 0.75203693 -0.3539232 -0.5572682 0.76781499\n\t\t -0.31604975 -0.25983486 0.88845479 -0.37821594 -0.25983486 0.88845479 -0.37821594\n\t\t -0.26322243 0.87081504 -0.41514334 -0.55598646 0.75203693 -0.3539232 0.27768767 0.73863947\n\t\t -0.61418504 0.32023048 0.79851687 -0.50968969 0.42500052 0.73949409 -0.52201915 0.42500052\n\t\t 0.73949409 -0.52201915 0.39555019 0.63377792 -0.66469318 0.27768767 0.73863947 -0.61418504\n\t\t 0.4394663 0.75530267 -0.4861294 0.42500052 0.73949409 -0.52201915 0.32023048 0.79851687\n\t\t -0.50968969 0.32023048 0.79851687 -0.50968969 0.33390278 0.81469166 -0.47404405 0.4394663\n\t\t 0.75530267 -0.4861294 -0.98501539 -0.018006239 -0.17151402 -0.97701955 -0.020508755\n\t\t -0.21213415 -0.96914572 -0.14075167 -0.20224614 -0.97701955 -0.020508755 -0.21213415\n\t\t -0.9577623 -0.15155523 -0.24436168 -0.96914572 -0.14075167 -0.20224614 -0.94491404\n\t\t -0.22098485 -0.24137087 -0.9577623 -0.15155523 -0.24436168 -0.97701955 -0.020508755\n\t\t -0.21213415 -0.97701955 -0.020508755 -0.21213415 -0.94186223 -0.031342827 -0.33445233\n\t\t -0.94491404 -0.22098485 -0.24137087 -0.92062128 -0.21967255 -0.32270268 -0.94491404\n\t\t -0.22098485 -0.24137087 -0.94186223 -0.031342827 -0.33445233 -0.94491404 -0.22098485\n\t\t -0.24137087 -0.92468017 -0.29834929 -0.23645739 -0.9577623 -0.15155523 -0.24436168\n\t\t -0.90069264 -0.29346627 -0.32032225 -0.94491404 -0.22098485 -0.24137087 -0.92062128\n\t\t -0.21967255 -0.32270268 -0.92471069 -0.2978915 -0.23691517 -0.92468017 -0.29834929\n\t\t -0.23645739 -0.94491404 -0.22098485 -0.24137087 -0.94491404 -0.22098485 -0.24137087\n\t\t -0.90069264 -0.29346627 -0.32032225 -0.92471069 -0.2978915 -0.23691517 -0.8509475\n\t\t -0.355663 -0.38642535 -0.92471069 -0.2978915 -0.23691517 -0.90069264 -0.29346627\n\t\t -0.32032225 -0.96914572 -0.14075167 -0.20224614 -0.97705001 -0.13907316 -0.16116823\n\t\t -0.98501539 -0.018006239 -0.17151402 -0.21521683 0.97527993 -0.050019909 -0.21521683\n\t\t 0.97527993 -0.050019909 0.12668203 0.98580897 -0.11008033 0.12668203 0.98580897 -0.11008033\n\t\t 0.12668203 0.98580897 -0.11008033 -0.21521683 0.97527993 -0.050019909 0.12668203\n\t\t 0.98580897 -0.11008033 0.12668203 0.98580897 -0.11008033;\n\tsetAttr \".n[6308:6473]\" -type \"float3\"  0.41441056 0.89730531 -0.15182965 0.41441056\n\t\t 0.89730531 -0.15182965 0.41441056 0.89730531 -0.15182965 0.12668203 0.98580897 -0.11008033\n\t\t 0.41441056 0.89730531 -0.15182965 0.41441056 0.89730531 -0.15182965 0.52729857 0.83333862\n\t\t -0.16562401 0.52729857 0.83333862 -0.16562401 0.52729857 0.83333862 -0.16562401 0.41441056\n\t\t 0.89730531 -0.15182965 -0.21521683 0.97527993 -0.050019909 -0.21521683 0.97527993\n\t\t -0.050019909 -0.53114438 0.84710211 0.016052673 -0.53114438 0.84710211 0.016052673\n\t\t -0.53114438 0.84710211 0.016052673 -0.21521683 0.97527993 -0.050019909 -0.53114438\n\t\t 0.84710211 0.016052673 -0.53114438 0.84710211 0.016052673 -0.78301358 0.61677885\n\t\t 0.080202594 -0.78301358 0.61677885 0.080202594 -0.78301358 0.61677885 0.080202594\n\t\t -0.53114438 0.84710211 0.016052673 -0.78301358 0.61677885 0.080202594 -0.78301358\n\t\t 0.61677885 0.080202594 -0.94045854 0.31202096 0.13476971 -0.94045854 0.31202096 0.13476971\n\t\t -0.94042796 0.31202096 0.13476971 -0.78301358 0.61677885 0.080202594 -0.94042796\n\t\t 0.31202096 0.13476971 -0.94045854 0.31202096 0.13476971 -0.98547322 0.013458371 0.16925566\n\t\t -0.98547322 0.013458371 0.16925566 -0.98547322 0.013458371 0.16925566 -0.94042796\n\t\t 0.31202096 0.13476971 -0.98547322 0.013458371 0.16925566 -0.98547322 0.013458371\n\t\t 0.16925566 -0.94686717 -0.29734212 0.12244029 -0.94686717 -0.29734212 0.12244029\n\t\t -0.9514755 -0.24475873 0.18640707 -0.98547322 0.013458371 0.16925566 -0.9514755 -0.24475873\n\t\t 0.18640707 -0.94686717 -0.29734212 0.12244029 -0.88204587 -0.45564163 0.1196631 -0.88204587\n\t\t -0.45564163 0.1196631 -0.85229021 -0.4869231 0.19092382 -0.9514755 -0.24475873 0.18640707\n\t\t -0.85229021 -0.4869231 0.19092382 -0.88204587 -0.45564163 0.1196631 -0.69518089 -0.6952424\n\t\t 0.1824397 -0.69518089 -0.6952424 0.1824397 -0.69518089 -0.69527292 0.18247022 -0.85229021\n\t\t -0.4869231 0.19092382 -0.69518089 -0.69527292 0.18247022 -0.69518089 -0.6952424 0.1824397\n\t\t -0.45329115 -0.87740725 0.15692623 -0.45329115 -0.87740725 0.15692623 -0.45326063\n\t\t -0.87743777 0.15692623 -0.69518089 -0.69527292 0.18247022 -0.45326063 -0.87743777\n\t\t 0.15692623 -0.45329115 -0.87740725 0.15692623 -0.12668203 -0.98580897 0.11011086\n\t\t -0.12668203 -0.98580897 0.11011086 -0.12665151 -0.98580897 0.11008033 -0.45326063\n\t\t -0.87743777 0.15692623 -0.12665151 -0.98580897 0.11008033 -0.12668203 -0.98580897\n\t\t 0.11011086 0.21518631 -0.97527993 0.049989391 0.21518631 -0.97527993 0.049989391\n\t\t 0.21521683 -0.97527993 0.049989391 -0.12665151 -0.98580897 0.11008033 0.21521683\n\t\t -0.97527993 0.049989391 0.21518631 -0.97527993 0.049989391 0.49415597 -0.86931956\n\t\t -0.0076600811 0.49415597 -0.86931956 -0.0076600811 0.51670915 -0.85607451 0.011139319\n\t\t 0.21521683 -0.97527993 0.049989391 0.51670915 -0.85607451 0.011139319 0.49415597\n\t\t -0.86931956 -0.0076600811 0.72716469 -0.6647234 0.17123941 0.76549596 -0.64168197\n\t\t -0.047059495 0.51670915 -0.85607451 0.011139319 0.72716469 -0.6647234 0.17123941\n\t\t 0.76549596 -0.64168197 -0.047059495 0.75597417 -0.65053231 -0.072511934 0.51670915\n\t\t -0.85607451 0.011139319 0.75597417 -0.65053231 -0.072511934 0.76549596 -0.64168197\n\t\t -0.047059495 0.8318432 -0.54676938 -0.094912529 0.8318432 -0.54676938 -0.094912529\n\t\t 0.8318432 -0.54676938 -0.094912529 0.75597417 -0.65053231 -0.072511934 -0.0090337805\n\t\t 0.97445601 0.22431096 0.067323528 0.99713129 0.034180656 -0.18427105 0.97231966 0.14349796\n\t\t -0.18427105 0.97231966 0.14349796 -0.19974393 0.89950252 0.38856161 -0.0090337805\n\t\t 0.97445601 0.22431096 -0.19974393 0.89950252 0.38856161 -0.18427105 0.97231966 0.14349796\n\t\t -0.48631272 0.84749883 0.21262239 -0.48631272 0.84749883 0.21262239 -0.39185789 0.78661454\n\t\t 0.47709581 -0.19974393 0.89950252 0.38856161 -0.39185789 0.78661454 0.47709581 -0.48631272\n\t\t 0.84749883 0.21262239 -0.73308527 0.62184489 0.27546 -0.73308527 0.62184489 0.27546\n\t\t -0.60890549 0.58464295 0.53608805 -0.39185789 0.78661454 0.47709581 -0.60890549 0.58464295\n\t\t 0.53608805 -0.73308527 0.62184489 0.27546 -0.88729525 0.32328233 0.32883692 -0.88729525\n\t\t 0.32328233 0.32883692 -0.74752051 0.31632414 0.58406323 -0.60890549 0.58464295 0.53608805\n\t\t -0.74752051 0.31632414 0.58406323 -0.88729525 0.32328233 0.32883692 -0.93118078 0.030365657\n\t\t 0.3632313 -0.93118078 0.030365657 0.3632313 -0.78621787 0.053437714 0.61558884 -0.74752051\n\t\t 0.31632414 0.58406323 -0.78621787 0.053437714 0.61558884 -0.93118078 0.030365657\n\t\t 0.3632313 -0.89797658 -0.22168671 0.38004702 -0.89797658 -0.22168671 0.38004702 -0.75630963\n\t\t -0.17343688 0.63075656 -0.78621787 0.053437714 0.61558884 -0.75630963 -0.17343688\n\t\t 0.63075656 -0.89797658 -0.22168671 0.38004702 -0.80050039 -0.45973104 0.38447222\n\t\t -0.80050039 -0.45973104 0.38447222 -0.66896558 -0.3867307 0.63472396 -0.75630963\n\t\t -0.17343688 0.63075656 -0.66896558 -0.3867307 0.63472396 -0.80050039 -0.45973104\n\t\t 0.38447222 -0.64717531 -0.66304529 0.37614068 -0.64717531 -0.66304529 0.37614068\n\t\t -0.53096086 -0.56978071 0.62718594 -0.66896558 -0.3867307 0.63472396 -0.53096086\n\t\t -0.56978071 0.62718594 -0.64717531 -0.66304529 0.37614068 -0.41004643 -0.84200579\n\t\t 0.35050514 -0.41004643 -0.84200579 0.35050514 -0.31861299 -0.73088783 0.6035341 -0.53096086\n\t\t -0.56978071 0.62718594 -0.31861299 -0.73088783 0.6035341 -0.41004643 -0.84200579\n\t\t 0.35050514 -0.090059832 -0.94817954 0.30466634 -0.090059832 -0.94817954 0.30466634\n\t\t -0.031037068 -0.82628858 0.56233412 -0.31861299 -0.73088783 0.6035341 -0.031037068\n\t\t -0.82628858 0.56233412 -0.090059832 -0.94817954 0.30466634 0.24488081 -0.93786424\n\t\t 0.24582666 0.24488081 -0.93786424 0.24582666 0.26993644 -0.8170414 0.50944555 -0.031037068\n\t\t -0.82628858 0.56233412 0.26993644 -0.8170414 0.50944555 0.24488081 -0.93786424 0.24582666\n\t\t 0.55439949 -0.81228048 0.18106638 0.55439949 -0.81228048 0.18106638 0.54811269 -0.70418388\n\t\t 0.45127726 0.26993644 -0.8170414 0.50944555 0.54811269 -0.70418388 0.45127726 0.55439949\n\t\t -0.81228048 0.18106638 0.7749567 -0.61925083 0.12631616;\n\tsetAttr \".n[6474:6639]\" -type \"float3\"  0.7749567 -0.61925083 0.12631616 0.74584204\n\t\t -0.53044194 0.4029054 0.54811269 -0.70418388 0.45127726 0.74584204 -0.53044194 0.4029054\n\t\t 0.7749567 -0.61925083 0.12631616 0.8489641 -0.51792938 0.10467853 0.8489641 -0.51792938\n\t\t 0.10467853 0.81234181 -0.43903902 0.3838008 0.74584204 -0.53044194 0.4029054 0.70424527\n\t\t -0.4674823 0.53428763 0.74584204 -0.53044194 0.4029054 0.81234181 -0.43903902 0.3838008\n\t\t 0.81234181 -0.43903902 0.3838008 0.76644194 -0.38380051 0.51496935 0.70424527 -0.4674823\n\t\t 0.53428763 0.74584204 -0.53044194 0.4029054 0.70424527 -0.4674823 0.53428763 0.52595615\n\t\t -0.62257737 0.57939398 0.52595615 -0.62257737 0.57939398 0.54811269 -0.70418388 0.45127726\n\t\t 0.74584204 -0.53044194 0.4029054 0.54811269 -0.70418388 0.45127726 0.52595615 -0.62257737\n\t\t 0.57939398 0.27402595 -0.72478396 0.63209945 0.27402595 -0.72478396 0.63209945 0.26993644\n\t\t -0.8170414 0.50944555 0.54811269 -0.70418388 0.45127726 0.26993644 -0.8170414 0.50944555\n\t\t 0.27402595 -0.72478396 0.63209945 0.0013735596 -0.73317659 0.67998296 0.0013735596\n\t\t -0.73317659 0.67998296 -0.031037068 -0.82628858 0.56233412 0.26993644 -0.8170414\n\t\t 0.50944555 -0.031037068 -0.82628858 0.56233412 0.0013735596 -0.73317659 0.67998296\n\t\t -0.25910193 -0.64677876 0.71730709 -0.25910193 -0.64677876 0.71730709 -0.31861299\n\t\t -0.73088783 0.6035341 -0.031037068 -0.82628858 0.56233412 -0.31861299 -0.73088783\n\t\t 0.6035341 -0.25910193 -0.64677876 0.71730709 -0.45097187 -0.50309771 0.73720515 -0.45097187\n\t\t -0.50309771 0.73720515 -0.53096086 -0.56978071 0.62718594 -0.31861299 -0.73088783\n\t\t 0.6035341 -0.53096086 -0.56978071 0.62718594 -0.45097187 -0.50309771 0.73720515 -0.57850873\n\t\t -0.33387262 0.74419385 -0.57850873 -0.33387262 0.74419385 -0.66896558 -0.3867307\n\t\t 0.63472396 -0.53096086 -0.56978071 0.62718594 -0.66896558 -0.3867307 0.63472396 -0.57850873\n\t\t -0.33387262 0.74419385 -0.65617841 -0.14416958 0.74065369 -0.65617841 -0.14416958\n\t\t 0.74065369 -0.75630963 -0.17343688 0.63075656 -0.66896558 -0.3867307 0.63472396 -0.75630963\n\t\t -0.17343688 0.63075656 -0.65617841 -0.14416958 0.74065369 -0.68385875 0.065523081\n\t\t 0.72664571 -0.68385875 0.065523081 0.72664571 -0.78621787 0.053437714 0.61558884\n\t\t -0.75630963 -0.17343688 0.63075656 -0.78621787 0.053437714 0.61558884 -0.68385875\n\t\t 0.065523081 0.72664571 -0.6475724 0.30179739 0.69963682 -0.6475724 0.30179739 0.69963682\n\t\t -0.74752051 0.31632414 0.58406323 -0.78621787 0.053437714 0.61558884 -0.74752051\n\t\t 0.31632414 0.58406323 -0.6475724 0.30179739 0.69963682 -0.52201927 0.54481632 0.65620893\n\t\t -0.52201927 0.54481632 0.65620893 -0.60890549 0.58464295 0.53608805 -0.74752051 0.31632414\n\t\t 0.58406323 -0.60890549 0.58464295 0.53608805 -0.52201927 0.54481632 0.65620893 -0.35657847\n\t\t 0.70528269 0.61268955 -0.35657847 0.70528269 0.61268955 -0.39185789 0.78661454 0.47709581\n\t\t -0.60890549 0.58464295 0.53608805 -0.39185789 0.78661454 0.47709581 -0.35657847 0.70528269\n\t\t 0.61268955 -0.22275485 0.79812008 0.55973995 -0.22275485 0.79812008 0.55973995 -0.19974393\n\t\t 0.89950252 0.38856161 -0.39185789 0.78661454 0.47709581 0.42887655 0.15912358 -0.88921779\n\t\t 0.3975645 0.34568322 -0.84994048 0.42200997 -0.054780662 -0.90490431 0.42200997 -0.054780662\n\t\t -0.90490431 0.47505113 -0.050263908 -0.87850583 0.42887655 0.15912358 -0.88921779\n\t\t 0.47505113 -0.050263908 -0.87850583 0.42200997 -0.054780662 -0.90490431 0.39692381\n\t\t -0.2500686 -0.8831141 0.39692381 -0.2500686 -0.8831141 0.44785923 -0.26184872 -0.85485399\n\t\t 0.47505113 -0.050263908 -0.87850583 0.44785923 -0.26184872 -0.85485399 0.39692381\n\t\t -0.2500686 -0.8831141 0.3125402 -0.5106051 -0.80095822 0.3125402 -0.5106051 -0.80095822\n\t\t 0.35056627 -0.45023951 -0.82119197 0.44785923 -0.26184872 -0.85485399 -0.1732838\n\t\t -0.96401876 -0.20145261 0.15155521 -0.95400852 -0.25852224 0.15155521 -0.95400852\n\t\t -0.25852224 0.15155521 -0.95400852 -0.25852224 -0.1732838 -0.96401876 -0.20148313\n\t\t -0.1732838 -0.96401876 -0.20145261 -0.48362654 -0.86104941 -0.15701768 -0.48359603\n\t\t -0.86104941 -0.15701768 -0.1732838 -0.96401876 -0.20145261 -0.1732838 -0.96401876\n\t\t -0.20145261 -0.1732838 -0.96401876 -0.20148313 -0.48362654 -0.86104941 -0.15701768\n\t\t -0.74199635 -0.65752155 -0.13052762 -0.74199635 -0.65755206 -0.13052762 -0.48359603\n\t\t -0.86104941 -0.15701768 -0.48359603 -0.86104941 -0.15701768 -0.48362654 -0.86104941\n\t\t -0.15701768 -0.74199635 -0.65752155 -0.13052762 -0.91729474 -0.37797204 -0.12518689\n\t\t -0.91726422 -0.37800255 -0.12518689 -0.74199635 -0.65755206 -0.13052762 -0.74199635\n\t\t -0.65755206 -0.13052762 -0.74199635 -0.65752155 -0.13052762 -0.91729474 -0.37797204\n\t\t -0.12518689 -0.98831141 -0.056154374 -0.14166692 -0.98831141 -0.056154374 -0.14169744\n\t\t -0.91726422 -0.37800255 -0.12518689 -0.91726422 -0.37800255 -0.12518689 -0.91729474\n\t\t -0.37797204 -0.12518689 -0.98831141 -0.056154374 -0.14166692 -0.94650114 0.26911193\n\t\t -0.17801449 -0.94650114 0.26911193 -0.17801449 -0.98831141 -0.056154374 -0.14169744\n\t\t -0.98831141 -0.056154374 -0.14169744 -0.98831141 -0.056154374 -0.14166692 -0.94650114\n\t\t 0.26911193 -0.17801449 -0.7968995 0.55867159 -0.22977391 -0.79693002 0.55864108 -0.22974338\n\t\t -0.94650114 0.26911193 -0.17801449 -0.94650114 0.26911193 -0.17801449 -0.94650114\n\t\t 0.26911193 -0.17801449 -0.7968995 0.55867159 -0.22977391 -0.55757338 0.77751988 -0.29068887\n\t\t -0.5576039 0.77751988 -0.29068887 -0.79693002 0.55864108 -0.22974338 -0.79693002\n\t\t 0.55864108 -0.22974338 -0.7968995 0.55867159 -0.22977391 -0.55757338 0.77751988 -0.29068887\n\t\t -0.25739339 0.89928883 -0.35349596 -0.25739339 0.89928883 -0.35349596 -0.5576039\n\t\t 0.77751988 -0.29068887 -0.5576039 0.77751988 -0.29068887 -0.55757338 0.77751988 -0.29068887\n\t\t -0.25739339 0.89928883 -0.35349596 0.067445621 0.90929896 -0.41059607 0.067445621\n\t\t 0.90929896 -0.41059607 -0.25739339 0.89928883 -0.35349596 -0.25739339 0.89928883\n\t\t -0.35349596 -0.25739339 0.89928883 -0.35349596 0.067445621 0.90929896 -0.41059607\n\t\t 0.37778839 0.80632961 -0.45503104;\n\tsetAttr \".n[6640:6805]\" -type \"float3\"  0.37778839 0.80632961 -0.45503104 0.067445621\n\t\t 0.90929896 -0.41059607 0.067445621 0.90929896 -0.41059607 0.067445621 0.90929896\n\t\t -0.41059607 0.37778839 0.80632961 -0.45503104 0.60844737 0.63258779 -0.47914067 0.60695195\n\t\t 0.63414425 -0.47898805 0.37778839 0.80632961 -0.45503104 0.37778839 0.80632961 -0.45503104\n\t\t 0.37778839 0.80632961 -0.45503104 0.60844737 0.63258779 -0.47914067 0.75649267 0.43623179\n\t\t -0.48722804 0.75756085 0.43437016 -0.48719752 0.60695195 0.63414425 -0.47898805 0.60695195\n\t\t 0.63414425 -0.47898805 0.60844737 0.63258779 -0.47914067 0.75649267 0.43623179 -0.48722804\n\t\t 0.75649267 0.43623179 -0.48722804 0.85149688 0.2042301 -0.48289439 0.85097808 0.20627484\n\t\t -0.48295546 0.85097808 0.20627484 -0.48295546 0.75756085 0.43437016 -0.48719752 0.75649267\n\t\t 0.43623179 -0.48722804 0.85149688 0.2042301 -0.48289439 0.88357186 -0.039063454 -0.46662802\n\t\t 0.88357186 -0.041230269 -0.46641439 0.88357186 -0.041230269 -0.46641439 0.85097808\n\t\t 0.20627484 -0.48295546 0.85149688 0.2042301 -0.48289439 0.84066296 -0.32383168 -0.43400368\n\t\t 0.84066296 -0.32383168 -0.43400368 0.88357186 -0.041230269 -0.46641439 0.88357186\n\t\t -0.041230269 -0.46641439 0.88357186 -0.039063454 -0.46662802 0.84066296 -0.32383168\n\t\t -0.43400368 0.69109184 -0.61339128 -0.38221374 0.69106132 -0.61339128 -0.38224426\n\t\t 0.84066296 -0.32383168 -0.43400368 0.84066296 -0.32383168 -0.43400368 0.84066296\n\t\t -0.32383168 -0.43400368 0.69109184 -0.61339128 -0.38221374 0.45173526 -0.83223963\n\t\t -0.32129881 0.45170474 -0.83227015 -0.32129881 0.69106132 -0.61339128 -0.38224426\n\t\t 0.69106132 -0.61339128 -0.38224426 0.69109184 -0.61339128 -0.38221374 0.45173526\n\t\t -0.83223963 -0.32129881 0.15155521 -0.95400852 -0.25852224 0.15155521 -0.95400852\n\t\t -0.25852224 0.45170474 -0.83227015 -0.32129881 0.45170474 -0.83227015 -0.32129881\n\t\t 0.45173526 -0.83223963 -0.32129881 0.15155521 -0.95400852 -0.25852224 -0.16971341\n\t\t -0.087771364 -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341 -0.087771364\n\t\t -0.98156685 -0.16968289 -0.087740839 -0.98156685 -0.16971341 -0.087771364 -0.98156685\n\t\t -0.16971341 -0.087771364 -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341\n\t\t -0.087771364 -0.98156685 -0.16968289 -0.087740839 -0.98156685 -0.16974393 -0.087771364\n\t\t -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341 -0.087771364 -0.98156685\n\t\t -0.16971341 -0.087771364 -0.98156685 -0.16968289 -0.087710321 -0.98156685 -0.16974393\n\t\t -0.087771364 -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16968289 -0.087710321\n\t\t -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341 -0.087771364 -0.98156685\n\t\t -0.16971341 -0.087771364 -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341\n\t\t -0.087771364 -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341 -0.087771364\n\t\t -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.17001858 -0.087893434 -0.98150581\n\t\t -0.16971341 -0.087771364 -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341\n\t\t -0.087771364 -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341 -0.087740839\n\t\t -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341 -0.087771364 -0.98156685\n\t\t -0.16971341 -0.087771364 -0.98156685 -0.16968289 -0.087740839 -0.98156685 -0.16971341\n\t\t -0.087740839 -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16968289 -0.087740839\n\t\t -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341 -0.087771364 -0.98156685\n\t\t -0.16974393 -0.087771364 -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341\n\t\t -0.087771364 -0.98156685 -0.16974393 -0.087771364 -0.98156685 -0.16971341 -0.087771364\n\t\t -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16974393 -0.087771364 -0.98156685\n\t\t -0.16971341 -0.087771364 -0.98156685 -0.16974393 -0.087740839 -0.98156685 -0.16974393\n\t\t -0.087771364 -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341 -0.087771364\n\t\t -0.98156685 -0.16971341 -0.087740839 -0.98156685 -0.16974393 -0.087740839 -0.98156685\n\t\t -0.16971341 -0.087771364 -0.98156685 -0.16971341 -0.087740839 -0.98156685 -0.16971341\n\t\t -0.087771364 -0.98156685 -0.20557298 0.97860646 0.0038757778 -0.18427105 0.97231966\n\t\t 0.14349796 0.067323528 0.99713129 0.034180656 0.067323528 0.99713129 0.034180656\n\t\t 0.12701772 0.98999 -0.061159167 -0.20557298 0.97860646 0.0038757778 0.12701772 0.98999\n\t\t -0.061159167 0.067323528 0.99713129 0.034180656 0.36893797 0.92010266 -0.13147381\n\t\t 0.36893797 0.92010266 -0.13147381 0.41438004 0.89730531 -0.1519212 0.12701772 0.98999\n\t\t -0.061159167 0.52726805 0.83336914 -0.16571556 0.41438004 0.89730531 -0.1519212 0.36893797\n\t\t 0.92010266 -0.13147381 -0.18427105 0.97231966 0.14349796 -0.20557298 0.97860646 0.0038757778\n\t\t -0.52104276 0.85064226 0.069856808 -0.52104276 0.85064226 0.069856808 -0.48631272\n\t\t 0.84749883 0.21262239 -0.18427105 0.97231966 0.14349796 -0.48631272 0.84749883 0.21262239\n\t\t -0.52104276 0.85064226 0.069856808 -0.77254575 0.6206547 0.13391517 -0.77254575 0.6206547\n\t\t 0.13391517 -0.73308527 0.62184489 0.27546 -0.48631272 0.84749883 0.21262239 -0.73308527\n\t\t 0.62184489 0.27546 -0.77254575 0.6206547 0.13391517 -0.92971599 0.31638509 0.1883297\n\t\t -0.92971599 0.31638509 0.1883297 -0.88729525 0.32328233 0.32883692 -0.73308527 0.62184489\n\t\t 0.27546 -0.88729525 0.32328233 0.32883692 -0.92971599 0.31638509 0.1883297 -0.97470015\n\t\t 0.018036155 0.22269356 -0.97470015 0.018036155 0.22269356 -0.93118078 0.030365657\n\t\t 0.3632313 -0.88729525 0.32328233 0.32883692 -0.93118078 0.030365657 0.3632313 -0.97470015\n\t\t 0.018036155 0.22269356 -0.94079405 -0.23941799 0.2398755 -0.94079405 -0.23941799\n\t\t 0.2398755 -0.89797658 -0.22168671 0.38004702 -0.93118078 0.030365657 0.3632313 -0.89797658\n\t\t -0.22168671 0.38004702 -0.94079405 -0.23941799 0.2398755 -0.84163934 -0.4815518 0.24436173\n\t\t -0.84163934 -0.4815518 0.24436173 -0.80050039 -0.45973104 0.38447222 -0.89797658\n\t\t -0.22168671 0.38004702 -0.80050039 -0.45973104 0.38447222 -0.84163934 -0.4815518\n\t\t 0.24436173 -0.68501824 -0.68926078 0.2358776 -0.68501824 -0.68926078 0.2358776 -0.64717531\n\t\t -0.66304529 0.37614068;\n\tsetAttr \".n[6806:6971]\" -type \"float3\"  -0.80050039 -0.45973104 0.38447222 -0.64717531\n\t\t -0.66304529 0.37614068 -0.68501824 -0.68926078 0.2358776 -0.4433116 -0.87130356 0.21039467\n\t\t -0.4433116 -0.87130356 0.21039467 -0.41004643 -0.84200579 0.35050514 -0.64717531\n\t\t -0.66304529 0.37614068 -0.41004643 -0.84200579 0.35050514 -0.4433116 -0.87130356\n\t\t 0.21039467 -0.11716025 -0.97952217 0.16367084 -0.11716025 -0.97952217 0.16367084\n\t\t -0.090059832 -0.94817954 0.30466634 -0.41004643 -0.84200579 0.35050514 -0.090059832\n\t\t -0.94817954 0.30466634 -0.11716025 -0.97952217 0.16367084 0.22418927 -0.96899313\n\t\t 0.10373248 0.22418927 -0.96899313 0.10373248 0.24488081 -0.93786424 0.24582666 -0.090059832\n\t\t -0.94817954 0.30466634 0.24488081 -0.93786424 0.24582666 0.22418927 -0.96899313 0.10373248\n\t\t 0.53962851 -0.84102893 0.037720941 0.53962851 -0.84102893 0.037720941 0.55439949\n\t\t -0.81228048 0.18106638 0.24488081 -0.93786424 0.24582666 0.55439949 -0.81228048 0.18106638\n\t\t 0.53962851 -0.84102893 0.037720941 0.76424468 -0.64461172 -0.018677279 0.76424468\n\t\t -0.64461172 -0.018677279 0.7749567 -0.61925083 0.12631616 0.55439949 -0.81228048\n\t\t 0.18106638 0.7749567 -0.61925083 0.12631616 0.76424468 -0.64461172 -0.018677279 0.83986956\n\t\t -0.54118448 -0.041169427 0.83986956 -0.54118448 -0.041169427 0.8489641 -0.51792938\n\t\t 0.10467853 0.7749567 -0.61925083 0.12631616 0.16971341 0.087740839 0.98156685 0.16971341\n\t\t 0.087771364 0.98156685 0.16971341 0.087771364 0.98156685 0.16971341 0.087771364 0.98156685\n\t\t 0.16971341 0.087710321 0.98156685 0.16971341 0.087740839 0.98156685 0.16971341 0.087740839\n\t\t 0.98156685 0.16971341 0.087710321 0.98156685 0.16971341 0.087740839 0.98156685 0.16971341\n\t\t 0.087740839 0.98156685 0.16971341 0.087740839 0.98156685 0.16971341 0.087740839 0.98156685\n\t\t 0.16971341 0.087771364 0.98156685 0.16971341 0.087740839 0.98156685 0.16971341 0.087740839\n\t\t 0.98156685 0.16971341 0.087740839 0.98156685 0.16971341 0.087771364 0.98156685 0.16971341\n\t\t 0.087771364 0.98156685 0.16968289 0.087771364 0.98156685 0.16971341 0.087771364 0.98156685\n\t\t 0.16971341 0.087771364 0.98156685 0.16971341 0.087771364 0.98156685 0.16968289 0.087771364\n\t\t 0.98156685 0.16968289 0.087771364 0.98156685 0.16980496 0.087740839 0.98153633 0.16968289\n\t\t 0.087771364 0.98156685 0.16968289 0.087771364 0.98156685 0.16968289 0.087771364 0.98156685\n\t\t 0.16980496 0.087740839 0.98153633 0.16980496 0.087740839 0.98153633 0.16974393 0.087740839\n\t\t 0.98156685 0.16980496 0.087740839 0.98153633 0.16980496 0.087740839 0.98153633 0.16980496\n\t\t 0.087740839 0.98153633 0.16971341 0.087740839 0.98156685 0.16974393 0.087740839 0.98156685\n\t\t 0.16974393 0.087771364 0.98156685 0.16971341 0.087771364 0.98156685 0.16971341 0.087771364\n\t\t 0.98156685 0.16971341 0.087771364 0.98156685 0.16974393 0.087771364 0.98156685 0.16974393\n\t\t 0.087771364 0.98156685 0.16971341 0.087771364 0.98156685 0.16974393 0.087740839 0.98156685\n\t\t 0.16971341 0.087740839 0.98156685 0.16971341 0.087740839 0.98156685 0.16971341 0.087801881\n\t\t 0.98156685 0.16971341 0.087771364 0.98156685 0.16971341 0.087710321 0.98156685 0.16971341\n\t\t 0.087771364 0.98156685 0.16971341 0.087740839 0.98156685 0.16971341 0.087740839 0.98156685\n\t\t 0.16968289 0.087710321 0.98156685 0.16971341 0.087710321 0.98156685 0.16971341 0.087740839\n\t\t 0.98156685 0.16971341 0.087710321 0.98156685 0.16968289 0.087710321 0.98156685 0.16968289\n\t\t 0.087710321 0.98156685 0.16971341 0.087740839 0.98156685 0.16971341 0.087740839 0.98156685\n\t\t 0.16971341 0.087801881 0.98156685 0.16971341 0.087740839 0.98156685 0.16971341 0.087740839\n\t\t 0.98156685 0.16971341 0.087740839 0.98156685 0.16971341 0.087801881 0.98156685 0.16971341\n\t\t 0.087801881 0.98156685 0.16971341 0.087771364 0.98156685 0.16971341 0.087801881 0.98156685\n\t\t 0.16971341 0.087801881 0.98156685 0.16971341 0.087801881 0.98156685 0.16971341 0.087771364\n\t\t 0.98156685 0.16971341 0.087771364 0.98156685 0.16971341 0.087771364 0.98156685 0.16971341\n\t\t 0.087771364 0.98156685 0.16974393 0.087771364 0.98156685 0.16974393 0.087771364 0.98156685\n\t\t 0.16974393 0.087740839 0.98156685 0.16971341 0.087771364 0.98156685 0.16971341 0.087771364\n\t\t 0.98156685 0.16971341 0.087740839 0.98156685 0.16971341 0.087771364 0.98156685 0.16971341\n\t\t 0.087771364 0.98156685 0.16974393 0.087801881 0.98156685 0.16971341 0.087771364 0.98156685\n\t\t -0.16971341 -0.087801881 -0.98156685 -0.16971341 -0.087740839 -0.98156685 -0.16971341\n\t\t -0.087740839 -0.98156685 -0.16971341 -0.087740839 -0.98156685 -0.16971341 -0.087801881\n\t\t -0.98156685 -0.16971341 -0.087801881 -0.98156685 -0.16971341 -0.087801881 -0.98156685\n\t\t -0.16971341 -0.087801881 -0.98156685 -0.16971341 -0.087710321 -0.98156685 -0.16971341\n\t\t -0.087710321 -0.98156685 -0.16971341 -0.087710321 -0.98156685 -0.16971341 -0.087801881\n\t\t -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341 -0.087710321 -0.98156685\n\t\t -0.16971341 -0.087710321 -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341\n\t\t -0.087771364 -0.98156685 -0.16971341 -0.087710321 -0.98156685 -0.16971341 -0.087771364\n\t\t -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341 -0.087771364 -0.98156685\n\t\t -0.16971341 -0.087771364 -0.98156685 -0.16968289 -0.087771364 -0.98156685 -0.16971341\n\t\t -0.087771364 -0.98156685 -0.16971341 -0.087740839 -0.98156685 -0.16971341 -0.087740839\n\t\t -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341 -0.087771364 -0.98156685\n\t\t -0.16971341 -0.087771364 -0.98156685 -0.16971341 -0.087740839 -0.98156685 -0.16971341\n\t\t -0.087771364 -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16968289 -0.087801881\n\t\t -0.98156685 -0.16968289 -0.087801881 -0.98156685 -0.16965236 -0.087801881 -0.98156685\n\t\t -0.16971341 -0.087771364 -0.98156685 -0.16965236 -0.087801881 -0.98156685 -0.16968289\n\t\t -0.087801881 -0.98156685 -0.16962184 -0.087771364 -0.98156685 -0.16962184 -0.087771364\n\t\t -0.98156685 -0.16962184 -0.087771364 -0.98156685 -0.16965236 -0.087801881 -0.98156685\n\t\t -0.16962184 -0.087771364 -0.98156685 -0.16962184 -0.087771364 -0.98156685 -0.16971341\n\t\t -0.087771364 -0.98156685;\n\tsetAttr \".n[6972:7137]\" -type \"float3\"  -0.16971341 -0.087771364 -0.98156685\n\t\t -0.16971341 -0.087771364 -0.98156685 -0.16962184 -0.087771364 -0.98156685 -0.16974393\n\t\t -0.087771364 -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341 -0.087771364\n\t\t -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16974393 -0.087771364 -0.98156685\n\t\t -0.16974393 -0.087771364 -0.98156685 -0.16974393 -0.087771364 -0.98156685 -0.16974393\n\t\t -0.087771364 -0.98156685 -0.16974393 -0.087771364 -0.98156685 -0.16974393 -0.087771364\n\t\t -0.98156685 -0.16974393 -0.087771364 -0.98153633 -0.16974393 -0.087771364 -0.98156685\n\t\t -0.16974393 -0.087771364 -0.98156685 -0.16974393 -0.087771364 -0.98153633 -0.16971341\n\t\t -0.087740839 -0.98156685 -0.16971341 -0.087740839 -0.98156685 -0.16971341 -0.087740839\n\t\t -0.98156685 -0.16974393 -0.087771364 -0.98156685 -0.16971341 -0.087740839 -0.98156685\n\t\t -0.16971341 -0.087740839 -0.98156685 -0.16971341 -0.087740839 -0.98156685 -0.16971341\n\t\t -0.087740839 -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341 -0.087740839\n\t\t -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341 -0.087740839 -0.98156685\n\t\t -0.16971341 -0.087801881 -0.98156685 -0.16971341 -0.087801881 -0.98156685 -0.16971341\n\t\t -0.087801881 -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341 -0.087801881\n\t\t -0.98156685 -0.16971341 -0.087801881 -0.98156685 -0.16971341 -0.087801881 -0.98156685\n\t\t -0.16971341 -0.087801881 -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341\n\t\t -0.087801881 -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341 -0.087801881\n\t\t -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341 -0.087771364 -0.98156685\n\t\t -0.16971341 -0.087771364 -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16971341\n\t\t -0.087771364 -0.98156685 -0.16971341 -0.087771364 -0.98156685 -0.16974393 -0.087771364\n\t\t -0.98156685 -0.16974393 -0.087771364 -0.98156685 -0.16974393 -0.087740839 -0.98156685\n\t\t -0.16971341 -0.087771364 -0.98156685 -0.16974393 -0.087771364 -0.98156685 -0.16974393\n\t\t -0.087740839 -0.98156685 -0.16974393 -0.087771364 -0.98156685 -0.16974393 -0.087771364\n\t\t -0.98156685 -0.16971341 -0.087801881 -0.98156685 -0.16974393 -0.087771364 -0.98156685\n\t\t -0.12359995 -0.024811512 0.99200416 -0.11673333 0.11117896 0.98690754 -0.14169745\n\t\t 0.040681202 0.98904383 -0.12359995 -0.024811512 0.99200416 -0.14169745 0.040681202\n\t\t 0.98904383 -0.03534041 -0.08767961 0.9955138 -0.12359995 -0.024811512 0.99200416\n\t\t -0.03534041 -0.08767961 0.9955138 0.059511125 -0.10226744 0.9929502 -0.53453189 0.49412507\n\t\t 0.68559825 -0.55037099 0.49439973 0.67278045 -0.53733957 0.4941861 0.68333989 -0.53733957\n\t\t 0.4941861 0.68333989 -0.52290434 0.49381992 0.69475383 -0.53453189 0.49412507 0.68559825\n\t\t -0.66368628 0.71263754 0.22727127 -0.71492684 0.68318713 0.14865561 -0.65791827 0.74840522\n\t\t 0.08362066 -0.65791827 0.74840522 0.08362066 -0.61522287 0.76387811 0.19476907 -0.66368628\n\t\t 0.71263754 0.22727127 -0.61522287 0.76387811 0.19476907 -0.65791827 0.74840522 0.08362066\n\t\t -0.62132657 0.78350151 0.0029907557 -0.62132657 0.78350151 0.0029907557 -0.58442968\n\t\t 0.80669558 0.087313399 -0.61522287 0.76387811 0.19476907 -0.58442968 0.80669558 0.087313399\n\t\t -0.62132657 0.78350151 0.0029907557 -0.55287355 0.83187336 0.047334146 -0.55287355\n\t\t 0.83187336 0.047334146 -0.52095121 0.85067278 0.070284069 -0.58442968 0.80669558\n\t\t 0.087313399 0.30097371 -0.60380852 0.73809022 0.34055623 -0.60856944 0.71666622 0.29813549\n\t\t -0.60341179 0.73955512 0.29813549 -0.60341179 0.73955512 0.26047567 -0.59776592 0.75814086\n\t\t 0.30097371 -0.60380852 0.73809022 0.36338416 -0.90069264 0.23807496 0.4124274 -0.88882095\n\t\t 0.19965215 0.35084108 -0.92861706 0.12070077 0.35084108 -0.92861706 0.12070077 0.31742331\n\t\t -0.93508703 0.15747558 0.36338416 -0.90069264 0.23807496 0.31742331 -0.93508703 0.15747558\n\t\t 0.35084108 -0.92861706 0.12070077 0.31769797 -0.94805735 0.014099622 0.31769797 -0.94805735\n\t\t 0.014099622 0.28672171 -0.95718247 0.039338429 0.31742331 -0.93508703 0.15747558\n\t\t 0.28672171 -0.95718247 0.039338429 0.31769797 -0.94805735 0.014099622 0.2400589 -0.97009182\n\t\t 0.035676207 0.2400589 -0.97009182 0.035676207 0.2151558 -0.97527993 0.049989391 0.28672171\n\t\t -0.95718247 0.039338429 -0.94686717 -0.29734212 0.12244029 -0.91216761 -0.40974179\n\t\t -0.0043030796 -0.91579932 -0.40009797 -0.034882627 -0.91579932 -0.40009797 -0.034882627\n\t\t -0.88204587 -0.45564163 0.1196631 -0.94686717 -0.29734212 0.12244029 -0.90878004\n\t\t -0.41547924 -0.03769033 -0.91579932 -0.40009797 -0.034882627 -0.91216761 -0.40974179\n\t\t -0.0043030796 -0.90878004 -0.41547924 -0.03769033 -0.8858912 -0.45732012 -0.07742542\n\t\t -0.91579932 -0.40009797 -0.034882627 -0.8858912 -0.45732012 -0.07742542 -0.88634896\n\t\t -0.45649612 -0.077242307 -0.91579932 -0.40009797 -0.034882627 -0.90878004 -0.41547924\n\t\t -0.03769033 -0.91216761 -0.40974179 -0.0043030796 -0.90481263 -0.42573348 -0.0025635231\n\t\t -0.90878004 -0.41547924 -0.03769033 -0.90481263 -0.42573348 -0.0025635231 -0.90432435\n\t\t -0.42680162 0.0012818092 -0.90878004 -0.41547924 -0.03769033 -0.90432435 -0.42680162\n\t\t 0.0012818092 -0.90362245 -0.42820546 0.00924714 -0.55235428 -0.83248407 0.042848051\n\t\t -0.457167 -0.85369438 0.2493668 -0.67497772 -0.62126553 0.39796144 -0.67497772 -0.62126553\n\t\t 0.39796144 -0.78807926 -0.58073694 0.20401628 -0.55235428 -0.83248407 0.042848051\n\t\t -0.89623702 -0.25284609 0.36442155 -0.78807926 -0.58073694 0.20401628 -0.67497772\n\t\t -0.62126553 0.39796144 -0.67497772 -0.62126553 0.39796144 -0.77471226 -0.31858292\n\t\t 0.54612875 -0.89623702 -0.25284609 0.36442155 -0.15518633 -0.98031563 0.12198257\n\t\t -0.457167 -0.85369438 0.2493668 -0.55235428 -0.83248407 0.042848051 -0.55235428 -0.83248407\n\t\t 0.042848051 -0.22501267 -0.96969515 -0.095004044 -0.15518633 -0.98031563 0.12198257\n\t\t -0.15518633 -0.98031563 0.12198257 -0.22501267 -0.96969515 -0.095004044 0.14407818\n\t\t -0.97149563 -0.18817705 0.14407818 -0.97149563 -0.18817705 0.18552232 -0.98196352\n\t\t 0.036011916 -0.15518633 -0.98031563 0.12198257 -0.89623702 -0.25284609 0.36442155\n\t\t -0.77471226 -0.31858292 0.54612875 -0.74181342 0.0084534483 0.67052215 -0.74181342\n\t\t 0.0084534483 0.67052215;\n\tsetAttr \".n[7138:7303]\" -type \"float3\"  -0.86046946 0.10132122 0.49928281 -0.89623702\n\t\t -0.25284609 0.36442155 -0.68608671 0.42786932 0.58836627 -0.86046946 0.10132122 0.49928281\n\t\t -0.74181342 0.0084534483 0.67052215 -0.74181342 0.0084534483 0.67052215 -0.58082837\n\t\t 0.30979326 0.75273901 -0.68608671 0.42786932 0.58836627 -0.68608671 0.42786932 0.58836627\n\t\t -0.58082837 0.30979326 0.75273901 -0.31650764 0.53987235 0.77993095 -0.31650764 0.53987235\n\t\t 0.77993095 -0.39979267 0.67702258 0.61784714 -0.68608671 0.42786932 0.58836627 -0.04504557\n\t\t 0.81090736 0.58339179 -0.39979267 0.67702258 0.61784714 -0.31650764 0.53987235 0.77993095\n\t\t -0.31650764 0.53987235 0.77993095 0.010925421 0.66341144 0.74813068 -0.04504557 0.81090736\n\t\t 0.58339179 -0.04504557 0.81090736 0.58339179 0.010925421 0.66341144 0.74813068 0.35166457\n\t\t 0.66161096 0.66222107 0.35166457 0.66161096 0.66222107 0.32401478 0.80907637 0.49024928\n\t\t -0.04504557 0.81090736 0.58339179 0.65141743 0.67186517 0.35245821 0.32401478 0.80907637\n\t\t 0.49024928 0.35166457 0.66161096 0.66222107 0.35166457 0.66161096 0.66222107 0.65382838\n\t\t 0.53489816 0.53511149 0.65141743 0.67186517 0.35245821 0.65141743 0.67186517 0.35245821\n\t\t 0.65382838 0.53489816 0.53511149 0.87142539 0.30268288 0.38596755 0.87142539 0.30268288\n\t\t 0.38596755 0.88708138 0.4201791 0.19104584 0.65141743 0.67186517 0.35245821 0.99523914\n\t\t 0.09225776 0.03076265 0.88708138 0.4201791 0.19104584 0.87142539 0.30268288 0.38596755\n\t\t 0.87142539 0.30268288 0.38596755 0.97122103 -3.0200483e-05 0.2380749 0.99523914 0.09225776\n\t\t 0.03076265 0.99523914 0.09225776 0.03076265 0.97122103 -3.0200483e-05 0.2380749 0.9381696\n\t\t -0.32697502 0.11349836 0.9381696 -0.32697502 0.11349836 0.95944095 -0.26194006 -0.10412913\n\t\t 0.99523914 0.09225776 0.03076265 0.78508884 -0.58842713 -0.19321264 0.95944095 -0.26194006\n\t\t -0.10412913 0.9381696 -0.32697502 0.11349836 0.9381696 -0.32697502 0.11349836 0.7772761\n\t\t -0.62834537 0.031128926 0.78508884 -0.58842713 -0.19321264 0.78508884 -0.58842713\n\t\t -0.19321264 0.7772761 -0.62834537 0.031128926 0.51295537 -0.85839391 0.004028507\n\t\t 0.51295537 -0.85839391 0.004028507 0.49882531 -0.83758032 -0.2226935 0.78508884 -0.58842713\n\t\t -0.19321264 0.14407818 -0.97149563 -0.18817705 0.49882531 -0.83758032 -0.2226935\n\t\t 0.51295537 -0.85839391 0.004028507 0.51295537 -0.85839391 0.004028507 0.18552232\n\t\t -0.98196352 0.036011916 0.14407818 -0.97149563 -0.18817705 0.46131802 -0.77761155\n\t\t -0.42713699 0.49882531 -0.83758032 -0.2226935 0.14407818 -0.97149563 -0.18817705\n\t\t 0.78508884 -0.58842713 -0.19321264 0.49882531 -0.83758032 -0.2226935 0.46131802 -0.77761155\n\t\t -0.42713699 0.14407818 -0.97149563 -0.18817705 0.097781584 -0.91479224 -0.39182708\n\t\t 0.46131802 -0.77761155 -0.42713699 -0.28049535 -0.91296124 -0.29630414 0.097781584\n\t\t -0.91479224 -0.39182708 0.14407818 -0.97149563 -0.18817705 0.14407818 -0.97149563\n\t\t -0.18817705 -0.22501267 -0.96969515 -0.095004044 -0.28049535 -0.91296124 -0.29630414\n\t\t 0.46131802 -0.77761155 -0.42713699 0.75478393 -0.52226299 -0.39686266 0.78508884\n\t\t -0.58842713 -0.19321264 0.78508884 -0.58842713 -0.19321264 0.75478393 -0.52226299\n\t\t -0.39686266 0.9334392 -0.1875665 -0.30567339 0.9334392 -0.1875665 -0.30567339 0.95944095\n\t\t -0.26194006 -0.10412913 0.78508884 -0.58842713 -0.19321264 0.99523914 0.09225776\n\t\t 0.03076265 0.95944095 -0.26194006 -0.10412913 0.9334392 -0.1875665 -0.30567339 0.9334392\n\t\t -0.1875665 -0.30567339 0.97012234 0.17539015 -0.16742456 0.99523914 0.09225776 0.03076265\n\t\t 0.99523914 0.09225776 0.03076265 0.97012234 0.17539015 -0.16742456 0.85927898 0.51142943\n\t\t -0.0030824074 0.85927898 0.51142943 -0.0030824074 0.88708138 0.4201791 0.19104584\n\t\t 0.99523914 0.09225776 0.03076265 0.65141743 0.67186517 0.35245821 0.88708138 0.4201791\n\t\t 0.19104584 0.85927898 0.51142943 -0.0030824074 0.85927898 0.51142943 -0.0030824074\n\t\t 0.61769438 0.76946336 0.16223633 0.65141743 0.67186517 0.35245821 0.65141743 0.67186517\n\t\t 0.35245821 0.61769438 0.76946336 0.16223633 0.28223491 0.91006202 0.30341497 0.28223491\n\t\t 0.91006202 0.30341497 0.32401478 0.80907637 0.49024928 0.65141743 0.67186517 0.35245821\n\t\t -0.04504557 0.81090736 0.58339179 0.32401478 0.80907637 0.49024928 0.28223491 0.91006202\n\t\t 0.30341497 0.28223491 0.91006202 0.30341497 -0.095950477 0.91189307 0.39896843 -0.04504557\n\t\t 0.81090736 0.58339179 -0.04504557 0.81090736 0.58339179 -0.095950477 0.91189307 0.39896843\n\t\t -0.45951745 0.77468181 0.43433937 -0.45951745 0.77468181 0.43433937 -0.39979267 0.67702258\n\t\t 0.61784714 -0.04504557 0.81090736 0.58339179 -0.68608671 0.42786932 0.58836627 -0.39979267\n\t\t 0.67702258 0.61784714 -0.45951745 0.77468181 0.43433937 -0.45951745 0.77468181 0.43433937\n\t\t -0.75295287 0.51930279 0.40412608 -0.68608671 0.42786932 0.58836627 -0.68608671 0.42786932\n\t\t 0.58836627 -0.75295287 0.51930279 0.40412608 -0.9316386 0.18460621 0.31290627 -0.9316386\n\t\t 0.18460621 0.31290627 -0.86046946 0.10132122 0.49928281 -0.68608671 0.42786932 0.58836627\n\t\t -0.86046946 0.10132122 0.49928281 -0.9316386 0.18460621 0.31290627 -0.96835226 -0.1782589\n\t\t 0.17453536 -0.96835226 -0.1782589 0.17453536 -0.89623702 -0.25284609 0.36442155 -0.86046946\n\t\t 0.10132122 0.49928281 -0.89623702 -0.25284609 0.36442155 -0.96835226 -0.1782589 0.17453536\n\t\t -0.8575089 -0.51435918 0.010223739 -0.8575089 -0.51435918 0.010223739 -0.78807926\n\t\t -0.58073694 0.20401628 -0.89623702 -0.25284609 0.36442155 -0.55235428 -0.83248407\n\t\t 0.042848051 -0.78807926 -0.58073694 0.20401628 -0.8575089 -0.51435918 0.010223739\n\t\t -0.8575089 -0.51435918 0.010223739 -0.61595482 -0.77233207 -0.15515605 -0.55235428\n\t\t -0.83248407 0.042848051 -0.55235428 -0.83248407 0.042848051 -0.61595482 -0.77233207\n\t\t -0.15515605 -0.28049535 -0.91296124 -0.29630414 -0.28049535 -0.91296124 -0.29630414\n\t\t -0.22501267 -0.96969515 -0.095004044 -0.55235428 -0.83248407 0.042848051 0.22608124\n\t\t -0.36671031 0.9024018 0.22617279 -0.36667976 0.9024018;\n\tsetAttr \".n[7304:7469]\" -type \"float3\"  0.22617279 -0.36667976 0.9024018 0.22617279\n\t\t -0.36667976 0.9024018 0.22608124 -0.36671031 0.90243232 0.22608124 -0.36671031 0.9024018\n\t\t 0.22614227 -0.36661872 0.90243232 0.22608124 -0.36671031 0.9024018 0.22608124 -0.36671031\n\t\t 0.90243232 0.22608124 -0.36671031 0.90243232 0.22614227 -0.36661872 0.90243232 0.22614227\n\t\t -0.36661872 0.90243232 0.22614227 -0.36674082 0.9024018 0.22614227 -0.36661872 0.90243232\n\t\t 0.22614227 -0.36661872 0.90243232 0.22614227 -0.36661872 0.90243232 0.22614227 -0.36671031\n\t\t 0.9024018 0.22614227 -0.36674082 0.9024018 0.22611175 -0.36658821 0.90246284 0.22614227\n\t\t -0.36674082 0.9024018 0.22614227 -0.36671031 0.9024018 0.22614227 -0.36671031 0.9024018\n\t\t 0.22614227 -0.36655769 0.90246284 0.22611175 -0.36658821 0.90246284 0.22611175 -0.36658821\n\t\t 0.90246284 0.22611175 -0.36658821 0.90246284 0.22614227 -0.36655769 0.90246284 0.22614227\n\t\t -0.36655769 0.90246284 0.22611175 -0.36658821 0.90246284 0.22611175 -0.36658821 0.90246284\n\t\t 0.22595917 -0.36661872 0.90249336 0.22611175 -0.36658821 0.90246284 0.22611175 -0.36658821\n\t\t 0.90246284 0.22611175 -0.36658821 0.90246284 0.22598968 -0.36661872 0.90249336 0.22595917\n\t\t -0.36661872 0.90249336 0.22598968 -0.36664924 0.90246284 0.22595917 -0.36661872 0.90249336\n\t\t 0.22598968 -0.36661872 0.90249336 0.22598968 -0.36661872 0.90249336 0.22605072 -0.36664924\n\t\t 0.90246284 0.22598968 -0.36664924 0.90246284 0.22617279 -0.36661872 0.90243232 0.22598968\n\t\t -0.36664924 0.90246284 0.22605072 -0.36664924 0.90246284 0.22605072 -0.36664924 0.90246284\n\t\t 0.22617279 -0.36661872 0.90243232 0.22617279 -0.36661872 0.90243232 0.22614227 -0.36667976\n\t\t 0.9024018 0.22617279 -0.36661872 0.90243232 0.22617279 -0.36661872 0.90243232 0.22617279\n\t\t -0.36661872 0.90243232 0.22614227 -0.36667976 0.90243232 0.22614227 -0.36667976 0.9024018\n\t\t 0.22617279 -0.36664924 0.90243232 0.22614227 -0.36667976 0.9024018 0.22614227 -0.36667976\n\t\t 0.90243232 0.22614227 -0.36667976 0.90243232 0.22617279 -0.36664924 0.90243232 0.22617279\n\t\t -0.36664924 0.90243232 0.22611175 -0.36661872 0.90246284 0.22617279 -0.36664924 0.90243232\n\t\t 0.22617279 -0.36664924 0.90243232 0.22617279 -0.36664924 0.90243232 0.22614227 -0.36664924\n\t\t 0.90243232 0.22611175 -0.36661872 0.90246284 0.22608124 -0.36667976 0.90243232 0.22611175\n\t\t -0.36661872 0.90246284 0.22614227 -0.36664924 0.90243232 0.22614227 -0.36664924 0.90243232\n\t\t 0.22611175 -0.36671031 0.9024018 0.22608124 -0.36667976 0.90243232 0.22611175 -0.36677134\n\t\t 0.9024018 0.22608124 -0.36667976 0.90243232 0.22611175 -0.36671031 0.9024018 0.22611175\n\t\t -0.36671031 0.9024018 0.22614227 -0.36677134 0.90237129 0.22611175 -0.36677134 0.9024018\n\t\t 0.22617279 -0.36677134 0.90237129 0.22611175 -0.36677134 0.9024018 0.22614227 -0.36677134\n\t\t 0.90237129 0.22614227 -0.36677134 0.90237129 0.22614227 -0.36677134 0.9024018 0.22617279\n\t\t -0.36677134 0.90237129 0.22611175 -0.36667976 0.90243232 0.22617279 -0.36677134 0.90237129\n\t\t 0.22614227 -0.36677134 0.9024018 0.22614227 -0.36677134 0.9024018 0.22608124 -0.36664924\n\t\t 0.90243232 0.22611175 -0.36667976 0.90243232 0.22617279 -0.36667976 0.9024018 0.22611175\n\t\t -0.36667976 0.90243232 0.22608124 -0.36664924 0.90243232 0.22608124 -0.36664924 0.90243232\n\t\t 0.22617279 -0.36667976 0.9024018 0.22617279 -0.36667976 0.9024018 0.98455757 0.14612292\n\t\t -0.096072279 0.94802701 -0.21573506 -0.23380229 0.95635867 -0.29190925 -0.010193161\n\t\t 0.95635867 -0.29190925 -0.010193161 0.99121064 0.052827854 0.1210364 0.98455757 0.14612292\n\t\t -0.096072279 0.87408054 0.48100251 0.067567945 0.98455757 0.14612292 -0.096072279\n\t\t 0.99121064 0.052827854 0.1210364 0.99121064 0.052827854 0.1210364 0.88595223 0.37174627\n\t\t 0.27716908 0.87408054 0.48100251 0.067567945 0.63338089 0.73809034 0.23239839 0.87408054\n\t\t 0.48100251 0.067567945 0.88595223 0.37174627 0.27716908 0.88595223 0.37174627 0.27716908\n\t\t 0.65669709 0.61677933 0.4339121 0.63338089 0.73809034 0.23239839 0.29908112 0.87820077\n\t\t 0.37314975 0.63338089 0.73809034 0.23239839 0.65669709 0.61677933 0.4339121 0.65669709\n\t\t 0.61677933 0.4339121 0.33823639 0.75020617 0.568102 0.29908112 0.87820077 0.37314975\n\t\t -0.07800559 0.88015389 0.46818438 0.29908112 0.87820077 0.37314975 0.33823639 0.75020617\n\t\t 0.568102 0.33823639 0.75020617 0.568102 -0.02096645 0.7519151 0.65889454 -0.07800559\n\t\t 0.88015389 0.46818438 0.78673685 -0.60957646 -0.096896224 0.95635867 -0.29190925\n\t\t -0.010193161 0.94802701 -0.21573506 -0.23380229 0.94802701 -0.21573506 -0.23380229\n\t\t 0.76998216 -0.54914981 -0.32480848 0.78673685 -0.60957646 -0.096896224 0.50813341\n\t\t -0.85204607 -0.12552257 0.78673685 -0.60957646 -0.096896224 0.76998216 -0.54914981\n\t\t -0.32480848 0.76998216 -0.54914981 -0.32480848 0.47749284 -0.80364376 -0.35514385\n\t\t 0.50813341 -0.85204607 -0.12552257 0.16296914 -0.98229921 -0.092074268 0.50813341\n\t\t -0.85204607 -0.12552257 0.47749284 -0.80364376 -0.35514385 0.47749284 -0.80364376\n\t\t -0.35514385 0.11511611 -0.94033623 -0.32007807 0.16296914 -0.98229921 -0.092074268\n\t\t -0.19617268 -0.98055977 -0.0013122229 0.16296914 -0.98229921 -0.092074268 0.11511611\n\t\t -0.94033623 -0.32007807 0.11511611 -0.94033623 -0.32007807 -0.26184851 -0.93856633\n\t\t -0.22467719 -0.19617268 -0.98055977 -0.0013122229 -0.51463336 -0.84707195 0.13269454\n\t\t -0.19617268 -0.98055977 -0.0013122229 -0.26184851 -0.93856633 -0.22467719 -0.26184851\n\t\t -0.93856633 -0.22467719 -0.59617883 -0.79839492 -0.084169991 -0.51463336 -0.84707195\n\t\t 0.13269454 -0.74394953 -0.6020999 0.2897428 -0.51463336 -0.84707195 0.13269454 -0.59617883\n\t\t -0.79839492 -0.084169991 -0.59617883 -0.79839492 -0.084169991 -0.83693939 -0.541246\n\t\t 0.080874085 -0.74394953 -0.6020999 0.2897428 -0.84914696 -0.28308994 0.44584495 -0.74394953\n\t\t -0.6020999 0.2897428 -0.83693939 -0.541246 0.080874085 -0.83693939 -0.541246 0.080874085\n\t\t -0.94735551 -0.20639697 0.24469742 -0.84914696 -0.28308994 0.44584495;\n\tsetAttr \".n[7470:7635]\" -type \"float3\"  -0.81438643 0.06164718 0.57701343 -0.84914696\n\t\t -0.28308994 0.44584495 -0.94735551 -0.20639697 0.24469742 -0.94735551 -0.20639697\n\t\t 0.24469742 -0.91082495 0.15530844 0.38239694 -0.81438643 0.06164718 0.57701343 -0.64476466\n\t\t 0.37934491 0.66359448 -0.81438643 0.06164718 0.57701343 -0.91082495 0.15530844 0.38239694\n\t\t -0.91082495 0.15530844 0.38239694 -0.73271906 0.48893684 0.47328103 -0.64476466 0.37934491\n\t\t 0.66359448 -0.36616126 0.621723 0.69234282 -0.64476466 0.37934491 0.66359448 -0.73271906\n\t\t 0.48893684 0.47328103 -0.73271906 0.48893684 0.47328103 -0.44029078 0.74343085 0.50337225\n\t\t -0.36616126 0.621723 0.69234282 -0.02096645 0.7519151 0.65889454 -0.36616126 0.621723\n\t\t 0.69234282 -0.44029078 0.74343085 0.50337225 -0.44029078 0.74343085 0.50337225 -0.07800559\n\t\t 0.88015389 0.46818438 -0.02096645 0.7519151 0.65889454 0.95635867 -0.29190925 -0.010193161\n\t\t 0.91653198 -0.34781915 0.19733271 0.94799644 -0.036225155 0.31614125 0.94799644 -0.036225155\n\t\t 0.31614125 0.99121064 0.052827854 0.1210364 0.95635867 -0.29190925 -0.010193161 0.88595223\n\t\t 0.37174627 0.27716908 0.99121064 0.052827854 0.1210364 0.94799644 -0.036225155 0.31614125\n\t\t 0.94799644 -0.036225155 0.31614125 0.85274816 0.25205266 0.45747241 0.88595223 0.37174627\n\t\t 0.27716908 0.88595223 0.37174627 0.27716908 0.85274816 0.25205266 0.45747241 0.64558846\n\t\t 0.47367802 0.59898674 0.64558846 0.47367802 0.59898674 0.65669709 0.61677933 0.4339121\n\t\t 0.88595223 0.37174627 0.27716908 0.33823639 0.75020617 0.568102 0.65669709 0.61677933\n\t\t 0.4339121 0.64558846 0.47367802 0.59898674 0.64558846 0.47367802 0.59898674 0.35758519\n\t\t 0.59431762 0.72032833 0.33823639 0.75020617 0.568102 0.76314604 -0.63512045 0.11893068\n\t\t 0.91653198 -0.34781915 0.19733271 0.95635867 -0.29190925 -0.010193161 0.95635867\n\t\t -0.29190925 -0.010193161 0.78673685 -0.60957646 -0.096896224 0.76314604 -0.63512045\n\t\t 0.11893068 0.76314604 -0.63512045 0.11893068 0.78673685 -0.60957646 -0.096896224\n\t\t 0.50813341 -0.85204607 -0.12552257 0.50813341 -0.85204607 -0.12552257 0.51127684\n\t\t -0.85433495 0.093203597 0.76314604 -0.63512045 0.11893068 0.19916409 -0.97213656\n\t\t 0.12356951 0.51127684 -0.85433495 0.093203597 0.50813341 -0.85204607 -0.12552257\n\t\t 0.50813341 -0.85204607 -0.12552257 0.16296914 -0.98229921 -0.092074268 0.19916409\n\t\t -0.97213656 0.12356951 0.19916409 -0.97213656 0.12356951 0.16296914 -0.98229921 -0.092074268\n\t\t -0.19617268 -0.98055977 -0.0013122229 -0.19617268 -0.98055977 -0.0013122229 -0.12552233\n\t\t -0.97058022 0.20545068 0.19916409 -0.97213656 0.12356951 -0.41346449 -0.84981853\n\t\t 0.32685331 -0.12552233 -0.97058022 0.20545068 -0.19617268 -0.98055977 -0.0013122229\n\t\t -0.19617268 -0.98055977 -0.0013122229 -0.51463336 -0.84707195 0.13269454 -0.41346449\n\t\t -0.84981853 0.32685331 -0.41346449 -0.84981853 0.32685331 -0.51463336 -0.84707195\n\t\t 0.13269454 -0.74394953 -0.6020999 0.2897428 -0.74394953 -0.6020999 0.2897428 -0.62080735\n\t\t -0.62843728 0.46864229 -0.41346449 -0.84981853 0.32685331 -0.7159031 -0.33994582\n\t\t 0.60979033 -0.62080735 -0.62843728 0.46864229 -0.74394953 -0.6020999 0.2897428 -0.74394953\n\t\t -0.6020999 0.2897428 -0.84914696 -0.28308994 0.44584495 -0.7159031 -0.33994582 0.60979033\n\t\t -0.7159031 -0.33994582 0.60979033 -0.84914696 -0.28308994 0.44584495 -0.81438643\n\t\t 0.06164718 0.57701343 -0.81438643 0.06164718 0.57701343 -0.68465227 -0.028199261\n\t\t 0.72829372 -0.7159031 -0.33994582 0.60979033 -0.5311442 0.25901046 0.80669576 -0.68465227\n\t\t -0.028199261 0.72829372 -0.81438643 0.06164718 0.57701343 -0.81438643 0.06164718\n\t\t 0.57701343 -0.64476466 0.37934491 0.66359448 -0.5311442 0.25901046 0.80669576 -0.5311442\n\t\t 0.25901046 0.80669576 -0.64476466 0.37934491 0.66359448 -0.36616126 0.621723 0.69234282\n\t\t -0.36616126 0.621723 0.69234282 -0.27924451 0.47795033 0.832789 -0.5311442 0.25901046\n\t\t 0.80669576 0.032837734 0.59569085 0.80251467 -0.27924451 0.47795033 0.832789 -0.36616126\n\t\t 0.621723 0.69234282 -0.36616126 0.621723 0.69234282 -0.02096645 0.7519151 0.65889454\n\t\t 0.032837734 0.59569085 0.80251467 0.032837734 0.59569085 0.80251467 -0.02096645 0.7519151\n\t\t 0.65889454 0.33823639 0.75020617 0.568102 0.33823639 0.75020617 0.568102 0.35758519\n\t\t 0.59431762 0.72032833 0.032837734 0.59569085 0.80251467 0.22608124 -0.36667976 0.90243232\n\t\t 0.2253488 -0.36698496 0.90249336 0.22614227 -0.36661872 0.90243232 0.22608124 -0.36667976\n\t\t 0.90243232 0.22614227 -0.36661872 0.90243232 0.22611175 -0.36667976 0.90243232 0.22614227\n\t\t -0.36661872 0.90243232 0.22608124 -0.367046 0.90227973 0.22611175 -0.36667976 0.90243232\n\t\t 0.22608124 -0.36667976 0.90243232 0.22611175 -0.36667976 0.90243232 0.22608124 -0.36667976\n\t\t 0.90243232 0.22611175 -0.36667976 0.90243232 0.2260202 -0.36667976 0.90246284 0.22608124\n\t\t -0.36667976 0.90243232 0.22611175 -0.36667976 0.90243232 0.22598968 -0.36661872 0.90249336\n\t\t 0.2260202 -0.36667976 0.90246284 0.2260202 -0.36667976 0.90246284 0.22592865 -0.36664924\n\t\t 0.90246284 0.22608124 -0.36667976 0.90243232 0.22608124 -0.36667976 0.90243232 0.22608124\n\t\t -0.36667976 0.90243232 0.22608124 -0.36664924 0.90243232 0.22608124 -0.36667976 0.90243232\n\t\t 0.22605072 -0.36671031 0.90243232 0.22608124 -0.36664924 0.90243232 0.22608124 -0.36667976\n\t\t 0.90243232 0.22608124 -0.36677134 0.9024018 0.22605072 -0.36671031 0.90243232 0.22605072\n\t\t -0.36671031 0.90243232 0.22611175 -0.36658821 0.90246284 0.22608124 -0.36664924 0.90243232\n\t\t 0.22608124 -0.36667976 0.90243232 0.22608124 -0.36664924 0.90243232 0.22605072 -0.36664924\n\t\t 0.90246284 0.22608124 -0.36664924 0.90243232 0.22595917 -0.36649665 0.90255439 0.22605072\n\t\t -0.36664924 0.90246284 0.22638643 -0.36671031 0.90234077 0.22608124 -0.36667976 0.90243232\n\t\t 0.22605072 -0.36664924 0.90246284 0.75377649 0.57478583 0.3184301 0.68242419 0.61113346\n\t\t 0.40095213 0.61113292 0.70317715 0.36335331 0.61113292 0.70317715 0.36335331;\n\tsetAttr \".n[7636:7801]\" -type \"float3\"  0.68419427 0.67046136 0.28690445 0.75377649\n\t\t 0.57478583 0.3184301 0.78283012 0.55516243 0.28092286 0.75377649 0.57478583 0.3184301\n\t\t 0.68419427 0.67046136 0.28690445 0.68419427 0.67046136 0.28690445 0.71562833 0.65166199\n\t\t 0.25128934 0.78283012 0.55516243 0.28092286 0.75377649 0.57478583 0.3184301 0.78283012\n\t\t 0.55516243 0.28092286 0.7503584 0.61403263 0.24472788 0.7503584 0.61403263 0.24472788\n\t\t 0.72325796 0.63148922 0.27939689 0.75377649 0.57478583 0.3184301 0.68242419 0.61113346\n\t\t 0.40095213 0.75377649 0.57478583 0.3184301 0.72325796 0.63148922 0.27939689 0.72325796\n\t\t 0.63148922 0.27939689 0.6512953 0.67009509 0.3559373 0.68242419 0.61113346 0.40095213\n\t\t 0.54853946 0.72206819 0.4215216 0.61113292 0.70317715 0.36335331 0.68242419 0.61113346\n\t\t 0.40095213 0.68242419 0.61113346 0.40095213 0.59492767 0.64583296 0.47843862 0.54853946\n\t\t 0.72206819 0.4215216 0.59492767 0.64583296 0.47843862 0.68242419 0.61113346 0.40095213\n\t\t 0.6512953 0.67009509 0.3559373 0.6512953 0.67009509 0.3559373 0.57557887 0.69374698\n\t\t 0.43284395 0.59492767 0.64583296 0.47843862 0.57557887 0.69374698 0.43284395 0.6512953\n\t\t 0.67009509 0.3559373 0.71193558 0.5829953 0.39143038 0.71193558 0.5829953 0.39143038\n\t\t 0.6512953 0.67009509 0.3559373 0.72325796 0.63148922 0.27939689 0.71193558 0.5829953\n\t\t 0.39143038 0.64210927 0.60264927 0.47376928 0.57557887 0.69374698 0.43284395 0.64210927\n\t\t 0.60264927 0.47376928 0.70290214 0.5721308 0.42252874 0.57557887 0.69374698 0.43284395\n\t\t 0.64210927 0.60264927 0.47376928 0.65871131 0.58619976 0.47157198 0.70290214 0.5721308\n\t\t 0.42252874 0.64210927 0.60264927 0.47376928 0.63737887 0.58092004 0.50621045 0.65871131\n\t\t 0.58619976 0.47157198 0.57557887 0.69374698 0.43284395 0.70290214 0.5721308 0.42252874\n\t\t 0.68437737 0.62578225 0.37415686 0.68437737 0.62578225 0.37415686 0.59492767 0.64583296\n\t\t 0.47843862 0.57557887 0.69374698 0.43284395 0.68437737 0.62578225 0.37415686 0.54853946\n\t\t 0.72206819 0.4215216 0.59492767 0.64583296 0.47843862 0.77578032 0.54734969 0.31388283\n\t\t 0.72325796 0.63148922 0.27939689 0.7503584 0.61403263 0.24472788 0.72325796 0.63148922\n\t\t 0.27939689 0.77578032 0.54734969 0.31388283 0.71193558 0.5829953 0.39143038 0.7503584\n\t\t 0.61403263 0.24472788 0.79931009 0.52247715 0.29676196 0.77578032 0.54734969 0.31388283\n\t\t 0.68437737 0.62578225 0.37415686 0.53065562 0.73610669 0.42014825 0.54853946 0.72206819\n\t\t 0.4215216 0.68437737 0.62578225 0.37415686 0.60472405 0.68764329 0.40174559 0.53065562\n\t\t 0.73610669 0.42014825 0.79836404 0.51088011 0.31873527 0.79931009 0.52247715 0.29676196\n\t\t 0.7503584 0.61403263 0.24472788 0.7503584 0.61403263 0.24472788 0.76232165 0.60380894\n\t\t 0.2328867 0.79836404 0.51088011 0.31873527 0.83535254 0.37485915 0.40198979 0.79836404\n\t\t 0.51088011 0.31873527 0.76232165 0.60380894 0.2328867 0.76232165 0.60380894 0.2328867\n\t\t 0.77159935 0.46668932 0.4321726 0.83535254 0.37485915 0.40198979 0.79531217 0.54606795\n\t\t 0.26313055 0.76232165 0.60380894 0.2328867 0.7503584 0.61403263 0.24472788 0.7503584\n\t\t 0.61403263 0.24472788 0.78283012 0.55516243 0.28092286 0.79531217 0.54606795 0.26313055\n\t\t 0.71877176 0.65099055 0.24393441 0.79531217 0.54606795 0.26313055 0.78283012 0.55516243\n\t\t 0.28092286 0.78283012 0.55516243 0.28092286 0.71562833 0.65166199 0.25128934 0.71877176\n\t\t 0.65099055 0.24393441 0.79531217 0.54606795 0.26313055 0.71877176 0.65099055 0.24393441\n\t\t 0.63380814 0.74773419 0.19775988 0.63380814 0.74773419 0.19775988 0.65407246 0.68352324\n\t\t 0.32395393 0.79531217 0.54606795 0.26313055 0.65407246 0.68352324 0.32395393 0.77159935\n\t\t 0.46668932 0.4321726 0.76232165 0.60380894 0.2328867 0.76232165 0.60380894 0.2328867\n\t\t 0.79531217 0.54606795 0.26313055 0.65407246 0.68352324 0.32395393 0.46302706 -0.77443749\n\t\t 0.43104348 0.46079922 -0.77697057 0.42887667 0.41309878 -0.73525172 0.53730893 0.41309878\n\t\t -0.73525172 0.53730893 0.38999623 -0.71526212 0.57988226 0.46302706 -0.77443749 0.43104348\n\t\t 0.35312989 -0.67485565 0.64796907 0.38999623 -0.71526212 0.57988226 0.41309878 -0.73525172\n\t\t 0.53730893 0.41309878 -0.73525172 0.53730893 0.35364869 -0.66920972 0.65346241 0.35312989\n\t\t -0.67485565 0.64796907 0.46079922 -0.77697057 0.42887667 0.46302706 -0.77443749 0.43104348\n\t\t 0.47434944 -0.80458987 0.35715818 0.47434944 -0.80458987 0.35715818 0.46684188 -0.8082521\n\t\t 0.35877565 0.46079922 -0.77697057 0.42887667 0.46684188 -0.8082521 0.35877565 0.47434944\n\t\t -0.80458987 0.35715818 0.48829642 -0.82390803 0.28757596 0.48829642 -0.82390803 0.28757596\n\t\t 0.48298621 -0.82482356 0.29383227 0.46684188 -0.8082521 0.35877565 0.52107328 -0.82714295\n\t\t 0.21033363 0.48298621 -0.82482356 0.29383227 0.48829642 -0.82390803 0.28757596 0.48829642\n\t\t -0.82390803 0.28757596 0.52311802 -0.82811958 0.20136118 0.52107328 -0.82714295 0.21033363\n\t\t 0.52107328 -0.82714295 0.21033363 0.52311802 -0.82811958 0.20136118 0.64342195 -0.76522094\n\t\t -0.01928764 0.64342195 -0.76522094 -0.01928764 0.61272037 -0.78823191 0.056825526\n\t\t 0.52107328 -0.82714295 0.21033363 0.69121397 -0.71312577 -0.11673325 0.61272037 -0.78823191\n\t\t 0.056825526 0.64342195 -0.76522094 -0.01928764 0.64342195 -0.76522094 -0.01928764\n\t\t 0.69182432 -0.70616758 -0.15048671 0.69121397 -0.71312577 -0.11673325 0.71956539\n\t\t -0.0039367168 -0.69438767 0.71559799 -0.093233876 -0.69222081 0.71813107 -0.052644257\n\t\t -0.69389933 0.71813107 -0.052644257 -0.69389933 0.7192297 0.048768751 -0.69304484\n\t\t 0.71956539 -0.0039367168 -0.69438767 0.32413685 0.74343097 -0.58497888 0.38706604\n\t\t 0.63234359 -0.67104107 0.27100414 0.7808466 -0.5628224 0.27100414 0.7808466 -0.5628224\n\t\t 0.20749508 0.84340954 -0.49552909 0.32413685 0.74343097 -0.58497888 0.099978358 0.92538232\n\t\t -0.36558127 0.20749508 0.84340954 -0.49552909;\n\tsetAttr \".n[7802:7967]\" -type \"float3\"  0.27100414 0.7808466 -0.5628224 0.27100414\n\t\t 0.7808466 -0.5628224 0.11334546 0.92239147 -0.36915195 0.099978358 0.92538232 -0.36558127\n\t\t 0.032776579 0.96899319 -0.24485007 0.099978358 0.92538232 -0.36558127 0.11334546\n\t\t 0.92239147 -0.36915195 0.11334546 0.92239147 -0.36915195 0.039307542 0.96761984 -0.24927525\n\t\t 0.032776579 0.96899319 -0.24485007 -0.0043339324 0.983459 -0.18100536 0.032776579\n\t\t 0.96899319 -0.24485007 0.039307542 0.96761984 -0.24927525 0.039307542 0.96761984\n\t\t -0.24927525 -0.0034794142 0.98352003 -0.1807612 -0.0043339324 0.983459 -0.18100536\n\t\t -0.0043339324 0.983459 -0.18100536 -0.0034794142 0.98352003 -0.1807612 -0.01953215\n\t\t 0.98477125 -0.17264329 -0.01953215 0.98477125 -0.17264329 -0.019898372 0.98471022\n\t\t -0.1730095 -0.0043339324 0.983459 -0.18100536 -0.019898372 0.98471022 -0.1730095\n\t\t -0.01953215 0.98477125 -0.17264329 -0.05072207 0.99258399 -0.11044656 -0.05072207\n\t\t 0.99258399 -0.11044656 -0.045289773 0.99032563 -0.13098551 -0.019898372 0.98471022\n\t\t -0.1730095 -0.045289773 0.99032563 -0.13098551 -0.05072207 0.99258399 -0.11044656\n\t\t -0.15045655 0.98782307 0.039551914 -0.15045655 0.98782307 0.039551914 -0.1221659\n\t\t 0.99237031 -0.016113847 -0.045289773 0.99032563 -0.13098551 -0.22193089 0.95605326\n\t\t 0.19153409 -0.1221659 0.99237031 -0.016113847 -0.15045655 0.98782307 0.039551914\n\t\t -0.15045655 0.98782307 0.039551914 -0.26688465 0.93368322 0.23865467 -0.22193089\n\t\t 0.95605326 0.19153409 -0.34513405 0.78563792 0.51344335 -0.22193089 0.95605326 0.19153409\n\t\t -0.26688465 0.93368322 0.23865467 -0.26688465 0.93368322 0.23865467 -0.36686325 0.77745897\n\t\t 0.51081878 -0.34513405 0.78563792 0.51344335 -0.34513405 0.78563792 0.51344335 -0.36686325\n\t\t 0.77745897 0.51081878 -0.37385195 0.63106167 0.67964715 -0.37385195 0.63106167 0.67964715\n\t\t -0.36506262 0.62984091 0.68553722 -0.34513405 0.78563792 0.51344335 -0.13586845 0.1422468\n\t\t 0.98043764 -0.17014074 0.17264323 0.97015291 -0.063783683 0.0089724967 0.99789423\n\t\t -0.063783683 0.0089724967 0.99789423 0.012298994 -0.10998861 0.99383527 -0.13586845\n\t\t 0.1422468 0.98043764 0.10577723 -0.26602975 0.95812863 0.012298994 -0.10998861 0.99383527\n\t\t -0.063783683 0.0089724967 0.99789423 -0.063783683 0.0089724967 0.99789423 0.097842418\n\t\t -0.23642679 0.96670431 0.10577723 -0.26602975 0.95812863 0.78920847 0.49723834 0.36033201\n\t\t 0.73189473 0.614582 0.29419836 0.68437737 0.62578225 0.37415686 0.68437737 0.62578225\n\t\t 0.37415686 0.70290214 0.5721308 0.42252874 0.78920847 0.49723834 0.36033201 0.75698102\n\t\t 0.46537703 0.45860162 0.78920847 0.49723834 0.36033201 0.70290214 0.5721308 0.42252874\n\t\t 0.70290214 0.5721308 0.42252874 0.65871131 0.58619976 0.47157198 0.75698102 0.46537703\n\t\t 0.45860162 0.60472405 0.68764329 0.40174559 0.68437737 0.62578225 0.37415686 0.73189473\n\t\t 0.614582 0.29419836 0.73189473 0.614582 0.29419836 0.64345199 0.7018038 0.30558178\n\t\t 0.60472405 0.68764329 0.40174559 0.53065562 0.73610669 0.42014825 0.60472405 0.68764329\n\t\t 0.40174559 0.64345199 0.7018038 0.30558178 0.64345199 0.7018038 0.30558178 0.55671841\n\t\t 0.76293242 0.3285622 0.53065562 0.73610669 0.42014825 0.7154758 0.46000573 0.52574229\n\t\t 0.75698102 0.46537703 0.45860162 0.65871131 0.58619976 0.47157198 0.65871131 0.58619976\n\t\t 0.47157198 0.63737887 0.58092004 0.50621045 0.7154758 0.46000573 0.52574229 0.69054222\n\t\t 0.47587535 0.54466379 0.7154758 0.46000573 0.52574229 0.63737887 0.58092004 0.50621045\n\t\t 0.63737887 0.58092004 0.50621045 0.64210927 0.60264927 0.47376928 0.69054222 0.47587535\n\t\t 0.54466379 0.69054222 0.47587535 0.54466379 0.64210927 0.60264927 0.47376928 0.71193558\n\t\t 0.5829953 0.39143038 0.71193558 0.5829953 0.39143038 0.75664526 0.4660179 0.45854059\n\t\t 0.69054222 0.47587535 0.54466379 0.82366395 0.42991453 0.36973172 0.75664526 0.4660179\n\t\t 0.45854059 0.71193558 0.5829953 0.39143038 0.71193558 0.5829953 0.39143038 0.77578032\n\t\t 0.54734969 0.31388283 0.82366395 0.42991453 0.36973172 0.84005237 0.40632373 0.35938594\n\t\t 0.82366395 0.42991453 0.36973172 0.77578032 0.54734969 0.31388283 0.77578032 0.54734969\n\t\t 0.31388283 0.79931009 0.52247715 0.29676196 0.84005237 0.40632373 0.35938594 0.82525092\n\t\t 0.39875513 0.39985347 0.84005237 0.40632373 0.35938594 0.79931009 0.52247715 0.29676196\n\t\t 0.79931009 0.52247715 0.29676196 0.79836404 0.51088011 0.31873527 0.82525092 0.39875513\n\t\t 0.39985347 0.80831313 0.36539838 0.46159244 0.82525092 0.39875513 0.39985347 0.79836404\n\t\t 0.51088011 0.31873527 0.79836404 0.51088011 0.31873527 0.83535254 0.37485915 0.40198979\n\t\t 0.80831313 0.36539838 0.46159244 0.71532315 0.48683149 0.50126648 0.80831313 0.36539838\n\t\t 0.46159244 0.83535254 0.37485915 0.40198979 0.83535254 0.37485915 0.40198979 0.77159935\n\t\t 0.46668932 0.4321726 0.71532315 0.48683149 0.50126648 0.71532315 0.48683149 0.50126648\n\t\t 0.77159935 0.46668932 0.4321726 0.65407246 0.68352324 0.32395393 0.65407246 0.68352324\n\t\t 0.32395393 0.5797599 0.70662582 0.40562144 0.71532315 0.48683149 0.50126648 0.55153024\n\t\t 0.80254543 0.22730181 0.5797599 0.70662582 0.40562144 0.65407246 0.68352324 0.32395393\n\t\t 0.65407246 0.68352324 0.32395393 0.63380814 0.74773419 0.19775988 0.55153024 0.80254543\n\t\t 0.22730181 0.61656523 0.7601552 0.2048707 0.55153024 0.80254543 0.22730181 0.63380814\n\t\t 0.74773419 0.19775988 0.63380814 0.74773419 0.19775988 0.71877176 0.65099055 0.24393441\n\t\t 0.61656523 0.7601552 0.2048707 0.62846744 0.75154901 0.20047604 0.61656523 0.7601552\n\t\t 0.2048707 0.71877176 0.65099055 0.24393441 0.71877176 0.65099055 0.24393441 0.71562833\n\t\t 0.65166199 0.25128934 0.62846744 0.75154901 0.20047604 0.60917974 0.760674 0.22409736\n\t\t 0.62846744 0.75154901 0.20047604 0.71562833 0.65166199 0.25128934 0.71562833 0.65166199\n\t\t 0.25128934 0.68419427 0.67046136 0.28690445 0.60917974 0.760674 0.22409736;\n\tsetAttr \".n[7968:8133]\" -type \"float3\"  0.60917974 0.760674 0.22409736 0.68419427\n\t\t 0.67046136 0.28690445 0.61113292 0.70317715 0.36335331 0.61113292 0.70317715 0.36335331\n\t\t 0.54573172 0.78695047 0.28782001 0.60917974 0.760674 0.22409736 0.54573172 0.78695047\n\t\t 0.28782001 0.61113292 0.70317715 0.36335331 0.54853946 0.72206819 0.4215216 0.54853946\n\t\t 0.72206819 0.4215216 0.4942165 0.79723519 0.34653762 0.54573172 0.78695047 0.28782001\n\t\t 0.55671841 0.76293242 0.3285622 0.4942165 0.79723519 0.34653762 0.54853946 0.72206819\n\t\t 0.4215216 0.54853946 0.72206819 0.4215216 0.53065562 0.73610669 0.42014825 0.55671841\n\t\t 0.76293242 0.3285622 -0.47013736 -0.83574951 0.28370011 -0.29258069 -0.85634941 0.42548913\n\t\t -0.42146045 -0.62526327 0.65678889 -0.42146045 -0.62526327 0.65678889 -0.60975963\n\t\t -0.5854367 0.5342266 -0.47013736 -0.83574951 0.28370011 -0.63631088 -0.25812569 0.72692037\n\t\t -0.60975963 -0.5854367 0.5342266 -0.42146045 -0.62526327 0.65678889 -0.42146045 -0.62526327\n\t\t 0.65678889 -0.4459669 -0.32319111 0.83462018 -0.63631088 -0.25812569 0.72692037 -0.078798488\n\t\t -0.98120058 0.17609188 -0.29258069 -0.85634941 0.42548913 -0.47013736 -0.83574951\n\t\t 0.28370011 -0.47013736 -0.83574951 0.28370011 -0.2385629 -0.97100747 0.013458735\n\t\t -0.078798488 -0.98120058 0.17609188 -0.63631088 -0.25812569 0.72692037 -0.4459669\n\t\t -0.32319111 0.83462018 -0.36234626 0.0039978819 0.93200475 -0.36234626 0.0039978819\n\t\t 0.93200475 -0.54570144 0.096255265 0.83239233 -0.63631088 -0.25812569 0.72692037\n\t\t -0.35169542 0.423841 0.83465064 -0.54570144 0.096255265 0.83239233 -0.36234626 0.0039978819\n\t\t 0.93200475 -0.36234626 0.0039978819 0.93200475 -0.18326373 0.30637532 0.93408 -0.35169542\n\t\t 0.423841 0.83465064 -0.35169542 0.423841 0.83465064 -0.18326373 0.30637532 0.93408\n\t\t 0.063966632 0.53791928 0.84054071 0.063966632 0.53791928 0.84054071 -0.083865076\n\t\t 0.67467272 0.73332918 -0.35169542 0.423841 0.83465064 0.21701686 0.81063277 0.54380924\n\t\t -0.083865076 0.67467272 0.73332918 0.063966632 0.53791928 0.84054071 0.063966632\n\t\t 0.53791928 0.84054071 0.34174606 0.66338104 0.66563916 0.21701686 0.81063277 0.54380924\n\t\t 0.21701686 0.81063277 0.54380924 0.34174606 0.66338104 0.66563916 0.60771489 0.66377783\n\t\t 0.4358958 0.60771489 0.66377783 0.4358958 0.50514215 0.81102955 0.29496133 0.21701686\n\t\t 0.81063277 0.54380924 0.73668605 0.67574108 0.024719942 0.50514215 0.81102955 0.29496133\n\t\t 0.60771489 0.66377783 0.4358958 0.60771489 0.66377783 0.4358958 0.82143605 0.5389266\n\t\t 0.18643753 0.73668605 0.67574108 0.024719942 0.73668605 0.67574108 0.024719942 0.82143605\n\t\t 0.5389266 0.18643753 0.95037681 0.30780998 -0.044801194 0.95037681 0.30780998 -0.044801194\n\t\t 0.87636942 0.42539775 -0.22577596 0.73668605 0.67574108 0.024719942 0.90289003 0.098147772\n\t\t -0.41846979 0.87636942 0.42539775 -0.22577596 0.95037681 0.30780998 -0.044801194\n\t\t 0.95037681 0.30780998 -0.044801194 0.97485274 0.0057682828 -0.22269356 0.90289003\n\t\t 0.098147772 -0.41846979 0.90289003 0.098147772 -0.41846979 0.97485274 0.0057682828\n\t\t -0.22269356 0.89120162 -0.32139018 -0.3200781 0.89120162 -0.32139018 -0.3200781 0.8122502\n\t\t -0.25620267 -0.52397227 0.90289003 0.098147772 -0.41846979 0.61827469 -0.58378845\n\t\t -0.52620006 0.8122502 -0.25620267 -0.52397227 0.89120162 -0.32139018 -0.3200781 0.89120162\n\t\t -0.32139018 -0.3200781 0.71214962 -0.62376755 -0.32206178 0.61827469 -0.58378845\n\t\t -0.52620006 0.61827469 -0.58378845 -0.52620006 0.71214962 -0.62376755 -0.32206178\n\t\t 0.4648582 -0.85534215 -0.22855306 0.4648582 -0.85534215 -0.22855306 0.3504138 -0.83465064\n\t\t -0.42484811 0.61827469 -0.58378845 -0.52620006 0.049531844 -0.9706412 -0.23532815\n\t\t 0.3504138 -0.83465064 -0.42484811 0.4648582 -0.85534215 -0.22855306 0.4648582 -0.85534215\n\t\t -0.22855306 0.18710928 -0.98086482 -0.053651467 0.049531844 -0.9706412 -0.23532815\n\t\t 0.22495218 -0.77486497 -0.59068567 0.3504138 -0.83465064 -0.42484811 0.049531844\n\t\t -0.9706412 -0.23532815 0.61827469 -0.58378845 -0.52620006 0.3504138 -0.83465064 -0.42484811\n\t\t 0.22495218 -0.77486497 -0.59068567 0.049531844 -0.9706412 -0.23532815 -0.083376288\n\t\t -0.91424298 -0.3964659 0.22495218 -0.77486497 -0.59068567 -0.37870392 -0.91460931\n\t\t -0.14145322 -0.083376288 -0.91424298 -0.3964659 0.049531844 -0.9706412 -0.23532815\n\t\t 0.049531844 -0.9706412 -0.23532815 -0.2385629 -0.97100747 0.013458735 -0.37870392\n\t\t -0.91460931 -0.14145322 0.22495218 -0.77486497 -0.59068567 0.49946606 -0.51774639\n\t\t -0.69457072 0.61827469 -0.58378845 -0.52620006 0.61827469 -0.58378845 -0.52620006\n\t\t 0.49946606 -0.51774639 -0.69457072 0.69826359 -0.18207327 -0.69225132 0.69826359\n\t\t -0.18207327 -0.69225132 0.8122502 -0.25620267 -0.52397227 0.61827469 -0.58378845\n\t\t -0.52620006 0.90289003 0.098147772 -0.41846979 0.8122502 -0.25620267 -0.52397227\n\t\t 0.69826359 -0.18207327 -0.69225132 0.69826359 -0.18207327 -0.69225132 0.79116178\n\t\t 0.18109703 -0.58412427 0.90289003 0.098147772 -0.41846979 0.90289003 0.098147772\n\t\t -0.41846979 0.79116178 0.18109703 -0.58412427 0.76396966 0.51652598 -0.38666955 0.76396966\n\t\t 0.51652598 -0.38666955 0.87636942 0.42539775 -0.22577596 0.90289003 0.098147772 -0.41846979\n\t\t 0.73668605 0.67574108 0.024719942 0.87636942 0.42539775 -0.22577596 0.76396966 0.51652598\n\t\t -0.38666955 0.76396966 0.51652598 -0.38666955 0.62083781 0.77309507 -0.12988684 0.73668605\n\t\t 0.67574108 0.024719942 0.73668605 0.67574108 0.024719942 0.62083781 0.77309507 -0.12988684\n\t\t 0.38352585 0.91171008 0.1470381 0.38352585 0.91171008 0.1470381 0.50514215 0.81102955\n\t\t 0.29496133 0.73668605 0.67574108 0.024719942 0.21701686 0.81063277 0.54380924 0.50514215\n\t\t 0.81102955 0.29496133 0.38352585 0.91171008 0.1470381 0.38352585 0.91171008 0.1470381\n\t\t 0.088228725 0.91134381 0.40205079 0.21701686 0.81063277 0.54380924 0.21701686 0.81063277\n\t\t 0.54380924 0.088228725 0.91134381 0.40205079 -0.22013025 0.77196568 0.59627056 -0.22013025\n\t\t 0.77196568 0.59627056;\n\tsetAttr \".n[8134:8299]\" -type \"float3\"  -0.083865076 0.67467272 0.73332918 0.21701686\n\t\t 0.81063277 0.54380924 -0.35169542 0.423841 0.83465064 -0.083865076 0.67467272 0.73332918\n\t\t -0.22013025 0.77196568 0.59627056 -0.22013025 0.77196568 0.59627056 -0.49461362 0.51487768\n\t\t 0.70015556 -0.35169542 0.423841 0.83465064 -0.35169542 0.423841 0.83465064 -0.49461362\n\t\t 0.51487768 0.70015556 -0.69344163 0.17917401 0.69783622 -0.69344163 0.17917401 0.69783622\n\t\t -0.54570144 0.096255265 0.83239233 -0.35169542 0.423841 0.83465064 -0.54570144 0.096255265\n\t\t 0.83239233 -0.69344163 0.17917401 0.69783622 -0.78633988 -0.18399629 0.58970916 -0.78633988\n\t\t -0.18399629 0.58970916 -0.63631088 -0.25812569 0.72692037 -0.54570144 0.096255265\n\t\t 0.83239233 -0.63631088 -0.25812569 0.72692037 -0.78633988 -0.18399629 0.58970916\n\t\t -0.75914776 -0.51942527 0.39225444 -0.75914776 -0.51942527 0.39225444 -0.60975963\n\t\t -0.5854367 0.5342266 -0.63631088 -0.25812569 0.72692037 -0.47013736 -0.83574951 0.28370011\n\t\t -0.60975963 -0.5854367 0.5342266 -0.75914776 -0.51942527 0.39225444 -0.75914776 -0.51942527\n\t\t 0.39225444 -0.61598533 -0.77596378 0.13550225 -0.47013736 -0.83574951 0.28370011\n\t\t -0.47013736 -0.83574951 0.28370011 -0.61598533 -0.77596378 0.13550225 -0.37870392\n\t\t -0.91460931 -0.14145322 -0.37870392 -0.91460931 -0.14145322 -0.2385629 -0.97100747\n\t\t 0.013458735 -0.47013736 -0.83574951 0.28370011 -0.078798488 -0.98120058 0.17609188\n\t\t -0.2385629 -0.97100747 0.013458735 0.049531844 -0.9706412 -0.23532815 0.049531844\n\t\t -0.9706412 -0.23532815 0.18710928 -0.98086482 -0.053651467 -0.078798488 -0.98120058\n\t\t 0.17609188 0.60866129 -0.36530632 0.70430619 0.60863078 -0.36530632 0.70430619 0.60863078\n\t\t -0.36530632 0.70430619 0.60863078 -0.36530632 0.70430619 0.60866129 -0.3652758 0.70430619\n\t\t 0.60866129 -0.36530632 0.70430619 0.60866129 -0.36530632 0.70430619 0.60866129 -0.36530632\n\t\t 0.70430619 0.60866129 -0.3652758 0.70430619 0.60866129 -0.3652758 0.70430619 0.60866129\n\t\t -0.36530632 0.70430619 0.60866129 -0.36530632 0.70430619 0.60866129 -0.36524528 0.70430619\n\t\t 0.60866129 -0.36530632 0.70430619 0.60866129 -0.36530632 0.70430619 0.60866129 -0.36530632\n\t\t 0.70430619 0.60866129 -0.3652758 0.70430619 0.60866129 -0.36524528 0.70430619 0.60866129\n\t\t -0.36533684 0.70427567 0.60866129 -0.36524528 0.70430619 0.60866129 -0.3652758 0.70430619\n\t\t 0.60866129 -0.3652758 0.70430619 0.60863078 -0.36533684 0.70430619 0.60866129 -0.36533684\n\t\t 0.70427567 0.60863078 -0.3652758 0.7043367 0.60866129 -0.36533684 0.70427567 0.60863078\n\t\t -0.36533684 0.70430619 0.60863078 -0.36533684 0.70430619 0.60863078 -0.36524528 0.7043367\n\t\t 0.60863078 -0.3652758 0.7043367 0.60863078 -0.3652758 0.7043367 0.60863078 -0.3652758\n\t\t 0.7043367 0.60863078 -0.36524528 0.7043367 0.60863078 -0.36524528 0.7043367 0.60863078\n\t\t -0.3652758 0.70430619 0.60863078 -0.3652758 0.7043367 0.60863078 -0.3652758 0.7043367\n\t\t 0.60863078 -0.3652758 0.7043367 0.60863078 -0.3652758 0.70430619 0.60863078 -0.3652758\n\t\t 0.70430619 0.60863078 -0.3652758 0.7043367 0.60863078 -0.3652758 0.7043367 0.60863078\n\t\t -0.3652758 0.7043367 0.60863078 -0.3652758 0.7043367 0.60863078 -0.3652758 0.7043367\n\t\t 0.60863078 -0.3652758 0.7043367 0.60863078 -0.3652758 0.7043367 0.60863078 -0.3652758\n\t\t 0.7043367 0.60863078 -0.3652758 0.7043367 0.60863078 -0.3652758 0.7043367 0.60863078\n\t\t -0.3652758 0.7043367 0.60863078 -0.3652758 0.7043367 0.60863078 -0.3652758 0.7043367\n\t\t 0.60863078 -0.3652758 0.7043367 0.60866129 -0.36530632 0.70430619 0.60863078 -0.3652758\n\t\t 0.7043367 0.60863078 -0.3652758 0.7043367 0.60863078 -0.3652758 0.7043367 0.60866129\n\t\t -0.36530632 0.70430619 0.60866129 -0.36530632 0.70430619 0.60866129 -0.3652758 0.70430619\n\t\t 0.60866129 -0.36530632 0.70430619 0.60866129 -0.36530632 0.70430619 0.60866129 -0.36530632\n\t\t 0.70430619 0.60866129 -0.3652758 0.70430619 0.60866129 -0.3652758 0.70430619 0.60866129\n\t\t -0.36533684 0.70427567 0.60866129 -0.3652758 0.70430619 0.60866129 -0.3652758 0.70430619\n\t\t 0.60866129 -0.3652758 0.70430619 0.60866129 -0.36533684 0.70430619 0.60866129 -0.36533684\n\t\t 0.70427567 0.60863078 -0.3652758 0.7043367 0.60866129 -0.36533684 0.70427567 0.60866129\n\t\t -0.36533684 0.70430619 0.60866129 -0.36533684 0.70430619 0.60863078 -0.3652758 0.7043367\n\t\t 0.60863078 -0.3652758 0.7043367 0.60863078 -0.3652758 0.70430619 0.60863078 -0.3652758\n\t\t 0.7043367 0.60863078 -0.3652758 0.7043367 0.60863078 -0.3652758 0.7043367 0.60866129\n\t\t -0.36530632 0.70430619 0.60863078 -0.3652758 0.70430619 0.60866129 -0.3652758 0.70430619\n\t\t 0.60863078 -0.3652758 0.70430619 0.60866129 -0.36530632 0.70430619 0.60866129 -0.36530632\n\t\t 0.70430619 0.60866129 -0.3652758 0.70430619 0.60866129 -0.3652758 0.70430619 0.60863078\n\t\t -0.36530632 0.70430619 0.60866129 -0.3652758 0.70430619 0.60866129 -0.3652758 0.70430619\n\t\t 0.60866129 -0.3652758 0.70430619 0.60863078 -0.36530632 0.70430619 0.60863078 -0.36530632\n\t\t 0.70430619 0.83614606 0.15189083 -0.52699363 0.74355304 -0.2100282 -0.634785 0.85180217\n\t\t -0.28620234 -0.43873405 0.85180217 -0.28620234 -0.43873405 0.94000059 0.05862632\n\t\t -0.33600879 0.83614606 0.15189083 -0.52699363 0.80904549 0.48616007 -0.3302103 0.83614606\n\t\t 0.15189083 -0.52699363 0.94000059 0.05862632 -0.33600879 0.94000059 0.05862632 -0.33600879\n\t\t 0.91415131 0.37705645 -0.14859465 0.80904549 0.48616007 -0.3302103 0.66634089 0.74190515\n\t\t -0.074343137 0.80904549 0.48616007 -0.3302103 0.91415131 0.37705645 -0.14859465 0.91415131\n\t\t 0.37705645 -0.14859465 0.7782523 0.62065518 0.095217705 0.66634089 0.74190515 -0.074343137\n\t\t 0.42985293 0.8800624 0.20163573 0.66634089 0.74190515 -0.074343137 0.7782523 0.62065518\n\t\t 0.095217705 0.7782523 0.62065518 0.095217705 0.55299515 0.75225091 0.35813466 0.42985293\n\t\t 0.8800624 0.20163573 0.66304529 -0.60493779 -0.44087031 0.85180217 -0.28620234 -0.43873405;\n\tsetAttr \".n[8300:8465]\" -type \"float3\"  0.74355304 -0.2100282 -0.634785 0.74355304\n\t\t -0.2100282 -0.634785 0.54539645 -0.54457217 -0.63713485 0.66304529 -0.60493779 -0.44087031\n\t\t 0.40244785 -0.84902483 -0.34223449 0.66304529 -0.60493779 -0.44087031 0.54539645\n\t\t -0.54457217 -0.63713485 0.54539645 -0.54457217 -0.63713485 0.27185911 -0.80086672\n\t\t -0.53355503 0.40244785 -0.84902483 -0.34223449 0.10965331 -0.98132259 -0.15787217\n\t\t 0.40244785 -0.84902483 -0.34223449 0.27185911 -0.80086672 -0.53355503 0.27185911\n\t\t -0.80086672 -0.53355503 -0.035462216 -0.93975645 -0.33997613 0.10965331 -0.98132259\n\t\t -0.15787217 -0.17068973 -0.98168898 0.084200643 0.10965331 -0.98132259 -0.15787217\n\t\t -0.035462216 -0.93975645 -0.33997613 -0.035462216 -0.93975645 -0.33997613 -0.32981324\n\t\t -0.94012278 -0.085848503 -0.17068973 -0.98168898 0.084200643 -0.39594686 -0.85009319\n\t\t 0.34714809 -0.17068973 -0.98168898 0.084200643 -0.32981324 -0.94012278 -0.085848503\n\t\t -0.32981324 -0.94012278 -0.085848503 -0.56627071 -0.80196559 0.19013037 -0.39594686\n\t\t -0.85009319 0.34714809 -0.53187639 -0.60649449 0.5909605 -0.39594686 -0.85009319\n\t\t 0.34714809 -0.56627071 -0.80196559 0.19013037 -0.56627071 -0.80196559 0.19013037\n\t\t -0.70891428 -0.54628152 0.44608909 -0.53187639 -0.60649449 0.5909605 -0.55766469\n\t\t -0.28803381 0.77843565 -0.53187639 -0.60649449 0.5909605 -0.70891428 -0.54628152\n\t\t 0.44608909 -0.70891428 -0.54628152 0.44608909 -0.73601484 -0.21201226 0.64287239\n\t\t -0.55766469 -0.28803381 0.77843565 -0.4695273 0.056764349 0.88106936 -0.55766469\n\t\t -0.28803381 0.77843565 -0.73601484 -0.21201226 0.64287239 -0.73601484 -0.21201226\n\t\t 0.64287239 -0.64351332 0.14996782 0.7505722 -0.4695273 0.056764349 0.88106936 -0.28077042\n\t\t 0.3754997 0.88323617 -0.4695273 0.056764349 0.88106936 -0.64351332 0.14996782 0.7505722\n\t\t -0.64351332 0.14996782 0.7505722 -0.44529572 0.48454228 0.75289154 -0.28077042 0.3754997\n\t\t 0.88323617 -0.020172926 0.61958683 0.78463084 -0.28077042 0.3754997 0.88323617 -0.44529572\n\t\t 0.48454228 0.75289154 -0.44529572 0.48454228 0.75289154 -0.17178892 0.74077576 0.64937276\n\t\t -0.020172926 0.61958683 0.78463084 0.2726216 0.75188464 0.60023797 -0.020172926 0.61958683\n\t\t 0.78463084 -0.17178892 0.74077576 0.64937276 -0.17178892 0.74077576 0.64937276 0.13559347\n\t\t 0.87966561 0.4558244 0.2726216 0.75188464 0.60023797 0.55299515 0.75225091 0.35813466\n\t\t 0.2726216 0.75188464 0.60023797 0.13559347 0.87966561 0.4558244 0.13559347 0.87966561\n\t\t 0.4558244 0.42985293 0.8800624 0.20163573 0.55299515 0.75225091 0.35813466 0.85180217\n\t\t -0.28620234 -0.43873405 0.90957379 -0.34241745 -0.23535872 0.98928797 -0.030670807\n\t\t -0.14249092 0.98928797 -0.030670807 -0.14249092 0.94000059 0.05862632 -0.33600879\n\t\t 0.85180217 -0.28620234 -0.43873405 0.91415131 0.37705645 -0.14859465 0.94000059 0.05862632\n\t\t -0.33600879 0.98928797 -0.030670807 -0.14249092 0.98928797 -0.030670807 -0.14249092\n\t\t 0.96594131 0.2572408 0.026947826 0.91415131 0.37705645 -0.14859465 0.91415131 0.37705645\n\t\t -0.14859465 0.96594131 0.2572408 0.026947826 0.84310424 0.47740135 0.24741353 0.84310424\n\t\t 0.47740135 0.24741353 0.7782523 0.62065518 0.095217705 0.91415131 0.37705645 -0.14859465\n\t\t 0.55299515 0.75225091 0.35813466 0.7782523 0.62065518 0.095217705 0.84310424 0.47740135\n\t\t 0.24741353 0.84310424 0.47740135 0.24741353 0.63939309 0.59642345 0.48518324 0.55299515\n\t\t 0.75225091 0.35813466 0.73891431 -0.63063425 -0.23722033 0.90957379 -0.34241745 -0.23535872\n\t\t 0.85180217 -0.28620234 -0.43873405 0.85180217 -0.28620234 -0.43873405 0.66304529\n\t\t -0.60493779 -0.44087031 0.73891431 -0.63063425 -0.23722033 0.73891431 -0.63063425\n\t\t -0.23722033 0.66304529 -0.60493779 -0.44087031 0.40244785 -0.84902483 -0.34223449\n\t\t 0.40244785 -0.84902483 -0.34223449 0.50331151 -0.85131365 -0.14807574 0.73891431\n\t\t -0.63063425 -0.23722033 0.23853296 -0.97094631 0.018585844 0.50331151 -0.85131365\n\t\t -0.14807574 0.40244785 -0.84902483 -0.34223449 0.40244785 -0.84902483 -0.34223449\n\t\t 0.10965331 -0.98132259 -0.15787217 0.23853296 -0.97094631 0.018585844 0.23853296\n\t\t -0.97094631 0.018585844 0.10965331 -0.98132259 -0.15787217 -0.17068973 -0.98168898\n\t\t 0.084200643 -0.17068973 -0.98168898 0.084200643 -0.014862214 -0.97125155 0.23746459\n\t\t 0.23853296 -0.97094631 0.018585844 -0.21854278 -0.85225987 0.4752343 -0.014862214\n\t\t -0.97125155 0.23746459 -0.17068973 -0.98168898 0.084200643 -0.17068973 -0.98168898\n\t\t 0.084200643 -0.39594686 -0.85009319 0.34714809 -0.21854278 -0.85225987 0.4752343\n\t\t -0.21854278 -0.85225987 0.4752343 -0.39594686 -0.85009319 0.34714809 -0.53187639\n\t\t -0.60649449 0.5909605 -0.53187639 -0.60649449 0.5909605 -0.34144089 -0.63206893 0.69560844\n\t\t -0.21854278 -0.85225987 0.4752343 -0.36478764 -0.34409624 0.86513871 -0.34144089\n\t\t -0.63206893 0.69560844 -0.53187639 -0.60649449 0.5909605 -0.53187639 -0.60649449\n\t\t 0.5909605 -0.55766469 -0.28803381 0.77843565 -0.36478764 -0.34409624 0.86513871 -0.36478764\n\t\t -0.34409624 0.86513871 -0.55766469 -0.28803381 0.77843565 -0.4695273 0.056764349\n\t\t 0.88106936 -0.4695273 0.056764349 0.88106936 -0.28501236 -0.032380156 0.95794547\n\t\t -0.36478764 -0.34409624 0.86513871 -0.11441397 0.2558367 0.95989865 -0.28501236 -0.032380156\n\t\t 0.95794547 -0.4695273 0.056764349 0.88106936 -0.4695273 0.056764349 0.88106936 -0.28077042\n\t\t 0.3754997 0.88323617 -0.11441397 0.2558367 0.95989865 -0.11441397 0.2558367 0.95989865\n\t\t -0.28077042 0.3754997 0.88323617 -0.020172926 0.61958683 0.78463084 -0.020172926\n\t\t 0.61958683 0.78463084 0.12118885 0.47645506 0.87078458 -0.11441397 0.2558367 0.95989865\n\t\t 0.38593689 0.59611821 0.70403141 0.12118885 0.47645506 0.87078458 -0.020172926 0.61958683\n\t\t 0.78463084 -0.020172926 0.61958683 0.78463084 0.2726216 0.75188464 0.60023797 0.38593689\n\t\t 0.59611821 0.70403141 0.38593689 0.59611821 0.70403141 0.2726216 0.75188464 0.60023797\n\t\t 0.55299515 0.75225091 0.35813466 0.55299515 0.75225091 0.35813466 0.63939309 0.59642345\n\t\t 0.48518324 0.38593689 0.59611821 0.70403141;\n\tsetAttr \".n[8466:8631]\" -type \"float3\"  0.60866129 -0.36530632 0.70430619 0.60872233\n\t\t -0.36524528 0.70427567 0.60866129 -0.36530632 0.70430619 0.60866129 -0.36530632 0.70430619\n\t\t 0.60866129 -0.36530632 0.70430619 0.60866129 -0.36530632 0.70430619 0.60866129 -0.36530632\n\t\t 0.70430619 0.60866129 -0.36530632 0.70430619 0.60866129 -0.36530632 0.70430619 0.60866129\n\t\t -0.36530632 0.70430619 0.60866129 -0.36530632 0.70430619 0.60866129 -0.36530632 0.70430619\n\t\t 0.60866129 -0.36530632 0.70430619 0.60863078 -0.3652758 0.7043367 0.60866129 -0.36530632\n\t\t 0.70430619 0.60866129 -0.36530632 0.70430619 0.60863078 -0.36530632 0.70430619 0.60863078\n\t\t -0.3652758 0.7043367 0.60863078 -0.3652758 0.7043367 0.60863078 -0.3652758 0.7043367\n\t\t 0.60866129 -0.36530632 0.70430619 0.60866129 -0.36530632 0.70430619 0.60866129 -0.36530632\n\t\t 0.70430619 0.60866129 -0.36530632 0.70430619 0.60866129 -0.36530632 0.70430619 0.60866129\n\t\t -0.36530632 0.70430619 0.60866129 -0.36530632 0.70430619 0.60866129 -0.36530632 0.70430619\n\t\t 0.60872233 -0.36524528 0.70427567 0.60866129 -0.36530632 0.70430619 0.60866129 -0.36530632\n\t\t 0.70430619 0.60866129 -0.3652758 0.70430619 0.60866129 -0.36530632 0.70430619 0.60866129\n\t\t -0.36530632 0.70430619 0.60866129 -0.36530632 0.70430619 0.60863078 -0.3652758 0.7043367\n\t\t 0.60866129 -0.36530632 0.70430619 0.60869181 -0.36542839 0.70421463 0.60863078 -0.3652758\n\t\t 0.7043367 0.60872233 -0.3652758 0.70424515 0.60866129 -0.36530632 0.70430619 0.60863078\n\t\t -0.3652758 0.7043367 0.13190123 -0.76168096 -0.63432717 0.05557448 -0.88821077 -0.45600751\n\t\t 0.063692406 -0.89629817 -0.43882558 0.063692406 -0.89629817 -0.43882558 0.13397649\n\t\t -0.75530261 -0.64149898 0.13190123 -0.76168096 -0.63432717 0.024384582 -0.94628739\n\t\t -0.32236695 0.063692406 -0.89629817 -0.43882558 0.05557448 -0.88821077 -0.45600751\n\t\t 0.05557448 -0.88821077 -0.45600751 0.010254508 -0.93230993 -0.36143064 0.024384582\n\t\t -0.94628739 -0.32236695 -0.10190101 -0.9354229 0.33845034 -0.098360866 -0.93127239\n\t\t 0.35074928 -0.11185005 -0.94631797 0.30320144 -0.11185005 -0.94631797 0.30320144\n\t\t -0.11590901 -0.95043802 0.288461 -0.10190101 -0.9354229 0.33845034 0.20615271 -0.56593525\n\t\t -0.79824209 0.13190123 -0.76168096 -0.63432717 0.13397649 -0.75530261 -0.64149898\n\t\t 0.13397649 -0.75530261 -0.64149898 0.20694619 -0.55583364 -0.80507821 0.20615271\n\t\t -0.56593525 -0.79824209 0.2796717 -0.30686358 -0.90969574 0.20615271 -0.56593525\n\t\t -0.79824209 0.20694619 -0.55583364 -0.80507821 0.20694619 -0.55583364 -0.80507821\n\t\t 0.27887824 -0.29758596 -0.91302222 0.2796717 -0.30686358 -0.90969574 -0.099185094\n\t\t -0.19437234 0.9758904 -0.11572609 -0.3088778 0.94399852 -0.10888995 -0.29172641 0.95025486\n\t\t -0.10888995 -0.29172641 0.95025486 -0.09518718 -0.17471842 0.97997987 -0.099185094\n\t\t -0.19437234 0.9758904 -0.081636988 -0.065645263 0.99447614 -0.099185094 -0.19437234\n\t\t 0.9758904 -0.09518718 -0.17471842 0.97997987 -0.09518718 -0.17471842 0.97997987 -0.083101876\n\t\t -0.068361409 0.99417096 -0.081636988 -0.065645263 0.99447614 0.3277078 -0.077822164\n\t\t -0.94155705 0.2796717 -0.30686358 -0.90969574 0.27887824 -0.29758596 -0.91302222\n\t\t 0.27887824 -0.29758596 -0.91302222 0.326426 -0.07309179 -0.94238102 0.3277078 -0.077822164\n\t\t -0.94155705 0.36069822 0.12665184 -0.92400891 0.3277078 -0.077822164 -0.94155705\n\t\t 0.326426 -0.07309179 -0.94238102 0.326426 -0.07309179 -0.94238102 0.35972163 0.11719112\n\t\t -0.92565691 0.36069822 0.12665184 -0.92400891 0.38853103 0.36548972 -0.84582049 0.36069822\n\t\t 0.12665184 -0.92400891 0.35972163 0.11719112 -0.92565691 0.35972163 0.11719112 -0.92565691\n\t\t 0.38746288 0.34989476 -0.85287029 0.38853103 0.36548972 -0.84582049 0.39686248 0.62950534\n\t\t -0.66795868 0.38853103 0.36548972 -0.84582049 0.38746288 0.34989476 -0.85287029 0.38746288\n\t\t 0.34989476 -0.85287029 0.39799172 0.60850865 -0.6865139 0.39686248 0.62950534 -0.66795868\n\t\t 0.38016883 0.80919832 -0.44792023 0.39686248 0.62950534 -0.66795868 0.39799172 0.60850865\n\t\t -0.6865139 0.39799172 0.60850865 -0.6865139 0.38236618 0.79674679 -0.46790984 0.38016883\n\t\t 0.80919832 -0.44792023 0.34504196 0.91692871 -0.20035408 0.38016883 0.80919832 -0.44792023\n\t\t 0.38236618 0.79674679 -0.46790984 0.38236618 0.79674679 -0.46790984 0.33860257 0.91808844\n\t\t -0.20593898 0.34504196 0.91692871 -0.20035408 0.31614095 0.94729465 -0.051149093\n\t\t 0.34504196 0.91692871 -0.20035408 0.33860257 0.91808844 -0.20593898 0.33860257 0.91808844\n\t\t -0.20593898 0.29941681 0.95367301 -0.028168656 0.31614095 0.94729465 -0.051149093\n\t\t 0.16544059 0.80263692 0.57301545 0.16940799 0.80526149 0.56816304 0.15814666 0.79769289\n\t\t 0.58189636 0.15814666 0.79769289 0.58189636 0.15463704 0.79531246 0.58610791 0.16544059\n\t\t 0.80263692 0.57301545 -0.068117321 0.035859302 0.99700916 -0.053224321 0.13528861\n\t\t 0.98934907 -0.037324186 0.16080208 0.98626667 -0.037324186 0.16080208 0.98626667\n\t\t -0.05951111 0.048188783 0.99703968 -0.068117321 0.035859302 0.99700916 -0.084200546\n\t\t -0.067415334 0.99414045 -0.068117321 0.035859302 0.99700916 -0.05951111 0.048188783\n\t\t 0.99703968 -0.05951111 0.048188783 0.99703968 -0.082644098 -0.064790741 0.99444562\n\t\t -0.084200546 -0.067415334 0.99414045 -0.083101876 -0.068361409 0.99417096 -0.084200546\n\t\t -0.067415334 0.99414045 -0.082644098 -0.064790741 0.99444562 -0.082644098 -0.064790741\n\t\t 0.99444562 -0.081636988 -0.065645263 0.99447614 -0.083101876 -0.068361409 0.99417096\n\t\t 0.97903377 0.057191972 -0.19547105 0.98477119 0.13000913 -0.11539049 0.99917603 -0.030090943\n\t\t -0.026123842 0.98477119 0.13000913 -0.11539049 0.98464912 0.1736201 -0.016663119\n\t\t 0.99960327 -0.011810352 0.025086215 0.99960327 -0.011810352 0.025086215 0.99917603\n\t\t -0.030090943 -0.026123842 0.98477119 0.13000913 -0.11539049 0.99417096 -0.010284422\n\t\t 0.10715049 0.99960327 -0.011810352 0.025086215 0.98464912 0.1736201 -0.016663119\n\t\t 0.98464912 0.1736201 -0.016663119 0.97473061 0.14902219 0.16635638 0.99417096 -0.010284422\n\t\t 0.10715049 0.95812863 -0.085634619 0.27317119;\n\tsetAttr \".n[8632:8797]\" -type \"float3\"  0.99417096 -0.010284422 0.10715049 0.97473061\n\t\t 0.14902219 0.16635638 0.97473061 0.14902219 0.16635638 0.92217779 -0.023590494 0.3859981\n\t\t 0.95812863 -0.085634619 0.27317119 0.93566704 -0.22052646 0.27539906 0.95812863 -0.085634619\n\t\t 0.27317119 0.92217779 -0.023590494 0.3859981 0.92217779 -0.023590494 0.3859981 0.88128304\n\t\t -0.19498245 0.43043306 0.93566704 -0.22052646 0.27539906 0.93517876 -0.23813564 0.26206246\n\t\t 0.93566704 -0.22052646 0.27539906 0.88128304 -0.19498245 0.43043306 0.88128304 -0.19498245\n\t\t 0.43043306 0.87368393 -0.2375863 0.42445147 0.93517876 -0.23813564 0.26206246 0.93517876\n\t\t -0.23813564 0.26206246 0.87368393 -0.2375863 0.42445147 0.87383652 -0.23947844 0.42307812\n\t\t 0.87383652 -0.23947844 0.42307812 0.87270737 -0.24066867 0.42472613 0.93517876 -0.23813564\n\t\t 0.26206246 0.99917603 -0.030090943 -0.026123842 0.99511701 -0.064790495 -0.074373603\n\t\t 0.97903377 0.057191972 -0.19547105 0.96545303 -0.037445933 -0.25775933 0.97903377\n\t\t 0.057191972 -0.19547105 0.99511701 -0.064790495 -0.074373603 0.99511701 -0.064790495\n\t\t -0.074373603 0.98657191 -0.12305033 -0.10727255 0.96545303 -0.037445933 -0.25775933\n\t\t 0.9492783 -0.13357924 -0.28455457 0.96545303 -0.037445933 -0.25775933 0.98657191\n\t\t -0.12305033 -0.10727255 0.98657191 -0.12305033 -0.10727255 0.97814882 -0.17407729\n\t\t -0.11355936 0.9492783 -0.13357924 -0.28455457 0.9492783 -0.13357924 -0.28455457 0.97814882\n\t\t -0.17407729 -0.11355936 0.96829134 -0.22452439 -0.10950039 0.96829134 -0.22452439\n\t\t -0.10950039 0.93383592 -0.20712885 -0.29157382 0.9492783 -0.13357924 -0.28455457\n\t\t 0.91515869 -0.29953894 -0.26960048 0.93383592 -0.20712885 -0.29157382 0.96829134\n\t\t -0.22452439 -0.10950039 0.96829134 -0.22452439 -0.10950039 0.95880008 -0.26837948\n\t\t -0.092806764 0.91515869 -0.29953894 -0.26960048 0.89190358 -0.39756438 -0.21539961\n\t\t 0.91515869 -0.29953894 -0.26960048 0.95880008 -0.26837948 -0.092806764 0.95880008\n\t\t -0.26837948 -0.092806764 0.94381553 -0.32401472 -0.064821295 0.89190358 -0.39756438\n\t\t -0.21539961 0.87176132 -0.46864197 -0.14264348 0.89190358 -0.39756438 -0.21539961\n\t\t 0.94381553 -0.32401472 -0.064821295 0.94381553 -0.32401472 -0.064821295 0.93288994\n\t\t -0.35938567 -0.022553153 0.87176132 -0.46864197 -0.14264348 0.8644675 -0.49882478\n\t\t -0.061708391 0.87176132 -0.46864197 -0.14264348 0.93288994 -0.35938567 -0.022553153\n\t\t 0.93288994 -0.35938567 -0.022553153 0.92529082 -0.37900907 0.012878839 0.8644675\n\t\t -0.49882478 -0.061708391 0.86135459 -0.49949616 0.09228801 0.8644675 -0.49882478\n\t\t -0.061708391 0.92529082 -0.37900907 0.012878839 0.92529082 -0.37900907 0.012878839\n\t\t 0.91134387 -0.40583488 0.068544604 0.86135459 -0.49949616 0.09228801 0.85894358 -0.41676047\n\t\t 0.29743344 0.86135459 -0.49949616 0.09228801 0.91134387 -0.40583488 0.068544604 0.91134387\n\t\t -0.40583488 0.068544604 0.87667483 -0.43769619 0.19953005 0.85894358 -0.41676047\n\t\t 0.29743344 0.87243271 -0.27112615 0.40659812 0.85894358 -0.41676047 0.29743344 0.87667483\n\t\t -0.43769619 0.19953005 0.87667483 -0.43769619 0.19953005 0.9278543 -0.25791159 0.26929536\n\t\t 0.87243271 -0.27112615 0.40659812 0.87383652 -0.23947844 0.42307812 0.87243271 -0.27112615\n\t\t 0.40659812 0.9278543 -0.25791159 0.26929536 0.9278543 -0.25791159 0.26929536 0.87270737\n\t\t -0.24066867 0.42472613 0.87383652 -0.23947844 0.42307812 0.9278543 -0.25791159 0.26929536\n\t\t 0.87667483 -0.43769619 0.19953005 0.91134387 -0.40583488 0.068544604 0.9278543 -0.25791159\n\t\t 0.26929536 0.91134387 -0.40583488 0.068544604 0.93288994 -0.35938567 -0.022553153\n\t\t 0.91134387 -0.40583488 0.068544604 0.92529082 -0.37900907 0.012878839 0.93288994\n\t\t -0.35938567 -0.022553153 0.9278543 -0.25791159 0.26929536 0.93288994 -0.35938567\n\t\t -0.022553153 0.96829134 -0.22452439 -0.10950039 0.93288994 -0.35938567 -0.022553153\n\t\t 0.94381553 -0.32401472 -0.064821295 0.96829134 -0.22452439 -0.10950039 0.94381553\n\t\t -0.32401472 -0.064821295 0.95880008 -0.26837948 -0.092806764 0.96829134 -0.22452439\n\t\t -0.10950039 0.9278543 -0.25791159 0.26929536 0.96829134 -0.22452439 -0.10950039 0.93517876\n\t\t -0.23813564 0.26206246 0.96829134 -0.22452439 -0.10950039 0.99960327 -0.011810352\n\t\t 0.025086215 0.93517876 -0.23813564 0.26206246 0.96829134 -0.22452439 -0.10950039\n\t\t 0.98657191 -0.12305033 -0.10727255 0.99960327 -0.011810352 0.025086215 0.96829134\n\t\t -0.22452439 -0.10950039 0.97814882 -0.17407729 -0.11355936 0.98657191 -0.12305033\n\t\t -0.10727255 0.98657191 -0.12305033 -0.10727255 0.99511701 -0.064790495 -0.074373603\n\t\t 0.99960327 -0.011810352 0.025086215 0.99511701 -0.064790495 -0.074373603 0.99917603\n\t\t -0.030090943 -0.026123842 0.99960327 -0.011810352 0.025086215 0.99960327 -0.011810352\n\t\t 0.025086215 0.93566704 -0.22052646 0.27539906 0.93517876 -0.23813564 0.26206246 0.99960327\n\t\t -0.011810352 0.025086215 0.99417096 -0.010284422 0.10715049 0.93566704 -0.22052646\n\t\t 0.27539906 0.99417096 -0.010284422 0.10715049 0.95812863 -0.085634619 0.27317119\n\t\t 0.93566704 -0.22052646 0.27539906 0.40424818 -0.019226605 -0.91442609 0.40424818\n\t\t -0.019226605 -0.91442609 0.83883172 0.02435407 0.54380929 0.96792501 0.20255166 0.14844202\n\t\t 0.96432382 0.20926574 0.16205327 0.96969503 0.17346752 0.17191075 0.96969503 0.17346752\n\t\t 0.17191075 0.97067165 0.18576647 0.15243994 0.96792501 0.20255166 0.14844202 0.97393715\n\t\t 0.16226722 0.15842156 0.97067165 0.18576647 0.15243994 0.96969503 0.17346752 0.17191075\n\t\t 0.96969503 0.17346752 0.17191075 0.9728995 0.13754724 0.18573563 0.97393715 0.16226722\n\t\t 0.15842156 0.9728995 0.13754724 0.18573563 0.96969503 0.17346752 0.17191075 0.96655166\n\t\t 0.17496292 0.18750571 0.96655166 0.17496292 0.18750571 0.97204506 0.058107562 0.2273629\n\t\t 0.9728995 0.13754724 0.18573563 0.93874925 0.29767784 0.17346719 0.96655166 0.17496292\n\t\t 0.18750571 0.96969503 0.17346752 0.17191075 0.96969503 0.17346752 0.17191075 0.96432382\n\t\t 0.20926574 0.16205327 0.93874925 0.29767784 0.17346719 0.93874925 0.29767784 0.17346719\n\t\t 0.96432382 0.20926574 0.16205327;\n\tsetAttr \".n[8798:8963]\" -type \"float3\"  0.94228941 0.24579638 0.22727132 0.94228941\n\t\t 0.24579638 0.22727132 0.93829149 0.25098455 0.23792228 0.93874925 0.29767784 0.17346719\n\t\t 0.95782334 0.14380352 0.24872583 0.9728995 0.13754724 0.18573563 0.97204506 0.058107562\n\t\t 0.2273629 0.97204506 0.058107562 0.2273629 0.95547342 0.14450546 0.25720999 0.95782334\n\t\t 0.14380352 0.24872583 0.88076413 0.26139134 0.39481792 0.88674575 0.2117072 0.41090119\n\t\t 0.93044823 0.18625477 0.31550035 0.93044823 0.18625477 0.31550035 0.92739642 0.22040498\n\t\t 0.30222476 0.88076413 0.26139134 0.39481792 0.92739642 0.22040498 0.30222476 0.93044823\n\t\t 0.18625477 0.31550035 0.9559617 0.16425093 0.24311043 0.9559617 0.16425093 0.24311043\n\t\t 0.9532761 0.19040529 0.23441266 0.92739642 0.22040498 0.30222476 0.88674575 0.2117072\n\t\t 0.41090119 0.88076413 0.26139134 0.39481792 0.82125294 0.2959688 0.48774678 0.82125294\n\t\t 0.2959688 0.48774678 0.82897419 0.23441297 0.50776696 0.88674575 0.2117072 0.41090119\n\t\t 0.96118039 0.18274514 0.20661029 0.9532761 0.19040529 0.23441266 0.9559617 0.16425093\n\t\t 0.24311043 0.9559617 0.16425093 0.24311043 0.96389657 0.15802516 0.21420941 0.96118039\n\t\t 0.18274514 0.20661029 0.92260498 0.25394484 0.29029202 0.92739642 0.22040498 0.30222476\n\t\t 0.9532761 0.19040529 0.23441266 0.88076413 0.26139134 0.39481792 0.92739642 0.22040498\n\t\t 0.30222476 0.92260498 0.25394484 0.29029202 0.9532761 0.19040529 0.23441266 0.94869834\n\t\t 0.21726158 0.22962125 0.92260498 0.25394484 0.29029202 0.92260498 0.25394484 0.29029202\n\t\t 0.87517917 0.30652821 0.37421793 0.88076413 0.26139134 0.39481792 0.82125294 0.2959688\n\t\t 0.48774678 0.88076413 0.26139134 0.39481792 0.87517917 0.30652821 0.37421793 0.87517917\n\t\t 0.30652821 0.37421793 0.81661415 0.34675157 0.46137878 0.82125294 0.2959688 0.48774678\n\t\t 0.74529243 0.32233676 0.58357495 0.82125294 0.2959688 0.48774678 0.81661415 0.34675157\n\t\t 0.46137878 0.82897419 0.23441297 0.50776696 0.82125294 0.2959688 0.48774678 0.74529243\n\t\t 0.32233676 0.58357495 0.81661415 0.34675157 0.46137878 0.74507874 0.38160372 0.54698324\n\t\t 0.74529243 0.32233676 0.58357495 0.74529243 0.32233676 0.58357495 0.74507874 0.38160372\n\t\t 0.54698324 0.63331997 0.41285467 0.65449989 0.63331997 0.41285467 0.65449989 0.6301766\n\t\t 0.34473735 0.69566941 0.74529243 0.32233676 0.58357495 0.6301766 0.34473735 0.69566941\n\t\t 0.63331997 0.41285467 0.65449989 0.54109305 0.41505197 0.73137599 0.54109305 0.41505197\n\t\t 0.73137599 0.54075736 0.35828754 0.76104009 0.6301766 0.34473735 0.69566941 0.74529243\n\t\t 0.32233676 0.58357495 0.6301766 0.34473735 0.69566941 0.63502908 0.28153351 0.71932125\n\t\t 0.63502908 0.28153351 0.71932125 0.6301766 0.34473735 0.69566941 0.54075736 0.35828754\n\t\t 0.76104009 0.63502908 0.28153351 0.71932125 0.74953455 0.25815636 0.60951567 0.74529243\n\t\t 0.32233676 0.58357495 0.74529243 0.32233676 0.58357495 0.74953455 0.25815636 0.60951567\n\t\t 0.82897419 0.23441297 0.50776696 0.54075736 0.35828754 0.76104009 0.56480592 0.30506325\n\t\t 0.76671654 0.63502908 0.28153351 0.71932125 0.56480592 0.30506325 0.76671654 0.54075736\n\t\t 0.35828754 0.76104009 0.55574197 0.30857289 0.77193516 0.54075736 0.35828754 0.76104009\n\t\t 0.52626103 0.35309938 0.77349162 0.55574197 0.30857289 0.77193516 0.52626103 0.35309938\n\t\t 0.77349162 0.57756269 0.31403571 0.75350201 0.55574197 0.30857289 0.77193516 0.53129661\n\t\t 0.40983331 0.74141663 0.52626103 0.35309938 0.77349162 0.54075736 0.35828754 0.76104009\n\t\t 0.54109305 0.41505197 0.73137599 0.53129661 0.40983331 0.74141663 0.54075736 0.35828754\n\t\t 0.76104009 0.54109305 0.41505197 0.73137599 0.53123558 0.41367865 0.73934138 0.53129661\n\t\t 0.40983331 0.74141663 0.54109305 0.41505197 0.73137599 0.53166282 0.41297671 0.73943293\n\t\t 0.53123558 0.41367865 0.73934138 0.95733505 0.20734307 0.201178 0.94869834 0.21726158\n\t\t 0.22962125 0.9532761 0.19040529 0.23441266 0.9532761 0.19040529 0.23441266 0.96118039\n\t\t 0.18274514 0.20661029 0.95733505 0.20734307 0.201178 0.5060274 -0.059236333 -0.8604694\n\t\t 0.50630206 -0.05975515 -0.86025572 0.51103246 -0.062105075 -0.85729545 0.51103246\n\t\t -0.062105075 -0.85729545 0.51097143 -0.061921962 -0.85732597 0.5060274 -0.059236333\n\t\t -0.8604694 0.51570177 -0.065340042 -0.85424358 0.51097143 -0.061921962 -0.85732597\n\t\t 0.51103246 -0.062105075 -0.85729545 0.51103246 -0.062105075 -0.85729545 0.51512194\n\t\t -0.066652335 -0.85448772 0.51570177 -0.065340042 -0.85424358 0.51512194 -0.066652335\n\t\t -0.85448772 0.51103246 -0.062105075 -0.85729545 0.51091039 -0.062288184 -0.85735649\n\t\t 0.51091039 -0.062288184 -0.85735649 0.51338238 -0.068269819 -0.85543382 0.51512194\n\t\t -0.066652335 -0.85448772 0.5160985 -0.069246411 -0.85369426 0.51512194 -0.066652335\n\t\t -0.85448772 0.51338238 -0.068269819 -0.85543382 0.51338238 -0.068269819 -0.85543382\n\t\t 0.51564074 -0.067842558 -0.85409099 0.5160985 -0.069246411 -0.85369426 0.51240575\n\t\t -0.068300337 -0.85598314 0.5160985 -0.069246411 -0.85369426 0.51564074 -0.067842558\n\t\t -0.85409099 0.51564074 -0.067842558 -0.85409099 0.51237524 -0.068239301 -0.85601366\n\t\t 0.51240575 -0.068300337 -0.85598314 0.50938445 -0.061494704 -0.85830253 0.51240575\n\t\t -0.068300337 -0.85598314 0.51237524 -0.068239301 -0.85601366 0.51237524 -0.068239301\n\t\t -0.85601366 0.50959808 -0.062349223 -0.85811943 0.50938445 -0.061494704 -0.85830253\n\t\t 0.50630206 -0.05975515 -0.86025572 0.50938445 -0.061494704 -0.85830253 0.50959808\n\t\t -0.062349223 -0.85811943 0.50569171 -0.063508928 -0.86034727 0.51091039 -0.062288184\n\t\t -0.85735649 0.51103246 -0.062105075 -0.85729545 0.51103246 -0.062105075 -0.85729545\n\t\t 0.50630206 -0.05975515 -0.86025572 0.50569171 -0.063508928 -0.86034727 0.50959808\n\t\t -0.062349223 -0.85811943 0.50569171 -0.063508928 -0.86034727 0.50630206 -0.05975515\n\t\t -0.86025572 0.23532793 0.95760983 -0.1660818 0.23227608 0.95687741 -0.17435232 0.21149297\n\t\t 0.96026498 -0.18192092;\n\tsetAttr \".n[8964:9129]\" -type \"float3\"  0.23752525 0.95739621 -0.1640981 0.23532793\n\t\t 0.95760983 -0.1660818 0.21149297 0.96026498 -0.18192092 0.1955623 0.96270645 -0.18683439\n\t\t 0.23752525 0.95739621 -0.1640981 0.21149297 0.96026498 -0.18192092 0.23532793 0.95760983\n\t\t -0.1660818 0.23752525 0.95739621 -0.1640981 0.22571459 0.96310318 -0.14651944 0.22571459\n\t\t 0.96310318 -0.14651944 0.222266 0.96328628 -0.15054788 0.23532793 0.95760983 -0.1660818\n\t\t 0.222266 0.96328628 -0.15054788 0.22571459 0.96310318 -0.14651944 0.19650838 0.97170943\n\t\t -0.13080241 0.19650838 0.97170943 -0.13080241 0.1991635 0.97097695 -0.13232833 0.222266\n\t\t 0.96328628 -0.15054788 0.14725152 0.98333693 -0.10657071 0.1991635 0.97097695 -0.13232833\n\t\t 0.19650838 0.97170943 -0.13080241 0.19650838 0.97170943 -0.13080241 0.13760766 0.98464924\n\t\t -0.10708953 0.14725152 0.98333693 -0.10657071 0.10666189 0.99081397 -0.083071455\n\t\t 0.14725152 0.98333693 -0.10657071 0.13760766 0.98464924 -0.10708953 0.13760766 0.98464924\n\t\t -0.10708953 0.096895963 0.99182111 -0.08301042 0.10666189 0.99081397 -0.083071455\n\t\t 0.06787286 0.99554431 -0.065157093 0.10666189 0.99081397 -0.083071455 0.096895963\n\t\t 0.99182111 -0.08301042 0.096895963 0.99182111 -0.08301042 0.059571821 0.99600208\n\t\t -0.066438869 0.06787286 0.99554431 -0.065157093 0.025696276 0.99780267 -0.060915019\n\t\t 0.06787286 0.99554431 -0.065157093 0.059571821 0.99600208 -0.066438869 0.059571821\n\t\t 0.99600208 -0.066438869 0.018158205 0.99771112 -0.064882427 0.025696276 0.99780267\n\t\t -0.060915019 -0.11493301 0.99142426 0.061769389 0.025696276 0.99780267 -0.060915019\n\t\t 0.018158205 0.99771112 -0.064882427 0.018158205 0.99771112 -0.064882427 -0.15164678\n\t\t 0.98324525 0.10095516 -0.11493301 0.99142426 0.061769389 -0.28101474 0.91891223 0.27674177\n\t\t -0.11493301 0.99142426 0.061769389 -0.15164678 0.98324525 0.10095516 -0.15164678\n\t\t 0.98324525 0.10095516 -0.2925202 0.90987873 0.29413733 -0.28101474 0.91891223 0.27674177\n\t\t -0.38911122 0.8041932 0.44926292 -0.28101474 0.91891223 0.27674177 -0.2925202 0.90987873\n\t\t 0.29413733 -0.2925202 0.90987873 0.29413733 -0.40095243 0.78502756 0.47212127 -0.38911122\n\t\t 0.8041932 0.44926292 -0.38911122 0.8041932 0.44926292 -0.40095243 0.78502756 0.47212127\n\t\t -0.50270104 0.56910902 0.65068507 -0.50270104 0.56910902 0.65068507 -0.50999498 0.56773573\n\t\t 0.64616835 -0.38911122 0.8041932 0.44926292 -0.50999498 0.56773573 0.64616835 -0.50270104\n\t\t 0.56910902 0.65068507 -0.5540942 0.29990527 0.77651298 -0.5540942 0.29990527 0.77651298\n\t\t -0.55323964 0.32612067 0.76650286 -0.50999498 0.56773573 0.64616835 -0.48319957 0.017120799\n\t\t 0.87533188 -0.55323964 0.32612067 0.76650286 -0.5540942 0.29990527 0.77651298 -0.5540942\n\t\t 0.29990527 0.77651298 -0.46687216 -0.035767771 0.88357186 -0.48319957 0.017120799\n\t\t 0.87533188 -0.38117611 -0.1793268 0.90691853 -0.48319957 0.017120799 0.87533188 -0.46687216\n\t\t -0.035767771 0.88357186 -0.46687216 -0.035767771 0.88357186 -0.38059628 -0.18054755\n\t\t 0.90691853 -0.38117611 -0.1793268 0.90691853 -0.062654324 -0.57936335 0.81264693\n\t\t -0.045899656 -0.58766437 0.80779451 -0.048829433 -0.58622998 0.808649 -0.048829433\n\t\t -0.58622998 0.808649 -0.066591211 -0.57737964 0.81374562 -0.062654324 -0.57936335\n\t\t 0.81264693 0.33085141 -0.79470181 0.50886571 0.32136014 -0.80111068 0.50489825 0.39445198\n\t\t -0.78038865 0.48512229 0.39445198 -0.78038865 0.48512229 0.39823627 -0.77434593 0.49168375\n\t\t 0.33085141 -0.79470181 0.50886571 0.45027032 -0.7883845 0.41911075 0.39823627 -0.77434593\n\t\t 0.49168375 0.39445198 -0.78038865 0.48512229 0.39445198 -0.78038865 0.48512229 0.44850025\n\t\t -0.7915889 0.41496024 0.45027032 -0.7883845 0.41911075 0.4746241 -0.79900497 0.36918247\n\t\t 0.45027032 -0.7883845 0.41911075 0.44850025 -0.7915889 0.41496024 0.44850025 -0.7915889\n\t\t 0.41496024 0.47328129 -0.80156851 0.36533713 0.4746241 -0.79900497 0.36918247 0.4899444\n\t\t -0.80901498 0.32465595 0.4746241 -0.79900497 0.36918247 0.47328129 -0.80156851 0.36533713\n\t\t 0.47328129 -0.80156851 0.36533713 0.4881438 -0.81148696 0.32114634 0.4899444 -0.80901498\n\t\t 0.32465595 0.49369821 -0.82439631 0.27671137 0.4899444 -0.80901498 0.32465595 0.4881438\n\t\t -0.81148696 0.32114634 0.4881438 -0.81148696 0.32114634 0.49110413 -0.82668519 0.27457508\n\t\t 0.49369821 -0.82439631 0.27671137 0.49324042 -0.83669525 0.23789184 0.49369821 -0.82439631\n\t\t 0.27671137 0.49110413 -0.82668519 0.27457508 0.49110413 -0.82668519 0.27457508 0.49217227\n\t\t -0.83773291 0.2365185 0.49324042 -0.83669525 0.23789184 0.49324042 -0.83669525 0.23789184\n\t\t 0.49217227 -0.83773291 0.2365185 0.50077844 -0.84151721 0.20252089 0.50077844 -0.84151721\n\t\t 0.20252089 0.49971035 -0.84224963 0.20209363 0.49324042 -0.83669525 0.23789184 0.50077844\n\t\t -0.84151721 0.20252089 0.51011711 -0.84026593 0.18356889 0.49971035 -0.84224963 0.20209363\n\t\t 0.50077844 -0.84151721 0.20252089 0.5115515 -0.83919781 0.18445393 0.51011711 -0.84026593\n\t\t 0.18356889 -0.52015746 0.074373506 0.85079503 -0.52015746 0.074373506 0.85079503\n\t\t -0.52015746 0.074373506 0.85079503 0.9165318 0.27164558 0.29349649 0.93829149 0.25098455\n\t\t 0.23792228 0.94228941 0.24579638 0.22727132 0.94228941 0.24579638 0.22727132 0.9165318\n\t\t 0.2718592 0.29331335 0.9165318 0.27164558 0.29349649 0.86666453 0.32749441 0.37623215\n\t\t 0.9165318 0.27164558 0.29349649 0.9165318 0.2718592 0.29331335 0.9165318 0.2718592\n\t\t 0.29331335 0.86666453 0.32795221 0.37586594 0.86666453 0.32749441 0.37623215 0.80813003\n\t\t 0.3639335 0.46305731 0.86666453 0.32749441 0.37623215 0.86666453 0.32795221 0.37586594\n\t\t 0.86666453 0.32795221 0.37586594 0.80822158 0.36433023 0.46256903 0.80813003 0.3639335\n\t\t 0.46305731 0.73363435 0.39536756 0.55262917 0.80813003 0.3639335 0.46305731 0.80822158\n\t\t 0.36433023 0.46256903 0.80822158 0.36433023 0.46256903 0.73384798 0.39567274 0.55214089\n\t\t 0.73363435 0.39536756 0.55262917 0.62041068 0.42823595 0.65700239;\n\tsetAttr \".n[9130:9295]\" -type \"float3\"  0.73363435 0.39536756 0.55262917 0.73384798\n\t\t 0.39567274 0.55214089 0.73384798 0.39567274 0.55214089 0.62239438 0.42930412 0.65440834\n\t\t 0.62041068 0.42823595 0.65700239 0.48704472 0.53593576 0.68956566 0.62041068 0.42823595\n\t\t 0.65700239 0.62239438 0.42930412 0.65440834 0.62239438 0.42930412 0.65440834 0.48426753\n\t\t 0.53398257 0.69301426 0.48704472 0.53593576 0.68956566 0.48704472 0.53593576 0.68956566\n\t\t 0.48426753 0.53398257 0.69301426 0.43867287 0.53608829 0.72121334 0.43867287 0.53608829\n\t\t 0.72121334 0.43916118 0.53672922 0.72041988 0.48704472 0.53593576 0.68956566 0.38526547\n\t\t 0.53181571 0.7541123 0.43916118 0.53672922 0.72041988 0.43867287 0.53608829 0.72121334\n\t\t 0.43867287 0.53608829 0.72121334 0.39078933 0.53874344 0.74633008 0.38526547 0.53181571\n\t\t 0.7541123 0.26834911 0.49708563 0.82512885 0.38526547 0.53181571 0.7541123 0.39078933\n\t\t 0.53874344 0.74633008 0.39078933 0.53874344 0.74633008 0.31241783 0.52101219 0.79430521\n\t\t 0.26834911 0.49708563 0.82512885 0.26834911 0.49708563 0.82512885 0.31241783 0.52101219\n\t\t 0.79430521 0.084841333 0.40028086 0.91244239 0.084841333 0.40028086 0.91244239 -0.18555266\n\t\t 0.39103365 0.90145576 0.26834911 0.49708563 0.82512885 -0.18555266 0.39103365 0.90145576\n\t\t 0.084841333 0.40028086 0.91244239 0.12561414 0.15558349 0.97979677 0.12561414 0.15558349\n\t\t 0.97979677 -0.16809599 0.1348308 0.97647023 -0.18555266 0.39103365 0.90145576 0.28388318\n\t\t 0.046235703 0.95773184 -0.16809599 0.1348308 0.97647023 0.12561414 0.15558349 0.97979677\n\t\t 0.12561414 0.15558349 0.97979677 0.30890834 0.034638677 0.95043796 0.28388318 0.046235703\n\t\t 0.95773184 0.51139867 -0.058869984 0.85729545 0.28388318 0.046235703 0.95773184 0.30890834\n\t\t 0.034638677 0.95043796 0.30890834 0.034638677 0.95043796 0.48393202 -0.031220222\n\t\t 0.8745079 0.51139867 -0.058869984 0.85729545 0.6446119 0.25354806 0.7212134 0.51139867\n\t\t -0.058869984 0.85729545 0.48393202 -0.031220222 0.8745079 0.48393202 -0.031220222\n\t\t 0.8745079 0.6422925 0.25705767 0.72203743 0.6446119 0.25354806 0.7212134 0.75859851\n\t\t 0.23615251 0.60722679 0.6446119 0.25354806 0.7212134 0.6422925 0.25705767 0.72203743\n\t\t 0.6422925 0.25705767 0.72203743 0.75838488 0.23596939 0.60753196 0.75859851 0.23615251\n\t\t 0.60722679 0.83410132 0.21811609 0.50660723 0.75859851 0.23615251 0.60722679 0.75838488\n\t\t 0.23596939 0.60753196 0.75838488 0.23596939 0.60753196 0.83400977 0.21790245 0.50685143\n\t\t 0.83410132 0.21811609 0.50660723 0.89110988 0.19873683 0.40791041 0.83410132 0.21811609\n\t\t 0.50660723 0.83400977 0.21790245 0.50685143 0.83400977 0.21790245 0.50685143 0.89107937\n\t\t 0.19852321 0.40806299 0.89110988 0.19873683 0.40791041 0.93447667 0.17023256 0.31263161\n\t\t 0.89110988 0.19873683 0.40791041 0.89107937 0.19852321 0.40806299 0.89107937 0.19852321\n\t\t 0.40806299 0.93450719 0.16989686 0.31266212 0.93447667 0.17023256 0.31263161 0.95547342\n\t\t 0.14450546 0.25720999 0.93447667 0.17023256 0.31263161 0.93450719 0.16989686 0.31266212\n\t\t 0.93450719 0.16989686 0.31266212 0.95782334 0.14380352 0.24872583 0.95547342 0.14450546\n\t\t 0.25720999 0.60310686 -0.20276484 -0.77141637 0.60356462 -0.17633581 -0.77752006\n\t\t 0.60341203 -0.1764884 -0.77761161 0.60341203 -0.1764884 -0.77761161 0.60258806 -0.20282587\n\t\t -0.77181309 0.60310686 -0.20276484 -0.77141637 0.59959722 -0.15030354 -0.7860347\n\t\t 0.60341203 -0.1764884 -0.77761161 0.60356462 -0.17633581 -0.77752006 0.60356462 -0.17633581\n\t\t -0.77752006 0.59950566 -0.15030354 -0.78609574 0.59959722 -0.15030354 -0.7860347\n\t\t 0.1457561 0.97213668 -0.18353839 0.13928618 0.973571 -0.18082224 0.1396524 0.97369313\n\t\t -0.17990668 0.1396524 0.97369313 -0.17990668 0.14642751 0.97204512 -0.18344684 0.1457561\n\t\t 0.97213668 -0.18353839 0.1119721 0.97900331 -0.17014076 0.1396524 0.97369313 -0.17990668\n\t\t 0.13928618 0.973571 -0.18082224 0.13928618 0.973571 -0.18082224 0.11069033 0.97912538\n\t\t -0.17041543 0.1119721 0.97900331 -0.17014076 0.059449751 0.98541218 -0.15939824 0.1119721\n\t\t 0.97900331 -0.17014076 0.11069033 0.97912538 -0.17041543 0.11069033 0.97912538 -0.17041543\n\t\t 0.058137454 0.98535109 -0.16019173 0.059449751 0.98541218 -0.15939824 0.024536576\n\t\t 0.9894101 -0.14291826 0.059449751 0.98541218 -0.15939824 0.058137454 0.98535109 -0.16019173\n\t\t 0.058137454 0.98535109 -0.16019173 0.023254799 0.98937958 -0.14334552 0.024536576\n\t\t 0.9894101 -0.14291826 -0.0062871194 0.99130225 -0.13135174 0.024536576 0.9894101\n\t\t -0.14291826 0.023254799 0.98937958 -0.14334552 0.023254799 0.98937958 -0.14334552\n\t\t -0.006744897 0.99133277 -0.13098551 -0.0062871194 0.99130225 -0.13135174 -0.0062871194\n\t\t 0.99130225 -0.13135174 -0.006744897 0.99133277 -0.13098551 -0.033601183 0.99008149\n\t\t -0.13638729 -0.033601183 0.99008149 -0.13638729 -0.033509627 0.99014252 -0.1357464\n\t\t -0.0062871194 0.99130225 -0.13135174 -0.14877805 0.98849446 -0.026734287 -0.033509627\n\t\t 0.99014252 -0.1357464 -0.033601183 0.99008149 -0.13638729 -0.033601183 0.99008149\n\t\t -0.13638729 -0.19116825 0.98074275 0.039338283 -0.14877805 0.98849446 -0.026734287\n\t\t -0.14877805 0.98849446 -0.026734287 -0.19116825 0.98074275 0.039338283 -0.30259132\n\t\t 0.91668433 0.26093319 -0.30259132 0.91668433 0.26093319 -0.29123843 0.92776257 0.23322238\n\t\t -0.14877805 0.98849446 -0.026734287 -0.36478803 0.82775348 0.42628247 -0.29123843\n\t\t 0.92776257 0.23322238 -0.30259132 0.91668433 0.26093319 -0.30259132 0.91668433 0.26093319\n\t\t -0.37714797 0.80266726 0.46195862 -0.36478803 0.82775348 0.42628247 -0.43992448 0.612598\n\t\t 0.65660566 -0.36478803 0.82775348 0.42628247 -0.37714797 0.80266726 0.46195862 -0.37714797\n\t\t 0.80266726 0.46195862 -0.44096214 0.60274053 0.66499823 -0.43992448 0.612598 0.65660566\n\t\t -0.43992448 0.612598 0.65660566 -0.44096214 0.60274053 0.66499823 -0.18555266 0.39103365\n\t\t 0.90145576 -0.18555266 0.39103365 0.90145576 -0.47007671 0.36146113 0.80516982;\n\tsetAttr \".n[9296:9461]\" -type \"float3\"  -0.43992448 0.612598 0.65660566 -0.47007671\n\t\t 0.36146113 0.80516982 -0.18555266 0.39103365 0.90145576 -0.16809599 0.1348308 0.97647023\n\t\t -0.16809599 0.1348308 0.97647023 -0.39906007 0.053041112 0.91537219 -0.47007671 0.36146113\n\t\t 0.80516982 -0.15375215 -0.35413679 0.92245245 -0.39906007 0.053041112 0.91537219\n\t\t -0.16809599 0.1348308 0.97647023 -0.16809599 0.1348308 0.97647023 -0.17075096 -0.34589678\n\t\t 0.92257452 -0.15375215 -0.35413679 0.92245245 -0.024536712 -0.55040127 0.83449817\n\t\t -0.15375215 -0.35413679 0.92245245 -0.17075096 -0.34589678 0.92257452 -0.17075096\n\t\t -0.34589678 0.92257452 -0.027497001 -0.56541634 0.824305 -0.024536712 -0.55040127\n\t\t 0.83449817 0.35065794 -0.82778388 0.43787962 0.33689407 -0.80617678 0.48634303 0.33585644\n\t\t -0.80764169 0.48463398 0.33585644 -0.80764169 0.48463398 0.35300785 -0.82857734 0.4345226\n\t\t 0.35065794 -0.82778388 0.43787962 0.38615096 -0.8424328 0.37568292 0.35065794 -0.82778388\n\t\t 0.43787962 0.35300785 -0.82857734 0.4345226 0.35300785 -0.82857734 0.4345226 0.3855406\n\t\t -0.84289062 0.37528616 0.38615096 -0.8424328 0.37568292 0.40528607 -0.8511306 0.33362842\n\t\t 0.38615096 -0.8424328 0.37568292 0.3855406 -0.84289062 0.37528616 0.3855406 -0.84289062\n\t\t 0.37528616 0.40495038 -0.85152733 0.33301803 0.40528607 -0.8511306 0.33362842 0.4152351\n\t\t -0.85988939 0.2968536 0.40528607 -0.8511306 0.33362842 0.40495038 -0.85152733 0.33301803\n\t\t 0.40495038 -0.85152733 0.33301803 0.41563186 -0.85995042 0.29609063 0.4152351 -0.85988939\n\t\t 0.2968536 0.4152351 -0.85988939 0.2968536 0.41563186 -0.85995042 0.29609063 0.41312933\n\t\t -0.87350065 0.2574237 0.41312933 -0.87350065 0.2574237 0.41306829 -0.87353116 0.25739318\n\t\t 0.4152351 -0.85988939 0.2968536 0.41215274 -0.88204587 0.22824799 0.41306829 -0.87353116\n\t\t 0.25739318 0.41312933 -0.87350065 0.2574237 0.41312933 -0.87350065 0.2574237 0.41251895\n\t\t -0.88229001 0.22656947 0.41215274 -0.88204587 0.22824799 0.41554031 -0.88311398 0.21774963\n\t\t 0.41215274 -0.88204587 0.22824799 0.41251895 -0.88229001 0.22656947 0.41251895 -0.88229001\n\t\t 0.22656947 0.41547924 -0.8831445 0.21771911 0.41554031 -0.88311398 0.21774963 0.50627154\n\t\t -0.06237974 -0.86010313 0.51338238 -0.066194557 -0.85558641 0.50968963 -0.064241372\n\t\t -0.85793632 0.50968963 -0.064241372 -0.85793632 0.50318921 -0.060487594 -0.8620258\n\t\t 0.50627154 -0.06237974 -0.86010313 0.51631212 -0.067293227 -0.85372478 0.50968963\n\t\t -0.064241372 -0.85793632 0.51338238 -0.066194557 -0.85558641 0.51338238 -0.066194557\n\t\t -0.85558641 0.52098149 -0.069460019 -0.85070348 0.51631212 -0.067293227 -0.85372478\n\t\t -0.97347933 -0.1836607 -0.13629565 -0.9734183 -0.18390486 -0.13626513 -0.97097683\n\t\t -0.19843166 -0.1334269 -0.97097683 -0.19843166 -0.1334269 -0.97097683 -0.19846217\n\t\t -0.13339639 -0.97347933 -0.1836607 -0.13629565 -0.9734183 -0.18390486 -0.13626513\n\t\t -0.97347933 -0.1836607 -0.13629565 -0.97570723 -0.16910337 -0.13910335 -0.97570723\n\t\t -0.16910337 -0.13910335 -0.97570723 -0.16910337 -0.13907284 -0.9734183 -0.18390486\n\t\t -0.13626513 -0.53541696 0.81371486 -0.22620325 -0.53541696 0.81371486 -0.22620325\n\t\t -0.53541696 0.81371486 -0.22620325 -0.53541696 0.81371486 -0.22620325 -0.53541696\n\t\t 0.81371486 -0.22620325 -0.53541696 0.81371486 -0.22620325 0.97357088 0.18305033 0.1363872\n\t\t 0.97347933 0.18359967 0.13629565 0.97647017 0.16391523 0.14004943 0.97647017 0.16391523\n\t\t 0.14004943 0.97647017 0.16391523 0.14004943 0.97357088 0.18305033 0.1363872 0.97347933\n\t\t 0.18359967 0.13629565 0.97357088 0.18305033 0.1363872 0.97021389 0.20267373 0.1325724\n\t\t 0.97021389 0.20267373 0.1325724 0.97021389 0.20267373 0.1325724 0.97347933 0.18359967\n\t\t 0.13629565 -0.25174689 -0.9608143 0.1157873 -0.25174689 -0.9608143 0.11575679 -0.25174689\n\t\t -0.9608143 0.11575679 -0.25174689 -0.9608143 0.11575679 -0.25171638 -0.9608143 0.1157873\n\t\t -0.25174689 -0.9608143 0.1157873 0.67500859 -0.62126505 0.39796144 0.45716754 -0.85366362\n\t\t 0.24939732 0.55235475 -0.83248371 0.042848051 0.55235475 -0.83248371 0.042848051\n\t\t 0.7881102 -0.58070594 0.20401628 0.67500859 -0.62126505 0.39796144 0.67500859 -0.62126505\n\t\t 0.39796144 0.7881102 -0.58070594 0.20401628 0.89620662 -0.25287607 0.36442155 0.89620662\n\t\t -0.25287607 0.36442155 0.7747125 -0.31858245 0.54612875 0.67500859 -0.62126505 0.39796144\n\t\t 0.55235475 -0.83248371 0.042848051 0.45716754 -0.85366362 0.24939732 0.15518692 -0.98031551\n\t\t 0.12198257 0.15518692 -0.98031551 0.12198257 0.22501327 -0.96969503 -0.095004044\n\t\t 0.55235475 -0.83248371 0.042848051 -0.1441081 -0.97149575 -0.18817705 0.22501327\n\t\t -0.96969503 -0.095004044 0.15518692 -0.98031551 0.12198257 0.15518692 -0.98031551\n\t\t 0.12198257 -0.18552172 -0.98196363 0.035981398 -0.1441081 -0.97149575 -0.18817705\n\t\t 0.74181342 0.0084539065 0.67052215 0.7747125 -0.31858245 0.54612875 0.89620662 -0.25287607\n\t\t 0.36442155 0.89620662 -0.25287607 0.36442155 0.86043882 0.10132176 0.49931332 0.74181342\n\t\t 0.0084539065 0.67052215 0.74181342 0.0084539065 0.67052215 0.86043882 0.10132176\n\t\t 0.49931332 0.68608648 0.42786974 0.58836627 0.68608648 0.42786974 0.58836627 0.58082813\n\t\t 0.30979362 0.75273901 0.74181342 0.0084539065 0.67052215 0.3165378 0.53993362 0.77990043\n\t\t 0.58082813 0.30979362 0.75273901 0.68608648 0.42786974 0.58836627 0.68608648 0.42786974\n\t\t 0.58836627 0.39976174 0.67708385 0.61781663 0.3165378 0.53993362 0.77990043 0.3165378\n\t\t 0.53993362 0.77990043 0.39976174 0.67708385 0.61781663 0.04504507 0.81093788 0.58339179\n\t\t 0.04504507 0.81093788 0.58339179 -0.010895313 0.66341144 0.7481612 0.3165378 0.53993362\n\t\t 0.77990043 -0.35166499 0.66161072 0.66222107 -0.010895313 0.66341144 0.7481612 0.04504507\n\t\t 0.81093788 0.58339179 0.04504507 0.81093788 0.58339179 -0.32404578 0.80907613 0.49021876\n\t\t -0.35166499 0.66161072 0.66222107 -0.35166499 0.66161072 0.66222107 -0.32404578 0.80907613\n\t\t 0.49021876 -0.65141779 0.67186481 0.35245821;\n\tsetAttr \".n[9462:9627]\" -type \"float3\"  -0.65141779 0.67186481 0.35245821 -0.65382874\n\t\t 0.5348978 0.53508097 -0.35166499 0.66161072 0.66222107 -0.87142563 0.30268234 0.38596755\n\t\t -0.65382874 0.5348978 0.53508097 -0.65141779 0.67186481 0.35245821 -0.65141779 0.67186481\n\t\t 0.35245821 -0.88708162 0.42017856 0.19104584 -0.87142563 0.30268234 0.38596755 -0.87142563\n\t\t 0.30268234 0.38596755 -0.88708162 0.42017856 0.19104584 -0.99523914 0.09225715 0.03076265\n\t\t -0.99523914 0.09225715 0.03076265 -0.97122103 -3.08011e-05 0.2380749 -0.87142563\n\t\t 0.30268234 0.38596755 -0.93816936 -0.32697561 0.11349836 -0.97122103 -3.08011e-05\n\t\t 0.2380749 -0.99523914 0.09225715 0.03076265 -0.99523914 0.09225715 0.03076265 -0.95944083\n\t\t -0.26194066 -0.10412913 -0.93816936 -0.32697561 0.11349836 -0.93816936 -0.32697561\n\t\t 0.11349836 -0.95944083 -0.26194066 -0.10412913 -0.78508848 -0.5884276 -0.19321264\n\t\t -0.78508848 -0.5884276 -0.19321264 -0.77727574 -0.62834585 0.031128926 -0.93816936\n\t\t -0.32697561 0.11349836 -0.51295489 -0.85839427 0.004028507 -0.77727574 -0.62834585\n\t\t 0.031128926 -0.78508848 -0.5884276 -0.19321264 -0.78508848 -0.5884276 -0.19321264\n\t\t -0.49882478 -0.83758068 -0.2226935 -0.51295489 -0.85839427 0.004028507 -0.51295489\n\t\t -0.85839427 0.004028507 -0.49882478 -0.83758068 -0.2226935 -0.1441081 -0.97149575\n\t\t -0.18817705 -0.1441081 -0.97149575 -0.18817705 -0.18552172 -0.98196363 0.035981398\n\t\t -0.51295489 -0.85839427 0.004028507 -0.097811542 -0.91479236 -0.39182708 -0.1441081\n\t\t -0.97149575 -0.18817705 -0.49882478 -0.83758068 -0.2226935 -0.1441081 -0.97149575\n\t\t -0.18817705 -0.097811542 -0.91479236 -0.39182708 0.28049588 -0.91296113 -0.29630414\n\t\t 0.28049588 -0.91296113 -0.29630414 0.22501327 -0.96969503 -0.095004044 -0.1441081\n\t\t -0.97149575 -0.18817705 -0.49882478 -0.83758068 -0.2226935 -0.46131754 -0.77761179\n\t\t -0.42713699 -0.097811542 -0.91479236 -0.39182708 -0.46131754 -0.77761179 -0.42713699\n\t\t -0.49882478 -0.83758068 -0.2226935 -0.78508848 -0.5884276 -0.19321264 -0.78508848\n\t\t -0.5884276 -0.19321264 -0.75475305 -0.52226347 -0.39689317 -0.46131754 -0.77761179\n\t\t -0.42713699 -0.75475305 -0.52226347 -0.39689317 -0.78508848 -0.5884276 -0.19321264\n\t\t -0.95944083 -0.26194066 -0.10412913 -0.95944083 -0.26194066 -0.10412913 -0.93343908\n\t\t -0.18756707 -0.30570391 -0.75475305 -0.52226347 -0.39689317 -0.93343908 -0.18756707\n\t\t -0.30570391 -0.95944083 -0.26194066 -0.10412913 -0.99523914 0.09225715 0.03076265\n\t\t -0.99523914 0.09225715 0.03076265 -0.97015297 0.17538956 -0.16739404 -0.93343908\n\t\t -0.18756707 -0.30570391 -0.88708162 0.42017856 0.19104584 -0.85930985 0.51139843\n\t\t -0.0030518889 -0.97015297 0.17538956 -0.16739404 -0.97015297 0.17538956 -0.16739404\n\t\t -0.99523914 0.09225715 0.03076265 -0.88708162 0.42017856 0.19104584 -0.85930985 0.51139843\n\t\t -0.0030518889 -0.88708162 0.42017856 0.19104584 -0.65141779 0.67186481 0.35245821\n\t\t -0.65141779 0.67186481 0.35245821 -0.61769485 0.769463 0.16220582 -0.85930985 0.51139843\n\t\t -0.0030518889 -0.61769485 0.769463 0.16220582 -0.65141779 0.67186481 0.35245821 -0.32404578\n\t\t 0.80907613 0.49021876 -0.32404578 0.80907613 0.49021876 -0.28223544 0.9100619 0.30341497\n\t\t -0.61769485 0.769463 0.16220582 -0.28223544 0.9100619 0.30341497 -0.32404578 0.80907613\n\t\t 0.49021876 0.04504507 0.81093788 0.58339179 0.04504507 0.81093788 0.58339179 0.095980428\n\t\t 0.91189307 0.39899895 -0.28223544 0.9100619 0.30341497 0.095980428 0.91189307 0.39899895\n\t\t 0.04504507 0.81093788 0.58339179 0.39976174 0.67708385 0.61781663 0.39976174 0.67708385\n\t\t 0.61781663 0.45948642 0.77468204 0.43436989 0.095980428 0.91189307 0.39899895 0.45948642\n\t\t 0.77468204 0.43436989 0.39976174 0.67708385 0.61781663 0.68608648 0.42786974 0.58836627\n\t\t 0.68608648 0.42786974 0.58836627 0.75295252 0.51930326 0.40412608 0.45948642 0.77468204\n\t\t 0.43436989 0.75295252 0.51930326 0.40412608 0.68608648 0.42786974 0.58836627 0.86043882\n\t\t 0.10132176 0.49931332 0.86043882 0.10132176 0.49931332 0.93163848 0.18463729 0.31287575\n\t\t 0.75295252 0.51930326 0.40412608 0.93163848 0.18463729 0.31287575 0.86043882 0.10132176\n\t\t 0.49931332 0.89620662 -0.25287607 0.36442155 0.89620662 -0.25287607 0.36442155 0.96835238\n\t\t -0.17831933 0.17453536 0.93163848 0.18463729 0.31287575 0.96835238 -0.17831933 0.17453536\n\t\t 0.89620662 -0.25287607 0.36442155 0.7881102 -0.58070594 0.20401628 0.7881102 -0.58070594\n\t\t 0.20401628 0.85750926 -0.51432818 0.010254257 0.96835238 -0.17831933 0.17453536 0.85750926\n\t\t -0.51432818 0.010254257 0.7881102 -0.58070594 0.20401628 0.55235475 -0.83248371 0.042848051\n\t\t 0.55235475 -0.83248371 0.042848051 0.61595529 -0.77233171 -0.15512553 0.85750926\n\t\t -0.51432818 0.010254257 0.61595529 -0.77233171 -0.15512553 0.55235475 -0.83248371\n\t\t 0.042848051 0.22501327 -0.96969503 -0.095004044 0.22501327 -0.96969503 -0.095004044\n\t\t 0.28049588 -0.91296113 -0.29630414 0.61595529 -0.77233171 -0.15512553 -0.22617255\n\t\t -0.36667988 0.9024018 -0.22617255 -0.36667988 0.9024018 -0.226081 -0.36671042 0.90243232\n\t\t -0.226081 -0.36671042 0.90243232 -0.226081 -0.36671042 0.90243232 -0.22617255 -0.36667988\n\t\t 0.9024018 -0.226081 -0.36671042 0.90243232 -0.226081 -0.36671042 0.90243232 -0.22614203\n\t\t -0.36661884 0.90243232 -0.22614203 -0.36661884 0.90243232 -0.22614203 -0.36661884\n\t\t 0.90243232 -0.226081 -0.36671042 0.90243232 -0.22614203 -0.36661884 0.90243232 -0.22614203\n\t\t -0.36661884 0.90243232 -0.22614203 -0.36674094 0.9024018 -0.22614203 -0.36674094\n\t\t 0.9024018 -0.22614203 -0.36671042 0.9024018 -0.22614203 -0.36661884 0.90243232 -0.22614203\n\t\t -0.36671042 0.9024018 -0.22614203 -0.36674094 0.9024018 -0.22611152 -0.36658832 0.90246284\n\t\t -0.22611152 -0.36658832 0.90246284 -0.22614203 -0.36655781 0.90246284 -0.22614203\n\t\t -0.36671042 0.9024018 -0.22614203 -0.36655781 0.90246284 -0.22611152 -0.36658832\n\t\t 0.90246284 -0.22611152 -0.36658832 0.90246284 -0.22611152 -0.36658832 0.90246284\n\t\t -0.22614203 -0.36658832 0.90246284 -0.22614203 -0.36655781 0.90246284 -0.22614203\n\t\t -0.36658832 0.90246284;\n\tsetAttr \".n[9628:9793]\" -type \"float3\"  -0.22611152 -0.36658832 0.90246284 -0.22595893\n\t\t -0.36661884 0.90249336 -0.22595893 -0.36661884 0.90249336 -0.22598945 -0.36661884\n\t\t 0.90249336 -0.22614203 -0.36658832 0.90246284 -0.22598945 -0.36661884 0.90249336\n\t\t -0.22595893 -0.36661884 0.90249336 -0.22598945 -0.36667988 0.90246284 -0.22598945\n\t\t -0.36667988 0.90246284 -0.22605048 -0.36664936 0.90246284 -0.22598945 -0.36661884\n\t\t 0.90249336 -0.22605048 -0.36664936 0.90246284 -0.22598945 -0.36667988 0.90246284\n\t\t -0.22617255 -0.36661884 0.90243232 -0.22617255 -0.36661884 0.90243232 -0.22617255\n\t\t -0.36661884 0.90243232 -0.22605048 -0.36664936 0.90246284 -0.22617255 -0.36661884\n\t\t 0.90243232 -0.22617255 -0.36661884 0.90243232 -0.22614203 -0.36667988 0.9024018 -0.22614203\n\t\t -0.36667988 0.9024018 -0.22614203 -0.36667988 0.90243232 -0.22617255 -0.36661884\n\t\t 0.90243232 -0.22614203 -0.36667988 0.90243232 -0.22614203 -0.36667988 0.9024018 -0.22617255\n\t\t -0.36664936 0.90243232 -0.22617255 -0.36664936 0.90243232 -0.22617255 -0.36664936\n\t\t 0.90243232 -0.22614203 -0.36667988 0.90243232 -0.22617255 -0.36664936 0.90243232\n\t\t -0.22617255 -0.36664936 0.90243232 -0.22611152 -0.36661884 0.90246284 -0.22611152\n\t\t -0.36661884 0.90246284 -0.22614203 -0.36664936 0.90243232 -0.22617255 -0.36664936\n\t\t 0.90243232 -0.22614203 -0.36664936 0.90243232 -0.22611152 -0.36661884 0.90246284\n\t\t -0.226081 -0.36667988 0.90243232 -0.226081 -0.36667988 0.90243232 -0.22611152 -0.36671042\n\t\t 0.9024018 -0.22614203 -0.36664936 0.90243232 -0.22611152 -0.36671042 0.9024018 -0.226081\n\t\t -0.36667988 0.90243232 -0.22611152 -0.36677146 0.9024018 -0.22611152 -0.36677146\n\t\t 0.9024018 -0.22614203 -0.36677146 0.90237129 -0.22611152 -0.36671042 0.9024018 -0.22614203\n\t\t -0.36677146 0.90237129 -0.22611152 -0.36677146 0.9024018 -0.22617255 -0.36677146\n\t\t 0.90237129 -0.22617255 -0.36677146 0.90237129 -0.22614203 -0.36677146 0.9024018 -0.22614203\n\t\t -0.36677146 0.90237129 -0.22614203 -0.36677146 0.9024018 -0.22617255 -0.36677146\n\t\t 0.90237129 -0.22611152 -0.36667988 0.90243232 -0.22611152 -0.36667988 0.90243232\n\t\t -0.22611152 -0.36664936 0.90243232 -0.22614203 -0.36677146 0.9024018 -0.22611152\n\t\t -0.36664936 0.90243232 -0.22611152 -0.36667988 0.90243232 -0.22617255 -0.36667988\n\t\t 0.9024018 -0.22617255 -0.36667988 0.9024018 -0.22617255 -0.36667988 0.9024018 -0.22611152\n\t\t -0.36664936 0.90243232 -0.95635843 -0.29190984 -0.010193161 -0.9480269 -0.21573566\n\t\t -0.23380229 -0.98455769 0.14612232 -0.096072279 -0.98455769 0.14612232 -0.096072279\n\t\t -0.99121064 0.052827243 0.1210364 -0.95635843 -0.29190984 -0.010193161 -0.99121064\n\t\t 0.052827243 0.1210364 -0.98455769 0.14612232 -0.096072279 -0.87408078 0.48097143\n\t\t 0.067567945 -0.87408078 0.48097143 0.067567945 -0.88598299 0.37174574 0.27716908\n\t\t -0.99121064 0.052827243 0.1210364 -0.88598299 0.37174574 0.27716908 -0.87408078 0.48097143\n\t\t 0.067567945 -0.63338137 0.73808998 0.23239839 -0.63338137 0.73808998 0.23239839 -0.65669745\n\t\t 0.61677897 0.4339121 -0.88598299 0.37174574 0.27716908 -0.65669745 0.61677897 0.4339121\n\t\t -0.63338137 0.73808998 0.23239839 -0.29908165 0.87823105 0.37314975 -0.29908165 0.87823105\n\t\t 0.37314975 -0.33820635 0.75020593 0.568102 -0.65669745 0.61677897 0.4339121 -0.33820635\n\t\t 0.75020593 0.568102 -0.29908165 0.87823105 0.37314975 0.078035556 0.88015389 0.46818438\n\t\t 0.078035556 0.88015389 0.46818438 0.021027019 0.75188458 0.65892506 -0.33820635 0.75020593\n\t\t 0.568102 -0.9480269 -0.21573566 -0.23380229 -0.95635843 -0.29190984 -0.010193161\n\t\t -0.78673649 -0.60957694 -0.096896224 -0.78673649 -0.60957694 -0.096896224 -0.7699818\n\t\t -0.54911977 -0.32480848 -0.9480269 -0.21573566 -0.23380229 -0.7699818 -0.54911977\n\t\t -0.32480848 -0.78673649 -0.60957694 -0.096896224 -0.50813293 -0.85204643 -0.12552257\n\t\t -0.50813293 -0.85204643 -0.12552257 -0.47749236 -0.803644 -0.35514385 -0.7699818\n\t\t -0.54911977 -0.32480848 -0.47749236 -0.803644 -0.35514385 -0.50813293 -0.85204643\n\t\t -0.12552257 -0.16296855 -0.98229933 -0.092074268 -0.16296855 -0.98229933 -0.092074268\n\t\t -0.11514605 -0.94033635 -0.32007807 -0.47749236 -0.803644 -0.35514385 -0.11514605\n\t\t -0.94033635 -0.32007807 -0.16296855 -0.98229933 -0.092074268 0.19617328 -0.98055965\n\t\t -0.0013122229 0.19617328 -0.98055965 -0.0013122229 0.26184911 -0.93856621 -0.22467719\n\t\t -0.11514605 -0.94033635 -0.32007807 0.26184911 -0.93856621 -0.22467719 0.19617328\n\t\t -0.98055965 -0.0013122229 0.51463383 -0.84707159 0.13269454 0.51463383 -0.84707159\n\t\t 0.13269454 0.59617931 -0.79839456 -0.084169991 0.26184911 -0.93856621 -0.22467719\n\t\t 0.59617931 -0.79839456 -0.084169991 0.51463383 -0.84707159 0.13269454 0.74394989\n\t\t -0.60209942 0.2897428 0.74394989 -0.60209942 0.2897428 0.83693975 -0.54124552 0.080874085\n\t\t 0.59617931 -0.79839456 -0.084169991 0.83693975 -0.54124552 0.080874085 0.74394989\n\t\t -0.60209942 0.2897428 0.84914708 -0.2830894 0.44584495 0.84914708 -0.2830894 0.44584495\n\t\t 0.94735563 -0.20639637 0.24469742 0.83693975 -0.54124552 0.080874085 0.94735563 -0.20639637\n\t\t 0.24469742 0.84914708 -0.2830894 0.44584495 0.81438643 0.061647687 0.57701343 0.81438643\n\t\t 0.061647687 0.57701343 0.91082484 0.15530901 0.38242745 0.94735563 -0.20639637 0.24469742\n\t\t 0.91082484 0.15530901 0.38242745 0.81438643 0.061647687 0.57701343 0.64476442 0.37934533\n\t\t 0.66359448 0.64476442 0.37934533 0.66359448 0.73271871 0.48893732 0.47328103 0.91082484\n\t\t 0.15530901 0.38242745 0.73271871 0.48893732 0.47328103 0.64476442 0.37934533 0.66359448\n\t\t 0.3661609 0.62169272 0.69234282 0.3661609 0.62169272 0.69234282 0.44032082 0.74343109\n\t\t 0.50337225 0.73271871 0.48893732 0.47328103 0.44032082 0.74343109 0.50337225 0.3661609\n\t\t 0.62169272 0.69234282 0.021027019 0.75188458 0.65892506 0.021027019 0.75188458 0.65892506\n\t\t 0.078035556 0.88015389 0.46818438 0.44032082 0.74343109 0.50337225 -0.94799644 -0.036225744\n\t\t 0.31611073 -0.91653174 -0.34781975 0.19733271 -0.95635843 -0.29190984 -0.010193161\n\t\t -0.95635843 -0.29190984 -0.010193161 -0.99121064 0.052827243 0.1210364;\n\tsetAttr \".n[9794:9959]\" -type \"float3\"  -0.94799644 -0.036225744 0.31611073 -0.94799644\n\t\t -0.036225744 0.31611073 -0.99121064 0.052827243 0.1210364 -0.88598299 0.37174574\n\t\t 0.27716908 -0.88598299 0.37174574 0.27716908 -0.85274827 0.25202161 0.4574419 -0.94799644\n\t\t -0.036225744 0.31611073 -0.6455887 0.47367761 0.59898674 -0.85274827 0.25202161 0.4574419\n\t\t -0.88598299 0.37174574 0.27716908 -0.88598299 0.37174574 0.27716908 -0.65669745 0.61677897\n\t\t 0.4339121 -0.6455887 0.47367761 0.59898674 -0.6455887 0.47367761 0.59898674 -0.65669745\n\t\t 0.61677897 0.4339121 -0.33820635 0.75020593 0.568102 -0.33820635 0.75020593 0.568102\n\t\t -0.35761607 0.59431738 0.72029781 -0.6455887 0.47367761 0.59898674 -0.95635843 -0.29190984\n\t\t -0.010193161 -0.91653174 -0.34781975 0.19733271 -0.7631762 -0.63512093 0.11893068\n\t\t -0.7631762 -0.63512093 0.11893068 -0.78673649 -0.60957694 -0.096896224 -0.95635843\n\t\t -0.29190984 -0.010193161 -0.50813293 -0.85204643 -0.12552257 -0.78673649 -0.60957694\n\t\t -0.096896224 -0.7631762 -0.63512093 0.11893068 -0.7631762 -0.63512093 0.11893068\n\t\t -0.51124585 -0.85433531 0.093203597 -0.50813293 -0.85204643 -0.12552257 -0.50813293\n\t\t -0.85204643 -0.12552257 -0.51124585 -0.85433531 0.093203597 -0.1991635 -0.97213668\n\t\t 0.12356951 -0.1991635 -0.97213668 0.12356951 -0.16296855 -0.98229933 -0.092074268\n\t\t -0.50813293 -0.85204643 -0.12552257 0.19617328 -0.98055965 -0.0013122229 -0.16296855\n\t\t -0.98229933 -0.092074268 -0.1991635 -0.97213668 0.12356951 -0.1991635 -0.97213668\n\t\t 0.12356951 0.12552293 -0.9705801 0.20545068 0.19617328 -0.98055965 -0.0013122229\n\t\t 0.19617328 -0.98055965 -0.0013122229 0.12552293 -0.9705801 0.20545068 0.41346502\n\t\t -0.84981829 0.32685331 0.41346502 -0.84981829 0.32685331 0.51463383 -0.84707159 0.13269454\n\t\t 0.19617328 -0.98055965 -0.0013122229 0.74394989 -0.60209942 0.2897428 0.51463383\n\t\t -0.84707159 0.13269454 0.41346502 -0.84981829 0.32685331 0.41346502 -0.84981829 0.32685331\n\t\t 0.62080771 -0.62843692 0.46864229 0.74394989 -0.60209942 0.2897428 0.74394989 -0.60209942\n\t\t 0.2897428 0.62080771 -0.62843692 0.46864229 0.71590334 -0.33994541 0.60982084 0.71590334\n\t\t -0.33994541 0.60982084 0.84914708 -0.2830894 0.44584495 0.74394989 -0.60209942 0.2897428\n\t\t 0.81438643 0.061647687 0.57701343 0.84914708 -0.2830894 0.44584495 0.71590334 -0.33994541\n\t\t 0.60982084 0.71590334 -0.33994541 0.60982084 0.68462175 -0.028168319 0.72832423 0.81438643\n\t\t 0.061647687 0.57701343 0.81438643 0.061647687 0.57701343 0.68462175 -0.028168319\n\t\t 0.72832423 0.53114408 0.2589803 0.80669576 0.53114408 0.2589803 0.80669576 0.64476442\n\t\t 0.37934533 0.66359448 0.81438643 0.061647687 0.57701343 0.3661609 0.62169272 0.69234282\n\t\t 0.64476442 0.37934533 0.66359448 0.53114408 0.2589803 0.80669576 0.53114408 0.2589803\n\t\t 0.80669576 0.27924421 0.47795051 0.832789 0.3661609 0.62169272 0.69234282 0.3661609\n\t\t 0.62169272 0.69234282 0.27924421 0.47795051 0.832789 -0.032868616 0.59569085 0.80251467\n\t\t -0.032868616 0.59569085 0.80251467 0.021027019 0.75188458 0.65892506 0.3661609 0.62169272\n\t\t 0.69234282 -0.33820635 0.75020593 0.568102 0.021027019 0.75188458 0.65892506 -0.032868616\n\t\t 0.59569085 0.80251467 -0.032868616 0.59569085 0.80251467 -0.35761607 0.59431738 0.72029781\n\t\t -0.33820635 0.75020593 0.568102 -0.22614203 -0.36664936 0.90243232 -0.22534856 -0.36698508\n\t\t 0.90249336 -0.226081 -0.36667988 0.90243232 -0.22614203 -0.36664936 0.90243232 -0.226081\n\t\t -0.36667988 0.90243232 -0.22611152 -0.36671042 0.90243232 -0.226081 -0.36667988 0.90243232\n\t\t -0.226081 -0.36667988 0.90243232 -0.22611152 -0.36671042 0.90243232 -0.226081 -0.36667988\n\t\t 0.90243232 -0.226081 -0.36667988 0.90243232 -0.226081 -0.36667988 0.90243232 -0.226081\n\t\t -0.36667988 0.90243232 -0.22605048 -0.36664936 0.90246284 -0.226081 -0.36667988 0.90243232\n\t\t -0.226081 -0.36667988 0.90243232 -0.22638619 -0.36671042 0.90234077 -0.22605048 -0.36664936\n\t\t 0.90246284 -0.22605048 -0.36664936 0.90246284 -0.22592841 -0.36649677 0.90255439\n\t\t -0.226081 -0.36667988 0.90243232 -0.226081 -0.36667988 0.90243232 -0.22605048 -0.36671042\n\t\t 0.90243232 -0.226081 -0.36667988 0.90243232 -0.226081 -0.36667988 0.90243232 -0.22611152\n\t\t -0.36658832 0.90246284 -0.22605048 -0.36671042 0.90243232 -0.22605048 -0.36671042\n\t\t 0.90243232 -0.226081 -0.36677146 0.9024018 -0.226081 -0.36667988 0.90243232 -0.226081\n\t\t -0.36667988 0.90243232 -0.22605048 -0.36667988 0.90243232 -0.22611152 -0.36671042\n\t\t 0.90243232 -0.226081 -0.36667988 0.90243232 -0.22592841 -0.36664936 0.90246284 -0.22605048\n\t\t -0.36667988 0.90243232 -0.22605048 -0.36667988 0.90243232 -0.226081 -0.36671042 0.90243232\n\t\t -0.22611152 -0.36671042 0.90243232 -0.22614203 -0.36664936 0.90243232 -0.22611152\n\t\t -0.36671042 0.90243232 -0.22601996 -0.36713767 0.90227973 -0.75377685 0.57478535\n\t\t 0.3184301 -0.68419462 0.67046088 0.28690445 -0.6111334 0.70314628 0.36335331 -0.6111334\n\t\t 0.70314628 0.36335331 -0.68242455 0.61113298 0.40095213 -0.75377685 0.57478535 0.3184301\n\t\t -0.68419462 0.67046088 0.28690445 -0.75377685 0.57478535 0.3184301 -0.78283048 0.55516195\n\t\t 0.28092286 -0.78283048 0.55516195 0.28092286 -0.71562868 0.65166152 0.25128934 -0.68419462\n\t\t 0.67046088 0.28690445 -0.75035876 0.61403215 0.24472788 -0.78283048 0.55516195 0.28092286\n\t\t -0.75377685 0.57478535 0.3184301 -0.75377685 0.57478535 0.3184301 -0.72325832 0.63148874\n\t\t 0.27939689 -0.75035876 0.61403215 0.24472788 -0.72325832 0.63148874 0.27939689 -0.75377685\n\t\t 0.57478535 0.3184301 -0.68242455 0.61113298 0.40095213 -0.68242455 0.61113298 0.40095213\n\t\t -0.65129566 0.67009473 0.3559373 -0.72325832 0.63148874 0.27939689 -0.68242455 0.61113298\n\t\t 0.40095213 -0.6111334 0.70314628 0.36335331 -0.54853994 0.72206783 0.4215216 -0.54853994\n\t\t 0.72206783 0.4215216 -0.59492803 0.6458326 0.47843862 -0.68242455 0.61113298 0.40095213\n\t\t -0.65129566 0.67009473 0.3559373 -0.68242455 0.61113298 0.40095213 -0.59492803 0.6458326\n\t\t 0.47843862;\n\tsetAttr \".n[9960:10125]\" -type \"float3\"  -0.59492803 0.6458326 0.47843862 -0.57560986\n\t\t 0.69374663 0.43284395 -0.65129566 0.67009473 0.3559373 -0.71193594 0.58299482 0.39143038\n\t\t -0.65129566 0.67009473 0.3559373 -0.57560986 0.69374663 0.43284395 -0.72325832 0.63148874\n\t\t 0.27939689 -0.65129566 0.67009473 0.3559373 -0.71193594 0.58299482 0.39143038 -0.57560986\n\t\t 0.69374663 0.43284395 -0.64210963 0.60264891 0.47376928 -0.71193594 0.58299482 0.39143038\n\t\t -0.64210963 0.60264891 0.47376928 -0.57560986 0.69374663 0.43284395 -0.70287198 0.57216084\n\t\t 0.42252874 -0.64210963 0.60264891 0.47376928 -0.70287198 0.57216084 0.42252874 -0.65871167\n\t\t 0.58626044 0.47154146 -0.64210963 0.60264891 0.47376928 -0.65871167 0.58626044 0.47154146\n\t\t -0.63734871 0.58091968 0.50621045 -0.57560986 0.69374663 0.43284395 -0.59492803 0.6458326\n\t\t 0.47843862 -0.68437773 0.62575126 0.37418738 -0.68437773 0.62575126 0.37418738 -0.70287198\n\t\t 0.57216084 0.42252874 -0.57560986 0.69374663 0.43284395 -0.68437773 0.62575126 0.37418738\n\t\t -0.59492803 0.6458326 0.47843862 -0.54853994 0.72206783 0.4215216 -0.75035876 0.61403215\n\t\t 0.24472788 -0.72325832 0.63148874 0.27939689 -0.77578068 0.54734921 0.31388283 -0.71193594\n\t\t 0.58299482 0.39143038 -0.77578068 0.54734921 0.31388283 -0.72325832 0.63148874 0.27939689\n\t\t -0.77578068 0.54734921 0.31388283 -0.79931045 0.52247667 0.29676196 -0.75035876 0.61403215\n\t\t 0.24472788 -0.68437773 0.62575126 0.37418738 -0.54853994 0.72206783 0.4215216 -0.5306561\n\t\t 0.73607582 0.42014825 -0.68437773 0.62575126 0.37418738 -0.5306561 0.73607582 0.42014825\n\t\t -0.60478556 0.68755138 0.40186769 -0.75035876 0.61403215 0.24472788 -0.79931045 0.52247667\n\t\t 0.29676196 -0.7983644 0.51087964 0.31870475 -0.76232201 0.60380846 0.2328867 -0.7983644\n\t\t 0.51087964 0.31870475 -0.83535278 0.37491965 0.40195927 -0.83535278 0.37491965 0.40195927\n\t\t -0.77163011 0.46668884 0.43214205 -0.76232201 0.60380846 0.2328867 -0.76232201 0.60380846\n\t\t 0.2328867 -0.77163011 0.46668884 0.43214205 -0.65407294 0.68349236 0.32395393 -0.65407294\n\t\t 0.68349236 0.32395393 -0.79534304 0.54603696 0.26313055 -0.76232201 0.60380846 0.2328867\n\t\t -0.75035876 0.61403215 0.24472788 -0.76232201 0.60380846 0.2328867 -0.79534304 0.54603696\n\t\t 0.26313055 -0.7983644 0.51087964 0.31870475 -0.76232201 0.60380846 0.2328867 -0.75035876\n\t\t 0.61403215 0.24472788 -0.79534304 0.54603696 0.26313055 -0.78283048 0.55516195 0.28092286\n\t\t -0.75035876 0.61403215 0.24472788 -0.78283048 0.55516195 0.28092286 -0.79534304 0.54603696\n\t\t 0.26313055 -0.71877211 0.65102059 0.24393441 -0.71877211 0.65102059 0.24393441 -0.71562868\n\t\t 0.65166152 0.25128934 -0.78283048 0.55516195 0.28092286 -0.79534304 0.54603696 0.26313055\n\t\t -0.65407294 0.68349236 0.32395393 -0.63380861 0.74773383 0.19775988 -0.63380861 0.74773383\n\t\t 0.19775988 -0.71877211 0.65102059 0.24393441 -0.79534304 0.54603696 0.26313055 -0.46174482\n\t\t -0.77410203 0.43302718 -0.458754 -0.77632987 0.43223372 -0.38926339 -0.71541494 0.58018744\n\t\t -0.38926339 -0.71541494 0.58018744 -0.41300675 -0.73421437 0.53880435 -0.46174482\n\t\t -0.77410203 0.43302718 -0.41300675 -0.73421437 0.53880435 -0.38926339 -0.71541494\n\t\t 0.58018744 -0.35309896 -0.67485589 0.64796907 -0.35309896 -0.67485589 0.64796907\n\t\t -0.35367879 -0.66920996 0.65346241 -0.41300675 -0.73421437 0.53880435 -0.458754 -0.77632987\n\t\t 0.43223372 -0.46174482 -0.77410203 0.43302718 -0.47209057 -0.80401027 0.36146128\n\t\t -0.47209057 -0.80401027 0.36146128 -0.46858096 -0.80864906 0.35560173 -0.458754 -0.77632987\n\t\t 0.43223372 -0.46858096 -0.80864906 0.35560173 -0.47209057 -0.80401027 0.36146128\n\t\t -0.48802122 -0.82360321 0.28888828 -0.48802122 -0.82360321 0.28888828 -0.48924196\n\t\t -0.82546484 0.28144175 -0.46858096 -0.80864906 0.35560173 -0.52500969 -0.82674658\n\t\t 0.20206311 -0.48924196 -0.82546484 0.28144175 -0.48802122 -0.82360321 0.28888828\n\t\t -0.48802122 -0.82360321 0.28888828 -0.51875341 -0.82866925 0.21018103 -0.52500969\n\t\t -0.82674658 0.20206311 -0.52500969 -0.82674658 0.20206311 -0.51875341 -0.82866925\n\t\t 0.21018103 -0.61113292 -0.78939193 0.057832636 -0.61113292 -0.78939193 0.057832636\n\t\t -0.64369619 -0.76503819 -0.01828053 -0.52500969 -0.82674658 0.20206311 -0.64369619\n\t\t -0.76503819 -0.01828053 -0.61113292 -0.78939193 0.057832636 -0.69121349 -0.71312624\n\t\t -0.11673325 -0.69121349 -0.71312624 -0.11673325 -0.69182384 -0.70616806 -0.15048671\n\t\t -0.64369619 -0.76503819 -0.01828053 -0.72859889 -0.043458633 -0.68352306 -0.67845696\n\t\t 0.0045775119 -0.73461103 -0.70226145 -0.017609449 -0.7116611 -0.70226145 -0.017609449\n\t\t -0.7116611 -0.74559772 -0.060976263 -0.66356397 -0.72859889 -0.043458633 -0.68352306\n\t\t -0.39432988 0.67320764 -0.62550741 -0.25064877 0.75582129 -0.60487694 -0.20377234\n\t\t 0.82872999 -0.52116466 -0.20377234 0.82872999 -0.52116466 -0.30362889 0.77617705\n\t\t -0.55253768 -0.39432988 0.67320764 -0.62550741 -0.30362889 0.77617705 -0.55253768\n\t\t -0.20377234 0.82872999 -0.52116466 -0.099978924 0.9253822 -0.36558127 -0.099978924\n\t\t 0.9253822 -0.36558127 -0.11334603 0.92239136 -0.36915195 -0.30362889 0.77617705 -0.55253768\n\t\t -0.11334603 0.92239136 -0.36915195 -0.099978924 0.9253822 -0.36558127 -0.032777175\n\t\t 0.96899319 -0.24485007 -0.032777175 0.96899319 -0.24485007 -0.039308138 0.96761984\n\t\t -0.24927525 -0.11334603 0.92239136 -0.36915195 -0.039308138 0.96761984 -0.24927525\n\t\t -0.032777175 0.96899319 -0.24485007 0.0027158433 0.98333687 -0.18164624 0.0027158433\n\t\t 0.98333687 -0.18164624 0.0036924356 0.9832148 -0.18237869 -0.039308138 0.96761984\n\t\t -0.24927525 0.0036924356 0.9832148 -0.18237869 0.0027158433 0.98333687 -0.18164624\n\t\t 0.020416576 0.98501539 -0.17114787 0.020416576 0.98501539 -0.17114787 0.021118503\n\t\t 0.98498487 -0.17120892 0.0036924356 0.9832148 -0.18237869 0.021118503 0.98498487\n\t\t -0.17120892 0.020416576 0.98501539 -0.17114787 0.038056277 0.99032563 -0.13333544\n\t\t 0.038056277 0.99032563 -0.13333544 0.052216865 0.99124122 -0.12125012 0.021118503\n\t\t 0.98498487 -0.17120892 0.052216865 0.99124122 -0.12125012;\n\tsetAttr \".n[10126:10291]\" -type \"float3\"  0.038056277 0.99032563 -0.13333544 0.11935759\n\t\t 0.99282819 -0.0043337024 0.11935759 0.99282819 -0.0043337024 0.15692587 0.9867245\n\t\t 0.041077837 0.052216865 0.99124122 -0.12125012 0.15692587 0.9867245 0.041077837 0.11935759\n\t\t 0.99282819 -0.0043337024 0.2219303 0.95605338 0.19153409 0.2219303 0.95605338 0.19153409\n\t\t 0.26688406 0.93368334 0.23865467 0.15692587 0.9867245 0.041077837 0.26688406 0.93368334\n\t\t 0.23865467 0.2219303 0.95605338 0.19153409 0.34989446 0.78118247 0.51698351 0.34989446\n\t\t 0.78118247 0.51698351 0.36378038 0.77654368 0.5143894 0.26688406 0.93368334 0.23865467\n\t\t 0.36378038 0.77654368 0.5143894 0.34989446 0.78118247 0.51698351 0.37485865 0.6326794\n\t\t 0.67763293 0.37485865 0.6326794 0.67763293 0.3686634 0.6393019 0.67476416 0.36378038\n\t\t 0.77654368 0.5143894 0.15314183 0.17136155 0.97320473 0.14477977 0.11780156 0.98239082\n\t\t 0.14752643 0.13510557 0.97976625 0.14752643 0.13510557 0.97976625 0.15540019 0.18613251\n\t\t 0.97015291 0.15314183 0.17136155 0.97320473 -0.10022271 -0.24530773 0.96423233 -0.10800492\n\t\t -0.27436137 0.955504 -0.10577707 -0.2660298 0.95812863 -0.10577707 -0.2660298 0.95812863\n\t\t -0.097842269 -0.23642685 0.96667379 -0.10022271 -0.24530773 0.96423233 -0.68437773\n\t\t 0.62575126 0.37418738 -0.73189509 0.61458153 0.29422888 -0.78917831 0.49726838 0.36036253\n\t\t -0.78917831 0.49726838 0.36036253 -0.70287198 0.57216084 0.42252874 -0.68437773 0.62575126\n\t\t 0.37418738 -0.70287198 0.57216084 0.42252874 -0.78917831 0.49726838 0.36036253 -0.75698125\n\t\t 0.46540707 0.45860162 -0.75698125 0.46540707 0.45860162 -0.65871167 0.58626044 0.47154146\n\t\t -0.70287198 0.57216084 0.42252874 -0.73189509 0.61458153 0.29422888 -0.68437773 0.62575126\n\t\t 0.37418738 -0.60478556 0.68755138 0.40186769 -0.60478556 0.68755138 0.40186769 -0.64345247\n\t\t 0.70180345 0.30558178 -0.73189509 0.61458153 0.29422888 -0.64345247 0.70180345 0.30558178\n\t\t -0.60478556 0.68755138 0.40186769 -0.5306561 0.73607582 0.42014825 -0.5306561 0.73607582\n\t\t 0.42014825 -0.55671889 0.76293206 0.3285622 -0.64345247 0.70180345 0.30558178 -0.65871167\n\t\t 0.58626044 0.47154146 -0.75698125 0.46540707 0.45860162 -0.71550655 0.46000531 0.52574229\n\t\t -0.71550655 0.46000531 0.52574229 -0.63734871 0.58091968 0.50621045 -0.65871167 0.58626044\n\t\t 0.47154146 -0.63734871 0.58091968 0.50621045 -0.71550655 0.46000531 0.52574229 -0.69054246\n\t\t 0.47587493 0.54466379 -0.69054246 0.47587493 0.54466379 -0.64210963 0.60264891 0.47376928\n\t\t -0.63734871 0.58091968 0.50621045 -0.71193594 0.58299482 0.39143038 -0.64210963 0.60264891\n\t\t 0.47376928 -0.69054246 0.47587493 0.54466379 -0.69054246 0.47587493 0.54466379 -0.7566455\n\t\t 0.46595639 0.45857111 -0.71193594 0.58299482 0.39143038 -0.71193594 0.58299482 0.39143038\n\t\t -0.7566455 0.46595639 0.45857111 -0.82366419 0.42988348 0.36973172 -0.82366419 0.42988348\n\t\t 0.36973172 -0.77578068 0.54734921 0.31388283 -0.71193594 0.58299482 0.39143038 -0.77578068\n\t\t 0.54734921 0.31388283 -0.82366419 0.42988348 0.36973172 -0.8400526 0.40629268 0.35938594\n\t\t -0.8400526 0.40629268 0.35938594 -0.79931045 0.52247667 0.29676196 -0.77578068 0.54734921\n\t\t 0.31388283 -0.79931045 0.52247667 0.29676196 -0.8400526 0.40629268 0.35938594 -0.82525116\n\t\t 0.3987546 0.39985347 -0.82525116 0.3987546 0.39985347 -0.7983644 0.51087964 0.31870475\n\t\t -0.79931045 0.52247667 0.29676196 -0.7983644 0.51087964 0.31870475 -0.82525116 0.3987546\n\t\t 0.39985347 -0.80831337 0.36536738 0.46159244 -0.80831337 0.36536738 0.46159244 -0.83535278\n\t\t 0.37491965 0.40195927 -0.7983644 0.51087964 0.31870475 -0.83535278 0.37491965 0.40195927\n\t\t -0.80831337 0.36536738 0.46159244 -0.71532351 0.48680055 0.50126648 -0.71532351 0.48680055\n\t\t 0.50126648 -0.77163011 0.46668884 0.43214205 -0.83535278 0.37491965 0.40195927 -0.65407294\n\t\t 0.68349236 0.32395393 -0.77163011 0.46668884 0.43214205 -0.71532351 0.48680055 0.50126648\n\t\t -0.71532351 0.48680055 0.50126648 -0.57976037 0.70662546 0.40562144 -0.65407294 0.68349236\n\t\t 0.32395393 -0.65407294 0.68349236 0.32395393 -0.57976037 0.70662546 0.40562144 -0.55153072\n\t\t 0.80254507 0.22730181 -0.55153072 0.80254507 0.22730181 -0.63380861 0.74773383 0.19775988\n\t\t -0.65407294 0.68349236 0.32395393 -0.63380861 0.74773383 0.19775988 -0.55153072 0.80254507\n\t\t 0.22730181 -0.6165657 0.76015484 0.20484018 -0.6165657 0.76015484 0.20484018 -0.71877211\n\t\t 0.65102059 0.24393441 -0.63380861 0.74773383 0.19775988 -0.71877211 0.65102059 0.24393441\n\t\t -0.6165657 0.76015484 0.20484018 -0.6284374 0.75154865 0.20047604 -0.6284374 0.75154865\n\t\t 0.20047604 -0.71562868 0.65166152 0.25128934 -0.71877211 0.65102059 0.24393441 -0.71562868\n\t\t 0.65166152 0.25128934 -0.6284374 0.75154865 0.20047604 -0.60918021 0.76067364 0.22409736\n\t\t -0.60918021 0.76067364 0.22409736 -0.68419462 0.67046088 0.28690445 -0.71562868 0.65166152\n\t\t 0.25128934 -0.6111334 0.70314628 0.36335331 -0.68419462 0.67046088 0.28690445 -0.60918021\n\t\t 0.76067364 0.22409736 -0.60918021 0.76067364 0.22409736 -0.5457322 0.78695011 0.28782001\n\t\t -0.6111334 0.70314628 0.36335331 -0.54853994 0.72206783 0.4215216 -0.6111334 0.70314628\n\t\t 0.36335331 -0.5457322 0.78695011 0.28782001 -0.5457322 0.78695011 0.28782001 -0.49421698\n\t\t 0.79723483 0.34653762 -0.54853994 0.72206783 0.4215216 -0.54853994 0.72206783 0.4215216\n\t\t -0.49421698 0.79723483 0.34653762 -0.55671889 0.76293206 0.3285622 -0.55671889 0.76293206\n\t\t 0.3285622 -0.5306561 0.73607582 0.42014825 -0.54853994 0.72206783 0.4215216 0.42146081\n\t\t -0.62526304 0.65678889 0.29258123 -0.85634917 0.42548913 0.47013789 -0.83571875 0.28370011\n\t\t 0.47013789 -0.83571875 0.28370011 0.60975999 -0.58540583 0.5342266 0.42146081 -0.62526304\n\t\t 0.65678889 0.42146081 -0.62526304 0.65678889 0.60975999 -0.58540583 0.5342266 0.63631099\n\t\t -0.25812528 0.72692037 0.63631099 -0.25812528 0.72692037 0.44596708 -0.32316029 0.83462018;\n\tsetAttr \".n[10292:10457]\" -type \"float3\"  0.42146081 -0.62526304 0.65678889 0.47013789\n\t\t -0.83571875 0.28370011 0.29258123 -0.85634917 0.42548913 0.078799099 -0.98120058\n\t\t 0.17609188 0.078799099 -0.98120058 0.17609188 0.23856349 -0.97100735 0.013458735\n\t\t 0.47013789 -0.83571875 0.28370011 0.36231574 0.0039981063 0.93203527 0.44596708 -0.32316029\n\t\t 0.83462018 0.63631099 -0.25812528 0.72692037 0.63631099 -0.25812528 0.72692037 0.54570144\n\t\t 0.096255608 0.83242285 0.36231574 0.0039981063 0.93203527 0.36231574 0.0039981063\n\t\t 0.93203527 0.54570144 0.096255608 0.83242285 0.35169518 0.42381072 0.83465064 0.35169518\n\t\t 0.42381072 0.83465064 0.18329407 0.30637544 0.93408 0.36231574 0.0039981063 0.93203527\n\t\t -0.06396696 0.53791928 0.84054071 0.18329407 0.30637544 0.93408 0.35169518 0.42381072\n\t\t 0.83465064 0.35169518 0.42381072 0.83465064 0.083864659 0.67467272 0.73329866 -0.06396696\n\t\t 0.53791928 0.84054071 -0.06396696 0.53791928 0.84054071 0.083864659 0.67467272 0.73329866\n\t\t -0.21701737 0.81063265 0.54380924 -0.21701737 0.81063265 0.54380924 -0.34174648 0.6633808\n\t\t 0.66563916 -0.06396696 0.53791928 0.84054071 -0.60771525 0.66380799 0.4358958 -0.34174648\n\t\t 0.6633808 0.66563916 -0.21701737 0.81063265 0.54380924 -0.21701737 0.81063265 0.54380924\n\t\t -0.50514263 0.8110292 0.29496133 -0.60771525 0.66380799 0.4358958 -0.60771525 0.66380799\n\t\t 0.4358958 -0.50514263 0.8110292 0.29496133 -0.73668653 0.6757406 0.024719942 -0.73668653\n\t\t 0.6757406 0.024719942 -0.82140589 0.53895664 0.18643753 -0.60771525 0.66380799 0.4358958\n\t\t -0.95037705 0.30780938 -0.044801194 -0.82140589 0.53895664 0.18643753 -0.73668653\n\t\t 0.6757406 0.024719942 -0.73668653 0.6757406 0.024719942 -0.87636966 0.42542773 -0.22577596\n\t\t -0.95037705 0.30780938 -0.044801194 -0.95037705 0.30780938 -0.044801194 -0.87636966\n\t\t 0.42542773 -0.22577596 -0.90289015 0.098147221 -0.41846979 -0.90289015 0.098147221\n\t\t -0.41846979 -0.97485274 0.0057676802 -0.22269356 -0.95037705 0.30780938 -0.044801194\n\t\t -0.89120138 -0.32139072 -0.3200781 -0.97485274 0.0057676802 -0.22269356 -0.90289015\n\t\t 0.098147221 -0.41846979 -0.90289015 0.098147221 -0.41846979 -0.81225008 -0.25620314\n\t\t -0.52397227 -0.89120138 -0.32139072 -0.3200781 -0.89120138 -0.32139072 -0.3200781\n\t\t -0.81225008 -0.25620314 -0.52397227 -0.61827433 -0.58378881 -0.52620006 -0.61827433\n\t\t -0.58378881 -0.52620006 -0.71214926 -0.62376803 -0.32206178 -0.89120138 -0.32139072\n\t\t -0.3200781 -0.46485767 -0.85534239 -0.22855306 -0.71214926 -0.62376803 -0.32206178\n\t\t -0.61827433 -0.58378881 -0.52620006 -0.61827433 -0.58378881 -0.52620006 -0.35041326\n\t\t -0.83465087 -0.42484811 -0.46485767 -0.85534239 -0.22855306 -0.46485767 -0.85534239\n\t\t -0.22855306 -0.35041326 -0.83465087 -0.42484811 -0.04953124 -0.9706412 -0.23532815\n\t\t -0.04953124 -0.9706412 -0.23532815 -0.18710868 -0.98086494 -0.053651467 -0.46485767\n\t\t -0.85534239 -0.22855306 0.083376855 -0.91424298 -0.3964659 -0.04953124 -0.9706412\n\t\t -0.23532815 -0.35041326 -0.83465087 -0.42484811 -0.04953124 -0.9706412 -0.23532815\n\t\t 0.083376855 -0.91424298 -0.3964659 0.37870446 -0.91460907 -0.14145322 0.37870446\n\t\t -0.91460907 -0.14145322 0.23856349 -0.97100735 0.013458735 -0.04953124 -0.9706412\n\t\t -0.23532815 -0.35041326 -0.83465087 -0.42484811 -0.2249517 -0.77489561 -0.59068567\n\t\t 0.083376855 -0.91424298 -0.3964659 -0.2249517 -0.77489561 -0.59068567 -0.35041326\n\t\t -0.83465087 -0.42484811 -0.61827433 -0.58378881 -0.52620006 -0.61827433 -0.58378881\n\t\t -0.52620006 -0.49946576 -0.51774675 -0.69457072 -0.2249517 -0.77489561 -0.59068567\n\t\t -0.49946576 -0.51774675 -0.69457072 -0.61827433 -0.58378881 -0.52620006 -0.81225008\n\t\t -0.25620314 -0.52397227 -0.81225008 -0.25620314 -0.52397227 -0.69829398 -0.18207368\n\t\t -0.69225132 -0.49946576 -0.51774675 -0.69457072 -0.69829398 -0.18207368 -0.69225132\n\t\t -0.81225008 -0.25620314 -0.52397227 -0.90289015 0.098147221 -0.41846979 -0.90289015\n\t\t 0.098147221 -0.41846979 -0.79116189 0.18109655 -0.58412427 -0.69829398 -0.18207368\n\t\t -0.69225132 -0.87636966 0.42542773 -0.22577596 -0.76397002 0.51652551 -0.38666955\n\t\t -0.79116189 0.18109655 -0.58412427 -0.79116189 0.18109655 -0.58412427 -0.90289015\n\t\t 0.098147221 -0.41846979 -0.87636966 0.42542773 -0.22577596 -0.76397002 0.51652551\n\t\t -0.38666955 -0.87636966 0.42542773 -0.22577596 -0.73668653 0.6757406 0.024719942\n\t\t -0.73668653 0.6757406 0.024719942 -0.62083828 0.77309471 -0.12988684 -0.76397002\n\t\t 0.51652551 -0.38666955 -0.62083828 0.77309471 -0.12988684 -0.73668653 0.6757406 0.024719942\n\t\t -0.50514263 0.8110292 0.29496133 -0.50514263 0.8110292 0.29496133 -0.38352638 0.91170985\n\t\t 0.1470381 -0.62083828 0.77309471 -0.12988684 -0.38352638 0.91170985 0.1470381 -0.50514263\n\t\t 0.8110292 0.29496133 -0.21701737 0.81063265 0.54380924 -0.21701737 0.81063265 0.54380924\n\t\t -0.088229291 0.91134381 0.40205079 -0.38352638 0.91170985 0.1470381 -0.088229291\n\t\t 0.91134381 0.40205079 -0.21701737 0.81063265 0.54380924 0.083864659 0.67467272 0.73329866\n\t\t 0.083864659 0.67467272 0.73329866 0.22009926 0.7719658 0.59627056 -0.088229291 0.91134381\n\t\t 0.40205079 0.22009926 0.7719658 0.59627056 0.083864659 0.67467272 0.73329866 0.35169518\n\t\t 0.42381072 0.83465064 0.35169518 0.42381072 0.83465064 0.49461332 0.51487803 0.70015556\n\t\t 0.22009926 0.7719658 0.59627056 0.49461332 0.51487803 0.70015556 0.35169518 0.42381072\n\t\t 0.83465064 0.54570144 0.096255608 0.83242285 0.54570144 0.096255608 0.83242285 0.69344151\n\t\t 0.17917442 0.69783622 0.49461332 0.51487803 0.70015556 0.69344151 0.17917442 0.69783622\n\t\t 0.54570144 0.096255608 0.83242285 0.63631099 -0.25812528 0.72692037 0.63631099 -0.25812528\n\t\t 0.72692037 0.78634 -0.18399581 0.58970916 0.69344151 0.17917442 0.69783622 0.78634\n\t\t -0.18399581 0.58970916 0.63631099 -0.25812528 0.72692037 0.60975999 -0.58540583 0.5342266\n\t\t 0.60975999 -0.58540583 0.5342266 0.75914812 -0.5194248 0.39222392 0.78634 -0.18399581\n\t\t 0.58970916 0.75914812 -0.5194248 0.39222392 0.60975999 -0.58540583 0.5342266 0.47013789\n\t\t -0.83571875 0.28370011;\n\tsetAttr \".n[10458:10623]\" -type \"float3\"  0.47013789 -0.83571875 0.28370011 0.61598581\n\t\t -0.77596343 0.13550225 0.75914812 -0.5194248 0.39222392 0.61598581 -0.77596343 0.13550225\n\t\t 0.47013789 -0.83571875 0.28370011 0.23856349 -0.97100735 0.013458735 0.23856349 -0.97100735\n\t\t 0.013458735 0.37870446 -0.91460907 -0.14145322 0.61598581 -0.77596343 0.13550225\n\t\t -0.04953124 -0.9706412 -0.23532815 0.23856349 -0.97100735 0.013458735 0.078799099\n\t\t -0.98120058 0.17609188 0.078799099 -0.98120058 0.17609188 -0.18710868 -0.98086494\n\t\t -0.053651467 -0.04953124 -0.9706412 -0.23532815 -0.60866106 -0.36530668 0.70430619\n\t\t -0.60866106 -0.36530668 0.70430619 -0.60866106 -0.36530668 0.70430619 -0.60866106\n\t\t -0.36530668 0.70430619 -0.60866106 -0.36530668 0.70430619 -0.60866106 -0.36530668\n\t\t 0.70430619 -0.60866106 -0.36530668 0.70430619 -0.60866106 -0.36530668 0.70430619\n\t\t -0.60866106 -0.36530668 0.70430619 -0.60866106 -0.36530668 0.70430619 -0.60866106\n\t\t -0.36530668 0.70430619 -0.60866106 -0.36530668 0.70430619 -0.60866106 -0.36530668\n\t\t 0.70430619 -0.60866106 -0.36530668 0.70430619 -0.60866106 -0.36527616 0.70430619\n\t\t -0.60866106 -0.36527616 0.70430619 -0.60866106 -0.36527616 0.70430619 -0.60866106\n\t\t -0.36530668 0.70430619 -0.60866106 -0.36527616 0.70430619 -0.60866106 -0.36527616\n\t\t 0.70430619 -0.60863054 -0.36533719 0.70430619 -0.60863054 -0.36533719 0.70430619\n\t\t -0.60863054 -0.36536771 0.70430619 -0.60866106 -0.36527616 0.70430619 -0.60863054\n\t\t -0.36536771 0.70430619 -0.60863054 -0.36533719 0.70430619 -0.60866106 -0.36530668\n\t\t 0.70430619 -0.60866106 -0.36530668 0.70430619 -0.60863054 -0.36527616 0.7043367 -0.60863054\n\t\t -0.36536771 0.70430619 -0.60863054 -0.36527616 0.7043367 -0.60866106 -0.36530668\n\t\t 0.70430619 -0.60866106 -0.36527616 0.70430619 -0.60866106 -0.36527616 0.70430619\n\t\t -0.60863054 -0.36527616 0.7043367 -0.60863054 -0.36527616 0.7043367 -0.60863054 -0.36527616\n\t\t 0.7043367 -0.60866106 -0.36527616 0.70430619 -0.60863054 -0.36527616 0.7043367 -0.60863054\n\t\t -0.36527616 0.7043367 -0.60863054 -0.36527616 0.7043367 -0.60863054 -0.36527616 0.7043367\n\t\t -0.60863054 -0.36527616 0.7043367 -0.60863054 -0.36527616 0.7043367 -0.60863054 -0.36527616\n\t\t 0.7043367 -0.60863054 -0.36527616 0.7043367 -0.60863054 -0.36527616 0.7043367 -0.60863054\n\t\t -0.36527616 0.7043367 -0.60863054 -0.36527616 0.7043367 -0.60863054 -0.36527616 0.7043367\n\t\t -0.60863054 -0.36530668 0.7043367 -0.60863054 -0.36530668 0.7043367 -0.60863054 -0.36527616\n\t\t 0.7043367 -0.60863054 -0.36527616 0.7043367 -0.60863054 -0.36527616 0.7043367 -0.60863054\n\t\t -0.36530668 0.7043367 -0.60866106 -0.36530668 0.70430619 -0.60866106 -0.36530668\n\t\t 0.70430619 -0.60866106 -0.36530668 0.70430619 -0.60863054 -0.36527616 0.7043367 -0.60866106\n\t\t -0.36530668 0.70430619 -0.60866106 -0.36530668 0.70430619 -0.60866106 -0.36527616\n\t\t 0.70430619 -0.60866106 -0.36527616 0.70430619 -0.60866106 -0.36527616 0.70430619\n\t\t -0.60866106 -0.36530668 0.70430619 -0.60866106 -0.36527616 0.70430619 -0.60866106\n\t\t -0.36527616 0.70430619 -0.60866106 -0.36533719 0.70427567 -0.60866106 -0.36533719\n\t\t 0.70427567 -0.60866106 -0.36533719 0.70430619 -0.60866106 -0.36527616 0.70430619\n\t\t -0.60866106 -0.36533719 0.70430619 -0.60866106 -0.36533719 0.70427567 -0.60863054\n\t\t -0.36527616 0.7043367 -0.60863054 -0.36527616 0.7043367 -0.60863054 -0.36527616 0.7043367\n\t\t -0.60866106 -0.36533719 0.70430619 -0.60863054 -0.36527616 0.7043367 -0.60863054\n\t\t -0.36527616 0.7043367 -0.60866106 -0.36527616 0.70430619 -0.60866106 -0.36527616\n\t\t 0.70430619 -0.60866106 -0.36530668 0.70430619 -0.60863054 -0.36527616 0.7043367 -0.60866106\n\t\t -0.36530668 0.70430619 -0.60866106 -0.36527616 0.70430619 -0.60866106 -0.36530668\n\t\t 0.70427567 -0.60866106 -0.36530668 0.70427567 -0.60869157 -0.36530668 0.70427567\n\t\t -0.60866106 -0.36530668 0.70430619 -0.60869157 -0.36530668 0.70427567 -0.60866106\n\t\t -0.36530668 0.70427567 -0.60866106 -0.36530668 0.70430619 -0.60866106 -0.36530668\n\t\t 0.70430619 -0.60866106 -0.36530668 0.70430619 -0.60869157 -0.36530668 0.70427567\n\t\t -0.85180205 -0.28620288 -0.43870354 -0.74352241 -0.20999813 -0.63484603 -0.83614618\n\t\t 0.15189032 -0.52702415 -0.83614618 0.15189032 -0.52702415 -0.94000059 0.058595221\n\t\t -0.3360393 -0.85180205 -0.28620288 -0.43870354 -0.94000059 0.058595221 -0.3360393\n\t\t -0.83614618 0.15189032 -0.52702415 -0.80904585 0.48615959 -0.33024082 -0.80904585\n\t\t 0.48615959 -0.33024082 -0.91418207 0.37705591 -0.14859465 -0.94000059 0.058595221\n\t\t -0.3360393 -0.91418207 0.37705591 -0.14859465 -0.80904585 0.48615959 -0.33024082\n\t\t -0.66634136 0.7419048 -0.074343137 -0.66634136 0.7419048 -0.074343137 -0.77825266\n\t\t 0.6206547 0.095217705 -0.91418207 0.37705591 -0.14859465 -0.77825266 0.6206547 0.095217705\n\t\t -0.66634136 0.7419048 -0.074343137 -0.42985347 0.88006216 0.20166625 -0.42985347\n\t\t 0.88006216 0.20166625 -0.55299562 0.75225055 0.35813466 -0.77825266 0.6206547 0.095217705\n\t\t -0.74352241 -0.20999813 -0.63484603 -0.85180205 -0.28620288 -0.43870354 -0.66304493\n\t\t -0.60490763 -0.44090083 -0.66304493 -0.60490763 -0.44090083 -0.54539609 -0.54460305\n\t\t -0.63713485 -0.74352241 -0.20999813 -0.63484603 -0.54539609 -0.54460305 -0.63713485\n\t\t -0.66304493 -0.60490763 -0.44090083 -0.40244731 -0.84902507 -0.34223449 -0.40244731\n\t\t -0.84902507 -0.34223449 -0.27185863 -0.80086684 -0.53355503 -0.54539609 -0.54460305\n\t\t -0.63713485 -0.27185863 -0.80086684 -0.53355503 -0.40244731 -0.84902507 -0.34223449\n\t\t -0.1096527 -0.98132271 -0.15787217 -0.1096527 -0.98132271 -0.15787217 0.035462797\n\t\t -0.93975645 -0.33997613 -0.27185863 -0.80086684 -0.53355503 0.035462797 -0.93975645\n\t\t -0.33997613 -0.1096527 -0.98132271 -0.15787217 0.17069033 -0.98168886 0.084200643\n\t\t 0.17069033 -0.98168886 0.084200643 0.32981384 -0.94012254 -0.08587902 0.035462797\n\t\t -0.93975645 -0.33997613 0.32981384 -0.94012254 -0.08587902 0.17069033 -0.98168886\n\t\t 0.084200643 0.3959474 -0.85009295 0.34714809 0.3959474 -0.85009295 0.34714809 0.56627119\n\t\t -0.80196524 0.19013037 0.32981384 -0.94012254 -0.08587902 0.56627119 -0.80196524\n\t\t 0.19013037;\n\tsetAttr \".n[10624:10789]\" -type \"float3\"  0.3959474 -0.85009295 0.34714809 0.53184623\n\t\t -0.60649413 0.5909605 0.53184623 -0.60649413 0.5909605 0.70891464 -0.54628104 0.44608909\n\t\t 0.56627119 -0.80196524 0.19013037 0.70891464 -0.54628104 0.44608909 0.53184623 -0.60649413\n\t\t 0.5909605 0.55769533 -0.28803346 0.77843565 0.55769533 -0.28803346 0.77843565 0.73604548\n\t\t -0.2119813 0.64284188 0.70891464 -0.54628104 0.44608909 0.73604548 -0.2119813 0.64284188\n\t\t 0.55769533 -0.28803346 0.77843565 0.46952724 0.05676464 0.88106936 0.46952724 0.05676464\n\t\t 0.88106936 0.64348269 0.14999872 0.7505722 0.73604548 -0.2119813 0.64284188 0.64348269\n\t\t 0.14999872 0.7505722 0.46952724 0.05676464 0.88106936 0.28077018 0.37549987 0.88323617\n\t\t 0.28077018 0.37549987 0.88323617 0.44529542 0.48454258 0.75289154 0.64348269 0.14999872\n\t\t 0.7505722 0.44529542 0.48454258 0.75289154 0.28077018 0.37549987 0.88323617 0.020172542\n\t\t 0.61958683 0.78463084 0.020172542 0.61958683 0.78463084 0.17178847 0.74077588 0.64937276\n\t\t 0.44529542 0.48454258 0.75289154 0.17178847 0.74077588 0.64937276 0.020172542 0.61958683\n\t\t 0.78463084 -0.27259156 0.75191504 0.60023797 -0.27259156 0.75191504 0.60023797 -0.13559401\n\t\t 0.87966549 0.4558244 0.17178847 0.74077588 0.64937276 -0.13559401 0.87966549 0.4558244\n\t\t -0.27259156 0.75191504 0.60023797 -0.55299562 0.75225055 0.35813466 -0.55299562 0.75225055\n\t\t 0.35813466 -0.42985347 0.88006216 0.20166625 -0.13559401 0.87966549 0.4558244 -0.98928797\n\t\t -0.030701937 -0.14249092 -0.90960407 -0.3424485 -0.23523664 -0.85180205 -0.28620288\n\t\t -0.43870354 -0.85180205 -0.28620288 -0.43870354 -0.94000059 0.058595221 -0.3360393\n\t\t -0.98928797 -0.030701937 -0.14249092 -0.98928797 -0.030701937 -0.14249092 -0.94000059\n\t\t 0.058595221 -0.3360393 -0.91418207 0.37705591 -0.14859465 -0.91418207 0.37705591\n\t\t -0.14859465 -0.96594143 0.25724021 0.026947826 -0.98928797 -0.030701937 -0.14249092\n\t\t -0.84310448 0.47740081 0.24741353 -0.96594143 0.25724021 0.026947826 -0.91418207\n\t\t 0.37705591 -0.14859465 -0.91418207 0.37705591 -0.14859465 -0.77825266 0.6206547 0.095217705\n\t\t -0.84310448 0.47740081 0.24741353 -0.84310448 0.47740081 0.24741353 -0.77825266 0.6206547\n\t\t 0.095217705 -0.55299562 0.75225055 0.35813466 -0.55299562 0.75225055 0.35813466 -0.63939345\n\t\t 0.59642309 0.48518324 -0.84310448 0.47740081 0.24741353 -0.85180205 -0.28620288 -0.43870354\n\t\t -0.90960407 -0.3424485 -0.23523664 -0.73891395 -0.63063473 -0.23718981 -0.73891395\n\t\t -0.63063473 -0.23718981 -0.66304493 -0.60490763 -0.44090083 -0.85180205 -0.28620288\n\t\t -0.43870354 -0.40244731 -0.84902507 -0.34223449 -0.66304493 -0.60490763 -0.44090083\n\t\t -0.73891395 -0.63063473 -0.23718981 -0.73891395 -0.63063473 -0.23718981 -0.50331104\n\t\t -0.85131401 -0.14804523 -0.40244731 -0.84902507 -0.34223449 -0.40244731 -0.84902507\n\t\t -0.34223449 -0.50331104 -0.85131401 -0.14804523 -0.23853236 -0.97094643 0.018585844\n\t\t -0.23853236 -0.97094643 0.018585844 -0.1096527 -0.98132271 -0.15787217 -0.40244731\n\t\t -0.84902507 -0.34223449 0.17069033 -0.98168886 0.084200643 -0.1096527 -0.98132271\n\t\t -0.15787217 -0.23853236 -0.97094643 0.018585844 -0.23853236 -0.97094643 0.018585844\n\t\t 0.014862814 -0.97125155 0.23746459 0.17069033 -0.98168886 0.084200643 0.17069033\n\t\t -0.98168886 0.084200643 0.014862814 -0.97125155 0.23746459 0.21854332 -0.85225976\n\t\t 0.4752343 0.21854332 -0.85225976 0.4752343 0.3959474 -0.85009295 0.34714809 0.17069033\n\t\t -0.98168886 0.084200643 0.53184623 -0.60649413 0.5909605 0.3959474 -0.85009295 0.34714809\n\t\t 0.21854332 -0.85225976 0.4752343 0.21854332 -0.85225976 0.4752343 0.3414413 -0.63203818\n\t\t 0.69560844 0.53184623 -0.60649413 0.5909605 0.53184623 -0.60649413 0.5909605 0.3414413\n\t\t -0.63203818 0.69560844 0.36475736 -0.344096 0.86513871 0.36475736 -0.344096 0.86513871\n\t\t 0.55769533 -0.28803346 0.77843565 0.53184623 -0.60649413 0.5909605 0.46952724 0.05676464\n\t\t 0.88106936 0.55769533 -0.28803346 0.77843565 0.36475736 -0.344096 0.86513871 0.36475736\n\t\t -0.344096 0.86513871 0.28501236 -0.032379977 0.95794547 0.46952724 0.05676464 0.88106936\n\t\t 0.46952724 0.05676464 0.88106936 0.28501236 -0.032379977 0.95794547 0.11441381 0.25583676\n\t\t 0.95989865 0.11441381 0.25583676 0.95989865 0.28077018 0.37549987 0.88323617 0.46952724\n\t\t 0.05676464 0.88106936 0.020172542 0.61958683 0.78463084 0.28077018 0.37549987 0.88323617\n\t\t 0.11441381 0.25583676 0.95989865 0.11441381 0.25583676 0.95989865 -0.12118915 0.476455\n\t\t 0.87078458 0.020172542 0.61958683 0.78463084 0.020172542 0.61958683 0.78463084 -0.12118915\n\t\t 0.476455 0.87078458 -0.38590673 0.59614849 0.70403141 -0.38590673 0.59614849 0.70403141\n\t\t -0.27259156 0.75191504 0.60023797 0.020172542 0.61958683 0.78463084 -0.55299562 0.75225055\n\t\t 0.35813466 -0.27259156 0.75191504 0.60023797 -0.38590673 0.59614849 0.70403141 -0.38590673\n\t\t 0.59614849 0.70403141 -0.63939345 0.59642309 0.48518324 -0.55299562 0.75225055 0.35813466\n\t\t -0.60866106 -0.36527616 0.70430619 -0.60875261 -0.36524564 0.70424515 -0.60866106\n\t\t -0.36530668 0.70430619 -0.60866106 -0.36527616 0.70430619 -0.60866106 -0.36530668\n\t\t 0.70430619 -0.60866106 -0.36527616 0.70430619 -0.60866106 -0.36530668 0.70430619\n\t\t -0.60866106 -0.36527616 0.70430619 -0.60866106 -0.36527616 0.70430619 -0.60866106\n\t\t -0.36530668 0.70430619 -0.60866106 -0.36530668 0.70430619 -0.60866106 -0.36527616\n\t\t 0.70430619 -0.60866106 -0.36530668 0.70430619 -0.60863054 -0.36530668 0.7043367 -0.60866106\n\t\t -0.36530668 0.70430619 -0.60866106 -0.36530668 0.70430619 -0.60869157 -0.36530668\n\t\t 0.70427567 -0.60863054 -0.36530668 0.7043367 -0.60863054 -0.36530668 0.7043367 -0.60869157\n\t\t -0.36545926 0.70418411 -0.60866106 -0.36530668 0.70430619 -0.60866106 -0.36530668\n\t\t 0.70430619 -0.60866106 -0.36527616 0.70430619 -0.60866106 -0.36527616 0.70430619\n\t\t -0.60866106 -0.36530668 0.70430619 -0.60866106 -0.36527616 0.70430619 -0.60866106\n\t\t -0.36527616 0.70430619 -0.60866106 -0.36527616 0.70430619 -0.60878313 -0.36518461\n\t\t 0.70424515;\n\tsetAttr \".n[10790:10955]\" -type \"float3\"  -0.60866106 -0.36527616 0.70430619 -0.60866106\n\t\t -0.36527616 0.70430619 -0.60863054 -0.36530668 0.7043367 -0.60866106 -0.36527616\n\t\t 0.70430619 -0.60866106 -0.36527616 0.70430619 -0.60869157 -0.36530668 0.70427567\n\t\t -0.60863054 -0.36530668 0.7043367 -0.60863054 -0.36530668 0.7043367 -0.60866106 -0.36530668\n\t\t 0.70430619 -0.60866106 -0.36527616 0.70430619 -0.60866106 -0.36527616 0.70430619\n\t\t -0.60866106 -0.36527616 0.70430619 -0.60872209 -0.36515409 0.7043367 -0.026398279\n\t\t -0.74926001 -0.66170228 -0.028778724 -0.74398029 -0.66753131 0.045930628 -0.88409078\n\t\t -0.46501046 0.045930628 -0.88409078 -0.46501046 0.050752558 -0.89129311 -0.45051417\n\t\t -0.026398279 -0.74926001 -0.66170228 0.050752558 -0.89129311 -0.45051417 0.045930628\n\t\t -0.88409078 -0.46501046 0.090853892 -0.94177067 -0.32370976 0.090853892 -0.94177067\n\t\t -0.32370976 0.090853892 -0.94177067 -0.32370976 0.050752558 -0.89129311 -0.45051417\n\t\t 0.24674243 -0.90758991 0.33967108 0.24674243 -0.90758991 0.33961004 0.24674243 -0.90758991\n\t\t 0.33964056 0.24674243 -0.90758991 0.33964056 0.24674243 -0.90755939 0.33970159 0.24674243\n\t\t -0.90758991 0.33967108 -0.028778724 -0.74398029 -0.66753131 -0.026398279 -0.74926001\n\t\t -0.66170228 -0.10406795 -0.54734957 -0.83037806 -0.10406795 -0.54734957 -0.83037806\n\t\t -0.10550232 -0.54307699 -0.83300263 -0.028778724 -0.74398029 -0.66753131 -0.10550232\n\t\t -0.54307699 -0.83300263 -0.10406795 -0.54734957 -0.83037806 -0.18054742 -0.27710819\n\t\t -0.94369334 -0.18054742 -0.27710819 -0.94369334 -0.18005912 -0.27912241 -0.94320506\n\t\t -0.10550232 -0.54307699 -0.83300263 0.27408683 -0.2690205 0.92327648 0.2740258 -0.26886791\n\t\t 0.92333752 0.26071969 -0.15494232 0.95287943 0.26071969 -0.15494232 0.95287943 0.25904113\n\t\t -0.14178884 0.95538193 0.27408683 -0.2690205 0.92327648 0.25904113 -0.14178884 0.95538193\n\t\t 0.26071969 -0.15494232 0.95287943 0.24158454 -0.025330216 0.97003084 0.24158454 -0.025330216\n\t\t 0.97003084 0.24164557 -0.025360735 0.97003084 0.25904113 -0.14178884 0.95538193 -0.18005912\n\t\t -0.27912241 -0.94320506 -0.18054742 -0.27710819 -0.94369334 -0.22901088 -0.047151238\n\t\t -0.97225869 -0.22901088 -0.047151238 -0.97225869 -0.22806481 -0.052308865 -0.97222817\n\t\t -0.18005912 -0.27912241 -0.94320506 -0.22806481 -0.052308865 -0.97222817 -0.22901088\n\t\t -0.047151238 -0.97225869 -0.26041451 0.1524398 -0.95336771 -0.26041451 0.1524398\n\t\t -0.95336771 -0.25922424 0.14343685 -0.95507675 -0.22806481 -0.052308865 -0.97222817\n\t\t -0.25922424 0.14343685 -0.95507675 -0.26041451 0.1524398 -0.95336771 -0.28492093\n\t\t 0.39893779 -0.8715781 -0.28492093 0.39893779 -0.8715781 -0.28370017 0.38068774 -0.8800928\n\t\t -0.25922424 0.14343685 -0.95507675 -0.28370017 0.38068774 -0.8800928 -0.28492093\n\t\t 0.39893779 -0.8715781 -0.28827804 0.66530341 -0.68865025 -0.28827804 0.66530341 -0.68865025\n\t\t -0.28922412 0.64345205 -0.7087009 -0.28370017 0.38068774 -0.8800928 -0.28922412 0.64345205\n\t\t -0.7087009 -0.28827804 0.66530341 -0.68865025 -0.26545027 0.84658331 -0.46131784\n\t\t -0.26545027 0.84658331 -0.46131784 -0.26838005 0.83336884 -0.48316911 -0.28922412\n\t\t 0.64345205 -0.7087009 -0.26838005 0.83336884 -0.48316911 -0.26545027 0.84658331 -0.46131784\n\t\t -0.21817712 0.95806754 -0.18555261 -0.21817712 0.95806754 -0.18555261 -0.22476912\n\t\t 0.9494918 -0.2188483 -0.26838005 0.83336884 -0.48316911 -0.22476912 0.9494918 -0.2188483\n\t\t -0.21817712 0.95806754 -0.18555261 -0.18634632 0.98171937 -0.037812509 -0.18634632\n\t\t 0.98171937 -0.037812509 -0.18637684 0.98171937 -0.037843026 -0.22476912 0.9494918\n\t\t -0.2188483 -0.012085583 0.81942207 0.57304597 -0.0058598062 0.8156988 0.57838672\n\t\t -0.0087285461 0.81743836 0.57594526 -0.0087285461 0.81743836 0.57594526 -0.015015361\n\t\t 0.82113105 0.57051295 -0.012085583 0.81942207 0.57304597 0.19684432 0.20642734 0.95843381\n\t\t 0.19690536 0.20630525 0.95843381 0.22000791 0.09488219 0.97085482 0.22000791 0.09488219\n\t\t 0.97085482 0.22159487 0.086672708 0.97125155 0.19684432 0.20642734 0.95843381 0.22159487\n\t\t 0.086672708 0.97125155 0.22000791 0.09488219 0.97085482 0.2415235 -0.025391253 0.97003084\n\t\t 0.2415235 -0.025391253 0.97003084 0.24158454 -0.02542177 0.97003084 0.22159487 0.086672708\n\t\t 0.97125155 0.24158454 -0.02542177 0.97003084 0.2415235 -0.025391253 0.97003084 0.24164557\n\t\t -0.025360735 0.97003084 0.24164557 -0.025360735 0.97003084 0.24158454 -0.025330216\n\t\t 0.97003084 0.24158454 -0.02542177 0.97003084 -0.91418207 0.33832788 -0.22309034 -0.91418207\n\t\t 0.3346962 -0.22849211 -0.90459919 0.22647755 -0.36103401 -0.90459919 0.22647755 -0.36103401\n\t\t -0.90453815 0.23474807 -0.35590687 -0.91418207 0.33832788 -0.22309034 -0.90453815\n\t\t 0.23474807 -0.35590687 -0.90459919 0.22647755 -0.36103401 -0.88082522 0.076387517\n\t\t -0.46717733 -0.88082522 0.076387517 -0.46717733 -0.88003176 0.080415957 -0.46803185\n\t\t -0.90453815 0.23474807 -0.35590687 -0.88003176 0.080415957 -0.46803185 -0.88082522\n\t\t 0.076387517 -0.46717733 -0.85128331 -0.065889761 -0.52049315 -0.85128331 -0.065889761\n\t\t -0.52049315 -0.85189366 -0.056276433 -0.5206458 -0.88003176 0.080415957 -0.46803185\n\t\t -0.85189366 -0.056276433 -0.5206458 -0.85128331 -0.065889761 -0.52049315 -0.82668531\n\t\t -0.18250099 -0.53218174 -0.82668531 -0.18250099 -0.53218174 -0.82570875 -0.19299935\n\t\t -0.52998441 -0.85189366 -0.056276433 -0.5206458 -0.82570875 -0.19299935 -0.52998441\n\t\t -0.82668531 -0.18250099 -0.53218174 -0.79271817 -0.3296307 -0.51271093 -0.79271817\n\t\t -0.3296307 -0.51271093 -0.7931149 -0.33524609 -0.50843835 -0.82570875 -0.19299935\n\t\t -0.52998441 -0.7931149 -0.33524609 -0.50843835 -0.79271817 -0.3296307 -0.51271093\n\t\t -0.74730659 -0.49430856 -0.44404429 -0.74730659 -0.49430856 -0.44404429 -0.74593323\n\t\t -0.50141943 -0.43833733 -0.7931149 -0.33524609 -0.50843835 -0.74593323 -0.50141943\n\t\t -0.43833733 -0.74730659 -0.49430856 -0.44404429 -0.702658 -0.62590432 -0.33832812\n\t\t -0.702658 -0.62590432 -0.33832812 -0.70155931 -0.62916982 -0.33451334 -0.74593323\n\t\t -0.50141943 -0.43833733 -0.70155931 -0.62916982 -0.33451334 -0.702658 -0.62590432\n\t\t -0.33832812 -0.66005409 -0.72365505 -0.20148315;\n\tsetAttr \".n[10956:11121]\" -type \"float3\"  -0.66005409 -0.72365505 -0.20148315 -0.6521498\n\t\t -0.71932143 -0.23923454 -0.70155931 -0.62916982 -0.33451334 -0.6521498 -0.71932143\n\t\t -0.23923454 -0.66005409 -0.72365505 -0.20148315 -0.65385884 -0.74987048 0.10058906\n\t\t -0.65385884 -0.74987048 0.10058906 -0.59794891 -0.80043966 -0.041718744 -0.6521498\n\t\t -0.71932143 -0.23923454 -0.59794891 -0.80043966 -0.041718744 -0.65385884 -0.74987048\n\t\t 0.10058906 -0.6002683 -0.76589268 0.23035377 -0.6002683 -0.76589268 0.23035377 -0.45045292\n\t\t -0.8878141 0.093813963 -0.59794891 -0.80043966 -0.041718744 -0.6742453 -0.35316035\n\t\t 0.64854884 -0.66640204 -0.36674109 0.64912868 -0.68529302 -0.29554141 0.66554767\n\t\t -0.68529302 -0.29554141 0.66554767 -0.6907559 -0.28028214 0.66652423 -0.6742453 -0.35316035\n\t\t 0.64854884 -0.6907559 -0.28028214 0.66652423 -0.68529302 -0.29554141 0.66554767 -0.69847709\n\t\t -0.22153403 0.68044066 -0.69847709 -0.22153403 0.68044066 -0.69856864 -0.22147299\n\t\t 0.68037963 -0.6907559 -0.28028214 0.66652423 -0.91418207 0.3346962 -0.22849211 -0.91418207\n\t\t 0.33832788 -0.22309034 -0.90984845 0.40433946 -0.092867851 -0.90984845 0.40433946\n\t\t -0.092867851 -0.9059726 0.41846952 -0.06369216 -0.91418207 0.3346962 -0.22849211\n\t\t -0.9059726 0.41846952 -0.06369216 -0.90984845 0.40433946 -0.092867851 -0.90386683\n\t\t 0.39970064 0.1524094 -0.90386683 0.39970064 0.1524094 -0.88305318 0.39710662 0.24997708\n\t\t -0.9059726 0.41846952 -0.06369216 -0.88305318 0.39710662 0.24997708 -0.90386683 0.39970064\n\t\t 0.1524094 -0.85702091 0.33890781 0.38807333 -0.85702091 0.33890781 0.38807333 -0.82348108\n\t\t 0.34156293 0.45295569 -0.88305318 0.39710662 0.24997708 -0.73625904 -0.087862968\n\t\t 0.67094946 -0.72487557 -0.098635994 0.68175298 -0.71758163 -0.16052754 0.67766351\n\t\t -0.71758163 -0.16052754 0.67766351 -0.72435677 -0.14957139 0.67296368 -0.73625904\n\t\t -0.087862968 0.67094946 -0.72435677 -0.14957139 0.67296368 -0.71758163 -0.16052754\n\t\t 0.67766351 -0.70101011 -0.2218087 0.67772454 -0.70101011 -0.2218087 0.67772454 -0.70104063\n\t\t -0.22177818 0.67772454 -0.72435677 -0.14957139 0.67296368 -0.70104063 -0.22177818\n\t\t 0.67772454 -0.70101011 -0.2218087 0.67772454 -0.69856864 -0.22147299 0.68037963 -0.69856864\n\t\t -0.22147299 0.68037963 -0.69847709 -0.22153403 0.68044066 -0.70104063 -0.22177818\n\t\t 0.67772454 -0.96896261 -0.21762778 0.11700798 -0.96881002 -0.21903163 0.11584827\n\t\t -0.96682632 -0.23337533 0.10351879 -0.96896261 -0.21762778 0.11700798 -0.96682632\n\t\t -0.23337533 0.10351879 -0.96850485 -0.22791252 0.10016177 -0.96682632 -0.23337533\n\t\t 0.10351879 -0.96633804 -0.23578629 0.10263375 -0.96850485 -0.22791252 0.10016177\n\t\t -0.96682632 -0.23337533 0.10351879 -0.96569711 -0.23822777 0.10315257 -0.96633804\n\t\t -0.23578629 0.10263375 -0.96569711 -0.23822777 0.10315257 -0.96581918 -0.23786154\n\t\t 0.10281687 -0.96633804 -0.23578629 0.10263375 -0.96633804 -0.23578629 0.10263375\n\t\t -0.96917623 -0.23093386 0.085757025 -0.96850485 -0.22791252 0.10016177 -0.96917623\n\t\t -0.23093386 0.085757025 -0.97241122 -0.21921475 0.079653323 -0.96850485 -0.22791252\n\t\t 0.10016177 -0.96917623 -0.23093386 0.085757025 -0.96841329 -0.23487075 0.083346061\n\t\t -0.97241122 -0.21921475 0.079653323 -0.96841329 -0.23487075 0.083346061 -0.96847433\n\t\t -0.23468764 0.083254509 -0.97241122 -0.21921475 0.079653323 -0.96841329 -0.23487075\n\t\t 0.083346061 -0.96853536 -0.23365 0.085360289 -0.96847433 -0.23468764 0.083254509\n\t\t -0.96847433 -0.23468764 0.083254509 -0.96972555 -0.23029298 0.081057176 -0.97241122\n\t\t -0.21921475 0.079653323 -0.97241122 -0.21921475 0.079653323 -0.97064114 -0.22141208\n\t\t 0.093691841 -0.96850485 -0.22791252 0.10016177 -0.97241122 -0.21921475 0.079653323\n\t\t -0.97302157 -0.21720053 0.077608585 -0.97064114 -0.22141208 0.093691841 -0.97241122\n\t\t -0.21921475 0.079653323 -0.97399819 -0.2140266 0.07409896 -0.97302157 -0.21720053\n\t\t 0.077608585 -0.97399819 -0.2140266 0.07409896 -0.97344881 -0.21546097 0.076876141\n\t\t -0.97302157 -0.21720053 0.077608585 -0.42008728 -0.024994858 -0.90710163 -0.42008728\n\t\t -0.024994858 -0.90710163 -0.42008728 -0.024994858 -0.90710163 -0.96792513 0.20255107\n\t\t 0.14844202 -0.97067177 0.18576588 0.15243994 -0.96969515 0.17346692 0.17191075 -0.96969515\n\t\t 0.17346692 0.17191075 -0.96432394 0.20926514 0.16205327 -0.96792513 0.20255107 0.14844202\n\t\t -0.96969515 0.17346692 0.17191075 -0.97067177 0.18576588 0.15243994 -0.97393727 0.16226663\n\t\t 0.15842156 -0.97393727 0.16226663 0.15842156 -0.97289962 0.13751613 0.18573563 -0.96969515\n\t\t 0.17346692 0.17191075 -0.96655178 0.17496233 0.18747519 -0.96969515 0.17346692 0.17191075\n\t\t -0.97289962 0.13751613 0.18573563 -0.97289962 0.13751613 0.18573563 -0.97204506 0.058106959\n\t\t 0.2273629 -0.96655178 0.17496233 0.18747519 -0.96969515 0.17346692 0.17191075 -0.96655178\n\t\t 0.17496233 0.18747519 -0.93874949 0.29761621 0.17349771 -0.93874949 0.29761621 0.17349771\n\t\t -0.96432394 0.20926514 0.16205327 -0.96969515 0.17346692 0.17191075 -0.94225901 0.24585684\n\t\t 0.2272408 -0.96432394 0.20926514 0.16205327 -0.93874949 0.29761621 0.17349771 -0.93874949\n\t\t 0.29761621 0.17349771 -0.93826109 0.25104499 0.23789176 -0.94225901 0.24585684 0.2272408\n\t\t -0.97204506 0.058106959 0.2273629 -0.97289962 0.13751613 0.18573563 -0.95782346 0.14380293\n\t\t 0.24872583 -0.95782346 0.14380293 0.24872583 -0.95547354 0.14450486 0.25720999 -0.97204506\n\t\t 0.058106959 0.2273629 -0.93044835 0.1862542 0.31550035 -0.88674587 0.21170667 0.41090119\n\t\t -0.88076425 0.26139081 0.39481792 -0.88076425 0.26139081 0.39481792 -0.92739654 0.22040442\n\t\t 0.30222476 -0.93044835 0.1862542 0.31550035 -0.95596182 0.16425033 0.24311043 -0.93044835\n\t\t 0.1862542 0.31550035 -0.92739654 0.22040442 0.30222476 -0.92739654 0.22040442 0.30222476\n\t\t -0.95327622 0.1904047 0.23441266 -0.95596182 0.16425033 0.24311043 -0.82125318 0.29596826\n\t\t 0.48774678 -0.88076425 0.26139081 0.39481792 -0.88674587 0.21170667 0.41090119 -0.88674587\n\t\t 0.21170667 0.41090119 -0.82897431 0.23441246 0.50776696 -0.82125318 0.29596826 0.48774678\n\t\t -0.95596182 0.16425033 0.24311043;\n\tsetAttr \".n[11122:11287]\" -type \"float3\"  -0.95327622 0.1904047 0.23441266 -0.96118051\n\t\t 0.18274455 0.20661029 -0.96118051 0.18274455 0.20661029 -0.96389669 0.15802456 0.21420941\n\t\t -0.95596182 0.16425033 0.24311043 -0.95327622 0.1904047 0.23441266 -0.92739654 0.22040442\n\t\t 0.30222476 -0.9226051 0.25394425 0.29029202 -0.9226051 0.25394425 0.29029202 -0.92739654\n\t\t 0.22040442 0.30222476 -0.88076425 0.26139081 0.39481792 -0.9226051 0.25394425 0.29029202\n\t\t -0.94869846 0.21726099 0.22962125 -0.95327622 0.1904047 0.23441266 -0.88076425 0.26139081\n\t\t 0.39481792 -0.87517941 0.30652767 0.37421793 -0.9226051 0.25394425 0.29029202 -0.87517941\n\t\t 0.30652767 0.37421793 -0.88076425 0.26139081 0.39481792 -0.82125318 0.29596826 0.48774678\n\t\t -0.82125318 0.29596826 0.48774678 -0.81661439 0.34675109 0.46137878 -0.87517941 0.30652767\n\t\t 0.37421793 -0.81661439 0.34675109 0.46137878 -0.82125318 0.29596826 0.48774678 -0.74529266\n\t\t 0.32233629 0.58357495 -0.74529266 0.32233629 0.58357495 -0.82125318 0.29596826 0.48774678\n\t\t -0.82897431 0.23441246 0.50776696 -0.74529266 0.32233629 0.58357495 -0.74507898 0.38160324\n\t\t 0.54698324 -0.81661439 0.34675109 0.46137878 -0.63332021 0.41285425 0.65449989 -0.74507898\n\t\t 0.38160324 0.54698324 -0.74529266 0.32233629 0.58357495 -0.74529266 0.32233629 0.58357495\n\t\t -0.63017684 0.34473693 0.69566941 -0.63332021 0.41285425 0.65449989 -0.54109329 0.41505161\n\t\t 0.73137599 -0.63332021 0.41285425 0.65449989 -0.63017684 0.34473693 0.69566941 -0.63017684\n\t\t 0.34473693 0.69566941 -0.5407576 0.35828719 0.76104009 -0.54109329 0.41505161 0.73137599\n\t\t -0.6350292 0.28156361 0.71932125 -0.63017684 0.34473693 0.69566941 -0.74529266 0.32233629\n\t\t 0.58357495 -0.5407576 0.35828719 0.76104009 -0.63017684 0.34473693 0.69566941 -0.6350292\n\t\t 0.28156361 0.71932125 -0.74529266 0.32233629 0.58357495 -0.74953467 0.25815588 0.60951567\n\t\t -0.6350292 0.28156361 0.71932125 -0.82897431 0.23441246 0.50776696 -0.74953467 0.25815588\n\t\t 0.60951567 -0.74529266 0.32233629 0.58357495 -0.6350292 0.28156361 0.71932125 -0.56483668\n\t\t 0.30506289 0.76671654 -0.5407576 0.35828719 0.76104009 -0.56483668 0.30506289 0.76671654\n\t\t -0.5557422 0.30857253 0.77193516 -0.5407576 0.35828719 0.76104009 -0.5557422 0.30857253\n\t\t 0.77193516 -0.52626127 0.3531296 0.77352214 -0.5407576 0.35828719 0.76104009 -0.5557422\n\t\t 0.30857253 0.77193516 -0.57744086 0.31406587 0.75356305 -0.52626127 0.3531296 0.77352214\n\t\t -0.5407576 0.35828719 0.76104009 -0.52626127 0.3531296 0.77352214 -0.53126633 0.40983295\n\t\t 0.74144715 -0.54109329 0.41505161 0.73137599 -0.5407576 0.35828719 0.76104009 -0.53126633\n\t\t 0.40983295 0.74144715 -0.54109329 0.41505161 0.73137599 -0.53126633 0.40983295 0.74144715\n\t\t -0.53132737 0.41358674 0.73934138 -0.54109329 0.41505161 0.73137599 -0.53132737 0.41358674\n\t\t 0.73934138 -0.53141892 0.41349515 0.73931086 -0.95327622 0.1904047 0.23441266 -0.94869846\n\t\t 0.21726099 0.22962125 -0.95733517 0.20734248 0.201178 -0.95733517 0.20734248 0.201178\n\t\t -0.96118051 0.18274455 0.20661029 -0.95327622 0.1904047 0.23441266 -0.51091039 -0.062044349\n\t\t -0.85735649 -0.5110935 -0.062166423 -0.85726494 -0.50633258 -0.059724942 -0.86025572\n\t\t -0.50633258 -0.059724942 -0.86025572 -0.50587481 -0.059053537 -0.86056095 -0.51091039\n\t\t -0.062044349 -0.85735649 -0.5110935 -0.062166423 -0.85726494 -0.51091039 -0.062044349\n\t\t -0.85735649 -0.51570177 -0.065340355 -0.85424358 -0.51570177 -0.065340355 -0.85424358\n\t\t -0.51499987 -0.066622131 -0.85457933 -0.5110935 -0.062166423 -0.85726494 -0.51091039\n\t\t -0.062288497 -0.85735649 -0.5110935 -0.062166423 -0.85726494 -0.51499987 -0.066622131\n\t\t -0.85457933 -0.51499987 -0.066622131 -0.85457933 -0.51301616 -0.067995459 -0.85564744\n\t\t -0.51091039 -0.062288497 -0.85735649 -0.51301616 -0.067995459 -0.85564744 -0.51499987\n\t\t -0.066622131 -0.85457933 -0.51496935 -0.068880498 -0.85439616 -0.51496935 -0.068880498\n\t\t -0.85439616 -0.51441997 -0.067446128 -0.85485399 -0.51301616 -0.067995459 -0.85564744\n\t\t -0.51441997 -0.067446128 -0.85485399 -0.51496935 -0.068880498 -0.85439616 -0.51084936\n\t\t -0.068788946 -0.85686821 -0.51084936 -0.068788946 -0.85686821 -0.51081884 -0.068605833\n\t\t -0.85692924 -0.51441997 -0.067446128 -0.85485399 -0.51081884 -0.068605833 -0.85692924\n\t\t -0.51084936 -0.068788946 -0.85686821 -0.50843835 -0.062349536 -0.85882139 -0.50843835\n\t\t -0.062349536 -0.85882139 -0.50862145 -0.06308198 -0.8586688 -0.51081884 -0.068605833\n\t\t -0.85692924 -0.50862145 -0.06308198 -0.8586688 -0.50843835 -0.062349536 -0.85882139\n\t\t -0.50633258 -0.059724942 -0.86025572 -0.5110935 -0.062166423 -0.85726494 -0.51091039\n\t\t -0.062288497 -0.85735649 -0.50569171 -0.063509241 -0.86034727 -0.50569171 -0.063509241\n\t\t -0.86034727 -0.50633258 -0.059724942 -0.86025572 -0.5110935 -0.062166423 -0.85726494\n\t\t -0.50633258 -0.059724942 -0.86025572 -0.50569171 -0.063509241 -0.86034727 -0.50862145\n\t\t -0.06308198 -0.8586688 -0.20007965 0.96517831 -0.16834018 -0.23889919 0.95553446\n\t\t -0.17273484 -0.24381267 0.95550394 -0.16592921 -0.20209387 0.96469003 -0.16882847\n\t\t -0.20007965 0.96517831 -0.16834018 -0.24381267 0.95550394 -0.16592921 -0.20209387\n\t\t 0.96469003 -0.16882847 -0.24381267 0.95550394 -0.16592921 -0.24274452 0.95590067\n\t\t -0.1652578 -0.24274452 0.95590067 -0.1652578 -0.24381267 0.95550394 -0.16592921 -0.2329786\n\t\t 0.96114987 -0.14783174 -0.2329786 0.96114987 -0.14783174 -0.22800408 0.96252322 -0.14667203\n\t\t -0.24274452 0.95590067 -0.1652578 -0.22800408 0.96252322 -0.14667203 -0.2329786 0.96114987\n\t\t -0.14783174 -0.20661061 0.97024441 -0.12610255 -0.20661061 0.97024441 -0.12610255\n\t\t -0.1993472 0.97173983 -0.12625515 -0.22800408 0.96252322 -0.14667203 -0.1993472 0.97173983\n\t\t -0.12625515 -0.20661061 0.97024441 -0.12610255 -0.15332529 0.98272645 -0.10339678\n\t\t -0.15332529 0.98272645 -0.10339678 -0.14368144 0.98413032 -0.1039156 -0.1993472 0.97173983\n\t\t -0.12625515 -0.14368144 0.98413032 -0.1039156 -0.15332529 0.98272645 -0.10339678\n\t\t -0.11249153 0.99047816 -0.079287164 -0.11249153 0.99047816 -0.079287164 -0.10269509\n\t\t 0.99154633 -0.079226121;\n\tsetAttr \".n[11288:11453]\" -type \"float3\"  -0.14368144 0.98413032 -0.1039156 -0.10269509\n\t\t 0.99154633 -0.079226121 -0.11249153 0.99047816 -0.079287164 -0.073244728 0.99545276\n\t\t -0.06073191 -0.073244728 0.99545276 -0.06073191 -0.064943694 0.99594104 -0.062013686\n\t\t -0.10269509 0.99154633 -0.079226121 -0.064943694 0.99594104 -0.062013686 -0.073244728\n\t\t 0.99545276 -0.06073191 -0.030335708 0.99798578 -0.055696353 -0.030335708 0.99798578\n\t\t -0.055696353 -0.022736598 0.99792475 -0.059724797 -0.064943694 0.99594104 -0.062013686\n\t\t -0.022736598 0.99792475 -0.059724797 -0.030335708 0.99798578 -0.055696353 0.11105655\n\t\t 0.99154645 0.066743903 0.11105655 0.99154645 0.066743903 0.14777033 0.98333693 0.10568552\n\t\t -0.022736598 0.99792475 -0.059724797 0.14777033 0.98333693 0.10568552 0.11105655\n\t\t 0.99154645 0.066743903 0.27701622 0.91894287 0.28067866 0.27701622 0.91894287 0.28067866\n\t\t 0.28858277 0.90987891 0.29795215 0.14777033 0.98333693 0.10568552 0.28858277 0.90987891\n\t\t 0.29795215 0.27701622 0.91894287 0.28067866 0.38547906 0.80416292 0.45240632 0.38547906\n\t\t 0.80416292 0.45240632 0.39716765 0.78539401 0.47471535 0.28858277 0.90987891 0.29795215\n\t\t 0.49974042 0.56996393 0.65221101 0.39716765 0.78539401 0.47471535 0.38547906 0.80416292\n\t\t 0.45240632 0.38547906 0.80416292 0.45240632 0.50733954 0.56782764 0.64815205 0.49974042\n\t\t 0.56996393 0.65221101 0.55259854 0.30082119 0.77721488 0.49974042 0.56996393 0.65221101\n\t\t 0.50733954 0.56782764 0.64815205 0.50733954 0.56782764 0.64815205 0.55162191 0.32615155\n\t\t 0.76766258 0.55259854 0.30082119 0.77721488 0.55259854 0.30082119 0.77721488 0.55162191\n\t\t 0.32615155 0.76766258 0.48283333 0.016510727 0.8755455 0.48283333 0.016510727 0.8755455\n\t\t 0.4672994 -0.035370741 0.88335824 0.55259854 0.30082119 0.77721488 0.4672994 -0.035370741\n\t\t 0.88335824 0.48283333 0.016510727 0.8755455 0.38200024 -0.17978434 0.90646076 0.38200024\n\t\t -0.17978434 0.90646076 0.38145092 -0.18103561 0.90646076 0.4672994 -0.035370741 0.88335824\n\t\t 0.050905056 -0.58851886 0.80684841 0.047944762 -0.58995324 0.8059634 0.064913049\n\t\t -0.58153015 0.81090736 0.064913049 -0.58153015 0.81090736 0.068910971 -0.57948542\n\t\t 0.81203657 0.050905056 -0.58851886 0.80684841 -0.33530661 -0.79888308 0.49931338\n\t\t -0.33350605 -0.8084659 0.48484761 -0.38502127 -0.78237259 0.48945591 -0.38502127\n\t\t -0.78237259 0.48945591 -0.38825625 -0.77965641 0.49125651 -0.33530661 -0.79888308\n\t\t 0.49931338 -0.38825625 -0.77965641 0.49125651 -0.38502127 -0.78237259 0.48945591\n\t\t -0.44679075 -0.79177225 0.41645563 -0.44679075 -0.79177225 0.41645563 -0.44499016\n\t\t -0.79494619 0.41233563 -0.38825625 -0.77965641 0.49125651 -0.44499016 -0.79494619\n\t\t 0.41233563 -0.44679075 -0.79177225 0.41645563 -0.47068673 -0.80233175 0.36698514\n\t\t -0.47068673 -0.80233175 0.36698514 -0.46931341 -0.80486476 0.36313981 -0.44499016\n\t\t -0.79494619 0.41233563 -0.46931341 -0.80486476 0.36313981 -0.47068673 -0.80233175\n\t\t 0.36698514 -0.48564079 -0.81228083 0.32294694 -0.48564079 -0.81228083 0.32294694\n\t\t -0.48380968 -0.81475282 0.3194373 -0.46931341 -0.80486476 0.36313981 -0.48380968\n\t\t -0.81475282 0.3194373 -0.48564079 -0.81228083 0.32294694 -0.48905885 -0.82757062\n\t\t 0.27546012 -0.48905885 -0.82757062 0.27546012 -0.48643425 -0.82982898 0.27332383\n\t\t -0.48380968 -0.81475282 0.3194373 -0.48643425 -0.82982898 0.27332383 -0.48905885\n\t\t -0.82757062 0.27546012 -0.48835692 -0.83983904 0.23691525 -0.48835692 -0.83983904\n\t\t 0.23691525 -0.48728877 -0.84084612 0.23554191 -0.48643425 -0.82982898 0.27332383\n\t\t -0.49580345 -0.84463042 0.20184948 -0.48728877 -0.84084612 0.23554191 -0.48835692\n\t\t -0.83983904 0.23691525 -0.48835692 -0.83983904 0.23691525 -0.49476582 -0.8453629\n\t\t 0.20133066 -0.49580345 -0.84463042 0.20184948 -0.49580345 -0.84463042 0.20184948\n\t\t -0.49476582 -0.8453629 0.20133066 -0.5060882 -0.84270775 0.18353838 -0.49580345 -0.84463042\n\t\t 0.20184948 -0.5060882 -0.84270775 0.18353838 -0.49067631 -0.85207695 0.18216504 -0.49580345\n\t\t -0.84463042 0.20184948 -0.49067631 -0.85207695 0.18216504 -0.47910982 -0.8589741\n\t\t 0.18054757 -0.94225901 0.24585684 0.2272408 -0.93826109 0.25104499 0.23789176 -0.91653192\n\t\t 0.27161446 0.29346594 -0.91653192 0.27161446 0.29346594 -0.91653192 0.2718586 0.29331335\n\t\t -0.94225901 0.24585684 0.2272408 -0.91653192 0.2718586 0.29331335 -0.91653192 0.27161446\n\t\t 0.29346594 -0.86663425 0.32764649 0.37620163 -0.86663425 0.32764649 0.37620163 -0.86663425\n\t\t 0.32810426 0.3758049 -0.91653192 0.2718586 0.29331335 -0.86663425 0.32810426 0.3758049\n\t\t -0.86663425 0.32764649 0.37620163 -0.80813026 0.36393303 0.46305731 -0.80813026 0.36393303\n\t\t 0.46305731 -0.80822182 0.36432976 0.46256903 -0.86663425 0.32810426 0.3758049 -0.80822182\n\t\t 0.36432976 0.46256903 -0.80813026 0.36393303 0.46305731 -0.73363459 0.3953976 0.55262917\n\t\t -0.73363459 0.3953976 0.55262917 -0.7338177 0.39570278 0.55214089 -0.80822182 0.36432976\n\t\t 0.46256903 -0.7338177 0.39570278 0.55214089 -0.73363459 0.3953976 0.55262917 -0.62044144\n\t\t 0.42817456 0.65703291 -0.62044144 0.42817456 0.65703291 -0.62242514 0.42921221 0.65443885\n\t\t -0.7338177 0.39570278 0.55214089 -0.62242514 0.42921221 0.65443885 -0.62044144 0.42817456\n\t\t 0.65703291 -0.48701456 0.53602695 0.68953514 -0.48701456 0.53602695 0.68953514 -0.48420686\n\t\t 0.53407377 0.69298375 -0.62242514 0.42921221 0.65443885 -0.43864271 0.53608805 0.72121334\n\t\t -0.48420686 0.53407377 0.69298375 -0.48701456 0.53602695 0.68953514 -0.48701456 0.53602695\n\t\t 0.68953514 -0.43916154 0.53669846 0.7204504 -0.43864271 0.53608805 0.72121334 -0.43864271\n\t\t 0.53608805 0.72121334 -0.43916154 0.53669846 0.7204504 -0.38532689 0.53178495 0.7541123\n\t\t -0.38532689 0.53178495 0.7541123 -0.39088124 0.53868216 0.74633008 -0.43864271 0.53608805\n\t\t 0.72121334 -0.39088124 0.53868216 0.74633008 -0.38532689 0.53178495 0.7541123 -0.26828837\n\t\t 0.49711597 0.82515937 -0.26828837 0.49711597 0.82515937 -0.31232658 0.52104247 0.79430521\n\t\t -0.39088124 0.53868216 0.74633008;\n\tsetAttr \".n[11454:11619]\" -type \"float3\"  -0.085604548 0.40031132 0.91235083 -0.31232658\n\t\t 0.52104247 0.79430521 -0.26828837 0.49711597 0.82515937 -0.26828837 0.49711597 0.82515937\n\t\t 0.18518619 0.39103377 0.9015168 -0.085604548 0.40031132 0.91235083 -0.12564474 0.15561391\n\t\t 0.97976625 -0.085604548 0.40031132 0.91235083 0.18518619 0.39103377 0.9015168 0.18518619\n\t\t 0.39103377 0.9015168 0.1680959 0.13483089 0.97650075 -0.12564474 0.15561391 0.97976625\n\t\t -0.12564474 0.15561391 0.97976625 0.1680959 0.13483089 0.97650075 -0.28394422 0.046266042\n\t\t 0.95770133 -0.28394422 0.046266042 0.95770133 -0.30893886 0.034638483 0.95043796\n\t\t -0.12564474 0.15561391 0.97976625 -0.30893886 0.034638483 0.95043796 -0.28394422\n\t\t 0.046266042 0.95770133 -0.51139867 -0.058900815 0.85729545 -0.51139867 -0.058900815\n\t\t 0.85729545 -0.48393202 -0.031251039 0.8745079 -0.30893886 0.034638483 0.95043796\n\t\t -0.48393202 -0.031251039 0.8745079 -0.51139867 -0.058900815 0.85729545 -0.64461201\n\t\t 0.25351712 0.7212134 -0.64461201 0.25351712 0.7212134 -0.64229262 0.25705725 0.72203743\n\t\t -0.48393202 -0.031251039 0.8745079 -0.64229262 0.25705725 0.72203743 -0.64461201\n\t\t 0.25351712 0.7212134 -0.75859863 0.23618256 0.60722679 -0.75859863 0.23618256 0.60722679\n\t\t -0.758385 0.23596892 0.60753196 -0.64229262 0.25705725 0.72203743 -0.758385 0.23596892\n\t\t 0.60753196 -0.75859863 0.23618256 0.60722679 -0.83410144 0.21805455 0.50663775 -0.83410144\n\t\t 0.21805455 0.50663775 -0.83400989 0.21787143 0.50688195 -0.758385 0.23596892 0.60753196\n\t\t -0.83400989 0.21787143 0.50688195 -0.83410144 0.21805455 0.50663775 -0.89111 0.19867526\n\t\t 0.40794092 -0.89111 0.19867526 0.40794092 -0.89107949 0.19846162 0.40806299 -0.83400989\n\t\t 0.21787143 0.50688195 -0.89107949 0.19846162 0.40806299 -0.89111 0.19867526 0.40794092\n\t\t -0.93447679 0.17026252 0.31263161 -0.93447679 0.17026252 0.31263161 -0.93450731 0.16995732\n\t\t 0.31266212 -0.89107949 0.19846162 0.40806299 -0.93450731 0.16995732 0.31266212 -0.93447679\n\t\t 0.17026252 0.31263161 -0.95547354 0.14450486 0.25720999 -0.95547354 0.14450486 0.25720999\n\t\t -0.95782346 0.14380293 0.24872583 -0.93450731 0.16995732 0.31266212 -0.60310674 -0.20279574\n\t\t -0.77141637 -0.60258794 -0.20282626 -0.77181309 -0.60341191 -0.17648879 -0.77761161\n\t\t -0.60341191 -0.17648879 -0.77761161 -0.6035645 -0.1763362 -0.77752006 -0.60310674\n\t\t -0.20279574 -0.77141637 -0.6035645 -0.1763362 -0.77752006 -0.60341191 -0.17648879\n\t\t -0.77761161 -0.5995971 -0.1503039 -0.7860347 -0.5995971 -0.1503039 -0.7860347 -0.59950554\n\t\t -0.1503039 -0.78609574 -0.6035645 -0.1763362 -0.77752006 -0.14575669 0.97213656 -0.18353839\n\t\t -0.14645863 0.972045 -0.18344684 -0.139653 0.97369301 -0.17990668 -0.139653 0.97369301\n\t\t -0.17990668 -0.13928677 0.97357088 -0.18082224 -0.14575669 0.97213656 -0.18353839\n\t\t -0.13928677 0.97357088 -0.18082224 -0.139653 0.97369301 -0.17990668 -0.11188115 0.97903371\n\t\t -0.17017128 -0.11188115 0.97903371 -0.17017128 -0.11059938 0.97912526 -0.17044595\n\t\t -0.13928677 0.97357088 -0.18082224 -0.11059938 0.97912526 -0.17044595 -0.11188115\n\t\t 0.97903371 -0.17017128 -0.059450362 0.98541218 -0.15942876 -0.059450362 0.98541218\n\t\t -0.15942876 -0.058138065 0.98535109 -0.16019173 -0.11059938 0.97912526 -0.17044595\n\t\t -0.058138065 0.98535109 -0.16019173 -0.059450362 0.98541218 -0.15942876 -0.024445631\n\t\t 0.9894101 -0.14294878 -0.024445631 0.9894101 -0.14294878 -0.023163855 0.98937958\n\t\t -0.14340656 -0.058138065 0.98535109 -0.16019173 -0.023163855 0.98937958 -0.14340656\n\t\t -0.024445631 0.9894101 -0.14294878 0.0062865065 0.99130225 -0.13135174 0.0062865065\n\t\t 0.99130225 -0.13135174 0.0067442842 0.99133277 -0.13098551 -0.023163855 0.98937958\n\t\t -0.14340656 0.033661611 0.99005097 -0.13644832 0.0067442842 0.99133277 -0.13098551\n\t\t 0.0062865065 0.99130225 -0.13135174 0.0062865065 0.99130225 -0.13135174 0.033570055\n\t\t 0.99014252 -0.13583796 0.033661611 0.99005097 -0.13644832 0.033661611 0.99005097\n\t\t -0.13644832 0.033570055 0.99014252 -0.13583796 0.14877743 0.98849458 -0.026703769\n\t\t 0.14877743 0.98849458 -0.026703769 0.19116765 0.98074287 0.039338283 0.033661611\n\t\t 0.99005097 -0.13644832 0.30259073 0.91668457 0.26096371 0.19116765 0.98074287 0.039338283\n\t\t 0.14877743 0.98849458 -0.026703769 0.14877743 0.98849458 -0.026703769 0.29120731\n\t\t 0.92776281 0.23328342 0.30259073 0.91668457 0.26096371 0.30259073 0.91668457 0.26096371\n\t\t 0.29120731 0.92776281 0.23328342 0.36481801 0.82772321 0.42631301 0.36481801 0.82772321\n\t\t 0.42631301 0.37717801 0.8026675 0.46198913 0.30259073 0.91668457 0.26096371 0.37717801\n\t\t 0.8026675 0.46198913 0.36481801 0.82772321 0.42631301 0.4398936 0.61259824 0.65663618\n\t\t 0.4398936 0.61259824 0.65663618 0.44093126 0.60277128 0.66499823 0.37717801 0.8026675\n\t\t 0.46198913 0.18518619 0.39103377 0.9015168 0.44093126 0.60277128 0.66499823 0.4398936\n\t\t 0.61259824 0.65663618 0.4398936 0.61259824 0.65663618 0.47010699 0.36146143 0.80516982\n\t\t 0.18518619 0.39103377 0.9015168 0.1680959 0.13483089 0.97650075 0.18518619 0.39103377\n\t\t 0.9015168 0.47010699 0.36146143 0.80516982 0.47010699 0.36146143 0.80516982 0.39902949\n\t\t 0.053041358 0.91537219 0.1680959 0.13483089 0.97650075 0.1680959 0.13483089 0.97650075\n\t\t 0.39902949 0.053041358 0.91537219 0.15375236 -0.35410616 0.92245245 0.15375236 -0.35410616\n\t\t 0.92245245 0.17072065 -0.34589666 0.92257452 0.1680959 0.13483089 0.97650075 0.17072065\n\t\t -0.34589666 0.92257452 0.15375236 -0.35410616 0.92245245 0.024537051 -0.55040127\n\t\t 0.83452868 0.024537051 -0.55040127 0.83452868 0.027497351 -0.56541634 0.824305 0.17072065\n\t\t -0.34589666 0.92257452 -0.33582544 -0.80764192 0.48463398 -0.33689359 -0.80617702\n\t\t 0.48634303 -0.35059637 -0.82784516 0.43781859 -0.35059637 -0.82784516 0.43781859\n\t\t -0.35294628 -0.82863861 0.43446156 -0.33582544 -0.80764192 0.48463398 -0.35294628\n\t\t -0.82863861 0.43446156 -0.35059637 -0.82784516 0.43781859 -0.38621145 -0.84240252\n\t\t 0.37574396 -0.38621145 -0.84240252 0.37574396;\n\tsetAttr \".n[11620:11785]\" -type \"float3\"  -0.3856011 -0.84286034 0.3753472 -0.35294628\n\t\t -0.82863861 0.43446156 -0.3856011 -0.84286034 0.3753472 -0.38621145 -0.84240252 0.37574396\n\t\t -0.40528554 -0.85113084 0.33362842 -0.40528554 -0.85113084 0.33362842 -0.40494984\n\t\t -0.85152757 0.33301803 -0.3856011 -0.84286034 0.3753472 -0.40494984 -0.85152757 0.33301803\n\t\t -0.40528554 -0.85113084 0.33362842 -0.41517353 -0.85992014 0.29682308 -0.41517353\n\t\t -0.85992014 0.29682308 -0.41557029 -0.8600117 0.29606012 -0.40494984 -0.85152757\n\t\t 0.33301803 -0.41312879 -0.87350088 0.2574237 -0.41557029 -0.8600117 0.29606012 -0.41517353\n\t\t -0.85992014 0.29682308 -0.41517353 -0.85992014 0.29682308 -0.41306776 -0.8735314\n\t\t 0.25739318 -0.41312879 -0.87350088 0.2574237 -0.41312879 -0.87350088 0.2574237 -0.41306776\n\t\t -0.8735314 0.25739318 -0.4121522 -0.8820461 0.22824799 -0.4121522 -0.8820461 0.22824799\n\t\t -0.41251841 -0.88229024 0.22656947 -0.41312879 -0.87350088 0.2574237 -0.41251841\n\t\t -0.88229024 0.22656947 -0.4121522 -0.8820461 0.22824799 -0.41553977 -0.88311422 0.21771911\n\t\t -0.41553977 -0.88311422 0.21771911 -0.41547871 -0.88314474 0.21771911 -0.41251841\n\t\t -0.88229024 0.22656947 -0.50968963 -0.064241685 -0.85793632 -0.51338238 -0.06619487\n\t\t -0.85558641 -0.50627154 -0.062380053 -0.86010313 -0.50627154 -0.062380053 -0.86010313\n\t\t -0.50318921 -0.060518425 -0.8620258 -0.50968963 -0.064241685 -0.85793632 -0.51338238\n\t\t -0.06619487 -0.85558641 -0.50968963 -0.064241685 -0.85793632 -0.51631212 -0.06729354\n\t\t -0.85372478 -0.51631212 -0.06729354 -0.85372478 -0.52098149 -0.069460347 -0.85070348\n\t\t -0.51338238 -0.06619487 -0.85558641 0.97097695 -0.19843106 -0.1334269 0.97341841\n\t\t -0.18390426 -0.13626513 0.97347945 -0.1836601 -0.13629565 0.97347945 -0.1836601 -0.13629565\n\t\t 0.97097695 -0.19846158 -0.13339639 0.97097695 -0.19843106 -0.1334269 0.97570735 -0.16910277\n\t\t -0.13910335 0.97347945 -0.1836601 -0.13629565 0.97341841 -0.18390426 -0.13626513\n\t\t 0.97341841 -0.18390426 -0.13626513 0.97570735 -0.16910277 -0.13907284 0.97570735\n\t\t -0.16910277 -0.13910335 0.53541648 0.81371522 -0.22620325 0.53541648 0.81371522 -0.22620325\n\t\t 0.53541648 0.81371522 -0.22620325 0.53541648 0.81371522 -0.22620325 0.53541648 0.81371522\n\t\t -0.22620325 0.53541648 0.81371522 -0.22620325 -0.97647029 0.16391464 0.14004943 -0.97347945\n\t\t 0.18359907 0.13629565 -0.973571 0.18304974 0.1363872 -0.973571 0.18304974 0.1363872\n\t\t -0.97647029 0.16391464 0.14004943 -0.97647029 0.16391464 0.14004943 -0.97021401 0.20267314\n\t\t 0.1325724 -0.973571 0.18304974 0.1363872 -0.97347945 0.18359907 0.13629565 -0.97347945\n\t\t 0.18359907 0.13629565 -0.97021401 0.20267314 0.1325724 -0.97021401 0.20267314 0.1325724\n\t\t 0.25174749 -0.96081418 0.11575679 0.25174749 -0.96081418 0.11575679 0.25174749 -0.96081418\n\t\t 0.1157873 0.25174749 -0.96081418 0.1157873 0.25171697 -0.96081418 0.1157873 0.25174749\n\t\t -0.96081418 0.11575679 0.86791605 -0.48527455 -0.10565504 0.93227953 -0.35242745\n\t\t -0.081148684 0.92791539 -0.37220344 0.019043578 0.92791539 -0.37220344 0.019043578\n\t\t 0.85824168 -0.51319903 -0.0045167012 0.86791605 -0.48527455 -0.10565504 0.92791539\n\t\t -0.37220344 0.019043578 0.93227953 -0.35242745 -0.081148684 0.97833192 -0.19623372\n\t\t -0.06576737 0.97833192 -0.19623372 -0.06576737 0.9733879 -0.22601978 0.037263118\n\t\t 0.92791539 -0.37220344 0.019043578 0.9159826 -0.27805388 -0.28916284 0.93227953 -0.35242745\n\t\t -0.081148684 0.86791605 -0.48527455 -0.10565504 0.97833192 -0.19623372 -0.06576737\n\t\t 0.93227953 -0.35242745 -0.081148684 0.9159826 -0.27805388 -0.28916284 0.86791605\n\t\t -0.48527455 -0.10565504 0.85607481 -0.41233534 -0.31156343 0.9159826 -0.27805388\n\t\t -0.28916284 0.9159826 -0.27805388 -0.28916284 0.85607481 -0.41233534 -0.31156343\n\t\t 0.83803838 -0.37479758 -0.39640489 0.83803838 -0.37479758 -0.39640489 0.87917727\n\t\t -0.26139081 -0.39835808 0.9159826 -0.27805388 -0.28916284 0.9159826 -0.27805388 -0.28916284\n\t\t 0.87917727 -0.26139081 -0.39835808 0.91332746 -0.06601128 -0.40180668 0.91332746\n\t\t -0.06601128 -0.40180668 0.95129251 -0.11273511 -0.286874 0.9159826 -0.27805388 -0.28916284\n\t\t 0.9159826 -0.27805388 -0.28916284 0.95129251 -0.11273511 -0.286874 0.97833192 -0.19623372\n\t\t -0.06576737 0.9577319 -0.097231694 -0.27060762 0.95129251 -0.11273511 -0.286874 0.91332746\n\t\t -0.06601128 -0.40180668 0.97833192 -0.19623372 -0.06576737 0.95129251 -0.11273511\n\t\t -0.286874 0.9577319 -0.097231694 -0.27060762 0.91332746 -0.06601128 -0.40180668 0.91149634\n\t\t -0.028961813 -0.4102298 0.9577319 -0.097231694 -0.27060762 0.9756158 -0.21445327\n\t\t 0.046235558 0.9733879 -0.22601978 0.037263118 0.97833192 -0.19623372 -0.06576737\n\t\t 0.97833192 -0.19623372 -0.06576737 0.98120064 -0.18790217 -0.043549899 0.9756158\n\t\t -0.21445327 0.046235558 0.9577319 -0.097231694 -0.27060762 0.98120064 -0.18790217\n\t\t -0.043549899 0.97833192 -0.19623372 -0.06576737 0.65636134 0.74095905 -0.14175853\n\t\t 0.70436698 0.70070523 -0.11334579 0.58384937 0.77187431 -0.25159466 0.58384937 0.77187431\n\t\t -0.25159466 0.48496938 0.82131428 -0.30036324 0.65636134 0.74095905 -0.14175853 0.70436698\n\t\t 0.70070523 -0.11334579 0.65636134 0.74095905 -0.14175853 0.72841561 0.66124481 0.17914361\n\t\t 0.72841561 0.66124481 0.17914361 0.75762182 0.6498614 0.060304526 0.70436698 0.70070523\n\t\t -0.11334579 0.73024672 0.63216066 0.25898001 0.75762182 0.6498614 0.060304526 0.72841561\n\t\t 0.66124481 0.17914361 0.72841561 0.66124481 0.17914361 0.65916908 0.64967823 0.3786431\n\t\t 0.73024672 0.63216066 0.25898001 -0.1213417 0.34620187 -0.93026519 -0.037995644 0.32258058\n\t\t -0.94576859 -0.068605714 0.33188871 -0.94079411 -0.1213417 0.34620187 -0.93026519\n\t\t -0.068605714 0.33188871 -0.94079411 -0.12607206 0.34617135 -0.92962432 -0.13013102\n\t\t 0.3444013 -0.92974639 -0.1213417 0.34620187 -0.93026519 -0.12607206 0.34617135 -0.92962432\n\t\t 0.11200304 -0.3709524 0.9218421 0.11282704 -0.37116602 0.92165899 0.078463197 -0.36136958\n\t\t 0.92910552 0.11200304 -0.3709524 0.9218421 0.078463197 -0.36136958 0.92910552;\n\tsetAttr \".n[11786:11951]\" -type \"float3\"  0.099246301 -0.36747327 0.92471081 0.078463197\n\t\t -0.36136958 0.92910552 0.056428831 -0.35483861 0.93319499 0.099246301 -0.36747327\n\t\t 0.92471081 -0.18701732 -0.34202105 -0.92086548 -0.18701732 -0.34202105 -0.92086548\n\t\t -0.18701732 -0.34202105 -0.92086548 -0.18701732 -0.34202105 -0.92086548 -0.18701732\n\t\t -0.34202105 -0.92086548 -0.18701732 -0.34202105 -0.92086548 -0.18701732 -0.34202105\n\t\t -0.92086548 -0.18701732 -0.34202105 -0.92086548 -0.1869868 -0.34202105 -0.92086548\n\t\t -0.18704784 -0.34199053 -0.92086548 -0.18701732 -0.34202105 -0.92086548 -0.1869868\n\t\t -0.34202105 -0.92086548 -0.18701732 -0.34202105 -0.92086548 -0.18704784 -0.34199053\n\t\t -0.92086548 -0.18704784 -0.34202105 -0.92086548 -0.18704784 -0.34202105 -0.92086548\n\t\t -0.18701732 -0.34202105 -0.92086548 -0.18704784 -0.34202105 -0.92086548 -0.18701732\n\t\t -0.34202105 -0.92086548 -0.18704784 -0.34202105 -0.92086548 -0.18701732 -0.34199053\n\t\t -0.92089599 -0.18704784 -0.34199053 -0.92086548 -0.18701732 -0.34202105 -0.92086548\n\t\t -0.18701732 -0.34199053 -0.92089599 -0.18701732 -0.34202105 -0.92086548 -0.18704784\n\t\t -0.34199053 -0.92086548 -0.18704784 -0.34199053 -0.92086548 -0.18701732 -0.34202105\n\t\t -0.92086548 -0.18701732 -0.34202105 -0.92086548 -0.18704784 -0.34199053 -0.92086548\n\t\t -0.79451895 0.2655718 -0.5460372 -0.79451895 0.2655718 -0.54600668 -0.79451895 0.2655718\n\t\t -0.5460372 -0.79451895 0.2655718 -0.5460372 -0.79448843 0.26560232 -0.54606771 -0.79451895\n\t\t 0.2655718 -0.5460372 -0.9163487 -0.19174811 -0.35145116 -0.9163487 -0.19171759 -0.35145116\n\t\t -0.9163487 -0.19174811 -0.35145116 -0.9163487 -0.19174811 -0.35145116 -0.9163487\n\t\t -0.19174811 -0.35145116 -0.9163487 -0.19174811 -0.35145116 -0.40925339 0.54829538\n\t\t -0.72927034 -0.40925339 0.54829538 -0.72927034 -0.40925339 0.54829538 -0.72927034\n\t\t -0.40925339 0.54829538 -0.72927034 -0.40925339 0.54829538 -0.72930086 -0.40925339\n\t\t 0.54829538 -0.72927034 0.092287801 0.54826498 -0.83117169 0.092257284 0.5482955 -0.83117169\n\t\t 0.092287801 0.54826498 -0.83117169 0.092287801 0.54826498 -0.83117169 0.092287801\n\t\t 0.54823446 -0.83120221 0.092287801 0.54826498 -0.83117169 0.51850939 0.26560268 -0.81273842\n\t\t 0.51850939 0.26554164 -0.81276894 0.51850939 0.26560268 -0.81276894 0.51850939 0.26560268\n\t\t -0.81276894 0.51847887 0.26566371 -0.81273842 0.51850939 0.26560268 -0.81273842 0.70662564\n\t\t -0.19174762 -0.68105108 0.70665616 -0.1917171 -0.68105108 0.70665616 -0.1917171 -0.68105108\n\t\t 0.70665616 -0.1917171 -0.68105108 0.70662564 -0.19174762 -0.68108159 0.70662564 -0.19174762\n\t\t -0.68105108 0.58476532 -0.64909804 -0.48649549 0.58476532 -0.64909804 -0.48649549\n\t\t 0.58476532 -0.64909804 -0.48649549 0.58476532 -0.64909804 -0.48649549 0.58476532\n\t\t -0.64909804 -0.48649549 0.58476532 -0.64909804 -0.48649549 0.1995303 -0.93176055\n\t\t -0.30323184 0.19946925 -0.93179107 -0.30323184 0.1995303 -0.93176055 -0.30323184\n\t\t 0.1995303 -0.93176055 -0.30323184 0.19956082 -0.93176055 -0.30320132 0.1995303 -0.93176055\n\t\t -0.30323184 -0.30201086 -0.93176073 -0.20136105 -0.30194983 -0.93179125 -0.20133053\n\t\t -0.30201086 -0.93176073 -0.20136105 -0.30201086 -0.93176073 -0.20136105 -0.30204138\n\t\t -0.93176073 -0.20142208 -0.30201086 -0.93176073 -0.20136105 -0.7282325 -0.6490984\n\t\t -0.21982478 -0.7282325 -0.6490984 -0.21982478 -0.7282325 -0.6490984 -0.21982478 -0.7282325\n\t\t -0.6490984 -0.21982478 -0.7282325 -0.6490984 -0.21982478 -0.7282325 -0.6490984 -0.21982478\n\t\t -0.83281976 0.55232376 -0.035950843 -0.83281976 0.55232376 -0.035950843 -0.83281976\n\t\t 0.55232376 -0.035950843 -0.83281976 0.55232376 -0.035950843 -0.83281976 0.55232376\n\t\t -0.035950843 -0.83281976 0.55232376 -0.035950843 -0.97997987 -2.8820565e-07 0.19904172\n\t\t -0.97997987 -2.8820565e-07 0.19904172 -0.97997987 -2.8820565e-07 0.19904172 -0.97997987\n\t\t -2.8820565e-07 0.19904172 -0.97997987 -2.8820565e-07 0.19904172 -0.97997987 -2.8820565e-07\n\t\t 0.19904172 -0.36756518 0.89370394 -0.25724056 -0.36756518 0.89370394 -0.25724056\n\t\t -0.36756518 0.89370394 -0.25724056 -0.36756518 0.89370394 -0.25724056 -0.36756518\n\t\t 0.89370394 -0.25724056 -0.36756518 0.89370394 -0.25724056 0.2380441 0.89370412 -0.38026068\n\t\t 0.23807462 0.8936736 -0.38026068 0.23807462 0.8936736 -0.38026068 0.23807462 0.8936736\n\t\t -0.38026068 0.2380441 0.89370412 -0.38026068 0.2380441 0.89370412 -0.38026068 0.75279987\n\t\t 0.55229372 -0.35801268 0.75279987 0.55232424 -0.35801268 0.75279987 0.55232424 -0.35801268\n\t\t 0.75279987 0.55232424 -0.35801268 0.75279987 0.55229372 -0.35801268 0.75279987 0.55229372\n\t\t -0.35801268 0.97997987 2.8820565e-07 -0.19904172 0.97997987 2.8820565e-07 -0.19904172\n\t\t 0.97997987 2.8820565e-07 -0.19904172 0.97997987 2.8820565e-07 -0.19904172 0.97997987\n\t\t 2.8820565e-07 -0.19904172 0.97997987 2.8820565e-07 -0.19904172 0.83281976 -0.55232376\n\t\t 0.035981365 0.83285028 -0.55232376 0.035981365 0.83285028 -0.55232376 0.035981365\n\t\t 0.83285028 -0.55232376 0.035981365 0.83281976 -0.55232376 0.035981365 0.83281976\n\t\t -0.55232376 0.035981365 0.36756518 -0.89370394 0.25724056 0.3675957 -0.89367342 0.25724056\n\t\t 0.36756518 -0.89367342 0.25724056 0.36756518 -0.89367342 0.25724056 0.36753467 -0.89370394\n\t\t 0.25724056 0.36756518 -0.89370394 0.25724056 -0.23807462 -0.8936736 0.38026068 -0.23810513\n\t\t -0.8936736 0.38026068 -0.23807462 -0.8936736 0.38026068 -0.23807462 -0.8936736 0.38026068\n\t\t -0.2380441 -0.8936736 0.38029119 -0.23807462 -0.8936736 0.38026068 -0.75276935 -0.55232424\n\t\t 0.35804319 -0.75279987 -0.55232424 0.35804319 -0.75279987 -0.55232424 0.35804319\n\t\t -0.75279987 -0.55232424 0.35804319 -0.75276935 -0.55235475 0.35807371 -0.75276935\n\t\t -0.55232424 0.35804319 -0.85790563 -0.51374882 -0.0042420346 -0.92800671 -0.37205145\n\t\t 0.019257208 -0.93234032 -0.35224494 -0.081240244 -0.93234032 -0.35224494 -0.081240244\n\t\t -0.86782414 -0.48542768 -0.10586867 -0.85790563 -0.51374882 -0.0042420346 -0.9783318\n\t\t -0.19623432 -0.06576737 -0.93234032 -0.35224494 -0.081240244 -0.92800671 -0.37205145\n\t\t 0.019257208 -0.92800671 -0.37205145 0.019257208 -0.97338778 -0.22602038 0.037263118\n\t\t -0.9783318 -0.19623432 -0.06576737;\n\tsetAttr \".n[11952:12117]\" -type \"float3\"  -0.86782414 -0.48542768 -0.10586867 -0.93234032\n\t\t -0.35224494 -0.081240244 -0.91598248 -0.27805448 -0.28916284 -0.91598248 -0.27805448\n\t\t -0.28916284 -0.93234032 -0.35224494 -0.081240244 -0.9783318 -0.19623432 -0.06576737\n\t\t -0.91598248 -0.27805448 -0.28916284 -0.85607457 -0.41233587 -0.31156343 -0.86782414\n\t\t -0.48542768 -0.10586867 -0.83803815 -0.37479812 -0.39640489 -0.85607457 -0.41233587\n\t\t -0.31156343 -0.91598248 -0.27805448 -0.28916284 -0.91598248 -0.27805448 -0.28916284\n\t\t -0.87917715 -0.26139134 -0.39835808 -0.83803815 -0.37479812 -0.39640489 -0.91332746\n\t\t -0.066011846 -0.40180668 -0.87917715 -0.26139134 -0.39835808 -0.91598248 -0.27805448\n\t\t -0.28916284 -0.91598248 -0.27805448 -0.28916284 -0.9512924 -0.1127357 -0.286874 -0.91332746\n\t\t -0.066011846 -0.40180668 -0.9783318 -0.19623432 -0.06576737 -0.9512924 -0.1127357\n\t\t -0.286874 -0.91598248 -0.27805448 -0.28916284 -0.91332746 -0.066011846 -0.40180668\n\t\t -0.9512924 -0.1127357 -0.286874 -0.95773178 -0.09723229 -0.27060762 -0.95773178 -0.09723229\n\t\t -0.27060762 -0.9512924 -0.1127357 -0.286874 -0.9783318 -0.19623432 -0.06576737 -0.95773178\n\t\t -0.09723229 -0.27060762 -0.91149634 -0.028962376 -0.4102298 -0.91332746 -0.066011846\n\t\t -0.40180668 -0.9783318 -0.19623432 -0.06576737 -0.97338778 -0.22602038 0.037263118\n\t\t -0.97561568 -0.21445386 0.046235558 -0.97561568 -0.21445386 0.046235558 -0.98120052\n\t\t -0.18790276 -0.043549899 -0.9783318 -0.19623432 -0.06576737 -0.9783318 -0.19623432\n\t\t -0.06576737 -0.98120052 -0.18790276 -0.043549899 -0.95773178 -0.09723229 -0.27060762\n\t\t -0.65523261 0.7427898 -0.13739438 -0.66847765 0.71437711 -0.20679349 -0.57014704\n\t\t 0.775231 -0.27182841 -0.57014704 0.775231 -0.27182841 -0.55354494 0.82164967 -0.13565484\n\t\t -0.65523261 0.7427898 -0.13739438 -0.66847765 0.71437711 -0.20679349 -0.65523261\n\t\t 0.7427898 -0.13739438 -0.75667608 0.6510511 0.059236377 -0.75667608 0.6510511 0.059236377\n\t\t -0.72884321 0.66106117 0.17822805 -0.66847765 0.71437711 -0.20679349 -0.72884321\n\t\t 0.66106117 0.17822805 -0.75667608 0.6510511 0.059236377 -0.73024708 0.63216019 0.25898001\n\t\t -0.73024708 0.63216019 0.25898001 -0.65916944 0.64967787 0.3786431 -0.72884321 0.66106117\n\t\t 0.17822805 0.12134149 0.34620193 -0.93026519 0.13013081 0.34440136 -0.92974639 0.12607186\n\t\t 0.34617141 -0.92962432 0.12134149 0.34620193 -0.93026519 0.12607186 0.34617141 -0.92962432\n\t\t 0.068605505 0.33188877 -0.94079411 0.12134149 0.34620193 -0.93026519 0.068605505\n\t\t 0.33188877 -0.94079411 0.037995443 0.32258058 -0.94576859 -0.11236904 -0.36777854\n\t\t 0.92306286 -0.11413912 -0.36964014 0.92211676 -0.1190526 -0.36732075 0.92242193 -0.11236904\n\t\t -0.36777854 0.92306286 -0.1190526 -0.36732075 0.92242193 -0.079286978 -0.36536756\n\t\t 0.92745751 -0.11236904 -0.36777854 0.92306286 -0.079286978 -0.36536756 0.92745751\n\t\t -0.07693705 -0.36527601 0.92770165 0.18701753 -0.34202093 -0.92086548 0.18701753\n\t\t -0.34202093 -0.92086548 0.18701753 -0.34202093 -0.92086548 0.18698701 -0.34202093\n\t\t -0.92086548 0.18701753 -0.34202093 -0.92086548 0.18701753 -0.34202093 -0.92086548\n\t\t 0.18701753 -0.34202093 -0.92086548 0.18698701 -0.34202093 -0.92086548 0.18698701\n\t\t -0.34202093 -0.92086548 0.18704805 -0.34199041 -0.92086548 0.18698701 -0.34202093\n\t\t -0.92086548 0.18701753 -0.34202093 -0.92086548 0.18701753 -0.34202093 -0.92086548\n\t\t 0.18704805 -0.34202093 -0.92086548 0.18704805 -0.34199041 -0.92086548 0.18704805\n\t\t -0.34202093 -0.92086548 0.18704805 -0.34202093 -0.92086548 0.18701753 -0.34202093\n\t\t -0.92086548 0.18701753 -0.34202093 -0.92086548 0.18701753 -0.34199041 -0.92089599\n\t\t 0.18704805 -0.34202093 -0.92086548 0.18704805 -0.34199041 -0.92086548 0.18701753\n\t\t -0.34199041 -0.92089599 0.18701753 -0.34202093 -0.92086548 0.18701753 -0.34202093\n\t\t -0.92086548 0.18704805 -0.34199041 -0.92086548 0.18704805 -0.34199041 -0.92086548\n\t\t 0.18701753 -0.34202093 -0.92086548 0.18704805 -0.34199041 -0.92086548 0.18701753\n\t\t -0.34202093 -0.92086548 0.79451883 0.26557228 -0.5460372 0.79451883 0.26557228 -0.54600668\n\t\t 0.79451883 0.26557228 -0.5460372 0.79451883 0.26557228 -0.5460372 0.79448831 0.2656028\n\t\t -0.54606771 0.79451883 0.26557228 -0.5460372 0.91634881 -0.19174755 -0.35145116 0.91634881\n\t\t -0.19171703 -0.35145116 0.91634881 -0.19174755 -0.35145116 0.91634881 -0.19174755\n\t\t -0.35145116 0.9163183 -0.19174755 -0.35145116 0.91634881 -0.19174755 -0.35145116\n\t\t 0.40925303 0.54829562 -0.72927034 0.40925303 0.54829562 -0.72927034 0.40925303 0.54829562\n\t\t -0.72927034 0.40925303 0.54829562 -0.72927034 0.40925303 0.5482651 -0.72927034 0.40925303\n\t\t 0.54829562 -0.72927034 -0.092288144 0.54826498 -0.83117169 -0.092257626 0.5482955\n\t\t -0.83117169 -0.092288144 0.54826498 -0.83117169 -0.092288144 0.54826498 -0.83117169\n\t\t -0.092288144 0.54823446 -0.83120221 -0.092288144 0.54826498 -0.83117169 -0.51850951\n\t\t 0.26560238 -0.81273842 -0.51850951 0.26557186 -0.81276894 -0.51850951 0.26560238\n\t\t -0.81273842 -0.51850951 0.26560238 -0.81273842 -0.51847899 0.26566342 -0.81273842\n\t\t -0.51850951 0.26560238 -0.81273842 -0.70665604 -0.19174807 -0.68105108 -0.70665604\n\t\t -0.19171755 -0.68105108 -0.70665604 -0.19174807 -0.68105108 -0.70665604 -0.19174807\n\t\t -0.68105108 -0.70662552 -0.19177859 -0.68108159 -0.70665604 -0.19174807 -0.68105108\n\t\t -0.58476496 -0.6490984 -0.48649549 -0.58476496 -0.6490984 -0.48649549 -0.58476496\n\t\t -0.6490984 -0.48649549 -0.58476496 -0.6490984 -0.48649549 -0.58476496 -0.6490984\n\t\t -0.48649549 -0.58476496 -0.6490984 -0.48649549 -0.19952974 -0.93176067 -0.30323184\n\t\t -0.19946869 -0.93179119 -0.30323184 -0.19952974 -0.93176067 -0.30323184 -0.19952974\n\t\t -0.93176067 -0.30323184 -0.19956025 -0.93176067 -0.30320132 -0.19952974 -0.93176067\n\t\t -0.30323184 0.30201146 -0.93176049 -0.20136105 0.30195042 -0.93179101 -0.20133053\n\t\t 0.30201146 -0.93176049 -0.20136105 0.30201146 -0.93176049 -0.20136105 0.30204198\n\t\t -0.93176049 -0.20142208 0.30201146 -0.93176049 -0.20136105 0.72823286 -0.64909792\n\t\t -0.21982478 0.72823286 -0.64909792 -0.21982478 0.72823286 -0.64909792 -0.21982478\n\t\t 0.72823286 -0.64909792 -0.21982478;\n\tsetAttr \".n[12118:12283]\" -type \"float3\"  0.72823286 -0.64909792 -0.21982478 0.72823286\n\t\t -0.64909792 -0.21982478 0.8328194 0.55235475 -0.035950843 0.8328194 0.55232424 -0.035950843\n\t\t 0.8328194 0.55232424 -0.035950843 0.8328194 0.55232424 -0.035950843 0.83278888 0.55235475\n\t\t -0.035950843 0.8328194 0.55235475 -0.035950843 0.97997987 3.1783e-07 0.19904172 0.97997987\n\t\t 3.1783e-07 0.19904172 0.97997987 3.1783e-07 0.19904172 0.97997987 3.1783e-07 0.19904172\n\t\t 0.97997987 3.1783e-07 0.19904172 0.97997987 3.1783e-07 0.19904172 0.36756465 0.89367366\n\t\t -0.25724056 0.36756465 0.89370418 -0.25721005 0.36756465 0.89370418 -0.25721005 0.36756465\n\t\t 0.89370418 -0.25721005 0.36759517 0.89367366 -0.25724056 0.36756465 0.89367366 -0.25724056\n\t\t -0.23807518 0.89367348 -0.38026068 -0.23804466 0.893704 -0.38026068 -0.23804466 0.893704\n\t\t -0.38026068 -0.23804466 0.893704 -0.38026068 -0.23807518 0.89367348 -0.38026068 -0.23807518\n\t\t 0.89367348 -0.38026068 -0.75283074 0.55229324 -0.35801268 -0.75280023 0.55229324\n\t\t -0.35801268 -0.75280023 0.55229324 -0.35801268 -0.75280023 0.55229324 -0.35801268\n\t\t -0.75283074 0.55229324 -0.35801268 -0.75283074 0.55229324 -0.35801268 -0.97997987\n\t\t -3.1783e-07 -0.19904172 -0.97997987 -3.1783e-07 -0.19904172 -0.97997987 -3.1783e-07\n\t\t -0.19904172 -0.97997987 -3.1783e-07 -0.19904172 -0.97997987 -3.1783e-07 -0.19904172\n\t\t -0.97997987 -3.1783e-07 -0.19904172 -0.8328194 -0.55232424 0.035950843 -0.8328194\n\t\t -0.55232424 0.035950843 -0.8328194 -0.55232424 0.035950843 -0.8328194 -0.55232424\n\t\t 0.035950843 -0.8328194 -0.55232424 0.035950843 -0.8328194 -0.55232424 0.035950843\n\t\t -0.36756465 -0.89367366 0.25724056 -0.36753413 -0.89367366 0.25727108 -0.36756465\n\t\t -0.89367366 0.25724056 -0.36756465 -0.89367366 0.25724056 -0.36759517 -0.89367366\n\t\t 0.25721005 -0.36756465 -0.89367366 0.25724056 0.23807518 -0.89367348 0.38026068 0.23804466\n\t\t -0.893704 0.38026068 0.23807518 -0.893704 0.38026068 0.23807518 -0.893704 0.38026068\n\t\t 0.2381057 -0.89367348 0.38029119 0.23807518 -0.89367348 0.38026068 0.75280023 -0.55232376\n\t\t 0.35804319 0.75276971 -0.55235428 0.35804319 0.75276971 -0.55235428 0.35804319 0.75276971\n\t\t -0.55235428 0.35804319 0.75280023 -0.55229324 0.35807371 0.75280023 -0.55232376 0.35804319\n\t\t -0.2765587 -0.093783535 -0.95638907 -0.51484728 -0.082064494 -0.85332805 -0.36823633\n\t\t 0.02859566 -0.92925811 -0.36823633 0.02859566 -0.92925811 -0.14413893 0.049836606\n\t\t -0.98828089 -0.2765587 -0.093783535 -0.95638907 -0.03869744 -0.10086376 -0.99414045\n\t\t -0.2765587 -0.093783535 -0.95638907 -0.14413893 0.049836606 -0.98828089 -0.14413893\n\t\t 0.049836606 -0.98828089 0.34583572 0.068697199 -0.93575853 -0.03869744 -0.10086376\n\t\t -0.99414045 -0.2765587 -0.093783535 -0.95638907 -0.03869744 -0.10086376 -0.99414045\n\t\t 0.32334369 -0.31211278 -0.89330727 0.32334369 -0.31211278 -0.89330727 0.030060815\n\t\t -0.27033302 -0.96227914 -0.2765587 -0.093783535 -0.95638907 -0.51484728 -0.082064494\n\t\t -0.85332805 -0.2765587 -0.093783535 -0.95638907 -0.5356608 -0.20554239 -0.81902522\n\t\t -0.5356608 -0.20554239 -0.81902522 -0.53056425 -0.19513558 -0.82485425 -0.51484728\n\t\t -0.082064494 -0.85332805 0.14362024 -0.4167608 -0.89757985 0.030060815 -0.27033302\n\t\t -0.96227914 0.32334369 -0.31211278 -0.89330727 0.32334369 -0.31211278 -0.89330727\n\t\t 0.30820656 -0.42683184 -0.85015404 0.14362024 -0.4167608 -0.89757985 -0.7762382 -0.22034392\n\t\t -0.59065521 -0.53056425 -0.19513558 -0.82485425 -0.5356608 -0.20554239 -0.81902522\n\t\t -0.5356608 -0.20554239 -0.81902522 -0.80303341 -0.29694536 -0.5166173 -0.7762382\n\t\t -0.22034392 -0.59065521 -0.14413893 0.049836606 -0.98828089 -0.36823633 0.02859566\n\t\t -0.92925811 -0.10977515 0.21808517 -0.96972561 -0.10977515 0.21808517 -0.96972561\n\t\t 0.05871753 0.26551101 -0.96230966 -0.14413893 0.049836606 -0.98828089 0.34583572\n\t\t 0.068697199 -0.93575853 -0.14413893 0.049836606 -0.98828089 0.05871753 0.26551101\n\t\t -0.96230966 0.05871753 0.26551101 -0.96230966 0.32920307 0.29505298 -0.89693898 0.34583572\n\t\t 0.068697199 -0.93575853 0.13464755 0.37046415 -0.9190039 0.05871753 0.26551101 -0.96230966\n\t\t -0.10977515 0.21808517 -0.96972561 -0.10977515 0.21808517 -0.96972561 -0.15204331\n\t\t 0.33997607 -0.92803735 0.13464755 0.37046415 -0.9190039 0.31632423 0.38526568 -0.86687827\n\t\t 0.32920307 0.29505298 -0.89693898 0.05871753 0.26551101 -0.96230966 0.05871753 0.26551101\n\t\t -0.96230966 0.13464755 0.37046415 -0.9190039 0.31632423 0.38526568 -0.86687827 0.59666741\n\t\t -0.27964097 -0.75215918 0.32334369 -0.31211278 -0.89330727 0.66924047 -0.10245048\n\t\t -0.73589283 0.66924047 -0.10245048 -0.73589283 0.66841638 -0.095797442 -0.73757136\n\t\t 0.59666741 -0.27964097 -0.75215918 0.66841638 -0.095797442 -0.73757136 0.66924047\n\t\t -0.10245048 -0.73589283 0.34583572 0.068697199 -0.93575853 0.93380541 -0.20905152\n\t\t -0.29026151 0.93374437 -0.22025181 -0.28205204 0.94180119 -0.094729185 -0.32245857\n\t\t 0.94180119 -0.094729185 -0.32245857 0.94039732 -0.090304002 -0.32782984 0.93380541\n\t\t -0.20905152 -0.29026151 0.94039732 -0.090304002 -0.32782984 0.94180119 -0.094729185\n\t\t -0.32245857 0.87981808 0.012695936 -0.47508162 0.34583572 0.068697199 -0.93575853\n\t\t 0.58299506 0.076784685 -0.80880153 0.66841638 -0.095797442 -0.73757136 0.58299506\n\t\t 0.076784685 -0.80880153 0.34583572 0.068697199 -0.93575853 0.32920307 0.29505298\n\t\t -0.89693898 0.87981808 0.012695936 -0.47508162 0.87081516 0.027680522 -0.49076816\n\t\t 0.94039732 -0.090304002 -0.32782984 0.93374437 -0.22025181 -0.28205204 0.93380541\n\t\t -0.20905152 -0.29026151 0.97067177 -0.23602985 0.045442078 0.97067177 -0.23602985\n\t\t 0.045442078 0.94183183 -0.31699547 0.11142311 0.93374437 -0.22025181 -0.28205204\n\t\t 0.32334369 -0.31211278 -0.89330727 0.59666741 -0.27964097 -0.75215918 0.4659262 -0.41956839\n\t\t -0.7789849 0.4659262 -0.41956839 -0.7789849 0.30820656 -0.42683184 -0.85015404 0.32334369\n\t\t -0.31211278 -0.89330727 0.32920307 0.29505298 -0.89693898 0.57612836 0.2454605 -0.77959532\n\t\t 0.58299506 0.076784685 -0.80880153 0.87081516 0.027680522 -0.49076816 0.87981808\n\t\t 0.012695936 -0.47508162;\n\tsetAttr \".n[12284:12449]\" -type \"float3\"  0.57612836 0.2454605 -0.77959532 0.57612836\n\t\t 0.2454605 -0.77959532 0.32920307 0.29505298 -0.89693898 0.31632423 0.38526568 -0.86687827\n\t\t 0.57612836 0.2454605 -0.77959532 0.69887382 0.18952012 -0.68965727 0.87081516 0.027680522\n\t\t -0.49076816 0.31632423 0.38526568 -0.86687827 0.49058491 0.36576444 -0.79088718 0.57612836\n\t\t 0.2454605 -0.77959532 0.69887382 0.18952012 -0.68965727 0.57612836 0.2454605 -0.77959532\n\t\t 0.49058491 0.36576444 -0.79088718 0.49058491 0.36576444 -0.79088718 0.71629983 0.32834879\n\t\t -0.6156804 0.69887382 0.18952012 -0.68965727 0.38383102 0.88769197 -0.25424975 0.37589622\n\t\t 0.88784462 -0.26529747 0.38813412 0.88750887 -0.24823761 -0.13498363 0.88781387 -0.43989384\n\t\t -0.14081267 0.88305295 -0.44761503 -0.13138245 0.89074361 -0.43507195 -0.13138245\n\t\t 0.89074361 -0.43507195 -0.12530929 0.89553499 -0.426954 -0.13498363 0.88781387 -0.43989384\n\t\t -0.72664583 0.44340315 -0.52470481 -0.61818308 0.61525291 -0.48912022 -0.62181479\n\t\t 0.6018858 -0.50102246 -0.62181479 0.6018858 -0.50102246 -0.7692802 0.36176613 -0.5265969\n\t\t -0.72664583 0.44340315 -0.52470481 -0.85320598 0.084535971 -0.5146336 -0.72664583\n\t\t 0.44340315 -0.52470481 -0.7692802 0.36176613 -0.5265969 -0.7692802 0.36176613 -0.5265969\n\t\t -0.85967588 0.075349897 -0.50523394 -0.85320598 0.084535971 -0.5146336 -0.87743765\n\t\t -0.031525929 -0.47862178 -0.85320598 0.084535971 -0.5146336 -0.85967588 0.075349897\n\t\t -0.50523394 -0.85967588 0.075349897 -0.50523394 -0.87997073 -0.032319408 -0.47386089\n\t\t -0.87743765 -0.031525929 -0.47862178 -0.89638966 -0.05606281 -0.43964964 -0.87743765\n\t\t -0.031525929 -0.47862178 -0.87997073 -0.032319408 -0.47386089 -0.87997073 -0.032319408\n\t\t -0.47386089 -0.8984344 -0.053804446 -0.43574327 -0.89638966 -0.05606281 -0.43964964\n\t\t -0.90957367 -0.089236438 -0.40583515 -0.89638966 -0.05606281 -0.43964964 -0.8984344\n\t\t -0.053804446 -0.43574327 -0.8984344 -0.053804446 -0.43574327 -0.91088593 -0.082125619\n\t\t -0.40433973 -0.90957367 -0.089236438 -0.40583515 0.38813412 0.88750887 -0.24823761\n\t\t 0.39613 0.88708162 -0.23691525 0.38383102 0.88769197 -0.25424975 0.9286781 0.36164463\n\t\t 0.082033724 0.81380641 0.57985193 0.037598759 0.80535275 0.5925476 0.016174765 -0.8619647\n\t\t -0.2572408 -0.43681139 -0.90957367 -0.089236438 -0.40583515 -0.91088593 -0.082125619\n\t\t -0.40433973 -0.91088593 -0.082125619 -0.40433973 -0.7762382 -0.22034392 -0.59065521\n\t\t -0.8619647 -0.2572408 -0.43681139 -0.83715314 -0.31766745 -0.44520399 -0.8619647\n\t\t -0.2572408 -0.43681139 -0.7762382 -0.22034392 -0.59065521 -0.7762382 -0.22034392\n\t\t -0.59065521 -0.80303341 -0.29694536 -0.5166173 -0.83715314 -0.31766745 -0.44520399\n\t\t -0.21518575 -0.85827214 -0.46583447 -0.21759671 -0.85763127 -0.4658955 -0.20358871\n\t\t -0.86123246 -0.46559033 -0.20358871 -0.86123246 -0.46559033 -0.20151345 -0.86175126\n\t\t -0.46552929 -0.21518575 -0.85827214 -0.46583447 0.4620505 -0.85927904 -0.21933647\n\t\t 0.46357644 -0.85857713 -0.21884817 0.45146057 -0.8640399 -0.22266299 0.45146057 -0.8640399\n\t\t -0.22266299 0.44990414 -0.86474186 -0.22312076 0.4620505 -0.85927904 -0.21933647\n\t\t 0.93606377 -0.27030212 0.22507402 0.91946179 -0.33875516 0.19956057 0.94183183 -0.31699547\n\t\t 0.11142311 0.94183183 -0.31699547 0.11142311 0.97067177 -0.23602985 0.045442078 0.93606377\n\t\t -0.27030212 0.22507402 0.95492423 -0.11090394 0.27530748 0.93606377 -0.27030212 0.22507402\n\t\t 0.97067177 -0.23602985 0.045442078 0.97067177 -0.23602985 0.045442078 0.95623654\n\t\t -0.10519698 0.27292702 0.95492423 -0.11090394 0.27530748 0.96768087 -0.073793441\n\t\t 0.24109623 0.95492423 -0.11090394 0.27530748 0.95623654 -0.10519698 0.27292702 0.95623654\n\t\t -0.10519698 0.27292702 0.96774191 -0.072664261 0.24112675 0.96768087 -0.073793441\n\t\t 0.24109623 0.96768087 -0.073793441 0.24109623 0.96774191 -0.072664261 0.24112675\n\t\t 0.97747731 -0.059083518 0.2024598 0.97747731 -0.059083518 0.2024598 0.97860652 -0.058473147\n\t\t 0.19721061 0.96768087 -0.073793441 0.24109623 0.97860652 -0.058473147 0.19721061\n\t\t 0.97747731 -0.059083518 0.2024598 0.9866634 0.040132158 0.15771966 0.9866634 0.040132158\n\t\t 0.15771966 0.98559529 0.046327416 0.16251107 0.97860652 -0.058473147 0.19721061 0.89748824\n\t\t 0.43681169 0.060853872 0.98559529 0.046327416 0.16251107 0.9866634 0.040132158 0.15771966\n\t\t 0.9866634 0.040132158 0.15771966 0.9286781 0.36164463 0.082033724 0.89748824 0.43681169\n\t\t 0.060853872 0.80535275 0.5925476 0.016174765 0.89748824 0.43681169 0.060853872 0.9286781\n\t\t 0.36164463 0.082033724 0.33359787 -0.087710157 -0.93859679 0.26596886 -0.18933682\n\t\t -0.94518876 0.29599908 -0.22385325 -0.92855614 0.29599908 -0.22385325 -0.92855614\n\t\t 0.34113592 -0.091524974 -0.93551439 0.33359787 -0.087710157 -0.93859679 0.34186831\n\t\t 0.053407427 -0.9382 0.33359787 -0.087710157 -0.93859679 0.34113592 -0.091524974 -0.93551439\n\t\t 0.34113592 -0.091524974 -0.93551439 0.33912164 0.051759426 -0.93929869 0.34186831\n\t\t 0.053407427 -0.9382 0.30600902 0.1569567 -0.93899351 0.34186831 0.053407427 -0.9382\n\t\t 0.33912164 0.051759426 -0.93929869 0.33912164 0.051759426 -0.93929869 0.30335394\n\t\t 0.17813656 -0.93606371 0.30600902 0.1569567 -0.93899351 0.31208223 0.22464676 -0.92309338\n\t\t 0.30600902 0.1569567 -0.93899351 0.30335394 0.17813656 -0.93606371 0.30335394 0.17813656\n\t\t -0.93606371 0.31113613 0.2418592 -0.91903442 0.31208223 0.22464676 -0.92309338 0.31870469\n\t\t 0.26129952 -0.91109955 0.31208223 0.22464676 -0.92309338 0.31113613 0.2418592 -0.91903442\n\t\t 0.31113613 0.2418592 -0.91903442 0.32142085 0.27289653 -0.90673542 0.31870469 0.26129952\n\t\t -0.91109955 0.33256012 0.27915284 -0.90078431 0.31870469 0.26129952 -0.91109955 0.32142085\n\t\t 0.27289653 -0.90673542 0.32142085 0.27289653 -0.90673542 0.32981345 0.27976319 -0.90160835\n\t\t 0.33256012 0.27915284 -0.90078431 0.35178676 0.26560265 -0.89757991 0.33256012 0.27915284\n\t\t -0.90078431 0.32981345 0.27976319 -0.90160835 0.32981345 0.27976319 -0.90160835 0.33463538\n\t\t 0.266213 -0.90392774 0.35178676 0.26560265 -0.89757991;\n\tsetAttr \".n[12450:12615]\" -type \"float3\"  0.36494029 0.22602013 -0.90316474 0.35178676\n\t\t 0.26560265 -0.89757991 0.33463538 0.266213 -0.90392774 0.33463538 0.266213 -0.90392774\n\t\t 0.34321108 0.23865478 -0.90841395 0.36494029 0.22602013 -0.90316474 0.3780022 0.15286726\n\t\t -0.91308326 0.36494029 0.22602013 -0.90316474 0.34321108 0.23865478 -0.90841395 0.34321108\n\t\t 0.23865478 -0.90841395 0.3603625 0.17844175 -0.9155553 0.3780022 0.15286726 -0.91308326\n\t\t 0.34424874 0.058717649 -0.93700981 0.3780022 0.15286726 -0.91308326 0.3603625 0.17844175\n\t\t -0.9155553 0.3603625 0.17844175 -0.9155553 0.34134951 0.059297498 -0.93804741 0.34424874\n\t\t 0.058717649 -0.93700981 0.34101385 -0.080111049 -0.93661308 0.34424874 0.058717649\n\t\t -0.93700981 0.34134951 0.059297498 -0.93804741 0.34134951 0.059297498 -0.93804741\n\t\t 0.34812465 -0.082857713 -0.93374431 0.34101385 -0.080111049 -0.93661308 0.38703579\n\t\t -0.19690536 -0.90078431 0.34101385 -0.080111049 -0.93661308 0.34812465 -0.082857713\n\t\t -0.93374431 0.34812465 -0.082857713 -0.93374431 0.38422808 -0.22470772 -0.89544356\n\t\t 0.38703579 -0.19690536 -0.90078431 0.36924353 -0.26233706 -0.89150667 0.38703579\n\t\t -0.19690536 -0.90078431 0.38422808 -0.22470772 -0.89544356 0.38422808 -0.22470772\n\t\t -0.89544356 0.36292621 -0.28519541 -0.8870815 0.36924353 -0.26233706 -0.89150667\n\t\t 0.34900975 -0.29676193 -0.88885158 0.36924353 -0.26233706 -0.89150667 0.36292621\n\t\t -0.28519541 -0.8870815 0.36292621 -0.28519541 -0.8870815 0.33628353 -0.31278417 -0.88827175\n\t\t 0.34900975 -0.29676193 -0.88885158 0.32001719 -0.3184301 -0.89226967 0.34900975 -0.29676193\n\t\t -0.88885158 0.33628353 -0.31278417 -0.88827175 0.33628353 -0.31278417 -0.88827175\n\t\t 0.32294697 -0.31962031 -0.89077425 0.32001719 -0.3184301 -0.89226967 0.28553125 -0.30045471\n\t\t -0.91003144 0.32001719 -0.3184301 -0.89226967 0.32294697 -0.31962031 -0.89077425\n\t\t 0.32294697 -0.31962031 -0.89077425 0.31562251 -0.3059175 -0.89819026 0.28553125 -0.30045471\n\t\t -0.91003144 0.26978371 -0.25971249 -0.92721337 0.28553125 -0.30045471 -0.91003144\n\t\t 0.31562251 -0.3059175 -0.89819026 0.31562251 -0.3059175 -0.89819026 0.30417806 -0.27997679\n\t\t -0.91051972 0.26978371 -0.25971249 -0.92721337 0.26596886 -0.18933682 -0.94518876\n\t\t 0.26978371 -0.25971249 -0.92721337 0.30417806 -0.27997679 -0.91051972 0.30417806\n\t\t -0.27997679 -0.91051972 0.29599908 -0.22385325 -0.92855614 0.26596886 -0.18933682\n\t\t -0.94518876 0.94637901 -0.010376025 -0.32282481 0.94289988 -0.04821898 -0.32953885\n\t\t 0.94183171 -0.048127424 -0.33256021 0.94183171 -0.048127424 -0.33256021 0.94653159\n\t\t -0.0079955813 -0.32245857 0.94637901 -0.010376025 -0.32282481 0.94463944 0.068361729\n\t\t -0.32081056 0.94637901 -0.010376025 -0.32282481 0.94653159 -0.0079955813 -0.32245857\n\t\t 0.94653159 -0.0079955813 -0.32245857 0.94460893 0.065737136 -0.32145146 0.94463944\n\t\t 0.068361729 -0.32081056 0.93093663 0.070742168 -0.35816523 0.94463944 0.068361729\n\t\t -0.32081056 0.94460893 0.065737136 -0.32145146 0.94460893 0.065737136 -0.32145146\n\t\t 0.9301126 0.060304835 -0.36222419 0.93093663 0.070742168 -0.35816523 0.88259536 -0.097842105\n\t\t -0.45979187 0.93093663 0.070742168 -0.35816523 0.9301126 0.060304835 -0.36222419\n\t\t 0.9301126 0.060304835 -0.36222419 0.85964543 -0.1449932 -0.48982209 0.88259536 -0.097842105\n\t\t -0.45979187 0.67836553 -0.3371073 -0.6527909 0.88259536 -0.097842105 -0.45979187\n\t\t 0.85964543 -0.1449932 -0.48982209 0.85964543 -0.1449932 -0.48982209 0.64503932 -0.35685277\n\t\t -0.6756798 0.67836553 -0.3371073 -0.6527909 0.31070906 -0.42674029 -0.84929955 0.67836553\n\t\t -0.3371073 -0.6527909 0.64503932 -0.35685277 -0.6756798 0.64503932 -0.35685277 -0.6756798\n\t\t 0.30710787 -0.42674029 -0.85061187 0.31070906 -0.42674029 -0.84929955 -0.10119927\n\t\t -0.32639554 -0.93978697 0.31070906 -0.42674029 -0.84929955 0.30710787 -0.42674029\n\t\t -0.85061187 0.30710787 -0.42674029 -0.85061187 -0.062196616 -0.345256 -0.93642992\n\t\t -0.10119927 -0.32639554 -0.93978697 -0.3820917 -0.079073645 -0.92071289 -0.10119927\n\t\t -0.32639554 -0.93978697 -0.062196616 -0.345256 -0.93642992 -0.062196616 -0.345256\n\t\t -0.93642992 -0.34189883 -0.12756754 -0.93102819 -0.3820917 -0.079073645 -0.92071289\n\t\t -0.48112434 0.091189094 -0.87188327 -0.3820917 -0.079073645 -0.92071289 -0.34189883\n\t\t -0.12756754 -0.93102819 -0.34189883 -0.12756754 -0.93102819 -0.47846922 0.08011087\n\t\t -0.87441635 -0.48112434 0.091189094 -0.87188327 -0.51576281 0.090548195 -0.85192418\n\t\t -0.48112434 0.091189094 -0.87188327 -0.47846922 0.08011087 -0.87441635 -0.47846922\n\t\t 0.08011087 -0.87441635 -0.51652575 0.08838138 -0.85168004 -0.51576281 0.090548195\n\t\t -0.85192418 -0.51792961 0.0064391815 -0.85537279 -0.51576281 0.090548195 -0.85192418\n\t\t -0.51652575 0.08838138 -0.85168004 -0.51652575 0.08838138 -0.85168004 -0.51734978\n\t\t 0.0095215514 -0.85570848 -0.51792961 0.0064391815 -0.85537279 -0.50907928 -0.03952169\n\t\t -0.85979795 -0.51792961 0.0064391815 -0.85537279 -0.51734978 0.0095215514 -0.85570848\n\t\t -0.51734978 0.0095215514 -0.85570848 -0.5116123 -0.037629541 -0.85836357 -0.50907928\n\t\t -0.03952169 -0.85979795 -0.50480664 0.056153838 -0.86138493 -0.50907928 -0.03952169\n\t\t -0.85979795 -0.5116123 -0.037629541 -0.85836357 -0.5116123 -0.037629541 -0.85836357\n\t\t -0.51042205 0.078401826 -0.85631883 -0.50480664 0.056153838 -0.86138493 -0.49546805\n\t\t 0.19861425 -0.84560686 -0.50480664 0.056153838 -0.86138493 -0.51042205 0.078401826\n\t\t -0.85631883 -0.51042205 0.078401826 -0.85631883 -0.50535607 0.21729158 -0.835078\n\t\t -0.49546805 0.19861425 -0.84560686 -0.081270956 0.53679001 -0.83977789 -0.082522213\n\t\t 0.53346348 -0.84176159 -0.081362508 0.53651536 -0.83993047 -0.081362508 0.53651536\n\t\t -0.83993047 -0.080324881 0.539262 -0.83828247 -0.081270956 0.53679001 -0.83977789\n\t\t 0.60426629 0.53215134 -0.59300524 0.60682988 0.53352469 -0.58909887 0.60444939 0.53224289\n\t\t -0.59273052 0.60444939 0.53224289 -0.59273052 0.60237414 0.53111374 -0.59581292 0.60426629\n\t\t 0.53215134 -0.59300524 0.94405955 0.054689437 -0.3251442 0.943205 0.1706598 -0.28498185\n\t\t 0.93176055 0.17001887 -0.32078004 0.93176055 0.17001887 -0.32078004;\n\tsetAttr \".n[12616:12781]\" -type \"float3\"  0.93560594 0.066774771 -0.34659871 0.94405955\n\t\t 0.054689437 -0.3251442 0.94289988 -0.04821898 -0.32953885 0.94405955 0.054689437\n\t\t -0.3251442 0.93560594 0.066774771 -0.34659871 0.93560594 0.066774771 -0.34659871\n\t\t 0.94183171 -0.048127424 -0.33256021 0.94289988 -0.04821898 -0.32953885 0.34336379\n\t\t -0.076357275 -0.93606371 0.35837892 -0.19400613 -0.91317487 0.36036262 -0.18265325\n\t\t -0.91473126 0.35865358 -0.23895989 -0.90234077 0.36036262 -0.18265325 -0.91473126\n\t\t 0.35837892 -0.19400613 -0.91317487 0.35837892 -0.19400613 -0.91317487 0.36014903\n\t\t -0.24524669 -0.90005189 0.35865358 -0.23895989 -0.90234077 0.35349599 -0.27201143\n\t\t -0.8949858 0.35865358 -0.23895989 -0.90234077 0.36014903 -0.24524669 -0.90005189\n\t\t 0.36014903 -0.24524669 -0.90005189 0.34363851 -0.2810449 -0.89602345 0.35349599 -0.27201143\n\t\t -0.8949858 0.32602933 -0.28852195 -0.900235 0.35349599 -0.27201143 -0.8949858 0.34363851\n\t\t -0.2810449 -0.89602345 0.34363851 -0.2810449 -0.89602345 0.32715851 -0.28861353 -0.89977723\n\t\t 0.32602933 -0.28852195 -0.900235 0.29190964 -0.26941738 -0.91769159 0.32602933 -0.28852195\n\t\t -0.900235 0.32715851 -0.28861353 -0.89977723 0.32715851 -0.28861353 -0.89977723 0.31458488\n\t\t -0.27683336 -0.90795618 0.29190964 -0.26941738 -0.91769159 0.3011567 -0.23972288\n\t\t -0.92291027 0.29190964 -0.26941738 -0.91769159 0.31458488 -0.27683336 -0.90795618\n\t\t 0.31458488 -0.27683336 -0.90795618 0.31015971 -0.24637592 -0.91817987 0.3011567 -0.23972288\n\t\t -0.92291027 0.31009865 -0.1820429 -0.93310344 0.3011567 -0.23972288 -0.92291027 0.31015971\n\t\t -0.24637592 -0.91817987 0.31015971 -0.24637592 -0.91817987 0.3153173 -0.19489117\n\t\t -0.92873931 0.31009865 -0.1820429 -0.93310344 0.33854187 -0.075716384 -0.9378643\n\t\t 0.31009865 -0.1820429 -0.93310344 0.3153173 -0.19489117 -0.92873931 0.3153173 -0.19489117\n\t\t -0.92873931 0.33964053 -0.078127347 -0.93728447 0.33854187 -0.075716384 -0.9378643\n\t\t 0.34275335 0.05169839 -0.93798637 0.33854187 -0.075716384 -0.9378643 0.33964053 -0.078127347\n\t\t -0.93728447 0.33964053 -0.078127347 -0.93728447 0.34250921 0.049440019 -0.9382 0.34275335\n\t\t 0.05169839 -0.93798637 0.31629378 0.14627525 -0.93728447 0.34275335 0.05169839 -0.93798637\n\t\t 0.34250921 0.049440019 -0.9382 0.34250921 0.049440019 -0.9382 0.3171483 0.15857421\n\t\t -0.93499559 0.31629378 0.14627525 -0.93728447 0.31931511 0.20688501 -0.92477185 0.31629378\n\t\t 0.14627525 -0.93728447 0.3171483 0.15857421 -0.93499559 0.3171483 0.15857421 -0.93499559\n\t\t 0.31904045 0.21195108 -0.92370373 0.31931511 0.20688501 -0.92477185 0.32218385 0.23502307\n\t\t -0.9170202 0.31931511 0.20688501 -0.92477185 0.31904045 0.21195108 -0.92370373 0.31904045\n\t\t 0.21195108 -0.92370373 0.3229163 0.23813596 -0.91595203 0.32218385 0.23502307 -0.9170202\n\t\t 0.33265167 0.24619284 -0.9103061 0.32218385 0.23502307 -0.9170202 0.3229163 0.23813596\n\t\t -0.91595203 0.3229163 0.23813596 -0.91595203 0.33210233 0.24607077 -0.91055024 0.33265167\n\t\t 0.24619284 -0.9103061 0.34577465 0.23529774 -0.90832239 0.33265167 0.24619284 -0.9103061\n\t\t 0.33210233 0.24607077 -0.91055024 0.33210233 0.24607077 -0.91055024 0.34083065 0.23541981\n\t\t -0.91015351 0.34577465 0.23529774 -0.90832239 0.35224459 0.20731227 -0.91262549 0.34577465\n\t\t 0.23529774 -0.90832239 0.34083065 0.23541981 -0.91015351 0.34083065 0.23541981 -0.91015351\n\t\t 0.346324 0.2114933 -0.91393781 0.35224459 0.20731227 -0.91262549 0.36191896 0.14505452\n\t\t -0.92083496 0.35224459 0.20731227 -0.91262549 0.346324 0.2114933 -0.91393781 0.346324\n\t\t 0.2114933 -0.91393781 0.3559373 0.15942872 -0.92077392 0.36191896 0.14505452 -0.92083496\n\t\t 0.34064758 0.05209513 -0.93871886 0.36191896 0.14505452 -0.92083496 0.3559373 0.15942872\n\t\t -0.92077392 0.3559373 0.15942872 -0.92077392 0.34018978 0.051789943 -0.93890196 0.34064758\n\t\t 0.05209513 -0.93871886 0.34244823 -0.075716384 -0.93646044 0.34064758 0.05209513\n\t\t -0.93871886 0.34018978 0.051789943 -0.93890196 0.34018978 0.051789943 -0.93890196\n\t\t 0.34336379 -0.076357275 -0.93606371 0.34244823 -0.075716384 -0.93646044 0.36036262\n\t\t -0.18265325 -0.91473126 0.34244823 -0.075716384 -0.93646044 0.34336379 -0.076357275\n\t\t -0.93606371 -0.93841362 -0.051759709 -0.34156317 -0.93871886 -0.044709932 -0.34168524\n\t\t -0.93871886 -0.044862527 -0.34168524 -0.93871886 -0.044862527 -0.34168524 -0.93844414\n\t\t -0.051210377 -0.34156317 -0.93841362 -0.051759709 -0.34156317 -0.93841362 -0.051759709\n\t\t -0.34156317 -0.93844414 -0.051210377 -0.34156317 -0.93356115 -0.11389539 -0.33979309\n\t\t -0.93356115 -0.11389539 -0.33979309 -0.93142486 -0.13208441 -0.33903012 -0.93841362\n\t\t -0.051759709 -0.34156317 -0.92260498 -0.18970336 -0.33576465 -0.93142486 -0.13208441\n\t\t -0.33903012 -0.93356115 -0.11389539 -0.33979309 -0.93356115 -0.11389539 -0.33979309\n\t\t -0.9226355 -0.18967284 -0.33576465 -0.92260498 -0.18970336 -0.33576465 -0.93801689\n\t\t 0.059541296 -0.34141058 -0.93871886 -0.044862527 -0.34168524 -0.93871886 -0.044709932\n\t\t -0.34168524 -0.93871886 -0.044709932 -0.34168524 -0.93630785 0.084841147 -0.34076968\n\t\t -0.93801689 0.059541296 -0.34141058 -0.92312396 0.18692556 -0.33594775 -0.93801689\n\t\t 0.059541296 -0.34141058 -0.93630785 0.084841147 -0.34076968 -0.93630785 0.084841147\n\t\t -0.34076968 -0.92312396 0.18692556 -0.33591723 -0.92312396 0.18692556 -0.33594775\n\t\t -0.69389951 0.67430621 -0.25254074 -0.69389951 0.67433673 -0.25251022 -0.69389951\n\t\t 0.67430621 -0.25254074 -0.69389951 0.67430621 -0.25254074 -0.69389951 0.67430621\n\t\t -0.25257125 -0.69389951 0.67430621 -0.25254074 -0.29529738 0.94930863 -0.10745574\n\t\t -0.29529738 0.94930863 -0.10748626 -0.29529738 0.94930863 -0.10745574 -0.29529738\n\t\t 0.94930863 -0.10745574 -0.29529738 0.94933915 -0.10745574 -0.29529738 0.94930863\n\t\t -0.10745574 0.29804346 0.94833231 0.10846271 0.29804346 0.94836283 0.10846271 0.29804346\n\t\t 0.94836283 0.10846271 0.29804346 0.94836283 0.10846271 0.29804346 0.94833231 0.10846271\n\t\t 0.29804346 0.94833231 0.10846271 0.70442808 0.66182464 0.25638595 0.70442808 0.66182464\n\t\t 0.25638595;\n\tsetAttr \".n[12782:12947]\" -type \"float3\"  0.70442808 0.66182464 0.25638595 0.70442808\n\t\t 0.66182464 0.25638595 0.70442808 0.66182464 0.25638595 0.70442808 0.66182464 0.25638595\n\t\t 0.93926817 0.030274678 0.34180731 0.92776263 0.15878811 0.3376568 0.92776263 0.15881863\n\t\t 0.3376568 0.92776263 0.15881863 0.3376568 0.93823051 0.055818669 0.34144109 0.93926817\n\t\t 0.030274678 0.34180731 0.93725395 -0.071779221 0.34113589 0.93926817 0.030274678\n\t\t 0.34180731 0.93823051 0.055818669 0.34144109 0.93823051 0.055818669 0.34144109 0.93725395\n\t\t -0.071840256 0.34113589 0.93725395 -0.071779221 0.34113589 0.93719292 -0.072725296\n\t\t 0.34110537 0.93725395 -0.071779221 0.34113589 0.93725395 -0.071840256 0.34113589\n\t\t 0.93725395 -0.071840256 0.34113589 0.9371624 -0.072908409 0.34110537 0.93719292 -0.072725296\n\t\t 0.34110537 0.93142498 -0.13214484 0.3389996 0.93719292 -0.072725296 0.34110537 0.9371624\n\t\t -0.072908409 0.34110537 0.9371624 -0.072908409 0.34110537 0.92901403 -0.15018128\n\t\t 0.33811456 0.93142498 -0.13214484 0.3389996 0.91921759 -0.20755607 0.33454394 0.93142498\n\t\t -0.13214484 0.3389996 0.92901403 -0.15018128 0.33811456 0.92901403 -0.15018128 0.33811456\n\t\t 0.91921759 -0.20755607 0.33454394 0.91921759 -0.20755607 0.33454394 0.70061362 -0.66637141\n\t\t 0.25501272 0.70064414 -0.66637141 0.25501272 0.70061362 -0.66637141 0.25501272 0.70061362\n\t\t -0.66637141 0.25501272 0.70061362 -0.66637141 0.25501272 0.70061362 -0.66637141 0.25501272\n\t\t -0.0003353944 -0.99996948 -0.00012199962 0.19116825 -0.97906423 0.069582276 0.19116825\n\t\t -0.97906423 0.069582276 0.19116825 -0.97906423 0.069582276 -0.0003048759 -1 -9.148111e-05\n\t\t -0.0003353944 -0.99996948 -0.00012199962 -0.19180854 -0.97891176 -0.069795758 -0.0003353944\n\t\t -0.99996948 -0.00012199962 -0.0003048759 -1 -9.148111e-05 -0.0003048759 -1 -9.148111e-05\n\t\t -0.19180854 -0.97891176 -0.069795758 -0.19180854 -0.97891176 -0.069795758 -0.70699161\n\t\t -0.65871173 -0.25730148 -0.7069611 -0.65874225 -0.25730148 -0.70702213 -0.65871173\n\t\t -0.25727096 -0.70702213 -0.65871173 -0.25727096 -0.70705265 -0.65868121 -0.25727096\n\t\t -0.70699161 -0.65871173 -0.25730148 0.27655876 -0.093783371 -0.95638907 0.1441389\n\t\t 0.049836695 -0.98828089 0.36823633 0.028595887 -0.92925811 0.36823633 0.028595887\n\t\t -0.92925811 0.51484728 -0.082064182 -0.85332805 0.27655876 -0.093783371 -0.95638907\n\t\t 0.1441389 0.049836695 -0.98828089 0.27655876 -0.093783371 -0.95638907 0.0386975 -0.10086373\n\t\t -0.99414045 0.0386975 -0.10086373 -0.99414045 -0.34583578 0.068696991 -0.93575853\n\t\t 0.1441389 0.049836695 -0.98828089 -0.32334352 -0.31211296 -0.89330727 0.0386975 -0.10086373\n\t\t -0.99414045 0.27655876 -0.093783371 -0.95638907 0.27655876 -0.093783371 -0.95638907\n\t\t -0.030060647 -0.27033302 -0.96227914 -0.32334352 -0.31211296 -0.89330727 0.53566092\n\t\t -0.20554206 -0.81902522 0.27655876 -0.093783371 -0.95638907 0.51484728 -0.082064182\n\t\t -0.85332805 0.51484728 -0.082064182 -0.85332805 0.53056437 -0.19513525 -0.82485425\n\t\t 0.53566092 -0.20554206 -0.81902522 -0.32334352 -0.31211296 -0.89330727 -0.030060647\n\t\t -0.27033302 -0.96227914 -0.14361997 -0.41676086 -0.89757985 -0.14361997 -0.41676086\n\t\t -0.89757985 -0.30820632 -0.42683202 -0.85015404 -0.32334352 -0.31211296 -0.89330727\n\t\t 0.77623832 -0.22034344 -0.59065521 0.80303365 -0.29694489 -0.5166173 0.53566092 -0.20554206\n\t\t -0.81902522 0.53566092 -0.20554206 -0.81902522 0.53056437 -0.19513525 -0.82485425\n\t\t 0.77623832 -0.22034344 -0.59065521 0.10977501 0.21808523 -0.96972561 0.36823633 0.028595887\n\t\t -0.92925811 0.1441389 0.049836695 -0.98828089 0.1441389 0.049836695 -0.98828089 -0.058717694\n\t\t 0.26551095 -0.96230966 0.10977501 0.21808523 -0.96972561 -0.058717694 0.26551095\n\t\t -0.96230966 0.1441389 0.049836695 -0.98828089 -0.34583578 0.068696991 -0.93575853\n\t\t -0.34583578 0.068696991 -0.93575853 -0.32920325 0.2950528 -0.89693898 -0.058717694\n\t\t 0.26551095 -0.96230966 0.10977501 0.21808523 -0.96972561 -0.058717694 0.26551095\n\t\t -0.96230966 -0.13464779 0.37046409 -0.9190039 -0.13464779 0.37046409 -0.9190039 0.1520431\n\t\t 0.33997619 -0.92803735 0.10977501 0.21808523 -0.96972561 -0.31632447 0.3852655 -0.86687827\n\t\t -0.13464779 0.37046409 -0.9190039 -0.058717694 0.26551095 -0.96230966 -0.058717694\n\t\t 0.26551095 -0.96230966 -0.32920325 0.2950528 -0.89693898 -0.31632447 0.3852655 -0.86687827\n\t\t -0.66927087 -0.1024509 -0.73589283 -0.32334352 -0.31211296 -0.89330727 -0.59666729\n\t\t -0.27964133 -0.75215918 -0.59666729 -0.27964133 -0.75215918 -0.66841638 -0.095797859\n\t\t -0.73757136 -0.66927087 -0.1024509 -0.73589283 -0.34583578 0.068696991 -0.93575853\n\t\t -0.66927087 -0.1024509 -0.73589283 -0.66841638 -0.095797859 -0.73757136 -0.94180119\n\t\t -0.094729766 -0.32245857 -0.93374425 -0.22025238 -0.28205204 -0.93380529 -0.20905209\n\t\t -0.29026151 -0.93380529 -0.20905209 -0.29026151 -0.94039732 -0.090304583 -0.32782984\n\t\t -0.94180119 -0.094729766 -0.32245857 -0.87981808 0.012695393 -0.47511214 -0.94180119\n\t\t -0.094729766 -0.32245857 -0.94039732 -0.090304583 -0.32782984 -0.66841638 -0.095797859\n\t\t -0.73757136 -0.58302557 0.076784328 -0.80880153 -0.34583578 0.068696991 -0.93575853\n\t\t -0.32920325 0.2950528 -0.89693898 -0.34583578 0.068696991 -0.93575853 -0.58302557\n\t\t 0.076784328 -0.80880153 -0.94039732 -0.090304583 -0.32782984 -0.87081516 0.027679982\n\t\t -0.49076816 -0.87981808 0.012695393 -0.47511214 -0.97067165 -0.23603044 0.045442078\n\t\t -0.93380529 -0.20905209 -0.29026151 -0.93374425 -0.22025238 -0.28205204 -0.93374425\n\t\t -0.22025238 -0.28205204 -0.94183159 -0.31699607 0.11142311 -0.97067165 -0.23603044\n\t\t 0.045442078 -0.46592596 -0.41956869 -0.7789849 -0.59666729 -0.27964133 -0.75215918\n\t\t -0.32334352 -0.31211296 -0.89330727 -0.32334352 -0.31211296 -0.89330727 -0.30820632\n\t\t -0.42683202 -0.85015404 -0.46592596 -0.41956869 -0.7789849 -0.58302557 0.076784328\n\t\t -0.80880153 -0.57612848 0.24549066 -0.77959532 -0.32920325 0.2950528 -0.89693898\n\t\t -0.57612848 0.24549066 -0.77959532 -0.87981808 0.012695393 -0.47511214 -0.87081516\n\t\t 0.027679982 -0.49076816 -0.31632447 0.3852655 -0.86687827 -0.32920325 0.2950528 -0.89693898\n\t\t -0.57612848 0.24549066 -0.77959532;\n\tsetAttr \".n[12948:13113]\" -type \"float3\"  -0.87081516 0.027679982 -0.49076816 -0.69887394\n\t\t 0.18951967 -0.68962675 -0.57612848 0.24549066 -0.77959532 -0.57612848 0.24549066\n\t\t -0.77959532 -0.49058515 0.36576414 -0.79088718 -0.31632447 0.3852655 -0.86687827\n\t\t -0.49058515 0.36576414 -0.79088718 -0.57612848 0.24549066 -0.77959532 -0.69887394\n\t\t 0.18951967 -0.68962675 -0.69887394 0.18951967 -0.68962675 -0.71630007 0.32834837\n\t\t -0.6156804 -0.49058515 0.36576414 -0.79088718 -0.38813466 0.88750863 -0.24823761\n\t\t -0.37589675 0.88784438 -0.26529747 -0.38383156 0.88769174 -0.25424975 0.13138191\n\t\t 0.89074373 -0.43507195 0.14078161 0.88305306 -0.44761503 0.13498309 0.88781399 -0.43989384\n\t\t 0.13498309 0.88781399 -0.43989384 0.12530872 0.89553511 -0.426954 0.13138191 0.89074373\n\t\t -0.43507195 0.62181443 0.60188615 -0.50102246 0.61818272 0.61525327 -0.48915073 0.72664559\n\t\t 0.44340363 -0.52470481 0.72664559 0.44340363 -0.52470481 0.76927996 0.36176661 -0.5265969\n\t\t 0.62181443 0.60188615 -0.50102246 0.76927996 0.36176661 -0.5265969 0.72664559 0.44340363\n\t\t -0.52470481 0.85320598 0.084536493 -0.5146336 0.85320598 0.084536493 -0.5146336 0.85967588\n\t\t 0.075350434 -0.50523394 0.76927996 0.36176661 -0.5265969 0.85967588 0.075350434 -0.50523394\n\t\t 0.85320598 0.084536493 -0.5146336 0.87743765 -0.031525385 -0.47862178 0.87743765\n\t\t -0.031525385 -0.47862178 0.87997073 -0.032318864 -0.47389141 0.85967588 0.075350434\n\t\t -0.50523394 0.87997073 -0.032318864 -0.47389141 0.87743765 -0.031525385 -0.47862178\n\t\t 0.89638966 -0.056062259 -0.43964964 0.89638966 -0.056062259 -0.43964964 0.8984344\n\t\t -0.053803887 -0.43574327 0.87997073 -0.032318864 -0.47389141 0.8984344 -0.053803887\n\t\t -0.43574327 0.89638966 -0.056062259 -0.43964964 0.90954316 -0.089235872 -0.40583515\n\t\t 0.90954316 -0.089235872 -0.40583515 0.91088593 -0.082125053 -0.40433973 0.8984344\n\t\t -0.053803887 -0.43574327 -0.38383156 0.88769174 -0.25424975 -0.39613053 0.88708138\n\t\t -0.23691525 -0.38813466 0.88750863 -0.24823761 -0.80535311 0.59254712 0.016174765\n\t\t -0.81380677 0.57985145 0.037598759 -0.92867833 0.36164403 0.082033724 0.91088593\n\t\t -0.082125053 -0.40433973 0.90954316 -0.089235872 -0.40583515 0.86196482 -0.25724027\n\t\t -0.43681139 0.86196482 -0.25724027 -0.43681139 0.77623832 -0.22034344 -0.59065521\n\t\t 0.91088593 -0.082125053 -0.40433973 0.77623832 -0.22034344 -0.59065521 0.86196482\n\t\t -0.25724027 -0.43681139 0.83715338 -0.31766692 -0.44520399 0.83715338 -0.31766692\n\t\t -0.44520399 0.80303365 -0.29694489 -0.5166173 0.77623832 -0.22034344 -0.59065521\n\t\t 0.20358925 -0.86123234 -0.46559033 0.21759725 -0.85763115 -0.4658955 0.21518628 -0.85827202\n\t\t -0.46583447 0.21518628 -0.85827202 -0.46583447 0.20151399 -0.86175114 -0.46552929\n\t\t 0.20358925 -0.86123234 -0.46559033 -0.45146003 -0.86404014 -0.22266299 -0.4635759\n\t\t -0.85857737 -0.21884817 -0.46201944 -0.85927927 -0.21933647 -0.46201944 -0.85927927\n\t\t -0.21933647 -0.44990361 -0.8647421 -0.22312076 -0.45146003 -0.86404014 -0.22266299\n\t\t -0.94183159 -0.31699607 0.11142311 -0.91946155 -0.33875576 0.19956057 -0.93606365\n\t\t -0.27030271 0.22507402 -0.93606365 -0.27030271 0.22507402 -0.97067165 -0.23603044\n\t\t 0.045442078 -0.94183159 -0.31699607 0.11142311 -0.97067165 -0.23603044 0.045442078\n\t\t -0.93606365 -0.27030271 0.22507402 -0.95492411 -0.11090454 0.27530748 -0.95492411\n\t\t -0.11090454 0.27530748 -0.95623642 -0.10519758 0.27292702 -0.97067165 -0.23603044\n\t\t 0.045442078 -0.95623642 -0.10519758 0.27292702 -0.95492411 -0.11090454 0.27530748\n\t\t -0.96768087 -0.073794037 0.24109623 -0.96768087 -0.073794037 0.24109623 -0.96774191\n\t\t -0.072664857 0.24112675 -0.95623642 -0.10519758 0.27292702 -0.97747731 -0.059084121\n\t\t 0.2024598 -0.96774191 -0.072664857 0.24112675 -0.96768087 -0.073794037 0.24109623\n\t\t -0.96768087 -0.073794037 0.24109623 -0.97860652 -0.058473751 0.19721061 -0.97747731\n\t\t -0.059084121 0.2024598 -0.9866634 0.040131547 0.15771966 -0.97747731 -0.059084121\n\t\t 0.2024598 -0.97860652 -0.058473751 0.19721061 -0.97860652 -0.058473751 0.19721061\n\t\t -0.98559529 0.046326805 0.16251107 -0.9866634 0.040131547 0.15771966 -0.9866634 0.040131547\n\t\t 0.15771966 -0.98559529 0.046326805 0.16251107 -0.89748847 0.43681115 0.060853872\n\t\t -0.89748847 0.43681115 0.060853872 -0.92867833 0.36164403 0.082033724 -0.9866634\n\t\t 0.040131547 0.15771966 -0.92867833 0.36164403 0.082033724 -0.89748847 0.43681115\n\t\t 0.060853872 -0.80535311 0.59254712 0.016174765 -0.29599896 -0.22385342 -0.92855614\n\t\t -0.26596874 -0.189337 -0.94518876 -0.33359781 -0.087710366 -0.93859679 -0.33359781\n\t\t -0.087710366 -0.93859679 -0.34113586 -0.091525182 -0.93551439 -0.29599896 -0.22385342\n\t\t -0.92855614 -0.34113586 -0.091525182 -0.93551439 -0.33359781 -0.087710366 -0.93859679\n\t\t -0.34186837 0.053407218 -0.9382 -0.34186837 0.053407218 -0.9382 -0.3391217 0.051759217\n\t\t -0.93929869 -0.34113586 -0.091525182 -0.93551439 -0.3391217 0.051759217 -0.93929869\n\t\t -0.34186837 0.053407218 -0.9382 -0.30600914 0.15695652 -0.93899351 -0.30600914 0.15695652\n\t\t -0.93899351 -0.30335405 0.17813638 -0.93606371 -0.3391217 0.051759217 -0.93929869\n\t\t -0.30335405 0.17813638 -0.93606371 -0.30600914 0.15695652 -0.93899351 -0.31208235\n\t\t 0.22464658 -0.92309338 -0.31208235 0.22464658 -0.92309338 -0.31113631 0.24185902\n\t\t -0.91903442 -0.30335405 0.17813638 -0.93606371 -0.31113631 0.24185902 -0.91903442\n\t\t -0.31208235 0.22464658 -0.92309338 -0.31870487 0.26129934 -0.91109955 -0.31870487\n\t\t 0.26129934 -0.91109955 -0.32142103 0.27289635 -0.90673542 -0.31113631 0.24185902\n\t\t -0.91903442 -0.32142103 0.27289635 -0.90673542 -0.31870487 0.26129934 -0.91109955\n\t\t -0.3325603 0.27915266 -0.90078431 -0.3325603 0.27915266 -0.90078431 -0.32981363 0.27976301\n\t\t -0.90160835 -0.32142103 0.27289635 -0.90673542 -0.32981363 0.27976301 -0.90160835\n\t\t -0.3325603 0.27915266 -0.90078431 -0.35178694 0.26560241 -0.89757991 -0.35178694\n\t\t 0.26560241 -0.89757991 -0.33463556 0.26621282 -0.90392774 -0.32981363 0.27976301\n\t\t -0.90160835 -0.33463556 0.26621282 -0.90392774 -0.35178694 0.26560241 -0.89757991\n\t\t -0.3649404 0.22601989 -0.90316474 -0.3649404 0.22601989 -0.90316474;\n\tsetAttr \".n[13114:13279]\" -type \"float3\"  -0.34318069 0.23865457 -0.90841395 -0.33463556\n\t\t 0.26621282 -0.90392774 -0.34318069 0.23865457 -0.90841395 -0.3649404 0.22601989 -0.90316474\n\t\t -0.3779718 0.15286702 -0.91308326 -0.3779718 0.15286702 -0.91308326 -0.3603321 0.17844154\n\t\t -0.9155553 -0.34318069 0.23865457 -0.90841395 -0.3603321 0.17844154 -0.9155553 -0.3779718\n\t\t 0.15286702 -0.91308326 -0.3442488 0.058717433 -0.93700981 -0.3442488 0.058717433\n\t\t -0.93700981 -0.34134957 0.05929729 -0.93804741 -0.3603321 0.17844154 -0.9155553 -0.34134957\n\t\t 0.05929729 -0.93804741 -0.3442488 0.058717433 -0.93700981 -0.34101379 -0.080111258\n\t\t -0.93661308 -0.34101379 -0.080111258 -0.93661308 -0.34812459 -0.082857922 -0.93374431\n\t\t -0.34134957 0.05929729 -0.93804741 -0.34812459 -0.082857922 -0.93374431 -0.34101379\n\t\t -0.080111258 -0.93661308 -0.38700515 -0.1969056 -0.90078431 -0.38700515 -0.1969056\n\t\t -0.90078431 -0.38422796 -0.22470796 -0.89544356 -0.34812459 -0.082857922 -0.93374431\n\t\t -0.38422796 -0.22470796 -0.89544356 -0.38700515 -0.1969056 -0.90078431 -0.36924335\n\t\t -0.2623373 -0.89150667 -0.36924335 -0.2623373 -0.89150667 -0.36292604 -0.28519565\n\t\t -0.8870815 -0.38422796 -0.22470796 -0.89544356 -0.36292604 -0.28519565 -0.8870815\n\t\t -0.36924335 -0.2623373 -0.89150667 -0.34900957 -0.29676217 -0.88885158 -0.34900957\n\t\t -0.29676217 -0.88885158 -0.33628336 -0.31278434 -0.88827175 -0.36292604 -0.28519565\n\t\t -0.8870815 -0.33628336 -0.31278434 -0.88827175 -0.34900957 -0.29676217 -0.88885158\n\t\t -0.32001701 -0.31839976 -0.89226967 -0.32001701 -0.31839976 -0.89226967 -0.32294679\n\t\t -0.31962049 -0.89077425 -0.33628336 -0.31278434 -0.88827175 -0.32294679 -0.31962049\n\t\t -0.89077425 -0.32001701 -0.31839976 -0.89226967 -0.28553107 -0.30045488 -0.91003144\n\t\t -0.28553107 -0.30045488 -0.91003144 -0.31562233 -0.30591768 -0.89819026 -0.32294679\n\t\t -0.31962049 -0.89077425 -0.31562233 -0.30591768 -0.89819026 -0.28553107 -0.30045488\n\t\t -0.91003144 -0.26978353 -0.25971267 -0.92721337 -0.26978353 -0.25971267 -0.92721337\n\t\t -0.30417788 -0.27997696 -0.91051972 -0.31562233 -0.30591768 -0.89819026 -0.30417788\n\t\t -0.27997696 -0.91051972 -0.26978353 -0.25971267 -0.92721337 -0.26596874 -0.189337\n\t\t -0.94518876 -0.26596874 -0.189337 -0.94518876 -0.29599896 -0.22385342 -0.92855614\n\t\t -0.30417788 -0.27997696 -0.91051972 -0.94183171 -0.048128005 -0.33259073 -0.94289988\n\t\t -0.048219562 -0.32953885 -0.94637901 -0.01037661 -0.32279429 -0.94637901 -0.01037661\n\t\t -0.32279429 -0.94653159 -0.0079961661 -0.32242805 -0.94183171 -0.048128005 -0.33259073\n\t\t -0.94653159 -0.0079961661 -0.32242805 -0.94637901 -0.01037661 -0.32279429 -0.94466996\n\t\t 0.068361148 -0.32081056 -0.94466996 0.068361148 -0.32081056 -0.94463944 0.065736555\n\t\t -0.32142094 -0.94653159 -0.0079961661 -0.32242805 -0.94463944 0.065736555 -0.32142094\n\t\t -0.94466996 0.068361148 -0.32081056 -0.93093663 0.070741586 -0.35816523 -0.93093663\n\t\t 0.070741586 -0.35816523 -0.9301126 0.060304262 -0.36222419 -0.94463944 0.065736555\n\t\t -0.32142094 -0.9301126 0.060304262 -0.36222419 -0.93093663 0.070741586 -0.35816523\n\t\t -0.88259524 -0.097842656 -0.45979187 -0.88259524 -0.097842656 -0.45979187 -0.85964531\n\t\t -0.14499374 -0.48985261 -0.9301126 0.060304262 -0.36222419 -0.85964531 -0.14499374\n\t\t -0.48985261 -0.88259524 -0.097842656 -0.45979187 -0.67836529 -0.33710772 -0.6527909\n\t\t -0.67836529 -0.33710772 -0.6527909 -0.64503908 -0.35685319 -0.6756798 -0.85964531\n\t\t -0.14499374 -0.48985261 -0.64503908 -0.35685319 -0.6756798 -0.67836529 -0.33710772\n\t\t -0.6527909 -0.31070882 -0.42674047 -0.84929955 -0.31070882 -0.42674047 -0.84929955\n\t\t -0.30710763 -0.42674047 -0.85061187 -0.64503908 -0.35685319 -0.6756798 -0.30710763\n\t\t -0.42674047 -0.85061187 -0.31070882 -0.42674047 -0.84929955 0.10119948 -0.32639548\n\t\t -0.93978697 0.10119948 -0.32639548 -0.93978697 0.062196832 -0.34525594 -0.93642992\n\t\t -0.30710763 -0.42674047 -0.85061187 0.062196832 -0.34525594 -0.93642992 0.10119948\n\t\t -0.32639548 -0.93978697 0.38206124 -0.079073407 -0.92071289 0.38206124 -0.079073407\n\t\t -0.92071289 0.34189889 -0.12756734 -0.93099767 0.062196832 -0.34525594 -0.93642992\n\t\t 0.34189889 -0.12756734 -0.93099767 0.38206124 -0.079073407 -0.92071289 0.48118532\n\t\t 0.091189392 -0.87185276 0.48118532 0.091189392 -0.87185276 0.47856072 0.080080651\n\t\t -0.87438583 0.34189889 -0.12756734 -0.93099767 0.47856072 0.080080651 -0.87438583\n\t\t 0.48118532 0.091189392 -0.87185276 0.51585436 0.090548508 -0.85186315 0.51585436\n\t\t 0.090548508 -0.85186315 0.5166173 0.088381693 -0.85161901 0.47856072 0.080080651\n\t\t -0.87438583 0.5166173 0.088381693 -0.85161901 0.51585436 0.090548508 -0.85186315\n\t\t 0.51792961 0.0064395019 -0.85537279 0.51792961 0.0064395019 -0.85537279 0.51734978\n\t\t 0.0095218718 -0.85570848 0.5166173 0.088381693 -0.85161901 0.51734978 0.0095218718\n\t\t -0.85570848 0.51792961 0.0064395019 -0.85537279 0.50907928 -0.039521378 -0.85979795\n\t\t 0.50907928 -0.039521378 -0.85979795 0.5116123 -0.037629228 -0.85836357 0.51734978\n\t\t 0.0095218718 -0.85570848 0.5116123 -0.037629228 -0.85836357 0.50907928 -0.039521378\n\t\t -0.85979795 0.50480664 0.056154151 -0.86138493 0.50480664 0.056154151 -0.86138493\n\t\t 0.51042205 0.078402139 -0.85631883 0.5116123 -0.037629228 -0.85836357 0.51042205\n\t\t 0.078402139 -0.85631883 0.50480664 0.056154151 -0.86138493 0.49543741 0.19861455\n\t\t -0.84560686 0.49543741 0.19861455 -0.84560686 0.50535595 0.21729188 -0.835078 0.51042205\n\t\t 0.078402139 -0.85631883 0.081392698 0.53651536 -0.83993047 0.082521886 0.53346348\n\t\t -0.84176159 0.081270628 0.53679001 -0.83977789 0.081270628 0.53679001 -0.83977789\n\t\t 0.080324553 0.539262 -0.83828247 0.081392698 0.53651536 -0.83993047 -0.60444975 0.53224254\n\t\t -0.59273052 -0.60683024 0.53352433 -0.58909887 -0.60426664 0.53215098 -0.59297472\n\t\t -0.60426664 0.53215098 -0.59297472 -0.60237449 0.53111339 -0.59581292 -0.60444975\n\t\t 0.53224254 -0.59273052 -0.93176067 0.1700183 -0.32078004 -0.94320512 0.1706592 -0.28498185\n\t\t -0.94405955 0.054688856 -0.3251442 -0.94405955 0.054688856 -0.3251442 -0.93560594\n\t\t 0.066774189 -0.34659871 -0.93176067 0.1700183 -0.32078004 -0.93560594 0.066774189\n\t\t -0.34659871 -0.94405955 0.054688856 -0.3251442;\n\tsetAttr \".n[13280:13445]\" -type \"float3\"  -0.94289988 -0.048219562 -0.32953885\n\t\t -0.94289988 -0.048219562 -0.32953885 -0.94183171 -0.048128005 -0.33259073 -0.93560594\n\t\t 0.066774189 -0.34659871 -0.3603625 -0.18265346 -0.91473126 -0.3583788 -0.19400634\n\t\t -0.91317487 -0.34336373 -0.076357484 -0.93606371 -0.34336373 -0.076357484 -0.93606371\n\t\t -0.34244817 -0.075716592 -0.93646044 -0.3603625 -0.18265346 -0.91473126 -0.34244817\n\t\t -0.075716592 -0.93646044 -0.34336373 -0.076357484 -0.93606371 -0.34006777 0.051789735\n\t\t -0.938963 -0.34006777 0.051789735 -0.938963 -0.34052557 0.052094921 -0.93877989 -0.34244817\n\t\t -0.075716592 -0.93646044 -0.34052557 0.052094921 -0.93877989 -0.34006777 0.051789735\n\t\t -0.938963 -0.35581535 0.15945904 -0.92083496 -0.35581535 0.15945904 -0.92083496 -0.36182749\n\t\t 0.14505428 -0.92086548 -0.34052557 0.052094921 -0.93877989 -0.36182749 0.14505428\n\t\t -0.92086548 -0.35581535 0.15945904 -0.92083496 -0.3462936 0.21149309 -0.91393781\n\t\t -0.3462936 0.21149309 -0.91393781 -0.3522447 0.20731206 -0.91262549 -0.36182749 0.14505428\n\t\t -0.92086548 -0.3522447 0.20731206 -0.91262549 -0.3462936 0.21149309 -0.91393781 -0.34083077\n\t\t 0.2354196 -0.91015351 -0.34083077 0.2354196 -0.91015351 -0.34577477 0.23529753 -0.90832239\n\t\t -0.3522447 0.20731206 -0.91262549 -0.34577477 0.23529753 -0.90832239 -0.34083077\n\t\t 0.2354196 -0.91015351 -0.33210251 0.24607056 -0.91055024 -0.33210251 0.24607056 -0.91055024\n\t\t -0.33265185 0.24619263 -0.9103061 -0.34577477 0.23529753 -0.90832239 -0.33265185\n\t\t 0.24619263 -0.9103061 -0.33210251 0.24607056 -0.91055024 -0.32291642 0.23813576 -0.91595203\n\t\t -0.32291642 0.23813576 -0.91595203 -0.32218397 0.23502286 -0.9170202 -0.33265185\n\t\t 0.24619263 -0.9103061 -0.32218397 0.23502286 -0.9170202 -0.32291642 0.23813576 -0.91595203\n\t\t -0.31904057 0.21195087 -0.92370373 -0.31904057 0.21195087 -0.92370373 -0.31931522\n\t\t 0.2068848 -0.92477185 -0.32218397 0.23502286 -0.9170202 -0.31931522 0.2068848 -0.92477185\n\t\t -0.31904057 0.21195087 -0.92370373 -0.31714842 0.158574 -0.93499559 -0.31714842 0.158574\n\t\t -0.93499559 -0.3162939 0.14627504 -0.93728447 -0.31931522 0.2068848 -0.92477185 -0.3162939\n\t\t 0.14627504 -0.93728447 -0.31714842 0.158574 -0.93499559 -0.34250927 0.04943981 -0.9382\n\t\t -0.34250927 0.04943981 -0.9382 -0.34275341 0.051698182 -0.93798637 -0.3162939 0.14627504\n\t\t -0.93728447 -0.34275341 0.051698182 -0.93798637 -0.34250927 0.04943981 -0.9382 -0.33964047\n\t\t -0.078127556 -0.93728447 -0.33964047 -0.078127556 -0.93728447 -0.33854181 -0.075716592\n\t\t -0.93789482 -0.34275341 0.051698182 -0.93798637 -0.33854181 -0.075716592 -0.93789482\n\t\t -0.33964047 -0.078127556 -0.93728447 -0.31531718 -0.19489138 -0.92873931 -0.31531718\n\t\t -0.19489138 -0.92873931 -0.31009853 -0.18204308 -0.93310344 -0.33854181 -0.075716592\n\t\t -0.93789482 -0.31009853 -0.18204308 -0.93310344 -0.31531718 -0.19489138 -0.92873931\n\t\t -0.31015953 -0.2463761 -0.91817987 -0.31015953 -0.2463761 -0.91817987 -0.30115658\n\t\t -0.23972306 -0.92291027 -0.31009853 -0.18204308 -0.93310344 -0.30115658 -0.23972306\n\t\t -0.92291027 -0.31015953 -0.2463761 -0.91817987 -0.3145847 -0.27683353 -0.90795618\n\t\t -0.3145847 -0.27683353 -0.90795618 -0.29190946 -0.26941755 -0.91769159 -0.30115658\n\t\t -0.23972306 -0.92291027 -0.29190946 -0.26941755 -0.91769159 -0.3145847 -0.27683353\n\t\t -0.90795618 -0.32715833 -0.28861371 -0.89977723 -0.32715833 -0.28861371 -0.89977723\n\t\t -0.32602915 -0.28852212 -0.900235 -0.29190946 -0.26941755 -0.91769159 -0.32602915\n\t\t -0.28852212 -0.900235 -0.32715833 -0.28861371 -0.89977723 -0.34363833 -0.28104514\n\t\t -0.89602345 -0.34363833 -0.28104514 -0.89602345 -0.35349581 -0.27201167 -0.8949858\n\t\t -0.32602915 -0.28852212 -0.900235 -0.35349581 -0.27201167 -0.8949858 -0.34363833\n\t\t -0.28104514 -0.89602345 -0.36017936 -0.2452469 -0.90005189 -0.36017936 -0.2452469\n\t\t -0.90005189 -0.35865346 -0.2389601 -0.90234077 -0.35349581 -0.27201167 -0.8949858\n\t\t -0.35865346 -0.2389601 -0.90234077 -0.36017936 -0.2452469 -0.90005189 -0.3583788\n\t\t -0.19400634 -0.91317487 -0.3583788 -0.19400634 -0.91317487 -0.3603625 -0.18265346\n\t\t -0.91473126 -0.35865346 -0.2389601 -0.90234077 0.93871886 -0.044861946 -0.34168524\n\t\t 0.93871886 -0.044709351 -0.34168524 0.93841362 -0.051759128 -0.34156317 0.93841362\n\t\t -0.051759128 -0.34156317 0.93844414 -0.051209796 -0.34156317 0.93871886 -0.044861946\n\t\t -0.34168524 0.93844414 -0.051209796 -0.34156317 0.93841362 -0.051759128 -0.34156317\n\t\t 0.93142498 -0.13208385 -0.33903012 0.93142498 -0.13208385 -0.33903012 0.93356127\n\t\t -0.11392533 -0.33979309 0.93844414 -0.051209796 -0.34156317 0.93356127 -0.11392533\n\t\t -0.33979309 0.93142498 -0.13208385 -0.33903012 0.9226051 -0.18973333 -0.33579516\n\t\t 0.9226051 -0.18973333 -0.33579516 0.9226051 -0.18973333 -0.33579516 0.93356127 -0.11392533\n\t\t -0.33979309 0.93871886 -0.044709351 -0.34168524 0.93871886 -0.044861946 -0.34168524\n\t\t 0.93801689 0.059541877 -0.34141058 0.93801689 0.059541877 -0.34141058 0.93627733\n\t\t 0.084841728 -0.34076968 0.93871886 -0.044709351 -0.34168524 0.93627733 0.084841728\n\t\t -0.34076968 0.93801689 0.059541877 -0.34141058 0.92312384 0.18692613 -0.33594775\n\t\t 0.92312384 0.18692613 -0.33594775 0.92312384 0.18692613 -0.33591723 0.93627733 0.084841728\n\t\t -0.34076968 0.69389915 0.67430669 -0.25254074 0.69389915 0.67433721 -0.25251022 0.69389915\n\t\t 0.67430669 -0.25254074 0.69389915 0.67430669 -0.25254074 0.69389915 0.67430669 -0.25257125\n\t\t 0.69389915 0.67430669 -0.25254074 0.29529679 0.94930887 -0.10745574 0.29529679 0.94930887\n\t\t -0.10748626 0.29529679 0.94930887 -0.10745574 0.29529679 0.94930887 -0.10745574 0.29529679\n\t\t 0.94933939 -0.10745574 0.29529679 0.94930887 -0.10745574 -0.29804406 0.94836259 0.10846271\n\t\t -0.29804406 0.94836259 0.10846271 -0.29804406 0.94836259 0.10846271 -0.29804406 0.94836259\n\t\t 0.10846271 -0.29804406 0.94833207 0.10846271 -0.29804406 0.94836259 0.10846271 -0.70442843\n\t\t 0.66182417 0.25638595 -0.70442843 0.66182417 0.25638595 -0.70442843 0.66182417 0.25638595\n\t\t -0.70442843 0.66182417 0.25638595 -0.70442843 0.66182417 0.25638595 -0.70442843 0.66182417\n\t\t 0.25638595;\n\tsetAttr \".n[13446:13611]\" -type \"float3\"  -0.92773223 0.15884858 0.3376568 -0.92773223\n\t\t 0.15884858 0.3376568 -0.93923765 0.030274097 0.34183782 -0.93923765 0.030274097 0.34183782\n\t\t -0.9382 0.055818088 0.34147161 -0.92773223 0.15884858 0.3376568 -0.9382 0.055818088\n\t\t 0.34147161 -0.93923765 0.030274097 0.34183782 -0.93725395 -0.07181032 0.34113589\n\t\t -0.93725395 -0.07181032 0.34113589 -0.93725395 -0.071840838 0.34113589 -0.9382 0.055818088\n\t\t 0.34147161 -0.93725395 -0.071840838 0.34113589 -0.93725395 -0.07181032 0.34113589\n\t\t -0.93719292 -0.072725877 0.34104434 -0.93719292 -0.072725877 0.34104434 -0.93719292\n\t\t -0.07290899 0.34104434 -0.93725395 -0.071840838 0.34113589 -0.93719292 -0.07290899\n\t\t 0.34104434 -0.93719292 -0.072725877 0.34104434 -0.93142486 -0.1321454 0.3389996 -0.93142486\n\t\t -0.1321454 0.3389996 -0.92901391 -0.15018184 0.33811456 -0.93719292 -0.07290899 0.34104434\n\t\t -0.92901391 -0.15018184 0.33811456 -0.93142486 -0.1321454 0.3389996 -0.91921747 -0.20755664\n\t\t 0.33454394 -0.91921747 -0.20755664 0.33454394 -0.91921747 -0.20755664 0.33454394\n\t\t -0.92901391 -0.15018184 0.33811456 -0.70061326 -0.66637188 0.25501272 -0.70064378\n\t\t -0.66637188 0.25501272 -0.70061326 -0.66637188 0.25501272 -0.70061326 -0.66637188\n\t\t 0.25501272 -0.70061326 -0.66637188 0.25501272 -0.70061326 -0.66637188 0.25501272\n\t\t -0.19116765 -0.97906435 0.069582276 -0.19116765 -0.97906435 0.069582276 0.0003360128\n\t\t -0.99996948 -0.00012199962 0.0003360128 -0.99996948 -0.00012199962 0.00030549429\n\t\t -0.99996948 -9.148111e-05 -0.19116765 -0.97906435 0.069582276 0.00030549429 -0.99996948\n\t\t -9.148111e-05 0.0003360128 -0.99996948 -0.00012199962 0.19180913 -0.97891164 -0.069795758\n\t\t 0.19180913 -0.97891164 -0.069795758 0.19180913 -0.97891164 -0.069795758 0.00030549429\n\t\t -0.99996948 -9.148111e-05 0.70702249 -0.65868074 -0.25730148 0.70699197 -0.65871125\n\t\t -0.25730148 0.70699197 -0.65871125 -0.25730148 0.70699197 -0.65871125 -0.25730148\n\t\t 0.70702249 -0.65868074 -0.25730148 0.70702249 -0.65868074 -0.25730148 0.97112948\n\t\t 0.073488884 0.22684409 0.96707052 -0.086611219 0.2392346 0.88283944 -0.086763807\n\t\t 0.46156195 0.88283944 -0.086763807 0.46156195 0.91821045 -0.12497298 0.37580493 0.97112948\n\t\t 0.073488884 0.22684409 0.96111947 -0.11914395 0.24897002 0.97112948 0.073488884 0.22684409\n\t\t 0.91821045 -0.12497298 0.37580493 0.91821045 -0.12497298 0.37580493 0.96954244 0.12692679\n\t\t 0.20938748 0.96111947 -0.11914395 0.24897002 0.9690237 -0.0057066437 0.24680318 0.96707052\n\t\t -0.086611219 0.2392346 0.97112948 0.073488884 0.22684409 0.97112948 0.073488884 0.22684409\n\t\t 0.96609396 0.079928286 0.24536881 0.9690237 -0.0057066437 0.24680318 0.96707052 -0.086611219\n\t\t 0.2392346 0.9690237 -0.0057066437 0.24680318 0.9494614 -0.19370067 0.2469558 0.9494614\n\t\t -0.19370067 0.2469558 0.93893254 -0.24857296 0.23783076 0.96707052 -0.086611219 0.2392346\n\t\t 0.88283944 -0.086763807 0.46156195 0.96707052 -0.086611219 0.2392346 0.93893254 -0.24857296\n\t\t 0.23783076 0.96716207 -0.053346038 0.24845119 0.93893254 -0.24857296 0.23783076 0.9494614\n\t\t -0.19370067 0.2469558 0.9494614 -0.19370067 0.2469558 0.96911526 -0.047242336 0.24198127\n\t\t 0.96716207 -0.053346038 0.24845119 0.93893254 -0.24857296 0.23783076 0.91808832 -0.073854476\n\t\t 0.38935515 0.88283944 -0.086763807 0.46156195 0.91808832 -0.073854476 0.38935515\n\t\t 0.93893254 -0.24857296 0.23783076 0.96716207 -0.053346038 0.24845119 0.96295053 0.092593476\n\t\t 0.25318155 0.9690237 -0.0057066437 0.24680318 0.96609396 0.079928286 0.24536881 0.96609396\n\t\t 0.079928286 0.24536881 0.97619563 -0.14468794 0.16150397 0.96295053 0.092593476 0.25318155\n\t\t 0.96072274 -0.15005919 0.23331402 0.97619563 -0.14468794 0.16150397 0.96609396 0.079928286\n\t\t 0.24536881 0.96609396 0.079928286 0.24536881 0.95931888 -0.12692617 0.25214392 0.96072274\n\t\t -0.15005919 0.23331402 0.95931888 -0.12692617 0.25214392 0.96609396 0.079928286 0.24536881\n\t\t 0.97112948 0.073488884 0.22684409 0.97112948 0.073488884 0.22684409 0.96111947 -0.11914395\n\t\t 0.24897002 0.95931888 -0.12692617 0.25214392 0.96716207 -0.053346038 0.24845119 0.95059055\n\t\t -0.06228796 0.30408642 0.91808832 -0.073854476 0.38935515 -0.14053796 0.74532294\n\t\t -0.65166181 -0.17609201 0.6609087 -0.72948396 -0.2877897 0.52558964 -0.80056161 -0.2877897\n\t\t 0.52558964 -0.80056161 -0.3199257 0.50343317 -0.80260634 -0.14053796 0.74532294 -0.65166181\n\t\t -0.09314277 0.90136409 -0.42286453 -0.17609201 0.6609087 -0.72948396 -0.14053796\n\t\t 0.74532294 -0.65166181 -0.14053796 0.74532294 -0.65166181 -0.089663662 0.91244239\n\t\t -0.39921269 -0.09314277 0.90136409 -0.42286453 -0.138005 0.97689742 -0.16302995 -0.09314277\n\t\t 0.90136409 -0.42286453 -0.089663662 0.91244239 -0.39921269 -0.089663662 0.91244239\n\t\t -0.39921269 -0.12436322 0.97485268 -0.18485069 -0.138005 0.97689742 -0.16302995 -0.18320291\n\t\t 0.98028499 -0.073732793 -0.138005 0.97689742 -0.16302995 -0.12436322 0.97485268 -0.18485069\n\t\t -0.12436322 0.97485268 -0.18485069 -0.1897644 0.97976619 -0.063112348 -0.18320291\n\t\t 0.98028499 -0.073732793 -0.25431103 0.96664321 -0.029816655 -0.18320291 0.98028499\n\t\t -0.073732793 -0.1897644 0.97976619 -0.063112348 -0.1897644 0.97976619 -0.063112348\n\t\t -0.28131992 0.95910513 -0.030732211 -0.25431103 0.96664321 -0.029816655 -0.65752155\n\t\t 0.70397025 0.26844075 -0.7081517 0.65691066 0.25867483 -0.6716516 0.69145769 0.2659077\n\t\t -0.6716516 0.69145769 0.2659077 -0.61207944 0.7411418 0.27573466 -0.65752155 0.70397025\n\t\t 0.26844075 -0.281472 -0.6540423 -0.70210874 -0.43089071 -0.38700539 -0.81517988 -0.39393279\n\t\t -0.42402434 -0.81545454 -0.39393279 -0.42402434 -0.81545454 -0.27210286 -0.60243547\n\t\t -0.750328 -0.281472 -0.6540423 -0.70210874 -0.28080055 -0.84783483 -0.44978175 -0.281472\n\t\t -0.6540423 -0.70210874 -0.27210286 -0.60243547 -0.750328 -0.27210286 -0.60243547\n\t\t -0.750328 -0.27665001 -0.85583067 -0.43702501 -0.28080055 -0.84783483 -0.44978175\n\t\t -0.38056555 -0.90740699 -0.17810595 -0.28080055 -0.84783483 -0.44978175 -0.27665001\n\t\t -0.85583067 -0.43702501 -0.27665001 -0.85583067 -0.43702501;\n\tsetAttr \".n[13612:13777]\" -type \"float3\"  -0.39439043 -0.90676606 -0.14896077 -0.38056555\n\t\t -0.90740699 -0.17810595 -0.42323041 -0.90386683 -0.062349249 -0.38056555 -0.90740699\n\t\t -0.17810595 -0.39439043 -0.90676606 -0.14896077 -0.39439043 -0.90676606 -0.14896077\n\t\t -0.42271161 -0.90411097 -0.062166136 -0.42323041 -0.90386683 -0.062349249 0.71462125\n\t\t 0.62572122 -0.3126927 0.90203547 0.2957246 -0.31440172 0.83535254 0.41035211 -0.36573383\n\t\t 0.83535254 0.41035211 -0.36573383 0.70790714 0.6100347 -0.3559069 0.71462125 0.62572122\n\t\t -0.3126927 0.59337115 0.79464114 -0.12805572 0.71462125 0.62572122 -0.3126927 0.70790714\n\t\t 0.6100347 -0.3559069 0.70790714 0.6100347 -0.3559069 0.61860996 0.77047044 -0.15378283\n\t\t 0.59337115 0.79464114 -0.12805572 0.56657588 0.82329804 0.03363134 0.59337115 0.79464114\n\t\t -0.12805572 0.61860996 0.77047044 -0.15378283 0.61860996 0.77047044 -0.15378283 0.57722688\n\t\t 0.81615669 0.02493356 0.56657588 0.82329804 0.03363134 0.57118416 0.81279963 0.11423072\n\t\t 0.56657588 0.82329804 0.03363134 0.57722688 0.81615669 0.02493356 0.57722688 0.81615669\n\t\t 0.02493356 0.5669421 0.81423402 0.12472909 0.57118416 0.81279963 0.11423072 0.55116403\n\t\t 0.78756082 0.27552104 0.57118416 0.81279963 0.11423072 0.5669421 0.81423402 0.12472909\n\t\t 0.5669421 0.81423402 0.12472909 0.5273596 0.7720269 0.35474709 0.55116403 0.78756082\n\t\t 0.27552104 0.50508112 0.71388924 0.48496959 0.55116403 0.78756082 0.27552104 0.5273596\n\t\t 0.7720269 0.35474709 0.5273596 0.7720269 0.35474709 0.46784854 0.7121191 0.52339238\n\t\t 0.50508112 0.71388924 0.48496959 0.41193911 -0.89959401 0.14493246 0.4140754 -0.90841383\n\t\t 0.057405382 0.41795126 -0.90533149 0.07535027 0.41795126 -0.90533149 0.07535027 0.41315985\n\t\t -0.89895308 0.14535972 0.41193911 -0.89959401 0.14493246 0.47923243 -0.86632884 -0.1405682\n\t\t 0.41795126 -0.90533149 0.07535027 0.4140754 -0.90841383 0.057405382 0.4140754 -0.90841383\n\t\t 0.057405382 0.47846946 -0.86107963 -0.17194122 0.47923243 -0.86632884 -0.1405682\n\t\t 0.61485666 -0.69597441 -0.37079984 0.47923243 -0.86632884 -0.1405682 0.47846946 -0.86107963\n\t\t -0.17194122 0.47846946 -0.86107963 -0.17194122 0.65871167 -0.66063398 -0.36005732\n\t\t 0.61485666 -0.69597441 -0.37079984 0.74245447 -0.56218123 -0.36423838 0.61485666\n\t\t -0.69597441 -0.37079984 0.65871167 -0.66063398 -0.36005732 0.65871167 -0.66063398\n\t\t -0.36005732 0.75408202 -0.58394092 -0.30057678 0.74245447 -0.56218123 -0.36423838\n\t\t 0.84646142 -0.22861385 0.48081914 0.88457912 -0.30860287 0.34965059 0.88503689 -0.32666981\n\t\t 0.33161417 0.88503689 -0.32666981 0.33161417 0.91821045 -0.12497298 0.37580493 0.84646142\n\t\t -0.22861385 0.48081914 0.83019501 -0.078920566 0.55183572 0.84646142 -0.22861385\n\t\t 0.48081914 0.91821045 -0.12497298 0.37580493 0.91821045 -0.12497298 0.37580493 0.88283944\n\t\t -0.086763807 0.46156195 0.83019501 -0.078920566 0.55183572 0.96111947 -0.11914395\n\t\t 0.24897002 0.88503689 -0.32666981 0.33161417 0.88457912 -0.30860287 0.34965059 0.88457912\n\t\t -0.30860287 0.34965059 0.90527064 -0.33490983 0.26133004 0.96111947 -0.11914395 0.24897002\n\t\t 0.96111947 -0.11914395 0.24897002 0.90527064 -0.33490983 0.26133004 0.90350062 -0.34937561\n\t\t 0.24811551 0.90350062 -0.34937561 0.24811551 0.95931888 -0.12692617 0.25214392 0.96111947\n\t\t -0.11914395 0.24897002 0.96072274 -0.15005919 0.23331402 0.95931888 -0.12692617 0.25214392\n\t\t 0.90350062 -0.34937561 0.24811551 0.90350062 -0.34937561 0.24811551 0.92471093 -0.35132879\n\t\t 0.14642784 0.96072274 -0.15005919 0.23331402 0.97619563 -0.14468794 0.16150397 0.96072274\n\t\t -0.15005919 0.23331402 0.92471093 -0.35132879 0.14642784 0.92471093 -0.35132879 0.14642784\n\t\t 0.93249315 -0.35932463 0.036225498 0.97619563 -0.14468794 0.16150397 0.83019501 -0.078920566\n\t\t 0.55183572 0.88283944 -0.086763807 0.46156195 0.91808832 -0.073854476 0.38935515\n\t\t 0.91808832 -0.073854476 0.38935515 0.86159855 0.060762659 0.50389111 0.83019501 -0.078920566\n\t\t 0.55183572 0.91741687 0.13968353 0.37256998 0.86159855 0.060762659 0.50389111 0.91808832\n\t\t -0.073854476 0.38935515 0.91808832 -0.073854476 0.38935515 0.95059055 -0.06228796\n\t\t 0.30408642 0.91741687 0.13968353 0.37256998 0.95217746 0.1707819 0.25324258 0.91741687\n\t\t 0.13968353 0.37256998 0.95059055 -0.06228796 0.30408642 0.95059055 -0.06228796 0.30408642\n\t\t 0.96716207 -0.053346038 0.24845119 0.95217746 0.1707819 0.25324258 0.95602274 0.18509507\n\t\t 0.22736289 0.95217746 0.1707819 0.25324258 0.96716207 -0.053346038 0.24845119 0.96716207\n\t\t -0.053346038 0.24845119 0.96911526 -0.047242336 0.24198127 0.95602274 0.18509507\n\t\t 0.22736289 -0.97112948 0.07345777 0.22684409 -0.91821033 -0.12497355 0.37580493 -0.88283944\n\t\t -0.086764358 0.46156195 -0.88283944 -0.086764358 0.46156195 -0.96707052 -0.086611815\n\t\t 0.23926511 -0.97112948 0.07345777 0.22684409 -0.91821033 -0.12497355 0.37580493 -0.97112948\n\t\t 0.07345777 0.22684409 -0.96111935 -0.11914454 0.24897002 -0.96111935 -0.11914454\n\t\t 0.24897002 -0.96954256 0.1269262 0.20938748 -0.91821033 -0.12497355 0.37580493 -0.97112948\n\t\t 0.07345777 0.22684409 -0.96707052 -0.086611815 0.23926511 -0.9690237 -0.005737761\n\t\t 0.24680318 -0.9690237 -0.005737761 0.24680318 -0.96609396 0.079958215 0.24536881\n\t\t -0.97112948 0.07345777 0.22684409 -0.94946128 -0.19367075 0.2469558 -0.9690237 -0.005737761\n\t\t 0.24680318 -0.96707052 -0.086611815 0.23926511 -0.96707052 -0.086611815 0.23926511\n\t\t -0.93893242 -0.24857353 0.23783076 -0.94946128 -0.19367075 0.2469558 -0.93893242\n\t\t -0.24857353 0.23783076 -0.96707052 -0.086611815 0.23926511 -0.88283944 -0.086764358\n\t\t 0.46156195 -0.94946128 -0.19367075 0.2469558 -0.93893242 -0.24857353 0.23783076 -0.96716207\n\t\t -0.053346634 0.24845119 -0.96716207 -0.053346634 0.24845119 -0.96911526 -0.047242932\n\t\t 0.24198127 -0.94946128 -0.19367075 0.2469558 -0.88283944 -0.086764358 0.46156195\n\t\t -0.91808832 -0.073855042 0.38935515 -0.93893242 -0.24857353 0.23783076 -0.96716207\n\t\t -0.053346634 0.24845119 -0.93893242 -0.24857353 0.23783076;\n\tsetAttr \".n[13778:13943]\" -type \"float3\"  -0.91808832 -0.073855042 0.38935515 -0.96609396\n\t\t 0.079958215 0.24536881 -0.9690237 -0.005737761 0.24680318 -0.96295053 0.09259288\n\t\t 0.25321206 -0.96295053 0.09259288 0.25321206 -0.97619551 -0.14471905 0.16153449 -0.96609396\n\t\t 0.079958215 0.24536881 -0.96609396 0.079958215 0.24536881 -0.97619551 -0.14471905\n\t\t 0.16153449 -0.96072263 -0.15005979 0.23331402 -0.96072263 -0.15005979 0.23331402\n\t\t -0.95931876 -0.12686573 0.25214392 -0.96609396 0.079958215 0.24536881 -0.95931876\n\t\t -0.12686573 0.25214392 -0.96111935 -0.11914454 0.24897002 -0.97112948 0.07345777\n\t\t 0.22684409 -0.97112948 0.07345777 0.22684409 -0.96609396 0.079958215 0.24536881 -0.95931876\n\t\t -0.12686573 0.25214392 -0.91808832 -0.073855042 0.38935515 -0.95059055 -0.062288549\n\t\t 0.30408642 -0.96716207 -0.053346634 0.24845119 0.28781989 0.54127628 -0.79003268\n\t\t 0.30579528 0.54240555 -0.78243363 0.19971293 0.63801998 -0.7436446 0.19971293 0.63801998\n\t\t -0.7436446 0.13422018 0.740318 -0.65868104 0.28781989 0.54127628 -0.79003268 0.13422018\n\t\t 0.740318 -0.65868104 0.19971293 0.63801998 -0.7436446 0.093142219 0.90136409 -0.42286453\n\t\t 0.093142219 0.90136409 -0.42286453 0.089663096 0.91244239 -0.39921269 0.13422018\n\t\t 0.740318 -0.65868104 0.089663096 0.91244239 -0.39921269 0.093142219 0.90136409 -0.42286453\n\t\t 0.13800441 0.97689754 -0.16302995 0.13800441 0.97689754 -0.16302995 0.12436263 0.9748528\n\t\t -0.18485069 0.089663096 0.91244239 -0.39921269 0.12436263 0.9748528 -0.18485069 0.13800441\n\t\t 0.97689754 -0.16302995 0.18320231 0.98028511 -0.073732793 0.18320231 0.98028511 -0.073732793\n\t\t 0.1897638 0.97976631 -0.063112348 0.12436263 0.9748528 -0.18485069 0.1897638 0.97976631\n\t\t -0.063112348 0.18320231 0.98028511 -0.073732793 0.25431043 0.96664333 -0.029816655\n\t\t 0.25431043 0.96664333 -0.029816655 0.28134984 0.95910525 -0.030732211 0.1897638 0.97976631\n\t\t -0.063112348 0.67168164 0.69145805 0.2659077 0.70815134 0.65691113 0.25867483 0.65752107\n\t\t 0.70394009 0.26847127 0.65752107 0.70394009 0.26847127 0.61210948 0.74111164 0.27573466\n\t\t 0.67168164 0.69145805 0.2659077 0.39393303 -0.42402411 -0.81545454 0.43089095 -0.38697463\n\t\t -0.81517988 0.28147241 -0.65404218 -0.70210874 0.28147241 -0.65404218 -0.70210874\n\t\t 0.27210322 -0.60243535 -0.750328 0.39393303 -0.42402411 -0.81545454 0.27210322 -0.60243535\n\t\t -0.750328 0.28147241 -0.65404218 -0.70210874 0.28080109 -0.84783471 -0.44978175 0.28080109\n\t\t -0.84783471 -0.44978175 0.27665055 -0.85583055 -0.43702501 0.27210322 -0.60243535\n\t\t -0.750328 0.27665055 -0.85583055 -0.43702501 0.28080109 -0.84783471 -0.44978175 0.38056609\n\t\t -0.90740675 -0.17810595 0.38056609 -0.90740675 -0.17810595 0.39439097 -0.90676582\n\t\t -0.14896077 0.27665055 -0.85583055 -0.43702501 0.39439097 -0.90676582 -0.14896077\n\t\t 0.38056609 -0.90740675 -0.17810595 0.42323095 -0.90383607 -0.062349249 0.42323095\n\t\t -0.90383607 -0.062349249 0.42271215 -0.90411073 -0.062166136 0.39439097 -0.90676582\n\t\t -0.14896077 -0.83535278 0.41035157 -0.36573383 -0.90203571 0.29572406 -0.31443223\n\t\t -0.7146216 0.62572074 -0.3126927 -0.7146216 0.62572074 -0.3126927 -0.7079075 0.61003423\n\t\t -0.3559069 -0.83535278 0.41035157 -0.36573383 -0.7079075 0.61003423 -0.3559069 -0.7146216\n\t\t 0.62572074 -0.3126927 -0.59337163 0.79464078 -0.12805572 -0.59337163 0.79464078 -0.12805572\n\t\t -0.61861044 0.77047008 -0.15378283 -0.7079075 0.61003423 -0.3559069 -0.61861044 0.77047008\n\t\t -0.15378283 -0.59337163 0.79464078 -0.12805572 -0.56657636 0.82329768 0.03363134\n\t\t -0.56657636 0.82329768 0.03363134 -0.57722735 0.81615633 0.02493356 -0.61861044 0.77047008\n\t\t -0.15378283 -0.57722735 0.81615633 0.02493356 -0.56657636 0.82329768 0.03363134 -0.57118464\n\t\t 0.81279927 0.11423072 -0.57118464 0.81279927 0.11423072 -0.56691206 0.81423366 0.12472909\n\t\t -0.57722735 0.81615633 0.02493356 -0.56691206 0.81423366 0.12472909 -0.57118464 0.81279927\n\t\t 0.11423072 -0.55116451 0.78756046 0.27555156 -0.55116451 0.78756046 0.27555156 -0.52736008\n\t\t 0.77202654 0.35474709 -0.56691206 0.81423366 0.12472909 -0.52736008 0.77202654 0.35474709\n\t\t -0.55116451 0.78756046 0.27555156 -0.50508159 0.71388888 0.48496959 -0.50508159 0.71388888\n\t\t 0.48496959 -0.46787947 0.71211886 0.52339238 -0.52736008 0.77202654 0.35474709 -0.74245411\n\t\t -0.56218171 -0.36423838 -0.75408167 -0.5839414 -0.30057678 -0.65871131 -0.66063434\n\t\t -0.36002681 -0.65871131 -0.66063434 -0.36002681 -0.61485618 -0.69597477 -0.37079984\n\t\t -0.74245411 -0.56218171 -0.36423838 -0.61485618 -0.69597477 -0.37079984 -0.65871131\n\t\t -0.66063434 -0.36002681 -0.47846892 -0.86107987 -0.17194122 -0.47846892 -0.86107987\n\t\t -0.17194122 -0.47923189 -0.86632907 -0.1405682 -0.61485618 -0.69597477 -0.37079984\n\t\t -0.47923189 -0.86632907 -0.1405682 -0.47846892 -0.86107987 -0.17194122 -0.41407487\n\t\t -0.90841407 0.057405382 -0.41407487 -0.90841407 0.057405382 -0.41795072 -0.90533173\n\t\t 0.07535027 -0.47923189 -0.86632907 -0.1405682 -0.41795072 -0.90533173 0.07535027\n\t\t -0.41407487 -0.90841407 0.057405382 -0.41190806 -0.89959425 0.14493246 -0.41190806\n\t\t -0.89959425 0.14493246 -0.41315931 -0.89895332 0.14535972 -0.41795072 -0.90533173\n\t\t 0.07535027 -0.8464613 -0.22861439 0.48081914 -0.91821033 -0.12497355 0.37580493 -0.88503665\n\t\t -0.32667035 0.33161417 -0.88503665 -0.32667035 0.33161417 -0.88457888 -0.30860341\n\t\t 0.34965059 -0.8464613 -0.22861439 0.48081914 -0.91821033 -0.12497355 0.37580493 -0.8464613\n\t\t -0.22861439 0.48081914 -0.83019501 -0.078890555 0.55183572 -0.83019501 -0.078890555\n\t\t 0.55183572 -0.88283944 -0.086764358 0.46156195 -0.91821033 -0.12497355 0.37580493\n\t\t -0.88457888 -0.30860341 0.34965059 -0.88503665 -0.32667035 0.33161417 -0.96111935\n\t\t -0.11914454 0.24897002 -0.96111935 -0.11914454 0.24897002 -0.90523988 -0.33494088\n\t\t 0.26133004 -0.88457888 -0.30860341 0.34965059 -0.90350038 -0.34937614 0.24811551\n\t\t -0.90523988 -0.33494088 0.26133004 -0.96111935 -0.11914454 0.24897002 -0.96111935\n\t\t -0.11914454 0.24897002 -0.95931876 -0.12686573 0.25214392 -0.90350038 -0.34937614\n\t\t 0.24811551;\n\tsetAttr \".n[13944:14109]\" -type \"float3\"  -0.90350038 -0.34937614 0.24811551 -0.95931876\n\t\t -0.12686573 0.25214392 -0.96072263 -0.15005979 0.23331402 -0.96072263 -0.15005979\n\t\t 0.23331402 -0.92471069 -0.35132939 0.14642784 -0.90350038 -0.34937614 0.24811551\n\t\t -0.92471069 -0.35132939 0.14642784 -0.96072263 -0.15005979 0.23331402 -0.97619551\n\t\t -0.14471905 0.16153449 -0.97619551 -0.14471905 0.16153449 -0.93249291 -0.35932523\n\t\t 0.036225498 -0.92471069 -0.35132939 0.14642784 -0.91808832 -0.073855042 0.38935515\n\t\t -0.88283944 -0.086764358 0.46156195 -0.83019501 -0.078890555 0.55183572 -0.83019501\n\t\t -0.078890555 0.55183572 -0.86159855 0.060762122 0.50386059 -0.91808832 -0.073855042\n\t\t 0.38935515 -0.91808832 -0.073855042 0.38935515 -0.86159855 0.060762122 0.50386059\n\t\t -0.91741699 0.13968296 0.37256998 -0.91741699 0.13968296 0.37256998 -0.95059055 -0.062288549\n\t\t 0.30408642 -0.91808832 -0.073855042 0.38935515 -0.95059055 -0.062288549 0.30408642\n\t\t -0.91741699 0.13968296 0.37256998 -0.95217758 0.1707813 0.25324258 -0.95217758 0.1707813\n\t\t 0.25324258 -0.96716207 -0.053346634 0.24845119 -0.95059055 -0.062288549 0.30408642\n\t\t -0.96716207 -0.053346634 0.24845119 -0.95217758 0.1707813 0.25324258 -0.95602286\n\t\t 0.18509448 0.2273934 -0.95602286 0.18509448 0.2273934 -0.96911526 -0.047242932 0.24198127\n\t\t -0.96716207 -0.053346634 0.24845119 0.95974612 -0.24390365 -0.13919491 0.9786371\n\t\t -0.14069004 -0.14987639 0.99771112 -0.022735985 -0.063234352 0.95974612 -0.24390365\n\t\t -0.13919491 0.99771112 -0.022735985 -0.063234352 0.98654133 0.025971569 0.1612598\n\t\t 0.95974612 -0.24390365 -0.13919491 0.98654133 0.025971569 0.1612598 0.87743777 -0.46616995\n\t\t 0.11285749 0.95974612 -0.24390365 -0.13919491 0.87743777 -0.46616995 0.11285749 0.92535186\n\t\t -0.37144047 -0.075624838 0.74724585 -0.46510181 0.47462389 0.87743777 -0.46616995\n\t\t 0.11285749 0.98654133 0.025971569 0.1612598 0.98654133 0.025971569 0.1612598 0.85921812\n\t\t 0.02484237 0.51097143 0.74724585 -0.46510181 0.47462389 0.85921812 0.02484237 0.51097143\n\t\t 0.66844696 -0.14709894 0.72905666 0.74724585 -0.46510181 0.47462389 0.85921812 0.02484237\n\t\t 0.51097143 0.73052156 -0.029541641 0.68221074 0.66844696 -0.14709894 0.72905666 0.66844696\n\t\t -0.14709894 0.72905666 0.66978985 -0.36341414 0.64751124 0.74724585 -0.46510181 0.47462389\n\t\t 0.66844696 -0.14709894 0.72905666 0.66231275 -0.23712856 0.71068454 0.66978985 -0.36341414\n\t\t 0.64751124 0.63426614 0.16422023 -0.7554552 0.57094032 -0.24164544 -0.78460038 0.5671255\n\t\t -0.26975298 -0.77816093 0.5671255 -0.26975298 -0.77816093 0.64290285 0.19248037 -0.74132514\n\t\t 0.63426614 0.16422023 -0.7554552 0.95974612 -0.24390365 -0.13919491 0.91543329 -0.27817598\n\t\t -0.29084137 0.95870847 -0.055329781 -0.27890867 0.95870847 -0.055329781 -0.27890867\n\t\t 0.9786371 -0.14069004 -0.14987639 0.95974612 -0.24390365 -0.13919491 0.5671255 -0.26975298\n\t\t -0.77816093 0.57094032 -0.24164544 -0.78460038 0.45435977 -0.65709394 -0.60142821\n\t\t 0.87023544 -0.44001564 -0.22144228 0.91543329 -0.27817598 -0.29084137 0.95974612\n\t\t -0.24390365 -0.13919491 0.45435977 -0.65709394 -0.60142821 0.46931383 -0.62242496\n\t\t -0.62630081 0.5671255 -0.26975298 -0.77816093 0.42973137 -0.78490549 -0.44630262\n\t\t 0.46931383 -0.62242496 -0.62630081 0.45435977 -0.65709394 -0.60142821 0.45435977\n\t\t -0.65709394 -0.60142821 0.43656752 -0.78365421 -0.44187742 0.42973137 -0.78490549\n\t\t -0.44630262 0.78045005 -0.62089884 0.073122397 0.87023544 -0.44001564 -0.22144228\n\t\t 0.92535186 -0.37144047 -0.075624838 0.95974612 -0.24390365 -0.13919491 0.92535186\n\t\t -0.37144047 -0.075624838 0.87023544 -0.44001564 -0.22144228 0.92535186 -0.37144047\n\t\t -0.075624838 0.87743777 -0.46616995 0.11285749 0.78045005 -0.62089884 0.073122397\n\t\t 0.68941295 0.56022847 -0.45912048 0.63426614 0.16422023 -0.7554552 0.64290285 0.19248037\n\t\t -0.74132514 0.64290285 0.19248037 -0.74132514 0.69670689 0.51966935 -0.49443039 0.68941295\n\t\t 0.56022847 -0.45912048 0.73158956 0.62114346 -0.28086191 0.68941295 0.56022847 -0.45912048\n\t\t 0.69670689 0.51966935 -0.49443039 0.69670689 0.51966935 -0.49443039 0.73848671 0.61357486\n\t\t -0.27951908 0.73158956 0.62114346 -0.28086191 0.98031557 0.089022785 -0.17609181\n\t\t 0.96179074 0.23563373 0.13922542 0.98654133 0.025971569 0.1612598 0.98654133 0.025971569\n\t\t 0.1612598 0.99771112 -0.022735985 -0.063234352 0.98031557 0.089022785 -0.17609181\n\t\t 0.65746003 0.71483523 0.23810536 0.65752107 0.71480471 0.23804432 0.65746003 0.71483523\n\t\t 0.23813587 0.65746003 0.71483523 0.23813587 0.657399 0.71489626 0.23819691 0.65746003\n\t\t 0.71483523 0.23810536 0.23700657 0.55415523 0.79793692 0.39707616 0.62123495 0.67552716\n\t\t 0.38837835 0.62804061 0.67430639 0.38837835 0.62804061 0.67430639 0.2106691 0.52394187\n\t\t 0.82525098 0.23700657 0.55415523 0.79793692 0.82888263 0.23285653 0.50862145 0.65379804\n\t\t 0.074495941 0.75298321 0.73052156 -0.029541641 0.68221074 0.73052156 -0.029541641\n\t\t 0.68221074 0.85921812 0.02484237 0.51097143 0.82888263 0.23285653 0.50862145 0.96179074\n\t\t 0.23563373 0.13922542 0.82888263 0.23285653 0.50862145 0.85921812 0.02484237 0.51097143\n\t\t 0.85921812 0.02484237 0.51097143 0.98654133 0.025971569 0.1612598 0.96179074 0.23563373\n\t\t 0.13922542 0.004974464 0.17191084 0.98507643 0.23700657 0.55415523 0.79793692 0.2106691\n\t\t 0.52394187 0.82525098 0.2106691 0.52394187 0.82525098 0.020142155 0.1988892 0.97979677\n\t\t 0.004974464 0.17191084 0.98507643 -0.063356355 -0.22983484 0.97115999 0.004974464\n\t\t 0.17191084 0.98507643 0.020142155 0.1988892 0.97979677 0.020142155 0.1988892 0.97979677\n\t\t -0.059205826 -0.26096374 0.96349984 -0.063356355 -0.22983484 0.97115999 0.57606739\n\t\t -0.059907597 0.81517988 0.53730893 -0.27408651 0.79757071 0.66231275 -0.23712856\n\t\t 0.71068454 0.66231275 -0.23712856 0.71068454 0.66844696 -0.14709894 0.72905666 0.57606739\n\t\t -0.059907597 0.81517988 0.65379804 0.074495941 0.75298321 0.57606739 -0.059907597\n\t\t 0.81517988 0.66844696 -0.14709894 0.72905666 0.66844696 -0.14709894 0.72905666;\n\tsetAttr \".n[14110:14275]\" -type \"float3\"  0.73052156 -0.029541641 0.68221074 0.65379804\n\t\t 0.074495941 0.75298321 -0.038575191 -0.66579175 0.74510944 -0.063356355 -0.22983484\n\t\t 0.97115999 -0.059205826 -0.26096374 0.96349984 0.66231275 -0.23712856 0.71068454\n\t\t 0.53730893 -0.27408651 0.79757071 0.54356527 -0.42976141 0.72096932 -0.059205826\n\t\t -0.26096374 0.96349984 -0.035645425 -0.62636185 0.77867985 -0.038575191 -0.66579175\n\t\t 0.74510944 0.040010009 -0.7850886 0.61806089 -0.038575191 -0.66579175 0.74510944\n\t\t -0.035645425 -0.62636185 0.77867985 -0.035645425 -0.62636185 0.77867985 0.046235785\n\t\t -0.78279972 0.62053293 0.040010009 -0.7850886 0.61806089 0.54356527 -0.42976141 0.72096932\n\t\t 0.64754194 -0.6231572 0.43855104 0.74724585 -0.46510181 0.47462389 0.74724585 -0.46510181\n\t\t 0.47462389 0.66978985 -0.36341414 0.64751124 0.54356527 -0.42976141 0.72096932 0.54356527\n\t\t -0.42976141 0.72096932 0.66978985 -0.36341414 0.64751124 0.66231275 -0.23712856 0.71068454\n\t\t 0.2966097 -0.94936967 0.10327471 0.29657918 -0.94940019 0.10318315 0.2966097 -0.94936967\n\t\t 0.10333574 0.2966097 -0.94936967 0.10333574 0.29664022 -0.94933915 0.10345782 0.2966097\n\t\t -0.94936967 0.10327471 0.95870847 -0.055329781 -0.27890867 0.98031557 0.089022785\n\t\t -0.17609181 0.99771112 -0.022735985 -0.063234352 0.99771112 -0.022735985 -0.063234352\n\t\t 0.9786371 -0.14069004 -0.14987639 0.95870847 -0.055329781 -0.27890867 0.78045005\n\t\t -0.62089884 0.073122397 0.87743777 -0.46616995 0.11285749 0.74724585 -0.46510181\n\t\t 0.47462389 0.74724585 -0.46510181 0.47462389 0.64754194 -0.6231572 0.43855104 0.78045005\n\t\t -0.62089884 0.073122397 -0.959746 -0.24390425 -0.13919491 -0.92535162 -0.37144107\n\t\t -0.075624838 -0.87743753 -0.46617049 0.11285749 -0.959746 -0.24390425 -0.13919491\n\t\t -0.87743753 -0.46617049 0.11285749 -0.98654133 0.025970958 0.1612598 -0.959746 -0.24390425\n\t\t -0.13919491 -0.98654133 0.025970958 0.1612598 -0.99771112 -0.022736603 -0.063234352\n\t\t -0.97863698 -0.14069064 -0.14984587 -0.959746 -0.24390425 -0.13919491 -0.99771112\n\t\t -0.022736603 -0.063234352 -0.98654133 0.025970958 0.1612598 -0.87743753 -0.46617049\n\t\t 0.11285749 -0.74724561 -0.46510229 0.47462389 -0.74724561 -0.46510229 0.47462389\n\t\t -0.85921812 0.024841838 0.51097143 -0.98654133 0.025970958 0.1612598 -0.85921812\n\t\t 0.024841838 0.51097143 -0.74724561 -0.46510229 0.47462389 -0.66844684 -0.14712988\n\t\t 0.72905666 -0.74724561 -0.46510229 0.47462389 -0.66978961 -0.36338404 0.64751124\n\t\t -0.66844684 -0.14712988 0.72905666 -0.66978961 -0.36338404 0.64751124 -0.66231263\n\t\t -0.23712897 0.71068454 -0.66844684 -0.14712988 0.72905666 -0.73052156 -0.029542092\n\t\t 0.68221074 -0.85921812 0.024841838 0.51097143 -0.66844684 -0.14712988 0.72905666\n\t\t -0.63426626 0.16421984 -0.75542468 -0.64290297 0.19247998 -0.74132514 -0.56581312\n\t\t -0.26813588 -0.77968687 -0.56581312 -0.26813588 -0.77968687 -0.57252717 -0.24011987\n\t\t -0.78389841 -0.63426626 0.16421984 -0.75542468 -0.95870847 -0.055330377 -0.27890867\n\t\t -0.91540265 -0.27817652 -0.29084137 -0.959746 -0.24390425 -0.13919491 -0.959746 -0.24390425\n\t\t -0.13919491 -0.97863698 -0.14069064 -0.14984587 -0.95870847 -0.055330377 -0.27890867\n\t\t -0.57252717 -0.24011987 -0.78389841 -0.56581312 -0.26813588 -0.77968687 -0.4670856\n\t\t -0.62385952 -0.62654495 -0.4670856 -0.62385952 -0.62654495 -0.45515284 -0.65813184\n\t\t -0.59968865 -0.57252717 -0.24011987 -0.78389841 -0.959746 -0.24390425 -0.13919491\n\t\t -0.91540265 -0.27817652 -0.29084137 -0.8702352 -0.44001618 -0.22144228 -0.45515284\n\t\t -0.65813184 -0.59968865 -0.4670856 -0.62385952 -0.62654495 -0.42973089 -0.78490573\n\t\t -0.44630262 -0.42973089 -0.78490573 -0.44630262 -0.43656704 -0.78365445 -0.44187742\n\t\t -0.45515284 -0.65813184 -0.59968865 -0.92535162 -0.37144107 -0.075624838 -0.8702352\n\t\t -0.44001618 -0.22144228 -0.78044969 -0.62089932 0.073122397 -0.8702352 -0.44001618\n\t\t -0.22144228 -0.92535162 -0.37144107 -0.075624838 -0.959746 -0.24390425 -0.13919491\n\t\t -0.78044969 -0.62089932 0.073122397 -0.87743753 -0.46617049 0.11285749 -0.92535162\n\t\t -0.37144107 -0.075624838 -0.64290297 0.19247998 -0.74132514 -0.63426626 0.16421984\n\t\t -0.75542468 -0.68941331 0.56025851 -0.45912048 -0.68941331 0.56025851 -0.45912048\n\t\t -0.69670725 0.51966888 -0.49443039 -0.64290297 0.19247998 -0.74132514 -0.69670725\n\t\t 0.51966888 -0.49443039 -0.68941331 0.56025851 -0.45912048 -0.73158991 0.62114298\n\t\t -0.28086191 -0.73158991 0.62114298 -0.28086191 -0.73848706 0.61354387 -0.27951908\n\t\t -0.69670725 0.51966888 -0.49443039 -0.98654133 0.025970958 0.1612598 -0.96179086\n\t\t 0.23563313 0.13922542 -0.98031557 0.088991649 -0.17609181 -0.98031557 0.088991649\n\t\t -0.17609181 -0.99771112 -0.022736603 -0.063234352 -0.98654133 0.025970958 0.1612598\n\t\t -0.65742999 0.71486539 0.23813587 -0.65752155 0.71480435 0.23804432 -0.65746051 0.71483487\n\t\t 0.23810536 -0.65746051 0.71483487 0.23810536 -0.65736896 0.7148959 0.23819691 -0.65742999\n\t\t 0.71486539 0.23813587 -0.38837877 0.62804037 0.67430639 -0.39707652 0.62123471 0.67552716\n\t\t -0.2370069 0.55415511 0.7979064 -0.2370069 0.55415511 0.7979064 -0.21066943 0.52394176\n\t\t 0.82525098 -0.38837877 0.62804037 0.67430639 -0.73052156 -0.029542092 0.68221074\n\t\t -0.65379804 0.074526057 0.75298321 -0.82888275 0.23285602 0.50862145 -0.82888275\n\t\t 0.23285602 0.50862145 -0.85921812 0.024841838 0.51097143 -0.73052156 -0.029542092\n\t\t 0.68221074 -0.96179086 0.23563313 0.13922542 -0.98654133 0.025970958 0.1612598 -0.85921812\n\t\t 0.024841838 0.51097143 -0.85921812 0.024841838 0.51097143 -0.82888275 0.23285602\n\t\t 0.50862145 -0.96179086 0.23563313 0.13922542 -0.21066943 0.52394176 0.82525098 -0.2370069\n\t\t 0.55415511 0.7979064 -0.0049745701 0.17191084 0.98507643 -0.0049745701 0.17191084\n\t\t 0.98507643 -0.02011176 0.1988892 0.97979677 -0.21066943 0.52394176 0.82525098 -0.02011176\n\t\t 0.1988892 0.97979677 -0.0049745701 0.17191084 0.98507643 0.063356504 -0.22983481\n\t\t 0.97115999 0.063356504 -0.22983481 0.97115999 0.05920599 -0.26096368 0.96349984 -0.02011176\n\t\t 0.1988892 0.97979677 -0.66231263 -0.23712897 0.71068454 -0.53730881 -0.27408686 0.79757071;\n\tsetAttr \".n[14276:14441]\" -type \"float3\"  -0.57606739 -0.059907954 0.81517988 -0.57606739\n\t\t -0.059907954 0.81517988 -0.66844684 -0.14712988 0.72905666 -0.66231263 -0.23712897\n\t\t 0.71068454 -0.65379804 0.074526057 0.75298321 -0.73052156 -0.029542092 0.68221074\n\t\t -0.66844684 -0.14712988 0.72905666 -0.66844684 -0.14712988 0.72905666 -0.57606739\n\t\t -0.059907954 0.81517988 -0.65379804 0.074526057 0.75298321 0.05920599 -0.26096368\n\t\t 0.96349984 0.063356504 -0.22983481 0.97115999 0.038575601 -0.66579175 0.74510944\n\t\t -0.54356503 -0.42976177 0.72096932 -0.53730881 -0.27408686 0.79757071 -0.66231263\n\t\t -0.23712897 0.71068454 0.038575601 -0.66579175 0.74510944 0.035645813 -0.62636185\n\t\t 0.77867985 0.05920599 -0.26096368 0.96349984 0.035645813 -0.62636185 0.77867985 0.038575601\n\t\t -0.66579175 0.74510944 -0.040009525 -0.7850886 0.61806089 -0.040009525 -0.7850886\n\t\t 0.61806089 -0.046235301 -0.78279972 0.62053293 0.035645813 -0.62636185 0.77867985\n\t\t -0.74724561 -0.46510229 0.47462389 -0.64754158 -0.62315756 0.43855104 -0.54356503\n\t\t -0.42976177 0.72096932 -0.54356503 -0.42976177 0.72096932 -0.66978961 -0.36338404\n\t\t 0.64751124 -0.74724561 -0.46510229 0.47462389 -0.66231263 -0.23712897 0.71068454\n\t\t -0.66978961 -0.36338404 0.64751124 -0.54356503 -0.42976177 0.72096932 -0.2966091\n\t\t -0.94936991 0.10333574 -0.29657859 -0.94940042 0.10318315 -0.2966091 -0.94936991\n\t\t 0.10327471 -0.2966091 -0.94936991 0.10327471 -0.29663962 -0.94933939 0.1034273 -0.2966091\n\t\t -0.94936991 0.10333574 -0.95870847 -0.055330377 -0.27890867 -0.97863698 -0.14069064\n\t\t -0.14984587 -0.99771112 -0.022736603 -0.063234352 -0.99771112 -0.022736603 -0.063234352\n\t\t -0.98031557 0.088991649 -0.17609181 -0.95870847 -0.055330377 -0.27890867 -0.78044969\n\t\t -0.62089932 0.073122397 -0.64754158 -0.62315756 0.43855104 -0.74724561 -0.46510229\n\t\t 0.47462389 -0.74724561 -0.46510229 0.47462389 -0.87743753 -0.46617049 0.11285749\n\t\t -0.78044969 -0.62089932 0.073122397 0.97018343 -0.040345185 -0.23886837 0.89672542\n\t\t -0.11893038 -0.42625201 0.85992002 0.030244073 -0.50947601 0.85992002 0.030244073\n\t\t -0.50947601 0.97299111 0.021454798 -0.22977386 0.97018343 -0.040345185 -0.23886837\n\t\t 0.96670431 0.049653895 -0.2509537 0.97299111 0.021454798 -0.22977386 0.85992002 0.030244073\n\t\t -0.50947601 0.85992002 0.030244073 -0.50947601 0.86898398 0.25913289 -0.42149118\n\t\t 0.96670431 0.049653895 -0.2509537 0.51200885 0.59996349 -0.61467338 0.5457623 0.57554871\n\t\t -0.60893589 0.37907019 0.66655481 -0.64183486 0.37907019 0.66655481 -0.64183486 0.42567196\n\t\t 0.64085823 -0.63878298 0.51200885 0.59996349 -0.61467338 0.42567196 0.64085823 -0.63878298\n\t\t 0.37907019 0.66655481 -0.64183486 0.1098664 0.74520099 -0.65770447 0.1098664 0.74520099\n\t\t -0.65770447 0.25620267 0.69463181 -0.67217022 0.42567196 0.64085823 -0.63878298 0.25620267\n\t\t 0.69463181 -0.67217022 0.1098664 0.74520099 -0.65770447 0.01229873 0.7405926 -0.67183453\n\t\t 0.01229873 0.7405926 -0.67183453 0.098269373 0.72206795 -0.6847744 0.25620267 0.69463181\n\t\t -0.67217022 -2.2624185e-07 0.73168123 -0.68160045 0.098269373 0.72206795 -0.6847744\n\t\t 0.01229873 0.7405926 -0.67183453 0.01229873 0.7405926 -0.67183453 -2.2579833e-07\n\t\t 0.73024684 -0.68315691 -2.2624185e-07 0.73168123 -0.68160045 0.1401716 -0.28196055\n\t\t -0.94912565 0.22305982 -0.09317302 -0.9703055 0.41859192 -0.097140357 -0.90295112\n\t\t 0.41859192 -0.097140357 -0.90295112 0.16623439 -0.23944825 -0.95654166 0.1401716\n\t\t -0.28196055 -0.94912565 0.22305982 -0.09317302 -0.9703055 0.1401716 -0.28196055 -0.94912565\n\t\t 0.042390291 -0.26996678 -0.96191287 0.042390291 -0.26996678 -0.96191287 0.053346388\n\t\t -0.11432239 -0.99200416 0.22305982 -0.09317302 -0.9703055 0.24018066 0.070589311\n\t\t -0.96813869 0.22305982 -0.09317302 -0.9703055 0.053346388 -0.11432239 -0.99200416\n\t\t 0.053346388 -0.11432239 -0.99200416 0.06903287 0.0069581675 -0.99755853 0.24018066\n\t\t 0.070589311 -0.96813869 0.22305982 -0.09317302 -0.9703055 0.24018066 0.070589311\n\t\t -0.96813869 0.48426771 0.013214599 -0.87478256 0.48426771 0.013214599 -0.87478256\n\t\t 0.41859192 -0.097140357 -0.90295112 0.22305982 -0.09317302 -0.9703055 0.1401716 -0.28196055\n\t\t -0.94912565 0.16623439 -0.23944825 -0.95654166 0.13647887 -0.27350691 -0.95211643\n\t\t 0.13647887 -0.27350691 -0.95211643 0.13394582 -0.27393416 -0.95236063 0.1401716 -0.28196055\n\t\t -0.94912565 0.06582851 -0.27228618 -0.95992917 0.042390291 -0.26996678 -0.96191287\n\t\t 0.1401716 -0.28196055 -0.94912565 0.1401716 -0.28196055 -0.94912565 0.13394582 -0.27393416\n\t\t -0.95236063 0.06582851 -0.27228618 -0.95992917 0.41859192 -0.097140357 -0.90295112\n\t\t 0.48426771 0.013214599 -0.87478256 0.85992002 0.030244073 -0.50947601 0.85992002\n\t\t 0.030244073 -0.50947601 0.79940188 -0.10513607 -0.59150976 0.41859192 -0.097140357\n\t\t -0.90295112 0.79940188 -0.10513607 -0.59150976 0.85992002 0.030244073 -0.50947601\n\t\t 0.89672542 -0.11893038 -0.42625201 0.89672542 -0.11893038 -0.42625201 0.77724546\n\t\t -0.17102553 -0.60548723 0.79940188 -0.10513607 -0.59150976 8.2022723e-08 -0.26526695\n\t\t -0.96414077 0.042390291 -0.26996678 -0.96191287 0.06582851 -0.27228618 -0.95992917\n\t\t 0.06582851 -0.27228618 -0.95992917 8.3485389e-08 -0.2699973 -0.96282846 8.2022723e-08\n\t\t -0.26526695 -0.96414077 -2.1609523e-09 0.0069886642 -0.99996948 0.06903287 0.0069581675\n\t\t -0.99755853 0.053346388 -0.11432239 -0.99200416 0.053346388 -0.11432239 -0.99200416\n\t\t 3.9558138e-08 -0.12793367 -0.99176002 -2.1609523e-09 0.0069886642 -0.99996948 3.9558138e-08\n\t\t -0.12793367 -0.99176002 0.053346388 -0.11432239 -0.99200416 0.042390291 -0.26996678\n\t\t -0.96191287 0.042390291 -0.26996678 -0.96191287 8.2022723e-08 -0.26526695 -0.96414077\n\t\t 3.9558138e-08 -0.12793367 -0.99176002 8.2022723e-08 -0.26526695 -0.96414077 8.3485389e-08\n\t\t -0.2699973 -0.96282846 8.3485389e-08 -0.2699973 -0.96282846 8.3485389e-08 -0.2699973\n\t\t -0.96282846 8.2022723e-08 -0.26526695 -0.96414077 8.2022723e-08 -0.26526695 -0.96414077\n\t\t 3.9558138e-08 -0.12793367 -0.99176002 8.2022723e-08 -0.26526695 -0.96414077 8.2022723e-08\n\t\t -0.26526695 -0.96414077 -2.1609523e-09 0.0069886642 -0.99996948 3.9558138e-08 -0.12793367\n\t\t -0.99176002 3.9558138e-08 -0.12793367 -0.99176002;\n\tsetAttr \".n[14442:14607]\" -type \"float3\"  8.2022723e-08 -0.26526695 -0.96414077\n\t\t 3.9558138e-08 -0.12793367 -0.99176002 3.9558138e-08 -0.12793367 -0.99176002 3.9558138e-08\n\t\t -0.12793367 -0.99176002 -2.1609523e-09 0.0069886642 -0.99996948 -2.1609523e-09 0.0069886642\n\t\t -0.99996948 3.0382938e-07 -0.98260444 0.18564416 3.0382938e-07 -0.98260444 0.18564416\n\t\t 3.0785878e-07 -0.99563587 0.093203604 3.0785878e-07 -0.99563587 0.093203604 3.0678302e-07\n\t\t -0.99215674 0.12494285 3.0382938e-07 -0.98260444 0.18564416 3.0785878e-07 -0.99563587\n\t\t 0.093203604 3.0382938e-07 -0.98260444 0.18564416 3.0382938e-07 -0.98260444 0.18564416\n\t\t 3.0382938e-07 -0.98260444 0.18564416 3.0785878e-07 -0.99563587 0.093234122 3.0785878e-07\n\t\t -0.99563587 0.093203604 3.0785878e-07 -0.99563587 0.093234122 3.0382938e-07 -0.98260444\n\t\t 0.18564416 3.0382938e-07 -0.98260444 0.18564416 3.0382938e-07 -0.98260444 0.18564416\n\t\t 3.0785878e-07 -0.99563587 0.093234122 3.0785878e-07 -0.99563587 0.093234122 3.0785878e-07\n\t\t -0.99563587 0.093234122 3.0382938e-07 -0.98260444 0.18564416 1.9421412e-07 -0.62810141\n\t\t 0.77809995 1.9421412e-07 -0.62810141 0.77809995 3.0785878e-07 -0.99563587 0.093234122\n\t\t 3.0785878e-07 -0.99563587 0.093234122 3.0785878e-07 -0.99563587 0.093234122 3.0785878e-07\n\t\t -0.99563587 0.093234122 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08\n\t\t 3.0920822e-07 -1 7.441745e-08 3.0785878e-07 -0.99563587 0.093234122 3.0785878e-07\n\t\t -0.99563587 0.093234122 3.0785878e-07 -0.99563587 0.093234122 3.0920822e-07 -1 7.441745e-08\n\t\t 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 3.0785878e-07 -0.99563587\n\t\t 0.093234122 3.0920822e-07 -1 7.441745e-08 3.0785878e-07 -0.99563587 0.093203604 3.0785878e-07\n\t\t -0.99563587 0.093234122 3.0785878e-07 -0.99563587 0.093234122 3.0920822e-07 -1 7.441745e-08\n\t\t 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 3.0678302e-07 -0.99215674\n\t\t 0.12494285 3.0785878e-07 -0.99563587 0.093203604 3.0785878e-07 -0.99563587 0.093203604\n\t\t 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 1.9421412e-07 -0.62810141\n\t\t 0.77809995 -7.9739282e-09 0.025788214 0.99966431 -7.9739282e-09 0.025788214 0.99966431\n\t\t -7.9739282e-09 0.025788214 0.99966431 -7.9739282e-09 0.025788214 0.99966431 1.9421412e-07\n\t\t -0.62810141 0.77809995 0.98770112 -0.15427077 0.024506375 0.98611414 -0.16122898\n\t\t 0.039033186 0.98654139 -0.1597641 0.034455407 0.98654139 -0.1597641 0.034455407 0.98794526\n\t\t -0.15457594 0.0069582318 0.98770112 -0.15427077 0.024506375 0.99420154 -0.10431196\n\t\t 0.025543999 0.98654139 -0.1597641 0.034455407 0.98611414 -0.16122898 0.039033186\n\t\t 0.98611414 -0.16122898 0.039033186 0.99334705 -0.11120915 0.029419851 0.99420154\n\t\t -0.10431196 0.025543999 0.99832147 -0.049836412 0.028595846 0.99420154 -0.10431196\n\t\t 0.025543999 0.99334705 -0.11120915 0.029419851 0.99334705 -0.11120915 0.029419851\n\t\t 0.9980163 -0.051514931 0.035370957 0.99832147 -0.049836412 0.028595846 0.99832147\n\t\t -0.049836412 0.028595846 0.9980163 -0.051514931 0.035370957 0.99771112 -0.015045322\n\t\t -0.065889463 0.99771112 -0.015045322 -0.065889463 0.99694812 -0.014404434 -0.076326795\n\t\t 0.99832147 -0.049836412 0.028595846 0.99694812 -0.014404434 -0.076326795 0.99771112\n\t\t -0.015045322 -0.065889463 0.99829096 -0.024872281 -0.052705467 0.99829096 -0.024872281\n\t\t -0.052705467 0.9985351 -0.027313761 -0.046479687 0.99694812 -0.014404434 -0.076326795\n\t\t 0.99337757 -0.10162631 0.053224288 0.9985351 -0.027313761 -0.046479687 0.99829096\n\t\t -0.024872281 -0.052705467 0.99829096 -0.024872281 -0.052705467 0.99734491 -0.072572708\n\t\t -0.0026245865 0.99337757 -0.10162631 0.053224288 0.99804682 -0.054963529 -0.028595839\n\t\t 0.99337757 -0.10162631 0.053224288 0.99734491 -0.072572708 -0.0026245865 0.99734491\n\t\t -0.072572708 -0.0026245865 0.99868768 -0.047181305 -0.018433176 0.99804682 -0.054963529\n\t\t -0.028595839 0.99664295 -0.031525303 0.075228125 0.99804682 -0.054963529 -0.028595839\n\t\t 0.99868768 -0.047181305 -0.018433176 0.99868768 -0.047181305 -0.018433176 0.99496442\n\t\t -0.046815079 0.088381603 0.99664295 -0.031525303 0.075228125 0.98452717 -0.16260232\n\t\t 0.064790808 0.99664295 -0.031525303 0.075228125 0.99496442 -0.046815079 0.088381603\n\t\t 0.99496442 -0.046815079 0.088381603 0.98449665 -0.15988617 0.071871102 0.98452717\n\t\t -0.16260232 0.064790808 0.98529011 -0.17029299 -0.012848279 0.98452717 -0.16260232\n\t\t 0.064790808 0.98449665 -0.15988617 0.071871102 0.98449665 -0.15988617 0.071871102\n\t\t 0.98800629 -0.15390453 0.0098574897 0.98529011 -0.17029299 -0.012848279 0.98794526\n\t\t -0.15457594 0.0069582318 0.98529011 -0.17029299 -0.012848279 0.98800629 -0.15390453\n\t\t 0.0098574897 0.98800629 -0.15390453 0.0098574897 0.98770112 -0.15427077 0.024506375\n\t\t 0.98794526 -0.15457594 0.0069582318 0.063539833 -0.95535141 -0.28852192 0.052492112\n\t\t -0.88720363 -0.45832691 0.055116706 -0.88781404 -0.45686203 0.055116706 -0.88781404\n\t\t -0.45686203 0.064119682 -0.94979703 -0.30613109 0.063539833 -0.95535141 -0.28852192\n\t\t 0.054841924 -0.53138834 -0.84533215 0.05923659 -0.53386033 -0.84347051 0.05722237\n\t\t -0.53273118 -0.84432501 0.05722237 -0.53273118 -0.84432501 0.05288874 -0.53028971\n\t\t -0.8461256 0.054841924 -0.53138834 -0.84533215 0.070559099 -0.99734491 0.016388513\n\t\t 0.063539833 -0.95535141 -0.28852192 0.064119682 -0.94979703 -0.30613109 0.064119682\n\t\t -0.94979703 -0.30613109 0.067507245 -0.99771112 0.0024720735 0.070559099 -0.99734491\n\t\t 0.016388513 0.064363845 -0.98690754 0.14780122 0.070559099 -0.99734491 0.016388513\n\t\t 0.067507245 -0.99771112 0.0024720735 0.067507245 -0.99771112 0.0024720735 0.060274363\n\t\t -0.9874264 0.14606166 0.064363845 -0.98690754 0.14780122 0.075685799 0.34260076 -0.9363994\n\t\t 0.082216755 0.36872461 -0.92587054 0.082888164 0.36765644 -0.92623675 0.082888164\n\t\t 0.36765644 -0.92623675 0.075380616 0.34263128 -0.93642992 0.075685799 0.34260076\n\t\t -0.9363994 0.058625933 0.39725941 -0.91579944 0.082888164 0.36765644 -0.92623675\n\t\t 0.082216755 0.36872461 -0.92587054 0.082216755 0.36872461 -0.92587054 0.057222083\n\t\t 0.39744252 -0.91582996 0.058625933 0.39725941 -0.91579944 0.11758751 0.99273664 0.024567325\n\t\t 0.16562365 0.97787416 0.12759781 0.16147314 0.97839296 0.12891011 0.16147314 0.97839296\n\t\t 0.12891011;\n\tsetAttr \".n[14608:14773]\" -type \"float3\"  0.11154485 0.99337757 0.026489992 0.11758751\n\t\t 0.99273664 0.024567325 0.1737721 0.95434439 0.2428357 0.16147314 0.97839296 0.12891011\n\t\t 0.16562365 0.97787416 0.12759781 0.16562365 0.97787416 0.12759781 0.17548113 0.95474112\n\t\t 0.24008904 0.1737721 0.95434439 0.2428357 0.11880855 0.036500249 0.99221778 0.10318307\n\t\t 0.037507355 0.99392682 0.10388499 0.03744632 0.99386579 0.10388499 0.03744632 0.99386579\n\t\t 0.11990721 0.03643921 0.99209571 0.11880855 0.036500249 0.99221778 0.10180996 -0.68291259\n\t\t 0.72331923 0.088351287 -0.64204836 0.76152843 0.090640165 -0.63649398 0.76592308\n\t\t 0.090640165 -0.63649398 0.76592308 0.10361055 -0.68257684 0.72341079 0.10180996 -0.68291259\n\t\t 0.72331923 0.075045198 -0.59511089 0.80010384 0.090640165 -0.63649398 0.76592308\n\t\t 0.088351287 -0.64204836 0.76152843 0.088351287 -0.64204836 0.76152843 0.072908908\n\t\t -0.59553814 0.79998177 0.075045198 -0.59511089 0.80010384 0.14413863 0.93585014 0.32151243\n\t\t 0.14700738 0.91808838 0.36802265 0.1486859 0.8687095 0.47242647 0.1486859 0.8687095\n\t\t 0.47242647 0.13608177 0.88357198 0.4480727 0.14413863 0.93585014 0.32151243 0.13855374\n\t\t 0.98117012 0.1343424 0.14700738 0.91808838 0.36802265 0.14413863 0.93585014 0.32151243\n\t\t 0.14413863 0.93585014 0.32151243 0.14413862 0.98358113 0.10840168 0.13855374 0.98117012\n\t\t 0.1343424 0.13641742 0.99060035 -0.0060427384 0.13855374 0.98117012 0.1343424 0.14413862\n\t\t 0.98358113 0.10840168 0.14413862 0.98358113 0.10840168 0.13943876 0.99014258 -0.0109257\n\t\t 0.13641742 0.99060035 -0.0060427384 0.13641742 0.99060035 -0.0060427384 0.13943876\n\t\t 0.99014258 -0.0109257 0.13586809 0.98953223 -0.048005689 0.13586809 0.98953223 -0.048005689\n\t\t 0.13354869 0.98968482 -0.05166791 0.13641742 0.99060035 -0.0060427384 0.060029715\n\t\t 0.62785721 -0.77599418 0.053834453 0.63710433 -0.76888341 0.055085711 0.63682967\n\t\t -0.76900548 0.055085711 0.63682967 -0.76900548 0.060395937 0.62608719 -0.77739805\n\t\t 0.060029715 0.62785721 -0.77599418 0.05874794 0.61854911 -0.78353226 0.060029715\n\t\t 0.62785721 -0.77599418 0.060395937 0.62608719 -0.77739805 0.060395937 0.62608719\n\t\t -0.77739805 0.058625866 0.61857963 -0.78350174 0.05874794 0.61854911 -0.78353226\n\t\t -0.03845302 -0.97399825 -0.2232123 -0.03112857 -0.99844354 -0.046204947 -0.033203829\n\t\t -0.99829096 -0.047578283 -0.033203829 -0.99829096 -0.047578283 -0.040253613 -0.97189248\n\t\t -0.23187956 -0.03845302 -0.97399825 -0.2232123 -0.041901629 -0.9165929 -0.39753404\n\t\t -0.03845302 -0.97399825 -0.2232123 -0.040253613 -0.97189248 -0.23187956 -0.040253613\n\t\t -0.97189248 -0.23187956 -0.043152891 -0.91412097 -0.40308842 -0.041901629 -0.9165929\n\t\t -0.39753404 0.076296389 -0.38908038 0.91802728 0.083468243 -0.38325134 0.91982788\n\t\t 0.08294943 -0.38303772 0.91998047 0.08294943 -0.38303772 0.91998047 0.075411357 -0.38920248\n\t\t 0.91802728 0.076296389 -0.38908038 0.91802728 0.08294943 -0.38303772 0.91998047 0.083468243\n\t\t -0.38325134 0.91982788 0.081331946 -0.37775803 0.92229986 0.081331946 -0.37775803\n\t\t 0.92229986 0.081026763 -0.37769699 0.9223609 0.08294943 -0.38303772 0.91998047 -0.017456578\n\t\t -0.03271592 -0.9992981 -0.017853318 -0.03271592 -0.9992981 -0.014648874 -0.032654885\n\t\t -0.99932861 -0.014648874 -0.032654885 -0.99932861 -0.014282652 -0.032654885 -0.99935913\n\t\t -0.017456578 -0.03271592 -0.9992981 0.91625732 -0.39976165 -0.025208259 0.91625732\n\t\t -0.39976165 -0.025208259 0.91625732 -0.39976165 -0.025208259 0.99609363 0.082491837\n\t\t -0.031128885 0.99807733 -0.038544565 0.048066657 0.98681605 -0.10052766 0.12662131\n\t\t 0.99807733 -0.038544565 0.048066657 0.98956275 -0.14398602 -0.00064087799 0.98681605\n\t\t -0.10052766 0.12662131 0.99807733 -0.038544565 0.048066657 0.99533069 -0.07858485\n\t\t 0.055543695 0.98956275 -0.14398602 -0.00064087799 0.99807733 -0.038544565 0.048066657\n\t\t 0.98345906 -0.17978424 0.020996748 0.99533069 -0.07858485 0.055543695 0.17178857\n\t\t 0.36854151 -0.9135716 0.17178857 0.36854151 -0.9135716 0.17178857 0.36854151 -0.9135716\n\t\t 0.98956275 -0.14398602 -0.00064087799 0.98269606 -0.16656972 -0.080812998 0.98681605\n\t\t -0.10052766 0.12662131 0.98269606 -0.16656972 -0.080812998 0.98229933 -0.16678336\n\t\t -0.085146628 0.98681605 -0.10052766 0.12662131 0.99609363 0.082491837 -0.031128885\n\t\t 0.98681605 -0.10052766 0.12662131 0.99237037 -0.036988121 0.1175573 -0.97018343 -0.040345788\n\t\t -0.23886837 -0.97299111 0.021454195 -0.22977386 -0.85992002 0.03024354 -0.50947601\n\t\t -0.85992002 0.03024354 -0.50947601 -0.8967253 -0.11893094 -0.42625201 -0.97018343\n\t\t -0.040345788 -0.23886837 -0.85992002 0.03024354 -0.50947601 -0.97299111 0.021454195\n\t\t -0.22977386 -0.96670431 0.049653299 -0.2509537 -0.96670431 0.049653299 -0.2509537\n\t\t -0.8689841 0.25913236 -0.42149118 -0.85992002 0.03024354 -0.50947601 -0.37907061\n\t\t 0.66655457 -0.64183486 -0.54576266 0.57554835 -0.60893589 -0.5120092 0.59996313 -0.61467338\n\t\t -0.5120092 0.59996313 -0.61467338 -0.42567238 0.64085799 -0.63878298 -0.37907061\n\t\t 0.66655457 -0.64183486 -0.10986686 0.74520087 -0.65770447 -0.37907061 0.66655457\n\t\t -0.64183486 -0.42567238 0.64085799 -0.63878298 -0.42567238 0.64085799 -0.63878298\n\t\t -0.25620309 0.6946317 -0.67217022 -0.10986686 0.74520087 -0.65770447 -0.012299188\n\t\t 0.7405926 -0.67183453 -0.10986686 0.74520087 -0.65770447 -0.25620309 0.6946317 -0.67217022\n\t\t -0.25620309 0.6946317 -0.67217022 -0.09826982 0.72206783 -0.6847744 -0.012299188\n\t\t 0.7405926 -0.67183453 -0.012299188 0.7405926 -0.67183453 -0.09826982 0.72206783 -0.6847744\n\t\t -2.2624185e-07 0.73168123 -0.68160045 -2.2624185e-07 0.73168123 -0.68160045 -2.2579833e-07\n\t\t 0.73024684 -0.68315691 -0.012299188 0.7405926 -0.67183453 -0.14017142 -0.28196061\n\t\t -0.94912565 -0.16623424 -0.23944834 -0.95654166 -0.41859186 -0.09714061 -0.90295112\n\t\t -0.41859186 -0.09714061 -0.90295112 -0.22305976 -0.093173154 -0.9703055 -0.14017142\n\t\t -0.28196061 -0.94912565 -0.042390127 -0.26996678 -0.96191287 -0.14017142 -0.28196061\n\t\t -0.94912565 -0.22305976 -0.093173154 -0.9703055 -0.22305976 -0.093173154 -0.9703055\n\t\t -0.053346321 -0.11432242 -0.99200416;\n\tsetAttr \".n[14774:14939]\" -type \"float3\"  -0.042390127 -0.26996678 -0.96191287\n\t\t -0.053346321 -0.11432242 -0.99200416 -0.22305976 -0.093173154 -0.9703055 -0.24018069\n\t\t 0.070589162 -0.96813869 -0.24018069 0.070589162 -0.96813869 -0.069063388 0.0069581247\n\t\t -0.99755853 -0.053346321 -0.11432242 -0.99200416 -0.22305976 -0.093173154 -0.9703055\n\t\t -0.41859186 -0.09714061 -0.90295112 -0.48426771 0.013214299 -0.87478256 -0.48426771\n\t\t 0.013214299 -0.87478256 -0.24018069 0.070589162 -0.96813869 -0.22305976 -0.093173154\n\t\t -0.9703055 -0.13647869 -0.27350697 -0.95211643 -0.16623424 -0.23944834 -0.95654166\n\t\t -0.14017142 -0.28196061 -0.94912565 -0.14017142 -0.28196061 -0.94912565 -0.13394564\n\t\t -0.27393422 -0.95236063 -0.13647869 -0.27350697 -0.95211643 -0.065828346 -0.27228624\n\t\t -0.95992917 -0.13394564 -0.27393422 -0.95236063 -0.14017142 -0.28196061 -0.94912565\n\t\t -0.14017142 -0.28196061 -0.94912565 -0.042390127 -0.26996678 -0.96191287 -0.065828346\n\t\t -0.27228624 -0.95992917 -0.41859186 -0.09714061 -0.90295112 -0.79940176 -0.10510603\n\t\t -0.59150976 -0.85992002 0.03024354 -0.50947601 -0.85992002 0.03024354 -0.50947601\n\t\t -0.48426771 0.013214299 -0.87478256 -0.41859186 -0.09714061 -0.90295112 -0.79940176\n\t\t -0.10510603 -0.59150976 -0.77724534 -0.17102601 -0.60548723 -0.8967253 -0.11893094\n\t\t -0.42625201 -0.8967253 -0.11893094 -0.42625201 -0.85992002 0.03024354 -0.50947601\n\t\t -0.79940176 -0.10510603 -0.59150976 -0.065828346 -0.27228624 -0.95992917 -0.042390127\n\t\t -0.26996678 -0.96191287 8.2022723e-08 -0.26526695 -0.96414077 8.2022723e-08 -0.26526695\n\t\t -0.96414077 8.3485389e-08 -0.2699973 -0.96282846 -0.065828346 -0.27228624 -0.95992917\n\t\t -0.053346321 -0.11432242 -0.99200416 -0.069063388 0.0069581247 -0.99755853 -2.1609523e-09\n\t\t 0.0069886642 -0.99996948 -2.1609523e-09 0.0069886642 -0.99996948 3.9558138e-08 -0.12793367\n\t\t -0.99176002 -0.053346321 -0.11432242 -0.99200416 3.9558138e-08 -0.12793367 -0.99176002\n\t\t 8.2022723e-08 -0.26526695 -0.96414077 -0.042390127 -0.26996678 -0.96191287 -0.042390127\n\t\t -0.26996678 -0.96191287 -0.053346321 -0.11432242 -0.99200416 3.9558138e-08 -0.12793367\n\t\t -0.99176002 8.3485389e-08 -0.2699973 -0.96282846 8.3485389e-08 -0.2699973 -0.96282846\n\t\t 8.2022723e-08 -0.26526695 -0.96414077 8.2022723e-08 -0.26526695 -0.96414077 8.2022723e-08\n\t\t -0.26526695 -0.96414077 8.3485389e-08 -0.2699973 -0.96282846 8.2022723e-08 -0.26526695\n\t\t -0.96414077 8.2022723e-08 -0.26526695 -0.96414077 3.9558138e-08 -0.12793367 -0.99176002\n\t\t 3.9558138e-08 -0.12793367 -0.99176002 3.9558138e-08 -0.12793367 -0.99176002 -2.1609523e-09\n\t\t 0.0069886642 -0.99996948 3.9558138e-08 -0.12793367 -0.99176002 3.9558138e-08 -0.12793367\n\t\t -0.99176002 8.2022723e-08 -0.26526695 -0.96414077 -2.1609523e-09 0.0069886642 -0.99996948\n\t\t -2.1609523e-09 0.0069886642 -0.99996948 3.9558138e-08 -0.12793367 -0.99176002 3.0382938e-07\n\t\t -0.98260444 0.18564416 3.0678302e-07 -0.99215674 0.12494285 3.0785878e-07 -0.99563587\n\t\t 0.093234122 3.0785878e-07 -0.99563587 0.093234122 3.0382938e-07 -0.98260444 0.18564416\n\t\t 3.0382938e-07 -0.98260444 0.18564416 3.0382938e-07 -0.98260444 0.18564416 3.0382938e-07\n\t\t -0.98260444 0.18564416 3.0785878e-07 -0.99563587 0.093234122 3.0785878e-07 -0.99563587\n\t\t 0.093234122 3.0785878e-07 -0.99563587 0.093234122 3.0382938e-07 -0.98260444 0.18564416\n\t\t 3.0382938e-07 -0.98260444 0.18564416 3.0382938e-07 -0.98260444 0.18564416 3.0785878e-07\n\t\t -0.99563587 0.093234122 3.0785878e-07 -0.99563587 0.093234122 3.0785878e-07 -0.99563587\n\t\t 0.093234122 3.0382938e-07 -0.98260444 0.18564416 1.9421412e-07 -0.62810141 0.77809995\n\t\t 3.0382938e-07 -0.98260444 0.18564416 3.0785878e-07 -0.99563587 0.093234122 3.0785878e-07\n\t\t -0.99563587 0.093234122 3.0785878e-07 -0.99563587 0.093234122 1.9421412e-07 -0.62810141\n\t\t 0.77809995 3.0920822e-07 -1 7.441745e-08 3.0785878e-07 -0.99563587 0.093234122 3.0785878e-07\n\t\t -0.99563587 0.093234122 3.0785878e-07 -0.99563587 0.093234122 3.0920822e-07 -1 7.441745e-08\n\t\t 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 3.0785878e-07 -0.99563587\n\t\t 0.093234122 3.0785878e-07 -0.99563587 0.093234122 3.0785878e-07 -0.99563587 0.093234122\n\t\t 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08\n\t\t 3.0920822e-07 -1 7.441745e-08 3.0785878e-07 -0.99563587 0.093234122 3.0785878e-07\n\t\t -0.99563587 0.093234122 3.0785878e-07 -0.99563587 0.093234122 3.0920822e-07 -1 7.441745e-08\n\t\t 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 3.0785878e-07 -0.99563587\n\t\t 0.093234122 3.0785878e-07 -0.99563587 0.093234122 3.0678302e-07 -0.99215674 0.12494285\n\t\t 3.0920822e-07 -1 7.441745e-08 1.9421412e-07 -0.62810141 0.77809995 -7.9739282e-09\n\t\t 0.025788214 0.99966431 -7.9739282e-09 0.025788214 0.99966431 -7.9739282e-09 0.025788214\n\t\t 0.99966431 -7.9739282e-09 0.025788214 0.99966431 1.9421412e-07 -0.62810141 0.77809995\n\t\t -0.98654127 -0.15976469 0.034455407 -0.98611403 -0.16119906 0.039033186 -0.987701\n\t\t -0.15427136 0.024506375 -0.987701 -0.15427136 0.024506375 -0.98794514 -0.15457657\n\t\t 0.0069582318 -0.98654127 -0.15976469 0.034455407 -0.98611403 -0.16119906 0.039033186\n\t\t -0.98654127 -0.15976469 0.034455407 -0.99420142 -0.10431257 0.025543999 -0.99420142\n\t\t -0.10431257 0.025543999 -0.99334693 -0.11120976 0.029419851 -0.98611403 -0.16119906\n\t\t 0.039033186 -0.99334693 -0.11120976 0.029419851 -0.99420142 -0.10431257 0.025543999\n\t\t -0.99832147 -0.04983703 0.028595846 -0.99832147 -0.04983703 0.028595846 -0.9980163\n\t\t -0.051515549 0.035370957 -0.99334693 -0.11120976 0.029419851 -0.99771112 -0.015045938\n\t\t -0.065889463 -0.9980163 -0.051515549 0.035370957 -0.99832147 -0.04983703 0.028595846\n\t\t -0.99832147 -0.04983703 0.028595846 -0.99694812 -0.01440505 -0.076326795 -0.99771112\n\t\t -0.015045938 -0.065889463 -0.99829096 -0.024872899 -0.052705467 -0.99771112 -0.015045938\n\t\t -0.065889463 -0.99694812 -0.01440505 -0.076326795 -0.99694812 -0.01440505 -0.076326795\n\t\t -0.9985351 -0.02731438 -0.046479687 -0.99829096 -0.024872899 -0.052705467 -0.99829096\n\t\t -0.024872899 -0.052705467 -0.9985351 -0.02731438 -0.046479687 -0.99337745 -0.10162693\n\t\t 0.053224288 -0.99337745 -0.10162693 0.053224288 -0.99734491 -0.072573319 -0.0026245865\n\t\t -0.99829096 -0.024872899 -0.052705467 -0.99734491 -0.072573319 -0.0026245865 -0.99337745\n\t\t -0.10162693 0.053224288 -0.99804682 -0.054964148 -0.028595839;\n\tsetAttr \".n[14940:15105]\" -type \"float3\"  -0.99804682 -0.054964148 -0.028595839\n\t\t -0.99868768 -0.047151405 -0.018433176 -0.99734491 -0.072573319 -0.0026245865 -0.99868768\n\t\t -0.047151405 -0.018433176 -0.99804682 -0.054964148 -0.028595839 -0.99664295 -0.031525921\n\t\t 0.075228125 -0.99664295 -0.031525921 0.075228125 -0.99496442 -0.046846215 0.088381603\n\t\t -0.99868768 -0.047151405 -0.018433176 -0.99496442 -0.046846215 0.088381603 -0.99664295\n\t\t -0.031525921 0.075228125 -0.98452705 -0.16260292 0.064790808 -0.98452705 -0.16260292\n\t\t 0.064790808 -0.98449653 -0.15988676 0.071871102 -0.99496442 -0.046846215 0.088381603\n\t\t -0.98449653 -0.15988676 0.071871102 -0.98452705 -0.16260292 0.064790808 -0.98528999\n\t\t -0.17029358 -0.012848279 -0.98528999 -0.17029358 -0.012848279 -0.98800617 -0.15390515\n\t\t 0.0098574897 -0.98449653 -0.15988676 0.071871102 -0.98800617 -0.15390515 0.0098574897\n\t\t -0.98528999 -0.17029358 -0.012848279 -0.98794514 -0.15457657 0.0069582318 -0.98794514\n\t\t -0.15457657 0.0069582318 -0.987701 -0.15427136 0.024506375 -0.98800617 -0.15390515\n\t\t 0.0098574897 -0.063539237 -0.95535141 -0.28852192 -0.064119101 -0.94979703 -0.30613109\n\t\t -0.055116154 -0.88781404 -0.45686203 -0.055116154 -0.88781404 -0.45686203 -0.052491561\n\t\t -0.88720363 -0.45832691 -0.063539237 -0.95535141 -0.28852192 -0.057222042 -0.53273118\n\t\t -0.84432501 -0.059236262 -0.53386033 -0.84347051 -0.054841597 -0.53138834 -0.84533215\n\t\t -0.054841597 -0.53138834 -0.84533215 -0.052888412 -0.53028971 -0.8461256 -0.057222042\n\t\t -0.53273118 -0.84432501 -0.064119101 -0.94979703 -0.30613109 -0.063539237 -0.95535141\n\t\t -0.28852192 -0.070558488 -0.99734491 0.016388513 -0.070558488 -0.99734491 0.016388513\n\t\t -0.067506634 -0.99771112 0.0024720735 -0.064119101 -0.94979703 -0.30613109 -0.067506634\n\t\t -0.99771112 0.0024720735 -0.070558488 -0.99734491 0.016388513 -0.064363234 -0.98690754\n\t\t 0.14780122 -0.064363234 -0.98690754 0.14780122 -0.060273752 -0.9874264 0.14606166\n\t\t -0.067506634 -0.99771112 0.0024720735 -0.075686008 0.3426007 -0.9363994 -0.075380825\n\t\t 0.34263122 -0.93642992 -0.082888387 0.36765638 -0.92623675 -0.082888387 0.36765638\n\t\t -0.92623675 -0.082216978 0.36872455 -0.92587054 -0.075686008 0.3426007 -0.9363994\n\t\t -0.082216978 0.36872455 -0.92587054 -0.082888387 0.36765638 -0.92623675 -0.058626179\n\t\t 0.39725935 -0.91579944 -0.058626179 0.39725935 -0.91579944 -0.057222329 0.39744246\n\t\t -0.91582996 -0.082216978 0.36872455 -0.92587054 -0.11758813 0.99273652 0.024567325\n\t\t -0.11154546 0.99337745 0.026489992 -0.16147374 0.97839284 0.12891011 -0.16147374\n\t\t 0.97839284 0.12891011 -0.16562425 0.97787404 0.12759781 -0.11758813 0.99273652 0.024567325\n\t\t -0.16562425 0.97787404 0.12759781 -0.16147374 0.97839284 0.12891011 -0.17377269 0.95434427\n\t\t 0.2428357 -0.17377269 0.95434427 0.2428357 -0.17548172 0.954741 0.24008904 -0.16562425\n\t\t 0.97787404 0.12759781 -0.11880857 0.036500175 0.99221778 -0.11990724 0.036439136\n\t\t 0.99209571 -0.10388502 0.037446253 0.99386579 -0.10388502 0.037446253 0.99386579\n\t\t -0.1031831 0.037507288 0.99392682 -0.11880857 0.036500175 0.99221778 -0.090639777\n\t\t -0.63649398 0.76592308 -0.088350885 -0.64204836 0.76152843 -0.10180954 -0.68291271\n\t\t 0.72331923 -0.10180954 -0.68291271 0.72331923 -0.10361013 -0.68257695 0.72341079\n\t\t -0.090639777 -0.63649398 0.76592308 -0.088350885 -0.64204836 0.76152843 -0.090639777\n\t\t -0.63649398 0.76592308 -0.075044826 -0.59511089 0.80010384 -0.075044826 -0.59511089\n\t\t 0.80010384 -0.072908536 -0.59553814 0.79998177 -0.088350885 -0.64204836 0.76152843\n\t\t -0.1441392 0.93585002 0.32151243 -0.13608231 0.88357186 0.4480727 -0.14868644 0.86870939\n\t\t 0.47242647 -0.14868644 0.86870939 0.47242647 -0.14700794 0.91808826 0.36802265 -0.1441392\n\t\t 0.93585002 0.32151243 -0.1441392 0.93585002 0.32151243 -0.14700794 0.91808826 0.36802265\n\t\t -0.13855433 0.98117 0.1343424 -0.13855433 0.98117 0.1343424 -0.14413922 0.98358101\n\t\t 0.10840168 -0.1441392 0.93585002 0.32151243 -0.14413922 0.98358101 0.10840168 -0.13855433\n\t\t 0.98117 0.1343424 -0.13641804 0.99060023 -0.0060427384 -0.13641804 0.99060023 -0.0060427384\n\t\t -0.13943939 0.99014246 -0.0109257 -0.14413922 0.98358101 0.10840168 -0.13586871 0.98953211\n\t\t -0.048005689 -0.13943939 0.99014246 -0.0109257 -0.13641804 0.99060023 -0.0060427384\n\t\t -0.13641804 0.99060023 -0.0060427384 -0.13354932 0.9896847 -0.05166791 -0.13586871\n\t\t 0.98953211 -0.048005689 -0.055086106 0.63682967 -0.76900548 -0.053834848 0.63710433\n\t\t -0.76885289 -0.060030103 0.62785721 -0.77599418 -0.060030103 0.62785721 -0.77599418\n\t\t -0.060396325 0.62608719 -0.77739805 -0.055086106 0.63682967 -0.76900548 -0.060396325\n\t\t 0.62608719 -0.77739805 -0.060030103 0.62785721 -0.77599418 -0.05874832 0.61854911\n\t\t -0.78353226 -0.05874832 0.61854911 -0.78353226 -0.058626246 0.61857963 -0.78350174\n\t\t -0.060396325 0.62608719 -0.77739805 0.038453624 -0.97399825 -0.2232123 0.040254217\n\t\t -0.97189248 -0.23187956 0.033204447 -0.99829096 -0.047578283 0.033204447 -0.99829096\n\t\t -0.047578283 0.031129189 -0.99844354 -0.046204947 0.038453624 -0.97399825 -0.2232123\n\t\t 0.040254217 -0.97189248 -0.23187956 0.038453624 -0.97399825 -0.2232123 0.041902196\n\t\t -0.9165929 -0.39753404 0.041902196 -0.9165929 -0.39753404 0.043153457 -0.91412097\n\t\t -0.40308842 0.040254217 -0.97189248 -0.23187956 -0.076296151 -0.38908044 0.91802728\n\t\t -0.075411119 -0.38920254 0.91802728 -0.082949191 -0.38303778 0.91998047 -0.082949191\n\t\t -0.38303778 0.91998047 -0.083468005 -0.3832514 0.91982788 -0.076296151 -0.38908044\n\t\t 0.91802728 -0.08130119 -0.37775809 0.92229986 -0.083468005 -0.3832514 0.91982788\n\t\t -0.082949191 -0.38303778 0.91998047 -0.082949191 -0.38303778 0.91998047 -0.081026524\n\t\t -0.37769705 0.9223609 -0.08130119 -0.37775809 0.92229986 0.017456597 -0.032715913\n\t\t -0.9992981 0.014282673 -0.032654878 -0.99935913 0.014648895 -0.032654878 -0.99932861\n\t\t 0.014648895 -0.032654878 -0.99932861 0.017853336 -0.032715913 -0.9992981 0.017456597\n\t\t -0.032715913 -0.9992981 -0.17178881 0.36854139 -0.9135716 -0.17178881 0.36854139\n\t\t -0.9135716 -0.17178881 0.36854139 -0.9135716 -0.98956263 -0.14398664 -0.00064087799\n\t\t -0.99533069 -0.078585461 0.055543695 -0.99807733 -0.038545184 0.048066657 -0.99533069\n\t\t -0.078585461 0.055543695;\n\tsetAttr \".n[15106:15271]\" -type \"float3\"  -0.98345894 -0.17978483 0.020996748 -0.99807733\n\t\t -0.038545184 0.048066657 -0.98956263 -0.14398664 -0.00064087799 -0.99807733 -0.038545184\n\t\t 0.048066657 -0.98681593 -0.10052827 0.12662131 -0.99807733 -0.038545184 0.048066657\n\t\t -0.99609363 0.082491226 -0.031128885 -0.98681593 -0.10052827 0.12662131 -0.91625708\n\t\t -0.39976224 -0.025208259 -0.91625708 -0.39976224 -0.025208259 -0.91625708 -0.39976224\n\t\t -0.025208259 -0.99609363 0.082491226 -0.031128885 -0.99237037 -0.037019249 0.1175573\n\t\t -0.98681593 -0.10052827 0.12662131 -0.98956263 -0.14398664 -0.00064087799 -0.98681593\n\t\t -0.10052827 0.12662131 -0.98269594 -0.16657032 -0.080812998 -0.98681593 -0.10052827\n\t\t 0.12662131 -0.98229921 -0.16678396 -0.085146628 -0.98269594 -0.16657032 -0.080812998\n\t\t 0.96481222 -0.18356855 -0.18811607 0.96441549 -0.18289715 -0.19077119 0.96456808\n\t\t -0.18228677 -0.19067962 0.96456808 -0.18228677 -0.19067962 0.96453756 -0.18921448\n\t\t -0.18384348 0.96481222 -0.18356855 -0.18811607 0.96511739 -0.19180855 -0.17807549\n\t\t 0.96453756 -0.18921448 -0.18384348 0.96456808 -0.18228677 -0.19067962 0.96456808\n\t\t -0.18228677 -0.19067962 0.96258438 -0.19977388 -0.18301949 0.96511739 -0.19180855\n\t\t -0.17807549 0.97238082 -0.14499316 -0.18277533 0.96481222 -0.18356855 -0.18811607\n\t\t 0.96453756 -0.18921448 -0.18384348 0.96453756 -0.18921448 -0.18384348 0.96966463\n\t\t -0.17065923 -0.17490156 0.97238082 -0.14499316 -0.18277533 0.96966463 -0.17065923\n\t\t -0.17490156 0.96453756 -0.18921448 -0.18384348 0.96511739 -0.19180855 -0.17807549\n\t\t 0.98068184 -0.18842098 -0.05233923 0.97238082 -0.14499316 -0.18277533 0.96966463\n\t\t -0.17065923 -0.17490156 0.96966463 -0.17065923 -0.17490156 0.98040718 -0.18594898\n\t\t -0.064790778 0.98068184 -0.18842098 -0.05233923 0.9757989 -0.16867551 -0.13898128\n\t\t 0.98040718 -0.18594898 -0.064790778 0.96966463 -0.17065923 -0.17490156 0.96966463\n\t\t -0.17065923 -0.17490156 0.96771145 -0.17841092 -0.17795341 0.9757989 -0.16867551\n\t\t -0.13898128 0.96511739 -0.19180855 -0.17807549 0.96771145 -0.17841092 -0.17795341\n\t\t 0.96966463 -0.17065923 -0.17490156 0.9638356 -0.17020145 -0.20493178 0.96456808 -0.18228677\n\t\t -0.19067962 0.96441549 -0.18289715 -0.19077119 0.83791614 0.22910267 -0.49534595\n\t\t 0.83791614 0.22910267 -0.49534595 0.83791614 0.22910267 -0.49534595 0.96456808 -0.18228677\n\t\t -0.19067962 0.9638356 -0.17020145 -0.20493178 0.95812869 -0.21445328 -0.18967251\n\t\t 0.95812869 -0.21445328 -0.18967251 0.96258438 -0.19977388 -0.18301949 0.96456808\n\t\t -0.18228677 -0.19067962 0.96511739 -0.19180855 -0.17807549 0.96258438 -0.19977388\n\t\t -0.18301949 0.95941043 -0.21109624 -0.18686482 0.95941043 -0.21109624 -0.18686482\n\t\t 0.96258438 -0.19977388 -0.18301949 0.95812869 -0.21445328 -0.18967251 0.95941043\n\t\t -0.21109624 -0.18686482 0.96819979 -0.18359907 -0.16974394 0.96511739 -0.19180855\n\t\t -0.17807549 0.9757989 -0.16867551 -0.13898128 0.96771145 -0.17841092 -0.17795341\n\t\t 0.96966463 -0.17307018 -0.17252111 0.96511739 -0.19180855 -0.17807549 0.96819979\n\t\t -0.18359907 -0.16974394 0.96966463 -0.17307018 -0.17252111 0.96966463 -0.17307018\n\t\t -0.17252111 0.96771145 -0.17841092 -0.17795341 0.96511739 -0.19180855 -0.17807549\n\t\t 0.96966463 -0.17307018 -0.17252111 0.97073281 -0.16785152 -0.17166661 0.9757989 -0.16867551\n\t\t -0.13898128 0.95812869 -0.21445328 -0.18967251 0.93212688 -0.2863549 -0.22153385\n\t\t 0.95941043 -0.21109624 -0.18686482 0.071261026 -0.99645984 0.044160359 0.059053622\n\t\t -0.98818934 -0.14117855 0.062105473 -0.98834193 -0.13882862 0.062105473 -0.98834193\n\t\t -0.13882862 0.07190191 -0.98892176 0.12973426 0.071261026 -0.99645984 0.044160359\n\t\t 0.071261026 -0.99645984 0.044160359 0.07190191 -0.98892176 0.12973426 0.12433269\n\t\t -0.89727455 0.42356646 0.12433269 -0.89727455 0.42356646 0.11984647 -0.91665387 0.38123727\n\t\t 0.071261026 -0.99645984 0.044160359 0.6726892 -0.72487545 0.14832002 0.65599561 -0.74706239\n\t\t -0.10721147 0.65569043 -0.75456995 -0.025543936 0.65569043 -0.75456995 -0.025543936\n\t\t 0.68239409 -0.70976871 0.17462698 0.6726892 -0.72487545 0.14832002 0.70796853 -0.64049172\n\t\t 0.29752502 0.6726892 -0.72487545 0.14832002 0.68239409 -0.70976871 0.17462698 0.68239409\n\t\t -0.70976871 0.17462698 0.71156973 -0.62160075 0.32746366 0.70796853 -0.64049172 0.29752502\n\t\t 0.018707979 -0.43397325 -0.9006927 0.031342708 -0.63914919 -0.76842546 0.030305076\n\t\t -0.63823366 -0.76921898 0.6447342 -0.64809096 -0.40531626 0.58589447 -0.45780805\n\t\t -0.66866046 0.56999433 -0.39265102 -0.72170174 0.56999433 -0.39265102 -0.72170174\n\t\t 0.64912885 -0.64574105 -0.40195924 0.6447342 -0.64809096 -0.40531626 0.64912885 -0.64574105\n\t\t -0.40195924 0.65569043 -0.75456995 -0.025543936 0.65599561 -0.74706239 -0.10721147\n\t\t 0.65599561 -0.74706239 -0.10721147 0.6447342 -0.64809096 -0.40531626 0.64912885 -0.64574105\n\t\t -0.40195924 0.55052346 -0.16998799 -0.81731617 0.56999433 -0.39265102 -0.72170174\n\t\t 0.58589447 -0.45780805 -0.66866046 0.58589447 -0.45780805 -0.66866046 0.55064553\n\t\t -0.17999807 -0.81505781 0.55052346 -0.16998799 -0.81731617 0.0068056649 -0.12042611\n\t\t -0.99267554 0.006897206 -0.074495755 -0.99719232 0.018707979 -0.43397325 -0.9006927\n\t\t 0.018707979 -0.43397325 -0.9006927 0.020874809 -0.48048347 -0.87673569 0.0068056649\n\t\t -0.12042611 -0.99267554 0.030305076 -0.63823366 -0.76921898 0.020874809 -0.48048347\n\t\t -0.87673569 0.018707979 -0.43397325 -0.9006927 0.57222205 0.056306764 -0.81814021\n\t\t 0.55052346 -0.16998799 -0.81731617 0.55064553 -0.17999807 -0.81505781 0.55064553\n\t\t -0.17999807 -0.81505781 0.57231361 0.024292849 -0.81963563 0.57222205 0.056306764\n\t\t -0.81814021 0.0082399305 0.21643719 -0.97622609 0.006897206 -0.074495755 -0.99719232\n\t\t 0.0068056649 -0.12042611 -0.99267554 0.53929251 0.1615651 -0.82644123 0.57222205\n\t\t 0.056306764 -0.81814021 0.57231361 0.024292849 -0.81963563 0.57231361 0.024292849\n\t\t -0.81963563 0.53852957 0.16193132 -0.82686847 0.53929251 0.1615651 -0.82644123 -0.010651062\n\t\t 0.33149198 -0.94338816 -0.011261432 0.33158356 -0.94332713 0.0082399305 0.21643719\n\t\t -0.97622609 0.0082399305 0.21643719 -0.97622609 0.0083009796 0.17709884 -0.98413038;\n\tsetAttr \".n[15272:15437]\" -type \"float3\"  -0.010651062 0.33149198 -0.94338816 0.0068056649\n\t\t -0.12042611 -0.99267554 0.0083009796 0.17709884 -0.98413038 0.0082399305 0.21643719\n\t\t -0.97622609 0.70751077 -0.54560959 0.44911042 0.70796853 -0.64049172 0.29752502 0.71156973\n\t\t -0.62160075 0.32746366 0.18216522 -0.76284057 0.62034982 0.18253139 -0.57872236 0.79479361\n\t\t 0.18384369 -0.60792857 0.77239299 0.17737371 -0.45478672 0.87273788 0.18384369 -0.60792857\n\t\t 0.77239299 0.18253139 -0.57872236 0.79479361 0.18253139 -0.57872236 0.79479361 0.17734319\n\t\t -0.44526494 0.87762082 0.17737371 -0.45478672 0.87273788 0.17642762 -0.4036682 0.89770204\n\t\t 0.17737371 -0.45478672 0.87273788 0.17734319 -0.44526494 0.87762082 0.17734319 -0.44526494\n\t\t 0.87762082 0.17941843 -0.40110466 0.89825135 0.17642762 -0.4036682 0.89770204 0.17642762\n\t\t -0.4036682 0.89770204 0.17941843 -0.40110466 0.89825135 0.083040982 -0.37482825 0.92333752\n\t\t 0.083040982 -0.37482825 0.92333752 0.080568984 -0.37440097 0.92373425 0.17642762\n\t\t -0.4036682 0.89770204 0.70253623 -0.37302747 0.60597551 0.72060317 -0.39832735 0.56746119\n\t\t 0.72511989 -0.38999575 0.56752223 0.72511989 -0.38999575 0.56752223 0.70119339 -0.37339368\n\t\t 0.60734886 0.70253623 -0.37302747 0.60597551 0.69798893 -0.45963904 0.54908907 0.70751077\n\t\t -0.54560959 0.44911042 0.70311612 -0.52369732 0.48094121 0.70311612 -0.52369732 0.48094121\n\t\t 0.7026583 -0.45130748 0.55000466 0.69798893 -0.45963904 0.54908907 0.7026583 -0.45130748\n\t\t 0.55000466 0.72511989 -0.38999575 0.56752223 0.72060317 -0.39832735 0.56746119 0.72060317\n\t\t -0.39832735 0.56746119 0.69798893 -0.45963904 0.54908907 0.7026583 -0.45130748 0.55000466\n\t\t 0.71156973 -0.62160075 0.32746366 0.70311612 -0.52369732 0.48094121 0.70751077 -0.54560959\n\t\t 0.44911042 0.18384369 -0.60792857 0.77239299 0.17352848 -0.78719431 0.59175396 0.18216522\n\t\t -0.76284057 0.62034982 0.12433269 -0.89727455 0.42356646 0.18216522 -0.76284057 0.62034982\n\t\t 0.17352848 -0.78719431 0.59175396 0.17352848 -0.78719431 0.59175396 0.11984647 -0.91665387\n\t\t 0.38123727 0.12433269 -0.89727455 0.42356646 0.80520016 0.59288335 -0.0092471521\n\t\t 0.81273824 0.58253753 -0.0070803375 0.77043957 0.63585341 -0.045106407 0.77043957\n\t\t 0.63585341 -0.045106407 0.77846599 0.62700301 -0.028840037 0.80520016 0.59288335\n\t\t -0.0092471521 0.73781532 0.67058343 -0.076876178 0.77846599 0.62700301 -0.028840037\n\t\t 0.77043957 0.63585341 -0.045106407 0.77043957 0.63585341 -0.045106407 0.73711336\n\t\t 0.6716516 -0.074221067 0.73781532 0.67058343 -0.076876178 0.051514935 0.99832147\n\t\t 0.02569651 0.049714342 0.99844354 0.024750438 0.054139528 0.9981994 0.025147177 0.054139528\n\t\t 0.9981994 0.025147177 0.056092713 0.99807733 0.025971178 0.051514935 0.99832147 0.02569651\n\t\t 0.056092713 0.99807733 0.025971178 0.054139528 0.9981994 0.025147177 0.071596116\n\t\t 0.99710071 0.024536807 0.071596116 0.99710071 0.024536807 0.071718194 0.99710071\n\t\t 0.025360808 0.056092713 0.99807733 0.025971178 0.73781532 0.67058343 -0.076876178\n\t\t 0.73711336 0.6716516 -0.074221067 0.73308492 0.67278075 -0.099581949 0.73308492 0.67278075\n\t\t -0.099581949 0.73281026 0.67305547 -0.099642985 0.73781532 0.67058343 -0.076876178\n\t\t 0.082399674 0.99639881 0.019226586 0.071718194 0.99710071 0.025360808 0.071596116\n\t\t 0.99710071 0.024536807 0.071596116 0.99710071 0.024536807 0.085665151 0.99615467\n\t\t 0.017639624 0.082399674 0.99639881 0.019226586 0.61226225 0.17062911 -0.7719962 0.61009544\n\t\t 0.1344952 -0.78081608 0.55696285 -0.17929612 -0.81093782 0.55696285 -0.17929612 -0.81093782\n\t\t 0.56666774 -0.14133109 -0.81170082 0.61226225 0.17062911 -0.7719962 0.51399285 -0.31626323\n\t\t -0.79732656 0.56666774 -0.14133109 -0.81170082 0.55696285 -0.17929612 -0.81093782\n\t\t 0.55696285 -0.17929612 -0.81093782 0.51396233 -0.31629375 -0.79732656 0.51399285\n\t\t -0.31626323 -0.79732656 0.61290312 0.30143145 -0.73036897 0.61009544 0.1344952 -0.78081608\n\t\t 0.61226225 0.17062911 -0.7719962 0.61226225 0.17062911 -0.7719962 0.61290312 0.30133989\n\t\t -0.73039949 0.61290312 0.30143145 -0.73036897 0.24561267 0.96920687 -0.017120956\n\t\t 0.32883665 0.93377495 -0.14108714 0.32306865 0.93707097 -0.13223678 0.32306865 0.93707097\n\t\t -0.13223678 0.24561267 0.96920687 -0.017120956 0.24561267 0.96920687 -0.017120956\n\t\t 0.39924288 0.88113052 -0.25333419 0.32306865 0.93707097 -0.13223678 0.32883665 0.93377495\n\t\t -0.14108714 0.32883665 0.93377495 -0.14108714 0.3992734 0.8811 -0.25336471 0.39924288\n\t\t 0.88113052 -0.25333419 0.61009544 0.13446468 -0.78081608 0.55696285 -0.17929612 -0.81093782\n\t\t 0.56193739 -0.16028309 -0.81148714 0.56193739 -0.16028309 -0.81148714 0.61128569\n\t\t 0.15253164 -0.7765435 0.61009544 0.13446468 -0.78081608 0.51396233 -0.31629375 -0.79732656\n\t\t 0.56193739 -0.16028309 -0.81148714 0.55696285 -0.17929612 -0.81093782 0.55696285\n\t\t -0.17929612 -0.81093782 0.51396233 -0.31629375 -0.79735708 0.51396233 -0.31629375\n\t\t -0.79732656 0.61128569 0.15253164 -0.7765435 0.56193739 -0.16028309 -0.81148714 0.56669825\n\t\t -0.1411785 -0.81170082 0.56669825 -0.1411785 -0.81170082 0.61226225 0.17053756 -0.77202672\n\t\t 0.61128569 0.15253164 -0.7765435 0.56193739 -0.16028309 -0.81148714 0.51396233 -0.31629375\n\t\t -0.79732656 0.51396233 -0.31626323 -0.79735708 0.51396233 -0.31626323 -0.79735708\n\t\t 0.56669825 -0.1411785 -0.81170082 0.56193739 -0.16028309 -0.81148714 0.61290312 0.30133989\n\t\t -0.73039949 0.61009544 0.13446468 -0.78081608 0.61128569 0.15253164 -0.7765435 0.61128569\n\t\t 0.15253164 -0.7765435 0.61290312 0.30137041 -0.73039949 0.61290312 0.30133989 -0.73039949\n\t\t 0.61290312 0.30137041 -0.73039949 0.61128569 0.15253164 -0.7765435 0.61226225 0.17053756\n\t\t -0.77202672 0.61226225 0.17053756 -0.77202672 0.61290312 0.30137041 -0.73039949 0.61290312\n\t\t 0.30137041 -0.73039949 0.24561267 0.96920687 -0.017120956 0.32880613 0.93377495 -0.14105663\n\t\t 0.32602894 0.93539244 -0.136723 0.32602894 0.93539244 -0.136723 0.14410809 0.98937964\n\t\t -0.017487179 0.24561267 0.96920687 -0.017120956;\n\tsetAttr \".n[15438:15603]\" -type \"float3\"  0.15207341 0.9881894 -0.01745666 0.14410809\n\t\t 0.98937964 -0.017487179 0.32602894 0.93539244 -0.136723 0.32602894 0.93539244 -0.136723\n\t\t 0.323679 0.93673527 -0.13315234 0.15207341 0.9881894 -0.01745666 0.3992734 0.8811\n\t\t -0.25336471 0.32602894 0.93539244 -0.136723 0.32880613 0.93377495 -0.14105663 0.32880613\n\t\t 0.93377495 -0.14105663 0.39924288 0.88113052 -0.25333419 0.3992734 0.8811 -0.25336471\n\t\t -0.14410871 0.98937953 -0.017487179 0.14410809 0.98937964 -0.017487179 0.15207341\n\t\t 0.9881894 -0.01745666 0.15207341 0.9881894 -0.01745666 -0.15207404 0.98818928 -0.01745666\n\t\t -0.14410871 0.98937953 -0.017487179 0.39930391 0.8811 -0.25339523 0.323679 0.93673527\n\t\t -0.13315234 0.32602894 0.93539244 -0.136723 0.32602894 0.93539244 -0.136723 0.3992734\n\t\t 0.8811 -0.25336471 0.39930391 0.8811 -0.25339523 -0.15247017 -0.98181105 -0.11282685\n\t\t -0.054414205 -0.96893215 -0.24118771 -0.058167975 -0.96990877 -0.2363963 -0.058167975\n\t\t -0.96990877 -0.2363963 -0.15247017 -0.98181105 -0.11282685 -0.15247017 -0.98181105\n\t\t -0.11282685 0.041383386 -0.93246251 -0.35880604 -0.058167975 -0.96990877 -0.2363963\n\t\t -0.054414205 -0.96893215 -0.24118771 -0.054414205 -0.96893215 -0.24118771 0.041383386\n\t\t -0.93246251 -0.35880604 0.041383386 -0.93246251 -0.35880604 0.61214018 0.16858438\n\t\t -0.77254558 0.60997337 0.13281669 -0.78118229 0.5575732 -0.17700723 -0.81099886 0.5575732\n\t\t -0.17700723 -0.81099886 0.56709498 -0.13953051 -0.81173134 0.61214018 0.16858438\n\t\t -0.77254558 0.61302519 0.29776922 -0.73177284 0.60997337 0.13281669 -0.78118229 0.61214018\n\t\t 0.16858438 -0.77254558 0.61214018 0.16858438 -0.77254558 0.61302519 0.29776922 -0.73177284\n\t\t 0.61302519 0.29776922 -0.73177284 0.51539671 -0.31235686 -0.79796749 0.56709498 -0.13953051\n\t\t -0.81173134 0.5575732 -0.17700723 -0.81099886 0.5575732 -0.17700723 -0.81099886 0.51539671\n\t\t -0.31235686 -0.79796749 0.51539671 -0.31235686 -0.79796749 0.23413771 0.97219771\n\t\t -0.00070199807 0.32056612 0.93847477 -0.12839144 0.31488967 0.94152665 -0.11972418\n\t\t 0.31488967 0.94152665 -0.11972418 0.23413771 0.97219771 -0.00070199807 0.23413771\n\t\t 0.97219771 -0.00070199807 0.39399368 0.88592196 -0.24469747 0.31488967 0.94152665\n\t\t -0.11972418 0.32056612 0.93847477 -0.12839144 0.32056612 0.93847477 -0.12839144 0.39399368\n\t\t 0.88592196 -0.24469747 0.39399368 0.88592196 -0.24469747 -0.16473861 -0.98162794\n\t\t -0.096133232 -0.064759977 -0.97146517 -0.22812578 -0.068239093 -0.97225869 -0.2237006\n\t\t -0.068239093 -0.97225869 -0.2237006 -0.16473861 -0.98162794 -0.096102715 -0.16473861\n\t\t -0.98162794 -0.096133232 0.033692725 -0.93624681 -0.3496505 -0.068239093 -0.97225869\n\t\t -0.2237006 -0.064759977 -0.97146517 -0.22812578 -0.064759977 -0.97146517 -0.22812578\n\t\t 0.033692725 -0.93627733 -0.34961998 0.033692725 -0.93624681 -0.3496505 -0.47154152\n\t\t 0.083315313 -0.8778649 -0.49909967 -0.088198714 -0.8620258 -0.45576343 -0.037385382\n\t\t -0.88930935 -0.45576343 -0.037385382 -0.88930935 -0.44935453 0.04559445 -0.89217812\n\t\t -0.47154152 0.083315313 -0.8778649 -0.77324742 -0.27372077 -0.5719474 -0.71550632\n\t\t -0.40302768 -0.57057399 -0.70021653 -0.36787039 -0.61183506 -0.70021653 -0.36787039\n\t\t -0.61183506 -0.77394933 -0.27018064 -0.57267982 -0.77324742 -0.27372077 -0.5719474\n\t\t 0.97378463 -0.087831959 0.2097232 0.97412032 0.084383994 0.20963164 0.98425245 0.039430231\n\t\t 0.17218544 0.98425245 0.039430231 0.17218544 0.98394728 -0.042939227 0.17319255 0.97378463\n\t\t -0.087831959 0.2097232 0.79915762 0.27301887 0.53550828 0.79262662 0.39942652 0.46058533\n\t\t 0.81832319 0.36832815 0.44120607 0.81832319 0.36832815 0.44120607 0.79967642 0.26987544\n\t\t 0.53633231 0.79915762 0.27301887 0.53550828 -0.56181532 0.26322192 -0.78423417 -0.63780648\n\t\t 0.45884553 -0.61854923 -0.62343222 0.42286423 -0.65764344 -0.62343222 0.42286423\n\t\t -0.65764344 -0.55711544 0.25446311 -0.79045993 -0.56181532 0.26322192 -0.78423417\n\t\t -0.44935453 0.04559445 -0.89217812 -0.56181532 0.26322192 -0.78423417 -0.55711544\n\t\t 0.25446311 -0.79045993 -0.55711544 0.25446311 -0.79045993 -0.47154152 0.083315313\n\t\t -0.8778649 -0.44935453 0.04559445 -0.89217812 -0.7388227 0.30408612 -0.60136724 -0.62343222\n\t\t 0.42286423 -0.65764344 -0.63780648 0.45884553 -0.61854923 -0.63780648 0.45884553\n\t\t -0.61854923 -0.74037915 0.29996613 -0.60151982 -0.7388227 0.30408612 -0.60136724\n\t\t -0.61079741 -0.23358892 -0.75649279 -0.45576343 -0.037385382 -0.88930935 -0.49909967\n\t\t -0.088198714 -0.8620258 -0.49909967 -0.088198714 -0.8620258 -0.61702317 -0.24152374\n\t\t -0.7489242 -0.61079741 -0.23358892 -0.75649279 0.89971626 -0.26541919 0.34644616\n\t\t 0.73583192 -0.46311811 0.49400315 0.7790156 -0.42390183 0.46192819 0.7790156 -0.42390183\n\t\t 0.46192819 0.90365314 -0.25928497 0.34083074 0.89971626 -0.26541919 0.34644616 0.98394728\n\t\t -0.042939227 0.17319255 0.89971626 -0.26541919 0.34644616 0.90365314 -0.25928497\n\t\t 0.34083074 0.90365314 -0.25928497 0.34083074 0.97378463 -0.087831959 0.2097232 0.98394728\n\t\t -0.042939227 0.17319255 0.76207781 -0.30402511 0.57164222 0.7790156 -0.42390183 0.46192819\n\t\t 0.73583192 -0.46311811 0.49400315 0.73583192 -0.46311811 0.49400315 0.76296288 -0.30017978\n\t\t 0.57246619 0.76207781 -0.30402511 0.57164222 0.91576886 0.23108646 0.32853171 0.98425245\n\t\t 0.039430231 0.17218544 0.97412032 0.084383994 0.20963164 0.97412032 0.084383994 0.20963164\n\t\t 0.91128266 0.23880765 0.33542889 0.91576886 0.23108646 0.32853171 -0.056275833 -0.96942043\n\t\t -0.23883778 0.041352868 -0.93249303 -0.35877553 0.041352868 -0.93246251 -0.35880604\n\t\t 0.041352868 -0.93246251 -0.35880604 -0.058167975 -0.96987826 -0.2363963 -0.056275833\n\t\t -0.96942043 -0.23883778 0.041352868 -0.93249303 -0.35877553 -0.056275833 -0.96942043\n\t\t -0.23883778 -0.053681761 -0.96874905 -0.24213378 -0.053681761 -0.96874905 -0.24213378\n\t\t 0.041383386 -0.93246251 -0.35883656 0.041352868 -0.93249303 -0.35877553 -0.089479961\n\t\t -0.98947114 -0.11371189 -0.056275833 -0.96942043 -0.23883778 -0.058167975 -0.96987826\n\t\t -0.2363963 -0.058167975 -0.96987826 -0.2363963;\n\tsetAttr \".n[15604:15769]\" -type \"float3\"  -0.15247017 -0.98181105 -0.11282685 -0.089479961\n\t\t -0.98947114 -0.11371189 -0.094057739 -0.98904383 -0.11365086 -0.053681761 -0.96874905\n\t\t -0.24213378 -0.056275833 -0.96942043 -0.23883778 -0.056275833 -0.96942043 -0.23883778\n\t\t -0.089479961 -0.98947114 -0.11371189 -0.094057739 -0.98904383 -0.11365086 -0.094057739\n\t\t -0.98904383 -0.11365086 -0.089479961 -0.98947114 -0.11371189 0.089480571 -0.98947114\n\t\t -0.11371189 0.089480571 -0.98947114 -0.11371189 0.09405835 -0.98904383 -0.11365086\n\t\t -0.094057739 -0.98904383 -0.11365086 -0.71550632 -0.40302768 -0.57057399 -0.61079741\n\t\t -0.23358892 -0.75649279 -0.61702317 -0.24152374 -0.7489242 -0.61702317 -0.24152374\n\t\t -0.7489242 -0.70021653 -0.36787039 -0.61183506 -0.71550632 -0.40302768 -0.57057399\n\t\t 0.79262662 0.39942652 0.46058533 0.91576886 0.23108646 0.32853171 0.91128266 0.23880765\n\t\t 0.33542889 0.91128266 0.23880765 0.33542889 0.81832319 0.36832815 0.44120607 0.79262662\n\t\t 0.39942652 0.46058533 0.80382705 6.1329833e-05 0.59480578 0.80379653 -3.0225699e-05\n\t\t 0.59486681 0.80382705 2.9281614e-07 0.59483629 0.80382705 2.9281614e-07 0.59483629\n\t\t 0.80382705 2.9281387e-07 0.59480578 0.80382705 6.1329833e-05 0.59480578 0.80385756\n\t\t 2.928233e-07 0.59480578 0.80382705 6.1329833e-05 0.59480578 0.80382705 2.9281387e-07\n\t\t 0.59480578 0.80382705 2.9281387e-07 0.59480578 0.80382705 2.9281387e-07 0.59480578\n\t\t 0.80385756 2.928233e-07 0.59480578 0.80385756 -3.0225687e-05 0.59480578 0.80385756\n\t\t 2.928233e-07 0.59480578 0.80382705 2.9281387e-07 0.59480578 0.80382705 2.9281387e-07\n\t\t 0.59480578 0.80382705 2.9281387e-07 0.59480578 0.80385756 -3.0225687e-05 0.59480578\n\t\t 0.80382705 2.9281387e-07 0.59480578 0.80385756 -3.0225687e-05 0.59480578 0.80382705\n\t\t 2.9281387e-07 0.59480578 0.80382705 2.9281387e-07 0.59480578 0.80382705 2.9281387e-07\n\t\t 0.59480578 0.80382705 2.9281387e-07 0.59480578 0.80382705 2.9281614e-07 0.59483629\n\t\t 0.80382705 2.9281614e-07 0.59483629 0.80379653 -3.0225699e-05 0.59486681 0.80379653\n\t\t -3.0225699e-05 0.59486681 0.80379653 -3.0225699e-05 0.59486681 0.80382705 2.9281614e-07\n\t\t 0.59483629 0.80382705 2.9281387e-07 0.59480578 0.80382705 2.9281614e-07 0.59483629\n\t\t 0.80379653 -3.0225699e-05 0.59486681 0.80379653 -3.0225699e-05 0.59486681 0.80385756\n\t\t 2.9282103e-07 0.59477526 0.80382705 2.9281387e-07 0.59480578 0.80385756 2.928233e-07\n\t\t 0.59480578 0.80382705 2.9281387e-07 0.59480578 0.80385756 2.9282103e-07 0.59477526\n\t\t 0.80385756 2.9282103e-07 0.59477526 0.80385756 2.928233e-07 0.59480578 0.80385756\n\t\t 2.928233e-07 0.59480578 0.56376851 -0.15295865 -0.81160927 0.56724757 -0.13895066\n\t\t -0.81173134 0.61214018 0.16788246 -0.77269816 0.61214018 0.16788246 -0.77269816 0.61116362\n\t\t 0.15076157 -0.77697074 0.56376851 -0.15295865 -0.81160927 0.61116362 0.15076157 -0.77697074\n\t\t 0.61214018 0.16788246 -0.77269816 0.61311674 0.29660952 -0.73216957 0.61311674 0.29660952\n\t\t -0.73216957 0.61308622 0.29676211 -0.73213905 0.61116362 0.15076157 -0.77697074 0.56724757\n\t\t -0.13895066 -0.81173134 0.56376851 -0.15295865 -0.81160927 0.51582396 -0.31110561\n\t\t -0.79818112 0.51582396 -0.31110561 -0.79818112 0.51585448 -0.31104454 -0.79818112\n\t\t 0.56724757 -0.13895066 -0.81173134 0.39219311 0.88753939 -0.24167614 0.39219311 0.88750887\n\t\t -0.24176769 0.31272286 0.94265586 -0.11642817 0.31272286 0.94265586 -0.11642817 0.31693444\n\t\t 0.94045854 -0.12277602 0.39219311 0.88753939 -0.24167614 0.31693444 0.94045854 -0.12277602\n\t\t 0.31272286 0.94265586 -0.11642817 0.23160467 0.97277755 0.00302126 0.23160467 0.97277755\n\t\t 0.00302126 0.23160467 0.97277755 0.00302126 0.31693444 0.94045854 -0.12277602 -0.068086497\n\t\t -0.97225869 -0.22373112 -0.067445606 -0.9721061 -0.22458564 0.031098653 -0.93749809\n\t\t -0.34656814 0.031098653 -0.93749809 -0.34656814 0.03091554 -0.93758965 -0.34635451\n\t\t -0.068086497 -0.97225869 -0.22373112 -0.067445606 -0.9721061 -0.22458564 -0.068086497\n\t\t -0.97225869 -0.22373112 -0.16754632 -0.98150587 -0.092409968 -0.16754632 -0.98150587\n\t\t -0.092409968 -0.16754632 -0.98150587 -0.092409968 -0.067445606 -0.9721061 -0.22458564\n\t\t 0.76604515 -0.20746455 0.60835594 0.77108073 -0.26569387 0.57860041 0.74910742 -0.21396498\n\t\t 0.62691122 0.76604515 -0.20746455 0.60835594 0.74910742 -0.21396498 0.62691122 0.76781523\n\t\t -0.20233743 0.60783714 0.74910742 -0.21396498 0.62691122 0.75695068 -0.20334454 0.62099063\n\t\t 0.76781523 -0.20233743 0.60783714 0.76604515 -0.20746455 0.60835594 0.76781523 -0.20233743\n\t\t 0.60783714 0.79436636 -0.12408797 0.59456158 0.76781523 -0.20233743 0.60783714 0.77489555\n\t\t -0.18274455 0.60505998 0.79436636 -0.12408797 0.59456158 0.76604515 -0.20746455 0.60835594\n\t\t 0.79436636 -0.12408797 0.59456158 0.79668576 -0.11542071 0.5932188 -0.96456796 -0.18228737\n\t\t -0.19067962 -0.96441537 -0.18289775 -0.19077119 -0.9648121 -0.18356915 -0.18811607\n\t\t -0.9648121 -0.18356915 -0.18811607 -0.96453744 -0.18921508 -0.18384348 -0.96456796\n\t\t -0.18228737 -0.19067962 -0.96456796 -0.18228737 -0.19067962 -0.96453744 -0.18921508\n\t\t -0.18384348 -0.96511728 -0.19180915 -0.17807549 -0.96511728 -0.19180915 -0.17807549\n\t\t -0.96258426 -0.19977447 -0.18301949 -0.96456796 -0.18228737 -0.19067962 -0.96453744\n\t\t -0.18921508 -0.18384348 -0.9648121 -0.18356915 -0.18811607 -0.9723807 -0.14499375\n\t\t -0.18277533 -0.9723807 -0.14499375 -0.18277533 -0.96966451 -0.17065983 -0.17490156\n\t\t -0.96453744 -0.18921508 -0.18384348 -0.96511728 -0.19180915 -0.17807549 -0.96453744\n\t\t -0.18921508 -0.18384348 -0.96966451 -0.17065983 -0.17490156 -0.96966451 -0.17065983\n\t\t -0.17490156 -0.9723807 -0.14499375 -0.18277533 -0.98068172 -0.18842158 -0.05233923\n\t\t -0.98068172 -0.18842158 -0.05233923 -0.98040706 -0.18594958 -0.064790778 -0.96966451\n\t\t -0.17065983 -0.17490156 -0.96966451 -0.17065983 -0.17490156 -0.98040706 -0.18594958\n\t\t -0.064790778 -0.97579879 -0.16867611 -0.13898128 -0.97579879 -0.16867611 -0.13898128\n\t\t -0.96771133 -0.17841151 -0.17795341 -0.96966451 -0.17065983 -0.17490156 -0.96966451\n\t\t -0.17065983 -0.17490156 -0.96771133 -0.17841151 -0.17795341 -0.96511728 -0.19180915\n\t\t -0.17807549 -0.96441537 -0.18289775 -0.19077119 -0.96456796 -0.18228737 -0.19067962;\n\tsetAttr \".n[15770:15935]\" -type \"float3\"  -0.96383548 -0.17020205 -0.20493178 -0.83791625\n\t\t 0.22910216 -0.49534595 -0.83791625 0.22910216 -0.49534595 -0.83791625 0.22910216\n\t\t -0.49534595 -0.96456796 -0.18228737 -0.19067962 -0.96258426 -0.19977447 -0.18301949\n\t\t -0.95812857 -0.21445388 -0.18967251 -0.95812857 -0.21445388 -0.18967251 -0.96383548\n\t\t -0.17020205 -0.20493178 -0.96456796 -0.18228737 -0.19067962 -0.95941031 -0.21109684\n\t\t -0.18686482 -0.96258426 -0.19977447 -0.18301949 -0.96511728 -0.19180915 -0.17807549\n\t\t -0.95812857 -0.21445388 -0.18967251 -0.96258426 -0.19977447 -0.18301949 -0.95941031\n\t\t -0.21109684 -0.18686482 -0.96511728 -0.19180915 -0.17807549 -0.96819967 -0.18363018\n\t\t -0.16974394 -0.95941031 -0.21109684 -0.18686482 -0.96966451 -0.17307077 -0.17252111\n\t\t -0.96771133 -0.17841151 -0.17795341 -0.97579879 -0.16867611 -0.13898128 -0.96511728\n\t\t -0.19180915 -0.17807549 -0.96771133 -0.17841151 -0.17795341 -0.96966451 -0.17307077\n\t\t -0.17252111 -0.96966451 -0.17307077 -0.17252111 -0.96819967 -0.18363018 -0.16974394\n\t\t -0.96511728 -0.19180915 -0.17807549 -0.97579879 -0.16867611 -0.13898128 -0.97073269\n\t\t -0.16785212 -0.17166661 -0.96966451 -0.17307077 -0.17252111 -0.95941031 -0.21109684\n\t\t -0.18686482 -0.93212676 -0.2863555 -0.22153385 -0.95812857 -0.21445388 -0.18967251\n\t\t -0.068300121 -0.99676502 0.041810431 -0.075227819 -0.98950166 0.12338641 -0.062104862\n\t\t -0.98834193 -0.13882862 -0.062104862 -0.98834193 -0.13882862 -0.059053011 -0.98818934\n\t\t -0.14117855 -0.068300121 -0.99676502 0.041810431 -0.075227819 -0.98950166 0.12338641\n\t\t -0.068300121 -0.99676502 0.041810431 -0.11523761 -0.91332752 0.39054543 -0.11523761\n\t\t -0.91332752 0.39054543 -0.12875731 -0.8949858 0.42704555 -0.075227819 -0.98950166\n\t\t 0.12338641 -0.65568995 -0.75457031 -0.025543936 -0.65599513 -0.74706274 -0.10721147\n\t\t -0.67268872 -0.72487581 0.14832002 -0.67268872 -0.72487581 0.14832002 -0.68239361\n\t\t -0.70976919 0.17462698 -0.65568995 -0.75457031 -0.025543936 -0.68239361 -0.70976919\n\t\t 0.17462698 -0.67268872 -0.72487581 0.14832002 -0.70796818 -0.6404922 0.29752502 -0.70796818\n\t\t -0.6404922 0.29752502 -0.71156937 -0.62160122 0.32746366 -0.68239361 -0.70976919\n\t\t 0.17462698 -0.030304682 -0.63823366 -0.76921898 -0.031342313 -0.63914919 -0.76842546\n\t\t -0.018860305 -0.43421742 -0.90060115 -0.56999409 -0.39265138 -0.72170174 -0.58589423\n\t\t -0.45780841 -0.66866046 -0.64473385 -0.64809132 -0.40531626 -0.64473385 -0.64809132\n\t\t -0.40531626 -0.6491285 -0.6457414 -0.40195924 -0.56999409 -0.39265138 -0.72170174\n\t\t -0.65599513 -0.74706274 -0.10721147 -0.65568995 -0.75457031 -0.025543936 -0.6491285\n\t\t -0.6457414 -0.40195924 -0.6491285 -0.6457414 -0.40195924 -0.64473385 -0.64809132\n\t\t -0.40531626 -0.65599513 -0.74706274 -0.10721147 -0.58589423 -0.45780841 -0.66866046\n\t\t -0.56999409 -0.39265138 -0.72170174 -0.55052334 -0.17001884 -0.81731617 -0.55052334\n\t\t -0.17001884 -0.81731617 -0.55064541 -0.1799984 -0.81505781 -0.58589423 -0.45780841\n\t\t -0.66866046 -0.02072192 -0.48060554 -0.87667465 -0.018860305 -0.43421742 -0.90060115\n\t\t -0.0070802714 -0.074282125 -0.99719232 -0.018860305 -0.43421742 -0.90060115 -0.02072192\n\t\t -0.48060554 -0.87667465 -0.030304682 -0.63823366 -0.76921898 -0.0070802714 -0.074282125\n\t\t -0.99719232 -0.0066224793 -0.12005989 -0.99273658 -0.02072192 -0.48060554 -0.87667465\n\t\t -0.55064541 -0.1799984 -0.81505781 -0.55052334 -0.17001884 -0.81731617 -0.57222205\n\t\t 0.056306414 -0.81814021 -0.57222205 0.056306414 -0.81814021 -0.57231361 0.024292495\n\t\t -0.81963563 -0.55064541 -0.1799984 -0.81505781 -0.0066224793 -0.12005989 -0.99273658\n\t\t -0.0070802714 -0.074282125 -0.99719232 -0.0082400646 0.21643719 -0.97622609 -0.57231361\n\t\t 0.024292495 -0.81963563 -0.57222205 0.056306414 -0.81814021 -0.53929263 0.16153425\n\t\t -0.82644123 -0.53929263 0.16153425 -0.82644123 -0.53852969 0.16193099 -0.82686847\n\t\t -0.57231361 0.024292495 -0.81963563 -0.0082400646 0.21643719 -0.97622609 0.011261228\n\t\t 0.33158356 -0.94332713 0.010650857 0.33149198 -0.94338816 0.010650857 0.33149198\n\t\t -0.94338816 -0.0083010895 0.17709884 -0.98413038 -0.0082400646 0.21643719 -0.97622609\n\t\t -0.0082400646 0.21643719 -0.97622609 -0.0083010895 0.17709884 -0.98413038 -0.0066224793\n\t\t -0.12005989 -0.99273658 -0.71156937 -0.62160122 0.32746366 -0.70796818 -0.6404922\n\t\t 0.29752502 -0.70751041 -0.54561007 0.44911042 -0.1838433 -0.60792869 0.77239299 -0.18253103\n\t\t -0.57872248 0.79479361 -0.18216474 -0.76284069 0.62034982 -0.18216474 -0.76284069\n\t\t 0.62034982 -0.173528 -0.78719443 0.59175396 -0.1838433 -0.60792869 0.77239299 -0.18253103\n\t\t -0.57872248 0.79479361 -0.1838433 -0.60792869 0.77239299 -0.17737344 -0.45478684\n\t\t 0.87273788 -0.17737344 -0.45478684 0.87273788 -0.17734292 -0.44529557 0.87762082\n\t\t -0.18253103 -0.57872248 0.79479361 -0.17734292 -0.44529557 0.87762082 -0.17737344\n\t\t -0.45478684 0.87273788 -0.17642738 -0.40366831 0.89770204 -0.17642738 -0.40366831\n\t\t 0.89770204 -0.17941819 -0.40110478 0.89825135 -0.17734292 -0.44529557 0.87762082\n\t\t -0.083040744 -0.37482831 0.92333752 -0.17941819 -0.40110478 0.89825135 -0.17642738\n\t\t -0.40366831 0.89770204 -0.17642738 -0.40366831 0.89770204 -0.080568746 -0.37440103\n\t\t 0.92373425 -0.083040744 -0.37482831 0.92333752 -0.72511965 -0.38999623 0.56752223\n\t\t -0.72060293 -0.39832777 0.56746119 -0.70253599 -0.37302789 0.60597551 -0.70253599\n\t\t -0.37302789 0.60597551 -0.70119315 -0.3733941 0.60734886 -0.72511965 -0.38999623\n\t\t 0.56752223 -0.70311576 -0.52369779 0.48094121 -0.70751041 -0.54561007 0.44911042\n\t\t -0.69798869 -0.45963946 0.54908907 -0.69798869 -0.45963946 0.54908907 -0.70265806\n\t\t -0.45130789 0.55000466 -0.70311576 -0.52369779 0.48094121 -0.72060293 -0.39832777\n\t\t 0.56746119 -0.72511965 -0.38999623 0.56752223 -0.70265806 -0.45130789 0.55000466\n\t\t -0.70265806 -0.45130789 0.55000466 -0.69798869 -0.45963946 0.54908907 -0.72060293\n\t\t -0.39832777 0.56746119 -0.70751041 -0.54561007 0.44911042 -0.70311576 -0.52369779\n\t\t 0.48094121 -0.71156937 -0.62160122 0.32746366 -0.173528 -0.78719443 0.59175396 -0.18216474\n\t\t -0.76284069 0.62034982 -0.12875731 -0.8949858 0.42704555 -0.12875731 -0.8949858 0.42704555\n\t\t -0.11523761 -0.91332752 0.39054543 -0.173528 -0.78719443 0.59175396;\n\tsetAttr \".n[15936:16101]\" -type \"float3\"  -0.77043992 0.63585293 -0.045106407 -0.8127386\n\t\t 0.58253706 -0.0070803375 -0.80520052 0.59288287 -0.0092471521 -0.80520052 0.59288287\n\t\t -0.0092471521 -0.77846634 0.62700254 -0.028840037 -0.77043992 0.63585293 -0.045106407\n\t\t -0.77043992 0.63585293 -0.045106407 -0.77846634 0.62700254 -0.028840037 -0.73781568\n\t\t 0.67058295 -0.076876178 -0.73781568 0.67058295 -0.076876178 -0.73711371 0.67162061\n\t\t -0.074221067 -0.77043992 0.63585293 -0.045106407 -0.055299848 0.99810785 0.026459474\n\t\t -0.04971496 0.99844354 0.024750438 -0.051515553 0.99832147 0.02569651 -0.051515553\n\t\t 0.99832147 0.02569651 -0.055238809 0.99807733 0.027313992 -0.055299848 0.99810785\n\t\t 0.026459474 -0.070253916 0.99722284 0.023560215 -0.072878502 0.99707019 0.022492066\n\t\t -0.055299848 0.99810785 0.026459474 -0.055299848 0.99810785 0.026459474 -0.055238809\n\t\t 0.99807733 0.027313992 -0.070253916 0.99722284 0.023560215 -0.73308527 0.67278028\n\t\t -0.099581949 -0.73711371 0.67162061 -0.074221067 -0.73781568 0.67058295 -0.076876178\n\t\t -0.73781568 0.67058295 -0.076876178 -0.73281062 0.67305499 -0.099642985 -0.73308527\n\t\t 0.67278028 -0.099581949 -0.082400285 0.99639881 0.019226586 -0.085665762 0.99615467\n\t\t 0.017639624 -0.072878502 0.99707019 0.022492066 -0.072878502 0.99707019 0.022492066\n\t\t -0.070253916 0.99722284 0.023560215 -0.082400285 0.99639881 0.019226586 -0.61226237\n\t\t 0.17062873 -0.7719962 -0.56666762 -0.14133145 -0.81170082 -0.55696273 -0.17929648\n\t\t -0.81093782 -0.55696273 -0.17929648 -0.81093782 -0.61009556 0.13449481 -0.78081608\n\t\t -0.61226237 0.17062873 -0.7719962 -0.55696273 -0.17929648 -0.81093782 -0.56666762\n\t\t -0.14133145 -0.81170082 -0.51399261 -0.31626353 -0.79732656 -0.51399261 -0.31626353\n\t\t -0.79732656 -0.51396209 -0.31632456 -0.79732656 -0.55696273 -0.17929648 -0.81093782\n\t\t -0.61226237 0.17062873 -0.7719962 -0.61009556 0.13449481 -0.78081608 -0.61290336\n\t\t 0.30146161 -0.73036897 -0.61290336 0.30146161 -0.73036897 -0.61290336 0.30133954\n\t\t -0.73039949 -0.61226237 0.17062873 -0.7719962 -0.24561326 0.96920675 -0.017120956\n\t\t -0.24561326 0.96920675 -0.017120956 -0.32306924 0.93707073 -0.13223678 -0.32306924\n\t\t 0.93707073 -0.13223678 -0.32883725 0.93377471 -0.14108714 -0.24561326 0.96920675\n\t\t -0.017120956 -0.32883725 0.93377471 -0.14108714 -0.32306924 0.93707073 -0.13223678\n\t\t -0.39924341 0.88113028 -0.25333419 -0.39924341 0.88113028 -0.25333419 -0.39927393\n\t\t 0.88109976 -0.25336471 -0.32883725 0.93377471 -0.14108714 -0.61009556 0.13446429\n\t\t -0.78081608 -0.61128581 0.15253125 -0.7765435 -0.56193727 -0.16028345 -0.81148714\n\t\t -0.56193727 -0.16028345 -0.81148714 -0.55696273 -0.17929648 -0.81093782 -0.61009556\n\t\t 0.13446429 -0.78081608 -0.55696273 -0.17929648 -0.81093782 -0.56193727 -0.16028345\n\t\t -0.81148714 -0.51396209 -0.31629404 -0.79732656 -0.51396209 -0.31629404 -0.79732656\n\t\t -0.51396209 -0.31629404 -0.79732656 -0.55696273 -0.17929648 -0.81093782 -0.56669813\n\t\t -0.14117886 -0.81170082 -0.56193727 -0.16028345 -0.81148714 -0.61128581 0.15253125\n\t\t -0.7765435 -0.61128581 0.15253125 -0.7765435 -0.61226237 0.17053717 -0.77202672 -0.56669813\n\t\t -0.14117886 -0.81170082 -0.56193727 -0.16028345 -0.81148714 -0.56669813 -0.14117886\n\t\t -0.81170082 -0.51396209 -0.31626353 -0.79735708 -0.51396209 -0.31626353 -0.79735708\n\t\t -0.51396209 -0.31629404 -0.79732656 -0.56193727 -0.16028345 -0.81148714 -0.61128581\n\t\t 0.15253125 -0.7765435 -0.61009556 0.13446429 -0.78081608 -0.61290336 0.30137005 -0.73039949\n\t\t -0.61290336 0.30137005 -0.73039949 -0.61290336 0.30137005 -0.73039949 -0.61128581\n\t\t 0.15253125 -0.7765435 -0.61226237 0.17053717 -0.77202672 -0.61128581 0.15253125 -0.7765435\n\t\t -0.61290336 0.30137005 -0.73039949 -0.61290336 0.30137005 -0.73039949 -0.61290336\n\t\t 0.30137005 -0.73039949 -0.61226237 0.17053717 -0.77202672 -0.24561326 0.96920675\n\t\t -0.017120956 -0.14410871 0.98937953 -0.017487179 -0.32602954 0.9353922 -0.136723\n\t\t -0.32602954 0.9353922 -0.136723 -0.32880673 0.93377471 -0.14105663 -0.24561326 0.96920675\n\t\t -0.017120956 -0.32602954 0.9353922 -0.136723 -0.14410871 0.98937953 -0.017487179\n\t\t -0.15207404 0.98818928 -0.01745666 -0.15207404 0.98818928 -0.01745666 -0.3236796\n\t\t 0.93673503 -0.13315234 -0.32602954 0.9353922 -0.136723 -0.32880673 0.93377471 -0.14105663\n\t\t -0.32602954 0.9353922 -0.136723 -0.39927393 0.88109976 -0.25336471 -0.39927393 0.88109976\n\t\t -0.25336471 -0.39924341 0.88113028 -0.25333419 -0.32880673 0.93377471 -0.14105663\n\t\t -0.39927393 0.88109976 -0.25339523 -0.39927393 0.88109976 -0.25336471 -0.32602954\n\t\t 0.9353922 -0.136723 -0.32602954 0.9353922 -0.136723 -0.3236796 0.93673503 -0.13315234\n\t\t -0.39927393 0.88109976 -0.25339523 0.15247077 -0.98181093 -0.11282685 0.15247077\n\t\t -0.98181093 -0.11282685 0.058168579 -0.96990877 -0.2363963 0.058168579 -0.96990877\n\t\t -0.2363963 0.054414801 -0.96893215 -0.24118771 0.15247077 -0.98181093 -0.11282685\n\t\t 0.054414801 -0.96893215 -0.24118771 0.058168579 -0.96990877 -0.2363963 -0.041382812\n\t\t -0.93246251 -0.35880604 -0.041382812 -0.93246251 -0.35880604 -0.041382812 -0.93246251\n\t\t -0.35880604 0.054414801 -0.96893215 -0.24118771 -0.6121403 0.16858399 -0.77254558\n\t\t -0.56709486 -0.13953087 -0.81173134 -0.55757308 -0.17700759 -0.81102937 -0.55757308\n\t\t -0.17700759 -0.81102937 -0.60994297 0.1328163 -0.78118229 -0.6121403 0.16858399 -0.77254558\n\t\t -0.6121403 0.16858399 -0.77254558 -0.60994297 0.1328163 -0.78118229 -0.61302543 0.29776886\n\t\t -0.73177284 -0.61302543 0.29776886 -0.73177284 -0.61302543 0.29776886 -0.73177284\n\t\t -0.6121403 0.16858399 -0.77254558 -0.55757308 -0.17700759 -0.81102937 -0.56709486\n\t\t -0.13953087 -0.81173134 -0.51539648 -0.31235716 -0.79796749 -0.51539648 -0.31235716\n\t\t -0.79796749 -0.51539648 -0.31235716 -0.79796749 -0.55757308 -0.17700759 -0.81102937\n\t\t -0.23413831 0.97219759 -0.00070199807 -0.23413831 0.97219759 -0.00070199807 -0.31489027\n\t\t 0.94152641 -0.11975469 -0.31489027 0.94152641 -0.11975469 -0.32056671 0.93847454\n\t\t -0.12839144 -0.23413831 0.97219759 -0.00070199807 -0.32056671 0.93847454 -0.12839144\n\t\t -0.31489027 0.94152641 -0.11975469 -0.39399421 0.88592172 -0.24472798 -0.39399421\n\t\t 0.88592172 -0.24472798;\n\tsetAttr \".n[16102:16267]\" -type \"float3\"  -0.39396369 0.88592172 -0.24472798 -0.32056671\n\t\t 0.93847454 -0.12839144 0.16473921 -0.98162782 -0.096102715 0.16473921 -0.98162782\n\t\t -0.096102715 0.068239689 -0.97225869 -0.2237006 0.068239689 -0.97225869 -0.2237006\n\t\t 0.064760573 -0.97146517 -0.22812578 0.16473921 -0.98162782 -0.096102715 0.064760573\n\t\t -0.97146517 -0.22812578 0.068239689 -0.97225869 -0.2237006 -0.033661626 -0.93624681\n\t\t -0.3496505 -0.033661626 -0.93624681 -0.3496505 -0.033692144 -0.93627733 -0.34958947\n\t\t 0.064760573 -0.97146517 -0.22812578 0.45576343 -0.037385099 -0.88930935 0.49909973\n\t\t -0.088198401 -0.8620258 0.47154146 0.083315611 -0.8778649 0.47154146 0.083315611\n\t\t -0.8778649 0.44935453 0.045594726 -0.89217812 0.45576343 -0.037385099 -0.88930935\n\t\t 0.776452 -0.27365926 -0.56761378 0.69814152 -0.36863291 -0.61372721 0.7141943 -0.39622164\n\t\t -0.5769524 0.7141943 -0.39622164 -0.5769524 0.77733701 -0.27018017 -0.56810206 0.776452\n\t\t -0.27365926 -0.56761378 -0.98425245 0.03942962 0.17218544 -0.97412032 0.084383398\n\t\t 0.20963164 -0.97378463 -0.087832555 0.2097232 -0.97378463 -0.087832555 0.2097232\n\t\t -0.98391676 -0.042939838 0.17319255 -0.98425245 0.03942962 0.17218544 -0.79604489\n\t\t 0.27368978 0.53978086 -0.81963575 0.36875492 0.43836784 -0.79726565 0.39271197 0.45832694\n\t\t -0.79726565 0.39271197 0.45832694 -0.79647213 0.269936 0.54103214 -0.79604489 0.27368978\n\t\t 0.53978086 0.5618152 0.26322228 -0.78423417 0.55711532 0.25446346 -0.79045993 0.62590396\n\t\t 0.42255941 -0.65547663 0.62590396 0.42255941 -0.65547663 0.63798934 0.46757424 -0.6118046\n\t\t 0.5618152 0.26322228 -0.78423417 0.55711532 0.25446346 -0.79045993 0.5618152 0.26322228\n\t\t -0.78423417 0.44935453 0.045594726 -0.89217812 0.44935453 0.045594726 -0.89217812\n\t\t 0.47154146 0.083315611 -0.8778649 0.55711532 0.25446346 -0.79045993 0.73525178 0.30332366\n\t\t -0.60609758 0.63798934 0.46757424 -0.6118046 0.62590396 0.42255941 -0.65547663 0.62590396\n\t\t 0.42255941 -0.65547663 0.73638099 0.29987505 -0.60643327 0.73525178 0.30332366 -0.60609758\n\t\t 0.61082804 -0.23358853 -0.75649279 0.61705381 -0.24152336 -0.7489242 0.49909973 -0.088198401\n\t\t -0.8620258 0.49909973 -0.088198401 -0.8620258 0.45576343 -0.037385099 -0.88930935\n\t\t 0.61082804 -0.23358853 -0.75649279 -0.89971614 -0.26541972 0.34644616 -0.90365303\n\t\t -0.25928551 0.34083074 -0.77776408 -0.42320037 0.46467486 -0.77776408 -0.42320037\n\t\t 0.46467486 -0.72807997 -0.47184688 0.49720758 -0.89971614 -0.26541972 0.34644616\n\t\t -0.90365303 -0.25928551 0.34083074 -0.89971614 -0.26541972 0.34644616 -0.98391676\n\t\t -0.042939838 0.17319255 -0.98391676 -0.042939838 0.17319255 -0.97378463 -0.087832555\n\t\t 0.2097232 -0.90365303 -0.25928551 0.34083074 -0.76564825 -0.30408663 0.56678975 -0.72807997\n\t\t -0.47184688 0.49720758 -0.77776408 -0.42320037 0.46467486 -0.77776408 -0.42320037\n\t\t 0.46467486 -0.76677746 -0.30021077 0.56736958 -0.76564825 -0.30408663 0.56678975\n\t\t -0.91576898 0.2310859 0.32853171 -0.91128278 0.23880708 0.33542889 -0.97412032 0.084383398\n\t\t 0.20963164 -0.97412032 0.084383398 0.20963164 -0.98425245 0.03942962 0.17218544 -0.91576898\n\t\t 0.2310859 0.32853171 0.056276429 -0.96942043 -0.23883778 0.058168579 -0.96987826\n\t\t -0.2363963 -0.041352294 -0.93246251 -0.35880604 -0.041352294 -0.93246251 -0.35880604\n\t\t -0.041352294 -0.93249303 -0.35880604 0.056276429 -0.96942043 -0.23883778 0.053682357\n\t\t -0.96874905 -0.24213378 0.056276429 -0.96942043 -0.23883778 -0.041352294 -0.93249303\n\t\t -0.35880604 -0.041352294 -0.93249303 -0.35880604 -0.041382812 -0.93246251 -0.35883656\n\t\t 0.053682357 -0.96874905 -0.24213378 0.058168579 -0.96987826 -0.2363963 0.056276429\n\t\t -0.96942043 -0.23883778 0.089480571 -0.98947114 -0.11371189 0.089480571 -0.98947114\n\t\t -0.11371189 0.15247077 -0.98181093 -0.11282685 0.058168579 -0.96987826 -0.2363963\n\t\t 0.09405835 -0.98904383 -0.11365086 0.089480571 -0.98947114 -0.11371189 0.056276429\n\t\t -0.96942043 -0.23883778 0.056276429 -0.96942043 -0.23883778 0.053682357 -0.96874905\n\t\t -0.24213378 0.09405835 -0.98904383 -0.11365086 0.7141943 -0.39622164 -0.5769524 0.69814152\n\t\t -0.36863291 -0.61372721 0.61705381 -0.24152336 -0.7489242 0.61705381 -0.24152336\n\t\t -0.7489242 0.61082804 -0.23358853 -0.75649279 0.7141943 -0.39622164 -0.5769524 -0.79726565\n\t\t 0.39271197 0.45832694 -0.81963575 0.36875492 0.43836784 -0.91128278 0.23880708 0.33542889\n\t\t -0.91128278 0.23880708 0.33542889 -0.91576898 0.2310859 0.32853171 -0.79726565 0.39271197\n\t\t 0.45832694 -0.80382705 6.0832732e-05 0.59480578 -0.80382705 -2.04286e-07 0.59480578\n\t\t -0.80382705 -2.0428372e-07 0.59483629 -0.80382705 -2.0428372e-07 0.59483629 -0.80379653\n\t\t -3.0722782e-05 0.59486681 -0.80382705 6.0832732e-05 0.59480578 -0.80382705 -2.04286e-07\n\t\t 0.59480578 -0.80382705 6.0832732e-05 0.59480578 -0.80385756 -2.0429543e-07 0.59480578\n\t\t -0.80385756 -2.0429543e-07 0.59480578 -0.80382705 -3.0722797e-05 0.59480578 -0.80382705\n\t\t -2.04286e-07 0.59480578 -0.80382705 -3.0722797e-05 0.59480578 -0.80385756 -2.0429543e-07\n\t\t 0.59480578 -0.80385756 -3.0722804e-05 0.59480578 -0.80385756 -3.0722804e-05 0.59480578\n\t\t -0.80382705 -2.04286e-07 0.59480578 -0.80382705 -3.0722797e-05 0.59480578 -0.80382705\n\t\t -2.04286e-07 0.59480578 -0.80385756 -3.0722804e-05 0.59480578 -0.80382705 -2.04286e-07\n\t\t 0.59480578 -0.80382705 -2.04286e-07 0.59480578 -0.80382705 -2.04286e-07 0.59480578\n\t\t -0.80382705 -2.04286e-07 0.59480578 -0.80379653 -3.0722782e-05 0.59486681 -0.80382705\n\t\t -2.0428372e-07 0.59483629 -0.80382705 3.0314222e-05 0.59480578 -0.80382705 3.0314222e-05\n\t\t 0.59480578 -0.80379653 -2.0427201e-07 0.59486681 -0.80379653 -3.0722782e-05 0.59486681\n\t\t -0.80379653 -2.0427201e-07 0.59486681 -0.80382705 3.0314222e-05 0.59480578 -0.80385756\n\t\t 6.0832725e-05 0.59480578 -0.80385756 6.0832725e-05 0.59480578 -0.80385756 6.0832725e-05\n\t\t 0.59477526 -0.80379653 -2.0427201e-07 0.59486681 -0.80385756 6.0832725e-05 0.59477526\n\t\t -0.80385756 6.0832725e-05 0.59480578 -0.80382705 -2.04286e-07 0.59480578 -0.80382705\n\t\t -2.04286e-07 0.59480578 -0.80382705 -2.04286e-07 0.59480578 -0.80385756 6.0832725e-05\n\t\t 0.59477526 -0.56376839 -0.152959 -0.81160927 -0.61116374 0.15076119 -0.77697074;\n\tsetAttr \".n[16268:16433]\" -type \"float3\"  -0.6121403 0.16788207 -0.77269816 -0.6121403\n\t\t 0.16788207 -0.77269816 -0.56724745 -0.13895102 -0.81173134 -0.56376839 -0.152959\n\t\t -0.81160927 -0.61311698 0.29657865 -0.73216957 -0.6121403 0.16788207 -0.77269816\n\t\t -0.61116374 0.15076119 -0.77697074 -0.61116374 0.15076119 -0.77697074 -0.61308646\n\t\t 0.29679227 -0.73210853 -0.61311698 0.29657865 -0.73216957 -0.51582372 -0.31110591\n\t\t -0.79818112 -0.56376839 -0.152959 -0.81160927 -0.56724745 -0.13895102 -0.81173134\n\t\t -0.56724745 -0.13895102 -0.81173134 -0.51585424 -0.31104484 -0.79818112 -0.51582372\n\t\t -0.31110591 -0.79818112 -0.39219365 0.88753915 -0.24167614 -0.31693503 0.9404583\n\t\t -0.12277602 -0.31272346 0.94265562 -0.11642817 -0.31272346 0.94265562 -0.11642817\n\t\t -0.39219365 0.88750863 -0.24176769 -0.39219365 0.88753915 -0.24167614 -0.23160526\n\t\t 0.97277743 0.00302126 -0.31272346 0.94265562 -0.11642817 -0.31693503 0.9404583 -0.12277602\n\t\t -0.31693503 0.9404583 -0.12277602 -0.23160526 0.97277743 0.00302126 -0.23160526 0.97277743\n\t\t 0.00302126 0.068087094 -0.97225869 -0.22373112 -0.030914959 -0.93758965 -0.346324\n\t\t -0.031098071 -0.93749809 -0.34653762 -0.031098071 -0.93749809 -0.34653762 0.067446202\n\t\t -0.9721061 -0.22455512 0.068087094 -0.97225869 -0.22373112 0.16754691 -0.98150575\n\t\t -0.092409968 0.068087094 -0.97225869 -0.22373112 0.067446202 -0.9721061 -0.22455512\n\t\t 0.067446202 -0.9721061 -0.22455512 0.16754691 -0.98150575 -0.092409968 0.16754691\n\t\t -0.98150575 -0.092409968 -0.79436624 -0.12408846 0.59456158 -0.77489543 -0.18268399\n\t\t 0.6050905 -0.76781511 -0.20233791 0.60783714 -0.79436624 -0.12408846 0.59456158 -0.76781511\n\t\t -0.20233791 0.60783714 -0.76604503 -0.20746502 0.60835594 -0.76781511 -0.20233791\n\t\t 0.60783714 -0.7491073 -0.21396546 0.62691122 -0.76604503 -0.20746502 0.60835594 -0.76781511\n\t\t -0.20233791 0.60783714 -0.75695056 -0.20334502 0.62096012 -0.7491073 -0.21396546\n\t\t 0.62691122 -0.7491073 -0.21396546 0.62691122 -0.77108061 -0.26569435 0.57860041 -0.76604503\n\t\t -0.20746502 0.60835594 -0.79436624 -0.12408846 0.59456158 -0.76604503 -0.20746502\n\t\t 0.60835594 -0.79668564 -0.1154212 0.5932188 0.12753658 0.89056063 -0.43659785 0.11810637\n\t\t 0.83187354 -0.54219192 -2.5875084e-07 0.83681744 -0.54744107 -2.5875084e-07 0.83681744\n\t\t -0.54744107 -2.7733148e-07 0.8969084 -0.44215223 0.12753658 0.89056063 -0.43659785\n\t\t 0.13983552 0.92672509 -0.34870455 0.12753658 0.89056063 -0.43659785 -2.7733148e-07\n\t\t 0.8969084 -0.44215223 -2.7733148e-07 0.8969084 -0.44215223 -2.8931592e-07 0.93566698\n\t\t -0.35282454 0.13983552 0.92672509 -0.34870455 0.15063906 0.95153666 -0.26807463 0.13983552\n\t\t 0.92672509 -0.34870455 -2.8931592e-07 0.93566698 -0.35282454 -2.8931592e-07 0.93566698\n\t\t -0.35282454 -2.9773335e-07 0.96288949 -0.26987523 0.15063906 0.95153666 -0.26807463\n\t\t 0.16363995 0.97570735 -0.14545129 0.15063906 0.95153666 -0.26807463 -2.9773335e-07\n\t\t 0.96288949 -0.26987523 -2.9773335e-07 0.96288949 -0.26987523 -3.0602808e-07 0.98971528\n\t\t -0.14285722 0.16363995 0.97570735 -0.14545129 0.16363995 0.97570735 -0.14545129 -3.0602808e-07\n\t\t 0.98971528 -0.14285722 -3.0692456e-07 0.99261451 0.12121945 -3.0692456e-07 0.99261451\n\t\t 0.12121945 0.18820734 0.9755547 0.11331514 0.16363995 0.97570735 -0.14545129 0.16363995\n\t\t 0.97570735 -0.14545129 0.18820734 0.9755547 0.11331514 0.38538745 0.91863775 0.08688613\n\t\t 0.43449175 0.83257556 0.34345526 0.38538745 0.91863775 0.08688613 0.18820734 0.9755547\n\t\t 0.11331514 0.38538745 0.91863775 0.08688613 0.43449175 0.83257556 0.34345526 0.6494031\n\t\t 0.73314631 0.20178832 0.66792786 0.68837565 0.28278446 0.6494031 0.73314631 0.20178832\n\t\t 0.43449175 0.83257556 0.34345526 0.6494031 0.73314631 0.20178832 0.66792786 0.68837565\n\t\t 0.28278446 0.80071396 0.5872069 0.11828969 0.80071396 0.5872069 0.11828969 0.77599394\n\t\t 0.62746078 0.063783638 0.6494031 0.73314631 0.20178832 0.76866955 0.63866109 -0.034516484\n\t\t 0.77599394 0.62746078 0.063783638 0.80071396 0.5872069 0.11828969 0.80071396 0.5872069\n\t\t 0.11828969 0.70100993 0.70937246 -0.073122405 0.76866955 0.63866109 -0.034516484\n\t\t 0.43449175 0.83257556 0.34345526 0.44242659 0.78118247 0.44038203 0.66792786 0.68837565\n\t\t 0.28278446 0.44242659 0.78118247 0.44038203 0.43449175 0.83257556 0.34345526 0.2125001\n\t\t 0.89599299 0.38984337 0.18820734 0.9755547 0.11331514 0.2125001 0.89599299 0.38984337\n\t\t 0.43449175 0.83257556 0.34345526 0.2125001 0.89599299 0.38984337 0.18820734 0.9755547\n\t\t 0.11331514 -3.0692456e-07 0.99261451 0.12121945 0.2125001 0.89599299 0.38984337 0.21707791\n\t\t 0.84316552 0.49183625 0.44242659 0.78118247 0.44038203 0.21707791 0.84316552 0.49183625\n\t\t 0.2125001 0.89599299 0.38984337 -2.8319158e-07 0.91586053 0.40147093 -3.0692456e-07\n\t\t 0.99261451 0.12121945 -2.8319158e-07 0.91586053 0.40147093 0.2125001 0.89599299 0.38984337\n\t\t -2.8319158e-07 0.91586053 0.40147093 -2.6717771e-07 0.86407059 0.50331122 0.21707791\n\t\t 0.84316552 0.49183625 0.76866955 0.63866109 -0.034516484 0.68376696 0.72612715 -0.071718551\n\t\t 0.77599394 0.62746078 0.063783638 0.76866955 0.63866109 -0.034516484 0.76079577 0.6435135\n\t\t -0.08380387 0.68376696 0.72612715 -0.071718551 0.76079577 0.6435135 -0.08380387 0.72328842\n\t\t 0.67540538 -0.14358963 0.68376696 0.72612715 -0.071718551 0.72328842 0.67540538 -0.14358963\n\t\t 0.76079577 0.6435135 -0.08380387 0.76866955 0.61693192 -0.16882844 0.76866955 0.61693192\n\t\t -0.16882844 0.73482448 0.64766407 -0.20126961 0.72328842 0.67540538 -0.14358963 0.64738888\n\t\t 0.73073536 -0.21646784 0.72328842 0.67540538 -0.14358963 0.73482448 0.64766407 -0.20126961\n\t\t 0.68376696 0.72612715 -0.071718551 0.72328842 0.67540538 -0.14358963 0.64738888 0.73073536\n\t\t -0.21646784 0.73482448 0.64766407 -0.20126961 0.64052224 0.72252589 -0.26004827 0.64738888\n\t\t 0.73073536 -0.21646784 0.59144849 0.78066367 -0.20175792 0.64738888 0.73073536 -0.21646784\n\t\t 0.64052224 0.72252589 -0.26004827 0.64738888 0.73073536 -0.21646784 0.59144849 0.78066367\n\t\t -0.20175792 0.68376696 0.72612715 -0.071718551;\n\tsetAttr \".n[16434:16599]\" -type \"float3\"  0.64052224 0.72252589 -0.26004827 0.5462811\n\t\t 0.79000229 -0.2782068 0.59144849 0.78066367 -0.20175792 0.48039159 0.85882151 -0.17783141\n\t\t 0.59144849 0.78066367 -0.20175792 0.5462811 0.79000229 -0.2782068 0.68376696 0.72612715\n\t\t -0.071718551 0.59144849 0.78066367 -0.20175792 0.48039159 0.85882151 -0.17783141\n\t\t 0.5462811 0.79000229 -0.2782068 0.44251812 0.8544268 -0.27216414 0.48039159 0.85882151\n\t\t -0.17783141 0.33329234 0.93075365 -0.15030374 0.48039159 0.85882151 -0.17783141 0.44251812\n\t\t 0.8544268 -0.27216414 0.44251812 0.8544268 -0.27216414 0.30433032 0.91497552 -0.2648702\n\t\t 0.33329234 0.93075365 -0.15030374 0.28733149 0.89474171 -0.34177685 0.30433032 0.91497552\n\t\t -0.2648702 0.44251812 0.8544268 -0.27216414 0.44251812 0.8544268 -0.27216414 0.42185709\n\t\t 0.84157854 -0.3372601 0.28733149 0.89474171 -0.34177685 0.42185709 0.84157854 -0.3372601\n\t\t 0.44251812 0.8544268 -0.27216414 0.5462811 0.79000229 -0.2782068 0.26996645 0.86519974\n\t\t -0.42249832 0.28733149 0.89474171 -0.34177685 0.42185709 0.84157854 -0.3372601 0.42185709\n\t\t 0.84157854 -0.3372601 0.40671989 0.82253498 -0.39741209 0.26996645 0.86519974 -0.42249832\n\t\t 0.26996645 0.86519974 -0.42249832 0.40671989 0.82253498 -0.39741209 0.37754425 0.79131448\n\t\t -0.48084968 0.37754425 0.79131448 -0.48084968 0.24991582 0.81258583 -0.52650541 0.26996645\n\t\t 0.86519974 -0.42249832 0.5462811 0.79000229 -0.2782068 0.52616936 0.78347135 -0.33054602\n\t\t 0.42185709 0.84157854 -0.3372601 0.52616936 0.78347135 -0.33054602 0.5462811 0.79000229\n\t\t -0.2782068 0.64052224 0.72252589 -0.26004827 0.64052224 0.72252589 -0.26004827 0.63081735\n\t\t 0.71498781 -0.30133983 0.52616936 0.78347135 -0.33054602 0.52616936 0.78347135 -0.33054602\n\t\t 0.63081735 0.71498781 -0.30133983 0.62300462 0.70693094 -0.3347576 0.62300462 0.70693094\n\t\t -0.3347576 0.51402301 0.77172172 -0.37440112 0.52616936 0.78347135 -0.33054602 0.42185709\n\t\t 0.84157854 -0.3372601 0.52616936 0.78347135 -0.33054602 0.51402301 0.77172172 -0.37440112\n\t\t 0.51402301 0.77172172 -0.37440112 0.40671989 0.82253498 -0.39741209 0.42185709 0.84157854\n\t\t -0.3372601 0.51402301 0.77172172 -0.37440112 0.62300462 0.70693094 -0.3347576 0.60570061\n\t\t 0.70229214 -0.37394336 0.60570061 0.70229214 -0.37394336 0.49806184 0.75292224 -0.4300974\n\t\t 0.51402301 0.77172172 -0.37440112 0.49806184 0.75292224 -0.4300974 0.37754425 0.79131448\n\t\t -0.48084968 0.40671989 0.82253498 -0.39741209 0.40671989 0.82253498 -0.39741209 0.51402301\n\t\t 0.77172172 -0.37440112 0.49806184 0.75292224 -0.4300974 0.46629205 0.73360401 -0.49433887\n\t\t 0.49806184 0.75292224 -0.4300974 0.60570061 0.70229214 -0.37394336 0.37754425 0.79131448\n\t\t -0.48084968 0.49806184 0.75292224 -0.4300974 0.46629205 0.73360401 -0.49433887 0.60570061\n\t\t 0.70229214 -0.37394336 0.56425649 0.70906717 -0.42283401 0.46629205 0.73360401 -0.49433887\n\t\t 0.41660798 0.72191542 -0.55247664 0.46629205 0.73360401 -0.49433887 0.56425649 0.70906717\n\t\t -0.42283401 0.56425649 0.70906717 -0.42283401 0.54072672 0.69194627 -0.47831666 0.41660798\n\t\t 0.72191542 -0.55247664 0.41660798 0.72191542 -0.55247664 0.54072672 0.69194627 -0.47831666\n\t\t 0.52446043 0.64375758 -0.55720699 0.52446043 0.64375758 -0.55720699 0.38923287 0.65843689\n\t\t -0.64415425 0.41660798 0.72191542 -0.55247664 0.41660798 0.72191542 -0.55247664 0.38923287\n\t\t 0.65843689 -0.64415425 0.27985454 0.65181434 -0.70479453 0.27985454 0.65181434 -0.70479453\n\t\t 0.31672087 0.70879245 -0.63026834 0.41660798 0.72191542 -0.55247664 0.46629205 0.73360401\n\t\t -0.49433887 0.41660798 0.72191542 -0.55247664 0.31672087 0.70879245 -0.63026834 0.31672087\n\t\t 0.70879245 -0.63026834 0.34455374 0.75179303 -0.56218153 0.46629205 0.73360401 -0.49433887\n\t\t 0.46629205 0.73360401 -0.49433887 0.34455374 0.75179303 -0.56218153 0.37754425 0.79131448\n\t\t -0.48084968 0.37754425 0.79131448 -0.48084968 0.34455374 0.75179303 -0.56218153 0.23178785\n\t\t 0.75264746 -0.61622983 0.23178785 0.75264746 -0.61622983 0.24991582 0.81258583 -0.52650541\n\t\t 0.37754425 0.79131448 -0.48084968 0.21878698 0.69130528 -0.68861973 0.23178785 0.75264746\n\t\t -0.61622983 0.34455374 0.75179303 -0.56218153 0.34455374 0.75179303 -0.56218153 0.31672087\n\t\t 0.70879245 -0.63026834 0.21878698 0.69130528 -0.68861973 0.31672087 0.70879245 -0.63026834\n\t\t 0.27985454 0.65181434 -0.70479453 0.19922464 0.63472396 -0.74660486 0.19922464 0.63472396\n\t\t -0.74660486 0.21878698 0.69130528 -0.68861973 0.31672087 0.70879245 -0.63026834 0.24991582\n\t\t 0.81258583 -0.52650541 0.23178785 0.75264746 -0.61622983 0.11380328 0.76232183 -0.63710445\n\t\t 0.11380328 0.76232183 -0.63710445 0.11810637 0.83187354 -0.54219192 0.24991582 0.81258583\n\t\t -0.52650541 0.11581752 0.69560838 -0.70900607 0.11380328 0.76232183 -0.63710445 0.23178785\n\t\t 0.75264746 -0.61622983 0.23178785 0.75264746 -0.61622983 0.21878698 0.69130528 -0.68861973\n\t\t 0.11581752 0.69560838 -0.70900607 0.21878698 0.69130528 -0.68861973 0.19922464 0.63472396\n\t\t -0.74660486 0.12186021 0.63389999 -0.76372576 0.12186021 0.63389999 -0.76372576 0.11581752\n\t\t 0.69560838 -0.70900607 0.21878698 0.69130528 -0.68861973 -2.1582386e-07 0.69798875\n\t\t -0.71605587 0.11581752 0.69560838 -0.70900607 0.12186021 0.63389999 -0.76372576 0.11380328\n\t\t 0.76232183 -0.63710445 0.11581752 0.69560838 -0.70900607 -2.1582386e-07 0.69798875\n\t\t -0.71605587 0.12186021 0.63389999 -0.76372576 -1.9652607e-07 0.63557839 -0.77199626\n\t\t -2.1582386e-07 0.69798875 -0.71605587 -1.9652607e-07 0.63557839 -0.77199626 0.12186021\n\t\t 0.63389999 -0.76372576 0.13776037 0.55937374 -0.81737727 0.13776037 0.55937374 -0.81737727\n\t\t 0.12186021 0.63389999 -0.76372576 0.19922464 0.63472396 -0.74660486 0.13776037 0.55937374\n\t\t -0.81737727 -1.7010368e-07 0.55012661 -0.83504754 -1.9652607e-07 0.63557839 -0.77199626\n\t\t -1.5708119e-07 0.50801104 -0.86132395 -1.7010368e-07 0.55012661 -0.83504754 0.13776037\n\t\t 0.55937374 -0.81737727 0.13776037 0.55937374 -0.81737727;\n\tsetAttr \".n[16600:16765]\" -type \"float3\"  0.13031387 0.5241859 -0.84154797 -1.5708119e-07\n\t\t 0.50801104 -0.86132395 0.24991582 0.81258583 -0.52650541 0.11810637 0.83187354 -0.54219192\n\t\t 0.12753658 0.89056063 -0.43659785 0.12753658 0.89056063 -0.43659785 0.26996645 0.86519974\n\t\t -0.42249832 0.24991582 0.81258583 -0.52650541 0.26996645 0.86519974 -0.42249832 0.12753658\n\t\t 0.89056063 -0.43659785 0.13983552 0.92672509 -0.34870455 0.13983552 0.92672509 -0.34870455\n\t\t 0.28733149 0.89474171 -0.34177685 0.26996645 0.86519974 -0.42249832 0.30433032 0.91497552\n\t\t -0.2648702 0.28733149 0.89474171 -0.34177685 0.13983552 0.92672509 -0.34870455 0.13983552\n\t\t 0.92672509 -0.34870455 0.15063906 0.95153666 -0.26807463 0.30433032 0.91497552 -0.2648702\n\t\t 0.30433032 0.91497552 -0.2648702 0.15063906 0.95153666 -0.26807463 0.16363995 0.97570735\n\t\t -0.14545129 0.16363995 0.97570735 -0.14545129 0.33329234 0.93075365 -0.15030374 0.30433032\n\t\t 0.91497552 -0.2648702 0.38538745 0.91863775 0.08688613 0.33329234 0.93075365 -0.15030374\n\t\t 0.16363995 0.97570735 -0.14545129 0.48039159 0.85882151 -0.17783141 0.33329234 0.93075365\n\t\t -0.15030374 0.38538745 0.91863775 0.08688613 0.38538745 0.91863775 0.08688613 0.56434804\n\t\t 0.82549536 0.003265419 0.48039159 0.85882151 -0.17783141 0.48039159 0.85882151 -0.17783141\n\t\t 0.56434804 0.82549536 0.003265419 0.68376696 0.72612715 -0.071718551 0.77599394 0.62746078\n\t\t 0.063783638 0.68376696 0.72612715 -0.071718551 0.56434804 0.82549536 0.003265419\n\t\t 0.56434804 0.82549536 0.003265419 0.6494031 0.73314631 0.20178832 0.77599394 0.62746078\n\t\t 0.063783638 0.6494031 0.73314631 0.20178832 0.56434804 0.82549536 0.003265419 0.38538745\n\t\t 0.91863775 0.08688613 0.23462611 0.55766475 -0.79619747 0.22879711 0.51982176 -0.8230232\n\t\t 0.13031387 0.5241859 -0.84154797 0.22879711 0.51982176 -0.8230232 0.23462611 0.55766475\n\t\t -0.79619747 0.35645601 0.5347454 -0.76610619 0.35645601 0.5347454 -0.76610619 0.40180653\n\t\t 0.45564142 -0.79427481 0.22879711 0.51982176 -0.8230232 0.40180653 0.45564142 -0.79427481\n\t\t 0.35645601 0.5347454 -0.76610619 0.51179522 0.51225328 -0.68965733 0.51179522 0.51225328\n\t\t -0.68965733 0.57258815 0.41621155 -0.70628995 0.40180653 0.45564142 -0.79427481 0.67134607\n\t\t 0.39286491 -0.62840664 0.57258815 0.41621155 -0.70628995 0.51179522 0.51225328 -0.68965733\n\t\t 0.51179522 0.51225328 -0.68965733 0.58778632 0.53437924 -0.60737944 0.67134607 0.39286491\n\t\t -0.62840664 0.35645601 0.5347454 -0.76610619 0.23462611 0.55766475 -0.79619747 0.19922464\n\t\t 0.63472396 -0.74660486 0.19922464 0.63472396 -0.74660486 0.27985454 0.65181434 -0.70479453\n\t\t 0.35645601 0.5347454 -0.76610619 0.35645601 0.5347454 -0.76610619 0.27985454 0.65181434\n\t\t -0.70479453 0.38923287 0.65843689 -0.64415425 0.38923287 0.65843689 -0.64415425 0.51179522\n\t\t 0.51225328 -0.68965733 0.35645601 0.5347454 -0.76610619 0.52446043 0.64375758 -0.55720699\n\t\t 0.58778632 0.53437924 -0.60737944 0.51179522 0.51225328 -0.68965733 0.51179522 0.51225328\n\t\t -0.68965733 0.38923287 0.65843689 -0.64415425 0.52446043 0.64375758 -0.55720699 0.58778632\n\t\t 0.53437924 -0.60737944 0.52446043 0.64375758 -0.55720699 0.54072672 0.69194627 -0.47831666\n\t\t 0.54072672 0.69194627 -0.47831666 0.60811162 0.64861 -0.45762512 0.58778632 0.53437924\n\t\t -0.60737944 0.60811162 0.64861 -0.45762512 0.54072672 0.69194627 -0.47831666 0.56425649\n\t\t 0.70906717 -0.42283401 0.56425649 0.70906717 -0.42283401 0.63896585 0.66869122 -0.38016912\n\t\t 0.60811162 0.64861 -0.45762512 0.63896585 0.66869122 -0.38016912 0.56425649 0.70906717\n\t\t -0.42283401 0.60570061 0.70229214 -0.37394336 0.60570061 0.70229214 -0.37394336 0.67793798\n\t\t 0.65755206 -0.32862335 0.63896585 0.66869122 -0.38016912 0.67793798 0.65755206 -0.32862335\n\t\t 0.60570061 0.70229214 -0.37394336 0.62300462 0.70693094 -0.3347576 0.62300462 0.70693094\n\t\t -0.3347576 0.68346184 0.66237396 -0.3067416 0.67793798 0.65755206 -0.32862335 0.69731724\n\t\t 0.66466284 -0.26819673 0.68346184 0.66237396 -0.3067416 0.62300462 0.70693094 -0.3347576\n\t\t 0.62300462 0.70693094 -0.3347576 0.63081735 0.71498781 -0.30133983 0.69731724 0.66466284\n\t\t -0.26819673 0.69731724 0.66466284 -0.26819673 0.63081735 0.71498781 -0.30133983 0.64052224\n\t\t 0.72252589 -0.26004827 0.64052224 0.72252589 -0.26004827 0.73482448 0.64766407 -0.20126961\n\t\t 0.69731724 0.66466284 -0.26819673 0.69731724 0.66466284 -0.26819673 0.73482448 0.64766407\n\t\t -0.20126961 0.76866955 0.61693192 -0.16882844 0.28373063 -0.067476407 -0.95651114\n\t\t 0.25464654 -0.32026121 -0.91244239 0.18024242 -0.33176672 -0.92596209 0.18024242\n\t\t -0.33176672 -0.92596209 0.2053896 -0.073854797 -0.97585988 0.28373063 -0.067476407\n\t\t -0.95651114 0.28565317 0.15536974 -0.94561601 0.28373063 -0.067476407 -0.95651114\n\t\t 0.2053896 -0.073854797 -0.97585988 0.2053896 -0.073854797 -0.97585988 0.20923485\n\t\t 0.15002897 -0.96627706 0.28565317 0.15536974 -0.94561601 0.20923485 0.15002897 -0.96627706\n\t\t 0.2053896 -0.073854797 -0.97585988 2.6290317e-08 -0.08502464 -0.99636829 2.6290317e-08\n\t\t -0.08502464 -0.99636829 0.2053896 -0.073854797 -0.97585988 0.18024242 -0.33176672\n\t\t -0.92596209 2.6290317e-08 -0.08502464 -0.99636829 -4.3464837e-08 0.14056818 -0.99005097\n\t\t 0.20923485 0.15002897 -0.96627706 0.18024242 -0.33176672 -0.92596209 1.0690697e-07\n\t\t -0.34574425 -0.93832207 2.6290317e-08 -0.08502464 -0.99636829 1.0690697e-07 -0.34574425\n\t\t -0.93832207 0.18024242 -0.33176672 -0.92596209 0.15189077 -0.46842861 -0.87032682\n\t\t 0.15189077 -0.46842861 -0.87032682 0.18024242 -0.33176672 -0.92596209 0.25464654\n\t\t -0.32026121 -0.91244239 0.15189077 -0.46842861 -0.87032682 0.0023195562 -0.48310807\n\t\t -0.87554544 1.0690697e-07 -0.34574425 -0.93832207 0.0053408961 -0.50691253 -0.8619647\n\t\t 0.0023195562 -0.48310807 -0.87554544 0.15189077 -0.46842861 -0.87032682 0.15189077\n\t\t -0.46842861 -0.87032682 0.13473937 -0.49238566 -0.85985893 0.0053408961 -0.50691253\n\t\t -0.8619647 0.20923485 0.15002897 -0.96627706 -4.3464837e-08 0.14056818 -0.99005097;\n\tsetAttr \".n[16766:16931]\" -type \"float3\"  -9.0081514e-08 0.29132962 -0.95660269\n\t\t -9.0081514e-08 0.29132962 -0.95660269 0.21256132 0.2864162 -0.93420208 0.20923485\n\t\t 0.15002897 -0.96627706 0.28565317 0.15536974 -0.94561601 0.20923485 0.15002897 -0.96627706\n\t\t 0.21256132 0.2864162 -0.93420208 0.19986561 0.35602894 -0.91283911 0.21256132 0.2864162\n\t\t -0.93420208 -9.0081514e-08 0.29132962 -0.95660269 -9.0081514e-08 0.29132962 -0.95660269\n\t\t -1.1626801e-07 0.37601849 -0.92657244 0.19986561 0.35602894 -0.91283911 0.16843154\n\t\t 0.38825649 -0.906003 0.19986561 0.35602894 -0.91283911 -1.1626801e-07 0.37601849\n\t\t -0.92657244 -1.1626801e-07 0.37601849 -0.92657244 -1.2698797e-07 0.41068754 -0.91177106\n\t\t 0.16843154 0.38825649 -0.906003 0.28800309 0.28940704 -0.91283911 0.21256132 0.2864162\n\t\t -0.93420208 0.19986561 0.35602894 -0.91283911 0.21256132 0.2864162 -0.93420208 0.28800309\n\t\t 0.28940704 -0.91283911 0.28565317 0.15536974 -0.94561601 0.19986561 0.35602894 -0.91283911\n\t\t 0.278817 0.34562215 -0.89596242 0.28800309 0.28940704 -0.91283911 0.23639625 0.37409589\n\t\t -0.89672536 0.278817 0.34562215 -0.89596242 0.19986561 0.35602894 -0.91283911 0.19986561\n\t\t 0.35602894 -0.91283911 0.16843154 0.38825649 -0.906003 0.23639625 0.37409589 -0.89672536\n\t\t 0.22159505 -0.49012727 -0.84298223 0.13473937 -0.49238566 -0.85985893 0.15189077\n\t\t -0.46842861 -0.87032682 0.15189077 -0.46842861 -0.87032682 0.22949934 -0.45823541\n\t\t -0.85866874 0.22159505 -0.49012727 -0.84298223 0.25464654 -0.32026121 -0.91244239\n\t\t 0.22949934 -0.45823541 -0.85866874 0.15189077 -0.46842861 -0.87032682 0.75273907\n\t\t -0.24771854 -0.60988188 0.6120488 -0.29502231 -0.73369551 0.58247626 -0.081545338\n\t\t -0.8087405 0.58247626 -0.081545338 -0.8087405 0.7335124 -0.088350914 -0.67387921\n\t\t 0.75273907 -0.24771854 -0.60988188 0.67168182 0.10037553 -0.73400068 0.7335124 -0.088350914\n\t\t -0.67387921 0.58247626 -0.081545338 -0.8087405 0.58247626 -0.081545338 -0.8087405\n\t\t 0.51094085 0.13492243 -0.8489334 0.67168182 0.10037553 -0.73400068 0.67168182 0.10037553\n\t\t -0.73400068 0.51094085 0.13492243 -0.8489334 0.43452245 0.26587734 -0.86049992 0.43452245\n\t\t 0.26587734 -0.86049992 0.60451061 0.22232747 -0.76491594 0.67168182 0.10037553 -0.73400068\n\t\t 0.7335124 -0.088350914 -0.67387921 0.67168182 0.10037553 -0.73400068 0.82116151 0.082461223\n\t\t -0.56465346 0.82116151 0.082461223 -0.56465346 0.85961485 -0.062837377 -0.50703454\n\t\t 0.7335124 -0.088350914 -0.67387921 0.85961485 -0.062837377 -0.50703454 0.82116151\n\t\t 0.082461223 -0.56465346 0.91454816 0.071627192 -0.39802241 0.91454816 0.071627192\n\t\t -0.39802241 0.9391461 -0.02139321 -0.34275338 0.85961485 -0.062837377 -0.50703454\n\t\t 0.85961485 -0.062837377 -0.50703454 0.9391461 -0.02139321 -0.34275338 0.9366436 -0.073640898\n\t\t -0.34241769 0.9366436 -0.073640898 -0.34241769 0.86666471 -0.1385538 -0.47923216\n\t\t 0.85961485 -0.062837377 -0.50703454 0.86666471 -0.1385538 -0.47923216 0.75273907\n\t\t -0.24771854 -0.60988188 0.7335124 -0.088350914 -0.67387921 0.86666471 -0.1385538\n\t\t -0.47923216 0.7335124 -0.088350914 -0.67387921 0.85961485 -0.062837377 -0.50703454\n\t\t 0.67168182 0.10037553 -0.73400068 0.60451061 0.22232747 -0.76491594 0.76717424 0.1874754\n\t\t -0.61339152 0.76717424 0.1874754 -0.61339152 0.82116151 0.082461223 -0.56465346 0.67168182\n\t\t 0.10037553 -0.73400068 0.91454816 0.071627192 -0.39802241 0.82116151 0.082461223\n\t\t -0.56465346 0.76717424 0.1874754 -0.61339152 0.9391461 -0.02139321 -0.34275338 0.9610889\n\t\t 0.015442642 -0.27576524 0.9366436 -0.073640898 -0.34241769 0.9610889 0.015442642\n\t\t -0.27576524 0.9391461 -0.02139321 -0.34275338 0.91454816 0.071627192 -0.39802241\n\t\t 0.91454816 0.071627192 -0.39802241 0.95056003 0.068148099 -0.30292672 0.9610889 0.015442642\n\t\t -0.27576524 0.91451758 0.17743486 -0.36347544 0.95056003 0.068148099 -0.30292672\n\t\t 0.91454816 0.071627192 -0.39802241 0.91454816 0.071627192 -0.39802241 0.87542337\n\t\t 0.16657026 -0.45371869 0.91451758 0.17743486 -0.36347544 0.76717424 0.1874754 -0.61339152\n\t\t 0.87542337 0.16657026 -0.45371869 0.91454816 0.071627192 -0.39802241 0.56294435 0.28467679\n\t\t -0.77587205 0.60451061 0.22232747 -0.76491594 0.43452245 0.26587734 -0.86049992 0.43452245\n\t\t 0.26587734 -0.86049992 0.38492987 0.32703641 -0.86303294 0.56294435 0.28467679 -0.77587205\n\t\t 0.54673898 0.30481899 -0.77983946 0.56294435 0.28467679 -0.77587205 0.38492987 0.32703641\n\t\t -0.86303294 0.38492987 0.32703641 -0.86303294 0.37656778 0.34354693 -0.86028624 0.54673898\n\t\t 0.30481899 -0.77983946 0.72264773 0.25046554 -0.64418471 0.76717424 0.1874754 -0.61339152\n\t\t 0.60451061 0.22232747 -0.76491594 0.60451061 0.22232747 -0.76491594 0.56294435 0.28467679\n\t\t -0.77587205 0.72264773 0.25046554 -0.64418471 0.56294435 0.28467679 -0.77587205 0.54673898\n\t\t 0.30481899 -0.77983946 0.7089144 0.2724694 -0.65050203 0.7089144 0.2724694 -0.65050203\n\t\t 0.72264773 0.25046554 -0.64418471 0.56294435 0.28467679 -0.77587205 0.72264773 0.25046554\n\t\t -0.64418471 0.7089144 0.2724694 -0.65050203 0.82268739 0.26099452 -0.5049898 0.82268739\n\t\t 0.26099452 -0.5049898 0.84505749 0.23987572 -0.47782832 0.72264773 0.25046554 -0.64418471\n\t\t 0.84505749 0.23987572 -0.47782832 0.87542337 0.16657026 -0.45371869 0.76717424 0.1874754\n\t\t -0.61339152 0.76717424 0.1874754 -0.61339152 0.72264773 0.25046554 -0.64418471 0.84505749\n\t\t 0.23987572 -0.47782832 0.88650161 0.24475868 -0.39262065 0.91451758 0.17743486 -0.36347544\n\t\t 0.87542337 0.16657026 -0.45371869 0.87542337 0.16657026 -0.45371869 0.84505749 0.23987572\n\t\t -0.47782832 0.88650161 0.24475868 -0.39262065 0.88650161 0.24475868 -0.39262065 0.84505749\n\t\t 0.23987572 -0.47782832 0.82268739 0.26099452 -0.5049898 0.37656778 0.34354693 -0.86028624\n\t\t 0.38492987 0.32703641 -0.86303294 0.3012481 0.33326215 -0.89339882 0.3012481 0.33326215\n\t\t -0.89339882 0.38492987 0.32703641 -0.86303294 0.43452245 0.26587734 -0.86049992 0.43452245\n\t\t 0.26587734 -0.86049992 0.3488875 0.2694785 -0.89754939 0.3012481 0.33326215 -0.89339882;\n\tsetAttr \".n[16932:17097]\" -type \"float3\"  0.3012481 0.33326215 -0.89339882 0.2545853\n\t\t 0.35575429 -0.89919734 0.37656778 0.34354693 -0.86028624 0.43571272 0.12387469 -0.89150667\n\t\t 0.3488875 0.2694785 -0.89754939 0.43452245 0.26587734 -0.86049992 0.43452245 0.26587734\n\t\t -0.86049992 0.51094085 0.13492243 -0.8489334 0.43571272 0.12387469 -0.89150667 0.51609856\n\t\t -0.10556342 -0.849971 0.43571272 0.12387469 -0.89150667 0.51094085 0.13492243 -0.8489334\n\t\t 0.51094085 0.13492243 -0.8489334 0.58247626 -0.081545338 -0.8087405 0.51609856 -0.10556342\n\t\t -0.849971 0.51609856 -0.10556342 -0.849971 0.58247626 -0.081545338 -0.8087405 0.6120488\n\t\t -0.29502231 -0.73369551 0.6120488 -0.29502231 -0.73369551 0.55494869 -0.32047474\n\t\t -0.76763207 0.51609856 -0.10556342 -0.849971 0.55494869 -0.32047474 -0.76763207 0.6120488\n\t\t -0.29502231 -0.73369551 0.6045413 -0.41624182 -0.67915887 0.6045413 -0.41624182 -0.67915887\n\t\t 0.6120488 -0.29502231 -0.73369551 0.68037975 -0.33341455 -0.6526078 0.59303582 -0.4402599\n\t\t -0.67409277 0.6045413 -0.41624182 -0.67915887 0.68037975 -0.33341455 -0.6526078 0.6120488\n\t\t -0.29502231 -0.73369551 0.75273907 -0.24771854 -0.60988188 0.68037975 -0.33341455\n\t\t -0.6526078 0.75273907 -0.24771854 -0.60988188 0.75179309 -0.31916237 -0.57698292\n\t\t 0.68037975 -0.33341455 -0.6526078 0.75179309 -0.31916237 -0.57698292 0.75273907 -0.24771854\n\t\t -0.60988188 0.79705203 -0.2944729 -0.52720726 -0.01947109 0.91021448 -0.41364795\n\t\t -0.01947109 0.91021448 -0.41364795 -0.01947109 0.91021448 -0.41364795 0.6045413 -0.41624182\n\t\t -0.67915887 0.55467403 -0.42966998 -0.71251559 0.55494869 -0.32047474 -0.76763207\n\t\t 0.55467403 -0.42966998 -0.71251559 0.6045413 -0.41624182 -0.67915887 0.59303582 -0.4402599\n\t\t -0.67409277 0.59303582 -0.4402599 -0.67409277 0.55055404 -0.4521316 -0.70174253 0.55467403\n\t\t -0.42966998 -0.71251559 0.77730626 0.62114346 0.099642888 0.7651599 0.63304567 0.11706897\n\t\t 0.80455929 0.59028924 0.065034896 0.7651599 0.63304567 0.11706897 0.77730626 0.62114346\n\t\t 0.099642888 0.65276015 0.72539461 0.21832936 0.65276015 0.72539461 0.21832936 0.61741972\n\t\t 0.7437973 0.25595868 0.7651599 0.63304567 0.11706897 0.61741972 0.7437973 0.25595868\n\t\t 0.65276015 0.72539461 0.21832936 0.42982242 0.82021558 0.37742233 0.61741972 0.7437973\n\t\t 0.25595868 0.42982242 0.82021558 0.37742233 0.38651666 0.82811993 0.40592664 0.28287578\n\t\t 0.9588306 -0.023987619 0.28287578 0.9588306 -0.023987619 0.28287578 0.9588306 -0.023987619\n\t\t 0.38651666 0.82811993 0.40592664 0.42982242 0.82021558 0.37742233 0.203253 0.86925882\n\t\t 0.45060572 0.203253 0.86925882 0.45060572 0.17618309 0.87136459 0.45786914 0.38651666\n\t\t 0.82811993 0.40592664 -2.716601e-07 0.87856692 0.47758409 0.17618309 0.87136459 0.45786914\n\t\t 0.203253 0.86925882 0.45060572 0.203253 0.86925882 0.45060572 -2.7012192e-07 0.87359238\n\t\t 0.48661757 -2.716601e-07 0.87856692 0.47758409 -2.6391265e-07 0.8535111 -0.52101207\n\t\t 0.041840617 0.8446607 -0.53361619 0.043946393 0.84502697 -0.53288376 0.043946393\n\t\t 0.84502697 -0.53288376 -2.6401645e-07 0.85384679 -0.52049321 -2.6391265e-07 0.8535111\n\t\t -0.52101207 0.069185197 0.8313852 -0.55134743 0.018555004 0.80422372 -0.59401232\n\t\t 0.01412982 0.80730605 -0.58992285 0.01412982 0.80730605 -0.58992285 0.074983723 0.83129364\n\t\t -0.55067605 0.069185197 0.8313852 -0.55134743 0.041840617 0.8446607 -0.53361619 0.069185197\n\t\t 0.8313852 -0.55134743 0.074983723 0.83129364 -0.55067605 0.074983723 0.83129364 -0.55067605\n\t\t 0.043946393 0.84502697 -0.53288376 0.041840617 0.8446607 -0.53361619 0.018555004\n\t\t 0.80422372 -0.59401232 -0.036744539 0.816248 -0.57649469 -0.038758762 0.81807911\n\t\t -0.57377857 -0.038758762 0.81807911 -0.57377857 0.01412982 0.80730605 -0.58992285\n\t\t 0.018555004 0.80422372 -0.59401232 -0.05249209 0.8234809 -0.56486714 -0.038758762\n\t\t 0.81807911 -0.57377857 -0.036744539 0.816248 -0.57649469 -0.036744539 0.816248 -0.57649469\n\t\t -0.052766755 0.82341987 -0.56495869 -0.05249209 0.8234809 -0.56486714 0.41248789\n\t\t 0.85128343 -0.32428974 0.40665886 0.85894358 -0.31113628 0.4037596 0.86156815 -0.30759612\n\t\t 0.4037596 0.86156815 -0.30759612 0.41206065 0.85137498 -0.32450336 0.41248789 0.85128343\n\t\t -0.32428974 0.4037596 0.86156815 -0.30759612 0.40665886 0.85894358 -0.31113628 0.38068762\n\t\t 0.89333791 -0.23868532 0.38068762 0.89333791 -0.23868532 0.37351575 0.89831245 -0.23129985\n\t\t 0.4037596 0.86156815 -0.30759612 0.37351575 0.89831245 -0.23129985 0.38068762 0.89333791\n\t\t -0.23868532 0.31943694 0.94555509 -0.06225783 0.31943694 0.94555509 -0.06225783 0.30036288\n\t\t 0.95214707 -0.05590998 0.37351575 0.89831245 -0.23129985 0.30036288 0.95214707 -0.05590998\n\t\t 0.31943694 0.94555509 -0.06225783 0.15997773 0.98706019 -0.0082400711 0.15997773\n\t\t 0.98706019 -0.0082400711 0.1528669 0.98821992 -0.0059817014 0.30036288 0.95214707\n\t\t -0.05590998 0.1528669 0.98821992 -0.0059817014 0.15997773 0.98706019 -0.0082400711\n\t\t -3.0907611e-07 0.99957275 0.028931472 -3.0907611e-07 0.99957275 0.028931472 -3.0906668e-07\n\t\t 0.99954224 0.029847028 0.1528669 0.98821992 -0.0059817014 0.17068981 0.74071473 -0.64973915\n\t\t 0.13412862 0.7571032 -0.63933229 0.30240774 0.62199777 -0.7222206 0.30240774 0.62199777\n\t\t -0.7222206 0.29215351 0.61882389 -0.72914827 0.17068981 0.74071473 -0.64973915 0.29215351\n\t\t 0.61882389 -0.72914827 0.30240774 0.62199777 -0.7222206 0.3718068 0.67174298 -0.64067513\n\t\t 0.3718068 0.67174298 -0.64067513 0.34073895 0.66786712 -0.66167188 0.29215351 0.61882389\n\t\t -0.72914827 0.34073895 0.66786712 -0.66167188 0.3718068 0.67174298 -0.64067513 0.46055463\n\t\t 0.63737911 -0.61772519 0.46055463 0.63737911 -0.61772519 0.46272144 0.63560903 -0.6179083\n\t\t 0.34073895 0.66786712 -0.66167188 0.17068981 0.74071473 -0.64973915 0.073457792 0.83263642\n\t\t -0.54890597 0.13412862 0.7571032 -0.63933229 0.13412862 0.7571032 -0.63933229 0.073457792\n\t\t 0.83263642 -0.54890597 0.036408309 0.88189334 -0.47001562 0.036408309 0.88189334\n\t\t -0.47001562;\n\tsetAttr \".n[17098:17263]\" -type \"float3\"  0.062104922 0.79461038 -0.60393083 0.13412862\n\t\t 0.7571032 -0.63933229 0.055940181 0.79677719 -0.60164195 0.062104922 0.79461038 -0.60393083\n\t\t 0.036408309 0.88189334 -0.47001562 -2.7672752e-07 0.89495522 -0.44608912 0.012207096\n\t\t 0.99557483 -0.093051009 0.036408309 0.88189334 -0.47001562 -0.0066838628 0.9992981\n\t\t 0.036225397 -0.0061955666 0.99935913 0.035096213 -0.014679711 0.99838251 0.054475464\n\t\t -0.014679711 0.99838251 0.054475464 -0.016693935 0.99810785 0.059022725 -0.0066838628\n\t\t 0.9992981 0.036225397 -2.8025681e-07 0.90636915 -0.42240676 -2.7672752e-07 0.89495522\n\t\t -0.44608912 0.036408309 0.88189334 -0.47001562 -0.091555804 0.89873952 -0.4287546\n\t\t -0.13367136 0.90731525 -0.39857179 -0.13565506 0.90704054 -0.39851075 -0.13565506\n\t\t 0.90704054 -0.39851075 -0.089785732 0.89843434 -0.42979223 -0.091555804 0.89873952\n\t\t -0.4287546 -0.13565506 0.90704054 -0.39851075 -0.13367136 0.90731525 -0.39857179\n\t\t -0.19653948 0.92251343 -0.33207196 -0.19653948 0.92251343 -0.33207196 -0.20123933\n\t\t 0.92138427 -0.33237714 -0.13565506 0.90704054 -0.39851075 -0.19653948 0.92251343\n\t\t -0.33207196 -0.2743617 0.93685716 -0.21674253 -0.20123933 0.92138427 -0.33237714\n\t\t -0.19653948 0.92251343 -0.33207196 -0.24118806 0.93646038 -0.25458547 -0.2743617\n\t\t 0.93685716 -0.21674253 -0.2743617 0.93685716 -0.21674253 -0.2794888 0.93679613 -0.21033365\n\t\t -0.20123933 0.92138427 -0.33237714 0.02005038 0.90203553 -0.43113503 0.026062516\n\t\t 0.93948179 -0.34153271 0.036408309 0.88189334 -0.47001562 0.036408309 0.88189334\n\t\t -0.47001562 0.073457792 0.83263642 -0.54890597 0.02005038 0.90203553 -0.43113503\n\t\t -2.8025681e-07 0.90636915 -0.42240676 0.036408309 0.88189334 -0.47001562 0.026062516\n\t\t 0.93948179 -0.34153271 0.026062516 0.93948179 -0.34153271 -2.8408806e-07 0.9187597\n\t\t -0.39475697 -2.8025681e-07 0.90636915 -0.42240676 0.36930469 -0.64256704 0.67134625\n\t\t 0.39362794 -0.6561783 0.64375752 0.39359742 -0.65620881 0.64375752 0.39359742 -0.65620881\n\t\t 0.64375752 0.364025 -0.6390574 0.67754149 0.36930469 -0.64256704 0.67134625 0.36930469\n\t\t -0.64256704 0.67134625 0.364025 -0.6390574 0.67754149 0.24161522 -0.59962755 0.76290178\n\t\t 0.24161522 -0.59962755 0.76290178 0.25833938 -0.60597539 0.75231183 0.36930469 -0.64256704\n\t\t 0.67134625 0.093447872 -0.62428659 0.77556694 0.25833938 -0.60597539 0.75231183 0.24161522\n\t\t -0.59962755 0.76290178 0.24161522 -0.59962755 0.76290178 0.083407283 -0.62364566\n\t\t 0.77721494 0.093447872 -0.62428659 0.77556694 0.032868627 -0.63115323 0.77492607\n\t\t 0.093447872 -0.62428659 0.77556694 0.083407283 -0.62364566 0.77721494 0.083407283\n\t\t -0.62364566 0.77721494 0.031586852 -0.63124478 0.77492607 0.032868627 -0.63115323\n\t\t 0.77492607 0.032868627 -0.63115323 0.77492607 0.031586852 -0.63124478 0.77492607\n\t\t 1.9813029e-07 -0.64076656 0.76769316 1.9813029e-07 -0.64076656 0.76769316 1.9822465e-07\n\t\t -0.64107174 0.76744902 0.032868627 -0.63115323 0.77492607 0.10501449 -0.95736557\n\t\t -0.26905113 0.10513657 -0.9599902 -0.25952935 0.052461598 -0.90588099 -0.42023981\n\t\t 2.7224516e-07 -0.88045907 -0.47404394 0.10501449 -0.95736557 -0.26905113 0.052461598\n\t\t -0.90588099 -0.42023981 2.7101842e-07 -0.87649167 -0.48139891 2.7224516e-07 -0.88045907\n\t\t -0.47404394 0.052461598 -0.90588099 -0.42023981 0.0092168981 -0.99841303 -0.055299465\n\t\t 0.0096136387 -0.9981994 -0.058961686 0.0071111219 -0.99935913 -0.035004657 0.0071111219\n\t\t -0.99935913 -0.035004657 0.0054631224 -0.99978638 -0.019409698 0.0092168981 -0.99841303\n\t\t -0.055299465 0.42265108 -0.80501717 -0.4162724 0.10513657 -0.9599902 -0.25952935\n\t\t 0.10501449 -0.95736557 -0.26905113 0.10501449 -0.95736557 -0.26905113 0.42313936\n\t\t -0.80108029 -0.42329165 0.42265108 -0.80501717 -0.4162724 0.49085999 -0.87081498\n\t\t -0.026673112 0.42265108 -0.80501717 -0.4162724 0.42313936 -0.80108029 -0.42329165\n\t\t 0.42313936 -0.80108029 -0.42329165 0.48472574 -0.87420255 -0.027832815 0.49085999\n\t\t -0.87081498 -0.026673112 0.52113432 -0.84945202 0.082552627 0.49085999 -0.87081498\n\t\t -0.026673112 0.48472574 -0.87420255 -0.027832815 0.48472574 -0.87420255 -0.027832815\n\t\t 0.51701432 -0.85219866 0.079989083 0.52113432 -0.84945202 0.082552627 0.51677018\n\t\t -0.84377557 0.14465779 0.52113432 -0.84945202 0.082552627 0.51701432 -0.85219866\n\t\t 0.079989083 0.51701432 -0.85219866 0.079989083 0.51591563 -0.8441723 0.14532921 0.51677018\n\t\t -0.84377557 0.14465779 0.89901429 -0.097658984 -0.42686239 0.89135408 -0.046326857\n\t\t -0.45091099 0.89446706 -0.21774931 -0.3904843 0.89446706 -0.21774931 -0.3904843 0.8938567\n\t\t -0.23688442 -0.38062683 0.89901429 -0.097658984 -0.42686239 0.8938567 -0.23688442\n\t\t -0.38062683 0.89446706 -0.21774931 -0.3904843 0.88213766 -0.30085123 -0.36234623\n\t\t 0.88213766 -0.30085123 -0.36234623 0.88164932 -0.30249923 -0.36213261 0.8938567 -0.23688442\n\t\t -0.38062683 0.88164932 -0.30249923 -0.36213261 0.88213766 -0.30085123 -0.36234623\n\t\t 0.87847543 -0.31183788 -0.36191899 0.87847543 -0.31183788 -0.36191899 0.87832284\n\t\t -0.31199047 -0.36216313 0.88164932 -0.30249923 -0.36213261 0.84719378 0.11383426\n\t\t -0.51890624 0.89135408 -0.046326857 -0.45091099 0.89901429 -0.097658984 -0.42686239\n\t\t 0.89901429 -0.097658984 -0.42686239 0.86513871 0.061098285 -0.4977569 0.84719378\n\t\t 0.11383426 -0.51890624 0.84719378 0.11383426 -0.51890624 0.86513871 0.061098285 -0.4977569\n\t\t 0.8185674 0.18015097 -0.54536575 0.8185674 0.18015097 -0.54536575 0.80062252 0.21933673\n\t\t -0.55754262 0.84719378 0.11383426 -0.51890624 0.80062252 0.21933673 -0.55754262 0.8185674\n\t\t 0.18015097 -0.54536575 0.80233157 0.24478917 -0.54432815 0.80233157 0.24478917 -0.54432815\n\t\t 0.7998901 0.25122857 -0.54496902 0.80062252 0.21933673 -0.55754262 0.7998901 0.25122857\n\t\t -0.54496902 0.80233157 0.24478917 -0.54432815 0.7976622 0.2560505 -0.54600668 0.33671063\n\t\t 0.31131935 -0.88860744 0.33671063 0.31131935 -0.88860744 0.33671063 0.31131935 -0.88860744\n\t\t 0.99710071 -0.057862781 0.049165323 0.99755853 -0.050751969 0.047456287 0.99316382\n\t\t -0.09472914 0.067720577 0.99316382 -0.09472914 0.067720577 0.99295026 -0.096468695\n\t\t 0.068575099;\n\tsetAttr \".n[17264:17429]\" -type \"float3\"  0.99710071 -0.057862781 0.049165323 0.99237043\n\t\t -0.10132114 0.070101023 0.99295026 -0.096468695 0.068575099 0.99316382 -0.09472914\n\t\t 0.067720577 0.99316382 -0.09472914 0.067720577 0.99233991 -0.10153477 0.0702231 0.99237043\n\t\t -0.10132114 0.070101023 0.99951172 0.0016483108 0.030457472 0.99755853 -0.050751969\n\t\t 0.047456287 0.99710071 -0.057862781 0.049165323 0.99710071 -0.057862781 0.049165323\n\t\t 0.9994812 -0.0055540572 0.031006806 0.99951172 0.0016483108 0.030457472 0.99911499\n\t\t 0.039125036 0.015137178 0.99951172 0.0016483108 0.030457472 0.9994812 -0.0055540572\n\t\t 0.031006806 0.9994812 -0.0055540572 0.031006806 0.99923706 0.035310224 0.014831993\n\t\t 0.99911499 0.039125036 0.015137178 0.99911499 0.039125036 0.015137178 0.99923706\n\t\t 0.035310224 0.014831993 0.99835199 0.055879701 0.010559401 0.99835199 0.055879701\n\t\t 0.010559401 0.99832147 0.056398515 0.012482066 0.99911499 0.039125036 0.015137178\n\t\t 0.99832147 0.056398515 0.012482066 0.99835199 0.055879701 0.010559401 0.94955289\n\t\t -0.045930039 0.31012911 0.94955289 -0.045930039 0.31012911 0.94827116 -0.047303375\n\t\t 0.31385234 0.99832147 0.056398515 0.012482066 0.99237043 -0.10132114 0.070101023\n\t\t 0.99233991 -0.10153477 0.0702231 0.99331647 -0.094210327 0.066347249 0.99331647 -0.094210327\n\t\t 0.066347249 0.99331647 -0.094210327 0.066377766 0.99237043 -0.10132114 0.070101023\n\t\t -0.92641985 0.071779221 -0.36954862 -0.92559588 0.075746626 -0.3707999 -0.93313396\n\t\t 0.072175957 -0.35215309 -0.93313396 0.072175957 -0.35215309 -0.93343914 0.071443513\n\t\t -0.35154271 -0.92641985 0.071779221 -0.36954862 -0.93331707 0.072420105 -0.35157323\n\t\t -0.93343914 0.071443513 -0.35154271 -0.93313396 0.072175957 -0.35215309 -0.63328964\n\t\t 0.20514517 -0.74620807 -0.63328964 0.20514517 -0.74620807 -0.63328964 0.20514517\n\t\t -0.74620807 -0.92559588 0.075746626 -0.3707999 -0.92641985 0.071779221 -0.36954862\n\t\t -0.91921753 0.059663374 -0.38917202 -0.91921753 0.059663374 -0.38917202 -0.91839349\n\t\t 0.06500411 -0.39024019 -0.92559588 0.075746626 -0.3707999 -0.92049927 0.034485601\n\t\t -0.38917202 -0.91839349 0.06500411 -0.39024019 -0.91921753 0.059663374 -0.38917202\n\t\t -0.91921753 0.059663374 -0.38917202 -0.92101812 0.029938342 -0.38828701 -0.92049927\n\t\t 0.034485601 -0.38917202 -0.92587054 -0.0096441628 -0.37769708 -0.92049927 0.034485601\n\t\t -0.38917202 -0.92101812 0.029938342 -0.38828701 -0.92101812 0.029938342 -0.38828701\n\t\t -0.92593157 -0.010468163 -0.37748346 -0.92587054 -0.0096441628 -0.37769708 -0.92587054\n\t\t -0.0096441628 -0.37769708 -0.92593157 -0.010468163 -0.37748346 -0.93115026 -0.050264299\n\t\t -0.36106449 -0.93115026 -0.050264299 -0.36106449 -0.93136388 -0.052095409 -0.36030152\n\t\t -0.92587054 -0.0096441628 -0.37769708 -0.93319499 -0.068697482 -0.35267189 -0.93136388\n\t\t -0.052095409 -0.36030152 -0.93115026 -0.050264299 -0.36106449 -0.93115026 -0.050264299\n\t\t -0.36106449 -0.93322551 -0.068666965 -0.35264137 -0.93319499 -0.068697482 -0.35267189\n\t\t -2.5875084e-07 0.83681744 -0.54744107 0.11810637 0.83187354 -0.54219192 0.11380328\n\t\t 0.76232183 -0.63710445 0.11380328 0.76232183 -0.63710445 -2.3661265e-07 0.76522106\n\t\t -0.643727 -2.5875084e-07 0.83681744 -0.54744107 -2.1582386e-07 0.69798875 -0.71605587\n\t\t -2.3661265e-07 0.76522106 -0.643727 0.11380328 0.76232183 -0.63710445 0.13031387\n\t\t 0.5241859 -0.84154797 0.13776037 0.55937374 -0.81737727 0.23462611 0.55766475 -0.79619747\n\t\t 0.19922464 0.63472396 -0.74660486 0.23462611 0.55766475 -0.79619747 0.13776037 0.55937374\n\t\t -0.81737727 -2.5875084e-07 0.83681744 -0.54744107 -0.11810689 0.83187342 -0.54219192\n\t\t -0.12753712 0.89056051 -0.43659785 -0.12753712 0.89056051 -0.43659785 -2.7733148e-07\n\t\t 0.8969084 -0.44215223 -2.5875084e-07 0.83681744 -0.54744107 -2.7733148e-07 0.8969084\n\t\t -0.44215223 -0.12753712 0.89056051 -0.43659785 -0.13983609 0.92672497 -0.34870455\n\t\t -0.13983609 0.92672497 -0.34870455 -2.8931592e-07 0.93566698 -0.35282454 -2.7733148e-07\n\t\t 0.8969084 -0.44215223 -2.8931592e-07 0.93566698 -0.35282454 -0.13983609 0.92672497\n\t\t -0.34870455 -0.15063965 0.95153654 -0.26807463 -0.15063965 0.95153654 -0.26807463\n\t\t -2.9773335e-07 0.96288949 -0.26987523 -2.8931592e-07 0.93566698 -0.35282454 -2.9773335e-07\n\t\t 0.96288949 -0.26987523 -0.15063965 0.95153654 -0.26807463 -0.16364054 0.97570723\n\t\t -0.14545129 -0.16364054 0.97570723 -0.14545129 -3.0602808e-07 0.98971528 -0.14285722\n\t\t -2.9773335e-07 0.96288949 -0.26987523 -3.0692456e-07 0.99261451 0.12121945 -3.0602808e-07\n\t\t 0.98971528 -0.14285722 -0.16364054 0.97570723 -0.14545129 -0.16364054 0.97570723\n\t\t -0.14545129 -0.18820794 0.97555459 0.11331514 -3.0692456e-07 0.99261451 0.12121945\n\t\t -0.38538805 0.91863751 0.08688613 -0.18820794 0.97555459 0.11331514 -0.16364054 0.97570723\n\t\t -0.14545129 -0.18820794 0.97555459 0.11331514 -0.38538805 0.91863751 0.08688613 -0.43449229\n\t\t 0.83257532 0.34345526 -0.64940357 0.73314595 0.20178832 -0.43449229 0.83257532 0.34345526\n\t\t -0.38538805 0.91863751 0.08688613 -0.43449229 0.83257532 0.34345526 -0.64940357 0.73314595\n\t\t 0.20178832 -0.66792834 0.68837529 0.28281498 -0.79696053 0.58824402 0.1370891 -0.66792834\n\t\t 0.68837529 0.28281498 -0.64940357 0.73314595 0.20178832 -0.64940357 0.73314595 0.20178832\n\t\t -0.76821208 0.63676846 0.065828383 -0.79696053 0.58824402 0.1370891 -0.78496677 0.61940342\n\t\t -0.011475005 -0.79696053 0.58824402 0.1370891 -0.76821208 0.63676846 0.065828383\n\t\t -0.76821208 0.63676846 0.065828383 -0.76946336 0.63762295 -0.036652777 -0.78496677\n\t\t 0.61940342 -0.011475005 -0.66792834 0.68837529 0.28281498 -0.44242707 0.78118223\n\t\t 0.44038203 -0.43449229 0.83257532 0.34345526 -0.21250066 0.89599288 0.38984337 -0.43449229\n\t\t 0.83257532 0.34345526 -0.44242707 0.78118223 0.44038203 -0.43449229 0.83257532 0.34345526\n\t\t -0.21250066 0.89599288 0.38984337 -0.18820794 0.97555459 0.11331514 -3.0692456e-07\n\t\t 0.99261451 0.12121945 -0.18820794 0.97555459 0.11331514 -0.21250066 0.89599288 0.38984337\n\t\t -0.44242707 0.78118223 0.44038203 -0.21707842 0.8431654 0.49183625 -0.21250066 0.89599288\n\t\t 0.38984337 -2.8319158e-07 0.91586053 0.40147093 -0.21250066 0.89599288 0.38984337\n\t\t -0.21707842 0.8431654 0.49183625;\n\tsetAttr \".n[17430:17595]\" -type \"float3\"  -0.21250066 0.89599288 0.38984337 -2.8319158e-07\n\t\t 0.91586053 0.40147093 -3.0692456e-07 0.99261451 0.12121945 -0.21707842 0.8431654\n\t\t 0.49183625 -2.6717771e-07 0.86407059 0.50331122 -2.8319158e-07 0.91586053 0.40147093\n\t\t -0.76946336 0.63762295 -0.036652777 -0.76821208 0.63676846 0.065828383 -0.68379796\n\t\t 0.72612667 -0.071718551 -0.76079613 0.64351302 -0.08380387 -0.76946336 0.63762295\n\t\t -0.036652777 -0.68379796 0.72612667 -0.071718551 -0.72328889 0.67540491 -0.14358963\n\t\t -0.76079613 0.64351302 -0.08380387 -0.68379796 0.72612667 -0.071718551 -0.7686699\n\t\t 0.61693144 -0.16882844 -0.76079613 0.64351302 -0.08380387 -0.72328889 0.67540491\n\t\t -0.14358963 -0.72328889 0.67540491 -0.14358963 -0.73482484 0.64766359 -0.20126961\n\t\t -0.7686699 0.61693144 -0.16882844 -0.73482484 0.64766359 -0.20126961 -0.72328889\n\t\t 0.67540491 -0.14358963 -0.64741987 0.730735 -0.21646784 -0.64741987 0.730735 -0.21646784\n\t\t -0.72328889 0.67540491 -0.14358963 -0.68379796 0.72612667 -0.071718551 -0.64741987\n\t\t 0.730735 -0.21646784 -0.64052272 0.72252554 -0.26004827 -0.73482484 0.64766359 -0.20126961\n\t\t -0.64052272 0.72252554 -0.26004827 -0.64741987 0.730735 -0.21646784 -0.59144896 0.78066331\n\t\t -0.20175792 -0.68379796 0.72612667 -0.071718551 -0.59144896 0.78066331 -0.20175792\n\t\t -0.64741987 0.730735 -0.21646784 -0.59144896 0.78066331 -0.20175792 -0.54628158 0.79000193\n\t\t -0.2782068 -0.64052272 0.72252554 -0.26004827 -0.54628158 0.79000193 -0.2782068 -0.59144896\n\t\t 0.78066331 -0.20175792 -0.48039213 0.85882127 -0.17783141 -0.48039213 0.85882127\n\t\t -0.17783141 -0.59144896 0.78066331 -0.20175792 -0.68379796 0.72612667 -0.071718551\n\t\t -0.48039213 0.85882127 -0.17783141 -0.44251865 0.85442656 -0.27216414 -0.54628158\n\t\t 0.79000193 -0.2782068 -0.44251865 0.85442656 -0.27216414 -0.48039213 0.85882127 -0.17783141\n\t\t -0.33329293 0.93075341 -0.15030374 -0.33329293 0.93075341 -0.15030374 -0.30433086\n\t\t 0.91497529 -0.2648702 -0.44251865 0.85442656 -0.27216414 -0.44251865 0.85442656 -0.27216414\n\t\t -0.30433086 0.91497529 -0.2648702 -0.28733203 0.89474159 -0.34177685 -0.28733203\n\t\t 0.89474159 -0.34177685 -0.42185763 0.8415783 -0.3372601 -0.44251865 0.85442656 -0.27216414\n\t\t -0.54628158 0.79000193 -0.2782068 -0.44251865 0.85442656 -0.27216414 -0.42185763\n\t\t 0.8415783 -0.3372601 -0.42185763 0.8415783 -0.3372601 -0.28733203 0.89474159 -0.34177685\n\t\t -0.26996699 0.86519963 -0.42249832 -0.26996699 0.86519963 -0.42249832 -0.40675095\n\t\t 0.82253474 -0.39741209 -0.42185763 0.8415783 -0.3372601 -0.37754473 0.79131424 -0.48084968\n\t\t -0.40675095 0.82253474 -0.39741209 -0.26996699 0.86519963 -0.42249832 -0.26996699\n\t\t 0.86519963 -0.42249832 -0.24991633 0.81258571 -0.52650541 -0.37754473 0.79131424\n\t\t -0.48084968 -0.42185763 0.8415783 -0.3372601 -0.52616984 0.78347099 -0.33054602 -0.54628158\n\t\t 0.79000193 -0.2782068 -0.64052272 0.72252554 -0.26004827 -0.54628158 0.79000193 -0.2782068\n\t\t -0.52616984 0.78347099 -0.33054602 -0.52616984 0.78347099 -0.33054602 -0.63081783\n\t\t 0.71498746 -0.30133983 -0.64052272 0.72252554 -0.26004827 -0.62300509 0.70693058\n\t\t -0.3347576 -0.63081783 0.71498746 -0.30133983 -0.52616984 0.78347099 -0.33054602\n\t\t -0.52616984 0.78347099 -0.33054602 -0.51402348 0.77172136 -0.37440112 -0.62300509\n\t\t 0.70693058 -0.3347576 -0.51402348 0.77172136 -0.37440112 -0.52616984 0.78347099 -0.33054602\n\t\t -0.42185763 0.8415783 -0.3372601 -0.42185763 0.8415783 -0.3372601 -0.40675095 0.82253474\n\t\t -0.39741209 -0.51402348 0.77172136 -0.37440112 -0.60570109 0.70229179 -0.37394336\n\t\t -0.62300509 0.70693058 -0.3347576 -0.51402348 0.77172136 -0.37440112 -0.51402348\n\t\t 0.77172136 -0.37440112 -0.49806231 0.75292188 -0.4300974 -0.60570109 0.70229179 -0.37394336\n\t\t -0.40675095 0.82253474 -0.39741209 -0.37754473 0.79131424 -0.48084968 -0.49806231\n\t\t 0.75292188 -0.4300974 -0.49806231 0.75292188 -0.4300974 -0.51402348 0.77172136 -0.37440112\n\t\t -0.40675095 0.82253474 -0.39741209 -0.60570109 0.70229179 -0.37394336 -0.49806231\n\t\t 0.75292188 -0.4300974 -0.46629253 0.73360378 -0.49433887 -0.46629253 0.73360378 -0.49433887\n\t\t -0.49806231 0.75292188 -0.4300974 -0.37754473 0.79131424 -0.48084968 -0.46629253\n\t\t 0.73360378 -0.49433887 -0.56425697 0.70906681 -0.42283401 -0.60570109 0.70229179\n\t\t -0.37394336 -0.56425697 0.70906681 -0.42283401 -0.46629253 0.73360378 -0.49433887\n\t\t -0.41660839 0.72191519 -0.55247664 -0.41660839 0.72191519 -0.55247664 -0.53999472\n\t\t 0.69307512 -0.47749266 -0.56425697 0.70906681 -0.42283401 -0.52232444 0.64394033\n\t\t -0.55900759 -0.53999472 0.69307512 -0.47749266 -0.41660839 0.72191519 -0.55247664\n\t\t -0.41660839 0.72191519 -0.55247664 -0.38923329 0.65843666 -0.64415425 -0.52232444\n\t\t 0.64394033 -0.55900759 -0.27985495 0.65181422 -0.70479453 -0.38923329 0.65843666\n\t\t -0.64415425 -0.41660839 0.72191519 -0.55247664 -0.41660839 0.72191519 -0.55247664\n\t\t -0.31672129 0.70879221 -0.63026834 -0.27985495 0.65181422 -0.70479453 -0.31672129\n\t\t 0.70879221 -0.63026834 -0.41660839 0.72191519 -0.55247664 -0.46629253 0.73360378\n\t\t -0.49433887 -0.46629253 0.73360378 -0.49433887 -0.34455422 0.75179279 -0.56218153\n\t\t -0.31672129 0.70879221 -0.63026834 -0.37754473 0.79131424 -0.48084968 -0.34455422\n\t\t 0.75179279 -0.56218153 -0.46629253 0.73360378 -0.49433887 -0.23178832 0.75264734\n\t\t -0.61622983 -0.34455422 0.75179279 -0.56218153 -0.37754473 0.79131424 -0.48084968\n\t\t -0.37754473 0.79131424 -0.48084968 -0.24991633 0.81258571 -0.52650541 -0.23178832\n\t\t 0.75264734 -0.61622983 -0.34455422 0.75179279 -0.56218153 -0.23178832 0.75264734\n\t\t -0.61622983 -0.2187874 0.69130516 -0.68861973 -0.2187874 0.69130516 -0.68861973 -0.31672129\n\t\t 0.70879221 -0.63026834 -0.34455422 0.75179279 -0.56218153 -0.31672129 0.70879221\n\t\t -0.63026834 -0.2187874 0.69130516 -0.68861973 -0.19922502 0.63472384 -0.74660486\n\t\t -0.19922502 0.63472384 -0.74660486 -0.27985495 0.65181422 -0.70479453 -0.31672129\n\t\t 0.70879221 -0.63026834 -0.11380376 0.76232171 -0.63710445 -0.23178832 0.75264734\n\t\t -0.61622983 -0.24991633 0.81258571 -0.52650541 -0.24991633 0.81258571 -0.52650541;\n\tsetAttr \".n[17596:17761]\" -type \"float3\"  -0.11810689 0.83187342 -0.54219192 -0.11380376\n\t\t 0.76232171 -0.63710445 -0.23178832 0.75264734 -0.61622983 -0.11380376 0.76232171\n\t\t -0.63710445 -0.11581796 0.69560826 -0.70900607 -0.11581796 0.69560826 -0.70900607\n\t\t -0.2187874 0.69130516 -0.68861973 -0.23178832 0.75264734 -0.61622983 -0.2187874 0.69130516\n\t\t -0.68861973 -0.11581796 0.69560826 -0.70900607 -0.1218606 0.63389987 -0.76372576\n\t\t -0.1218606 0.63389987 -0.76372576 -0.19922502 0.63472384 -0.74660486 -0.2187874 0.69130516\n\t\t -0.68861973 -0.1218606 0.63389987 -0.76372576 -0.11581796 0.69560826 -0.70900607\n\t\t -2.1582386e-07 0.69798875 -0.71605587 -2.1582386e-07 0.69798875 -0.71605587 -0.11581796\n\t\t 0.69560826 -0.70900607 -0.11380376 0.76232171 -0.63710445 -2.1582386e-07 0.69798875\n\t\t -0.71605587 -1.9652607e-07 0.63557839 -0.77199626 -0.1218606 0.63389987 -0.76372576\n\t\t -0.13776073 0.55937362 -0.81737727 -0.1218606 0.63389987 -0.76372576 -1.9652607e-07\n\t\t 0.63557839 -0.77199626 -0.19922502 0.63472384 -0.74660486 -0.1218606 0.63389987 -0.76372576\n\t\t -0.13776073 0.55937362 -0.81737727 -1.9652607e-07 0.63557839 -0.77199626 -1.7010368e-07\n\t\t 0.55012661 -0.83504754 -0.13776073 0.55937362 -0.81737727 -0.13776073 0.55937362\n\t\t -0.81737727 -1.7010368e-07 0.55012661 -0.83504754 -1.5708119e-07 0.50801104 -0.86132395\n\t\t -1.5708119e-07 0.50801104 -0.86132395 -0.1303142 0.52418578 -0.84154797 -0.13776073\n\t\t 0.55937362 -0.81737727 -0.12753712 0.89056051 -0.43659785 -0.11810689 0.83187342\n\t\t -0.54219192 -0.24991633 0.81258571 -0.52650541 -0.24991633 0.81258571 -0.52650541\n\t\t -0.26996699 0.86519963 -0.42249832 -0.12753712 0.89056051 -0.43659785 -0.13983609\n\t\t 0.92672497 -0.34870455 -0.12753712 0.89056051 -0.43659785 -0.26996699 0.86519963\n\t\t -0.42249832 -0.26996699 0.86519963 -0.42249832 -0.28733203 0.89474159 -0.34177685\n\t\t -0.13983609 0.92672497 -0.34870455 -0.13983609 0.92672497 -0.34870455 -0.28733203\n\t\t 0.89474159 -0.34177685 -0.30433086 0.91497529 -0.2648702 -0.30433086 0.91497529 -0.2648702\n\t\t -0.15063965 0.95153654 -0.26807463 -0.13983609 0.92672497 -0.34870455 -0.16364054\n\t\t 0.97570723 -0.14545129 -0.15063965 0.95153654 -0.26807463 -0.30433086 0.91497529\n\t\t -0.2648702 -0.30433086 0.91497529 -0.2648702 -0.33329293 0.93075341 -0.15030374 -0.16364054\n\t\t 0.97570723 -0.14545129 -0.16364054 0.97570723 -0.14545129 -0.33329293 0.93075341\n\t\t -0.15030374 -0.38538805 0.91863751 0.08688613 -0.38538805 0.91863751 0.08688613 -0.33329293\n\t\t 0.93075341 -0.15030374 -0.48039213 0.85882127 -0.17783141 -0.48039213 0.85882127\n\t\t -0.17783141 -0.56434852 0.825495 0.003265419 -0.38538805 0.91863751 0.08688613 -0.68379796\n\t\t 0.72612667 -0.071718551 -0.56434852 0.825495 0.003265419 -0.48039213 0.85882127 -0.17783141\n\t\t -0.56434852 0.825495 0.003265419 -0.68379796 0.72612667 -0.071718551 -0.76821208\n\t\t 0.63676846 0.065828383 -0.76821208 0.63676846 0.065828383 -0.64940357 0.73314595\n\t\t 0.20178832 -0.56434852 0.825495 0.003265419 -0.38538805 0.91863751 0.08688613 -0.56434852\n\t\t 0.825495 0.003265419 -0.64940357 0.73314595 0.20178832 -0.23462647 0.55766463 -0.79619747\n\t\t -0.13776073 0.55937362 -0.81737727 -0.1303142 0.52418578 -0.84154797 -0.13776073\n\t\t 0.55937362 -0.81737727 -0.23462647 0.55766463 -0.79619747 -0.19922502 0.63472384\n\t\t -0.74660486 -0.19922502 0.63472384 -0.74660486 -0.23462647 0.55766463 -0.79619747\n\t\t -0.35645637 0.53474516 -0.76610619 -0.35645637 0.53474516 -0.76610619 -0.23462647\n\t\t 0.55766463 -0.79619747 -0.22879744 0.51982164 -0.8230232 -0.22879744 0.51982164 -0.8230232\n\t\t -0.40180683 0.45564118 -0.79427481 -0.35645637 0.53474516 -0.76610619 -0.50691265\n\t\t 0.51399249 -0.69194621 -0.35645637 0.53474516 -0.76610619 -0.40180683 0.45564118\n\t\t -0.79427481 -0.40180683 0.45564118 -0.79427481 -0.571917 0.41355607 -0.70839572 -0.50691265\n\t\t 0.51399249 -0.69194621 -0.58806133 0.53663725 -0.60512108 -0.50691265 0.51399249\n\t\t -0.69194621 -0.571917 0.41355607 -0.70839572 -0.571917 0.41355607 -0.70839572 -0.68242449\n\t\t 0.38825622 -0.61931211 -0.58806133 0.53663725 -0.60512108 -0.35645637 0.53474516\n\t\t -0.76610619 -0.27985495 0.65181422 -0.70479453 -0.19922502 0.63472384 -0.74660486\n\t\t -0.35645637 0.53474516 -0.76610619 -0.50691265 0.51399249 -0.69194621 -0.38923329\n\t\t 0.65843666 -0.64415425 -0.38923329 0.65843666 -0.64415425 -0.27985495 0.65181422\n\t\t -0.70479453 -0.35645637 0.53474516 -0.76610619 -0.52232444 0.64394033 -0.55900759\n\t\t -0.38923329 0.65843666 -0.64415425 -0.50691265 0.51399249 -0.69194621 -0.50691265\n\t\t 0.51399249 -0.69194621 -0.58806133 0.53663725 -0.60512108 -0.52232444 0.64394033\n\t\t -0.55900759 -0.52232444 0.64394033 -0.55900759 -0.58806133 0.53663725 -0.60512108\n\t\t -0.60951585 0.64894533 -0.45533621 -0.60951585 0.64894533 -0.45533621 -0.53999472\n\t\t 0.69307512 -0.47749266 -0.52232444 0.64394033 -0.55900759 -0.56425697 0.70906681\n\t\t -0.42283401 -0.53999472 0.69307512 -0.47749266 -0.60951585 0.64894533 -0.45533621\n\t\t -0.60951585 0.64894533 -0.45533621 -0.6389662 0.66869086 -0.38016912 -0.56425697\n\t\t 0.70906681 -0.42283401 -0.60570109 0.70229179 -0.37394336 -0.56425697 0.70906681\n\t\t -0.42283401 -0.6389662 0.66869086 -0.38016912 -0.6389662 0.66869086 -0.38016912 -0.67793834\n\t\t 0.65755159 -0.32862335 -0.60570109 0.70229179 -0.37394336 -0.62300509 0.70693058\n\t\t -0.3347576 -0.60570109 0.70229179 -0.37394336 -0.67793834 0.65755159 -0.32862335\n\t\t -0.67793834 0.65755159 -0.32862335 -0.6834622 0.66237348 -0.3067416 -0.62300509 0.70693058\n\t\t -0.3347576 -0.62300509 0.70693058 -0.3347576 -0.6834622 0.66237348 -0.3067416 -0.6973176\n\t\t 0.66466236 -0.26819673 -0.6973176 0.66466236 -0.26819673 -0.63081783 0.71498746 -0.30133983\n\t\t -0.62300509 0.70693058 -0.3347576 -0.64052272 0.72252554 -0.26004827 -0.63081783\n\t\t 0.71498746 -0.30133983 -0.6973176 0.66466236 -0.26819673 -0.6973176 0.66466236 -0.26819673\n\t\t -0.73482484 0.64766359 -0.20126961 -0.64052272 0.72252554 -0.26004827 -0.6973176\n\t\t 0.66466236 -0.26819673 -0.7686699 0.61693144 -0.16882844 -0.73482484 0.64766359 -0.20126961\n\t\t -0.18024221 -0.33176684 -0.92596209 -0.25464636 -0.32026139 -0.91244239;\n\tsetAttr \".n[17762:17927]\" -type \"float3\"  -0.28373057 -0.067476586 -0.95651114\n\t\t -0.28373057 -0.067476586 -0.95651114 -0.20535903 -0.073854931 -0.97585988 -0.18024221\n\t\t -0.33176684 -0.92596209 -0.20535903 -0.073854931 -0.97585988 -0.28373057 -0.067476586\n\t\t -0.95651114 -0.28565329 0.15536956 -0.94561601 -0.28565329 0.15536956 -0.94561601\n\t\t -0.20923494 0.15002885 -0.96627706 -0.20535903 -0.073854931 -0.97585988 2.6290317e-08\n\t\t -0.08502464 -0.99636829 -0.20535903 -0.073854931 -0.97585988 -0.20923494 0.15002885\n\t\t -0.96627706 -0.18024221 -0.33176684 -0.92596209 -0.20535903 -0.073854931 -0.97585988\n\t\t 2.6290317e-08 -0.08502464 -0.99636829 -0.20923494 0.15002885 -0.96627706 -4.3464837e-08\n\t\t 0.14056818 -0.99005097 2.6290317e-08 -0.08502464 -0.99636829 2.6290317e-08 -0.08502464\n\t\t -0.99636829 1.0690697e-07 -0.34574425 -0.93832207 -0.18024221 -0.33176684 -0.92596209\n\t\t -0.15439299 -0.46638399 -0.87096769 -0.18024221 -0.33176684 -0.92596209 1.0690697e-07\n\t\t -0.34574425 -0.93832207 -0.25464636 -0.32026139 -0.91244239 -0.18024221 -0.33176684\n\t\t -0.92596209 -0.15439299 -0.46638399 -0.87096769 1.0690697e-07 -0.34574425 -0.93832207\n\t\t 0.0023195562 -0.48310807 -0.87554544 -0.15439299 -0.46638399 -0.87096769 -0.13989669\n\t\t -0.49674988 -0.85653245 -0.15439299 -0.46638399 -0.87096769 0.0023195562 -0.48310807\n\t\t -0.87554544 0.0023195562 -0.48310807 -0.87554544 0.0053408961 -0.50691253 -0.8619647\n\t\t -0.13989669 -0.49674988 -0.85653245 -9.0081514e-08 0.29132962 -0.95660269 -4.3464837e-08\n\t\t 0.14056818 -0.99005097 -0.20923494 0.15002885 -0.96627706 -0.20923494 0.15002885\n\t\t -0.96627706 -0.2125615 0.28641608 -0.93420208 -9.0081514e-08 0.29132962 -0.95660269\n\t\t -0.2125615 0.28641608 -0.93420208 -0.20923494 0.15002885 -0.96627706 -0.28565329\n\t\t 0.15536956 -0.94561601 -9.0081514e-08 0.29132962 -0.95660269 -0.2125615 0.28641608\n\t\t -0.93420208 -0.19986582 0.35602883 -0.91283911 -0.19986582 0.35602883 -0.91283911\n\t\t -1.1626801e-07 0.37601849 -0.92657244 -9.0081514e-08 0.29132962 -0.95660269 -1.1626801e-07\n\t\t 0.37601849 -0.92657244 -0.19986582 0.35602883 -0.91283911 -0.16843177 0.38825637\n\t\t -0.906003 -0.16843177 0.38825637 -0.906003 -1.2698797e-07 0.41068754 -0.91177106\n\t\t -1.1626801e-07 0.37601849 -0.92657244 -0.19986582 0.35602883 -0.91283911 -0.2125615\n\t\t 0.28641608 -0.93420208 -0.28800327 0.28940687 -0.91283911 -0.28565329 0.15536956\n\t\t -0.94561601 -0.28800327 0.28940687 -0.91283911 -0.2125615 0.28641608 -0.93420208\n\t\t -0.28800327 0.28940687 -0.91283911 -0.27881724 0.34562197 -0.89596242 -0.19986582\n\t\t 0.35602883 -0.91283911 -0.23639649 0.37409577 -0.89672536 -0.16843177 0.38825637\n\t\t -0.906003 -0.19986582 0.35602883 -0.91283911 -0.19986582 0.35602883 -0.91283911 -0.27881724\n\t\t 0.34562197 -0.89596242 -0.23639649 0.37409577 -0.89672536 -0.15439299 -0.46638399\n\t\t -0.87096769 -0.13989669 -0.49674988 -0.85653245 -0.22159475 -0.49012738 -0.84298223\n\t\t -0.22159475 -0.49012738 -0.84298223 -0.22949904 -0.45823553 -0.85866874 -0.15439299\n\t\t -0.46638399 -0.87096769 -0.15439299 -0.46638399 -0.87096769 -0.22949904 -0.45823553\n\t\t -0.85866874 -0.25464636 -0.32026139 -0.91244239 -0.58247626 -0.081545696 -0.8087405\n\t\t -0.61204857 -0.29502267 -0.73369551 -0.75273895 -0.24771902 -0.60988188 -0.75273895\n\t\t -0.24771902 -0.60988188 -0.7335124 -0.088351361 -0.67387921 -0.58247626 -0.081545696\n\t\t -0.8087405 -0.58247626 -0.081545696 -0.8087405 -0.7335124 -0.088351361 -0.67387921\n\t\t -0.67168194 0.10037512 -0.73400068 -0.67168194 0.10037512 -0.73400068 -0.51097149\n\t\t 0.1349221 -0.8489334 -0.58247626 -0.081545696 -0.8087405 -0.43452263 0.26587704 -0.86049992\n\t\t -0.51097149 0.1349221 -0.8489334 -0.67168194 0.10037512 -0.73400068 -0.67168194 0.10037512\n\t\t -0.73400068 -0.60451072 0.22232708 -0.76491594 -0.43452263 0.26587704 -0.86049992\n\t\t -0.82116151 0.082460716 -0.56465346 -0.67168194 0.10037512 -0.73400068 -0.7335124\n\t\t -0.088351361 -0.67387921 -0.7335124 -0.088351361 -0.67387921 -0.85961485 -0.062837914\n\t\t -0.50703454 -0.82116151 0.082460716 -0.56465346 -0.91454816 0.071626626 -0.39802241\n\t\t -0.82116151 0.082460716 -0.56465346 -0.85961485 -0.062837914 -0.50703454 -0.85961485\n\t\t -0.062837914 -0.50703454 -0.9391461 -0.02142431 -0.34275338 -0.91454816 0.071626626\n\t\t -0.39802241 -0.9366436 -0.073641479 -0.34241769 -0.9391461 -0.02142431 -0.34275338\n\t\t -0.85961485 -0.062837914 -0.50703454 -0.85961485 -0.062837914 -0.50703454 -0.86666459\n\t\t -0.13855433 -0.47923216 -0.9366436 -0.073641479 -0.34241769 -0.86666459 -0.13855433\n\t\t -0.47923216 -0.85961485 -0.062837914 -0.50703454 -0.7335124 -0.088351361 -0.67387921\n\t\t -0.75273895 -0.24771902 -0.60988188 -0.86666459 -0.13855433 -0.47923216 -0.7335124\n\t\t -0.088351361 -0.67387921 -0.76717436 0.18747492 -0.61339152 -0.60451072 0.22232708\n\t\t -0.76491594 -0.67168194 0.10037512 -0.73400068 -0.67168194 0.10037512 -0.73400068\n\t\t -0.82116151 0.082460716 -0.56465346 -0.76717436 0.18747492 -0.61339152 -0.76717436\n\t\t 0.18747492 -0.61339152 -0.82116151 0.082460716 -0.56465346 -0.91454816 0.071626626\n\t\t -0.39802241 -0.9391461 -0.02142431 -0.34275338 -0.9366436 -0.073641479 -0.34241769\n\t\t -0.9610889 0.015442048 -0.27576524 -0.91454816 0.071626626 -0.39802241 -0.9391461\n\t\t -0.02142431 -0.34275338 -0.9610889 0.015442048 -0.27576524 -0.9610889 0.015442048\n\t\t -0.27576524 -0.95056003 0.068147518 -0.30292672 -0.91454816 0.071626626 -0.39802241\n\t\t -0.91454816 0.071626626 -0.39802241 -0.95056003 0.068147518 -0.30292672 -0.9145177\n\t\t 0.1774343 -0.36347544 -0.9145177 0.1774343 -0.36347544 -0.87542349 0.16656972 -0.45371869\n\t\t -0.91454816 0.071626626 -0.39802241 -0.91454816 0.071626626 -0.39802241 -0.87542349\n\t\t 0.16656972 -0.45371869 -0.76717436 0.18747492 -0.61339152 -0.43452263 0.26587704\n\t\t -0.86049992 -0.60451072 0.22232708 -0.76491594 -0.56294447 0.28467643 -0.77587205\n\t\t -0.56294447 0.28467643 -0.77587205 -0.38493004 0.32706669 -0.86303294 -0.43452263\n\t\t 0.26587704 -0.86049992 -0.38493004 0.32706669 -0.86303294 -0.56294447 0.28467643\n\t\t -0.77587205 -0.54673922 0.30481863 -0.77983946 -0.54673922 0.30481863 -0.77983946\n\t\t -0.37656802 0.34354669 -0.86028624 -0.38493004 0.32706669 -0.86303294 -0.60451072\n\t\t 0.22232708 -0.76491594 -0.76717436 0.18747492 -0.61339152 -0.72264785 0.25046512\n\t\t -0.64418471;\n\tsetAttr \".n[17928:18093]\" -type \"float3\"  -0.72264785 0.25046512 -0.64418471 -0.56294447\n\t\t 0.28467643 -0.77587205 -0.60451072 0.22232708 -0.76491594 -0.56294447 0.28467643\n\t\t -0.77587205 -0.72264785 0.25046512 -0.64418471 -0.70891452 0.27246898 -0.65047151\n\t\t -0.70891452 0.27246898 -0.65047151 -0.54673922 0.30481863 -0.77983946 -0.56294447\n\t\t 0.28467643 -0.77587205 -0.82268751 0.26099399 -0.5049898 -0.70891452 0.27246898 -0.65047151\n\t\t -0.72264785 0.25046512 -0.64418471 -0.72264785 0.25046512 -0.64418471 -0.84505761\n\t\t 0.23987518 -0.47782832 -0.82268751 0.26099399 -0.5049898 -0.84505761 0.23987518 -0.47782832\n\t\t -0.72264785 0.25046512 -0.64418471 -0.76717436 0.18747492 -0.61339152 -0.76717436\n\t\t 0.18747492 -0.61339152 -0.87542349 0.16656972 -0.45371869 -0.84505761 0.23987518\n\t\t -0.47782832 -0.87542349 0.16656972 -0.45371869 -0.9145177 0.1774343 -0.36347544 -0.88650173\n\t\t 0.24475814 -0.39262065 -0.88650173 0.24475814 -0.39262065 -0.84505761 0.23987518\n\t\t -0.47782832 -0.87542349 0.16656972 -0.45371869 -0.82268751 0.26099399 -0.5049898\n\t\t -0.84505761 0.23987518 -0.47782832 -0.88650173 0.24475814 -0.39262065 -0.30124828\n\t\t 0.33326197 -0.89339882 -0.38493004 0.32706669 -0.86303294 -0.37656802 0.34354669\n\t\t -0.86028624 -0.43452263 0.26587704 -0.86049992 -0.38493004 0.32706669 -0.86303294\n\t\t -0.30124828 0.33326197 -0.89339882 -0.30124828 0.33326197 -0.89339882 -0.34888768\n\t\t 0.26947826 -0.89757991 -0.43452263 0.26587704 -0.86049992 -0.37656802 0.34354669\n\t\t -0.86028624 -0.25461605 0.35575411 -0.89919734 -0.30124828 0.33326197 -0.89339882\n\t\t -0.43452263 0.26587704 -0.86049992 -0.34888768 0.26947826 -0.89757991 -0.43571278\n\t\t 0.12387443 -0.89150667 -0.43571278 0.12387443 -0.89150667 -0.51097149 0.1349221 -0.8489334\n\t\t -0.43452263 0.26587704 -0.86049992 -0.51097149 0.1349221 -0.8489334 -0.43571278 0.12387443\n\t\t -0.89150667 -0.51609844 -0.10556374 -0.849971 -0.51609844 -0.10556374 -0.849971 -0.58247626\n\t\t -0.081545696 -0.8087405 -0.51097149 0.1349221 -0.8489334 -0.61204857 -0.29502267\n\t\t -0.73369551 -0.58247626 -0.081545696 -0.8087405 -0.51609844 -0.10556374 -0.849971\n\t\t -0.51609844 -0.10556374 -0.849971 -0.55494845 -0.3204751 -0.76763207 -0.61204857\n\t\t -0.29502267 -0.73369551 -0.60454106 -0.41624218 -0.67915887 -0.61204857 -0.29502267\n\t\t -0.73369551 -0.55494845 -0.3204751 -0.76763207 -0.60454106 -0.41624218 -0.67915887\n\t\t -0.68037951 -0.33341497 -0.6526078 -0.61204857 -0.29502267 -0.73369551 -0.68037951\n\t\t -0.33341497 -0.6526078 -0.60454106 -0.41624218 -0.67915887 -0.5930661 -0.44026026\n\t\t -0.67409277 -0.68037951 -0.33341497 -0.6526078 -0.75273895 -0.24771902 -0.60988188\n\t\t -0.61204857 -0.29502267 -0.73369551 -0.68037951 -0.33341497 -0.6526078 -0.75179285\n\t\t -0.31916285 -0.57698292 -0.75273895 -0.24771902 -0.60988188 -0.75179285 -0.31916285\n\t\t -0.57698292 -0.79705179 -0.29447338 -0.52720726 -0.75273895 -0.24771902 -0.60988188\n\t\t 0.019470528 0.91021448 -0.41364795 0.019470528 0.91021448 -0.41364795 0.019470528\n\t\t 0.91021448 -0.41364795 -0.55494845 -0.3204751 -0.76763207 -0.55467379 -0.42967033\n\t\t -0.71251559 -0.60454106 -0.41624218 -0.67915887 -0.5930661 -0.44026026 -0.67409277\n\t\t -0.60454106 -0.41624218 -0.67915887 -0.55467379 -0.42967033 -0.71251559 -0.55467379\n\t\t -0.42967033 -0.71251559 -0.5505538 -0.45213196 -0.70174253 -0.5930661 -0.44026026\n\t\t -0.67409277 -0.77684885 0.62123454 0.10257266 -0.80455965 0.59028876 0.065034896\n\t\t -0.76189476 0.6368295 0.11792348 -0.77684885 0.62123454 0.10257266 -0.76189476 0.6368295\n\t\t 0.11792348 -0.61522287 0.75472254 0.2276375 -0.61522287 0.75472254 0.2276375 -0.65450019\n\t\t 0.72380733 0.21835987 -0.77684885 0.62123454 0.10257266 -0.61522287 0.75472254 0.2276375\n\t\t -0.40974179 0.83849591 0.35917228 -0.65450019 0.72380733 0.21835987 -0.61522287 0.75472254\n\t\t 0.2276375 -0.4886016 0.8207646 0.29590741 -0.40974179 0.83849591 0.35917228 -0.4886016\n\t\t 0.8207646 0.29590741 -0.33979335 0.84322637 0.41648602 -0.40974179 0.83849591 0.35917228\n\t\t -0.20325354 0.8692587 0.45060572 -0.40974179 0.83849591 0.35917228 -0.33979335 0.84322637\n\t\t 0.41648602 -0.33979335 0.84322637 0.41648602 -0.17618363 0.87136447 0.45786914 -0.20325354\n\t\t 0.8692587 0.45060572 -0.20325354 0.8692587 0.45060572 -0.17618363 0.87136447 0.45786914\n\t\t -2.716601e-07 0.87856692 0.47758409 -2.716601e-07 0.87856692 0.47758409 -2.7012192e-07\n\t\t 0.87359238 0.48661757 -0.20325354 0.8692587 0.45060572 -0.043946914 0.84502697 -0.53288376\n\t\t -0.041841138 0.84469122 -0.53358567 -2.6391265e-07 0.8535111 -0.52101207 -2.6391265e-07\n\t\t 0.8535111 -0.52101207 -2.6401645e-07 0.85384679 -0.52049321 -0.043946914 0.84502697\n\t\t -0.53288376 -0.014130319 0.80730605 -0.58995336 -0.018555503 0.80422372 -0.59401232\n\t\t -0.069185719 0.8313852 -0.55134743 -0.069185719 0.8313852 -0.55134743 -0.074984238\n\t\t 0.83132416 -0.55067605 -0.014130319 0.80730605 -0.58995336 -0.074984238 0.83132416\n\t\t -0.55067605 -0.069185719 0.8313852 -0.55134743 -0.041841138 0.84469122 -0.53358567\n\t\t -0.041841138 0.84469122 -0.53358567 -0.043946914 0.84502697 -0.53288376 -0.074984238\n\t\t 0.83132416 -0.55067605 0.038758256 0.81807911 -0.57374805 0.036744032 0.816248 -0.57649469\n\t\t -0.018555503 0.80422372 -0.59401232 -0.018555503 0.80422372 -0.59401232 -0.014130319\n\t\t 0.80730605 -0.58995336 0.038758256 0.81807911 -0.57374805 0.052491583 0.8234809 -0.56486714\n\t\t 0.052766249 0.82341987 -0.56495869 0.036744032 0.816248 -0.57649469 0.036744032 0.816248\n\t\t -0.57649469 0.038758256 0.81807911 -0.57374805 0.052491583 0.8234809 -0.56486714\n\t\t -0.41248843 0.85128319 -0.32428974 -0.41206118 0.85137475 -0.32450336 -0.40376014\n\t\t 0.86156791 -0.30759612 -0.40376014 0.86156791 -0.30759612 -0.40665939 0.85894334\n\t\t -0.31113628 -0.41248843 0.85128319 -0.32428974 -0.38065764 0.89333767 -0.23874636\n\t\t -0.40665939 0.85894334 -0.31113628 -0.40376014 0.86156791 -0.30759612 -0.40376014\n\t\t 0.86156791 -0.30759612 -0.37348577 0.89831221 -0.23133036 -0.38065764 0.89333767\n\t\t -0.23874636 -0.31940702 0.94555485 -0.06225783 -0.38065764 0.89333767 -0.23874636\n\t\t -0.37348577 0.89831221 -0.23133036 -0.37348577 0.89831221 -0.23133036;\n\tsetAttr \".n[18094:18259]\" -type \"float3\"  -0.30036348 0.95214683 -0.055940498 -0.31940702\n\t\t 0.94555485 -0.06225783 -0.15997833 0.98706007 -0.0082400711 -0.31940702 0.94555485\n\t\t -0.06225783 -0.30036348 0.95214683 -0.055940498 -0.30036348 0.95214683 -0.055940498\n\t\t -0.15286753 0.9882198 -0.0059817014 -0.15997833 0.98706007 -0.0082400711 -3.0907611e-07\n\t\t 0.99957275 0.028931472 -0.15997833 0.98706007 -0.0082400711 -0.15286753 0.9882198\n\t\t -0.0059817014 -0.15286753 0.9882198 -0.0059817014 -3.0906668e-07 0.99954224 0.029847028\n\t\t -3.0907611e-07 0.99957275 0.028931472 -0.17069025 0.74071461 -0.64973915 -0.29215387\n\t\t 0.61882365 -0.72914827 -0.3024081 0.62199754 -0.7222206 -0.3024081 0.62199754 -0.7222206\n\t\t -0.13412909 0.75710309 -0.63933229 -0.17069025 0.74071461 -0.64973915 -0.3717767\n\t\t 0.67174274 -0.64067513 -0.3024081 0.62199754 -0.7222206 -0.29215387 0.61882365 -0.72914827\n\t\t -0.29215387 0.61882365 -0.72914827 -0.34073937 0.66786689 -0.66167188 -0.3717767\n\t\t 0.67174274 -0.64067513 -0.46055505 0.63737887 -0.61772519 -0.3717767 0.67174274 -0.64067513\n\t\t -0.34073937 0.66786689 -0.66167188 -0.34073937 0.66786689 -0.66167188 -0.46272185\n\t\t 0.63560879 -0.6179083 -0.46055505 0.63737887 -0.61772519 -0.17069025 0.74071461 -0.64973915\n\t\t -0.13412909 0.75710309 -0.63933229 -0.073458314 0.83263642 -0.54890597 -0.036408853\n\t\t 0.88189334 -0.47001562 -0.073458314 0.83263642 -0.54890597 -0.13412909 0.75710309\n\t\t -0.63933229 -0.13412909 0.75710309 -0.63933229 -0.062105414 0.79461038 -0.60390031\n\t\t -0.036408853 0.88189334 -0.47001562 -0.036408853 0.88189334 -0.47001562 -0.062105414\n\t\t 0.79461038 -0.60390031 -0.055940673 0.79680771 -0.60161144 -2.7672752e-07 0.89495522\n\t\t -0.44608912 -0.036408853 0.88189334 -0.47001562 -0.012207712 0.99557483 -0.093020491\n\t\t 0.014679095 0.99838251 0.054475464 0.0061949482 0.99935913 0.035096213 0.0066832444\n\t\t 0.9992981 0.036225397 0.0066832444 0.9992981 0.036225397 0.016693316 0.99810785 0.058992203\n\t\t 0.014679095 0.99838251 0.054475464 -2.7672752e-07 0.89495522 -0.44608912 -2.8025681e-07\n\t\t 0.90636915 -0.42240676 -0.036408853 0.88189334 -0.47001562 0.089907251 0.90014338\n\t\t -0.42619103 0.13840115 0.90633875 -0.39918217 0.13379286 0.90670496 -0.39994514 0.13379286\n\t\t 0.90670496 -0.39994514 0.087526806 0.89986873 -0.42722866 0.089907251 0.90014338\n\t\t -0.42619103 0.19653891 0.92251354 -0.33207196 0.13379286 0.90670496 -0.39994514 0.13840115\n\t\t 0.90633875 -0.39918217 0.13840115 0.90633875 -0.39918217 0.20123877 0.92138439 -0.33237714\n\t\t 0.19653891 0.92251354 -0.33207196 0.20123877 0.92138439 -0.33237714 0.27433059 0.93685728\n\t\t -0.21680357 0.19653891 0.92251354 -0.33207196 0.20123877 0.92138439 -0.33237714 0.27945769\n\t\t 0.93679625 -0.2104252 0.27433059 0.93685728 -0.21680357 0.27433059 0.93685728 -0.21680357\n\t\t 0.24121802 0.93646049 -0.25455496 0.19653891 0.92251354 -0.33207196 -0.020050939\n\t\t 0.90203553 -0.43113503 -0.073458314 0.83263642 -0.54890597 -0.036408853 0.88189334\n\t\t -0.47001562 -0.036408853 0.88189334 -0.47001562 -0.026063098 0.93948179 -0.34153271\n\t\t -0.020050939 0.90203553 -0.43113503 -0.026063098 0.93948179 -0.34153271 -0.036408853\n\t\t 0.88189334 -0.47001562 -2.8025681e-07 0.90636915 -0.42240676 -2.8025681e-07 0.90636915\n\t\t -0.42240676 -2.8408806e-07 0.9187597 -0.39475697 -0.026063098 0.93948179 -0.34153271\n\t\t -0.36927375 -0.64256728 0.67131573 -0.36402458 -0.63905764 0.67751098 -0.39359701\n\t\t -0.65620905 0.64375752 -0.39359701 -0.65620905 0.64375752 -0.39362752 -0.65617853\n\t\t 0.64375752 -0.36927375 -0.64256728 0.67131573 -0.24161486 -0.59959716 0.76290178\n\t\t -0.36402458 -0.63905764 0.67751098 -0.36927375 -0.64256728 0.67131573 -0.36927375\n\t\t -0.64256728 0.67131573 -0.25836954 -0.60597551 0.75231183 -0.24161486 -0.59959716\n\t\t 0.76290178 -0.24161486 -0.59959716 0.76290178 -0.25836954 -0.60597551 0.75231183\n\t\t -0.093447484 -0.62428659 0.77556694 -0.093447484 -0.62428659 0.77556694 -0.083406895\n\t\t -0.62364566 0.77721494 -0.24161486 -0.59959716 0.76290178 -0.083406895 -0.62364566\n\t\t 0.77721494 -0.093447484 -0.62428659 0.77556694 -0.03286824 -0.63115323 0.77492607\n\t\t -0.03286824 -0.63115323 0.77492607 -0.031555943 -0.63124478 0.77492607 -0.083406895\n\t\t -0.62364566 0.77721494 1.9813029e-07 -0.64076656 0.76769316 -0.031555943 -0.63124478\n\t\t 0.77492607 -0.03286824 -0.63115323 0.77492607 -0.03286824 -0.63115323 0.77492607\n\t\t 1.9822465e-07 -0.64107174 0.76744902 1.9813029e-07 -0.64076656 0.76769316 -0.052461039\n\t\t -0.90588099 -0.42023981 -0.10513597 -0.95999032 -0.25952935 -0.10501389 -0.95736569\n\t\t -0.26905113 -0.052461039 -0.90588099 -0.42023981 -0.10501389 -0.95736569 -0.26905113\n\t\t 2.7224516e-07 -0.88045907 -0.47404394 -0.052461039 -0.90588099 -0.42023981 2.7224516e-07\n\t\t -0.88045907 -0.47404394 2.7101842e-07 -0.87649167 -0.48139891 -0.0071105035 -0.99935913\n\t\t -0.035004657 -0.0096130222 -0.9981994 -0.058961686 -0.0092468001 -0.99841303 -0.055299465\n\t\t -0.0092468001 -0.99841303 -0.055299465 -0.005462504 -0.99978638 -0.01937918 -0.0071105035\n\t\t -0.99935913 -0.035004657 -0.10501389 -0.95736569 -0.26905113 -0.10513597 -0.95999032\n\t\t -0.25952935 -0.42265061 -0.80501741 -0.4162724 -0.42265061 -0.80501741 -0.4162724\n\t\t -0.42313889 -0.80108052 -0.42329165 -0.10501389 -0.95736569 -0.26905113 -0.42313889\n\t\t -0.80108052 -0.42329165 -0.42265061 -0.80501741 -0.4162724 -0.49085945 -0.87081534\n\t\t -0.026673112 -0.49085945 -0.87081534 -0.026673112 -0.48469469 -0.87420291 -0.027802298\n\t\t -0.42313889 -0.80108052 -0.42329165 -0.48469469 -0.87420291 -0.027802298 -0.49085945\n\t\t -0.87081534 -0.026673112 -0.52015722 -0.85006273 0.082247443 -0.52015722 -0.85006273\n\t\t 0.082247443 -0.5169223 -0.85235161 0.079043008 -0.48469469 -0.87420291 -0.027802298\n\t\t -0.51759368 -0.84304351 0.14603113 -0.5169223 -0.85235161 0.079043008 -0.52015722\n\t\t -0.85006273 0.082247443 -0.52015722 -0.85006273 0.082247443 -0.51673919 -0.84340972\n\t\t 0.14682461 -0.51759368 -0.84304351 0.14603113 -0.89446694 -0.21774988 -0.3904843\n\t\t -0.89135408 -0.046327408 -0.45091099 -0.89901417 -0.097659536 -0.42686239 -0.89901417\n\t\t -0.097659536 -0.42686239 -0.89385659 -0.23688498 -0.38062683 -0.89446694 -0.21774988\n\t\t -0.3904843 -0.88213742 -0.30085176 -0.36234623 -0.89446694 -0.21774988 -0.3904843;\n\tsetAttr \".n[18260:18425]\" -type \"float3\"  -0.89385659 -0.23688498 -0.38062683 -0.89385659\n\t\t -0.23688498 -0.38062683 -0.88164908 -0.30249977 -0.36216313 -0.88213742 -0.30085176\n\t\t -0.36234623 -0.87847519 -0.31183842 -0.36191899 -0.88213742 -0.30085176 -0.36234623\n\t\t -0.88164908 -0.30249977 -0.36216313 -0.88164908 -0.30249977 -0.36216313 -0.8783226\n\t\t -0.31196049 -0.36216313 -0.87847519 -0.31183842 -0.36191899 -0.89901417 -0.097659536\n\t\t -0.42686239 -0.89135408 -0.046327408 -0.45091099 -0.8471939 0.11383374 -0.51887572\n\t\t -0.8471939 0.11383374 -0.51887572 -0.86513871 0.061097749 -0.4977569 -0.89901417\n\t\t -0.097659536 -0.42686239 -0.81865907 0.18011995 -0.5452742 -0.86513871 0.061097749\n\t\t -0.4977569 -0.8471939 0.11383374 -0.51887572 -0.8471939 0.11383374 -0.51887572 -0.80068368\n\t\t 0.21933623 -0.55745107 -0.81865907 0.18011995 -0.5452742 -0.80233169 0.24478866 -0.54432815\n\t\t -0.81865907 0.18011995 -0.5452742 -0.80068368 0.21933623 -0.55745107 -0.80068368\n\t\t 0.21933623 -0.55745107 -0.79989022 0.25122809 -0.54499954 -0.80233169 0.24478866\n\t\t -0.54432815 -0.79766232 0.25605002 -0.54600668 -0.80233169 0.24478866 -0.54432815\n\t\t -0.79989022 0.25122809 -0.54499954 -0.33671081 0.31131917 -0.88863796 -0.33671081\n\t\t 0.31131917 -0.88863796 -0.33671081 0.31134969 -0.88863796 -0.99316382 -0.094729751\n\t\t 0.067720577 -0.99755853 -0.050752588 0.047456287 -0.99710071 -0.057863399 0.049165323\n\t\t -0.99710071 -0.057863399 0.049165323 -0.99295014 -0.096469305 0.068575099 -0.99316382\n\t\t -0.094729751 0.067720577 -0.99316382 -0.094729751 0.067720577 -0.99295014 -0.096469305\n\t\t 0.068575099 -0.99237031 -0.10129122 0.070101023 -0.99237031 -0.10129122 0.070101023\n\t\t -0.99233979 -0.10153538 0.0702231 -0.99316382 -0.094729751 0.067720577 -0.99710071\n\t\t -0.057863399 0.049165323 -0.99755853 -0.050752588 0.047456287 -0.99951172 0.0016476926\n\t\t 0.030457472 -0.99951172 0.0016476926 0.030457472 -0.9994812 -0.0055546756 0.031006806\n\t\t -0.99710071 -0.057863399 0.049165323 -0.9994812 -0.0055546756 0.031006806 -0.99951172\n\t\t 0.0016476926 0.030457472 -0.99911499 0.039215975 0.014862511 -0.99911499 0.039215975\n\t\t 0.014862511 -0.99923706 0.035401162 0.014557326 -0.9994812 -0.0055546756 0.031006806\n\t\t -0.99835199 0.0559096 0.010559401 -0.99923706 0.035401162 0.014557326 -0.99911499\n\t\t 0.039215975 0.014862511 -0.99911499 0.039215975 0.014862511 -0.99832147 0.056428414\n\t\t 0.012482066 -0.99835199 0.0559096 0.010559401 -0.94955289 -0.045930628 0.31015962\n\t\t -0.99835199 0.0559096 0.010559401 -0.99832147 0.056428414 0.012482066 -0.99832147\n\t\t 0.056428414 0.012482066 -0.94827116 -0.047303963 0.31385234 -0.94955289 -0.045930628\n\t\t 0.31015962 -0.99331647 -0.094333008 0.066133618 -0.99233979 -0.10153538 0.0702231\n\t\t -0.99237031 -0.10129122 0.070101023 -0.99237031 -0.10129122 0.070101023 -0.99331647\n\t\t -0.094333008 0.066133618 -0.99331647 -0.094333008 0.066133618 0.93313396 0.072176538\n\t\t -0.35215309 0.92559588 0.075747192 -0.3707999 0.92641985 0.071779788 -0.3695181 0.92641985\n\t\t 0.071779788 -0.3695181 0.93343914 0.071444094 -0.35154271 0.93313396 0.072176538\n\t\t -0.35215309 0.93313396 0.072176538 -0.35215309 0.93343914 0.071444094 -0.35154271\n\t\t 0.93331707 0.072451204 -0.35157323 0.63310641 0.20520659 -0.74633014 0.63310641 0.20520659\n\t\t -0.74633014 0.63310641 0.20520659 -0.74633014 0.91915649 0.05966394 -0.38929412 0.92641985\n\t\t 0.071779788 -0.3695181 0.92559588 0.075747192 -0.3707999 0.92559588 0.075747192 -0.3707999\n\t\t 0.91833246 0.065035194 -0.39036226 0.91915649 0.05966394 -0.38929412 0.91915649 0.05966394\n\t\t -0.38929412 0.91833246 0.065035194 -0.39036226 0.92049927 0.034486167 -0.38917202\n\t\t 0.92049927 0.034486167 -0.38917202 0.92101812 0.029938912 -0.38828701 0.91915649\n\t\t 0.05966394 -0.38929412 0.92101812 0.029938912 -0.38828701 0.92049927 0.034486167\n\t\t -0.38917202 0.92587054 -0.009643591 -0.37769708 0.92587054 -0.009643591 -0.37769708\n\t\t 0.92593157 -0.010467591 -0.37748346 0.92101812 0.029938912 -0.38828701 0.93115026\n\t\t -0.050263725 -0.36106449 0.92593157 -0.010467591 -0.37748346 0.92587054 -0.009643591\n\t\t -0.37769708 0.92587054 -0.009643591 -0.37769708 0.93136388 -0.052094836 -0.36030152\n\t\t 0.93115026 -0.050263725 -0.36106449 0.93115026 -0.050263725 -0.36106449 0.93136388\n\t\t -0.052094836 -0.36030152 0.93322551 -0.068635866 -0.35258034 0.93322551 -0.068635866\n\t\t -0.35258034 0.93325603 -0.068605348 -0.35254982 0.93115026 -0.050263725 -0.36106449\n\t\t -0.11380376 0.76232171 -0.63710445 -0.11810689 0.83187342 -0.54219192 -2.5875084e-07\n\t\t 0.83681744 -0.54744107 -2.5875084e-07 0.83681744 -0.54744107 -2.3661265e-07 0.76522106\n\t\t -0.643727 -0.11380376 0.76232171 -0.63710445 -0.11380376 0.76232171 -0.63710445 -2.3661265e-07\n\t\t 0.76522106 -0.643727 -2.1582386e-07 0.69798875 -0.71605587 -0.1303142 0.52418578\n\t\t -0.84154797 -0.22879744 0.51982164 -0.8230232 -0.23462647 0.55766463 -0.79619747\n\t\t 0.24030277 -0.09009064 -0.96649069 0.14041568 -0.049317941 -0.98883021 0.081148751\n\t\t -0.10983617 -0.99060029 0.081148751 -0.10983617 -0.99060029 0.12179941 -0.12085333\n\t\t -0.98516798 0.24030277 -0.09009064 -0.96649069 0.24030277 -0.09009064 -0.96649069\n\t\t 0.12179941 -0.12085333 -0.98516798 0.28925446 -0.10013121 -0.95199436 0.28925446\n\t\t -0.10013121 -0.95199436 0.28965122 -0.098971508 -0.95199436 0.24030277 -0.09009064\n\t\t -0.96649069 0.045014866 -0.203528 -0.97802669 0.12179941 -0.12085333 -0.98516798\n\t\t 0.081148751 -0.10983617 -0.99060029 0.081148751 -0.10983617 -0.99060029 0.045655753\n\t\t -0.20566429 -0.97753835 0.045014866 -0.203528 -0.97802669 0.04562524 -0.2111271 -0.97637868\n\t\t 0.045014866 -0.203528 -0.97802669 0.045655753 -0.20566429 -0.97753835 0.045655753\n\t\t -0.20566429 -0.97753835 0.046174571 -0.21488088 -0.97552413 0.04562524 -0.2111271\n\t\t -0.97637868 0.04562524 -0.2111271 -0.97637868 0.046174571 -0.21488088 -0.97552413\n\t\t 0.04623561 -0.21915348 -0.97457808 0.04623561 -0.21915348 -0.97457808 0.046968054\n\t\t -0.21585748 -0.97527999 0.04562524 -0.2111271 -0.97637868 0.081148751 -0.10983617\n\t\t -0.99060029 0.14041568 -0.049317941 -0.98883021 0.055024881 -0.01901309 -0.99829096\n\t\t 0.055024881 -0.01901309 -0.99829096 0.042756435 -0.0074160593 -0.99905396 0.081148751\n\t\t -0.10983617 -0.99060029;\n\tsetAttr \".n[18426:18591]\" -type \"float3\"  0.042756435 -0.0074160593 -0.99905396\n\t\t 0.055024881 -0.01901309 -0.99829096 1.7835355e-09 -0.0057680728 -0.99996948 1.7835355e-09\n\t\t -0.0057680728 -0.99996948 6.6058331e-10 -0.0021363702 -0.99996948 0.042756435 -0.0074160593\n\t\t -0.99905396 0.37946716 -0.015839059 -0.92504656 0.38789025 -0.025635498 -0.9213233\n\t\t 0.40287486 -0.025299788 -0.91488385 0.40287486 -0.025299788 -0.91488385 0.3764458\n\t\t -0.015045578 -0.92629778 0.37946716 -0.015839059 -0.92504656 0.3764458 -0.015045578\n\t\t -0.92629778 0.40287486 -0.025299788 -0.91488385 0.47294533 -0.0090639163 -0.88100833\n\t\t 0.47294533 -0.0090639163 -0.88100833 0.35196996 -0.0086366991 -0.93594164 0.3764458\n\t\t -0.015045578 -0.92629778 0.3764458 -0.015045578 -0.92629778 0.35196996 -0.0086366991\n\t\t -0.93594164 0.25946838 -0.0090639889 -0.96569717 0.25946838 -0.0090639889 -0.96569717\n\t\t 0.23483993 -0.0087282937 -0.97198403 0.3764458 -0.015045578 -0.92629778 0.34824672\n\t\t -0.0053101829 -0.93737602 0.38789025 -0.025635498 -0.9213233 0.37946716 -0.015839059\n\t\t -0.92504656 0.37946716 -0.015839059 -0.92504656 0.29792169 0.015991719 -0.95443588\n\t\t 0.34824672 -0.0053101829 -0.93737602 0.24527726 0.020691553 -0.96920681 0.34824672\n\t\t -0.0053101829 -0.93737602 0.29792169 0.015991719 -0.95443588 0.29792169 0.015991719\n\t\t -0.95443588 0.21948911 0.030915244 -0.97509688 0.24527726 0.020691553 -0.96920681\n\t\t 0.24527726 0.020691553 -0.96920681 0.21948911 0.030915244 -0.97509688 0.15506454\n\t\t 0.040101293 -0.98706013 0.15506454 0.040101293 -0.98706013 0.15094453 0.033967074\n\t\t -0.9879452 0.24527726 0.020691553 -0.96920681 0.15094453 0.033967074 -0.9879452 0.15506454\n\t\t 0.040101293 -0.98706013 0.073885299 0.041962899 -0.99636829 0.073885299 0.041962899\n\t\t -0.99636829 0.070772409 0.040955789 -0.99664295 0.15094453 0.033967074 -0.9879452\n\t\t 0.070772409 0.040955789 -0.99664295 0.073885299 0.041962899 -0.99636829 -1.3182871e-08\n\t\t 0.042634282 -0.99908447 -1.3182871e-08 0.042634282 -0.99908447 -1.3097941e-08 0.042359617\n\t\t -0.99908447 0.070772409 0.040955789 -0.99664295 0.58037037 0.43769658 -0.68666655\n\t\t 0.55674905 0.45466489 -0.69518119 0.7923826 0.026948046 -0.6093936 0.7923826 0.026948046\n\t\t -0.6093936 0.76857811 0.22327361 -0.59947509 0.58037037 0.43769658 -0.68666655 0.34488949\n\t\t 0.58980078 -0.73015541 0.55674905 0.45466489 -0.69518119 0.58037037 0.43769658 -0.68666655\n\t\t 0.58037037 0.43769658 -0.68666655 0.36695439 0.58323932 -0.72463155 0.34488949 0.58980078\n\t\t -0.73015541 0.34488949 0.58980078 -0.73015541 0.36695439 0.58323932 -0.72463155 0.15536954\n\t\t 0.64619893 -0.74715424 0.15536954 0.64619893 -0.74715424 0.16379263 0.65068513 -0.74144727\n\t\t 0.34488949 0.58980078 -0.73015541 0.76857811 0.22327361 -0.59947509 0.7923826 0.026948046\n\t\t -0.6093936 0.83977783 0.0048831808 -0.54286325 0.83977783 0.0048831808 -0.54286325\n\t\t 0.87408066 0.035920519 -0.48438978 0.76857811 0.22327361 -0.59947509 -2.0533983e-07\n\t\t 0.66408271 -0.74764252 0.16379263 0.65068513 -0.74144727 0.15536954 0.64619893 -0.74715424\n\t\t 0.15536954 0.64619893 -0.74715424 -2.0348084e-07 0.65807056 -0.75295275 -2.0533983e-07\n\t\t 0.66408271 -0.74764252 -0.17441331 0.084475257 0.98101747 -0.24488056 0.1023896 0.96411026\n\t\t -0.19217509 0.084780432 0.97766048 -0.19217509 0.084780432 0.97766048 -0.1605579\n\t\t 0.071932152 0.98437452 -0.17441331 0.084475257 0.98101747 -0.28330335 0.10702839\n\t\t 0.95303202 -0.19217509 0.084780432 0.97766048 -0.24488056 0.1023896 0.96411026 -0.24488056\n\t\t 0.1023896 0.96411026 -0.28379166 0.10354929 0.95324564 -0.28330335 0.10702839 0.95303202\n\t\t 0.00091524731 0.99600208 -0.089114122 0.0010068029 0.99600208 -0.089022569 0.00091524731\n\t\t 0.99600208 -0.089114122 0.00091524731 0.99600208 -0.089114122 0.00082369178 0.99600208\n\t\t -0.089205675 0.00091524731 0.99600208 -0.089114122 0.99563587 -0.013214213 -0.092349008\n\t\t 0.99380475 0.062074944 -0.092104867 0.99310279 0.068178646 -0.095278792 0.99310279\n\t\t 0.068178646 -0.095278792 0.99487287 -0.033234354 -0.095187232 0.99563587 -0.013214213\n\t\t -0.092349008 0.99563587 -0.013214213 -0.092349008 0.99487287 -0.033234354 -0.095187232\n\t\t 0.9895016 0.11960234 -0.080996133 0.9895016 0.11960234 -0.080996133 0.99386579 0.070009761\n\t\t -0.085543387 0.99563587 -0.013214213 -0.092349008 0.75911725 0.64244539 -0.10455646\n\t\t 0.75737768 0.64436805 -0.10541098 0.76509887 0.63579237 -0.10168771 0.76509887 0.63579237\n\t\t -0.10168771 0.76662475 0.63408333 -0.10092475 0.75911725 0.64244539 -0.10455646 -0.68871146\n\t\t 0.71874118 -0.095187284 -0.68559855 0.72188461 -0.093783431 -0.6965242 0.7106843\n\t\t -0.098757945 -0.6965242 0.7106843 -0.098757945 -0.69920981 0.70784605 -0.099978693\n\t\t -0.68871146 0.71874118 -0.095187284 -0.97726375 0.19016053 -0.093661323 -0.94653171\n\t\t 0.30832821 -0.094637923 -0.947905 0.30356732 -0.096194364 -0.947905 0.30356732 -0.096194364\n\t\t -0.97201461 0.214026 -0.096560583 -0.97726375 0.19016053 -0.093661323 -0.97726375\n\t\t 0.19016053 -0.093661323 -0.97201461 0.214026 -0.096560583 -0.99093604 0.097109586\n\t\t -0.092501611 -0.99093604 0.097109586 -0.092501611 -0.99166846 0.093355805 -0.088625759\n\t\t -0.97726375 0.19016053 -0.093661323 0.52543741 -0.82302296 0.21561334 0.52958792\n\t\t -0.80330801 0.27234724 0.51725847 -0.85219866 0.078524195 0.51725847 -0.85219866\n\t\t 0.078524195 0.51451176 -0.85744786 -3.0454701e-05 0.52543741 -0.82302296 0.21561334\n\t\t 0.54161221 -0.79311484 0.27851197 0.52958792 -0.80330801 0.27234724 0.52543741 -0.82302296\n\t\t 0.21561334 -0.0048521683 -0.88821065 0.45939517 -0.002135993 -0.9790948 0.2033449\n\t\t -0.0026548111 -0.96752828 0.25269333 3.0920822e-07 -1 7.441745e-08 -0.0026548111\n\t\t -0.96752828 0.25269333 -0.002135993 -0.9790948 0.2033449 -0.002135993 -0.9790948\n\t\t 0.2033449 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07\n\t\t -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07\n\t\t -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 0.98767048\n\t\t 0.14487167 -0.059175402 0.99386579 0.070009761 -0.085543387 0.9895016 0.11960234\n\t\t -0.080996133 0.9895016 0.11960234 -0.080996133;\n\tsetAttr \".n[18592:18757]\" -type \"float3\"  0.99615467 0.080202945 -0.035035256 0.98767048\n\t\t 0.14487167 -0.059175402 -0.00021393716 0.99481183 -0.10171826 -0.00021393716 0.99481183\n\t\t -0.10171826 0.14194129 0.98471028 -0.10074168 0.14194129 0.98471028 -0.10074168 0.13989654\n\t\t 0.98504597 -0.10025338 -0.00021393716 0.99481183 -0.10171826 0.13989654 0.98504597\n\t\t -0.10025338 0.14194129 0.98471028 -0.10074168 0.20636587 0.97363204 -0.096987896\n\t\t 0.20636587 0.97363204 -0.096987896 0.20523667 0.97402883 -0.095553525 0.13989654\n\t\t 0.98504597 -0.10025338 0.94381541 0.061769731 -0.32456434 0.97503585 -0.069917619\n\t\t -0.21057771 0.91036713 -0.049744919 -0.41071811 0.91036713 -0.049744919 -0.41071811\n\t\t 0.86724448 -0.0069885077 -0.49778742 0.94381541 0.061769731 -0.32456434 0.83977783\n\t\t 0.0048831808 -0.54286325 0.94381541 0.061769731 -0.32456434 0.86724448 -0.0069885077\n\t\t -0.49778742 0.86724448 -0.0069885077 -0.49778742 0.87408066 0.035920519 -0.48438978\n\t\t 0.83977783 0.0048831808 -0.54286325 0.99172944 0.10748649 -0.069856875 0.99743646\n\t\t -0.071443528 5.316668e-09 0.97503585 -0.069917619 -0.21057771 0.97503585 -0.069917619\n\t\t -0.21057771 0.94381541 0.061769731 -0.32456434 0.99172944 0.10748649 -0.069856875\n\t\t 0.99743646 -0.071443528 5.316668e-09 0.99743646 -0.071443528 5.316668e-09 0.99172944\n\t\t 0.10748649 -0.069856875 0.99172944 0.10748649 -0.069856875 0.99258393 0.12137242\n\t\t -0.001251268 0.99743646 -0.071443528 5.316668e-09 0.97537148 0.21909268 -0.024536898\n\t\t 0.99172944 0.10748649 -0.069856875 0.94381541 0.061769731 -0.32456434 0.99258393\n\t\t 0.12137242 -0.001251268 0.99172944 0.10748649 -0.069856875 0.97537148 0.21909268\n\t\t -0.024536898 0.94381541 0.061769731 -0.32456434 0.98330629 0.18192114 -1.3538085e-08\n\t\t 0.97537148 0.21909268 -0.024536898 0.97537148 0.21909268 -0.024536898 0.94750804\n\t\t 0.31968167 -2.3789873e-08 0.99258393 0.12137242 -0.001251268 0.27878639 0.62315744\n\t\t -0.73067421 0.52925181 0.59212023 -0.60765409 0.43116534 0.59797972 -0.67561883 0.43116534\n\t\t 0.59797972 -0.67561883 0.24884774 0.61073643 -0.75167096 0.27878639 0.62315744 -0.73067421\n\t\t 0.69792759 0.50795025 -0.50483721 0.43116534 0.59797972 -0.67561883 0.52925181 0.59212023\n\t\t -0.60765409 0.52925181 0.59212023 -0.60765409 0.82125294 0.42161345 -0.38435015 0.69792759\n\t\t 0.50795025 -0.50483721 0.10455623 0.60902739 -0.78621793 0.27878639 0.62315744 -0.73067421\n\t\t 0.24884774 0.61073643 -0.75167096 0.24884774 0.61073643 -0.75167096 0.09903238 0.60142827\n\t\t -0.79271835 0.10455623 0.60902739 -0.78621793 0.87197471 0.31543955 -0.37430954 0.69792759\n\t\t 0.50795025 -0.50483721 0.82125294 0.42161345 -0.38435015 0.82125294 0.42161345 -0.38435015\n\t\t 0.93819994 0.1235392 -0.32319102 0.87197471 0.31543955 -0.37430954 0.93819994 0.1235392\n\t\t -0.32319102 0.9401837 0.0047001159 -0.34058657 0.87197471 0.31543955 -0.37430954\n\t\t -1.8597599e-07 0.60145873 -0.79888308 0.10455623 0.60902739 -0.78621793 0.09903238\n\t\t 0.60142827 -0.79271835 0.09903238 0.60142827 -0.79271835 -1.8522107e-07 0.59901726\n\t\t -0.80071419 -1.8597599e-07 0.60145873 -0.79888308 0.12591937 0.00091552042 -0.99203467\n\t\t 0.17697683 -0.0025025364 -0.98419142 0.17676321 -0.004394684 -0.98422194 0.17676321\n\t\t -0.004394684 -0.98422194 0.12692648 -0.00057988625 -0.99188209 0.12591937 0.00091552042\n\t\t -0.99203467 0.40409562 -0.10361028 -0.90881068 0.17676321 -0.004394684 -0.98422194\n\t\t 0.17697683 -0.0025025364 -0.98419142 0.17697683 -0.0025025364 -0.98419142 0.35123757\n\t\t -0.086825117 -0.93221837 0.40409562 -0.10361028 -0.90881068 0.063722648 0.00045772307\n\t\t -0.99795526 0.12591937 0.00091552042 -0.99203467 0.12692648 -0.00057988625 -0.99188209\n\t\t 0.12692648 -0.00057988625 -0.99188209 0.065858945 -3.0572399e-05 -0.99780267 0.063722648\n\t\t 0.00045772307 -0.99795526 0.51936406 -0.19635598 -0.83165991 0.40409562 -0.10361028\n\t\t -0.90881068 0.35123757 -0.086825117 -0.93221837 0.35123757 -0.086825117 -0.93221837\n\t\t 0.49446094 -0.20764785 -0.84398937 0.51936406 -0.19635598 -0.83165991 7.5515726e-11\n\t\t -0.00024422249 -1 0.063722648 0.00045772307 -0.99795526 0.065858945 -3.0572399e-05\n\t\t -0.99780267 0.065858945 -3.0572399e-05 -0.99780267 1.3213516e-10 -0.00042733355 -0.99996948\n\t\t 7.5515726e-11 -0.00024422249 -1 0.6799525 -0.47535613 -0.55827504 0.79729617 -0.39622161\n\t\t -0.45527509 0.74645233 -0.43409505 -0.5043183 0.74645233 -0.43409505 -0.5043183 0.62453097\n\t\t -0.50422668 -0.59639263 0.6799525 -0.47535613 -0.55827504 -0.40153173 -0.91583008\n\t\t 6.8153732e-08 -0.42081946 -0.90713227 -0.00045771012 -0.23310007 -0.97244185 7.2366639e-08\n\t\t -0.23310007 -0.97244185 7.2366639e-08 -0.21851224 -0.9757989 7.2616459e-08 -0.40153173\n\t\t -0.91583008 6.8153732e-08 -0.42081946 -0.90713227 -0.00045771012 -0.40153173 -0.91583008\n\t\t 6.8153732e-08 -0.56764406 -0.82323694 -0.0067445291 -0.56764406 -0.82323694 -0.0067445291\n\t\t -0.62330979 -0.78194541 -0.0010070526 -0.42081946 -0.90713227 -0.00045771012 -0.21851224\n\t\t -0.9757989 7.2616459e-08 -0.23310007 -0.97244185 7.2366639e-08 -0.07644856 -0.99707019\n\t\t 7.419942e-08 -0.07644856 -0.99707019 7.419942e-08 -0.071718194 -0.99740595 7.422441e-08\n\t\t -0.21851224 -0.9757989 7.2616459e-08 -0.81612581 -0.57780719 -0.0033264745 -0.62330979\n\t\t -0.78194541 -0.0010070526 -0.56764406 -0.82323694 -0.0067445291 -0.56764406 -0.82323694\n\t\t -0.0067445291 -0.70790708 -0.70592386 -0.02227846 -0.81612581 -0.57780719 -0.0033264745\n\t\t -0.9736014 -0.22821771 -0.00042724214 -0.81612581 -0.57780719 -0.0033264745 -0.70790708\n\t\t -0.70592386 -0.02227846 -0.70790708 -0.70592386 -0.02227846 -0.95590061 -0.29364941\n\t\t 2.1852617e-08 -0.9736014 -0.22821771 -0.00042724214 3.0920822e-07 -1 7.441745e-08\n\t\t -0.071718194 -0.99740595 7.422441e-08 -0.07644856 -0.99707019 7.419942e-08 -0.07644856\n\t\t -0.99707019 7.419942e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08\n\t\t -0.99996948 -0.0013126051 9.765759e-11 -0.9736014 -0.22821771 -0.00042724214 -0.95590061\n\t\t -0.29364941 2.1852617e-08 -0.95590061 -0.29364941 2.1852617e-08 -0.99996948 -0.0013126051\n\t\t 9.765759e-11 -0.99996948 -0.0013126051 9.765759e-11 0.99615467 0.080202945 -0.035035256\n\t\t 0.99243146 -0.12265358 9.1275894e-09 0.99688709 -0.070741601 -0.03448591 0.98767048\n\t\t 0.14487167 -0.059175402 0.99615467 0.080202945 -0.035035256;\n\tsetAttr \".n[18758:18923]\" -type \"float3\"  0.99688709 -0.070741601 -0.03448591 0.76000249\n\t\t -0.16284658 -0.62913907 0.83977783 0.0048831808 -0.54286325 0.7923826 0.026948046\n\t\t -0.6093936 0.50587457 0.86257535 -6.4190644e-08 0.61577171 0.78789651 -5.8633237e-08\n\t\t 0.58711487 0.8094731 -6.0238911e-08 0.58711487 0.8094731 -6.0238911e-08 0.50587457\n\t\t 0.86257535 -6.4190644e-08 0.50587457 0.86257535 -6.4190644e-08 0.58711487 0.8094731\n\t\t -6.0238911e-08 0.61577171 0.78789651 -5.8633237e-08 0.68993169 0.72386879 -5.3868451e-08\n\t\t 0.68993169 0.72386879 -5.3868451e-08 0.68993169 0.72383827 -5.3866181e-08 0.58711487\n\t\t 0.8094731 -6.0238911e-08 -0.24030271 -0.090090789 -0.96649069 -0.12179933 -0.12085341\n\t\t -0.98516798 -0.081148677 -0.10983621 -0.99060029 -0.081148677 -0.10983621 -0.99060029\n\t\t -0.14041565 -0.04931803 -0.98883021 -0.24030271 -0.090090789 -0.96649069 -0.2892544\n\t\t -0.10013139 -0.95199436 -0.12179933 -0.12085341 -0.98516798 -0.24030271 -0.090090789\n\t\t -0.96649069 -0.24030271 -0.090090789 -0.96649069 -0.28962064 -0.098971687 -0.95199436\n\t\t -0.2892544 -0.10013139 -0.95199436 -0.081148677 -0.10983621 -0.99060029 -0.12179933\n\t\t -0.12085341 -0.98516798 -0.045014739 -0.20352803 -0.97802669 -0.045014739 -0.20352803\n\t\t -0.97802669 -0.045655627 -0.20566432 -0.97753835 -0.081148677 -0.10983621 -0.99060029\n\t\t -0.045655627 -0.20566432 -0.97753835 -0.045014739 -0.20352803 -0.97802669 -0.045625106\n\t\t -0.21112713 -0.97637868 -0.045625106 -0.21112713 -0.97637868 -0.046174437 -0.21488091\n\t\t -0.97552413 -0.045655627 -0.20566432 -0.97753835 -0.046235476 -0.21915351 -0.97457808\n\t\t -0.046174437 -0.21488091 -0.97552413 -0.045625106 -0.21112713 -0.97637868 -0.045625106\n\t\t -0.21112713 -0.97637868 -0.04696792 -0.21585751 -0.97527999 -0.046235476 -0.21915351\n\t\t -0.97457808 -0.055055384 -0.019013124 -0.99829096 -0.14041565 -0.04931803 -0.98883021\n\t\t -0.081148677 -0.10983621 -0.99060029 -0.081148677 -0.10983621 -0.99060029 -0.042786945\n\t\t -0.0074160853 -0.99905396 -0.055055384 -0.019013124 -0.99829096 1.7835355e-09 -0.0057680728\n\t\t -0.99996948 -0.055055384 -0.019013124 -0.99829096 -0.042786945 -0.0074160853 -0.99905396\n\t\t -0.042786945 -0.0074160853 -0.99905396 6.6058331e-10 -0.0021363702 -0.99996948 1.7835355e-09\n\t\t -0.0057680728 -0.99996948 -0.37946716 -0.015839294 -0.92504656 -0.37647635 -0.01504581\n\t\t -0.92629778 -0.40287486 -0.025300037 -0.91488385 -0.40287486 -0.025300037 -0.91488385\n\t\t -0.38789025 -0.025635736 -0.9213233 -0.37946716 -0.015839294 -0.92504656 -0.47294533\n\t\t -0.0090336902 -0.88103884 -0.40287486 -0.025300037 -0.91488385 -0.37647635 -0.01504581\n\t\t -0.92629778 -0.37647635 -0.01504581 -0.92629778 -0.35193944 -0.008636917 -0.93597215\n\t\t -0.47294533 -0.0090336902 -0.88103884 -0.25946838 -0.0090641491 -0.96569717 -0.35193944\n\t\t -0.008636917 -0.93597215 -0.37647635 -0.01504581 -0.92629778 -0.37647635 -0.01504581\n\t\t -0.92629778 -0.23490097 -0.008728439 -0.97195351 -0.25946838 -0.0090641491 -0.96569717\n\t\t -0.37946716 -0.015839294 -0.92504656 -0.38789025 -0.025635736 -0.9213233 -0.34824672\n\t\t -0.0053103981 -0.93737602 -0.34824672 -0.0053103981 -0.93737602 -0.29792169 0.015991537\n\t\t -0.95443588 -0.37946716 -0.015839294 -0.92504656 -0.29792169 0.015991537 -0.95443588\n\t\t -0.34824672 -0.0053103981 -0.93737602 -0.24527726 0.0206914 -0.96920681 -0.24527726\n\t\t 0.0206914 -0.96920681 -0.21948914 0.030915109 -0.97509688 -0.29792169 0.015991537\n\t\t -0.95443588 -0.15506457 0.040101197 -0.98706013 -0.21948914 0.030915109 -0.97509688\n\t\t -0.24527726 0.0206914 -0.96920681 -0.24527726 0.0206914 -0.96920681 -0.15094456 0.033966977\n\t\t -0.9879452 -0.15506457 0.040101197 -0.98706013 -0.073885329 0.041962855 -0.99636829\n\t\t -0.15506457 0.040101197 -0.98706013 -0.15094456 0.033966977 -0.9879452 -0.15094456\n\t\t 0.033966977 -0.9879452 -0.070772439 0.040955745 -0.99664295 -0.073885329 0.041962855\n\t\t -0.99636829 -1.3182871e-08 0.042634282 -0.99908447 -0.073885329 0.041962855 -0.99636829\n\t\t -0.070772439 0.040955745 -0.99664295 -0.070772439 0.040955745 -0.99664295 -1.3097941e-08\n\t\t 0.042359617 -0.99908447 -1.3182871e-08 0.042634282 -0.99908447 -0.7923826 0.026917035\n\t\t -0.6093936 -0.55674928 0.45466453 -0.69518119 -0.5803706 0.43769622 -0.68666655 -0.5803706\n\t\t 0.43769622 -0.68666655 -0.76857823 0.22327313 -0.59947509 -0.7923826 0.026917035\n\t\t -0.6093936 -0.5803706 0.43769622 -0.68666655 -0.55674928 0.45466453 -0.69518119 -0.34488985\n\t\t 0.58980054 -0.73015541 -0.34488985 0.58980054 -0.73015541 -0.36695474 0.58323908\n\t\t -0.72463155 -0.5803706 0.43769622 -0.68666655 -0.15536992 0.64619881 -0.74715424\n\t\t -0.36695474 0.58323908 -0.72463155 -0.34488985 0.58980054 -0.73015541 -0.34488985\n\t\t 0.58980054 -0.73015541 -0.16379304 0.65068501 -0.74144727 -0.15536992 0.64619881\n\t\t -0.74715424 -0.83977783 0.0048826612 -0.54283273 -0.7923826 0.026917035 -0.6093936\n\t\t -0.76857823 0.22327313 -0.59947509 -0.76857823 0.22327313 -0.59947509 -0.87408066\n\t\t 0.035919975 -0.48438978 -0.83977783 0.0048826612 -0.54283273 -0.15536992 0.64619881\n\t\t -0.74715424 -0.16379304 0.65068501 -0.74144727 -2.0533983e-07 0.66408271 -0.74764252\n\t\t -2.0533983e-07 0.66408271 -0.74764252 -2.0348084e-07 0.65807056 -0.75295275 -0.15536992\n\t\t 0.64619881 -0.74715424 0.17441325 0.084475361 0.98101747 0.16055787 0.071932256 0.98437452\n\t\t 0.19217503 0.084780551 0.97766048 0.19217503 0.084780551 0.97766048 0.24491102 0.10238975\n\t\t 0.96411026 0.17441325 0.084475361 0.98101747 0.24491102 0.10238975 0.96411026 0.19217503\n\t\t 0.084780551 0.97766048 0.28330329 0.10702857 0.95303202 0.28330329 0.10702857 0.95303202\n\t\t 0.2837916 0.10354947 0.95324564 0.24491102 0.10238975 0.96411026 -0.00091586326 0.99600208\n\t\t -0.089114122 -0.0010074187 0.99600208 -0.089022569 -0.00091586326 0.99600208 -0.089114122\n\t\t -0.00091586326 0.99600208 -0.089114122 -0.00082430773 0.99600208 -0.089205675 -0.00091586326\n\t\t 0.99600208 -0.089114122 -0.99310279 0.068178035 -0.095278792 -0.99380475 0.062074333\n\t\t -0.092104867 -0.9955138 -0.011902533 -0.093783379 -0.9955138 -0.011902533 -0.093783379\n\t\t -0.99511701 -0.030824009 -0.093508713 -0.99310279 0.068178035 -0.095278792 -0.99511701\n\t\t -0.030824009 -0.093508713 -0.9955138 -0.011902533 -0.093783379 -0.99386579 0.067598186\n\t\t -0.087313466 -0.99386579 0.067598186 -0.087313466 -0.98977637 0.11831994 -0.07959228\n\t\t -0.99511701 -0.030824009 -0.093508713;\n\tsetAttr \".n[18924:19089]\" -type \"float3\"  -0.76509923 0.6357919 -0.10168771 -0.75737804\n\t\t 0.64436758 -0.10541098 -0.7591176 0.64244491 -0.10455646 -0.7591176 0.64244491 -0.10455646\n\t\t -0.76662511 0.63408285 -0.10092475 -0.76509923 0.6357919 -0.10168771 0.69652373 0.71068478\n\t\t -0.098757945 0.68559808 0.72188509 -0.093783431 0.68871099 0.71871114 -0.095187284\n\t\t 0.68871099 0.71871114 -0.095187284 0.69920933 0.70784652 -0.099978693 0.69652373\n\t\t 0.71068478 -0.098757945 0.94790477 0.30359843 -0.096194364 0.94653147 0.30832881\n\t\t -0.094637923 0.97750777 0.18787225 -0.095675543 0.97750777 0.18787225 -0.095675543\n\t\t 0.97241122 0.21292794 -0.095065169 0.94790477 0.30359843 -0.096194364 0.97241122\n\t\t 0.21292794 -0.095065169 0.97750777 0.18787225 -0.095675543 0.99102753 0.096103087\n\t\t -0.092532128 0.99102753 0.096103087 -0.092532128 0.99084437 0.10098605 -0.089419238\n\t\t 0.97241122 0.21292794 -0.095065169 -0.56517202 -0.81966633 0.093142554 -0.66277021\n\t\t -0.7488023 -3.0462785e-05 -0.52037084 -0.82165003 0.23252058 -0.52037084 -0.82165003\n\t\t 0.23252058 -0.46006626 -0.85576963 0.23654902 -0.56517202 -0.81966633 0.093142554\n\t\t -0.46006626 -0.85576963 0.23654902 -0.52037084 -0.82165003 0.23252058 -0.54158121\n\t\t -0.7931152 0.27854249 0.0026554095 -0.96752828 0.25269333 0.0021365983 -0.9790948\n\t\t 0.2033449 0.0048527177 -0.88821065 0.45939517 0.0021365983 -0.9790948 0.2033449 0.0026554095\n\t\t -0.96752828 0.25269333 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08\n\t\t 3.0919878e-07 -0.99996948 7.4415176e-08 0.0021365983 -0.9790948 0.2033449 3.0919878e-07\n\t\t -0.99996948 7.4415176e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08\n\t\t 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 3.0919878e-07 -0.99996948\n\t\t 7.4415176e-08 -0.98977637 0.11831994 -0.07959228 -0.99386579 0.067598186 -0.087313466\n\t\t -0.9876706 0.14487107 -0.059175402 -0.9876706 0.14487107 -0.059175402 -0.99615467\n\t\t 0.080202334 -0.035035256 -0.98977637 0.11831994 -0.07959228 -0.00021393716 0.99481183\n\t\t -0.10171826 -0.00021393716 0.99481183 -0.10171826 -0.13889003 0.9851374 -0.10080271\n\t\t -0.13889003 0.9851374 -0.10080271 -0.14084321 0.98492378 -0.10019234 -0.00021393716\n\t\t 0.99481183 -0.10171826 -0.14084321 0.98492378 -0.10019234 -0.13889003 0.9851374 -0.10080271\n\t\t -0.20694631 0.97350985 -0.096926861 -0.20694631 0.97350985 -0.096926861 -0.20801446\n\t\t 0.97344881 -0.095278859 -0.14084321 0.98492378 -0.10019234 -0.94378489 0.06176915\n\t\t -0.32462537 -0.86724448 -0.0069890441 -0.49781793 -0.91036713 -0.049745485 -0.41074863\n\t\t -0.91036713 -0.049745485 -0.41074863 -0.97503585 -0.069918215 -0.21060823 -0.94378489\n\t\t 0.06176915 -0.32462537 -0.86724448 -0.0069890441 -0.49781793 -0.94378489 0.06176915\n\t\t -0.32462537 -0.83977783 0.0048826612 -0.54283273 -0.83977783 0.0048826612 -0.54283273\n\t\t -0.87408066 0.035919975 -0.48438978 -0.86724448 -0.0069890441 -0.49781793 -0.99172956\n\t\t 0.10748588 -0.069887392 -0.94378489 0.06176915 -0.32462537 -0.97503585 -0.069918215\n\t\t -0.21060823 -0.97503585 -0.069918215 -0.21060823 -0.99743646 -0.071444139 5.316668e-09\n\t\t -0.99172956 0.10748588 -0.069887392 -0.99172956 0.10748588 -0.069887392 -0.99743646\n\t\t -0.071444139 5.316668e-09 -0.99743646 -0.071444139 5.316668e-09 -0.99743646 -0.071444139\n\t\t 5.316668e-09 -0.99258405 0.12137181 -0.001251268 -0.99172956 0.10748588 -0.069887392\n\t\t -0.94378489 0.06176915 -0.32462537 -0.99172956 0.10748588 -0.069887392 -0.9753716\n\t\t 0.2191226 -0.024567416 -0.9753716 0.2191226 -0.024567416 -0.99172956 0.10748588 -0.069887392\n\t\t -0.99258405 0.12137181 -0.001251268 -0.9753716 0.2191226 -0.024567416 -0.98330641\n\t\t 0.18192054 -1.3538085e-08 -0.94378489 0.06176915 -0.32462537 -0.99258405 0.12137181\n\t\t -0.001251268 -0.94750828 0.31968108 -2.3789873e-08 -0.9753716 0.2191226 -0.024567416\n\t\t -0.27878675 0.62315732 -0.73067421 -0.24884813 0.61073631 -0.75167096 -0.4311657\n\t\t 0.59797949 -0.67561883 -0.4311657 0.59797949 -0.67561883 -0.52925217 0.59211987 -0.60765409\n\t\t -0.27878675 0.62315732 -0.73067421 -0.52925217 0.59211987 -0.60765409 -0.4311657\n\t\t 0.59797949 -0.67561883 -0.69792795 0.50794977 -0.50483721 -0.69792795 0.50794977\n\t\t -0.50483721 -0.82125318 0.42161292 -0.38435015 -0.52925217 0.59211987 -0.60765409\n\t\t -0.24884813 0.61073631 -0.75167096 -0.27878675 0.62315732 -0.73067421 -0.1045566\n\t\t 0.60902727 -0.78621793 -0.1045566 0.60902727 -0.78621793 -0.099032752 0.60142815\n\t\t -0.79271835 -0.24884813 0.61073631 -0.75167096 -0.82125318 0.42161292 -0.38435015\n\t\t -0.69792795 0.50794977 -0.50483721 -0.87197495 0.31543902 -0.37434006 -0.87197495\n\t\t 0.31543902 -0.37434006 -0.93820006 0.12353862 -0.32319102 -0.82125318 0.42161292\n\t\t -0.38435015 -0.93820006 0.12353862 -0.32319102 -0.87197495 0.31543902 -0.37434006\n\t\t -0.9401837 0.0046995347 -0.34058657 -0.099032752 0.60142815 -0.79271835 -0.1045566\n\t\t 0.60902727 -0.78621793 -1.8597599e-07 0.60145873 -0.79888308 -1.8597599e-07 0.60145873\n\t\t -0.79888308 -1.8522107e-07 0.59901726 -0.80071419 -0.099032752 0.60142815 -0.79271835\n\t\t -0.12591937 0.00091544254 -0.99203467 -0.12692648 -0.00057996472 -0.99188209 -0.17676321\n\t\t -0.0043642744 -0.98422194 -0.17676321 -0.0043642744 -0.98422194 -0.17700735 -0.0025026458\n\t\t -0.98419142 -0.12591937 0.00091544254 -0.99203467 -0.17700735 -0.0025026458 -0.98419142\n\t\t -0.17676321 -0.0043642744 -0.98422194 -0.40409556 -0.10361053 -0.90881068 -0.40409556\n\t\t -0.10361053 -0.90881068 -0.35123751 -0.086855859 -0.93221837 -0.17700735 -0.0025026458\n\t\t -0.98419142 -0.12692648 -0.00057996472 -0.99188209 -0.12591937 0.00091544254 -0.99203467\n\t\t -0.063722648 0.00045768367 -0.99795526 -0.063722648 0.00045768367 -0.99795526 -0.065828428\n\t\t -3.0613119e-05 -0.99780267 -0.12692648 -0.00057996472 -0.99188209 -0.35123751 -0.086855859\n\t\t -0.93221837 -0.40409556 -0.10361053 -0.90881068 -0.51936394 -0.19635631 -0.83165991\n\t\t -0.51936394 -0.19635631 -0.83165991 -0.49449134 -0.20767866 -0.84398937 -0.35123751\n\t\t -0.086855859 -0.93221837 -0.065828428 -3.0613119e-05 -0.99780267 -0.063722648 0.00045768367\n\t\t -0.99795526 7.5515726e-11 -0.00024422249 -1 7.5515726e-11 -0.00024422249 -1 1.3213516e-10\n\t\t -0.00042733355 -0.99996948 -0.065828428 -3.0613119e-05 -0.99780267 -0.67995226 -0.47532603\n\t\t -0.55827504;\n\tsetAttr \".n[19090:19255]\" -type \"float3\"  -0.62453061 -0.50419652 -0.59639263 -0.74645209\n\t\t -0.43406501 -0.5043183 -0.74645209 -0.43406501 -0.5043183 -0.79729593 -0.3962526\n\t\t -0.45527509 -0.67995226 -0.47532603 -0.55827504 0.21851283 -0.97579879 7.2616459e-08\n\t\t 0.23310067 -0.97244173 7.2366639e-08 0.42124724 -0.90691841 6.7490561e-08 0.42124724\n\t\t -0.90691841 6.7490561e-08 0.40180698 -0.91570777 -0.00036615398 0.21851283 -0.97579879\n\t\t 7.2616459e-08 0.40180698 -0.91570777 -0.00036615398 0.42124724 -0.90691841 6.7490561e-08\n\t\t 0.62309664 -0.78209764 -0.00061031198 0.62309664 -0.78209764 -0.00061031198 0.5671562\n\t\t -0.82354182 -0.0072938623 0.40180698 -0.91570777 -0.00036615398 0.23310067 -0.97244173\n\t\t 7.2366639e-08 0.21851283 -0.97579879 7.2616459e-08 0.071718805 -0.99740595 7.422441e-08\n\t\t 0.071718805 -0.99740595 7.422441e-08 0.076449171 -0.99707019 7.419942e-08 0.23310067\n\t\t -0.97244173 7.2366639e-08 0.5671562 -0.82354182 -0.0072938623 0.62309664 -0.78209764\n\t\t -0.00061031198 0.81612617 -0.57780671 -0.0033264745 0.81612617 -0.57780671 -0.0033264745\n\t\t 0.70793808 -0.70589286 -0.02227846 0.5671562 -0.82354182 -0.0072938623 0.70793808\n\t\t -0.70589286 -0.02227846 0.81612617 -0.57780671 -0.0033264745 0.97360152 -0.22821711\n\t\t -0.00042724214 0.97360152 -0.22821711 -0.00042724214 0.95590085 -0.29364881 2.1852617e-08\n\t\t 0.70793808 -0.70589286 -0.02227846 0.076449171 -0.99707019 7.419942e-08 0.071718805\n\t\t -0.99740595 7.422441e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08\n\t\t 3.0920822e-07 -1 7.441745e-08 0.076449171 -0.99707019 7.419942e-08 0.99996948 -0.0013119867\n\t\t 9.765784e-11 0.99996948 -0.0013119867 9.765784e-11 0.95590085 -0.29364881 2.1852617e-08\n\t\t 0.95590085 -0.29364881 2.1852617e-08 0.97360152 -0.22821711 -0.00042724214 0.99996948\n\t\t -0.0013119867 9.765784e-11 -0.76003289 -0.16284706 -0.62910855 -0.7923826 0.026917035\n\t\t -0.6093936 -0.83977783 0.0048826612 -0.54283273 -0.9876706 0.14487107 -0.059175402\n\t\t -0.99688709 -0.070742212 -0.03448591 -0.99615467 0.080202334 -0.035035256 -0.99688709\n\t\t -0.070742212 -0.03448591 -0.99243134 -0.12265419 9.1275894e-09 -0.99615467 0.080202334\n\t\t -0.035035256 -0.50587505 0.86257499 -6.4190644e-08 -0.50587505 0.86257499 -6.4190644e-08\n\t\t -0.58711535 0.80947274 -6.0238911e-08 -0.58711535 0.80947274 -6.0238911e-08 -0.61577219\n\t\t 0.78789616 -5.8633237e-08 -0.50587505 0.86257499 -6.4190644e-08 -0.61577219 0.78789616\n\t\t -5.8633237e-08 -0.58711535 0.80947274 -6.0238911e-08 -0.68993217 0.72383779 -5.3866181e-08\n\t\t -0.68993217 0.72383779 -5.3866181e-08 -0.68993217 0.72383779 -5.3866181e-08 -0.61577219\n\t\t 0.78789616 -5.8633237e-08 0.9335916 0.35825709 -2.6660556e-08 0.9335916 0.35831812\n\t\t -2.6665099e-08 0.99963379 -0.026215091 1.9508835e-09 0.99963379 -0.026215091 1.9508835e-09\n\t\t 0.99963379 -0.026245609 1.9531545e-09 0.9335916 0.35825709 -2.6660556e-08 0.72539419\n\t\t 0.68831468 -5.1222607e-08 0.9335916 0.35831812 -2.6665099e-08 0.9335916 0.35825709\n\t\t -2.6660556e-08 0.9335916 0.35825709 -2.6660556e-08 0.72542471 0.68828416 -5.1220333e-08\n\t\t 0.72539419 0.68831468 -5.1222607e-08 0.72539419 0.68831468 -5.1222607e-08 0.72542471\n\t\t 0.68828416 -5.1220333e-08 0.40681148 0.91348016 -6.7978853e-08 0.40681148 0.91348016\n\t\t -6.7978853e-08 0.40675041 0.91351068 -6.7981127e-08 0.72539419 0.68831468 -5.1222607e-08\n\t\t 0.026215091 0.99963379 -7.4390201e-08 0.40675041 0.91351068 -6.7981127e-08 0.40681148\n\t\t 0.91348016 -6.7978853e-08 0.40681148 0.91348016 -6.7978853e-08 0.026245609 0.99963379\n\t\t -7.4390201e-08 0.026215091 0.99963379 -7.4390201e-08 0.026215091 0.99963379 -7.4390201e-08\n\t\t 0.026245609 0.99963379 -7.4390201e-08 -0.35825709 0.9335916 -6.9475519e-08 -0.35825709\n\t\t 0.9335916 -6.9475519e-08 -0.3582876 0.9335916 -6.9475519e-08 0.026215091 0.99963379\n\t\t -7.4390201e-08 -0.68828416 0.72542471 -5.3984273e-08 -0.3582876 0.9335916 -6.9475519e-08\n\t\t -0.35825709 0.9335916 -6.9475519e-08 -0.35825709 0.9335916 -6.9475519e-08 -0.68828416\n\t\t 0.72542471 -5.3984273e-08 -0.68828416 0.72542471 -5.3984273e-08 -0.68828416 0.72542471\n\t\t -5.3984273e-08 -0.68828416 0.72542471 -5.3984273e-08 -0.91348016 0.40681148 -3.0273892e-08\n\t\t -0.91348016 0.40681148 -3.0273892e-08 -0.91348016 0.40681148 -3.0273892e-08 -0.68828416\n\t\t 0.72542471 -5.3984273e-08 -0.99963379 0.026276127 -1.9554256e-09 -0.91348016 0.40681148\n\t\t -3.0273892e-08 -0.91348016 0.40681148 -3.0273892e-08 -0.91348016 0.40681148 -3.0273892e-08\n\t\t -0.99963379 0.026245609 -1.9531545e-09 -0.99963379 0.026276127 -1.9554256e-09 -0.99963379\n\t\t 0.026276127 -1.9554256e-09 -0.99963379 0.026245609 -1.9531545e-09 -0.9335916 -0.35825709\n\t\t 2.6660556e-08 -0.9335916 -0.35825709 2.6660556e-08 -0.93362212 -0.35822657 2.6658286e-08\n\t\t -0.99963379 0.026276127 -1.9554256e-09 -0.72545522 -0.68822312 5.1215792e-08 -0.93362212\n\t\t -0.35822657 2.6658286e-08 -0.9335916 -0.35825709 2.6660556e-08 -0.9335916 -0.35825709\n\t\t 2.6660556e-08 -0.72542471 -0.68828416 5.1220333e-08 -0.72545522 -0.68822312 5.1215792e-08\n\t\t -0.72545522 -0.68822312 5.1215792e-08 -0.72542471 -0.68828416 5.1220333e-08 -0.40681148\n\t\t -0.91348016 6.7978853e-08 -0.40681148 -0.91348016 6.7978853e-08 -0.40684199 -0.91348016\n\t\t 6.7978853e-08 -0.72545522 -0.68822312 5.1215792e-08 -0.40681148 -0.91348016 6.7978853e-08\n\t\t -0.026276127 -0.99963379 7.4390201e-08 -0.026276127 -0.99963379 7.4390201e-08 -0.026276127\n\t\t -0.99963379 7.4390201e-08 -0.40684199 -0.91348016 6.7978853e-08 -0.40681148 -0.91348016\n\t\t 6.7978853e-08 -0.026276127 -0.99963379 7.4390201e-08 -0.026276127 -0.99963379 7.4390201e-08\n\t\t 0.35825709 -0.9335916 6.9475519e-08 0.35825709 -0.9335916 6.9475519e-08 0.35825709\n\t\t -0.9335916 6.9475519e-08 -0.026276127 -0.99963379 7.4390201e-08 0.68828416 -0.72542471\n\t\t 5.3984273e-08 0.35825709 -0.9335916 6.9475519e-08 0.35825709 -0.9335916 6.9475519e-08\n\t\t 0.35825709 -0.9335916 6.9475519e-08 0.68828416 -0.72542471 5.3984273e-08 0.68828416\n\t\t -0.72542471 5.3984273e-08 0.68828416 -0.72542471 5.3984273e-08 0.68828416 -0.72542471\n\t\t 5.3984273e-08 0.91348016 -0.40681148 3.0273892e-08 0.91348016 -0.40681148 3.0273892e-08\n\t\t 0.91351068 -0.40678096 3.0271622e-08 0.68828416 -0.72542471 5.3984273e-08 0.91351068\n\t\t -0.40678096 3.0271622e-08 0.91348016 -0.40681148 3.0273892e-08 0.99963379 -0.026245609\n\t\t 1.9531545e-09 0.99963379 -0.026245609 1.9531545e-09 0.99963379 -0.026215091 1.9508835e-09\n\t\t 0.91351068 -0.40678096 3.0271622e-08 0.00015259262 -0.0002135551 0.99996948 0.00024414813\n\t\t -0.00018303657 0.99996948;\n\tsetAttr \".n[19256:19421]\" -type \"float3\"  0.00024414813 -0.00021355507 0.99996948\n\t\t 0.00024414813 -0.00021355507 0.99996948 0.00012207413 -0.00027459214 0.99996948 0.00015259262\n\t\t -0.0002135551 0.99996948 6.1037077e-05 -0.00018303662 0.99996948 0.00015259262 -0.0002135551\n\t\t 0.99996948 0.00012207413 -0.00027459214 0.99996948 0.00012207413 -0.00027459214 0.99996948\n\t\t 3.0518575e-05 -0.00021355513 0.99996948 6.1037077e-05 -0.00018303662 0.99996948 3.0518539e-05\n\t\t -9.1481103e-05 1 6.1037077e-05 -0.00018303662 0.99996948 3.0518575e-05 -0.00021355513\n\t\t 0.99996948 3.0518575e-05 -0.00021355513 0.99996948 2.828659e-11 -9.148111e-05 1 3.0518539e-05\n\t\t -9.1481103e-05 1 6.1037019e-05 7.4436322e-08 1 3.0518539e-05 -9.1481103e-05 1 2.828659e-11\n\t\t -9.148111e-05 1 2.828659e-11 -9.148111e-05 1 6.1037019e-05 7.4436322e-08 1 6.1037019e-05\n\t\t 7.4436322e-08 1 0.00015259255 7.4462356e-08 0.99996948 6.1037019e-05 7.4436322e-08\n\t\t 1 6.1037019e-05 7.4436322e-08 1 6.1037019e-05 7.4436322e-08 1 0.00018311106 7.4474066e-08\n\t\t 1 0.00015259255 7.4462356e-08 0.99996948 0.00024414808 7.4492945e-08 1 0.00015259255\n\t\t 7.4462356e-08 0.99996948 0.00018311106 7.4474066e-08 1 0.00018311106 7.4474066e-08\n\t\t 1 0.00027466659 -3.0444011e-05 0.99996948 0.00024414808 7.4492945e-08 1 0.00030518512\n\t\t -9.1481015e-05 0.99996948 0.00024414808 7.4492945e-08 1 0.00027466659 -3.0444011e-05\n\t\t 0.99996948 0.00027466659 -3.0444011e-05 0.99996948 0.00030518515 -0.00015251804 0.99996948\n\t\t 0.00030518512 -9.1481015e-05 0.99996948 0.00030518515 -0.00015251804 1 0.00024414813\n\t\t -0.00021355507 0.99996948 0.00024414813 -0.00018303657 0.99996948 0.00024414813 -0.00018303657\n\t\t 0.99996948 0.00030518512 -9.1481015e-05 0.99996948 0.00030518515 -0.00015251804 1\n\t\t 0.00027466659 -3.0444011e-05 0.99996948 0.00030518515 -0.00015251804 1 0.00030518512\n\t\t -9.1481015e-05 0.99996948 0.00030518512 -9.1481015e-05 0.99996948 0.00024414808 7.4492945e-08\n\t\t 1 0.00027466659 -3.0444011e-05 0.99996948 0.00018311106 7.4471792e-08 0.99996948\n\t\t 0.00027466659 -3.0444011e-05 0.99996948 0.00024414808 7.4492945e-08 1 0.00024414808\n\t\t 7.4492945e-08 1 0.00018311106 7.4474066e-08 1 0.00018311106 7.4471792e-08 0.99996948\n\t\t 6.1037019e-05 7.4436322e-08 1 0.00018311106 7.4471792e-08 0.99996948 0.00018311106\n\t\t 7.4474066e-08 1 0.00018311106 7.4474066e-08 1 6.1037019e-05 7.4436322e-08 1 6.1037019e-05\n\t\t 7.4436322e-08 1 2.828659e-11 -9.148111e-05 1 6.1037019e-05 7.4436322e-08 1 6.1037019e-05\n\t\t 7.4436322e-08 1 6.1037019e-05 7.4436322e-08 1 2.828659e-11 -9.148111e-05 0.99996948\n\t\t 2.828659e-11 -9.148111e-05 1 3.0518575e-05 -0.00021355513 0.99996948 2.828659e-11\n\t\t -9.148111e-05 1 2.828659e-11 -9.148111e-05 0.99996948 2.828659e-11 -9.148111e-05\n\t\t 0.99996948 6.1037077e-05 -0.00018303662 1 3.0518575e-05 -0.00021355513 0.99996948\n\t\t 0.00012207411 -0.00024407363 0.99996948 3.0518575e-05 -0.00021355513 0.99996948 6.1037077e-05\n\t\t -0.00018303662 1 6.1037077e-05 -0.00018303662 1 0.00015259262 -0.0002135551 1 0.00012207411\n\t\t -0.00024407363 0.99996948 0.00021362964 -0.0002440736 0.99996948 0.00012207411 -0.00024407363\n\t\t 0.99996948 0.00015259262 -0.0002135551 1 0.00015259262 -0.0002135551 1 0.00024414813\n\t\t -0.00021355507 0.99996948 0.00021362964 -0.0002440736 0.99996948 0.00030518515 -0.00015251804\n\t\t 0.99996948 0.00021362964 -0.0002440736 0.99996948 0.00024414813 -0.00021355507 0.99996948\n\t\t 0.00024414813 -0.00021355507 0.99996948 0.00030518512 -9.1481015e-05 0.99996948 0.00030518515\n\t\t -0.00015251804 0.99996948 0.53218156 0.50465429 0.67976922 0.53215104 0.50468481\n\t\t 0.6797387 0.68578136 0.26300877 0.67857903 0.68578136 0.26300877 0.67857903 0.68581188\n\t\t 0.26300877 0.67857903 0.53218156 0.50465429 0.67976922 0.73317665 -0.019378977 0.67970824\n\t\t 0.68581188 0.26300877 0.67857903 0.68578136 0.26300877 0.67857903 0.68578136 0.26300877\n\t\t 0.67857903 0.73317665 -0.019348457 0.67970824 0.73317665 -0.019378977 0.67970824\n\t\t 0.73317665 -0.019378977 0.67970824 0.73317665 -0.019348457 0.67970824 0.67094958\n\t\t -0.29883698 0.67857903 0.67094958 -0.29883698 0.67857903 0.67094958 -0.29880646 0.67860955\n\t\t 0.73317665 -0.019378977 0.67970824 0.50486785 -0.53205943 0.6797083 0.67094958 -0.29880646\n\t\t 0.67860955 0.67094958 -0.29883698 0.67857903 0.67094958 -0.29883698 0.67857903 0.50486785\n\t\t -0.53205943 0.6797083 0.50486785 -0.53205943 0.6797083 0.50486785 -0.53205943 0.6797083\n\t\t 0.50486785 -0.53205943 0.6797083 0.26325288 -0.68572026 0.67854857 0.26325288 -0.68572026\n\t\t 0.67854857 0.26325288 -0.68572026 0.67854857 0.50486785 -0.53205943 0.6797083 -0.01907384\n\t\t -0.73320711 0.6797083 0.26325288 -0.68572026 0.67854857 0.26325288 -0.68572026 0.67854857\n\t\t 0.26325288 -0.68572026 0.67854857 -0.01910436 -0.73320711 0.6797083 -0.01907384 -0.73320711\n\t\t 0.6797083 -0.01907384 -0.73320711 0.6797083 -0.01910436 -0.73320711 0.6797083 -0.29865393\n\t\t -0.67101055 0.67860961 -0.29865393 -0.67101055 0.67860961 -0.29862341 -0.67101055\n\t\t 0.67860961 -0.01907384 -0.73320711 0.6797083 0.53215104 0.50468481 0.6797387 0.53218156\n\t\t 0.50465429 0.67976922 0.29898962 0.67088854 0.67857897 0.29898962 0.67088854 0.67857897\n\t\t 0.29895911 0.67088854 0.67857897 0.53215104 0.50468481 0.6797387 0.29895911 0.67088854\n\t\t 0.67857897 0.29898962 0.67088854 0.67857897 0.019409545 0.73314619 0.67976922 0.019409545\n\t\t 0.73314619 0.67976922 0.019409545 0.73314619 0.67976922 0.29895911 0.67088854 0.67857897\n\t\t -0.26306975 0.6857509 0.67857897 0.019409545 0.73314619 0.67976922 0.019409545 0.73314619\n\t\t 0.67976922 0.019409545 0.73314619 0.67976922 -0.26303923 0.68578142 0.67857897 -0.26306975\n\t\t 0.6857509 0.67857897 -0.26306975 0.6857509 0.67857897 -0.26303923 0.68578142 0.67857897\n\t\t -0.5047763 0.53209007 0.6797387 -0.5047763 0.53209007 0.6797387 -0.50480682 0.53209007\n\t\t 0.67970818 -0.26306975 0.6857509 0.67857897 -0.67094958 0.29874554 0.67864007 -0.50480682\n\t\t 0.53209007 0.67970818 -0.5047763 0.53209007 0.6797387 -0.5047763 0.53209007 0.6797387\n\t\t -0.67091906 0.29874554 0.67864007 -0.67094958 0.29874554 0.67864007;\n\tsetAttr \".n[19422:19587]\" -type \"float3\"  -0.67094958 0.29874554 0.67864007 -0.67091906\n\t\t 0.29874554 0.67864007 -0.73317665 0.019134929 0.67973876 -0.73317665 0.019134929\n\t\t 0.67973876 -0.73320717 0.019134929 0.67970824 -0.67094958 0.29874554 0.67864007 -0.68565929\n\t\t -0.26328334 0.67860955 -0.73320717 0.019134929 0.67970824 -0.73317665 0.019134929\n\t\t 0.67973876 -0.73317665 0.019134929 0.67973876 -0.68565929 -0.26328334 0.67860955\n\t\t -0.68565929 -0.26328334 0.67860955 -0.68565929 -0.26328334 0.67860955 -0.68565929\n\t\t -0.26328334 0.67860955 -0.5319069 -0.5049594 0.67973882 -0.5319069 -0.5049594 0.67973882\n\t\t -0.53193742 -0.50492889 0.6797083 -0.68565929 -0.26328334 0.67860955 -0.29865393\n\t\t -0.67101055 0.67860961 -0.53193742 -0.50492889 0.6797083 -0.5319069 -0.5049594 0.67973882\n\t\t -0.5319069 -0.5049594 0.67973882 -0.29862341 -0.67101055 0.67860961 -0.29865393 -0.67101055\n\t\t 0.67860961 0.93356109 0.35825709 0.0094301924 0.93353057 0.35831812 0.0094301924\n\t\t 0.99960327 -0.026215091 0.0094607398 0.99960327 -0.026215091 0.0094607398 0.99960327\n\t\t -0.026245609 0.0094607398 0.93356109 0.35825709 0.0094301924 0.72533315 0.68828416\n\t\t 0.0094606867 0.93353057 0.35831812 0.0094301924 0.93356109 0.35825709 0.0094301924\n\t\t 0.93356109 0.35825709 0.0094301924 0.72539419 0.68822312 0.0094606867 0.72533315\n\t\t 0.68828416 0.0094606867 0.72533315 0.68828416 0.0094606867 0.72539419 0.68822312\n\t\t 0.0094606867 0.40678096 0.91344965 0.0094301514 0.40678096 0.91344965 0.0094301514\n\t\t 0.40675041 0.91348016 0.0094301514 0.72533315 0.68828416 0.0094606867 0.026215091\n\t\t 0.99960327 0.0094606634 0.40675041 0.91348016 0.0094301514 0.40678096 0.91344965\n\t\t 0.0094301514 0.40678096 0.91344965 0.0094301514 0.026245609 0.99960327 0.0094606634\n\t\t 0.026215091 0.99960327 0.0094606634 0.026215091 0.99960327 0.0094606634 0.026245609\n\t\t 0.99960327 0.0094606634 -0.35825709 0.93356109 0.0094301496 -0.35825709 0.93356109\n\t\t 0.0094301496 -0.3582876 0.93356109 0.0094301496 0.026215091 0.99960327 0.0094606634\n\t\t -0.68825364 0.72539419 0.0094606839 -0.3582876 0.93356109 0.0094301496 -0.35825709\n\t\t 0.93356109 0.0094301496 -0.35825709 0.93356109 0.0094301496 -0.68825364 0.72539419\n\t\t 0.0094301654 -0.68825364 0.72539419 0.0094606839 -0.68825364 0.72539419 0.0094606839\n\t\t -0.68825364 0.72539419 0.0094301654 -0.91344965 0.40678096 0.0094301887 -0.91344965\n\t\t 0.40678096 0.0094301887 -0.91344965 0.40681148 0.0094301887 -0.68825364 0.72539419\n\t\t 0.0094606839 -0.99960327 0.026276127 0.0094607361 -0.91344965 0.40681148 0.0094301887\n\t\t -0.91344965 0.40678096 0.0094301887 -0.91344965 0.40678096 0.0094301887 -0.99960327\n\t\t 0.026245609 0.0094607361 -0.99960327 0.026276127 0.0094607361 -0.99960327 0.026276127\n\t\t 0.0094607361 -0.99960327 0.026245609 0.0094607361 -0.93356109 -0.35825709 0.0094302464\n\t\t -0.93356109 -0.35825709 0.0094302464 -0.93356109 -0.35819605 0.0094302464 -0.99960327\n\t\t 0.026276127 0.0094607361 -0.72542471 -0.68819261 0.0094607892 -0.93356109 -0.35819605\n\t\t 0.0094302464 -0.93356109 -0.35825709 0.0094302464 -0.93356109 -0.35825709 0.0094302464\n\t\t -0.72539419 -0.68825364 0.0094607892 -0.72542471 -0.68819261 0.0094607892 -0.72542471\n\t\t -0.68819261 0.0094607892 -0.72539419 -0.68825364 0.0094607892 -0.40681148 -0.91344965\n\t\t 0.0094302874 -0.40681148 -0.91344965 0.0094302874 -0.40684199 -0.91341913 0.0094302874\n\t\t -0.72542471 -0.68819261 0.0094607892 -0.026276127 -0.99960327 0.0094608124 -0.40684199\n\t\t -0.91341913 0.0094302874 -0.40681148 -0.91344965 0.0094302874 -0.40681148 -0.91344965\n\t\t 0.0094302874 -0.026245609 -0.99960327 0.0094608124 -0.026276127 -0.99960327 0.0094608124\n\t\t -0.026276127 -0.99960327 0.0094608124 -0.026245609 -0.99960327 0.0094608124 0.35825709\n\t\t -0.93356109 0.0094302893 0.35825709 -0.93356109 0.0094302893 0.35825709 -0.93356109\n\t\t 0.0094302893 -0.026276127 -0.99960327 0.0094608124 0.68825364 -0.72539419 0.0094607919\n\t\t 0.35825709 -0.93356109 0.0094302893 0.35825709 -0.93356109 0.0094302893 0.35825709\n\t\t -0.93356109 0.0094302893 0.68825364 -0.72539419 0.0094607919 0.68825364 -0.72539419\n\t\t 0.0094607919 0.68825364 -0.72539419 0.0094607919 0.68825364 -0.72539419 0.0094607919\n\t\t 0.91344965 -0.40678096 0.0094302502 0.91344965 -0.40678096 0.0094302502 0.91344965\n\t\t -0.40678096 0.0094302502 0.68825364 -0.72539419 0.0094607919 0.91344965 -0.40678096\n\t\t 0.0094302502 0.91344965 -0.40678096 0.0094302502 0.99960327 -0.026245609 0.0094607398\n\t\t 0.99960327 -0.026245609 0.0094607398 0.99960327 -0.026215091 0.0094607398 0.91344965\n\t\t -0.40678096 0.0094302502 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08\n\t\t 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132244e-14 7.4415176e-08\n\t\t 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1;\n\tsetAttr \".n[19588:19753]\" -type \"float3\"  -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14\n\t\t 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948\n\t\t -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -0.44029042 -0.41782901 0.79467154 -0.44035146 -0.41779849 0.79467154\n\t\t -0.56724745 -0.21784124 0.79418319 -0.24747442 -0.55619985 0.79329818 -0.44035146\n\t\t -0.41779849 0.79467154 -0.44029042 -0.41782901 0.79467154 -0.56724745 -0.21784124\n\t\t 0.79418319 -0.56721693 -0.21787176 0.79418319 -0.44029042 -0.41782901 0.79467154\n\t\t -0.60582292 0.015869496 0.7954039 -0.6057924 0.015900014 0.79543442 -0.55449086 0.24689463\n\t\t 0.79467148 -0.56724745 -0.21784124 0.79418319 -0.6057924 0.015900014 0.79543442 -0.60582292\n\t\t 0.015869496 0.7954039 -0.60582292 0.015869496 0.7954039 -0.56721693 -0.21787176 0.79418319\n\t\t -0.56724745 -0.21784124 0.79418319 -0.55449086 0.24689463 0.79467148 -0.55449086\n\t\t 0.24686411 0.79470199 -0.60582292 0.015869496 0.7954039 -0.44029042 -0.41782901 0.79467154\n\t\t -0.2474439 -0.55623037 0.79329818 -0.24747442 -0.55619985 0.79329818 -0.55449086\n\t\t 0.24689463 0.79467148 -0.41691351 0.43940544 0.79564798 -0.41691351 0.43943596 0.79564798\n\t\t -0.41691351 0.43943596 0.79564798 -0.55449086 0.24686411 0.79470199 -0.55449086 0.24689463\n\t\t 0.79467148 -0.41691351 0.43943596 0.79564798 -0.41691351 0.43940544 0.79564798 -0.21741404\n\t\t 0.5668813 0.79454935 -0.21741404 0.5668813 0.79454935 -0.21741404 0.5668813 0.79457986\n\t\t -0.41691351 0.43943596 0.79564798 0.015991511 0.60615867 0.7951597 -0.21741404 0.5668813\n\t\t 0.79457986 -0.21741404 0.5668813 0.79454935 -0.21741404 0.5668813 0.79454935 0.015899954\n\t\t 0.60615867 0.7951597 0.015991511 0.60615867 0.7951597 0.015991511 0.60615867 0.7951597\n\t\t 0.015899954 0.60615867 0.7951597 0.2474439 0.55543697 0.79384738 0.2474439 0.55543697\n\t\t 0.79384738 0.24753545 0.55552852 0.79375583 0.015991511 0.60615867 0.7951597 0.24753545\n\t\t 0.55552852 0.79375583 0.2474439 0.55543697 0.79384738 0.4407787 0.41807327 0.79427469\n\t\t 0.4407787 0.41807327 0.79427469 0.44090077 0.41810378 0.79418314 0.24753545 0.55552852\n\t\t 0.79375583 0.44090077 0.41810378 0.79418314 0.4407787 0.41807327 0.79427469 0.56886494\n\t\t 0.21814655 0.79293191 0.56886494 0.21814655 0.79293191 0.56886494 0.21811603 0.79293191\n\t\t 0.44090077 0.41810378 0.79418314 0.60826439 -0.016021969 0.79354227 0.56886494 0.21811603\n\t\t 0.79293191 0.56886494 0.21814655 0.79293191 0.56886494 0.21814655 0.79293191 0.6082949\n\t\t -0.015960934 0.79351175 0.60826439 -0.016021969 0.79354227 0.60826439 -0.016021969\n\t\t 0.79354227 0.6082949 -0.015960934 0.79351175 0.55717647 -0.24817628 0.79241312 0.55717647\n\t\t -0.24817628 0.79241312 0.55720699 -0.24817628 0.7923826 0.60826439 -0.016021969 0.79354227\n\t\t 0.4190498 -0.44163316 0.79329818 0.55720699 -0.24817628 0.7923826 0.55717647 -0.24817628\n\t\t 0.79241312 0.55717647 -0.24817628 0.79241312 0.4190498 -0.44166368 0.79326767 0.4190498\n\t\t -0.44163316 0.79329818 0.4190498 -0.44163316 0.79329818 0.4190498 -0.44166368 0.79326767\n\t\t 0.21854323 -0.56923109 0.79256576 0.21854323 -0.56923109 0.79256576 0.21857375 -0.56923109\n\t\t 0.79256576 0.4190498 -0.44163316 0.79329818 -0.015899954 -0.60792863 0.79381698 0.21857375\n\t\t -0.56923109 0.79256576 0.21854323 -0.56923109 0.79256576 0.21854323 -0.56923109 0.79256576\n\t\t -0.015960993 -0.60792863 0.79378647 -0.015899954 -0.60792863 0.79381698 -0.015899954\n\t\t -0.60792863 0.79381698 -0.015960993 -0.60792863 0.79378647 -0.24747442 -0.55619985\n\t\t 0.79329818 -0.24747442 -0.55619985 0.79329818 -0.2474439 -0.55623037 0.79329818 -0.015899954\n\t\t -0.60792863 0.79381698 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08\n\t\t -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08\n\t\t 0.3826713 0.92385644 -6.8751028e-08 0.70708311 0.70708358 -5.2619338e-08 0.3826713\n\t\t 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644\n\t\t -6.8751028e-08 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08\n\t\t 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08 0.9238562\n\t\t 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189\n\t\t -2.8477444e-08 0.70708311 0.70708358 -5.2619338e-08 1 3.0920822e-07 1.2246572e-16\n\t\t 0.9238562 0.38267189 -2.8477444e-08;\n\tsetAttr \".n[19754:19919]\" -type \"float3\"  0.9238562 0.38267189 -2.8477444e-08 0.9238562\n\t\t 0.38267189 -2.8477444e-08 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16\n\t\t 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 0.92385644 -0.3826713\n\t\t 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08\n\t\t 1 3.0920822e-07 1.2246572e-16 0.70708358 -0.70708311 5.2619338e-08 0.92385644 -0.3826713\n\t\t 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08\n\t\t 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358\n\t\t -0.70708311 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.38267189 -0.9238562\n\t\t 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08\n\t\t 0.70708358 -0.70708311 5.2619338e-08 3.0920822e-07 -1 7.441745e-08 0.38267189 -0.9238562\n\t\t 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08\n\t\t 3.0919878e-07 -0.99996948 7.4415176e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07\n\t\t -1 7.441745e-08 3.0919878e-07 -0.99996948 7.4415176e-08 -0.3826713 -0.92385644 6.8751028e-08\n\t\t -0.3826713 -0.92385644 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 3.0920822e-07\n\t\t -1 7.441745e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.70708311 -0.7071141 5.2621612e-08\n\t\t -0.70708311 -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.3826713\n\t\t -0.92385644 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.70708311 -0.70708358\n\t\t 5.2619338e-08 -0.70708311 -0.7071141 5.2621612e-08 -0.9238562 -0.38267189 2.8477444e-08\n\t\t -0.9238562 -0.38267189 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08 -0.70708311\n\t\t -0.70708358 5.2619338e-08 -1 -3.0920822e-07 -1.2246572e-16 -0.9238562 -0.38267189\n\t\t 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08\n\t\t -0.99996948 -3.0919878e-07 -1.2246199e-16 -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -0.99996948 -3.0919878e-07 -1.2246199e-16 -0.92385644 0.3826713 -2.8477444e-08\n\t\t -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -0.70708358 0.70711362 -5.2621612e-08 -0.92385644 0.3826713 -2.8477444e-08\n\t\t -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.70708358\n\t\t 0.70708311 -5.2619338e-08 -0.70708358 0.70711362 -5.2621612e-08 -0.70708358 0.70711362\n\t\t -5.2621612e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.38267189 0.9238562 -6.8751028e-08\n\t\t -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.70708358\n\t\t 0.70711362 -5.2621612e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562\n\t\t -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07\n\t\t 1 -7.441745e-08 -0.38267189 0.9238562 -6.8751028e-08 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132244e-14\n\t\t 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14\n\t\t 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08\n\t\t 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948\n\t\t -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132244e-14 7.4415176e-08 0.99996948\n\t\t -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14\n\t\t 7.441745e-08 1;\n\tsetAttr \".n[19920:20085]\" -type \"float3\"  -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132244e-14 7.4415176e-08\n\t\t 0.99996948 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1\n\t\t 0.3826713 0.92385644 3.0449759e-05 0.3826713 0.92385644 6.0968268e-05 -3.0920822e-07\n\t\t 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -3.0919878e-07 0.99996948 -7.4415176e-08\n\t\t 0.3826713 0.92385644 3.0449759e-05 0.70708311 0.7071141 -5.2621612e-08 0.3826713\n\t\t 0.92385644 6.0968268e-05 0.3826713 0.92385644 3.0449759e-05 0.3826713 0.92385644\n\t\t 3.0449759e-05 0.70708311 0.7071141 -5.2621612e-08 0.70708311 0.7071141 -5.2621612e-08\n\t\t 0.70708311 0.7071141 -5.2621612e-08 0.70708311 0.7071141 -5.2621612e-08 0.9238562\n\t\t 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189\n\t\t -2.8477444e-08 0.70708311 0.7071141 -5.2621612e-08 1 3.0920822e-07 1.2246572e-16\n\t\t 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 0.9238562\n\t\t 0.38267189 -2.8477444e-08 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16\n\t\t 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 0.92385644 -0.3826713\n\t\t 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08\n\t\t 1 3.0920822e-07 1.2246572e-16 0.70708358 -0.70708311 5.2619338e-08 0.92385644 -0.3826713\n\t\t 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08\n\t\t 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358\n\t\t -0.70708311 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.38267189 -0.9238562\n\t\t 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08\n\t\t 0.70708358 -0.70708311 5.2619338e-08 3.0920822e-07 -1 7.441745e-08 0.38267189 -0.9238562\n\t\t 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08\n\t\t 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08\n\t\t 3.0920822e-07 -1 7.441745e-08 -0.38264078 -0.92385644 6.8751028e-08 -0.38264078 -0.92385644\n\t\t 6.8751028e-08 -0.38264078 -0.92388695 6.8753302e-08 3.0920822e-07 -1 7.441745e-08\n\t\t -0.38264078 -0.92385644 6.8751028e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311\n\t\t -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.38264078 -0.92388695\n\t\t 6.8753302e-08 -0.38264078 -0.92385644 6.8751028e-08 -0.70708311 -0.70708358 5.2619338e-08\n\t\t -0.70708311 -0.70708358 5.2619338e-08 -0.9238562 -0.38264138 2.8475172e-08 -0.9238562\n\t\t -0.38264138 2.8475172e-08 -0.9238562 -0.38264138 2.8475172e-08 -0.70708311 -0.70708358\n\t\t 5.2619338e-08 -1 -3.0920822e-07 -1.2246572e-16 -0.9238562 -0.38264138 2.8475172e-08\n\t\t -0.9238562 -0.38264138 2.8475172e-08 -0.9238562 -0.38264138 2.8475172e-08 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16\n\t\t -1 -3.0920822e-07 -1.2246572e-16 -0.92385644 0.3826713 -2.8477444e-08 -0.92385644\n\t\t 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16\n\t\t -0.70708358 0.70708311 -5.2619338e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.92385644\n\t\t 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.70708358 0.70711362\n\t\t -5.2621612e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08\n\t\t -0.70708358 0.70711362 -5.2621612e-08 -0.38267189 0.9238562 6.0968268e-05 -0.38267189\n\t\t 0.9238562 6.0968268e-05 -0.38267189 0.9238562 6.0968268e-05 -0.70708358 0.70708311\n\t\t -5.2619338e-08 -0.38267189 0.9238562 6.0968268e-05 -0.38267189 0.9238562 6.0968268e-05\n\t\t -3.0919878e-07 0.99996948 -7.4415176e-08 -3.0919878e-07 0.99996948 -7.4415176e-08\n\t\t -3.0920822e-07 1 -7.441745e-08 -0.38267189 0.9238562 6.0968268e-05 0.3826713 0.92385644\n\t\t -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08\n\t\t -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 0.3826713 0.92385644\n\t\t -6.8751028e-08 0.70708311 0.70708358 -5.2619338e-08 0.3826713 0.92385644 -6.8751028e-08\n\t\t 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 0.70708311\n\t\t 0.70708358 -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.70708358\n\t\t -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08 0.9238562 0.38267189 -2.8477444e-08\n\t\t 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 0.70708311\n\t\t 0.70708358 -5.2619338e-08 1 3.0920822e-07 1.2246572e-16 0.9238562 0.38267189 -2.8477444e-08\n\t\t 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 1 3.0920822e-07\n\t\t 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07\n\t\t 1.2246572e-16 0.92385644 -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08\n\t\t 0.92385644 -0.3826713 2.8477444e-08 1 3.0920822e-07 1.2246572e-16 0.70708358 -0.70708311\n\t\t 5.2619338e-08 0.92385644 -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08\n\t\t 0.92385644 -0.3826713 2.8477444e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358\n\t\t -0.70708311 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311\n\t\t 5.2619338e-08 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08\n\t\t 0.38267189 -0.9238562 6.8751028e-08 0.70708358 -0.70708311 5.2619338e-08 3.0920822e-07\n\t\t -1 7.441745e-08 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08\n\t\t 0.38267189 -0.9238562 6.8751028e-08 3.0919878e-07 -0.99996948 7.4415176e-08 3.0920822e-07\n\t\t -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 3.0919878e-07 -0.99996948 7.4415176e-08\n\t\t -0.3826713 -0.92385644 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.3826713\n\t\t -0.92385644 6.8751028e-08 3.0920822e-07 -1 7.441745e-08 -0.3826713 -0.92385644 6.8751028e-08\n\t\t -0.70711362 -0.70708358 5.2619338e-08 -0.70708311 -0.7071141 5.2621612e-08 -0.70708311\n\t\t -0.7071141 5.2621612e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.3826713 -0.92385644\n\t\t 6.8751028e-08 -0.70708311 -0.7071141 5.2621612e-08 -0.70711362 -0.70708358 5.2619338e-08\n\t\t -0.9238562 -0.38267189 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08;\n\tsetAttr \".n[20086:20251]\" -type \"float3\"  -0.9238562 -0.38267189 2.8477444e-08\n\t\t -0.70708311 -0.7071141 5.2621612e-08 -1 -3.0920822e-07 -1.2246572e-16 -0.9238562\n\t\t -0.38267189 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08 -0.9238562 -0.38267189\n\t\t 2.8477444e-08 -0.99996948 -3.0919878e-07 -1.2246199e-16 -1 -3.0920822e-07 -1.2246572e-16\n\t\t -1 -3.0920822e-07 -1.2246572e-16 -0.99996948 -3.0919878e-07 -1.2246199e-16 -0.92385644\n\t\t 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713\n\t\t -2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16 -0.70708358 0.70708311 -5.2619338e-08\n\t\t -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.92385644\n\t\t 0.3826713 -2.8477444e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311\n\t\t -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08\n\t\t -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.38267189\n\t\t 0.9238562 -6.8751028e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.38267189 0.9238562\n\t\t -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08\n\t\t -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -0.38267189 0.9238562\n\t\t -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08\n\t\t -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08\n\t\t 0.3826713 0.92385644 -6.8751028e-08 0.70708311 0.70708358 -5.2619338e-08 0.3826713\n\t\t 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644\n\t\t -6.8751028e-08 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08\n\t\t 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08 0.9238562\n\t\t 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189\n\t\t -2.8477444e-08 0.70708311 0.70708358 -5.2619338e-08 1 3.0920822e-07 1.2246572e-16\n\t\t 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 0.9238562\n\t\t 0.38267189 -2.8477444e-08 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16\n\t\t 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 0.92385644 -0.3826713\n\t\t 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08\n\t\t 1 3.0920822e-07 1.2246572e-16 0.70708358 -0.70708311 5.2619338e-08 0.92385644 -0.3826713\n\t\t 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08\n\t\t 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358\n\t\t -0.70708311 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.38267189 -0.9238562\n\t\t 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08\n\t\t 0.70708358 -0.70708311 5.2619338e-08 3.0920822e-07 -1 7.441745e-08 0.38267189 -0.9238562\n\t\t 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08\n\t\t 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08\n\t\t 3.0920822e-07 -1 7.441745e-08 -0.38264078 -0.92385644 6.8751028e-08 -0.38264078 -0.92385644\n\t\t 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 3.0920822e-07 -1 7.441745e-08\n\t\t -0.38264078 -0.92385644 6.8751028e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311\n\t\t -0.7071141 5.2621612e-08 -0.70708311 -0.7071141 5.2621612e-08 -0.3826713 -0.92385644\n\t\t 6.8751028e-08 -0.38264078 -0.92385644 6.8751028e-08 -0.70708311 -0.7071141 5.2621612e-08\n\t\t -0.70708311 -0.70708358 5.2619338e-08 -0.9238562 -0.38267189 2.8477444e-08 -0.9238562\n\t\t -0.38267189 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08 -0.70708311 -0.7071141\n\t\t 5.2621612e-08 -0.99996948 -3.0919878e-07 -1.2246199e-16 -0.9238562 -0.38267189 2.8477444e-08\n\t\t -0.9238562 -0.38267189 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -0.99996948 -3.0919878e-07 -1.2246199e-16 -0.99996948 -3.0919878e-07\n\t\t -1.2246199e-16 -1 -3.0920822e-07 -1.2246572e-16 -0.92385644 0.3826713 -2.8477444e-08\n\t\t -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.99996948\n\t\t -3.0919878e-07 -1.2246199e-16 -0.70708358 0.70708311 -5.2619338e-08 -0.92385644 0.3826713\n\t\t -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08\n\t\t -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358\n\t\t 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.38267189 0.9238562\n\t\t -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08\n\t\t -0.70708358 0.70708311 -5.2619338e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.38267189\n\t\t 0.9238562 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08\n\t\t -3.0920822e-07 1 -7.441745e-08 -0.38267189 0.9238562 -6.8751028e-08 -3.0919878e-07\n\t\t 0.99996948 -7.4415176e-08 -3.0920822e-07 1 -7.441745e-08 0.3826713 0.92385644 -6.8751028e-08\n\t\t 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 -3.0919878e-07\n\t\t 0.99996948 -7.4415176e-08 0.70708311 0.7071141 -5.2621612e-08 0.3826713 0.92385644\n\t\t -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08\n\t\t 0.70708311 0.7071141 -5.2621612e-08 0.70708311 0.7071141 -5.2621612e-08 0.70708311\n\t\t 0.7071141 -5.2621612e-08 0.70708311 0.7071141 -5.2621612e-08 0.9238562 0.38267189\n\t\t -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08\n\t\t 0.70708311 0.7071141 -5.2621612e-08 1 3.0920822e-07 1.2246572e-16 0.9238562 0.38267189\n\t\t -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08\n\t\t 0.99996948 3.0919878e-07 1.2246199e-16 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07\n\t\t 1.2246572e-16 0.99996948 3.0919878e-07 1.2246199e-16 0.92388695 -0.38264078 2.8475172e-08\n\t\t 0.92388695 -0.38264078 2.8475172e-08 0.92388695 -0.38264078 2.8475172e-08 1 3.0920822e-07\n\t\t 1.2246572e-16 0.70708358 -0.70708311 5.2619338e-08 0.92388695 -0.38264078 2.8475172e-08\n\t\t 0.92388695 -0.38264078 2.8475172e-08 0.92388695 -0.38264078 2.8475172e-08 0.70708358\n\t\t -0.70708311 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311\n\t\t 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08;\n\tsetAttr \".n[20252:20417]\" -type \"float3\"  0.38264138 -0.9238562 6.8751028e-08 0.38264138\n\t\t -0.9238562 6.8751028e-08 0.38264138 -0.9238562 6.8751028e-08 0.70708358 -0.70708311\n\t\t 5.2619338e-08 3.0920822e-07 -1 -0.00024407366 0.38264138 -0.9238562 6.8751028e-08\n\t\t 0.38264138 -0.9238562 6.8751028e-08 0.38264138 -0.9238562 6.8751028e-08 3.0919878e-07\n\t\t -0.99996948 -0.00024407366 3.0920822e-07 -1 -0.00024407366 3.0920822e-07 -1 -0.00024407366\n\t\t 3.0919878e-07 -0.99996948 -0.00024407366 -0.38264078 -0.92385644 6.8751028e-08 -0.38264078\n\t\t -0.92385644 6.8751028e-08 -0.38264078 -0.92385644 6.8751028e-08 3.0920822e-07 -1\n\t\t -0.00024407366 -0.38264078 -0.92385644 6.8751028e-08 -0.70708311 -0.70708358 5.2619338e-08\n\t\t -0.70708311 -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.38264078\n\t\t -0.92385644 6.8751028e-08 -0.38264078 -0.92385644 6.8751028e-08 -0.70708311 -0.70708358\n\t\t 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.92388672 -0.38264138 -0.00021360109\n\t\t -0.92388672 -0.38264138 -0.00021360109 -0.9238562 -0.38267189 -0.0002441196 -0.70708311\n\t\t -0.70708358 5.2619338e-08 -0.99996948 -3.0827709e-05 2.2709872e-12 -0.9238562 -0.38267189\n\t\t -0.0002441196 -0.92388672 -0.38264138 -0.00021360109 -0.92388672 -0.38264138 -0.00021360109\n\t\t -1 3.0209301e-05 -2.2712322e-12 -0.99996948 -3.0827709e-05 2.2709872e-12 -0.99996948\n\t\t -3.0827709e-05 2.2709872e-12 -1 3.0209301e-05 -2.2712322e-12 -0.92385644 0.3826713\n\t\t -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08\n\t\t -0.99996948 -3.0827709e-05 2.2709872e-12 -0.70708358 0.70708311 -5.2619338e-08 -0.92385644\n\t\t 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713\n\t\t -2.8477444e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08\n\t\t -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.38267189\n\t\t 0.9238562 -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562\n\t\t -6.8751028e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.38267189 0.9238562 -6.8751028e-08\n\t\t -0.38267189 0.9238562 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07\n\t\t 1 -7.441745e-08 -3.0919878e-07 0.99996948 -7.4415176e-08 -0.38267189 0.9238562 -6.8751028e-08\n\t\t -1.5539207e-07 0.50254834 0.8645283 0.19275476 0.46543792 0.86382633 0.19275476 0.46543792\n\t\t 0.86379582 0.19275476 0.46543792 0.86379582 -1.5539207e-07 0.50254834 0.8645283 -1.5539207e-07\n\t\t 0.50254834 0.8645283 0.35535741 0.35532719 0.86452836 0.19275476 0.46543792 0.86379582\n\t\t 0.19275476 0.46543792 0.86382633 0.19275476 0.46543792 0.86382633 0.35535741 0.35532719\n\t\t 0.86452836 0.35535741 0.35532719 0.86452836 0.46540722 0.19278564 0.86382639 0.35535741\n\t\t 0.35532719 0.86452836 0.35535741 0.35532719 0.86452836 0.35535741 0.35532719 0.86452836\n\t\t 0.46540722 0.19281615 0.86379588 0.46540722 0.19278564 0.86382639 0.50257879 2.1973523e-07\n\t\t 0.86449784 0.46540722 0.19278564 0.86382639 0.46540722 0.19281615 0.86379588 0.46540722\n\t\t 0.19281615 0.86379588 0.50257879 2.1973523e-07 0.86449784 0.50257879 2.1973523e-07\n\t\t 0.86449784 0.46543786 -0.19278522 0.86379588 0.50257879 2.1973523e-07 0.86449784\n\t\t 0.50257879 2.1973523e-07 0.86449784 0.50257879 2.1973523e-07 0.86449784 0.46543786\n\t\t -0.19278522 0.86379588 0.46543786 -0.19278522 0.86379588 0.35538816 -0.35538787 0.86449784\n\t\t 0.46543786 -0.19278522 0.86379588 0.46543786 -0.19278522 0.86379588 0.46543786 -0.19278522\n\t\t 0.86379588 0.35538816 -0.35538787 0.86449784 0.35538816 -0.35538787 0.86449784 0.19275506\n\t\t -0.46537665 0.86382645 0.35538816 -0.35538787 0.86449784 0.35538816 -0.35538787 0.86449784\n\t\t 0.35538816 -0.35538787 0.86449784 0.19272454 -0.46537665 0.86385697 0.19275506 -0.46537665\n\t\t 0.86382645 1.5538261e-07 -0.5025177 0.86455894 0.19275506 -0.46537665 0.86382645\n\t\t 0.19272454 -0.46537665 0.86385697 0.19272454 -0.46537665 0.86385697 1.5538261e-07\n\t\t -0.5025177 0.86455894 1.5538261e-07 -0.5025177 0.86455894 -0.19275476 -0.46537676\n\t\t 0.86385697 1.5538261e-07 -0.5025177 0.86455894 1.5538261e-07 -0.5025177 0.86455894\n\t\t 1.5538261e-07 -0.5025177 0.86455894 -0.19275476 -0.46537676 0.86382645 -0.19275476\n\t\t -0.46537676 0.86385697 -0.19275476 -0.46537676 0.86382645 -0.35538793 -0.35541862\n\t\t 0.86449784 -0.35538793 -0.3553881 0.86449784 -0.35538793 -0.3553881 0.86449784 -0.19275476\n\t\t -0.46537676 0.86385697 -0.19275476 -0.46537676 0.86382645 -0.46543774 -0.19278552\n\t\t 0.86379588 -0.35538793 -0.3553881 0.86449784 -0.35538793 -0.35541862 0.86449784 -0.35538793\n\t\t -0.35541862 0.86449784 -0.46543774 -0.19278552 0.86379588 -0.46543774 -0.19278552\n\t\t 0.86379588 -0.50257879 -9.1067768e-08 0.86449784 -0.46543774 -0.19278552 0.86379588\n\t\t -0.46543774 -0.19278552 0.86379588 -0.46543774 -0.19278552 0.86379588 -0.50257879\n\t\t -9.1067768e-08 0.86449784 -0.50257879 -9.1067768e-08 0.86449784 -0.46543786 0.19278534\n\t\t 0.86379588 -0.50257879 -9.1067768e-08 0.86449784 -0.50257879 -9.1067768e-08 0.86449784\n\t\t -0.50257879 -9.1067768e-08 0.86449784 -0.46543786 0.19278534 0.86379588 -0.46543786\n\t\t 0.19278534 0.86379588 -0.35535765 0.35535747 0.86452836 -0.46543786 0.19278534 0.86379588\n\t\t -0.46543786 0.19278534 0.86379588 -0.46543786 0.19278534 0.86379588 -0.35535765 0.35535747\n\t\t 0.86452836 -0.35535765 0.35535747 0.86452836 -0.19278558 0.46540728 0.86379582 -0.35535765\n\t\t 0.35535747 0.86452836 -0.35535765 0.35535747 0.86452836 -0.35535765 0.35535747 0.86452836\n\t\t -0.19278558 0.4654378 0.86379582 -0.19278558 0.46540728 0.86379582 -1.5539207e-07\n\t\t 0.50254834 0.8645283 -0.19278558 0.46540728 0.86379582 -0.19278558 0.4654378 0.86379582\n\t\t -0.19278558 0.4654378 0.86379582 -1.5539207e-07 0.50254834 0.8645283 -1.5539207e-07\n\t\t 0.50254834 0.8645283 0.35532689 0.35532707 -0.86452836 0.19275476 0.46537676 -0.86385697\n\t\t 0.19275476 0.46537676 -0.86385697 0.19275476 0.46537676 -0.86385697 0.35532689 0.35532707\n\t\t -0.86452836 0.35532689 0.35532707 -0.86452836 -1.5539204e-07 0.50254822 -0.86452842\n\t\t 0.19275476 0.46537676 -0.86385697 0.19275476 0.46537676 -0.86385697 0.19275476 0.46537676\n\t\t -0.86385697 -1.5539204e-07 0.50254822 -0.86452842 -1.5539204e-07 0.50254822 -0.86452842;\n\tsetAttr \".n[20418:20583]\" -type \"float3\"  -0.19275506 0.46537665 -0.86385697 -1.5539204e-07\n\t\t 0.50254822 -0.86452842 -1.5539204e-07 0.50254822 -0.86452842 -1.5539204e-07 0.50254822\n\t\t -0.86452842 -0.19275506 0.46537665 -0.86385697 -0.19275506 0.46537665 -0.86385697\n\t\t -0.35535765 0.35535735 -0.86452836 -0.19275506 0.46537665 -0.86385697 -0.19275506\n\t\t 0.46537665 -0.86385697 -0.19275506 0.46537665 -0.86385697 -0.35535765 0.35532683\n\t\t -0.86452836 -0.35535765 0.35535735 -0.86452836 -0.46537682 0.1927547 -0.86385691\n\t\t -0.35535765 0.35535735 -0.86452836 -0.35535765 0.35532683 -0.86452836 -0.35535765\n\t\t 0.35532683 -0.86452836 -0.46537682 0.1927547 -0.86385691 -0.46537682 0.1927547 -0.86385691\n\t\t -0.50251776 -2.1972089e-07 -0.86455888 -0.46537682 0.1927547 -0.86385691 -0.46537682\n\t\t 0.1927547 -0.86385691 -0.46537682 0.1927547 -0.86385691 -0.50251776 -2.1972089e-07\n\t\t -0.86455888 -0.50251776 -2.1972089e-07 -0.86455888 -0.46534616 -0.19275512 -0.86385691\n\t\t -0.50251776 -2.1972089e-07 -0.86455888 -0.50251776 -2.1972089e-07 -0.86455888 -0.50251776\n\t\t -2.1972089e-07 -0.86455888 -0.4653767 -0.1927246 -0.86385691 -0.46534616 -0.19275512\n\t\t -0.86385691 -0.35532689 -0.35535771 -0.86452836 -0.46534616 -0.19275512 -0.86385691\n\t\t -0.4653767 -0.1927246 -0.86385691 -0.4653767 -0.1927246 -0.86385691 -0.35535741 -0.35535771\n\t\t -0.86452836 -0.35532689 -0.35535771 -0.86452836 -0.19275476 -0.46537688 -0.86385685\n\t\t -0.35532689 -0.35535771 -0.86452836 -0.35535741 -0.35535771 -0.86452836 -0.35535741\n\t\t -0.35535771 -0.86452836 -0.19275476 -0.46537688 -0.86385685 -0.19275476 -0.46537688\n\t\t -0.86385685 -0.19275476 -0.46537688 -0.86385685 1.5538264e-07 -0.50251782 -0.86455882\n\t\t 1.5538264e-07 -0.50251782 -0.86455882 1.5538264e-07 -0.50251782 -0.86455882 -0.19275476\n\t\t -0.46537688 -0.86385685 -0.19275476 -0.46537688 -0.86385685 0.19275506 -0.46537676\n\t\t -0.86385685 1.5538264e-07 -0.50251782 -0.86455882 1.5538264e-07 -0.50251782 -0.86455882\n\t\t 1.5538264e-07 -0.50251782 -0.86455882 0.19275506 -0.46537676 -0.86385685 0.19275506\n\t\t -0.46537676 -0.86385685 0.35535765 -0.35535747 -0.86452836 0.19275506 -0.46537676\n\t\t -0.86385685 0.19275506 -0.46537676 -0.86385685 0.19275506 -0.46537676 -0.86385685\n\t\t 0.35535765 -0.35535747 -0.86452836 0.35535765 -0.35535747 -0.86452836 0.46537682\n\t\t -0.19275482 -0.86385691 0.35535765 -0.35535747 -0.86452836 0.35535765 -0.35535747\n\t\t -0.86452836 0.35535765 -0.35535747 -0.86452836 0.46537682 -0.19275482 -0.86385691\n\t\t 0.46537682 -0.19275482 -0.86385691 0.50251776 9.1044356e-08 -0.86455888 0.46537682\n\t\t -0.19275482 -0.86385691 0.46537682 -0.19275482 -0.86385691 0.46537682 -0.19275482\n\t\t -0.86385691 0.50251776 9.1044356e-08 -0.86455888 0.50251776 9.1044356e-08 -0.86455888\n\t\t 0.4653767 0.192755 -0.86385691 0.50251776 9.1044356e-08 -0.86455888 0.50251776 9.1044356e-08\n\t\t -0.86455888 0.50251776 9.1044356e-08 -0.86455888 0.4653767 0.192755 -0.86385691 0.4653767\n\t\t 0.192755 -0.86385691 0.35532689 0.35532707 -0.86452836 0.4653767 0.192755 -0.86385691\n\t\t 0.4653767 0.192755 -0.86385691 0.4653767 0.192755 -0.86385691 0.35532689 0.35532707\n\t\t -0.86452836 0.35532689 0.35532707 -0.86452836 -1.5336322e-07 0.49598688 0.8683126\n\t\t 0.19025224 0.45936471 0.86761063 0.19025224 0.45936471 0.86761063 0.19025224 0.45936471\n\t\t 0.86761063 -1.5336322e-07 0.49598688 0.8683126 -1.5336322e-07 0.49598688 0.8683126\n\t\t 0.35068807 0.35068837 0.86834317 0.19025224 0.45936471 0.86761063 0.19025224 0.45936471\n\t\t 0.86761063 0.19025224 0.45936471 0.86761063 0.35068807 0.35068837 0.86834317 0.35068807\n\t\t 0.35068837 0.86834317 0.4593035 0.19022208 0.86764121 0.35068807 0.35068837 0.86834317\n\t\t 0.35068807 0.35068837 0.86834317 0.35068807 0.35068837 0.86834317 0.4593035 0.1902526\n\t\t 0.86764121 0.4593035 0.19022208 0.86764121 0.49598682 2.1798081e-07 0.86831266 0.4593035\n\t\t 0.19022208 0.86764121 0.4593035 0.1902526 0.86764121 0.4593035 0.1902526 0.86764121\n\t\t 0.49598682 2.1798081e-07 0.86831266 0.49598682 2.1798081e-07 0.86831266 0.45930362\n\t\t -0.19022167 0.86764121 0.49598682 2.1798081e-07 0.86831266 0.49598682 2.1798081e-07\n\t\t 0.86831266 0.49598682 2.1798081e-07 0.86831266 0.45930362 -0.19022167 0.86764121\n\t\t 0.45930362 -0.19022167 0.86764121 0.35068831 -0.35068801 0.86834317 0.45930362 -0.19022167\n\t\t 0.86764121 0.45930362 -0.19022167 0.86764121 0.45930362 -0.19022167 0.86764121 0.35065779\n\t\t -0.35068801 0.86834317 0.35068831 -0.35068801 0.86834317 0.19025254 -0.45930344 0.86764127\n\t\t 0.35068831 -0.35068801 0.86834317 0.35065779 -0.35068801 0.86834317 0.35065779 -0.35068801\n\t\t 0.86834317 0.19025254 -0.45930344 0.86764127 0.19025254 -0.45930344 0.86764127 1.5334432e-07\n\t\t -0.49592572 0.86834323 0.19025254 -0.45930344 0.86764127 0.19025254 -0.45930344 0.86764127\n\t\t 0.19025254 -0.45930344 0.86764127 1.5334432e-07 -0.49592572 0.86834323 1.5334432e-07\n\t\t -0.49592572 0.86834323 -0.19022173 -0.45930356 0.86764127 1.5334432e-07 -0.49592572\n\t\t 0.86834323 1.5334432e-07 -0.49592572 0.86834323 1.5334432e-07 -0.49592572 0.86834323\n\t\t -0.19022173 -0.45930356 0.86764127 -0.19022173 -0.45930356 0.86764127 -0.19022173\n\t\t -0.45930356 0.86764127 -0.35065755 -0.35068825 0.86834317 -0.35068807 -0.35065773\n\t\t 0.86834317 -0.35068807 -0.35065773 0.86834317 -0.19022173 -0.45930356 0.86764127\n\t\t -0.19022173 -0.45930356 0.86764127 -0.4593035 -0.19022197 0.86764121 -0.35068807\n\t\t -0.35065773 0.86834317 -0.35065755 -0.35068825 0.86834317 -0.35065755 -0.35068825\n\t\t 0.86834317 -0.4593035 -0.19025248 0.86764121 -0.4593035 -0.19022197 0.86764121 -0.49598682\n\t\t -8.8745587e-08 0.86831266 -0.4593035 -0.19022197 0.86764121 -0.4593035 -0.19025248\n\t\t 0.86764121 -0.4593035 -0.19025248 0.86764121 -0.49598682 -8.8745587e-08 0.86831266\n\t\t -0.49598682 -8.8745587e-08 0.86831266 -0.45930362 0.19022179 0.86764121 -0.49598682\n\t\t -8.8745587e-08 0.86831266 -0.49598682 -8.8745587e-08 0.86831266 -0.49598682 -8.8745587e-08\n\t\t 0.86831266 -0.45930362 0.19022179 0.86764121 -0.45930362 0.19022179 0.86764121 -0.35068831\n\t\t 0.35071865 0.86831266 -0.45930362 0.19022179 0.86764121 -0.45930362 0.19022179 0.86764121\n\t\t -0.45930362 0.19022179 0.86764121;\n\tsetAttr \".n[20584:20749]\" -type \"float3\"  -0.35071883 0.35071865 0.86831266 -0.35068831\n\t\t 0.35071865 0.86831266 -0.19025254 0.45936459 0.86761063 -0.35068831 0.35071865 0.86831266\n\t\t -0.35071883 0.35071865 0.86831266 -0.35071883 0.35071865 0.86831266 -0.19025254 0.45936459\n\t\t 0.86761063 -0.19025254 0.45936459 0.86761063 -1.5336322e-07 0.49598688 0.8683126\n\t\t -0.19025254 0.45936459 0.86761063 -0.19025254 0.45936459 0.86761063 -0.19025254 0.45936459\n\t\t 0.86761063 -1.5336322e-07 0.49598688 0.8683126 -1.5336322e-07 0.49598688 0.8683126\n\t\t 0.35065755 0.35068825 -0.86834317 0.19028276 0.45936459 -0.86761075 0.19028276 0.45933408\n\t\t -0.86761075 0.19028276 0.45933408 -0.86761075 0.35068807 0.35068825 -0.86834317 0.35065755\n\t\t 0.35068825 -0.86834317 -1.5336319e-07 0.49598676 -0.86831272 0.19028276 0.45933408\n\t\t -0.86761075 0.19028276 0.45936459 -0.86761075 0.19028276 0.45936459 -0.86761075 -1.5336319e-07\n\t\t 0.49598676 -0.86831272 -1.5336319e-07 0.49598676 -0.86831272 -0.19025254 0.45936447\n\t\t -0.86761075 -1.5336319e-07 0.49598676 -0.86831272 -1.5336319e-07 0.49598676 -0.86831272\n\t\t -1.5336319e-07 0.49598676 -0.86831272 -0.19025254 0.45936447 -0.86761075 -0.19025254\n\t\t 0.45936447 -0.86761075 -0.35071883 0.35071853 -0.86831266 -0.19025254 0.45936447\n\t\t -0.86761075 -0.19025254 0.45936447 -0.86761075 -0.19025254 0.45936447 -0.86761075\n\t\t -0.35071883 0.35071853 -0.86831266 -0.35071883 0.35071853 -0.86831266 -0.45930362\n\t\t 0.19022167 -0.86764121 -0.35071883 0.35071853 -0.86831266 -0.35071883 0.35071853\n\t\t -0.86831266 -0.35071883 0.35071853 -0.86831266 -0.45930362 0.19022167 -0.86764121\n\t\t -0.45930362 0.19022167 -0.86764121 -0.49598682 -2.1798081e-07 -0.86831266 -0.45930362\n\t\t 0.19022167 -0.86764121 -0.45930362 0.19022167 -0.86764121 -0.45930362 0.19022167\n\t\t -0.86764121 -0.49598682 -2.1798081e-07 -0.86831266 -0.49598682 -2.1798081e-07 -0.86831266\n\t\t -0.45936453 -0.1902526 -0.86761069 -0.49598682 -2.1798081e-07 -0.86831266 -0.49598682\n\t\t -2.1798081e-07 -0.86831266 -0.49598682 -2.1798081e-07 -0.86831266 -0.45936453 -0.1902526\n\t\t -0.86761069 -0.45936453 -0.1902526 -0.86761069 -0.35068807 -0.35068837 -0.86834317\n\t\t -0.45936453 -0.1902526 -0.86761069 -0.45936453 -0.1902526 -0.86761069 -0.45936453\n\t\t -0.1902526 -0.86761069 -0.35065755 -0.35068837 -0.86834317 -0.35068807 -0.35068837\n\t\t -0.86834317 -0.19022173 -0.45930368 -0.86764115 -0.35068807 -0.35068837 -0.86834317\n\t\t -0.35065755 -0.35068837 -0.86834317 -0.35065755 -0.35068837 -0.86834317 -0.19022173\n\t\t -0.45930368 -0.86764115 -0.19022173 -0.45930368 -0.86764115 -0.19022173 -0.45930368\n\t\t -0.86764115 1.5338209e-07 -0.49604791 -0.86828208 1.5338209e-07 -0.49604791 -0.86828208\n\t\t 1.5338209e-07 -0.49604791 -0.86828208 -0.19022173 -0.45930368 -0.86764115 -0.19022173\n\t\t -0.45930368 -0.86764115 0.19025254 -0.45930356 -0.86764115 1.5338209e-07 -0.49604791\n\t\t -0.86828208 1.5338209e-07 -0.49604791 -0.86828208 1.5338209e-07 -0.49604791 -0.86828208\n\t\t 0.19025254 -0.45930356 -0.86764115 0.19025254 -0.45930356 -0.86764115 0.35068831\n\t\t -0.35065761 -0.86834317 0.19025254 -0.45930356 -0.86764115 0.19025254 -0.45930356\n\t\t -0.86764115 0.19025254 -0.45930356 -0.86764115 0.35068831 -0.35068813 -0.86834317\n\t\t 0.35068831 -0.35065761 -0.86834317 0.45930362 -0.19022179 -0.86764121 0.35068831\n\t\t -0.35065761 -0.86834317 0.35068831 -0.35068813 -0.86834317 0.35068831 -0.35068813\n\t\t -0.86834317 0.45930362 -0.19022179 -0.86764121 0.45930362 -0.19022179 -0.86764121\n\t\t 0.49598682 8.8745587e-08 -0.86831266 0.45930362 -0.19022179 -0.86764121 0.45930362\n\t\t -0.19022179 -0.86764121 0.45930362 -0.19022179 -0.86764121 0.49598682 8.8745587e-08\n\t\t -0.86831266 0.49598682 8.8745587e-08 -0.86831266 0.4593035 0.19022197 -0.86764121\n\t\t 0.49598682 8.8745587e-08 -0.86831266 0.49598682 8.8745587e-08 -0.86831266 0.49598682\n\t\t 8.8745587e-08 -0.86831266 0.4593035 0.19022197 -0.86764121 0.4593035 0.19022197 -0.86764121\n\t\t 0.35068807 0.35068825 -0.86834317 0.4593035 0.19022197 -0.86764121 0.4593035 0.19022197\n\t\t -0.86764121 0.4593035 0.19022197 -0.86764121 0.35065755 0.35068825 -0.86834317 0.35068807\n\t\t 0.35068825 -0.86834317 -2.5220189e-07 0.81563777 0.57850879 -2.5221132e-07 0.81566828\n\t\t 0.57850879 0.31244826 0.75435668 0.57728809 0.31244826 0.75435668 0.57728809 0.31244826\n\t\t 0.75435668 0.57728809 -2.5220189e-07 0.81563777 0.57850879 0.5767386 0.57673901 0.57850879\n\t\t 0.31244826 0.75435668 0.57728809 0.31244826 0.75435668 0.57728809 0.31244826 0.75435668\n\t\t 0.57728809 0.5767386 0.57673901 0.57850879 0.5767386 0.57673901 0.57850879 0.5767386\n\t\t 0.57673901 0.57850879 0.5767386 0.57673901 0.57850879 0.75432587 0.31244877 0.57731867\n\t\t 0.75432587 0.31244877 0.57731867 0.75432587 0.31244877 0.57731867 0.5767386 0.57673901\n\t\t 0.57850879 0.81563771 2.9525532e-07 0.57853937 0.75432587 0.31244877 0.57731867 0.75432587\n\t\t 0.31244877 0.57731867 0.75432587 0.31244877 0.57731867 0.81563771 2.9525305e-07 0.57850885\n\t\t 0.81563771 2.9525532e-07 0.57853937 0.81563771 2.9525532e-07 0.57853937 0.81563771\n\t\t 2.9525305e-07 0.57850885 0.75432611 -0.31244823 0.57731867 0.75432611 -0.31244823\n\t\t 0.57731867 0.75432611 -0.31244823 0.57731867 0.81563771 2.9525532e-07 0.57853937\n\t\t 0.57673895 -0.57673854 0.57850891 0.75432611 -0.31244823 0.57731867 0.75432611 -0.31244823\n\t\t 0.57731867 0.75432611 -0.31244823 0.57731867 0.57673895 -0.57673854 0.57850891 0.57673895\n\t\t -0.57673854 0.57850891 0.57673895 -0.57673854 0.57850891 0.57673895 -0.57673854 0.57850891\n\t\t 0.31244874 -0.75435632 0.57731873 0.31244874 -0.75435632 0.57731873 0.31244874 -0.75435632\n\t\t 0.57731873 0.57673895 -0.57673854 0.57850891 2.5220189e-07 -0.81563765 0.57850891\n\t\t 0.31244874 -0.75435632 0.57731873 0.31244874 -0.75435632 0.57731873 0.31244874 -0.75435632\n\t\t 0.57731873 2.5220189e-07 -0.81563765 0.57850891 2.5220189e-07 -0.81563765 0.57850891\n\t\t 2.5220189e-07 -0.81563765 0.57850891 2.5220189e-07 -0.81563765 0.57850891 -0.31244826\n\t\t -0.75435656 0.57731873 -0.31244826 -0.75435656 0.57731873 -0.31241775 -0.75435656\n\t\t 0.57731873 2.5220189e-07 -0.81563765 0.57850891 -0.31244826 -0.75435656 0.57731873\n\t\t -0.5767386 -0.57673889 0.57850891;\n\tsetAttr \".n[20750:20915]\" -type \"float3\"  -0.5767386 -0.57673889 0.57850891 -0.5767386\n\t\t -0.57673889 0.57850891 -0.31241775 -0.75435656 0.57731873 -0.31244826 -0.75435656\n\t\t 0.57731873 -0.5767386 -0.57673889 0.57850891 -0.5767386 -0.57673889 0.57850891 -0.75435638\n\t\t -0.31244871 0.57731867 -0.75435638 -0.31244871 0.57731867 -0.75435638 -0.31244871\n\t\t 0.57731867 -0.5767386 -0.57673889 0.57850891 -0.81563771 -2.0914845e-07 0.57853937\n\t\t -0.75435638 -0.31244871 0.57731867 -0.75435638 -0.31244871 0.57731867 -0.75435638\n\t\t -0.31244871 0.57731867 -0.81563771 -2.0915073e-07 0.57850885 -0.81563771 -2.0914845e-07\n\t\t 0.57853937 -0.81563771 -2.0914845e-07 0.57853937 -0.81563771 -2.0915073e-07 0.57850885\n\t\t -0.75432611 0.31244829 0.57731867 -0.75432611 0.31244829 0.57731867 -0.75432611 0.31244829\n\t\t 0.57731867 -0.81563771 -2.0914845e-07 0.57853937 -0.57673895 0.57673866 0.57850879\n\t\t -0.75432611 0.31244829 0.57731867 -0.75432611 0.31244829 0.57731867 -0.75432611 0.31244829\n\t\t 0.57731867 -0.57673895 0.57673866 0.57850879 -0.57673895 0.57673866 0.57850879 -0.57673895\n\t\t 0.57673866 0.57850879 -0.57673895 0.57673866 0.57850879 -0.31244874 0.75435644 0.57728809\n\t\t -0.31244874 0.75435644 0.57728809 -0.31244874 0.75435644 0.57728809 -0.57673895 0.57673866\n\t\t 0.57850879 -0.31244874 0.75435644 0.57728809 -0.31244874 0.75435644 0.57728809 -2.5221132e-07\n\t\t 0.81566828 0.57850879 -2.5221132e-07 0.81566828 0.57850879 -2.5220189e-07 0.81563777\n\t\t 0.57850879 -0.31244874 0.75435644 0.57728809 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07\n\t\t 1 -7.441745e-08 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08\n\t\t 0.3826713 0.92385644 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08 0.3826713 0.92385644\n\t\t -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 0.70708311 0.70708358 -5.2619338e-08\n\t\t 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08 0.3826713\n\t\t 0.92385644 -6.8751028e-08 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.70708358\n\t\t -5.2619338e-08 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08\n\t\t 0.9238562 0.38267189 -2.8477444e-08 0.70708311 0.70708358 -5.2619338e-08 0.9238562\n\t\t 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 1 3.0920822e-07 1.2246572e-16\n\t\t 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 0.9238562 0.38267189\n\t\t -2.8477444e-08 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 0.92385644\n\t\t -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 0.92385644 -0.3826713\n\t\t 2.8477444e-08 1 3.0920822e-07 1.2246572e-16 0.92385644 -0.3826713 2.8477444e-08 0.92385644\n\t\t -0.3826713 2.8477444e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311\n\t\t 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.92385644 -0.3826713 2.8477444e-08\n\t\t 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.38267189\n\t\t -0.9238562 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562\n\t\t 6.8751028e-08 0.70708358 -0.70708311 5.2619338e-08 0.38267189 -0.9238562 6.8751028e-08\n\t\t 0.38267189 -0.9238562 6.8751028e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1\n\t\t 7.441745e-08 3.0920822e-07 -1 7.441745e-08 0.38267189 -0.9238562 6.8751028e-08 3.0920822e-07\n\t\t -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 -0.3826713 -0.92385644 6.8751028e-08\n\t\t -0.3826713 -0.92385644 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 3.0920822e-07\n\t\t -1 7.441745e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08\n\t\t -0.3826713 -0.92385644 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.3826713\n\t\t -0.92385644 6.8751028e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311 -0.70708358\n\t\t 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.9238562 -0.38267189 2.8477444e-08\n\t\t -0.9238562 -0.38267189 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08 -0.70708311\n\t\t -0.70708358 5.2619338e-08 -0.9238562 -0.38267189 2.8477444e-08 -0.9238562 -0.38267189\n\t\t 2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -1\n\t\t -3.0920822e-07 -1.2246572e-16 -0.9238562 -0.38267189 2.8477444e-08 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -0.92385644 0.3826713 -2.8477444e-08\n\t\t -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.38264078 -2.8475172e-08 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -0.92385644 0.38264078 -2.8475172e-08 -0.92385644 0.3826713 -2.8477444e-08\n\t\t -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.7071141\n\t\t 0.70708311 -5.2619338e-08 -0.92385644 0.38264078 -2.8475172e-08 -0.7071141 0.70708311\n\t\t -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.38267189 0.9238562 -6.8751028e-08\n\t\t -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.7071141\n\t\t 0.70708311 -5.2619338e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562\n\t\t -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07\n\t\t 1 -7.441745e-08 -0.38267189 0.9238562 -6.8751028e-08 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08\n\t\t 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948\n\t\t -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1;\n\tsetAttr \".n[20916:21081]\" -type \"float3\"  -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14\n\t\t 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132244e-14\n\t\t 7.4415176e-08 0.99996948 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08\n\t\t 0.99996948 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1\n\t\t -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -3.0920822e-07\n\t\t 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 0.3826713 0.92385644 -6.8751028e-08\n\t\t 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 -3.0920822e-07\n\t\t 1 -7.441745e-08 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08\n\t\t 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08 0.70708311\n\t\t 0.70708358 -5.2619338e-08 0.3826713 0.92385644 -6.8751028e-08 0.70708311 0.70708358\n\t\t -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08 0.9238562 0.38267189 -2.8477444e-08\n\t\t 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 0.70708311\n\t\t 0.70708358 -5.2619338e-08 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189\n\t\t -2.8477444e-08 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07\n\t\t 1.2246572e-16 0.9238562 0.38267189 -2.8477444e-08 1 3.0920822e-07 1.2246572e-16 1\n\t\t 3.0920822e-07 1.2246572e-16 0.92385644 -0.3826713 2.8477444e-08 0.92385644 -0.3826713\n\t\t 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 1 3.0920822e-07 1.2246572e-16 0.92385644\n\t\t -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 0.70708358 -0.70708311\n\t\t 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08\n\t\t 0.92385644 -0.3826713 2.8477444e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358\n\t\t -0.70708311 5.2619338e-08 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562\n\t\t 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 0.70708358 -0.70708311 5.2619338e-08\n\t\t 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 3.0920822e-07\n\t\t -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 0.38267189\n\t\t -0.9238562 6.8751028e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08\n\t\t -0.3826713 -0.92385644 3.058726e-05 -0.3826713 -0.92385644 3.058726e-05 -0.3826713\n\t\t -0.92385644 3.058726e-05 3.0920822e-07 -1 7.441745e-08 0.76000232 0.31476817 0.56859034\n\t\t 0.7599718 0.31479868 0.56859034 0.58134693 0.58134735 0.56920063 0.58134693 0.58134735\n\t\t 0.56920063 0.58134693 0.58134735 0.56920063 0.76000232 0.31476817 0.56859034 0.58134693\n\t\t 0.58134735 0.56920063 0.58134693 0.58134735 0.56920063 0.31476766 0.76000261 0.56859028\n\t\t 0.31476766 0.76000261 0.56859028 0.31476766 0.76000261 0.56859028 0.58134693 0.58134735\n\t\t 0.56920063 0.31476766 0.76000261 0.56859028 0.31476766 0.76000261 0.56859028 -2.5422131e-07\n\t\t 0.82216871 0.56920063 -2.5422131e-07 0.82216871 0.56920063 -2.5422131e-07 0.82216871\n\t\t 0.56920063 0.31476766 0.76000261 0.56859028 0.31479865 -0.76000226 0.56855989 0.31479865\n\t\t -0.76000226 0.56855989 0.58134729 -0.58134687 0.56920075 0.58134729 -0.58134687 0.56920075\n\t\t 0.58134729 -0.58134687 0.56920075 0.31479865 -0.76000226 0.56855989 0.31479865 -0.76000226\n\t\t 0.56855989 0.31479865 -0.76000226 0.56855989 2.5422131e-07 -0.82216859 0.56920075\n\t\t 2.5422131e-07 -0.82216859 0.56920075 2.5422131e-07 -0.82216859 0.56920075 0.31479865\n\t\t -0.76000226 0.56855989 2.5422131e-07 -0.82216859 0.56920075 2.5422131e-07 -0.82216859\n\t\t 0.56920075 -0.31479818 -0.76000249 0.56855989 -0.31479818 -0.76000249 0.56855989\n\t\t -0.31479818 -0.76000249 0.56855989 2.5422131e-07 -0.82216859 0.56920075 -2.5422131e-07\n\t\t 0.82216871 0.56920063 -2.5422131e-07 0.82216871 0.56920063 -0.31479865 0.75997186\n\t\t 0.56859028 -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08\n\t\t -3.0920822e-07 1 -7.441745e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562\n\t\t -6.8751028e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08;\n\tsetAttr \".n[21082:21247]\" -type \"float3\"  -0.70708358 0.70708311 -5.2619338e-08\n\t\t -0.38267189 0.9238562 -6.8751028e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358\n\t\t 0.70708311 -5.2619338e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713\n\t\t -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.70708358 0.70708311 -5.2619338e-08\n\t\t -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.99996948\n\t\t -3.0919878e-07 -1.2246199e-16 -0.99996948 -3.0919878e-07 -1.2246199e-16 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -0.92385644 0.3826713 -2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16\n\t\t -0.99996948 -3.0919878e-07 -1.2246199e-16 -0.9238562 -0.38267189 2.8477444e-08 -0.9238562\n\t\t -0.38267189 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -0.9238562 -0.38267189 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08\n\t\t -0.70711362 -0.70708358 5.2619338e-08 -0.70711362 -0.70708358 5.2619338e-08 -0.70708311\n\t\t -0.70708358 5.2619338e-08 -0.9238562 -0.38267189 2.8477444e-08 -0.70708311 -0.70708358\n\t\t 5.2619338e-08 -0.70711362 -0.70708358 5.2619338e-08 -0.3826713 -0.92385644 3.058726e-05\n\t\t -0.3826713 -0.92385644 3.058726e-05 -0.3826713 -0.92385644 3.058726e-05 -0.70708311\n\t\t -0.70708358 5.2619338e-08 -0.58134693 -0.58134723 0.56920075 -0.58134693 -0.58134723\n\t\t 0.56920075 -0.31479818 -0.76000249 0.56855989 -0.31479818 -0.76000249 0.56855989\n\t\t -0.31479818 -0.76000249 0.56855989 -0.58134693 -0.58134723 0.56920075 -0.58134693\n\t\t -0.58134723 0.56920075 -0.58134693 -0.58134723 0.56920075 -0.76000232 -0.31479862\n\t\t 0.56855983 -0.76000232 -0.31479862 0.56855983 -0.76000232 -0.31479862 0.56855983\n\t\t -0.58134693 -0.58134723 0.56920075 -0.76000232 -0.31479862 0.56855983 -0.76000232\n\t\t -0.31479862 0.56855983 -0.82216865 -2.1186284e-07 0.56920069 -0.82216865 -2.1186284e-07\n\t\t 0.56920069 -0.82216865 -2.1186284e-07 0.56920069 -0.76000232 -0.31479862 0.56855983\n\t\t -0.82216865 -2.1186284e-07 0.56920069 -0.82216865 -2.1186284e-07 0.56920069 -0.76000255\n\t\t 0.31479821 0.56855983 -0.76000255 0.31479821 0.56855983 -0.76000255 0.31479821 0.56855983\n\t\t -0.82216865 -2.1186284e-07 0.56920069 -0.76000255 0.31479821 0.56855983 -0.76000255\n\t\t 0.31479821 0.56855983 -0.58134729 0.58134699 0.56920063 -0.58134729 0.58134699 0.56920063\n\t\t -0.58134729 0.58134699 0.56920063 -0.76000255 0.31479821 0.56855983 -0.58134729 0.58134699\n\t\t 0.56920063 -0.58134729 0.58134699 0.56920063 -0.31479865 0.75997186 0.56859028 -0.31479865\n\t\t 0.75997186 0.56859028 -0.31479865 0.75997186 0.56859028 -0.58134729 0.58134699 0.56920063\n\t\t -0.31479865 0.75997186 0.56859028 -0.31479865 0.75997186 0.56859028 -2.5422131e-07\n\t\t 0.82216871 0.56920063 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08\n\t\t -0.38267189 0.9238562 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07\n\t\t 1 -7.441745e-08 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08\n\t\t 0.3826713 0.92385644 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08 0.3826713 0.92385644\n\t\t -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 0.70708311 0.70708358 -5.2619338e-08\n\t\t 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08 0.3826713\n\t\t 0.92385644 -6.8751028e-08 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.70708358\n\t\t -5.2619338e-08 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08\n\t\t 0.9238562 0.38267189 -2.8477444e-08 0.70708311 0.70708358 -5.2619338e-08 0.9238562\n\t\t 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 1 3.0920822e-07 1.2246572e-16\n\t\t 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 0.9238562 0.38267189\n\t\t -2.8477444e-08 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 0.92385644\n\t\t -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 0.92385644 -0.3826713\n\t\t 2.8477444e-08 1 3.0920822e-07 1.2246572e-16 0.92385644 -0.3826713 2.8477444e-08 0.92385644\n\t\t -0.3826713 2.8477444e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311\n\t\t 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.92385644 -0.3826713 2.8477444e-08\n\t\t 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.38267189\n\t\t -0.9238562 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562\n\t\t 6.8751028e-08 0.70708358 -0.70708311 5.2619338e-08 0.38267189 -0.9238562 6.8751028e-08\n\t\t 0.38267189 -0.9238562 6.8751028e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1\n\t\t 7.441745e-08 3.0920822e-07 -1 7.441745e-08 0.38267189 -0.9238562 6.8751028e-08 3.0920822e-07\n\t\t -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 -0.3826713 -0.92385644 6.8751028e-08\n\t\t -0.3826713 -0.92385644 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 3.0920822e-07\n\t\t -1 7.441745e-08 -0.70711362 -0.70708358 5.2619338e-08 -0.70708311 -0.7071141 5.2621612e-08\n\t\t -0.3826713 -0.92385644 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.3826713\n\t\t -0.92385644 6.8751028e-08 -0.70711362 -0.70708358 5.2619338e-08 -0.70708311 -0.7071141\n\t\t 5.2621612e-08 -0.70711362 -0.70708358 5.2619338e-08 -0.9238562 -0.38267189 2.8477444e-08\n\t\t -0.9238562 -0.38267189 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08 -0.70708311\n\t\t -0.7071141 5.2621612e-08 -0.9238562 -0.38267189 2.8477444e-08 -0.9238562 -0.38267189\n\t\t 2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -1\n\t\t -3.0920822e-07 -1.2246572e-16 -0.9238562 -0.38267189 2.8477444e-08 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -0.92385644 0.3826713 -2.8477444e-08\n\t\t -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08\n\t\t -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358\n\t\t 0.70708311 -5.2619338e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.70708358 0.70708311\n\t\t -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.38267189 0.9238562 -6.8751028e-08\n\t\t -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.70708358\n\t\t 0.70708311 -5.2619338e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562\n\t\t -6.8751028e-08;\n\tsetAttr \".n[21248:21413]\" -type \"float3\"  -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07\n\t\t 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -0.38267189 0.9238562 -6.8751028e-08\n\t\t -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 0.3826713 0.92385644\n\t\t -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08\n\t\t -3.0920822e-07 1 -7.441745e-08 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644\n\t\t -6.8751028e-08 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08\n\t\t 0.70708311 0.70708358 -5.2619338e-08 0.3826713 0.92385644 -6.8751028e-08 0.70708311\n\t\t 0.70708358 -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08 0.9238562 0.38267189\n\t\t -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08\n\t\t 0.70708311 0.70708358 -5.2619338e-08 0.9238562 0.38267189 -2.8477444e-08 0.9238562\n\t\t 0.38267189 -2.8477444e-08 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16\n\t\t 1 3.0920822e-07 1.2246572e-16 0.9238562 0.38267189 -2.8477444e-08 1 3.0920822e-07\n\t\t 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 0.92385644 -0.3826713 2.8477444e-08 0.92385644\n\t\t -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 1 3.0920822e-07 1.2246572e-16\n\t\t 0.92385644 -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 0.70708358\n\t\t -0.70708311 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311\n\t\t 5.2619338e-08 0.92385644 -0.3826713 2.8477444e-08 0.70708358 -0.70708311 5.2619338e-08\n\t\t 0.70708358 -0.70708311 5.2619338e-08 0.38267189 -0.9238562 6.8751028e-08 0.38267189\n\t\t -0.9238562 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 0.70708358 -0.70708311\n\t\t 5.2619338e-08 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08\n\t\t 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08\n\t\t 0.38267189 -0.9238562 6.8751028e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1\n\t\t 7.441745e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08\n\t\t -0.3826713 -0.92385644 6.8751028e-08 3.0920822e-07 -1 7.441745e-08 -0.70708311 -0.70708358\n\t\t 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.3826713 -0.92385644 6.8751028e-08\n\t\t -0.3826713 -0.92385644 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.70708311\n\t\t -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311 -0.70708358\n\t\t 5.2619338e-08 -0.9238562 -0.38267189 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08\n\t\t -0.9238562 -0.38267189 2.8477444e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.9238562\n\t\t -0.38267189 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16\n\t\t -0.9238562 -0.38267189 2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08\n\t\t -0.92385644 0.3826713 -2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16 -0.92385644\n\t\t 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.70708358 0.70708311\n\t\t -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08\n\t\t -0.92385644 0.3826713 -2.8477444e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358\n\t\t 0.70708311 -5.2619338e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562\n\t\t -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.70708358 0.70708311 -5.2619338e-08\n\t\t -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -3.0920822e-07\n\t\t 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -0.38267189\n\t\t 0.9238562 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08\n\t\t 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 0.3826713\n\t\t 0.92385644 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08 0.3826713 0.92385644 -6.8751028e-08\n\t\t 0.3826713 0.92385644 -6.8751028e-08 0.70708311 0.70708358 -5.2619338e-08 0.70708311\n\t\t 0.70708358 -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08 0.3826713 0.92385644\n\t\t -6.8751028e-08 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08\n\t\t 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 0.9238562\n\t\t 0.38267189 -2.8477444e-08 0.70708311 0.70708358 -5.2619338e-08 0.9238562 0.38267189\n\t\t -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 1 3.0920822e-07 1.2246572e-16\n\t\t 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 0.9238562 0.38267189\n\t\t -2.8477444e-08 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 0.92385644\n\t\t -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 0.92385644 -0.3826713\n\t\t 2.8477444e-08 1 3.0920822e-07 1.2246572e-16 0.92385644 -0.3826713 2.8477444e-08 0.92385644\n\t\t -0.3826713 2.8477444e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311\n\t\t 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.92385644 -0.3826713 2.8477444e-08\n\t\t 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.38267189\n\t\t -0.9238562 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562\n\t\t 6.8751028e-08 0.70708358 -0.70708311 5.2619338e-08 0.38267189 -0.9238562 6.8751028e-08\n\t\t 0.38267189 -0.9238562 6.8751028e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1\n\t\t 7.441745e-08 3.0920822e-07 -1 7.441745e-08 0.38267189 -0.9238562 6.8751028e-08 3.0920822e-07\n\t\t -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 -0.3826713 -0.92385644 6.8751028e-08\n\t\t -0.3826713 -0.92385644 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 3.0920822e-07\n\t\t -1 7.441745e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08\n\t\t -0.3826713 -0.92385644 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.3826713\n\t\t -0.92385644 6.8751028e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311 -0.70708358\n\t\t 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.9238562 -0.38267189 2.8477444e-08\n\t\t -0.9238562 -0.38267189 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08 -0.70708311\n\t\t -0.70708358 5.2619338e-08;\n\tsetAttr \".n[21414:21579]\" -type \"float3\"  -0.9238562 -0.38267189 2.8477444e-08\n\t\t -0.9238562 -0.38267189 2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -0.99996948 -3.0919878e-07 -1.2246199e-16 -0.9238562 -0.38267189 2.8477444e-08\n\t\t -0.99996948 -3.0919878e-07 -1.2246199e-16 -1 -3.0920822e-07 -1.2246572e-16 -0.92385644\n\t\t 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713\n\t\t -2.8477444e-08 -0.99996948 -3.0919878e-07 -1.2246199e-16 -0.92385644 0.3826713 -2.8477444e-08\n\t\t -0.92385644 0.3826713 -2.8477444e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358\n\t\t 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.92385644 0.3826713\n\t\t -2.8477444e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08\n\t\t -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.38267189\n\t\t 0.9238562 -6.8751028e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.38267189 0.9238562\n\t\t -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08\n\t\t -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -0.38267189 0.9238562\n\t\t -6.8751028e-08 -1.5772291e-07 0.51008642 0.86010307 0.19540986 0.47181627 0.85973686\n\t\t 0.19544038 0.47181627 0.85973686 0.19544038 0.47181627 0.85973686 -1.5772291e-07\n\t\t 0.51008642 0.86010307 -1.5772291e-07 0.51008642 0.86010307 0.36066762 0.36066791\n\t\t 0.86010313 0.19544038 0.47181627 0.85973686 0.19540986 0.47181627 0.85973686 0.19540986\n\t\t 0.47181627 0.85973686 0.36066762 0.36066791 0.86010313 0.36066762 0.36066791 0.86010313\n\t\t 0.47181609 0.19544074 0.85973692 0.36066762 0.36066791 0.86010313 0.36066762 0.36066791\n\t\t 0.86010313 0.36066762 0.36066791 0.86010313 0.47181609 0.19541022 0.85973692 0.47181609\n\t\t 0.19544074 0.85973692 0.51005584 2.2172014e-07 0.86010313 0.47181609 0.19544074 0.85973692\n\t\t 0.47181609 0.19541022 0.85973692 0.47181609 0.19541022 0.85973692 0.51005584 2.2172014e-07\n\t\t 0.86010313 0.51005584 2.2172014e-07 0.86010313 0.47181621 -0.19544032 0.85973692\n\t\t 0.51005584 2.2172014e-07 0.86010313 0.51005584 2.2172014e-07 0.86010313 0.51005584\n\t\t 2.2172014e-07 0.86010313 0.47181621 -0.19544032 0.85973692 0.47181621 -0.19544032\n\t\t 0.85973692 0.36066785 -0.36066756 0.86010313 0.47181621 -0.19544032 0.85973692 0.47181621\n\t\t -0.19544032 0.85973692 0.47181621 -0.19544032 0.85973692 0.36066785 -0.36066756 0.86010313\n\t\t 0.36066785 -0.36066756 0.86010313 0.19541016 -0.47181603 0.85973698 0.36066785 -0.36066756\n\t\t 0.86010313 0.36066785 -0.36066756 0.86010313 0.36066785 -0.36066756 0.86010313 0.19541016\n\t\t -0.47178552 0.85973698 0.19541016 -0.47181603 0.85973698 1.5771344e-07 -0.51005578\n\t\t 0.86010319 0.19541016 -0.47181603 0.85973698 0.19541016 -0.47178552 0.85973698 0.19541016\n\t\t -0.47178552 0.85973698 1.5771344e-07 -0.51005578 0.86010319 1.5771344e-07 -0.51005578\n\t\t 0.86010319 -0.19544038 -0.47181615 0.85973698 1.5771344e-07 -0.51005578 0.86010319\n\t\t 1.5771344e-07 -0.51005578 0.86010319 1.5771344e-07 -0.51005578 0.86010319 -0.19540986\n\t\t -0.47181615 0.85973698 -0.19544038 -0.47181615 0.85973698 -0.19540986 -0.47181615\n\t\t 0.85973698 -0.36066762 -0.36063728 0.86013365 -0.36066762 -0.36063728 0.86013365\n\t\t -0.36066762 -0.36063728 0.86013365 -0.19544038 -0.47181615 0.85973698 -0.19540986\n\t\t -0.47181615 0.85973698 -0.47181609 -0.1954101 0.85973692 -0.36066762 -0.36063728\n\t\t 0.86013365 -0.36066762 -0.36063728 0.86013365 -0.36066762 -0.36063728 0.86013365\n\t\t -0.47181609 -0.19544062 0.85973692 -0.47181609 -0.1954101 0.85973692 -0.51005584\n\t\t -9.3706774e-08 0.86010313 -0.47181609 -0.1954101 0.85973692 -0.47181609 -0.19544062\n\t\t 0.85973692 -0.47181609 -0.19544062 0.85973692 -0.51005584 -9.3706774e-08 0.86010313\n\t\t -0.51005584 -9.3706774e-08 0.86010313 -0.47178569 0.19544044 0.85973692 -0.51005584\n\t\t -9.3706774e-08 0.86010313 -0.51005584 -9.3706774e-08 0.86010313 -0.51005584 -9.3706774e-08\n\t\t 0.86010313 -0.47178569 0.19544044 0.85973692 -0.47178569 0.19544044 0.85973692 -0.36066785\n\t\t 0.36066768 0.86010313 -0.47178569 0.19544044 0.85973692 -0.47178569 0.19544044 0.85973692\n\t\t -0.47178569 0.19544044 0.85973692 -0.36066785 0.36066768 0.86010313 -0.36066785 0.36066768\n\t\t 0.86010313 -0.19544068 0.47181615 0.85973686 -0.36066785 0.36066768 0.86010313 -0.36066785\n\t\t 0.36066768 0.86010313 -0.36066785 0.36066768 0.86010313 -0.19544068 0.47181615 0.85973686\n\t\t -0.19544068 0.47181615 0.85973686 -1.5772291e-07 0.51008642 0.86010307 -0.19544068\n\t\t 0.47181615 0.85973686 -0.19544068 0.47181615 0.85973686 -0.19544068 0.47181615 0.85973686\n\t\t -1.5772291e-07 0.51008642 0.86010307 -1.5772291e-07 0.51008642 0.86010307 0.36066762\n\t\t 0.36066779 -0.86013365 0.19540986 0.47181615 -0.85973698 0.19540986 0.47181615 -0.85973698\n\t\t 0.19540986 0.47181615 -0.85973698 0.36066762 0.36066779 -0.86013365 0.36066762 0.36066779\n\t\t -0.86013365 -1.5771344e-07 0.51005578 -0.86010319 0.19540986 0.47181615 -0.85973698\n\t\t 0.19540986 0.47181615 -0.85973698 0.19540986 0.47181615 -0.85973698 -1.5771344e-07\n\t\t 0.51005578 -0.86010319 -1.5771344e-07 0.51005578 -0.86010319 -0.19541016 0.47181603\n\t\t -0.85973698 -1.5771344e-07 0.51005578 -0.86010319 -1.5771344e-07 0.51005578 -0.86010319\n\t\t -1.5771344e-07 0.51005578 -0.86010319 -0.19541016 0.47181603 -0.85973698 -0.19541016\n\t\t 0.47181603 -0.85973698 -0.36066785 0.36066756 -0.86013365 -0.19541016 0.47181603\n\t\t -0.85973698 -0.19541016 0.47181603 -0.85973698 -0.19541016 0.47181603 -0.85973698\n\t\t -0.36066785 0.36066756 -0.86013365 -0.36066785 0.36066756 -0.86013365 -0.47178569\n\t\t 0.1954098 -0.85976744 -0.36066785 0.36066756 -0.86013365 -0.36066785 0.36066756 -0.86013365\n\t\t -0.36066785 0.36066756 -0.86013365 -0.47178569 0.1954098 -0.85976744 -0.47178569\n\t\t 0.1954098 -0.85976744 -0.51005584 -2.2172242e-07 -0.86013365 -0.47178569 0.1954098\n\t\t -0.85976744 -0.47178569 0.1954098 -0.85976744 -0.47178569 0.1954098 -0.85976744 -0.51005584\n\t\t -2.2172242e-07 -0.86013365 -0.51005584 -2.2172242e-07 -0.86013365 -0.47178558 -0.19541022\n\t\t -0.85976744 -0.51005584 -2.2172242e-07 -0.86013365 -0.51005584 -2.2172242e-07 -0.86013365\n\t\t -0.51005584 -2.2172242e-07 -0.86013365;\n\tsetAttr \".n[21580:21745]\" -type \"float3\"  -0.47178558 -0.19541022 -0.85976744 -0.47178558\n\t\t -0.19541022 -0.85976744 -0.3606371 -0.3606374 -0.86013365 -0.47178558 -0.19541022\n\t\t -0.85976744 -0.47178558 -0.19541022 -0.85976744 -0.47178558 -0.19541022 -0.85976744\n\t\t -0.3606371 -0.3606374 -0.86013365 -0.3606371 -0.3606374 -0.86013365 -0.19540986 -0.47178575\n\t\t -0.85973686 -0.3606371 -0.3606374 -0.86013365 -0.3606371 -0.3606374 -0.86013365 -0.3606371\n\t\t -0.3606374 -0.86013365 -0.19540986 -0.47178575 -0.85973686 -0.19540986 -0.47178575\n\t\t -0.85973686 -0.19540986 -0.47178575 -0.85973686 1.5771347e-07 -0.5100559 -0.86013359\n\t\t 1.5771347e-07 -0.5100559 -0.86013359 1.5771347e-07 -0.5100559 -0.86013359 -0.19540986\n\t\t -0.47178575 -0.85973686 -0.19540986 -0.47178575 -0.85973686 0.19541016 -0.47178563\n\t\t -0.85976738 1.5771347e-07 -0.5100559 -0.86013359 1.5771347e-07 -0.5100559 -0.86013359\n\t\t 1.5771347e-07 -0.5100559 -0.86013359 0.19541016 -0.47178563 -0.85976738 0.19541016\n\t\t -0.47178563 -0.85976738 0.36063734 -0.36066768 -0.86013365 0.19541016 -0.47178563\n\t\t -0.85976738 0.19541016 -0.47178563 -0.85976738 0.19541016 -0.47178563 -0.85976738\n\t\t 0.36063734 -0.36066768 -0.86013365 0.36063734 -0.36066768 -0.86013365 0.47178569\n\t\t -0.19540992 -0.85976744 0.36063734 -0.36066768 -0.86013365 0.36063734 -0.36066768\n\t\t -0.86013365 0.36063734 -0.36066768 -0.86013365 0.47178569 -0.19540992 -0.85976744\n\t\t 0.47178569 -0.19540992 -0.85976744 0.51005584 9.3704507e-08 -0.86013365 0.47178569\n\t\t -0.19540992 -0.85976744 0.47178569 -0.19540992 -0.85976744 0.47178569 -0.19540992\n\t\t -0.85976744 0.51005584 9.3704507e-08 -0.86013365 0.51005584 9.3704507e-08 -0.86013365\n\t\t 0.47178558 0.1954101 -0.85976744 0.51005584 9.3704507e-08 -0.86013365 0.51005584\n\t\t 9.3704507e-08 -0.86013365 0.51005584 9.3704507e-08 -0.86013365 0.47178558 0.1954101\n\t\t -0.85976744 0.47178558 0.1954101 -0.85976744 0.36066762 0.36066779 -0.86013365 0.47178558\n\t\t 0.1954101 -0.85976744 0.47178558 0.1954101 -0.85976744 0.47178558 0.1954101 -0.85976744\n\t\t 0.36066762 0.36066779 -0.86013365 0.36066762 0.36066779 -0.86013365 -1.5820417e-07\n\t\t 0.51164287 0.85915703 0.19602023 0.47328117 0.85879081 0.19605076 0.47328117 0.85879081\n\t\t 0.19605076 0.47328117 0.85879081 -1.5821361e-07 0.51167339 0.85915703 -1.5820417e-07\n\t\t 0.51164287 0.85915703 0.3617968 0.36179709 0.85915709 0.19605076 0.47328117 0.85879081\n\t\t 0.19602023 0.47328117 0.85879081 0.19602023 0.47328117 0.85879081 0.3617968 0.36179709\n\t\t 0.85915709 0.3617968 0.36179709 0.85915709 0.47325048 0.19602059 0.85882139 0.3617968\n\t\t 0.36179709 0.85915709 0.3617968 0.36179709 0.85915709 0.3617968 0.36179709 0.85915709\n\t\t 0.47325048 0.19602059 0.85882139 0.47325048 0.19602059 0.85882139 0.5116123 2.2213328e-07\n\t\t 0.8591876 0.47325048 0.19602059 0.85882139 0.47325048 0.19602059 0.85882139 0.47325048\n\t\t 0.19602059 0.85882139 0.5116123 2.2213328e-07 0.8591876 0.5116123 2.2213328e-07 0.8591876\n\t\t 0.4732506 -0.19602017 0.85882139 0.5116123 2.2213328e-07 0.8591876 0.5116123 2.2213328e-07\n\t\t 0.8591876 0.5116123 2.2213328e-07 0.8591876 0.4732506 -0.19602017 0.85882139 0.4732506\n\t\t -0.19602017 0.85882139 0.36179703 -0.36179674 0.85915709 0.4732506 -0.19602017 0.85882139\n\t\t 0.4732506 -0.19602017 0.85882139 0.4732506 -0.19602017 0.85882139 0.36179703 -0.36176622\n\t\t 0.85915709 0.36179703 -0.36179674 0.85915709 0.19602053 -0.47325042 0.85882145 0.36179703\n\t\t -0.36179674 0.85915709 0.36179703 -0.36176622 0.85915709 0.36179703 -0.36176622 0.85915709\n\t\t 0.19602053 -0.47325042 0.85882145 0.19602053 -0.47325042 0.85882145 1.5820414e-07\n\t\t -0.51164275 0.85915715 0.19602053 -0.47325042 0.85882145 0.19602053 -0.47325042 0.85882145\n\t\t 0.19602053 -0.47325042 0.85882145 1.5820414e-07 -0.51164275 0.85915715 1.5820414e-07\n\t\t -0.51164275 0.85915715 -0.19602023 -0.47325054 0.85882145 1.5820414e-07 -0.51164275\n\t\t 0.85915715 1.5820414e-07 -0.51164275 0.85915715 1.5820414e-07 -0.51164275 0.85915715\n\t\t -0.19602023 -0.47325054 0.85882145 -0.19602023 -0.47325054 0.85882145 -0.19602023\n\t\t -0.47325054 0.85882145 -0.3617968 -0.36179698 0.85915709 -0.3617968 -0.36179698 0.85915709\n\t\t -0.3617968 -0.36179698 0.85915709 -0.19602023 -0.47325054 0.85882145 -0.19602023\n\t\t -0.47325054 0.85882145 -0.47325048 -0.19602047 0.85882139 -0.3617968 -0.36179698\n\t\t 0.85915709 -0.3617968 -0.36179698 0.85915709 -0.3617968 -0.36179698 0.85915709 -0.47325048\n\t\t -0.19602047 0.85882139 -0.47325048 -0.19602047 0.85882139 -0.5116123 -9.4256173e-08\n\t\t 0.8591876 -0.47325048 -0.19602047 0.85882139 -0.47325048 -0.19602047 0.85882139 -0.47325048\n\t\t -0.19602047 0.85882139 -0.5116123 -9.4256173e-08 0.8591876 -0.5116123 -9.4256173e-08\n\t\t 0.8591876 -0.47322008 0.19602029 0.85885191 -0.5116123 -9.4256173e-08 0.8591876 -0.5116123\n\t\t -9.4256173e-08 0.8591876 -0.5116123 -9.4256173e-08 0.8591876 -0.47322008 0.19602029\n\t\t 0.85885191 -0.47322008 0.19602029 0.85885191 -0.36176652 0.36176634 0.8591876 -0.47322008\n\t\t 0.19602029 0.85885191 -0.47322008 0.19602029 0.85885191 -0.47322008 0.19602029 0.85885191\n\t\t -0.36176652 0.36176634 0.8591876 -0.36176652 0.36176634 0.8591876 -0.19605106 0.47328106\n\t\t 0.85879081 -0.36176652 0.36176634 0.8591876 -0.36176652 0.36176634 0.8591876 -0.36176652\n\t\t 0.36176634 0.8591876 -0.19605106 0.47328106 0.85879081 -0.19605106 0.47328106 0.85879081\n\t\t -1.5821361e-07 0.51167339 0.85915703 -0.19605106 0.47328106 0.85879081 -0.19605106\n\t\t 0.47328106 0.85879081 -0.19605106 0.47328106 0.85879081 -1.5820417e-07 0.51164287\n\t\t 0.85915703 -1.5821361e-07 0.51167339 0.85915703 0.3617968 0.36179698 -0.85915709\n\t\t 0.19602023 0.47325054 -0.85882145 0.19602023 0.47325054 -0.85882145 0.19602023 0.47325054\n\t\t -0.85882145 0.3617968 0.36179698 -0.85915709 0.3617968 0.36179698 -0.85915709 -1.5819471e-07\n\t\t 0.51161224 -0.85918766 0.19602023 0.47325054 -0.85882145 0.19602023 0.47325054 -0.85882145\n\t\t 0.19602023 0.47325054 -0.85882145 -1.5819471e-07 0.51161224 -0.85918766 -1.5819471e-07\n\t\t 0.51161224 -0.85918766 -0.19602053 0.47328094 -0.85879093 -1.5819471e-07 0.51161224\n\t\t -0.85918766;\n\tsetAttr \".n[21746:21911]\" -type \"float3\"  -1.5819471e-07 0.51161224 -0.85918766\n\t\t -1.5819471e-07 0.51161224 -0.85918766 -0.19602053 0.47328094 -0.85879093 -0.19602053\n\t\t 0.47328094 -0.85879093 -0.36176652 0.36176622 -0.8591876 -0.19602053 0.47328094 -0.85879093\n\t\t -0.19602053 0.47328094 -0.85879093 -0.19602053 0.47328094 -0.85879093 -0.36176652\n\t\t 0.36176622 -0.8591876 -0.36176652 0.36176622 -0.8591876 -0.47318956 0.19598965 -0.85885191\n\t\t -0.36176652 0.36176622 -0.8591876 -0.36176652 0.36176622 -0.8591876 -0.36176652 0.36176622\n\t\t -0.8591876 -0.47322008 0.19598965 -0.85885191 -0.47318956 0.19598965 -0.85885191\n\t\t -0.51164281 -2.2214272e-07 -0.8591876 -0.47318956 0.19598965 -0.85885191 -0.47322008\n\t\t 0.19598965 -0.85885191 -0.47322008 0.19598965 -0.85885191 -0.51164281 -2.2214272e-07\n\t\t -0.8591876 -0.51164281 -2.2214272e-07 -0.8591876 -0.47325048 -0.19602059 -0.85882139\n\t\t -0.51164281 -2.2214272e-07 -0.8591876 -0.51164281 -2.2214272e-07 -0.8591876 -0.51164281\n\t\t -2.2214272e-07 -0.8591876 -0.47325048 -0.19602059 -0.85882139 -0.47325048 -0.19602059\n\t\t -0.85882139 -0.36176628 -0.36173606 -0.8591876 -0.47325048 -0.19602059 -0.85882139\n\t\t -0.47325048 -0.19602059 -0.85882139 -0.47325048 -0.19602059 -0.85882139 -0.36173576\n\t\t -0.36176658 -0.8591876 -0.36176628 -0.36173606 -0.8591876 -0.19602023 -0.47328117\n\t\t -0.85879081 -0.36176628 -0.36173606 -0.8591876 -0.36173576 -0.36176658 -0.8591876\n\t\t -0.36173576 -0.36176658 -0.8591876 -0.19602023 -0.47328117 -0.85879081 -0.19602023\n\t\t -0.47328117 -0.85879081 -0.19602023 -0.47328117 -0.85879081 1.5819474e-07 -0.51161236\n\t\t -0.85918754 1.5819474e-07 -0.51161236 -0.85918754 1.5819474e-07 -0.51161236 -0.85918754\n\t\t -0.19602023 -0.47328117 -0.85879081 -0.19602023 -0.47328117 -0.85879081 0.19599001\n\t\t -0.4731895 -0.85885185 1.5819474e-07 -0.51161236 -0.85918754 1.5819474e-07 -0.51161236\n\t\t -0.85918754 1.5819474e-07 -0.51161236 -0.85918754 0.19599001 -0.4731895 -0.85885185\n\t\t 0.19599001 -0.4731895 -0.85885185 0.36176652 -0.36176634 -0.8591876 0.19599001 -0.4731895\n\t\t -0.85885185 0.19599001 -0.4731895 -0.85885185 0.19599001 -0.4731895 -0.85885185 0.36176652\n\t\t -0.36176634 -0.8591876 0.36176652 -0.36176634 -0.8591876 0.47328112 -0.19602029 -0.85879087\n\t\t 0.36176652 -0.36176634 -0.8591876 0.36176652 -0.36176634 -0.8591876 0.36176652 -0.36176634\n\t\t -0.8591876 0.47328112 -0.19605082 -0.85879087 0.47328112 -0.19602029 -0.85879087\n\t\t 0.51158178 9.4244463e-08 -0.85921812 0.47328112 -0.19602029 -0.85879087 0.47328112\n\t\t -0.19605082 -0.85879087 0.47328112 -0.19605082 -0.85879087 0.51158178 9.4244463e-08\n\t\t -0.85921812 0.51158178 9.4244463e-08 -0.85921812 0.47321996 0.19602047 -0.85882139\n\t\t 0.51158178 9.4244463e-08 -0.85921812 0.51158178 9.4244463e-08 -0.85921812 0.51158178\n\t\t 9.4244463e-08 -0.85921812 0.47321996 0.19602047 -0.85882139 0.47321996 0.19602047\n\t\t -0.85882139 0.3617968 0.36179698 -0.85915709 0.47321996 0.19602047 -0.85882139 0.47321996\n\t\t 0.19602047 -0.85882139 0.47321996 0.19602047 -0.85882139 0.3617968 0.36179698 -0.85915709\n\t\t 0.3617968 0.36179698 -0.85915709 0.7599718 0.31479868 0.56859034 0.76000232 0.31476817\n\t\t 0.56859034 0.82216865 2.9657977e-07 0.56920069 0.82216865 2.9657977e-07 0.56920069\n\t\t 0.82216865 2.9657977e-07 0.56920069 0.7599718 0.31479868 0.56859034 0.82216865 2.9657977e-07\n\t\t 0.56920069 0.82216865 2.9657977e-07 0.56920069 0.75997204 -0.31479815 0.56859034\n\t\t 0.75997204 -0.31479815 0.56859034 0.75997204 -0.31479815 0.56859034 0.82216865 2.9657977e-07\n\t\t 0.56920069 0.75997204 -0.31479815 0.56859034 0.75997204 -0.31479815 0.56859034 0.58134729\n\t\t -0.58134687 0.56920075 0.58134729 -0.58134687 0.56920075 0.58134729 -0.58134687 0.56920075\n\t\t 0.75997204 -0.31479815 0.56859034 -0.93359184 0.35825649 -2.6660556e-08 -0.99963379\n\t\t -0.026246227 1.9531541e-09 -0.99963379 -0.02621571 1.950883e-09 -0.99963379 -0.02621571\n\t\t 1.950883e-09 -0.93359184 0.35831752 -2.6665099e-08 -0.93359184 0.35825649 -2.6660556e-08\n\t\t -0.93359184 0.35825649 -2.6660556e-08 -0.93359184 0.35831752 -2.6665099e-08 -0.72539467\n\t\t 0.6883142 -5.1222607e-08 -0.72539467 0.6883142 -5.1222607e-08 -0.72542518 0.68825316\n\t\t -5.1218063e-08 -0.93359184 0.35825649 -2.6660556e-08 -0.40681201 0.91347992 -6.7978853e-08\n\t\t -0.72542518 0.68825316 -5.1218063e-08 -0.72539467 0.6883142 -5.1222607e-08 -0.72539467\n\t\t 0.6883142 -5.1222607e-08 -0.40675095 0.91351044 -6.7981127e-08 -0.40681201 0.91347992\n\t\t -6.7978853e-08 -0.40681201 0.91347992 -6.7978853e-08 -0.40675095 0.91351044 -6.7981127e-08\n\t\t -0.02621571 0.99963379 -7.4390201e-08 -0.02621571 0.99963379 -7.4390201e-08 -0.026246227\n\t\t 0.99963379 -7.4390201e-08 -0.40681201 0.91347992 -6.7978853e-08 0.35825649 0.93359184\n\t\t -6.9475519e-08 -0.026246227 0.99963379 -7.4390201e-08 -0.02621571 0.99963379 -7.4390201e-08\n\t\t -0.02621571 0.99963379 -7.4390201e-08 0.35828701 0.93359184 -6.9475519e-08 0.35825649\n\t\t 0.93359184 -6.9475519e-08 0.35825649 0.93359184 -6.9475519e-08 0.35828701 0.93359184\n\t\t -6.9475519e-08 0.68828368 0.72542518 -5.3984273e-08 0.68828368 0.72542518 -5.3984273e-08\n\t\t 0.68828368 0.72542518 -5.3984273e-08 0.35825649 0.93359184 -6.9475519e-08 0.91351044\n\t\t 0.40681201 -3.0273892e-08 0.68828368 0.72542518 -5.3984273e-08 0.68828368 0.72542518\n\t\t -5.3984273e-08 0.68828368 0.72542518 -5.3984273e-08 0.91347992 0.40681201 -3.0273892e-08\n\t\t 0.91351044 0.40681201 -3.0273892e-08 0.91351044 0.40681201 -3.0273892e-08 0.91347992\n\t\t 0.40681201 -3.0273892e-08 0.99963379 0.026276745 -1.9554252e-09 0.99963379 0.026276745\n\t\t -1.9554252e-09 0.99963379 0.026246227 -1.9531541e-09 0.91351044 0.40681201 -3.0273892e-08\n\t\t 0.93359184 -0.35825649 2.6660556e-08 0.99963379 0.026246227 -1.9531541e-09 0.99963379\n\t\t 0.026276745 -1.9554252e-09 0.99963379 0.026276745 -1.9554252e-09 0.93362236 -0.35822597\n\t\t 2.6658286e-08 0.93359184 -0.35825649 2.6660556e-08 0.93359184 -0.35825649 2.6660556e-08\n\t\t 0.93362236 -0.35822597 2.6658286e-08 0.7254557 -0.68822265 5.1215792e-08 0.7254557\n\t\t -0.68822265 5.1215792e-08 0.72542518 -0.68828368 5.1220333e-08 0.93359184 -0.35825649\n\t\t 2.6660556e-08 0.40681201 -0.91347992 6.7978853e-08 0.72542518 -0.68828368 5.1220333e-08\n\t\t 0.7254557 -0.68822265 5.1215792e-08 0.7254557 -0.68822265 5.1215792e-08 0.40684253\n\t\t -0.91347992 6.7978853e-08 0.40681201 -0.91347992 6.7978853e-08;\n\tsetAttr \".n[21912:22077]\" -type \"float3\"  0.40681201 -0.91347992 6.7978853e-08\n\t\t 0.40684253 -0.91347992 6.7978853e-08 0.026276745 -0.99963379 7.4390201e-08 0.026276745\n\t\t -0.99963379 7.4390201e-08 0.026276745 -0.99963379 7.4390201e-08 0.40681201 -0.91347992\n\t\t 6.7978853e-08 -0.35825649 -0.93359184 6.9475519e-08 0.026276745 -0.99963379 7.4390201e-08\n\t\t 0.026276745 -0.99963379 7.4390201e-08 0.026276745 -0.99963379 7.4390201e-08 -0.35825649\n\t\t -0.93359184 6.9475519e-08 -0.35825649 -0.93359184 6.9475519e-08 -0.35825649 -0.93359184\n\t\t 6.9475519e-08 -0.35825649 -0.93359184 6.9475519e-08 -0.68828368 -0.72542518 5.3984273e-08\n\t\t -0.68828368 -0.72542518 5.3984273e-08 -0.68828368 -0.72542518 5.3984273e-08 -0.35825649\n\t\t -0.93359184 6.9475519e-08 -0.91351044 -0.40681201 3.0273892e-08 -0.68828368 -0.72542518\n\t\t 5.3984273e-08 -0.68828368 -0.72542518 5.3984273e-08 -0.68828368 -0.72542518 5.3984273e-08\n\t\t -0.91351044 -0.40678149 3.0271622e-08 -0.91351044 -0.40681201 3.0273892e-08 -0.99963379\n\t\t -0.026246227 1.9531541e-09 -0.91351044 -0.40681201 3.0273892e-08 -0.91351044 -0.40678149\n\t\t 3.0271622e-08 -0.91351044 -0.40678149 3.0271622e-08 -0.99963379 -0.02621571 1.950883e-09\n\t\t -0.99963379 -0.026246227 1.9531541e-09 -0.00024414802 -0.00021355522 0.99996948 -0.00024414802\n\t\t -0.00018303671 0.99996948 -0.00015259247 -0.00021355519 0.99996948 -0.00015259247\n\t\t -0.00021355519 0.99996948 -0.00012207395 -0.0002745922 0.99996948 -0.00024414802\n\t\t -0.00021355522 0.99996948 -0.00012207395 -0.0002745922 0.99996948 -0.00015259247\n\t\t -0.00021355519 0.99996948 -6.1036961e-05 -0.00018303665 0.99996948 -6.1036961e-05\n\t\t -0.00018303665 0.99996948 -3.0518444e-05 -0.00021355516 1 -0.00012207395 -0.0002745922\n\t\t 0.99996948 -3.0518444e-05 -0.00021355516 1 -6.1036961e-05 -0.00018303665 0.99996948\n\t\t 2.828659e-11 -9.148111e-05 1 2.828659e-11 -9.148111e-05 1 2.828659e-11 -9.148111e-05\n\t\t 0.99996948 -3.0518444e-05 -0.00021355516 1 2.828659e-11 -9.148111e-05 0.99996948\n\t\t 2.828659e-11 -9.148111e-05 1 -6.1037019e-05 7.4398578e-08 1 -6.1037019e-05 7.4398578e-08\n\t\t 1 -6.1037019e-05 7.4398578e-08 1 2.828659e-11 -9.148111e-05 0.99996948 -6.1037019e-05\n\t\t 7.4398578e-08 1 -6.1037019e-05 7.4398578e-08 1 -0.00015259255 7.437027e-08 1 -0.00015259255\n\t\t 7.437027e-08 1 -0.00018311106 7.4360834e-08 1 -6.1037019e-05 7.4398578e-08 1 -0.00018311106\n\t\t 7.4360834e-08 1 -0.00015259255 7.437027e-08 1 -0.00024414808 7.4339681e-08 0.99996948\n\t\t -0.00024414808 7.4339681e-08 0.99996948 -0.00027466659 -3.0444178e-05 0.99996948\n\t\t -0.00018311106 7.4360834e-08 1 -0.00027466659 -3.0444178e-05 0.99996948 -0.00024414808\n\t\t 7.4339681e-08 0.99996948 -0.00030518507 -9.1481204e-05 0.99996948 -0.00030518507\n\t\t -9.1481204e-05 0.99996948 -0.00030518504 -0.00015251822 0.99996948 -0.00027466659\n\t\t -3.0444178e-05 0.99996948 -0.00024414802 -0.00018303671 0.99996948 -0.00024414802\n\t\t -0.00021355522 0.99996948 -0.00030518504 -0.00015251822 0.99996948 -0.00030518504\n\t\t -0.00015251822 0.99996948 -0.00030518507 -9.1481204e-05 0.99996948 -0.00024414802\n\t\t -0.00018303671 0.99996948 -0.00030518507 -9.1481204e-05 0.99996948 -0.00030518504\n\t\t -0.00015251822 0.99996948 -0.00027466659 -3.0444178e-05 0.99996948 -0.00027466659\n\t\t -3.0444178e-05 0.99996948 -0.00024414808 7.4341955e-08 1 -0.00030518507 -9.1481204e-05\n\t\t 0.99996948 -0.00024414808 7.4341955e-08 1 -0.00027466659 -3.0444178e-05 0.99996948\n\t\t -0.00018311106 7.435856e-08 0.99996948 -0.00018311106 7.435856e-08 0.99996948 -0.00018311106\n\t\t 7.4360834e-08 1 -0.00024414808 7.4341955e-08 1 -0.00018311106 7.4360834e-08 1 -0.00018311106\n\t\t 7.435856e-08 0.99996948 -6.1037019e-05 7.4398578e-08 1 -6.1037019e-05 7.4398578e-08\n\t\t 1 -6.1037019e-05 7.4398578e-08 1 -0.00018311106 7.4360834e-08 1 -6.1037019e-05 7.4398578e-08\n\t\t 1 -6.1037019e-05 7.4398578e-08 1 2.828659e-11 -9.148111e-05 1 2.828659e-11 -9.148111e-05\n\t\t 1 2.828659e-11 -9.148111e-05 1 -6.1037019e-05 7.4398578e-08 1 2.828659e-11 -9.148111e-05\n\t\t 1 2.828659e-11 -9.148111e-05 1 -3.0518444e-05 -0.00021355516 0.99996948 -3.0518444e-05\n\t\t -0.00021355516 0.99996948 -6.1036961e-05 -0.00018303665 1 2.828659e-11 -9.148111e-05\n\t\t 1 -6.1036961e-05 -0.00018303665 1 -3.0518444e-05 -0.00021355516 0.99996948 -0.00012207397\n\t\t -0.00024407369 0.99996948 -0.00012207397 -0.00024407369 0.99996948 -0.00015259247\n\t\t -0.00021355519 0.99996948 -6.1036961e-05 -0.00018303665 1 -0.00015259247 -0.00021355519\n\t\t 0.99996948 -0.00012207397 -0.00024407369 0.99996948 -0.00021362949 -0.00024407372\n\t\t 0.99996948 -0.00021362949 -0.00024407372 0.99996948 -0.00024414802 -0.00021355522\n\t\t 0.99996948 -0.00015259247 -0.00021355519 0.99996948 -0.00024414802 -0.00021355522\n\t\t 0.99996948 -0.00021362949 -0.00024407372 0.99996948 -0.00030518504 -0.00015251822\n\t\t 0.99996948 -0.00030518504 -0.00015251822 0.99996948 -0.00030518507 -9.1481204e-05\n\t\t 0.99996948 -0.00024414802 -0.00021355522 0.99996948 -0.68578148 0.26300836 0.67857903\n\t\t -0.5321514 0.50468445 0.6797387 -0.53218192 0.50465393 0.6797387 -0.53218192 0.50465393\n\t\t 0.6797387 -0.685812 0.26300836 0.67857903 -0.68578148 0.26300836 0.67857903 -0.68578148\n\t\t 0.26300836 0.67857903 -0.685812 0.26300836 0.67857903 -0.73317665 -0.019379431 0.67970824\n\t\t -0.73317665 -0.019379431 0.67970824 -0.73317665 -0.019348912 0.67970824 -0.68578148\n\t\t 0.26300836 0.67857903 -0.67094934 -0.29883739 0.67857903 -0.73317665 -0.019348912\n\t\t 0.67970824 -0.73317665 -0.019379431 0.67970824 -0.73317665 -0.019379431 0.67970824\n\t\t -0.67094934 -0.29880688 0.67857903 -0.67094934 -0.29883739 0.67857903 -0.67094934\n\t\t -0.29883739 0.67857903 -0.67094934 -0.29880688 0.67857903 -0.50486749 -0.53202927\n\t\t 0.6797083 -0.50486749 -0.53202927 0.6797083 -0.50486749 -0.53205979 0.6797083 -0.67094934\n\t\t -0.29883739 0.67857903 -0.26325247 -0.68572038 0.67854857 -0.50486749 -0.53205979\n\t\t 0.6797083 -0.50486749 -0.53202927 0.6797083 -0.50486749 -0.53202927 0.6797083 -0.26325247\n\t\t -0.68572038 0.67854857 -0.26325247 -0.68572038 0.67854857 -0.26325247 -0.68572038\n\t\t 0.67854857 -0.26325247 -0.68572038 0.67854857 0.019074295 -0.73320711 0.6797083 0.019074295\n\t\t -0.73320711 0.6797083 0.019104814 -0.73320711 0.6797083 -0.26325247 -0.68572038 0.67854857\n\t\t 0.29865435 -0.67101032 0.67860961 0.019104814 -0.73320711 0.6797083 0.019074295 -0.73320711\n\t\t 0.6797083 0.019074295 -0.73320711 0.6797083;\n\tsetAttr \".n[22078:22243]\" -type \"float3\"  0.29862383 -0.67101032 0.67860961 0.29865435\n\t\t -0.67101032 0.67860961 -0.29899004 0.6708883 0.67857897 -0.53218192 0.50465393 0.6797387\n\t\t -0.5321514 0.50468445 0.6797387 -0.5321514 0.50468445 0.6797387 -0.29895952 0.6708883\n\t\t 0.67857897 -0.29899004 0.6708883 0.67857897 -0.019409999 0.73314619 0.67976922 -0.29899004\n\t\t 0.6708883 0.67857897 -0.29895952 0.6708883 0.67857897 -0.29895952 0.6708883 0.67857897\n\t\t -0.019409999 0.73314619 0.67976922 -0.019409999 0.73314619 0.67976922 -0.019409999\n\t\t 0.73314619 0.67976922 -0.019409999 0.73314619 0.67976922 0.26306933 0.68575102 0.67857897\n\t\t 0.26306933 0.68575102 0.67857897 0.26303881 0.68578154 0.67857897 -0.019409999 0.73314619\n\t\t 0.67976922 0.50477594 0.53209043 0.6797387 0.26303881 0.68578154 0.67857897 0.26306933\n\t\t 0.68575102 0.67857897 0.26306933 0.68575102 0.67857897 0.50480646 0.53209043 0.67970818\n\t\t 0.50477594 0.53209043 0.6797387 0.50477594 0.53209043 0.6797387 0.50480646 0.53209043\n\t\t 0.67970818 0.67094934 0.29874596 0.67864007 0.67094934 0.29874596 0.67864007 0.67091882\n\t\t 0.29874596 0.67864007 0.50477594 0.53209043 0.6797387 0.73314613 0.019135384 0.67976928\n\t\t 0.67091882 0.29874596 0.67864007 0.67094934 0.29874596 0.67864007 0.67094934 0.29874596\n\t\t 0.67864007 0.73314613 0.019135384 0.67976928 0.73314613 0.019135384 0.67976928 0.73314613\n\t\t 0.019135384 0.67976928 0.73314613 0.019135384 0.67976928 0.68565941 -0.26325241 0.67860955\n\t\t 0.68565941 -0.26325241 0.67860955 0.68565941 -0.26328292 0.67860955 0.73314613 0.019135384\n\t\t 0.67976928 0.53190726 -0.50495905 0.67973882 0.68565941 -0.26328292 0.67860955 0.68565941\n\t\t -0.26325241 0.67860955 0.68565941 -0.26325241 0.67860955 0.53193778 -0.50492853 0.67973882\n\t\t 0.53190726 -0.50495905 0.67973882 0.53190726 -0.50495905 0.67973882 0.53193778 -0.50492853\n\t\t 0.67973882 0.29865435 -0.67101032 0.67860961 0.29865435 -0.67101032 0.67860961 0.29862383\n\t\t -0.67101032 0.67860961 0.53190726 -0.50495905 0.67973882 -0.99960327 -0.02621571\n\t\t 0.0094607398 -0.93353081 0.35831752 0.0094301924 -0.93356133 0.35825649 0.0094301924\n\t\t -0.93356133 0.35825649 0.0094301924 -0.99960327 -0.026246227 0.0094607398 -0.99960327\n\t\t -0.02621571 0.0094607398 -0.93356133 0.35825649 0.0094301924 -0.93353081 0.35831752\n\t\t 0.0094301924 -0.72533363 0.68828368 0.0094606867 -0.72533363 0.68828368 0.0094606867\n\t\t -0.72539467 0.68822265 0.0094606867 -0.93356133 0.35825649 0.0094301924 -0.40678149\n\t\t 0.91344941 0.0094301514 -0.72539467 0.68822265 0.0094606867 -0.72533363 0.68828368\n\t\t 0.0094606867 -0.72533363 0.68828368 0.0094606867 -0.40675095 0.91347992 0.0094301514\n\t\t -0.40678149 0.91344941 0.0094301514 -0.40678149 0.91344941 0.0094301514 -0.40675095\n\t\t 0.91347992 0.0094301514 -0.02621571 0.99960327 0.0094606634 -0.02621571 0.99960327\n\t\t 0.0094606634 -0.026246227 0.99960327 0.0094606634 -0.40678149 0.91344941 0.0094301514\n\t\t 0.35825649 0.93356133 0.0094301496 -0.026246227 0.99960327 0.0094606634 -0.02621571\n\t\t 0.99960327 0.0094606634 -0.02621571 0.99960327 0.0094606634 0.35828701 0.93356133\n\t\t 0.0094301496 0.35825649 0.93356133 0.0094301496 0.35825649 0.93356133 0.0094301496\n\t\t 0.35828701 0.93356133 0.0094301496 0.68825316 0.72539467 0.0094606839 0.68825316\n\t\t 0.72539467 0.0094606839 0.68825316 0.72539467 0.0094301654 0.35825649 0.93356133\n\t\t 0.0094301496 0.91344941 0.40678149 0.0094301887 0.68825316 0.72539467 0.0094301654\n\t\t 0.68825316 0.72539467 0.0094606839 0.68825316 0.72539467 0.0094606839 0.91344941\n\t\t 0.40681201 0.0094301887 0.91344941 0.40678149 0.0094301887 0.91344941 0.40678149\n\t\t 0.0094301887 0.91344941 0.40681201 0.0094301887 0.99960327 0.026276745 0.0094607361\n\t\t 0.99960327 0.026276745 0.0094607361 0.99960327 0.026246227 0.0094607361 0.91344941\n\t\t 0.40678149 0.0094301887 0.93356133 -0.35825649 0.0094302464 0.99960327 0.026246227\n\t\t 0.0094607361 0.99960327 0.026276745 0.0094607361 0.99960327 0.026276745 0.0094607361\n\t\t 0.93356133 -0.35819545 0.0094302464 0.93356133 -0.35825649 0.0094302464 0.93356133\n\t\t -0.35825649 0.0094302464 0.93356133 -0.35819545 0.0094302464 0.72542518 -0.68819213\n\t\t 0.0094607892 0.72542518 -0.68819213 0.0094607892 0.72539467 -0.68825316 0.0094607892\n\t\t 0.93356133 -0.35825649 0.0094302464 0.40681201 -0.91344941 0.0094302874 0.72539467\n\t\t -0.68825316 0.0094607892 0.72542518 -0.68819213 0.0094607892 0.72542518 -0.68819213\n\t\t 0.0094607892 0.40684253 -0.91341889 0.0094302874 0.40681201 -0.91344941 0.0094302874\n\t\t 0.40681201 -0.91344941 0.0094302874 0.40684253 -0.91341889 0.0094302874 0.026276745\n\t\t -0.99960327 0.0094608124 0.026276745 -0.99960327 0.0094608124 0.026246227 -0.99960327\n\t\t 0.0094608124 0.40681201 -0.91344941 0.0094302874 -0.35825649 -0.93356133 0.0094302893\n\t\t 0.026246227 -0.99960327 0.0094608124 0.026276745 -0.99960327 0.0094608124 0.026276745\n\t\t -0.99960327 0.0094608124 -0.35825649 -0.93356133 0.0094302893 -0.35825649 -0.93356133\n\t\t 0.0094302893 -0.35825649 -0.93356133 0.0094302893 -0.35825649 -0.93356133 0.0094302893\n\t\t -0.68825316 -0.72539467 0.0094607919 -0.68825316 -0.72539467 0.0094607919 -0.68825316\n\t\t -0.72539467 0.0094607919 -0.35825649 -0.93356133 0.0094302893 -0.91344941 -0.40678149\n\t\t 0.0094302502 -0.68825316 -0.72539467 0.0094607919 -0.68825316 -0.72539467 0.0094607919\n\t\t -0.68825316 -0.72539467 0.0094607919 -0.91344941 -0.40678149 0.0094302502 -0.91344941\n\t\t -0.40678149 0.0094302502 -0.99960327 -0.026246227 0.0094607398 -0.91344941 -0.40678149\n\t\t 0.0094302502 -0.91344941 -0.40678149 0.0094302502 -0.91344941 -0.40678149 0.0094302502\n\t\t -0.99960327 -0.02621571 0.0094607398 -0.99960327 -0.026246227 0.0094607398 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1;\n\tsetAttr \".n[22244:22409]\" -type \"float3\"  -2.3132244e-14 7.4415176e-08 0.99996948\n\t\t -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132244e-14 7.4415176e-08\n\t\t 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132244e-14\n\t\t 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948\n\t\t -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 0.56724757 -0.21784088 0.79418319\n\t\t 0.44035169 -0.41779819 0.79467154 0.44029066 -0.41785923 0.79467154 0.44029066 -0.41785923\n\t\t 0.79467154 0.44035169 -0.41779819 0.79467154 0.24747477 -0.55619973 0.79329818 0.44029066\n\t\t -0.41785923 0.79467154 0.56721705 -0.2178714 0.79418319 0.56724757 -0.21784088 0.79418319\n\t\t 0.55452126 0.24689499 0.79467148 0.6057924 0.01590039 0.79543442 0.60582292 0.015869873\n\t\t 0.79543442 0.60582292 0.015869873 0.79543442 0.6057924 0.01590039 0.79543442 0.56724757\n\t\t -0.21784088 0.79418319 0.56724757 -0.21784088 0.79418319 0.56721705 -0.2178714 0.79418319\n\t\t 0.60582292 0.015869873 0.79543442 0.60582292 0.015869873 0.79543442 0.55449075 0.24686447\n\t\t 0.79470199 0.55452126 0.24689499 0.79467148 0.24747477 -0.55619973 0.79329818 0.24744426\n\t\t -0.55623025 0.79329818 0.44029066 -0.41785923 0.79467154 0.41691321 0.4394362 0.79564798\n\t\t 0.41691321 0.43940568 0.79564798 0.55452126 0.24689499 0.79467148 0.55452126 0.24689499\n\t\t 0.79467148 0.55449075 0.24686447 0.79470199 0.41691321 0.4394362 0.79564798 0.21741368\n\t\t 0.56688142 0.79454935 0.41691321 0.43940568 0.79564798 0.41691321 0.4394362 0.79564798\n\t\t 0.41691321 0.4394362 0.79564798 0.21741368 0.56688142 0.79457986 0.21741368 0.56688142\n\t\t 0.79454935 0.21741368 0.56688142 0.79454935 0.21741368 0.56688142 0.79457986 -0.015991887\n\t\t 0.60615867 0.7951597 -0.015991887 0.60615867 0.7951597 -0.015900331 0.60615867 0.7951597\n\t\t 0.21741368 0.56688142 0.79454935 -0.24744426 0.55543685 0.79384738 -0.015900331 0.60615867\n\t\t 0.7951597 -0.015991887 0.60615867 0.7951597 -0.015991887 0.60615867 0.7951597 -0.24753581\n\t\t 0.5555284 0.79375583 -0.24744426 0.55543685 0.79384738 -0.44080946 0.41807297 0.79427469\n\t\t -0.24744426 0.55543685 0.79384738 -0.24753581 0.5555284 0.79375583 -0.24753581 0.5555284\n\t\t 0.79375583 -0.44090101 0.41810349 0.79418314 -0.44080946 0.41807297 0.79427469 -0.56886506\n\t\t 0.21814619 0.79293191 -0.44080946 0.41807297 0.79427469 -0.44090101 0.41810349 0.79418314\n\t\t -0.44090101 0.41810349 0.79418314 -0.56886506 0.21811567 0.79293191 -0.56886506 0.21814619\n\t\t 0.79293191 -0.56886506 0.21814619 0.79293191 -0.56886506 0.21811567 0.79293191 -0.60826439\n\t\t -0.016022345 0.79354227 -0.60826439 -0.016022345 0.79354227 -0.6082949 -0.01596131\n\t\t 0.79351175 -0.56886506 0.21814619 0.79293191 -0.55717635 -0.24817663 0.79241312 -0.6082949\n\t\t -0.01596131 0.79351175 -0.60826439 -0.016022345 0.79354227 -0.60826439 -0.016022345\n\t\t 0.79354227 -0.55720687 -0.24817663 0.7923826 -0.55717635 -0.24817663 0.79241312 -0.55717635\n\t\t -0.24817663 0.79241312 -0.55720687 -0.24817663 0.7923826 -0.4190495 -0.44160289 0.79329818\n\t\t -0.4190495 -0.44160289 0.79329818 -0.4190495 -0.44166392 0.79326767 -0.55717635 -0.24817663\n\t\t 0.79241312 -0.21857339 -0.56923121 0.79256576 -0.4190495 -0.44166392 0.79326767 -0.4190495\n\t\t -0.44160289 0.79329818 -0.4190495 -0.44160289 0.79329818 -0.21857339 -0.56926173\n\t\t 0.79253525 -0.21857339 -0.56923121 0.79256576;\n\tsetAttr \".n[22410:22575]\" -type \"float3\"  -0.21857339 -0.56923121 0.79256576 -0.21857339\n\t\t -0.56926173 0.79253525 0.015900331 -0.60792863 0.79381698 0.015900331 -0.60792863\n\t\t 0.79381698 0.015961369 -0.60792863 0.79378647 -0.21857339 -0.56923121 0.79256576\n\t\t 0.24747477 -0.55619973 0.79329818 0.015961369 -0.60792863 0.79378647 0.015900331\n\t\t -0.60792863 0.79381698 0.015900331 -0.60792863 0.79381698 0.24744426 -0.55623025\n\t\t 0.79329818 0.24747477 -0.55619973 0.79329818 -0.38267189 0.9238562 -6.8751028e-08\n\t\t -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08\n\t\t -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.38267189\n\t\t 0.9238562 -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.70708358 0.70708311\n\t\t -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08\n\t\t -0.38267189 0.9238562 -6.8751028e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.70708358\n\t\t 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311\n\t\t -5.2619338e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08\n\t\t -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16\n\t\t -0.92385644 0.3826713 -2.8477444e-08 -0.9238562 -0.38264138 2.8475172e-08 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16\n\t\t -0.9238562 -0.38264138 2.8475172e-08 -0.9238562 -0.38264138 2.8475172e-08 -0.9238562\n\t\t -0.38264138 2.8475172e-08 -0.9238562 -0.38264138 2.8475172e-08 -0.70708311 -0.70708358\n\t\t 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08\n\t\t -0.9238562 -0.38264138 2.8475172e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.70708311\n\t\t -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311 -0.70708358\n\t\t 5.2619338e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08\n\t\t -0.3826713 -0.92385644 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 3.0920822e-07\n\t\t -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 3.0919878e-07 -0.99996948 7.4415176e-08\n\t\t -0.3826713 -0.92385644 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 3.0919878e-07\n\t\t -0.99996948 7.4415176e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08\n\t\t 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 0.38267189\n\t\t -0.9238562 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 0.70708358 -0.70708311\n\t\t 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70711362 5.2621612e-08\n\t\t 0.38267189 -0.9238562 6.8751028e-08 0.92385644 -0.3826713 2.8477444e-08 0.70708358\n\t\t -0.70711362 5.2621612e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311\n\t\t 5.2619338e-08 0.92385644 -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08\n\t\t 0.92385644 -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 1 3.0920822e-07\n\t\t 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 0.92385644\n\t\t -0.3826713 2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 1 3.0920822e-07 1.2246572e-16\n\t\t 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 0.9238562 0.38267189\n\t\t -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08\n\t\t 0.9238562 0.38267189 -2.8477444e-08 0.70708311 0.7071141 -5.2621612e-08 0.70708311\n\t\t 0.7071141 -5.2621612e-08 0.70708311 0.70708358 -5.2619338e-08 0.9238562 0.38267189\n\t\t -2.8477444e-08 0.3826713 0.92385644 -6.8751028e-08 0.70708311 0.70708358 -5.2619338e-08\n\t\t 0.70708311 0.7071141 -5.2621612e-08 0.70708311 0.7071141 -5.2621612e-08 0.3826713\n\t\t 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08\n\t\t 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 0.3826713\n\t\t 0.92385644 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08\n\t\t -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08\n\t\t 0.99996948 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1\n\t\t -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08\n\t\t 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14\n\t\t 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08\n\t\t 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132244e-14 7.4415176e-08\n\t\t 0.99996948 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1\n\t\t -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08\n\t\t 0.99996948 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132244e-14 7.4415176e-08 0.99996948\n\t\t -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1;\n\tsetAttr \".n[22576:22741]\" -type \"float3\"  -2.3132951e-14 7.441745e-08 1 -2.3132244e-14\n\t\t 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132244e-14 7.4415176e-08 0.99996948\n\t\t -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14\n\t\t 7.4415176e-08 0.99996948 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08\n\t\t 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948\n\t\t -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -0.38267189 0.9238562 3.0449759e-05\n\t\t -3.0919878e-07 0.99996948 -7.4415176e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07\n\t\t 1 -7.441745e-08 -0.38267189 0.9238562 6.0968268e-05 -0.38267189 0.9238562 3.0449759e-05\n\t\t -0.38267189 0.9238562 3.0449759e-05 -0.38267189 0.9238562 6.0968268e-05 -0.70708358\n\t\t 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70711362\n\t\t -5.2621612e-08 -0.38267189 0.9238562 3.0449759e-05 -0.92385644 0.3826713 -2.8477444e-08\n\t\t -0.70708358 0.70711362 -5.2621612e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358\n\t\t 0.70708311 -5.2619338e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713\n\t\t -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08\n\t\t -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -0.92385644 0.3826713 -2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08\n\t\t -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -0.9238562 -0.38267189 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08\n\t\t -0.9238562 -0.38267189 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08 -0.70708311\n\t\t -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311 -0.70708358\n\t\t 5.2619338e-08 -0.9238562 -0.38267189 2.8477444e-08 -0.3826713 -0.92385644 6.8751028e-08\n\t\t -0.70708311 -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311\n\t\t -0.70708358 5.2619338e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.3826713 -0.92385644\n\t\t 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08\n\t\t 3.0919878e-07 -0.99996948 7.4415176e-08 3.0919878e-07 -0.99996948 7.4415176e-08 3.0920822e-07\n\t\t -1 7.441745e-08 -0.3826713 -0.92385644 6.8751028e-08 0.38264138 -0.9238562 6.8751028e-08\n\t\t 3.0920822e-07 -1 7.441745e-08 3.0919878e-07 -0.99996948 7.4415176e-08 3.0919878e-07\n\t\t -0.99996948 7.4415176e-08 0.38264138 -0.92388672 6.8753302e-08 0.38264138 -0.9238562\n\t\t 6.8751028e-08 0.38264138 -0.9238562 6.8751028e-08 0.38264138 -0.92388672 6.8753302e-08\n\t\t 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358\n\t\t -0.70708311 5.2619338e-08 0.38264138 -0.9238562 6.8751028e-08 0.92385644 -0.38264078\n\t\t 2.8475172e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08\n\t\t 0.70708358 -0.70708311 5.2619338e-08 0.92385644 -0.38264078 2.8475172e-08 0.92385644\n\t\t -0.38264078 2.8475172e-08 0.92385644 -0.38264078 2.8475172e-08 0.92385644 -0.38264078\n\t\t 2.8475172e-08 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07\n\t\t 1.2246572e-16 0.92385644 -0.38264078 2.8475172e-08 0.9238562 0.38267189 -2.8477444e-08\n\t\t 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16\n\t\t 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 0.9238562\n\t\t 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 0.70708311 0.70708358\n\t\t -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08\n\t\t 0.9238562 0.38267189 -2.8477444e-08 0.3826713 0.92385644 6.0968268e-05 0.70708311\n\t\t 0.70708358 -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.70708358\n\t\t -5.2619338e-08 0.3826713 0.92385644 6.0968268e-05 0.3826713 0.92385644 6.0968268e-05\n\t\t -3.0919878e-07 0.99996948 -7.4415176e-08 0.3826713 0.92385644 6.0968268e-05 0.3826713\n\t\t 0.92385644 6.0968268e-05 0.3826713 0.92385644 6.0968268e-05 -3.0920822e-07 1 -7.441745e-08\n\t\t -3.0919878e-07 0.99996948 -7.4415176e-08 -0.38267189 0.9238562 -6.8751028e-08 -3.0920822e-07\n\t\t 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -0.38267189\n\t\t 0.9238562 -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562\n\t\t -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.70708358 0.70708311 -5.2619338e-08\n\t\t -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.38267189\n\t\t 0.9238562 -6.8751028e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.70708358 0.70708311\n\t\t -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08\n\t\t -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.92385644\n\t\t 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16\n\t\t -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -0.92385644 0.3826713\n\t\t -2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16\n\t\t -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -0.9238562 -0.38267189\n\t\t 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08\n\t\t -0.9238562 -0.38267189 2.8477444e-08;\n\tsetAttr \".n[22742:22907]\" -type \"float3\"  -0.70708311 -0.70708358 5.2619338e-08\n\t\t -0.70708311 -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.9238562\n\t\t -0.38267189 2.8477444e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.70708311 -0.70708358\n\t\t 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08\n\t\t -0.3826713 -0.92385644 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.3826713\n\t\t -0.92385644 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 3.0920822e-07 -1 7.441745e-08\n\t\t 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 -0.3826713 -0.92385644\n\t\t 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07\n\t\t -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 0.38267189 -0.9238562 6.8751028e-08\n\t\t 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 0.38267189\n\t\t -0.9238562 6.8751028e-08 0.70708358 -0.70711362 5.2621612e-08 0.70708358 -0.70711362\n\t\t 5.2621612e-08 0.7071141 -0.70708311 5.2619338e-08 0.38267189 -0.9238562 6.8751028e-08\n\t\t 0.92385644 -0.3826713 2.8477444e-08 0.7071141 -0.70708311 5.2619338e-08 0.70708358\n\t\t -0.70711362 5.2621612e-08 0.70708358 -0.70711362 5.2621612e-08 0.92385644 -0.3826713\n\t\t 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08\n\t\t 0.92385644 -0.3826713 2.8477444e-08 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07\n\t\t 1.2246572e-16 0.99996948 3.0919878e-07 1.2246199e-16 0.92385644 -0.3826713 2.8477444e-08\n\t\t 0.9238562 0.38267189 -2.8477444e-08 0.99996948 3.0919878e-07 1.2246199e-16 1 3.0920822e-07\n\t\t 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 0.9238562 0.38267189 -2.8477444e-08 0.9238562\n\t\t 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189\n\t\t -2.8477444e-08 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08\n\t\t 0.70708311 0.70708358 -5.2619338e-08 0.9238562 0.38267189 -2.8477444e-08 0.3826713\n\t\t 0.92385644 -6.8751028e-08 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.70708358\n\t\t -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08 0.3826713 0.92385644 -6.8751028e-08\n\t\t 0.3826713 0.92385644 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08 0.3826713 0.92385644\n\t\t -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08\n\t\t -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -0.38267189 0.9238562\n\t\t -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07\n\t\t 1 -7.441745e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08\n\t\t -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.70708358\n\t\t 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311\n\t\t -5.2619338e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.92385644 0.3826713 -2.8477444e-08\n\t\t -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358\n\t\t 0.70708311 -5.2619338e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713\n\t\t -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08\n\t\t -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -0.92385644 0.3826713 -2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08\n\t\t -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -0.9238562 -0.38264138 2.8475172e-08 -0.9238562 -0.38267189 2.8477444e-08\n\t\t -0.9238562 -0.38267189 2.8477444e-08 -0.9238562 -0.38264138 2.8475172e-08 -0.70708311\n\t\t -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311 -0.70708358\n\t\t 5.2619338e-08 -0.9238562 -0.38267189 2.8477444e-08 -0.38264078 -0.92385644 6.8751028e-08\n\t\t -0.70708311 -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311\n\t\t -0.70708358 5.2619338e-08 -0.38264078 -0.92385644 6.8751028e-08 -0.38264078 -0.92385644\n\t\t 6.8751028e-08 -0.38264078 -0.92385644 6.8751028e-08 -0.38264078 -0.92385644 6.8751028e-08\n\t\t 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08\n\t\t -0.38264078 -0.92385644 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 3.0920822e-07\n\t\t -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 0.38267189\n\t\t -0.9238562 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562\n\t\t 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 0.70708358 -0.70711362 5.2621612e-08\n\t\t 0.70708358 -0.70711362 5.2621612e-08 0.70708358 -0.70708311 5.2619338e-08 0.38267189\n\t\t -0.9238562 6.8751028e-08 0.92385644 -0.3826713 2.8477444e-08 0.70708358 -0.70708311\n\t\t 5.2619338e-08 0.70708358 -0.70711362 5.2621612e-08 0.70708358 -0.70711362 5.2621612e-08\n\t\t 0.92385644 -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 0.92385644\n\t\t -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 1 3.0920822e-07 1.2246572e-16\n\t\t 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 0.92385644 -0.3826713\n\t\t 2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 1 3.0920822e-07 1.2246572e-16 1\n\t\t 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 0.9238562 0.38267189 -2.8477444e-08\n\t\t 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 0.9238562\n\t\t 0.38267189 -2.8477444e-08 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.70708358\n\t\t -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08 0.9238562 0.38267189 -2.8477444e-08\n\t\t 0.3826713 0.92385644 -6.8751028e-08 0.70708311 0.70708358 -5.2619338e-08 0.70708311\n\t\t 0.70708358 -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08 0.3826713 0.92385644\n\t\t -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08\n\t\t 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 0.3826713\n\t\t 0.92385644 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08\n\t\t -0.38267189 0.9238562 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07\n\t\t 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -0.38267189 0.9238562 -6.8751028e-08\n\t\t -0.38267189 0.9238562 -6.8751028e-08;\n\tsetAttr \".n[22908:23073]\" -type \"float3\"  -0.38267189 0.9238562 -6.8751028e-08\n\t\t -0.38267189 0.9238562 -6.8751028e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358\n\t\t 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.38267189 0.9238562\n\t\t -6.8751028e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.70708358 0.70708311 -5.2619338e-08\n\t\t -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.92385644\n\t\t 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713\n\t\t -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16\n\t\t -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -0.92385644 0.3826713\n\t\t -2.8477444e-08 -0.92388672 -0.38264138 2.8475172e-08 -1 -3.0920822e-07 -1.2246572e-16\n\t\t -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -0.92388672 -0.38264138\n\t\t 2.8475172e-08 -0.92388672 -0.38264138 2.8475172e-08 -0.92388672 -0.38264138 2.8475172e-08\n\t\t -0.92388672 -0.38264138 2.8475172e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311\n\t\t -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.92388672 -0.38264138\n\t\t 2.8475172e-08 -0.38264078 -0.92385644 6.8751028e-08 -0.70708311 -0.70708358 5.2619338e-08\n\t\t -0.70708311 -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.38264078\n\t\t -0.92385644 6.8751028e-08 -0.38264078 -0.92385644 6.8751028e-08 -0.38264078 -0.92385644\n\t\t 6.8751028e-08 -0.38264078 -0.92385644 6.8751028e-08 3.0919878e-07 -0.99996948 -0.00021355515\n\t\t 3.0919878e-07 -0.99996948 -0.00021355515 3.0919878e-07 -0.99996948 -0.00024407366\n\t\t -0.38264078 -0.92385644 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 3.0919878e-07\n\t\t -0.99996948 -0.00024407366 3.0919878e-07 -0.99996948 -0.00021355515 3.0919878e-07\n\t\t -0.99996948 -0.00021355515 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562\n\t\t 6.8751028e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08\n\t\t 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 0.38267189\n\t\t -0.9238562 6.8751028e-08 0.70708358 -0.70708311 5.2619338e-08 0.92385644 -0.3826713\n\t\t 2.8477444e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08\n\t\t 0.70708358 -0.70708311 5.2619338e-08 0.92385644 -0.3826713 2.8477444e-08 0.92385644\n\t\t -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 0.92385644 -0.3826713\n\t\t 2.8477444e-08 1 -3.0209301e-05 2.2712322e-12 1 -3.0209301e-05 2.2712322e-12 1 3.0920822e-07\n\t\t 1.2246572e-16 0.92385644 -0.3826713 2.8477444e-08 0.92388672 0.38264138 -0.00021365804\n\t\t 1 3.0920822e-07 1.2246572e-16 1 -3.0209301e-05 2.2712322e-12 1 -3.0209301e-05 2.2712322e-12\n\t\t 0.9238562 0.38267189 -0.00021365804 0.92388672 0.38264138 -0.00021365804 0.92388672\n\t\t 0.38264138 -0.00021365804 0.9238562 0.38267189 -0.00021365804 0.70708311 0.70708358\n\t\t -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.7071141 -5.2621612e-08\n\t\t 0.92388672 0.38264138 -0.00021365804 0.3826713 0.92385644 -6.8751028e-08 0.70708311\n\t\t 0.7071141 -5.2621612e-08 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.70708358\n\t\t -5.2619338e-08 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08\n\t\t -3.0920822e-07 1 -7.441745e-08 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644\n\t\t -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08\n\t\t -3.0920822e-07 1 -7.441745e-08 -1.5539207e-07 0.50254834 0.8645283 -1.5539207e-07\n\t\t 0.50254834 0.8645283 -0.19275506 0.4654378 0.86379582 -0.19275506 0.4654378 0.86379582\n\t\t -0.19275506 0.4654378 0.86379582 -1.5539207e-07 0.50254834 0.8645283 -0.19275506\n\t\t 0.4654378 0.86379582 -0.19275506 0.4654378 0.86379582 -0.35535765 0.35535747 0.86452836\n\t\t -0.35535765 0.35535747 0.86452836 -0.35535765 0.35532695 0.86452836 -0.19275506 0.4654378\n\t\t 0.86379582 -0.35535765 0.35532695 0.86452836 -0.35535765 0.35535747 0.86452836 -0.46540734\n\t\t 0.19278534 0.86379588 -0.46540734 0.19278534 0.86379588 -0.46543786 0.19278534 0.86379588\n\t\t -0.35535765 0.35532695 0.86452836 -0.46543786 0.19278534 0.86379588 -0.46540734 0.19278534\n\t\t 0.86379588 -0.50257879 -9.1067768e-08 0.86449784 -0.50257879 -9.1067768e-08 0.86449784\n\t\t -0.50257879 -9.1067768e-08 0.86449784 -0.46543786 0.19278534 0.86379588 -0.50257879\n\t\t -9.1067768e-08 0.86449784 -0.50257879 -9.1067768e-08 0.86449784 -0.46543774 -0.19278552\n\t\t 0.86379588 -0.46543774 -0.19278552 0.86379588 -0.46543774 -0.19278552 0.86379588\n\t\t -0.50257879 -9.1067768e-08 0.86449784 -0.46543774 -0.19278552 0.86379588 -0.46543774\n\t\t -0.19278552 0.86379588 -0.35538793 -0.3553881 0.86449784 -0.35538793 -0.3553881 0.86449784\n\t\t -0.35538793 -0.3553881 0.86449784 -0.46543774 -0.19278552 0.86379588 -0.35538793\n\t\t -0.3553881 0.86449784 -0.35538793 -0.3553881 0.86449784 -0.19275476 -0.46537676 0.86382645\n\t\t -0.19275476 -0.46537676 0.86382645 -0.19272424 -0.46537676 0.86385697 -0.35538793\n\t\t -0.3553881 0.86449784 -0.19272424 -0.46537676 0.86385697 -0.19275476 -0.46537676\n\t\t 0.86382645 1.5538261e-07 -0.5025177 0.86455894 1.5538261e-07 -0.5025177 0.86455894\n\t\t 1.5538261e-07 -0.5025177 0.86455894 -0.19272424 -0.46537676 0.86385697 1.5538261e-07\n\t\t -0.5025177 0.86455894 1.5538261e-07 -0.5025177 0.86455894 0.19275506 -0.46537665\n\t\t 0.86385697 0.19275506 -0.46537665 0.86385697 0.19275506 -0.46537665 0.86382645 1.5538261e-07\n\t\t -0.5025177 0.86455894 0.19275506 -0.46537665 0.86382645 0.19275506 -0.46537665 0.86385697\n\t\t 0.35538816 -0.35538787 0.86449784 0.35538816 -0.35538787 0.86449784 0.35538816 -0.35541838\n\t\t 0.86449784 0.19275506 -0.46537665 0.86382645 0.35538816 -0.35541838 0.86449784 0.35538816\n\t\t -0.35538787 0.86449784 0.46543786 -0.19278522 0.86379588 0.46543786 -0.19278522 0.86379588\n\t\t 0.46543786 -0.19278522 0.86379588 0.35538816 -0.35541838 0.86449784 0.46543786 -0.19278522\n\t\t 0.86379588 0.46543786 -0.19278522 0.86379588 0.50257879 2.1973523e-07 0.86449784\n\t\t 0.50257879 2.1973523e-07 0.86449784 0.50257879 2.1973523e-07 0.86449784 0.46543786\n\t\t -0.19278522 0.86379588 0.50257879 2.1973523e-07 0.86449784 0.50257879 2.1973523e-07\n\t\t 0.86449784 0.46543774 0.19278564 0.86379588 0.46543774 0.19278564 0.86379588;\n\tsetAttr \".n[23074:23239]\" -type \"float3\"  0.46543774 0.19278564 0.86379588 0.50257879\n\t\t 2.1973523e-07 0.86449784 0.46543774 0.19278564 0.86379588 0.46543774 0.19278564 0.86379588\n\t\t 0.35535741 0.35535771 0.86452836 0.35535741 0.35535771 0.86452836 0.35535741 0.35535771\n\t\t 0.86452836 0.46543774 0.19278564 0.86379588 0.35535741 0.35535771 0.86452836 0.35535741\n\t\t 0.35535771 0.86452836 0.19278528 0.4654074 0.86379582 0.19278528 0.4654074 0.86379582\n\t\t 0.19278528 0.46543792 0.86379582 0.35535741 0.35535771 0.86452836 0.19278528 0.46543792\n\t\t 0.86379582 0.19278528 0.4654074 0.86379582 -1.5539207e-07 0.50254834 0.8645283 -1.5539207e-07\n\t\t 0.50254834 0.8645283 -1.5539207e-07 0.50254834 0.8645283 0.19278528 0.46543792 0.86379582\n\t\t -0.35535765 0.35532683 -0.86452836 -0.35535765 0.35535735 -0.86452836 -0.19275506\n\t\t 0.46537665 -0.86385697 -0.19275506 0.46537665 -0.86385697 -0.19275506 0.46537665\n\t\t -0.86385697 -0.35535765 0.35532683 -0.86452836 -0.19275506 0.46537665 -0.86385697\n\t\t -0.19275506 0.46537665 -0.86385697 -1.5539204e-07 0.50254822 -0.86452842 -1.5539204e-07\n\t\t 0.50254822 -0.86452842 -1.5539204e-07 0.50254822 -0.86452842 -0.19275506 0.46537665\n\t\t -0.86385697 -1.5539204e-07 0.50254822 -0.86452842 -1.5539204e-07 0.50254822 -0.86452842\n\t\t 0.19275476 0.46537676 -0.86385697 0.19275476 0.46537676 -0.86385697 0.19275476 0.46537676\n\t\t -0.86385697 -1.5539204e-07 0.50254822 -0.86452842 0.19275476 0.46537676 -0.86385697\n\t\t 0.19275476 0.46537676 -0.86385697 0.35532689 0.35532707 -0.86452836 0.35532689 0.35532707\n\t\t -0.86452836 0.35532689 0.35532707 -0.86452836 0.19275476 0.46537676 -0.86385697 0.35532689\n\t\t 0.35532707 -0.86452836 0.35532689 0.35532707 -0.86452836 0.4653767 0.192755 -0.86385691\n\t\t 0.4653767 0.192755 -0.86385691 0.4653767 0.192755 -0.86385691 0.35532689 0.35532707\n\t\t -0.86452836 0.4653767 0.192755 -0.86385691 0.4653767 0.192755 -0.86385691 0.50251776\n\t\t 9.1044356e-08 -0.86455888 0.50251776 9.1044356e-08 -0.86455888 0.50251776 9.1044356e-08\n\t\t -0.86455888 0.4653767 0.192755 -0.86385691 0.50251776 9.1044356e-08 -0.86455888 0.50251776\n\t\t 9.1044356e-08 -0.86455888 0.46534628 -0.19275482 -0.86385691 0.46534628 -0.19275482\n\t\t -0.86385691 0.46537682 -0.1927243 -0.86385691 0.50251776 9.1044356e-08 -0.86455888\n\t\t 0.46537682 -0.1927243 -0.86385691 0.46534628 -0.19275482 -0.86385691 0.35532713 -0.35532695\n\t\t -0.86452836 0.35532713 -0.35532695 -0.86452836 0.35532713 -0.35532695 -0.86452836\n\t\t 0.46537682 -0.1927243 -0.86385691 0.35532713 -0.35532695 -0.86452836 0.35532713 -0.35532695\n\t\t -0.86452836 0.19275506 -0.46537676 -0.86385685 0.19275506 -0.46537676 -0.86385685\n\t\t 0.19275506 -0.46537676 -0.86385685 0.35532713 -0.35532695 -0.86452836 0.19275506\n\t\t -0.46537676 -0.86385685 0.19275506 -0.46537676 -0.86385685 1.5538264e-07 -0.50251782\n\t\t -0.86455882 1.5538264e-07 -0.50251782 -0.86455882 1.5538264e-07 -0.50251782 -0.86455882\n\t\t 0.19275506 -0.46537676 -0.86385685 1.5538264e-07 -0.50251782 -0.86455882 1.5538264e-07\n\t\t -0.50251782 -0.86455882 -0.19275476 -0.46537688 -0.86385685 -0.19275476 -0.46537688\n\t\t -0.86385685 -0.19275476 -0.46537688 -0.86385685 1.5538264e-07 -0.50251782 -0.86455882\n\t\t -0.19275476 -0.46537688 -0.86385685 -0.19275476 -0.46537688 -0.86385685 -0.35535741\n\t\t -0.35535771 -0.86452836 -0.35535741 -0.35535771 -0.86452836 -0.35535741 -0.35535771\n\t\t -0.86452836 -0.19275476 -0.46537688 -0.86385685 -0.35535741 -0.35535771 -0.86452836\n\t\t -0.35535741 -0.35535771 -0.86452836 -0.4653767 -0.19275512 -0.86385691 -0.4653767\n\t\t -0.19275512 -0.86385691 -0.4653767 -0.19275512 -0.86385691 -0.35535741 -0.35535771\n\t\t -0.86452836 -0.4653767 -0.19275512 -0.86385691 -0.4653767 -0.19275512 -0.86385691\n\t\t -0.50251776 -2.1972089e-07 -0.86455888 -0.50251776 -2.1972089e-07 -0.86455888 -0.50251776\n\t\t -2.1972089e-07 -0.86455888 -0.4653767 -0.19275512 -0.86385691 -0.50251776 -2.1972089e-07\n\t\t -0.86455888 -0.50251776 -2.1972089e-07 -0.86455888 -0.46537682 0.1927547 -0.86385691\n\t\t -0.46537682 0.1927547 -0.86385691 -0.46537682 0.1927547 -0.86385691 -0.50251776 -2.1972089e-07\n\t\t -0.86455888 -0.46537682 0.1927547 -0.86385691 -0.46537682 0.1927547 -0.86385691 -0.35535765\n\t\t 0.35535735 -0.86452836 -0.35535765 0.35535735 -0.86452836 -0.35535765 0.35532683\n\t\t -0.86452836 -0.46537682 0.1927547 -0.86385691 -1.5336322e-07 0.49598688 0.8683126\n\t\t -1.5336322e-07 0.49598688 0.8683126 -0.19025254 0.45933408 0.86761063 -0.19025254\n\t\t 0.45933408 0.86761063 -0.19025254 0.45933408 0.86761063 -1.5336322e-07 0.49598688\n\t\t 0.8683126 -0.19025254 0.45933408 0.86761063 -0.19025254 0.45933408 0.86761063 -0.35071883\n\t\t 0.35071865 0.86831266 -0.35071883 0.35071865 0.86831266 -0.35071883 0.35071865 0.86831266\n\t\t -0.19025254 0.45933408 0.86761063 -0.35071883 0.35071865 0.86831266 -0.35071883 0.35071865\n\t\t 0.86831266 -0.45930362 0.19022179 0.86764121 -0.45930362 0.19022179 0.86764121 -0.45930362\n\t\t 0.19022179 0.86764121 -0.35071883 0.35071865 0.86831266 -0.45930362 0.19022179 0.86764121\n\t\t -0.45930362 0.19022179 0.86764121 -0.49598682 -8.8745587e-08 0.86831266 -0.49598682\n\t\t -8.8745587e-08 0.86831266 -0.49598682 -8.8745587e-08 0.86831266 -0.45930362 0.19022179\n\t\t 0.86764121 -0.49598682 -8.8745587e-08 0.86831266 -0.49598682 -8.8745587e-08 0.86831266\n\t\t -0.4593035 -0.19022197 0.86764121 -0.4593035 -0.19022197 0.86764121 -0.4593035 -0.19022197\n\t\t 0.86764121 -0.49598682 -8.8745587e-08 0.86831266 -0.4593035 -0.19022197 0.86764121\n\t\t -0.4593035 -0.19022197 0.86764121 -0.35071859 -0.35071877 0.86831266 -0.35071859\n\t\t -0.35071877 0.86831266 -0.35071859 -0.35071877 0.86831266 -0.4593035 -0.19022197\n\t\t 0.86764121 -0.35071859 -0.35071877 0.86831266 -0.35071859 -0.35071877 0.86831266\n\t\t -0.19022173 -0.45930356 0.86764127 -0.19022173 -0.45930356 0.86764127 -0.19022173\n\t\t -0.45930356 0.86764127 -0.35071859 -0.35071877 0.86831266 -0.19022173 -0.45930356\n\t\t 0.86764127 -0.19022173 -0.45930356 0.86764127 1.5334432e-07 -0.49592572 0.86834323\n\t\t 1.5334432e-07 -0.49592572 0.86834323 1.5334432e-07 -0.49592572 0.86834323 -0.19022173\n\t\t -0.45930356 0.86764127 1.5334432e-07 -0.49592572 0.86834323 1.5334432e-07 -0.49592572\n\t\t 0.86834323;\n\tsetAttr \".n[23240:23405]\" -type \"float3\"  0.19022202 -0.45930344 0.86764127 0.19022202\n\t\t -0.45930344 0.86764127 0.19025254 -0.45930344 0.86764127 1.5334432e-07 -0.49592572\n\t\t 0.86834323 0.19025254 -0.45930344 0.86764127 0.19022202 -0.45930344 0.86764127 0.35071883\n\t\t -0.35071853 0.86831266 0.35071883 -0.35071853 0.86831266 0.35071883 -0.35071853 0.86831266\n\t\t 0.19025254 -0.45930344 0.86764127 0.35071883 -0.35071853 0.86831266 0.35071883 -0.35071853\n\t\t 0.86831266 0.45936465 -0.1902827 0.86761069 0.45936465 -0.1902827 0.86761069 0.45936465\n\t\t -0.1902827 0.86761069 0.35071883 -0.35071853 0.86831266 0.45936465 -0.1902827 0.86761069\n\t\t 0.45936465 -0.1902827 0.86761069 0.49598682 2.1798081e-07 0.86831266 0.49598682 2.1798081e-07\n\t\t 0.86831266 0.49598682 2.1798081e-07 0.86831266 0.45936465 -0.1902827 0.86761069 0.49598682\n\t\t 2.1798081e-07 0.86831266 0.49598682 2.1798081e-07 0.86831266 0.4593035 0.19022208\n\t\t 0.86764121 0.4593035 0.19022208 0.86764121 0.4593035 0.19022208 0.86764121 0.49598682\n\t\t 2.1798081e-07 0.86831266 0.4593035 0.19022208 0.86764121 0.4593035 0.19022208 0.86764121\n\t\t 0.35068807 0.35068837 0.86834317 0.35068807 0.35068837 0.86834317 0.35065755 0.35068837\n\t\t 0.86834317 0.4593035 0.19022208 0.86764121 0.35065755 0.35068837 0.86834317 0.35068807\n\t\t 0.35068837 0.86834317 0.19028276 0.45933419 0.86761063 0.19028276 0.45933419 0.86761063\n\t\t 0.19028276 0.45936471 0.86761063 0.35065755 0.35068837 0.86834317 0.19028276 0.45936471\n\t\t 0.86761063 0.19028276 0.45933419 0.86761063 -1.5336322e-07 0.49598688 0.8683126 -1.5336322e-07\n\t\t 0.49598688 0.8683126 -1.5336322e-07 0.49598688 0.8683126 0.19028276 0.45936471 0.86761063\n\t\t -0.35071883 0.35071853 -0.86831266 -0.35071883 0.35071853 -0.86831266 -0.19025254\n\t\t 0.45933396 -0.86761075 -0.19025254 0.45933396 -0.86761075 -0.19025254 0.45933396\n\t\t -0.86761075 -0.35071883 0.35071853 -0.86831266 -0.19025254 0.45933396 -0.86761075\n\t\t -0.19025254 0.45933396 -0.86761075 -1.5336319e-07 0.49598676 -0.86831272 -1.5336319e-07\n\t\t 0.49598676 -0.86831272 -1.5336319e-07 0.49598676 -0.86831272 -0.19025254 0.45933396\n\t\t -0.86761075 -1.5336319e-07 0.49598676 -0.86831272 -1.5336319e-07 0.49598676 -0.86831272\n\t\t 0.19025224 0.45936459 -0.86761075 0.19025224 0.45936459 -0.86761075 0.19025224 0.45936459\n\t\t -0.86761075 -1.5336319e-07 0.49598676 -0.86831272 0.19025224 0.45936459 -0.86761075\n\t\t 0.19025224 0.45936459 -0.86761075 0.35068807 0.35065773 -0.86834317 0.35068807 0.35065773\n\t\t -0.86834317 0.35068807 0.35068825 -0.86834317 0.19025224 0.45936459 -0.86761075 0.35068807\n\t\t 0.35068825 -0.86834317 0.35068807 0.35065773 -0.86834317 0.45933402 0.19025248 -0.86761069\n\t\t 0.45933402 0.19025248 -0.86761069 0.45933402 0.19025248 -0.86761069 0.35068807 0.35068825\n\t\t -0.86834317 0.45933402 0.19025248 -0.86761069 0.45933402 0.19025248 -0.86761069 0.49598682\n\t\t 8.8745587e-08 -0.86831266 0.49598682 8.8745587e-08 -0.86831266 0.49598682 8.8745587e-08\n\t\t -0.86831266 0.45933402 0.19025248 -0.86761069 0.49598682 8.8745587e-08 -0.86831266\n\t\t 0.49598682 8.8745587e-08 -0.86831266 0.45936465 -0.1902523 -0.86761069 0.45936465\n\t\t -0.1902523 -0.86761069 0.45936465 -0.1902523 -0.86761069 0.49598682 8.8745587e-08\n\t\t -0.86831266 0.45936465 -0.1902523 -0.86761069 0.45936465 -0.1902523 -0.86761069 0.35071883\n\t\t -0.35071865 -0.86831266 0.35071883 -0.35071865 -0.86831266 0.35071883 -0.35071865\n\t\t -0.86831266 0.45936465 -0.1902523 -0.86761069 0.35071883 -0.35071865 -0.86831266\n\t\t 0.35071883 -0.35071865 -0.86831266 0.19022202 -0.45930356 -0.86764115 0.19022202\n\t\t -0.45930356 -0.86764115 0.19022202 -0.45930356 -0.86764115 0.35071883 -0.35071865\n\t\t -0.86831266 0.19022202 -0.45930356 -0.86764115 0.19022202 -0.45930356 -0.86764115\n\t\t 1.5338209e-07 -0.49604791 -0.86828208 1.5338209e-07 -0.49604791 -0.86828208 1.5338209e-07\n\t\t -0.49604791 -0.86828208 0.19022202 -0.45930356 -0.86764115 1.5338209e-07 -0.49604791\n\t\t -0.86828208 1.5338209e-07 -0.49604791 -0.86828208 -0.19025224 -0.45930368 -0.86764115\n\t\t -0.19025224 -0.45930368 -0.86764115 -0.19025224 -0.45930368 -0.86764115 1.5338209e-07\n\t\t -0.49604791 -0.86828208 -0.19025224 -0.45930368 -0.86764115 -0.19025224 -0.45930368\n\t\t -0.86764115 -0.35071859 -0.35071889 -0.86831266 -0.35071859 -0.35071889 -0.86831266\n\t\t -0.35071859 -0.35071889 -0.86831266 -0.19025224 -0.45930368 -0.86764115 -0.35071859\n\t\t -0.35071889 -0.86831266 -0.35071859 -0.35071889 -0.86831266 -0.4593035 -0.19022208\n\t\t -0.86764121 -0.4593035 -0.19022208 -0.86764121 -0.4593035 -0.19022208 -0.86764121\n\t\t -0.35071859 -0.35071889 -0.86831266 -0.4593035 -0.19022208 -0.86764121 -0.4593035\n\t\t -0.19022208 -0.86764121 -0.49598682 -2.1798081e-07 -0.86831266 -0.49598682 -2.1798081e-07\n\t\t -0.86831266 -0.49598682 -2.1798081e-07 -0.86831266 -0.4593035 -0.19022208 -0.86764121\n\t\t -0.49598682 -2.1798081e-07 -0.86831266 -0.49598682 -2.1798081e-07 -0.86831266 -0.45930362\n\t\t 0.19022167 -0.86764121 -0.45930362 0.19022167 -0.86764121 -0.45930362 0.19025218\n\t\t -0.86764121 -0.49598682 -2.1798081e-07 -0.86831266 -0.45930362 0.19025218 -0.86764121\n\t\t -0.45930362 0.19022167 -0.86764121 -0.35071883 0.35071853 -0.86831266 -0.35071883\n\t\t 0.35071853 -0.86831266 -0.35071883 0.35071853 -0.86831266 -0.45930362 0.19025218\n\t\t -0.86764121 -0.31244874 0.75435644 0.57728809 -2.5221132e-07 0.81566828 0.57850879\n\t\t -2.5220189e-07 0.81563777 0.57850879 -2.5220189e-07 0.81563777 0.57850879 -0.31244874\n\t\t 0.75435644 0.57728809 -0.31244874 0.75435644 0.57728809 -0.31244874 0.75435644 0.57728809\n\t\t -0.31244874 0.75435644 0.57728809 -0.57673895 0.57673866 0.57853931 -0.57673895 0.57673866\n\t\t 0.57853931 -0.57673895 0.57673866 0.57853931 -0.31244874 0.75435644 0.57728809 -0.75432611\n\t\t 0.31244829 0.57731867 -0.57673895 0.57673866 0.57853931 -0.57673895 0.57673866 0.57853931\n\t\t -0.57673895 0.57673866 0.57853931 -0.75432611 0.31244829 0.57731867 -0.75432611 0.31244829\n\t\t 0.57731867 -0.75432611 0.31244829 0.57731867 -0.75432611 0.31244829 0.57731867 -0.81563771\n\t\t -2.0914845e-07 0.57853937 -0.81563771 -2.0914845e-07 0.57853937 -0.81563771 -2.0915073e-07\n\t\t 0.57850885 -0.75432611 0.31244829 0.57731867;\n\tsetAttr \".n[23406:23571]\" -type \"float3\"  -0.75432587 -0.31244871 0.57731867 -0.81563771\n\t\t -2.0915073e-07 0.57850885 -0.81563771 -2.0914845e-07 0.57853937 -0.81563771 -2.0914845e-07\n\t\t 0.57853937 -0.75432587 -0.31244871 0.57731867 -0.75432587 -0.31244871 0.57731867\n\t\t -0.75432587 -0.31244871 0.57731867 -0.75432587 -0.31244871 0.57731867 -0.5767386\n\t\t -0.57673889 0.57850891 -0.5767386 -0.57673889 0.57850891 -0.5767386 -0.57673889 0.57850891\n\t\t -0.75432587 -0.31244871 0.57731867 -0.31244826 -0.75435656 0.57731873 -0.5767386\n\t\t -0.57673889 0.57850891 -0.5767386 -0.57673889 0.57850891 -0.5767386 -0.57673889 0.57850891\n\t\t -0.31244826 -0.75435656 0.57731873 -0.31244826 -0.75435656 0.57731873 -0.31244826\n\t\t -0.75435656 0.57731873 -0.31244826 -0.75435656 0.57731873 2.5220189e-07 -0.81563765\n\t\t 0.57850891 2.5220189e-07 -0.81563765 0.57850891 2.5220189e-07 -0.81563765 0.57850891\n\t\t -0.31244826 -0.75435656 0.57731873 0.31244874 -0.75435632 0.57731873 2.5220189e-07\n\t\t -0.81563765 0.57850891 2.5220189e-07 -0.81563765 0.57850891 2.5220189e-07 -0.81563765\n\t\t 0.57850891 0.31244874 -0.75435632 0.57731873 0.31244874 -0.75435632 0.57731873 0.57673895\n\t\t -0.57673854 0.57853943 0.57673895 -0.57673854 0.57853943 0.31244874 -0.75435632 0.57731873\n\t\t 0.31244874 -0.75435632 0.57731873 0.31244874 -0.75435632 0.57731873 0.57673895 -0.57673854\n\t\t 0.57853943 0.75432611 -0.31244823 0.57731867 0.57673895 -0.57673854 0.57853943 0.57673895\n\t\t -0.57673854 0.57853943 0.57673895 -0.57673854 0.57853943 0.75432611 -0.31244823 0.57731867\n\t\t 0.75432611 -0.31244823 0.57731867 0.75432611 -0.31244823 0.57731867 0.75432611 -0.31244823\n\t\t 0.57731867 0.81563771 2.9525532e-07 0.57853937 0.81563771 2.9525532e-07 0.57853937\n\t\t 0.81563771 2.9525305e-07 0.57850885 0.75432611 -0.31244823 0.57731867 0.75432587\n\t\t 0.31244877 0.57731867 0.81563771 2.9525305e-07 0.57850885 0.81563771 2.9525532e-07\n\t\t 0.57853937 0.81563771 2.9525532e-07 0.57853937 0.75432587 0.31244877 0.57731867 0.75432587\n\t\t 0.31244877 0.57731867 0.75432587 0.31244877 0.57731867 0.75432587 0.31244877 0.57731867\n\t\t 0.5767386 0.57673901 0.57850879 0.5767386 0.57673901 0.57850879 0.5767386 0.57673901\n\t\t 0.57853931 0.75432587 0.31244877 0.57731867 0.31244826 0.75435668 0.57728809 0.5767386\n\t\t 0.57673901 0.57853931 0.5767386 0.57673901 0.57850879 0.5767386 0.57673901 0.57850879\n\t\t 0.31244826 0.75435668 0.57728809 0.31244826 0.75435668 0.57728809 -2.5221132e-07\n\t\t 0.81566828 0.57850879 0.31244826 0.75435668 0.57728809 0.31244826 0.75435668 0.57728809\n\t\t 0.31244826 0.75435668 0.57728809 -2.5220189e-07 0.81563777 0.57850879 -2.5221132e-07\n\t\t 0.81566828 0.57850879 -3.0920822e-07 1 -7.441745e-08 -0.38267189 0.9238562 -6.8751028e-08\n\t\t -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -3.0920822e-07\n\t\t 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -0.38267189 0.9238562 -6.8751028e-08\n\t\t -0.38267189 0.9238562 -6.8751028e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358\n\t\t 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.38267189 0.9238562\n\t\t -6.8751028e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.70708358 0.70708311 -5.2619338e-08\n\t\t -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.92385644\n\t\t 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713\n\t\t -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16\n\t\t -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -0.92385644 0.3826713\n\t\t -2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16\n\t\t -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -0.9238562 -0.38267189\n\t\t 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08\n\t\t -0.9238562 -0.38267189 2.8477444e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311\n\t\t -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.9238562 -0.38267189\n\t\t 2.8477444e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.70708311 -0.70708358 5.2619338e-08\n\t\t -0.70708311 -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.3826713\n\t\t -0.92385644 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.3826713 -0.92385644\n\t\t 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 3.0920822e-07 -1 7.441745e-08\n\t\t 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 -0.3826713 -0.92385644\n\t\t 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07\n\t\t -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 0.38267189 -0.9238562 6.8751028e-08\n\t\t 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 0.38267189\n\t\t -0.9238562 6.8751028e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311\n\t\t 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.38267189 -0.9238562 6.8751028e-08\n\t\t 0.92385644 -0.3826713 2.8477444e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358\n\t\t -0.70708311 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.92385644 -0.3826713\n\t\t 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08\n\t\t 0.92385644 -0.3826713 2.8477444e-08 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07\n\t\t 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 0.92385644 -0.3826713 2.8477444e-08 0.9238562\n\t\t 0.38267189 -2.8477444e-08 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16\n\t\t 1 3.0920822e-07 1.2246572e-16 0.9238562 0.38264138 -2.8475172e-08 0.9238562 0.38267189\n\t\t -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38264138 -2.8475172e-08\n\t\t 0.70711362 0.70708358 -5.2619338e-08 0.70711362 0.70708358 -5.2619338e-08 0.70708311\n\t\t 0.70708358 -5.2619338e-08 0.9238562 0.38267189 -2.8477444e-08 0.3826713 0.92385644\n\t\t -6.8751028e-08 0.70708311 0.70708358 -5.2619338e-08 0.70711362 0.70708358 -5.2619338e-08\n\t\t 0.70711362 0.70708358 -5.2619338e-08 0.3826713 0.92385644 -6.8751028e-08 0.3826713\n\t\t 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644\n\t\t -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08;\n\tsetAttr \".n[23572:23737]\" -type \"float3\"  -3.0920822e-07 1 -7.441745e-08 0.3826713\n\t\t 0.92385644 -6.8751028e-08 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08\n\t\t 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948\n\t\t -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14\n\t\t 7.4415176e-08 0.99996948 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14\n\t\t 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14\n\t\t 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08\n\t\t 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -3.0920822e-07 1 -7.441745e-08 -0.38267189 0.9238562 -6.8751028e-08\n\t\t -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -3.0920822e-07\n\t\t 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -0.70708358 0.70708311 -5.2619338e-08\n\t\t -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.38267189\n\t\t 0.9238562 -6.8751028e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311\n\t\t -5.2619338e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.70708358 0.70708311 -5.2619338e-08\n\t\t -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.92385644\n\t\t 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16\n\t\t -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.92385644\n\t\t 0.3826713 -2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16\n\t\t -0.9238562 -0.38267189 2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -0.9238562 -0.38267189 2.8477444e-08\n\t\t -0.9238562 -0.38267189 2.8477444e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.9238562\n\t\t -0.38267189 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08 -0.9238562 -0.38267189\n\t\t 2.8477444e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08\n\t\t -0.3826713 -0.92385644 6.8751028e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311\n\t\t -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.3826713 -0.92385644\n\t\t 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 3.0920822e-07 -1 7.441745e-08\n\t\t -0.3826713 -0.92385644 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.3826713\n\t\t -0.92385644 6.8751028e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08\n\t\t 0.38267189 -0.9238562 3.058726e-05 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1\n\t\t 7.441745e-08 3.0920822e-07 -1 7.441745e-08 0.38267189 -0.9238562 3.058726e-05 0.38267189\n\t\t -0.9238562 3.058726e-05 -0.58134729 0.58134699 0.56920063 -0.75997204 0.31476769\n\t\t 0.56859034 -0.75997204 0.31479821 0.56859034 -0.82216865 -2.1186284e-07 0.56920069\n\t\t -0.75997204 0.31479821 0.56859034 -0.75997204 0.31476769 0.56859034 -0.75997204 0.31476769\n\t\t 0.56859034 -0.82216865 -2.1186284e-07 0.56920069 -0.82216865 -2.1186284e-07 0.56920069\n\t\t -0.82216865 -2.1186284e-07 0.56920069 -0.7599718 -0.31479862 0.56859034 -0.7599718\n\t\t -0.31479862 0.56859034 -0.7599718 -0.31479862 0.56859034 -0.82216865 -2.1186284e-07\n\t\t 0.56920069;\n\tsetAttr \".n[23738:23903]\" -type \"float3\"  -0.82216865 -2.1186284e-07 0.56920069\n\t\t -0.58134693 -0.58134723 0.56920075 -0.7599718 -0.31479862 0.56859034 -0.7599718 -0.31479862\n\t\t 0.56859034 -0.7599718 -0.31479862 0.56859034 -0.58134693 -0.58134723 0.56920075 -0.58134693\n\t\t -0.58134723 0.56920075 -0.58134693 -0.58134723 0.56920075 -0.31479818 -0.76000249\n\t\t 0.56855989 -0.31479818 -0.76000249 0.56855989 -0.31479818 -0.76000249 0.56855989\n\t\t -0.58134693 -0.58134723 0.56920075 -0.58134693 -0.58134723 0.56920075 2.5422131e-07\n\t\t -0.82216859 0.56920075 -0.31479818 -0.76000249 0.56855989 -0.31479818 -0.76000249\n\t\t 0.56855989 -0.31479818 -0.76000249 0.56855989 2.5422131e-07 -0.82216859 0.56920075\n\t\t 2.5422131e-07 -0.82216859 0.56920075 2.5422131e-07 -0.82216859 0.56920075 0.31479865\n\t\t -0.76000226 0.56855989 0.31479865 -0.76000226 0.56855989 0.31479865 -0.76000226 0.56855989\n\t\t 2.5422131e-07 -0.82216859 0.56920075 2.5422131e-07 -0.82216859 0.56920075 -0.75997204\n\t\t 0.31479821 0.56859034 -0.58134729 0.58134699 0.56920063 -0.58134729 0.58134699 0.56920063\n\t\t -0.31476814 0.76000237 0.56859028 -0.58134729 0.58134699 0.56920063 -0.58134729 0.58134699\n\t\t 0.56920063 -0.58134729 0.58134699 0.56920063 -0.31476814 0.75997186 0.56859028 -0.31476814\n\t\t 0.76000237 0.56859028 -2.5422131e-07 0.82216871 0.56920063 -0.31476814 0.76000237\n\t\t 0.56859028 -0.31476814 0.75997186 0.56859028 -0.31476814 0.75997186 0.56859028 -2.5422131e-07\n\t\t 0.82216871 0.56920063 -2.5422131e-07 0.82216871 0.56920063 0.31479818 0.7599721 0.56859028\n\t\t -2.5422131e-07 0.82216871 0.56920063 -2.5422131e-07 0.82216871 0.56920063 -3.0920822e-07\n\t\t 1 -7.441745e-08 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08\n\t\t 0.70708311 0.70708358 -5.2619338e-08 0.3826713 0.92385644 -6.8751028e-08 0.3826713\n\t\t 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 0.70708311 0.70708358\n\t\t -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08 0.9238562 0.38267189 -2.8477444e-08\n\t\t 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08 0.70708311\n\t\t 0.70708358 -5.2619338e-08 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189\n\t\t -2.8477444e-08 1 3.0920822e-07 1.2246572e-16 0.9238562 0.38267189 -2.8477444e-08\n\t\t 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 0.99996948\n\t\t 3.0919878e-07 1.2246199e-16 1 3.0920822e-07 1.2246572e-16 0.92385644 -0.3826713 2.8477444e-08\n\t\t 1 3.0920822e-07 1.2246572e-16 0.99996948 3.0919878e-07 1.2246199e-16 0.99996948 3.0919878e-07\n\t\t 1.2246199e-16 0.92385644 -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08\n\t\t 0.7071141 -0.70708311 5.2619338e-08 0.92385644 -0.3826713 2.8477444e-08 0.92385644\n\t\t -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 0.70708358 -0.70708311\n\t\t 5.2619338e-08 0.7071141 -0.70708311 5.2619338e-08 0.38267189 -0.9238562 3.058726e-05\n\t\t 0.7071141 -0.70708311 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358\n\t\t -0.70708311 5.2619338e-08 0.38267189 -0.9238562 3.058726e-05 0.38267189 -0.9238562\n\t\t 3.058726e-05 0.3826713 0.92385644 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07\n\t\t 1 -7.441745e-08 0.31479865 -0.76000226 0.56855989 0.58134729 -0.58134687 0.56920075\n\t\t 0.58134729 -0.58134687 0.56920075 0.58134729 -0.58134687 0.56920075 0.31479865 -0.76000226\n\t\t 0.56855989 0.31479865 -0.76000226 0.56855989 0.58134729 -0.58134687 0.56920075 0.76000255\n\t\t -0.31479815 0.56855983 0.76000255 -0.31479815 0.56855983 0.76000255 -0.31479815 0.56855983\n\t\t 0.58134729 -0.58134687 0.56920075 0.58134729 -0.58134687 0.56920075 0.82216865 2.9657977e-07\n\t\t 0.56920069 0.76000255 -0.31479815 0.56855983 0.76000255 -0.31479815 0.56855983 0.76000255\n\t\t -0.31479815 0.56855983 0.82216865 2.9657977e-07 0.56920069 0.82216865 2.9657977e-07\n\t\t 0.56920069 0.82216865 2.9657977e-07 0.56920069 0.76000232 0.31479868 0.56855983 0.76000232\n\t\t 0.31479868 0.56855983 0.76000232 0.31479868 0.56855983 0.82216865 2.9657977e-07 0.56920069\n\t\t 0.82216865 2.9657977e-07 0.56920069 0.58134693 0.58134735 0.56920063 0.76000232 0.31479868\n\t\t 0.56855983 0.76000232 0.31479868 0.56855983 0.76000232 0.31479868 0.56855983 0.58134693\n\t\t 0.58134735 0.56920063 0.58134693 0.58134735 0.56920063 0.31479818 0.7599721 0.56859028\n\t\t 0.58134693 0.58134735 0.56920063 0.58134693 0.58134735 0.56920063 0.58134693 0.58134735\n\t\t 0.56920063 0.31479818 0.7599721 0.56859028 0.31479818 0.7599721 0.56859028 -2.5422131e-07\n\t\t 0.82216871 0.56920063 0.31479818 0.7599721 0.56859028 0.31479818 0.7599721 0.56859028\n\t\t -3.0920822e-07 1 -7.441745e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562\n\t\t -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08\n\t\t -3.0920822e-07 1 -7.441745e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.38267189\n\t\t 0.9238562 -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562\n\t\t -6.8751028e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08\n\t\t -0.92385644 0.3826713 -2.8477444e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358\n\t\t 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.92385644 0.3826713\n\t\t -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.99996948 -3.0919878e-07 -1.2246199e-16\n\t\t -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.92385644\n\t\t 0.3826713 -2.8477444e-08 -0.99996948 -3.0919878e-07 -1.2246199e-16 -0.99996948 -3.0919878e-07\n\t\t -1.2246199e-16 -0.9238562 -0.38267189 2.8477444e-08 -0.99996948 -3.0919878e-07 -1.2246199e-16\n\t\t -0.99996948 -3.0919878e-07 -1.2246199e-16 -0.99996948 -3.0919878e-07 -1.2246199e-16\n\t\t -0.9238562 -0.38267189 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08 -0.70708311\n\t\t -0.70708358 5.2619338e-08 -0.9238562 -0.38267189 2.8477444e-08 -0.9238562 -0.38267189\n\t\t 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08 -0.70708311 -0.70708358 5.2619338e-08\n\t\t -0.70708311 -0.70708358 5.2619338e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.70708311\n\t\t -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311 -0.70708358\n\t\t 5.2619338e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08;\n\tsetAttr \".n[23904:24069]\" -type \"float3\"  3.0920822e-07 -1 7.441745e-08 -0.3826713\n\t\t -0.92385644 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.3826713 -0.92385644\n\t\t 6.8751028e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 0.38267189\n\t\t -0.9238562 6.8751028e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08\n\t\t 3.0920822e-07 -1 7.441745e-08 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562\n\t\t 6.8751028e-08 0.70708358 -0.70708311 5.2619338e-08 0.38267189 -0.9238562 6.8751028e-08\n\t\t 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 0.70708358\n\t\t -0.70711362 5.2621612e-08 0.70708358 -0.70708311 5.2619338e-08 0.92385644 -0.3826713\n\t\t 2.8477444e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70711362 5.2621612e-08\n\t\t 0.70708358 -0.70711362 5.2621612e-08 0.92385644 -0.3826713 2.8477444e-08 0.92385644\n\t\t -0.3826713 2.8477444e-08 0.99996948 3.0919878e-07 1.2246199e-16 0.92385644 -0.3826713\n\t\t 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08\n\t\t 0.99996948 3.0919878e-07 1.2246199e-16 0.99996948 3.0919878e-07 1.2246199e-16 0.9238562\n\t\t 0.38267189 -2.8477444e-08 0.99996948 3.0919878e-07 1.2246199e-16 0.99996948 3.0919878e-07\n\t\t 1.2246199e-16 0.99996948 3.0919878e-07 1.2246199e-16 0.9238562 0.38267189 -2.8477444e-08\n\t\t 0.9238562 0.38267189 -2.8477444e-08 0.70708311 0.70708358 -5.2619338e-08 0.9238562\n\t\t 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189\n\t\t -2.8477444e-08 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08\n\t\t 0.3826713 0.92385644 -6.8751028e-08 0.70708311 0.70708358 -5.2619338e-08 0.70708311\n\t\t 0.70708358 -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08 0.3826713 0.92385644\n\t\t -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08\n\t\t 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 0.3826713\n\t\t 0.92385644 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08\n\t\t -3.0920822e-07 1 -7.441745e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562\n\t\t -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08\n\t\t -3.0920822e-07 1 -7.441745e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.38267189\n\t\t 0.9238562 -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562\n\t\t -6.8751028e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08\n\t\t -0.92385644 0.3826713 -2.8477444e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358\n\t\t 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.92385644 0.3826713\n\t\t -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16\n\t\t -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.92385644\n\t\t 0.3826713 -2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16\n\t\t -0.9238562 -0.38267189 2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -0.9238562 -0.38267189 2.8477444e-08\n\t\t -0.9238562 -0.38267189 2.8477444e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.9238562\n\t\t -0.38267189 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08 -0.9238562 -0.38267189\n\t\t 2.8477444e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08\n\t\t -0.3826713 -0.92385644 6.8751028e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311\n\t\t -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.3826713 -0.92385644\n\t\t 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 3.0919878e-07 -0.99996948 7.4415176e-08\n\t\t -0.3826713 -0.92385644 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.3826713\n\t\t -0.92385644 6.8751028e-08 3.0920822e-07 -1 7.441745e-08 3.0919878e-07 -0.99996948\n\t\t 7.4415176e-08 0.38267189 -0.9238562 6.8751028e-08 3.0919878e-07 -0.99996948 7.4415176e-08\n\t\t 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 0.38267189 -0.9238562\n\t\t 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 0.70708358 -0.70708311 5.2619338e-08\n\t\t 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 0.38267189\n\t\t -0.9238562 6.8751028e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311\n\t\t 5.2619338e-08 0.92385644 -0.3826713 2.8477444e-08 0.70708358 -0.70708311 5.2619338e-08\n\t\t 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.92385644\n\t\t -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 1 3.0920822e-07 1.2246572e-16\n\t\t 0.92385644 -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 0.92385644\n\t\t -0.3826713 2.8477444e-08 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16\n\t\t 0.9238562 0.38267189 -2.8477444e-08 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07\n\t\t 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 0.9238562 0.38267189 -2.8477444e-08 0.9238562\n\t\t 0.38267189 -2.8477444e-08 0.70708311 0.70708358 -5.2619338e-08 0.9238562 0.38267189\n\t\t -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08\n\t\t 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08 0.3826713\n\t\t 0.92385644 -6.8751028e-08 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.70708358\n\t\t -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08 0.3826713 0.92385644 -6.8751028e-08\n\t\t 0.3826713 0.92385644 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08 0.3826713 0.92385644\n\t\t -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08\n\t\t -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08\n\t\t -0.38267189 0.9238562 -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.38267189\n\t\t 0.9238562 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08\n\t\t -0.70708358 0.70708311 -5.2619338e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.38267189\n\t\t 0.9238562 -6.8751028e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.70708358 0.70708311\n\t\t -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.92385644 0.3826713 -2.8477444e-08\n\t\t -0.70708358 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.70708358\n\t\t 0.70708311 -5.2619338e-08;\n\tsetAttr \".n[24070:24235]\" -type \"float3\"  -0.92385644 0.3826713 -2.8477444e-08\n\t\t -0.92385644 0.3826713 -2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16 -0.92385644\n\t\t 0.3826713 -2.8477444e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.92385644 0.3826713\n\t\t -2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16\n\t\t -0.9238562 -0.38267189 2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -0.9238562 -0.38267189 2.8477444e-08\n\t\t -0.9238562 -0.38267189 2.8477444e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.9238562\n\t\t -0.38267189 2.8477444e-08 -0.9238562 -0.38267189 2.8477444e-08 -0.9238562 -0.38267189\n\t\t 2.8477444e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08\n\t\t -0.3826713 -0.92385644 6.8751028e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311\n\t\t -0.70708358 5.2619338e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.3826713 -0.92385644\n\t\t 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 3.0920822e-07 -1 7.441745e-08\n\t\t -0.3826713 -0.92385644 6.8751028e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.3826713\n\t\t -0.92385644 6.8751028e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08\n\t\t 0.38267189 -0.9238562 6.8751028e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1\n\t\t 7.441745e-08 3.0920822e-07 -1 7.441745e-08 0.38267189 -0.9238562 6.8751028e-08 0.38267189\n\t\t -0.9238562 6.8751028e-08 0.70708358 -0.70708311 5.2619338e-08 0.38267189 -0.9238562\n\t\t 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08 0.38267189 -0.9238562 6.8751028e-08\n\t\t 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.92385644\n\t\t -0.3826713 2.8477444e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311\n\t\t 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08 0.92385644 -0.3826713 2.8477444e-08\n\t\t 0.92385644 -0.3826713 2.8477444e-08 1 3.0920822e-07 1.2246572e-16 0.92385644 -0.3826713\n\t\t 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08 0.92385644 -0.3826713 2.8477444e-08\n\t\t 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 0.9238562 0.38267189\n\t\t -2.8477444e-08 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07\n\t\t 1.2246572e-16 0.9238562 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08\n\t\t 0.70708311 0.70708358 -5.2619338e-08 0.9238562 0.38267189 -2.8477444e-08 0.9238562\n\t\t 0.38267189 -2.8477444e-08 0.9238562 0.38267189 -2.8477444e-08 0.70708311 0.70708358\n\t\t -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08 0.3826713 0.92385644 -6.8751028e-08\n\t\t 0.70708311 0.70708358 -5.2619338e-08 0.70708311 0.70708358 -5.2619338e-08 0.70708311\n\t\t 0.70708358 -5.2619338e-08 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644\n\t\t -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08 0.3826713 0.92385644 -6.8751028e-08\n\t\t 0.3826713 0.92385644 -6.8751028e-08 0.3826713 0.92385644 -6.8751028e-08 -3.0920822e-07\n\t\t 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -1.5772291e-07 0.51008642 0.86010307\n\t\t -1.5772291e-07 0.51008642 0.86010307 -0.19544068 0.47181615 0.85973686 -0.19544068\n\t\t 0.47181615 0.85973686 -0.19541016 0.47181615 0.85973686 -1.5772291e-07 0.51008642\n\t\t 0.86010307 -0.19541016 0.47181615 0.85973686 -0.19544068 0.47181615 0.85973686 -0.36066785\n\t\t 0.36066768 0.86010313 -0.36066785 0.36066768 0.86010313 -0.36066785 0.36066768 0.86010313\n\t\t -0.19541016 0.47181615 0.85973686 -0.36066785 0.36066768 0.86010313 -0.36066785 0.36066768\n\t\t 0.86010313 -0.47181621 0.19544044 0.85973692 -0.47181621 0.19544044 0.85973692 -0.47181621\n\t\t 0.19540992 0.85973692 -0.36066785 0.36066768 0.86010313 -0.47181621 0.19540992 0.85973692\n\t\t -0.47181621 0.19544044 0.85973692 -0.51005584 -9.3706774e-08 0.86010313 -0.51005584\n\t\t -9.3706774e-08 0.86010313 -0.51005584 -9.3706774e-08 0.86010313 -0.47181621 0.19540992\n\t\t 0.85973692 -0.51005584 -9.3706774e-08 0.86010313 -0.51005584 -9.3706774e-08 0.86010313\n\t\t -0.47181609 -0.19544062 0.85973692 -0.47181609 -0.19544062 0.85973692 -0.47181609\n\t\t -0.1954101 0.85973692 -0.51005584 -9.3706774e-08 0.86010313 -0.47181609 -0.1954101\n\t\t 0.85973692 -0.47181609 -0.19544062 0.85973692 -0.36066762 -0.36066779 0.86010313\n\t\t -0.36066762 -0.36066779 0.86010313 -0.36066762 -0.36066779 0.86010313 -0.47181609\n\t\t -0.1954101 0.85973692 -0.36066762 -0.36066779 0.86010313 -0.36066762 -0.36066779\n\t\t 0.86010313 -0.19540986 -0.47178563 0.8597675 -0.19540986 -0.47178563 0.8597675 -0.19540986\n\t\t -0.47178563 0.8597675 -0.36066762 -0.36066779 0.86010313 -0.19540986 -0.47178563\n\t\t 0.8597675 -0.19540986 -0.47178563 0.8597675 1.5771344e-07 -0.51005578 0.86010319\n\t\t 1.5771344e-07 -0.51005578 0.86010319 1.5771344e-07 -0.51005578 0.86010319 -0.19540986\n\t\t -0.47178563 0.8597675 1.5771344e-07 -0.51005578 0.86010319 1.5771344e-07 -0.51005578\n\t\t 0.86010319 0.19544068 -0.47181603 0.85973698 0.19544068 -0.47181603 0.85973698 0.19541016\n\t\t -0.47181603 0.85973698 1.5771344e-07 -0.51005578 0.86010319 0.19541016 -0.47181603\n\t\t 0.85973698 0.19544068 -0.47181603 0.85973698 0.36066785 -0.36063704 0.86013365 0.36066785\n\t\t -0.36063704 0.86013365 0.36066785 -0.36063704 0.86013365 0.19541016 -0.47181603 0.85973698\n\t\t 0.36066785 -0.36063704 0.86013365 0.36066785 -0.36063704 0.86013365 0.47181621 -0.1954098\n\t\t 0.85973692 0.47181621 -0.1954098 0.85973692 0.47181621 -0.19544032 0.85973692 0.36066785\n\t\t -0.36063704 0.86013365 0.47181621 -0.19544032 0.85973692 0.47181621 -0.1954098 0.85973692\n\t\t 0.51005584 2.2172014e-07 0.86010313 0.51005584 2.2172014e-07 0.86010313 0.51005584\n\t\t 2.2172014e-07 0.86010313 0.47181621 -0.19544032 0.85973692 0.51005584 2.2172014e-07\n\t\t 0.86010313 0.51005584 2.2172014e-07 0.86010313 0.47178558 0.19544074 0.85973692 0.47178558\n\t\t 0.19544074 0.85973692 0.47178558 0.19544074 0.85973692 0.51005584 2.2172014e-07 0.86010313\n\t\t 0.47178558 0.19544074 0.85973692 0.47178558 0.19544074 0.85973692 0.36066762 0.36066791\n\t\t 0.86010313 0.36066762 0.36066791 0.86010313 0.36066762 0.36066791 0.86010313 0.47178558\n\t\t 0.19544074 0.85973692 0.36066762 0.36066791 0.86010313 0.36066762 0.36066791 0.86010313;\n\tsetAttr \".n[24236:24401]\" -type \"float3\"  0.19544038 0.47181627 0.85973686 0.19544038\n\t\t 0.47181627 0.85973686 0.19544038 0.47181627 0.85973686 0.36066762 0.36066791 0.86010313\n\t\t 0.19544038 0.47181627 0.85973686 0.19544038 0.47181627 0.85973686 -1.5772291e-07\n\t\t 0.51008642 0.86010307 -1.5772291e-07 0.51008642 0.86010307 -1.5772291e-07 0.51008642\n\t\t 0.86010307 0.19544038 0.47181627 0.85973686 -0.36066785 0.36066756 -0.86013365 -0.36066785\n\t\t 0.36066756 -0.86013365 -0.19541016 0.47181603 -0.85973698 -0.19541016 0.47181603\n\t\t -0.85973698 -0.19541016 0.47181603 -0.85973698 -0.36066785 0.36066756 -0.86013365\n\t\t -0.19541016 0.47181603 -0.85973698 -0.19541016 0.47181603 -0.85973698 -1.5771344e-07\n\t\t 0.51005578 -0.86010319 -1.5771344e-07 0.51005578 -0.86010319 -1.5771344e-07 0.51005578\n\t\t -0.86010319 -0.19541016 0.47181603 -0.85973698 -1.5771344e-07 0.51005578 -0.86010319\n\t\t -1.5771344e-07 0.51005578 -0.86010319 0.19540986 0.47181615 -0.85973698 0.19540986\n\t\t 0.47181615 -0.85973698 0.19540986 0.47181615 -0.85973698 -1.5771344e-07 0.51005578\n\t\t -0.86010319 0.19540986 0.47181615 -0.85973698 0.19540986 0.47181615 -0.85973698 0.36066762\n\t\t 0.36066779 -0.86013365 0.36066762 0.36066779 -0.86013365 0.36066762 0.36066779 -0.86013365\n\t\t 0.19540986 0.47181615 -0.85973698 0.36066762 0.36066779 -0.86013365 0.36066762 0.36066779\n\t\t -0.86013365 0.47178558 0.1954101 -0.85976744 0.47178558 0.1954101 -0.85976744 0.47178558\n\t\t 0.1954101 -0.85976744 0.36066762 0.36066779 -0.86013365 0.47178558 0.1954101 -0.85976744\n\t\t 0.47178558 0.1954101 -0.85976744 0.51005584 9.3704507e-08 -0.86013365 0.51005584\n\t\t 9.3704507e-08 -0.86013365 0.51005584 9.3704507e-08 -0.86013365 0.47178558 0.1954101\n\t\t -0.85976744 0.51005584 9.3704507e-08 -0.86013365 0.51005584 9.3704507e-08 -0.86013365\n\t\t 0.47178569 -0.19540992 -0.85976744 0.47178569 -0.19540992 -0.85976744 0.47178569\n\t\t -0.19540992 -0.85976744 0.51005584 9.3704507e-08 -0.86013365 0.47178569 -0.19540992\n\t\t -0.85976744 0.47178569 -0.19540992 -0.85976744 0.36063734 -0.36063716 -0.86013365\n\t\t 0.36063734 -0.36063716 -0.86013365 0.36063734 -0.36063716 -0.86013365 0.47178569\n\t\t -0.19540992 -0.85976744 0.36063734 -0.36063716 -0.86013365 0.36063734 -0.36063716\n\t\t -0.86013365 0.19541016 -0.47178563 -0.85973686 0.19541016 -0.47178563 -0.85973686\n\t\t 0.19544068 -0.47178563 -0.85973686 0.36063734 -0.36063716 -0.86013365 0.19544068\n\t\t -0.47178563 -0.85973686 0.19541016 -0.47178563 -0.85973686 1.5771347e-07 -0.5100559\n\t\t -0.86013359 1.5771347e-07 -0.5100559 -0.86013359 1.5771347e-07 -0.5100559 -0.86013359\n\t\t 0.19544068 -0.47178563 -0.85973686 1.5771347e-07 -0.5100559 -0.86013359 1.5771347e-07\n\t\t -0.5100559 -0.86013359 -0.19540986 -0.47178575 -0.85976738 -0.19540986 -0.47178575\n\t\t -0.85976738 -0.19540986 -0.47178575 -0.85976738 1.5771347e-07 -0.5100559 -0.86013359\n\t\t -0.19540986 -0.47178575 -0.85976738 -0.19540986 -0.47178575 -0.85976738 -0.3606371\n\t\t -0.36066791 -0.86013365 -0.3606371 -0.36066791 -0.86013365 -0.3606371 -0.36066791\n\t\t -0.86013365 -0.19540986 -0.47178575 -0.85976738 -0.3606371 -0.36066791 -0.86013365\n\t\t -0.3606371 -0.36066791 -0.86013365 -0.47178558 -0.19541022 -0.85976744 -0.47178558\n\t\t -0.19541022 -0.85976744 -0.47178558 -0.19541022 -0.85976744 -0.3606371 -0.36066791\n\t\t -0.86013365 -0.47178558 -0.19541022 -0.85976744 -0.47178558 -0.19541022 -0.85976744\n\t\t -0.51005584 -2.2172242e-07 -0.86013365 -0.51005584 -2.2172242e-07 -0.86013365 -0.51005584\n\t\t -2.2172242e-07 -0.86013365 -0.47178558 -0.19541022 -0.85976744 -0.51005584 -2.2172242e-07\n\t\t -0.86013365 -0.51005584 -2.2172242e-07 -0.86013365 -0.47178569 0.1954098 -0.85976744\n\t\t -0.47178569 0.1954098 -0.85976744 -0.47178569 0.1954098 -0.85973692 -0.51005584 -2.2172242e-07\n\t\t -0.86013365 -0.47178569 0.1954098 -0.85973692 -0.47178569 0.1954098 -0.85976744 -0.36066785\n\t\t 0.36066756 -0.86013365 -0.36066785 0.36066756 -0.86013365 -0.36066785 0.36066756\n\t\t -0.86013365 -0.47178569 0.1954098 -0.85973692 -1.5820417e-07 0.51164287 0.85915703\n\t\t -1.5821361e-07 0.51167339 0.85915703 -0.19602053 0.47328106 0.85879081 -0.19602053\n\t\t 0.47328106 0.85879081 -0.19602053 0.47328106 0.85879081 -1.5820417e-07 0.51164287\n\t\t 0.85915703 -0.19602053 0.47328106 0.85879081 -0.19602053 0.47328106 0.85879081 -0.36179703\n\t\t 0.36179686 0.85915709 -0.36179703 0.36179686 0.85915709 -0.36179703 0.36179686 0.85915709\n\t\t -0.19602053 0.47328106 0.85879081 -0.36179703 0.36179686 0.85915709 -0.36179703 0.36179686\n\t\t 0.85915709 -0.4732506 0.19602029 0.85882139 -0.4732506 0.19602029 0.85882139 -0.4732506\n\t\t 0.19602029 0.85882139 -0.36179703 0.36179686 0.85915709 -0.4732506 0.19602029 0.85882139\n\t\t -0.4732506 0.19602029 0.85882139 -0.5116123 -9.4256173e-08 0.8591876 -0.5116123 -9.4256173e-08\n\t\t 0.8591876 -0.5116123 -9.4256173e-08 0.8591876 -0.4732506 0.19602029 0.85882139 -0.5116123\n\t\t -9.4256173e-08 0.8591876 -0.5116123 -9.4256173e-08 0.8591876 -0.47325048 -0.19602047\n\t\t 0.85882139 -0.47325048 -0.19602047 0.85882139 -0.47325048 -0.19602047 0.85882139\n\t\t -0.5116123 -9.4256173e-08 0.8591876 -0.47325048 -0.19602047 0.85882139 -0.47325048\n\t\t -0.19602047 0.85882139 -0.3617968 -0.36179698 0.85915709 -0.3617968 -0.36179698 0.85915709\n\t\t -0.3617968 -0.36176646 0.85915709 -0.47325048 -0.19602047 0.85882139 -0.3617968 -0.36176646\n\t\t 0.85915709 -0.3617968 -0.36179698 0.85915709 -0.19602023 -0.47325054 0.85882145 -0.19602023\n\t\t -0.47325054 0.85882145 -0.19602023 -0.47325054 0.85882145 -0.3617968 -0.36176646\n\t\t 0.85915709 -0.19602023 -0.47325054 0.85882145 -0.19602023 -0.47325054 0.85882145\n\t\t 1.5820414e-07 -0.51164275 0.85915715 1.5820414e-07 -0.51164275 0.85915715 1.5820414e-07\n\t\t -0.51164275 0.85915715 -0.19602023 -0.47325054 0.85882145 1.5820414e-07 -0.51164275\n\t\t 0.85915715 1.5820414e-07 -0.51164275 0.85915715 0.19602053 -0.47325042 0.85882145\n\t\t 0.19602053 -0.47325042 0.85882145 0.19602053 -0.47325042 0.85882145 1.5820414e-07\n\t\t -0.51164275 0.85915715 0.19602053 -0.47325042 0.85882145 0.19602053 -0.47325042 0.85882145\n\t\t 0.36179703 -0.36179674 0.85915709 0.36179703 -0.36179674 0.85915709 0.36179703 -0.36179674\n\t\t 0.85915709 0.19602053 -0.47325042 0.85882145;\n\tsetAttr \".n[24402:24567]\" -type \"float3\"  0.36179703 -0.36179674 0.85915709 0.36179703\n\t\t -0.36179674 0.85915709 0.4732506 -0.19602017 0.85882139 0.4732506 -0.19602017 0.85882139\n\t\t 0.4732506 -0.19602017 0.85882139 0.36179703 -0.36179674 0.85915709 0.4732506 -0.19602017\n\t\t 0.85882139 0.4732506 -0.19602017 0.85882139 0.5116123 2.2213328e-07 0.8591876 0.5116123\n\t\t 2.2213328e-07 0.8591876 0.5116123 2.2213328e-07 0.8591876 0.4732506 -0.19602017 0.85882139\n\t\t 0.5116123 2.2213328e-07 0.8591876 0.5116123 2.2213328e-07 0.8591876 0.47325048 0.19602059\n\t\t 0.85882139 0.47325048 0.19602059 0.85882139 0.47325048 0.19602059 0.85882139 0.5116123\n\t\t 2.2213328e-07 0.8591876 0.47325048 0.19602059 0.85882139 0.47325048 0.19602059 0.85882139\n\t\t 0.36176628 0.36176658 0.8591876 0.36176628 0.36176658 0.8591876 0.36176628 0.36176658\n\t\t 0.8591876 0.47325048 0.19602059 0.85882139 0.36176628 0.36176658 0.8591876 0.36176628\n\t\t 0.36176658 0.8591876 0.19605076 0.47328117 0.85879081 0.19605076 0.47328117 0.85879081\n\t\t 0.19605076 0.47328117 0.85879081 0.36176628 0.36176658 0.8591876 0.19605076 0.47328117\n\t\t 0.85879081 0.19605076 0.47328117 0.85879081 -1.5821361e-07 0.51167339 0.85915703\n\t\t -1.5821361e-07 0.51167339 0.85915703 -1.5820417e-07 0.51164287 0.85915703 0.19605076\n\t\t 0.47328117 0.85879081 -0.36179703 0.36179674 -0.85915709 -0.36179703 0.36179674 -0.85915709\n\t\t -0.19602053 0.47325042 -0.85882145 -0.19602053 0.47325042 -0.85882145 -0.19602053\n\t\t 0.47325042 -0.85882145 -0.36179703 0.36179674 -0.85915709 -0.19602053 0.47325042\n\t\t -0.85882145 -0.19602053 0.47325042 -0.85882145 -1.5819471e-07 0.51161224 -0.85918766\n\t\t -1.5819471e-07 0.51161224 -0.85918766 -1.5819471e-07 0.51161224 -0.85918766 -0.19602053\n\t\t 0.47325042 -0.85882145 -1.5819471e-07 0.51161224 -0.85918766 -1.5819471e-07 0.51161224\n\t\t -0.85918766 0.19602023 0.47328106 -0.85879093 0.19602023 0.47328106 -0.85879093 0.19602023\n\t\t 0.47328106 -0.85879093 -1.5819471e-07 0.51161224 -0.85918766 0.19602023 0.47328106\n\t\t -0.85879093 0.19602023 0.47328106 -0.85879093 0.36176628 0.36176646 -0.8591876 0.36176628\n\t\t 0.36176646 -0.8591876 0.36176628 0.36176646 -0.8591876 0.19602023 0.47328106 -0.85879093\n\t\t 0.36176628 0.36176646 -0.8591876 0.36176628 0.36176646 -0.8591876 0.47325048 0.19602047\n\t\t -0.85882139 0.47325048 0.19602047 -0.85882139 0.47325048 0.19602047 -0.85882139 0.36176628\n\t\t 0.36176646 -0.8591876 0.47325048 0.19602047 -0.85882139 0.47325048 0.19602047 -0.85882139\n\t\t 0.51164281 9.4265609e-08 -0.8591876 0.51164281 9.4265609e-08 -0.8591876 0.51164281\n\t\t 9.4265609e-08 -0.8591876 0.47325048 0.19602047 -0.85882139 0.51164281 9.4265609e-08\n\t\t -0.8591876 0.51164281 9.4265609e-08 -0.8591876 0.4732506 -0.19602029 -0.85882139\n\t\t 0.4732506 -0.19602029 -0.85882139 0.4732506 -0.19602029 -0.85882139 0.51164281 9.4265609e-08\n\t\t -0.8591876 0.4732506 -0.19602029 -0.85882139 0.4732506 -0.19602029 -0.85882139 0.36176652\n\t\t -0.36173582 -0.8591876 0.36176652 -0.36173582 -0.8591876 0.361736 -0.36176634 -0.8591876\n\t\t 0.4732506 -0.19602029 -0.85882139 0.361736 -0.36176634 -0.8591876 0.36176652 -0.36173582\n\t\t -0.8591876 0.19602053 -0.47328106 -0.85879081 0.19602053 -0.47328106 -0.85879081\n\t\t 0.19602053 -0.47328106 -0.85879081 0.361736 -0.36176634 -0.8591876 0.19602053 -0.47328106\n\t\t -0.85879081 0.19602053 -0.47328106 -0.85879081 1.5819474e-07 -0.51161236 -0.85918754\n\t\t 1.5819474e-07 -0.51161236 -0.85918754 1.5819474e-07 -0.51161236 -0.85918754 0.19602053\n\t\t -0.47328106 -0.85879081 1.5819474e-07 -0.51161236 -0.85918754 1.5819474e-07 -0.51161236\n\t\t -0.85918754 -0.19598971 -0.47318962 -0.85885185 -0.19598971 -0.47318962 -0.85885185\n\t\t -0.19598971 -0.47318962 -0.85885185 1.5819474e-07 -0.51161236 -0.85918754 -0.19598971\n\t\t -0.47318962 -0.85885185 -0.19598971 -0.47318962 -0.85885185 -0.36176628 -0.36176658\n\t\t -0.8591876 -0.36176628 -0.36176658 -0.8591876 -0.36176628 -0.36176658 -0.8591876\n\t\t -0.19598971 -0.47318962 -0.85885185 -0.36176628 -0.36176658 -0.8591876 -0.36176628\n\t\t -0.36176658 -0.8591876 -0.473281 -0.19602059 -0.85879087 -0.473281 -0.19602059 -0.85879087\n\t\t -0.473281 -0.19605112 -0.85879087 -0.36176628 -0.36176658 -0.8591876 -0.473281 -0.19605112\n\t\t -0.85879087 -0.473281 -0.19602059 -0.85879087 -0.51158178 -2.2212612e-07 -0.85921812\n\t\t -0.51158178 -2.2212612e-07 -0.85921812 -0.51158178 -2.2212612e-07 -0.85921812 -0.473281\n\t\t -0.19605112 -0.85879087 -0.51158178 -2.2212612e-07 -0.85921812 -0.51158178 -2.2212612e-07\n\t\t -0.85921812 -0.47322008 0.19602017 -0.85882139 -0.47322008 0.19602017 -0.85882139\n\t\t -0.47322008 0.19602017 -0.85882139 -0.51158178 -2.2212612e-07 -0.85921812 -0.47322008\n\t\t 0.19602017 -0.85882139 -0.47322008 0.19602017 -0.85882139 -0.36179703 0.36179674\n\t\t -0.85915709 -0.36179703 0.36179674 -0.85915709 -0.36179703 0.36179674 -0.85915709\n\t\t -0.47322008 0.19602017 -0.85882139 0.40647602 -0.027558157 -0.9132359 0.39951789\n\t\t -0.29331332 -0.86849576 0.39780885 -0.29276401 -0.86947232 0.39780885 -0.29276401\n\t\t -0.86947232 0.40372938 -0.093356058 -0.91006196 0.40647602 -0.027558157 -0.9132359\n\t\t 0.5050202 0.41883612 -0.75463122 0.4966276 0.42283404 -0.75795776 0.50068653 0.37272266\n\t\t -0.78124332 0.50068653 0.37272266 -0.78124332 0.51683086 0.38300738 -0.76558733 0.5050202\n\t\t 0.41883612 -0.75463122 0.47975084 0.35261095 -0.80339974 0.50068653 0.37272266 -0.78124332\n\t\t 0.4966276 0.42283404 -0.75795776 0.4966276 0.42283404 -0.75795776 0.48207027 0.37107465\n\t\t -0.79363382 0.47975084 0.35261095 -0.80339974 0.46363711 0.32654813 -0.82363355 0.47975084\n\t\t 0.35261095 -0.80339974 0.48207027 0.37107465 -0.79363382 0.48207027 0.37107465 -0.79363382\n\t\t 0.468398 0.33481866 -0.81759089 0.46363711 0.32654813 -0.82363355 0.45176542 0.26227617\n\t\t -0.85268718 0.46363711 0.32654813 -0.82363355 0.468398 0.33481866 -0.81759089 0.468398\n\t\t 0.33481866 -0.81759089 0.45948657 0.27195051 -0.84551531 0.45176542 0.26227617 -0.85268718\n\t\t 0.42802203 0.23850222 -0.87170017 0.45176542 0.26227617 -0.85268718 0.45948657 0.27195051\n\t\t -0.84551531 0.45948657 0.27195051 -0.84551531;\n\tsetAttr \".n[24568:24733]\" -type \"float3\"  0.43256927 0.24335466 -0.86809897 0.42802203\n\t\t 0.23850222 -0.87170017 0.42802203 0.23850222 -0.87170017 0.43256927 0.24335466 -0.86809897\n\t\t 0.41468543 0.24137096 -0.8773461 0.41468543 0.24137096 -0.8773461 0.41419712 0.2410963\n\t\t -0.87765127 0.42802203 0.23850222 -0.87170017 0.40885639 0.25782043 -0.87539291 0.41419712\n\t\t 0.2410963 -0.87765127 0.41468543 0.24137096 -0.8773461 0.41468543 0.24137096 -0.8773461\n\t\t 0.40766615 0.2613911 -0.87487411 0.40885639 0.25782043 -0.87539291 0.61705381 -0.25305936\n\t\t -0.74507886 0.61879337 -0.19779032 -0.76021606 0.59825438 -0.1837213 -0.77993101\n\t\t 0.59825438 -0.1837213 -0.77993101 0.60411394 -0.24939713 -0.75682849 0.61705381 -0.25305936\n\t\t -0.74507886 0.6400038 -0.30463561 -0.7053743 0.61705381 -0.25305936 -0.74507886 0.60411394\n\t\t -0.24939713 -0.75682849 0.60411394 -0.24939713 -0.75682849 0.63310659 -0.30378109\n\t\t -0.71193576 0.6400038 -0.30463561 -0.7053743 0.61705381 -0.25305936 -0.74507886 0.6400038\n\t\t -0.30463561 -0.7053743 0.66322839 -0.34159353 -0.66585284 0.66322839 -0.34159353\n\t\t -0.66585284 0.64506984 -0.30448303 -0.70079654 0.61705381 -0.25305936 -0.74507886\n\t\t 0.61879337 -0.19779032 -0.76021606 0.61705381 -0.25305936 -0.74507886 0.64506984\n\t\t -0.30448303 -0.70079654 0.64506984 -0.30448303 -0.70079654 0.65315717 -0.27619237\n\t\t -0.70503861 0.61879337 -0.19779032 -0.76021606 0.68709385 -0.34788033 -0.63780636\n\t\t 0.6400038 -0.30463561 -0.7053743 0.63310659 -0.30378109 -0.71193576 0.63310659 -0.30378109\n\t\t -0.71193576 0.69273978 -0.34974197 -0.630665 0.68709385 -0.34788033 -0.63780636 0.74846655\n\t\t -0.39451256 -0.53300577 0.68709385 -0.34788033 -0.63780636 0.69273978 -0.34974197\n\t\t -0.630665 0.69273978 -0.34974197 -0.630665 0.74782568 -0.39631316 -0.53260905 0.74846655\n\t\t -0.39451256 -0.53300577 0.7105931 -0.38422784 -0.58940399 0.68709385 -0.34788033\n\t\t -0.63780636 0.74846655 -0.39451256 -0.53300577 0.7105931 -0.38422784 -0.58940399\n\t\t 0.66322839 -0.34159353 -0.66585284 0.6400038 -0.30463561 -0.7053743 0.6400038 -0.30463561\n\t\t -0.7053743 0.68709385 -0.34788033 -0.63780636 0.7105931 -0.38422784 -0.58940399 0.74846655\n\t\t -0.39451256 -0.53300577 0.76433617 -0.44724855 -0.46446118 0.7105931 -0.38422784\n\t\t -0.58940399 0.66322839 -0.34159353 -0.66585284 0.7105931 -0.38422784 -0.58940399\n\t\t 0.72280049 -0.38611999 -0.57307655 0.72280049 -0.38611999 -0.57307655 0.67659545\n\t\t -0.35883647 -0.64296395 0.66322839 -0.34159353 -0.66585284 0.64506984 -0.30448303\n\t\t -0.70079654 0.66322839 -0.34159353 -0.66585284 0.67659545 -0.35883647 -0.64296395\n\t\t 0.67659545 -0.35883647 -0.64296395 0.66258746 -0.333323 -0.67070526 0.64506984 -0.30448303\n\t\t -0.70079654 0.65315717 -0.27619237 -0.70503861 0.64506984 -0.30448303 -0.70079654\n\t\t 0.66258746 -0.333323 -0.67070526 0.66258746 -0.333323 -0.67070526 0.6702171 -0.30271295\n\t\t -0.67760247 0.65315717 -0.27619237 -0.70503861 0.78026682 -0.44654661 -0.43784901\n\t\t 0.72280049 -0.38611999 -0.57307655 0.7105931 -0.38422784 -0.58940399 0.7105931 -0.38422784\n\t\t -0.58940399 0.76433617 -0.44724855 -0.46446118 0.78026682 -0.44654661 -0.43784901\n\t\t 0.80248433 -0.43693328 -0.4063234 0.74846655 -0.39451256 -0.53300577 0.74782568 -0.39631316\n\t\t -0.53260905 0.76433617 -0.44724855 -0.46446118 0.74846655 -0.39451256 -0.53300577\n\t\t 0.80248433 -0.43693328 -0.4063234 0.74782568 -0.39631316 -0.53260905 0.78127396 -0.45765537\n\t\t -0.42435986 0.80248433 -0.43693328 -0.4063234 0.84502715 -0.44730955 -0.29294714\n\t\t 0.80248433 -0.43693328 -0.4063234 0.78127396 -0.45765537 -0.42435986 0.78127396 -0.45765537\n\t\t -0.42435986 0.78930038 -0.53175426 -0.30695513 0.84502715 -0.44730955 -0.29294714\n\t\t 0.91985852 -0.30191934 -0.25025174 0.84502715 -0.44730955 -0.29294714 0.78930038\n\t\t -0.53175426 -0.30695513 0.78930038 -0.53175426 -0.30695513 0.87588131 -0.41779816\n\t\t -0.2412793 0.91985852 -0.30191934 -0.25025174 0.96072274 -0.20056736 -0.19165622\n\t\t 0.91985852 -0.30191934 -0.25025174 0.87588131 -0.41779816 -0.2412793 0.87588131 -0.41779816\n\t\t -0.2412793 0.95461905 -0.21628439 -0.20465711 0.96072274 -0.20056736 -0.19165622\n\t\t 0.91985852 -0.30191934 -0.25025174 0.96072274 -0.20056736 -0.19165622 0.97173995\n\t\t -0.18231729 -0.1499069 0.97173995 -0.18231729 -0.1499069 0.94897312 -0.24567372 -0.19763786\n\t\t 0.91985852 -0.30191934 -0.25025174 0.96520895 -0.20187965 -0.16614275 0.95461905\n\t\t -0.21628439 -0.20465711 0.87588131 -0.41779816 -0.2412793 0.87588131 -0.41779816\n\t\t -0.2412793 0.95931888 -0.25003785 -0.13092439 0.96520895 -0.20187965 -0.16614275\n\t\t 0.97726375 -0.17807522 -0.11484113 0.95461905 -0.21628439 -0.20465711 0.96520895\n\t\t -0.20187965 -0.16614275 0.96072274 -0.20056736 -0.19165622 0.95461905 -0.21628439\n\t\t -0.20465711 0.97726375 -0.17807522 -0.11484113 0.96520895 -0.20187965 -0.16614275\n\t\t 0.97375417 -0.18994692 -0.12527847 0.97726375 -0.17807522 -0.11484113 0.94897312\n\t\t -0.24567372 -0.19763786 0.97173995 -0.18231729 -0.1499069 0.98199415 -0.13870634\n\t\t -0.12811668 0.98199415 -0.13870634 -0.12811668 0.96258438 -0.2153078 -0.16431163\n\t\t 0.94897312 -0.24567372 -0.19763786 0.98406941 -0.16754632 -0.059022788 0.97173995\n\t\t -0.18231729 -0.1499069 0.96072274 -0.20056736 -0.19165622 0.96072274 -0.20056736\n\t\t -0.19165622 0.98095649 -0.17834987 -0.076479368 0.98406941 -0.16754632 -0.059022788\n\t\t 0.97726375 -0.17807522 -0.11484113 0.98095649 -0.17834987 -0.076479368 0.96072274\n\t\t -0.20056736 -0.19165622 0.98745698 -0.14426069 -0.063783675 0.98199415 -0.13870634\n\t\t -0.12811668 0.97173995 -0.18231729 -0.1499069 0.97173995 -0.18231729 -0.1499069 0.98406941\n\t\t -0.16754632 -0.059022788 0.98745698 -0.14426069 -0.063783675 0.94897312 -0.24567372\n\t\t -0.19763786 0.92318505 -0.32377061 -0.20700702 0.91985852 -0.30191934 -0.25025174\n\t\t 0.92318505 -0.32377061 -0.20700702 0.88842446 -0.40018898 -0.22467723 0.91985852\n\t\t -0.30191934 -0.25025174 0.94897312 -0.24567372 -0.19763786 0.96258438 -0.2153078\n\t\t -0.16431163 0.92986858 -0.32041353 -0.18066955 0.92986858 -0.32041353 -0.18066955\n\t\t 0.92318505 -0.32377061 -0.20700702;\n\tsetAttr \".n[24734:24899]\" -type \"float3\"  0.94897312 -0.24567372 -0.19763786 0.88842446\n\t\t -0.40018898 -0.22467723 0.92318505 -0.32377061 -0.20700702 0.92986858 -0.32041353\n\t\t -0.18066955 0.92986858 -0.32041353 -0.18066955 0.89989942 -0.38911071 -0.19678332\n\t\t 0.88842446 -0.40018898 -0.22467723 0.84398949 -0.47172436 -0.2551347 0.88842446 -0.40018898\n\t\t -0.22467723 0.89989942 -0.38911071 -0.19678332 0.88842446 -0.40018898 -0.22467723\n\t\t 0.84398949 -0.47172436 -0.2551347 0.84502715 -0.44730955 -0.29294714 0.80248433 -0.43693328\n\t\t -0.4063234 0.84502715 -0.44730955 -0.29294714 0.84398949 -0.47172436 -0.2551347 0.84398949\n\t\t -0.47172436 -0.2551347 0.80632973 -0.48512203 -0.33826712 0.80248433 -0.43693328\n\t\t -0.4063234 0.80632973 -0.48512203 -0.33826712 0.84398949 -0.47172436 -0.2551347 0.86233115\n\t\t -0.45435932 -0.22342598 0.89989942 -0.38911071 -0.19678332 0.86233115 -0.45435932\n\t\t -0.22342598 0.84398949 -0.47172436 -0.2551347 0.86233115 -0.45435932 -0.22342598\n\t\t 0.8211922 -0.48814332 -0.29544967 0.80632973 -0.48512203 -0.33826712 0.84502715 -0.44730955\n\t\t -0.29294714 0.91985852 -0.30191934 -0.25025174 0.88842446 -0.40018898 -0.22467723\n\t\t 0.80248433 -0.43693328 -0.4063234 0.80632973 -0.48512203 -0.33826712 0.76433617 -0.44724855\n\t\t -0.46446118 0.76433617 -0.44724855 -0.46446118 0.80632973 -0.48512203 -0.33826712\n\t\t 0.8211922 -0.48814332 -0.29544967 0.8211922 -0.48814332 -0.29544967 0.78026682 -0.44654661\n\t\t -0.43784901 0.76433617 -0.44724855 -0.46446118 0.52632242 -0.80983901 -0.25904104\n\t\t 0.54881459 -0.79833353 -0.24774919 0.53968954 -0.8006224 -0.2601397 0.53968954 -0.8006224\n\t\t -0.2601397 0.52198881 -0.8162784 -0.24729142 0.52632242 -0.80983901 -0.25904104 0.50871325\n\t\t -0.82866889 -0.2334055 0.52632242 -0.80983901 -0.25904104 0.52198881 -0.8162784 -0.24729142\n\t\t 0.52198881 -0.8162784 -0.24729142 0.50428808 -0.8321175 -0.23068935 0.50871325 -0.82866889\n\t\t -0.2334055 0.56605756 -0.7976926 -0.20786151 0.53968954 -0.8006224 -0.2601397 0.54881459\n\t\t -0.79833353 -0.24774919 0.54881459 -0.79833353 -0.24774919 0.5763728 -0.80138534\n\t\t -0.15976433 0.56605756 -0.7976926 -0.20786151 0.5570851 -0.82821113 -0.060609695\n\t\t 0.56605756 -0.7976926 -0.20786151 0.5763728 -0.80138534 -0.15976433 0.5763728 -0.80138534\n\t\t -0.15976433 0.55732924 -0.82995069 -0.022461561 0.5570851 -0.82821113 -0.060609695\n\t\t 0.48521405 -0.86794621 0.10599085 0.5570851 -0.82821113 -0.060609695 0.55732924 -0.82995069\n\t\t -0.022461561 0.55732924 -0.82995069 -0.022461561 0.47657731 -0.87093711 0.11960211\n\t\t 0.48521405 -0.86794621 0.10599085 0.36234653 -0.90017384 0.2416151 0.48521405 -0.86794621\n\t\t 0.10599085 0.47657731 -0.87093711 0.11960211 0.47657731 -0.87093711 0.11960211 0.35343513\n\t\t -0.90411073 0.24005868 0.36234653 -0.90017384 0.2416151 0.57094049 -0.8105104 0.13058876\n\t\t 0.36234653 -0.90017384 0.2416151 0.35343513 -0.90411073 0.24005868 0.35343513 -0.90411073\n\t\t 0.24005868 0.41047421 -0.8755759 0.25467703 0.57094049 -0.8105104 0.13058876 0.60109282\n\t\t -0.78902537 0.12677395 0.57094049 -0.8105104 0.13058876 0.41047421 -0.8755759 0.25467703\n\t\t 0.41047421 -0.8755759 0.25467703 0.58171356 -0.78514951 0.21234785 0.60109282 -0.78902537\n\t\t 0.12677395 0.717704 -0.67769378 0.15991704 0.60109282 -0.78902537 0.12677395 0.58171356\n\t\t -0.78514951 0.21234785 0.58171356 -0.78514951 0.21234785 0.80227077 -0.5520491 0.22702724\n\t\t 0.717704 -0.67769378 0.15991704 0.85595274 -0.40736082 -0.31833854 0.84856725 -0.41257948\n\t\t -0.33115631 0.78194541 -0.61992222 -0.064912826 0.78194541 -0.61992222 -0.064912826\n\t\t 0.79482424 -0.60469353 -0.050569125 0.85595274 -0.40736082 -0.31833854 0.82915747\n\t\t -0.23612151 -0.50666827 0.84856725 -0.41257948 -0.33115631 0.85595274 -0.40736082\n\t\t -0.31833854 0.85595274 -0.40736082 -0.31833854 0.82854706 -0.2245855 -0.51283306\n\t\t 0.82915747 -0.23612151 -0.50666827 0.74742889 -0.23181841 -0.62254709 0.82915747\n\t\t -0.23612151 -0.50666827 0.82854706 -0.2245855 -0.51283306 0.82854706 -0.2245855 -0.51283306\n\t\t 0.73882264 -0.23023146 -0.63332009 0.74742889 -0.23181841 -0.62254709 0.67726684\n\t\t -0.23413785 -0.69747001 0.74742889 -0.23181841 -0.62254709 0.73882264 -0.23023146\n\t\t -0.63332009 0.73882264 -0.23023146 -0.63332009 0.67485589 -0.23248984 -0.70033878\n\t\t 0.67726684 -0.23413785 -0.69747001 0.6530351 -0.23429045 -0.72014529 0.67726684 -0.23413785\n\t\t -0.69747001 0.67485589 -0.23248984 -0.70033878 0.67485589 -0.23248984 -0.70033878\n\t\t 0.65309614 -0.23389371 -0.72020632 0.6530351 -0.23429045 -0.72014529 0.65260786 -0.23398526\n\t\t -0.72063357 0.6530351 -0.23429045 -0.72014529 0.65309614 -0.23389371 -0.72020632\n\t\t 0.76238304 -0.6470837 0.00054938131 0.79482424 -0.60469353 -0.050569125 0.78194541\n\t\t -0.61992222 -0.064912826 0.78194541 -0.61992222 -0.064912826 0.57094049 -0.8105104\n\t\t 0.13058876 0.76238304 -0.6470837 0.00054938131 0.72679853 -0.68544549 0.043488927\n\t\t 0.76238304 -0.6470837 0.00054938131 0.57094049 -0.8105104 0.13058876 0.57094049 -0.8105104\n\t\t 0.13058876 0.60109282 -0.78902537 0.12677395 0.72679853 -0.68544549 0.043488927 0.68605632\n\t\t -0.72487539 0.061738998 0.72679853 -0.68544549 0.043488927 0.60109282 -0.78902537\n\t\t 0.12677395 0.60109282 -0.78902537 0.12677395 0.717704 -0.67769378 0.15991704 0.68605632\n\t\t -0.72487539 0.061738998 0.40647602 -0.027558157 -0.9132359 0.40372938 -0.093356058\n\t\t -0.91006196 0.38749346 0.19675289 -0.90060121 0.38749346 0.19675289 -0.90060121 0.38523507\n\t\t 0.20056771 -0.90072328 0.40647602 -0.027558157 -0.9132359 0.40516368 0.2099674 -0.88976717\n\t\t 0.38523507 0.20056771 -0.90072328 0.38749346 0.19675289 -0.90060121 0.38749346 0.19675289\n\t\t -0.90060121 0.40614027 0.20954014 -0.88943142 0.40516368 0.2099674 -0.88976717 -0.96896273\n\t\t 0.23453444 0.077700108 -0.96902376 0.23459548 0.076815076 -0.97332686 0.22931579\n\t\t 0.0038147967 -0.97332686 0.22931579 0.0038147967 -0.97296065 0.23084171 -1.7178674e-08\n\t\t -0.96896273 0.23453444 0.077700108 -0.96218765 0.25330332 0.10007017 -0.96902376\n\t\t 0.23459548 0.076815076 -0.96896273 0.23453444 0.077700108;\n\tsetAttr \".n[24900:25065]\" -type \"float3\"  -0.96896273 0.23453444 0.077700108 -0.96072274\n\t\t 0.25733179 0.10376291 -0.96218765 0.25330332 0.10007017 -0.89602357 0.41450211 0.15906245\n\t\t -0.89983839 0.4115113 0.14456615 -0.96218765 0.25330332 0.10007017 -0.96218765 0.25330332\n\t\t 0.10007017 -0.96072274 0.25733179 0.10376291 -0.89602357 0.41450211 0.15906245 -0.78383756\n\t\t 0.57249647 0.24042477 -0.89983839 0.4115113 0.14456615 -0.89602357 0.41450211 0.15906245\n\t\t -0.89602357 0.41450211 0.15906245 -0.7589345 0.60002416 0.25284582 -0.78383756 0.57249647\n\t\t 0.24042477 -0.78383756 0.57249647 0.24042477 -0.7589345 0.60002416 0.25284582 -0.78054154\n\t\t 0.46522394 0.41746265 -0.78054154 0.46522394 0.41746265 -0.79186386 0.43479699 0.42878503\n\t\t -0.78383756 0.57249647 0.24042477 -0.79186386 0.43479699 0.42878503 -0.78054154 0.46522394\n\t\t 0.41746265 -0.74315631 0.32377067 0.58552814 -0.74315631 0.32377067 0.58552814 -0.73790717\n\t\t 0.31415734 0.59727776 -0.79186386 0.43479699 0.42878503 -0.73790717 0.31415734 0.59727776\n\t\t -0.74315631 0.32377067 0.58552814 -0.6759851 0.31064776 0.66820276 -0.6759851 0.31064776\n\t\t 0.66820276 -0.66811132 0.31174642 0.67558825 -0.73790717 0.31415734 0.59727776 -0.66811132\n\t\t 0.31174642 0.67558825 -0.6759851 0.31064776 0.66820276 -0.6196174 0.32886735 0.71266824\n\t\t -0.6196174 0.32886735 0.71266824 -0.61647403 0.32987446 0.71489608 -0.66811132 0.31174642\n\t\t 0.67558825 -0.6017946 0.33460483 0.72511977 -0.61647403 0.32987446 0.71489608 -0.6196174\n\t\t 0.32886735 0.71266824 -0.6196174 0.32886735 0.71266824 -0.6017946 0.33460483 0.72511977\n\t\t -0.6017946 0.33460483 0.72511977 -0.60182512 0.33460483 0.72511977 -0.6017946 0.33460483\n\t\t 0.72511977 -0.6017946 0.33460483 0.72511977 -0.6017946 0.33460483 0.72511977 -0.60182512\n\t\t 0.33460483 0.72511977 -0.60182512 0.33460483 0.72511977 3.0209301e-05 1 -7.441745e-08\n\t\t 0.0017087273 0.99996948 0.001281703 0.0012204312 0.99996948 0.0019531102 -0.039979558\n\t\t 0.99896234 0.020752512 0.0012204312 0.99996948 0.0019531102 0.0017087273 0.99996948\n\t\t 0.001281703 -0.039979558 0.99896234 0.020752512 0.0017087273 0.99996948 0.001281703\n\t\t 0.003722949 0.99996948 0.0014648141 -0.039979558 0.99896234 0.020752512 0.003722949\n\t\t 0.99996948 0.0014648141 -0.060823698 0.99746698 0.036072806 -0.047365036 0.99859613\n\t\t 0.022949845 -0.039979558 0.99896234 0.020752512 -0.060823698 0.99746698 0.036072806\n\t\t -0.060823698 0.99746698 0.036072806 -0.048829924 0.9985351 0.022797253 -0.047365036\n\t\t 0.99859613 0.022949845 -0.047365036 0.99859613 0.022949845 -0.048829924 0.9985351\n\t\t 0.022797253 -0.024476154 0.99942017 0.023438141 -0.024476154 0.99942017 0.023438141\n\t\t -0.021821044 0.99945068 0.023712806 -0.047365036 0.99859613 0.022949845 -0.021821044\n\t\t 0.99945068 0.023712806 -0.024476154 0.99942017 0.023438141 -0.023591116 0.99942017\n\t\t 0.023468658 0.717704 -0.67769378 0.15991704 0.80227077 -0.5520491 0.22702724 0.82750952\n\t\t -0.47657675 0.29676202 0.54298544 -0.46085978 0.70192575 0.54625094 -0.45164317 0.70537436\n\t\t 0.51933366 -0.52958745 0.67064428 0.54448086 -0.38807312 0.7435835 0.54625094 -0.45164317\n\t\t 0.70537436 0.54298544 -0.46085978 0.70192575 0.54298544 -0.46085978 0.70192575 0.54365683\n\t\t -0.38822573 0.7441023 0.54448086 -0.38807312 0.7435835 -0.032746114 -0.79018533 -0.61192656\n\t\t -0.030396191 -0.78981906 -0.61253697 0.016785379 -0.64503926 -0.76393926 0.016785379\n\t\t -0.64503926 -0.76393926 0.30497167 -0.67302465 -0.67375708 -0.032746114 -0.79018533\n\t\t -0.61192656 -0.28116673 -0.95416129 -0.10232849 -0.28116673 -0.95416129 -0.10232849\n\t\t -0.28116673 -0.95416129 -0.10232849 -0.28116673 -0.95416129 -0.10232849 -0.28116673\n\t\t -0.95416129 -0.10232849 -0.28116673 -0.95416129 -0.10232849 -0.43397295 -0.78783536\n\t\t 0.43696406 -0.43238601 -0.78862888 0.43708616 -0.44267079 -0.61525321 0.65227216\n\t\t -0.44267079 -0.61525321 0.65227216 -0.4941555 -0.65868109 0.56736964 -0.43397295\n\t\t -0.78783536 0.43696406 0.54615945 -0.60188591 -0.58256775 0.61735916 -0.69145769\n\t\t -0.37507242 0.61915976 -0.69145769 -0.37214264 0.61915976 -0.69145769 -0.37214264\n\t\t 0.30497167 -0.67302465 -0.67375708 0.54615945 -0.60188591 -0.58256775 0.23465703\n\t\t -0.6915493 0.68312639 0.23487066 -0.6902675 0.68434709 0.23459598 -0.69185448 0.68282121\n\t\t 0.23459598 -0.69185448 0.68282121 0.23432133 -0.693533 0.68123424 0.23465703 -0.6915493\n\t\t 0.68312639 -0.52107298 -0.23386344 0.82082582 -0.54969925 -0.38261068 0.74254584\n\t\t -0.4539322 -0.38279375 0.80458999 -0.4539322 -0.38279375 0.80458999 -0.51185638 -0.23465693\n\t\t 0.82638019 -0.52107298 -0.23386344 0.82082582 -0.4539322 -0.38279375 0.80458999 -0.54969925\n\t\t -0.38261068 0.74254584 -0.4941555 -0.65868109 0.56736964 -0.4941555 -0.65868109 0.56736964\n\t\t -0.44267079 -0.61525321 0.65227216 -0.4539322 -0.38279375 0.80458999 0.024811724\n\t\t -0.57237458 0.81960517 -0.085939936 -0.6040833 0.79223007 -0.4539322 -0.38279375\n\t\t 0.80458999 -0.4539322 -0.38279375 0.80458999 -0.44267079 -0.61525321 0.65227216 0.024811724\n\t\t -0.57237458 0.81960517 0.16647857 -0.33646658 -0.92684716 0.099795632 -0.33664972\n\t\t -0.93630785 0.090426393 -0.16922519 -0.9814142 0.090426393 -0.16922519 -0.9814142\n\t\t 0.48039201 -0.45747235 -0.74825275 0.16647857 -0.33646658 -0.92684716 0.016785379\n\t\t -0.64503926 -0.76393926 0.099795632 -0.33664972 -0.93630785 0.16647857 -0.33646658\n\t\t -0.92684716 0.16647857 -0.33646658 -0.92684716 0.30497167 -0.67302465 -0.67375708\n\t\t 0.016785379 -0.64503926 -0.76393926 0.30497167 -0.67302465 -0.67375708 0.16647857\n\t\t -0.33646658 -0.92684716 0.48039201 -0.45747235 -0.74825275 0.48039201 -0.45747235\n\t\t -0.74825275 0.54615945 -0.60188591 -0.58256775 0.30497167 -0.67302465 -0.67375708\n\t\t 0.51387089 -0.83721411 0.18701749 0.51387089 -0.83721411 0.18701749 0.51387089 -0.83721411\n\t\t 0.18701749 0.51387089 -0.83721411 0.18701749 0.51387089 -0.83721411 0.18701749 0.51387089\n\t\t -0.83721411 0.18701749 0.77227068 0.635243 -0.0046083424 0.87325644 0.48664841 0.023163514\n\t\t 0.92651135 0.27210331 -0.2598041 0.92651135 0.27210331 -0.2598041;\n\tsetAttr \".n[25066:25231]\" -type \"float3\"  0.82543403 0.43504158 -0.35966066 0.77227068\n\t\t 0.635243 -0.0046083424 0.81881142 0.5068211 0.26950893 0.87325644 0.48664841 0.023163514\n\t\t 0.77227068 0.635243 -0.0046083424 0.77227068 0.635243 -0.0046083424 0.71846658 0.65587354\n\t\t 0.23148285 0.81881142 0.5068211 0.26950893 0.54115415 0.27207276 0.79567856 0.54527408\n\t\t 0.44407508 0.71092862 0.44007674 0.57237482 0.69185454 0.44007674 0.57237482 0.69185454\n\t\t 0.40351561 0.42902938 0.80813009 0.54115415 0.27207276 0.79567856 0.82030696 0.096469216\n\t\t -0.56367689 0.82543403 0.43504158 -0.35966066 0.92651135 0.27210331 -0.2598041 0.92651135\n\t\t 0.27210331 -0.2598041 0.8750267 -0.005615171 -0.48402357 0.82030696 0.096469216 -0.56367689\n\t\t 0.33927426 -0.016022041 0.94051945 0.54115415 0.27207276 0.79567856 0.40351561 0.42902938\n\t\t 0.80813009 0.40351561 0.42902938 0.80813009 0.26947841 0.089938201 0.9587695 0.33927426\n\t\t -0.016022041 0.94051945 -0.44663817 -0.69695127 0.56099129 -0.085939936 -0.6040833\n\t\t 0.79223007 -0.30857247 -0.58763397 0.74794769 -0.30857247 -0.58763397 0.74794769\n\t\t -0.42872378 -0.73024696 0.53187662 -0.44663817 -0.69695127 0.56099129 -0.42872378\n\t\t -0.73024696 0.53187662 -0.30857247 -0.58763397 0.74794769 -0.37217301 -0.62920016\n\t\t 0.68230236 -0.37217301 -0.62920016 0.68230236 -0.39948711 -0.56117439 0.72487569\n\t\t -0.42872378 -0.73024696 0.53187662 0.93838316 -0.25366953 0.23468736 0.96475118 -0.19376171\n\t\t 0.1778924 0.96154672 -0.20508407 0.18253122 0.96154672 -0.20508407 0.18253122 0.93893254\n\t\t -0.27439159 0.2075564 0.93838316 -0.25366953 0.23468736 0.94488358 -0.059815966 0.3218177\n\t\t 0.96154672 -0.20508407 0.18253122 0.96475118 -0.19376171 0.1778924 0.96475118 -0.19376171\n\t\t 0.1778924 0.95715201 -0.080354914 0.27817622 0.94488358 -0.059815966 0.3218177 0.93032622\n\t\t -0.058381595 0.36198005 0.94488358 -0.059815966 0.3218177 0.95715201 -0.080354914\n\t\t 0.27817622 0.95715201 -0.080354914 0.27817622 0.9009369 -0.094179817 0.42353588 0.93032622\n\t\t -0.058381595 0.36198005 0.8526262 -0.21146245 0.47773677 0.93032622 -0.058381595\n\t\t 0.36198005 0.9009369 -0.094179817 0.42353588 0.9009369 -0.094179817 0.42353588 0.85311449\n\t\t -0.20517564 0.4795984 0.8526262 -0.21146245 0.47773677 0.85326707 -0.27048525 0.4458144\n\t\t 0.8526262 -0.21146245 0.47773677 0.85311449 -0.20517564 0.4795984 0.85311449 -0.20517564\n\t\t 0.4795984 0.88775301 -0.23706749 0.39454332 0.85326707 -0.27048525 0.4458144 0.93838316\n\t\t -0.25366953 0.23468736 0.93893254 -0.27439159 0.2075564 0.93520933 -0.30057651 0.18707849\n\t\t 0.93520933 -0.30057651 0.18707849 0.9200111 -0.34702566 0.18192087 0.93838316 -0.25366953\n\t\t 0.23468736 0.88998091 -0.40125707 0.21655938 0.9200111 -0.34702566 0.18192087 0.93520933\n\t\t -0.30057651 0.18707849 0.93520933 -0.30057651 0.18707849 0.8507036 -0.44492906 0.27985477\n\t\t 0.88998091 -0.40125707 0.21655938 0.82131422 -0.40736076 0.39927369 0.88998091 -0.40125707\n\t\t 0.21655938 0.8507036 -0.44492906 0.27985477 0.8507036 -0.44492906 0.27985477 0.83239245\n\t\t -0.44682121 0.32773831 0.82131422 -0.40736076 0.39927369 0.82122266 -0.34888729 0.45146033\n\t\t 0.82131422 -0.40736076 0.39927369 0.83239245 -0.44682121 0.32773831 0.83239245 -0.44682121\n\t\t 0.32773831 0.836604 -0.30048496 0.4579913 0.82122266 -0.34888729 0.45146033 0.836604\n\t\t -0.30048496 0.4579913 0.85326707 -0.27048525 0.4458144 0.88775301 -0.23706749 0.39454332\n\t\t 0.88775301 -0.23706749 0.39454332 0.82122266 -0.34888729 0.45146033 0.836604 -0.30048496\n\t\t 0.4579913 0.86092722 -0.14032386 -0.48893705 0.82030696 0.096469216 -0.56367689 0.8750267\n\t\t -0.005615171 -0.48402357 0.8750267 -0.005615171 -0.48402357 0.91998053 -0.18011999\n\t\t -0.34803307 0.86092722 -0.14032386 -0.48893705 0.44621086 0.8341015 -0.32419819 0.4987027\n\t\t 0.86230063 -0.087771304 0.77227068 0.635243 -0.0046083424 0.77227068 0.635243 -0.0046083424\n\t\t 0.82543403 0.43504158 -0.35966066 0.44621086 0.8341015 -0.32419819 0.26947841 0.089938201\n\t\t 0.9587695 0.36381119 -0.12778081 0.92263556 0.47947636 -0.15655975 0.86346018 0.47947636\n\t\t -0.15655975 0.86346018 0.33927426 -0.016022041 0.94051945 0.26947841 0.089938201\n\t\t 0.9587695 0.33295667 0.86709201 0.3704336 0.092440374 0.61778623 0.78084654 0.40351561\n\t\t 0.42902938 0.80813009 0.40351561 0.42902938 0.80813009 0.44007674 0.57237482 0.69185454\n\t\t 0.33295667 0.86709201 0.3704336 0.26947841 0.089938201 0.9587695 0.40351561 0.42902938\n\t\t 0.80813009 0.092440374 0.61778623 0.78084654 0.092440374 0.61778623 0.78084654 -0.078280039\n\t\t 0.1933348 0.97799617 0.26947841 0.089938201 0.9587695 -0.043458134 -0.72066414 -0.69191557\n\t\t -0.032440949 -0.74053168 -0.67122406 -0.042328957 -0.7016511 -0.71123379 -0.042328957\n\t\t -0.7016511 -0.71123379 -0.03866674 -0.68501854 -0.72746962 -0.043458134 -0.72066414\n\t\t -0.69191557 0.13592963 -0.63798946 -0.75792712 -0.042328957 -0.7016511 -0.71123379\n\t\t -0.032440949 -0.74053168 -0.67122406 -0.032440949 -0.74053168 -0.67122406 0.14758769\n\t\t -0.58531451 -0.79723495 0.13592963 -0.63798946 -0.75792712 0.82030696 0.096469216\n\t\t -0.56367689 0.86092722 -0.14032386 -0.48893705 0.5618763 -0.043122541 -0.82607502\n\t\t 0.5618763 -0.043122541 -0.82607502 0.56880391 0.19489132 -0.79900509 0.82030696 0.096469216\n\t\t -0.56367689 0.26947841 0.089938201 0.9587695 -0.078280039 0.1933348 0.97799617 -0.10257269\n\t\t -0.042268094 0.99380475 -0.10257269 -0.042268094 0.99380475 0.36381119 -0.12778081\n\t\t 0.92263556 0.26947841 0.089938201 0.9587695 0.77227068 0.635243 -0.0046083424 0.4987027\n\t\t 0.86230063 -0.087771304 0.33295667 0.86709201 0.3704336 0.33295667 0.86709201 0.3704336\n\t\t 0.71846658 0.65587354 0.23148285 0.77227068 0.635243 -0.0046083424 0.34403515 0.0091861077\n\t\t -0.93887144 0.56880391 0.19489132 -0.79900509 0.5618763 -0.043122541 -0.82607502\n\t\t 0.5618763 -0.043122541 -0.82607502 0.34403515 0.0091861077 -0.93887144 0.34403515\n\t\t 0.0091861077 -0.93887144 -0.33985412 0.009369147 0.94039732 -0.10257269 -0.042268094\n\t\t 0.99380475;\n\tsetAttr \".n[25232:25397]\" -type \"float3\"  -0.078280039 0.1933348 0.97799617 -0.078280039\n\t\t 0.1933348 0.97799617 -0.33985412 0.009369147 0.94039732 -0.33985412 0.009369147 0.94039732\n\t\t 0.34351608 0.88039809 -0.32688382 0.29291636 0.9452194 -0.1439864 0.4987027 0.86230063\n\t\t -0.087771304 0.4987027 0.86230063 -0.087771304 0.44621086 0.8341015 -0.32419819 0.34351608\n\t\t 0.88039809 -0.32688382 0.4987027 0.86230063 -0.087771304 0.29291636 0.9452194 -0.1439864\n\t\t 0.14572558 0.95287949 0.26593822 0.14572558 0.95287949 0.26593822 0.33295667 0.86709201\n\t\t 0.3704336 0.4987027 0.86230063 -0.087771304 0.092440374 0.61778623 0.78084654 0.33295667\n\t\t 0.86709201 0.3704336 0.14572558 0.95287949 0.26593822 0.14572558 0.95287949 0.26593822\n\t\t 0.053071417 0.88042855 0.47114468 0.092440374 0.61778623 0.78084654 0.40537721 0.52305681\n\t\t -0.74968725 0.63469332 0.37562197 -0.67528307 0.56880391 0.19489132 -0.79900509 0.56880391\n\t\t 0.19489132 -0.79900509 0.40610966 0.52543724 -0.74764252 0.40537721 0.52305681 -0.74968725\n\t\t 0.092440374 0.61778623 0.78084654 -0.17389463 0.52671897 0.83202606 -0.17438293 0.52400279\n\t\t 0.83364356 -0.17438293 0.52400279 0.83364356 -0.078280039 0.1933348 0.97799617 0.092440374\n\t\t 0.61778623 0.78084654 0.56880391 0.19489132 -0.79900509 0.63469332 0.37562197 -0.67528307\n\t\t 0.82543403 0.43504158 -0.35966066 0.82543403 0.43504158 -0.35966066 0.82030696 0.096469216\n\t\t -0.56367689 0.56880391 0.19489132 -0.79900509 -0.13074115 -0.49137849 0.86104929\n\t\t -0.30857247 -0.58763397 0.74794769 -0.085939936 -0.6040833 0.79223007 -0.085939936\n\t\t -0.6040833 0.79223007 0.024811724 -0.57237458 0.81960517 -0.13074115 -0.49137849\n\t\t 0.86104929 -0.30857247 -0.58763397 0.74794769 -0.13074115 -0.49137849 0.86104929\n\t\t -0.34366879 -0.52171397 0.78081614 -0.34366879 -0.52171397 0.78081614 -0.37217301\n\t\t -0.62920016 0.68230236 -0.30857247 -0.58763397 0.74794769 0.54615945 -0.60188591\n\t\t -0.58256775 0.48039201 -0.45747235 -0.74825275 0.40171528 -0.50697345 -0.76259643\n\t\t 0.40171528 -0.50697345 -0.76259643 0.38444185 -0.55107266 -0.7405926 0.54615945 -0.60188591\n\t\t -0.58256775 0.38444185 -0.55107266 -0.7405926 0.40171528 -0.50697345 -0.76259643\n\t\t 0.13592963 -0.63798946 -0.75792712 0.13592963 -0.63798946 -0.75792712 0.22077106\n\t\t -0.53495896 -0.81548506 0.38444185 -0.55107266 -0.7405926 -0.39759499 -0.46238598\n\t\t 0.79250473 -0.39948711 -0.56117439 0.72487569 -0.37217301 -0.62920016 0.68230236\n\t\t -0.37217301 -0.62920016 0.68230236 -0.34366879 -0.52171397 0.78081614 -0.39759499\n\t\t -0.46238598 0.79250473 0.19605106 -0.48121586 -0.85436559 0.22077106 -0.53495896\n\t\t -0.81548506 0.13592963 -0.63798946 -0.75792712 0.13592963 -0.63798946 -0.75792712\n\t\t 0.14758769 -0.58531451 -0.79723495 0.19605106 -0.48121586 -0.85436559 -0.39780867\n\t\t -0.29276425 -0.86947232 -0.39951771 -0.29331356 -0.86849576 -0.40647602 -0.027588924\n\t\t -0.9132359 -0.40647602 -0.027588924 -0.9132359 -0.40372932 -0.093356311 -0.91006196\n\t\t -0.39780867 -0.29276425 -0.86947232 -0.50071728 0.37269184 -0.78124332 -0.49662784\n\t\t 0.42283374 -0.75798827 -0.50502044 0.41883582 -0.75463122 -0.50502044 0.41883582\n\t\t -0.75463122 -0.5168311 0.3830376 -0.76558733 -0.50071728 0.37269184 -0.78124332 -0.49662784\n\t\t 0.42283374 -0.75798827 -0.50071728 0.37269184 -0.78124332 -0.47975108 0.35261065\n\t\t -0.80339974 -0.47975108 0.35261065 -0.80339974 -0.48207051 0.37107435 -0.79363382\n\t\t -0.49662784 0.42283374 -0.75798827 -0.48207051 0.37107435 -0.79363382 -0.47975108\n\t\t 0.35261065 -0.80339974 -0.46363729 0.32654783 -0.82363355 -0.46363729 0.32654783\n\t\t -0.82363355 -0.46839818 0.33481836 -0.81759089 -0.48207051 0.37107435 -0.79363382\n\t\t -0.46839818 0.33481836 -0.81759089 -0.46363729 0.32654783 -0.82363355 -0.4517656\n\t\t 0.26227587 -0.85268718 -0.4517656 0.26227587 -0.85268718 -0.45948675 0.27195022 -0.84551531\n\t\t -0.46839818 0.33481836 -0.81759089 -0.45948675 0.27195022 -0.84551531 -0.4517656\n\t\t 0.26227587 -0.85268718 -0.42802215 0.23850195 -0.87170017 -0.42802215 0.23850195\n\t\t -0.87170017 -0.43256944 0.2433544 -0.86809897 -0.45948675 0.27195022 -0.84551531\n\t\t -0.4158453 0.24134018 -0.87679678 -0.43256944 0.2433544 -0.86809897 -0.42802215 0.23850195\n\t\t -0.87170017 -0.42802215 0.23850195 -0.87170017 -0.41483819 0.24433099 -0.87643057\n\t\t -0.4158453 0.24134018 -0.87679678 -0.40681183 0.25638583 -0.87676626 -0.4158453 0.24134018\n\t\t -0.87679678 -0.41483819 0.24433099 -0.87643057 -0.41483819 0.24433099 -0.87643057\n\t\t -0.40562159 0.25785071 -0.87688833 -0.40681183 0.25638583 -0.87676626 -0.61705369\n\t\t -0.2530292 -0.74507886 -0.60411382 -0.24939752 -0.75682849 -0.59825426 -0.18372166\n\t\t -0.77993101 -0.59825426 -0.18372166 -0.77993101 -0.61876273 -0.19779071 -0.76021606\n\t\t -0.61705369 -0.2530292 -0.74507886 -0.60411382 -0.24939752 -0.75682849 -0.61705369\n\t\t -0.2530292 -0.74507886 -0.64000356 -0.30463603 -0.7053743 -0.64000356 -0.30463603\n\t\t -0.7053743 -0.63310635 -0.30378151 -0.71193576 -0.60411382 -0.24939752 -0.75682849\n\t\t -0.66322815 -0.34159395 -0.66585284 -0.64000356 -0.30463603 -0.7053743 -0.61705369\n\t\t -0.2530292 -0.74507886 -0.61705369 -0.2530292 -0.74507886 -0.64696175 -0.30216402\n\t\t -0.70006406 -0.66322815 -0.34159395 -0.66585284 -0.64696175 -0.30216402 -0.70006406\n\t\t -0.61705369 -0.2530292 -0.74507886 -0.61876273 -0.19779071 -0.76021606 -0.61876273\n\t\t -0.19779071 -0.76021606 -0.64195681 -0.26541975 -0.71932125 -0.64696175 -0.30216402\n\t\t -0.70006406 -0.63310635 -0.30378151 -0.71193576 -0.64000356 -0.30463603 -0.7053743\n\t\t -0.68709362 -0.34788075 -0.63780636 -0.68709362 -0.34788075 -0.63780636 -0.69273955\n\t\t -0.34974238 -0.630665 -0.63310635 -0.30378151 -0.71193576 -0.69273955 -0.34974238\n\t\t -0.630665 -0.68709362 -0.34788075 -0.63780636 -0.74846631 -0.39448252 -0.53300577\n\t\t -0.74846631 -0.39448252 -0.53300577 -0.74782544 -0.39631364 -0.53260905 -0.69273955\n\t\t -0.34974238 -0.630665 -0.74846631 -0.39448252 -0.53300577 -0.68709362 -0.34788075\n\t\t -0.63780636 -0.71059287 -0.38422826 -0.58940399 -0.71059287 -0.38422826 -0.58940399\n\t\t -0.68709362 -0.34788075 -0.63780636 -0.64000356 -0.30463603 -0.7053743;\n\tsetAttr \".n[25398:25563]\" -type \"float3\"  -0.64000356 -0.30463603 -0.7053743 -0.66322815\n\t\t -0.34159395 -0.66585284 -0.71059287 -0.38422826 -0.58940399 -0.71059287 -0.38422826\n\t\t -0.58940399 -0.76433593 -0.44721851 -0.46446118 -0.74846631 -0.39448252 -0.53300577\n\t\t -0.72280025 -0.38612041 -0.57307655 -0.71059287 -0.38422826 -0.58940399 -0.66322815\n\t\t -0.34159395 -0.66585284 -0.66322815 -0.34159395 -0.66585284 -0.67659521 -0.35883689\n\t\t -0.64296395 -0.72280025 -0.38612041 -0.57307655 -0.67659521 -0.35883689 -0.64296395\n\t\t -0.66322815 -0.34159395 -0.66585284 -0.64696175 -0.30216402 -0.70006406 -0.64696175\n\t\t -0.30216402 -0.70006406 -0.67052203 -0.3422043 -0.65822321 -0.67659521 -0.35883689\n\t\t -0.64296395 -0.65709388 -0.31818625 -0.68330944 -0.67052203 -0.3422043 -0.65822321\n\t\t -0.64696175 -0.30216402 -0.70006406 -0.64696175 -0.30216402 -0.70006406 -0.64195681\n\t\t -0.26541975 -0.71932125 -0.65709388 -0.31818625 -0.68330944 -0.78026658 -0.44654709\n\t\t -0.43784901 -0.76433593 -0.44721851 -0.46446118 -0.71059287 -0.38422826 -0.58940399\n\t\t -0.71059287 -0.38422826 -0.58940399 -0.72280025 -0.38612041 -0.57307655 -0.78026658\n\t\t -0.44654709 -0.43784901 -0.74782544 -0.39631364 -0.53260905 -0.74846631 -0.39448252\n\t\t -0.53300577 -0.8024841 -0.43693376 -0.4063234 -0.8024841 -0.43693376 -0.4063234 -0.74846631\n\t\t -0.39448252 -0.53300577 -0.76433593 -0.44721851 -0.46446118 -0.8024841 -0.43693376\n\t\t -0.4063234 -0.78127372 -0.45765585 -0.42435986 -0.74782544 -0.39631364 -0.53260905\n\t\t -0.78127372 -0.45765585 -0.42435986 -0.8024841 -0.43693376 -0.4063234 -0.84502691\n\t\t -0.44731009 -0.29294714 -0.84502691 -0.44731009 -0.29294714 -0.78930002 -0.53175473\n\t\t -0.30695513 -0.78127372 -0.45765585 -0.42435986 -0.78930002 -0.53175473 -0.30695513\n\t\t -0.84502691 -0.44731009 -0.29294714 -0.91985828 -0.30191994 -0.25025174 -0.91985828\n\t\t -0.30191994 -0.25025174 -0.87588108 -0.4177987 -0.2412793 -0.78930002 -0.53175473\n\t\t -0.30695513 -0.87588108 -0.4177987 -0.2412793 -0.91985828 -0.30191994 -0.25025174\n\t\t -0.96072263 -0.20056796 -0.19165622 -0.96072263 -0.20056796 -0.19165622 -0.95461893\n\t\t -0.21628499 -0.20465711 -0.87588108 -0.4177987 -0.2412793 -0.97173983 -0.18231788\n\t\t -0.1499069 -0.96072263 -0.20056796 -0.19165622 -0.91985828 -0.30191994 -0.25025174\n\t\t -0.91985828 -0.30191994 -0.25025174 -0.948973 -0.24567431 -0.19763786 -0.97173983\n\t\t -0.18231788 -0.1499069 -0.87588108 -0.4177987 -0.2412793 -0.95461893 -0.21628499\n\t\t -0.20465711 -0.96520883 -0.20188025 -0.16614275 -0.96520883 -0.20188025 -0.16614275\n\t\t -0.95931876 -0.25003844 -0.13092439 -0.87588108 -0.4177987 -0.2412793 -0.96520883\n\t\t -0.20188025 -0.16614275 -0.95461893 -0.21628499 -0.20465711 -0.97726363 -0.17807582\n\t\t -0.11484113 -0.97726363 -0.17807582 -0.11484113 -0.95461893 -0.21628499 -0.20465711\n\t\t -0.96072263 -0.20056796 -0.19165622 -0.97726363 -0.17807582 -0.11484113 -0.97375405\n\t\t -0.18994752 -0.12527847 -0.96520883 -0.20188025 -0.16614275 -0.98199403 -0.13870694\n\t\t -0.12811668 -0.97173983 -0.18231788 -0.1499069 -0.948973 -0.24567431 -0.19763786\n\t\t -0.948973 -0.24567431 -0.19763786 -0.96258426 -0.2153084 -0.16431163 -0.98199403\n\t\t -0.13870694 -0.12811668 -0.96072263 -0.20056796 -0.19165622 -0.97173983 -0.18231788\n\t\t -0.1499069 -0.98406929 -0.16754691 -0.059022788 -0.98406929 -0.16754691 -0.059022788\n\t\t -0.98095638 -0.17835046 -0.076479368 -0.96072263 -0.20056796 -0.19165622 -0.96072263\n\t\t -0.20056796 -0.19165622 -0.98095638 -0.17835046 -0.076479368 -0.97726363 -0.17807582\n\t\t -0.11484113 -0.98745686 -0.14426129 -0.063783675 -0.98406929 -0.16754691 -0.059022788\n\t\t -0.97173983 -0.18231788 -0.1499069 -0.97173983 -0.18231788 -0.1499069 -0.98199403\n\t\t -0.13870694 -0.12811668 -0.98745686 -0.14426129 -0.063783675 -0.948973 -0.24567431\n\t\t -0.19763786 -0.91985828 -0.30191994 -0.25025174 -0.92318481 -0.32377121 -0.20700702\n\t\t -0.92318481 -0.32377121 -0.20700702 -0.91985828 -0.30191994 -0.25025174 -0.88842422\n\t\t -0.40018952 -0.22467723 -0.88842422 -0.40018952 -0.22467723 -0.91985828 -0.30191994\n\t\t -0.25025174 -0.84502691 -0.44731009 -0.29294714 -0.84502691 -0.44731009 -0.29294714\n\t\t -0.84398925 -0.4717249 -0.2551347 -0.88842422 -0.40018952 -0.22467723 -0.84398925\n\t\t -0.4717249 -0.2551347 -0.84502691 -0.44731009 -0.29294714 -0.8024841 -0.43693376\n\t\t -0.4063234 -0.8024841 -0.43693376 -0.4063234 -0.80632937 -0.4851225 -0.33826712 -0.84398925\n\t\t -0.4717249 -0.2551347 -0.86233091 -0.45435986 -0.22342598 -0.84398925 -0.4717249\n\t\t -0.2551347 -0.80632937 -0.4851225 -0.33826712 -0.80632937 -0.4851225 -0.33826712\n\t\t -0.82119185 -0.48814386 -0.29544967 -0.86233091 -0.45435986 -0.22342598 -0.76433593\n\t\t -0.44721851 -0.46446118 -0.80632937 -0.4851225 -0.33826712 -0.8024841 -0.43693376\n\t\t -0.4063234 -0.82119185 -0.48814386 -0.29544967 -0.80632937 -0.4851225 -0.33826712\n\t\t -0.76433593 -0.44721851 -0.46446118 -0.76433593 -0.44721851 -0.46446118 -0.78026658\n\t\t -0.44654709 -0.43784901 -0.82119185 -0.48814386 -0.29544967 -0.84398925 -0.4717249\n\t\t -0.2551347 -0.86233091 -0.45435986 -0.22342598 -0.89989918 -0.38911125 -0.19678332\n\t\t -0.89989918 -0.38911125 -0.19678332 -0.88842422 -0.40018952 -0.22467723 -0.84398925\n\t\t -0.4717249 -0.2551347 -0.88842422 -0.40018952 -0.22467723 -0.89989918 -0.38911125\n\t\t -0.19678332 -0.92986834 -0.32041413 -0.18066955 -0.92986834 -0.32041413 -0.18066955\n\t\t -0.92318481 -0.32377121 -0.20700702 -0.88842422 -0.40018952 -0.22467723 -0.948973\n\t\t -0.24567431 -0.19763786 -0.92318481 -0.32377121 -0.20700702 -0.92986834 -0.32041413\n\t\t -0.18066955 -0.92986834 -0.32041413 -0.18066955 -0.96258426 -0.2153084 -0.16431163\n\t\t -0.948973 -0.24567431 -0.19763786 -0.52632195 -0.80983937 -0.25907156 -0.52198833\n\t\t -0.81627876 -0.24729142 -0.53971958 -0.80062276 -0.2601397 -0.53971958 -0.80062276\n\t\t -0.2601397 -0.54884464 -0.79833388 -0.24774919 -0.52632195 -0.80983937 -0.25907156\n\t\t -0.52198833 -0.81627876 -0.24729142 -0.52632195 -0.80983937 -0.25907156 -0.50871277\n\t\t -0.82866925 -0.2334055 -0.50871277 -0.82866925 -0.2334055 -0.5042876 -0.83214837\n\t\t -0.23068935 -0.52198833 -0.81627876 -0.24729142 -0.54884464 -0.79833388 -0.24774919\n\t\t -0.53971958 -0.80062276 -0.2601397 -0.56605709 -0.79769295 -0.20786151 -0.56605709\n\t\t -0.79769295 -0.20786151;\n\tsetAttr \".n[25564:25729]\" -type \"float3\"  -0.57637233 -0.8013857 -0.15976433 -0.54884464\n\t\t -0.79833388 -0.24774919 -0.57637233 -0.8013857 -0.15976433 -0.56605709 -0.79769295\n\t\t -0.20786151 -0.55708462 -0.82821149 -0.060579177 -0.55708462 -0.82821149 -0.060579177\n\t\t -0.55729824 -0.82998157 -0.022461561 -0.57637233 -0.8013857 -0.15976433 -0.55729824\n\t\t -0.82998157 -0.022461561 -0.55708462 -0.82821149 -0.060579177 -0.71535361 -0.6905731\n\t\t -0.10654006 -0.71535361 -0.6905731 -0.10654006 -0.47657678 -0.87093735 0.11960211\n\t\t -0.55729824 -0.82998157 -0.022461561 -0.47657678 -0.87093735 0.11960211 -0.71535361\n\t\t -0.6905731 -0.10654006 -0.5794242 -0.80986989 0.091402993 -0.5794242 -0.80986989\n\t\t 0.091402993 -0.35343459 -0.90411097 0.24005868 -0.47657678 -0.87093735 0.11960211\n\t\t -0.35343459 -0.90411097 0.24005868 -0.5794242 -0.80986989 0.091402993 -0.57094002\n\t\t -0.81051075 0.13058876 -0.57094002 -0.81051075 0.13058876 -0.41047367 -0.87557614\n\t\t 0.25467703 -0.35343459 -0.90411097 0.24005868 -0.41047367 -0.87557614 0.25467703\n\t\t -0.57094002 -0.81051075 0.13058876 -0.60109234 -0.78902572 0.12677395 -0.60109234\n\t\t -0.78902572 0.12677395 -0.58171308 -0.78514987 0.21234785 -0.41047367 -0.87557614\n\t\t 0.25467703 -0.58171308 -0.78514987 0.21234785 -0.60109234 -0.78902572 0.12677395\n\t\t -0.73140639 -0.65715528 0.18198192 -0.73140639 -0.65715528 0.18198192 -0.81182271\n\t\t -0.52720749 0.2508927 -0.58171308 -0.78514987 0.21234785 -0.79229087 -0.60661668\n\t\t -0.065218009 -0.5794242 -0.80986989 0.091402993 -0.71535361 -0.6905731 -0.10654006\n\t\t -0.71535361 -0.6905731 -0.10654006 -0.87188315 -0.37958953 -0.30933559 -0.79229087\n\t\t -0.60661668 -0.065218009 -0.87188315 -0.37958953 -0.30933559 -0.71535361 -0.6905731\n\t\t -0.10654006 -0.82915735 -0.23612201 -0.50666827 -0.82915735 -0.23612201 -0.50666827\n\t\t -0.82854694 -0.22458601 -0.51283306 -0.87188315 -0.37958953 -0.30933559 -0.82854694\n\t\t -0.22458601 -0.51283306 -0.82915735 -0.23612201 -0.50666827 -0.74742877 -0.23181888\n\t\t -0.62251657 -0.74742877 -0.23181888 -0.62251657 -0.73882252 -0.23023191 -0.63332009\n\t\t -0.82854694 -0.22458601 -0.51283306 -0.73882252 -0.23023191 -0.63332009 -0.74742877\n\t\t -0.23181888 -0.62251657 -0.67726672 -0.23416878 -0.69743949 -0.67726672 -0.23416878\n\t\t -0.69743949 -0.67485577 -0.23249026 -0.70033878 -0.73882252 -0.23023191 -0.63332009\n\t\t -0.67485577 -0.23249026 -0.70033878 -0.67726672 -0.23416878 -0.69743949 -0.65303499\n\t\t -0.23429087 -0.72014529 -0.65303499 -0.23429087 -0.72014529 -0.65309602 -0.23389412\n\t\t -0.72020632 -0.67485577 -0.23249026 -0.70033878 -0.65260774 -0.23398568 -0.72063357\n\t\t -0.65309602 -0.23389412 -0.72020632 -0.65303499 -0.23429087 -0.72014529 -0.5794242\n\t\t -0.80986989 0.091402993 -0.79229087 -0.60661668 -0.065218009 -0.76238269 -0.64708418\n\t\t 0.00054938131 -0.76238269 -0.64708418 0.00054938131 -0.57094002 -0.81051075 0.13058876\n\t\t -0.5794242 -0.80986989 0.091402993 -0.57094002 -0.81051075 0.13058876 -0.76238269\n\t\t -0.64708418 0.00054938131 -0.72679806 -0.68544596 0.043488927 -0.72679806 -0.68544596\n\t\t 0.043488927 -0.60109234 -0.78902572 0.12677395 -0.57094002 -0.81051075 0.13058876\n\t\t -0.60109234 -0.78902572 0.12677395 -0.72679806 -0.68544596 0.043488927 -0.68605584\n\t\t -0.72487587 0.061738998 -0.68605584 -0.72487587 0.061738998 -0.73140639 -0.65715528\n\t\t 0.18198192 -0.60109234 -0.78902572 0.12677395 -0.40647602 -0.027588924 -0.9132359\n\t\t -0.38523519 0.20056747 -0.90072328 -0.3875241 0.19675265 -0.90060121 -0.3875241 0.19675265\n\t\t -0.90060121 -0.40372932 -0.093356311 -0.91006196 -0.40647602 -0.027588924 -0.9132359\n\t\t -0.3875241 0.19675265 -0.90060121 -0.38523519 0.20056747 -0.90072328 -0.40516379\n\t\t 0.20996717 -0.88976717 -0.40516379 0.20996717 -0.88976717 -0.40614039 0.20953991\n\t\t -0.88943142 -0.3875241 0.19675265 -0.90060121 0.9743644 0.22486067 0.002624575 0.97421181\n\t\t 0.22550157 -1.6781229e-08 0.96850485 0.23706809 0.076082632 0.96850485 0.23706809\n\t\t 0.076082632 0.96841329 0.23609149 0.079775371 0.9743644 0.22486067 0.002624575 0.96841329\n\t\t 0.23609149 0.079775371 0.96850485 0.23706809 0.076082632 0.96218753 0.25330392 0.10007017\n\t\t 0.96218753 0.25330392 0.10007017 0.96072263 0.25733238 0.10376291 0.96841329 0.23609149\n\t\t 0.079775371 0.96218753 0.25330392 0.10007017 0.89983815 0.41151184 0.14456615 0.89602333\n\t\t 0.41450265 0.15906245 0.89602333 0.41450265 0.15906245 0.96072263 0.25733238 0.10376291\n\t\t 0.96218753 0.25330392 0.10007017 0.79045975 0.56950617 0.2253181 0.78441709 0.56389076\n\t\t 0.25818655 0.89602333 0.41450265 0.15906245 0.89602333 0.41450265 0.15906245 0.89983815\n\t\t 0.41151184 0.14456615 0.79045975 0.56950617 0.2253181 0.78441709 0.56389076 0.25818655\n\t\t 0.79045975 0.56950617 0.2253181 0.78173149 0.4646751 0.41581467 0.78173149 0.4646751\n\t\t 0.41581467 0.77871019 0.44666916 0.44047362 0.78441709 0.56389076 0.25818655 0.77871019\n\t\t 0.44666916 0.44047362 0.78173149 0.4646751 0.41581467 0.73107076 0.3295086 0.59739983\n\t\t 0.73107076 0.3295086 0.59739983 0.73119283 0.31766745 0.60365611 0.77871019 0.44666916\n\t\t 0.44047362 0.73119283 0.31766745 0.60365611 0.73107076 0.3295086 0.59739983 0.66640204\n\t\t 0.31418833 0.67613757 0.66640204 0.31418833 0.67613757 0.67326874 0.30979365 0.67134619\n\t\t 0.73119283 0.31766745 0.60365611 0.67326874 0.30979365 0.67134619 0.66640204 0.31418833\n\t\t 0.67613757 0.61647379 0.32990533 0.71489608 0.61647379 0.32990533 0.71489608 0.61961716\n\t\t 0.3288677 0.71263772 0.67326874 0.30979365 0.67134619 0.61961716 0.3288677 0.71263772\n\t\t 0.61647379 0.32990533 0.71489608 0.60179436 0.33460519 0.72511977 0.60179436 0.33460519\n\t\t 0.72511977 0.60179436 0.33460519 0.72511977 0.61961716 0.3288677 0.71263772 0.60179436\n\t\t 0.33460519 0.72511977 0.60179436 0.33460519 0.72511977 0.60182488 0.33460519 0.72511977\n\t\t 0.60182488 0.33460519 0.72511977 0.60182488 0.33460519 0.72511977 0.60179436 0.33460519\n\t\t 0.72511977 -0.0012210496 0.99996948 0.0019531102 -0.0019229753 0.99996948 0.0022277767\n\t\t -3.0827719e-05 1 -7.441745e-08 0.040223088 0.99896234 0.02038629 -0.0019229753 0.99996948\n\t\t 0.0022277767;\n\tsetAttr \".n[25730:25895]\" -type \"float3\"  -0.0012210496 0.99996948 0.0019531102\n\t\t 0.040223088 0.99896234 0.02038629 0.04672353 0.99856561 0.025147177 -0.0019229753\n\t\t 0.99996948 0.0022277767 0.04672353 0.99856561 0.025147177 -0.03518815 0.99935913\n\t\t -7.4369758e-08 -0.0019229753 0.99996948 0.0022277767 0.04672353 0.99856561 0.025147177\n\t\t 0.040223088 0.99896234 0.02038629 0.047364417 0.99859613 0.022949845 0.047364417\n\t\t 0.99859613 0.022949845 0.048829306 0.9985351 0.022797253 0.04672353 0.99856561 0.025147177\n\t\t 0.024475535 0.99942017 0.023438141 0.048829306 0.9985351 0.022797253 0.047364417\n\t\t 0.99859613 0.022949845 0.047364417 0.99859613 0.022949845 0.021820426 0.99945068\n\t\t 0.023712806 0.024475535 0.99942017 0.023438141 0.023590498 0.99942017 0.023468658\n\t\t 0.024475535 0.99942017 0.023438141 0.021820426 0.99945068 0.023712806 -0.53541654\n\t\t -0.48506132 0.69136637 -0.52442986 -0.51506102 0.67796874 -0.48258901 -0.61540586\n\t\t 0.6231575 -0.81182271 -0.52720749 0.2508927 -0.73140639 -0.65715528 0.18198192 -0.84118158\n\t\t -0.41120663 0.35108498 -0.52442986 -0.51506102 0.67796874 -0.53541654 -0.48506132\n\t\t 0.69136637 -0.54448062 -0.38807347 0.7435835 -0.54448062 -0.38807347 0.7435835 -0.54365659\n\t\t -0.38822609 0.7441023 -0.52442986 -0.51506102 0.67796874 -0.30552059 -0.67259759\n\t\t -0.6739707 -0.016083056 -0.64409322 -0.7647633 0.033112828 -0.79073465 -0.61122465\n\t\t 0.033112828 -0.79073465 -0.61122465 0.031831052 -0.79152811 -0.61027855 -0.30552059\n\t\t -0.67259759 -0.6739707 0.28116733 -0.95416117 -0.10232849 0.28116733 -0.95416117\n\t\t -0.10232849 0.28116733 -0.95416117 -0.10232849 0.28116733 -0.95416117 -0.10232849\n\t\t 0.28116733 -0.95416117 -0.10232849 0.28116733 -0.95416117 -0.10232849 0.43415657\n\t\t -0.7872858 0.43772703 0.43281373 -0.78695011 0.43971074 0.49320984 -0.65968788 0.56700343\n\t\t 0.49320984 -0.65968788 0.56700343 0.44297636 -0.61586332 0.65147871 0.43415657 -0.7872858\n\t\t 0.43772703 -0.54615909 -0.60188627 -0.58256775 -0.30552059 -0.67259759 -0.6739707\n\t\t -0.61915928 -0.69145805 -0.37214264 -0.61915928 -0.69145805 -0.37214264 -0.61735868\n\t\t -0.69145805 -0.37507242 -0.54615909 -0.60188627 -0.58256775 -0.23465662 -0.69154942\n\t\t 0.68312639 -0.23432091 -0.69353312 0.68123424 -0.23459557 -0.6918546 0.68282121 -0.23459557\n\t\t -0.6918546 0.68282121 -0.23487024 -0.69026762 0.68434709 -0.23465662 -0.69154942\n\t\t 0.68312639 0.5210731 -0.23386312 0.82082582 0.5118565 -0.2346566 0.82638019 0.45381036\n\t\t -0.3827019 0.80471206 0.45381036 -0.3827019 0.80471206 0.54994369 -0.38236618 0.74251533\n\t\t 0.5210731 -0.23386312 0.82082582 0.54994369 -0.38236618 0.74251533 0.45381036 -0.3827019\n\t\t 0.80471206 0.44297636 -0.61586332 0.65147871 0.44297636 -0.61586332 0.65147871 0.49320984\n\t\t -0.65968788 0.56700343 0.54994369 -0.38236618 0.74251533 -0.02481137 -0.57237458\n\t\t 0.81960517 0.44297636 -0.61586332 0.65147871 0.45381036 -0.3827019 0.80471206 0.45381036\n\t\t -0.3827019 0.80471206 0.085940309 -0.6040833 0.79223007 -0.02481137 -0.57237458 0.81960517\n\t\t -0.090426289 -0.16922525 -0.9814142 -0.099795423 -0.33664978 -0.93630785 -0.16647837\n\t\t -0.3364667 -0.92684716 -0.16647837 -0.3364667 -0.92684716 -0.48039171 -0.45747265\n\t\t -0.74825275 -0.090426289 -0.16922525 -0.9814142 -0.16647837 -0.3364667 -0.92684716\n\t\t -0.099795423 -0.33664978 -0.93630785 -0.016083056 -0.64409322 -0.7647633 -0.016083056\n\t\t -0.64409322 -0.7647633 -0.30552059 -0.67259759 -0.6739707 -0.16647837 -0.3364667\n\t\t -0.92684716 -0.48039171 -0.45747265 -0.74825275 -0.16647837 -0.3364667 -0.92684716\n\t\t -0.30552059 -0.67259759 -0.6739707 -0.30552059 -0.67259759 -0.6739707 -0.54615909\n\t\t -0.60188627 -0.58256775 -0.48039171 -0.45747265 -0.74825275 -0.51387042 -0.83721447\n\t\t 0.187048 -0.51387042 -0.83721447 0.187048 -0.51387042 -0.83721447 0.18701749 -0.51387042\n\t\t -0.83721447 0.18701749 -0.51387042 -0.83721447 0.18701749 -0.51387042 -0.83721447\n\t\t 0.187048 -0.77227104 0.63527304 -0.0046083424 -0.82543427 0.43504104 -0.35966066\n\t\t -0.92651147 0.27210271 -0.2598041 -0.92651147 0.27210271 -0.2598041 -0.8732568 0.48667839\n\t\t 0.023163514 -0.77227104 0.63527304 -0.0046083424 -0.77227104 0.63527304 -0.0046083424\n\t\t -0.8732568 0.48667839 0.023163514 -0.81881177 0.50682062 0.26947841 -0.81881177 0.50682062\n\t\t 0.26947841 -0.71846694 0.65587306 0.23148285 -0.77227104 0.63527304 -0.0046083424\n\t\t -0.4400771 0.57237458 0.69185454 -0.54527432 0.44407472 0.71092862 -0.54115427 0.2720724\n\t\t 0.79567856 -0.54115427 0.2720724 0.79567856 -0.40351585 0.42902914 0.80813009 -0.4400771\n\t\t 0.57237458 0.69185454 -0.92651147 0.27210271 -0.2598041 -0.82543427 0.43504104 -0.35966066\n\t\t -0.82030708 0.096468709 -0.56367689 -0.82030708 0.096468709 -0.56367689 -0.8750267\n\t\t -0.0056157121 -0.48402357 -0.92651147 0.27210271 -0.2598041 -0.40351585 0.42902914\n\t\t 0.80813009 -0.54115427 0.2720724 0.79567856 -0.33927426 -0.01602225 0.94051945 -0.33927426\n\t\t -0.01602225 0.94051945 -0.26947847 0.08990752 0.9587695 -0.40351585 0.42902914 0.80813009\n\t\t 0.44663858 -0.69695103 0.56099129 0.42872426 -0.73024672 0.53187662 0.30854231 -0.58763373\n\t\t 0.74794769 0.30854231 -0.58763373 0.74794769 0.085940309 -0.6040833 0.79223007 0.44663858\n\t\t -0.69695103 0.56099129 0.37217343 -0.62919992 0.68230236 0.30854231 -0.58763373 0.74794769\n\t\t 0.42872426 -0.73024672 0.53187662 0.42872426 -0.73024672 0.53187662 0.39948747 -0.56117415\n\t\t 0.72487569 0.37217343 -0.62919992 0.68230236 -0.93829149 -0.25400582 0.23465684 -0.93932915\n\t\t -0.27454478 0.20551166 -0.9615466 -0.20508467 0.18256174 -0.9615466 -0.20508467 0.18256174\n\t\t -0.96475106 -0.1937623 0.1778924 -0.93829149 -0.25400582 0.23465684 -0.96475106 -0.1937623\n\t\t 0.1778924 -0.9615466 -0.20508467 0.18256174 -0.94488358 -0.059786029 0.32184821 -0.94488358\n\t\t -0.059786029 0.32184821 -0.95715201 -0.08035551 0.27817622 -0.96475106 -0.1937623\n\t\t 0.1778924 -0.95715201 -0.08035551 0.27817622 -0.94488358 -0.059786029 0.32184821\n\t\t -0.93032622 -0.058382168 0.36201057 -0.93032622 -0.058382168 0.36201057 -0.9009369\n\t\t -0.094210885 0.42353588 -0.95715201 -0.08035551 0.27817622;\n\tsetAttr \".n[25896:26061]\" -type \"float3\"  -0.9009369 -0.094210885 0.42353588 -0.93032622\n\t\t -0.058382168 0.36201057 -0.85262609 -0.21146299 0.47776729 -0.85262609 -0.21146299\n\t\t 0.47776729 -0.85311437 -0.20517617 0.4795984 -0.9009369 -0.094210885 0.42353588 -0.85311437\n\t\t -0.20517617 0.4795984 -0.85262609 -0.21146299 0.47776729 -0.85326695 -0.27048579\n\t\t 0.44578388 -0.85326695 -0.27048579 0.44578388 -0.88775289 -0.23706803 0.3945128 -0.85311437\n\t\t -0.20517617 0.4795984 -0.93932915 -0.27454478 0.20551166 -0.93829149 -0.25400582\n\t\t 0.23465684 -0.92001086 -0.34690419 0.18219553 -0.92001086 -0.34690419 0.18219553\n\t\t -0.93603307 -0.29847133 0.186285 -0.93932915 -0.27454478 0.20551166 -0.93603307 -0.29847133\n\t\t 0.186285 -0.92001086 -0.34690419 0.18219553 -0.88998067 -0.40122709 0.21655938 -0.88998067\n\t\t -0.40122709 0.21655938 -0.85070336 -0.4449296 0.27985477 -0.93603307 -0.29847133\n\t\t 0.186285 -0.85070336 -0.4449296 0.27985477 -0.88998067 -0.40122709 0.21655938 -0.82131398\n\t\t -0.4073613 0.39927369 -0.82131398 -0.4073613 0.39927369 -0.83239222 -0.44682175 0.32773831\n\t\t -0.85070336 -0.4449296 0.27985477 -0.83239222 -0.44682175 0.32773831 -0.82131398\n\t\t -0.4073613 0.39927369 -0.82122242 -0.34888783 0.45146033 -0.82122242 -0.34888783\n\t\t 0.45146033 -0.83660376 -0.30048549 0.4579913 -0.83239222 -0.44682175 0.32773831 -0.83660376\n\t\t -0.30048549 0.4579913 -0.82122242 -0.34888783 0.45146033 -0.88775289 -0.23706803\n\t\t 0.3945128 -0.88775289 -0.23706803 0.3945128 -0.85326695 -0.27048579 0.44578388 -0.83660376\n\t\t -0.30048549 0.4579913 -0.8609271 -0.1403244 -0.48893705 -0.91998041 -0.18012056 -0.34803307\n\t\t -0.8750267 -0.0056157121 -0.48402357 -0.8750267 -0.0056157121 -0.48402357 -0.82030708\n\t\t 0.096468709 -0.56367689 -0.8609271 -0.1403244 -0.48893705 -0.77227104 0.63527304\n\t\t -0.0046083424 -0.49821493 0.86260551 -0.087649226 -0.4462114 0.83410126 -0.32419819\n\t\t -0.4462114 0.83410126 -0.32419819 -0.82543427 0.43504104 -0.35966066 -0.77227104\n\t\t 0.63527304 -0.0046083424 -0.26947847 0.08990752 0.9587695 -0.33927426 -0.01602225\n\t\t 0.94051945 -0.47947624 -0.15656005 0.86346018 -0.47947624 -0.15656005 0.86346018\n\t\t -0.36381114 -0.12778105 0.92263556 -0.26947847 0.08990752 0.9587695 -0.40351585 0.42902914\n\t\t 0.80813009 -0.091311574 0.61772519 0.78102964 -0.33268255 0.86739695 0.37000635 -0.33268255\n\t\t 0.86739695 0.37000635 -0.4400771 0.57237458 0.69185454 -0.40351585 0.42902914 0.80813009\n\t\t -0.26947847 0.08990752 0.9587695 0.079134434 0.19483027 0.97762996 -0.091311574 0.61772519\n\t\t 0.78102964 -0.091311574 0.61772519 0.78102964 -0.40351585 0.42902914 0.80813009 -0.26947847\n\t\t 0.08990752 0.9587695 0.043458581 -0.72066414 -0.69191557 0.038667165 -0.68501854\n\t\t -0.72746962 0.042298868 -0.7016511 -0.71123379 0.042298868 -0.7016511 -0.71123379\n\t\t 0.032441404 -0.74053168 -0.67122406 0.043458581 -0.72066414 -0.69191557 0.032441404\n\t\t -0.74053168 -0.67122406 0.042298868 -0.7016511 -0.71123379 -0.13705844 -0.63963753\n\t\t -0.75630963 -0.13705844 -0.63963753 -0.75630963 -0.14090379 -0.58803076 -0.7964415\n\t\t 0.032441404 -0.74053168 -0.67122406 -0.82030708 0.096468709 -0.56367689 -0.5696891\n\t\t 0.19342607 -0.79873043 -0.5618763 -0.043122891 -0.82607502 -0.5618763 -0.043122891\n\t\t -0.82607502 -0.8609271 -0.1403244 -0.48893705 -0.82030708 0.096468709 -0.56367689\n\t\t 0.10257272 -0.042268027 0.99380475 0.079134434 0.19483027 0.97762996 -0.26947847\n\t\t 0.08990752 0.9587695 -0.26947847 0.08990752 0.9587695 -0.36381114 -0.12778105 0.92263556\n\t\t 0.10257272 -0.042268027 0.99380475 -0.33268255 0.86739695 0.37000635 -0.49821493\n\t\t 0.86260551 -0.087649226 -0.77227104 0.63527304 -0.0046083424 -0.77227104 0.63527304\n\t\t -0.0046083424 -0.71846694 0.65587306 0.23148285 -0.33268255 0.86739695 0.37000635\n\t\t -0.34403515 0.0091858953 -0.93887144 -0.34403515 0.0091858953 -0.93887144 -0.5618763\n\t\t -0.043122891 -0.82607502 -0.5618763 -0.043122891 -0.82607502 -0.5696891 0.19342607\n\t\t -0.79873043 -0.34403515 0.0091858953 -0.93887144 0.33985412 0.0093693575 0.94039732\n\t\t 0.33985412 0.0093693575 0.94039732 0.079134434 0.19483027 0.97762996 0.079134434\n\t\t 0.19483027 0.97762996 0.10257272 -0.042268027 0.99380475 0.33985412 0.0093693575\n\t\t 0.94039732 -0.34351662 0.88039786 -0.32688382 -0.4462114 0.83410126 -0.32419819 -0.49821493\n\t\t 0.86260551 -0.087649226 -0.49821493 0.86260551 -0.087649226 -0.29364941 0.94512761\n\t\t -0.14307085 -0.34351662 0.88039786 -0.32688382 -0.29364941 0.94512761 -0.14307085\n\t\t -0.49821493 0.86260551 -0.087649226 -0.33268255 0.86739695 0.37000635 -0.33268255\n\t\t 0.86739695 0.37000635 -0.14688589 0.95278782 0.26569408 -0.29364941 0.94512761 -0.14307085\n\t\t -0.14688589 0.95278782 0.26569408 -0.33268255 0.86739695 0.37000635 -0.091311574\n\t\t 0.61772519 0.78102964 -0.091311574 0.61772519 0.78102964 -0.053071961 0.88042855\n\t\t 0.47114468 -0.14688589 0.95278782 0.26569408 -0.63609743 0.37595725 -0.67378765 -0.40156269\n\t\t 0.52656621 -0.74926001 -0.40223411 0.52385002 -0.7508164 -0.40223411 0.52385002 -0.7508164\n\t\t -0.5696891 0.19342607 -0.79873043 -0.63609743 0.37595725 -0.67378765 0.1712392 0.52320945\n\t\t 0.83480322 -0.091311574 0.61772519 0.78102964 0.079134434 0.19483027 0.97762996 0.079134434\n\t\t 0.19483027 0.97762996 0.16934705 0.52558988 0.83370459 0.1712392 0.52320945 0.83480322\n\t\t -0.82543427 0.43504104 -0.35966066 -0.63609743 0.37595725 -0.67378765 -0.5696891\n\t\t 0.19342607 -0.79873043 -0.5696891 0.19342607 -0.79873043 -0.82030708 0.096468709\n\t\t -0.56367689 -0.82543427 0.43504104 -0.35966066 0.085940309 -0.6040833 0.79223007\n\t\t 0.30854231 -0.58763373 0.74794769 0.13074145 -0.49137843 0.86104929 0.13074145 -0.49137843\n\t\t 0.86104929 -0.02481137 -0.57237458 0.81960517 0.085940309 -0.6040833 0.79223007 -0.54615909\n\t\t -0.60188627 -0.58256775 -0.38444149 -0.5510729 -0.7405926 -0.40171498 -0.50697368\n\t\t -0.76259643 -0.40171498 -0.50697368 -0.76259643 -0.48039171 -0.45747265 -0.74825275\n\t\t -0.54615909 -0.60188627 -0.58256775 0.30854231 -0.58763373 0.74794769 0.37217343\n\t\t -0.62919992 0.68230236 0.34366909 -0.52171373 0.78081614 0.34366909 -0.52171373 0.78081614;\n\tsetAttr \".n[26062:26227]\" -type \"float3\"  0.13074145 -0.49137843 0.86104929 0.30854231\n\t\t -0.58763373 0.74794769 0.37217343 -0.62919992 0.68230236 0.39948747 -0.56117415 0.72487569\n\t\t 0.39759529 -0.46238574 0.79250473 0.39759529 -0.46238574 0.79250473 0.34366909 -0.52171373\n\t\t 0.78081614 0.37217343 -0.62919992 0.68230236 -0.38444149 -0.5510729 -0.7405926 -0.22476865\n\t\t -0.53398246 -0.81505775 -0.13705844 -0.63963753 -0.75630963 -0.13705844 -0.63963753\n\t\t -0.75630963 -0.40171498 -0.50697368 -0.76259643 -0.38444149 -0.5510729 -0.7405926\n\t\t -0.14090379 -0.58803076 -0.7964415 -0.13705844 -0.63963753 -0.75630963 -0.22476865\n\t\t -0.53398246 -0.81505775 -0.22476865 -0.53398246 -0.81505775 -0.19080158 -0.47648561\n\t\t -0.85821092 -0.14090379 -0.58803076 -0.7964415 0.27747431 -0.10272513 0.95519882\n\t\t 0.41145056 -0.13220598 0.90176094 0.50804156 0.15002921 0.84813988 0.50804156 0.15002921\n\t\t 0.84813988 0.29645684 -0.11416959 0.94817954 0.27747431 -0.10272513 0.95519882 -0.3430891\n\t\t 0.049348395 0.93798637 -0.3430891 0.049348395 0.93798637 -0.3430891 0.049348395 0.93798637\n\t\t -0.3430891 0.049348395 0.93798637 -0.3430891 0.049348395 0.93798637 -0.3430891 0.049348395\n\t\t 0.93798637 0.50804156 0.15002921 0.84813988 0.41145056 -0.13220598 0.90176094 0.68877232\n\t\t -0.20511465 0.69533372 0.68877232 -0.20511465 0.69533372 0.69560838 -0.067323565\n\t\t 0.71523178 0.50804156 0.15002921 0.84813988 -0.21134043 -0.81292152 0.54261917 -0.12195171\n\t\t -0.81460005 0.56700343 -0.20993657 -0.81005281 0.54744107 -0.20993657 -0.81005281\n\t\t 0.54744107 -0.30060709 -0.80736721 0.50770599 -0.21134043 -0.81292152 0.54261917\n\t\t -0.21134043 -0.81292152 0.54261917 -0.30060709 -0.80736721 0.50770599 -0.33274308\n\t\t -0.80455953 0.49186689 -0.33274308 -0.80455953 0.49186689 -0.29068857 -0.80544454\n\t\t 0.51643425 -0.21134043 -0.81292152 0.54261917 0.40836838 -0.63374716 0.65691096 0.41029105\n\t\t -0.63267905 0.65675837 0.33262146 -0.6736654 0.6599018 0.33262146 -0.6736654 0.6599018\n\t\t 0.32966116 -0.67509979 0.65993232 0.40836838 -0.63374716 0.65691096 0.1161537 -0.8074587\n\t\t -0.57832569 0.20084256 -0.81505781 -0.54341251 0.26880726 -0.80477309 -0.52916038\n\t\t 0.26880726 -0.80477309 -0.52916038 0.20050687 -0.80831325 -0.55351412 0.1161537 -0.8074587\n\t\t -0.57832569 0.1161537 -0.8074587 -0.57832569 0.20050687 -0.80831325 -0.55351412 0.11502451\n\t\t -0.80751973 -0.57850879 0.11502451 -0.80751973 -0.57850879 0.07165771 -0.80208755\n\t\t -0.59288305 0.1161537 -0.8074587 -0.57832569 0.67970842 -0.67226148 -0.29328281 0.67793834\n\t\t -0.67348224 -0.29453409 0.74468231 -0.62157023 -0.24301885 0.74468231 -0.62157023\n\t\t -0.24301885 0.74935168 -0.61745024 -0.23908196 0.67970842 -0.67226148 -0.29328281\n\t\t 0.83581048 -0.11658049 -0.53645438 0.93508708 0.14633651 -0.32273322 0.89983833 -0.14459644\n\t\t -0.41151157 0.89983833 -0.14459644 -0.41151157 0.83629876 -0.11654995 -0.5357219\n\t\t 0.83581048 -0.11658049 -0.53645438 0.35819575 0.041444179 -0.93270671 0.35819575\n\t\t 0.041444179 -0.93270671 0.35819575 0.041444179 -0.93270671 0.35819575 0.041444179\n\t\t -0.93270671 0.35819575 0.041444179 -0.93270671 0.35819575 0.041444179 -0.93270671\n\t\t 0.89983833 -0.14459644 -0.41151157 0.93508708 0.14633651 -0.32273322 0.9924314 -0.072481163\n\t\t -0.099002041 0.9924314 -0.072481163 -0.099002041 0.97259444 -0.21207282 -0.095004104\n\t\t 0.89983833 -0.14459644 -0.41151157 0.56480592 0.41242737 0.71474344 0.49827555 0.50126678\n\t\t 0.70738846 0.49879438 0.50038171 0.70766312 0.49879438 0.50038171 0.70766312 0.50804156\n\t\t 0.15002921 0.84813988 0.56480592 0.41242737 0.71474344 -0.021454781 0.86962497 0.49317905\n\t\t -0.021454781 0.86962497 0.49317905 -0.021454781 0.86962497 0.49317905 -0.021454781\n\t\t 0.86962497 0.49317905 -0.021454781 0.86962497 0.49317905 -0.021454781 0.86962497\n\t\t 0.49317905 0.72151852 0.10739492 0.68398082 0.56480592 0.41242737 0.71474344 0.50804156\n\t\t 0.15002921 0.84813988 0.50804156 0.15002921 0.84813988 0.69560838 -0.067323565 0.71523178\n\t\t 0.72151852 0.10739492 0.68398082 0.93508708 0.14633651 -0.32273322 0.83706152 0.50029016\n\t\t -0.22138129 0.83687836 0.50050378 -0.22156441 0.83687836 0.50050378 -0.22156441 0.89220852\n\t\t 0.41218325 -0.18451494 0.93508708 0.14633651 -0.32273322 0.3099457 0.86684787 -0.39048439\n\t\t 0.30997622 0.86681736 -0.39048439 0.30997622 0.86681736 -0.39048439 0.30997622 0.86681736\n\t\t -0.39048439 0.3099457 0.86684787 -0.39048439 0.3099457 0.86684787 -0.39048439 0.93508708\n\t\t 0.14633651 -0.32273322 0.89220852 0.41218325 -0.18451494 0.99240083 0.10663196 -0.061006509\n\t\t 0.99240083 0.10663196 -0.061006509 0.9924314 -0.072481163 -0.099002041 0.93508708\n\t\t 0.14633651 -0.32273322 0.96868807 -0.23969208 0.064424589 0.97259444 -0.21207282\n\t\t -0.095004104 0.9924314 -0.072481163 -0.099002041 0.9924314 -0.072481163 -0.099002041\n\t\t 0.97497487 -0.2118592 0.067079701 0.96868807 -0.23969208 0.064424589 0.97497487 -0.2118592\n\t\t 0.067079701 0.9924314 -0.072481163 -0.099002041 0.99240083 0.10663196 -0.061006509\n\t\t 0.99240083 0.10663196 -0.061006509 0.97891176 -0.19553179 0.059083849 0.97497487\n\t\t -0.2118592 0.067079701 0.78991061 -0.1961727 0.58098084 0.72151852 0.10739492 0.68398082\n\t\t 0.69560838 -0.067323565 0.71523178 0.69560838 -0.067323565 0.71523178 0.78774381\n\t\t -0.20819698 0.5796991 0.78991061 -0.1961727 0.58098084 0.78774381 -0.20819698 0.5796991\n\t\t 0.69560838 -0.067323565 0.71523178 0.68877232 -0.20511465 0.69533372 0.68877232 -0.20511465\n\t\t 0.69533372 0.79305404 -0.23676232 0.56123537 0.78774381 -0.20819698 0.5796991 0.79305404\n\t\t -0.23676232 0.56123537 0.68877232 -0.20511465 0.69533372 0.77083659 -0.28614128 0.56910914\n\t\t 0.77083659 -0.28614128 0.56910914 0.76699132 -0.29065803 0.57200843 0.79305404 -0.23676232\n\t\t 0.56123537 0.95568717 -0.28794184 0.061006524 0.95525998 -0.28958985 0.060029931\n\t\t 0.97259444 -0.21207282 -0.095004104 0.97259444 -0.21207282 -0.095004104 0.96868807\n\t\t -0.23969208 0.064424589 0.95568717 -0.28794184 0.061006524 -0.27747425 -0.10272531\n\t\t 0.95519882 -0.29645678 -0.11416977 0.94817954;\n\tsetAttr \".n[26228:26393]\" -type \"float3\"  -0.50804168 0.15002888 0.84813988 -0.50804168\n\t\t 0.15002888 0.84813988 -0.41145051 -0.13220625 0.90176094 -0.27747425 -0.10272531\n\t\t 0.95519882 0.34305853 0.049348604 0.93798637 0.34305853 0.049348604 0.93798637 0.34308904\n\t\t 0.049348604 0.93798637 0.34308904 0.049348604 0.93798637 0.34308904 0.049348604 0.93798637\n\t\t 0.34305853 0.049348604 0.93798637 -0.6887722 -0.20511506 0.69533372 -0.41145051 -0.13220625\n\t\t 0.90176094 -0.50804168 0.15002888 0.84813988 -0.50804168 0.15002888 0.84813988 -0.69560838\n\t\t -0.067323998 0.71523178 -0.6887722 -0.20511506 0.69533372 0.21134093 -0.8129214 0.54261917\n\t\t 0.30057704 -0.80736697 0.50770599 0.20993708 -0.81005269 0.54744107 0.20993708 -0.81005269\n\t\t 0.54744107 0.12195222 -0.81459993 0.56700343 0.21134093 -0.8129214 0.54261917 0.33271304\n\t\t -0.80455929 0.49186689 0.30057704 -0.80736697 0.50770599 0.21134093 -0.8129214 0.54261917\n\t\t 0.21134093 -0.8129214 0.54261917 0.29068905 -0.8054443 0.51643425 0.33271304 -0.80455929\n\t\t 0.49186689 -0.33262104 -0.67366564 0.6599018 -0.41029063 -0.63267928 0.65678889 -0.40836796\n\t\t -0.6337474 0.65691096 -0.40836796 -0.6337474 0.65691096 -0.32966074 -0.67510003 0.65993232\n\t\t -0.33262104 -0.67366564 0.6599018 -0.1161532 -0.80745882 -0.57832569 -0.20050636\n\t\t -0.80831337 -0.55351412 -0.26880679 -0.80477321 -0.52916038 -0.26880679 -0.80477321\n\t\t -0.52916038 -0.20084205 -0.81505793 -0.54341251 -0.1161532 -0.80745882 -0.57832569\n\t\t -0.11502401 -0.80751985 -0.57850879 -0.20050636 -0.80831337 -0.55351412 -0.1161532\n\t\t -0.80745882 -0.57832569 -0.1161532 -0.80745882 -0.57832569 -0.071657218 -0.80208755\n\t\t -0.59288305 -0.11502401 -0.80751985 -0.57850879 -0.74465144 -0.62160122 -0.24304937\n\t\t -0.67793798 -0.67348272 -0.29453409 -0.67970806 -0.67226195 -0.29328281 -0.67970806\n\t\t -0.67226195 -0.29328281 -0.74935132 -0.61748123 -0.23911248 -0.74465144 -0.62160122\n\t\t -0.24304937 -0.83581036 -0.11658101 -0.53645438 -0.83629864 -0.11655048 -0.53569138\n\t\t -0.89983821 -0.14459701 -0.41154209 -0.89983821 -0.14459701 -0.41154209 -0.9350872\n\t\t 0.14633594 -0.32273322 -0.83581036 -0.11658101 -0.53645438 -0.35819575 0.041443955\n\t\t -0.93270671 -0.35819575 0.041443955 -0.93270671 -0.35819575 0.041443955 -0.93270671\n\t\t -0.35819575 0.041443955 -0.93270671 -0.35819575 0.041443955 -0.93270671 -0.35819575\n\t\t 0.041443955 -0.93270671 -0.9924314 -0.072481774 -0.099002041 -0.9350872 0.14633594\n\t\t -0.32273322 -0.89983821 -0.14459701 -0.41154209 -0.89983821 -0.14459701 -0.41154209\n\t\t -0.97259432 -0.21207342 -0.095034622 -0.9924314 -0.072481774 -0.099002041 -0.56480616\n\t\t 0.41242701 0.71474344 -0.50804168 0.15002888 0.84813988 -0.49879467 0.50038135 0.70766312\n\t\t -0.49879467 0.50038135 0.70766312 -0.49827585 0.50126642 0.70738846 -0.56480616 0.41242701\n\t\t 0.71474344 0.021454245 0.86962497 0.49317905 0.021454245 0.86962497 0.49317905 0.021454245\n\t\t 0.86962497 0.49317905 0.021454245 0.86962497 0.49317905 0.021454245 0.86962497 0.49317905\n\t\t 0.021454245 0.86962497 0.49317905 -0.50804168 0.15002888 0.84813988 -0.56480616 0.41242701\n\t\t 0.71474344 -0.72151864 0.10739447 0.68398082 -0.72151864 0.10739447 0.68398082 -0.69560838\n\t\t -0.067323998 0.71523178 -0.50804168 0.15002888 0.84813988 -0.9350872 0.14633594 -0.32273322\n\t\t -0.89220876 0.41218272 -0.18451494 -0.83687872 0.5005033 -0.22156441 -0.83687872\n\t\t 0.5005033 -0.22156441 -0.83706188 0.50028968 -0.22138129 -0.9350872 0.14633594 -0.32273322\n\t\t -0.30997676 0.86681712 -0.39048439 -0.30997676 0.86681712 -0.39048439 -0.30994624\n\t\t 0.86684763 -0.39048439 -0.30994624 0.86684763 -0.39048439 -0.30994624 0.86684763\n\t\t -0.39048439 -0.30997676 0.86681712 -0.39048439 -0.99240094 0.10666188 -0.061006509\n\t\t -0.89220876 0.41218272 -0.18451494 -0.9350872 0.14633594 -0.32273322 -0.9350872 0.14633594\n\t\t -0.32273322 -0.9924314 -0.072481774 -0.099002041 -0.99240094 0.10666188 -0.061006509\n\t\t -0.96868795 -0.23969267 0.064424589 -0.97497475 -0.21185979 0.067079701 -0.9924314\n\t\t -0.072481774 -0.099002041 -0.9924314 -0.072481774 -0.099002041 -0.97259432 -0.21207342\n\t\t -0.095034622 -0.96868795 -0.23969267 0.064424589 -0.97497475 -0.21185979 0.067079701\n\t\t -0.97891164 -0.19553238 0.059083849 -0.99240094 0.10666188 -0.061006509 -0.99240094\n\t\t 0.10666188 -0.061006509 -0.9924314 -0.072481774 -0.099002041 -0.97497475 -0.21185979\n\t\t 0.067079701 -0.7899105 -0.19617318 0.58098084 -0.78774369 -0.20819746 0.5796991 -0.69560838\n\t\t -0.067323998 0.71523178 -0.69560838 -0.067323998 0.71523178 -0.72151864 0.10739447\n\t\t 0.68398082 -0.7899105 -0.19617318 0.58098084 -0.78774369 -0.20819746 0.5796991 -0.79305393\n\t\t -0.23676279 0.56123537 -0.6887722 -0.20511506 0.69533372 -0.6887722 -0.20511506 0.69533372\n\t\t -0.69560838 -0.067323998 0.71523178 -0.78774369 -0.20819746 0.5796991 -0.79305393\n\t\t -0.23676279 0.56123537 -0.76699108 -0.2906585 0.57200843 -0.77083647 -0.28614175\n\t\t 0.56910914 -0.77083647 -0.28614175 0.56910914 -0.6887722 -0.20511506 0.69533372 -0.79305393\n\t\t -0.23676279 0.56123537 -0.95568705 -0.28794244 0.061006524 -0.96868795 -0.23969267\n\t\t 0.064424589 -0.97259432 -0.21207342 -0.095034622 -0.97259432 -0.21207342 -0.095034622\n\t\t -0.95525974 -0.2895599 0.060029931 -0.95568705 -0.28794244 0.061006524 0.96136361\n\t\t -0.26099399 -0.087191358 0.86861795 -0.42262009 -0.25855279 0.85058147 -0.35233596\n\t\t -0.3903012 0.85058147 -0.35233596 -0.3903012 0.90768158 -0.23612146 -0.34687334 0.96136361\n\t\t -0.26099399 -0.087191358 0.96136361 -0.26099399 -0.087191358 0.90768158 -0.23612146\n\t\t -0.34687334 0.95635861 -0.19473833 -0.21768852 0.95635861 -0.19473833 -0.21768852\n\t\t 0.96572775 -0.2562331 -0.040955823 0.96136361 -0.26099399 -0.087191358 0.10409871\n\t\t -0.26081121 -0.95974606 0.10101635 -0.26108587 -0.95999026 0.11471916 -0.25989565\n\t\t -0.9587695 0.11471916 -0.25989565 -0.9587695 0.11767945 -0.25962099 -0.95849484 0.10409871\n\t\t -0.26081121 -0.95974606 0.85058147 -0.35233596 -0.3903012 0.71633053 -0.25809488\n\t\t -0.64824367 0.82811981 -0.19489099 -0.52552873 0.82811981 -0.19489099 -0.52552873\n\t\t 0.90768158 -0.23612146 -0.34687334 0.85058147 -0.35233596 -0.3903012;\n\tsetAttr \".n[26394:26559]\" -type \"float3\"  0.85058147 -0.35233596 -0.3903012 0.86861795\n\t\t -0.42262009 -0.25855279 0.77367491 -0.48887581 -0.40293586 0.77367491 -0.48887581\n\t\t -0.40293586 0.75713384 -0.32331288 -0.56758326 0.85058147 -0.35233596 -0.3903012\n\t\t 0.69533378 -0.1433453 -0.70421463 0.75713384 -0.32331288 -0.56758326 0.77367491 -0.48887581\n\t\t -0.40293586 0.77367491 -0.48887581 -0.40293586 0.75875127 -0.33793125 -0.5568102\n\t\t 0.69533378 -0.1433453 -0.70421463 0.71715456 -0.29844037 -0.62974942 0.69533378 -0.1433453\n\t\t -0.70421463 0.75875127 -0.33793125 -0.5568102 0.75875127 -0.33793125 -0.5568102 0.71602541\n\t\t -0.30405575 -0.62834561 0.71715456 -0.29844037 -0.62974942 0.68044072 -0.19800395\n\t\t -0.70552689 0.71715456 -0.29844037 -0.62974942 0.71602541 -0.30405575 -0.62834561\n\t\t 0.71602541 -0.30405575 -0.62834561 0.69548637 -0.23120807 -0.68028808 0.68044072\n\t\t -0.19800395 -0.70552689 0.61891544 -0.16382323 -0.76815087 0.68044072 -0.19800395\n\t\t -0.70552689 0.69548637 -0.23120807 -0.68028808 0.69548637 -0.23120807 -0.68028808\n\t\t 0.65987128 -0.26007858 -0.70488602 0.61891544 -0.16382323 -0.76815087 0.61891544\n\t\t -0.16382323 -0.76815087 0.65987128 -0.26007858 -0.70488602 0.62144846 -0.28724009\n\t\t -0.72887355 0.62144846 -0.28724009 -0.72887355 0.58879364 -0.13010028 -0.79769278\n\t\t 0.61891544 -0.16382323 -0.76815087 0.59871221 -0.23206262 -0.76656389 0.58879364\n\t\t -0.13010028 -0.79769278 0.62144846 -0.28724009 -0.72887355 0.62144846 -0.28724009\n\t\t -0.72887355 0.61458188 -0.44190788 -0.65340126 0.59871221 -0.23206262 -0.76656389\n\t\t 0.71715456 -0.29844037 -0.62974942 0.68044072 -0.19800395 -0.70552689 0.5995056 0.025513601\n\t\t -0.79992068 0.5995056 0.025513601 -0.79992068 0.63994271 -0.097689606 -0.76216924\n\t\t 0.71715456 -0.29844037 -0.62974942 0.58262885 -0.024628317 -0.81234169 0.5995056\n\t\t 0.025513601 -0.79992068 0.68044072 -0.19800395 -0.70552689 0.68044072 -0.19800395\n\t\t -0.70552689 0.61891544 -0.16382323 -0.76815087 0.58262885 -0.024628317 -0.81234169\n\t\t 0.14304006 0.64989167 -0.74642175 0.13153458 0.64708394 -0.75093848 0.14682436 0.64061403\n\t\t -0.75365466 0.14682436 0.64061403 -0.75365466 0.15823828 0.62520218 -0.76421404 0.14304006\n\t\t 0.64989167 -0.74642175 0.75713384 -0.32331288 -0.56758326 0.69966739 -0.12277579\n\t\t -0.70381784 0.71633053 -0.25809488 -0.64824367 0.71633053 -0.25809488 -0.64824367\n\t\t 0.85058147 -0.35233596 -0.3903012 0.75713384 -0.32331288 -0.56758326 0.69966739 -0.12277579\n\t\t -0.70381784 0.75713384 -0.32331288 -0.56758326 0.69533378 -0.1433453 -0.70421463\n\t\t 0.69533378 -0.1433453 -0.70421463 0.57383955 0.076021723 -0.81539351 0.69966739 -0.12277579\n\t\t -0.70381784 0.15823828 0.62520218 -0.76421404 0.14682436 0.64061403 -0.75365466 0.17688508\n\t\t 0.60551775 -0.77590263 0.50511181 0.24216446 -0.8283639 0.57383955 0.076021723 -0.81539351\n\t\t 0.69533378 -0.1433453 -0.70421463 0.69533378 -0.1433453 -0.70421463 0.49040183 0.27393422\n\t\t -0.82729578 0.50511181 0.24216446 -0.8283639 0.17688508 0.60551775 -0.77590263 0.17709872\n\t\t 0.61549729 -0.76796782 0.15823828 0.62520218 -0.76421404 0.17688508 0.60551775 -0.77590263\n\t\t 0.20191029 0.57100129 -0.79567862 0.18964183 0.59483629 -0.78112131 0.18964183 0.59483629\n\t\t -0.78112131 0.17709872 0.61549729 -0.76796782 0.17688508 0.60551775 -0.77590263 0.17325349\n\t\t 0.27219459 -0.94650108 0.17609172 0.27167577 -0.94613481 0.1426129 0.27780995 -0.94998014\n\t\t 0.1426129 0.27780995 -0.94998014 0.14011039 0.27826774 -0.95022428 0.17325349 0.27219459\n\t\t -0.94650108 0.90768158 -0.23612146 -0.34687334 0.82811981 -0.19489099 -0.52552873\n\t\t 0.89422292 -0.10480031 -0.4351024 0.89422292 -0.10480031 -0.4351024 0.95635861 -0.19473833\n\t\t -0.21768852 0.90768158 -0.23612146 -0.34687334 0.59871221 -0.23206262 -0.76656389\n\t\t 0.54979092 -0.015838999 -0.83513904 0.53752249 0.017914468 -0.84304333 0.53752249\n\t\t 0.017914468 -0.84304333 0.58879364 -0.13010028 -0.79769278 0.59871221 -0.23206262\n\t\t -0.76656389 0.12979501 0.66563922 -0.73488575 0.079073235 0.72435677 -0.68483543\n\t\t 0.088747606 0.71138638 -0.69713438 0.088747606 0.71138638 -0.69713438 0.12320303\n\t\t 0.6588946 -0.74205762 0.12979501 0.66563922 -0.73488575 0.12979501 0.66563922 -0.73488575\n\t\t 0.12320303 0.6588946 -0.74205762 0.12799442 0.65681934 -0.7430647 0.12799442 0.65681934\n\t\t -0.7430647 0.14062908 0.66515094 -0.7333293 0.12979501 0.66563922 -0.73488575 0.53752249\n\t\t 0.017914468 -0.84304333 0.42677084 0.0048830258 -0.90432447 0.61891544 -0.16382323\n\t\t -0.76815087 0.61891544 -0.16382323 -0.76815087 0.58879364 -0.13010028 -0.79769278\n\t\t 0.53752249 0.017914468 -0.84304333 0.16266344 0.68971831 -0.70552695 0.14889961 0.62251657\n\t\t -0.768273 0.16260244 0.59144872 -0.78972751 0.16260244 0.59144872 -0.78972751 0.17526762\n\t\t 0.5894345 -0.78853732 0.16266344 0.68971831 -0.70552695 0.17484033 0.69219029 -0.70018619\n\t\t 0.16266344 0.68971831 -0.70552695 0.17526762 0.5894345 -0.78853732 0.17526762 0.5894345\n\t\t -0.78853732 0.19006906 0.66115296 -0.72576076 0.17484033 0.69219029 -0.70018619 0.51222259\n\t\t 0.19064923 -0.8373974 0.49446079 0.29029214 -0.81926936 0.63994271 -0.097689606 -0.76216924\n\t\t 0.63994271 -0.097689606 -0.76216924 0.5995056 0.025513601 -0.79992068 0.51222259\n\t\t 0.19064923 -0.8373974 0.39518419 0.020050714 -0.91836298 0.51222259 0.19064923 -0.8373974\n\t\t 0.5995056 0.025513601 -0.79992068 0.5995056 0.025513601 -0.79992068 0.58262885 -0.024628317\n\t\t -0.81234169 0.39518419 0.020050714 -0.91836298 0.39518419 0.020050714 -0.91836298\n\t\t 0.58262885 -0.024628317 -0.81234169 0.61891544 -0.16382323 -0.76815087 0.61891544\n\t\t -0.16382323 -0.76815087 0.42677084 0.0048830258 -0.90432447 0.39518419 0.020050714\n\t\t -0.91836298 0.13156527 0.057069581 -0.98965424 0.39518419 0.020050714 -0.91836298\n\t\t 0.42677084 0.0048830258 -0.90432447 0.42677084 0.0048830258 -0.90432447 0.12900172\n\t\t 0.052430768 -0.99023408 0.13156527 0.057069581 -0.98965424 0.038514055 0.99301124\n\t\t 0.11139248 0.040192571 0.99252295 0.11514626 0.039643239 0.99267554 0.113895 0.039643239\n\t\t 0.99267554 0.113895;\n\tsetAttr \".n[26560:26725]\" -type \"float3\"  0.037934203 0.99316382 0.11017174 0.038514055\n\t\t 0.99301124 0.11139248 0.56562984 0.68465239 -0.45966986 0.56276107 0.688223 -0.45780823\n\t\t 0.59053296 0.65181446 -0.4757531 0.59053296 0.65181446 -0.4757531 0.59306604 0.64833534\n\t\t -0.47737059 0.56562984 0.68465239 -0.45966986 0.17401661 -0.24906157 -0.95269632\n\t\t 0.1730095 -0.24897002 -0.95290995 0.1903135 -0.25046539 -0.9492172 0.1903135 -0.25046539\n\t\t -0.9492172 0.19138165 -0.25055698 -0.94897306 0.17401661 -0.24906157 -0.95269632\n\t\t 0.18552181 0.66838586 -0.72026742 0.18588804 0.67674792 -0.71233261 0.18515559 0.65739924\n\t\t -0.73039955 0.18515559 0.65739924 -0.73039955 0.1846673 0.65022737 -0.73689997 0.18552181\n\t\t 0.66838586 -0.72026742 0.1869867 0.69502854 -0.69420457 0.18588804 0.67674792 -0.71233261\n\t\t 0.18552181 0.66838586 -0.72026742 0.18552181 0.66838586 -0.72026742 0.18753603 0.68691063\n\t\t -0.70210886 0.1869867 0.69502854 -0.69420457 0.1846673 0.65022737 -0.73689997 0.18515559\n\t\t 0.65739924 -0.73039955 0.18637635 0.64098024 -0.74456012 0.18637635 0.64098024 -0.74456012\n\t\t 0.18619323 0.63609731 -0.74877167 0.1846673 0.65022737 -0.73689997 0.18619323 0.63609731\n\t\t -0.74877167 0.18637635 0.64098024 -0.74456012 0.18790227 0.62520218 -0.75746948 0.18790227\n\t\t 0.62520218 -0.75746948 0.18683413 0.6131779 -0.76747954 0.18619323 0.63609731 -0.74877167\n\t\t 0.1869867 0.69502854 -0.69420457 0.18753603 0.68691063 -0.70210886 0.18686461 0.70033878\n\t\t -0.68886387 0.18686461 0.70033878 -0.68886387 0.18689513 0.70033878 -0.68886387 0.1869867\n\t\t 0.69502854 -0.69420457 0.18683413 0.6131779 -0.76747954 0.18790227 0.62520218 -0.75746948\n\t\t 0.18805487 0.60176396 -0.7762078 0.18805487 0.60176396 -0.7762078 0.18732244 0.59544665\n\t\t -0.78121287 0.18683413 0.6131779 -0.76747954 0.1915645 0.58629107 -0.78710294 0.18732244\n\t\t 0.59544665 -0.78121287 0.18805487 0.60176396 -0.7762078 0.18805487 0.60176396 -0.7762078\n\t\t 0.19190021 0.58583331 -0.78734708 0.1915645 0.58629107 -0.78710294 0.22464667 0.25876644\n\t\t -0.93942076 0.22620311 0.25830865 -0.93917662 0.2143314 0.27375102 -0.93758965 0.2143314\n\t\t 0.27375102 -0.93758965 0.1807 0.27231666 -0.94506669 0.22464667 0.25876644 -0.93942076\n\t\t 0.1807 0.27231666 -0.94506669 0.2143314 0.27375102 -0.93758965 0.20902118 0.27137059\n\t\t -0.93948179 0.20902118 0.27137059 -0.93948179 0.22022147 0.27341533 -0.93633837 0.1807\n\t\t 0.27231666 -0.94506669 0.22022147 0.27341533 -0.93633837 0.20902118 0.27137059 -0.93948179\n\t\t 0.21207304 0.26422927 -0.94082463 0.21207304 0.26422927 -0.94082463 0.21393466 0.26664022\n\t\t -0.93972594 0.22022147 0.27341533 -0.93633837 0.21393466 0.26664022 -0.93972594 0.21207304\n\t\t 0.26422927 -0.94082463 0.18631542 0.26712853 -0.94546342 0.18631542 0.26712853 -0.94546342\n\t\t 0.20691542 0.25577563 -0.94430369 0.21393466 0.26664022 -0.93972594 0.041321959 0.33124784\n\t\t -0.94262522 0.20691542 0.25577563 -0.94430369 0.18631542 0.26712853 -0.94546342 0.18631542\n\t\t 0.26712853 -0.94546342 0.0002745587 0.34891805 -0.93713188 0.041321959 0.33124784\n\t\t -0.94262522 3.0586925e-05 -0.22125927 -0.97518843 6.8415183e-08 -0.22125927 -0.97518843\n\t\t 6.8415183e-08 -0.22125927 -0.97518843 6.8415183e-08 -0.22125927 -0.97518843 3.0586925e-05\n\t\t -0.22125927 -0.97518843 3.0586925e-05 -0.22125927 -0.97518843 0.00015235203 0.77782518\n\t\t -0.62846774 0.00015235203 0.77782518 -0.62843722 9.1315022e-05 0.77782518 -0.62843722\n\t\t 9.1315022e-05 0.77782518 -0.62843722 9.1315022e-05 0.77782518 -0.62843722 0.00015235203\n\t\t 0.77782518 -0.62846774 0.00018286961 0.78084654 -0.62471396 0.00015235203 0.77782518\n\t\t -0.62843722 0.00015235203 0.77782518 -0.62846774 0.00015235203 0.77782518 -0.62846774\n\t\t 0.00018287016 0.77907646 -0.62688076 0.00018286961 0.78084654 -0.62471396 9.1315022e-05\n\t\t 0.77782518 -0.62843722 9.1315022e-05 0.77782518 -0.62843722 3.0277981e-05 0.77788621\n\t\t -0.62837619 3.0277981e-05 0.77788621 -0.62837619 3.0277963e-05 0.77794725 -0.62828463\n\t\t 9.1315022e-05 0.77782518 -0.62843722 3.0277963e-05 0.77794725 -0.62828463 3.0277981e-05\n\t\t 0.77788621 -0.62837619 -9.1796188e-05 0.77831346 -0.62782681 -9.1796188e-05 0.77831346\n\t\t -0.62782681 -0.0001223149 0.77895439 -0.62703335 3.0277963e-05 0.77794725 -0.62828463\n\t\t 0.00018286961 0.78084654 -0.62471396 0.00018287016 0.77907646 -0.62688076 0.00012183221\n\t\t 0.78206724 -0.6231575 0.00012183221 0.78206724 -0.6231575 9.1313705e-05 0.78206724\n\t\t -0.62312698 0.00018286961 0.78084654 -0.62471396 -0.0001223149 0.77895439 -0.62703335\n\t\t -9.1796188e-05 0.77831346 -0.62782681 -0.00012231503 0.77938163 -0.62651455 -0.00012231503\n\t\t 0.77938163 -0.62651455 -0.00012231513 0.77971733 -0.62611783 -0.0001223149 0.77895439\n\t\t -0.62703335 -9.1796654e-05 0.77980888 -0.6259957 -0.00012231513 0.77971733 -0.62611783\n\t\t -0.00012231503 0.77938163 -0.62651455 -0.00012231503 0.77938163 -0.62651455 -9.1796654e-05\n\t\t 0.77980888 -0.6259957 -9.1796654e-05 0.77980888 -0.6259957 -0.00018321219 0.32706681\n\t\t -0.94497514 -0.025696693 0.34955895 -0.93655205 -0.0052798046 0.33069852 -0.94369334\n\t\t -0.0052798046 0.33069852 -0.94369334 -1.0111287e-07 0.32700577 -0.94500566 -0.00018321219\n\t\t 0.32706681 -0.94497514 -0.0052798046 0.33069852 -0.94369334 -0.025696693 0.34955895\n\t\t -0.93655205 -0.080630004 0.34501165 -0.93511766 -0.080630004 0.34501165 -0.93511766\n\t\t -0.021607207 0.33109525 -0.94332713 -0.0052798046 0.33069852 -0.94369334 -0.0033571355\n\t\t 0.32139036 -0.94692832 -0.021607207 0.33109525 -0.94332713 -0.080630004 0.34501165\n\t\t -0.93511766 -0.080630004 0.34501165 -0.93511766 -0.070375785 0.33903003 -0.93810844\n\t\t -0.0033571355 0.32139036 -0.94692832 -0.070375785 0.33903003 -0.93810844 -0.080630004\n\t\t 0.34501165 -0.93511766 -0.1851254 0.40363768 -0.89596248 -0.1851254 0.40363768 -0.89596248\n\t\t -0.27051619 0.43284386 -0.85988957 -0.070375785 0.33903003 -0.93810844 -0.13028364\n\t\t 0.39265105 -0.91039765 -0.1851254 0.40363768 -0.89596248 -0.080630004 0.34501165\n\t\t -0.93511766 -0.080630004 0.34501165 -0.93511766 -0.025696693 0.34955895 -0.93655205\n\t\t -0.13028364 0.39265105 -0.91039765 -0.0033571355 0.32139036 -0.94692832 -0.070375785\n\t\t 0.33903003 -0.93810844;\n\tsetAttr \".n[26726:26891]\" -type \"float3\"  -6.113686e-05 0.32288578 -0.94640952\n\t\t -6.113686e-05 0.32288578 -0.94640952 6.0937178e-05 0.32288578 -0.94640952 -0.0033571355\n\t\t 0.32139036 -0.94692832 -9.9772869e-08 0.32267213 -0.94650108 6.0937178e-05 0.32288578\n\t\t -0.94640952 -6.113686e-05 0.32288578 -0.94640952 -6.113686e-05 0.32288578 -0.94640952\n\t\t -9.9772869e-08 0.32267213 -0.94650108 -9.9772869e-08 0.32267213 -0.94650108 0.00027453704\n\t\t 0.41898867 0.90798664 0.00027453704 0.41898867 0.90798664 0.00030505555 0.41895816\n\t\t 0.90798664 0.00030505555 0.41895816 0.90798664 0.00030505555 0.41895816 0.90798664\n\t\t 0.00027453704 0.41898867 0.90798664 0.60905796 -0.27918321 -0.74233222 0.59547722\n\t\t -0.28623298 -0.75063324 0.59544671 -0.28611091 -0.75066376 0.59544671 -0.28611091\n\t\t -0.75066376 0.61049235 -0.27848127 -0.74141669 0.60905796 -0.27918321 -0.74233222\n\t\t 0.65392017 -0.25901043 -0.71080661 0.60905796 -0.27918321 -0.74233222 0.61049235\n\t\t -0.27848127 -0.74141669 0.61049235 -0.27848127 -0.74141669 0.65764344 -0.25711828\n\t\t -0.70805997 0.65392017 -0.25901043 -0.71080661 0.69692075 -0.23728125 -0.6767174\n\t\t 0.65392017 -0.25901043 -0.71080661 0.65764344 -0.25711828 -0.70805997 0.65764344\n\t\t -0.25711828 -0.70805997 0.69838566 -0.23871562 -0.67470318 0.69692075 -0.23728125\n\t\t -0.6767174 0.72783601 -0.2448193 -0.64052248 0.69692075 -0.23728125 -0.6767174 0.69838566\n\t\t -0.23871562 -0.67470318 0.69838566 -0.23871562 -0.67470318 0.72948396 -0.25348657\n\t\t -0.63527328 0.72783601 -0.2448193 -0.64052248 0.77544487 -0.28366932 -0.56407362\n\t\t 0.72783601 -0.2448193 -0.64052248 0.72948396 -0.25348657 -0.63527328 0.72948396 -0.25348657\n\t\t -0.63527328 0.77379692 -0.30463555 -0.55531478 0.77544487 -0.28366932 -0.56407362\n\t\t 0.81829292 -0.4326607 -0.37836844 0.77544487 -0.28366932 -0.56407362 0.77379692 -0.30463555\n\t\t -0.55531478 0.77379692 -0.30463555 -0.55531478 0.79662478 -0.47611907 -0.37238681\n\t\t 0.81829292 -0.4326607 -0.37836844 0.8850674 -0.3950924 -0.2460402 0.81829292 -0.4326607\n\t\t -0.37836844 0.79662478 -0.47611907 -0.37238681 0.79662478 -0.47611907 -0.37238681\n\t\t 0.87841439 -0.41590601 -0.23526716 0.8850674 -0.3950924 -0.2460402 0.95486319 -0.2451549\n\t\t -0.1675466 0.8850674 -0.3950924 -0.2460402 0.87841439 -0.41590601 -0.23526716 0.87841439\n\t\t -0.41590601 -0.23526716 0.95730466 -0.23725061 -0.1650746 0.95486319 -0.2451549 -0.1675466\n\t\t 0.96615505 -0.19739343 -0.16589861 0.95486319 -0.2451549 -0.1675466 0.95730466 -0.23725061\n\t\t -0.1650746 0.95730466 -0.23725061 -0.1650746 0.96752834 -0.19296825 -0.1630909 0.96615505\n\t\t -0.19739343 -0.16589861 0.97637874 -0.16147316 -0.14343698 0.96615505 -0.19739343\n\t\t -0.16589861 0.96752834 -0.19296825 -0.1630909 0.96752834 -0.19296825 -0.1630909 0.97747737\n\t\t -0.15704797 -0.1408429 0.97637874 -0.16147316 -0.14343698 0.98379475 -0.12768917\n\t\t -0.1258278 0.97637874 -0.16147316 -0.14343698 0.97747737 -0.15704797 -0.1408429 0.97747737\n\t\t -0.15704797 -0.1408429 0.98355061 -0.12790279 -0.12741476 0.98379475 -0.12768917\n\t\t -0.1258278 0.98379475 -0.12768917 -0.1258278 0.98355061 -0.12790279 -0.12741476 0.9894712\n\t\t -0.10513597 -0.099368259 0.9894712 -0.10513597 -0.099368259 0.99014252 -0.085573599\n\t\t -0.11075167 0.98379475 -0.12768917 -0.1258278 0.99133283 -0.12674306 -0.033875536\n\t\t 0.99014252 -0.085573599 -0.11075167 0.9894712 -0.10513597 -0.099368259 0.9894712\n\t\t -0.10513597 -0.099368259 0.98751801 -0.15732262 1.170757e-08 0.99133283 -0.12674306\n\t\t -0.033875536 0.76195574 -0.3227025 -0.56144899 0.73375666 -0.3807182 -0.56266975\n\t\t 0.72557765 -0.3922542 -0.56538588 0.72557765 -0.3922542 -0.56538588 0.73290211 -0.38572323\n\t\t -0.56035036 0.76195574 -0.3227025 -0.56144899 0.69377738 -0.42042279 -0.58470404\n\t\t 0.73290211 -0.38572323 -0.56035036 0.72557765 -0.3922542 -0.56538588 0.72557765 -0.3922542\n\t\t -0.56538588 0.68703282 -0.42606872 -0.58854938 0.69377738 -0.42042279 -0.58470404\n\t\t 0.69377738 -0.42042279 -0.58470404 0.68703282 -0.42606872 -0.58854938 0.65645325\n\t\t -0.44776741 -0.60707414 0.65645325 -0.44776741 -0.60707414 0.65544617 -0.43873394\n\t\t -0.61467326 0.69377738 -0.42042279 -0.58470404 0.65544617 -0.43873394 -0.61467326\n\t\t 0.65645325 -0.44776741 -0.60707414 0.64473414 -0.46211112 -0.60887474 0.64473414\n\t\t -0.46211112 -0.60887474 0.64037001 -0.42576358 -0.6392101 0.65544617 -0.43873394\n\t\t -0.61467326 0.64427638 -0.43052447 -0.6320383 0.64037001 -0.42576358 -0.6392101 0.64473414\n\t\t -0.46211112 -0.60887474 0.64473414 -0.46211112 -0.60887474 0.63646364 -0.47987288\n\t\t -0.60380864 0.64427638 -0.43052447 -0.6320383 0.65544617 -0.43873394 -0.61467326\n\t\t 0.64037001 -0.42576358 -0.6392101 0.59230334 -0.46461368 -0.65822315 0.59230334 -0.46461368\n\t\t -0.65822315 0.60301542 -0.4819482 -0.63563943 0.65544617 -0.43873394 -0.61467326\n\t\t 0.56938398 -0.45438996 -0.68501842 0.59230334 -0.46461368 -0.65822315 0.64037001\n\t\t -0.42576358 -0.6392101 0.64037001 -0.42576358 -0.6392101 0.64427638 -0.43052447 -0.6320383\n\t\t 0.56938398 -0.45438996 -0.68501842 0.73375666 -0.3807182 -0.56266975 0.76195574 -0.3227025\n\t\t -0.56144899 0.78038895 -0.29819614 -0.5495773 0.79189432 -0.22800359 -0.56648457\n\t\t 0.78038895 -0.29819614 -0.5495773 0.76195574 -0.3227025 -0.56144899 0.76195574 -0.3227025\n\t\t -0.56144899 0.76812041 -0.23639618 -0.5950194 0.79189432 -0.22800359 -0.56648457\n\t\t 0.82610559 -0.22659972 -0.51591539 0.78038895 -0.29819614 -0.5495773 0.79189432 -0.22800359\n\t\t -0.56648457 0.79189432 -0.22800359 -0.56648457 0.82796723 -0.18164596 -0.53050327\n\t\t 0.82610559 -0.22659972 -0.51591539 0.78038895 -0.29819614 -0.5495773 0.82610559 -0.22659972\n\t\t -0.51591539 0.83544427 -0.23902075 -0.49479657 0.83544427 -0.23902075 -0.49479657\n\t\t 0.75109118 -0.35453331 -0.55687124 0.78038895 -0.29819614 -0.5495773 0.78038895 -0.29819614\n\t\t -0.5495773 0.75109118 -0.35453331 -0.55687124 0.73375666 -0.3807182 -0.56266975 0.86635953\n\t\t -0.17548119 -0.46754357 0.82610559 -0.22659972 -0.51591539 0.82796723 -0.18164596\n\t\t -0.53050327 0.82796723 -0.18164596 -0.53050327 0.8569293 -0.1501203 -0.49305704 0.86635953\n\t\t -0.17548119 -0.46754357;\n\tsetAttr \".n[26892:27057]\" -type \"float3\"  0.89931947 -0.13058844 -0.41731009 0.86635953\n\t\t -0.17548119 -0.46754357 0.8569293 -0.1501203 -0.49305704 0.8569293 -0.1501203 -0.49305704\n\t\t 0.8884244 -0.10568535 -0.44666889 0.89931947 -0.13058844 -0.41731009 0.86635953 -0.17548119\n\t\t -0.46754357 0.89931947 -0.13058844 -0.41731009 0.9087497 -0.13617334 -0.39445174\n\t\t 0.9087497 -0.13617334 -0.39445174 0.88314468 -0.16129008 -0.44047365 0.86635953 -0.17548119\n\t\t -0.46754357 0.82610559 -0.22659972 -0.51591539 0.86635953 -0.17548119 -0.46754357\n\t\t 0.88314468 -0.16129008 -0.44047365 0.88314468 -0.16129008 -0.44047365 0.83544427\n\t\t -0.23902075 -0.49479657 0.82610559 -0.22659972 -0.51591539 0.9104892 -0.079073206\n\t\t -0.40586567 0.89931947 -0.13058844 -0.41731009 0.8884244 -0.10568535 -0.44666889\n\t\t 0.8884244 -0.10568535 -0.44666889 0.90359205 -0.027069671 -0.42750329 0.9104892 -0.079073206\n\t\t -0.40586567 0.89953309 -0.023132784 -0.43620107 0.9104892 -0.079073206 -0.40586567\n\t\t 0.90359205 -0.027069671 -0.42750329 0.90359205 -0.027069671 -0.42750329 0.8936125\n\t\t 0.025116976 -0.44807276 0.89953309 -0.023132784 -0.43620107 0.9104892 -0.079073206\n\t\t -0.40586567 0.89953309 -0.023132784 -0.43620107 0.90710163 -0.055543438 -0.41718802\n\t\t 0.90658283 -0.027557967 -0.42109439 0.90710163 -0.055543438 -0.41718802 0.89953309\n\t\t -0.023132784 -0.43620107 0.89953309 -0.023132784 -0.43620107 0.89629811 -0.003234718\n\t\t -0.44337291 0.90658283 -0.027557967 -0.42109439 0.89629811 -0.003234718 -0.44337291\n\t\t 0.89953309 -0.023132784 -0.43620107 0.8936125 0.025116976 -0.44807276 0.90774256\n\t\t -0.029236482 -0.41846979 0.90658283 -0.027557967 -0.42109439 0.89629811 -0.003234718\n\t\t -0.44337291 0.89629811 -0.003234718 -0.44337291 0.90343946 -0.023560042 -0.4280526\n\t\t 0.90774256 -0.029236482 -0.41846979 0.90710163 -0.055543438 -0.41718802 0.91409045\n\t\t -0.13483052 -0.38236642 0.9104892 -0.079073206 -0.40586567 0.89931947 -0.13058844\n\t\t -0.41731009 0.9104892 -0.079073206 -0.40586567 0.91409045 -0.13483052 -0.38236642\n\t\t 0.91409045 -0.13483052 -0.38236642 0.9087497 -0.13617334 -0.39445174 0.89931947 -0.13058844\n\t\t -0.41731009 0.8936125 0.025116976 -0.44807276 0.88531142 0.055452369 -0.4616535 0.89629811\n\t\t -0.003234718 -0.44337291 0.89629811 -0.003234718 -0.44337291 0.88531142 0.055452369\n\t\t -0.4616535 0.88460952 0.051912222 -0.46336251 0.88460952 0.051912222 -0.46336251\n\t\t 0.90343946 -0.023560042 -0.4280526 0.89629811 -0.003234718 -0.44337291 0.69774449\n\t\t 0.6415298 -0.31864381 0.69615752 0.64305574 -0.31904057 0.68916881 0.63924092 -0.34110543\n\t\t 0.68916881 0.63924092 -0.34110543 0.69200701 0.63676894 -0.33997625 0.69774449 0.6415298\n\t\t -0.31864381 0.69200701 0.63676894 -0.33997625 0.68916881 0.63924092 -0.34110543 0.63142776\n\t\t 0.59004498 -0.50309771 0.63142776 0.59004498 -0.50309771 0.62987131 0.58735937 -0.50813323\n\t\t 0.69200701 0.63676894 -0.33997625 0.13846217 0.98831147 -0.063478574 0.13998809 0.98809785\n\t\t -0.063295461 0.13516617 0.98855561 -0.066591464 0.13516617 0.98855561 -0.066591464\n\t\t 0.13476942 0.98858613 -0.066896647 0.13846217 0.98831147 -0.063478574 0.13476942\n\t\t 0.98858613 -0.066896647 0.13516617 0.98855561 -0.066591464 0.13516617 0.98834199\n\t\t -0.069704354 0.13516617 0.98834199 -0.069704354 0.13605121 0.98821992 -0.069673829\n\t\t 0.13476942 0.98858613 -0.066896647 0.17123929 0.21848199 -0.96069217 -0.029542042\n\t\t 0.40269166 -0.91485339 0.018646698 0.36027095 -0.93264568 0.018646698 0.36027095\n\t\t -0.93264568 0.23657943 0.16687521 -0.95715201 0.17123929 0.21848199 -0.96069217 0.23657943\n\t\t 0.16687521 -0.95715201 0.018646698 0.36027095 -0.93264568 0.34080017 0.083285049\n\t\t -0.93642992 0.34080017 0.083285049 -0.93642992 0.34376046 0.086581051 -0.93502611\n\t\t 0.23657943 0.16687521 -0.95715201 0.36768702 -0.058137715 -0.9281289 0.34376046 0.086581051\n\t\t -0.93502611 0.34080017 0.083285049 -0.93642992 0.34080017 0.083285049 -0.93642992\n\t\t 0.37553027 -0.028626315 -0.92635882 0.36768702 -0.058137715 -0.9281289 -0.24643713\n\t\t 0.51988268 -0.81789613 0.018646698 0.36027095 -0.93264568 -0.19772959 0.53846848\n\t\t -0.81908631 -0.19772959 0.53846848 -0.81908631 -0.24604039 0.53556919 -0.80782503\n\t\t -0.24643713 0.51988268 -0.81789613 -0.26129964 0.51817364 -0.81435597 -0.24643713\n\t\t 0.51988268 -0.81789613 -0.24604039 0.53556919 -0.80782503 -0.17047656 0.52125603\n\t\t -0.83617669 -0.19772959 0.53846848 -0.81908631 0.018646698 0.36027095 -0.93264568\n\t\t 0.018646698 0.36027095 -0.93264568 -0.029542042 0.40269166 -0.91485339 -0.17047656\n\t\t 0.52125603 -0.83617669 -0.24604039 0.53556919 -0.80782503 -0.26468718 0.52192742\n\t\t -0.81084633 -0.26129964 0.51817364 -0.81435597 0.36497089 -0.12109741 -0.92309338\n\t\t 0.36643577 -0.12094481 -0.92251348 0.36768702 -0.058137715 -0.9281289 0.36768702\n\t\t -0.058137715 -0.9281289 0.37553027 -0.028626315 -0.92635882 0.36497089 -0.12109741\n\t\t -0.92309338 -0.25815609 0.053193614 -0.96462905 -0.24222542 0.054689024 -0.96865749\n\t\t -0.30539876 0.048615821 -0.95095676 -0.30539876 0.048615821 -0.95095676 -0.32132939\n\t\t 0.047059372 -0.94576859 -0.25815609 0.053193614 -0.96462905 0.61372703 0.48490873\n\t\t -0.62300491 0.61909837 0.47288442 -0.6269418 0.53648472 0.627949 -0.56373799 0.53648472\n\t\t 0.627949 -0.56373799 0.53297508 0.63341177 -0.56096077 0.61372703 0.48490873 -0.62300491\n\t\t 0.10571581 0.98785371 -0.11386464 0.085939817 0.99249244 -0.086916789 0.087862484\n\t\t 0.99209571 -0.089541383 0.087862484 0.99209571 -0.089541383 0.1088287 0.98699915\n\t\t -0.1180762 0.10571581 0.98785371 -0.11386464 0.62987131 0.58735937 -0.50813323 0.63142776\n\t\t 0.59004498 -0.50309771 0.55406338 0.53544736 -0.63737911 0.55406338 0.53544736 -0.63737911\n\t\t 0.55363607 0.5346539 -0.63841677 0.62987131 0.58735937 -0.50813323 0.55067581 0.53831613\n\t\t -0.63789797 0.55363607 0.5346539 -0.63841677 0.55406338 0.53544736 -0.63737911 0.55406338\n\t\t 0.53544736 -0.63737911 0.54936349 0.5399946 -0.63762325 0.55067581 0.53831613 -0.63789797\n\t\t -0.073092088 0.83697009 -0.54231399 -0.072146021 0.83666486 -0.54289383 -0.072664835\n\t\t 0.83727527 -0.5419172 -0.072664835 0.83727527 -0.5419172;\n\tsetAttr \".n[27058:27223]\" -type \"float3\"  -0.073458314 0.83761096 -0.54127634 -0.073092088\n\t\t 0.83697009 -0.54231399 -0.070436977 0.83678693 -0.54292434 -0.072664835 0.83727527\n\t\t -0.5419172 -0.072146021 0.83666486 -0.54289383 -0.072146021 0.83666486 -0.54289383\n\t\t -0.069735058 0.83635968 -0.5437178 -0.070436977 0.83678693 -0.54292434 0.54158127\n\t\t 0.54445034 -0.64049202 0.55067581 0.53831613 -0.63789797 0.54936349 0.5399946 -0.63762325\n\t\t 0.54936349 0.5399946 -0.63762325 0.54020798 0.54564053 -0.64061409 0.54158127 0.54445034\n\t\t -0.64049202 0.52143908 0.53541684 -0.664388 0.54158127 0.54445034 -0.64049202 0.54020798\n\t\t 0.54564053 -0.64061409 0.54020798 0.54564053 -0.64061409 0.52125597 0.53654605 -0.66359454\n\t\t 0.52143908 0.53541684 -0.664388 0.50102222 0.50859106 -0.70018619 0.52143908 0.53541684\n\t\t -0.664388 0.52125597 0.53654605 -0.66359454 0.52125597 0.53654605 -0.66359454 0.50270069\n\t\t 0.51097155 -0.69722593 0.50102222 0.50859106 -0.70018619 0.49232444 0.48509181 -0.72264785\n\t\t 0.50102222 0.50859106 -0.70018619 0.50270069 0.51097155 -0.69722593 0.50270069 0.51097155\n\t\t -0.69722593 0.49430814 0.48747224 -0.71971804 0.49232444 0.48509181 -0.72264785 0.48872325\n\t\t 0.44462425 -0.75060278 0.49232444 0.48509181 -0.72264785 0.49430814 0.48747224 -0.71971804\n\t\t 0.49430814 0.48747224 -0.71971804 0.48997453 0.45844913 -0.74141675 0.48872325 0.44462425\n\t\t -0.75060278 0.48872325 0.44462425 -0.75060278 0.48997453 0.45844913 -0.74141675 0.49092063\n\t\t 0.42802218 -0.75878173 0.49092063 0.42802218 -0.75878173 0.49458283 0.42667937 -0.75713378\n\t\t 0.48872325 0.44462425 -0.75060278 -0.061403502 0.84389776 -0.5329448 -0.061556093\n\t\t 0.84881127 -0.52504051 -0.060518466 0.84917748 -0.52458274 -0.060518466 0.84917748\n\t\t -0.52458274 -0.060701575 0.8441419 -0.53263962 -0.061403502 0.84389776 -0.5329448\n\t\t -0.061220393 0.84011346 -0.53889591 -0.061403502 0.84389776 -0.5329448 -0.060701575\n\t\t 0.8441419 -0.53263962 -0.061220396 0.85232085 -0.51936406 -0.060518466 0.84917748\n\t\t -0.52458274 -0.061556093 0.84881127 -0.52504051 -0.061556093 0.84881127 -0.52504051\n\t\t -0.06213595 0.85326695 -0.51774657 -0.061220396 0.85232085 -0.51936406 -0.062502168\n\t\t 0.83687848 -0.54377884 -0.061220393 0.84011346 -0.53889591 -0.060823649 0.84038812\n\t\t -0.53852969 -0.060701575 0.8441419 -0.53263962 -0.060823649 0.84038812 -0.53852969\n\t\t -0.061220393 0.84011346 -0.53889591 -0.060823649 0.84038812 -0.53852969 -0.062532686\n\t\t 0.83721423 -0.54322952 -0.062502168 0.83687848 -0.54377884 -0.065920241 0.83574933\n\t\t -0.54509115 -0.062502168 0.83687848 -0.54377884 -0.062532686 0.83721423 -0.54322952\n\t\t -0.062532686 0.83721423 -0.54322952 -0.066530608 0.8360545 -0.54457235 -0.065920241\n\t\t 0.83574933 -0.54509115 -0.069735058 0.83635968 -0.5437178 -0.065920241 0.83574933\n\t\t -0.54509115 -0.066530608 0.8360545 -0.54457235 -0.066530608 0.8360545 -0.54457235\n\t\t -0.070436977 0.83678693 -0.54292434 -0.069735058 0.83635968 -0.5437178 -0.074312866\n\t\t 0.97271645 0.21967216 -0.15295906 0.9725638 0.17523721 -0.028260441 0.97808772 0.20624401\n\t\t -0.028260441 0.97808772 0.20624401 -3.0821582e-05 0.98016298 0.19812609 -0.074312866\n\t\t 0.97271645 0.21967216 -3.0821582e-05 0.98016298 0.19812609 -0.028260441 0.97808772\n\t\t 0.20624401 -3.0480135e-07 0.98574787 0.16812639 -3.0480135e-07 0.98574787 0.16812639\n\t\t -9.1860355e-05 0.98583943 0.16763809 -3.0821582e-05 0.98016298 0.19812609 -9.1860355e-05\n\t\t 0.98583943 0.16763809 -3.0480135e-07 0.98574787 0.16812639 -9.1860369e-05 0.98586994\n\t\t 0.16745499 0.36960936 0.92385644 -0.099032633 0.36960936 0.92385644 -0.099063151\n\t\t 0.61513084 0.67641234 -0.40504172 0.61513084 0.67641234 -0.40504172 0.68300402 0.70708358\n\t\t -0.18305008 0.36960936 0.92385644 -0.099032633 -3.0920822e-07 1 -7.441745e-08 0.36960936\n\t\t 0.92385644 -0.099063151 0.36960936 0.92385644 -0.099032633 0.36960936 0.92385644\n\t\t -0.099032633 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 0.68300402\n\t\t 0.70708358 -0.18305008 0.61513084 0.67641234 -0.40504172 0.83706158 0.36082056 -0.41120642\n\t\t 0.83706158 0.36082056 -0.41120642 0.8923611 0.38267183 -0.23914307 0.68300402 0.70708358\n\t\t -0.18305008 0.8923611 0.38267183 -0.23914307 0.83706158 0.36082056 -0.41120642 0.91146582\n\t\t 0.0056156567 -0.41126743 0.91146582 0.0056156567 -0.41126743 0.96591085 2.7940402e-07\n\t\t -0.258858 0.8923611 0.38267183 -0.23914307 0.96591085 2.7940402e-07 -0.258858 0.91146582\n\t\t 0.0056156567 -0.41126743 0.86379594 -0.28763673 -0.41361734 0.86379594 -0.28763673\n\t\t -0.41361734 0.89596254 -0.33539817 -0.29108551 0.96591085 2.7940402e-07 -0.258858\n\t\t 0.89596254 -0.33539817 -0.29108551 0.86379594 -0.28763673 -0.41361734 0.81084639\n\t\t -0.3112886 -0.49555951 0.81084639 -0.3112886 -0.49555951 0.73781568 -0.5374918 -0.40827659\n\t\t 0.89596254 -0.33539817 -0.29108551 0.41831747 -0.88146597 -0.21909232 0.31293705\n\t\t -0.90661323 -0.28296757 0.399396 -0.9032867 -0.15662092 0.399396 -0.9032867 -0.15662092\n\t\t 0.45194888 -0.88375485 -0.1211279 0.41831747 -0.88146597 -0.21909232 0.45194888 -0.88375485\n\t\t -0.1211279 0.399396 -0.9032867 -0.15662092 0.36960995 -0.9238562 -0.099032499 0.36960995\n\t\t -0.9238562 -0.099032499 0.36964047 -0.9238562 -0.099032499 0.45194888 -0.88375485\n\t\t -0.1211279 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -0.28400555\n\t\t 0.9557786 0.07611309 -0.28400555 0.9557786 0.07611309 -0.28400555 0.9557786 0.07611309\n\t\t -3.0920822e-07 1 -7.441745e-08 -0.36964047 0.9238562 0.099063016 -0.28400555 0.9557786\n\t\t 0.07611309 -0.28400555 0.9557786 0.07611309 -0.28400555 0.9557786 0.07611309 -0.36964047\n\t\t 0.9238562 0.099063016 -0.36964047 0.9238562 0.099063016 0.32914186 0.91238147 -0.24323259\n\t\t 0.32435045 0.91442621 -0.2420729 0.63765347 0.70140707 -0.31843019 0.63765347 0.70140707\n\t\t -0.31843019 0.64070535 0.6982637 -0.31916264 0.32914186 0.91238147 -0.24323259 -0.044191107\n\t\t 0.9871822 -0.15329455 0.32435045 0.91442621 -0.2420729 0.32914186 0.91238147 -0.24323259\n\t\t 0.32914186 0.91238147 -0.24323259 -0.038117923 0.9871822 -0.15478995;\n\tsetAttr \".n[27224:27389]\" -type \"float3\"  -0.044191107 0.9871822 -0.15329455 0.64070535\n\t\t 0.6982637 -0.31916264 0.63765347 0.70140707 -0.31843019 0.8482008 0.38004723 -0.36890778\n\t\t 0.8482008 0.38004723 -0.36890778 0.84902483 0.37803301 -0.36909088 0.64070535 0.6982637\n\t\t -0.31916264 0.84902483 0.37803301 -0.36909088 0.8482008 0.38004723 -0.36890778 0.92196417\n\t\t 2.5626079e-07 -0.38724938 0.92196417 2.5626079e-07 -0.38724938 0.92196417 2.5626079e-07\n\t\t -0.38724938 0.84902483 0.37803301 -0.36909088 0.92196417 2.5626079e-07 -0.38724938\n\t\t 0.92196417 2.5626079e-07 -0.38724938 0.84820104 -0.38004676 -0.3688772 0.84820104\n\t\t -0.38004676 -0.3688772 0.84902507 -0.37803254 -0.36909083 0.92196417 2.5626079e-07\n\t\t -0.38724938 0.84902507 -0.37803254 -0.36909083 0.84820104 -0.38004676 -0.3688772\n\t\t 0.63765395 -0.70140672 -0.31843007 0.63765395 -0.70140672 -0.31843007 0.64070582\n\t\t -0.69826335 -0.31916252 0.84902507 -0.37803254 -0.36909083 0.64070582 -0.69826335\n\t\t -0.31916252 0.63765395 -0.70140672 -0.31843007 0.32435098 -0.91442597 -0.24207275\n\t\t 0.32435098 -0.91442597 -0.24207275 0.32914239 -0.91238123 -0.24323244 0.64070582\n\t\t -0.69826335 -0.31916252 0.32914239 -0.91238123 -0.24323244 0.32435098 -0.91442597\n\t\t -0.24207275 -0.044190496 -0.9871822 -0.1532944 -0.044190496 -0.9871822 -0.1532944\n\t\t -0.038117312 -0.9871822 -0.15478981 0.32914239 -0.91238123 -0.24323244 -0.044191107\n\t\t 0.9871822 -0.15329455 -0.038117923 0.9871822 -0.15478995 -0.32074982 0.94329649 -0.085085668\n\t\t -0.32074982 0.94329649 -0.085085668 -0.32496139 0.94195366 -0.0841396 -0.044191107\n\t\t 0.9871822 -0.15329455 -0.40788016 0.91073322 -0.064729825 -0.32496139 0.94195366\n\t\t -0.0841396 -0.32074982 0.94329649 -0.085085668 -0.32074982 0.94329649 -0.085085668\n\t\t -0.40788016 0.91070271 -0.064729825 -0.40788016 0.91073322 -0.064729825 -0.32074922\n\t\t -0.94329673 -0.085085534 -0.038117312 -0.9871822 -0.15478981 -0.044190496 -0.9871822\n\t\t -0.1532944 -0.044190496 -0.9871822 -0.1532944 -0.3249608 -0.9419539 -0.084139466\n\t\t -0.32074922 -0.94329673 -0.085085534 -0.40791014 -0.91070294 -0.064729691 -0.32074922\n\t\t -0.94329673 -0.085085534 -0.3249608 -0.9419539 -0.084139466 -0.3249608 -0.9419539\n\t\t -0.084139466 -0.40787962 -0.91070294 -0.064729691 -0.40791014 -0.91070294 -0.064729691\n\t\t 0.25876644 1.5189333e-07 0.96591085 0.25879696 1.5190277e-07 0.96591085 0.25879696\n\t\t 1.5190277e-07 0.96591085 0.25879696 1.5190277e-07 0.96591085 0.25876644 1.5189333e-07\n\t\t 0.96591085 0.25876644 1.5189333e-07 0.96591085 0.25879696 -3.0366606e-05 0.96591085\n\t\t 0.25876644 1.5189333e-07 0.96591085 0.25876644 1.5189333e-07 0.96591085 0.25876644\n\t\t 1.5189333e-07 0.96591085 0.25879696 -3.0366606e-05 0.96591085 0.25879696 -3.0366606e-05\n\t\t 0.96591085 0.25876644 -3.0366617e-05 0.96591085 0.25879696 -3.0366606e-05 0.96591085\n\t\t 0.25879696 -3.0366606e-05 0.96591085 0.25879696 -3.0366606e-05 0.96591085 0.25876644\n\t\t 1.5189333e-07 0.96591085 0.25876644 -3.0366617e-05 0.96591085 0.25879696 1.5190277e-07\n\t\t 0.96591085 0.25876644 -3.0366617e-05 0.96591085 0.25876644 1.5189333e-07 0.96591085\n\t\t 0.25876644 1.5189333e-07 0.96591085 0.25879696 1.5190277e-07 0.96591085 0.25879696\n\t\t 1.5190277e-07 0.96591085 0.25876644 1.5189333e-07 0.96591085 0.25879696 1.5190277e-07\n\t\t 0.96591085 0.25879696 1.5190277e-07 0.96591085 0.25879696 1.5190277e-07 0.96591085\n\t\t 0.25876644 1.5189333e-07 0.96591085 0.25876644 1.5189333e-07 0.96591085 0.25876644\n\t\t 3.0670402e-05 0.96591085 0.25876644 1.5189333e-07 0.96591085 0.25876644 1.5189333e-07\n\t\t 0.96591085 0.25876644 1.5189333e-07 0.96591085 0.25879696 3.067041e-05 0.96591085\n\t\t 0.25876644 3.0670402e-05 0.96591085 0.25876644 1.5189333e-07 0.96591085 0.25876644\n\t\t 3.0670402e-05 0.96591085 0.25879696 3.067041e-05 0.96591085 0.25879696 3.067041e-05\n\t\t 0.96591085 0.25876644 1.5189333e-07 0.96591085 0.25876644 1.5189333e-07 0.96591085\n\t\t 0.25879696 1.5190277e-07 0.96591085 0.25876644 1.5189333e-07 0.96591085 0.25876644\n\t\t 1.5189333e-07 0.96591085 0.25876644 1.5189333e-07 0.96591085 0.25879696 1.5190277e-07\n\t\t 0.96591085 0.25879696 1.5190277e-07 0.96591085 0.25879696 1.5190277e-07 0.96591085\n\t\t 0.25879696 1.5190277e-07 0.96591085 0.25882748 1.519122e-07 0.96591085 0.25882748\n\t\t 1.519122e-07 0.96591085 0.25882748 1.519122e-07 0.96591085 0.25879696 1.5190277e-07\n\t\t 0.96591085 0.25882748 1.519122e-07 0.96591085 0.25882748 1.519122e-07 0.96591085\n\t\t 0.25882748 3.0670421e-05 0.96591085 0.25882748 3.0670421e-05 0.96591085 0.258858\n\t\t 6.1188941e-05 0.96588033 0.25882748 1.519122e-07 0.96591085 0.25882748 1.519122e-07\n\t\t 0.96591085 0.25882748 1.519122e-07 0.96591085 0.25879696 1.5190277e-07 0.96591085\n\t\t 0.25879696 1.5190277e-07 0.96591085 0.25879696 1.5190277e-07 0.96591085 0.25882748\n\t\t 1.519122e-07 0.96591085 0.25882748 -3.0366597e-05 0.96591085 0.25882748 1.519122e-07\n\t\t 0.96591085 0.25882748 1.519122e-07 0.96591085 0.25882748 1.519122e-07 0.96591085\n\t\t 0.258858 -3.0366587e-05 0.96591085 0.25882748 -3.0366597e-05 0.96591085 -0.25882748\n\t\t -1.519122e-07 -0.96591085 -0.25879696 -1.5190277e-07 -0.96591085 -0.25879696 -1.5190277e-07\n\t\t -0.96591085 -0.25879696 -1.5190277e-07 -0.96591085 -0.25879696 -1.5190277e-07 -0.96591085\n\t\t -0.25882748 -1.519122e-07 -0.96591085 -0.25879696 -1.5190277e-07 -0.96591085 -0.25879696\n\t\t -1.5190277e-07 -0.96591085 -0.25879696 -1.5190277e-07 -0.96591085 -0.25879696 -1.5190277e-07\n\t\t -0.96591085 -0.25879696 -1.5190277e-07 -0.96591085 -0.25879696 -1.5190277e-07 -0.96591085\n\t\t -0.25879696 -1.5190277e-07 -0.96591085 -0.25879696 -1.5190277e-07 -0.96591085 -0.25879696\n\t\t -1.5190277e-07 -0.96591085 -0.25879696 -1.5190277e-07 -0.96591085 -0.25879696 -1.5190277e-07\n\t\t -0.96591085 -0.25879696 -1.5190277e-07 -0.96591085 -0.25879696 -1.5190277e-07 -0.96591085\n\t\t -0.25879696 -1.5190277e-07 -0.96591085 -0.25879696 -1.5190277e-07 -0.96591085 -0.25879696\n\t\t -1.5190277e-07 -0.96591085 -0.25882748 -1.519122e-07 -0.96591085 -0.25879696 -1.5190277e-07\n\t\t -0.96591085 -0.25879696 -1.5190277e-07 -0.96591085 -0.25879696 -1.5190277e-07 -0.96591085\n\t\t -0.25879696 -1.5190277e-07 -0.96591085 -0.25879696 -1.5190277e-07 -0.96591085 -0.25879696\n\t\t -1.5190277e-07 -0.96591085 -0.25879696 -1.5190277e-07 -0.96591085 -0.25882748 3.0366597e-05\n\t\t -0.96591085 -0.25879696 -1.5190277e-07 -0.96591085 -0.25879696 -1.5190277e-07 -0.96591085;\n\tsetAttr \".n[27390:27555]\" -type \"float3\"  -0.25879696 -1.5190277e-07 -0.96591085\n\t\t -0.25876644 -1.5189333e-07 -0.96591085 -0.25882748 3.0366597e-05 -0.96591085 -0.25879696\n\t\t -1.5190277e-07 -0.96591085 -0.25882748 3.0366597e-05 -0.96591085 -0.25882748 -1.519122e-07\n\t\t -0.96591085 -0.25882748 -1.519122e-07 -0.96591085 -0.25882748 -3.0670421e-05 -0.96591085\n\t\t -0.25879696 -1.5190277e-07 -0.96591085 -0.25879696 -1.5190277e-07 -0.96591085 -0.25879696\n\t\t -1.5190277e-07 -0.96591085 -0.25882748 -3.0670421e-05 -0.96591085 -0.25882748 -3.0670421e-05\n\t\t -0.96591085 -0.25879696 6.0885119e-05 -0.96591085 -0.25879696 -1.5190277e-07 -0.96591085\n\t\t 0.20239849 0.79973751 -0.56517231 0.18561332 0.80568862 -0.56245619 0.50746161 0.61586362\n\t\t -0.60258806 0.50746161 0.61586362 -0.60258806 0.61513084 0.67641234 -0.40504172 0.20239849\n\t\t 0.79973751 -0.56517231 -0.047578655 0.96789455 -0.24674222 0.18561332 0.80568862\n\t\t -0.56245619 0.20239849 0.79973751 -0.56517231 0.20239849 0.79973751 -0.56517231 -0.13138245\n\t\t 0.86156791 -0.49031043 -0.047578655 0.96789455 -0.24674222 0.61513084 0.67641234\n\t\t -0.40504172 0.50746161 0.61586362 -0.60258806 0.7473982 0.33787063 -0.57200843 0.7473982\n\t\t 0.33787063 -0.57200843 0.83706158 0.36082056 -0.41120642 0.61513084 0.67641234 -0.40504172\n\t\t 0.83706158 0.36082056 -0.41120642 0.7473982 0.33787063 -0.57200843 0.83883166 0.14294891\n\t\t -0.52522355 0.83883166 0.14294891 -0.52522355 0.91146582 0.0056156567 -0.41126743\n\t\t 0.83706158 0.36082056 -0.41120642 -0.047578655 0.96789455 -0.24674222 -0.13138245\n\t\t 0.86156791 -0.49031043 -0.37684283 0.82769233 -0.41575372 -0.37684283 0.82769233\n\t\t -0.41575372 -0.3364974 0.91787457 -0.21039468 -0.047578655 0.96789455 -0.24674222\n\t\t -0.42567244 0.88595223 -0.18399616 -0.3364974 0.91787457 -0.21039468 -0.37684283\n\t\t 0.82769233 -0.41575372 -0.37684283 0.82769233 -0.41575372 -0.44929373 0.80254513\n\t\t -0.39246809 -0.42567244 0.88595223 -0.18399616 0.91146582 0.0056156567 -0.41126743\n\t\t 0.83883166 0.14294891 -0.52522355 0.83040863 0.0093083605 -0.55702382 0.83040863\n\t\t 0.0093083605 -0.55702382 0.86379594 -0.28763673 -0.41361734 0.91146582 0.0056156567\n\t\t -0.41126743 0.81084639 -0.3112886 -0.49555951 0.86379594 -0.28763673 -0.41361734\n\t\t 0.83040863 0.0093083605 -0.55702382 0.83040863 0.0093083605 -0.55702382 0.78243357\n\t\t 0.086031869 -0.61671805 0.81084639 -0.3112886 -0.49555951 -0.22449395 -0.68980998\n\t\t -0.68825334 -0.18768862 -0.68849766 -0.70052183 -0.20679322 -0.68370628 -0.69978935\n\t\t -0.20679322 -0.68370628 -0.69978935 -0.24182846 -0.67421502 -0.69777513 -0.22449395\n\t\t -0.68980998 -0.68825334 -0.20404655 -0.69521177 -0.68919945 -0.18768862 -0.68849766\n\t\t -0.70052183 -0.22449395 -0.68980998 -0.68825334 -0.22449395 -0.68980998 -0.68825334\n\t\t -0.23187941 -0.70604581 -0.66908777 -0.20404655 -0.69521177 -0.68919945 -0.019409619\n\t\t -0.49650568 -0.86779374 0.14819801 -0.37937558 -0.91326642 0.14804541 -0.37955871\n\t\t -0.9132359 0.14804541 -0.37955871 -0.9132359 -0.019653767 -0.49659723 -0.8677327\n\t\t -0.019409619 -0.49650568 -0.86779374 -0.21832925 -0.53587461 -0.8155461 -0.019409619\n\t\t -0.49650568 -0.86779374 -0.019653767 -0.49659723 -0.8677327 -0.019653767 -0.49659723\n\t\t -0.8677327 -0.21863444 -0.53587461 -0.81548506 -0.21832925 -0.53587461 -0.8155461\n\t\t -0.36838877 -0.51564091 -0.77352208 -0.21832925 -0.53587461 -0.8155461 -0.21863444\n\t\t -0.53587461 -0.81548506 -0.21863444 -0.53587461 -0.81548506 -0.37324122 -0.51374876\n\t\t -0.77248448 -0.36838877 -0.51564091 -0.77352208 -0.41676062 -0.49580389 -0.76186401\n\t\t -0.36838877 -0.51564091 -0.77352208 -0.37324122 -0.51374876 -0.77248448 -0.37324122\n\t\t -0.51374876 -0.77248448 -0.41676062 -0.49580389 -0.76186401 -0.41676062 -0.49580389\n\t\t -0.76186401 0.2619099 -0.20593891 -0.94283885 0.14804541 -0.37955871 -0.9132359 0.14819801\n\t\t -0.37937558 -0.91326642 0.14819801 -0.37937558 -0.91326642 0.26197094 -0.20581684\n\t\t -0.94283885 0.2619099 -0.20593891 -0.94283885 0.30033267 -3.0496625e-05 -0.95382547\n\t\t 0.2619099 -0.20593891 -0.94283885 0.26197094 -0.20581684 -0.94283885 0.26197094 -0.20581684\n\t\t -0.94283885 0.30033267 -3.0496625e-05 -0.95382547 0.30033267 -3.0496625e-05 -0.95382547\n\t\t 0.26187927 0.20596942 -0.94283885 0.30033267 -3.0496625e-05 -0.95382547 0.30033267\n\t\t -3.0496625e-05 -0.95382547 0.30033267 -3.0496625e-05 -0.95382547 0.26190978 0.20590839\n\t\t -0.94283885 0.26187927 0.20596942 -0.94283885 0.14804517 0.37952819 -0.9132359 0.26187927\n\t\t 0.20596942 -0.94283885 0.26190978 0.20590839 -0.94283885 0.26190978 0.20590839 -0.94283885\n\t\t 0.14822829 0.37934506 -0.91326642 0.14804517 0.37952819 -0.9132359 -0.019654073 0.49659711\n\t\t -0.86773282 0.14804517 0.37952819 -0.9132359 0.14822829 0.37934506 -0.91326642 0.14822829\n\t\t 0.37934506 -0.91326642 -0.019409925 0.49650556 -0.86779386 -0.019654073 0.49659711\n\t\t -0.86773282 -0.21863477 0.53587437 -0.81548518 -0.019654073 0.49659711 -0.86773282\n\t\t -0.019409925 0.49650556 -0.86779386 -0.019409925 0.49650556 -0.86779386 -0.21829906\n\t\t 0.53587437 -0.81554621 -0.21863477 0.53587437 -0.81548518 -0.37324151 0.51377892\n\t\t -0.77245402 -0.21863477 0.53587437 -0.81548518 -0.21829906 0.53587437 -0.81554621\n\t\t -0.21829906 0.53587437 -0.81554621 -0.36841959 0.51567107 -0.77349168 -0.37324151\n\t\t 0.51377892 -0.77245402 -0.41676092 0.49580353 -0.76186413 -0.37324151 0.51377892\n\t\t -0.77245402 -0.36841959 0.51567107 -0.77349168 -0.36841959 0.51567107 -0.77349168\n\t\t -0.41676092 0.49580353 -0.76186413 -0.41676092 0.49580353 -0.76186413 0.39448196\n\t\t 0.91888189 -6.8380835e-08 0.56611812 0.82430512 -6.1342675e-08 0.56614864 0.8242746\n\t\t -6.1340401e-08 0.56614864 0.8242746 -6.1340401e-08 0.42237589 0.90639985 -6.7451957e-08\n\t\t 0.39448196 0.91888189 -6.8380835e-08 -3.0920822e-07 1 -7.441745e-08 0.39448196 0.91888189\n\t\t -6.8380835e-08 0.42237589 0.90639985 -6.7451957e-08 0.42237589 0.90639985 -6.7451957e-08\n\t\t -0.047578655 0.96789455 -0.24674222 -3.0920822e-07 1 -7.441745e-08 0.9507125 0.31003782\n\t\t -2.3072202e-08 0.89904463 0.4378188 -3.0551091e-05 0.89907515 0.43775776 -3.2576796e-08\n\t\t 0.89907515 0.43775776 -3.2576796e-08 0.94817942 0.31769797 -2.3642251e-08 0.9507125\n\t\t 0.31003782 -2.3072202e-08 0.98132259 0.19235846 -1.4314804e-08;\n\tsetAttr \".n[27556:27721]\" -type \"float3\"  0.9507125 0.31003782 -2.3072202e-08 0.94817942\n\t\t 0.31769797 -2.3642251e-08 0.94817942 0.31769797 -2.3642251e-08 0.98132259 0.19232795\n\t\t -1.4312533e-08 0.98132259 0.19235846 -1.4314804e-08 -0.30066866 0.95370328 -7.0972177e-08\n\t\t -3.0920822e-07 1 -7.441745e-08 -0.047578655 0.96789455 -0.24674222 -0.047578655 0.96789455\n\t\t -0.24674222 -0.3364974 0.91787457 -0.21039468 -0.30066866 0.95370328 -7.0972177e-08\n\t\t -0.39085084 0.92043811 -6.8496668e-08 -0.30066866 0.95370328 -7.0972177e-08 -0.3364974\n\t\t 0.91787457 -0.21039468 -0.3364974 0.91787457 -0.21039468 -0.42567244 0.88595223 -0.18399616\n\t\t -0.39085084 0.92043811 -6.8496668e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07\n\t\t 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07\n\t\t 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07\n\t\t 1 -7.441745e-08 0.003722949 0.99996948 0.0014648141 0.003722949 0.99996948 0.0014648141\n\t\t 0.0017087273 0.99996948 0.001281703 -3.0920822e-07 1 -7.441745e-08 -0.96136349 -0.26099458\n\t\t -0.087191358 -0.90768147 -0.23612203 -0.34687334 -0.85058123 -0.3523365 -0.3903012\n\t\t -0.85058123 -0.3523365 -0.3903012 -0.86861771 -0.42262062 -0.25855279 -0.96136349\n\t\t -0.26099458 -0.087191358 -0.95635849 -0.19473892 -0.21768852 -0.90768147 -0.23612203\n\t\t -0.34687334 -0.96136349 -0.26099458 -0.087191358 -0.96136349 -0.26099458 -0.087191358\n\t\t -0.96572763 -0.25623369 -0.040955823 -0.95635849 -0.19473892 -0.21768852 -0.10476996\n\t\t -0.25769839 -0.96050906 -0.10150447 -0.25589779 -0.96133304 -0.11410861 -0.26288652\n\t\t -0.95803702 -0.11410861 -0.26288652 -0.95803702 -0.11728255 -0.26462609 -0.95718253\n\t\t -0.10476996 -0.25769839 -0.96050906 -0.8281197 -0.1948915 -0.52552873 -0.71633041\n\t\t -0.25809529 -0.64824367 -0.85058123 -0.3523365 -0.3903012 -0.85058123 -0.3523365\n\t\t -0.3903012 -0.90768147 -0.23612203 -0.34687334 -0.8281197 -0.1948915 -0.52552873\n\t\t -0.85058123 -0.3523365 -0.3903012 -0.7571336 -0.32331336 -0.56758326 -0.77367455\n\t\t -0.48887628 -0.40296638 -0.77367455 -0.48887628 -0.40296638 -0.86861771 -0.42262062\n\t\t -0.25855279 -0.85058123 -0.3523365 -0.3903012 -0.77367455 -0.48887628 -0.40296638\n\t\t -0.7571336 -0.32331336 -0.56758326 -0.69533366 -0.1433152 -0.70424515 -0.69533366\n\t\t -0.1433152 -0.70424515 -0.75875103 -0.3379012 -0.55684072 -0.77367455 -0.48887628\n\t\t -0.40296638 -0.75875103 -0.3379012 -0.55684072 -0.69533366 -0.1433152 -0.70424515\n\t\t -0.71712381 -0.29844078 -0.62974942 -0.71712381 -0.29844078 -0.62974942 -0.71599466\n\t\t -0.30405617 -0.62837613 -0.75875103 -0.3379012 -0.55684072 -0.71599466 -0.30405617\n\t\t -0.62837613 -0.71712381 -0.29844078 -0.62974942 -0.6804406 -0.19797383 -0.70552689\n\t\t -0.6804406 -0.19797383 -0.70552689 -0.69548625 -0.23120849 -0.68028808 -0.71599466\n\t\t -0.30405617 -0.62837613 -0.69548625 -0.23120849 -0.68028808 -0.6804406 -0.19797383\n\t\t -0.70552689 -0.61891532 -0.16385414 -0.76815087 -0.61891532 -0.16385414 -0.76815087\n\t\t -0.65987116 -0.260079 -0.70488602 -0.69548625 -0.23120849 -0.68028808 -0.62144834\n\t\t -0.28724045 -0.72887355 -0.65987116 -0.260079 -0.70488602 -0.61891532 -0.16385414\n\t\t -0.76815087 -0.61891532 -0.16385414 -0.76815087 -0.58879352 -0.13010064 -0.79769278\n\t\t -0.62144834 -0.28724045 -0.72887355 -0.62144834 -0.28724045 -0.72887355 -0.58879352\n\t\t -0.13010064 -0.79769278 -0.59871209 -0.23206298 -0.76656389 -0.59871209 -0.23206298\n\t\t -0.76656389 -0.61461216 -0.44190824 -0.65340126 -0.62144834 -0.28724045 -0.72887355\n\t\t -0.5995056 0.025513228 -0.7999512 -0.6804406 -0.19797383 -0.70552689 -0.71712381\n\t\t -0.29844078 -0.62974942 -0.71712381 -0.29844078 -0.62974942 -0.63994259 -0.097690009\n\t\t -0.76216924 -0.5995056 0.025513228 -0.7999512 -0.6804406 -0.19797383 -0.70552689\n\t\t -0.5995056 0.025513228 -0.7999512 -0.58262885 -0.024628678 -0.81234169 -0.58262885\n\t\t -0.024628678 -0.81234169 -0.61891532 -0.16385414 -0.76815087 -0.6804406 -0.19797383\n\t\t -0.70552689 -0.14682475 0.64061391 -0.75365466 -0.13153496 0.64711434 -0.75093848\n\t\t -0.14304045 0.64989156 -0.74642175 -0.14304045 0.64989156 -0.74642175 -0.15823866\n\t\t 0.62520206 -0.76421404 -0.14682475 0.64061391 -0.75365466 -0.71633041 -0.25809529\n\t\t -0.64824367 -0.69966727 -0.12277623 -0.70381784 -0.7571336 -0.32331336 -0.56758326\n\t\t -0.7571336 -0.32331336 -0.56758326 -0.85058123 -0.3523365 -0.3903012 -0.71633041\n\t\t -0.25809529 -0.64824367 -0.69533366 -0.1433152 -0.70424515 -0.7571336 -0.32331336\n\t\t -0.56758326 -0.69966727 -0.12277623 -0.70381784 -0.69966727 -0.12277623 -0.70381784\n\t\t -0.57383955 0.076051891 -0.81539351 -0.69533366 -0.1433152 -0.70424515 -0.17688547\n\t\t 0.60551763 -0.77590263 -0.14682475 0.64061391 -0.75365466 -0.15823866 0.62520206\n\t\t -0.76421404 -0.69533366 -0.1433152 -0.70424515 -0.57383955 0.076051891 -0.81539351\n\t\t -0.50511193 0.24216416 -0.8283639 -0.50511193 0.24216416 -0.8283639 -0.49040201 0.2739034\n\t\t -0.82729578 -0.69533366 -0.1433152 -0.70424515 -0.15823866 0.62520206 -0.76421404\n\t\t -0.17709911 0.61549717 -0.76796782 -0.17688547 0.60551763 -0.77590263 -0.18964219\n\t\t 0.59483618 -0.78112131 -0.20194116 0.57100117 -0.79567862 -0.17688547 0.60551763\n\t\t -0.77590263 -0.17688547 0.60551763 -0.77590263 -0.17709911 0.61549717 -0.76796782\n\t\t -0.18964219 0.59483618 -0.78112131 -0.17325367 0.27219447 -0.94650108 -0.14011057\n\t\t 0.27826768 -0.95022428 -0.14261308 0.27780989 -0.94998014 -0.14261308 0.27780989\n\t\t -0.94998014 -0.17609189 0.27167565 -0.94613481 -0.17325367 0.27219447 -0.94650108\n\t\t -0.8942228 -0.10480087 -0.4351024 -0.8281197 -0.1948915 -0.52552873 -0.90768147 -0.23612203\n\t\t -0.34687334 -0.90768147 -0.23612203 -0.34687334 -0.95635849 -0.19473892 -0.21768852\n\t\t -0.8942228 -0.10480087 -0.4351024 -0.59871209 -0.23206298 -0.76656389 -0.58879352\n\t\t -0.13010064 -0.79769278 -0.53752249 0.017914137 -0.84304333 -0.53752249 0.017914137\n\t\t -0.84304333 -0.54979092 -0.015839338 -0.83513904 -0.59871209 -0.23206298 -0.76656389\n\t\t -0.088748053 0.71138638 -0.69713438 -0.079073682 0.72435677 -0.68483543 -0.12979543\n\t\t 0.6656391 -0.73488575 -0.12979543 0.6656391 -0.73488575 -0.12320343 0.65889448 -0.74205762;\n\tsetAttr \".n[27722:27887]\" -type \"float3\"  -0.088748053 0.71138638 -0.69713438 -0.12799484\n\t\t 0.65681922 -0.7430647 -0.12320343 0.65889448 -0.74205762 -0.12979543 0.6656391 -0.73488575\n\t\t -0.12979543 0.6656391 -0.73488575 -0.14066002 0.66515082 -0.7333293 -0.12799484 0.65681922\n\t\t -0.7430647 -0.53752249 0.017914137 -0.84304333 -0.58879352 -0.13010064 -0.79769278\n\t\t -0.61891532 -0.16385414 -0.76815087 -0.61891532 -0.16385414 -0.76815087 -0.42677084\n\t\t 0.0048827622 -0.90432447 -0.53752249 0.017914137 -0.84304333 -0.1626028 0.59144861\n\t\t -0.78972751 -0.1489 0.62251645 -0.768273 -0.16266386 0.68971819 -0.70552695 -0.16266386\n\t\t 0.68971819 -0.70552695 -0.17526798 0.58943439 -0.78853732 -0.1626028 0.59144861 -0.78972751\n\t\t -0.17526798 0.58943439 -0.78853732 -0.16266386 0.68971819 -0.70552695 -0.17484075\n\t\t 0.69219017 -0.70018619 -0.17484075 0.69219017 -0.70018619 -0.19006948 0.66115284\n\t\t -0.72576076 -0.17526798 0.58943439 -0.78853732 -0.63994259 -0.097690009 -0.76216924\n\t\t -0.49443045 0.29029185 -0.81926936 -0.51222271 0.1906489 -0.8373974 -0.51222271 0.1906489\n\t\t -0.8373974 -0.5995056 0.025513228 -0.7999512 -0.63994259 -0.097690009 -0.76216924\n\t\t -0.5995056 0.025513228 -0.7999512 -0.51222271 0.1906489 -0.8373974 -0.39518419 0.020050468\n\t\t -0.91836298 -0.39518419 0.020050468 -0.91836298 -0.58262885 -0.024628678 -0.81234169\n\t\t -0.5995056 0.025513228 -0.7999512 -0.61891532 -0.16385414 -0.76815087 -0.58262885\n\t\t -0.024628678 -0.81234169 -0.39518419 0.020050468 -0.91836298 -0.39518419 0.020050468\n\t\t -0.91836298 -0.42677084 0.0048827622 -0.90432447 -0.61891532 -0.16385414 -0.76815087\n\t\t -0.42677084 0.0048827622 -0.90432447 -0.39518419 0.020050468 -0.91836298 -0.1315653\n\t\t 0.057069499 -0.98965424 -0.1315653 0.057069499 -0.98965424 -0.12900175 0.052430686\n\t\t -0.99023408 -0.42677084 0.0048827622 -0.90432447 -0.03964385 0.99267554 0.113895\n\t\t -0.040193181 0.99252295 0.11511575 -0.038514666 0.99301124 0.11139248 -0.038514666\n\t\t 0.99301124 0.11139248 -0.037934814 0.99316382 0.11014123 -0.03964385 0.99267554 0.113895\n\t\t -0.59053332 0.6518141 -0.4757531 -0.56276155 0.68822265 -0.45780823 -0.56563032 0.68465203\n\t\t -0.45963934 -0.56563032 0.68465203 -0.45963934 -0.59306639 0.64833498 -0.47737059\n\t\t -0.59053332 0.6518141 -0.4757531 -0.17401646 -0.24906169 -0.95269632 -0.1913815 -0.25055709\n\t\t -0.94897306 -0.19031335 -0.25046551 -0.9492172 -0.19031335 -0.25046551 -0.9492172\n\t\t -0.17300935 -0.24897014 -0.95290995 -0.17401646 -0.24906169 -0.95269632 -0.18552223\n\t\t 0.66838574 -0.72026742 -0.18466769 0.65022725 -0.73689997 -0.185156 0.65739912 -0.73039955\n\t\t -0.185156 0.65739912 -0.73039955 -0.18588845 0.6767478 -0.71233261 -0.18552223 0.66838574\n\t\t -0.72026742 -0.18552223 0.66838574 -0.72026742 -0.18588845 0.6767478 -0.71233261\n\t\t -0.18698712 0.69502842 -0.69420457 -0.18698712 0.69502842 -0.69420457 -0.18753645\n\t\t 0.68691051 -0.70210886 -0.18552223 0.66838574 -0.72026742 -0.18637674 0.64098012\n\t\t -0.74456012 -0.185156 0.65739912 -0.73039955 -0.18466769 0.65022725 -0.73689997 -0.18466769\n\t\t 0.65022725 -0.73689997 -0.18619362 0.63609719 -0.74877167 -0.18637674 0.64098012\n\t\t -0.74456012 -0.18790266 0.62520206 -0.75746948 -0.18637674 0.64098012 -0.74456012\n\t\t -0.18619362 0.63609719 -0.74877167 -0.18619362 0.63609719 -0.74877167 -0.18683451\n\t\t 0.61317778 -0.76751006 -0.18790266 0.62520206 -0.75746948 -0.18686506 0.70033866\n\t\t -0.68886387 -0.18753645 0.68691051 -0.70210886 -0.18698712 0.69502842 -0.69420457\n\t\t -0.18698712 0.69502842 -0.69420457 -0.18689558 0.70033866 -0.68886387 -0.18686506\n\t\t 0.70033866 -0.68886387 -0.18805523 0.60176384 -0.7762078 -0.18790266 0.62520206 -0.75746948\n\t\t -0.18683451 0.61317778 -0.76751006 -0.18683451 0.61317778 -0.76751006 -0.1873228\n\t\t 0.59544653 -0.78124338 -0.18805523 0.60176384 -0.7762078 -0.18805523 0.60176384 -0.7762078\n\t\t -0.1873228 0.59544653 -0.78124338 -0.19156486 0.58629096 -0.78710294 -0.19156486\n\t\t 0.58629096 -0.78710294 -0.19190057 0.58583319 -0.78734708 -0.18805523 0.60176384\n\t\t -0.7762078 -0.22464682 0.25876632 -0.93942076 -0.18070018 0.27231655 -0.94506669\n\t\t -0.21433158 0.2737509 -0.93758965 -0.21433158 0.2737509 -0.93758965 -0.22620326 0.25830853\n\t\t -0.93917662 -0.22464682 0.25876632 -0.93942076 -0.20902136 0.27137047 -0.93948179\n\t\t -0.21433158 0.2737509 -0.93758965 -0.18070018 0.27231655 -0.94506669 -0.18070018\n\t\t 0.27231655 -0.94506669 -0.22022165 0.27341521 -0.93633837 -0.20902136 0.27137047\n\t\t -0.93948179 -0.21207319 0.26422915 -0.94082463 -0.20902136 0.27137047 -0.93948179\n\t\t -0.22022165 0.27341521 -0.93633837 -0.22022165 0.27341521 -0.93633837 -0.21393484\n\t\t 0.2666401 -0.93972594 -0.21207319 0.26422915 -0.94082463 -0.1863156 0.26712841 -0.94546342\n\t\t -0.21207319 0.26422915 -0.94082463 -0.21393484 0.2666401 -0.93972594 -0.21393484\n\t\t 0.2666401 -0.93972594 -0.20691557 0.25577551 -0.94430369 -0.1863156 0.26712841 -0.94546342\n\t\t -0.1863156 0.26712841 -0.94546342 -0.20691557 0.25577551 -0.94430369 -0.041322161\n\t\t 0.33124784 -0.94262522 -0.041322161 0.33124784 -0.94262522 -0.00027477447 0.34891805\n\t\t -0.93713188 -0.1863156 0.26712841 -0.94546342 6.8415183e-08 -0.22125927 -0.97518843\n\t\t 6.8415183e-08 -0.22125927 -0.97518843 -3.0450094e-05 -0.22125927 -0.97518843 -3.0450094e-05\n\t\t -0.22125927 -0.97518843 -3.0450094e-05 -0.22125927 -0.97518843 6.8415183e-08 -0.22125927\n\t\t -0.97518843 -0.00015283306 0.77782518 -0.62846774 -9.1796035e-05 0.77782518 -0.62843722\n\t\t -9.1796035e-05 0.77782518 -0.62843722 -9.1796035e-05 0.77782518 -0.62843722 -0.00015283306\n\t\t 0.77782518 -0.62843722 -0.00015283306 0.77782518 -0.62846774 -0.00015283306 0.77782518\n\t\t -0.62846774 -0.00015283306 0.77782518 -0.62843722 -0.0001833525 0.78084654 -0.62471396\n\t\t -0.0001833525 0.78084654 -0.62471396 -0.00018335195 0.77907646 -0.62688076 -0.00015283306\n\t\t 0.77782518 -0.62846774 -3.0759038e-05 0.77788621 -0.62837619 -9.1796035e-05 0.77782518\n\t\t -0.62843722 -9.1796035e-05 0.77782518 -0.62843722 -9.1796035e-05 0.77782518 -0.62843722\n\t\t -3.0759056e-05 0.77794725 -0.62828463 -3.0759038e-05 0.77788621 -0.62837619 9.1314869e-05\n\t\t 0.77831346 -0.62782681 -3.0759038e-05 0.77788621 -0.62837619 -3.0759056e-05 0.77794725\n\t\t -0.62828463;\n\tsetAttr \".n[27888:28053]\" -type \"float3\"  -3.0759056e-05 0.77794725 -0.62828463\n\t\t 0.00012183318 0.77895439 -0.62703335 9.1314869e-05 0.77831346 -0.62782681 -9.1797352e-05\n\t\t 0.78206724 -0.6231575 -0.00018335195 0.77907646 -0.62688076 -0.0001833525 0.78084654\n\t\t -0.62471396 -0.0001833525 0.78084654 -0.62471396 -9.1797352e-05 0.78206724 -0.62312698\n\t\t -9.1797352e-05 0.78206724 -0.6231575 0.00012183304 0.77938163 -0.62651455 9.1314869e-05\n\t\t 0.77831346 -0.62782681 0.00012183318 0.77895439 -0.62703335 0.00012183318 0.77895439\n\t\t -0.62703335 0.00012183294 0.77971733 -0.62611783 0.00012183304 0.77938163 -0.62651455\n\t\t 0.00012183304 0.77938163 -0.62651455 0.00012183294 0.77971733 -0.62611783 9.1314403e-05\n\t\t 0.77980888 -0.62596518 9.1314403e-05 0.77980888 -0.62596518 9.1314403e-05 0.77980888\n\t\t -0.6259957 0.00012183304 0.77938163 -0.62651455 0.0052795997 0.33069852 -0.94369334\n\t\t 0.025696477 0.34955895 -0.93655205 0.00018300992 0.32706681 -0.94497514 0.00018300992\n\t\t 0.32706681 -0.94497514 -1.0111287e-07 0.32700577 -0.94500566 0.0052795997 0.33069852\n\t\t -0.94369334 0.080629796 0.34501171 -0.93511766 0.025696477 0.34955895 -0.93655205\n\t\t 0.0052795997 0.33069852 -0.94369334 0.0052795997 0.33069852 -0.94369334 0.021607002\n\t\t 0.33109525 -0.94332713 0.080629796 0.34501171 -0.93511766 0.080629796 0.34501171\n\t\t -0.93511766 0.021607002 0.33109525 -0.94332713 0.0033569366 0.32139036 -0.94692832\n\t\t 0.0033569366 0.32139036 -0.94692832 0.070375577 0.33903009 -0.93810844 0.080629796\n\t\t 0.34501171 -0.93511766 0.18512516 0.4036378 -0.89596248 0.080629796 0.34501171 -0.93511766\n\t\t 0.070375577 0.33903009 -0.93810844 0.070375577 0.33903009 -0.93810844 0.27051595\n\t\t 0.43284404 -0.85988957 0.18512516 0.4036378 -0.89596248 0.13025288 0.39265111 -0.91039765\n\t\t 0.025696477 0.34955895 -0.93655205 0.080629796 0.34501171 -0.93511766 0.080629796\n\t\t 0.34501171 -0.93511766 0.18512516 0.4036378 -0.89596248 0.13025288 0.39265111 -0.91039765\n\t\t 6.0937178e-05 0.32288578 -0.94640952 0.070375577 0.33903009 -0.93810844 0.0033569366\n\t\t 0.32139036 -0.94692832 0.0033569366 0.32139036 -0.94692832 -6.113686e-05 0.32288578\n\t\t -0.94640952 6.0937178e-05 0.32288578 -0.94640952 6.0937178e-05 0.32288578 -0.94640952\n\t\t -6.113686e-05 0.32288578 -0.94640952 -9.9772869e-08 0.32267213 -0.94650108 -9.9772869e-08\n\t\t 0.32267213 -0.94650108 -9.9772869e-08 0.32267213 -0.94650108 6.0937178e-05 0.32288578\n\t\t -0.94640952 -0.00027479613 0.41898867 0.90798664 -0.00030531464 0.41895816 0.90798664\n\t\t -0.00030531464 0.41895816 0.90798664 -0.00030531464 0.41895816 0.90798664 -0.00027479613\n\t\t 0.41898867 0.90798664 -0.00027479613 0.41898867 0.90798664 -0.60905784 -0.27921408\n\t\t -0.74233222 -0.61049223 -0.27848163 -0.74141669 -0.5954771 -0.2861723 -0.75066376\n\t\t -0.5954771 -0.2861723 -0.75066376 -0.5954771 -0.28626385 -0.75060272 -0.60905784\n\t\t -0.27921408 -0.74233222 -0.61049223 -0.27848163 -0.74141669 -0.60905784 -0.27921408\n\t\t -0.74233222 -0.65392005 -0.25901085 -0.71080661 -0.65392005 -0.25901085 -0.71080661\n\t\t -0.65764332 -0.2571187 -0.70805997 -0.61049223 -0.27848163 -0.74141669 -0.65764332\n\t\t -0.2571187 -0.70805997 -0.65392005 -0.25901085 -0.71080661 -0.69692063 -0.23728167\n\t\t -0.6767174 -0.69692063 -0.23728167 -0.6767174 -0.69838554 -0.23871604 -0.67470318\n\t\t -0.65764332 -0.2571187 -0.70805997 -0.69838554 -0.23871604 -0.67470318 -0.69692063\n\t\t -0.23728167 -0.6767174 -0.72783589 -0.24481975 -0.64052248 -0.72783589 -0.24481975\n\t\t -0.64052248 -0.72948384 -0.25348705 -0.63527328 -0.69838554 -0.23871604 -0.67470318\n\t\t -0.72948384 -0.25348705 -0.63527328 -0.72783589 -0.24481975 -0.64052248 -0.77544475\n\t\t -0.2836698 -0.56407362 -0.77544475 -0.2836698 -0.56407362 -0.77379668 -0.30463603\n\t\t -0.55531478 -0.72948384 -0.25348705 -0.63527328 -0.77379668 -0.30463603 -0.55531478\n\t\t -0.77544475 -0.2836698 -0.56407362 -0.81829268 -0.43266118 -0.37836844 -0.81829268\n\t\t -0.43266118 -0.37836844 -0.79662454 -0.47611955 -0.37238681 -0.77379668 -0.30463603\n\t\t -0.55531478 -0.79662454 -0.47611955 -0.37238681 -0.81829268 -0.43266118 -0.37836844\n\t\t -0.88506716 -0.39509293 -0.2460402 -0.88506716 -0.39509293 -0.2460402 -0.87841415\n\t\t -0.41590655 -0.23526716 -0.79662454 -0.47611955 -0.37238681 -0.87841415 -0.41590655\n\t\t -0.23526716 -0.88506716 -0.39509293 -0.2460402 -0.95486307 -0.2451555 -0.1675466\n\t\t -0.95486307 -0.2451555 -0.1675466 -0.95730454 -0.23725121 -0.1650746 -0.87841415\n\t\t -0.41590655 -0.23526716 -0.95730454 -0.23725121 -0.1650746 -0.95486307 -0.2451555\n\t\t -0.1675466 -0.96615493 -0.19739403 -0.16589861 -0.96615493 -0.19739403 -0.16589861\n\t\t -0.96752822 -0.19296885 -0.1630909 -0.95730454 -0.23725121 -0.1650746 -0.96752822\n\t\t -0.19296885 -0.1630909 -0.96615493 -0.19739403 -0.16589861 -0.97637862 -0.16147375\n\t\t -0.14343698 -0.97637862 -0.16147375 -0.14343698 -0.97747725 -0.15704857 -0.1408429\n\t\t -0.96752822 -0.19296885 -0.1630909 -0.97747725 -0.15704857 -0.1408429 -0.97637862\n\t\t -0.16147375 -0.14343698 -0.98376411 -0.12768976 -0.1258278 -0.98376411 -0.12768976\n\t\t -0.1258278 -0.98355049 -0.12790339 -0.12741476 -0.97747725 -0.15704857 -0.1408429\n\t\t -0.98947108 -0.10513658 -0.099368259 -0.98355049 -0.12790339 -0.12741476 -0.98376411\n\t\t -0.12768976 -0.1258278 -0.98376411 -0.12768976 -0.1258278 -0.99014252 -0.08557421\n\t\t -0.11075167 -0.98947108 -0.10513658 -0.099368259 -0.98947108 -0.10513658 -0.099368259\n\t\t -0.99014252 -0.08557421 -0.11075167 -0.99133271 -0.12674369 -0.033875536 -0.99133271\n\t\t -0.12674369 -0.033875536 -0.98751789 -0.15732321 1.170757e-08 -0.98947108 -0.10513658\n\t\t -0.099368259 -0.72557741 -0.39225468 -0.56538588 -0.73375642 -0.38071868 -0.56266975\n\t\t -0.7619555 -0.32270297 -0.56144899 -0.7619555 -0.32270297 -0.56144899 -0.73293239\n\t\t -0.38572371 -0.56035036 -0.72557741 -0.39225468 -0.56538588 -0.72557741 -0.39225468\n\t\t -0.56538588 -0.73293239 -0.38572371 -0.56035036 -0.69377714 -0.42042321 -0.58470404\n\t\t -0.69377714 -0.42042321 -0.58470404 -0.68703258 -0.42606914 -0.58854938 -0.72557741\n\t\t -0.39225468 -0.56538588 -0.65645301 -0.44776782 -0.60707414 -0.68703258 -0.42606914\n\t\t -0.58854938 -0.69377714 -0.42042321 -0.58470404 -0.69377714 -0.42042321 -0.58470404\n\t\t -0.65544593 -0.43873435 -0.61467326 -0.65645301 -0.44776782 -0.60707414 -0.6412853\n\t\t -0.46079925 -0.61345249;\n\tsetAttr \".n[28054:28219]\" -type \"float3\"  -0.65645301 -0.44776782 -0.60707414 -0.65544593\n\t\t -0.43873435 -0.61467326 -0.65544593 -0.43873435 -0.61467326 -0.63902694 -0.42924312\n\t\t -0.63823354 -0.6412853 -0.46079925 -0.61345249 -0.64387941 -0.46540755 -0.60725725\n\t\t -0.6412853 -0.46079925 -0.61345249 -0.63902694 -0.42924312 -0.63823354 -0.63902694\n\t\t -0.42924312 -0.63823354 -0.65086812 -0.43241704 -0.62398136 -0.64387941 -0.46540755\n\t\t -0.60725725 -0.5923031 -0.46461403 -0.65825367 -0.63902694 -0.42924312 -0.63823354\n\t\t -0.65544593 -0.43873435 -0.61467326 -0.65544593 -0.43873435 -0.61467326 -0.60301507\n\t\t -0.48194855 -0.63563943 -0.5923031 -0.46461403 -0.65825367 -0.56938374 -0.45442083\n\t\t -0.68501842 -0.65086812 -0.43241704 -0.62398136 -0.63902694 -0.42924312 -0.63823354\n\t\t -0.63902694 -0.42924312 -0.63823354 -0.5923031 -0.46461403 -0.65825367 -0.56938374\n\t\t -0.45442083 -0.68501842 -0.78038871 -0.29819661 -0.5495773 -0.7619555 -0.32270297\n\t\t -0.56144899 -0.73375642 -0.38071868 -0.56266975 -0.7619555 -0.32270297 -0.56144899\n\t\t -0.78038871 -0.29819661 -0.5495773 -0.7918942 -0.22800407 -0.56648457 -0.7918942\n\t\t -0.22800407 -0.56648457 -0.76812029 -0.23639666 -0.5950194 -0.7619555 -0.32270297\n\t\t -0.56144899 -0.7918942 -0.22800407 -0.56648457 -0.78038871 -0.29819661 -0.5495773\n\t\t -0.82610548 -0.22660023 -0.51591539 -0.82610548 -0.22660023 -0.51591539 -0.82796711\n\t\t -0.18164647 -0.53050327 -0.7918942 -0.22800407 -0.56648457 -0.83544415 -0.23902126\n\t\t -0.49479657 -0.82610548 -0.22660023 -0.51591539 -0.78038871 -0.29819661 -0.5495773\n\t\t -0.78038871 -0.29819661 -0.5495773 -0.75109094 -0.35453379 -0.55687124 -0.83544415\n\t\t -0.23902126 -0.49479657 -0.73375642 -0.38071868 -0.56266975 -0.75109094 -0.35453379\n\t\t -0.55687124 -0.78038871 -0.29819661 -0.5495773 -0.82796711 -0.18164647 -0.53050327\n\t\t -0.82610548 -0.22660023 -0.51591539 -0.86635941 -0.17548172 -0.46754357 -0.86635941\n\t\t -0.17548172 -0.46754357 -0.85692918 -0.15012084 -0.49305704 -0.82796711 -0.18164647\n\t\t -0.53050327 -0.85692918 -0.15012084 -0.49305704 -0.86635941 -0.17548172 -0.46754357\n\t\t -0.89931935 -0.13058901 -0.41731009 -0.89931935 -0.13058901 -0.41731009 -0.88842428\n\t\t -0.1056859 -0.44666889 -0.85692918 -0.15012084 -0.49305704 -0.90874958 -0.1361739\n\t\t -0.39445174 -0.89931935 -0.13058901 -0.41731009 -0.86635941 -0.17548172 -0.46754357\n\t\t -0.86635941 -0.17548172 -0.46754357 -0.88314456 -0.16129062 -0.44047365 -0.90874958\n\t\t -0.1361739 -0.39445174 -0.88314456 -0.16129062 -0.44047365 -0.86635941 -0.17548172\n\t\t -0.46754357 -0.82610548 -0.22660023 -0.51591539 -0.82610548 -0.22660023 -0.51591539\n\t\t -0.83544415 -0.23902126 -0.49479657 -0.88314456 -0.16129062 -0.44047365 -0.88842428\n\t\t -0.1056859 -0.44666889 -0.89931935 -0.13058901 -0.41731009 -0.9104892 -0.079073772\n\t\t -0.40586567 -0.9104892 -0.079073772 -0.40586567 -0.90359205 -0.02707023 -0.42750329\n\t\t -0.88842428 -0.1056859 -0.44666889 -0.90359205 -0.02707023 -0.42750329 -0.9104892\n\t\t -0.079073772 -0.40586567 -0.89953309 -0.023133339 -0.43620107 -0.89953309 -0.023133339\n\t\t -0.43620107 -0.89364302 0.025085906 -0.44804224 -0.90359205 -0.02707023 -0.42750329\n\t\t -0.90710163 -0.055543996 -0.41718802 -0.89953309 -0.023133339 -0.43620107 -0.9104892\n\t\t -0.079073772 -0.40586567 -0.89953309 -0.023133339 -0.43620107 -0.90710163 -0.055543996\n\t\t -0.41718802 -0.90658283 -0.027558526 -0.42109439 -0.90658283 -0.027558526 -0.42109439\n\t\t -0.89629811 -0.0032352721 -0.44337291 -0.89953309 -0.023133339 -0.43620107 -0.89364302\n\t\t 0.025085906 -0.44804224 -0.89953309 -0.023133339 -0.43620107 -0.89629811 -0.0032352721\n\t\t -0.44337291 -0.89629811 -0.0032352721 -0.44337291 -0.90658283 -0.027558526 -0.42109439\n\t\t -0.90774256 -0.029237045 -0.41846979 -0.90774256 -0.029237045 -0.41846979 -0.90343946\n\t\t -0.0235606 -0.4280526 -0.89629811 -0.0032352721 -0.44337291 -0.9104892 -0.079073772\n\t\t -0.40586567 -0.91409034 -0.13483109 -0.38236642 -0.90710163 -0.055543996 -0.41718802\n\t\t -0.91409034 -0.13483109 -0.38236642 -0.9104892 -0.079073772 -0.40586567 -0.89931935\n\t\t -0.13058901 -0.41731009 -0.89931935 -0.13058901 -0.41731009 -0.90874958 -0.1361739\n\t\t -0.39445174 -0.91409034 -0.13483109 -0.38236642 -0.89629811 -0.0032352721 -0.44337291\n\t\t -0.88531142 0.055451825 -0.4616535 -0.89364302 0.025085906 -0.44804224 -0.89629811\n\t\t -0.0032352721 -0.44337291 -0.90343946 -0.0235606 -0.4280526 -0.88460952 0.051911678\n\t\t -0.46336251 -0.88460952 0.051911678 -0.46336251 -0.88531142 0.055451825 -0.4616535\n\t\t -0.89629811 -0.0032352721 -0.44337291 -0.69774485 0.64152932 -0.31864381 -0.69200736\n\t\t 0.63676846 -0.33997625 -0.68916917 0.63924044 -0.34110543 -0.68916917 0.63924044\n\t\t -0.34110543 -0.69615787 0.64305526 -0.31904057 -0.69774485 0.64152932 -0.31864381\n\t\t -0.63142812 0.59004462 -0.50309771 -0.68916917 0.63924044 -0.34110543 -0.69200736\n\t\t 0.63676846 -0.33997625 -0.69200736 0.63676846 -0.33997625 -0.62987167 0.58735901\n\t\t -0.50813323 -0.63142812 0.59004462 -0.50309771 -0.13562457 0.98849446 -0.066499904\n\t\t -0.1348616 0.98867756 -0.065584354 -0.13815761 0.98831135 -0.064149983 -0.13516679\n\t\t 0.98834187 -0.069704354 -0.1348616 0.98867756 -0.065584354 -0.13562457 0.98849446\n\t\t -0.066499904 -0.13815761 0.98831135 -0.064149983 -0.13907316 0.98809773 -0.065492794\n\t\t -0.13562457 0.98849446 -0.066499904 -0.13562457 0.98849446 -0.066499904 -0.13605183\n\t\t 0.9882198 -0.069673829 -0.13516679 0.98834187 -0.069704354 -0.018646922 0.36030146\n\t\t -0.93264568 0.029541792 0.40269166 -0.91485339 -0.17123944 0.21848187 -0.96069217\n\t\t -0.17123944 0.21848187 -0.96069217 -0.23657952 0.16687506 -0.95715201 -0.018646922\n\t\t 0.36030146 -0.93264568 -0.34080023 0.083315358 -0.93642992 -0.018646922 0.36030146\n\t\t -0.93264568 -0.23657952 0.16687506 -0.95715201 -0.23657952 0.16687506 -0.95715201\n\t\t -0.34376052 0.08661136 -0.93502611 -0.34080023 0.083315358 -0.93642992 -0.34080023\n\t\t 0.083315358 -0.93642992 -0.34376052 0.08661136 -0.93502611 -0.36765644 -0.058137946\n\t\t -0.9281289 -0.36765644 -0.058137946 -0.9281289 -0.37553027 -0.028626546 -0.92635882\n\t\t -0.34080023 0.083315358 -0.93642992 0.19775978 0.5384686 -0.81908631 -0.018646922\n\t\t 0.36030146 -0.93264568 0.2464368 0.5198828 -0.81789613 0.2464368 0.5198828 -0.81789613\n\t\t 0.24604006 0.53556931 -0.80782503;\n\tsetAttr \".n[28220:28385]\" -type \"float3\"  0.19775978 0.5384686 -0.81908631 0.24604006\n\t\t 0.53556931 -0.80782503 0.2464368 0.5198828 -0.81789613 0.26129934 0.51817375 -0.81435597\n\t\t 0.17047623 0.52125615 -0.83617669 0.029541792 0.40269166 -0.91485339 -0.018646922\n\t\t 0.36030146 -0.93264568 -0.018646922 0.36030146 -0.93264568 0.19775978 0.5384686 -0.81908631\n\t\t 0.17047623 0.52125615 -0.83617669 0.26129934 0.51817375 -0.81435597 0.26468688 0.52192754\n\t\t -0.81084633 0.24604006 0.53556931 -0.80782503 -0.36497083 -0.12109763 -0.92309338\n\t\t -0.37553027 -0.028626546 -0.92635882 -0.36765644 -0.058137946 -0.9281289 -0.36765644\n\t\t -0.058137946 -0.9281289 -0.36643571 -0.12094503 -0.92251348 -0.36497083 -0.12109763\n\t\t -0.92309338 0.3053987 0.048616007 -0.95095676 0.24222539 0.054689173 -0.96865749\n\t\t 0.25812551 0.05319377 -0.96462905 0.25812551 0.05319377 -0.96462905 0.32132939 0.047029052\n\t\t -0.94576859 0.3053987 0.048616007 -0.95095676 -0.61372739 0.48490837 -0.62300491\n\t\t -0.53297544 0.63341141 -0.56096077 -0.53648508 0.62794864 -0.56373799 -0.53648508\n\t\t 0.62794864 -0.56373799 -0.6190986 0.47288406 -0.6269418 -0.61372739 0.48490837 -0.62300491\n\t\t -0.087863095 0.99209571 -0.089541383 -0.085940428 0.99249244 -0.086916789 -0.10571642\n\t\t 0.98785359 -0.11386464 -0.10571642 0.98785359 -0.11386464 -0.10882931 0.98699903\n\t\t -0.1180762 -0.087863095 0.99209571 -0.089541383 -0.55406374 0.535447 -0.63737911\n\t\t -0.63142812 0.59004462 -0.50309771 -0.62987167 0.58735901 -0.50813323 -0.62987167\n\t\t 0.58735901 -0.50813323 -0.55363643 0.53465354 -0.63841677 -0.55406374 0.535447 -0.63737911\n\t\t -0.55406374 0.535447 -0.63737911 -0.55363643 0.53465354 -0.63841677 -0.55067617 0.53831577\n\t\t -0.63789797 -0.55067617 0.53831577 -0.63789797 -0.54936385 0.53999424 -0.63762325\n\t\t -0.55406374 0.535447 -0.63737911 0.072664313 0.83727527 -0.5419172 0.072145499 0.83666486\n\t\t -0.54289383 0.073091567 0.83697009 -0.54231399 0.073091567 0.83697009 -0.54231399\n\t\t 0.073457792 0.83761096 -0.54127634 0.072664313 0.83727527 -0.5419172 0.070436455\n\t\t 0.83678693 -0.54292434 0.069734536 0.83635968 -0.5437178 0.072145499 0.83666486 -0.54289383\n\t\t 0.072145499 0.83666486 -0.54289383 0.072664313 0.83727527 -0.5419172 0.070436455\n\t\t 0.83678693 -0.54292434 -0.54936385 0.53999424 -0.63762325 -0.55067617 0.53831577\n\t\t -0.63789797 -0.54158163 0.54441947 -0.64049202 -0.54158163 0.54441947 -0.64049202\n\t\t -0.54020834 0.54564017 -0.64061409 -0.54936385 0.53999424 -0.63762325 -0.54020834\n\t\t 0.54564017 -0.64061409 -0.54158163 0.54441947 -0.64049202 -0.52143943 0.53541648\n\t\t -0.664388 -0.52143943 0.53541648 -0.664388 -0.52125633 0.53654569 -0.66359454 -0.54020834\n\t\t 0.54564017 -0.64061409 -0.52125633 0.53654569 -0.66359454 -0.52143943 0.53541648\n\t\t -0.664388 -0.50102258 0.5085907 -0.70018619 -0.50102258 0.5085907 -0.70018619 -0.50270104\n\t\t 0.51097119 -0.69722593 -0.52125633 0.53654569 -0.66359454 -0.50270104 0.51097119\n\t\t -0.69722593 -0.50102258 0.5085907 -0.70018619 -0.49232474 0.48509151 -0.72264785\n\t\t -0.49232474 0.48509151 -0.72264785 -0.49430844 0.48747194 -0.71971804 -0.50270104\n\t\t 0.51097119 -0.69722593 -0.49430844 0.48747194 -0.71971804 -0.49232474 0.48509151\n\t\t -0.72264785 -0.48872355 0.44459343 -0.75060278 -0.48872355 0.44459343 -0.75060278\n\t\t -0.48997483 0.45844883 -0.74141675 -0.49430844 0.48747194 -0.71971804 -0.49092087\n\t\t 0.42802188 -0.75878173 -0.48997483 0.45844883 -0.74141675 -0.48872355 0.44459343\n\t\t -0.75060278 -0.48872355 0.44459343 -0.75060278 -0.49458307 0.42667907 -0.75713378\n\t\t -0.49092087 0.42802188 -0.75878173 0.060517944 0.84917748 -0.52458274 0.061555572\n\t\t 0.84881127 -0.52504051 0.06140298 0.84389776 -0.5329448 0.06140298 0.84389776 -0.5329448\n\t\t 0.060701054 0.8441419 -0.53263962 0.060517944 0.84917748 -0.52458274 0.060701054\n\t\t 0.8441419 -0.53263962 0.06140298 0.84389776 -0.5329448 0.061219871 0.84011346 -0.53889591\n\t\t 0.061219867 0.85232085 -0.51936406 0.062135421 0.85326695 -0.51774657 0.061555572\n\t\t 0.84881127 -0.52504051 0.061555572 0.84881127 -0.52504051 0.060517944 0.84917748\n\t\t -0.52458274 0.061219867 0.85232085 -0.51936406 0.060823128 0.84038812 -0.53852969\n\t\t 0.061219871 0.84011346 -0.53889591 0.062501647 0.83687848 -0.54377884 0.061219871\n\t\t 0.84011346 -0.53889591 0.060823128 0.84038812 -0.53852969 0.060701054 0.8441419 -0.53263962\n\t\t 0.062501647 0.83687848 -0.54377884 0.062532164 0.83721423 -0.54322952 0.060823128\n\t\t 0.84038812 -0.53852969 0.062532164 0.83721423 -0.54322952 0.062501647 0.83687848\n\t\t -0.54377884 0.06591972 0.83574933 -0.54509115 0.06591972 0.83574933 -0.54509115 0.066530086\n\t\t 0.8360545 -0.54457235 0.062532164 0.83721423 -0.54322952 0.066530086 0.8360545 -0.54457235\n\t\t 0.06591972 0.83574933 -0.54509115 0.069734536 0.83635968 -0.5437178 0.069734536 0.83635968\n\t\t -0.5437178 0.070436455 0.83678693 -0.54292434 0.066530086 0.8360545 -0.54457235 0.07431227\n\t\t 0.97271645 0.21967216 3.0215435e-05 0.98016298 0.19812609 0.028259838 0.97808772\n\t\t 0.20624401 0.028259838 0.97808772 0.20624401 0.15295847 0.97256392 0.17523721 0.07431227\n\t\t 0.97271645 0.21967216 -3.0480135e-07 0.98574787 0.16812639 0.028259838 0.97808772\n\t\t 0.20624401 3.0215435e-05 0.98016298 0.19812609 3.0215435e-05 0.98016298 0.19812609\n\t\t 9.1250702e-05 0.98583943 0.16763809 -3.0480135e-07 0.98574787 0.16812639 9.1250702e-05\n\t\t 0.98583943 0.16763809 9.1250688e-05 0.98586994 0.16745499 -3.0480135e-07 0.98574787\n\t\t 0.16812639 -0.36960995 0.9238562 -0.099032633 -0.6830045 0.70708311 -0.18305008 -0.61513132\n\t\t 0.67641199 -0.40504172 -0.61513132 0.67641199 -0.40504172 -0.36960995 0.9238562 -0.099063151\n\t\t -0.36960995 0.9238562 -0.099032633 -0.36960995 0.9238562 -0.099032633 -0.36960995\n\t\t 0.9238562 -0.099063151 -3.0919878e-07 0.99996948 -7.4415176e-08 -3.0919878e-07 0.99996948\n\t\t -7.4415176e-08 -3.0919878e-07 0.99996948 -7.4415176e-08 -0.36960995 0.9238562 -0.099032633\n\t\t -0.83706182 0.36082003 -0.41120642 -0.61513132 0.67641199 -0.40504172 -0.6830045\n\t\t 0.70708311 -0.18305008 -0.6830045 0.70708311 -0.18305008 -0.89236134 0.3826713 -0.23914307\n\t\t -0.83706182 0.36082003 -0.41120642;\n\tsetAttr \".n[28386:28551]\" -type \"float3\"  -0.91146582 0.0056150933 -0.41126743\n\t\t -0.83706182 0.36082003 -0.41120642 -0.89236134 0.3826713 -0.23914307 -0.89236134\n\t\t 0.3826713 -0.23914307 -0.96591085 -3.1793112e-07 -0.258858 -0.91146582 0.0056150933\n\t\t -0.41126743 -0.86379582 -0.28763726 -0.41361734 -0.91146582 0.0056150933 -0.41126743\n\t\t -0.96591085 -3.1793112e-07 -0.258858 -0.96591085 -3.1793112e-07 -0.258858 -0.8959623\n\t\t -0.3353987 -0.29108551 -0.86379582 -0.28763726 -0.41361734 -0.81084615 -0.31131959\n\t\t -0.49555951 -0.86379582 -0.28763726 -0.41361734 -0.8959623 -0.3353987 -0.29108551\n\t\t -0.8959623 -0.3353987 -0.29108551 -0.73781532 -0.53749228 -0.40827659 -0.81084615\n\t\t -0.31131959 -0.49555951 -0.39939547 -0.90328693 -0.15662092 -0.31293651 -0.90661347\n\t\t -0.28296757 -0.41831693 -0.88146621 -0.21909232 -0.41831693 -0.88146621 -0.21909232\n\t\t -0.45194834 -0.88375509 -0.1211279 -0.39939547 -0.90328693 -0.15662092 -0.36963987\n\t\t -0.92385644 -0.099032499 -0.39939547 -0.90328693 -0.15662092 -0.45194834 -0.88375509\n\t\t -0.1211279 -0.45194834 -0.88375509 -0.1211279 -0.36963987 -0.92385644 -0.099032499\n\t\t -0.36963987 -0.92385644 -0.099032499 0.28400496 0.95577872 0.07611309 -3.0919878e-07\n\t\t 0.99996948 -7.4415176e-08 -3.0919878e-07 0.99996948 -7.4415176e-08 -3.0919878e-07\n\t\t 0.99996948 -7.4415176e-08 0.28400496 0.95577872 0.07611309 0.28400496 0.95577872\n\t\t 0.07611309 0.28400496 0.95577872 0.07611309 0.28400496 0.95577872 0.07611309 0.36963987\n\t\t 0.92385644 0.099063016 0.36963987 0.92385644 0.099063016 0.36963987 0.92385644 0.099063016\n\t\t 0.28400496 0.95577872 0.07611309 -0.32914239 0.91238123 -0.24323259 -0.64070582 0.69826335\n\t\t -0.31916264 -0.63765395 0.70140672 -0.31843019 -0.63765395 0.70140672 -0.31843019\n\t\t -0.32435098 0.91442597 -0.2420729 -0.32914239 0.91238123 -0.24323259 -0.32914239\n\t\t 0.91238123 -0.24323259 -0.32435098 0.91442597 -0.2420729 0.044190496 0.9871822 -0.15329455\n\t\t 0.044190496 0.9871822 -0.15329455 0.038117312 0.9871822 -0.15478995 -0.32914239 0.91238123\n\t\t -0.24323259 -0.84820104 0.3800467 -0.36887726 -0.63765395 0.70140672 -0.31843019\n\t\t -0.64070582 0.69826335 -0.31916264 -0.64070582 0.69826335 -0.31916264 -0.84902507\n\t\t 0.37800196 -0.36909088 -0.84820104 0.3800467 -0.36887726 -0.92196417 -3.13897e-07\n\t\t -0.38724938 -0.84820104 0.3800467 -0.36887726 -0.84902507 0.37800196 -0.36909088\n\t\t -0.84902507 0.37800196 -0.36909088 -0.92196417 -3.13897e-07 -0.38724938 -0.92196417\n\t\t -3.13897e-07 -0.38724938 -0.8482008 -0.38004729 -0.3688772 -0.92196417 -3.13897e-07\n\t\t -0.38724938 -0.92196417 -3.13897e-07 -0.38724938 -0.92196417 -3.13897e-07 -0.38724938\n\t\t -0.84902483 -0.37800255 -0.36909083 -0.8482008 -0.38004729 -0.3688772 -0.63765347\n\t\t -0.70140707 -0.31843007 -0.8482008 -0.38004729 -0.3688772 -0.84902483 -0.37800255\n\t\t -0.36909083 -0.84902483 -0.37800255 -0.36909083 -0.64070535 -0.6982637 -0.31916252\n\t\t -0.63765347 -0.70140707 -0.31843007 -0.32435045 -0.91442621 -0.24207275 -0.63765347\n\t\t -0.70140707 -0.31843007 -0.64070535 -0.6982637 -0.31916252 -0.64070535 -0.6982637\n\t\t -0.31916252 -0.32914186 -0.91238147 -0.24323244 -0.32435045 -0.91442621 -0.24207275\n\t\t 0.044191107 -0.9871822 -0.1532944 -0.32435045 -0.91442621 -0.24207275 -0.32914186\n\t\t -0.91238147 -0.24323244 -0.32914186 -0.91238147 -0.24323244 0.038117923 -0.9871822\n\t\t -0.15478981 0.044191107 -0.9871822 -0.1532944 0.32074922 0.94329673 -0.085085668\n\t\t 0.038117312 0.9871822 -0.15478995 0.044190496 0.9871822 -0.15329455 0.044190496 0.9871822\n\t\t -0.15329455 0.3249608 0.9419539 -0.0841396 0.32074922 0.94329673 -0.085085668 0.32074922\n\t\t 0.94329673 -0.085085668 0.3249608 0.9419539 -0.0841396 0.40787962 0.91073346 -0.064729825\n\t\t 0.40787962 0.91073346 -0.064729825 0.40787962 0.91070294 -0.064729825 0.32074922\n\t\t 0.94329673 -0.085085668 0.044191107 -0.9871822 -0.1532944 0.038117923 -0.9871822\n\t\t -0.15478981 0.32074982 -0.94329649 -0.085085534 0.32074982 -0.94329649 -0.085085534\n\t\t 0.32499191 -0.94195366 -0.084139466 0.044191107 -0.9871822 -0.1532944 0.32499191\n\t\t -0.94195366 -0.084139466 0.32074982 -0.94329649 -0.085085534 0.40788016 -0.91070271\n\t\t -0.064729691 0.40788016 -0.91070271 -0.064729691 0.40788016 -0.91070271 -0.064729691\n\t\t 0.32499191 -0.94195366 -0.084139466 -0.25876644 -8.1320906e-09 0.96591085 -0.25876644\n\t\t -8.1320906e-09 0.96591085 -0.25879696 -8.1415266e-09 0.96591085 -0.25879696 -8.1415266e-09\n\t\t 0.96591085 -0.25879696 -8.1415266e-09 0.96591085 -0.25876644 -8.1320906e-09 0.96591085\n\t\t -0.25876644 -8.1320906e-09 0.96591085 -0.25876644 -8.1320906e-09 0.96591085 -0.25879696\n\t\t -3.0526651e-05 0.96591085 -0.25879696 -3.0526651e-05 0.96591085 -0.25879696 -3.0526651e-05\n\t\t 0.96591085 -0.25876644 -8.1320906e-09 0.96591085 -0.25879696 -3.0526651e-05 0.96591085\n\t\t -0.25879696 -3.0526651e-05 0.96591085 -0.25876644 -3.0526644e-05 0.96591085 -0.25876644\n\t\t -3.0526644e-05 0.96591085 -0.25876644 -8.1320906e-09 0.96591085 -0.25879696 -3.0526651e-05\n\t\t 0.96591085 -0.25876644 -8.1320906e-09 0.96591085 -0.25876644 -3.0526644e-05 0.96591085\n\t\t -0.25879696 -8.1415266e-09 0.96591085 -0.25879696 -8.1415266e-09 0.96591085 -0.25879696\n\t\t -8.1415266e-09 0.96591085 -0.25876644 -8.1320906e-09 0.96591085 -0.25879696 -8.1415266e-09\n\t\t 0.96591085 -0.25879696 -8.1415266e-09 0.96591085 -0.25876644 -8.1320906e-09 0.96591085\n\t\t -0.25876644 -8.1320906e-09 0.96591085 -0.25876644 -8.1320906e-09 0.96591085 -0.25879696\n\t\t -8.1415266e-09 0.96591085 -0.25876644 -8.1320906e-09 0.96591085 -0.25876644 -8.1320906e-09\n\t\t 0.96591085 -0.25876644 3.0510379e-05 0.96591085 -0.25876644 3.0510379e-05 0.96591085\n\t\t -0.25879696 3.0510368e-05 0.96591085 -0.25876644 -8.1320906e-09 0.96591085 -0.25879696\n\t\t 3.0510368e-05 0.96591085 -0.25876644 3.0510379e-05 0.96591085 -0.25876644 -8.1320906e-09\n\t\t 0.96591085 -0.25876644 -8.1320906e-09 0.96591085 -0.25879696 -8.1415266e-09 0.96591085\n\t\t -0.25879696 3.0510368e-05 0.96591085 -0.25879696 -8.1415266e-09 0.96591085 -0.25876644\n\t\t -8.1320906e-09 0.96591085 -0.25879696 -8.1415266e-09 0.96591085 -0.25879696 -8.1415266e-09\n\t\t 0.96591085 -0.25879696 -8.1415266e-09 0.96591085 -0.25879696 -8.1415266e-09 0.96591085\n\t\t -0.25879696 -8.1415266e-09 0.96591085 -0.25879696 -8.1415266e-09 0.96591085 -0.25879696\n\t\t -8.1415266e-09 0.96591085 -0.25879696 -8.1415266e-09 0.96591085;\n\tsetAttr \".n[28552:28717]\" -type \"float3\"  -0.25882748 -8.1509626e-09 0.96591085\n\t\t -0.25879696 -8.1415266e-09 0.96591085 -0.25882748 3.0510359e-05 0.96591085 -0.25879696\n\t\t -8.1415266e-09 0.96591085 -0.25882748 -8.1509626e-09 0.96591085 -0.25882748 -8.1509626e-09\n\t\t 0.96591085 -0.258858 6.1028855e-05 0.96588033 -0.25882748 3.0510359e-05 0.96591085\n\t\t -0.25882748 -8.1509626e-09 0.96591085 -0.25879696 -8.1415266e-09 0.96591085 -0.25879696\n\t\t -8.1415266e-09 0.96591085 -0.25879696 -8.1415266e-09 0.96591085 -0.25882748 -8.1509626e-09\n\t\t 0.96591085 -0.25882748 -8.1509626e-09 0.96591085 -0.25882748 -8.1509626e-09 0.96591085\n\t\t -0.25882748 -8.1509626e-09 0.96591085 -0.25882748 -3.0526662e-05 0.96591085 -0.25882748\n\t\t -3.0526662e-05 0.96591085 -0.25882748 -3.0526662e-05 0.96591085 -0.25882748 -8.1509626e-09\n\t\t 0.96591085 0.25882748 8.1509626e-09 -0.96591085 0.25879696 8.1415266e-09 -0.96591085\n\t\t 0.25879696 8.1415266e-09 -0.96591085 0.25879696 8.1415266e-09 -0.96591085 0.25879696\n\t\t 8.1415266e-09 -0.96591085 0.25882748 8.1509626e-09 -0.96591085 0.25879696 8.1415266e-09\n\t\t -0.96591085 0.25879696 8.1415266e-09 -0.96591085 0.25879696 8.1415266e-09 -0.96591085\n\t\t 0.25879696 8.1415266e-09 -0.96591085 0.25879696 8.1415266e-09 -0.96591085 0.25879696\n\t\t 8.1415266e-09 -0.96591085 0.25879696 8.1415266e-09 -0.96591085 0.25879696 8.1415266e-09\n\t\t -0.96591085 0.25879696 8.1415266e-09 -0.96591085 0.25879696 8.1415266e-09 -0.96591085\n\t\t 0.25879696 8.1415266e-09 -0.96591085 0.25879696 8.1415266e-09 -0.96591085 0.25879696\n\t\t 8.1415266e-09 -0.96591085 0.25879696 8.1415266e-09 -0.96591085 0.25879696 8.1415266e-09\n\t\t -0.96591085 0.25879696 8.1415266e-09 -0.96591085 0.25882748 3.0526662e-05 -0.96591085\n\t\t 0.25879696 8.1415266e-09 -0.96591085 0.25879696 8.1415266e-09 -0.96591085 0.25879696\n\t\t 8.1415266e-09 -0.96591085 0.25879696 8.1415266e-09 -0.96591085 0.25879696 8.1415266e-09\n\t\t -0.96591085 0.25882748 8.1509626e-09 -0.96591085 0.25879696 8.1415266e-09 -0.96591085\n\t\t 0.25882748 8.1509626e-09 -0.96591085 0.25879696 8.1415266e-09 -0.96591085 0.25882748\n\t\t 3.0526662e-05 -0.96591085 0.25882748 3.0526662e-05 -0.96591085 0.25882748 8.1509626e-09\n\t\t -0.96591085 0.25882748 8.1509626e-09 -0.96591085 0.25882748 8.1509626e-09 -0.96591085\n\t\t 0.25882748 3.0526662e-05 -0.96591085 0.25879696 8.1415266e-09 -0.96591085 0.25879696\n\t\t 8.1415266e-09 -0.96591085 0.25882748 -3.0510359e-05 -0.96591085 0.25882748 8.1509626e-09\n\t\t -0.96591085 0.25882748 -3.0510359e-05 -0.96591085 0.25879696 8.1415266e-09 -0.96591085\n\t\t 0.25879696 8.1415266e-09 -0.96591085 0.25879696 8.1415266e-09 -0.96591085 0.25888851\n\t\t 9.1563699e-05 -0.96588033 0.25882748 -3.0510359e-05 -0.96591085 -0.202399 0.79973739\n\t\t -0.56517231 -0.61513132 0.67641199 -0.40504172 -0.50746197 0.61586326 -0.60258806\n\t\t -0.50746197 0.61586326 -0.60258806 -0.18561383 0.8056885 -0.56245619 -0.202399 0.79973739\n\t\t -0.56517231 -0.202399 0.79973739 -0.56517231 -0.18561383 0.8056885 -0.56245619 0.047578059\n\t\t 0.96789455 -0.24674222 0.047578059 0.96789455 -0.24674222 0.13138191 0.86156803 -0.49031043\n\t\t -0.202399 0.79973739 -0.56517231 -0.74739844 0.33787015 -0.57200843 -0.50746197 0.61586326\n\t\t -0.60258806 -0.61513132 0.67641199 -0.40504172 -0.61513132 0.67641199 -0.40504172\n\t\t -0.83706182 0.36082003 -0.41120642 -0.74739844 0.33787015 -0.57200843 -0.83883178\n\t\t 0.1429484 -0.52522355 -0.74739844 0.33787015 -0.57200843 -0.83706182 0.36082003 -0.41120642\n\t\t -0.83706182 0.36082003 -0.41120642 -0.91146582 0.0056150933 -0.41126743 -0.83883178\n\t\t 0.1429484 -0.52522355 0.37684229 0.82769257 -0.41575372 0.13138191 0.86156803 -0.49031043\n\t\t 0.047578059 0.96789455 -0.24674222 0.047578059 0.96789455 -0.24674222 0.3364968 0.91787481\n\t\t -0.21039468 0.37684229 0.82769257 -0.41575372 0.37684229 0.82769257 -0.41575372 0.3364968\n\t\t 0.91787481 -0.21039468 0.42567191 0.88595247 -0.18399616 0.42567191 0.88595247 -0.18399616\n\t\t 0.44929326 0.80254537 -0.39246809 0.37684229 0.82769257 -0.41575372 -0.83040863 0.0093078464\n\t\t -0.55702382 -0.83883178 0.1429484 -0.52522355 -0.91146582 0.0056150933 -0.41126743\n\t\t -0.91146582 0.0056150933 -0.41126743 -0.86379582 -0.28763726 -0.41361734 -0.83040863\n\t\t 0.0093078464 -0.55702382 -0.83040863 0.0093078464 -0.55702382 -0.86379582 -0.28763726\n\t\t -0.41361734 -0.81084615 -0.31131959 -0.49555951 -0.81084615 -0.31131959 -0.49555951\n\t\t -0.78243357 0.086031392 -0.61671805 -0.83040863 0.0093078464 -0.55702382 0.22449437\n\t\t -0.68980986 -0.68825334 0.24182887 -0.6742149 -0.69780564 0.20679364 -0.68370616\n\t\t -0.69978935 0.20679364 -0.68370616 -0.69978935 0.18768904 -0.68849754 -0.70049131\n\t\t 0.22449437 -0.68980986 -0.68825334 0.22449437 -0.68980986 -0.68825334 0.18768904\n\t\t -0.68849754 -0.70049131 0.20404696 -0.69521165 -0.68919945 0.20404696 -0.69521165\n\t\t -0.68919945 0.23187986 -0.70604569 -0.66908777 0.22449437 -0.68980986 -0.68825334\n\t\t 0.019409925 -0.49650568 -0.86779374 0.019654073 -0.49659723 -0.8677327 -0.14804517\n\t\t -0.37952831 -0.9132359 -0.14804517 -0.37952831 -0.9132359 -0.14819777 -0.3793757\n\t\t -0.91326642 0.019409925 -0.49650568 -0.86779374 0.019654073 -0.49659723 -0.8677327\n\t\t 0.019409925 -0.49650568 -0.86779374 0.21832958 -0.53587449 -0.8155461 0.21832958\n\t\t -0.53587449 -0.8155461 0.21863477 -0.53587449 -0.81548506 0.019654073 -0.49659723\n\t\t -0.8677327 0.21863477 -0.53587449 -0.81548506 0.21832958 -0.53587449 -0.8155461 0.36838907\n\t\t -0.51564068 -0.77352208 0.36838907 -0.51564068 -0.77352208 0.37324151 -0.51371801\n\t\t -0.77248448 0.21863477 -0.53587449 -0.81548506 0.37324151 -0.51371801 -0.77248448\n\t\t 0.36838907 -0.51564068 -0.77352208 0.4167304 -0.49577314 -0.76189452 0.4167304 -0.49577314\n\t\t -0.76189452 0.41676092 -0.49580365 -0.76186401 0.37324151 -0.51371801 -0.77248448\n\t\t -0.14819777 -0.3793757 -0.91326642 -0.14804517 -0.37952831 -0.9132359 -0.2619403\n\t\t -0.20593905 -0.94283885 -0.2619403 -0.20593905 -0.94283885 -0.26200134 -0.2058475\n\t\t -0.94283885 -0.14819777 -0.3793757 -0.91326642 -0.26200134 -0.2058475 -0.94283885\n\t\t -0.2619403 -0.20593905 -0.94283885 -0.30036318 -3.0682364e-05 -0.95379496 -0.30036318\n\t\t -3.0682364e-05 -0.95379496 -0.30033267 -3.0682357e-05 -0.95382547 -0.26200134 -0.2058475\n\t\t -0.94283885 -0.30033267 -3.0682357e-05 -0.95382547 -0.30036318 -3.0682364e-05 -0.95379496;\n\tsetAttr \".n[28718:28883]\" -type \"float3\"  -0.2619099 0.20596927 -0.94283885 -0.2619099\n\t\t 0.20596927 -0.94283885 -0.2619099 0.20590824 -0.94283885 -0.30033267 -3.0682357e-05\n\t\t -0.95382547 -0.2619099 0.20590824 -0.94283885 -0.2619099 0.20596927 -0.94283885 -0.14804541\n\t\t 0.37952808 -0.9132359 -0.14804541 0.37952808 -0.9132359 -0.14822853 0.37934494 -0.91326642\n\t\t -0.2619099 0.20590824 -0.94283885 -0.14822853 0.37934494 -0.91326642 -0.14804541\n\t\t 0.37952808 -0.9132359 0.019653767 0.49662766 -0.86773282 0.019653767 0.49662766 -0.86773282\n\t\t 0.019409619 0.49650556 -0.86779386 -0.14822853 0.37934494 -0.91326642 0.019409619\n\t\t 0.49650556 -0.86779386 0.019653767 0.49662766 -0.86773282 0.21863444 0.53587449 -0.81548518\n\t\t 0.21863444 0.53587449 -0.81548518 0.21829873 0.53587449 -0.81554621 0.019409619 0.49650556\n\t\t -0.86779386 0.21829873 0.53587449 -0.81554621 0.21863444 0.53587449 -0.81548518 0.37324122\n\t\t 0.51377916 -0.77245402 0.37324122 0.51377916 -0.77245402 0.36841929 0.51567131 -0.77349168\n\t\t 0.21829873 0.53587449 -0.81554621 0.36841929 0.51567131 -0.77349168 0.37324122 0.51377916\n\t\t -0.77245402 0.41676062 0.49580377 -0.76186413 0.41676062 0.49580377 -0.76186413 0.41676062\n\t\t 0.49577326 -0.76186413 0.36841929 0.51567131 -0.77349168 -0.39448255 0.91888165 -6.8380835e-08\n\t\t -0.42237642 0.90639961 -6.7451957e-08 -0.56614912 0.82427424 -6.1340401e-08 -0.56614912\n\t\t 0.82427424 -6.1340401e-08 -0.5661186 0.82430476 -6.1342675e-08 -0.39448255 0.91888165\n\t\t -6.8380835e-08 -0.42237642 0.90639961 -6.7451957e-08 -0.39448255 0.91888165 -6.8380835e-08\n\t\t -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 0.047578059 0.96789455\n\t\t -0.24674222 -0.42237642 0.90639961 -6.7451957e-08 -0.89907539 0.43775722 -3.2576796e-08\n\t\t -0.89904487 0.43781826 -3.0551091e-05 -0.95071274 0.31003723 -2.3072202e-08 -0.95071274\n\t\t 0.31003723 -2.3072202e-08 -0.94817966 0.31769738 -2.3642251e-08 -0.89907539 0.43775722\n\t\t -3.2576796e-08 -0.94817966 0.31769738 -2.3642251e-08 -0.95071274 0.31003723 -2.3072202e-08\n\t\t -0.98132271 0.19232735 -1.4312533e-08 -0.98132271 0.19232735 -1.4312533e-08 -0.98132271\n\t\t 0.19232735 -1.4312533e-08 -0.94817966 0.31769738 -2.3642251e-08 0.047578059 0.96789455\n\t\t -0.24674222 -3.0920822e-07 1 -7.441745e-08 0.30066806 0.95370352 -7.0972177e-08 0.30066806\n\t\t 0.95370352 -7.0972177e-08 0.3364968 0.91787481 -0.21039468 0.047578059 0.96789455\n\t\t -0.24674222 0.3364968 0.91787481 -0.21039468 0.30066806 0.95370352 -7.0972177e-08\n\t\t 0.39085025 0.92043835 -6.8496668e-08 0.39085025 0.92043835 -6.8496668e-08 0.42567191\n\t\t 0.88595247 -0.18399616 0.3364968 0.91787481 -0.21039468 -3.0919878e-07 0.99996948\n\t\t -7.4415176e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07\n\t\t 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -3.0919878e-07 0.99996948 -7.4415176e-08\n\t\t -0.03518815 0.99935913 -7.4369758e-08 -3.0920822e-07 1 -7.441745e-08 -3.0920822e-07\n\t\t 1 -7.441745e-08 -3.0920822e-07 1 -7.441745e-08 -0.0019229753 0.99996948 0.0022277767\n\t\t -0.03518815 0.99935913 -7.4369758e-08 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14\n\t\t -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14\n\t\t -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 0.99935913 -0.035401162 0.0045167422\n\t\t 0.99972534 -0.021423684 0.0054628146 0.99990845 -0.012451243 0.0028687408 0.99935913\n\t\t -0.035401162 0.0045167422 0.99990845 -0.012451243 0.0028687408 0.99981689 -0.017791983\n\t\t 0.0019837045 0.99990845 -0.012451243 0.0028687408 1 3.0920822e-07 1.2246572e-16 0.99981689\n\t\t -0.017791983 0.0019837045 1 3.0920822e-07 1.2246572e-16 0.99990845 -0.012451243 0.0028687408\n\t\t 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16\n\t\t 1 3.0920822e-07 1.2246572e-16 0.079653606 -0.97143465 0.22348712 0.017365333 -0.97778255\n\t\t 0.20874669 0.057893913 -0.97506636 0.21411793 0.057893913 -0.97506636 0.21411793\n\t\t 0.17883876 -0.95385593 0.24103527 0.079653606 -0.97143465 0.22348712 3.0238559e-07\n\t\t -0.97793514 0.2087772 0.017365333 -0.97778255 0.20874669 0.079653606 -0.97143465\n\t\t 0.22348712 0.079653606 -0.97143465 0.22348712 3.0238559e-07 -0.97793514 0.2087772\n\t\t 3.0238559e-07 -0.97793514 0.2087772 3.0919878e-07 -0.99996948 7.4415176e-08 3.0920822e-07\n\t\t -1 7.441745e-08 3.0919878e-07 -0.99996948 7.4415176e-08 3.0919878e-07 -0.99996948\n\t\t 7.4415176e-08 3.0919878e-07 -0.99996948 7.4415176e-08 3.0919878e-07 -0.99996948 7.4415176e-08\n\t\t -0.99923706 0.038208865 -0.0073244451 -0.99942017 0.031586349 -0.011810666 -0.99914551\n\t\t 0.040558789 -0.0057069641 -0.99914551 0.040558789 -0.0057069641 -0.99877924 0.048981898\n\t\t -3.6451311e-09 -0.99923706 0.038208865 -0.0073244451 -0.042787243 0.94808799 -0.31507316\n\t\t -0.04058991 0.9486984 -0.31351671 -0.043824874 0.94778281 -0.31580558 -0.043824874\n\t\t 0.94778281 -0.31580558 -0.046052724 0.94717246 -0.31733152 -0.042787243 0.94808799\n\t\t -0.31507316 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07\n\t\t 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07\n\t\t 1.2246572e-16 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 2.3132244e-14\n\t\t -7.4415176e-08 -0.99996948 2.3132244e-14 -7.4415176e-08 -0.99996948 2.3132951e-14\n\t\t -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 2.3132244e-14\n\t\t -7.4415176e-08 -0.99996948 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08\n\t\t -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08\n\t\t -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08\n\t\t -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08\n\t\t -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08\n\t\t -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08\n\t\t -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1;\n\tsetAttr \".n[28884:29049]\" -type \"float3\"  2.3132951e-14 -7.441745e-08 -1 2.3132951e-14\n\t\t -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.131156e-07 0.68923008 0.72450936\n\t\t -2.131156e-07 0.68923008 0.72450936 -2.131156e-07 0.68923008 0.72450936 -2.131156e-07\n\t\t 0.68923008 0.72450936 -2.131156e-07 0.68923008 0.72450936 -2.131156e-07 0.68923008\n\t\t 0.72450936 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14\n\t\t -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14\n\t\t -7.441745e-08 -1 -0.99984741 -0.016205639 0.0038148148 -1 -3.0920822e-07 -1.2246572e-16\n\t\t -0.99990845 -0.011475269 0.0012817782 -0.99984741 -0.016205639 0.0038148148 -0.99990845\n\t\t -0.011475269 0.0012817782 -0.99969482 -0.023499561 0.0032960009 -0.99984741 -0.016205639\n\t\t 0.0038148148 -0.99969482 -0.023499561 0.0032960009 -0.99920654 -0.038362075 0.0097659258\n\t\t -1 -3.0920822e-07 -1.2246572e-16 -0.99990845 -0.011475269 0.0012817782 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16\n\t\t -1 -3.0920822e-07 -1.2246572e-16 -0.07965301 -0.97143465 0.22348712 -0.17883816 -0.95385605\n\t\t 0.24103527 -0.05789331 -0.97506636 0.21411793 -0.05789331 -0.97506636 0.21411793\n\t\t -0.017364729 -0.97778255 0.20874669 -0.07965301 -0.97143465 0.22348712 -0.07965301\n\t\t -0.97143465 0.22348712 -0.017364729 -0.97778255 0.20874669 3.0238559e-07 -0.97793514\n\t\t 0.2087772 3.0238559e-07 -0.97793514 0.2087772 3.0238559e-07 -0.97793514 0.2087772\n\t\t -0.07965301 -0.97143465 0.22348712 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1\n\t\t 7.441745e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07\n\t\t -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 0.99923706 0.038148444 -0.0065920008\n\t\t 0.9994812 0.031586967 -2.3505984e-09 0.99914551 0.040223707 -0.0087282965 0.99914551\n\t\t 0.040223707 -0.0087282965 0.99862665 0.048982516 -0.017578665 0.99923706 0.038148444\n\t\t -0.0065920008 0.042786654 0.94808799 -0.31507316 0.046052136 0.94717246 -0.31733152\n\t\t 0.043824285 0.94778281 -0.31580558 0.043824285 0.94778281 -0.31580558 0.040589321\n\t\t 0.9486984 -0.31351671 0.042786654 0.94808799 -0.31507316 -1 -3.0920822e-07 -1.2246572e-16\n\t\t -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16\n\t\t 2.3132244e-14 -7.4415176e-08 -0.99996948 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14\n\t\t -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 2.3132244e-14\n\t\t -7.4415176e-08 -0.99996948 2.3132951e-14 -7.441745e-08 -1 2.3132244e-14 -7.4415176e-08\n\t\t -0.99996948 2.3132244e-14 -7.4415176e-08 -0.99996948 2.3132244e-14 -7.4415176e-08\n\t\t -0.99996948 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14\n\t\t -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14\n\t\t -7.441745e-08 -1 2.3132244e-14 -7.4415176e-08 -0.99996948 2.3132951e-14 -7.441745e-08\n\t\t -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08\n\t\t -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08\n\t\t -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08\n\t\t -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08 -1 2.3132951e-14 -7.441745e-08\n\t\t -1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.131156e-07 0.68923008 0.72450936 -2.131156e-07 0.68923008 0.72450936 -2.131156e-07\n\t\t 0.68923008 0.72450936 -2.131156e-07 0.68923008 0.72450936 -2.131156e-07 0.68923008\n\t\t 0.72450936 -2.131156e-07 0.68923008 0.72450936 0.15701744 0.98489338 -0.072969832\n\t\t 0.15881802 0.98455769 -0.07342761 0.12494247 0.98458821 -0.12210464 0.12494247 0.98458821\n\t\t -0.12210464 0.12097508 0.98446614 -0.12720121 0.15701744 0.98489338 -0.072969832\n\t\t 0.12097508 0.98446614 -0.12720121 0.12494247 0.98458821 -0.12210464 0.048524138 0.95290995\n\t\t -0.29932559 0.048524138 0.95290995 -0.29932559 0.043030802 0.94961393 -0.31040382\n\t\t 0.12097508 0.98446614 -0.12720121 0.043030802 0.94961393 -0.31040382 0.048524138\n\t\t 0.95290995 -0.29932559 -0.032014184 0.87304294 -0.48652613 -0.032014184 0.87304294\n\t\t -0.48652613 -0.032868702 0.87118131 -0.48982215 0.043030802 0.94961393 -0.31040382\n\t\t -0.032868702 0.87118131 -0.48982215 -0.032014184 0.87304294 -0.48652613 -0.050813574\n\t\t 0.83315527 -0.55064553 -0.050813574 0.83315527 -0.55064553 -0.049836982 0.83312476\n\t\t -0.5507676 -0.032868702 0.87118131 -0.48982215 -0.049836982 0.83312476 -0.5507676\n\t\t -0.050813574 0.83315527 -0.55064553 -0.043428097 0.83373511 -0.55040139 -0.043428097\n\t\t 0.83373511 -0.55040139 -0.043458614 0.8344065 -0.54939425 -0.049836982 0.83312476\n\t\t -0.5507676 -0.038178913 0.83272797 -0.55232406 -0.043458614 0.8344065 -0.54939425\n\t\t -0.043428097 0.83373511 -0.55040139 -0.043428097 0.83373511 -0.55040139 -0.038056839\n\t\t 0.83236176 -0.55287337 -0.038178913 0.83272797 -0.55232406 -0.038178913 0.83272797\n\t\t -0.55232406 -0.038056839 0.83236176 -0.55287337 -0.036561433 0.83272797 -0.55244613\n\t\t -0.036561433 0.83272797 -0.55244613 -0.035737433 0.83254486 -0.55278182 -0.038178913\n\t\t 0.83272797 -0.55232406 -0.040040541 0.83602399 -0.54722744 -0.035737433 0.83254486\n\t\t -0.55278182 -0.036561433 0.83272797 -0.55244613 -0.036561433 0.83272797 -0.55244613\n\t\t -0.039857429 0.83577985 -0.54759365 -0.040040541 0.83602399 -0.54722744 -0.040040541\n\t\t 0.83602399 -0.54722744 -0.039857429 0.83577985 -0.54759365 -0.047487061 0.83944207\n\t\t -0.54130685 -0.047487061 0.83944207 -0.54130685;\n\tsetAttr \".n[29050:29215]\" -type \"float3\"  -0.047822766 0.84008294 -0.54029977 -0.040040541\n\t\t 0.83602399 -0.54722744 -0.054048538 0.83223969 -0.55174416 -0.047822766 0.84008294\n\t\t -0.54029977 -0.047487061 0.83944207 -0.54130685 -0.047487061 0.83944207 -0.54130685\n\t\t -0.053895947 0.83651227 -0.54527426 -0.054048538 0.83223969 -0.55174416 -0.054048538\n\t\t 0.83223969 -0.55174416 -0.053895947 0.83651227 -0.54527426 -0.050569423 0.82448798\n\t\t -0.5635854 -0.050569423 0.82448798 -0.5635854 -0.048494164 0.82430488 -0.56401265\n\t\t -0.054048538 0.83223969 -0.55174416 -0.14047684 0.43790999 -0.88793612 -0.14996809\n\t\t 0.43436983 -0.88814974 -0.13983594 0.4149906 -0.89898378 -0.13983594 0.4149906 -0.89898378\n\t\t -0.13290823 0.39591652 -0.90859705 -0.14047684 0.43790999 -0.88793612 -0.13290823\n\t\t 0.39591652 -0.90859705 -0.13983594 0.4149906 -0.89898378 -0.118534 0.3665272 -0.92281866\n\t\t -0.118534 0.3665272 -0.92281866 -0.11359 0.36036247 -0.92584002 -0.13290823 0.39591652\n\t\t -0.90859705 -0.11359 0.36036247 -0.92584002 -0.118534 0.3665272 -0.92281866 -0.09369193\n\t\t 0.34821612 -0.93270671 -0.09369193 0.34821612 -0.93270671 -0.092654303 0.34849077\n\t\t -0.93270671 -0.11359 0.36036247 -0.92584002 -0.092654303 0.34849077 -0.93270671 -0.09369193\n\t\t 0.34821612 -0.93270671 -0.096133418 0.37238675 -0.92306286 -0.096133418 0.37238675\n\t\t -0.92306286 -0.087679796 0.3960081 -0.91402936 -0.092654303 0.34849077 -0.93270671\n\t\t -0.087679796 0.3960081 -0.91402936 -0.096133418 0.37238675 -0.92306286 -0.042420853\n\t\t 0.40235597 -0.91448718 -0.042420853 0.40235597 -0.91448718 -0.031983521 0.39851063\n\t\t -0.9165929 -0.087679796 0.3960081 -0.91402936 0.26239786 0.91860718 -0.29544976 0.23023136\n\t\t 0.92446673 -0.30384234 0.21814603 0.91256452 -0.3458358 0.21814603 0.91256452 -0.3458358\n\t\t 0.26407635 0.91738647 -0.29767761 0.26239786 0.91860718 -0.29544976 0.20813595 0.89934999\n\t\t -0.38447225 0.21814603 0.91256452 -0.3458358 0.23023136 0.92446673 -0.30384234 0.23023136\n\t\t 0.92446673 -0.30384234 0.20914306 0.89782411 -0.38743255 0.20813595 0.89934999 -0.38447225\n\t\t 0.90524 0.0234995 -0.42423779 0.89693898 0.0074467608 -0.44206062 0.90194404 0.015869873\n\t\t -0.43153173 0.90194404 0.015869873 -0.43153173 0.9070406 0.030427203 -0.41987365\n\t\t 0.90524 0.0234995 -0.42423779 0.89901423 0.0044254293 -0.43787956 0.90194404 0.015869873\n\t\t -0.43153173 0.89693898 0.0074467608 -0.44206062 0.89693898 0.0074467608 -0.44206062\n\t\t 0.89526045 -0.0030516072 -0.44547868 0.89901423 0.0044254293 -0.43787956 0.90487379\n\t\t -0.0036314544 -0.42561114 0.89901423 0.0044254293 -0.43787956 0.89526045 -0.0030516072\n\t\t -0.44547868 0.89526045 -0.0030516072 -0.44547868 0.90710163 -0.01312271 -0.42063662\n\t\t 0.90487379 -0.0036314544 -0.42561114 0.90966523 -0.054872029 -0.41163367 0.90487379\n\t\t -0.0036314544 -0.42561114 0.90710163 -0.01312271 -0.42063662 0.90710163 -0.01312271\n\t\t -0.42063662 0.90643024 -0.06286788 -0.41758478 0.90966523 -0.054872029 -0.41163367\n\t\t 0.89294106 -0.06808655 -0.44495988 0.90966523 -0.054872029 -0.41163367 0.90643024\n\t\t -0.06286788 -0.41758478 0.90643024 -0.06286788 -0.41758478 0.87462997 -0.064699009\n\t\t -0.48039186 0.89294106 -0.06808655 -0.44495988 0.89294106 -0.06808655 -0.44495988\n\t\t 0.87462997 -0.064699009 -0.48039186 0.87060153 -0.093325369 -0.48304698 0.87060153\n\t\t -0.093325369 -0.48304698 0.87704092 -0.086947002 -0.47245705 0.89294106 -0.06808655\n\t\t -0.44495988 0.85937077 -0.11346759 -0.4985809 0.87704092 -0.086947002 -0.47245705\n\t\t 0.87060153 -0.093325369 -0.48304698 0.87060153 -0.093325369 -0.48304698 0.85299242\n\t\t -0.11664151 -0.50868249 0.85937077 -0.11346759 -0.4985809 0.82885224 -0.11523768\n\t\t -0.54744101 0.85937077 -0.11346759 -0.4985809 0.85299242 -0.11664151 -0.50868249\n\t\t 0.85299242 -0.11664151 -0.50868249 0.83300269 -0.092226714 -0.5454573 0.82885224\n\t\t -0.11523768 -0.54744101 0.80794704 -0.083712064 -0.58323926 0.82885224 -0.11523768\n\t\t -0.54744101 0.83300269 -0.092226714 -0.5454573 0.83300269 -0.092226714 -0.5454573\n\t\t 0.81203651 -0.073976658 -0.57887506 0.80794704 -0.083712064 -0.58323926 0.80083627\n\t\t -0.12054791 -0.58656573 0.80794704 -0.083712064 -0.58323926 0.81203651 -0.073976658\n\t\t -0.57887506 0.81203651 -0.073976658 -0.57887506 0.79363388 -0.15872657 -0.5872677\n\t\t 0.80083627 -0.12054791 -0.58656573 0.76885289 -0.24765751 -0.58946502 0.80083627\n\t\t -0.12054791 -0.58656573 0.79363388 -0.15872657 -0.5872677 0.79363388 -0.15872657\n\t\t -0.5872677 0.77056193 -0.25400534 -0.584521 0.76885289 -0.24765751 -0.58946502 0.74712378\n\t\t -0.29245865 -0.59685051 0.76885289 -0.24765751 -0.58946502 0.77056193 -0.25400534\n\t\t -0.584521 0.77056193 -0.25400534 -0.584521 0.75307482 -0.26660952 -0.60145879 0.74712378\n\t\t -0.29245865 -0.59685051 0.72844642 -0.31659883 -0.60753196 0.74712378 -0.29245865\n\t\t -0.59685051 0.75307482 -0.26660952 -0.60145879 0.75307482 -0.26660952 -0.60145879\n\t\t 0.73406178 -0.28803352 -0.61491746 0.72844642 -0.31659883 -0.60753196 0.69747013\n\t\t -0.35859233 -0.6204108 0.72844642 -0.31659883 -0.60753196 0.73406178 -0.28803352\n\t\t -0.61491746 0.73406178 -0.28803352 -0.61491746 0.70812112 -0.33005753 -0.62416458\n\t\t 0.69747013 -0.35859233 -0.6204108 0.69747013 -0.35859233 -0.6204108 0.70812112 -0.33005753\n\t\t -0.62416458 0.66429651 -0.37531647 -0.64638203 0.66429651 -0.37531647 -0.64638203\n\t\t 0.65556824 -0.38822582 -0.64766383 0.69747013 -0.35859233 -0.6204108 0.6392408 -0.36469603\n\t\t -0.67699212 0.65556824 -0.38822582 -0.64766383 0.66429651 -0.37531647 -0.64638203\n\t\t 0.66429651 -0.37531647 -0.64638203 0.65511042 -0.33393338 -0.67769402 0.6392408 -0.36469603\n\t\t -0.67699212 0.68608665 -0.26154348 -0.67885375 0.6392408 -0.36469603 -0.67699212\n\t\t 0.65511042 -0.33393338 -0.67769402 0.65511042 -0.33393338 -0.67769402 0.68984044\n\t\t -0.26548037 -0.673513 0.68608665 -0.26154348 -0.67885375 0.68608665 -0.26154348 -0.67885375\n\t\t 0.68984044 -0.26548037 -0.673513 0.68285167 0.0056155622 -0.73049104 0.68285167 0.0056155622\n\t\t -0.73049104 0.67720574 0.041322213 -0.73458052 0.68608665 -0.26154348 -0.67885375\n\t\t -0.15701804 0.98489326 -0.072969832 -0.12097569 0.98446602 -0.12720121;\n\tsetAttr \".n[29216:29381]\" -type \"float3\"  -0.12494309 0.98458809 -0.12210464 -0.12494309\n\t\t 0.98458809 -0.12210464 -0.15884914 0.98455757 -0.07342761 -0.15701804 0.98489326\n\t\t -0.072969832 -0.048524726 0.95290995 -0.29932559 -0.12494309 0.98458809 -0.12210464\n\t\t -0.12097569 0.98446602 -0.12720121 -0.12097569 0.98446602 -0.12720121 -0.043031391\n\t\t 0.94961393 -0.31040382 -0.048524726 0.95290995 -0.29932559 0.032013647 0.87304294\n\t\t -0.48652613 -0.048524726 0.95290995 -0.29932559 -0.043031391 0.94961393 -0.31040382\n\t\t -0.043031391 0.94961393 -0.31040382 0.032868166 0.87118131 -0.48982215 0.032013647\n\t\t 0.87304294 -0.48652613 0.05081306 0.83315527 -0.55064553 0.032013647 0.87304294 -0.48652613\n\t\t 0.032868166 0.87118131 -0.48982215 0.032868166 0.87118131 -0.48982215 0.049836468\n\t\t 0.83312476 -0.5507676 0.05081306 0.83315527 -0.55064553 0.043427583 0.83373511 -0.55040139\n\t\t 0.05081306 0.83315527 -0.55064553 0.049836468 0.83312476 -0.5507676 0.049836468 0.83312476\n\t\t -0.5507676 0.0434581 0.8344065 -0.54939425 0.043427583 0.83373511 -0.55040139 0.043427583\n\t\t 0.83373511 -0.55040139 0.0434581 0.8344065 -0.54939425 0.038178399 0.83272797 -0.55232406\n\t\t 0.038178399 0.83272797 -0.55232406 0.038056325 0.83236176 -0.55287337 0.043427583\n\t\t 0.83373511 -0.55040139 0.036560919 0.83272797 -0.55244613 0.038056325 0.83236176\n\t\t -0.55287337 0.038178399 0.83272797 -0.55232406 0.038178399 0.83272797 -0.55232406\n\t\t 0.035736918 0.83254486 -0.55278182 0.036560919 0.83272797 -0.55244613 0.036560919\n\t\t 0.83272797 -0.55244613 0.035736918 0.83254486 -0.55278182 0.040040027 0.83599347\n\t\t -0.54722744 0.040040027 0.83599347 -0.54722744 0.039856914 0.83577985 -0.54759365\n\t\t 0.036560919 0.83272797 -0.55244613 0.04748654 0.83944207 -0.54130685 0.039856914\n\t\t 0.83577985 -0.54759365 0.040040027 0.83599347 -0.54722744 0.040040027 0.83599347\n\t\t -0.54722744 0.047822244 0.84008294 -0.54029977 0.04748654 0.83944207 -0.54130685\n\t\t 0.04748654 0.83944207 -0.54130685 0.047822244 0.84008294 -0.54029977 0.054048024\n\t\t 0.83223969 -0.55174416 0.054048024 0.83223969 -0.55174416 0.053895433 0.83651227\n\t\t -0.54527426 0.04748654 0.83944207 -0.54130685 0.050568916 0.82448798 -0.5635854 0.053895433\n\t\t 0.83651227 -0.54527426 0.054048024 0.83223969 -0.55174416 0.054048024 0.83223969\n\t\t -0.55174416 0.048493657 0.82430488 -0.56401265 0.050568916 0.82448798 -0.5635854\n\t\t 0.13983567 0.41499066 -0.89898378 0.14996782 0.43436995 -0.88811922 0.14047657 0.43791005\n\t\t -0.88793612 0.14047657 0.43791005 -0.88793612 0.1329385 0.39591658 -0.90859705 0.13983567\n\t\t 0.41499066 -0.89898378 0.1169163 0.36750385 -0.92263556 0.13983567 0.41499066 -0.89898378\n\t\t 0.1329385 0.39591658 -0.90859705 0.1329385 0.39591658 -0.90859705 0.11490208 0.36552015\n\t\t -0.92367321 0.1169163 0.36750385 -0.92263556 0.1169163 0.36750385 -0.92263556 0.11490208\n\t\t 0.36552015 -0.92367321 0.093447573 0.3464461 -0.9333781 0.093447573 0.3464461 -0.9333781\n\t\t 0.092867717 0.34379098 -0.9344157 0.1169163 0.36750385 -0.92263556 0.092867717 0.34379098\n\t\t -0.9344157 0.093447573 0.3464461 -0.9333781 0.091250218 0.41343421 -0.90591151 0.091250218\n\t\t 0.41343421 -0.90591151 0.092043705 0.37601852 -0.92199469 0.092867717 0.34379098\n\t\t -0.9344157 0.092043705 0.37601852 -0.92199469 0.091250218 0.41343421 -0.90591151\n\t\t 0.050446972 0.39179659 -0.91863763 0.050446972 0.39179659 -0.91863763 0.039857056\n\t\t 0.37745285 -0.92513812 0.092043705 0.37601852 -0.92199469 -0.26496199 0.91866809\n\t\t -0.2928862 -0.21704791 0.91265595 -0.3462936 -0.23026244 0.92321539 -0.3075656 -0.23026244\n\t\t 0.92321539 -0.3075656 -0.26657948 0.91775256 -0.29429004 -0.26496199 0.91866809 -0.2928862\n\t\t -0.23026244 0.92321539 -0.3075656 -0.21704791 0.91265595 -0.3462936 -0.20813651 0.89934987\n\t\t -0.38447225 -0.20813651 0.89934987 -0.38447225 -0.20914362 0.89782399 -0.38743255\n\t\t -0.23026244 0.92321539 -0.3075656 -0.90524 0.023498941 -0.42423779 -0.9070406 0.03042664\n\t\t -0.41987365 -0.90194404 0.015869314 -0.43153173 -0.90194404 0.015869314 -0.43153173\n\t\t -0.89693898 0.0074462057 -0.44206062 -0.90524 0.023498941 -0.42423779 -0.89693898\n\t\t 0.0074462057 -0.44206062 -0.90194404 0.015869314 -0.43153173 -0.89901423 0.0044248733\n\t\t -0.43787956 -0.89901423 0.0044248733 -0.43787956 -0.89526045 -0.0030521608 -0.44547868\n\t\t -0.89693898 0.0074462057 -0.44206062 -0.89526045 -0.0030521608 -0.44547868 -0.89901423\n\t\t 0.0044248733 -0.43787956 -0.90487379 -0.0036320142 -0.42561114 -0.90487379 -0.0036320142\n\t\t -0.42561114 -0.90710163 -0.013123271 -0.42063662 -0.89526045 -0.0030521608 -0.44547868\n\t\t -0.90710163 -0.013123271 -0.42063662 -0.90487379 -0.0036320142 -0.42561114 -0.90966523\n\t\t -0.054872595 -0.41163367 -0.90966523 -0.054872595 -0.41163367 -0.90643024 -0.062868446\n\t\t -0.41758478 -0.90710163 -0.013123271 -0.42063662 -0.90643024 -0.062868446 -0.41758478\n\t\t -0.90966523 -0.054872595 -0.41163367 -0.89291054 -0.068087101 -0.4449904 -0.89291054\n\t\t -0.068087101 -0.4449904 -0.87462997 -0.064699546 -0.48039186 -0.90643024 -0.062868446\n\t\t -0.41758478 -0.87060153 -0.093325906 -0.48304698 -0.87462997 -0.064699546 -0.48039186\n\t\t -0.89291054 -0.068087101 -0.4449904 -0.89291054 -0.068087101 -0.4449904 -0.87704092\n\t\t -0.086947538 -0.47245705 -0.87060153 -0.093325906 -0.48304698 -0.87060153 -0.093325906\n\t\t -0.48304698 -0.87704092 -0.086947538 -0.47245705 -0.85937065 -0.11346813 -0.4985809\n\t\t -0.85937065 -0.11346813 -0.4985809 -0.8529923 -0.11664204 -0.50868249 -0.87060153\n\t\t -0.093325906 -0.48304698 -0.8529923 -0.11664204 -0.50868249 -0.85937065 -0.11346813\n\t\t -0.4985809 -0.82885212 -0.11520766 -0.54744101 -0.82885212 -0.11520766 -0.54744101\n\t\t -0.83300269 -0.092227235 -0.5454573 -0.8529923 -0.11664204 -0.50868249 -0.83300269\n\t\t -0.092227235 -0.5454573 -0.82885212 -0.11520766 -0.54744101 -0.80794704 -0.08371257\n\t\t -0.58323926 -0.80794704 -0.08371257 -0.58323926 -0.81203651 -0.073977165 -0.57887506\n\t\t -0.83300269 -0.092227235 -0.5454573 -0.81203651 -0.073977165 -0.57887506 -0.80794704\n\t\t -0.08371257 -0.58323926 -0.80083615 -0.1205484 -0.58656573 -0.80083615 -0.1205484\n\t\t -0.58656573 -0.79363376 -0.15872705 -0.5872677 -0.81203651 -0.073977165 -0.57887506;\n\tsetAttr \".n[29382:29547]\" -type \"float3\"  -0.79363376 -0.15872705 -0.5872677 -0.80083615\n\t\t -0.1205484 -0.58656573 -0.76885277 -0.24765798 -0.58946502 -0.76885277 -0.24765798\n\t\t -0.58946502 -0.77056181 -0.25400582 -0.584521 -0.79363376 -0.15872705 -0.5872677\n\t\t -0.77056181 -0.25400582 -0.584521 -0.76885277 -0.24765798 -0.58946502 -0.74712354\n\t\t -0.29245913 -0.59685051 -0.74712354 -0.29245913 -0.59685051 -0.75307471 -0.26661\n\t\t -0.60145879 -0.77056181 -0.25400582 -0.584521 -0.75307471 -0.26661 -0.60145879 -0.74712354\n\t\t -0.29245913 -0.59685051 -0.72844619 -0.31659931 -0.60753196 -0.72844619 -0.31659931\n\t\t -0.60753196 -0.73406166 -0.28803399 -0.61491746 -0.75307471 -0.26661 -0.60145879\n\t\t -0.73406166 -0.28803399 -0.61491746 -0.72844619 -0.31659931 -0.60753196 -0.69667643\n\t\t -0.37409616 -0.61210972 -0.69667643 -0.37409616 -0.61210972 -0.70534366 -0.33176699\n\t\t -0.62636191 -0.73406166 -0.28803399 -0.61491746 -0.70534366 -0.33176699 -0.62636191\n\t\t -0.69667643 -0.37409616 -0.61210972 -0.66145808 -0.38563216 -0.64320809 -0.66145808\n\t\t -0.38563216 -0.64320809 -0.66679877 -0.36140046 -0.65169227 -0.70534366 -0.33176699\n\t\t -0.62636191 -0.66679877 -0.36140046 -0.65169227 -0.66145808 -0.38563216 -0.64320809\n\t\t -0.63924056 -0.36466593 -0.67699212 -0.63924056 -0.36466593 -0.67699212 -0.65511018\n\t\t -0.33390328 -0.67769402 -0.66679877 -0.36140046 -0.65169227 -0.65511018 -0.33390328\n\t\t -0.67769402 -0.63924056 -0.36466593 -0.67699212 -0.68608654 -0.26151338 -0.67885375\n\t\t -0.68608654 -0.26151338 -0.67885375 -0.68984032 -0.26545027 -0.673513 -0.65511018\n\t\t -0.33390328 -0.67769402 -0.68285167 0.0056151403 -0.73049104 -0.68984032 -0.26545027\n\t\t -0.673513 -0.68608654 -0.26151338 -0.67885375 -0.68608654 -0.26151338 -0.67885375\n\t\t -0.67720574 0.041321795 -0.73458052 -0.68285167 0.0056151403 -0.73049104 0.17365035\n\t\t -0.085818075 -0.98104799 0.11236909 0.19226657 -0.97485274 0.22074032 0.19394512\n\t\t -0.95583969 0.17365035 -0.085818075 -0.98104799 0.22074032 0.19394512 -0.95583969\n\t\t 0.32087156 0.15353864 -0.93456829 0.17365035 -0.085818075 -0.98104799 0.32087156\n\t\t 0.15353864 -0.93456829 0.39744252 0.077211879 -0.91433454 0.17365035 -0.085818075\n\t\t -0.98104799 0.39744252 0.077211879 -0.91433454 0.43891719 -0.02334659 -0.89819026\n\t\t 0.17365035 -0.085818075 -0.98104799 0.43891719 -0.02334659 -0.89819026 0.43891722\n\t\t -0.13296907 -0.88860744 0.17365035 -0.085818075 -0.98104799 0.43891722 -0.13296907\n\t\t -0.88860744 0.39744261 -0.23483987 -0.88705099 0.17365035 -0.085818075 -0.98104799\n\t\t 0.39744261 -0.23483987 -0.88705099 0.32087171 -0.3134861 -0.89370406 0.17365035 -0.085818075\n\t\t -0.98104799 0.32087171 -0.3134861 -0.89370406 0.220771 -0.35697502 -0.90762049 0.17365035\n\t\t -0.085818075 -0.98104799 0.220771 -0.35697502 -0.90762049 0.1124303 -0.35862303 -0.92666399\n\t\t 0.17365035 -0.085818075 -0.98104799 0.1124303 -0.35862303 -0.92666399 0.012329577\n\t\t -0.31824708 -0.94790488 0.17365035 -0.085818075 -0.98104799 0.012329577 -0.31824708\n\t\t -0.94790488 -0.064241387 -0.24192031 -0.96813869 0.17365035 -0.085818075 -0.98104799\n\t\t -0.064241387 -0.24192031 -0.96813869 -0.10571607 -0.14133132 -0.98428297 0.17365035\n\t\t -0.085818075 -0.98104799 -0.10571607 -0.14133132 -0.98428297 -0.10568559 -0.031739358\n\t\t -0.99386579 0.17365035 -0.085818075 -0.98104799 -0.10568559 -0.031739358 -0.99386579\n\t\t -0.064210966 0.070131436 -0.99545276 0.17365035 -0.085818075 -0.98104799 -0.064210966\n\t\t 0.070131436 -0.99545276 0.012359951 0.14880818 -0.98876917 0.17365035 -0.085818075\n\t\t -0.98104799 0.012359951 0.14880818 -0.98876917 0.11236909 0.19226657 -0.97485274\n\t\t 0.62123471 0.262795 -0.73821223 0.39744252 0.077211879 -0.91433454 0.32087156 0.15353864\n\t\t -0.93456829 0.32087156 0.15353864 -0.93456829 0.46174493 0.42161331 -0.78035837 0.62123471\n\t\t 0.262795 -0.73821223 0.39744252 0.077211879 -0.91433454 0.62123471 0.262795 -0.73821223\n\t\t 0.70754111 0.053285483 -0.70464188 0.70754111 0.053285483 -0.70464188 0.43891719\n\t\t -0.02334659 -0.89819026 0.39744252 0.077211879 -0.91433454 0.43891719 -0.02334659\n\t\t -0.89819026 0.70754111 0.053285483 -0.70464188 0.70754117 -0.17484036 -0.68468279\n\t\t 0.70754117 -0.17484036 -0.68468279 0.43891722 -0.13296907 -0.88860744 0.43891719\n\t\t -0.02334659 -0.89819026 0.43891722 -0.13296907 -0.88860744 0.70754117 -0.17484036\n\t\t -0.68468279 0.62123489 -0.38694406 -0.68138677 0.62123489 -0.38694406 -0.68138677\n\t\t 0.39744261 -0.23483987 -0.88705099 0.43891722 -0.13296907 -0.88860744 0.39744261\n\t\t -0.23483987 -0.88705099 0.62123489 -0.38694406 -0.68138677 0.46174523 -0.55076748\n\t\t -0.69527262 0.46174523 -0.55076748 -0.69527262 0.32087171 -0.3134861 -0.89370406\n\t\t 0.39744261 -0.23483987 -0.88705099 0.32087171 -0.3134861 -0.89370406 0.46174523 -0.55076748\n\t\t -0.69527262 0.25336486 -0.64128542 -0.7242347 0.25336486 -0.64128542 -0.7242347 0.220771\n\t\t -0.35697502 -0.90762049 0.32087171 -0.3134861 -0.89370406 0.220771 -0.35697502 -0.90762049\n\t\t 0.25336486 -0.64128542 -0.7242347 0.027802562 -0.64473408 -0.76387823 0.027802562\n\t\t -0.64473408 -0.76387823 0.1124303 -0.35862303 -0.92666399 0.220771 -0.35697502 -0.90762049\n\t\t 0.1124303 -0.35862303 -0.92666399 0.027802562 -0.64473408 -0.76387823 -0.18054733\n\t\t -0.56062514 -0.80809957 -0.18054733 -0.56062514 -0.80809957 0.012329577 -0.31824708\n\t\t -0.94790488 0.1124303 -0.35862303 -0.92666399 0.012329577 -0.31824708 -0.94790488\n\t\t -0.18054733 -0.56062514 -0.80809957 -0.34009814 -0.40174583 -0.85021508 -0.34009814\n\t\t -0.40174583 -0.85021508 -0.064241387 -0.24192031 -0.96813869 0.012329577 -0.31824708\n\t\t -0.94790488 -0.064241387 -0.24192031 -0.96813869 -0.34009814 -0.40174583 -0.85021508\n\t\t -0.42637405 -0.19226681 -0.88384658 -0.42637405 -0.19226681 -0.88384658 -0.10571607\n\t\t -0.14133132 -0.98428297 -0.064241387 -0.24192031 -0.96813869 -0.10571607 -0.14133132\n\t\t -0.98428297 -0.42637405 -0.19226681 -0.88384658 -0.42637411 0.035859052 -0.90380567\n\t\t -0.42637411 0.035859052 -0.90380567 -0.10568559 -0.031739358 -0.99386579 -0.10571607\n\t\t -0.14133132 -0.98428297 -0.10568559 -0.031739358 -0.99386579 -0.42637411 0.035859052\n\t\t -0.90380567 -0.34006783 0.24799323 -0.90710163 -0.34006783 0.24799323 -0.90710163;\n\tsetAttr \".n[29548:29713]\" -type \"float3\"  -0.064210966 0.070131436 -0.99545276\n\t\t -0.10568559 -0.031739358 -0.99386579 -0.064210966 0.070131436 -0.99545276 -0.34006783\n\t\t 0.24799323 -0.90710163 -0.18054764 0.41175562 -0.89321578 -0.18054764 0.41175562\n\t\t -0.89321578 0.012359951 0.14880818 -0.98876917 -0.064210966 0.070131436 -0.99545276\n\t\t 0.012359951 0.14880818 -0.98876917 -0.18054764 0.41175562 -0.89321578 0.027832726\n\t\t 0.50227356 -0.86422318 0.027832726 0.50227356 -0.86422318 0.11236909 0.19226657 -0.97485274\n\t\t 0.012359951 0.14880818 -0.98876917 0.11236909 0.19226657 -0.97485274 0.027832726\n\t\t 0.50227356 -0.86422318 0.2533645 0.50578326 -0.82457966 0.2533645 0.50578326 -0.82457966\n\t\t 0.22074032 0.19394512 -0.95583969 0.11236909 0.19226657 -0.97485274 0.22074032 0.19394512\n\t\t -0.95583969 0.2533645 0.50578326 -0.82457966 0.46174493 0.42161331 -0.78035837 0.46174493\n\t\t 0.42161331 -0.78035837 0.32087156 0.15353864 -0.93456829 0.22074032 0.19394512 -0.95583969\n\t\t 0.25882727 0.6483047 -0.71599483 0.2533645 0.50578326 -0.82457966 0.027832726 0.50227356\n\t\t -0.86422318 0.027832726 0.50227356 -0.86422318 -0.018555453 0.64400154 -0.76479393\n\t\t 0.25882727 0.6483047 -0.71599483 -0.018555453 0.64400154 -0.76479393 0.027832726\n\t\t 0.50227356 -0.86422318 -0.18054764 0.41175562 -0.89321578 0.2533645 0.50578326 -0.82457966\n\t\t 0.25882727 0.6483047 -0.71599483 0.51518279 0.54475552 -0.66164136 0.51518279 0.54475552\n\t\t -0.66164136 0.46174493 0.42161331 -0.78035837 0.2533645 0.50578326 -0.82457966 0.46174493\n\t\t 0.42161331 -0.78035837 0.51518279 0.54475552 -0.66164136 0.71141684 0.34937605 -0.60972929\n\t\t 0.71141684 0.34937605 -0.60972929 0.62123471 0.262795 -0.73821223 0.46174493 0.42161331\n\t\t -0.78035837 0.62123471 0.262795 -0.73821223 0.71141684 0.34937605 -0.60972929 0.81759089\n\t\t 0.091677815 -0.56843776 0.81759089 0.091677815 -0.56843776 0.70754111 0.053285483\n\t\t -0.70464188 0.62123471 0.262795 -0.73821223 0.70754111 0.053285483 -0.70464188 0.81759089\n\t\t 0.091677815 -0.56843776 0.81756043 -0.1889704 -0.54390085 0.81756043 -0.1889704 -0.54390085\n\t\t 0.70754117 -0.17484036 -0.68468279 0.70754111 0.053285483 -0.70464188 0.70754117\n\t\t -0.17484036 -0.68468279 0.81756043 -0.1889704 -0.54390085 0.71138656 -0.44993421\n\t\t -0.53984183 0.71138656 -0.44993421 -0.53984183 0.62123489 -0.38694406 -0.68138677\n\t\t 0.70754117 -0.17484036 -0.68468279 0.62123489 -0.38694406 -0.68138677 0.71138656\n\t\t -0.44993421 -0.53984183 0.51521367 -0.65141749 -0.55693221 0.51521367 -0.65141749\n\t\t -0.55693221 0.46174523 -0.55076748 -0.69527262 0.62123489 -0.38694406 -0.68138677\n\t\t 0.46174523 -0.55076748 -0.69527262 0.51521367 -0.65141749 -0.55693221 0.25885823\n\t\t -0.76281017 -0.59251678 0.25885823 -0.76281017 -0.59251678 0.25336486 -0.64128542\n\t\t -0.7242347 0.46174523 -0.55076748 -0.69527262 0.25336486 -0.64128542 -0.7242347 0.25885823\n\t\t -0.76281017 -0.59251678 -0.018585535 -0.76702178 -0.64131588 -0.018585535 -0.76702178\n\t\t -0.64131588 0.027802562 -0.64473408 -0.76387823 0.25336486 -0.64128542 -0.7242347\n\t\t 0.027802562 -0.64473408 -0.76387823 -0.018585535 -0.76702178 -0.64131588 -0.27494106\n\t\t -0.66353357 -0.69573039 -0.27494106 -0.66353357 -0.69573039 -0.18054733 -0.56062514\n\t\t -0.80809957 0.027802562 -0.64473408 -0.76387823 -0.18054733 -0.56062514 -0.80809957\n\t\t -0.27494106 -0.66353357 -0.69573039 -0.47120562 -0.46815413 -0.74748981 -0.47120562\n\t\t -0.46815413 -0.74748981 -0.34009814 -0.40174583 -0.85021508 -0.18054733 -0.56062514\n\t\t -0.80809957 -0.34009814 -0.40174583 -0.85021508 -0.47120562 -0.46815413 -0.74748981\n\t\t -0.57737964 -0.21045588 -0.78887296 -0.57737964 -0.21045588 -0.78887296 -0.42637405\n\t\t -0.19226681 -0.88384658 -0.34009814 -0.40174583 -0.85021508 -0.42637405 -0.19226681\n\t\t -0.88384658 -0.57737964 -0.21045588 -0.78887296 -0.57734919 0.070222855 -0.81344032\n\t\t -0.57734919 0.070222855 -0.81344032 -0.42637411 0.035859052 -0.90380567 -0.42637405\n\t\t -0.19226681 -0.88384658 -0.42637411 0.035859052 -0.90380567 -0.57734919 0.070222855\n\t\t -0.81344032 -0.47114483 0.33118665 -0.81749934 -0.47114483 0.33118665 -0.81749934\n\t\t -0.34006783 0.24799323 -0.90710163 -0.42637411 0.035859052 -0.90380567 -0.34006783\n\t\t 0.24799323 -0.90710163 -0.47114483 0.33118665 -0.81749934 -0.27494144 0.53263944\n\t\t -0.80040902 -0.27494144 0.53263944 -0.80040902 -0.18054764 0.41175562 -0.89321578\n\t\t -0.34006783 0.24799323 -0.90710163 -0.18054764 0.41175562 -0.89321578 -0.27494144\n\t\t 0.53263944 -0.80040902 -0.018555453 0.64400154 -0.76479393 -0.17365029 -0.085818179\n\t\t -0.98104799 -0.22074044 0.19394498 -0.95583969 -0.11236921 0.19226651 -0.97485274\n\t\t -0.17365029 -0.085818179 -0.98104799 -0.32087168 0.15353844 -0.93456829 -0.22074044\n\t\t 0.19394498 -0.95583969 -0.17365029 -0.085818179 -0.98104799 -0.39744258 0.077242158\n\t\t -0.91433454 -0.32087168 0.15353844 -0.93456829 -0.17365029 -0.085818179 -0.98104799\n\t\t -0.43891719 -0.023346862 -0.89819026 -0.39744258 0.077242158 -0.91433454 -0.17365029\n\t\t -0.085818179 -0.98104799 -0.43891716 -0.13296933 -0.88860744 -0.43891719 -0.023346862\n\t\t -0.89819026 -0.17365029 -0.085818179 -0.98104799 -0.39744249 -0.23484011 -0.88705099\n\t\t -0.43891716 -0.13296933 -0.88860744 -0.17365029 -0.085818179 -0.98104799 -0.32087153\n\t\t -0.31348628 -0.89370406 -0.39744249 -0.23484011 -0.88705099 -0.17365029 -0.085818179\n\t\t -0.98104799 -0.22074027 -0.35697514 -0.90762049 -0.32087153 -0.31348628 -0.89370406\n\t\t -0.17365029 -0.085818179 -0.98104799 -0.11243008 -0.3586536 -0.92666399 -0.22074027\n\t\t -0.35697514 -0.90762049 -0.17365029 -0.085818179 -0.98104799 -0.012329379 -0.31821656\n\t\t -0.94790488 -0.11243008 -0.3586536 -0.92666399 -0.17365029 -0.085818179 -0.98104799\n\t\t 0.064241536 -0.24192028 -0.96813869 -0.012329379 -0.31821656 -0.94790488 -0.17365029\n\t\t -0.085818179 -0.98104799 0.10571616 -0.14133126 -0.98428297 0.064241536 -0.24192028\n\t\t -0.96813869 -0.17365029 -0.085818179 -0.98104799 0.10571612 -0.031739291 -0.99386579\n\t\t 0.10571616 -0.14133126 -0.98428297 -0.17365029 -0.085818179 -0.98104799 0.064210922\n\t\t 0.070131481 -0.99545276 0.10571612 -0.031739291 -0.99386579 -0.17365029 -0.085818179\n\t\t -0.98104799 -0.012360042 0.14880818 -0.98876917;\n\tsetAttr \".n[29714:29879]\" -type \"float3\"  0.064210922 0.070131481 -0.99545276 -0.17365029\n\t\t -0.085818179 -0.98104799 -0.11236921 0.19226651 -0.97485274 -0.012360042 0.14880818\n\t\t -0.98876917 -0.32087168 0.15353844 -0.93456829 -0.39744258 0.077242158 -0.91433454\n\t\t -0.62123483 0.26276413 -0.73821223 -0.39744258 0.077242158 -0.91433454 -0.43891719\n\t\t -0.023346862 -0.89819026 -0.70754111 0.053285044 -0.70464188 -0.70754111 0.053285044\n\t\t -0.70464188 -0.62123483 0.26276413 -0.73821223 -0.39744258 0.077242158 -0.91433454\n\t\t -0.43891716 -0.13296933 -0.88860744 -0.39744249 -0.23484011 -0.88705099 -0.62123466\n\t\t -0.38694441 -0.68138677 -0.39744249 -0.23484011 -0.88705099 -0.32087153 -0.31348628\n\t\t -0.89370406 -0.46174487 -0.5507372 -0.69527262 -0.46174487 -0.5507372 -0.69527262\n\t\t -0.62123466 -0.38694441 -0.68138677 -0.39744249 -0.23484011 -0.88705099 -0.22074027\n\t\t -0.35697514 -0.90762049 -0.11243008 -0.3586536 -0.92666399 -0.027802164 -0.64473408\n\t\t -0.76387823 -0.11243008 -0.3586536 -0.92666399 -0.012329379 -0.31821656 -0.94790488\n\t\t 0.18054768 -0.56062502 -0.80813009 0.18054768 -0.56062502 -0.80813009 -0.027802164\n\t\t -0.64473408 -0.76387823 -0.11243008 -0.3586536 -0.92666399 0.064241536 -0.24192028\n\t\t -0.96813869 0.10571616 -0.14133126 -0.98428297 0.42640468 -0.19226654 -0.88384658\n\t\t 0.10571616 -0.14133126 -0.98428297 0.10571612 -0.031739291 -0.99386579 0.42637411\n\t\t 0.035828795 -0.90380567 0.42637411 0.035828795 -0.90380567 0.42640468 -0.19226654\n\t\t -0.88384658 0.10571616 -0.14133126 -0.98428297 0.064210922 0.070131481 -0.99545276\n\t\t -0.012360042 0.14880818 -0.98876917 0.18054737 0.41175574 -0.89321578 -0.012360042\n\t\t 0.14880818 -0.98876917 -0.11236921 0.19226651 -0.97485274 -0.027802518 0.50230408\n\t\t -0.86422318 -0.25339532 0.50578314 -0.82457966 -0.027802518 0.50230408 -0.86422318\n\t\t -0.11236921 0.19226651 -0.97485274 -0.11236921 0.19226651 -0.97485274 -0.22074044\n\t\t 0.19394498 -0.95583969 -0.25339532 0.50578314 -0.82457966 -0.46171466 0.42164353\n\t\t -0.78038889 -0.25339532 0.50578314 -0.82457966 -0.22074044 0.19394498 -0.95583969\n\t\t -0.22074044 0.19394498 -0.95583969 -0.32087168 0.15353844 -0.93456829 -0.46171466\n\t\t 0.42164353 -0.78038889 -0.62123483 0.26276413 -0.73821223 -0.46171466 0.42164353\n\t\t -0.78038889 -0.32087168 0.15353844 -0.93456829 -0.027802518 0.50230408 -0.86422318\n\t\t 0.18054737 0.41175574 -0.89321578 -0.012360042 0.14880818 -0.98876917 -0.027802518\n\t\t 0.50230408 -0.86422318 -0.25339532 0.50578314 -0.82457966 -0.2588582 0.64830458 -0.71599483\n\t\t -0.2588582 0.64830458 -0.71599483 -0.25339532 0.50578314 -0.82457966 -0.46171466\n\t\t 0.42164353 -0.78038889 -0.2588582 0.64830458 -0.71599483 0.018585572 0.64406258 -0.7647329\n\t\t -0.027802518 0.50230408 -0.86422318 -0.46171466 0.42164353 -0.78038889 -0.51515263\n\t\t 0.54478568 -0.66164136 -0.2588582 0.64830458 -0.71599483 -0.51515263 0.54478568 -0.66164136\n\t\t -0.46171466 0.42164353 -0.78038889 -0.62123483 0.26276413 -0.73821223 -0.62123483\n\t\t 0.26276413 -0.73821223 -0.7114476 0.34934512 -0.60969877 -0.51515263 0.54478568 -0.66164136\n\t\t -0.7114476 0.34934512 -0.60969877 -0.62123483 0.26276413 -0.73821223 -0.70754111\n\t\t 0.053285044 -0.70464188 -0.70754111 0.053285044 -0.70464188 -0.81759089 0.091677308\n\t\t -0.56843776 -0.7114476 0.34934512 -0.60969877 -0.81759089 0.091677308 -0.56843776\n\t\t -0.70754111 0.053285044 -0.70464188 -0.70754105 -0.17484081 -0.68468279 -0.70754105\n\t\t -0.17484081 -0.68468279 -0.70754111 0.053285044 -0.70464188 -0.43891719 -0.023346862\n\t\t -0.89819026 -0.43891719 -0.023346862 -0.89819026 -0.43891716 -0.13296933 -0.88860744\n\t\t -0.70754105 -0.17484081 -0.68468279 -0.62123466 -0.38694441 -0.68138677 -0.70754105\n\t\t -0.17484081 -0.68468279 -0.43891716 -0.13296933 -0.88860744 -0.70754105 -0.17484081\n\t\t -0.68468279 -0.81756032 -0.18897091 -0.54390085 -0.81759089 0.091677308 -0.56843776\n\t\t -0.81756032 -0.18897091 -0.54390085 -0.70754105 -0.17484081 -0.68468279 -0.62123466\n\t\t -0.38694441 -0.68138677 -0.62123466 -0.38694441 -0.68138677 -0.71138632 -0.44993463\n\t\t -0.53984183 -0.81756032 -0.18897091 -0.54390085 -0.71138632 -0.44993463 -0.53984183\n\t\t -0.62123466 -0.38694441 -0.68138677 -0.46174487 -0.5507372 -0.69527262 -0.46174487\n\t\t -0.5507372 -0.69527262 -0.51521331 -0.65141785 -0.55690169 -0.71138632 -0.44993463\n\t\t -0.53984183 -0.51521331 -0.65141785 -0.55690169 -0.46174487 -0.5507372 -0.69527262\n\t\t -0.25333393 -0.64128554 -0.7242347 -0.25333393 -0.64128554 -0.7242347 -0.46174487\n\t\t -0.5507372 -0.69527262 -0.32087153 -0.31348628 -0.89370406 -0.32087153 -0.31348628\n\t\t -0.89370406 -0.22074027 -0.35697514 -0.90762049 -0.25333393 -0.64128554 -0.7242347\n\t\t -0.027802164 -0.64473408 -0.76387823 -0.25333393 -0.64128554 -0.7242347 -0.22074027\n\t\t -0.35697514 -0.90762049 -0.25333393 -0.64128554 -0.7242347 -0.25882724 -0.76281029\n\t\t -0.59251678 -0.51521331 -0.65141785 -0.55690169 -0.25882724 -0.76281029 -0.59251678\n\t\t -0.25333393 -0.64128554 -0.7242347 -0.027802164 -0.64473408 -0.76387823 -0.027802164\n\t\t -0.64473408 -0.76387823 0.018586008 -0.76702178 -0.64131588 -0.25882724 -0.76281029\n\t\t -0.59251678 0.018586008 -0.76702178 -0.64131588 -0.027802164 -0.64473408 -0.76387823\n\t\t 0.18054768 -0.56062502 -0.80813009 0.18054768 -0.56062502 -0.80813009 0.27497199\n\t\t -0.66356397 -0.69569987 0.018586008 -0.76702178 -0.64131588 0.27497199 -0.66356397\n\t\t -0.69569987 0.18054768 -0.56062502 -0.80813009 0.34009838 -0.40174559 -0.85021508\n\t\t 0.34009838 -0.40174559 -0.85021508 0.18054768 -0.56062502 -0.80813009 -0.012329379\n\t\t -0.31821656 -0.94790488 -0.012329379 -0.31821656 -0.94790488 0.064241536 -0.24192028\n\t\t -0.96813869 0.34009838 -0.40174559 -0.85021508 0.42640468 -0.19226654 -0.88384658\n\t\t 0.34009838 -0.40174559 -0.85021508 0.064241536 -0.24192028 -0.96813869 0.34009838\n\t\t -0.40174559 -0.85021508 0.47123647 -0.46812332 -0.74748981 0.27497199 -0.66356397\n\t\t -0.69569987 0.47123647 -0.46812332 -0.74748981 0.34009838 -0.40174559 -0.85021508\n\t\t 0.42640468 -0.19226654 -0.88384658 0.42640468 -0.19226654 -0.88384658 0.57734925\n\t\t -0.21045552 -0.78887296 0.47123647 -0.46812332 -0.74748981 0.57734925 -0.21045552\n\t\t -0.78887296 0.42640468 -0.19226654 -0.88384658 0.42637411 0.035828795 -0.90380567;\n\tsetAttr \".n[29880:30045]\" -type \"float3\"  0.42637411 0.035828795 -0.90380567 0.57734919\n\t\t 0.070223212 -0.81344032 0.57734925 -0.21045552 -0.78887296 0.57734919 0.070223212\n\t\t -0.81344032 0.42637411 0.035828795 -0.90380567 0.34006765 0.24799344 -0.90710163\n\t\t 0.34006765 0.24799344 -0.90710163 0.42637411 0.035828795 -0.90380567 0.10571612 -0.031739291\n\t\t -0.99386579 0.10571612 -0.031739291 -0.99386579 0.064210922 0.070131481 -0.99545276\n\t\t 0.34006765 0.24799344 -0.90710163 0.18054737 0.41175574 -0.89321578 0.34006765 0.24799344\n\t\t -0.90710163 0.064210922 0.070131481 -0.99545276 0.34006765 0.24799344 -0.90710163\n\t\t 0.47114465 0.33118695 -0.81749934 0.57734919 0.070223212 -0.81344032 0.47114465 0.33118695\n\t\t -0.81749934 0.34006765 0.24799344 -0.90710163 0.18054737 0.41175574 -0.89321578 0.18054737\n\t\t 0.41175574 -0.89321578 0.27494109 0.53263956 -0.80040902 0.47114465 0.33118695 -0.81749934\n\t\t 0.27494109 0.53263956 -0.80040902 0.18054737 0.41175574 -0.89321578 -0.027802518\n\t\t 0.50230408 -0.86422318 -0.027802518 0.50230408 -0.86422318 0.018585572 0.64406258\n\t\t -0.7647329 0.27494109 0.53263956 -0.80040902 -0.59480578 -1.240978e-07 0.80385756\n\t\t -0.59483629 -1.241095e-07 0.80382705 -0.59480578 -1.2410007e-07 0.80382705 -0.59480578\n\t\t -1.2410007e-07 0.80382705 -0.59480578 -1.240978e-07 0.80385756 -0.59480578 -1.240978e-07\n\t\t 0.80385756 -0.59480578 -1.2410007e-07 0.80382705 -0.59483629 -1.241095e-07 0.80382705\n\t\t -0.59486681 -1.2412121e-07 0.80379653 -0.59486681 -1.2412121e-07 0.80379653 -0.59483629\n\t\t -1.241095e-07 0.80382705 -0.59483629 -1.241095e-07 0.80382705 -0.59483629 -1.241095e-07\n\t\t 0.80382705 -0.59483629 -1.241095e-07 0.80382705 -0.59486681 -1.2412121e-07 0.80379653\n\t\t -0.59486681 -1.2412121e-07 0.80379653 -0.59483629 -1.241095e-07 0.80382705 -0.59483629\n\t\t -1.241095e-07 0.80382705 -0.59483629 -1.241095e-07 0.80382705 -0.59483629 -1.241095e-07\n\t\t 0.80382705 -0.59486681 -1.2412121e-07 0.80379653 -0.59480578 -1.2410007e-07 0.80382705\n\t\t -0.59483629 -1.241095e-07 0.80382705 -0.59483629 -1.241095e-07 0.80382705 -0.59483629\n\t\t -1.241095e-07 0.80382705 -0.59480578 -1.2410007e-07 0.80382705 -0.59480578 -1.2410007e-07\n\t\t 0.80382705 -0.59486681 -1.2412121e-07 0.80379653 -0.59486681 -1.2412121e-07 0.80379653\n\t\t -0.59486681 -1.2412121e-07 0.80379653 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132244e-14\n\t\t 7.4415176e-08 0.99996948 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132244e-14 7.4415176e-08\n\t\t 0.99996948 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132244e-14 7.4415176e-08 0.99996948\n\t\t -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948\n\t\t -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132244e-14 7.4415176e-08 0.99996948 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948 -0.59480578 -1.240978e-07\n\t\t 0.80385756 -0.59480578 -1.2410007e-07 0.80382705 -0.59480578 -1.2410007e-07 0.80382705\n\t\t -0.59480578 -1.240978e-07 0.80385756 -0.59480578 -1.2410007e-07 0.80382705 -0.59480578\n\t\t -1.2410007e-07 0.80382705 -0.59480578 -1.2410007e-07 0.80382705 -0.59483629 -1.241095e-07\n\t\t 0.80382705 -0.59480578 -1.240978e-07 0.80385756 -0.59480578 -1.240978e-07 0.80385756\n\t\t -0.59480578 -1.240978e-07 0.80385756 -0.59483629 -1.241095e-07 0.80382705 -0.59483629\n\t\t -1.241095e-07 0.80382705 -0.59483629 -1.241095e-07 0.80382705 -0.59480578 -1.240978e-07\n\t\t 0.80385756 -0.59480578 -1.240978e-07 0.80385756 -0.59480578 -1.240978e-07 0.80385756\n\t\t -0.59483629 -1.241095e-07 0.80382705 -0.59480578 -1.2410007e-07 0.80382705 -0.59480578\n\t\t -1.240978e-07 0.80385756 -0.59480578 -1.240978e-07 0.80385756 -0.59483629 -1.241095e-07\n\t\t 0.80382705 -0.59480578 -1.240978e-07 0.80385756 -0.59480578 -1.240978e-07 0.80385756\n\t\t -0.59480578 -1.2410007e-07 0.80382705 -0.59480578 -1.2410007e-07 0.80382705 -0.59480578\n\t\t -1.2410007e-07 0.80382705 -0.59480578 -1.2410007e-07 0.80382705 -0.59480578 -1.2410007e-07\n\t\t 0.80382705 -0.59480578 -1.2410007e-07 0.80382705 0.80385756 2.928233e-07 0.59480578\n\t\t 0.80385756 2.928233e-07 0.59480578 0.80385756 2.928233e-07 0.59480578 0.80385756\n\t\t 2.928233e-07 0.59480578 0.80385756 2.928233e-07 0.59480578 0.80385756 2.928233e-07\n\t\t 0.59480578 0.15250069 0.98181105 0.11282685 0.15250069 0.98181105 0.11276582 0.15250069\n\t\t 0.98181105 0.11279634 0.15250069 0.98181105 0.11279634 0.15250069 0.98181105 0.11282685\n\t\t 0.15250069 0.98181105 0.11282685 -0.80385756 -2.928233e-07 -0.59480578 -0.80385756\n\t\t -2.928233e-07 -0.59480578 -0.80385756 -2.928233e-07 -0.59480578 -0.80385756 -2.928233e-07\n\t\t -0.59480578 -0.80385756 -2.928233e-07 -0.59480578 -0.80385756 -2.928233e-07 -0.59480578\n\t\t -0.15250069 -0.98181105 -0.11282685 -0.15250069 -0.98181105 -0.11282685 -0.15250069\n\t\t -0.98181105 -0.11282685 -0.15250069 -0.98181105 -0.11282685 -0.15250069 -0.98181105\n\t\t -0.11282685 -0.15250069 -0.98181105 -0.11282685 0.59480578 2.4373759e-07 0.80382705\n\t\t 0.59480578 2.4373759e-07 0.80382705 0.59480578 2.4373759e-07 0.80382705 0.59480578\n\t\t 2.4373759e-07 0.80382705 0.59483629 2.4374702e-07 0.80382705 0.59480578 2.4373759e-07\n\t\t 0.80382705 0.59483629 2.4374475e-07 0.80379653 0.59483629 2.4374702e-07 0.80382705\n\t\t 0.59480578 2.4373759e-07 0.80382705 0.59483629 2.4374702e-07 0.80382705 0.59483629\n\t\t 2.4374702e-07 0.80382705 0.59483629 2.4374475e-07 0.80379653 0.59483629 2.4374475e-07\n\t\t 0.80379653 0.59483629 2.4374702e-07 0.80382705 0.59483629 2.4374702e-07 0.80382705\n\t\t 0.59483629 2.4374702e-07 0.80382705 0.59483629 2.4374702e-07 0.80382705 0.59486681\n\t\t 2.4375419e-07 0.80379653 0.59486681 2.4375419e-07 0.80379653 0.59483629 2.4374702e-07\n\t\t 0.80382705 0.59483629 2.4374702e-07 0.80382705 0.59483629 2.4374702e-07 0.80382705\n\t\t 0.59483629 2.4374702e-07 0.80382705 0.59480578 2.4373759e-07 0.80382705 0.59480578\n\t\t 2.4373759e-07 0.80382705 0.59480578 2.4373986e-07 0.80385756 0.59483629 2.4374702e-07\n\t\t 0.80382705 0.59486681 2.4375419e-07 0.80379653 0.59486681 2.4375419e-07 0.80379653\n\t\t 0.59486681 2.4375419e-07 0.80379653 0.59480578 2.4373986e-07 0.80385756 0.59480578\n\t\t 2.4373986e-07 0.80385756 0.59480578 2.4373759e-07 0.80382705 0.59480578 2.4373759e-07\n\t\t 0.80382705;\n\tsetAttr \".n[30046:30211]\" -type \"float3\"  0.59480578 2.4373986e-07 0.80385756 0.59480578\n\t\t 2.4373986e-07 0.80385756 0.59480578 2.4373986e-07 0.80385756 0.59480578 2.4373759e-07\n\t\t 0.80382705 0.59483629 2.4374702e-07 0.80382705 0.59480578 2.4373986e-07 0.80385756\n\t\t 0.59483629 2.4374702e-07 0.80382705 0.59480578 2.4373986e-07 0.80385756 0.59480578\n\t\t 2.4373986e-07 0.80385756 0.59480578 2.4373986e-07 0.80385756 0.59480578 2.4373986e-07\n\t\t 0.80385756 0.59480578 2.4373986e-07 0.80385756 0.59483629 2.4374702e-07 0.80382705\n\t\t 0.59483629 2.4374702e-07 0.80382705 0.59483629 2.4374702e-07 0.80382705 0.59480578\n\t\t 2.4373986e-07 0.80385756 0.59480578 2.4373986e-07 0.80385756 0.59483629 2.4374702e-07\n\t\t 0.80382705 0.59480578 2.4373986e-07 0.80385756 0.59480578 2.4373986e-07 0.80385756\n\t\t 0.59480578 2.4373759e-07 0.80382705 0.59480578 2.4373759e-07 0.80382705 0.59480578\n\t\t 2.4373759e-07 0.80382705 0.59480578 2.4373759e-07 0.80382705 0.59480578 2.4373759e-07\n\t\t 0.80382705 0.59480578 2.4373759e-07 0.80382705 -0.80385756 -2.0429543e-07 0.59480578\n\t\t -0.80385756 -2.0429543e-07 0.59480578 -0.80385756 -2.0429543e-07 0.59480578 -0.80385756\n\t\t -2.0429543e-07 0.59480578 -0.80385756 -2.0429543e-07 0.59480578 -0.80385756 -2.0429543e-07\n\t\t 0.59480578 -0.15250129 0.98181093 0.11282685 -0.15250129 0.98181093 0.11282685 -0.15250129\n\t\t 0.98181093 0.11279634 -0.15250129 0.98181093 0.11279634 -0.1525318 0.98181093 0.11276582\n\t\t -0.15250129 0.98181093 0.11282685 0.80382705 2.04286e-07 -0.59480578 0.80382705 2.04286e-07\n\t\t -0.59480578 0.80382705 2.04286e-07 -0.59480578 0.80382705 2.04286e-07 -0.59480578\n\t\t 0.80382705 2.04286e-07 -0.59480578 0.80382705 2.04286e-07 -0.59480578 0.15250129\n\t\t -0.98181093 -0.11282685 0.15250129 -0.98181093 -0.11282685 0.15250129 -0.98181093\n\t\t -0.11282685 0.15250129 -0.98181093 -0.11282685 0.15250129 -0.98181093 -0.11282685\n\t\t 0.15250129 -0.98181093 -0.11282685 0.40385151 -0.18713944 -0.89544356 0.37626275\n\t\t -0.16046628 -0.9124729 0.37247846 -0.16367072 -0.91348004 0.37247846 -0.16367072\n\t\t -0.91348004 0.38715786 -0.15298924 -0.90920746 0.40385151 -0.18713944 -0.89544356\n\t\t 0.42518392 -0.18738358 -0.88546401 0.37626275 -0.16046628 -0.9124729 0.40385151 -0.18713944\n\t\t -0.89544356 0.40385151 -0.18713944 -0.89544356 0.44013801 -0.19058801 -0.87743765\n\t\t 0.42518392 -0.18738358 -0.88546401 0.43082985 -0.16895039 -0.88644063 0.42518392\n\t\t -0.18738358 -0.88546401 0.44013801 -0.19058801 -0.87743765 0.44013801 -0.19058801\n\t\t -0.87743765 0.42558068 -0.16660047 -0.88943142 0.43082985 -0.16895039 -0.88644063\n\t\t 0.41972113 -0.17676313 -0.89025545 0.43082985 -0.16895039 -0.88644063 0.42558068\n\t\t -0.16660047 -0.88943142 0.42558068 -0.16660047 -0.88943142 0.41145059 -0.17502357\n\t\t -0.89443648 0.41972113 -0.17676313 -0.89025545 0.40159312 -0.17096463 -0.89968568\n\t\t 0.41972113 -0.17676313 -0.89025545 0.41145059 -0.17502357 -0.89443648 0.41145059\n\t\t -0.17502357 -0.89443648 0.39634395 -0.1516159 -0.9054842 0.40159312 -0.17096463 -0.89968568\n\t\t 0.38743252 -0.14142273 -0.91097748 0.40159312 -0.17096463 -0.89968568 0.39634395\n\t\t -0.1516159 -0.9054842 0.39634395 -0.1516159 -0.9054842 0.38282421 -0.12363043 -0.91549426\n\t\t 0.38743252 -0.14142273 -0.91097748 0.37479785 -0.11865591 -0.91946167 0.38743252\n\t\t -0.14142273 -0.91097748 0.38282421 -0.12363043 -0.91549426 0.38282421 -0.12363043\n\t\t -0.91549426 0.39768672 -0.094454728 -0.91262549 0.37479785 -0.11865591 -0.91946167\n\t\t 0.45970035 -0.14038506 -0.87688833 0.38715786 -0.15298924 -0.90920746 0.37247846\n\t\t -0.16367072 -0.91348004 0.37247846 -0.16367072 -0.91348004 0.38627285 -0.2040467\n\t\t -0.89950258 0.45970035 -0.14038506 -0.87688833 0.48710597 -0.12970358 -0.86364329\n\t\t 0.45970035 -0.14038506 -0.87688833 0.38627285 -0.2040467 -0.89950258 0.48710597 -0.12970358\n\t\t -0.86364329 0.48341322 -0.12771988 -0.8659932 0.45970035 -0.14038506 -0.87688833\n\t\t 0.48710597 -0.12970358 -0.86364329 0.38627285 -0.2040467 -0.89950258 0.49217203 -0.13647869\n\t\t -0.8597064 0.48710597 -0.12970358 -0.86364329 0.49217203 -0.13647869 -0.8597064 0.49333173\n\t\t -0.08160641 -0.86596268 0.49333173 -0.08160641 -0.86596268 0.37479785 -0.11865591\n\t\t -0.91946167 0.39768672 -0.094454728 -0.91262549 0.48710597 -0.12970358 -0.86364329\n\t\t 0.49333173 -0.08160641 -0.86596268 0.46504107 -0.0771202 -0.8818934 0.39768672 -0.094454728\n\t\t -0.91262549 0.43583485 -0.081881091 -0.89626759 0.49333173 -0.08160641 -0.86596268\n\t\t 0.49333173 -0.08160641 -0.86596268 0.43583485 -0.081881091 -0.89626759 0.46504107\n\t\t -0.0771202 -0.8818934 0.37958893 0.92330712 0.058381841 0.26709771 0.95681638 0.11450537\n\t\t 0.29886749 0.91500604 0.27094325 0.29886749 0.91500604 0.27094325 0.4177371 0.88329732\n\t\t 0.21268344 0.37958893 0.92330712 0.058381841 0.17627461 0.95852542 -0.22391438 0.37958893\n\t\t 0.92330712 0.058381841 0.4177371 0.88329732 0.21268344 0.4177371 0.88329732 0.21268344\n\t\t 0.26721978 0.96160775 -0.062196795 0.17627461 0.95852542 -0.22391438 0.29886749 0.91500604\n\t\t 0.27094325 0.26709771 0.95681638 0.11450537 0.091494188 0.98663288 0.13470863 0.091494188\n\t\t 0.98663288 0.13470863 0.14990664 0.93322557 0.32645643 0.29886749 0.91500604 0.27094325\n\t\t -0.081393115 0.81493568 -0.57377857 -0.047792256 0.87105924 -0.48878449 -0.058534786\n\t\t 0.9155553 -0.39783934 -0.058534786 0.9155553 -0.39783934 -0.12143341 0.85546422 -0.50337237\n\t\t -0.081393115 0.81493568 -0.57377857 -0.12338655 0.71739846 -0.68562889 -0.081393115\n\t\t 0.81493568 -0.57377857 -0.12143341 0.85546422 -0.50337237 -0.12143341 0.85546422\n\t\t -0.50337237 -0.24796312 0.72713387 -0.64012581 -0.12338655 0.71739846 -0.68562889\n\t\t -0.1204263 0.8567155 -0.50148022 -0.033936866 0.91146576 -0.40992469 0.17627461 0.95852542\n\t\t -0.22391438 -0.1204263 0.8567155 -0.50148022 -0.12143341 0.85546422 -0.50337237 -0.058534786\n\t\t 0.9155553 -0.39783934 -0.058534786 0.9155553 -0.39783934 -0.033936866 0.91146576\n\t\t -0.40992469 -0.1204263 0.8567155 -0.50148022 0.17627461 0.95852542 -0.22391438 -0.096133582\n\t\t 0.89925832 -0.42667934 -0.1204263 0.8567155 -0.50148022 -0.1204263 0.8567155 -0.50148022\n\t\t -0.096133582 0.89925832 -0.42667934;\n\tsetAttr \".n[30212:30377]\" -type \"float3\"  -0.19223636 0.86400938 -0.46528524 -0.19791281\n\t\t 0.89434481 -0.40113536 -0.19223636 0.86400938 -0.46528524 -0.096133582 0.89925832\n\t\t -0.42667934 -0.096133582 0.89925832 -0.42667934 -0.1098364 0.92220825 -0.37070841\n\t\t -0.19791281 0.89434481 -0.40113536 -0.1098364 0.92220825 -0.37070841 -0.096133582\n\t\t 0.89925832 -0.42667934 0.17627461 0.95852542 -0.22391438 -0.19791281 0.89434481 -0.40113536\n\t\t -0.1098364 0.92220825 -0.37070841 -0.074801154 0.94860685 -0.30738249 -0.074801154\n\t\t 0.94860685 -0.30738249 -0.20615281 0.91616559 -0.34369951 -0.19791281 0.89434481\n\t\t -0.40113536 -0.20615281 0.91616559 -0.34369951 -0.074801154 0.94860685 -0.30738249\n\t\t -0.055147257 0.99591053 -0.071352348 0.032166205 0.99060029 -0.13287766 -0.055147257\n\t\t 0.99591053 -0.071352348 -0.074801154 0.94860685 -0.30738249 -0.074801154 0.94860685\n\t\t -0.30738249 0.11053775 0.96545309 -0.23590815 0.032166205 0.99060029 -0.13287766\n\t\t 0.11053775 0.96545309 -0.23590815 -0.074801154 0.94860685 -0.30738249 -0.1098364\n\t\t 0.92220825 -0.37070841 -0.055147257 0.99591053 -0.071352348 -0.31708762 0.93780315\n\t\t -0.14114818 -0.20615281 0.91616559 -0.34369951 -0.1098364 0.92220825 -0.37070841\n\t\t 0.15402661 0.95947146 -0.23584712 0.11053775 0.96545309 -0.23590815 0.11053775 0.96545309\n\t\t -0.23590815 0.15402661 0.95947146 -0.23584712 0.25547016 0.9590137 -0.12250137 0.25547016\n\t\t 0.9590137 -0.12250137 0.44999516 0.8911711 -0.057130717 0.11053775 0.96545309 -0.23590815\n\t\t 0.032166205 0.99060029 -0.13287766 0.11053775 0.96545309 -0.23590815 0.44999516 0.8911711\n\t\t -0.057130717 0.44999516 0.8911711 -0.057130717 0.54542655 0.83214837 -0.09988714\n\t\t 0.032166205 0.99060029 -0.13287766 0.8730734 0.47529554 -0.10852386 0.79049027 0.58980095\n\t\t -0.16501363 0.76454949 0.61897665 -0.17963199 0.3183383 0.91259509 -0.25647762 0.56627071\n\t\t 0.78716409 -0.24430072 0.40766597 0.84920818 -0.3355816 0.48692259 0.78994125 -0.37263107\n\t\t 0.40766597 0.84920818 -0.3355816 0.56627071 0.78716409 -0.24430072 0.56627071 0.78716409\n\t\t -0.24430072 0.52323961 0.77996171 -0.34327227 0.48692259 0.78994125 -0.37263107 0.17627461\n\t\t 0.95852542 -0.22391438 0.15402661 0.95947146 -0.23584712 -0.1098364 0.92220825 -0.37070841\n\t\t 0.34012851 0.83553582 -0.43140972 0.48692259 0.78994125 -0.37263107 0.52323961 0.77996171\n\t\t -0.34327227 0.52323961 0.77996171 -0.34327227 0.38007724 0.82528162 -0.41764587 0.34012851\n\t\t 0.83553582 -0.43140972 0.34348559 0.79631954 -0.49781799 0.34012851 0.83553582 -0.43140972\n\t\t 0.38007724 0.82528162 -0.41764587 0.38007724 0.82528162 -0.41764587 0.40040261 0.78218943\n\t\t -0.47727904 0.34348559 0.79631954 -0.49781799 0.34348559 0.79631954 -0.49781799 0.40040261\n\t\t 0.78218943 -0.47727904 0.76061267 0.45030081 -0.46757412 0.15402661 0.95947146 -0.23584712\n\t\t 0.17627461 0.95852542 -0.22391438 0.26721978 0.96160775 -0.062196795 0.26721978 0.96160775\n\t\t -0.062196795 0.25547016 0.9590137 -0.12250137 0.15402661 0.95947146 -0.23584712 -0.49644482\n\t\t 0.78160936 -0.3776361 -0.20615281 0.91616559 -0.34369951 -0.31708762 0.93780315 -0.14114818\n\t\t -0.31708762 0.93780315 -0.14114818 -0.71898574 0.64738888 -0.25278488 -0.49644482\n\t\t 0.78160936 -0.3776361 -0.71962661 0.54240519 -0.43342391 -0.49644482 0.78160936 -0.3776361\n\t\t -0.71898574 0.64738888 -0.25278488 -0.71898574 0.64738888 -0.25278488 -0.85647154\n\t\t 0.45985261 -0.23447374 -0.71962661 0.54240519 -0.43342391 -0.49644482 0.78160936\n\t\t -0.3776361 -0.71962661 0.54240519 -0.43342391 -0.7264933 0.52986205 -0.43748286 -0.49644482\n\t\t 0.78160936 -0.3776361 -0.25470775 0.88506722 -0.38953832 -0.20615281 0.91616559 -0.34369951\n\t\t -0.25470775 0.88506722 -0.38953832 -0.19791281 0.89434481 -0.40113536 -0.20615281\n\t\t 0.91616559 -0.34369951 -0.19791281 0.89434481 -0.40113536 -0.25470775 0.88506722\n\t\t -0.38953832 -0.20572554 0.86599308 -0.45570245 -0.20572554 0.86599308 -0.45570245\n\t\t -0.19223636 0.86400938 -0.46528524 -0.19791281 0.89434481 -0.40113536 -0.19223636\n\t\t 0.86400938 -0.46528524 -0.20572554 0.86599308 -0.45570245 -0.29053646 0.75408167\n\t\t -0.58900732 -0.29053646 0.75408167 -0.58900732 -0.27628431 0.7571336 -0.59193707\n\t\t -0.19223636 0.86400938 -0.46528524 -0.19223636 0.86400938 -0.46528524 -0.27628431\n\t\t 0.7571336 -0.59193707 -0.1204263 0.8567155 -0.50148022 -0.12143341 0.85546422 -0.50337237\n\t\t -0.1204263 0.8567155 -0.50148022 -0.27628431 0.7571336 -0.59193707 -0.27628431 0.7571336\n\t\t -0.59193707 -0.24796312 0.72713387 -0.64012581 -0.12143341 0.85546422 -0.50337237\n\t\t -0.2580342 0.71996206 -0.64421529 -0.24796312 0.72713387 -0.64012581 -0.27628431\n\t\t 0.7571336 -0.59193707 -0.27628431 0.7571336 -0.59193707 -0.29053646 0.75408167 -0.58900732\n\t\t -0.2580342 0.71996206 -0.64421529 -0.24796312 0.72713387 -0.64012581 -0.2580342 0.71996206\n\t\t -0.64421529 -0.13257264 0.70839554 -0.69319749 0.15173835 -0.98837239 -0.0086977016\n\t\t 3.0917991e-07 -0.99990845 -0.011108663 0.0036625303 -0.99996948 -0.0055542942 0.15173835\n\t\t -0.98837239 -0.0086977016 0.0036625303 -0.99996948 -0.0055542942 0.037141334 -0.99926758\n\t\t 0.0073855538 0.15173835 -0.98837239 -0.0086977016 0.037141334 -0.99926758 0.0073855538\n\t\t 0.13180976 -0.99102747 0.021393549 3.0920822e-07 -1 0.00033577802 0.037141334 -0.99926758\n\t\t 0.0073855538 0.0036625303 -0.99996948 -0.0055542942 0.037141334 -0.99926758 0.0073855538\n\t\t 3.0920822e-07 -1 0.00033577802 3.0920822e-07 -1 0.00012214846 3.0920822e-07 -1 0.00012214846\n\t\t 3.0920822e-07 -1 0.00012214846 3.0920822e-07 -1 0.00033577802 3.0920822e-07 -1 0.00033577802\n\t\t 3.0920822e-07 -1 0.00033577802 3.0920822e-07 -1 0.00012214846 3.0920822e-07 -1 0.00012214846\n\t\t 3.0920822e-07 -1 0.00033577802 3.0919878e-07 -0.99996948 0.00033577802 3.0919878e-07\n\t\t -0.99996948 0.00033577802 3.0920822e-07 -1 9.1629947e-05 3.0920822e-07 -1 0.00012214846\n\t\t 3.0920822e-07 -1 0.00033577802 3.0920822e-07 -1 0.00033577802 3.0919878e-07 -0.99996948\n\t\t 0.00039681504 0.0036625303 -0.99996948 -0.0055542942 3.0919878e-07 -0.99996948 0.00039681504\n\t\t 3.0920822e-07 -1 0.00033577802;\n\tsetAttr \".n[30378:30543]\" -type \"float3\"  3.0919878e-07 -0.99996948 0.00039681504\n\t\t 3.0919878e-07 -0.99996948 0.00039681504 3.0920822e-07 -1 0.00033577802 3.0919878e-07\n\t\t -0.99996948 0.00033577802 3.0920822e-07 -1 0.00033577802 3.0919878e-07 -0.99996948\n\t\t 0.00039681504 3.0919878e-07 -0.99996948 0.00039681504 3.0919878e-07 -0.99996948 0.00039681504\n\t\t 3.0919878e-07 -0.99996948 0.00033577802 3.0920822e-07 -1 0.00012214846 3.0920822e-07\n\t\t -1 0.00012214846 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07\n\t\t -1 7.441745e-08 3.0920822e-07 -1 0.00012214846 3.0920822e-07 -1 7.441745e-08 3.0920822e-07\n\t\t -1 7.441745e-08 3.0920822e-07 -1 0.00012214846 3.0920822e-07 -1 0.00012214846 3.0920822e-07\n\t\t -1 9.1629947e-05 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 0.00012214846 -3.020931e-05\n\t\t -0.99996948 0.00012214846 0.037141334 -0.99926758 0.0073855538 -3.020931e-05 -0.99996948\n\t\t 0.00012214846 3.0920822e-07 -1 0.00012214846 3.0920822e-07 -1 7.441745e-08 3.0920822e-07\n\t\t -1 7.441745e-08 3.0919878e-07 -0.99996948 7.4415176e-08 -3.020931e-05 -0.99996948\n\t\t 0.00012214846 -3.020931e-05 -0.99996948 0.00012214846 3.0919878e-07 -0.99996948 7.4415176e-08\n\t\t 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 0.11578753 -0.99325538\n\t\t 0.00042733306 -3.020931e-05 -0.99996948 0.00012214846 0.11578753 -0.99325538 0.00042733306\n\t\t 0.037141334 -0.99926758 0.0073855538 -3.020931e-05 -0.99996948 0.00012214846 0.11578753\n\t\t -0.99325538 0.00042733306 0.13180976 -0.99102747 0.021393549 0.037141334 -0.99926758\n\t\t 0.0073855538 0.35660908 -0.93380523 -0.028260071 0.15173835 -0.98837239 -0.0086977016\n\t\t 0.13180976 -0.99102747 0.021393549 0.13180976 -0.99102747 0.021393549 0.11578753\n\t\t -0.99325538 0.00042733306 0.35660908 -0.93380523 -0.028260071 0.8690452 -0.48026952\n\t\t -0.11850333 0.9032259 -0.40894777 -0.1299783 0.85131395 -0.4051635 -0.33323157 0.85131395\n\t\t -0.4051635 -0.33323157 0.87600338 -0.46150064 -0.13998838 0.8690452 -0.48026952 -0.11850333\n\t\t 0.90893286 -0.38474658 -0.16043578 0.87600338 -0.46150064 -0.13998838 0.85131395\n\t\t -0.4051635 -0.33323157 0.85131395 -0.4051635 -0.33323157 0.84450829 -0.37089121 -0.38627276\n\t\t 0.90893286 -0.38474658 -0.16043578 0.91280872 -0.37754422 -0.15555282 0.90893286\n\t\t -0.38474658 -0.16043578 0.84450829 -0.37089121 -0.38627276 0.84450829 -0.37089121\n\t\t -0.38627276 0.89791572 -0.41941559 -0.13336585 0.91280872 -0.37754422 -0.15555282\n\t\t 0.95678574 0.27271369 -0.1007111 0.95684677 0.27390391 -0.096865773 0.96337771 0.23175785\n\t\t -0.13470872 0.96337771 0.23175785 -0.13470872 0.96606338 0.22238865 -0.13126013 0.95678574\n\t\t 0.27271369 -0.1007111 0.97177035 0.16342691 -0.16998811 0.96606338 0.22238865 -0.13126013\n\t\t 0.96337771 0.23175785 -0.13470872 0.96337771 0.23175785 -0.13470872 0.96975607 0.1682183\n\t\t -0.17676322 0.97177035 0.16342691 -0.16998811 0.96841329 0.11304084 -0.22217476 0.97177035\n\t\t 0.16342691 -0.16998811 0.96975607 0.1682183 -0.17676322 0.96975607 0.1682183 -0.17676322\n\t\t 0.96673477 0.11456677 -0.22861417 0.96841329 0.11304084 -0.22217476 0.94964451 -0.12768917\n\t\t -0.28608051 0.96841329 0.11304084 -0.22217476 0.96673477 0.11456677 -0.22861417 0.96673477\n\t\t 0.11456677 -0.22861417 0.95284891 -0.087160587 -0.29062778 0.94964451 -0.12768917\n\t\t -0.28608051 0.55342239 0.73284113 -0.3957946 0.55500937 0.72951466 -0.39963993 0.59483606\n\t\t 0.72878218 -0.33912173 0.59483606 0.72878218 -0.33912173 0.57948524 0.740013 -0.34138012\n\t\t 0.55342239 0.73284113 -0.3957946 0.57948524 0.740013 -0.34138012 0.59483606 0.72878218\n\t\t -0.33912173 0.6337471 0.70546603 -0.31717893 0.6337471 0.70546603 -0.31717893 0.63359451\n\t\t 0.70589328 -0.31650752 0.57948524 0.740013 -0.34138012 0.86959451 -0.41465476 -0.26795247\n\t\t 0.86944193 -0.4152346 -0.26761678 0.85210741 -0.44099224 -0.28174683 0.85210741 -0.44099224\n\t\t -0.28174683 0.85201585 -0.44083962 -0.2823267 0.86959451 -0.41465476 -0.26795247\n\t\t 0.90099806 -0.341685 -0.26722005 0.86944193 -0.4152346 -0.26761678 0.86959451 -0.41465476\n\t\t -0.26795247 0.86959451 -0.41465476 -0.26795247 0.89651185 -0.35352618 -0.26691484\n\t\t 0.90099806 -0.341685 -0.26722005 0.90099806 -0.341685 -0.26722005 0.89651185 -0.35352618\n\t\t -0.26691484 0.94964451 -0.12768917 -0.28608051 0.94964451 -0.12768917 -0.28608051\n\t\t 0.95284891 -0.087160587 -0.29062778 0.90099806 -0.341685 -0.26722005 0.95358121 0.28992614\n\t\t 0.081026621 0.95480204 0.28125888 0.096102767 0.96124142 0.25269356 0.10998867 0.96124142\n\t\t 0.25269356 0.10998867 0.96197391 0.25611162 0.094759949 0.95358121 0.28992614 0.081026621\n\t\t 0.9542222 0.24878721 0.16586809 0.96124142 0.25269356 0.10998867 0.95480204 0.28125888\n\t\t 0.096102767 0.95480204 0.28125888 0.096102767 0.94848472 0.27341563 0.1599475 0.9542222\n\t\t 0.24878721 0.16586809 0.96124142 0.25269356 0.10998867 0.9542222 0.24878721 0.16586809\n\t\t 0.96667373 0.17706871 0.18478955 0.96667373 0.17706871 0.18478955 0.97442544 0.18219581\n\t\t 0.13141268 0.96124142 0.25269356 0.10998867 0.97509682 0.18655996 0.11969358 0.96197391\n\t\t 0.25611162 0.094759949 0.96124142 0.25269356 0.10998867 0.96124142 0.25269356 0.10998867\n\t\t 0.97442544 0.18219581 0.13141268 0.97509682 0.18655996 0.11969358 0.9542222 0.24878721\n\t\t 0.16586809 0.94848472 0.27341563 0.1599475 0.92199457 0.30494127 0.23853263 0.92199457\n\t\t 0.30494127 0.23853263 0.93044823 0.27933624 0.23700672 0.9542222 0.24878721 0.16586809\n\t\t 0.93044823 0.27933624 0.23700672 0.92199457 0.30494127 0.23853263 0.78673649 0.57741046\n\t\t 0.21814626 0.78673649 0.57741046 0.21814626 0.89117086 0.33936614 0.30100402 0.93044823\n\t\t 0.27933624 0.23700672 0.89117086 0.33936614 0.30100402 0.78673649 0.57741046 0.21814626\n\t\t 0.73412257 0.59691179 0.32358772 0.73412257 0.59691179 0.32358772 0.81142598 0.4267711\n\t\t 0.39924312 0.89117086 0.33936614 0.30100402 0.68523192 0.49620068 0.53309727 0.81142598\n\t\t 0.4267711 0.39924312 0.73412257 0.59691179 0.32358772 0.73412257 0.59691179 0.32358772;\n\tsetAttr \".n[30544:30709]\" -type \"float3\"  0.60423577 0.65788776 0.44947654 0.68523192\n\t\t 0.49620068 0.53309727 0.5753653 0.51582408 0.63469338 0.68523192 0.49620068 0.53309727\n\t\t 0.60423577 0.65788776 0.44947654 0.60423577 0.65788776 0.44947654 0.52360588 0.66670758\n\t\t 0.53035063 0.5753653 0.51582408 0.63469338 0.68523192 0.49620068 0.53309727 0.5753653\n\t\t 0.51582408 0.63469338 0.59810162 0.36103421 0.71547592 0.59810162 0.36103421 0.71547592\n\t\t 0.71141684 0.36912161 0.59797966 0.68523192 0.49620068 0.53309727 0.81142598 0.4267711\n\t\t 0.39924312 0.68523192 0.49620068 0.53309727 0.71141684 0.36912161 0.59797966 0.71141684\n\t\t 0.36912161 0.59797966 0.84359252 0.32902035 0.42432931 0.81142598 0.4267711 0.39924312\n\t\t 0.98117 0.1206705 0.15066987 0.97442544 0.18219581 0.13141268 0.96667373 0.17706871\n\t\t 0.18478955 0.96667373 0.17706871 0.18478955 0.9736014 0.10602161 0.20212407 0.98117\n\t\t 0.1206705 0.15066987 0.98117 0.1206705 0.15066987 0.9736014 0.10602161 0.20212407\n\t\t 0.97534102 -0.041504856 0.21662039 0.96139407 -0.029236414 0.27350688 0.97534102\n\t\t -0.041504856 0.21662039 0.9736014 0.10602161 0.20212407 0.9736014 0.10602161 0.20212407\n\t\t 0.95898306 0.11731347 0.25803399 0.96139407 -0.029236414 0.27350688 0.96139407 -0.029236414\n\t\t 0.27350688 0.95898306 0.11731347 0.25803399 0.93838304 0.13312206 0.31885737 0.93838304\n\t\t 0.13312206 0.31885737 0.94119084 -0.029358491 0.33655813 0.96139407 -0.029236414\n\t\t 0.27350688 0.9197973 0.2433549 0.3077181 0.93838304 0.13312206 0.31885737 0.95898306\n\t\t 0.11731347 0.25803399 0.93838304 0.13312206 0.31885737 0.9197973 0.2433549 0.3077181\n\t\t 0.84359252 0.32902035 0.42432931 0.95898306 0.11731347 0.25803399 0.94906455 0.1963564\n\t\t 0.24631487 0.9197973 0.2433549 0.3077181 0.94906455 0.1963564 0.24631487 0.95898306\n\t\t 0.11731347 0.25803399 0.9736014 0.10602161 0.20212407 0.9736014 0.10602161 0.20212407\n\t\t 0.96667373 0.17706871 0.18478955 0.94906455 0.1963564 0.24631487 0.84359252 0.32902035\n\t\t 0.42432931 0.87347019 0.15640765 0.4610126 0.93838304 0.13312206 0.31885737 0.94119084\n\t\t -0.029358491 0.33655813 0.93838304 0.13312206 0.31885737 0.87347019 0.15640765 0.4610126\n\t\t 0.87347019 0.15640765 0.4610126 0.87649161 -0.03524857 0.48008668 0.94119084 -0.029358491\n\t\t 0.33655813 0.97534102 -0.041504856 0.21662039 0.97964424 -0.11722127 0.16281626 0.98117\n\t\t 0.1206705 0.15066987 0.87649161 -0.03524857 0.48008668 0.87347019 0.15640765 0.4610126\n\t\t 0.74724567 0.18189059 0.63914913 0.74724567 0.18189059 0.63914913 0.87347019 0.15640765\n\t\t 0.4610126 0.84359252 0.32902035 0.42432931 0.74724567 0.18189059 0.63914913 0.75624865\n\t\t -0.041474372 0.65294349 0.87649161 -0.03524857 0.48008668 0.64577168 -0.043030839\n\t\t 0.76229131 0.75624865 -0.041474372 0.65294349 0.74724567 0.18189059 0.63914913 0.74724567\n\t\t 0.18189059 0.63914913 0.627491 0.20783131 0.75032806 0.64577168 -0.043030839 0.76229131\n\t\t 0.89117086 0.33936614 0.30100402 0.9197973 0.2433549 0.3077181 0.94906455 0.1963564\n\t\t 0.24631487 0.94906455 0.1963564 0.24631487 0.93044823 0.27933624 0.23700672 0.89117086\n\t\t 0.33936614 0.30100402 0.9197973 0.2433549 0.3077181 0.89117086 0.33936614 0.30100402\n\t\t 0.81142598 0.4267711 0.39924312 0.81142598 0.4267711 0.39924312 0.84359252 0.32902035\n\t\t 0.42432931 0.9197973 0.2433549 0.3077181 0.64577168 -0.043030839 0.76229131 0.627491\n\t\t 0.20783131 0.75032806 0.47593608 0.23026237 0.84875029 0.45500034 0.3749201 0.8077029\n\t\t 0.47593608 0.23026237 0.84875029 0.627491 0.20783131 0.75032806 0.47593608 0.23026237\n\t\t 0.84875029 0.45500034 0.3749201 0.8077029 0.22299863 0.38624239 0.89501631 0.22299863\n\t\t 0.38624239 0.89501631 0.22949912 0.24243918 0.94259471 0.47593608 0.23026237 0.84875029\n\t\t 0.48768577 -0.040223185 0.87206638 0.47593608 0.23026237 0.84875029 0.22949912 0.24243918\n\t\t 0.94259471 0.47593608 0.23026237 0.84875029 0.48768577 -0.040223185 0.87206638 0.64577168\n\t\t -0.043030839 0.76229131 0.22949912 0.24243918 0.94259471 0.23548083 -0.036377918\n\t\t 0.97119051 0.48768577 -0.040223185 0.87206638 0.21640658 0.54371786 0.81087673 0.22299863\n\t\t 0.38624239 0.89501631 0.45500034 0.3749201 0.8077029 0.45500034 0.3749201 0.8077029\n\t\t 0.44239613 0.53392148 0.72054195 0.21640658 0.54371786 0.81087673 0.21097423 0.70903665\n\t\t 0.67284149 0.21640658 0.54371786 0.81087673 0.44239613 0.53392148 0.72054195 0.44239613\n\t\t 0.53392148 0.72054195 0.40949714 0.68712443 0.6001159 0.21097423 0.70903665 0.67284149\n\t\t 0.627491 0.20783131 0.75032806 0.59810162 0.36103421 0.71547592 0.45500034 0.3749201\n\t\t 0.8077029 0.59810162 0.36103421 0.71547592 0.627491 0.20783131 0.75032806 0.74724567\n\t\t 0.18189059 0.63914913 0.74724567 0.18189059 0.63914913 0.71141684 0.36912161 0.59797966\n\t\t 0.59810162 0.36103421 0.71547592 0.84359252 0.32902035 0.42432931 0.71141684 0.36912161\n\t\t 0.59797966 0.74724567 0.18189059 0.63914913 0.52360588 0.66670758 0.53035063 0.40949714\n\t\t 0.68712443 0.6001159 0.44239613 0.53392148 0.72054195 0.44239613 0.53392148 0.72054195\n\t\t 0.5753653 0.51582408 0.63469338 0.52360588 0.66670758 0.53035063 0.45500034 0.3749201\n\t\t 0.8077029 0.59810162 0.36103421 0.71547592 0.5753653 0.51582408 0.63469338 0.5753653\n\t\t 0.51582408 0.63469338 0.44239613 0.53392148 0.72054195 0.45500034 0.3749201 0.8077029\n\t\t -7.5794581e-08 0.24512474 0.96948147 0.22949912 0.24243918 0.94259471 0.22299863\n\t\t 0.38624239 0.89501631 0.23548083 -0.036377918 0.97119051 0.22949912 0.24243918 0.94259471\n\t\t -7.5794581e-08 0.24512474 0.96948147 0.22299863 0.38624239 0.89501631 -1.1991057e-07\n\t\t 0.38779876 0.92172003 -7.5794581e-08 0.24512474 0.96948147 -1.1991057e-07 0.38779876\n\t\t 0.92172003 0.22299863 0.38624239 0.89501631 0.21640658 0.54371786 0.81087673 -7.5794581e-08\n\t\t 0.24512474 0.96948147 1.089922e-08 -0.035248805 0.99935913;\n\tsetAttr \".n[30710:30875]\" -type \"float3\"  0.23548083 -0.036377918 0.97119051 -1.6696131e-07\n\t\t 0.53996402 0.84166992 0.21640658 0.54371786 0.81087673 0.21097423 0.70903665 0.67284149\n\t\t 0.21640658 0.54371786 0.81087673 -1.6696131e-07 0.53996402 0.84166992 -1.1991057e-07\n\t\t 0.38779876 0.92172003 0.21097423 0.70903665 0.67284149 -2.1967402e-07 0.71044046\n\t\t 0.70372623 -1.6696131e-07 0.53996402 0.84166992 0.52323961 0.77996171 -0.34327227\n\t\t 0.62840641 0.74684912 -0.21744443 0.59974951 0.75298339 -0.27072975 0.59974951 0.75298339\n\t\t -0.27072975 0.38007724 0.82528162 -0.41764587 0.52323961 0.77996171 -0.34327227 0.68248516\n\t\t 0.72447914 -0.096438542 0.62840641 0.74684912 -0.21744443 0.52323961 0.77996171 -0.34327227\n\t\t 0.52323961 0.77996171 -0.34327227 0.56627071 0.78716409 -0.24430072 0.68248516 0.72447914\n\t\t -0.096438542 0.67406207 0.73863965 0.004669277 0.68248516 0.72447914 -0.096438542\n\t\t 0.56627071 0.78716409 -0.24430072 0.56627071 0.78716409 -0.24430072 0.54542655 0.83214837\n\t\t -0.09988714 0.67406207 0.73863965 0.004669277 0.6843468 0.71459115 -0.14484091 0.62840641\n\t\t 0.74684912 -0.21744443 0.68248516 0.72447914 -0.096438542 0.59974951 0.75298339 -0.27072975\n\t\t 0.62840641 0.74684912 -0.21744443 0.6843468 0.71459115 -0.14484091 0.68248516 0.72447914\n\t\t -0.096438542 0.71355301 0.69997275 -0.029267304 0.6843468 0.71459115 -0.14484091\n\t\t 0.71355301 0.69997275 -0.029267304 0.68248516 0.72447914 -0.096438542 0.67406207\n\t\t 0.73863965 0.004669277 0.6843468 0.71459115 -0.14484091 0.59822357 0.7888121 -0.14093454\n\t\t 0.59974951 0.75298339 -0.27072975 0.67406207 0.73863965 0.004669277 0.54542655 0.83214837\n\t\t -0.09988714 0.44999516 0.8911711 -0.057130717 0.44999516 0.8911711 -0.057130717 0.64244491\n\t\t 0.76058245 0.093508653 0.67406207 0.73863965 0.004669277 0.68617791 0.72502846 0.058778599\n\t\t 0.67406207 0.73863965 0.004669277 0.64244491 0.76058245 0.093508653 0.67406207 0.73863965\n\t\t 0.004669277 0.68617791 0.72502846 0.058778599 0.71355301 0.69997275 -0.029267304\n\t\t 0.64244491 0.76058245 0.093508653 0.78673649 0.57741046 0.21814626 0.68617791 0.72502846\n\t\t 0.058778599 0.73412257 0.59691179 0.32358772 0.78673649 0.57741046 0.21814626 0.64244491\n\t\t 0.76058245 0.093508653 0.64244491 0.76058245 0.093508653 0.61250627 0.77147758 0.17212433\n\t\t 0.73412257 0.59691179 0.32358772 0.61250627 0.77147758 0.17212433 0.64244491 0.76058245\n\t\t 0.093508653 0.44999516 0.8911711 -0.057130717 0.44999516 0.8911711 -0.057130717 0.63856906\n\t\t 0.75933123 0.12488168 0.61250627 0.77147758 0.17212433 0.5194248 0.80269802 0.29294711\n\t\t 0.61250627 0.77147758 0.17212433 0.63856906 0.75933123 0.12488168 0.73412257 0.59691179\n\t\t 0.32358772 0.61250627 0.77147758 0.17212433 0.5194248 0.80269802 0.29294711 0.63856906\n\t\t 0.75933123 0.12488168 0.57783723 0.78273892 0.23105557 0.5194248 0.80269802 0.29294711\n\t\t 0.49726835 0.77068412 0.39841908 0.5194248 0.80269802 0.29294711 0.57783723 0.78273892\n\t\t 0.23105557 0.57783723 0.78273892 0.23105557 0.4177371 0.88329732 0.21268344 0.49726835\n\t\t 0.77068412 0.39841908 0.5194248 0.80269802 0.29294711 0.49726835 0.77068412 0.39841908\n\t\t 0.52360588 0.66670758 0.53035063 0.52360588 0.66670758 0.53035063 0.49726835 0.77068412\n\t\t 0.39841908 0.35685268 0.81087697 0.46378973 0.35685268 0.81087697 0.46378973 0.40949714\n\t\t 0.68712443 0.6001159 0.52360588 0.66670758 0.53035063 0.21097423 0.70903665 0.67284149\n\t\t 0.40949714 0.68712443 0.6001159 0.35685268 0.81087697 0.46378973 0.35685268 0.81087697\n\t\t 0.46378973 0.17773955 0.83294177 0.52400273 0.21097423 0.70903665 0.67284149 0.17773955\n\t\t 0.83294177 0.52400273 0.35685268 0.81087697 0.46378973 0.29886749 0.91500604 0.27094325\n\t\t 0.49726835 0.77068412 0.39841908 0.4177371 0.88329732 0.21268344 0.29886749 0.91500604\n\t\t 0.27094325 0.29886749 0.91500604 0.27094325 0.35685268 0.81087697 0.46378973 0.49726835\n\t\t 0.77068412 0.39841908 0.29886749 0.91500604 0.27094325 0.14990664 0.93322557 0.32645643\n\t\t 0.17773955 0.83294177 0.52400273 0.52360588 0.66670758 0.53035063 0.60423577 0.65788776\n\t\t 0.44947654 0.5194248 0.80269802 0.29294711 0.5194248 0.80269802 0.29294711 0.60423577\n\t\t 0.65788776 0.44947654 0.73412257 0.59691179 0.32358772 -2.1967402e-07 0.71044046\n\t\t 0.70372623 0.21097423 0.70903665 0.67284149 0.17773955 0.83294177 0.52400273 0.17773955\n\t\t 0.83294177 0.52400273 -2.6129874e-07 0.84505761 0.53462321 -2.1967402e-07 0.71044046\n\t\t 0.70372623 -2.6129874e-07 0.84505761 0.53462321 0.17773955 0.83294177 0.52400273\n\t\t 0.14990664 0.93322557 0.32645643 0.14990664 0.93322557 0.32645643 -2.9211859e-07\n\t\t 0.944731 0.32776874 -2.6129874e-07 0.84505761 0.53462321 0.98205519 -0.18762749 0.017914379\n\t\t 0.98797578 -0.15359935 0.01559497 0.98583949 -0.16672231 0.016510526 0.98583949 -0.16672231\n\t\t 0.016510526 0.97946107 -0.20068942 0.018829934 0.98205519 -0.18762749 0.017914379\n\t\t 0.2079228 -0.60353404 -0.76970726 0.0054630227 -0.67793822 -0.73506874 0.022919616\n\t\t -0.69255662 -0.7209692 0.022919616 -0.69255662 -0.7209692 0.21729197 -0.59236425\n\t\t -0.77578044 0.2079228 -0.60353404 -0.76970726 0.01422176 -0.4351635 -0.90020442 0.022919616\n\t\t -0.69255662 -0.7209692 0.0054630227 -0.67793822 -0.73506874 0.0054630227 -0.67793822\n\t\t -0.73506874 0.01351978 -0.25815612 -0.96597189 0.01422176 -0.4351635 -0.90020442\n\t\t -0.0050049997 -0.11554314 -0.99328595 0.01422176 -0.4351635 -0.90020442 0.01351978\n\t\t -0.25815612 -0.96597189 0.01351978 -0.25815612 -0.96597189 -0.006347816 -0.10953101\n\t\t -0.99395734 -0.0050049997 -0.11554314 -0.99328595 -0.0080873799 -0.080233239 -0.9967345\n\t\t -0.0050049997 -0.11554314 -0.99328595 -0.006347816 -0.10953101 -0.99395734 -0.006347816\n\t\t -0.10953101 -0.99395734 -0.0083315289 -0.076998271 -0.99697864 -0.0080873799 -0.080233239\n\t\t -0.9967345 -0.010040574 -0.0511491 -0.99862665 -0.0080873799 -0.080233239 -0.9967345\n\t\t -0.0083315289 -0.076998271 -0.99697864 -0.0083315289 -0.076998271 -0.99697864 -0.010254204\n\t\t -0.048860211 -0.99874872 -0.010040574 -0.0511491 -0.99862665;\n\tsetAttr \".n[30876:31041]\" -type \"float3\"  -0.013153522 0.1458784 -0.98919642 -0.010040574\n\t\t -0.0511491 -0.99862665 -0.010254204 -0.048860211 -0.99874872 -0.010254204 -0.048860211\n\t\t -0.99874872 -0.012909363 0.11203337 -0.99359113 -0.013153522 0.1458784 -0.98919642\n\t\t -0.011505573 0.30573437 -0.95202488 -0.013153522 0.1458784 -0.98919642 -0.012909363\n\t\t 0.11203337 -0.99359113 -0.012909363 0.11203337 -0.99359113 -0.011505571 0.30088192\n\t\t -0.95358133 -0.011505573 0.30573437 -0.95202488 -0.011505573 0.30573437 -0.95202488\n\t\t -0.011505571 0.30088192 -0.95358133 -0.0048220218 0.3145237 -0.9492172 -0.0048220218\n\t\t 0.3145237 -0.9492172 -0.0047915047 0.31983393 -0.94744712 -0.011505573 0.30573437\n\t\t -0.95202488 -0.00054943282 0.32224488 -0.94662315 -0.0047915047 0.31983393 -0.94744712\n\t\t -0.0048220218 0.3145237 -0.9492172 -0.0048220218 0.3145237 -0.9492172 -9.9508654e-08\n\t\t 0.32181764 -0.94677573 -0.00054943282 0.32224488 -0.94662315 0.012329576 -0.31577495\n\t\t 0.94872892 0.0088809859 -0.32151243 0.94683677 0.0090335784 -0.32157347 0.94683677\n\t\t 0.0090335784 -0.32157347 0.94683677 0.013031501 -0.31376073 0.94940031 0.012329576\n\t\t -0.31577495 0.94872892 0.014923644 -0.30051571 0.95364237 0.012329576 -0.31577495\n\t\t 0.94872892 0.013031501 -0.31376073 0.94940031 0.013031501 -0.31376073 0.94940031\n\t\t 0.015076235 -0.29657882 0.95486313 0.014923644 -0.30051571 0.95364237 0.013489226\n\t\t -0.14383367 0.98950166 0.014923644 -0.30051571 0.95364237 0.015076235 -0.29657882\n\t\t 0.95486313 0.015076235 -0.29657882 0.95486313 0.013092475 -0.11069055 0.99374372\n\t\t 0.013489226 -0.14383367 0.98950166 0.01034576 0.048036214 0.99877924 0.013489226\n\t\t -0.14383367 0.98950166 0.013092475 -0.11069055 0.99374372 0.013092475 -0.11069055\n\t\t 0.99374372 0.01016265 0.045838881 0.99887079 0.01034576 0.048036214 0.99877924 0.0084230844\n\t\t 0.07745605 0.99694812 0.01034576 0.048036214 0.99877924 0.01016265 0.045838881 0.99887079\n\t\t 0.01016265 0.045838881 0.99887079 0.0082399743 0.074190572 0.99719232 0.0084230844\n\t\t 0.07745605 0.99694812 0.0063783326 0.11560419 0.99325544 0.0084230844 0.07745605\n\t\t 0.99694812 0.0082399743 0.074190572 0.99719232 0.0082399743 0.074190572 0.99719232\n\t\t 0.0051881131 0.1083713 0.99407941 0.0063783326 0.11560419 0.99325544 -0.015167831\n\t\t 0.42323074 0.90588087 0.0063783326 0.11560419 0.99325544 0.0051881131 0.1083713 0.99407941\n\t\t 0.0051881131 0.1083713 0.99407941 -0.013306148 0.25266281 0.96743673 -0.015167831\n\t\t 0.42323074 0.90588087 -0.028779171 0.69893497 0.71459085 -0.015167831 0.42323074\n\t\t 0.90588087 -0.013306148 0.25266281 0.96743673 -0.013306148 0.25266281 0.96743673\n\t\t -0.0096745789 0.68227184 0.73100978 -0.028779171 0.69893497 0.71459085 -0.18314177\n\t\t 0.61067539 0.77037865 -0.028779171 0.69893497 0.71459085 -0.0096745789 0.68227184\n\t\t 0.73100978 -0.0096745789 0.68227184 0.73100978 -0.18710917 0.60469377 0.77413243\n\t\t -0.18314177 0.61067539 0.77037865 0.59266919 0.68990153 -0.41563165 0.52052343 0.70305502\n\t\t -0.48448139 0.49549833 0.60600615 -0.62224197 0.49549833 0.60600615 -0.62224197 0.58684021\n\t\t 0.67052227 -0.45384082 0.59266919 0.68990153 -0.41563165 0.58684021 0.67052227 -0.45384082\n\t\t 0.49549833 0.60600615 -0.62224197 0.76061267 0.45030081 -0.46757412 0.76061267 0.45030081\n\t\t -0.46757412 0.40040261 0.78218943 -0.47727904 0.58684021 0.67052227 -0.45384082 0.97955257\n\t\t 0.11499403 -0.16498308 0.98278755 0.091006488 -0.1605884 0.89870906 -0.068666399\n\t\t -0.43305764 0.89870906 -0.068666399 -0.43305764 0.91982788 0.048768833 -0.3892636\n\t\t 0.97955257 0.11499403 -0.16498308 0.97128201 0.16321327 -0.17303996 0.97955257 0.11499403\n\t\t -0.16498308 0.91982788 0.048768833 -0.3892636 0.91982788 0.048768833 -0.3892636 0.91738641\n\t\t 0.068880528 -0.39194921 0.97128201 0.16321327 -0.17303996 0.95992911 0.21918422 -0.17453536\n\t\t 0.97128201 0.16321327 -0.17303996 0.91738641 0.068880528 -0.39194921 0.91738641 0.068880528\n\t\t -0.39194921 0.96456796 0.20474896 -0.16635641 0.95992911 0.21918422 -0.17453536 0.95034635\n\t\t 0.25501296 -0.17825863 0.95992911 0.21918422 -0.17453536 0.96456796 0.20474896 -0.16635641\n\t\t 0.96456796 0.20474896 -0.16635641 0.94778275 0.26117769 -0.18289745 0.95034635 0.25501296\n\t\t -0.17825863 0.22379237 -0.46784863 0.85497612 0.22339566 -0.55397189 0.80196548 0.42085043\n\t\t -0.58171314 0.69603568 0.42085043 -0.58171314 0.69603568 0.44145039 -0.47941506 0.75844604\n\t\t 0.22379237 -0.46784863 0.85497612 0.22644746 -0.38184747 0.89602345 0.22379237 -0.46784863\n\t\t 0.85497612 0.44145039 -0.47941506 0.75844604 0.44145039 -0.47941506 0.75844604 0.45603821\n\t\t -0.3894465 0.80019534 0.22644746 -0.38184747 0.89602345 0.2295298 -0.28980365 0.92913604\n\t\t 0.22644746 -0.38184747 0.89602345 0.45603821 -0.3894465 0.80019534 0.45603821 -0.3894465\n\t\t 0.80019534 0.47087017 -0.29044443 0.83300269 0.2295298 -0.28980365 0.92913604 0.23548083\n\t\t -0.036377918 0.97119051 0.2295298 -0.28980365 0.92913604 0.47087017 -0.29044443 0.83300269\n\t\t 0.47087017 -0.29044443 0.83300269 0.48768577 -0.040223185 0.87206638 0.23548083 -0.036377918\n\t\t 0.97119051 0.45603821 -0.3894465 0.80019534 0.44145039 -0.47941506 0.75844604 0.57200855\n\t\t -0.47367755 0.66960669 0.57200855 -0.47367755 0.66960669 0.59886485 -0.38090128 0.70442826\n\t\t 0.45603821 -0.3894465 0.80019534 0.44145039 -0.47941506 0.75844604 0.42085043 -0.58171314\n\t\t 0.69603568 0.52958786 -0.59187573 0.60759306 0.52958786 -0.59187573 0.60759306 0.57200855\n\t\t -0.47367755 0.66960669 0.44145039 -0.47941506 0.75844604 0.67333001 -0.4625383 0.57676935\n\t\t 0.57200855 -0.47367755 0.66960669 0.52958786 -0.59187573 0.60759306 0.59886485 -0.38090128\n\t\t 0.70442826 0.57200855 -0.47367755 0.66960669 0.67333001 -0.4625383 0.57676935 0.52958786\n\t\t -0.59187573 0.60759306 0.59089959 -0.5880304 0.55226302 0.67333001 -0.4625383 0.57676935\n\t\t 0.67333001 -0.4625383 0.57676935 0.70650363 -0.36216289 0.60798973 0.59886485 -0.38090128\n\t\t 0.70442826 0.59886485 -0.38090128 0.70442826 0.70650363 -0.36216289 0.60798973 0.73387867\n\t\t -0.25168586 0.63087863 0.73387867 -0.25168586 0.63087863;\n\tsetAttr \".n[31042:31207]\" -type \"float3\"  0.62318802 -0.27722991 0.73125398 0.59886485\n\t\t -0.38090128 0.70442826 0.45603821 -0.3894465 0.80019534 0.59886485 -0.38090128 0.70442826\n\t\t 0.62318802 -0.27722991 0.73125398 0.62318802 -0.27722991 0.73125398 0.47087017 -0.29044443\n\t\t 0.83300269 0.45603821 -0.3894465 0.80019534 0.62318802 -0.27722991 0.73125398 0.73387867\n\t\t -0.25168586 0.63087863 0.75624865 -0.041474372 0.65294349 0.87649161 -0.03524857\n\t\t 0.48008668 0.75624865 -0.041474372 0.65294349 0.73387867 -0.25168586 0.63087863 0.73387867\n\t\t -0.25168586 0.63087863 0.85808897 -0.22046542 0.46369827 0.87649161 -0.03524857 0.48008668\n\t\t 0.85808897 -0.22046542 0.46369827 0.73387867 -0.25168586 0.63087863 0.70650363 -0.36216289\n\t\t 0.60798973 0.75624865 -0.041474372 0.65294349 0.64577168 -0.043030839 0.76229131\n\t\t 0.62318802 -0.27722991 0.73125398 0.64577168 -0.043030839 0.76229131 0.48768577 -0.040223185\n\t\t 0.87206638 0.47087017 -0.29044443 0.83300269 0.47087017 -0.29044443 0.83300269 0.62318802\n\t\t -0.27722991 0.73125398 0.64577168 -0.043030839 0.76229131 0.70650363 -0.36216289\n\t\t 0.60798973 0.81542414 -0.32190898 0.48103279 0.85808897 -0.22046542 0.46369827 0.81542414\n\t\t -0.32190898 0.48103279 0.70650363 -0.36216289 0.60798973 0.67333001 -0.4625383 0.57676935\n\t\t 0.87649161 -0.03524857 0.48008668 0.85808897 -0.22046542 0.46369827 0.9318217 -0.15845178\n\t\t 0.32645649 0.85808897 -0.22046542 0.46369827 0.81542414 -0.32190898 0.48103279 0.9318217\n\t\t -0.15845178 0.32645649 0.9318217 -0.15845178 0.32645649 0.94119084 -0.029358491 0.33655813\n\t\t 0.87649161 -0.03524857 0.48008668 0.94119084 -0.029358491 0.33655813 0.9318217 -0.15845178\n\t\t 0.32645649 0.95318466 -0.14828913 0.26340526 0.95318466 -0.14828913 0.26340526 0.96139407\n\t\t -0.029236414 0.27350688 0.94119084 -0.029358491 0.33655813 0.97534102 -0.041504856\n\t\t 0.21662039 0.96139407 -0.029236414 0.27350688 0.95318466 -0.14828913 0.26340526 0.95318466\n\t\t -0.14828913 0.26340526 0.96139413 -0.20435162 0.18417922 0.97534102 -0.041504856\n\t\t 0.21662039 0.97964424 -0.11722127 0.16281626 0.97534102 -0.041504856 0.21662039 0.96139413\n\t\t -0.20435162 0.18417922 0.96139413 -0.20435162 0.18417922 0.92437524 -0.36057588 0.12436295\n\t\t 0.97964424 -0.11722127 0.16281626 0.92437524 -0.36057588 0.12436295 0.96139413 -0.20435162\n\t\t 0.18417922 0.94894266 -0.3073211 0.070741929 0.94894266 -0.3073211 0.070741929 0.89214772\n\t\t -0.4452953 0.075716451 0.92437524 -0.36057588 0.12436295 0.89165944 -0.45265028 -0.00042722546\n\t\t 0.89214772 -0.4452953 0.075716451 0.94894266 -0.3073211 0.070741929 0.88222921 -0.47077826\n\t\t 0.00073247927 0.89214772 -0.4452953 0.075716451 0.89165944 -0.45265028 -0.00042722546\n\t\t 0.86739725 -0.49717677 -0.019409735 0.88222921 -0.47077826 0.00073247927 0.89165944\n\t\t -0.45265028 -0.00042722546 0.86739725 -0.49717677 -0.019409735 0.8873868 -0.46076819\n\t\t -0.013763813 0.88222921 -0.47077826 0.00073247927 0.86739725 -0.49717677 -0.019409735\n\t\t 0.89165944 -0.45265028 -0.00042722546 0.84450835 -0.53300554 -0.051759351 0.8873868\n\t\t -0.46076819 -0.013763813 0.86739725 -0.49717677 -0.019409735 0.87755984 -0.4748067\n\t\t 0.066499867 0.86739725 -0.49717677 -0.019409735 0.8820461 -0.46137854 0.095431417\n\t\t 0.87755984 -0.4748067 0.066499867 0.8820461 -0.46137854 0.095431417 0.88824135 -0.44621086\n\t\t 0.10898162 0.87755984 -0.4748067 0.066499867 0.89165944 -0.45265028 -0.00042722546\n\t\t 0.94894266 -0.3073211 0.070741929 0.97763002 -0.20786127 -0.032074939 0.94894266\n\t\t -0.3073211 0.070741929 0.94839334 -0.31501177 0.035554085 0.97763002 -0.20786127\n\t\t -0.032074939 0.88824135 -0.44621086 0.10898162 0.8820461 -0.46137854 0.095431417\n\t\t 0.97311324 -0.18015045 0.1434065 0.97964424 -0.11722127 0.16281626 0.92437524 -0.36057588\n\t\t 0.12436295 0.97311324 -0.18015045 0.1434065 0.89074385 -0.44199932 0.10553303 0.88824135\n\t\t -0.44621086 0.10898162 0.97311324 -0.18015045 0.1434065 0.92437524 -0.36057588 0.12436295\n\t\t 0.89074385 -0.44199932 0.10553303 0.97311324 -0.18015045 0.1434065 0.92437524 -0.36057588\n\t\t 0.12436295 0.89214772 -0.4452953 0.075716451 0.85509825 -0.43949676 0.2749413 0.85509825\n\t\t -0.43949676 0.2749413 0.91634887 -0.36197975 0.17090368 0.92437524 -0.36057588 0.12436295\n\t\t 0.91634887 -0.36197975 0.17090368 0.85509825 -0.43949676 0.2749413 0.86916727 -0.44529527\n\t\t 0.21497241 0.86916727 -0.44529527 0.21497241 0.83223987 -0.47431839 0.2869961 0.91634887\n\t\t -0.36197975 0.17090368 -0.026124116 0.87771225 -0.47840822 0.00024387865 0.8713339\n\t\t -0.49064612 0.18683405 0.86669517 -0.46247756 0.18683405 0.86669517 -0.46247756 0.17572531\n\t\t 0.87197483 -0.45689267 -0.026124116 0.87771225 -0.47840822 -0.031678487 0.88024533\n\t\t -0.4734337 -0.026124116 0.87771225 -0.47840822 0.17572531 0.87197483 -0.45689267\n\t\t 0.17572531 0.87197483 -0.45689267 0.16730221 0.86999112 -0.46375933 -0.031678487\n\t\t 0.88024533 -0.4734337 -0.026124116 0.87771225 -0.47840822 -0.031678487 0.88024533\n\t\t -0.4734337 -0.23746479 0.85564733 -0.45979193 -0.23746479 0.85564733 -0.45979193\n\t\t -0.23444346 0.84957415 -0.47248763 -0.026124116 0.87771225 -0.47840822 0.00024387865\n\t\t 0.8713339 -0.49064612 -0.026124116 0.87771225 -0.47840822 -0.23444346 0.84957415\n\t\t -0.47248763 -0.23444346 0.84957415 -0.47248763 -0.22406715 0.8413952 -0.4917143 0.00024387865\n\t\t 0.8713339 -0.49064612 0.65449971 0.67900652 -0.33246869 0.70363456 0.64519203 -0.29761657\n\t\t 0.80306387 0.56025904 -0.2028871 0.80306387 0.56025904 -0.2028871 0.7976926 0.54997432\n\t\t -0.24735257 0.65449971 0.67900652 -0.33246869 0.89599282 0.42600814 -0.12521747 0.80306387\n\t\t 0.56025904 -0.2028871 0.70363456 0.64519203 -0.29761657 0.70363456 0.64519203 -0.29761657\n\t\t 0.73937178 0.60930228 -0.2864773 0.89599282 0.42600814 -0.12521747 0.80306387 0.56025904\n\t\t -0.2028871 0.89599282 0.42600814 -0.12521747 0.79049027 0.58980095 -0.16501363 0.79049027\n\t\t 0.58980095 -0.16501363 0.8730734 0.47529554 -0.10852386 0.80306387 0.56025904 -0.2028871\n\t\t 0.7976926 0.54997432 -0.24735257 0.80306387 0.56025904 -0.2028871;\n\tsetAttr \".n[31208:31373]\" -type \"float3\"  0.8730734 0.47529554 -0.10852386 0.8730734\n\t\t 0.47529554 -0.10852386 0.90530097 0.39475718 -0.15665154 0.7976926 0.54997432 -0.24735257\n\t\t -0.031678487 0.88024533 -0.4734337 0.16730221 0.86999112 -0.46375933 0.15973361 0.86416209\n\t\t -0.47715697 0.15973361 0.86416209 -0.47715697 -0.037446484 0.87786484 -0.47740111\n\t\t -0.031678487 0.88024533 -0.4734337 -0.23746479 0.85564733 -0.45979193 -0.031678487\n\t\t 0.88024533 -0.4734337 -0.037446484 0.87786484 -0.47740111 -0.033479072 0.87041837\n\t\t -0.49110392 -0.037446484 0.87786484 -0.47740111 0.15973361 0.86416209 -0.47715697\n\t\t 0.15973361 0.86416209 -0.47715697 0.15640709 0.8566851 -0.49150065 -0.033479072 0.87041837\n\t\t -0.49110392 -0.044892993 0.85326695 -0.51951665 -0.033479072 0.87041837 -0.49110392\n\t\t 0.15640709 0.8566851 -0.49150065 0.15640709 0.8566851 -0.49150065 0.15854341 0.83272803\n\t\t -0.5304423 -0.044892993 0.85326695 -0.51951665 -0.044557285 0.84377569 -0.53480643\n\t\t -0.044892993 0.85326695 -0.51951665 0.15854341 0.83272803 -0.5304423 0.15854341 0.83272803\n\t\t -0.5304423 0.17239881 0.80956447 -0.56111336 -0.044557285 0.84377569 -0.53480643\n\t\t -0.25476879 0.83611548 -0.48573264 -0.044892993 0.85326695 -0.51951665 -0.044557285\n\t\t 0.84377569 -0.53480643 -0.044557285 0.84377569 -0.53480643 -0.25785115 0.83336884\n\t\t -0.48881504 -0.25476879 0.83611548 -0.48573264 -0.069338314 0.84493542 -0.53032023\n\t\t -0.044557285 0.84377569 -0.53480643 0.17239881 0.80956447 -0.56111336 -0.25785115\n\t\t 0.83336884 -0.48881504 -0.044557285 0.84377569 -0.53480643 -0.069338314 0.84493542\n\t\t -0.53032023 0.17239881 0.80956447 -0.56111336 0.17990635 0.80144656 -0.57032996 -0.069338314\n\t\t 0.84493542 -0.53032023 -0.069338314 0.84493542 -0.53032023 -0.25855309 0.8351084\n\t\t -0.4854885 -0.25785115 0.83336884 -0.48881504 0.6943264 0.56041157 -0.4513993 0.63304526\n\t\t 0.65202808 -0.41718808 0.78533262 0.51554942 -0.34263134 0.78533262 0.51554942 -0.34263134\n\t\t 0.83217859 0.40363804 -0.38016909 0.6943264 0.56041157 -0.4513993 0.70909739 0.51145989\n\t\t -0.48533589 0.6943264 0.56041157 -0.4513993 0.83217859 0.40363804 -0.38016909 0.83217859\n\t\t 0.40363804 -0.38016909 0.78533262 0.51554942 -0.34263134 0.89062154 0.38309908 -0.24491107\n\t\t 0.89062154 0.38309908 -0.24491107 0.76061267 0.45030081 -0.46757412 0.83217859 0.40363804\n\t\t -0.38016909 0.83217859 0.40363804 -0.38016909 0.84710217 0.33176696 -0.41511279 0.70909739\n\t\t 0.51145989 -0.48533589 0.71129471 0.49208063 -0.50187695 0.70909739 0.51145989 -0.48533589\n\t\t 0.84710217 0.33176696 -0.41511279 0.93554485 0.13766925 -0.32520524 0.84710217 0.33176696\n\t\t -0.41511279 0.83217859 0.40363804 -0.38016909 0.87847525 0.27729142 -0.38904998 0.93554485\n\t\t 0.13766925 -0.32520524 0.83217859 0.40363804 -0.38016909 -0.044892993 0.85326695\n\t\t -0.51951665 -0.25476879 0.83611548 -0.48573264 -0.2315442 0.85259551 -0.46839815\n\t\t 0.88506716 0.40955862 -0.22107612 0.89062154 0.38309908 -0.24491107 0.78533262 0.51554942\n\t\t -0.34263134 0.78533262 0.51554942 -0.34263134 0.7750479 0.55504036 -0.30191964 0.88506716\n\t\t 0.40955862 -0.22107612 0.7750479 0.55504036 -0.30191964 0.78533262 0.51554942 -0.34263134\n\t\t 0.63304526 0.65202808 -0.41718808 0.63304526 0.65202808 -0.41718808 0.62413383 0.6809597\n\t\t -0.38303787 0.7750479 0.55504036 -0.30191964 0.84710217 0.33176696 -0.41511279 0.85906547\n\t\t 0.28464636 -0.42536703 0.71129471 0.49208063 -0.50187695 0.84710217 0.33176696 -0.41511279\n\t\t 0.93554485 0.13766925 -0.32520524 0.93557537 0.1228983 -0.33097324 0.93557537 0.1228983\n\t\t -0.33097324 0.85906547 0.28464636 -0.42536703 0.84710217 0.33176696 -0.41511279 0.93508708\n\t\t 0.1082189 -0.33741266 0.93557537 0.1228983 -0.33097324 0.93554485 0.13766925 -0.32520524\n\t\t 0.93554485 0.13766925 -0.32520524 0.93310338 0.12726244 -0.33625293 0.93508708 0.1082189\n\t\t -0.33741266 0.93310338 0.12726244 -0.33625293 0.93554485 0.13766925 -0.32520524 0.87847525\n\t\t 0.27729142 -0.38904998 0.87847525 0.27729142 -0.38904998 0.92956322 0.15717058 -0.33344522\n\t\t 0.93310338 0.12726244 -0.33625293 0.93310338 0.12726244 -0.33625293 0.92956322 0.15717058\n\t\t -0.33344522 0.95834219 0.25132021 -0.13553272 0.95834219 0.25132021 -0.13553272 0.95883048\n\t\t 0.2573629 -0.11987673 0.93310338 0.12726244 -0.33625293 0.90530097 0.39475718 -0.15665154\n\t\t 0.88506716 0.40955862 -0.22107612 0.7750479 0.55504036 -0.30191964 0.7750479 0.55504036\n\t\t -0.30191964 0.7976926 0.54997432 -0.24735257 0.90530097 0.39475718 -0.15665154 0.7750479\n\t\t 0.55504036 -0.30191964 0.62413383 0.6809597 -0.38303787 0.65449971 0.67900652 -0.33246869\n\t\t 0.65449971 0.67900652 -0.33246869 0.7976926 0.54997432 -0.24735257 0.7750479 0.55504036\n\t\t -0.30191964 -0.2315442 0.85259551 -0.46839815 -0.033479072 0.87041837 -0.49110392\n\t\t -0.044892993 0.85326695 -0.51951665 -0.23334479 0.85760051 -0.45826599 -0.037446484\n\t\t 0.87786484 -0.47740111 -0.033479072 0.87041837 -0.49110392 -0.033479072 0.87041837\n\t\t -0.49110392 -0.2315442 0.85259551 -0.46839815 -0.23334479 0.85760051 -0.45826599\n\t\t -0.037446484 0.87786484 -0.47740111 -0.23334479 0.85760051 -0.45826599 -0.23746479\n\t\t 0.85564733 -0.45979193 -0.75218987 0.5939815 -0.28522602 -0.75289178 0.59529382 -0.28064823\n\t\t -0.87496579 0.44633293 -0.1875973 -0.88482326 0.4369027 -0.16168709 -0.87496579 0.44633293\n\t\t -0.1875973 -0.75289178 0.59529382 -0.28064823 -0.75289178 0.59529382 -0.28064823\n\t\t -0.75853771 0.59306598 -0.26990572 -0.88482326 0.4369027 -0.16168709 -0.88854653\n\t\t 0.43552938 -0.14398636 -0.88482326 0.4369027 -0.16168709 -0.75853771 0.59306598 -0.26990572\n\t\t -0.75853771 0.59306598 -0.26990572 -0.76186424 0.59266919 -0.26120794 -0.88854653\n\t\t 0.43552938 -0.14398636 -0.96740627 0.25138065 -0.030365936 -0.88482326 0.4369027\n\t\t -0.16168709 -0.88854653 0.43552938 -0.14398636 -0.88854653 0.43552938 -0.14398636\n\t\t -0.96621609 0.25708762 -0.017700754 -0.96740627 0.25138065 -0.030365936 -0.88482326\n\t\t 0.4369027 -0.16168709 -0.96740627 0.25138065 -0.030365936 -0.96066171 0.26740289\n\t\t -0.074678816;\n\tsetAttr \".n[31374:31539]\" -type \"float3\"  -0.96066171 0.26740289 -0.074678816 -0.87496579\n\t\t 0.44633293 -0.1875973 -0.88482326 0.4369027 -0.16168709 -0.87496579 0.44633293 -0.1875973\n\t\t -0.87224966 0.44682124 -0.19870605 -0.75218987 0.5939815 -0.28522602 -0.75063342\n\t\t 0.58668756 -0.30384231 -0.75218987 0.5939815 -0.28522602 -0.87224966 0.44682124 -0.19870605\n\t\t -0.87496579 0.44633293 -0.1875973 -0.96066171 0.26740289 -0.074678816 -0.95565665\n\t\t 0.27628377 -0.10162665 -0.95565665 0.27628377 -0.10162665 -0.87224966 0.44682124\n\t\t -0.19870605 -0.87496579 0.44633293 -0.1875973 -0.87224966 0.44682124 -0.19870605\n\t\t -0.8665427 0.44724846 -0.22144234 -0.75063342 0.58668756 -0.30384231 -0.75063342\n\t\t 0.58668756 -0.30384231 -0.8665427 0.44724846 -0.22144234 -0.86968607 0.4455089 -0.21237834\n\t\t -0.86968607 0.4455089 -0.21237834 -0.74779522 0.57890534 -0.32496113 -0.75063342\n\t\t 0.58668756 -0.30384231 -0.95022434 0.28473741 -0.12622456 -0.8665427 0.44724846 -0.22144234\n\t\t -0.87224966 0.44682124 -0.19870605 -0.87224966 0.44682124 -0.19870605 -0.95565665\n\t\t 0.27628377 -0.10162665 -0.95022434 0.28473741 -0.12622456 -0.86968607 0.4455089 -0.21237834\n\t\t -0.8665427 0.44724846 -0.22144234 -0.95022434 0.28473741 -0.12622456 -0.95022434\n\t\t 0.28473741 -0.12622456 -0.94497526 0.28946775 -0.15222634 -0.86968607 0.4455089 -0.21237834\n\t\t -0.91311395 0.39161325 -0.11307111 -0.88854653 0.43552938 -0.14398636 -0.76186424\n\t\t 0.59266919 -0.26120794 -0.96621609 0.25708762 -0.017700754 -0.88854653 0.43552938\n\t\t -0.14398636 -0.91311395 0.39161325 -0.11307111 -0.76186424 0.59266919 -0.26120794\n\t\t -0.76375639 0.59269971 -0.25565359 -0.91311395 0.39161325 -0.11307111 -0.91311395\n\t\t 0.39161325 -0.11307111 -0.96603298 0.25763696 -0.018616309 -0.96621609 0.25708762\n\t\t -0.017700754 -0.78399014 0.60811156 -0.12463763 -0.74779522 0.57890534 -0.32496113\n\t\t -0.86968607 0.4455089 -0.21237834 -0.86968607 0.4455089 -0.21237834 -0.88079482 0.45054448\n\t\t -0.14542073 -0.78399014 0.60811156 -0.12463763 -0.88079482 0.45054448 -0.14542073\n\t\t -0.86968607 0.4455089 -0.21237834 -0.94497526 0.28946775 -0.15222634 -0.94497526\n\t\t 0.28946775 -0.15222634 -0.93542296 0.30558154 -0.17758724 -0.88079482 0.45054448\n\t\t -0.14542073 -0.88079482 0.45054448 -0.14542073 -0.93542296 0.30558154 -0.17758724\n\t\t -0.92013317 0.35154241 -0.17236857 -0.92013317 0.35154241 -0.17236857 -0.84154809\n\t\t 0.52919072 -0.10834075 -0.88079482 0.45054448 -0.14542073 -0.78399014 0.60811156\n\t\t -0.12463763 -0.88079482 0.45054448 -0.14542073 -0.84154809 0.52919072 -0.10834075\n\t\t -0.84154809 0.52919072 -0.10834075 -0.72051173 0.6933803 0.00692765 -0.78399014 0.60811156\n\t\t -0.12463763 -0.84154809 0.52919072 -0.10834075 -0.92013317 0.35154241 -0.17236857\n\t\t -0.85647154 0.45985261 -0.23447374 -0.85647154 0.45985261 -0.23447374 -0.71898574\n\t\t 0.64738888 -0.25278488 -0.84154809 0.52919072 -0.10834075 -0.72051173 0.6933803 0.00692765\n\t\t -0.84154809 0.52919072 -0.10834075 -0.71898574 0.64738888 -0.25278488 -0.71898574\n\t\t 0.64738888 -0.25278488 -0.31708762 0.93780315 -0.14114818 -0.72051173 0.6933803 0.00692765\n\t\t -0.074984282 0.99279761 0.093325526 -0.10605212 0.98879963 0.10492256 -0.11853419\n\t\t 0.98901325 0.088015303 -0.11853419 0.98901325 0.088015303 -0.062715843 0.99526966\n\t\t 0.073915757 -0.074984282 0.99279761 0.093325526 -0.055147257 0.99591053 -0.071352348\n\t\t -0.074984282 0.99279761 0.093325526 -0.062715843 0.99526966 0.073915757 -0.062715843\n\t\t 0.99526966 0.073915757 -0.31708762 0.93780315 -0.14114818 -0.055147257 0.99591053\n\t\t -0.071352348 -0.074984282 0.99279761 0.093325526 -0.055147257 0.99591053 -0.071352348\n\t\t 0.032166205 0.99060029 -0.13287766 0.032166205 0.99060029 -0.13287766 -0.052370071\n\t\t 0.9962157 0.069215909 -0.074984282 0.99279761 0.093325526 -0.10605212 0.98879963\n\t\t 0.10492256 -0.074984282 0.99279761 0.093325526 -0.052370071 0.9962157 0.069215909\n\t\t -0.052370071 0.9962157 0.069215909 -0.020844452 0.99700916 0.07409887 -0.10605212\n\t\t 0.98879963 0.10492256 0.87847525 0.27729142 -0.38904998 0.83217859 0.40363804 -0.38016909\n\t\t 0.76061267 0.45030081 -0.46757412 0.18478931 0.81789607 -0.54484701 0.1853997 0.81652272\n\t\t -0.54667813 -0.082827501 0.85613567 -0.51002538 -0.082827501 0.85613567 -0.51002538\n\t\t -0.019776259 0.85540324 -0.51753294 0.18478931 0.81789607 -0.54484701 -0.29255071\n\t\t 0.82882148 -0.4769128 -0.019776259 0.85540324 -0.51753294 -0.082827501 0.85613567\n\t\t -0.51002538 -0.082827501 0.85613567 -0.51002538 -0.29361886 0.82570863 -0.48161265\n\t\t -0.29255071 0.82882148 -0.4769128 0.74068409 0.46531591 -0.48457292 0.74153864 0.47093132\n\t\t -0.47779781 0.83577979 0.32294711 -0.44398332 0.83577979 0.32294711 -0.44398332 0.86864829\n\t\t 0.26749498 -0.41694391 0.74068409 0.46531591 -0.48457292 0.94091612 0.13980556 -0.30838954\n\t\t 0.86864829 0.26749498 -0.41694391 0.83577979 0.32294711 -0.44398332 0.83577979 0.32294711\n\t\t -0.44398332 0.9407025 0.13782185 -0.30988494 0.94091612 0.13980556 -0.30838954 0.94091612\n\t\t 0.13980556 -0.30838954 0.9407025 0.13782185 -0.30988494 0.95809805 0.18839104 -0.21567433\n\t\t 0.95809805 0.18839104 -0.21567433 0.95901358 0.19223638 -0.20807521 0.94091612 0.13980556\n\t\t -0.30838954 -0.78545505 0.56227279 -0.2586444 -0.7868284 0.56285262 -0.25302899 -0.91531128\n\t\t 0.37372941 -0.14993747 -0.91531128 0.37372941 -0.14993747 -0.86535245 0.45484757\n\t\t -0.21030308 -0.78545505 0.56227279 -0.2586444 -0.96588039 0.25022095 -0.066469327\n\t\t -0.86535245 0.45484757 -0.21030308 -0.91531128 0.37372941 -0.14993747 -0.91531128\n\t\t 0.37372941 -0.14993747 -0.96588039 0.25022095 -0.066469327 -0.96588039 0.25022095\n\t\t -0.066469327 0.1053502 -0.987701 0.11526848 0.10556383 -0.987701 0.11523797 0.10473982\n\t\t -0.98800617 0.11340685 0.10473982 -0.98800617 0.11340685 0.10449568 -0.98809773 0.112827\n\t\t 0.1053502 -0.987701 0.11526848 0.10495345 -0.98751789 0.1172827 0.10556383 -0.987701\n\t\t 0.11523797 0.1053502 -0.987701 0.11526848 0.1053502 -0.987701 0.11526848 0.10473982\n\t\t -0.98745686 0.11795411 0.10495345 -0.98751789 0.1172827 0.17856354 0.88039798 -0.43925297;\n\tsetAttr \".n[31540:31705]\" -type \"float3\"  0.14511526 0.82442701 -0.5469833 -0.070620082\n\t\t 0.8306222 -0.55229354 -0.070620082 0.8306222 -0.55229354 -0.010956423 0.90026546\n\t\t -0.4351635 0.17856354 0.88039798 -0.43925297 -0.29316106 0.86568785 -0.40574363 -0.010956423\n\t\t 0.90026546 -0.4351635 -0.070620082 0.8306222 -0.55229354 -0.070620082 0.8306222 -0.55229354\n\t\t -0.31165525 0.77175188 -0.55427724 -0.29316106 0.86568785 -0.40574363 -0.78197592\n\t\t 0.58827454 -0.20590843 -0.78771341 0.58790833 -0.18387407 -0.87615603 0.34501144\n\t\t -0.33652765 -0.87615603 0.34501144 -0.33652765 -0.85744816 0.48011693 -0.18497272\n\t\t -0.78197592 0.58827454 -0.20590843 -0.97100747 0.22678274 -0.075289175 -0.85744816\n\t\t 0.48011693 -0.18497272 -0.87615603 0.34501144 -0.33652765 -0.87615603 0.34501144\n\t\t -0.33652765 -0.9110691 0.098360844 -0.40031129 -0.97100747 0.22678274 -0.075289175\n\t\t 0.72814101 0.46357638 -0.50486773 0.76436639 0.52015769 -0.38093206 0.87472141 0.34574443\n\t\t -0.33954898 0.87472141 0.34574443 -0.33954898 0.83806872 0.28840014 -0.46305737 0.72814101\n\t\t 0.46357638 -0.50486773 0.90850544 0.1029392 -0.40498063 0.83806872 0.28840014 -0.46305737\n\t\t 0.87472141 0.34574443 -0.33954898 0.87472141 0.34574443 -0.33954898 0.94903404 0.14673327\n\t\t -0.27881712 0.90850544 0.1029392 -0.40498063 0.90850544 0.1029392 -0.40498063 0.94903404\n\t\t 0.14673327 -0.27881712 0.9501937 0.1390121 -0.27881712 0.9501937 0.1390121 -0.27881712\n\t\t 0.92028558 0.10968377 -0.37546921 0.90850544 0.1029392 -0.40498063 0.78160948 0.21460636\n\t\t -0.58565021 0.83806872 0.28840014 -0.46305737 0.90850544 0.1029392 -0.40498063 0.90850544\n\t\t 0.1029392 -0.40498063 0.84908599 0.05945028 -0.52482682 0.78160948 0.21460636 -0.58565021\n\t\t 0.84908599 0.05945028 -0.52482682 0.90850544 0.1029392 -0.40498063 0.92028558 0.10968377\n\t\t -0.37546921 0.66557807 0.39008772 -0.63621938 0.72814101 0.46357638 -0.50486773 0.83806872\n\t\t 0.28840014 -0.46305737 0.83806872 0.28840014 -0.46305737 0.78160948 0.21460636 -0.58565021\n\t\t 0.66557807 0.39008772 -0.63621938 0.14511526 0.82442701 -0.5469833 0.10992744 0.73824275\n\t\t -0.66548669 -0.10589945 0.73009419 -0.67503899 -0.10589945 0.73009419 -0.67503899\n\t\t -0.070620082 0.8306222 -0.55229354 0.14511526 0.82442701 -0.5469833 -0.31165525 0.77175188\n\t\t -0.55427724 -0.070620082 0.8306222 -0.55229354 -0.10589945 0.73009419 -0.67503899\n\t\t -0.10589945 0.73009419 -0.67503899 -0.31662974 0.67061353 -0.67079687 -0.31165525\n\t\t 0.77175188 -0.55427724 0.92028558 0.10968377 -0.37546921 0.85647142 0.064424805 -0.51213109\n\t\t 0.84908599 0.05945028 -0.52482682 -0.75579101 0.41404435 -0.50727874 -0.77025676\n\t\t 0.42332196 -0.47691277 -0.71718502 0.12778074 -0.685049 -0.71718502 0.12778074 -0.685049\n\t\t -0.87615603 0.34501144 -0.33652765 -0.75579101 0.41404435 -0.50727874 -0.9110691\n\t\t 0.098360844 -0.40031129 -0.87615603 0.34501144 -0.33652765 -0.71718502 0.12778074\n\t\t -0.685049 -0.71718502 0.12778074 -0.685049 -0.75136572 -0.010986945 -0.65974915 -0.9110691\n\t\t 0.098360844 -0.40031129 0.096652165 -0.14969334 -0.98397779 0.24024172 -0.068086796\n\t\t -0.96829128 0.28586695 -0.14987639 -0.94644004 0.28586695 -0.14987639 -0.94644004\n\t\t 0.090884179 -0.19940798 -0.97567677 0.096652165 -0.14969334 -0.98397779 0.090884179\n\t\t -0.19940798 -0.97567677 0.28586695 -0.14987639 -0.94644004 0.29493093 -0.1503952\n\t\t -0.94360179 0.0018311198 -0.029633548 -0.99954224 0.081728548 0.071169116 -0.99407941\n\t\t 0.24024172 -0.068086796 -0.96829128 0.24024172 -0.068086796 -0.96829128 0.096652165\n\t\t -0.14969334 -0.98397779 0.0018311198 -0.029633548 -0.99954224 0.081728548 0.071169116\n\t\t -0.99407941 0.0018311198 -0.029633548 -0.99954224 -0.11752677 -0.025971364 -0.99270606\n\t\t -0.11752677 -0.025971364 -0.99270606 -0.1117283 0.10657052 -0.98797572 0.081728548\n\t\t 0.071169116 -0.99407941 -0.31269267 0.10119921 -0.94442582 -0.1117283 0.10657052\n\t\t -0.98797572 -0.11752677 -0.025971364 -0.99270606 -0.11752677 -0.025971364 -0.99270606\n\t\t -0.32026127 0.09729284 -0.94228947 -0.31269267 0.10119921 -0.94442582 0.29493093\n\t\t -0.1503952 -0.94360179 0.069094002 -0.32233652 -0.94409007 0.090884179 -0.19940798\n\t\t -0.97567677 -0.31269267 0.10119921 -0.94442582 -0.32026127 0.09729284 -0.94228947\n\t\t -0.57997376 -0.019196382 -0.81438643 -0.57997376 -0.019196382 -0.81438643 -0.71718502\n\t\t 0.12778074 -0.685049 -0.31269267 0.10119921 -0.94442582 -0.75136572 -0.010986945\n\t\t -0.65974915 -0.71718502 0.12778074 -0.685049 -0.57997376 -0.019196382 -0.81438643\n\t\t -0.57997376 -0.019196382 -0.81438643 -0.72298348 -0.0011294598 -0.69084752 -0.75136572\n\t\t -0.010986945 -0.65974915 0.12454635 -0.98861653 0.084048048 0.11380383 -0.99203461\n\t\t -0.053834576 0.10882931 -0.99313325 -0.042329099 0.10882931 -0.99313325 -0.042329099\n\t\t 0.11859524 -0.98965418 0.08069101 0.12454635 -0.98861653 0.084048048 0.12326457 -0.98956263\n\t\t 0.074312642 0.11859524 -0.98965418 0.08069101 0.10882931 -0.99313325 -0.042329099\n\t\t 0.10882931 -0.99313325 -0.042329099 0.1150856 -0.992706 -0.035218284 0.12326457 -0.98956263\n\t\t 0.074312642 0.093631096 -0.98199409 -0.16397588 0.10882931 -0.99313325 -0.042329099\n\t\t 0.11380383 -0.99203461 -0.053834576 0.1150856 -0.992706 -0.035218284 0.10882931 -0.99313325\n\t\t -0.042329099 0.093631096 -0.98199409 -0.16397588 0.11380383 -0.99203461 -0.053834576\n\t\t 0.10330546 -0.98367256 -0.14728226 0.093631096 -0.98199409 -0.16397588 0.093631096\n\t\t -0.98199409 -0.16397588 0.095706351 -0.97759944 -0.18729202 0.1150856 -0.992706 -0.035218284\n\t\t -0.096438363 -0.41193894 -0.90606397 -0.071413137 -0.54493856 -0.83541363 -0.067140549\n\t\t -0.54957736 -0.83272797 -0.070497595 -0.53718686 -0.84047967 -0.071413137 -0.54493856\n\t\t -0.83541363 -0.096438363 -0.41193894 -0.90606397 -0.067140549 -0.54957736 -0.83272797\n\t\t -0.10400696 -0.37907049 -0.91949219 -0.096438363 -0.41193894 -0.90606397 -0.096438363\n\t\t -0.41193894 -0.90606397 0.069094002 -0.32233652 -0.94409007 -0.070497595 -0.53718686\n\t\t -0.84047967 0.0020143024 -0.2613911 -0.96520889 -0.019073974 -0.30133983 -0.95330667\n\t\t -0.023407608 -0.28986487 -0.95675528 -0.023407608 -0.28986487 -0.95675528 0.0060732639\n\t\t -0.26123852 -0.96523941;\n\tsetAttr \".n[31706:31871]\" -type \"float3\"  0.0020143024 -0.2613911 -0.96520889 0.029969268\n\t\t -0.29227582 -0.95583969 0.0020143024 -0.2613911 -0.96520889 0.0060732639 -0.26123852\n\t\t -0.96523941 0.0060732639 -0.26123852 -0.96523941 0.031220529 -0.2998139 -0.95345926\n\t\t 0.029969268 -0.29227582 -0.95583969 -0.018768778 -0.34037301 -0.94009215 0.029969268\n\t\t -0.29227582 -0.95583969 0.031220529 -0.2998139 -0.95345926 0.031220529 -0.2998139\n\t\t -0.95345926 -0.020508332 -0.34632412 -0.9378643 -0.018768778 -0.34037301 -0.94009215\n\t\t -0.022888765 -0.38178661 -0.92394787 -0.018768778 -0.34037301 -0.94009215 -0.020508332\n\t\t -0.34632412 -0.9378643 -0.020508332 -0.34632412 -0.9378643 -0.023987429 -0.38621178\n\t\t -0.92208624 -0.022888765 -0.38178661 -0.92394787 -0.022705644 -0.40787995 -0.91271698\n\t\t -0.022888765 -0.38178661 -0.92394787 -0.023987429 -0.38621178 -0.92208624 -0.023987429\n\t\t -0.38621178 -0.92208624 -0.023041349 -0.41087076 -0.91137421 -0.022705644 -0.40787995\n\t\t -0.91271698 0.028748538 -0.33420825 -0.94204533 -0.023407608 -0.28986487 -0.95675528\n\t\t -0.019073974 -0.30133983 -0.95330667 -0.019073974 -0.30133983 -0.95330667 0.031342614\n\t\t -0.33396411 -0.94204533 0.028748538 -0.33420825 -0.94204533 0.096926875 -0.27759638\n\t\t -0.95577866 0.028748538 -0.33420825 -0.94204533 0.031342614 -0.33396411 -0.94204533\n\t\t 0.031342614 -0.33396411 -0.94204533 0.089724511 -0.28150275 -0.95532089 0.096926875\n\t\t -0.27759638 -0.95577866 0.12195203 -0.21863464 -0.96813869 0.096926875 -0.27759638\n\t\t -0.95577866 0.089724511 -0.28150275 -0.95532089 0.089724511 -0.28150275 -0.95532089\n\t\t 0.12598047 -0.21155433 -0.96917629 0.12195203 -0.21863464 -0.96813869 0.1438338 -0.18796353\n\t\t -0.97155672 0.12195203 -0.21863464 -0.96813869 0.12598047 -0.21155433 -0.96917629\n\t\t 0.12598047 -0.21155433 -0.96917629 0.1438338 -0.18796353 -0.97155672 0.1438338 -0.18796353\n\t\t -0.97155672 0.020721985 0.26953954 0.9627369 0.0073853889 0.29233685 0.956267 0.0061951648\n\t\t 0.29960027 0.9540391 0.0061951648 0.29960027 0.9540391 0.023346575 0.27362901 0.96154666\n\t\t 0.020721985 0.26953954 0.9627369 0.04043692 0.33371997 0.94177067 0.020721985 0.26953954\n\t\t 0.9627369 0.023346575 0.27362901 0.96154666 0.023346575 0.27362901 0.96154666 0.052461218\n\t\t 0.32303852 0.9449141 0.04043692 0.33371997 0.94177067 -0.035737302 0.41492972 0.90911579\n\t\t 0.04043692 0.33371997 0.94177067 0.052461218 0.32303852 0.9449141 0.052461218 0.32303852\n\t\t 0.9449141 -0.024414936 0.41499075 0.90948206 -0.035737302 0.41492972 0.90911579 -0.12088392\n\t\t 0.35493028 0.92703027 -0.035737302 0.41492972 0.90911579 -0.024414936 0.41499075\n\t\t 0.90948206 -0.024414936 0.41499075 0.90948206 -0.13620421 0.33851135 0.93102819 -0.12088392\n\t\t 0.35493028 0.92703027 0.081911594 0.29380178 0.95233011 0.0061951648 0.29960027 0.9540391\n\t\t 0.0073853889 0.29233685 0.956267 0.0073853889 0.29233685 0.956267 0.094881952 0.30552089\n\t\t 0.9474166 0.081911594 0.29380178 0.95233011 0.03411961 0.28220472 0.95873898 0.081911594\n\t\t 0.29380178 0.95233011 0.094881952 0.30552089 0.9474166 0.094881952 0.30552089 0.9474166\n\t\t 0.0321359 0.2877591 0.95715201 0.03411961 0.28220472 0.95873898 0.02645945 0.31812501\n\t\t 0.94766074 0.03411961 0.28220472 0.95873898 0.0321359 0.2877591 0.95715201 0.0321359\n\t\t 0.2877591 0.95715201 0.023346558 0.32706693 0.94470048 0.02645945 0.31812501 0.94766074\n\t\t -0.12088392 0.35493028 0.92703027 -0.13620421 0.33851135 0.93102819 -0.17709899 0.24600972\n\t\t 0.95294046 -0.17709899 0.24600972 0.95294046 -0.17987616 0.23923461 0.95413065 -0.12088392\n\t\t 0.35493028 0.92703027 -0.20374162 0.20203255 0.95791495 -0.17987616 0.23923461 0.95413065\n\t\t -0.17709899 0.24600972 0.95294046 -0.17709899 0.24600972 0.95294046 -0.20374162 0.20203255\n\t\t 0.95791495 -0.20374162 0.20203255 0.95791495 0.48146003 -0.089663297 -0.87185276\n\t\t 0.7423017 0.044923428 -0.66850793 0.6412549 -0.016937634 -0.76711327 0.6412549 -0.016937634\n\t\t -0.76711327 0.47230449 -0.097323447 -0.87600327 0.48146003 -0.089663297 -0.87185276\n\t\t 0.11340684 -0.22672205 -0.96731466 0.48146003 -0.089663297 -0.87185276 0.47230449\n\t\t -0.097323447 -0.87600327 0.47230449 -0.097323447 -0.87600327 0.10980567 -0.22928561\n\t\t -0.96713156 0.11340684 -0.22672205 -0.96731466 0.0065615592 -0.25714901 -0.9663381\n\t\t 0.11340684 -0.22672205 -0.96731466 0.10980567 -0.22928561 -0.96713156 0.10980567\n\t\t -0.22928561 -0.96713156 0.019104665 -0.25348681 -0.96713156 0.0065615592 -0.25714901\n\t\t -0.9663381 -0.0021667341 -0.2587665 -0.96591085 0.0065615592 -0.25714901 -0.9663381\n\t\t 0.019104665 -0.25348681 -0.96713156 0.019104665 -0.25348681 -0.96713156 0.012543186\n\t\t -0.25428027 -0.96704 -0.0021667341 -0.2587665 -0.96591085 -0.86635959 0.47907931\n\t\t -0.14081243 -0.86635959 0.47907931 -0.14081243 -0.86635959 0.47907931 -0.14081243\n\t\t -0.81594306 0.56599605 -0.11767942 -0.82024616 0.55949557 -0.11883912 -0.81731635\n\t\t 0.56419545 -0.1168249 -0.81731635 0.56419545 -0.1168249 -0.81279963 0.57115364 -0.11444446\n\t\t -0.81594306 0.56599605 -0.11767942 -0.81127369 0.57426655 -0.10965305 -0.81594306\n\t\t 0.56599605 -0.11767942 -0.81279963 0.57115364 -0.11444446 -0.81279963 0.57115364\n\t\t -0.11444446 -0.80901533 0.57817292 -0.10553304 -0.81127369 0.57426655 -0.10965305\n\t\t -0.99407935 -0.10547227 0.02533037 -0.99914551 -0.039186075 0.011017185 -0.99914551\n\t\t -0.039216593 0.011017185 -0.99914551 -0.039216593 0.011017185 -0.99441504 -0.10235938\n\t\t 0.024658963 -0.99407935 -0.10547227 0.02533037 -0.9849543 -0.1681878 0.03888059 -0.99407935\n\t\t -0.10547227 0.02533037 -0.99441504 -0.10235938 0.024658963 -0.99441504 -0.10235938\n\t\t 0.024658963 -0.98498482 -0.1681878 0.03888059 -0.9849543 -0.1681878 0.03888059 -0.93804729\n\t\t -0.33814538 0.075502813 -0.9849543 -0.1681878 0.03888059 -0.98498482 -0.1681878 0.03888059\n\t\t -0.98498482 -0.1681878 0.03888059 -0.94952226 -0.30561265 0.070467263 -0.93804729\n\t\t -0.33814538 0.075502813 -0.72048074 -0.67519176 0.15805541 -0.93804729 -0.33814538\n\t\t 0.075502813 -0.94952226 -0.30561265 0.070467263 -0.94952226 -0.30561265 0.070467263\n\t\t -0.76738775 -0.62434793 0.1456954 -0.72048074 -0.67519176 0.15805541;\n\tsetAttr \".n[31872:32037]\" -type \"float3\"  -0.81130421 0.57499897 -0.10534994 -0.81127369\n\t\t 0.57426655 -0.10965305 -0.80901533 0.57817292 -0.10553304 -0.80901533 0.57817292\n\t\t -0.10553304 -0.8077336 0.58055335 -0.10226758 -0.81130421 0.57499897 -0.10534994\n\t\t 0.98016292 0.1932435 -0.04370252 0.97900319 0.20014068 -0.037904002 0.97900319 0.20007965\n\t\t -0.038819559 0.97900319 0.20007965 -0.038819559 0.98025447 0.19266365 -0.044160299\n\t\t 0.98016292 0.1932435 -0.04370252 0.9815973 0.18610217 -0.042756446 0.98016292 0.1932435\n\t\t -0.04370252 0.98025447 0.19266365 -0.044160299 0.98025447 0.19266365 -0.044160299\n\t\t 0.9815973 0.18610217 -0.042756446 0.9815973 0.18610217 -0.042756446 -0.27625325 -0.9392072\n\t\t 0.20377216 -0.39603844 -0.89678651 0.19718015 -0.45033085 -0.87243277 0.18976416\n\t\t -0.45033085 -0.87243277 0.18976416 -0.27628377 -0.9392072 0.20380268 -0.27625325\n\t\t -0.9392072 0.20377216 -0.76738775 -0.62434793 0.1456954 -0.45033085 -0.87243277 0.18976416\n\t\t -0.39603844 -0.89678651 0.19718015 -0.39603844 -0.89678651 0.19718015 -0.72048074\n\t\t -0.67519176 0.15805541 -0.76738775 -0.62434793 0.1456954 0.94906455 0.1963564 0.24631487\n\t\t 0.96667373 0.17706871 0.18478955 0.9542222 0.24878721 0.16586809 0.9542222 0.24878721\n\t\t 0.16586809 0.93044823 0.27933624 0.23700672 0.94906455 0.1963564 0.24631487 0.97964424\n\t\t -0.11722127 0.16281626 0.97311324 -0.18015045 0.1434065 0.98074275 0.13415968 0.14188054\n\t\t 0.98074275 0.13415968 0.14188054 0.98117 0.1206705 0.15066987 0.97964424 -0.11722127\n\t\t 0.16281626 0.98117 0.1206705 0.15066987 0.98074275 0.13415968 0.14188054 0.97509682\n\t\t 0.18655996 0.11969358 0.97509682 0.18655996 0.11969358 0.97442544 0.18219581 0.13141268\n\t\t 0.98117 0.1206705 0.15066987 3.0907611e-07 -0.99957275 -0.029084064 3.0907611e-07\n\t\t -0.99957275 -0.029084064 3.0907611e-07 -0.99957275 -0.029084064 3.0907611e-07 -0.99957275\n\t\t -0.029084064 3.0907611e-07 -0.99957275 -0.029084064 3.0907611e-07 -0.99957275 -0.029084064\n\t\t 3.0907611e-07 -0.99957275 -0.029084064 3.0907611e-07 -0.99957275 -0.029084064 3.0907611e-07\n\t\t -0.99957275 -0.029084064 0.12128086 -0.98800617 0.095248342 0.11984649 -0.9884029\n\t\t 0.093173087 0.11972442 -0.98837239 0.093569823 0.11972442 -0.98837239 0.093569823\n\t\t 0.12152501 -0.98779255 0.097140491 0.12128086 -0.98800617 0.095248342 0.12949033\n\t\t -0.98510689 0.11301012 0.12128086 -0.98800617 0.095248342 0.12152501 -0.98779255\n\t\t 0.097140491 0.12152501 -0.98779255 0.097140491 0.13803552 -0.98251283 0.12488181\n\t\t 0.12949033 -0.98510689 0.11301012 0.12949033 -0.98510689 0.11301012 0.13803552 -0.98251283\n\t\t 0.12488181 0.14749625 -0.9796136 0.13614315 -0.14883907 0.97979671 -0.13354908 -0.14883907\n\t\t 0.97979671 -0.13354908 -0.14883907 0.97979671 -0.13354908 -0.10364077 -0.24585722\n\t\t -0.96374398 -0.098330565 -0.2308116 -0.96798611 -0.10553293 -0.22464685 -0.96868801\n\t\t -0.10553293 -0.22464685 -0.96868801 -0.10281678 -0.24314107 -0.96450698 -0.10364077\n\t\t -0.24585722 -0.96374398 -0.11752677 -0.025971364 -0.99270606 -0.10553293 -0.22464685\n\t\t -0.96868801 -0.098330565 -0.2308116 -0.96798611 -0.098330565 -0.2308116 -0.96798611\n\t\t -0.037842859 -0.29721981 -0.9540391 -0.11752677 -0.025971364 -0.99270606 -0.10553293\n\t\t -0.22464685 -0.96868801 -0.11752677 -0.025971364 -0.99270606 0.0018311198 -0.029633548\n\t\t -0.99954224 0.0018311198 -0.029633548 -0.99954224 0.096652165 -0.14969334 -0.98397779\n\t\t -0.10553293 -0.22464685 -0.96868801 -0.10281678 -0.24314107 -0.96450698 -0.10553293\n\t\t -0.22464685 -0.96868801 0.096652165 -0.14969334 -0.98397779 0.096652165 -0.14969334\n\t\t -0.98397779 0.090884179 -0.19940798 -0.97567677 -0.10281678 -0.24314107 -0.96450698\n\t\t -0.10281678 -0.24314107 -0.96450698 0.090884179 -0.19940798 -0.97567677 0.069094002\n\t\t -0.32233652 -0.94409007 0.069094002 -0.32233652 -0.94409007 -0.096438363 -0.41193894\n\t\t -0.90606397 -0.10281678 -0.24314107 -0.96450698 -0.10364077 -0.24585722 -0.96374398\n\t\t -0.10281678 -0.24314107 -0.96450698 -0.096438363 -0.41193894 -0.90606397 -0.096438363\n\t\t -0.41193894 -0.90606397 -0.10400696 -0.37907049 -0.91949219 -0.10364077 -0.24585722\n\t\t -0.96374398 0.49568185 -0.712668 0.49632257 0.49580395 -0.72609615 0.47633296 0.49711621\n\t\t -0.72209823 0.48106334 0.49711621 -0.72209823 0.48106334 0.59089959 -0.5880304 0.55226302\n\t\t 0.49568185 -0.712668 0.49632257 0.48344392 -0.68321764 0.54722744 0.49568185 -0.712668\n\t\t 0.49632257 0.59089959 -0.5880304 0.55226302 0.59089959 -0.5880304 0.55226302 0.52958786\n\t\t -0.59187573 0.60759306 0.48344392 -0.68321764 0.54722744 0.16440351 -0.97296053 0.16208388\n\t\t 0.16412884 -0.97296053 0.1622975 0.16687551 -0.96862692 0.18402669 0.16296914 -0.97473061\n\t\t 0.1527147 0.16412884 -0.97296053 0.1622975 0.16440351 -0.97296053 0.16208388 0.16687551\n\t\t -0.96862692 0.18402669 0.16946958 -0.96792501 0.18536951 0.16440351 -0.97296053 0.16208388\n\t\t 0.16946958 -0.96792501 0.18536951 0.16687551 -0.96862692 0.18402669 0.14502425 -0.96493417\n\t\t 0.2186652 0.38660869 -0.65984052 0.64427632 0.48344392 -0.68321764 0.54722744 0.52958786\n\t\t -0.59187573 0.60759306 0.14502425 -0.96493417 0.2186652 0.14395611 -0.96511728 0.21857364\n\t\t 0.16946958 -0.96792501 0.18536951 0.52958786 -0.59187573 0.60759306 0.42085043 -0.58171314\n\t\t 0.69603568 0.38660869 -0.65984052 0.64427632 0.38660869 -0.65984052 0.64427632 0.42085043\n\t\t -0.58171314 0.69603568 0.22339566 -0.55397189 0.80196548 0.22339566 -0.55397189 0.80196548\n\t\t 0.21127984 -0.61574131 0.75908697 0.38660869 -0.65984052 0.64427632 0.16440351 -0.97296053\n\t\t 0.16208388 0.16193151 -0.97521889 0.15054788 0.16296914 -0.97473061 0.1527147 1.8661767e-07\n\t\t -0.60353398 0.79729611 0.21127984 -0.61574131 0.75908697 0.22339566 -0.55397189 0.80196548\n\t\t 0.077791981 -0.95660269 0.28077036 0.08249183 -0.95608389 0.28119761 0.00048859086\n\t\t -0.95312357 0.30249953 0.077791981 -0.95660269 0.28077036 0.14395611 -0.96511728\n\t\t 0.21857364 0.14502425 -0.96493417 0.2186652 0.14502425 -0.96493417 0.2186652 0.08249183\n\t\t -0.95608389 0.28119761 0.077791981 -0.95660269 0.28077036 0.00048859086 -0.95312357\n\t\t 0.30249953;\n\tsetAttr \".n[32038:32203]\" -type \"float3\"  0.00061066489 -0.95312357 0.30253005\n\t\t 0.077791981 -0.95660269 0.28077036 0.22339566 -0.55397189 0.80196548 1.6803705e-07\n\t\t -0.54344302 0.83941168 1.8661767e-07 -0.60353398 0.79729611 0.59089959 -0.5880304\n\t\t 0.55226302 0.69902653 -0.18842101 0.68980986 0.73445857 -0.35862273 0.57612842 0.73445857\n\t\t -0.35862273 0.57612842 0.67333001 -0.4625383 0.57676935 0.59089959 -0.5880304 0.55226302\n\t\t 0.67333001 -0.4625383 0.57676935 0.73445857 -0.35862273 0.57612842 0.81542414 -0.32190898\n\t\t 0.48103279 0.14990664 0.93322557 0.32645643 0.091494188 0.98663288 0.13470863 -3.0651881e-07\n\t\t 0.99130225 0.13147366 -3.0651881e-07 0.99130225 0.13147366 -2.9211859e-07 0.944731\n\t\t 0.32776874 0.14990664 0.93322557 0.32645643 -2.6963122e-07 0.87200528 -0.48945591\n\t\t -0.047792256 0.87105924 -0.48878449 -0.081393115 0.81493568 -0.57377857 -0.081393115\n\t\t 0.81493568 -0.57377857 -2.4902175e-07 0.80535287 -0.59276104 -2.6963122e-07 0.87200528\n\t\t -0.48945591 -2.4902175e-07 0.80535287 -0.59276104 -0.081393115 0.81493568 -0.57377857\n\t\t -0.12338655 0.71739846 -0.68562889 -0.12338655 0.71739846 -0.68562889 -2.2101399e-07\n\t\t 0.71477395 -0.6993317 -2.4902175e-07 0.80535287 -0.59276104 3.0299827e-05 0.70723587\n\t\t -0.70696133 -2.2101399e-07 0.71477395 -0.6993317 -0.12338655 0.71739846 -0.68562889\n\t\t 0.22644746 -0.38184747 0.89602345 1.16938e-07 -0.3781853 0.92571795 1.430207e-07\n\t\t -0.46253848 0.88659328 1.430207e-07 -0.46253848 0.88659328 0.22379237 -0.46784863\n\t\t 0.85497612 0.22644746 -0.38184747 0.89602345 0.22339566 -0.55397189 0.80196548 0.22379237\n\t\t -0.46784863 0.85497612 1.430207e-07 -0.46253848 0.88659328 1.430207e-07 -0.46253848\n\t\t 0.88659328 1.6803705e-07 -0.54344302 0.83941168 0.22339566 -0.55397189 0.80196548\n\t\t 1.16938e-07 -0.3781853 0.92571795 0.22644746 -0.38184747 0.89602345 0.2295298 -0.28980365\n\t\t 0.92913604 0.2295298 -0.28980365 0.92913604 8.9307719e-08 -0.28882712 0.95736563\n\t\t 1.16938e-07 -0.3781853 0.92571795 8.9307719e-08 -0.28882712 0.95736563 0.2295298\n\t\t -0.28980365 0.92913604 0.23548083 -0.036377918 0.97119051 0.23548083 -0.036377918\n\t\t 0.97119051 1.089922e-08 -0.035248805 0.99935913 8.9307719e-08 -0.28882712 0.95736563\n\t\t 0.3456527 -0.19910273 -0.91695911 0.34061715 -0.19708851 -0.91927856 0.34479818 -0.20014036\n\t\t -0.91708124 0.3456527 -0.19910273 -0.91695911 0.34479818 -0.20014036 -0.91708124\n\t\t 0.34806365 -0.19800407 -0.91628772 0.34479818 -0.20014036 -0.91708124 0.34476766\n\t\t -0.20014036 -0.91708124 0.34806365 -0.19800407 -0.91628772 0.3456527 -0.19910273\n\t\t -0.91695911 0.34806365 -0.19800407 -0.91628772 0.35062721 -0.20160525 -0.91451764\n\t\t 0.34806365 -0.19800407 -0.91628772 0.33304855 -0.21140169 -0.91888177 0.35062721\n\t\t -0.20160525 -0.91451764 0.34806365 -0.19800407 -0.91628772 0.35065773 -0.1984008\n\t\t -0.9152196 0.33304855 -0.21140169 -0.91888177 0.33304855 -0.21140169 -0.91888177\n\t\t 0.25046548 -0.28235722 -0.92599261 0.35062721 -0.20160525 -0.91451764 0.25046548\n\t\t -0.28235722 -0.92599261 0.5601368 -0.1294594 -0.81820124 0.35062721 -0.20160525 -0.91451764\n\t\t 0.3456527 -0.19910273 -0.91695911 0.35062721 -0.20160525 -0.91451764 0.34141064 -0.19775991\n\t\t -0.91885126 0.88570827 -0.46330121 0.028534843 0.89031661 -0.44569203 -0.09311194\n\t\t 0.89071333 -0.44492909 -0.092715204 0.88570827 -0.46330121 0.028534843 0.89071333\n\t\t -0.44492909 -0.092715204 0.89794624 -0.43211129 -0.083284982 0.88570827 -0.46330121\n\t\t 0.028534843 0.89794624 -0.43211129 -0.083284982 0.91293079 -0.40769649 -0.01678515\n\t\t 0.88570827 -0.46330121 0.028534843 0.91293079 -0.40769649 -0.01678515 0.84591216\n\t\t -0.47816372 0.23609123 0.91293079 -0.40769649 -0.01678515 0.90206623 -0.43107367\n\t\t 0.020142248 0.84591216 -0.47816372 0.23609123 0.91293079 -0.40769649 -0.01678515\n\t\t 0.9020052 -0.43119577 0.020325359 0.90206623 -0.43107367 0.020142248 0.88570827 -0.46330121\n\t\t 0.028534843 0.84591216 -0.47816372 0.23609123 0.83223987 -0.47431839 0.2869961 0.83910662\n\t\t -0.48493883 0.24637596 0.85509825 -0.43949676 0.2749413 0.89214772 -0.4452953 0.075716451\n\t\t 0.39628312 -0.88656259 -0.23862417 0.47187743 -0.80867934 -0.35114592 0.44758472\n\t\t -0.84405029 -0.29526651 0.85509825 -0.43949676 0.2749413 0.83910662 -0.48493883 0.24637596\n\t\t 0.83977801 -0.48362651 0.24668114 0.83977801 -0.48362651 0.24668114 0.86916727 -0.44529527\n\t\t 0.21497241 0.85509825 -0.43949676 0.2749413 0.58494842 -0.62846756 -0.51264983 0.44758472\n\t\t -0.84405029 -0.29526651 0.47187743 -0.80867934 -0.35114592 0.47187743 -0.80867934\n\t\t -0.35114592 0.5867185 -0.58162165 -0.5633716 0.58494842 -0.62846756 -0.51264983 0.83910662\n\t\t -0.48493883 0.24637596 0.79979873 -0.54008585 0.26184884 0.80419344 -0.53358537 0.26172677\n\t\t 0.80419344 -0.53358537 0.26172677 0.83977801 -0.48362651 0.24668114 0.83910662 -0.48493883\n\t\t 0.24637596 0.6516313 -0.25006852 -0.71608633 0.58494842 -0.62846756 -0.51264983 0.5867185\n\t\t -0.58162165 -0.5633716 0.5867185 -0.58162165 -0.5633716 0.63893557 -0.23023151 -0.73397017\n\t\t 0.6516313 -0.25006852 -0.71608633 0.61409342 0.033692565 -0.78850675 0.6516313 -0.25006852\n\t\t -0.71608633 0.63893557 -0.23023151 -0.73397017 0.63893557 -0.23023151 -0.73397017\n\t\t 0.60093999 0.016602196 -0.79909664 0.61409342 0.033692565 -0.78850675 0.80309474\n\t\t -0.53813267 0.25577566 0.84310448 -0.46403363 0.27170631 0.84298241 -0.46607837 0.26850188\n\t\t 0.84298241 -0.46607837 0.26850188 0.82161951 -0.51304644 0.24832916 0.80309474 -0.53813267\n\t\t 0.25577566 0.79979873 -0.54008585 0.26184884 0.80309474 -0.53813267 0.25577566 0.82161951\n\t\t -0.51304644 0.24832916 0.82161951 -0.51304644 0.24832916 0.80419344 -0.53358537 0.26172677\n\t\t 0.79979873 -0.54008585 0.26184884 0.6187017 0.11093491 -0.77773368 0.61409342 0.033692565\n\t\t -0.78850675 0.60093999 0.016602196 -0.79909664 0.60093999 0.016602196 -0.79909664\n\t\t 0.61897635 0.10620455 -0.77816093 0.6187017 0.11093491 -0.77773368 0.84310448 -0.46403363\n\t\t 0.27170631 0.84554595 -0.44953734 0.28794217 0.84566802 -0.45100224 0.28525653 0.84566802\n\t\t -0.45100224 0.28525653 0.84298241 -0.46607837 0.26850188;\n\tsetAttr \".n[32204:32369]\" -type \"float3\"  0.84310448 -0.46403363 0.27170631 0.53324968\n\t\t 0.78402066 -0.3176367 0.59068555 0.6487931 -0.47965947 0.6113466 0.61894602 -0.4930571\n\t\t 0.6113466 0.61894602 -0.4930571 0.58726746 0.69676822 -0.41178632 0.53324968 0.78402066\n\t\t -0.3176367 0.47404373 0.8571735 -0.20130014 0.53324968 0.78402066 -0.3176367 0.58726746\n\t\t 0.69676822 -0.41178632 0.89074385 -0.44199932 0.10553303 0.92437524 -0.36057588 0.12436295\n\t\t 0.91634887 -0.36197975 0.17090368 0.84344018 -0.44074801 0.30704674 0.91634887 -0.36197975\n\t\t 0.17090368 0.83223987 -0.47431839 0.2869961 0.83223987 -0.47431839 0.2869961 0.84517974\n\t\t -0.43507159 0.31043431 0.84344018 -0.44074801 0.30704674 0.84554595 -0.44953734 0.28794217\n\t\t 0.84344018 -0.44074801 0.30704674 0.84517974 -0.43507159 0.31043431 0.84517974 -0.43507159\n\t\t 0.31043431 0.84566802 -0.45100224 0.28525653 0.84554595 -0.44953734 0.28794217 0.83223987\n\t\t -0.47431839 0.2869961 0.86916727 -0.44529527 0.21497241 0.88570827 -0.46330121 0.028534843\n\t\t 0.89031661 -0.44569203 -0.09311194 0.88570827 -0.46330121 0.028534843 0.86916727\n\t\t -0.44529527 0.21497241 0.045045041 0.90798676 0.41651654 0.059632927 0.77596366 0.62791824\n\t\t 0.056214835 0.83608514 0.54570138 0.067933984 0.70046091 0.71040982 0.056214835 0.83608514\n\t\t 0.54570138 0.059632927 0.77596366 0.62791824 0.059632927 0.77596366 0.62791824 0.063356213\n\t\t 0.69539481 0.71578103 0.067933984 0.70046091 0.71040982 0.047029041 -0.058320783\n\t\t 0.99716181 0.05456708 0.043488968 0.99755853 0.051240567 0.033234745 0.99810785 0.051240567\n\t\t 0.033234745 0.99810785 0.039613068 -0.13986623 0.98934907 0.047029041 -0.058320783\n\t\t 0.99716181 0.034028232 -0.30030209 0.95321512 0.047029041 -0.058320783 0.99716181\n\t\t 0.039613068 -0.13986623 0.98934907 0.039613068 -0.13986623 0.98934907 0.034943804\n\t\t -0.35618147 0.93374431 0.034028232 -0.30030209 0.95321512 0.035706788 -0.43131804\n\t\t 0.90148634 0.034028232 -0.30030209 0.95321512 0.034943804 -0.35618147 0.93374431\n\t\t 0.034943804 -0.35618147 0.93374431 0.036286641 -0.42930382 0.90240186 0.035706788\n\t\t -0.43131804 0.90148634 0.040589865 -0.81081569 0.58384967 0.037354905 -0.80706191\n\t\t 0.58925146 0.038575668 -0.87994015 0.47346422 0.038575668 -0.87994015 0.47346422\n\t\t 0.04055937 -0.87890249 0.47520378 0.040589865 -0.81081569 0.58384967 0.037415981\n\t\t -0.94225895 0.33271286 0.04055937 -0.87890249 0.47520378 0.038575668 -0.87994015\n\t\t 0.47346422 0.84517974 -0.43507159 0.31043431 0.83223987 -0.47431839 0.2869961 0.84591216\n\t\t -0.47816372 0.23609123 -0.13257264 0.70839554 -0.69319749 -0.12338655 0.71739846\n\t\t -0.68562889 -0.24796312 0.72713387 -0.64012581 -0.12338655 0.71739846 -0.68562889\n\t\t -0.13257264 0.70839554 -0.69319749 3.0299827e-05 0.70723587 -0.70696133 0.55473477\n\t\t 0.511765 -0.65596491 0.87847525 0.27729142 -0.38904998 0.76061267 0.45030081 -0.46757412\n\t\t 0.55473477 0.511765 -0.65596491 0.76061267 0.45030081 -0.46757412 0.49549833 0.60600615\n\t\t -0.62224197 0.49549833 0.60600615 -0.62224197 0.49781781 0.38236651 -0.77840513 0.55473477\n\t\t 0.511765 -0.65596491 0.53334129 0.51377922 -0.6719566 0.49781781 0.38236651 -0.77840513\n\t\t 0.49549833 0.60600615 -0.62224197 0.49549833 0.60600615 -0.62224197 0.52052343 0.70305502\n\t\t -0.48448139 0.53334129 0.51377922 -0.6719566 0.80388808 0.031220639 -0.59392071 0.80446792\n\t\t 0.032136194 -0.59309673 0.80446792 0.0070804986 -0.59389019 0.80446792 0.0070804986\n\t\t -0.59389019 0.80413222 0.0091862762 -0.59434795 0.80388808 0.031220639 -0.59392071\n\t\t 0.80150759 -0.011627349 -0.59782708 0.80413222 0.0091862762 -0.59434795 0.80446792\n\t\t 0.0070804986 -0.59389019 0.80446792 0.0070804986 -0.59389019 0.91738641 0.068880528\n\t\t -0.39194921 0.80150759 -0.011627349 -0.59782708 0.80397964 -0.021118606 -0.5942564\n\t\t 0.80150759 -0.011627349 -0.59782708 0.91738641 0.068880528 -0.39194921 0.91738641\n\t\t 0.068880528 -0.39194921 0.91982788 0.048768833 -0.3892636 0.80397964 -0.021118606\n\t\t -0.5942564 0.80397964 -0.021118606 -0.5942564 0.91982788 0.048768833 -0.3892636 0.89870906\n\t\t -0.068666399 -0.43305764 0.89870906 -0.068666399 -0.43305764 0.78084666 -0.17392479\n\t\t -0.59999388 0.80397964 -0.021118606 -0.5942564 0.78084666 -0.17392479 -0.59999388\n\t\t 0.89870906 -0.068666399 -0.43305764 0.84450829 -0.37089121 -0.38627276 0.84450829\n\t\t -0.37089121 -0.38627276 0.73827338 -0.30668032 -0.60072637 0.78084666 -0.17392479\n\t\t -0.59999388 0.78841531 -0.34299731 -0.51060516 0.73827338 -0.30668032 -0.60072637\n\t\t 0.84450829 -0.37089121 -0.38627276 0.84450829 -0.37089121 -0.38627276 0.85131395\n\t\t -0.4051635 -0.33323157 0.78841531 -0.34299731 -0.51060516 0.78841531 -0.34299731\n\t\t -0.51060516 0.85131395 -0.4051635 -0.33323157 0.9032259 -0.40894777 -0.1299783 0.9032259\n\t\t -0.40894777 -0.1299783 0.91488397 -0.38044348 -0.13489178 0.78841531 -0.34299731\n\t\t -0.51060516 -0.4060182 -0.18594946 -0.89471114 -0.38715774 -0.15298948 -0.90920746\n\t\t -0.37266147 -0.16248074 -0.91360211 -0.37266147 -0.16248074 -0.91360211 -0.37940603\n\t\t -0.15503423 -0.91210669 -0.4060182 -0.18594946 -0.89471114 -0.4060182 -0.18594946\n\t\t -0.89471114 -0.37940603 -0.15503423 -0.91210669 -0.42686233 -0.18823837 -0.88448745\n\t\t -0.42686233 -0.18823837 -0.88448745 -0.44013789 -0.19058828 -0.87743765 -0.4060182\n\t\t -0.18594946 -0.89471114 -0.44013789 -0.19058828 -0.87743765 -0.42686233 -0.18823837\n\t\t -0.88448745 -0.43082973 -0.16895066 -0.88644063 -0.43082973 -0.16895066 -0.88644063\n\t\t -0.42558056 -0.16660073 -0.88943142 -0.44013789 -0.19058828 -0.87743765 -0.42558056\n\t\t -0.16660073 -0.88943142 -0.43082973 -0.16895066 -0.88644063 -0.41972101 -0.1767634\n\t\t -0.89025545 -0.41972101 -0.1767634 -0.89025545 -0.41145048 -0.17502384 -0.89443648\n\t\t -0.42558056 -0.16660073 -0.88943142 -0.41145048 -0.17502384 -0.89443648 -0.41972101\n\t\t -0.1767634 -0.89025545 -0.401593 -0.17096487 -0.89968568 -0.401593 -0.17096487 -0.89968568\n\t\t -0.39634383 -0.15161614 -0.9054842 -0.41145048 -0.17502384 -0.89443648 -0.39634383\n\t\t -0.15161614 -0.9054842 -0.401593 -0.17096487 -0.89968568 -0.38743246 -0.14142297\n\t\t -0.91097748;\n\tsetAttr \".n[32370:32535]\" -type \"float3\"  -0.38743246 -0.14142297 -0.91097748 -0.38282415\n\t\t -0.12363067 -0.91549426 -0.39634383 -0.15161614 -0.9054842 -0.38282415 -0.12363067\n\t\t -0.91549426 -0.38743246 -0.14142297 -0.91097748 -0.37482831 -0.11865614 -0.91946167\n\t\t -0.37482831 -0.11865614 -0.91946167 -0.39768666 -0.094454981 -0.91262549 -0.38282415\n\t\t -0.12363067 -0.91549426 -0.37266147 -0.16248074 -0.91360211 -0.38715774 -0.15298948\n\t\t -0.90920746 -0.45970029 -0.14038536 -0.87688833 -0.45970029 -0.14038536 -0.87688833\n\t\t -0.38627273 -0.20404693 -0.89950258 -0.37266147 -0.16248074 -0.91360211 -0.48710591\n\t\t -0.12970388 -0.86364329 -0.38627273 -0.20404693 -0.89950258 -0.45970029 -0.14038536\n\t\t -0.87688833 -0.48710591 -0.12970388 -0.86364329 -0.49217197 -0.13644846 -0.8597064\n\t\t -0.38627273 -0.20404693 -0.89950258 -0.48710591 -0.12970388 -0.86364329 -0.45970029\n\t\t -0.14038536 -0.87688833 -0.48341316 -0.12772018 -0.8659932 -0.49333167 -0.081606708\n\t\t -0.86596268 -0.49217197 -0.13644846 -0.8597064 -0.48710591 -0.12970388 -0.86364329\n\t\t -0.39768666 -0.094454981 -0.91262549 -0.37482831 -0.11865614 -0.91946167 -0.49333167\n\t\t -0.081606708 -0.86596268 -0.49333167 -0.081606708 -0.86596268 -0.48710591 -0.12970388\n\t\t -0.86364329 -0.46504101 -0.077120483 -0.8818934 -0.49333167 -0.081606708 -0.86596268\n\t\t -0.4358348 -0.081881359 -0.89626759 -0.39768666 -0.094454981 -0.91262549 -0.49333167\n\t\t -0.081606708 -0.86596268 -0.46504101 -0.077120483 -0.8818934 -0.4358348 -0.081881359\n\t\t -0.89626759 -0.29886803 0.9150058 0.27094325 -0.26709831 0.95681626 0.11450537 -0.37958953\n\t\t 0.92330688 0.058381841 -0.37958953 0.92330688 0.058381841 -0.41773763 0.88329709\n\t\t 0.21268344 -0.29886803 0.9150058 0.27094325 -0.41773763 0.88329709 0.21268344 -0.37958953\n\t\t 0.92330688 0.058381841 -0.17627521 0.9585253 -0.22391438 -0.17627521 0.9585253 -0.22391438\n\t\t -0.26722038 0.96160764 -0.062196795 -0.41773763 0.88329709 0.21268344 -0.091494799\n\t\t 0.98663288 0.13470863 -0.26709831 0.95681626 0.11450537 -0.29886803 0.9150058 0.27094325\n\t\t -0.29886803 0.9150058 0.27094325 -0.1499072 0.93322545 0.32645643 -0.091494799 0.98663288\n\t\t 0.13470863 0.05853422 0.9155553 -0.39783934 0.047791719 0.87105924 -0.48878449 0.081392609\n\t\t 0.81493568 -0.57377857 0.081392609 0.81493568 -0.57377857 0.12143288 0.85546434 -0.50337237\n\t\t 0.05853422 0.9155553 -0.39783934 0.12143288 0.85546434 -0.50337237 0.081392609 0.81493568\n\t\t -0.57377857 0.12359974 0.71755117 -0.68541527 0.12359974 0.71755117 -0.68541527 0.24756593\n\t\t 0.72728658 -0.64009529 0.12143288 0.85546434 -0.50337237 -0.17627521 0.9585253 -0.22391438\n\t\t 0.033936299 0.91146576 -0.40992469 0.12042577 0.85671562 -0.50148022 0.05853422 0.9155553\n\t\t -0.39783934 0.12143288 0.85546434 -0.50337237 0.12042577 0.85671562 -0.50148022 0.12042577\n\t\t 0.85671562 -0.50148022 0.033936299 0.91146576 -0.40992469 0.05853422 0.9155553 -0.39783934\n\t\t 0.12042577 0.85671562 -0.50148022 0.096133031 0.89925832 -0.42667934 -0.17627521\n\t\t 0.9585253 -0.22391438 0.19022161 0.86422312 -0.46571252 0.096133031 0.89925832 -0.42667934\n\t\t 0.12042577 0.85671562 -0.50148022 0.096133031 0.89925832 -0.42667934 0.19022161 0.86422312\n\t\t -0.46571252 0.19791225 0.89434493 -0.40113536 0.19791225 0.89434493 -0.40113536 0.10983583\n\t\t 0.92220837 -0.37070841 0.096133031 0.89925832 -0.42667934 -0.17627521 0.9585253 -0.22391438\n\t\t 0.096133031 0.89925832 -0.42667934 0.10983583 0.92220837 -0.37070841 0.074800573\n\t\t 0.94860685 -0.30738249 0.10983583 0.92220837 -0.37070841 0.19791225 0.89434493 -0.40113536\n\t\t 0.19791225 0.89434493 -0.40113536 0.20615225 0.91616571 -0.34369951 0.074800573 0.94860685\n\t\t -0.30738249 0.055146638 0.99591053 -0.071352348 0.074800573 0.94860685 -0.30738249\n\t\t 0.20615225 0.91616571 -0.34369951 0.074800573 0.94860685 -0.30738249 0.055146638\n\t\t 0.99591053 -0.071352348 -0.032166816 0.99060029 -0.13287766 -0.032166816 0.99060029\n\t\t -0.13287766 -0.11053834 0.96545297 -0.23590815 0.074800573 0.94860685 -0.30738249\n\t\t 0.10983583 0.92220837 -0.37070841 0.074800573 0.94860685 -0.30738249 -0.11053834\n\t\t 0.96545297 -0.23590815 0.20615225 0.91616571 -0.34369951 0.31708702 0.93780339 -0.14114818\n\t\t 0.055146638 0.99591053 -0.071352348 -0.11053834 0.96545297 -0.23590815 -0.15402721\n\t\t 0.95947134 -0.23584712 0.10983583 0.92220837 -0.37070841 -0.25547075 0.95901358 -0.12250137\n\t\t -0.15402721 0.95947134 -0.23584712 -0.11053834 0.96545297 -0.23590815 -0.11053834\n\t\t 0.96545297 -0.23590815 -0.4499957 0.89117086 -0.057130717 -0.25547075 0.95901358\n\t\t -0.12250137 -0.4499957 0.89117086 -0.057130717 -0.11053834 0.96545297 -0.23590815\n\t\t -0.032166816 0.99060029 -0.13287766 -0.032166816 0.99060029 -0.13287766 -0.54542702\n\t\t 0.83214802 -0.09988714 -0.4499957 0.89117086 -0.057130717 -0.76454985 0.61897618\n\t\t -0.17963199 -0.79049063 0.58980048 -0.16501363 -0.87307364 0.47529501 -0.10852386\n\t\t -0.4076665 0.84920794 -0.3355816 -0.56627119 0.78716373 -0.24430072 -0.31833884 0.91259485\n\t\t -0.25647762 -0.56627119 0.78716373 -0.24430072 -0.4076665 0.84920794 -0.3355816 -0.48692307\n\t\t 0.78994089 -0.37263107 -0.48692307 0.78994089 -0.37263107 -0.52324009 0.77996135\n\t\t -0.34327227 -0.56627119 0.78716373 -0.24430072 0.10983583 0.92220837 -0.37070841\n\t\t -0.15402721 0.95947134 -0.23584712 -0.17627521 0.9585253 -0.22391438 -0.52324009\n\t\t 0.77996135 -0.34327227 -0.48692307 0.78994089 -0.37263107 -0.34012905 0.83553559\n\t\t -0.43140972 -0.34012905 0.83553559 -0.43140972 -0.38007778 0.82528138 -0.41764587\n\t\t -0.52324009 0.77996135 -0.34327227 -0.38007778 0.82528138 -0.41764587 -0.34012905\n\t\t 0.83553559 -0.43140972 -0.34348607 0.79631931 -0.49781799 -0.34348607 0.79631931\n\t\t -0.49781799 -0.40040308 0.78218919 -0.47727904 -0.38007778 0.82528138 -0.41764587\n\t\t -0.40040308 0.78218919 -0.47727904 -0.34348607 0.79631931 -0.49781799 -0.76061291\n\t\t 0.45030034 -0.46757412 -0.26722038 0.96160764 -0.062196795 -0.17627521 0.9585253\n\t\t -0.22391438 -0.15402721 0.95947134 -0.23584712 -0.15402721 0.95947134 -0.23584712\n\t\t -0.25547075 0.95901358 -0.12250137 -0.26722038 0.96160764 -0.062196795 0.49644434\n\t\t 0.7815792 -0.3776361;\n\tsetAttr \".n[32536:32701]\" -type \"float3\"  0.71898538 0.64738935 -0.25278488 0.31708702\n\t\t 0.93780339 -0.14114818 0.31708702 0.93780339 -0.14114818 0.20615225 0.91616571 -0.34369951\n\t\t 0.49644434 0.7815792 -0.3776361 0.71898538 0.64738935 -0.25278488 0.49644434 0.7815792\n\t\t -0.3776361 0.71962625 0.54240566 -0.43342391 0.71962625 0.54240566 -0.43342391 0.85644078\n\t\t 0.45985314 -0.23447374 0.71898538 0.64738935 -0.25278488 0.49644434 0.7815792 -0.3776361\n\t\t 0.20615225 0.91616571 -0.34369951 0.25470722 0.88506734 -0.38953832 0.49644434 0.7815792\n\t\t -0.3776361 0.72649294 0.52986252 -0.43748286 0.71962625 0.54240566 -0.43342391 0.20615225\n\t\t 0.91616571 -0.34369951 0.19791225 0.89434493 -0.40113536 0.25470722 0.88506734 -0.38953832\n\t\t 0.20499256 0.86489457 -0.4581134 0.25470722 0.88506734 -0.38953832 0.19791225 0.89434493\n\t\t -0.40113536 0.19791225 0.89434493 -0.40113536 0.19022161 0.86422312 -0.46571252 0.20499256\n\t\t 0.86489457 -0.4581134 0.20499256 0.86489457 -0.4581134 0.19022161 0.86422312 -0.46571252\n\t\t 0.27674159 0.75771356 -0.5909605 0.12042577 0.85671562 -0.50148022 0.27674159 0.75771356\n\t\t -0.5909605 0.19022161 0.86422312 -0.46571252 0.27674159 0.75771356 -0.5909605 0.12042577\n\t\t 0.85671562 -0.50148022 0.12143288 0.85546434 -0.50337237 0.12143288 0.85546434 -0.50337237\n\t\t 0.24756593 0.72728658 -0.64009529 0.27674159 0.75771356 -0.5909605 0.27674159 0.75771356\n\t\t -0.5909605 0.29605982 0.752617 -0.58812225 0.20499256 0.86489457 -0.4581134 0.25763705\n\t\t 0.7197485 -0.64461201 0.29605982 0.752617 -0.58812225 0.27674159 0.75771356 -0.5909605\n\t\t 0.27674159 0.75771356 -0.5909605 0.24756593 0.72728658 -0.64009529 0.25763705 0.7197485\n\t\t -0.64461201 0.25763705 0.7197485 -0.64461201 0.24756593 0.72728658 -0.64009529 0.12359974\n\t\t 0.71755117 -0.68541527 0.12359974 0.71755117 -0.68541527 0.081392609 0.81493568 -0.57377857\n\t\t -2.4902175e-07 0.80535287 -0.59276104 -2.4902175e-07 0.80535287 -0.59276104 -2.2101399e-07\n\t\t 0.71477395 -0.6993317 0.12359974 0.71755117 -0.68541527 -2.6963122e-07 0.87200528\n\t\t -0.48945591 -2.4902175e-07 0.80535287 -0.59276104 0.081392609 0.81493568 -0.57377857\n\t\t 0.081392609 0.81493568 -0.57377857 0.047791719 0.87105924 -0.48878449 -2.6963122e-07\n\t\t 0.87200528 -0.48945591 -3.0651881e-07 0.99130225 0.13147366 -0.091494799 0.98663288\n\t\t 0.13470863 -0.1499072 0.93322545 0.32645643 -0.1499072 0.93322545 0.32645643 -2.9211859e-07\n\t\t 0.944731 0.32776874 -3.0651881e-07 0.99130225 0.13147366 -2.2101399e-07 0.71477395\n\t\t -0.6993317 3.0299827e-05 0.70723587 -0.70696133 0.13330463 0.70809048 -0.69338059\n\t\t -0.0036619119 -0.99996948 -0.0055542942 3.0917991e-07 -0.99990845 -0.011108663 -0.15173772\n\t\t -0.9883725 -0.0086977016 -0.0036619119 -0.99996948 -0.0055542942 -0.15173772 -0.9883725\n\t\t -0.0086977016 -0.037140716 -0.99926758 0.0073855538 -0.15173772 -0.9883725 -0.0086977016\n\t\t -0.13180913 -0.99102759 0.021393549 -0.037140716 -0.99926758 0.0073855538 -0.0036619119\n\t\t -0.99996948 -0.0055542942 -0.037140716 -0.99926758 0.0073855538 3.0919878e-07 -0.99996948\n\t\t 0.00033577802 3.0920822e-07 -1 0.00012214846 3.0919878e-07 -0.99996948 0.00033577802\n\t\t -0.037140716 -0.99926758 0.0073855538 3.0919878e-07 -0.99996948 0.00033577802 3.0920822e-07\n\t\t -1 0.00012214846 3.0920822e-07 -1 0.00012214846 3.0920822e-07 -1 0.00012214846 3.0920822e-07\n\t\t -1 0.00033577802 3.0919878e-07 -0.99996948 0.00033577802 3.0920822e-07 -1 0.00033577802\n\t\t 3.0920822e-07 -1 0.00033577802 3.0920822e-07 -1 0.00012214846 3.0920822e-07 -1 0.00012214846\n\t\t 3.0920822e-07 -1 9.1629947e-05 3.0920822e-07 -1 0.00033577802 3.0919878e-07 -0.99996948\n\t\t 0.00039681504 3.0919878e-07 -0.99996948 0.00033577802 3.0920822e-07 -1 0.00033577802\n\t\t 3.0919878e-07 -0.99996948 0.00033577802 3.0919878e-07 -0.99996948 0.00039681504 -0.0036619119\n\t\t -0.99996948 -0.0055542942 3.0920822e-07 -1 0.00033577802 3.0919878e-07 -0.99996948\n\t\t 0.00039681504 3.0919878e-07 -0.99996948 0.00039681504 3.0919878e-07 -0.99996948 0.00039681504\n\t\t 3.0919878e-07 -0.99996948 0.00039681504 3.0920822e-07 -1 0.00033577802 3.0920822e-07\n\t\t -1 0.00033577802 3.0920822e-07 -1 0.00033577802 3.0919878e-07 -0.99996948 0.00039681504\n\t\t 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 0.00012214846 3.0920822e-07 -1 0.00012214846\n\t\t 3.0920822e-07 -1 9.1629947e-05 3.0920822e-07 -1 0.00012214846 3.0920822e-07 -1 7.441745e-08\n\t\t 3.0920822e-07 -1 0.00012214846 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08\n\t\t 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 9.1629947e-05\n\t\t -0.037140716 -0.99926758 0.0073855538 3.0827709e-05 -0.99996948 0.00012214846 3.0920822e-07\n\t\t -1 0.00012214846 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 0.00012214846 3.0827709e-05\n\t\t -0.99996948 0.00012214846 3.0827709e-05 -0.99996948 0.00012214846 3.0919878e-07 -0.99996948\n\t\t 7.4415176e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07 -1 7.441745e-08 3.0919878e-07\n\t\t -0.99996948 7.4415176e-08 3.0827709e-05 -0.99996948 0.00012214846 3.0827709e-05 -0.99996948\n\t\t 0.00012214846 -0.11578692 -0.9932555 0.00042733306 3.0920822e-07 -1 7.441745e-08\n\t\t -0.11578692 -0.9932555 0.00042733306 3.0827709e-05 -0.99996948 0.00012214846 -0.037140716\n\t\t -0.99926758 0.0073855538 -0.11578692 -0.9932555 0.00042733306 -0.037140716 -0.99926758\n\t\t 0.0073855538 -0.13180913 -0.99102759 0.021393549 -0.35660848 -0.93380547 -0.028260071\n\t\t -0.11578692 -0.9932555 0.00042733306 -0.13180913 -0.99102759 0.021393549 -0.13180913\n\t\t -0.99102759 0.021393549 -0.15173772 -0.9883725 -0.0086977016 -0.35660848 -0.93380547\n\t\t -0.028260071 -0.85131371 -0.40516403 -0.33323157 -0.90322566 -0.4089483 -0.1299783\n\t\t -0.86904496 -0.48027006 -0.11850333 -0.86904496 -0.48027006 -0.11850333 -0.87600315\n\t\t -0.46150118 -0.13998838 -0.85131371 -0.40516403 -0.33323157 -0.85131371 -0.40516403\n\t\t -0.33323157 -0.87600315 -0.46150118 -0.13998838 -0.90893263 -0.38474712 -0.16043578\n\t\t -0.90893263 -0.38474712 -0.16043578 -0.84450805 -0.37089175 -0.38627276 -0.85131371\n\t\t -0.40516403 -0.33323157 -0.84450805 -0.37089175 -0.38627276 -0.90893263 -0.38474712\n\t\t -0.16043578;\n\tsetAttr \".n[32702:32867]\" -type \"float3\"  -0.91280848 -0.37754476 -0.15555282 -0.91280848\n\t\t -0.37754476 -0.15555282 -0.89791548 -0.41941613 -0.13336585 -0.84450805 -0.37089175\n\t\t -0.38627276 -0.96337783 0.23175725 -0.13470872 -0.95684689 0.27390331 -0.096865773\n\t\t -0.95678586 0.27271309 -0.1007111 -0.95678586 0.27271309 -0.1007111 -0.9660635 0.22238806\n\t\t -0.13126013 -0.96337783 0.23175725 -0.13470872 -0.96337783 0.23175725 -0.13470872\n\t\t -0.9660635 0.22238806 -0.13126013 -0.97177047 0.16342631 -0.16998811 -0.97177047\n\t\t 0.16342631 -0.16998811 -0.96975619 0.1682177 -0.17676322 -0.96337783 0.23175725 -0.13470872\n\t\t -0.96975619 0.1682177 -0.17676322 -0.97177047 0.16342631 -0.16998811 -0.96841341\n\t\t 0.11304025 -0.22217476 -0.96841341 0.11304025 -0.22217476 -0.96673489 0.11456617\n\t\t -0.22861417 -0.96975619 0.1682177 -0.17676322 -0.96673489 0.11456617 -0.22861417\n\t\t -0.96841341 0.11304025 -0.22217476 -0.94964439 -0.12768976 -0.28608051 -0.94964439\n\t\t -0.12768976 -0.28608051 -0.95284891 -0.087161183 -0.29062778 -0.96673489 0.11456617\n\t\t -0.22861417 -0.55342287 0.73284078 -0.39576408 -0.57948571 0.74001265 -0.34138012\n\t\t -0.59483653 0.72878182 -0.33912173 -0.59483653 0.72878182 -0.33912173 -0.55500984\n\t\t 0.7295143 -0.39963993 -0.55342287 0.73284078 -0.39576408 -0.63374758 0.70546567 -0.31717893\n\t\t -0.59483653 0.72878182 -0.33912173 -0.57948571 0.74001265 -0.34138012 -0.57948571\n\t\t 0.74001265 -0.34138012 -0.63359499 0.70589292 -0.31650752 -0.63374758 0.70546567\n\t\t -0.31717893 -0.86959428 -0.4146553 -0.26795247 -0.85201561 -0.44084015 -0.2823267\n\t\t -0.85210717 -0.44099277 -0.28174683 -0.85210717 -0.44099277 -0.28174683 -0.86944169\n\t\t -0.41523513 -0.26761678 -0.86959428 -0.4146553 -0.26795247 -0.86959428 -0.4146553\n\t\t -0.26795247 -0.86944169 -0.41523513 -0.26761678 -0.90099782 -0.34171605 -0.26722005\n\t\t -0.90099782 -0.34171605 -0.26722005 -0.89651161 -0.35352671 -0.26691484 -0.86959428\n\t\t -0.4146553 -0.26795247 -0.94964439 -0.12768976 -0.28608051 -0.89651161 -0.35352671\n\t\t -0.26691484 -0.90099782 -0.34171605 -0.26722005 -0.90099782 -0.34171605 -0.26722005\n\t\t -0.95284891 -0.087161183 -0.29062778 -0.94964439 -0.12768976 -0.28608051 -0.96124154\n\t\t 0.25269297 0.10998867 -0.95480216 0.28125829 0.096102767 -0.95358145 0.28992555 0.081026621\n\t\t -0.95358145 0.28992555 0.081026621 -0.96197402 0.25611103 0.094759949 -0.96124154\n\t\t 0.25269297 0.10998867 -0.95480216 0.28125829 0.096102767 -0.96124154 0.25269297 0.10998867\n\t\t -0.95422232 0.24878661 0.16586809 -0.95422232 0.24878661 0.16586809 -0.94848484 0.27341503\n\t\t 0.1599475 -0.95480216 0.28125829 0.096102767 -0.96667385 0.17706811 0.18478955 -0.95422232\n\t\t 0.24878661 0.16586809 -0.96124154 0.25269297 0.10998867 -0.96124154 0.25269297 0.10998867\n\t\t -0.97442555 0.18219522 0.13141268 -0.96667385 0.17706811 0.18478955 -0.96124154 0.25269297\n\t\t 0.10998867 -0.96197402 0.25611103 0.094759949 -0.97509694 0.18655936 0.11969358 -0.97509694\n\t\t 0.18655936 0.11969358 -0.97442555 0.18219522 0.13141268 -0.96124154 0.25269297 0.10998867\n\t\t -0.92199481 0.30494067 0.23853263 -0.94848484 0.27341503 0.1599475 -0.95422232 0.24878661\n\t\t 0.16586809 -0.95422232 0.24878661 0.16586809 -0.93044835 0.27933565 0.23700672 -0.92199481\n\t\t 0.30494067 0.23853263 -0.78673685 0.57740998 0.21814626 -0.92199481 0.30494067 0.23853263\n\t\t -0.93044835 0.27933565 0.23700672 -0.93044835 0.27933565 0.23700672 -0.8911711 0.3393656\n\t\t 0.30100402 -0.78673685 0.57740998 0.21814626 -0.73412293 0.59691131 0.32358772 -0.78673685\n\t\t 0.57740998 0.21814626 -0.8911711 0.3393656 0.30100402 -0.8911711 0.3393656 0.30100402\n\t\t -0.81142622 0.42677063 0.39924312 -0.73412293 0.59691131 0.32358772 -0.73412293 0.59691131\n\t\t 0.32358772 -0.81142622 0.42677063 0.39924312 -0.68523228 0.49620026 0.53309727 -0.68523228\n\t\t 0.49620026 0.53309727 -0.60423613 0.6578874 0.44947654 -0.73412293 0.59691131 0.32358772\n\t\t -0.60423613 0.6578874 0.44947654 -0.68523228 0.49620026 0.53309727 -0.57536566 0.51582372\n\t\t 0.63469338 -0.57536566 0.51582372 0.63469338 -0.52360624 0.66670722 0.53035063 -0.60423613\n\t\t 0.6578874 0.44947654 -0.59810185 0.36103386 0.71547592 -0.57536566 0.51582372 0.63469338\n\t\t -0.68523228 0.49620026 0.53309727 -0.68523228 0.49620026 0.53309727 -0.71141708 0.36912119\n\t\t 0.59797966 -0.59810185 0.36103386 0.71547592 -0.71141708 0.36912119 0.59797966 -0.68523228\n\t\t 0.49620026 0.53309727 -0.81142622 0.42677063 0.39924312 -0.81142622 0.42677063 0.39924312\n\t\t -0.84359276 0.32901981 0.42432931 -0.71141708 0.36912119 0.59797966 -0.96667385 0.17706811\n\t\t 0.18478955 -0.97442555 0.18219522 0.13141268 -0.98117012 0.12066989 0.15066987 -0.98117012\n\t\t 0.12066989 0.15066987 -0.97442555 0.18219522 0.13141268 -0.97509694 0.18655936 0.11969358\n\t\t -0.8911711 0.3393656 0.30100402 -0.93044835 0.27933565 0.23700672 -0.94906467 0.1963558\n\t\t 0.24631487 -0.94906467 0.1963558 0.24631487 -0.91979742 0.24335434 0.3077181 -0.8911711\n\t\t 0.3393656 0.30100402 -0.81142622 0.42677063 0.39924312 -0.8911711 0.3393656 0.30100402\n\t\t -0.91979742 0.24335434 0.3077181 -0.91979742 0.24335434 0.3077181 -0.84359276 0.32901981\n\t\t 0.42432931 -0.81142622 0.42677063 0.39924312 -0.91979742 0.24335434 0.3077181 -0.94906467\n\t\t 0.1963558 0.24631487 -0.95898318 0.11731287 0.25803399 -0.95898318 0.11731287 0.25803399\n\t\t -0.93838316 0.13312149 0.31885737 -0.91979742 0.24335434 0.3077181 -0.84359276 0.32901981\n\t\t 0.42432931 -0.91979742 0.24335434 0.3077181 -0.93838316 0.13312149 0.31885737 -0.93838316\n\t\t 0.13312149 0.31885737 -0.95898318 0.11731287 0.25803399 -0.96139407 -0.02923701 0.27350688\n\t\t -0.96139407 -0.02923701 0.27350688 -0.94119084 -0.029359072 0.33655813 -0.93838316\n\t\t 0.13312149 0.31885737 -0.93838316 0.13312149 0.31885737 -0.87347031 0.15640712 0.4610126\n\t\t -0.84359276 0.32901981 0.42432931 -0.87347031 0.15640712 0.4610126 -0.93838316 0.13312149\n\t\t 0.31885737 -0.94119084 -0.029359072 0.33655813 -0.94119084 -0.029359072 0.33655813\n\t\t -0.87649161 -0.035249114 0.48008668 -0.87347031 0.15640712 0.4610126;\n\tsetAttr \".n[32868:33033]\" -type \"float3\"  -0.96139407 -0.02923701 0.27350688 -0.95898318\n\t\t 0.11731287 0.25803399 -0.97360152 0.10602102 0.20212407 -0.97360152 0.10602102 0.20212407\n\t\t -0.95898318 0.11731287 0.25803399 -0.94906467 0.1963558 0.24631487 -0.97360152 0.10602102\n\t\t 0.20212407 -0.97534102 -0.04150546 0.21662039 -0.96139407 -0.02923701 0.27350688\n\t\t -0.97534102 -0.04150546 0.21662039 -0.97360152 0.10602102 0.20212407 -0.98117012\n\t\t 0.12066989 0.15066987 -0.98117012 0.12066989 0.15066987 -0.97964412 -0.11722188 0.16281626\n\t\t -0.97534102 -0.04150546 0.21662039 -0.74724579 0.18189012 0.63914913 -0.87347031\n\t\t 0.15640712 0.4610126 -0.87649161 -0.035249114 0.48008668 -0.59810185 0.36103386 0.71547592\n\t\t -0.71141708 0.36912119 0.59797966 -0.74724579 0.18189012 0.63914913 -0.84359276 0.32901981\n\t\t 0.42432931 -0.87347031 0.15640712 0.4610126 -0.74724579 0.18189012 0.63914913 -0.74724579\n\t\t 0.18189012 0.63914913 -0.71141708 0.36912119 0.59797966 -0.84359276 0.32901981 0.42432931\n\t\t -0.87649161 -0.035249114 0.48008668 -0.75624865 -0.041474842 0.65294349 -0.74724579\n\t\t 0.18189012 0.63914913 -0.74724579 0.18189012 0.63914913 -0.75624865 -0.041474842\n\t\t 0.65294349 -0.64577168 -0.043031242 0.76229131 -0.64577168 -0.043031242 0.76229131\n\t\t -0.62749112 0.20783092 0.75032806 -0.74724579 0.18189012 0.63914913 -0.94906467 0.1963558\n\t\t 0.24631487 -0.96667385 0.17706811 0.18478955 -0.97360152 0.10602102 0.20212407 -0.98117012\n\t\t 0.12066989 0.15066987 -0.97360152 0.10602102 0.20212407 -0.96667385 0.17706811 0.18478955\n\t\t -0.4759362 0.23026207 0.84875029 -0.62749112 0.20783092 0.75032806 -0.64577168 -0.043031242\n\t\t 0.76229131 -0.62749112 0.20783092 0.75032806 -0.4759362 0.23026207 0.84875029 -0.45500058\n\t\t 0.3749198 0.8077029 -0.22299887 0.38624227 0.89501631 -0.45500058 0.3749198 0.8077029\n\t\t -0.4759362 0.23026207 0.84875029 -0.4759362 0.23026207 0.84875029 -0.22949927 0.24243903\n\t\t 0.94259471 -0.22299887 0.38624227 0.89501631 -0.22949927 0.24243903 0.94259471 -0.4759362\n\t\t 0.23026207 0.84875029 -0.48768577 -0.040223483 0.87206638 -0.64577168 -0.043031242\n\t\t 0.76229131 -0.48768577 -0.040223483 0.87206638 -0.4759362 0.23026207 0.84875029 -0.48768577\n\t\t -0.040223483 0.87206638 -0.2354808 -0.036378067 0.97119051 -0.22949927 0.24243903\n\t\t 0.94259471 -0.45500058 0.3749198 0.8077029 -0.22299887 0.38624227 0.89501631 -0.21640691\n\t\t 0.54371774 0.81087673 -0.21640691 0.54371774 0.81087673 -0.44239649 0.53392124 0.72054195\n\t\t -0.45500058 0.3749198 0.8077029 -0.44239649 0.53392124 0.72054195 -0.21640691 0.54371774\n\t\t 0.81087673 -0.21097468 0.70903653 0.67284149 -0.21097468 0.70903653 0.67284149 -0.40949756\n\t\t 0.68712419 0.6001159 -0.44239649 0.53392124 0.72054195 -0.45500058 0.3749198 0.8077029\n\t\t -0.59810185 0.36103386 0.71547592 -0.62749112 0.20783092 0.75032806 -0.74724579 0.18189012\n\t\t 0.63914913 -0.62749112 0.20783092 0.75032806 -0.59810185 0.36103386 0.71547592 -0.44239649\n\t\t 0.53392124 0.72054195 -0.40949756 0.68712419 0.6001159 -0.52360624 0.66670722 0.53035063\n\t\t -0.52360624 0.66670722 0.53035063 -0.57536566 0.51582372 0.63469338 -0.44239649 0.53392124\n\t\t 0.72054195 -0.45500058 0.3749198 0.8077029 -0.44239649 0.53392124 0.72054195 -0.57536566\n\t\t 0.51582372 0.63469338 -0.57536566 0.51582372 0.63469338 -0.59810185 0.36103386 0.71547592\n\t\t -0.45500058 0.3749198 0.8077029 -0.22299887 0.38624227 0.89501631 -0.22949927 0.24243903\n\t\t 0.94259471 -7.5794581e-08 0.24512474 0.96948147 -7.5794581e-08 0.24512474 0.96948147\n\t\t -0.22949927 0.24243903 0.94259471 -0.2354808 -0.036378067 0.97119051 -7.5794581e-08\n\t\t 0.24512474 0.96948147 -1.1991057e-07 0.38779876 0.92172003 -0.22299887 0.38624227\n\t\t 0.89501631 -0.21640691 0.54371774 0.81087673 -0.22299887 0.38624227 0.89501631 -1.1991057e-07\n\t\t 0.38779876 0.92172003 -0.2354808 -0.036378067 0.97119051 1.089922e-08 -0.035248805\n\t\t 0.99935913 -7.5794581e-08 0.24512474 0.96948147 -0.21097468 0.70903653 0.67284149\n\t\t -0.21640691 0.54371774 0.81087673 -1.6696131e-07 0.53996402 0.84166992 -1.1991057e-07\n\t\t 0.38779876 0.92172003 -1.6696131e-07 0.53996402 0.84166992 -0.21640691 0.54371774\n\t\t 0.81087673 -1.6696131e-07 0.53996402 0.84166992 -2.1967402e-07 0.71044046 0.70372623\n\t\t -0.21097468 0.70903653 0.67284149 -0.59974998 0.75298303 -0.27072975 -0.62840688\n\t\t 0.74684876 -0.21744443 -0.52324009 0.77996135 -0.34327227 -0.52324009 0.77996135\n\t\t -0.34327227 -0.38007778 0.82528138 -0.41764587 -0.59974998 0.75298303 -0.27072975\n\t\t -0.52324009 0.77996135 -0.34327227 -0.62840688 0.74684876 -0.21744443 -0.68248564\n\t\t 0.72447866 -0.096438542 -0.68248564 0.72447866 -0.096438542 -0.56627119 0.78716373\n\t\t -0.24430072 -0.52324009 0.77996135 -0.34327227 -0.56627119 0.78716373 -0.24430072\n\t\t -0.68248564 0.72447866 -0.096438542 -0.67406255 0.7386393 0.004669277 -0.67406255\n\t\t 0.7386393 0.004669277 -0.54542702 0.83214802 -0.09988714 -0.56627119 0.78716373 -0.24430072\n\t\t -0.68248564 0.72447866 -0.096438542 -0.62840688 0.74684876 -0.21744443 -0.68434727\n\t\t 0.71459067 -0.14484091 -0.68434727 0.71459067 -0.14484091 -0.62840688 0.74684876\n\t\t -0.21744443 -0.59974998 0.75298303 -0.27072975 -0.68434727 0.71459067 -0.14484091\n\t\t -0.71355349 0.69997227 -0.029267304 -0.68248564 0.72447866 -0.096438542 -0.67406255\n\t\t 0.7386393 0.004669277 -0.68248564 0.72447866 -0.096438542 -0.71355349 0.69997227\n\t\t -0.029267304 -0.59974998 0.75298303 -0.27072975 -0.59822404 0.78881174 -0.14093454\n\t\t -0.68434727 0.71459067 -0.14484091 -0.4499957 0.89117086 -0.057130717 -0.54542702\n\t\t 0.83214802 -0.09988714 -0.67406255 0.7386393 0.004669277 -0.67406255 0.7386393 0.004669277\n\t\t -0.64244539 0.76058209 0.093508653 -0.4499957 0.89117086 -0.057130717 -0.64244539\n\t\t 0.76058209 0.093508653 -0.67406255 0.7386393 0.004669277 -0.68617839 0.72502798 0.058778599\n\t\t -0.71355349 0.69997227 -0.029267304 -0.68617839 0.72502798 0.058778599 -0.67406255\n\t\t 0.7386393 0.004669277 -0.68617839 0.72502798 0.058778599 -0.78673685 0.57740998 0.21814626\n\t\t -0.64244539 0.76058209 0.093508653 -0.64244539 0.76058209 0.093508653;\n\tsetAttr \".n[33034:33199]\" -type \"float3\"  -0.78673685 0.57740998 0.21814626 -0.73412293\n\t\t 0.59691131 0.32358772 -0.73412293 0.59691131 0.32358772 -0.61250675 0.77147722 0.17212433\n\t\t -0.64244539 0.76058209 0.093508653 -0.4499957 0.89117086 -0.057130717 -0.64244539\n\t\t 0.76058209 0.093508653 -0.61250675 0.77147722 0.17212433 -0.61250675 0.77147722 0.17212433\n\t\t -0.63856953 0.75933087 0.12488168 -0.4499957 0.89117086 -0.057130717 -0.63856953\n\t\t 0.75933087 0.12488168 -0.61250675 0.77147722 0.17212433 -0.51942527 0.80269766 0.29294711\n\t\t -0.51942527 0.80269766 0.29294711 -0.61250675 0.77147722 0.17212433 -0.73412293 0.59691131\n\t\t 0.32358772 -0.51942527 0.80269766 0.29294711 -0.57783771 0.78273857 0.23105557 -0.63856953\n\t\t 0.75933087 0.12488168 -0.57783771 0.78273857 0.23105557 -0.51942527 0.80269766 0.29294711\n\t\t -0.49726883 0.77068377 0.39841908 -0.49726883 0.77068377 0.39841908 -0.41773763 0.88329709\n\t\t 0.21268344 -0.57783771 0.78273857 0.23105557 -0.52360624 0.66670722 0.53035063 -0.49726883\n\t\t 0.77068377 0.39841908 -0.51942527 0.80269766 0.29294711 -0.35685316 0.81087673 0.46378973\n\t\t -0.49726883 0.77068377 0.39841908 -0.52360624 0.66670722 0.53035063 -0.52360624 0.66670722\n\t\t 0.53035063 -0.40949756 0.68712419 0.6001159 -0.35685316 0.81087673 0.46378973 -0.35685316\n\t\t 0.81087673 0.46378973 -0.40949756 0.68712419 0.6001159 -0.21097468 0.70903653 0.67284149\n\t\t -0.21097468 0.70903653 0.67284149 -0.17774005 0.83294165 0.52400273 -0.35685316 0.81087673\n\t\t 0.46378973 -0.29886803 0.9150058 0.27094325 -0.35685316 0.81087673 0.46378973 -0.17774005\n\t\t 0.83294165 0.52400273 -0.29886803 0.9150058 0.27094325 -0.41773763 0.88329709 0.21268344\n\t\t -0.49726883 0.77068377 0.39841908 -0.49726883 0.77068377 0.39841908 -0.35685316 0.81087673\n\t\t 0.46378973 -0.29886803 0.9150058 0.27094325 -0.17774005 0.83294165 0.52400273 -0.1499072\n\t\t 0.93322545 0.32645643 -0.29886803 0.9150058 0.27094325 -0.51942527 0.80269766 0.29294711\n\t\t -0.60423613 0.6578874 0.44947654 -0.52360624 0.66670722 0.53035063 -0.73412293 0.59691131\n\t\t 0.32358772 -0.60423613 0.6578874 0.44947654 -0.51942527 0.80269766 0.29294711 -0.17774005\n\t\t 0.83294165 0.52400273 -0.21097468 0.70903653 0.67284149 -2.1967402e-07 0.71044046\n\t\t 0.70372623 -2.1967402e-07 0.71044046 0.70372623 -2.6129874e-07 0.84505761 0.53462321\n\t\t -0.17774005 0.83294165 0.52400273 -0.1499072 0.93322545 0.32645643 -0.17774005 0.83294165\n\t\t 0.52400273 -2.6129874e-07 0.84505761 0.53462321 -2.6129874e-07 0.84505761 0.53462321\n\t\t -2.9211859e-07 0.944731 0.32776874 -0.1499072 0.93322545 0.32645643 -0.98205507 -0.18762809\n\t\t 0.017914379 -0.97946095 -0.20069002 0.018829934 -0.98583937 -0.16672291 0.016510526\n\t\t -0.98583937 -0.16672291 0.016510526 -0.98797566 -0.15359998 0.01559497 -0.98205507\n\t\t -0.18762809 0.017914379 -0.20792241 -0.60353416 -0.76970726 -0.21729161 -0.59236437\n\t\t -0.77578044 -0.022919187 -0.69255662 -0.7209692 -0.022919187 -0.69255662 -0.7209692\n\t\t -0.0054626036 -0.67793822 -0.73506874 -0.20792241 -0.60353416 -0.76970726 -0.0054626036\n\t\t -0.67793822 -0.73506874 -0.022919187 -0.69255662 -0.7209692 -0.014221491 -0.4351635\n\t\t -0.90020442 -0.014221491 -0.4351635 -0.90020442 -0.01351962 -0.25815612 -0.96597189\n\t\t -0.0054626036 -0.67793822 -0.73506874 -0.01351962 -0.25815612 -0.96597189 -0.014221491\n\t\t -0.4351635 -0.90020442 0.0050050714 -0.11554314 -0.99328595 0.0050050714 -0.11554314\n\t\t -0.99328595 0.006347884 -0.10953101 -0.99395734 -0.01351962 -0.25815612 -0.96597189\n\t\t 0.006347884 -0.10953101 -0.99395734 0.0050050714 -0.11554314 -0.99328595 0.0080874301\n\t\t -0.080233239 -0.9967345 0.0080874301 -0.080233239 -0.9967345 0.0083315773 -0.076998271\n\t\t -0.99697864 0.006347884 -0.10953101 -0.99395734 0.0083315773 -0.076998271 -0.99697864\n\t\t 0.0080874301 -0.080233239 -0.9967345 0.010040605 -0.051149093 -0.99862665 0.010040605\n\t\t -0.051149093 -0.99862665 0.010254234 -0.048860203 -0.99874872 0.0083315773 -0.076998271\n\t\t -0.99697864 0.010254234 -0.048860203 -0.99874872 0.010040605 -0.051149093 -0.99862665\n\t\t 0.013153433 0.1458784 -0.98919642 0.013153433 0.1458784 -0.98919642 0.012909294 0.11203338\n\t\t -0.99359113 0.010254234 -0.048860203 -0.99874872 0.012909294 0.11203338 -0.99359113\n\t\t 0.013153433 0.1458784 -0.98919642 0.011505383 0.30573437 -0.95202488 0.011505383\n\t\t 0.30573437 -0.95202488 0.011505385 0.30088192 -0.95358133 0.012909294 0.11203338\n\t\t -0.99359113 0.0048218272 0.3145237 -0.9492172 0.011505385 0.30088192 -0.95358133\n\t\t 0.011505383 0.30573437 -0.95202488 0.011505383 0.30573437 -0.95202488 0.0047913073\n\t\t 0.31983393 -0.94744712 0.0048218272 0.3145237 -0.9492172 0.0048218272 0.3145237 -0.9492172\n\t\t 0.0047913073 0.31983393 -0.94744712 0.00054923352 0.32224488 -0.94662315 0.00054923352\n\t\t 0.32224488 -0.94662315 -9.951809e-08 0.32184815 -0.94677573 0.0048218272 0.3145237\n\t\t -0.9492172 -0.01232938 -0.31574443 0.94872892 -0.013031308 -0.31376073 0.94940031\n\t\t -0.0090333791 -0.32157347 0.94683677 -0.0090333791 -0.32157347 0.94683677 -0.0088807866\n\t\t -0.32151243 0.94683677 -0.01232938 -0.31574443 0.94872892 -0.013031308 -0.31376073\n\t\t 0.94940031 -0.01232938 -0.31574443 0.94872892 -0.014923458 -0.30051571 0.95364237\n\t\t -0.014923458 -0.30051571 0.95364237 -0.015076052 -0.29657882 0.95486313 -0.013031308\n\t\t -0.31376073 0.94940031 -0.015076052 -0.29657882 0.95486313 -0.014923458 -0.30051571\n\t\t 0.95364237 -0.013489136 -0.14383367 0.98950166 -0.013489136 -0.14383367 0.98950166\n\t\t -0.013092406 -0.11069056 0.99374372 -0.015076052 -0.29657882 0.95486313 -0.013092406\n\t\t -0.11069056 0.99374372 -0.013489136 -0.14383367 0.98950166 -0.01034579 0.048036207\n\t\t 0.99877924 -0.01034579 0.048036207 0.99877924 -0.010162678 0.045838874 0.99887079\n\t\t -0.013092406 -0.11069056 0.99374372 -0.010162678 0.045838874 0.99887079 -0.01034579\n\t\t 0.048036207 0.99877924 -0.0084231328 0.07745605 0.99694812 -0.0084231328 0.07745605\n\t\t 0.99694812 -0.0082400208 0.074190572 0.99719232 -0.010162678 0.045838874 0.99887079\n\t\t -0.0082400208 0.074190572 0.99719232 -0.0084231328 0.07745605 0.99694812 -0.0063784043\n\t\t 0.11560419 0.99325544 -0.0063784043 0.11560419 0.99325544 -0.0051881801 0.1083713\n\t\t 0.99407941;\n\tsetAttr \".n[33200:33365]\" -type \"float3\"  -0.0082400208 0.074190572 0.99719232\n\t\t -0.0051881801 0.1083713 0.99407941 -0.0063784043 0.11560419 0.99325544 0.015167568\n\t\t 0.42323074 0.90588087 0.015167568 0.42323074 0.90588087 0.013305992 0.25266281 0.96743673\n\t\t -0.0051881801 0.1083713 0.99407941 0.013305992 0.25266281 0.96743673 0.015167568\n\t\t 0.42323074 0.90588087 0.028778739 0.69893497 0.71456033 0.028778739 0.69893497 0.71456033\n\t\t 0.0096741561 0.68227184 0.73100978 0.013305992 0.25266281 0.96743673 0.0096741561\n\t\t 0.68227184 0.73100978 0.028778739 0.69893497 0.71456033 0.18314138 0.61067551 0.77037865\n\t\t 0.18314138 0.61067551 0.77037865 0.18710878 0.60469389 0.77413243 0.0096741561 0.68227184\n\t\t 0.73100978 -0.59266967 0.68990117 -0.41563165 -0.58684057 0.67052191 -0.45384082\n\t\t -0.49549869 0.60600579 -0.62224197 -0.49549869 0.60600579 -0.62224197 -0.52052391\n\t\t 0.70305467 -0.48448139 -0.59266967 0.68990117 -0.41563165 -0.76061291 0.45030034\n\t\t -0.46757412 -0.49549869 0.60600579 -0.62224197 -0.58684057 0.67052191 -0.45384082\n\t\t -0.58684057 0.67052191 -0.45384082 -0.40040308 0.78218919 -0.47727904 -0.76061291\n\t\t 0.45030034 -0.46757412 -0.89870906 -0.06866695 -0.43305764 -0.98278755 0.091005877\n\t\t -0.1605884 -0.97955269 0.11499342 -0.16498308 -0.97955269 0.11499342 -0.16498308\n\t\t -0.91982788 0.048768267 -0.3892636 -0.89870906 -0.06866695 -0.43305764 -0.91982788\n\t\t 0.048768267 -0.3892636 -0.97955269 0.11499342 -0.16498308 -0.97128212 0.16321267\n\t\t -0.17303996 -0.97128212 0.16321267 -0.17303996 -0.91738641 0.068879962 -0.39194921\n\t\t -0.91982788 0.048768267 -0.3892636 -0.91738641 0.068879962 -0.39194921 -0.97128212\n\t\t 0.16321267 -0.17303996 -0.95992923 0.21918362 -0.17453536 -0.95992923 0.21918362\n\t\t -0.17453536 -0.96456808 0.20474836 -0.16635641 -0.91738641 0.068879962 -0.39194921\n\t\t -0.96456808 0.20474836 -0.16635641 -0.95992923 0.21918362 -0.17453536 -0.95034647\n\t\t 0.25501236 -0.17825863 -0.95034647 0.25501236 -0.17825863 -0.94778287 0.26117709\n\t\t -0.18289745 -0.96456808 0.20474836 -0.16635641 -0.42085007 -0.58171338 0.69603568\n\t\t -0.22339533 -0.55397201 0.80196548 -0.22379208 -0.46784875 0.85497612 -0.22379208\n\t\t -0.46784875 0.85497612 -0.44145009 -0.47941536 0.75844604 -0.42085007 -0.58171338\n\t\t 0.69603568 -0.44145009 -0.47941536 0.75844604 -0.22379208 -0.46784875 0.85497612\n\t\t -0.22644722 -0.38184759 0.89602345 -0.22644722 -0.38184759 0.89602345 -0.45603797\n\t\t -0.38944679 0.80019534 -0.44145009 -0.47941536 0.75844604 -0.45603797 -0.38944679\n\t\t 0.80019534 -0.22644722 -0.38184759 0.89602345 -0.22952962 -0.28980377 0.92913604\n\t\t -0.22952962 -0.28980377 0.92913604 -0.47086999 -0.29044473 0.83300269 -0.45603797\n\t\t -0.38944679 0.80019534 -0.47086999 -0.29044473 0.83300269 -0.22952962 -0.28980377\n\t\t 0.92913604 -0.2354808 -0.036378067 0.97119051 -0.2354808 -0.036378067 0.97119051\n\t\t -0.48768577 -0.040223483 0.87206638 -0.47086999 -0.29044473 0.83300269 -0.57200831\n\t\t -0.4736779 0.66960669 -0.44145009 -0.47941536 0.75844604 -0.45603797 -0.38944679\n\t\t 0.80019534 -0.45603797 -0.38944679 0.80019534 -0.59886461 -0.38090163 0.70442826\n\t\t -0.57200831 -0.4736779 0.66960669 -0.44145009 -0.47941536 0.75844604 -0.57200831\n\t\t -0.4736779 0.66960669 -0.52958751 -0.59187609 0.60759306 -0.52958751 -0.59187609\n\t\t 0.60759306 -0.42085007 -0.58171338 0.69603568 -0.44145009 -0.47941536 0.75844604\n\t\t -0.52958751 -0.59187609 0.60759306 -0.57200831 -0.4736779 0.66960669 -0.67332977\n\t\t -0.46253872 0.57676935 -0.67332977 -0.46253872 0.57676935 -0.57200831 -0.4736779\n\t\t 0.66960669 -0.59886461 -0.38090163 0.70442826 -0.67332977 -0.46253872 0.57676935\n\t\t -0.59089923 -0.58803076 0.55226302 -0.52958751 -0.59187609 0.60759306 -0.59886461\n\t\t -0.38090163 0.70442826 -0.70650339 -0.36216331 0.60798973 -0.67332977 -0.46253872\n\t\t 0.57676935 -0.73387855 -0.25168633 0.63087863 -0.70650339 -0.36216331 0.60798973\n\t\t -0.59886461 -0.38090163 0.70442826 -0.59886461 -0.38090163 0.70442826 -0.6231879\n\t\t -0.27723026 0.73125398 -0.73387855 -0.25168633 0.63087863 -0.45603797 -0.38944679\n\t\t 0.80019534 -0.47086999 -0.29044473 0.83300269 -0.6231879 -0.27723026 0.73125398 -0.6231879\n\t\t -0.27723026 0.73125398 -0.59886461 -0.38090163 0.70442826 -0.45603797 -0.38944679\n\t\t 0.80019534 -0.75624865 -0.041474842 0.65294349 -0.73387855 -0.25168633 0.63087863\n\t\t -0.6231879 -0.27723026 0.73125398 -0.73387855 -0.25168633 0.63087863 -0.75624865\n\t\t -0.041474842 0.65294349 -0.87649161 -0.035249114 0.48008668 -0.87649161 -0.035249114\n\t\t 0.48008668 -0.85808885 -0.22046596 0.46369827 -0.73387855 -0.25168633 0.63087863\n\t\t -0.70650339 -0.36216331 0.60798973 -0.73387855 -0.25168633 0.63087863 -0.85808885\n\t\t -0.22046596 0.46369827 -0.6231879 -0.27723026 0.73125398 -0.64577168 -0.043031242\n\t\t 0.76229131 -0.75624865 -0.041474842 0.65294349 -0.64577168 -0.043031242 0.76229131\n\t\t -0.6231879 -0.27723026 0.73125398 -0.47086999 -0.29044473 0.83300269 -0.47086999\n\t\t -0.29044473 0.83300269 -0.48768577 -0.040223483 0.87206638 -0.64577168 -0.043031242\n\t\t 0.76229131 -0.85808885 -0.22046596 0.46369827 -0.81542391 -0.32190946 0.48103279\n\t\t -0.70650339 -0.36216331 0.60798973 -0.67332977 -0.46253872 0.57676935 -0.70650339\n\t\t -0.36216331 0.60798973 -0.81542391 -0.32190946 0.48103279 -0.93182158 -0.15845235\n\t\t 0.32645649 -0.85808885 -0.22046596 0.46369827 -0.87649161 -0.035249114 0.48008668\n\t\t -0.85808885 -0.22046596 0.46369827 -0.93182158 -0.15845235 0.32645649 -0.81542391\n\t\t -0.32190946 0.48103279 -0.87649161 -0.035249114 0.48008668 -0.94119084 -0.029359072\n\t\t 0.33655813 -0.93182158 -0.15845235 0.32645649 -0.95318455 -0.14828973 0.26340526\n\t\t -0.93182158 -0.15845235 0.32645649 -0.94119084 -0.029359072 0.33655813 -0.94119084\n\t\t -0.029359072 0.33655813 -0.96139407 -0.02923701 0.27350688 -0.95318455 -0.14828973\n\t\t 0.26340526 -0.95318455 -0.14828973 0.26340526 -0.96139407 -0.02923701 0.27350688\n\t\t -0.97534102 -0.04150546 0.21662039 -0.97534102 -0.04150546 0.21662039 -0.96139401\n\t\t -0.20435221 0.18417922 -0.95318455 -0.14828973 0.26340526 -0.96139401 -0.20435221\n\t\t 0.18417922 -0.97534102 -0.04150546 0.21662039 -0.97964412 -0.11722188 0.16281626;\n\tsetAttr \".n[33366:33531]\" -type \"float3\"  -0.97964412 -0.11722188 0.16281626 -0.92443603\n\t\t -0.36045441 0.12433244 -0.96139401 -0.20435221 0.18417922 -0.94894242 -0.3073217\n\t\t 0.070741929 -0.96139401 -0.20435221 0.18417922 -0.92443603 -0.36045441 0.12433244\n\t\t -0.92443603 -0.36045441 0.12433244 -0.89318508 -0.44364783 0.073397048 -0.94894242\n\t\t -0.3073217 0.070741929 -0.8916592 -0.45265082 -0.00042722546 -0.94894242 -0.3073217\n\t\t 0.070741929 -0.89318508 -0.44364783 0.073397048 -0.8916592 -0.45265082 -0.00042722546\n\t\t -0.89318508 -0.44364783 0.073397048 -0.88222897 -0.47077879 0.00073247927 -0.86739689\n\t\t -0.4971773 -0.019409735 -0.8916592 -0.45265082 -0.00042722546 -0.88222897 -0.47077879\n\t\t 0.00073247927 -0.86739689 -0.4971773 -0.019409735 -0.84450799 -0.53300601 -0.051759351\n\t\t -0.8916592 -0.45265082 -0.00042722546 -0.88738656 -0.46076873 -0.013763813 -0.86739689\n\t\t -0.4971773 -0.019409735 -0.88222897 -0.47077879 0.00073247927 -0.88738656 -0.46076873\n\t\t -0.013763813 -0.8775596 -0.47480723 0.066499867 -0.86739689 -0.4971773 -0.019409735\n\t\t -0.8775596 -0.47480723 0.066499867 -0.88204587 -0.46137908 0.095431417 -0.86739689\n\t\t -0.4971773 -0.019409735 -0.8775596 -0.47480723 0.066499867 -0.88824111 -0.4462114\n\t\t 0.10898162 -0.88204587 -0.46137908 0.095431417 -0.8916592 -0.45265082 -0.00042722546\n\t\t -0.9776299 -0.20786187 -0.032074939 -0.94894242 -0.3073217 0.070741929 -0.9776299\n\t\t -0.20786187 -0.032074939 -0.94839311 -0.31501237 0.035554085 -0.94894242 -0.3073217\n\t\t 0.070741929 -0.92443603 -0.36045441 0.12433244 -0.97964412 -0.11722188 0.16281626\n\t\t -0.97311312 -0.18015105 0.1434065 -0.88824111 -0.4462114 0.10898162 -0.97311312 -0.18015105\n\t\t 0.1434065 -0.88204587 -0.46137908 0.095431417 -0.89226955 -0.43916163 0.10477007\n\t\t -0.92443603 -0.36045441 0.12433244 -0.97311312 -0.18015105 0.1434065 -0.88824111\n\t\t -0.4462114 0.10898162 -0.89226955 -0.43916163 0.10477007 -0.97311312 -0.18015105\n\t\t 0.1434065 -0.86654246 -0.44920218 0.21741389 -0.89318508 -0.44364783 0.073397048\n\t\t -0.92443603 -0.36045441 0.12433244 -0.92443603 -0.36045441 0.12433244 -0.912839 -0.36973202\n\t\t 0.17310101 -0.86654246 -0.44920218 0.21741389 -0.18683459 0.86669505 -0.46250808\n\t\t -0.00024441749 0.8713339 -0.49064612 0.026123572 0.87771225 -0.47840822 0.026123572\n\t\t 0.87771225 -0.47840822 -0.40546915 0.81743813 -0.40903965 -0.18683459 0.86669505\n\t\t -0.46250808 -0.40546915 0.81743813 -0.40903965 0.026123572 0.87771225 -0.47840822\n\t\t 0.031677943 0.88024533 -0.4734337 0.031677943 0.88024533 -0.4734337 -0.38950798 0.81435573\n\t\t -0.43018895 -0.40546915 0.81743813 -0.40903965 0.23746425 0.85564744 -0.45979193\n\t\t 0.031677943 0.88024533 -0.4734337 0.026123572 0.87771225 -0.47840822 0.026123572\n\t\t 0.87771225 -0.47840822 0.23444292 0.84957427 -0.47245711 0.23746425 0.85564744 -0.45979193\n\t\t 0.23444292 0.84957427 -0.47245711 0.026123572 0.87771225 -0.47840822 -0.00024441749\n\t\t 0.8713339 -0.49064612 -0.00024441749 0.8713339 -0.49064612 0.22406664 0.84139532\n\t\t -0.4917143 0.23444292 0.84957427 -0.47245711 -0.36970147 0.81310445 -0.44959873 -0.38950798\n\t\t 0.81435573 -0.43018895 0.031677943 0.88024533 -0.4734337 0.031677943 0.88024533 -0.4734337\n\t\t 0.03744594 0.87786484 -0.47740111 -0.36970147 0.81310445 -0.44959873 0.03744594 0.87786484\n\t\t -0.47740111 0.031677943 0.88024533 -0.4734337 0.23746425 0.85564744 -0.45979193 -0.36970147\n\t\t 0.81310445 -0.44959873 0.03744594 0.87786484 -0.47740111 0.033478536 0.87041837 -0.49110392\n\t\t 0.033478536 0.87041837 -0.49110392 -0.36454383 0.80074447 -0.4752343 -0.36970147\n\t\t 0.81310445 -0.44959873 -0.36454383 0.80074447 -0.4752343 0.033478536 0.87041837 -0.49110392\n\t\t 0.044892464 0.85326695 -0.51951665 0.044892464 0.85326695 -0.51951665 -0.40046412\n\t\t 0.75380701 -0.52092052 -0.36454383 0.80074447 -0.4752343 -0.40046412 0.75380701 -0.52092052\n\t\t 0.044892464 0.85326695 -0.51951665 0.044556763 0.84377569 -0.53480643 0.044556763\n\t\t 0.84377569 -0.53480643 -0.17239931 0.80956435 -0.56111336 -0.40046412 0.75380701\n\t\t -0.52092052 0.044556763 0.84377569 -0.53480643 0.044892464 0.85326695 -0.51951665\n\t\t 0.25476825 0.8361156 -0.48573264 0.25476825 0.8361156 -0.48573264 0.25785062 0.83336896\n\t\t -0.48881504 0.044556763 0.84377569 -0.53480643 -0.17239931 0.80956435 -0.56111336\n\t\t 0.044556763 0.84377569 -0.53480643 0.069337793 0.84493542 -0.53028971 0.069337793\n\t\t 0.84493542 -0.53028971 0.044556763 0.84377569 -0.53480643 0.25785062 0.83336896 -0.48881504\n\t\t 0.069337793 0.84493542 -0.53028971 -0.17990686 0.80144644 -0.57032996 -0.17239931\n\t\t 0.80956435 -0.56111336 0.25785062 0.83336896 -0.48881504 0.25855255 0.83510852 -0.4854885\n\t\t 0.069337793 0.84493542 -0.53028971 0.044892464 0.85326695 -0.51951665 0.033478536\n\t\t 0.87041837 -0.49110392 0.23154366 0.85259563 -0.46839815 0.23154366 0.85259563 -0.46839815\n\t\t 0.25476825 0.8361156 -0.48573264 0.044892464 0.85326695 -0.51951665 0.23334426 0.85760063\n\t\t -0.45826599 0.23154366 0.85259563 -0.46839815 0.033478536 0.87041837 -0.49110392\n\t\t 0.033478536 0.87041837 -0.49110392 0.03744594 0.87786484 -0.47740111 0.23334426 0.85760063\n\t\t -0.45826599 0.23746425 0.85564744 -0.45979193 0.23334426 0.85760063 -0.45826599 0.03744594\n\t\t 0.87786484 -0.47740111 0.88818008 0.43598768 -0.14490192 0.76186389 0.59266967 -0.26120794\n\t\t 0.75853735 0.59306645 -0.26990572 0.75853735 0.59306645 -0.26990572 0.88561648 0.43656754\n\t\t -0.15829954 0.88818008 0.43598768 -0.14490192 0.88561648 0.43656754 -0.15829954 0.75853735\n\t\t 0.59306645 -0.26990572 0.75289142 0.5952943 -0.28064823 0.96655166 0.25586748 -0.017120901\n\t\t 0.88818008 0.43598768 -0.14490192 0.88561648 0.43656754 -0.15829954 0.88561648 0.43656754\n\t\t -0.15829954 0.96703994 0.25305977 -0.026978381 0.96655166 0.25586748 -0.017120901\n\t\t 0.75289142 0.5952943 -0.28064823 0.87536228 0.44517377 -0.18839079 0.88561648 0.43656754\n\t\t -0.15829954 0.96703994 0.25305977 -0.026978381 0.88561648 0.43656754 -0.15829954\n\t\t 0.87536228 0.44517377 -0.18839079 0.87536228 0.44517377 -0.18839079 0.75289142 0.5952943\n\t\t -0.28064823 0.75218952 0.59398198 -0.28522602 0.87536228 0.44517377 -0.18839079;\n\tsetAttr \".n[33532:33697]\" -type \"float3\"  0.95968497 0.26905149 -0.080965631 0.96703994\n\t\t 0.25305977 -0.026978381 0.75218952 0.59398198 -0.28522602 0.87224942 0.44682178 -0.19870605\n\t\t 0.87536228 0.44517377 -0.18839079 0.87224942 0.44682178 -0.19870605 0.75218952 0.59398198\n\t\t -0.28522602 0.75063306 0.58668804 -0.30384231 0.87536228 0.44517377 -0.18839079 0.87224942\n\t\t 0.44682178 -0.19870605 0.95565653 0.27628437 -0.10162665 0.95565653 0.27628437 -0.10162665\n\t\t 0.95968497 0.26905149 -0.080965631 0.87536228 0.44517377 -0.18839079 0.75063306 0.58668804\n\t\t -0.30384231 0.86654246 0.447249 -0.22144234 0.87224942 0.44682178 -0.19870605 0.86971635\n\t\t 0.44550943 -0.21234782 0.86654246 0.447249 -0.22144234 0.75063306 0.58668804 -0.30384231\n\t\t 0.75063306 0.58668804 -0.30384231 0.74779487 0.57890582 -0.32496113 0.86971635 0.44550943\n\t\t -0.21234782 0.87224942 0.44682178 -0.19870605 0.86654246 0.447249 -0.22144234 0.95022422\n\t\t 0.284738 -0.12622456 0.95022422 0.284738 -0.12622456 0.95565653 0.27628437 -0.10162665\n\t\t 0.87224942 0.44682178 -0.19870605 0.95022422 0.284738 -0.12622456 0.86654246 0.447249\n\t\t -0.22144234 0.86971635 0.44550943 -0.21234782 0.86971635 0.44550943 -0.21234782 0.94497502\n\t\t 0.28949887 -0.15222634 0.95022422 0.284738 -0.12622456 0.88818008 0.43598768 -0.14490192\n\t\t 0.96655166 0.25586748 -0.017120901 0.96630752 0.25659993 -0.019013051 0.96630752\n\t\t 0.25659993 -0.019013051 0.91280848 0.39213261 -0.11398666 0.88818008 0.43598768 -0.14490192\n\t\t 0.76186389 0.59266967 -0.26120794 0.88818008 0.43598768 -0.14490192 0.91280848 0.39213261\n\t\t -0.11398666 0.91280848 0.39213261 -0.11398666 0.76375604 0.59270018 -0.25565359 0.76186389\n\t\t 0.59266967 -0.26120794 0.86971635 0.44550943 -0.21234782 0.74779487 0.57890582 -0.32496113\n\t\t 0.78398979 0.60808152 -0.12463763 0.78398979 0.60808152 -0.12463763 0.88079458 0.45054501\n\t\t -0.14542073 0.86971635 0.44550943 -0.21234782 0.94497502 0.28949887 -0.15222634 0.86971635\n\t\t 0.44550943 -0.21234782 0.88079458 0.45054501 -0.14542073 0.88079458 0.45054501 -0.14542073\n\t\t 0.93542272 0.30561265 -0.17761776 0.94497502 0.28949887 -0.15222634 0.92013294 0.35154301\n\t\t -0.17236857 0.93542272 0.30561265 -0.17761776 0.88079458 0.45054501 -0.14542073 0.88079458\n\t\t 0.45054501 -0.14542073 0.84154773 0.5291912 -0.10837127 0.92013294 0.35154301 -0.17236857\n\t\t 0.84154773 0.5291912 -0.10837127 0.88079458 0.45054501 -0.14542073 0.78398979 0.60808152\n\t\t -0.12463763 0.78398979 0.60808152 -0.12463763 0.72051126 0.69338077 0.00692765 0.84154773\n\t\t 0.5291912 -0.10837127 0.85644078 0.45985314 -0.23447374 0.92013294 0.35154301 -0.17236857\n\t\t 0.84154773 0.5291912 -0.10837127 0.84154773 0.5291912 -0.10837127 0.71898538 0.64738935\n\t\t -0.25278488 0.85644078 0.45985314 -0.23447374 0.71898538 0.64738935 -0.25278488 0.84154773\n\t\t 0.5291912 -0.10837127 0.72051126 0.69338077 0.00692765 0.72051126 0.69338077 0.00692765\n\t\t 0.31708702 0.93780339 -0.14114818 0.71898538 0.64738935 -0.25278488 0.11853358 0.98901337\n\t\t 0.088015303 0.10605151 0.98879975 0.10492256 0.074983671 0.99279761 0.093325526 0.074983671\n\t\t 0.99279761 0.093325526 0.062715232 0.99526966 0.073915757 0.11853358 0.98901337 0.088015303\n\t\t 0.062715232 0.99526966 0.073915757 0.074983671 0.99279761 0.093325526 0.055146638\n\t\t 0.99591053 -0.071352348 0.055146638 0.99591053 -0.071352348 0.31708702 0.93780339\n\t\t -0.14114818 0.062715232 0.99526966 0.073915757 -0.032166816 0.99060029 -0.13287766\n\t\t 0.055146638 0.99591053 -0.071352348 0.074983671 0.99279761 0.093325526 0.074983671\n\t\t 0.99279761 0.093325526 0.052369453 0.9962157 0.069215909 -0.032166816 0.99060029\n\t\t -0.13287766 0.052369453 0.9962157 0.069215909 0.074983671 0.99279761 0.093325526\n\t\t 0.10605151 0.98879975 0.10492256 0.052369453 0.9962157 0.069215909 0.10605151 0.98879975\n\t\t 0.10492256 0.020843834 0.99700916 0.07409887 -0.89675599 0.4272894 -0.11502429 -0.63756239\n\t\t 0.71245444 -0.29303879 -0.60319859 0.7685169 -0.21329392 -0.80678749 0.49174449 -0.32749414\n\t\t -0.63237423 0.6528517 -0.41694394 -0.69591373 0.55961764 -0.44996494 -0.69591373\n\t\t 0.55961764 -0.44996494 -0.85943186 0.36344463 -0.35950807 -0.80678749 0.49174449\n\t\t -0.32749414 -0.89062178 0.38309854 -0.24491107 -0.80678749 0.49174449 -0.32749414\n\t\t -0.85943186 0.36344463 -0.35950807 -0.85943186 0.36344463 -0.35950807 -0.76061291\n\t\t 0.45030034 -0.46757412 -0.89062178 0.38309854 -0.24491107 -0.85943186 0.36344463\n\t\t -0.35950807 -0.69591373 0.55961764 -0.44996494 -0.70201743 0.51484698 -0.49195841\n\t\t -0.70201743 0.51484698 -0.49195841 -0.87166977 0.29270273 -0.39301738 -0.85943186\n\t\t 0.36344463 -0.35950807 -0.87166977 0.29270273 -0.39301738 -0.93554497 0.13766868\n\t\t -0.32520524 -0.85943186 0.36344463 -0.35950807 -0.93554497 0.13766868 -0.32520524\n\t\t -0.87847537 0.27729088 -0.38904998 -0.85943186 0.36344463 -0.35950807 -0.63237423\n\t\t 0.6528517 -0.41694394 -0.80678749 0.49174449 -0.32749414 -0.80233181 0.52446038 -0.28492084\n\t\t -0.80233181 0.52446038 -0.28492084 -0.62996334 0.67857885 -0.37769714 -0.63237423\n\t\t 0.6528517 -0.41694394 -0.80678749 0.49174449 -0.32749414 -0.89062178 0.38309854 -0.24491107\n\t\t -0.8850674 0.40955809 -0.22107612 -0.8850674 0.40955809 -0.22107612 -0.80233181 0.52446038\n\t\t -0.28492084 -0.80678749 0.49174449 -0.32749414 -0.87166977 0.29270273 -0.39301738\n\t\t -0.70201743 0.51484698 -0.49195841 -0.70912826 0.48680049 -0.50999486 -0.70912826\n\t\t 0.48680049 -0.50999486 -0.87997079 0.24985474 -0.40394303 -0.87166977 0.29270273\n\t\t -0.39301738 -0.93557549 0.12292825 -0.33094272 -0.93554497 0.13766868 -0.32520524\n\t\t -0.87166977 0.29270273 -0.39301738 -0.87166977 0.29270273 -0.39301738 -0.87997079\n\t\t 0.24985474 -0.40394303 -0.93557549 0.12292825 -0.33094272 -0.93554497 0.13766868\n\t\t -0.32520524 -0.93557549 0.12292825 -0.33094272 -0.9350872 0.10821832 -0.33741266\n\t\t -0.9350872 0.10821832 -0.33741266 -0.9331035 0.12726188 -0.33625293 -0.93554497 0.13766868\n\t\t -0.32520524 -0.87847537 0.27729088 -0.38904998 -0.93554497 0.13766868 -0.32520524;\n\tsetAttr \".n[33698:33863]\" -type \"float3\"  -0.9331035 0.12726188 -0.33625293 -0.9331035\n\t\t 0.12726188 -0.33625293 -0.92956334 0.15717001 -0.33344522 -0.87847537 0.27729088\n\t\t -0.38904998 -0.95834231 0.25131962 -0.13553272 -0.92956334 0.15717001 -0.33344522\n\t\t -0.9331035 0.12726188 -0.33625293 -0.9331035 0.12726188 -0.33625293 -0.9588306 0.25736231\n\t\t -0.11987673 -0.95834231 0.25131962 -0.13553272 -0.80233181 0.52446038 -0.28492084\n\t\t -0.8850674 0.40955809 -0.22107612 -0.90530121 0.39475664 -0.15665154 -0.90530121\n\t\t 0.39475664 -0.15665154 -0.82604468 0.51557946 -0.22751553 -0.80233181 0.52446038\n\t\t -0.28492084 -0.82604468 0.51557946 -0.22751553 -0.90530121 0.39475664 -0.15665154\n\t\t -0.87307364 0.47529501 -0.10852386 -0.87307364 0.47529501 -0.10852386 -0.83291131\n\t\t 0.52357531 -0.17917421 -0.82604468 0.51557946 -0.22751553 -0.65938312 0.67412317\n\t\t -0.33277389 -0.82604468 0.51557946 -0.22751553 -0.83291131 0.52357531 -0.17917421\n\t\t -0.80233181 0.52446038 -0.28492084 -0.82604468 0.51557946 -0.22751553 -0.65938312\n\t\t 0.67412317 -0.33277389 -0.65938312 0.67412317 -0.33277389 -0.62996334 0.67857885\n\t\t -0.37769714 -0.80233181 0.52446038 -0.28492084 -0.83291131 0.52357531 -0.17917421\n\t\t -0.69328916 0.66313648 -0.28208265 -0.65938312 0.67412317 -0.33277389 -0.69328916\n\t\t 0.66313648 -0.28208265 -0.83291131 0.52357531 -0.17917421 -0.89675599 0.4272894 -0.11502429\n\t\t -0.89675599 0.4272894 -0.11502429 -0.60319859 0.7685169 -0.21329392 -0.69328916 0.66313648\n\t\t -0.28208265 -0.79049063 0.58980048 -0.16501363 -0.89675599 0.4272894 -0.11502429\n\t\t -0.83291131 0.52357531 -0.17917421 -0.83291131 0.52357531 -0.17917421 -0.87307364\n\t\t 0.47529501 -0.10852386 -0.79049063 0.58980048 -0.16501363 -0.69328916 0.66313648\n\t\t -0.28208265 -0.60319859 0.7685169 -0.21329392 -0.63756239 0.71245444 -0.29303879\n\t\t -0.63756239 0.71245444 -0.29303879 -0.40546915 0.81743813 -0.40903965 -0.69328916\n\t\t 0.66313648 -0.28208265 -0.65938312 0.67412317 -0.33277389 -0.69328916 0.66313648\n\t\t -0.28208265 -0.40546915 0.81743813 -0.40903965 -0.40546915 0.81743813 -0.40903965\n\t\t -0.38950798 0.81435573 -0.43018895 -0.65938312 0.67412317 -0.33277389 -0.65938312\n\t\t 0.67412317 -0.33277389 -0.38950798 0.81435573 -0.43018895 -0.36970147 0.81310445\n\t\t -0.44959873 -0.36970147 0.81310445 -0.44959873 -0.62996334 0.67857885 -0.37769714\n\t\t -0.65938312 0.67412317 -0.33277389 -0.63237423 0.6528517 -0.41694394 -0.62996334\n\t\t 0.67857885 -0.37769714 -0.36970147 0.81310445 -0.44959873 -0.36970147 0.81310445\n\t\t -0.44959873 -0.36454383 0.80074447 -0.4752343 -0.63237423 0.6528517 -0.41694394 -0.63237423\n\t\t 0.6528517 -0.41694394 -0.36454383 0.80074447 -0.4752343 -0.40046412 0.75380701 -0.52092052\n\t\t -0.40046412 0.75380701 -0.52092052 -0.69591373 0.55961764 -0.44996494 -0.63237423\n\t\t 0.6528517 -0.41694394 -0.69591373 0.55961764 -0.44996494 -0.40046412 0.75380701 -0.52092052\n\t\t -0.61519229 0.59596521 -0.51603752 -0.61519229 0.59596521 -0.51603752 -0.70201743\n\t\t 0.51484698 -0.49195841 -0.69591373 0.55961764 -0.44996494 -0.70201743 0.51484698\n\t\t -0.49195841 -0.61519229 0.59596521 -0.51603752 -0.61870193 0.57817292 -0.53187662\n\t\t -0.61870193 0.57817292 -0.53187662 -0.70912826 0.48680049 -0.50999486 -0.70201743\n\t\t 0.51484698 -0.49195841 -0.87847537 0.27729088 -0.38904998 -0.76061291 0.45030034\n\t\t -0.46757412 -0.85943186 0.36344463 -0.35950807 -0.18478982 0.81789595 -0.54484701\n\t\t 0.019806247 0.85540324 -0.51753294 0.082826965 0.85613567 -0.51002538 0.082826965\n\t\t 0.85613567 -0.51002538 -0.1854002 0.8165226 -0.54667813 -0.18478982 0.81789595 -0.54484701\n\t\t 0.082826965 0.85613567 -0.51002538 0.019806247 0.85540324 -0.51753294 0.29255018\n\t\t 0.82882172 -0.4769128 0.29255018 0.82882172 -0.4769128 0.29361832 0.82570887 -0.48161265\n\t\t 0.082826965 0.85613567 -0.51002538 0.91531104 0.37372994 -0.14993747 0.78685856 0.5628531\n\t\t -0.25302899 0.78545469 0.56227326 -0.2586444 0.78545469 0.56227326 -0.2586444 0.86535221\n\t\t 0.45484811 -0.2103336 0.91531104 0.37372994 -0.14993747 0.91531104 0.37372994 -0.14993747\n\t\t 0.86535221 0.45484811 -0.2103336 0.96588027 0.25025207 -0.066438809 0.96588027 0.25025207\n\t\t -0.066438809 0.96588027 0.25022155 -0.066469327 0.91531104 0.37372994 -0.14993747\n\t\t -0.65004444 0.55894625 -0.51475579 -0.65392029 0.55934298 -0.50938451 -0.73528254\n\t\t 0.46510181 -0.49290448 -0.73528254 0.46510181 -0.49290448 -0.72432643 0.47813323\n\t\t -0.49668878 -0.65004444 0.55894625 -0.51475579 -0.86642057 0.27607015 -0.41596732\n\t\t -0.72432643 0.47813323 -0.49668878 -0.73528254 0.46510181 -0.49290448 -0.73528254\n\t\t 0.46510181 -0.49290448 -0.88976723 0.23102482 -0.39359725 -0.86642057 0.27607015\n\t\t -0.41596732 -0.86642057 0.27607015 -0.41596732 -0.88976723 0.23102482 -0.39359725\n\t\t -0.94091624 0.13980496 -0.30838954 -0.94091624 0.13980496 -0.30838954 -0.94070262\n\t\t 0.13782126 -0.30988494 -0.86642057 0.27607015 -0.41596732 -0.95809817 0.18839045\n\t\t -0.21567433 -0.94070262 0.13782126 -0.30988494 -0.94091624 0.13980496 -0.30838954\n\t\t -0.94091624 0.13980496 -0.30838954 -0.9590137 0.19223578 -0.20807521 -0.95809817\n\t\t 0.18839045 -0.21567433 -0.10534959 -0.98770112 0.11526848 -0.10449507 -0.98809785\n\t\t 0.11285753 -0.10476974 -0.98797578 0.11343738 -0.10476974 -0.98797578 0.11343738\n\t\t -0.10556322 -0.98770112 0.11523797 -0.10534959 -0.98770112 0.11526848 -0.10534959\n\t\t -0.98770112 0.11526848 -0.10556322 -0.98770112 0.11523797 -0.10495284 -0.98751801\n\t\t 0.1172827 -0.10495284 -0.98751801 0.1172827 -0.10473921 -0.98745698 0.11795411 -0.10534959\n\t\t -0.98770112 0.11526848 -0.17856407 0.88039786 -0.43928349 0.010925348 0.90026546\n\t\t -0.4351635 0.070619576 0.8306222 -0.55229354 0.070619576 0.8306222 -0.55229354 -0.14511576\n\t\t 0.82442689 -0.5469833 -0.17856407 0.88039786 -0.43928349 0.070619576 0.8306222 -0.55229354\n\t\t 0.010925348 0.90026546 -0.4351635 0.29316053 0.86568809 -0.40571311 0.29316053 0.86568809\n\t\t -0.40571311 0.31168529 0.77175212 -0.55427724 0.070619576 0.8306222 -0.55229354 0.77120256\n\t\t 0.58818346 -0.24341567 0.78771305 0.5879088 -0.18387407 0.78197557 0.58827502 -0.20590843;\n\tsetAttr \".n[33864:34029]\" -type \"float3\"  0.78197557 0.58827502 -0.20590843 0.76238269\n\t\t 0.58754259 -0.27118751 0.77120256 0.58818346 -0.24341567 0.96667373 0.24286659 -0.080904581\n\t\t 0.97085476 0.23950955 -0.0074160155 0.97030544 0.24045563 -0.02554401 0.97030544\n\t\t 0.24045563 -0.02554401 0.96401864 0.2437211 -0.10586873 0.96667373 0.24286659 -0.080904581\n\t\t -0.14511576 0.82442689 -0.5469833 0.070619576 0.8306222 -0.55229354 0.10589901 0.73009431\n\t\t -0.67503899 0.10589901 0.73009431 -0.67503899 0.070619576 0.8306222 -0.55229354 0.31168529\n\t\t 0.77175212 -0.55427724 0.10589901 0.73009431 -0.67503899 -0.1099279 0.73824263 -0.66548669\n\t\t -0.14511576 0.82442689 -0.5469833 0.31168529 0.77175212 -0.55427724 0.31662932 0.67061377\n\t\t -0.67079687 0.10589901 0.73009431 -0.67503899 0.72994167 0.12640785 -0.67168188 0.77025652\n\t\t 0.42332244 -0.47691277 0.75579077 0.41404483 -0.50724822 0.75579077 0.41404483 -0.50724822\n\t\t 0.78749955 0.25159481 -0.5625782 0.72994167 0.12640785 -0.67168188 0.78749955 0.25159481\n\t\t -0.5625782 0.78240305 0.042237815 -0.62129581 0.76900542 -0.00048810593 -0.63917965\n\t\t 0.76900542 -0.00048810593 -0.63917965 0.72994167 0.12640785 -0.67168188 0.78749955\n\t\t 0.25159481 -0.5625782 -0.061128601 0.086001061 -0.9944151 0.11172824 0.10657059 -0.98797572\n\t\t 0.11752678 -0.02597129 -0.99270606 0.11752678 -0.02597129 -0.99270606 0.11172824\n\t\t 0.10657059 -0.98797572 0.31269261 0.1011994 -0.94442582 0.11752678 -0.02597129 -0.99270606\n\t\t 0.019837039 -0.025757691 -0.99945068 -0.061128601 0.086001061 -0.9944151 0.31269261\n\t\t 0.1011994 -0.94442582 0.32026121 0.097293034 -0.94228947 0.11752678 -0.02597129 -0.99270606\n\t\t 0.55638295 -0.0073853694 -0.8308664 0.32026121 0.097293034 -0.94228947 0.31269261\n\t\t 0.1011994 -0.94442582 0.31269261 0.1011994 -0.94442582 0.72994167 0.12640785 -0.67168188\n\t\t 0.55638295 -0.0073853694 -0.8308664 0.72994167 0.12640785 -0.67168188 0.76900542\n\t\t -0.00048810593 -0.63917965 0.71498764 -0.042969894 -0.69777519 0.71498764 -0.042969894\n\t\t -0.69777519 0.55638295 -0.0073853694 -0.8308664 0.72994167 0.12640785 -0.67168188\n\t\t -0.18533891 -0.00039687107 -0.98266548 -0.061128601 0.086001061 -0.9944151 0.019837039\n\t\t -0.025757691 -0.99945068 -0.5606252 0.48866212 -0.66847748 -0.66087842 0.39411578\n\t\t -0.63863033 -0.7076633 0.47877413 -0.51954716 -0.7076633 0.47877413 -0.51954716 -0.66087842\n\t\t 0.39411578 -0.63863033 -0.80343032 0.17612202 -0.56874293 -0.80343032 0.17612202\n\t\t -0.56874293 -0.85961491 0.2443614 -0.44868314 -0.7076633 0.47877413 -0.51954716 -0.7076633\n\t\t 0.47877413 -0.51954716 -0.85961491 0.2443614 -0.44868314 -0.89758003 0.30051547 -0.32248911\n\t\t -0.89758003 0.30051547 -0.32248911 -0.74993151 0.53721708 -0.38593709 -0.7076633\n\t\t 0.47877413 -0.51954716 -0.89758003 0.30051547 -0.32248911 -0.85961491 0.2443614 -0.44868314\n\t\t -0.90850556 0.10293863 -0.40498063 -0.90850556 0.10293863 -0.40498063 -0.85961491\n\t\t 0.2443614 -0.44868314 -0.80343032 0.17612202 -0.56874293 -0.90850556 0.10293863 -0.40498063\n\t\t -0.94903415 0.14673267 -0.27881712 -0.89758003 0.30051547 -0.32248911 -0.95019382\n\t\t 0.1390115 -0.27881712 -0.94903415 0.14673267 -0.27881712 -0.90850556 0.10293863 -0.40498063\n\t\t -0.90850556 0.10293863 -0.40498063 -0.9202857 0.10968321 -0.37546921 -0.95019382\n\t\t 0.1390115 -0.27881712 -0.80343032 0.17612202 -0.56874293 -0.84908599 0.059449758\n\t\t -0.52485734 -0.90850556 0.10293863 -0.40498063 -0.9202857 0.10968321 -0.37546921\n\t\t -0.90850556 0.10293863 -0.40498063 -0.84908599 0.059449758 -0.52485734 -0.84908599\n\t\t 0.059449758 -0.52485734 -0.85647142 0.064424269 -0.51213109 -0.9202857 0.10968321\n\t\t -0.37546921 -0.28589734 -0.14984605 -0.94644004 -0.25074005 -0.085604571 -0.96423233\n\t\t -0.096987769 -0.16217546 -0.98196357 -0.096987769 -0.16217546 -0.98196357 -0.25074005\n\t\t -0.085604571 -0.96423233 -0.18533891 -0.00039687107 -0.98266548 -0.096987769 -0.16217546\n\t\t -0.98196357 -0.09088406 -0.19940804 -0.97567677 -0.28589734 -0.14984605 -0.94644004\n\t\t -0.29493082 -0.15039538 -0.94360179 -0.28589734 -0.14984605 -0.94644004 -0.09088406\n\t\t -0.19940804 -0.97567677 -0.18533891 -0.00039687107 -0.98266548 -0.065034904 -0.11386466\n\t\t -0.99133277 -0.096987769 -0.16217546 -0.98196357 -0.09088406 -0.19940804 -0.97567677\n\t\t -0.069093809 -0.32233658 -0.94409007 -0.29493082 -0.15039538 -0.94360179 -0.62135702\n\t\t 0.56974983 -0.53779721 -0.7076633 0.47877413 -0.51954716 -0.74993151 0.53721708 -0.38593709\n\t\t -0.74993151 0.53721708 -0.38593709 -0.66274011 0.62767392 -0.40836823 -0.62135702\n\t\t 0.56974983 -0.53779721 -0.7076633 0.47877413 -0.51954716 -0.62135702 0.56974983 -0.53779721\n\t\t -0.5606252 0.48866212 -0.66847748 0.019837039 -0.025757691 -0.99945068 -0.065034904\n\t\t -0.11386466 -0.99133277 -0.18533891 -0.00039687107 -0.98266548 -0.1088287 -0.99313337\n\t\t -0.042329099 -0.1137727 -0.99203473 -0.053834576 -0.12454574 -0.98861665 0.084048048\n\t\t -0.12454574 -0.98861665 0.084048048 -0.11859462 -0.9896543 0.08069101 -0.1088287\n\t\t -0.99313337 -0.042329099 -0.1088287 -0.99313337 -0.042329099 -0.11859462 -0.9896543\n\t\t 0.08069101 -0.12326396 -0.98956275 0.074312642 -0.12326396 -0.98956275 0.074312642\n\t\t -0.11508499 -0.99270612 -0.035218284 -0.1088287 -0.99313337 -0.042329099 -0.1137727\n\t\t -0.99203473 -0.053834576 -0.1088287 -0.99313337 -0.042329099 -0.093630485 -0.98199409\n\t\t -0.1640064 -0.093630485 -0.98199409 -0.1640064 -0.1088287 -0.99313337 -0.042329099\n\t\t -0.11508499 -0.99270612 -0.035218284 -0.093630485 -0.98199409 -0.1640064 -0.10330485\n\t\t -0.98367268 -0.14728226 -0.1137727 -0.99203473 -0.053834576 -0.11508499 -0.99270612\n\t\t -0.035218284 -0.09570574 -0.97759944 -0.18729202 -0.093630485 -0.98199409 -0.1640064\n\t\t 0.067140892 -0.54957736 -0.83272797 0.07141348 -0.54493856 -0.83541363 0.096438617\n\t\t -0.41193888 -0.90606397 0.096438617 -0.41193888 -0.90606397 0.07141348 -0.54493856\n\t\t -0.83541363 0.070497923 -0.53718686 -0.84047967 0.096438617 -0.41193888 -0.90606397\n\t\t 0.1040072 -0.37907043 -0.91949219 0.067140892 -0.54957736 -0.83272797 0.070497923\n\t\t -0.53718686 -0.84047967 -0.069093809 -0.32233658 -0.94409007 0.096438617 -0.41193888\n\t\t -0.90606397 -0.0017089559 -0.26105538 -0.96530044;\n\tsetAttr \".n[34030:34195]\" -type \"float3\"  -0.0059205103 -0.26099434 -0.96530044\n\t\t 0.015656076 -0.26737273 -0.96343881 0.015656076 -0.26737273 -0.96343881 0.020294892\n\t\t -0.26926488 -0.96282846 -0.0017089559 -0.26105538 -0.96530044 -0.0059205103 -0.26099434\n\t\t -0.96530044 -0.0017089559 -0.26105538 -0.96530044 -0.029999604 -0.29227582 -0.95583969\n\t\t -0.029999604 -0.29227582 -0.95583969 -0.031220343 -0.2998139 -0.95345926 -0.0059205103\n\t\t -0.26099434 -0.96530044 -0.031220343 -0.2998139 -0.95345926 -0.029999604 -0.29227582\n\t\t -0.95583969 0.01876899 -0.34037301 -0.94009215 0.01876899 -0.34037301 -0.94009215\n\t\t 0.020478027 -0.34632412 -0.9378643 -0.031220343 -0.2998139 -0.95345926 0.020478027\n\t\t -0.34632412 -0.9378643 0.01876899 -0.34037301 -0.94009215 0.022888999 -0.38178661\n\t\t -0.92394787 0.022888999 -0.38178661 -0.92394787 0.023987668 -0.38621178 -0.92208624\n\t\t 0.020478027 -0.34632412 -0.9378643 0.023987668 -0.38621178 -0.92208624 0.022888999\n\t\t -0.38178661 -0.92394787 0.022705898 -0.40787995 -0.91271698 0.022705898 -0.40787995\n\t\t -0.91271698 0.02307212 -0.41087076 -0.91137421 0.023987668 -0.38621178 -0.92208624\n\t\t 0.020294892 -0.26926488 -0.96282846 0.015656076 -0.26737273 -0.96343881 0.021240974\n\t\t -0.29294723 -0.95587021 0.021240974 -0.29294723 -0.95587021 0.016602164 -0.30436116\n\t\t -0.95239115 0.020294892 -0.26926488 -0.96282846 0.016602164 -0.30436116 -0.95239115\n\t\t 0.021240974 -0.29294723 -0.95587021 -0.028748333 -0.33423877 -0.94201481 -0.028748333\n\t\t -0.33423877 -0.94201481 -0.031342406 -0.33399463 -0.94201481 0.016602164 -0.30436116\n\t\t -0.95239115 -0.031342406 -0.33399463 -0.94201481 -0.028748333 -0.33423877 -0.94201481\n\t\t -0.096926697 -0.27759644 -0.95577866 -0.096926697 -0.27759644 -0.95577866 -0.08975485\n\t\t -0.28153333 -0.95532089 -0.031342406 -0.33399463 -0.94201481 -0.08975485 -0.28153333\n\t\t -0.95532089 -0.096926697 -0.27759644 -0.95577866 -0.1219519 -0.21863472 -0.96813869\n\t\t -0.1219519 -0.21863472 -0.96813869 -0.12598035 -0.21155442 -0.96917629 -0.08975485\n\t\t -0.28153333 -0.95532089 -0.12598035 -0.21155442 -0.96917629 -0.1219519 -0.21863472\n\t\t -0.96813869 -0.14383368 -0.18796362 -0.97155672 -0.14383368 -0.18796362 -0.97155672\n\t\t -0.14383368 -0.18796362 -0.97155672 -0.12598035 -0.21155442 -0.96917629 -0.020813707\n\t\t 0.26908177 0.96288949 -0.023316225 0.27271345 0.9617908 -0.0061953501 0.29960027\n\t\t 0.9540391 -0.0061953501 0.29960027 0.9540391 -0.0073855696 0.29233685 0.956267 -0.020813707\n\t\t 0.26908177 0.96288949 -0.023316225 0.27271345 0.9617908 -0.020813707 0.26908177 0.96288949\n\t\t -0.041291632 0.28366959 0.9580065 -0.041291632 0.28366959 0.9580065 -0.04464867 0.28849152\n\t\t 0.95641959 -0.023316225 0.27271345 0.9617908 -0.0073855696 0.29233685 0.956267 -0.0061953501\n\t\t 0.29960027 0.9540391 -0.081911772 0.29380172 0.95233011 -0.081911772 0.29380172 0.95233011\n\t\t -0.09485162 0.30552083 0.9474166 -0.0073855696 0.29233685 0.956267 -0.09485162 0.30552083\n\t\t 0.9474166 -0.081911772 0.29380172 0.95233011 -0.034119781 0.28220472 0.95873898 -0.034119781\n\t\t 0.28220472 0.95873898 -0.032136079 0.28772858 0.95715201 -0.09485162 0.30552083 0.9474166\n\t\t -0.032136079 0.28772858 0.95715201 -0.034119781 0.28220472 0.95873898 -0.026490165\n\t\t 0.31809449 0.94766074 -0.026490165 0.31809449 0.94766074 -0.023346759 0.32706693\n\t\t 0.94470048 -0.032136079 0.28772858 0.95715201 -0.04464867 0.28849152 0.95641959 -0.041291632\n\t\t 0.28366959 0.9580065 -0.038026169 0.33747375 0.94054997 -0.038026169 0.33747375 0.94054997\n\t\t -0.048768681 0.32853177 0.94320506 -0.04464867 0.28849152 0.95641959 -0.048768681\n\t\t 0.32853177 0.94320506 -0.038026169 0.33747375 0.94054997 0.035737049 0.41492972 0.90911579\n\t\t 0.035737049 0.41492972 0.90911579 0.024384161 0.41499075 0.90948206 -0.048768681\n\t\t 0.32853177 0.94320506 0.024384161 0.41499075 0.90948206 0.035737049 0.41492972 0.90911579\n\t\t 0.1208837 0.35493034 0.92703027 0.1208837 0.35493034 0.92703027 0.136204 0.33854192\n\t\t 0.93102819 0.024384161 0.41499075 0.90948206 0.17706832 0.24600984 0.95294046 0.136204\n\t\t 0.33854192 0.93102819 0.1208837 0.35493034 0.92703027 0.1208837 0.35493034 0.92703027\n\t\t 0.17987601 0.23923473 0.95413065 0.17706832 0.24600984 0.95294046 0.17706832 0.24600984\n\t\t 0.95294046 0.17987601 0.23923473 0.95413065 0.20374151 0.20203267 0.95791495 0.20374151\n\t\t 0.20203267 0.95791495 0.20374151 0.20203267 0.95794547 0.17706832 0.24600984 0.95294046\n\t\t -0.48145998 -0.089663595 -0.87185276 -0.47230443 -0.097323745 -0.87600327 -0.6412549\n\t\t -0.016938029 -0.76711327 -0.6412549 -0.016938029 -0.76711327 -0.7423017 0.044922967\n\t\t -0.66850793 -0.48145998 -0.089663595 -0.87185276 -0.47230443 -0.097323745 -0.87600327\n\t\t -0.48145998 -0.089663595 -0.87185276 -0.11340671 -0.22672211 -0.96731466 -0.11340671\n\t\t -0.22672211 -0.96731466 -0.10980552 -0.22928567 -0.96713156 -0.47230443 -0.097323745\n\t\t -0.87600327 -0.10980552 -0.22928567 -0.96713156 -0.11340671 -0.22672211 -0.96731466\n\t\t -0.0065613999 -0.25714901 -0.9663381 -0.0065613999 -0.25714901 -0.9663381 -0.019104509\n\t\t -0.25348681 -0.96713156 -0.10980552 -0.22928567 -0.96713156 -0.019104509 -0.25348681\n\t\t -0.96713156 -0.0065613999 -0.25714901 -0.9663381 0.0021668943 -0.2587665 -0.96591085\n\t\t 0.0021668943 -0.2587665 -0.96591085 -0.012543029 -0.25428027 -0.96704 -0.019104509\n\t\t -0.25348681 -0.96713156 0.86638987 0.47907984 -0.14081243 0.86638987 0.47907984 -0.14081243\n\t\t 0.86638987 0.47907984 -0.14081243 0.8159427 0.56599653 -0.11767942 0.81279927 0.57115412\n\t\t -0.11444446 0.817316 0.56419593 -0.1168249 0.817316 0.56419593 -0.1168249 0.8202458\n\t\t 0.55949605 -0.11883912 0.8159427 0.56599653 -0.11767942 0.81279927 0.57115412 -0.11444446\n\t\t 0.8159427 0.56599653 -0.11767942 0.81127334 0.57426703 -0.10965305 0.81127334 0.57426703\n\t\t -0.10965305 0.80901498 0.5781734 -0.10553304 0.81279927 0.57115412 -0.11444446 0.99914551\n\t\t -0.039215975 0.011017185 0.99914551 -0.039185457 0.011017185 0.99407947 -0.10547166\n\t\t 0.02533037 0.99407947 -0.10547166 0.02533037 0.99441516 -0.10235877 0.024658963 0.99914551\n\t\t -0.039215975 0.011017185 0.99441516 -0.10235877 0.024658963 0.99407947 -0.10547166\n\t\t 0.02533037;\n\tsetAttr \".n[34196:34361]\" -type \"float3\"  0.98495442 -0.1681872 0.03888059 0.98495442\n\t\t -0.1681872 0.03888059 0.98498493 -0.1681872 0.03888059 0.99441516 -0.10235877 0.024658963\n\t\t 0.98498493 -0.1681872 0.03888059 0.98495442 -0.1681872 0.03888059 0.93807805 -0.33805323\n\t\t 0.075502813 0.93807805 -0.33805323 0.075502813 0.94955301 -0.30555102 0.070284151\n\t\t 0.98498493 -0.1681872 0.03888059 0.94955301 -0.30555102 0.070284151 0.93807805 -0.33805323\n\t\t 0.075502813 0.71977931 -0.67607629 0.15738399 0.71977931 -0.67607629 0.15738399 0.76723552\n\t\t -0.62471366 0.14499348 0.94955301 -0.30555102 0.070284151 0.80901498 0.5781734 -0.10553304\n\t\t 0.81127334 0.57426703 -0.10965305 0.81130385 0.57499945 -0.10534994 0.81130385 0.57499945\n\t\t -0.10534994 0.80773324 0.58055383 -0.10226758 0.80901498 0.5781734 -0.10553304 -0.98016304\n\t\t 0.19324291 -0.04370252 -0.98025459 0.19266306 -0.044160299 -0.97900331 0.20007905\n\t\t -0.038819559 -0.97900331 0.20007905 -0.038819559 -0.97900331 0.20014009 -0.037904002\n\t\t -0.98016304 0.19324291 -0.04370252 -0.98025459 0.19266306 -0.044160299 -0.98016304\n\t\t 0.19324291 -0.04370252 -0.98159742 0.18610157 -0.042756446 -0.98159742 0.18610157\n\t\t -0.042756446 -0.98159742 0.18610157 -0.042756446 -0.98025459 0.19266306 -0.044160299\n\t\t 0.27625385 -0.93920708 0.20377216 0.27628437 -0.93920708 0.20380268 0.45033139 -0.87243253\n\t\t 0.18976416 0.45033139 -0.87243253 0.18976416 0.39610001 -0.89678627 0.19699703 0.27625385\n\t\t -0.93920708 0.20377216 0.39610001 -0.89678627 0.19699703 0.45033139 -0.87243253 0.18976416\n\t\t 0.76723552 -0.62471366 0.14499348 0.76723552 -0.62471366 0.14499348 0.71977931 -0.67607629\n\t\t 0.15738399 0.39610001 -0.89678627 0.19699703 -0.94906467 0.1963558 0.24631487 -0.93044835\n\t\t 0.27933565 0.23700672 -0.95422232 0.24878661 0.16586809 -0.95422232 0.24878661 0.16586809\n\t\t -0.96667385 0.17706811 0.18478955 -0.94906467 0.1963558 0.24631487 -0.97964412 -0.11722188\n\t\t 0.16281626 -0.98117012 0.12066989 0.15066987 -0.98074287 0.13415909 0.14188054 -0.98074287\n\t\t 0.13415909 0.14188054 -0.97311312 -0.18015105 0.1434065 -0.97964412 -0.11722188 0.16281626\n\t\t -0.97509694 0.18655936 0.11969358 -0.98074287 0.13415909 0.14188054 -0.98117012 0.12066989\n\t\t 0.15066987 3.0907611e-07 -0.99957275 -0.029084064 3.0907611e-07 -0.99957275 -0.029084064\n\t\t 3.0907611e-07 -0.99957275 -0.029084064 3.0907611e-07 -0.99957275 -0.029084064 3.0907611e-07\n\t\t -0.99957275 -0.029084064 3.0907611e-07 -0.99957275 -0.029084064 3.0907611e-07 -0.99957275\n\t\t -0.029084064 3.0907611e-07 -0.99957275 -0.029084064 3.0907611e-07 -0.99957275 -0.029084064\n\t\t -0.12128025 -0.98800629 0.095248342 -0.1215244 -0.98779267 0.097140491 -0.1197238\n\t\t -0.9883725 0.093569823 -0.1197238 -0.9883725 0.093569823 -0.11984588 -0.98840302\n\t\t 0.093173087 -0.12128025 -0.98800629 0.095248342 -0.1215244 -0.98779267 0.097140491\n\t\t -0.12128025 -0.98800629 0.095248342 -0.12948973 -0.985107 0.11301012 -0.12948973\n\t\t -0.985107 0.11301012 -0.13803492 -0.98251295 0.12488181 -0.1215244 -0.98779267 0.097140491\n\t\t -0.14749566 -0.97961372 0.13614315 -0.13803492 -0.98251295 0.12488181 -0.12948973\n\t\t -0.985107 0.11301012 0.14883848 0.97979683 -0.13354908 0.14883848 0.97979683 -0.13354908\n\t\t 0.14883848 0.97979683 -0.13354908 0.10364092 -0.24585716 -0.96374398 0.10278641 -0.24314101\n\t\t -0.96450698 0.10553306 -0.22464679 -0.96868801 0.10553306 -0.22464679 -0.96868801\n\t\t 0.098330714 -0.23081154 -0.96798611 0.10364092 -0.24585716 -0.96374398 0.098330714\n\t\t -0.23081154 -0.96798611 0.10553306 -0.22464679 -0.96868801 0.11752678 -0.02597129\n\t\t -0.99270606 0.11752678 -0.02597129 -0.99270606 0.037843045 -0.29721981 -0.9540391\n\t\t 0.098330714 -0.23081154 -0.96798611 0.10553306 -0.22464679 -0.96868801 0.019837039\n\t\t -0.025757691 -0.99945068 0.11752678 -0.02597129 -0.99270606 0.10553306 -0.22464679\n\t\t -0.96868801 -0.065034904 -0.11386466 -0.99133277 0.019837039 -0.025757691 -0.99945068\n\t\t 0.10553306 -0.22464679 -0.96868801 -0.096987769 -0.16217546 -0.98196357 -0.065034904\n\t\t -0.11386466 -0.99133277 -0.096987769 -0.16217546 -0.98196357 0.10553306 -0.22464679\n\t\t -0.96868801 0.10278641 -0.24314101 -0.96450698 0.10278641 -0.24314101 -0.96450698\n\t\t -0.09088406 -0.19940804 -0.97567677 -0.096987769 -0.16217546 -0.98196357 -0.069093809\n\t\t -0.32233658 -0.94409007 -0.09088406 -0.19940804 -0.97567677 0.10278641 -0.24314101\n\t\t -0.96450698 0.10278641 -0.24314101 -0.96450698 0.096438617 -0.41193888 -0.90606397\n\t\t -0.069093809 -0.32233658 -0.94409007 0.096438617 -0.41193888 -0.90606397 0.10278641\n\t\t -0.24314101 -0.96450698 0.10364092 -0.24585716 -0.96374398 0.10364092 -0.24585716\n\t\t -0.96374398 0.1040072 -0.37907043 -0.91949219 0.096438617 -0.41193888 -0.90606397\n\t\t -0.49711579 -0.72206807 0.48106334 -0.49580348 -0.72609651 0.47633296 -0.49568143\n\t\t -0.71266836 0.49632257 -0.49568143 -0.71266836 0.49632257 -0.59089923 -0.58803076\n\t\t 0.55226302 -0.49711579 -0.72206807 0.48106334 -0.59089923 -0.58803076 0.55226302\n\t\t -0.49568143 -0.71266836 0.49632257 -0.4834435 -0.683218 0.54722744 -0.4834435 -0.683218\n\t\t 0.54722744 -0.52958751 -0.59187609 0.60759306 -0.59089923 -0.58803076 0.55226302\n\t\t -0.16733269 -0.96823031 0.1857052 -0.16644765 -0.96832186 0.18604091 -0.16608143\n\t\t -0.97302169 0.16003914 -0.14502366 -0.96493429 0.2186652 -0.16644765 -0.96832186\n\t\t 0.18604091 -0.16733269 -0.96823031 0.1857052 -0.52958751 -0.59187609 0.60759306 -0.4834435\n\t\t -0.683218 0.54722744 -0.38660827 -0.65984076 0.64427632 -0.16733269 -0.96823031 0.1857052\n\t\t -0.14395551 -0.96511739 0.21857364 -0.14502366 -0.96493429 0.2186652 -0.16608143\n\t\t -0.97302169 0.16003914 -0.16638662 -0.97302169 0.15973395 -0.16733269 -0.96823031\n\t\t 0.1857052 -0.38660827 -0.65984076 0.64427632 -0.42085007 -0.58171338 0.69603568 -0.52958751\n\t\t -0.59187609 0.60759306 -0.22339533 -0.55397201 0.80196548 -0.42085007 -0.58171338\n\t\t 0.69603568 -0.38660827 -0.65984076 0.64427632 -0.38660827 -0.65984076 0.64427632\n\t\t -0.21127945 -0.61574143 0.75908697 -0.22339533 -0.55397201 0.80196548 -0.16171728\n\t\t -0.97470021 0.15414907 -0.16638662 -0.97302169 0.15973395 -0.16608143 -0.97302169\n\t\t 0.16003914;\n\tsetAttr \".n[34362:34527]\" -type \"float3\"  -0.16608143 -0.97302169 0.16003914 -0.15973358\n\t\t -0.97515798 0.15335558 -0.16171728 -0.97470021 0.15414907 -0.22339533 -0.55397201\n\t\t 0.80196548 -0.21127945 -0.61574143 0.75908697 1.8661767e-07 -0.60353398 0.79729611\n\t\t 0.00061066489 -0.95312357 0.30253005 0.00048859086 -0.95312357 0.30249953 -0.083010048\n\t\t -0.95596176 0.28144175 -0.083010048 -0.95596176 0.28144175 -0.078310199 -0.95672476\n\t\t 0.28015998 0.00061066489 -0.95312357 0.30253005 -0.078310199 -0.95672476 0.28015998\n\t\t -0.083010048 -0.95596176 0.28144175 -0.14502366 -0.96493429 0.2186652 -0.14502366\n\t\t -0.96493429 0.2186652 -0.14395551 -0.96511739 0.21857364 -0.078310199 -0.95672476\n\t\t 0.28015998 1.8661767e-07 -0.60353398 0.79729611 1.6803705e-07 -0.54344302 0.83941168\n\t\t -0.22339533 -0.55397201 0.80196548 -0.59089923 -0.58803076 0.55226302 -0.67332977\n\t\t -0.46253872 0.57676935 -0.73445833 -0.35862321 0.57612842 -0.73445833 -0.35862321\n\t\t 0.57612842 -0.69902641 -0.18842146 0.68980986 -0.59089923 -0.58803076 0.55226302\n\t\t -0.81542391 -0.32190946 0.48103279 -0.73445833 -0.35862321 0.57612842 -0.67332977\n\t\t -0.46253872 0.57676935 1.430207e-07 -0.46253848 0.88659328 1.16938e-07 -0.3781853\n\t\t 0.92571795 -0.22644722 -0.38184759 0.89602345 -0.22644722 -0.38184759 0.89602345\n\t\t -0.22379208 -0.46784875 0.85497612 1.430207e-07 -0.46253848 0.88659328 1.430207e-07\n\t\t -0.46253848 0.88659328 -0.22379208 -0.46784875 0.85497612 -0.22339533 -0.55397201\n\t\t 0.80196548 -0.22339533 -0.55397201 0.80196548 1.6803705e-07 -0.54344302 0.83941168\n\t\t 1.430207e-07 -0.46253848 0.88659328 -0.22952962 -0.28980377 0.92913604 -0.22644722\n\t\t -0.38184759 0.89602345 1.16938e-07 -0.3781853 0.92571795 1.16938e-07 -0.3781853 0.92571795\n\t\t 8.9307719e-08 -0.28882712 0.95736563 -0.22952962 -0.28980377 0.92913604 -0.2354808\n\t\t -0.036378067 0.97119051 -0.22952962 -0.28980377 0.92913604 8.9307719e-08 -0.28882712\n\t\t 0.95736563 8.9307719e-08 -0.28882712 0.95736563 1.089922e-08 -0.035248805 0.99935913\n\t\t -0.2354808 -0.036378067 0.97119051 -0.33304843 -0.21140189 -0.91888177 -0.35065761\n\t\t -0.198401 -0.9152196 -0.34806353 -0.19800428 -0.91628772 -0.33304843 -0.21140189\n\t\t -0.91888177 -0.34806353 -0.19800428 -0.91628772 -0.35062709 -0.20160545 -0.91451764\n\t\t -0.34806353 -0.19800428 -0.91628772 -0.34565258 -0.19910294 -0.91695911 -0.35062709\n\t\t -0.20160545 -0.91451764 -0.34806353 -0.19800428 -0.91628772 -0.34479806 -0.20014057\n\t\t -0.91708124 -0.34565258 -0.19910294 -0.91695911 -0.34806353 -0.19800428 -0.91628772\n\t\t -0.34476754 -0.20014057 -0.91708124 -0.34479806 -0.20014057 -0.91708124 -0.34479806\n\t\t -0.20014057 -0.91708124 -0.34061703 -0.19711924 -0.91927856 -0.34565258 -0.19910294\n\t\t -0.91695911 -0.34565258 -0.19910294 -0.91695911 -0.34141052 -0.19776012 -0.91885126\n\t\t -0.35062709 -0.20160545 -0.91451764 -0.2504653 -0.28235739 -0.92599261 -0.33304843\n\t\t -0.21140189 -0.91888177 -0.35062709 -0.20160545 -0.91451764 -0.2504653 -0.28235739\n\t\t -0.92599261 -0.35062709 -0.20160545 -0.91451764 -0.56013668 -0.12945975 -0.81820124\n\t\t -0.90206599 -0.4310742 0.020142248 -0.90200496 -0.43122682 0.020325359 -0.91293055\n\t\t -0.40769702 -0.01678515 -0.8458814 -0.47819477 0.23609123 -0.90206599 -0.4310742\n\t\t 0.020142248 -0.91293055 -0.40769702 -0.01678515 -0.88573855 -0.46327123 0.028534843\n\t\t -0.8458814 -0.47819477 0.23609123 -0.91293055 -0.40769702 -0.01678515 -0.88573855\n\t\t -0.46327123 0.028534843 -0.91293055 -0.40769702 -0.01678515 -0.897946 -0.43211183\n\t\t -0.083284982 -0.88573855 -0.46327123 0.028534843 -0.897946 -0.43211183 -0.083284982\n\t\t -0.8907131 -0.44492963 -0.092715204 -0.89031637 -0.44569257 -0.09311194 -0.88573855\n\t\t -0.46327123 0.028534843 -0.8907131 -0.44492963 -0.092715204 -0.912839 -0.36973202\n\t\t 0.17310101 -0.8458814 -0.47819477 0.23609123 -0.88573855 -0.46327123 0.028534843\n\t\t -0.89318508 -0.44364783 0.073397048 -0.86654246 -0.44920218 0.21741389 -0.8564713\n\t\t -0.42796129 0.28855252 -0.54673886 -0.80800825 -0.21945854 -0.57948524 -0.76378691\n\t\t -0.28421882 -0.51899755 -0.83239251 -0.19418922 -0.57948524 -0.76378691 -0.28421882\n\t\t -0.54673886 -0.80800825 -0.21945854 -0.6491285 -0.66502899 -0.36918235 -0.6491285\n\t\t -0.66502899 -0.36918235 -0.67812109 -0.57780725 -0.45414591 -0.57948524 -0.76378691\n\t\t -0.28421882 -0.67812109 -0.57780725 -0.45414591 -0.6491285 -0.66502899 -0.36918235\n\t\t -0.74159968 -0.33759603 -0.57966858 -0.74159968 -0.33759603 -0.57966858 -0.73546547\n\t\t -0.30021086 -0.60740989 -0.67812109 -0.57780725 -0.45414591 -0.73546547 -0.30021086\n\t\t -0.60740989 -0.74159968 -0.33759603 -0.57966858 -0.74456006 -0.083865151 -0.66225165\n\t\t -0.74456006 -0.083865151 -0.66225165 -0.73503828 -0.087649442 -0.67229223 -0.73546547\n\t\t -0.30021086 -0.60740989 -0.73503828 -0.087649442 -0.67229223 -0.74456006 -0.083865151\n\t\t -0.66225165 -0.76094854 -0.0086370222 -0.64873195 -0.76094854 -0.0086370222 -0.64873195\n\t\t -0.75972778 -0.019684721 -0.64989167 -0.73503828 -0.087649442 -0.67229223 -0.81542414\n\t\t 0.42307782 -0.39506215 -0.78792703 0.48753291 -0.37607962 -0.74620825 0.62749082\n\t\t -0.22214428 -0.74620825 0.62749082 -0.22214428 -0.8071537 0.49061528 -0.32825711\n\t\t -0.81542414 0.42307782 -0.39506215 -0.8071537 0.49061528 -0.32825711 -0.74620825\n\t\t 0.62749082 -0.22214428 -0.6917938 0.71221024 -0.11890016 -0.912839 -0.36973202 0.17310101\n\t\t -0.92443603 -0.36045441 0.12433244 -0.89226955 -0.43916163 0.10477007 -0.88573855\n\t\t -0.46327123 0.028534843 -0.86654246 -0.44920218 0.21741389 -0.912839 -0.36973202\n\t\t 0.17310101 -0.05621535 0.83608514 0.54570138 -0.059633404 0.77596366 0.62791824 -0.045045599\n\t\t 0.90798676 0.41651654 -0.059633404 0.77596366 0.62791824 -0.05621535 0.83608514 0.54570138\n\t\t -0.067934416 0.70046091 0.71040982 -0.067934416 0.70046091 0.71040982 -0.063356645\n\t\t 0.69539481 0.71578103 -0.059633404 0.77596366 0.62791824 -0.051240589 0.033234715\n\t\t 0.99810785 -0.05456711 0.043488931 0.99755853 -0.047029004 -0.058320813 0.99716181\n\t\t -0.047029004 -0.058320813 0.99716181 -0.039612979 -0.13986626 0.98934907 -0.051240589\n\t\t 0.033234715 0.99810785 -0.039612979 -0.13986626 0.98934907 -0.047029004 -0.058320813\n\t\t 0.99716181 -0.034028046 -0.30030209 0.95321512 -0.034028046 -0.30030209 0.95321512;\n\tsetAttr \".n[34528:34693]\" -type \"float3\"  -0.034943581 -0.35618147 0.93374431 -0.039612979\n\t\t -0.13986626 0.98934907 -0.034943581 -0.35618147 0.93374431 -0.034028046 -0.30030209\n\t\t 0.95321512 -0.03570652 -0.43131804 0.90148634 -0.03570652 -0.43131804 0.90148634\n\t\t -0.036286373 -0.42930382 0.90240186 -0.034943581 -0.35618147 0.93374431 -0.038575124\n\t\t -0.87994015 0.47346422 -0.037354406 -0.80706191 0.58925146 -0.040589366 -0.81081569\n\t\t 0.58384967 -0.040589366 -0.81081569 0.58384967 -0.040558826 -0.87890249 0.47520378\n\t\t -0.038575124 -0.87994015 0.47346422 -0.038575124 -0.87994015 0.47346422 -0.040558826\n\t\t -0.87890249 0.47520378 -0.0374154 -0.94225895 0.33271286 -0.8458814 -0.47819477 0.23609123\n\t\t -0.912839 -0.36973202 0.17310101 -0.7649768 -0.54515237 0.342906 -0.86654246 -0.44920218\n\t\t 0.21741389 -0.88573855 -0.46327123 0.028534843 -0.89031637 -0.44569257 -0.09311194\n\t\t 0.12359974 0.71755117 -0.68541527 0.13330463 0.70809048 -0.69338059 0.25763705 0.7197485\n\t\t -0.64461201 0.13330463 0.70809048 -0.69338059 0.12359974 0.71755117 -0.68541527 -2.2101399e-07\n\t\t 0.71477395 -0.6993317 -0.55473512 0.51176465 -0.65596491 -0.76061291 0.45030034 -0.46757412\n\t\t -0.87847537 0.27729088 -0.38904998 -0.49549869 0.60600579 -0.62224197 -0.76061291\n\t\t 0.45030034 -0.46757412 -0.55473512 0.51176465 -0.65596491 -0.55473512 0.51176465\n\t\t -0.65596491 -0.49781805 0.38236621 -0.77840513 -0.49549869 0.60600579 -0.62224197\n\t\t -0.49549869 0.60600579 -0.62224197 -0.49781805 0.38236621 -0.77840513 -0.53334165\n\t\t 0.51377887 -0.6719566 -0.53334165 0.51377887 -0.6719566 -0.52052391 0.70305467 -0.48448139\n\t\t -0.49549869 0.60600579 -0.62224197 -0.80446792 0.0070800013 -0.59389019 -0.80446792\n\t\t 0.032135695 -0.59309673 -0.80388808 0.031220144 -0.59392071 -0.80388808 0.031220144\n\t\t -0.59392071 -0.80413222 0.0091857789 -0.59434795 -0.80446792 0.0070800013 -0.59389019\n\t\t -0.80446792 0.0070800013 -0.59389019 -0.80413222 0.0091857789 -0.59434795 -0.80150759\n\t\t -0.011627845 -0.59782708 -0.80150759 -0.011627845 -0.59782708 -0.91738641 0.068879962\n\t\t -0.39194921 -0.80446792 0.0070800013 -0.59389019 -0.91738641 0.068879962 -0.39194921\n\t\t -0.80150759 -0.011627845 -0.59782708 -0.80397964 -0.021119101 -0.5942564 -0.80397964\n\t\t -0.021119101 -0.5942564 -0.91982788 0.048768267 -0.3892636 -0.91738641 0.068879962\n\t\t -0.39194921 -0.89870906 -0.06866695 -0.43305764 -0.91982788 0.048768267 -0.3892636\n\t\t -0.80397964 -0.021119101 -0.5942564 -0.80397964 -0.021119101 -0.5942564 -0.78084654\n\t\t -0.17392527 -0.59999388 -0.89870906 -0.06866695 -0.43305764 -0.84450805 -0.37089175\n\t\t -0.38627276 -0.89870906 -0.06866695 -0.43305764 -0.78084654 -0.17392527 -0.59999388\n\t\t -0.78084654 -0.17392527 -0.59999388 -0.73827314 -0.3066808 -0.60072637 -0.84450805\n\t\t -0.37089175 -0.38627276 -0.84450805 -0.37089175 -0.38627276 -0.73827314 -0.3066808\n\t\t -0.60072637 -0.78841507 -0.34299779 -0.51060516 -0.78841507 -0.34299779 -0.51060516\n\t\t -0.85131371 -0.40516403 -0.33323157 -0.84450805 -0.37089175 -0.38627276 -0.90322566\n\t\t -0.4089483 -0.1299783 -0.85131371 -0.40516403 -0.33323157 -0.78841507 -0.34299779\n\t\t -0.51060516 -0.78841507 -0.34299779 -0.51060516 -0.91488373 -0.38044402 -0.13489178\n\t\t -0.90322566 -0.4089483 -0.1299783 0.27164498 0.9031648 -0.33234662 -0.050783105 0.99078339\n\t\t -0.12537012 -0.046266366 0.99343854 -0.10449545 -0.046266366 0.99343854 -0.10449545\n\t\t 0.25714868 0.90530115 -0.33805358 0.27164498 0.9031648 -0.33234662 0.30100378 0.91280872\n\t\t -0.27591792 0.25714868 0.90530115 -0.33805358 -0.046266366 0.99343854 -0.10449545\n\t\t -0.046266366 0.99343854 -0.10449545 -0.0018314195 0.99932861 -0.036195025 0.30100378\n\t\t 0.91280872 -0.27591792 0.37147102 0.91009259 -0.18353839 0.30100378 0.91280872 -0.27591792\n\t\t -0.0018314195 0.99932861 -0.036195025 -0.0018314195 0.99932861 -0.036195025 0.070161745\n\t\t 0.99581897 0.057954576 0.37147102 0.91009259 -0.18353839 0.30100378 0.91280872 -0.27591792\n\t\t 0.37147102 0.91009259 -0.18353839 0.60847783 0.6870634 -0.3970764 0.60847783 0.6870634\n\t\t -0.3970764 0.55177438 0.68568999 -0.47468495 0.30100378 0.91280872 -0.27591792 0.25714868\n\t\t 0.90530115 -0.33805358 0.30100378 0.91280872 -0.27591792 0.55177438 0.68568999 -0.47468495\n\t\t 0.55177438 0.68568999 -0.47468495 0.51881444 0.67619872 -0.52296525 0.25714868 0.90530115\n\t\t -0.33805358 0.27164498 0.9031648 -0.33234662 0.25714868 0.90530115 -0.33805358 0.51881444\n\t\t 0.67619872 -0.52296525 0.51881444 0.67619872 -0.52296525 0.55241537 0.66853857 -0.49784851\n\t\t 0.27164498 0.9031648 -0.33234662 0.55241537 0.66853857 -0.49784851 0.51881444 0.67619872\n\t\t -0.52296525 0.69469273 0.34662938 -0.63020724 0.69469273 0.34662938 -0.63020724 0.74077564\n\t\t 0.33506292 -0.58217108 0.55241537 0.66853857 -0.49784851 0.71129477 0.35813487 -0.60475481\n\t\t 0.69469273 0.34662938 -0.63020724 0.51881444 0.67619872 -0.52296525 0.51881444 0.67619872\n\t\t -0.52296525 0.55177438 0.68568999 -0.47468495 0.71129477 0.35813487 -0.60475481 0.74660468\n\t\t 0.36661905 -0.55507064 0.71129477 0.35813487 -0.60475481 0.55177438 0.68568999 -0.47468495\n\t\t 0.55177438 0.68568999 -0.47468495 0.60847783 0.6870634 -0.3970764 0.74660468 0.36661905\n\t\t -0.55507064 0.71129477 0.35813487 -0.60475481 0.74660468 0.36661905 -0.55507064 0.77089757\n\t\t -0.0015867715 -0.63692129 0.77089757 -0.0015867715 -0.63692129 0.7606433 -0.016754474\n\t\t -0.64891505 0.71129477 0.35813487 -0.60475481 0.69469273 0.34662938 -0.63020724 0.71129477\n\t\t 0.35813487 -0.60475481 0.7606433 -0.016754474 -0.64891505 0.7606433 -0.016754474\n\t\t -0.64891505 0.76454967 -0.030121582 -0.64384902 0.69469273 0.34662938 -0.63020724\n\t\t 0.74077564 0.33506292 -0.58217108 0.69469273 0.34662938 -0.63020724 0.76454967 -0.030121582\n\t\t -0.64384902 0.76454967 -0.030121582 -0.64384902 0.81963563 -0.043488663 -0.5711844\n\t\t 0.74077564 0.33506292 -0.58217108 0.81963563 -0.043488663 -0.5711844 0.76454967 -0.030121582\n\t\t -0.64384902 0.72322774 -0.40235582 -0.56126583 0.72322774 -0.40235582 -0.56126583\n\t\t 0.77993113 -0.41608915 -0.46748251 0.81963563 -0.043488663 -0.5711844 0.69911814\n\t\t -0.38877511 -0.60005492 0.72322774 -0.40235582 -0.56126583;\n\tsetAttr \".n[34694:34859]\" -type \"float3\"  0.76454967 -0.030121582 -0.64384902 0.76454967\n\t\t -0.030121582 -0.64384902 0.7606433 -0.016754474 -0.64891505 0.69911814 -0.38877511\n\t\t -0.60005492 0.68276024 -0.37079975 -0.62950528 0.69911814 -0.38877511 -0.60005492\n\t\t 0.7606433 -0.016754474 -0.64891505 0.7606433 -0.016754474 -0.64891505 0.77089757\n\t\t -0.0015867715 -0.63692129 0.68276024 -0.37079975 -0.62950528 0.69911814 -0.38877511\n\t\t -0.60005492 0.68276024 -0.37079975 -0.62950528 0.49443057 -0.6920681 -0.52586436\n\t\t 0.49443057 -0.6920681 -0.52586436 0.53627151 -0.70836502 -0.45887625 0.69911814 -0.38877511\n\t\t -0.60005492 0.72322774 -0.40235582 -0.56126583 0.69911814 -0.38877511 -0.60005492\n\t\t 0.53627151 -0.70836502 -0.45887625 0.53627151 -0.70836502 -0.45887625 0.575091 -0.71837503\n\t\t -0.3913388 0.72322774 -0.40235582 -0.56126583 0.77993113 -0.41608915 -0.46748251\n\t\t 0.72322774 -0.40235582 -0.56126583 0.575091 -0.71837503 -0.3913388 0.575091 -0.71837503\n\t\t -0.3913388 0.61830527 -0.72978896 -0.29163483 0.77993113 -0.41608915 -0.46748251\n\t\t 0.61830527 -0.72978896 -0.29163483 0.575091 -0.71837503 -0.3913388 0.33634478 -0.92852551\n\t\t -0.15698715 0.33634478 -0.92852551 -0.15698715 0.35377085 -0.93185204 -0.080202572\n\t\t 0.61830527 -0.72978896 -0.29163483 0.29105532 -0.92663336 -0.23795274 0.33634478\n\t\t -0.92852551 -0.15698715 0.575091 -0.71837503 -0.3913388 0.575091 -0.71837503 -0.3913388\n\t\t 0.53627151 -0.70836502 -0.45887625 0.29105532 -0.92663336 -0.23795274 0.22870599\n\t\t -0.91567731 -0.33045435 0.29105532 -0.92663336 -0.23795274 0.53627151 -0.70836502\n\t\t -0.45887625 0.53627151 -0.70836502 -0.45887625 0.49443057 -0.6920681 -0.52586436\n\t\t 0.22870599 -0.91567731 -0.33045435 0.29105532 -0.92663336 -0.23795274 0.22870599\n\t\t -0.91567731 -0.33045435 -0.075319372 -0.99462873 -0.070711315 -0.075319372 -0.99462873\n\t\t -0.070711315 -0.0025327273 -0.99957275 0.029023178 0.29105532 -0.92663336 -0.23795274\n\t\t 0.33634478 -0.92852551 -0.15698715 0.29105532 -0.92663336 -0.23795274 -0.0025327273\n\t\t -0.99957275 0.029023178 -0.0025327273 -0.99957275 0.029023178 0.040345773 -0.99386579\n\t\t 0.10266434 0.33634478 -0.92852551 -0.15698715 0.35377085 -0.93185204 -0.080202572\n\t\t 0.33634478 -0.92852551 -0.15698715 0.040345773 -0.99386579 0.10266434 0.040345773\n\t\t -0.99386579 0.10266434 0.027100744 -0.99118012 0.12952062 0.35377085 -0.93185204\n\t\t -0.080202572 0.47337282 -0.68050164 -0.55928212 0.49443057 -0.6920681 -0.52586436\n\t\t 0.68276024 -0.37079975 -0.62950528 0.68276024 -0.37079975 -0.62950528 0.6895048 -0.36289546\n\t\t -0.62675864 0.47337282 -0.68050164 -0.55928212 0.6895048 -0.36289546 -0.62675864\n\t\t 0.68276024 -0.37079975 -0.62950528 0.77089757 -0.0015867715 -0.63692129 0.77089757\n\t\t -0.0015867715 -0.63692129 0.80062258 0.0022890912 -0.59913939 0.6895048 -0.36289546\n\t\t -0.62675864 0.80062258 0.0022890912 -0.59913939 0.77089757 -0.0015867715 -0.63692129\n\t\t 0.74660468 0.36661905 -0.55507064 0.74660468 0.36661905 -0.55507064 0.79369473 0.36381137\n\t\t -0.48747218 0.80062258 0.0022890912 -0.59913939 0.79369473 0.36381137 -0.48747218\n\t\t 0.74660468 0.36661905 -0.55507064 0.60847783 0.6870634 -0.3970764 0.60847783 0.6870634\n\t\t -0.3970764 0.66957587 0.67531377 -0.30909151 0.79369473 0.36381137 -0.48747218 0.66957587\n\t\t 0.67531377 -0.30909151 0.60847783 0.6870634 -0.3970764 0.37147102 0.91009259 -0.18353839\n\t\t 0.37147102 0.91009259 -0.18353839 0.44206035 0.89278859 -0.086489521 0.66957587 0.67531377\n\t\t -0.30909151 0.44206035 0.89278859 -0.086489521 0.37147102 0.91009259 -0.18353839\n\t\t 0.070161745 0.99581897 0.057954576 0.070161745 0.99581897 0.057954576 0.1409647 0.97820985\n\t\t 0.15219574 0.44206035 0.89278859 -0.086489521 0.48197857 0.87603402 -0.014740505\n\t\t 0.44206035 0.89278859 -0.086489521 0.1409647 0.97820985 0.15219574 0.1409647 0.97820985\n\t\t 0.15219574 0.17334484 0.96258438 0.20816667 0.48197857 0.87603402 -0.014740505 0.49467427\n\t\t 0.86858749 0.028229555 0.48197857 0.87603402 -0.014740505 0.17334484 0.96258438 0.20816667\n\t\t 0.17334484 0.96258438 0.20816667 0.16803461 0.96188241 0.21567424 0.49467427 0.86858749\n\t\t 0.028229555 0.48869261 0.87188345 0.030945703 0.49467427 0.86858749 0.028229555 0.16803461\n\t\t 0.96188241 0.21567424 0.16803461 0.96188241 0.21567424 0.13696676 0.97912538 0.15002891\n\t\t 0.48869261 0.87188345 0.030945703 0.49467427 0.86858749 0.028229555 0.48869261 0.87188345\n\t\t 0.030945703 0.76723516 0.63667738 -0.076937206 0.76723516 0.63667738 -0.076937206\n\t\t 0.7469098 0.64769459 -0.15018164 0.49467427 0.86858749 0.028229555 0.48197857 0.87603402\n\t\t -0.014740505 0.49467427 0.86858749 0.028229555 0.7469098 0.64769459 -0.15018164 0.7469098\n\t\t 0.64769459 -0.15018164 0.7148959 0.66112268 -0.22754605 0.48197857 0.87603402 -0.014740505\n\t\t 0.44206035 0.89278859 -0.086489521 0.48197857 0.87603402 -0.014740505 0.7148959 0.66112268\n\t\t -0.22754605 0.7148959 0.66112268 -0.22754605 0.66957587 0.67531377 -0.30909151 0.44206035\n\t\t 0.89278859 -0.086489521 0.84417236 0.3536182 -0.40284434 0.79369473 0.36381137 -0.48747218\n\t\t 0.66957587 0.67531377 -0.30909151 0.66957587 0.67531377 -0.30909151 0.7148959 0.66112268\n\t\t -0.22754605 0.84417236 0.3536182 -0.40284434 0.89486361 0.33454415 -0.29541919 0.84417236\n\t\t 0.3536182 -0.40284434 0.7148959 0.66112268 -0.22754605 0.7148959 0.66112268 -0.22754605\n\t\t 0.7469098 0.64769459 -0.15018164 0.89486361 0.33454415 -0.29541919 0.9373759 0.31015992\n\t\t -0.15842161 0.89486361 0.33454415 -0.29541919 0.7469098 0.64769459 -0.15018164 0.7469098\n\t\t 0.64769459 -0.15018164 0.76723516 0.63667738 -0.076937206 0.9373759 0.31015992 -0.15842161\n\t\t 0.89486361 0.33454415 -0.29541919 0.9373759 0.31015992 -0.15842161 0.97579885 -0.067445621\n\t\t -0.20795313 0.97579885 -0.067445621 -0.20795313 0.91894281 -0.032440923 -0.39298683\n\t\t 0.89486361 0.33454415 -0.29541919 0.84417236 0.3536182 -0.40284434 0.89486361 0.33454415\n\t\t -0.29541919 0.91894281 -0.032440923 -0.39298683 0.91894281 -0.032440923 -0.39298683\n\t\t 0.85384685 -0.0066833282 -0.52046263 0.84417236 0.3536182 -0.40284434;\n\tsetAttr \".n[34860:35025]\" -type \"float3\"  0.79369473 0.36381137 -0.48747218 0.84417236\n\t\t 0.3536182 -0.40284434 0.85384685 -0.0066833282 -0.52046263 0.85384685 -0.0066833282\n\t\t -0.52046263 0.80062258 0.0022890912 -0.59913939 0.79369473 0.36381137 -0.48747218\n\t\t 0.80062258 0.0022890912 -0.59913939 0.85384685 -0.0066833282 -0.52046263 0.7370221\n\t\t -0.37278339 -0.56370741 0.7370221 -0.37278339 -0.56370741 0.6895048 -0.36289546 -0.62675864\n\t\t 0.80062258 0.0022890912 -0.59913939 0.80669588 -0.40333241 -0.43186739 0.7370221\n\t\t -0.37278339 -0.56370741 0.85384685 -0.0066833282 -0.52046263 0.85384685 -0.0066833282\n\t\t -0.52046263 0.91894281 -0.032440923 -0.39298683 0.80669588 -0.40333241 -0.43186739\n\t\t 0.86883157 -0.44169414 -0.22357857 0.80669588 -0.40333241 -0.43186739 0.91894281\n\t\t -0.032440923 -0.39298683 0.91894281 -0.032440923 -0.39298683 0.97579885 -0.067445621\n\t\t -0.20795313 0.86883157 -0.44169414 -0.22357857 0.80669588 -0.40333241 -0.43186739\n\t\t 0.86883157 -0.44169414 -0.22357857 0.62514138 -0.75246418 -0.2071901 0.62514138 -0.75246418\n\t\t -0.2071901 0.56465369 -0.71825302 -0.40650648 0.80669588 -0.40333241 -0.43186739\n\t\t 0.7370221 -0.37278339 -0.56370741 0.80669588 -0.40333241 -0.43186739 0.56465369 -0.71825302\n\t\t -0.40650648 0.56465369 -0.71825302 -0.40650648 0.50325048 -0.68874162 -0.52183592\n\t\t 0.7370221 -0.37278339 -0.56370741 0.6895048 -0.36289546 -0.62675864 0.7370221 -0.37278339\n\t\t -0.56370741 0.50325048 -0.68874162 -0.52183592 0.50325048 -0.68874162 -0.52183592\n\t\t 0.47337282 -0.68050164 -0.55928212 0.6895048 -0.36289546 -0.62675864 0.47337282 -0.68050164\n\t\t -0.55928212 0.50325048 -0.68874162 -0.52183592 0.18625474 -0.89864796 -0.39713731\n\t\t 0.18625474 -0.89864796 -0.39713731 0.18128023 -0.89907521 -0.39841908 0.47337282\n\t\t -0.68050164 -0.55928212 0.49443057 -0.6920681 -0.52586436 0.47337282 -0.68050164\n\t\t -0.55928212 0.18128023 -0.89907521 -0.39841908 0.18128023 -0.89907521 -0.39841908\n\t\t 0.22870599 -0.91567731 -0.33045435 0.49443057 -0.6920681 -0.52586436 0.2292248 -0.91879016\n\t\t -0.32129881 0.18625474 -0.89864796 -0.39713731 0.50325048 -0.68874162 -0.52183592\n\t\t 0.50325048 -0.68874162 -0.52183592 0.56465369 -0.71825302 -0.40650648 0.2292248 -0.91879016\n\t\t -0.32129881 0.28226599 -0.94509715 -0.16458625 0.2292248 -0.91879016 -0.32129881\n\t\t 0.56465369 -0.71825302 -0.40650648 0.56465369 -0.71825302 -0.40650648 0.62514138\n\t\t -0.75246418 -0.2071901 0.28226599 -0.94509715 -0.16458625 0.2292248 -0.91879016 -0.32129881\n\t\t 0.28226599 -0.94509715 -0.16458625 -0.099276409 -0.9896543 -0.10327457 -0.099276409\n\t\t -0.9896543 -0.10327457 -0.13760766 -0.97189254 -0.19092372 0.2292248 -0.91879016\n\t\t -0.32129881 0.18625474 -0.89864796 -0.39713731 0.2292248 -0.91879016 -0.32129881\n\t\t -0.13760766 -0.97189254 -0.19092372 -0.13760766 -0.97189254 -0.19092372 -0.15784143\n\t\t -0.96511739 -0.20883809 0.18625474 -0.89864796 -0.39713731 0.18128023 -0.89907521\n\t\t -0.39841908 0.18625474 -0.89864796 -0.39713731 -0.15784143 -0.96511739 -0.20883809\n\t\t -0.15784143 -0.96511739 -0.20883809 -0.13956085 -0.9761346 -0.16635633 0.18128023\n\t\t -0.89907521 -0.39841908 0.22870599 -0.91567731 -0.33045435 0.18128023 -0.89907521\n\t\t -0.39841908 -0.13956085 -0.9761346 -0.16635633 -0.13956085 -0.9761346 -0.16635633\n\t\t -0.075319372 -0.99462873 -0.070711315 0.22870599 -0.91567731 -0.33045435 -0.075319372\n\t\t -0.99462873 -0.070711315 -0.13956085 -0.9761346 -0.16635633 -0.43446124 -0.89562684\n\t\t 0.095004186 -0.43446124 -0.89562684 0.095004186 -0.36536732 -0.90868872 0.20191054\n\t\t -0.075319372 -0.99462873 -0.070711315 -0.47148019 -0.88177139 0.012909394 -0.43446124\n\t\t -0.89562684 0.095004186 -0.13956085 -0.9761346 -0.16635633 -0.13956085 -0.9761346\n\t\t -0.16635633 -0.15784143 -0.96511739 -0.20883809 -0.47148019 -0.88177139 0.012909394\n\t\t -0.15784143 -0.96511739 -0.20883809 -0.13760766 -0.97189254 -0.19092372 -0.47657678\n\t\t -0.87847543 -0.033112515 -0.47657678 -0.87847543 -0.033112515 -0.47148019 -0.88177139\n\t\t 0.012909394 -0.15784143 -0.96511739 -0.20883809 -0.13760766 -0.97189254 -0.19092372\n\t\t -0.099276409 -0.9896543 -0.10327457 -0.46079871 -0.88702059 -0.028687334 -0.46079871\n\t\t -0.88702059 -0.028687334 -0.47657678 -0.87847543 -0.033112515 -0.13760766 -0.97189254\n\t\t -0.19092372 -0.074129157 -0.99697864 0.022064958 -0.099276409 -0.9896543 -0.10327457\n\t\t 0.28226599 -0.94509715 -0.16458625 0.28226599 -0.94509715 -0.16458625 0.31034303\n\t\t -0.95025474 0.025513545 -0.074129157 -0.99697864 0.022064958 0.31034303 -0.95025474\n\t\t 0.025513545 0.28226599 -0.94509715 -0.16458625 0.62514138 -0.75246418 -0.2071901\n\t\t 0.62514138 -0.75246418 -0.2071901 0.6490984 -0.76039898 0.020630568 0.31034303 -0.95025474\n\t\t 0.025513545 0.6490984 -0.76039898 0.020630568 0.62514138 -0.75246418 -0.2071901 0.86883157\n\t\t -0.44169414 -0.22357857 0.86883157 -0.44169414 -0.22357857 0.88961464 -0.45661768\n\t\t 0.0086672902 0.6490984 -0.76039898 0.020630568 0.88961464 -0.45661768 0.0086672902\n\t\t 0.86883157 -0.44169414 -0.22357857 0.97579885 -0.067445621 -0.20795313 0.97579885\n\t\t -0.067445621 -0.20795313 0.99630725 -0.085634634 -0.0056764362 0.88961464 -0.45661768\n\t\t 0.0086672902 0.99630725 -0.085634634 -0.0056764362 0.97579885 -0.067445621 -0.20795313\n\t\t 0.9373759 0.31015992 -0.15842161 0.9373759 0.31015992 -0.15842161 0.95455784 0.29752526\n\t\t -0.015930684 0.99630725 -0.085634634 -0.0056764362 0.95455784 0.29752526 -0.015930684\n\t\t 0.9373759 0.31015992 -0.15842161 0.76723516 0.63667738 -0.076937206 0.76723516 0.63667738\n\t\t -0.076937206 0.7719655 0.63545662 -0.015747597 0.95455784 0.29752526 -0.015930684\n\t\t 0.7719655 0.63545662 -0.015747597 0.76723516 0.63667738 -0.076937206 0.48869261 0.87188345\n\t\t 0.030945703 0.48869261 0.87188345 0.030945703 0.47334182 0.88085586 -0.0014344355\n\t\t 0.7719655 0.63545662 -0.015747597 0.47334182 0.88085586 -0.0014344355 0.48869261\n\t\t 0.87188345 0.030945703 0.13696676 0.97912538 0.15002891 0.13696676 0.97912538 0.15002891\n\t\t 0.10196204 0.9944762 0.024628364 0.47334182 0.88085586 -0.0014344355 0.46604788 0.88293111\n\t\t -0.056581385 0.47334182 0.88085586 -0.0014344355 0.10196204 0.9944762 0.024628364\n\t\t 0.10196204 0.9944762 0.024628364;\n\tsetAttr \".n[35026:35191]\" -type \"float3\"  0.092074037 0.98800623 -0.12393574 0.46604788\n\t\t 0.88293111 -0.056581385 0.47547811 0.87035751 -0.1280252 0.46604788 0.88293111 -0.056581385\n\t\t 0.092074037 0.98800623 -0.12393574 0.092074037 0.98800623 -0.12393574 0.11685508\n\t\t 0.9532457 -0.27866456 0.47547811 0.87035751 -0.1280252 0.50492853 0.83816051 -0.20609155\n\t\t 0.47547811 0.87035751 -0.1280252 0.11685508 0.9532457 -0.27866456 0.11685508 0.9532457\n\t\t -0.27866456 0.17392471 0.88982821 -0.42179638 0.50492853 0.83816051 -0.20609155 0.47547811\n\t\t 0.87035751 -0.1280252 0.50492853 0.83816051 -0.20609155 0.75902569 0.6500445 0.035370905\n\t\t 0.75902569 0.6500445 0.035370905 0.76079577 0.64784718 0.037995495 0.47547811 0.87035751\n\t\t -0.1280252 0.46604788 0.88293111 -0.056581385 0.47547811 0.87035751 -0.1280252 0.76079577\n\t\t 0.64784718 0.037995495 0.76079577 0.64784718 0.037995495 0.76741827 0.64070582 0.0223395\n\t\t 0.46604788 0.88293111 -0.056581385 0.47334182 0.88085586 -0.0014344355 0.46604788\n\t\t 0.88293111 -0.056581385 0.76741827 0.64070582 0.0223395 0.76741827 0.64070582 0.0223395\n\t\t 0.7719655 0.63545662 -0.015747597 0.47334182 0.88085586 -0.0014344355 0.94750804\n\t\t 0.30323219 0.10122988 0.95455784 0.29752526 -0.015930684 0.7719655 0.63545662 -0.015747597\n\t\t 0.7719655 0.63545662 -0.015747597 0.76741827 0.64070582 0.0223395 0.94750804 0.30323219\n\t\t 0.10122988 0.92510748 0.32676199 0.19333473 0.94750804 0.30323219 0.10122988 0.76741827\n\t\t 0.64070582 0.0223395 0.76741827 0.64070582 0.0223395 0.76079577 0.64784718 0.037995495\n\t\t 0.92510748 0.32676199 0.19333473 0.89446688 0.361431 0.26316106 0.92510748 0.32676199\n\t\t 0.19333473 0.76079577 0.64784718 0.037995495 0.76079577 0.64784718 0.037995495 0.75902569\n\t\t 0.6500445 0.035370905 0.89446688 0.361431 0.26316106 0.92510748 0.32676199 0.19333473\n\t\t 0.89446688 0.361431 0.26316106 0.89437544 0.021149635 0.44676045 0.89437544 0.021149635\n\t\t 0.44676045 0.94753867 -0.039185449 0.31717888 0.92510748 0.32676199 0.19333473 0.94750804\n\t\t 0.30323219 0.10122988 0.92510748 0.32676199 0.19333473 0.94753867 -0.039185449 0.31717888\n\t\t 0.94753867 -0.039185449 0.31717888 0.98281807 -0.076326475 0.16797388 0.94750804\n\t\t 0.30323219 0.10122988 0.95455784 0.29752526 -0.015930684 0.94750804 0.30323219 0.10122988\n\t\t 0.98281807 -0.076326475 0.16797388 0.98281807 -0.076326475 0.16797388 0.99630725\n\t\t -0.085634634 -0.0056764362 0.95455784 0.29752526 -0.015930684 0.99630725 -0.085634634\n\t\t -0.0056764362 0.98281807 -0.076326475 0.16797388 0.87273794 -0.43989348 0.21155433\n\t\t 0.87273794 -0.43989348 0.21155433 0.88961464 -0.45661768 0.0086672902 0.99630725\n\t\t -0.085634634 -0.0056764362 0.83062238 -0.39320019 0.39417711 0.87273794 -0.43989348\n\t\t 0.21155433 0.98281807 -0.076326475 0.16797388 0.98281807 -0.076326475 0.16797388\n\t\t 0.94753867 -0.039185449 0.31717888 0.83062238 -0.39320019 0.39417711 0.76293236 -0.31711757\n\t\t 0.56328011 0.83062238 -0.39320019 0.39417711 0.94753867 -0.039185449 0.31717888 0.94753867\n\t\t -0.039185449 0.31717888 0.89437544 0.021149635 0.44676045 0.76293236 -0.31711757\n\t\t 0.56328011 0.83062238 -0.39320019 0.39417711 0.76293236 -0.31711757 0.56328011 0.52046281\n\t\t -0.60753173 0.59996343 0.52046281 -0.60753173 0.59996343 0.59431767 -0.6883142 0.41590631\n\t\t 0.83062238 -0.39320019 0.39417711 0.87273794 -0.43989348 0.21155433 0.83062238 -0.39320019\n\t\t 0.39417711 0.59431767 -0.6883142 0.41590631 0.59431767 -0.6883142 0.41590631 0.63625014\n\t\t -0.73796791 0.22479939 0.87273794 -0.43989348 0.21155433 0.88961464 -0.45661768 0.0086672902\n\t\t 0.87273794 -0.43989348 0.21155433 0.63625014 -0.73796791 0.22479939 0.63625014 -0.73796791\n\t\t 0.22479939 0.6490984 -0.76039898 0.020630568 0.88961464 -0.45661768 0.0086672902\n\t\t 0.6490984 -0.76039898 0.020630568 0.63625014 -0.73796791 0.22479939 0.30625355 -0.92977679\n\t\t 0.20419942 0.30625355 -0.92977679 0.20419942 0.31034303 -0.95025474 0.025513545 0.6490984\n\t\t -0.76039898 0.020630568 0.27048582 -0.88506722 0.37876529 0.30625355 -0.92977679\n\t\t 0.20419942 0.63625014 -0.73796791 0.22479939 0.63625014 -0.73796791 0.22479939 0.59431767\n\t\t -0.6883142 0.41590631 0.27048582 -0.88506722 0.37876529 0.20020168 -0.80983907 0.55137795\n\t\t 0.27048582 -0.88506722 0.37876529 0.59431767 -0.6883142 0.41590631 0.59431767 -0.6883142\n\t\t 0.41590631 0.52046281 -0.60753173 0.59996343 0.20020168 -0.80983907 0.55137795 0.27048582\n\t\t -0.88506722 0.37876529 0.20020168 -0.80983907 0.55137795 -0.15326367 -0.89403975\n\t\t 0.42088082 -0.15326367 -0.89403975 0.42088082 -0.097353749 -0.95361191 0.28473777\n\t\t 0.27048582 -0.88506722 0.37876529 0.30625355 -0.92977679 0.20419942 0.27048582 -0.88506722\n\t\t 0.37876529 -0.097353749 -0.95361191 0.28473777 -0.097353749 -0.95361191 0.28473777\n\t\t -0.071840264 -0.98590046 0.15097514 0.30625355 -0.92977679 0.20419942 0.31034303\n\t\t -0.95025474 0.025513545 0.30625355 -0.92977679 0.20419942 -0.071840264 -0.98590046\n\t\t 0.15097514 -0.071840264 -0.98590046 0.15097514 -0.074129157 -0.99697864 0.022064958\n\t\t 0.31034303 -0.95025474 0.025513545 -0.074129157 -0.99697864 0.022064958 -0.071840264\n\t\t -0.98590046 0.15097514 -0.44370833 -0.89327687 0.071749084 -0.44370833 -0.89327687\n\t\t 0.071749084 -0.4476147 -0.8941009 0.013397692 -0.074129157 -0.99697864 0.022064958\n\t\t -0.071840264 -0.98590046 0.15097514 -0.097353749 -0.95361191 0.28473777 -0.45570213\n\t\t -0.87850595 0.14322342 -0.45570213 -0.87850595 0.14322342 -0.44370833 -0.89327687\n\t\t 0.071749084 -0.071840264 -0.98590046 0.15097514 -0.097353749 -0.95361191 0.28473777\n\t\t -0.15326367 -0.89403975 0.42088082 -0.48719722 -0.84444731 0.22251052 -0.48719722\n\t\t -0.84444731 0.22251052 -0.45570213 -0.87850595 0.14322342 -0.097353749 -0.95361191\n\t\t 0.28473777 -0.22782043 -0.81231117 0.53685117 -0.15326367 -0.89403975 0.42088082\n\t\t 0.20020168 -0.80983907 0.55137795 0.20020168 -0.80983907 0.55137795 0.10660137 -0.70842606\n\t\t 0.69765317 -0.22782043 -0.81231117 0.53685117 0.10660137 -0.70842606 0.69765317 0.20020168\n\t\t -0.80983907 0.55137795;\n\tsetAttr \".n[35192:35357]\" -type \"float3\"  0.52046281 -0.60753173 0.59996343 0.52046281\n\t\t -0.60753173 0.59996343 0.4223763 -0.50117481 0.75524163 0.10660137 -0.70842606 0.69765317\n\t\t 0.4223763 -0.50117481 0.75524163 0.52046281 -0.60753173 0.59996343 0.76293236 -0.31711757\n\t\t 0.56328011 0.76293236 -0.31711757 0.56328011 0.67494744 -0.2202213 0.70421463 0.4223763\n\t\t -0.50117481 0.75524163 0.67494744 -0.2202213 0.70421463 0.76293236 -0.31711757 0.56328011\n\t\t 0.89437544 0.021149635 0.44676045 0.89437544 0.021149635 0.44676045 0.82888269 0.095279083\n\t\t 0.5512253 0.67494744 -0.2202213 0.70421463 0.82888269 0.095279083 0.5512253 0.89437544\n\t\t 0.021149635 0.44676045 0.89446688 0.361431 0.26316106 0.89446688 0.361431 0.26316106\n\t\t 0.86059135 0.40095249 0.31397441 0.82888269 0.095279083 0.5512253 0.86059135 0.40095249\n\t\t 0.31397441 0.89446688 0.361431 0.26316106 0.75902569 0.6500445 0.035370905 0.75902569\n\t\t 0.6500445 0.035370905 0.76186389 0.64723676 0.024506316 0.86059135 0.40095249 0.31397441\n\t\t 0.76186389 0.64723676 0.024506316 0.75902569 0.6500445 0.035370905 0.50492853 0.83816051\n\t\t -0.20609155 0.50492853 0.83816051 -0.20609155 0.54515189 0.79177237 -0.27546012 0.76186389\n\t\t 0.64723676 0.024506316 0.54515189 0.79177237 -0.27546012 0.50492853 0.83816051 -0.20609155\n\t\t 0.17392471 0.88982821 -0.42179638 0.17392471 0.88982821 -0.42179638 0.24619256 0.80764186\n\t\t -0.53578299 0.54515189 0.79177237 -0.27546012 0.58763367 0.74040973 -0.32624292 0.54515189\n\t\t 0.79177237 -0.27546012 0.24619256 0.80764186 -0.53578299 0.24619256 0.80764186 -0.53578299\n\t\t 0.31913185 0.72014534 -0.61601615 0.58763367 0.74040973 -0.32624292 0.62981021 0.68794841\n\t\t -0.36057624 0.58763367 0.74040973 -0.32624292 0.31913185 0.72014534 -0.61601615 0.31913185\n\t\t 0.72014534 -0.61601615 0.38904974 0.6327098 -0.66951513 0.62981021 0.68794841 -0.36057624\n\t\t 0.6711629 0.63655525 -0.37983343 0.62981021 0.68794841 -0.36057624 0.38904974 0.6327098\n\t\t -0.66951513 0.38904974 0.6327098 -0.66951513 0.45658726 0.54814303 -0.70073557 0.6711629\n\t\t 0.63655525 -0.37983343 0.62981021 0.68794841 -0.36057624 0.6711629 0.63655525 -0.37983343\n\t\t 0.78118211 0.62425637 0.0050965445 0.78118211 0.62425637 0.0050965445 0.77361351\n\t\t 0.63356447 0.0083620241 0.62981021 0.68794841 -0.36057624 0.58763367 0.74040973 -0.32624292\n\t\t 0.62981021 0.68794841 -0.36057624 0.77361351 0.63356447 0.0083620241 0.77361351 0.63356447\n\t\t 0.0083620241 0.7669605 0.64146876 0.015137133 0.58763367 0.74040973 -0.32624292 0.54515189\n\t\t 0.79177237 -0.27546012 0.58763367 0.74040973 -0.32624292 0.7669605 0.64146876 0.015137133\n\t\t 0.7669605 0.64146876 0.015137133 0.76186389 0.64723676 0.024506316 0.54515189 0.79177237\n\t\t -0.27546012 0.8267768 0.44050446 0.3497726 0.86059135 0.40095249 0.31397441 0.76186389\n\t\t 0.64723676 0.024506316 0.76186389 0.64723676 0.024506316 0.7669605 0.64146876 0.015137133\n\t\t 0.8267768 0.44050446 0.3497726 0.79531223 0.47776753 0.37305823 0.8267768 0.44050446\n\t\t 0.3497726 0.7669605 0.64146876 0.015137133 0.7669605 0.64146876 0.015137133 0.77361351\n\t\t 0.63356447 0.0083620241 0.79531223 0.47776753 0.37305823 0.76699102 0.51194823 0.38676104\n\t\t 0.79531223 0.47776753 0.37305823 0.77361351 0.63356447 0.0083620241 0.77361351 0.63356447\n\t\t 0.0083620241 0.78118211 0.62425637 0.0050965445 0.76699102 0.51194823 0.38676104\n\t\t 0.79531223 0.47776753 0.37305823 0.76699102 0.51194823 0.38676104 0.63515109 0.321055\n\t\t 0.70247507 0.63515109 0.321055 0.70247507 0.69490641 0.24900077 0.67458111 0.79531223\n\t\t 0.47776753 0.37305823 0.8267768 0.44050446 0.3497726 0.79531223 0.47776753 0.37305823\n\t\t 0.69490641 0.24900077 0.67458111 0.69490641 0.24900077 0.67458111 0.7603991 0.17285712\n\t\t 0.62599564 0.8267768 0.44050446 0.3497726 0.86059135 0.40095249 0.31397441 0.8267768\n\t\t 0.44050446 0.3497726 0.7603991 0.17285712 0.62599564 0.7603991 0.17285712 0.62599564\n\t\t 0.82888269 0.095279083 0.5512253 0.86059135 0.40095249 0.31397441 0.82888269 0.095279083\n\t\t 0.5512253 0.7603991 0.17285712 0.62599564 0.58220166 -0.11651943 0.8046205 0.58220166\n\t\t -0.11651943 0.8046205 0.67494744 -0.2202213 0.70421463 0.82888269 0.095279083 0.5512253\n\t\t 0.49360636 -0.013122742 0.86956388 0.58220166 -0.11651943 0.8046205 0.7603991 0.17285712\n\t\t 0.62599564 0.7603991 0.17285712 0.62599564 0.69490641 0.24900077 0.67458111 0.49360636\n\t\t -0.013122742 0.86956388 0.41236606 0.085635133 0.90694904 0.49360636 -0.013122742\n\t\t 0.86956388 0.69490641 0.24900077 0.67458111 0.69490641 0.24900077 0.67458111 0.63515109\n\t\t 0.321055 0.70247507 0.41236606 0.085635133 0.90694904 0.49360636 -0.013122742 0.86956388\n\t\t 0.41236606 0.085635133 0.90694904 0.13321334 -0.15952013 0.97814876 0.13321334 -0.15952013\n\t\t 0.97814876 0.22318195 -0.27036336 0.93649095 0.49360636 -0.013122742 0.86956388 0.58220166\n\t\t -0.11651943 0.8046205 0.49360636 -0.013122742 0.86956388 0.22318195 -0.27036336 0.93649095\n\t\t 0.22318195 -0.27036336 0.93649095 0.32016981 -0.38599795 0.86513871 0.58220166 -0.11651943\n\t\t 0.8046205 0.67494744 -0.2202213 0.70421463 0.58220166 -0.11651943 0.8046205 0.32016981\n\t\t -0.38599795 0.86513871 0.32016981 -0.38599795 0.86513871 0.4223763 -0.50117481 0.75524163\n\t\t 0.67494744 -0.2202213 0.70421463 0.4223763 -0.50117481 0.75524163 0.32016981 -0.38599795\n\t\t 0.86513871 0.01095633 -0.59855944 0.80095834 0.01095633 -0.59855944 0.80095834 0.10660137\n\t\t -0.70842606 0.69765317 0.4223763 -0.50117481 0.75524163 -0.079653159 -0.48820457\n\t\t 0.86907566 0.01095633 -0.59855944 0.80095834 0.32016981 -0.38599795 0.86513871 0.32016981\n\t\t -0.38599795 0.86513871 0.22318195 -0.27036336 0.93649095 -0.079653159 -0.48820457\n\t\t 0.86907566 -0.1652576 -0.38181707 0.90932953 -0.079653159 -0.48820457 0.86907566\n\t\t 0.22318195 -0.27036336 0.93649095 0.22318195 -0.27036336 0.93649095 0.13321334 -0.15952013\n\t\t 0.97814876 -0.1652576 -0.38181707 0.90932953;\n\tsetAttr \".n[35358:35523]\" -type \"float3\"  -0.079653159 -0.48820457 0.86907566 -0.1652576\n\t\t -0.38181707 0.90932953 -0.44410518 -0.5507676 0.70665616 -0.44410518 -0.5507676 0.70665616\n\t\t -0.37482813 -0.63652462 0.67400134 -0.079653159 -0.48820457 0.86907566 0.01095633\n\t\t -0.59855944 0.80095834 -0.079653159 -0.48820457 0.86907566 -0.37482813 -0.63652462\n\t\t 0.67400134 -0.37482813 -0.63652462 0.67400134 -0.30301803 -0.72457051 0.61897647\n\t\t 0.01095633 -0.59855944 0.80095834 0.10660137 -0.70842606 0.69765317 0.01095633 -0.59855944\n\t\t 0.80095834 -0.30301803 -0.72457051 0.61897647 -0.30301803 -0.72457051 0.61897647\n\t\t -0.22782043 -0.81231117 0.53685117 0.10660137 -0.70842606 0.69765317 -0.22782043\n\t\t -0.81231117 0.53685117 -0.30301803 -0.72457051 0.61897647 -0.57570094 -0.74343109\n\t\t 0.34037301 -0.57570094 -0.74343109 0.34037301 -0.53117442 -0.79552615 0.29145181\n\t\t -0.22782043 -0.81231117 0.53685117 -0.30301803 -0.72457051 0.61897647 -0.37482813\n\t\t -0.63652462 0.67400134 -0.61900669 -0.69090873 0.37339401 -0.61900669 -0.69090873\n\t\t 0.37339401 -0.57570094 -0.74343109 0.34037301 -0.30301803 -0.72457051 0.61897647\n\t\t -0.37482813 -0.63652462 0.67400134 -0.44410518 -0.5507676 0.70665616 -0.66164112\n\t\t -0.63881361 0.39252913 -0.66164112 -0.63881361 0.39252913 -0.61900669 -0.69090873\n\t\t 0.37339401 -0.37482813 -0.63652462 0.67400134 -0.51390105 -0.4671469 0.7194739 -0.44410518\n\t\t -0.5507676 0.70665616 -0.1652576 -0.38181707 0.90932953 -0.1652576 -0.38181707 0.90932953\n\t\t -0.25324249 -0.2762841 0.9270913 -0.51390105 -0.4671469 0.7194739 -0.25324249 -0.2762841\n\t\t 0.9270913 -0.1652576 -0.38181707 0.90932953 0.13321334 -0.15952013 0.97814876 0.13321334\n\t\t -0.15952013 0.97814876 0.040833779 -0.047212049 0.99804682 -0.25324249 -0.2762841\n\t\t 0.9270913 0.040833779 -0.047212049 0.99804682 0.13321334 -0.15952013 0.97814876 0.41236606\n\t\t 0.085635133 0.90694904 0.41236606 0.085635133 0.90694904 0.32901999 0.18854353 0.9252907\n\t\t 0.040833779 -0.047212049 0.99804682 0.32901999 0.18854353 0.9252907 0.41236606 0.085635133\n\t\t 0.90694904 0.63515109 0.321055 0.70247507 0.63515109 0.321055 0.70247507 0.57252711\n\t\t 0.39890766 0.71626943 0.32901999 0.18854353 0.9252907 0.57252711 0.39890766 0.71626943\n\t\t 0.63515109 0.321055 0.70247507 0.76699102 0.51194823 0.38676104 0.76699102 0.51194823\n\t\t 0.38676104 0.73436671 0.55204958 0.39484844 0.57252711 0.39890766 0.71626943 0.73436671\n\t\t 0.55204958 0.39484844 0.76699102 0.51194823 0.38676104 0.78118211 0.62425637 0.0050965445\n\t\t 0.78118211 0.62425637 0.0050965445 0.78432554 0.62028897 0.0076600998 0.73436671\n\t\t 0.55204958 0.39484844 0.78432554 0.62028897 0.0076600998 0.78118211 0.62425637 0.0050965445\n\t\t 0.6711629 0.63655525 -0.37983343 0.6711629 0.63655525 -0.37983343 0.71074539 0.59004509\n\t\t -0.38294628 0.78432554 0.62028897 0.0076600998 0.71074539 0.59004509 -0.38294628\n\t\t 0.6711629 0.63655525 -0.37983343 0.45658726 0.54814303 -0.70073557 0.45658726 0.54814303\n\t\t -0.70073557 0.52650523 0.46745211 -0.71010476 0.71074539 0.59004509 -0.38294628 0.74687928\n\t\t 0.55003536 -0.37360764 0.71074539 0.59004509 -0.38294628 0.52650523 0.46745211 -0.71010476\n\t\t 0.52650523 0.46745211 -0.71010476 0.60164177 0.38679171 -0.69884336 0.74687928 0.55003536\n\t\t -0.37360764 0.78066331 0.51442021 -0.35477769 0.74687928 0.55003536 -0.37360764 0.60164177\n\t\t 0.38679171 -0.69884336 0.60164177 0.38679171 -0.69884336 0.68413329 0.30207235 -0.66383862\n\t\t 0.78066331 0.51442021 -0.35477769 0.81179219 0.48234525 -0.32908112 0.78066331 0.51442021\n\t\t -0.35477769 0.68413329 0.30207235 -0.66383862 0.68413329 0.30207235 -0.66383862 0.77068388\n\t\t 0.21298887 -0.60051268 0.81179219 0.48234525 -0.32908112 0.78066331 0.51442021 -0.35477769\n\t\t 0.81179219 0.48234525 -0.32908112 0.73345113 0.67967796 -0.0075686411 0.73345113\n\t\t 0.67967796 -0.0075686411 0.76052105 0.64918995 0.0090029119 0.78066331 0.51442021\n\t\t -0.35477769 0.74687928 0.55003536 -0.37360764 0.78066331 0.51442021 -0.35477769 0.76052105\n\t\t 0.64918995 0.0090029119 0.76052105 0.64918995 0.0090029119 0.77758092 0.62865102\n\t\t 0.011474913 0.74687928 0.55003536 -0.37360764 0.71074539 0.59004509 -0.38294628 0.74687928\n\t\t 0.55003536 -0.37360764 0.77758092 0.62865102 0.011474913 0.77758092 0.62865102 0.011474913\n\t\t 0.78432554 0.62028897 0.0076600998 0.71074539 0.59004509 -0.38294628 0.68822271 0.60942435\n\t\t 0.39356664 0.73436671 0.55204958 0.39484844 0.78432554 0.62028897 0.0076600998 0.78432554\n\t\t 0.62028897 0.0076600998 0.77758092 0.62865102 0.011474913 0.68822271 0.60942435 0.39356664\n\t\t 0.62575126 0.68559849 0.37195954 0.68822271 0.60942435 0.39356664 0.77758092 0.62865102\n\t\t 0.011474913 0.77758092 0.62865102 0.011474913 0.76052105 0.64918995 0.0090029119\n\t\t 0.62575126 0.68559849 0.37195954 0.54615903 0.77550602 0.31665999 0.62575126 0.68559849\n\t\t 0.37195954 0.76052105 0.64918995 0.0090029119 0.76052105 0.64918995 0.0090029119\n\t\t 0.73345113 0.67967796 -0.0075686411 0.54615903 0.77550602 0.31665999 0.62575126 0.68559849\n\t\t 0.37195954 0.54615903 0.77550602 0.31665999 0.27408651 0.75423455 0.59663677 0.27408651\n\t\t 0.75423455 0.59663677 0.39503139 0.61748117 0.68016595 0.62575126 0.68559849 0.37195954\n\t\t 0.68822271 0.60942435 0.39356664 0.62575126 0.68559849 0.37195954 0.39503139 0.61748117\n\t\t 0.68016595 0.39503139 0.61748117 0.68016595 0.49427763 0.49659738 0.71346164 0.68822271\n\t\t 0.60942435 0.39356664 0.73436671 0.55204958 0.39484844 0.68822271 0.60942435 0.39356664\n\t\t 0.49427763 0.49659738 0.71346164 0.49427763 0.49659738 0.71346164 0.57252711 0.39890766\n\t\t 0.71626943 0.73436671 0.55204958 0.39484844 0.57252711 0.39890766 0.71626943 0.49427763\n\t\t 0.49659738 0.71346164 0.22873613 0.31015974 0.92272711 0.22873613 0.31015974 0.92272711\n\t\t 0.32901999 0.18854353 0.9252907 0.57252711 0.39890766 0.71626943 0.10507509 0.45554987\n\t\t 0.88396859 0.22873613 0.31015974 0.92272711 0.49427763 0.49659738 0.71346164 0.49427763\n\t\t 0.49659738 0.71346164;\n\tsetAttr \".n[35524:35689]\" -type \"float3\"  0.39503139 0.61748117 0.68016595 0.10507509\n\t\t 0.45554987 0.88396859 -0.04031514 0.61760312 0.78542429 0.10507509 0.45554987 0.88396859\n\t\t 0.39503139 0.61748117 0.68016595 0.39503139 0.61748117 0.68016595 0.27408651 0.75423455\n\t\t 0.59663677 -0.04031514 0.61760312 0.78542429 0.10507509 0.45554987 0.88396859 -0.04031514\n\t\t 0.61760312 0.78542429 -0.34745336 0.38801226 0.85360271 -0.34745336 0.38801226 0.85360271\n\t\t -0.19898076 0.22583698 0.95361185 0.10507509 0.45554987 0.88396859 0.22873613 0.31015974\n\t\t 0.92272711 0.10507509 0.45554987 0.88396859 -0.19898076 0.22583698 0.95361185 -0.19898076\n\t\t 0.22583698 0.95361185 -0.068025783 0.079256624 0.99450666 0.22873613 0.31015974 0.92272711\n\t\t 0.32901999 0.18854353 0.9252907 0.22873613 0.31015974 0.92272711 -0.068025783 0.079256624\n\t\t 0.99450666 -0.068025783 0.079256624 0.99450666 0.040833779 -0.047212049 0.99804682\n\t\t 0.32901999 0.18854353 0.9252907 0.040833779 -0.047212049 0.99804682 -0.068025783\n\t\t 0.079256624 0.99450666 -0.35401464 -0.16275524 0.92095709 -0.35401464 -0.16275524\n\t\t 0.92095709 -0.25324249 -0.2762841 0.9270913 0.040833779 -0.047212049 0.99804682 -0.47120577\n\t\t -0.035798289 0.88125247 -0.35401464 -0.16275524 0.92095709 -0.068025783 0.079256624\n\t\t 0.99450666 -0.068025783 0.079256624 0.99450666 -0.19898076 0.22583698 0.95361185\n\t\t -0.47120577 -0.035798289 0.88125247 -0.59990239 0.1030914 0.79338968 -0.47120577\n\t\t -0.035798289 0.88125247 -0.19898076 0.22583698 0.95361185 -0.19898076 0.22583698\n\t\t 0.95361185 -0.34745336 0.38801226 0.85360271 -0.59990239 0.1030914 0.79338968 -0.47120577\n\t\t -0.035798289 0.88125247 -0.59990239 0.1030914 0.79338968 -0.76180297 -0.19348754\n\t\t 0.61821347 -0.76180297 -0.19348754 0.61821347 -0.67278039 -0.29062793 0.68034911\n\t\t -0.47120577 -0.035798289 0.88125247 -0.35401464 -0.16275524 0.92095709 -0.47120577\n\t\t -0.035798289 0.88125247 -0.67278039 -0.29062793 0.68034911 -0.67278039 -0.29062793\n\t\t 0.68034911 -0.58934283 -0.38178667 0.71193576 -0.35401464 -0.16275524 0.92095709\n\t\t -0.25324249 -0.2762841 0.9270913 -0.35401464 -0.16275524 0.92095709 -0.58934283 -0.38178667\n\t\t 0.71193576 -0.58934283 -0.38178667 0.71193576 -0.51390105 -0.4671469 0.7194739 -0.25324249\n\t\t -0.2762841 0.9270913 -0.51390105 -0.4671469 0.7194739 -0.58934283 -0.38178667 0.71193576\n\t\t -0.73946333 -0.54606795 0.39365828 -0.73946333 -0.54606795 0.39365828 -0.70183396\n\t\t -0.59016716 0.39887694 -0.51390105 -0.4671469 0.7194739 -0.58934283 -0.38178667 0.71193576\n\t\t -0.67278039 -0.29062793 0.68034911 -0.77629912 -0.50395238 0.37861267 -0.77629912\n\t\t -0.50395238 0.37861267 -0.73946333 -0.54606795 0.39365828 -0.58934283 -0.38178667\n\t\t 0.71193576 -0.67278039 -0.29062793 0.68034911 -0.76180297 -0.19348754 0.61821347\n\t\t -0.81289089 -0.46275237 0.35358748 -0.81289089 -0.46275237 0.35358748 -0.77629912\n\t\t -0.50395238 0.37861267 -0.67278039 -0.29062793 0.68034911 -0.83764148 -0.1130713\n\t\t 0.53434861 -0.76180297 -0.19348754 0.61821347 -0.59990239 0.1030914 0.79338968 -0.59990239\n\t\t 0.1030914 0.79338968 -0.70738858 0.21887857 0.67204809 -0.83764148 -0.1130713 0.53434861\n\t\t -0.70738858 0.21887857 0.67204809 -0.59990239 0.1030914 0.79338968 -0.34745336 0.38801226\n\t\t 0.85360271 -0.34745336 0.38801226 0.85360271 -0.47212148 0.52049309 0.71144742 -0.70738858\n\t\t 0.21887857 0.67204809 -0.47212148 0.52049309 0.71144742 -0.34745336 0.38801226 0.85360271\n\t\t -0.04031514 0.61760312 0.78542429 -0.04031514 0.61760312 0.78542429 -0.16498329 0.74690998\n\t\t 0.64412361 -0.47212148 0.52049309 0.71144742 -0.16498329 0.74690998 0.64412361 -0.04031514\n\t\t 0.61760312 0.78542429 0.27408651 0.75423455 0.59663677 0.27408651 0.75423455 0.59663677\n\t\t 0.16852294 0.86196488 0.47810292 -0.16498329 0.74690998 0.64412361 0.16852294 0.86196488\n\t\t 0.47810292 0.27408651 0.75423455 0.59663677 0.54615903 0.77550602 0.31665999 0.54615903\n\t\t 0.77550602 0.31665999 0.47721767 0.84585112 0.23819691 0.16852294 0.86196488 0.47810292\n\t\t 0.47721767 0.84585112 0.23819691 0.54615903 0.77550602 0.31665999 0.73345113 0.67967796\n\t\t -0.0075686411 0.73345113 0.67967796 -0.0075686411 0.71236283 0.70085782 -0.03631708\n\t\t 0.47721767 0.84585112 0.23819691 0.71236283 0.70085782 -0.03631708 0.73345113 0.67967796\n\t\t -0.0075686411 0.81179219 0.48234525 -0.32908112 0.81179219 0.48234525 -0.32908112\n\t\t 0.84023547 0.44898856 -0.30390334 0.71236283 0.70085782 -0.03631708 0.84023547 0.44898856\n\t\t -0.30390334 0.81179219 0.48234525 -0.32908112 0.77068388 0.21298887 -0.60051268 0.77068388\n\t\t 0.21298887 -0.60051268 0.84203613 0.12952076 -0.52357554 0.84023547 0.44898856 -0.30390334\n\t\t 0.86538273 0.42094204 -0.27176735 0.84023547 0.44898856 -0.30390334 0.84203613 0.12952076\n\t\t -0.52357554 0.84203613 0.12952076 -0.52357554 0.89339882 0.070375927 -0.44367808\n\t\t 0.86538273 0.42094204 -0.27176735 0.89263576 0.39649671 -0.21433152 0.86538273 0.42094204\n\t\t -0.27176735 0.89339882 0.070375927 -0.44367808 0.89339882 0.070375927 -0.44367808\n\t\t 0.9416486 0.023499519 -0.33573413 0.89263576 0.39649671 -0.21433152 0.91906482 0.37803307\n\t\t -0.11120948 0.89263576 0.39649671 -0.21433152 0.9416486 0.023499519 -0.33573413 0.9416486\n\t\t 0.023499519 -0.33573413 0.9853816 -0.0068968912 -0.17014068 0.91906482 0.37803307\n\t\t -0.11120948 0.89263576 0.39649671 -0.21433152 0.91906482 0.37803307 -0.11120948 0.7108674\n\t\t 0.70250583 -0.032715894 0.7108674 0.70250583 -0.032715894 0.70470268 0.70723617 -0.056306701\n\t\t 0.89263576 0.39649671 -0.21433152 0.86538273 0.42094204 -0.27176735 0.89263576 0.39649671\n\t\t -0.21433152 0.70470268 0.70723617 -0.056306701 0.70470268 0.70723617 -0.056306701\n\t\t 0.70476371 0.70723617 -0.055513222 0.86538273 0.42094204 -0.27176735 0.84023547 0.44898856\n\t\t -0.30390334 0.86538273 0.42094204 -0.27176735 0.70476371 0.70723617 -0.055513222\n\t\t 0.70476371 0.70723617 -0.055513222 0.71236283 0.70085782 -0.03631708 0.84023547 0.44898856\n\t\t -0.30390334 0.4370248 0.88314474 0.17029323 0.47721767 0.84585112 0.23819691;\n\tsetAttr \".n[35690:35855]\" -type \"float3\"  0.71236283 0.70085782 -0.03631708 0.71236283\n\t\t 0.70085782 -0.03631708 0.70476371 0.70723617 -0.055513222 0.4370248 0.88314474 0.17029323\n\t\t 0.41044316 0.90499598 0.11178923 0.4370248 0.88314474 0.17029323 0.70476371 0.70723617\n\t\t -0.055513222 0.70476371 0.70723617 -0.055513222 0.70470268 0.70723617 -0.056306701\n\t\t 0.41044316 0.90499598 0.11178923 0.70470268 0.70723617 -0.056306701 0.7108674 0.70250583\n\t\t -0.032715894 0.39750329 0.91607422 0.052339178 0.39750329 0.91607422 0.052339178\n\t\t 0.41044316 0.90499598 0.11178923 0.70470268 0.70723617 -0.056306701 0.41044316 0.90499598\n\t\t 0.11178923 0.39750329 0.91607422 0.052339178 0.026550796 0.9909665 0.131199 0.026550796\n\t\t 0.9909665 0.131199 0.056855686 0.96310312 0.26294741 0.41044316 0.90499598 0.11178923\n\t\t 0.4370248 0.88314474 0.17029323 0.41044316 0.90499598 0.11178923 0.056855686 0.96310312\n\t\t 0.26294741 0.056855686 0.96310312 0.26294741 0.10373212 0.92312396 0.37015894 0.4370248\n\t\t 0.88314474 0.17029323 0.47721767 0.84585112 0.23819691 0.4370248 0.88314474 0.17029323\n\t\t 0.10373212 0.92312396 0.37015894 0.10373212 0.92312396 0.37015894 0.16852294 0.86196488\n\t\t 0.47810292 0.47721767 0.84585112 0.23819691 0.16852294 0.86196488 0.47810292 0.10373212\n\t\t 0.92312396 0.37015894 -0.24250033 0.82378614 0.51237518 -0.24250033 0.82378614 0.51237518\n\t\t -0.16498329 0.74690998 0.64412361 0.16852294 0.86196488 0.47810292 -0.30100432 0.8775596\n\t\t 0.37314975 -0.24250033 0.82378614 0.51237518 0.10373212 0.92312396 0.37015894 0.10373212\n\t\t 0.92312396 0.37015894 0.056855686 0.96310312 0.26294741 -0.30100432 0.8775596 0.37314975\n\t\t 0.056855686 0.96310312 0.26294741 0.026550796 0.9909665 0.131199 -0.34632435 0.91854596\n\t\t 0.19046594 -0.34632435 0.91854596 0.19046594 -0.30100432 0.8775596 0.37314975 0.056855686\n\t\t 0.96310312 0.26294741 -0.30100432 0.8775596 0.37314975 -0.34632435 0.91854596 0.19046594\n\t\t -0.66844714 0.71031815 0.22046566 -0.66844714 0.71031815 0.22046566 -0.61345273 0.66429627\n\t\t 0.42704543 -0.30100432 0.8775596 0.37314975 -0.24250033 0.82378614 0.51237518 -0.30100432\n\t\t 0.8775596 0.37314975 -0.61345273 0.66429627 0.42704543 -0.61345273 0.66429627 0.42704543\n\t\t -0.55095083 0.60304564 0.57683027 -0.24250033 0.82378614 0.51237518 -0.16498329 0.74690998\n\t\t 0.64412361 -0.24250033 0.82378614 0.51237518 -0.55095083 0.60304564 0.57683027 -0.55095083\n\t\t 0.60304564 0.57683027 -0.47212148 0.52049309 0.71144742 -0.16498329 0.74690998 0.64412361\n\t\t -0.47212148 0.52049309 0.71144742 -0.55095083 0.60304564 0.57683027 -0.7777338 0.29444239\n\t\t 0.55531478 -0.7777338 0.29444239 0.55531478 -0.70738858 0.21887857 0.67204809 -0.47212148\n\t\t 0.52049309 0.71144742 -0.83690917 0.35431966 0.41715747 -0.7777338 0.29444239 0.55531478\n\t\t -0.55095083 0.60304564 0.57683027 -0.55095083 0.60304564 0.57683027 -0.61345273 0.66429627\n\t\t 0.42704543 -0.83690917 0.35431966 0.41715747 -0.61345273 0.66429627 0.42704543 -0.66844714\n\t\t 0.71031815 0.22046566 -0.89187306 0.39680141 0.21695605 -0.89187306 0.39680141 0.21695605\n\t\t -0.83690917 0.35431966 0.41715747 -0.61345273 0.66429627 0.42704543 -0.83690917 0.35431966\n\t\t 0.41715747 -0.89187306 0.39680141 0.21695605 -0.98333687 0.023041185 0.18027283 -0.98333687\n\t\t 0.023041185 0.18027283 -0.93847466 -0.0097661875 0.34513381 -0.83690917 0.35431966\n\t\t 0.41715747 -0.7777338 0.29444239 0.55531478 -0.83690917 0.35431966 0.41715747 -0.93847466\n\t\t -0.0097661875 0.34513381 -0.93847466 -0.0097661875 0.34513381 -0.89025545 -0.058107484\n\t\t 0.45167392 -0.7777338 0.29444239 0.55531478 -0.70738858 0.21887857 0.67204809 -0.7777338\n\t\t 0.29444239 0.55531478 -0.89025545 -0.058107484 0.45167392 -0.89025545 -0.058107484\n\t\t 0.45167392 -0.83764148 -0.1130713 0.53434861 -0.70738858 0.21887857 0.67204809 -0.83764148\n\t\t -0.1130713 0.53434861 -0.89025545 -0.058107484 0.45167392 -0.87005204 -0.40559122\n\t\t 0.28015995 -0.87005204 -0.40559122 0.28015995 -0.84469116 -0.43052486 0.31797239\n\t\t -0.83764148 -0.1130713 0.53434861 -0.89025545 -0.058107484 0.45167392 -0.93847466\n\t\t -0.0097661875 0.34513381 -0.89941084 -0.37696487 0.22119819 -0.89941084 -0.37696487\n\t\t 0.22119819 -0.87005204 -0.40559122 0.28015995 -0.89025545 -0.058107484 0.45167392\n\t\t -0.91195422 0.40726924 0.048982177 -0.89187306 0.39680141 0.21695605 -0.66844714\n\t\t 0.71031815 0.22046566 -0.98333687 0.023041185 0.18027283 -0.89187306 0.39680141 0.21695605\n\t\t -0.91195422 0.40726924 0.048982177 -0.66844714 0.71031815 0.22046566 -0.68770432\n\t\t 0.724204 0.050294451 -0.91195422 0.40726924 0.048982177 -0.35959989 0.93209618 0.043214139\n\t\t -0.68770432 0.724204 0.050294451 -0.66844714 0.71031815 0.22046566 -0.68825364 0.72542471\n\t\t -5.3984273e-08 -0.68770432 0.724204 0.050294451 -0.35959989 0.93209618 0.043214139\n\t\t -0.35959989 0.93209618 0.043214139 -0.35825709 0.9335916 -6.9475519e-08 -0.68825364\n\t\t 0.72542471 -5.3984273e-08 -0.35825709 0.9335916 -6.9475519e-08 -0.35959989 0.93209618\n\t\t 0.043214139 0.022705462 0.9992981 0.029541843 0.026550796 0.9909665 0.131199 0.022705462\n\t\t 0.9992981 0.029541843 -0.35959989 0.93209618 0.043214139 0.401898 0.91558594 0.011444373\n\t\t 0.022705462 0.9992981 0.029541843 0.026550796 0.9909665 0.131199 0.026306646 0.99963379\n\t\t -7.4390201e-08 0.022705462 0.9992981 0.029541843 0.401898 0.91558594 0.011444373\n\t\t 0.022705462 0.9992981 0.029541843 0.026306646 0.99963379 -7.4390201e-08 -0.35825709\n\t\t 0.9335916 -6.9475519e-08 0.401898 0.91558594 0.011444373 0.40684199 0.91348016 -6.7978853e-08\n\t\t 0.026306646 0.99963379 -7.4390201e-08 0.40684199 0.91348016 -6.7978853e-08 0.401898\n\t\t 0.91558594 0.011444373 0.72084695 0.69301456 -0.0079043452 0.7108674 0.70250583 -0.032715894\n\t\t 0.72084695 0.69301456 -0.0079043452 0.401898 0.91558594 0.011444373 0.93118066 0.36365885\n\t\t -0.024720021 0.72084695 0.69301456 -0.0079043452 0.7108674 0.70250583 -0.032715894\n\t\t 0.72545522 0.68822312 -5.1215792e-08 0.72084695 0.69301456 -0.0079043452 0.93118066\n\t\t 0.36365885 -0.024720021;\n\tsetAttr \".n[35856:36021]\" -type \"float3\"  0.72084695 0.69301456 -0.0079043452 0.72545522\n\t\t 0.68822312 -5.1215792e-08 0.40684199 0.91348016 -6.7978853e-08 0.93118066 0.36365885\n\t\t -0.024720021 0.93362212 0.35822657 -2.6658286e-08 0.72545522 0.68822312 -5.1215792e-08\n\t\t 0.93362212 0.35822657 -2.6658286e-08 0.93118066 0.36365885 -0.024720021 0.99908447\n\t\t -0.021759389 -0.036683246 0.9853816 -0.0068968912 -0.17014068 0.99908447 -0.021759389\n\t\t -0.036683246 0.93118066 0.36365885 -0.024720021 0.93118066 0.36365885 -0.024720021\n\t\t 0.91906482 0.37803307 -0.11120948 0.9853816 -0.0068968912 -0.17014068 0.7108674 0.70250583\n\t\t -0.032715894 0.91906482 0.37803307 -0.11120948 0.93118066 0.36365885 -0.024720021\n\t\t 0.99908447 -0.021759389 -0.036683246 0.99963379 -0.026276127 1.9554256e-09 0.93362212\n\t\t 0.35822657 -2.6658286e-08 0.401898 0.91558594 0.011444373 0.39750329 0.91607422 0.052339178\n\t\t 0.7108674 0.70250583 -0.032715894 0.026550796 0.9909665 0.131199 0.39750329 0.91607422\n\t\t 0.052339178 0.401898 0.91558594 0.011444373 0.99963379 -0.026276127 1.9554256e-09\n\t\t 0.99908447 -0.021759389 -0.036683246 0.91329706 -0.40494984 -0.042878475 0.91329706\n\t\t -0.40494984 -0.042878475 0.91348016 -0.40681148 3.0273892e-08 0.99963379 -0.026276127\n\t\t 1.9554256e-09 0.91348016 -0.40681148 3.0273892e-08 0.91329706 -0.40494984 -0.042878475\n\t\t 0.68657517 -0.72579098 -0.042817418 0.66792834 -0.71642184 -0.2014221 0.68657517\n\t\t -0.72579098 -0.042817418 0.91329706 -0.40494984 -0.042878475 0.35425916 -0.93438506\n\t\t -0.036866289 0.68657517 -0.72579098 -0.042817418 0.66792834 -0.71642184 -0.2014221\n\t\t 0.68828416 -0.72542471 5.3984273e-08 0.68657517 -0.72579098 -0.042817418 0.35425916\n\t\t -0.93438506 -0.036866289 0.68657517 -0.72579098 -0.042817418 0.68828416 -0.72542471\n\t\t 5.3984273e-08 0.91348016 -0.40681148 3.0273892e-08 0.35425916 -0.93438506 -0.036866289\n\t\t 0.3582876 -0.9335916 6.9475519e-08 0.68828416 -0.72542471 5.3984273e-08 0.3582876\n\t\t -0.9335916 6.9475519e-08 0.35425916 -0.93438506 -0.036866289 -0.032288272 -0.99914551\n\t\t -0.025330288 -0.049409162 -0.99182105 -0.11761826 -0.032288272 -0.99914551 -0.025330288\n\t\t 0.35425916 -0.93438506 -0.036866289 -0.41206065 -0.91106915 -0.0097963735 -0.032288272\n\t\t -0.99914551 -0.025330288 -0.049409162 -0.99182105 -0.11761826 -0.026215091 -0.99963379\n\t\t 7.4390201e-08 -0.032288272 -0.99914551 -0.025330288 -0.41206065 -0.91106915 -0.0097963735\n\t\t -0.032288272 -0.99914551 -0.025330288 -0.026215091 -0.99963379 7.4390201e-08 0.3582876\n\t\t -0.9335916 6.9475519e-08 -0.41206065 -0.91106915 -0.0097963735 -0.40675041 -0.91351068\n\t\t 6.7981127e-08 -0.026215091 -0.99963379 7.4390201e-08 -0.40675041 -0.91351068 6.7981127e-08\n\t\t -0.41206065 -0.91106915 -0.0097963735 -0.72905642 -0.68437779 0.0078127896 -0.73149794\n\t\t -0.68074614 0.038087152 -0.72905642 -0.68437779 0.0078127896 -0.41206065 -0.91106915\n\t\t -0.0097963735 -0.93465978 -0.35459486 0.02572713 -0.72905642 -0.68437779 0.0078127896\n\t\t -0.73149794 -0.68074614 0.038087152 -0.72539419 -0.68831468 5.1222607e-08 -0.72905642\n\t\t -0.68437779 0.0078127896 -0.93465978 -0.35459486 0.02572713 -0.72905642 -0.68437779\n\t\t 0.0078127896 -0.72539419 -0.68831468 5.1222607e-08 -0.40675041 -0.91351068 6.7981127e-08\n\t\t -0.93465978 -0.35459486 0.02572713 -0.9335916 -0.35831812 2.6665099e-08 -0.72539419\n\t\t -0.68831468 5.1222607e-08 -0.73149794 -0.68074614 0.038087152 -0.92745739 -0.35511369\n\t\t 0.11685541 -0.93465978 -0.35459486 0.02572713 -0.89941084 -0.37696487 0.22119819\n\t\t -0.92745739 -0.35511369 0.11685541 -0.73149794 -0.68074614 0.038087152 -0.73149794\n\t\t -0.68074614 0.038087152 -0.7212742 -0.68956596 0.064790845 -0.89941084 -0.37696487\n\t\t 0.22119819 -0.87005204 -0.40559122 0.28015995 -0.89941084 -0.37696487 0.22119819\n\t\t -0.7212742 -0.68956596 0.064790845 -0.7212742 -0.68956596 0.064790845 -0.71629971\n\t\t -0.69463205 0.065981068 -0.87005204 -0.40559122 0.28015995 -0.84469116 -0.43052486\n\t\t 0.31797239 -0.87005204 -0.40559122 0.28015995 -0.71629971 -0.69463205 0.065981068\n\t\t -0.71629971 -0.69463205 0.065981068 -0.72478384 -0.68688035 0.053529516 -0.84469116\n\t\t -0.43052486 0.31797239 -0.81289089 -0.46275237 0.35358748 -0.84469116 -0.43052486\n\t\t 0.31797239 -0.72478384 -0.68688035 0.053529516 -0.72478384 -0.68688035 0.053529516\n\t\t -0.74443781 -0.66667706 0.036164481 -0.81289089 -0.46275237 0.35358748 -0.77629912\n\t\t -0.50395238 0.37861267 -0.81289089 -0.46275237 0.35358748 -0.74443781 -0.66667706\n\t\t 0.036164481 -0.74443781 -0.66667706 0.036164481 -0.76461053 -0.64418495 0.018555302\n\t\t -0.77629912 -0.50395238 0.37861267 -0.73946333 -0.54606795 0.39365828 -0.77629912\n\t\t -0.50395238 0.37861267 -0.76461053 -0.64418495 0.018555302 -0.76461053 -0.64418495\n\t\t 0.018555302 -0.77779454 -0.62834585 0.011963302 -0.73946333 -0.54606795 0.39365828\n\t\t -0.70183396 -0.59016716 0.39887694 -0.73946333 -0.54606795 0.39365828 -0.77779454\n\t\t -0.62834585 0.011963302 -0.77779454 -0.62834585 0.011963302 -0.78264701 -0.62230319\n\t\t 0.011993821 -0.70183396 -0.59016716 0.39887694 -0.66164112 -0.63881361 0.39252913\n\t\t -0.70183396 -0.59016716 0.39887694 -0.78264701 -0.62230319 0.011993821 -0.78264701\n\t\t -0.62230319 0.011993821 -0.77846599 -0.62755233 0.012512635 -0.66164112 -0.63881361\n\t\t 0.39252913 -0.61900669 -0.69090873 0.37339401 -0.66164112 -0.63881361 0.39252913\n\t\t -0.77846599 -0.62755233 0.012512635 -0.77846599 -0.62755233 0.012512635 -0.76949352\n\t\t -0.63853902 0.010345822 -0.61900669 -0.69090873 0.37339401 -0.57570094 -0.74343109\n\t\t 0.34037301 -0.61900669 -0.69090873 0.37339401 -0.76949352 -0.63853902 0.010345822\n\t\t -0.76949352 -0.63853902 0.010345822 -0.76079577 -0.64894581 0.004944047 -0.57570094\n\t\t -0.74343109 0.34037301 -0.53117442 -0.79552615 0.29145181 -0.57570094 -0.74343109\n\t\t 0.34037301 -0.76079577 -0.64894581 0.004944047 -0.76079577 -0.64894581 0.004944047\n\t\t -0.75249469 -0.65855914 -0.0036316537 -0.53117442 -0.79552615 0.29145181 -0.48719722\n\t\t -0.84444731 0.22251052 -0.53117442 -0.79552615 0.29145181 -0.75249469 -0.65855914\n\t\t -0.0036316537 -0.75249469 -0.65855914 -0.0036316537 -0.74523133 -0.66658551 -0.015900092\n\t\t -0.48719722 -0.84444731 0.22251052 -0.45570213 -0.87850595 0.14322342 -0.48719722\n\t\t -0.84444731 0.22251052 -0.74523133 -0.66658551 -0.015900092 -0.74523133 -0.66658551\n\t\t -0.015900092;\n\tsetAttr \".n[36022:36187]\" -type \"float3\"  -0.74419367 -0.66744006 -0.025727054\n\t\t -0.45570213 -0.87850595 0.14322342 -0.44370833 -0.89327687 0.071749084 -0.45570213\n\t\t -0.87850595 0.14322342 -0.74419367 -0.66744006 -0.025727054 -0.74419367 -0.66744006\n\t\t -0.025727054 -0.74883246 -0.662435 -0.019562315 -0.44370833 -0.89327687 0.071749084\n\t\t -0.4476147 -0.8941009 0.013397692 -0.44370833 -0.89327687 0.071749084 -0.74883246\n\t\t -0.662435 -0.019562315 -0.74883246 -0.662435 -0.019562315 -0.7531051 -0.65782672\n\t\t 0.0070803431 -0.4476147 -0.8941009 0.013397692 -0.46079871 -0.88702059 -0.028687334\n\t\t -0.4476147 -0.8941009 0.013397692 -0.7531051 -0.65782672 0.0070803431 -0.7531051\n\t\t -0.65782672 0.0070803431 -0.7503584 -0.65855914 0.05688655 -0.46079871 -0.88702059\n\t\t -0.028687334 -0.47657678 -0.87847543 -0.033112515 -0.46079871 -0.88702059 -0.028687334\n\t\t -0.7503584 -0.65855914 0.05688655 -0.7503584 -0.65855914 0.05688655 -0.73857826 -0.66048181\n\t\t 0.13489185 -0.47657678 -0.87847543 -0.033112515 -0.47148019 -0.88177139 0.012909394\n\t\t -0.47657678 -0.87847543 -0.033112515 -0.73857826 -0.66048181 0.13489185 -0.73857826\n\t\t -0.66048181 0.13489185 -0.70671695 -0.66792834 0.23313093 -0.47148019 -0.88177139\n\t\t 0.012909394 -0.43446124 -0.89562684 0.095004186 -0.47148019 -0.88177139 0.012909394\n\t\t -0.70671695 -0.66792834 0.23313093 -0.70671695 -0.66792834 0.23313093 -0.65605617\n\t\t -0.67616826 0.33515432 -0.43446124 -0.89562684 0.095004186 -0.36536732 -0.90868872\n\t\t 0.20191054 -0.43446124 -0.89562684 0.095004186 -0.65605617 -0.67616826 0.33515432\n\t\t -0.65605617 -0.67616826 0.33515432 -0.59361529 -0.67909801 0.43171489 -0.36536732\n\t\t -0.90868872 0.20191054 -0.29615134 -0.90981793 0.29065835 -0.36536732 -0.90868872\n\t\t 0.20191054 -0.59361529 -0.67909801 0.43171489 -0.36536732 -0.90868872 0.20191054\n\t\t -0.29615134 -0.90981793 0.29065835 -0.0025327273 -0.99957275 0.029023178 0.040345773\n\t\t -0.99386579 0.10266434 -0.0025327273 -0.99957275 0.029023178 -0.29615134 -0.90981793\n\t\t 0.29065835 -0.29615134 -0.90981793 0.29065835 -0.26459521 -0.90185255 0.34150219\n\t\t 0.040345773 -0.99386579 0.10266434 -0.0025327273 -0.99957275 0.029023178 -0.075319372\n\t\t -0.99462873 -0.070711315 -0.36536732 -0.90868872 0.20191054 -0.59361529 -0.67909801\n\t\t 0.43171489 -0.5415507 -0.67769414 0.49739072 -0.29615134 -0.90981793 0.29065835 -0.26459521\n\t\t -0.90185255 0.34150219 -0.29615134 -0.90981793 0.29065835 -0.5415507 -0.67769414\n\t\t 0.49739072 -0.5415507 -0.67769414 0.49739072 -0.52882457 -0.67009503 0.52082896 -0.26459521\n\t\t -0.90185255 0.34150219 -0.3074432 -0.90060133 0.30719939 -0.26459521 -0.90185255\n\t\t 0.34150219 -0.52882457 -0.67009503 0.52082896 -0.52882457 -0.67009503 0.52082896\n\t\t -0.59831518 -0.67326897 0.43437001 -0.3074432 -0.90060133 0.30719939 -0.59831518\n\t\t -0.67326897 0.43437001 -0.52882457 -0.67009503 0.52082896 -0.71092856 -0.33918285\n\t\t 0.61604661 -0.71092856 -0.33918285 0.61604661 -0.79622781 -0.34412691 0.49754328\n\t\t -0.59831518 -0.67326897 0.43437001 -0.70439762 -0.34791115 0.61867124 -0.71092856\n\t\t -0.33918285 0.61604661 -0.52882457 -0.67009503 0.52082896 -0.52882457 -0.67009503\n\t\t 0.52082896 -0.5415507 -0.67769414 0.49739072 -0.70439762 -0.34791115 0.61867124 -0.73186427\n\t\t -0.35346559 0.58259833 -0.70439762 -0.34791115 0.61867124 -0.5415507 -0.67769414\n\t\t 0.49739072 -0.5415507 -0.67769414 0.49739072 -0.59361529 -0.67909801 0.43171489 -0.73186427\n\t\t -0.35346559 0.58259833 -0.70439762 -0.34791115 0.61867124 -0.73186427 -0.35346559\n\t\t 0.58259833 -0.76714379 0.019195953 0.64113283 -0.76714379 0.019195953 0.64113283\n\t\t -0.76479387 0.029053433 0.64360487 -0.70439762 -0.34791115 0.61867124 -0.71092856\n\t\t -0.33918285 0.61604661 -0.70439762 -0.34791115 0.61867124 -0.76479387 0.029053433\n\t\t 0.64360487 -0.76479387 0.029053433 0.64360487 -0.78521073 0.039429717 0.61793876\n\t\t -0.71092856 -0.33918285 0.61604661 -0.79622781 -0.34412691 0.49754328 -0.71092856\n\t\t -0.33918285 0.61604661 -0.78521073 0.039429717 0.61793876 -0.78521073 0.039429717\n\t\t 0.61793876 -0.87066257 0.035187609 0.49061555 -0.79622781 -0.34412691 0.49754328\n\t\t -0.87066257 0.035187609 0.49061555 -0.78521073 0.039429717 0.61793876 -0.74217975\n\t\t 0.41032115 0.52983177 -0.74217975 0.41032115 0.52983177 -0.8139593 0.40623167 0.4152348\n\t\t -0.87066257 0.035187609 0.49061555 -0.71355337 0.40131822 0.5742057 -0.74217975 0.41032115\n\t\t 0.52983177 -0.78521073 0.039429717 0.61793876 -0.78521073 0.039429717 0.61793876\n\t\t -0.76479387 0.029053433 0.64360487 -0.71355337 0.40131822 0.5742057 -0.69301444 0.39020953\n\t\t 0.60618913 -0.71355337 0.40131822 0.5742057 -0.76479387 0.029053433 0.64360487 -0.76479387\n\t\t 0.029053433 0.64360487 -0.76714379 0.019195953 0.64113283 -0.69301444 0.39020953\n\t\t 0.60618913 -0.71355337 0.40131822 0.5742057 -0.69301444 0.39020953 0.60618913 -0.51124632\n\t\t 0.71001303 0.48420662 -0.51124632 0.71001303 0.48420662 -0.55345339 0.71806991 0.42194885\n\t\t -0.71355337 0.40131822 0.5742057 -0.74217975 0.41032115 0.52983177 -0.71355337 0.40131822\n\t\t 0.5742057 -0.55345339 0.71806991 0.42194885 -0.55345339 0.71806991 0.42194885 -0.58833605\n\t\t 0.72173208 0.36457404 -0.74217975 0.41032115 0.52983177 -0.8139593 0.40623167 0.4152348\n\t\t -0.74217975 0.41032115 0.52983177 -0.58833605 0.72173208 0.36457404 -0.58833605 0.72173208\n\t\t 0.36457404 -0.64003444 0.7159946 0.27866444 -0.8139593 0.40623167 0.4152348 -0.64003444\n\t\t 0.7159946 0.27866444 -0.58833605 0.72173208 0.36457404 -0.34458479 0.9276405 0.14377262\n\t\t -0.34458479 0.9276405 0.14377262 -0.37391308 0.92281854 0.092440501 -0.64003444 0.7159946\n\t\t 0.27866444 -0.30384257 0.92959368 0.2085329 -0.34458479 0.9276405 0.14377262 -0.58833605\n\t\t 0.72173208 0.36457404 -0.58833605 0.72173208 0.36457404 -0.55345339 0.71806991 0.42194885\n\t\t -0.30384257 0.92959368 0.2085329 -0.24286658 0.92492443 0.29242828 -0.30384257 0.92959368\n\t\t 0.2085329 -0.55345339 0.71806991 0.42194885 -0.55345339 0.71806991 0.42194885 -0.51124632\n\t\t 0.71001303 0.48420662 -0.24286658 0.92492443 0.29242828 -0.30384257 0.92959368 0.2085329\n\t\t -0.24286658 0.92492443 0.29242828;\n\tsetAttr \".n[36188:36353]\" -type \"float3\"  0.070161745 0.99581897 0.057954576 0.070161745\n\t\t 0.99581897 0.057954576 -0.0018314195 0.99932861 -0.036195025 -0.30384257 0.92959368\n\t\t 0.2085329 -0.34458479 0.9276405 0.14377262 -0.30384257 0.92959368 0.2085329 -0.0018314195\n\t\t 0.99932861 -0.036195025 -0.0018314195 0.99932861 -0.036195025 -0.046266366 0.99343854\n\t\t -0.10449545 -0.34458479 0.9276405 0.14377262 -0.37391308 0.92281854 0.092440501 -0.34458479\n\t\t 0.9276405 0.14377262 -0.046266366 0.99343854 -0.10449545 -0.046266366 0.99343854\n\t\t -0.10449545 -0.050783105 0.99078339 -0.12537012 -0.37391308 0.92281854 0.092440501\n\t\t -0.47740126 0.69542521 0.53703415 -0.51124632 0.71001303 0.48420662 -0.69301444 0.39020953\n\t\t 0.60618913 -0.69301444 0.39020953 0.60618913 -0.68764317 0.37565219 0.62126529 -0.47740126\n\t\t 0.69542521 0.53703415 -0.68764317 0.37565219 0.62126529 -0.69301444 0.39020953 0.60618913\n\t\t -0.76714379 0.019195953 0.64113283 -0.76714379 0.019195953 0.64113283 -0.78954434\n\t\t 0.0068359477 0.61363566 -0.68764317 0.37565219 0.62126529 -0.78954434 0.0068359477\n\t\t 0.61363566 -0.76714379 0.019195953 0.64113283 -0.73186427 -0.35346559 0.58259833\n\t\t -0.73186427 -0.35346559 0.58259833 -0.77797771 -0.35966083 0.51512194 -0.78954434\n\t\t 0.0068359477 0.61363566 -0.77797771 -0.35966083 0.51512194 -0.73186427 -0.35346559\n\t\t 0.58259833 -0.59361529 -0.67909801 0.43171489 -0.59361529 -0.67909801 0.43171489\n\t\t -0.65605617 -0.67616826 0.33515432 -0.77797771 -0.35966083 0.51512194 -0.83391815\n\t\t -0.35743302 0.42045355 -0.77797771 -0.35966083 0.51512194 -0.65605617 -0.67616826\n\t\t 0.33515432 -0.65605617 -0.67616826 0.33515432 -0.70671695 -0.66792834 0.23313093\n\t\t -0.83391815 -0.35743302 0.42045355 -0.8896755 -0.34669051 0.2970672 -0.83391815 -0.35743302\n\t\t 0.42045355 -0.70671695 -0.66792834 0.23313093 -0.70671695 -0.66792834 0.23313093\n\t\t -0.73857826 -0.66048181 0.13489185 -0.8896755 -0.34669051 0.2970672 -0.9306618 -0.33280465\n\t\t 0.15192117 -0.8896755 -0.34669051 0.2970672 -0.73857826 -0.66048181 0.13489185 -0.73857826\n\t\t -0.66048181 0.13489185 -0.7503584 -0.65855914 0.05688655 -0.9306618 -0.33280465 0.15192117\n\t\t -0.8896755 -0.34669051 0.2970672 -0.9306618 -0.33280465 0.15192117 -0.96847439 0.048615705\n\t\t 0.24417859 -0.96847439 0.048615705 0.24417859 -0.90353101 0.022430858 0.4278695 -0.8896755\n\t\t -0.34669051 0.2970672 -0.83391815 -0.35743302 0.42045355 -0.8896755 -0.34669051 0.2970672\n\t\t -0.90353101 0.022430858 0.4278695 -0.90353101 0.022430858 0.4278695 -0.83715326 0.0064086686\n\t\t 0.54692221 -0.83391815 -0.35743302 0.42045355 -0.77797771 -0.35966083 0.51512194\n\t\t -0.83391815 -0.35743302 0.42045355 -0.83715326 0.0064086686 0.54692221 -0.83715326\n\t\t 0.0064086686 0.54692221 -0.78954434 0.0068359477 0.61363566 -0.77797771 -0.35966083\n\t\t 0.51512194 -0.7148962 0.37366846 0.59096044 -0.68764317 0.37565219 0.62126529 -0.78954434\n\t\t 0.0068359477 0.61363566 -0.78954434 0.0068359477 0.61363566 -0.83715326 0.0064086686\n\t\t 0.54692221 -0.7148962 0.37366846 0.59096044 -0.77410209 0.39313924 0.49613938 -0.7148962\n\t\t 0.37366846 0.59096044 -0.83715326 0.0064086686 0.54692221 -0.83715326 0.0064086686\n\t\t 0.54692221 -0.90353101 0.022430858 0.4278695 -0.77410209 0.39313924 0.49613938 -0.84911662\n\t\t 0.42954779 0.30729085 -0.77410209 0.39313924 0.49613938 -0.90353101 0.022430858 0.4278695\n\t\t -0.90353101 0.022430858 0.4278695 -0.96847439 0.048615705 0.24417859 -0.84911662\n\t\t 0.42954779 0.30729085 -0.77410209 0.39313924 0.49613938 -0.84911662 0.42954779 0.30729085\n\t\t -0.59123534 0.7431255 0.31330296 -0.59123534 0.7431255 0.31330296 -0.52192777 0.70522159\n\t\t 0.47978142 -0.77410209 0.39313924 0.49613938 -0.7148962 0.37366846 0.59096044 -0.77410209\n\t\t 0.39313924 0.49613938 -0.52192777 0.70522159 0.47978142 -0.52192777 0.70522159 0.47978142\n\t\t -0.48005638 0.68962669 0.54213077 -0.7148962 0.37366846 0.59096044 -0.68764317 0.37565219\n\t\t 0.62126529 -0.7148962 0.37366846 0.59096044 -0.48005638 0.68962669 0.54213077 -0.48005638\n\t\t 0.68962669 0.54213077 -0.47740126 0.69542521 0.53703415 -0.68764317 0.37565219 0.62126529\n\t\t -0.47740126 0.69542521 0.53703415 -0.48005638 0.68962669 0.54213077 -0.16669238 0.8984344\n\t\t 0.40623182 -0.16669238 0.8984344 0.40623182 -0.18515608 0.90951258 0.37214264 -0.47740126\n\t\t 0.69542521 0.53703415 -0.51124632 0.71001303 0.48420662 -0.47740126 0.69542521 0.53703415\n\t\t -0.18515608 0.90951258 0.37214264 -0.18515608 0.90951258 0.37214264 -0.24286658 0.92492443\n\t\t 0.29242828 -0.51124632 0.71001303 0.48420662 -0.18988645 0.90591139 0.37849051 -0.16669238\n\t\t 0.8984344 0.40623182 -0.48005638 0.68962669 0.54213077 -0.48005638 0.68962669 0.54213077\n\t\t -0.52192777 0.70522159 0.47978142 -0.18988645 0.90591139 0.37849051 -0.24295814 0.93603313\n\t\t 0.2544938 -0.18988645 0.90591139 0.37849051 -0.52192777 0.70522159 0.47978142 -0.52192777\n\t\t 0.70522159 0.47978142 -0.59123534 0.7431255 0.31330296 -0.24295814 0.93603313 0.2544938\n\t\t -0.18988645 0.90591139 0.37849051 -0.24295814 0.93603313 0.2544938 0.13696676 0.97912538\n\t\t 0.15002891 0.13696676 0.97912538 0.15002891 0.16803461 0.96188241 0.21567424 -0.18988645\n\t\t 0.90591139 0.37849051 -0.16669238 0.8984344 0.40623182 -0.18988645 0.90591139 0.37849051\n\t\t 0.16803461 0.96188241 0.21567424 0.16803461 0.96188241 0.21567424 0.17334484 0.96258438\n\t\t 0.20816667 -0.16669238 0.8984344 0.40623182 -0.18515608 0.90951258 0.37214264 -0.16669238\n\t\t 0.8984344 0.40623182 0.17334484 0.96258438 0.20816667 0.17334484 0.96258438 0.20816667\n\t\t 0.1409647 0.97820985 0.15219574 -0.18515608 0.90951258 0.37214264 -0.24286658 0.92492443\n\t\t 0.29242828 -0.18515608 0.90951258 0.37214264 0.1409647 0.97820985 0.15219574 0.1409647\n\t\t 0.97820985 0.15219574 0.070161745 0.99581897 0.057954576 -0.24286658 0.92492443 0.29242828\n\t\t -0.64012599 0.76564819 0.063081697 -0.59123534 0.7431255 0.31330296 -0.84911662 0.42954779\n\t\t 0.30729085 -0.84911662 0.42954779 0.30729085 -0.89010298 0.45271131 0.052430768 -0.64012599\n\t\t 0.76564819 0.063081697;\n\tsetAttr \".n[36354:36519]\" -type \"float3\"  -0.89010298 0.45271131 0.052430768 -0.84911662\n\t\t 0.42954779 0.30729085 -0.96847439 0.048615705 0.24417859 -0.96847439 0.048615705\n\t\t 0.24417859 -0.99716181 0.068879969 0.029480875 -0.89010298 0.45271131 0.052430768\n\t\t -0.99716181 0.068879969 0.029480875 -0.96847439 0.048615705 0.24417859 -0.9306618\n\t\t -0.33280465 0.15192117 -0.9306618 -0.33280465 0.15192117 -0.94714183 -0.3205362 0.011413948\n\t\t -0.99716181 0.068879969 0.029480875 -0.94714183 -0.3205362 0.011413948 -0.9306618\n\t\t -0.33280465 0.15192117 -0.7503584 -0.65855914 0.05688655 -0.7503584 -0.65855914 0.05688655\n\t\t -0.7531051 -0.65782672 0.0070803431 -0.94714183 -0.3205362 0.011413948 -0.93893236\n\t\t -0.32737234 -0.1057466 -0.94714183 -0.3205362 0.011413948 -0.7531051 -0.65782672\n\t\t 0.0070803431 -0.7531051 -0.65782672 0.0070803431 -0.74883246 -0.662435 -0.019562315\n\t\t -0.93893236 -0.32737234 -0.1057466 -0.9150058 -0.35273319 -0.19574569 -0.93893236\n\t\t -0.32737234 -0.1057466 -0.74883246 -0.662435 -0.019562315 -0.74883246 -0.662435 -0.019562315\n\t\t -0.74419367 -0.66744006 -0.025727054 -0.9150058 -0.35273319 -0.19574569 -0.88473147\n\t\t -0.38761589 -0.25876641 -0.9150058 -0.35273319 -0.19574569 -0.74419367 -0.66744006\n\t\t -0.025727054 -0.74419367 -0.66744006 -0.025727054 -0.74523133 -0.66658551 -0.015900092\n\t\t -0.88473147 -0.38761589 -0.25876641 -0.9150058 -0.35273319 -0.19574569 -0.88473147\n\t\t -0.38761589 -0.25876641 -0.88393813 -0.05395703 -0.46443069 -0.88393813 -0.05395703\n\t\t -0.46443069 -0.9416486 0.012085013 -0.336375 -0.9150058 -0.35273319 -0.19574569 -0.93893236\n\t\t -0.32737234 -0.1057466 -0.9150058 -0.35273319 -0.19574569 -0.9416486 0.012085013\n\t\t -0.336375 -0.9416486 0.012085013 -0.336375 -0.98385572 0.057160851 -0.16940825 -0.93893236\n\t\t -0.32737234 -0.1057466 -0.94714183 -0.3205362 0.011413948 -0.93893236 -0.32737234\n\t\t -0.1057466 -0.98385572 0.057160851 -0.16940825 -0.98385572 0.057160851 -0.16940825\n\t\t -0.99716181 0.068879969 0.029480875 -0.94714183 -0.3205362 0.011413948 -0.87813973\n\t\t 0.4339729 -0.20114753 -0.89010298 0.45271131 0.052430768 -0.99716181 0.068879969\n\t\t 0.029480875 -0.99716181 0.068879969 0.029480875 -0.98385572 0.057160851 -0.16940825\n\t\t -0.87813973 0.4339729 -0.20114753 -0.8253122 0.37348521 -0.42347488 -0.87813973 0.4339729\n\t\t -0.20114753 -0.98385572 0.057160851 -0.16940825 -0.98385572 0.057160851 -0.16940825\n\t\t -0.9416486 0.012085013 -0.336375 -0.8253122 0.37348521 -0.42347488 -0.74822235 0.28598869\n\t\t -0.59859002 -0.8253122 0.37348521 -0.42347488 -0.9416486 0.012085013 -0.336375 -0.9416486\n\t\t 0.012085013 -0.336375 -0.88393813 -0.05395703 -0.46443069 -0.74822235 0.28598869\n\t\t -0.59859002 -0.8253122 0.37348521 -0.42347488 -0.74822235 0.28598869 -0.59859002\n\t\t -0.50209069 0.58412403 -0.6377148 -0.50209069 0.58412403 -0.6377148 -0.58598614 0.67912817\n\t\t -0.44199964 -0.8253122 0.37348521 -0.42347488 -0.87813973 0.4339729 -0.20114753 -0.8253122\n\t\t 0.37348521 -0.42347488 -0.58598614 0.67912817 -0.44199964 -0.58598614 0.67912817\n\t\t -0.44199964 -0.63716567 0.74413264 -0.20062874 -0.87813973 0.4339729 -0.20114753\n\t\t -0.89010298 0.45271131 0.052430768 -0.87813973 0.4339729 -0.20114753 -0.63716567\n\t\t 0.74413264 -0.20062874 -0.63716567 0.74413264 -0.20062874 -0.64012599 0.76564819\n\t\t 0.063081697 -0.89010298 0.45271131 0.052430768 -0.64012599 0.76564819 0.063081697\n\t\t -0.63716567 0.74413264 -0.20062874 -0.29651815 0.93914598 -0.17334521 -0.29651815\n\t\t 0.93914598 -0.17334521 -0.29007873 0.95562595 0.051240508 -0.64012599 0.76564819\n\t\t 0.063081697 -0.59123534 0.7431255 0.31330296 -0.64012599 0.76564819 0.063081697 -0.29007873\n\t\t 0.95562595 0.051240508 -0.29007873 0.95562595 0.051240508 -0.24295814 0.93603313\n\t\t 0.2544938 -0.59123534 0.7431255 0.31330296 -0.25675249 0.88424325 -0.39005712 -0.29651815\n\t\t 0.93914598 -0.17334521 -0.63716567 0.74413264 -0.20062874 -0.63716567 0.74413264\n\t\t -0.20062874 -0.58598614 0.67912817 -0.44199964 -0.25675249 0.88424325 -0.39005712\n\t\t -0.18018153 0.79802841 -0.57499927 -0.25675249 0.88424325 -0.39005712 -0.58598614\n\t\t 0.67912817 -0.44199964 -0.58598614 0.67912817 -0.44199964 -0.50209069 0.58412403\n\t\t -0.6377148 -0.18018153 0.79802841 -0.57499927 -0.25675249 0.88424325 -0.39005712\n\t\t -0.18018153 0.79802841 -0.57499927 0.17392471 0.88982821 -0.42179638 0.17392471 0.88982821\n\t\t -0.42179638 0.11685508 0.9532457 -0.27866456 -0.25675249 0.88424325 -0.39005712 -0.29651815\n\t\t 0.93914598 -0.17334521 -0.25675249 0.88424325 -0.39005712 0.11685508 0.9532457 -0.27866456\n\t\t 0.11685508 0.9532457 -0.27866456 0.092074037 0.98800623 -0.12393574 -0.29651815 0.93914598\n\t\t -0.17334521 -0.29007873 0.95562595 0.051240508 -0.29651815 0.93914598 -0.17334521\n\t\t 0.092074037 0.98800623 -0.12393574 0.092074037 0.98800623 -0.12393574 0.10196204\n\t\t 0.9944762 0.024628364 -0.29007873 0.95562595 0.051240508 -0.24295814 0.93603313 0.2544938\n\t\t -0.29007873 0.95562595 0.051240508 0.10196204 0.9944762 0.024628364 0.10196204 0.9944762\n\t\t 0.024628364 0.13696676 0.97912538 0.15002891 -0.24295814 0.93603313 0.2544938 -0.40379053\n\t\t 0.47740087 -0.78038889 -0.50209069 0.58412403 -0.6377148 -0.74822235 0.28598869 -0.59859002\n\t\t -0.74822235 0.28598869 -0.59859002 -0.66075629 0.19128975 -0.72579122 -0.40379053\n\t\t 0.47740087 -0.78038889 -0.66075629 0.19128975 -0.72579122 -0.74822235 0.28598869\n\t\t -0.59859002 -0.88393813 -0.05395703 -0.46443069 -0.88393813 -0.05395703 -0.46443069\n\t\t -0.8205511 -0.12341716 -0.55806148 -0.66075629 0.19128975 -0.72579122 -0.8205511\n\t\t -0.12341716 -0.55806148 -0.88393813 -0.05395703 -0.46443069 -0.88473147 -0.38761589\n\t\t -0.25876641 -0.88473147 -0.38761589 -0.25876641 -0.85439605 -0.42149144 -0.30381173\n\t\t -0.8205511 -0.12341716 -0.55806148 -0.85439605 -0.42149144 -0.30381173 -0.88473147\n\t\t -0.38761589 -0.25876641 -0.74523133 -0.66658551 -0.015900092 -0.74523133 -0.66658551\n\t\t -0.015900092 -0.75249469 -0.65855914 -0.0036316537 -0.85439605 -0.42149144 -0.30381173\n\t\t -0.82540351 -0.45417675 -0.33521527 -0.85439605 -0.42149144 -0.30381173 -0.75249469\n\t\t -0.65855914 -0.0036316537 -0.75249469 -0.65855914 -0.0036316537;\n\tsetAttr \".n[36520:36685]\" -type \"float3\"  -0.76079577 -0.64894581 0.004944047 -0.82540351\n\t\t -0.45417675 -0.33521527 -0.79790628 -0.48567182 -0.35697499 -0.82540351 -0.45417675\n\t\t -0.33521527 -0.76079577 -0.64894581 0.004944047 -0.76079577 -0.64894581 0.004944047\n\t\t -0.76949352 -0.63853902 0.010345822 -0.79790628 -0.48567182 -0.35697499 -0.7714467\n\t\t -0.51667863 -0.37125763 -0.79790628 -0.48567182 -0.35697499 -0.76949352 -0.63853902\n\t\t 0.010345822 -0.76949352 -0.63853902 0.010345822 -0.77846599 -0.62755233 0.012512635\n\t\t -0.7714467 -0.51667863 -0.37125763 -0.79790628 -0.48567182 -0.35697499 -0.7714467\n\t\t -0.51667863 -0.37125763 -0.64271969 -0.32721972 -0.69267863 -0.64271969 -0.32721972\n\t\t -0.69267863 -0.69966727 -0.25962123 -0.6656087 -0.79790628 -0.48567182 -0.35697499\n\t\t -0.82540351 -0.45417675 -0.33521527 -0.79790628 -0.48567182 -0.35697499 -0.69966727\n\t\t -0.25962123 -0.6656087 -0.69966727 -0.25962123 -0.6656087 -0.75875109 -0.19202274\n\t\t -0.62236398 -0.82540351 -0.45417675 -0.33521527 -0.85439605 -0.42149144 -0.30381173\n\t\t -0.82540351 -0.45417675 -0.33521527 -0.75875109 -0.19202274 -0.62236398 -0.75875109\n\t\t -0.19202274 -0.62236398 -0.8205511 -0.12341716 -0.55806148 -0.85439605 -0.42149144\n\t\t -0.30381173 -0.57542658 0.096560329 -0.81212807 -0.66075629 0.19128975 -0.72579122\n\t\t -0.8205511 -0.12341716 -0.55806148 -0.8205511 -0.12341716 -0.55806148 -0.75875109\n\t\t -0.19202274 -0.62236398 -0.57542658 0.096560329 -0.81212807 -0.49436933 0.0023497075\n\t\t -0.86922818 -0.57542658 0.096560329 -0.81212807 -0.75875109 -0.19202274 -0.62236398\n\t\t -0.75875109 -0.19202274 -0.62236398 -0.69966727 -0.25962123 -0.6656087 -0.49436933\n\t\t 0.0023497075 -0.86922818 -0.41663867 -0.091647275 -0.90441602 -0.49436933 0.0023497075\n\t\t -0.86922818 -0.69966727 -0.25962123 -0.6656087 -0.69966727 -0.25962123 -0.6656087\n\t\t -0.64271969 -0.32721972 -0.69267863 -0.41663867 -0.091647275 -0.90441602 -0.49436933\n\t\t 0.0023497075 -0.86922818 -0.41663867 -0.091647275 -0.90441602 -0.13071083 0.15405732\n\t\t -0.97936946 -0.13071083 0.15405732 -0.97936946 -0.21726134 0.26078054 -0.940611 -0.49436933\n\t\t 0.0023497075 -0.86922818 -0.57542658 0.096560329 -0.81212807 -0.49436933 0.0023497075\n\t\t -0.86922818 -0.21726134 0.26078054 -0.940611 -0.21726134 0.26078054 -0.940611 -0.30771825\n\t\t 0.3689076 -0.87704092 -0.57542658 0.096560329 -0.81212807 -0.66075629 0.19128975\n\t\t -0.72579122 -0.57542658 0.096560329 -0.81212807 -0.30771825 0.3689076 -0.87704092\n\t\t -0.30771825 0.3689076 -0.87704092 -0.40379053 0.47740087 -0.78038889 -0.66075629\n\t\t 0.19128975 -0.72579122 -0.40379053 0.47740087 -0.78038889 -0.30771825 0.3689076 -0.87704092\n\t\t 0.0047912244 0.58790851 -0.80889314 0.0047912244 0.58790851 -0.80889314 -0.087100044\n\t\t 0.69490641 -0.71376693 -0.40379053 0.47740087 -0.78038889 -0.50209069 0.58412403\n\t\t -0.6377148 -0.40379053 0.47740087 -0.78038889 -0.087100044 0.69490641 -0.71376693\n\t\t -0.087100044 0.69490641 -0.71376693 -0.18018153 0.79802841 -0.57499927 -0.50209069\n\t\t 0.58412403 -0.6377148 0.091433302 0.48139894 -0.87170023 0.0047912244 0.58790851\n\t\t -0.80889314 -0.30771825 0.3689076 -0.87704092 -0.30771825 0.3689076 -0.87704092 -0.21726134\n\t\t 0.26078054 -0.940611 0.091433302 0.48139894 -0.87170023 0.17450471 0.37766656 -0.90932953\n\t\t 0.091433302 0.48139894 -0.87170023 -0.21726134 0.26078054 -0.940611 -0.21726134 0.26078054\n\t\t -0.940611 -0.13071083 0.15405732 -0.97936946 0.17450471 0.37766656 -0.90932953 0.091433302\n\t\t 0.48139894 -0.87170023 0.17450471 0.37766656 -0.90932953 0.45658726 0.54814303 -0.70073557\n\t\t 0.45658726 0.54814303 -0.70073557 0.38904974 0.6327098 -0.66951513 0.091433302 0.48139894\n\t\t -0.87170023 0.0047912244 0.58790851 -0.80889314 0.091433302 0.48139894 -0.87170023\n\t\t 0.38904974 0.6327098 -0.66951513 0.38904974 0.6327098 -0.66951513 0.31913185 0.72014534\n\t\t -0.61601615 0.0047912244 0.58790851 -0.80889314 -0.087100044 0.69490641 -0.71376693\n\t\t 0.0047912244 0.58790851 -0.80889314 0.31913185 0.72014534 -0.61601615 0.31913185\n\t\t 0.72014534 -0.61601615 0.24619256 0.80764186 -0.53578299 -0.087100044 0.69490641\n\t\t -0.71376693 -0.18018153 0.79802841 -0.57499927 -0.087100044 0.69490641 -0.71376693\n\t\t 0.24619256 0.80764186 -0.53578299 0.24619256 0.80764186 -0.53578299 0.17392471 0.88982821\n\t\t -0.42179638 -0.18018153 0.79802841 -0.57499927 -0.037476745 0.043732937 -0.99832147\n\t\t -0.13071083 0.15405732 -0.97936946 -0.41663867 -0.091647275 -0.90441602 -0.41663867\n\t\t -0.091647275 -0.90441602 -0.33277377 -0.19364013 -0.9228797 -0.037476745 0.043732937\n\t\t -0.99832147 -0.33277377 -0.19364013 -0.9228797 -0.41663867 -0.091647275 -0.90441602\n\t\t -0.64271969 -0.32721972 -0.69267863 -0.64271969 -0.32721972 -0.69267863 -0.58021778\n\t\t -0.40461463 -0.70680863 -0.33277377 -0.19364013 -0.9228797 -0.58021778 -0.40461463\n\t\t -0.70680863 -0.64271969 -0.32721972 -0.69267863 -0.7714467 -0.51667863 -0.37125763\n\t\t -0.7714467 -0.51667863 -0.37125763 -0.73955488 -0.55626112 -0.37888727 -0.58021778\n\t\t -0.40461463 -0.70680863 -0.73955488 -0.55626112 -0.37888727 -0.7714467 -0.51667863\n\t\t -0.37125763 -0.77846599 -0.62755233 0.012512635 -0.77846599 -0.62755233 0.012512635\n\t\t -0.78264701 -0.62230319 0.011993821 -0.73955488 -0.55626112 -0.37888727 -0.69463164\n\t\t -0.61369693 -0.37522501 -0.73955488 -0.55626112 -0.37888727 -0.78264701 -0.62230319\n\t\t 0.011993821 -0.78264701 -0.62230319 0.011993821 -0.77779454 -0.62834585 0.011963302\n\t\t -0.69463164 -0.61369693 -0.37522501 -0.63493735 -0.68868089 -0.3499862 -0.69463164\n\t\t -0.61369693 -0.37522501 -0.77779454 -0.62834585 0.011963302 -0.77779454 -0.62834585\n\t\t 0.011963302 -0.76461053 -0.64418495 0.018555302 -0.63493735 -0.68868089 -0.3499862\n\t\t -0.56056374 -0.77459049 -0.29279453 -0.63493735 -0.68868089 -0.3499862 -0.76461053\n\t\t -0.64418495 0.018555302 -0.76461053 -0.64418495 0.018555302 -0.74443781 -0.66667706\n\t\t 0.036164481 -0.56056374 -0.77459049 -0.29279453 -0.63493735 -0.68868089 -0.3499862\n\t\t -0.56056374 -0.77459049 -0.29279453 -0.28473747 -0.76271868 -0.58061457 -0.28473747\n\t\t -0.76271868 -0.58061457 -0.40357658 -0.6262095 -0.66701251 -0.63493735 -0.68868089\n\t\t -0.3499862 -0.69463164 -0.61369693 -0.37522501 -0.63493735 -0.68868089 -0.3499862;\n\tsetAttr \".n[36686:36851]\" -type \"float3\"  -0.40357658 -0.6262095 -0.66701251 -0.40357658\n\t\t -0.6262095 -0.66701251 -0.5020293 -0.50367773 -0.70299381 -0.69463164 -0.61369693\n\t\t -0.37522501 -0.73955488 -0.55626112 -0.37888727 -0.69463164 -0.61369693 -0.37522501\n\t\t -0.5020293 -0.50367773 -0.70299381 -0.5020293 -0.50367773 -0.70299381 -0.58021778\n\t\t -0.40461463 -0.70680863 -0.73955488 -0.55626112 -0.37888727 -0.2313302 -0.31623292\n\t\t -0.92001098 -0.33277377 -0.19364013 -0.9228797 -0.58021778 -0.40461463 -0.70680863\n\t\t -0.58021778 -0.40461463 -0.70680863 -0.5020293 -0.50367773 -0.70299381 -0.2313302\n\t\t -0.31623292 -0.92001098 -0.10602116 -0.46360677 -0.87963492 -0.2313302 -0.31623292\n\t\t -0.92001098 -0.5020293 -0.50367773 -0.70299381 -0.5020293 -0.50367773 -0.70299381\n\t\t -0.40357658 -0.6262095 -0.66701251 -0.10602116 -0.46360677 -0.87963492 0.040589809\n\t\t -0.62697232 -0.77797776 -0.10602116 -0.46360677 -0.87963492 -0.40357658 -0.6262095\n\t\t -0.66701251 -0.40357658 -0.6262095 -0.66701251 -0.28473747 -0.76271868 -0.58061457\n\t\t 0.040589809 -0.62697232 -0.77797776 -0.10602116 -0.46360677 -0.87963492 0.040589809\n\t\t -0.62697232 -0.77797776 0.35773808 -0.38938561 -0.84875029 0.35773808 -0.38938561\n\t\t -0.84875029 0.2066409 -0.22769861 -0.9515366 -0.10602116 -0.46360677 -0.87963492\n\t\t -0.2313302 -0.31623292 -0.92001098 -0.10602116 -0.46360677 -0.87963492 0.2066409\n\t\t -0.22769861 -0.9515366 0.2066409 -0.22769861 -0.9515366 0.073030815 -0.081606545\n\t\t -0.99395734 -0.2313302 -0.31623292 -0.92001098 -0.33277377 -0.19364013 -0.9228797\n\t\t -0.2313302 -0.31623292 -0.92001098 0.073030815 -0.081606545 -0.99395734 0.073030815\n\t\t -0.081606545 -0.99395734 -0.037476745 0.043732937 -0.99832147 -0.33277377 -0.19364013\n\t\t -0.9228797 -0.037476745 0.043732937 -0.99832147 0.073030815 -0.081606545 -0.99395734\n\t\t 0.36487925 0.16473895 -0.91634876 0.36487925 0.16473895 -0.91634876 0.263161 0.27491078\n\t\t -0.92474133 -0.037476745 0.043732937 -0.99832147 -0.13071083 0.15405732 -0.97936946\n\t\t -0.037476745 0.043732937 -0.99832147 0.263161 0.27491078 -0.92474133 0.263161 0.27491078\n\t\t -0.92474133 0.17450471 0.37766656 -0.90932953 -0.13071083 0.15405732 -0.97936946\n\t\t 0.48356578 0.041627333 -0.87429428 0.36487925 0.16473895 -0.91634876 0.073030815\n\t\t -0.081606545 -0.99395734 0.073030815 -0.081606545 -0.99395734 0.2066409 -0.22769861\n\t\t -0.9515366 0.48356578 0.041627333 -0.87429428 0.6131779 -0.09302029 -0.78441727 0.48356578\n\t\t 0.041627333 -0.87429428 0.2066409 -0.22769861 -0.9515366 0.2066409 -0.22769861 -0.9515366\n\t\t 0.35773808 -0.38938561 -0.84875029 0.6131779 -0.09302029 -0.78441727 0.48356578 0.041627333\n\t\t -0.87429428 0.6131779 -0.09302029 -0.78441727 0.77068388 0.21298887 -0.60051268 0.77068388\n\t\t 0.21298887 -0.60051268 0.68413329 0.30207235 -0.66383862 0.48356578 0.041627333 -0.87429428\n\t\t 0.36487925 0.16473895 -0.91634876 0.48356578 0.041627333 -0.87429428 0.68413329 0.30207235\n\t\t -0.66383862 0.68413329 0.30207235 -0.66383862 0.60164177 0.38679171 -0.69884336 0.36487925\n\t\t 0.16473895 -0.91634876 0.263161 0.27491078 -0.92474133 0.36487925 0.16473895 -0.91634876\n\t\t 0.60164177 0.38679171 -0.69884336 0.60164177 0.38679171 -0.69884336 0.52650523 0.46745211\n\t\t -0.71010476 0.263161 0.27491078 -0.92474133 0.17450471 0.37766656 -0.90932953 0.263161\n\t\t 0.27491078 -0.92474133 0.52650523 0.46745211 -0.71010476 0.52650523 0.46745211 -0.71010476\n\t\t 0.45658726 0.54814303 -0.70073557 0.17450471 0.37766656 -0.90932953 0.48014787 -0.52345341\n\t\t -0.7038483 0.35773808 -0.38938561 -0.84875029 0.040589809 -0.62697232 -0.77797776\n\t\t 0.040589809 -0.62697232 -0.77797776 0.1656547 -0.7551195 -0.63426614 0.48014787 -0.52345341\n\t\t -0.7038483 0.1656547 -0.7551195 -0.63426614 0.040589809 -0.62697232 -0.77797776 -0.28473747\n\t\t -0.76271868 -0.58061457 -0.28473747 -0.76271868 -0.58061457 -0.17725123 -0.86770236\n\t\t -0.4643696 0.1656547 -0.7551195 -0.63426614 -0.17725123 -0.86770236 -0.4643696 -0.28473747\n\t\t -0.76271868 -0.58061457 -0.56056374 -0.77459049 -0.29279453 -0.56056374 -0.77459049\n\t\t -0.29279453 -0.4907679 -0.84252465 -0.22199158 -0.17725123 -0.86770236 -0.4643696\n\t\t -0.4907679 -0.84252465 -0.22199158 -0.56056374 -0.77459049 -0.29279453 -0.74443781\n\t\t -0.66667706 0.036164481 -0.74443781 -0.66667706 0.036164481 -0.72478384 -0.68688035\n\t\t 0.053529516 -0.4907679 -0.84252465 -0.22199158 -0.44911012 -0.87926888 -0.15860464\n\t\t -0.4907679 -0.84252465 -0.22199158 -0.72478384 -0.68688035 0.053529516 -0.72478384\n\t\t -0.68688035 0.053529516 -0.71629971 -0.69463205 0.065981068 -0.44911012 -0.87926888\n\t\t -0.15860464 -0.42881531 -0.89785469 -0.099703901 -0.44911012 -0.87926888 -0.15860464\n\t\t -0.71629971 -0.69463205 0.065981068 -0.71629971 -0.69463205 0.065981068 -0.7212742\n\t\t -0.68956596 0.064790845 -0.42881531 -0.89785469 -0.099703901 -0.42283368 -0.90508753\n\t\t -0.044495918 -0.42881531 -0.89785469 -0.099703901 -0.7212742 -0.68956596 0.064790845\n\t\t -0.7212742 -0.68956596 0.064790845 -0.73149794 -0.68074614 0.038087152 -0.42283368\n\t\t -0.90508753 -0.044495918 -0.42881531 -0.89785469 -0.099703901 -0.42283368 -0.90508753\n\t\t -0.044495918 -0.049409162 -0.99182105 -0.11761826 -0.049409162 -0.99182105 -0.11761826\n\t\t -0.070497461 -0.96670431 -0.24591808 -0.42881531 -0.89785469 -0.099703901 -0.44911012\n\t\t -0.87926888 -0.15860464 -0.42881531 -0.89785469 -0.099703901 -0.070497461 -0.96670431\n\t\t -0.24591808 -0.070497461 -0.96670431 -0.24591808 -0.11136176 -0.9273355 -0.35724962\n\t\t -0.44911012 -0.87926888 -0.15860464 -0.4907679 -0.84252465 -0.22199158 -0.44911012\n\t\t -0.87926888 -0.15860464 -0.11136176 -0.9273355 -0.35724962 -0.11136176 -0.9273355\n\t\t -0.35724962 -0.17725123 -0.86770236 -0.4643696 -0.4907679 -0.84252465 -0.22199158\n\t\t 0.24295811 -0.83123267 -0.49998468 0.1656547 -0.7551195 -0.63426614 -0.17725123 -0.86770236\n\t\t -0.4643696 -0.17725123 -0.86770236 -0.4643696 -0.11136176 -0.9273355 -0.35724962\n\t\t 0.24295811 -0.83123267 -0.49998468 0.29767781 -0.88671517 -0.35367894 0.24295811\n\t\t -0.83123267 -0.49998468 -0.11136176 -0.9273355 -0.35724962 -0.11136176 -0.9273355\n\t\t -0.35724962 -0.070497461 -0.96670431 -0.24591808 0.29767781 -0.88671517 -0.35367894;\n\tsetAttr \".n[36852:37017]\" -type \"float3\"  -0.070497461 -0.96670431 -0.24591808\n\t\t -0.049409162 -0.99182105 -0.11761826 0.33494094 -0.9263587 -0.17212431 0.33494094\n\t\t -0.9263587 -0.17212431 0.29767781 -0.88671517 -0.35367894 -0.070497461 -0.96670431\n\t\t -0.24591808 0.29767781 -0.88671517 -0.35367894 0.33494094 -0.9263587 -0.17212431\n\t\t 0.66792834 -0.71642184 -0.2014221 0.66792834 -0.71642184 -0.2014221 0.61836624 -0.67134607\n\t\t -0.40849018 0.29767781 -0.88671517 -0.35367894 0.24295811 -0.83123267 -0.49998468\n\t\t 0.29767781 -0.88671517 -0.35367894 0.61836624 -0.67134607 -0.40849018 0.61836624\n\t\t -0.67134607 -0.40849018 0.55742073 -0.60740978 -0.56590468 0.24295811 -0.83123267\n\t\t -0.49998468 0.1656547 -0.7551195 -0.63426614 0.24295811 -0.83123267 -0.49998468 0.55742073\n\t\t -0.60740978 -0.56590468 0.55742073 -0.60740978 -0.56590468 0.48014787 -0.52345341\n\t\t -0.7038483 0.1656547 -0.7551195 -0.63426614 0.48014787 -0.52345341 -0.7038483 0.55742073\n\t\t -0.60740978 -0.56590468 0.78527188 -0.2910243 -0.54643393 0.78527188 -0.2910243 -0.54643393\n\t\t 0.71669674 -0.21210346 -0.66432691 0.48014787 -0.52345341 -0.7038483 0.35773808 -0.38938561\n\t\t -0.84875029 0.48014787 -0.52345341 -0.7038483 0.71669674 -0.21210346 -0.66432691\n\t\t 0.71669674 -0.21210346 -0.66432691 0.6131779 -0.09302029 -0.78441727 0.35773808 -0.38938561\n\t\t -0.84875029 0.84463036 -0.35233596 -0.40302742 0.78527188 -0.2910243 -0.54643393\n\t\t 0.55742073 -0.60740978 -0.56590468 0.55742073 -0.60740978 -0.56590468 0.61836624\n\t\t -0.67134607 -0.40849018 0.84463036 -0.35233596 -0.40302742 0.61836624 -0.67134607\n\t\t -0.40849018 0.66792834 -0.71642184 -0.2014221 0.89724427 -0.39292556 -0.2012085 0.89724427\n\t\t -0.39292556 -0.2012085 0.84463036 -0.35233596 -0.40302742 0.61836624 -0.67134607\n\t\t -0.40849018 0.84463036 -0.35233596 -0.40302742 0.89724427 -0.39292556 -0.2012085\n\t\t 0.9853816 -0.0068968912 -0.17014068 0.9853816 -0.0068968912 -0.17014068 0.9416486\n\t\t 0.023499519 -0.33573413 0.84463036 -0.35233596 -0.40302742 0.78527188 -0.2910243\n\t\t -0.54643393 0.84463036 -0.35233596 -0.40302742 0.9416486 0.023499519 -0.33573413\n\t\t 0.9416486 0.023499519 -0.33573413 0.89339882 0.070375927 -0.44367808 0.78527188 -0.2910243\n\t\t -0.54643393 0.71669674 -0.21210346 -0.66432691 0.78527188 -0.2910243 -0.54643393\n\t\t 0.89339882 0.070375927 -0.44367808 0.89339882 0.070375927 -0.44367808 0.84203613\n\t\t 0.12952076 -0.52357554 0.71669674 -0.21210346 -0.66432691 0.6131779 -0.09302029 -0.78441727\n\t\t 0.71669674 -0.21210346 -0.66432691 0.84203613 0.12952076 -0.52357554 0.84203613 0.12952076\n\t\t -0.52357554 0.77068388 0.21298887 -0.60051268 0.6131779 -0.09302029 -0.78441727 0.66792834\n\t\t -0.71642184 -0.2014221 0.33494094 -0.9263587 -0.17212431 0.35425916 -0.93438506 -0.036866289\n\t\t 0.35425916 -0.93438506 -0.036866289 0.33494094 -0.9263587 -0.17212431 -0.049409162\n\t\t -0.99182105 -0.11761826 0.99908447 -0.021759389 -0.036683246 0.9853816 -0.0068968912\n\t\t -0.17014068 0.89724427 -0.39292556 -0.2012085 0.89724427 -0.39292556 -0.2012085 0.91329706\n\t\t -0.40494984 -0.042878475 0.99908447 -0.021759389 -0.036683246 0.91329706 -0.40494984\n\t\t -0.042878475 0.89724427 -0.39292556 -0.2012085 0.66792834 -0.71642184 -0.2014221\n\t\t -0.049409162 -0.99182105 -0.11761826 -0.42283368 -0.90508753 -0.044495918 -0.41206065\n\t\t -0.91106915 -0.0097963735 -0.41206065 -0.91106915 -0.0097963735 -0.42283368 -0.90508753\n\t\t -0.044495918 -0.73149794 -0.68074614 0.038087152 0.027100744 -0.99118012 0.12952062\n\t\t 0.040345773 -0.99386579 0.10266434 -0.26459521 -0.90185255 0.34150219 -0.26459521\n\t\t -0.90185255 0.34150219 -0.3074432 -0.90060133 0.30719939 0.027100744 -0.99118012\n\t\t 0.12952062 -0.4476147 -0.8941009 0.013397692 -0.46079871 -0.88702059 -0.028687334\n\t\t -0.099276409 -0.9896543 -0.10327457 -0.099276409 -0.9896543 -0.10327457 -0.074129157\n\t\t -0.99697864 0.022064958 -0.4476147 -0.8941009 0.013397692 -0.53117442 -0.79552615\n\t\t 0.29145181 -0.48719722 -0.84444731 0.22251052 -0.15326367 -0.89403975 0.42088082\n\t\t -0.15326367 -0.89403975 0.42088082 -0.22782043 -0.81231117 0.53685117 -0.53117442\n\t\t -0.79552615 0.29145181 -0.70183396 -0.59016716 0.39887694 -0.66164112 -0.63881361\n\t\t 0.39252913 -0.44410518 -0.5507676 0.70665616 -0.44410518 -0.5507676 0.70665616 -0.51390105\n\t\t -0.4671469 0.7194739 -0.70183396 -0.59016716 0.39887694 -0.84469116 -0.43052486 0.31797239\n\t\t -0.81289089 -0.46275237 0.35358748 -0.76180297 -0.19348754 0.61821347 -0.76180297\n\t\t -0.19348754 0.61821347 -0.83764148 -0.1130713 0.53434861 -0.84469116 -0.43052486\n\t\t 0.31797239 -0.93847466 -0.0097661875 0.34513381 -0.98333687 0.023041185 0.18027283\n\t\t -0.92745739 -0.35511369 0.11685541 -0.92745739 -0.35511369 0.11685541 -0.89941084\n\t\t -0.37696487 0.22119819 -0.93847466 -0.0097661875 0.34513381 -0.35959989 0.93209618\n\t\t 0.043214139 -0.34632435 0.91854596 0.19046594 0.026550796 0.9909665 0.131199 -0.66844714\n\t\t 0.71031815 0.22046566 -0.34632435 0.91854596 0.19046594 -0.35959989 0.93209618 0.043214139\n\t\t -0.91351068 0.40681148 -3.0273892e-08 -0.91195422 0.40726924 0.048982177 -0.68770432\n\t\t 0.724204 0.050294451 -0.68770432 0.724204 0.050294451 -0.68825364 0.72542471 -5.3984273e-08\n\t\t -0.91351068 0.40681148 -3.0273892e-08 -0.91195422 0.40726924 0.048982177 -0.91351068\n\t\t 0.40681148 -3.0273892e-08 -0.99963379 0.026215091 -1.9508835e-09 -0.99963379 0.026215091\n\t\t -1.9508835e-09 -0.99877924 0.028290354 0.040223394 -0.91195422 0.40726924 0.048982177\n\t\t -0.91195422 0.40726924 0.048982177 -0.99877924 0.028290354 0.040223394 -0.98333687\n\t\t 0.023041185 0.18027283 -0.98333687 0.023041185 0.18027283 -0.99877924 0.028290354\n\t\t 0.040223394 -0.93465978 -0.35459486 0.02572713 -0.93465978 -0.35459486 0.02572713\n\t\t -0.92745739 -0.35511369 0.11685541 -0.98333687 0.023041185 0.18027283 -0.99877924\n\t\t 0.028290354 0.040223394 -0.99963379 0.026215091 -1.9508835e-09 -0.9335916 -0.35831812\n\t\t 2.6665099e-08 -0.9335916 -0.35831812 2.6665099e-08 -0.93465978 -0.35459486 0.02572713\n\t\t -0.99877924 0.028290354 0.040223394 0.36994508 0.92748815 -0.053651612 0.3826713\n\t\t 0.92385644 -6.8751028e-08 -3.0919878e-07 0.99996948 -7.4415176e-08 -3.0919878e-07\n\t\t 0.99996948 -7.4415176e-08;\n\tsetAttr \".n[37018:37183]\" -type \"float3\"  -0.012085639 0.99969482 -0.020203328\n\t\t 0.36994508 0.92748815 -0.053651612 0.33017945 0.92236102 -0.20050669 0.36994508 0.92748815\n\t\t -0.053651612 -0.012085639 0.99969482 -0.020203328 -0.012085639 0.99969482 -0.020203328\n\t\t -0.032533038 0.9967345 -0.073580198 0.33017945 0.92236102 -0.20050669 0.33017945\n\t\t 0.92236102 -0.20050669 -0.032533038 0.9967345 -0.073580198 -0.050783105 0.99078339\n\t\t -0.12537012 -0.050783105 0.99078339 -0.12537012 0.27164498 0.9031648 -0.33234662\n\t\t 0.33017945 0.92236102 -0.20050669 0.33017945 0.92236102 -0.20050669 0.27164498 0.9031648\n\t\t -0.33234662 0.55241537 0.66853857 -0.49784851 0.55241537 0.66853857 -0.49784851 0.64482534\n\t\t 0.69747019 -0.31260115 0.33017945 0.92236102 -0.20050669 0.36994508 0.92748815 -0.053651612\n\t\t 0.33017945 0.92236102 -0.20050669 0.64482534 0.69747019 -0.31260115 0.64482534 0.69747019\n\t\t -0.31260115 0.69753081 0.71169186 -0.083010398 0.36994508 0.92748815 -0.053651612\n\t\t 0.3826713 0.92385644 -6.8751028e-08 0.36994508 0.92748815 -0.053651612 0.69753081\n\t\t 0.71169186 -0.083010398 0.69753081 0.71169186 -0.083010398 0.70708311 0.70708358\n\t\t -5.2619338e-08 0.3826713 0.92385644 -6.8751028e-08 0.70708311 0.70708358 -5.2619338e-08\n\t\t 0.69753081 0.71169186 -0.083010398 0.91875958 0.38254982 -0.097354077 0.91875958\n\t\t 0.38254982 -0.097354077 0.9238562 0.38267189 -2.8477444e-08 0.70708311 0.70708358\n\t\t -5.2619338e-08 0.85695964 0.36344516 -0.36539814 0.91875958 0.38254982 -0.097354077\n\t\t 0.69753081 0.71169186 -0.083010398 0.69753081 0.71169186 -0.083010398 0.64482534\n\t\t 0.69747019 -0.31260115 0.85695964 0.36344516 -0.36539814 0.64482534 0.69747019 -0.31260115\n\t\t 0.55241537 0.66853857 -0.49784851 0.74077564 0.33506292 -0.58217108 0.74077564 0.33506292\n\t\t -0.58217108 0.85695964 0.36344516 -0.36539814 0.64482534 0.69747019 -0.31260115 0.85695964\n\t\t 0.36344516 -0.36539814 0.74077564 0.33506292 -0.58217108 0.81963563 -0.043488663\n\t\t -0.5711844 0.81963563 -0.043488663 -0.5711844 0.93749809 -0.02569632 -0.34699544\n\t\t 0.85695964 0.36344516 -0.36539814 0.91875958 0.38254982 -0.097354077 0.85695964 0.36344516\n\t\t -0.36539814 0.93749809 -0.02569632 -0.34699544 0.93749809 -0.02569632 -0.34699544\n\t\t 0.99588001 -0.0068968819 -0.090334788 0.91875958 0.38254982 -0.097354077 0.9238562\n\t\t 0.38267189 -2.8477444e-08 0.91875958 0.38254982 -0.097354077 0.99588001 -0.0068968819\n\t\t -0.090334788 0.99588001 -0.0068968819 -0.090334788 1 3.0920822e-07 1.2246572e-16\n\t\t 0.9238562 0.38267189 -2.8477444e-08 1 3.0920822e-07 1.2246572e-16 0.99588001 -0.0068968819\n\t\t -0.090334788 0.91738653 -0.39237618 -0.066438764 0.91738653 -0.39237618 -0.066438764\n\t\t 0.92385644 -0.3826713 2.8477444e-08 1 3.0920822e-07 1.2246572e-16 0.87286001 -0.4091309\n\t\t -0.2658467 0.91738653 -0.39237618 -0.066438764 0.99588001 -0.0068968819 -0.090334788\n\t\t 0.99588001 -0.0068968819 -0.090334788 0.93749809 -0.02569632 -0.34699544 0.87286001\n\t\t -0.4091309 -0.2658467 0.93749809 -0.02569632 -0.34699544 0.81963563 -0.043488663\n\t\t -0.5711844 0.77993113 -0.41608915 -0.46748251 0.77993113 -0.41608915 -0.46748251\n\t\t 0.87286001 -0.4091309 -0.2658467 0.93749809 -0.02569632 -0.34699544 0.87286001 -0.4091309\n\t\t -0.2658467 0.77993113 -0.41608915 -0.46748251 0.61830527 -0.72978896 -0.29163483\n\t\t 0.61830527 -0.72978896 -0.29163483 0.66887438 -0.72774422 -0.15155485 0.87286001\n\t\t -0.4091309 -0.2658467 0.91738653 -0.39237618 -0.066438764 0.87286001 -0.4091309 -0.2658467\n\t\t 0.66887438 -0.72774422 -0.15155485 0.66887438 -0.72774422 -0.15155485 0.69823319\n\t\t -0.71489584 -0.036805272 0.91738653 -0.39237618 -0.066438764 0.92385644 -0.3826713\n\t\t 2.8477444e-08 0.91738653 -0.39237618 -0.066438764 0.69823319 -0.71489584 -0.036805272\n\t\t 0.69823319 -0.71489584 -0.036805272 0.70708358 -0.70708311 5.2619338e-08 0.92385644\n\t\t -0.3826713 2.8477444e-08 0.70708358 -0.70708311 5.2619338e-08 0.69823319 -0.71489584\n\t\t -0.036805272 0.3745845 -0.9271217 -0.0088197803 0.3745845 -0.9271217 -0.0088197803\n\t\t 0.38267189 -0.9238562 6.8751028e-08 0.70708358 -0.70708311 5.2619338e-08 0.36042389\n\t\t -0.93215722 -0.03357029 0.3745845 -0.9271217 -0.0088197803 0.69823319 -0.71489584\n\t\t -0.036805272 0.69823319 -0.71489584 -0.036805272 0.66887438 -0.72774422 -0.15155485\n\t\t 0.36042389 -0.93215722 -0.03357029 0.66887438 -0.72774422 -0.15155485 0.61830527\n\t\t -0.72978896 -0.29163483 0.35377085 -0.93185204 -0.080202572 0.35377085 -0.93185204\n\t\t -0.080202572 0.36042389 -0.93215722 -0.03357029 0.66887438 -0.72774422 -0.15155485\n\t\t 0.36042389 -0.93215722 -0.03357029 0.35377085 -0.93185204 -0.080202572 0.027100744\n\t\t -0.99118012 0.12952062 0.027100744 -0.99118012 0.12952062 -0.0054930234 -0.99734491\n\t\t 0.072267905 0.36042389 -0.93215722 -0.03357029 0.3745845 -0.9271217 -0.0088197803\n\t\t 0.36042389 -0.93215722 -0.03357029 -0.0054930234 -0.99734491 0.072267905 -0.0054930234\n\t\t -0.99734491 0.072267905 -0.0057676891 -0.99984741 0.014771033 0.3745845 -0.9271217\n\t\t -0.0088197803 0.38267189 -0.9238562 6.8751028e-08 0.3745845 -0.9271217 -0.0088197803\n\t\t -0.0057676891 -0.99984741 0.014771033 -0.0057676891 -0.99984741 0.014771033 3.0920822e-07\n\t\t -1 7.441745e-08 0.38267189 -0.9238562 6.8751028e-08 -0.38514328 -0.92223895 0.033509389\n\t\t -0.3826713 -0.92385644 6.8751028e-08 3.0920822e-07 -1 7.441745e-08 3.0920822e-07\n\t\t -1 7.441745e-08 -0.0057676891 -0.99984741 0.014771033 -0.38514328 -0.92223895 0.033509389\n\t\t -0.3826713 -0.92385644 6.8751028e-08 -0.38514328 -0.92223895 0.033509389 -0.70744932\n\t\t -0.70519143 0.047059596 -0.6847741 -0.69521189 0.21835998 -0.70744932 -0.70519143\n\t\t 0.047059596 -0.38514328 -0.92223895 0.033509389 -0.38514328 -0.92223895 0.033509389\n\t\t -0.37153205 -0.91494501 0.15756714 -0.6847741 -0.69521189 0.21835998 -0.37153205\n\t\t -0.91494501 0.15756714 -0.38514328 -0.92223895 0.033509389 -0.0057676891 -0.99984741\n\t\t 0.014771033 -0.0057676891 -0.99984741 0.014771033 -0.0054930234 -0.99734491 0.072267905\n\t\t -0.37153205 -0.91494501 0.15756714 -0.59831518 -0.67326897 0.43437001 -0.6847741\n\t\t -0.69521189 0.21835998 -0.37153205 -0.91494501 0.15756714 -0.37153205 -0.91494501\n\t\t 0.15756714 -0.3074432 -0.90060133 0.30719939;\n\tsetAttr \".n[37184:37349]\" -type \"float3\"  -0.59831518 -0.67326897 0.43437001 -0.70744932\n\t\t -0.70519143 0.047059596 -0.70708311 -0.70708358 5.2619338e-08 -0.3826713 -0.92385644\n\t\t 6.8751028e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.70744932 -0.70519143 0.047059596\n\t\t -0.92278802 -0.38132906 0.054628164 -0.92278802 -0.38132906 0.054628164 -0.9238562\n\t\t -0.38267189 2.8477444e-08 -0.70708311 -0.70708358 5.2619338e-08 -0.89440584 -0.37076962\n\t\t 0.25000766 -0.92278802 -0.38132906 0.054628164 -0.70744932 -0.70519143 0.047059596\n\t\t -0.70744932 -0.70519143 0.047059596 -0.6847741 -0.69521189 0.21835998 -0.89440584\n\t\t -0.37076962 0.25000766 -0.6847741 -0.69521189 0.21835998 -0.59831518 -0.67326897\n\t\t 0.43437001 -0.79622781 -0.34412691 0.49754328 -0.79622781 -0.34412691 0.49754328\n\t\t -0.89440584 -0.37076962 0.25000766 -0.6847741 -0.69521189 0.21835998 -0.89440584\n\t\t -0.37076962 0.25000766 -0.79622781 -0.34412691 0.49754328 -0.87066257 0.035187609\n\t\t 0.49061555 -0.87066257 0.035187609 0.49061555 -0.96844387 0.0090331975 0.24897 -0.89440584\n\t\t -0.37076962 0.25000766 -0.92278802 -0.38132906 0.054628164 -0.89440584 -0.37076962\n\t\t 0.25000766 -0.96844387 0.0090331975 0.24897 -0.96844387 0.0090331975 0.24897 -0.99844354\n\t\t 0.00024384346 0.055269022 -0.92278802 -0.38132906 0.054628164 -0.9238562 -0.38267189\n\t\t 2.8477444e-08 -0.92278802 -0.38132906 0.054628164 -0.99844354 0.00024384346 0.055269022\n\t\t -0.99844354 0.00024384346 0.055269022 -1 -3.0920822e-07 -1.2246572e-16 -0.9238562\n\t\t -0.38267189 2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16 -0.99844354 0.00024384346\n\t\t 0.055269022 -0.92318505 0.38129795 0.048188698 -0.92318505 0.38129795 0.048188698\n\t\t -0.92385644 0.3826713 -2.8477444e-08 -1 -3.0920822e-07 -1.2246572e-16 -0.89739686\n\t\t 0.38569269 0.21423991 -0.92318505 0.38129795 0.048188698 -0.99844354 0.00024384346\n\t\t 0.055269022 -0.99844354 0.00024384346 0.055269022 -0.96844387 0.0090331975 0.24897\n\t\t -0.89739686 0.38569269 0.21423991 -0.96844387 0.0090331975 0.24897 -0.87066257 0.035187609\n\t\t 0.49061555 -0.8139593 0.40623167 0.4152348 -0.8139593 0.40623167 0.4152348 -0.89739686\n\t\t 0.38569269 0.21423991 -0.96844387 0.0090331975 0.24897 -0.89739686 0.38569269 0.21423991\n\t\t -0.8139593 0.40623167 0.4152348 -0.64003444 0.7159946 0.27866444 -0.64003444 0.7159946\n\t\t 0.27866444 -0.69600534 0.7029326 0.14630568 -0.89739686 0.38569269 0.21423991 -0.92318505\n\t\t 0.38129795 0.048188698 -0.89739686 0.38569269 0.21423991 -0.69600534 0.7029326 0.14630568\n\t\t -0.69600534 0.7029326 0.14630568 -0.70958608 0.70381761 0.032959938 -0.92318505 0.38129795\n\t\t 0.048188698 -0.92385644 0.3826713 -2.8477444e-08 -0.92318505 0.38129795 0.048188698\n\t\t -0.70958608 0.70381761 0.032959938 -0.70958608 0.70381761 0.032959938 -0.70708358\n\t\t 0.70708311 -5.2619338e-08 -0.92385644 0.3826713 -2.8477444e-08 -0.70708358 0.70708311\n\t\t -5.2619338e-08 -0.70958608 0.70381761 0.032959938 -0.38984373 0.92080432 0.0097658541\n\t\t -0.38984373 0.92080432 0.0097658541 -0.38267189 0.9238562 -6.8751028e-08 -0.70708358\n\t\t 0.70708311 -5.2619338e-08 -0.3937501 0.91796613 0.047425695 -0.38984373 0.92080432\n\t\t 0.0097658541 -0.70958608 0.70381761 0.032959938 -0.70958608 0.70381761 0.032959938\n\t\t -0.69600534 0.7029326 0.14630568 -0.3937501 0.91796613 0.047425695 -0.69600534 0.7029326\n\t\t 0.14630568 -0.64003444 0.7159946 0.27866444 -0.37391308 0.92281854 0.092440501 -0.37391308\n\t\t 0.92281854 0.092440501 -0.3937501 0.91796613 0.047425695 -0.69600534 0.7029326 0.14630568\n\t\t -0.3937501 0.91796613 0.047425695 -0.37391308 0.92281854 0.092440501 -0.050783105\n\t\t 0.99078339 -0.12537012 -0.050783105 0.99078339 -0.12537012 -0.032533038 0.9967345\n\t\t -0.073580198 -0.3937501 0.91796613 0.047425695 -0.38984373 0.92080432 0.0097658541\n\t\t -0.3937501 0.91796613 0.047425695 -0.032533038 0.9967345 -0.073580198 -0.032533038\n\t\t 0.9967345 -0.073580198 -0.012085639 0.99969482 -0.020203328 -0.38984373 0.92080432\n\t\t 0.0097658541 -0.38267189 0.9238562 -6.8751028e-08 -0.38984373 0.92080432 0.0097658541\n\t\t -0.012085639 0.99969482 -0.020203328 -0.012085639 0.99969482 -0.020203328 -3.0919878e-07\n\t\t 0.99996948 -7.4415176e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.0054930234 -0.99734491\n\t\t 0.072267905 0.027100744 -0.99118012 0.12952062 -0.3074432 -0.90060133 0.30719939\n\t\t -0.3074432 -0.90060133 0.30719939 -0.37153205 -0.91494501 0.15756714 -0.0054930234\n\t\t -0.99734491 0.072267905 0.38633353 0.9223305 -0.0053408076 0.022034056 0.99688709\n\t\t 0.075624794 0.076692708 0.98174995 0.17386387 0.076692708 0.98174995 0.17386387 0.41868317\n\t\t 0.90694916 0.045960806 0.38633353 0.9223305 -0.0053408076 0.457991 0.8818019 0.11243013\n\t\t 0.41868317 0.90694916 0.045960806 0.076692708 0.98174995 0.17386387 0.076692708 0.98174995\n\t\t 0.17386387 0.1347084 0.95388657 0.26819661 0.457991 0.8818019 0.11243013 0.49851957\n\t\t 0.85219902 0.15869619 0.457991 0.8818019 0.11243013 0.1347084 0.95388657 0.26819661\n\t\t 0.1347084 0.95388657 0.26819661 0.18460618 0.92452776 0.33335361 0.49851957 0.85219902\n\t\t 0.15869619 0.457991 0.8818019 0.11243013 0.49851957 0.85219902 0.15869619 0.75881201\n\t\t 0.64964777 -0.045564182 0.75881201 0.64964777 -0.045564182 0.73290175 0.67732805\n\t\t -0.063570105 0.457991 0.8818019 0.11243013 0.41868317 0.90694916 0.045960806 0.457991\n\t\t 0.8818019 0.11243013 0.73290175 0.67732805 -0.063570105 0.73290175 0.67732805 -0.063570105\n\t\t 0.70885319 0.69945395 -0.090762101 0.41868317 0.90694916 0.045960806 0.38633353 0.9223305\n\t\t -0.0053408076 0.41868317 0.90694916 0.045960806 0.70885319 0.69945395 -0.090762101\n\t\t 0.70885319 0.69945395 -0.090762101 0.69542503 0.71312624 -0.088259585 0.38633353\n\t\t 0.9223305 -0.0053408076 0.69542503 0.71312624 -0.088259585 0.70885319 0.69945395\n\t\t -0.090762101 0.9019134 0.36997613 -0.22278515 0.9019134 0.36997613 -0.22278515 0.90856642\n\t\t 0.38374001 -0.16498309 0.69542503 0.71312624 -0.088259585 0.9035309 0.35108519 -0.24558248\n\t\t 0.9019134 0.36997613 -0.22278515 0.70885319 0.69945395 -0.090762101 0.70885319 0.69945395\n\t\t -0.090762101 0.73290175 0.67732805 -0.063570105 0.9035309 0.35108519 -0.24558248;\n\tsetAttr \".n[37350:37515]\" -type \"float3\"  0.90731519 0.3285625 -0.26227611 0.9035309\n\t\t 0.35108519 -0.24558248 0.73290175 0.67732805 -0.063570105 0.73290175 0.67732805 -0.063570105\n\t\t 0.75881201 0.64964777 -0.045564182 0.90731519 0.3285625 -0.26227611 0.9035309 0.35108519\n\t\t -0.24558248 0.90731519 0.3285625 -0.26227611 0.88866848 -0.056336928 -0.45500046\n\t\t 0.88866848 -0.056336928 -0.45500046 0.91372418 -0.043610696 -0.40397352 0.9035309\n\t\t 0.35108519 -0.24558248 0.9019134 0.36997613 -0.22278515 0.9035309 0.35108519 -0.24558248\n\t\t 0.91372418 -0.043610696 -0.40397352 0.91372418 -0.043610696 -0.40397352 0.94360179\n\t\t -0.028229352 -0.32978302 0.9019134 0.36997613 -0.22278515 0.90856642 0.38374001 -0.16498309\n\t\t 0.9019134 0.36997613 -0.22278515 0.94360179 -0.028229352 -0.32978302 0.94360179 -0.028229352\n\t\t -0.32978302 0.97625661 -0.012390229 -0.21619312 0.90856642 0.38374001 -0.16498309\n\t\t 0.97625661 -0.012390229 -0.21619312 0.94360179 -0.028229352 -0.32978302 0.82219929\n\t\t -0.41529563 -0.38920254 0.82219929 -0.41529563 -0.38920254 0.88512844 -0.40305772\n\t\t -0.23242894 0.97625661 -0.012390229 -0.21619312 0.75667602 -0.41859168 -0.50215149\n\t\t 0.82219929 -0.41529563 -0.38920254 0.94360179 -0.028229352 -0.32978302 0.94360179\n\t\t -0.028229352 -0.32978302 0.91372418 -0.043610696 -0.40397352 0.75667602 -0.41859168\n\t\t -0.50215149 0.70256674 -0.41486844 -0.57814258 0.75667602 -0.41859168 -0.50215149\n\t\t 0.91372418 -0.043610696 -0.40397352 0.91372418 -0.043610696 -0.40397352 0.88866848\n\t\t -0.056336928 -0.45500046 0.70256674 -0.41486844 -0.57814258 0.75667602 -0.41859168\n\t\t -0.50215149 0.70256674 -0.41486844 -0.57814258 0.41566232 -0.67619854 -0.60820329\n\t\t 0.41566232 -0.67619854 -0.60820329 0.48747236 -0.70113212 -0.5203405 0.75667602 -0.41859168\n\t\t -0.50215149 0.82219929 -0.41529563 -0.38920254 0.75667602 -0.41859168 -0.50215149\n\t\t 0.48747236 -0.70113212 -0.5203405 0.48747236 -0.70113212 -0.5203405 0.57496893 -0.72029769\n\t\t -0.38795123 0.82219929 -0.41529563 -0.38920254 0.88512844 -0.40305772 -0.23242894\n\t\t 0.82219929 -0.41529563 -0.38920254 0.57496893 -0.72029769 -0.38795123 0.57496893\n\t\t -0.72029769 -0.38795123 0.65776569 -0.72243398 -0.21298862 0.88512844 -0.40305772\n\t\t -0.23242894 0.65776569 -0.72243398 -0.21298862 0.57496893 -0.72029769 -0.38795123\n\t\t 0.25977382 -0.90853596 -0.3272194 0.25977382 -0.90853596 -0.3272194 0.33945769 -0.92614508\n\t\t -0.1641895 0.65776569 -0.72243398 -0.21298862 0.17471874 -0.86993009 -0.46110409\n\t\t 0.25977382 -0.90853596 -0.3272194 0.57496893 -0.72029769 -0.38795123 0.57496893 -0.72029769\n\t\t -0.38795123 0.48747236 -0.70113212 -0.5203405 0.17471874 -0.86993009 -0.46110409\n\t\t 0.1013217 -0.82842493 -0.55082852 0.17471874 -0.86993009 -0.46110409 0.48747236 -0.70113212\n\t\t -0.5203405 0.48747236 -0.70113212 -0.5203405 0.41566232 -0.67619854 -0.60820329 0.1013217\n\t\t -0.82842493 -0.55082852 0.17471874 -0.86993009 -0.46110409 0.1013217 -0.82842493\n\t\t -0.55082852 -0.20789182 -0.8845486 -0.41749316 -0.20789182 -0.8845486 -0.41749316\n\t\t -0.14532886 -0.93115032 -0.33436072 0.17471874 -0.86993009 -0.46110409 0.25977382\n\t\t -0.90853596 -0.3272194 0.17471874 -0.86993009 -0.46110409 -0.14532886 -0.93115032\n\t\t -0.33436072 -0.14532886 -0.93115032 -0.33436072 -0.081301011 -0.97296059 -0.21607096\n\t\t 0.25977382 -0.90853596 -0.3272194 0.33945769 -0.92614508 -0.1641895 0.25977382 -0.90853596\n\t\t -0.3272194 -0.081301011 -0.97296059 -0.21607096 -0.081301011 -0.97296059 -0.21607096\n\t\t -0.024567092 -0.99520862 -0.094607309 0.33945769 -0.92614508 -0.1641895 0.91763067\n\t\t -0.3872796 -0.089022465 0.88512844 -0.40305772 -0.23242894 0.65776569 -0.72243398\n\t\t -0.21298862 0.88512844 -0.40305772 -0.23242894 0.91763067 -0.3872796 -0.089022465\n\t\t 0.99536121 -0.0014035507 -0.095950194 0.99899286 -0.002197027 -0.044526506 0.99536121\n\t\t -0.0014035507 -0.095950194 0.91763067 -0.3872796 -0.089022465 0.99536121 -0.0014035507\n\t\t -0.095950194 0.99899286 -0.002197027 -0.044526506 0.92220819 0.38395366 -0.045564163\n\t\t 0.92220819 0.38395366 -0.045564163 0.91848493 0.38639516 -0.083834372 0.99536121\n\t\t -0.0014035507 -0.095950194 0.91848493 0.38639516 -0.083834372 0.92220819 0.38395366\n\t\t -0.045564163 0.70226121 0.71120358 -0.031128932 0.70226121 0.71120358 -0.031128932\n\t\t 0.69920933 0.71300417 -0.051789962 0.91848493 0.38639516 -0.083834372 0.69920933\n\t\t 0.71300417 -0.051789962 0.70226121 0.71120358 -0.031128932 0.37787989 0.92574859\n\t\t -0.012573695 0.37787989 0.92574859 -0.012573695 0.37916166 0.92519927 -0.01431325\n\t\t 0.69920933 0.71300417 -0.051789962 0.0014035422 0.99978638 0.019287623 0.37916166\n\t\t 0.92519927 -0.01431325 0.37787989 0.92574859 -0.012573695 0.37787989 0.92574859 -0.012573695\n\t\t -0.0051274188 0.99996948 0.0028076284 0.0014035422 0.99978638 0.019287623 0.37916166\n\t\t 0.92519927 -0.01431325 0.0014035422 0.99978638 0.019287623 0.022034056 0.99688709\n\t\t 0.075624794 0.022034056 0.99688709 0.075624794 0.38633353 0.9223305 -0.0053408076\n\t\t 0.37916166 0.92519927 -0.01431325 0.69542503 0.71312624 -0.088259585 0.69920933 0.71300417\n\t\t -0.051789962 0.37916166 0.92519927 -0.01431325 0.37916166 0.92519927 -0.01431325\n\t\t 0.38633353 0.9223305 -0.0053408076 0.69542503 0.71312624 -0.088259585 0.69920933\n\t\t 0.71300417 -0.051789962 0.69542503 0.71312624 -0.088259585 0.90856642 0.38374001\n\t\t -0.16498309 0.90856642 0.38374001 -0.16498309 0.91848493 0.38639516 -0.083834372\n\t\t 0.69920933 0.71300417 -0.051789962 0.97625661 -0.012390229 -0.21619312 0.99536121\n\t\t -0.0014035507 -0.095950194 0.91848493 0.38639516 -0.083834372 0.91848493 0.38639516\n\t\t -0.083834372 0.90856642 0.38374001 -0.16498309 0.97625661 -0.012390229 -0.21619312\n\t\t 0.91763067 -0.3872796 -0.089022465 0.92172015 -0.38636404 -0.033509292 0.99899286\n\t\t -0.002197027 -0.044526506 0.99536121 -0.0014035507 -0.095950194 0.97625661 -0.012390229\n\t\t -0.21619312 0.88512844 -0.40305772 -0.23242894 0.022034056 0.99688709 0.075624794\n\t\t 0.0014035422 0.99978638 0.019287623 -0.37205145 0.92718273 0.043183621 -0.37205145\n\t\t 0.92718273 0.043183621 -0.33527663 0.93127221 0.14246033 0.022034056 0.99688709 0.075624794\n\t\t 0.076692708 0.98174995 0.17386387;\n\tsetAttr \".n[37516:37681]\" -type \"float3\"  0.022034056 0.99688709 0.075624794 -0.33527663\n\t\t 0.93127221 0.14246033 -0.33527663 0.93127221 0.14246033 -0.26358867 0.92318487 0.27967155\n\t\t 0.076692708 0.98174995 0.17386387 -0.26358867 0.92318487 0.27967155 -0.33527663 0.93127221\n\t\t 0.14246033 -0.65334046 0.73293233 0.18945885 -0.65334046 0.73293233 0.18945885 -0.57274109\n\t\t 0.73781532 0.35712755 -0.26358867 0.92318487 0.27967155 -0.57274109 0.73781532 0.35712755\n\t\t -0.65334046 0.73293233 0.18945885 -0.88314474 0.41929355 0.21027251 -0.88314474 0.41929355\n\t\t 0.21027251 -0.81102949 0.43656707 0.38935512 -0.57274109 0.73781532 0.35712755 -0.81102949\n\t\t 0.43656707 0.38935512 -0.88314474 0.41929355 0.21027251 -0.97979677 0.029755259 0.19766839\n\t\t -0.97979677 0.029755259 0.19766839 -0.93203527 0.050172169 0.35883662 -0.81102949\n\t\t 0.43656707 0.38935512 -0.93203527 0.050172169 0.35883662 -0.97979677 0.029755259\n\t\t 0.19766839 -0.91665381 -0.37058654 0.14960176 -0.91665381 -0.37058654 0.14960176\n\t\t -0.89788496 -0.3567616 0.25785092 -0.93203527 0.050172169 0.35883662 -0.89788496\n\t\t -0.3567616 0.25785092 -0.91665381 -0.37058654 0.14960176 -0.70488578 -0.70534402\n\t\t 0.074770398 -0.70488578 -0.70534402 0.074770398 -0.71080637 -0.69560862 0.10400713\n\t\t -0.89788496 -0.3567616 0.25785092 -0.71080637 -0.69560862 0.10400713 -0.70488578\n\t\t -0.70534402 0.074770398 -0.38865292 -0.9212929 -0.011627483 -0.38865292 -0.9212929\n\t\t -0.011627483 -0.41834745 -0.90588105 -0.065889396 -0.71080637 -0.69560862 0.10400713\n\t\t -0.41834745 -0.90588105 -0.065889396 -0.38865292 -0.9212929 -0.011627483 -0.024567092\n\t\t -0.99520862 -0.094607309 -0.024567092 -0.99520862 -0.094607309 -0.081301011 -0.97296059\n\t\t -0.21607096 -0.41834745 -0.90588105 -0.065889396 -0.72676754 -0.6822415 0.079409212\n\t\t -0.71080637 -0.69560862 0.10400713 -0.41834745 -0.90588105 -0.065889396 -0.41834745\n\t\t -0.90588105 -0.065889396 -0.45725855 -0.87691897 -0.1478316 -0.72676754 -0.6822415\n\t\t 0.079409212 -0.45725855 -0.87691897 -0.1478316 -0.41834745 -0.90588105 -0.065889396\n\t\t -0.081301011 -0.97296059 -0.21607096 -0.081301011 -0.97296059 -0.21607096 -0.14532886\n\t\t -0.93115032 -0.33436072 -0.45725855 -0.87691897 -0.1478316 -0.50340259 -0.83742809\n\t\t -0.21268344 -0.45725855 -0.87691897 -0.1478316 -0.14532886 -0.93115032 -0.33436072\n\t\t -0.14532886 -0.93115032 -0.33436072 -0.20789182 -0.8845486 -0.41749316 -0.50340259\n\t\t -0.83742809 -0.21268344 -0.45725855 -0.87691897 -0.1478316 -0.50340259 -0.83742809\n\t\t -0.21268344 -0.75359339 -0.65556836 0.047578406 -0.75359339 -0.65556836 0.047578406\n\t\t -0.72676754 -0.6822415 0.079409212 -0.45725855 -0.87691897 -0.1478316 -0.88821059\n\t\t -0.34986442 0.29770809 -0.89788496 -0.3567616 0.25785092 -0.71080637 -0.69560862\n\t\t 0.10400713 -0.71080637 -0.69560862 0.10400713 -0.72676754 -0.6822415 0.079409212\n\t\t -0.88821059 -0.34986442 0.29770809 -0.8908962 -0.33506295 0.30658898 -0.88821059\n\t\t -0.34986442 0.29770809 -0.72676754 -0.6822415 0.079409212 -0.72676754 -0.6822415\n\t\t 0.079409212 -0.75359339 -0.65556836 0.047578406 -0.8908962 -0.33506295 0.30658898\n\t\t -0.88821059 -0.34986442 0.29770809 -0.8908962 -0.33506295 0.30658898 -0.86819053\n\t\t 0.058320642 0.49275187 -0.86819053 0.058320642 0.49275187 -0.89190346 0.05459737\n\t\t 0.44886625 -0.88821059 -0.34986442 0.29770809 -0.89788496 -0.3567616 0.25785092 -0.88821059\n\t\t -0.34986442 0.29770809 -0.89190346 0.05459737 0.44886625 -0.89190346 0.05459737 0.44886625\n\t\t -0.93203527 0.050172169 0.35883662 -0.89788496 -0.3567616 0.25785092 -0.93203527\n\t\t 0.050172169 0.35883662 -0.89190346 0.05459737 0.44886625 -0.74608612 0.43336263 0.50544751\n\t\t -0.74608612 0.43336263 0.50544751 -0.81102949 0.43656707 0.38935512 -0.93203527 0.050172169\n\t\t 0.35883662 -0.70223105 0.42515317 0.57103175 -0.74608612 0.43336263 0.50544751 -0.89190346\n\t\t 0.05459737 0.44886625 -0.89190346 0.05459737 0.44886625 -0.86819053 0.058320642 0.49275187\n\t\t -0.70223105 0.42515317 0.57103175 -0.74608612 0.43336263 0.50544751 -0.70223105 0.42515317\n\t\t 0.57103175 -0.44499061 0.70342106 0.55421609 -0.44499061 0.70342106 0.55421609 -0.49836746\n\t\t 0.72249508 0.47917107 -0.74608612 0.43336263 0.50544751 -0.81102949 0.43656707 0.38935512\n\t\t -0.74608612 0.43336263 0.50544751 -0.49836746 0.72249508 0.47917107 -0.49836746 0.72249508\n\t\t 0.47917107 -0.57274109 0.73781532 0.35712755 -0.81102949 0.43656707 0.38935512 -0.57274109\n\t\t 0.73781532 0.35712755 -0.49836746 0.72249508 0.47917107 -0.19397593 0.89837331 0.39405495\n\t\t -0.19397593 0.89837331 0.39405495 -0.26358867 0.92318487 0.27967155 -0.57274109 0.73781532\n\t\t 0.35712755 -0.1395309 0.87224954 0.46870321 -0.19397593 0.89837331 0.39405495 -0.49836746\n\t\t 0.72249508 0.47917107 -0.49836746 0.72249508 0.47917107 -0.44499061 0.70342106 0.55421609\n\t\t -0.1395309 0.87224954 0.46870321 -0.19397593 0.89837331 0.39405495 -0.1395309 0.87224954\n\t\t 0.46870321 0.18460618 0.92452776 0.33335361 0.18460618 0.92452776 0.33335361 0.1347084\n\t\t 0.95388657 0.26819661 -0.19397593 0.89837331 0.39405495 -0.26358867 0.92318487 0.27967155\n\t\t -0.19397593 0.89837331 0.39405495 0.1347084 0.95388657 0.26819661 0.1347084 0.95388657\n\t\t 0.26819661 0.076692708 0.98174995 0.17386387 -0.26358867 0.92318487 0.27967155 -0.6565448\n\t\t 0.40980241 0.63322848 -0.70223105 0.42515317 0.57103175 -0.86819053 0.058320642 0.49275187\n\t\t -0.86819053 0.058320642 0.49275187 -0.83889282 0.059938133 0.54094058 -0.6565448\n\t\t 0.40980241 0.63322848 -0.83889282 0.059938133 0.54094058 -0.86819053 0.058320642\n\t\t 0.49275187 -0.8908962 -0.33506295 0.30658898 -0.8908962 -0.33506295 0.30658898 -0.88879043\n\t\t -0.31516489 0.33268231 -0.83889282 0.059938133 0.54094058 -0.88879043 -0.31516489\n\t\t 0.33268231 -0.8908962 -0.33506295 0.30658898 -0.75359339 -0.65556836 0.047578406\n\t\t -0.75359339 -0.65556836 0.047578406 -0.78170091 -0.62202847 0.044648625 -0.88879043\n\t\t -0.31516489 0.33268231 -0.78170091 -0.62202847 0.044648625 -0.75359339 -0.65556836\n\t\t 0.047578406 -0.50340259 -0.83742809 -0.21268344 -0.50340259 -0.83742809 -0.21268344\n\t\t -0.55427694 -0.79519045 -0.24576549;\n\tsetAttr \".n[37682:37847]\" -type \"float3\"  -0.78170091 -0.62202847 0.044648625 -0.79638034\n\t\t -0.59990257 0.076418392 -0.78170091 -0.62202847 0.044648625 -0.55427694 -0.79519045\n\t\t -0.24576549 -0.55427694 -0.79519045 -0.24576549 -0.59459186 -0.76561803 -0.24546032\n\t\t -0.79638034 -0.59990257 0.076418392 -0.79525113 -0.59459233 0.11816771 -0.79638034\n\t\t -0.59990257 0.076418392 -0.59459186 -0.76561803 -0.24546032 -0.59459186 -0.76561803\n\t\t -0.24546032 -0.61912876 -0.75124383 -0.22858357 -0.79525113 -0.59459233 0.11816771\n\t\t -0.780999 -0.60692185 0.1470077 -0.79525113 -0.59459233 0.11816771 -0.61912876 -0.75124383\n\t\t -0.22858357 -0.61912876 -0.75124383 -0.22858357 -0.62550712 -0.749901 -0.21530803\n\t\t -0.780999 -0.60692185 0.1470077 -0.76186389 -0.63307619 0.13684504 -0.780999 -0.60692185\n\t\t 0.1470077 -0.62550712 -0.749901 -0.21530803 -0.62550712 -0.749901 -0.21530803 -0.6101563\n\t\t -0.7601552 -0.22327335 -0.76186389 -0.63307619 0.13684504 -0.74483454 -0.65852863\n\t\t 0.10718106 -0.76186389 -0.63307619 0.13684504 -0.6101563 -0.7601552 -0.22327335 -0.6101563\n\t\t -0.7601552 -0.22327335 -0.57856965 -0.78115195 -0.23447365 -0.74483454 -0.65852863\n\t\t 0.10718106 -0.72579098 -0.6831876 0.080355287 -0.74483454 -0.65852863 0.10718106\n\t\t -0.57856965 -0.78115195 -0.23447365 -0.57856965 -0.78115195 -0.23447365 -0.52781737\n\t\t -0.81725532 -0.23126921 -0.72579098 -0.6831876 0.080355287 -0.70262742 -0.70754135\n\t\t 0.075289212 -0.72579098 -0.6831876 0.080355287 -0.52781737 -0.81725532 -0.23126921\n\t\t -0.52781737 -0.81725532 -0.23126921 -0.45066655 -0.87517941 -0.17572552 -0.70262742\n\t\t -0.70754135 0.075289212 -0.780999 -0.60692185 0.1470077 -0.76186389 -0.63307619 0.13684504\n\t\t -0.78899491 -0.39732069 0.46861175 -0.78899491 -0.39732069 0.46861175 -0.80629891\n\t\t -0.35218382 0.47517323 -0.780999 -0.60692185 0.1470077 -0.79525113 -0.59459233 0.11816771\n\t\t -0.780999 -0.60692185 0.1470077 -0.80629891 -0.35218382 0.47517323 -0.79137534 -0.43058586\n\t\t 0.43388167 -0.78899491 -0.39732069 0.46861175 -0.76186389 -0.63307619 0.13684504\n\t\t -0.76186389 -0.63307619 0.13684504 -0.74483454 -0.65852863 0.10718106 -0.79137534\n\t\t -0.43058586 0.43388167 -0.80477297 -0.44529578 0.39240703 -0.79137534 -0.43058586\n\t\t 0.43388167 -0.74483454 -0.65852863 0.10718106 -0.74483454 -0.65852863 0.10718106\n\t\t -0.72579098 -0.6831876 0.080355287 -0.80477297 -0.44529578 0.39240703 -0.83483368\n\t\t -0.43214232 0.34098333 -0.80477297 -0.44529578 0.39240703 -0.72579098 -0.6831876\n\t\t 0.080355287 -0.72579098 -0.6831876 0.080355287 -0.70262742 -0.70754135 0.075289212\n\t\t -0.83483368 -0.43214232 0.34098333 -0.80477297 -0.44529578 0.39240703 -0.83483368\n\t\t -0.43214232 0.34098333 -0.82082576 -0.10080285 0.56218147 -0.82082576 -0.10080285\n\t\t 0.56218147 -0.75045007 -0.14474948 0.6448561 -0.80477297 -0.44529578 0.39240703 -0.79137534\n\t\t -0.43058586 0.43388167 -0.80477297 -0.44529578 0.39240703 -0.75045007 -0.14474948\n\t\t 0.6448561 -0.75045007 -0.14474948 0.6448561 -0.71239352 -0.13965288 0.68770409 -0.79137534\n\t\t -0.43058586 0.43388167 -0.78899491 -0.39732069 0.46861175 -0.79137534 -0.43058586\n\t\t 0.43388167 -0.71239352 -0.13965288 0.68770409 -0.71239352 -0.13965288 0.68770409\n\t\t -0.69331944 -0.1031222 0.71318704 -0.78899491 -0.39732069 0.46861175 -0.80629891\n\t\t -0.35218382 0.47517323 -0.78899491 -0.39732069 0.46861175 -0.69331944 -0.1031222\n\t\t 0.71318704 -0.69331944 -0.1031222 0.71318704 -0.70552689 -0.044190969 0.70726645\n\t\t -0.80629891 -0.35218382 0.47517323 -0.70552689 -0.044190969 0.70726645 -0.69331944\n\t\t -0.1031222 0.71318704 -0.49867252 0.19769882 0.84392834 -0.49867252 0.19769882 0.84392834\n\t\t -0.50816375 0.25882739 0.82143623 -0.70552689 -0.044190969 0.70726645 -0.52598655\n\t\t 0.16675304 0.83397931 -0.49867252 0.19769882 0.84392834 -0.69331944 -0.1031222 0.71318704\n\t\t -0.69331944 -0.1031222 0.71318704 -0.71239352 -0.13965288 0.68770409 -0.52598655\n\t\t 0.16675304 0.83397931 -0.57933295 0.1721548 0.79665518 -0.52598655 0.16675304 0.83397931\n\t\t -0.71239352 -0.13965288 0.68770409 -0.71239352 -0.13965288 0.68770409 -0.75045007\n\t\t -0.14474948 0.6448561 -0.57933295 0.1721548 0.79665518 -0.6784265 0.23743384 0.69521165\n\t\t -0.57933295 0.1721548 0.79665518 -0.75045007 -0.14474948 0.6448561 -0.75045007 -0.14474948\n\t\t 0.6448561 -0.82082576 -0.10080285 0.56218147 -0.6784265 0.23743384 0.69521165 -0.57933295\n\t\t 0.1721548 0.79665518 -0.6784265 0.23743384 0.69521165 -0.44856122 0.5336771 0.71687973\n\t\t -0.44856122 0.5336771 0.71687973 -0.33045456 0.45554975 0.82656324 -0.57933295 0.1721548\n\t\t 0.79665518 -0.52598655 0.16675304 0.83397931 -0.57933295 0.1721548 0.79665518 -0.33045456\n\t\t 0.45554975 0.82656324 -0.33045456 0.45554975 0.82656324 -0.26770851 0.44041258 0.85692918\n\t\t -0.52598655 0.16675304 0.83397931 -0.49867252 0.19769882 0.84392834 -0.52598655 0.16675304\n\t\t 0.83397931 -0.26770851 0.44041258 0.85692918 -0.26770851 0.44041258 0.85692918 -0.23828867\n\t\t 0.46113467 0.85470134 -0.49867252 0.19769882 0.84392834 -0.50816375 0.25882739 0.82143623\n\t\t -0.49867252 0.19769882 0.84392834 -0.23828867 0.46113467 0.85470134 -0.23828867 0.46113467\n\t\t 0.85470134 -0.2472306 0.51551867 0.82039851 -0.50816375 0.25882739 0.82143623 -0.2472306\n\t\t 0.51551867 0.82039851 -0.23828867 0.46113467 0.85470134 0.056642149 0.65886414 0.75008386\n\t\t 0.056642149 0.65886414 0.75008386 0.049836509 0.69975895 0.71260715 -0.2472306 0.51551867\n\t\t 0.82039851 0.026123643 0.64992225 0.75951409 0.056642149 0.65886414 0.75008386 -0.23828867\n\t\t 0.46113467 0.85470134 -0.23828867 0.46113467 0.85470134 -0.26770851 0.44041258 0.85692918\n\t\t 0.026123643 0.64992225 0.75951409 -0.041413825 0.67458117 0.73702192 0.026123643\n\t\t 0.64992225 0.75951409 -0.26770851 0.44041258 0.85692918 -0.26770851 0.44041258 0.85692918\n\t\t -0.33045456 0.45554975 0.82656324 -0.041413825 0.67458117 0.73702192 -0.16443397\n\t\t 0.75981933 0.6289559 -0.041413825 0.67458117 0.73702192 -0.33045456 0.45554975 0.82656324\n\t\t -0.33045456 0.45554975 0.82656324 -0.44856122 0.5336771 0.71687973 -0.16443397 0.75981933\n\t\t 0.6289559;\n\tsetAttr \".n[37848:38013]\" -type \"float3\"  -0.041413825 0.67458117 0.73702192 -0.16443397\n\t\t 0.75981933 0.6289559 0.15213451 0.88314474 0.44367802 0.15213451 0.88314474 0.44367802\n\t\t 0.25864413 0.80275899 0.53724778 -0.041413825 0.67458117 0.73702192 0.026123643 0.64992225\n\t\t 0.75951409 -0.041413825 0.67458117 0.73702192 0.25864413 0.80275899 0.53724778 0.25864413\n\t\t 0.80275899 0.53724778 0.15213451 0.88314474 0.44367802 0.4578079 0.86739719 0.19489114\n\t\t 0.4578079 0.86739719 0.19489114 0.5278784 0.8107549 0.25293735 0.25864413 0.80275899\n\t\t 0.53724778 0.32230574 0.77053148 0.54985195 0.25864413 0.80275899 0.53724778 0.5278784\n\t\t 0.8107549 0.25293735 0.25864413 0.80275899 0.53724778 0.32230574 0.77053148 0.54985195\n\t\t 0.026123643 0.64992225 0.75951409 0.056642149 0.65886414 0.75008386 0.026123643 0.64992225\n\t\t 0.75951409 0.32230574 0.77053148 0.54985195 0.5278784 0.8107549 0.25293735 0.57679957\n\t\t 0.77776438 0.24967186 0.32230574 0.77053148 0.54985195 0.35346514 0.76683879 0.53569132\n\t\t 0.32230574 0.77053148 0.54985195 0.57679957 0.77776438 0.24967186 0.32230574 0.77053148\n\t\t 0.54985195 0.35346514 0.76683879 0.53569132 0.056642149 0.65886414 0.75008386 0.049836509\n\t\t 0.69975895 0.71260715 0.056642149 0.65886414 0.75008386 0.35346514 0.76683879 0.53569132\n\t\t 0.57679957 0.77776438 0.24967186 0.606372 0.76168114 0.22824787 0.35346514 0.76683879\n\t\t 0.53569132 0.35224441 0.78859848 0.5039826 0.35346514 0.76683879 0.53569132 0.606372\n\t\t 0.76168114 0.22824787 0.35346514 0.76683879 0.53569132 0.35224441 0.78859848 0.5039826\n\t\t 0.049836509 0.69975895 0.71260715 0.606372 0.76168114 0.22824787 0.61528343 0.76055193\n\t\t 0.20722061 0.35224441 0.78859848 0.5039826 0.5278784 0.8107549 0.25293735 0.4578079\n\t\t 0.86739719 0.19489114 0.70879215 0.70165128 -0.072542548 0.70879215 0.70165128 -0.072542548\n\t\t 0.7252416 0.68459141 -0.072786696 0.5278784 0.8107549 0.25293735 0.57679957 0.77776438\n\t\t 0.24967186 0.5278784 0.8107549 0.25293735 0.7252416 0.68459141 -0.072786696 0.7252416\n\t\t 0.68459141 -0.072786696 0.7451092 0.65932214 -0.10016181 0.57679957 0.77776438 0.24967186\n\t\t 0.606372 0.76168114 0.22824787 0.57679957 0.77776438 0.24967186 0.7451092 0.65932214\n\t\t -0.10016181 0.7451092 0.65932214 -0.10016181 0.76360345 0.63188601 -0.13275556 0.606372\n\t\t 0.76168114 0.22824787 0.61528343 0.76055193 0.20722061 0.606372 0.76168114 0.22824787\n\t\t 0.76360345 0.63188601 -0.13275556 0.76360345 0.63188601 -0.13275556 0.78209764 0.60631144\n\t\t -0.14374222 0.61528343 0.76055193 0.20722061 0.78209764 0.60631144 -0.14374222 0.76360345\n\t\t 0.63188601 -0.13275556 0.78527164 0.39533699 -0.47648552 0.78527164 0.39533699 -0.47648552\n\t\t 0.80431521 0.34775862 -0.48173469 0.78209764 0.60631144 -0.14374222 0.79168051 0.42963979\n\t\t -0.43430895 0.78527164 0.39533699 -0.47648552 0.76360345 0.63188601 -0.13275556 0.76360345\n\t\t 0.63188601 -0.13275556 0.7451092 0.65932214 -0.10016181 0.79168051 0.42963979 -0.43430895\n\t\t 0.8136844 0.44001609 -0.37977237 0.79168051 0.42963979 -0.43430895 0.7451092 0.65932214\n\t\t -0.10016181 0.7451092 0.65932214 -0.10016181 0.7252416 0.68459141 -0.072786696 0.8136844\n\t\t 0.44001609 -0.37977237 0.8574174 0.41157284 -0.30884734 0.8136844 0.44001609 -0.37977237\n\t\t 0.7252416 0.68459141 -0.072786696 0.7252416 0.68459141 -0.072786696 0.70879215 0.70165128\n\t\t -0.072542548 0.8574174 0.41157284 -0.30884734 0.8136844 0.44001609 -0.37977237 0.8574174\n\t\t 0.41157284 -0.30884734 0.87444687 0.049684368 -0.48249763 0.87444687 0.049684368\n\t\t -0.48249763 0.77736741 0.12057883 -0.61732841 0.8136844 0.44001609 -0.37977237 0.79168051\n\t\t 0.42963979 -0.43430895 0.8136844 0.44001609 -0.37977237 0.77736741 0.12057883 -0.61732841\n\t\t 0.77736741 0.12057883 -0.61732841 0.71092862 0.13284725 -0.69057286 0.79168051 0.42963979\n\t\t -0.43430895 0.78527164 0.39533699 -0.47648552 0.79168051 0.42963979 -0.43430895 0.71092862\n\t\t 0.13284725 -0.69057286 0.71092862 0.13284725 -0.69057286 0.67342138 0.10370205 -0.73189491\n\t\t 0.78527164 0.39533699 -0.47648552 0.80431521 0.34775862 -0.48173469 0.78527164 0.39533699\n\t\t -0.47648552 0.67342138 0.10370205 -0.73189491 0.67342138 0.10370205 -0.73189491 0.68092901\n\t\t 0.044831846 -0.73091829 0.80431521 0.34775862 -0.48173469 0.68092901 0.044831846\n\t\t -0.73091829 0.67342138 0.10370205 -0.73189491 0.46583459 -0.18854326 -0.86452836\n\t\t 0.46583459 -0.18854326 -0.86452836 0.45909002 -0.24198118 -0.85476243 0.68092901\n\t\t 0.044831846 -0.73091829 0.52424699 -0.17795332 -0.83272803 0.46583459 -0.18854326\n\t\t -0.86452836 0.67342138 0.10370205 -0.73189491 0.67342138 0.10370205 -0.73189491 0.71092862\n\t\t 0.13284725 -0.69057286 0.52424699 -0.17795332 -0.83272803 0.62108225 -0.21655922\n\t\t -0.75319684 0.52424699 -0.17795332 -0.83272803 0.71092862 0.13284725 -0.69057286\n\t\t 0.71092862 0.13284725 -0.69057286 0.77736741 0.12057883 -0.61732841 0.62108225 -0.21655922\n\t\t -0.75319684 0.75377679 -0.31559169 -0.57631153 0.62108225 -0.21655922 -0.75319684\n\t\t 0.77736741 0.12057883 -0.61732841 0.77736741 0.12057883 -0.61732841 0.87444687 0.049684368\n\t\t -0.48249763 0.75377679 -0.31559169 -0.57631153 0.62108225 -0.21655922 -0.75319684\n\t\t 0.75377679 -0.31559169 -0.57631153 0.51823497 -0.62266904 -0.5862605 0.51823497 -0.62266904\n\t\t -0.5862605 0.36994553 -0.51402318 -0.77385777 0.62108225 -0.21655922 -0.75319684\n\t\t 0.52424699 -0.17795332 -0.83272803 0.62108225 -0.21655922 -0.75319684 0.36994553\n\t\t -0.51402318 -0.77385777 0.36994553 -0.51402318 -0.77385777 0.26517549 -0.45606858\n\t\t -0.84948266 0.52424699 -0.17795332 -0.83272803 0.46583459 -0.18854326 -0.86452836\n\t\t 0.52424699 -0.17795332 -0.83272803 0.26517549 -0.45606858 -0.84948266 0.26517549\n\t\t -0.45606858 -0.84948266 0.20392482 -0.44477674 -0.87209684 0.46583459 -0.18854326\n\t\t -0.86452836 0.45909002 -0.24198118 -0.85476243 0.46583459 -0.18854326 -0.86452836\n\t\t 0.20392482 -0.44477674 -0.87209684 0.20392482 -0.44477674 -0.87209684;\n\tsetAttr \".n[38014:38179]\" -type \"float3\"  0.19016097 -0.47999513 -0.85637981 0.45909002\n\t\t -0.24198118 -0.85476243 0.19016097 -0.47999513 -0.85637981 0.20392482 -0.44477674\n\t\t -0.87209684 -0.083589993 -0.64314711 -0.76113158 -0.083589993 -0.64314711 -0.76113158\n\t\t -0.096529841 -0.65837592 -0.74645215 0.19016097 -0.47999513 -0.85637981 -0.031342305\n\t\t -0.66640222 -0.7448957 -0.083589993 -0.64314711 -0.76113158 0.20392482 -0.44477674\n\t\t -0.87209684 0.20392482 -0.44477674 -0.87209684 0.26517549 -0.45606858 -0.84948266\n\t\t -0.031342305 -0.66640222 -0.7448957 0.063814424 -0.72750026 -0.68309575 -0.031342305\n\t\t -0.66640222 -0.7448957 0.26517549 -0.45606858 -0.84948266 0.26517549 -0.45606858\n\t\t -0.84948266 0.36994553 -0.51402318 -0.77385777 0.063814424 -0.72750026 -0.68309575\n\t\t 0.208167 -0.8298288 -0.51771593 0.063814424 -0.72750026 -0.68309575 0.36994553 -0.51402318\n\t\t -0.77385777 0.36994553 -0.51402318 -0.77385777 0.51823497 -0.62266904 -0.5862605\n\t\t 0.208167 -0.8298288 -0.51771593 0.063814424 -0.72750026 -0.68309575 0.208167 -0.8298288\n\t\t -0.51771593 -0.13016117 -0.91647089 -0.37824634 -0.13016117 -0.91647089 -0.37824634\n\t\t -0.25037357 -0.83187366 -0.49525431 0.063814424 -0.72750026 -0.68309575 -0.031342305\n\t\t -0.66640222 -0.7448957 0.063814424 -0.72750026 -0.68309575 -0.25037357 -0.83187366\n\t\t -0.49525431 -0.25037357 -0.83187366 -0.49525431 -0.32666987 -0.78136557 -0.5316934\n\t\t -0.031342305 -0.66640222 -0.7448957 -0.083589993 -0.64314711 -0.76113158 -0.031342305\n\t\t -0.66640222 -0.7448957 -0.32666987 -0.78136557 -0.5316934 -0.32666987 -0.78136557\n\t\t -0.5316934 -0.36829713 -0.75804943 -0.53819388 -0.083589993 -0.64314711 -0.76113158\n\t\t -0.096529841 -0.65837592 -0.74645215 -0.083589993 -0.64314711 -0.76113158 -0.36829713\n\t\t -0.75804943 -0.53819388 -0.36829713 -0.75804943 -0.53819388 -0.38013831 -0.75902605\n\t\t -0.52851951 -0.096529841 -0.65837592 -0.74645215 -0.38013831 -0.75902605 -0.52851951\n\t\t -0.36829713 -0.75804943 -0.53819388 -0.6101563 -0.7601552 -0.22327335 -0.6101563\n\t\t -0.7601552 -0.22327335 -0.62550712 -0.749901 -0.21530803 -0.38013831 -0.75902605\n\t\t -0.52851951 -0.57856965 -0.78115195 -0.23447365 -0.6101563 -0.7601552 -0.22327335\n\t\t -0.36829713 -0.75804943 -0.53819388 -0.36829713 -0.75804943 -0.53819388 -0.32666987\n\t\t -0.78136557 -0.5316934 -0.57856965 -0.78115195 -0.23447365 -0.32666987 -0.78136557\n\t\t -0.5316934 -0.25037357 -0.83187366 -0.49525431 -0.52781737 -0.81725532 -0.23126921\n\t\t -0.52781737 -0.81725532 -0.23126921 -0.57856965 -0.78115195 -0.23447365 -0.32666987\n\t\t -0.78136557 -0.5316934 -0.25037357 -0.83187366 -0.49525431 -0.13016117 -0.91647089\n\t\t -0.37824634 -0.45066655 -0.87517941 -0.17572552 -0.45066655 -0.87517941 -0.17572552\n\t\t -0.52781737 -0.81725532 -0.23126921 -0.25037357 -0.83187366 -0.49525431 -0.01892117\n\t\t -0.98702961 -0.15924551 -0.13016117 -0.91647089 -0.37824634 0.208167 -0.8298288 -0.51771593\n\t\t 0.208167 -0.8298288 -0.51771593 0.33378121 -0.91167933 -0.23957023 -0.01892117 -0.98702961\n\t\t -0.15924551 0.33378121 -0.91167933 -0.23957023 0.208167 -0.8298288 -0.51771593 0.51823497\n\t\t -0.62266904 -0.5862605 0.51823497 -0.62266904 -0.5862605 0.63588393 -0.71675754 -0.28611097\n\t\t 0.33378121 -0.91167933 -0.23957023 0.63588393 -0.71675754 -0.28611097 0.51823497\n\t\t -0.62266904 -0.5862605 0.75377679 -0.31559169 -0.57631153 0.75377679 -0.31559169\n\t\t -0.57631153 0.85653263 -0.42005652 -0.29975277 0.63588393 -0.71675754 -0.28611097\n\t\t 0.85653263 -0.42005652 -0.29975277 0.75377679 -0.31559169 -0.57631153 0.87444687\n\t\t 0.049684368 -0.48249763 0.87444687 0.049684368 -0.48249763 0.96008182 -0.045746971\n\t\t -0.27585679 0.85653263 -0.42005652 -0.29975277 0.96008182 -0.045746971 -0.27585679\n\t\t 0.87444687 0.049684368 -0.48249763 0.8574174 0.41157284 -0.30884734 0.8574174 0.41157284\n\t\t -0.30884734 0.91137415 0.35489997 -0.20838042 0.96008182 -0.045746971 -0.27585679\n\t\t 0.91137415 0.35489997 -0.20838042 0.8574174 0.41157284 -0.30884734 0.70879215 0.70165128\n\t\t -0.072542548 0.70879215 0.70165128 -0.072542548 0.70647275 0.70116299 -0.096011281\n\t\t 0.91137415 0.35489997 -0.20838042 0.70647275 0.70116299 -0.096011281 0.70879215 0.70165128\n\t\t -0.072542548 0.4578079 0.86739719 0.19489114 0.4578079 0.86739719 0.19489114 0.38874447\n\t\t 0.91985852 0.051942438 0.70647275 0.70116299 -0.096011281 0.38874447 0.91985852 0.051942438\n\t\t 0.4578079 0.86739719 0.19489114 0.15213451 0.88314474 0.44367802 0.15213451 0.88314474\n\t\t 0.44367802 0.031769466 0.976928 0.21106593 0.38874447 0.91985852 0.051942438 0.37525529\n\t\t 0.91662353 -0.137547 0.38874447 0.91985852 0.051942438 0.031769466 0.976928 0.21106593\n\t\t 0.031769466 0.976928 0.21106593 -0.008423415 0.99157691 -0.12918493 0.37525529 0.91662353\n\t\t -0.137547 0.4329353 0.85445732 -0.28708768 0.37525529 0.91662353 -0.137547 -0.008423415\n\t\t 0.99157691 -0.12918493 -0.008423415 0.99157691 -0.12918493 0.070711114 0.90273744\n\t\t -0.42426836 0.4329353 0.85445732 -0.28708768 0.51420611 0.78334928 -0.34916234 0.4329353\n\t\t 0.85445732 -0.28708768 0.070711114 0.90273744 -0.42426836 0.070711114 0.90273744\n\t\t -0.42426836 0.19574548 0.7948851 -0.57426685 0.51420611 0.78334928 -0.34916234 0.4329353\n\t\t 0.85445732 -0.28708768 0.51420611 0.78334928 -0.34916234 0.77642125 0.6264537 -0.068514101\n\t\t 0.77642125 0.6264537 -0.068514101 0.57313734 0.79201657 -0.21015051 0.4329353 0.85445732\n\t\t -0.28708768 0.37525529 0.91662353 -0.137547 0.4329353 0.85445732 -0.28708768 0.57313734\n\t\t 0.79201657 -0.21015051 0.57313734 0.79201657 -0.21015051 0.72667599 0.67702287 -0.11639765\n\t\t 0.37525529 0.91662353 -0.137547 0.38874447 0.91985852 0.051942438 0.37525529 0.91662353\n\t\t -0.137547 0.72667599 0.67702287 -0.11639765 0.72667599 0.67702287 -0.11639765 0.70647275\n\t\t 0.70116299 -0.096011281 0.38874447 0.91985852 0.051942438 0.94848466 0.30741325 -0.076540448\n\t\t 0.91137415 0.35489997 -0.20838042 0.70647275 0.70116299 -0.096011281 0.70647275 0.70116299\n\t\t -0.096011281 0.72667599 0.67702287 -0.11639765 0.94848466 0.30741325 -0.076540448\n\t\t 0.95025474 0.30295753 0.071932107 0.94848466 0.30741325 -0.076540448;\n\tsetAttr \".n[38180:38345]\" -type \"float3\"  0.72667599 0.67702287 -0.11639765 0.72667599\n\t\t 0.67702287 -0.11639765 0.86953318 0.49351507 -0.017090403 0.95025474 0.30295753 0.071932107\n\t\t 0.91622657 0.34504259 0.20358895 0.95025474 0.30295753 0.071932107 0.86953318 0.49351507\n\t\t -0.017090403 0.86953318 0.49351507 -0.017090403 0.77642125 0.6264537 -0.068514101\n\t\t 0.91622657 0.34504259 0.20358895 0.95025474 0.30295753 0.071932107 0.91622657 0.34504259\n\t\t 0.20358895 0.9086886 0.004852755 0.41740164 0.9086886 0.004852755 0.41740164 0.9740898\n\t\t -0.080965295 0.21103549 0.95025474 0.30295753 0.071932107 0.94848466 0.30741325 -0.076540448\n\t\t 0.95025474 0.30295753 0.071932107 0.9740898 -0.080965295 0.21103549 0.9740898 -0.080965295\n\t\t 0.21103549 0.99438465 -0.10055818 -0.032563243 0.94848466 0.30741325 -0.076540448\n\t\t 0.91137415 0.35489997 -0.20838042 0.94848466 0.30741325 -0.076540448 0.99438465 -0.10055818\n\t\t -0.032563243 0.99438465 -0.10055818 -0.032563243 0.96008182 -0.045746971 -0.27585679\n\t\t 0.91137415 0.35489997 -0.20838042 0.96008182 -0.045746971 -0.27585679 0.99438465\n\t\t -0.10055818 -0.032563243 0.88622713 -0.46314862 0.006500477 0.88622713 -0.46314862\n\t\t 0.006500477 0.85653263 -0.42005652 -0.29975277 0.96008182 -0.045746971 -0.27585679\n\t\t 0.85222948 -0.42841855 0.3002106 0.88622713 -0.46314862 0.006500477 0.99438465 -0.10055818\n\t\t -0.032563243 0.99438465 -0.10055818 -0.032563243 0.9740898 -0.080965295 0.21103549\n\t\t 0.85222948 -0.42841855 0.3002106 0.76744908 -0.32554066 0.55226296 0.85222948 -0.42841855\n\t\t 0.3002106 0.9740898 -0.080965295 0.21103549 0.9740898 -0.080965295 0.21103549 0.9086886\n\t\t 0.004852755 0.41740164 0.76744908 -0.32554066 0.55226296 0.85222948 -0.42841855 0.3002106\n\t\t 0.76744908 -0.32554066 0.55226296 0.52244651 -0.5988645 0.60692167 0.52244651 -0.5988645\n\t\t 0.60692167 0.62483621 -0.70027757 0.34519491 0.85222948 -0.42841855 0.3002106 0.88622713\n\t\t -0.46314862 0.006500477 0.85222948 -0.42841855 0.3002106 0.62483621 -0.70027757 0.34519491\n\t\t 0.62483621 -0.70027757 0.34519491 0.66893542 -0.74227101 0.039307896 0.88622713 -0.46314862\n\t\t 0.006500477 0.85653263 -0.42005652 -0.29975277 0.88622713 -0.46314862 0.006500477\n\t\t 0.66893542 -0.74227101 0.039307896 0.66893542 -0.74227101 0.039307896 0.63588393\n\t\t -0.71675754 -0.28611097 0.85653263 -0.42005652 -0.29975277 0.63588393 -0.71675754\n\t\t -0.28611097 0.66893542 -0.74227101 0.039307896 0.37241766 -0.92556524 0.067873232\n\t\t 0.37241766 -0.92556524 0.067873232 0.33378121 -0.91167933 -0.23957023 0.63588393\n\t\t -0.71675754 -0.28611097 0.31934595 -0.87963486 0.35239729 0.37241766 -0.92556524\n\t\t 0.067873232 0.66893542 -0.74227101 0.039307896 0.66893542 -0.74227101 0.039307896\n\t\t 0.62483621 -0.70027757 0.34519491 0.31934595 -0.87963486 0.35239729 0.20392492 -0.78511906\n\t\t 0.5847652 0.31934595 -0.87963486 0.35239729 0.62483621 -0.70027757 0.34519491 0.62483621\n\t\t -0.70027757 0.34519491 0.52244651 -0.5988645 0.60692167 0.20392492 -0.78511906 0.5847652\n\t\t 0.31934595 -0.87963486 0.35239729 0.20392492 -0.78511906 0.5847652 -0.15417925 -0.86053044\n\t\t 0.48542747 -0.15417925 -0.86053044 0.48542747 -0.04354962 -0.94622636 0.32053596\n\t\t 0.31934595 -0.87963486 0.35239729 0.37241766 -0.92556524 0.067873232 0.31934595 -0.87963486\n\t\t 0.35239729 -0.04354962 -0.94622636 0.32053596 -0.04354962 -0.94622636 0.32053596\n\t\t 0.014740747 -0.99542224 0.094119161 0.37241766 -0.92556524 0.067873232 0.33378121\n\t\t -0.91167933 -0.23957023 0.37241766 -0.92556524 0.067873232 0.014740747 -0.99542224\n\t\t 0.094119161 0.014740747 -0.99542224 0.094119161 -0.01892117 -0.98702961 -0.15924551\n\t\t 0.33378121 -0.91167933 -0.23957023 -0.01892117 -0.98702961 -0.15924551 0.014740747\n\t\t -0.99542224 0.094119161 -0.37137944 -0.92098773 0.11743528 -0.37137944 -0.92098773\n\t\t 0.11743528 -0.38261026 -0.92291039 -0.042145994 -0.01892117 -0.98702961 -0.15924551\n\t\t 0.014740747 -0.99542224 0.094119161 -0.04354962 -0.94622636 0.32053596 -0.42570242\n\t\t -0.87163925 0.24283583 -0.42570242 -0.87163925 0.24283583 -0.37137944 -0.92098773\n\t\t 0.11743528 0.014740747 -0.99542224 0.094119161 -0.04354962 -0.94622636 0.32053596\n\t\t -0.15417925 -0.86053044 0.48542747 -0.50367725 -0.80657387 0.30933568 -0.50367725\n\t\t -0.80657387 0.30933568 -0.42570242 -0.87163925 0.24283583 -0.04354962 -0.94622636\n\t\t 0.32053596 -0.26209271 -0.7662282 0.58662683 -0.15417925 -0.86053044 0.48542747 0.20392492\n\t\t -0.78511906 0.5847652 0.20392492 -0.78511906 0.5847652 0.076235443 -0.6664021 0.74166089\n\t\t -0.26209271 -0.7662282 0.58662683 0.076235443 -0.6664021 0.74166089 0.20392492 -0.78511906\n\t\t 0.5847652 0.52244651 -0.5988645 0.60692167 0.52244651 -0.5988645 0.60692167 0.39729011\n\t\t -0.46699405 0.78994113 0.076235443 -0.6664021 0.74166089 0.39729011 -0.46699405 0.78994113\n\t\t 0.52244651 -0.5988645 0.60692167 0.76744908 -0.32554066 0.55226296 0.76744908 -0.32554066\n\t\t 0.55226296 0.65813172 -0.19492145 0.72719502 0.39729011 -0.46699405 0.78994113 0.65813172\n\t\t -0.19492145 0.72719502 0.76744908 -0.32554066 0.55226296 0.9086886 0.004852755 0.41740164\n\t\t 0.9086886 0.004852755 0.41740164 0.82375556 0.11209477 0.55571157 0.65813172 -0.19492145\n\t\t 0.72719502 0.82375556 0.11209477 0.55571157 0.9086886 0.004852755 0.41740164 0.91622657\n\t\t 0.34504259 0.20358895 0.91622657 0.34504259 0.20358895 0.86718333 0.40479779 0.28998685\n\t\t 0.82375556 0.11209477 0.55571157 0.86718333 0.40479779 0.28998685 0.91622657 0.34504259\n\t\t 0.20358895 0.77642125 0.6264537 -0.068514101 0.77642125 0.6264537 -0.068514101 0.77785558\n\t\t 0.62739974 -0.035737224 0.86718333 0.40479779 0.28998685 0.77785558 0.62739974 -0.035737224\n\t\t 0.77642125 0.6264537 -0.068514101 0.51420611 0.78334928 -0.34916234 0.51420611 0.78334928\n\t\t -0.34916234 0.57121468 0.73491639 -0.3654592 0.77785558 0.62739974 -0.035737224 0.57121468\n\t\t 0.73491639 -0.3654592 0.51420611 0.78334928 -0.34916234 0.19574548 0.7948851 -0.57426685\n\t\t 0.19574548 0.7948851 -0.57426685 0.29142103 0.7159338 -0.63441885 0.57121468 0.73491639\n\t\t -0.3654592;\n\tsetAttr \".n[38346:38511]\" -type \"float3\"  0.61036992 0.69844681 -0.37360767 0.57121468\n\t\t 0.73491639 -0.3654592 0.29142103 0.7159338 -0.63441885 0.29142103 0.7159338 -0.63441885\n\t\t 0.35972145 0.65355396 -0.66588342 0.61036992 0.69844681 -0.37360767 0.64149886 0.6643576\n\t\t -0.38346514 0.61036992 0.69844681 -0.37360767 0.35972145 0.65355396 -0.66588342 0.35972145\n\t\t 0.65355396 -0.66588342 0.41331199 0.59480584 -0.68944371 0.64149886 0.6643576 -0.38346514\n\t\t 0.67293298 0.62630105 -0.39353624 0.64149886 0.6643576 -0.38346514 0.41331199 0.59480584\n\t\t -0.68944371 0.41331199 0.59480584 -0.68944371 0.46504086 0.53169352 -0.70781583 0.67293298\n\t\t 0.62630105 -0.39353624 0.64149886 0.6643576 -0.38346514 0.67293298 0.62630105 -0.39353624\n\t\t 0.78084642 0.62453103 -0.013397672 0.78084642 0.62453103 -0.013397672 0.77620757\n\t\t 0.63029903 -0.013428191 0.64149886 0.6643576 -0.38346514 0.61036992 0.69844681 -0.37360767\n\t\t 0.64149886 0.6643576 -0.38346514 0.77620757 0.63029903 -0.013428191 0.77620757 0.63029903\n\t\t -0.013428191 0.77596343 0.63045162 -0.019013079 0.61036992 0.69844681 -0.37360767\n\t\t 0.57121468 0.73491639 -0.3654592 0.61036992 0.69844681 -0.37360767 0.77596343 0.63045162\n\t\t -0.019013079 0.77596343 0.63045162 -0.019013079 0.77785558 0.62739974 -0.035737224\n\t\t 0.57121468 0.73491639 -0.3654592 0.82470155 0.45533645 0.33542889 0.86718333 0.40479779\n\t\t 0.28998685 0.77785558 0.62739974 -0.035737224 0.77785558 0.62739974 -0.035737224\n\t\t 0.77596343 0.63045162 -0.019013079 0.82470155 0.45533645 0.33542889 0.79207724 0.49406442\n\t\t 0.35843986 0.82470155 0.45533645 0.33542889 0.77596343 0.63045162 -0.019013079 0.77596343\n\t\t 0.63045162 -0.019013079 0.77620757 0.63029903 -0.013428191 0.79207724 0.49406442\n\t\t 0.35843986 0.76775396 0.52339268 0.36954859 0.79207724 0.49406442 0.35843986 0.77620757\n\t\t 0.63029903 -0.013428191 0.77620757 0.63029903 -0.013428191 0.78084642 0.62453103\n\t\t -0.013397672 0.76775396 0.52339268 0.36954859 0.79207724 0.49406442 0.35843986 0.76775396\n\t\t 0.52339268 0.36954859 0.63615823 0.33997646 0.69258708 0.63615823 0.33997646 0.69258708\n\t\t 0.68666643 0.27875632 0.67137671 0.79207724 0.49406442 0.35843986 0.82470155 0.45533645\n\t\t 0.33542889 0.79207724 0.49406442 0.35843986 0.68666643 0.27875632 0.67137671 0.68666643\n\t\t 0.27875632 0.67137671 0.74822223 0.20453534 0.63109225 0.82470155 0.45533645 0.33542889\n\t\t 0.86718333 0.40479779 0.28998685 0.82470155 0.45533645 0.33542889 0.74822223 0.20453534\n\t\t 0.63109225 0.74822223 0.20453534 0.63109225 0.82375556 0.11209477 0.55571157 0.86718333\n\t\t 0.40479779 0.28998685 0.82375556 0.11209477 0.55571157 0.74822223 0.20453534 0.63109225\n\t\t 0.55964845 -0.077272631 0.8250984 0.55964845 -0.077272631 0.8250984 0.65813172 -0.19492145\n\t\t 0.72719502 0.82375556 0.11209477 0.55571157 0.47791985 0.021119021 0.87813962 0.55964845\n\t\t -0.077272631 0.8250984 0.74822223 0.20453534 0.63109225 0.74822223 0.20453534 0.63109225\n\t\t 0.68666643 0.27875632 0.67137671 0.47791985 0.021119021 0.87813962 0.40870383 0.1051975\n\t\t 0.90655231 0.47791985 0.021119021 0.87813962 0.68666643 0.27875632 0.67137671 0.68666643\n\t\t 0.27875632 0.67137671 0.63615823 0.33997646 0.69258708 0.40870383 0.1051975 0.90655231\n\t\t 0.47791985 0.021119021 0.87813962 0.40870383 0.1051975 0.90655231 0.12094489 -0.14395569\n\t\t 0.98214668 0.12094489 -0.14395569 0.98214668 0.19815676 -0.23776957 0.95086521 0.47791985\n\t\t 0.021119021 0.87813962 0.55964845 -0.077272631 0.8250984 0.47791985 0.021119021 0.87813962\n\t\t 0.19815676 -0.23776957 0.95086521 0.19815676 -0.23776957 0.95086521 0.28778967 -0.34430969\n\t\t 0.89364302 0.55964845 -0.077272631 0.8250984 0.65813172 -0.19492145 0.72719502 0.55964845\n\t\t -0.077272631 0.8250984 0.28778967 -0.34430969 0.89364302 0.28778967 -0.34430969 0.89364302\n\t\t 0.39729011 -0.46699405 0.78994113 0.65813172 -0.19492145 0.72719502 0.39729011 -0.46699405\n\t\t 0.78994113 0.28778967 -0.34430969 0.89364302 -0.028778784 -0.55681014 0.83013403\n\t\t -0.028778784 -0.55681014 0.83013403 0.076235443 -0.6664021 0.74166089 0.39729011\n\t\t -0.46699405 0.78994113 -0.11246057 -0.45963925 0.88091683 -0.028778784 -0.55681014\n\t\t 0.83013403 0.28778967 -0.34430969 0.89364302 0.28778967 -0.34430969 0.89364302 0.19815676\n\t\t -0.23776957 0.95086521 -0.11246057 -0.45963925 0.88091683 -0.18555242 -0.37104404\n\t\t 0.90987885 -0.11246057 -0.45963925 0.88091683 0.19815676 -0.23776957 0.95086521 0.19815676\n\t\t -0.23776957 0.95086521 0.12094489 -0.14395569 0.98214668 -0.18555242 -0.37104404\n\t\t 0.90987885 -0.11246057 -0.45963925 0.88091683 -0.18555242 -0.37104404 0.90987885\n\t\t -0.46644473 -0.5426802 0.69847721 -0.46644473 -0.5426802 0.69847721 -0.40891734 -0.61186564\n\t\t 0.6770227 -0.11246057 -0.45963925 0.88091683 -0.028778784 -0.55681014 0.83013403\n\t\t -0.11246057 -0.45963925 0.88091683 -0.40891734 -0.61186564 0.6770227 -0.40891734\n\t\t -0.61186564 0.6770227 -0.34464532 -0.68443865 0.64241469 -0.028778784 -0.55681014\n\t\t 0.83013403 0.076235443 -0.6664021 0.74166089 -0.028778784 -0.55681014 0.83013403\n\t\t -0.34464532 -0.68443865 0.64241469 -0.34464532 -0.68443865 0.64241469 -0.26209271\n\t\t -0.7662282 0.58662683 0.076235443 -0.6664021 0.74166089 -0.26209271 -0.7662282 0.58662683\n\t\t -0.34464532 -0.68443865 0.64241469 -0.61067516 -0.70839584 0.35383165 -0.61067516\n\t\t -0.70839584 0.35383165 -0.56685054 -0.75099963 0.33860293 -0.26209271 -0.7662282\n\t\t 0.58662683 -0.34464532 -0.68443865 0.64241469 -0.40891734 -0.61186564 0.6770227 -0.64467281\n\t\t -0.67067492 0.36680204 -0.64467281 -0.67067492 0.36680204 -0.61067516 -0.70839584\n\t\t 0.35383165 -0.34464532 -0.68443865 0.64241469 -0.40891734 -0.61186564 0.6770227 -0.46644473\n\t\t -0.5426802 0.69847721 -0.67741919 -0.63139766 0.3773309 -0.67741919 -0.63139766 0.3773309\n\t\t -0.64467281 -0.67067492 0.36680204 -0.40891734 -0.61186564 0.6770227 -0.52787852\n\t\t -0.47135848 0.70647305 -0.46644473 -0.5426802 0.69847721 -0.18555242 -0.37104404\n\t\t 0.90987885 -0.18555242 -0.37104404 0.90987885;\n\tsetAttr \".n[38512:38677]\" -type \"float3\"  -0.26450384 -0.2796106 0.92294079 -0.52787852\n\t\t -0.47135848 0.70647305 -0.26450384 -0.2796106 0.92294079 -0.18555242 -0.37104404\n\t\t 0.90987885 0.12094489 -0.14395569 0.98214668 0.12094489 -0.14395569 0.98214668 0.03802608\n\t\t -0.045625087 0.99822992 -0.26450384 -0.2796106 0.92294079 0.03802608 -0.045625087\n\t\t 0.99822992 0.12094489 -0.14395569 0.98214668 0.40870383 0.1051975 0.90655231 0.40870383\n\t\t 0.1051975 0.90655231 0.3349711 0.19568487 0.92165899 0.03802608 -0.045625087 0.99822992\n\t\t 0.3349711 0.19568487 0.92165899 0.40870383 0.1051975 0.90655231 0.63615823 0.33997646\n\t\t 0.69258708 0.63615823 0.33997646 0.69258708 0.58186579 0.4080022 0.70351261 0.3349711\n\t\t 0.19568487 0.92165899 0.58186579 0.4080022 0.70351261 0.63615823 0.33997646 0.69258708\n\t\t 0.76775396 0.52339268 0.36954859 0.76775396 0.52339268 0.36954859 0.74019575 0.55766499\n\t\t 0.37556076 0.58186579 0.4080022 0.70351261 0.74019575 0.55766499 0.37556076 0.76775396\n\t\t 0.52339268 0.36954859 0.78084642 0.62453103 -0.013397672 0.78084642 0.62453103 -0.013397672\n\t\t 0.78438658 0.62013638 -0.011139303 0.74019575 0.55766499 0.37556076 0.78438658 0.62013638\n\t\t -0.011139303 0.78084642 0.62453103 -0.013397672 0.67293298 0.62630105 -0.39353624\n\t\t 0.67293298 0.62630105 -0.39353624 0.70793766 0.58568096 -0.39469591 0.78438658 0.62013638\n\t\t -0.011139303 0.70793766 0.58568096 -0.39469591 0.67293298 0.62630105 -0.39353624\n\t\t 0.46504086 0.53169352 -0.70781583 0.46504086 0.53169352 -0.70781583 0.52638316 0.46229446\n\t\t -0.71355331 0.70793766 0.58568096 -0.39469591 0.74340022 0.54634261 -0.38575399 0.70793766\n\t\t 0.58568096 -0.39469591 0.52638316 0.46229446 -0.71355331 0.52638316 0.46229446 -0.71355331\n\t\t 0.59886461 0.38523525 -0.70204777 0.74340022 0.54634261 -0.38575399 0.7788322 0.50865221\n\t\t -0.36692408 0.74340022 0.54634261 -0.38575399 0.59886461 0.38523525 -0.70204777 0.59886461\n\t\t 0.38523525 -0.70204777 0.68208855 0.30011916 -0.66679889 0.7788322 0.50865221 -0.36692408\n\t\t 0.81237209 0.47364748 -0.34003726 0.7788322 0.50865221 -0.36692408 0.68208855 0.30011916\n\t\t -0.66679889 0.68208855 0.30011916 -0.66679889 0.76952416 0.20999806 -0.60307628 0.81237209\n\t\t 0.47364748 -0.34003726 0.7788322 0.50865221 -0.36692408 0.81237209 0.47364748 -0.34003726\n\t\t 0.74111128 0.67079705 -0.027069969 0.74111128 0.67079705 -0.027069969 0.76488525\n\t\t 0.64403236 -0.011719155 0.7788322 0.50865221 -0.36692408 0.74340022 0.54634261 -0.38575399\n\t\t 0.7788322 0.50865221 -0.36692408 0.76488525 0.64403236 -0.011719155 0.76488525 0.64403236\n\t\t -0.011719155 0.779351 0.62648422 -0.0086062662 0.74340022 0.54634261 -0.38575399\n\t\t 0.70793766 0.58568096 -0.39469591 0.74340022 0.54634261 -0.38575399 0.779351 0.62648422\n\t\t -0.0086062662 0.779351 0.62648422 -0.0086062662 0.78438658 0.62013638 -0.011139303\n\t\t 0.70793766 0.58568096 -0.39469591 0.69780552 0.61153013 0.37293613 0.74019575 0.55766499\n\t\t 0.37556076 0.78438658 0.62013638 -0.011139303 0.78438658 0.62013638 -0.011139303\n\t\t 0.779351 0.62648422 -0.0086062662 0.69780552 0.61153013 0.37293613 0.63811129 0.68556798\n\t\t 0.35041347 0.69780552 0.61153013 0.37293613 0.779351 0.62648422 -0.0086062662 0.779351\n\t\t 0.62648422 -0.0086062662 0.76488525 0.64403236 -0.011719155 0.63811129 0.68556798\n\t\t 0.35041347 0.56129616 0.77294248 0.2957243 0.63811129 0.68556798 0.35041347 0.76488525\n\t\t 0.64403236 -0.011719155 0.76488525 0.64403236 -0.011719155 0.74111128 0.67079705\n\t\t -0.027069969 0.56129616 0.77294248 0.2957243 0.63811129 0.68556798 0.35041347 0.56129616\n\t\t 0.77294248 0.2957243 0.29041389 0.75899553 0.58268982 0.29041389 0.75899553 0.58268982\n\t\t 0.41047376 0.62227261 0.66652417 0.63811129 0.68556798 0.35041347 0.69780552 0.61153013\n\t\t 0.37293613 0.63811129 0.68556798 0.35041347 0.41047376 0.62227261 0.66652417 0.41047376\n\t\t 0.62227261 0.66652417 0.50804144 0.50160247 0.70018607 0.69780552 0.61153013 0.37293613\n\t\t 0.74019575 0.55766499 0.37556076 0.69780552 0.61153013 0.37293613 0.50804144 0.50160247\n\t\t 0.70018607 0.50804144 0.50160247 0.70018607 0.58186579 0.4080022 0.70351261 0.74019575\n\t\t 0.55766499 0.37556076 0.58186579 0.4080022 0.70351261 0.50804144 0.50160247 0.70018607\n\t\t 0.2382274 0.31257069 0.9195227 0.2382274 0.31257069 0.9195227 0.3349711 0.19568487\n\t\t 0.92165899 0.58186579 0.4080022 0.70351261 0.11401701 0.45875433 0.88119137 0.2382274\n\t\t 0.31257069 0.9195227 0.50804144 0.50160247 0.70018607 0.50804144 0.50160247 0.70018607\n\t\t 0.41047376 0.62227261 0.66652417 0.11401701 0.45875433 0.88119137 -0.032746553 0.62273026\n\t\t 0.78173155 0.11401701 0.45875433 0.88119137 0.41047376 0.62227261 0.66652417 0.41047376\n\t\t 0.62227261 0.66652417 0.29041389 0.75899553 0.58268982 -0.032746553 0.62273026 0.78173155\n\t\t 0.11401701 0.45875433 0.88119137 -0.032746553 0.62273026 0.78173155 -0.35181749 0.38462472\n\t\t 0.85335857 -0.35181749 0.38462472 0.85335857 -0.20123912 0.22101507 0.95425278 0.11401701\n\t\t 0.45875433 0.88119137 0.2382274 0.31257069 0.9195227 0.11401701 0.45875433 0.88119137\n\t\t -0.20123912 0.22101507 0.95425278 -0.20123912 0.22101507 0.95425278 -0.068392001\n\t\t 0.074861959 0.99484235 0.2382274 0.31257069 0.9195227 0.3349711 0.19568487 0.92165899\n\t\t 0.2382274 0.31257069 0.9195227 -0.068392001 0.074861959 0.99484235 -0.068392001 0.074861959\n\t\t 0.99484235 0.03802608 -0.045625087 0.99822992 0.3349711 0.19568487 0.92165899 0.03802608\n\t\t -0.045625087 0.99822992 -0.068392001 0.074861959 0.99484235 -0.3626819 -0.17319259\n\t\t 0.91564685 -0.3626819 -0.17319259 0.91564685 -0.26450384 -0.2796106 0.92294079 0.03802608\n\t\t -0.045625087 0.99822992 -0.48084959 -0.048860218 0.87542343 -0.3626819 -0.17319259\n\t\t 0.91564685 -0.068392001 0.074861959 0.99484235 -0.068392001 0.074861959 0.99484235\n\t\t -0.20123912 0.22101507 0.95425278 -0.48084959 -0.048860218 0.87542343 -0.61003447\n\t\t 0.089052886 0.7873165 -0.48084959 -0.048860218 0.87542343;\n\tsetAttr \".n[38678:38843]\" -type \"float3\"  -0.20123912 0.22101507 0.95425278 -0.20123912\n\t\t 0.22101507 0.95425278 -0.35181749 0.38462472 0.85335857 -0.61003447 0.089052886 0.7873165\n\t\t -0.48084959 -0.048860218 0.87542343 -0.61003447 0.089052886 0.7873165 -0.76870018\n\t\t -0.21240902 0.60325938 -0.76870018 -0.21240902 0.60325938 -0.68166131 -0.3061313\n\t\t 0.66451001 -0.48084959 -0.048860218 0.87542343 -0.3626819 -0.17319259 0.91564685\n\t\t -0.48084959 -0.048860218 0.87542343 -0.68166131 -0.3061313 0.66451001 -0.68166131\n\t\t -0.3061313 0.66451001 -0.59965807 -0.39307851 0.69701225 -0.3626819 -0.17319259 0.91564685\n\t\t -0.26450384 -0.2796106 0.92294079 -0.3626819 -0.17319259 0.91564685 -0.59965807 -0.39307851\n\t\t 0.69701225 -0.59965807 -0.39307851 0.69701225 -0.52787852 -0.47135848 0.70647305\n\t\t -0.26450384 -0.2796106 0.92294079 -0.52787852 -0.47135848 0.70647305 -0.59965807\n\t\t -0.39307851 0.69701225 -0.74480402 -0.55250734 0.3740654 -0.74480402 -0.55250734\n\t\t 0.3740654 -0.71105057 -0.59126586 0.38050482 -0.52787852 -0.47135848 0.70647305 -0.59965807\n\t\t -0.39307851 0.69701225 -0.68166131 -0.3061313 0.66451001 -0.77874064 -0.51451176\n\t\t 0.35886717 -0.77874064 -0.51451176 0.35886717 -0.74480402 -0.55250734 0.3740654 -0.59965807\n\t\t -0.39307851 0.69701225 -0.68166131 -0.3061313 0.66451001 -0.76870018 -0.21240902\n\t\t 0.60325938 -0.81209743 -0.47740126 0.3354595 -0.81209743 -0.47740126 0.3354595 -0.77874064\n\t\t -0.51451176 0.35886717 -0.68166131 -0.3061313 0.66451001 -0.84188354 -0.13351868\n\t\t 0.52284312 -0.76870018 -0.21240902 0.60325938 -0.61003447 0.089052886 0.7873165 -0.61003447\n\t\t 0.089052886 0.7873165 -0.71605587 0.20523679 0.66713464 -0.84188354 -0.13351868 0.52284312\n\t\t -0.71605587 0.20523679 0.66713464 -0.61003447 0.089052886 0.7873165 -0.35181749 0.38462472\n\t\t 0.85335857 -0.35181749 0.38462472 0.85335857 -0.47630253 0.51838732 0.7101962 -0.71605587\n\t\t 0.20523679 0.66713464 -0.47630253 0.51838732 0.7101962 -0.35181749 0.38462472 0.85335857\n\t\t -0.032746553 0.62273026 0.78173155 -0.032746553 0.62273026 0.78173155 -0.15768938\n\t\t 0.75249487 0.63942373 -0.47630253 0.51838732 0.7101962 -0.15768938 0.75249487 0.63942373\n\t\t -0.032746553 0.62273026 0.78173155 0.29041389 0.75899553 0.58268982 0.29041389 0.75899553\n\t\t 0.58268982 0.1854302 0.86541349 0.46540722 -0.15768938 0.75249487 0.63942373 0.1854302\n\t\t 0.86541349 0.46540722 0.29041389 0.75899553 0.58268982 0.56129616 0.77294248 0.2957243\n\t\t 0.56129616 0.77294248 0.2957243 0.49430802 0.84078509 0.22067928 0.1854302 0.86541349\n\t\t 0.46540722 0.49430802 0.84078509 0.22067928 0.56129616 0.77294248 0.2957243 0.74111128\n\t\t 0.67079705 -0.027069969 0.74111128 0.67079705 -0.027069969 0.72252548 0.68935233\n\t\t -0.051912036 0.49430802 0.84078509 0.22067928 0.72252548 0.68935233 -0.051912036\n\t\t 0.74111128 0.67079705 -0.027069969 0.81237209 0.47364748 -0.34003726 0.81237209 0.47364748\n\t\t -0.34003726 0.84246331 0.43882588 -0.31244853 0.72252548 0.68935233 -0.051912036\n\t\t 0.84246331 0.43882588 -0.31244853 0.81237209 0.47364748 -0.34003726 0.76952416 0.20999806\n\t\t -0.60307628 0.76952416 0.20999806 -0.60307628 0.84087646 0.12659098 -0.5261696 0.84246331\n\t\t 0.43882588 -0.31244853 0.86812937 0.41093197 -0.27832884 0.84246331 0.43882588 -0.31244853\n\t\t 0.84087646 0.12659098 -0.5261696 0.84087646 0.12659098 -0.5261696 0.89187294 0.067812376\n\t\t -0.44712669 0.86812937 0.41093197 -0.27832884 0.89535189 0.38734117 -0.21970278 0.86812937\n\t\t 0.41093197 -0.27832884 0.89187294 0.067812376 -0.44712669 0.89187294 0.067812376\n\t\t -0.44712669 0.93981749 0.021271665 -0.34095278 0.89535189 0.38734117 -0.21970278\n\t\t 0.92098749 0.37247869 -0.11395615 0.89535189 0.38734117 -0.21970278 0.93981749 0.021271665\n\t\t -0.34095278 0.93981749 0.021271665 -0.34095278 0.98443556 -0.0082702246 -0.17542039\n\t\t 0.92098749 0.37247869 -0.11395615 0.89535189 0.38734117 -0.21970278 0.92098749 0.37247869\n\t\t -0.11395615 0.71703213 0.69612741 -0.034791153 0.71703213 0.69612741 -0.034791153\n\t\t 0.71480429 0.69640213 -0.063661665 0.89535189 0.38734117 -0.21970278 0.86812937 0.41093197\n\t\t -0.27832884 0.89535189 0.38734117 -0.21970278 0.71480429 0.69640213 -0.063661665\n\t\t 0.71480429 0.69640213 -0.063661665 0.71544516 0.69542551 -0.066866107 0.86812937\n\t\t 0.41093197 -0.27832884 0.84246331 0.43882588 -0.31244853 0.86812937 0.41093197 -0.27832884\n\t\t 0.71544516 0.69542551 -0.066866107 0.71544516 0.69542551 -0.066866107 0.72252548\n\t\t 0.68935233 -0.051912036 0.84246331 0.43882588 -0.31244853 0.45399308 0.87701052 0.15710923\n\t\t 0.49430802 0.84078509 0.22067928 0.72252548 0.68935233 -0.051912036 0.72252548 0.68935233\n\t\t -0.051912036 0.71544516 0.69542551 -0.066866107 0.45399308 0.87701052 0.15710923\n\t\t 0.42606863 0.8987397 0.10336612 0.45399308 0.87701052 0.15710923 0.71544516 0.69542551\n\t\t -0.066866107 0.71544516 0.69542551 -0.066866107 0.71480429 0.69640213 -0.063661665\n\t\t 0.42606863 0.8987397 0.10336612 0.71480429 0.69640213 -0.063661665 0.71703213 0.69612741\n\t\t -0.034791153 0.40778807 0.91167957 0.050019771 0.40778807 0.91167957 0.050019771\n\t\t 0.42606863 0.8987397 0.10336612 0.71480429 0.69640213 -0.063661665 0.42606863 0.8987397\n\t\t 0.10336612 0.40778807 0.91167957 0.050019771 0.036713462 0.99099702 0.1285744 0.036713462\n\t\t 0.99099702 0.1285744 0.07217598 0.96398818 0.25583661 0.42606863 0.8987397 0.10336612\n\t\t 0.45399308 0.87701052 0.15710923 0.42606863 0.8987397 0.10336612 0.07217598 0.96398818\n\t\t 0.25583661 0.07217598 0.96398818 0.25583661 0.12021213 0.92526025 0.3597216 0.45399308\n\t\t 0.87701052 0.15710923 0.49430802 0.84078509 0.22067928 0.45399308 0.87701052 0.15710923\n\t\t 0.12021213 0.92526025 0.3597216 0.12021213 0.92526025 0.3597216 0.1854302 0.86541349\n\t\t 0.46540722 0.49430802 0.84078509 0.22067928 0.1854302 0.86541349 0.46540722 0.12021213\n\t\t 0.92526025 0.3597216 -0.23490122 0.82900476 0.50749224 -0.23490122 0.82900476 0.50749224\n\t\t -0.15768938 0.75249487 0.63942373 0.1854302 0.86541349 0.46540722;\n\tsetAttr \".n[38844:39009]\" -type \"float3\"  -0.29291692 0.88189328 0.36936545 -0.23490122\n\t\t 0.82900476 0.50749224 0.12021213 0.92526025 0.3597216 0.12021213 0.92526025 0.3597216\n\t\t 0.07217598 0.96398818 0.25583661 -0.29291692 0.88189328 0.36936545 0.07217598 0.96398818\n\t\t 0.25583661 0.036713462 0.99099702 0.1285744 -0.33985442 0.92147577 0.18802446 -0.33985442\n\t\t 0.92147577 0.18802446 -0.29291692 0.88189328 0.36936545 0.07217598 0.96398818 0.25583661\n\t\t -0.29291692 0.88189328 0.36936545 -0.33985442 0.92147577 0.18802446 -0.66747057 0.71172196\n\t\t 0.21881765 -0.66747057 0.71172196 0.21881765 -0.61397153 0.66460145 0.42576367 -0.29291692\n\t\t 0.88189328 0.36936545 -0.23490122 0.82900476 0.50749224 -0.29291692 0.88189328 0.36936545\n\t\t -0.61397153 0.66460145 0.42576367 -0.61397153 0.66460145 0.42576367 -0.5535754 0.60225213\n\t\t 0.57515174 -0.23490122 0.82900476 0.50749224 -0.15768938 0.75249487 0.63942373 -0.23490122\n\t\t 0.82900476 0.50749224 -0.5535754 0.60225213 0.57515174 -0.5535754 0.60225213 0.57515174\n\t\t -0.47630253 0.51838732 0.7101962 -0.15768938 0.75249487 0.63942373 -0.47630253 0.51838732\n\t\t 0.7101962 -0.5535754 0.60225213 0.57515174 -0.78429526 0.28284535 0.55211037 -0.78429526\n\t\t 0.28284535 0.55211037 -0.71605587 0.20523679 0.66713464 -0.47630253 0.51838732 0.7101962\n\t\t -0.8411513 0.34559137 0.41590622 -0.78429526 0.28284535 0.55211037 -0.5535754 0.60225213\n\t\t 0.57515174 -0.5535754 0.60225213 0.57515174 -0.61397153 0.66460145 0.42576367 -0.8411513\n\t\t 0.34559137 0.41590622 -0.61397153 0.66460145 0.42576367 -0.66747057 0.71172196 0.21881765\n\t\t -0.89388728 0.39301711 0.2155522 -0.89388728 0.39301711 0.2155522 -0.8411513 0.34559137\n\t\t 0.41590622 -0.61397153 0.66460145 0.42576367 -0.8411513 0.34559137 0.41590622 -0.89388728\n\t\t 0.39301711 0.2155522 -0.98370314 0.014312889 0.1790521 -0.98370314 0.014312889 0.1790521\n\t\t -0.93935972 -0.026063072 0.34186834 -0.8411513 0.34559137 0.41590622 -0.78429526\n\t\t 0.28284535 0.55211037 -0.8411513 0.34559137 0.41590622 -0.93935972 -0.026063072 0.34186834\n\t\t -0.93935972 -0.026063072 0.34186834 -0.89254433 -0.077395186 0.44425794 -0.78429526\n\t\t 0.28284535 0.55211037 -0.71605587 0.20523679 0.66713464 -0.78429526 0.28284535 0.55211037\n\t\t -0.89254433 -0.077395186 0.44425794 -0.89254433 -0.077395186 0.44425794 -0.84188354\n\t\t -0.13351868 0.52284312 -0.71605587 0.20523679 0.66713464 -0.84188354 -0.13351868\n\t\t 0.52284312 -0.89254433 -0.077395186 0.44425794 -0.86471134 -0.42332247 0.27021092\n\t\t -0.86471134 -0.42332247 0.27021092 -0.84090692 -0.44785938 0.30368972 -0.84188354\n\t\t -0.13351868 0.52284312 -0.89254433 -0.077395186 0.44425794 -0.93935972 -0.026063072\n\t\t 0.34186834 -0.89358187 -0.39344487 0.21607107 -0.89358187 -0.39344487 0.21607107\n\t\t -0.86471134 -0.42332247 0.27021092 -0.89254433 -0.077395186 0.44425794 -0.91259509\n\t\t 0.40607902 0.047090031 -0.89388728 0.39301711 0.2155522 -0.66747057 0.71172196 0.21881765\n\t\t -0.98370314 0.014312889 0.1790521 -0.89388728 0.39301711 0.2155522 -0.91259509 0.40607902\n\t\t 0.047090031 -0.66747057 0.71172196 0.21881765 -0.68718553 0.72487539 0.047822453\n\t\t -0.91259509 0.40607902 0.047090031 -0.35700583 0.93316436 0.041230436 -0.68718553\n\t\t 0.72487539 0.047822453 -0.66747057 0.71172196 0.21881765 -0.68810105 0.72557729 -0.0018616831\n\t\t -0.68718553 0.72487539 0.047822453 -0.35700583 0.93316436 0.041230436 -0.35700583\n\t\t 0.93316436 0.041230436 -0.35795191 0.93371367 -0.00094614329 -0.68810105 0.72557729\n\t\t -0.0018616831 -0.35795191 0.93371367 -0.00094614329 -0.35700583 0.93316436 0.041230436\n\t\t 0.026276127 0.99923706 0.028260065 0.036713462 0.99099702 0.1285744 0.026276127 0.99923706\n\t\t 0.028260065 -0.35700583 0.93316436 0.041230436 0.40562123 0.91393793 0.010925558\n\t\t 0.026276127 0.99923706 0.028260065 0.036713462 0.99099702 0.1285744 0.026550794 0.99963379\n\t\t 0.00012199965 0.026276127 0.99923706 0.028260065 0.40562123 0.91393793 0.010925558\n\t\t 0.026276127 0.99923706 0.028260065 0.026550794 0.99963379 0.00012199965 -0.35795191\n\t\t 0.93371367 -0.00094614329 0.40562123 0.91393793 0.010925558 0.40681148 0.91348016\n\t\t 0.00076289475 0.026550794 0.99963379 0.00012199965 0.40681148 0.91348016 0.00076289475\n\t\t 0.40562123 0.91393793 0.010925558 0.72276962 0.69100034 -0.0083316043 0.71703213\n\t\t 0.69612741 -0.034791153 0.72276962 0.69100034 -0.0083316043 0.40562123 0.91393793\n\t\t 0.010925558 0.93182153 0.36185828 -0.026429055 0.72276962 0.69100034 -0.0083316043\n\t\t 0.71703213 0.69612741 -0.034791153 0.72515005 0.68855888 0.00033565235 0.72276962\n\t\t 0.69100034 -0.0083316043 0.93182153 0.36185828 -0.026429055 0.72276962 0.69100034\n\t\t -0.0083316043 0.72515005 0.68855888 0.00033565235 0.40681148 0.91348016 0.00076289475\n\t\t 0.93182153 0.36185828 -0.026429055 0.93337798 0.35886744 -0.0010071375 0.72515005\n\t\t 0.68855888 0.00033565235 0.93337798 0.35886744 -0.0010071375 0.93182153 0.36185828\n\t\t -0.026429055 0.99893183 -0.022156132 -0.040223397 0.98443556 -0.0082702246 -0.17542039\n\t\t 0.99893183 -0.022156132 -0.040223397 0.93182153 0.36185828 -0.026429055 0.93182153\n\t\t 0.36185828 -0.026429055 0.92098749 0.37247869 -0.11395615 0.98443556 -0.0082702246\n\t\t -0.17542039 0.71703213 0.69612741 -0.034791153 0.92098749 0.37247869 -0.11395615\n\t\t 0.93182153 0.36185828 -0.026429055 0.99893183 -0.022156132 -0.040223397 0.99966431\n\t\t -0.025543682 -0.002929775 0.93337798 0.35886744 -0.0010071375 0.40562123 0.91393793\n\t\t 0.010925558 0.40778807 0.91167957 0.050019771 0.71703213 0.69612741 -0.034791153\n\t\t 0.036713462 0.99099702 0.1285744 0.40778807 0.91167957 0.050019771 0.40562123 0.91393793\n\t\t 0.010925558 0.99966431 -0.025543682 -0.002929775 0.99893183 -0.022156132 -0.040223397\n\t\t 0.91308337 -0.40488881 -0.048341289 0.91308337 -0.40488881 -0.048341289 0.91357172\n\t\t -0.40659782 -0.0043641166 0.99966431 -0.025543682 -0.002929775 0.91357172 -0.40659782\n\t\t -0.0043641166 0.91308337 -0.40488881 -0.048341289 0.68654466 -0.72542471 -0.048615932\n\t\t 0.66679913 -0.71456021 -0.21158476 0.68654466 -0.72542471 -0.048615932 0.91308337\n\t\t -0.40488881 -0.048341289 0.35493055 -0.93395782 -0.041474584;\n\tsetAttr \".n[39010:39175]\" -type \"float3\"  0.68654466 -0.72542471 -0.048615932 0.66679913\n\t\t -0.71456021 -0.21158476 0.68816209 -0.72551626 -0.0044251299 0.68654466 -0.72542471\n\t\t -0.048615932 0.35493055 -0.93395782 -0.041474584 0.68654466 -0.72542471 -0.048615932\n\t\t 0.68816209 -0.72551626 -0.0044251299 0.91357172 -0.40659782 -0.0043641166 0.35493055\n\t\t -0.93395782 -0.041474584 0.35782981 -0.93377471 -0.0034485222 0.68816209 -0.72551626\n\t\t -0.0044251299 0.35782981 -0.93377471 -0.0034485222 0.35493055 -0.93395782 -0.041474584\n\t\t -0.030792866 -0.99911499 -0.027649695 -0.046509903 -0.99124122 -0.12338626 -0.030792866\n\t\t -0.99911499 -0.027649695 0.35493055 -0.93395782 -0.041474584 -0.40931398 -0.91232044\n\t\t -0.010315188 -0.030792866 -0.99911499 -0.027649695 -0.046509903 -0.99124122 -0.12338626\n\t\t -0.026764423 -0.99963379 -0.0018310362 -0.030792866 -0.99911499 -0.027649695 -0.40931398\n\t\t -0.91232044 -0.010315188 -0.030792866 -0.99911499 -0.027649695 -0.026764423 -0.99963379\n\t\t -0.0018310362 0.35782981 -0.93377471 -0.0034485222 -0.40931398 -0.91232044 -0.010315188\n\t\t -0.4070251 -0.91338861 -0.00064082071 -0.026764423 -0.99963379 -0.0018310362 -0.4070251\n\t\t -0.91338861 -0.00064082071 -0.40931398 -0.91232044 -0.010315188 -0.72658443 -0.68700242\n\t\t 0.0082095303 -0.72469229 -0.68810105 0.036133967 -0.72658443 -0.68700242 0.0082095303\n\t\t -0.40931398 -0.91232044 -0.010315188 -0.93316436 -0.35847071 0.025666092 -0.72658443\n\t\t -0.68700242 0.0082095303 -0.72469229 -0.68810105 0.036133967 -0.72542471 -0.68828416\n\t\t -0.0003966894 -0.72658443 -0.68700242 0.0082095303 -0.93316436 -0.35847071 0.025666092\n\t\t -0.72658443 -0.68700242 0.0082095303 -0.72542471 -0.68828416 -0.0003966894 -0.4070251\n\t\t -0.91338861 -0.00064082071 -0.93316436 -0.35847071 0.025666092 -0.93353057 -0.35847071\n\t\t -0.00085449161 -0.72542471 -0.68828416 -0.0003966894 -0.72469229 -0.68810105 0.036133967\n\t\t -0.92355102 -0.36564255 0.11548207 -0.93316436 -0.35847071 0.025666092 -0.89358187\n\t\t -0.39344487 0.21607107 -0.92355102 -0.36564255 0.11548207 -0.72469229 -0.68810105\n\t\t 0.036133967 -0.72469229 -0.68810105 0.036133967 -0.71153879 -0.70012534 0.058809221\n\t\t -0.89358187 -0.39344487 0.21607107 -0.86471134 -0.42332247 0.27021092 -0.89358187\n\t\t -0.39344487 0.21607107 -0.71153879 -0.70012534 0.058809221 -0.71153879 -0.70012534\n\t\t 0.058809221 -0.70714414 -0.7047947 0.056581371 -0.86471134 -0.42332247 0.27021092\n\t\t -0.84090692 -0.44785938 0.30368972 -0.86471134 -0.42332247 0.27021092 -0.70714414\n\t\t -0.7047947 0.056581371 -0.70714414 -0.7047947 0.056581371 -0.7169711 -0.69585276\n\t\t 0.041596781 -0.84090692 -0.44785938 0.30368972 -0.81209743 -0.47740126 0.3354595\n\t\t -0.84090692 -0.44785938 0.30368972 -0.7169711 -0.69585276 0.041596781 -0.7169711\n\t\t -0.69585276 0.041596781 -0.73888344 -0.6734522 0.021881821 -0.81209743 -0.47740126\n\t\t 0.3354595 -0.77874064 -0.51451176 0.35886717 -0.81209743 -0.47740126 0.3354595 -0.73888344\n\t\t -0.6734522 0.021881821 -0.73888344 -0.6734522 0.021881821 -0.76165026 -0.64793873\n\t\t 0.0028077511 -0.77874064 -0.51451176 0.35886717 -0.74480402 -0.55250734 0.3740654\n\t\t -0.77874064 -0.51451176 0.35886717 -0.76165026 -0.64793873 0.0028077511 -0.76165026\n\t\t -0.64793873 0.0028077511 -0.77718419 -0.62923086 -0.0046387664 -0.74480402 -0.55250734\n\t\t 0.3740654 -0.71105057 -0.59126586 0.38050482 -0.74480402 -0.55250734 0.3740654 -0.77718419\n\t\t -0.62923086 -0.0046387664 -0.77718419 -0.62923086 -0.0046387664 -0.78417289 -0.62050259\n\t\t -0.005035508 -0.71105057 -0.59126586 0.38050482 -0.67741919 -0.63139766 0.3773309\n\t\t -0.71105057 -0.59126586 0.38050482 -0.78417289 -0.62050259 -0.005035508 -0.78417289\n\t\t -0.62050259 -0.005035508 -0.78270805 -0.62233371 -0.0045472118 -0.67741919 -0.63139766\n\t\t 0.3773309 -0.64467281 -0.67067492 0.36680204 -0.67741919 -0.63139766 0.3773309 -0.78270805\n\t\t -0.62233371 -0.0045472118 -0.78270805 -0.62233371 -0.0045472118 -0.77947307 -0.62636214\n\t\t -0.0034180265 -0.64467281 -0.67067492 0.36680204 -0.61067516 -0.70839584 0.35383165\n\t\t -0.64467281 -0.67067492 0.36680204 -0.77947307 -0.62636214 -0.0034180265 -0.77947307\n\t\t -0.62636214 -0.0034180265 -0.78048021 -0.62514138 0.0042116009 -0.61067516 -0.70839584\n\t\t 0.35383165 -0.56685054 -0.75099963 0.33860293 -0.61067516 -0.70839584 0.35383165\n\t\t -0.78048021 -0.62514138 0.0042116009 -0.78048021 -0.62514138 0.0042116009 -0.78270805\n\t\t -0.62184536 0.025391446 -0.56685054 -0.75099963 0.33860293 -0.50367725 -0.80657387\n\t\t 0.30933568 -0.56685054 -0.75099963 0.33860293 -0.78270805 -0.62184536 0.025391446\n\t\t -0.78270805 -0.62184536 0.025391446 -0.77871013 -0.62382907 0.066316769 -0.50367725\n\t\t -0.80657387 0.30933568 -0.42570242 -0.87163925 0.24283583 -0.50367725 -0.80657387\n\t\t 0.30933568 -0.77871013 -0.62382907 0.066316769 -0.77871013 -0.62382907 0.066316769\n\t\t -0.61079723 -0.76937181 0.18689542 -0.42570242 -0.87163925 0.24283583 -0.37137944\n\t\t -0.92098773 0.11743528 -0.42570242 -0.87163925 0.24283583 -0.61079723 -0.76937181\n\t\t 0.18689542 -0.61079723 -0.76937181 0.18689542 -0.56440908 -0.81521058 0.12973425\n\t\t -0.37137944 -0.92098773 0.11743528 -0.38261026 -0.92291039 -0.042145994 -0.37137944\n\t\t -0.92098773 0.11743528 -0.56440908 -0.81521058 0.12973425 -0.56440908 -0.81521058\n\t\t 0.12973425 -0.69566917 -0.71034908 0.10681484 -0.38261026 -0.92291039 -0.042145994\n\t\t -0.45066655 -0.87517941 -0.17572552 -0.38261026 -0.92291039 -0.042145994 -0.69566917\n\t\t -0.71034908 0.10681484 -0.69566917 -0.71034908 0.10681484 -0.70262742 -0.70754135\n\t\t 0.075289212 -0.45066655 -0.87517941 -0.17572552 -0.70262742 -0.70754135 0.075289212\n\t\t -0.69566917 -0.71034908 0.10681484 -0.88760018 -0.37675124 0.26487017 -0.88760018\n\t\t -0.37675124 0.26487017 -0.83483368 -0.43214232 0.34098333 -0.70262742 -0.70754135\n\t\t 0.075289212 -0.94018358 -0.31681293 0.12500384 -0.88760018 -0.37675124 0.26487017\n\t\t -0.69566917 -0.71034908 0.10681484 -0.69566917 -0.71034908 0.10681484 -0.87200522\n\t\t -0.47309819 0.12543111 -0.94018358 -0.31681293 0.12500384 -0.95147544 -0.30198094\n\t\t -0.058839664 -0.94018358 -0.31681293 0.12500384 -0.87200522 -0.47309819 0.12543111\n\t\t -0.87200522 -0.47309819 0.12543111 -0.89172024 -0.45225406 0.016296918 -0.95147544\n\t\t -0.30198094 -0.058839664 -0.91470063 -0.34308937 -0.21341591 -0.95147544 -0.30198094\n\t\t -0.058839664;\n\tsetAttr \".n[39176:39341]\" -type \"float3\"  -0.89172024 -0.45225406 0.016296918 -0.89172024\n\t\t -0.45225406 0.016296918 -0.77871013 -0.62382907 0.066316769 -0.91470063 -0.34308937\n\t\t -0.21341591 -0.95147544 -0.30198094 -0.058839664 -0.91470063 -0.34308937 -0.21341591\n\t\t -0.88082522 -0.026520891 -0.47264016 -0.88082522 -0.026520891 -0.47264016 -0.96789455\n\t\t 0.069887072 -0.24134037 -0.95147544 -0.30198094 -0.058839664 -0.94018358 -0.31681293\n\t\t 0.12500384 -0.95147544 -0.30198094 -0.058839664 -0.96789455 0.069887072 -0.24134037\n\t\t -0.96789455 0.069887072 -0.24134037 -0.99200416 0.084505454 0.093539223 -0.94018358\n\t\t -0.31681293 0.12500384 -0.88760018 -0.37675124 0.26487017 -0.94018358 -0.31681293\n\t\t 0.12500384 -0.99200416 0.084505454 0.093539223 -0.99200416 0.084505454 0.093539223\n\t\t -0.92013305 0.00054907781 0.39155248 -0.88760018 -0.37675124 0.26487017 -0.83483368\n\t\t -0.43214232 0.34098333 -0.88760018 -0.37675124 0.26487017 -0.92013305 0.00054907781\n\t\t 0.39155248 -0.92013305 0.00054907781 0.39155248 -0.82082576 -0.10080285 0.56218147\n\t\t -0.83483368 -0.43214232 0.34098333 -0.82082576 -0.10080285 0.56218147 -0.92013305\n\t\t 0.00054907781 0.39155248 -0.81231129 0.3645739 0.45518354 -0.81231129 0.3645739 0.45518354\n\t\t -0.6784265 0.23743384 0.69521165 -0.82082576 -0.10080285 0.56218147 -0.88995039 0.45448136\n\t\t 0.037476696 -0.81231129 0.3645739 0.45518354 -0.92013305 0.00054907781 0.39155248\n\t\t -0.92013305 0.00054907781 0.39155248 -0.99200416 0.084505454 0.093539223 -0.88995039\n\t\t 0.45448136 0.037476696 -0.82451868 0.40449202 -0.39558095 -0.88995039 0.45448136\n\t\t 0.037476696 -0.99200416 0.084505454 0.093539223 -0.99200416 0.084505454 0.093539223\n\t\t -0.96789455 0.069887072 -0.24134037 -0.82451868 0.40449202 -0.39558095 -0.70097971\n\t\t 0.27207226 -0.65919983 -0.82451868 0.40449202 -0.39558095 -0.96789455 0.069887072\n\t\t -0.24134037 -0.96789455 0.069887072 -0.24134037 -0.88082522 -0.026520891 -0.47264016\n\t\t -0.70097971 0.27207226 -0.65919983 -0.82451868 0.40449202 -0.39558095 -0.70097971\n\t\t 0.27207226 -0.65919983 -0.43595704 0.51362634 -0.73897523 -0.43595704 0.51362634\n\t\t -0.73897523 -0.57829541 0.65666652 -0.48402363 -0.82451868 0.40449202 -0.39558095\n\t\t -0.88995039 0.45448136 0.037476696 -0.82451868 0.40449202 -0.39558095 -0.57829541\n\t\t 0.65666652 -0.48402363 -0.57829541 0.65666652 -0.48402363 -0.65816242 0.69716465\n\t\t -0.2841579 -0.88995039 0.45448136 0.037476696 -0.81231129 0.3645739 0.45518354 -0.88995039\n\t\t 0.45448136 0.037476696 -0.63832539 0.73445827 0.23035365 -0.63832539 0.73445827 0.23035365\n\t\t -0.60097069 0.66716504 0.44010738 -0.81231129 0.3645739 0.45518354 -0.6784265 0.23743384\n\t\t 0.69521165 -0.81231129 0.3645739 0.45518354 -0.60097069 0.66716504 0.44010738 -0.60097069\n\t\t 0.66716504 0.44010738 -0.44856122 0.5336771 0.71687973 -0.6784265 0.23743384 0.69521165\n\t\t -0.44856122 0.5336771 0.71687973 -0.60097069 0.66716504 0.44010738 -0.31336433 0.88195431\n\t\t 0.3519699 -0.31336433 0.88195431 0.3519699 -0.16443397 0.75981933 0.6289559 -0.44856122\n\t\t 0.5336771 0.71687973 -0.37012878 0.92461914 -0.089724489 -0.31336433 0.88195431 0.3519699\n\t\t -0.60097069 0.66716504 0.44010738 -0.60097069 0.66716504 0.44010738 -0.63832539 0.73445827\n\t\t 0.23035365 -0.37012878 0.92461914 -0.089724489 -0.27546033 0.82500672 -0.49342331\n\t\t -0.37012878 0.92461914 -0.089724489 -0.65816242 0.69716465 -0.2841579 -0.65816242\n\t\t 0.69716465 -0.2841579 -0.57829541 0.65666652 -0.48402363 -0.27546033 0.82500672 -0.49342331\n\t\t -0.13138239 0.69252592 -0.70931125 -0.27546033 0.82500672 -0.49342331 -0.57829541\n\t\t 0.65666652 -0.48402363 -0.57829541 0.65666652 -0.48402363 -0.43595704 0.51362634\n\t\t -0.73897523 -0.13138239 0.69252592 -0.70931125 -0.27546033 0.82500672 -0.49342331\n\t\t -0.13138239 0.69252592 -0.70931125 0.19574548 0.7948851 -0.57426685 0.19574548 0.7948851\n\t\t -0.57426685 0.070711114 0.90273744 -0.42426836 -0.27546033 0.82500672 -0.49342331\n\t\t -0.37012878 0.92461914 -0.089724489 -0.27546033 0.82500672 -0.49342331 0.070711114\n\t\t 0.90273744 -0.42426836 0.070711114 0.90273744 -0.42426836 -0.008423415 0.99157691\n\t\t -0.12918493 -0.37012878 0.92461914 -0.089724489 -0.31336433 0.88195431 0.3519699\n\t\t -0.37012878 0.92461914 -0.089724489 -0.008423415 0.99157691 -0.12918493 -0.008423415\n\t\t 0.99157691 -0.12918493 0.031769466 0.976928 0.21106593 -0.31336433 0.88195431 0.3519699\n\t\t -0.16443397 0.75981933 0.6289559 -0.31336433 0.88195431 0.3519699 0.031769466 0.976928\n\t\t 0.21106593 0.031769466 0.976928 0.21106593 0.15213451 0.88314474 0.44367802 -0.16443397\n\t\t 0.75981933 0.6289559 -0.3277384 0.39600804 -0.85775322 -0.43595704 0.51362634 -0.73897523\n\t\t -0.70097971 0.27207226 -0.65919983 -0.70097971 0.27207226 -0.65919983 -0.59944463\n\t\t 0.14899112 -0.78640097 -0.3277384 0.39600804 -0.85775322 -0.59944463 0.14899112 -0.78640097\n\t\t -0.70097971 0.27207226 -0.65919983 -0.88082522 -0.026520891 -0.47264016 -0.88082522\n\t\t -0.026520891 -0.47264016 -0.79467142 -0.1294598 -0.5930357 -0.59944463 0.14899112\n\t\t -0.78640097 -0.79467142 -0.1294598 -0.5930357 -0.88082522 -0.026520891 -0.47264016\n\t\t -0.91470063 -0.34308937 -0.21341591 -0.91470063 -0.34308937 -0.21341591 -0.86364317\n\t\t -0.40034211 -0.30622271 -0.79467142 -0.1294598 -0.5930357 -0.86364317 -0.40034211\n\t\t -0.30622271 -0.91470063 -0.34308937 -0.21341591 -0.77871013 -0.62382907 0.066316769\n\t\t -0.77871013 -0.62382907 0.066316769 -0.78270805 -0.62184536 0.025391446 -0.86364317\n\t\t -0.40034211 -0.30622271 -0.82155818 -0.44883603 -0.35148165 -0.86364317 -0.40034211\n\t\t -0.30622271 -0.78270805 -0.62184536 0.025391446 -0.78270805 -0.62184536 0.025391446\n\t\t -0.78048021 -0.62514138 0.0042116009 -0.82155818 -0.44883603 -0.35148165 -0.78936106\n\t\t -0.48689258 -0.37385172 -0.82155818 -0.44883603 -0.35148165 -0.78048021 -0.62514138\n\t\t 0.0042116009 -0.78048021 -0.62514138 0.0042116009 -0.77947307 -0.62636214 -0.0034180265\n\t\t -0.78936106 -0.48689258 -0.37385172 -0.76424432 -0.51759416 -0.38468578 -0.78936106\n\t\t -0.48689258 -0.37385172 -0.77947307 -0.62636214 -0.0034180265 -0.77947307 -0.62636214\n\t\t -0.0034180265 -0.78270805 -0.62233371 -0.0045472118 -0.76424432 -0.51759416 -0.38468578;\n\tsetAttr \".n[39342:39507]\" -type \"float3\"  -0.78936106 -0.48689258 -0.37385172 -0.76424432\n\t\t -0.51759416 -0.38468578 -0.62855911 -0.33750448 -0.70067447 -0.62855911 -0.33750448\n\t\t -0.70067447 -0.67564923 -0.2780239 -0.6827296 -0.78936106 -0.48689258 -0.37385172\n\t\t -0.82155818 -0.44883603 -0.35148165 -0.78936106 -0.48689258 -0.37385172 -0.67564923\n\t\t -0.2780239 -0.6827296 -0.67564923 -0.2780239 -0.6827296 -0.7287209 -0.21152405 -0.65129548\n\t\t -0.82155818 -0.44883603 -0.35148165 -0.86364317 -0.40034211 -0.30622271 -0.82155818\n\t\t -0.44883603 -0.35148165 -0.7287209 -0.21152405 -0.65129548 -0.7287209 -0.21152405\n\t\t -0.65129548 -0.79467142 -0.1294598 -0.5930357 -0.86364317 -0.40034211 -0.30622271\n\t\t -0.5233314 0.051850725 -0.85052031 -0.59944463 0.14899112 -0.78640097 -0.79467142\n\t\t -0.1294598 -0.5930357 -0.79467142 -0.1294598 -0.5930357 -0.7287209 -0.21152405 -0.65129548\n\t\t -0.5233314 0.051850725 -0.85052031 -0.45957825 -0.030335605 -0.8876003 -0.5233314\n\t\t 0.051850725 -0.85052031 -0.7287209 -0.21152405 -0.65129548 -0.7287209 -0.21152405\n\t\t -0.65129548 -0.67564923 -0.2780239 -0.6827296 -0.45957825 -0.030335605 -0.8876003\n\t\t -0.39851066 -0.10849349 -0.91070282 -0.45957825 -0.030335605 -0.8876003 -0.67564923\n\t\t -0.2780239 -0.6827296 -0.67564923 -0.2780239 -0.6827296 -0.62855911 -0.33750448 -0.70067447\n\t\t -0.39851066 -0.10849349 -0.91070282 -0.45957825 -0.030335605 -0.8876003 -0.39851066\n\t\t -0.10849349 -0.91070282 -0.1127049 0.13415927 -0.98452711 -0.1127049 0.13415927 -0.98452711\n\t\t -0.17935735 0.2185124 -0.95919675 -0.45957825 -0.030335605 -0.8876003 -0.5233314\n\t\t 0.051850725 -0.85052031 -0.45957825 -0.030335605 -0.8876003 -0.17935735 0.2185124\n\t\t -0.95919675 -0.17935735 0.2185124 -0.95919675 -0.24707794 0.30240777 -0.92059082\n\t\t -0.5233314 0.051850725 -0.85052031 -0.59944463 0.14899112 -0.78640097 -0.5233314\n\t\t 0.051850725 -0.85052031 -0.24707794 0.30240777 -0.92059082 -0.24707794 0.30240777\n\t\t -0.92059082 -0.3277384 0.39600804 -0.85775322 -0.59944463 0.14899112 -0.78640097\n\t\t -0.3277384 0.39600804 -0.85775322 -0.24707794 0.30240777 -0.92059082 0.059602488\n\t\t 0.51219207 -0.85677671 0.059602488 0.51219207 -0.85677671 -0.021210548 0.59239471\n\t\t -0.80532247 -0.3277384 0.39600804 -0.85775322 -0.43595704 0.51362634 -0.73897523\n\t\t -0.3277384 0.39600804 -0.85775322 -0.021210548 0.59239471 -0.80532247 -0.021210548\n\t\t 0.59239471 -0.80532247 -0.13138239 0.69252592 -0.70931125 -0.43595704 0.51362634\n\t\t -0.73897523 0.12506472 0.43699449 -0.89071327 0.059602488 0.51219207 -0.85677671\n\t\t -0.24707794 0.30240777 -0.92059082 -0.24707794 0.30240777 -0.92059082 -0.17935735\n\t\t 0.2185124 -0.95919675 0.12506472 0.43699449 -0.89071327 0.18872635 0.35795161 -0.91445661\n\t\t 0.12506472 0.43699449 -0.89071327 -0.17935735 0.2185124 -0.95919675 -0.17935735 0.2185124\n\t\t -0.95919675 -0.1127049 0.13415927 -0.98452711 0.18872635 0.35795161 -0.91445661 0.12506472\n\t\t 0.43699449 -0.89071327 0.18872635 0.35795161 -0.91445661 0.46504086 0.53169352 -0.70781583\n\t\t 0.46504086 0.53169352 -0.70781583 0.41331199 0.59480584 -0.68944371 0.12506472 0.43699449\n\t\t -0.89071327 0.059602488 0.51219207 -0.85677671 0.12506472 0.43699449 -0.89071327\n\t\t 0.41331199 0.59480584 -0.68944371 0.41331199 0.59480584 -0.68944371 0.35972145 0.65355396\n\t\t -0.66588342 0.059602488 0.51219207 -0.85677671 -0.021210548 0.59239471 -0.80532247\n\t\t 0.059602488 0.51219207 -0.85677671 0.35972145 0.65355396 -0.66588342 0.35972145 0.65355396\n\t\t -0.66588342 0.29142103 0.7159338 -0.63441885 -0.021210548 0.59239471 -0.80532247\n\t\t -0.13138239 0.69252592 -0.70931125 -0.021210548 0.59239471 -0.80532247 0.29142103\n\t\t 0.7159338 -0.63441885 0.29142103 0.7159338 -0.63441885 0.19574548 0.7948851 -0.57426685\n\t\t -0.13138239 0.69252592 -0.70931125 -0.031312 0.038056497 -0.99877924 -0.1127049 0.13415927\n\t\t -0.98452711 -0.39851066 -0.10849349 -0.91070282 -0.39851066 -0.10849349 -0.91070282\n\t\t -0.32599866 -0.19895034 -0.92416149 -0.031312 0.038056497 -0.99877924 -0.32599866\n\t\t -0.19895034 -0.92416149 -0.39851066 -0.10849349 -0.91070282 -0.62855911 -0.33750448\n\t\t -0.70067447 -0.62855911 -0.33750448 -0.70067447 -0.5744803 -0.40757492 -0.70976889\n\t\t -0.32599866 -0.19895034 -0.92416149 -0.5744803 -0.40757492 -0.70976889 -0.62855911\n\t\t -0.33750448 -0.70067447 -0.76424432 -0.51759416 -0.38468578 -0.76424432 -0.51759416\n\t\t -0.38468578 -0.73522121 -0.55494881 -0.38917199 -0.5744803 -0.40757492 -0.70976889\n\t\t -0.73522121 -0.55494881 -0.38917199 -0.76424432 -0.51759416 -0.38468578 -0.78270805\n\t\t -0.62233371 -0.0045472118 -0.78270805 -0.62233371 -0.0045472118 -0.78417289 -0.62050259\n\t\t -0.005035508 -0.73522121 -0.55494881 -0.38917199 -0.6913051 -0.61207944 -0.38392279\n\t\t -0.73522121 -0.55494881 -0.38917199 -0.78417289 -0.62050259 -0.005035508 -0.78417289\n\t\t -0.62050259 -0.005035508 -0.77718419 -0.62923086 -0.0046387664 -0.6913051 -0.61207944\n\t\t -0.38392279 -0.63118356 -0.68834513 -0.35743272 -0.6913051 -0.61207944 -0.38392279\n\t\t -0.77718419 -0.62923086 -0.0046387664 -0.77718419 -0.62923086 -0.0046387664 -0.76165026\n\t\t -0.64793873 0.0028077511 -0.63118356 -0.68834513 -0.35743272 -0.55598599 -0.77526188\n\t\t -0.29966119 -0.63118356 -0.68834513 -0.35743272 -0.76165026 -0.64793873 0.0028077511\n\t\t -0.76165026 -0.64793873 0.0028077511 -0.73888344 -0.6734522 0.021881821 -0.55598599\n\t\t -0.77526188 -0.29966119 -0.63118356 -0.68834513 -0.35743272 -0.55598599 -0.77526188\n\t\t -0.29966119 -0.28574458 -0.76207781 -0.58098078 -0.28574458 -0.76207781 -0.58098078\n\t\t -0.40351555 -0.62636209 -0.66695142 -0.63118356 -0.68834513 -0.35743272 -0.6913051\n\t\t -0.61207944 -0.38392279 -0.63118356 -0.68834513 -0.35743272 -0.40351555 -0.62636209\n\t\t -0.66695142 -0.40351555 -0.62636209 -0.66695142 -0.50050336 -0.50386083 -0.70397037\n\t\t -0.6913051 -0.61207944 -0.38392279 -0.73522121 -0.55494881 -0.38917199 -0.6913051\n\t\t -0.61207944 -0.38392279 -0.50050336 -0.50386083 -0.70397037 -0.50050336 -0.50386083\n\t\t -0.70397037 -0.5744803 -0.40757492 -0.70976889 -0.73522121 -0.55494881 -0.38917199\n\t\t -0.22949909 -0.31693485 -0.92022461 -0.32599866 -0.19895034 -0.92416149 -0.5744803\n\t\t -0.40757492 -0.70976889 -0.5744803 -0.40757492 -0.70976889;\n\tsetAttr \".n[39508:39673]\" -type \"float3\"  -0.50050336 -0.50386083 -0.70397037 -0.22949909\n\t\t -0.31693485 -0.92022461 -0.10541079 -0.46375936 -0.87963492 -0.22949909 -0.31693485\n\t\t -0.92022461 -0.50050336 -0.50386083 -0.70397037 -0.50050336 -0.50386083 -0.70397037\n\t\t -0.40351555 -0.62636209 -0.66695142 -0.10541079 -0.46375936 -0.87963492 0.039887886\n\t\t -0.62593466 -0.77883232 -0.10541079 -0.46375936 -0.87963492 -0.40351555 -0.62636209\n\t\t -0.66695142 -0.40351555 -0.62636209 -0.66695142 -0.28574458 -0.76207781 -0.58098078\n\t\t 0.039887886 -0.62593466 -0.77883232 -0.10541079 -0.46375936 -0.87963492 0.039887886\n\t\t -0.62593466 -0.77883232 0.35819587 -0.38746294 -0.84942168 0.35819587 -0.38746294\n\t\t -0.84942168 0.20798372 -0.22681357 -0.95144504 -0.10541079 -0.46375936 -0.87963492\n\t\t -0.22949909 -0.31693485 -0.92022461 -0.10541079 -0.46375936 -0.87963492 0.20798372\n\t\t -0.22681357 -0.95144504 0.20798372 -0.22681357 -0.95144504 0.074709333 -0.081606545\n\t\t -0.99383527 -0.22949909 -0.31693485 -0.92022461 -0.32599866 -0.19895034 -0.92416149\n\t\t -0.22949909 -0.31693485 -0.92022461 0.074709333 -0.081606545 -0.99383527 0.074709333\n\t\t -0.081606545 -0.99383527 -0.031312 0.038056497 -0.99877924 -0.32599866 -0.19895034\n\t\t -0.92416149 -0.031312 0.038056497 -0.99877924 0.074709333 -0.081606545 -0.99383527\n\t\t 0.3641468 0.16425066 -0.91671497 0.3641468 0.16425066 -0.91671497 0.26633495 0.26929536\n\t\t -0.92547381 -0.031312 0.038056497 -0.99877924 -0.1127049 0.13415927 -0.98452711 -0.031312\n\t\t 0.038056497 -0.99877924 0.26633495 0.26929536 -0.92547381 0.26633495 0.26929536 -0.92547381\n\t\t 0.18872635 0.35795161 -0.91445661 -0.1127049 0.13415927 -0.98452711 0.48295543 0.041474741\n\t\t -0.87462997 0.3641468 0.16425066 -0.91671497 0.074709333 -0.081606545 -0.99383527\n\t\t 0.074709333 -0.081606545 -0.99383527 0.20798372 -0.22681357 -0.95144504 0.48295543\n\t\t 0.041474741 -0.87462997 0.61247599 -0.093050808 -0.78496659 0.48295543 0.041474741\n\t\t -0.87462997 0.20798372 -0.22681357 -0.95144504 0.20798372 -0.22681357 -0.95144504\n\t\t 0.35819587 -0.38746294 -0.84942168 0.61247599 -0.093050808 -0.78496659 0.48295543\n\t\t 0.041474741 -0.87462997 0.61247599 -0.093050808 -0.78496659 0.76952416 0.20999806\n\t\t -0.60307628 0.76952416 0.20999806 -0.60307628 0.68208855 0.30011916 -0.66679889 0.48295543\n\t\t 0.041474741 -0.87462997 0.3641468 0.16425066 -0.91671497 0.48295543 0.041474741 -0.87462997\n\t\t 0.68208855 0.30011916 -0.66679889 0.68208855 0.30011916 -0.66679889 0.59886461 0.38523525\n\t\t -0.70204777 0.3641468 0.16425066 -0.91671497 0.26633495 0.26929536 -0.92547381 0.3641468\n\t\t 0.16425066 -0.91671497 0.59886461 0.38523525 -0.70204777 0.59886461 0.38523525 -0.70204777\n\t\t 0.52638316 0.46229446 -0.71355331 0.26633495 0.26929536 -0.92547381 0.18872635 0.35795161\n\t\t -0.91445661 0.26633495 0.26929536 -0.92547381 0.52638316 0.46229446 -0.71355331 0.52638316\n\t\t 0.46229446 -0.71355331 0.46504086 0.53169352 -0.70781583 0.18872635 0.35795161 -0.91445661\n\t\t 0.47886607 -0.51976067 -0.7074495 0.35819587 -0.38746294 -0.84942168 0.039887886\n\t\t -0.62593466 -0.77883232 0.039887886 -0.62593466 -0.77883232 0.16333529 -0.75231177\n\t\t -0.63820302 0.47886607 -0.51976067 -0.7074495 0.16333529 -0.75231177 -0.63820302\n\t\t 0.039887886 -0.62593466 -0.77883232 -0.28574458 -0.76207781 -0.58098078 -0.28574458\n\t\t -0.76207781 -0.58098078 -0.17896026 -0.86581022 -0.46720779 0.16333529 -0.75231177\n\t\t -0.63820302 -0.17896026 -0.86581022 -0.46720779 -0.28574458 -0.76207781 -0.58098078\n\t\t -0.55598599 -0.77526188 -0.29966119 -0.55598599 -0.77526188 -0.29966119 -0.48539662\n\t\t -0.84374541 -0.22898032 -0.17896026 -0.86581022 -0.46720779 -0.48539662 -0.84374541\n\t\t -0.22898032 -0.55598599 -0.77526188 -0.29966119 -0.73888344 -0.6734522 0.021881821\n\t\t -0.73888344 -0.6734522 0.021881821 -0.7169711 -0.69585276 0.041596781 -0.48539662\n\t\t -0.84374541 -0.22898032 -0.44264019 -0.88122207 -0.16571544 -0.48539662 -0.84374541\n\t\t -0.22898032 -0.7169711 -0.69585276 0.041596781 -0.7169711 -0.69585276 0.041596781\n\t\t -0.70714414 -0.7047947 0.056581371 -0.44264019 -0.88122207 -0.16571544 -0.42109412\n\t\t -0.90075392 -0.10608228 -0.44264019 -0.88122207 -0.16571544 -0.70714414 -0.7047947\n\t\t 0.056581371 -0.70714414 -0.7047947 0.056581371 -0.71153879 -0.70012534 0.058809221\n\t\t -0.42109412 -0.90075392 -0.10608228 -0.41605857 -0.90807837 -0.047639325 -0.42109412\n\t\t -0.90075392 -0.10608228 -0.71153879 -0.70012534 0.058809221 -0.71153879 -0.70012534\n\t\t 0.058809221 -0.72469229 -0.68810105 0.036133967 -0.41605857 -0.90807837 -0.047639325\n\t\t -0.42109412 -0.90075392 -0.10608228 -0.41605857 -0.90807837 -0.047639325 -0.046509903\n\t\t -0.99124122 -0.12338626 -0.046509903 -0.99124122 -0.12338626 -0.069612421 -0.96481216\n\t\t -0.25342566 -0.42109412 -0.90075392 -0.10608228 -0.44264019 -0.88122207 -0.16571544\n\t\t -0.42109412 -0.90075392 -0.10608228 -0.069612421 -0.96481216 -0.25342566 -0.069612421\n\t\t -0.96481216 -0.25342566 -0.11227731 -0.92507714 -0.36274293 -0.44264019 -0.88122207\n\t\t -0.16571544 -0.48539662 -0.84374541 -0.22898032 -0.44264019 -0.88122207 -0.16571544\n\t\t -0.11227731 -0.92507714 -0.36274293 -0.11227731 -0.92507714 -0.36274293 -0.17896026\n\t\t -0.86581022 -0.46720779 -0.48539662 -0.84374541 -0.22898032 0.24030299 -0.82763147\n\t\t -0.50718707 0.16333529 -0.75231177 -0.63820302 -0.17896026 -0.86581022 -0.46720779\n\t\t -0.17896026 -0.86581022 -0.46720779 -0.11227731 -0.92507714 -0.36274293 0.24030299\n\t\t -0.82763147 -0.50718707 0.29572463 -0.88320553 -0.36396369 0.24030299 -0.82763147\n\t\t -0.50718707 -0.11227731 -0.92507714 -0.36274293 -0.11227731 -0.92507714 -0.36274293\n\t\t -0.069612421 -0.96481216 -0.25342566 0.29572463 -0.88320553 -0.36396369 -0.069612421\n\t\t -0.96481216 -0.25342566 -0.046509903 -0.99124122 -0.12338626 0.33542922 -0.92446655\n\t\t -0.18106624 0.33542922 -0.92446655 -0.18106624 0.29572463 -0.88320553 -0.36396369\n\t\t -0.069612421 -0.96481216 -0.25342566 0.29572463 -0.88320553 -0.36396369 0.33542922\n\t\t -0.92446655 -0.18106624 0.66679913 -0.71456021 -0.21158476 0.66679913 -0.71456021\n\t\t -0.21158476 0.61565006 -0.66731763 -0.41908011 0.29572463 -0.88320553 -0.36396369\n\t\t 0.24030299 -0.82763147 -0.50718707 0.29572463 -0.88320553 -0.36396369;\n\tsetAttr \".n[39674:39839]\" -type \"float3\"  0.61565006 -0.66731763 -0.41908011 0.61565006\n\t\t -0.66731763 -0.41908011 0.5550403 -0.60310668 -0.57283235 0.24030299 -0.82763147\n\t\t -0.50718707 0.16333529 -0.75231177 -0.63820302 0.24030299 -0.82763147 -0.50718707\n\t\t 0.5550403 -0.60310668 -0.57283235 0.5550403 -0.60310668 -0.57283235 0.47886607 -0.51976067\n\t\t -0.7074495 0.16333529 -0.75231177 -0.63820302 0.47886607 -0.51976067 -0.7074495 0.5550403\n\t\t -0.60310668 -0.57283235 0.78258628 -0.28919318 -0.5512253 0.78258628 -0.28919318\n\t\t -0.5512253 0.71489614 -0.21091324 -0.66661578 0.47886607 -0.51976067 -0.7074495 0.35819587\n\t\t -0.38746294 -0.84942168 0.47886607 -0.51976067 -0.7074495 0.71489614 -0.21091324\n\t\t -0.66661578 0.71489614 -0.21091324 -0.66661578 0.61247599 -0.093050808 -0.78496659\n\t\t 0.35819587 -0.38746294 -0.84942168 0.84154803 -0.35035226 -0.41108429 0.78258628\n\t\t -0.28919318 -0.5512253 0.5550403 -0.60310668 -0.57283235 0.5550403 -0.60310668 -0.57283235\n\t\t 0.61565006 -0.66731763 -0.41908011 0.84154803 -0.35035226 -0.41108429 0.61565006\n\t\t -0.66731763 -0.41908011 0.66679913 -0.71456021 -0.21158476 0.89565736 -0.39216262\n\t\t -0.20972317 0.89565736 -0.39216262 -0.20972317 0.84154803 -0.35035226 -0.41108429\n\t\t 0.61565006 -0.66731763 -0.41908011 0.84154803 -0.35035226 -0.41108429 0.89565736\n\t\t -0.39216262 -0.20972317 0.98443556 -0.0082702246 -0.17542039 0.98443556 -0.0082702246\n\t\t -0.17542039 0.93981749 0.021271665 -0.34095278 0.84154803 -0.35035226 -0.41108429\n\t\t 0.78258628 -0.28919318 -0.5512253 0.84154803 -0.35035226 -0.41108429 0.93981749 0.021271665\n\t\t -0.34095278 0.93981749 0.021271665 -0.34095278 0.89187294 0.067812376 -0.44712669\n\t\t 0.78258628 -0.28919318 -0.5512253 0.71489614 -0.21091324 -0.66661578 0.78258628 -0.28919318\n\t\t -0.5512253 0.89187294 0.067812376 -0.44712669 0.89187294 0.067812376 -0.44712669\n\t\t 0.84087646 0.12659098 -0.5261696 0.71489614 -0.21091324 -0.66661578 0.61247599 -0.093050808\n\t\t -0.78496659 0.71489614 -0.21091324 -0.66661578 0.84087646 0.12659098 -0.5261696 0.84087646\n\t\t 0.12659098 -0.5261696 0.76952416 0.20999806 -0.60307628 0.61247599 -0.093050808 -0.78496659\n\t\t 0.66679913 -0.71456021 -0.21158476 0.33542922 -0.92446655 -0.18106624 0.35493055\n\t\t -0.93395782 -0.041474584 0.35493055 -0.93395782 -0.041474584 0.33542922 -0.92446655\n\t\t -0.18106624 -0.046509903 -0.99124122 -0.12338626 0.99893183 -0.022156132 -0.040223397\n\t\t 0.98443556 -0.0082702246 -0.17542039 0.89565736 -0.39216262 -0.20972317 0.89565736\n\t\t -0.39216262 -0.20972317 0.91308337 -0.40488881 -0.048341289 0.99893183 -0.022156132\n\t\t -0.040223397 0.91308337 -0.40488881 -0.048341289 0.89565736 -0.39216262 -0.20972317\n\t\t 0.66679913 -0.71456021 -0.21158476 -0.046509903 -0.99124122 -0.12338626 -0.41605857\n\t\t -0.90807837 -0.047639325 -0.40931398 -0.91232044 -0.010315188 -0.40931398 -0.91232044\n\t\t -0.010315188 -0.41605857 -0.90807837 -0.047639325 -0.72469229 -0.68810105 0.036133967\n\t\t -0.38261026 -0.92291039 -0.042145994 -0.45066655 -0.87517941 -0.17572552 -0.13016117\n\t\t -0.91647089 -0.37824634 -0.13016117 -0.91647089 -0.37824634 -0.01892117 -0.98702961\n\t\t -0.15924551 -0.38261026 -0.92291039 -0.042145994 -0.56685054 -0.75099963 0.33860293\n\t\t -0.50367725 -0.80657387 0.30933568 -0.15417925 -0.86053044 0.48542747 -0.15417925\n\t\t -0.86053044 0.48542747 -0.26209271 -0.7662282 0.58662683 -0.56685054 -0.75099963\n\t\t 0.33860293 -0.71105057 -0.59126586 0.38050482 -0.67741919 -0.63139766 0.3773309 -0.46644473\n\t\t -0.5426802 0.69847721 -0.46644473 -0.5426802 0.69847721 -0.52787852 -0.47135848 0.70647305\n\t\t -0.71105057 -0.59126586 0.38050482 -0.84090692 -0.44785938 0.30368972 -0.81209743\n\t\t -0.47740126 0.3354595 -0.76870018 -0.21240902 0.60325938 -0.76870018 -0.21240902\n\t\t 0.60325938 -0.84188354 -0.13351868 0.52284312 -0.84090692 -0.44785938 0.30368972\n\t\t -0.93935972 -0.026063072 0.34186834 -0.98370314 0.014312889 0.1790521 -0.92355102\n\t\t -0.36564255 0.11548207 -0.92355102 -0.36564255 0.11548207 -0.89358187 -0.39344487\n\t\t 0.21607107 -0.93935972 -0.026063072 0.34186834 -0.35700583 0.93316436 0.041230436\n\t\t -0.33985442 0.92147577 0.18802446 0.036713462 0.99099702 0.1285744 -0.66747057 0.71172196\n\t\t 0.21881765 -0.33985442 0.92147577 0.18802446 -0.35700583 0.93316436 0.041230436 -0.91348016\n\t\t 0.40681148 -0.0021058074 -0.91259509 0.40607902 0.047090031 -0.68718553 0.72487539\n\t\t 0.047822453 -0.68718553 0.72487539 0.047822453 -0.68810105 0.72557729 -0.0018616831\n\t\t -0.91348016 0.40681148 -0.0021058074 -0.91259509 0.40607902 0.047090031 -0.91348016\n\t\t 0.40681148 -0.0021058074 -0.99963379 0.026062498 -0.0016480015 -0.99963379 0.026062498\n\t\t -0.0016480015 -0.99890131 0.025513168 0.039155245 -0.91259509 0.40607902 0.047090031\n\t\t -0.91259509 0.40607902 0.047090031 -0.99890131 0.025513168 0.039155245 -0.98370314\n\t\t 0.014312889 0.1790521 -0.98370314 0.014312889 0.1790521 -0.99890131 0.025513168 0.039155245\n\t\t -0.93316436 -0.35847071 0.025666092 -0.93316436 -0.35847071 0.025666092 -0.92355102\n\t\t -0.36564255 0.11548207 -0.98370314 0.014312889 0.1790521 -0.99890131 0.025513168\n\t\t 0.039155245 -0.99963379 0.026062498 -0.0016480015 -0.93353057 -0.35847071 -0.00085449161\n\t\t -0.93353057 -0.35847071 -0.00085449161 -0.93316436 -0.35847071 0.025666092 -0.99890131\n\t\t 0.025513168 0.039155245 0.65776569 -0.72243398 -0.21298862 0.69997275 -0.71071482\n\t\t -0.069856815 0.91763067 -0.3872796 -0.089022465 0.92172015 -0.38636404 -0.033509292\n\t\t 0.91763067 -0.3872796 -0.089022465 0.69997275 -0.71071482 -0.069856815 0.69997275\n\t\t -0.71071482 -0.069856815 0.70409274 -0.70979923 -0.019775942 0.92172015 -0.38636404\n\t\t -0.033509292 0.70409274 -0.70979923 -0.019775942 0.69997275 -0.71071482 -0.069856815\n\t\t 0.37870449 -0.92431396 -0.046906881 0.37870449 -0.92431396 -0.046906881 0.38084078\n\t\t -0.9245581 -0.010284669 0.70409274 -0.70979923 -0.019775942 0.69997275 -0.71071482\n\t\t -0.069856815 0.65776569 -0.72243398 -0.21298862 0.33945769 -0.92614508 -0.1641895\n\t\t 0.33945769 -0.92614508 -0.1641895 0.37870449 -0.92431396 -0.046906881 0.69997275\n\t\t -0.71071482 -0.069856815 0.37870449 -0.92431396 -0.046906881 0.33945769 -0.92614508\n\t\t -0.1641895 -0.024567092 -0.99520862 -0.094607309;\n\tsetAttr \".n[39840:40005]\" -type \"float3\"  -0.024567092 -0.99520862 -0.094607309\n\t\t 0.00012238314 -0.99966431 -0.024933547 0.37870449 -0.92431396 -0.046906881 0.38084078\n\t\t -0.9245581 -0.010284669 0.37870449 -0.92431396 -0.046906881 0.00012238314 -0.99966431\n\t\t -0.024933547 0.00012238314 -0.99966431 -0.024933547 -0.00082369056 -0.99996948 -0.006622442\n\t\t 0.38084078 -0.9245581 -0.010284669 -0.00082369056 -0.99996948 -0.006622442 0.00012238314\n\t\t -0.99966431 -0.024933547 -0.38013825 -0.92489409 -0.0034485226 -0.38013825 -0.92489409\n\t\t -0.0034485226 -0.38282388 -0.9237954 -0.0057679294 -0.00082369056 -0.99996948 -0.006622442\n\t\t -0.38282388 -0.9237954 -0.0057679294 -0.38013825 -0.92489409 -0.0034485226 -0.70592338\n\t\t -0.7080602 0.0170599 -0.70488578 -0.70534402 0.074770398 -0.70592338 -0.7080602 0.0170599\n\t\t -0.38013825 -0.92489409 -0.0034485226 -0.38013825 -0.92489409 -0.0034485226 -0.38865292\n\t\t -0.9212929 -0.011627483 -0.70488578 -0.70534402 0.074770398 -0.38865292 -0.9212929\n\t\t -0.011627483 -0.38013825 -0.92489409 -0.0034485226 0.00012238314 -0.99966431 -0.024933547\n\t\t 0.00012238314 -0.99966431 -0.024933547 -0.024567092 -0.99520862 -0.094607309 -0.38865292\n\t\t -0.9212929 -0.011627483 -0.70592338 -0.7080602 0.0170599 -0.7074188 -0.70674789 -0.0054627606\n\t\t -0.38282388 -0.9237954 -0.0057679294 -0.7074188 -0.70674789 -0.0054627606 -0.70592338\n\t\t -0.7080602 0.0170599 -0.924375 -0.37977263 0.035706684 -0.924375 -0.37977263 0.035706684\n\t\t -0.92428344 -0.38166478 -0.0034790817 -0.7074188 -0.70674789 -0.0054627606 -0.70592338\n\t\t -0.7080602 0.0170599 -0.70488578 -0.70534402 0.074770398 -0.91665381 -0.37058654\n\t\t 0.14960176 -0.91665381 -0.37058654 0.14960176 -0.924375 -0.37977263 0.035706684 -0.70592338\n\t\t -0.7080602 0.0170599 -0.924375 -0.37977263 0.035706684 -0.91665381 -0.37058654 0.14960176\n\t\t -0.97979677 0.029755259 0.19766839 -0.97979677 0.029755259 0.19766839 -0.99868768\n\t\t 0.0093078399 0.050019838 -0.924375 -0.37977263 0.035706684 -0.92428344 -0.38166478\n\t\t -0.0034790817 -0.924375 -0.37977263 0.035706684 -0.99868768 0.0093078399 0.050019838\n\t\t -0.99868768 0.0093078399 0.050019838 -0.99996948 0.0016782088 0.00064088858 -0.92428344\n\t\t -0.38166478 -0.0034790817 -0.99996948 0.0016782088 0.00064088858 -0.99868768 0.0093078399\n\t\t 0.050019838 -0.91680664 0.39515337 0.057252694 -0.91680664 0.39515337 0.057252694\n\t\t -0.92318505 0.38422772 0.0061036735 -0.99996948 0.0016782088 0.00064088858 -0.99868768\n\t\t 0.0093078399 0.050019838 -0.97979677 0.029755259 0.19766839 -0.88314474 0.41929355\n\t\t 0.21027251 -0.88314474 0.41929355 0.21027251 -0.91680664 0.39515337 0.057252694 -0.99868768\n\t\t 0.0093078399 0.050019838 -0.91680664 0.39515337 0.057252694 -0.88314474 0.41929355\n\t\t 0.21027251 -0.65334046 0.73293233 0.18945885 -0.65334046 0.73293233 0.18945885 -0.69508982\n\t\t 0.71675748 0.055330005 -0.91680664 0.39515337 0.057252694 -0.92318505 0.38422772\n\t\t 0.0061036735 -0.91680664 0.39515337 0.057252694 -0.69508982 0.71675748 0.055330005\n\t\t -0.69508982 0.71675748 0.055330005 -0.7064122 0.70769346 0.01058987 -0.92318505 0.38422772\n\t\t 0.0061036735 -0.7064122 0.70769346 0.01058987 -0.69508982 0.71675748 0.055330005\n\t\t -0.37205145 0.92718273 0.043183621 -0.37205145 0.92718273 0.043183621 -0.38383159\n\t\t 0.92330688 0.011047632 -0.7064122 0.70769346 0.01058987 -0.69508982 0.71675748 0.055330005\n\t\t -0.65334046 0.73293233 0.18945885 -0.33527663 0.93127221 0.14246033 -0.33527663 0.93127221\n\t\t 0.14246033 -0.37205145 0.92718273 0.043183621 -0.69508982 0.71675748 0.055330005\n\t\t -0.38383159 0.92330688 0.011047632 -0.37205145 0.92718273 0.043183621 0.0014035422\n\t\t 0.99978638 0.019287623 0.0014035422 0.99978638 0.019287623 -0.0051274188 0.99996948\n\t\t 0.0028076284 -0.38383159 0.92330688 0.011047632 0.54026896 0.82088703 0.18497263\n\t\t 0.49851957 0.85219902 0.15869619 0.18460618 0.92452776 0.33335361 0.18460618 0.92452776\n\t\t 0.33335361 0.23517536 0.89281905 0.38410589 0.54026896 0.82088703 0.18497263 0.57783723\n\t\t 0.79290158 0.19327366 0.54026896 0.82088703 0.18497263 0.23517536 0.89281905 0.38410589\n\t\t 0.23517536 0.89281905 0.38410589 0.28489003 0.85839421 0.42655715 0.57783723 0.79290158\n\t\t 0.19327366 0.60432726 0.77221 0.19608137 0.57783723 0.79290158 0.19327366 0.28489003\n\t\t 0.85839421 0.42655715 0.28489003 0.85839421 0.42655715 0.32587638 0.82345062 0.46440011\n\t\t 0.60432726 0.77221 0.19608137 0.61528343 0.76055193 0.20722061 0.60432726 0.77221\n\t\t 0.19608137 0.32587638 0.82345062 0.46440011 0.32587638 0.82345062 0.46440011 0.35224441\n\t\t 0.78859848 0.5039826 0.61528343 0.76055193 0.20722061 0.60432726 0.77221 0.19608137\n\t\t 0.61528343 0.76055193 0.20722061 0.78209764 0.60631144 -0.14374222 0.78209764 0.60631144\n\t\t -0.14374222 0.7953732 0.59343266 -0.12332535 0.60432726 0.77221 0.19608137 0.57783723\n\t\t 0.79290158 0.19327366 0.60432726 0.77221 0.19608137 0.7953732 0.59343266 -0.12332535\n\t\t 0.7953732 0.59343266 -0.12332535 0.79601413 0.59898704 -0.086581059 0.57783723 0.79290158\n\t\t 0.19327366 0.54026896 0.82088703 0.18497263 0.57783723 0.79290158 0.19327366 0.79601413\n\t\t 0.59898704 -0.086581059 0.79601413 0.59898704 -0.086581059 0.78273857 0.62007529\n\t\t -0.052888621 0.54026896 0.82088703 0.18497263 0.49851957 0.85219902 0.15869619 0.54026896\n\t\t 0.82088703 0.18497263 0.78273857 0.62007529 -0.052888621 0.78273857 0.62007529 -0.052888621\n\t\t 0.75881201 0.64964777 -0.045564182 0.49851957 0.85219902 0.15869619 0.75881201 0.64964777\n\t\t -0.045564182 0.78273857 0.62007529 -0.052888621 0.90188289 0.30497169 -0.30582601\n\t\t 0.90188289 0.30497169 -0.30582601 0.90731519 0.3285625 -0.26227611 0.75881201 0.64964777\n\t\t -0.045564182 0.87810898 0.2957246 -0.37607962 0.90188289 0.30497169 -0.30582601 0.78273857\n\t\t 0.62007529 -0.052888621 0.78273857 0.62007529 -0.052888621 0.79601413 0.59898704\n\t\t -0.086581059 0.87810898 0.2957246 -0.37607962 0.84249383 0.30970207 -0.44071782 0.87810898\n\t\t 0.2957246 -0.37607962 0.79601413 0.59898704 -0.086581059 0.79601413 0.59898704 -0.086581059\n\t\t 0.7953732 0.59343266 -0.12332535 0.84249383 0.30970207 -0.44071782 0.80431521 0.34775862\n\t\t -0.48173469;\n\tsetAttr \".n[40006:40171]\" -type \"float3\"  0.84249383 0.30970207 -0.44071782 0.7953732\n\t\t 0.59343266 -0.12332535 0.7953732 0.59343266 -0.12332535 0.78209764 0.60631144 -0.14374222\n\t\t 0.80431521 0.34775862 -0.48173469 0.84249383 0.30970207 -0.44071782 0.80431521 0.34775862\n\t\t -0.48173469 0.68092901 0.044831846 -0.73091829 0.68092901 0.044831846 -0.73091829\n\t\t 0.72899562 -0.015167525 -0.68431652 0.84249383 0.30970207 -0.44071782 0.87810898\n\t\t 0.2957246 -0.37607962 0.84249383 0.30970207 -0.44071782 0.72899562 -0.015167525 -0.68431652\n\t\t 0.72899562 -0.015167525 -0.68431652 0.78829312 -0.053529266 -0.61296427 0.87810898\n\t\t 0.2957246 -0.37607962 0.90188289 0.30497169 -0.30582601 0.87810898 0.2957246 -0.37607962\n\t\t 0.78829312 -0.053529266 -0.61296427 0.78829312 -0.053529266 -0.61296427 0.84780419\n\t\t -0.065645091 -0.52620012 0.90188289 0.30497169 -0.30582601 0.90731519 0.3285625 -0.26227611\n\t\t 0.90188289 0.30497169 -0.30582601 0.84780419 -0.065645091 -0.52620012 0.84780419\n\t\t -0.065645091 -0.52620012 0.88866848 -0.056336928 -0.45500046 0.90731519 0.3285625\n\t\t -0.26227611 0.88866848 -0.056336928 -0.45500046 0.84780419 -0.065645091 -0.52620012\n\t\t 0.63414425 -0.40211174 -0.66038996 0.63414425 -0.40211174 -0.66038996 0.70256674\n\t\t -0.41486844 -0.57814258 0.88866848 -0.056336928 -0.45500046 0.5592823 -0.36597785\n\t\t -0.74376661 0.63414425 -0.40211174 -0.66038996 0.84780419 -0.065645091 -0.52620012\n\t\t 0.84780419 -0.065645091 -0.52620012 0.78829312 -0.053529266 -0.61296427 0.5592823\n\t\t -0.36597785 -0.74376661 0.49925238 -0.31031212 -0.80895412 0.5592823 -0.36597785\n\t\t -0.74376661 0.78829312 -0.053529266 -0.61296427 0.78829312 -0.053529266 -0.61296427\n\t\t 0.72899562 -0.015167525 -0.68431652 0.49925238 -0.31031212 -0.80895412 0.45909002\n\t\t -0.24198118 -0.85476243 0.49925238 -0.31031212 -0.80895412 0.72899562 -0.015167525\n\t\t -0.68431652 0.72899562 -0.015167525 -0.68431652 0.68092901 0.044831846 -0.73091829\n\t\t 0.45909002 -0.24198118 -0.85476243 0.49925238 -0.31031212 -0.80895412 0.45909002\n\t\t -0.24198118 -0.85476243 0.19016097 -0.47999513 -0.85637981 0.19016097 -0.47999513\n\t\t -0.85637981 0.21784128 -0.53810239 -0.81423378 0.49925238 -0.31031212 -0.80895412\n\t\t 0.5592823 -0.36597785 -0.74376661 0.49925238 -0.31031212 -0.80895412 0.21784128 -0.53810239\n\t\t -0.81423378 0.21784128 -0.53810239 -0.81423378 0.26673195 -0.59343243 -0.75939202\n\t\t 0.5592823 -0.36597785 -0.74376661 0.63414425 -0.40211174 -0.66038996 0.5592823 -0.36597785\n\t\t -0.74376661 0.26673195 -0.59343243 -0.75939202 0.26673195 -0.59343243 -0.75939202\n\t\t 0.33719921 -0.64220095 -0.6883449 0.63414425 -0.40211174 -0.66038996 0.70256674 -0.41486844\n\t\t -0.57814258 0.63414425 -0.40211174 -0.66038996 0.33719921 -0.64220095 -0.6883449\n\t\t 0.33719921 -0.64220095 -0.6883449 0.41566232 -0.67619854 -0.60820329 0.70256674 -0.41486844\n\t\t -0.57814258 0.41566232 -0.67619854 -0.60820329 0.33719921 -0.64220095 -0.6883449\n\t\t 0.026154604 -0.78267777 -0.62184507 0.026154604 -0.78267777 -0.62184507 0.1013217\n\t\t -0.82842493 -0.55082852 0.41566232 -0.67619854 -0.60820329 -0.035004504 -0.73595393\n\t\t -0.67610699 0.026154604 -0.78267777 -0.62184507 0.33719921 -0.64220095 -0.6883449\n\t\t 0.33719921 -0.64220095 -0.6883449 0.26673195 -0.59343243 -0.75939202 -0.035004504\n\t\t -0.73595393 -0.67610699 -0.075594135 -0.6948455 -0.71514016 -0.035004504 -0.73595393\n\t\t -0.67610699 0.26673195 -0.59343243 -0.75939202 0.26673195 -0.59343243 -0.75939202\n\t\t 0.21784128 -0.53810239 -0.81423378 -0.075594135 -0.6948455 -0.71514016 -0.096529841\n\t\t -0.65837592 -0.74645215 -0.075594135 -0.6948455 -0.71514016 0.21784128 -0.53810239\n\t\t -0.81423378 0.21784128 -0.53810239 -0.81423378 0.19016097 -0.47999513 -0.85637981\n\t\t -0.096529841 -0.65837592 -0.74645215 -0.075594135 -0.6948455 -0.71514016 -0.096529841\n\t\t -0.65837592 -0.74645215 -0.38013831 -0.75902605 -0.52851951 -0.38013831 -0.75902605\n\t\t -0.52851951 -0.36286485 -0.77452946 -0.51805162 -0.075594135 -0.6948455 -0.71514016\n\t\t -0.035004504 -0.73595393 -0.67610699 -0.075594135 -0.6948455 -0.71514016 -0.36286485\n\t\t -0.77452946 -0.51805162 -0.36286485 -0.77452946 -0.51805162 -0.32679197 -0.79937148\n\t\t -0.50413519 -0.035004504 -0.73595393 -0.67610699 0.026154604 -0.78267777 -0.62184507\n\t\t -0.035004504 -0.73595393 -0.67610699 -0.32679197 -0.79937148 -0.50413519 -0.32679197\n\t\t -0.79937148 -0.50413519 -0.27362868 -0.83715338 -0.47352514 0.026154604 -0.78267777\n\t\t -0.62184507 0.1013217 -0.82842493 -0.55082852 0.026154604 -0.78267777 -0.62184507\n\t\t -0.27362868 -0.83715338 -0.47352514 -0.27362868 -0.83715338 -0.47352514 -0.20789182\n\t\t -0.8845486 -0.41749316 0.1013217 -0.82842493 -0.55082852 -0.20789182 -0.8845486 -0.41749316\n\t\t -0.27362868 -0.83715338 -0.47352514 -0.55427694 -0.79519045 -0.24576549 -0.55427694\n\t\t -0.79519045 -0.24576549 -0.50340259 -0.83742809 -0.21268344 -0.20789182 -0.8845486\n\t\t -0.41749316 -0.27362868 -0.83715338 -0.47352514 -0.32679197 -0.79937148 -0.50413519\n\t\t -0.59459186 -0.76561803 -0.24546032 -0.59459186 -0.76561803 -0.24546032 -0.55427694\n\t\t -0.79519045 -0.24576549 -0.27362868 -0.83715338 -0.47352514 -0.32679197 -0.79937148\n\t\t -0.50413519 -0.36286485 -0.77452946 -0.51805162 -0.61912876 -0.75124383 -0.22858357\n\t\t -0.61912876 -0.75124383 -0.22858357 -0.59459186 -0.76561803 -0.24546032 -0.32679197\n\t\t -0.79937148 -0.50413519 -0.36286485 -0.77452946 -0.51805162 -0.38013831 -0.75902605\n\t\t -0.52851951 -0.62550712 -0.749901 -0.21530803 -0.62550712 -0.749901 -0.21530803 -0.61912876\n\t\t -0.75124383 -0.22858357 -0.36286485 -0.77452946 -0.51805162 -0.86968583 -0.30747423\n\t\t 0.38605917 -0.88879043 -0.31516489 0.33268231 -0.78170091 -0.62202847 0.044648625\n\t\t -0.78170091 -0.62202847 0.044648625 -0.79638034 -0.59990257 0.076418392 -0.86968583\n\t\t -0.30747423 0.38605917 -0.83928943 -0.31962058 0.43977174 -0.86968583 -0.30747423\n\t\t 0.38605917 -0.79638034 -0.59990257 0.076418392 -0.79638034 -0.59990257 0.076418392\n\t\t -0.79525113 -0.59459233 0.11816771 -0.83928943 -0.31962058 0.43977174 -0.80629891\n\t\t -0.35218382 0.47517323 -0.83928943 -0.31962058 0.43977174 -0.79525113 -0.59459233\n\t\t 0.11816771 -0.83928943 -0.31962058 0.43977174 -0.80629891 -0.35218382 0.47517323;\n\tsetAttr \".n[40172:40337]\" -type \"float3\"  -0.70552689 -0.044190969 0.70726645 -0.70552689\n\t\t -0.044190969 0.70726645 -0.74642169 0.010040408 0.66536456 -0.83928943 -0.31962058\n\t\t 0.43977174 -0.86968583 -0.30747423 0.38605917 -0.83928943 -0.31962058 0.43977174\n\t\t -0.74642169 0.010040408 0.66536456 -0.74642169 0.010040408 0.66536456 -0.79415268\n\t\t 0.045686007 0.60597551 -0.86968583 -0.30747423 0.38605917 -0.88879043 -0.31516489\n\t\t 0.33268231 -0.86968583 -0.30747423 0.38605917 -0.79415268 0.045686007 0.60597551\n\t\t -0.79415268 0.045686007 0.60597551 -0.83889282 0.059938133 0.54094058 -0.88879043\n\t\t -0.31516489 0.33268231 -0.83889282 0.059938133 0.54094058 -0.79415268 0.045686007\n\t\t 0.60597551 -0.60097063 0.37702554 0.70470291 -0.60097063 0.37702554 0.70470291 -0.6565448\n\t\t 0.40980241 0.63322848 -0.83889282 0.059938133 0.54094058 -0.54908913 0.32520512 0.76985991\n\t\t -0.60097063 0.37702554 0.70470291 -0.79415268 0.045686007 0.60597551 -0.79415268\n\t\t 0.045686007 0.60597551 -0.74642169 0.010040408 0.66536456 -0.54908913 0.32520512\n\t\t 0.76985991 -0.50816375 0.25882739 0.82143623 -0.54908913 0.32520512 0.76985991 -0.74642169\n\t\t 0.010040408 0.66536456 -0.74642169 0.010040408 0.66536456 -0.70552689 -0.044190969\n\t\t 0.70726645 -0.50816375 0.25882739 0.82143623 -0.54908913 0.32520512 0.76985991 -0.50816375\n\t\t 0.25882739 0.82143623 -0.2472306 0.51551867 0.82039851 -0.2472306 0.51551867 0.82039851\n\t\t -0.28547031 0.58131659 0.76192504 -0.54908913 0.32520512 0.76985991 -0.60097063 0.37702554\n\t\t 0.70470291 -0.54908913 0.32520512 0.76985991 -0.28547031 0.58131659 0.76192504 -0.28547031\n\t\t 0.58131659 0.76192504 -0.33570382 0.63637191 0.69444865 -0.60097063 0.37702554 0.70470291\n\t\t -0.6565448 0.40980241 0.63322848 -0.60097063 0.37702554 0.70470291 -0.33570382 0.63637191\n\t\t 0.69444865 -0.33570382 0.63637191 0.69444865 -0.39265135 0.67729723 0.62211978 -0.6565448\n\t\t 0.40980241 0.63322848 -0.70223105 0.42515317 0.57103175 -0.6565448 0.40980241 0.63322848\n\t\t -0.39265135 0.67729723 0.62211978 -0.39265135 0.67729723 0.62211978 -0.44499061 0.70342106\n\t\t 0.55421609 -0.70223105 0.42515317 0.57103175 -0.44499061 0.70342106 0.55421609 -0.39265135\n\t\t 0.67729723 0.62211978 -0.085970901 0.84157848 0.53318882 -0.085970901 0.84157848\n\t\t 0.53318882 -0.1395309 0.87224954 0.46870321 -0.44499061 0.70342106 0.55421609 -0.031129127\n\t\t 0.80166024 0.59694201 -0.085970901 0.84157848 0.53318882 -0.39265135 0.67729723 0.62211978\n\t\t -0.39265135 0.67729723 0.62211978 -0.33570382 0.63637191 0.69444865 -0.031129127\n\t\t 0.80166024 0.59694201 0.015869392 0.75392932 0.65672773 -0.031129127 0.80166024 0.59694201\n\t\t -0.33570382 0.63637191 0.69444865 -0.33570382 0.63637191 0.69444865 -0.28547031 0.58131659\n\t\t 0.76192504 0.015869392 0.75392932 0.65672773 0.049836509 0.69975895 0.71260715 0.015869392\n\t\t 0.75392932 0.65672773 -0.28547031 0.58131659 0.76192504 -0.28547031 0.58131659 0.76192504\n\t\t -0.2472306 0.51551867 0.82039851 0.049836509 0.69975895 0.71260715 0.015869392 0.75392932\n\t\t 0.65672773 0.049836509 0.69975895 0.71260715 0.35224441 0.78859848 0.5039826 0.35224441\n\t\t 0.78859848 0.5039826 0.32587638 0.82345062 0.46440011 0.015869392 0.75392932 0.65672773\n\t\t -0.031129127 0.80166024 0.59694201 0.015869392 0.75392932 0.65672773 0.32587638 0.82345062\n\t\t 0.46440011 0.32587638 0.82345062 0.46440011 0.28489003 0.85839421 0.42655715 -0.031129127\n\t\t 0.80166024 0.59694201 -0.085970901 0.84157848 0.53318882 -0.031129127 0.80166024\n\t\t 0.59694201 0.28489003 0.85839421 0.42655715 0.28489003 0.85839421 0.42655715 0.23517536\n\t\t 0.89281905 0.38410589 -0.085970901 0.84157848 0.53318882 -0.1395309 0.87224954 0.46870321\n\t\t -0.085970901 0.84157848 0.53318882 0.23517536 0.89281905 0.38410589 0.23517536 0.89281905\n\t\t 0.38410589 0.18460618 0.92452776 0.33335361 -0.1395309 0.87224954 0.46870321 -0.27164552\n\t\t 0.90316468 -0.33234662 -0.25714922 0.90530103 -0.33805358 0.046265755 0.99343854\n\t\t -0.10449545 0.046265755 0.99343854 -0.10449545 0.050782494 0.99078339 -0.12537012\n\t\t -0.27164552 0.90316468 -0.33234662 0.046265755 0.99343854 -0.10449545 -0.25714922\n\t\t 0.90530103 -0.33805358 -0.30100432 0.91280848 -0.27591792 -0.30100432 0.91280848\n\t\t -0.27591792 0.0018308016 0.99932861 -0.036195025 0.046265755 0.99343854 -0.10449545\n\t\t 0.0018308016 0.99932861 -0.036195025 -0.30100432 0.91280848 -0.27591792 -0.37147155\n\t\t 0.91009235 -0.18353839 -0.37147155 0.91009235 -0.18353839 -0.070162356 0.99581897\n\t\t 0.057924055 0.0018308016 0.99932861 -0.036195025 -0.60844779 0.68706304 -0.3970764\n\t\t -0.37147155 0.91009235 -0.18353839 -0.30100432 0.91280848 -0.27591792 -0.30100432\n\t\t 0.91280848 -0.27591792 -0.55177486 0.68568963 -0.47468495 -0.60844779 0.68706304\n\t\t -0.3970764 -0.55177486 0.68568963 -0.47468495 -0.30100432 0.91280848 -0.27591792\n\t\t -0.25714922 0.90530103 -0.33805358 -0.25714922 0.90530103 -0.33805358 -0.51884544\n\t\t 0.67619836 -0.52296525 -0.55177486 0.68568963 -0.47468495 -0.51884544 0.67619836\n\t\t -0.52296525 -0.25714922 0.90530103 -0.33805358 -0.27164552 0.90316468 -0.33234662\n\t\t -0.27164552 0.90316468 -0.33234662 -0.55241573 0.66853821 -0.49784851 -0.51884544\n\t\t 0.67619836 -0.52296525 -0.69469297 0.34662896 -0.63020724 -0.51884544 0.67619836\n\t\t -0.52296525 -0.55241573 0.66853821 -0.49784851 -0.55241573 0.66853821 -0.49784851\n\t\t -0.74077588 0.33506244 -0.58217108 -0.69469297 0.34662896 -0.63020724 -0.51884544\n\t\t 0.67619836 -0.52296525 -0.69469297 0.34662896 -0.63020724 -0.71129501 0.35813445\n\t\t -0.60475481 -0.71129501 0.35813445 -0.60475481 -0.55177486 0.68568963 -0.47468495\n\t\t -0.51884544 0.67619836 -0.52296525 -0.55177486 0.68568963 -0.47468495 -0.71129501\n\t\t 0.35813445 -0.60475481 -0.74660492 0.36661857 -0.55507064 -0.74660492 0.36661857\n\t\t -0.55507064 -0.60844779 0.68706304 -0.3970764 -0.55177486 0.68568963 -0.47468495\n\t\t -0.77089757 -0.0015872483 -0.63692129 -0.74660492 0.36661857 -0.55507064 -0.71129501\n\t\t 0.35813445 -0.60475481 -0.71129501 0.35813445 -0.60475481 -0.7606433 -0.016754944\n\t\t -0.64891505 -0.77089757 -0.0015872483 -0.63692129;\n\tsetAttr \".n[40338:40503]\" -type \"float3\"  -0.7606433 -0.016754944 -0.64891505 -0.71129501\n\t\t 0.35813445 -0.60475481 -0.69469297 0.34662896 -0.63020724 -0.69469297 0.34662896\n\t\t -0.63020724 -0.76454967 -0.030122055 -0.64384902 -0.7606433 -0.016754944 -0.64891505\n\t\t -0.76454967 -0.030122055 -0.64384902 -0.69469297 0.34662896 -0.63020724 -0.74077588\n\t\t 0.33506244 -0.58217108 -0.74077588 0.33506244 -0.58217108 -0.81963563 -0.043489169\n\t\t -0.5711844 -0.76454967 -0.030122055 -0.64384902 -0.7232275 -0.4023563 -0.56126583\n\t\t -0.76454967 -0.030122055 -0.64384902 -0.81963563 -0.043489169 -0.5711844 -0.81963563\n\t\t -0.043489169 -0.5711844 -0.77993089 -0.41608962 -0.46748251 -0.7232275 -0.4023563\n\t\t -0.56126583 -0.76454967 -0.030122055 -0.64384902 -0.7232275 -0.4023563 -0.56126583\n\t\t -0.6991179 -0.38877553 -0.60005492 -0.6991179 -0.38877553 -0.60005492 -0.7606433\n\t\t -0.016754944 -0.64891505 -0.76454967 -0.030122055 -0.64384902 -0.7606433 -0.016754944\n\t\t -0.64891505 -0.6991179 -0.38877553 -0.60005492 -0.68276 -0.37080017 -0.62950528 -0.68276\n\t\t -0.37080017 -0.62950528 -0.77089757 -0.0015872483 -0.63692129 -0.7606433 -0.016754944\n\t\t -0.64891505 -0.49443015 -0.69206846 -0.52586436 -0.68276 -0.37080017 -0.62950528\n\t\t -0.6991179 -0.38877553 -0.60005492 -0.6991179 -0.38877553 -0.60005492 -0.53627104\n\t\t -0.70836538 -0.45887625 -0.49443015 -0.69206846 -0.52586436 -0.53627104 -0.70836538\n\t\t -0.45887625 -0.6991179 -0.38877553 -0.60005492 -0.7232275 -0.4023563 -0.56126583\n\t\t -0.7232275 -0.4023563 -0.56126583 -0.57509053 -0.71837538 -0.3913388 -0.53627104\n\t\t -0.70836538 -0.45887625 -0.57509053 -0.71837538 -0.3913388 -0.7232275 -0.4023563\n\t\t -0.56126583 -0.77993089 -0.41608962 -0.46748251 -0.77993089 -0.41608962 -0.46748251\n\t\t -0.61830479 -0.72978932 -0.29163483 -0.57509053 -0.71837538 -0.3913388 -0.33634418\n\t\t -0.92852575 -0.15698715 -0.57509053 -0.71837538 -0.3913388 -0.61830479 -0.72978932\n\t\t -0.29163483 -0.61830479 -0.72978932 -0.29163483 -0.35377026 -0.93185228 -0.080202572\n\t\t -0.33634418 -0.92852575 -0.15698715 -0.57509053 -0.71837538 -0.3913388 -0.33634418\n\t\t -0.92852575 -0.15698715 -0.29105473 -0.9266336 -0.23795274 -0.29105473 -0.9266336\n\t\t -0.23795274 -0.53627104 -0.70836538 -0.45887625 -0.57509053 -0.71837538 -0.3913388\n\t\t -0.53627104 -0.70836538 -0.45887625 -0.29105473 -0.9266336 -0.23795274 -0.22870542\n\t\t -0.91567743 -0.33045435 -0.22870542 -0.91567743 -0.33045435 -0.49443015 -0.69206846\n\t\t -0.52586436 -0.53627104 -0.70836538 -0.45887625 0.075319983 -0.99462873 -0.070711315\n\t\t -0.22870542 -0.91567743 -0.33045435 -0.29105473 -0.9266336 -0.23795274 -0.29105473\n\t\t -0.9266336 -0.23795274 0.0025333453 -0.99957275 0.029023178 0.075319983 -0.99462873\n\t\t -0.070711315 0.0025333453 -0.99957275 0.029023178 -0.29105473 -0.9266336 -0.23795274\n\t\t -0.33634418 -0.92852575 -0.15698715 -0.33634418 -0.92852575 -0.15698715 -0.040345162\n\t\t -0.99386579 0.10266434 0.0025333453 -0.99957275 0.029023178 -0.040345162 -0.99386579\n\t\t 0.10266434 -0.33634418 -0.92852575 -0.15698715 -0.35377026 -0.93185228 -0.080202572\n\t\t -0.35377026 -0.93185228 -0.080202572 -0.027100129 -0.99118012 0.12952062 -0.040345162\n\t\t -0.99386579 0.10266434 -0.68276 -0.37080017 -0.62950528 -0.49443015 -0.69206846 -0.52586436\n\t\t -0.4733724 -0.68050188 -0.55928212 -0.4733724 -0.68050188 -0.55928212 -0.68950456\n\t\t -0.36289588 -0.62675864 -0.68276 -0.37080017 -0.62950528 -0.77089757 -0.0015872483\n\t\t -0.63692129 -0.68276 -0.37080017 -0.62950528 -0.68950456 -0.36289588 -0.62675864\n\t\t -0.68950456 -0.36289588 -0.62675864 -0.80062258 0.0022885962 -0.59913939 -0.77089757\n\t\t -0.0015872483 -0.63692129 -0.74660492 0.36661857 -0.55507064 -0.77089757 -0.0015872483\n\t\t -0.63692129 -0.80062258 0.0022885962 -0.59913939 -0.80062258 0.0022885962 -0.59913939\n\t\t -0.79369497 0.3638109 -0.48747218 -0.74660492 0.36661857 -0.55507064 -0.60844779\n\t\t 0.68706304 -0.3970764 -0.74660492 0.36661857 -0.55507064 -0.79369497 0.3638109 -0.48747218\n\t\t -0.79369497 0.3638109 -0.48747218 -0.66957635 0.67534393 -0.30909151 -0.60844779\n\t\t 0.68706304 -0.3970764 -0.37147155 0.91009235 -0.18353839 -0.60844779 0.68706304 -0.3970764\n\t\t -0.66957635 0.67534393 -0.30909151 -0.66957635 0.67534393 -0.30909151 -0.44206089\n\t\t 0.89278835 -0.086489521 -0.37147155 0.91009235 -0.18353839 -0.070162356 0.99581897\n\t\t 0.057924055 -0.37147155 0.91009235 -0.18353839 -0.44206089 0.89278835 -0.086489521\n\t\t -0.44206089 0.89278835 -0.086489521 -0.1409653 0.97820973 0.15219574 -0.070162356\n\t\t 0.99581897 0.057924055 -0.1409653 0.97820973 0.15219574 -0.44206089 0.89278835 -0.086489521\n\t\t -0.4819791 0.87603366 -0.014740505 -0.4819791 0.87603366 -0.014740505 -0.17334543\n\t\t 0.96258426 0.20816667 -0.1409653 0.97820973 0.15219574 -0.17334543 0.96258426 0.20816667\n\t\t -0.4819791 0.87603366 -0.014740505 -0.4946748 0.86858714 0.028229555 -0.4946748 0.86858714\n\t\t 0.028229555 -0.16803521 0.96188229 0.21567424 -0.17334543 0.96258426 0.20816667 -0.16803521\n\t\t 0.96188229 0.21567424 -0.4946748 0.86858714 0.028229555 -0.48869315 0.87188309 0.030945703\n\t\t -0.48869315 0.87188309 0.030945703 -0.13696736 0.97912526 0.15002891 -0.16803521\n\t\t 0.96188229 0.21567424 -0.76723552 0.63667691 -0.076937206 -0.48869315 0.87188309\n\t\t 0.030945703 -0.4946748 0.86858714 0.028229555 -0.4946748 0.86858714 0.028229555 -0.74691015\n\t\t 0.64769411 -0.15018164 -0.76723552 0.63667691 -0.076937206 -0.74691015 0.64769411\n\t\t -0.15018164 -0.4946748 0.86858714 0.028229555 -0.4819791 0.87603366 -0.014740505\n\t\t -0.4819791 0.87603366 -0.014740505 -0.71489626 0.6611222 -0.22754605 -0.74691015\n\t\t 0.64769411 -0.15018164 -0.71489626 0.6611222 -0.22754605 -0.4819791 0.87603366 -0.014740505\n\t\t -0.44206089 0.89278835 -0.086489521 -0.44206089 0.89278835 -0.086489521 -0.66957635\n\t\t 0.67534393 -0.30909151 -0.71489626 0.6611222 -0.22754605 -0.66957635 0.67534393 -0.30909151\n\t\t -0.79369497 0.3638109 -0.48747218 -0.8441726 0.35361767 -0.40284434 -0.8441726 0.35361767\n\t\t -0.40284434 -0.71489626 0.6611222 -0.22754605 -0.66957635 0.67534393 -0.30909151\n\t\t -0.71489626 0.6611222 -0.22754605 -0.8441726 0.35361767 -0.40284434 -0.89486384 0.33454362\n\t\t -0.29541919 -0.89486384 0.33454362 -0.29541919;\n\tsetAttr \".n[40504:40669]\" -type \"float3\"  -0.74691015 0.64769411 -0.15018164 -0.71489626\n\t\t 0.6611222 -0.22754605 -0.74691015 0.64769411 -0.15018164 -0.89486384 0.33454362 -0.29541919\n\t\t -0.93737614 0.31015933 -0.15842161 -0.93737614 0.31015933 -0.15842161 -0.76723552\n\t\t 0.63667691 -0.076937206 -0.74691015 0.64769411 -0.15018164 -0.97579885 -0.067446217\n\t\t -0.20795313 -0.93737614 0.31015933 -0.15842161 -0.89486384 0.33454362 -0.29541919\n\t\t -0.89486384 0.33454362 -0.29541919 -0.91894281 -0.032441489 -0.39298683 -0.97579885\n\t\t -0.067446217 -0.20795313 -0.91894281 -0.032441489 -0.39298683 -0.89486384 0.33454362\n\t\t -0.29541919 -0.8441726 0.35361767 -0.40284434 -0.8441726 0.35361767 -0.40284434 -0.85384685\n\t\t -0.0066838562 -0.52046263 -0.91894281 -0.032441489 -0.39298683 -0.85384685 -0.0066838562\n\t\t -0.52046263 -0.8441726 0.35361767 -0.40284434 -0.79369497 0.3638109 -0.48747218 -0.79369497\n\t\t 0.3638109 -0.48747218 -0.80062258 0.0022885962 -0.59913939 -0.85384685 -0.0066838562\n\t\t -0.52046263 -0.73702186 -0.37278387 -0.56370741 -0.85384685 -0.0066838562 -0.52046263\n\t\t -0.80062258 0.0022885962 -0.59913939 -0.80062258 0.0022885962 -0.59913939 -0.68950456\n\t\t -0.36289588 -0.62675864 -0.73702186 -0.37278387 -0.56370741 -0.85384685 -0.0066838562\n\t\t -0.52046263 -0.73702186 -0.37278387 -0.56370741 -0.80669564 -0.40333289 -0.43186739\n\t\t -0.80669564 -0.40333289 -0.43186739 -0.91894281 -0.032441489 -0.39298683 -0.85384685\n\t\t -0.0066838562 -0.52046263 -0.91894281 -0.032441489 -0.39298683 -0.80669564 -0.40333289\n\t\t -0.43186739 -0.86883134 -0.44169468 -0.22357857 -0.86883134 -0.44169468 -0.22357857\n\t\t -0.97579885 -0.067446217 -0.20795313 -0.91894281 -0.032441489 -0.39298683 -0.62514091\n\t\t -0.75246453 -0.2071901 -0.86883134 -0.44169468 -0.22357857 -0.80669564 -0.40333289\n\t\t -0.43186739 -0.80669564 -0.40333289 -0.43186739 -0.56465322 -0.71825337 -0.40650648\n\t\t -0.62514091 -0.75246453 -0.2071901 -0.56465322 -0.71825337 -0.40650648 -0.80669564\n\t\t -0.40333289 -0.43186739 -0.73702186 -0.37278387 -0.56370741 -0.73702186 -0.37278387\n\t\t -0.56370741 -0.50325 -0.68874198 -0.52183592 -0.56465322 -0.71825337 -0.40650648\n\t\t -0.50325 -0.68874198 -0.52183592 -0.73702186 -0.37278387 -0.56370741 -0.68950456\n\t\t -0.36289588 -0.62675864 -0.68950456 -0.36289588 -0.62675864 -0.4733724 -0.68050188\n\t\t -0.55928212 -0.50325 -0.68874198 -0.52183592 -0.18625417 -0.89864808 -0.39713731\n\t\t -0.50325 -0.68874198 -0.52183592 -0.4733724 -0.68050188 -0.55928212 -0.4733724 -0.68050188\n\t\t -0.55928212 -0.18127966 -0.89907533 -0.39841908 -0.18625417 -0.89864808 -0.39713731\n\t\t -0.18127966 -0.89907533 -0.39841908 -0.4733724 -0.68050188 -0.55928212 -0.49443015\n\t\t -0.69206846 -0.52586436 -0.49443015 -0.69206846 -0.52586436 -0.22870542 -0.91567743\n\t\t -0.33045435 -0.18127966 -0.89907533 -0.39841908 -0.50325 -0.68874198 -0.52183592\n\t\t -0.18625417 -0.89864808 -0.39713731 -0.22922423 -0.91879028 -0.32129881 -0.22922423\n\t\t -0.91879028 -0.32129881 -0.56465322 -0.71825337 -0.40650648 -0.50325 -0.68874198\n\t\t -0.52183592 -0.56465322 -0.71825337 -0.40650648 -0.22922423 -0.91879028 -0.32129881\n\t\t -0.28226539 -0.94509727 -0.16455573 -0.28226539 -0.94509727 -0.16455573 -0.62514091\n\t\t -0.75246453 -0.2071901 -0.56465322 -0.71825337 -0.40650648 0.09927702 -0.98965418\n\t\t -0.10327457 -0.28226539 -0.94509727 -0.16455573 -0.22922423 -0.91879028 -0.32129881\n\t\t -0.22922423 -0.91879028 -0.32129881 0.13760826 -0.97189242 -0.19092372 0.09927702\n\t\t -0.98965418 -0.10327457 0.13760826 -0.97189242 -0.19092372 -0.22922423 -0.91879028\n\t\t -0.32129881 -0.18625417 -0.89864808 -0.39713731 -0.18625417 -0.89864808 -0.39713731\n\t\t 0.15784203 -0.96511728 -0.20883809 0.13760826 -0.97189242 -0.19092372 0.15784203\n\t\t -0.96511728 -0.20883809 -0.18625417 -0.89864808 -0.39713731 -0.18127966 -0.89907533\n\t\t -0.39841908 -0.18127966 -0.89907533 -0.39841908 0.13956144 -0.97613448 -0.16635633\n\t\t 0.15784203 -0.96511728 -0.20883809 0.13956144 -0.97613448 -0.16635633 -0.18127966\n\t\t -0.89907533 -0.39841908 -0.22870542 -0.91567743 -0.33045435 -0.22870542 -0.91567743\n\t\t -0.33045435 0.075319983 -0.99462873 -0.070711315 0.13956144 -0.97613448 -0.16635633\n\t\t 0.43446177 -0.89565712 0.095004186 0.13956144 -0.97613448 -0.16635633 0.075319983\n\t\t -0.99462873 -0.070711315 0.075319983 -0.99462873 -0.070711315 0.36536786 -0.90868849\n\t\t 0.20191054 0.43446177 -0.89565712 0.095004186 0.13956144 -0.97613448 -0.16635633\n\t\t 0.43446177 -0.89565712 0.095004186 0.47148073 -0.88177115 0.012909394 0.47148073\n\t\t -0.88177115 0.012909394 0.15784203 -0.96511728 -0.20883809 0.13956144 -0.97613448\n\t\t -0.16635633 0.47657731 -0.87847519 -0.033112515 0.13760826 -0.97189242 -0.19092372\n\t\t 0.15784203 -0.96511728 -0.20883809 0.15784203 -0.96511728 -0.20883809 0.47148073\n\t\t -0.88177115 0.012909394 0.47657731 -0.87847519 -0.033112515 0.46079925 -0.88702035\n\t\t -0.028687334 0.09927702 -0.98965418 -0.10327457 0.13760826 -0.97189242 -0.19092372\n\t\t 0.13760826 -0.97189242 -0.19092372 0.47657731 -0.87847519 -0.033112515 0.46079925\n\t\t -0.88702035 -0.028687334 -0.28226539 -0.94509727 -0.16455573 0.09927702 -0.98965418\n\t\t -0.10327457 0.074129768 -0.99697864 0.022064958 0.074129768 -0.99697864 0.022064958\n\t\t -0.31034243 -0.95025498 0.025513545 -0.28226539 -0.94509727 -0.16455573 -0.62514091\n\t\t -0.75246453 -0.2071901 -0.28226539 -0.94509727 -0.16455573 -0.31034243 -0.95025498\n\t\t 0.025513545 -0.31034243 -0.95025498 0.025513545 -0.64909792 -0.76039934 0.020630568\n\t\t -0.62514091 -0.75246453 -0.2071901 -0.86883134 -0.44169468 -0.22357857 -0.62514091\n\t\t -0.75246453 -0.2071901 -0.64909792 -0.76039934 0.020630568 -0.64909792 -0.76039934\n\t\t 0.020630568 -0.8896144 -0.45661822 0.0086672902 -0.86883134 -0.44169468 -0.22357857\n\t\t -0.97579885 -0.067446217 -0.20795313 -0.86883134 -0.44169468 -0.22357857 -0.8896144\n\t\t -0.45661822 0.0086672902 -0.8896144 -0.45661822 0.0086672902 -0.99630725 -0.085635245\n\t\t -0.0056764362 -0.97579885 -0.067446217 -0.20795313 -0.93737614 0.31015933 -0.15842161\n\t\t -0.97579885 -0.067446217 -0.20795313 -0.99630725 -0.085635245 -0.0056764362 -0.99630725\n\t\t -0.085635245 -0.0056764362 -0.95455807 0.29752466 -0.015930684 -0.93737614 0.31015933\n\t\t -0.15842161 -0.76723552 0.63667691 -0.076937206 -0.93737614 0.31015933 -0.15842161;\n\tsetAttr \".n[40670:40835]\" -type \"float3\"  -0.95455807 0.29752466 -0.015930684 -0.95455807\n\t\t 0.29752466 -0.015930684 -0.77196586 0.63545614 -0.015747597 -0.76723552 0.63667691\n\t\t -0.076937206 -0.48869315 0.87188309 0.030945703 -0.76723552 0.63667691 -0.076937206\n\t\t -0.77196586 0.63545614 -0.015747597 -0.77196586 0.63545614 -0.015747597 -0.47334236\n\t\t 0.88085562 -0.0014344355 -0.48869315 0.87188309 0.030945703 -0.13696736 0.97912526\n\t\t 0.15002891 -0.48869315 0.87188309 0.030945703 -0.47334236 0.88085562 -0.0014344355\n\t\t -0.47334236 0.88085562 -0.0014344355 -0.10196265 0.99447608 0.024628364 -0.13696736\n\t\t 0.97912526 0.15002891 -0.10196265 0.99447608 0.024628364 -0.47334236 0.88085562 -0.0014344355\n\t\t -0.46604842 0.88293087 -0.056581385 -0.46604842 0.88293087 -0.056581385 -0.092074648\n\t\t 0.98800623 -0.12393574 -0.10196265 0.99447608 0.024628364 -0.092074648 0.98800623\n\t\t -0.12393574 -0.46604842 0.88293087 -0.056581385 -0.47547865 0.87032676 -0.1280252\n\t\t -0.47547865 0.87032676 -0.1280252 -0.11685568 0.95324558 -0.27863404 -0.092074648\n\t\t 0.98800623 -0.12393574 -0.11685568 0.95324558 -0.27863404 -0.47547865 0.87032676\n\t\t -0.1280252 -0.50492901 0.83816016 -0.20609155 -0.50492901 0.83816016 -0.20609155\n\t\t -0.17392525 0.88982809 -0.42179638 -0.11685568 0.95324558 -0.27863404 -0.75902605\n\t\t 0.65004402 0.035370905 -0.50492901 0.83816016 -0.20609155 -0.47547865 0.87032676\n\t\t -0.1280252 -0.47547865 0.87032676 -0.1280252 -0.76079613 0.6478467 0.037995495 -0.75902605\n\t\t 0.65004402 0.035370905 -0.76079613 0.6478467 0.037995495 -0.47547865 0.87032676 -0.1280252\n\t\t -0.46604842 0.88293087 -0.056581385 -0.46604842 0.88293087 -0.056581385 -0.76741862\n\t\t 0.64070535 0.0223395 -0.76079613 0.6478467 0.037995495 -0.76741862 0.64070535 0.0223395\n\t\t -0.46604842 0.88293087 -0.056581385 -0.47334236 0.88085562 -0.0014344355 -0.47334236\n\t\t 0.88085562 -0.0014344355 -0.77196586 0.63545614 -0.015747597 -0.76741862 0.64070535\n\t\t 0.0223395 -0.77196586 0.63545614 -0.015747597 -0.95455807 0.29752466 -0.015930684\n\t\t -0.94750828 0.30320108 0.10122988 -0.94750828 0.30320108 0.10122988 -0.76741862 0.64070535\n\t\t 0.0223395 -0.77196586 0.63545614 -0.015747597 -0.76741862 0.64070535 0.0223395 -0.94750828\n\t\t 0.30320108 0.10122988 -0.92510772 0.32676139 0.19333473 -0.92510772 0.32676139 0.19333473\n\t\t -0.76079613 0.6478467 0.037995495 -0.76741862 0.64070535 0.0223395 -0.76079613 0.6478467\n\t\t 0.037995495 -0.92510772 0.32676139 0.19333473 -0.89446712 0.36143047 0.26316106 -0.89446712\n\t\t 0.36143047 0.26316106 -0.75902605 0.65004402 0.035370905 -0.76079613 0.6478467 0.037995495\n\t\t -0.89437544 0.021149084 0.44676045 -0.89446712 0.36143047 0.26316106 -0.92510772\n\t\t 0.32676139 0.19333473 -0.92510772 0.32676139 0.19333473 -0.94753867 -0.039186038\n\t\t 0.31717888 -0.89437544 0.021149084 0.44676045 -0.94753867 -0.039186038 0.31717888\n\t\t -0.92510772 0.32676139 0.19333473 -0.94750828 0.30320108 0.10122988 -0.94750828 0.30320108\n\t\t 0.10122988 -0.98281807 -0.076327085 0.16797388 -0.94753867 -0.039186038 0.31717888\n\t\t -0.98281807 -0.076327085 0.16797388 -0.94750828 0.30320108 0.10122988 -0.95455807\n\t\t 0.29752466 -0.015930684 -0.95455807 0.29752466 -0.015930684 -0.99630725 -0.085635245\n\t\t -0.0056764362 -0.98281807 -0.076327085 0.16797388 -0.87273771 -0.43989402 0.21155433\n\t\t -0.98281807 -0.076327085 0.16797388 -0.99630725 -0.085635245 -0.0056764362 -0.99630725\n\t\t -0.085635245 -0.0056764362 -0.8896144 -0.45661822 0.0086672902 -0.87273771 -0.43989402\n\t\t 0.21155433 -0.98281807 -0.076327085 0.16797388 -0.87273771 -0.43989402 0.21155433\n\t\t -0.83062214 -0.39320073 0.39417711 -0.83062214 -0.39320073 0.39417711 -0.94753867\n\t\t -0.039186038 0.31717888 -0.98281807 -0.076327085 0.16797388 -0.94753867 -0.039186038\n\t\t 0.31717888 -0.83062214 -0.39320073 0.39417711 -0.76293212 -0.31711805 0.56328011\n\t\t -0.76293212 -0.31711805 0.56328011 -0.89437544 0.021149084 0.44676045 -0.94753867\n\t\t -0.039186038 0.31717888 -0.52046245 -0.60753208 0.59996343 -0.76293212 -0.31711805\n\t\t 0.56328011 -0.83062214 -0.39320073 0.39417711 -0.83062214 -0.39320073 0.39417711\n\t\t -0.59428668 -0.68831456 0.41590631 -0.52046245 -0.60753208 0.59996343 -0.59428668\n\t\t -0.68831456 0.41590631 -0.83062214 -0.39320073 0.39417711 -0.87273771 -0.43989402\n\t\t 0.21155433 -0.87273771 -0.43989402 0.21155433 -0.63624966 -0.73796827 0.22479939\n\t\t -0.59428668 -0.68831456 0.41590631 -0.63624966 -0.73796827 0.22479939 -0.87273771\n\t\t -0.43989402 0.21155433 -0.8896144 -0.45661822 0.0086672902 -0.8896144 -0.45661822\n\t\t 0.0086672902 -0.64909792 -0.76039934 0.020630568 -0.63624966 -0.73796827 0.22479939\n\t\t -0.30625296 -0.92977703 0.20419942 -0.63624966 -0.73796827 0.22479939 -0.64909792\n\t\t -0.76039934 0.020630568 -0.64909792 -0.76039934 0.020630568 -0.31034243 -0.95025498\n\t\t 0.025513545 -0.30625296 -0.92977703 0.20419942 -0.63624966 -0.73796827 0.22479939\n\t\t -0.30625296 -0.92977703 0.20419942 -0.27048528 -0.88506734 0.37876529 -0.27048528\n\t\t -0.88506734 0.37876529 -0.59428668 -0.68831456 0.41590631 -0.63624966 -0.73796827\n\t\t 0.22479939 -0.59428668 -0.68831456 0.41590631 -0.27048528 -0.88506734 0.37876529\n\t\t -0.20020117 -0.80983919 0.55137795 -0.20020117 -0.80983919 0.55137795 -0.52046245\n\t\t -0.60753208 0.59996343 -0.59428668 -0.68831456 0.41590631 0.15326424 -0.89403963\n\t\t 0.42088082 -0.20020117 -0.80983919 0.55137795 -0.27048528 -0.88506734 0.37876529\n\t\t -0.27048528 -0.88506734 0.37876529 0.097354345 -0.95361179 0.28473777 0.15326424\n\t\t -0.89403963 0.42088082 0.097354345 -0.95361179 0.28473777 -0.27048528 -0.88506734\n\t\t 0.37876529 -0.30625296 -0.92977703 0.20419942 -0.30625296 -0.92977703 0.20419942\n\t\t 0.071810357 -0.98590046 0.15097514 0.097354345 -0.95361179 0.28473777 0.071810357\n\t\t -0.98590046 0.15097514 -0.30625296 -0.92977703 0.20419942 -0.31034243 -0.95025498\n\t\t 0.025513545 -0.31034243 -0.95025498 0.025513545 0.074129768 -0.99697864 0.022064958\n\t\t 0.071810357 -0.98590046 0.15097514 0.44370887 -0.89327663 0.071749084 0.071810357\n\t\t -0.98590046 0.15097514 0.074129768 -0.99697864 0.022064958 0.074129768 -0.99697864\n\t\t 0.022064958 0.44761524 -0.89410067 0.013397692 0.44370887 -0.89327663 0.071749084;\n\tsetAttr \".n[40836:41001]\" -type \"float3\"  0.45570266 -0.87850571 0.14322342 0.097354345\n\t\t -0.95361179 0.28473777 0.071810357 -0.98590046 0.15097514 0.071810357 -0.98590046\n\t\t 0.15097514 0.44370887 -0.89327663 0.071749084 0.45570266 -0.87850571 0.14322342 0.48719776\n\t\t -0.84444696 0.22251052 0.15326424 -0.89403963 0.42088082 0.097354345 -0.95361179\n\t\t 0.28473777 0.097354345 -0.95361179 0.28473777 0.45570266 -0.87850571 0.14322342 0.48719776\n\t\t -0.84444696 0.22251052 -0.20020117 -0.80983919 0.55137795 0.15326424 -0.89403963\n\t\t 0.42088082 0.22782093 -0.81231105 0.53685117 0.22782093 -0.81231105 0.53685117 -0.10663145\n\t\t -0.70842618 0.69765317 -0.20020117 -0.80983919 0.55137795 -0.52046245 -0.60753208\n\t\t 0.59996343 -0.20020117 -0.80983919 0.55137795 -0.10663145 -0.70842618 0.69765317\n\t\t -0.10663145 -0.70842618 0.69765317 -0.42237601 -0.50114453 0.75524163 -0.52046245\n\t\t -0.60753208 0.59996343 -0.76293212 -0.31711805 0.56328011 -0.52046245 -0.60753208\n\t\t 0.59996343 -0.42237601 -0.50114453 0.75524163 -0.42237601 -0.50114453 0.75524163\n\t\t -0.67494732 -0.2201912 0.70421463 -0.76293212 -0.31711805 0.56328011 -0.89437544\n\t\t 0.021149084 0.44676045 -0.76293212 -0.31711805 0.56328011 -0.67494732 -0.2201912\n\t\t 0.70421463 -0.67494732 -0.2201912 0.70421463 -0.82888269 0.095278576 0.5512253 -0.89437544\n\t\t 0.021149084 0.44676045 -0.89446712 0.36143047 0.26316106 -0.89437544 0.021149084\n\t\t 0.44676045 -0.82888269 0.095278576 0.5512253 -0.82888269 0.095278576 0.5512253 -0.86059159\n\t\t 0.40095195 0.31397441 -0.89446712 0.36143047 0.26316106 -0.75902605 0.65004402 0.035370905\n\t\t -0.89446712 0.36143047 0.26316106 -0.86059159 0.40095195 0.31397441 -0.86059159 0.40095195\n\t\t 0.31397441 -0.76186424 0.64723629 0.024506316 -0.75902605 0.65004402 0.035370905\n\t\t -0.50492901 0.83816016 -0.20609155 -0.75902605 0.65004402 0.035370905 -0.76186424\n\t\t 0.64723629 0.024506316 -0.76186424 0.64723629 0.024506316 -0.54515237 0.79177201\n\t\t -0.27546012 -0.50492901 0.83816016 -0.20609155 -0.17392525 0.88982809 -0.42179638\n\t\t -0.50492901 0.83816016 -0.20609155 -0.54515237 0.79177201 -0.27546012 -0.54515237\n\t\t 0.79177201 -0.27546012 -0.24619307 0.80764174 -0.53578299 -0.17392525 0.88982809\n\t\t -0.42179638 -0.24619307 0.80764174 -0.53578299 -0.54515237 0.79177201 -0.27546012\n\t\t -0.58763415 0.74040937 -0.32624292 -0.58763415 0.74040937 -0.32624292 -0.31913227\n\t\t 0.72014511 -0.61601615 -0.24619307 0.80764174 -0.53578299 -0.31913227 0.72014511\n\t\t -0.61601615 -0.58763415 0.74040937 -0.32624292 -0.62981069 0.68794805 -0.36057624\n\t\t -0.62981069 0.68794805 -0.36057624 -0.38905016 0.63270956 -0.66951513 -0.31913227\n\t\t 0.72014511 -0.61601615 -0.38905016 0.63270956 -0.66951513 -0.62981069 0.68794805\n\t\t -0.36057624 -0.67116326 0.6365549 -0.37986395 -0.67116326 0.6365549 -0.37986395 -0.45658761\n\t\t 0.54814279 -0.70073557 -0.38905016 0.63270956 -0.66951513 -0.78118247 0.6242559 0.0050965445\n\t\t -0.67116326 0.6365549 -0.37986395 -0.62981069 0.68794805 -0.36057624 -0.62981069\n\t\t 0.68794805 -0.36057624 -0.77361387 0.633564 0.0083620241 -0.78118247 0.6242559 0.0050965445\n\t\t -0.77361387 0.633564 0.0083620241 -0.62981069 0.68794805 -0.36057624 -0.58763415\n\t\t 0.74040937 -0.32624292 -0.58763415 0.74040937 -0.32624292 -0.76696086 0.64146829\n\t\t 0.015137133 -0.77361387 0.633564 0.0083620241 -0.76696086 0.64146829 0.015137133\n\t\t -0.58763415 0.74040937 -0.32624292 -0.54515237 0.79177201 -0.27546012 -0.54515237\n\t\t 0.79177201 -0.27546012 -0.76186424 0.64723629 0.024506316 -0.76696086 0.64146829\n\t\t 0.015137133 -0.76186424 0.64723629 0.024506316 -0.86059159 0.40095195 0.31397441\n\t\t -0.82677704 0.44050393 0.3497726 -0.82677704 0.44050393 0.3497726 -0.76696086 0.64146829\n\t\t 0.015137133 -0.76186424 0.64723629 0.024506316 -0.76696086 0.64146829 0.015137133\n\t\t -0.82677704 0.44050393 0.3497726 -0.79531246 0.47776705 0.37305823 -0.79531246 0.47776705\n\t\t 0.37305823 -0.77361387 0.633564 0.0083620241 -0.76696086 0.64146829 0.015137133 -0.77361387\n\t\t 0.633564 0.0083620241 -0.79531246 0.47776705 0.37305823 -0.76699138 0.51194775 0.38676104\n\t\t -0.76699138 0.51194775 0.38676104 -0.78118247 0.6242559 0.0050965445 -0.77361387\n\t\t 0.633564 0.0083620241 -0.63515133 0.32105458 0.70247507 -0.76699138 0.51194775 0.38676104\n\t\t -0.79531246 0.47776705 0.37305823 -0.79531246 0.47776705 0.37305823 -0.69490653 0.24900036\n\t\t 0.67458111 -0.63515133 0.32105458 0.70247507 -0.69490653 0.24900036 0.67458111 -0.79531246\n\t\t 0.47776705 0.37305823 -0.82677704 0.44050393 0.3497726 -0.82677704 0.44050393 0.3497726\n\t\t -0.76039922 0.17285664 0.62599564 -0.69490653 0.24900036 0.67458111 -0.76039922 0.17285664\n\t\t 0.62599564 -0.82677704 0.44050393 0.3497726 -0.86059159 0.40095195 0.31397441 -0.86059159\n\t\t 0.40095195 0.31397441 -0.82888269 0.095278576 0.5512253 -0.76039922 0.17285664 0.62599564\n\t\t -0.58220154 -0.11651979 0.8046205 -0.76039922 0.17285664 0.62599564 -0.82888269 0.095278576\n\t\t 0.5512253 -0.82888269 0.095278576 0.5512253 -0.67494732 -0.2201912 0.70421463 -0.58220154\n\t\t -0.11651979 0.8046205 -0.76039922 0.17285664 0.62599564 -0.58220154 -0.11651979 0.8046205\n\t\t -0.49360636 -0.013123048 0.86956388 -0.49360636 -0.013123048 0.86956388 -0.69490653\n\t\t 0.24900036 0.67458111 -0.76039922 0.17285664 0.62599564 -0.69490653 0.24900036 0.67458111\n\t\t -0.49360636 -0.013123048 0.86956388 -0.41236612 0.08563488 0.90694904 -0.41236612\n\t\t 0.08563488 0.90694904 -0.63515133 0.32105458 0.70247507 -0.69490653 0.24900036 0.67458111\n\t\t -0.13321325 -0.15952022 0.97814876 -0.41236612 0.08563488 0.90694904 -0.49360636\n\t\t -0.013123048 0.86956388 -0.49360636 -0.013123048 0.86956388 -0.22318177 -0.270394\n\t\t 0.93649095 -0.13321325 -0.15952022 0.97814876 -0.22318177 -0.270394 0.93649095 -0.49360636\n\t\t -0.013123048 0.86956388 -0.58220154 -0.11651979 0.8046205 -0.58220154 -0.11651979\n\t\t 0.8046205 -0.32016957 -0.38599813 0.86513871 -0.22318177 -0.270394 0.93649095 -0.32016957\n\t\t -0.38599813 0.86513871 -0.58220154 -0.11651979 0.8046205 -0.67494732 -0.2201912 0.70421463\n\t\t -0.67494732 -0.2201912 0.70421463;\n\tsetAttr \".n[41002:41167]\" -type \"float3\"  -0.42237601 -0.50114453 0.75524163 -0.32016957\n\t\t -0.38599813 0.86513871 -0.01095596 -0.59855944 0.80095834 -0.32016957 -0.38599813\n\t\t 0.86513871 -0.42237601 -0.50114453 0.75524163 -0.42237601 -0.50114453 0.75524163\n\t\t -0.10663145 -0.70842618 0.69765317 -0.01095596 -0.59855944 0.80095834 -0.32016957\n\t\t -0.38599813 0.86513871 -0.01095596 -0.59855944 0.80095834 0.079653457 -0.48820451\n\t\t 0.86907566 0.079653457 -0.48820451 0.86907566 -0.22318177 -0.270394 0.93649095 -0.32016957\n\t\t -0.38599813 0.86513871 -0.22318177 -0.270394 0.93649095 0.079653457 -0.48820451 0.86907566\n\t\t 0.16525784 -0.38181695 0.90932953 0.16525784 -0.38181695 0.90932953 -0.13321325 -0.15952022\n\t\t 0.97814876 -0.22318177 -0.270394 0.93649095 0.44410554 -0.55076736 0.70665616 0.16525784\n\t\t -0.38181695 0.90932953 0.079653457 -0.48820451 0.86907566 0.079653457 -0.48820451\n\t\t 0.86907566 0.37482855 -0.63652438 0.67400134 0.44410554 -0.55076736 0.70665616 0.37482855\n\t\t -0.63652438 0.67400134 0.079653457 -0.48820451 0.86907566 -0.01095596 -0.59855944\n\t\t 0.80095834 -0.01095596 -0.59855944 0.80095834 0.30301851 -0.72457027 0.61897647 0.37482855\n\t\t -0.63652438 0.67400134 0.30301851 -0.72457027 0.61897647 -0.01095596 -0.59855944\n\t\t 0.80095834 -0.10663145 -0.70842618 0.69765317 -0.10663145 -0.70842618 0.69765317\n\t\t 0.22782093 -0.81231105 0.53685117 0.30301851 -0.72457027 0.61897647 0.57570142 -0.74343073\n\t\t 0.34037301 0.30301851 -0.72457027 0.61897647 0.22782093 -0.81231105 0.53685117 0.22782093\n\t\t -0.81231105 0.53685117 0.5311749 -0.79552579 0.29145181 0.57570142 -0.74343073 0.34037301\n\t\t 0.61900717 -0.69090837 0.37339401 0.37482855 -0.63652438 0.67400134 0.30301851 -0.72457027\n\t\t 0.61897647 0.30301851 -0.72457027 0.61897647 0.57570142 -0.74343073 0.34037301 0.61900717\n\t\t -0.69090837 0.37339401 0.66164148 -0.63881326 0.39252913 0.44410554 -0.55076736 0.70665616\n\t\t 0.37482855 -0.63652438 0.67400134 0.37482855 -0.63652438 0.67400134 0.61900717 -0.69090837\n\t\t 0.37339401 0.66164148 -0.63881326 0.39252913 0.16525784 -0.38181695 0.90932953 0.44410554\n\t\t -0.55076736 0.70665616 0.51390129 -0.46714661 0.7194739 0.51390129 -0.46714661 0.7194739\n\t\t 0.25324267 -0.27628392 0.9270913 0.16525784 -0.38181695 0.90932953 -0.13321325 -0.15952022\n\t\t 0.97814876 0.16525784 -0.38181695 0.90932953 0.25324267 -0.27628392 0.9270913 0.25324267\n\t\t -0.27628392 0.9270913 -0.040833749 -0.047212072 0.99804682 -0.13321325 -0.15952022\n\t\t 0.97814876 -0.41236612 0.08563488 0.90694904 -0.13321325 -0.15952022 0.97814876 -0.040833749\n\t\t -0.047212072 0.99804682 -0.040833749 -0.047212072 0.99804682 -0.32902011 0.18854332\n\t\t 0.9252907 -0.41236612 0.08563488 0.90694904 -0.63515133 0.32105458 0.70247507 -0.41236612\n\t\t 0.08563488 0.90694904 -0.32902011 0.18854332 0.9252907 -0.32902011 0.18854332 0.9252907\n\t\t -0.57252735 0.3989073 0.71626943 -0.63515133 0.32105458 0.70247507 -0.76699138 0.51194775\n\t\t 0.38676104 -0.63515133 0.32105458 0.70247507 -0.57252735 0.3989073 0.71626943 -0.57252735\n\t\t 0.3989073 0.71626943 -0.73436707 0.5520491 0.39484844 -0.76699138 0.51194775 0.38676104\n\t\t -0.78118247 0.6242559 0.0050965445 -0.76699138 0.51194775 0.38676104 -0.73436707\n\t\t 0.5520491 0.39484844 -0.73436707 0.5520491 0.39484844 -0.7843259 0.62028849 0.0076600998\n\t\t -0.78118247 0.6242559 0.0050965445 -0.67116326 0.6365549 -0.37986395 -0.78118247\n\t\t 0.6242559 0.0050965445 -0.7843259 0.62028849 0.0076600998 -0.7843259 0.62028849 0.0076600998\n\t\t -0.71074575 0.59004462 -0.38294628 -0.67116326 0.6365549 -0.37986395 -0.45658761\n\t\t 0.54814279 -0.70073557 -0.67116326 0.6365549 -0.37986395 -0.71074575 0.59004462 -0.38294628\n\t\t -0.71074575 0.59004462 -0.38294628 -0.52650547 0.46745181 -0.71010476 -0.45658761\n\t\t 0.54814279 -0.70073557 -0.52650547 0.46745181 -0.71010476 -0.71074575 0.59004462\n\t\t -0.38294628 -0.74687964 0.5500654 -0.37360764 -0.74687964 0.5500654 -0.37360764 -0.6016115\n\t\t 0.38679135 -0.69884336 -0.52650547 0.46745181 -0.71010476 -0.6016115 0.38679135 -0.69884336\n\t\t -0.74687964 0.5500654 -0.37360764 -0.78066367 0.51441973 -0.35477769 -0.78066367\n\t\t 0.51441973 -0.35477769 -0.68413353 0.30207193 -0.66383862 -0.6016115 0.38679135 -0.69884336\n\t\t -0.68413353 0.30207193 -0.66383862 -0.78066367 0.51441973 -0.35477769 -0.81179255\n\t\t 0.48234478 -0.32908112 -0.81179255 0.48234478 -0.32908112 -0.770684 0.21298839 -0.60051268\n\t\t -0.68413353 0.30207193 -0.66383862 -0.7334516 0.67967749 -0.0075686411 -0.81179255\n\t\t 0.48234478 -0.32908112 -0.78066367 0.51441973 -0.35477769 -0.78066367 0.51441973\n\t\t -0.35477769 -0.76055193 0.64918947 0.0090029119 -0.7334516 0.67967749 -0.0075686411\n\t\t -0.76055193 0.64918947 0.0090029119 -0.78066367 0.51441973 -0.35477769 -0.74687964\n\t\t 0.5500654 -0.37360764 -0.74687964 0.5500654 -0.37360764 -0.77758127 0.62865055 0.011474913\n\t\t -0.76055193 0.64918947 0.0090029119 -0.77758127 0.62865055 0.011474913 -0.74687964\n\t\t 0.5500654 -0.37360764 -0.71074575 0.59004462 -0.38294628 -0.71074575 0.59004462 -0.38294628\n\t\t -0.7843259 0.62028849 0.0076600998 -0.77758127 0.62865055 0.011474913 -0.7843259\n\t\t 0.62028849 0.0076600998 -0.73436707 0.5520491 0.39484844 -0.68822306 0.60942388 0.39356664\n\t\t -0.68822306 0.60942388 0.39356664 -0.77758127 0.62865055 0.011474913 -0.7843259 0.62028849\n\t\t 0.0076600998 -0.77758127 0.62865055 0.011474913 -0.68822306 0.60942388 0.39356664\n\t\t -0.62575173 0.68559813 0.37195954 -0.62575173 0.68559813 0.37195954 -0.76055193 0.64918947\n\t\t 0.0090029119 -0.77758127 0.62865055 0.011474913 -0.76055193 0.64918947 0.0090029119\n\t\t -0.62575173 0.68559813 0.37195954 -0.54615951 0.77550566 0.31665999 -0.54615951 0.77550566\n\t\t 0.31665999 -0.7334516 0.67967749 -0.0075686411 -0.76055193 0.64918947 0.0090029119\n\t\t -0.27408698 0.75423443 0.59663677 -0.54615951 0.77550566 0.31665999 -0.62575173 0.68559813\n\t\t 0.37195954 -0.62575173 0.68559813 0.37195954 -0.39503175 0.61748093 0.68016595 -0.27408698\n\t\t 0.75423443 0.59663677 -0.39503175 0.61748093 0.68016595 -0.62575173 0.68559813 0.37195954;\n\tsetAttr \".n[41168:41333]\" -type \"float3\"  -0.68822306 0.60942388 0.39356664 -0.68822306\n\t\t 0.60942388 0.39356664 -0.49427792 0.49659708 0.71346164 -0.39503175 0.61748093 0.68016595\n\t\t -0.49427792 0.49659708 0.71346164 -0.68822306 0.60942388 0.39356664 -0.73436707 0.5520491\n\t\t 0.39484844 -0.73436707 0.5520491 0.39484844 -0.57252735 0.3989073 0.71626943 -0.49427792\n\t\t 0.49659708 0.71346164 -0.22873631 0.31015962 0.92272711 -0.49427792 0.49659708 0.71346164\n\t\t -0.57252735 0.3989073 0.71626943 -0.57252735 0.3989073 0.71626943 -0.32902011 0.18854332\n\t\t 0.9252907 -0.22873631 0.31015962 0.92272711 -0.49427792 0.49659708 0.71346164 -0.22873631\n\t\t 0.31015962 0.92272711 -0.10504485 0.45554981 0.88396859 -0.10504485 0.45554981 0.88396859\n\t\t -0.39503175 0.61748093 0.68016595 -0.49427792 0.49659708 0.71346164 -0.39503175 0.61748093\n\t\t 0.68016595 -0.10504485 0.45554981 0.88396859 0.04031476 0.61760312 0.78542429 0.04031476\n\t\t 0.61760312 0.78542429 -0.27408698 0.75423443 0.59663677 -0.39503175 0.61748093 0.68016595\n\t\t 0.34745312 0.3880125 0.85360271 0.04031476 0.61760312 0.78542429 -0.10504485 0.45554981\n\t\t 0.88396859 -0.10504485 0.45554981 0.88396859 0.19898061 0.2258371 0.95361185 0.34745312\n\t\t 0.3880125 0.85360271 0.19898061 0.2258371 0.95361185 -0.10504485 0.45554981 0.88396859\n\t\t -0.22873631 0.31015962 0.92272711 -0.22873631 0.31015962 0.92272711 0.068025738 0.079256669\n\t\t 0.99450666 0.19898061 0.2258371 0.95361185 0.068025738 0.079256669 0.99450666 -0.22873631\n\t\t 0.31015962 0.92272711 -0.32902011 0.18854332 0.9252907 -0.32902011 0.18854332 0.9252907\n\t\t -0.040833749 -0.047212072 0.99804682 0.068025738 0.079256669 0.99450666 0.35401475\n\t\t -0.16275503 0.92095709 0.068025738 0.079256669 0.99450666 -0.040833749 -0.047212072\n\t\t 0.99804682 -0.040833749 -0.047212072 0.99804682 0.25324267 -0.27628392 0.9270913\n\t\t 0.35401475 -0.16275503 0.92095709 0.068025738 0.079256669 0.99450666 0.35401475 -0.16275503\n\t\t 0.92095709 0.47120577 -0.035797998 0.88128299 0.47120577 -0.035797998 0.88128299\n\t\t 0.19898061 0.2258371 0.95361185 0.068025738 0.079256669 0.99450666 0.19898061 0.2258371\n\t\t 0.95361185 0.47120577 -0.035797998 0.88128299 0.59990227 0.10309177 0.79338968 0.59990227\n\t\t 0.10309177 0.79338968 0.34745312 0.3880125 0.85360271 0.19898061 0.2258371 0.95361185\n\t\t 0.76180309 -0.19348706 0.61821347 0.59990227 0.10309177 0.79338968 0.47120577 -0.035797998\n\t\t 0.88128299 0.47120577 -0.035797998 0.88128299 0.67278063 -0.29062751 0.68034911 0.76180309\n\t\t -0.19348706 0.61821347 0.67278063 -0.29062751 0.68034911 0.47120577 -0.035797998\n\t\t 0.88128299 0.35401475 -0.16275503 0.92095709 0.35401475 -0.16275503 0.92095709 0.58934307\n\t\t -0.38178632 0.71193576 0.67278063 -0.29062751 0.68034911 0.58934307 -0.38178632 0.71193576\n\t\t 0.35401475 -0.16275503 0.92095709 0.25324267 -0.27628392 0.9270913 0.25324267 -0.27628392\n\t\t 0.9270913 0.51390129 -0.46714661 0.7194739 0.58934307 -0.38178632 0.71193576 0.73946369\n\t\t -0.54606748 0.39365828 0.58934307 -0.38178632 0.71193576 0.51390129 -0.46714661 0.7194739\n\t\t 0.51390129 -0.46714661 0.7194739 0.70183432 -0.59016669 0.39887694 0.73946369 -0.54606748\n\t\t 0.39365828 0.77629948 -0.50395191 0.37861267 0.67278063 -0.29062751 0.68034911 0.58934307\n\t\t -0.38178632 0.71193576 0.58934307 -0.38178632 0.71193576 0.73946369 -0.54606748 0.39365828\n\t\t 0.77629948 -0.50395191 0.37861267 0.81289113 -0.4627519 0.35358748 0.76180309 -0.19348706\n\t\t 0.61821347 0.67278063 -0.29062751 0.68034911 0.67278063 -0.29062751 0.68034911 0.77629948\n\t\t -0.50395191 0.37861267 0.81289113 -0.4627519 0.35358748 0.59990227 0.10309177 0.79338968\n\t\t 0.76180309 -0.19348706 0.61821347 0.8376416 -0.11307078 0.53434861 0.8376416 -0.11307078\n\t\t 0.53434861 0.70738846 0.21887901 0.67204809 0.59990227 0.10309177 0.79338968 0.34745312\n\t\t 0.3880125 0.85360271 0.59990227 0.10309177 0.79338968 0.70738846 0.21887901 0.67204809\n\t\t 0.70738846 0.21887901 0.67204809 0.47212118 0.52049333 0.71144742 0.34745312 0.3880125\n\t\t 0.85360271 0.04031476 0.61760312 0.78542429 0.34745312 0.3880125 0.85360271 0.47212118\n\t\t 0.52049333 0.71144742 0.47212118 0.52049333 0.71144742 0.16498284 0.7469101 0.64412361\n\t\t 0.04031476 0.61760312 0.78542429 -0.27408698 0.75423443 0.59663677 0.04031476 0.61760312\n\t\t 0.78542429 0.16498284 0.7469101 0.64412361 0.16498284 0.7469101 0.64412361 -0.16852348\n\t\t 0.86196476 0.47810292 -0.27408698 0.75423443 0.59663677 -0.54615951 0.77550566 0.31665999\n\t\t -0.27408698 0.75423443 0.59663677 -0.16852348 0.86196476 0.47810292 -0.16852348 0.86196476\n\t\t 0.47810292 -0.47721821 0.84585088 0.23816639 -0.54615951 0.77550566 0.31665999 -0.7334516\n\t\t 0.67967749 -0.0075686411 -0.54615951 0.77550566 0.31665999 -0.47721821 0.84585088\n\t\t 0.23816639 -0.47721821 0.84585088 0.23816639 -0.7123633 0.70082682 -0.036347598 -0.7334516\n\t\t 0.67967749 -0.0075686411 -0.81179255 0.48234478 -0.32908112 -0.7334516 0.67967749\n\t\t -0.0075686411 -0.7123633 0.70082682 -0.036347598 -0.7123633 0.70082682 -0.036347598\n\t\t -0.84023571 0.44898802 -0.30390334 -0.81179255 0.48234478 -0.32908112 -0.770684 0.21298839\n\t\t -0.60051268 -0.81179255 0.48234478 -0.32908112 -0.84023571 0.44898802 -0.30390334\n\t\t -0.84023571 0.44898802 -0.30390334 -0.84203625 0.12952025 -0.52357554 -0.770684 0.21298839\n\t\t -0.60051268 -0.84203625 0.12952025 -0.52357554 -0.84023571 0.44898802 -0.30390334\n\t\t -0.86538297 0.4209415 -0.27176735 -0.86538297 0.4209415 -0.27176735 -0.89339882 0.070375375\n\t\t -0.44367808 -0.84203625 0.12952025 -0.52357554 -0.89339882 0.070375375 -0.44367808\n\t\t -0.86538297 0.4209415 -0.27176735 -0.892636 0.39649618 -0.21433152 -0.892636 0.39649618\n\t\t -0.21433152 -0.9416486 0.023498937 -0.33573413 -0.89339882 0.070375375 -0.44367808\n\t\t -0.9416486 0.023498937 -0.33573413 -0.892636 0.39649618 -0.21433152 -0.91906506 0.37803248\n\t\t -0.11120948 -0.91906506 0.37803248 -0.11120948 -0.9853816 -0.0068975003 -0.17014068\n\t\t -0.9416486 0.023498937 -0.33573413;\n\tsetAttr \".n[41334:41499]\" -type \"float3\"  -0.71086788 0.70250535 -0.032715894 -0.91906506\n\t\t 0.37803248 -0.11120948 -0.892636 0.39649618 -0.21433152 -0.892636 0.39649618 -0.21433152\n\t\t -0.70470315 0.70723569 -0.056306701 -0.71086788 0.70250535 -0.032715894 -0.70470315\n\t\t 0.70723569 -0.056306701 -0.892636 0.39649618 -0.21433152 -0.86538297 0.4209415 -0.27176735\n\t\t -0.86538297 0.4209415 -0.27176735 -0.70476419 0.70723569 -0.055513222 -0.70470315\n\t\t 0.70723569 -0.056306701 -0.70476419 0.70723569 -0.055513222 -0.86538297 0.4209415\n\t\t -0.27176735 -0.84023571 0.44898802 -0.30390334 -0.84023571 0.44898802 -0.30390334\n\t\t -0.7123633 0.70082682 -0.036347598 -0.70476419 0.70723569 -0.055513222 -0.7123633\n\t\t 0.70082682 -0.036347598 -0.47721821 0.84585088 0.23816639 -0.43702534 0.8831445 0.17029323\n\t\t -0.43702534 0.8831445 0.17029323 -0.70476419 0.70723569 -0.055513222 -0.7123633 0.70082682\n\t\t -0.036347598 -0.70476419 0.70723569 -0.055513222 -0.43702534 0.8831445 0.17029323\n\t\t -0.41044369 0.90499574 0.11178923 -0.41044369 0.90499574 0.11178923 -0.70470315 0.70723569\n\t\t -0.056306701 -0.70476419 0.70723569 -0.055513222 -0.70470315 0.70723569 -0.056306701\n\t\t -0.41044369 0.90499574 0.11178923 -0.39750388 0.91607398 0.052339178 -0.39750388\n\t\t 0.91607398 0.052339178 -0.71086788 0.70250535 -0.032715894 -0.70470315 0.70723569\n\t\t -0.056306701 -0.026551411 0.9909665 0.131199 -0.39750388 0.91607398 0.052339178 -0.41044369\n\t\t 0.90499574 0.11178923 -0.41044369 0.90499574 0.11178923 -0.056856282 0.96310312 0.26294741\n\t\t -0.026551411 0.9909665 0.131199 -0.056856282 0.96310312 0.26294741 -0.41044369 0.90499574\n\t\t 0.11178923 -0.43702534 0.8831445 0.17029323 -0.43702534 0.8831445 0.17029323 -0.10373269\n\t\t 0.92312384 0.37015894 -0.056856282 0.96310312 0.26294741 -0.10373269 0.92312384 0.37015894\n\t\t -0.43702534 0.8831445 0.17029323 -0.47721821 0.84585088 0.23816639 -0.47721821 0.84585088\n\t\t 0.23816639 -0.16852348 0.86196476 0.47810292 -0.10373269 0.92312384 0.37015894 0.24249983\n\t\t 0.82378626 0.51237518 -0.10373269 0.92312384 0.37015894 -0.16852348 0.86196476 0.47810292\n\t\t -0.16852348 0.86196476 0.47810292 0.16498284 0.7469101 0.64412361 0.24249983 0.82378626\n\t\t 0.51237518 -0.10373269 0.92312384 0.37015894 0.24249983 0.82378626 0.51237518 0.30100378\n\t\t 0.87755984 0.37314975 0.30100378 0.87755984 0.37314975 -0.056856282 0.96310312 0.26294741\n\t\t -0.10373269 0.92312384 0.37015894 -0.056856282 0.96310312 0.26294741 0.30100378 0.87755984\n\t\t 0.37314975 0.34632376 0.9185462 0.19046594 0.34632376 0.9185462 0.19046594 -0.026551411\n\t\t 0.9909665 0.131199 -0.056856282 0.96310312 0.26294741 0.66844666 0.71028799 0.22049618\n\t\t 0.34632376 0.9185462 0.19046594 0.30100378 0.87755984 0.37314975 0.30100378 0.87755984\n\t\t 0.37314975 0.61345237 0.66429663 0.42704543 0.66844666 0.71028799 0.22049618 0.61345237\n\t\t 0.66429663 0.42704543 0.30100378 0.87755984 0.37314975 0.24249983 0.82378626 0.51237518\n\t\t 0.24249983 0.82378626 0.51237518 0.55095047 0.603046 0.57683027 0.61345237 0.66429663\n\t\t 0.42704543 0.55095047 0.603046 0.57683027 0.24249983 0.82378626 0.51237518 0.16498284\n\t\t 0.7469101 0.64412361 0.16498284 0.7469101 0.64412361 0.47212118 0.52049333 0.71144742\n\t\t 0.55095047 0.603046 0.57683027 0.77773356 0.29444286 0.55531478 0.55095047 0.603046\n\t\t 0.57683027 0.47212118 0.52049333 0.71144742 0.47212118 0.52049333 0.71144742 0.70738846\n\t\t 0.21887901 0.67204809 0.77773356 0.29444286 0.55531478 0.55095047 0.603046 0.57683027\n\t\t 0.77773356 0.29444286 0.55531478 0.83690894 0.3543202 0.41715747 0.83690894 0.3543202\n\t\t 0.41715747 0.61345237 0.66429663 0.42704543 0.55095047 0.603046 0.57683027 0.61345237\n\t\t 0.66429663 0.42704543 0.83690894 0.3543202 0.41715747 0.89187282 0.39680195 0.21695605\n\t\t 0.89187282 0.39680195 0.21695605 0.66844666 0.71028799 0.22049618 0.61345237 0.66429663\n\t\t 0.42704543 0.98333687 0.023041792 0.18027283 0.89187282 0.39680195 0.21695605 0.83690894\n\t\t 0.3543202 0.41715747 0.83690894 0.3543202 0.41715747 0.93847466 -0.0097656064 0.34513381\n\t\t 0.98333687 0.023041792 0.18027283 0.93847466 -0.0097656064 0.34513381 0.83690894\n\t\t 0.3543202 0.41715747 0.77773356 0.29444286 0.55531478 0.77773356 0.29444286 0.55531478\n\t\t 0.89025545 -0.058106933 0.45167392 0.93847466 -0.0097656064 0.34513381 0.89025545\n\t\t -0.058106933 0.45167392 0.77773356 0.29444286 0.55531478 0.70738846 0.21887901 0.67204809\n\t\t 0.70738846 0.21887901 0.67204809 0.8376416 -0.11307078 0.53434861 0.89025545 -0.058106933\n\t\t 0.45167392 0.87005228 -0.40559068 0.28015995 0.89025545 -0.058106933 0.45167392 0.8376416\n\t\t -0.11307078 0.53434861 0.8376416 -0.11307078 0.53434861 0.8446914 -0.43052432 0.31797239\n\t\t 0.87005228 -0.40559068 0.28015995 0.89941108 -0.37696433 0.22119819 0.93847466 -0.0097656064\n\t\t 0.34513381 0.89025545 -0.058106933 0.45167392 0.89025545 -0.058106933 0.45167392\n\t\t 0.87005228 -0.40559068 0.28015995 0.89941108 -0.37696433 0.22119819 0.66844666 0.71028799\n\t\t 0.22049618 0.89187282 0.39680195 0.21695605 0.91195399 0.40726978 0.048982177 0.91195399\n\t\t 0.40726978 0.048982177 0.89187282 0.39680195 0.21695605 0.98333687 0.023041792 0.18027283\n\t\t 0.98333687 0.023041792 0.18027283 0.99877924 0.028290972 0.040223394 0.91195399 0.40726978\n\t\t 0.048982177 0.91195399 0.40726978 0.048982177 0.99877924 0.028290972 0.040223394\n\t\t 0.99963379 0.02621571 -1.950883e-09 0.99963379 0.02621571 -1.950883e-09 0.91351044\n\t\t 0.40681201 -3.0273892e-08 0.91195399 0.40726978 0.048982177 0.91195399 0.40726978\n\t\t 0.048982177 0.91351044 0.40681201 -3.0273892e-08 0.68825316 0.72542518 -5.3984273e-08\n\t\t 0.68825316 0.72542518 -5.3984273e-08 0.68770385 0.72420448 0.050294451 0.91195399\n\t\t 0.40726978 0.048982177 0.35959929 0.93209642 0.043214139 0.68770385 0.72420448 0.050294451\n\t\t 0.68825316 0.72542518 -5.3984273e-08 0.68825316 0.72542518 -5.3984273e-08 0.35825649\n\t\t 0.93359184 -6.9475519e-08 0.35959929 0.93209642 0.043214139 0.35959929 0.93209642\n\t\t 0.043214139;\n\tsetAttr \".n[41500:41665]\" -type \"float3\"  0.35825649 0.93359184 -6.9475519e-08\n\t\t -0.026307264 0.99963379 -7.4390201e-08 -0.026307264 0.99963379 -7.4390201e-08 -0.02270608\n\t\t 0.9992981 0.029541843 0.35959929 0.93209642 0.043214139 -0.40189853 0.9155857 0.011444373\n\t\t -0.02270608 0.9992981 0.029541843 -0.026307264 0.99963379 -7.4390201e-08 -0.026307264\n\t\t 0.99963379 -7.4390201e-08 -0.40684253 0.91347992 -6.7978853e-08 -0.40189853 0.9155857\n\t\t 0.011444373 -0.40189853 0.9155857 0.011444373 -0.40684253 0.91347992 -6.7978853e-08\n\t\t -0.7254557 0.68822265 -5.1215792e-08 -0.7254557 0.68822265 -5.1215792e-08 -0.72084743\n\t\t 0.69301409 -0.0079043452 -0.40189853 0.9155857 0.011444373 -0.93118089 0.36365825\n\t\t -0.024720021 -0.72084743 0.69301409 -0.0079043452 -0.7254557 0.68822265 -5.1215792e-08\n\t\t -0.7254557 0.68822265 -5.1215792e-08 -0.93362236 0.35822597 -2.6658286e-08 -0.93118089\n\t\t 0.36365825 -0.024720021 -0.93118089 0.36365825 -0.024720021 -0.93362236 0.35822597\n\t\t -2.6658286e-08 -0.99963379 -0.026276745 1.9554252e-09 -0.99963379 -0.026276745 1.9554252e-09\n\t\t -0.99908447 -0.021760007 -0.036683246 -0.93118089 0.36365825 -0.024720021 -0.93118089\n\t\t 0.36365825 -0.024720021 -0.99908447 -0.021760007 -0.036683246 -0.9853816 -0.0068975003\n\t\t -0.17014068 -0.9853816 -0.0068975003 -0.17014068 -0.91906506 0.37803248 -0.11120948\n\t\t -0.93118089 0.36365825 -0.024720021 -0.93118089 0.36365825 -0.024720021 -0.91906506\n\t\t 0.37803248 -0.11120948 -0.71086788 0.70250535 -0.032715894 -0.71086788 0.70250535\n\t\t -0.032715894 -0.72084743 0.69301409 -0.0079043452 -0.93118089 0.36365825 -0.024720021\n\t\t -0.40189853 0.9155857 0.011444373 -0.72084743 0.69301409 -0.0079043452 -0.71086788\n\t\t 0.70250535 -0.032715894 -0.71086788 0.70250535 -0.032715894 -0.39750388 0.91607398\n\t\t 0.052339178 -0.40189853 0.9155857 0.011444373 -0.40189853 0.9155857 0.011444373 -0.39750388\n\t\t 0.91607398 0.052339178 -0.026551411 0.9909665 0.131199 -0.026551411 0.9909665 0.131199\n\t\t -0.02270608 0.9992981 0.029541843 -0.40189853 0.9155857 0.011444373 0.35959929 0.93209642\n\t\t 0.043214139 -0.02270608 0.9992981 0.029541843 -0.026551411 0.9909665 0.131199 -0.026551411\n\t\t 0.9909665 0.131199 0.34632376 0.9185462 0.19046594 0.35959929 0.93209642 0.043214139\n\t\t 0.35959929 0.93209642 0.043214139 0.34632376 0.9185462 0.19046594 0.66844666 0.71028799\n\t\t 0.22049618 0.66844666 0.71028799 0.22049618 0.68770385 0.72420448 0.050294451 0.35959929\n\t\t 0.93209642 0.043214139 0.91195399 0.40726978 0.048982177 0.68770385 0.72420448 0.050294451\n\t\t 0.66844666 0.71028799 0.22049618 -0.91329682 -0.40495038 -0.042878475 -0.99908447\n\t\t -0.021760007 -0.036683246 -0.99963379 -0.026276745 1.9554252e-09 -0.99963379 -0.026276745\n\t\t 1.9554252e-09 -0.91347992 -0.40681201 3.0273892e-08 -0.91329682 -0.40495038 -0.042878475\n\t\t -0.91329682 -0.40495038 -0.042878475 -0.91347992 -0.40681201 3.0273892e-08 -0.68828368\n\t\t -0.72542518 5.3984273e-08 -0.68828368 -0.72542518 5.3984273e-08 -0.6865747 -0.72576094\n\t\t -0.042817418 -0.91329682 -0.40495038 -0.042878475 -0.35425857 -0.9343853 -0.036866289\n\t\t -0.6865747 -0.72576094 -0.042817418 -0.68828368 -0.72542518 5.3984273e-08 -0.68828368\n\t\t -0.72542518 5.3984273e-08 -0.35828701 -0.93359184 6.9475519e-08 -0.35425857 -0.9343853\n\t\t -0.036866289 -0.35425857 -0.9343853 -0.036866289 -0.35828701 -0.93359184 6.9475519e-08\n\t\t 0.02621571 -0.99963379 7.4390201e-08 0.02621571 -0.99963379 7.4390201e-08 0.03228889\n\t\t -0.99914551 -0.025330288 -0.35425857 -0.9343853 -0.036866289 0.41206118 -0.91106892\n\t\t -0.0097963735 0.03228889 -0.99914551 -0.025330288 0.02621571 -0.99963379 7.4390201e-08\n\t\t 0.02621571 -0.99963379 7.4390201e-08 0.40675095 -0.91351044 6.7981127e-08 0.41206118\n\t\t -0.91106892 -0.0097963735 0.41206118 -0.91106892 -0.0097963735 0.40675095 -0.91351044\n\t\t 6.7981127e-08 0.72539467 -0.6883142 5.1222607e-08 0.72539467 -0.6883142 5.1222607e-08\n\t\t 0.72905689 -0.68437731 0.0078127896 0.41206118 -0.91106892 -0.0097963735 0.93466002\n\t\t -0.35459426 0.02572713 0.72905689 -0.68437731 0.0078127896 0.72539467 -0.6883142\n\t\t 5.1222607e-08 0.72539467 -0.6883142 5.1222607e-08 0.93359184 -0.35831752 2.6665099e-08\n\t\t 0.93466002 -0.35459426 0.02572713 0.73149842 -0.68074566 0.038087152 0.72905689 -0.68437731\n\t\t 0.0078127896 0.93466002 -0.35459426 0.02572713 0.41206118 -0.91106892 -0.0097963735\n\t\t 0.72905689 -0.68437731 0.0078127896 0.73149842 -0.68074566 0.038087152 0.93466002\n\t\t -0.35459426 0.02572713 0.92745763 -0.35511309 0.11685541 0.73149842 -0.68074566 0.038087152\n\t\t 0.73149842 -0.68074566 0.038087152 0.92745763 -0.35511309 0.11685541 0.89941108 -0.37696433\n\t\t 0.22119819 0.89941108 -0.37696433 0.22119819 0.72127467 -0.68956548 0.064790845 0.73149842\n\t\t -0.68074566 0.038087152 0.72127467 -0.68956548 0.064790845 0.89941108 -0.37696433\n\t\t 0.22119819 0.87005228 -0.40559068 0.28015995 0.87005228 -0.40559068 0.28015995 0.71630019\n\t\t -0.69463158 0.065981068 0.72127467 -0.68956548 0.064790845 0.71630019 -0.69463158\n\t\t 0.065981068 0.87005228 -0.40559068 0.28015995 0.8446914 -0.43052432 0.31797239 0.8446914\n\t\t -0.43052432 0.31797239 0.72478431 -0.68687987 0.053529516 0.71630019 -0.69463158\n\t\t 0.065981068 0.72478431 -0.68687987 0.053529516 0.8446914 -0.43052432 0.31797239 0.81289113\n\t\t -0.4627519 0.35358748 0.81289113 -0.4627519 0.35358748 0.74443817 -0.66667658 0.036164481\n\t\t 0.72478431 -0.68687987 0.053529516 0.74443817 -0.66667658 0.036164481 0.81289113\n\t\t -0.4627519 0.35358748 0.77629948 -0.50395191 0.37861267 0.77629948 -0.50395191 0.37861267\n\t\t 0.76461089 -0.64418447 0.018555302 0.74443817 -0.66667658 0.036164481 0.76461089\n\t\t -0.64418447 0.018555302 0.77629948 -0.50395191 0.37861267 0.73946369 -0.54606748\n\t\t 0.39365828 0.73946369 -0.54606748 0.39365828 0.7777949 -0.62837589 0.011963302 0.76461089\n\t\t -0.64418447 0.018555302 0.7777949 -0.62837589 0.011963302 0.73946369 -0.54606748\n\t\t 0.39365828 0.70183432 -0.59016669 0.39887694 0.70183432 -0.59016669 0.39887694 0.78264737\n\t\t -0.62230271 0.011993821 0.7777949 -0.62837589 0.011963302 0.78264737 -0.62230271\n\t\t 0.011993821 0.70183432 -0.59016669 0.39887694 0.66164148 -0.63881326 0.39252913 0.66164148\n\t\t -0.63881326 0.39252913 0.77846634 -0.62755185 0.012512635;\n\tsetAttr \".n[41666:41831]\" -type \"float3\"  0.78264737 -0.62230271 0.011993821 0.77846634\n\t\t -0.62755185 0.012512635 0.66164148 -0.63881326 0.39252913 0.61900717 -0.69090837\n\t\t 0.37339401 0.61900717 -0.69090837 0.37339401 0.76949388 -0.63853854 0.010345822 0.77846634\n\t\t -0.62755185 0.012512635 0.76949388 -0.63853854 0.010345822 0.61900717 -0.69090837\n\t\t 0.37339401 0.57570142 -0.74343073 0.34037301 0.57570142 -0.74343073 0.34037301 0.76079613\n\t\t -0.64894533 0.0049745655 0.76949388 -0.63853854 0.010345822 0.76079613 -0.64894533\n\t\t 0.0049745655 0.57570142 -0.74343073 0.34037301 0.5311749 -0.79552579 0.29145181 0.5311749\n\t\t -0.79552579 0.29145181 0.75249505 -0.65855867 -0.0036316537 0.76079613 -0.64894533\n\t\t 0.0049745655 0.75249505 -0.65855867 -0.0036316537 0.5311749 -0.79552579 0.29145181\n\t\t 0.48719776 -0.84444696 0.22251052 0.48719776 -0.84444696 0.22251052 0.74523169 -0.66658503\n\t\t -0.015900092 0.75249505 -0.65855867 -0.0036316537 0.74523169 -0.66658503 -0.015900092\n\t\t 0.48719776 -0.84444696 0.22251052 0.45570266 -0.87850571 0.14322342 0.45570266 -0.87850571\n\t\t 0.14322342 0.74419403 -0.66743958 -0.025727054 0.74523169 -0.66658503 -0.015900092\n\t\t 0.74419403 -0.66743958 -0.025727054 0.45570266 -0.87850571 0.14322342 0.44370887\n\t\t -0.89327663 0.071749084 0.44370887 -0.89327663 0.071749084 0.74886334 -0.66243452\n\t\t -0.019562315 0.74419403 -0.66743958 -0.025727054 0.74886334 -0.66243452 -0.019562315\n\t\t 0.44370887 -0.89327663 0.071749084 0.44761524 -0.89410067 0.013397692 0.44761524\n\t\t -0.89410067 0.013397692 0.75310546 -0.65782624 0.0070803431 0.74886334 -0.66243452\n\t\t -0.019562315 0.75310546 -0.65782624 0.0070803431 0.44761524 -0.89410067 0.013397692\n\t\t 0.46079925 -0.88702035 -0.028687334 0.46079925 -0.88702035 -0.028687334 0.75035876\n\t\t -0.65855867 0.05688655 0.75310546 -0.65782624 0.0070803431 0.75035876 -0.65855867\n\t\t 0.05688655 0.46079925 -0.88702035 -0.028687334 0.47657731 -0.87847519 -0.033112515\n\t\t 0.47657731 -0.87847519 -0.033112515 0.73857862 -0.66048133 0.13489185 0.75035876\n\t\t -0.65855867 0.05688655 0.73857862 -0.66048133 0.13489185 0.47657731 -0.87847519 -0.033112515\n\t\t 0.47148073 -0.88177115 0.012909394 0.47148073 -0.88177115 0.012909394 0.70671731\n\t\t -0.66792786 0.23313093 0.73857862 -0.66048133 0.13489185 0.70671731 -0.66792786 0.23313093\n\t\t 0.47148073 -0.88177115 0.012909394 0.43446177 -0.89565712 0.095004186 0.43446177\n\t\t -0.89565712 0.095004186 0.65605664 -0.67616791 0.33515432 0.70671731 -0.66792786\n\t\t 0.23313093 0.65605664 -0.67616791 0.33515432 0.43446177 -0.89565712 0.095004186 0.36536786\n\t\t -0.90868849 0.20191054 0.36536786 -0.90868849 0.20191054 0.59361577 -0.67909765 0.43171489\n\t\t 0.65605664 -0.67616791 0.33515432 0.59361577 -0.67909765 0.43171489 0.36536786 -0.90868849\n\t\t 0.20191054 0.29615188 -0.9098177 0.29065835 0.0025333453 -0.99957275 0.029023178\n\t\t 0.29615188 -0.9098177 0.29065835 0.36536786 -0.90868849 0.20191054 0.29615188 -0.9098177\n\t\t 0.29065835 0.0025333453 -0.99957275 0.029023178 -0.040345162 -0.99386579 0.10266434\n\t\t -0.040345162 -0.99386579 0.10266434 0.26459575 -0.90185243 0.34150219 0.29615188\n\t\t -0.9098177 0.29065835 0.36536786 -0.90868849 0.20191054 0.075319983 -0.99462873 -0.070711315\n\t\t 0.0025333453 -0.99957275 0.029023178 0.29615188 -0.9098177 0.29065835 0.54155117\n\t\t -0.67769378 0.49739072 0.59361577 -0.67909765 0.43171489 0.54155117 -0.67769378 0.49739072\n\t\t 0.29615188 -0.9098177 0.29065835 0.26459575 -0.90185243 0.34150219 0.26459575 -0.90185243\n\t\t 0.34150219 0.52882493 -0.67009467 0.52082896 0.54155117 -0.67769378 0.49739072 0.52882493\n\t\t -0.67009467 0.52082896 0.26459575 -0.90185243 0.34150219 0.30744374 -0.90060109 0.30719939\n\t\t 0.30744374 -0.90060109 0.30719939 0.59831554 -0.67326862 0.43437001 0.52882493 -0.67009467\n\t\t 0.52082896 0.71089828 -0.33918244 0.61604661 0.52882493 -0.67009467 0.52082896 0.59831554\n\t\t -0.67326862 0.43437001 0.59831554 -0.67326862 0.43437001 0.79622805 -0.34412643 0.49754328\n\t\t 0.71089828 -0.33918244 0.61604661 0.52882493 -0.67009467 0.52082896 0.71089828 -0.33918244\n\t\t 0.61604661 0.70439786 -0.34788021 0.61867124 0.70439786 -0.34788021 0.61867124 0.54155117\n\t\t -0.67769378 0.49739072 0.52882493 -0.67009467 0.52082896 0.54155117 -0.67769378 0.49739072\n\t\t 0.70439786 -0.34788021 0.61867124 0.73186451 -0.35343459 0.58259833 0.73186451 -0.35343459\n\t\t 0.58259833 0.59361577 -0.67909765 0.43171489 0.54155117 -0.67769378 0.49739072 0.76714379\n\t\t 0.019196426 0.64113283 0.73186451 -0.35343459 0.58259833 0.70439786 -0.34788021 0.61867124\n\t\t 0.70439786 -0.34788021 0.61867124 0.76479387 0.029053906 0.64360487 0.76714379 0.019196426\n\t\t 0.64113283 0.76479387 0.029053906 0.64360487 0.70439786 -0.34788021 0.61867124 0.71089828\n\t\t -0.33918244 0.61604661 0.71089828 -0.33918244 0.61604661 0.78521073 0.039430201 0.61793876\n\t\t 0.76479387 0.029053906 0.64360487 0.78521073 0.039430201 0.61793876 0.71089828 -0.33918244\n\t\t 0.61604661 0.79622805 -0.34412643 0.49754328 0.79622805 -0.34412643 0.49754328 0.87066257\n\t\t 0.035188146 0.49061555 0.78521073 0.039430201 0.61793876 0.74217951 0.41032162 0.52983177\n\t\t 0.78521073 0.039430201 0.61793876 0.87066257 0.035188146 0.49061555 0.87066257 0.035188146\n\t\t 0.49061555 0.81395906 0.40623215 0.4152348 0.74217951 0.41032162 0.52983177 0.78521073\n\t\t 0.039430201 0.61793876 0.74217951 0.41032162 0.52983177 0.71355313 0.40134916 0.5742057\n\t\t 0.71355313 0.40134916 0.5742057 0.76479387 0.029053906 0.64360487 0.78521073 0.039430201\n\t\t 0.61793876 0.76479387 0.029053906 0.64360487 0.71355313 0.40134916 0.5742057 0.6930142\n\t\t 0.39020994 0.60618913 0.6930142 0.39020994 0.60618913 0.76714379 0.019196426 0.64113283\n\t\t 0.76479387 0.029053906 0.64360487 0.51124585 0.71001339 0.48420662 0.6930142 0.39020994\n\t\t 0.60618913 0.71355313 0.40134916 0.5742057 0.71355313 0.40134916 0.5742057 0.55345291\n\t\t 0.71807027 0.42194885 0.51124585 0.71001339 0.48420662 0.55345291 0.71807027 0.42194885\n\t\t 0.71355313 0.40134916 0.5742057 0.74217951 0.41032162 0.52983177;\n\tsetAttr \".n[41832:41997]\" -type \"float3\"  0.74217951 0.41032162 0.52983177 0.58833557\n\t\t 0.72173244 0.36457404 0.55345291 0.71807027 0.42194885 0.58833557 0.72173244 0.36457404\n\t\t 0.74217951 0.41032162 0.52983177 0.81395906 0.40623215 0.4152348 0.81395906 0.40623215\n\t\t 0.4152348 0.64003396 0.71599495 0.27866444 0.58833557 0.72173244 0.36457404 0.3445842\n\t\t 0.92764074 0.14377262 0.58833557 0.72173244 0.36457404 0.64003396 0.71599495 0.27866444\n\t\t 0.64003396 0.71599495 0.27866444 0.37391248 0.92281878 0.092440501 0.3445842 0.92764074\n\t\t 0.14377262 0.58833557 0.72173244 0.36457404 0.3445842 0.92764074 0.14377262 0.30384198\n\t\t 0.92959392 0.2085329 0.30384198 0.92959392 0.2085329 0.55345291 0.71807027 0.42194885\n\t\t 0.58833557 0.72173244 0.36457404 0.55345291 0.71807027 0.42194885 0.30384198 0.92959392\n\t\t 0.2085329 0.24286601 0.92489403 0.29242828 0.24286601 0.92489403 0.29242828 0.51124585\n\t\t 0.71001339 0.48420662 0.55345291 0.71807027 0.42194885 -0.070162356 0.99581897 0.057924055\n\t\t 0.24286601 0.92489403 0.29242828 0.30384198 0.92959392 0.2085329 0.30384198 0.92959392\n\t\t 0.2085329 0.0018308016 0.99932861 -0.036195025 -0.070162356 0.99581897 0.057924055\n\t\t 0.0018308016 0.99932861 -0.036195025 0.30384198 0.92959392 0.2085329 0.3445842 0.92764074\n\t\t 0.14377262 0.3445842 0.92764074 0.14377262 0.046265755 0.99343854 -0.10449545 0.0018308016\n\t\t 0.99932861 -0.036195025 0.046265755 0.99343854 -0.10449545 0.3445842 0.92764074 0.14377262\n\t\t 0.37391248 0.92281878 0.092440501 0.37391248 0.92281878 0.092440501 0.050782494 0.99078339\n\t\t -0.12537012 0.046265755 0.99343854 -0.10449545 0.6930142 0.39020994 0.60618913 0.51124585\n\t\t 0.71001339 0.48420662 0.47740084 0.69542545 0.53703415 0.47740084 0.69542545 0.53703415\n\t\t 0.68764293 0.37565261 0.62126529 0.6930142 0.39020994 0.60618913 0.76714379 0.019196426\n\t\t 0.64113283 0.6930142 0.39020994 0.60618913 0.68764293 0.37565261 0.62126529 0.68764293\n\t\t 0.37565261 0.62126529 0.78954434 0.0068364358 0.61363566 0.76714379 0.019196426 0.64113283\n\t\t 0.73186451 -0.35343459 0.58259833 0.76714379 0.019196426 0.64113283 0.78954434 0.0068364358\n\t\t 0.61363566 0.78954434 0.0068364358 0.61363566 0.77797794 -0.35966036 0.51512194 0.73186451\n\t\t -0.35343459 0.58259833 0.59361577 -0.67909765 0.43171489 0.73186451 -0.35343459 0.58259833\n\t\t 0.77797794 -0.35966036 0.51512194 0.77797794 -0.35966036 0.51512194 0.65605664 -0.67616791\n\t\t 0.33515432 0.59361577 -0.67909765 0.43171489 0.65605664 -0.67616791 0.33515432 0.77797794\n\t\t -0.35966036 0.51512194 0.83391839 -0.35743248 0.42045355 0.83391839 -0.35743248 0.42045355\n\t\t 0.70671731 -0.66792786 0.23313093 0.65605664 -0.67616791 0.33515432 0.70671731 -0.66792786\n\t\t 0.23313093 0.83391839 -0.35743248 0.42045355 0.88967574 -0.34668997 0.2970672 0.88967574\n\t\t -0.34668997 0.2970672 0.73857862 -0.66048133 0.13489185 0.70671731 -0.66792786 0.23313093\n\t\t 0.73857862 -0.66048133 0.13489185 0.88967574 -0.34668997 0.2970672 0.93066204 -0.33280405\n\t\t 0.15192117 0.93066204 -0.33280405 0.15192117 0.75035876 -0.65855867 0.05688655 0.73857862\n\t\t -0.66048133 0.13489185 0.96847439 0.048616301 0.24417859 0.93066204 -0.33280405 0.15192117\n\t\t 0.88967574 -0.34668997 0.2970672 0.88967574 -0.34668997 0.2970672 0.90353101 0.022431416\n\t\t 0.4278695 0.96847439 0.048616301 0.24417859 0.90353101 0.022431416 0.4278695 0.88967574\n\t\t -0.34668997 0.2970672 0.83391839 -0.35743248 0.42045355 0.83391839 -0.35743248 0.42045355\n\t\t 0.83715326 0.0064091864 0.54692221 0.90353101 0.022431416 0.4278695 0.83715326 0.0064091864\n\t\t 0.54692221 0.83391839 -0.35743248 0.42045355 0.77797794 -0.35966036 0.51512194 0.77797794\n\t\t -0.35966036 0.51512194 0.78954434 0.0068364358 0.61363566 0.83715326 0.0064091864\n\t\t 0.54692221 0.78954434 0.0068364358 0.61363566 0.68764293 0.37565261 0.62126529 0.71489596\n\t\t 0.37366888 0.59096044 0.71489596 0.37366888 0.59096044 0.83715326 0.0064091864 0.54692221\n\t\t 0.78954434 0.0068364358 0.61363566 0.83715326 0.0064091864 0.54692221 0.71489596\n\t\t 0.37366888 0.59096044 0.77410185 0.39313972 0.49613938 0.77410185 0.39313972 0.49613938\n\t\t 0.90353101 0.022431416 0.4278695 0.83715326 0.0064091864 0.54692221 0.90353101 0.022431416\n\t\t 0.4278695 0.77410185 0.39313972 0.49613938 0.84911638 0.42954832 0.30729085 0.84911638\n\t\t 0.42954832 0.30729085 0.96847439 0.048616301 0.24417859 0.90353101 0.022431416 0.4278695\n\t\t 0.59123486 0.74312586 0.31330296 0.84911638 0.42954832 0.30729085 0.77410185 0.39313972\n\t\t 0.49613938 0.77410185 0.39313972 0.49613938 0.5219273 0.70522195 0.47978142 0.59123486\n\t\t 0.74312586 0.31330296 0.5219273 0.70522195 0.47978142 0.77410185 0.39313972 0.49613938\n\t\t 0.71489596 0.37366888 0.59096044 0.71489596 0.37366888 0.59096044 0.48005596 0.68962693\n\t\t 0.54213077 0.5219273 0.70522195 0.47978142 0.48005596 0.68962693 0.54213077 0.71489596\n\t\t 0.37366888 0.59096044 0.68764293 0.37565261 0.62126529 0.68764293 0.37565261 0.62126529\n\t\t 0.47740084 0.69542545 0.53703415 0.48005596 0.68962693 0.54213077 0.16669181 0.89843452\n\t\t 0.40623182 0.48005596 0.68962693 0.54213077 0.47740084 0.69542545 0.53703415 0.47740084\n\t\t 0.69542545 0.53703415 0.18515551 0.9095127 0.37214264 0.16669181 0.89843452 0.40623182\n\t\t 0.18515551 0.9095127 0.37214264 0.47740084 0.69542545 0.53703415 0.51124585 0.71001339\n\t\t 0.48420662 0.51124585 0.71001339 0.48420662 0.24286601 0.92489403 0.29242828 0.18515551\n\t\t 0.9095127 0.37214264 0.48005596 0.68962693 0.54213077 0.16669181 0.89843452 0.40623182\n\t\t 0.18988588 0.90591151 0.37849051 0.18988588 0.90591151 0.37849051 0.5219273 0.70522195\n\t\t 0.47978142 0.48005596 0.68962693 0.54213077 0.5219273 0.70522195 0.47978142 0.18988588\n\t\t 0.90591151 0.37849051 0.24295758 0.93603325 0.2544938 0.24295758 0.93603325 0.2544938\n\t\t 0.59123486 0.74312586 0.31330296 0.5219273 0.70522195 0.47978142 -0.13696736 0.97912526\n\t\t 0.15002891;\n\tsetAttr \".n[41998:42163]\" -type \"float3\"  0.24295758 0.93603325 0.2544938 0.18988588\n\t\t 0.90591151 0.37849051 0.18988588 0.90591151 0.37849051 -0.16803521 0.96188229 0.21567424\n\t\t -0.13696736 0.97912526 0.15002891 -0.16803521 0.96188229 0.21567424 0.18988588 0.90591151\n\t\t 0.37849051 0.16669181 0.89843452 0.40623182 0.16669181 0.89843452 0.40623182 -0.17334543\n\t\t 0.96258426 0.20816667 -0.16803521 0.96188229 0.21567424 -0.17334543 0.96258426 0.20816667\n\t\t 0.16669181 0.89843452 0.40623182 0.18515551 0.9095127 0.37214264 0.18515551 0.9095127\n\t\t 0.37214264 -0.1409653 0.97820973 0.15219574 -0.17334543 0.96258426 0.20816667 -0.1409653\n\t\t 0.97820973 0.15219574 0.18515551 0.9095127 0.37214264 0.24286601 0.92489403 0.29242828\n\t\t 0.24286601 0.92489403 0.29242828 -0.070162356 0.99581897 0.057924055 -0.1409653 0.97820973\n\t\t 0.15219574 0.84911638 0.42954832 0.30729085 0.59123486 0.74312586 0.31330296 0.64012551\n\t\t 0.76564854 0.063081697 0.59123486 0.74312586 0.31330296 0.24295758 0.93603325 0.2544938\n\t\t 0.29007813 0.95562619 0.051240508 0.29007813 0.95562619 0.051240508 0.64012551 0.76564854\n\t\t 0.063081697 0.59123486 0.74312586 0.31330296 0.64012551 0.76564854 0.063081697 0.29007813\n\t\t 0.95562619 0.051240508 0.29651755 0.93914622 -0.17334521 0.29651755 0.93914622 -0.17334521\n\t\t 0.63716519 0.744133 -0.20062874 0.64012551 0.76564854 0.063081697 0.89010274 0.45271185\n\t\t 0.052430768 0.64012551 0.76564854 0.063081697 0.63716519 0.744133 -0.20062874 0.63716519\n\t\t 0.744133 -0.20062874 0.8781395 0.43400395 -0.20114753 0.89010274 0.45271185 0.052430768\n\t\t 0.99716181 0.06888058 0.029480875 0.89010274 0.45271185 0.052430768 0.8781395 0.43400395\n\t\t -0.20114753 0.89010274 0.45271185 0.052430768 0.99716181 0.06888058 0.029480875 0.96847439\n\t\t 0.048616301 0.24417859 0.93066204 -0.33280405 0.15192117 0.96847439 0.048616301 0.24417859\n\t\t 0.99716181 0.06888058 0.029480875 0.99716181 0.06888058 0.029480875 0.94714206 -0.3205356\n\t\t 0.011413948 0.93066204 -0.33280405 0.15192117 0.75035876 -0.65855867 0.05688655 0.93066204\n\t\t -0.33280405 0.15192117 0.94714206 -0.3205356 0.011413948 0.94714206 -0.3205356 0.011413948\n\t\t 0.75310546 -0.65782624 0.0070803431 0.75035876 -0.65855867 0.05688655 0.75310546\n\t\t -0.65782624 0.0070803431 0.94714206 -0.3205356 0.011413948 0.9389326 -0.32737175\n\t\t -0.1057466 0.9389326 -0.32737175 -0.1057466 0.74886334 -0.66243452 -0.019562315 0.75310546\n\t\t -0.65782624 0.0070803431 0.74886334 -0.66243452 -0.019562315 0.9389326 -0.32737175\n\t\t -0.1057466 0.91500604 -0.35273266 -0.19574569 0.91500604 -0.35273266 -0.19574569\n\t\t 0.74419403 -0.66743958 -0.025727054 0.74886334 -0.66243452 -0.019562315 0.74419403\n\t\t -0.66743958 -0.025727054 0.91500604 -0.35273266 -0.19574569 0.88473171 -0.38761535\n\t\t -0.25876641 0.88473171 -0.38761535 -0.25876641 0.74523169 -0.66658503 -0.015900092\n\t\t 0.74419403 -0.66743958 -0.025727054 0.88393813 -0.053956486 -0.46443069 0.88473171\n\t\t -0.38761535 -0.25876641 0.91500604 -0.35273266 -0.19574569 0.91500604 -0.35273266\n\t\t -0.19574569 0.9416486 0.012085596 -0.33634448 0.88393813 -0.053956486 -0.46443069\n\t\t 0.9416486 0.012085596 -0.33634448 0.91500604 -0.35273266 -0.19574569 0.9389326 -0.32737175\n\t\t -0.1057466 0.9389326 -0.32737175 -0.1057466 0.98385572 0.057161462 -0.16940825 0.9416486\n\t\t 0.012085596 -0.33634448 0.98385572 0.057161462 -0.16940825 0.9389326 -0.32737175\n\t\t -0.1057466 0.94714206 -0.3205356 0.011413948 0.94714206 -0.3205356 0.011413948 0.99716181\n\t\t 0.06888058 0.029480875 0.98385572 0.057161462 -0.16940825 0.8781395 0.43400395 -0.20114753\n\t\t 0.98385572 0.057161462 -0.16940825 0.99716181 0.06888058 0.029480875 0.98385572 0.057161462\n\t\t -0.16940825 0.8781395 0.43400395 -0.20114753 0.82531196 0.37348574 -0.42347488 0.82531196\n\t\t 0.37348574 -0.42347488 0.9416486 0.012085596 -0.33634448 0.98385572 0.057161462 -0.16940825\n\t\t 0.9416486 0.012085596 -0.33634448 0.82531196 0.37348574 -0.42347488 0.74822223 0.28598917\n\t\t -0.59859002 0.74822223 0.28598917 -0.59859002 0.88393813 -0.053956486 -0.46443069\n\t\t 0.9416486 0.012085596 -0.33634448 0.50209033 0.58412439 -0.6377148 0.74822223 0.28598917\n\t\t -0.59859002 0.82531196 0.37348574 -0.42347488 0.82531196 0.37348574 -0.42347488 0.58598566\n\t\t 0.67912853 -0.44199964 0.50209033 0.58412439 -0.6377148 0.58598566 0.67912853 -0.44199964\n\t\t 0.82531196 0.37348574 -0.42347488 0.8781395 0.43400395 -0.20114753 0.8781395 0.43400395\n\t\t -0.20114753 0.63716519 0.744133 -0.20062874 0.58598566 0.67912853 -0.44199964 0.25675195\n\t\t 0.88424337 -0.39005712 0.58598566 0.67912853 -0.44199964 0.63716519 0.744133 -0.20062874\n\t\t 0.63716519 0.744133 -0.20062874 0.29651755 0.93914622 -0.17334521 0.25675195 0.88424337\n\t\t -0.39005712 0.58598566 0.67912853 -0.44199964 0.25675195 0.88424337 -0.39005712 0.18018103\n\t\t 0.79802853 -0.57499927 0.18018103 0.79802853 -0.57499927 0.50209033 0.58412439 -0.6377148\n\t\t 0.58598566 0.67912853 -0.44199964 -0.17392525 0.88982809 -0.42179638 0.18018103 0.79802853\n\t\t -0.57499927 0.25675195 0.88424337 -0.39005712 0.25675195 0.88424337 -0.39005712 -0.11685568\n\t\t 0.95324558 -0.27863404 -0.17392525 0.88982809 -0.42179638 -0.11685568 0.95324558\n\t\t -0.27863404 0.25675195 0.88424337 -0.39005712 0.29651755 0.93914622 -0.17334521 0.29651755\n\t\t 0.93914622 -0.17334521 -0.092074648 0.98800623 -0.12393574 -0.11685568 0.95324558\n\t\t -0.27863404 -0.092074648 0.98800623 -0.12393574 0.29651755 0.93914622 -0.17334521\n\t\t 0.29007813 0.95562619 0.051240508 0.29007813 0.95562619 0.051240508 -0.10196265 0.99447608\n\t\t 0.024628364 -0.092074648 0.98800623 -0.12393574 -0.10196265 0.99447608 0.024628364\n\t\t 0.29007813 0.95562619 0.051240508 0.24295758 0.93603325 0.2544938 0.24295758 0.93603325\n\t\t 0.2544938 -0.13696736 0.97912526 0.15002891 -0.10196265 0.99447608 0.024628364 0.74822223\n\t\t 0.28598917 -0.59859002 0.50209033 0.58412439 -0.6377148 0.40379024 0.47740111 -0.78038889\n\t\t 0.40379024 0.47740111 -0.78038889 0.66075617 0.19129017 -0.72579122;\n\tsetAttr \".n[42164:42329]\" -type \"float3\"  0.74822223 0.28598917 -0.59859002 0.88393813\n\t\t -0.053956486 -0.46443069 0.74822223 0.28598917 -0.59859002 0.66075617 0.19129017\n\t\t -0.72579122 0.66075617 0.19129017 -0.72579122 0.82055122 -0.12341665 -0.55806148\n\t\t 0.88393813 -0.053956486 -0.46443069 0.88473171 -0.38761535 -0.25876641 0.88393813\n\t\t -0.053956486 -0.46443069 0.82055122 -0.12341665 -0.55806148 0.82055122 -0.12341665\n\t\t -0.55806148 0.85439628 -0.42149091 -0.30381173 0.88473171 -0.38761535 -0.25876641\n\t\t 0.74523169 -0.66658503 -0.015900092 0.88473171 -0.38761535 -0.25876641 0.85439628\n\t\t -0.42149091 -0.30381173 0.85439628 -0.42149091 -0.30381173 0.75249505 -0.65855867\n\t\t -0.0036316537 0.74523169 -0.66658503 -0.015900092 0.75249505 -0.65855867 -0.0036316537\n\t\t 0.85439628 -0.42149091 -0.30381173 0.82540375 -0.45417622 -0.33521527 0.82540375\n\t\t -0.45417622 -0.33521527 0.76079613 -0.64894533 0.0049745655 0.75249505 -0.65855867\n\t\t -0.0036316537 0.76079613 -0.64894533 0.0049745655 0.82540375 -0.45417622 -0.33521527\n\t\t 0.79790664 -0.48567134 -0.35697499 0.79790664 -0.48567134 -0.35697499 0.76949388\n\t\t -0.63853854 0.010345822 0.76079613 -0.64894533 0.0049745655 0.76949388 -0.63853854\n\t\t 0.010345822 0.79790664 -0.48567134 -0.35697499 0.77144706 -0.51667815 -0.37125763\n\t\t 0.77144706 -0.51667815 -0.37125763 0.77846634 -0.62755185 0.012512635 0.76949388\n\t\t -0.63853854 0.010345822 0.64271992 -0.32721931 -0.69267863 0.77144706 -0.51667815\n\t\t -0.37125763 0.79790664 -0.48567134 -0.35697499 0.79790664 -0.48567134 -0.35697499\n\t\t 0.69966739 -0.25962082 -0.6656087 0.64271992 -0.32721931 -0.69267863 0.69966739 -0.25962082\n\t\t -0.6656087 0.79790664 -0.48567134 -0.35697499 0.82540375 -0.45417622 -0.33521527\n\t\t 0.82540375 -0.45417622 -0.33521527 0.75875121 -0.19202226 -0.62236398 0.69966739\n\t\t -0.25962082 -0.6656087 0.75875121 -0.19202226 -0.62236398 0.82540375 -0.45417622\n\t\t -0.33521527 0.85439628 -0.42149091 -0.30381173 0.85439628 -0.42149091 -0.30381173\n\t\t 0.82055122 -0.12341665 -0.55806148 0.75875121 -0.19202226 -0.62236398 0.57542646\n\t\t 0.096560687 -0.81212807 0.75875121 -0.19202226 -0.62236398 0.82055122 -0.12341665\n\t\t -0.55806148 0.82055122 -0.12341665 -0.55806148 0.66075617 0.19129017 -0.72579122\n\t\t 0.57542646 0.096560687 -0.81212807 0.75875121 -0.19202226 -0.62236398 0.57542646\n\t\t 0.096560687 -0.81212807 0.49436933 0.0023500135 -0.86922818 0.49436933 0.0023500135\n\t\t -0.86922818 0.69966739 -0.25962082 -0.6656087 0.75875121 -0.19202226 -0.62236398\n\t\t 0.69966739 -0.25962082 -0.6656087 0.49436933 0.0023500135 -0.86922818 0.41663873\n\t\t -0.091647021 -0.90441602 0.41663873 -0.091647021 -0.90441602 0.64271992 -0.32721931\n\t\t -0.69267863 0.69966739 -0.25962082 -0.6656087 0.13071074 0.15405741 -0.97936946 0.41663873\n\t\t -0.091647021 -0.90441602 0.49436933 0.0023500135 -0.86922818 0.49436933 0.0023500135\n\t\t -0.86922818 0.2172612 0.26078066 -0.940611 0.13071074 0.15405741 -0.97936946 0.2172612\n\t\t 0.26078066 -0.940611 0.49436933 0.0023500135 -0.86922818 0.57542646 0.096560687 -0.81212807\n\t\t 0.57542646 0.096560687 -0.81212807 0.30771801 0.36890778 -0.87701041 0.2172612 0.26078066\n\t\t -0.940611 0.30771801 0.36890778 -0.87701041 0.57542646 0.096560687 -0.81212807 0.66075617\n\t\t 0.19129017 -0.72579122 0.66075617 0.19129017 -0.72579122 0.40379024 0.47740111 -0.78038889\n\t\t 0.30771801 0.36890778 -0.87701041 -0.0047915876 0.58790851 -0.80889314 0.30771801\n\t\t 0.36890778 -0.87701041 0.40379024 0.47740111 -0.78038889 0.40379024 0.47740111 -0.78038889\n\t\t 0.087099612 0.69490641 -0.71376693 -0.0047915876 0.58790851 -0.80889314 0.087099612\n\t\t 0.69490641 -0.71376693 0.40379024 0.47740111 -0.78038889 0.50209033 0.58412439 -0.6377148\n\t\t 0.50209033 0.58412439 -0.6377148 0.18018103 0.79802853 -0.57499927 0.087099612 0.69490641\n\t\t -0.71376693 0.30771801 0.36890778 -0.87701041 -0.0047915876 0.58790851 -0.80889314\n\t\t -0.0914336 0.48139888 -0.87170023 -0.0914336 0.48139888 -0.87170023 0.2172612 0.26078066\n\t\t -0.940611 0.30771801 0.36890778 -0.87701041 0.2172612 0.26078066 -0.940611 -0.0914336\n\t\t 0.48139888 -0.87170023 -0.17450495 0.37766644 -0.90932953 -0.17450495 0.37766644\n\t\t -0.90932953 0.13071074 0.15405741 -0.97936946 0.2172612 0.26078066 -0.940611 -0.45658761\n\t\t 0.54814279 -0.70073557 -0.17450495 0.37766644 -0.90932953 -0.0914336 0.48139888 -0.87170023\n\t\t -0.0914336 0.48139888 -0.87170023 -0.38905016 0.63270956 -0.66951513 -0.45658761\n\t\t 0.54814279 -0.70073557 -0.38905016 0.63270956 -0.66951513 -0.0914336 0.48139888 -0.87170023\n\t\t -0.0047915876 0.58790851 -0.80889314 -0.0047915876 0.58790851 -0.80889314 -0.31913227\n\t\t 0.72014511 -0.61601615 -0.38905016 0.63270956 -0.66951513 -0.31913227 0.72014511\n\t\t -0.61601615 -0.0047915876 0.58790851 -0.80889314 0.087099612 0.69490641 -0.71376693\n\t\t 0.087099612 0.69490641 -0.71376693 -0.24619307 0.80764174 -0.53578299 -0.31913227\n\t\t 0.72014511 -0.61601615 -0.24619307 0.80764174 -0.53578299 0.087099612 0.69490641\n\t\t -0.71376693 0.18018103 0.79802853 -0.57499927 0.18018103 0.79802853 -0.57499927 -0.17392525\n\t\t 0.88982809 -0.42179638 -0.24619307 0.80764174 -0.53578299 0.41663873 -0.091647021\n\t\t -0.90441602 0.13071074 0.15405741 -0.97936946 0.037476715 0.04373296 -0.99832147\n\t\t 0.13071074 0.15405741 -0.97936946 -0.17450495 0.37766644 -0.90932953 -0.26316118\n\t\t 0.2749106 -0.92474133 -0.26316118 0.2749106 -0.92474133 0.037476715 0.04373296 -0.99832147\n\t\t 0.13071074 0.15405741 -0.97936946 0.037476715 0.04373296 -0.99832147 -0.26316118\n\t\t 0.2749106 -0.92474133 -0.36487937 0.16473871 -0.91634876 -0.36487937 0.16473871 -0.91634876\n\t\t -0.07303077 -0.081606589 -0.99395734 0.037476715 0.04373296 -0.99832147 0.33277389\n\t\t -0.19363992 -0.9228797 0.037476715 0.04373296 -0.99832147 -0.07303077 -0.081606589\n\t\t -0.99395734 -0.07303077 -0.081606589 -0.99395734 0.23133041 -0.3162328 -0.92001098\n\t\t 0.33277389 -0.19363992 -0.9228797 0.58021802 -0.40461427 -0.70680863 0.33277389 -0.19363992\n\t\t -0.9228797 0.23133041 -0.3162328 -0.92001098 0.33277389 -0.19363992 -0.9228797 0.58021802\n\t\t -0.40461427 -0.70680863 0.64271992 -0.32721931 -0.69267863;\n\tsetAttr \".n[42330:42495]\" -type \"float3\"  0.77144706 -0.51667815 -0.37125763 0.64271992\n\t\t -0.32721931 -0.69267863 0.58021802 -0.40461427 -0.70680863 0.58021802 -0.40461427\n\t\t -0.70680863 0.73958576 -0.55626065 -0.37888727 0.77144706 -0.51667815 -0.37125763\n\t\t 0.77846634 -0.62755185 0.012512635 0.77144706 -0.51667815 -0.37125763 0.73958576\n\t\t -0.55626065 -0.37888727 0.73958576 -0.55626065 -0.37888727 0.78264737 -0.62230271\n\t\t 0.011993821 0.77846634 -0.62755185 0.012512635 0.78264737 -0.62230271 0.011993821\n\t\t 0.73958576 -0.55626065 -0.37888727 0.69463199 -0.61369646 -0.37522501 0.69463199\n\t\t -0.61369646 -0.37522501 0.7777949 -0.62837589 0.011963302 0.78264737 -0.62230271\n\t\t 0.011993821 0.7777949 -0.62837589 0.011963302 0.69463199 -0.61369646 -0.37522501\n\t\t 0.63493782 -0.68871105 -0.3499862 0.63493782 -0.68871105 -0.3499862 0.76461089 -0.64418447\n\t\t 0.018555302 0.7777949 -0.62837589 0.011963302 0.76461089 -0.64418447 0.018555302\n\t\t 0.63493782 -0.68871105 -0.3499862 0.56056422 -0.77459013 -0.29279453 0.56056422 -0.77459013\n\t\t -0.29279453 0.74443817 -0.66667658 0.036164481 0.76461089 -0.64418447 0.018555302\n\t\t 0.28473794 -0.76271856 -0.58061457 0.56056422 -0.77459013 -0.29279453 0.63493782\n\t\t -0.68871105 -0.3499862 0.63493782 -0.68871105 -0.3499862 0.40357694 -0.62620926 -0.66701251\n\t\t 0.28473794 -0.76271856 -0.58061457 0.40357694 -0.62620926 -0.66701251 0.63493782\n\t\t -0.68871105 -0.3499862 0.69463199 -0.61369646 -0.37522501 0.69463199 -0.61369646\n\t\t -0.37522501 0.50206017 -0.50367737 -0.70299381 0.40357694 -0.62620926 -0.66701251\n\t\t 0.50206017 -0.50367737 -0.70299381 0.69463199 -0.61369646 -0.37522501 0.73958576\n\t\t -0.55626065 -0.37888727 0.73958576 -0.55626065 -0.37888727 0.58021802 -0.40461427\n\t\t -0.70680863 0.50206017 -0.50367737 -0.70299381 0.23133041 -0.3162328 -0.92001098\n\t\t 0.50206017 -0.50367737 -0.70299381 0.58021802 -0.40461427 -0.70680863 0.50206017\n\t\t -0.50367737 -0.70299381 0.23133041 -0.3162328 -0.92001098 0.10602144 -0.46360672\n\t\t -0.87963492 0.10602144 -0.46360672 -0.87963492 0.40357694 -0.62620926 -0.66701251\n\t\t 0.50206017 -0.50367737 -0.70299381 0.40357694 -0.62620926 -0.66701251 0.10602144\n\t\t -0.46360672 -0.87963492 -0.040589422 -0.62697232 -0.77797776 -0.040589422 -0.62697232\n\t\t -0.77797776 0.28473794 -0.76271856 -0.58061457 0.40357694 -0.62620926 -0.66701251\n\t\t -0.35773784 -0.38938585 -0.84875029 -0.040589422 -0.62697232 -0.77797776 0.10602144\n\t\t -0.46360672 -0.87963492 0.10602144 -0.46360672 -0.87963492 -0.20664075 -0.22769873\n\t\t -0.9515366 -0.35773784 -0.38938585 -0.84875029 -0.20664075 -0.22769873 -0.9515366\n\t\t 0.10602144 -0.46360672 -0.87963492 0.23133041 -0.3162328 -0.92001098 0.23133041 -0.3162328\n\t\t -0.92001098 -0.07303077 -0.081606589 -0.99395734 -0.20664075 -0.22769873 -0.9515366\n\t\t -0.48356578 0.041627035 -0.87429428 -0.20664075 -0.22769873 -0.9515366 -0.07303077\n\t\t -0.081606589 -0.99395734 -0.07303077 -0.081606589 -0.99395734 -0.36487937 0.16473871\n\t\t -0.91634876 -0.48356578 0.041627035 -0.87429428 -0.20664075 -0.22769873 -0.9515366\n\t\t -0.48356578 0.041627035 -0.87429428 -0.6131779 -0.093020663 -0.78441727 -0.6131779\n\t\t -0.093020663 -0.78441727 -0.35773784 -0.38938585 -0.84875029 -0.20664075 -0.22769873\n\t\t -0.9515366 -0.770684 0.21298839 -0.60051268 -0.6131779 -0.093020663 -0.78441727 -0.48356578\n\t\t 0.041627035 -0.87429428 -0.48356578 0.041627035 -0.87429428 -0.68413353 0.30207193\n\t\t -0.66383862 -0.770684 0.21298839 -0.60051268 -0.68413353 0.30207193 -0.66383862 -0.48356578\n\t\t 0.041627035 -0.87429428 -0.36487937 0.16473871 -0.91634876 -0.36487937 0.16473871\n\t\t -0.91634876 -0.6016115 0.38679135 -0.69884336 -0.68413353 0.30207193 -0.66383862\n\t\t -0.6016115 0.38679135 -0.69884336 -0.36487937 0.16473871 -0.91634876 -0.26316118\n\t\t 0.2749106 -0.92474133 -0.26316118 0.2749106 -0.92474133 -0.52650547 0.46745181 -0.71010476\n\t\t -0.6016115 0.38679135 -0.69884336 -0.52650547 0.46745181 -0.71010476 -0.26316118\n\t\t 0.2749106 -0.92474133 -0.17450495 0.37766644 -0.90932953 -0.17450495 0.37766644 -0.90932953\n\t\t -0.45658761 0.54814279 -0.70073557 -0.52650547 0.46745181 -0.71010476 -0.040589422\n\t\t -0.62697232 -0.77797776 -0.35773784 -0.38938585 -0.84875029 -0.48014757 -0.52345365\n\t\t -0.7038483 -0.48014757 -0.52345365 -0.7038483 -0.16565423 -0.75511962 -0.63426614\n\t\t -0.040589422 -0.62697232 -0.77797776 0.28473794 -0.76271856 -0.58061457 -0.040589422\n\t\t -0.62697232 -0.77797776 -0.16565423 -0.75511962 -0.63426614 -0.16565423 -0.75511962\n\t\t -0.63426614 0.17725177 -0.86770225 -0.4643696 0.28473794 -0.76271856 -0.58061457\n\t\t 0.56056422 -0.77459013 -0.29279453 0.28473794 -0.76271856 -0.58061457 0.17725177\n\t\t -0.86770225 -0.4643696 0.17725177 -0.86770225 -0.4643696 0.49076843 -0.84252429 -0.22199158\n\t\t 0.56056422 -0.77459013 -0.29279453 0.74443817 -0.66667658 0.036164481 0.56056422\n\t\t -0.77459013 -0.29279453 0.49076843 -0.84252429 -0.22199158 0.49076843 -0.84252429\n\t\t -0.22199158 0.72478431 -0.68687987 0.053529516 0.74443817 -0.66667658 0.036164481\n\t\t 0.72478431 -0.68687987 0.053529516 0.49076843 -0.84252429 -0.22199158 0.44911066\n\t\t -0.87926865 -0.15860464 0.44911066 -0.87926865 -0.15860464 0.71630019 -0.69463158\n\t\t 0.065981068 0.72478431 -0.68687987 0.053529516 0.71630019 -0.69463158 0.065981068\n\t\t 0.44911066 -0.87926865 -0.15860464 0.42881584 -0.89785445 -0.099703901 0.42881584\n\t\t -0.89785445 -0.099703901 0.72127467 -0.68956548 0.064790845 0.71630019 -0.69463158\n\t\t 0.065981068 0.72127467 -0.68956548 0.064790845 0.42881584 -0.89785445 -0.099703901\n\t\t 0.42283422 -0.90508729 -0.044495918 0.42283422 -0.90508729 -0.044495918 0.73149842\n\t\t -0.68074566 0.038087152 0.72127467 -0.68956548 0.064790845 0.049409773 -0.99182105\n\t\t -0.11761826 0.42283422 -0.90508729 -0.044495918 0.42881584 -0.89785445 -0.099703901\n\t\t 0.42881584 -0.89785445 -0.099703901 0.070498057 -0.96670431 -0.24591808 0.049409773\n\t\t -0.99182105 -0.11761826 0.070498057 -0.96670431 -0.24591808 0.42881584 -0.89785445\n\t\t -0.099703901 0.44911066 -0.87926865 -0.15860464 0.44911066 -0.87926865 -0.15860464\n\t\t 0.11136232 -0.92733538 -0.35724962 0.070498057 -0.96670431 -0.24591808 0.11136232\n\t\t -0.92733538 -0.35724962;\n\tsetAttr \".n[42496:42661]\" -type \"float3\"  0.44911066 -0.87926865 -0.15860464 0.49076843\n\t\t -0.84252429 -0.22199158 0.49076843 -0.84252429 -0.22199158 0.17725177 -0.86770225\n\t\t -0.4643696 0.11136232 -0.92733538 -0.35724962 -0.24295761 -0.83123279 -0.49998468\n\t\t 0.11136232 -0.92733538 -0.35724962 0.17725177 -0.86770225 -0.4643696 0.17725177 -0.86770225\n\t\t -0.4643696 -0.16565423 -0.75511962 -0.63426614 -0.24295761 -0.83123279 -0.49998468\n\t\t 0.11136232 -0.92733538 -0.35724962 -0.24295761 -0.83123279 -0.49998468 -0.29767728\n\t\t -0.88671541 -0.35367894 -0.29767728 -0.88671541 -0.35367894 0.070498057 -0.96670431\n\t\t -0.24591808 0.11136232 -0.92733538 -0.35724962 0.070498057 -0.96670431 -0.24591808\n\t\t -0.29767728 -0.88671541 -0.35367894 -0.33494034 -0.92635894 -0.17212431 -0.33494034\n\t\t -0.92635894 -0.17212431 0.049409773 -0.99182105 -0.11761826 0.070498057 -0.96670431\n\t\t -0.24591808 -0.66792786 -0.7164222 -0.2014221 -0.33494034 -0.92635894 -0.17212431\n\t\t -0.29767728 -0.88671541 -0.35367894 -0.29767728 -0.88671541 -0.35367894 -0.61836588\n\t\t -0.67134643 -0.40849018 -0.66792786 -0.7164222 -0.2014221 -0.61836588 -0.67134643\n\t\t -0.40849018 -0.29767728 -0.88671541 -0.35367894 -0.24295761 -0.83123279 -0.49998468\n\t\t -0.24295761 -0.83123279 -0.49998468 -0.55742037 -0.60741013 -0.56590468 -0.61836588\n\t\t -0.67134643 -0.40849018 -0.55742037 -0.60741013 -0.56590468 -0.24295761 -0.83123279\n\t\t -0.49998468 -0.16565423 -0.75511962 -0.63426614 -0.16565423 -0.75511962 -0.63426614\n\t\t -0.48014757 -0.52345365 -0.7038483 -0.55742037 -0.60741013 -0.56590468 -0.78527164\n\t\t -0.29102477 -0.54643393 -0.55742037 -0.60741013 -0.56590468 -0.48014757 -0.52345365\n\t\t -0.7038483 -0.48014757 -0.52345365 -0.7038483 -0.71669662 -0.2121039 -0.66432691\n\t\t -0.78527164 -0.29102477 -0.54643393 -0.71669662 -0.2121039 -0.66432691 -0.48014757\n\t\t -0.52345365 -0.7038483 -0.35773784 -0.38938585 -0.84875029 -0.35773784 -0.38938585\n\t\t -0.84875029 -0.6131779 -0.093020663 -0.78441727 -0.71669662 -0.2121039 -0.66432691\n\t\t -0.55742037 -0.60741013 -0.56590468 -0.78527164 -0.29102477 -0.54643393 -0.84463012\n\t\t -0.3523365 -0.40302742 -0.84463012 -0.3523365 -0.40302742 -0.61836588 -0.67134643\n\t\t -0.40849018 -0.55742037 -0.60741013 -0.56590468 -0.61836588 -0.67134643 -0.40849018\n\t\t -0.84463012 -0.3523365 -0.40302742 -0.89724404 -0.3929261 -0.2012085 -0.89724404\n\t\t -0.3929261 -0.2012085 -0.66792786 -0.7164222 -0.2014221 -0.61836588 -0.67134643 -0.40849018\n\t\t -0.9853816 -0.0068975003 -0.17014068 -0.89724404 -0.3929261 -0.2012085 -0.84463012\n\t\t -0.3523365 -0.40302742 -0.84463012 -0.3523365 -0.40302742 -0.9416486 0.023498937\n\t\t -0.33573413 -0.9853816 -0.0068975003 -0.17014068 -0.9416486 0.023498937 -0.33573413\n\t\t -0.84463012 -0.3523365 -0.40302742 -0.78527164 -0.29102477 -0.54643393 -0.78527164\n\t\t -0.29102477 -0.54643393 -0.89339882 0.070375375 -0.44367808 -0.9416486 0.023498937\n\t\t -0.33573413 -0.89339882 0.070375375 -0.44367808 -0.78527164 -0.29102477 -0.54643393\n\t\t -0.71669662 -0.2121039 -0.66432691 -0.71669662 -0.2121039 -0.66432691 -0.84203625\n\t\t 0.12952025 -0.52357554 -0.89339882 0.070375375 -0.44367808 -0.84203625 0.12952025\n\t\t -0.52357554 -0.71669662 -0.2121039 -0.66432691 -0.6131779 -0.093020663 -0.78441727\n\t\t -0.6131779 -0.093020663 -0.78441727 -0.770684 0.21298839 -0.60051268 -0.84203625\n\t\t 0.12952025 -0.52357554 -0.35425857 -0.9343853 -0.036866289 -0.33494034 -0.92635894\n\t\t -0.17212431 -0.66792786 -0.7164222 -0.2014221 0.049409773 -0.99182105 -0.11761826\n\t\t -0.33494034 -0.92635894 -0.17212431 -0.35425857 -0.9343853 -0.036866289 -0.35425857\n\t\t -0.9343853 -0.036866289 0.03228889 -0.99914551 -0.025330288 0.049409773 -0.99182105\n\t\t -0.11761826 0.049409773 -0.99182105 -0.11761826 0.03228889 -0.99914551 -0.025330288\n\t\t 0.41206118 -0.91106892 -0.0097963735 0.41206118 -0.91106892 -0.0097963735 0.42283422\n\t\t -0.90508729 -0.044495918 0.049409773 -0.99182105 -0.11761826 0.73149842 -0.68074566\n\t\t 0.038087152 0.42283422 -0.90508729 -0.044495918 0.41206118 -0.91106892 -0.0097963735\n\t\t -0.89724404 -0.3929261 -0.2012085 -0.9853816 -0.0068975003 -0.17014068 -0.99908447\n\t\t -0.021760007 -0.036683246 -0.99908447 -0.021760007 -0.036683246 -0.91329682 -0.40495038\n\t\t -0.042878475 -0.89724404 -0.3929261 -0.2012085 -0.66792786 -0.7164222 -0.2014221\n\t\t -0.89724404 -0.3929261 -0.2012085 -0.91329682 -0.40495038 -0.042878475 -0.66792786\n\t\t -0.7164222 -0.2014221 -0.6865747 -0.72576094 -0.042817418 -0.35425857 -0.9343853\n\t\t -0.036866289 -0.91329682 -0.40495038 -0.042878475 -0.6865747 -0.72576094 -0.042817418\n\t\t -0.66792786 -0.7164222 -0.2014221 -0.027100129 -0.99118012 0.12952062 0.30744374\n\t\t -0.90060109 0.30719939 0.26459575 -0.90185243 0.34150219 0.26459575 -0.90185243 0.34150219\n\t\t -0.040345162 -0.99386579 0.10266434 -0.027100129 -0.99118012 0.12952062 0.09927702\n\t\t -0.98965418 -0.10327457 0.46079925 -0.88702035 -0.028687334 0.44761524 -0.89410067\n\t\t 0.013397692 0.44761524 -0.89410067 0.013397692 0.074129768 -0.99697864 0.022064958\n\t\t 0.09927702 -0.98965418 -0.10327457 0.96847439 0.048616301 0.24417859 0.84911638 0.42954832\n\t\t 0.30729085 0.89010274 0.45271185 0.052430768 0.64012551 0.76564854 0.063081697 0.89010274\n\t\t 0.45271185 0.052430768 0.84911638 0.42954832 0.30729085 0.15326424 -0.89403963 0.42088082\n\t\t 0.48719776 -0.84444696 0.22251052 0.5311749 -0.79552579 0.29145181 0.5311749 -0.79552579\n\t\t 0.29145181 0.22782093 -0.81231105 0.53685117 0.15326424 -0.89403963 0.42088082 0.44410554\n\t\t -0.55076736 0.70665616 0.66164148 -0.63881326 0.39252913 0.70183432 -0.59016669 0.39887694\n\t\t 0.70183432 -0.59016669 0.39887694 0.51390129 -0.46714661 0.7194739 0.44410554 -0.55076736\n\t\t 0.70665616 0.64271992 -0.32721931 -0.69267863 0.41663873 -0.091647021 -0.90441602\n\t\t 0.33277389 -0.19363992 -0.9228797 0.037476715 0.04373296 -0.99832147 0.33277389 -0.19363992\n\t\t -0.9228797 0.41663873 -0.091647021 -0.90441602 0.76180309 -0.19348706 0.61821347\n\t\t 0.81289113 -0.4627519 0.35358748 0.8446914 -0.43052432 0.31797239 0.8446914 -0.43052432\n\t\t 0.31797239 0.8376416 -0.11307078 0.53434861 0.76180309 -0.19348706 0.61821347 0.93847466\n\t\t -0.0097656064 0.34513381 0.89941108 -0.37696433 0.22119819;\n\tsetAttr \".n[42662:42827]\" -type \"float3\"  0.92745763 -0.35511309 0.11685541 0.92745763\n\t\t -0.35511309 0.11685541 0.98333687 0.023041792 0.18027283 0.93847466 -0.0097656064\n\t\t 0.34513381 0.98333687 0.023041792 0.18027283 0.92745763 -0.35511309 0.11685541 0.93466002\n\t\t -0.35459426 0.02572713 0.93466002 -0.35459426 0.02572713 0.99877924 0.028290972 0.040223394\n\t\t 0.98333687 0.023041792 0.18027283 0.99963379 0.02621571 -1.950883e-09 0.99877924\n\t\t 0.028290972 0.040223394 0.93466002 -0.35459426 0.02572713 0.93466002 -0.35459426\n\t\t 0.02572713 0.93359184 -0.35831752 2.6665099e-08 0.99963379 0.02621571 -1.950883e-09\n\t\t -3.0920822e-07 1 -7.441745e-08 -0.38267189 0.9238562 -6.8751028e-08 -0.36994568 0.92748791\n\t\t -0.053651612 -0.36994568 0.92748791 -0.053651612 0.012085021 0.99969482 -0.020203328\n\t\t -3.0920822e-07 1 -7.441745e-08 0.012085021 0.99969482 -0.020203328 -0.36994568 0.92748791\n\t\t -0.053651612 -0.33018005 0.92236078 -0.20050669 -0.33018005 0.92236078 -0.20050669\n\t\t 0.03253242 0.9967345 -0.073580198 0.012085021 0.99969482 -0.020203328 0.050782494\n\t\t 0.99078339 -0.12537012 0.03253242 0.9967345 -0.073580198 -0.33018005 0.92236078 -0.20050669\n\t\t -0.33018005 0.92236078 -0.20050669 -0.27164552 0.90316468 -0.33234662 0.050782494\n\t\t 0.99078339 -0.12537012 -0.55241573 0.66853821 -0.49784851 -0.27164552 0.90316468\n\t\t -0.33234662 -0.33018005 0.92236078 -0.20050669 -0.33018005 0.92236078 -0.20050669\n\t\t -0.64482582 0.69746983 -0.31260115 -0.55241573 0.66853821 -0.49784851 -0.64482582\n\t\t 0.69746983 -0.31260115 -0.33018005 0.92236078 -0.20050669 -0.36994568 0.92748791\n\t\t -0.053651612 -0.36994568 0.92748791 -0.053651612 -0.69753128 0.71169138 -0.083010398\n\t\t -0.64482582 0.69746983 -0.31260115 -0.70708358 0.70708311 -5.2619338e-08 -0.69753128\n\t\t 0.71169138 -0.083010398 -0.36994568 0.92748791 -0.053651612 -0.36994568 0.92748791\n\t\t -0.053651612 -0.38267189 0.9238562 -6.8751028e-08 -0.70708358 0.70708311 -5.2619338e-08\n\t\t -0.91875982 0.38254923 -0.097354077 -0.69753128 0.71169138 -0.083010398 -0.70708358\n\t\t 0.70708311 -5.2619338e-08 -0.70708358 0.70708311 -5.2619338e-08 -0.92385644 0.3826713\n\t\t -2.8477444e-08 -0.91875982 0.38254923 -0.097354077 -0.69753128 0.71169138 -0.083010398\n\t\t -0.91875982 0.38254923 -0.097354077 -0.85692936 0.36344463 -0.36539814 -0.85692936\n\t\t 0.36344463 -0.36539814 -0.64482582 0.69746983 -0.31260115 -0.69753128 0.71169138\n\t\t -0.083010398 -0.64482582 0.69746983 -0.31260115 -0.85692936 0.36344463 -0.36539814\n\t\t -0.74077588 0.33506244 -0.58217108 -0.74077588 0.33506244 -0.58217108 -0.55241573\n\t\t 0.66853821 -0.49784851 -0.64482582 0.69746983 -0.31260115 -0.81963563 -0.043489169\n\t\t -0.5711844 -0.74077588 0.33506244 -0.58217108 -0.85692936 0.36344463 -0.36539814\n\t\t -0.85692936 0.36344463 -0.36539814 -0.93749809 -0.025696902 -0.34699544 -0.81963563\n\t\t -0.043489169 -0.5711844 -0.93749809 -0.025696902 -0.34699544 -0.85692936 0.36344463\n\t\t -0.36539814 -0.91875982 0.38254923 -0.097354077 -0.91875982 0.38254923 -0.097354077\n\t\t -0.99588001 -0.0068974975 -0.090334788 -0.93749809 -0.025696902 -0.34699544 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -0.99588001 -0.0068974975 -0.090334788 -0.91875982 0.38254923 -0.097354077\n\t\t -0.91875982 0.38254923 -0.097354077 -0.92385644 0.3826713 -2.8477444e-08 -1 -3.0920822e-07\n\t\t -1.2246572e-16 -0.91738629 -0.39237678 -0.066438764 -0.99588001 -0.0068974975 -0.090334788\n\t\t -1 -3.0920822e-07 -1.2246572e-16 -1 -3.0920822e-07 -1.2246572e-16 -0.9238562 -0.38267189\n\t\t 2.8477444e-08 -0.91738629 -0.39237678 -0.066438764 -0.99588001 -0.0068974975 -0.090334788\n\t\t -0.91738629 -0.39237678 -0.066438764 -0.87285978 -0.40913144 -0.2658467 -0.87285978\n\t\t -0.40913144 -0.2658467 -0.93749809 -0.025696902 -0.34699544 -0.99588001 -0.0068974975\n\t\t -0.090334788 -0.93749809 -0.025696902 -0.34699544 -0.87285978 -0.40913144 -0.2658467\n\t\t -0.77993089 -0.41608962 -0.46748251 -0.77993089 -0.41608962 -0.46748251 -0.81963563\n\t\t -0.043489169 -0.5711844 -0.93749809 -0.025696902 -0.34699544 -0.61830479 -0.72978932\n\t\t -0.29163483 -0.77993089 -0.41608962 -0.46748251 -0.87285978 -0.40913144 -0.2658467\n\t\t -0.87285978 -0.40913144 -0.2658467 -0.66887391 -0.72774458 -0.15155485 -0.61830479\n\t\t -0.72978932 -0.29163483 -0.66887391 -0.72774458 -0.15155485 -0.87285978 -0.40913144\n\t\t -0.2658467 -0.91738629 -0.39237678 -0.066438764 -0.91738629 -0.39237678 -0.066438764\n\t\t -0.69823271 -0.71489632 -0.036805272 -0.66887391 -0.72774458 -0.15155485 -0.70708311\n\t\t -0.70708358 5.2619338e-08 -0.69823271 -0.71489632 -0.036805272 -0.91738629 -0.39237678\n\t\t -0.066438764 -0.91738629 -0.39237678 -0.066438764 -0.9238562 -0.38267189 2.8477444e-08\n\t\t -0.70708311 -0.70708358 5.2619338e-08 -0.3745839 -0.92712194 -0.0088197803 -0.69823271\n\t\t -0.71489632 -0.036805272 -0.70708311 -0.70708358 5.2619338e-08 -0.70708311 -0.70708358\n\t\t 5.2619338e-08 -0.3826713 -0.92385644 6.8751028e-08 -0.3745839 -0.92712194 -0.0088197803\n\t\t -0.69823271 -0.71489632 -0.036805272 -0.3745839 -0.92712194 -0.0088197803 -0.3604233\n\t\t -0.93215746 -0.03357029 -0.3604233 -0.93215746 -0.03357029 -0.66887391 -0.72774458\n\t\t -0.15155485 -0.69823271 -0.71489632 -0.036805272 -0.66887391 -0.72774458 -0.15155485\n\t\t -0.3604233 -0.93215746 -0.03357029 -0.35377026 -0.93185228 -0.080202572 -0.35377026\n\t\t -0.93185228 -0.080202572 -0.61830479 -0.72978932 -0.29163483 -0.66887391 -0.72774458\n\t\t -0.15155485 -0.027100129 -0.99118012 0.12952062 -0.35377026 -0.93185228 -0.080202572\n\t\t -0.3604233 -0.93215746 -0.03357029 -0.3604233 -0.93215746 -0.03357029 0.00549364\n\t\t -0.99734491 0.072267905 -0.027100129 -0.99118012 0.12952062 0.00549364 -0.99734491\n\t\t 0.072267905 -0.3604233 -0.93215746 -0.03357029 -0.3745839 -0.92712194 -0.0088197803\n\t\t -0.3745839 -0.92712194 -0.0088197803 0.0057683075 -0.99984741 0.014771033 0.00549364\n\t\t -0.99734491 0.072267905 3.0919878e-07 -0.99996948 7.4415176e-08 0.0057683075 -0.99984741\n\t\t 0.014771033 -0.3745839 -0.92712194 -0.0088197803 -0.3745839 -0.92712194 -0.0088197803\n\t\t -0.3826713 -0.92385644 6.8751028e-08 3.0919878e-07 -0.99996948 7.4415176e-08 3.0919878e-07\n\t\t -0.99996948 7.4415176e-08 0.38267189 -0.9238562 6.8751028e-08 0.38514388 -0.92223871\n\t\t 0.033509389 0.38514388 -0.92223871 0.033509389 0.0057683075 -0.99984741 0.014771033\n\t\t 3.0919878e-07 -0.99996948 7.4415176e-08;\n\tsetAttr \".n[42828:42993]\" -type \"float3\"  0.38514388 -0.92223871 0.033509389 0.38267189\n\t\t -0.9238562 6.8751028e-08 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311\n\t\t 5.2619338e-08 0.70744979 -0.70519096 0.047059596 0.38514388 -0.92223871 0.033509389\n\t\t 0.38514388 -0.92223871 0.033509389 0.70744979 -0.70519096 0.047059596 0.68477458\n\t\t -0.69521141 0.21835998 0.68477458 -0.69521141 0.21835998 0.37153259 -0.91494477 0.15756714\n\t\t 0.38514388 -0.92223871 0.033509389 0.0057683075 -0.99984741 0.014771033 0.38514388\n\t\t -0.92223871 0.033509389 0.37153259 -0.91494477 0.15756714 0.37153259 -0.91494477\n\t\t 0.15756714 0.00549364 -0.99734491 0.072267905 0.0057683075 -0.99984741 0.014771033\n\t\t 0.37153259 -0.91494477 0.15756714 0.68477458 -0.69521141 0.21835998 0.59831554 -0.67326862\n\t\t 0.43437001 0.59831554 -0.67326862 0.43437001 0.30744374 -0.90060109 0.30719939 0.37153259\n\t\t -0.91494477 0.15756714 0.92278826 -0.38132846 0.054628164 0.70744979 -0.70519096\n\t\t 0.047059596 0.70708358 -0.70708311 5.2619338e-08 0.70708358 -0.70708311 5.2619338e-08\n\t\t 0.92385644 -0.3826713 2.8477444e-08 0.92278826 -0.38132846 0.054628164 0.70744979\n\t\t -0.70519096 0.047059596 0.92278826 -0.38132846 0.054628164 0.89440608 -0.37076908\n\t\t 0.25000766 0.89440608 -0.37076908 0.25000766 0.68477458 -0.69521141 0.21835998 0.70744979\n\t\t -0.70519096 0.047059596 0.68477458 -0.69521141 0.21835998 0.89440608 -0.37076908\n\t\t 0.25000766 0.79622805 -0.34412643 0.49754328 0.79622805 -0.34412643 0.49754328 0.59831554\n\t\t -0.67326862 0.43437001 0.68477458 -0.69521141 0.21835998 0.87066257 0.035188146 0.49061555\n\t\t 0.79622805 -0.34412643 0.49754328 0.89440608 -0.37076908 0.25000766 0.89440608 -0.37076908\n\t\t 0.25000766 0.96844387 0.0090337973 0.24897 0.87066257 0.035188146 0.49061555 0.96844387\n\t\t 0.0090337973 0.24897 0.89440608 -0.37076908 0.25000766 0.92278826 -0.38132846 0.054628164\n\t\t 0.92278826 -0.38132846 0.054628164 0.99844354 0.00024446091 0.055269022 0.96844387\n\t\t 0.0090337973 0.24897 1 3.0920822e-07 1.2246572e-16 0.99844354 0.00024446091 0.055269022\n\t\t 0.92278826 -0.38132846 0.054628164 0.92278826 -0.38132846 0.054628164 0.92385644\n\t\t -0.3826713 2.8477444e-08 1 3.0920822e-07 1.2246572e-16 0.92318481 0.38129854 0.048188698\n\t\t 0.99844354 0.00024446091 0.055269022 1 3.0920822e-07 1.2246572e-16 1 3.0920822e-07\n\t\t 1.2246572e-16 0.9238562 0.38267189 -2.8477444e-08 0.92318481 0.38129854 0.048188698\n\t\t 0.99844354 0.00024446091 0.055269022 0.92318481 0.38129854 0.048188698 0.89739662\n\t\t 0.38569322 0.21423991 0.89739662 0.38569322 0.21423991 0.96844387 0.0090337973 0.24897\n\t\t 0.99844354 0.00024446091 0.055269022 0.96844387 0.0090337973 0.24897 0.89739662 0.38569322\n\t\t 0.21423991 0.81395906 0.40623215 0.4152348 0.81395906 0.40623215 0.4152348 0.87066257\n\t\t 0.035188146 0.49061555 0.96844387 0.0090337973 0.24897 0.64003396 0.71599495 0.27866444\n\t\t 0.81395906 0.40623215 0.4152348 0.89739662 0.38569322 0.21423991 0.89739662 0.38569322\n\t\t 0.21423991 0.69600487 0.70293307 0.14630568 0.64003396 0.71599495 0.27866444 0.69600487\n\t\t 0.70293307 0.14630568 0.89739662 0.38569322 0.21423991 0.92318481 0.38129854 0.048188698\n\t\t 0.92318481 0.38129854 0.048188698 0.70958561 0.70381808 0.032959938 0.69600487 0.70293307\n\t\t 0.14630568 0.70708311 0.70708358 -5.2619338e-08 0.70958561 0.70381808 0.032959938\n\t\t 0.92318481 0.38129854 0.048188698 0.92318481 0.38129854 0.048188698 0.9238562 0.38267189\n\t\t -2.8477444e-08 0.70708311 0.70708358 -5.2619338e-08 0.38984314 0.92080456 0.0097658541\n\t\t 0.70958561 0.70381808 0.032959938 0.70708311 0.70708358 -5.2619338e-08 0.70708311\n\t\t 0.70708358 -5.2619338e-08 0.3826713 0.92385644 -6.8751028e-08 0.38984314 0.92080456\n\t\t 0.0097658541 0.70958561 0.70381808 0.032959938 0.38984314 0.92080456 0.0097658541\n\t\t 0.39374951 0.91796637 0.047425695 0.39374951 0.91796637 0.047425695 0.69600487 0.70293307\n\t\t 0.14630568 0.70958561 0.70381808 0.032959938 0.69600487 0.70293307 0.14630568 0.39374951\n\t\t 0.91796637 0.047425695 0.37391248 0.92281878 0.092440501 0.37391248 0.92281878 0.092440501\n\t\t 0.64003396 0.71599495 0.27866444 0.69600487 0.70293307 0.14630568 0.050782494 0.99078339\n\t\t -0.12537012 0.37391248 0.92281878 0.092440501 0.39374951 0.91796637 0.047425695 0.39374951\n\t\t 0.91796637 0.047425695 0.03253242 0.9967345 -0.073580198 0.050782494 0.99078339 -0.12537012\n\t\t 0.03253242 0.9967345 -0.073580198 0.39374951 0.91796637 0.047425695 0.38984314 0.92080456\n\t\t 0.0097658541 0.38984314 0.92080456 0.0097658541 0.012085021 0.99969482 -0.020203328\n\t\t 0.03253242 0.9967345 -0.073580198 -3.0920822e-07 1 -7.441745e-08 0.012085021 0.99969482\n\t\t -0.020203328 0.38984314 0.92080456 0.0097658541 0.38984314 0.92080456 0.0097658541\n\t\t 0.3826713 0.92385644 -6.8751028e-08 -3.0920822e-07 1 -7.441745e-08 0.00549364 -0.99734491\n\t\t 0.072267905 0.37153259 -0.91494477 0.15756714 0.30744374 -0.90060109 0.30719939 0.30744374\n\t\t -0.90060109 0.30719939 -0.027100129 -0.99118012 0.12952062 0.00549364 -0.99734491\n\t\t 0.072267905 -0.38633412 0.92233026 -0.0053408076 -0.41868371 0.90694892 0.045930289\n\t\t -0.076693319 0.98174995 0.17386387 -0.076693319 0.98174995 0.17386387 -0.022034671\n\t\t 0.99688709 0.075624794 -0.38633412 0.92233026 -0.0053408076 -0.076693319 0.98174995\n\t\t 0.17386387 -0.41868371 0.90694892 0.045930289 -0.45802206 0.88177115 0.11243013 -0.45802206\n\t\t 0.88177115 0.11243013 -0.134709 0.95388645 0.26822713 -0.076693319 0.98174995 0.17386387\n\t\t -0.134709 0.95388645 0.26822713 -0.45802206 0.88177115 0.11243013 -0.49852011 0.85219866\n\t\t 0.15872671 -0.49852011 0.85219866 0.15872671 -0.18460675 0.92452765 0.33335361 -0.134709\n\t\t 0.95388645 0.26822713 -0.75884295 0.6496473 -0.045564182 -0.49852011 0.85219866 0.15872671\n\t\t -0.45802206 0.88177115 0.11243013 -0.45802206 0.88177115 0.11243013 -0.73293275 0.67729706\n\t\t -0.063570105 -0.75884295 0.6496473 -0.045564182 -0.73293275 0.67729706 -0.063570105\n\t\t -0.45802206 0.88177115 0.11243013 -0.41868371 0.90694892 0.045930289 -0.41868371\n\t\t 0.90694892 0.045930289;\n\tsetAttr \".n[42994:43159]\" -type \"float3\"  -0.70885366 0.69945347 -0.090762101 -0.73293275\n\t\t 0.67729706 -0.063570105 -0.70885366 0.69945347 -0.090762101 -0.41868371 0.90694892\n\t\t 0.045930289 -0.38633412 0.92233026 -0.0053408076 -0.38633412 0.92233026 -0.0053408076\n\t\t -0.69542551 0.71312577 -0.088259585 -0.70885366 0.69945347 -0.090762101 -0.90191364\n\t\t 0.3699756 -0.22278515 -0.70885366 0.69945347 -0.090762101 -0.69542551 0.71312577\n\t\t -0.088259585 -0.69542551 0.71312577 -0.088259585 -0.90856665 0.38373947 -0.16498309\n\t\t -0.90191364 0.3699756 -0.22278515 -0.70885366 0.69945347 -0.090762101 -0.90191364\n\t\t 0.3699756 -0.22278515 -0.90353113 0.35108465 -0.24558248 -0.90353113 0.35108465 -0.24558248\n\t\t -0.73293275 0.67729706 -0.063570105 -0.70885366 0.69945347 -0.090762101 -0.73293275\n\t\t 0.67729706 -0.063570105 -0.90353113 0.35108465 -0.24558248 -0.90731543 0.32856196\n\t\t -0.26227611 -0.90731543 0.32856196 -0.26227611 -0.75884295 0.6496473 -0.045564182\n\t\t -0.73293275 0.67729706 -0.063570105 -0.88866848 -0.05633748 -0.45500046 -0.90731543\n\t\t 0.32856196 -0.26227611 -0.90353113 0.35108465 -0.24558248 -0.90353113 0.35108465\n\t\t -0.24558248 -0.91372418 -0.043611262 -0.40397352 -0.88866848 -0.05633748 -0.45500046\n\t\t -0.91372418 -0.043611262 -0.40397352 -0.90353113 0.35108465 -0.24558248 -0.90191364\n\t\t 0.3699756 -0.22278515 -0.90191364 0.3699756 -0.22278515 -0.94360179 -0.028229937\n\t\t -0.32978302 -0.91372418 -0.043611262 -0.40397352 -0.94360179 -0.028229937 -0.32978302\n\t\t -0.90191364 0.3699756 -0.22278515 -0.90856665 0.38373947 -0.16498309 -0.90856665\n\t\t 0.38373947 -0.16498309 -0.97625661 -0.012390832 -0.21619312 -0.94360179 -0.028229937\n\t\t -0.32978302 -0.82219905 -0.41529617 -0.38920254 -0.94360179 -0.028229937 -0.32978302\n\t\t -0.97625661 -0.012390832 -0.21619312 -0.97625661 -0.012390832 -0.21619312 -0.8851282\n\t\t -0.40305826 -0.23242894 -0.82219905 -0.41529617 -0.38920254 -0.94360179 -0.028229937\n\t\t -0.32978302 -0.82219905 -0.41529617 -0.38920254 -0.75667578 -0.41859215 -0.50215149\n\t\t -0.75667578 -0.41859215 -0.50215149 -0.91372418 -0.043611262 -0.40397352 -0.94360179\n\t\t -0.028229937 -0.32978302 -0.91372418 -0.043611262 -0.40397352 -0.75667578 -0.41859215\n\t\t -0.50215149 -0.7025665 -0.41486886 -0.57814258 -0.7025665 -0.41486886 -0.57814258\n\t\t -0.88866848 -0.05633748 -0.45500046 -0.91372418 -0.043611262 -0.40397352 -0.4156619\n\t\t -0.67619878 -0.60820329 -0.7025665 -0.41486886 -0.57814258 -0.75667578 -0.41859215\n\t\t -0.50215149 -0.75667578 -0.41859215 -0.50215149 -0.48747194 -0.70113248 -0.5203405\n\t\t -0.4156619 -0.67619878 -0.60820329 -0.48747194 -0.70113248 -0.5203405 -0.75667578\n\t\t -0.41859215 -0.50215149 -0.82219905 -0.41529617 -0.38920254 -0.82219905 -0.41529617\n\t\t -0.38920254 -0.57496846 -0.72029805 -0.38795123 -0.48747194 -0.70113248 -0.5203405\n\t\t -0.57496846 -0.72029805 -0.38795123 -0.82219905 -0.41529617 -0.38920254 -0.8851282\n\t\t -0.40305826 -0.23242894 -0.8851282 -0.40305826 -0.23242894 -0.65776521 -0.72243434\n\t\t -0.21298862 -0.57496846 -0.72029805 -0.38795123 -0.25977328 -0.90850556 -0.3272194\n\t\t -0.57496846 -0.72029805 -0.38795123 -0.65776521 -0.72243434 -0.21298862 -0.65776521\n\t\t -0.72243434 -0.21298862 -0.33945709 -0.92614532 -0.1641895 -0.25977328 -0.90850556\n\t\t -0.3272194 -0.57496846 -0.72029805 -0.38795123 -0.25977328 -0.90850556 -0.3272194\n\t\t -0.1747182 -0.86993021 -0.46110409 -0.1747182 -0.86993021 -0.46110409 -0.48747194\n\t\t -0.70113248 -0.5203405 -0.57496846 -0.72029805 -0.38795123 -0.48747194 -0.70113248\n\t\t -0.5203405 -0.1747182 -0.86993021 -0.46110409 -0.1013212 -0.82842505 -0.55082852\n\t\t -0.1013212 -0.82842505 -0.55082852 -0.4156619 -0.67619878 -0.60820329 -0.48747194\n\t\t -0.70113248 -0.5203405 0.20789236 -0.88454849 -0.41749316 -0.1013212 -0.82842505\n\t\t -0.55082852 -0.1747182 -0.86993021 -0.46110409 -0.1747182 -0.86993021 -0.46110409\n\t\t 0.14532943 -0.9311502 -0.33436072 0.20789236 -0.88454849 -0.41749316 0.14532943 -0.9311502\n\t\t -0.33436072 -0.1747182 -0.86993021 -0.46110409 -0.25977328 -0.90850556 -0.3272194\n\t\t -0.25977328 -0.90850556 -0.3272194 0.081301607 -0.97296059 -0.21607096 0.14532943\n\t\t -0.9311502 -0.33436072 0.081301607 -0.97296059 -0.21607096 -0.25977328 -0.90850556\n\t\t -0.3272194 -0.33945709 -0.92614532 -0.1641895 -0.33945709 -0.92614532 -0.1641895\n\t\t 0.024567707 -0.99520862 -0.094607309 0.081301607 -0.97296059 -0.21607096 -0.65776521\n\t\t -0.72243434 -0.21298862 -0.8851282 -0.40305826 -0.23242894 -0.91763043 -0.3872802\n\t\t -0.089022465 -0.99536121 -0.0014041663 -0.095950194 -0.91763043 -0.3872802 -0.089022465\n\t\t -0.8851282 -0.40305826 -0.23242894 -0.91763043 -0.3872802 -0.089022465 -0.99536121\n\t\t -0.0014041663 -0.095950194 -0.99899286 -0.0021976449 -0.044526506 -0.92220843 0.38395306\n\t\t -0.045564163 -0.99899286 -0.0021976449 -0.044526506 -0.99536121 -0.0014041663 -0.095950194\n\t\t -0.99536121 -0.0014041663 -0.095950194 -0.91848516 0.38639456 -0.083834372 -0.92220843\n\t\t 0.38395306 -0.045564163 -0.70226169 0.7112031 -0.031128932 -0.92220843 0.38395306\n\t\t -0.045564163 -0.91848516 0.38639456 -0.083834372 -0.91848516 0.38639456 -0.083834372\n\t\t -0.69920981 0.7130037 -0.051789962 -0.70226169 0.7112031 -0.031128932 -0.37788048\n\t\t 0.92574835 -0.012573695 -0.70226169 0.7112031 -0.031128932 -0.69920981 0.7130037\n\t\t -0.051789962 -0.69920981 0.7130037 -0.051789962 -0.37916225 0.92519903 -0.01431325\n\t\t -0.37788048 0.92574835 -0.012573695 -0.37788048 0.92574835 -0.012573695 -0.37916225\n\t\t 0.92519903 -0.01431325 -0.0014041606 0.99978638 0.019287623 -0.0014041606 0.99978638\n\t\t 0.019287623 0.0051268004 0.99996948 0.0028076284 -0.37788048 0.92574835 -0.012573695\n\t\t -0.022034671 0.99688709 0.075624794 -0.0014041606 0.99978638 0.019287623 -0.37916225\n\t\t 0.92519903 -0.01431325 -0.37916225 0.92519903 -0.01431325 -0.38633412 0.92233026\n\t\t -0.0053408076 -0.022034671 0.99688709 0.075624794 -0.69542551 0.71312577 -0.088259585\n\t\t -0.38633412 0.92233026 -0.0053408076 -0.37916225 0.92519903 -0.01431325 -0.37916225\n\t\t 0.92519903 -0.01431325 -0.69920981 0.7130037 -0.051789962 -0.69542551 0.71312577\n\t\t -0.088259585 -0.69920981 0.7130037 -0.051789962 -0.91848516 0.38639456 -0.083834372\n\t\t -0.90856665 0.38373947 -0.16498309 -0.90856665 0.38373947 -0.16498309 -0.69542551\n\t\t 0.71312577 -0.088259585;\n\tsetAttr \".n[43160:43325]\" -type \"float3\"  -0.69920981 0.7130037 -0.051789962 -0.97625661\n\t\t -0.012390832 -0.21619312 -0.90856665 0.38373947 -0.16498309 -0.91848516 0.38639456\n\t\t -0.083834372 -0.91848516 0.38639456 -0.083834372 -0.99536121 -0.0014041663 -0.095950194\n\t\t -0.97625661 -0.012390832 -0.21619312 -0.8851282 -0.40305826 -0.23242894 -0.97625661\n\t\t -0.012390832 -0.21619312 -0.99536121 -0.0014041663 -0.095950194 0.37205085 0.92718297\n\t\t 0.043183621 -0.0014041606 0.99978638 0.019287623 -0.022034671 0.99688709 0.075624794\n\t\t -0.022034671 0.99688709 0.075624794 0.33530656 0.93124193 0.14246033 0.37205085 0.92718297\n\t\t 0.043183621 0.33530656 0.93124193 0.14246033 -0.022034671 0.99688709 0.075624794\n\t\t -0.076693319 0.98174995 0.17386387 -0.076693319 0.98174995 0.17386387 0.26358807\n\t\t 0.92318499 0.27967155 0.33530656 0.93124193 0.14246033 0.65333998 0.7329632 0.18945885\n\t\t 0.33530656 0.93124193 0.14246033 0.26358807 0.92318499 0.27967155 0.26358807 0.92318499\n\t\t 0.27967155 0.57274061 0.73781568 0.35712755 0.65333998 0.7329632 0.18945885 0.8831445\n\t\t 0.41929409 0.21027251 0.65333998 0.7329632 0.18945885 0.57274061 0.73781568 0.35712755\n\t\t 0.57274061 0.73781568 0.35712755 0.81102926 0.43656754 0.38935512 0.8831445 0.41929409\n\t\t 0.21027251 0.97979677 0.029755866 0.19766839 0.8831445 0.41929409 0.21027251 0.81102926\n\t\t 0.43656754 0.38935512 0.81102926 0.43656754 0.38935512 0.93203527 0.050172742 0.35883662\n\t\t 0.97979677 0.029755866 0.19766839 0.91665405 -0.37058595 0.14960176 0.97979677 0.029755866\n\t\t 0.19766839 0.93203527 0.050172742 0.35883662 0.93203527 0.050172742 0.35883662 0.8978852\n\t\t -0.35676107 0.25785092 0.91665405 -0.37058595 0.14960176 0.70488626 -0.70534354 0.074770398\n\t\t 0.91665405 -0.37058595 0.14960176 0.8978852 -0.35676107 0.25785092 0.8978852 -0.35676107\n\t\t 0.25785092 0.71080685 -0.69560814 0.10400713 0.70488626 -0.70534354 0.074770398 0.38865352\n\t\t -0.92129266 -0.011627483 0.70488626 -0.70534354 0.074770398 0.71080685 -0.69560814\n\t\t 0.10400713 0.71080685 -0.69560814 0.10400713 0.41834798 -0.90588081 -0.065889396\n\t\t 0.38865352 -0.92129266 -0.011627483 0.024567707 -0.99520862 -0.094607309 0.38865352\n\t\t -0.92129266 -0.011627483 0.41834798 -0.90588081 -0.065889396 0.41834798 -0.90588081\n\t\t -0.065889396 0.081301607 -0.97296059 -0.21607096 0.024567707 -0.99520862 -0.094607309\n\t\t 0.41834798 -0.90588081 -0.065889396 0.71080685 -0.69560814 0.10400713 0.72676802\n\t\t -0.68224102 0.079409212 0.72676802 -0.68224102 0.079409212 0.45725909 -0.87691873\n\t\t -0.1478316 0.41834798 -0.90588081 -0.065889396 0.081301607 -0.97296059 -0.21607096\n\t\t 0.41834798 -0.90588081 -0.065889396 0.45725909 -0.87691873 -0.1478316 0.45725909\n\t\t -0.87691873 -0.1478316 0.14532943 -0.9311502 -0.33436072 0.081301607 -0.97296059\n\t\t -0.21607096 0.45725909 -0.87691873 -0.1478316 0.72676802 -0.68224102 0.079409212\n\t\t 0.75359374 -0.65556788 0.047578406 0.75359374 -0.65556788 0.047578406 0.50340307\n\t\t -0.83742774 -0.21268344 0.45725909 -0.87691873 -0.1478316 0.14532943 -0.9311502 -0.33436072\n\t\t 0.45725909 -0.87691873 -0.1478316 0.50340307 -0.83742774 -0.21268344 0.50340307 -0.83742774\n\t\t -0.21268344 0.20789236 -0.88454849 -0.41749316 0.14532943 -0.9311502 -0.33436072\n\t\t 0.71080685 -0.69560814 0.10400713 0.8978852 -0.35676107 0.25785092 0.88821083 -0.34986389\n\t\t 0.29770809 0.88821083 -0.34986389 0.29770809 0.72676802 -0.68224102 0.079409212 0.71080685\n\t\t -0.69560814 0.10400713 0.72676802 -0.68224102 0.079409212 0.88821083 -0.34986389\n\t\t 0.29770809 0.89089644 -0.33506241 0.30658898 0.89089644 -0.33506241 0.30658898 0.75359374\n\t\t -0.65556788 0.047578406 0.72676802 -0.68224102 0.079409212 0.86819053 0.058321178\n\t\t 0.49275187 0.89089644 -0.33506241 0.30658898 0.88821083 -0.34986389 0.29770809 0.88821083\n\t\t -0.34986389 0.29770809 0.89190346 0.054597922 0.44886625 0.86819053 0.058321178 0.49275187\n\t\t 0.89190346 0.054597922 0.44886625 0.88821083 -0.34986389 0.29770809 0.8978852 -0.35676107\n\t\t 0.25785092 0.8978852 -0.35676107 0.25785092 0.93203527 0.050172742 0.35883662 0.89190346\n\t\t 0.054597922 0.44886625 0.74608588 0.43339363 0.50544751 0.89190346 0.054597922 0.44886625\n\t\t 0.93203527 0.050172742 0.35883662 0.93203527 0.050172742 0.35883662 0.81102926 0.43656754\n\t\t 0.38935512 0.74608588 0.43339363 0.50544751 0.89190346 0.054597922 0.44886625 0.74608588\n\t\t 0.43339363 0.50544751 0.70223081 0.42515358 0.57103175 0.70223081 0.42515358 0.57103175\n\t\t 0.86819053 0.058321178 0.49275187 0.89190346 0.054597922 0.44886625 0.44499019 0.70342129\n\t\t 0.55418557 0.70223081 0.42515358 0.57103175 0.74608588 0.43339363 0.50544751 0.74608588\n\t\t 0.43339363 0.50544751 0.49836704 0.72249544 0.47917107 0.44499019 0.70342129 0.55418557\n\t\t 0.49836704 0.72249544 0.47917107 0.74608588 0.43339363 0.50544751 0.81102926 0.43656754\n\t\t 0.38935512 0.81102926 0.43656754 0.38935512 0.57274061 0.73781568 0.35712755 0.49836704\n\t\t 0.72249544 0.47917107 0.19397536 0.89837343 0.39405495 0.49836704 0.72249544 0.47917107\n\t\t 0.57274061 0.73781568 0.35712755 0.57274061 0.73781568 0.35712755 0.26358807 0.92318499\n\t\t 0.27967155 0.19397536 0.89837343 0.39405495 0.49836704 0.72249544 0.47917107 0.19397536\n\t\t 0.89837343 0.39405495 0.13953036 0.87224966 0.46870321 0.13953036 0.87224966 0.46870321\n\t\t 0.44499019 0.70342129 0.55418557 0.49836704 0.72249544 0.47917107 -0.18460675 0.92452765\n\t\t 0.33335361 0.13953036 0.87224966 0.46870321 0.19397536 0.89837343 0.39405495 0.19397536\n\t\t 0.89837343 0.39405495 -0.134709 0.95388645 0.26822713 -0.18460675 0.92452765 0.33335361\n\t\t -0.134709 0.95388645 0.26822713 0.19397536 0.89837343 0.39405495 0.26358807 0.92318499\n\t\t 0.27967155 0.26358807 0.92318499 0.27967155 -0.076693319 0.98174995 0.17386387 -0.134709\n\t\t 0.95388645 0.26822713 0.86819053 0.058321178 0.49275187 0.70223081 0.42515358 0.57103175\n\t\t 0.65654457 0.40980282 0.63322848 0.39265093 0.67729747 0.62211978 0.65654457 0.40980282\n\t\t 0.63322848 0.70223081 0.42515358 0.57103175;\n\tsetAttr \".n[43326:43491]\" -type \"float3\"  0.70223081 0.42515358 0.57103175 0.44499019\n\t\t 0.70342129 0.55418557 0.39265093 0.67729747 0.62211978 0.65654457 0.40980282 0.63322848\n\t\t 0.39265093 0.67729747 0.62211978 0.3357034 0.63637215 0.69444865 0.3357034 0.63637215\n\t\t 0.69444865 0.60097039 0.3770259 0.70470291 0.65654457 0.40980282 0.63322848 0.83889282\n\t\t 0.059938654 0.54094058 0.65654457 0.40980282 0.63322848 0.60097039 0.3770259 0.70470291\n\t\t 0.65654457 0.40980282 0.63322848 0.83889282 0.059938654 0.54094058 0.86819053 0.058321178\n\t\t 0.49275187 0.89089644 -0.33506241 0.30658898 0.86819053 0.058321178 0.49275187 0.83889282\n\t\t 0.059938654 0.54094058 0.83889282 0.059938654 0.54094058 0.88879067 -0.31516436 0.33268231\n\t\t 0.89089644 -0.33506241 0.30658898 0.75359374 -0.65556788 0.047578406 0.89089644 -0.33506241\n\t\t 0.30658898 0.88879067 -0.31516436 0.33268231 0.88879067 -0.31516436 0.33268231 0.78170127\n\t\t -0.62202799 0.044648625 0.75359374 -0.65556788 0.047578406 0.50340307 -0.83742774\n\t\t -0.21268344 0.75359374 -0.65556788 0.047578406 0.78170127 -0.62202799 0.044648625\n\t\t 0.78170127 -0.62202799 0.044648625 0.55427742 -0.7951901 -0.24576549 0.50340307 -0.83742774\n\t\t -0.21268344 0.55427742 -0.7951901 -0.24576549 0.78170127 -0.62202799 0.044648625\n\t\t 0.7963807 -0.59990209 0.076418392 0.7963807 -0.59990209 0.076418392 0.59459233 -0.76561767\n\t\t -0.24546032 0.55427742 -0.7951901 -0.24576549 0.59459233 -0.76561767 -0.24546032\n\t\t 0.7963807 -0.59990209 0.076418392 0.79525149 -0.59459186 0.11816771 0.79525149 -0.59459186\n\t\t 0.11816771 0.61912924 -0.75124347 -0.22858357 0.59459233 -0.76561767 -0.24546032\n\t\t 0.61912924 -0.75124347 -0.22858357 0.79525149 -0.59459186 0.11816771 0.78099936 -0.60692137\n\t\t 0.1470077 0.78099936 -0.60692137 0.1470077 0.62550759 -0.74990064 -0.21530803 0.61912924\n\t\t -0.75124347 -0.22858357 0.62550759 -0.74990064 -0.21530803 0.78099936 -0.60692137\n\t\t 0.1470077 0.76186424 -0.63307571 0.13681452 0.76186424 -0.63307571 0.13681452 0.61015677\n\t\t -0.76015484 -0.22327335 0.62550759 -0.74990064 -0.21530803 0.61015677 -0.76015484\n\t\t -0.22327335 0.76186424 -0.63307571 0.13681452 0.7448349 -0.65852815 0.10718106 0.7448349\n\t\t -0.65852815 0.10718106 0.57857013 -0.78115159 -0.23447365 0.61015677 -0.76015484\n\t\t -0.22327335 0.57857013 -0.78115159 -0.23447365 0.7448349 -0.65852815 0.10718106 0.72576094\n\t\t -0.68318713 0.080355287 0.72576094 -0.68318713 0.080355287 0.52778733 -0.81725496\n\t\t -0.23126921 0.57857013 -0.78115159 -0.23447365 0.52778733 -0.81725496 -0.23126921\n\t\t 0.72576094 -0.68318713 0.080355287 0.7026279 -0.70754087 0.075289212 0.7026279 -0.70754087\n\t\t 0.075289212 0.45069763 -0.87517917 -0.17572552 0.52778733 -0.81725496 -0.23126921\n\t\t 0.78899515 -0.39732021 0.46858123 0.76186424 -0.63307571 0.13681452 0.78099936 -0.60692137\n\t\t 0.1470077 0.78099936 -0.60692137 0.1470077 0.80629915 -0.35218334 0.47517323 0.78899515\n\t\t -0.39732021 0.46858123 0.80629915 -0.35218334 0.47517323 0.78099936 -0.60692137 0.1470077\n\t\t 0.79525149 -0.59459186 0.11816771 0.76186424 -0.63307571 0.13681452 0.78899515 -0.39732021\n\t\t 0.46858123 0.79137558 -0.43058538 0.43388167 0.79137558 -0.43058538 0.43388167 0.7448349\n\t\t -0.65852815 0.10718106 0.76186424 -0.63307571 0.13681452 0.7448349 -0.65852815 0.10718106\n\t\t 0.79137558 -0.43058538 0.43388167 0.80477321 -0.4452953 0.39240703 0.80477321 -0.4452953\n\t\t 0.39240703 0.72576094 -0.68318713 0.080355287 0.7448349 -0.65852815 0.10718106 0.72576094\n\t\t -0.68318713 0.080355287 0.80477321 -0.4452953 0.39240703 0.83483392 -0.43211126 0.34098333\n\t\t 0.83483392 -0.43211126 0.34098333 0.7026279 -0.70754087 0.075289212 0.72576094 -0.68318713\n\t\t 0.080355287 0.82082587 -0.10077182 0.56218147 0.83483392 -0.43211126 0.34098333 0.80477321\n\t\t -0.4452953 0.39240703 0.80477321 -0.4452953 0.39240703 0.75045019 -0.144749 0.6448561\n\t\t 0.82082587 -0.10077182 0.56218147 0.75045019 -0.144749 0.6448561 0.80477321 -0.4452953\n\t\t 0.39240703 0.79137558 -0.43058538 0.43388167 0.79137558 -0.43058538 0.43388167 0.71239364\n\t\t -0.13965243 0.68770409 0.75045019 -0.144749 0.6448561 0.71239364 -0.13965243 0.68770409\n\t\t 0.79137558 -0.43058538 0.43388167 0.78899515 -0.39732021 0.46858123 0.78899515 -0.39732021\n\t\t 0.46858123 0.69331956 -0.10312177 0.71318704 0.71239364 -0.13965243 0.68770409 0.69331956\n\t\t -0.10312177 0.71318704 0.78899515 -0.39732021 0.46858123 0.80629915 -0.35218334 0.47517323\n\t\t 0.80629915 -0.35218334 0.47517323 0.70552689 -0.04419053 0.70726645 0.69331956 -0.10312177\n\t\t 0.71318704 0.4986724 0.19769911 0.84392834 0.69331956 -0.10312177 0.71318704 0.70552689\n\t\t -0.04419053 0.70726645 0.70552689 -0.04419053 0.70726645 0.50816363 0.25882769 0.82143623\n\t\t 0.4986724 0.19769911 0.84392834 0.69331956 -0.10312177 0.71318704 0.4986724 0.19769911\n\t\t 0.84392834 0.52598643 0.16675337 0.83397931 0.52598643 0.16675337 0.83397931 0.71239364\n\t\t -0.13965243 0.68770409 0.69331956 -0.10312177 0.71318704 0.71239364 -0.13965243 0.68770409\n\t\t 0.52598643 0.16675337 0.83397931 0.57933283 0.17215516 0.79665518 0.57933283 0.17215516\n\t\t 0.79665518 0.75045019 -0.144749 0.6448561 0.71239364 -0.13965243 0.68770409 0.75045019\n\t\t -0.144749 0.6448561 0.57933283 0.17215516 0.79665518 0.67842638 0.23740374 0.69521165\n\t\t 0.67842638 0.23740374 0.69521165 0.82082587 -0.10077182 0.56218147 0.75045019 -0.144749\n\t\t 0.6448561 0.44856086 0.53367734 0.71687973 0.67842638 0.23740374 0.69521165 0.57933283\n\t\t 0.17215516 0.79665518 0.57933283 0.17215516 0.79665518 0.33045426 0.45554993 0.82656324\n\t\t 0.44856086 0.53367734 0.71687973 0.33045426 0.45554993 0.82656324 0.57933283 0.17215516\n\t\t 0.79665518 0.52598643 0.16675337 0.83397931 0.52598643 0.16675337 0.83397931 0.26767769\n\t\t 0.44041276 0.85692918 0.33045426 0.45554993 0.82656324 0.26767769 0.44041276 0.85692918\n\t\t 0.52598643 0.16675337 0.83397931 0.4986724 0.19769911 0.84392834 0.4986724 0.19769911\n\t\t 0.84392834;\n\tsetAttr \".n[43492:43657]\" -type \"float3\"  0.23828837 0.46113479 0.85470134 0.26767769\n\t\t 0.44041276 0.85692918 0.23828837 0.46113479 0.85470134 0.4986724 0.19769911 0.84392834\n\t\t 0.50816363 0.25882769 0.82143623 0.50816363 0.25882769 0.82143623 0.24723028 0.51551878\n\t\t 0.82039851 0.23828837 0.46113479 0.85470134 -0.056642558 0.65886414 0.75008386 0.23828837\n\t\t 0.46113479 0.85470134 0.24723028 0.51551878 0.82039851 0.24723028 0.51551878 0.82039851\n\t\t -0.049836941 0.69975895 0.71260715 -0.056642558 0.65886414 0.75008386 0.23828837\n\t\t 0.46113479 0.85470134 -0.056642558 0.65886414 0.75008386 -0.026124045 0.64992225\n\t\t 0.75951409 -0.026124045 0.64992225 0.75951409 0.26767769 0.44041276 0.85692918 0.23828837\n\t\t 0.46113479 0.85470134 0.26767769 0.44041276 0.85692918 -0.026124045 0.64992225 0.75951409\n\t\t 0.041413408 0.67458117 0.73702192 0.041413408 0.67458117 0.73702192 0.33045426 0.45554993\n\t\t 0.82656324 0.26767769 0.44041276 0.85692918 0.33045426 0.45554993 0.82656324 0.041413408\n\t\t 0.67458117 0.73702192 0.16443349 0.75981945 0.6289559 0.16443349 0.75981945 0.6289559\n\t\t 0.44856086 0.53367734 0.71687973 0.33045426 0.45554993 0.82656324 -0.15213504 0.88314462\n\t\t 0.44367802 0.16443349 0.75981945 0.6289559 0.041413408 0.67458117 0.73702192 0.041413408\n\t\t 0.67458117 0.73702192 -0.25864461 0.80275887 0.53724778 -0.15213504 0.88314462 0.44367802\n\t\t -0.25864461 0.80275887 0.53724778 0.041413408 0.67458117 0.73702192 -0.026124045\n\t\t 0.64992225 0.75951409 -0.45780843 0.86739695 0.19489114 -0.15213504 0.88314462 0.44367802\n\t\t -0.25864461 0.80275887 0.53724778 -0.25864461 0.80275887 0.53724778 -0.52787888 0.81075454\n\t\t 0.25293735 -0.45780843 0.86739695 0.19489114 -0.52787888 0.81075454 0.25293735 -0.25864461\n\t\t 0.80275887 0.53724778 -0.32230622 0.77053124 0.54985195 -0.026124045 0.64992225 0.75951409\n\t\t -0.32230622 0.77053124 0.54985195 -0.25864461 0.80275887 0.53724778 -0.32230622 0.77053124\n\t\t 0.54985195 -0.026124045 0.64992225 0.75951409 -0.056642558 0.65886414 0.75008386\n\t\t -0.32230622 0.77053124 0.54985195 -0.57680005 0.77776402 0.24967186 -0.52787888 0.81075454\n\t\t 0.25293735 -0.57680005 0.77776402 0.24967186 -0.32230622 0.77053124 0.54985195 -0.35346562\n\t\t 0.76683855 0.53569132 -0.056642558 0.65886414 0.75008386 -0.35346562 0.76683855 0.53569132\n\t\t -0.32230622 0.77053124 0.54985195 -0.35346562 0.76683855 0.53569132 -0.056642558\n\t\t 0.65886414 0.75008386 -0.049836941 0.69975895 0.71260715 -0.35346562 0.76683855 0.53569132\n\t\t -0.60637248 0.76168078 0.2282784 -0.57680005 0.77776402 0.24967186 -0.60637248 0.76168078\n\t\t 0.2282784 -0.35346562 0.76683855 0.53569132 -0.35224488 0.78859824 0.5039826 -0.049836941\n\t\t 0.69975895 0.71260715 -0.35224488 0.78859824 0.5039826 -0.35346562 0.76683855 0.53569132\n\t\t -0.35224488 0.78859824 0.5039826 -0.61528391 0.76055157 0.20722061 -0.60637248 0.76168078\n\t\t 0.2282784 -0.70879263 0.7016508 -0.072542548 -0.45780843 0.86739695 0.19489114 -0.52787888\n\t\t 0.81075454 0.25293735 -0.52787888 0.81075454 0.25293735 -0.72524208 0.68459094 -0.072786696\n\t\t -0.70879263 0.7016508 -0.072542548 -0.72524208 0.68459094 -0.072786696 -0.52787888\n\t\t 0.81075454 0.25293735 -0.57680005 0.77776402 0.24967186 -0.57680005 0.77776402 0.24967186\n\t\t -0.74510956 0.65932167 -0.10016181 -0.72524208 0.68459094 -0.072786696 -0.74510956\n\t\t 0.65932167 -0.10016181 -0.57680005 0.77776402 0.24967186 -0.60637248 0.76168078 0.2282784\n\t\t -0.60637248 0.76168078 0.2282784 -0.76357329 0.63188553 -0.13275556 -0.74510956 0.65932167\n\t\t -0.10016181 -0.76357329 0.63188553 -0.13275556 -0.60637248 0.76168078 0.2282784 -0.61528391\n\t\t 0.76055157 0.20722061 -0.61528391 0.76055157 0.20722061 -0.782098 0.60631096 -0.1437117\n\t\t -0.76357329 0.63188553 -0.13275556 -0.78527188 0.39530599 -0.47648552 -0.76357329\n\t\t 0.63188553 -0.13275556 -0.782098 0.60631096 -0.1437117 -0.782098 0.60631096 -0.1437117\n\t\t -0.80431545 0.34778866 -0.48173469 -0.78527188 0.39530599 -0.47648552 -0.76357329\n\t\t 0.63188553 -0.13275556 -0.78527188 0.39530599 -0.47648552 -0.79168075 0.42963931\n\t\t -0.43430895 -0.79168075 0.42963931 -0.43430895 -0.74510956 0.65932167 -0.10016181\n\t\t -0.76357329 0.63188553 -0.13275556 -0.74510956 0.65932167 -0.10016181 -0.79168075\n\t\t 0.42963931 -0.43430895 -0.81368464 0.44001561 -0.37977237 -0.81368464 0.44001561\n\t\t -0.37977237 -0.72524208 0.68459094 -0.072786696 -0.74510956 0.65932167 -0.10016181\n\t\t -0.72524208 0.68459094 -0.072786696 -0.81368464 0.44001561 -0.37977237 -0.85741764\n\t\t 0.41157231 -0.30884734 -0.85741764 0.41157231 -0.30884734 -0.70879263 0.7016508 -0.072542548\n\t\t -0.72524208 0.68459094 -0.072786696 -0.87444687 0.049683824 -0.48249763 -0.85741764\n\t\t 0.41157231 -0.30884734 -0.81368464 0.44001561 -0.37977237 -0.81368464 0.44001561\n\t\t -0.37977237 -0.77736753 0.12057835 -0.61732841 -0.87444687 0.049683824 -0.48249763\n\t\t -0.77736753 0.12057835 -0.61732841 -0.81368464 0.44001561 -0.37977237 -0.79168075\n\t\t 0.42963931 -0.43430895 -0.79168075 0.42963931 -0.43430895 -0.71092874 0.1328468 -0.69057286\n\t\t -0.77736753 0.12057835 -0.61732841 -0.71092874 0.1328468 -0.69057286 -0.79168075\n\t\t 0.42963931 -0.43430895 -0.78527188 0.39530599 -0.47648552 -0.78527188 0.39530599\n\t\t -0.47648552 -0.67345202 0.10370164 -0.73189491 -0.71092874 0.1328468 -0.69057286\n\t\t -0.67345202 0.10370164 -0.73189491 -0.78527188 0.39530599 -0.47648552 -0.80431545\n\t\t 0.34778866 -0.48173469 -0.80431545 0.34778866 -0.48173469 -0.68092901 0.044831421\n\t\t -0.73091829 -0.67345202 0.10370164 -0.73189491 -0.46583447 -0.18854356 -0.86452836\n\t\t -0.67345202 0.10370164 -0.73189491 -0.68092901 0.044831421 -0.73091829 -0.68092901\n\t\t 0.044831421 -0.73091829 -0.45908985 -0.24198148 -0.85476243 -0.46583447 -0.18854356\n\t\t -0.86452836 -0.67345202 0.10370164 -0.73189491 -0.46583447 -0.18854356 -0.86452836\n\t\t -0.52424687 -0.17795365 -0.83272803 -0.52424687 -0.17795365 -0.83272803 -0.71092874\n\t\t 0.1328468 -0.69057286 -0.67345202 0.10370164 -0.73189491 -0.71092874 0.1328468 -0.69057286\n\t\t -0.52424687 -0.17795365 -0.83272803;\n\tsetAttr \".n[43658:43823]\" -type \"float3\"  -0.62108213 -0.2165596 -0.75319684 -0.62108213\n\t\t -0.2165596 -0.75319684 -0.77736753 0.12057835 -0.61732841 -0.71092874 0.1328468 -0.69057286\n\t\t -0.77736753 0.12057835 -0.61732841 -0.62108213 -0.2165596 -0.75319684 -0.75377655\n\t\t -0.31562269 -0.57631153 -0.75377655 -0.31562269 -0.57631153 -0.87444687 0.049683824\n\t\t -0.48249763 -0.77736753 0.12057835 -0.61732841 -0.51823461 -0.6226694 -0.58622998\n\t\t -0.75377655 -0.31562269 -0.57631153 -0.62108213 -0.2165596 -0.75319684 -0.62108213\n\t\t -0.2165596 -0.75319684 -0.36994523 -0.51402342 -0.77385777 -0.51823461 -0.6226694\n\t\t -0.58622998 -0.36994523 -0.51402342 -0.77385777 -0.62108213 -0.2165596 -0.75319684\n\t\t -0.52424687 -0.17795365 -0.83272803 -0.52424687 -0.17795365 -0.83272803 -0.26517519\n\t\t -0.45606875 -0.84948266 -0.36994523 -0.51402342 -0.77385777 -0.26517519 -0.45606875\n\t\t -0.84948266 -0.52424687 -0.17795365 -0.83272803 -0.46583447 -0.18854356 -0.86452836\n\t\t -0.46583447 -0.18854356 -0.86452836 -0.20392455 -0.44477686 -0.87209684 -0.26517519\n\t\t -0.45606875 -0.84948266 -0.20392455 -0.44477686 -0.87209684 -0.46583447 -0.18854356\n\t\t -0.86452836 -0.45908985 -0.24198148 -0.85476243 -0.45908985 -0.24198148 -0.85476243\n\t\t -0.19016068 -0.47999525 -0.85637981 -0.20392455 -0.44477686 -0.87209684 0.083590396\n\t\t -0.64314711 -0.76113158 -0.20392455 -0.44477686 -0.87209684 -0.19016068 -0.47999525\n\t\t -0.85637981 -0.19016068 -0.47999525 -0.85637981 0.096530244 -0.6583758 -0.74645215\n\t\t 0.083590396 -0.64314711 -0.76113158 -0.20392455 -0.44477686 -0.87209684 0.083590396\n\t\t -0.64314711 -0.76113158 0.031342715 -0.66640222 -0.7448957 0.031342715 -0.66640222\n\t\t -0.7448957 -0.26517519 -0.45606875 -0.84948266 -0.20392455 -0.44477686 -0.87209684\n\t\t -0.26517519 -0.45606875 -0.84948266 0.031342715 -0.66640222 -0.7448957 -0.063813977\n\t\t -0.72750026 -0.68309575 -0.063813977 -0.72750026 -0.68309575 -0.36994523 -0.51402342\n\t\t -0.77385777 -0.26517519 -0.45606875 -0.84948266 -0.36994523 -0.51402342 -0.77385777\n\t\t -0.063813977 -0.72750026 -0.68309575 -0.20816649 -0.82982892 -0.51771593 -0.20816649\n\t\t -0.82982892 -0.51771593 -0.51823461 -0.6226694 -0.58622998 -0.36994523 -0.51402342\n\t\t -0.77385777 0.13016173 -0.91647077 -0.37824634 -0.20816649 -0.82982892 -0.51771593\n\t\t -0.063813977 -0.72750026 -0.68309575 -0.063813977 -0.72750026 -0.68309575 0.25037411\n\t\t -0.83187354 -0.49525431 0.13016173 -0.91647077 -0.37824634 0.25037411 -0.83187354\n\t\t -0.49525431 -0.063813977 -0.72750026 -0.68309575 0.031342715 -0.66640222 -0.7448957\n\t\t 0.031342715 -0.66640222 -0.7448957 0.32667035 -0.78136533 -0.5316934 0.25037411 -0.83187354\n\t\t -0.49525431 0.32667035 -0.78136533 -0.5316934 0.031342715 -0.66640222 -0.7448957\n\t\t 0.083590396 -0.64314711 -0.76113158 0.083590396 -0.64314711 -0.76113158 0.36829761\n\t\t -0.75804919 -0.53819388 0.32667035 -0.78136533 -0.5316934 0.36829761 -0.75804919\n\t\t -0.53819388 0.083590396 -0.64314711 -0.76113158 0.096530244 -0.6583758 -0.74645215\n\t\t 0.096530244 -0.6583758 -0.74645215 0.38013878 -0.75902581 -0.52851951 0.36829761\n\t\t -0.75804919 -0.53819388 0.61015677 -0.76015484 -0.22327335 0.36829761 -0.75804919\n\t\t -0.53819388 0.38013878 -0.75902581 -0.52851951 0.38013878 -0.75902581 -0.52851951\n\t\t 0.62550759 -0.74990064 -0.21530803 0.61015677 -0.76015484 -0.22327335 0.36829761\n\t\t -0.75804919 -0.53819388 0.61015677 -0.76015484 -0.22327335 0.57857013 -0.78115159\n\t\t -0.23447365 0.57857013 -0.78115159 -0.23447365 0.32667035 -0.78136533 -0.5316934\n\t\t 0.36829761 -0.75804919 -0.53819388 0.52778733 -0.81725496 -0.23126921 0.25037411\n\t\t -0.83187354 -0.49525431 0.32667035 -0.78136533 -0.5316934 0.32667035 -0.78136533\n\t\t -0.5316934 0.57857013 -0.78115159 -0.23447365 0.52778733 -0.81725496 -0.23126921\n\t\t 0.45069763 -0.87517917 -0.17572552 0.13016173 -0.91647077 -0.37824634 0.25037411\n\t\t -0.83187354 -0.49525431 0.25037411 -0.83187354 -0.49525431 0.52778733 -0.81725496\n\t\t -0.23126921 0.45069763 -0.87517917 -0.17572552 -0.20816649 -0.82982892 -0.51771593\n\t\t 0.13016173 -0.91647077 -0.37824634 0.018921781 -0.98702961 -0.15924551 0.018921781\n\t\t -0.98702961 -0.15924551 -0.33378068 -0.91167957 -0.23957023 -0.20816649 -0.82982892\n\t\t -0.51771593 -0.51823461 -0.6226694 -0.58622998 -0.20816649 -0.82982892 -0.51771593\n\t\t -0.33378068 -0.91167957 -0.23957023 -0.33378068 -0.91167957 -0.23957023 -0.63588345\n\t\t -0.71675789 -0.28611097 -0.51823461 -0.6226694 -0.58622998 -0.75377655 -0.31562269\n\t\t -0.57631153 -0.51823461 -0.6226694 -0.58622998 -0.63588345 -0.71675789 -0.28611097\n\t\t -0.63588345 -0.71675789 -0.28611097 -0.85653239 -0.42005706 -0.29975277 -0.75377655\n\t\t -0.31562269 -0.57631153 -0.87444687 0.049683824 -0.48249763 -0.75377655 -0.31562269\n\t\t -0.57631153 -0.85653239 -0.42005706 -0.29975277 -0.85653239 -0.42005706 -0.29975277\n\t\t -0.96008182 -0.045747567 -0.27585679 -0.87444687 0.049683824 -0.48249763 -0.85741764\n\t\t 0.41157231 -0.30884734 -0.87444687 0.049683824 -0.48249763 -0.96008182 -0.045747567\n\t\t -0.27585679 -0.96008182 -0.045747567 -0.27585679 -0.91137439 0.35486892 -0.20838042\n\t\t -0.85741764 0.41157231 -0.30884734 -0.70879263 0.7016508 -0.072542548 -0.85741764\n\t\t 0.41157231 -0.30884734 -0.91137439 0.35486892 -0.20838042 -0.91137439 0.35486892\n\t\t -0.20838042 -0.70647323 0.70116252 -0.096011281 -0.70879263 0.7016508 -0.072542548\n\t\t -0.45780843 0.86739695 0.19489114 -0.70879263 0.7016508 -0.072542548 -0.70647323\n\t\t 0.70116252 -0.096011281 -0.70647323 0.70116252 -0.096011281 -0.38874507 0.91985828\n\t\t 0.051942438 -0.45780843 0.86739695 0.19489114 -0.15213504 0.88314462 0.44367802 -0.45780843\n\t\t 0.86739695 0.19489114 -0.38874507 0.91985828 0.051942438 -0.38874507 0.91985828 0.051942438\n\t\t -0.031770069 0.976928 0.21106593 -0.15213504 0.88314462 0.44367802 -0.031770069 0.976928\n\t\t 0.21106593 -0.38874507 0.91985828 0.051942438 -0.37525588 0.91662329 -0.137547 -0.37525588\n\t\t 0.91662329 -0.137547 0.0084228022 0.99157691 -0.12918493 -0.031770069 0.976928 0.21106593\n\t\t 0.0084228022 0.99157691 -0.12918493 -0.37525588 0.91662329 -0.137547 -0.43293583\n\t\t 0.85445708 -0.28708768 -0.43293583 0.85445708 -0.28708768 -0.070711665 0.90273744\n\t\t -0.42426836 0.0084228022 0.99157691 -0.12918493;\n\tsetAttr \".n[43824:43989]\" -type \"float3\"  -0.070711665 0.90273744 -0.42426836 -0.43293583\n\t\t 0.85445708 -0.28708768 -0.51420659 0.78334892 -0.34916234 -0.51420659 0.78334892\n\t\t -0.34916234 -0.19577648 0.79488498 -0.57426685 -0.070711665 0.90273744 -0.42426836\n\t\t -0.77639109 0.62645322 -0.068514101 -0.51420659 0.78334892 -0.34916234 -0.43293583\n\t\t 0.85445708 -0.28708768 -0.43293583 0.85445708 -0.28708768 -0.57313782 0.79201621\n\t\t -0.21015051 -0.77639109 0.62645322 -0.068514101 -0.57313782 0.79201621 -0.21015051\n\t\t -0.43293583 0.85445708 -0.28708768 -0.37525588 0.91662329 -0.137547 -0.37525588 0.91662329\n\t\t -0.137547 -0.72667646 0.6770224 -0.11639765 -0.57313782 0.79201621 -0.21015051 -0.72667646\n\t\t 0.6770224 -0.11639765 -0.37525588 0.91662329 -0.137547 -0.38874507 0.91985828 0.051942438\n\t\t -0.38874507 0.91985828 0.051942438 -0.70647323 0.70116252 -0.096011281 -0.72667646\n\t\t 0.6770224 -0.11639765 -0.70647323 0.70116252 -0.096011281 -0.91137439 0.35486892\n\t\t -0.20838042 -0.9484849 0.30738214 -0.076540448 -0.9484849 0.30738214 -0.076540448\n\t\t -0.72667646 0.6770224 -0.11639765 -0.70647323 0.70116252 -0.096011281 -0.72667646\n\t\t 0.6770224 -0.11639765 -0.9484849 0.30738214 -0.076540448 -0.95025498 0.30298746 0.071932107\n\t\t -0.95025498 0.30298746 0.071932107 -0.86953354 0.49351454 -0.017090403 -0.72667646\n\t\t 0.6770224 -0.11639765 -0.86953354 0.49351454 -0.017090403 -0.95025498 0.30298746\n\t\t 0.071932107 -0.9162268 0.34504199 0.20358895 -0.9162268 0.34504199 0.20358895 -0.77639109\n\t\t 0.62645322 -0.068514101 -0.86953354 0.49351454 -0.017090403 -0.9086886 0.0048521934\n\t\t 0.41740164 -0.9162268 0.34504199 0.20358895 -0.95025498 0.30298746 0.071932107 -0.95025498\n\t\t 0.30298746 0.071932107 -0.9740898 -0.080965891 0.21103549 -0.9086886 0.0048521934\n\t\t 0.41740164 -0.9740898 -0.080965891 0.21103549 -0.95025498 0.30298746 0.071932107\n\t\t -0.9484849 0.30738214 -0.076540448 -0.9484849 0.30738214 -0.076540448 -0.99438453\n\t\t -0.1005588 -0.032563243 -0.9740898 -0.080965891 0.21103549 -0.99438453 -0.1005588\n\t\t -0.032563243 -0.9484849 0.30738214 -0.076540448 -0.91137439 0.35486892 -0.20838042\n\t\t -0.91137439 0.35486892 -0.20838042 -0.96008182 -0.045747567 -0.27585679 -0.99438453\n\t\t -0.1005588 -0.032563243 -0.88622689 -0.46314916 0.006500477 -0.99438453 -0.1005588\n\t\t -0.032563243 -0.96008182 -0.045747567 -0.27585679 -0.96008182 -0.045747567 -0.27585679\n\t\t -0.85653239 -0.42005706 -0.29975277 -0.88622689 -0.46314916 0.006500477 -0.99438453\n\t\t -0.1005588 -0.032563243 -0.88622689 -0.46314916 0.006500477 -0.85222924 -0.42841908\n\t\t 0.3002106 -0.85222924 -0.42841908 0.3002106 -0.9740898 -0.080965891 0.21103549 -0.99438453\n\t\t -0.1005588 -0.032563243 -0.9740898 -0.080965891 0.21103549 -0.85222924 -0.42841908\n\t\t 0.3002106 -0.76744884 -0.32554114 0.55226296 -0.76744884 -0.32554114 0.55226296 -0.9086886\n\t\t 0.0048521934 0.41740164 -0.9740898 -0.080965891 0.21103549 -0.52244616 -0.59886485\n\t\t 0.60692167 -0.76744884 -0.32554114 0.55226296 -0.85222924 -0.42841908 0.3002106 -0.85222924\n\t\t -0.42841908 0.3002106 -0.62483573 -0.70027792 0.34519491 -0.52244616 -0.59886485\n\t\t 0.60692167 -0.62483573 -0.70027792 0.34519491 -0.85222924 -0.42841908 0.3002106 -0.88622689\n\t\t -0.46314916 0.006500477 -0.88622689 -0.46314916 0.006500477 -0.66893494 -0.74224085\n\t\t 0.039307896 -0.62483573 -0.70027792 0.34519491 -0.66893494 -0.74224085 0.039307896\n\t\t -0.88622689 -0.46314916 0.006500477 -0.85653239 -0.42005706 -0.29975277 -0.85653239\n\t\t -0.42005706 -0.29975277 -0.63588345 -0.71675789 -0.28611097 -0.66893494 -0.74224085\n\t\t 0.039307896 -0.37241706 -0.92556548 0.067873232 -0.66893494 -0.74224085 0.039307896\n\t\t -0.63588345 -0.71675789 -0.28611097 -0.63588345 -0.71675789 -0.28611097 -0.33378068\n\t\t -0.91167957 -0.23957023 -0.37241706 -0.92556548 0.067873232 -0.66893494 -0.74224085\n\t\t 0.039307896 -0.37241706 -0.92556548 0.067873232 -0.31934541 -0.8796351 0.35239729\n\t\t -0.31934541 -0.8796351 0.35239729 -0.62483573 -0.70027792 0.34519491 -0.66893494\n\t\t -0.74224085 0.039307896 -0.62483573 -0.70027792 0.34519491 -0.31934541 -0.8796351\n\t\t 0.35239729 -0.20392445 -0.78511918 0.58473468 -0.20392445 -0.78511918 0.58473468\n\t\t -0.52244616 -0.59886485 0.60692167 -0.62483573 -0.70027792 0.34519491 0.15417978\n\t\t -0.86053032 0.48542747 -0.20392445 -0.78511918 0.58473468 -0.31934541 -0.8796351\n\t\t 0.35239729 -0.31934541 -0.8796351 0.35239729 0.043550208 -0.94622636 0.32053596 0.15417978\n\t\t -0.86053032 0.48542747 0.043550208 -0.94622636 0.32053596 -0.31934541 -0.8796351\n\t\t 0.35239729 -0.37241706 -0.92556548 0.067873232 -0.37241706 -0.92556548 0.067873232\n\t\t -0.014740133 -0.99542224 0.094119161 0.043550208 -0.94622636 0.32053596 -0.014740133\n\t\t -0.99542224 0.094119161 -0.37241706 -0.92556548 0.067873232 -0.33378068 -0.91167957\n\t\t -0.23957023 -0.33378068 -0.91167957 -0.23957023 0.018921781 -0.98702961 -0.15924551\n\t\t -0.014740133 -0.99542224 0.094119161 0.37138003 -0.92098749 0.11743528 -0.014740133\n\t\t -0.99542224 0.094119161 0.018921781 -0.98702961 -0.15924551 0.018921781 -0.98702961\n\t\t -0.15924551 0.38261086 -0.92291015 -0.042145994 0.37138003 -0.92098749 0.11743528\n\t\t 0.42570296 -0.87163901 0.24283583 0.043550208 -0.94622636 0.32053596 -0.014740133\n\t\t -0.99542224 0.094119161 -0.014740133 -0.99542224 0.094119161 0.37138003 -0.92098749\n\t\t 0.11743528 0.42570296 -0.87163901 0.24283583 0.50367773 -0.80657351 0.30933568 0.15417978\n\t\t -0.86053032 0.48542747 0.043550208 -0.94622636 0.32053596 0.043550208 -0.94622636\n\t\t 0.32053596 0.42570296 -0.87163901 0.24283583 0.50367773 -0.80657351 0.30933568 -0.20392445\n\t\t -0.78511918 0.58473468 0.15417978 -0.86053032 0.48542747 0.26209319 -0.76622808 0.58662683\n\t\t 0.26209319 -0.76622808 0.58662683 -0.076265544 -0.6664021 0.74166089 -0.20392445\n\t\t -0.78511918 0.58473468 -0.52244616 -0.59886485 0.60692167 -0.20392445 -0.78511918\n\t\t 0.58473468 -0.076265544 -0.6664021 0.74166089 -0.076265544 -0.6664021 0.74166089\n\t\t -0.39728981 -0.46699429 0.78994113 -0.52244616 -0.59886485 0.60692167 -0.76744884\n\t\t -0.32554114 0.55226296 -0.52244616 -0.59886485 0.60692167 -0.39728981 -0.46699429\n\t\t 0.78994113 -0.39728981 -0.46699429 0.78994113;\n\tsetAttr \".n[43990:44155]\" -type \"float3\"  -0.6581316 -0.19492187 0.72719502 -0.76744884\n\t\t -0.32554114 0.55226296 -0.9086886 0.0048521934 0.41740164 -0.76744884 -0.32554114\n\t\t 0.55226296 -0.6581316 -0.19492187 0.72719502 -0.6581316 -0.19492187 0.72719502 -0.82375568\n\t\t 0.11209427 0.55571157 -0.9086886 0.0048521934 0.41740164 -0.9162268 0.34504199 0.20358895\n\t\t -0.9086886 0.0048521934 0.41740164 -0.82375568 0.11209427 0.55571157 -0.82375568\n\t\t 0.11209427 0.55571157 -0.86718357 0.40479726 0.28998685 -0.9162268 0.34504199 0.20358895\n\t\t -0.77639109 0.62645322 -0.068514101 -0.9162268 0.34504199 0.20358895 -0.86718357\n\t\t 0.40479726 0.28998685 -0.86718357 0.40479726 0.28998685 -0.77785593 0.62739927 -0.035737224\n\t\t -0.77639109 0.62645322 -0.068514101 -0.51420659 0.78334892 -0.34916234 -0.77639109\n\t\t 0.62645322 -0.068514101 -0.77785593 0.62739927 -0.035737224 -0.77785593 0.62739927\n\t\t -0.035737224 -0.57121515 0.73491603 -0.3654592 -0.51420659 0.78334892 -0.34916234\n\t\t -0.19577648 0.79488498 -0.57426685 -0.51420659 0.78334892 -0.34916234 -0.57121515\n\t\t 0.73491603 -0.3654592 -0.57121515 0.73491603 -0.3654592 -0.29142144 0.71593356 -0.63441885\n\t\t -0.19577648 0.79488498 -0.57426685 -0.29142144 0.71593356 -0.63441885 -0.57121515\n\t\t 0.73491603 -0.3654592 -0.6103704 0.69844645 -0.37360767 -0.6103704 0.69844645 -0.37360767\n\t\t -0.35972187 0.65355372 -0.66588342 -0.29142144 0.71593356 -0.63441885 -0.35972187\n\t\t 0.65355372 -0.66588342 -0.6103704 0.69844645 -0.37360767 -0.64149922 0.66435724 -0.38346514\n\t\t -0.64149922 0.66435724 -0.38346514 -0.41331235 0.5948056 -0.68944371 -0.35972187\n\t\t 0.65355372 -0.66588342 -0.41331235 0.5948056 -0.68944371 -0.64149922 0.66435724 -0.38346514\n\t\t -0.67293334 0.62630069 -0.39353624 -0.67293334 0.62630069 -0.39353624 -0.46504122\n\t\t 0.53169328 -0.70781583 -0.41331235 0.5948056 -0.68944371 -0.78084677 0.62453055 -0.013397672\n\t\t -0.67293334 0.62630069 -0.39353624 -0.64149922 0.66435724 -0.38346514 -0.64149922\n\t\t 0.66435724 -0.38346514 -0.77620792 0.63032907 -0.013428191 -0.78084677 0.62453055\n\t\t -0.013397672 -0.77620792 0.63032907 -0.013428191 -0.64149922 0.66435724 -0.38346514\n\t\t -0.6103704 0.69844645 -0.37360767 -0.6103704 0.69844645 -0.37360767 -0.77596378 0.63045114\n\t\t -0.019043596 -0.77620792 0.63032907 -0.013428191 -0.77596378 0.63045114 -0.019043596\n\t\t -0.6103704 0.69844645 -0.37360767 -0.57121515 0.73491603 -0.3654592 -0.57121515 0.73491603\n\t\t -0.3654592 -0.77785593 0.62739927 -0.035737224 -0.77596378 0.63045114 -0.019043596\n\t\t -0.77785593 0.62739927 -0.035737224 -0.86718357 0.40479726 0.28998685 -0.82470179\n\t\t 0.45533592 0.33542889 -0.82470179 0.45533592 0.33542889 -0.77596378 0.63045114 -0.019043596\n\t\t -0.77785593 0.62739927 -0.035737224 -0.77596378 0.63045114 -0.019043596 -0.82470179\n\t\t 0.45533592 0.33542889 -0.79204708 0.49406394 0.35843986 -0.79204708 0.49406394 0.35843986\n\t\t -0.77620792 0.63032907 -0.013428191 -0.77596378 0.63045114 -0.019043596 -0.77620792\n\t\t 0.63032907 -0.013428191 -0.79204708 0.49406394 0.35843986 -0.76775432 0.5233922 0.36951807\n\t\t -0.76775432 0.5233922 0.36951807 -0.78084677 0.62453055 -0.013397672 -0.77620792\n\t\t 0.63032907 -0.013428191 -0.63615847 0.33997604 0.69258708 -0.76775432 0.5233922 0.36951807\n\t\t -0.79204708 0.49406394 0.35843986 -0.79204708 0.49406394 0.35843986 -0.68666655 0.2787559\n\t\t 0.67137671 -0.63615847 0.33997604 0.69258708 -0.68666655 0.2787559 0.67137671 -0.79204708\n\t\t 0.49406394 0.35843986 -0.82470179 0.45533592 0.33542889 -0.82470179 0.45533592 0.33542889\n\t\t -0.74822235 0.20453486 0.63109225 -0.68666655 0.2787559 0.67137671 -0.74822235 0.20453486\n\t\t 0.63109225 -0.82470179 0.45533592 0.33542889 -0.86718357 0.40479726 0.28998685 -0.86718357\n\t\t 0.40479726 0.28998685 -0.82375568 0.11209427 0.55571157 -0.74822235 0.20453486 0.63109225\n\t\t -0.55964845 -0.077272974 0.8250984 -0.74822235 0.20453486 0.63109225 -0.82375568\n\t\t 0.11209427 0.55571157 -0.82375568 0.11209427 0.55571157 -0.6581316 -0.19492187 0.72719502\n\t\t -0.55964845 -0.077272974 0.8250984 -0.74822235 0.20453486 0.63109225 -0.55964845\n\t\t -0.077272974 0.8250984 -0.47791985 0.021118727 0.87813962 -0.47791985 0.021118727\n\t\t 0.87813962 -0.68666655 0.2787559 0.67137671 -0.74822235 0.20453486 0.63109225 -0.68666655\n\t\t 0.2787559 0.67137671 -0.47791985 0.021118727 0.87813962 -0.40870389 0.10519724 0.90655231\n\t\t -0.40870389 0.10519724 0.90655231 -0.63615847 0.33997604 0.69258708 -0.68666655 0.2787559\n\t\t 0.67137671 -0.12094481 -0.14395578 0.98214668 -0.40870389 0.10519724 0.90655231 -0.47791985\n\t\t 0.021118727 0.87813962 -0.47791985 0.021118727 0.87813962 -0.19815661 -0.23776969\n\t\t 0.95086521 -0.12094481 -0.14395578 0.98214668 -0.19815661 -0.23776969 0.95086521\n\t\t -0.47791985 0.021118727 0.87813962 -0.55964845 -0.077272974 0.8250984 -0.55964845\n\t\t -0.077272974 0.8250984 -0.28778943 -0.34430987 0.89364302 -0.19815661 -0.23776969\n\t\t 0.95086521 -0.28778943 -0.34430987 0.89364302 -0.55964845 -0.077272974 0.8250984\n\t\t -0.6581316 -0.19492187 0.72719502 -0.6581316 -0.19492187 0.72719502 -0.39728981 -0.46699429\n\t\t 0.78994113 -0.28778943 -0.34430987 0.89364302 0.028809644 -0.55681014 0.83013403\n\t\t -0.28778943 -0.34430987 0.89364302 -0.39728981 -0.46699429 0.78994113 -0.39728981\n\t\t -0.46699429 0.78994113 -0.076265544 -0.6664021 0.74166089 0.028809644 -0.55681014\n\t\t 0.83013403 -0.28778943 -0.34430987 0.89364302 0.028809644 -0.55681014 0.83013403\n\t\t 0.11246085 -0.45963919 0.88091683 0.11246085 -0.45963919 0.88091683 -0.19815661 -0.23776969\n\t\t 0.95086521 -0.28778943 -0.34430987 0.89364302 -0.19815661 -0.23776969 0.95086521\n\t\t 0.11246085 -0.45963919 0.88091683 0.18555266 -0.37104392 0.90987885 0.18555266 -0.37104392\n\t\t 0.90987885 -0.12094481 -0.14395578 0.98214668 -0.19815661 -0.23776969 0.95086521\n\t\t 0.46644509 -0.54267997 0.69847721 0.18555266 -0.37104392 0.90987885 0.11246085 -0.45963919\n\t\t 0.88091683 0.11246085 -0.45963919 0.88091683 0.4089177 -0.6118654 0.6770227 0.46644509\n\t\t -0.54267997 0.69847721 0.4089177 -0.6118654 0.6770227 0.11246085 -0.45963919 0.88091683;\n\tsetAttr \".n[44156:44321]\" -type \"float3\"  0.028809644 -0.55681014 0.83013403 0.028809644\n\t\t -0.55681014 0.83013403 0.34464574 -0.68443841 0.64241469 0.4089177 -0.6118654 0.6770227\n\t\t 0.34464574 -0.68443841 0.64241469 0.028809644 -0.55681014 0.83013403 -0.076265544\n\t\t -0.6664021 0.74166089 -0.076265544 -0.6664021 0.74166089 0.26209319 -0.76622808 0.58662683\n\t\t 0.34464574 -0.68443841 0.64241469 0.61067563 -0.70839548 0.35383165 0.34464574 -0.68443841\n\t\t 0.64241469 0.26209319 -0.76622808 0.58662683 0.26209319 -0.76622808 0.58662683 0.56685102\n\t\t -0.75099927 0.33860293 0.61067563 -0.70839548 0.35383165 0.64467317 -0.67067456 0.36680204\n\t\t 0.4089177 -0.6118654 0.6770227 0.34464574 -0.68443841 0.64241469 0.34464574 -0.68443841\n\t\t 0.64241469 0.61067563 -0.70839548 0.35383165 0.64467317 -0.67067456 0.36680204 0.67741954\n\t\t -0.63139719 0.3773309 0.46644509 -0.54267997 0.69847721 0.4089177 -0.6118654 0.6770227\n\t\t 0.4089177 -0.6118654 0.6770227 0.64467317 -0.67067456 0.36680204 0.67741954 -0.63139719\n\t\t 0.3773309 0.18555266 -0.37104392 0.90987885 0.46644509 -0.54267997 0.69847721 0.52784824\n\t\t -0.47135818 0.70650357 0.52784824 -0.47135818 0.70650357 0.26450402 -0.27961043 0.92294079\n\t\t 0.18555266 -0.37104392 0.90987885 -0.12094481 -0.14395578 0.98214668 0.18555266 -0.37104392\n\t\t 0.90987885 0.26450402 -0.27961043 0.92294079 0.26450402 -0.27961043 0.92294079 -0.03802605\n\t\t -0.045625109 0.99822992 -0.12094481 -0.14395578 0.98214668 -0.40870389 0.10519724\n\t\t 0.90655231 -0.12094481 -0.14395578 0.98214668 -0.03802605 -0.045625109 0.99822992\n\t\t -0.03802605 -0.045625109 0.99822992 -0.33497122 0.19568466 0.92165899 -0.40870389\n\t\t 0.10519724 0.90655231 -0.63615847 0.33997604 0.69258708 -0.40870389 0.10519724 0.90655231\n\t\t -0.33497122 0.19568466 0.92165899 -0.33497122 0.19568466 0.92165899 -0.58186603 0.40800184\n\t\t 0.70348209 -0.63615847 0.33997604 0.69258708 -0.76775432 0.5233922 0.36951807 -0.63615847\n\t\t 0.33997604 0.69258708 -0.58186603 0.40800184 0.70348209 -0.58186603 0.40800184 0.70348209\n\t\t -0.74019611 0.55766451 0.37556076 -0.76775432 0.5233922 0.36951807 -0.78084677 0.62453055\n\t\t -0.013397672 -0.76775432 0.5233922 0.36951807 -0.74019611 0.55766451 0.37556076 -0.74019611\n\t\t 0.55766451 0.37556076 -0.78438693 0.6201359 -0.011139303 -0.78084677 0.62453055 -0.013397672\n\t\t -0.67293334 0.62630069 -0.39353624 -0.78084677 0.62453055 -0.013397672 -0.78438693\n\t\t 0.6201359 -0.011139303 -0.78438693 0.6201359 -0.011139303 -0.7079075 0.58564997 -0.39469591\n\t\t -0.67293334 0.62630069 -0.39353624 -0.46504122 0.53169328 -0.70781583 -0.67293334\n\t\t 0.62630069 -0.39353624 -0.7079075 0.58564997 -0.39469591 -0.7079075 0.58564997 -0.39469591\n\t\t -0.5263834 0.46229416 -0.71355331 -0.46504122 0.53169328 -0.70781583 -0.5263834 0.46229416\n\t\t -0.71355331 -0.7079075 0.58564997 -0.39469591 -0.74340057 0.54634213 -0.38575399\n\t\t -0.74340057 0.54634213 -0.38575399 -0.59886485 0.38523489 -0.70204777 -0.5263834\n\t\t 0.46229416 -0.71355331 -0.59886485 0.38523489 -0.70204777 -0.74340057 0.54634213\n\t\t -0.38575399 -0.77883255 0.50865173 -0.36692408 -0.77883255 0.50865173 -0.36692408\n\t\t -0.68208879 0.30011874 -0.66679889 -0.59886485 0.38523489 -0.70204777 -0.68208879\n\t\t 0.30011874 -0.66679889 -0.77883255 0.50865173 -0.36692408 -0.81237233 0.473647 -0.34003726\n\t\t -0.81237233 0.473647 -0.34003726 -0.76952428 0.20999758 -0.60307628 -0.68208879 0.30011874\n\t\t -0.66679889 -0.74111164 0.67079657 -0.027069969 -0.81237233 0.473647 -0.34003726\n\t\t -0.77883255 0.50865173 -0.36692408 -0.77883255 0.50865173 -0.36692408 -0.7648856\n\t\t 0.64403188 -0.011719155 -0.74111164 0.67079657 -0.027069969 -0.7648856 0.64403188\n\t\t -0.011719155 -0.77883255 0.50865173 -0.36692408 -0.74340057 0.54634213 -0.38575399\n\t\t -0.74340057 0.54634213 -0.38575399 -0.77935135 0.62648374 -0.0086062662 -0.7648856\n\t\t 0.64403188 -0.011719155 -0.77935135 0.62648374 -0.0086062662 -0.74340057 0.54634213\n\t\t -0.38575399 -0.7079075 0.58564997 -0.39469591 -0.7079075 0.58564997 -0.39469591 -0.78438693\n\t\t 0.6201359 -0.011139303 -0.77935135 0.62648374 -0.0086062662 -0.78438693 0.6201359\n\t\t -0.011139303 -0.74019611 0.55766451 0.37556076 -0.69777536 0.61152965 0.37293613\n\t\t -0.69777536 0.61152965 0.37293613 -0.77935135 0.62648374 -0.0086062662 -0.78438693\n\t\t 0.6201359 -0.011139303 -0.77935135 0.62648374 -0.0086062662 -0.69777536 0.61152965\n\t\t 0.37293613 -0.63808125 0.68556762 0.35041347 -0.63808125 0.68556762 0.35041347 -0.7648856\n\t\t 0.64403188 -0.011719155 -0.77935135 0.62648374 -0.0086062662 -0.7648856 0.64403188\n\t\t -0.011719155 -0.63808125 0.68556762 0.35041347 -0.56129664 0.77294213 0.2957243 -0.56129664\n\t\t 0.77294213 0.2957243 -0.74111164 0.67079657 -0.027069969 -0.7648856 0.64403188 -0.011719155\n\t\t -0.29041436 0.75899529 0.58268982 -0.56129664 0.77294213 0.2957243 -0.63808125 0.68556762\n\t\t 0.35041347 -0.63808125 0.68556762 0.35041347 -0.41047412 0.62227237 0.66652417 -0.29041436\n\t\t 0.75899529 0.58268982 -0.41047412 0.62227237 0.66652417 -0.63808125 0.68556762 0.35041347\n\t\t -0.69777536 0.61152965 0.37293613 -0.69777536 0.61152965 0.37293613 -0.50801128 0.50160211\n\t\t 0.70018607 -0.41047412 0.62227237 0.66652417 -0.50801128 0.50160211 0.70018607 -0.69777536\n\t\t 0.61152965 0.37293613 -0.74019611 0.55766451 0.37556076 -0.74019611 0.55766451 0.37556076\n\t\t -0.58186603 0.40800184 0.70348209 -0.50801128 0.50160211 0.70018607 -0.23822758 0.31257057\n\t\t 0.9195227 -0.50801128 0.50160211 0.70018607 -0.58186603 0.40800184 0.70348209 -0.58186603\n\t\t 0.40800184 0.70348209 -0.33497122 0.19568466 0.92165899 -0.23822758 0.31257057 0.9195227\n\t\t -0.50801128 0.50160211 0.70018607 -0.23822758 0.31257057 0.9195227 -0.11401729 0.45875427\n\t\t 0.88119137 -0.11401729 0.45875427 0.88119137 -0.41047412 0.62227237 0.66652417 -0.50801128\n\t\t 0.50160211 0.70018607 -0.41047412 0.62227237 0.66652417 -0.11401729 0.45875427 0.88119137\n\t\t 0.032746166 0.62273026 0.78173155 0.032746166 0.62273026 0.78173155 -0.29041436 0.75899529\n\t\t 0.58268982 -0.41047412 0.62227237 0.66652417;\n\tsetAttr \".n[44322:44487]\" -type \"float3\"  0.35181725 0.38465548 0.85335857 0.032746166\n\t\t 0.62273026 0.78173155 -0.11401729 0.45875427 0.88119137 -0.11401729 0.45875427 0.88119137\n\t\t 0.20123897 0.22101519 0.95425278 0.35181725 0.38465548 0.85335857 0.20123897 0.22101519\n\t\t 0.95425278 -0.11401729 0.45875427 0.88119137 -0.23822758 0.31257057 0.9195227 -0.23822758\n\t\t 0.31257057 0.9195227 0.068361439 0.074862003 0.99484235 0.20123897 0.22101519 0.95425278\n\t\t 0.068361439 0.074862003 0.99484235 -0.23822758 0.31257057 0.9195227 -0.33497122 0.19568466\n\t\t 0.92165899 -0.33497122 0.19568466 0.92165899 -0.03802605 -0.045625109 0.99822992\n\t\t 0.068361439 0.074862003 0.99484235 0.36268201 -0.17319235 0.91564685 0.068361439\n\t\t 0.074862003 0.99484235 -0.03802605 -0.045625109 0.99822992 -0.03802605 -0.045625109\n\t\t 0.99822992 0.26450402 -0.27961043 0.92294079 0.36268201 -0.17319235 0.91564685 0.068361439\n\t\t 0.074862003 0.99484235 0.36268201 -0.17319235 0.91564685 0.48084965 -0.04885992 0.87542343\n\t\t 0.48084965 -0.04885992 0.87542343 0.20123897 0.22101519 0.95425278 0.068361439 0.074862003\n\t\t 0.99484235 0.20123897 0.22101519 0.95425278 0.48084965 -0.04885992 0.87542343 0.61003447\n\t\t 0.089053258 0.7873165 0.61003447 0.089053258 0.7873165 0.35181725 0.38465548 0.85335857\n\t\t 0.20123897 0.22101519 0.95425278 0.7687003 -0.21240854 0.60325938 0.61003447 0.089053258\n\t\t 0.7873165 0.48084965 -0.04885992 0.87542343 0.48084965 -0.04885992 0.87542343 0.68166155\n\t\t -0.30613089 0.66451001 0.7687003 -0.21240854 0.60325938 0.68166155 -0.30613089 0.66451001\n\t\t 0.48084965 -0.04885992 0.87542343 0.36268201 -0.17319235 0.91564685 0.36268201 -0.17319235\n\t\t 0.91564685 0.59965831 -0.39307815 0.69701225 0.68166155 -0.30613089 0.66451001 0.59965831\n\t\t -0.39307815 0.69701225 0.36268201 -0.17319235 0.91564685 0.26450402 -0.27961043 0.92294079\n\t\t 0.26450402 -0.27961043 0.92294079 0.52784824 -0.47135818 0.70650357 0.59965831 -0.39307815\n\t\t 0.69701225 0.74480438 -0.55250686 0.3740654 0.59965831 -0.39307815 0.69701225 0.52784824\n\t\t -0.47135818 0.70650357 0.52784824 -0.47135818 0.70650357 0.71105093 -0.59126538 0.38050482\n\t\t 0.74480438 -0.55250686 0.3740654 0.778741 -0.51451129 0.35886717 0.68166155 -0.30613089\n\t\t 0.66451001 0.59965831 -0.39307815 0.69701225 0.59965831 -0.39307815 0.69701225 0.74480438\n\t\t -0.55250686 0.3740654 0.778741 -0.51451129 0.35886717 0.81209767 -0.47740078 0.33549002\n\t\t 0.7687003 -0.21240854 0.60325938 0.68166155 -0.30613089 0.66451001 0.68166155 -0.30613089\n\t\t 0.66451001 0.778741 -0.51451129 0.35886717 0.81209767 -0.47740078 0.33549002 0.61003447\n\t\t 0.089053258 0.7873165 0.7687003 -0.21240854 0.60325938 0.84188366 -0.13351817 0.52284312\n\t\t 0.84188366 -0.13351817 0.52284312 0.71605575 0.20523724 0.66713464 0.61003447 0.089053258\n\t\t 0.7873165 0.35181725 0.38465548 0.85335857 0.61003447 0.089053258 0.7873165 0.71605575\n\t\t 0.20523724 0.66713464 0.71605575 0.20523724 0.66713464 0.47627172 0.51838756 0.7101962\n\t\t 0.35181725 0.38465548 0.85335857 0.032746166 0.62273026 0.78173155 0.35181725 0.38465548\n\t\t 0.85335857 0.47627172 0.51838756 0.7101962 0.47627172 0.51838756 0.7101962 0.1576889\n\t\t 0.75249499 0.63942373 0.032746166 0.62273026 0.78173155 -0.29041436 0.75899529 0.58268982\n\t\t 0.032746166 0.62273026 0.78173155 0.1576889 0.75249499 0.63942373 0.1576889 0.75249499\n\t\t 0.63942373 -0.18543074 0.86541337 0.46540722 -0.29041436 0.75899529 0.58268982 -0.56129664\n\t\t 0.77294213 0.2957243 -0.29041436 0.75899529 0.58268982 -0.18543074 0.86541337 0.46540722\n\t\t -0.18543074 0.86541337 0.46540722 -0.49430856 0.84078473 0.22067928 -0.56129664 0.77294213\n\t\t 0.2957243 -0.74111164 0.67079657 -0.027069969 -0.56129664 0.77294213 0.2957243 -0.49430856\n\t\t 0.84078473 0.22067928 -0.49430856 0.84078473 0.22067928 -0.72252595 0.68935186 -0.051912036\n\t\t -0.74111164 0.67079657 -0.027069969 -0.81237233 0.473647 -0.34003726 -0.74111164\n\t\t 0.67079657 -0.027069969 -0.72252595 0.68935186 -0.051912036 -0.72252595 0.68935186\n\t\t -0.051912036 -0.84246355 0.43882534 -0.31244853 -0.81237233 0.473647 -0.34003726\n\t\t -0.76952428 0.20999758 -0.60307628 -0.81237233 0.473647 -0.34003726 -0.84246355 0.43882534\n\t\t -0.31244853 -0.84246355 0.43882534 -0.31244853 -0.84087658 0.12659048 -0.5261696\n\t\t -0.76952428 0.20999758 -0.60307628 -0.84087658 0.12659048 -0.5261696 -0.84246355\n\t\t 0.43882534 -0.31244853 -0.86812961 0.41090092 -0.27832884 -0.86812961 0.41090092\n\t\t -0.27832884 -0.89187294 0.067811824 -0.44712669 -0.84087658 0.12659048 -0.5261696\n\t\t -0.89187294 0.067811824 -0.44712669 -0.86812961 0.41090092 -0.27832884 -0.89535213\n\t\t 0.38734064 -0.21970278 -0.89535213 0.38734064 -0.21970278 -0.93981749 0.021271084\n\t\t -0.34095278 -0.89187294 0.067811824 -0.44712669 -0.93981749 0.021271084 -0.34095278\n\t\t -0.89535213 0.38734064 -0.21970278 -0.92098773 0.3724781 -0.11395615 -0.92098773\n\t\t 0.3724781 -0.11395615 -0.98443556 -0.0082708336 -0.17542039 -0.93981749 0.021271084\n\t\t -0.34095278 -0.71703261 0.69612694 -0.034791153 -0.92098773 0.3724781 -0.11395615\n\t\t -0.89535213 0.38734064 -0.21970278 -0.89535213 0.38734064 -0.21970278 -0.71480477\n\t\t 0.69640166 -0.063661665 -0.71703261 0.69612694 -0.034791153 -0.71480477 0.69640166\n\t\t -0.063661665 -0.89535213 0.38734064 -0.21970278 -0.86812961 0.41090092 -0.27832884\n\t\t -0.86812961 0.41090092 -0.27832884 -0.71547616 0.69542503 -0.066866107 -0.71480477\n\t\t 0.69640166 -0.063661665 -0.71547616 0.69542503 -0.066866107 -0.86812961 0.41090092\n\t\t -0.27832884 -0.84246355 0.43882534 -0.31244853 -0.84246355 0.43882534 -0.31244853\n\t\t -0.72252595 0.68935186 -0.051912036 -0.71547616 0.69542503 -0.066866107 -0.72252595\n\t\t 0.68935186 -0.051912036 -0.49430856 0.84078473 0.22067928 -0.45399362 0.87701029\n\t\t 0.15710923 -0.45399362 0.87701029 0.15710923 -0.71547616 0.69542503 -0.066866107\n\t\t -0.72252595 0.68935186 -0.051912036 -0.71547616 0.69542503 -0.066866107 -0.45399362\n\t\t 0.87701029 0.15710923 -0.42606917 0.89873946 0.1033356 -0.42606917 0.89873946 0.1033356;\n\tsetAttr \".n[44488:44653]\" -type \"float3\"  -0.71480477 0.69640166 -0.063661665 -0.71547616\n\t\t 0.69542503 -0.066866107 -0.71480477 0.69640166 -0.063661665 -0.42606917 0.89873946\n\t\t 0.1033356 -0.4077886 0.91167933 0.050019771 -0.4077886 0.91167933 0.050019771 -0.71703261\n\t\t 0.69612694 -0.034791153 -0.71480477 0.69640166 -0.063661665 -0.036714073 0.99099702\n\t\t 0.1285744 -0.4077886 0.91167933 0.050019771 -0.42606917 0.89873946 0.1033356 -0.42606917\n\t\t 0.89873946 0.1033356 -0.072176576 0.96398818 0.25583661 -0.036714073 0.99099702 0.1285744\n\t\t -0.072176576 0.96398818 0.25583661 -0.42606917 0.89873946 0.1033356 -0.45399362 0.87701029\n\t\t 0.15710923 -0.45399362 0.87701029 0.15710923 -0.1202127 0.92526013 0.3597216 -0.072176576\n\t\t 0.96398818 0.25583661 -0.1202127 0.92526013 0.3597216 -0.45399362 0.87701029 0.15710923\n\t\t -0.49430856 0.84078473 0.22067928 -0.49430856 0.84078473 0.22067928 -0.18543074 0.86541337\n\t\t 0.46540722 -0.1202127 0.92526013 0.3597216 0.2348702 0.82900488 0.50749224 -0.1202127\n\t\t 0.92526013 0.3597216 -0.18543074 0.86541337 0.46540722 -0.18543074 0.86541337 0.46540722\n\t\t 0.1576889 0.75249499 0.63942373 0.2348702 0.82900488 0.50749224 -0.1202127 0.92526013\n\t\t 0.3597216 0.2348702 0.82900488 0.50749224 0.29291639 0.88189352 0.36936545 0.29291639\n\t\t 0.88189352 0.36936545 -0.072176576 0.96398818 0.25583661 -0.1202127 0.92526013 0.3597216\n\t\t -0.072176576 0.96398818 0.25583661 0.29291639 0.88189352 0.36936545 0.33985382 0.92147601\n\t\t 0.18802446 0.33985382 0.92147601 0.18802446 -0.036714073 0.99099702 0.1285744 -0.072176576\n\t\t 0.96398818 0.25583661 0.6674701 0.71172231 0.21881765 0.33985382 0.92147601 0.18802446\n\t\t 0.29291639 0.88189352 0.36936545 0.29291639 0.88189352 0.36936545 0.61397117 0.6646018\n\t\t 0.42576367 0.6674701 0.71172231 0.21881765 0.61397117 0.6646018 0.42576367 0.29291639\n\t\t 0.88189352 0.36936545 0.2348702 0.82900488 0.50749224 0.2348702 0.82900488 0.50749224\n\t\t 0.55357504 0.602283 0.57515174 0.61397117 0.6646018 0.42576367 0.55357504 0.602283\n\t\t 0.57515174 0.2348702 0.82900488 0.50749224 0.1576889 0.75249499 0.63942373 0.1576889\n\t\t 0.75249499 0.63942373 0.47627172 0.51838756 0.7101962 0.55357504 0.602283 0.57515174\n\t\t 0.78429514 0.28284582 0.55211037 0.55357504 0.602283 0.57515174 0.47627172 0.51838756\n\t\t 0.7101962 0.47627172 0.51838756 0.7101962 0.71605575 0.20523724 0.66713464 0.78429514\n\t\t 0.28284582 0.55211037 0.55357504 0.602283 0.57515174 0.78429514 0.28284582 0.55211037\n\t\t 0.84115106 0.3455919 0.41590622 0.84115106 0.3455919 0.41590622 0.61397117 0.6646018\n\t\t 0.42576367 0.55357504 0.602283 0.57515174 0.61397117 0.6646018 0.42576367 0.84115106\n\t\t 0.3455919 0.41590622 0.89388704 0.39298713 0.2155522 0.89388704 0.39298713 0.2155522\n\t\t 0.6674701 0.71172231 0.21881765 0.61397117 0.6646018 0.42576367 0.98370314 0.014313499\n\t\t 0.1790521 0.89388704 0.39298713 0.2155522 0.84115106 0.3455919 0.41590622 0.84115106\n\t\t 0.3455919 0.41590622 0.93935972 -0.02606249 0.34186834 0.98370314 0.014313499 0.1790521\n\t\t 0.93935972 -0.02606249 0.34186834 0.84115106 0.3455919 0.41590622 0.78429514 0.28284582\n\t\t 0.55211037 0.78429514 0.28284582 0.55211037 0.89254433 -0.077394634 0.44425794 0.93935972\n\t\t -0.02606249 0.34186834 0.89254433 -0.077394634 0.44425794 0.78429514 0.28284582 0.55211037\n\t\t 0.71605575 0.20523724 0.66713464 0.71605575 0.20523724 0.66713464 0.84188366 -0.13351817\n\t\t 0.52284312 0.89254433 -0.077394634 0.44425794 0.86471158 -0.42332193 0.27021092 0.89254433\n\t\t -0.077394634 0.44425794 0.84188366 -0.13351817 0.52284312 0.84188366 -0.13351817\n\t\t 0.52284312 0.84090716 -0.44785884 0.30368972 0.86471158 -0.42332193 0.27021092 0.89358211\n\t\t -0.39344433 0.21607107 0.93935972 -0.02606249 0.34186834 0.89254433 -0.077394634\n\t\t 0.44425794 0.89254433 -0.077394634 0.44425794 0.86471158 -0.42332193 0.27021092 0.89358211\n\t\t -0.39344433 0.21607107 0.6674701 0.71172231 0.21881765 0.89388704 0.39298713 0.2155522\n\t\t 0.91259485 0.40607956 0.047059514 0.91259485 0.40607956 0.047059514 0.89388704 0.39298713\n\t\t 0.2155522 0.98370314 0.014313499 0.1790521 0.98370314 0.014313499 0.1790521 0.99890131\n\t\t 0.025300156 0.038880575 0.91259485 0.40607956 0.047059514 0.91259485 0.40607956 0.047059514\n\t\t 0.99890131 0.025300156 0.038880575 0.99966431 0.025635857 -0.0010986682 0.99966431\n\t\t 0.025635857 -0.0010986682 0.91347992 0.40681201 -0.0020752889 0.91259485 0.40607956\n\t\t 0.047059514 0.91259485 0.40607956 0.047059514 0.91347992 0.40681201 -0.0020752889\n\t\t 0.68813109 0.72557777 -0.0018006461 0.68813109 0.72557777 -0.0018006461 0.68718505\n\t\t 0.72487587 0.047822453 0.91259485 0.40607956 0.047059514 0.35715783 0.93310356 0.041474584\n\t\t 0.68718505 0.72487587 0.047822453 0.68813109 0.72557777 -0.0018006461 0.68813109\n\t\t 0.72557777 -0.0018006461 0.35831752 0.93356133 -0.0014344394 0.35715783 0.93310356\n\t\t 0.041474584 0.35715783 0.93310356 0.041474584 0.35831752 0.93356133 -0.0014344394\n\t\t -0.026948154 0.99963379 -0.0003662965 -0.026948154 0.99963379 -0.0003662965 -0.026490375\n\t\t 0.99923706 0.028534733 0.35715783 0.93310356 0.041474584 -0.40546918 0.91402924 0.011169706\n\t\t -0.026490375 0.99923706 0.028534733 -0.026948154 0.99963379 -0.0003662965 -0.026948154\n\t\t 0.99963379 -0.0003662965 -0.40644577 0.91366303 0.00024408009 -0.40546918 0.91402924\n\t\t 0.011169706 -0.40546918 0.91402924 0.011169706 -0.40644577 0.91366303 0.00024408009\n\t\t -0.7254557 0.68825316 -0.00018316228 -0.7254557 0.68825316 -0.00018316228 -0.7229532\n\t\t 0.69081676 -0.0080569377 -0.40546918 0.91402924 0.011169706 -0.93182176 0.36194924\n\t\t -0.026337501 -0.7229532 0.69081676 -0.0080569377 -0.7254557 0.68825316 -0.00018316228\n\t\t -0.7254557 0.68825316 -0.00018316228 -0.93331718 0.35901946 -0.0011902486 -0.93182176\n\t\t 0.36194924 -0.026337501 -0.93182176 0.36194924 -0.026337501 -0.93331718 0.35901946\n\t\t -0.0011902486 -0.99963379 -0.025727414 -0.0031434046 -0.99963379 -0.025727414 -0.0031434046\n\t\t -0.99893183 -0.022248305 -0.040131841;\n\tsetAttr \".n[44654:44819]\" -type \"float3\"  -0.93182176 0.36194924 -0.026337501 -0.93182176\n\t\t 0.36194924 -0.026337501 -0.99893183 -0.022248305 -0.040131841 -0.98443556 -0.0082708336\n\t\t -0.17542039 -0.98443556 -0.0082708336 -0.17542039 -0.92098773 0.3724781 -0.11395615\n\t\t -0.93182176 0.36194924 -0.026337501 -0.93182176 0.36194924 -0.026337501 -0.92098773\n\t\t 0.3724781 -0.11395615 -0.71703261 0.69612694 -0.034791153 -0.71703261 0.69612694\n\t\t -0.034791153 -0.7229532 0.69081676 -0.0080569377 -0.93182176 0.36194924 -0.026337501\n\t\t -0.40546918 0.91402924 0.011169706 -0.7229532 0.69081676 -0.0080569377 -0.71703261\n\t\t 0.69612694 -0.034791153 -0.71703261 0.69612694 -0.034791153 -0.4077886 0.91167933\n\t\t 0.050019771 -0.40546918 0.91402924 0.011169706 -0.40546918 0.91402924 0.011169706\n\t\t -0.4077886 0.91167933 0.050019771 -0.036714073 0.99099702 0.1285744 -0.036714073\n\t\t 0.99099702 0.1285744 -0.026490375 0.99923706 0.028534733 -0.40546918 0.91402924 0.011169706\n\t\t 0.35715783 0.93310356 0.041474584 -0.026490375 0.99923706 0.028534733 -0.036714073\n\t\t 0.99099702 0.1285744 -0.036714073 0.99099702 0.1285744 0.33985382 0.92147601 0.18802446\n\t\t 0.35715783 0.93310356 0.041474584 0.35715783 0.93310356 0.041474584 0.33985382 0.92147601\n\t\t 0.18802446 0.6674701 0.71172231 0.21881765 0.6674701 0.71172231 0.21881765 0.68718505\n\t\t 0.72487587 0.047822453 0.35715783 0.93310356 0.041474584 0.91259485 0.40607956 0.047059514\n\t\t 0.68718505 0.72487587 0.047822453 0.6674701 0.71172231 0.21881765 -0.91308314 -0.40485883\n\t\t -0.048310772 -0.99893183 -0.022248305 -0.040131841 -0.99963379 -0.025727414 -0.0031434046\n\t\t -0.99963379 -0.025727414 -0.0031434046 -0.91360199 -0.40653732 -0.0044251536 -0.91308314\n\t\t -0.40485883 -0.048310772 -0.91308314 -0.40485883 -0.048310772 -0.91360199 -0.40653732\n\t\t -0.0044251536 -0.68813109 -0.72554725 -0.0044861669 -0.68813109 -0.72554725 -0.0044861669\n\t\t -0.68654418 -0.7254557 -0.048585415 -0.91308314 -0.40485883 -0.048310772 -0.35486892\n\t\t -0.93395805 -0.041566137 -0.68654418 -0.7254557 -0.048585415 -0.68813109 -0.72554725\n\t\t -0.0044861669 -0.68813109 -0.72554725 -0.0044861669 -0.35770714 -0.93380547 -0.0032959296\n\t\t -0.35486892 -0.93395805 -0.041566137 -0.35486892 -0.93395805 -0.041566137 -0.35770714\n\t\t -0.93380547 -0.0032959296 0.026642967 -0.99963379 -0.0016784436 0.026642967 -0.99963379\n\t\t -0.0016784436 0.030732449 -0.99911499 -0.027710732 -0.35486892 -0.93395805 -0.041566137\n\t\t 0.40955865 -0.91219813 -0.010620373 0.030732449 -0.99911499 -0.027710732 0.026642967\n\t\t -0.99963379 -0.0016784436 0.026642967 -0.99963379 -0.0016784436 0.40742236 -0.91320527\n\t\t -6.0969061e-05 0.40955865 -0.91219813 -0.010620373 0.40955865 -0.91219813 -0.010620373\n\t\t 0.40742236 -0.91320527 -6.0969061e-05 0.72512001 -0.68861943 0.0001526438 0.72512001\n\t\t -0.68861943 0.0001526438 0.72646284 -0.68712401 0.0079653822 0.40955865 -0.91219813\n\t\t -0.010620373 0.93325615 -0.35825649 0.025391426 0.72646284 -0.68712401 0.0079653822\n\t\t 0.72512001 -0.68861943 0.0001526438 0.72512001 -0.68861943 0.0001526438 0.9336834\n\t\t -0.35804287 -0.00030515844 0.93325615 -0.35825649 0.025391426 0.72469276 -0.68810058\n\t\t 0.036133967 0.72646284 -0.68712401 0.0079653822 0.93325615 -0.35825649 0.025391426\n\t\t 0.40955865 -0.91219813 -0.010620373 0.72646284 -0.68712401 0.0079653822 0.72469276\n\t\t -0.68810058 0.036133967 0.93325615 -0.35825649 0.025391426 0.92355126 -0.36564195\n\t\t 0.11548207 0.72469276 -0.68810058 0.036133967 0.72469276 -0.68810058 0.036133967\n\t\t 0.92355126 -0.36564195 0.11548207 0.89358211 -0.39344433 0.21607107 0.89358211 -0.39344433\n\t\t 0.21607107 0.71156979 -0.70012486 0.058809221 0.72469276 -0.68810058 0.036133967\n\t\t 0.71156979 -0.70012486 0.058809221 0.89358211 -0.39344433 0.21607107 0.86471158 -0.42332193\n\t\t 0.27021092 0.86471158 -0.42332193 0.27021092 0.70714462 -0.70479423 0.056581371 0.71156979\n\t\t -0.70012486 0.058809221 0.70714462 -0.70479423 0.056581371 0.86471158 -0.42332193\n\t\t 0.27021092 0.84090716 -0.44785884 0.30368972 0.84090716 -0.44785884 0.30368972 0.71697158\n\t\t -0.69585228 0.041596781 0.70714462 -0.70479423 0.056581371 0.71697158 -0.69585228\n\t\t 0.041596781 0.84090716 -0.44785884 0.30368972 0.81209767 -0.47740078 0.33549002 0.81209767\n\t\t -0.47740078 0.33549002 0.73888379 -0.67345172 0.021881821 0.71697158 -0.69585228\n\t\t 0.041596781 0.73888379 -0.67345172 0.021881821 0.81209767 -0.47740078 0.33549002\n\t\t 0.778741 -0.51451129 0.35886717 0.778741 -0.51451129 0.35886717 0.76165062 -0.64793825\n\t\t 0.0028077511 0.73888379 -0.67345172 0.021881821 0.76165062 -0.64793825 0.0028077511\n\t\t 0.778741 -0.51451129 0.35886717 0.74480438 -0.55250686 0.3740654 0.74480438 -0.55250686\n\t\t 0.3740654 0.77718455 -0.62923038 -0.0046387664 0.76165062 -0.64793825 0.0028077511\n\t\t 0.77718455 -0.62923038 -0.0046387664 0.74480438 -0.55250686 0.3740654 0.71105093\n\t\t -0.59126538 0.38050482 0.71105093 -0.59126538 0.38050482 0.78417325 -0.62050211 -0.005035508\n\t\t 0.77718455 -0.62923038 -0.0046387664 0.78417325 -0.62050211 -0.005035508 0.71105093\n\t\t -0.59126538 0.38050482 0.67741954 -0.63139719 0.3773309 0.67741954 -0.63139719 0.3773309\n\t\t 0.78270841 -0.62233323 -0.0045472118 0.78417325 -0.62050211 -0.005035508 0.78270841\n\t\t -0.62233323 -0.0045472118 0.67741954 -0.63139719 0.3773309 0.64467317 -0.67067456\n\t\t 0.36680204 0.64467317 -0.67067456 0.36680204 0.77947342 -0.62639219 -0.0034180265\n\t\t 0.78270841 -0.62233323 -0.0045472118 0.77947342 -0.62639219 -0.0034180265 0.64467317\n\t\t -0.67067456 0.36680204 0.61067563 -0.70839548 0.35383165 0.61067563 -0.70839548 0.35383165\n\t\t 0.78048056 -0.62514091 0.0042116009 0.77947342 -0.62639219 -0.0034180265 0.78048056\n\t\t -0.62514091 0.0042116009 0.61067563 -0.70839548 0.35383165 0.56685102 -0.75099927\n\t\t 0.33860293 0.56685102 -0.75099927 0.33860293 0.78270841 -0.62184489 0.025391446 0.78048056\n\t\t -0.62514091 0.0042116009 0.78270841 -0.62184489 0.025391446 0.56685102 -0.75099927\n\t\t 0.33860293 0.50367773 -0.80657351 0.30933568 0.50367773 -0.80657351 0.30933568 0.77871048\n\t\t -0.62382859 0.066316769 0.78270841 -0.62184489 0.025391446 0.77871048 -0.62382859\n\t\t 0.066316769 0.50367773 -0.80657351 0.30933568 0.42570296 -0.87163901 0.24283583;\n\tsetAttr \".n[44820:44985]\" -type \"float3\"  0.42570296 -0.87163901 0.24283583 0.6107977\n\t\t -0.76937145 0.18689542 0.77871048 -0.62382859 0.066316769 0.6107977 -0.76937145 0.18689542\n\t\t 0.42570296 -0.87163901 0.24283583 0.37138003 -0.92098749 0.11743528 0.37138003 -0.92098749\n\t\t 0.11743528 0.56440955 -0.81521022 0.12973425 0.6107977 -0.76937145 0.18689542 0.56440955\n\t\t -0.81521022 0.12973425 0.37138003 -0.92098749 0.11743528 0.38261086 -0.92291015 -0.042145994\n\t\t 0.38261086 -0.92291015 -0.042145994 0.69566965 -0.71034861 0.10681484 0.56440955\n\t\t -0.81521022 0.12973425 0.69566965 -0.71034861 0.10681484 0.38261086 -0.92291015 -0.042145994\n\t\t 0.45069763 -0.87517917 -0.17572552 0.45069763 -0.87517917 -0.17572552 0.7026279 -0.70754087\n\t\t 0.075289212 0.69566965 -0.71034861 0.10681484 0.88760042 -0.37675071 0.26487017 0.69566965\n\t\t -0.71034861 0.10681484 0.7026279 -0.70754087 0.075289212 0.7026279 -0.70754087 0.075289212\n\t\t 0.83483392 -0.43211126 0.34098333 0.88760042 -0.37675071 0.26487017 0.69566965 -0.71034861\n\t\t 0.10681484 0.88760042 -0.37675071 0.26487017 0.94018382 -0.31684285 0.12500384 0.94018382\n\t\t -0.31684285 0.12500384 0.87200546 -0.47312817 0.12543111 0.69566965 -0.71034861 0.10681484\n\t\t 0.87200546 -0.47312817 0.12543111 0.94018382 -0.31684285 0.12500384 0.95147568 -0.30198035\n\t\t -0.058839664 0.95147568 -0.30198035 -0.058839664 0.89172047 -0.45225352 0.016296918\n\t\t 0.87200546 -0.47312817 0.12543111 0.89172047 -0.45225352 0.016296918 0.95147568 -0.30198035\n\t\t -0.058839664 0.91470087 -0.34308884 -0.21341591 0.91470087 -0.34308884 -0.21341591\n\t\t 0.77871048 -0.62382859 0.066316769 0.89172047 -0.45225352 0.016296918 0.88082522\n\t\t -0.026520347 -0.47264016 0.91470087 -0.34308884 -0.21341591 0.95147568 -0.30198035\n\t\t -0.058839664 0.95147568 -0.30198035 -0.058839664 0.96789455 0.069887668 -0.24134037\n\t\t 0.88082522 -0.026520347 -0.47264016 0.96789455 0.069887668 -0.24134037 0.95147568\n\t\t -0.30198035 -0.058839664 0.94018382 -0.31684285 0.12500384 0.94018382 -0.31684285\n\t\t 0.12500384 0.99200416 0.084506065 0.093539223 0.96789455 0.069887668 -0.24134037\n\t\t 0.99200416 0.084506065 0.093539223 0.94018382 -0.31684285 0.12500384 0.88760042 -0.37675071\n\t\t 0.26487017 0.88760042 -0.37675071 0.26487017 0.92013305 0.00054964685 0.39155248\n\t\t 0.99200416 0.084506065 0.093539223 0.92013305 0.00054964685 0.39155248 0.88760042\n\t\t -0.37675071 0.26487017 0.83483392 -0.43211126 0.34098333 0.83483392 -0.43211126 0.34098333\n\t\t 0.82082587 -0.10077182 0.56218147 0.92013305 0.00054964685 0.39155248 0.81231105\n\t\t 0.36457437 0.45518354 0.92013305 0.00054964685 0.39155248 0.82082587 -0.10077182\n\t\t 0.56218147 0.82082587 -0.10077182 0.56218147 0.67842638 0.23740374 0.69521165 0.81231105\n\t\t 0.36457437 0.45518354 0.92013305 0.00054964685 0.39155248 0.81231105 0.36457437 0.45518354\n\t\t 0.88995016 0.4544819 0.037476696 0.88995016 0.4544819 0.037476696 0.99200416 0.084506065\n\t\t 0.093539223 0.92013305 0.00054964685 0.39155248 0.99200416 0.084506065 0.093539223\n\t\t 0.88995016 0.4544819 0.037476696 0.82451844 0.40449256 -0.39558095 0.82451844 0.40449256\n\t\t -0.39558095 0.96789455 0.069887668 -0.24134037 0.99200416 0.084506065 0.093539223\n\t\t 0.96789455 0.069887668 -0.24134037 0.82451844 0.40449256 -0.39558095 0.70097959 0.27207267\n\t\t -0.65919983 0.70097959 0.27207267 -0.65919983 0.88082522 -0.026520347 -0.47264016\n\t\t 0.96789455 0.069887668 -0.24134037 0.43595675 0.51362658 -0.73897523 0.70097959 0.27207267\n\t\t -0.65919983 0.82451844 0.40449256 -0.39558095 0.82451844 0.40449256 -0.39558095 0.57829505\n\t\t 0.65666687 -0.48402363 0.43595675 0.51362658 -0.73897523 0.57829505 0.65666687 -0.48402363\n\t\t 0.82451844 0.40449256 -0.39558095 0.88995016 0.4544819 0.037476696 0.88995016 0.4544819\n\t\t 0.037476696 0.65816194 0.69716501 -0.2841579 0.57829505 0.65666687 -0.48402363 0.63832492\n\t\t 0.73445863 0.23038417 0.88995016 0.4544819 0.037476696 0.81231105 0.36457437 0.45518354\n\t\t 0.81231105 0.36457437 0.45518354 0.60097033 0.6671654 0.44010738 0.63832492 0.73445863\n\t\t 0.23038417 0.60097033 0.6671654 0.44010738 0.81231105 0.36457437 0.45518354 0.67842638\n\t\t 0.23740374 0.69521165 0.67842638 0.23740374 0.69521165 0.44856086 0.53367734 0.71687973\n\t\t 0.60097033 0.6671654 0.44010738 0.31336379 0.88195455 0.3519699 0.60097033 0.6671654\n\t\t 0.44010738 0.44856086 0.53367734 0.71687973 0.44856086 0.53367734 0.71687973 0.16443349\n\t\t 0.75981945 0.6289559 0.31336379 0.88195455 0.3519699 0.60097033 0.6671654 0.44010738\n\t\t 0.31336379 0.88195455 0.3519699 0.37012818 0.92461938 -0.089724489 0.37012818 0.92461938\n\t\t -0.089724489 0.63832492 0.73445863 0.23038417 0.60097033 0.6671654 0.44010738 0.65816194\n\t\t 0.69716501 -0.2841579 0.37012818 0.92461938 -0.089724489 0.2754598 0.82500684 -0.49342331\n\t\t 0.2754598 0.82500684 -0.49342331 0.57829505 0.65666687 -0.48402363 0.65816194 0.69716501\n\t\t -0.2841579 0.57829505 0.65666687 -0.48402363 0.2754598 0.82500684 -0.49342331 0.13138197\n\t\t 0.69252604 -0.70931125 0.13138197 0.69252604 -0.70931125 0.43595675 0.51362658 -0.73897523\n\t\t 0.57829505 0.65666687 -0.48402363 -0.19577648 0.79488498 -0.57426685 0.13138197 0.69252604\n\t\t -0.70931125 0.2754598 0.82500684 -0.49342331 0.2754598 0.82500684 -0.49342331 -0.070711665\n\t\t 0.90273744 -0.42426836 -0.19577648 0.79488498 -0.57426685 -0.070711665 0.90273744\n\t\t -0.42426836 0.2754598 0.82500684 -0.49342331 0.37012818 0.92461938 -0.089724489 0.37012818\n\t\t 0.92461938 -0.089724489 0.0084228022 0.99157691 -0.12918493 -0.070711665 0.90273744\n\t\t -0.42426836 0.0084228022 0.99157691 -0.12918493 0.37012818 0.92461938 -0.089724489\n\t\t 0.31336379 0.88195455 0.3519699 0.31336379 0.88195455 0.3519699 -0.031770069 0.976928\n\t\t 0.21106593 0.0084228022 0.99157691 -0.12918493 -0.031770069 0.976928 0.21106593 0.31336379\n\t\t 0.88195455 0.3519699 0.16443349 0.75981945 0.6289559 0.16443349 0.75981945 0.6289559\n\t\t -0.15213504 0.88314462 0.44367802 -0.031770069 0.976928 0.21106593 0.70097959 0.27207267\n\t\t -0.65919983;\n\tsetAttr \".n[44986:45151]\" -type \"float3\"  0.43595675 0.51362658 -0.73897523 0.32773817\n\t\t 0.39600822 -0.85775322 0.43595675 0.51362658 -0.73897523 0.13138197 0.69252604 -0.70931125\n\t\t 0.021210182 0.59239471 -0.80532247 0.021210182 0.59239471 -0.80532247 0.32773817\n\t\t 0.39600822 -0.85775322 0.43595675 0.51362658 -0.73897523 0.32773817 0.39600822 -0.85775322\n\t\t 0.021210182 0.59239471 -0.80532247 -0.059602808 0.51219207 -0.85677671 -0.059602808\n\t\t 0.51219207 -0.85677671 0.24707776 0.30240795 -0.92059082 0.32773817 0.39600822 -0.85775322\n\t\t 0.59944451 0.14899148 -0.78640097 0.32773817 0.39600822 -0.85775322 0.24707776 0.30240795\n\t\t -0.92059082 0.24707776 0.30240795 -0.92059082 0.5233314 0.051851045 -0.85052031 0.59944451\n\t\t 0.14899148 -0.78640097 0.79467154 -0.12945932 -0.5930357 0.59944451 0.14899148 -0.78640097\n\t\t 0.5233314 0.051851045 -0.85052031 0.59944451 0.14899148 -0.78640097 0.79467154 -0.12945932\n\t\t -0.5930357 0.88082522 -0.026520347 -0.47264016 0.91470087 -0.34308884 -0.21341591\n\t\t 0.88082522 -0.026520347 -0.47264016 0.79467154 -0.12945932 -0.5930357 0.79467154\n\t\t -0.12945932 -0.5930357 0.86364341 -0.40034157 -0.30622271 0.91470087 -0.34308884\n\t\t -0.21341591 0.77871048 -0.62382859 0.066316769 0.91470087 -0.34308884 -0.21341591\n\t\t 0.86364341 -0.40034157 -0.30622271 0.86364341 -0.40034157 -0.30622271 0.78270841\n\t\t -0.62184489 0.025391446 0.77871048 -0.62382859 0.066316769 0.78270841 -0.62184489\n\t\t 0.025391446 0.86364341 -0.40034157 -0.30622271 0.82155842 -0.44883549 -0.35148165\n\t\t 0.82155842 -0.44883549 -0.35148165 0.78048056 -0.62514091 0.0042116009 0.78270841\n\t\t -0.62184489 0.025391446 0.78048056 -0.62514091 0.0042116009 0.82155842 -0.44883549\n\t\t -0.35148165 0.78939193 -0.48692262 -0.3738212 0.78939193 -0.48692262 -0.3738212 0.77947342\n\t\t -0.62639219 -0.0034180265 0.78048056 -0.62514091 0.0042116009 0.77947342 -0.62639219\n\t\t -0.0034180265 0.78939193 -0.48692262 -0.3738212 0.76424468 -0.51759368 -0.38468578\n\t\t 0.76424468 -0.51759368 -0.38468578 0.78270841 -0.62233323 -0.0045472118 0.77947342\n\t\t -0.62639219 -0.0034180265 0.62855935 -0.33750406 -0.70067447 0.76424468 -0.51759368\n\t\t -0.38468578 0.78939193 -0.48692262 -0.3738212 0.78939193 -0.48692262 -0.3738212 0.67564934\n\t\t -0.27802348 -0.6827296 0.62855935 -0.33750406 -0.70067447 0.67564934 -0.27802348\n\t\t -0.6827296 0.78939193 -0.48692262 -0.3738212 0.82155842 -0.44883549 -0.35148165 0.82155842\n\t\t -0.44883549 -0.35148165 0.72872102 -0.21152361 -0.65129548 0.67564934 -0.27802348\n\t\t -0.6827296 0.72872102 -0.21152361 -0.65129548 0.82155842 -0.44883549 -0.35148165\n\t\t 0.86364341 -0.40034157 -0.30622271 0.86364341 -0.40034157 -0.30622271 0.79467154\n\t\t -0.12945932 -0.5930357 0.72872102 -0.21152361 -0.65129548 0.5233314 0.051851045 -0.85052031\n\t\t 0.72872102 -0.21152361 -0.65129548 0.79467154 -0.12945932 -0.5930357 0.72872102 -0.21152361\n\t\t -0.65129548 0.5233314 0.051851045 -0.85052031 0.45957825 -0.030335322 -0.8876003\n\t\t 0.45957825 -0.030335322 -0.8876003 0.67564934 -0.27802348 -0.6827296 0.72872102 -0.21152361\n\t\t -0.65129548 0.67564934 -0.27802348 -0.6827296 0.45957825 -0.030335322 -0.8876003\n\t\t 0.39851072 -0.10849324 -0.91070282 0.39851072 -0.10849324 -0.91070282 0.62855935\n\t\t -0.33750406 -0.70067447 0.67564934 -0.27802348 -0.6827296 0.11270481 0.13415933 -0.98452711\n\t\t 0.39851072 -0.10849324 -0.91070282 0.45957825 -0.030335322 -0.8876003 0.45957825\n\t\t -0.030335322 -0.8876003 0.1793572 0.21851252 -0.95919675 0.11270481 0.13415933 -0.98452711\n\t\t 0.1793572 0.21851252 -0.95919675 0.45957825 -0.030335322 -0.8876003 0.5233314 0.051851045\n\t\t -0.85052031 0.5233314 0.051851045 -0.85052031 0.24707776 0.30240795 -0.92059082 0.1793572\n\t\t 0.21851252 -0.95919675 -0.12506498 0.43699443 -0.89071327 0.1793572 0.21851252 -0.95919675\n\t\t 0.24707776 0.30240795 -0.92059082 0.24707776 0.30240795 -0.92059082 -0.059602808\n\t\t 0.51219207 -0.85677671 -0.12506498 0.43699443 -0.89071327 0.1793572 0.21851252 -0.95919675\n\t\t -0.12506498 0.43699443 -0.89071327 -0.18872656 0.35795149 -0.91445661 -0.18872656\n\t\t 0.35795149 -0.91445661 0.11270481 0.13415933 -0.98452711 0.1793572 0.21851252 -0.95919675\n\t\t -0.46504122 0.53169328 -0.70781583 -0.18872656 0.35795149 -0.91445661 -0.12506498\n\t\t 0.43699443 -0.89071327 -0.12506498 0.43699443 -0.89071327 -0.41331235 0.5948056 -0.68944371\n\t\t -0.46504122 0.53169328 -0.70781583 -0.41331235 0.5948056 -0.68944371 -0.12506498\n\t\t 0.43699443 -0.89071327 -0.059602808 0.51219207 -0.85677671 -0.059602808 0.51219207\n\t\t -0.85677671 -0.35972187 0.65355372 -0.66588342 -0.41331235 0.5948056 -0.68944371\n\t\t -0.35972187 0.65355372 -0.66588342 -0.059602808 0.51219207 -0.85677671 0.021210182\n\t\t 0.59239471 -0.80532247 0.021210182 0.59239471 -0.80532247 -0.29142144 0.71593356\n\t\t -0.63441885 -0.35972187 0.65355372 -0.66588342 -0.29142144 0.71593356 -0.63441885\n\t\t 0.021210182 0.59239471 -0.80532247 0.13138197 0.69252604 -0.70931125 0.13138197 0.69252604\n\t\t -0.70931125 -0.19577648 0.79488498 -0.57426685 -0.29142144 0.71593356 -0.63441885\n\t\t 0.39851072 -0.10849324 -0.91070282 0.11270481 0.13415933 -0.98452711 0.031342499\n\t\t 0.038056519 -0.99877924 0.031342499 0.038056519 -0.99877924 0.32599878 -0.19895013\n\t\t -0.92416149 0.39851072 -0.10849324 -0.91070282 0.62855935 -0.33750406 -0.70067447\n\t\t 0.39851072 -0.10849324 -0.91070282 0.32599878 -0.19895013 -0.92416149 0.32599878\n\t\t -0.19895013 -0.92416149 0.57448053 -0.40757456 -0.70976889 0.62855935 -0.33750406\n\t\t -0.70067447 0.76424468 -0.51759368 -0.38468578 0.62855935 -0.33750406 -0.70067447\n\t\t 0.57448053 -0.40757456 -0.70976889 0.57448053 -0.40757456 -0.70976889 0.73522156\n\t\t -0.55494833 -0.38917199 0.76424468 -0.51759368 -0.38468578 0.78270841 -0.62233323\n\t\t -0.0045472118 0.76424468 -0.51759368 -0.38468578 0.73522156 -0.55494833 -0.38917199\n\t\t 0.73522156 -0.55494833 -0.38917199 0.78417325 -0.62050211 -0.005035508 0.78270841\n\t\t -0.62233323 -0.0045472118 0.78417325 -0.62050211 -0.005035508 0.73522156 -0.55494833\n\t\t -0.38917199 0.69130546 -0.61207896 -0.38392279 0.69130546 -0.61207896 -0.38392279\n\t\t 0.77718455 -0.62923038 -0.0046387664;\n\tsetAttr \".n[45152:45317]\" -type \"float3\"  0.78417325 -0.62050211 -0.005035508 0.77718455\n\t\t -0.62923038 -0.0046387664 0.69130546 -0.61207896 -0.38392279 0.63118404 -0.68834478\n\t\t -0.35743272 0.63118404 -0.68834478 -0.35743272 0.76165062 -0.64793825 0.0028077511\n\t\t 0.77718455 -0.62923038 -0.0046387664 0.76165062 -0.64793825 0.0028077511 0.63118404\n\t\t -0.68834478 -0.35743272 0.55598646 -0.77526152 -0.29966119 0.55598646 -0.77526152\n\t\t -0.29966119 0.73888379 -0.67345172 0.021881821 0.76165062 -0.64793825 0.0028077511\n\t\t 0.28571454 -0.76207769 -0.58098078 0.55598646 -0.77526152 -0.29966119 0.63118404\n\t\t -0.68834478 -0.35743272 0.63118404 -0.68834478 -0.35743272 0.40351591 -0.62636185\n\t\t -0.66695142 0.28571454 -0.76207769 -0.58098078 0.40351591 -0.62636185 -0.66695142\n\t\t 0.63118404 -0.68834478 -0.35743272 0.69130546 -0.61207896 -0.38392279 0.69130546\n\t\t -0.61207896 -0.38392279 0.50050372 -0.50386047 -0.70397037 0.40351591 -0.62636185\n\t\t -0.66695142 0.50050372 -0.50386047 -0.70397037 0.69130546 -0.61207896 -0.38392279\n\t\t 0.73522156 -0.55494833 -0.38917199 0.73522156 -0.55494833 -0.38917199 0.57448053\n\t\t -0.40757456 -0.70976889 0.50050372 -0.50386047 -0.70397037 0.2294993 -0.31693473\n\t\t -0.92022461 0.50050372 -0.50386047 -0.70397037 0.57448053 -0.40757456 -0.70976889\n\t\t 0.57448053 -0.40757456 -0.70976889 0.32599878 -0.19895013 -0.92416149 0.2294993 -0.31693473\n\t\t -0.92022461 0.50050372 -0.50386047 -0.70397037 0.2294993 -0.31693473 -0.92022461\n\t\t 0.10544159 -0.4637593 -0.87963492 0.10544159 -0.4637593 -0.87963492 0.40351591 -0.62636185\n\t\t -0.66695142 0.50050372 -0.50386047 -0.70397037 0.40351591 -0.62636185 -0.66695142\n\t\t 0.10544159 -0.4637593 -0.87963492 -0.039887499 -0.62593466 -0.77883232 -0.039887499\n\t\t -0.62593466 -0.77883232 0.28571454 -0.76207769 -0.58098078 0.40351591 -0.62636185\n\t\t -0.66695142 -0.35819563 -0.38746318 -0.84942168 -0.039887499 -0.62593466 -0.77883232\n\t\t 0.10544159 -0.4637593 -0.87963492 0.10544159 -0.4637593 -0.87963492 -0.20798357 -0.22681369\n\t\t -0.95144504 -0.35819563 -0.38746318 -0.84942168 -0.20798357 -0.22681369 -0.95144504\n\t\t 0.10544159 -0.4637593 -0.87963492 0.2294993 -0.31693473 -0.92022461 0.2294993 -0.31693473\n\t\t -0.92022461 -0.074709289 -0.081606589 -0.99383527 -0.20798357 -0.22681369 -0.95144504\n\t\t -0.074709289 -0.081606589 -0.99383527 0.2294993 -0.31693473 -0.92022461 0.32599878\n\t\t -0.19895013 -0.92416149 0.32599878 -0.19895013 -0.92416149 0.031342499 0.038056519\n\t\t -0.99877924 -0.074709289 -0.081606589 -0.99383527 -0.36414692 0.16425042 -0.91671497\n\t\t -0.074709289 -0.081606589 -0.99383527 0.031342499 0.038056519 -0.99877924 0.031342499\n\t\t 0.038056519 -0.99877924 -0.26633513 0.26929519 -0.92547381 -0.36414692 0.16425042\n\t\t -0.91671497 -0.26633513 0.26929519 -0.92547381 0.031342499 0.038056519 -0.99877924\n\t\t 0.11270481 0.13415933 -0.98452711 0.11270481 0.13415933 -0.98452711 -0.18872656 0.35795149\n\t\t -0.91445661 -0.26633513 0.26929519 -0.92547381 -0.074709289 -0.081606589 -0.99383527\n\t\t -0.36414692 0.16425042 -0.91671497 -0.48298594 0.041474443 -0.87462997 -0.48298594\n\t\t 0.041474443 -0.87462997 -0.20798357 -0.22681369 -0.95144504 -0.074709289 -0.081606589\n\t\t -0.99383527 -0.20798357 -0.22681369 -0.95144504 -0.48298594 0.041474443 -0.87462997\n\t\t -0.61247599 -0.09305118 -0.78496659 -0.61247599 -0.09305118 -0.78496659 -0.35819563\n\t\t -0.38746318 -0.84942168 -0.20798357 -0.22681369 -0.95144504 -0.76952428 0.20999758\n\t\t -0.60307628 -0.61247599 -0.09305118 -0.78496659 -0.48298594 0.041474443 -0.87462997\n\t\t -0.48298594 0.041474443 -0.87462997 -0.68208879 0.30011874 -0.66679889 -0.76952428\n\t\t 0.20999758 -0.60307628 -0.68208879 0.30011874 -0.66679889 -0.48298594 0.041474443\n\t\t -0.87462997 -0.36414692 0.16425042 -0.91671497 -0.36414692 0.16425042 -0.91671497\n\t\t -0.59886485 0.38523489 -0.70204777 -0.68208879 0.30011874 -0.66679889 -0.59886485\n\t\t 0.38523489 -0.70204777 -0.36414692 0.16425042 -0.91671497 -0.26633513 0.26929519\n\t\t -0.92547381 -0.26633513 0.26929519 -0.92547381 -0.5263834 0.46229416 -0.71355331\n\t\t -0.59886485 0.38523489 -0.70204777 -0.5263834 0.46229416 -0.71355331 -0.26633513\n\t\t 0.26929519 -0.92547381 -0.18872656 0.35795149 -0.91445661 -0.18872656 0.35795149\n\t\t -0.91445661 -0.46504122 0.53169328 -0.70781583 -0.5263834 0.46229416 -0.71355331\n\t\t -0.039887499 -0.62593466 -0.77883232 -0.35819563 -0.38746318 -0.84942168 -0.47886577\n\t\t -0.51976091 -0.7074495 -0.35819563 -0.38746318 -0.84942168 -0.61247599 -0.09305118\n\t\t -0.78496659 -0.71489602 -0.21091369 -0.66661578 -0.71489602 -0.21091369 -0.66661578\n\t\t -0.47886577 -0.51976091 -0.7074495 -0.35819563 -0.38746318 -0.84942168 -0.47886577\n\t\t -0.51976091 -0.7074495 -0.71489602 -0.21091369 -0.66661578 -0.78258604 -0.28919366\n\t\t -0.5512253 -0.78258604 -0.28919366 -0.5512253 -0.55503994 -0.60310704 -0.57283235\n\t\t -0.47886577 -0.51976091 -0.7074495 -0.16333482 -0.75231189 -0.63820302 -0.47886577\n\t\t -0.51976091 -0.7074495 -0.55503994 -0.60310704 -0.57283235 -0.55503994 -0.60310704\n\t\t -0.57283235 -0.24030249 -0.82763159 -0.50718707 -0.16333482 -0.75231189 -0.63820302\n\t\t 0.1789608 -0.8658101 -0.46720779 -0.16333482 -0.75231189 -0.63820302 -0.24030249\n\t\t -0.82763159 -0.50718707 -0.16333482 -0.75231189 -0.63820302 0.1789608 -0.8658101\n\t\t -0.46720779 0.28571454 -0.76207769 -0.58098078 0.55598646 -0.77526152 -0.29966119\n\t\t 0.28571454 -0.76207769 -0.58098078 0.1789608 -0.8658101 -0.46720779 0.1789608 -0.8658101\n\t\t -0.46720779 0.48539716 -0.84374505 -0.22898032 0.55598646 -0.77526152 -0.29966119\n\t\t 0.73888379 -0.67345172 0.021881821 0.55598646 -0.77526152 -0.29966119 0.48539716\n\t\t -0.84374505 -0.22898032 0.48539716 -0.84374505 -0.22898032 0.71697158 -0.69585228\n\t\t 0.041596781 0.73888379 -0.67345172 0.021881821 0.71697158 -0.69585228 0.041596781\n\t\t 0.48539716 -0.84374505 -0.22898032 0.44264072 -0.88122183 -0.16571544 0.44264072\n\t\t -0.88122183 -0.16571544 0.70714462 -0.70479423 0.056581371 0.71697158 -0.69585228\n\t\t 0.041596781 0.70714462 -0.70479423 0.056581371 0.44264072 -0.88122183 -0.16571544\n\t\t 0.42109466 -0.90075368 -0.10608228 0.42109466 -0.90075368 -0.10608228 0.71156979\n\t\t -0.70012486 0.058809221 0.70714462 -0.70479423 0.056581371;\n\tsetAttr \".n[45318:45483]\" -type \"float3\"  0.71156979 -0.70012486 0.058809221 0.42109466\n\t\t -0.90075368 -0.10608228 0.41605911 -0.90807813 -0.047639325 0.41605911 -0.90807813\n\t\t -0.047639325 0.72469276 -0.68810058 0.036133967 0.71156979 -0.70012486 0.058809221\n\t\t 0.046510514 -0.99124122 -0.12338626 0.41605911 -0.90807813 -0.047639325 0.42109466\n\t\t -0.90075368 -0.10608228 0.42109466 -0.90075368 -0.10608228 0.069613017 -0.96481216\n\t\t -0.25342566 0.046510514 -0.99124122 -0.12338626 0.069613017 -0.96481216 -0.25342566\n\t\t 0.42109466 -0.90075368 -0.10608228 0.44264072 -0.88122183 -0.16571544 0.44264072\n\t\t -0.88122183 -0.16571544 0.11227788 -0.92507702 -0.36274293 0.069613017 -0.96481216\n\t\t -0.25342566 0.11227788 -0.92507702 -0.36274293 0.44264072 -0.88122183 -0.16571544\n\t\t 0.48539716 -0.84374505 -0.22898032 0.48539716 -0.84374505 -0.22898032 0.1789608 -0.8658101\n\t\t -0.46720779 0.11227788 -0.92507702 -0.36274293 -0.24030249 -0.82763159 -0.50718707\n\t\t 0.11227788 -0.92507702 -0.36274293 0.1789608 -0.8658101 -0.46720779 0.11227788 -0.92507702\n\t\t -0.36274293 -0.24030249 -0.82763159 -0.50718707 -0.29572409 -0.88320577 -0.36396369\n\t\t -0.29572409 -0.88320577 -0.36396369 0.069613017 -0.96481216 -0.25342566 0.11227788\n\t\t -0.92507702 -0.36274293 0.069613017 -0.96481216 -0.25342566 -0.29572409 -0.88320577\n\t\t -0.36396369 -0.33542863 -0.92446679 -0.18106624 -0.33542863 -0.92446679 -0.18106624\n\t\t 0.046510514 -0.99124122 -0.12338626 0.069613017 -0.96481216 -0.25342566 -0.66679865\n\t\t -0.71456057 -0.21158476 -0.33542863 -0.92446679 -0.18106624 -0.29572409 -0.88320577\n\t\t -0.36396369 -0.29572409 -0.88320577 -0.36396369 -0.6156497 -0.66731799 -0.41908011\n\t\t -0.66679865 -0.71456057 -0.21158476 -0.6156497 -0.66731799 -0.41908011 -0.29572409\n\t\t -0.88320577 -0.36396369 -0.24030249 -0.82763159 -0.50718707 -0.24030249 -0.82763159\n\t\t -0.50718707 -0.55503994 -0.60310704 -0.57283235 -0.6156497 -0.66731799 -0.41908011\n\t\t -0.84154779 -0.35035279 -0.41108429 -0.6156497 -0.66731799 -0.41908011 -0.55503994\n\t\t -0.60310704 -0.57283235 -0.55503994 -0.60310704 -0.57283235 -0.78258604 -0.28919366\n\t\t -0.5512253 -0.84154779 -0.35035279 -0.41108429 -0.6156497 -0.66731799 -0.41908011\n\t\t -0.84154779 -0.35035279 -0.41108429 -0.89565712 -0.39216316 -0.20972317 -0.89565712\n\t\t -0.39216316 -0.20972317 -0.66679865 -0.71456057 -0.21158476 -0.6156497 -0.66731799\n\t\t -0.41908011 -0.98443556 -0.0082708336 -0.17542039 -0.89565712 -0.39216316 -0.20972317\n\t\t -0.84154779 -0.35035279 -0.41108429 -0.84154779 -0.35035279 -0.41108429 -0.93981749\n\t\t 0.021271084 -0.34095278 -0.98443556 -0.0082708336 -0.17542039 -0.93981749 0.021271084\n\t\t -0.34095278 -0.84154779 -0.35035279 -0.41108429 -0.78258604 -0.28919366 -0.5512253\n\t\t -0.78258604 -0.28919366 -0.5512253 -0.89187294 0.067811824 -0.44712669 -0.93981749\n\t\t 0.021271084 -0.34095278 -0.89187294 0.067811824 -0.44712669 -0.78258604 -0.28919366\n\t\t -0.5512253 -0.71489602 -0.21091369 -0.66661578 -0.71489602 -0.21091369 -0.66661578\n\t\t -0.84087658 0.12659048 -0.5261696 -0.89187294 0.067811824 -0.44712669 -0.84087658\n\t\t 0.12659048 -0.5261696 -0.71489602 -0.21091369 -0.66661578 -0.61247599 -0.09305118\n\t\t -0.78496659 -0.61247599 -0.09305118 -0.78496659 -0.76952428 0.20999758 -0.60307628\n\t\t -0.84087658 0.12659048 -0.5261696 -0.35486892 -0.93395805 -0.041566137 -0.33542863\n\t\t -0.92446679 -0.18106624 -0.66679865 -0.71456057 -0.21158476 0.046510514 -0.99124122\n\t\t -0.12338626 -0.33542863 -0.92446679 -0.18106624 -0.35486892 -0.93395805 -0.041566137\n\t\t -0.35486892 -0.93395805 -0.041566137 0.030732449 -0.99911499 -0.027710732 0.046510514\n\t\t -0.99124122 -0.12338626 0.046510514 -0.99124122 -0.12338626 0.030732449 -0.99911499\n\t\t -0.027710732 0.40955865 -0.91219813 -0.010620373 0.40955865 -0.91219813 -0.010620373\n\t\t 0.41605911 -0.90807813 -0.047639325 0.046510514 -0.99124122 -0.12338626 0.72469276\n\t\t -0.68810058 0.036133967 0.41605911 -0.90807813 -0.047639325 0.40955865 -0.91219813\n\t\t -0.010620373 -0.89565712 -0.39216316 -0.20972317 -0.98443556 -0.0082708336 -0.17542039\n\t\t -0.99893183 -0.022248305 -0.040131841 -0.99893183 -0.022248305 -0.040131841 -0.91308314\n\t\t -0.40485883 -0.048310772 -0.89565712 -0.39216316 -0.20972317 -0.66679865 -0.71456057\n\t\t -0.21158476 -0.89565712 -0.39216316 -0.20972317 -0.91308314 -0.40485883 -0.048310772\n\t\t -0.66679865 -0.71456057 -0.21158476 -0.68654418 -0.7254557 -0.048585415 -0.35486892\n\t\t -0.93395805 -0.041566137 -0.91308314 -0.40485883 -0.048310772 -0.68654418 -0.7254557\n\t\t -0.048585415 -0.66679865 -0.71456057 -0.21158476 0.13016173 -0.91647077 -0.37824634\n\t\t 0.45069763 -0.87517917 -0.17572552 0.38261086 -0.92291015 -0.042145994 0.38261086\n\t\t -0.92291015 -0.042145994 0.018921781 -0.98702961 -0.15924551 0.13016173 -0.91647077\n\t\t -0.37824634 0.15417978 -0.86053032 0.48542747 0.50367773 -0.80657351 0.30933568 0.56685102\n\t\t -0.75099927 0.33860293 0.56685102 -0.75099927 0.33860293 0.26209319 -0.76622808 0.58662683\n\t\t 0.15417978 -0.86053032 0.48542747 0.88082522 -0.026520347 -0.47264016 0.70097959\n\t\t 0.27207267 -0.65919983 0.59944451 0.14899148 -0.78640097 0.32773817 0.39600822 -0.85775322\n\t\t 0.59944451 0.14899148 -0.78640097 0.70097959 0.27207267 -0.65919983 0.46644509 -0.54267997\n\t\t 0.69847721 0.67741954 -0.63139719 0.3773309 0.71105093 -0.59126538 0.38050482 0.71105093\n\t\t -0.59126538 0.38050482 0.52784824 -0.47135818 0.70650357 0.46644509 -0.54267997 0.69847721\n\t\t 0.7687003 -0.21240854 0.60325938 0.81209767 -0.47740078 0.33549002 0.84090716 -0.44785884\n\t\t 0.30368972 0.84090716 -0.44785884 0.30368972 0.84188366 -0.13351817 0.52284312 0.7687003\n\t\t -0.21240854 0.60325938 0.93935972 -0.02606249 0.34186834 0.89358211 -0.39344433 0.21607107\n\t\t 0.92355126 -0.36564195 0.11548207 0.92355126 -0.36564195 0.11548207 0.98370314 0.014313499\n\t\t 0.1790521 0.93935972 -0.02606249 0.34186834 0.28571454 -0.76207769 -0.58098078 -0.039887499\n\t\t -0.62593466 -0.77883232 -0.16333482 -0.75231189 -0.63820302 -0.47886577 -0.51976091\n\t\t -0.7074495 -0.16333482 -0.75231189 -0.63820302 -0.039887499 -0.62593466 -0.77883232\n\t\t 0.98370314 0.014313499 0.1790521 0.92355126 -0.36564195 0.11548207 0.93325615 -0.35825649\n\t\t 0.025391426 0.93325615 -0.35825649 0.025391426;\n\tsetAttr \".n[45484:45649]\" -type \"float3\"  0.99890131 0.025300156 0.038880575 0.98370314\n\t\t 0.014313499 0.1790521 0.99966431 0.025635857 -0.0010986682 0.99890131 0.025300156\n\t\t 0.038880575 0.93325615 -0.35825649 0.025391426 0.93325615 -0.35825649 0.025391426\n\t\t 0.9336834 -0.35804287 -0.00030515844 0.99966431 0.025635857 -0.0010986682 -0.99899286\n\t\t -0.0021976449 -0.044526506 -0.92171991 -0.38636464 -0.033509292 -0.91763043 -0.3872802\n\t\t -0.089022465 -0.69997227 -0.71071529 -0.069856815 -0.91763043 -0.3872802 -0.089022465\n\t\t -0.92171991 -0.38636464 -0.033509292 -0.91763043 -0.3872802 -0.089022465 -0.69997227\n\t\t -0.71071529 -0.069856815 -0.65776521 -0.72243434 -0.21298862 -0.92171991 -0.38636464\n\t\t -0.033509292 -0.70409226 -0.70979971 -0.019775942 -0.69997227 -0.71071529 -0.069856815\n\t\t -0.37873441 -0.92428368 -0.046906881 -0.69997227 -0.71071529 -0.069856815 -0.70409226\n\t\t -0.70979971 -0.019775942 -0.70409226 -0.70979971 -0.019775942 -0.38084018 -0.92455834\n\t\t -0.010284669 -0.37873441 -0.92428368 -0.046906881 -0.69997227 -0.71071529 -0.069856815\n\t\t -0.37873441 -0.92428368 -0.046906881 -0.33945709 -0.92614532 -0.1641895 -0.33945709\n\t\t -0.92614532 -0.1641895 -0.65776521 -0.72243434 -0.21298862 -0.69997227 -0.71071529\n\t\t -0.069856815 0.024567707 -0.99520862 -0.094607309 -0.33945709 -0.92614532 -0.1641895\n\t\t -0.37873441 -0.92428368 -0.046906881 -0.37873441 -0.92428368 -0.046906881 -0.00012176493\n\t\t -0.99966431 -0.024903029 0.024567707 -0.99520862 -0.094607309 -0.00012176493 -0.99966431\n\t\t -0.024903029 -0.37873441 -0.92428368 -0.046906881 -0.38084018 -0.92455834 -0.010284669\n\t\t -0.38084018 -0.92455834 -0.010284669 0.00082430895 -0.99996948 -0.006622442 -0.00012176493\n\t\t -0.99966431 -0.024903029 0.00082430895 -0.99996948 -0.006622442 0.38282448 -0.92379516\n\t\t -0.0057679294 0.38013884 -0.92489386 -0.0034485226 0.38013884 -0.92489386 -0.0034485226\n\t\t -0.00012176493 -0.99966431 -0.024903029 0.00082430895 -0.99996948 -0.006622442 0.70592386\n\t\t -0.70805973 0.0170599 0.38013884 -0.92489386 -0.0034485226 0.38282448 -0.92379516\n\t\t -0.0057679294 0.38013884 -0.92489386 -0.0034485226 0.70592386 -0.70805973 0.0170599\n\t\t 0.70488626 -0.70534354 0.074770398 0.70488626 -0.70534354 0.074770398 0.38865352\n\t\t -0.92129266 -0.011627483 0.38013884 -0.92489386 -0.0034485226 -0.00012176493 -0.99966431\n\t\t -0.024903029 0.38013884 -0.92489386 -0.0034485226 0.38865352 -0.92129266 -0.011627483\n\t\t 0.38865352 -0.92129266 -0.011627483 0.024567707 -0.99520862 -0.094607309 -0.00012176493\n\t\t -0.99966431 -0.024903029 0.38282448 -0.92379516 -0.0057679294 0.70741928 -0.70674741\n\t\t -0.0054627606 0.70592386 -0.70805973 0.0170599 0.92437524 -0.37977204 0.035706684\n\t\t 0.70592386 -0.70805973 0.0170599 0.70741928 -0.70674741 -0.0054627606 0.70741928\n\t\t -0.70674741 -0.0054627606 0.92428368 -0.38166419 -0.0034790817 0.92437524 -0.37977204\n\t\t 0.035706684 0.70592386 -0.70805973 0.0170599 0.92437524 -0.37977204 0.035706684 0.91665405\n\t\t -0.37058595 0.14960176 0.91665405 -0.37058595 0.14960176 0.70488626 -0.70534354 0.074770398\n\t\t 0.70592386 -0.70805973 0.0170599 0.97979677 0.029755866 0.19766839 0.91665405 -0.37058595\n\t\t 0.14960176 0.92437524 -0.37977204 0.035706684 0.92437524 -0.37977204 0.035706684\n\t\t 0.99868768 0.0093084583 0.050019838 0.97979677 0.029755866 0.19766839 0.99868768\n\t\t 0.0093084583 0.050019838 0.92437524 -0.37977204 0.035706684 0.92428368 -0.38166419\n\t\t -0.0034790817 0.92428368 -0.38166419 -0.0034790817 0.99996948 0.0016788272 0.00064088858\n\t\t 0.99868768 0.0093084583 0.050019838 0.9168064 0.39515397 0.057252694 0.99868768 0.0093084583\n\t\t 0.050019838 0.99996948 0.0016788272 0.00064088858 0.99996948 0.0016788272 0.00064088858\n\t\t 0.92318481 0.38422832 0.0061036735 0.9168064 0.39515397 0.057252694 0.99868768 0.0093084583\n\t\t 0.050019838 0.9168064 0.39515397 0.057252694 0.8831445 0.41929409 0.21027251 0.8831445\n\t\t 0.41929409 0.21027251 0.97979677 0.029755866 0.19766839 0.99868768 0.0093084583 0.050019838\n\t\t 0.65333998 0.7329632 0.18945885 0.8831445 0.41929409 0.21027251 0.9168064 0.39515397\n\t\t 0.057252694 0.9168064 0.39515397 0.057252694 0.69508934 0.71675795 0.055330005 0.65333998\n\t\t 0.7329632 0.18945885 0.69508934 0.71675795 0.055330005 0.9168064 0.39515397 0.057252694\n\t\t 0.92318481 0.38422832 0.0061036735 0.92318481 0.38422832 0.0061036735 0.70641172\n\t\t 0.70769393 0.01058987 0.69508934 0.71675795 0.055330005 0.37205085 0.92718297 0.043183621\n\t\t 0.69508934 0.71675795 0.055330005 0.70641172 0.70769393 0.01058987 0.70641172 0.70769393\n\t\t 0.01058987 0.38383099 0.92330712 0.011047632 0.37205085 0.92718297 0.043183621 0.69508934\n\t\t 0.71675795 0.055330005 0.37205085 0.92718297 0.043183621 0.33530656 0.93124193 0.14246033\n\t\t 0.33530656 0.93124193 0.14246033 0.65333998 0.7329632 0.18945885 0.69508934 0.71675795\n\t\t 0.055330005 -0.0014041606 0.99978638 0.019287623 0.37205085 0.92718297 0.043183621\n\t\t 0.38383099 0.92330712 0.011047632 0.38383099 0.92330712 0.011047632 0.0051268004\n\t\t 0.99996948 0.0028076284 -0.0014041606 0.99978638 0.019287623 -0.18460675 0.92452765\n\t\t 0.33335361 -0.49852011 0.85219866 0.15872671 -0.54026943 0.82088667 0.18497263 -0.54026943\n\t\t 0.82088667 0.18497263 -0.23517592 0.89281893 0.38410589 -0.18460675 0.92452765 0.33335361\n\t\t -0.23517592 0.89281893 0.38410589 -0.54026943 0.82088667 0.18497263 -0.57783771 0.79290122\n\t\t 0.19327366 -0.57783771 0.79290122 0.19327366 -0.28489056 0.85839409 0.42655715 -0.23517592\n\t\t 0.89281893 0.38410589 -0.28489056 0.85839409 0.42655715 -0.57783771 0.79290122 0.19327366\n\t\t -0.60432774 0.77220964 0.19608137 -0.60432774 0.77220964 0.19608137 -0.32587692 0.82345039\n\t\t 0.46440011 -0.28489056 0.85839409 0.42655715 -0.32587692 0.82345039 0.46440011 -0.60432774\n\t\t 0.77220964 0.19608137 -0.61528391 0.76055157 0.20722061 -0.61528391 0.76055157 0.20722061\n\t\t -0.35224488 0.78859824 0.5039826 -0.32587692 0.82345039 0.46440011 -0.782098 0.60631096\n\t\t -0.1437117 -0.61528391 0.76055157 0.20722061 -0.60432774 0.77220964 0.19608137 -0.60432774\n\t\t 0.77220964 0.19608137 -0.79537356 0.59343219 -0.12332535 -0.782098 0.60631096 -0.1437117\n\t\t -0.79537356 0.59343219 -0.12332535 -0.60432774 0.77220964 0.19608137;\n\tsetAttr \".n[45650:45815]\" -type \"float3\"  -0.57783771 0.79290122 0.19327366 -0.57783771\n\t\t 0.79290122 0.19327366 -0.79601449 0.59898657 -0.086581059 -0.79537356 0.59343219\n\t\t -0.12332535 -0.79601449 0.59898657 -0.086581059 -0.57783771 0.79290122 0.19327366\n\t\t -0.54026943 0.82088667 0.18497263 -0.54026943 0.82088667 0.18497263 -0.78273892 0.62007481\n\t\t -0.052888621 -0.79601449 0.59898657 -0.086581059 -0.78273892 0.62007481 -0.052888621\n\t\t -0.54026943 0.82088667 0.18497263 -0.49852011 0.85219866 0.15872671 -0.49852011 0.85219866\n\t\t 0.15872671 -0.75884295 0.6496473 -0.045564182 -0.78273892 0.62007481 -0.052888621\n\t\t -0.90188313 0.30497116 -0.30582601 -0.78273892 0.62007481 -0.052888621 -0.75884295\n\t\t 0.6496473 -0.045564182 -0.75884295 0.6496473 -0.045564182 -0.90731543 0.32856196\n\t\t -0.26227611 -0.90188313 0.30497116 -0.30582601 -0.78273892 0.62007481 -0.052888621\n\t\t -0.90188313 0.30497116 -0.30582601 -0.87810922 0.29572406 -0.37607962 -0.87810922\n\t\t 0.29572406 -0.37607962 -0.79601449 0.59898657 -0.086581059 -0.78273892 0.62007481\n\t\t -0.052888621 -0.79601449 0.59898657 -0.086581059 -0.87810922 0.29572406 -0.37607962\n\t\t -0.84249407 0.30970153 -0.44071782 -0.84249407 0.30970153 -0.44071782 -0.79537356\n\t\t 0.59343219 -0.12332535 -0.79601449 0.59898657 -0.086581059 -0.79537356 0.59343219\n\t\t -0.12332535 -0.84249407 0.30970153 -0.44071782 -0.80431545 0.34778866 -0.48173469\n\t\t -0.80431545 0.34778866 -0.48173469 -0.782098 0.60631096 -0.1437117 -0.79537356 0.59343219\n\t\t -0.12332535 -0.68092901 0.044831421 -0.73091829 -0.80431545 0.34778866 -0.48173469\n\t\t -0.84249407 0.30970153 -0.44071782 -0.84249407 0.30970153 -0.44071782 -0.7289651\n\t\t -0.015167976 -0.68434703 -0.68092901 0.044831421 -0.73091829 -0.7289651 -0.015167976\n\t\t -0.68434703 -0.84249407 0.30970153 -0.44071782 -0.87810922 0.29572406 -0.37607962\n\t\t -0.87810922 0.29572406 -0.37607962 -0.78829312 -0.053529751 -0.61293375 -0.7289651\n\t\t -0.015167976 -0.68434703 -0.78829312 -0.053529751 -0.61293375 -0.87810922 0.29572406\n\t\t -0.37607962 -0.90188313 0.30497116 -0.30582601 -0.90188313 0.30497116 -0.30582601\n\t\t -0.84780419 -0.065645613 -0.52620012 -0.78829312 -0.053529751 -0.61293375 -0.84780419\n\t\t -0.065645613 -0.52620012 -0.90188313 0.30497116 -0.30582601 -0.90731543 0.32856196\n\t\t -0.26227611 -0.90731543 0.32856196 -0.26227611 -0.88866848 -0.05633748 -0.45500046\n\t\t -0.84780419 -0.065645613 -0.52620012 -0.63414401 -0.40211216 -0.66038996 -0.84780419\n\t\t -0.065645613 -0.52620012 -0.88866848 -0.05633748 -0.45500046 -0.88866848 -0.05633748\n\t\t -0.45500046 -0.7025665 -0.41486886 -0.57814258 -0.63414401 -0.40211216 -0.66038996\n\t\t -0.84780419 -0.065645613 -0.52620012 -0.63414401 -0.40211216 -0.66038996 -0.55928206\n\t\t -0.36597821 -0.74376661 -0.55928206 -0.36597821 -0.74376661 -0.78829312 -0.053529751\n\t\t -0.61293375 -0.84780419 -0.065645613 -0.52620012 -0.78829312 -0.053529751 -0.61293375\n\t\t -0.55928206 -0.36597821 -0.74376661 -0.4992522 -0.31031242 -0.80895412 -0.4992522\n\t\t -0.31031242 -0.80895412 -0.7289651 -0.015167976 -0.68434703 -0.78829312 -0.053529751\n\t\t -0.61293375 -0.7289651 -0.015167976 -0.68434703 -0.4992522 -0.31031242 -0.80895412\n\t\t -0.45908985 -0.24198148 -0.85476243 -0.45908985 -0.24198148 -0.85476243 -0.68092901\n\t\t 0.044831421 -0.73091829 -0.7289651 -0.015167976 -0.68434703 -0.19016068 -0.47999525\n\t\t -0.85637981 -0.45908985 -0.24198148 -0.85476243 -0.4992522 -0.31031242 -0.80895412\n\t\t -0.4992522 -0.31031242 -0.80895412 -0.21784095 -0.53810251 -0.81423378 -0.19016068\n\t\t -0.47999525 -0.85637981 -0.21784095 -0.53810251 -0.81423378 -0.4992522 -0.31031242\n\t\t -0.80895412 -0.55928206 -0.36597821 -0.74376661 -0.55928206 -0.36597821 -0.74376661\n\t\t -0.26673159 -0.59343255 -0.75939202 -0.21784095 -0.53810251 -0.81423378 -0.26673159\n\t\t -0.59343255 -0.75939202 -0.55928206 -0.36597821 -0.74376661 -0.63414401 -0.40211216\n\t\t -0.66038996 -0.63414401 -0.40211216 -0.66038996 -0.33719879 -0.64220119 -0.6883449\n\t\t -0.26673159 -0.59343255 -0.75939202 -0.33719879 -0.64220119 -0.6883449 -0.63414401\n\t\t -0.40211216 -0.66038996 -0.7025665 -0.41486886 -0.57814258 -0.7025665 -0.41486886\n\t\t -0.57814258 -0.4156619 -0.67619878 -0.60820329 -0.33719879 -0.64220119 -0.6883449\n\t\t -0.02615412 -0.78267777 -0.62184507 -0.33719879 -0.64220119 -0.6883449 -0.4156619\n\t\t -0.67619878 -0.60820329 -0.4156619 -0.67619878 -0.60820329 -0.1013212 -0.82842505\n\t\t -0.55082852 -0.02615412 -0.78267777 -0.62184507 -0.33719879 -0.64220119 -0.6883449\n\t\t -0.02615412 -0.78267777 -0.62184507 0.035004959 -0.73595393 -0.67610699 0.035004959\n\t\t -0.73595393 -0.67610699 -0.26673159 -0.59343255 -0.75939202 -0.33719879 -0.64220119\n\t\t -0.6883449 -0.26673159 -0.59343255 -0.75939202 0.035004959 -0.73595393 -0.67610699\n\t\t 0.075594567 -0.6948455 -0.71514016 0.075594567 -0.6948455 -0.71514016 -0.21784095\n\t\t -0.53810251 -0.81423378 -0.26673159 -0.59343255 -0.75939202 -0.21784095 -0.53810251\n\t\t -0.81423378 0.075594567 -0.6948455 -0.71514016 0.096530244 -0.6583758 -0.74645215\n\t\t 0.096530244 -0.6583758 -0.74645215 -0.19016068 -0.47999525 -0.85637981 -0.21784095\n\t\t -0.53810251 -0.81423378 0.38013878 -0.75902581 -0.52851951 0.096530244 -0.6583758\n\t\t -0.74645215 0.075594567 -0.6948455 -0.71514016 0.075594567 -0.6948455 -0.71514016\n\t\t 0.36286533 -0.77452922 -0.51805162 0.38013878 -0.75902581 -0.52851951 0.36286533\n\t\t -0.77452922 -0.51805162 0.075594567 -0.6948455 -0.71514016 0.035004959 -0.73595393\n\t\t -0.67610699 0.035004959 -0.73595393 -0.67610699 0.32679245 -0.79937124 -0.50413519\n\t\t 0.36286533 -0.77452922 -0.51805162 0.32679245 -0.79937124 -0.50413519 0.035004959\n\t\t -0.73595393 -0.67610699 -0.02615412 -0.78267777 -0.62184507 -0.02615412 -0.78267777\n\t\t -0.62184507 0.27362922 -0.83715326 -0.47352514 0.32679245 -0.79937124 -0.50413519\n\t\t 0.27362922 -0.83715326 -0.47352514 -0.02615412 -0.78267777 -0.62184507 -0.1013212\n\t\t -0.82842505 -0.55082852 -0.1013212 -0.82842505 -0.55082852 0.20789236 -0.88454849\n\t\t -0.41749316 0.27362922 -0.83715326 -0.47352514 0.55427742 -0.7951901 -0.24576549\n\t\t 0.27362922 -0.83715326 -0.47352514 0.20789236 -0.88454849 -0.41749316 0.20789236\n\t\t -0.88454849 -0.41749316 0.50340307 -0.83742774 -0.21268344 0.55427742 -0.7951901\n\t\t -0.24576549;\n\tsetAttr \".n[45816:45981]\" -type \"float3\"  0.59459233 -0.76561767 -0.24546032 0.32679245\n\t\t -0.79937124 -0.50413519 0.27362922 -0.83715326 -0.47352514 0.27362922 -0.83715326\n\t\t -0.47352514 0.55427742 -0.7951901 -0.24576549 0.59459233 -0.76561767 -0.24546032\n\t\t 0.61912924 -0.75124347 -0.22858357 0.36286533 -0.77452922 -0.51805162 0.32679245\n\t\t -0.79937124 -0.50413519 0.32679245 -0.79937124 -0.50413519 0.59459233 -0.76561767\n\t\t -0.24546032 0.61912924 -0.75124347 -0.22858357 0.62550759 -0.74990064 -0.21530803\n\t\t 0.38013878 -0.75902581 -0.52851951 0.36286533 -0.77452922 -0.51805162 0.36286533\n\t\t -0.77452922 -0.51805162 0.61912924 -0.75124347 -0.22858357 0.62550759 -0.74990064\n\t\t -0.21530803 0.78170127 -0.62202799 0.044648625 0.88879067 -0.31516436 0.33268231\n\t\t 0.86968607 -0.30747369 0.38605917 0.86968607 -0.30747369 0.38605917 0.7963807 -0.59990209\n\t\t 0.076418392 0.78170127 -0.62202799 0.044648625 0.7963807 -0.59990209 0.076418392\n\t\t 0.86968607 -0.30747369 0.38605917 0.83928967 -0.31962004 0.43977174 0.83928967 -0.31962004\n\t\t 0.43977174 0.79525149 -0.59459186 0.11816771 0.7963807 -0.59990209 0.076418392 0.79525149\n\t\t -0.59459186 0.11816771 0.83928967 -0.31962004 0.43977174 0.80629915 -0.35218334 0.47517323\n\t\t 0.70552689 -0.04419053 0.70726645 0.80629915 -0.35218334 0.47517323 0.83928967 -0.31962004\n\t\t 0.43977174 0.83928967 -0.31962004 0.43977174 0.74642169 0.01004087 0.66536456 0.70552689\n\t\t -0.04419053 0.70726645 0.74642169 0.01004087 0.66536456 0.83928967 -0.31962004 0.43977174\n\t\t 0.86968607 -0.30747369 0.38605917 0.86968607 -0.30747369 0.38605917 0.79415268 0.045686498\n\t\t 0.60597551 0.74642169 0.01004087 0.66536456 0.79415268 0.045686498 0.60597551 0.86968607\n\t\t -0.30747369 0.38605917 0.88879067 -0.31516436 0.33268231 0.88879067 -0.31516436 0.33268231\n\t\t 0.83889282 0.059938654 0.54094058 0.79415268 0.045686498 0.60597551 0.60097039 0.3770259\n\t\t 0.70470291 0.79415268 0.045686498 0.60597551 0.83889282 0.059938654 0.54094058 0.79415268\n\t\t 0.045686498 0.60597551 0.60097039 0.3770259 0.70470291 0.5490889 0.32520548 0.76985991\n\t\t 0.5490889 0.32520548 0.76985991 0.74642169 0.01004087 0.66536456 0.79415268 0.045686498\n\t\t 0.60597551 0.74642169 0.01004087 0.66536456 0.5490889 0.32520548 0.76985991 0.50816363\n\t\t 0.25882769 0.82143623 0.50816363 0.25882769 0.82143623 0.70552689 -0.04419053 0.70726645\n\t\t 0.74642169 0.01004087 0.66536456 0.24723028 0.51551878 0.82039851 0.50816363 0.25882769\n\t\t 0.82143623 0.5490889 0.32520548 0.76985991 0.5490889 0.32520548 0.76985991 0.28546995\n\t\t 0.58131671 0.76192504 0.24723028 0.51551878 0.82039851 0.28546995 0.58131671 0.76192504\n\t\t 0.5490889 0.32520548 0.76985991 0.60097039 0.3770259 0.70470291 0.60097039 0.3770259\n\t\t 0.70470291 0.3357034 0.63637215 0.69444865 0.28546995 0.58131671 0.76192504 -0.015869858\n\t\t 0.75392932 0.65672773 0.28546995 0.58131671 0.76192504 0.3357034 0.63637215 0.69444865\n\t\t 0.3357034 0.63637215 0.69444865 0.031128632 0.80166024 0.59694201 -0.015869858 0.75392932\n\t\t 0.65672773 0.031128632 0.80166024 0.59694201 0.3357034 0.63637215 0.69444865 0.39265093\n\t\t 0.67729747 0.62211978 0.39265093 0.67729747 0.62211978 0.085970379 0.84157848 0.53318882\n\t\t 0.031128632 0.80166024 0.59694201 0.085970379 0.84157848 0.53318882 0.39265093 0.67729747\n\t\t 0.62211978 0.44499019 0.70342129 0.55418557 0.44499019 0.70342129 0.55418557 0.13953036\n\t\t 0.87224966 0.46870321 0.085970379 0.84157848 0.53318882 0.28546995 0.58131671 0.76192504\n\t\t -0.015869858 0.75392932 0.65672773 -0.049836941 0.69975895 0.71260715 -0.049836941\n\t\t 0.69975895 0.71260715 0.24723028 0.51551878 0.82039851 0.28546995 0.58131671 0.76192504\n\t\t -0.35224488 0.78859824 0.5039826 -0.049836941 0.69975895 0.71260715 -0.015869858\n\t\t 0.75392932 0.65672773 -0.015869858 0.75392932 0.65672773 -0.32587692 0.82345039 0.46440011\n\t\t -0.35224488 0.78859824 0.5039826 -0.32587692 0.82345039 0.46440011 -0.015869858 0.75392932\n\t\t 0.65672773 0.031128632 0.80166024 0.59694201 0.031128632 0.80166024 0.59694201 -0.28489056\n\t\t 0.85839409 0.42655715 -0.32587692 0.82345039 0.46440011 -0.28489056 0.85839409 0.42655715\n\t\t 0.031128632 0.80166024 0.59694201 0.085970379 0.84157848 0.53318882 0.085970379 0.84157848\n\t\t 0.53318882 -0.23517592 0.89281893 0.38410589 -0.28489056 0.85839409 0.42655715 -0.23517592\n\t\t 0.89281893 0.38410589 0.085970379 0.84157848 0.53318882 0.13953036 0.87224966 0.46870321\n\t\t 0.13953036 0.87224966 0.46870321 -0.18460675 0.92452765 0.33335361 -0.23517592 0.89281893\n\t\t 0.38410589 -0.01562525 -0.73625898 0.67650384 -0.10638731 -0.72725606 0.67802978\n\t\t -0.079469979 -0.7227698 0.68648338 -0.079469979 -0.7227698 0.68648338 2.2752522e-07\n\t\t -0.73583174 0.67714477 -0.01562525 -0.73625898 0.67650384 2.5734479e-07 -0.83227021\n\t\t 0.55433828 -0.01562525 -0.73625898 0.67650384 2.2752522e-07 -0.73583174 0.67714477\n\t\t 2.2752522e-07 -0.73583174 0.67714477 -0.090975419 -0.84173095 0.53212076 2.5734479e-07\n\t\t -0.83227021 0.55433828 2.9512884e-07 -0.9544664 0.29825744 2.5734479e-07 -0.83227021\n\t\t 0.55433828 -0.090975419 -0.84173095 0.53212076 -0.090975419 -0.84173095 0.53212076\n\t\t -0.20035373 -0.92773223 0.31482899 2.9512884e-07 -0.9544664 0.29825744 2.9733701e-07\n\t\t -0.96160769 0.2744225 2.9512884e-07 -0.9544664 0.29825744 -0.20035373 -0.92773223\n\t\t 0.31482899 -0.20035373 -0.92773223 0.31482899 -0.099215373 -0.9602955 0.26071969\n\t\t 2.9733701e-07 -0.96160769 0.2744225 2.8723989e-07 -0.92895293 0.37015906 2.9733701e-07\n\t\t -0.96160769 0.2744225 -0.099215373 -0.9602955 0.26071969 -0.099215373 -0.9602955\n\t\t 0.26071969 2.9306224e-07 -0.94778281 0.31882691 2.8723989e-07 -0.92895293 0.37015906\n\t\t 2.9869588e-07 -0.9660024 0.25849184 2.8723989e-07 -0.92895293 0.37015906 2.9306224e-07\n\t\t -0.94778281 0.31882691 2.9306224e-07 -0.94778281 0.31882691 2.9869588e-07 -0.9660024\n\t\t 0.25849184 2.9869588e-07 -0.9660024 0.25849184 1.373965e-07 -0.44434944 0.89584041\n\t\t 1.373965e-07 -0.44434944 0.89584041 1.373965e-07 -0.44434944 0.89584041 1.373965e-07\n\t\t -0.44434944 0.89584041;\n\tsetAttr \".n[45982:46147]\" -type \"float3\"  1.373965e-07 -0.44434944 0.89584041 1.373965e-07\n\t\t -0.44434944 0.89584041 -0.62446958 -0.48847938 0.60942417 -0.62446958 -0.48847938\n\t\t 0.60942417 -0.62446958 -0.48847938 0.60942417 -0.81499678 -0.069704488 0.57521284\n\t\t -0.82049012 0.034973998 0.57054353 -0.81426436 0.081575766 0.57469404 -2.3132244e-14\n\t\t 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08\n\t\t 0.99996948 -0.0072936146 -0.99963379 0.025147326 -0.015960872 -0.99954224 0.025360957\n\t\t 3.0910442e-07 -0.99966431 0.024964215 3.0910442e-07 -0.99966431 0.024964215 3.0910442e-07\n\t\t -0.99966431 0.024964215 -0.0072936146 -0.99963379 0.025147326 1.6995267e-07 -0.54963827\n\t\t 0.83538324 1.6995267e-07 -0.54963827 0.83538324 1.6995267e-07 -0.54963827 0.83538324\n\t\t -0.099215373 -0.9602955 0.26071969 -0.20035373 -0.92773223 0.31482899 -0.35810393\n\t\t -0.90118116 0.24417867 1.6995267e-07 -0.54963827 0.83538324 1.6995267e-07 -0.54963827\n\t\t 0.83538324 1.6995267e-07 -0.54963827 0.83538324 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14\n\t\t 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08\n\t\t 0.99996948 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 3.0899119e-07\n\t\t -0.9992981 0.037202138 3.0899119e-07 -0.9992981 0.037202138 3.0899119e-07 -0.9992981\n\t\t 0.037202138 3.0899119e-07 -0.9992981 0.037202138 3.0899119e-07 -0.9992981 0.037202138\n\t\t 3.0899119e-07 -0.9992981 0.037202138 -0.076296203 -0.21472819 0.9736625 -0.2014527\n\t\t 0.053254809 0.97802669 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 7.0557242e-08 -0.22818682 0.97360146 -0.076296203 -0.21472819 0.9736625 -0.076296203\n\t\t -0.21472819 0.9736625 7.0557242e-08 -0.22818682 0.97360146 1.373965e-07 -0.44434944\n\t\t 0.89584041 1.373965e-07 -0.44434944 0.89584041 1.373965e-07 -0.44434944 0.89584041\n\t\t -0.076296203 -0.21472819 0.9736625 1.373965e-07 -0.44434944 0.89584041 -0.076296203\n\t\t -0.21472819 0.9736625 1.373965e-07 -0.44434944 0.89584041 1.373965e-07 -0.44434944\n\t\t 0.89584041 1.373965e-07 -0.44434944 0.89584041 1.373965e-07 -0.44434944 0.89584041\n\t\t 2.9869588e-07 -0.9660024 0.25849184 2.9869588e-07 -0.9660024 0.25849184 2.9306224e-07\n\t\t -0.94778281 0.31882691 -0.36741236 0.097170889 0.92495501 -0.2014527 0.053254809\n\t\t 0.97802669 -0.076296203 -0.21472819 0.9736625 -0.45329121 -0.71752071 0.52882481\n\t\t -0.45329121 -0.71752071 0.52882481 -0.45329121 -0.71752071 0.52882481 3.0899119e-07\n\t\t -0.9992981 0.037202138 3.0899119e-07 -0.9992981 0.037202138 3.0899119e-07 -0.9992981\n\t\t 0.037202138 -0.67152911 -0.5338909 0.51377916 -0.70079643 -0.40629309 0.58632165\n\t\t -0.70448917 -0.38160363 0.59834588 -0.70079643 -0.40629309 0.58632165 -0.67152911\n\t\t -0.5338909 0.51377916 -0.66499811 -0.55455196 0.50019842 -0.026276127 -0.9992981\n\t\t 0.025635622 -0.015960872 -0.99954224 0.025360957 -0.0072936146 -0.99963379 0.025147326\n\t\t 1.373965e-07 -0.44434944 0.89584041 7.0557242e-08 -0.22818682 0.97360146 0.076296337\n\t\t -0.21472813 0.9736625 0.076296337 -0.21472813 0.9736625 7.0557242e-08 -0.22818682\n\t\t 0.97360146 -2.3132951e-14 7.441745e-08 1 0.076296337 -0.21472813 0.9736625 1.373965e-07\n\t\t -0.44434944 0.89584041 1.373965e-07 -0.44434944 0.89584041 -2.3132951e-14 7.441745e-08\n\t\t 1 0.20145267 0.053285453 0.97802669 0.076296337 -0.21472813 0.9736625 3.0899119e-07\n\t\t -0.9992981 0.037202138 3.0899119e-07 -0.9992981 0.037202138 3.0899119e-07 -0.9992981\n\t\t 0.037202138 3.0899119e-07 -0.9992981 0.037202138 3.0899119e-07 -0.9992981 0.037202138\n\t\t 3.0899119e-07 -0.9992981 0.037202138 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14\n\t\t 7.4415176e-08 0.99996948 -2.3132951e-14 7.441745e-08 1 1.6995267e-07 -0.54963827\n\t\t 0.83538324 1.6995267e-07 -0.54963827 0.83538324 1.6995267e-07 -0.54963827 0.83538324\n\t\t 1.6995267e-07 -0.54963827 0.83538324 1.6995267e-07 -0.54963827 0.83538324 1.6995267e-07\n\t\t -0.54963827 0.83538324 0.007294233 -0.99963379 0.025147326 3.0910442e-07 -0.99966431\n\t\t 0.024964215 3.0910442e-07 -0.99966431 0.024964215 3.0910442e-07 -0.99966431 0.024964215\n\t\t 0.015961491 -0.99954224 0.025360957 0.007294233 -0.99963379 0.025147326 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 0.81426436\n\t\t 0.081576273 0.57469404 0.82049012 0.035005026 0.57054353 0.81499678 -0.069703981\n\t\t 0.57521284 0.62446994 -0.48847902 0.60942417 0.62446994 -0.48847902 0.60942417 0.62446994\n\t\t -0.48847902 0.60942417 0.007294233 -0.99963379 0.025147326 0.015961491 -0.99954224\n\t\t 0.025360957 0.026276745 -0.9992981 0.025635622 0.015625704 -0.73625898 0.67650384\n\t\t 2.2752522e-07 -0.73583174 0.67714477 0.079470426 -0.7227698 0.68648338 0.079470426\n\t\t -0.7227698 0.68648338 0.10638776 -0.72725594 0.67802978 0.015625704 -0.73625898 0.67650384\n\t\t 2.2752522e-07 -0.73583174 0.67714477 0.015625704 -0.73625898 0.67650384 2.5734479e-07\n\t\t -0.83227021 0.55433828 2.5734479e-07 -0.83227021 0.55433828 0.09097594 -0.84173095\n\t\t 0.53212076 2.2752522e-07 -0.73583174 0.67714477 0.66499847 -0.5545516 0.50019842\n\t\t 0.67152947 -0.53389055 0.51377916 0.70079666 -0.40629268 0.58632165 0.70448941 -0.38160321\n\t\t 0.59834588 0.70079666 -0.40629268 0.58632165 0.67152947 -0.53389055 0.51377916 0.09097594\n\t\t -0.84173095 0.53212076 2.5734479e-07 -0.83227021 0.55433828 2.9512884e-07 -0.9544664\n\t\t 0.29825744 2.9512884e-07 -0.9544664 0.29825744 0.20035429 -0.92773211 0.31482899\n\t\t 0.09097594 -0.84173095 0.53212076 0.09097594 -0.84173095 0.53212076 0.20035429 -0.92773211\n\t\t 0.31482899 0.35810447 -0.90118092 0.24417867 0.20035429 -0.92773211 0.31482899 2.9512884e-07\n\t\t -0.9544664 0.29825744 2.9733701e-07 -0.96160769 0.2744225 2.9733701e-07 -0.96160769\n\t\t 0.2744225 0.099215969 -0.96029538 0.26071969;\n\tsetAttr \".n[46148:46313]\" -type \"float3\"  0.20035429 -0.92773211 0.31482899 0.099215969\n\t\t -0.96029538 0.26071969 2.9733701e-07 -0.96160769 0.2744225 2.8723989e-07 -0.92895293\n\t\t 0.37015906 2.8723989e-07 -0.92895293 0.37015906 2.9306224e-07 -0.94778281 0.31882691\n\t\t 0.099215969 -0.96029538 0.26071969 2.9306224e-07 -0.94778281 0.31882691 2.8723989e-07\n\t\t -0.92895293 0.37015906 2.9869588e-07 -0.9660024 0.25849184 2.9869588e-07 -0.9660024\n\t\t 0.25849184 2.9869588e-07 -0.9660024 0.25849184 2.9306224e-07 -0.94778281 0.31882691\n\t\t 1.373965e-07 -0.44434944 0.89584041 1.373965e-07 -0.44434944 0.89584041 1.373965e-07\n\t\t -0.44434944 0.89584041 1.373965e-07 -0.44434944 0.89584041 1.373965e-07 -0.44434944\n\t\t 0.89584041 1.373965e-07 -0.44434944 0.89584041 0.35810447 -0.90118092 0.24417867\n\t\t 0.20035429 -0.92773211 0.31482899 0.099215969 -0.96029538 0.26071969 -2.3132951e-14\n\t\t 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132244e-14 7.4415176e-08 0.99996948\n\t\t 1.373965e-07 -0.44434944 0.89584041 1.373965e-07 -0.44434944 0.89584041 1.373965e-07\n\t\t -0.44434944 0.89584041 1.373965e-07 -0.44434944 0.89584041 0.076296337 -0.21472813\n\t\t 0.9736625 1.373965e-07 -0.44434944 0.89584041 2.9306224e-07 -0.94778281 0.31882691\n\t\t 2.9869588e-07 -0.9660024 0.25849184 2.9869588e-07 -0.9660024 0.25849184 0.076296337\n\t\t -0.21472813 0.9736625 0.20145267 0.053285453 0.97802669 0.3674123 0.097171113 0.92495501\n\t\t 3.0899119e-07 -0.9992981 0.037202138 3.0899119e-07 -0.9992981 0.037202138 3.0899119e-07\n\t\t -0.9992981 0.037202138 0.45329162 -0.71752048 0.52879429 0.45329162 -0.71752048 0.52879429\n\t\t 0.45329162 -0.71752048 0.52879429 2.6632841e-07 -0.86132383 0.50801116 2.6632841e-07\n\t\t -0.86132383 0.50801116 0.056490045 -0.91772211 0.39317003 0.059786063 -0.97253335\n\t\t 0.22486044 2.6632841e-07 -0.86132383 0.50801116 0.056490045 -0.91772211 0.39317003\n\t\t 0.056490045 -0.91772211 0.39317003 -0.0070494693 -0.9909665 0.13382374 0.059786063\n\t\t -0.97253335 0.22486044 -0.013031102 -0.97811824 0.20755646 0.059786063 -0.97253335\n\t\t 0.22486044 -0.0070494693 -0.9909665 0.13382374 -0.0070494693 -0.9909665 0.13382374\n\t\t -0.005798209 -0.99609363 0.087771311 -0.013031102 -0.97811824 0.20755646 0.012696004\n\t\t -0.98226875 0.1870175 -0.013031102 -0.97811824 0.20755646 -0.005798209 -0.99609363\n\t\t 0.087771311 -0.005798209 -0.99609363 0.087771311 0.063875549 -0.99200416 0.10876805\n\t\t 0.012696004 -0.98226875 0.1870175 3.0446162e-07 -0.98464918 0.17441335 0.012696004\n\t\t -0.98226875 0.1870175 0.063875549 -0.99200416 0.10876805 -0.37571314 -0.79821169\n\t\t 0.4708091 -0.29807401 -0.82216871 0.48493919 -0.12701777 -0.85433513 0.50392169 -0.12701777\n\t\t -0.85433513 0.50392169 -0.29807401 -0.82216871 0.48493919 2.6632841e-07 -0.86132383\n\t\t 0.50801116 0.10757805 -0.99267548 -0.054780651 0.063875549 -0.99200416 0.10876805\n\t\t -0.005798209 -0.99609363 0.087771311 -0.005798209 -0.99609363 0.087771311 3.0918935e-07\n\t\t -0.99993896 -0.010406737 0.10757805 -0.99267548 -0.054780651 -0.005798209 -0.99609363\n\t\t 0.087771311 -0.0070494693 -0.9909665 0.13382374 -0.10757744 -0.9926756 -0.054780651\n\t\t -0.10757744 -0.9926756 -0.054780651 3.0918935e-07 -0.99993896 -0.010406737 -0.005798209\n\t\t -0.99609363 0.087771311 0.13711998 -0.99035609 -0.019440215 0.10757805 -0.99267548\n\t\t -0.054780651 3.0918935e-07 -0.99993896 -0.010406737 3.0918935e-07 -0.99993896 -0.010406737\n\t\t 3.0920822e-07 -1 7.441745e-08 0.13711998 -0.99035609 -0.019440215 -0.13711935 -0.99035621\n\t\t -0.019440215 3.0920822e-07 -1 7.441745e-08 3.0918935e-07 -0.99993896 -0.010406737\n\t\t 3.0918935e-07 -0.99993896 -0.010406737 -0.10757744 -0.9926756 -0.054780651 -0.13711935\n\t\t -0.99035621 -0.019440215 -0.35810393 -0.90118116 0.24417867 -0.20035373 -0.92773223\n\t\t 0.31482899 -0.090975419 -0.84173095 0.53212076 -0.038117565 -0.17096463 0.98452711\n\t\t 0.026398579 -0.22077081 0.97494429 -0.080690913 -0.071962595 0.99410993 -0.080690913\n\t\t -0.071962595 0.99410993 -0.1550035 -0.0013122704 0.98788416 -0.038117565 -0.17096463\n\t\t 0.98452711 -0.82049012 0.034973998 0.57054353 -0.81499678 -0.069704488 0.57521284\n\t\t -0.81548512 -0.080477521 0.57313758 -0.81548512 -0.080477521 0.57313758 -0.82613605\n\t\t -0.0031741385 0.56343269 -0.82049012 0.034973998 0.57054353 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08\n\t\t 1 -2.3132951e-14 7.441745e-08 1 -2.3132951e-14 7.441745e-08 1 0.82049012 0.035005026\n\t\t 0.57054353 0.82613605 -0.0031736277 0.56343269 0.81548512 -0.080477014 0.57313758\n\t\t 0.81548512 -0.080477014 0.57313758 0.81499678 -0.069703981 0.57521284 0.82049012\n\t\t 0.035005026 0.57054353 0.080690958 -0.07196255 0.99410993 -0.026398441 -0.22077084\n\t\t 0.97494429 0.03811767 -0.1709646 0.98452711 0.03811767 -0.1709646 0.98452711 0.1550035\n\t\t -0.0013121745 0.98788416 0.080690958 -0.07196255 0.99410993 0.026398579 -0.22077081\n\t\t 0.97494429 -0.038117565 -0.17096463 0.98452711 8.1767894e-08 -0.26444283 0.96438491\n\t\t 8.1767894e-08 -0.26444283 0.96438491 0.055391178 -0.26349673 0.96304208 0.026398579\n\t\t -0.22077081 0.97494429 2.9764843e-07 -0.96261483 0.2708213 -0.11371167 -0.95367295\n\t\t 0.27845094 -0.12100559 -0.98910493 0.083529234 0.026398579 -0.22077081 0.97494429\n\t\t 0.055391178 -0.26349673 0.96304208 0.10425131 -0.26197079 0.95941037 -0.12100559\n\t\t -0.98910493 0.083529234 -0.11371167 -0.95367295 0.27845094 -0.37974155 -0.88805825\n\t\t 0.25901064 -0.12100559 -0.98910493 0.083529234 3.0846275e-07 -0.99758905 0.069155015\n\t\t 2.9764843e-07 -0.96261483 0.2708213 8.1767894e-08 -0.26444283 0.96438491 0.03811767\n\t\t -0.1709646 0.98452711 -0.026398441 -0.22077084 0.97494429 -0.026398441 -0.22077084\n\t\t 0.97494429 -0.055391014 -0.26349679 0.96304208 8.1767894e-08 -0.26444283 0.96438491\n\t\t 2.9764843e-07 -0.96261483 0.2708213 3.0846275e-07 -0.99758905 0.069155015 0.09750694\n\t\t -0.9914853 0.086001232 0.09750694 -0.9914853 0.086001232 0.11371227 -0.95367283 0.27845094\n\t\t 2.9764843e-07 -0.96261483 0.2708213;\n\tsetAttr \".n[46314:46355]\" -type \"float3\"  0.37974209 -0.88805801 0.25901064 0.11371227\n\t\t -0.95367283 0.27845094 0.09750694 -0.9914853 0.086001232 -0.10425115 -0.26197085\n\t\t 0.95941037 -0.055391014 -0.26349679 0.96304208 -0.026398441 -0.22077084 0.97494429\n\t\t 0.016602317 -0.80181277 0.59730834 0.014710169 -0.80181277 0.59733886 0.032044683\n\t\t -0.80166012 0.59688109 0.09750694 -0.9914853 0.086001232 0.040650964 -0.99557483\n\t\t -0.08459723 0.080630206 -0.99246192 -0.092074268 0.040650964 -0.99557483 -0.08459723\n\t\t 0.09750694 -0.9914853 0.086001232 3.0846275e-07 -0.99758905 0.069155015 0.17697707\n\t\t -0.78731638 0.59056371 2.4790822e-07 -0.80175167 0.59761351 2.4790822e-07 -0.80175167\n\t\t 0.59761351 2.4790822e-07 -0.80175167 0.59761351 0.27930564 -0.7670216 0.57759339\n\t\t 0.17697707 -0.78731638 0.59056371 3.0846275e-07 -0.99758905 0.069155015 -0.12100559\n\t\t -0.98910493 0.083529234 -0.063905455 -0.99435407 -0.084353089 -0.063905455 -0.99435407\n\t\t -0.084353089 -0.12100559 -0.98910493 0.083529234 -0.16278543 -0.9824214 -0.091280788\n\t\t 0.17697707 -0.78731638 0.59056371 0.27930564 -0.7670216 0.57759339 0.46800154 -0.70375663\n\t\t 0.53444022 -0.063905455 -0.99435407 -0.084353089 3.0846275e-07 -0.99758905 -0.069063313\n\t\t 3.0846275e-07 -0.99758905 0.069155015 3.0846275e-07 -0.99758905 0.069155015 3.0846275e-07\n\t\t -0.99758905 -0.069063313 0.040650964 -0.99557483 -0.08459723 0.014710169 -0.80181277\n\t\t 0.59733886 0.016602317 -0.80181277 0.59730834 2.4790822e-07 -0.80175167 0.59761351\n\t\t 2.4790822e-07 -0.80175167 0.59761351 2.4790822e-07 -0.80175167 0.59761351 0.014710169\n\t\t -0.80181277 0.59733886;\n\tsetAttr -s 15452 -ch 46356 \".fc\";\n\tsetAttr \".fc[0:499]\" -type \"polyFaces\" \n\t\tf 3 0 1 2\n\t\tmu 0 3 3656 826 5143\n\t\tf 3 3 4 -3\n\t\tmu 0 3 5143 88 3656\n\t\tf 3 -4 5 6\n\t\tmu 0 3 88 5143 3657\n\t\tf 3 7 8 -7\n\t\tmu 0 3 3657 3253 88\n\t\tf 3 9 -8 10\n\t\tmu 0 3 1568 3253 3657\n\t\tf 3 11 12 -11\n\t\tmu 0 3 3657 427 1568\n\t\tf 3 -13 13 14\n\t\tmu 0 3 1568 427 2468\n\t\tf 3 15 16 -15\n\t\tmu 0 3 2468 3898 1568\n\t\tf 3 17 -16 18\n\t\tmu 0 3 4029 3898 2468\n\t\tf 3 19 20 -19\n\t\tmu 0 3 2468 3116 4029\n\t\tf 3 21 -5 22\n\t\tmu 0 3 1696 3656 88\n\t\tf 3 23 24 25\n\t\tmu 0 3 6553 6554 2919\n\t\tf 3 26 27 -26\n\t\tmu 0 3 2919 374 6555\n\t\tf 3 28 -25 29\n\t\tmu 0 3 1938 2919 6556\n\t\tf 3 30 31 -30\n\t\tmu 0 3 6557 6301 1938\n\t\tf 3 -29 32 33\n\t\tmu 0 3 2919 1938 5239\n\t\tf 3 34 35 -34\n\t\tmu 0 3 5239 4809 2919\n\t\tf 3 -27 -36 36\n\t\tmu 0 3 374 2919 4809\n\t\tf 3 37 38 -37\n\t\tmu 0 3 4809 431 374\n\t\tf 3 39 -32 40\n\t\tmu 0 3 6475 1938 6301\n\t\tf 3 -33 -40 41\n\t\tmu 0 3 5239 1938 6475\n\t\tf 3 42 43 -41\n\t\tmu 0 3 6301 2318 6475\n\t\tf 3 44 45 -42\n\t\tmu 0 3 6475 3458 5239\n\t\tf 3 46 47 48\n\t\tmu 0 3 6558 1696 3077\n\t\tf 3 49 50 -49\n\t\tmu 0 3 3077 2441 6559\n\t\tf 3 51 -51 52\n\t\tmu 0 3 6560 6561 2441\n\t\tf 3 53 -48 -23\n\t\tmu 0 3 88 3077 1696\n\t\tf 3 54 55 56\n\t\tmu 0 3 6562 6563 373\n\t\tf 3 57 58 -57\n\t\tmu 0 3 373 1007 6564\n\t\tf 3 59 -9 60\n\t\tmu 0 3 6565 88 3253\n\t\tf 3 61 -56 -61\n\t\tmu 0 3 3253 373 6566\n\t\tf 3 -62 -10 62\n\t\tmu 0 3 373 3253 1568\n\t\tf 3 63 64 -63\n\t\tmu 0 3 1568 6480 373\n\t\tf 3 -58 -65 65\n\t\tmu 0 3 1007 373 6480\n\t\tf 3 66 67 -66\n\t\tmu 0 3 6480 665 1007\n\t\tf 3 -67 68 69\n\t\tmu 0 3 665 6480 4951\n\t\tf 3 70 71 -70\n\t\tmu 0 3 4951 6288 665\n\t\tf 3 -64 -17 72\n\t\tmu 0 3 6480 1568 3898\n\t\tf 3 73 -69 -73\n\t\tmu 0 3 3898 4951 6480\n\t\tf 3 -74 -18 74\n\t\tmu 0 3 4951 3898 4029\n\t\tf 3 75 76 -75\n\t\tmu 0 3 4029 4402 4951\n\t\tf 3 -71 -77 77\n\t\tmu 0 3 6288 4951 4402\n\t\tf 3 78 79 -78\n\t\tmu 0 3 4402 827 6288\n\t\tf 3 80 -59 81\n\t\tmu 0 3 309 6567 1007\n\t\tf 3 82 83 -53\n\t\tmu 0 3 2441 6568 6569\n\t\tf 3 84 -84 85\n\t\tmu 0 3 5013 6570 6571\n\t\tf 3 86 87 -86\n\t\tmu 0 3 6572 5 5013\n\t\tf 3 88 -88 89\n\t\tmu 0 3 5014 5013 5\n\t\tf 3 90 91 -90\n\t\tmu 0 3 5 488 5014\n\t\tf 3 92 93 94\n\t\tmu 0 3 6573 6574 3903\n\t\tf 3 95 96 -95\n\t\tmu 0 3 3903 4419 6575\n\t\tf 3 97 -96 98\n\t\tmu 0 3 4549 4419 3903\n\t\tf 3 99 100 -99\n\t\tmu 0 3 3903 6463 4549\n\t\tf 3 -101 101 102\n\t\tmu 0 3 4549 6463 1686\n\t\tf 3 103 104 -103\n\t\tmu 0 3 1686 3412 4549\n\t\tf 3 105 -104 106\n\t\tmu 0 3 5246 3412 1686\n\t\tf 3 107 108 -107\n\t\tmu 0 3 1686 3455 5246\n\t\tf 3 109 -92 110\n\t\tmu 0 3 2436 5014 488\n\t\tf 3 111 112 113\n\t\tmu 0 3 6576 6577 191\n\t\tf 3 114 115 -114\n\t\tmu 0 3 191 5645 6578\n\t\tf 3 116 -116 117\n\t\tmu 0 3 6579 6580 5645\n\t\tf 3 118 -115 119\n\t\tmu 0 3 4056 5645 191\n\t\tf 3 120 121 -120\n\t\tmu 0 3 191 2193 4056\n\t\tf 3 122 123 -111\n\t\tmu 0 3 488 5332 2436\n\t\tf 3 124 -97 125\n\t\tmu 0 3 6581 6582 4419\n\t\tf 3 -124 126 127\n\t\tmu 0 3 2436 5332 2392\n\t\tf 3 128 129 -128\n\t\tmu 0 3 2392 3650 2436\n\t\tf 3 130 131 132\n\t\tmu 0 3 6583 6584 2190\n\t\tf 3 133 -132 -126\n\t\tmu 0 3 4419 2190 6585\n\t\tf 3 134 135 -133\n\t\tmu 0 3 2190 4204 6586\n\t\tf 3 136 -135 137\n\t\tmu 0 3 704 4204 2190\n\t\tf 3 138 139 -138\n\t\tmu 0 3 2190 5184 704\n\t\tf 3 -140 140 141\n\t\tmu 0 3 704 5184 2836\n\t\tf 3 142 -141 143\n\t\tmu 0 3 3412 2836 5184\n\t\tf 3 144 145 -142\n\t\tmu 0 3 2836 3852 704\n\t\tf 3 146 -145 147\n\t\tmu 0 3 5948 3852 2836\n\t\tf 3 148 149 -148\n\t\tmu 0 3 2836 233 5948\n\t\tf 3 -139 -134 150\n\t\tmu 0 3 5184 2190 4419\n\t\tf 3 -98 151 -151\n\t\tmu 0 3 4419 4549 5184\n\t\tf 3 -152 -105 -144\n\t\tmu 0 3 5184 4549 3412\n\t\tf 3 -149 -143 152\n\t\tmu 0 3 233 2836 3412\n\t\tf 3 -106 153 -153\n\t\tmu 0 3 3412 5246 233\n\t\tf 3 154 155 156\n\t\tmu 0 3 2 2193 3855\n\t\tf 3 157 158 -157\n\t\tmu 0 3 3855 122 2\n\t\tf 3 -159 159 160\n\t\tmu 0 3 2 122 1692\n\t\tf 3 161 162 -161\n\t\tmu 0 3 1692 5393 2\n\t\tf 3 163 -163 164\n\t\tmu 0 3 3733 2 5393\n\t\tf 3 165 166 -165\n\t\tmu 0 3 5393 3977 3733\n\t\tf 3 167 -167 168\n\t\tmu 0 3 6099 3733 3977\n\t\tf 3 169 170 -169\n\t\tmu 0 3 3977 616 6099\n\t\tf 3 -171 171 172\n\t\tmu 0 3 6099 616 3040\n\t\tf 3 173 174 -173\n\t\tmu 0 3 3040 6501 6099\n\t\tf 3 175 -175 176\n\t\tmu 0 3 5394 6099 6501\n\t\tf 3 177 178 -177\n\t\tmu 0 3 6501 3458 5394\n\t\tf 3 -174 179 180\n\t\tmu 0 3 6501 3040 5475\n\t\tf 3 -178 -181 181\n\t\tmu 0 3 3458 6501 5475\n\t\tf 3 -176 182 183\n\t\tmu 0 3 6099 5394 4056\n\t\tf 3 184 -168 -184\n\t\tmu 0 3 4056 3733 6099\n\t\tf 3 -122 -155 185\n\t\tmu 0 3 4056 2193 2\n\t\tf 3 -164 -185 -186\n\t\tmu 0 3 2 3733 4056\n\t\tf 3 -156 -121 186\n\t\tmu 0 3 3855 2193 191\n\t\tf 3 187 188 -187\n\t\tmu 0 3 191 6502 3855\n\t\tf 3 -188 -113 189\n\t\tmu 0 3 6502 191 6587\n\t\tf 3 190 191 -190\n\t\tmu 0 3 6588 6589 6502\n\t\tf 3 -183 192 193\n\t\tmu 0 3 4056 5394 1710\n\t\tf 3 194 -119 -194\n\t\tmu 0 3 1710 5645 4056\n\t\tf 3 -195 195 -118\n\t\tmu 0 3 5645 1710 6590\n\t\tf 3 196 -196 197\n\t\tmu 0 3 2318 6591 1710\n\t\tf 3 198 -44 -198\n\t\tmu 0 3 1710 6475 2318\n\t\tf 3 -179 -45 199\n\t\tmu 0 3 5394 3458 6475\n\t\tf 3 -199 -193 -200\n\t\tmu 0 3 6475 1710 5394\n\t\tf 3 200 -46 -182\n\t\tmu 0 3 5475 5239 3458\n\t\tf 3 201 202 203\n\t\tmu 0 3 2194 4327 945\n\t\tf 3 204 205 -204\n\t\tmu 0 3 945 4662 2194\n\t\tf 3 206 -205 207\n\t\tmu 0 3 6504 4662 945\n\t\tf 3 208 209 -208\n\t\tmu 0 3 945 1626 6504\n\t\tf 3 -210 210 211\n\t\tmu 0 3 6504 1626 3334\n\t\tf 3 212 213 -212\n\t\tmu 0 3 3334 1073 6504\n\t\tf 3 214 -213 215\n\t\tmu 0 3 2918 1073 3334\n\t\tf 3 216 217 -216\n\t\tmu 0 3 3334 1745 2918\n\t\tf 3 -218 218 219\n\t\tmu 0 3 2918 1745 1946\n\t\tf 3 220 221 -220\n\t\tmu 0 3 1946 5825 2918\n\t\tf 3 222 -221 223\n\t\tmu 0 3 404 5825 1946\n\t\tf 3 224 225 -224\n\t\tmu 0 3 1946 4095 404\n\t\tf 3 -226 226 227\n\t\tmu 0 3 404 4095 5656\n\t\tf 3 228 229 -228\n\t\tmu 0 3 5656 6592 404\n\t\tf 3 230 -206 231\n\t\tmu 0 3 5704 2194 4662\n\t\tf 3 232 233 -232\n\t\tmu 0 3 4662 1661 5704\n\t\tf 3 -207 234 235\n\t\tmu 0 3 4662 6504 932\n\t\tf 3 -235 -214 236\n\t\tmu 0 3 932 6504 1073\n\t\tf 3 237 -233 -236\n\t\tmu 0 3 932 1661 4662\n\t\tf 3 238 239 -237\n\t\tmu 0 3 1073 872 932\n\t\tf 3 -215 240 241\n\t\tmu 0 3 1073 2918 5348\n\t\tf 3 242 -239 -242\n\t\tmu 0 3 5348 872 1073\n\t\tf 3 -241 -222 243\n\t\tmu 0 3 5348 2918 5825\n\t\tf 3 244 245 -244\n\t\tmu 0 3 5825 1785 5348\n\t\tf 3 -223 246 247\n\t\tmu 0 3 5825 404 1709\n\t\tf 3 248 -245 -248\n\t\tmu 0 3 1709 1785 5825\n\t\tf 3 -247 -230 249\n\t\tmu 0 3 1709 404 6593\n\t\tf 3 250 251 -250\n\t\tmu 0 3 6594 6595 1709\n\t\tf 3 252 -234 253\n\t\tmu 0 3 3734 5704 1661\n\t\tf 3 254 255 -254\n\t\tmu 0 3 1661 3940 3734\n\t\tf 3 -255 -238 256\n\t\tmu 0 3 3940 1661 932\n\t\tf 3 257 -256 258\n\t\tmu 0 3 1861 3734 3940\n\t\tf 3 259 260 -259\n\t\tmu 0 3 3940 5608 1861\n\t\tf 3 261 -261 262\n\t\tmu 0 3 5552 1861 5608\n\t\tf 3 263 264 -263\n\t\tmu 0 3 5608 3329 5552\n\t\tf 3 -265 265 266\n\t\tmu 0 3 5552 3329 3922\n\t\tf 3 267 268 -267\n\t\tmu 0 3 3922 168 5552\n\t\tf 3 -264 269 270\n\t\tmu 0 3 3329 5608 5117\n\t\tf 3 271 272 -271\n\t\tmu 0 3 5117 4390 3329\n\t\tf 3 -266 -273 273\n\t\tmu 0 3 3922 3329 4390\n\t\tf 3 274 275 -274\n\t\tmu 0 3 4390 5330 3922\n\t\tf 3 -275 276 277\n\t\tmu 0 3 5330 4390 1838\n\t\tf 3 278 279 -278\n\t\tmu 0 3 1838 2666 5330\n\t\tf 3 -272 280 281\n\t\tmu 0 3 4390 5117 6100\n\t\tf 3 282 -277 -282\n\t\tmu 0 3 6100 1838 4390\n\t\tf 3 -283 283 284\n\t\tmu 0 3 1838 6100 5502\n\t\tf 3 285 286 -285\n\t\tmu 0 3 5502 2176 1838\n\t\tf 3 -279 -287 287\n\t\tmu 0 3 2666 1838 2176\n\t\tf 3 288 289 -288\n\t\tmu 0 3 2176 5721 2666\n\t\tf 3 290 291 292\n\t\tmu 0 3 6596 2176 1978\n\t\tf 3 293 294 -293\n\t\tmu 0 3 1978 3311 6597\n\t\tf 3 -286 295 296\n\t\tmu 0 3 2176 5502 5742\n\t\tf 3 297 -292 -297\n\t\tmu 0 3 5742 1978 2176\n\t\tf 3 -298 298 299\n\t\tmu 0 3 1978 5742 5726\n\t\tf 3 300 301 -300\n\t\tmu 0 3 5726 4285 1978\n\t\tf 3 -302 302 -294\n\t\tmu 0 3 1978 4285 3311\n\t\tf 3 303 304 -303\n\t\tmu 0 3 4285 733 3311\n\t\tf 3 305 306 -305\n\t\tmu 0 3 733 1196 3311\n\t\tf 3 307 -281 308\n\t\tmu 0 3 1680 6100 5117\n\t\tf 3 309 310 -309\n\t\tmu 0 3 5117 5985 1680\n\t\tf 3 -310 -270 311\n\t\tmu 0 3 5985 5117 5608\n\t\tf 3 -260 312 -312\n\t\tmu 0 3 5608 3940 5985\n\t\tf 3 313 -313 -257\n\t\tmu 0 3 932 5985 3940\n\t\tf 3 -314 -240 314\n\t\tmu 0 3 5985 932 872\n\t\tf 3 315 -311 -315\n\t\tmu 0 3 872 1680 5985\n\t\tf 3 -316 -243 316\n\t\tmu 0 3 1680 872 5348\n\t\tf 3 317 318 -317\n\t\tmu 0 3 5348 1044 1680\n\t\tf 3 -308 -319 319\n\t\tmu 0 3 6100 1680 1044\n\t\tf 3 320 -284 -320\n\t\tmu 0 3 1044 5502 6100\n\t\tf 3 -321 321 322\n\t\tmu 0 3 5502 1044 1981\n\t\tf 3 323 -296 -323\n\t\tmu 0 3 1981 5742 5502\n\t\tf 3 -318 -246 324\n\t\tmu 0 3 1044 5348 1785\n\t\tf 3 325 -322 -325\n\t\tmu 0 3 1785 1981 1044\n\t\tf 3 -326 -249 326\n\t\tmu 0 3 1981 1785 1709\n\t\tf 3 327 328 -327\n\t\tmu 0 3 1709 55 1981\n\t\tf 3 -324 -329 329\n\t\tmu 0 3 5742 1981 55\n\t\tf 3 330 -299 -330\n\t\tmu 0 3 55 5726 5742\n\t\tf 3 -331 331 332\n\t\tmu 0 3 5726 55 6598\n\t\tf 3 333 334 -333\n\t\tmu 0 3 6599 6600 5726\n\t\tf 3 335 -332 336\n\t\tmu 0 3 6601 6602 55\n\t\tf 3 -328 -252 -337\n\t\tmu 0 3 55 1709 6603\n\t\tf 3 -335 337 338\n\t\tmu 0 3 5726 6604 1894\n\t\tf 3 339 -301 -339\n\t\tmu 0 3 1894 4285 5726\n\t\tf 3 -304 -340 340\n\t\tmu 0 3 733 4285 1894\n\t\tf 3 341 342 343\n\t\tmu 0 3 12 5029 1581\n\t\tf 3 344 345 -344\n\t\tmu 0 3 1581 4147 12\n\t\tf 3 346 -345 347\n\t\tmu 0 3 1433 4147 1581\n\t\tf 3 348 349 -348\n\t\tmu 0 3 1581 603 1433\n\t\tf 3 -350 350 351\n\t\tmu 0 3 1433 603 5308\n\t\tf 3 352 353 -352\n\t\tmu 0 3 5308 3301 1433\n\t\tf 3 354 -353 355\n\t\tmu 0 3 1387 3301 5308\n\t\tf 3 356 357 -356\n\t\tmu 0 3 5308 5887 1387\n\t\tf 3 -358 358 359\n\t\tmu 0 3 1387 5887 3676\n\t\tf 3 360 361 -360\n\t\tmu 0 3 3676 685 1387\n\t\tf 3 362 -361 363\n\t\tmu 0 3 6377 685 3676\n\t\tf 3 364 365 -364\n\t\tmu 0 3 3676 3287 6377\n\t\tf 3 -366 366 367\n\t\tmu 0 3 6377 3287 1248\n\t\tf 3 368 369 -368\n\t\tmu 0 3 1248 4872 6377\n\t\tf 3 370 371 372\n\t\tmu 0 3 6605 6606 1764\n\t\tf 3 373 374 -373\n\t\tmu 0 3 1764 6510 6607\n\t\tf 3 375 376 377\n\t\tmu 0 3 6608 6609 746\n\t\tf 3 378 379 -378\n\t\tmu 0 3 746 3193 6610\n\t\tf 3 380 381 382\n\t\tmu 0 3 147 6611 746\n\t\tf 3 383 384 -383\n\t\tmu 0 3 746 1761 147\n\t\tf 3 385 -357 386\n\t\tmu 0 3 4963 5887 5308\n\t\tf 3 387 388 -387\n\t\tmu 0 3 5308 1464 4963\n\t\tf 3 -388 -351 389\n\t\tmu 0 3 1464 5308 603\n\t\tf 3 390 391 -390\n\t\tmu 0 3 603 1895 1464\n\t\tf 3 -391 -349 392\n\t\tmu 0 3 1895 603 1581\n\t\tf 3 393 394 -393\n\t\tmu 0 3 1581 5582 1895\n\t\tf 3 -394 -343 395\n\t\tmu 0 3 5582 1581 5029\n\t\tf 3 396 397 -396\n\t\tmu 0 3 5029 4297 5582\n\t\tf 3 398 -398 399\n\t\tmu 0 3 3997 5582 4297\n\t\tf 3 400 401 -400\n\t\tmu 0 3 4297 4332 3997\n\t\tf 3 402 -395 403\n\t\tmu 0 3 1813 1895 5582\n\t\tf 3 -399 404 -404\n\t\tmu 0 3 5582 3997 1813\n\t\tf 3 -403 405 406\n\t\tmu 0 3 1895 1813 3952\n\t\tf 3 407 -392 -407\n\t\tmu 0 3 3952 1464 1895\n\t\tf 3 408 -389 409\n\t\tmu 0 3 4916 4963 1464\n\t\tf 3 -408 410 -410\n\t\tmu 0 3 1464 3952 4916\n\t\tf 3 -409 411 412\n\t\tmu 0 3 4963 4916 158\n\t\tf 3 413 414 -413\n\t\tmu 0 3 158 3373 4963\n\t\tf 3 -386 -415 415\n\t\tmu 0 3 5887 4963 3373\n\t\tf 3 416 -359 -416\n\t\tmu 0 3 3373 3676 5887\n\t\tf 3 -414 417 418\n\t\tmu 0 3 3373 158 4193\n\t\tf 3 419 420 -419\n\t\tmu 0 3 4193 3471 3373\n\t\tf 3 -417 -421 421\n\t\tmu 0 3 3676 3373 3471\n\t\tf 3 422 -365 -422\n\t\tmu 0 3 3471 3287 3676\n\t\tf 3 -423 423 424\n\t\tmu 0 3 3287 3471 5862\n\t\tf 3 425 -367 -425\n\t\tmu 0 3 5862 1248 3287\n\t\tf 3 426 427 428\n\t\tmu 0 3 6612 5862 3067\n\t\tf 3 429 -372 -429\n\t\tmu 0 3 3067 1764 6613\n\t\tf 3 430 -428 431\n\t\tmu 0 3 4067 3067 5862\n\t\tf 3 432 433 -432\n\t\tmu 0 3 5862 4590 4067\n\t\tf 3 -433 -424 434\n\t\tmu 0 3 4590 5862 3471\n\t\tf 3 -420 435 -435\n\t\tmu 0 3 3471 4193 4590\n\t\tf 3 -436 -418 436\n\t\tmu 0 3 4590 4193 158\n\t\tf 3 437 438 439\n\t\tmu 0 3 6614 3067 2546\n\t\tf 3 440 -377 -440\n\t\tmu 0 3 2546 746 6615\n\t\tf 3 -431 441 442\n\t\tmu 0 3 3067 4067 4262\n\t\tf 3 443 -439 -443\n\t\tmu 0 3 4262 2546 3067\n\t\tf 3 -444 444 445\n\t\tmu 0 3 2546 4262 392\n\t\tf 3 446 447 -446\n\t\tmu 0 3 392 1990 2546\n\t\tf 3 -441 -448 448\n\t\tmu 0 3 746 2546 1990\n\t\tf 3 449 -384 -449\n\t\tmu 0 3 1990 1761 746\n\t\tf 3 -434 450 451\n\t\tmu 0 3 4067 4590 1611\n\t\tf 3 452 -442 -452\n\t\tmu 0 3 1611 4262 4067\n\t\tf 3 -445 -453 453\n\t\tmu 0 3 392 4262 1611\n\t\tf 3 454 455 -454\n\t\tmu 0 3 1611 5624 392\n\t\tf 3 -456 456 457\n\t\tmu 0 3 392 5624 5745\n\t\tf 3 458 459 -458\n\t\tmu 0 3 5745 6551 392\n\t\tf 3 -447 -460 460\n\t\tmu 0 3 1990 392 6551\n\t\tf 3 461 -459 462\n\t\tmu 0 3 1258 6551 5745\n\t\tf 3 463 464 -463\n\t\tmu 0 3 5745 67 1258\n\t\tf 3 465 466 467\n\t\tmu 0 3 6616 1990 5171\n\t\tf 3 468 -467 -461\n\t\tmu 0 3 6551 5171 1990\n\t\tf 3 -469 -462 469\n\t\tmu 0 3 5171 6551 1258\n\t\tf 3 470 471 -468\n\t\tmu 0 3 5171 1168 6617\n\t\tf 3 472 -472 473\n\t\tmu 0 3 147 6618 1168\n\t\tf 3 474 475 -474\n\t\tmu 0 3 1168 2147 147\n\t\tf 3 476 -476 477\n\t\tmu 0 3 5913 147 2147\n\t\tf 3 -381 -477 478\n\t\tmu 0 3 6619 147 5913\n\t\tf 3 479 480 -479\n\t\tmu 0 3 5913 2131 6620\n\t\tf 3 481 482 483\n\t\tmu 0 3 3193 6621 6141\n\t\tf 3 484 -380 -484\n\t\tmu 0 3 6141 6622 3193\n\t\tf 3 485 486 487\n\t\tmu 0 3 6510 6623 3714\n\t\tf 3 488 -375 -488\n\t\tmu 0 3 3714 6624 6510\n\t\tf 3 -370 489 490\n\t\tmu 0 3 6377 4872 6625\n\t\tf 3 491 492 -491\n\t\tmu 0 3 6626 422 6377\n\t\tf 3 -363 -493 493\n\t\tmu 0 3 685 6377 422\n\t\tf 3 494 495 -494\n\t\tmu 0 3 422 3302 685\n\t\tf 3 -496 496 497\n\t\tmu 0 3 685 3302 3384\n\t\tf 3 498 -362 -498\n\t\tmu 0 3 3384 1387 685\n\t\tf 3 -355 -499 499\n\t\tmu 0 3 3301 1387 3384\n\t\tf 3 500 501 -500\n\t\tmu 0 3 3384 417 3301\n\t\tf 3 -502 502 503\n\t\tmu 0 3 3301 417 4885\n\t\tf 3 504 -354 -504\n\t\tmu 0 3 4885 1433 3301\n\t\tf 3 -347 -505 505\n\t\tmu 0 3 4147 1433 4885\n\t\tf 3 506 507 -506\n\t\tmu 0 3 4885 5309 4147\n\t\tf 3 -346 -508 508\n\t\tmu 0 3 12 4147 5309\n\t\tf 3 509 510 -509\n\t\tmu 0 3 5309 5711 12\n\t\tf 3 511 512 513\n\t\tmu 0 3 4229 3197 2713\n\t\tf 3 514 515 -514\n\t\tmu 0 3 2713 5347 4229\n\t\tf 3 516 -512 517\n\t\tmu 0 3 4063 3197 4229\n\t\tf 3 518 519 -518\n\t\tmu 0 3 4229 347 4063\n\t\tf 3 -520 520 521\n\t\tmu 0 3 4063 347 5546\n\t\tf 3 522 523 -522\n\t\tmu 0 3 5546 4425 4063\n\t\tf 3 524 -523 525\n\t\tmu 0 3 6546 4425 5546\n\t\tf 3 526 527 -526\n\t\tmu 0 3 5546 288 6546\n\t\tf 3 -528 528 529\n\t\tmu 0 3 6546 288 1707\n\t\tf 3 530 531 -530\n\t\tmu 0 3 1707 447 6546\n\t\tf 3 532 -531 533\n\t\tmu 0 3 5355 447 1707\n\t\tf 3 534 535 -534\n\t\tmu 0 3 1707 3280 5355\n\t\tf 3 -536 536 537\n\t\tmu 0 3 5355 3280 903\n\t\tf 3 538 539 -538\n\t\tmu 0 3 903 5331 5355\n\t\tf 3 540 -539 541\n\t\tmu 0 3 3303 5331 903\n\t\tf 3 542 543 -542\n\t\tmu 0 3 903 2446 3303\n\t\tf 3 -544 544 545\n\t\tmu 0 3 3303 2446 3081\n\t\tf 3 546 547 -546\n\t\tmu 0 3 3081 4148 3303\n\t\tf 3 548 -547 549\n\t\tmu 0 3 2925 4148 3081\n\t\tf 3 550 551 -550\n\t\tmu 0 3 3081 1203 2925\n\t\tf 3 552 553 554\n\t\tmu 0 3 602 394 5401\n\t\tf 3 555 -2 -555\n\t\tmu 0 3 5401 5143 602\n\t\tf 3 -556 556 557\n\t\tmu 0 3 5143 5401 1434\n\t\tf 3 558 -6 -558\n\t\tmu 0 3 1434 3657 5143\n\t\tf 3 -12 559 560\n\t\tmu 0 3 427 3657 6627\n\t\tf 3 561 562 -561\n\t\tmu 0 3 6628 3602 427\n\t\tf 3 -563 563 564\n\t\tmu 0 3 427 3602 1689\n\t\tf 3 565 -14 -565\n\t\tmu 0 3 1689 2468 427\n\t\tf 3 -20 -566 566\n\t\tmu 0 3 3116 2468 1689\n\t\tf 3 567 568 -567\n\t\tmu 0 3 1689 4538 3116\n\t\tf 3 569 570 -478\n\t\tmu 0 3 2147 762 5913\n\t\tf 3 571 -570 572\n\t\tmu 0 3 3841 762 2147\n\t\tf 3 573 574 -573\n\t\tmu 0 3 2147 2511 3841\n\t\tf 3 -574 -475 575\n\t\tmu 0 3 2511 2147 1168\n\t\tf 3 576 577 -576\n\t\tmu 0 3 1168 1197 2511\n\t\tf 3 578 -577 579\n\t\tmu 0 3 68 1197 1168\n\t\tf 3 -471 580 -580\n\t\tmu 0 3 1168 5171 68\n\t\tf 3 581 -581 -470\n\t\tmu 0 3 1258 68 5171\n\t\tf 3 582 583 584\n\t\tmu 0 3 4876 4263 757\n\t\tf 3 585 586 -585\n\t\tmu 0 3 757 4903 4876\n\t\tf 3 587 588 589\n\t\tmu 0 3 6629 6630 1273\n\t\tf 3 -589 590 591\n\t\tmu 0 3 1273 6631 753\n\t\tf 3 592 -586 593\n\t\tmu 0 3 6632 4903 6082\n\t\tf 3 594 595 -594\n\t\tmu 0 3 6082 702 6633\n\t\tf 3 596 597 -592\n\t\tmu 0 3 753 242 1273\n\t\tf 3 598 599 600\n\t\tmu 0 3 6634 6635 4273\n\t\tf 3 601 -600 602\n\t\tmu 0 3 4955 4273 6636\n\t\tf 3 603 604 -603\n\t\tmu 0 3 6637 5778 4955\n\t\tf 3 605 -597 606\n\t\tmu 0 3 6638 242 753\n\t\tf 3 607 -605 608\n\t\tmu 0 3 3791 4955 5778\n\t\tf 3 609 610 -609\n\t\tmu 0 3 5778 5054 3791\n\t\tf 3 611 -611 612\n\t\tmu 0 3 6466 3791 5054\n\t\tf 3 613 614 -613\n\t\tmu 0 3 5054 4106 6466\n\t\tf 3 615 -615 616\n\t\tmu 0 3 2667 6466 4106\n\t\tf 3 617 618 -617\n\t\tmu 0 3 4106 411 2667\n\t\tf 3 619 -619 620\n\t\tmu 0 3 5860 2667 411\n\t\tf 3 621 622 -621\n\t\tmu 0 3 411 1349 5860\n\t\tf 3 623 -623 624\n\t\tmu 0 3 6356 5860 1349\n\t\tf 3 625 626 -625\n\t\tmu 0 3 1349 6452 6356\n\t\tf 3 627 -627 628\n\t\tmu 0 3 758 6356 6452\n\t\tf 3 629 630 -629\n\t\tmu 0 3 6452 5228 758\n\t\tf 3 631 -631 632\n\t\tmu 0 3 4581 758 5228\n\t\tf 3 633 634 -633\n\t\tmu 0 3 5228 854 4581\n\t\tf 3 635 636 637\n\t\tmu 0 3 4907 6639 6640\n\t\tf 3 638 639 -638\n\t\tmu 0 3 6641 423 4907\n\t\tf 3 640 641 642\n\t\tmu 0 3 6642 6643 503\n\t\tf 3 643 644 -643\n\t\tmu 0 3 503 1948 6644\n\t\tf 3 645 646 647\n\t\tmu 0 3 6645 6646 5099\n\t\tf 3 648 -639 -648\n\t\tmu 0 3 5099 423 6647\n\t\tf 3 -647 649 650\n\t\tmu 0 3 5099 6648 6649\n\t\tf 3 -642 651 652\n\t\tmu 0 3 3537 6650 6651\n\t\tf 3 653 654 -653\n\t\tmu 0 3 6652 1924 3537\n\t\tf 3 655 656 -651\n\t\tmu 0 3 6653 4835 5099\n\t\tf 3 657 658 659\n\t\tmu 0 3 6654 6655 2413\n\t\tf 3 660 -654 -660\n\t\tmu 0 3 2413 4574 6656\n\t\tf 3 -659 661 662\n\t\tmu 0 3 264 6657 1693\n\t\tf 3 663 664 -663\n\t\tmu 0 3 1693 232 264\n\t\tf 3 665 -656 666\n\t\tmu 0 3 6658 4835 6659\n\t\tf 3 667 668 -667\n\t\tmu 0 3 6660 6661 6662\n\t\tf 3 -669 669 670\n\t\tmu 0 3 6663 6664 6665\n\t\tf 3 671 672 -671\n\t\tmu 0 3 6666 2958 6667\n\t\tf 3 673 674 675\n\t\tmu 0 3 1693 6668 5893\n\t\tf 3 676 -664 -676\n\t\tmu 0 3 5893 2333 1693\n\t\tf 3 677 -672 678\n\t\tmu 0 3 1512 2958 6669\n\t\tf 3 -675 679 680\n\t\tmu 0 3 4414 6670 6671\n\t\tf 3 681 682 -681\n\t\tmu 0 3 6672 4492 4414\n\t\tf 3 683 684 -679\n\t\tmu 0 3 6673 6674 1512\n\t\tf 3 -685 685 686\n\t\tmu 0 3 1512 6675 6676\n\t\tf 3 687 688 -687\n\t\tmu 0 3 6677 2870 1512\n\t\tf 3 689 690 691\n\t\tmu 0 3 6678 6679 3097\n\t\tf 3 692 -682 -692\n\t\tmu 0 3 3097 459 6680\n\t\tf 3 693 -688 -607\n\t\tmu 0 3 753 2870 6681\n\t\tf 3 -691 694 695\n\t\tmu 0 3 4415 6682 6683\n\t\tf 3 -596 696 -696\n\t\tmu 0 3 6684 4307 4415\n\t\tf 3 697 698 699\n\t\tmu 0 3 2091 271 1690\n\t\tf 3 700 701 -700\n\t\tmu 0 3 1690 198 2091\n\t\tf 3 702 -702 703\n\t\tmu 0 3 3603 2091 198\n\t\tf 3 704 705 -704\n\t\tmu 0 3 198 5731 3603\n\t\tf 3 706 -699 707\n\t\tmu 0 3 2902 1690 271\n\t\tf 3 708 709 -708\n\t\tmu 0 3 271 1901 2902\n\t\tf 3 710 -710 711\n\t\tmu 0 3 51 2902 1901\n\t\tf 3 712 713 -712\n\t\tmu 0 3 1901 1315 51\n\t\tf 3 714 -714 715\n\t\tmu 0 3 4714 51 1315\n\t\tf 3 716 717 -716\n\t\tmu 0 3 1315 3013 4714\n\t\tf 3 718 -718 719\n\t\tmu 0 3 2593 4714 3013\n\t\tf 3 720 721 -720\n\t\tmu 0 3 3013 1259 2593\n\t\tf 3 722 -722 723\n\t\tmu 0 3 1511 2593 1259\n\t\tf 3 724 725 -724\n\t\tmu 0 3 1259 3907 1511\n\t\tf 3 726 -726 727\n\t\tmu 0 3 3463 1511 3907\n\t\tf 3 728 729 -728\n\t\tmu 0 3 3907 2217 3463\n\t\tf 3 730 -730 731\n\t\tmu 0 3 2177 3463 2217\n\t\tf 3 732 733 -732\n\t\tmu 0 3 2217 199 2177\n\t\tf 3 734 -734 735\n\t\tmu 0 3 4836 2177 199\n\t\tf 3 736 737 -736\n\t\tmu 0 3 199 1691 4836\n\t\tf 3 738 739 740\n\t\tmu 0 3 3790 2310 5464\n\t\tf 3 741 742 -741\n\t\tmu 0 3 5464 715 3790\n\t\tf 3 743 -739 744\n\t\tmu 0 3 4306 2310 3790\n\t\tf 3 745 746 -745\n\t\tmu 0 3 3790 1746 4306\n\t\tf 3 -747 747 748\n\t\tmu 0 3 4306 1746 2688\n\t\tf 3 749 750 -749\n\t\tmu 0 3 2688 6368 4306\n\t\tf 3 751 -750 752\n\t\tmu 0 3 334 6368 2688\n\t\tf 3 753 754 -753\n\t\tmu 0 3 2688 221 334\n\t\tf 3 -755 755 756\n\t\tmu 0 3 334 221 1049\n\t\tf 3 757 758 -757\n\t\tmu 0 3 1049 5754 334\n\t\tf 3 759 -758 760\n\t\tmu 0 3 4590 5754 1049\n\t\tf 3 761 762 -761\n\t\tmu 0 3 1049 121 4590\n\t\tf 3 -763 763 764\n\t\tmu 0 3 4590 121 2372\n\t\tf 3 765 -451 -765\n\t\tmu 0 3 2372 1611 4590\n\t\tf 3 -455 -766 766\n\t\tmu 0 3 5624 1611 2372\n\t\tf 3 767 768 -767\n\t\tmu 0 3 2372 2110 5624\n\t\tf 3 -769 769 770\n\t\tmu 0 3 5624 2110 4118\n\t\tf 3 771 -457 -771\n\t\tmu 0 3 4118 5745 5624\n\t\tf 3 -464 -772 772\n\t\tmu 0 3 67 5745 4118\n\t\tf 3 773 774 -773\n\t\tmu 0 3 4118 774 67\n\t\tf 3 -752 775 776\n\t\tmu 0 3 6368 334 4916\n\t\tf 3 -776 -759 777\n\t\tmu 0 3 4916 334 5754\n\t\tf 3 -411 778 -777\n\t\tmu 0 3 4916 3952 6368\n\t\tf 3 779 -412 -778\n\t\tmu 0 3 5754 158 4916\n\t\tf 3 -780 -760 -437\n\t\tmu 0 3 158 5754 4590\n\t\tf 3 -779 -406 780\n\t\tmu 0 3 6368 3952 1813\n\t\tf 3 781 -751 -781\n\t\tmu 0 3 1813 4306 6368\n\t\tf 3 -744 -782 782\n\t\tmu 0 3 2310 4306 1813\n\t\tf 3 -405 783 -783\n\t\tmu 0 3 1813 3997 2310\n\t\tf 3 -784 -402 784\n\t\tmu 0 3 2310 3997 4332\n\t\tf 3 785 -740 -785\n\t\tmu 0 3 4332 5464 2310\n\t\tf 3 786 -584 787\n\t\tmu 0 3 5192 5096 5619\n\t\tf 3 788 789 -788\n\t\tmu 0 3 5619 419 5192\n\t\tf 3 -595 -787 790\n\t\tmu 0 3 157 5096 5192\n\t\tf 3 791 792 -791\n\t\tmu 0 3 5192 327 157\n\t\tf 3 -793 793 794\n\t\tmu 0 3 157 327 1085\n\t\tf 3 795 -697 -795\n\t\tmu 0 3 1085 1887 157\n\t\tf 3 -693 -796 796\n\t\tmu 0 3 3913 1887 1085\n\t\tf 3 797 798 -797\n\t\tmu 0 3 1085 6461 3913\n\t\tf 3 799 800 801\n\t\tmu 0 3 3913 6685 5952\n\t\tf 3 802 -683 -802\n\t\tmu 0 3 5952 5526 3913\n\t\tf 3 -677 -803 803\n\t\tmu 0 3 5342 5526 5952\n\t\tf 3 804 805 -804\n\t\tmu 0 3 5952 968 5342\n\t\tf 3 -806 806 807\n\t\tmu 0 3 5342 968 4113\n\t\tf 3 808 -665 -808\n\t\tmu 0 3 4113 3617 5342\n\t\tf 3 -661 -809 809\n\t\tmu 0 3 5456 3617 4113\n\t\tf 3 810 811 -810\n\t\tmu 0 3 4113 4848 5456\n\t\tf 3 -812 812 813\n\t\tmu 0 3 5456 4848 4828\n\t\tf 3 814 -655 -814\n\t\tmu 0 3 4828 4589 5456\n\t\tf 3 -644 -815 815\n\t\tmu 0 3 3914 4589 4828\n\t\tf 3 816 817 -816\n\t\tmu 0 3 4828 2692 3914\n\t\tf 3 -798 818 819\n\t\tmu 0 3 6461 1085 1031\n\t\tf 3 820 821 -820\n\t\tmu 0 3 1031 1721 6461\n\t\tf 3 822 -819 823\n\t\tmu 0 3 4801 1031 1085\n\t\tf 3 -794 824 -824\n\t\tmu 0 3 1085 327 4801\n\t\tf 3 825 -825 826\n\t\tmu 0 3 4802 4801 327\n\t\tf 3 -792 827 -827\n\t\tmu 0 3 327 5192 4802\n\t\tf 3 828 -828 829\n\t\tmu 0 3 4803 4802 5192\n\t\tf 3 -790 830 -830\n\t\tmu 0 3 5192 419 4803\n\t\tf 3 831 832 -601\n\t\tmu 0 3 4273 3338 6686\n\t\tf 3 833 -833 834\n\t\tmu 0 3 2991 6687 3338\n\t\tf 3 835 836 -835\n\t\tmu 0 3 3338 5517 2991\n\t\tf 3 837 838 -590\n\t\tmu 0 3 1273 6688 6689\n\t\tf 3 839 840 841\n\t\tmu 0 3 4177 3634 3643\n\t\tf 3 842 843 -842\n\t\tmu 0 3 3643 5781 4177\n\t\tf 3 844 -840 845\n\t\tmu 0 3 1949 3634 4177\n\t\tf 3 846 847 -846\n\t\tmu 0 3 4177 3062 1949\n\t\tf 3 -848 848 849\n\t\tmu 0 3 1949 3062 6111\n\t\tf 3 850 851 -850\n\t\tmu 0 3 6111 6047 1949\n\t\tf 3 852 -851 853\n\t\tmu 0 3 3413 6047 6111\n\t\tf 3 854 855 -854\n\t\tmu 0 3 6111 3644 3413\n\t\tf 3 -856 856 857\n\t\tmu 0 3 3413 3644 2749\n\t\tf 3 858 859 -858\n\t\tmu 0 3 2749 2719 3413\n\t\tf 3 860 -859 861\n\t\tmu 0 3 333 2719 2749\n\t\tf 3 862 863 -862\n\t\tmu 0 3 2749 4421 333\n\t\tf 3 -864 864 865\n\t\tmu 0 3 333 4421 1173\n\t\tf 3 866 867 -866\n\t\tmu 0 3 1173 1993 333\n\t\tf 3 868 869 870\n\t\tmu 0 3 6690 6691 3078\n\t\tf 3 871 872 -871\n\t\tmu 0 3 3078 5219 6692\n\t\tf 3 873 874 875\n\t\tmu 0 3 6693 6694 511\n\t\tf 3 876 877 -876\n\t\tmu 0 3 511 1997 6695\n\t\tf 3 878 879 880\n\t\tmu 0 3 5679 6696 6697\n\t\tf 3 881 882 -881\n\t\tmu 0 3 6698 5541 5679\n\t\tf 3 -883 883 884\n\t\tmu 0 3 5679 5541 3611\n\t\tf 3 885 886 -885\n\t\tmu 0 3 3611 4274 5679\n\t\tf 3 887 -886 888\n\t\tmu 0 3 1402 4274 3611\n\t\tf 3 889 890 -889\n\t\tmu 0 3 3611 3589 1402\n\t\tf 3 891 892 893\n\t\tmu 0 3 6699 6700 359\n\t\tf 3 894 895 -894\n\t\tmu 0 3 359 5160 6701\n\t\tf 3 896 -896 897\n\t\tmu 0 3 6702 6703 5160\n\t\tf 3 898 899 -898\n\t\tmu 0 3 5160 5686 6704\n\t\tf 3 900 -893 901\n\t\tmu 0 3 3792 359 6705\n\t\tf 3 902 903 -902\n\t\tmu 0 3 6706 6707 3792;\n\tsetAttr \".fc[500:999]\"\n\t\tf 3 904 -904 905\n\t\tmu 0 3 2914 3792 6708\n\t\tf 3 906 907 -906\n\t\tmu 0 3 6709 6710 2914\n\t\tf 3 908 -908 909\n\t\tmu 0 3 1630 2914 6711\n\t\tf 3 910 911 -910\n\t\tmu 0 3 6712 6713 1630\n\t\tf 3 912 -912 913\n\t\tmu 0 3 4102 1630 6714\n\t\tf 3 914 915 -914\n\t\tmu 0 3 6715 6716 4102\n\t\tf 3 -916 916 917\n\t\tmu 0 3 4102 6717 6718\n\t\tf 3 918 919 -918\n\t\tmu 0 3 6719 1896 4102\n\t\tf 3 -919 920 921\n\t\tmu 0 3 1896 6720 6721\n\t\tf 3 922 923 -922\n\t\tmu 0 3 6722 775 1896\n\t\tf 3 924 -923 925\n\t\tmu 0 3 3166 775 6723\n\t\tf 3 926 927 -926\n\t\tmu 0 3 6724 6725 3166\n\t\tf 3 928 -928 929\n\t\tmu 0 3 5341 3166 6726\n\t\tf 3 930 931 -930\n\t\tmu 0 3 6727 6728 5341\n\t\tf 3 932 -932 933\n\t\tmu 0 3 4698 5341 6729\n\t\tf 3 934 935 -934\n\t\tmu 0 3 6730 6731 4698\n\t\tf 3 936 -936 937\n\t\tmu 0 3 3761 4698 6732\n\t\tf 3 938 939 -938\n\t\tmu 0 3 6733 6734 3761\n\t\tf 3 940 941 942\n\t\tmu 0 3 6735 6736 4264\n\t\tf 3 943 944 -943\n\t\tmu 0 3 4264 1744 6737\n\t\tf 3 945 -945 946\n\t\tmu 0 3 6738 6739 1744\n\t\tf 3 947 948 -947\n\t\tmu 0 3 1744 3246 6740\n\t\tf 3 949 -949 950\n\t\tmu 0 3 6741 6742 3246\n\t\tf 3 951 952 -951\n\t\tmu 0 3 3246 2784 6743\n\t\tf 3 953 -953 954\n\t\tmu 0 3 6744 6745 2784\n\t\tf 3 955 956 -955\n\t\tmu 0 3 2784 1150 6746\n\t\tf 3 957 -957 958\n\t\tmu 0 3 6747 6748 1150\n\t\tf 3 959 960 -959\n\t\tmu 0 3 1150 385 6749\n\t\tf 3 961 -961 962\n\t\tmu 0 3 6750 6751 385\n\t\tf 3 963 964 -963\n\t\tmu 0 3 385 3427 6752\n\t\tf 3 965 -965 966\n\t\tmu 0 3 6753 6754 3427\n\t\tf 3 967 968 -967\n\t\tmu 0 3 3427 2304 6755\n\t\tf 3 969 -969 970\n\t\tmu 0 3 6756 6757 2304\n\t\tf 3 971 972 -971\n\t\tmu 0 3 2304 6077 6758\n\t\tf 3 973 -973 974\n\t\tmu 0 3 6759 6760 6077\n\t\tf 3 975 976 -975\n\t\tmu 0 3 6077 4460 6761\n\t\tf 3 977 -977 978\n\t\tmu 0 3 6762 6763 4460\n\t\tf 3 979 980 -979\n\t\tmu 0 3 4460 512 6764\n\t\tf 3 981 -981 982\n\t\tmu 0 3 6765 6766 512\n\t\tf 3 983 984 -983\n\t\tmu 0 3 512 6097 6767\n\t\tf 3 985 -985 986\n\t\tmu 0 3 6768 6769 6097\n\t\tf 3 987 988 -987\n\t\tmu 0 3 6097 2428 6770\n\t\tf 3 989 990 991\n\t\tmu 0 3 4429 5779 1072\n\t\tf 3 992 993 -992\n\t\tmu 0 3 1072 2369 4429\n\t\tf 3 994 -991 995\n\t\tmu 0 3 2595 1072 5779\n\t\tf 3 996 997 -996\n\t\tmu 0 3 5779 6221 2595\n\t\tf 3 -995 998 999\n\t\tmu 0 3 1072 2595 1553\n\t\tf 3 1000 1001 -1000\n\t\tmu 0 3 1553 3317 1072\n\t\tf 3 -993 -1002 1002\n\t\tmu 0 3 2369 1072 3317\n\t\tf 3 1003 1004 -1003\n\t\tmu 0 3 3317 5409 2369\n\t\tf 3 -1004 1005 1006\n\t\tmu 0 3 5409 3317 5780\n\t\tf 3 1007 1008 -1007\n\t\tmu 0 3 5780 734 5409\n\t\tf 3 -1001 1009 1010\n\t\tmu 0 3 3317 1553 1098\n\t\tf 3 1011 -1006 -1011\n\t\tmu 0 3 1098 5780 3317\n\t\tf 3 -1012 1012 1013\n\t\tmu 0 3 5780 1098 283\n\t\tf 3 1014 1015 -1014\n\t\tmu 0 3 283 5162 5780\n\t\tf 3 -1008 -1016 1016\n\t\tmu 0 3 734 5780 5162\n\t\tf 3 1017 1018 -1017\n\t\tmu 0 3 5162 5804 734\n\t\tf 3 1019 1020 1021\n\t\tmu 0 3 5804 6771 82\n\t\tf 3 1022 1023 -1022\n\t\tmu 0 3 82 2615 5804\n\t\tf 3 1024 1025 1026\n\t\tmu 0 3 6772 6773 3351\n\t\tf 3 1027 -1021 -1027\n\t\tmu 0 3 3351 82 6774\n\t\tf 3 -1028 1028 1029\n\t\tmu 0 3 82 3351 1640\n\t\tf 3 1030 1031 -1030\n\t\tmu 0 3 1640 1727 82\n\t\tf 3 -1023 -1032 1032\n\t\tmu 0 3 2615 82 1727\n\t\tf 3 1033 1034 -1033\n\t\tmu 0 3 1727 1711 2615\n\t\tf 3 -1009 1035 1036\n\t\tmu 0 3 5409 734 5537\n\t\tf 3 1037 1038 -1037\n\t\tmu 0 3 5537 5588 5409\n\t\tf 3 -1005 -1039 1039\n\t\tmu 0 3 2369 5409 5588\n\t\tf 3 1040 1041 -1040\n\t\tmu 0 3 5588 3342 2369\n\t\tf 3 -994 -1042 1042\n\t\tmu 0 3 4429 2369 3342\n\t\tf 3 1043 1044 -1043\n\t\tmu 0 3 3342 577 4429\n\t\tf 3 -1041 1045 1046\n\t\tmu 0 3 3342 5588 6035\n\t\tf 3 1047 1048 -1047\n\t\tmu 0 3 6035 3032 3342\n\t\tf 3 -1044 -1049 1049\n\t\tmu 0 3 577 3342 3032\n\t\tf 3 1050 1051 -1050\n\t\tmu 0 3 3032 573 577\n\t\tf 3 1052 -1046 1053\n\t\tmu 0 3 4652 6035 5588\n\t\tf 3 -1038 1054 -1054\n\t\tmu 0 3 5588 5537 4652\n\t\tf 3 1055 -1055 1056\n\t\tmu 0 3 5425 4652 5537\n\t\tf 3 1057 1058 -1057\n\t\tmu 0 3 5537 5218 5425\n\t\tf 3 -1058 -1036 1059\n\t\tmu 0 3 5218 5537 734\n\t\tf 3 -1019 1060 -1060\n\t\tmu 0 3 734 5804 5218\n\t\tf 3 1061 -1061 1062\n\t\tmu 0 3 6400 5218 5804\n\t\tf 3 -1024 1063 -1063\n\t\tmu 0 3 5804 2615 6400\n\t\tf 3 1064 -1064 1065\n\t\tmu 0 3 5183 6400 2615\n\t\tf 3 -1035 1066 -1066\n\t\tmu 0 3 2615 1711 5183\n\t\tf 3 -1065 1067 1068\n\t\tmu 0 3 6400 5183 259\n\t\tf 3 1069 1070 -1069\n\t\tmu 0 3 259 5646 6400\n\t\tf 3 1071 -1059 1072\n\t\tmu 0 3 5646 5425 5218\n\t\tf 3 -1062 -1071 -1073\n\t\tmu 0 3 5218 6400 5646\n\t\tf 3 1073 -1048 1074\n\t\tmu 0 3 4509 3032 6035\n\t\tf 3 -1051 -1074 1075\n\t\tmu 0 3 573 3032 4509\n\t\tf 3 1076 1077 -1075\n\t\tmu 0 3 6035 3669 4509\n\t\tf 3 -1077 -1053 1078\n\t\tmu 0 3 3669 6035 4652\n\t\tf 3 1079 1080 -1076\n\t\tmu 0 3 4509 1382 573\n\t\tf 3 1081 -1056 1082\n\t\tmu 0 3 5368 4652 5425\n\t\tf 3 -1082 1083 -1079\n\t\tmu 0 3 4652 5368 3669\n\t\tf 3 1084 1085 -1083\n\t\tmu 0 3 5425 3635 5368\n\t\tf 3 -1085 -1072 1086\n\t\tmu 0 3 3635 5425 5646\n\t\tf 3 1087 -1070 1088\n\t\tmu 0 3 107 5646 259\n\t\tf 3 -1088 1089 -1087\n\t\tmu 0 3 5646 107 3635\n\t\tf 3 1090 1091 -1089\n\t\tmu 0 3 259 5196 107\n\t\tf 3 1092 1093 1094\n\t\tmu 0 3 6775 309 1547\n\t\tf 3 1095 -94 -1095\n\t\tmu 0 3 1547 3903 6776\n\t\tf 3 1096 -1094 -82\n\t\tmu 0 3 1007 1547 309\n\t\tf 3 -1096 1097 1098\n\t\tmu 0 3 3903 1547 2151\n\t\tf 3 -1098 -1097 1099\n\t\tmu 0 3 2151 1547 1007\n\t\tf 3 1100 -100 -1099\n\t\tmu 0 3 2151 6463 3903\n\t\tf 3 -1101 1101 1102\n\t\tmu 0 3 6463 2151 1187\n\t\tf 3 1103 -102 -1103\n\t\tmu 0 3 1187 1686 6463\n\t\tf 3 1104 -1102 1105\n\t\tmu 0 3 6288 1187 2151\n\t\tf 3 1106 -72 -1106\n\t\tmu 0 3 2151 665 6288\n\t\tf 3 -68 -1107 -1100\n\t\tmu 0 3 1007 665 2151\n\t\tf 3 -1104 1107 1108\n\t\tmu 0 3 1686 1187 5442\n\t\tf 3 -1108 -1105 1109\n\t\tmu 0 3 5442 1187 6288\n\t\tf 3 1110 -108 -1109\n\t\tmu 0 3 5442 3455 1686\n\t\tf 3 -80 1111 -1110\n\t\tmu 0 3 6288 827 5442\n\t\tf 3 1112 -268 1113\n\t\tmu 0 3 6221 168 3922\n\t\tf 3 1114 -998 -1114\n\t\tmu 0 3 3922 2595 6221\n\t\tf 3 -1115 -276 1115\n\t\tmu 0 3 2595 3922 5330\n\t\tf 3 1116 -999 -1116\n\t\tmu 0 3 5330 1553 2595\n\t\tf 3 -1117 -280 1117\n\t\tmu 0 3 1553 5330 2666\n\t\tf 3 1118 -1010 -1118\n\t\tmu 0 3 2666 1098 1553\n\t\tf 3 -1119 -290 1119\n\t\tmu 0 3 1098 2666 5721\n\t\tf 3 1120 -1013 -1120\n\t\tmu 0 3 5721 283 1098\n\t\tf 3 1121 -295 1122\n\t\tmu 0 3 6777 6778 3311\n\t\tf 3 1123 -1026 -1123\n\t\tmu 0 3 3311 3351 6779\n\t\tf 3 -1124 -307 1124\n\t\tmu 0 3 3351 3311 1196\n\t\tf 3 1125 -1029 -1125\n\t\tmu 0 3 1196 1640 3351\n\t\tf 3 1126 1127 1128\n\t\tmu 0 3 299 3891 513\n\t\tf 3 1129 1130 -1129\n\t\tmu 0 3 513 2415 299\n\t\tf 3 1131 -1130 1132\n\t\tmu 0 3 3481 2415 513\n\t\tf 3 1133 1134 -1133\n\t\tmu 0 3 513 3964 3481\n\t\tf 3 1135 -1127 1136\n\t\tmu 0 3 2815 3891 299\n\t\tf 3 1137 1138 -1137\n\t\tmu 0 3 299 564 2815\n\t\tf 3 -1139 1139 1140\n\t\tmu 0 3 2815 564 2205\n\t\tf 3 1141 1142 -1141\n\t\tmu 0 3 2205 4340 2815\n\t\tf 3 -1135 1143 1144\n\t\tmu 0 3 3481 3964 2152\n\t\tf 3 1145 1146 -1145\n\t\tmu 0 3 2152 3636 3481\n\t\tf 3 -1142 1147 1148\n\t\tmu 0 3 4340 2205 1952\n\t\tf 3 1149 1150 -1149\n\t\tmu 0 3 1952 1403 4340\n\t\tf 3 1151 -1150 1152\n\t\tmu 0 3 1704 1403 1952\n\t\tf 3 1153 1154 -1153\n\t\tmu 0 3 1952 2098 1704\n\t\tf 3 1155 -1155 1156\n\t\tmu 0 3 1925 1704 2098\n\t\tf 3 1157 1158 -1157\n\t\tmu 0 3 2098 1210 1925\n\t\tf 3 1159 -1159 1160\n\t\tmu 0 3 4891 1925 1210\n\t\tf 3 1161 1162 -1161\n\t\tmu 0 3 1210 4057 4891\n\t\tf 3 1163 -1163 1164\n\t\tmu 0 3 2039 4891 4057\n\t\tf 3 -1146 1165 1166\n\t\tmu 0 3 3636 2152 2039\n\t\tf 3 1167 1168 -1165\n\t\tmu 0 3 4057 5824 2039\n\t\tf 3 1169 -1154 1170\n\t\tmu 0 3 1600 2098 1952\n\t\tf 3 1171 1172 -1171\n\t\tmu 0 3 1952 720 1600\n\t\tf 3 -1172 -1148 1173\n\t\tmu 0 3 720 1952 2205\n\t\tf 3 1174 -1173 1175\n\t\tmu 0 3 2416 1600 720\n\t\tf 3 1176 1177 -1176\n\t\tmu 0 3 720 5457 2416\n\t\tf 3 1178 -1178 1179\n\t\tmu 0 3 525 2416 5457\n\t\tf 3 1180 1181 -1180\n\t\tmu 0 3 5457 4461 525\n\t\tf 3 1182 -1177 1183\n\t\tmu 0 3 4059 5457 720\n\t\tf 3 -1181 -1183 1184\n\t\tmu 0 3 4461 5457 4059\n\t\tf 3 -1184 1185 1186\n\t\tmu 0 3 4059 720 526\n\t\tf 3 1187 1188 -1186\n\t\tmu 0 3 720 4048 526\n\t\tf 3 1189 1190 -1185\n\t\tmu 0 3 4059 5370 4461\n\t\tf 3 1191 -1188 -1174\n\t\tmu 0 3 2205 4048 720\n\t\tf 3 -1169 1192 1193\n\t\tmu 0 3 2039 5824 2086\n\t\tf 3 1194 1195 -1194\n\t\tmu 0 3 2086 1906 2039\n\t\tf 3 -1196 1196 -1167\n\t\tmu 0 3 2039 1906 3636\n\t\tf 3 1197 1198 1199\n\t\tmu 0 3 6780 6781 6782\n\t\tf 3 1200 1201 -1200\n\t\tmu 0 3 6783 6784 6785\n\t\tf 3 1202 -1201 1203\n\t\tmu 0 3 6786 6787 6788\n\t\tf 3 1204 1205 -1204\n\t\tmu 0 3 6789 6790 6791\n\t\tf 3 -1206 1206 1207\n\t\tmu 0 3 6792 6793 6794\n\t\tf 3 1208 1209 -1208\n\t\tmu 0 3 6795 6796 6797\n\t\tf 3 1210 -1209 1211\n\t\tmu 0 3 6798 6799 6800\n\t\tf 3 1212 1213 -1212\n\t\tmu 0 3 6801 6802 6803\n\t\tf 3 1214 -1214 1215\n\t\tmu 0 3 6804 6805 6806\n\t\tf 3 1216 1217 -1216\n\t\tmu 0 3 6807 6808 6809\n\t\tf 3 -1199 1218 1219\n\t\tmu 0 3 6810 6811 6812\n\t\tf 3 1220 1221 1222\n\t\tmu 0 3 6813 6814 6815\n\t\tf 3 1223 1224 -1223\n\t\tmu 0 3 6816 6817 6818\n\t\tf 3 -1221 1225 1226\n\t\tmu 0 3 6819 6820 6821\n\t\tf 3 1227 1228 -1227\n\t\tmu 0 3 6822 6823 6824\n\t\tf 3 1229 -1226 1230\n\t\tmu 0 3 6825 6826 6827\n\t\tf 3 1231 1232 -1231\n\t\tmu 0 3 6828 6829 6830\n\t\tf 3 -1232 -1225 1233\n\t\tmu 0 3 6831 6832 6833\n\t\tf 3 1234 1235 -1234\n\t\tmu 0 3 6834 6835 6836\n\t\tf 3 -1228 1236 1237\n\t\tmu 0 3 6837 6838 6839\n\t\tf 3 -1237 -1230 1238\n\t\tmu 0 3 6840 6841 6842\n\t\tf 3 1239 1240 -1238\n\t\tmu 0 3 6843 6844 6845\n\t\tf 3 1241 1242 -1239\n\t\tmu 0 3 6846 6847 6848\n\t\tf 3 1243 1244 1245\n\t\tmu 0 3 6849 6850 6851\n\t\tf 3 1246 1247 -1246\n\t\tmu 0 3 6852 6853 6854\n\t\tf 3 -1247 1248 1249\n\t\tmu 0 3 6855 6856 6857\n\t\tf 3 -1244 1250 -1220\n\t\tmu 0 3 6858 6859 6860\n\t\tf 3 1251 1252 1253\n\t\tmu 0 3 6861 6862 6863\n\t\tf 3 1254 1255 -1254\n\t\tmu 0 3 6864 6865 6866\n\t\tf 3 -1252 1256 1257\n\t\tmu 0 3 6867 6868 6869\n\t\tf 3 -1205 1258 -1258\n\t\tmu 0 3 6870 6871 6872\n\t\tf 3 -1207 -1257 1259\n\t\tmu 0 3 6873 6874 6875\n\t\tf 3 1260 1261 -1260\n\t\tmu 0 3 6876 6877 6878\n\t\tf 3 -1261 -1256 1262\n\t\tmu 0 3 6879 6880 6881\n\t\tf 3 1263 1264 -1263\n\t\tmu 0 3 6882 6883 6884\n\t\tf 3 1265 -1265 1266\n\t\tmu 0 3 6885 6886 6887\n\t\tf 3 1267 1268 -1267\n\t\tmu 0 3 6888 6889 6890\n\t\tf 3 -1266 1269 1270\n\t\tmu 0 3 6891 6892 6893\n\t\tf 3 -1213 -1262 -1271\n\t\tmu 0 3 6894 6895 6896\n\t\tf 3 -1217 -1270 1271\n\t\tmu 0 3 6897 6898 6899\n\t\tf 3 1272 1273 -1272\n\t\tmu 0 3 6900 6901 6902\n\t\tf 3 -1273 -1269 1274\n\t\tmu 0 3 6903 6904 6905\n\t\tf 3 1275 1276 -1275\n\t\tmu 0 3 6906 6907 6908\n\t\tf 3 -1255 1277 1278\n\t\tmu 0 3 6909 6910 6911\n\t\tf 3 1279 1280 -1250\n\t\tmu 0 3 6912 6913 6914\n\t\tf 3 -1280 1281 1282\n\t\tmu 0 3 6915 6916 6917\n\t\tf 3 1283 1284 -1283\n\t\tmu 0 3 6918 6919 6920\n\t\tf 3 -1284 1285 1286\n\t\tmu 0 3 6921 6922 6923\n\t\tf 3 1287 1288 -1287\n\t\tmu 0 3 6924 6925 6926\n\t\tf 3 1289 1290 1291\n\t\tmu 0 3 6927 6928 6929\n\t\tf 3 1292 1293 -1292\n\t\tmu 0 3 6930 6931 6932\n\t\tf 3 -1294 1294 1295\n\t\tmu 0 3 6933 6934 6935\n\t\tf 3 1296 1297 -1296\n\t\tmu 0 3 6936 6937 6938\n\t\tf 3 1298 -1297 1299\n\t\tmu 0 3 6939 6940 6941\n\t\tf 3 1300 1301 -1300\n\t\tmu 0 3 6942 6943 6944\n\t\tf 3 1302 -1302 1303\n\t\tmu 0 3 6945 6946 6947\n\t\tf 3 1304 1305 -1304\n\t\tmu 0 3 6948 6949 6950\n\t\tf 3 -1288 1306 1307\n\t\tmu 0 3 6951 6952 6953\n\t\tf 3 1308 1309 1310\n\t\tmu 0 3 6954 6955 6956\n\t\tf 3 1311 1312 -1311\n\t\tmu 0 3 6957 6958 6959\n\t\tf 3 -1312 1313 1314\n\t\tmu 0 3 6960 6961 6962\n\t\tf 3 -1313 1315 1316\n\t\tmu 0 3 6963 6964 6965\n\t\tf 3 1317 1318 -1317\n\t\tmu 0 3 6966 6967 6968\n\t\tf 3 1319 1320 -1308\n\t\tmu 0 3 6969 6970 6971\n\t\tf 3 -1293 1321 1322\n\t\tmu 0 3 6972 6973 6974\n\t\tf 3 1323 -1320 1324\n\t\tmu 0 3 6975 6976 6977\n\t\tf 3 1325 1326 -1325\n\t\tmu 0 3 6978 6979 6980\n\t\tf 3 1327 1328 1329\n\t\tmu 0 3 6981 6982 6983\n\t\tf 3 -1328 1330 -1323\n\t\tmu 0 3 6984 6985 6986\n\t\tf 3 1331 1332 -1330\n\t\tmu 0 3 6987 6988 6989\n\t\tf 3 -1333 1333 1334\n\t\tmu 0 3 6990 6991 6992\n\t\tf 3 1335 1336 -1335\n\t\tmu 0 3 6993 6994 6995\n\t\tf 3 1337 -1336 1338\n\t\tmu 0 3 6996 6997 6998\n\t\tf 3 -1338 1339 1340\n\t\tmu 0 3 6999 7000 7001\n\t\tf 3 -1305 -1340 1341\n\t\tmu 0 3 7002 7003 7004\n\t\tf 3 1342 1343 -1339\n\t\tmu 0 3 7005 7006 7007\n\t\tf 3 1344 -1344 1345\n\t\tmu 0 3 7008 7009 7010\n\t\tf 3 -1345 1346 -1342\n\t\tmu 0 3 7011 7012 7013\n\t\tf 3 1347 1348 -1346\n\t\tmu 0 3 7014 7015 7016\n\t\tf 3 -1331 -1337 1349\n\t\tmu 0 3 7017 7018 7019\n\t\tf 3 1350 -1295 -1350\n\t\tmu 0 3 7020 7021 7022\n\t\tf 3 -1301 -1351 -1341\n\t\tmu 0 3 7023 7024 7025\n\t\tf 3 1351 -1318 1352\n\t\tmu 0 3 7026 7027 7028\n\t\tf 3 1353 -1352 1354\n\t\tmu 0 3 7029 7030 7031\n\t\tf 3 1355 1356 -1355\n\t\tmu 0 3 7032 7033 7034\n\t\tf 3 1357 -1356 1358\n\t\tmu 0 3 7035 7036 7037\n\t\tf 3 1359 1360 -1359\n\t\tmu 0 3 7038 7039 7040\n\t\tf 3 -1360 1361 1362\n\t\tmu 0 3 7041 7042 7043\n\t\tf 3 1363 -1362 -1353\n\t\tmu 0 3 7044 7045 7046\n\t\tf 3 1364 -1364 1365\n\t\tmu 0 3 7047 7048 7049\n\t\tf 3 1366 -1365 1367\n\t\tmu 0 3 7050 7051 7052\n\t\tf 3 -1367 1368 -1363\n\t\tmu 0 3 7053 7054 7055\n\t\tf 3 1369 1370 -1368\n\t\tmu 0 3 7056 7057 7058\n\t\tf 3 1371 -1370 1372\n\t\tmu 0 3 7059 7060 7061\n\t\tf 3 1373 1374 -1373\n\t\tmu 0 3 7062 7063 7064\n\t\tf 3 -1374 1375 1376\n\t\tmu 0 3 7065 7066 7067\n\t\tf 3 1377 -1376 -1366\n\t\tmu 0 3 7068 7069 7070\n\t\tf 3 1378 1379 -1377\n\t\tmu 0 3 7071 7072 7073\n\t\tf 3 1380 1381 -1375\n\t\tmu 0 3 7074 7075 7076\n\t\tf 3 -1381 -1380 1382\n\t\tmu 0 3 7077 7078 7079\n\t\tf 3 -1319 -1354 1383\n\t\tmu 0 3 7080 7081 7082\n\t\tf 3 1384 1385 -1384\n\t\tmu 0 3 7083 7084 7085\n\t\tf 3 -1309 -1386 1386\n\t\tmu 0 3 7086 7087 7088\n\t\tf 3 1387 1388 -1387\n\t\tmu 0 3 7089 7090 7091\n\t\tf 3 -1243 -1379 1389\n\t\tmu 0 3 7092 7093 7094\n\t\tf 3 1390 1391 -1390\n\t\tmu 0 3 7095 7096 7097\n\t\tf 3 -1391 -1378 1392\n\t\tmu 0 3 7098 7099 7100\n\t\tf 3 -1316 1393 -1393\n\t\tmu 0 3 7101 7102 7103\n\t\tf 3 1394 -1394 -1315\n\t\tmu 0 3 7104 7105 7106\n\t\tf 3 -1240 -1392 1395\n\t\tmu 0 3 7107 7108 7109\n\t\tf 3 -1395 1396 -1396\n\t\tmu 0 3 7110 7111 7112\n\t\tf 3 -1242 1397 -1383\n\t\tmu 0 3 7113 7114 7115\n\t\tf 3 1398 1399 1400\n\t\tmu 0 3 7116 7117 7118\n\t\tf 3 1401 1402 -1401\n\t\tmu 0 3 7119 7120 7121\n\t\tf 3 -1403 1403 1404\n\t\tmu 0 3 7122 7123 7124\n\t\tf 3 1405 1406 -1405\n\t\tmu 0 3 7125 7126 7127\n\t\tf 3 1407 -1406 1408\n\t\tmu 0 3 7128 7129 7130\n\t\tf 3 1409 1410 -1409\n\t\tmu 0 3 7131 7132 7133\n\t\tf 3 -1411 1411 1412\n\t\tmu 0 3 7134 7135 7136\n\t\tf 3 1413 1414 -1413\n\t\tmu 0 3 7137 7138 7139\n\t\tf 3 1415 -1414 1416\n\t\tmu 0 3 7140 7141 7142\n\t\tf 3 1417 1418 -1417\n\t\tmu 0 3 7143 7144 7145\n\t\tf 3 -1419 1419 1420\n\t\tmu 0 3 7146 7147 7148\n\t\tf 3 1421 1422 -1421\n\t\tmu 0 3 7149 7150 7151\n\t\tf 3 1423 -1422 1424\n\t\tmu 0 3 7152 7153 7154\n\t\tf 3 1425 1426 -1425\n\t\tmu 0 3 7155 7156 7157\n\t\tf 3 -1402 1427 1428\n\t\tmu 0 3 7158 7159 7160\n\t\tf 3 1429 1430 -1429\n\t\tmu 0 3 7161 7162 7163\n\t\tf 3 1431 -1404 1432\n\t\tmu 0 3 7164 7165 7166\n\t\tf 3 -1431 1433 -1433\n\t\tmu 0 3 7167 7168 7169\n\t\tf 3 -1410 -1432 1434\n\t\tmu 0 3 7170 7171 7172\n\t\tf 3 1435 1436 -1435\n\t\tmu 0 3 7173 7174 7175\n\t\tf 3 1437 -1412 1438\n\t\tmu 0 3 7176 7177 7178\n\t\tf 3 -1437 1439 -1439\n\t\tmu 0 3 7179 7180 7181\n\t\tf 3 -1418 -1438 1440\n\t\tmu 0 3 7182 7183 7184\n\t\tf 3 1441 1442 -1441\n\t\tmu 0 3 7185 7186 7187\n\t\tf 3 1443 -1420 1444\n\t\tmu 0 3 7188 7189 7190\n\t\tf 3 -1443 1445 -1445\n\t\tmu 0 3 7191 7192 7193\n\t\tf 3 -1426 -1444 1446\n\t\tmu 0 3 7194 7195 7196\n\t\tf 3 1447 1448 -1447\n\t\tmu 0 3 7197 7198 7199\n\t\tf 3 -1430 1449 1450\n\t\tmu 0 3 7200 7201 7202\n\t\tf 3 1451 1452 -1451\n\t\tmu 0 3 7203 7204 7205\n\t\tf 3 -1434 -1453 1453\n\t\tmu 0 3 7206 7207 7208\n\t\tf 3 -1452 1454 1455\n\t\tmu 0 3 7209 7210 7211\n\t\tf 3 1456 1457 -1456\n\t\tmu 0 3 7212 7213 7214\n\t\tf 3 -1457 1458 1459\n\t\tmu 0 3 7215 7216 7217\n\t\tf 3 1460 1461 -1460\n\t\tmu 0 3 7218 7219 7220\n\t\tf 3 -1461 1462 1463\n\t\tmu 0 3 7221 7222 7223\n\t\tf 3 1464 1465 -1464\n\t\tmu 0 3 7224 7225 7226\n\t\tf 3 1466 -1462 1467\n\t\tmu 0 3 7227 7228 7229\n\t\tf 3 1468 1469 -1468\n\t\tmu 0 3 7230 7231 7232\n\t\tf 3 -1469 -1466 1470\n\t\tmu 0 3 7233 7234 7235\n\t\tf 3 1471 1472 -1471\n\t\tmu 0 3 7236 7237 7238\n\t\tf 3 1473 -1473 1474\n\t\tmu 0 3 7239 7240 7241\n\t\tf 3 1475 1476 -1475\n\t\tmu 0 3 7242 7243 7244\n\t\tf 3 -1474 1477 1478\n\t\tmu 0 3 7245 7246 7247\n\t\tf 3 1479 -1470 -1479\n\t\tmu 0 3 7248 7249 7250\n\t\tf 3 1480 -1478 1481\n\t\tmu 0 3 7251 7252 7253\n\t\tf 3 1482 1483 -1482\n\t\tmu 0 3 7254 7255 7256\n\t\tf 3 -1483 -1477 1484\n\t\tmu 0 3 7257 7258 7259\n\t\tf 3 1485 1486 -1485\n\t\tmu 0 3 7260 7261 7262\n\t\tf 3 1487 1488 1489\n\t\tmu 0 3 7263 7264 7265\n\t\tf 3 1490 1491 -1490\n\t\tmu 0 3 7266 7267 7268\n\t\tf 3 -1488 1492 1493\n\t\tmu 0 3 7269 7270 7271\n\t\tf 3 1494 -1484 -1494\n\t\tmu 0 3 7272 7273 7274\n\t\tf 3 1495 -1493 1496\n\t\tmu 0 3 7275 7276 7277\n\t\tf 3 1497 1498 -1497\n\t\tmu 0 3 7278 7279 7280\n\t\tf 3 1499 -1498 -1492\n\t\tmu 0 3 7281 7282 7283\n\t\tf 3 1500 1501 -1500\n\t\tmu 0 3 7284 7285 7286\n\t\tf 3 1502 1503 -1501\n\t\tmu 0 3 7287 7288 7289\n\t\tf 3 -1480 1504 1505\n\t\tmu 0 3 7290 7291 7292\n\t\tf 3 1506 -1505 1507\n\t\tmu 0 3 7293 7294 7295\n\t\tf 3 -1481 1508 -1508\n\t\tmu 0 3 7296 7297 7298\n\t\tf 3 -1507 1509 1510\n\t\tmu 0 3 7299 7300 7301\n\t\tf 3 -1440 1511 -1511\n\t\tmu 0 3 7302 7303 7304\n\t\tf 3 1512 -1512 1513\n\t\tmu 0 3 7305 7306 7307\n\t\tf 3 -1513 1514 -1506\n\t\tmu 0 3 7308 7309 7310\n\t\tf 3 -1467 -1515 1515\n\t\tmu 0 3 7311 7312 7313\n\t\tf 3 1516 -1458 -1516\n\t\tmu 0 3 7314 7315 7316\n\t\tf 3 -1517 1517 -1454\n\t\tmu 0 3 7317 7318 7319\n\t\tf 3 -1436 -1518 -1514\n\t\tmu 0 3 7320 7321 7322\n\t\tf 3 -1442 -1510 1518\n\t\tmu 0 3 7323 7324 7325\n\t\tf 3 1519 1520 -1519\n\t\tmu 0 3 7326 7327 7328\n\t\tf 3 -1495 1521 1522\n\t\tmu 0 3 7329 7330 7331\n\t\tf 3 -1520 -1509 -1523\n\t\tmu 0 3 7332 7333 7334\n\t\tf 3 -1446 -1521 1523\n\t\tmu 0 3 7335 7336 7337\n\t\tf 3 1524 1525 -1524\n\t\tmu 0 3 7338 7339 7340\n\t\tf 3 -1525 -1522 1526\n\t\tmu 0 3 7341 7342 7343\n\t\tf 3 -1496 1527 -1527\n\t\tmu 0 3 7344 7345 7346\n\t\tf 3 1528 -1528 1529\n\t\tmu 0 3 7347 7348 7349\n\t\tf 3 1530 1531 -1530\n\t\tmu 0 3 7350 7351 7352\n\t\tf 3 -1529 1532 1533\n\t\tmu 0 3 7353 7354 7355\n\t\tf 3 -1448 -1526 -1534\n\t\tmu 0 3 7356 7357 7358\n\t\tf 3 1534 -1531 1535\n\t\tmu 0 3 7359 7360 7361\n\t\tf 3 -1499 1536 -1536\n\t\tmu 0 3 7362 7363 7364\n\t\tf 3 -1537 -1502 1537\n\t\tmu 0 3 7365 7366 7367\n\t\tf 3 1538 1539 1540\n\t\tmu 0 3 7368 7369 7370\n\t\tf 3 1541 1542 -1541\n\t\tmu 0 3 7371 7372 7373\n\t\tf 3 -1543 1543 1544\n\t\tmu 0 3 7374 7375 7376\n\t\tf 3 1545 1546 -1545\n\t\tmu 0 3 7377 7378 7379\n\t\tf 3 1547 -1546 1548\n\t\tmu 0 3 7380 7381 7382\n\t\tf 3 1549 1550 -1549\n\t\tmu 0 3 7383 7384 7385\n\t\tf 3 -1551 1551 1552\n\t\tmu 0 3 7386 7387 7388\n\t\tf 3 1553 1554 -1553\n\t\tmu 0 3 7389 7390 7391\n\t\tf 3 1555 -1554 1556\n\t\tmu 0 3 7392 7393 7394\n\t\tf 3 1557 1558 -1557\n\t\tmu 0 3 7395 7396 7397\n\t\tf 3 -1559 1559 1560\n\t\tmu 0 3 7398 7399 7400\n\t\tf 3 1561 1562 -1561\n\t\tmu 0 3 7401 7402 7403\n\t\tf 3 1563 -1562 1564\n\t\tmu 0 3 7404 7405 7406\n\t\tf 3 1565 1566 -1565\n\t\tmu 0 3 7407 7408 7409\n\t\tf 3 1567 1568 1569\n\t\tmu 0 3 7410 7411 7412\n\t\tf 3 1570 1571 -1570\n\t\tmu 0 3 7413 7414 7415\n\t\tf 3 1572 1573 1574\n\t\tmu 0 3 7416 7417 7418\n\t\tf 3 1575 1576 -1575\n\t\tmu 0 3 7419 7420 7421\n\t\tf 3 1577 1578 1579\n\t\tmu 0 3 7422 7423 7424\n\t\tf 3 1580 1581 -1580\n\t\tmu 0 3 7425 7426 7427\n\t\tf 3 -1555 1582 1583\n\t\tmu 0 3 7428 7429 7430\n\t\tf 3 -1556 1584 1585\n\t\tmu 0 3 7431 7432 7433\n\t\tf 3 1586 -1583 -1586\n\t\tmu 0 3 7434 7435 7436\n\t\tf 3 -1587 1587 1588\n\t\tmu 0 3 7437 7438 7439\n\t\tf 3 1589 1590 -1589\n\t\tmu 0 3 7440 7441 7442\n\t\tf 3 1591 -1591 1592\n\t\tmu 0 3 7443 7444 7445\n\t\tf 3 1593 1594 -1593\n\t\tmu 0 3 7446 7447 7448\n\t\tf 3 1595 -1595 1596\n\t\tmu 0 3 7449 7450 7451\n\t\tf 3 -1596 1597 1598\n\t\tmu 0 3 7452 7453 7454\n\t\tf 3 -1547 -1598 1599\n\t\tmu 0 3 7455 7456 7457\n\t\tf 3 1600 1601 -1600\n\t\tmu 0 3 7458 7459 7460\n\t\tf 3 -1539 -1602 1602\n\t\tmu 0 3 7461 7462 7463\n\t\tf 3 1603 1604 -1603\n\t\tmu 0 3 7464 7465 7466\n\t\tf 3 -1604 1605 1606\n\t\tmu 0 3 7467 7468 7469\n\t\tf 3 1607 1608 -1607\n\t\tmu 0 3 7470 7471 7472\n\t\tf 3 1609 -1606 1610\n\t\tmu 0 3 7473 7474 7475\n\t\tf 3 -1601 1611 -1611\n\t\tmu 0 3 7476 7477 7478\n\t\tf 3 1612 -1612 -1597\n\t\tmu 0 3 7479 7480 7481\n\t\tf 3 -1548 1613 -1599\n\t\tmu 0 3 7482 7483 7484\n\t\tf 3 -1592 -1614 -1584\n\t\tmu 0 3 7485 7486 7487\n\t\tf 3 1614 -1588 1615\n\t\tmu 0 3 7488 7489 7490\n\t\tf 3 1616 1617 -1616\n\t\tmu 0 3 7491 7492 7493\n\t\tf 3 1618 -1618 1619\n\t\tmu 0 3 7494 7495 7496\n\t\tf 3 1620 1621 -1620\n\t\tmu 0 3 7497 7498 7499\n\t\tf 3 1622 -1622 1623\n\t\tmu 0 3 7500 7501 7502\n\t\tf 3 1624 1625 -1624\n\t\tmu 0 3 7503 7504 7505\n\t\tf 3 -1625 1626 1627\n\t\tmu 0 3 7506 7507 7508\n\t\tf 3 -1568 1628 -1628\n\t\tmu 0 3 7509 7510 7511\n\t\tf 3 1629 1630 1631\n\t\tmu 0 3 7512 7513 7514\n\t\tf 3 -1573 1632 -1632\n\t\tmu 0 3 7515 7516 7517\n\t\tf 3 -1630 1633 1634\n\t\tmu 0 3 7518 7519 7520\n\t\tf 3 1635 -1626 -1635\n\t\tmu 0 3 7521 7522 7523\n\t\tf 3 1636 -1634 1637\n\t\tmu 0 3 7524 7525 7526\n\t\tf 3 1638 1639 -1638\n\t\tmu 0 3 7527 7528 7529\n\t\tf 3 -1639 -1633 1640\n\t\tmu 0 3 7530 7531 7532\n\t\tf 3 -1582 1641 -1641\n\t\tmu 0 3 7533 7534 7535\n\t\tf 3 -1564 1642 1643\n\t\tmu 0 3 7536 7537 7538\n\t\tf 3 -1621 1644 -1644\n\t\tmu 0 3 7539 7540 7541\n\t\tf 3 -1563 -1645 1645\n\t\tmu 0 3 7542 7543 7544\n\t\tf 3 -1617 -1585 -1646\n\t\tmu 0 3 7545 7546 7547\n\t\tf 3 1646 -1623 1647\n\t\tmu 0 3 7548 7549 7550\n\t\tf 3 -1636 1648 -1648\n\t\tmu 0 3 7551 7552 7553\n\t\tf 3 -1649 -1637 1649\n\t\tmu 0 3 7554 7555 7556\n\t\tf 3 1650 1651 -1650\n\t\tmu 0 3 7557 7558 7559\n\t\tf 3 1652 -1651 1653\n\t\tmu 0 3 7560 7561 7562\n\t\tf 3 1654 1655 -1654\n\t\tmu 0 3 7563 7564 7565\n\t\tf 3 -1655 -1640 1656\n\t\tmu 0 3 7566 7567 7568\n\t\tf 3 1657 -1656 1658\n\t\tmu 0 3 7569 7570 7571\n\t\tf 3 1659 1660 -1659\n\t\tmu 0 3 7572 7573 7574\n\t\tf 3 1661 1662 1663\n\t\tmu 0 3 7575 7576 7577\n\t\tf 3 -1662 1664 -1657\n\t\tmu 0 3 7578 7579 7580\n\t\tf 3 -1660 -1665 1665\n\t\tmu 0 3 7581 7582 7583\n\t\tf 3 1666 1667 -1664\n\t\tmu 0 3 7584 7585 7586\n\t\tf 3 -1667 1668 1669\n\t\tmu 0 3 7587 7588 7589\n\t\tf 3 1670 1671 -1670\n\t\tmu 0 3 7590 7591 7592\n\t\tf 3 -1671 1672 1673\n\t\tmu 0 3 7593 7594 7595\n\t\tf 3 -1673 -1579 1674\n\t\tmu 0 3 7596 7597 7598\n\t\tf 3 1675 1676 -1675\n\t\tmu 0 3 7599 7600 7601\n\t\tf 3 1677 1678 1679\n\t\tmu 0 3 7602 7603 7604\n\t\tf 3 -1576 1680 -1680\n\t\tmu 0 3 7605 7606 7607\n\t\tf 3 1681 1682 1683\n\t\tmu 0 3 7608 7609 7610\n\t\tf 3 -1571 1684 -1684\n\t\tmu 0 3 7611 7612 7613\n\t\tf 3 1685 -1566 1686\n\t\tmu 0 3 7614 7615 7616\n\t\tf 3 1687 1688 -1687\n\t\tmu 0 3 7617 7618 7619\n\t\tf 3 -1688 -1560 1689\n\t\tmu 0 3 7620 7621 7622\n\t\tf 3 1690 1691 -1690\n\t\tmu 0 3 7623 7624 7625\n\t\tf 3 1692 -1691 1693\n\t\tmu 0 3 7626 7627 7628\n\t\tf 3 -1558 1694 -1694\n\t\tmu 0 3 7629 7630 7631\n\t\tf 3 -1695 -1552 1695\n\t\tmu 0 3 7632 7633 7634\n\t\tf 3 1696 1697 -1696\n\t\tmu 0 3 7635 7636 7637\n\t\tf 3 1698 -1697 1699\n\t\tmu 0 3 7638 7639 7640\n\t\tf 3 -1550 1700 -1700\n\t\tmu 0 3 7641 7642 7643\n\t\tf 3 -1701 -1544 1701\n\t\tmu 0 3 7644 7645 7646\n\t\tf 3 1702 1703 -1702\n\t\tmu 0 3 7647 7648 7649\n\t\tf 3 1704 -1703 1705\n\t\tmu 0 3 7650 7651 7652\n\t\tf 3 -1542 1706 -1706\n\t\tmu 0 3 7653 7654 7655\n\t\tf 3 1707 1708 1709\n\t\tmu 0 3 7656 7657 7658\n\t\tf 3 1710 1711 -1710\n\t\tmu 0 3 7659 7660 7661\n\t\tf 3 -1712 1712 1713\n\t\tmu 0 3 7662 7663 7664\n\t\tf 3 1714 1715 -1714\n\t\tmu 0 3 7665 7666 7667\n\t\tf 3 1716 -1715 1717\n\t\tmu 0 3 7668 7669 7670\n\t\tf 3 1718 1719 -1718\n\t\tmu 0 3 7671 7672 7673\n\t\tf 3 -1720 1720 1721\n\t\tmu 0 3 7674 7675 7676\n\t\tf 3 1722 1723 -1722\n\t\tmu 0 3 7677 7678 7679\n\t\tf 3 1724 -1723 1725\n\t\tmu 0 3 7680 7681 7682\n\t\tf 3 1726 1727 -1726\n\t\tmu 0 3 7683 7684 7685\n\t\tf 3 -1728 1728 1729\n\t\tmu 0 3 7686 7687 7688\n\t\tf 3 1730 1731 -1730\n\t\tmu 0 3 7689 7690 7691\n\t\tf 3 1732 -1731 1733\n\t\tmu 0 3 7692 7693 7694\n\t\tf 3 1734 1735 -1734\n\t\tmu 0 3 7695 7696 7697\n\t\tf 3 -1736 1736 1737\n\t\tmu 0 3 7698 7699 7700\n\t\tf 3 1738 1739 -1738\n\t\tmu 0 3 7701 7702 7703\n\t\tf 3 1740 -1739 1741\n\t\tmu 0 3 7704 7705 7706\n\t\tf 3 1742 1743 -1742\n\t\tmu 0 3 7707 7708 7709\n\t\tf 3 -1744 1744 1745\n\t\tmu 0 3 7710 7711 7712\n\t\tf 3 1746 1747 -1746\n\t\tmu 0 3 7713 7714 7715\n\t\tf 3 -1202 1748 1749\n\t\tmu 0 3 7716 7717 7718\n\t\tf 3 1750 1751 -1750\n\t\tmu 0 3 7719 7720 7721\n\t\tf 3 1752 -1749 1753\n\t\tmu 0 3 7722 7723 7724\n\t\tf 3 -1203 1754 -1754\n\t\tmu 0 3 7725 7726 7727\n\t\tf 3 1755 -1210 1756\n\t\tmu 0 3 7728 7729 7730\n\t\tf 3 1757 1758 -1757\n\t\tmu 0 3 7731 7732 7733\n\t\tf 3 1759 -1758 1760\n\t\tmu 0 3 7734 7735 7736\n\t\tf 3 -1211 1761 -1761\n\t\tmu 0 3 7737 7738 7739\n\t\tf 3 1762 -1762 1763\n\t\tmu 0 3 5911 7740 7741\n\t\tf 3 -1215 1764 -1764\n\t\tmu 0 3 7742 7743 5911\n\t\tf 3 1765 1766 -1674\n\t\tmu 0 3 7744 7745 7746\n\t\tf 3 1767 -1767 1768\n\t\tmu 0 3 7747 7748 7749\n\t\tf 3 1769 1770 -1769\n\t\tmu 0 3 7750 4763 7751\n\t\tf 3 -1768 1771 1772\n\t\tmu 0 3 7752 7753 7754\n\t\tf 3 1773 -1672 -1773\n\t\tmu 0 3 7755 7756 7757\n\t\tf 3 -1774 1774 1775\n\t\tmu 0 3 7758 7759 7760\n\t\tf 3 1776 -1668 -1776\n\t\tmu 0 3 7761 7762 7763\n\t\tf 3 -1777 1777 -1666\n\t\tmu 0 3 7764 7765 7766\n\t\tf 3 1778 1779 1780\n\t\tmu 0 3 7767 7768 7769\n\t\tf 3 1781 1782 -1781\n\t\tmu 0 3 7770 7771 7772\n\t\tf 3 1783 1784 1785\n\t\tmu 0 3 7773 7774 7775\n\t\tf 3 1786 1787 -1786\n\t\tmu 0 3 7776 7777 7778;\n\tsetAttr \".fc[1000:1499]\"\n\t\tf 3 1788 1789 1790\n\t\tmu 0 3 7779 7780 7781\n\t\tf 3 -1789 1791 1792\n\t\tmu 0 3 7782 7783 7784\n\t\tf 3 1793 1794 -1793\n\t\tmu 0 3 7785 7786 7787\n\t\tf 3 -1794 1795 1796\n\t\tmu 0 3 7788 7789 7790\n\t\tf 3 1797 1798 -1797\n\t\tmu 0 3 7791 7792 7793\n\t\tf 3 -1798 1799 1800\n\t\tmu 0 3 7794 7795 7796\n\t\tf 3 1801 1802 -1801\n\t\tmu 0 3 7797 7798 7799\n\t\tf 3 -1802 1803 1804\n\t\tmu 0 3 7800 7801 7802\n\t\tf 3 1805 1806 -1805\n\t\tmu 0 3 7803 7804 7805\n\t\tf 3 -1806 1807 1808\n\t\tmu 0 3 7806 7807 7808\n\t\tf 3 1809 1810 -1809\n\t\tmu 0 3 7809 7810 7811\n\t\tf 3 -1810 1811 1812\n\t\tmu 0 3 7812 7813 7814\n\t\tf 3 1813 1814 -1813\n\t\tmu 0 3 7815 7816 7817\n\t\tf 3 -1814 1815 1816\n\t\tmu 0 3 7818 7819 7820\n\t\tf 3 1817 1818 -1817\n\t\tmu 0 3 7821 7822 7823\n\t\tf 3 -1818 1819 1820\n\t\tmu 0 3 7824 7825 7826\n\t\tf 3 1821 1822 -1821\n\t\tmu 0 3 7827 7828 7829\n\t\tf 3 -1822 1823 1824\n\t\tmu 0 3 7830 7831 7832\n\t\tf 3 1825 1826 -1825\n\t\tmu 0 3 7833 7834 7835\n\t\tf 3 1827 1828 1829\n\t\tmu 0 3 7836 7837 7838\n\t\tf 3 1830 1831 -1830\n\t\tmu 0 3 7839 7840 7841\n\t\tf 3 1832 1833 1834\n\t\tmu 0 3 7842 7843 3569\n\t\tf 3 1835 1836 -1835\n\t\tmu 0 3 3569 379 7844\n\t\tf 3 1837 1838 1839\n\t\tmu 0 3 7845 7846 7847\n\t\tf 3 -1832 1840 -1840\n\t\tmu 0 3 7848 7849 7850\n\t\tf 3 1841 -1838 1842\n\t\tmu 0 3 7851 7852 7853\n\t\tf 3 1843 -1837 1844\n\t\tmu 0 3 7854 7855 7856\n\t\tf 3 1845 1846 -1845\n\t\tmu 0 3 7857 7858 7859\n\t\tf 3 1847 1848 -1843\n\t\tmu 0 3 7860 7861 7862\n\t\tf 3 1849 1850 1851\n\t\tmu 0 3 7863 7864 7865\n\t\tf 3 -1847 1852 -1852\n\t\tmu 0 3 7866 7867 7868\n\t\tf 3 1853 -1850 1854\n\t\tmu 0 3 7869 7870 7871\n\t\tf 3 1855 1856 -1855\n\t\tmu 0 3 7872 7873 7874\n\t\tf 3 -1849 1857 1858\n\t\tmu 0 3 7875 7876 7877\n\t\tf 3 1859 1860 -1859\n\t\tmu 0 3 7878 7879 7880\n\t\tf 3 1861 -1860 1862\n\t\tmu 0 3 7881 7882 7883\n\t\tf 3 1863 1864 -1863\n\t\tmu 0 3 7884 7885 7886\n\t\tf 3 1865 1866 1867\n\t\tmu 0 3 7887 7888 7889\n\t\tf 3 -1857 1868 -1868\n\t\tmu 0 3 7890 7891 7892\n\t\tf 3 -1865 1869 1870\n\t\tmu 0 3 7893 7894 7895\n\t\tf 3 1871 -1866 1872\n\t\tmu 0 3 7896 7897 7898\n\t\tf 3 1873 1874 -1873\n\t\tmu 0 3 7899 7900 7901\n\t\tf 3 1875 1876 -1871\n\t\tmu 0 3 7902 7903 7904\n\t\tf 3 1877 -1876 1878\n\t\tmu 0 3 7905 7906 7907\n\t\tf 3 1879 1880 -1879\n\t\tmu 0 3 7908 7909 7910\n\t\tf 3 1881 1882 1883\n\t\tmu 0 3 7911 7912 7913\n\t\tf 3 -1875 1884 -1884\n\t\tmu 0 3 7914 7915 7916\n\t\tf 3 -1881 1885 1886\n\t\tmu 0 3 7917 7918 7919\n\t\tf 3 1887 -1882 1888\n\t\tmu 0 3 7920 7921 7922\n\t\tf 3 1889 1890 -1889\n\t\tmu 0 3 7923 7924 7925\n\t\tf 3 1891 1892 -1887\n\t\tmu 0 3 7926 7927 7928\n\t\tf 3 1893 -1892 1894\n\t\tmu 0 3 7929 7930 7931\n\t\tf 3 1895 -1788 -1895\n\t\tmu 0 3 7932 7933 7934\n\t\tf 3 -1783 1896 1897\n\t\tmu 0 3 7935 7936 7937\n\t\tf 3 -1891 1898 -1898\n\t\tmu 0 3 7938 7939 7940\n\t\tf 3 1899 1900 1901\n\t\tmu 0 3 7941 7942 7943\n\t\tf 3 1902 1903 -1902\n\t\tmu 0 3 7944 7945 7946\n\t\tf 3 -1900 1904 1905\n\t\tmu 0 3 7947 7948 7949\n\t\tf 3 1906 1907 -1906\n\t\tmu 0 3 7950 7951 7952\n\t\tf 3 -1903 1908 1909\n\t\tmu 0 3 7953 7954 7955\n\t\tf 3 1910 1911 -1910\n\t\tmu 0 3 7956 7957 7958\n\t\tf 3 -1911 1912 1913\n\t\tmu 0 3 7959 7960 7961\n\t\tf 3 1914 1915 -1914\n\t\tmu 0 3 7962 7963 7964\n\t\tf 3 -1915 1916 1917\n\t\tmu 0 3 7965 7966 7967\n\t\tf 3 1918 1919 -1918\n\t\tmu 0 3 7968 7969 7970\n\t\tf 3 -1919 1920 1921\n\t\tmu 0 3 7971 7972 7973\n\t\tf 3 1922 1923 -1922\n\t\tmu 0 3 7974 7975 7976\n\t\tf 3 -1923 1924 1925\n\t\tmu 0 3 7977 7978 7979\n\t\tf 3 1926 1927 -1926\n\t\tmu 0 3 7980 7981 7982\n\t\tf 3 -1927 1928 1929\n\t\tmu 0 3 7983 7984 7985\n\t\tf 3 1930 1931 -1930\n\t\tmu 0 3 7986 7987 7988\n\t\tf 3 -1931 1932 1933\n\t\tmu 0 3 7989 7990 7991\n\t\tf 3 1934 1935 -1934\n\t\tmu 0 3 7992 7993 7994\n\t\tf 3 -1935 1936 1937\n\t\tmu 0 3 7995 7996 7997\n\t\tf 3 1938 1939 -1938\n\t\tmu 0 3 7998 7999 8000\n\t\tf 3 1940 1941 1942\n\t\tmu 0 3 8001 8002 8003\n\t\tf 3 1943 1944 -1943\n\t\tmu 0 3 8004 8005 8006\n\t\tf 3 -1945 1945 1946\n\t\tmu 0 3 8007 8008 8009\n\t\tf 3 1947 1948 -1947\n\t\tmu 0 3 8010 8011 8012\n\t\tf 3 1949 -1948 1950\n\t\tmu 0 3 8013 8014 8015\n\t\tf 3 1951 1952 -1951\n\t\tmu 0 3 8016 8017 8018\n\t\tf 3 -1953 1953 1954\n\t\tmu 0 3 8019 8020 8021\n\t\tf 3 1955 1956 -1955\n\t\tmu 0 3 8022 8023 8024\n\t\tf 3 1957 -1956 1958\n\t\tmu 0 3 8025 8026 8027\n\t\tf 3 1959 1960 -1959\n\t\tmu 0 3 8028 8029 8030\n\t\tf 3 -1961 1961 1962\n\t\tmu 0 3 8031 8032 8033\n\t\tf 3 1963 1964 -1963\n\t\tmu 0 3 8034 8035 8036\n\t\tf 3 1965 -1964 1966\n\t\tmu 0 3 8037 8038 8039\n\t\tf 3 -1647 1967 -1967\n\t\tmu 0 3 8040 8041 8042\n\t\tf 3 -1968 -1652 1968\n\t\tmu 0 3 8043 8044 8045\n\t\tf 3 1969 1970 -1969\n\t\tmu 0 3 8046 8047 8048\n\t\tf 3 1971 -1970 1972\n\t\tmu 0 3 8049 8050 8051\n\t\tf 3 -1653 1973 -1973\n\t\tmu 0 3 8052 8053 8054\n\t\tf 3 -1974 -1658 1974\n\t\tmu 0 3 8055 8056 8057\n\t\tf 3 1975 1976 -1975\n\t\tmu 0 3 8058 8059 8060\n\t\tf 3 1977 -1954 1978\n\t\tmu 0 3 8061 8062 8063\n\t\tf 3 -1960 -1978 1979\n\t\tmu 0 3 8064 8065 8066\n\t\tf 3 1980 -1594 -1979\n\t\tmu 0 3 8067 8068 8069\n\t\tf 3 -1590 1981 -1980\n\t\tmu 0 3 8070 8071 8072\n\t\tf 3 -1962 -1982 1982\n\t\tmu 0 3 8073 8074 8075\n\t\tf 3 -1615 -1619 -1983\n\t\tmu 0 3 8076 8077 8078\n\t\tf 3 -1613 -1981 1983\n\t\tmu 0 3 8079 8080 8081\n\t\tf 3 -1952 1984 -1984\n\t\tmu 0 3 8082 8083 8084\n\t\tf 3 -1985 -1946 1985\n\t\tmu 0 3 8085 8086 8087\n\t\tf 3 1986 -1610 -1986\n\t\tmu 0 3 8088 8089 8090\n\t\tf 3 -1608 -1987 1987\n\t\tmu 0 3 8091 8092 8093\n\t\tf 3 -1944 1988 -1988\n\t\tmu 0 3 8094 8095 8096\n\t\tf 3 1989 1990 1991\n\t\tmu 0 3 8097 8098 8099\n\t\tf 3 -1779 1992 -1992\n\t\tmu 0 3 8100 8101 8102\n\t\tf 3 -1993 -1899 1993\n\t\tmu 0 3 8103 8104 8105\n\t\tf 3 1994 1995 -1994\n\t\tmu 0 3 8106 8107 8108\n\t\tf 3 1996 -1995 1997\n\t\tmu 0 3 8109 8110 8111\n\t\tf 3 -1890 1998 -1998\n\t\tmu 0 3 8112 8113 8114\n\t\tf 3 -1999 -1885 1999\n\t\tmu 0 3 8115 8116 8117\n\t\tf 3 2000 2001 -2000\n\t\tmu 0 3 8118 8119 8120\n\t\tf 3 2002 2003 2004\n\t\tmu 0 3 8121 8122 8123\n\t\tf 3 -1874 2005 -2005\n\t\tmu 0 3 8124 8125 8126\n\t\tf 3 -2006 -1869 2006\n\t\tmu 0 3 8127 8128 8129\n\t\tf 3 2007 2008 -2007\n\t\tmu 0 3 8130 8131 8132\n\t\tf 3 2009 -2008 2010\n\t\tmu 0 3 8133 8134 8135\n\t\tf 3 -1856 2011 -2011\n\t\tmu 0 3 8136 8137 8138\n\t\tf 3 -2012 -1853 2012\n\t\tmu 0 3 8139 8140 8141\n\t\tf 3 2013 2014 -2013\n\t\tmu 0 3 8142 8143 8144\n\t\tf 3 2015 -2014 2016\n\t\tmu 0 3 8145 8146 8147\n\t\tf 3 -1846 2017 -2017\n\t\tmu 0 3 8148 8149 8150\n\t\tf 3 -2018 -1836 2018\n\t\tmu 0 3 8151 8152 8153\n\t\tf 3 2019 2020 -2019\n\t\tmu 0 3 8154 8155 8156\n\t\tf 3 2021 -2002 2022\n\t\tmu 0 3 8157 8158 8159\n\t\tf 3 2023 2024 -2023\n\t\tmu 0 3 8160 8161 8162\n\t\tf 3 -2022 2025 2026\n\t\tmu 0 3 8163 8164 8165\n\t\tf 3 2027 -1997 -2027\n\t\tmu 0 3 8166 8167 8168\n\t\tf 3 -2028 2028 2029\n\t\tmu 0 3 8169 8170 8171\n\t\tf 3 2030 -1996 -2030\n\t\tmu 0 3 8172 8173 8174\n\t\tf 3 -2031 2031 2032\n\t\tmu 0 3 8175 8176 8177\n\t\tf 3 2033 -1990 -2033\n\t\tmu 0 3 8178 8179 8180\n\t\tf 3 2034 2035 -1791\n\t\tmu 0 3 8181 8182 8183\n\t\tf 3 2036 2037 2038\n\t\tmu 0 3 8184 8185 8186\n\t\tf 3 2039 2040 -2039\n\t\tmu 0 3 8187 8188 8189\n\t\tf 3 -2041 2041 2042\n\t\tmu 0 3 8190 8191 8192\n\t\tf 3 2043 2044 -2043\n\t\tmu 0 3 8193 8194 8195\n\t\tf 3 2045 -2044 2046\n\t\tmu 0 3 8196 8197 8198\n\t\tf 3 2047 2048 -2047\n\t\tmu 0 3 8199 8200 8201\n\t\tf 3 -2049 2049 2050\n\t\tmu 0 3 8202 8203 8204\n\t\tf 3 2051 2052 -2051\n\t\tmu 0 3 8205 8206 8207\n\t\tf 3 2053 -2052 2054\n\t\tmu 0 3 8208 8209 8210\n\t\tf 3 2055 2056 -2055\n\t\tmu 0 3 8211 8212 8213\n\t\tf 3 -2057 2057 2058\n\t\tmu 0 3 8214 8215 8216\n\t\tf 3 2059 2060 -2059\n\t\tmu 0 3 8217 8218 8219\n\t\tf 3 2061 -2060 2062\n\t\tmu 0 3 8220 8221 8222\n\t\tf 3 2063 2064 -2063\n\t\tmu 0 3 8223 8224 8225\n\t\tf 3 2065 2066 2067\n\t\tmu 0 3 8226 8227 8228\n\t\tf 3 2068 2069 -2068\n\t\tmu 0 3 8229 8230 8231\n\t\tf 3 2070 2071 2072\n\t\tmu 0 3 8232 8233 8234\n\t\tf 3 2073 2074 -2073\n\t\tmu 0 3 8235 8236 8237\n\t\tf 3 2075 2076 2077\n\t\tmu 0 3 8238 8239 8240\n\t\tf 3 2078 2079 -2078\n\t\tmu 0 3 8241 8242 8243\n\t\tf 3 2080 -2079 2081\n\t\tmu 0 3 8244 8245 8246\n\t\tf 3 2082 2083 -2082\n\t\tmu 0 3 8247 8248 8249\n\t\tf 3 -2084 2084 2085\n\t\tmu 0 3 8250 8251 8252\n\t\tf 3 2086 2087 -2086\n\t\tmu 0 3 8253 8254 8255\n\t\tf 3 2088 2089 2090\n\t\tmu 0 3 8256 8257 8258\n\t\tf 3 2091 2092 -2091\n\t\tmu 0 3 8259 8260 8261\n\t\tf 3 -2089 2093 2094\n\t\tmu 0 3 8262 8263 8264\n\t\tf 3 2095 2096 -2095\n\t\tmu 0 3 8265 8266 8267\n\t\tf 3 -2092 2097 2098\n\t\tmu 0 3 8268 8269 8270\n\t\tf 3 2099 2100 -2099\n\t\tmu 0 3 8271 8272 8273\n\t\tf 3 -2100 2101 2102\n\t\tmu 0 3 8274 8275 8276\n\t\tf 3 2103 2104 -2103\n\t\tmu 0 3 8277 8278 8279\n\t\tf 3 -2104 2105 2106\n\t\tmu 0 3 8280 8281 8282\n\t\tf 3 2107 2108 -2107\n\t\tmu 0 3 8283 8284 8285\n\t\tf 3 -2108 2109 2110\n\t\tmu 0 3 8286 8287 8288\n\t\tf 3 2111 2112 -2111\n\t\tmu 0 3 8289 8290 8291\n\t\tf 3 2113 -2112 2114\n\t\tmu 0 3 8292 8293 8294\n\t\tf 3 2115 2116 -2115\n\t\tmu 0 3 8295 8296 8297\n\t\tf 3 2117 -2117 2118\n\t\tmu 0 3 8298 8299 8300\n\t\tf 3 2119 2120 -2119\n\t\tmu 0 3 8301 8302 8303\n\t\tf 3 -2121 2121 2122\n\t\tmu 0 3 8304 8305 8306\n\t\tf 3 2123 2124 -2123\n\t\tmu 0 3 8307 8308 8309\n\t\tf 3 -2124 2125 2126\n\t\tmu 0 3 8310 8311 8312\n\t\tf 3 2127 2128 -2127\n\t\tmu 0 3 8313 8314 8315\n\t\tf 3 -2128 2129 2130\n\t\tmu 0 3 8316 8317 8318\n\t\tf 3 2131 2132 -2131\n\t\tmu 0 3 8319 8320 8321\n\t\tf 3 -2132 2133 2134\n\t\tmu 0 3 8322 8323 8324\n\t\tf 3 2135 2136 -2135\n\t\tmu 0 3 8325 8326 8327\n\t\tf 3 2137 2138 2139\n\t\tmu 0 3 8328 8329 8330\n\t\tf 3 2140 2141 -2140\n\t\tmu 0 3 8331 8332 8333\n\t\tf 3 -2138 2142 2143\n\t\tmu 0 3 8334 8335 8336\n\t\tf 3 2144 2145 -2144\n\t\tmu 0 3 8337 8338 8339\n\t\tf 3 -2145 2146 2147\n\t\tmu 0 3 8340 8341 8342\n\t\tf 3 2148 2149 -2148\n\t\tmu 0 3 8343 8344 8345\n\t\tf 3 -2149 2150 2151\n\t\tmu 0 3 8346 8347 8348\n\t\tf 3 2152 2153 -2152\n\t\tmu 0 3 8349 8350 8351\n\t\tf 3 -2153 2154 2155\n\t\tmu 0 3 8352 8353 8354\n\t\tf 3 2156 2157 -2156\n\t\tmu 0 3 8355 8356 8357\n\t\tf 3 -2157 2158 2159\n\t\tmu 0 3 8358 8359 8360\n\t\tf 3 2160 2161 -2160\n\t\tmu 0 3 8361 8362 8363\n\t\tf 3 -2161 2162 2163\n\t\tmu 0 3 8364 8365 8366\n\t\tf 3 2164 2165 -2164\n\t\tmu 0 3 8367 8368 8369\n\t\tf 3 -2165 2166 2167\n\t\tmu 0 3 8370 8371 8372\n\t\tf 3 2168 2169 -2168\n\t\tmu 0 3 8373 8374 8375\n\t\tf 3 -2169 2170 2171\n\t\tmu 0 3 8376 8377 8378\n\t\tf 3 2172 2173 -2172\n\t\tmu 0 3 8379 8380 8381\n\t\tf 3 -2173 2174 2175\n\t\tmu 0 3 8382 8383 8384\n\t\tf 3 2176 2177 -2176\n\t\tmu 0 3 8385 8386 8387\n\t\tf 3 -2177 2178 2179\n\t\tmu 0 3 8388 8389 8390\n\t\tf 3 2180 2181 -2180\n\t\tmu 0 3 8391 8392 8393\n\t\tf 3 -2181 2182 2183\n\t\tmu 0 3 8394 8395 8396\n\t\tf 3 2184 2185 -2184\n\t\tmu 0 3 8397 8398 8399\n\t\tf 3 2186 2187 2188\n\t\tmu 0 3 8400 8401 8402\n\t\tf 3 2189 2190 -2189\n\t\tmu 0 3 8403 8404 8405\n\t\tf 3 -2190 2191 2192\n\t\tmu 0 3 8406 8407 8408\n\t\tf 3 2193 2194 -2193\n\t\tmu 0 3 8409 8410 8411\n\t\tf 3 2195 -2192 2196\n\t\tmu 0 3 8412 8413 8414\n\t\tf 3 2197 2198 -2197\n\t\tmu 0 3 8415 8416 8417\n\t\tf 3 -2198 -2188 2199\n\t\tmu 0 3 8418 8419 8420\n\t\tf 3 2200 2201 -2200\n\t\tmu 0 3 8421 8422 8423\n\t\tf 3 2202 -2202 2203\n\t\tmu 0 3 8424 8425 8426\n\t\tf 3 2204 2205 -2204\n\t\tmu 0 3 8427 8428 8429\n\t\tf 3 -2203 2206 2207\n\t\tmu 0 3 8430 8431 8432\n\t\tf 3 2208 -2199 -2208\n\t\tmu 0 3 8433 8434 8435\n\t\tf 3 2209 -2207 2210\n\t\tmu 0 3 8436 8437 8438\n\t\tf 3 2211 2212 -2211\n\t\tmu 0 3 8439 8440 8441\n\t\tf 3 -2212 -2206 2213\n\t\tmu 0 3 8442 8443 8444\n\t\tf 3 2214 2215 -2214\n\t\tmu 0 3 8445 8446 8447\n\t\tf 3 2216 2217 2218\n\t\tmu 0 3 8448 8449 8450\n\t\tf 3 2219 2220 -2219\n\t\tmu 0 3 8451 8452 8453\n\t\tf 3 -2217 2221 2222\n\t\tmu 0 3 8454 8455 8456\n\t\tf 3 2223 2224 -2223\n\t\tmu 0 3 8457 8458 8459\n\t\tf 3 2225 -2222 2226\n\t\tmu 0 3 8460 8461 8462\n\t\tf 3 2227 2228 -2227\n\t\tmu 0 3 8463 8464 8465\n\t\tf 3 -2228 -2221 2229\n\t\tmu 0 3 8466 8467 8468\n\t\tf 3 2230 2231 -2230\n\t\tmu 0 3 8469 8470 8471\n\t\tf 3 2232 -2205 2233\n\t\tmu 0 3 8472 8473 8474\n\t\tf 3 2234 2235 -2234\n\t\tmu 0 3 8475 8476 8477\n\t\tf 3 -2235 -2201 2236\n\t\tmu 0 3 8478 8479 8480\n\t\tf 3 2237 2238 -2237\n\t\tmu 0 3 8481 8482 8483\n\t\tf 3 -2238 -2187 2239\n\t\tmu 0 3 8484 8485 8486\n\t\tf 3 2240 2241 -2240\n\t\tmu 0 3 8487 8488 8489\n\t\tf 3 2242 -2239 2243\n\t\tmu 0 3 8490 8491 8492\n\t\tf 3 2244 2245 -2244\n\t\tmu 0 3 8493 8494 8495\n\t\tf 3 -2245 -2242 2246\n\t\tmu 0 3 8496 8497 8498\n\t\tf 3 2247 2248 -2247\n\t\tmu 0 3 8499 8500 8501\n\t\tf 3 2249 -2236 2250\n\t\tmu 0 3 8502 8503 8504\n\t\tf 3 -2243 2251 -2251\n\t\tmu 0 3 8505 8506 8507\n\t\tf 3 -2250 2252 2253\n\t\tmu 0 3 8508 8509 8510\n\t\tf 3 2254 2255 -2254\n\t\tmu 0 3 8511 8512 8513\n\t\tf 3 -2233 -2256 2256\n\t\tmu 0 3 8514 8515 8516\n\t\tf 3 2257 -2215 -2257\n\t\tmu 0 3 8517 8518 8519\n\t\tf 3 -2258 2258 2259\n\t\tmu 0 3 8520 8521 8522\n\t\tf 3 2260 -2220 -2260\n\t\tmu 0 3 8523 8524 8525\n\t\tf 3 -2261 2261 2262\n\t\tmu 0 3 8526 8527 8528\n\t\tf 3 2263 -2231 -2263\n\t\tmu 0 3 8529 8530 8531\n\t\tf 3 2264 -2262 2265\n\t\tmu 0 3 8532 8533 8534\n\t\tf 3 2266 2267 -2266\n\t\tmu 0 3 8535 8536 8537\n\t\tf 3 -2267 -2259 2268\n\t\tmu 0 3 8538 8539 8540\n\t\tf 3 -2255 2269 -2269\n\t\tmu 0 3 8541 8542 8543\n\t\tf 3 -2246 2270 2271\n\t\tmu 0 3 8544 8545 8546\n\t\tf 3 2272 2273 -2272\n\t\tmu 0 3 8547 8548 8549\n\t\tf 3 -2252 -2274 2274\n\t\tmu 0 3 8550 8551 8552\n\t\tf 3 -2249 2275 2276\n\t\tmu 0 3 8553 8554 8555\n\t\tf 3 2277 -2271 -2277\n\t\tmu 0 3 8556 8557 8558\n\t\tf 3 -2253 2278 2279\n\t\tmu 0 3 8559 8560 8561\n\t\tf 3 2280 -2279 -2275\n\t\tmu 0 3 8562 8563 8564\n\t\tf 3 2281 2282 -2280\n\t\tmu 0 3 8565 8566 8567\n\t\tf 3 -2270 -2283 2283\n\t\tmu 0 3 8568 8569 8570\n\t\tf 3 -2268 2284 2285\n\t\tmu 0 3 8571 8572 8573\n\t\tf 3 2286 -2285 -2284\n\t\tmu 0 3 8574 8575 8576\n\t\tf 3 2287 2288 -2286\n\t\tmu 0 3 8577 8578 8579\n\t\tf 3 -1290 2289 2290\n\t\tmu 0 3 8580 8581 8582\n\t\tf 3 2291 2292 -2291\n\t\tmu 0 3 8583 8584 8585\n\t\tf 3 -2292 2293 -1279\n\t\tmu 0 3 8586 8587 8588\n\t\tf 3 2294 -2290 2295\n\t\tmu 0 3 8589 8590 8591\n\t\tf 3 -2294 -2295 2296\n\t\tmu 0 3 8592 8593 8594\n\t\tf 3 -1298 2297 -2296\n\t\tmu 0 3 8595 8596 8597\n\t\tf 3 2298 -2298 2299\n\t\tmu 0 3 8598 8599 8600\n\t\tf 3 -1299 2300 -2300\n\t\tmu 0 3 8601 8602 8603\n\t\tf 3 -2299 2301 2302\n\t\tmu 0 3 8604 8605 8606\n\t\tf 3 -1268 2303 -2303\n\t\tmu 0 3 8607 8608 8609\n\t\tf 3 -2304 -1264 -2297\n\t\tmu 0 3 8610 8611 8612\n\t\tf 3 2304 -2301 2305\n\t\tmu 0 3 8613 8614 8615\n\t\tf 3 -1303 2306 -2306\n\t\tmu 0 3 8616 8617 8618\n\t\tf 3 -2305 2307 2308\n\t\tmu 0 3 8619 8620 8621\n\t\tf 3 -1276 -2302 -2309\n\t\tmu 0 3 8622 8623 8624\n\t\tf 3 -2194 2309 2310\n\t\tmu 0 3 8625 8626 8627\n\t\tf 3 -1465 2311 -2311\n\t\tmu 0 3 8628 8629 8630\n\t\tf 3 -1472 -2310 2312\n\t\tmu 0 3 8631 8632 8633\n\t\tf 3 -2196 2313 -2313\n\t\tmu 0 3 8634 8635 8636\n\t\tf 3 -1476 -2314 2314\n\t\tmu 0 3 8637 8638 8639\n\t\tf 3 -2209 2315 -2315\n\t\tmu 0 3 8640 8641 8642\n\t\tf 3 -1486 -2316 2316\n\t\tmu 0 3 8643 8644 8645\n\t\tf 3 -2210 2317 -2317\n\t\tmu 0 3 8646 8647 8648\n\t\tf 3 -1491 2318 2319\n\t\tmu 0 3 8649 8650 8651\n\t\tf 3 -2224 2320 -2320\n\t\tmu 0 3 8652 8653 8654\n\t\tf 3 -1503 -2321 2321\n\t\tmu 0 3 8655 8656 8657\n\t\tf 3 -2226 2322 -2322\n\t\tmu 0 3 8658 8659 8660\n\t\tf 3 2323 2324 2325\n\t\tmu 0 3 8661 8662 8663\n\t\tf 3 2326 2327 -2326\n\t\tmu 0 3 8664 8665 8666\n\t\tf 3 -2325 2328 2329\n\t\tmu 0 3 8667 8668 8669\n\t\tf 3 2330 2331 -2330\n\t\tmu 0 3 8670 8671 8672\n\t\tf 3 -2328 2332 2333\n\t\tmu 0 3 8673 8674 8675\n\t\tf 3 2334 2335 -2334\n\t\tmu 0 3 8676 8677 8678\n\t\tf 3 2336 -2335 2337\n\t\tmu 0 3 8679 8680 8681\n\t\tf 3 2338 2339 -2338\n\t\tmu 0 3 8682 8683 8684\n\t\tf 3 2340 -2331 2341\n\t\tmu 0 3 8685 8686 8687\n\t\tf 3 2342 2343 -2342\n\t\tmu 0 3 8688 8689 8690\n\t\tf 3 2344 -2340 2345\n\t\tmu 0 3 8691 8692 8693\n\t\tf 3 2346 2347 -2346\n\t\tmu 0 3 8694 8695 8696\n\t\tf 3 -2348 2348 2349\n\t\tmu 0 3 8697 8698 8699\n\t\tf 3 2350 2351 -2350\n\t\tmu 0 3 8700 8701 8702\n\t\tf 3 -2351 2352 2353\n\t\tmu 0 3 8703 8704 8705\n\t\tf 3 2354 2355 -2354\n\t\tmu 0 3 8706 8707 8708\n\t\tf 3 -2355 2356 2357\n\t\tmu 0 3 8709 8710 8711\n\t\tf 3 2358 2359 -2358\n\t\tmu 0 3 8712 8713 8714\n\t\tf 3 -2359 2360 2361\n\t\tmu 0 3 8715 8716 8717\n\t\tf 3 2362 -2344 2363\n\t\tmu 0 3 8718 8719 8720\n\t\tf 3 2364 2365 -2362\n\t\tmu 0 3 8721 8722 8723\n\t\tf 3 -2352 2366 2367\n\t\tmu 0 3 8724 8725 8726\n\t\tf 3 2368 2369 -2368\n\t\tmu 0 3 8727 8728 8729\n\t\tf 3 -2345 -2370 2370\n\t\tmu 0 3 8730 8731 8732\n\t\tf 3 -2369 2371 2372\n\t\tmu 0 3 8733 8734 8735\n\t\tf 3 2373 2374 -2373\n\t\tmu 0 3 8736 8737 8738\n\t\tf 3 -2374 2375 2376\n\t\tmu 0 3 8739 8740 8741\n\t\tf 3 2377 2378 -2377\n\t\tmu 0 3 8742 8743 8744\n\t\tf 3 2379 -2375 2380\n\t\tmu 0 3 8745 8746 8747\n\t\tf 3 -2381 -2379 2381\n\t\tmu 0 3 8748 8749 8750\n\t\tf 3 2382 2383 -2380\n\t\tmu 0 3 8751 8752 8753\n\t\tf 3 2384 2385 -2384\n\t\tmu 0 3 8754 8755 8756\n\t\tf 3 2386 2387 -2382\n\t\tmu 0 3 8757 8758 8759\n\t\tf 3 -2386 2388 -2371\n\t\tmu 0 3 8760 8761 8762\n\t\tf 3 2389 -2365 2390\n\t\tmu 0 3 8763 8764 8765\n\t\tf 3 2391 2392 -2391\n\t\tmu 0 3 8766 8767 8768\n\t\tf 3 2393 -2392 -2364\n\t\tmu 0 3 8769 8770 8771\n\t\tf 3 2394 2395 2396\n\t\tmu 0 3 3428 4917 3003\n\t\tf 3 2397 2398 -2397\n\t\tmu 0 3 3003 1939 3428\n\t\tf 3 -2396 2399 2400\n\t\tmu 0 3 3003 4917 2111\n\t\tf 3 2401 2402 -2401\n\t\tmu 0 3 2111 1319 3003\n\t\tf 3 2403 -2403 2404\n\t\tmu 0 3 6389 3003 1319\n\t\tf 3 -2404 2405 2406\n\t\tmu 0 3 3003 6389 686\n\t\tf 3 2407 2408 -2407\n\t\tmu 0 3 686 1320 3003\n\t\tf 3 -2406 2409 2410\n\t\tmu 0 3 686 6389 5369\n\t\tf 3 -2410 2411 2412\n\t\tmu 0 3 5369 6389 504\n\t\tf 3 2413 2414 2415\n\t\tmu 0 3 504 4917 4256\n\t\tf 3 2416 2417 -2416\n\t\tmu 0 3 4256 1697 504\n\t\tf 3 2418 2419 -2413\n\t\tmu 0 3 504 5886 5369\n\t\tf 3 2420 2421 2422\n\t\tmu 0 3 8772 5376 8773\n\t\tf 3 2423 -2419 2424\n\t\tmu 0 3 4194 5886 504\n\t\tf 3 -2418 2425 -2425\n\t\tmu 0 3 504 1697 4194\n\t\tf 3 -2412 2426 2427\n\t\tmu 0 3 504 6389 1777\n\t\tf 3 2428 -2427 -2405\n\t\tmu 0 3 1319 1777 6389\n\t\tf 3 2429 2430 -2428\n\t\tmu 0 3 1777 3343 504\n\t\tf 3 2431 -2400 2432\n\t\tmu 0 3 3343 2111 4917\n\t\tf 3 -2414 -2431 -2433\n\t\tmu 0 3 4917 504 3343\n\t\tf 3 2433 -2420 2434\n\t\tmu 0 3 5744 5369 5886\n\t\tf 3 2435 2436 -2435\n\t\tmu 0 3 5886 3864 5744\n\t\tf 3 2437 2438 2439\n\t\tmu 0 3 3618 5292 3969\n\t\tf 3 2440 2441 -2440\n\t\tmu 0 3 3969 4477 3618\n\t\tf 3 2442 2443 2444\n\t\tmu 0 3 1665 748 4103\n\t\tf 3 2445 2446 -2445\n\t\tmu 0 3 4103 4599 1665\n\t\tf 3 2447 2448 2449\n\t\tmu 0 3 2633 2215 2068\n\t\tf 3 2450 2451 -2450\n\t\tmu 0 3 2068 6391 2633\n\t\tf 3 2452 2453 2454\n\t\tmu 0 3 6036 3203 2393\n\t\tf 3 2455 2456 -2455\n\t\tmu 0 3 2393 450 6036\n\t\tf 3 2457 2458 2459\n\t\tmu 0 3 4385 3073 1636\n\t\tf 3 2460 2461 -2460\n\t\tmu 0 3 1636 1685 4385\n\t\tf 3 2462 2463 2464\n\t\tmu 0 3 8774 8775 8776\n\t\tf 3 2465 2466 -2465\n\t\tmu 0 3 8777 8778 8779\n\t\tf 3 2467 -2466 2468\n\t\tmu 0 3 8780 8781 8782\n\t\tf 3 2469 2470 -2469\n\t\tmu 0 3 8783 8784 8785\n\t\tf 3 -2470 2471 2472\n\t\tmu 0 3 8786 8787 8788\n\t\tf 3 2473 -2472 2474\n\t\tmu 0 3 8789 8790 8791\n\t\tf 3 2475 2476 -2475\n\t\tmu 0 3 8792 8793 8794\n\t\tf 3 2477 -2474 2478\n\t\tmu 0 3 8795 8796 8797\n\t\tf 3 2479 -2478 2480\n\t\tmu 0 3 8798 8799 8800\n\t\tf 3 2481 2482 2483\n\t\tmu 0 3 8801 8802 8803\n\t\tf 3 2484 2485 -2484\n\t\tmu 0 3 8804 8805 8806\n\t\tf 3 2486 2487 -2481\n\t\tmu 0 3 8807 8808 8809\n\t\tf 3 2488 2489 2490\n\t\tmu 0 3 8810 8811 8812\n\t\tf 3 2491 -2485 2492\n\t\tmu 0 3 8813 8814 8815\n\t\tf 3 -2488 2493 -2493\n\t\tmu 0 3 8816 8817 8818\n\t\tf 3 2494 -2480 2495\n\t\tmu 0 3 8819 8820 8821\n\t\tf 3 -2495 2496 -2473\n\t\tmu 0 3 8822 8823 8824\n\t\tf 3 2497 2498 -2496\n\t\tmu 0 3 8825 8826 8827\n\t\tf 3 -2498 -2483 2499\n\t\tmu 0 3 8828 8829 8830\n\t\tf 3 -2468 2500 -2500\n\t\tmu 0 3 8831 8832 8833\n\t\tf 3 -2487 2501 2502\n\t\tmu 0 3 8834 8835 8836\n\t\tf 3 2503 2504 -2503\n\t\tmu 0 3 8837 8838 8839\n\t\tf 3 2505 2506 2507\n\t\tmu 0 3 8840 8841 8842\n\t\tf 3 2508 2509 -2508\n\t\tmu 0 3 8843 8844 8845\n\t\tf 3 2510 2511 2512\n\t\tmu 0 3 8846 8847 8848\n\t\tf 3 2513 2514 -2513\n\t\tmu 0 3 8849 8850 8851\n\t\tf 3 2515 2516 2517\n\t\tmu 0 3 8852 8853 8854\n\t\tf 3 2518 2519 -2518\n\t\tmu 0 3 8855 8856 8857\n\t\tf 3 2520 2521 2522\n\t\tmu 0 3 8858 8859 8860\n\t\tf 3 2523 2524 -2523\n\t\tmu 0 3 8861 8862 8863\n\t\tf 3 2525 2526 2527\n\t\tmu 0 3 8864 8865 8866\n\t\tf 3 2528 2529 -2528\n\t\tmu 0 3 8867 8868 8869\n\t\tf 3 2530 2531 2532\n\t\tmu 0 3 2020 2619 5395\n\t\tf 3 2533 2534 -2533\n\t\tmu 0 3 5395 5113 2020\n\t\tf 3 2535 -2535 2536\n\t\tmu 0 3 4625 2020 5113\n\t\tf 3 2537 2538 -2537\n\t\tmu 0 3 5113 3429 4625\n\t\tf 3 2539 -2539 2540\n\t\tmu 0 3 4030 4625 3429\n\t\tf 3 2541 2542 -2541\n\t\tmu 0 3 3429 666 4030\n\t\tf 3 2543 -2543 2544\n\t\tmu 0 3 169 4030 666\n\t\tf 3 2545 2546 -2545\n\t\tmu 0 3 666 2437 169\n\t\tf 3 2547 -2547 2548\n\t\tmu 0 3 687 169 2437\n\t\tf 3 2549 2550 -2549\n\t\tmu 0 3 2437 1421 687\n\t\tf 3 2551 -2551 2552\n\t\tmu 0 3 4976 687 1421\n\t\tf 3 2553 2554 -2553\n\t\tmu 0 3 1421 6370 4976\n\t\tf 3 2555 -2555 2556\n\t\tmu 0 3 4601 4976 6370\n\t\tf 3 2557 2558 -2557\n\t\tmu 0 3 6370 1629 4601\n\t\tf 3 2559 -2532 2560\n\t\tmu 0 3 3198 5395 2619\n\t\tf 3 2561 2562 -2561\n\t\tmu 0 3 2619 1264 3198\n\t\tf 3 2563 -2563 2564\n\t\tmu 0 3 2072 3198 1264\n\t\tf 3 2565 2566 -2565\n\t\tmu 0 3 1264 5316 2072\n\t\tf 3 2567 -2567 2568\n\t\tmu 0 3 5359 2072 5316\n\t\tf 3 2569 2570 -2569\n\t\tmu 0 3 5316 3016 5359\n\t\tf 3 2571 -2571 2572\n\t\tmu 0 3 286 5359 3016\n\t\tf 3 2573 2574 -2573\n\t\tmu 0 3 3016 5180 286\n\t\tf 3 2575 -2575 2576\n\t\tmu 0 3 5100 286 5180\n\t\tf 3 2577 2578 -2577\n\t\tmu 0 3 5180 3183 5100\n\t\tf 3 2579 -2579 2580\n\t\tmu 0 3 4196 5100 3183\n\t\tf 3 2581 2582 -2581\n\t\tmu 0 3 3183 1763 4196\n\t\tf 3 2583 -2583 2584\n\t\tmu 0 3 4283 4196 1763\n\t\tf 3 2585 2586 -2585\n\t\tmu 0 3 1763 3677 4283\n\t\tf 3 2587 -2587 2588\n\t\tmu 0 3 227 4283 3677\n\t\tf 3 2589 2590 -2589\n\t\tmu 0 3 3677 726 227\n\t\tf 3 2591 -2591 2592\n\t\tmu 0 3 1866 227 726\n\t\tf 3 2593 2594 -2593\n\t\tmu 0 3 726 4101 1866\n\t\tf 3 2595 -2595 2596\n\t\tmu 0 3 4892 1866 4101\n\t\tf 3 2597 2598 -2597\n\t\tmu 0 3 4101 4531 4892\n\t\tf 3 2599 -2599 2600\n\t\tmu 0 3 2775 4892 4531\n\t\tf 3 2601 2602 -2601\n\t\tmu 0 3 4531 3114 2775\n\t\tf 3 2603 -2603 2604\n\t\tmu 0 3 376 2775 3114\n\t\tf 3 2605 -2559 -2605\n\t\tmu 0 3 3114 3484 376\n\t\tf 3 2606 2607 2608\n\t\tmu 0 3 8870 8871 5512\n\t\tf 3 2609 2610 -2609\n\t\tmu 0 3 5512 6175 8872\n\t\tf 3 2611 2612 2613\n\t\tmu 0 3 8873 8874 6290\n\t\tf 3 2614 -2608 -2614\n\t\tmu 0 3 6290 5512 8875\n\t\tf 3 2615 2616 2617\n\t\tmu 0 3 8876 8877 2254\n\t\tf 3 2618 -2613 -2618\n\t\tmu 0 3 2254 6290 8878\n\t\tf 3 2619 2620 2621\n\t\tmu 0 3 8879 8880 230\n\t\tf 3 2622 -2617 -2622\n\t\tmu 0 3 230 2254 8881\n\t\tf 3 2623 2624 2625\n\t\tmu 0 3 8882 8883 316\n\t\tf 3 2626 -2621 -2626\n\t\tmu 0 3 316 230 8884\n\t\tf 3 2627 -2625 2628\n\t\tmu 0 3 5101 316 8885\n\t\tf 3 2629 2630 -2629\n\t\tmu 0 3 8886 8887 5101\n\t\tf 3 2631 -2631 2632\n\t\tmu 0 3 61 5101 8888\n\t\tf 3 2633 2634 -2633\n\t\tmu 0 3 8889 8890 61\n\t\tf 3 2635 -2635 2636\n\t\tmu 0 3 5327 61 8891\n\t\tf 3 2637 2638 -2637\n\t\tmu 0 3 8892 8893 5327\n\t\tf 3 2639 -2639 2640\n\t\tmu 0 3 877 5327 8894\n\t\tf 3 2641 2642 -2641\n\t\tmu 0 3 8895 8896 877\n\t\tf 3 2643 -2643 2644\n\t\tmu 0 3 2433 877 8897\n\t\tf 3 2645 2646 -2645\n\t\tmu 0 3 8898 8899 2433\n\t\tf 3 2647 -2647 2648\n\t\tmu 0 3 84 2433 8900\n\t\tf 3 2649 2650 -2649\n\t\tmu 0 3 8901 8902 84\n\t\tf 3 2651 -2651 2652\n\t\tmu 0 3 2364 84 8903\n\t\tf 3 2653 2654 -2653\n\t\tmu 0 3 8904 8905 2364\n\t\tf 3 2655 -2655 2656\n\t\tmu 0 3 4230 2364 8906\n\t\tf 3 2657 2658 -2657\n\t\tmu 0 3 8907 8908 4230\n\t\tf 3 2659 -2659 2660\n\t\tmu 0 3 1163 4230 8909\n\t\tf 3 2661 2662 -2661\n\t\tmu 0 3 8910 8911 1163\n\t\tf 3 2663 -2663 2664\n\t\tmu 0 3 3519 1163 8912\n\t\tf 3 2665 2666 -2665\n\t\tmu 0 3 8913 8914 3519\n\t\tf 3 2667 -2667 2668\n\t\tmu 0 3 539 3519 8915\n\t\tf 3 2669 2670 -2669\n\t\tmu 0 3 8916 8917 539\n\t\tf 3 2671 -2671 2672\n\t\tmu 0 3 4563 539 8918\n\t\tf 3 2673 2674 -2673\n\t\tmu 0 3 8919 8920 4563\n\t\tf 3 2675 -2675 2676\n\t\tmu 0 3 4136 4563 8921\n\t\tf 3 2677 2678 -2677\n\t\tmu 0 3 8922 8923 4136\n\t\tf 3 2679 -2679 2680\n\t\tmu 0 3 3367 4136 8924\n\t\tf 3 2681 -2611 -2681\n\t\tmu 0 3 8925 8926 3367\n\t\tf 3 2682 2683 2684\n\t\tmu 0 3 3539 477 3544\n\t\tf 3 -2656 2685 -2685\n\t\tmu 0 3 3544 1284 3539\n\t\tf 3 2686 -2686 2687\n\t\tmu 0 3 5891 3539 1284\n\t\tf 3 -2660 2688 -2688\n\t\tmu 0 3 1284 3885 5891\n\t\tf 3 -2687 2689 2690\n\t\tmu 0 3 3539 5891 3540\n\t\tf 3 2691 2692 -2691\n\t\tmu 0 3 3540 3999 3539\n\t\tf 3 -2683 -2693 2693\n\t\tmu 0 3 477 3539 3999\n\t\tf 3 2694 2695 -2694\n\t\tmu 0 3 3999 3886 477\n\t\tf 3 2696 -2689 2697\n\t\tmu 0 3 439 5891 3885\n\t\tf 3 -2664 2698 -2698\n\t\tmu 0 3 3885 1032 439\n\t\tf 3 -2697 2699 2700\n\t\tmu 0 3 5891 439 721\n\t\tf 3 -2701 2701 -2690\n\t\tmu 0 3 5891 721 3540\n\t\tf 3 2702 2703 -2700\n\t\tmu 0 3 439 1484 721\n\t\tf 3 -2699 2704 2705\n\t\tmu 0 3 439 1032 181\n\t\tf 3 -2668 2706 -2705\n\t\tmu 0 3 1032 4877 181\n\t\tf 3 -2706 2707 2708\n\t\tmu 0 3 439 181 4849\n\t\tf 3 -2652 -2684 2709\n\t\tmu 0 3 5380 3544 477\n\t\tf 3 2710 2711 -2710\n\t\tmu 0 3 477 5130 5380\n\t\tf 3 -2711 -2696 2712\n\t\tmu 0 3 5130 477 3886\n\t\tf 3 -2648 -2712 2713\n\t\tmu 0 3 3887 5380 5130\n\t\tf 3 2714 2715 -2714\n\t\tmu 0 3 5130 6147 3887\n\t\tf 3 -2644 -2716 2716\n\t\tmu 0 3 3961 3887 6147\n\t\tf 3 2717 2718 -2717\n\t\tmu 0 3 6147 1824 3961\n\t\tf 3 -2640 -2719 2719\n\t\tmu 0 3 5415 3961 1824\n\t\tf 3 2720 2721 -2720\n\t\tmu 0 3 1824 2507 5415\n\t\tf 3 -2636 -2722 2722\n\t\tmu 0 3 628 5415 2507\n\t\tf 3 2723 2724 -2723\n\t\tmu 0 3 2507 3888 628\n\t\tf 3 2725 -2725 2726\n\t\tmu 0 3 3858 628 3888;\n\tsetAttr \".fc[1500:1999]\"\n\t\tf 3 2727 -2632 -2726\n\t\tmu 0 3 3858 865 628\n\t\tf 3 2728 2729 -2728\n\t\tmu 0 3 3858 5282 865\n\t\tf 3 -2628 -2730 2730\n\t\tmu 0 3 4591 865 5282\n\t\tf 3 2731 2732 -2731\n\t\tmu 0 3 5282 1914 4591\n\t\tf 3 -2627 -2733 2733\n\t\tmu 0 3 2508 4591 1914\n\t\tf 3 2734 2735 -2734\n\t\tmu 0 3 1914 4527 2508\n\t\tf 3 -2623 -2736 2736\n\t\tmu 0 3 1564 2508 4527\n\t\tf 3 2737 2738 -2737\n\t\tmu 0 3 4527 2453 1564\n\t\tf 3 -2619 -2739 2739\n\t\tmu 0 3 1989 1564 2453\n\t\tf 3 2740 2741 -2740\n\t\tmu 0 3 2453 2261 1989\n\t\tf 3 -2615 -2742 2742\n\t\tmu 0 3 763 1989 2261\n\t\tf 3 2743 2744 -2743\n\t\tmu 0 3 2261 4121 763\n\t\tf 3 2745 -2745 2746\n\t\tmu 0 3 5527 763 4121\n\t\tf 3 2747 2748 -2746\n\t\tmu 0 3 5527 5528 763\n\t\tf 3 2749 2750 -2748\n\t\tmu 0 3 5527 2262 5528\n\t\tf 3 2751 -2610 -2749\n\t\tmu 0 3 5528 1915 763\n\t\tf 3 -2744 2752 2753\n\t\tmu 0 3 4121 2261 4765\n\t\tf 3 2754 2755 -2754\n\t\tmu 0 3 4765 440 4121\n\t\tf 3 -2747 -2756 2756\n\t\tmu 0 3 5527 4121 440\n\t\tf 3 2757 2758 -2757\n\t\tmu 0 3 440 1283 5527\n\t\tf 3 -2741 2759 2760\n\t\tmu 0 3 2261 2453 3538\n\t\tf 3 2761 -2753 -2761\n\t\tmu 0 3 3538 4765 2261\n\t\tf 3 -2738 2762 2763\n\t\tmu 0 3 2453 4527 6206\n\t\tf 3 2764 -2760 -2764\n\t\tmu 0 3 6206 3538 2453\n\t\tf 3 2765 -2763 2766\n\t\tmu 0 3 6148 6206 4527\n\t\tf 3 -2735 2767 -2767\n\t\tmu 0 3 4527 1914 6148\n\t\tf 3 -2758 2768 2769\n\t\tmu 0 3 1283 440 866\n\t\tf 3 2770 2771 -2770\n\t\tmu 0 3 866 2909 1283\n\t\tf 3 -2755 2772 2773\n\t\tmu 0 3 440 4765 4345\n\t\tf 3 2774 -2769 -2774\n\t\tmu 0 3 4345 866 440\n\t\tf 3 -2775 2775 2776\n\t\tmu 0 3 866 4345 3156\n\t\tf 3 2777 2778 -2777\n\t\tmu 0 3 3156 5046 866\n\t\tf 3 -2771 -2779 2779\n\t\tmu 0 3 2909 866 5046\n\t\tf 3 2780 2781 -2780\n\t\tmu 0 3 5046 969 2909\n\t\tf 3 -2762 2782 2783\n\t\tmu 0 3 4765 3538 4766\n\t\tf 3 2784 -2773 -2784\n\t\tmu 0 3 4766 4345 4765\n\t\tf 3 -2785 2785 2786\n\t\tmu 0 3 4345 4766 764\n\t\tf 3 2787 -2776 -2787\n\t\tmu 0 3 764 3156 4345\n\t\tf 3 -2765 2788 2789\n\t\tmu 0 3 3538 6206 5520\n\t\tf 3 2790 -2783 -2790\n\t\tmu 0 3 5520 4766 3538\n\t\tf 3 -2791 2791 2792\n\t\tmu 0 3 4766 5520 5935\n\t\tf 3 2793 -2786 -2793\n\t\tmu 0 3 5935 764 4766\n\t\tf 3 -2766 2794 2795\n\t\tmu 0 3 6206 6148 6263\n\t\tf 3 2796 -2789 -2796\n\t\tmu 0 3 6263 5520 6206\n\t\tf 3 -2797 2797 2798\n\t\tmu 0 3 5520 6263 4804\n\t\tf 3 2799 -2792 -2799\n\t\tmu 0 3 4804 5935 5520\n\t\tf 3 2800 -2768 2801\n\t\tmu 0 3 1638 6148 1914\n\t\tf 3 -2732 2802 -2802\n\t\tmu 0 3 1914 5282 1638\n\t\tf 3 2803 -2803 2804\n\t\tmu 0 3 5788 1638 5282\n\t\tf 3 -2729 2805 -2805\n\t\tmu 0 3 5282 3858 5788\n\t\tf 3 2806 -2806 2807\n\t\tmu 0 3 5374 5788 3858\n\t\tf 3 2808 2809 -2808\n\t\tmu 0 3 3858 6151 5374\n\t\tf 3 2810 -2798 2811\n\t\tmu 0 3 3157 4804 6263\n\t\tf 3 2812 2813 -2812\n\t\tmu 0 3 6263 2875 3157\n\t\tf 3 2814 -2813 2815\n\t\tmu 0 3 3959 2875 6263\n\t\tf 3 -2816 -2795 2816\n\t\tmu 0 3 3959 6263 6148\n\t\tf 3 2817 2818 -2817\n\t\tmu 0 3 6148 5454 3959\n\t\tf 3 -2801 2819 -2818\n\t\tmu 0 3 6148 1638 5454\n\t\tf 3 -2820 -2804 2820\n\t\tmu 0 3 5454 1638 5788\n\t\tf 3 2821 -2809 2822\n\t\tmu 0 3 5381 6151 3858\n\t\tf 3 -2727 2823 -2823\n\t\tmu 0 3 3858 3888 5381\n\t\tf 3 2824 -2824 2825\n\t\tmu 0 3 2235 5381 3888\n\t\tf 3 -2724 2826 -2826\n\t\tmu 0 3 3888 2507 2235\n\t\tf 3 2827 -2827 2828\n\t\tmu 0 3 1695 2235 2507\n\t\tf 3 -2721 2829 -2829\n\t\tmu 0 3 2507 1824 1695\n\t\tf 3 2830 -2830 2831\n\t\tmu 0 3 570 1695 1824\n\t\tf 3 -2718 2832 -2832\n\t\tmu 0 3 1824 6147 570\n\t\tf 3 2833 -2833 2834\n\t\tmu 0 3 3720 570 6147\n\t\tf 3 -2715 2835 -2835\n\t\tmu 0 3 6147 5130 3720\n\t\tf 3 2836 -2836 -2713\n\t\tmu 0 3 3886 3720 5130\n\t\tf 3 -2828 2837 2838\n\t\tmu 0 3 2235 1695 2234\n\t\tf 3 2839 2840 -2839\n\t\tmu 0 3 2234 3250 2235\n\t\tf 3 -2840 2841 2842\n\t\tmu 0 3 3250 2234 5455\n\t\tf 3 2843 2844 -2843\n\t\tmu 0 3 5455 3884 3250\n\t\tf 3 -2831 2845 2846\n\t\tmu 0 3 1695 570 3721\n\t\tf 3 2847 -2838 -2847\n\t\tmu 0 3 3721 2234 1695\n\t\tf 3 -2848 2848 2849\n\t\tmu 0 3 2234 3721 3760\n\t\tf 3 2850 -2842 -2850\n\t\tmu 0 3 3760 5455 2234\n\t\tf 3 -2834 2851 2852\n\t\tmu 0 3 570 3720 2084\n\t\tf 3 2853 -2846 -2853\n\t\tmu 0 3 2084 3721 570\n\t\tf 3 -2854 2854 2855\n\t\tmu 0 3 3721 2084 441\n\t\tf 3 2856 -2849 -2856\n\t\tmu 0 3 441 3760 3721\n\t\tf 3 -2837 2857 2858\n\t\tmu 0 3 3720 3886 295\n\t\tf 3 2859 -2852 -2859\n\t\tmu 0 3 295 2084 3720\n\t\tf 3 2860 -2858 2861\n\t\tmu 0 3 3162 295 3886\n\t\tf 3 -2695 2862 -2862\n\t\tmu 0 3 3886 3999 3162\n\t\tf 3 2863 -2863 2864\n\t\tmu 0 3 629 3162 3999\n\t\tf 3 -2692 2865 -2865\n\t\tmu 0 3 3999 3540 629\n\t\tf 3 -2864 2866 2867\n\t\tmu 0 3 3162 629 5213\n\t\tf 3 2868 2869 -2868\n\t\tmu 0 3 5213 3729 3162\n\t\tf 3 -2861 -2870 2870\n\t\tmu 0 3 295 3162 3729\n\t\tf 3 2871 2872 -2871\n\t\tmu 0 3 3729 3185 295\n\t\tf 3 -2860 -2873 2873\n\t\tmu 0 3 2084 295 3185\n\t\tf 3 2874 -2855 -2874\n\t\tmu 0 3 3185 441 2084\n\t\tf 3 2875 -2866 2876\n\t\tmu 0 3 2573 629 3540\n\t\tf 3 -2702 2877 -2877\n\t\tmu 0 3 3540 721 2573\n\t\tf 3 2878 -2867 2879\n\t\tmu 0 3 3421 5213 629\n\t\tf 3 -2876 2880 -2880\n\t\tmu 0 3 629 2573 3421\n\t\tf 3 2881 2882 2883\n\t\tmu 0 3 3884 5692 2452\n\t\tf 3 2884 -2845 -2884\n\t\tmu 0 3 2452 3250 3884\n\t\tf 3 -2885 2885 2886\n\t\tmu 0 3 3250 2452 4915\n\t\tf 3 -2887 2887 2888\n\t\tmu 0 3 3250 4915 5900\n\t\tf 3 2889 -2841 -2889\n\t\tmu 0 3 5900 2235 3250\n\t\tf 3 -2825 -2890 2890\n\t\tmu 0 3 5381 2235 5900\n\t\tf 3 -2888 2891 2892\n\t\tmu 0 3 5900 4915 3889\n\t\tf 3 -2822 -2891 2893\n\t\tmu 0 3 6151 5381 5900\n\t\tf 3 2894 -2894 2895\n\t\tmu 0 3 5901 6151 5900\n\t\tf 3 -2893 2896 -2896\n\t\tmu 0 3 5900 3889 5901\n\t\tf 3 -2810 -2895 2897\n\t\tmu 0 3 5374 6151 5901\n\t\tf 3 -2807 2898 2899\n\t\tmu 0 3 5788 5374 1350\n\t\tf 3 -2821 -2900 2900\n\t\tmu 0 3 5454 5788 1350\n\t\tf 3 2901 2902 -2901\n\t\tmu 0 3 1350 970 5454\n\t\tf 3 -2819 -2903 2903\n\t\tmu 0 3 3959 5454 970\n\t\tf 3 2904 2905 2906\n\t\tmu 0 3 3191 5151 6170\n\t\tf 3 2907 2908 -2907\n\t\tmu 0 3 6170 1045 3191\n\t\tf 3 2909 -2909 2910\n\t\tmu 0 3 52 3191 1045\n\t\tf 3 2911 2912 -2911\n\t\tmu 0 3 1045 207 52\n\t\tf 3 2913 -2913 2914\n\t\tmu 0 3 2537 52 207\n\t\tf 3 2915 2916 -2915\n\t\tmu 0 3 207 1120 2537\n\t\tf 3 2917 -2906 2918\n\t\tmu 0 3 1964 6170 5151\n\t\tf 3 2919 2920 -2919\n\t\tmu 0 3 5151 617 1964\n\t\tf 3 2921 -2921 2922\n\t\tmu 0 3 4275 1964 617\n\t\tf 3 2923 2924 -2923\n\t\tmu 0 3 617 3507 4275\n\t\tf 3 2925 -2925 2926\n\t\tmu 0 3 5826 4275 3507\n\t\tf 3 2927 2928 -2927\n\t\tmu 0 3 3507 1080 5826\n\t\tf 3 2929 -2929 2930\n\t\tmu 0 3 5556 5826 1080\n\t\tf 3 2931 2932 -2931\n\t\tmu 0 3 1080 1057 5556\n\t\tf 3 2933 -2933 2934\n\t\tmu 0 3 3574 5556 1057\n\t\tf 3 2935 2936 -2935\n\t\tmu 0 3 1057 3492 3574\n\t\tf 3 2937 -2937 2938\n\t\tmu 0 3 1879 3574 3492\n\t\tf 3 2939 2940 -2939\n\t\tmu 0 3 3492 3330 1879\n\t\tf 3 2941 -2941 2942\n\t\tmu 0 3 1257 1879 3330\n\t\tf 3 2943 2944 -2943\n\t\tmu 0 3 3330 4257 1257\n\t\tf 3 2945 -2945 2946\n\t\tmu 0 3 1791 1257 4257\n\t\tf 3 2947 2948 -2947\n\t\tmu 0 3 4257 1513 1791\n\t\tf 3 2949 -2949 2950\n\t\tmu 0 3 2196 1791 1513\n\t\tf 3 2951 2952 -2951\n\t\tmu 0 3 1513 2463 2196\n\t\tf 3 2953 -2953 2954\n\t\tmu 0 3 4152 2196 2463\n\t\tf 3 2955 2956 -2955\n\t\tmu 0 3 2463 2843 4152\n\t\tf 3 2957 -2957 2958\n\t\tmu 0 3 1907 4152 2843\n\t\tf 3 2959 2960 -2959\n\t\tmu 0 3 2843 5097 1907\n\t\tf 3 2961 -2961 2962\n\t\tmu 0 3 3212 1907 5097\n\t\tf 3 2963 -2963 2964\n\t\tmu 0 3 5437 3212 5097\n\t\tf 3 -2965 2965 2966\n\t\tmu 0 3 5437 5097 4003\n\t\tf 3 2967 -2967 2968\n\t\tmu 0 3 3304 5437 4003\n\t\tf 3 2969 2970 -2969\n\t\tmu 0 3 4003 351 3304\n\t\tf 3 2971 2972 2973\n\t\tmu 0 3 4644 5030 1653\n\t\tf 3 2974 2975 -2974\n\t\tmu 0 3 1653 3199 4644\n\t\tf 3 2976 -2973 2977\n\t\tmu 0 3 4123 1653 5030\n\t\tf 3 2978 2979 -2978\n\t\tmu 0 3 5030 1620 4123\n\t\tf 3 2980 -2980 2981\n\t\tmu 0 3 4586 4123 1620\n\t\tf 3 2982 2983 -2982\n\t\tmu 0 3 1620 284 4586\n\t\tf 3 2984 -2984 2985\n\t\tmu 0 3 2590 4586 284\n\t\tf 3 2986 2987 -2986\n\t\tmu 0 3 284 1816 2590\n\t\tf 3 2988 -2988 2989\n\t\tmu 0 3 3815 2590 1816\n\t\tf 3 2990 2991 -2990\n\t\tmu 0 3 1816 2728 3815\n\t\tf 3 2992 -2992 2993\n\t\tmu 0 3 208 3815 2728\n\t\tf 3 2994 2995 -2994\n\t\tmu 0 3 2728 6095 208\n\t\tf 3 2996 -2996 2997\n\t\tmu 0 3 5954 208 6095\n\t\tf 3 2998 2999 -2998\n\t\tmu 0 3 6095 1664 5954\n\t\tf 3 3000 -3000 3001\n\t\tmu 0 3 6448 5954 1664\n\t\tf 3 3002 3003 -3002\n\t\tmu 0 3 1664 189 6448\n\t\tf 3 3004 -3004 3005\n\t\tmu 0 3 6137 6448 189\n\t\tf 3 3006 3007 -3006\n\t\tmu 0 3 189 218 6137\n\t\tf 3 3008 -3008 3009\n\t\tmu 0 3 2013 6137 218\n\t\tf 3 3010 3011 -3010\n\t\tmu 0 3 218 5026 2013\n\t\tf 3 3012 -3012 3013\n\t\tmu 0 3 2037 2013 5026\n\t\tf 3 3014 3015 -3014\n\t\tmu 0 3 5026 5625 2037\n\t\tf 3 3016 -3016 3017\n\t\tmu 0 3 3900 2037 5625\n\t\tf 3 3018 3019 -3018\n\t\tmu 0 3 5625 1579 3900\n\t\tf 3 3020 -3020 3021\n\t\tmu 0 3 2112 3900 1579\n\t\tf 3 3022 3023 -3022\n\t\tmu 0 3 1579 3990 2112\n\t\tf 3 3024 -3024 3025\n\t\tmu 0 3 3140 2112 3990\n\t\tf 3 3026 3027 -3026\n\t\tmu 0 3 3990 3944 3140\n\t\tf 3 -3027 3028 3029\n\t\tmu 0 3 3944 3990 995\n\t\tf 3 3030 3031 -3030\n\t\tmu 0 3 995 5242 3944\n\t\tf 3 -3023 3032 3033\n\t\tmu 0 3 3990 1579 18\n\t\tf 3 3034 -3029 -3034\n\t\tmu 0 3 18 995 3990\n\t\tf 3 -3019 3035 3036\n\t\tmu 0 3 1579 5625 5015\n\t\tf 3 3037 -3033 -3037\n\t\tmu 0 3 5015 18 1579\n\t\tf 3 -3015 3038 3039\n\t\tmu 0 3 5625 5026 2366\n\t\tf 3 3040 -3036 -3040\n\t\tmu 0 3 2366 5015 5625\n\t\tf 3 -3011 3041 3042\n\t\tmu 0 3 5026 218 5462\n\t\tf 3 3043 -3039 -3043\n\t\tmu 0 3 5462 2366 5026\n\t\tf 3 3044 -3042 3045\n\t\tmu 0 3 4058 5462 218\n\t\tf 3 -3007 3046 -3046\n\t\tmu 0 3 218 189 4058\n\t\tf 3 3047 -3047 3048\n\t\tmu 0 3 85 4058 189\n\t\tf 3 -3003 3049 -3049\n\t\tmu 0 3 189 1664 85\n\t\tf 3 3050 -3050 3051\n\t\tmu 0 3 2561 85 1664\n\t\tf 3 -2999 3052 -3052\n\t\tmu 0 3 1664 6095 2561\n\t\tf 3 3053 -3053 3054\n\t\tmu 0 3 130 2561 6095\n\t\tf 3 -2995 3055 -3055\n\t\tmu 0 3 6095 2728 130\n\t\tf 3 3056 -3056 3057\n\t\tmu 0 3 2294 130 2728\n\t\tf 3 -2991 3058 -3058\n\t\tmu 0 3 2728 1816 2294\n\t\tf 3 3059 -3059 3060\n\t\tmu 0 3 3739 2294 1816\n\t\tf 3 -2987 3061 -3061\n\t\tmu 0 3 1816 284 3739\n\t\tf 3 3062 -3062 3063\n\t\tmu 0 3 6127 3739 284\n\t\tf 3 -2983 3064 -3064\n\t\tmu 0 3 284 1620 6127\n\t\tf 3 -3065 -2979 3065\n\t\tmu 0 3 6127 1620 5030\n\t\tf 3 3066 3067 -3066\n\t\tmu 0 3 5030 466 6127\n\t\tf 3 -2707 -2672 3068\n\t\tmu 0 3 181 4877 4114\n\t\tf 3 3069 3070 -3069\n\t\tmu 0 3 4114 1285 181\n\t\tf 3 -3070 -2676 3071\n\t\tmu 0 3 1285 4114 3446\n\t\tf 3 3072 3073 -3072\n\t\tmu 0 3 3446 5131 1285\n\t\tf 3 -3073 -2680 3074\n\t\tmu 0 3 5131 3446 2263\n\t\tf 3 -2752 3075 -3075\n\t\tmu 0 3 2263 5382 5131\n\t\tf 3 3076 3077 3078\n\t\tmu 0 3 4994 1532 2408\n\t\tf 3 3079 3080 -3079\n\t\tmu 0 3 2408 2723 4994\n\t\tf 3 3081 3082 3083\n\t\tmu 0 3 2408 2857 3754\n\t\tf 3 3084 -3080 -3084\n\t\tmu 0 3 3754 2216 2408\n\t\tf 3 3085 3086 3087\n\t\tmu 0 3 2857 1570 3582\n\t\tf 3 3088 -3083 -3088\n\t\tmu 0 3 3582 4068 2857\n\t\tf 3 3089 3090 3091\n\t\tmu 0 3 1570 5805 3851\n\t\tf 3 3092 -3087 -3092\n\t\tmu 0 3 3851 5078 1570\n\t\tf 3 3093 3094 3095\n\t\tmu 0 3 5805 1321 4737\n\t\tf 3 3096 -3091 -3096\n\t\tmu 0 3 4737 1954 5805\n\t\tf 3 3097 3098 3099\n\t\tmu 0 3 1321 2246 4941\n\t\tf 3 3100 -3095 -3100\n\t\tmu 0 3 4941 4694 1321\n\t\tf 3 3101 3102 3103\n\t\tmu 0 3 2246 3759 5585\n\t\tf 3 3104 -3099 -3104\n\t\tmu 0 3 5585 4369 2246\n\t\tf 3 3105 3106 3107\n\t\tmu 0 3 1982 2832 4854\n\t\tf 3 3108 -3103 -3108\n\t\tmu 0 3 4854 1214 1982\n\t\tf 3 3109 3110 3111\n\t\tmu 0 3 2832 5463 5258\n\t\tf 3 3112 -3107 -3112\n\t\tmu 0 3 5258 1463 2832\n\t\tf 3 3113 3114 3115\n\t\tmu 0 3 5463 3769 1736\n\t\tf 3 3116 -3111 -3116\n\t\tmu 0 3 1736 3294 5463\n\t\tf 3 3117 3118 3119\n\t\tmu 0 3 3769 5559 1899\n\t\tf 3 3120 -3115 -3120\n\t\tmu 0 3 1899 3920 3769\n\t\tf 3 3121 3122 3123\n\t\tmu 0 3 5559 4514 5513\n\t\tf 3 3124 -3119 -3124\n\t\tmu 0 3 5513 1775 5559\n\t\tf 3 3125 -3123 3126\n\t\tmu 0 3 5259 1926 4514\n\t\tf 3 3127 3128 -3127\n\t\tmu 0 3 4514 1792 5259\n\t\tf 3 -3129 3129 3130\n\t\tmu 0 3 5554 1792 2018\n\t\tf 3 3131 3132 -3131\n\t\tmu 0 3 2018 1786 5554\n\t\tf 3 -3132 3133 3134\n\t\tmu 0 3 1654 2018 5806\n\t\tf 3 3135 3136 -3135\n\t\tmu 0 3 5806 6493 1654\n\t\tf 3 3137 3138 3139\n\t\tmu 0 3 5806 825 465\n\t\tf 3 3140 -3136 -3140\n\t\tmu 0 3 465 3041 5806\n\t\tf 3 3141 3142 3143\n\t\tmu 0 3 825 5598 5535\n\t\tf 3 3144 -3139 -3144\n\t\tmu 0 3 5535 1627 825\n\t\tf 3 3145 3146 3147\n\t\tmu 0 3 5598 3225 5328\n\t\tf 3 3148 -3143 -3148\n\t\tmu 0 3 5328 5375 5598\n\t\tf 3 3149 -3077 3150\n\t\tmu 0 3 3225 1532 3868\n\t\tf 3 3151 -3147 -3151\n\t\tmu 0 3 3868 257 3225\n\t\tf 3 3152 3153 3154\n\t\tmu 0 3 412 5423 3728\n\t\tf 3 3155 -3155 3156\n\t\tmu 0 3 3604 412 3728\n\t\tf 3 -3156 3157 3158\n\t\tmu 0 3 412 3604 2291\n\t\tf 3 3159 -3159 3160\n\t\tmu 0 3 2920 412 2291\n\t\tf 3 -3160 3161 3162\n\t\tmu 0 3 412 2920 3090\n\t\tf 3 3163 -3163 3164\n\t\tmu 0 3 3810 412 3090\n\t\tf 3 -3164 3165 3166\n\t\tmu 0 3 412 3810 3755\n\t\tf 3 -3167 3167 3168\n\t\tmu 0 3 412 3755 5586\n\t\tf 3 3169 3170 -3168\n\t\tmu 0 3 3755 5435 5586\n\t\tf 3 -3169 3171 3172\n\t\tmu 0 3 412 5586 1160\n\t\tf 3 3173 -3173 3174\n\t\tmu 0 3 5240 412 1160\n\t\tf 3 -3174 3175 3176\n\t\tmu 0 3 412 5240 5056\n\t\tf 3 3177 -3177 3178\n\t\tmu 0 3 4441 412 5056\n\t\tf 3 -3178 3179 3180\n\t\tmu 0 3 412 4441 5771\n\t\tf 3 3181 -3181 3182\n\t\tmu 0 3 2634 412 5771\n\t\tf 3 -3182 3183 3184\n\t\tmu 0 3 412 2634 19\n\t\tf 3 3185 -3185 3186\n\t\tmu 0 3 1489 412 19\n\t\tf 3 -3186 3187 3188\n\t\tmu 0 3 412 1489 2006\n\t\tf 3 -3153 -3189 3189\n\t\tmu 0 3 5423 412 2006\n\t\tf 3 -2975 3190 3191\n\t\tmu 0 3 3199 1653 2417\n\t\tf 3 3192 3193 -3192\n\t\tmu 0 3 2417 4663 3199\n\t\tf 3 -3194 3194 3195\n\t\tmu 0 3 3199 4663 688\n\t\tf 3 3196 3197 -3196\n\t\tmu 0 3 688 1033 3199\n\t\tf 3 -3197 3198 3199\n\t\tmu 0 3 1033 688 5241\n\t\tf 3 3200 -3191 3201\n\t\tmu 0 3 2396 2417 1653\n\t\tf 3 -2977 3202 -3202\n\t\tmu 0 3 1653 4123 2396\n\t\tf 3 3203 -3203 3204\n\t\tmu 0 3 1955 2396 4123\n\t\tf 3 -2981 3205 -3205\n\t\tmu 0 3 4123 4586 1955\n\t\tf 3 3206 -3206 3207\n\t\tmu 0 3 5076 1955 4586\n\t\tf 3 -2985 3208 -3208\n\t\tmu 0 3 4586 2590 5076\n\t\tf 3 3209 -3209 3210\n\t\tmu 0 3 5973 5076 2590\n\t\tf 3 -2989 3211 -3211\n\t\tmu 0 3 2590 3815 5973\n\t\tf 3 3212 -3212 3213\n\t\tmu 0 3 1747 5973 3815\n\t\tf 3 -2993 3214 -3214\n\t\tmu 0 3 3815 208 1747\n\t\tf 3 3215 -3215 3216\n\t\tmu 0 3 858 1747 208\n\t\tf 3 -2997 3217 -3217\n\t\tmu 0 3 208 5954 858\n\t\tf 3 3218 -3218 3219\n\t\tmu 0 3 3943 858 5954\n\t\tf 3 -3001 3220 -3220\n\t\tmu 0 3 5954 6448 3943\n\t\tf 3 3221 -3221 3222\n\t\tmu 0 3 572 3943 6448\n\t\tf 3 -3005 3223 -3223\n\t\tmu 0 3 6448 6137 572\n\t\tf 3 3224 -3224 3225\n\t\tmu 0 3 2791 572 6137\n\t\tf 3 -3009 3226 -3226\n\t\tmu 0 3 6137 2013 2791\n\t\tf 3 3227 -3227 3228\n\t\tmu 0 3 2921 2791 2013\n\t\tf 3 -3013 3229 -3229\n\t\tmu 0 3 2013 2037 2921\n\t\tf 3 3230 -3230 3231\n\t\tmu 0 3 3770 2921 2037\n\t\tf 3 -3017 3232 -3232\n\t\tmu 0 3 2037 3900 3770\n\t\tf 3 3233 -3233 3234\n\t\tmu 0 3 1453 3770 3900\n\t\tf 3 -3021 3235 -3235\n\t\tmu 0 3 3900 2112 1453\n\t\tf 3 3236 -3236 3237\n\t\tmu 0 3 5465 1453 2112\n\t\tf 3 -3025 3238 -3238\n\t\tmu 0 3 2112 3140 5465\n\t\tf 3 3239 3240 3241\n\t\tmu 0 3 4189 5063 6516\n\t\tf 3 3242 3243 -3242\n\t\tmu 0 3 6516 2146 4189\n\t\tf 3 3244 -3243 3245\n\t\tmu 0 3 1534 2146 6516\n\t\tf 3 3246 3247 -3246\n\t\tmu 0 3 6516 5119 1534\n\t\tf 3 -3248 3248 3249\n\t\tmu 0 3 1534 5119 540\n\t\tf 3 3250 3251 -3250\n\t\tmu 0 3 540 4824 1534\n\t\tf 3 -3251 3252 3253\n\t\tmu 0 3 4824 540 683\n\t\tf 3 3254 3255 -3254\n\t\tmu 0 3 683 4996 4824\n\t\tf 3 -3255 3256 3257\n\t\tmu 0 3 4996 683 538\n\t\tf 3 3258 3259 -3258\n\t\tmu 0 3 538 4011 4996\n\t\tf 3 -3259 3260 3261\n\t\tmu 0 3 4011 538 5951\n\t\tf 3 3262 3263 -3262\n\t\tmu 0 3 5951 1837 4011\n\t\tf 3 -3240 3264 3265\n\t\tmu 0 3 5063 4189 5271\n\t\tf 3 3266 3267 -3266\n\t\tmu 0 3 5271 5983 5063\n\t\tf 3 -3263 3268 3269\n\t\tmu 0 3 1837 5951 335\n\t\tf 3 3270 3271 -3270\n\t\tmu 0 3 335 3904 1837\n\t\tf 3 3272 3273 3274\n\t\tmu 0 3 604 6552 946\n\t\tf 3 3275 3276 -3275\n\t\tmu 0 3 946 5011 604\n\t\tf 3 -3276 3277 3278\n\t\tmu 0 3 5011 946 5827\n\t\tf 3 3279 3280 -3279\n\t\tmu 0 3 5827 106 5011\n\t\tf 3 -3280 3281 3282\n\t\tmu 0 3 106 5827 4128\n\t\tf 3 3283 3284 -3283\n\t\tmu 0 3 4128 1808 106\n\t\tf 3 -3284 3285 3286\n\t\tmu 0 3 1808 4128 3371\n\t\tf 3 3287 3288 -3287\n\t\tmu 0 3 3371 5657 1808\n\t\tf 3 3289 -3288 3290\n\t\tmu 0 3 5155 5657 3371\n\t\tf 3 3291 3292 -3291\n\t\tmu 0 3 3371 4649 5155\n\t\tf 3 -3273 3293 3294\n\t\tmu 0 3 6552 604 2327\n\t\tf 3 3295 3296 -3295\n\t\tmu 0 3 2327 1905 6552\n\t\tf 3 3297 3298 3299\n\t\tmu 0 3 2389 1008 5792\n\t\tf 3 3300 3301 -3300\n\t\tmu 0 3 5792 2328 2389\n\t\tf 3 3302 -3301 3303\n\t\tmu 0 3 3360 2328 5792\n\t\tf 3 3304 3305 -3304\n\t\tmu 0 3 5792 1784 3360\n\t\tf 3 3306 -3306 3307\n\t\tmu 0 3 5984 3360 1784\n\t\tf 3 -3308 3308 3309\n\t\tmu 0 3 5984 1784 584\n\t\tf 3 -3310 3310 3311\n\t\tmu 0 3 5984 584 4515\n\t\tf 3 -3312 3312 3313\n\t\tmu 0 3 5984 4515 5538\n\t\tf 3 3314 -3298 3315\n\t\tmu 0 3 2439 1008 2389\n\t\tf 3 3316 3317 -3316\n\t\tmu 0 3 2389 5658 2439\n\t\tf 3 3318 -3318 3319\n\t\tmu 0 3 3901 2439 5658\n\t\tf 3 3320 3321 -3320\n\t\tmu 0 3 5658 6128 3901\n\t\tf 3 3322 -3322 3323\n\t\tmu 0 3 808 3901 6128\n\t\tf 3 3324 3325 -3324\n\t\tmu 0 3 6128 5346 808\n\t\tf 3 3326 -3326 3327\n\t\tmu 0 3 5016 808 5346\n\t\tf 3 3328 3329 -3328\n\t\tmu 0 3 5346 1762 5016\n\t\tf 3 -3330 3330 3331\n\t\tmu 0 3 5016 1762 2038\n\t\tf 3 3332 3333 -3332\n\t\tmu 0 3 2038 790 5016\n\t\tf 3 -3333 3334 3335\n\t\tmu 0 3 790 2038 2390\n\t\tf 3 3336 3337 -3336\n\t\tmu 0 3 2390 1012 790\n\t\tf 3 3338 -3337 3339\n\t\tmu 0 3 120 1012 2390\n\t\tf 3 3340 3341 -3340\n\t\tmu 0 3 2390 3430 120\n\t\tf 3 3342 -3342 3343\n\t\tmu 0 3 6328 120 3430\n\t\tf 3 3344 3345 -3344\n\t\tmu 0 3 3430 645 6328\n\t\tf 3 3346 -3346 3347\n\t\tmu 0 3 4216 6328 645\n\t\tf 3 3348 3349 -3348\n\t\tmu 0 3 645 1869 4216\n\t\tf 3 3350 -3350 3351\n\t\tmu 0 3 5329 4216 1869\n\t\tf 3 3352 3353 -3352\n\t\tmu 0 3 1869 5138 5329\n\t\tf 3 3354 -3354 3355\n\t\tmu 0 3 3730 5329 5138\n\t\tf 3 3356 3357 -3356\n\t\tmu 0 3 5138 5181 3730\n\t\tf 3 3358 -3358 3359\n\t\tmu 0 3 2604 3730 5181\n\t\tf 3 3360 3361 -3360\n\t\tmu 0 3 5181 5955 2604\n\t\tf 3 -3362 3362 3363\n\t\tmu 0 3 2604 5955 1728\n\t\tf 3 3364 3365 -3364\n\t\tmu 0 3 1728 1432 2604\n\t\tf 3 3366 3367 3368\n\t\tmu 0 3 5498 5800 5163\n\t\tf 3 -3369 3369 3370\n\t\tmu 0 3 5498 5163 2373\n\t\tf 3 -3371 3371 3372\n\t\tmu 0 3 5498 2373 86\n\t\tf 3 3373 3374 3375\n\t\tmu 0 3 3061 8927 8928\n\t\tf 3 3376 3377 -3376\n\t\tmu 0 3 8929 727 3061\n\t\tf 3 3378 3379 3380\n\t\tmu 0 3 5956 8930 8931\n\t\tf 3 3381 3382 -3381\n\t\tmu 0 3 8932 209 5956\n\t\tf 3 3383 -3383 3384\n\t\tmu 0 3 413 5956 209\n\t\tf 3 3385 3386 -3385\n\t\tmu 0 3 209 4626 413\n\t\tf 3 3387 -3387 3388\n\t\tmu 0 3 8933 413 4626\n\t\tf 3 3389 3390 -3389\n\t\tmu 0 3 4626 8934 8935\n\t\tf 3 3391 3392 3393\n\t\tmu 0 3 2663 8936 8937\n\t\tf 3 3394 3395 -3394\n\t\tmu 0 3 8938 1494 2663\n\t\tf 3 3396 3397 3398\n\t\tmu 0 3 5009 8939 8940\n\t\tf 3 3399 3400 -3399\n\t\tmu 0 3 8941 943 5009\n\t\tf 3 3401 -3401 3402\n\t\tmu 0 3 1783 5009 943\n\t\tf 3 3403 3404 -3403\n\t\tmu 0 3 943 2034 1783\n\t\tf 3 3405 -3405 3406\n\t\tmu 0 3 8942 1783 2034\n\t\tf 3 3407 3408 -3407\n\t\tmu 0 3 2034 8943 8944\n\t\tf 3 -2938 3409 3410\n\t\tmu 0 3 3574 1879 4699\n\t\tf 3 3411 3412 -3411\n\t\tmu 0 3 4699 2195 3574\n\t\tf 3 -3412 3413 3414\n\t\tmu 0 3 2195 4699 3388\n\t\tf 3 3415 3416 -3414\n\t\tmu 0 3 4699 2054 3388\n\t\tf 3 3417 3418 -3416\n\t\tmu 0 3 4699 1793 2054\n\t\tf 3 -3415 3419 3420\n\t\tmu 0 3 2195 3388 5098\n\t\tf 3 3421 3422 -3420\n\t\tmu 0 3 3388 3645 5098\n\t\tf 3 3423 3424 -3422\n\t\tmu 0 3 3388 4300 3645\n\t\tf 3 3425 3426 3427\n\t\tmu 0 3 8945 8946 8947\n\t\tf 3 3428 3429 -3428\n\t\tmu 0 3 8948 8949 8950\n\t\tf 3 -3429 3430 3431\n\t\tmu 0 3 8951 8952 8953\n\t\tf 3 3432 3433 -3432\n\t\tmu 0 3 8954 8955 8956\n\t\tf 3 -3433 3434 3435\n\t\tmu 0 3 8957 8958 8959\n\t\tf 3 3436 3437 -3436\n\t\tmu 0 3 8960 8961 8962\n\t\tf 3 -3437 3438 3439\n\t\tmu 0 3 8963 8964 8965\n\t\tf 3 3440 3441 -3440\n\t\tmu 0 3 8966 8967 8968\n\t\tf 3 -3441 3442 3443\n\t\tmu 0 3 8969 8970 8971\n\t\tf 3 3444 3445 -3444\n\t\tmu 0 3 8972 8973 8974\n\t\tf 3 -3445 3446 3447\n\t\tmu 0 3 8975 8976 8977\n\t\tf 3 3448 3449 -3448\n\t\tmu 0 3 8978 8979 8980\n\t\tf 3 -3449 3450 3451\n\t\tmu 0 3 8981 8982 8983\n\t\tf 3 3452 3453 -3452\n\t\tmu 0 3 8984 8985 8986\n\t\tf 3 -3426 3454 3455\n\t\tmu 0 3 8987 8988 8989\n\t\tf 3 3456 3457 -3456\n\t\tmu 0 3 8990 8991 8992\n\t\tf 3 -3457 3458 3459\n\t\tmu 0 3 8993 8994 8995\n\t\tf 3 3460 3461 -3460\n\t\tmu 0 3 8996 8997 8998\n\t\tf 3 -3461 3462 3463\n\t\tmu 0 3 8999 9000 9001\n\t\tf 3 3464 3465 -3464\n\t\tmu 0 3 9002 9003 9004\n\t\tf 3 -3465 3466 3467\n\t\tmu 0 3 9005 9006 9007\n\t\tf 3 3468 3469 -3468\n\t\tmu 0 3 9008 9009 9010\n\t\tf 3 -3469 3470 3471\n\t\tmu 0 3 9011 9012 9013\n\t\tf 3 3472 3473 -3472\n\t\tmu 0 3 9014 9015 9016\n\t\tf 3 -3473 3474 3475\n\t\tmu 0 3 9017 9018 9019\n\t\tf 3 3476 3477 -3476\n\t\tmu 0 3 9020 9021 9022\n\t\tf 3 -3477 3478 3479\n\t\tmu 0 3 9023 9024 9025\n\t\tf 3 3480 3481 -3480\n\t\tmu 0 3 9026 9027 9028\n\t\tf 3 -3481 3482 3483\n\t\tmu 0 3 9029 9030 9031\n\t\tf 3 3484 3485 -3484\n\t\tmu 0 3 9032 9033 9034\n\t\tf 3 -3485 3486 3487\n\t\tmu 0 3 9035 9036 9037\n\t\tf 3 3488 3489 -3488\n\t\tmu 0 3 9038 9039 9040\n\t\tf 3 -3489 3490 3491\n\t\tmu 0 3 9041 9042 9043\n\t\tf 3 3492 3493 -3492\n\t\tmu 0 3 9044 9045 9046\n\t\tf 3 -3493 3494 3495\n\t\tmu 0 3 9047 9048 9049\n\t\tf 3 3496 3497 -3496\n\t\tmu 0 3 9050 9051 9052\n\t\tf 3 -3497 3498 3499\n\t\tmu 0 3 9053 9054 9055\n\t\tf 3 -3453 3500 -3500\n\t\tmu 0 3 9056 9057 9058\n\t\tf 3 3501 3502 3503\n\t\tmu 0 3 9059 9060 9061\n\t\tf 3 3504 3505 -3504\n\t\tmu 0 3 9062 9063 9064\n\t\tf 3 -3502 3506 3507\n\t\tmu 0 3 9065 9066 9067\n\t\tf 3 3508 3509 -3508\n\t\tmu 0 3 9068 9069 9070\n\t\tf 3 -3509 3510 3511\n\t\tmu 0 3 9071 9072 9073\n\t\tf 3 3512 3513 -3512\n\t\tmu 0 3 9074 9075 9076\n\t\tf 3 -3513 3514 3515\n\t\tmu 0 3 9077 9078 9079\n\t\tf 3 3516 3517 -3516\n\t\tmu 0 3 9080 9081 9082\n\t\tf 3 -3517 3518 3519\n\t\tmu 0 3 9083 9084 9085\n\t\tf 3 3520 3521 -3520\n\t\tmu 0 3 9086 9087 9088\n\t\tf 3 -3521 3522 3523\n\t\tmu 0 3 9089 9090 9091\n\t\tf 3 3524 3525 -3524\n\t\tmu 0 3 9092 9093 9094\n\t\tf 3 -3525 3526 3527\n\t\tmu 0 3 9095 9096 9097\n\t\tf 3 3528 3529 -3528\n\t\tmu 0 3 9098 9099 9100\n\t\tf 3 -3529 3530 3531\n\t\tmu 0 3 9101 9102 9103\n\t\tf 3 3532 3533 -3532\n\t\tmu 0 3 9104 9105 9106\n\t\tf 3 -3533 3534 3535\n\t\tmu 0 3 9107 9108 9109\n\t\tf 3 3536 3537 -3536\n\t\tmu 0 3 9110 9111 9112\n\t\tf 3 -3537 3538 3539\n\t\tmu 0 3 9113 9114 9115\n\t\tf 3 3540 3541 -3540\n\t\tmu 0 3 9116 9117 9118\n\t\tf 3 -3541 3542 3543\n\t\tmu 0 3 9119 9120 9121\n\t\tf 3 3544 3545 -3544\n\t\tmu 0 3 9122 9123 9124\n\t\tf 3 -3545 3546 3547\n\t\tmu 0 3 9125 9126 9127\n\t\tf 3 3548 3549 -3548\n\t\tmu 0 3 9128 9129 9130\n\t\tf 3 -3549 3550 3551\n\t\tmu 0 3 9131 9132 9133\n\t\tf 3 3552 3553 -3552\n\t\tmu 0 3 9134 9135 9136\n\t\tf 3 -3553 3554 3555\n\t\tmu 0 3 9137 9138 9139\n\t\tf 3 3556 3557 -3556\n\t\tmu 0 3 9140 9141 9142\n\t\tf 3 -3557 3558 3559\n\t\tmu 0 3 9143 9144 9145\n\t\tf 3 3560 3561 -3560\n\t\tmu 0 3 9146 9147 9148\n\t\tf 3 -3561 3562 3563\n\t\tmu 0 3 9149 9150 9151\n\t\tf 3 3564 3565 -3564\n\t\tmu 0 3 9152 9153 9154\n\t\tf 3 -3565 3566 3567\n\t\tmu 0 3 9155 9156 9157\n\t\tf 3 3568 3569 -3568\n\t\tmu 0 3 9158 9159 9160\n\t\tf 3 -3569 3570 3571\n\t\tmu 0 3 9161 9162 9163\n\t\tf 3 3572 3573 -3572\n\t\tmu 0 3 9164 9165 9166\n\t\tf 3 -3573 3574 3575\n\t\tmu 0 3 9167 9168 9169\n\t\tf 3 -3505 3576 -3576\n\t\tmu 0 3 9170 9171 9172\n\t\tf 3 3577 -3551 3578\n\t\tmu 0 3 9173 9174 9175\n\t\tf 3 3579 3580 -3579\n\t\tmu 0 3 9176 9177 9178\n\t\tf 3 -3578 3581 3582\n\t\tmu 0 3 9179 9180 9181\n\t\tf 3 3583 -3555 -3583\n\t\tmu 0 3 9182 9183 9184\n\t\tf 3 3584 -3582 3585\n\t\tmu 0 3 9185 9186 9187\n\t\tf 3 3586 3587 -3586\n\t\tmu 0 3 9188 9189 9190\n\t\tf 3 -3587 -3581 3588\n\t\tmu 0 3 9191 9192 9193\n\t\tf 3 3589 3590 -3589\n\t\tmu 0 3 9194 9195 9196\n\t\tf 3 -3584 3591 3592\n\t\tmu 0 3 9197 9198 9199\n\t\tf 3 3593 -3559 -3593\n\t\tmu 0 3 9200 9201 9202\n\t\tf 3 -3585 3594 3595\n\t\tmu 0 3 9203 9204 9205\n\t\tf 3 -3596 3596 -3592\n\t\tmu 0 3 9206 9207 9208\n\t\tf 3 3597 3598 -3597\n\t\tmu 0 3 9209 9210 9211\n\t\tf 3 3599 -3594 3600\n\t\tmu 0 3 9212 9213 9214\n\t\tf 3 3601 3602 -3600\n\t\tmu 0 3 9215 9216 9217\n\t\tf 3 3603 -3563 -3603\n\t\tmu 0 3 9218 9219 9220\n\t\tf 3 -3580 -3547 3604\n\t\tmu 0 3 9221 9222 9223\n\t\tf 3 3605 3606 -3605\n\t\tmu 0 3 9224 9225 9226\n\t\tf 3 -3590 -3607 3607\n\t\tmu 0 3 9227 9228 9229\n\t\tf 3 -3606 -3543 3608\n\t\tmu 0 3 9230 9231 9232\n\t\tf 3 3609 3610 -3609\n\t\tmu 0 3 9233 9234 9235\n\t\tf 3 -3610 -3539 3611\n\t\tmu 0 3 9236 9237 9238\n\t\tf 3 3612 3613 -3612\n\t\tmu 0 3 9239 9240 9241\n\t\tf 3 -3613 -3535 3614\n\t\tmu 0 3 9242 9243 9244\n\t\tf 3 3615 3616 -3615\n\t\tmu 0 3 9245 9246 9247\n\t\tf 3 -3616 -3531 3617\n\t\tmu 0 3 9248 9249 9250\n\t\tf 3 3618 3619 -3618\n\t\tmu 0 3 9251 9252 9253\n\t\tf 3 3620 -3619 3621\n\t\tmu 0 3 9254 9255 9256\n\t\tf 3 -3622 -3527 3622\n\t\tmu 0 3 9257 9258 9259\n\t\tf 3 -3623 3623 3624\n\t\tmu 0 3 9260 9261 9262\n\t\tf 3 -3624 -3523 3625\n\t\tmu 0 3 9263 9264 9265\n\t\tf 3 3626 3627 -3626\n\t\tmu 0 3 9266 9267 9268\n\t\tf 3 -3627 -3519 3628\n\t\tmu 0 3 9269 9270 9271\n\t\tf 3 3629 3630 -3629\n\t\tmu 0 3 9272 9273 9274\n\t\tf 3 -3630 -3515 3631\n\t\tmu 0 3 9275 9276 9277\n\t\tf 3 3632 3633 -3632\n\t\tmu 0 3 9278 9279 9280\n\t\tf 3 -3633 -3511 3634\n\t\tmu 0 3 9281 9282 9283\n\t\tf 3 3635 3636 -3635\n\t\tmu 0 3 9284 9285 9286\n\t\tf 3 -3636 -3507 3637\n\t\tmu 0 3 9287 9288 9289\n\t\tf 3 3638 3639 -3638\n\t\tmu 0 3 9290 9291 9292\n\t\tf 3 3640 -3639 3641\n\t\tmu 0 3 9293 9294 9295;\n\tsetAttr \".fc[2000:2499]\"\n\t\tf 3 -3642 3642 3643\n\t\tmu 0 3 9296 9297 9298\n\t\tf 3 -3506 3644 -3643\n\t\tmu 0 3 9299 9300 9301\n\t\tf 3 -3644 3645 3646\n\t\tmu 0 3 9302 9303 9304\n\t\tf 3 3647 -3640 3648\n\t\tmu 0 3 9305 9306 9307\n\t\tf 3 3649 3650 -3649\n\t\tmu 0 3 9308 9309 9310\n\t\tf 3 -3650 -3641 3651\n\t\tmu 0 3 9311 9312 9313\n\t\tf 3 3652 3653 -3652\n\t\tmu 0 3 9314 9315 9316\n\t\tf 3 -3648 3654 3655\n\t\tmu 0 3 9317 9318 9319\n\t\tf 3 3656 -3637 -3656\n\t\tmu 0 3 9320 9321 9322\n\t\tf 3 -3657 3657 3658\n\t\tmu 0 3 9323 9324 9325\n\t\tf 3 3659 -3634 -3659\n\t\tmu 0 3 9326 9327 9328\n\t\tf 3 -3660 3660 3661\n\t\tmu 0 3 9329 9330 9331\n\t\tf 3 3662 -3654 3663\n\t\tmu 0 3 9332 9333 9334\n\t\tf 3 3664 3665 -3664\n\t\tmu 0 3 9335 9336 9337\n\t\tf 3 3666 -3651 3667\n\t\tmu 0 3 9338 9339 9340\n\t\tf 3 -3663 3668 -3668\n\t\tmu 0 3 9341 9342 9343\n\t\tf 3 3669 -3669 3670\n\t\tmu 0 3 9344 9345 9346\n\t\tf 3 3671 3672 -3671\n\t\tmu 0 3 9347 9348 9349\n\t\tf 3 -3672 -3666 3673\n\t\tmu 0 3 9350 9351 9352\n\t\tf 3 3674 3675 -3674\n\t\tmu 0 3 9353 9354 9355\n\t\tf 3 3676 -3655 3677\n\t\tmu 0 3 9356 9357 9358\n\t\tf 3 -3667 3678 -3678\n\t\tmu 0 3 9359 9360 9361\n\t\tf 3 -3670 3679 3680\n\t\tmu 0 3 9362 9363 9364\n\t\tf 3 3681 -3679 -3681\n\t\tmu 0 3 9365 9366 9367\n\t\tf 3 3682 -3658 3683\n\t\tmu 0 3 9368 9369 9370\n\t\tf 3 -3677 3684 -3684\n\t\tmu 0 3 9371 9372 9373\n\t\tf 3 -3682 3685 3686\n\t\tmu 0 3 9374 9375 9376\n\t\tf 3 3687 -3685 -3687\n\t\tmu 0 3 9377 9378 9379\n\t\tf 3 3688 -3661 3689\n\t\tmu 0 3 9380 9381 9382\n\t\tf 3 -3683 3690 -3690\n\t\tmu 0 3 9383 9384 9385\n\t\tf 3 -3688 3691 3692\n\t\tmu 0 3 9386 9387 9388\n\t\tf 3 3693 -3691 -3693\n\t\tmu 0 3 9389 9390 9391\n\t\tf 3 -3694 3694 3695\n\t\tmu 0 3 9392 9393 9394\n\t\tf 3 3696 3697 -3696\n\t\tmu 0 3 9395 9396 9397\n\t\tf 3 3698 -3698 3699\n\t\tmu 0 3 9398 9399 9400\n\t\tf 3 -3689 -3699 3700\n\t\tmu 0 3 9401 9402 9403\n\t\tf 3 3701 3702 -3701\n\t\tmu 0 3 9404 9405 9406\n\t\tf 3 3703 3704 -3702\n\t\tmu 0 3 9407 9408 9409\n\t\tf 3 -3705 3705 3706\n\t\tmu 0 3 9410 9411 9412\n\t\tf 3 3707 3708 -3707\n\t\tmu 0 3 9413 9414 9415\n\t\tf 3 -3708 3709 3710\n\t\tmu 0 3 9416 9417 9418\n\t\tf 3 3711 -3711 3712\n\t\tmu 0 3 9419 9420 9421\n\t\tf 3 3713 3714 -3713\n\t\tmu 0 3 9422 9423 9424\n\t\tf 3 -3712 -3625 3715\n\t\tmu 0 3 9425 9426 9427\n\t\tf 3 3716 3717 -3716\n\t\tmu 0 3 9428 9429 9430\n\t\tf 3 -3709 -3718 3718\n\t\tmu 0 3 9431 9432 9433\n\t\tf 3 -3717 -3628 3719\n\t\tmu 0 3 9434 9435 9436\n\t\tf 3 3720 3721 -3720\n\t\tmu 0 3 9437 9438 9439\n\t\tf 3 -3703 -3719 -3722\n\t\tmu 0 3 9440 9441 9442\n\t\tf 3 -3721 -3631 -3662\n\t\tmu 0 3 9443 9444 9445\n\t\tf 3 -3715 3722 3723\n\t\tmu 0 3 9446 9447 9448\n\t\tf 3 3724 -3621 -3724\n\t\tmu 0 3 9449 9450 9451\n\t\tf 3 -3725 3725 3726\n\t\tmu 0 3 9452 9453 9454\n\t\tf 3 3727 -3620 -3727\n\t\tmu 0 3 9455 9456 9457\n\t\tf 3 -3728 3728 3729\n\t\tmu 0 3 9458 9459 9460\n\t\tf 3 3730 -3617 -3730\n\t\tmu 0 3 9461 9462 9463\n\t\tf 3 -3731 3731 3732\n\t\tmu 0 3 9464 9465 9466\n\t\tf 3 3733 -3614 -3733\n\t\tmu 0 3 9467 9468 9469\n\t\tf 3 -3734 3734 3735\n\t\tmu 0 3 9470 9471 9472\n\t\tf 3 3736 -3611 -3736\n\t\tmu 0 3 9473 9474 9475\n\t\tf 3 -3737 3737 -3608\n\t\tmu 0 3 9476 9477 9478\n\t\tf 3 3738 -3729 3739\n\t\tmu 0 3 9479 9480 9481\n\t\tf 3 3740 3741 -3740\n\t\tmu 0 3 9482 9483 9484\n\t\tf 3 3742 -3742 3743\n\t\tmu 0 3 9485 9486 9487\n\t\tf 3 3744 3745 -3744\n\t\tmu 0 3 9488 9489 9490\n\t\tf 3 3746 -3732 3747\n\t\tmu 0 3 9491 9492 9493\n\t\tf 3 -3739 3748 -3748\n\t\tmu 0 3 9494 9495 9496\n\t\tf 3 -3743 3749 3750\n\t\tmu 0 3 9497 9498 9499\n\t\tf 3 3751 -3749 -3751\n\t\tmu 0 3 9500 9501 9502\n\t\tf 3 3752 -3735 3753\n\t\tmu 0 3 9503 9504 9505\n\t\tf 3 -3747 3754 -3754\n\t\tmu 0 3 9506 9507 9508\n\t\tf 3 -3752 3755 3756\n\t\tmu 0 3 9509 9510 9511\n\t\tf 3 3757 -3755 -3757\n\t\tmu 0 3 9512 9513 9514\n\t\tf 3 3758 -3738 3759\n\t\tmu 0 3 9515 9516 9517\n\t\tf 3 -3753 3760 -3760\n\t\tmu 0 3 9518 9519 9520\n\t\tf 3 -3759 3761 3762\n\t\tmu 0 3 9521 9522 9523\n\t\tf 3 3763 -3591 -3763\n\t\tmu 0 3 9524 9525 9526\n\t\tf 3 -3764 3764 3765\n\t\tmu 0 3 9527 9528 9529\n\t\tf 3 3766 -3588 -3766\n\t\tmu 0 3 9530 9531 9532\n\t\tf 3 3767 -3765 3768\n\t\tmu 0 3 9533 9534 9535\n\t\tf 3 3769 3770 -3769\n\t\tmu 0 3 9536 9537 9538\n\t\tf 3 -3770 -3762 3771\n\t\tmu 0 3 9539 9540 9541\n\t\tf 3 3772 3773 -3772\n\t\tmu 0 3 9542 9543 9544\n\t\tf 3 -3758 3774 3775\n\t\tmu 0 3 9545 9546 9547\n\t\tf 3 -3773 -3761 -3776\n\t\tmu 0 3 9548 9549 9550\n\t\tf 3 -3767 3776 3777\n\t\tmu 0 3 9551 9552 9553\n\t\tf 3 3778 -3595 -3778\n\t\tmu 0 3 9554 9555 9556\n\t\tf 3 3779 -3777 3780\n\t\tmu 0 3 9557 9558 9559\n\t\tf 3 -3768 3781 -3781\n\t\tmu 0 3 9560 9561 9562\n\t\tf 3 -3745 3782 3783\n\t\tmu 0 3 9563 9564 9565\n\t\tf 3 3784 3785 -3783\n\t\tmu 0 3 9566 9567 9568\n\t\tf 3 3786 -3785 3787\n\t\tmu 0 3 9569 9570 9571\n\t\tf 3 -3741 3788 -3788\n\t\tmu 0 3 9572 9573 9574\n\t\tf 3 3789 -3789 -3726\n\t\tmu 0 3 9575 9576 9577\n\t\tf 3 3790 3791 -3787\n\t\tmu 0 3 9578 9579 9580\n\t\tf 3 3792 -3790 -3723\n\t\tmu 0 3 9581 9582 9583\n\t\tf 3 3793 -3791 3794\n\t\tmu 0 3 9584 9585 9586\n\t\tf 3 -3793 3795 -3795\n\t\tmu 0 3 9587 9588 9589\n\t\tf 3 3796 -3796 -3714\n\t\tmu 0 3 9590 9591 9592\n\t\tf 3 3797 3798 -3784\n\t\tmu 0 3 9593 9594 9595\n\t\tf 3 3799 3800 3801\n\t\tmu 0 3 9596 9597 9598\n\t\tf 3 3802 3803 -3802\n\t\tmu 0 3 9599 9600 9601\n\t\tf 3 -3803 3804 3805\n\t\tmu 0 3 9602 9603 9604\n\t\tf 3 3806 3807 -3806\n\t\tmu 0 3 9605 9606 9607\n\t\tf 3 -3807 3808 3809\n\t\tmu 0 3 9608 9609 9610\n\t\tf 3 3810 3811 -3810\n\t\tmu 0 3 9611 9612 9613\n\t\tf 3 -3800 3812 3813\n\t\tmu 0 3 9614 9615 9616\n\t\tf 3 3814 3815 -3814\n\t\tmu 0 3 9617 9618 9619\n\t\tf 3 -3815 3816 3817\n\t\tmu 0 3 9620 9621 9622\n\t\tf 3 3818 3819 -3818\n\t\tmu 0 3 9623 9624 9625\n\t\tf 3 -3819 3820 3821\n\t\tmu 0 3 9626 9627 9628\n\t\tf 3 3822 3823 -3822\n\t\tmu 0 3 9629 9630 9631\n\t\tf 3 -3823 3824 3825\n\t\tmu 0 3 9632 9633 9634\n\t\tf 3 3826 3827 -3826\n\t\tmu 0 3 9635 9636 9637\n\t\tf 3 -3827 3828 3829\n\t\tmu 0 3 9638 9639 9640\n\t\tf 3 3830 3831 -3830\n\t\tmu 0 3 9641 9642 9643\n\t\tf 3 -3831 3832 3833\n\t\tmu 0 3 9644 9645 9646\n\t\tf 3 3834 3835 -3834\n\t\tmu 0 3 9647 9648 9649\n\t\tf 3 -3835 3836 3837\n\t\tmu 0 3 9650 9651 9652\n\t\tf 3 3838 3839 -3838\n\t\tmu 0 3 9653 9654 9655\n\t\tf 3 -3839 3840 3841\n\t\tmu 0 3 9656 9657 9658\n\t\tf 3 3842 3843 -3842\n\t\tmu 0 3 9659 9660 9661\n\t\tf 3 -3843 3844 3845\n\t\tmu 0 3 9662 9663 9664\n\t\tf 3 3846 3847 -3846\n\t\tmu 0 3 9665 9666 9667\n\t\tf 3 -3847 3848 3849\n\t\tmu 0 3 9668 9669 9670\n\t\tf 3 3850 3851 -3850\n\t\tmu 0 3 9671 9672 9673\n\t\tf 3 -3851 3852 3853\n\t\tmu 0 3 9674 9675 9676\n\t\tf 3 3854 3855 -3854\n\t\tmu 0 3 9677 9678 9679\n\t\tf 3 -3855 3856 3857\n\t\tmu 0 3 9680 9681 9682\n\t\tf 3 3858 -3858 3859\n\t\tmu 0 3 9683 9684 9685\n\t\tf 3 3860 3861 -3859\n\t\tmu 0 3 9686 9687 9688\n\t\tf 3 -3861 3862 3863\n\t\tmu 0 3 9689 9690 9691\n\t\tf 3 3864 3865 -3864\n\t\tmu 0 3 9692 9693 9694\n\t\tf 3 3866 3867 3868\n\t\tmu 0 3 9695 9696 9697\n\t\tf 3 3869 3870 -3869\n\t\tmu 0 3 9698 9699 9700\n\t\tf 3 -3870 3871 3872\n\t\tmu 0 3 9701 9702 9703\n\t\tf 3 3873 3874 -3873\n\t\tmu 0 3 9704 9705 9706\n\t\tf 3 -3874 3875 3876\n\t\tmu 0 3 9707 9708 9709\n\t\tf 3 3877 3878 -3877\n\t\tmu 0 3 9710 9711 9712\n\t\tf 3 -3878 3879 3880\n\t\tmu 0 3 9713 9714 9715\n\t\tf 3 3881 3882 -3881\n\t\tmu 0 3 9716 9717 9718\n\t\tf 3 -3882 3883 3884\n\t\tmu 0 3 9719 9720 9721\n\t\tf 3 3885 3886 -3885\n\t\tmu 0 3 9722 9723 9724\n\t\tf 3 -3886 3887 3888\n\t\tmu 0 3 9725 9726 9727\n\t\tf 3 3889 3890 -3889\n\t\tmu 0 3 9728 9729 9730\n\t\tf 3 -3890 3891 3892\n\t\tmu 0 3 9731 9732 9733\n\t\tf 3 3893 3894 -3893\n\t\tmu 0 3 9734 9735 9736\n\t\tf 3 -3894 3895 3896\n\t\tmu 0 3 9737 9738 9739\n\t\tf 3 3897 3898 -3897\n\t\tmu 0 3 9740 9741 9742\n\t\tf 3 -3898 3899 3900\n\t\tmu 0 3 9743 9744 9745\n\t\tf 3 3901 3902 -3901\n\t\tmu 0 3 9746 9747 9748\n\t\tf 3 -3902 3903 3904\n\t\tmu 0 3 9749 9750 9751\n\t\tf 3 3905 3906 -3905\n\t\tmu 0 3 9752 9753 9754\n\t\tf 3 -3906 3907 3908\n\t\tmu 0 3 9755 9756 9757\n\t\tf 3 3909 3910 -3909\n\t\tmu 0 3 9758 9759 9760\n\t\tf 3 -3910 3911 3912\n\t\tmu 0 3 9761 9762 9763\n\t\tf 3 3913 3914 -3913\n\t\tmu 0 3 9764 9765 9766\n\t\tf 3 -3914 3915 3916\n\t\tmu 0 3 9767 9768 9769\n\t\tf 3 3917 3918 -3917\n\t\tmu 0 3 9770 9771 9772\n\t\tf 3 -3918 3919 3920\n\t\tmu 0 3 9773 9774 9775\n\t\tf 3 3921 3922 -3921\n\t\tmu 0 3 9776 9777 9778\n\t\tf 3 3923 -3923 3924\n\t\tmu 0 3 9779 9780 9781\n\t\tf 3 3925 3926 -3925\n\t\tmu 0 3 9782 9783 9784\n\t\tf 3 -3924 3927 3928\n\t\tmu 0 3 9785 9786 9787\n\t\tf 3 3929 -3919 -3929\n\t\tmu 0 3 9788 9789 9790\n\t\tf 3 -3930 3930 3931\n\t\tmu 0 3 9791 9792 9793\n\t\tf 3 3932 -3915 -3932\n\t\tmu 0 3 9794 9795 9796\n\t\tf 3 -3933 3933 3934\n\t\tmu 0 3 9797 9798 9799\n\t\tf 3 3935 -3911 -3935\n\t\tmu 0 3 9800 9801 9802\n\t\tf 3 -3936 3936 3937\n\t\tmu 0 3 9803 9804 9805\n\t\tf 3 3938 -3907 -3938\n\t\tmu 0 3 9806 9807 9808\n\t\tf 3 -3939 3939 3940\n\t\tmu 0 3 9809 9810 9811\n\t\tf 3 3941 -3903 -3941\n\t\tmu 0 3 9812 9813 9814\n\t\tf 3 -3942 3942 3943\n\t\tmu 0 3 9815 9816 9817\n\t\tf 3 3944 -3899 -3944\n\t\tmu 0 3 9818 9819 9820\n\t\tf 3 -3945 3945 3946\n\t\tmu 0 3 9821 9822 9823\n\t\tf 3 3947 -3895 -3947\n\t\tmu 0 3 9824 9825 9826\n\t\tf 3 -3948 3948 3949\n\t\tmu 0 3 9827 9828 9829\n\t\tf 3 3950 -3891 -3950\n\t\tmu 0 3 9830 9831 9832\n\t\tf 3 -3951 3951 3952\n\t\tmu 0 3 9833 9834 9835\n\t\tf 3 3953 -3887 -3953\n\t\tmu 0 3 9836 9837 9838\n\t\tf 3 -3954 3954 3955\n\t\tmu 0 3 9839 9840 9841\n\t\tf 3 3956 -3883 -3956\n\t\tmu 0 3 9842 9843 9844\n\t\tf 3 -3957 3957 3958\n\t\tmu 0 3 9845 9846 9847\n\t\tf 3 3959 -3879 -3959\n\t\tmu 0 3 9848 9849 9850\n\t\tf 3 -3960 3960 3961\n\t\tmu 0 3 9851 9852 9853\n\t\tf 3 3962 -3875 -3962\n\t\tmu 0 3 9854 9855 9856\n\t\tf 3 -3604 3963 3964\n\t\tmu 0 3 9857 9858 9859\n\t\tf 3 3965 -3567 -3965\n\t\tmu 0 3 9860 9861 9862\n\t\tf 3 -3966 3966 3967\n\t\tmu 0 3 9863 9864 9865\n\t\tf 3 3968 -3571 -3968\n\t\tmu 0 3 9866 9867 9868\n\t\tf 3 -3969 3969 3970\n\t\tmu 0 3 9869 9870 9871\n\t\tf 3 -3645 -3575 -3971\n\t\tmu 0 3 9872 9873 9874\n\t\tf 3 3971 3972 3973\n\t\tmu 0 3 9875 9876 9877\n\t\tf 3 3974 3975 -3974\n\t\tmu 0 3 9878 9879 9880\n\t\tf 3 3976 3977 3978\n\t\tmu 0 3 9881 9882 9883\n\t\tf 3 -3976 3979 -3979\n\t\tmu 0 3 9884 9885 9886\n\t\tf 3 3980 3981 3982\n\t\tmu 0 3 9887 9888 9889\n\t\tf 3 -3977 3983 -3983\n\t\tmu 0 3 9890 9891 9892\n\t\tf 3 3984 3985 3986\n\t\tmu 0 3 9893 9894 9895\n\t\tf 3 -3981 3987 -3987\n\t\tmu 0 3 9896 9897 9898\n\t\tf 3 3988 3989 3990\n\t\tmu 0 3 9899 9900 9901\n\t\tf 3 -3985 3991 -3991\n\t\tmu 0 3 9902 9903 9904\n\t\tf 3 3992 3993 3994\n\t\tmu 0 3 9905 9906 9907\n\t\tf 3 -3989 3995 -3995\n\t\tmu 0 3 9908 9909 9910\n\t\tf 3 3996 3997 3998\n\t\tmu 0 3 9911 9912 9913\n\t\tf 3 -3993 3999 -3999\n\t\tmu 0 3 9914 9915 9916\n\t\tf 3 4000 4001 4002\n\t\tmu 0 3 9917 9918 9919\n\t\tf 3 -3997 4003 -4003\n\t\tmu 0 3 9920 9921 9922\n\t\tf 3 4004 4005 4006\n\t\tmu 0 3 9923 9924 9925\n\t\tf 3 -4001 4007 -4007\n\t\tmu 0 3 9926 9927 9928\n\t\tf 3 4008 4009 4010\n\t\tmu 0 3 9929 9930 9931\n\t\tf 3 -4005 4011 -4011\n\t\tmu 0 3 9932 9933 9934\n\t\tf 3 4012 4013 4014\n\t\tmu 0 3 9935 9936 9937\n\t\tf 3 -4009 4015 -4015\n\t\tmu 0 3 9938 9939 9940\n\t\tf 3 4016 4017 4018\n\t\tmu 0 3 9941 9942 9943\n\t\tf 3 -4013 4019 -4019\n\t\tmu 0 3 9944 9945 9946\n\t\tf 3 4020 4021 4022\n\t\tmu 0 3 9947 9948 9949\n\t\tf 3 -4017 4023 -4023\n\t\tmu 0 3 9950 9951 9952\n\t\tf 3 4024 4025 4026\n\t\tmu 0 3 9953 9954 9955\n\t\tf 3 4027 -4021 -4027\n\t\tmu 0 3 9956 9957 9958\n\t\tf 3 4028 4029 4030\n\t\tmu 0 3 9959 9960 9961\n\t\tf 3 4031 -4026 -4031\n\t\tmu 0 3 9962 9963 9964\n\t\tf 3 4032 4033 4034\n\t\tmu 0 3 9965 9966 9967\n\t\tf 3 -4030 4035 -4035\n\t\tmu 0 3 9968 9969 9970\n\t\tf 3 4036 4037 4038\n\t\tmu 0 3 9971 9972 9973\n\t\tf 3 -4033 4039 -4039\n\t\tmu 0 3 9974 9975 9976\n\t\tf 3 4040 4041 4042\n\t\tmu 0 3 9977 9978 9979\n\t\tf 3 -4037 4043 -4043\n\t\tmu 0 3 9980 9981 9982\n\t\tf 3 -3973 4044 4045\n\t\tmu 0 3 9983 9984 9985\n\t\tf 3 -4041 4046 -4046\n\t\tmu 0 3 9986 9987 9988\n\t\tf 3 4047 4048 4049\n\t\tmu 0 3 9989 9990 9991\n\t\tf 3 4050 -4048 4051\n\t\tmu 0 3 9992 9993 9994\n\t\tf 3 4052 4053 -4052\n\t\tmu 0 3 9995 9996 9997\n\t\tf 3 4054 -4053 4055\n\t\tmu 0 3 9998 9999 10000\n\t\tf 3 4056 4057 -4056\n\t\tmu 0 3 10001 10002 10003\n\t\tf 3 4058 -4057 4059\n\t\tmu 0 3 10004 10005 10006\n\t\tf 3 4060 4061 -4060\n\t\tmu 0 3 10007 10008 10009\n\t\tf 3 4062 4063 -4061\n\t\tmu 0 3 10010 10011 10012\n\t\tf 3 4064 4065 -4064\n\t\tmu 0 3 10013 10014 10015\n\t\tf 3 4066 4067 -4063\n\t\tmu 0 3 10016 10017 10018\n\t\tf 3 4068 -4067 4069\n\t\tmu 0 3 10019 10020 10021\n\t\tf 3 4070 4071 -4070\n\t\tmu 0 3 10022 10023 10024\n\t\tf 3 4072 -4071 4073\n\t\tmu 0 3 10025 10026 10027\n\t\tf 3 4074 4075 -4074\n\t\tmu 0 3 10028 10029 10030\n\t\tf 3 4076 -4075 4077\n\t\tmu 0 3 10031 10032 10033\n\t\tf 3 4078 4079 -4078\n\t\tmu 0 3 10034 10035 10036\n\t\tf 3 4080 -4079 4081\n\t\tmu 0 3 10037 10038 10039\n\t\tf 3 4082 4083 -4082\n\t\tmu 0 3 10040 10041 10042\n\t\tf 3 4084 -4083 -4050\n\t\tmu 0 3 10043 10044 10045\n\t\tf 3 4085 -3868 4086\n\t\tmu 0 3 10046 10047 10048\n\t\tf 3 4087 4088 -4087\n\t\tmu 0 3 10049 10050 10051\n\t\tf 3 -4088 4089 4090\n\t\tmu 0 3 10052 10053 10054\n\t\tf 3 4091 4092 -4091\n\t\tmu 0 3 10055 10056 10057\n\t\tf 3 4093 -4092 4094\n\t\tmu 0 3 10058 10059 10060\n\t\tf 3 -4086 4095 4096\n\t\tmu 0 3 10061 10062 10063\n\t\tf 3 4097 -3872 -4097\n\t\tmu 0 3 10064 10065 10066\n\t\tf 3 -4098 4098 4099\n\t\tmu 0 3 10067 10068 10069\n\t\tf 3 4100 -3876 -4100\n\t\tmu 0 3 10070 10071 10072\n\t\tf 3 -4101 4101 4102\n\t\tmu 0 3 10073 10074 10075\n\t\tf 3 4103 -3880 -4103\n\t\tmu 0 3 10076 10077 10078\n\t\tf 3 -4104 4104 4105\n\t\tmu 0 3 10079 10080 10081\n\t\tf 3 4106 -3884 -4106\n\t\tmu 0 3 10082 10083 10084\n\t\tf 3 -4107 4107 4108\n\t\tmu 0 3 10085 10086 10087\n\t\tf 3 4109 -3888 -4109\n\t\tmu 0 3 10088 10089 10090\n\t\tf 3 -4110 4110 4111\n\t\tmu 0 3 10091 10092 10093\n\t\tf 3 4112 -3892 -4112\n\t\tmu 0 3 10094 10095 10096\n\t\tf 3 -4113 4113 4114\n\t\tmu 0 3 10097 10098 10099\n\t\tf 3 4115 -3896 -4115\n\t\tmu 0 3 10100 10101 10102\n\t\tf 3 -4116 4116 4117\n\t\tmu 0 3 10103 10104 10105\n\t\tf 3 4118 -3900 -4118\n\t\tmu 0 3 10106 10107 10108\n\t\tf 3 -4119 4119 4120\n\t\tmu 0 3 10109 10110 10111\n\t\tf 3 4121 -3904 -4121\n\t\tmu 0 3 10112 10113 10114\n\t\tf 3 -4122 4122 4123\n\t\tmu 0 3 10115 10116 10117\n\t\tf 3 4124 -3908 -4124\n\t\tmu 0 3 10118 10119 10120\n\t\tf 3 -4125 4125 4126\n\t\tmu 0 3 10121 10122 10123\n\t\tf 3 4127 -3912 -4127\n\t\tmu 0 3 10124 10125 10126\n\t\tf 3 -4128 4128 4129\n\t\tmu 0 3 10127 10128 10129\n\t\tf 3 4130 -3916 -4130\n\t\tmu 0 3 10130 10131 10132\n\t\tf 3 -4131 4131 4132\n\t\tmu 0 3 10133 10134 10135\n\t\tf 3 4133 -3920 -4133\n\t\tmu 0 3 10136 10137 10138\n\t\tf 3 4134 4135 4136\n\t\tmu 0 3 10139 10140 10141\n\t\tf 3 4137 4138 -4137\n\t\tmu 0 3 10142 10143 10144\n\t\tf 3 -4139 4139 4140\n\t\tmu 0 3 10145 10146 10147\n\t\tf 3 4141 4142 -4141\n\t\tmu 0 3 10148 10149 10150\n\t\tf 3 4143 -4142 4144\n\t\tmu 0 3 10151 10152 10153\n\t\tf 3 4145 4146 -4145\n\t\tmu 0 3 10154 10155 10156\n\t\tf 3 4147 -4147 4148\n\t\tmu 0 3 10157 10158 10159\n\t\tf 3 4149 4150 -4149\n\t\tmu 0 3 10160 10161 10162\n\t\tf 3 4151 -4151 4152\n\t\tmu 0 3 10163 10164 10165\n\t\tf 3 4153 4154 -4153\n\t\tmu 0 3 10166 10167 10168\n\t\tf 3 4155 -4155 4156\n\t\tmu 0 3 10169 10170 10171\n\t\tf 3 4157 4158 -4157\n\t\tmu 0 3 10172 10173 10174\n\t\tf 3 4159 -4136 4160\n\t\tmu 0 3 10175 10176 10177\n\t\tf 3 4161 4162 -4161\n\t\tmu 0 3 10178 10179 10180\n\t\tf 3 4163 -4159 4164\n\t\tmu 0 3 10181 10182 10183\n\t\tf 3 4165 4166 -4165\n\t\tmu 0 3 10184 10185 10186\n\t\tf 3 4167 4168 4169\n\t\tmu 0 3 10187 10188 10189\n\t\tf 3 4170 4171 -4170\n\t\tmu 0 3 10190 10191 10192\n\t\tf 3 4172 -4172 4173\n\t\tmu 0 3 10193 10194 10195\n\t\tf 3 4174 4175 -4174\n\t\tmu 0 3 10196 10197 10198\n\t\tf 3 4176 -4176 4177\n\t\tmu 0 3 10199 10200 10201\n\t\tf 3 4178 4179 -4178\n\t\tmu 0 3 10202 10203 10204\n\t\tf 3 4180 -4180 4181\n\t\tmu 0 3 10205 10206 10207\n\t\tf 3 4182 4183 -4182\n\t\tmu 0 3 10208 10209 10210\n\t\tf 3 -4184 4184 4185\n\t\tmu 0 3 10211 10212 10213\n\t\tf 3 4186 4187 -4186\n\t\tmu 0 3 10214 10215 10216\n\t\tf 3 4188 -4169 4189\n\t\tmu 0 3 10217 10218 10219\n\t\tf 3 4190 4191 -4190\n\t\tmu 0 3 10220 10221 10222\n\t\tf 3 4192 4193 4194\n\t\tmu 0 3 10223 10224 10225\n\t\tf 3 4195 4196 -4195\n\t\tmu 0 3 10226 10227 10228\n\t\tf 3 -4197 4197 4198\n\t\tmu 0 3 10229 10230 10231\n\t\tf 3 4199 4200 -4199\n\t\tmu 0 3 10232 10233 10234\n\t\tf 3 4201 -4200 4202\n\t\tmu 0 3 10235 10236 10237\n\t\tf 3 4203 4204 -4202\n\t\tmu 0 3 10238 10239 10240\n\t\tf 3 4205 4206 -4204\n\t\tmu 0 3 10241 10242 10243\n\t\tf 3 4207 4208 -4206\n\t\tmu 0 3 10244 10245 10246\n\t\tf 3 -4194 4209 4210\n\t\tmu 0 3 10247 10248 10249\n\t\tf 3 4211 4212 -4211\n\t\tmu 0 3 10250 10251 10252\n\t\tf 3 -4212 4213 4214\n\t\tmu 0 3 10253 10254 10255\n\t\tf 3 4215 4216 -4215\n\t\tmu 0 3 10256 10257 10258\n\t\tf 3 -4216 4217 4218\n\t\tmu 0 3 10259 10260 10261\n\t\tf 3 4219 4220 -4219\n\t\tmu 0 3 10262 10263 10264\n\t\tf 3 -4220 4221 4222\n\t\tmu 0 3 10265 10266 10267\n\t\tf 3 4223 4224 -4223\n\t\tmu 0 3 10268 10269 10270\n\t\tf 3 4225 -4224 4226\n\t\tmu 0 3 10271 10272 10273\n\t\tf 3 4227 4228 -4227\n\t\tmu 0 3 10274 10275 10276\n\t\tf 3 4229 -4229 4230\n\t\tmu 0 3 10277 10278 10279\n\t\tf 3 4231 4232 -4231\n\t\tmu 0 3 10280 10281 10282\n\t\tf 3 -4233 4233 4234\n\t\tmu 0 3 10283 10284 10285\n\t\tf 3 4235 4236 -4235\n\t\tmu 0 3 10286 10287 10288\n\t\tf 3 -4236 4237 4238\n\t\tmu 0 3 10289 10290 10291\n\t\tf 3 4239 4240 -4239\n\t\tmu 0 3 10292 10293 10294\n\t\tf 3 -4240 4241 4242\n\t\tmu 0 3 10295 10296 10297\n\t\tf 3 4243 4244 -4243\n\t\tmu 0 3 10298 10299 10300\n\t\tf 3 -4244 4245 4246\n\t\tmu 0 3 10301 10302 10303\n\t\tf 3 4247 4248 -4247\n\t\tmu 0 3 10304 10305 10306\n\t\tf 3 -4248 4249 4250\n\t\tmu 0 3 10307 10308 10309\n\t\tf 3 4251 4252 -4251\n\t\tmu 0 3 10310 10311 10312\n\t\tf 3 -4252 4253 4254\n\t\tmu 0 3 10313 10314 10315\n\t\tf 3 4255 4256 -4255\n\t\tmu 0 3 10316 10317 10318\n\t\tf 3 4257 -4256 4258\n\t\tmu 0 3 10319 10320 10321\n\t\tf 3 4259 4260 -4259\n\t\tmu 0 3 10322 10323 10324\n\t\tf 3 4261 4262 4263\n\t\tmu 0 3 10325 10326 10327\n\t\tf 3 -4264 4264 4265\n\t\tmu 0 3 10328 10329 10330\n\t\tf 3 -4266 4266 4267\n\t\tmu 0 3 10331 10332 10333\n\t\tf 3 4268 4269 4270\n\t\tmu 0 3 10334 10335 10336\n\t\tf 3 4271 4272 -4271\n\t\tmu 0 3 10337 10338 10339\n\t\tf 3 4273 4274 4275\n\t\tmu 0 3 10340 10341 10342\n\t\tf 3 4276 4277 -4276\n\t\tmu 0 3 10343 10344 10345\n\t\tf 3 -4277 4278 4279\n\t\tmu 0 3 10346 10347 10348\n\t\tf 3 4280 4281 -4280\n\t\tmu 0 3 10349 10350 10351\n\t\tf 3 -4281 4282 4283\n\t\tmu 0 3 10352 10353 10354\n\t\tf 3 4284 4285 -4284\n\t\tmu 0 3 10355 10356 10357\n\t\tf 3 4286 4287 4288\n\t\tmu 0 3 10358 10359 10360\n\t\tf 3 4289 4290 -4289\n\t\tmu 0 3 10361 10362 10363\n\t\tf 3 4291 4292 4293\n\t\tmu 0 3 10364 10365 10366\n\t\tf 3 4294 4295 -4294\n\t\tmu 0 3 10367 10368 10369\n\t\tf 3 -4295 4296 4297\n\t\tmu 0 3 10370 10371 10372\n\t\tf 3 4298 4299 -4298\n\t\tmu 0 3 10373 10374 10375\n\t\tf 3 -4299 4300 4301\n\t\tmu 0 3 10376 10377 10378\n\t\tf 3 4302 4303 -4302\n\t\tmu 0 3 10379 10380 10381\n\t\tf 3 4304 4305 4306\n\t\tmu 0 3 10382 10383 10384\n\t\tf 3 4307 -3833 -4307\n\t\tmu 0 3 10385 10386 10387\n\t\tf 3 4308 -4306 4309\n\t\tmu 0 3 10388 10389 10390\n\t\tf 3 4310 4311 -4309\n\t\tmu 0 3 10391 10392 10393\n\t\tf 3 4312 4313 -4312\n\t\tmu 0 3 10394 10395 10396\n\t\tf 3 -4310 4314 4315\n\t\tmu 0 3 10397 10398 10399\n\t\tf 3 -4316 4316 4317\n\t\tmu 0 3 10400 10401 10402\n\t\tf 3 -4318 4318 4319\n\t\tmu 0 3 10403 10404 10405\n\t\tf 3 4320 4321 4322\n\t\tmu 0 3 713 5922 3995\n\t\tf 3 4323 4324 -4323\n\t\tmu 0 3 3995 5182 713\n\t\tf 3 4325 -4324 4326\n\t\tmu 0 3 5533 5182 3995\n\t\tf 3 4327 4328 -4327\n\t\tmu 0 3 3995 2710 5533\n\t\tf 3 4329 -4321 4330\n\t\tmu 0 3 4175 5922 713\n\t\tf 3 4331 4332 -4331\n\t\tmu 0 3 713 3812 4175\n\t\tf 3 -4333 4333 4334\n\t\tmu 0 3 4175 3812 5424\n\t\tf 3 4335 4336 -4335\n\t\tmu 0 3 5424 5061 4175\n\t\tf 3 -4329 4337 4338\n\t\tmu 0 3 5533 2710 6235\n\t\tf 3 4339 4340 -4339\n\t\tmu 0 3 6235 1897 5533\n\t\tf 3 4341 -4340 4342\n\t\tmu 0 3 1126 1897 6235\n\t\tf 3 4343 4344 -4343\n\t\tmu 0 3 6235 4785 1126\n\t\tf 3 -4345 4345 4346\n\t\tmu 0 3 1126 4785 2281\n\t\tf 3 4347 4348 -4347\n\t\tmu 0 3 2281 554 1126\n\t\tf 3 4349 -4348 4350\n\t\tmu 0 3 5306 554 2281\n\t\tf 3 4351 4352 -4351\n\t\tmu 0 3 2281 3842 5306\n\t\tf 3 -4353 4353 4354\n\t\tmu 0 3 5306 3842 258\n\t\tf 3 4355 4356 -4355\n\t\tmu 0 3 258 689 5306\n\t\tf 3 4357 -4356 4358\n\t\tmu 0 3 2856 689 258\n\t\tf 3 4359 4360 -4359\n\t\tmu 0 3 258 6020 2856\n\t\tf 3 -4361 4361 4362\n\t\tmu 0 3 2856 6020 3850\n\t\tf 3 4363 4364 -4363\n\t\tmu 0 3 3850 1422 2856\n\t\tf 3 4365 -4364 4366\n\t\tmu 0 3 2271 1422 3850\n\t\tf 3 4367 4368 -4367\n\t\tmu 0 3 3850 300 2271\n\t\tf 3 -4369 4369 4370\n\t\tmu 0 3 2271 300 5729\n\t\tf 3 4371 4372 -4371\n\t\tmu 0 3 5729 3798 2271\n\t\tf 3 4373 -4372 4374\n\t\tmu 0 3 1136 3798 5729\n\t\tf 3 4375 4376 -4375\n\t\tmu 0 3 5729 4021 1136\n\t\tf 3 -4377 4377 4378\n\t\tmu 0 3 1136 4021 3869\n\t\tf 3 4379 4380 -4379\n\t\tmu 0 3 3869 336 1136\n\t\tf 3 4381 -4380 4382\n\t\tmu 0 3 3520 336 3869\n\t\tf 3 4383 -4336 -4383\n\t\tmu 0 3 3869 3965 3520\n\t\tf 3 4384 -4382 4385\n\t\tmu 0 3 6191 336 3520\n\t\tf 3 -4381 -4385 4386\n\t\tmu 0 3 1136 336 6191\n\t\tf 3 4387 4388 -4386\n\t\tmu 0 3 3520 5436 6191\n\t\tf 3 4389 -4388 4390\n\t\tmu 0 3 773 5436 3520\n\t\tf 3 -4334 4391 -4391\n\t\tmu 0 3 3520 1774 773\n\t\tf 3 4392 4393 -4387\n\t\tmu 0 3 6191 3706 1136\n\t\tf 3 -4394 4394 4395\n\t\tmu 0 3 1136 3706 1490\n\t\tf 3 4396 -4374 -4396\n\t\tmu 0 3 1490 3798 1136\n\t\tf 3 -4373 -4397 4397\n\t\tmu 0 3 2271 3798 1490\n\t\tf 3 4398 4399 -4398\n\t\tmu 0 3 1490 1698 2271\n\t\tf 3 -4400 4400 4401\n\t\tmu 0 3 2271 1698 1379\n\t\tf 3 4402 -4366 -4402\n\t\tmu 0 3 1379 1422 2271\n\t\tf 3 -4365 -4403 4403\n\t\tmu 0 3 2856 1422 1379\n\t\tf 3 4404 4405 -4404\n\t\tmu 0 3 1379 4149 2856\n\t\tf 3 -4406 4406 4407\n\t\tmu 0 3 2856 4149 2050\n\t\tf 3 4408 -4358 -4408\n\t\tmu 0 3 2050 689 2856\n\t\tf 3 -4357 -4409 4409\n\t\tmu 0 3 5306 689 2050\n\t\tf 3 4410 4411 -4410\n\t\tmu 0 3 2050 2703 5306\n\t\tf 3 -4412 4412 4413\n\t\tmu 0 3 5306 2703 406\n\t\tf 3 4414 -4350 -4414\n\t\tmu 0 3 406 554 5306\n\t\tf 3 -4349 -4415 4415\n\t\tmu 0 3 1126 554 406\n\t\tf 3 4416 4417 -4416\n\t\tmu 0 3 406 2113 1126\n\t\tf 3 -4418 4418 4419\n\t\tmu 0 3 1126 2113 505\n\t\tf 3 4420 -4342 -4420\n\t\tmu 0 3 505 1897 1126\n\t\tf 3 -4421 4421 4422\n\t\tmu 0 3 1897 505 902\n\t\tf 3 4423 -4341 -4423\n\t\tmu 0 3 902 5533 1897\n\t\tf 3 -4424 4424 4425\n\t\tmu 0 3 5533 902 2519\n\t\tf 3 4426 -4326 -4426\n\t\tmu 0 3 2519 5182 5533\n\t\tf 3 -4325 -4427 4427\n\t\tmu 0 3 713 5182 2519\n\t\tf 3 4428 4429 -4428\n\t\tmu 0 3 2519 1669 713\n\t\tf 3 -4430 4430 4431\n\t\tmu 0 3 713 1669 6122\n\t\tf 3 -4392 -4332 -4432\n\t\tmu 0 3 6122 3812 713\n\t\tf 3 4432 4433 4434\n\t\tmu 0 3 490 2808 4190\n\t\tf 3 4435 4436 -4435\n\t\tmu 0 3 4190 3289 490\n\t\tf 3 4437 -4437 4438\n\t\tmu 0 3 3456 490 3289\n\t\tf 3 4439 4440 -4439\n\t\tmu 0 3 3289 4292 3456\n\t\tf 3 4441 -4441 4442\n\t\tmu 0 3 1956 3456 4292\n\t\tf 3 4443 4444 -4443\n\t\tmu 0 3 4292 1657 1956\n\t\tf 3 4445 -4445 4446\n\t\tmu 0 3 6276 1956 1657\n\t\tf 3 4447 4448 -4447\n\t\tmu 0 3 1657 618 6276\n\t\tf 3 4449 -4449 4450\n\t\tmu 0 3 6266 6276 618\n\t\tf 3 4451 4452 -4451\n\t\tmu 0 3 618 4418 6266\n\t\tf 3 4453 -4453 4454\n\t\tmu 0 3 3234 6266 4418\n\t\tf 3 4455 4456 -4455\n\t\tmu 0 3 4418 776 3234\n\t\tf 3 4457 -4457 4458\n\t\tmu 0 3 2277 3234 776\n\t\tf 3 4459 4460 -4459\n\t\tmu 0 3 776 4977 2277\n\t\tf 3 4461 -4461 4462\n\t\tmu 0 3 5280 2277 4977\n\t\tf 3 4463 4464 -4463\n\t\tmu 0 3 4977 1220 5280\n\t\tf 3 4465 -4465 4466\n\t\tmu 0 3 871 5280 1220\n\t\tf 3 4467 4468 -4467\n\t\tmu 0 3 1220 3902 871\n\t\tf 3 4469 -4469 4470\n\t\tmu 0 3 2278 871 3902\n\t\tf 3 4471 4472 -4471\n\t\tmu 0 3 3902 3945 2278\n\t\tf 3 4473 -4473 4474\n\t\tmu 0 3 1408 2278 3945\n\t\tf 3 4475 4476 -4475\n\t\tmu 0 3 3945 6045 1408\n\t\tf 3 4477 -4477 4478\n\t\tmu 0 3 6495 1408 6045\n\t\tf 3 4479 4480 -4479\n\t\tmu 0 3 6045 489 6495\n\t\tf 3 4481 -4481 4482\n\t\tmu 0 3 4076 6495 489\n\t\tf 3 4483 4484 -4483\n\t\tmu 0 3 489 5289 4076\n\t\tf 3 4485 -4485 4486\n\t\tmu 0 3 1019 4076 5289\n\t\tf 3 4487 4488 -4487\n\t\tmu 0 3 5289 6248 1019\n\t\tf 3 4489 -4489 4490\n\t\tmu 0 3 948 1019 6248\n\t\tf 3 4491 4492 -4491\n\t\tmu 0 3 6248 2702 948\n\t\tf 3 4493 -4493 4494\n\t\tmu 0 3 2808 948 2702\n\t\tf 3 4495 -4434 -4495\n\t\tmu 0 3 2702 4190 2808\n\t\tf 3 4496 4497 4498\n\t\tmu 0 3 4452 4868 605\n\t\tf 3 4499 4500 -4499\n\t\tmu 0 3 605 2562 4452\n\t\tf 3 4501 -4501 4502\n\t\tmu 0 3 4597 4452 2562\n\t\tf 3 4503 4504 -4503\n\t\tmu 0 3 2562 1957 4597\n\t\tf 3 4505 -4505 4506\n\t\tmu 0 3 3658 4597 1957\n\t\tf 3 4507 4508 -4507\n\t\tmu 0 3 1957 1694 3658\n\t\tf 3 4509 -4509 4510\n\t\tmu 0 3 5164 3658 1694\n\t\tf 3 4511 4512 -4511\n\t\tmu 0 3 1694 1435 5164\n\t\tf 3 4513 -4513 4514\n\t\tmu 0 3 4167 5164 1435\n\t\tf 3 4515 4516 -4515\n\t\tmu 0 3 1435 5159 4167\n\t\tf 3 4517 -4498 4518\n\t\tmu 0 3 5747 605 4868\n\t\tf 3 4519 4520 -4519\n\t\tmu 0 3 4868 1940 5747\n\t\tf 3 4521 -4521 4522\n\t\tmu 0 3 1900 5747 1940\n\t\tf 3 4523 4524 -4523\n\t\tmu 0 3 1940 3511 1900\n\t\tf 3 4525 -4525 4526\n\t\tmu 0 3 428 1900 3511\n\t\tf 3 4527 4528 -4527\n\t\tmu 0 3 3511 690 428\n\t\tf 3 4529 -4529 4530\n\t\tmu 0 3 1061 428 690\n\t\tf 3 4531 4532 -4531\n\t\tmu 0 3 690 4286 1061\n\t\tf 3 4533 -4533 4534\n\t\tmu 0 3 987 1061 4286\n\t\tf 3 4535 4536 -4535\n\t\tmu 0 3 4286 161 987\n\t\tf 3 4537 -4537 4538\n\t\tmu 0 3 751 987 161\n\t\tf 3 4539 4540 -4539\n\t\tmu 0 3 161 375 751\n\t\tf 3 4541 -4541 4542\n\t\tmu 0 3 5923 751 375\n\t\tf 3 4543 4544 -4543\n\t\tmu 0 3 375 1809 5923\n\t\tf 3 4545 -4545 4546\n\t\tmu 0 3 2051 5923 1809\n\t\tf 3 4547 4548 -4547\n\t\tmu 0 3 1809 4442 2051\n\t\tf 3 4549 -4549 4550\n\t\tmu 0 3 1988 2051 4442\n\t\tf 3 4551 4552 -4551\n\t\tmu 0 3 4442 3435 1988\n\t\tf 3 4553 -4553 4554\n\t\tmu 0 3 396 1988 3435\n\t\tf 3 4555 4556 -4555\n\t\tmu 0 3 3435 3315 396\n\t\tf 3 4557 -4557 4558\n\t\tmu 0 3 5504 396 3315\n\t\tf 3 4559 -4517 -4559\n\t\tmu 0 3 3315 1144 5504\n\t\tf 3 4560 4561 4562\n\t\tmu 0 3 6029 1725 3397\n\t\tf 3 4563 -4500 -4563\n\t\tmu 0 3 3397 1699 6029;\n\tsetAttr \".fc[2500:2999]\"\n\t\tf 3 -4504 -4564 4564\n\t\tmu 0 3 4225 1699 3397\n\t\tf 3 4565 4566 -4565\n\t\tmu 0 3 3397 659 4225\n\t\tf 3 -4567 4567 4568\n\t\tmu 0 3 4225 659 1841\n\t\tf 3 4569 -4508 -4569\n\t\tmu 0 3 1841 3229 4225\n\t\tf 3 -4512 -4570 4570\n\t\tmu 0 3 2669 3229 1841\n\t\tf 3 4571 4572 -4571\n\t\tmu 0 3 1841 2257 2669\n\t\tf 3 4573 -4561 4574\n\t\tmu 0 3 1767 1725 6029\n\t\tf 3 -4518 4575 -4575\n\t\tmu 0 3 6029 3473 1767\n\t\tf 3 -4576 -4522 4576\n\t\tmu 0 3 1767 3473 5110\n\t\tf 3 4577 4578 -4577\n\t\tmu 0 3 5110 395 1767\n\t\tf 3 4579 -4578 4580\n\t\tmu 0 3 287 395 5110\n\t\tf 3 -4526 4581 -4581\n\t\tmu 0 3 5110 1713 287\n\t\tf 3 -4582 -4530 4582\n\t\tmu 0 3 287 1713 6030\n\t\tf 3 4583 4584 -4583\n\t\tmu 0 3 6030 5165 287\n\t\tf 3 4585 -4584 4586\n\t\tmu 0 3 1832 5165 6030\n\t\tf 3 -4534 4587 -4587\n\t\tmu 0 3 6030 3457 1832\n\t\tf 3 -4588 -4538 4588\n\t\tmu 0 3 1832 3457 5197\n\t\tf 3 4589 4590 -4589\n\t\tmu 0 3 5197 3126 1832\n\t\tf 3 4591 -4590 4592\n\t\tmu 0 3 3957 3126 5197\n\t\tf 3 -4542 4593 -4593\n\t\tmu 0 3 5197 1078 3957\n\t\tf 3 -4594 -4546 4594\n\t\tmu 0 3 3957 1078 3390\n\t\tf 3 4595 4596 -4595\n\t\tmu 0 3 3390 4233 3957\n\t\tf 3 4597 -4596 4598\n\t\tmu 0 3 6543 4233 3390\n\t\tf 3 -4550 4599 -4599\n\t\tmu 0 3 3390 1446 6543\n\t\tf 3 -4600 -4554 4600\n\t\tmu 0 3 6543 1446 231\n\t\tf 3 4601 4602 -4601\n\t\tmu 0 3 231 2252 6543\n\t\tf 3 4603 -4602 4604\n\t\tmu 0 3 4636 2252 231\n\t\tf 3 -4558 4605 -4605\n\t\tmu 0 3 231 4747 4636\n\t\tf 3 -4606 -4516 4606\n\t\tmu 0 3 5539 4747 4151\n\t\tf 3 -4573 4607 -4607\n\t\tmu 0 3 4151 3244 5539\n\t\tf 3 4608 4609 4610\n\t\tmu 0 3 2981 4098 4773\n\t\tf 3 -4611 4611 4612\n\t\tmu 0 3 2981 4773 2248\n\t\tf 3 4613 4614 -4612\n\t\tmu 0 3 4773 4541 2248\n\t\tf 3 -4613 4615 4616\n\t\tmu 0 3 2981 2248 5103\n\t\tf 3 4617 4618 -4616\n\t\tmu 0 3 2248 6407 5103\n\t\tf 3 4619 4620 -4618\n\t\tmu 0 3 2248 1398 6407\n\t\tf 3 4621 4622 -4619\n\t\tmu 0 3 6407 342 5103\n\t\tf 3 -4617 4623 4624\n\t\tmu 0 3 2981 5103 1582\n\t\tf 3 4625 4626 -4624\n\t\tmu 0 3 5103 217 1582\n\t\tf 3 4627 4628 -4626\n\t\tmu 0 3 5103 162 217\n\t\tf 3 4629 4630 -4627\n\t\tmu 0 3 217 3599 1582\n\t\tf 3 -4625 4631 4632\n\t\tmu 0 3 2981 1582 2717\n\t\tf 3 4633 4634 -4632\n\t\tmu 0 3 1582 5352 2717\n\t\tf 3 4635 -4633 4636\n\t\tmu 0 3 2014 2981 2717\n\t\tf 3 4637 4638 4639\n\t\tmu 0 3 6277 2837 3796\n\t\tf 3 4640 4641 -4640\n\t\tmu 0 3 3796 2317 6277\n\t\tf 3 4642 -4642 4643\n\t\tmu 0 3 3845 6277 2317\n\t\tf 3 4644 4645 -4644\n\t\tmu 0 3 2317 5587 3845\n\t\tf 3 -4643 4646 4647\n\t\tmu 0 3 6277 3845 769\n\t\tf 3 4648 4649 -4648\n\t\tmu 0 3 769 696 6277\n\t\tf 3 -4638 -4650 4650\n\t\tmu 0 3 2837 6277 696\n\t\tf 3 4651 4652 -4651\n\t\tmu 0 3 696 703 2837\n\t\tf 3 4653 -4639 4654\n\t\tmu 0 3 2916 3796 2837\n\t\tf 3 4655 4656 -4655\n\t\tmu 0 3 2837 5736 2916\n\t\tf 3 -4656 -4653 4657\n\t\tmu 0 3 5736 2837 703\n\t\tf 3 4658 4659 -4658\n\t\tmu 0 3 703 390 5736\n\t\tf 3 -4659 4660 4661\n\t\tmu 0 3 390 703 4417\n\t\tf 3 -4661 -4652 4662\n\t\tmu 0 3 4417 703 696\n\t\tf 3 4663 4664 -4662\n\t\tmu 0 3 4417 1668 390\n\t\tf 3 4665 4666 -4665\n\t\tmu 0 3 1668 377 390\n\t\tf 3 4667 4668 -4666\n\t\tmu 0 3 1668 1255 377\n\t\tf 3 4669 4670 -4668\n\t\tmu 0 3 1668 3179 1255\n\t\tf 3 -4667 4671 4672\n\t\tmu 0 3 390 377 285\n\t\tf 3 4673 -4660 -4673\n\t\tmu 0 3 285 5736 390\n\t\tf 3 4674 -4657 -4674\n\t\tmu 0 3 285 2916 5736\n\t\tf 3 4675 -4649 4676\n\t\tmu 0 3 1323 696 769\n\t\tf 3 -4676 4677 -4663\n\t\tmu 0 3 696 1323 4417\n\t\tf 3 4678 4679 -4677\n\t\tmu 0 3 769 108 1323\n\t\tf 3 4680 4681 -4675\n\t\tmu 0 3 285 4995 2916\n\t\tf 3 4682 4683 -4681\n\t\tmu 0 3 285 2255 4995\n\t\tf 3 4684 -4679 4685\n\t\tmu 0 3 1765 108 769\n\t\tf 3 4686 4687 -4686\n\t\tmu 0 3 769 3271 1765\n\t\tf 3 4688 -4688 4689\n\t\tmu 0 3 3857 1765 3271\n\t\tf 3 4690 4691 -4690\n\t\tmu 0 3 3271 976 3857\n\t\tf 3 4692 -4687 4693\n\t\tmu 0 3 3267 3271 769\n\t\tf 3 -4647 4694 -4694\n\t\tmu 0 3 769 3845 3267\n\t\tf 3 4695 -4695 4696\n\t\tmu 0 3 337 3267 3845\n\t\tf 3 -4646 4697 -4697\n\t\tmu 0 3 3845 5587 337\n\t\tf 3 -4696 4698 4699\n\t\tmu 0 3 3267 337 4922\n\t\tf 3 4700 4701 -4700\n\t\tmu 0 3 4922 5536 3267\n\t\tf 3 4702 -4691 4703\n\t\tmu 0 3 5536 976 3271\n\t\tf 3 -4693 -4702 -4704\n\t\tmu 0 3 3271 3267 5536\n\t\tf 3 4704 4705 4706\n\t\tmu 0 3 1965 3664 6447\n\t\tf 3 4707 4708 -4707\n\t\tmu 0 3 6447 1825 1965\n\t\tf 3 4709 -4708 4710\n\t\tmu 0 3 1823 1825 6447\n\t\tf 3 4711 4712 -4711\n\t\tmu 0 3 6447 190 1823\n\t\tf 3 -4705 4713 4714\n\t\tmu 0 3 3664 1965 3532\n\t\tf 3 4715 4716 -4715\n\t\tmu 0 3 3532 4401 3664\n\t\tf 3 -4716 4717 4718\n\t\tmu 0 3 4401 3532 6520\n\t\tf 3 4719 4720 -4719\n\t\tmu 0 3 6520 4426 4401\n\t\tf 3 4721 -4720 4722\n\t\tmu 0 3 2402 4426 6520\n\t\tf 3 4723 4724 -4723\n\t\tmu 0 3 6520 4004 2402\n\t\tf 3 -4725 4725 4726\n\t\tmu 0 3 2402 4004 1933\n\t\tf 3 4727 4728 -4727\n\t\tmu 0 3 1933 2783 2402\n\t\tf 3 4729 -4728 4730\n\t\tmu 0 3 5723 2783 1933\n\t\tf 3 4731 4732 -4731\n\t\tmu 0 3 1933 5410 5723\n\t\tf 3 4733 4734 4735\n\t\tmu 0 3 10406 10407 5547\n\t\tf 3 4736 4737 -4736\n\t\tmu 0 3 5547 3727 10408\n\t\tf 3 4738 4739 4740\n\t\tmu 0 3 10409 10410 3616\n\t\tf 3 4741 4742 -4741\n\t\tmu 0 3 3616 22 10411\n\t\tf 3 4743 -4742 4744\n\t\tmu 0 3 3998 22 3616\n\t\tf 3 4745 4746 -4745\n\t\tmu 0 3 3616 2959 3998\n\t\tf 3 4747 -4747 4748\n\t\tmu 0 3 192 3998 2959\n\t\tf 3 4749 4750 -4749\n\t\tmu 0 3 2959 514 192\n\t\tf 3 4751 -4751 4752\n\t\tmu 0 3 1115 192 514\n\t\tf 3 4753 4754 -4753\n\t\tmu 0 3 514 2134 1115\n\t\tf 3 -4755 4755 4756\n\t\tmu 0 3 1115 2134 1046\n\t\tf 3 4757 4758 -4757\n\t\tmu 0 3 1046 4837 1115\n\t\tf 3 -4758 4759 4760\n\t\tmu 0 3 4837 1046 1845\n\t\tf 3 4761 4762 -4761\n\t\tmu 0 3 1845 4355 4837\n\t\tf 3 -4762 4763 4764\n\t\tmu 0 3 4355 1845 4844\n\t\tf 3 4765 4766 -4765\n\t\tmu 0 3 4844 6300 4355\n\t\tf 3 4767 -4766 4768\n\t\tmu 0 3 4462 6300 4844\n\t\tf 3 4769 4770 -4769\n\t\tmu 0 3 4844 4386 4462\n\t\tf 3 4771 -4771 4772\n\t\tmu 0 3 1149 4462 4386\n\t\tf 3 4773 4774 -4773\n\t\tmu 0 3 4386 3978 1149\n\t\tf 3 -4775 4775 4776\n\t\tmu 0 3 1149 3978 5248\n\t\tf 3 4777 4778 -4777\n\t\tmu 0 3 5248 5707 1149\n\t\tf 3 4779 4780 4781\n\t\tmu 0 3 10412 10413 4820\n\t\tf 3 4782 4783 -4782\n\t\tmu 0 3 4820 3608 10414\n\t\tf 3 4784 -4783 4785\n\t\tmu 0 3 1934 3608 4820\n\t\tf 3 4786 4787 -4786\n\t\tmu 0 3 4820 565 1934\n\t\tf 3 4788 4789 4790\n\t\tmu 0 3 10415 10416 4718\n\t\tf 3 -4672 4791 -4791\n\t\tmu 0 3 4718 4771 10417\n\t\tf 3 4792 -4792 4793\n\t\tmu 0 3 10418 10419 4771\n\t\tf 3 -4669 4794 -4794\n\t\tmu 0 3 4771 1174 10420\n\t\tf 3 -4683 -4790 4795\n\t\tmu 0 3 2394 4718 10421\n\t\tf 3 4796 4797 -4796\n\t\tmu 0 3 10422 10423 2394\n\t\tf 3 -4684 -4798 4798\n\t\tmu 0 3 6223 2394 10424\n\t\tf 3 4799 4800 -4799\n\t\tmu 0 3 10425 10426 6223\n\t\tf 3 4801 -4795 4802\n\t\tmu 0 3 10427 10428 1174\n\t\tf 3 -4671 4803 -4803\n\t\tmu 0 3 1174 2182 10429\n\t\tf 3 4804 -4804 4805\n\t\tmu 0 3 10430 10431 2182\n\t\tf 3 -4670 4806 -4806\n\t\tmu 0 3 2182 562 10432\n\t\tf 3 -4807 -4664 4807\n\t\tmu 0 3 10433 562 5109\n\t\tf 3 4808 4809 -4808\n\t\tmu 0 3 5109 10434 10435\n\t\tf 3 4810 -4809 4811\n\t\tmu 0 3 10436 10437 5109\n\t\tf 3 -4678 4812 -4812\n\t\tmu 0 3 5109 555 10438\n\t\tf 3 4813 -4813 4814\n\t\tmu 0 3 10439 10440 555\n\t\tf 3 -4680 4815 -4815\n\t\tmu 0 3 555 809 10441\n\t\tf 3 4816 -4816 4817\n\t\tmu 0 3 10442 10443 809\n\t\tf 3 -4685 4818 -4818\n\t\tmu 0 3 809 1025 10444\n\t\tf 3 4819 -4819 4820\n\t\tmu 0 3 10445 10446 1025\n\t\tf 3 -4689 4821 -4821\n\t\tmu 0 3 1025 1448 10447\n\t\tf 3 4822 -4822 4823\n\t\tmu 0 3 10448 10449 1448\n\t\tf 3 -4692 4824 -4824\n\t\tmu 0 3 1448 3288 10450\n\t\tf 3 -4825 -4703 4825\n\t\tmu 0 3 10451 3288 5170\n\t\tf 3 4826 4827 -4826\n\t\tmu 0 3 5170 10452 10453\n\t\tf 3 4828 -4827 4829\n\t\tmu 0 3 10454 10455 5170\n\t\tf 3 -4701 4830 -4830\n\t\tmu 0 3 5170 6376 10456\n\t\tf 3 4831 -4831 4832\n\t\tmu 0 3 10457 10458 6376\n\t\tf 3 -4699 4833 -4833\n\t\tmu 0 3 6376 97 10459\n\t\tf 3 4834 -4834 4835\n\t\tmu 0 3 10460 10461 97\n\t\tf 3 -4698 4836 -4836\n\t\tmu 0 3 97 4520 10462\n\t\tf 3 4837 -4837 4838\n\t\tmu 0 3 10463 10464 4520\n\t\tf 3 -4645 4839 -4839\n\t\tmu 0 3 4520 6542 10465\n\t\tf 3 -4840 -4641 4840\n\t\tmu 0 3 10466 6542 3089\n\t\tf 3 4841 4842 -4841\n\t\tmu 0 3 3089 10467 10468\n\t\tf 3 -4842 -4654 4843\n\t\tmu 0 3 10469 3089 5195\n\t\tf 3 4844 4845 -4844\n\t\tmu 0 3 5195 10470 10471\n\t\tf 3 4846 -4845 4847\n\t\tmu 0 3 10472 10473 5195\n\t\tf 3 -4682 -4801 -4848\n\t\tmu 0 3 5195 3445 10474\n\t\tf 3 4848 4849 4850\n\t\tmu 0 3 705 3546 5007\n\t\tf 3 4851 4852 -4851\n\t\tmu 0 3 5007 1847 705\n\t\tf 3 4853 -4852 4854\n\t\tmu 0 3 2149 1847 5007\n\t\tf 3 4855 4856 -4855\n\t\tmu 0 3 5007 2512 2149\n\t\tf 3 4857 -4849 4858\n\t\tmu 0 3 4127 3546 705\n\t\tf 3 4859 4860 -4859\n\t\tmu 0 3 705 23 4127\n\t\tf 3 -4857 4861 4862\n\t\tmu 0 3 2149 2512 2033\n\t\tf 3 4863 4864 -4863\n\t\tmu 0 3 2033 4733 2149\n\t\tf 3 4865 -4864 4866\n\t\tmu 0 3 2800 4733 2033\n\t\tf 3 4867 4868 -4867\n\t\tmu 0 3 2033 5540 2800\n\t\tf 3 -4869 4869 4870\n\t\tmu 0 3 2800 5540 386\n\t\tf 3 4871 4872 -4871\n\t\tmu 0 3 386 3213 2800\n\t\tf 3 4873 -4872 4874\n\t\tmu 0 3 6258 3213 386\n\t\tf 3 4875 4876 -4875\n\t\tmu 0 3 386 4061 6258\n\t\tf 3 -4877 4877 4878\n\t\tmu 0 3 6258 4061 2988\n\t\tf 3 4879 4880 -4879\n\t\tmu 0 3 2988 756 6258\n\t\tf 3 4881 -4880 4882\n\t\tmu 0 3 6521 756 2988\n\t\tf 3 4883 4884 -4883\n\t\tmu 0 3 2988 2622 6521\n\t\tf 3 -4885 4885 4886\n\t\tmu 0 3 6521 2622 5126\n\t\tf 3 4887 4888 -4887\n\t\tmu 0 3 5126 1272 6521\n\t\tf 3 4889 -4888 4890\n\t\tmu 0 3 592 1272 5126\n\t\tf 3 4891 4892 -4891\n\t\tmu 0 3 5126 434 592\n\t\tf 3 -4893 4893 4894\n\t\tmu 0 3 592 434 3718\n\t\tf 3 4895 4896 -4895\n\t\tmu 0 3 3718 2558 592\n\t\tf 3 4897 -4896 4898\n\t\tmu 0 3 1935 2558 3718\n\t\tf 3 4899 4900 -4899\n\t\tmu 0 3 3718 4040 1935\n\t\tf 3 -4901 4901 4902\n\t\tmu 0 3 1935 4040 4272\n\t\tf 3 4903 4904 -4903\n\t\tmu 0 3 4272 4908 1935\n\t\tf 3 4905 -4904 4906\n\t\tmu 0 3 5293 4908 4272\n\t\tf 3 4907 4908 -4907\n\t\tmu 0 3 4272 3829 5293\n\t\tf 3 4909 -4906 4910\n\t\tmu 0 3 3619 4908 5293\n\t\tf 3 -4905 -4910 4911\n\t\tmu 0 3 1935 4908 3619\n\t\tf 3 4912 4913 -4911\n\t\tmu 0 3 5293 2081 3619\n\t\tf 3 4914 -4913 4915\n\t\tmu 0 3 5161 2081 5293\n\t\tf 3 4916 4917 -4916\n\t\tmu 0 3 5293 267 5161\n\t\tf 3 4918 4919 -4912\n\t\tmu 0 3 3619 3531 1935\n\t\tf 3 -4920 4920 4921\n\t\tmu 0 3 1935 3531 2183\n\t\tf 3 4922 -4898 -4922\n\t\tmu 0 3 2183 2558 1935\n\t\tf 3 -4897 -4923 4923\n\t\tmu 0 3 592 2558 2183\n\t\tf 3 4924 4925 -4924\n\t\tmu 0 3 2183 1088 592\n\t\tf 3 -4926 4926 4927\n\t\tmu 0 3 592 1088 833\n\t\tf 3 4928 -4890 -4928\n\t\tmu 0 3 833 1272 592\n\t\tf 3 -4889 -4929 4929\n\t\tmu 0 3 6521 1272 833\n\t\tf 3 4930 4931 -4930\n\t\tmu 0 3 833 3620 6521\n\t\tf 3 -4932 4932 4933\n\t\tmu 0 3 6521 3620 4670\n\t\tf 3 4934 -4882 -4934\n\t\tmu 0 3 4670 756 6521\n\t\tf 3 -4881 -4935 4935\n\t\tmu 0 3 6258 756 4670\n\t\tf 3 4936 4937 -4936\n\t\tmu 0 3 4670 1878 6258\n\t\tf 3 -4938 4938 4939\n\t\tmu 0 3 6258 1878 5549\n\t\tf 3 4940 -4874 -4940\n\t\tmu 0 3 5549 3213 6258\n\t\tf 3 -4873 -4941 4941\n\t\tmu 0 3 2800 3213 5549\n\t\tf 3 4942 4943 -4942\n\t\tmu 0 3 5549 317 2800\n\t\tf 3 -4944 4944 4945\n\t\tmu 0 3 2800 317 5028\n\t\tf 3 4946 -4866 -4946\n\t\tmu 0 3 5028 4733 2800\n\t\tf 3 -4947 4947 4948\n\t\tmu 0 3 4733 5028 878\n\t\tf 3 4949 -4865 -4949\n\t\tmu 0 3 878 2149 4733\n\t\tf 3 -4950 4950 4951\n\t\tmu 0 3 2149 878 4607\n\t\tf 3 4952 -4854 -4952\n\t\tmu 0 3 4607 1847 2149\n\t\tf 3 -4853 -4953 4953\n\t\tmu 0 3 705 1847 4607\n\t\tf 3 4954 4955 -4954\n\t\tmu 0 3 4607 1327 705\n\t\tf 3 -4956 4956 4957\n\t\tmu 0 3 705 1327 1776\n\t\tf 3 -4918 -4860 -4958\n\t\tmu 0 3 1776 23 705\n\t\tf 3 -4861 -4917 4958\n\t\tmu 0 3 4127 23 4124\n\t\tf 3 -4909 4959 -4959\n\t\tmu 0 3 4124 5861 4127\n\t\tf 3 4960 4961 4962\n\t\tmu 0 3 5651 5153 3797\n\t\tf 3 4963 4964 -4963\n\t\tmu 0 3 3797 547 5651\n\t\tf 3 4965 -4965 4966\n\t\tmu 0 3 5077 5651 547\n\t\tf 3 4967 4968 -4967\n\t\tmu 0 3 547 4241 5077\n\t\tf 3 4969 -4969 4970\n\t\tmu 0 3 1751 5077 4241\n\t\tf 3 4971 4972 -4971\n\t\tmu 0 3 4241 2844 1751\n\t\tf 3 4973 -4973 4974\n\t\tmu 0 3 4769 1751 2844\n\t\tf 3 4975 4976 -4975\n\t\tmu 0 3 2844 6413 4769\n\t\tf 3 4977 -4977 4978\n\t\tmu 0 3 2421 4769 6413\n\t\tf 3 4979 4980 -4979\n\t\tmu 0 3 6413 3799 2421\n\t\tf 3 4981 -4981 4982\n\t\tmu 0 3 4347 2421 3799\n\t\tf 3 4983 4984 -4983\n\t\tmu 0 3 3799 87 4347\n\t\tf 3 4985 -4985 4986\n\t\tmu 0 3 2422 4347 87\n\t\tf 3 4987 4988 -4987\n\t\tmu 0 3 87 449 2422\n\t\tf 3 4989 -4989 4990\n\t\tmu 0 3 2253 2422 449\n\t\tf 3 4991 4992 -4991\n\t\tmu 0 3 449 1658 2253\n\t\tf 3 4993 -4993 4994\n\t\tmu 0 3 2379 2253 1658\n\t\tf 3 4995 4996 -4995\n\t\tmu 0 3 1658 2559 2379\n\t\tf 3 4997 -4997 4998\n\t\tmu 0 3 2650 2379 2559\n\t\tf 3 4999 5000 -4999\n\t\tmu 0 3 2559 4139 2650\n\t\tf 3 5001 -5001 5002\n\t\tmu 0 3 2592 2650 4139\n\t\tf 3 5003 5004 -5003\n\t\tmu 0 3 4139 268 2592\n\t\tf 3 5005 -5005 5006\n\t\tmu 0 3 2414 2592 268\n\t\tf 3 5007 5008 -5007\n\t\tmu 0 3 268 6083 2414\n\t\tf 3 5009 -5009 5010\n\t\tmu 0 3 820 2414 6083\n\t\tf 3 5011 5012 -5011\n\t\tmu 0 3 6083 4022 820\n\t\tf 3 5013 -5013 5014\n\t\tmu 0 3 1998 820 4022\n\t\tf 3 5015 5016 -5015\n\t\tmu 0 3 4022 4242 1998\n\t\tf 3 5017 -5017 5018\n\t\tmu 0 3 2812 1998 4242\n\t\tf 3 5019 5020 -5019\n\t\tmu 0 3 4242 4555 2812\n\t\tf 3 5021 -5021 5022\n\t\tmu 0 3 5153 2812 4555\n\t\tf 3 5023 -4962 -5023\n\t\tmu 0 3 4555 3797 5153\n\t\tf 3 5024 5025 5026\n\t\tmu 0 3 3118 4155 6016\n\t\tf 3 5027 5028 -5027\n\t\tmu 0 3 6016 6140 3118\n\t\tf 3 5029 -5029 5030\n\t\tmu 0 3 2638 3118 6140\n\t\tf 3 5031 5032 -5031\n\t\tmu 0 3 6140 1726 2638\n\t\tf 3 5033 -5033 5034\n\t\tmu 0 3 1135 2638 1726\n\t\tf 3 5035 5036 -5035\n\t\tmu 0 3 1726 3615 1135\n\t\tf 3 5037 -5037 5038\n\t\tmu 0 3 2440 1135 3615\n\t\tf 3 5039 5040 -5039\n\t\tmu 0 3 3615 1099 2440\n\t\tf 3 5041 -5026 5042\n\t\tmu 0 3 5623 6016 4155\n\t\tf 3 5043 5044 -5043\n\t\tmu 0 3 4155 163 5623\n\t\tf 3 5045 -5045 5046\n\t\tmu 0 3 3088 5623 163\n\t\tf 3 5047 5048 -5047\n\t\tmu 0 3 163 2249 3088\n\t\tf 3 5049 -5049 5050\n\t\tmu 0 3 2465 3088 2249\n\t\tf 3 5051 5052 -5051\n\t\tmu 0 3 2249 1580 2465\n\t\tf 3 5053 -5053 5054\n\t\tmu 0 3 988 2465 1580\n\t\tf 3 5055 5056 -5055\n\t\tmu 0 3 1580 3352 988\n\t\tf 3 5057 -5057 5058\n\t\tmu 0 3 3363 988 3352\n\t\tf 3 5059 5060 -5059\n\t\tmu 0 3 3352 5255 3363\n\t\tf 3 5061 -5061 5062\n\t\tmu 0 3 585 3363 5255\n\t\tf 3 5063 5064 -5063\n\t\tmu 0 3 5255 3682 585\n\t\tf 3 5065 -5065 5066\n\t\tmu 0 3 1357 585 3682\n\t\tf 3 5067 5068 -5067\n\t\tmu 0 3 3682 3395 1357\n\t\tf 3 5069 -5069 5070\n\t\tmu 0 3 5776 1357 3395\n\t\tf 3 5071 5072 -5071\n\t\tmu 0 3 3395 301 5776\n\t\tf 3 5073 -5073 5074\n\t\tmu 0 3 1666 5776 301\n\t\tf 3 5075 5076 -5075\n\t\tmu 0 3 301 2121 1666\n\t\tf 3 5077 -5077 5078\n\t\tmu 0 3 1588 1666 2121\n\t\tf 3 5079 5080 -5079\n\t\tmu 0 3 2121 931 1588\n\t\tf 3 5081 -5081 5082\n\t\tmu 0 3 1110 1588 931\n\t\tf 3 5083 5084 -5083\n\t\tmu 0 3 931 2233 1110\n\t\tf 3 5085 -5085 5086\n\t\tmu 0 3 6129 1110 2233\n\t\tf 3 5087 -5041 -5087\n\t\tmu 0 3 2233 445 6129\n\t\tf 3 5088 5089 5090\n\t\tmu 0 3 3906 6487 5482\n\t\tf 3 5091 -5028 -5091\n\t\tmu 0 3 5482 5114 3906\n\t\tf 3 -5032 -5092 5092\n\t\tmu 0 3 3523 5114 5482\n\t\tf 3 5093 5094 -5093\n\t\tmu 0 3 5482 2489 3523\n\t\tf 3 -5095 5095 5096\n\t\tmu 0 3 3523 2489 3813\n\t\tf 3 5097 -5036 -5097\n\t\tmu 0 3 3813 2887 3523\n\t\tf 3 -5040 -5098 5098\n\t\tmu 0 3 1360 2887 3813\n\t\tf 3 5099 5100 -5099\n\t\tmu 0 3 3813 3702 1360\n\t\tf 3 5101 -5089 5102\n\t\tmu 0 3 109 6487 3906\n\t\tf 3 -5042 5103 -5103\n\t\tmu 0 3 3906 80 109\n\t\tf 3 -5104 -5046 5104\n\t\tmu 0 3 109 80 6192\n\t\tf 3 5105 5106 -5105\n\t\tmu 0 3 6192 1898 109\n\t\tf 3 5107 -5106 5108\n\t\tmu 0 3 601 1898 6192\n\t\tf 3 -5050 5109 -5109\n\t\tmu 0 3 6192 3426 601\n\t\tf 3 -5110 -5054 5110\n\t\tmu 0 3 601 3426 6449\n\t\tf 3 5111 5112 -5111\n\t\tmu 0 3 6449 1848 601\n\t\tf 3 5113 -5112 5114\n\t\tmu 0 3 804 1848 6449\n\t\tf 3 -5058 5115 -5115\n\t\tmu 0 3 6449 5010 804\n\t\tf 3 -5116 -5062 5116\n\t\tmu 0 3 804 5010 3640\n\t\tf 3 5117 5118 -5117\n\t\tmu 0 3 3640 706 804\n\t\tf 3 5119 -5118 5120\n\t\tmu 0 3 448 706 3640\n\t\tf 3 -5066 5121 -5121\n\t\tmu 0 3 3640 6037 448\n\t\tf 3 -5122 -5070 5122\n\t\tmu 0 3 448 6037 2939\n\t\tf 3 5123 5124 -5123\n\t\tmu 0 3 2939 3583 448\n\t\tf 3 5125 -5124 5126\n\t\tmu 0 3 2047 3583 2939\n\t\tf 3 -5074 5127 -5127\n\t\tmu 0 3 2939 1428 2047\n\t\tf 3 -5128 -5078 5128\n\t\tmu 0 3 2047 1428 3110\n\t\tf 3 5129 5130 -5129\n\t\tmu 0 3 3110 414 2047\n\t\tf 3 5131 -5130 5132\n\t\tmu 0 3 5392 414 3110\n\t\tf 3 -5082 5133 -5133\n\t\tmu 0 3 3110 20 5392\n\t\tf 3 -5134 -5086 5134\n\t\tmu 0 3 212 4027 1360\n\t\tf 3 -5101 5135 -5135\n\t\tmu 0 3 1360 1872 212\n\t\tf 3 5136 5137 5138\n\t\tmu 0 3 2679 1979 4091\n\t\tf 3 -5139 5139 5140\n\t\tmu 0 3 2679 4091 5102\n\t\tf 3 5141 5142 -5140\n\t\tmu 0 3 4091 2114 5102\n\t\tf 3 -5141 5143 5144\n\t\tmu 0 3 2679 5102 6123\n\t\tf 3 5145 5146 -5144\n\t\tmu 0 3 5102 123 6123\n\t\tf 3 5147 5148 -5146\n\t\tmu 0 3 5102 1310 123\n\t\tf 3 5149 5150 -5147\n\t\tmu 0 3 123 3637 6123\n\t\tf 3 -5145 5151 5152\n\t\tmu 0 3 2679 6123 2015\n\t\tf 3 5153 5154 -5152\n\t\tmu 0 3 6123 4753 2015\n\t\tf 3 5155 5156 -5154\n\t\tmu 0 3 6123 3007 4753\n\t\tf 3 5157 5158 -5155\n\t\tmu 0 3 4753 6214 2015\n\t\tf 3 -5153 5159 5160\n\t\tmu 0 3 2679 2015 3579\n\t\tf 3 5161 5162 -5160\n\t\tmu 0 3 2015 2323 3579\n\t\tf 3 5163 -5161 5164\n\t\tmu 0 3 2412 2679 3579\n\t\tf 3 5165 5166 5167\n\t\tmu 0 3 4220 2694 4052\n\t\tf 3 5168 5169 -5168\n\t\tmu 0 3 4052 6317 4220\n\t\tf 3 5170 -5167 5171\n\t\tmu 0 3 4391 4052 2694\n\t\tf 3 5172 5173 -5172\n\t\tmu 0 3 2694 415 4391\n\t\tf 3 5174 5175 5176\n\t\tmu 0 3 3010 10475 10476\n\t\tf 3 5177 5178 -5177\n\t\tmu 0 3 10477 1183 3010\n\t\tf 3 5179 -5170 5180\n\t\tmu 0 3 1438 4220 6317\n\t\tf 3 5181 5182 -5181\n\t\tmu 0 3 6317 2704 1438\n\t\tf 3 5183 -5183 5184\n\t\tmu 0 3 5583 1438 2704\n\t\tf 3 5185 5186 -5185\n\t\tmu 0 3 2704 6528 5583\n\t\tf 3 5187 5188 5189\n\t\tmu 0 3 1846 10478 10479\n\t\tf 3 5190 5191 -5190\n\t\tmu 0 3 10480 4564 1846\n\t\tf 3 5192 -5192 5193\n\t\tmu 0 3 6390 1846 4564\n\t\tf 3 5194 5195 -5194\n\t\tmu 0 3 4564 2520 6390\n\t\tf 3 5196 -5187 5197\n\t\tmu 0 3 2640 5583 6528\n\t\tf 3 5198 5199 -5198\n\t\tmu 0 3 6528 4640 2640\n\t\tf 3 5200 -5200 5201\n\t\tmu 0 3 2443 2640 4640\n\t\tf 3 5202 5203 -5202\n\t\tmu 0 3 4640 2891 2443\n\t\tf 3 5204 -5204 5205\n\t\tmu 0 3 3368 2443 2891\n\t\tf 3 5206 5207 -5206\n\t\tmu 0 3 2891 2705 3368\n\t\tf 3 5208 -5208 5209\n\t\tmu 0 3 5360 3368 2705\n\t\tf 3 5210 5211 -5210\n\t\tmu 0 3 2705 2828 5360\n\t\tf 3 5212 -5212 5213\n\t\tmu 0 3 1301 5360 2828\n\t\tf 3 5214 5215 -5214\n\t\tmu 0 3 2828 4723 1301\n\t\tf 3 5216 -5216 5217\n\t\tmu 0 3 1796 1301 4723\n\t\tf 3 5218 5219 -5218\n\t\tmu 0 3 4723 4532 1796\n\t\tf 3 5220 -5220 5221\n\t\tmu 0 3 3093 1796 4532\n\t\tf 3 5222 5223 -5222\n\t\tmu 0 3 4532 1093 3093\n\t\tf 3 5224 5225 5226\n\t\tmu 0 3 3893 10481 10482\n\t\tf 3 5227 5228 -5227\n\t\tmu 0 3 10483 3258 3893\n\t\tf 3 5229 5230 5231\n\t\tmu 0 3 2737 10484 10485\n\t\tf 3 5232 5233 -5232\n\t\tmu 0 3 10486 1185 2737\n\t\tf 3 5234 -5234 5235\n\t\tmu 0 3 1380 2737 1185\n\t\tf 3 5236 5237 -5236\n\t\tmu 0 3 1185 3926 1380\n\t\tf 3 5238 -5238 5239\n\t\tmu 0 3 4383 1380 3926\n\t\tf 3 5240 -5196 -5240\n\t\tmu 0 3 3926 260 4383\n\t\tf 3 5241 5242 5243\n\t\tmu 0 3 10487 10488 5756\n\t\tf 3 5244 5245 5246\n\t\tmu 0 3 10489 10490 2741\n\t\tf 3 5247 -5243 -5247\n\t\tmu 0 3 2741 5756 10491\n\t\tf 3 5248 -5246 5249\n\t\tmu 0 3 1843 2741 10492\n\t\tf 3 5250 5251 -5250\n\t\tmu 0 3 10493 10494 1843\n\t\tf 3 5252 -5252 5253\n\t\tmu 0 3 44 1843 10495\n\t\tf 3 5254 5255 -5254\n\t\tmu 0 3 10496 10497 44\n\t\tf 3 5256 -5256 5257\n\t\tmu 0 3 2833 44 10498\n\t\tf 3 5258 5259 -5258\n\t\tmu 0 3 10499 10500 2833\n\t\tf 3 5260 -5260 5261\n\t\tmu 0 3 3309 2833 10501\n\t\tf 3 5262 5263 -5262\n\t\tmu 0 3 10502 10503 3309\n\t\tf 3 -5264 5264 5265\n\t\tmu 0 3 3309 10504 10505\n\t\tf 3 5266 5267 -5266\n\t\tmu 0 3 10506 2598 3309\n\t\tf 3 5268 5269 -5244\n\t\tmu 0 3 5756 1090 10507\n\t\tf 3 5270 -5270 5271\n\t\tmu 0 3 10508 10509 1090\n\t\tf 3 5272 5273 -5272\n\t\tmu 0 3 1090 5863 10510\n\t\tf 3 5274 -5274 5275\n\t\tmu 0 3 10511 10512 5863\n\t\tf 3 5276 5277 -5276\n\t\tmu 0 3 5863 4024 10513\n\t\tf 3 -5278 5278 5279\n\t\tmu 0 3 10514 4024 3984\n\t\tf 3 5280 5281 -5280\n\t\tmu 0 3 3984 10515 10516\n\t\tf 3 5282 -5281 5283\n\t\tmu 0 3 10517 10518 3984\n\t\tf 3 5284 5285 -5284\n\t\tmu 0 3 3984 4288 10519\n\t\tf 3 5286 -5286 5287\n\t\tmu 0 3 10520 10521 4288\n\t\tf 3 5288 5289 -5288\n\t\tmu 0 3 4288 5773 10522\n\t\tf 3 5290 -5290 5291\n\t\tmu 0 3 10523 10524 5773\n\t\tf 3 5292 5293 -5292\n\t\tmu 0 3 5773 6396 10525\n\t\tf 3 5294 -5294 5295\n\t\tmu 0 3 10526 10527 6396\n\t\tf 3 5296 5297 -5296\n\t\tmu 0 3 6396 581 10528\n\t\tf 3 5298 -5298 5299\n\t\tmu 0 3 10529 10530 581\n\t\tf 3 5300 5301 -5300\n\t\tmu 0 3 581 3164 10531\n\t\tf 3 5302 -5302 5303\n\t\tmu 0 3 10532 10533 3164\n\t\tf 3 5304 5305 -5304\n\t\tmu 0 3 3164 2985 10534\n\t\tf 3 5306 -5306 5307\n\t\tmu 0 3 10535 10536 2985\n\t\tf 3 5308 5309 -5308\n\t\tmu 0 3 2985 1458 10537\n\t\tf 3 5310 -5310 5311\n\t\tmu 0 3 10538 10539 1458\n\t\tf 3 5312 -5267 -5312\n\t\tmu 0 3 1458 1621 10540\n\t\tf 3 -5309 -5305 5313\n\t\tmu 0 3 929 3094 2516\n\t\tf 3 -5314 5314 5315\n\t\tmu 0 3 929 2516 310\n\t\tf 3 -5301 -5297 -5315\n\t\tmu 0 3 2516 4356 310\n\t\tf 3 -5316 5316 5317\n\t\tmu 0 3 929 310 3600\n\t\tf 3 -5293 5318 -5317\n\t\tmu 0 3 310 348 3600\n\t\tf 3 -5289 -5285 -5319\n\t\tmu 0 3 348 1753 3600\n\t\tf 3 -5318 5319 5320\n\t\tmu 0 3 929 3600 3758\n\t\tf 3 5321 5322 -5320\n\t\tmu 0 3 3600 905 3758\n\t\tf 3 5323 5324 -5322\n\t\tmu 0 3 3600 5957 905\n\t\tf 3 -5279 -5277 -5324\n\t\tmu 0 3 3600 4506 5957\n\t\tf 3 -5273 5325 -5325\n\t\tmu 0 3 5957 1186 905\n\t\tf 3 -5269 -5248 -5326\n\t\tmu 0 3 1186 269 905\n\t\tf 3 5326 -5261 -5323\n\t\tmu 0 3 905 4070 3758\n\t\tf 3 -5249 5327 -5327\n\t\tmu 0 3 905 1053 4070\n\t\tf 3 -5253 -5257 -5328\n\t\tmu 0 3 1053 6505 4070\n\t\tf 3 5328 5329 5330\n\t\tmu 0 3 4051 10541 10542\n\t\tf 3 5331 5332 5333\n\t\tmu 0 3 3934 4362 1732\n\t\tf 3 5334 5335 -5334\n\t\tmu 0 3 1732 1423 3934\n\t\tf 3 5336 -5335 5337\n\t\tmu 0 3 2313 1423 1732\n\t\tf 3 5338 5339 -5338\n\t\tmu 0 3 1732 1596 2313\n\t\tf 3 -5339 5340 5341\n\t\tmu 0 3 1596 1732 5774\n\t\tf 3 5342 5343 -5342\n\t\tmu 0 3 5774 5641 1596\n\t\tf 3 5344 -5341 5345\n\t\tmu 0 3 2770 5774 1732\n\t\tf 3 -5333 5346 -5346\n\t\tmu 0 3 1732 4362 2770\n\t\tf 3 -5347 5347 5348\n\t\tmu 0 3 2770 4362 2029\n\t\tf 3 5349 5350 -5349\n\t\tmu 0 3 2029 2324 2770\n\t\tf 3 5351 -5344 5352\n\t\tmu 0 3 4360 1596 5641\n\t\tf 3 5353 5354 -5353\n\t\tmu 0 3 5641 4743 4360\n\t\tf 3 5355 5356 5357\n\t\tmu 0 3 4489 60 6060\n\t\tf 3 5358 5359 -5358\n\t\tmu 0 3 6060 1648 4489\n\t\tf 3 -5359 5360 5361\n\t\tmu 0 3 1648 6060 46\n\t\tf 3 5362 5363 -5362\n\t\tmu 0 3 46 2447 1648\n\t\tf 3 -5356 5364 5365\n\t\tmu 0 3 60 4489 6084\n\t\tf 3 5366 5367 -5366\n\t\tmu 0 3 6084 1151 60\n\t\tf 3 5368 -5363 5369\n\t\tmu 0 3 6085 2447 46\n\t\tf 3 5370 5371 -5370\n\t\tmu 0 3 46 6314 6085\n\t\tf 3 5372 -5364 5373\n\t\tmu 0 3 2623 1648 2447\n\t\tf 3 -5360 -5373 5374\n\t\tmu 0 3 4489 1648 2623\n\t\tf 3 5375 5376 -5374\n\t\tmu 0 3 2447 149 2623\n\t\tf 3 5377 5378 -5375\n\t\tmu 0 3 2623 3046 4489\n\t\tf 3 -5365 -5379 5379\n\t\tmu 0 3 6084 4489 3046\n\t\tf 3 5380 5381 -5380\n\t\tmu 0 3 3046 3665 6084\n\t\tf 3 5382 -5382 5383\n\t\tmu 0 3 3124 6084 3665\n\t\tf 3 -5367 -5383 5384\n\t\tmu 0 3 1151 6084 3124\n\t\tf 3 5385 5386 -5384\n\t\tmu 0 3 3665 2935 3124\n\t\tf 3 -5387 5387 5388\n\t\tmu 0 3 3124 2935 5132\n\t\tf 3 5389 5390 -5389\n\t\tmu 0 3 5132 5206 3124\n\t\tf 3 -5390 5391 5392\n\t\tmu 0 3 5206 5132 3670\n\t\tf 3 5393 5394 -5393\n\t\tmu 0 3 3670 3447 5206\n\t\tf 3 -5391 5395 5396\n\t\tmu 0 3 3124 5206 1268\n\t\tf 3 -5396 -5395 5397\n\t\tmu 0 3 1268 5206 3447\n\t\tf 3 5398 5399 -5397\n\t\tmu 0 3 1268 1300 3124\n\t\tf 3 -5400 5400 -5385\n\t\tmu 0 3 3124 1300 1151\n\t\tf 3 5401 5402 -5398\n\t\tmu 0 3 3447 4756 1268\n\t\tf 3 -5402 5403 5404\n\t\tmu 0 3 4756 3447 2825\n\t\tf 3 5405 5406 -5404\n\t\tmu 0 3 3447 2442 2825\n\t\tf 3 5407 5408 -5407\n\t\tmu 0 3 2442 3876 2825\n\t\tf 3 5409 -5406 5410\n\t\tmu 0 3 1081 2442 3447\n\t\tf 3 5411 -5411 -5394\n\t\tmu 0 3 3670 1081 3447\n\t\tf 3 5412 5413 -5412\n\t\tmu 0 3 3670 420 1081\n\t\tf 3 5414 5415 -5413\n\t\tmu 0 3 3670 4468 420\n\t\tf 3 5416 -5376 5417\n\t\tmu 0 3 5284 149 2447\n\t\tf 3 -5369 5418 -5418\n\t\tmu 0 3 2447 6085 5284\n\t\tf 3 5419 5420 5421\n\t\tmu 0 3 630 3057 3379\n\t\tf 3 5422 5423 -5422\n\t\tmu 0 3 3379 2454 630\n\t\tf 3 5424 -5423 5425\n\t\tmu 0 3 4850 2454 3379\n\t\tf 3 5426 5427 -5426\n\t\tmu 0 3 3379 834 4850\n\t\tf 3 -5427 5428 5429\n\t\tmu 0 3 834 3379 4851\n\t\tf 3 5430 5431 -5430\n\t\tmu 0 3 4851 3541 834\n\t\tf 3 5432 -5432 5433\n\t\tmu 0 3 6313 834 3541\n\t\tf 3 5434 5435 -5434\n\t\tmu 0 3 3541 6086 6313\n\t\tf 3 5436 -5436 5437\n\t\tmu 0 3 2455 6313 6086\n\t\tf 3 5438 5439 -5438\n\t\tmu 0 3 6086 2456 2455\n\t\tf 3 5440 -5440 5441\n\t\tmu 0 3 835 2455 2456\n\t\tf 3 5442 5443 -5442\n\t\tmu 0 3 2456 275 835\n\t\tf 3 5444 -5444 5445\n\t\tmu 0 3 3057 835 275\n\t\tf 3 5446 -5429 5447\n\t\tmu 0 3 276 4851 3379\n\t\tf 3 -5421 5448 -5448\n\t\tmu 0 3 3379 3057 276\n\t\tf 3 5449 -5449 -5446\n\t\tmu 0 3 275 276 3057\n\t\tf 3 5450 5451 5452\n\t\tmu 0 3 3186 1888 5940\n\t\tf 3 5453 -5453 5454\n\t\tmu 0 3 2044 3186 5940\n\t\tf 3 5455 -5455 5456\n\t\tmu 0 3 1741 2044 5940\n\t\tf 3 -5454 5457 5458\n\t\tmu 0 3 3186 2044 5562\n\t\tf 3 5459 5460 -5459\n\t\tmu 0 3 5562 2693 3186\n\t\tf 3 -5460 5461 5462\n\t\tmu 0 3 2693 5562 2982\n\t\tf 3 5463 5464 -5463\n\t\tmu 0 3 2982 6292 2693\n\t\tf 3 5465 -5464 5466\n\t\tmu 0 3 1829 6292 2982\n\t\tf 3 5467 5468 -5467\n\t\tmu 0 3 2982 6113 1829\n\t\tf 3 5469 -5469 5470\n\t\tmu 0 3 4205 1829 6113\n\t\tf 3 5471 5472 -5471\n\t\tmu 0 3 6113 6537 4205\n\t\tf 3 5473 -5473 5474\n\t\tmu 0 3 1628 4205 6537\n\t\tf 3 5475 5476 -5475\n\t\tmu 0 3 6537 527 1628;\n\tsetAttr \".fc[3000:3499]\"\n\t\tf 3 5477 -5477 5478\n\t\tmu 0 3 6087 1628 527\n\t\tf 3 5479 5480 -5479\n\t\tmu 0 3 527 2754 6087\n\t\tf 3 5481 -5481 5482\n\t\tmu 0 3 1839 6087 2754\n\t\tf 3 5483 5484 -5483\n\t\tmu 0 3 2754 4678 1839\n\t\tf 3 5485 -5485 5486\n\t\tmu 0 3 5687 1839 4678\n\t\tf 3 5487 5488 -5487\n\t\tmu 0 3 4678 4690 5687\n\t\tf 3 5489 -5489 5490\n\t\tmu 0 3 3609 5687 4690\n\t\tf 3 5491 5492 -5491\n\t\tmu 0 3 4690 6218 3609\n\t\tf 3 -5493 5493 5494\n\t\tmu 0 3 3609 6218 3621\n\t\tf 3 5495 5496 -5495\n\t\tmu 0 3 3621 4787 3609\n\t\tf 3 -5496 5497 5498\n\t\tmu 0 3 4787 3621 2738\n\t\tf 3 5499 5500 -5499\n\t\tmu 0 3 2738 5929 4787\n\t\tf 3 5501 -5500 5502\n\t\tmu 0 3 2062 5929 2738\n\t\tf 3 5503 5504 -5503\n\t\tmu 0 3 2738 4336 2062\n\t\tf 3 5505 -5505 5506\n\t\tmu 0 3 3689 2062 4336\n\t\tf 3 5507 5508 -5507\n\t\tmu 0 3 4336 6065 3689\n\t\tf 3 5509 5510 5511\n\t\tmu 0 3 10543 10544 2989\n\t\tf 3 5512 5513 -5512\n\t\tmu 0 3 2989 660 10545\n\t\tf 3 5514 5515 5516\n\t\tmu 0 3 10546 10547 3372\n\t\tf 3 5517 5518 -5517\n\t\tmu 0 3 3372 6384 10548\n\t\tf 3 5519 -5518 5520\n\t\tmu 0 3 5198 6384 3372\n\t\tf 3 5521 5522 -5521\n\t\tmu 0 3 3372 3548 5198\n\t\tf 3 5523 -5523 5524\n\t\tmu 0 3 4450 5198 3548\n\t\tf 3 5525 5526 -5525\n\t\tmu 0 3 3548 4511 4450\n\t\tf 3 5527 -5527 5528\n\t\tmu 0 3 13 4450 4511\n\t\tf 3 5529 5530 -5529\n\t\tmu 0 3 4511 5915 13\n\t\tf 3 5531 -5531 5532\n\t\tmu 0 3 6027 13 5915\n\t\tf 3 5533 5534 -5533\n\t\tmu 0 3 5915 4252 6027\n\t\tf 3 5535 -5535 5536\n\t\tmu 0 3 2739 6027 4252\n\t\tf 3 5537 5538 -5537\n\t\tmu 0 3 4252 3968 2739\n\t\tf 3 -5539 5539 5540\n\t\tmu 0 3 2739 3968 5036\n\t\tf 3 5541 5542 -5541\n\t\tmu 0 3 5036 2332 2739\n\t\tf 3 5543 5544 -5542\n\t\tmu 0 3 5036 5324 2332\n\t\tf 3 5545 5546 -5544\n\t\tmu 0 3 5036 1850 5324\n\t\tf 3 5547 5548 5549\n\t\tmu 0 3 10549 2907 10550\n\t\tf 3 5550 -5350 5551\n\t\tmu 0 3 4861 661 1601\n\t\tf 3 5552 5553 -5552\n\t\tmu 0 3 1601 6369 4861\n\t\tf 3 5554 -5554 5555\n\t\tmu 0 3 952 4861 6369\n\t\tf 3 5556 5557 -5556\n\t\tmu 0 3 6369 1618 952\n\t\tf 3 5558 -5558 5559\n\t\tmu 0 3 3584 952 1618\n\t\tf 3 5560 5561 -5560\n\t\tmu 0 3 1618 66 3584\n\t\tf 3 5562 -5562 5563\n\t\tmu 0 3 3433 3584 66\n\t\tf 3 5564 5565 -5564\n\t\tmu 0 3 66 5567 3433\n\t\tf 3 5566 -5566 5567\n\t\tmu 0 3 2860 3433 5567\n\t\tf 3 5568 5569 -5568\n\t\tmu 0 3 5567 5942 2860\n\t\tf 3 5570 -5570 5571\n\t\tmu 0 3 2073 2860 5942\n\t\tf 3 5572 5573 -5572\n\t\tmu 0 3 5942 5468 2073\n\t\tf 3 -5574 5574 5575\n\t\tmu 0 3 2073 5468 3296\n\t\tf 3 5576 5577 -5576\n\t\tmu 0 3 3296 2329 2073\n\t\tf 3 5578 -5577 5579\n\t\tmu 0 3 1773 2329 3296\n\t\tf 3 5580 5581 -5580\n\t\tmu 0 3 3296 3037 1773\n\t\tf 3 5582 -5582 5583\n\t\tmu 0 3 1483 1773 3037\n\t\tf 3 5584 5585 -5584\n\t\tmu 0 3 3037 2743 1483\n\t\tf 3 -5586 5586 5587\n\t\tmu 0 3 1483 2743 1943\n\t\tf 3 5588 5589 -5588\n\t\tmu 0 3 1943 4443 1483\n\t\tf 3 -5589 5590 5591\n\t\tmu 0 3 4443 1943 2197\n\t\tf 3 5592 5593 -5592\n\t\tmu 0 3 2197 2026 4443\n\t\tf 3 5594 -5593 5595\n\t\tmu 0 3 5396 2026 2197\n\t\tf 3 5596 5597 -5596\n\t\tmu 0 3 2197 1675 5396\n\t\tf 3 5598 -5598 5599\n\t\tmu 0 3 6162 5396 1675\n\t\tf 3 5600 5601 -5600\n\t\tmu 0 3 1675 4978 6162\n\t\tf 3 5602 -5602 5603\n\t\tmu 0 3 578 6162 4978\n\t\tf 3 5604 5605 -5604\n\t\tmu 0 3 4978 2654 578\n\t\tf 3 5606 -5606 5607\n\t\tmu 0 3 4812 578 2654\n\t\tf 3 5608 5609 -5608\n\t\tmu 0 3 2654 1381 4812\n\t\tf 3 5610 -5610 5611\n\t\tmu 0 3 5917 4812 1381\n\t\tf 3 5612 5613 -5612\n\t\tmu 0 3 1381 4255 5917\n\t\tf 3 5614 -5614 5615\n\t\tmu 0 3 2493 5917 4255\n\t\tf 3 5616 5617 -5616\n\t\tmu 0 3 4255 3286 2493\n\t\tf 3 5618 -5618 5619\n\t\tmu 0 3 4439 2493 3286\n\t\tf 3 5620 5621 -5620\n\t\tmu 0 3 3286 6055 4439\n\t\tf 3 5622 -5622 5623\n\t\tmu 0 3 5639 4439 6055\n\t\tf 3 5624 -5355 -5624\n\t\tmu 0 3 6055 362 5639\n\t\tf 3 5625 5626 5627\n\t\tmu 0 3 1687 1659 10551\n\t\tf 3 5628 5629 -5628\n\t\tmu 0 3 10552 10553 1687\n\t\tf 3 5630 -5627 5631\n\t\tmu 0 3 10554 10555 1659\n\t\tf 3 5632 5633 -5632\n\t\tmu 0 3 1659 2903 10556\n\t\tf 3 5634 5635 5636\n\t\tmu 0 3 4315 3653 1244\n\t\tf 3 5637 5638 -5637\n\t\tmu 0 3 1244 3659 4315\n\t\tf 3 5639 -5636 5640\n\t\tmu 0 3 3551 1244 3653\n\t\tf 3 5641 5642 -5641\n\t\tmu 0 3 3653 2355 3551\n\t\tf 3 5643 -5643 5644\n\t\tmu 0 3 6439 3551 2355\n\t\tf 3 5645 5646 -5645\n\t\tmu 0 3 2355 3310 6439\n\t\tf 3 5647 -5647 5648\n\t\tmu 0 3 3565 6439 3310\n\t\tf 3 5649 5650 -5649\n\t\tmu 0 3 3310 652 3565\n\t\tf 3 5651 -5651 5652\n\t\tmu 0 3 126 3565 652\n\t\tf 3 5653 5654 -5653\n\t\tmu 0 3 652 4980 126\n\t\tf 3 -5655 5655 5656\n\t\tmu 0 3 126 4980 2219\n\t\tf 3 5657 5658 -5657\n\t\tmu 0 3 2219 2673 126\n\t\tf 3 5659 -5658 5660\n\t\tmu 0 3 4028 2673 2219\n\t\tf 3 5661 5662 -5661\n\t\tmu 0 3 2219 6069 4028\n\t\tf 3 -5663 5663 5664\n\t\tmu 0 3 4028 6069 6239\n\t\tf 3 5665 5666 -5665\n\t\tmu 0 3 6239 6092 4028\n\t\tf 3 5667 -5666 5668\n\t\tmu 0 3 1175 6092 6239\n\t\tf 3 5669 5670 -5669\n\t\tmu 0 3 6239 5633 1175\n\t\tf 3 5671 -5671 5672\n\t\tmu 0 3 3580 1175 5633\n\t\tf 3 5673 5674 -5673\n\t\tmu 0 3 5633 2795 3580\n\t\tf 3 -5675 5675 5676\n\t\tmu 0 3 3580 2795 3590\n\t\tf 3 5677 5678 -5677\n\t\tmu 0 3 3590 566 3580\n\t\tf 3 -5678 -5594 5679\n\t\tmu 0 3 566 3590 2560\n\t\tf 3 5680 5681 -5680\n\t\tmu 0 3 2560 4243 566\n\t\tf 3 5682 -5681 5683\n\t\tmu 0 3 1013 4243 2560\n\t\tf 3 5684 5685 -5684\n\t\tmu 0 3 2560 2908 1013\n\t\tf 3 5686 -5686 5687\n\t\tmu 0 3 5665 1013 2908\n\t\tf 3 5688 5689 -5688\n\t\tmu 0 3 2908 3610 5665\n\t\tf 3 5690 5691 5692\n\t\tmu 0 3 5828 10557 10558\n\t\tf 3 5693 5694 -5693\n\t\tmu 0 3 10559 2514 5828\n\t\tf 3 5695 -5695 5696\n\t\tmu 0 3 1992 5828 2514\n\t\tf 3 5697 5698 -5697\n\t\tmu 0 3 2514 4041 1992\n\t\tf 3 5699 -5699 5700\n\t\tmu 0 3 6357 1992 4041\n\t\tf 3 5701 5702 -5701\n\t\tmu 0 3 4041 3047 6357\n\t\tf 3 5703 -5703 5704\n\t\tmu 0 3 781 6357 3047\n\t\tf 3 5705 5706 -5705\n\t\tmu 0 3 3047 1712 781\n\t\tf 3 -5707 5707 5708\n\t\tmu 0 3 781 1712 4215\n\t\tf 3 5709 5710 -5709\n\t\tmu 0 3 4215 890 781\n\t\tf 3 5711 -5710 5712\n\t\tmu 0 3 2564 890 4215\n\t\tf 3 5713 5714 -5713\n\t\tmu 0 3 4215 1826 2564\n\t\tf 3 5715 -5715 5716\n\t\tmu 0 3 4107 2564 1826\n\t\tf 3 5717 5718 -5717\n\t\tmu 0 3 1826 5763 4107\n\t\tf 3 5719 5720 5721\n\t\tmu 0 3 1760 4115 1245\n\t\tf 3 5722 5723 -5722\n\t\tmu 0 3 1245 4852 1760\n\t\tf 3 5724 -5721 5725\n\t\tmu 0 3 3060 1245 4115\n\t\tf 3 5726 5727 -5726\n\t\tmu 0 3 4115 4346 3060\n\t\tf 3 5728 5729 5730\n\t\tmu 0 3 4170 5031 6525\n\t\tf 3 5731 5732 -5731\n\t\tmu 0 3 6525 4301 4170\n\t\tf 3 -5729 5733 5734\n\t\tmu 0 3 5031 4170 956\n\t\tf 3 5735 5736 -5735\n\t\tmu 0 3 956 3696 5031\n\t\tf 3 5737 5738 5739\n\t\tmu 0 3 2515 3364 2630\n\t\tf 3 5740 5741 -5740\n\t\tmu 0 3 2630 4234 2515\n\t\tf 3 5742 5743 5744\n\t\tmu 0 3 1497 3895 1345\n\t\tf 3 5745 5746 -5745\n\t\tmu 0 3 1345 2740 1497\n\t\tf 3 -5743 5747 5748\n\t\tmu 0 3 3895 1497 6222\n\t\tf 3 5749 5750 -5749\n\t\tmu 0 3 6222 4265 3895\n\t\tf 3 5751 5752 5753\n\t\tmu 0 3 6023 1768 3312\n\t\tf 3 5754 5755 -5754\n\t\tmu 0 3 3312 398 6023\n\t\tf 3 5756 5757 5758\n\t\tmu 0 3 10560 10561 10562\n\t\tf 3 5759 5760 -5759\n\t\tmu 0 3 10563 10564 10565\n\t\tf 3 -5761 5761 5762\n\t\tmu 0 3 10566 10567 10568\n\t\tf 3 5763 5764 -5763\n\t\tmu 0 3 10569 10570 10571\n\t\tf 3 -5758 5765 5766\n\t\tmu 0 3 10572 10573 10574\n\t\tf 3 5767 5768 -5767\n\t\tmu 0 3 10575 10576 10577\n\t\tf 3 5769 -5768 5770\n\t\tmu 0 3 10578 10579 10580\n\t\tf 3 5771 5772 -5771\n\t\tmu 0 3 10581 10582 10583\n\t\tf 3 5773 -5764 5774\n\t\tmu 0 3 10584 10585 10586\n\t\tf 3 5775 5776 -5775\n\t\tmu 0 3 10587 10588 10589\n\t\tf 3 -5777 5777 5778\n\t\tmu 0 3 10590 10591 10592\n\t\tf 3 5779 5780 -5779\n\t\tmu 0 3 10593 10594 10595\n\t\tf 3 5781 -5780 5782\n\t\tmu 0 3 10596 10597 10598\n\t\tf 3 5783 5784 -5783\n\t\tmu 0 3 10599 10600 10601\n\t\tf 3 -5785 5785 5786\n\t\tmu 0 3 10602 10603 10604\n\t\tf 3 5787 5788 -5787\n\t\tmu 0 3 10605 10606 10607\n\t\tf 3 5789 -5788 5790\n\t\tmu 0 3 10608 10609 10610\n\t\tf 3 5791 5792 -5791\n\t\tmu 0 3 10611 10612 10613\n\t\tf 3 -5793 5793 5794\n\t\tmu 0 3 10614 10615 10616\n\t\tf 3 5795 5796 -5795\n\t\tmu 0 3 10617 10618 10619\n\t\tf 3 5797 -5796 5798\n\t\tmu 0 3 10620 10621 10622\n\t\tf 3 5799 5800 -5799\n\t\tmu 0 3 10623 10624 10625\n\t\tf 3 -5801 5801 5802\n\t\tmu 0 3 10626 10627 10628\n\t\tf 3 5803 5804 -5803\n\t\tmu 0 3 10629 10630 10631\n\t\tf 3 5805 -5804 5806\n\t\tmu 0 3 10632 10633 10634\n\t\tf 3 5807 5808 -5807\n\t\tmu 0 3 10635 10636 10637\n\t\tf 3 -5809 5809 5810\n\t\tmu 0 3 10638 10639 10640\n\t\tf 3 5811 5812 -5811\n\t\tmu 0 3 10641 10642 10643\n\t\tf 3 5813 -5812 5814\n\t\tmu 0 3 10644 10645 10646\n\t\tf 3 5815 5816 -5815\n\t\tmu 0 3 10647 10648 10649\n\t\tf 3 -5817 5817 5818\n\t\tmu 0 3 10650 10651 10652\n\t\tf 3 -5773 5819 -5819\n\t\tmu 0 3 10653 10654 10655\n\t\tf 3 5820 -5818 5821\n\t\tmu 0 3 10656 10657 10658\n\t\tf 3 -5821 5822 5823\n\t\tmu 0 3 10659 10660 10661\n\t\tf 3 5824 -5770 -5824\n\t\tmu 0 3 10662 10663 10664\n\t\tf 3 5825 5826 -5822\n\t\tmu 0 3 10665 10666 10667\n\t\tf 3 -5826 -5816 5827\n\t\tmu 0 3 10668 10669 10670\n\t\tf 3 5828 5829 -5828\n\t\tmu 0 3 10671 10672 10673\n\t\tf 3 -5829 -5810 5830\n\t\tmu 0 3 10674 10675 10676\n\t\tf 3 5831 5832 -5831\n\t\tmu 0 3 10677 10678 10679\n\t\tf 3 -5832 -5808 5833\n\t\tmu 0 3 10680 10681 10682\n\t\tf 3 5834 5835 -5834\n\t\tmu 0 3 10683 10684 10685\n\t\tf 3 5836 5837 5838\n\t\tmu 0 3 10686 10687 10688\n\t\tf 3 -5835 -5802 -5839\n\t\tmu 0 3 10689 10690 10691\n\t\tf 3 -5837 -5800 5839\n\t\tmu 0 3 10692 10693 10694\n\t\tf 3 5840 5841 -5840\n\t\tmu 0 3 10695 10696 10697\n\t\tf 3 -5841 -5794 5842\n\t\tmu 0 3 10698 10699 10700\n\t\tf 3 5843 5844 -5843\n\t\tmu 0 3 10701 10702 10703\n\t\tf 3 -5844 -5792 5845\n\t\tmu 0 3 10704 10705 10706\n\t\tf 3 5846 5847 -5846\n\t\tmu 0 3 10707 10708 10709\n\t\tf 3 -5847 -5786 5848\n\t\tmu 0 3 10710 10711 10712\n\t\tf 3 5849 5850 -5849\n\t\tmu 0 3 10713 10714 10715\n\t\tf 3 -5850 -5784 5851\n\t\tmu 0 3 10716 10717 10718\n\t\tf 3 5852 5853 -5852\n\t\tmu 0 3 10719 10720 10721\n\t\tf 3 -5853 -5778 5854\n\t\tmu 0 3 10722 10723 10724\n\t\tf 3 5855 5856 -5855\n\t\tmu 0 3 10725 10726 10727\n\t\tf 3 -5856 -5776 5857\n\t\tmu 0 3 10728 10729 10730\n\t\tf 3 5858 5859 -5858\n\t\tmu 0 3 10731 10732 10733\n\t\tf 3 -5859 -5762 5860\n\t\tmu 0 3 10734 10735 10736\n\t\tf 3 5861 5862 -5861\n\t\tmu 0 3 10737 10738 10739\n\t\tf 3 -5862 -5760 5863\n\t\tmu 0 3 10740 10741 10742\n\t\tf 3 5864 5865 -5864\n\t\tmu 0 3 10743 10744 10745\n\t\tf 3 -5865 -5769 5866\n\t\tmu 0 3 10746 10747 10748\n\t\tf 3 -5825 5867 -5867\n\t\tmu 0 3 10749 10750 10751\n\t\tf 3 5868 5869 5870\n\t\tmu 0 3 10752 10753 10754\n\t\tf 3 5871 5872 -5871\n\t\tmu 0 3 10755 10756 10757\n\t\tf 3 -5872 5873 5874\n\t\tmu 0 3 10758 10759 10760\n\t\tf 3 5875 5876 -5875\n\t\tmu 0 3 10761 10762 10763\n\t\tf 3 -5876 5877 5878\n\t\tmu 0 3 10764 10765 10766\n\t\tf 3 5879 5880 -5879\n\t\tmu 0 3 10767 10768 10769\n\t\tf 3 -5880 5881 5882\n\t\tmu 0 3 10770 10771 10772\n\t\tf 3 5883 5884 -5883\n\t\tmu 0 3 10773 10774 10775\n\t\tf 3 -5884 5885 5886\n\t\tmu 0 3 10776 10777 10778\n\t\tf 3 5887 5888 -5887\n\t\tmu 0 3 10779 10780 10781\n\t\tf 3 -5888 5889 5890\n\t\tmu 0 3 10782 10783 10784\n\t\tf 3 5891 5892 -5891\n\t\tmu 0 3 10785 10786 10787\n\t\tf 3 -5892 5893 5894\n\t\tmu 0 3 10788 10789 10790\n\t\tf 3 5895 5896 -5895\n\t\tmu 0 3 10791 10792 10793\n\t\tf 3 -5896 5897 5898\n\t\tmu 0 3 10794 10795 10796\n\t\tf 3 5899 5900 -5899\n\t\tmu 0 3 10797 10798 10799\n\t\tf 3 -5900 5901 5902\n\t\tmu 0 3 10800 10801 10802\n\t\tf 3 5903 5904 -5903\n\t\tmu 0 3 10803 10804 10805\n\t\tf 3 -5904 5905 5906\n\t\tmu 0 3 10806 10807 10808\n\t\tf 3 5907 5908 -5907\n\t\tmu 0 3 10809 10810 10811\n\t\tf 3 -5908 5909 5910\n\t\tmu 0 3 10812 10813 10814\n\t\tf 3 5911 5912 -5911\n\t\tmu 0 3 10815 10816 10817\n\t\tf 3 -5912 5913 5914\n\t\tmu 0 3 10818 10819 10820\n\t\tf 3 5915 5916 -5915\n\t\tmu 0 3 10821 10822 10823\n\t\tf 3 -5916 5917 5918\n\t\tmu 0 3 10824 10825 10826\n\t\tf 3 5919 5920 -5919\n\t\tmu 0 3 10827 10828 10829\n\t\tf 3 -5920 5921 5922\n\t\tmu 0 3 10830 10831 10832\n\t\tf 3 5923 5924 -5923\n\t\tmu 0 3 10833 10834 10835\n\t\tf 3 -5924 5925 5926\n\t\tmu 0 3 10836 10837 10838\n\t\tf 3 5927 5928 -5927\n\t\tmu 0 3 10839 10840 10841\n\t\tf 3 -5928 5929 5930\n\t\tmu 0 3 10842 10843 10844\n\t\tf 3 -5869 5931 -5931\n\t\tmu 0 3 10845 10846 10847\n\t\tf 3 5932 5933 5934\n\t\tmu 0 3 10848 10849 10850\n\t\tf 3 5935 5936 -5935\n\t\tmu 0 3 10851 10852 10853\n\t\tf 3 -5936 5937 5938\n\t\tmu 0 3 10854 10855 10856\n\t\tf 3 5939 5940 -5939\n\t\tmu 0 3 10857 10858 10859\n\t\tf 3 -5940 5941 5942\n\t\tmu 0 3 10860 10861 10862\n\t\tf 3 5943 5944 -5943\n\t\tmu 0 3 10863 10864 10865\n\t\tf 3 -5944 5945 5946\n\t\tmu 0 3 10866 10867 10868\n\t\tf 3 5947 5948 -5947\n\t\tmu 0 3 10869 10870 10871\n\t\tf 3 -5948 5949 5950\n\t\tmu 0 3 10872 10873 10874\n\t\tf 3 5951 5952 -5951\n\t\tmu 0 3 10875 10876 10877\n\t\tf 3 -5933 5953 5954\n\t\tmu 0 3 10878 10879 10880\n\t\tf 3 5955 5956 -5955\n\t\tmu 0 3 10881 10882 10883\n\t\tf 3 -5956 5957 5958\n\t\tmu 0 3 10884 10885 10886\n\t\tf 3 5959 5960 -5959\n\t\tmu 0 3 10887 10888 10889\n\t\tf 3 -5960 5961 5962\n\t\tmu 0 3 10890 10891 10892\n\t\tf 3 5963 5964 -5963\n\t\tmu 0 3 10893 10894 10895\n\t\tf 3 -5964 5965 5966\n\t\tmu 0 3 10896 10897 10898\n\t\tf 3 5967 5968 -5967\n\t\tmu 0 3 10899 10900 10901\n\t\tf 3 -5968 5969 5970\n\t\tmu 0 3 10902 10903 10904\n\t\tf 3 5971 5972 -5971\n\t\tmu 0 3 10905 10906 10907\n\t\tf 3 -5972 5973 5974\n\t\tmu 0 3 10908 10909 10910\n\t\tf 3 5975 5976 -5975\n\t\tmu 0 3 10911 10912 10913\n\t\tf 3 -5976 5977 5978\n\t\tmu 0 3 10914 10915 10916\n\t\tf 3 5979 5980 -5979\n\t\tmu 0 3 10917 10918 10919\n\t\tf 3 -5980 5981 5982\n\t\tmu 0 3 10920 10921 10922\n\t\tf 3 5983 5984 -5983\n\t\tmu 0 3 10923 10924 10925\n\t\tf 3 -5984 5985 5986\n\t\tmu 0 3 10926 10927 10928\n\t\tf 3 5987 5988 -5987\n\t\tmu 0 3 10929 10930 10931\n\t\tf 3 -5988 5989 5990\n\t\tmu 0 3 10932 10933 10934\n\t\tf 3 5991 5992 -5991\n\t\tmu 0 3 10935 10936 10937\n\t\tf 3 -5992 5993 5994\n\t\tmu 0 3 10938 10939 10940\n\t\tf 3 -5952 5995 -5995\n\t\tmu 0 3 10941 10942 10943\n\t\tf 3 5996 5997 5998\n\t\tmu 0 3 10944 10945 10946\n\t\tf 3 -5937 5999 -5999\n\t\tmu 0 3 10947 10948 10949\n\t\tf 3 -6000 -5941 6000\n\t\tmu 0 3 10950 10951 10952\n\t\tf 3 6001 6002 -6001\n\t\tmu 0 3 10953 10954 10955\n\t\tf 3 6003 -6002 6004\n\t\tmu 0 3 10956 10957 10958\n\t\tf 3 -5945 6005 -6005\n\t\tmu 0 3 10959 10960 10961\n\t\tf 3 -6006 -5949 6006\n\t\tmu 0 3 10962 10963 10964\n\t\tf 3 6007 6008 -6007\n\t\tmu 0 3 10965 10966 10967\n\t\tf 3 -5998 6009 6010\n\t\tmu 0 3 10968 10969 10970\n\t\tf 3 6011 -5954 -6011\n\t\tmu 0 3 10971 10972 10973\n\t\tf 3 -5958 -6012 6012\n\t\tmu 0 3 10974 10975 10976\n\t\tf 3 6013 6014 -6013\n\t\tmu 0 3 10977 10978 10979\n\t\tf 3 -6015 6015 6016\n\t\tmu 0 3 10980 10981 10982\n\t\tf 3 6017 -5962 -6017\n\t\tmu 0 3 10983 10984 10985\n\t\tf 3 -5966 -6018 6018\n\t\tmu 0 3 10986 10987 10988\n\t\tf 3 6019 6020 -6019\n\t\tmu 0 3 10989 10990 10991\n\t\tf 3 -6021 6021 6022\n\t\tmu 0 3 10992 10993 10994\n\t\tf 3 6023 -5970 -6023\n\t\tmu 0 3 10995 10996 10997\n\t\tf 3 -5974 -6024 6024\n\t\tmu 0 3 10998 10999 11000\n\t\tf 3 6025 6026 -6025\n\t\tmu 0 3 11001 11002 11003\n\t\tf 3 -6027 6027 6028\n\t\tmu 0 3 11004 11005 11006\n\t\tf 3 6029 -5978 -6029\n\t\tmu 0 3 11007 11008 11009\n\t\tf 3 -5982 -6030 6030\n\t\tmu 0 3 11010 11011 11012\n\t\tf 3 6031 6032 -6031\n\t\tmu 0 3 11013 11014 11015\n\t\tf 3 -6033 6033 6034\n\t\tmu 0 3 11016 11017 11018\n\t\tf 3 6035 -5986 -6035\n\t\tmu 0 3 11019 11020 11021\n\t\tf 3 -5990 -6036 6036\n\t\tmu 0 3 11022 11023 11024\n\t\tf 3 6037 6038 -6037\n\t\tmu 0 3 11025 11026 11027\n\t\tf 3 -6039 6039 6040\n\t\tmu 0 3 11028 11029 11030\n\t\tf 3 6041 -5994 -6041\n\t\tmu 0 3 11031 11032 11033\n\t\tf 3 -5953 -6042 6042\n\t\tmu 0 3 11034 11035 11036\n\t\tf 3 6043 -6008 -6043\n\t\tmu 0 3 11037 11038 11039\n\t\tf 3 6044 6045 6046\n\t\tmu 0 3 11040 11041 11042\n\t\tf 3 -6047 6047 6048\n\t\tmu 0 3 11043 11044 11045\n\t\tf 3 6049 6050 -6048\n\t\tmu 0 3 11046 11047 11048\n\t\tf 3 6051 6052 -6050\n\t\tmu 0 3 11049 11050 11051\n\t\tf 3 6053 6054 -6052\n\t\tmu 0 3 11052 11053 11054\n\t\tf 3 6055 6056 -6054\n\t\tmu 0 3 11055 11056 11057\n\t\tf 3 6057 6058 -6055\n\t\tmu 0 3 11058 11059 11060\n\t\tf 3 6059 6060 -6053\n\t\tmu 0 3 11061 11062 11063\n\t\tf 3 6061 6062 -6060\n\t\tmu 0 3 11064 11065 11066\n\t\tf 3 6063 6064 -6061\n\t\tmu 0 3 11067 11068 11069\n\t\tf 3 6065 6066 -6051\n\t\tmu 0 3 11070 11071 11072\n\t\tf 3 6067 6068 -6066\n\t\tmu 0 3 11073 11074 11075\n\t\tf 3 6069 6070 -6067\n\t\tmu 0 3 11076 11077 11078\n\t\tf 3 -6049 6071 6072\n\t\tmu 0 3 11079 11080 11081\n\t\tf 3 6073 6074 6075\n\t\tmu 0 3 11082 11083 11084\n\t\tf 3 6076 6077 -6076\n\t\tmu 0 3 11085 11086 11087\n\t\tf 3 -6074 6078 6079\n\t\tmu 0 3 11088 11089 11090\n\t\tf 3 6080 6081 -6080\n\t\tmu 0 3 11091 11092 11093\n\t\tf 3 6082 -6079 6083\n\t\tmu 0 3 11094 11095 11096\n\t\tf 3 6084 6085 -6084\n\t\tmu 0 3 11097 11098 11099\n\t\tf 3 -6085 -6078 6086\n\t\tmu 0 3 11100 11101 11102\n\t\tf 3 6087 6088 -6087\n\t\tmu 0 3 11103 11104 11105\n\t\tf 3 -6077 6089 6090\n\t\tmu 0 3 11106 11107 11108\n\t\tf 3 6091 6092 -6091\n\t\tmu 0 3 11109 11110 11111\n\t\tf 3 -6088 -6093 6093\n\t\tmu 0 3 11112 11113 11114\n\t\tf 3 6094 6095 -6094\n\t\tmu 0 3 11115 11116 11117\n\t\tf 3 6096 -6096 6097\n\t\tmu 0 3 11118 11119 11120\n\t\tf 3 -6089 -6097 6098\n\t\tmu 0 3 11121 11122 11123\n\t\tf 3 6099 6100 -6098\n\t\tmu 0 3 11124 11125 11126\n\t\tf 3 -6100 6101 6102\n\t\tmu 0 3 11127 11128 11129\n\t\tf 3 -6103 6103 6104\n\t\tmu 0 3 11130 11131 11132\n\t\tf 3 -6105 6105 6106\n\t\tmu 0 3 11133 11134 11135\n\t\tf 3 -6095 6107 6108\n\t\tmu 0 3 11136 11137 11138\n\t\tf 3 6109 -6102 -6109\n\t\tmu 0 3 11139 11140 11141\n\t\tf 3 -6108 -6092 6110\n\t\tmu 0 3 11142 11143 11144\n\t\tf 3 -6086 6111 6112\n\t\tmu 0 3 11145 11146 11147\n\t\tf 3 6113 -6112 -6099\n\t\tmu 0 3 11148 11149 11150\n\t\tf 3 6114 6115 -6113\n\t\tmu 0 3 11151 11152 11153\n\t\tf 3 -6111 6116 6117\n\t\tmu 0 3 11154 11155 11156\n\t\tf 3 -6118 6118 6119\n\t\tmu 0 3 11157 11158 11159\n\t\tf 3 -6116 6120 6121\n\t\tmu 0 3 11160 11161 11162\n\t\tf 3 6122 6123 6124\n\t\tmu 0 3 11163 11164 11165\n\t\tf 3 6125 6126 -6125\n\t\tmu 0 3 11166 11167 11168\n\t\tf 3 -6127 6127 6128\n\t\tmu 0 3 11169 11170 11171\n\t\tf 3 6129 6130 -6129\n\t\tmu 0 3 11172 11173 11174\n\t\tf 3 6131 -6131 6132\n\t\tmu 0 3 11175 11176 11177\n\t\tf 3 -6123 -6132 -6122\n\t\tmu 0 3 11178 11179 11180\n\t\tf 3 6133 -6083 -6133\n\t\tmu 0 3 11181 11182 11183\n\t\tf 3 -6134 6134 6135\n\t\tmu 0 3 11184 11185 11186\n\t\tf 3 6136 -6081 -6136\n\t\tmu 0 3 11187 11188 11189\n\t\tf 3 -6130 6137 6138\n\t\tmu 0 3 11190 11191 11192\n\t\tf 3 6139 -6135 -6139\n\t\tmu 0 3 11193 11194 11195\n\t\tf 3 6140 6141 6142\n\t\tmu 0 3 11196 11197 11198\n\t\tf 3 6143 6144 -6143\n\t\tmu 0 3 11199 11200 11201\n\t\tf 3 -6144 6145 6146\n\t\tmu 0 3 11202 11203 11204\n\t\tf 3 6147 6148 -6147\n\t\tmu 0 3 11205 11206 11207\n\t\tf 3 -6141 6149 6150\n\t\tmu 0 3 11208 11209 11210\n\t\tf 3 6151 6152 -6151\n\t\tmu 0 3 11211 11212 11213\n\t\tf 3 -6152 6153 6154\n\t\tmu 0 3 11214 11215 11216\n\t\tf 3 6155 6156 -6155\n\t\tmu 0 3 11217 11218 11219\n\t\tf 3 6157 -6156 6158\n\t\tmu 0 3 11220 11221 11222\n\t\tf 3 6159 6160 -6159\n\t\tmu 0 3 11223 11224 11225\n\t\tf 3 -6161 6161 6162\n\t\tmu 0 3 11226 11227 11228\n\t\tf 3 6163 6164 -6163\n\t\tmu 0 3 11229 11230 11231\n\t\tf 3 -6164 6165 6166\n\t\tmu 0 3 11232 11233 11234\n\t\tf 3 6167 6168 -6167\n\t\tmu 0 3 11235 11236 11237\n\t\tf 3 6169 6170 6171\n\t\tmu 0 3 11238 11239 11240\n\t\tf 3 6172 6173 -6172\n\t\tmu 0 3 11241 11242 11243\n\t\tf 3 6174 6175 6176\n\t\tmu 0 3 11244 11245 11246\n\t\tf 3 6177 6178 -6177\n\t\tmu 0 3 11247 11248 11249\n\t\tf 3 -6178 6179 6180\n\t\tmu 0 3 11250 11251 11252\n\t\tf 3 6181 6182 -6181\n\t\tmu 0 3 11253 11254 11255\n\t\tf 3 -6182 6183 6184\n\t\tmu 0 3 11256 11257 11258\n\t\tf 3 6185 6186 -6185\n\t\tmu 0 3 11259 11260 11261\n\t\tf 3 -6186 6187 6188\n\t\tmu 0 3 11262 11263 11264\n\t\tf 3 6189 6190 -6189\n\t\tmu 0 3 11265 11266 11267\n\t\tf 3 -6190 6191 6192\n\t\tmu 0 3 11268 11269 11270\n\t\tf 3 6193 6194 -6193\n\t\tmu 0 3 11271 11272 11273\n\t\tf 3 -6194 6195 6196\n\t\tmu 0 3 11274 11275 11276\n\t\tf 3 6197 6198 -6197\n\t\tmu 0 3 11277 11278 11279\n\t\tf 3 -6198 6199 6200\n\t\tmu 0 3 11280 11281 11282\n\t\tf 3 6201 6202 -6201\n\t\tmu 0 3 11283 11284 11285\n\t\tf 3 -6202 6203 6204\n\t\tmu 0 3 11286 11287 11288\n\t\tf 3 6205 6206 -6205\n\t\tmu 0 3 11289 11290 11291\n\t\tf 3 -6206 6207 6208\n\t\tmu 0 3 11292 11293 11294\n\t\tf 3 6209 6210 -6209\n\t\tmu 0 3 11295 11296 11297\n\t\tf 3 -6210 6211 6212\n\t\tmu 0 3 11298 11299 11300\n\t\tf 3 6213 6214 -6213\n\t\tmu 0 3 11301 11302 11303\n\t\tf 3 6215 6216 6217\n\t\tmu 0 3 11304 11305 11306\n\t\tf 3 6218 6219 -6218\n\t\tmu 0 3 11307 11308 11309\n\t\tf 3 6220 6221 6222\n\t\tmu 0 3 11310 11311 11312\n\t\tf 3 6223 6224 -6223\n\t\tmu 0 3 11313 11314 11315\n\t\tf 3 6225 6226 6227\n\t\tmu 0 3 11316 11317 11318\n\t\tf 3 6228 -6110 -6228\n\t\tmu 0 3 11319 11320 11321\n\t\tf 3 -6229 6229 6230\n\t\tmu 0 3 11322 11323 11324\n\t\tf 3 6231 -6104 -6231\n\t\tmu 0 3 11325 11326 11327\n\t\tf 3 -6226 -6120 6232\n\t\tmu 0 3 11328 11329 11330\n\t\tf 3 6233 6234 -6233\n\t\tmu 0 3 11331 11332 11333\n\t\tf 3 -6234 -6119 6235\n\t\tmu 0 3 11334 11335 11336\n\t\tf 3 6236 6237 -6236\n\t\tmu 0 3 11337 11338 11339\n\t\tf 3 -6232 6238 6239\n\t\tmu 0 3 11340 11341 11342\n\t\tf 3 6240 -6106 -6240\n\t\tmu 0 3 11343 11344 11345\n\t\tf 3 -6241 6241 6242\n\t\tmu 0 3 11346 11347 11348\n\t\tf 3 6243 -6107 -6243\n\t\tmu 0 3 11349 11350 11351\n\t\tf 3 -6101 -6244 6244\n\t\tmu 0 3 11352 11353 11354\n\t\tf 3 6245 6246 -6245\n\t\tmu 0 3 11355 11356 11357\n\t\tf 3 -6247 6247 6248\n\t\tmu 0 3 11358 11359 11360\n\t\tf 3 6249 -6114 -6249\n\t\tmu 0 3 11361 11362 11363\n\t\tf 3 -6250 6250 6251\n\t\tmu 0 3 11364 11365 11366\n\t\tf 3 6252 -6115 -6252\n\t\tmu 0 3 11367 11368 11369\n\t\tf 3 -6253 6253 6254\n\t\tmu 0 3 11370 11371 11372\n\t\tf 3 6255 -6121 -6255\n\t\tmu 0 3 11373 11374 11375\n\t\tf 3 -6256 6256 6257\n\t\tmu 0 3 11376 11377 11378\n\t\tf 3 6258 -6124 -6258\n\t\tmu 0 3 11379 11380 11381\n\t\tf 3 -6259 6259 6260\n\t\tmu 0 3 11382 11383 11384\n\t\tf 3 6261 -6126 -6261\n\t\tmu 0 3 11385 11386 11387\n\t\tf 3 -6128 -6262 6262\n\t\tmu 0 3 11388 11389 11390\n\t\tf 3 6263 6264 -6263\n\t\tmu 0 3 11391 11392 11393\n\t\tf 3 -6265 6265 6266\n\t\tmu 0 3 11394 11395 11396\n\t\tf 3 6267 -6138 -6267\n\t\tmu 0 3 11397 11398 11399\n\t\tf 3 -6268 6268 6269\n\t\tmu 0 3 11400 11401 11402\n\t\tf 3 6270 -6140 -6270\n\t\tmu 0 3 11403 11404 11405\n\t\tf 3 -6271 6271 6272\n\t\tmu 0 3 11406 11407 11408\n\t\tf 3 6273 -6137 -6273\n\t\tmu 0 3 11409 11410 11411\n\t\tf 3 -6274 6274 6275\n\t\tmu 0 3 11412 11413 11414\n\t\tf 3 6276 -6082 -6276\n\t\tmu 0 3 11415 11416 11417\n\t\tf 3 -6075 -6277 6277\n\t\tmu 0 3 11418 11419 11420\n\t\tf 3 6278 6279 -6278\n\t\tmu 0 3 11421 11422 11423\n\t\tf 3 -6090 -6280 6280\n\t\tmu 0 3 11424 11425 11426\n\t\tf 3 6281 6282 -6281\n\t\tmu 0 3 11427 11428 11429\n\t\tf 3 -6283 6283 6284\n\t\tmu 0 3 11430 11431 11432\n\t\tf 3 -6237 -6117 -6285\n\t\tmu 0 3 11433 11434 11435\n\t\tf 3 6285 6286 6287\n\t\tmu 0 3 11436 11437 11438\n\t\tf 3 6288 6289 -6288\n\t\tmu 0 3 11439 11440 11441\n\t\tf 3 -6290 6290 6291\n\t\tmu 0 3 11442 11443 11444\n\t\tf 3 6292 6293 -6292\n\t\tmu 0 3 11445 11446 11447\n\t\tf 3 -6287 6294 6295\n\t\tmu 0 3 11448 11449 11450\n\t\tf 3 6296 6297 -6296\n\t\tmu 0 3 11451 11452 11453\n\t\tf 3 6298 -6293 6299\n\t\tmu 0 3 11454 11455 11456\n\t\tf 3 6300 6301 -6300\n\t\tmu 0 3 11457 11458 11459\n\t\tf 3 -6302 6302 6303\n\t\tmu 0 3 11460 11461 11462\n\t\tf 3 6304 6305 -6304\n\t\tmu 0 3 11463 11464 11465\n\t\tf 3 6306 -6305 6307\n\t\tmu 0 3 11466 11467 11468\n\t\tf 3 6308 6309 -6308\n\t\tmu 0 3 11469 11470 11471\n\t\tf 3 -6310 6310 6311\n\t\tmu 0 3 11472 11473 11474\n\t\tf 3 6312 6313 -6312\n\t\tmu 0 3 11475 11476 11477\n\t\tf 3 6314 -6313 6315\n\t\tmu 0 3 11478 11479 11480\n\t\tf 3 6316 6317 -6316\n\t\tmu 0 3 11481 11482 11483\n\t\tf 3 -6318 6318 6319\n\t\tmu 0 3 11484 11485 11486\n\t\tf 3 6320 6321 -6320\n\t\tmu 0 3 11487 11488 11489\n\t\tf 3 6322 -6321 6323\n\t\tmu 0 3 11490 11491 11492\n\t\tf 3 6324 6325 -6324\n\t\tmu 0 3 11493 11494 11495\n\t\tf 3 -6326 6326 6327\n\t\tmu 0 3 11496 11497 11498\n\t\tf 3 6328 6329 -6328\n\t\tmu 0 3 11499 11500 11501\n\t\tf 3 6330 -6329 6331\n\t\tmu 0 3 11502 11503 11504\n\t\tf 3 6332 6333 -6332\n\t\tmu 0 3 11505 11506 11507\n\t\tf 3 -6334 6334 6335\n\t\tmu 0 3 11508 11509 11510\n\t\tf 3 6336 6337 -6336\n\t\tmu 0 3 11511 11512 11513\n\t\tf 3 6338 -6337 6339\n\t\tmu 0 3 11514 11515 11516\n\t\tf 3 6340 6341 -6340\n\t\tmu 0 3 11517 11518 11519\n\t\tf 3 -6342 6342 6343\n\t\tmu 0 3 11520 11521 11522\n\t\tf 3 6344 6345 -6344\n\t\tmu 0 3 11523 11524 11525\n\t\tf 3 6346 -6343 6347\n\t\tmu 0 3 11526 11527 11528\n\t\tf 3 -6347 6348 6349\n\t\tmu 0 3 11529 11530 11531\n\t\tf 3 6350 6351 -6350\n\t\tmu 0 3 11532 11533 11534\n\t\tf 3 6352 6353 -6348\n\t\tmu 0 3 11535 11536 11537\n\t\tf 3 -6353 -6341 6354\n\t\tmu 0 3 11538 11539 11540\n\t\tf 3 6355 6356 -6355\n\t\tmu 0 3 11541 11542 11543\n\t\tf 3 -6356 -6335 6357\n\t\tmu 0 3 11544 11545 11546\n\t\tf 3 6358 6359 -6358\n\t\tmu 0 3 11547 11548 11549\n\t\tf 3 -6359 -6333 6360\n\t\tmu 0 3 11550 11551 11552\n\t\tf 3 6361 6362 -6361\n\t\tmu 0 3 11553 11554 11555\n\t\tf 3 6363 6364 6365\n\t\tmu 0 3 11556 11557 11558\n\t\tf 3 -6362 -6327 -6366\n\t\tmu 0 3 11559 11560 11561\n\t\tf 3 -6364 -6325 6366\n\t\tmu 0 3 11562 11563 11564\n\t\tf 3 6367 6368 -6367\n\t\tmu 0 3 11565 11566 11567\n\t\tf 3 -6368 -6319 6369\n\t\tmu 0 3 11568 11569 11570\n\t\tf 3 6370 6371 -6370\n\t\tmu 0 3 11571 11572 11573\n\t\tf 3 -6371 -6317 6372\n\t\tmu 0 3 11574 11575 11576\n\t\tf 3 6373 6374 -6373\n\t\tmu 0 3 11577 11578 11579\n\t\tf 3 -6374 -6311 6375\n\t\tmu 0 3 11580 11581 11582\n\t\tf 3 6376 6377 -6376\n\t\tmu 0 3 11583 11584 11585\n\t\tf 3 -6377 -6309 6378\n\t\tmu 0 3 11586 11587 11588\n\t\tf 3 6379 6380 -6379\n\t\tmu 0 3 11589 11590 11591\n\t\tf 3 -6380 -6303 6381\n\t\tmu 0 3 11592 11593 11594\n\t\tf 3 6382 6383 -6382\n\t\tmu 0 3 11595 11596 11597\n\t\tf 3 -6383 -6301 6384\n\t\tmu 0 3 11598 11599 11600\n\t\tf 3 6385 6386 -6385\n\t\tmu 0 3 11601 11602 11603\n\t\tf 3 -6386 -6291 6387\n\t\tmu 0 3 11604 11605 11606\n\t\tf 3 6388 6389 -6388\n\t\tmu 0 3 11607 11608 11609\n\t\tf 3 -6389 -6289 6390\n\t\tmu 0 3 11610 11611 11612\n\t\tf 3 6391 6392 -6391\n\t\tmu 0 3 11613 11614 11615\n\t\tf 3 -6392 -6298 6393\n\t\tmu 0 3 11616 11617 11618\n\t\tf 3 -6351 6394 -6394\n\t\tmu 0 3 11619 11620 11621\n\t\tf 3 -6352 -6297 6395\n\t\tmu 0 3 11622 11623 11624\n\t\tf 3 6396 -6345 -6396\n\t\tmu 0 3 11625 11626 11627\n\t\tf 3 6397 6398 6399\n\t\tmu 0 3 11628 11629 11630\n\t\tf 3 6400 6401 -6400\n\t\tmu 0 3 11631 11632 11633\n\t\tf 3 -6401 6402 6403\n\t\tmu 0 3 11634 11635 11636\n\t\tf 3 6404 6405 -6404\n\t\tmu 0 3 11637 11638 11639\n\t\tf 3 -6405 6406 6407\n\t\tmu 0 3 11640 11641 11642\n\t\tf 3 6408 6409 -6408\n\t\tmu 0 3 11643 11644 11645\n\t\tf 3 -6409 6410 6411\n\t\tmu 0 3 11646 11647 11648\n\t\tf 3 6412 6413 -6412\n\t\tmu 0 3 11649 11650 11651\n\t\tf 3 -6413 6414 6415\n\t\tmu 0 3 11652 11653 11654;\n\tsetAttr \".fc[3500:3999]\"\n\t\tf 3 6416 6417 -6416\n\t\tmu 0 3 11655 11656 11657\n\t\tf 3 -6417 6418 6419\n\t\tmu 0 3 11658 11659 11660\n\t\tf 3 6420 6421 -6420\n\t\tmu 0 3 11661 11662 11663\n\t\tf 3 -6421 6422 6423\n\t\tmu 0 3 11664 11665 11666\n\t\tf 3 6424 6425 -6424\n\t\tmu 0 3 11667 11668 11669\n\t\tf 3 -6425 6426 6427\n\t\tmu 0 3 11670 11671 11672\n\t\tf 3 6428 6429 -6428\n\t\tmu 0 3 11673 11674 11675\n\t\tf 3 -6429 6430 6431\n\t\tmu 0 3 11676 11677 11678\n\t\tf 3 6432 6433 -6432\n\t\tmu 0 3 11679 11680 11681\n\t\tf 3 -6433 6434 6435\n\t\tmu 0 3 11682 11683 11684\n\t\tf 3 6436 6437 -6436\n\t\tmu 0 3 11685 11686 11687\n\t\tf 3 -6437 6438 6439\n\t\tmu 0 3 11688 11689 11690\n\t\tf 3 6440 6441 -6440\n\t\tmu 0 3 11691 11692 11693\n\t\tf 3 -6441 6442 6443\n\t\tmu 0 3 11694 11695 11696\n\t\tf 3 6444 6445 -6444\n\t\tmu 0 3 11697 11698 11699\n\t\tf 3 -6445 6446 6447\n\t\tmu 0 3 11700 11701 11702\n\t\tf 3 6448 6449 -6448\n\t\tmu 0 3 11703 11704 11705\n\t\tf 3 -6449 6450 6451\n\t\tmu 0 3 11706 11707 11708\n\t\tf 3 6452 6453 -6452\n\t\tmu 0 3 11709 11710 11711\n\t\tf 3 -6453 6454 6455\n\t\tmu 0 3 11712 11713 11714\n\t\tf 3 6456 6457 -6456\n\t\tmu 0 3 11715 11716 11717\n\t\tf 3 -6457 6458 6459\n\t\tmu 0 3 11718 11719 11720\n\t\tf 3 -6398 6460 -6460\n\t\tmu 0 3 11721 11722 11723\n\t\tf 3 6461 6462 6463\n\t\tmu 0 3 11724 11725 11726\n\t\tf 3 6464 6465 -6464\n\t\tmu 0 3 11727 11728 11729\n\t\tf 3 -6465 6466 6467\n\t\tmu 0 3 11730 11731 11732\n\t\tf 3 6468 6469 -6468\n\t\tmu 0 3 11733 11734 11735\n\t\tf 3 -6469 6470 6471\n\t\tmu 0 3 11736 11737 11738\n\t\tf 3 6472 6473 -6472\n\t\tmu 0 3 11739 11740 11741\n\t\tf 3 -6473 6474 6475\n\t\tmu 0 3 11742 11743 11744\n\t\tf 3 6476 6477 -6476\n\t\tmu 0 3 11745 11746 11747\n\t\tf 3 -6462 6478 6479\n\t\tmu 0 3 11748 11749 11750\n\t\tf 3 6480 6481 -6480\n\t\tmu 0 3 11751 11752 11753\n\t\tf 3 -6481 6482 6483\n\t\tmu 0 3 11754 11755 11756\n\t\tf 3 6484 6485 -6484\n\t\tmu 0 3 11757 11758 11759\n\t\tf 3 -6485 6486 6487\n\t\tmu 0 3 11760 11761 11762\n\t\tf 3 6488 6489 -6488\n\t\tmu 0 3 11763 11764 11765\n\t\tf 3 -6489 6490 6491\n\t\tmu 0 3 11766 11767 11768\n\t\tf 3 6492 6493 -6492\n\t\tmu 0 3 11769 11770 11771\n\t\tf 3 -6493 6494 6495\n\t\tmu 0 3 11772 11773 11774\n\t\tf 3 6496 6497 -6496\n\t\tmu 0 3 11775 11776 11777\n\t\tf 3 -6497 6498 6499\n\t\tmu 0 3 11778 11779 11780\n\t\tf 3 6500 6501 -6500\n\t\tmu 0 3 11781 11782 11783\n\t\tf 3 -6501 6502 6503\n\t\tmu 0 3 11784 11785 11786\n\t\tf 3 6504 6505 -6504\n\t\tmu 0 3 11787 11788 11789\n\t\tf 3 -6505 6506 6507\n\t\tmu 0 3 11790 11791 11792\n\t\tf 3 6508 6509 -6508\n\t\tmu 0 3 11793 11794 11795\n\t\tf 3 -6509 6510 6511\n\t\tmu 0 3 11796 11797 11798\n\t\tf 3 6512 6513 -6512\n\t\tmu 0 3 11799 11800 11801\n\t\tf 3 -6513 6514 6515\n\t\tmu 0 3 11802 11803 11804\n\t\tf 3 6516 6517 -6516\n\t\tmu 0 3 11805 11806 11807\n\t\tf 3 -6517 6518 6519\n\t\tmu 0 3 11808 11809 11810\n\t\tf 3 6520 6521 -6520\n\t\tmu 0 3 11811 11812 11813\n\t\tf 3 -6521 6522 6523\n\t\tmu 0 3 11814 11815 11816\n\t\tf 3 -6477 6524 -6524\n\t\tmu 0 3 11817 11818 11819\n\t\tf 3 6525 6526 6527\n\t\tmu 0 3 11820 11821 11822\n\t\tf 3 -6466 6528 -6528\n\t\tmu 0 3 11823 11824 11825\n\t\tf 3 -6529 -6470 6529\n\t\tmu 0 3 11826 11827 11828\n\t\tf 3 6530 6531 -6530\n\t\tmu 0 3 11829 11830 11831\n\t\tf 3 6532 -6531 6533\n\t\tmu 0 3 11832 11833 11834\n\t\tf 3 -6474 6534 -6534\n\t\tmu 0 3 11835 11836 11837\n\t\tf 3 -6535 -6478 6535\n\t\tmu 0 3 11838 11839 11840\n\t\tf 3 6536 6537 -6536\n\t\tmu 0 3 11841 11842 11843\n\t\tf 3 -6527 6538 6539\n\t\tmu 0 3 11844 11845 11846\n\t\tf 3 6540 -6479 -6540\n\t\tmu 0 3 11847 11848 11849\n\t\tf 3 -6483 -6541 6541\n\t\tmu 0 3 11850 11851 11852\n\t\tf 3 6542 6543 -6542\n\t\tmu 0 3 11853 11854 11855\n\t\tf 3 -6544 6544 6545\n\t\tmu 0 3 11856 11857 11858\n\t\tf 3 6546 -6487 -6546\n\t\tmu 0 3 11859 11860 11861\n\t\tf 3 -6491 -6547 6547\n\t\tmu 0 3 11862 11863 11864\n\t\tf 3 6548 6549 -6548\n\t\tmu 0 3 11865 11866 11867\n\t\tf 3 -6550 6550 6551\n\t\tmu 0 3 11868 11869 11870\n\t\tf 3 6552 -6495 -6552\n\t\tmu 0 3 11871 11872 11873\n\t\tf 3 -6499 -6553 6553\n\t\tmu 0 3 11874 11875 11876\n\t\tf 3 6554 6555 -6554\n\t\tmu 0 3 11877 11878 11879\n\t\tf 3 -6556 6556 6557\n\t\tmu 0 3 11880 11881 11882\n\t\tf 3 6558 -6503 -6558\n\t\tmu 0 3 11883 11884 11885\n\t\tf 3 -6507 -6559 6559\n\t\tmu 0 3 11886 11887 11888\n\t\tf 3 6560 6561 -6560\n\t\tmu 0 3 11889 11890 11891\n\t\tf 3 -6562 6562 6563\n\t\tmu 0 3 11892 11893 11894\n\t\tf 3 6564 -6511 -6564\n\t\tmu 0 3 11895 11896 11897\n\t\tf 3 -6515 -6565 6565\n\t\tmu 0 3 11898 11899 11900\n\t\tf 3 6566 6567 -6566\n\t\tmu 0 3 11901 11902 11903\n\t\tf 3 -6568 6568 6569\n\t\tmu 0 3 11904 11905 11906\n\t\tf 3 6570 -6519 -6570\n\t\tmu 0 3 11907 11908 11909\n\t\tf 3 -6523 -6571 6571\n\t\tmu 0 3 11910 11911 11912\n\t\tf 3 6572 -6537 -6572\n\t\tmu 0 3 11913 11914 11915\n\t\tf 3 6573 6574 6575\n\t\tmu 0 3 11916 11917 11918\n\t\tf 3 -6576 6576 6577\n\t\tmu 0 3 11919 11920 11921\n\t\tf 3 6578 6579 -6577\n\t\tmu 0 3 11922 11923 11924\n\t\tf 3 6580 6581 -6579\n\t\tmu 0 3 11925 11926 11927\n\t\tf 3 6582 6583 -6581\n\t\tmu 0 3 11928 11929 11930\n\t\tf 3 6584 6585 -6583\n\t\tmu 0 3 11931 11932 11933\n\t\tf 3 6586 6587 -6584\n\t\tmu 0 3 11934 11935 11936\n\t\tf 3 6588 6589 -6582\n\t\tmu 0 3 11937 11938 11939\n\t\tf 3 6590 6591 -6589\n\t\tmu 0 3 11940 11941 11942\n\t\tf 3 6592 6593 -6590\n\t\tmu 0 3 11943 11944 11945\n\t\tf 3 6594 6595 -6580\n\t\tmu 0 3 11946 11947 11948\n\t\tf 3 6596 6597 -6595\n\t\tmu 0 3 11949 11950 11951\n\t\tf 3 6598 6599 -6596\n\t\tmu 0 3 11952 11953 11954\n\t\tf 3 -6578 6600 6601\n\t\tmu 0 3 11955 11956 11957\n\t\tf 3 6602 6603 6604\n\t\tmu 0 3 4479 11958 11959\n\t\tf 3 6605 6606 -6605\n\t\tmu 0 3 11960 6135 4479\n\t\tf 3 -6606 6607 6608\n\t\tmu 0 3 6135 11961 11962\n\t\tf 3 6609 6610 -6609\n\t\tmu 0 3 11963 6225 6135\n\t\tf 3 6611 6612 6613\n\t\tmu 0 3 11964 11965 11966\n\t\tf 3 6614 6615 -6614\n\t\tmu 0 3 11967 380 11968\n\t\tf 3 -6603 6616 6617\n\t\tmu 0 3 11969 4479 5801\n\t\tf 3 6618 6619 -6618\n\t\tmu 0 3 5801 11970 11971\n\t\tf 3 -6619 6620 6621\n\t\tmu 0 3 11972 5801 1083\n\t\tf 3 6622 6623 -6622\n\t\tmu 0 3 1083 11973 11974\n\t\tf 3 6624 6625 6626\n\t\tmu 0 3 11975 11976 11977\n\t\tf 3 6627 6628 -6627\n\t\tmu 0 3 11978 5265 11979\n\t\tf 3 -6628 6629 6630\n\t\tmu 0 3 5265 11980 11981\n\t\tf 3 6631 6632 -6631\n\t\tmu 0 3 11982 3817 5265\n\t\tf 3 -6623 6633 6634\n\t\tmu 0 3 11983 1083 5640\n\t\tf 3 6635 6636 -6635\n\t\tmu 0 3 5640 11984 11985\n\t\tf 3 -6636 6637 6638\n\t\tmu 0 3 11986 5640 2074\n\t\tf 3 6639 6640 -6639\n\t\tmu 0 3 2074 11987 11988\n\t\tf 3 -6640 6641 6642\n\t\tmu 0 3 11989 2074 3927\n\t\tf 3 6643 6644 -6643\n\t\tmu 0 3 3927 11990 11991\n\t\tf 3 -6644 6645 6646\n\t\tmu 0 3 11992 3927 1180\n\t\tf 3 6647 6648 -6647\n\t\tmu 0 3 1180 11993 11994\n\t\tf 3 -6648 6649 6650\n\t\tmu 0 3 11995 1180 2616\n\t\tf 3 6651 6652 -6651\n\t\tmu 0 3 2616 11996 11997\n\t\tf 3 -6652 6653 6654\n\t\tmu 0 3 11998 2616 5486\n\t\tf 3 6655 6656 -6655\n\t\tmu 0 3 5486 11999 12000\n\t\tf 3 -6656 6657 6658\n\t\tmu 0 3 12001 5486 145\n\t\tf 3 6659 6660 -6659\n\t\tmu 0 3 145 12002 12003\n\t\tf 3 6661 6662 6663\n\t\tmu 0 3 12004 12005 4982\n\t\tf 3 6664 6665 -6664\n\t\tmu 0 3 4982 12006 12007\n\t\tf 3 6666 6667 6668\n\t\tmu 0 3 12008 12009 5675\n\t\tf 3 6669 6670 -6669\n\t\tmu 0 3 5675 12010 12011\n\t\tf 3 -6670 6671 6672\n\t\tmu 0 3 12012 5675 4348\n\t\tf 3 6673 6674 -6673\n\t\tmu 0 3 4348 12013 12014\n\t\tf 3 -6674 6675 6676\n\t\tmu 0 3 12015 4348 1129\n\t\tf 3 -6632 6677 -6677\n\t\tmu 0 3 1129 12016 12017\n\t\tf 3 6678 6679 6680\n\t\tmu 0 3 12018 12019 12020\n\t\tf 3 6681 6682 -6681\n\t\tmu 0 3 12021 12022 12023\n\t\tf 3 -6682 6683 6684\n\t\tmu 0 3 12024 12025 12026\n\t\tf 3 6685 6686 -6685\n\t\tmu 0 3 12027 12028 12029\n\t\tf 3 -6686 6687 6688\n\t\tmu 0 3 12030 12031 12032\n\t\tf 3 6689 6690 -6689\n\t\tmu 0 3 12033 12034 12035\n\t\tf 3 -6690 6691 6692\n\t\tmu 0 3 12036 12037 12038\n\t\tf 3 6693 6694 -6693\n\t\tmu 0 3 12039 12040 12041\n\t\tf 3 -6694 6695 6696\n\t\tmu 0 3 12042 12043 12044\n\t\tf 3 6697 6698 -6697\n\t\tmu 0 3 12045 12046 12047\n\t\tf 3 -6698 6699 6700\n\t\tmu 0 3 12048 12049 12050\n\t\tf 3 6701 6702 -6701\n\t\tmu 0 3 12051 12052 12053\n\t\tf 3 -6702 6703 6704\n\t\tmu 0 3 12054 12055 12056\n\t\tf 3 6705 6706 -6705\n\t\tmu 0 3 12057 12058 12059\n\t\tf 3 -6706 6707 6708\n\t\tmu 0 3 12060 12061 12062\n\t\tf 3 6709 6710 -6709\n\t\tmu 0 3 12063 12064 12065\n\t\tf 3 -6710 6711 6712\n\t\tmu 0 3 12066 12067 12068\n\t\tf 3 6713 6714 -6713\n\t\tmu 0 3 12069 12070 12071\n\t\tf 3 -6714 6715 6716\n\t\tmu 0 3 12072 12073 12074\n\t\tf 3 6717 6718 -6717\n\t\tmu 0 3 12075 12076 12077\n\t\tf 3 6719 6720 6721\n\t\tmu 0 3 12078 12079 12080\n\t\tf 3 6722 6723 -6722\n\t\tmu 0 3 12081 12082 12083\n\t\tf 3 -6723 6724 6725\n\t\tmu 0 3 12084 12085 12086\n\t\tf 3 6726 6727 -6726\n\t\tmu 0 3 12087 12088 12089\n\t\tf 3 -6679 6728 6729\n\t\tmu 0 3 12090 12091 12092\n\t\tf 3 6730 6731 -6730\n\t\tmu 0 3 12093 12094 12095\n\t\tf 3 -6731 6732 6733\n\t\tmu 0 3 12096 12097 12098\n\t\tf 3 6734 6735 -6734\n\t\tmu 0 3 12099 12100 12101\n\t\tf 3 -6735 6736 6737\n\t\tmu 0 3 12102 12103 12104\n\t\tf 3 6738 6739 -6738\n\t\tmu 0 3 12105 12106 12107\n\t\tf 3 6740 6741 6742\n\t\tmu 0 3 12108 12109 12110\n\t\tf 3 6743 6744 -6743\n\t\tmu 0 3 12111 12112 12113\n\t\tf 3 -6744 6745 6746\n\t\tmu 0 3 12114 12115 12116\n\t\tf 3 6747 6748 -6747\n\t\tmu 0 3 12117 12118 12119\n\t\tf 3 -6748 6749 6750\n\t\tmu 0 3 12120 12121 12122\n\t\tf 3 -6727 6751 -6751\n\t\tmu 0 3 12123 12124 12125\n\t\tf 3 6752 6753 6754\n\t\tmu 0 3 12126 12127 12128\n\t\tf 3 -6755 6755 6756\n\t\tmu 0 3 12129 12130 12131\n\t\tf 3 6757 6758 -6756\n\t\tmu 0 3 12132 12133 12134\n\t\tf 3 6759 6760 -6758\n\t\tmu 0 3 12135 12136 12137\n\t\tf 3 6761 6762 -6761\n\t\tmu 0 3 12138 12139 12140\n\t\tf 3 6763 6764 -6759\n\t\tmu 0 3 12141 12142 12143\n\t\tf 3 6765 6766 -6765\n\t\tmu 0 3 12144 12145 12146\n\t\tf 3 6767 6768 -6766\n\t\tmu 0 3 12147 12148 12149\n\t\tf 3 6769 6770 -6769\n\t\tmu 0 3 12150 12151 12152\n\t\tf 3 6771 6772 -6770\n\t\tmu 0 3 12153 12154 12155\n\t\tf 3 6773 6774 -6771\n\t\tmu 0 3 12156 12157 12158\n\t\tf 3 6775 6776 -6767\n\t\tmu 0 3 12159 12160 12161\n\t\tf 3 6777 6778 -6776\n\t\tmu 0 3 12162 12163 12164\n\t\tf 3 6779 6780 -6778\n\t\tmu 0 3 12165 12166 12167\n\t\tf 3 6781 6782 -6781\n\t\tmu 0 3 12168 12169 12170\n\t\tf 3 6783 6784 6785\n\t\tmu 0 3 12171 12172 12173\n\t\tf 3 6786 6787 6788\n\t\tmu 0 3 2942 5064 4428\n\t\tf 3 6789 6790 -6789\n\t\tmu 0 3 4428 5432 2942\n\t\tf 3 -6788 6791 6792\n\t\tmu 0 3 4428 5064 1520\n\t\tf 3 6793 6794 -6793\n\t\tmu 0 3 1520 6180 4428\n\t\tf 3 6795 -6795 6796\n\t\tmu 0 3 1134 4428 6180\n\t\tf 3 6797 6798 -6797\n\t\tmu 0 3 6180 2734 1134\n\t\tf 3 -6796 6799 6800\n\t\tmu 0 3 4428 1134 1550\n\t\tf 3 6801 -6790 -6801\n\t\tmu 0 3 1550 5432 4428\n\t\tf 3 6802 -6802 6803\n\t\tmu 0 3 5534 5432 1550\n\t\tf 3 6804 6805 -6804\n\t\tmu 0 3 1550 1477 5534\n\t\tf 3 -6798 6806 6807\n\t\tmu 0 3 2734 6180 1137\n\t\tf 3 6808 6809 -6808\n\t\tmu 0 3 1137 3129 2734\n\t\tf 3 6810 6811 6812\n\t\tmu 0 3 2670 3146 5294\n\t\tf 3 6813 6814 -6813\n\t\tmu 0 3 5294 2816 2670\n\t\tf 3 6815 -6815 6816\n\t\tmu 0 3 4430 2670 2816\n\t\tf 3 6817 6818 -6817\n\t\tmu 0 3 2816 2845 4430\n\t\tf 3 6819 -6812 6820\n\t\tmu 0 3 3622 5294 3146\n\t\tf 3 6821 6822 -6821\n\t\tmu 0 3 3146 1159 3622\n\t\tf 3 -6819 6823 6824\n\t\tmu 0 3 4430 2845 3082\n\t\tf 3 6825 6826 -6825\n\t\tmu 0 3 3082 2686 4430\n\t\tf 3 -6818 6827 6828\n\t\tmu 0 3 2845 2816 40\n\t\tf 3 -6828 -6814 6829\n\t\tmu 0 3 40 2816 5294\n\t\tf 3 6830 6831 -6829\n\t\tmu 0 3 40 886 2845\n\t\tf 3 6832 6833 -6830\n\t\tmu 0 3 5294 5732 40\n\t\tf 3 -6833 -6820 6834\n\t\tmu 0 3 5732 5294 3622\n\t\tf 3 6835 6836 -6835\n\t\tmu 0 3 3622 4370 5732\n\t\tf 3 -6836 6837 6838\n\t\tmu 0 3 4370 3622 3559\n\t\tf 3 -6838 -6823 6839\n\t\tmu 0 3 3559 3622 1159\n\t\tf 3 6840 6841 -6839\n\t\tmu 0 3 3559 4550 4370\n\t\tf 3 6842 -6841 6843\n\t\tmu 0 3 6326 4550 3559\n\t\tf 3 6844 6845 -6844\n\t\tmu 0 3 3559 2970 6326\n\t\tf 3 6846 -6846 6847\n\t\tmu 0 3 5137 6326 2970\n\t\tf 3 6848 6849 -6848\n\t\tmu 0 3 2970 914 5137\n\t\tf 3 6850 -6845 6851\n\t\tmu 0 3 2169 2970 3559\n\t\tf 3 -6849 -6851 6852\n\t\tmu 0 3 914 2970 2169\n\t\tf 3 6853 6854 -6852\n\t\tmu 0 3 3559 5285 2169\n\t\tf 3 6855 -6854 -6840\n\t\tmu 0 3 1159 5285 3559\n\t\tf 3 6856 6857 -6853\n\t\tmu 0 3 2169 4704 914\n\t\tf 3 6858 6859 -6858\n\t\tmu 0 3 4704 2927 914\n\t\tf 3 6860 6861 -6860\n\t\tmu 0 3 2927 4935 914\n\t\tf 3 6862 6863 -6861\n\t\tmu 0 3 2927 3015 4935\n\t\tf 3 -6862 6864 6865\n\t\tmu 0 3 914 4935 2785\n\t\tf 3 -6850 -6866 6866\n\t\tmu 0 3 5137 914 2785\n\t\tf 3 -6867 6867 6868\n\t\tmu 0 3 5137 2785 942\n\t\tf 3 -6869 6869 6870\n\t\tmu 0 3 5137 942 5448\n\t\tf 3 -6832 6871 6872\n\t\tmu 0 3 2845 886 4031\n\t\tf 3 6873 -6824 -6873\n\t\tmu 0 3 4031 3082 2845\n\t\tf 3 6874 6875 6876\n\t\tmu 0 3 12174 12175 12176\n\t\tf 3 6877 6878 -6877\n\t\tmu 0 3 12177 12178 12179\n\t\tf 3 -6875 6879 6880\n\t\tmu 0 3 12180 12181 12182\n\t\tf 3 6881 6882 -6881\n\t\tmu 0 3 12183 12184 12185\n\t\tf 3 6883 -6883 6884\n\t\tmu 0 3 12186 12187 12188\n\t\tf 3 6885 6886 -6885\n\t\tmu 0 3 12189 12190 12191\n\t\tf 3 -6886 6887 6888\n\t\tmu 0 3 12192 12193 1565\n\t\tf 3 6889 6890 -6889\n\t\tmu 0 3 1565 12194 12195\n\t\tf 3 -6890 6891 6892\n\t\tmu 0 3 12196 1565 3058\n\t\tf 3 6893 6894 -6893\n\t\tmu 0 3 3058 12197 12198\n\t\tf 3 -6894 6895 6896\n\t\tmu 0 3 12199 3058 3180\n\t\tf 3 6897 6898 -6897\n\t\tmu 0 3 3180 12200 12201\n\t\tf 3 -6898 6899 6900\n\t\tmu 0 3 12202 3180 12203\n\t\tf 3 -6884 6901 6902\n\t\tmu 0 3 12204 12205 12206\n\t\tf 3 6903 -6876 -6903\n\t\tmu 0 3 12207 12208 12209\n\t\tf 3 -6904 6904 -6901\n\t\tmu 0 3 12210 12211 12212\n\t\tf 3 6905 6906 6907\n\t\tmu 0 3 12213 5193 2992\n\t\tf 3 6908 -6908 6909\n\t\tmu 0 3 12214 12215 2992\n\t\tf 3 -6910 6910 6911\n\t\tmu 0 3 12216 2992 12217\n\t\tf 3 -6911 6912 6913\n\t\tmu 0 3 12218 2992 3106\n\t\tf 3 6914 6915 -6914\n\t\tmu 0 3 3106 12219 12220\n\t\tf 3 -6915 6916 6917\n\t\tmu 0 3 12221 3106 1184\n\t\tf 3 6918 6919 -6918\n\t\tmu 0 3 1184 12222 12223\n\t\tf 3 -6919 6920 6921\n\t\tmu 0 3 12224 1184 5406\n\t\tf 3 6922 6923 -6922\n\t\tmu 0 3 5406 12225 12226\n\t\tf 3 -6923 6924 6925\n\t\tmu 0 3 12227 5406 2471\n\t\tf 3 6926 6927 -6926\n\t\tmu 0 3 2471 12228 12229\n\t\tf 3 -6927 6928 6929\n\t\tmu 0 3 12230 2471 4268\n\t\tf 3 6930 6931 -6930\n\t\tmu 0 3 4268 12231 12232\n\t\tf 3 -6931 6932 6933\n\t\tmu 0 3 12233 4268 3533\n\t\tf 3 6934 6935 -6934\n\t\tmu 0 3 3533 12234 12235\n\t\tf 3 -6935 6936 6937\n\t\tmu 0 3 12236 3533 478\n\t\tf 3 6938 6939 -6938\n\t\tmu 0 3 478 12237 12238\n\t\tf 3 -6939 6940 6941\n\t\tmu 0 3 12239 478 3247\n\t\tf 3 6942 6943 -6942\n\t\tmu 0 3 3247 12240 12241\n\t\tf 3 -6943 6944 6945\n\t\tmu 0 3 12242 3247 3216\n\t\tf 3 6946 6947 -6946\n\t\tmu 0 3 3216 12243 12244\n\t\tf 3 6948 -6947 6949\n\t\tmu 0 3 12245 12246 3216\n\t\tf 3 6950 6951 -6950\n\t\tmu 0 3 3216 1835 12247\n\t\tf 3 6952 -6952 6953\n\t\tmu 0 3 12248 12249 1835\n\t\tf 3 6954 6955 -6954\n\t\tmu 0 3 1835 4463 12250\n\t\tf 3 -6956 6956 6957\n\t\tmu 0 3 12251 4463 738\n\t\tf 3 6958 6959 -6958\n\t\tmu 0 3 738 12252 12253\n\t\tf 3 -6959 6960 6961\n\t\tmu 0 3 12254 738 3692\n\t\tf 3 6962 6963 -6962\n\t\tmu 0 3 3692 12255 12256\n\t\tf 3 6964 6965 6966\n\t\tmu 0 3 12257 12258 12259\n\t\tf 3 6967 6968 -6967\n\t\tmu 0 3 12260 5807 12261\n\t\tf 3 6969 6970 6971\n\t\tmu 0 3 12262 12263 6165\n\t\tf 3 6972 6973 -6972\n\t\tmu 0 3 6165 12264 12265\n\t\tf 3 -6973 6974 6975\n\t\tmu 0 3 12266 6165 5221\n\t\tf 3 6976 6977 -6976\n\t\tmu 0 3 5221 12267 12268\n\t\tf 3 -6977 6978 6979\n\t\tmu 0 3 12269 5221 6310\n\t\tf 3 6980 6981 -6980\n\t\tmu 0 3 6310 12270 12271\n\t\tf 3 -6981 6982 6983\n\t\tmu 0 3 12272 6310 6240\n\t\tf 3 6984 6985 -6984\n\t\tmu 0 3 6240 12273 12274\n\t\tf 3 -6985 6986 6987\n\t\tmu 0 3 12275 6240 3570\n\t\tf 3 6988 6989 -6988\n\t\tmu 0 3 3570 12276 12277\n\t\tf 3 -6989 6990 6991\n\t\tmu 0 3 12278 3570 1655\n\t\tf 3 6992 6993 -6992\n\t\tmu 0 3 1655 12279 12280\n\t\tf 3 6994 -6993 6995\n\t\tmu 0 3 12281 12282 1655\n\t\tf 3 6996 6997 -6996\n\t\tmu 0 3 1655 113 12283\n\t\tf 3 -6998 6998 6999\n\t\tmu 0 3 12284 113 5599\n\t\tf 3 -7000 7000 7001\n\t\tmu 0 3 12285 5599 12286\n\t\tf 3 -7002 7002 7003\n\t\tmu 0 3 12287 12288 12289\n\t\tf 3 -6806 7004 7005\n\t\tmu 0 3 2701 5980 2977\n\t\tf 3 7006 7007 -7006\n\t\tmu 0 3 2977 3181 2701\n\t\tf 3 -7007 7008 7009\n\t\tmu 0 3 3181 2977 2668\n\t\tf 3 7010 7011 -7010\n\t\tmu 0 3 2668 3005 3181\n\t\tf 3 -7011 7012 7013\n\t\tmu 0 3 3005 2668 4472\n\t\tf 3 7014 7015 -7014\n\t\tmu 0 3 4472 800 3005\n\t\tf 3 -7015 7016 7017\n\t\tmu 0 3 800 4472 2344\n\t\tf 3 7018 7019 -7018\n\t\tmu 0 3 2344 3177 800\n\t\tf 3 -7019 7020 7021\n\t\tmu 0 3 3177 2344 4141\n\t\tf 3 7022 7023 -7022\n\t\tmu 0 3 4141 1649 3177\n\t\tf 3 -7023 7024 7025\n\t\tmu 0 3 1649 4141 4568\n\t\tf 3 7026 7027 -7026\n\t\tmu 0 3 4568 4658 1649\n\t\tf 3 7028 -7027 7029\n\t\tmu 0 3 2879 4658 4568\n\t\tf 3 7030 7031 -7030\n\t\tmu 0 3 4568 1756 2879\n\t\tf 3 -7032 7032 7033\n\t\tmu 0 3 2879 1756 679\n\t\tf 3 7034 7035 -7034\n\t\tmu 0 3 679 6513 2879\n\t\tf 3 -7035 7036 7037\n\t\tmu 0 3 6513 679 4938\n\t\tf 3 7038 7039 -7038\n\t\tmu 0 3 4938 4778 6513\n\t\tf 3 7040 -7039 7041\n\t\tmu 0 3 5879 4778 4938\n\t\tf 3 7042 7043 -7042\n\t\tmu 0 3 4938 1194 5879\n\t\tf 3 7044 -7044 7045\n\t\tmu 0 3 1577 5879 1194\n\t\tf 3 7046 7047 -7046\n\t\tmu 0 3 1194 2764 1577\n\t\tf 3 -7048 7048 7049\n\t\tmu 0 3 1577 2764 1612\n\t\tf 3 7050 7051 -7050\n\t\tmu 0 3 1612 2641 1577\n\t\tf 3 -7051 7052 7053\n\t\tmu 0 3 2641 1612 3069\n\t\tf 3 7054 7055 -7054\n\t\tmu 0 3 3069 4512 2641\n\t\tf 3 -7055 7056 7057\n\t\tmu 0 3 4512 3069 481\n\t\tf 3 7058 7059 -7058\n\t\tmu 0 3 481 1005 4512\n\t\tf 3 -7059 7060 7061\n\t\tmu 0 3 1005 481 896\n\t\tf 3 7062 7063 -7062\n\t\tmu 0 3 896 2295 1005\n\t\tf 3 -7063 7064 7065\n\t\tmu 0 3 2295 896 4533\n\t\tf 3 7066 7067 -7066\n\t\tmu 0 3 4533 3700 2295\n\t\tf 3 -7067 7068 7069\n\t\tmu 0 3 3700 4533 4655\n\t\tf 3 7070 7071 -7070\n\t\tmu 0 3 4655 53 3700\n\t\tf 3 -7071 7072 7073\n\t\tmu 0 3 53 4655 2427\n\t\tf 3 7074 7075 -7074\n\t\tmu 0 3 2427 2497 53\n\t\tf 3 -7075 7076 7077\n\t\tmu 0 3 2497 2427 2343\n\t\tf 3 -6809 7078 -7078\n\t\tmu 0 3 2343 369 2497\n\t\tf 3 7079 7080 7081\n\t\tmu 0 3 5818 12290 12291\n\t\tf 3 7082 7083 -7082\n\t\tmu 0 3 12292 558 5818\n\t\tf 3 -7083 7084 7085\n\t\tmu 0 3 558 12293 12294\n\t\tf 3 7086 7087 -7086\n\t\tmu 0 3 12295 4304 558\n\t\tf 3 7088 7089 7090\n\t\tmu 0 3 2584 926 3786\n\t\tf 3 7091 7092 -7091\n\t\tmu 0 3 3786 3571 2584\n\t\tf 3 -7092 7093 7094\n\t\tmu 0 3 3571 3786 5224\n\t\tf 3 7095 7096 -7095\n\t\tmu 0 3 5224 4237 3571\n\t\tf 3 -7096 7097 7098\n\t\tmu 0 3 4237 5224 4569\n\t\tf 3 7099 7100 -7099\n\t\tmu 0 3 4569 4898 4237\n\t\tf 3 -7100 7101 7102\n\t\tmu 0 3 4898 4569 5304\n\t\tf 3 7103 7104 -7103\n\t\tmu 0 3 5304 215 4898\n\t\tf 3 -7104 7105 7106\n\t\tmu 0 3 215 5304 2431\n\t\tf 3 7107 7108 -7107\n\t\tmu 0 3 2431 5275 215\n\t\tf 3 7109 -7108 7110\n\t\tmu 0 3 4379 5275 2431\n\t\tf 3 7111 7112 -7111\n\t\tmu 0 3 2431 124 4379\n\t\tf 3 -7113 7113 7114\n\t\tmu 0 3 4379 124 4545\n\t\tf 3 7115 7116 -7115\n\t\tmu 0 3 4545 3224 4379\n\t\tf 3 7117 -7116 7118\n\t\tmu 0 3 6102 3224 4545\n\t\tf 3 7119 7120 -7119\n\t\tmu 0 3 4545 515 6102\n\t\tf 3 -7121 7121 7122\n\t\tmu 0 3 6102 515 2135\n\t\tf 3 7123 7124 -7123\n\t\tmu 0 3 2135 2786 6102\n\t\tf 3 -7124 7125 7126\n\t\tmu 0 3 2786 2135 1218\n\t\tf 3 7127 7128 -7127\n\t\tmu 0 3 1218 2904 2786\n\t\tf 3 7129 -7128 7130\n\t\tmu 0 3 2787 2904 1218\n\t\tf 3 7131 7132 -7131\n\t\tmu 0 3 1218 1748 2787\n\t\tf 3 -7047 -7133 7133\n\t\tmu 0 3 4571 2787 1748\n\t\tf 3 7134 7135 -7134\n\t\tmu 0 3 1748 4182 4571\n\t\tf 3 -7136 7136 7137\n\t\tmu 0 3 4571 4182 3923\n\t\tf 3 7138 7139 -7138\n\t\tmu 0 3 3923 2594 4571\n\t\tf 3 -7139 7140 7141\n\t\tmu 0 3 2594 3923 4308\n\t\tf 3 7142 7143 -7142\n\t\tmu 0 3 4308 4464 2594\n\t\tf 3 7144 7145 7146\n\t\tmu 0 3 12296 12297 3464\n\t\tf 3 7147 7148 -7147\n\t\tmu 0 3 3464 5476 12298\n\t\tf 3 -7148 7149 7150\n\t\tmu 0 3 5476 3464 5733\n\t\tf 3 7151 7152 -7151\n\t\tmu 0 3 5733 5993 5476\n\t\tf 3 -7152 7153 7154\n\t\tmu 0 3 5993 5733 791\n\t\tf 3 7155 7156 -7155\n\t\tmu 0 3 791 1251 5993\n\t\tf 3 -7156 7157 7158\n\t\tmu 0 3 1251 791 2788\n\t\tf 3 7159 7160 -7159\n\t\tmu 0 3 2788 2016 1251\n\t\tf 3 7161 -7160 7162\n\t\tmu 0 3 3708 2016 2788\n\t\tf 3 7163 7164 -7163\n\t\tmu 0 3 2788 1560 3708\n\t\tf 3 -7165 7165 7166\n\t\tmu 0 3 3708 1560 2571\n\t\tf 3 7167 7168 -7167\n\t\tmu 0 3 2571 2132 3708\n\t\tf 3 -7168 7169 7170\n\t\tmu 0 3 2132 2571 6320\n\t\tf 3 7171 7172 -7171\n\t\tmu 0 3 6320 2166 2132\n\t\tf 3 7173 7174 7175\n\t\tmu 0 3 12299 12300 12301\n\t\tf 3 7176 7177 -7176\n\t\tmu 0 3 12302 12303 12304\n\t\tf 3 -7174 7178 7179\n\t\tmu 0 3 12305 12306 12307\n\t\tf 3 7180 7181 -7180\n\t\tmu 0 3 12308 12309 12310\n\t\tf 3 7182 7183 7184\n\t\tmu 0 3 12311 12312 12313\n\t\tf 3 7185 7186 -7185\n\t\tmu 0 3 12314 12315 12316\n\t\tf 3 7187 -7184 7188\n\t\tmu 0 3 12317 12318 12319\n\t\tf 3 7189 7190 -7189\n\t\tmu 0 3 12320 12321 12322\n\t\tf 3 7191 7192 7193\n\t\tmu 0 3 12323 12324 12325\n\t\tf 3 7194 7195 -7194\n\t\tmu 0 3 12326 12327 12328\n\t\tf 3 7196 7197 7198\n\t\tmu 0 3 12329 12330 12331\n\t\tf 3 7199 7200 -7199\n\t\tmu 0 3 12332 12333 12334\n\t\tf 3 7201 -7198 7202\n\t\tmu 0 3 12335 12336 12337\n\t\tf 3 7203 7204 -7203\n\t\tmu 0 3 12338 12339 12340\n\t\tf 3 7205 7206 7207\n\t\tmu 0 3 12341 12342 12343\n\t\tf 3 7208 7209 -7208\n\t\tmu 0 3 12344 12345 12346\n\t\tf 3 7210 7211 7212\n\t\tmu 0 3 1246 3083 1663\n\t\tf 3 7213 7214 -7213\n\t\tmu 0 3 1663 4614 1246\n\t\tf 3 -7212 7215 7216\n\t\tmu 0 3 1663 3083 3816\n\t\tf 3 7217 7218 -7217\n\t\tmu 0 3 3816 349 1663\n\t\tf 3 7219 -7211 7220\n\t\tmu 0 3 5696 3083 1246\n\t\tf 3 -7216 -7220 7221\n\t\tmu 0 3 3816 3083 5696\n\t\tf 3 7222 7223 -7221\n\t\tmu 0 3 1246 1097 5696\n\t\tf 3 -7224 7224 7225\n\t\tmu 0 3 5696 1097 5318\n\t\tf 3 7226 7227 -7226\n\t\tmu 0 3 5318 4634 5696\n\t\tf 3 -7228 7228 7229\n\t\tmu 0 3 5696 4634 2817\n\t\tf 3 7230 7231 -7230\n\t\tmu 0 3 2817 2423 5696\n\t\tf 3 -7232 7232 -7222\n\t\tmu 0 3 5696 2423 3816\n\t\tf 3 7233 -7231 7234\n\t\tmu 0 3 3560 2423 2817\n\t\tf 3 -7233 -7234 7235\n\t\tmu 0 3 3816 2423 3560\n\t\tf 3 7236 7237 -7235\n\t\tmu 0 3 2817 4097 3560\n\t\tf 3 7238 -7218 7239\n\t\tmu 0 3 3274 349 3816\n\t\tf 3 7240 7241 -7240\n\t\tmu 0 3 3816 4475 3274\n\t\tf 3 7242 -7241 -7236\n\t\tmu 0 3 3560 4475 3816\n\t\tf 3 7243 7244 7245\n\t\tmu 0 3 5688 12347 12348\n\t\tf 3 7246 7247 -7246\n\t\tmu 0 3 12349 3877 5688\n\t\tf 3 -7244 7248 7249\n\t\tmu 0 3 12350 5688 3259\n\t\tf 3 7250 7251 -7250\n\t\tmu 0 3 3259 12351 12352\n\t\tf 3 7252 -7251 7253\n\t\tmu 0 3 12353 12354 3259\n\t\tf 3 7254 7255 -7254\n\t\tmu 0 3 3259 1552 12355\n\t\tf 3 7256 7257 7258\n\t\tmu 0 3 1608 1455 3398\n\t\tf 3 -7259 7259 7260\n\t\tmu 0 3 1608 3398 1980\n\t\tf 3 7261 -7261 7262\n\t\tmu 0 3 4572 1608 1980\n\t\tf 3 7263 7264 7265\n\t\tmu 0 3 2772 1961 3697\n\t\tf 3 -7266 7266 7267\n\t\tmu 0 3 2772 3697 4162\n\t\tf 3 7268 7269 -7267\n\t\tmu 0 3 3697 1223 4162\n\t\tf 3 7270 7271 7272\n\t\tmu 0 3 5141 3335 3076\n\t\tf 3 7273 -7273 7274\n\t\tmu 0 3 1302 5141 3076\n\t\tf 3 -7274 7275 7276\n\t\tmu 0 3 5141 1302 2127\n\t\tf 3 7277 -7277 7278\n\t\tmu 0 3 728 5141 2127\n\t\tf 3 -7278 7279 7280\n\t\tmu 0 3 5141 728 2997\n\t\tf 3 7281 -7281 7282\n\t\tmu 0 3 5649 5141 2997\n\t\tf 3 -7282 7283 7284\n\t\tmu 0 3 5141 5649 1514\n\t\tf 3 7285 -7285 7286\n\t\tmu 0 3 944 5141 1514\n\t\tf 3 -7286 7287 7288\n\t\tmu 0 3 5141 944 5361\n\t\tf 3 -7271 -7289 7289\n\t\tmu 0 3 3335 5141 5361\n\t\tf 3 7290 7291 7292\n\t\tmu 0 3 1742 3512 1528\n\t\tf 3 7293 7294 -7293\n\t\tmu 0 3 1528 4796 1742\n\t\tf 3 7295 7296 7297\n\t\tmu 0 3 2656 12356 12357\n\t\tf 3 7298 7299 -7298\n\t\tmu 0 3 12358 6459 2656\n\t\tf 3 7300 7301 7302\n\t\tmu 0 3 12359 12360 1743\n\t\tf 3 7303 7304 -7303\n\t\tmu 0 3 1743 3513 12361\n\t\tf 3 7305 7306 7307\n\t\tmu 0 3 12362 12363 3380\n\t\tf 3 7308 7309 -7308\n\t\tmu 0 3 3380 5941 12364\n\t\tf 3 7310 7311 7312\n\t\tmu 0 3 12365 12366 1000\n\t\tf 3 7313 7314 -7313\n\t\tmu 0 3 1000 1523 12367\n\t\tf 3 7315 7316 7317\n\t\tmu 0 3 12368 12369 2657\n\t\tf 3 7318 7319 -7318\n\t\tmu 0 3 2657 5050 12370\n\t\tf 3 7320 7321 7322\n\t\tmu 0 3 12371 12372 3153\n\t\tf 3 7323 7324 -7323\n\t\tmu 0 3 3153 4800 12373\n\t\tf 3 7325 7326 7327\n\t\tmu 0 3 12374 12375 571\n\t\tf 3 7328 7329 -7328\n\t\tmu 0 3 571 1525 12376\n\t\tf 3 7330 7331 7332\n\t\tmu 0 3 12377 12378 4403\n\t\tf 3 7333 7334 -7333\n\t\tmu 0 3 4403 1524 12379\n\t\tf 3 7335 7336 7337\n\t\tmu 0 3 12380 12381 2236\n\t\tf 3 7338 7339 -7338\n\t\tmu 0 3 2236 3970 12382\n\t\tf 3 7340 7341 7342\n\t\tmu 0 3 425 2303 453\n\t\tf 3 7343 7344 -7343\n\t\tmu 0 3 453 4684 425\n\t\tf 3 7345 7346 7347\n\t\tmu 0 3 12383 12384 58\n\t\tf 3 7348 7349 -7348\n\t\tmu 0 3 58 1307 12385\n\t\tf 3 7350 7351 7352\n\t\tmu 0 3 12386 12387 6365\n\t\tf 3 7353 7354 -7353\n\t\tmu 0 3 6365 680 12388\n\t\tf 3 7355 7356 7357\n\t\tmu 0 3 12389 12390 3480\n\t\tf 3 7358 7359 -7358\n\t\tmu 0 3 3480 4163 12391\n\t\tf 3 7360 7361 7362\n\t\tmu 0 3 12392 12393 2494\n\t\tf 3 7363 7364 -7363\n\t\tmu 0 3 2494 3305 12394\n\t\tf 3 7365 7366 7367\n\t\tmu 0 3 12395 12396 4433\n\t\tf 3 7368 7369 -7368\n\t\tmu 0 3 4433 464 12397\n\t\tf 3 7370 7371 7372\n\t\tmu 0 3 12398 12399 2279\n\t\tf 3 7373 7374 -7373\n\t\tmu 0 3 2279 4883 12400\n\t\tf 3 7375 7376 7377\n\t\tmu 0 3 12401 12402 71\n\t\tf 3 7378 7379 -7378\n\t\tmu 0 3 71 681 12403\n\t\tf 3 7380 7381 7382\n\t\tmu 0 3 12404 12405 1936\n\t\tf 3 7383 7384 -7383\n\t\tmu 0 3 1936 2499 12406\n\t\tf 3 7385 7386 7387\n\t\tmu 0 3 12407 12408 4931\n\t\tf 3 7388 7389 -7388\n\t\tmu 0 3 4931 4049 12409\n\t\tf 3 7390 7391 7392\n\t\tmu 0 3 12410 12411 12412\n\t\tf 3 7393 7394 -7393\n\t\tmu 0 3 12413 12414 12415\n\t\tf 3 7395 -7392 7396\n\t\tmu 0 3 12416 12417 12418\n\t\tf 3 7397 7398 -7397\n\t\tmu 0 3 12419 12420 12421\n\t\tf 3 -7394 7399 7400\n\t\tmu 0 3 12422 12423 12424\n\t\tf 3 -7400 -7396 7401\n\t\tmu 0 3 12425 12426 12427\n\t\tf 3 7402 7403 -7401\n\t\tmu 0 3 12428 12429 12430\n\t\tf 3 7404 -7403 7405\n\t\tmu 0 3 12431 12432 12433\n\t\tf 3 7406 7407 -7406\n\t\tmu 0 3 12434 12435 12436\n\t\tf 3 7408 -7407 7409\n\t\tmu 0 3 12437 12438 12439\n\t\tf 3 7410 7411 -7410\n\t\tmu 0 3 12440 12441 12442\n\t\tf 3 7412 -7411 -7402\n\t\tmu 0 3 12443 12444 12445\n\t\tf 3 -7412 7413 7414\n\t\tmu 0 3 12446 12447 12448\n\t\tf 3 -7414 -7413 7415\n\t\tmu 0 3 12449 12450 12451\n\t\tf 3 7416 7417 -7415\n\t\tmu 0 3 12452 12453 12454\n\t\tf 3 -7399 7418 7419\n\t\tmu 0 3 12455 12456 12457\n\t\tf 3 7420 7421 -7420\n\t\tmu 0 3 12458 12459 12460\n\t\tf 3 -7422 7422 -7416\n\t\tmu 0 3 12461 12462 12463\n\t\tf 3 7423 7424 7425\n\t\tmu 0 3 12464 12465 12466\n\t\tf 3 7426 7427 -7426\n\t\tmu 0 3 12467 12468 12469;\n\tsetAttr \".fc[4000:4499]\"\n\t\tf 3 -7424 7428 7429\n\t\tmu 0 3 12470 12471 12472\n\t\tf 3 7430 7431 -7430\n\t\tmu 0 3 12473 12474 12475\n\t\tf 3 -7431 7432 7433\n\t\tmu 0 3 12476 12477 12478\n\t\tf 3 7434 7435 -7434\n\t\tmu 0 3 12479 12480 12481\n\t\tf 3 7436 7437 7438\n\t\tmu 0 3 12482 12483 12484\n\t\tf 3 -7439 7439 7440\n\t\tmu 0 3 12485 12486 12487\n\t\tf 3 -7441 7441 7442\n\t\tmu 0 3 12488 12489 12490\n\t\tf 3 7443 7444 7445\n\t\tmu 0 3 12491 12492 12493\n\t\tf 3 -7446 7446 7447\n\t\tmu 0 3 12494 12495 12496\n\t\tf 3 -7448 7448 7449\n\t\tmu 0 3 12497 12498 12499\n\t\tf 3 7450 7451 7452\n\t\tmu 0 3 12500 12501 12502\n\t\tf 3 7453 -7451 7454\n\t\tmu 0 3 12503 12504 12505\n\t\tf 3 7455 7456 -7455\n\t\tmu 0 3 12506 12507 12508\n\t\tf 3 7457 -7456 7458\n\t\tmu 0 3 12509 12510 12511\n\t\tf 3 7459 7460 -7459\n\t\tmu 0 3 12512 12513 12514\n\t\tf 3 7461 -7460 7462\n\t\tmu 0 3 12515 12516 12517\n\t\tf 3 7463 7464 -7463\n\t\tmu 0 3 12518 12519 12520\n\t\tf 3 7465 -7464 7466\n\t\tmu 0 3 12521 12522 12523\n\t\tf 3 7467 7468 -7467\n\t\tmu 0 3 12524 12525 12526\n\t\tf 3 7469 -7468 -7453\n\t\tmu 0 3 12527 12528 12529\n\t\tf 3 7470 7471 7472\n\t\tmu 0 3 12530 12531 12532\n\t\tf 3 7473 7474 -7473\n\t\tmu 0 3 12533 12534 12535\n\t\tf 3 7475 7476 7477\n\t\tmu 0 3 12536 12537 12538\n\t\tf 3 7478 7479 -7478\n\t\tmu 0 3 12539 12540 12541\n\t\tf 3 7480 7481 7482\n\t\tmu 0 3 12542 12543 12544\n\t\tf 3 7483 7484 -7483\n\t\tmu 0 3 12545 12546 12547\n\t\tf 3 7485 7486 7487\n\t\tmu 0 3 12548 12549 12550\n\t\tf 3 7488 7489 -7488\n\t\tmu 0 3 12551 12552 12553\n\t\tf 3 7490 7491 7492\n\t\tmu 0 3 12554 12555 12556\n\t\tf 3 7493 7494 -7493\n\t\tmu 0 3 12557 12558 12559\n\t\tf 3 7495 7496 7497\n\t\tmu 0 3 12560 12561 12562\n\t\tf 3 7498 7499 -7498\n\t\tmu 0 3 12563 12564 12565\n\t\tf 3 7500 7501 7502\n\t\tmu 0 3 12566 12567 12568\n\t\tf 3 7503 7504 -7503\n\t\tmu 0 3 12569 12570 12571\n\t\tf 3 7505 7506 7507\n\t\tmu 0 3 12572 12573 12574\n\t\tf 3 7508 7509 -7508\n\t\tmu 0 3 12575 12576 12577\n\t\tf 3 7510 7511 7512\n\t\tmu 0 3 12578 12579 12580\n\t\tf 3 7513 7514 -7513\n\t\tmu 0 3 12581 12582 12583\n\t\tf 3 7515 7516 7517\n\t\tmu 0 3 12584 12585 12586\n\t\tf 3 7518 7519 -7518\n\t\tmu 0 3 12587 12588 12589\n\t\tf 3 7520 7521 7522\n\t\tmu 0 3 12590 12591 12592\n\t\tf 3 7523 7524 -7523\n\t\tmu 0 3 12593 12594 12595\n\t\tf 3 7525 7526 7527\n\t\tmu 0 3 12596 12597 12598\n\t\tf 3 7528 7529 -7528\n\t\tmu 0 3 12599 12600 12601\n\t\tf 3 7530 7531 7532\n\t\tmu 0 3 12602 12603 12604\n\t\tf 3 7533 7534 -7533\n\t\tmu 0 3 12605 12606 12607\n\t\tf 3 7535 7536 7537\n\t\tmu 0 3 12608 12609 12610\n\t\tf 3 7538 7539 -7538\n\t\tmu 0 3 12611 12612 12613\n\t\tf 3 7540 7541 7542\n\t\tmu 0 3 12614 12615 12616\n\t\tf 3 7543 7544 -7543\n\t\tmu 0 3 12617 12618 12619\n\t\tf 3 7545 7546 7547\n\t\tmu 0 3 12620 12621 12622\n\t\tf 3 7548 7549 -7548\n\t\tmu 0 3 12623 12624 12625\n\t\tf 3 7550 7551 7552\n\t\tmu 0 3 12626 12627 12628\n\t\tf 3 7553 7554 -7553\n\t\tmu 0 3 12629 12630 12631\n\t\tf 3 7555 7556 7557\n\t\tmu 0 3 12632 12633 12634\n\t\tf 3 7558 7559 -7558\n\t\tmu 0 3 12635 12636 12637\n\t\tf 3 7560 7561 7562\n\t\tmu 0 3 12638 12639 12640\n\t\tf 3 7563 7564 -7563\n\t\tmu 0 3 12641 12642 12643\n\t\tf 3 7565 7566 7567\n\t\tmu 0 3 12644 12645 12646\n\t\tf 3 7568 7569 -7568\n\t\tmu 0 3 12647 12648 12649\n\t\tf 3 7570 7571 7572\n\t\tmu 0 3 6152 4744 6401\n\t\tf 3 7573 7574 -7573\n\t\tmu 0 3 6401 5104 6152\n\t\tf 3 7575 -7575 7576\n\t\tmu 0 3 1182 6152 5104\n\t\tf 3 7577 7578 -7577\n\t\tmu 0 3 5104 1111 1182\n\t\tf 3 -7576 7579 7580\n\t\tmu 0 3 6152 1182 4927\n\t\tf 3 7581 7582 -7581\n\t\tmu 0 3 4927 6436 6152\n\t\tf 3 -7571 7583 7584\n\t\tmu 0 3 4744 6152 12650\n\t\tf 3 7585 7586 -7585\n\t\tmu 0 3 12651 3026 4744\n\t\tf 3 7587 -7582 7588\n\t\tmu 0 3 29 6436 4927\n\t\tf 3 7589 7590 -7589\n\t\tmu 0 3 4927 1221 29\n\t\tf 3 7591 -7586 7592\n\t\tmu 0 3 5492 3026 12652\n\t\tf 3 7593 7594 -7593\n\t\tmu 0 3 12653 12654 5492\n\t\tf 3 -7574 7595 7596\n\t\tmu 0 3 5104 6401 338\n\t\tf 3 7597 7598 -7597\n\t\tmu 0 3 338 2911 5104\n\t\tf 3 -7578 -7599 7599\n\t\tmu 0 3 1111 5104 2911\n\t\tf 3 7600 7601 -7600\n\t\tmu 0 3 2911 5407 1111\n\t\tf 3 7602 -7598 7603\n\t\tmu 0 3 1795 2911 338\n\t\tf 3 7604 7605 -7604\n\t\tmu 0 3 338 2550 1795\n\t\tf 3 7606 -7601 7607\n\t\tmu 0 3 2410 5407 2911\n\t\tf 3 -7603 7608 -7608\n\t\tmu 0 3 2911 1795 2410\n\t\tf 3 7609 7610 7611\n\t\tmu 0 3 846 4927 12655\n\t\tf 3 7612 7613 -7612\n\t\tmu 0 3 12656 2479 846\n\t\tf 3 -7613 7614 7615\n\t\tmu 0 3 2479 12657 1111\n\t\tf 3 7616 7617 7618\n\t\tmu 0 3 3218 12658 12659\n\t\tf 3 7619 7620 -7619\n\t\tmu 0 3 12660 2882 3218\n\t\tf 3 -7620 7621 7622\n\t\tmu 0 3 2882 12661 2319\n\t\tf 3 7623 7624 -7616\n\t\tmu 0 3 1111 12662 2479\n\t\tf 3 -7624 -7602 7625\n\t\tmu 0 3 12663 1111 5407\n\t\tf 3 7626 7627 -7623\n\t\tmu 0 3 2319 5628 2882\n\t\tf 3 -7617 7628 7629\n\t\tmu 0 3 12664 3218 3434\n\t\tf 3 7630 7631 -7630\n\t\tmu 0 3 3434 5568 12665\n\t\tf 3 -7610 7632 7633\n\t\tmu 0 3 4927 846 12666\n\t\tf 3 7634 -7590 -7634\n\t\tmu 0 3 12667 1221 4927\n\t\tf 3 7635 7636 -7626\n\t\tmu 0 3 5407 4750 12668\n\t\tf 3 -7627 7637 7638\n\t\tmu 0 3 5628 2319 4750\n\t\tf 3 -7636 -7607 7639\n\t\tmu 0 3 4750 5407 2410\n\t\tf 3 7640 7641 -7639\n\t\tmu 0 3 4750 1873 5628\n\t\tf 3 7642 7643 -7640\n\t\tmu 0 3 2410 1312 4750\n\t\tf 3 -7641 -7644 7644\n\t\tmu 0 3 1873 4750 1312\n\t\tf 3 7645 7646 -7645\n\t\tmu 0 3 1312 5033 1873\n\t\tf 3 7647 7648 7649\n\t\tmu 0 3 12669 12670 6252\n\t\tf 3 7650 7651 7652\n\t\tmu 0 3 2224 12671 12672\n\t\tf 3 7653 7654 -7653\n\t\tmu 0 3 12673 12674 2224\n\t\tf 3 7655 7656 7657\n\t\tmu 0 3 3476 12675 12676\n\t\tf 3 7658 7659 -7658\n\t\tmu 0 3 12677 12678 3476\n\t\tf 3 7660 -7660 7661\n\t\tmu 0 3 424 3476 12679\n\t\tf 3 7662 7663 -7662\n\t\tmu 0 3 12680 12681 424\n\t\tf 3 7664 -7664 7665\n\t\tmu 0 3 4782 424 12682\n\t\tf 3 7666 7667 -7666\n\t\tmu 0 3 12683 12684 4782\n\t\tf 3 7668 -7668 7669\n\t\tmu 0 3 2611 4782 12685\n\t\tf 3 7670 7671 -7670\n\t\tmu 0 3 12686 12687 2611\n\t\tf 3 7672 -7672 7673\n\t\tmu 0 3 1941 2611 12688\n\t\tf 3 7674 7675 -7674\n\t\tmu 0 3 12689 12690 1941\n\t\tf 3 7676 7677 -7650\n\t\tmu 0 3 6252 72 12691\n\t\tf 3 7678 7679 7680\n\t\tmu 0 3 12692 12693 12694\n\t\tf 3 7681 -7676 7682\n\t\tmu 0 3 2200 1941 12695\n\t\tf 3 7683 7684 -7683\n\t\tmu 0 3 12696 5492 2200\n\t\tf 3 7685 -7685 7686\n\t\tmu 0 3 2338 2200 5492\n\t\tf 3 -7595 7687 -7687\n\t\tmu 0 3 5492 12697 2338\n\t\tf 3 7688 7689 7690\n\t\tmu 0 3 3290 12698 12699\n\t\tf 3 7691 7692 -7691\n\t\tmu 0 3 12700 12701 3290\n\t\tf 3 7693 7694 7695\n\t\tmu 0 3 921 12702 12703\n\t\tf 3 7696 7697 -7696\n\t\tmu 0 3 12704 12705 921\n\t\tf 3 7698 7699 7700\n\t\tmu 0 3 5349 12706 5568\n\t\tf 3 -7631 7701 -7701\n\t\tmu 0 3 5568 3434 5349\n\t\tf 3 7702 -7702 7703\n\t\tmu 0 3 3894 5349 3434\n\t\tf 3 7704 7705 -7704\n\t\tmu 0 3 3434 12707 3894\n\t\tf 3 7706 -7706 7707\n\t\tmu 0 3 4171 3894 12708\n\t\tf 3 7708 7709 -7708\n\t\tmu 0 3 12709 12710 4171\n\t\tf 3 -7710 7710 7711\n\t\tmu 0 3 4171 12711 12712\n\t\tf 3 7712 7713 -7712\n\t\tmu 0 3 12713 4784 4171\n\t\tf 3 -7713 7714 7715\n\t\tmu 0 3 4784 12714 12715\n\t\tf 3 7716 7717 -7716\n\t\tmu 0 3 12716 718 4784\n\t\tf 3 7718 -7717 7719\n\t\tmu 0 3 5874 718 12717\n\t\tf 3 7720 7721 -7720\n\t\tmu 0 3 12718 12719 5874\n\t\tf 3 7722 -7722 -7681\n\t\tmu 0 3 12720 5874 12721\n\t\tf 3 7723 7724 7725\n\t\tmu 0 3 3123 255 536\n\t\tf 3 7726 7727 -7726\n\t\tmu 0 3 536 2391 3123\n\t\tf 3 7728 -7728 7729\n\t\tmu 0 3 27 3123 2391\n\t\tf 3 7730 7731 -7730\n\t\tmu 0 3 2391 4299 27\n\t\tf 3 7732 -7732 7733\n\t\tmu 0 3 4018 27 4299\n\t\tf 3 7734 7735 -7734\n\t\tmu 0 3 4299 5034 4018\n\t\tf 3 7736 -7736 7737\n\t\tmu 0 3 4668 4018 5034\n\t\tf 3 7738 7739 -7738\n\t\tmu 0 3 5034 3736 4668\n\t\tf 3 7740 -7740 7741\n\t\tmu 0 3 4628 4668 3736\n\t\tf 3 7742 7743 -7742\n\t\tmu 0 3 3736 1328 4628\n\t\tf 3 7744 -7744 7745\n\t\tmu 0 3 3119 4628 1328\n\t\tf 3 7746 7747 -7746\n\t\tmu 0 3 1328 4693 3119\n\t\tf 3 7748 -7748 7749\n\t\tmu 0 3 6470 3119 4693\n\t\tf 3 7750 7751 -7750\n\t\tmu 0 3 4693 658 6470\n\t\tf 3 7752 -7752 7753\n\t\tmu 0 3 1106 6470 658\n\t\tf 3 7754 7755 -7754\n\t\tmu 0 3 658 2542 1106\n\t\tf 3 7756 -7756 7757\n\t\tmu 0 3 1001 1106 2542\n\t\tf 3 7758 7759 -7758\n\t\tmu 0 3 2542 1317 1001\n\t\tf 3 7760 -7760 7761\n\t\tmu 0 3 1927 1001 1317\n\t\tf 3 7762 7763 -7762\n\t\tmu 0 3 1317 6451 1927\n\t\tf 3 7764 -7764 7765\n\t\tmu 0 3 4480 1927 6451\n\t\tf 3 7766 7767 -7766\n\t\tmu 0 3 6451 3499 4480\n\t\tf 3 7768 -7768 7769\n\t\tmu 0 3 3863 4480 3499\n\t\tf 3 7770 7771 -7770\n\t\tmu 0 3 3499 1958 3863\n\t\tf 3 7772 -7772 7773\n\t\tmu 0 3 4953 3863 1958\n\t\tf 3 7774 7775 -7774\n\t\tmu 0 3 1958 3924 4953\n\t\tf 3 7776 -7776 7777\n\t\tmu 0 3 1385 4953 3924\n\t\tf 3 7778 7779 -7778\n\t\tmu 0 3 3924 3947 1385\n\t\tf 3 7780 -7780 7781\n\t\tmu 0 3 2945 1385 3947\n\t\tf 3 7782 7783 -7782\n\t\tmu 0 3 3947 3127 2945\n\t\tf 3 7784 -7784 7785\n\t\tmu 0 3 2768 2945 3127\n\t\tf 3 7786 7787 -7786\n\t\tmu 0 3 3127 2612 2768\n\t\tf 3 7788 -7788 7789\n\t\tmu 0 3 3941 2768 2612\n\t\tf 3 7790 7791 -7790\n\t\tmu 0 3 2612 2272 3941\n\t\tf 3 7792 -7792 7793\n\t\tmu 0 3 255 3941 2272\n\t\tf 3 7794 -7725 -7794\n\t\tmu 0 3 2272 536 255\n\t\tf 3 7795 7796 7797\n\t\tmu 0 3 4972 1491 3632\n\t\tf 3 7798 7799 -7798\n\t\tmu 0 3 3632 3175 4972\n\t\tf 3 7800 -7800 7801\n\t\tmu 0 3 4954 4972 3175\n\t\tf 3 7802 7803 -7802\n\t\tmu 0 3 3175 5269 4954\n\t\tf 3 7804 -7804 7805\n\t\tmu 0 3 3966 4954 5269\n\t\tf 3 7806 7807 -7806\n\t\tmu 0 3 5269 3787 3966\n\t\tf 3 7808 -7808 7809\n\t\tmu 0 3 1303 3966 3787\n\t\tf 3 7810 7811 -7810\n\t\tmu 0 3 3787 1849 1303\n\t\tf 3 7812 -7812 7813\n\t\tmu 0 3 3775 1303 1849\n\t\tf 3 7814 7815 -7814\n\t\tmu 0 3 1849 4019 3775\n\t\tf 3 7816 -7816 7817\n\t\tmu 0 3 502 3775 4019\n\t\tf 3 7818 7819 -7818\n\t\tmu 0 3 4019 3173 502\n\t\tf 3 7820 -7820 7821\n\t\tmu 0 3 2048 502 3173\n\t\tf 3 7822 7823 -7822\n\t\tmu 0 3 3173 5936 2048\n\t\tf 3 7824 -7824 7825\n\t\tmu 0 3 2256 2048 5936\n\t\tf 3 7826 7827 -7826\n\t\tmu 0 3 5936 2107 2256\n\t\tf 3 7828 -7828 7829\n\t\tmu 0 3 454 2256 2107\n\t\tf 3 7830 7831 -7830\n\t\tmu 0 3 2107 4653 454\n\t\tf 3 7832 -7832 7833\n\t\tmu 0 3 2802 454 4653\n\t\tf 3 7834 7835 -7834\n\t\tmu 0 3 4653 1064 2802\n\t\tf 3 7836 -7836 7837\n\t\tmu 0 3 3168 2802 1064\n\t\tf 3 7838 7839 -7838\n\t\tmu 0 3 1064 2853 3168\n\t\tf 3 7840 -7840 7841\n\t\tmu 0 3 2781 3168 2853\n\t\tf 3 7842 7843 -7842\n\t\tmu 0 3 2853 1389 2781\n\t\tf 3 7844 -7844 7845\n\t\tmu 0 3 3400 2781 1389\n\t\tf 3 7846 7847 -7846\n\t\tmu 0 3 1389 1643 3400\n\t\tf 3 7848 -7848 7849\n\t\tmu 0 3 11 3400 1643\n\t\tf 3 7850 7851 -7850\n\t\tmu 0 3 1643 985 11\n\t\tf 3 7852 7853 7854\n\t\tmu 0 3 3295 12722 12723\n\t\tf 3 7855 7856 -7855\n\t\tmu 0 3 12724 4691 3295\n\t\tf 3 7857 7858 7859\n\t\tmu 0 3 5402 12725 12726\n\t\tf 3 7860 7861 -7860\n\t\tmu 0 3 12727 6467 5402\n\t\tf 3 7862 7863 7864\n\t\tmu 0 3 2586 12728 12729\n\t\tf 3 7865 7866 -7865\n\t\tmu 0 3 12730 483 2586\n\t\tf 3 7867 -7867 7868\n\t\tmu 0 3 1491 2586 483\n\t\tf 3 7869 -7797 -7869\n\t\tmu 0 3 483 3632 1491\n\t\tf 3 7870 7871 7872\n\t\tmu 0 3 12731 12732 2170\n\t\tf 3 7873 -7872 7874\n\t\tmu 0 3 1014 2170 12733\n\t\tf 3 7875 7876 -7875\n\t\tmu 0 3 12734 12735 1014\n\t\tf 3 7877 -7877 7878\n\t\tmu 0 3 1306 1014 12736\n\t\tf 3 7879 7880 -7879\n\t\tmu 0 3 12737 12738 1306\n\t\tf 3 7881 -7881 7882\n\t\tmu 0 3 3436 1306 12739\n\t\tf 3 7883 7884 -7883\n\t\tmu 0 3 12740 12741 3436\n\t\tf 3 7885 -7885 7886\n\t\tmu 0 3 1470 3436 12742\n\t\tf 3 7887 7888 -7887\n\t\tmu 0 3 12743 12744 1470\n\t\tf 3 7889 -7889 7890\n\t\tmu 0 3 5972 1470 12745\n\t\tf 3 7891 7892 -7891\n\t\tmu 0 3 12746 12747 5972\n\t\tf 3 7893 -7893 7894\n\t\tmu 0 3 1311 5972 12748\n\t\tf 3 7895 7896 -7895\n\t\tmu 0 3 12749 12750 1311\n\t\tf 3 7897 -7897 7898\n\t\tmu 0 3 5489 1311 12751\n\t\tf 3 7899 7900 -7899\n\t\tmu 0 3 12752 12753 5489\n\t\tf 3 7901 -7901 7902\n\t\tmu 0 3 5705 5489 12754\n\t\tf 3 7903 7904 -7903\n\t\tmu 0 3 12755 12756 5705\n\t\tf 3 7905 -7905 7906\n\t\tmu 0 3 6051 5705 12757\n\t\tf 3 7907 7908 -7907\n\t\tmu 0 3 12758 12759 6051\n\t\tf 3 7909 -7909 7910\n\t\tmu 0 3 1157 6051 12760\n\t\tf 3 7911 7912 -7911\n\t\tmu 0 3 12761 12762 1157\n\t\tf 3 7913 -7913 7914\n\t\tmu 0 3 1068 1157 12763\n\t\tf 3 7915 7916 -7915\n\t\tmu 0 3 12764 12765 1068\n\t\tf 3 7917 -7917 7918\n\t\tmu 0 3 2735 1068 12766\n\t\tf 3 7919 7920 -7919\n\t\tmu 0 3 12767 12768 2735\n\t\tf 3 7921 -7921 7922\n\t\tmu 0 3 5420 2735 12769\n\t\tf 3 7923 7924 -7923\n\t\tmu 0 3 12770 12771 5420\n\t\tf 3 7925 -7925 7926\n\t\tmu 0 3 2250 5420 12772\n\t\tf 3 7927 7928 -7927\n\t\tmu 0 3 12773 12774 2250\n\t\tf 3 7929 -7929 7930\n\t\tmu 0 3 2308 2250 12775\n\t\tf 3 7931 7932 -7931\n\t\tmu 0 3 12776 12777 2308\n\t\tf 3 7933 -7933 7934\n\t\tmu 0 3 1035 2308 12778\n\t\tf 3 7935 7936 -7935\n\t\tmu 0 3 12779 12780 1035\n\t\tf 3 7937 -7937 7938\n\t\tmu 0 3 4764 1035 12781\n\t\tf 3 7939 7940 -7939\n\t\tmu 0 3 12782 12783 4764\n\t\tf 3 7941 -7941 -7873\n\t\tmu 0 3 2170 4764 12784\n\t\tf 3 7942 7943 7944\n\t\tmu 0 3 1983 1999 785\n\t\tf 3 7945 7946 -7945\n\t\tmu 0 3 785 5835 1983\n\t\tf 3 -7947 7947 7948\n\t\tmu 0 3 1983 5835 2716\n\t\tf 3 7949 7950 -7949\n\t\tmu 0 3 2716 3854 1983\n\t\tf 3 7951 -7950 7952\n\t\tmu 0 3 795 3854 2716\n\t\tf 3 7953 7954 -7953\n\t\tmu 0 3 2716 3036 795\n\t\tf 3 7955 -7944 7956\n\t\tmu 0 3 4870 785 1999\n\t\tf 3 7957 7958 -7957\n\t\tmu 0 3 1999 112 4870\n\t\tf 3 7959 -7959 7960\n\t\tmu 0 3 5593 4870 112\n\t\tf 3 7961 7962 -7961\n\t\tmu 0 3 112 5638 5593\n\t\tf 3 7963 7964 7965\n\t\tmu 0 3 1236 12785 12786\n\t\tf 3 7966 7967 -7966\n\t\tmu 0 3 12787 1109 1236\n\t\tf 3 7968 7969 7970\n\t\tmu 0 3 6404 12788 12789\n\t\tf 3 7971 7972 -7971\n\t\tmu 0 3 12790 4565 6404\n\t\tf 3 7973 7974 7975\n\t\tmu 0 3 4546 12791 12792\n\t\tf 3 7976 7977 -7976\n\t\tmu 0 3 12793 673 4546\n\t\tf 3 7978 7979 7980\n\t\tmu 0 3 1058 12794 12795\n\t\tf 3 7981 7982 -7981\n\t\tmu 0 3 12796 2750 1058\n\t\tf 3 7983 7984 7985\n\t\tmu 0 3 6358 12797 12798\n\t\tf 3 7986 7987 -7986\n\t\tmu 0 3 12799 4735 6358\n\t\tf 3 7988 -7988 7989\n\t\tmu 0 3 6484 6358 4735\n\t\tf 3 7990 7991 -7990\n\t\tmu 0 3 4735 2021 6484\n\t\tf 3 7992 -7992 7993\n\t\tmu 0 3 6308 6484 2021\n\t\tf 3 7994 7995 -7994\n\t\tmu 0 3 2021 3678 6308\n\t\tf 3 7996 -7996 7997\n\t\tmu 0 3 3660 6308 3678\n\t\tf 3 7998 7999 -7998\n\t\tmu 0 3 3678 1352 3660\n\t\tf 3 8000 -8000 8001\n\t\tmu 0 3 3989 3660 1352\n\t\tf 3 8002 8003 -8002\n\t\tmu 0 3 1352 1984 3989\n\t\tf 3 8004 8005 8006\n\t\tmu 0 3 6003 12800 12801\n\t\tf 3 8007 8008 -8007\n\t\tmu 0 3 12802 6010 6003\n\t\tf 3 8009 8010 8011\n\t\tmu 0 3 2948 12803 12804\n\t\tf 3 8012 8013 -8012\n\t\tmu 0 3 12805 2840 2948\n\t\tf 3 8014 -8014 8015\n\t\tmu 0 3 6393 2948 2840\n\t\tf 3 8016 8017 -8016\n\t\tmu 0 3 2840 2851 6393\n\t\tf 3 8018 8019 8020\n\t\tmu 0 3 5012 12806 12807\n\t\tf 3 8021 8022 -8021\n\t\tmu 0 3 12808 5759 5012\n\t\tf 3 8023 8024 8025\n\t\tmu 0 3 12809 12810 12811\n\t\tf 3 8026 8027 -8026\n\t\tmu 0 3 12812 12813 12814\n\t\tf 3 -8024 8028 8029\n\t\tmu 0 3 12815 12816 12817\n\t\tf 3 8030 8031 -8030\n\t\tmu 0 3 12818 12819 12820\n\t\tf 3 8032 -8029 8033\n\t\tmu 0 3 12821 12822 12823\n\t\tf 3 8034 8035 -8034\n\t\tmu 0 3 12824 12825 12826\n\t\tf 3 8036 -8028 8037\n\t\tmu 0 3 12827 12828 12829\n\t\tf 3 8038 8039 -8038\n\t\tmu 0 3 12830 12831 12832\n\t\tf 3 -8036 8040 8041\n\t\tmu 0 3 12833 12834 12835\n\t\tf 3 8042 8043 -8042\n\t\tmu 0 3 12836 12837 12838\n\t\tf 3 8044 8045 8046\n\t\tmu 0 3 12839 12840 12841\n\t\tf 3 -8040 8047 -8047\n\t\tmu 0 3 12842 12843 12844\n\t\tf 3 8048 -8025 8049\n\t\tmu 0 3 12845 12846 12847\n\t\tf 3 8050 8051 -8050\n\t\tmu 0 3 12848 12849 12850\n\t\tf 3 -8051 -8032 8052\n\t\tmu 0 3 12851 12852 12853\n\t\tf 3 8053 8054 -8053\n\t\tmu 0 3 12854 12855 12856\n\t\tf 3 -8052 8055 8056\n\t\tmu 0 3 12857 12858 12859\n\t\tf 3 8057 8058 -8057\n\t\tmu 0 3 12860 12861 12862\n\t\tf 3 8059 -8056 8060\n\t\tmu 0 3 12863 12864 12865\n\t\tf 3 -8055 8061 -8061\n\t\tmu 0 3 12866 12867 12868\n\t\tf 3 8062 8063 8064\n\t\tmu 0 3 12869 12870 12871\n\t\tf 3 8065 8066 -8065\n\t\tmu 0 3 12872 12873 12874\n\t\tf 3 8067 -8067 8068\n\t\tmu 0 3 12875 12876 12877\n\t\tf 3 8069 8070 8071\n\t\tmu 0 3 12878 12879 12880\n\t\tf 3 8072 8073 -8072\n\t\tmu 0 3 12881 12882 12883\n\t\tf 3 8074 -8074 8075\n\t\tmu 0 3 12884 12885 12886\n\t\tf 3 8076 8077 -8069\n\t\tmu 0 3 12887 12888 12889\n\t\tf 3 -8054 -8078 8078\n\t\tmu 0 3 12890 12891 12892\n\t\tf 3 8079 8080 -8076\n\t\tmu 0 3 12893 12894 12895\n\t\tf 3 8081 -8071 8082\n\t\tmu 0 3 12896 12897 12898\n\t\tf 3 8083 8084 -8083\n\t\tmu 0 3 12899 12900 12901\n\t\tf 3 8085 -8064 8086\n\t\tmu 0 3 12902 12903 12904\n\t\tf 3 -8044 8087 -8087\n\t\tmu 0 3 12905 12906 12907\n\t\tf 3 8088 8089 -8079\n\t\tmu 0 3 12908 12909 12910\n\t\tf 3 8090 -8081 8091\n\t\tmu 0 3 12911 12912 12913\n\t\tf 3 -8062 -8090 8092\n\t\tmu 0 3 12914 12915 12916\n\t\tf 3 8093 8094 -8092\n\t\tmu 0 3 12917 12918 12919\n\t\tf 3 8095 8096 -8093\n\t\tmu 0 3 12920 12921 12922\n\t\tf 3 -8096 -8095 8097\n\t\tmu 0 3 12923 12924 12925\n\t\tf 3 8098 8099 -8098\n\t\tmu 0 3 12926 12927 12928\n\t\tf 3 8100 8101 8102\n\t\tmu 0 3 12929 12930 12931\n\t\tf 3 8103 8104 8105\n\t\tmu 0 3 12932 12933 12934\n\t\tf 3 8106 8107 -8106\n\t\tmu 0 3 12935 12936 12937\n\t\tf 3 8108 8109 8110\n\t\tmu 0 3 12938 12939 12940\n\t\tf 3 8111 8112 -8111\n\t\tmu 0 3 12941 12942 12943\n\t\tf 3 -8112 8113 8114\n\t\tmu 0 3 12944 12945 12946\n\t\tf 3 8115 8116 -8115\n\t\tmu 0 3 12947 12948 12949\n\t\tf 3 -8116 8117 8118\n\t\tmu 0 3 12950 12951 12952\n\t\tf 3 8119 8120 -8119\n\t\tmu 0 3 12953 12954 12955\n\t\tf 3 -8120 8121 8122\n\t\tmu 0 3 12956 12957 12958\n\t\tf 3 8123 8124 -8123\n\t\tmu 0 3 12959 12960 12961\n\t\tf 3 -8124 8125 8126\n\t\tmu 0 3 12962 12963 12964\n\t\tf 3 8127 8128 -8127\n\t\tmu 0 3 12965 12966 12967\n\t\tf 3 8129 8130 -8103\n\t\tmu 0 3 12968 12969 12970\n\t\tf 3 8131 8132 8133\n\t\tmu 0 3 12971 12972 12973\n\t\tf 3 -8128 8134 8135\n\t\tmu 0 3 12974 12975 12976\n\t\tf 3 8136 8137 -8136\n\t\tmu 0 3 12977 12978 12979\n\t\tf 3 -8137 8138 8139\n\t\tmu 0 3 12980 12981 12982\n\t\tf 3 8140 -8045 -8140\n\t\tmu 0 3 12983 12984 12985\n\t\tf 3 8141 8142 8143\n\t\tmu 0 3 12986 12987 12988\n\t\tf 3 8144 8145 -8144\n\t\tmu 0 3 12989 12990 12991\n\t\tf 3 8146 8147 8148\n\t\tmu 0 3 12992 12993 12994\n\t\tf 3 8149 8150 -8149\n\t\tmu 0 3 12995 12996 12997\n\t\tf 3 8151 8152 8153\n\t\tmu 0 3 12998 12999 13000\n\t\tf 3 8154 -8085 -8154\n\t\tmu 0 3 13001 13002 13003\n\t\tf 3 -8155 8155 8156\n\t\tmu 0 3 13004 13005 13006\n\t\tf 3 8157 8158 -8157\n\t\tmu 0 3 13007 13008 13009\n\t\tf 3 -8158 8159 8160\n\t\tmu 0 3 13010 13011 13012\n\t\tf 3 8161 8162 -8161\n\t\tmu 0 3 13013 13014 13015\n\t\tf 3 8163 -8162 8164\n\t\tmu 0 3 13016 13017 13018\n\t\tf 3 8165 8166 -8165\n\t\tmu 0 3 13019 13020 13021\n\t\tf 3 8167 -8167 8168\n\t\tmu 0 3 13022 13023 13024\n\t\tf 3 8169 8170 -8169\n\t\tmu 0 3 13025 13026 13027\n\t\tf 3 -8171 8171 8172\n\t\tmu 0 3 13028 13029 13030\n\t\tf 3 8173 8174 -8173\n\t\tmu 0 3 13031 13032 13033\n\t\tf 3 -8174 8175 -8134\n\t\tmu 0 3 13034 13035 13036\n\t\tf 3 8176 8177 8178\n\t\tmu 0 3 13037 13038 13039\n\t\tf 3 8179 8180 -8179\n\t\tmu 0 3 13040 13041 13042\n\t\tf 3 -8180 8181 8182\n\t\tmu 0 3 13043 13044 13045\n\t\tf 3 8183 8184 -8183\n\t\tmu 0 3 13046 13047 13048\n\t\tf 3 -8184 8185 8186\n\t\tmu 0 3 13049 13050 13051\n\t\tf 3 8187 8188 -8187\n\t\tmu 0 3 13052 13053 13054\n\t\tf 3 -8188 8189 8190\n\t\tmu 0 3 13055 13056 13057\n\t\tf 3 8191 8192 -8191\n\t\tmu 0 3 13058 13059 13060\n\t\tf 3 -8192 8193 8194\n\t\tmu 0 3 13061 13062 13063\n\t\tf 3 8195 8196 -8195\n\t\tmu 0 3 13064 13065 13066\n\t\tf 3 -8196 8197 8198\n\t\tmu 0 3 13067 13068 13069\n\t\tf 3 8199 8200 -8199\n\t\tmu 0 3 13070 13071 13072\n\t\tf 3 -8200 8201 8202\n\t\tmu 0 3 13073 13074 13075\n\t\tf 3 8203 8204 -8203\n\t\tmu 0 3 13076 13077 13078\n\t\tf 3 -8204 8205 8206\n\t\tmu 0 3 13079 13080 13081\n\t\tf 3 8207 8208 -8207\n\t\tmu 0 3 13082 13083 13084\n\t\tf 3 -8208 8209 8210\n\t\tmu 0 3 13085 13086 13087\n\t\tf 3 8211 8212 -8211\n\t\tmu 0 3 13088 13089 13090\n\t\tf 3 -8212 8213 8214\n\t\tmu 0 3 13091 13092 13093\n\t\tf 3 8215 8216 -8215\n\t\tmu 0 3 13094 13095 13096\n\t\tf 3 -8216 8217 8218\n\t\tmu 0 3 13097 13098 13099\n\t\tf 3 8219 8220 -8219\n\t\tmu 0 3 13100 13101 13102\n\t\tf 3 -8220 8221 8222\n\t\tmu 0 3 13103 13104 13105\n\t\tf 3 8223 8224 -8223\n\t\tmu 0 3 13106 13107 13108\n\t\tf 3 -8224 8225 8226\n\t\tmu 0 3 13109 13110 13111\n\t\tf 3 8227 8228 -8227\n\t\tmu 0 3 13112 13113 13114\n\t\tf 3 -8228 8229 8230\n\t\tmu 0 3 13115 13116 13117\n\t\tf 3 8231 8232 -8231\n\t\tmu 0 3 13118 13119 13120\n\t\tf 3 -8232 8233 8234\n\t\tmu 0 3 13121 13122 13123\n\t\tf 3 8235 8236 -8235\n\t\tmu 0 3 13124 13125 13126\n\t\tf 3 -8236 8237 8238\n\t\tmu 0 3 13127 13128 13129\n\t\tf 3 8239 8240 -8239\n\t\tmu 0 3 13130 13131 13132\n\t\tf 3 -8240 8241 8242\n\t\tmu 0 3 13133 13134 13135\n\t\tf 3 8243 8244 -8243\n\t\tmu 0 3 13136 13137 13138\n\t\tf 3 -8244 8245 8246\n\t\tmu 0 3 13139 13140 13141\n\t\tf 3 -8177 8247 -8247\n\t\tmu 0 3 13142 13143 13144\n\t\tf 3 8248 8249 8250\n\t\tmu 0 3 13145 13146 13147\n\t\tf 3 8251 8252 -8251\n\t\tmu 0 3 13148 13149 13150\n\t\tf 3 -8252 8253 8254\n\t\tmu 0 3 13151 13152 13153\n\t\tf 3 8255 8256 -8255\n\t\tmu 0 3 13154 13155 13156\n\t\tf 3 -8256 8257 8258\n\t\tmu 0 3 13157 13158 13159\n\t\tf 3 8259 8260 -8259\n\t\tmu 0 3 13160 13161 13162\n\t\tf 3 -8260 8261 8262\n\t\tmu 0 3 13163 13164 13165\n\t\tf 3 8263 8264 -8263\n\t\tmu 0 3 13166 13167 13168\n\t\tf 3 -8264 8265 8266\n\t\tmu 0 3 13169 13170 13171\n\t\tf 3 8267 8268 -8267\n\t\tmu 0 3 13172 13173 13174\n\t\tf 3 -8268 8269 8270\n\t\tmu 0 3 13175 13176 13177\n\t\tf 3 8271 8272 -8271\n\t\tmu 0 3 13178 13179 13180\n\t\tf 3 -8272 8273 8274\n\t\tmu 0 3 13181 13182 13183\n\t\tf 3 8275 8276 -8275\n\t\tmu 0 3 13184 13185 13186\n\t\tf 3 -8276 8277 8278\n\t\tmu 0 3 13187 13188 13189\n\t\tf 3 8279 8280 -8279\n\t\tmu 0 3 13190 13191 13192\n\t\tf 3 -8280 8281 8282\n\t\tmu 0 3 13193 13194 13195\n\t\tf 3 8283 8284 -8283\n\t\tmu 0 3 13196 13197 13198\n\t\tf 3 -8284 8285 8286\n\t\tmu 0 3 13199 13200 13201\n\t\tf 3 8287 8288 -8287\n\t\tmu 0 3 13202 13203 13204\n\t\tf 3 -8288 8289 8290\n\t\tmu 0 3 13205 13206 13207\n\t\tf 3 8291 8292 -8291\n\t\tmu 0 3 13208 13209 13210\n\t\tf 3 -8292 8293 8294\n\t\tmu 0 3 13211 13212 13213\n\t\tf 3 8295 8296 -8295\n\t\tmu 0 3 13214 13215 13216\n\t\tf 3 -8296 8297 8298\n\t\tmu 0 3 13217 13218 13219\n\t\tf 3 8299 8300 -8299\n\t\tmu 0 3 13220 13221 13222\n\t\tf 3 -8300 8301 8302\n\t\tmu 0 3 13223 13224 13225\n\t\tf 3 8303 8304 -8303\n\t\tmu 0 3 13226 13227 13228\n\t\tf 3 8305 8306 8307\n\t\tmu 0 3 13229 13230 13231\n\t\tf 3 8308 8309 -8308\n\t\tmu 0 3 13232 13233 13234\n\t\tf 3 8310 8311 8312\n\t\tmu 0 3 13235 13236 13237\n\t\tf 3 8313 8314 -8313\n\t\tmu 0 3 13238 13239 13240\n\t\tf 3 8315 8316 8317\n\t\tmu 0 3 13241 13242 13243\n\t\tf 3 8318 8319 -8318\n\t\tmu 0 3 13244 13245 13246\n\t\tf 3 -8319 8320 8321\n\t\tmu 0 3 13247 13248 13249\n\t\tf 3 -8249 8322 -8322\n\t\tmu 0 3 13250 13251 13252\n\t\tf 3 8323 8324 8325\n\t\tmu 0 3 13253 13254 13255\n\t\tf 3 8326 8327 -8326\n\t\tmu 0 3 13256 13257 13258\n\t\tf 3 -8327 8328 8329\n\t\tmu 0 3 13259 13260 13261\n\t\tf 3 8330 8331 -8330\n\t\tmu 0 3 13262 13263 13264\n\t\tf 3 -8331 8332 8333\n\t\tmu 0 3 13265 13266 13267\n\t\tf 3 8334 8335 -8334\n\t\tmu 0 3 13268 13269 13270\n\t\tf 3 -8335 8336 8337\n\t\tmu 0 3 13271 13272 13273\n\t\tf 3 8338 8339 -8338\n\t\tmu 0 3 13274 13275 13276\n\t\tf 3 -8339 8340 8341\n\t\tmu 0 3 13277 13278 13279\n\t\tf 3 8342 8343 -8342\n\t\tmu 0 3 13280 13281 13282\n\t\tf 3 -8343 8344 8345\n\t\tmu 0 3 13283 13284 13285\n\t\tf 3 8346 8347 -8346\n\t\tmu 0 3 13286 13287 13288\n\t\tf 3 -8347 8348 8349\n\t\tmu 0 3 13289 13290 13291\n\t\tf 3 8350 8351 -8350\n\t\tmu 0 3 13292 13293 13294\n\t\tf 3 -8351 8352 8353\n\t\tmu 0 3 13295 13296 13297\n\t\tf 3 8354 8355 -8354\n\t\tmu 0 3 13298 13299 13300\n\t\tf 3 -8355 8356 8357\n\t\tmu 0 3 13301 13302 13303\n\t\tf 3 8358 8359 -8358\n\t\tmu 0 3 13304 13305 13306\n\t\tf 3 -8359 8360 8361\n\t\tmu 0 3 13307 13308 13309\n\t\tf 3 8362 8363 -8362\n\t\tmu 0 3 13310 13311 13312\n\t\tf 3 -8363 8364 8365\n\t\tmu 0 3 13313 13314 13315\n\t\tf 3 8366 8367 -8366\n\t\tmu 0 3 13316 13317 13318\n\t\tf 3 -8367 8368 8369\n\t\tmu 0 3 13319 13320 13321\n\t\tf 3 8370 8371 -8370\n\t\tmu 0 3 13322 13323 13324\n\t\tf 3 -8371 8372 8373\n\t\tmu 0 3 13325 13326 13327\n\t\tf 3 8374 8375 -8374\n\t\tmu 0 3 13328 13329 13330\n\t\tf 3 -8375 8376 8377\n\t\tmu 0 3 13331 13332 13333\n\t\tf 3 8378 8379 -8378\n\t\tmu 0 3 13334 13335 13336\n\t\tf 3 -8379 8380 8381\n\t\tmu 0 3 13337 13338 13339\n\t\tf 3 8382 8383 -8382\n\t\tmu 0 3 13340 13341 13342\n\t\tf 3 -8383 8384 8385\n\t\tmu 0 3 13343 13344 13345\n\t\tf 3 8386 8387 -8386\n\t\tmu 0 3 13346 13347 13348\n\t\tf 3 -8387 8388 8389\n\t\tmu 0 3 13349 13350 13351\n\t\tf 3 8390 8391 -8390\n\t\tmu 0 3 13352 13353 13354\n\t\tf 3 -8391 8392 8393\n\t\tmu 0 3 13355 13356 13357\n\t\tf 3 -8324 8394 -8394\n\t\tmu 0 3 13358 13359 13360\n\t\tf 3 8395 8396 8397\n\t\tmu 0 3 13361 13362 13363\n\t\tf 3 8398 8399 -8398\n\t\tmu 0 3 13364 13365 13366\n\t\tf 3 -8399 8400 8401\n\t\tmu 0 3 13367 13368 13369\n\t\tf 3 8402 8403 -8402\n\t\tmu 0 3 13370 13371 13372\n\t\tf 3 -8403 8404 8405\n\t\tmu 0 3 13373 13374 13375\n\t\tf 3 8406 8407 -8406\n\t\tmu 0 3 13376 13377 13378\n\t\tf 3 -8396 8408 8409\n\t\tmu 0 3 13379 13380 13381\n\t\tf 3 8410 8411 -8410\n\t\tmu 0 3 13382 13383 13384\n\t\tf 3 -8411 8412 8413\n\t\tmu 0 3 13385 13386 13387\n\t\tf 3 8414 8415 -8414\n\t\tmu 0 3 13388 13389 13390\n\t\tf 3 8416 8417 8418\n\t\tmu 0 3 13391 13392 13393\n\t\tf 3 8419 8420 -8419\n\t\tmu 0 3 13394 13395 13396\n\t\tf 3 8421 8422 8423\n\t\tmu 0 3 13397 13398 13399\n\t\tf 3 8424 8425 -8424\n\t\tmu 0 3 13400 13401 13402\n\t\tf 3 8426 8427 8428\n\t\tmu 0 3 13403 13404 13405\n\t\tf 3 8429 8430 -8429\n\t\tmu 0 3 13406 13407 13408\n\t\tf 3 8431 8432 8433\n\t\tmu 0 3 13409 13410 13411\n\t\tf 3 8434 8435 -8434\n\t\tmu 0 3 13412 13413 13414\n\t\tf 3 8436 8437 8438\n\t\tmu 0 3 13415 13416 13417\n\t\tf 3 8439 8440 -8439\n\t\tmu 0 3 13418 13419 13420\n\t\tf 3 -8440 8441 8442\n\t\tmu 0 3 13421 13422 13423\n\t\tf 3 8443 8444 -8443\n\t\tmu 0 3 13424 13425 13426\n\t\tf 3 -8444 8445 8446\n\t\tmu 0 3 13427 13428 13429\n\t\tf 3 8447 8448 -8447\n\t\tmu 0 3 13430 13431 13432\n\t\tf 3 -8448 8449 8450\n\t\tmu 0 3 13433 13434 13435\n\t\tf 3 8451 8452 -8451\n\t\tmu 0 3 13436 13437 13438\n\t\tf 3 -8452 8453 8454\n\t\tmu 0 3 13439 13440 13441\n\t\tf 3 8455 8456 -8455\n\t\tmu 0 3 13442 13443 13444\n\t\tf 3 8457 8458 8459\n\t\tmu 0 3 13445 13446 13447\n\t\tf 3 8460 8461 -8460\n\t\tmu 0 3 13448 13449 13450\n\t\tf 3 8462 8463 8464\n\t\tmu 0 3 13451 13452 13453\n\t\tf 3 8465 8466 -8465\n\t\tmu 0 3 13454 13455 13456\n\t\tf 3 -8466 8467 8468\n\t\tmu 0 3 13457 13458 13459\n\t\tf 3 8469 8470 -8469\n\t\tmu 0 3 13460 13461 13462\n\t\tf 3 8471 8472 8473\n\t\tmu 0 3 13463 13464 13465\n\t\tf 3 8474 8475 -8474\n\t\tmu 0 3 13466 13467 13468;\n\tsetAttr \".fc[4500:4999]\"\n\t\tf 3 8476 8477 8478\n\t\tmu 0 3 1609 847 6070\n\t\tf 3 8479 8480 -8479\n\t\tmu 0 3 6070 4899 1609\n\t\tf 3 8481 -8481 8482\n\t\tmu 0 3 5949 1609 4899\n\t\tf 3 8483 8484 -8483\n\t\tmu 0 3 4899 1127 5949\n\t\tf 3 8485 -8477 8486\n\t\tmu 0 3 4082 847 1609\n\t\tf 3 8487 8488 -8487\n\t\tmu 0 3 1609 1749 4082\n\t\tf 3 -8486 8489 8490\n\t\tmu 0 3 847 4082 5560\n\t\tf 3 8491 8492 -8491\n\t\tmu 0 3 5560 5768 847\n\t\tf 3 -8478 -8493 8493\n\t\tmu 0 3 6070 847 5768\n\t\tf 3 8494 -8492 8495\n\t\tmu 0 3 1551 5768 5560\n\t\tf 3 8496 8497 -8496\n\t\tmu 0 3 5560 1951 1551\n\t\tf 3 8498 8499 -8494\n\t\tmu 0 3 5768 821 6070\n\t\tf 3 -8499 -8495 8500\n\t\tmu 0 3 821 5768 1551\n\t\tf 3 8501 -8489 8502\n\t\tmu 0 3 2124 4082 1749\n\t\tf 3 8503 8504 -8503\n\t\tmu 0 3 1749 2697 2124\n\t\tf 3 8505 -8504 8506\n\t\tmu 0 3 3038 2697 1749\n\t\tf 3 8507 8508 -8507\n\t\tmu 0 3 1749 6353 3038\n\t\tf 3 -8508 -8488 8509\n\t\tmu 0 3 6353 1749 1609\n\t\tf 3 -8482 8510 -8510\n\t\tmu 0 3 1609 5949 6353\n\t\tf 3 8511 8512 -8501\n\t\tmu 0 3 1551 298 821\n\t\tf 3 8513 8514 8515\n\t\tmu 0 3 2448 5152 949\n\t\tf 3 8516 8517 -8516\n\t\tmu 0 3 949 6217 2448\n\t\tf 3 8518 -8514 8519\n\t\tmu 0 3 5666 5152 2448\n\t\tf 3 8520 8521 -8520\n\t\tmu 0 3 2448 4811 5666\n\t\tf 3 8522 -8522 8523\n\t\tmu 0 3 2419 5666 4811\n\t\tf 3 8524 8525 -8524\n\t\tmu 0 3 4811 4997 2419\n\t\tf 3 8526 -8526 8527\n\t\tmu 0 3 5307 2419 4997\n\t\tf 3 8528 8529 -8528\n\t\tmu 0 3 4997 2063 5307\n\t\tf 3 8530 -8530 8531\n\t\tmu 0 3 1152 5307 2063\n\t\tf 3 8532 8533 -8532\n\t\tmu 0 3 2063 3133 1152\n\t\tf 3 8534 8535 8536\n\t\tmu 0 3 5994 13469 13470\n\t\tf 3 8537 8538 -8537\n\t\tmu 0 3 13471 4244 5994\n\t\tf 3 8539 8540 8541\n\t\tmu 0 3 2873 13472 13473\n\t\tf 3 8542 8543 -8542\n\t\tmu 0 3 13474 5856 2873\n\t\tf 3 8544 -8544 8545\n\t\tmu 0 3 3393 2873 5856\n\t\tf 3 8546 8547 -8546\n\t\tmu 0 3 5856 2502 3393\n\t\tf 3 8548 -8548 8549\n\t\tmu 0 3 2973 3393 2502\n\t\tf 3 8550 8551 -8550\n\t\tmu 0 3 2502 938 2973\n\t\tf 3 8552 -8552 8553\n\t\tmu 0 3 4831 2973 938\n\t\tf 3 8554 8555 -8554\n\t\tmu 0 3 938 5857 4831\n\t\tf 3 8556 8557 8558\n\t\tmu 0 3 2349 6476 13475\n\t\tf 3 8559 8560 -8559\n\t\tmu 0 3 13476 13477 2349\n\t\tf 3 8561 -8561 8562\n\t\tmu 0 3 1456 2349 13478\n\t\tf 3 8563 8564 -8563\n\t\tmu 0 3 13479 13480 1456\n\t\tf 3 8565 -8565 8566\n\t\tmu 0 3 6359 1456 13481\n\t\tf 3 8567 8568 -8567\n\t\tmu 0 3 13482 13483 6359\n\t\tf 3 8569 -8569 8570\n\t\tmu 0 3 1800 6359 13484\n\t\tf 3 8571 8572 -8571\n\t\tmu 0 3 13485 13486 1800\n\t\tf 3 8573 -8573 8574\n\t\tmu 0 3 6171 1800 13487\n\t\tf 3 8575 8576 -8575\n\t\tmu 0 3 13488 13489 6171\n\t\tf 3 8577 -8577 8578\n\t\tmu 0 3 2556 6171 13490\n\t\tf 3 8579 8580 -8579\n\t\tmu 0 3 13491 13492 2556\n\t\tf 3 8581 8582 8583\n\t\tmu 0 3 13493 13494 1039\n\t\tf 3 8584 8585 -8584\n\t\tmu 0 3 1039 5987 13495\n\t\tf 3 8586 -8583 8587\n\t\tmu 0 3 4665 1039 13496\n\t\tf 3 8588 8589 -8588\n\t\tmu 0 3 13497 13498 4665\n\t\tf 3 8590 -8590 8591\n\t\tmu 0 3 3091 4665 13499\n\t\tf 3 8592 8593 -8592\n\t\tmu 0 3 13500 13501 3091\n\t\tf 3 8594 -8594 8595\n\t\tmu 0 3 13502 3091 13503\n\t\tf 3 8596 8597 -8596\n\t\tmu 0 3 13504 13505 13506\n\t\tf 3 8598 8599 8600\n\t\tmu 0 3 13507 13508 2531\n\t\tf 3 8601 8602 -8601\n\t\tmu 0 3 2531 5325 13509\n\t\tf 3 8603 -8603 8604\n\t\tmu 0 3 13510 13511 5325\n\t\tf 3 -8480 8605 -8605\n\t\tmu 0 3 5325 4748 13512\n\t\tf 3 8606 -8600 8607\n\t\tmu 0 3 3080 2531 13513\n\t\tf 3 8608 8609 -8608\n\t\tmu 0 3 13514 13515 3080\n\t\tf 3 -8610 8610 8611\n\t\tmu 0 3 3080 13516 13517\n\t\tf 3 8612 -8511 -8612\n\t\tmu 0 3 13518 6088 3080\n\t\tf 3 -8509 -8613 8613\n\t\tmu 0 3 4020 6088 13519\n\t\tf 3 8614 8615 -8614\n\t\tmu 0 3 13520 13521 4020\n\t\tf 3 -8506 -8616 8616\n\t\tmu 0 3 6280 4020 13522\n\t\tf 3 8617 8618 -8617\n\t\tmu 0 3 13523 13524 6280\n\t\tf 3 -8606 -8500 8619\n\t\tmu 0 3 13525 4748 861\n\t\tf 3 8620 8621 -8620\n\t\tmu 0 3 861 13526 13527\n\t\tf 3 8622 -8621 8623\n\t\tmu 0 3 13528 13529 861\n\t\tf 3 -8513 8624 -8624\n\t\tmu 0 3 861 4615 13530\n\t\tf 3 8625 -8625 8626\n\t\tmu 0 3 13531 13532 4615\n\t\tf 3 -8512 8627 -8627\n\t\tmu 0 3 4615 1481 13533\n\t\tf 3 8628 -8628 8629\n\t\tmu 0 3 13534 13535 1481\n\t\tf 3 -8498 8630 -8630\n\t\tmu 0 3 1481 1162 13536\n\t\tf 3 8631 8632 8633\n\t\tmu 0 3 13537 13538 13539\n\t\tf 3 8634 8635 -8634\n\t\tmu 0 3 13540 13541 13542\n\t\tf 3 -8632 8636 8637\n\t\tmu 0 3 13543 13544 13545\n\t\tf 3 8638 8639 -8638\n\t\tmu 0 3 13546 13547 13548\n\t\tf 3 -8636 8640 8641\n\t\tmu 0 3 13549 13550 13551\n\t\tf 3 8642 8643 -8642\n\t\tmu 0 3 13552 13553 13554\n\t\tf 3 8644 -8641 8645\n\t\tmu 0 3 13555 13556 13557\n\t\tf 3 8646 8647 -8646\n\t\tmu 0 3 13558 13559 13560\n\t\tf 3 -8647 -8635 8648\n\t\tmu 0 3 13561 13562 13563\n\t\tf 3 -8648 8649 8650\n\t\tmu 0 3 13564 13565 13566\n\t\tf 3 8651 8652 -8651\n\t\tmu 0 3 13567 13568 13569\n\t\tf 3 8653 8654 -8649\n\t\tmu 0 3 13570 13571 13572\n\t\tf 3 -8650 -8655 8655\n\t\tmu 0 3 13573 13574 13575\n\t\tf 3 -8643 8656 8657\n\t\tmu 0 3 13576 13577 13578\n\t\tf 3 8658 8659 -8658\n\t\tmu 0 3 13579 13580 13581\n\t\tf 3 -8660 8660 8661\n\t\tmu 0 3 13582 13583 13584\n\t\tf 3 8662 8663 -8662\n\t\tmu 0 3 13585 13586 13587\n\t\tf 3 8664 -8637 8665\n\t\tmu 0 3 13588 13589 13590\n\t\tf 3 -8644 -8664 -8666\n\t\tmu 0 3 13591 13592 13593\n\t\tf 3 8666 8667 -8656\n\t\tmu 0 3 13594 13595 13596\n\t\tf 3 8668 8669 8670\n\t\tmu 0 3 13597 13598 13599\n\t\tf 3 8671 8672 -8671\n\t\tmu 0 3 13600 13601 13602\n\t\tf 3 -8672 8673 8674\n\t\tmu 0 3 13603 13604 13605\n\t\tf 3 8675 8676 -8675\n\t\tmu 0 3 13606 13607 13608\n\t\tf 3 -8676 8677 8678\n\t\tmu 0 3 13609 13610 13611\n\t\tf 3 8679 8680 -8679\n\t\tmu 0 3 13612 13613 13614\n\t\tf 3 -8680 8681 8682\n\t\tmu 0 3 13615 13616 13617\n\t\tf 3 8683 8684 -8683\n\t\tmu 0 3 13618 13619 13620\n\t\tf 3 -8684 8685 8686\n\t\tmu 0 3 13621 13622 13623\n\t\tf 3 8687 8688 -8687\n\t\tmu 0 3 13624 13625 13626\n\t\tf 3 8689 8690 8691\n\t\tmu 0 3 13627 13628 13629\n\t\tf 3 8692 8693 -8692\n\t\tmu 0 3 13630 13631 13632\n\t\tf 3 8694 8695 8696\n\t\tmu 0 3 13633 13634 13635\n\t\tf 3 8697 8698 -8697\n\t\tmu 0 3 13636 13637 13638\n\t\tf 3 -8698 8699 8700\n\t\tmu 0 3 13639 13640 13641\n\t\tf 3 8701 8702 -8701\n\t\tmu 0 3 13642 13643 13644\n\t\tf 3 -8702 8703 8704\n\t\tmu 0 3 13645 13646 13647\n\t\tf 3 8705 8706 -8705\n\t\tmu 0 3 13648 13649 13650\n\t\tf 3 -8706 8707 8708\n\t\tmu 0 3 13651 13652 13653\n\t\tf 3 8709 8710 -8709\n\t\tmu 0 3 13654 13655 13656\n\t\tf 3 8711 8712 8713\n\t\tmu 0 3 13657 13658 13659\n\t\tf 3 8714 8715 -8714\n\t\tmu 0 3 13660 13661 13662\n\t\tf 3 -8715 8716 8717\n\t\tmu 0 3 13663 13664 13665\n\t\tf 3 8718 8719 -8718\n\t\tmu 0 3 13666 13667 13668\n\t\tf 3 -8719 8720 8721\n\t\tmu 0 3 13669 13670 13671\n\t\tf 3 8722 8723 -8722\n\t\tmu 0 3 13672 13673 13674\n\t\tf 3 -8723 8724 8725\n\t\tmu 0 3 13675 13676 13677\n\t\tf 3 8726 8727 -8726\n\t\tmu 0 3 13678 13679 13680\n\t\tf 3 -8727 8728 8729\n\t\tmu 0 3 13681 13682 13683\n\t\tf 3 8730 8731 -8730\n\t\tmu 0 3 13684 13685 13686\n\t\tf 3 -8731 8732 8733\n\t\tmu 0 3 13687 13688 13689\n\t\tf 3 8734 8735 -8734\n\t\tmu 0 3 13690 13691 13692\n\t\tf 3 8736 8737 8738\n\t\tmu 0 3 13693 13694 13695\n\t\tf 3 8739 8740 -8739\n\t\tmu 0 3 13696 13697 13698\n\t\tf 3 -8740 8741 8742\n\t\tmu 0 3 13699 13700 13701\n\t\tf 3 8743 8744 -8743\n\t\tmu 0 3 13702 13703 13704\n\t\tf 3 -8744 8745 8746\n\t\tmu 0 3 13705 13706 13707\n\t\tf 3 8747 8748 -8747\n\t\tmu 0 3 13708 13709 13710\n\t\tf 3 -8748 8749 8750\n\t\tmu 0 3 13711 13712 13713\n\t\tf 3 8751 8752 -8751\n\t\tmu 0 3 13714 13715 13716\n\t\tf 3 8753 8754 8755\n\t\tmu 0 3 13717 13718 13719\n\t\tf 3 8756 8757 -8756\n\t\tmu 0 3 13720 13721 13722\n\t\tf 3 -8754 8758 8759\n\t\tmu 0 3 13723 13724 13725\n\t\tf 3 8760 -8633 -8760\n\t\tmu 0 3 13726 13727 13728\n\t\tf 3 -8757 8761 8762\n\t\tmu 0 3 13729 13730 13731\n\t\tf 3 8763 8764 -8763\n\t\tmu 0 3 13732 13733 13734\n\t\tf 3 8765 -8764 8766\n\t\tmu 0 3 13735 13736 13737\n\t\tf 3 -8665 8767 -8767\n\t\tmu 0 3 13738 13739 13740\n\t\tf 3 -8768 -8663 8768\n\t\tmu 0 3 13741 13742 13743\n\t\tf 3 8769 8770 -8769\n\t\tmu 0 3 13744 13745 13746\n\t\tf 3 -8770 -8661 8771\n\t\tmu 0 3 13747 13748 13749\n\t\tf 3 8772 8773 -8772\n\t\tmu 0 3 13750 13751 13752\n\t\tf 3 -8654 -8761 8774\n\t\tmu 0 3 13753 13754 13755\n\t\tf 3 8775 8776 -8775\n\t\tmu 0 3 13756 13757 13758\n\t\tf 3 -8777 8777 8778\n\t\tmu 0 3 13759 13760 13761\n\t\tf 3 8779 -8667 -8779\n\t\tmu 0 3 13762 13763 13764\n\t\tf 3 -8780 8780 8781\n\t\tmu 0 3 13765 13766 13767\n\t\tf 3 8782 -8668 -8782\n\t\tmu 0 3 13768 13769 13770\n\t\tf 3 -8783 8783 8784\n\t\tmu 0 3 13771 13772 13773\n\t\tf 3 8785 -8652 -8785\n\t\tmu 0 3 13774 13775 13776\n\t\tf 3 8786 8787 8788\n\t\tmu 0 3 3568 4289 302\n\t\tf 3 -8789 8789 8790\n\t\tmu 0 3 3568 302 2218\n\t\tf 3 -8791 8791 8792\n\t\tmu 0 3 3568 2218 4474\n\t\tf 3 -8793 8793 8794\n\t\tmu 0 3 3568 4474 1814\n\t\tf 3 8795 -8792 8796\n\t\tmu 0 3 6479 4474 2218\n\t\tf 3 8797 8798 -8797\n\t\tmu 0 3 2218 3949 6479\n\t\tf 3 8799 8800 -8799\n\t\tmu 0 3 3949 3033 6479\n\t\tf 3 8801 8802 -8800\n\t\tmu 0 3 3949 1836 3033\n\t\tf 3 8803 8804 -8801\n\t\tmu 0 3 3033 200 6479\n\t\tf 3 8805 8806 -8804\n\t\tmu 0 3 3033 2532 200\n\t\tf 3 8807 8808 8809\n\t\tmu 0 3 1216 2917 6523\n\t\tf 3 8810 8811 -8810\n\t\tmu 0 3 6523 261 1216\n\t\tf 3 8812 8813 8814\n\t\tmu 0 3 4137 13777 13778\n\t\tf 3 8815 -8787 -8815\n\t\tmu 0 3 13779 1215 4137\n\t\tf 3 -8809 8816 8817\n\t\tmu 0 3 6523 2917 4823\n\t\tf 3 8818 -8813 8819\n\t\tmu 0 3 13780 13781 4137\n\t\tf 3 8820 8821 -8818\n\t\tmu 0 3 4823 6405 6523\n\t\tf 3 8822 -8821 8823\n\t\tmu 0 3 1165 6405 4823\n\t\tf 3 8824 8825 -8824\n\t\tmu 0 3 4823 3176 1165\n\t\tf 3 8826 8827 8828\n\t\tmu 0 3 13782 13783 2340\n\t\tf 3 -8795 -8828 -8820\n\t\tmu 0 3 4137 2340 13784\n\t\tf 3 -8794 8829 -8829\n\t\tmu 0 3 2340 556 13785\n\t\tf 3 8830 -8812 8831\n\t\tmu 0 3 318 1216 261\n\t\tf 3 8832 8833 -8832\n\t\tmu 0 3 261 3674 318\n\t\tf 3 8834 -8834 8835\n\t\tmu 0 3 2547 318 3674\n\t\tf 3 8836 8837 -8836\n\t\tmu 0 3 3674 5676 2547\n\t\tf 3 8838 8839 8840\n\t\tmu 0 3 13786 13787 840\n\t\tf 3 -8790 8841 -8841\n\t\tmu 0 3 840 3477 13788\n\t\tf 3 8842 8843 8844\n\t\tmu 0 3 70 13789 13790\n\t\tf 3 8845 8846 -8845\n\t\tmu 0 3 13791 4659 70\n\t\tf 3 8847 8848 8849\n\t\tmu 0 3 4144 13792 13793\n\t\tf 3 8850 8851 -8850\n\t\tmu 0 3 13794 2884 4144\n\t\tf 3 8852 8853 8854\n\t\tmu 0 3 13795 13796 3896\n\t\tf 3 -8802 8855 -8855\n\t\tmu 0 3 3896 282 13797\n\t\tf 3 8856 -8856 8857\n\t\tmu 0 3 13798 13799 282\n\t\tf 3 -8798 -8840 -8858\n\t\tmu 0 3 282 840 13800\n\t\tf 3 8858 -8852 8859\n\t\tmu 0 3 3269 4144 2884\n\t\tf 3 8860 8861 -8860\n\t\tmu 0 3 2884 1192 3269\n\t\tf 3 8862 -8862 8863\n\t\tmu 0 3 3865 3269 1192\n\t\tf 3 8864 8865 -8864\n\t\tmu 0 3 1192 2655 3865\n\t\tf 3 8866 8867 8868\n\t\tmu 0 3 13801 13802 2883\n\t\tf 3 -8806 8869 -8869\n\t\tmu 0 3 2883 6034 13803\n\t\tf 3 8870 -8870 8871\n\t\tmu 0 3 13804 13805 6034\n\t\tf 3 -8803 -8854 -8872\n\t\tmu 0 3 6034 3896 13806\n\t\tf 3 8872 -8866 8873\n\t\tmu 0 3 3921 3865 2655\n\t\tf 3 -8868 8874 8875\n\t\tmu 0 3 2883 13807 13808\n\t\tf 3 8876 8877 -8874\n\t\tmu 0 3 2655 2978 3921\n\t\tf 3 8878 -8878 8879\n\t\tmu 0 3 5490 3921 2978\n\t\tf 3 8880 8881 -8880\n\t\tmu 0 3 2978 3752 5490\n\t\tf 3 8882 8883 8884\n\t\tmu 0 3 13809 13810 1051\n\t\tf 3 -8805 8885 -8885\n\t\tmu 0 3 1051 1363 13811\n\t\tf 3 -8886 -8807 -8876\n\t\tmu 0 3 13812 1363 2883\n\t\tf 3 8886 8887 8888\n\t\tmu 0 3 6427 13813 13814\n\t\tf 3 8889 8890 -8889\n\t\tmu 0 3 13815 1671 6427\n\t\tf 3 8891 -8842 8892\n\t\tmu 0 3 13816 13817 3477\n\t\tf 3 -8788 -8816 -8893\n\t\tmu 0 3 3477 1215 13818\n\t\tf 3 -8830 -8796 8893\n\t\tmu 0 3 4979 1769 1051\n\t\tf 3 -8884 8894 -8894\n\t\tmu 0 3 1051 6212 4979\n\t\tf 3 8895 8896 8897\n\t\tmu 0 3 13819 13820 13821\n\t\tf 3 -8898 8898 8899\n\t\tmu 0 3 13822 13823 13824\n\t\tf 3 -8900 8900 8901\n\t\tmu 0 3 13825 13826 13827\n\t\tf 3 8902 -8902 8903\n\t\tmu 0 3 13828 13829 13830\n\t\tf 3 -8899 8904 8905\n\t\tmu 0 3 13831 13832 13833\n\t\tf 3 8906 8907 -8906\n\t\tmu 0 3 13834 13835 13836\n\t\tf 3 -8907 8908 8909\n\t\tmu 0 3 13837 13838 13839\n\t\tf 3 8910 8911 -8909\n\t\tmu 0 3 13840 13841 13842\n\t\tf 3 8912 8913 -8912\n\t\tmu 0 3 13843 13844 13845\n\t\tf 3 8914 -8910 8915\n\t\tmu 0 3 13846 13847 13848\n\t\tf 3 8916 8917 8918\n\t\tmu 0 3 13849 13850 13851\n\t\tf 3 8919 8920 -8919\n\t\tmu 0 3 13852 13853 13854\n\t\tf 3 8921 8922 8923\n\t\tmu 0 3 13855 13856 13857\n\t\tf 3 -8903 8924 -8924\n\t\tmu 0 3 13858 13859 13860\n\t\tf 3 -8920 8925 8926\n\t\tmu 0 3 13861 13862 13863\n\t\tf 3 8927 8928 -8927\n\t\tmu 0 3 13864 13865 13866\n\t\tf 3 -8923 8929 8930\n\t\tmu 0 3 13867 13868 13869\n\t\tf 3 -8928 8931 8932\n\t\tmu 0 3 13870 13871 13872\n\t\tf 3 8933 8934 -8933\n\t\tmu 0 3 13873 13874 13875\n\t\tf 3 8935 8936 8937\n\t\tmu 0 3 13876 13877 13878\n\t\tf 3 -8936 -8896 -8931\n\t\tmu 0 3 13879 13880 13881\n\t\tf 3 8938 -8897 -8938\n\t\tmu 0 3 13882 13883 13884\n\t\tf 3 -8917 8939 8940\n\t\tmu 0 3 13885 13886 13887\n\t\tf 3 8941 8942 -8941\n\t\tmu 0 3 13888 13889 13890\n\t\tf 3 -8942 8943 8944\n\t\tmu 0 3 13891 13892 13893\n\t\tf 3 8945 8946 -8945\n\t\tmu 0 3 13894 13895 13896\n\t\tf 3 8947 8948 8949\n\t\tmu 0 3 13897 13898 13899\n\t\tf 3 8950 -8901 -8950\n\t\tmu 0 3 13900 13901 13902\n\t\tf 3 8951 8952 8953\n\t\tmu 0 3 13903 13904 13905\n\t\tf 3 8954 8955 -8954\n\t\tmu 0 3 13906 13907 13908\n\t\tf 3 8956 8957 8958\n\t\tmu 0 3 13909 13910 13911\n\t\tf 3 8959 8960 -8959\n\t\tmu 0 3 13912 13913 13914\n\t\tf 3 8961 8962 8963\n\t\tmu 0 3 13915 13916 13917\n\t\tf 3 8964 -8915 -8964\n\t\tmu 0 3 13918 13919 13920\n\t\tf 3 -8948 -8908 8965\n\t\tmu 0 3 13921 13922 13923\n\t\tf 3 -8965 8966 -8966\n\t\tmu 0 3 13924 13925 13926\n\t\tf 3 -8960 8967 8968\n\t\tmu 0 3 13927 13928 13929\n\t\tf 3 8969 8970 -8969\n\t\tmu 0 3 13930 13931 13932\n\t\tf 3 -8970 8971 8972\n\t\tmu 0 3 13933 13934 13935\n\t\tf 3 8973 8974 -8973\n\t\tmu 0 3 13936 13937 13938\n\t\tf 3 8975 8976 8977\n\t\tmu 0 3 13939 13940 13941\n\t\tf 3 8978 -8914 -8978\n\t\tmu 0 3 13942 13943 13944\n\t\tf 3 -8962 -8916 8979\n\t\tmu 0 3 13945 13946 13947\n\t\tf 3 -8979 8980 -8980\n\t\tmu 0 3 13948 13949 13950\n\t\tf 3 -8974 8981 8982\n\t\tmu 0 3 13951 13952 13953\n\t\tf 3 8983 -8976 8984\n\t\tmu 0 3 13954 13955 13956\n\t\tf 3 8985 8986 -8983\n\t\tmu 0 3 13957 13958 13959\n\t\tf 3 -8986 8987 8988\n\t\tmu 0 3 13960 13961 13962\n\t\tf 3 8989 8990 -8989\n\t\tmu 0 3 13963 13964 13965\n\t\tf 3 8991 8992 8993\n\t\tmu 0 3 13966 13967 13968\n\t\tf 3 8994 -8911 -8994\n\t\tmu 0 3 13969 13970 13971\n\t\tf 3 -8913 -8995 -8985\n\t\tmu 0 3 13972 13973 13974\n\t\tf 3 8995 8996 8997\n\t\tmu 0 3 13975 13976 13977\n\t\tf 3 8998 8999 -8998\n\t\tmu 0 3 13978 13979 13980\n\t\tf 3 -8925 -8904 9000\n\t\tmu 0 3 13981 13982 13983\n\t\tf 3 -8951 9001 -9001\n\t\tmu 0 3 13984 13985 13986\n\t\tf 3 9002 -8992 9003\n\t\tmu 0 3 13987 13988 13989\n\t\tf 3 -8905 -8939 -9004\n\t\tmu 0 3 13990 13991 13992\n\t\tf 3 9004 9005 9006\n\t\tmu 0 3 5001 6228 5433\n\t\tf 3 9007 9008 -9007\n\t\tmu 0 3 5433 6334 5001\n\t\tf 3 9009 -9008 9010\n\t\tmu 0 3 5918 6334 5433\n\t\tf 3 9011 9012 -9011\n\t\tmu 0 3 5433 3386 5918\n\t\tf 3 9013 9014 9015\n\t\tmu 0 3 13993 13994 471\n\t\tf 3 9016 9017 -9016\n\t\tmu 0 3 471 4576 13995\n\t\tf 3 -9017 9018 9019\n\t\tmu 0 3 4576 471 6109\n\t\tf 3 9020 9021 -9020\n\t\tmu 0 3 6109 5889 4576\n\t\tf 3 -9021 9022 9023\n\t\tmu 0 3 5889 6109 6096\n\t\tf 3 9024 9025 -9024\n\t\tmu 0 3 6096 2859 5889\n\t\tf 3 9026 -9025 9027\n\t\tmu 0 3 5466 2859 6096\n\t\tf 3 9028 9029 -9028\n\t\tmu 0 3 6096 881 5466\n\t\tf 3 9030 9031 9032\n\t\tmu 0 3 5105 2617 3008\n\t\tf 3 9033 9034 -9033\n\t\tmu 0 3 3008 2677 5105\n\t\tf 3 -9031 9035 9036\n\t\tmu 0 3 2617 5105 5605\n\t\tf 3 9037 9038 -9037\n\t\tmu 0 3 5605 3039 2617\n\t\tf 3 9039 -9039 9040\n\t\tmu 0 3 6066 2617 3039\n\t\tf 3 9041 9042 -9041\n\t\tmu 0 3 3039 6185 6066\n\t\tf 3 -9040 9043 9044\n\t\tmu 0 3 2617 6066 6243\n\t\tf 3 9045 -9032 -9045\n\t\tmu 0 3 6243 3008 2617\n\t\tf 3 -9035 9046 9047\n\t\tmu 0 3 5105 2677 2912\n\t\tf 3 9048 9049 -9048\n\t\tmu 0 3 2912 2671 5105\n\t\tf 3 9050 -9036 9051\n\t\tmu 0 3 2574 5605 5105\n\t\tf 3 -9050 9052 -9052\n\t\tmu 0 3 5105 2671 2574\n\t\tf 3 -9046 9053 9054\n\t\tmu 0 3 3008 6243 1392\n\t\tf 3 9055 9056 -9055\n\t\tmu 0 3 1392 13996 3008\n\t\tf 3 -9056 -9006 9057\n\t\tmu 0 3 13997 1392 817\n\t\tf 3 9058 9059 -9058\n\t\tmu 0 3 817 13998 13999\n\t\tf 3 9060 -9051 9061\n\t\tmu 0 3 4734 5605 2574\n\t\tf 3 9062 9063 -9062\n\t\tmu 0 3 2574 4099 4734\n\t\tf 3 9064 -9042 9065\n\t\tmu 0 3 960 6185 3039\n\t\tf 3 9066 9067 -9066\n\t\tmu 0 3 3039 3671 960\n\t\tf 3 -9067 -9038 9068\n\t\tmu 0 3 3671 3039 5605\n\t\tf 3 -9061 9069 -9069\n\t\tmu 0 3 5605 4734 3671\n\t\tf 3 -9064 9070 9071\n\t\tmu 0 3 4734 4099 4409\n\t\tf 3 9072 9073 -9072\n\t\tmu 0 3 4409 90 4734\n\t\tf 3 -9070 -9074 9074\n\t\tmu 0 3 3671 4734 90\n\t\tf 3 -9068 9075 9076\n\t\tmu 0 3 960 3671 5775\n\t\tf 3 9077 -9076 -9075\n\t\tmu 0 3 90 5775 3671\n\t\tf 3 9078 9079 -9077\n\t\tmu 0 3 5775 4050 960\n\t\tf 3 9080 9081 9082\n\t\tmu 0 3 5714 4199 499\n\t\tf 3 9083 9084 -9083\n\t\tmu 0 3 499 5344 5714\n\t\tf 3 -9082 9085 9086\n\t\tmu 0 3 499 4199 303\n\t\tf 3 9087 9088 -9087\n\t\tmu 0 3 303 3200 499\n\t\tf 3 -9088 9089 9090\n\t\tmu 0 3 3200 303 4411\n\t\tf 3 9091 9092 -9091\n\t\tmu 0 3 4411 4077 3200\n\t\tf 3 -9092 9093 9094\n\t\tmu 0 3 4077 4411 5037\n\t\tf 3 9095 9096 -9095\n\t\tmu 0 3 5037 1325 4077\n\t\tf 3 -9097 9097 9098\n\t\tmu 0 3 4077 1325 4009\n\t\tf 3 9099 9100 -9099\n\t\tmu 0 3 4009 4126 4077\n\t\tf 3 -9093 -9101 9101\n\t\tmu 0 3 3200 4077 4126\n\t\tf 3 9102 9103 -9102\n\t\tmu 0 3 4126 1500 3200\n\t\tf 3 9104 -9089 9105\n\t\tmu 0 3 1395 499 3200\n\t\tf 3 -9104 9106 -9106\n\t\tmu 0 3 3200 1500 1395\n\t\tf 3 9107 -9084 9108\n\t\tmu 0 3 3651 5344 499\n\t\tf 3 -9105 9109 -9109\n\t\tmu 0 3 499 1395 3651\n\t\tf 3 9110 9111 9112\n\t\tmu 0 3 765 1326 5695\n\t\tf 3 9113 9114 -9113\n\t\tmu 0 3 5695 3556 765\n\t\tf 3 9115 9116 9117\n\t\tmu 0 3 2682 4929 2551\n\t\tf 3 9118 9119 -9118\n\t\tmu 0 3 2551 1451 2682\n\t\tf 3 9120 -9117 9121\n\t\tmu 0 3 3418 2551 4929\n\t\tf 3 9122 9123 -9122\n\t\tmu 0 3 4929 2090 3418\n\t\tf 3 9124 -9124 9125\n\t\tmu 0 3 777 3418 2090\n\t\tf 3 9126 9127 -9126\n\t\tmu 0 3 2090 3278 777\n\t\tf 3 -9128 9128 9129\n\t\tmu 0 3 777 3278 2642\n\t\tf 3 9130 9131 -9130\n\t\tmu 0 3 2642 4924 777\n\t\tf 3 -9131 9132 9133\n\t\tmu 0 3 4924 2642 1572\n\t\tf 3 9134 9135 -9134\n\t\tmu 0 3 1572 4238 4924\n\t\tf 3 9136 -9135 9137\n\t\tmu 0 3 3596 4238 1572\n\t\tf 3 9138 9139 -9138\n\t\tmu 0 3 1572 6163 3596\n\t\tf 3 9140 -9140 9141\n\t\tmu 0 3 6294 3596 6163\n\t\tf 3 9142 9143 -9142\n\t\tmu 0 3 6163 1517 6294\n\t\tf 3 9144 -9144 9145\n\t\tmu 0 3 5405 6294 1517\n\t\tf 3 9146 9147 -9146\n\t\tmu 0 3 1517 4412 5405\n\t\tf 3 9148 -9148 9149\n\t\tmu 0 3 5958 5405 4412\n\t\tf 3 9150 9151 -9150\n\t\tmu 0 3 4412 4025 5958\n\t\tf 3 9152 -9152 9153\n\t\tmu 0 3 5397 5958 4025\n\t\tf 3 9154 9155 -9154\n\t\tmu 0 3 4025 5362 5397\n\t\tf 3 9156 -9156 9157\n\t\tmu 0 3 1451 5397 5362\n\t\tf 3 9158 -9120 -9158\n\t\tmu 0 3 5362 2682 1451\n\t\tf 3 9159 9160 9161\n\t\tmu 0 3 5869 2923 3385\n\t\tf 3 9162 9163 -9162\n\t\tmu 0 3 3385 6339 5869\n\t\tf 3 9164 9165 9166\n\t\tmu 0 3 2094 14000 14001\n\t\tf 3 9167 9168 -9167\n\t\tmu 0 3 14002 4947 2094\n\t\tf 3 9169 -9164 9170\n\t\tmu 0 3 1642 5869 6339\n\t\tf 3 9171 9172 -9171\n\t\tmu 0 3 6339 3962 1642\n\t\tf 3 9173 -9173 9174\n\t\tmu 0 3 1730 1642 3962\n\t\tf 3 9175 9176 -9175\n\t\tmu 0 3 3962 1297 1730\n\t\tf 3 9177 9178 9179\n\t\tmu 0 3 14003 2360 1338\n\t\tf 3 9180 9181 -9180\n\t\tmu 0 3 1338 14004 14005\n\t\tf 3 9182 -9179 9183\n\t\tmu 0 3 662 1338 2360\n\t\tf 3 9184 9185 -9184\n\t\tmu 0 3 2360 5699 662\n\t\tf 3 9186 9187 9188\n\t\tmu 0 3 4855 1249 2141\n\t\tf 3 9189 9190 -9189\n\t\tmu 0 3 2141 2766 4855\n\t\tf 3 9191 -9188 9192\n\t\tmu 0 3 1309 2141 1249\n\t\tf 3 9193 9194 -9193\n\t\tmu 0 3 1249 5391 1309\n\t\tf 3 9195 9196 9197\n\t\tmu 0 3 5981 1672 4780\n\t\tf 3 9198 9199 -9198\n\t\tmu 0 3 4780 5185 5981\n\t\tf 3 9200 9201 9202\n\t\tmu 0 3 5916 3391 1158\n\t\tf 3 9203 9204 -9203\n\t\tmu 0 3 1158 913 5916\n\t\tf 3 9205 -9202 9206\n\t\tmu 0 3 3527 1158 3391\n\t\tf 3 9207 9208 -9207\n\t\tmu 0 3 3391 5274 3527\n\t\tf 3 9209 9210 9211\n\t\tmu 0 3 467 2541 1842\n\t\tf 3 9212 9213 -9212\n\t\tmu 0 3 1842 2680 467\n\t\tf 3 9214 -9210 9215\n\t\tmu 0 3 5697 2541 467\n\t\tf 3 9216 9217 -9216\n\t\tmu 0 3 467 4685 5697\n\t\tf 3 9218 -9218 9219\n\t\tmu 0 3 4290 5697 4685\n\t\tf 3 9220 9221 -9220\n\t\tmu 0 3 4685 1074 4290\n\t\tf 3 -9222 9222 9223\n\t\tmu 0 3 4290 1074 6394\n\t\tf 3 9224 9225 -9224\n\t\tmu 0 3 6394 4140 4290\n\t\tf 3 9226 9227 9228\n\t\tmu 0 3 1506 1018 5627\n\t\tf 3 9229 9230 -9229\n\t\tmu 0 3 5627 3068 1506\n\t\tf 3 9231 -9231 9232\n\t\tmu 0 3 5518 1506 3068\n\t\tf 3 9233 9234 -9233\n\t\tmu 0 3 3068 1404 5518\n\t\tf 3 9235 9236 9237\n\t\tmu 0 3 1164 4444 2025\n\t\tf 3 9238 9239 -9238\n\t\tmu 0 3 2025 5819 1164\n\t\tf 3 9240 -9240 9241\n\t\tmu 0 3 1131 1164 5819\n\t\tf 3 9242 9243 -9242\n\t\tmu 0 3 5819 2965 1131\n\t\tf 3 9244 9245 9246\n\t\tmu 0 3 2314 4317 4164\n\t\tf 3 9247 9248 -9247\n\t\tmu 0 3 4164 4749 2314\n\t\tf 3 -9246 9249 9250\n\t\tmu 0 3 4164 4317 452\n\t\tf 3 9251 9252 -9251\n\t\tmu 0 3 452 6338 4164\n\t\tf 3 9253 9254 9255\n\t\tmu 0 3 2173 6305 4451\n\t\tf 3 9256 9257 -9256\n\t\tmu 0 3 4451 1427 2173\n\t\tf 3 9258 9259 9260\n\t\tmu 0 3 4184 2769 4454\n\t\tf 3 9261 9262 9263\n\t\tmu 0 3 14006 14007 6295\n\t\tf 3 9264 9265 -9263\n\t\tmu 0 3 14008 5848 6295\n\t\tf 3 9266 9267 -9265\n\t\tmu 0 3 14009 4928 5848\n\t\tf 3 9268 9269 -9267\n\t\tmu 0 3 14010 3675 4928\n\t\tf 3 9270 9271 9272\n\t\tmu 0 3 14011 5709 14012\n\t\tf 3 9273 9274 -9266\n\t\tmu 0 3 5848 4012 6295\n\t\tf 3 9275 9276 -9275\n\t\tmu 0 3 4012 915 6295\n\t\tf 3 -9264 9277 9278\n\t\tmu 0 3 14013 6295 4853\n\t\tf 3 9279 9280 9281\n\t\tmu 0 3 14014 14015 14016\n\t\tf 3 9282 9283 -9282\n\t\tmu 0 3 14017 14018 14019\n\t\tf 3 -9281 9284 9285\n\t\tmu 0 3 14020 14021 14022\n\t\tf 3 9286 9287 -9286\n\t\tmu 0 3 14023 14024 14025\n\t\tf 3 9288 9289 9290\n\t\tmu 0 3 14026 14027 14028\n\t\tf 3 9291 9292 -9291\n\t\tmu 0 3 14029 14030 14031\n\t\tf 3 9293 -9293 9294\n\t\tmu 0 3 14032 14033 14034\n\t\tf 3 9295 9296 -9295\n\t\tmu 0 3 14035 14036 14037\n\t\tf 3 9297 -9297 9298\n\t\tmu 0 3 14038 14039 14040\n\t\tf 3 9299 9300 -9299\n\t\tmu 0 3 14041 14042 14043\n\t\tf 3 -9301 9301 9302\n\t\tmu 0 3 14044 14045 5466\n\t\tf 3 -9030 9303 -9303\n\t\tmu 0 3 5466 881 14046\n\t\tf 3 9304 9305 9306\n\t\tmu 0 3 14047 14048 14049\n\t\tf 3 9307 9308 -9307\n\t\tmu 0 3 14050 14051 14052\n\t\tf 3 9309 -9309 9310\n\t\tmu 0 3 14053 14054 14055\n\t\tf 3 9311 9312 -9311\n\t\tmu 0 3 14056 14057 14058\n\t\tf 3 -9312 9313 9314\n\t\tmu 0 3 14059 14060 14061\n\t\tf 3 9315 9316 -9315\n\t\tmu 0 3 14062 14063 14064\n\t\tf 3 -9308 9317 9318\n\t\tmu 0 3 14065 14066 14067\n\t\tf 3 9319 -9314 -9319\n\t\tmu 0 3 14068 14069 14070\n\t\tf 3 9320 -9305 9321\n\t\tmu 0 3 14071 14072 14073\n\t\tf 3 9322 9323 -9322\n\t\tmu 0 3 14074 14075 14076\n\t\tf 3 9324 -9323 9325\n\t\tmu 0 3 14077 14078 14079\n\t\tf 3 -9310 9326 -9326\n\t\tmu 0 3 14080 14081 14082\n\t\tf 3 9327 9328 9329\n\t\tmu 0 3 14083 14084 14085\n\t\tf 3 9330 -9318 -9330\n\t\tmu 0 3 14086 14087 14088\n\t\tf 3 9331 9332 9333\n\t\tmu 0 3 14089 14090 14091\n\t\tf 3 -9283 -9329 -9334\n\t\tmu 0 3 14092 14093 14094\n\t\tf 3 -9327 9334 9335\n\t\tmu 0 3 14095 14096 14097\n\t\tf 3 9336 9337 -9336\n\t\tmu 0 3 14098 14099 14100\n\t\tf 3 -9317 9338 9339\n\t\tmu 0 3 14101 14102 14103\n\t\tf 3 9340 9341 -9340\n\t\tmu 0 3 14104 14105 14106\n\t\tf 3 9342 -9335 9343\n\t\tmu 0 3 14107 14108 14109\n\t\tf 3 -9313 -9342 -9344\n\t\tmu 0 3 14110 14111 14112\n\t\tf 3 9344 -9337 9345\n\t\tmu 0 3 4409 14113 14114\n\t\tf 3 9346 -9073 -9346\n\t\tmu 0 3 14115 90 4409\n\t\tf 3 -9347 -9343 9347\n\t\tmu 0 3 90 14116 14117\n\t\tf 3 9348 -9341 9349\n\t\tmu 0 3 5775 14118 14119\n\t\tf 3 -9349 -9078 -9348\n\t\tmu 0 3 14120 5775 90\n\t\tf 3 9350 -9079 -9350\n\t\tmu 0 3 14121 4050 5775\n\t\tf 3 9351 9352 9353\n\t\tmu 0 3 14122 14123 14124\n\t\tf 3 9354 9355 -9354\n\t\tmu 0 3 14125 14126 14127\n\t\tf 3 9356 -9355 9357\n\t\tmu 0 3 14128 14129 14130\n\t\tf 3 9358 9359 -9358\n\t\tmu 0 3 14131 14132 14133\n\t\tf 3 9360 -9360 9361\n\t\tmu 0 3 14134 14135 14136\n\t\tf 3 9362 9363 -9362\n\t\tmu 0 3 14137 14138 14139\n\t\tf 3 9364 -9364 9365\n\t\tmu 0 3 5037 14140 14141\n\t\tf 3 9366 -9096 -9366\n\t\tmu 0 3 14142 1325 5037\n\t\tf 3 -9098 -9367 9367\n\t\tmu 0 3 4009 1325 14143\n\t\tf 3 9368 9369 -9368\n\t\tmu 0 3 14144 14145 4009\n\t\tf 3 -9369 -9363 9370\n\t\tmu 0 3 14146 14147 14148\n\t\tf 3 9371 9372 -9371\n\t\tmu 0 3 14149 14150 14151\n\t\tf 3 9373 -9372 9374\n\t\tmu 0 3 14152 14153 14154\n\t\tf 3 -9359 9375 -9375\n\t\tmu 0 3 14155 14156 14157\n\t\tf 3 9376 -9376 9377\n\t\tmu 0 3 14158 14159 14160\n\t\tf 3 -9353 9378 -9378\n\t\tmu 0 3 14161 14162 14163\n\t\tf 3 -9115 9379 9380\n\t\tmu 0 3 765 3556 14164\n\t\tf 3 9381 9382 -9381\n\t\tmu 0 3 14165 14166 765\n\t\tf 3 9383 9384 9385\n\t\tmu 0 3 14167 14168 14169\n\t\tf 3 9386 9387 -9386\n\t\tmu 0 3 14170 14171 14172\n\t\tf 3 -9384 9388 9389\n\t\tmu 0 3 14173 14174 14175\n\t\tf 3 9390 9391 -9390\n\t\tmu 0 3 14176 14177 14178\n\t\tf 3 -9391 9392 9393\n\t\tmu 0 3 14179 14180 14181\n\t\tf 3 9394 9395 -9394\n\t\tmu 0 3 14182 14183 14184\n\t\tf 3 9396 -9395 9397\n\t\tmu 0 3 14185 14186 14187\n\t\tf 3 9398 9399 -9398\n\t\tmu 0 3 14188 14189 14190\n\t\tf 3 9400 -9400 9401\n\t\tmu 0 3 14191 14192 14193\n\t\tf 3 9402 9403 -9402\n\t\tmu 0 3 14194 14195 14196\n\t\tf 3 -9404 9404 9405\n\t\tmu 0 3 14197 14198 14199\n\t\tf 3 9406 9407 -9406\n\t\tmu 0 3 14200 14201 14202\n\t\tf 3 -9407 9408 9409\n\t\tmu 0 3 14203 14204 14205\n\t\tf 3 9410 9411 -9410\n\t\tmu 0 3 14206 14207 14208\n\t\tf 3 -9411 9412 9413\n\t\tmu 0 3 14209 14210 14211\n\t\tf 3 9414 9415 -9414\n\t\tmu 0 3 14212 14213 14214\n\t\tf 3 -9415 9416 9417\n\t\tmu 0 3 14215 14216 14217\n\t\tf 3 9418 9419 -9418\n\t\tmu 0 3 14218 14219 14220\n\t\tf 3 -9419 9420 9421\n\t\tmu 0 3 14221 14222 14223\n\t\tf 3 9422 9423 -9422\n\t\tmu 0 3 14224 14225 14226\n\t\tf 3 -9423 9424 9425\n\t\tmu 0 3 14227 14228 14229\n\t\tf 3 -9387 9426 -9426\n\t\tmu 0 3 14230 14231 14232\n\t\tf 3 9427 9428 9429\n\t\tmu 0 3 14233 14234 14235\n\t\tf 3 9430 9431 -9430\n\t\tmu 0 3 14236 14237 14238\n\t\tf 3 9432 9433 9434\n\t\tmu 0 3 14239 14240 14241\n\t\tf 3 9435 9436 -9435\n\t\tmu 0 3 14242 14243 14244\n\t\tf 3 -9428 9437 9438\n\t\tmu 0 3 14245 14246 14247\n\t\tf 3 9439 9440 -9439\n\t\tmu 0 3 14248 14249 14250\n\t\tf 3 -9440 9441 9442\n\t\tmu 0 3 14251 14252 14253\n\t\tf 3 9443 9444 -9443\n\t\tmu 0 3 14254 14255 14256\n\t\tf 3 9445 9446 9447\n\t\tmu 0 3 14257 14258 14259\n\t\tf 3 9448 9449 -9448\n\t\tmu 0 3 14260 14261 14262\n\t\tf 3 -9449 9450 9451\n\t\tmu 0 3 14263 14264 14265;\n\tsetAttr \".fc[5000:5499]\"\n\t\tf 3 9452 9453 -9452\n\t\tmu 0 3 14266 14267 14268\n\t\tf 3 9454 9455 9456\n\t\tmu 0 3 14269 14270 14271\n\t\tf 3 9457 9458 -9457\n\t\tmu 0 3 14272 14273 14274\n\t\tf 3 -9458 9459 9460\n\t\tmu 0 3 14275 14276 14277\n\t\tf 3 9461 9462 -9461\n\t\tmu 0 3 14278 14279 14280\n\t\tf 3 9463 9464 9465\n\t\tmu 0 3 14281 14282 14283\n\t\tf 3 9466 9467 -9466\n\t\tmu 0 3 14284 14285 14286\n\t\tf 3 9468 9469 9470\n\t\tmu 0 3 14287 14288 14289\n\t\tf 3 9471 9472 -9471\n\t\tmu 0 3 14290 14291 14292\n\t\tf 3 -9469 9473 9474\n\t\tmu 0 3 14293 14294 14295\n\t\tf 3 9475 9476 -9475\n\t\tmu 0 3 14296 14297 14298\n\t\tf 3 9477 9478 9479\n\t\tmu 0 3 14299 14300 14301\n\t\tf 3 9480 9481 -9480\n\t\tmu 0 3 14302 14303 14304\n\t\tf 3 -9482 9482 9483\n\t\tmu 0 3 14305 14306 14307\n\t\tf 3 9484 9485 -9484\n\t\tmu 0 3 14308 14309 14310\n\t\tf 3 -9485 9486 9487\n\t\tmu 0 3 14311 14312 14313\n\t\tf 3 9488 9489 -9488\n\t\tmu 0 3 14314 14315 14316\n\t\tf 3 9490 -9489 9491\n\t\tmu 0 3 14317 14318 14319\n\t\tf 3 9492 9493 -9492\n\t\tmu 0 3 14320 14321 14322\n\t\tf 3 9494 9495 9496\n\t\tmu 0 3 14323 14324 14325\n\t\tf 3 9497 9498 -9497\n\t\tmu 0 3 14326 14327 14328\n\t\tf 3 -9498 9499 9500\n\t\tmu 0 3 14329 14330 14331\n\t\tf 3 9501 9502 -9501\n\t\tmu 0 3 14332 14333 14334\n\t\tf 3 9503 9504 9505\n\t\tmu 0 3 14335 14336 14337\n\t\tf 3 9506 9507 -9506\n\t\tmu 0 3 14338 14339 14340\n\t\tf 3 -9504 9508 9509\n\t\tmu 0 3 14341 14342 14343\n\t\tf 3 9510 9511 -9510\n\t\tmu 0 3 14344 14345 14346\n\t\tf 3 9512 9513 9514\n\t\tmu 0 3 14347 14348 14349\n\t\tf 3 9515 9516 -9515\n\t\tmu 0 3 14350 14351 14352\n\t\tf 3 9517 -9516 9518\n\t\tmu 0 3 14353 14354 14355\n\t\tf 3 9519 9520 -9519\n\t\tmu 0 3 14356 14357 14358\n\t\tf 3 9521 9522 9523\n\t\tmu 0 3 14359 14360 14361\n\t\tf 3 9524 9525 -9524\n\t\tmu 0 3 14362 14363 14364\n\t\tf 3 9526 9527 9528\n\t\tmu 0 3 14365 14366 14367\n\t\tf 3 9529 9530 9531\n\t\tmu 0 3 14368 14369 14370\n\t\tf 3 9532 9533 -9531\n\t\tmu 0 3 14371 14372 14373\n\t\tf 3 -9532 9534 9535\n\t\tmu 0 3 14374 14375 14376\n\t\tf 3 9536 9537 -9535\n\t\tmu 0 3 14377 14378 14379\n\t\tf 3 9538 9539 9540\n\t\tmu 0 3 14380 14381 14382\n\t\tf 3 9541 9542 -9538\n\t\tmu 0 3 14383 14384 14385\n\t\tf 3 -9536 9543 9544\n\t\tmu 0 3 14386 14387 14388\n\t\tf 3 9545 9546 -9544\n\t\tmu 0 3 14389 14390 14391\n\t\tf 3 9547 9548 9549\n\t\tmu 0 3 6411 772 363\n\t\tf 3 9550 9551 -9550\n\t\tmu 0 3 363 853 6411\n\t\tf 3 9552 -9551 9553\n\t\tmu 0 3 2998 853 363\n\t\tf 3 9554 9555 -9554\n\t\tmu 0 3 363 957 2998\n\t\tf 3 9556 -9552 9557\n\t\tmu 0 3 3452 6411 853\n\t\tf 3 9558 9559 -9558\n\t\tmu 0 3 853 607 3452\n\t\tf 3 -9559 -9553 9560\n\t\tmu 0 3 607 853 2998\n\t\tf 3 9561 -9560 9562\n\t\tmu 0 3 3460 3452 607\n\t\tf 3 9563 9564 -9563\n\t\tmu 0 3 607 193 3460\n\t\tf 3 9565 -9564 9566\n\t\tmu 0 3 361 193 607\n\t\tf 3 9567 9568 -9567\n\t\tmu 0 3 607 3503 361\n\t\tf 3 9569 -9568 -9561\n\t\tmu 0 3 2998 3503 607\n\t\tf 3 9570 -9549 9571\n\t\tmu 0 3 3526 363 772\n\t\tf 3 9572 9573 9574\n\t\tmu 0 3 14392 399 14393\n\t\tf 3 -9571 9575 9576\n\t\tmu 0 3 363 3526 1937\n\t\tf 3 9577 -9555 -9577\n\t\tmu 0 3 1937 957 363\n\t\tf 3 -9556 9578 9579\n\t\tmu 0 3 2998 957 3369\n\t\tf 3 -9579 -9578 9580\n\t\tmu 0 3 3369 957 1937\n\t\tf 3 9581 9582 -9580\n\t\tmu 0 3 3369 6011 2998\n\t\tf 3 -9569 9583 9584\n\t\tmu 0 3 361 3503 45\n\t\tf 3 -9583 9585 9586\n\t\tmu 0 3 2998 6011 45\n\t\tf 3 -9584 -9570 -9587\n\t\tmu 0 3 45 3503 2998\n\t\tf 3 9587 9588 -9585\n\t\tmu 0 3 45 3586 361\n\t\tf 3 9589 9590 -9581\n\t\tmu 0 3 1937 6182 3369\n\t\tf 3 9591 9592 9593\n\t\tmu 0 3 3070 4005 5530\n\t\tf 3 9594 9595 -9594\n\t\tmu 0 3 5530 4465 3070\n\t\tf 3 -9596 9596 9597\n\t\tmu 0 3 3070 4465 1006\n\t\tf 3 9598 9599 -9598\n\t\tmu 0 3 1006 2476 3070\n\t\tf 3 9600 9601 9602\n\t\tmu 0 3 14394 14395 1966\n\t\tf 3 9603 9604 -9603\n\t\tmu 0 3 1966 863 14396\n\t\tf 3 9605 -9605 9606\n\t\tmu 0 3 4942 14397 863\n\t\tf 3 9607 9608 -9607\n\t\tmu 0 3 863 5510 4942\n\t\tf 3 9609 9610 9611\n\t\tmu 0 3 5319 14398 14399\n\t\tf 3 9612 9613 9614\n\t\tmu 0 3 14400 14401 2341\n\t\tf 3 9615 9616 -9615\n\t\tmu 0 3 2341 532 14402\n\t\tf 3 9617 -9602 9618\n\t\tmu 0 3 532 1966 14403\n\t\tf 3 9619 -9617 -9619\n\t\tmu 0 3 14404 14405 532\n\t\tf 3 9620 -9614 9621\n\t\tmu 0 3 4153 2341 14406\n\t\tf 3 9622 9623 -9622\n\t\tmu 0 3 14407 2330 4153\n\t\tf 3 9624 9625 9626\n\t\tmu 0 3 6355 14408 5319\n\t\tf 3 9627 9628 -9627\n\t\tmu 0 3 5319 1701 6355\n\t\tf 3 9629 -9628 -9612\n\t\tmu 0 3 14409 1701 5319\n\t\tf 3 9630 -9624 9631\n\t\tmu 0 3 2184 4153 2330\n\t\tf 3 9632 9633 -9632\n\t\tmu 0 3 2330 2624 2184\n\t\tf 3 9634 -9625 9635\n\t\tmu 0 3 14410 14411 6355\n\t\tf 3 9636 -9634 9637\n\t\tmu 0 3 5908 2184 2624\n\t\tf 3 9638 9639 -9638\n\t\tmu 0 3 2624 3043 5908\n\t\tf 3 9640 9641 9642\n\t\tmu 0 3 1798 14412 14413\n\t\tf 3 9643 9644 -9643\n\t\tmu 0 3 14414 4856 1798\n\t\tf 3 9645 -9644 -9636\n\t\tmu 0 3 6355 4856 14415\n\t\tf 3 9646 -9609 9647\n\t\tmu 0 3 2846 4942 5510\n\t\tf 3 9648 9649 9650\n\t\tmu 0 3 14416 14417 3690\n\t\tf 3 9651 -9650 9652\n\t\tmu 0 3 3493 3690 14418\n\t\tf 3 9653 9654 -9653\n\t\tmu 0 3 14419 5371 3493\n\t\tf 3 9655 -9655 9656\n\t\tmu 0 3 3946 3493 5371\n\t\tf 3 9657 9658 -9657\n\t\tmu 0 3 5371 3623 3946\n\t\tf 3 -9659 9659 9660\n\t\tmu 0 3 3946 3623 989\n\t\tf 3 9661 9662 -9661\n\t\tmu 0 3 989 6446 3946\n\t\tf 3 9663 9664 9665\n\t\tmu 0 3 14420 14421 4790\n\t\tf 3 9666 9667 -9666\n\t\tmu 0 3 4790 3167 14422\n\t\tf 3 9668 9669 9670\n\t\tmu 0 3 14423 2846 3908\n\t\tf 3 9671 9672 -9671\n\t\tmu 0 3 3908 1153 14424\n\t\tf 3 9673 -9665 9674\n\t\tmu 0 3 1153 4790 14425\n\t\tf 3 9675 -9673 -9675\n\t\tmu 0 3 14426 14427 1153\n\t\tf 3 9676 -9670 -9648\n\t\tmu 0 3 5510 3908 2846\n\t\tf 3 9677 9678 -9651\n\t\tmu 0 3 3690 2380 14428\n\t\tf 3 9679 -9679 9680\n\t\tmu 0 3 1006 14429 2380\n\t\tf 3 9681 -9599 -9681\n\t\tmu 0 3 2380 2476 1006\n\t\tf 3 9682 9683 9684\n\t\tmu 0 3 5487 1535 1714\n\t\tf 3 9685 9686 -9685\n\t\tmu 0 3 1714 1646 5487\n\t\tf 3 9687 -9686 9688\n\t\tmu 0 3 1062 1646 1714\n\t\tf 3 9689 9690 -9689\n\t\tmu 0 3 1714 2580 1062\n\t\tf 3 9691 9692 9693\n\t\tmu 0 3 1702 14430 14431\n\t\tf 3 9694 9695 -9694\n\t\tmu 0 3 14432 4222 1702\n\t\tf 3 -9695 9696 9697\n\t\tmu 0 3 4222 14433 14434\n\t\tf 3 9698 9699 -9698\n\t\tmu 0 3 14435 982 4222\n\t\tf 3 -9691 9700 9701\n\t\tmu 0 3 1062 2580 6257\n\t\tf 3 9702 9703 -9702\n\t\tmu 0 3 6257 3178 1062\n\t\tf 3 9704 -9699 9705\n\t\tmu 0 3 4249 982 14436\n\t\tf 3 9706 9707 -9706\n\t\tmu 0 3 14437 14438 4249\n\t\tf 3 9708 9709 9710\n\t\tmu 0 3 256 924 2947\n\t\tf 3 9711 9712 -9711\n\t\tmu 0 3 2947 2718 256\n\t\tf 3 9713 -9712 9714\n\t\tmu 0 3 6270 2718 2947\n\t\tf 3 9715 9716 -9715\n\t\tmu 0 3 2947 3846 6270\n\t\tf 3 9717 -9709 9718\n\t\tmu 0 3 2395 924 256\n\t\tf 3 9719 9720 -9719\n\t\tmu 0 3 256 3260 2395\n\t\tf 3 9721 9722 9723\n\t\tmu 0 3 6366 2632 3691\n\t\tf 3 9724 9725 -9724\n\t\tmu 0 3 3691 6535 6366\n\t\tf 3 9726 -9723 9727\n\t\tmu 0 3 14439 3691 2632\n\t\tf 3 9728 9729 -9728\n\t\tmu 0 3 2632 14440 14441\n\t\tf 3 9730 9731 9732\n\t\tmu 0 3 1678 127 5652\n\t\tf 3 9733 9734 -9733\n\t\tmu 0 3 5652 725 1678\n\t\tf 3 9735 -9732 9736\n\t\tmu 0 3 4311 5652 127\n\t\tf 3 9737 9738 -9737\n\t\tmu 0 3 127 1782 4311\n\t\tf 3 -9734 9739 9740\n\t\tmu 0 3 725 5652 4969\n\t\tf 3 9741 9742 -9741\n\t\tmu 0 3 4969 1424 725\n\t\tf 3 -9736 9743 9744\n\t\tmu 0 3 5652 4311 5867\n\t\tf 3 9745 -9740 -9745\n\t\tmu 0 3 5867 4969 5652\n\t\tf 3 9746 -9735 9747\n\t\tmu 0 3 6297 1678 725\n\t\tf 3 9748 9749 -9748\n\t\tmu 0 3 725 1425 6297\n\t\tf 3 -9749 -9743 9750\n\t\tmu 0 3 1425 725 1424\n\t\tf 3 9751 9752 -9751\n\t\tmu 0 3 1424 4904 1425\n\t\tf 3 9753 9754 9755\n\t\tmu 0 3 698 5470 2613\n\t\tf 3 9756 9757 -9756\n\t\tmu 0 3 2613 4434 698\n\t\tf 3 9758 -9757 9759\n\t\tmu 0 3 2994 4434 2613\n\t\tf 3 9760 9761 -9760\n\t\tmu 0 3 2613 897 2994\n\t\tf 3 9762 -9755 9763\n\t\tmu 0 3 14442 2613 5470\n\t\tf 3 9764 9765 -9764\n\t\tmu 0 3 5470 14443 14444\n\t\tf 3 9766 -9759 9767\n\t\tmu 0 3 14445 4434 2994\n\t\tf 3 9768 9769 -9768\n\t\tmu 0 3 2994 14446 14447\n\t\tf 3 9770 -9761 9771\n\t\tmu 0 3 14448 897 2613\n\t\tf 3 -9763 9772 -9772\n\t\tmu 0 3 2613 14449 14450\n\t\tf 3 9773 9774 9775\n\t\tmu 0 3 4388 3478 4168\n\t\tf 3 9776 9777 -9776\n\t\tmu 0 3 4168 3822 4388\n\t\tf 3 9778 -9775 9779\n\t\tmu 0 3 14451 4168 3478\n\t\tf 3 9780 9781 -9780\n\t\tmu 0 3 3478 14452 14453\n\t\tf 3 9782 9783 9784\n\t\tmu 0 3 4595 5514 2374\n\t\tf 3 9785 9786 -9785\n\t\tmu 0 3 2374 594 4595\n\t\tf 3 9787 -9783 9788\n\t\tmu 0 3 4686 5514 4595\n\t\tf 3 9789 9790 -9789\n\t\tmu 0 3 4595 766 4686\n\t\tf 3 9791 -9786 9792\n\t\tmu 0 3 2861 594 2374\n\t\tf 3 9793 9794 -9793\n\t\tmu 0 3 2374 1399 2861\n\t\tf 3 9795 9796 9797\n\t\tmu 0 3 980 506 6224\n\t\tf 3 9798 9799 -9798\n\t\tmu 0 3 6224 59 980\n\t\tf 3 9800 -9797 9801\n\t\tmu 0 3 14454 6224 506\n\t\tf 3 9802 9803 -9802\n\t\tmu 0 3 506 14455 14456\n\t\tf 3 9804 9805 9806\n\t\tmu 0 3 2075 3972 4493\n\t\tf 3 9807 9808 -9807\n\t\tmu 0 3 4493 30 2075\n\t\tf 3 9809 -9806 9810\n\t\tmu 0 3 14457 4493 3972\n\t\tf 3 9811 9812 -9811\n\t\tmu 0 3 3972 14458 14459\n\t\tf 3 9813 9814 9815\n\t\tmu 0 3 14460 14461 1254\n\t\tf 3 9816 9817 -9816\n\t\tmu 0 3 1254 3793 14462\n\t\tf 3 9818 9819 9820\n\t\tmu 0 3 4553 3135 5677\n\t\tf 3 9821 9822 -9821\n\t\tmu 0 3 5677 642 4553\n\t\tf 3 9823 9824 9825\n\t\tmu 0 3 14463 14464 5509\n\t\tf 3 9826 9827 -9826\n\t\tmu 0 3 5509 712 14465\n\t\tf 3 9828 9829 9830\n\t\tmu 0 3 104 6430 3034\n\t\tf 3 9831 9832 -9831\n\t\tmu 0 3 3034 5602 104\n\t\tf 3 9833 9834 9835\n\t\tmu 0 3 3000 2744 5220\n\t\tf 3 9836 9837 -9836\n\t\tmu 0 3 5220 699 3000\n\t\tf 3 9838 -9838 9839\n\t\tmu 0 3 3158 3000 699\n\t\tf 3 9840 -9818 -9840\n\t\tmu 0 3 699 1573 3158\n\t\tf 3 9841 -9835 9842\n\t\tmu 0 3 3336 5220 2744\n\t\tf 3 9843 9844 -9843\n\t\tmu 0 3 2744 4013 3336\n\t\tf 3 9845 -9815 9846\n\t\tmu 0 3 2653 1095 2483\n\t\tf 3 9847 9848 -9847\n\t\tmu 0 3 2483 5186 2653\n\t\tf 3 9849 9850 9851\n\t\tmu 0 3 2358 1953 5257\n\t\tf 3 9852 9853 -9852\n\t\tmu 0 3 5257 6105 2358\n\t\tf 3 9854 -9854 9855\n\t\tmu 0 3 5682 2358 6105\n\t\tf 3 9856 -9828 -9856\n\t\tmu 0 3 6105 3973 5682\n\t\tf 3 9857 -9851 9858\n\t\tmu 0 3 4603 5257 1953\n\t\tf 3 9859 9860 -9859\n\t\tmu 0 3 1953 1457 4603\n\t\tf 3 9861 -9825 9862\n\t\tmu 0 3 5237 3306 5753\n\t\tf 3 9863 9864 -9863\n\t\tmu 0 3 5753 927 5237\n\t\tf 3 9865 9866 9867\n\t\tmu 0 3 1116 14466 14467\n\t\tf 3 9868 9869 -9868\n\t\tmu 0 3 14468 1537 1116\n\t\tf 3 -9866 9870 9871\n\t\tmu 0 3 14469 1116 4888\n\t\tf 3 9872 9873 -9872\n\t\tmu 0 3 4888 14470 14471\n\t\tf 3 9874 -9870 9875\n\t\tmu 0 3 3607 1116 1537\n\t\tf 3 9876 9877 -9876\n\t\tmu 0 3 1537 4078 3607\n\t\tf 3 9878 -9871 9879\n\t\tmu 0 3 6038 4888 1116\n\t\tf 3 -9875 9880 -9880\n\t\tmu 0 3 1116 3607 6038\n\t\tf 3 -9881 9881 9882\n\t\tmu 0 3 6038 3607 14472\n\t\tf 3 9883 9884 -9883\n\t\tmu 0 3 14473 14474 6038\n\t\tf 3 9885 -9849 9886\n\t\tmu 0 3 6169 1334 14475\n\t\tf 3 9887 -9820 -9887\n\t\tmu 0 3 14476 14477 6169\n\t\tf 3 9888 -9865 9889\n\t\tmu 0 3 3130 4420 14478\n\t\tf 3 9890 -9830 -9890\n\t\tmu 0 3 14479 14480 3130\n\t\tf 3 9891 9892 9893\n\t\tmu 0 3 4392 6399 5363\n\t\tf 3 9894 9895 -9894\n\t\tmu 0 3 5363 593 4392\n\t\tf 3 9896 -9896 9897\n\t\tmu 0 3 6168 4392 593\n\t\tf 3 9898 9899 -9898\n\t\tmu 0 3 593 4316 6168\n\t\tf 3 9900 -9900 9901\n\t\tmu 0 3 5706 6168 4316\n\t\tf 3 9902 9903 -9902\n\t\tmu 0 3 4316 1454 5706\n\t\tf 3 9904 -9904 9905\n\t\tmu 0 3 4886 5706 1454\n\t\tf 3 9906 9907 -9906\n\t\tmu 0 3 1454 682 4886\n\t\tf 3 9908 -9893 9909\n\t\tmu 0 3 3572 5363 6399\n\t\tf 3 9910 9911 -9910\n\t\tmu 0 3 6399 5713 3572\n\t\tf 3 9912 -9912 9913\n\t\tmu 0 3 843 3572 5713\n\t\tf 3 9914 9915 -9914\n\t\tmu 0 3 5713 1613 843\n\t\tf 3 9916 -9916 9917\n\t\tmu 0 3 6262 843 1613\n\t\tf 3 9918 9919 -9918\n\t\tmu 0 3 1613 6536 6262\n\t\tf 3 9920 9921 9922\n\t\tmu 0 3 2589 312 2056\n\t\tf 3 9923 9924 -9923\n\t\tmu 0 3 2056 3001 2589\n\t\tf 3 -9924 9925 9926\n\t\tmu 0 3 3001 2056 6251\n\t\tf 3 9927 9928 -9927\n\t\tmu 0 3 6251 5563 3001\n\t\tf 3 -9921 9929 9930\n\t\tmu 0 3 312 2589 2095\n\t\tf 3 9931 9932 -9931\n\t\tmu 0 3 2095 2648 312\n\t\tf 3 9933 9934 9935\n\t\tmu 0 3 14481 14482 5511\n\t\tf 3 9936 9937 -9936\n\t\tmu 0 3 5511 5944 14483\n\t\tf 3 -9937 9938 9939\n\t\tmu 0 3 5944 5511 3419\n\t\tf 3 9940 9941 -9940\n\t\tmu 0 3 3419 5017 5944\n\t\tf 3 9942 9943 9944\n\t\tmu 0 3 5178 5644 14484\n\t\tf 3 9945 9946 -9945\n\t\tmu 0 3 14485 14486 5178\n\t\tf 3 -9943 9947 9948\n\t\tmu 0 3 5644 5178 1042\n\t\tf 3 9949 9950 -9949\n\t\tmu 0 3 1042 3020 5644\n\t\tf 3 9951 9952 9953\n\t\tmu 0 3 3528 6073 2581\n\t\tf 3 -9954 9954 9955\n\t\tmu 0 3 3528 2581 5399\n\t\tf 3 9956 9957 -9955\n\t\tmu 0 3 2581 1040 5399\n\t\tf 3 -9956 9958 9959\n\t\tmu 0 3 3528 5399 1114\n\t\tf 3 9960 9961 -9959\n\t\tmu 0 3 5399 1269 1114\n\t\tf 3 -9960 9962 9963\n\t\tmu 0 3 3528 1114 5548\n\t\tf 3 9964 9965 9966\n\t\tmu 0 3 14487 14488 14489\n\t\tf 3 9967 9968 -9967\n\t\tmu 0 3 14490 14491 14492\n\t\tf 3 -9969 9969 9970\n\t\tmu 0 3 14493 14494 14495\n\t\tf 3 9971 9972 -9971\n\t\tmu 0 3 14496 14497 14498\n\t\tf 3 -9968 9973 9974\n\t\tmu 0 3 14499 14500 14501\n\t\tf 3 9975 9976 -9975\n\t\tmu 0 3 14502 14503 14504\n\t\tf 3 -9970 -9977 9977\n\t\tmu 0 3 14505 14506 14507\n\t\tf 3 -9976 9978 9979\n\t\tmu 0 3 14508 14509 14510\n\t\tf 3 9980 9981 -9980\n\t\tmu 0 3 14511 14512 14513\n\t\tf 3 -9982 9982 9983\n\t\tmu 0 3 14514 14515 14516\n\t\tf 3 9984 9985 -9984\n\t\tmu 0 3 14517 14518 14519\n\t\tf 3 -9986 9986 -9978\n\t\tmu 0 3 14520 14521 14522\n\t\tf 3 -9965 9987 9988\n\t\tmu 0 3 14523 14524 14525\n\t\tf 3 9989 9990 9991\n\t\tmu 0 3 14526 14527 14528\n\t\tf 3 -9973 9992 9993\n\t\tmu 0 3 14529 14530 14531\n\t\tf 3 9994 -9988 -9994\n\t\tmu 0 3 14532 14533 14534\n\t\tf 3 9995 -9972 9996\n\t\tmu 0 3 14535 14536 14537\n\t\tf 3 -9993 -9996 9997\n\t\tmu 0 3 14538 14539 14540\n\t\tf 3 9998 9999 -9997\n\t\tmu 0 3 14541 14542 14543\n\t\tf 3 10000 -9985 10001\n\t\tmu 0 3 14544 14545 14546\n\t\tf 3 -9987 -10001 10002\n\t\tmu 0 3 14547 14548 14549\n\t\tf 3 10003 -9999 -10003\n\t\tmu 0 3 14550 14551 14552\n\t\tf 3 10004 10005 -10002\n\t\tmu 0 3 14553 14554 14555\n\t\tf 3 10006 10007 -9998\n\t\tmu 0 3 14556 14557 14558\n\t\tf 3 10008 10009 10010\n\t\tmu 0 3 14559 14560 14561\n\t\tf 3 10011 10012 -10011\n\t\tmu 0 3 14562 14563 14564\n\t\tf 3 -10009 10013 10014\n\t\tmu 0 3 14565 14566 14567\n\t\tf 3 10015 10016 -10015\n\t\tmu 0 3 14568 14569 14570\n\t\tf 3 10017 10018 10019\n\t\tmu 0 3 14571 14572 14573\n\t\tf 3 10020 10021 -10020\n\t\tmu 0 3 14574 14575 14576\n\t\tf 3 -10021 10022 10023\n\t\tmu 0 3 14577 14578 14579\n\t\tf 3 10024 10025 -10024\n\t\tmu 0 3 14580 14581 14582\n\t\tf 3 10026 10027 10028\n\t\tmu 0 3 14583 14584 14585\n\t\tf 3 10029 10030 10031\n\t\tmu 0 3 14586 14587 14588\n\t\tf 3 10032 10033 -10032\n\t\tmu 0 3 14589 14590 14591\n\t\tf 3 -10018 10034 10035\n\t\tmu 0 3 14592 14593 14594\n\t\tf 3 -10033 10036 -10036\n\t\tmu 0 3 14595 14596 14597\n\t\tf 3 -10030 10037 10038\n\t\tmu 0 3 14598 14599 14600\n\t\tf 3 10039 10040 -10039\n\t\tmu 0 3 14601 14602 14603\n\t\tf 3 10041 10042 10043\n\t\tmu 0 3 14604 14605 14606\n\t\tf 3 -10042 10044 -10029\n\t\tmu 0 3 14607 14608 14609\n\t\tf 3 10045 10046 -10044\n\t\tmu 0 3 14610 14611 14612\n\t\tf 3 -10040 10047 10048\n\t\tmu 0 3 14613 14614 14615\n\t\tf 3 10049 10050 -10049\n\t\tmu 0 3 14616 14617 14618\n\t\tf 3 -10046 10051 10052\n\t\tmu 0 3 14619 14620 14621\n\t\tf 3 -10050 10053 10054\n\t\tmu 0 3 14622 14623 14624\n\t\tf 3 10055 10056 -10055\n\t\tmu 0 3 14625 14626 14627\n\t\tf 3 10057 10058 10059\n\t\tmu 0 3 14628 14629 14630\n\t\tf 3 10060 10061 -10060\n\t\tmu 0 3 14631 14632 14633\n\t\tf 3 -10062 10062 -10053\n\t\tmu 0 3 14634 14635 14636\n\t\tf 3 -10025 10063 10064\n\t\tmu 0 3 14637 14638 14639\n\t\tf 3 10065 10066 10067\n\t\tmu 0 3 14640 14641 14642\n\t\tf 3 10068 10069 -10068\n\t\tmu 0 3 14643 14644 14645\n\t\tf 3 -10066 10070 10071\n\t\tmu 0 3 14646 14647 14648\n\t\tf 3 10072 10073 -10072\n\t\tmu 0 3 14649 14650 14651\n\t\tf 3 -10073 10074 10075\n\t\tmu 0 3 14652 14653 14654\n\t\tf 3 10076 10077 -10076\n\t\tmu 0 3 14655 14656 14657\n\t\tf 3 10078 -10077 10079\n\t\tmu 0 3 14658 14659 14660\n\t\tf 3 10080 10081 -10080\n\t\tmu 0 3 14661 14662 14663\n\t\tf 3 10082 10083 10084\n\t\tmu 0 3 14664 14665 14666\n\t\tf 3 10085 10086 -10085\n\t\tmu 0 3 14667 14668 14669\n\t\tf 3 10087 10088 10089\n\t\tmu 0 3 14670 14671 14672\n\t\tf 3 10090 10091 -10090\n\t\tmu 0 3 14673 14674 14675\n\t\tf 3 -10083 10092 10093\n\t\tmu 0 3 14676 14677 14678\n\t\tf 3 -10091 10094 -10094\n\t\tmu 0 3 14679 14680 14681\n\t\tf 3 -10088 10095 -10065\n\t\tmu 0 3 14682 14683 14684\n\t\tf 3 -10069 10096 10097\n\t\tmu 0 3 14685 14686 14687\n\t\tf 3 -10016 10098 -10098\n\t\tmu 0 3 14688 14689 14690\n\t\tf 3 10099 10100 10101\n\t\tmu 0 3 14691 14692 14693\n\t\tf 3 10102 10103 -10102\n\t\tmu 0 3 14694 14695 14696\n\t\tf 3 -10104 10104 10105\n\t\tmu 0 3 14697 14698 14699\n\t\tf 3 10106 10107 -10106\n\t\tmu 0 3 14700 14701 14702\n\t\tf 3 10108 10109 10110\n\t\tmu 0 3 14703 14704 14705\n\t\tf 3 10111 10112 -10111\n\t\tmu 0 3 14706 14707 14708\n\t\tf 3 10113 10114 10115\n\t\tmu 0 3 14709 14710 14711\n\t\tf 3 -10113 10116 -10116\n\t\tmu 0 3 14712 14713 14714\n\t\tf 3 10117 -10107 10118\n\t\tmu 0 3 14715 14716 14717\n\t\tf 3 10119 10120 -10119\n\t\tmu 0 3 14718 14719 14720\n\t\tf 3 10121 10122 10123\n\t\tmu 0 3 14721 14722 14723\n\t\tf 3 -10114 10124 -10124\n\t\tmu 0 3 14724 14725 14726\n\t\tf 3 10125 10126 10127\n\t\tmu 0 3 14727 14728 14729\n\t\tf 3 10128 10129 -10128\n\t\tmu 0 3 14730 14731 14732\n\t\tf 3 -10127 10130 10131\n\t\tmu 0 3 14733 14734 14735\n\t\tf 3 10132 10133 -10132\n\t\tmu 0 3 14736 14737 14738\n\t\tf 3 -10130 10134 10135\n\t\tmu 0 3 14739 14740 14741\n\t\tf 3 10136 10137 -10136\n\t\tmu 0 3 14742 14743 14744\n\t\tf 3 10138 10139 10140\n\t\tmu 0 3 14745 14746 14747\n\t\tf 3 10141 10142 -10141\n\t\tmu 0 3 14748 14749 14750\n\t\tf 3 -10142 10143 10144\n\t\tmu 0 3 14751 14752 14753\n\t\tf 3 10145 10146 -10145\n\t\tmu 0 3 14754 14755 14756\n\t\tf 3 10147 10148 10149\n\t\tmu 0 3 14757 14758 14759\n\t\tf 3 10150 10151 -10150\n\t\tmu 0 3 14760 14761 14762\n\t\tf 3 -10151 10152 10153\n\t\tmu 0 3 14763 14764 14765\n\t\tf 3 10154 10155 -10154\n\t\tmu 0 3 14766 14767 14768\n\t\tf 3 10156 -10149 10157\n\t\tmu 0 3 14769 14770 14771\n\t\tf 3 10158 10159 -10158\n\t\tmu 0 3 14772 14773 14774\n\t\tf 3 -10157 10160 10161\n\t\tmu 0 3 14775 14776 14777\n\t\tf 3 10162 -10153 -10162\n\t\tmu 0 3 14778 14779 14780\n\t\tf 3 -10148 10163 10164\n\t\tmu 0 3 14781 14782 14783\n\t\tf 3 10165 10166 -10165\n\t\tmu 0 3 14784 14785 14786\n\t\tf 3 -10159 -10167 10167\n\t\tmu 0 3 14787 14788 14789\n\t\tf 3 10168 10169 -10168\n\t\tmu 0 3 14790 14791 14792\n\t\tf 3 10170 10171 10172\n\t\tmu 0 3 14793 14794 14795\n\t\tf 3 10173 10174 -10173\n\t\tmu 0 3 14796 14797 14798\n\t\tf 3 -10172 -9770 10175\n\t\tmu 0 3 14799 14800 14801\n\t\tf 3 10176 10177 -10176\n\t\tmu 0 3 14802 14803 14804\n\t\tf 3 -10174 10178 10179\n\t\tmu 0 3 14805 14806 14807\n\t\tf 3 10180 10181 -10180\n\t\tmu 0 3 14808 14809 14810\n\t\tf 3 10182 -10179 10183\n\t\tmu 0 3 14811 14812 14813\n\t\tf 3 -10178 10184 -10184\n\t\tmu 0 3 14814 14815 14816\n\t\tf 3 10185 10186 10187\n\t\tmu 0 3 14817 14818 14819\n\t\tf 3 10188 10189 -10188\n\t\tmu 0 3 14820 14821 14822\n\t\tf 3 -10189 10190 10191\n\t\tmu 0 3 14823 14824 14825\n\t\tf 3 10192 10193 -10192\n\t\tmu 0 3 14826 14827 14828\n\t\tf 3 10194 10195 10196\n\t\tmu 0 3 14829 14830 14831\n\t\tf 3 10197 10198 -10197\n\t\tmu 0 3 14832 14833 14834\n\t\tf 3 -10199 10199 10200\n\t\tmu 0 3 14835 14836 14837\n\t\tf 3 10201 10202 -10201\n\t\tmu 0 3 14838 14839 14840\n\t\tf 3 -10196 10203 10204\n\t\tmu 0 3 14841 14842 14843\n\t\tf 3 10205 10206 -10205\n\t\tmu 0 3 14844 14845 14846\n\t\tf 3 10207 10208 10209\n\t\tmu 0 3 14847 14848 14849\n\t\tf 3 10210 10211 -10210\n\t\tmu 0 3 14850 14851 14852\n\t\tf 3 -10211 10212 10213\n\t\tmu 0 3 14853 14854 14855\n\t\tf 3 10214 10215 -10214\n\t\tmu 0 3 14856 14857 14858\n\t\tf 3 10216 10217 10218\n\t\tmu 0 3 14859 14860 14861\n\t\tf 3 10219 10220 -10219\n\t\tmu 0 3 14862 14863 14864\n\t\tf 3 -10220 10221 10222\n\t\tmu 0 3 14865 14866 14867\n\t\tf 3 10223 10224 -10223\n\t\tmu 0 3 14868 14869 14870\n\t\tf 3 10225 10226 10227\n\t\tmu 0 3 14871 14872 14873\n\t\tf 3 10228 10229 -10228\n\t\tmu 0 3 14874 14875 14876\n\t\tf 3 10230 10231 10232\n\t\tmu 0 3 14877 14878 14879\n\t\tf 3 10233 10234 -10233\n\t\tmu 0 3 14880 14881 14882\n\t\tf 3 10235 10236 10237\n\t\tmu 0 3 14883 14884 14885\n\t\tf 3 10238 10239 -10238\n\t\tmu 0 3 14886 14887 14888\n\t\tf 3 10240 10241 10242\n\t\tmu 0 3 14889 14890 14891\n\t\tf 3 10243 10244 -10243\n\t\tmu 0 3 14892 14893 14894\n\t\tf 3 10245 10246 10247\n\t\tmu 0 3 14895 14896 14897\n\t\tf 3 10248 10249 -10248\n\t\tmu 0 3 14898 14899 14900\n\t\tf 3 -10246 10250 10251\n\t\tmu 0 3 14901 14902 14903\n\t\tf 3 -10229 10252 -10252\n\t\tmu 0 3 14904 14905 14906\n\t\tf 3 10253 -10249 10254\n\t\tmu 0 3 14907 14908 14909\n\t\tf 3 10255 10256 -10255\n\t\tmu 0 3 14910 14911 14912\n\t\tf 3 10257 10258 10259\n\t\tmu 0 3 14913 14914 14915\n\t\tf 3 -10226 10260 -10260\n\t\tmu 0 3 14916 14917 14918\n\t\tf 3 10261 10262 10263\n\t\tmu 0 3 14919 14920 14921\n\t\tf 3 10264 10265 -10264\n\t\tmu 0 3 14922 14923 14924\n\t\tf 3 -10262 10266 10267\n\t\tmu 0 3 14925 14926 14927\n\t\tf 3 -10239 10268 -10268\n\t\tmu 0 3 14928 14929 14930\n\t\tf 3 10269 -10265 10270\n\t\tmu 0 3 14931 14932 14933\n\t\tf 3 10271 10272 -10271\n\t\tmu 0 3 14934 14935 14936\n\t\tf 3 10273 10274 10275\n\t\tmu 0 3 14937 14938 14939\n\t\tf 3 -10236 10276 -10276\n\t\tmu 0 3 14940 14941 14942\n\t\tf 3 10277 10278 10279\n\t\tmu 0 3 14943 14944 14945\n\t\tf 3 10280 10281 -10280\n\t\tmu 0 3 14946 14947 14948\n\t\tf 3 10282 -10282 10283\n\t\tmu 0 3 14949 14950 14951\n\t\tf 3 10284 10285 -10284\n\t\tmu 0 3 14952 14953 14954\n\t\tf 3 -10278 10286 10287\n\t\tmu 0 3 14955 14956 14957\n\t\tf 3 10288 10289 -10288\n\t\tmu 0 3 14958 14959 14960\n\t\tf 3 -9884 -10287 10290\n\t\tmu 0 3 14961 14962 14963\n\t\tf 3 -10283 10291 -10291\n\t\tmu 0 3 14964 14965 14966\n\t\tf 3 -10232 10292 10293\n\t\tmu 0 3 14967 14968 14969\n\t\tf 3 -10258 10294 -10294\n\t\tmu 0 3 14970 14971 14972\n\t\tf 3 -10242 10295 10296\n\t\tmu 0 3 14973 14974 14975\n\t\tf 3 -10274 10297 -10297\n\t\tmu 0 3 14976 14977 14978\n\t\tf 3 10298 10299 10300\n\t\tmu 0 3 14979 14980 14981\n\t\tf 3 10301 10302 -10301\n\t\tmu 0 3 14982 14983 14984\n\t\tf 3 -10299 10303 10304\n\t\tmu 0 3 14985 14986 14987\n\t\tf 3 10305 10306 -10305\n\t\tmu 0 3 14988 14989 14990\n\t\tf 3 -10306 10307 10308\n\t\tmu 0 3 14991 14992 14993\n\t\tf 3 10309 10310 -10309\n\t\tmu 0 3 14994 14995 14996\n\t\tf 3 -10310 10311 10312\n\t\tmu 0 3 14997 14998 14999\n\t\tf 3 10313 10314 -10313\n\t\tmu 0 3 15000 15001 15002\n\t\tf 3 -10302 10315 10316\n\t\tmu 0 3 15003 15004 15005\n\t\tf 3 10317 10318 -10317\n\t\tmu 0 3 15006 15007 15008\n\t\tf 3 -10318 10319 10320\n\t\tmu 0 3 15009 15010 15011\n\t\tf 3 10321 10322 -10321\n\t\tmu 0 3 15012 15013 15014\n\t\tf 3 -10322 10323 10324\n\t\tmu 0 3 15015 15016 15017\n\t\tf 3 10325 10326 -10325\n\t\tmu 0 3 15018 15019 15020\n\t\tf 3 10327 10328 10329\n\t\tmu 0 3 15021 15022 15023\n\t\tf 3 10330 10331 -10330\n\t\tmu 0 3 15024 15025 15026\n\t\tf 3 10332 -10329 10333\n\t\tmu 0 3 15027 15028 15029\n\t\tf 3 10334 10335 -10334\n\t\tmu 0 3 15030 15031 15032\n\t\tf 3 10336 -10332 10337\n\t\tmu 0 3 15033 15034 15035\n\t\tf 3 10338 10339 -10338\n\t\tmu 0 3 15036 15037 15038\n\t\tf 3 10340 10341 10342\n\t\tmu 0 3 15039 15040 15041\n\t\tf 3 10343 10344 -10343\n\t\tmu 0 3 15042 15043 15044\n\t\tf 3 10345 -10342 10346\n\t\tmu 0 3 15045 15046 15047\n\t\tf 3 10347 10348 -10347\n\t\tmu 0 3 15048 15049 15050\n\t\tf 3 10349 10350 10351\n\t\tmu 0 3 15051 15052 15053\n\t\tf 3 10352 10353 -10352\n\t\tmu 0 3 15054 15055 15056\n\t\tf 3 10354 -10354 10355\n\t\tmu 0 3 15057 15058 15059\n\t\tf 3 10356 10357 -10356\n\t\tmu 0 3 15060 15061 15062\n\t\tf 3 10358 10359 10360\n\t\tmu 0 3 15063 15064 15065\n\t\tf 3 -10361 10361 10362\n\t\tmu 0 3 15066 15067 15068\n\t\tf 3 10363 10364 -10362\n\t\tmu 0 3 15069 15070 15071\n\t\tf 3 10365 10366 -10364\n\t\tmu 0 3 15072 15073 15074\n\t\tf 3 10367 10368 -10365\n\t\tmu 0 3 15075 15076 15077\n\t\tf 3 -10363 10369 10370\n\t\tmu 0 3 15078 15079 15080\n\t\tf 3 10371 10372 10373\n\t\tmu 0 3 2538 6511 1355\n\t\tf 3 10374 10375 -10374\n\t\tmu 0 3 1355 3002 2538\n\t\tf 3 10376 -10376 10377\n\t\tmu 0 3 6186 2538 3002\n\t\tf 3 10378 10379 -10378\n\t\tmu 0 3 3002 623 6186\n\t\tf 3 10380 -10380 10381\n\t\tmu 0 3 2582 6186 623\n\t\tf 3 10382 10383 -10382\n\t\tmu 0 3 623 3448 2582\n\t\tf 3 10384 -10384 10385\n\t\tmu 0 3 6025 2582 3448\n\t\tf 3 10386 10387 -10386\n\t\tmu 0 3 3448 2085 6025\n\t\tf 3 -10388 10388 10389\n\t\tmu 0 3 6025 2085 4349\n\t\tf 3 10390 10391 -10390\n\t\tmu 0 3 4349 528 6025\n\t\tf 3 -10392 10392 10393\n\t\tmu 0 3 6025 528 2910\n\t\tf 3 10394 -10393 10395\n\t\tmu 0 3 5452 2910 528\n\t\tf 3 -10395 10396 10397\n\t\tmu 0 3 2910 5452 4592\n\t\tf 3 10398 -10397 10399\n\t\tmu 0 3 3873 4592 5452\n\t\tf 3 -10399 10400 10401\n\t\tmu 0 3 4592 3873 5326\n\t\tf 3 10402 10403 -10402\n\t\tmu 0 3 5326 5841 4592\n\t\tf 3 10404 -10403 10405\n\t\tmu 0 3 906 5841 5326\n\t\tf 3 10406 10407 -10406\n\t\tmu 0 3 5326 1329 906\n\t\tf 3 10408 10409 -10400\n\t\tmu 0 3 5452 1913 3873\n\t\tf 3 -10409 10410 10411\n\t\tmu 0 3 1913 5452 6207\n\t\tf 3 10412 -10411 -10396\n\t\tmu 0 3 528 6207 5452\n\t\tf 3 -10413 -10391 10413\n\t\tmu 0 3 6207 528 4349\n\t\tf 3 10414 10415 -10412\n\t\tmu 0 3 6207 5379 1913\n\t\tf 3 -10415 10416 10417\n\t\tmu 0 3 5379 6207 806\n\t\tf 3 10418 -10417 -10414\n\t\tmu 0 3 4349 806 6207\n\t\tf 3 10419 10420 -10418\n\t\tmu 0 3 806 5051 5379\n\t\tf 3 10421 10422 -10405\n\t\tmu 0 3 906 4422 5841\n\t\tf 3 10423 10424 -10422\n\t\tmu 0 3 906 2527 4422\n\t\tf 3 10425 10426 -10425\n\t\tmu 0 3 2527 4759 4422\n\t\tf 3 -10426 10427 10428\n\t\tmu 0 3 4759 2527 1169\n\t\tf 3 10429 10430 -10429\n\t\tmu 0 3 1169 5842 4759\n\t\tf 3 10431 -10431 10432\n\t\tmu 0 3 1330 4759 5842\n\t\tf 3 -10427 -10432 10433\n\t\tmu 0 3 4422 4759 1330\n\t\tf 3 10434 10435 -10433\n\t\tmu 0 3 5842 1472 1330\n\t\tf 3 10436 -10436 10437\n\t\tmu 0 3 1416 1330 1472\n\t\tf 3 -10437 10438 -10434\n\t\tmu 0 3 1330 1416 4422\n\t\tf 3 10439 10440 -10438\n\t\tmu 0 3 1472 6089 1416\n\t\tf 3 10441 -10441 10442\n\t\tmu 0 3 1586 1416 6089\n\t\tf 3 -10439 -10442 10443\n\t\tmu 0 3 4422 1416 1586\n\t\tf 3 10444 10445 -10443\n\t\tmu 0 3 6089 2088 1586\n\t\tf 3 10446 -10446 10447\n\t\tmu 0 3 1591 1586 2088\n\t\tf 3 10448 10449 -10448\n\t\tmu 0 3 2088 2905 1591\n\t\tf 3 10450 -10449 10451\n\t\tmu 0 3 1821 2905 2088\n\t\tf 3 10452 10453 -10452\n\t\tmu 0 3 2088 2731 1821\n\t\tf 3 -10453 -10445 10454\n\t\tmu 0 3 2731 2088 6089\n\t\tf 3 10455 -10454 10456\n\t\tmu 0 3 2600 1821 2731\n\t\tf 3 10457 10458 -10457\n\t\tmu 0 3 2731 5843 2600\n\t\tf 3 -10459 10459 10460\n\t\tmu 0 3 2600 5843 729\n\t\tf 3 10461 10462 -10461\n\t\tmu 0 3 729 1487 2600\n\t\tf 3 10463 10464 -10455\n\t\tmu 0 3 6089 3979 2731\n\t\tf 3 -10464 -10440 10465\n\t\tmu 0 3 3979 6089 1472\n\t\tf 3 10466 10467 -10466\n\t\tmu 0 3 1472 3449 3979\n\t\tf 3 -10468 10468 10469\n\t\tmu 0 3 3979 3449 1390\n\t\tf 3 10470 10471 -10470\n\t\tmu 0 3 1390 6229 3979\n\t\tf 3 -10465 -10472 10472\n\t\tmu 0 3 2731 3979 6229\n\t\tf 3 10473 -10458 -10473\n\t\tmu 0 3 6229 5843 2731\n\t\tf 3 -10471 10474 10475\n\t\tmu 0 3 6229 1390 3230\n\t\tf 3 10476 10477 -10476\n\t\tmu 0 3 3230 5789 6229;\n\tsetAttr \".fc[5500:5999]\"\n\t\tf 3 10478 -10460 10479\n\t\tmu 0 3 5789 729 5843\n\t\tf 3 -10474 -10478 -10480\n\t\tmu 0 3 5843 6229 5789\n\t\tf 3 10480 -10477 10481\n\t\tmu 0 3 1430 5789 3230\n\t\tf 3 -10479 -10481 10482\n\t\tmu 0 3 729 5789 1430\n\t\tf 3 10483 10484 -10482\n\t\tmu 0 3 3230 4914 1430\n\t\tf 3 10485 -10485 10486\n\t\tmu 0 3 3575 1430 4914\n\t\tf 3 10487 10488 -10487\n\t\tmu 0 3 4914 5411 3575\n\t\tf 3 -10489 10489 10490\n\t\tmu 0 3 3575 5411 2320\n\t\tf 3 10491 10492 -10491\n\t\tmu 0 3 2320 2841 3575\n\t\tf 3 -10493 10493 10494\n\t\tmu 0 3 3575 2841 1733\n\t\tf 3 10495 10496 -10495\n\t\tmu 0 3 1733 296 3575\n\t\tf 3 -10486 -10497 10497\n\t\tmu 0 3 1430 3575 296\n\t\tf 3 10498 10499 -10498\n\t\tmu 0 3 296 2601 1430\n\t\tf 3 -10500 10500 -10483\n\t\tmu 0 3 1430 2601 729\n\t\tf 3 -10501 10501 10502\n\t\tmu 0 3 729 2601 1002\n\t\tf 3 10503 -10462 -10503\n\t\tmu 0 3 1002 1487 729\n\t\tf 3 10504 -10502 10505\n\t\tmu 0 3 3420 1002 2601\n\t\tf 3 -10499 10506 -10506\n\t\tmu 0 3 2601 296 3420\n\t\tf 3 -10496 10507 10508\n\t\tmu 0 3 296 1733 3744\n\t\tf 3 10509 -10507 -10509\n\t\tmu 0 3 3744 3420 296\n\t\tf 3 -10504 10510 10511\n\t\tmu 0 3 1487 1002 4998\n\t\tf 3 10512 10513 -10512\n\t\tmu 0 3 4998 6511 1487\n\t\tf 3 10514 -10511 10515\n\t\tmu 0 3 5832 4998 1002\n\t\tf 3 -10505 10516 -10516\n\t\tmu 0 3 1002 3420 5832\n\t\tf 3 -10510 10517 10518\n\t\tmu 0 3 3420 3744 693\n\t\tf 3 10519 -10517 -10519\n\t\tmu 0 3 693 5832 3420\n\t\tf 3 10520 -10520 10521\n\t\tmu 0 3 5260 5832 693\n\t\tf 3 -10515 -10521 10522\n\t\tmu 0 3 4998 5832 5260\n\t\tf 3 10523 10524 -10522\n\t\tmu 0 3 693 3771 5260\n\t\tf 3 -10524 10525 10526\n\t\tmu 0 3 3771 693 1154\n\t\tf 3 -10526 -10518 10527\n\t\tmu 0 3 1154 693 3744\n\t\tf 3 10528 10529 -10527\n\t\tmu 0 3 1154 4006 3771\n\t\tf 3 10530 -10529 10531\n\t\tmu 0 3 2477 4006 1154\n\t\tf 3 10532 10533 -10532\n\t\tmu 0 3 1154 3424 2477\n\t\tf 3 -10514 -10372 10534\n\t\tmu 0 3 1487 6511 2538\n\t\tf 3 10535 -10463 -10535\n\t\tmu 0 3 2538 2600 1487\n\t\tf 3 -10536 -10377 10536\n\t\tmu 0 3 2600 2538 6186\n\t\tf 3 10537 -10456 -10537\n\t\tmu 0 3 6186 1821 2600\n\t\tf 3 -10451 -10538 10538\n\t\tmu 0 3 2905 1821 6186\n\t\tf 3 -10381 10539 -10539\n\t\tmu 0 3 6186 2582 2905\n\t\tf 3 -10540 -10385 10540\n\t\tmu 0 3 2905 2582 6025\n\t\tf 3 10541 -10450 -10541\n\t\tmu 0 3 6025 1591 2905\n\t\tf 3 10542 -10542 -10394\n\t\tmu 0 3 2910 1591 6025\n\t\tf 3 -10447 -10543 10543\n\t\tmu 0 3 1586 1591 2910\n\t\tf 3 10544 10545 -10544\n\t\tmu 0 3 2910 6327 1586\n\t\tf 3 -10546 10546 -10444\n\t\tmu 0 3 1586 6327 4422\n\t\tf 3 -10423 -10547 10547\n\t\tmu 0 3 5841 4422 6327\n\t\tf 3 10548 -10404 -10548\n\t\tmu 0 3 6327 4592 5841\n\t\tf 3 -10549 -10545 -10398\n\t\tmu 0 3 4592 6327 2910\n\t\tf 3 10549 10550 10551\n\t\tmu 0 3 5477 3624 3424\n\t\tf 3 -10550 10552 10553\n\t\tmu 0 3 3624 5477 3235\n\t\tf 3 10554 10555 -10554\n\t\tmu 0 3 3235 5356 3624\n\t\tf 3 -10555 10556 10557\n\t\tmu 0 3 5356 3235 5261\n\t\tf 3 10558 10559 -10558\n\t\tmu 0 3 5261 3416 5356\n\t\tf 3 10560 -10559 10561\n\t\tmu 0 3 4071 3416 5261\n\t\tf 3 10562 10563 -10562\n\t\tmu 0 3 5261 4909 4071\n\t\tf 3 -10553 10564 10565\n\t\tmu 0 3 3235 5477 3744\n\t\tf 3 -10508 10566 -10566\n\t\tmu 0 3 3744 1733 3235\n\t\tf 3 -10567 -10494 10567\n\t\tmu 0 3 3235 1733 2841\n\t\tf 3 10568 -10557 -10568\n\t\tmu 0 3 2841 5261 3235\n\t\tf 3 10569 -10563 10570\n\t\tmu 0 3 2320 4909 5261\n\t\tf 3 -10569 -10492 -10571\n\t\tmu 0 3 5261 2841 2320\n\t\tf 3 -10570 -10490 10571\n\t\tmu 0 3 4909 2320 5411\n\t\tf 3 10572 10573 -10572\n\t\tmu 0 3 5411 6281 4909\n\t\tf 3 -10573 -10488 10574\n\t\tmu 0 3 6281 5411 4914\n\t\tf 3 10575 10576 -10575\n\t\tmu 0 3 4914 4337 6281\n\t\tf 3 -10576 -10484 10577\n\t\tmu 0 3 4337 4914 3230\n\t\tf 3 10578 10579 -10578\n\t\tmu 0 3 3230 2848 4337\n\t\tf 3 -10579 -10475 10580\n\t\tmu 0 3 2848 3230 1390\n\t\tf 3 10581 10582 -10581\n\t\tmu 0 3 1390 4498 2848\n\t\tf 3 10583 -10582 10584\n\t\tmu 0 3 4609 4498 1390\n\t\tf 3 -10469 10585 -10585\n\t\tmu 0 3 1390 3449 4609\n\t\tf 3 -10586 -10467 10586\n\t\tmu 0 3 4609 3449 1472\n\t\tf 3 -10435 10587 -10587\n\t\tmu 0 3 1472 5842 4609\n\t\tf 3 -10588 -10430 10588\n\t\tmu 0 3 4609 5842 1169\n\t\tf 3 10589 10590 10591\n\t\tmu 0 3 1147 916 2614\n\t\tf 3 10592 10593 -10592\n\t\tmu 0 3 2614 2940 1147\n\t\tf 3 10594 -10594 10595\n\t\tmu 0 3 133 1147 2940\n\t\tf 3 10596 10597 -10596\n\t\tmu 0 3 2940 5065 133\n\t\tf 3 -10597 10598 10599\n\t\tmu 0 3 5065 2940 2052\n\t\tf 3 -10599 -10593 10600\n\t\tmu 0 3 2052 2940 2614\n\t\tf 3 10601 10602 -10600\n\t\tmu 0 3 2052 6453 5065\n\t\tf 3 10603 10604 -10601\n\t\tmu 0 3 2614 176 2052\n\t\tf 3 -10604 10605 10606\n\t\tmu 0 3 176 2614 1507\n\t\tf 3 -10606 -10591 10607\n\t\tmu 0 3 1507 2614 916\n\t\tf 3 10608 10609 -10607\n\t\tmu 0 3 1507 238 176\n\t\tf 3 10610 -10609 10611\n\t\tmu 0 3 2220 238 1507\n\t\tf 3 10612 10613 -10612\n\t\tmu 0 3 1507 1417 2220\n\t\tf 3 -10603 10614 10615\n\t\tmu 0 3 5065 6453 2381\n\t\tf 3 10616 10617 -10616\n\t\tmu 0 3 2381 1482 5065\n\t\tf 3 -10598 -10618 10618\n\t\tmu 0 3 133 5065 1482\n\t\tf 3 10619 -10617 10620\n\t\tmu 0 3 2150 1482 2381\n\t\tf 3 10621 10622 -10621\n\t\tmu 0 3 2381 6344 2150\n\t\tf 3 10623 -10623 10624\n\t\tmu 0 3 4416 2150 6344\n\t\tf 3 10625 10626 -10625\n\t\tmu 0 3 6344 150 4416\n\t\tf 3 10627 -10620 10628\n\t\tmu 0 3 1750 1482 2150\n\t\tf 3 -10628 10629 -10619\n\t\tmu 0 3 1482 1750 133\n\t\tf 3 10630 10631 -10629\n\t\tmu 0 3 2150 5934 1750\n\t\tf 3 10632 -10631 10633\n\t\tmu 0 3 1155 5934 2150\n\t\tf 3 -10624 10634 -10634\n\t\tmu 0 3 2150 4416 1155\n\t\tf 3 10635 -10613 10636\n\t\tmu 0 3 1830 1417 1507\n\t\tf 3 10637 10638 -10637\n\t\tmu 0 3 1507 3772 1830\n\t\tf 3 10639 -10638 -10608\n\t\tmu 0 3 916 3772 1507\n\t\tf 3 10640 10641 10642\n\t\tmu 0 3 6332 4258 5691\n\t\tf 3 10643 10644 -10643\n\t\tmu 0 3 5691 953 6332\n\t\tf 3 10645 -10644 10646\n\t\tmu 0 3 4094 953 5691\n\t\tf 3 10647 10648 -10647\n\t\tmu 0 3 5691 5058 4094\n\t\tf 3 -10649 10649 10650\n\t\tmu 0 3 4094 5058 3654\n\t\tf 3 10651 10652 -10651\n\t\tmu 0 3 3654 5864 4094\n\t\tf 3 -10646 10653 10654\n\t\tmu 0 3 953 4094 663\n\t\tf 3 10655 10656 -10655\n\t\tmu 0 3 663 3494 953\n\t\tf 3 -10656 10657 10658\n\t\tmu 0 3 3494 663 1213\n\t\tf 3 10659 10660 -10659\n\t\tmu 0 3 1213 2339 3494\n\t\tf 3 -10661 10661 10662\n\t\tmu 0 3 3494 2339 4542\n\t\tf 3 10663 10664 -10663\n\t\tmu 0 3 4542 5757 3494\n\t\tf 3 10665 -10645 10666\n\t\tmu 0 3 5757 6332 953\n\t\tf 3 -10667 -10657 -10665\n\t\tmu 0 3 5757 953 3494\n\t\tf 3 -10653 10667 10668\n\t\tmu 0 3 4094 5864 6397\n\t\tf 3 10669 -10654 -10669\n\t\tmu 0 3 6397 663 4094\n\t\tf 3 -10658 -10670 10670\n\t\tmu 0 3 1213 663 6397\n\t\tf 3 10671 10672 -10662\n\t\tmu 0 3 2339 4042 4542\n\t\tf 3 -10672 -10660 10673\n\t\tmu 0 3 4042 2339 1213\n\t\tf 3 10674 10675 -10674\n\t\tmu 0 3 1213 2533 4042\n\t\tf 3 10676 -10675 10677\n\t\tmu 0 3 1222 2533 1213\n\t\tf 3 10678 10679 -10678\n\t\tmu 0 3 1213 3980 1222\n\t\tf 3 10680 -10679 -10671\n\t\tmu 0 3 6397 3980 1213\n\t\tf 3 10681 -10652 10682\n\t\tmu 0 3 3789 5864 3654\n\t\tf 3 10683 10684 -10683\n\t\tmu 0 3 3654 2128 3789\n\t\tf 3 10685 -10685 10686\n\t\tmu 0 3 744 3789 2128\n\t\tf 3 10687 10688 -10687\n\t\tmu 0 3 2128 1633 744\n\t\tf 3 10689 -10668 10690\n\t\tmu 0 3 3474 6397 5864\n\t\tf 3 -10682 10691 -10691\n\t\tmu 0 3 5864 3789 3474\n\t\tf 3 -10686 10692 10693\n\t\tmu 0 3 3789 744 6283\n\t\tf 3 10694 -10692 -10694\n\t\tmu 0 3 6283 3474 3789\n\t\tf 3 -10695 10695 10696\n\t\tmu 0 3 3474 6283 700\n\t\tf 3 10697 10698 -10697\n\t\tmu 0 3 700 2534 3474\n\t\tf 3 10699 -10681 10700\n\t\tmu 0 3 2534 3980 6397\n\t\tf 3 -10690 -10699 -10701\n\t\tmu 0 3 6397 3474 2534\n\t\tf 3 10701 -10680 10702\n\t\tmu 0 3 6230 1222 3980\n\t\tf 3 -10700 10703 -10703\n\t\tmu 0 3 3980 2534 6230\n\t\tf 3 -10704 -10698 10704\n\t\tmu 0 3 6230 2534 700\n\t\tf 3 -10688 10705 10706\n\t\tmu 0 3 1633 2128 6159\n\t\tf 3 -10706 -10684 10707\n\t\tmu 0 3 6159 2128 3654\n\t\tf 3 10708 10709 -10708\n\t\tmu 0 3 3654 6244 6159\n\t\tf 3 10710 10711 -10707\n\t\tmu 0 3 6159 780 1633\n\t\tf 3 10712 -10709 10713\n\t\tmu 0 3 4666 6244 3654\n\t\tf 3 -10650 10714 -10714\n\t\tmu 0 3 3654 5058 4666\n\t\tf 3 10715 -10715 10716\n\t\tmu 0 3 6374 4666 5058\n\t\tf 3 -10648 10717 -10717\n\t\tmu 0 3 5058 5691 6374\n\t\tf 3 -10718 -10642 10718\n\t\tmu 0 3 6374 5691 4258\n\t\tf 3 10719 10720 -10719\n\t\tmu 0 3 4258 2342 6374\n\t\tf 3 -10720 10721 10722\n\t\tmu 0 3 2342 4258 1797\n\t\tf 3 -10722 10723 10724\n\t\tmu 0 3 1797 4258 5809\n\t\tf 3 10725 -10725 10726\n\t\tmu 0 3 3475 1797 5809\n\t\tf 3 -10641 10727 -10724\n\t\tmu 0 3 4258 6332 5809\n\t\tf 3 10728 10729 -10728\n\t\tmu 0 3 6332 5650 5809\n\t\tf 3 -10729 10730 10731\n\t\tmu 0 3 5650 6332 2010\n\t\tf 3 10732 10733 10734\n\t\tmu 0 3 15081 15082 15083\n\t\tf 3 10735 10736 -10723\n\t\tmu 0 3 1797 844 2342\n\t\tf 3 -10736 -10726 10737\n\t\tmu 0 3 844 1797 3475\n\t\tf 3 10738 10739 -10738\n\t\tmu 0 3 3475 4502 844\n\t\tf 3 10740 10741 10742\n\t\tmu 0 3 582 6403 6499\n\t\tf 3 -10741 10743 10744\n\t\tmu 0 3 6403 582 3497\n\t\tf 3 10745 10746 -10745\n\t\tmu 0 3 3497 6278 6403\n\t\tf 3 -10746 10747 10748\n\t\tmu 0 3 6278 3497 5961\n\t\tf 3 -10749 10749 10750\n\t\tmu 0 3 6278 5961 1003\n\t\tf 3 10751 10752 10753\n\t\tmu 0 3 15084 15085 5802\n\t\tf 3 -10750 10754 10755\n\t\tmu 0 3 1003 5961 6441\n\t\tf 3 10756 10757 -10756\n\t\tmu 0 3 6441 4178 1003\n\t\tf 3 10758 -10757 10759\n\t\tmu 0 3 1346 4178 6441\n\t\tf 3 10760 10761 -10760\n\t\tmu 0 3 6441 5335 1346\n\t\tf 3 10762 10763 10764\n\t\tmu 0 3 15086 15087 1651\n\t\tf 3 10765 10766 -10765\n\t\tmu 0 3 1651 6193 15088\n\t\tf 3 10767 10768 10769\n\t\tmu 0 3 15089 15090 3638\n\t\tf 3 10770 10771 -10770\n\t\tmu 0 3 3638 4981 15091\n\t\tf 3 10772 -10772 10773\n\t\tmu 0 3 15092 15093 4981\n\t\tf 3 10774 -10764 -10774\n\t\tmu 0 3 4981 1651 15094\n\t\tf 3 10775 10776 10777\n\t\tmu 0 3 15095 15096 3795\n\t\tf 3 10778 -10769 -10778\n\t\tmu 0 3 3795 3638 15097\n\t\tf 3 10779 -10777 10780\n\t\tmu 0 3 4842 3795 15098\n\t\tf 3 10781 10782 -10781\n\t\tmu 0 3 15099 15100 4842\n\t\tf 3 10783 10784 10785\n\t\tmu 0 3 588 350 1231\n\t\tf 3 10786 10787 -10786\n\t\tmu 0 3 1231 1995 588\n\t\tf 3 -10785 10788 10789\n\t\tmu 0 3 1231 350 5505\n\t\tf 3 10790 10791 -10790\n\t\tmu 0 3 5505 6267 1231\n\t\tf 3 -10791 10792 10793\n\t\tmu 0 3 6267 5505 4329\n\t\tf 3 10794 10795 -10794\n\t\tmu 0 3 4329 4026 6267\n\t\tf 3 -10795 10796 10797\n\t\tmu 0 3 4026 4329 3566\n\t\tf 3 10798 10799 -10798\n\t\tmu 0 3 3566 2117 4026\n\t\tf 3 -10799 10800 10801\n\t\tmu 0 3 2117 3566 2136\n\t\tf 3 10802 10803 -10802\n\t\tmu 0 3 2136 5896 2117\n\t\tf 3 10804 10805 10806\n\t\tmu 0 3 5698 4631 2862\n\t\tf 3 10807 10808 -10807\n\t\tmu 0 3 2862 5777 5698\n\t\tf 3 -10808 10809 10810\n\t\tmu 0 3 5777 2862 1928\n\t\tf 3 10811 10812 -10811\n\t\tmu 0 3 1928 6075 5777\n\t\tf 3 -10812 10813 10814\n\t\tmu 0 3 6075 1928 2587\n\t\tf 3 10815 10816 -10815\n\t\tmu 0 3 2587 2096 6075\n\t\tf 3 10817 10818 -10805\n\t\tmu 0 3 5698 1178 4631\n\t\tf 3 -10819 10819 10820\n\t\tmu 0 3 4631 1178 4150\n\t\tf 3 10821 10822 -10821\n\t\tmu 0 3 4150 1781 4631\n\t\tf 3 10823 -10822 10824\n\t\tmu 0 3 1362 1781 4150\n\t\tf 3 10825 10826 10827\n\t\tmu 0 3 4638 15101 4150\n\t\tf 3 10828 10829 10830\n\t\tmu 0 3 305 15102 15103\n\t\tf 3 10831 10832 -10831\n\t\tmu 0 3 15104 6507 305\n\t\tf 3 10833 -10828 10834\n\t\tmu 0 3 5564 4638 4150\n\t\tf 3 10835 10836 10837\n\t\tmu 0 3 15105 15106 2829\n\t\tf 3 10838 10839 -10838\n\t\tmu 0 3 2829 4466 15107\n\t\tf 3 -10837 10840 10841\n\t\tmu 0 3 2829 15108 15109\n\t\tf 3 10842 10843 -10842\n\t\tmu 0 3 15110 614 2829\n\t\tf 3 10844 10845 -10843\n\t\tmu 0 3 15111 15112 614\n\t\tf 3 10846 10847 -10845\n\t\tmu 0 3 15113 15114 15115\n\t\tf 3 10848 10849 -10846\n\t\tmu 0 3 15116 4575 614\n\t\tf 3 10850 10851 10852\n\t\tmu 0 3 2585 15117 2000\n\t\tf 3 -10820 10853 -10853\n\t\tmu 0 3 2000 1405 2585\n\t\tf 3 -10835 -10852 10854\n\t\tmu 0 3 1504 2000 15118\n\t\tf 3 10855 10856 -10855\n\t\tmu 0 3 15119 15120 1504\n\t\tf 3 10857 10858 10859\n\t\tmu 0 3 3803 2311 15121\n\t\tf 3 10860 10861 -10860\n\t\tmu 0 3 15122 15123 3803\n\t\tf 3 -10862 10862 10863\n\t\tmu 0 3 3803 15124 15125\n\t\tf 3 10864 10865 -10864\n\t\tmu 0 3 15126 812 3803\n\t\tf 3 10866 -10865 10867\n\t\tmu 0 3 1286 812 15127\n\t\tf 3 10868 10869 -10868\n\t\tmu 0 3 15128 15129 1286\n\t\tf 3 10870 -10870 10871\n\t\tmu 0 3 3883 1286 15130\n\t\tf 3 10872 10873 -10872\n\t\tmu 0 3 15131 15132 3883\n\t\tf 3 -10874 10874 10875\n\t\tmu 0 3 3883 15133 15134\n\t\tf 3 10876 10877 -10876\n\t\tmu 0 3 15135 186 3883\n\t\tf 3 10878 10879 10880\n\t\tmu 0 3 15136 3277 5995\n\t\tf 3 10881 -10881 10882\n\t\tmu 0 3 15137 15138 5995\n\t\tf 3 10883 -10883 10884\n\t\tmu 0 3 3346 15139 5995\n\t\tf 3 10885 10886 10887\n\t\tmu 0 3 381 15140 15141\n\t\tf 3 10888 10889 -10888\n\t\tmu 0 3 15142 4671 381\n\t\tf 3 10890 -10879 10891\n\t\tmu 0 3 6333 3277 15143\n\t\tf 3 10892 10893 -10892\n\t\tmu 0 3 15144 15145 6333\n\t\tf 3 10894 -10894 10895\n\t\tmu 0 3 4338 6333 15146\n\t\tf 3 10896 10897 -10896\n\t\tmu 0 3 15147 15148 4338\n\t\tf 3 10898 -10898 10899\n\t\tmu 0 3 1386 4338 15149\n\t\tf 3 10900 10901 -10900\n\t\tmu 0 3 15150 15151 1386\n\t\tf 3 10902 -10902 10903\n\t\tmu 0 3 6549 1386 15152\n\t\tf 3 10904 10905 -10904\n\t\tmu 0 3 15153 15154 6549\n\t\tf 3 10906 10907 10908\n\t\tmu 0 3 3687 3827 5975\n\t\tf 3 10909 10910 -10909\n\t\tmu 0 3 5975 5148 3687\n\t\tf 3 -10910 10911 10912\n\t\tmu 0 3 5148 5975 3307\n\t\tf 3 10913 10914 -10913\n\t\tmu 0 3 3307 4505 5148\n\t\tf 3 -10914 10915 10916\n\t\tmu 0 3 4505 3307 4294\n\t\tf 3 10917 10918 -10917\n\t\tmu 0 3 4294 4293 4505\n\t\tf 3 10919 -10907 10920\n\t\tmu 0 3 3461 3827 3687\n\t\tf 3 10921 10922 -10921\n\t\tmu 0 3 3687 6233 3461\n\t\tf 3 -10923 10923 10924\n\t\tmu 0 3 3461 6233 2979\n\t\tf 3 10925 10926 -10925\n\t\tmu 0 3 2979 4874 3461\n\t\tf 3 -10926 10927 10928\n\t\tmu 0 3 4874 2979 848\n\t\tf 3 10929 10930 -10929\n\t\tmu 0 3 848 6208 4874\n\t\tf 3 -10930 10931 10932\n\t\tmu 0 3 6208 848 5179\n\t\tf 3 10933 10934 10935\n\t\tmu 0 3 15155 978 15156\n\t\tf 3 10936 10937 10938\n\t\tmu 0 3 15157 4937 2535\n\t\tf 3 10939 10940 -10939\n\t\tmu 0 3 2535 15158 15159\n\t\tf 3 10941 -10940 10942\n\t\tmu 0 3 15160 15161 2535\n\t\tf 3 10943 10944 -10943\n\t\tmu 0 3 2535 5965 15162\n\t\tf 3 10945 -10937 10946\n\t\tmu 0 3 5927 4937 15163\n\t\tf 3 10947 10948 -10947\n\t\tmu 0 3 15164 15165 5927\n\t\tf 3 10949 -10949 10950\n\t\tmu 0 3 151 5927 15166\n\t\tf 3 10951 10952 -10951\n\t\tmu 0 3 15167 15168 151\n\t\tf 3 -10953 10953 10954\n\t\tmu 0 3 151 15169 15170\n\t\tf 3 10955 10956 -10955\n\t\tmu 0 3 15171 4276 151\n\t\tf 3 -10956 10957 10958\n\t\tmu 0 3 4276 15172 15173\n\t\tf 3 10959 10960 -10959\n\t\tmu 0 3 15174 460 4276\n\t\tf 3 -10945 10961 10962\n\t\tmu 0 3 15175 5965 3804\n\t\tf 3 10963 10964 -10963\n\t\tmu 0 3 3804 15176 15177\n\t\tf 3 10965 10966 10967\n\t\tmu 0 3 15178 4131 4023\n\t\tf 3 10968 10969 -10968\n\t\tmu 0 3 4023 15179 15180\n\t\tf 3 10970 -10969 10971\n\t\tmu 0 3 15181 15182 4023\n\t\tf 3 10972 10973 10974\n\t\tmu 0 3 15183 745 15184\n\t\tf 3 -10966 10975 10976\n\t\tmu 0 3 4131 15185 15186\n\t\tf 3 10977 10978 -10977\n\t\tmu 0 3 15187 3025 4131\n\t\tf 3 10979 -10978 10980\n\t\tmu 0 3 6509 3025 15188\n\t\tf 3 10981 10982 -10981\n\t\tmu 0 3 15189 15190 6509\n\t\tf 3 10983 -10983 10984\n\t\tmu 0 3 5683 6509 15191\n\t\tf 3 10985 10986 -10985\n\t\tmu 0 3 15192 15193 5683\n\t\tf 3 -10987 10987 10988\n\t\tmu 0 3 5683 15194 15195\n\t\tf 3 10989 10990 -10989\n\t\tmu 0 3 15196 3870 5683\n\t\tf 3 10991 -10990 10992\n\t\tmu 0 3 5589 3870 15197\n\t\tf 3 10993 10994 -10993\n\t\tmu 0 3 15198 15199 5589\n\t\tf 3 -10373 -10513 10995\n\t\tmu 0 3 1355 6511 4998\n\t\tf 3 10996 10997 -10996\n\t\tmu 0 3 4998 2153 1355\n\t\tf 3 10998 -10997 -10523\n\t\tmu 0 3 5260 2153 4998\n\t\tf 3 -10533 10999 -10552\n\t\tmu 0 3 3424 1154 5477\n\t\tf 3 -10565 -11000 -10528\n\t\tmu 0 3 3744 5477 1154\n\t\tf 3 11000 11001 11002\n\t\tmu 0 3 1355 15200 15201\n\t\tf 3 11003 -10375 -11003\n\t\tmu 0 3 15202 3002 1355\n\t\tf 3 -11004 11004 11005\n\t\tmu 0 3 3002 15203 15204\n\t\tf 3 11006 -10379 -11006\n\t\tmu 0 3 15205 623 3002\n\t\tf 3 -11007 11007 11008\n\t\tmu 0 3 623 15206 15207\n\t\tf 3 11009 -10383 -11009\n\t\tmu 0 3 15208 3448 623\n\t\tf 3 -11010 11010 11011\n\t\tmu 0 3 3448 15209 15210\n\t\tf 3 11012 -10387 -11012\n\t\tmu 0 3 15211 2085 3448\n\t\tf 3 -10389 -11013 11013\n\t\tmu 0 3 4349 2085 15212\n\t\tf 3 11014 11015 -11014\n\t\tmu 0 3 15213 15214 4349\n\t\tf 3 11016 -11015 11017\n\t\tmu 0 3 15215 15216 15217\n\t\tf 3 -11017 11018 11019\n\t\tmu 0 3 15218 15219 15220\n\t\tf 3 11020 -11019 11021\n\t\tmu 0 3 15221 15222 15223\n\t\tf 3 -11021 11022 11023\n\t\tmu 0 3 15224 15225 15226\n\t\tf 3 11024 -11023 11025\n\t\tmu 0 3 15227 15228 15229\n\t\tf 3 11026 11027 -11026\n\t\tmu 0 3 15230 15231 15232\n\t\tf 3 11028 -11028 11029\n\t\tmu 0 3 15233 15234 15235\n\t\tf 3 11030 11031 -11030\n\t\tmu 0 3 15236 15237 15238\n\t\tf 3 11032 11033 -11024\n\t\tmu 0 3 15239 15240 15241\n\t\tf 3 11034 -11034 11035\n\t\tmu 0 3 15242 15243 15244\n\t\tf 3 -11035 11036 -11020\n\t\tmu 0 3 15245 15246 15247\n\t\tf 3 -11016 -11037 11037\n\t\tmu 0 3 4349 15248 15249\n\t\tf 3 11038 11039 -11036\n\t\tmu 0 3 15250 15251 15252\n\t\tf 3 11040 -11040 11041\n\t\tmu 0 3 806 15253 15254\n\t\tf 3 -11041 -10419 -11038\n\t\tmu 0 3 15255 806 4349\n\t\tf 3 11042 -10420 -11042\n\t\tmu 0 3 15256 5051 806\n\t\tf 3 -11031 11043 11044\n\t\tmu 0 3 15257 15258 15259\n\t\tf 3 11045 -11045 11046\n\t\tmu 0 3 15260 15261 15262\n\t\tf 3 11047 -11047 11048\n\t\tmu 0 3 15263 15264 15265\n\t\tf 3 11049 -11048 11050\n\t\tmu 0 3 15266 15267 15268\n\t\tf 3 11051 11052 -11051\n\t\tmu 0 3 15269 15270 15271\n\t\tf 3 -11052 11053 11054\n\t\tmu 0 3 15272 15273 15274\n\t\tf 3 -11054 -11049 11055\n\t\tmu 0 3 15275 15276 15277\n\t\tf 3 11056 11057 -11055\n\t\tmu 0 3 15278 15279 15280\n\t\tf 3 -11057 11058 11059\n\t\tmu 0 3 15281 15282 15283\n\t\tf 3 11060 -11059 -11056\n\t\tmu 0 3 15284 15285 15286\n\t\tf 3 11061 11062 -11060\n\t\tmu 0 3 15287 15288 15289\n\t\tf 3 -11062 11063 11064\n\t\tmu 0 3 15290 15291 15292\n\t\tf 3 -11064 -11061 11065\n\t\tmu 0 3 15293 15294 15295\n\t\tf 3 11066 11067 -11065\n\t\tmu 0 3 15296 15297 15298\n\t\tf 3 -11067 11068 11069\n\t\tmu 0 3 15299 15300 15301\n\t\tf 3 11070 11071 -11070\n\t\tmu 0 3 15302 15303 15304\n\t\tf 3 -11072 11072 11073\n\t\tmu 0 3 15305 15306 15307\n\t\tf 3 11074 11075 -11074\n\t\tmu 0 3 15308 15309 15310\n\t\tf 3 -11068 -11076 11076\n\t\tmu 0 3 15311 15312 15313\n\t\tf 3 -11075 11077 11078\n\t\tmu 0 3 15314 15315 15316\n\t\tf 3 11079 11080 -11079\n\t\tmu 0 3 15317 15318 15319\n\t\tf 3 11081 -11080 11082\n\t\tmu 0 3 15320 15321 15322\n\t\tf 3 11083 11084 -11083\n\t\tmu 0 3 15323 15324 15325\n\t\tf 3 11085 11086 -11077\n\t\tmu 0 3 15326 15327 15328\n\t\tf 3 -11063 -11087 11087\n\t\tmu 0 3 15329 15330 15331\n\t\tf 3 11088 11089 -11088\n\t\tmu 0 3 15332 15333 15334\n\t\tf 3 11090 -11089 11091\n\t\tmu 0 3 15335 15336 15337\n\t\tf 3 11092 11093 -11092\n\t\tmu 0 3 15338 15339 15340\n\t\tf 3 -11093 -11086 11094\n\t\tmu 0 3 15341 15342 15343\n\t\tf 3 -11081 11095 -11095\n\t\tmu 0 3 15344 15345 15346\n\t\tf 3 11096 -11094 11097\n\t\tmu 0 3 15347 15348 15349\n\t\tf 3 11098 11099 -11098\n\t\tmu 0 3 15350 15351 15352\n\t\tf 3 -11082 11100 11101\n\t\tmu 0 3 15353 15354 15355\n\t\tf 3 -11099 -11096 -11102\n\t\tmu 0 3 15356 15357 15358\n\t\tf 3 -11100 11102 11103\n\t\tmu 0 3 15359 15360 15361\n\t\tf 3 -11103 -11101 11104\n\t\tmu 0 3 15362 15363 15364\n\t\tf 3 11105 11106 -11104\n\t\tmu 0 3 15365 15366 15367\n\t\tf 3 -11106 11107 11108\n\t\tmu 0 3 15368 15369 15370\n\t\tf 3 11109 11110 -11109\n\t\tmu 0 3 15371 15372 15373\n\t\tf 3 11111 -11110 11112\n\t\tmu 0 3 15374 15375 15376\n\t\tf 3 11113 11114 -11113\n\t\tmu 0 3 15377 15378 15379\n\t\tf 3 11115 -11114 11116\n\t\tmu 0 3 15380 15381 15382\n\t\tf 3 11117 11118 -11117\n\t\tmu 0 3 15383 15384 15385\n\t\tf 3 -11118 -11108 11119\n\t\tmu 0 3 15386 15387 15388\n\t\tf 3 11120 11121 -11120\n\t\tmu 0 3 15389 15390 15391\n\t\tf 3 11122 -11121 -11105\n\t\tmu 0 3 15392 15393 15394\n\t\tf 3 11123 -11123 11124\n\t\tmu 0 3 15395 15396 15397\n\t\tf 3 -11085 11125 -11125\n\t\tmu 0 3 15398 15399 15400\n\t\tf 3 -11124 11126 11127\n\t\tmu 0 3 15401 15402 15403\n\t\tf 3 11128 -11122 -11128\n\t\tmu 0 3 15404 15405 15406\n\t\tf 3 -11129 11129 11130\n\t\tmu 0 3 15407 15408 15409\n\t\tf 3 11131 -11119 -11131\n\t\tmu 0 3 15410 15411 15412\n\t\tf 3 11132 -11126 11133\n\t\tmu 0 3 15413 15414 15415\n\t\tf 3 11134 11135 -11134\n\t\tmu 0 3 15416 15417 15418\n\t\tf 3 -11133 11136 11137\n\t\tmu 0 3 15419 15420 15421\n\t\tf 3 11138 -11127 -11138\n\t\tmu 0 3 15422 15423 15424\n\t\tf 3 -11139 11139 11140\n\t\tmu 0 3 15425 15426 15427\n\t\tf 3 11141 -11130 -11141\n\t\tmu 0 3 15428 15429 15430\n\t\tf 3 -11140 11142 11143\n\t\tmu 0 3 15431 15432 5260\n\t\tf 3 -11143 -11137 11144\n\t\tmu 0 3 5260 15433 15434\n\t\tf 3 -10525 11145 -11144\n\t\tmu 0 3 5260 3771 15435\n\t\tf 3 11146 -11146 11147\n\t\tmu 0 3 15436 15437 3771\n\t\tf 3 -11142 -11147 11148\n\t\tmu 0 3 15438 15439 15440\n\t\tf 3 -10530 11149 -11148\n\t\tmu 0 3 3771 4006 15441\n\t\tf 3 -11150 -10531 11150\n\t\tmu 0 3 15442 4006 2477\n\t\tf 3 11151 11152 -11151\n\t\tmu 0 3 2477 15443 15444\n\t\tf 3 -11002 -11135 11153\n\t\tmu 0 3 15445 15446 15447\n\t\tf 3 -11084 11154 -11154\n\t\tmu 0 3 15448 15449 15450\n\t\tf 3 -11005 -11155 11155\n\t\tmu 0 3 15451 15452 15453\n\t\tf 3 -11078 11156 -11156\n\t\tmu 0 3 15454 15455 15456\n\t\tf 3 -11157 -11073 11157\n\t\tmu 0 3 15457 15458 15459\n\t\tf 3 11158 -11008 -11158\n\t\tmu 0 3 15460 15461 15462\n\t\tf 3 -11011 -11159 11159\n\t\tmu 0 3 15463 15464 15465\n\t\tf 3 -11071 11160 -11160\n\t\tmu 0 3 15466 15467 15468\n\t\tf 3 -11161 11161 -11018\n\t\tmu 0 3 15469 15470 15471\n\t\tf 3 -11162 -11069 11162\n\t\tmu 0 3 15472 15473 15474\n\t\tf 3 11163 11164 -11163\n\t\tmu 0 3 15475 15476 15477\n\t\tf 3 11165 -11164 -11066\n\t\tmu 0 3 15478 15479 15480\n\t\tf 3 -11166 -11044 11166\n\t\tmu 0 3 15481 15482 15483\n\t\tf 3 -11027 11167 -11167\n\t\tmu 0 3 15484 15485 15486\n\t\tf 3 -11165 -11168 -11022\n\t\tmu 0 3 15487 15488 15489\n\t\tf 3 11168 -11153 11169\n\t\tmu 0 3 15490 15491 15492\n\t\tf 3 -11169 11170 -11149\n\t\tmu 0 3 15493 15494 15495\n\t\tf 3 -11171 11171 11172\n\t\tmu 0 3 15496 15497 15498\n\t\tf 3 -11172 11173 11174\n\t\tmu 0 3 15499 15500 15501\n\t\tf 3 11175 11176 -11175\n\t\tmu 0 3 15502 15503 15504\n\t\tf 3 11177 -11177 11178\n\t\tmu 0 3 15505 15506 15507\n\t\tf 3 11179 11180 -11179\n\t\tmu 0 3 15508 15509 15510\n\t\tf 3 11181 -11181 11182\n\t\tmu 0 3 15511 15512 15513\n\t\tf 3 11183 11184 -11183\n\t\tmu 0 3 15514 15515 15516\n\t\tf 3 11185 -11132 -11173\n\t\tmu 0 3 15517 15518 15519\n\t\tf 3 -11178 11186 11187\n\t\tmu 0 3 15520 15521 15522\n\t\tf 3 -11116 -11186 -11188\n\t\tmu 0 3 15523 15524 15525\n\t\tf 3 -11115 -11187 11188\n\t\tmu 0 3 15526 15527 15528\n\t\tf 3 -11182 11189 -11189\n\t\tmu 0 3 15529 15530 15531\n\t\tf 3 -11190 11190 11191\n\t\tmu 0 3 15532 15533 15534\n\t\tf 3 11192 -11112 -11192\n\t\tmu 0 3 15535 15536 15537\n\t\tf 3 -11111 -11193 11193\n\t\tmu 0 3 15538 15539 15540\n\t\tf 3 11194 11195 -11194\n\t\tmu 0 3 15541 15542 15543\n\t\tf 3 -11107 -11196 11196\n\t\tmu 0 3 15544 15545 15546\n\t\tf 3 11197 11198 -11197\n\t\tmu 0 3 15547 15548 15549\n\t\tf 3 -11097 -11199 11199\n\t\tmu 0 3 15550 15551 15552\n\t\tf 3 11200 11201 -11200\n\t\tmu 0 3 15553 15554 15555\n\t\tf 3 -11202 11202 11203\n\t\tmu 0 3 15556 15557 15558\n\t\tf 3 11204 -11091 -11204\n\t\tmu 0 3 15559 15560 15561\n\t\tf 3 -11090 -11205 11205\n\t\tmu 0 3 15562 15563 15564\n\t\tf 3 11206 -11058 -11206\n\t\tmu 0 3 15565 15566 15567\n\t\tf 3 11207 -11053 -11207\n\t\tmu 0 3 15568 15569 15570\n\t\tf 3 11208 11209 11210\n\t\tmu 0 3 15571 15572 15573\n\t\tf 3 11211 11212 -11211\n\t\tmu 0 3 15574 15575 15576\n\t\tf 3 -11212 11213 11214\n\t\tmu 0 3 15577 15578 15579\n\t\tf 3 11215 11216 -11215\n\t\tmu 0 3 15580 15581 15582\n\t\tf 3 11217 -11217 11218\n\t\tmu 0 3 2052 15583 15584\n\t\tf 3 -11213 -11218 11219\n\t\tmu 0 3 15585 15586 2052\n\t\tf 3 11220 -10602 -11219\n\t\tmu 0 3 15587 6453 2052\n\t\tf 3 -10605 11221 -11220\n\t\tmu 0 3 2052 176 15588\n\t\tf 3 11222 -11222 11223\n\t\tmu 0 3 15589 15590 176\n\t\tf 3 -11209 -11223 11224\n\t\tmu 0 3 15591 15592 15593\n\t\tf 3 -10610 11225 -11224\n\t\tmu 0 3 176 238 15594\n\t\tf 3 11226 -11226 11227\n\t\tmu 0 3 15595 15596 238\n\t\tf 3 -10611 11228 -11228\n\t\tmu 0 3 238 2220 15597\n\t\tf 3 -10615 -11221 11229\n\t\tmu 0 3 2381 6453 15598\n\t\tf 3 11230 11231 -11230\n\t\tmu 0 3 15599 15600 2381\n\t\tf 3 -11231 -11216 11232\n\t\tmu 0 3 15601 15602 15603\n\t\tf 3 -11232 11233 11234\n\t\tmu 0 3 2381 15604 15605\n\t\tf 3 11235 -10622 -11235\n\t\tmu 0 3 15606 6344 2381\n\t\tf 3 -11236 11236 11237\n\t\tmu 0 3 6344 15607 15608\n\t\tf 3 11238 -10626 -11238\n\t\tmu 0 3 15609 150 6344\n\t\tf 3 -11234 11239 11240\n\t\tmu 0 3 15610 15611 15612\n\t\tf 3 11241 -11240 -11233\n\t\tmu 0 3 15613 15614 15615\n\t\tf 3 11242 11243 -11241\n\t\tmu 0 3 15616 15617 15618\n\t\tf 3 11244 -11237 11245\n\t\tmu 0 3 15619 15620 15621\n\t\tf 3 -11244 11246 -11246\n\t\tmu 0 3 15622 15623 15624\n\t\tf 3 -11227 11247 11248\n\t\tmu 0 3 15625 15626 15627\n\t\tf 3 11249 11250 -11249\n\t\tmu 0 3 15628 15629 15630\n\t\tf 3 -11251 11251 -11225\n\t\tmu 0 3 15631 15632 15633\n\t\tf 3 11252 11253 11254\n\t\tmu 0 3 15634 15635 15636\n\t\tf 3 11255 11256 -11255\n\t\tmu 0 3 15637 15638 15639\n\t\tf 3 -11257 11257 11258\n\t\tmu 0 3 15640 15641 15642\n\t\tf 3 11259 11260 -11259\n\t\tmu 0 3 15643 15644 15645\n\t\tf 3 11261 -11260 11262\n\t\tmu 0 3 15646 15647 15648\n\t\tf 3 11263 11264 -11263\n\t\tmu 0 3 15649 15650 15651\n\t\tf 3 11265 -11258 11266\n\t\tmu 0 3 15652 15653 15654\n\t\tf 3 11267 11268 -11267\n\t\tmu 0 3 15655 15656 15657\n\t\tf 3 11269 -11269 11270\n\t\tmu 0 3 15658 15659 15660\n\t\tf 3 11271 11272 -11271\n\t\tmu 0 3 15661 15662 15663\n\t\tf 3 11273 -11272 11274\n\t\tmu 0 3 15664 15665 15666\n\t\tf 3 11275 11276 -11275\n\t\tmu 0 3 15667 15668 15669\n\t\tf 3 -11276 -11268 11277\n\t\tmu 0 3 15670 15671 15672\n\t\tf 3 11278 -11278 -11256\n\t\tmu 0 3 15673 15674 15675\n\t\tf 3 11279 -11264 11280\n\t\tmu 0 3 15676 15677 15678\n\t\tf 3 -11266 11281 -11281\n\t\tmu 0 3 15679 15680 15681\n\t\tf 3 -11282 -11270 11282\n\t\tmu 0 3 15682 15683 15684\n\t\tf 3 -11274 11283 11284\n\t\tmu 0 3 15685 15686 15687\n\t\tf 3 -11273 -11285 11285\n\t\tmu 0 3 15688 15689 15690\n\t\tf 3 11286 11287 -11286\n\t\tmu 0 3 15691 15692 15693\n\t\tf 3 -11288 11288 11289\n\t\tmu 0 3 15694 15695 15696\n\t\tf 3 11290 11291 -11290\n\t\tmu 0 3 15697 15698 15699\n\t\tf 3 -11292 11292 -11283\n\t\tmu 0 3 15700 15701 15702\n\t\tf 3 -11265 11293 11294\n\t\tmu 0 3 15703 15704 15705\n\t\tf 3 11295 11296 -11295\n\t\tmu 0 3 15706 15707 15708\n\t\tf 3 -11296 11297 11298\n\t\tmu 0 3 15709 15710 15711\n\t\tf 3 11299 11300 -11299\n\t\tmu 0 3 15712 15713 15714\n\t\tf 3 -11280 11301 11302\n\t\tmu 0 3 15715 15716 15717\n\t\tf 3 11303 -11294 -11303\n\t\tmu 0 3 15718 15719 15720\n\t\tf 3 -11304 11304 11305\n\t\tmu 0 3 15721 15722 15723\n\t\tf 3 11306 -11298 -11306\n\t\tmu 0 3 15724 15725 15726\n\t\tf 3 11307 -11305 11308\n\t\tmu 0 3 15727 15728 15729\n\t\tf 3 11309 11310 -11309\n\t\tmu 0 3 15730 15731 15732\n\t\tf 3 -11310 -11302 11311\n\t\tmu 0 3 15733 15734 15735\n\t\tf 3 -11293 11312 -11312\n\t\tmu 0 3 15736 15737 15738\n\t\tf 3 -11291 11313 11314\n\t\tmu 0 3 15739 15740 15741\n\t\tf 3 11315 -11313 -11315\n\t\tmu 0 3 15742 15743 15744\n\t\tf 3 -11311 -11316 11316\n\t\tmu 0 3 15745 15746 15747\n\t\tf 3 11317 -11301 11318\n\t\tmu 0 3 15748 15749 15750\n\t\tf 3 -11297 -11318 11319\n\t\tmu 0 3 15751 15752 15753\n\t\tf 3 11320 11321 -11320\n\t\tmu 0 3 15754 15755 15756\n\t\tf 3 11322 11323 -11319\n\t\tmu 0 3 15757 15758 15759\n\t\tf 3 -11322 11324 11325\n\t\tmu 0 3 15760 15761 15762\n\t\tf 3 11326 -11262 -11326\n\t\tmu 0 3 15763 15764 15765\n\t\tf 3 -11327 11327 11328\n\t\tmu 0 3 15766 15767 15768\n\t\tf 3 11329 -11261 -11329\n\t\tmu 0 3 15769 15770 15771\n\t\tf 3 -11253 -11330 11330\n\t\tmu 0 3 15772 15773 15774\n\t\tf 3 11331 11332 -11331\n\t\tmu 0 3 15775 15776 15777\n\t\tf 3 11333 -11333 11334\n\t\tmu 0 3 15778 15779 15780\n\t\tf 3 11335 11336 -11334\n\t\tmu 0 3 15781 15782 15783\n\t\tf 3 -11336 11337 11338\n\t\tmu 0 3 15784 15785 15786\n\t\tf 3 11339 -11254 -11337\n\t\tmu 0 3 15787 15788 15789;\n\tsetAttr \".fc[6000:6499]\"\n\t\tf 3 11340 11341 -11340\n\t\tmu 0 3 15790 15791 15792\n\t\tf 3 11342 11343 -11342\n\t\tmu 0 3 15793 15794 15795\n\t\tf 3 11344 11345 11346\n\t\tmu 0 3 15796 15797 15798\n\t\tf 3 11347 11348 -11335\n\t\tmu 0 3 15799 15800 15801\n\t\tf 3 -11338 -11349 11349\n\t\tmu 0 3 15802 15803 15804\n\t\tf 3 11350 11351 -11350\n\t\tmu 0 3 15805 15806 15807\n\t\tf 3 11352 11353 11354\n\t\tmu 0 3 15808 15809 15810\n\t\tf 3 -11355 11355 11356\n\t\tmu 0 3 15811 15812 15813\n\t\tf 3 11357 11358 -11357\n\t\tmu 0 3 15814 15815 15816\n\t\tf 3 11359 11360 -11358\n\t\tmu 0 3 15817 15818 15819\n\t\tf 3 11361 11362 -11360\n\t\tmu 0 3 15820 15821 15822\n\t\tf 3 11363 11364 -11363\n\t\tmu 0 3 15823 15824 15825\n\t\tf 3 11365 -11365 11366\n\t\tmu 0 3 15826 15827 15828\n\t\tf 3 11367 11368 -11367\n\t\tmu 0 3 15829 15830 15831\n\t\tf 3 -11369 11369 11370\n\t\tmu 0 3 15832 15833 1346\n\t\tf 3 -10762 11371 -11371\n\t\tmu 0 3 1346 5335 15834\n\t\tf 3 11372 11373 11374\n\t\tmu 0 3 15835 15836 15837\n\t\tf 3 -10767 11375 -11375\n\t\tmu 0 3 15838 6193 15839\n\t\tf 3 11376 11377 11378\n\t\tmu 0 3 15840 15841 15842\n\t\tf 3 11379 11380 -11379\n\t\tmu 0 3 15843 15844 15845\n\t\tf 3 -11380 11381 11382\n\t\tmu 0 3 15846 15847 15848\n\t\tf 3 -11373 11383 -11383\n\t\tmu 0 3 15849 15850 15851\n\t\tf 3 11384 11385 11386\n\t\tmu 0 3 15852 15853 15854\n\t\tf 3 -11377 11387 -11387\n\t\tmu 0 3 15855 15856 15857\n\t\tf 3 11388 11389 11390\n\t\tmu 0 3 15858 15859 15860\n\t\tf 3 -11385 11391 -11391\n\t\tmu 0 3 15861 15862 15863\n\t\tf 3 11392 11393 11394\n\t\tmu 0 3 15864 15865 15866\n\t\tf 3 11395 11396 -11395\n\t\tmu 0 3 15867 15868 15869\n\t\tf 3 11397 -11396 11398\n\t\tmu 0 3 15870 15871 15872\n\t\tf 3 11399 11400 -11399\n\t\tmu 0 3 15873 15874 15875\n\t\tf 3 11401 -11401 11402\n\t\tmu 0 3 15876 15877 15878\n\t\tf 3 11403 11404 -11403\n\t\tmu 0 3 15879 15880 15881\n\t\tf 3 11405 -11405 11406\n\t\tmu 0 3 15882 15883 15884\n\t\tf 3 11407 11408 -11407\n\t\tmu 0 3 15885 15886 15887\n\t\tf 3 11409 -11409 11410\n\t\tmu 0 3 2136 15888 15889\n\t\tf 3 11411 -10803 -11411\n\t\tmu 0 3 15890 5896 2136\n\t\tf 3 11412 11413 11414\n\t\tmu 0 3 15891 15892 15893\n\t\tf 3 11415 11416 -11415\n\t\tmu 0 3 15894 15895 15896\n\t\tf 3 11417 -11414 11418\n\t\tmu 0 3 15897 15898 15899\n\t\tf 3 11419 11420 -11419\n\t\tmu 0 3 15900 15901 15902\n\t\tf 3 11421 -11421 11422\n\t\tmu 0 3 15903 15904 15905\n\t\tf 3 11423 11424 -11423\n\t\tmu 0 3 15906 15907 15908\n\t\tf 3 -11417 11425 11426\n\t\tmu 0 3 15909 15910 15911\n\t\tf 3 11427 -11426 11428\n\t\tmu 0 3 15912 15913 15914\n\t\tf 3 11429 11430 -11429\n\t\tmu 0 3 15915 15916 15917\n\t\tf 3 -11431 11431 11432\n\t\tmu 0 3 15918 15919 15920\n\t\tf 3 11433 11434 11435\n\t\tmu 0 3 4638 15921 15922\n\t\tf 3 11436 11437 11438\n\t\tmu 0 3 15923 15924 15925\n\t\tf 3 11439 11440 -11439\n\t\tmu 0 3 15926 15927 15928\n\t\tf 3 -10834 11441 -11434\n\t\tmu 0 3 4638 5564 15929\n\t\tf 3 11442 11443 11444\n\t\tmu 0 3 15930 15931 15932\n\t\tf 3 11445 11446 -11445\n\t\tmu 0 3 15933 15934 15935\n\t\tf 3 11447 -11444 11448\n\t\tmu 0 3 15936 15937 15938\n\t\tf 3 11449 11450 -11449\n\t\tmu 0 3 15939 15940 15941\n\t\tf 3 11451 11452 -11451\n\t\tmu 0 3 15942 15943 15944\n\t\tf 3 11453 11454 -11452\n\t\tmu 0 3 15945 15946 15947\n\t\tf 3 11455 11456 -11453\n\t\tmu 0 3 15948 15949 15950\n\t\tf 3 11457 -11428 11458\n\t\tmu 0 3 15951 15952 15953\n\t\tf 3 11459 11460 -11459\n\t\tmu 0 3 15954 15955 15956\n\t\tf 3 -11460 -11442 11461\n\t\tmu 0 3 15957 15958 1504\n\t\tf 3 -10857 11462 -11462\n\t\tmu 0 3 1504 15959 15960\n\t\tf 3 11463 11464 11465\n\t\tmu 0 3 15961 15962 15963\n\t\tf 3 11466 11467 -11466\n\t\tmu 0 3 15964 15965 15966\n\t\tf 3 11468 -11464 11469\n\t\tmu 0 3 15967 15968 15969\n\t\tf 3 11470 11471 -11470\n\t\tmu 0 3 15970 15971 15972\n\t\tf 3 -11472 11472 11473\n\t\tmu 0 3 15973 15974 15975\n\t\tf 3 11474 11475 -11474\n\t\tmu 0 3 15976 15977 15978\n\t\tf 3 -11475 11476 11477\n\t\tmu 0 3 15979 15980 15981\n\t\tf 3 11478 11479 -11478\n\t\tmu 0 3 15982 15983 15984\n\t\tf 3 11480 -11479 11481\n\t\tmu 0 3 15985 15986 15987\n\t\tf 3 11482 -10877 -11482\n\t\tmu 0 3 15988 186 15989\n\t\tf 3 11483 11484 11485\n\t\tmu 0 3 15990 15991 15992\n\t\tf 3 -11486 11486 11487\n\t\tmu 0 3 15993 15994 15995\n\t\tf 3 -11488 -10884 11488\n\t\tmu 0 3 15996 15997 3346\n\t\tf 3 11489 11490 11491\n\t\tmu 0 3 15998 15999 16000\n\t\tf 3 11492 11493 -11492\n\t\tmu 0 3 16001 16002 16003\n\t\tf 3 -11485 11494 11495\n\t\tmu 0 3 16004 16005 16006\n\t\tf 3 11496 11497 -11496\n\t\tmu 0 3 16007 16008 16009\n\t\tf 3 -11497 11498 11499\n\t\tmu 0 3 16010 16011 16012\n\t\tf 3 11500 11501 -11500\n\t\tmu 0 3 16013 16014 16015\n\t\tf 3 -11501 11502 11503\n\t\tmu 0 3 16016 16017 16018\n\t\tf 3 11504 11505 -11504\n\t\tmu 0 3 16019 16020 16021\n\t\tf 3 11506 -11505 11507\n\t\tmu 0 3 16022 16023 16024\n\t\tf 3 11508 11509 -11508\n\t\tmu 0 3 16025 16026 16027\n\t\tf 3 11510 11511 11512\n\t\tmu 0 3 16028 16029 16030\n\t\tf 3 11513 11514 -11513\n\t\tmu 0 3 16031 16032 16033\n\t\tf 3 11515 -11515 11516\n\t\tmu 0 3 16034 16035 16036\n\t\tf 3 11517 11518 -11517\n\t\tmu 0 3 16037 16038 16039\n\t\tf 3 11519 -11519 11520\n\t\tmu 0 3 16040 16041 16042\n\t\tf 3 11521 11522 -11521\n\t\tmu 0 3 16043 16044 16045\n\t\tf 3 -11512 11523 11524\n\t\tmu 0 3 16046 16047 16048\n\t\tf 3 11525 11526 -11525\n\t\tmu 0 3 16049 16050 16051\n\t\tf 3 11527 -11526 11528\n\t\tmu 0 3 16052 16053 16054\n\t\tf 3 11529 11530 -11529\n\t\tmu 0 3 16055 16056 16057\n\t\tf 3 11531 -11531 11532\n\t\tmu 0 3 16058 16059 16060\n\t\tf 3 11533 11534 -11533\n\t\tmu 0 3 16061 16062 16063\n\t\tf 3 11535 -11535 11536\n\t\tmu 0 3 16064 16065 16066\n\t\tf 3 11537 11538 11539\n\t\tmu 0 3 16067 16068 16069\n\t\tf 3 11540 11541 11542\n\t\tmu 0 3 16070 16071 16072\n\t\tf 3 11543 11544 -11543\n\t\tmu 0 3 16073 16074 16075\n\t\tf 3 -11545 11545 11546\n\t\tmu 0 3 16076 16077 16078\n\t\tf 3 11547 11548 -11547\n\t\tmu 0 3 16079 16080 16081\n\t\tf 3 -11542 11549 11550\n\t\tmu 0 3 16082 16083 16084\n\t\tf 3 11551 11552 -11551\n\t\tmu 0 3 16085 16086 16087\n\t\tf 3 -11552 11553 11554\n\t\tmu 0 3 16088 16089 16090\n\t\tf 3 11555 11556 -11555\n\t\tmu 0 3 16091 16092 16093\n\t\tf 3 11557 -11556 11558\n\t\tmu 0 3 16094 16095 16096\n\t\tf 3 11559 11560 -11559\n\t\tmu 0 3 16097 16098 16099\n\t\tf 3 11561 -11561 11562\n\t\tmu 0 3 16100 16101 16102\n\t\tf 3 11563 11564 -11563\n\t\tmu 0 3 16103 16104 16105\n\t\tf 3 11565 -11548 11566\n\t\tmu 0 3 16106 16107 16108\n\t\tf 3 11567 11568 -11567\n\t\tmu 0 3 16109 16110 16111\n\t\tf 3 11569 11570 11571\n\t\tmu 0 3 16112 16113 16114\n\t\tf 3 11572 11573 -11572\n\t\tmu 0 3 16115 16116 16117\n\t\tf 3 -11574 11574 11575\n\t\tmu 0 3 16118 16119 16120\n\t\tf 3 11576 11577 11578\n\t\tmu 0 3 16121 16122 16123\n\t\tf 3 11579 -11571 11580\n\t\tmu 0 3 16124 16125 16126\n\t\tf 3 11581 11582 -11581\n\t\tmu 0 3 16127 16128 16129\n\t\tf 3 -11583 11583 11584\n\t\tmu 0 3 16130 16131 16132\n\t\tf 3 11585 11586 -11585\n\t\tmu 0 3 16133 16134 16135\n\t\tf 3 -11586 11587 11588\n\t\tmu 0 3 16136 16137 16138\n\t\tf 3 11589 11590 -11589\n\t\tmu 0 3 16139 16140 16141\n\t\tf 3 11591 -11590 11592\n\t\tmu 0 3 16142 16143 16144\n\t\tf 3 11593 11594 -11593\n\t\tmu 0 3 16145 16146 16147\n\t\tf 3 -11595 11595 11596\n\t\tmu 0 3 16148 16149 16150\n\t\tf 3 11597 11598 -11597\n\t\tmu 0 3 16151 16152 16153\n\t\tf 3 -11136 -11001 11599\n\t\tmu 0 3 16154 16155 1355\n\t\tf 3 -10998 11600 -11600\n\t\tmu 0 3 1355 2153 16156\n\t\tf 3 -11601 -10999 -11145\n\t\tmu 0 3 16157 2153 5260\n\t\tf 3 11601 -11174 -11170\n\t\tmu 0 3 16158 16159 16160\n\t\tf 3 11602 11603 11604\n\t\tmu 0 3 6017 6318 2490\n\t\tf 3 11605 11606 -11605\n\t\tmu 0 3 2490 2818 6017\n\t\tf 3 -11607 11607 11608\n\t\tmu 0 3 6017 2818 567\n\t\tf 3 11609 11610 -11609\n\t\tmu 0 3 567 4712 6017\n\t\tf 3 11611 -11606 11612\n\t\tmu 0 3 1419 2818 2490\n\t\tf 3 11613 11614 -11613\n\t\tmu 0 3 2490 78 1419\n\t\tf 3 11615 -11615 11616\n\t\tmu 0 3 6538 1419 78\n\t\tf 3 11617 11618 -11617\n\t\tmu 0 3 78 908 6538\n\t\tf 3 -11619 11619 11620\n\t\tmu 0 3 6538 908 1880\n\t\tf 3 11621 11622 -11621\n\t\tmu 0 3 1880 3205 6538\n\t\tf 3 -11604 11623 11624\n\t\tmu 0 3 2490 6318 1232\n\t\tf 3 11625 11626 -11625\n\t\tmu 0 3 1232 304 2490\n\t\tf 3 -11626 11627 11628\n\t\tmu 0 3 304 1232 5838\n\t\tf 3 11629 11630 -11629\n\t\tmu 0 3 5838 3805 304\n\t\tf 3 11631 11632 11633\n\t\tmu 0 3 5238 1060 3233\n\t\tf 3 11634 11635 -11634\n\t\tmu 0 3 3233 2543 5238\n\t\tf 3 -11635 11636 11637\n\t\tmu 0 3 2543 3233 5216\n\t\tf 3 11638 11639 -11638\n\t\tmu 0 3 5216 2244 2543\n\t\tf 3 -11640 11640 11641\n\t\tmu 0 3 2543 2244 5715\n\t\tf 3 11642 11643 -11642\n\t\tmu 0 3 5715 187 2543\n\t\tf 3 11644 -11632 11645\n\t\tmu 0 3 2660 1060 5238\n\t\tf 3 11646 11647 -11646\n\t\tmu 0 3 5238 1641 2660\n\t\tf 3 11648 -11648 11649\n\t\tmu 0 3 6062 2660 1641\n\t\tf 3 11650 11651 -11650\n\t\tmu 0 3 1641 3071 6062\n\t\tf 3 -11652 11652 11653\n\t\tmu 0 3 6062 3071 5919\n\t\tf 3 11654 11655 -11654\n\t\tmu 0 3 5919 484 6062\n\t\tf 3 -11655 11656 11657\n\t\tmu 0 3 484 5919 979\n\t\tf 3 11658 11659 -11658\n\t\tmu 0 3 979 3402 484\n\t\tf 3 -11659 11660 11661\n\t\tmu 0 3 3402 979 2867\n\t\tf 3 11662 11663 -11662\n\t\tmu 0 3 2867 3680 3402\n\t\tf 3 11664 11665 11666\n\t\tmu 0 3 5270 6450 3195\n\t\tf 3 11667 11668 -11667\n\t\tmu 0 3 3195 1844 5270\n\t\tf 3 11669 -11665 11670\n\t\tmu 0 3 1094 6450 5270\n\t\tf 3 11671 11672 -11671\n\t\tmu 0 3 5270 5664 1094\n\t\tf 3 -11673 11673 11674\n\t\tmu 0 3 1094 5664 5488\n\t\tf 3 11675 11676 -11675\n\t\tmu 0 3 5488 5600 1094\n\t\tf 3 -11668 11677 11678\n\t\tmu 0 3 1844 3195 485\n\t\tf 3 11679 11680 -11679\n\t\tmu 0 3 485 2946 1844\n\t\tf 3 11681 -11676 11682\n\t\tmu 0 3 4295 5600 5488\n\t\tf 3 11683 11684 -11683\n\t\tmu 0 3 5488 701 4295\n\t\tf 3 11685 11686 11687\n\t\tmu 0 3 3228 3347 2773\n\t\tf 3 11688 11689 -11688\n\t\tmu 0 3 2773 6210 3228\n\t\tf 3 11690 -11687 11691\n\t\tmu 0 3 5928 2773 3347\n\t\tf 3 11692 11693 -11692\n\t\tmu 0 3 3347 5720 5928\n\t\tf 3 11694 11695 11696\n\t\tmu 0 3 5091 77 879\n\t\tf 3 11697 11698 -11697\n\t\tmu 0 3 879 5089 5091\n\t\tf 3 11699 11700 11701\n\t\tmu 0 3 1810 2283 4339\n\t\tf 3 11702 11703 -11702\n\t\tmu 0 3 4339 1597 1810\n\t\tf 3 -11704 11704 11705\n\t\tmu 0 3 1810 1597 1705\n\t\tf 3 11706 11707 -11706\n\t\tmu 0 3 1705 1902 1810\n\t\tf 3 11708 11709 11710\n\t\tmu 0 3 6249 4408 5689\n\t\tf 3 11711 11712 -11711\n\t\tmu 0 3 5689 16161 6249\n\t\tf 3 11713 11714 11715\n\t\tmu 0 3 2732 2011 2005\n\t\tf 3 11716 11717 -11716\n\t\tmu 0 3 2005 16162 2732\n\t\tf 3 11718 11719 11720\n\t\tmu 0 3 3495 16163 16164\n\t\tf 3 11721 11722 -11721\n\t\tmu 0 3 16165 4582 3495\n\t\tf 3 -11723 11723 11724\n\t\tmu 0 3 3495 4582 4176\n\t\tf 3 11725 11726 -11725\n\t\tmu 0 3 4176 4936 3495\n\t\tf 3 11727 11728 11729\n\t\tmu 0 3 3698 3749 3933\n\t\tf 3 11730 11731 -11730\n\t\tmu 0 3 3933 3273 3698\n\t\tf 3 11732 -11728 11733\n\t\tmu 0 3 1959 3749 3698\n\t\tf 3 11734 11735 11736\n\t\tmu 0 3 16166 904 16167\n\t\tf 3 11737 -11736 11738\n\t\tmu 0 3 1929 16168 904\n\t\tf 3 11739 11740 -11739\n\t\tmu 0 3 904 4054 1929\n\t\tf 3 -11741 11741 11742\n\t\tmu 0 3 1929 4054 884\n\t\tf 3 11743 11744 -11743\n\t\tmu 0 3 884 4284 1929\n\t\tf 3 11745 -11707 11746\n\t\tmu 0 3 3655 5345 1705\n\t\tf 3 11747 11748 -11747\n\t\tmu 0 3 1705 4074 3655\n\t\tf 3 11749 11750 11751\n\t\tmu 0 3 2962 2819 6547\n\t\tf 3 11752 11753 -11752\n\t\tmu 0 3 6547 5018 2962\n\t\tf 3 -11753 11754 11755\n\t\tmu 0 3 5018 6547 6058\n\t\tf 3 11756 11757 -11756\n\t\tmu 0 3 6058 4260 5018\n\t\tf 3 11758 11759 11760\n\t\tmu 0 3 3238 110 958\n\t\tf 3 11761 11762 -11761\n\t\tmu 0 3 958 5350 3238\n\t\tf 3 11763 -11763 11764\n\t\tmu 0 3 485 3238 5350\n\t\tf 3 11765 -11680 -11765\n\t\tmu 0 3 5350 2946 485\n\t\tf 3 11766 11767 11768\n\t\tmu 0 3 5002 2776 110\n\t\tf 3 -11759 11769 -11769\n\t\tmu 0 3 110 3238 5002\n\t\tf 3 11770 -11767 11771\n\t\tmu 0 3 2890 2776 5002\n\t\tf 3 11772 11773 -11772\n\t\tmu 0 3 5002 4366 2890\n\t\tf 3 11774 -11770 11775\n\t\tmu 0 3 4728 5002 3238\n\t\tf 3 -11773 -11775 11776\n\t\tmu 0 3 4366 5002 4728\n\t\tf 3 11777 11778 -11776\n\t\tmu 0 3 3238 16169 4728\n\t\tf 3 11779 11780 -11777\n\t\tmu 0 3 4728 5542 4366\n\t\tf 3 11781 11782 11783\n\t\tmu 0 3 5592 1133 507\n\t\tf 3 11784 11785 -11784\n\t\tmu 0 3 507 5019 5592\n\t\tf 3 11786 -11783 11787\n\t\tmu 0 3 4873 507 1133\n\t\tf 3 11788 11789 -11788\n\t\tmu 0 3 1133 1252 4873\n\t\tf 3 11790 -11786 11791\n\t\tmu 0 3 640 5592 5019\n\t\tf 3 11792 11793 -11792\n\t\tmu 0 3 5019 6164 640\n\t\tf 3 11794 -11790 11795\n\t\tmu 0 3 1441 4873 1252\n\t\tf 3 11796 11797 -11796\n\t\tmu 0 3 1252 4857 1441\n\t\tf 3 11798 11799 -11798\n\t\tmu 0 3 4857 1020 1441\n\t\tf 3 11800 -11794 11801\n\t\tmu 0 3 2484 640 6164\n\t\tf 3 11802 11803 -11802\n\t\tmu 0 3 6164 950 2484\n\t\tf 3 11804 11805 11806\n\t\tmu 0 3 5079 2913 4397\n\t\tf 3 11807 11808 -11807\n\t\tmu 0 3 4397 2174 5079\n\t\tf 3 11809 -11806 11810\n\t\tmu 0 3 4539 4397 2913\n\t\tf 3 11811 11812 -11811\n\t\tmu 0 3 2913 4494 4539\n\t\tf 3 11813 -11809 11814\n\t\tmu 0 3 6004 5079 2174\n\t\tf 3 11815 11816 -11815\n\t\tmu 0 3 2174 4880 6004\n\t\tf 3 11817 -11813 11818\n\t\tmu 0 3 4035 4539 4494\n\t\tf 3 11819 11820 -11819\n\t\tmu 0 3 4494 4365 4035\n\t\tf 3 11821 -11817 11822\n\t\tmu 0 3 2142 6004 4880\n\t\tf 3 11823 11824 -11823\n\t\tmu 0 3 4880 3120 2142\n\t\tf 3 11825 11826 11827\n\t\tmu 0 3 749 16170 16171\n\t\tf 3 11828 11829 -11828\n\t\tmu 0 3 16172 3261 749\n\t\tf 3 11830 11831 11832\n\t\tmu 0 3 3928 3847 2212\n\t\tf 3 11833 11834 -11833\n\t\tmu 0 3 2212 1538 3928\n\t\tf 3 -11831 11835 11836\n\t\tmu 0 3 3847 3928 1856\n\t\tf 3 11837 11838 -11837\n\t\tmu 0 3 1856 4062 3847\n\t\tf 3 -11834 11839 11840\n\t\tmu 0 3 1538 2212 750\n\t\tf 3 11841 11842 -11841\n\t\tmu 0 3 750 3214 1538\n\t\tf 3 11843 -11838 11844\n\t\tmu 0 3 5336 4062 1856\n\t\tf 3 11845 11846 -11845\n\t\tmu 0 3 1856 3291 5336\n\t\tf 3 11847 -11847 11848\n\t\tmu 0 3 407 5336 3291\n\t\tf 3 11849 11850 -11849\n\t\tmu 0 3 3291 2125 407\n\t\tf 3 11851 -11842 11852\n\t\tmu 0 3 2001 3214 750\n\t\tf 3 11853 11854 -11853\n\t\tmu 0 3 750 730 2001\n\t\tf 3 11855 -11851 11856\n\t\tmu 0 3 4377 2897 1806\n\t\tf 3 11857 11858 -11857\n\t\tmu 0 3 1806 1770 4377\n\t\tf 3 11859 11860 11861\n\t\tmu 0 3 4608 4946 719\n\t\tf 3 -11749 -11862 11862\n\t\tmu 0 3 5057 4608 719\n\t\tf 3 11863 -11678 11864\n\t\tmu 0 3 16173 16174 1575\n\t\tf 3 11865 11866 11867\n\t\tmu 0 3 4122 615 3285\n\t\tf 3 11868 11869 -11868\n\t\tmu 0 3 3285 2966 4122\n\t\tf 3 -11867 11870 11871\n\t\tmu 0 3 3285 615 4169\n\t\tf 3 11872 11873 -11872\n\t\tmu 0 3 4169 4517 3285\n\t\tf 3 11874 11875 11876\n\t\tmu 0 3 16175 16176 16177\n\t\tf 3 11877 11878 -11877\n\t\tmu 0 3 16178 16179 16180\n\t\tf 3 11879 -11875 11880\n\t\tmu 0 3 16181 16182 16183\n\t\tf 3 11881 11882 -11881\n\t\tmu 0 3 16184 16185 16186\n\t\tf 3 -11876 11883 11884\n\t\tmu 0 3 16187 16188 16189\n\t\tf 3 11885 11886 -11885\n\t\tmu 0 3 16190 16191 16192\n\t\tf 3 -11886 11887 11888\n\t\tmu 0 3 16193 16194 16195\n\t\tf 3 11889 11890 -11889\n\t\tmu 0 3 16196 16197 16198\n\t\tf 3 11891 -11890 11892\n\t\tmu 0 3 16199 16200 16201\n\t\tf 3 11893 11894 -11893\n\t\tmu 0 3 16202 16203 16204\n\t\tf 3 11895 -11878 11896\n\t\tmu 0 3 16205 16206 16207\n\t\tf 3 11897 11898 -11897\n\t\tmu 0 3 16208 16209 16210\n\t\tf 3 11899 -11899 11900\n\t\tmu 0 3 5838 16211 16212\n\t\tf 3 11901 -11630 -11901\n\t\tmu 0 3 16213 3805 5838\n\t\tf 3 11902 11903 11904\n\t\tmu 0 3 16214 16215 16216\n\t\tf 3 11905 11906 -11905\n\t\tmu 0 3 16217 16218 16219\n\t\tf 3 11907 -11904 11908\n\t\tmu 0 3 16220 16221 16222\n\t\tf 3 11909 11910 -11909\n\t\tmu 0 3 16223 16224 16225\n\t\tf 3 11911 -11910 11912\n\t\tmu 0 3 16226 16227 16228\n\t\tf 3 11913 11914 -11913\n\t\tmu 0 3 16229 16230 16231\n\t\tf 3 -11907 11915 11916\n\t\tmu 0 3 16232 16233 16234\n\t\tf 3 11917 11918 -11917\n\t\tmu 0 3 16235 16236 16237\n\t\tf 3 -11918 11919 11920\n\t\tmu 0 3 16238 16239 16240\n\t\tf 3 11921 11922 -11921\n\t\tmu 0 3 16241 16242 16243\n\t\tf 3 11923 -11922 11924\n\t\tmu 0 3 16244 16245 16246\n\t\tf 3 11925 11926 -11925\n\t\tmu 0 3 16247 16248 16249\n\t\tf 3 11927 -11927 11928\n\t\tmu 0 3 16250 16251 16252\n\t\tf 3 11929 11930 -11929\n\t\tmu 0 3 16253 16254 16255\n\t\tf 3 11931 -11931 11932\n\t\tmu 0 3 2867 16256 16257\n\t\tf 3 11933 -11663 -11933\n\t\tmu 0 3 16258 3680 2867\n\t\tf 3 11934 11935 11936\n\t\tmu 0 3 16259 16260 16261\n\t\tf 3 11937 11938 -11937\n\t\tmu 0 3 16262 16263 16264\n\t\tf 3 -11936 11939 11940\n\t\tmu 0 3 16265 16266 16267\n\t\tf 3 11941 11942 -11941\n\t\tmu 0 3 16268 16269 16270\n\t\tf 3 11943 -11942 11944\n\t\tmu 0 3 16271 16272 16273\n\t\tf 3 11945 11946 -11945\n\t\tmu 0 3 16274 16275 16276\n\t\tf 3 11947 -11939 11948\n\t\tmu 0 3 16277 16278 16279\n\t\tf 3 11949 11950 -11949\n\t\tmu 0 3 16280 16281 16282\n\t\tf 3 -11947 11951 11952\n\t\tmu 0 3 16283 16284 4295\n\t\tf 3 -11685 11953 -11953\n\t\tmu 0 3 4295 701 16285\n\t\tf 3 11954 11955 11956\n\t\tmu 0 3 16286 16287 16288\n\t\tf 3 11957 11958 -11957\n\t\tmu 0 3 16289 16290 16291\n\t\tf 3 -11958 11959 11960\n\t\tmu 0 3 16292 16293 16294\n\t\tf 3 11961 11962 -11961\n\t\tmu 0 3 16295 16296 16297\n\t\tf 3 11963 11964 11965\n\t\tmu 0 3 16298 16299 16300\n\t\tf 3 11966 11967 -11966\n\t\tmu 0 3 16301 16302 16303\n\t\tf 3 11968 11969 11970\n\t\tmu 0 3 16304 16305 16306\n\t\tf 3 11971 11972 -11971\n\t\tmu 0 3 16307 16308 16309\n\t\tf 3 -11972 11973 11974\n\t\tmu 0 3 16310 16311 28\n\t\tf 3 11975 11976 -11975\n\t\tmu 0 3 28 16312 16313\n\t\tf 3 11977 11978 11979\n\t\tmu 0 3 16314 16315 16316\n\t\tf 3 11980 11981 -11980\n\t\tmu 0 3 16317 16318 16319\n\t\tf 3 11982 11983 11984\n\t\tmu 0 3 16320 16321 16322\n\t\tf 3 11985 11986 -11985\n\t\tmu 0 3 16323 16324 16325\n\t\tf 3 11987 11988 11989\n\t\tmu 0 3 16326 16327 16328\n\t\tf 3 11990 11991 -11990\n\t\tmu 0 3 16329 16330 16331\n\t\tf 3 -11991 11992 11993\n\t\tmu 0 3 16332 16333 16334\n\t\tf 3 11994 11995 -11994\n\t\tmu 0 3 16335 2284 16336\n\t\tf 3 11996 11997 11998\n\t\tmu 0 3 16337 16338 16339\n\t\tf 3 11999 12000 -11999\n\t\tmu 0 3 16340 16341 16342\n\t\tf 3 -12000 12001 12002\n\t\tmu 0 3 16343 16344 16345\n\t\tf 3 12003 12004 12005\n\t\tmu 0 3 16346 16347 16348\n\t\tf 3 -12004 12006 12007\n\t\tmu 0 3 16349 16350 16351\n\t\tf 3 12008 12009 -12008\n\t\tmu 0 3 16352 16353 16354\n\t\tf 3 -12009 12010 12011\n\t\tmu 0 3 16355 16356 16357\n\t\tf 3 12012 12013 -12012\n\t\tmu 0 3 16358 16359 16360\n\t\tf 3 -11976 12014 12015\n\t\tmu 0 3 16361 16362 16363\n\t\tf 3 12016 12017 -12016\n\t\tmu 0 3 16364 16365 16366\n\t\tf 3 -11750 12018 12019\n\t\tmu 0 3 2819 2962 16367\n\t\tf 3 12020 12021 -12020\n\t\tmu 0 3 16368 16369 2819\n\t\tf 3 -12021 12022 12023\n\t\tmu 0 3 16370 16371 5671\n\t\tf 3 12024 12025 -12024\n\t\tmu 0 3 5671 16372 16373\n\t\tf 3 12026 12027 12028\n\t\tmu 0 3 16374 16375 16376\n\t\tf 3 12029 12030 -12029\n\t\tmu 0 3 16377 16378 16379\n\t\tf 3 -12027 12031 12032\n\t\tmu 0 3 16380 16381 16382\n\t\tf 3 -11951 12033 -12033\n\t\tmu 0 3 16383 16384 16385\n\t\tf 3 12034 -12031 12035\n\t\tmu 0 3 16386 16387 16388\n\t\tf 3 12036 12037 -12036\n\t\tmu 0 3 16389 16390 16391\n\t\tf 3 -12038 12038 12039\n\t\tmu 0 3 16392 16393 16394\n\t\tf 3 12040 12041 -12040\n\t\tmu 0 3 16395 16396 16397\n\t\tf 3 -12035 12042 12043\n\t\tmu 0 3 16398 16399 16400\n\t\tf 3 -12043 -12042 12044\n\t\tmu 0 3 16401 16402 16403\n\t\tf 3 12045 12046 -12044\n\t\tmu 0 3 16404 16405 16406\n\t\tf 3 12047 12048 -12045\n\t\tmu 0 3 16407 16408 16409\n\t\tf 3 12049 12050 12051\n\t\tmu 0 3 16410 16411 16412\n\t\tf 3 12052 12053 -12052\n\t\tmu 0 3 16413 16414 16415\n\t\tf 3 -12053 12054 12055\n\t\tmu 0 3 16416 16417 16418\n\t\tf 3 12056 12057 -12056\n\t\tmu 0 3 16419 16420 16421\n\t\tf 3 -12050 12058 12059\n\t\tmu 0 3 16422 16423 16424\n\t\tf 3 12060 12061 -12060\n\t\tmu 0 3 16425 16426 16427\n\t\tf 3 -12057 12062 12063\n\t\tmu 0 3 16428 16429 16430\n\t\tf 3 12064 12065 -12064\n\t\tmu 0 3 16431 16432 16433\n\t\tf 3 -12065 12066 12067\n\t\tmu 0 3 16434 16435 16436\n\t\tf 3 -12061 12068 12069\n\t\tmu 0 3 16437 16438 2484\n\t\tf 3 -11804 12070 -12070\n\t\tmu 0 3 2484 950 16439\n\t\tf 3 12071 12072 12073\n\t\tmu 0 3 16440 16441 16442\n\t\tf 3 12074 12075 -12074\n\t\tmu 0 3 16443 16444 16445\n\t\tf 3 -12075 12076 12077\n\t\tmu 0 3 16446 16447 16448\n\t\tf 3 12078 12079 -12078\n\t\tmu 0 3 16449 16450 16451\n\t\tf 3 -12072 12080 12081\n\t\tmu 0 3 16452 16453 16454\n\t\tf 3 12082 12083 -12082\n\t\tmu 0 3 16455 16456 16457\n\t\tf 3 -12079 12084 12085\n\t\tmu 0 3 16458 16459 16460\n\t\tf 3 12086 12087 -12086\n\t\tmu 0 3 16461 16462 16463\n\t\tf 3 -12083 12088 12089\n\t\tmu 0 3 16464 16465 2142\n\t\tf 3 -11825 12090 -12090\n\t\tmu 0 3 2142 3120 16466\n\t\tf 3 12091 12092 12093\n\t\tmu 0 3 16467 16468 16469\n\t\tf 3 12094 12095 -12094\n\t\tmu 0 3 16470 16471 16472\n\t\tf 3 12096 12097 12098\n\t\tmu 0 3 16473 16474 16475\n\t\tf 3 12099 12100 -12099\n\t\tmu 0 3 16476 16477 16478\n\t\tf 3 -12100 12101 12102\n\t\tmu 0 3 16479 16480 16481\n\t\tf 3 12103 12104 -12103\n\t\tmu 0 3 16482 16483 16484\n\t\tf 3 -12097 12105 12106\n\t\tmu 0 3 16485 16486 16487\n\t\tf 3 12107 12108 -12107\n\t\tmu 0 3 16488 16489 16490\n\t\tf 3 -12104 12109 12110\n\t\tmu 0 3 16491 16492 16493\n\t\tf 3 12111 12112 -12111\n\t\tmu 0 3 16494 16495 16496\n\t\tf 3 -12112 12113 12114\n\t\tmu 0 3 16497 16498 16499\n\t\tf 3 12115 12116 -12115\n\t\tmu 0 3 16500 16501 16502\n\t\tf 3 -12108 12117 12118\n\t\tmu 0 3 16503 16504 2001\n\t\tf 3 -11855 12119 -12119\n\t\tmu 0 3 2001 730 16505\n\t\tf 3 12120 12121 12122\n\t\tmu 0 3 16506 16507 16508\n\t\tf 3 -12116 12123 -12123\n\t\tmu 0 3 16509 16510 16511\n\t\tf 3 12124 -11948 12125\n\t\tmu 0 3 16512 16513 16514\n\t\tf 3 12126 12127 -12017\n\t\tmu 0 3 16515 16516 16517\n\t\tf 3 12128 12129 -12128\n\t\tmu 0 3 16518 16519 16520\n\t\tf 3 12130 12131 12132\n\t\tmu 0 3 16521 16522 16523\n\t\tf 3 12133 12134 -12133\n\t\tmu 0 3 16524 16525 16526\n\t\tf 3 -12134 12135 12136\n\t\tmu 0 3 16527 16528 16529\n\t\tf 3 12137 12138 -12137\n\t\tmu 0 3 16530 16531 16532\n\t\tf 3 12139 12140 12141\n\t\tmu 0 3 5844 2572 3142\n\t\tf 3 12142 12143 -12142\n\t\tmu 0 3 3142 3079 5844\n\t\tf 3 12144 -12140 12145\n\t\tmu 0 3 4621 2572 5844\n\t\tf 3 12146 12147 -12146\n\t\tmu 0 3 5844 4413 4621\n\t\tf 3 -12148 12148 12149\n\t\tmu 0 3 4621 4413 918\n\t\tf 3 12150 12151 -12150\n\t\tmu 0 3 918 177 4621\n\t\tf 3 12152 -12151 12153\n\t\tmu 0 3 1121 177 918\n\t\tf 3 12154 12155 -12154\n\t\tmu 0 3 918 4210 1121\n\t\tf 3 -12156 12156 12157\n\t\tmu 0 3 1121 4210 6053\n\t\tf 3 12158 12159 -12158\n\t\tmu 0 3 6053 3059 1121\n\t\tf 3 12160 -12159 12161\n\t\tmu 0 3 5500 3059 6053\n\t\tf 3 12162 12163 -12162\n\t\tmu 0 3 6053 5208 5500\n\t\tf 3 -12164 12164 12165\n\t\tmu 0 3 5500 5208 3292\n\t\tf 3 12166 12167 -12166\n\t\tmu 0 3 3292 178 5500\n\t\tf 3 12168 -12167 12169\n\t\tmu 0 3 6496 178 3292\n\t\tf 3 12170 12171 -12170\n\t\tmu 0 3 3292 2158 6496\n\t\tf 3 -12172 12172 12173\n\t\tmu 0 3 6496 2158 5295\n\t\tf 3 12174 12175 -12174\n\t\tmu 0 3 5295 5794 6496\n\t\tf 3 12176 -12175 12177\n\t\tmu 0 3 2472 5794 5295\n\t\tf 3 12178 12179 -12178\n\t\tmu 0 3 5295 5758 2472\n\t\tf 3 -12180 12180 12181\n\t\tmu 0 3 2472 5758 919\n\t\tf 3 12182 12183 -12182\n\t\tmu 0 3 919 6026 2472\n\t\tf 3 12184 12185 12186\n\t\tmu 0 3 5207 2763 4432\n\t\tf 3 12187 -12183 -12187\n\t\tmu 0 3 4432 5764 5207\n\t\tf 3 -12186 12188 12189\n\t\tmu 0 3 4432 2763 2061\n\t\tf 3 12190 12191 -12190\n\t\tmu 0 3 2061 2206 4432\n\t\tf 3 12192 -12191 12193\n\t\tmu 0 3 3745 2206 2061\n\t\tf 3 12194 12195 -12194\n\t\tmu 0 3 2061 2871 3745\n\t\tf 3 -12196 12196 12197\n\t\tmu 0 3 3745 2871 851\n\t\tf 3 12198 12199 -12198\n\t\tmu 0 3 851 6021 3745\n\t\tf 3 -12199 12200 12201\n\t\tmu 0 3 6021 851 3079\n\t\tf 3 -12143 12202 -12202\n\t\tmu 0 3 3079 3142 6021\n\t\tf 3 12203 12204 12205\n\t\tmu 0 3 4323 5601 4745\n\t\tf 3 12206 12207 -12206\n\t\tmu 0 3 4745 1313 4323\n\t\tf 3 12208 -12208 12209\n\t\tmu 0 3 118 4323 1313\n\t\tf 3 12210 12211 -12210\n\t\tmu 0 3 1313 83 118\n\t\tf 3 12212 -12212 12213\n\t\tmu 0 3 5440 118 83\n\t\tf 3 12214 12215 -12214\n\t\tmu 0 3 83 239 5440\n\t\tf 3 12216 -12216 12217\n\t\tmu 0 3 6379 5440 239\n\t\tf 3 12218 12219 -12218\n\t\tmu 0 3 239 508 6379\n\t\tf 3 12220 -12220 12221\n\t\tmu 0 3 4632 6379 508\n\t\tf 3 12222 12223 -12222\n\t\tmu 0 3 508 2367 4632\n\t\tf 3 12224 -12224 12225\n\t\tmu 0 3 3121 4632 2367\n\t\tf 3 12226 12227 -12226\n\t\tmu 0 3 2367 1501 3121\n\t\tf 3 12228 -12228 12229\n\t\tmu 0 3 6371 3121 1501\n\t\tf 3 12230 12231 -12230\n\t\tmu 0 3 1501 5426 6371\n\t\tf 3 12232 -12205 12233\n\t\tmu 0 3 4781 4745 5601\n\t\tf 3 12234 12235 -12234\n\t\tmu 0 3 5601 6093 4781\n\t\tf 3 12236 -12236 12237\n\t\tmu 0 3 6236 4781 6093\n\t\tf 3 12238 12239 -12238\n\t\tmu 0 3 6093 5467 6236\n\t\tf 3 12240 -12240 12241\n\t\tmu 0 3 6456 6236 5467\n\t\tf 3 12242 12243 -12242\n\t\tmu 0 3 5467 2646 6456\n\t\tf 3 12244 -12244 12245\n\t\tmu 0 3 3103 6456 2646\n\t\tf 3 12246 12247 -12246\n\t\tmu 0 3 2646 6472 3103\n\t\tf 3 12248 -12248 12249\n\t\tmu 0 3 6342 3103 6472\n\t\tf 3 12250 12251 -12250\n\t\tmu 0 3 6472 3264 6342\n\t\tf 3 12252 -12252 12253\n\t\tmu 0 3 4875 6342 3264\n\t\tf 3 12254 12255 -12254\n\t\tmu 0 3 3264 4893 4875\n\t\tf 3 12256 -12256 12257\n\t\tmu 0 3 4975 4875 4893\n\t\tf 3 12258 12259 -12258\n\t\tmu 0 3 4893 4660 4975\n\t\tf 3 12260 -12260 12261\n\t\tmu 0 3 533 4975 4660\n\t\tf 3 12262 12263 -12262\n\t\tmu 0 3 4660 2631 533\n\t\tf 3 12264 -12264 12265\n\t\tmu 0 3 5920 533 2631\n\t\tf 3 12266 -12232 -12266\n\t\tmu 0 3 2631 3072 5920\n\t\tf 3 12267 12268 12269\n\t\tmu 0 3 3190 16533 16534\n\t\tf 3 12270 12271 -12270\n\t\tmu 0 3 16535 430 3190\n\t\tf 3 12272 -12271 12273\n\t\tmu 0 3 1862 430 16536\n\t\tf 3 12274 12275 -12274\n\t\tmu 0 3 16537 16538 1862\n\t\tf 3 -12276 12276 12277\n\t\tmu 0 3 1862 16539 16540\n\t\tf 3 12278 12279 -12278\n\t\tmu 0 3 16541 4932 1862\n\t\tf 3 12280 -12279 12281\n\t\tmu 0 3 4881 4932 16542\n\t\tf 3 12282 12283 -12282\n\t\tmu 0 3 16543 16544 4881\n\t\tf 3 -12284 12284 12285\n\t\tmu 0 3 4881 16545 16546\n\t\tf 3 12286 12287 -12286\n\t\tmu 0 3 16547 684 4881\n\t\tf 3 12288 -12287 12289\n\t\tmu 0 3 166 684 16548\n\t\tf 3 12290 12291 -12290\n\t\tmu 0 3 16549 16550 166\n\t\tf 3 -12292 12292 12293\n\t\tmu 0 3 166 16551 16552\n\t\tf 3 12294 12295 -12294\n\t\tmu 0 3 16553 6440 166\n\t\tf 3 -12268 12296 12297\n\t\tmu 0 3 16554 3190 6345\n\t\tf 3 12298 12299 -12298\n\t\tmu 0 3 6345 16555 16556\n\t\tf 3 -12299 12300 12301\n\t\tmu 0 3 16557 6345 1047\n\t\tf 3 12302 12303 -12302\n\t\tmu 0 3 1047 16558 16559\n\t\tf 3 12304 -12303 12305\n\t\tmu 0 3 16560 16561 1047\n\t\tf 3 12306 12307 -12306\n\t\tmu 0 3 1047 6530 16562\n\t\tf 3 -12308 12308 12309\n\t\tmu 0 3 16563 6530 3453\n\t\tf 3 12310 12311 -12310\n\t\tmu 0 3 3453 16564 16565\n\t\tf 3 12312 -12311 12313\n\t\tmu 0 3 16566 16567 3453\n\t\tf 3 12314 12315 -12314\n\t\tmu 0 3 3453 3707 16568\n\t\tf 3 -12316 12316 12317\n\t\tmu 0 3 16569 3707 1603\n\t\tf 3 12318 12319 -12318\n\t\tmu 0 3 1603 16570 16571\n\t\tf 3 12320 -12319 12321\n\t\tmu 0 3 16572 16573 1603\n\t\tf 3 12322 12323 -12322\n\t\tmu 0 3 1603 798 16574\n\t\tf 3 -12324 12324 12325\n\t\tmu 0 3 16575 798 2123\n\t\tf 3 12326 12327 -12326\n\t\tmu 0 3 2123 16576 16577\n\t\tf 3 12328 -12327 12329\n\t\tmu 0 3 16578 16579 2123\n\t\tf 3 12330 -12295 -12330\n\t\tmu 0 3 2123 6215 16580\n\t\tf 3 12331 12332 12333\n\t\tmu 0 3 1622 6367 5668\n\t\tf 3 12334 12335 -12334\n\t\tmu 0 3 5668 1916 1622\n\t\tf 3 12336 -12332 12337\n\t\tmu 0 3 4805 6367 1622\n\t\tf 3 12338 12339 -12338\n\t\tmu 0 3 1622 4112 4805\n\t\tf 3 -12340 12340 12341\n\t\tmu 0 3 4805 4112 6460\n\t\tf 3 12342 12343 -12342\n\t\tmu 0 3 6460 4499 4805\n\t\tf 3 12344 -12343 12345\n\t\tmu 0 3 2691 4499 6460\n\t\tf 3 12346 12347 -12346\n\t\tmu 0 3 6460 520 2691\n\t\tf 3 -12348 12348 12349\n\t\tmu 0 3 2691 520 2404\n\t\tf 3 12350 12351 -12350\n\t\tmu 0 3 2404 1279 2691\n\t\tf 3 12352 -12351 12353\n\t\tmu 0 3 3859 1279 2404\n\t\tf 3 12354 12355 -12354\n\t\tmu 0 3 2404 3667 3859\n\t\tf 3 -12356 12356 12357\n\t\tmu 0 3 3859 3667 5553\n\t\tf 3 12358 12359 -12358\n\t\tmu 0 3 5553 2237 3859\n\t\tf 3 12360 -12359 12361\n\t\tmu 0 3 6539 2237 5553\n\t\tf 3 12362 12363 -12362\n\t\tmu 0 3 5553 6419 6539\n\t\tf 3 -12364 12364 12365\n\t\tmu 0 3 6539 6419 2238\n\t\tf 3 12366 12367 -12366\n\t\tmu 0 3 2238 3148 6539;\n\tsetAttr \".fc[6500:6999]\"\n\t\tf 3 12368 -12367 12369\n\t\tmu 0 3 1889 3148 2238\n\t\tf 3 12370 12371 -12370\n\t\tmu 0 3 2238 4798 1889\n\t\tf 3 -12372 12372 12373\n\t\tmu 0 3 1889 4798 3629\n\t\tf 3 12374 12375 -12374\n\t\tmu 0 3 3629 1662 1889\n\t\tf 3 12376 -12375 12377\n\t\tmu 0 3 910 3762 6196\n\t\tf 3 12378 12379 -12378\n\t\tmu 0 3 6196 2847 910\n\t\tf 3 -12380 12380 12381\n\t\tmu 0 3 910 2847 2376\n\t\tf 3 12382 12383 -12382\n\t\tmu 0 3 2376 3915 910\n\t\tf 3 12384 -12383 12385\n\t\tmu 0 3 4344 3915 2376\n\t\tf 3 12386 12387 -12386\n\t\tmu 0 3 2376 2539 4344\n\t\tf 3 -12388 12388 12389\n\t\tmu 0 3 4344 2539 632\n\t\tf 3 12390 12391 -12390\n\t\tmu 0 3 632 2689 4344\n\t\tf 3 -12391 12392 12393\n\t\tmu 0 3 2689 632 1916\n\t\tf 3 -12335 12394 -12394\n\t\tmu 0 3 1916 5668 2689\n\t\tf 3 12395 12396 12397\n\t\tmu 0 3 6059 6071 999\n\t\tf 3 12398 12399 -12398\n\t\tmu 0 3 999 1263 6059\n\t\tf 3 12400 -12400 12401\n\t\tmu 0 3 4253 6059 1263\n\t\tf 3 12402 12403 -12402\n\t\tmu 0 3 1263 3220 4253\n\t\tf 3 12404 -12404 12405\n\t\tmu 0 3 2674 4253 3220\n\t\tf 3 12406 12407 -12406\n\t\tmu 0 3 3220 1439 2674\n\t\tf 3 12408 -12408 12409\n\t\tmu 0 3 875 2674 1439\n\t\tf 3 12410 12411 -12410\n\t\tmu 0 3 1439 5273 875\n\t\tf 3 12412 -12412 12413\n\t\tmu 0 3 1004 875 5273\n\t\tf 3 12414 12415 -12414\n\t\tmu 0 3 5273 3316 1004\n\t\tf 3 12416 -12416 12417\n\t\tmu 0 3 5924 1004 3316\n\t\tf 3 12418 12419 -12418\n\t\tmu 0 3 3316 4523 5924\n\t\tf 3 12420 -12420 12421\n\t\tmu 0 3 2361 5924 4523\n\t\tf 3 12422 12423 -12422\n\t\tmu 0 3 4523 4889 2361\n\t\tf 3 12424 -12397 12425\n\t\tmu 0 3 4757 999 6071\n\t\tf 3 12426 12427 -12426\n\t\tmu 0 3 6071 2345 4757\n\t\tf 3 12428 -12428 12429\n\t\tmu 0 3 3163 4757 2345\n\t\tf 3 12430 12431 -12430\n\t\tmu 0 3 2345 2696 3163\n\t\tf 3 12432 -12432 12433\n\t\tmu 0 3 845 3163 2696\n\t\tf 3 12434 12435 -12434\n\t\tmu 0 3 2696 3226 845\n\t\tf 3 12436 -12436 12437\n\t\tmu 0 3 3337 845 3226\n\t\tf 3 12438 12439 -12438\n\t\tmu 0 3 3226 5823 3337\n\t\tf 3 12440 -12440 12441\n\t\tmu 0 3 1036 3337 5823\n\t\tf 3 12442 12443 -12442\n\t\tmu 0 3 5823 5144 1036\n\t\tf 3 12444 -12444 12445\n\t\tmu 0 3 6042 1036 5144\n\t\tf 3 12446 12447 -12446\n\t\tmu 0 3 5144 5752 6042\n\t\tf 3 12448 -12448 12449\n\t\tmu 0 3 5979 6042 5752\n\t\tf 3 12450 12451 -12450\n\t\tmu 0 3 5752 140 5979\n\t\tf 3 12452 -12452 12453\n\t\tmu 0 3 5642 5979 140\n\t\tf 3 12454 12455 -12454\n\t\tmu 0 3 140 4717 5642\n\t\tf 3 12456 -12456 12457\n\t\tmu 0 3 551 5642 4717\n\t\tf 3 12458 -12424 -12458\n\t\tmu 0 3 4717 4656 551\n\t\tf 3 12459 12460 12461\n\t\tmu 0 3 3839 16581 16582\n\t\tf 3 12462 -12460 12463\n\t\tmu 0 3 16583 16584 3839\n\t\tf 3 12464 12465 -12462\n\t\tmu 0 3 16585 1316 3839\n\t\tf 3 12466 12467 12468\n\t\tmu 0 3 2030 16586 16587\n\t\tf 3 12469 -12467 12470\n\t\tmu 0 3 16588 16589 2030\n\t\tf 3 12471 -12465 -12471\n\t\tmu 0 3 2030 1316 16590\n\t\tf 3 12472 12473 -12469\n\t\tmu 0 3 16591 4485 2030\n\t\tf 3 12474 12475 -12464\n\t\tmu 0 3 3839 3776 16592\n\t\tf 3 12476 12477 12478\n\t\tmu 0 3 16593 16594 6415\n\t\tf 3 12479 -12473 -12479\n\t\tmu 0 3 6415 4485 16595\n\t\tf 3 -12478 12480 12481\n\t\tmu 0 3 6415 16596 16597\n\t\tf 3 12482 12483 -12482\n\t\tmu 0 3 16598 752 6415\n\t\tf 3 12484 -12483 12485\n\t\tmu 0 3 393 752 16599\n\t\tf 3 12486 12487 -12486\n\t\tmu 0 3 16600 16601 393\n\t\tf 3 -12488 12488 12489\n\t\tmu 0 3 393 16602 16603\n\t\tf 3 12490 12491 -12490\n\t\tmu 0 3 16604 4818 393\n\t\tf 3 -12491 12492 12493\n\t\tmu 0 3 4818 16605 16606\n\t\tf 3 12494 12495 -12494\n\t\tmu 0 3 16607 1584 4818\n\t\tf 3 -12495 12496 12497\n\t\tmu 0 3 1584 16608 16609\n\t\tf 3 12498 12499 -12498\n\t\tmu 0 3 16610 6072 1584\n\t\tf 3 12500 -12499 12501\n\t\tmu 0 3 3500 6072 16611\n\t\tf 3 12502 12503 -12502\n\t\tmu 0 3 16612 16613 3500\n\t\tf 3 -12504 12504 12505\n\t\tmu 0 3 3500 16614 16615\n\t\tf 3 12506 12507 -12506\n\t\tmu 0 3 16616 1985 3500\n\t\tf 3 12508 -12507 12509\n\t\tmu 0 3 1536 1985 16617\n\t\tf 3 12510 12511 -12510\n\t\tmu 0 3 16618 16619 1536\n\t\tf 3 -12512 12512 12513\n\t\tmu 0 3 1536 16620 16621\n\t\tf 3 12514 12515 -12514\n\t\tmu 0 3 16622 5421 1536\n\t\tf 3 12516 -12515 12517\n\t\tmu 0 3 3498 5421 16623\n\t\tf 3 12518 12519 -12518\n\t\tmu 0 3 16624 16625 3498\n\t\tf 3 -12520 12520 12521\n\t\tmu 0 3 3498 16626 16627\n\t\tf 3 -12476 12522 -12522\n\t\tmu 0 3 16628 3929 3498\n\t\tf 3 12523 12524 12525\n\t\tmu 0 3 5383 6205 2933\n\t\tf 3 12526 12527 -12526\n\t\tmu 0 3 2933 3880 5383\n\t\tf 3 12528 -12524 12529\n\t\tmu 0 3 4207 6205 5383\n\t\tf 3 12530 12531 -12530\n\t\tmu 0 3 5383 3011 4207\n\t\tf 3 -12532 12532 12533\n\t\tmu 0 3 4207 3011 829\n\t\tf 3 12534 12535 -12534\n\t\tmu 0 3 829 5839 4207\n\t\tf 3 12536 -12535 12537\n\t\tmu 0 3 3916 5839 829\n\t\tf 3 12538 12539 -12538\n\t\tmu 0 3 829 6457 3916\n\t\tf 3 -12540 12540 12541\n\t\tmu 0 3 3916 6457 907\n\t\tf 3 12542 12543 -12542\n\t\tmu 0 3 907 2022 3916\n\t\tf 3 12544 -12543 12545\n\t\tmu 0 3 1204 2022 907\n\t\tf 3 12546 12547 -12546\n\t\tmu 0 3 907 3591 1204\n\t\tf 3 -12548 12548 12549\n\t\tmu 0 3 1204 3591 1917\n\t\tf 3 12550 12551 -12550\n\t\tmu 0 3 1917 5971 1204\n\t\tf 3 12552 -12551 12553\n\t\tmu 0 3 4696 5971 1917\n\t\tf 3 12554 12555 -12554\n\t\tmu 0 3 1917 3437 4696\n\t\tf 3 -12556 12556 12557\n\t\tmu 0 3 4696 3437 674\n\t\tf 3 12558 12559 -12558\n\t\tmu 0 3 674 5133 4696\n\t\tf 3 12560 12561 12562\n\t\tmu 0 3 3151 5667 1526\n\t\tf 3 12563 -12559 -12563\n\t\tmu 0 3 1526 3154 3151\n\t\tf 3 -12562 12564 12565\n\t\tmu 0 3 1526 5667 6425\n\t\tf 3 12566 12567 -12566\n\t\tmu 0 3 6425 6417 1526\n\t\tf 3 12568 -12567 12569\n\t\tmu 0 3 3381 6417 6425\n\t\tf 3 12570 12571 -12570\n\t\tmu 0 3 6425 3155 3381\n\t\tf 3 -12572 12572 12573\n\t\tmu 0 3 3381 3155 3668\n\t\tf 3 12574 12575 -12574\n\t\tmu 0 3 3668 4528 3381\n\t\tf 3 12576 -12575 12577\n\t\tmu 0 3 5521 4528 3668\n\t\tf 3 12578 12579 -12578\n\t\tmu 0 3 3668 867 5521\n\t\tf 3 -12580 12580 12581\n\t\tmu 0 3 5521 867 6203\n\t\tf 3 12582 12583 -12582\n\t\tmu 0 3 6203 5385 5521\n\t\tf 3 -12583 12584 12585\n\t\tmu 0 3 5385 6203 3880\n\t\tf 3 -12527 12586 -12586\n\t\tmu 0 3 3880 2933 5385\n\t\tf 3 12587 12588 12589\n\t\tmu 0 3 2886 4566 1358\n\t\tf 3 12590 12591 -12590\n\t\tmu 0 3 1358 3866 2886\n\t\tf 3 12592 -12592 12593\n\t\tmu 0 3 4488 2886 3866\n\t\tf 3 12594 12595 -12594\n\t\tmu 0 3 3866 2954 4488\n\t\tf 3 12596 -12596 12597\n\t\tmu 0 3 5852 4488 2954\n\t\tf 3 12598 12599 -12598\n\t\tmu 0 3 2954 2545 5852\n\t\tf 3 12600 -12600 12601\n\t\tmu 0 3 319 5852 2545\n\t\tf 3 12602 12603 -12602\n\t\tmu 0 3 2545 1260 319\n\t\tf 3 12604 -12604 12605\n\t\tmu 0 3 6094 319 1260\n\t\tf 3 12606 12607 -12606\n\t\tmu 0 3 1260 6245 6094\n\t\tf 3 12608 -12608 12609\n\t\tmu 0 3 2698 6094 6245\n\t\tf 3 12610 12611 -12610\n\t\tmu 0 3 6245 893 2698\n\t\tf 3 12612 -12612 12613\n\t\tmu 0 3 2980 2698 893\n\t\tf 3 12614 12615 -12614\n\t\tmu 0 3 893 6156 2980\n\t\tf 3 12616 -12616 12617\n\t\tmu 0 3 5945 2980 6156\n\t\tf 3 12618 12619 -12618\n\t\tmu 0 3 6156 731 5945\n\t\tf 3 12620 -12620 12621\n\t\tmu 0 3 1754 5945 731\n\t\tf 3 12622 12623 -12622\n\t\tmu 0 3 731 5925 1754\n\t\tf 3 12624 -12624 12625\n\t\tmu 0 3 641 1754 5925\n\t\tf 3 12626 12627 -12626\n\t\tmu 0 3 5925 3254 641\n\t\tf 3 12628 -12628 12629\n\t\tmu 0 3 6013 641 3254\n\t\tf 3 12630 12631 -12630\n\t\tmu 0 3 3254 3874 6013\n\t\tf 3 12632 -12632 12633\n\t\tmu 0 3 5390 6013 3874\n\t\tf 3 12634 12635 -12634\n\t\tmu 0 3 3874 5926 5390\n\t\tf 3 12636 -12636 12637\n\t\tmu 0 3 253 5390 5926\n\t\tf 3 12638 12639 -12638\n\t\tmu 0 3 5926 4376 253\n\t\tf 3 12640 -12640 12641\n\t\tmu 0 3 1366 253 4376\n\t\tf 3 12642 12643 -12642\n\t\tmu 0 3 4376 5943 1366\n\t\tf 3 12644 -12644 12645\n\t\tmu 0 3 3735 1366 5943\n\t\tf 3 12646 12647 -12646\n\t\tmu 0 3 5943 2575 3735\n\t\tf 3 12648 -12648 12649\n\t\tmu 0 3 4566 3735 2575\n\t\tf 3 12650 -12589 -12650\n\t\tmu 0 3 2575 1358 4566\n\t\tf 3 12651 12652 12653\n\t\tmu 0 3 4389 141 983\n\t\tf 3 12654 12655 -12654\n\t\tmu 0 3 983 4641 4389\n\t\tf 3 12656 -12652 12657\n\t\tmu 0 3 4491 141 4389\n\t\tf 3 12658 12659 -12658\n\t\tmu 0 3 4389 6485 4491\n\t\tf 3 -12660 12660 12661\n\t\tmu 0 3 4491 6485 2747\n\t\tf 3 12662 12663 -12662\n\t\tmu 0 3 2747 2661 4491\n\t\tf 3 12664 -12663 12665\n\t\tmu 0 3 3240 2661 2747\n\t\tf 3 12666 12667 -12666\n\t\tmu 0 3 2747 3807 3240\n\t\tf 3 -12668 12668 12669\n\t\tmu 0 3 3240 3807 1205\n\t\tf 3 12670 12671 -12670\n\t\tmu 0 3 1205 5231 3240\n\t\tf 3 12672 -12671 12673\n\t\tmu 0 3 5232 5231 1205\n\t\tf 3 12674 12675 -12674\n\t\tmu 0 3 1205 5190 5232\n\t\tf 3 -12676 12676 12677\n\t\tmu 0 3 5232 5190 4269\n\t\tf 3 12678 12679 -12678\n\t\tmu 0 3 4269 1102 5232\n\t\tf 3 12680 -12679 12681\n\t\tmu 0 3 472 1102 4269\n\t\tf 3 12682 12683 -12682\n\t\tmu 0 3 4269 2368 472\n\t\tf 3 -12684 12684 12685\n\t\tmu 0 3 472 2368 400\n\t\tf 3 12686 12687 -12686\n\t\tmu 0 3 400 5570 472\n\t\tf 3 12688 12689 12690\n\t\tmu 0 3 4354 172 6166\n\t\tf 3 12691 -12687 -12691\n\t\tmu 0 3 6166 634 4354\n\t\tf 3 -12690 12692 12693\n\t\tmu 0 3 6166 172 4521\n\t\tf 3 12694 12695 -12694\n\t\tmu 0 3 4521 3563 6166\n\t\tf 3 12696 -12695 12697\n\t\tmu 0 3 5337 3563 4521\n\t\tf 3 12698 12699 -12698\n\t\tmu 0 3 4521 4884 5337\n\t\tf 3 -12700 12700 12701\n\t\tmu 0 3 5337 4884 4616\n\t\tf 3 12702 12703 -12702\n\t\tmu 0 3 4616 131 5337\n\t\tf 3 12704 -12703 12705\n\t\tmu 0 3 5576 131 4616\n\t\tf 3 12706 12707 -12706\n\t\tmu 0 3 4616 786 5576\n\t\tf 3 -12708 12708 12709\n\t\tmu 0 3 5576 786 2144\n\t\tf 3 12710 12711 -12710\n\t\tmu 0 3 2144 5145 5576\n\t\tf 3 -12711 12712 12713\n\t\tmu 0 3 5145 2144 4641\n\t\tf 3 -12655 12714 -12714\n\t\tmu 0 3 4641 983 5145\n\t\tf 3 12715 12716 12717\n\t\tmu 0 3 473 2518 1967\n\t\tf 3 12718 12719 -12718\n\t\tmu 0 3 1967 4007 473\n\t\tf 3 12720 -12716 12721\n\t\tmu 0 3 2789 2518 473\n\t\tf 3 12722 12723 -12722\n\t\tmu 0 3 473 5966 2789\n\t\tf 3 -12724 12724 12725\n\t\tmu 0 3 2789 5966 3355\n\t\tf 3 12726 12727 -12726\n\t\tmu 0 3 3355 1817 2789\n\t\tf 3 12728 -12727 12729\n\t\tmu 0 3 1226 1817 3355\n\t\tf 3 12730 12731 -12730\n\t\tmu 0 3 3355 1473 1226\n\t\tf 3 -12732 12732 12733\n\t\tmu 0 3 1226 1473 6490\n\t\tf 3 12734 12735 -12734\n\t\tmu 0 3 6490 1412 1226\n\t\tf 3 12736 -12735 12737\n\t\tmu 0 3 5653 1412 6490\n\t\tf 3 12738 12739 -12738\n\t\tmu 0 3 6490 1181 5653\n\t\tf 3 -12740 12740 12741\n\t\tmu 0 3 5653 1181 3746\n\t\tf 3 12742 12743 -12742\n\t\tmu 0 3 3746 3763 5653\n\t\tf 3 12744 -12743 12745\n\t\tmu 0 3 2820 3763 3746\n\t\tf 3 12746 12747 -12746\n\t\tmu 0 3 3746 2952 2820\n\t\tf 3 -12748 12748 12749\n\t\tmu 0 3 2820 2952 4250\n\t\tf 3 12750 12751 -12750\n\t\tmu 0 3 4250 4469 2820\n\t\tf 3 12752 12753 12754\n\t\tmu 0 3 1605 1592 5338\n\t\tf 3 12755 -12751 -12755\n\t\tmu 0 3 5338 4814 1605\n\t\tf 3 -12754 12756 12757\n\t\tmu 0 3 5338 1592 787\n\t\tf 3 12758 12759 -12758\n\t\tmu 0 3 787 1347 5338\n\t\tf 3 12760 -12759 12761\n\t\tmu 0 3 6548 1347 787\n\t\tf 3 12762 12763 -12762\n\t\tmu 0 3 787 5499 6548\n\t\tf 3 -12764 12764 12765\n\t\tmu 0 3 6548 5499 2774\n\t\tf 3 12766 12767 -12766\n\t\tmu 0 3 2774 4261 6548\n\t\tf 3 12768 -12767 12769\n\t\tmu 0 3 6483 4261 2774\n\t\tf 3 12770 12771 -12770\n\t\tmu 0 3 2774 4277 6483\n\t\tf 3 -12772 12772 12773\n\t\tmu 0 3 6483 4277 3318\n\t\tf 3 12774 12775 -12774\n\t\tmu 0 3 3318 237 6483\n\t\tf 3 -12775 12776 12777\n\t\tmu 0 3 237 3318 4007\n\t\tf 3 -12719 12778 -12778\n\t\tmu 0 3 4007 1967 237\n\t\tf 3 12779 12780 12781\n\t\tmu 0 3 3684 3450 2563\n\t\tf 3 12782 12783 -12782\n\t\tmu 0 3 2563 2565 3684\n\t\tf 3 12784 -12780 12785\n\t\tmu 0 3 4208 3450 3684\n\t\tf 3 12786 12787 -12786\n\t\tmu 0 3 3684 1022 4208\n\t\tf 3 -12788 12788 12789\n\t\tmu 0 3 4208 1022 6226\n\t\tf 3 12790 12791 -12790\n\t\tmu 0 3 6226 5571 4208\n\t\tf 3 12792 -12791 12793\n\t\tmu 0 3 612 5571 6226\n\t\tf 3 12794 12795 -12794\n\t\tmu 0 3 6226 2729 612\n\t\tf 3 -12796 12796 12797\n\t\tmu 0 3 612 2729 4770\n\t\tf 3 12798 12799 -12798\n\t\tmu 0 3 4770 4554 612\n\t\tf 3 12800 -12799 12801\n\t\tmu 0 3 736 4554 4770\n\t\tf 3 12802 12803 -12802\n\t\tmu 0 3 4770 1827 736\n\t\tf 3 -12804 12804 12805\n\t\tmu 0 3 736 1827 6531\n\t\tf 3 12806 12807 -12806\n\t\tmu 0 3 6531 5803 736\n\t\tf 3 12808 -12807 12809\n\t\tmu 0 3 6340 5803 6531\n\t\tf 3 12810 12811 -12810\n\t\tmu 0 3 6531 2268 6340\n\t\tf 3 -12812 12812 12813\n\t\tmu 0 3 6340 2268 4248\n\t\tf 3 12814 12815 -12814\n\t\tmu 0 3 4248 5003 6340\n\t\tf 3 12816 12817 12818\n\t\tmu 0 3 3101 3442 2221\n\t\tf 3 12819 -12815 -12819\n\t\tmu 0 3 2221 3662 3101\n\t\tf 3 -12818 12820 12821\n\t\tmu 0 3 2221 3442 2709\n\t\tf 3 12822 12823 -12822\n\t\tmu 0 3 2709 6197 2221\n\t\tf 3 12824 -12823 12825\n\t\tmu 0 3 811 6197 2709\n\t\tf 3 12826 12827 -12826\n\t\tmu 0 3 2709 5846 811\n\t\tf 3 -12828 12828 12829\n\t\tmu 0 3 811 5846 183\n\t\tf 3 12830 12831 -12830\n\t\tmu 0 3 183 2777 811\n\t\tf 3 12832 -12831 12833\n\t\tmu 0 3 1396 2777 183\n\t\tf 3 12834 12835 -12834\n\t\tmu 0 3 183 911 1396\n\t\tf 3 -12836 12836 12837\n\t\tmu 0 3 1396 911 4729\n\t\tf 3 12838 12839 -12838\n\t\tmu 0 3 4729 1822 1396\n\t\tf 3 -12839 12840 12841\n\t\tmu 0 3 1822 4729 2565\n\t\tf 3 -12783 12842 -12842\n\t\tmu 0 3 2565 2563 1822\n\t\tf 3 12843 12844 12845\n\t\tmu 0 3 5059 4933 6378\n\t\tf 3 12846 12847 -12846\n\t\tmu 0 3 6378 2758 5059\n\t\tf 3 12848 -12847 12849\n\t\tmu 0 3 600 2758 6378\n\t\tf 3 12850 12851 -12850\n\t\tmu 0 3 6378 6219 600\n\t\tf 3 -12852 12852 12853\n\t\tmu 0 3 600 6219 5543\n\t\tf 3 12854 12855 -12854\n\t\tmu 0 3 5543 5953 600\n\t\tf 3 12856 -12855 12857\n\t\tmu 0 3 2129 5953 5543\n\t\tf 3 12858 12859 -12858\n\t\tmu 0 3 5543 5603 2129\n\t\tf 3 -12860 12860 12861\n\t\tmu 0 3 2129 5603 576\n\t\tf 3 12862 12863 -12862\n\t\tmu 0 3 576 6039 2129\n\t\tf 3 12864 -12863 12865\n\t\tmu 0 3 3524 6039 576\n\t\tf 3 12866 12867 -12866\n\t\tmu 0 3 576 3502 3524\n\t\tf 3 -12868 12868 12869\n\t\tmu 0 3 3524 3502 6311\n\t\tf 3 12870 12871 -12870\n\t\tmu 0 3 6311 3262 3524\n\t\tf 3 12872 -12871 12873\n\t\tmu 0 3 6514 3262 6311\n\t\tf 3 12874 12875 -12874\n\t\tmu 0 3 6311 1377 6514\n\t\tf 3 -12876 12876 12877\n\t\tmu 0 3 6514 1377 1290\n\t\tf 3 12878 12879 -12878\n\t\tmu 0 3 1290 6529 6514\n\t\tf 3 12880 12881 12882\n\t\tmu 0 3 5262 4999 4578\n\t\tf 3 12883 -12879 -12883\n\t\tmu 0 3 4578 2924 5262\n\t\tf 3 -12882 12884 12885\n\t\tmu 0 3 4578 4999 5897\n\t\tf 3 12886 12887 -12886\n\t\tmu 0 3 5897 6241 4578\n\t\tf 3 12888 -12887 12889\n\t\tmu 0 3 898 6241 5897\n\t\tf 3 12890 12891 -12890\n\t\tmu 0 3 5897 4807 898\n\t\tf 3 -12892 12892 12893\n\t\tmu 0 3 898 4807 5895\n\t\tf 3 12894 12895 -12894\n\t\tmu 0 3 5895 732 898\n\t\tf 3 12896 -12895 12897\n\t\tmu 0 3 5772 732 5895\n\t\tf 3 12898 12899 -12898\n\t\tmu 0 3 5895 4906 5772\n\t\tf 3 -12900 12900 12901\n\t\tmu 0 3 5772 4906 3128\n\t\tf 3 12902 12903 -12902\n\t\tmu 0 3 3128 5120 5772\n\t\tf 3 -12903 12904 12905\n\t\tmu 0 3 5120 3128 4933\n\t\tf 3 -12844 12906 -12906\n\t\tmu 0 3 4933 5059 5120\n\t\tf 3 12907 12908 12909\n\t\tmu 0 3 1819 3757 16629\n\t\tf 3 12910 12911 -12910\n\t\tmu 0 3 16630 16631 1819\n\t\tf 3 12912 -12909 12913\n\t\tmu 0 3 16632 16633 3757\n\t\tf 3 12914 12915 -12914\n\t\tmu 0 3 3757 4324 16634\n\t\tf 3 12916 -12916 12917\n\t\tmu 0 3 16635 16636 4324\n\t\tf 3 12918 12919 -12918\n\t\tmu 0 3 4324 4240 16637\n\t\tf 3 12920 -12920 12921\n\t\tmu 0 3 16638 16639 4240\n\t\tf 3 12922 12923 -12922\n\t\tmu 0 3 4240 2865 16640\n\t\tf 3 12924 -12924 12925\n\t\tmu 0 3 16641 16642 2865\n\t\tf 3 12926 12927 -12926\n\t\tmu 0 3 2865 4227 16643\n\t\tf 3 12928 -12928 12929\n\t\tmu 0 3 16644 16645 4227\n\t\tf 3 12930 12931 -12930\n\t\tmu 0 3 4227 179 16646\n\t\tf 3 12932 -12932 12933\n\t\tmu 0 3 16647 16648 179\n\t\tf 3 12934 12935 -12934\n\t\tmu 0 3 179 2377 16649\n\t\tf 3 12936 -12936 12937\n\t\tmu 0 3 16650 16651 2377\n\t\tf 3 12938 12939 -12938\n\t\tmu 0 3 2377 2258 16652\n\t\tf 3 12940 -12940 12941\n\t\tmu 0 3 16653 16654 2258\n\t\tf 3 12942 12943 -12942\n\t\tmu 0 3 2258 521 16655\n\t\tf 3 12944 12945 12946\n\t\tmu 0 3 2813 3031 16656\n\t\tf 3 12947 -12944 -12947\n\t\tmu 0 3 16657 16658 2813\n\t\tf 3 12948 -12946 12949\n\t\tmu 0 3 16659 16660 3031\n\t\tf 3 12950 12951 -12950\n\t\tmu 0 3 3031 1294 16661\n\t\tf 3 12952 -12952 12953\n\t\tmu 0 3 16662 16663 1294\n\t\tf 3 12954 12955 -12954\n\t\tmu 0 3 1294 5403 16664\n\t\tf 3 12956 -12956 12957\n\t\tmu 0 3 16665 16666 5403\n\t\tf 3 12958 12959 -12958\n\t\tmu 0 3 5403 1996 16667\n\t\tf 3 12960 -12960 12961\n\t\tmu 0 3 16668 16669 1996\n\t\tf 3 12962 12963 -12962\n\t\tmu 0 3 1996 5561 16670\n\t\tf 3 12964 -12964 12965\n\t\tmu 0 3 16671 16672 5561\n\t\tf 3 12966 12967 -12966\n\t\tmu 0 3 5561 26 16673\n\t\tf 3 12968 -12968 12969\n\t\tmu 0 3 16674 16675 26\n\t\tf 3 12970 -12912 -12970\n\t\tmu 0 3 26 1819 16676\n\t\tf 3 12971 12972 12973\n\t\tmu 0 3 4448 954 16677\n\t\tf 3 12974 12975 -12974\n\t\tmu 0 3 16678 16679 4448\n\t\tf 3 12976 -12973 12977\n\t\tmu 0 3 16680 16681 954\n\t\tf 3 12978 12979 -12978\n\t\tmu 0 3 954 3018 16682\n\t\tf 3 12980 -12980 12981\n\t\tmu 0 3 16683 16684 3018\n\t\tf 3 12982 12983 -12982\n\t\tmu 0 3 3018 1815 16685\n\t\tf 3 12984 -12984 12985\n\t\tmu 0 3 16686 16687 1815\n\t\tf 3 12986 12987 -12986\n\t\tmu 0 3 1815 4335 16688\n\t\tf 3 12988 -12988 12989\n\t\tmu 0 3 16689 16690 4335\n\t\tf 3 12990 12991 -12990\n\t\tmu 0 3 4335 2685 16691\n\t\tf 3 12992 -12992 12993\n\t\tmu 0 3 16692 16693 2685\n\t\tf 3 12994 12995 -12994\n\t\tmu 0 3 2685 1227 16694\n\t\tf 3 12996 -12996 12997\n\t\tmu 0 3 16695 16696 1227\n\t\tf 3 12998 12999 -12998\n\t\tmu 0 3 1227 1171 16697\n\t\tf 3 13000 -13000 13001\n\t\tmu 0 3 16698 16699 1171\n\t\tf 3 13002 13003 -13002\n\t\tmu 0 3 1171 6474 16700\n\t\tf 3 13004 -13004 13005\n\t\tmu 0 3 16701 16702 6474\n\t\tf 3 13006 13007 -13006\n\t\tmu 0 3 6474 5501 16703\n\t\tf 3 13008 13009 13010\n\t\tmu 0 3 4558 4838 16704\n\t\tf 3 13011 -13008 -13011\n\t\tmu 0 3 16705 16706 4558\n\t\tf 3 13012 -13010 13013\n\t\tmu 0 3 16707 16708 4838\n\t\tf 3 13014 13015 -13014\n\t\tmu 0 3 4838 387 16709\n\t\tf 3 13016 -13016 13017\n\t\tmu 0 3 16710 16711 387\n\t\tf 3 13018 13019 -13018\n\t\tmu 0 3 387 3206 16712\n\t\tf 3 13020 -13020 13021\n\t\tmu 0 3 16713 16714 3206\n\t\tf 3 13022 13023 -13022\n\t\tmu 0 3 3206 3712 16715\n\t\tf 3 13024 -13024 13025\n\t\tmu 0 3 16716 16717 3712\n\t\tf 3 13026 13027 -13026\n\t\tmu 0 3 3712 2222 16718\n\t\tf 3 13028 -13028 13029\n\t\tmu 0 3 16719 16720 2222\n\t\tf 3 13030 13031 -13030\n\t\tmu 0 3 2222 1660 16721\n\t\tf 3 13032 -13032 13033\n\t\tmu 0 3 16722 16723 1660\n\t\tf 3 13034 -12976 -13034\n\t\tmu 0 3 1660 4448 16724\n\t\tf 3 13035 13036 13037\n\t\tmu 0 3 3705 876 16725\n\t\tf 3 13038 13039 -13038\n\t\tmu 0 3 16726 16727 3705\n\t\tf 3 13040 -13037 13041\n\t\tmu 0 3 16728 16729 876\n\t\tf 3 13042 13043 -13042\n\t\tmu 0 3 876 4901 16730\n\t\tf 3 13044 -13044 13045\n\t\tmu 0 3 16731 16732 4901\n\t\tf 3 13046 13047 -13046\n\t\tmu 0 3 4901 3514 16733\n\t\tf 3 13048 -13048 13049\n\t\tmu 0 3 16734 16735 3514\n\t\tf 3 13050 13051 -13050\n\t\tmu 0 3 3514 6000 16736\n\t\tf 3 13052 -13052 13053\n\t\tmu 0 3 16737 16738 6000\n\t\tf 3 13054 13055 -13054\n\t\tmu 0 3 6000 4817 16739\n\t\tf 3 13056 -13056 13057\n\t\tmu 0 3 16740 16741 4817\n\t\tf 3 13058 13059 -13058\n\t\tmu 0 3 4817 2409 16742\n\t\tf 3 13060 -13060 13061\n\t\tmu 0 3 16743 16744 2409\n\t\tf 3 13062 13063 -13062\n\t\tmu 0 3 2409 1436 16745\n\t\tf 3 13064 -13064 13065\n\t\tmu 0 3 16746 16747 1436\n\t\tf 3 13066 13067 -13066\n\t\tmu 0 3 1436 1644 16748\n\t\tf 3 13068 -13068 13069\n\t\tmu 0 3 16749 16750 1644\n\t\tf 3 13070 13071 -13070\n\t\tmu 0 3 1644 2213 16751\n\t\tf 3 13072 13073 13074\n\t\tmu 0 3 1009 3171 16752\n\t\tf 3 13075 -13072 -13075\n\t\tmu 0 3 16753 16754 1009\n\t\tf 3 13076 -13074 13077\n\t\tmu 0 3 16755 16756 3171\n\t\tf 3 13078 13079 -13078\n\t\tmu 0 3 3171 3821 16757\n\t\tf 3 13080 -13080 13081\n\t\tmu 0 3 16758 16759 3821\n\t\tf 3 13082 13083 -13082\n\t\tmu 0 3 3821 4296 16760\n\t\tf 3 13084 -13084 13085\n\t\tmu 0 3 16761 16762 4296\n\t\tf 3 13086 13087 -13086\n\t\tmu 0 3 4296 697 16763\n\t\tf 3 13088 -13088 13089\n\t\tmu 0 3 16764 16765 697\n\t\tf 3 13090 13091 -13090\n\t\tmu 0 3 697 920 16766\n\t\tf 3 13092 -13092 13093\n\t\tmu 0 3 16767 16768 920\n\t\tf 3 13094 13095 -13094\n\t\tmu 0 3 920 1318 16769\n\t\tf 3 13096 -13096 13097\n\t\tmu 0 3 16770 16771 1318\n\t\tf 3 13098 -13040 -13098\n\t\tmu 0 3 1318 3705 16772\n\t\tf 3 13099 13100 13101\n\t\tmu 0 3 4191 1679 16773\n\t\tf 3 13102 13103 -13102\n\t\tmu 0 3 16774 16775 4191\n\t\tf 3 13104 -13101 13105\n\t\tmu 0 3 16776 16777 1679\n\t\tf 3 13106 13107 -13106\n\t\tmu 0 3 1679 4393 16778\n\t\tf 3 13108 -13108 13109\n\t\tmu 0 3 16779 16780 4393\n\t\tf 3 13110 13111 -13110\n\t\tmu 0 3 4393 1544 16781\n\t\tf 3 13112 -13112 13113\n\t\tmu 0 3 16782 16783 1544\n\t\tf 3 13114 13115 -13114\n\t\tmu 0 3 1544 5187 16784\n\t\tf 3 13116 -13116 13117\n\t\tmu 0 3 16785 16786 5187\n\t\tf 3 13118 13119 -13118\n\t\tmu 0 3 5187 5604 16787\n\t\tf 3 13120 -13120 13121\n\t\tmu 0 3 16788 16789 5604\n\t\tf 3 13122 13123 -13122\n\t\tmu 0 3 5604 2742 16790\n\t\tf 3 13124 -13124 13125\n\t\tmu 0 3 16791 16792 2742\n\t\tf 3 13126 13127 -13126\n\t\tmu 0 3 2742 1305 16793\n\t\tf 3 13128 -13128 13129\n\t\tmu 0 3 16794 16795 1305\n\t\tf 3 13130 13131 -13130\n\t\tmu 0 3 1305 1650 16796\n\t\tf 3 13132 -13132 13133\n\t\tmu 0 3 16797 16798 1650\n\t\tf 3 13134 13135 -13134\n\t\tmu 0 3 1650 2863 16799\n\t\tf 3 13136 13137 13138\n\t\tmu 0 3 5364 3867 16800\n\t\tf 3 13139 -13136 -13139\n\t\tmu 0 3 16801 16802 5364\n\t\tf 3 13140 -13138 13141\n\t\tmu 0 3 16803 16804 3867\n\t\tf 3 13142 13143 -13142\n\t\tmu 0 3 3867 743 16805\n\t\tf 3 13144 -13144 13145\n\t\tmu 0 3 16806 16807 743\n\t\tf 3 13146 13147 -13146\n\t\tmu 0 3 743 5717 16808\n\t\tf 3 13148 -13148 13149\n\t\tmu 0 3 16809 16810 5717\n\t\tf 3 13150 13151 -13150\n\t\tmu 0 3 5717 6119 16811\n\t\tf 3 13152 -13152 13153\n\t\tmu 0 3 16812 16813 6119\n\t\tf 3 13154 13155 -13154\n\t\tmu 0 3 6119 1614 16814\n\t\tf 3 13156 -13156 13157\n\t\tmu 0 3 16815 16816 1614\n\t\tf 3 13158 13159 -13158\n\t\tmu 0 3 1614 4330 16817\n\t\tf 3 13160 -13160 13161\n\t\tmu 0 3 16818 16819 4330\n\t\tf 3 13162 -13104 -13162\n\t\tmu 0 3 4330 4191 16820\n\t\tf 3 13163 13164 13165\n\t\tmu 0 3 3725 6204 24\n\t\tf 3 13166 13167 -13166\n\t\tmu 0 3 24 4016 3725\n\t\tf 3 13168 -13167 13169\n\t\tmu 0 3 1282 4016 24\n\t\tf 3 13170 13171 -13170\n\t\tmu 0 3 24 5378 1282\n\t\tf 3 -13172 13172 13173\n\t\tmu 0 3 1282 5378 4529\n\t\tf 3 13174 13175 -13174\n\t\tmu 0 3 4529 2045 1282\n\t\tf 3 13176 -13175 13177\n\t\tmu 0 3 2690 2045 4529\n\t\tf 3 13178 13179 -13178\n\t\tmu 0 3 4529 277 2690\n\t\tf 3 -13180 13180 13181\n\t\tmu 0 3 2690 277 5522\n\t\tf 3 13182 13183 -13182\n\t\tmu 0 3 5522 868 2690\n\t\tf 3 13184 -13183 13185\n\t\tmu 0 3 4086 868 5522\n\t\tf 3 13186 13187 -13186\n\t\tmu 0 3 5522 48 4086\n\t\tf 3 -13188 13188 13189\n\t\tmu 0 3 4086 48 6423\n\t\tf 3 13190 13191 -13190\n\t\tmu 0 3 6423 3284 4086\n\t\tf 3 13192 -13191 13193\n\t\tmu 0 3 4530 3284 6423\n\t\tf 3 13194 13195 -13194\n\t\tmu 0 3 6423 2046 4530\n\t\tf 3 -13196 13196 13197\n\t\tmu 0 3 4530 2046 3626\n\t\tf 3 13198 13199 -13198\n\t\tmu 0 3 3626 3627 4530\n\t\tf 3 13200 13201 13202\n\t\tmu 0 3 102 5572 1331\n\t\tf 3 13203 -13199 -13203\n\t\tmu 0 3 1331 4110 102\n\t\tf 3 -13202 13204 13205\n\t\tmu 0 3 1331 5572 4342\n\t\tf 3 13206 13207 -13206\n\t\tmu 0 3 4342 1920 1331\n\t\tf 3 13208 -13207 13209\n\t\tmu 0 3 1383 1920 4342\n\t\tf 3 13210 13211 -13210\n\t\tmu 0 3 4342 3737 1383\n\t\tf 3 -13212 13212 13213\n\t\tmu 0 3 1383 3737 1113\n\t\tf 3 13214 13215 -13214\n\t\tmu 0 3 1113 3535 1383\n\t\tf 3 13216 -13215 13217\n\t\tmu 0 3 41 3535 1113\n\t\tf 3 13218 13219 -13218\n\t\tmu 0 3 1113 5214 41\n\t\tf 3 -13220 13220 13221\n\t\tmu 0 3 41 5214 1030\n\t\tf 3 13222 13223 -13222\n\t\tmu 0 3 1030 5212 41\n\t\tf 3 -13223 13224 13225\n\t\tmu 0 3 5212 1030 6204\n\t\tf 3 -13164 13226 -13226\n\t\tmu 0 3 6204 3725 5212\n\t\tf 3 13227 13228 13229\n\t\tmu 0 3 1206 2002 185\n\t\tf 3 13230 13231 -13230\n\t\tmu 0 3 185 6015 1206\n\t\tf 3 -13231 13232 13233\n\t\tmu 0 3 6015 185 2566\n\t\tf 3 13234 13235 -13234\n\t\tmu 0 3 2566 3451 6015\n\t\tf 3 -13235 13236 13237\n\t\tmu 0 3 3451 2566 1875\n\t\tf 3 13238 13239 -13238\n\t\tmu 0 3 1875 2567 3451\n\t\tf 3 -13239 13240 13241\n\t\tmu 0 3 2567 1875 2179\n\t\tf 3 13242 13243 -13242\n\t\tmu 0 3 2179 4939 2567\n\t\tf 3 -13243 13244 13245\n\t\tmu 0 3 4939 2179 4534\n\t\tf 3 13246 13247 -13246\n\t\tmu 0 3 4534 3808 4939\n\t\tf 3 -13247 13248 13249\n\t\tmu 0 3 3808 4534 1766\n\t\tf 3 13250 13251 -13250\n\t\tmu 0 3 1766 1015 3808\n\t\tf 3 -13251 13252 13253\n\t\tmu 0 3 1015 1766 3187\n\t\tf 3 13254 13255 -13254\n\t\tmu 0 3 3187 5453 1015\n\t\tf 3 -13255 13256 13257\n\t\tmu 0 3 5453 3187 4381\n\t\tf 3 13258 13259 -13258\n\t\tmu 0 3 4381 4709 5453\n\t\tf 3 -13259 13260 13261\n\t\tmu 0 3 4709 4381 6054\n\t\tf 3 13262 13263 -13262\n\t\tmu 0 3 6054 6321 4709\n\t\tf 3 13264 13265 13266\n\t\tmu 0 3 248 247 1972\n\t\tf 3 -13263 13267 -13267\n\t\tmu 0 3 1972 1973 248\n\t\tf 3 -13265 13268 13269\n\t\tmu 0 3 247 248 6022\n\t\tf 3 13270 13271 -13270\n\t\tmu 0 3 6022 6426 247\n\t\tf 3 -13271 13272 13273\n\t\tmu 0 3 6426 6022 3726\n\t\tf 3 13274 13275 -13274\n\t\tmu 0 3 3726 6145 6426\n\t\tf 3 -13275 13276 13277\n\t\tmu 0 3 6145 3726 1918\n\t\tf 3 13278 13279 -13278\n\t\tmu 0 3 1918 3938 6145\n\t\tf 3 -13279 13280 13281\n\t\tmu 0 3 3938 1918 6149\n\t\tf 3 13282 13283 -13282\n\t\tmu 0 3 6149 405 3938\n\t\tf 3 -13283 13284 13285\n\t\tmu 0 3 405 6149 4559\n\t\tf 3 13286 13287 -13286\n\t\tmu 0 3 4559 3052 405\n\t\tf 3 -13287 13288 13289\n\t\tmu 0 3 3052 4559 2002\n\t\tf 3 -13228 13290 -13290\n\t\tmu 0 3 2002 1206 3052\n\t\tf 3 13291 13292 13293\n\t\tmu 0 3 579 1407 1729\n\t\tf 3 13294 13295 -13294\n\t\tmu 0 3 1729 6482 579\n\t\tf 3 13296 -13293 13297\n\t\tmu 0 3 16 1729 1407\n\t\tf 3 13298 13299 -13298\n\t\tmu 0 3 1407 3009 16\n\t\tf 3 13300 -13300 13301\n\t\tmu 0 3 4305 16 3009\n\t\tf 3 13302 13303 -13302\n\t\tmu 0 3 3009 6061 4305\n\t\tf 3 13304 -13304 13305\n\t\tmu 0 3 4350 4305 6061\n\t\tf 3 13306 13307 -13306\n\t\tmu 0 3 6061 1016 4350\n\t\tf 3 13308 -13308 13309\n\t\tmu 0 3 6395 4350 1016\n\t\tf 3 13310 13311 -13310\n\t\tmu 0 3 1016 6238 6395\n\t\tf 3 13312 -13312 13313\n\t\tmu 0 3 1096 6395 6238\n\t\tf 3 13314 13315 -13314\n\t\tmu 0 3 6238 768 1096\n\t\tf 3 13316 -13316 13317\n\t\tmu 0 3 1460 1096 768\n\t\tf 3 13318 13319 -13318\n\t\tmu 0 3 768 5718 1460\n\t\tf 3 13320 -13320 13321\n\t\tmu 0 3 3587 1460 5718\n\t\tf 3 13322 13323 -13322\n\t\tmu 0 3 5718 2803 3587\n\t\tf 3 13324 -13324 13325\n\t\tmu 0 3 4863 3587 2803\n\t\tf 3 13326 13327 -13326\n\t\tmu 0 3 2803 1400 4863\n\t\tf 3 13328 -13328 13329\n\t\tmu 0 3 5557 4863 1400\n\t\tf 3 13330 13331 -13330\n\t\tmu 0 3 1400 5999 5557\n\t\tf 3 13332 -13332 13333\n\t\tmu 0 3 4832 5557 5999\n\t\tf 3 13334 13335 -13334\n\t\tmu 0 3 5999 4406 4832\n\t\tf 3 13336 -13336 13337\n\t\tmu 0 3 4231 4832 4406\n\t\tf 3 13338 13339 -13338\n\t\tmu 0 3 4406 643 4231\n\t\tf 3 13340 -13340 13341\n\t\tmu 0 3 4560 4231 643\n\t\tf 3 13342 13343 -13342\n\t\tmu 0 3 643 3567 4560\n\t\tf 3 13344 -13344 13345\n\t\tmu 0 3 6237 4560 3567\n\t\tf 3 13346 13347 -13346\n\t\tmu 0 3 3567 5147 6237\n\t\tf 3 13348 -13348 13349\n\t\tmu 0 3 4438 6237 5147\n\t\tf 3 13350 13351 -13350\n\t\tmu 0 3 5147 4642 4438\n\t\tf 3 13352 -13352 13353\n\t\tmu 0 3 6482 4438 4642\n\t\tf 3 13354 -13296 -13354\n\t\tmu 0 3 4642 579 6482\n\t\tf 3 13355 13356 13357\n\t\tmu 0 3 3809 2159 3102\n\t\tf 3 13358 13359 -13358\n\t\tmu 0 3 3102 816 3809\n\t\tf 3 -13359 13360 13361\n\t\tmu 0 3 816 3102 2059\n\t\tf 3 13362 13363 -13362\n\t\tmu 0 3 2059 2438 816\n\t\tf 3 -13363 13364 13365\n\t\tmu 0 3 2438 2059 4211\n\t\tf 3 13366 13367 -13366\n\t\tmu 0 3 4211 2568 2438;\n\tsetAttr \".fc[7000:7499]\"\n\t\tf 3 -13367 13368 13369\n\t\tmu 0 3 2568 4211 3056\n\t\tf 3 13370 13371 -13370\n\t\tmu 0 3 3056 2192 2568\n\t\tf 3 -13371 13372 13373\n\t\tmu 0 3 2192 3056 3275\n\t\tf 3 13374 13375 -13374\n\t\tmu 0 3 3275 4705 2192\n\t\tf 3 -13375 13376 13377\n\t\tmu 0 3 4705 3275 1559\n\t\tf 3 13378 13379 -13378\n\t\tmu 0 3 1559 754 4705\n\t\tf 3 -13379 13380 13381\n\t\tmu 0 3 754 1559 4707\n\t\tf 3 13382 13383 -13382\n\t\tmu 0 3 4707 1409 754\n\t\tf 3 -13383 13384 13385\n\t\tmu 0 3 1409 4707 1882\n\t\tf 3 13386 13387 -13386\n\t\tmu 0 3 1882 529 1409\n\t\tf 3 -13387 13388 13389\n\t\tmu 0 3 529 1882 360\n\t\tf 3 13390 13391 -13390\n\t\tmu 0 3 360 2434 529\n\t\tf 3 13392 13393 13394\n\t\tmu 0 3 6234 16821 16822\n\t\tf 3 13395 13396 -13395\n\t\tmu 0 3 16823 5317 6234\n\t\tf 3 -13396 13397 13398\n\t\tmu 0 3 5317 16824 16825\n\t\tf 3 13399 13400 -13399\n\t\tmu 0 3 16826 1201 5317\n\t\tf 3 -13400 13401 13402\n\t\tmu 0 3 1201 16827 16828\n\t\tf 3 13403 13404 -13403\n\t\tmu 0 3 16829 2569 1201\n\t\tf 3 13405 13406 13407\n\t\tmu 0 3 6177 16830 16831\n\t\tf 3 13408 13409 -13408\n\t\tmu 0 3 16832 6126 6177\n\t\tf 3 -13406 13410 13411\n\t\tmu 0 3 16833 6177 4706\n\t\tf 3 13412 13413 -13412\n\t\tmu 0 3 4706 16834 16835\n\t\tf 3 -13413 13414 13415\n\t\tmu 0 3 16836 4706 2165\n\t\tf 3 13416 13417 -13416\n\t\tmu 0 3 2165 16837 16838\n\t\tf 3 -13404 13418 13419\n\t\tmu 0 3 2569 16839 2362\n\t\tf 3 13420 13421 13422\n\t\tmu 0 3 3054 16840 2159\n\t\tf 3 -13421 13423 13424\n\t\tmu 0 3 16841 3054 152\n\t\tf 3 13425 13426 -13425\n\t\tmu 0 3 152 2162 16842\n\t\tf 3 -13426 13427 13428\n\t\tmu 0 3 2162 152 4154\n\t\tf 3 13429 13430 -13429\n\t\tmu 0 3 4154 3663 2162\n\t\tf 3 -13430 13431 13432\n\t\tmu 0 3 3663 4154 2424\n\t\tf 3 13433 13434 -13433\n\t\tmu 0 3 2424 1037 3663\n\t\tf 3 -13434 13435 13436\n\t\tmu 0 3 1037 2424 2675\n\t\tf 3 13437 13438 -13437\n\t\tmu 0 3 2675 5444 1037\n\t\tf 3 -13438 13439 13440\n\t\tmu 0 3 5444 2675 4373\n\t\tf 3 13441 13442 -13441\n\t\tmu 0 3 4373 624 5444\n\t\tf 3 -13442 13443 13444\n\t\tmu 0 3 624 4373 2359\n\t\tf 3 -13391 13445 -13445\n\t\tmu 0 3 2359 4604 624\n\t\tf 3 13446 13447 13448\n\t\tmu 0 3 6306 16843 16844\n\t\tf 3 -13417 13449 -13449\n\t\tmu 0 3 16845 5606 6306\n\t\tf 3 -13447 13450 13451\n\t\tmu 0 3 16846 6306 5594\n\t\tf 3 13452 13453 -13452\n\t\tmu 0 3 5594 16847 16848\n\t\tf 3 -13453 13454 13455\n\t\tmu 0 3 16849 5594 3576\n\t\tf 3 13456 13457 -13456\n\t\tmu 0 3 3576 16850 16851\n\t\tf 3 -13457 13458 13459\n\t\tmu 0 3 16852 3576 4760\n\t\tf 3 13460 13461 -13460\n\t\tmu 0 3 4760 16853 16854\n\t\tf 3 -13461 13462 13463\n\t\tmu 0 3 16855 4760 1994\n\t\tf 3 13464 13465 -13464\n\t\tmu 0 3 1994 16856 16857\n\t\tf 3 -13465 13466 13467\n\t\tmu 0 3 16858 1994 6491\n\t\tf 3 13468 13469 -13468\n\t\tmu 0 3 6491 2362 16859\n\t\tf 3 -13469 13470 -13420\n\t\tmu 0 3 2362 6491 2569\n\t\tf 3 -13356 13471 -13423\n\t\tmu 0 3 2159 3809 3054\n\t\tf 3 13472 13473 13474\n\t\tmu 0 3 5737 5047 5048\n\t\tf 3 13475 13476 -13475\n\t\tmu 0 3 5048 5741 5737\n\t\tf 3 -13476 13477 13478\n\t\tmu 0 3 5741 5048 3881\n\t\tf 3 13479 13480 -13479\n\t\tmu 0 3 3881 438 5741\n\t\tf 3 -13480 13481 13482\n\t\tmu 0 3 438 3881 4236\n\t\tf 3 13483 13484 -13483\n\t\tmu 0 3 4236 4212 438\n\t\tf 3 -13484 13485 13486\n\t\tmu 0 3 4212 4236 3053\n\t\tf 3 13487 13488 -13487\n\t\tmu 0 3 3053 4710 4212\n\t\tf 3 -13488 13489 13490\n\t\tmu 0 3 4710 3053 1950\n\t\tf 3 13491 13492 -13491\n\t\tmu 0 3 1950 4036 4710\n\t\tf 3 -13492 13493 13494\n\t\tmu 0 3 4036 1950 6307\n\t\tf 3 13495 13496 -13495\n\t\tmu 0 3 6307 912 4036\n\t\tf 3 -13496 13497 13498\n\t\tmu 0 3 912 6307 5847\n\t\tf 3 13499 13500 -13499\n\t\tmu 0 3 5847 1828 912\n\t\tf 3 -13500 13501 13502\n\t\tmu 0 3 1828 5847 6216\n\t\tf 3 13503 13504 -13503\n\t\tmu 0 3 6216 2160 1828\n\t\tf 3 -13504 13505 13506\n\t\tmu 0 3 2160 6216 4087\n\t\tf 3 13507 13508 -13507\n\t\tmu 0 3 4087 545 2160\n\t\tf 3 13509 13510 13511\n\t\tmu 0 3 4312 1891 1974\n\t\tf 3 -13508 13512 -13512\n\t\tmu 0 3 1974 3595 4312\n\t\tf 3 -13510 13513 13514\n\t\tmu 0 3 1891 4312 4343\n\t\tf 3 13515 13516 -13515\n\t\tmu 0 3 4343 1371 1891\n\t\tf 3 -13516 13517 13518\n\t\tmu 0 3 1371 4343 4645\n\t\tf 3 13519 13520 -13519\n\t\tmu 0 3 4645 99 1371\n\t\tf 3 -13520 13521 13522\n\t\tmu 0 3 99 4645 4116\n\t\tf 3 13523 13524 -13523\n\t\tmu 0 3 4116 103 99\n\t\tf 3 -13524 13525 13526\n\t\tmu 0 3 103 4116 2264\n\t\tf 3 13527 13528 -13527\n\t\tmu 0 3 2264 6458 103\n\t\tf 3 -13528 13529 13530\n\t\tmu 0 3 6458 2264 3917\n\t\tf 3 13531 13532 -13531\n\t\tmu 0 3 3917 4847 6458\n\t\tf 3 -13532 13533 13534\n\t\tmu 0 3 4847 3917 5047\n\t\tf 3 -13473 13535 -13535\n\t\tmu 0 3 5047 5737 4847\n\t\tf 3 13536 13537 13538\n\t\tmu 0 3 1076 669 5135\n\t\tf 3 13539 13540 -13539\n\t\tmu 0 3 5135 5760 1076\n\t\tf 3 -13540 13541 13542\n\t\tmu 0 3 5760 5135 3443\n\t\tf 3 13543 13544 -13543\n\t\tmu 0 3 3443 4034 5760\n\t\tf 3 -13544 13545 13546\n\t\tmu 0 3 4034 3443 401\n\t\tf 3 13547 13548 -13547\n\t\tmu 0 3 401 755 4034\n\t\tf 3 -13548 13549 13550\n\t\tmu 0 3 755 401 5722\n\t\tf 3 13551 13552 -13551\n\t\tmu 0 3 5722 3773 755\n\t\tf 3 -13552 13553 13554\n\t\tmu 0 3 3773 5722 2625\n\t\tf 3 13555 13556 -13555\n\t\tmu 0 3 2625 6153 3773\n\t\tf 3 -13556 13557 13558\n\t\tmu 0 3 6153 2625 5060\n\t\tf 3 13559 13560 -13559\n\t\tmu 0 3 5060 1271 6153\n\t\tf 3 -13560 13561 13562\n\t\tmu 0 3 1271 5060 3709\n\t\tf 3 13563 13564 -13563\n\t\tmu 0 3 3709 92 1271\n\t\tf 3 -13564 13565 13566\n\t\tmu 0 3 92 3709 1867\n\t\tf 3 13567 13568 -13567\n\t\tmu 0 3 1867 4775 92\n\t\tf 3 -13568 13569 13570\n\t\tmu 0 3 4775 1867 4719\n\t\tf 3 13571 13572 -13571\n\t\tmu 0 3 4719 1539 4775\n\t\tf 3 13573 13574 13575\n\t\tmu 0 3 1172 4037 3055\n\t\tf 3 -13572 13576 -13576\n\t\tmu 0 3 3055 5620 1172\n\t\tf 3 -13574 13577 13578\n\t\tmu 0 3 4037 1172 5836\n\t\tf 3 13579 13580 -13579\n\t\tmu 0 3 5836 2651 4037\n\t\tf 3 -13580 13581 13582\n\t\tmu 0 3 2651 5836 4672\n\t\tf 3 13583 13584 -13583\n\t\tmu 0 3 4672 4583 2651\n\t\tf 3 -13584 13585 13586\n\t\tmu 0 3 4583 4672 3406\n\t\tf 3 13587 13588 -13587\n\t\tmu 0 3 3406 6259 4583\n\t\tf 3 -13588 13589 13590\n\t\tmu 0 3 6259 3406 2099\n\t\tf 3 13591 13592 -13591\n\t\tmu 0 3 2099 2041 6259\n\t\tf 3 -13592 13593 13594\n\t\tmu 0 3 2041 2099 182\n\t\tf 3 13595 13596 -13595\n\t\tmu 0 3 182 184 2041\n\t\tf 3 -13596 13597 13598\n\t\tmu 0 3 184 182 669\n\t\tf 3 -13537 13599 -13599\n\t\tmu 0 3 669 1076 184\n\t\tf 3 13600 13601 13602\n\t\tmu 0 3 3806 1602 408\n\t\tf 3 13603 13604 -13603\n\t\tmu 0 3 408 5388 3806\n\t\tf 3 -13604 13605 13606\n\t\tmu 0 3 5388 408 1549\n\t\tf 3 13607 13608 -13607\n\t\tmu 0 3 1549 4610 5388\n\t\tf 3 -13608 13609 13610\n\t\tmu 0 3 4610 1549 2621\n\t\tf 3 13611 13612 -13611\n\t\tmu 0 3 2621 2204 4610\n\t\tf 3 -13612 13613 13614\n\t\tmu 0 3 2204 2621 1410\n\t\tf 3 13615 13616 -13615\n\t\tmu 0 3 1410 5531 2204\n\t\tf 3 -13616 13617 13618\n\t\tmu 0 3 5531 1410 5296\n\t\tf 3 13619 13620 -13619\n\t\tmu 0 3 5296 5765 5531\n\t\tf 3 -13620 13621 13622\n\t\tmu 0 3 5765 5296 4952\n\t\tf 3 13623 13624 -13623\n\t\tmu 0 3 4952 5770 5765\n\t\tf 3 -13624 13625 13626\n\t\tmu 0 3 5770 4952 6322\n\t\tf 3 13627 13628 -13627\n\t\tmu 0 3 6322 5449 5770\n\t\tf 3 -13628 13629 13630\n\t\tmu 0 3 5449 6322 909\n\t\tf 3 13631 13632 -13631\n\t\tmu 0 3 909 1105 5449\n\t\tf 3 -13632 13633 13634\n\t\tmu 0 3 1105 909 1265\n\t\tf 3 13635 13636 -13635\n\t\tmu 0 3 1265 991 1105\n\t\tf 3 13637 13638 13639\n\t\tmu 0 3 3508 1207 388\n\t\tf 3 -13636 13640 -13640\n\t\tmu 0 3 388 1908 3508\n\t\tf 3 -13638 13641 13642\n\t\tmu 0 3 1207 3508 5286\n\t\tf 3 13643 13644 -13643\n\t\tmu 0 3 5286 6335 1207\n\t\tf 3 -13644 13645 13646\n\t\tmu 0 3 6335 5286 4556\n\t\tf 3 13647 13648 -13647\n\t\tmu 0 3 4556 6157 6335\n\t\tf 3 -13648 13649 13650\n\t\tmu 0 3 6157 4556 619\n\t\tf 3 13651 13652 -13651\n\t\tmu 0 3 619 4821 6157\n\t\tf 3 -13652 13653 13654\n\t\tmu 0 3 4821 619 5749\n\t\tf 3 13655 13656 -13655\n\t\tmu 0 3 5749 1314 4821\n\t\tf 3 -13656 13657 13658\n\t\tmu 0 3 1314 5749 5276\n\t\tf 3 13659 13660 -13659\n\t\tmu 0 3 5276 1870 1314\n\t\tf 3 -13660 13661 13662\n\t\tmu 0 3 1870 5276 1602\n\t\tf 3 -13601 13663 -13663\n\t\tmu 0 3 1602 3806 1870\n\t\tf 3 13664 13665 13666\n\t\tmu 0 3 5738 5739 16860\n\t\tf 3 13667 13668 -13667\n\t\tmu 0 3 16861 16862 5738\n\t\tf 3 13669 -13666 13670\n\t\tmu 0 3 16863 16864 5739\n\t\tf 3 13671 13672 -13671\n\t\tmu 0 3 5739 917 16865\n\t\tf 3 13673 -13673 13674\n\t\tmu 0 3 16866 16867 917\n\t\tf 3 13675 13676 -13675\n\t\tmu 0 3 917 1332 16868\n\t\tf 3 13677 -13677 13678\n\t\tmu 0 3 16869 16870 1332\n\t\tf 3 13679 13680 -13679\n\t\tmu 0 3 1332 3801 16871\n\t\tf 3 13681 -13681 13682\n\t\tmu 0 3 16872 16873 3801\n\t\tf 3 13683 13684 -13683\n\t\tmu 0 3 3801 5297 16874\n\t\tf 3 13685 -13685 13686\n\t\tmu 0 3 16875 16876 5297\n\t\tf 3 13687 13688 -13687\n\t\tmu 0 3 5297 5596 16877\n\t\tf 3 13689 -13689 13690\n\t\tmu 0 3 16878 16879 5596\n\t\tf 3 13691 13692 -13691\n\t\tmu 0 3 5596 3505 16880\n\t\tf 3 13693 -13693 13694\n\t\tmu 0 3 16881 16882 3505\n\t\tf 3 13695 13696 -13695\n\t\tmu 0 3 3505 5125 16883\n\t\tf 3 13697 -13697 13698\n\t\tmu 0 3 16884 16885 5125\n\t\tf 3 13699 13700 -13699\n\t\tmu 0 3 5125 2287 16886\n\t\tf 3 13701 13702 13703\n\t\tmu 0 3 5194 5523 16887\n\t\tf 3 13704 -13701 -13704\n\t\tmu 0 3 16888 16889 5194\n\t\tf 3 13705 -13703 13706\n\t\tmu 0 3 16890 16891 5523\n\t\tf 3 13707 13708 -13707\n\t\tmu 0 3 5523 6424 16892\n\t\tf 3 13709 -13709 13710\n\t\tmu 0 3 16893 16894 6424\n\t\tf 3 13711 13712 -13711\n\t\tmu 0 3 6424 5693 16895\n\t\tf 3 13713 -13713 13714\n\t\tmu 0 3 16896 16897 5693\n\t\tf 3 13715 13716 -13715\n\t\tmu 0 3 5693 5298 16898\n\t\tf 3 13717 -13717 13718\n\t\tmu 0 3 16899 16900 5298\n\t\tf 3 13719 13720 -13719\n\t\tmu 0 3 5298 3332 16901\n\t\tf 3 13721 -13721 13722\n\t\tmu 0 3 16902 16903 3332\n\t\tf 3 13723 13724 -13723\n\t\tmu 0 3 3332 2501 16904\n\t\tf 3 13725 -13725 13726\n\t\tmu 0 3 16905 16906 2501\n\t\tf 3 13727 -13669 -13727\n\t\tmu 0 3 2501 5738 16907\n\t\tf 3 13728 13729 13730\n\t\tmu 0 3 4206 5052 16908\n\t\tf 3 13731 13732 -13731\n\t\tmu 0 3 16909 16910 4206\n\t\tf 3 13733 -13730 13734\n\t\tmu 0 3 16911 16912 5052\n\t\tf 3 13735 13736 -13735\n\t\tmu 0 3 5052 5053 16913\n\t\tf 3 13737 -13737 13738\n\t\tmu 0 3 16914 16915 5053\n\t\tf 3 13739 13740 -13739\n\t\tmu 0 3 5053 3882 16916\n\t\tf 3 13741 -13741 13742\n\t\tmu 0 3 16917 16918 3882\n\t\tf 3 13743 13744 -13743\n\t\tmu 0 3 3882 4146 16919\n\t\tf 3 13745 -13745 13746\n\t\tmu 0 3 16920 16921 4146\n\t\tf 3 13747 13748 -13747\n\t\tmu 0 3 4146 4309 16922\n\t\tf 3 13749 -13749 13750\n\t\tmu 0 3 16923 16924 4309\n\t\tf 3 13751 13752 -13751\n\t\tmu 0 3 4309 5416 16925\n\t\tf 3 13753 -13753 13754\n\t\tmu 0 3 16926 16927 5416\n\t\tf 3 13755 13756 -13755\n\t\tmu 0 3 5416 6421 16928\n\t\tf 3 13757 -13757 13758\n\t\tmu 0 3 16929 16930 6421\n\t\tf 3 13759 13760 -13759\n\t\tmu 0 3 6421 5524 16931\n\t\tf 3 13761 -13761 13762\n\t\tmu 0 3 16932 16933 5524\n\t\tf 3 13763 13764 -13763\n\t\tmu 0 3 5524 3628 16934\n\t\tf 3 13765 13766 13767\n\t\tmu 0 3 2821 5494 16935\n\t\tf 3 13768 -13765 -13768\n\t\tmu 0 3 16936 16937 2821\n\t\tf 3 13769 -13767 13770\n\t\tmu 0 3 16938 16939 5494\n\t\tf 3 13771 13772 -13771\n\t\tmu 0 3 5494 3802 16940\n\t\tf 3 13773 -13773 13774\n\t\tmu 0 3 16941 16942 3802\n\t\tf 3 13775 13776 -13775\n\t\tmu 0 3 3802 3800 16943\n\t\tf 3 13777 -13777 13778\n\t\tmu 0 3 16944 16945 3800\n\t\tf 3 13779 13780 -13779\n\t\tmu 0 3 3800 963 16946\n\t\tf 3 13781 -13781 13782\n\t\tmu 0 3 16947 16948 963\n\t\tf 3 13783 13784 -13783\n\t\tmu 0 3 963 6428 16949\n\t\tf 3 13785 -13785 13786\n\t\tmu 0 3 16950 16951 6428\n\t\tf 3 13787 13788 -13787\n\t\tmu 0 3 6428 5761 16952\n\t\tf 3 13789 -13789 13790\n\t\tmu 0 3 16953 16954 5761\n\t\tf 3 13791 -13733 -13791\n\t\tmu 0 3 5761 4206 16955\n\t\tf 3 13792 13793 13794\n\t\tmu 0 3 2510 211 16956\n\t\tf 3 13795 13796 -13795\n\t\tmu 0 3 16957 16958 2510\n\t\tf 3 13797 -13794 13798\n\t\tmu 0 3 16959 16960 211\n\t\tf 3 13799 13800 -13799\n\t\tmu 0 3 211 5782 16961\n\t\tf 3 13801 -13801 13802\n\t\tmu 0 3 16962 16963 5782\n\t\tf 3 13803 13804 -13803\n\t\tmu 0 3 5782 2350 16964\n\t\tf 3 13805 -13805 13806\n\t\tmu 0 3 16965 16966 2350\n\t\tf 3 13807 13808 -13807\n\t\tmu 0 3 2350 3050 16967\n\t\tf 3 13809 -13809 13810\n\t\tmu 0 3 16968 16969 3050\n\t\tf 3 13811 13812 -13811\n\t\tmu 0 3 3050 2751 16970\n\t\tf 3 13813 -13813 13814\n\t\tmu 0 3 16971 16972 2751\n\t\tf 3 13815 13816 -13815\n\t\tmu 0 3 2751 5430 16973\n\t\tf 3 13817 -13817 13818\n\t\tmu 0 3 16974 16975 5430\n\t\tf 3 13819 13820 -13819\n\t\tmu 0 3 5430 5840 16976\n\t\tf 3 13821 -13821 13822\n\t\tmu 0 3 16977 16978 5840\n\t\tf 3 13823 13824 -13823\n\t\tmu 0 3 5840 352 16979\n\t\tf 3 13825 -13825 13826\n\t\tmu 0 3 16980 16981 352\n\t\tf 3 13827 13828 -13827\n\t\tmu 0 3 352 4702 16982\n\t\tf 3 13829 13830 13831\n\t\tmu 0 3 635 955 16983\n\t\tf 3 13832 -13829 -13832\n\t\tmu 0 3 16984 16985 635\n\t\tf 3 13833 -13831 13834\n\t\tmu 0 3 16986 16987 955\n\t\tf 3 13835 13836 -13835\n\t\tmu 0 3 955 2227 16988\n\t\tf 3 13837 -13837 13838\n\t\tmu 0 3 16989 16990 2227\n\t\tf 3 13839 13840 -13839\n\t\tmu 0 3 2227 613 16991\n\t\tf 3 13841 -13841 13842\n\t\tmu 0 3 16992 16993 613\n\t\tf 3 13843 13844 -13843\n\t\tmu 0 3 613 3086 16994\n\t\tf 3 13845 -13845 13846\n\t\tmu 0 3 16995 16996 3086\n\t\tf 3 13847 13848 -13847\n\t\tmu 0 3 3086 1122 16997\n\t\tf 3 13849 -13849 13850\n\t\tmu 0 3 16998 16999 1122\n\t\tf 3 13851 13852 -13851\n\t\tmu 0 3 1122 2171 17000\n\t\tf 3 13853 -13853 13854\n\t\tmu 0 3 17001 17002 2171\n\t\tf 3 13855 -13797 -13855\n\t\tmu 0 3 2171 2510 17003\n\t\tf 3 13856 13857 13858\n\t\tmu 0 3 5313 2079 17004\n\t\tf 3 13859 13860 -13859\n\t\tmu 0 3 17005 17006 5313\n\t\tf 3 13861 -13858 13862\n\t\tmu 0 3 17007 17008 2079\n\t\tf 3 13863 13864 -13863\n\t\tmu 0 3 2079 1413 17009\n\t\tf 3 13865 -13865 13866\n\t\tmu 0 3 17010 17011 1413\n\t\tf 3 13867 13868 -13867\n\t\tmu 0 3 1413 3263 17012\n\t\tf 3 13869 -13869 13870\n\t\tmu 0 3 17013 17014 3263\n\t\tf 3 13871 13872 -13871\n\t\tmu 0 3 3263 1676 17015\n\t\tf 3 13873 -13873 13874\n\t\tmu 0 3 17016 17017 1676\n\t\tf 3 13875 13876 -13875\n\t\tmu 0 3 1676 5459 17018\n\t\tf 3 13877 -13877 13878\n\t\tmu 0 3 17019 17020 5459\n\t\tf 3 13879 13880 -13879\n\t\tmu 0 3 5459 6293 17021\n\t\tf 3 13881 -13881 13882\n\t\tmu 0 3 17022 17023 6293\n\t\tf 3 13883 13884 -13883\n\t\tmu 0 3 6293 2403 17024\n\t\tf 3 13885 -13885 13886\n\t\tmu 0 3 17025 17026 2403\n\t\tf 3 13887 13888 -13887\n\t\tmu 0 3 2403 6091 17027\n\t\tf 3 13889 -13889 13890\n\t\tmu 0 3 17028 17029 6091\n\t\tf 3 13891 13892 -13891\n\t\tmu 0 3 6091 5637 17030\n\t\tf 3 13893 13894 13895\n\t\tmu 0 3 3695 5930 17031\n\t\tf 3 13896 -13893 -13896\n\t\tmu 0 3 17032 17033 3695\n\t\tf 3 13897 -13895 13898\n\t\tmu 0 3 17034 17035 5930\n\t\tf 3 13899 13900 -13899\n\t\tmu 0 3 5930 4487 17036\n\t\tf 3 13901 -13901 13902\n\t\tmu 0 3 17037 17038 4487\n\t\tf 3 13903 13904 -13903\n\t\tmu 0 3 4487 5787 17039\n\t\tf 3 13905 -13905 13906\n\t\tmu 0 3 17040 17041 5787\n\t\tf 3 13907 13908 -13907\n\t\tmu 0 3 5787 3592 17042\n\t\tf 3 13909 -13909 13910\n\t\tmu 0 3 17043 17044 3592\n\t\tf 3 13911 13912 -13911\n\t\tmu 0 3 3592 4708 17045\n\t\tf 3 13913 -13913 13914\n\t\tmu 0 3 17046 17047 4708\n\t\tf 3 13915 13916 -13915\n\t\tmu 0 3 4708 2445 17048\n\t\tf 3 13917 -13917 13918\n\t\tmu 0 3 17049 17050 2445\n\t\tf 3 13919 -13861 -13919\n\t\tmu 0 3 2445 5313 17051\n\t\tf 3 -13393 13920 13921\n\t\tmu 0 3 17052 6234 324\n\t\tf 3 13922 13923 -13922\n\t\tmu 0 3 324 17053 17054\n\t\tf 3 -13923 13924 13925\n\t\tmu 0 3 17055 324 4829\n\t\tf 3 13926 13927 -13926\n\t\tmu 0 3 4829 17056 17057\n\t\tf 3 -13927 13928 13929\n\t\tmu 0 3 17058 4829 6126\n\t\tf 3 -13409 13930 -13930\n\t\tmu 0 3 6126 17059 17060\n\t\tf 3 13931 13932 13933\n\t\tmu 0 3 17061 17062 17063\n\t\tf 3 13934 13935 -13934\n\t\tmu 0 3 17064 17065 17066\n\t\tf 3 -13936 13936 13937\n\t\tmu 0 3 17067 17068 17069\n\t\tf 3 13938 13939 -13938\n\t\tmu 0 3 17070 17071 17072\n\t\tf 3 13940 -13939 13941\n\t\tmu 0 3 17073 17074 17075\n\t\tf 3 13942 13943 -13942\n\t\tmu 0 3 17076 17077 17078\n\t\tf 3 -13944 13944 13945\n\t\tmu 0 3 17079 17080 17081\n\t\tf 3 13946 13947 -13946\n\t\tmu 0 3 17082 17083 17084\n\t\tf 3 13948 -13947 13949\n\t\tmu 0 3 17085 17086 17087\n\t\tf 3 13950 13951 -13950\n\t\tmu 0 3 17088 17089 17090\n\t\tf 3 -13952 13952 13953\n\t\tmu 0 3 17091 17092 17093\n\t\tf 3 13954 13955 -13954\n\t\tmu 0 3 17094 17095 17096\n\t\tf 3 13956 -13955 13957\n\t\tmu 0 3 17097 17098 17099\n\t\tf 3 13958 13959 -13958\n\t\tmu 0 3 17100 17101 17102\n\t\tf 3 -13960 13960 13961\n\t\tmu 0 3 17103 17104 17105\n\t\tf 3 13962 13963 -13962\n\t\tmu 0 3 17106 17107 17108\n\t\tf 3 13964 -13963 13965\n\t\tmu 0 3 17109 17110 17111\n\t\tf 3 13966 13967 -13966\n\t\tmu 0 3 17112 17113 17114\n\t\tf 3 -13968 13968 13969\n\t\tmu 0 3 17115 17116 17117\n\t\tf 3 13970 13971 -13970\n\t\tmu 0 3 17118 17119 17120\n\t\tf 3 13972 -13971 13973\n\t\tmu 0 3 17121 17122 17123\n\t\tf 3 13974 13975 -13974\n\t\tmu 0 3 17124 17125 17126\n\t\tf 3 -13976 13976 13977\n\t\tmu 0 3 17127 17128 17129\n\t\tf 3 13978 13979 -13978\n\t\tmu 0 3 17130 17131 17132\n\t\tf 3 13980 -13979 13981\n\t\tmu 0 3 17133 17134 17135\n\t\tf 3 13982 13983 -13982\n\t\tmu 0 3 17136 17137 17138\n\t\tf 3 -13984 13984 13985\n\t\tmu 0 3 17139 17140 17141\n\t\tf 3 13986 13987 -13986\n\t\tmu 0 3 17142 17143 17144\n\t\tf 3 13988 -13987 13989\n\t\tmu 0 3 17145 17146 17147\n\t\tf 3 13990 13991 -13990\n\t\tmu 0 3 17148 17149 17150\n\t\tf 3 13992 -13992 13993\n\t\tmu 0 3 17151 17152 17153\n\t\tf 3 13994 -13933 -13994\n\t\tmu 0 3 17154 17155 17156\n\t\tf 3 13995 13996 13997\n\t\tmu 0 3 17157 17158 17159\n\t\tf 3 13998 13999 -13998\n\t\tmu 0 3 17160 17161 17162\n\t\tf 3 -13999 14000 14001\n\t\tmu 0 3 17163 17164 17165\n\t\tf 3 14002 14003 -14002\n\t\tmu 0 3 17166 17167 17168\n\t\tf 3 -14003 14004 14005\n\t\tmu 0 3 17169 17170 17171\n\t\tf 3 14006 14007 -14006\n\t\tmu 0 3 17172 17173 17174\n\t\tf 3 -14007 14008 14009\n\t\tmu 0 3 17175 17176 17177\n\t\tf 3 14010 14011 -14010\n\t\tmu 0 3 17178 17179 17180\n\t\tf 3 -14011 14012 14013\n\t\tmu 0 3 17181 17182 17183\n\t\tf 3 14014 14015 -14014\n\t\tmu 0 3 17184 17185 17186\n\t\tf 3 -14015 14016 14017\n\t\tmu 0 3 17187 17188 17189\n\t\tf 3 14018 14019 -14018\n\t\tmu 0 3 17190 17191 17192\n\t\tf 3 -14019 14020 14021\n\t\tmu 0 3 17193 17194 17195\n\t\tf 3 14022 14023 -14022\n\t\tmu 0 3 17196 17197 17198\n\t\tf 3 -13996 14024 14025\n\t\tmu 0 3 17199 17200 17201\n\t\tf 3 14026 14027 -14026\n\t\tmu 0 3 17202 17203 17204\n\t\tf 3 -14027 14028 14029\n\t\tmu 0 3 17205 17206 17207\n\t\tf 3 14030 14031 -14030\n\t\tmu 0 3 17208 17209 17210\n\t\tf 3 -14031 14032 14033\n\t\tmu 0 3 17211 17212 17213\n\t\tf 3 14034 14035 -14034\n\t\tmu 0 3 17214 17215 17216\n\t\tf 3 -14035 14036 14037\n\t\tmu 0 3 17217 17218 17219\n\t\tf 3 14038 14039 -14038\n\t\tmu 0 3 17220 17221 17222\n\t\tf 3 -14039 14040 14041\n\t\tmu 0 3 17223 17224 17225\n\t\tf 3 14042 14043 -14042\n\t\tmu 0 3 17226 17227 17228\n\t\tf 3 -14043 14044 14045\n\t\tmu 0 3 17229 17230 17231\n\t\tf 3 14046 14047 -14046\n\t\tmu 0 3 17232 17233 17234\n\t\tf 3 -14047 14048 14049\n\t\tmu 0 3 17235 17236 17237\n\t\tf 3 14050 14051 -14050\n\t\tmu 0 3 17238 17239 17240\n\t\tf 3 -14051 14052 14053\n\t\tmu 0 3 17241 17242 17243\n\t\tf 3 14054 14055 -14054\n\t\tmu 0 3 17244 17245 17246\n\t\tf 3 -14055 14056 14057\n\t\tmu 0 3 17247 17248 17249\n\t\tf 3 -14023 14058 -14058\n\t\tmu 0 3 17250 17251 17252\n\t\tf 3 14059 14060 14061\n\t\tmu 0 3 17253 17254 17255\n\t\tf 3 14062 14063 -14062\n\t\tmu 0 3 17256 17257 17258\n\t\tf 3 -14064 14064 14065\n\t\tmu 0 3 17259 17260 17261\n\t\tf 3 14066 14067 -14066\n\t\tmu 0 3 17262 17263 17264\n\t\tf 3 14068 -14067 14069\n\t\tmu 0 3 17265 17266 17267\n\t\tf 3 14070 14071 -14070\n\t\tmu 0 3 17268 17269 17270\n\t\tf 3 -14072 14072 14073\n\t\tmu 0 3 17271 17272 17273\n\t\tf 3 14074 14075 -14074\n\t\tmu 0 3 17274 17275 17276\n\t\tf 3 14076 -14075 14077\n\t\tmu 0 3 17277 17278 17279\n\t\tf 3 14078 14079 -14078\n\t\tmu 0 3 17280 17281 17282\n\t\tf 3 -14080 14080 14081\n\t\tmu 0 3 17283 17284 17285\n\t\tf 3 14082 14083 -14082\n\t\tmu 0 3 17286 17287 17288\n\t\tf 3 14084 -14083 14085\n\t\tmu 0 3 17289 17290 17291\n\t\tf 3 14086 14087 -14086\n\t\tmu 0 3 17292 17293 17294\n\t\tf 3 14088 -14061 14089\n\t\tmu 0 3 17295 17296 17297\n\t\tf 3 14090 14091 -14090\n\t\tmu 0 3 17298 17299 17300\n\t\tf 3 14092 -14092 14093\n\t\tmu 0 3 17301 17302 17303\n\t\tf 3 14094 14095 -14094\n\t\tmu 0 3 17304 17305 17306\n\t\tf 3 -14096 14096 14097\n\t\tmu 0 3 17307 17308 17309\n\t\tf 3 14098 14099 -14098\n\t\tmu 0 3 17310 17311 17312\n\t\tf 3 14100 -14099 14101\n\t\tmu 0 3 17313 17314 17315\n\t\tf 3 14102 14103 -14102\n\t\tmu 0 3 17316 17317 17318\n\t\tf 3 -14104 14104 14105\n\t\tmu 0 3 17319 17320 17321\n\t\tf 3 14106 14107 -14106\n\t\tmu 0 3 17322 17323 17324\n\t\tf 3 14108 -14107 14109\n\t\tmu 0 3 17325 17326 17327\n\t\tf 3 14110 14111 -14110\n\t\tmu 0 3 17328 17329 17330\n\t\tf 3 -14112 14112 14113\n\t\tmu 0 3 17331 17332 17333\n\t\tf 3 14114 14115 -14114\n\t\tmu 0 3 17334 17335 17336\n\t\tf 3 14116 -14115 14117\n\t\tmu 0 3 17337 17338 17339\n\t\tf 3 14118 14119 -14118\n\t\tmu 0 3 17340 17341 17342\n\t\tf 3 -14120 14120 14121\n\t\tmu 0 3 17343 17344 17345\n\t\tf 3 -14088 14122 -14122\n\t\tmu 0 3 17346 17347 17348\n\t\tf 3 14123 14124 14125\n\t\tmu 0 3 17349 17350 17351\n\t\tf 3 14126 14127 -14126\n\t\tmu 0 3 17352 17353 17354\n\t\tf 3 -14125 14128 14129\n\t\tmu 0 3 17355 17356 17357\n\t\tf 3 14130 14131 -14130\n\t\tmu 0 3 17358 17359 17360\n\t\tf 3 14132 -14131 14133\n\t\tmu 0 3 17361 17362 17363\n\t\tf 3 14134 14135 -14134\n\t\tmu 0 3 17364 17365 17366\n\t\tf 3 -14136 14136 14137\n\t\tmu 0 3 17367 17368 17369\n\t\tf 3 14138 14139 -14138\n\t\tmu 0 3 17370 17371 17372\n\t\tf 3 14140 -14139 14141\n\t\tmu 0 3 17373 17374 17375\n\t\tf 3 14142 14143 -14142\n\t\tmu 0 3 17376 17377 17378\n\t\tf 3 -14144 14144 14145\n\t\tmu 0 3 17379 17380 17381\n\t\tf 3 14146 14147 -14146\n\t\tmu 0 3 17382 17383 17384\n\t\tf 3 14148 -14147 14149\n\t\tmu 0 3 17385 17386 17387\n\t\tf 3 14150 14151 -14150\n\t\tmu 0 3 17388 17389 17390\n\t\tf 3 -14152 14152 14153\n\t\tmu 0 3 17391 17392 17393\n\t\tf 3 14154 14155 -14154\n\t\tmu 0 3 17394 17395 17396\n\t\tf 3 14156 -14155 14157\n\t\tmu 0 3 17397 17398 17399\n\t\tf 3 14158 14159 -14158\n\t\tmu 0 3 17400 17401 17402\n\t\tf 3 -14160 14160 14161\n\t\tmu 0 3 17403 17404 17405\n\t\tf 3 14162 14163 -14162\n\t\tmu 0 3 17406 17407 17408\n\t\tf 3 14164 -14163 14165\n\t\tmu 0 3 17409 17410 17411\n\t\tf 3 14166 14167 -14166\n\t\tmu 0 3 17412 17413 17414\n\t\tf 3 -14168 14168 14169\n\t\tmu 0 3 17415 17416 17417\n\t\tf 3 14170 14171 -14170\n\t\tmu 0 3 17418 17419 17420\n\t\tf 3 14172 -14171 14173\n\t\tmu 0 3 17421 17422 17423\n\t\tf 3 14174 14175 -14174\n\t\tmu 0 3 17424 17425 17426\n\t\tf 3 -14176 14176 14177\n\t\tmu 0 3 17427 17428 17429\n\t\tf 3 14178 14179 -14178\n\t\tmu 0 3 17430 17431 17432\n\t\tf 3 14180 -14179 14181\n\t\tmu 0 3 17433 17434 17435\n\t\tf 3 14182 14183 -14182\n\t\tmu 0 3 17436 17437 17438\n\t\tf 3 14184 -14184 14185\n\t\tmu 0 3 17439 17440 17441\n\t\tf 3 14186 -14128 -14186\n\t\tmu 0 3 17442 17443 17444\n\t\tf 3 14187 14188 14189\n\t\tmu 0 3 17445 17446 17447\n\t\tf 3 14190 14191 -14190\n\t\tmu 0 3 17448 17449 17450\n\t\tf 3 -14188 14192 14193\n\t\tmu 0 3 17451 17452 17453\n\t\tf 3 14194 14195 -14194\n\t\tmu 0 3 17454 17455 17456\n\t\tf 3 -14195 14196 14197\n\t\tmu 0 3 17457 17458 17459\n\t\tf 3 14198 14199 -14198\n\t\tmu 0 3 17460 17461 17462\n\t\tf 3 -14199 14200 14201\n\t\tmu 0 3 17463 17464 17465\n\t\tf 3 14202 14203 -14202\n\t\tmu 0 3 17466 17467 17468\n\t\tf 3 -14203 14204 14205\n\t\tmu 0 3 17469 17470 17471\n\t\tf 3 14206 14207 -14206\n\t\tmu 0 3 17472 17473 17474\n\t\tf 3 -14207 14208 14209\n\t\tmu 0 3 17475 17476 17477\n\t\tf 3 14210 14211 -14210\n\t\tmu 0 3 17478 17479 17480\n\t\tf 3 -14211 14212 14213\n\t\tmu 0 3 17481 17482 17483\n\t\tf 3 14214 14215 -14214\n\t\tmu 0 3 17484 17485 17486\n\t\tf 3 -14191 14216 14217\n\t\tmu 0 3 17487 17488 17489\n\t\tf 3 14218 14219 -14218\n\t\tmu 0 3 17490 17491 17492\n\t\tf 3 -14219 14220 14221\n\t\tmu 0 3 17493 17494 17495\n\t\tf 3 14222 14223 -14222\n\t\tmu 0 3 17496 17497 17498\n\t\tf 3 -14223 14224 14225\n\t\tmu 0 3 17499 17500 17501\n\t\tf 3 14226 14227 -14226\n\t\tmu 0 3 17502 17503 17504\n\t\tf 3 -14227 14228 14229\n\t\tmu 0 3 17505 17506 17507\n\t\tf 3 14230 14231 -14230\n\t\tmu 0 3 17508 17509 17510\n\t\tf 3 -14231 14232 14233\n\t\tmu 0 3 17511 17512 17513\n\t\tf 3 14234 14235 -14234\n\t\tmu 0 3 17514 17515 17516\n\t\tf 3 -14235 14236 14237\n\t\tmu 0 3 17517 17518 17519\n\t\tf 3 14238 14239 -14238\n\t\tmu 0 3 17520 17521 17522\n\t\tf 3 -14239 14240 14241\n\t\tmu 0 3 17523 17524 17525\n\t\tf 3 14242 14243 -14242\n\t\tmu 0 3 17526 17527 17528\n\t\tf 3 -14243 14244 14245\n\t\tmu 0 3 17529 17530 17531\n\t\tf 3 14246 14247 -14246\n\t\tmu 0 3 17532 17533 17534\n\t\tf 3 -14247 14248 14249\n\t\tmu 0 3 17535 17536 17537\n\t\tf 3 -14215 14250 -14250\n\t\tmu 0 3 17538 17539 17540\n\t\tf 3 14251 14252 14253\n\t\tmu 0 3 17541 17542 17543\n\t\tf 3 -14253 14254 14255\n\t\tmu 0 3 17544 17545 17546\n\t\tf 3 14256 14257 -14254\n\t\tmu 0 3 17547 17548 17549\n\t\tf 3 14258 14259 14260\n\t\tmu 0 3 17550 17551 17552\n\t\tf 3 -14260 14261 14262\n\t\tmu 0 3 17553 17554 17555\n\t\tf 3 -14258 14263 -14263\n\t\tmu 0 3 17556 17557 17558\n\t\tf 3 14264 14265 -14261\n\t\tmu 0 3 17559 17560 17561\n\t\tf 3 14266 14267 -14256\n\t\tmu 0 3 17562 17563 17564\n\t\tf 3 14268 14269 14270\n\t\tmu 0 3 17565 17566 17567\n\t\tf 3 -14266 14271 -14271\n\t\tmu 0 3 17568 17569 17570\n\t\tf 3 14272 -14269 14273\n\t\tmu 0 3 17571 17572 17573\n\t\tf 3 14274 14275 -14274\n\t\tmu 0 3 17574 17575 17576\n\t\tf 3 -14276 14276 14277\n\t\tmu 0 3 17577 17578 17579\n\t\tf 3 14278 14279 -14278\n\t\tmu 0 3 17580 17581 17582\n\t\tf 3 14280 -14279 14281\n\t\tmu 0 3 17583 17584 17585\n\t\tf 3 14282 14283 -14282\n\t\tmu 0 3 17586 17587 17588\n\t\tf 3 14284 -14284 14285\n\t\tmu 0 3 17589 17590 17591\n\t\tf 3 14286 14287 -14286\n\t\tmu 0 3 17592 17593 17594\n\t\tf 3 14288 -14288 14289\n\t\tmu 0 3 17595 17596 17597\n\t\tf 3 14290 14291 -14290\n\t\tmu 0 3 17598 17599 17600\n\t\tf 3 -14292 14292 14293\n\t\tmu 0 3 17601 17602 17603\n\t\tf 3 14294 14295 -14294\n\t\tmu 0 3 17604 17605 17606\n\t\tf 3 14296 -14295 14297\n\t\tmu 0 3 17607 17608 17609\n\t\tf 3 14298 14299 -14298\n\t\tmu 0 3 17610 17611 17612\n\t\tf 3 -14300 14300 14301\n\t\tmu 0 3 17613 17614 17615\n\t\tf 3 14302 14303 -14302\n\t\tmu 0 3 17616 17617 17618\n\t\tf 3 14304 -14303 14305\n\t\tmu 0 3 17619 17620 17621\n\t\tf 3 14306 14307 -14306\n\t\tmu 0 3 17622 17623 17624\n\t\tf 3 -14308 14308 14309\n\t\tmu 0 3 17625 17626 17627\n\t\tf 3 14310 14311 -14310\n\t\tmu 0 3 17628 17629 17630\n\t\tf 3 14312 -14311 14313\n\t\tmu 0 3 17631 17632 17633\n\t\tf 3 14314 -14267 -14314\n\t\tmu 0 3 17634 17635 17636\n\t\tf 3 14315 14316 14317\n\t\tmu 0 3 17637 17638 17639\n\t\tf 3 14318 14319 -14318\n\t\tmu 0 3 17640 17641 17642\n\t\tf 3 -14320 14320 14321\n\t\tmu 0 3 17643 17644 17645\n\t\tf 3 14322 14323 -14322\n\t\tmu 0 3 17646 17647 17648\n\t\tf 3 14324 -14323 14325\n\t\tmu 0 3 17649 17650 17651\n\t\tf 3 14326 14327 -14326\n\t\tmu 0 3 17652 17653 17654\n\t\tf 3 -14328 14328 14329\n\t\tmu 0 3 17655 17656 17657\n\t\tf 3 14330 14331 -14330\n\t\tmu 0 3 17658 17659 17660\n\t\tf 3 14332 -14331 14333\n\t\tmu 0 3 17661 17662 17663\n\t\tf 3 14334 14335 -14334\n\t\tmu 0 3 17664 17665 17666\n\t\tf 3 -14336 14336 14337\n\t\tmu 0 3 17667 17668 17669\n\t\tf 3 14338 14339 -14338\n\t\tmu 0 3 17670 17671 17672\n\t\tf 3 14340 -14339 14341\n\t\tmu 0 3 17673 17674 17675\n\t\tf 3 14342 14343 -14342\n\t\tmu 0 3 17676 17677 17678\n\t\tf 3 -14344 14344 14345\n\t\tmu 0 3 17679 17680 17681\n\t\tf 3 14346 14347 -14346\n\t\tmu 0 3 17682 17683 17684\n\t\tf 3 14348 -14347 14349\n\t\tmu 0 3 17685 17686 17687\n\t\tf 3 14350 14351 -14350\n\t\tmu 0 3 17688 17689 17690\n\t\tf 3 -14352 14352 14353\n\t\tmu 0 3 17691 17692 17693\n\t\tf 3 14354 14355 -14354\n\t\tmu 0 3 17694 17695 17696\n\t\tf 3 14356 -14355 14357\n\t\tmu 0 3 17697 17698 17699\n\t\tf 3 14358 14359 -14358\n\t\tmu 0 3 17700 17701 17702\n\t\tf 3 -14360 14360 14361\n\t\tmu 0 3 17703 17704 17705\n\t\tf 3 14362 14363 -14362\n\t\tmu 0 3 17706 17707 17708\n\t\tf 3 14364 -14363 14365\n\t\tmu 0 3 17709 17710 17711\n\t\tf 3 14366 14367 -14366\n\t\tmu 0 3 17712 17713 17714;\n\tsetAttr \".fc[7500:7999]\"\n\t\tf 3 -14368 14368 14369\n\t\tmu 0 3 17715 17716 17717\n\t\tf 3 14370 14371 -14370\n\t\tmu 0 3 17718 17719 17720\n\t\tf 3 14372 -14371 14373\n\t\tmu 0 3 17721 17722 17723\n\t\tf 3 14374 14375 -14374\n\t\tmu 0 3 17724 17725 17726\n\t\tf 3 14376 -14376 14377\n\t\tmu 0 3 17727 17728 17729\n\t\tf 3 14378 -14317 -14378\n\t\tmu 0 3 17730 17731 17732\n\t\tf 3 14379 14380 14381\n\t\tmu 0 3 17733 17734 17735\n\t\tf 3 14382 14383 -14382\n\t\tmu 0 3 17736 17737 17738\n\t\tf 3 -14380 14384 14385\n\t\tmu 0 3 17739 17740 17741\n\t\tf 3 14386 14387 -14386\n\t\tmu 0 3 17742 17743 17744\n\t\tf 3 -14387 14388 14389\n\t\tmu 0 3 17745 17746 17747\n\t\tf 3 14390 14391 -14390\n\t\tmu 0 3 17748 17749 17750\n\t\tf 3 -14391 14392 14393\n\t\tmu 0 3 17751 17752 17753\n\t\tf 3 14394 14395 -14394\n\t\tmu 0 3 17754 17755 17756\n\t\tf 3 -14395 14396 14397\n\t\tmu 0 3 17757 17758 17759\n\t\tf 3 14398 14399 -14398\n\t\tmu 0 3 17760 17761 17762\n\t\tf 3 -14399 14400 14401\n\t\tmu 0 3 17763 17764 17765\n\t\tf 3 14402 14403 -14402\n\t\tmu 0 3 17766 17767 17768\n\t\tf 3 -14403 14404 14405\n\t\tmu 0 3 17769 17770 17771\n\t\tf 3 14406 14407 -14406\n\t\tmu 0 3 17772 17773 17774\n\t\tf 3 -14407 14408 14409\n\t\tmu 0 3 17775 17776 17777\n\t\tf 3 14410 14411 -14410\n\t\tmu 0 3 17778 17779 17780\n\t\tf 3 -14411 14412 14413\n\t\tmu 0 3 17781 17782 17783\n\t\tf 3 14414 14415 -14414\n\t\tmu 0 3 17784 17785 17786\n\t\tf 3 -14415 14416 14417\n\t\tmu 0 3 17787 17788 17789\n\t\tf 3 14418 14419 -14418\n\t\tmu 0 3 17790 17791 17792\n\t\tf 3 -14419 14420 14421\n\t\tmu 0 3 17793 17794 17795\n\t\tf 3 14422 14423 -14422\n\t\tmu 0 3 17796 17797 17798\n\t\tf 3 -14423 14424 14425\n\t\tmu 0 3 17799 17800 17801\n\t\tf 3 14426 14427 -14426\n\t\tmu 0 3 17802 17803 17804\n\t\tf 3 -14427 14428 14429\n\t\tmu 0 3 17805 17806 17807\n\t\tf 3 14430 14431 -14430\n\t\tmu 0 3 17808 17809 17810\n\t\tf 3 -14431 14432 14433\n\t\tmu 0 3 17811 17812 17813\n\t\tf 3 14434 14435 -14434\n\t\tmu 0 3 17814 17815 17816\n\t\tf 3 -14435 14436 14437\n\t\tmu 0 3 17817 17818 17819\n\t\tf 3 14438 14439 -14438\n\t\tmu 0 3 17820 17821 17822\n\t\tf 3 -14439 14440 14441\n\t\tmu 0 3 17823 17824 17825\n\t\tf 3 -14383 14442 -14442\n\t\tmu 0 3 17826 17827 17828\n\t\tf 3 14443 14444 14445\n\t\tmu 0 3 17829 17830 17831\n\t\tf 3 14446 14447 -14446\n\t\tmu 0 3 17832 17833 17834\n\t\tf 3 -14448 14448 14449\n\t\tmu 0 3 17835 17836 17837\n\t\tf 3 14450 14451 -14450\n\t\tmu 0 3 17838 17839 17840\n\t\tf 3 14452 -14451 14453\n\t\tmu 0 3 17841 17842 17843\n\t\tf 3 14454 14455 -14454\n\t\tmu 0 3 17844 17845 17846\n\t\tf 3 -14456 14456 14457\n\t\tmu 0 3 17847 17848 17849\n\t\tf 3 14458 14459 -14458\n\t\tmu 0 3 17850 17851 17852\n\t\tf 3 14460 -14459 14461\n\t\tmu 0 3 17853 17854 17855\n\t\tf 3 14462 14463 -14462\n\t\tmu 0 3 17856 17857 17858\n\t\tf 3 -14464 14464 14465\n\t\tmu 0 3 17859 17860 17861\n\t\tf 3 14466 14467 -14466\n\t\tmu 0 3 17862 17863 17864\n\t\tf 3 14468 -14467 14469\n\t\tmu 0 3 17865 17866 17867\n\t\tf 3 14470 14471 -14470\n\t\tmu 0 3 17868 17869 17870\n\t\tf 3 -14472 14472 14473\n\t\tmu 0 3 17871 17872 17873\n\t\tf 3 14474 14475 -14474\n\t\tmu 0 3 17874 17875 17876\n\t\tf 3 14476 -14475 14477\n\t\tmu 0 3 17877 17878 17879\n\t\tf 3 14478 14479 -14478\n\t\tmu 0 3 17880 17881 17882\n\t\tf 3 -14480 14480 14481\n\t\tmu 0 3 17883 17884 17885\n\t\tf 3 14482 14483 -14482\n\t\tmu 0 3 17886 17887 17888\n\t\tf 3 14484 -14483 14485\n\t\tmu 0 3 17889 17890 17891\n\t\tf 3 14486 14487 -14486\n\t\tmu 0 3 17892 17893 17894\n\t\tf 3 -14488 14488 14489\n\t\tmu 0 3 17895 17896 17897\n\t\tf 3 14490 14491 -14490\n\t\tmu 0 3 17898 17899 17900\n\t\tf 3 14492 -14491 14493\n\t\tmu 0 3 17901 17902 17903\n\t\tf 3 14494 14495 -14494\n\t\tmu 0 3 17904 17905 17906\n\t\tf 3 -14496 14496 14497\n\t\tmu 0 3 17907 17908 17909\n\t\tf 3 14498 14499 -14498\n\t\tmu 0 3 17910 17911 17912\n\t\tf 3 14500 -14499 14501\n\t\tmu 0 3 17913 17914 17915\n\t\tf 3 14502 14503 -14502\n\t\tmu 0 3 17916 17917 17918\n\t\tf 3 14504 -14504 14505\n\t\tmu 0 3 17919 17920 17921\n\t\tf 3 14506 -14445 -14506\n\t\tmu 0 3 17922 17923 17924\n\t\tf 3 14507 14508 14509\n\t\tmu 0 3 17925 17926 17927\n\t\tf 3 14510 14511 -14510\n\t\tmu 0 3 17928 17929 17930\n\t\tf 3 -14512 14512 14513\n\t\tmu 0 3 17931 17932 17933\n\t\tf 3 14514 14515 -14514\n\t\tmu 0 3 17934 17935 17936\n\t\tf 3 14516 -14515 14517\n\t\tmu 0 3 17937 17938 17939\n\t\tf 3 14518 14519 -14518\n\t\tmu 0 3 17940 17941 17942\n\t\tf 3 -14520 14520 14521\n\t\tmu 0 3 17943 17944 17945\n\t\tf 3 14522 14523 -14522\n\t\tmu 0 3 17946 17947 17948\n\t\tf 3 14524 -14523 14525\n\t\tmu 0 3 17949 17950 17951\n\t\tf 3 14526 14527 -14526\n\t\tmu 0 3 17952 17953 17954\n\t\tf 3 -14528 14528 14529\n\t\tmu 0 3 17955 17956 17957\n\t\tf 3 14530 14531 -14530\n\t\tmu 0 3 17958 17959 17960\n\t\tf 3 14532 -14531 14533\n\t\tmu 0 3 17961 17962 17963\n\t\tf 3 14534 14535 -14534\n\t\tmu 0 3 17964 17965 17966\n\t\tf 3 -14536 14536 14537\n\t\tmu 0 3 17967 17968 17969\n\t\tf 3 14538 14539 -14538\n\t\tmu 0 3 17970 17971 17972\n\t\tf 3 14540 -14539 14541\n\t\tmu 0 3 17973 17974 17975\n\t\tf 3 14542 14543 -14542\n\t\tmu 0 3 17976 17977 17978\n\t\tf 3 -14544 14544 14545\n\t\tmu 0 3 17979 17980 17981\n\t\tf 3 14546 14547 -14546\n\t\tmu 0 3 17982 17983 17984\n\t\tf 3 14548 -14547 14549\n\t\tmu 0 3 17985 17986 17987\n\t\tf 3 14550 14551 -14550\n\t\tmu 0 3 17988 17989 17990\n\t\tf 3 -14552 14552 14553\n\t\tmu 0 3 17991 17992 17993\n\t\tf 3 14554 14555 -14554\n\t\tmu 0 3 17994 17995 17996\n\t\tf 3 14556 -14555 14557\n\t\tmu 0 3 17997 17998 17999\n\t\tf 3 14558 14559 -14558\n\t\tmu 0 3 18000 18001 18002\n\t\tf 3 -14560 14560 14561\n\t\tmu 0 3 18003 18004 18005\n\t\tf 3 14562 14563 -14562\n\t\tmu 0 3 18006 18007 18008\n\t\tf 3 14564 -14563 14565\n\t\tmu 0 3 18009 18010 18011\n\t\tf 3 14566 14567 -14566\n\t\tmu 0 3 18012 18013 18014\n\t\tf 3 14568 -14568 14569\n\t\tmu 0 3 18015 18016 18017\n\t\tf 3 14570 -14509 -14570\n\t\tmu 0 3 18018 18019 18020\n\t\tf 3 14571 14572 14573\n\t\tmu 0 3 18021 18022 18023\n\t\tf 3 14574 14575 -14574\n\t\tmu 0 3 18024 18025 18026\n\t\tf 3 -14576 14576 14577\n\t\tmu 0 3 18027 18028 18029\n\t\tf 3 14578 14579 -14578\n\t\tmu 0 3 18030 18031 18032\n\t\tf 3 14580 -14579 14581\n\t\tmu 0 3 18033 18034 18035\n\t\tf 3 14582 14583 -14582\n\t\tmu 0 3 18036 18037 18038\n\t\tf 3 -14584 14584 14585\n\t\tmu 0 3 18039 18040 18041\n\t\tf 3 14586 14587 -14586\n\t\tmu 0 3 18042 18043 18044\n\t\tf 3 14588 -14587 14589\n\t\tmu 0 3 18045 18046 18047\n\t\tf 3 14590 14591 -14590\n\t\tmu 0 3 18048 18049 18050\n\t\tf 3 -14592 14592 14593\n\t\tmu 0 3 18051 18052 18053\n\t\tf 3 14594 14595 -14594\n\t\tmu 0 3 18054 18055 18056\n\t\tf 3 14596 -14595 14597\n\t\tmu 0 3 18057 18058 18059\n\t\tf 3 14598 14599 -14598\n\t\tmu 0 3 18060 18061 18062\n\t\tf 3 -14600 14600 14601\n\t\tmu 0 3 18063 18064 18065\n\t\tf 3 14602 14603 -14602\n\t\tmu 0 3 18066 18067 18068\n\t\tf 3 14604 -14603 14605\n\t\tmu 0 3 18069 18070 18071\n\t\tf 3 14606 14607 -14606\n\t\tmu 0 3 18072 18073 18074\n\t\tf 3 -14608 14608 14609\n\t\tmu 0 3 18075 18076 18077\n\t\tf 3 14610 14611 -14610\n\t\tmu 0 3 18078 18079 18080\n\t\tf 3 14612 -14611 14613\n\t\tmu 0 3 18081 18082 18083\n\t\tf 3 14614 14615 -14614\n\t\tmu 0 3 18084 18085 18086\n\t\tf 3 -14616 14616 14617\n\t\tmu 0 3 18087 18088 18089\n\t\tf 3 14618 14619 -14618\n\t\tmu 0 3 18090 18091 18092\n\t\tf 3 14620 -14619 14621\n\t\tmu 0 3 18093 18094 18095\n\t\tf 3 14622 14623 -14622\n\t\tmu 0 3 18096 18097 18098\n\t\tf 3 -14624 14624 14625\n\t\tmu 0 3 18099 18100 18101\n\t\tf 3 14626 14627 -14626\n\t\tmu 0 3 18102 18103 18104\n\t\tf 3 14628 -14627 14629\n\t\tmu 0 3 18105 18106 18107\n\t\tf 3 14630 14631 -14630\n\t\tmu 0 3 18108 18109 18110\n\t\tf 3 14632 -14632 14633\n\t\tmu 0 3 18111 18112 18113\n\t\tf 3 14634 -14573 -14634\n\t\tmu 0 3 18114 18115 18116\n\t\tf 3 14635 14636 14637\n\t\tmu 0 3 18117 18118 18119\n\t\tf 3 14638 14639 -14638\n\t\tmu 0 3 18120 18121 18122\n\t\tf 3 -14640 14640 14641\n\t\tmu 0 3 18123 18124 18125\n\t\tf 3 14642 14643 -14642\n\t\tmu 0 3 18126 18127 18128\n\t\tf 3 14644 -14643 14645\n\t\tmu 0 3 18129 18130 18131\n\t\tf 3 14646 14647 -14646\n\t\tmu 0 3 18132 18133 18134\n\t\tf 3 -14648 14648 14649\n\t\tmu 0 3 18135 18136 18137\n\t\tf 3 14650 14651 -14650\n\t\tmu 0 3 18138 18139 18140\n\t\tf 3 14652 -14651 14653\n\t\tmu 0 3 18141 18142 18143\n\t\tf 3 14654 14655 -14654\n\t\tmu 0 3 18144 18145 18146\n\t\tf 3 -14656 14656 14657\n\t\tmu 0 3 18147 18148 18149\n\t\tf 3 14658 14659 -14658\n\t\tmu 0 3 18150 18151 18152\n\t\tf 3 14660 -14659 14661\n\t\tmu 0 3 18153 18154 18155\n\t\tf 3 14662 14663 -14662\n\t\tmu 0 3 18156 18157 18158\n\t\tf 3 -14664 14664 14665\n\t\tmu 0 3 18159 18160 18161\n\t\tf 3 14666 14667 -14666\n\t\tmu 0 3 18162 18163 18164\n\t\tf 3 14668 -14667 14669\n\t\tmu 0 3 18165 18166 18167\n\t\tf 3 14670 14671 -14670\n\t\tmu 0 3 18168 18169 18170\n\t\tf 3 14672 14673 14674\n\t\tmu 0 3 18171 18172 18173\n\t\tf 3 -14672 14675 -14675\n\t\tmu 0 3 18174 18175 18176\n\t\tf 3 14676 -14673 14677\n\t\tmu 0 3 18177 18178 18179\n\t\tf 3 14678 14679 -14678\n\t\tmu 0 3 18180 18181 18182\n\t\tf 3 -14680 14680 14681\n\t\tmu 0 3 18183 18184 18185\n\t\tf 3 14682 14683 -14682\n\t\tmu 0 3 18186 18187 18188\n\t\tf 3 14684 -14683 14685\n\t\tmu 0 3 18189 18190 18191\n\t\tf 3 14686 14687 -14686\n\t\tmu 0 3 18192 18193 18194\n\t\tf 3 -14688 14688 14689\n\t\tmu 0 3 18195 18196 18197\n\t\tf 3 14690 14691 -14690\n\t\tmu 0 3 18198 18199 18200\n\t\tf 3 14692 -14691 14693\n\t\tmu 0 3 18201 18202 18203\n\t\tf 3 14694 14695 -14694\n\t\tmu 0 3 18204 18205 18206\n\t\tf 3 14696 -14696 14697\n\t\tmu 0 3 18207 18208 18209\n\t\tf 3 14698 -14637 -14698\n\t\tmu 0 3 18210 18211 18212\n\t\tf 3 14699 14700 14701\n\t\tmu 0 3 18213 18214 18215\n\t\tf 3 14702 14703 -14702\n\t\tmu 0 3 18216 18217 18218\n\t\tf 3 -14703 14704 14705\n\t\tmu 0 3 18219 18220 18221\n\t\tf 3 14706 14707 -14706\n\t\tmu 0 3 18222 18223 18224\n\t\tf 3 -14707 14708 14709\n\t\tmu 0 3 18225 18226 18227\n\t\tf 3 14710 14711 -14710\n\t\tmu 0 3 18228 18229 18230\n\t\tf 3 -14711 14712 14713\n\t\tmu 0 3 18231 18232 18233\n\t\tf 3 14714 14715 -14714\n\t\tmu 0 3 18234 18235 18236\n\t\tf 3 -14715 14716 14717\n\t\tmu 0 3 18237 18238 18239\n\t\tf 3 14718 14719 -14718\n\t\tmu 0 3 18240 18241 18242\n\t\tf 3 -14719 14720 14721\n\t\tmu 0 3 18243 18244 18245\n\t\tf 3 14722 14723 -14722\n\t\tmu 0 3 18246 18247 18248\n\t\tf 3 -14723 14724 14725\n\t\tmu 0 3 18249 18250 18251\n\t\tf 3 14726 14727 -14726\n\t\tmu 0 3 18252 18253 18254\n\t\tf 3 -14727 14728 14729\n\t\tmu 0 3 18255 18256 18257\n\t\tf 3 14730 14731 -14730\n\t\tmu 0 3 18258 18259 18260\n\t\tf 3 -14731 14732 14733\n\t\tmu 0 3 18261 18262 18263\n\t\tf 3 14734 14735 -14734\n\t\tmu 0 3 18264 18265 18266\n\t\tf 3 -14735 14736 14737\n\t\tmu 0 3 18267 18268 18269\n\t\tf 3 14738 14739 -14738\n\t\tmu 0 3 18270 18271 18272\n\t\tf 3 -14739 14740 14741\n\t\tmu 0 3 18273 18274 18275\n\t\tf 3 14742 14743 -14742\n\t\tmu 0 3 18276 18277 18278\n\t\tf 3 -14743 14744 14745\n\t\tmu 0 3 18279 18280 18281\n\t\tf 3 14746 14747 -14746\n\t\tmu 0 3 18282 18283 18284\n\t\tf 3 -14747 14748 14749\n\t\tmu 0 3 18285 18286 18287\n\t\tf 3 14750 14751 -14750\n\t\tmu 0 3 18288 18289 18290\n\t\tf 3 -14751 14752 14753\n\t\tmu 0 3 18291 18292 18293\n\t\tf 3 14754 14755 -14754\n\t\tmu 0 3 18294 18295 18296\n\t\tf 3 -14755 14756 14757\n\t\tmu 0 3 18297 18298 18299\n\t\tf 3 14758 14759 -14758\n\t\tmu 0 3 18300 18301 18302\n\t\tf 3 -14759 14760 14761\n\t\tmu 0 3 18303 18304 18305\n\t\tf 3 -14700 14762 -14762\n\t\tmu 0 3 18306 18307 18308\n\t\tf 3 14763 14764 14765\n\t\tmu 0 3 18309 18310 18311\n\t\tf 3 14766 14767 -14766\n\t\tmu 0 3 18312 18313 18314\n\t\tf 3 -14767 14768 14769\n\t\tmu 0 3 18315 18316 18317\n\t\tf 3 14770 14771 -14770\n\t\tmu 0 3 18318 18319 18320\n\t\tf 3 -14771 14772 14773\n\t\tmu 0 3 18321 18322 18323\n\t\tf 3 14774 14775 -14774\n\t\tmu 0 3 18324 18325 18326\n\t\tf 3 -14775 14776 14777\n\t\tmu 0 3 18327 18328 18329\n\t\tf 3 14778 14779 -14778\n\t\tmu 0 3 18330 18331 18332\n\t\tf 3 -14779 14780 14781\n\t\tmu 0 3 18333 18334 18335\n\t\tf 3 14782 14783 -14782\n\t\tmu 0 3 18336 18337 18338\n\t\tf 3 -14783 14784 14785\n\t\tmu 0 3 18339 18340 18341\n\t\tf 3 14786 14787 -14786\n\t\tmu 0 3 18342 18343 18344\n\t\tf 3 -14787 14788 14789\n\t\tmu 0 3 18345 18346 18347\n\t\tf 3 14790 14791 -14790\n\t\tmu 0 3 18348 18349 18350\n\t\tf 3 -14791 14792 14793\n\t\tmu 0 3 18351 18352 18353\n\t\tf 3 14794 14795 -14794\n\t\tmu 0 3 18354 18355 18356\n\t\tf 3 -14795 14796 14797\n\t\tmu 0 3 18357 18358 18359\n\t\tf 3 14798 14799 -14798\n\t\tmu 0 3 18360 18361 18362\n\t\tf 3 -14799 14800 14801\n\t\tmu 0 3 18363 18364 18365\n\t\tf 3 14802 14803 -14802\n\t\tmu 0 3 18366 18367 18368\n\t\tf 3 -14803 14804 14805\n\t\tmu 0 3 18369 18370 18371\n\t\tf 3 14806 14807 -14806\n\t\tmu 0 3 18372 18373 18374\n\t\tf 3 -14807 14808 14809\n\t\tmu 0 3 18375 18376 18377\n\t\tf 3 14810 14811 -14810\n\t\tmu 0 3 18378 18379 18380\n\t\tf 3 -14811 14812 14813\n\t\tmu 0 3 18381 18382 18383\n\t\tf 3 14814 14815 -14814\n\t\tmu 0 3 18384 18385 18386\n\t\tf 3 -14815 14816 14817\n\t\tmu 0 3 18387 18388 18389\n\t\tf 3 14818 14819 -14818\n\t\tmu 0 3 18390 18391 18392\n\t\tf 3 -14819 14820 14821\n\t\tmu 0 3 18393 18394 18395\n\t\tf 3 14822 14823 -14822\n\t\tmu 0 3 18396 18397 18398\n\t\tf 3 -14823 14824 14825\n\t\tmu 0 3 18399 18400 18401\n\t\tf 3 -14764 14826 -14826\n\t\tmu 0 3 18402 18403 18404\n\t\tf 3 14827 14828 14829\n\t\tmu 0 3 18405 18406 18407\n\t\tf 3 14830 14831 -14830\n\t\tmu 0 3 18408 18409 18410\n\t\tf 3 -14831 14832 14833\n\t\tmu 0 3 18411 18412 18413\n\t\tf 3 14834 14835 -14834\n\t\tmu 0 3 18414 18415 18416\n\t\tf 3 -14835 14836 14837\n\t\tmu 0 3 18417 18418 18419\n\t\tf 3 14838 14839 -14838\n\t\tmu 0 3 18420 18421 18422\n\t\tf 3 -14839 14840 14841\n\t\tmu 0 3 18423 18424 18425\n\t\tf 3 14842 14843 -14842\n\t\tmu 0 3 18426 18427 18428\n\t\tf 3 -14843 14844 14845\n\t\tmu 0 3 18429 18430 18431\n\t\tf 3 14846 14847 -14846\n\t\tmu 0 3 18432 18433 18434\n\t\tf 3 -14847 14848 14849\n\t\tmu 0 3 18435 18436 18437\n\t\tf 3 14850 14851 -14850\n\t\tmu 0 3 18438 18439 18440\n\t\tf 3 -14851 14852 14853\n\t\tmu 0 3 18441 18442 18443\n\t\tf 3 14854 14855 -14854\n\t\tmu 0 3 18444 18445 18446\n\t\tf 3 -14855 14856 14857\n\t\tmu 0 3 18447 18448 18449\n\t\tf 3 14858 14859 -14858\n\t\tmu 0 3 18450 18451 18452\n\t\tf 3 -14859 14860 14861\n\t\tmu 0 3 18453 18454 18455\n\t\tf 3 14862 14863 -14862\n\t\tmu 0 3 18456 18457 18458\n\t\tf 3 -14863 14864 14865\n\t\tmu 0 3 18459 18460 18461\n\t\tf 3 14866 14867 -14866\n\t\tmu 0 3 18462 18463 18464\n\t\tf 3 -14867 14868 14869\n\t\tmu 0 3 18465 18466 18467\n\t\tf 3 14870 14871 -14870\n\t\tmu 0 3 18468 18469 18470\n\t\tf 3 -14871 14872 14873\n\t\tmu 0 3 18471 18472 18473\n\t\tf 3 14874 14875 -14874\n\t\tmu 0 3 18474 18475 18476\n\t\tf 3 -14875 14876 14877\n\t\tmu 0 3 18477 18478 18479\n\t\tf 3 14878 14879 -14878\n\t\tmu 0 3 18480 18481 18482\n\t\tf 3 -14879 14880 14881\n\t\tmu 0 3 18483 18484 18485\n\t\tf 3 14882 14883 -14882\n\t\tmu 0 3 18486 18487 18488\n\t\tf 3 -14883 14884 14885\n\t\tmu 0 3 18489 18490 18491\n\t\tf 3 14886 14887 -14886\n\t\tmu 0 3 18492 18493 18494\n\t\tf 3 -14887 14888 14889\n\t\tmu 0 3 18495 18496 18497\n\t\tf 3 -14828 14890 -14890\n\t\tmu 0 3 18498 18499 18500\n\t\tf 3 14891 14892 14893\n\t\tmu 0 3 18501 18502 18503\n\t\tf 3 14894 14895 -14894\n\t\tmu 0 3 18504 18505 18506\n\t\tf 3 -14895 14896 14897\n\t\tmu 0 3 18507 18508 18509\n\t\tf 3 14898 14899 -14898\n\t\tmu 0 3 18510 18511 18512\n\t\tf 3 -14899 14900 14901\n\t\tmu 0 3 18513 18514 18515\n\t\tf 3 14902 14903 -14902\n\t\tmu 0 3 18516 18517 18518\n\t\tf 3 -14903 14904 14905\n\t\tmu 0 3 18519 18520 18521\n\t\tf 3 14906 14907 -14906\n\t\tmu 0 3 18522 18523 18524\n\t\tf 3 -14907 14908 14909\n\t\tmu 0 3 18525 18526 18527\n\t\tf 3 14910 14911 -14910\n\t\tmu 0 3 18528 18529 18530\n\t\tf 3 -14911 14912 14913\n\t\tmu 0 3 18531 18532 18533\n\t\tf 3 14914 14915 -14914\n\t\tmu 0 3 18534 18535 18536\n\t\tf 3 -14915 14916 14917\n\t\tmu 0 3 18537 18538 18539\n\t\tf 3 14918 14919 -14918\n\t\tmu 0 3 18540 18541 18542\n\t\tf 3 -14919 14920 14921\n\t\tmu 0 3 18543 18544 18545\n\t\tf 3 14922 14923 -14922\n\t\tmu 0 3 18546 18547 18548\n\t\tf 3 -14923 14924 14925\n\t\tmu 0 3 18549 18550 18551\n\t\tf 3 14926 14927 -14926\n\t\tmu 0 3 18552 18553 18554\n\t\tf 3 -14927 14928 14929\n\t\tmu 0 3 18555 18556 18557\n\t\tf 3 14930 14931 -14930\n\t\tmu 0 3 18558 18559 18560\n\t\tf 3 -14931 14932 14933\n\t\tmu 0 3 18561 18562 18563\n\t\tf 3 14934 14935 -14934\n\t\tmu 0 3 18564 18565 18566\n\t\tf 3 -14935 14936 14937\n\t\tmu 0 3 18567 18568 18569\n\t\tf 3 14938 14939 -14938\n\t\tmu 0 3 18570 18571 18572\n\t\tf 3 -14939 14940 14941\n\t\tmu 0 3 18573 18574 18575\n\t\tf 3 14942 14943 -14942\n\t\tmu 0 3 18576 18577 18578\n\t\tf 3 -14943 14944 14945\n\t\tmu 0 3 18579 18580 18581\n\t\tf 3 14946 14947 -14946\n\t\tmu 0 3 18582 18583 18584\n\t\tf 3 -14947 14948 14949\n\t\tmu 0 3 18585 18586 18587\n\t\tf 3 14950 14951 -14950\n\t\tmu 0 3 18588 18589 18590\n\t\tf 3 -14951 14952 14953\n\t\tmu 0 3 18591 18592 18593\n\t\tf 3 -14892 14954 -14954\n\t\tmu 0 3 18594 18595 18596\n\t\tf 3 14955 14956 14957\n\t\tmu 0 3 18597 18598 18599\n\t\tf 3 14958 14959 -14958\n\t\tmu 0 3 18600 18601 18602\n\t\tf 3 -14960 14960 14961\n\t\tmu 0 3 18603 18604 18605\n\t\tf 3 14962 14963 -14962\n\t\tmu 0 3 18606 18607 18608\n\t\tf 3 14964 -14963 14965\n\t\tmu 0 3 18609 18610 18611\n\t\tf 3 14966 14967 -14966\n\t\tmu 0 3 18612 18613 18614\n\t\tf 3 -14968 14968 14969\n\t\tmu 0 3 18615 18616 18617\n\t\tf 3 14970 14971 -14970\n\t\tmu 0 3 18618 18619 18620\n\t\tf 3 14972 -14971 14973\n\t\tmu 0 3 18621 18622 18623\n\t\tf 3 14974 14975 -14974\n\t\tmu 0 3 18624 18625 18626\n\t\tf 3 -14976 14976 14977\n\t\tmu 0 3 18627 18628 18629\n\t\tf 3 14978 14979 -14978\n\t\tmu 0 3 18630 18631 18632\n\t\tf 3 14980 -14979 14981\n\t\tmu 0 3 18633 18634 18635\n\t\tf 3 14982 14983 -14982\n\t\tmu 0 3 18636 18637 18638\n\t\tf 3 -14984 14984 14985\n\t\tmu 0 3 18639 18640 18641\n\t\tf 3 14986 14987 -14986\n\t\tmu 0 3 18642 18643 18644\n\t\tf 3 14988 -14987 14989\n\t\tmu 0 3 18645 18646 18647\n\t\tf 3 14990 14991 -14990\n\t\tmu 0 3 18648 18649 18650\n\t\tf 3 14992 14993 14994\n\t\tmu 0 3 18651 18652 18653\n\t\tf 3 -14992 14995 -14995\n\t\tmu 0 3 18654 18655 18656\n\t\tf 3 14996 -14993 14997\n\t\tmu 0 3 18657 18658 18659\n\t\tf 3 14998 14999 -14998\n\t\tmu 0 3 18660 18661 18662\n\t\tf 3 -15000 15000 15001\n\t\tmu 0 3 18663 18664 18665\n\t\tf 3 15002 15003 -15002\n\t\tmu 0 3 18666 18667 18668\n\t\tf 3 15004 -15003 15005\n\t\tmu 0 3 18669 18670 18671\n\t\tf 3 15006 15007 -15006\n\t\tmu 0 3 18672 18673 18674\n\t\tf 3 -15008 15008 15009\n\t\tmu 0 3 18675 18676 18677\n\t\tf 3 15010 15011 -15010\n\t\tmu 0 3 18678 18679 18680\n\t\tf 3 15012 -15011 15013\n\t\tmu 0 3 18681 18682 18683\n\t\tf 3 15014 15015 -15014\n\t\tmu 0 3 18684 18685 18686\n\t\tf 3 15016 -15016 15017\n\t\tmu 0 3 18687 18688 18689\n\t\tf 3 15018 -14957 -15018\n\t\tmu 0 3 18690 18691 18692\n\t\tf 3 15019 15020 15021\n\t\tmu 0 3 18693 18694 18695\n\t\tf 3 15022 15023 -15022\n\t\tmu 0 3 18696 18697 18698\n\t\tf 3 -15021 15024 15025\n\t\tmu 0 3 18699 18700 18701\n\t\tf 3 15026 15027 -15026\n\t\tmu 0 3 18702 18703 18704\n\t\tf 3 15028 -15027 15029\n\t\tmu 0 3 18705 18706 18707\n\t\tf 3 15030 15031 -15030\n\t\tmu 0 3 18708 18709 18710\n\t\tf 3 -15032 15032 15033\n\t\tmu 0 3 18711 18712 18713\n\t\tf 3 15034 15035 -15034\n\t\tmu 0 3 18714 18715 18716\n\t\tf 3 15036 -15035 15037\n\t\tmu 0 3 18717 18718 18719\n\t\tf 3 15038 15039 -15038\n\t\tmu 0 3 18720 18721 18722\n\t\tf 3 -15040 15040 15041\n\t\tmu 0 3 18723 18724 18725\n\t\tf 3 15042 15043 -15042\n\t\tmu 0 3 18726 18727 18728\n\t\tf 3 15044 -15043 15045\n\t\tmu 0 3 18729 18730 18731\n\t\tf 3 15046 15047 -15046\n\t\tmu 0 3 18732 18733 18734\n\t\tf 3 -15048 15048 15049\n\t\tmu 0 3 18735 18736 18737\n\t\tf 3 15050 15051 -15050\n\t\tmu 0 3 18738 18739 18740\n\t\tf 3 15052 -15051 15053\n\t\tmu 0 3 18741 18742 18743\n\t\tf 3 15054 15055 -15054\n\t\tmu 0 3 18744 18745 18746\n\t\tf 3 -15056 15056 15057\n\t\tmu 0 3 18747 18748 18749\n\t\tf 3 15058 15059 -15058\n\t\tmu 0 3 18750 18751 18752\n\t\tf 3 15060 -15059 15061\n\t\tmu 0 3 18753 18754 18755\n\t\tf 3 15062 15063 -15062\n\t\tmu 0 3 18756 18757 18758\n\t\tf 3 -15064 15064 15065\n\t\tmu 0 3 18759 18760 18761\n\t\tf 3 15066 15067 -15066\n\t\tmu 0 3 18762 18763 18764\n\t\tf 3 15068 -15067 15069\n\t\tmu 0 3 18765 18766 18767\n\t\tf 3 15070 15071 -15070\n\t\tmu 0 3 18768 18769 18770\n\t\tf 3 -15072 15072 15073\n\t\tmu 0 3 18771 18772 18773\n\t\tf 3 15074 15075 -15074\n\t\tmu 0 3 18774 18775 18776\n\t\tf 3 15076 -15075 15077\n\t\tmu 0 3 18777 18778 18779\n\t\tf 3 15078 15079 -15078\n\t\tmu 0 3 18780 18781 18782\n\t\tf 3 -15080 15080 15081\n\t\tmu 0 3 18783 18784 18785\n\t\tf 3 -15024 15082 -15082\n\t\tmu 0 3 18786 18787 18788\n\t\tf 3 15083 15084 15085\n\t\tmu 0 3 18789 18790 18791\n\t\tf 3 15086 15087 -15086\n\t\tmu 0 3 18792 18793 18794\n\t\tf 3 -15087 15088 15089\n\t\tmu 0 3 18795 18796 18797\n\t\tf 3 15090 15091 -15090\n\t\tmu 0 3 18798 18799 18800\n\t\tf 3 -15091 15092 15093\n\t\tmu 0 3 18801 18802 18803\n\t\tf 3 15094 15095 -15094\n\t\tmu 0 3 18804 18805 18806\n\t\tf 3 -15095 15096 15097\n\t\tmu 0 3 18807 18808 18809\n\t\tf 3 15098 15099 -15098\n\t\tmu 0 3 18810 18811 18812\n\t\tf 3 -15099 15100 15101\n\t\tmu 0 3 18813 18814 18815\n\t\tf 3 15102 15103 -15102\n\t\tmu 0 3 18816 18817 18818\n\t\tf 3 -15103 15104 15105\n\t\tmu 0 3 18819 18820 18821\n\t\tf 3 15106 15107 -15106\n\t\tmu 0 3 18822 18823 18824\n\t\tf 3 -15107 15108 15109\n\t\tmu 0 3 18825 18826 18827\n\t\tf 3 15110 15111 -15110\n\t\tmu 0 3 18828 18829 18830\n\t\tf 3 -15111 15112 15113\n\t\tmu 0 3 18831 18832 18833\n\t\tf 3 15114 15115 -15114\n\t\tmu 0 3 18834 18835 18836\n\t\tf 3 -15115 15116 15117\n\t\tmu 0 3 18837 18838 18839\n\t\tf 3 15118 15119 -15118\n\t\tmu 0 3 18840 18841 18842\n\t\tf 3 -15119 15120 15121\n\t\tmu 0 3 18843 18844 18845\n\t\tf 3 15122 15123 -15122\n\t\tmu 0 3 18846 18847 18848\n\t\tf 3 -15123 15124 15125\n\t\tmu 0 3 18849 18850 18851\n\t\tf 3 15126 15127 -15126\n\t\tmu 0 3 18852 18853 18854\n\t\tf 3 -15127 15128 15129\n\t\tmu 0 3 18855 18856 18857\n\t\tf 3 15130 15131 -15130\n\t\tmu 0 3 18858 18859 18860\n\t\tf 3 -15131 15132 15133\n\t\tmu 0 3 18861 18862 18863\n\t\tf 3 15134 15135 -15134\n\t\tmu 0 3 18864 18865 18866\n\t\tf 3 -15135 15136 15137\n\t\tmu 0 3 18867 18868 18869\n\t\tf 3 15138 15139 -15138\n\t\tmu 0 3 18870 18871 18872\n\t\tf 3 -15139 15140 15141\n\t\tmu 0 3 18873 18874 18875\n\t\tf 3 15142 15143 -15142\n\t\tmu 0 3 18876 18877 18878\n\t\tf 3 -15143 15144 15145\n\t\tmu 0 3 18879 18880 18881\n\t\tf 3 -15084 15146 -15146\n\t\tmu 0 3 18882 18883 18884\n\t\tf 3 15147 15148 15149\n\t\tmu 0 3 18885 18886 18887\n\t\tf 3 15150 15151 -15150\n\t\tmu 0 3 18888 18889 18890\n\t\tf 3 15152 -15149 15153\n\t\tmu 0 3 18891 18892 18893\n\t\tf 3 15154 15155 -15154\n\t\tmu 0 3 18894 18895 18896\n\t\tf 3 15156 -15156 15157\n\t\tmu 0 3 18897 18898 18899\n\t\tf 3 15158 15159 -15158\n\t\tmu 0 3 18900 18901 18902\n\t\tf 3 15160 -15160 15161\n\t\tmu 0 3 18903 18904 18905\n\t\tf 3 15162 15163 -15162\n\t\tmu 0 3 18906 18907 18908\n\t\tf 3 15164 -15164 15165\n\t\tmu 0 3 18909 18910 18911\n\t\tf 3 15166 15167 -15166\n\t\tmu 0 3 18912 18913 18914\n\t\tf 3 15168 -15168 15169\n\t\tmu 0 3 18915 18916 18917\n\t\tf 3 15170 15171 -15170\n\t\tmu 0 3 18918 18919 18920\n\t\tf 3 15172 -15172 15173\n\t\tmu 0 3 18921 18922 18923\n\t\tf 3 15174 15175 -15174\n\t\tmu 0 3 18924 18925 18926\n\t\tf 3 15176 -15176 15177\n\t\tmu 0 3 18927 18928 18929\n\t\tf 3 15178 15179 -15178\n\t\tmu 0 3 18930 18931 18932\n\t\tf 3 15180 -15180 15181\n\t\tmu 0 3 18933 18934 18935\n\t\tf 3 15182 15183 -15182\n\t\tmu 0 3 18936 18937 18938\n\t\tf 3 15184 15185 15186\n\t\tmu 0 3 18939 18940 18941\n\t\tf 3 15187 -15186 15188\n\t\tmu 0 3 18942 18943 18944\n\t\tf 3 15189 15190 -15189\n\t\tmu 0 3 18945 18946 18947\n\t\tf 3 15191 15192 15193\n\t\tmu 0 3 18948 18949 18950\n\t\tf 3 15194 -15191 -15194\n\t\tmu 0 3 18951 18952 18953\n\t\tf 3 15195 -15193 15196\n\t\tmu 0 3 18954 18955 18956\n\t\tf 3 15197 15198 -15197\n\t\tmu 0 3 18957 18958 18959\n\t\tf 3 15199 15200 15201\n\t\tmu 0 3 18960 18961 18962\n\t\tf 3 15202 -15199 -15202\n\t\tmu 0 3 18963 18964 18965\n\t\tf 3 15203 -15201 15204\n\t\tmu 0 3 18966 18967 18968\n\t\tf 3 15205 15206 -15205\n\t\tmu 0 3 18969 18970 18971\n\t\tf 3 15207 15208 15209\n\t\tmu 0 3 18972 18973 18974\n\t\tf 3 15210 -15207 -15210\n\t\tmu 0 3 18975 18976 18977\n\t\tf 3 15211 15212 -15187\n\t\tmu 0 3 18978 18979 18980\n\t\tf 3 15213 -15213 15214\n\t\tmu 0 3 18981 18982 18983\n\t\tf 3 15215 15216 -15215\n\t\tmu 0 3 18984 18985 18986\n\t\tf 3 15217 -15217 15218\n\t\tmu 0 3 18987 18988 18989\n\t\tf 3 15219 15220 -15219\n\t\tmu 0 3 18990 18991 18992\n\t\tf 3 15221 -15221 15222\n\t\tmu 0 3 18993 18994 18995\n\t\tf 3 15223 15224 15225\n\t\tmu 0 3 18996 18997 18998\n\t\tf 3 15226 -15225 15227\n\t\tmu 0 3 18999 19000 19001\n\t\tf 3 15228 15229 -15228\n\t\tmu 0 3 19002 19003 19004\n\t\tf 3 15230 -15230 15231\n\t\tmu 0 3 19005 19006 19007\n\t\tf 3 15232 15233 -15232\n\t\tmu 0 3 19008 19009 19010\n\t\tf 3 15234 -15234 15235\n\t\tmu 0 3 19011 19012 19013\n\t\tf 3 15236 15237 -15236\n\t\tmu 0 3 19014 19015 19016\n\t\tf 3 15238 -15238 15239\n\t\tmu 0 3 19017 19018 19019\n\t\tf 3 15240 15241 -15240\n\t\tmu 0 3 19020 19021 19022\n\t\tf 3 15242 -15242 15243\n\t\tmu 0 3 19023 19024 19025\n\t\tf 3 15244 15245 -15244\n\t\tmu 0 3 19026 19027 19028\n\t\tf 3 15246 -15246 15247\n\t\tmu 0 3 19029 19030 19031\n\t\tf 3 15248 -15184 -15248\n\t\tmu 0 3 19032 19033 19034\n\t\tf 3 15249 -15152 -15226\n\t\tmu 0 3 19035 19036 19037\n\t\tf 3 15250 15251 15252\n\t\tmu 0 3 19038 19039 19040\n\t\tf 3 15253 -15209 -15253\n\t\tmu 0 3 19041 19042 19043\n\t\tf 3 15254 15255 15256\n\t\tmu 0 3 19044 19045 19046\n\t\tf 3 15257 -15252 -15257\n\t\tmu 0 3 19047 19048 19049\n\t\tf 3 15258 -15256 15259\n\t\tmu 0 3 19050 19051 19052\n\t\tf 3 15260 15261 -15260\n\t\tmu 0 3 19053 19054 19055\n\t\tf 3 15262 15263 15264\n\t\tmu 0 3 19056 19057 19058\n\t\tf 3 15265 -15262 -15265\n\t\tmu 0 3 19059 19060 19061\n\t\tf 3 15266 -15264 15267\n\t\tmu 0 3 19062 19063 19064\n\t\tf 3 15268 15269 -15268\n\t\tmu 0 3 19065 19066 19067\n\t\tf 3 15270 -15270 15271\n\t\tmu 0 3 19068 19069 19070\n\t\tf 3 15272 15273 -15272\n\t\tmu 0 3 19071 19072 19073\n\t\tf 3 15274 -15274 -15223\n\t\tmu 0 3 19074 19075 19076\n\t\tf 3 15275 15276 15277\n\t\tmu 0 3 19077 19078 19079\n\t\tf 3 15278 15279 -15278\n\t\tmu 0 3 19080 19081 19082\n\t\tf 3 15280 -15277 15281\n\t\tmu 0 3 19083 19084 19085\n\t\tf 3 15282 15283 -15282\n\t\tmu 0 3 19086 19087 19088\n\t\tf 3 15284 -15284 15285\n\t\tmu 0 3 19089 19090 19091\n\t\tf 3 15286 15287 -15286\n\t\tmu 0 3 19092 19093 19094\n\t\tf 3 15288 -15288 15289\n\t\tmu 0 3 19095 19096 19097\n\t\tf 3 15290 15291 -15290\n\t\tmu 0 3 19098 19099 19100\n\t\tf 3 15292 -15292 15293\n\t\tmu 0 3 19101 19102 19103\n\t\tf 3 15294 15295 -15294\n\t\tmu 0 3 19104 19105 19106\n\t\tf 3 15296 -15296 15297\n\t\tmu 0 3 19107 19108 19109\n\t\tf 3 15298 15299 -15298\n\t\tmu 0 3 19110 19111 19112\n\t\tf 3 15300 -15300 15301\n\t\tmu 0 3 19113 19114 19115\n\t\tf 3 15302 15303 -15302\n\t\tmu 0 3 19116 19117 19118\n\t\tf 3 15304 -15304 15305\n\t\tmu 0 3 19119 19120 19121\n\t\tf 3 15306 15307 -15306\n\t\tmu 0 3 19122 19123 19124\n\t\tf 3 15308 -15308 15309\n\t\tmu 0 3 19125 19126 19127\n\t\tf 3 15310 15311 -15310\n\t\tmu 0 3 19128 19129 19130\n\t\tf 3 15312 -15312 15313\n\t\tmu 0 3 19131 19132 19133\n\t\tf 3 15314 15315 -15314\n\t\tmu 0 3 19134 19135 19136\n\t\tf 3 15316 -15316 15317\n\t\tmu 0 3 19137 19138 19139\n\t\tf 3 15318 15319 -15318\n\t\tmu 0 3 19140 19141 19142\n\t\tf 3 15320 -15320 15321\n\t\tmu 0 3 19143 19144 19145\n\t\tf 3 15322 15323 -15322\n\t\tmu 0 3 19146 19147 19148\n\t\tf 3 15324 -15324 15325\n\t\tmu 0 3 19149 19150 19151\n\t\tf 3 15326 15327 -15326\n\t\tmu 0 3 19152 19153 19154\n\t\tf 3 15328 -15328 15329\n\t\tmu 0 3 19155 19156 19157\n\t\tf 3 15330 15331 -15330\n\t\tmu 0 3 19158 19159 19160\n\t\tf 3 15332 -15332 15333\n\t\tmu 0 3 19161 19162 19163\n\t\tf 3 15334 15335 -15334\n\t\tmu 0 3 19164 19165 19166\n\t\tf 3 15336 -15336 15337\n\t\tmu 0 3 19167 19168 19169\n\t\tf 3 15338 -15280 -15338\n\t\tmu 0 3 19170 19171 19172\n\t\tf 3 15339 15340 15341\n\t\tmu 0 3 19173 19174 19175\n\t\tf 3 15342 15343 -15342\n\t\tmu 0 3 19176 19177 19178\n\t\tf 3 15344 -15341 15345\n\t\tmu 0 3 19179 19180 19181\n\t\tf 3 15346 15347 -15346\n\t\tmu 0 3 19182 19183 19184\n\t\tf 3 15348 -15348 15349\n\t\tmu 0 3 19185 19186 19187\n\t\tf 3 15350 15351 -15350\n\t\tmu 0 3 19188 19189 19190\n\t\tf 3 15352 -15352 15353\n\t\tmu 0 3 19191 19192 19193\n\t\tf 3 15354 15355 -15354\n\t\tmu 0 3 19194 19195 19196\n\t\tf 3 15356 -15356 15357\n\t\tmu 0 3 19197 19198 19199\n\t\tf 3 15358 15359 -15358\n\t\tmu 0 3 19200 19201 19202\n\t\tf 3 15360 -15360 15361\n\t\tmu 0 3 19203 19204 19205\n\t\tf 3 15362 15363 -15362\n\t\tmu 0 3 19206 19207 19208\n\t\tf 3 15364 -15364 15365\n\t\tmu 0 3 19209 19210 19211\n\t\tf 3 15366 15367 -15366\n\t\tmu 0 3 19212 19213 19214;\n\tsetAttr \".fc[8000:8499]\"\n\t\tf 3 15368 -15368 15369\n\t\tmu 0 3 19215 19216 19217\n\t\tf 3 15370 15371 -15370\n\t\tmu 0 3 19218 19219 19220\n\t\tf 3 15372 -15372 15373\n\t\tmu 0 3 19221 19222 19223\n\t\tf 3 15374 15375 -15374\n\t\tmu 0 3 19224 19225 19226\n\t\tf 3 15376 -15376 15377\n\t\tmu 0 3 19227 19228 19229\n\t\tf 3 15378 15379 -15378\n\t\tmu 0 3 19230 19231 19232\n\t\tf 3 15380 -15380 15381\n\t\tmu 0 3 19233 19234 19235\n\t\tf 3 15382 15383 -15382\n\t\tmu 0 3 19236 19237 19238\n\t\tf 3 15384 -15384 15385\n\t\tmu 0 3 19239 19240 19241\n\t\tf 3 15386 15387 -15386\n\t\tmu 0 3 19242 19243 19244\n\t\tf 3 15388 -15388 15389\n\t\tmu 0 3 19245 19246 19247\n\t\tf 3 15390 15391 -15390\n\t\tmu 0 3 19248 19249 19250\n\t\tf 3 15392 -15392 15393\n\t\tmu 0 3 19251 19252 19253\n\t\tf 3 15394 15395 -15394\n\t\tmu 0 3 19254 19255 19256\n\t\tf 3 15396 -15396 15397\n\t\tmu 0 3 19257 19258 19259\n\t\tf 3 15398 15399 -15398\n\t\tmu 0 3 19260 19261 19262\n\t\tf 3 15400 -15400 15401\n\t\tmu 0 3 19263 19264 19265\n\t\tf 3 15402 -15344 -15402\n\t\tmu 0 3 19266 19267 19268\n\t\tf 3 15403 15404 15405\n\t\tmu 0 3 19269 19270 19271\n\t\tf 3 15406 15407 -15406\n\t\tmu 0 3 19272 19273 19274\n\t\tf 3 15408 -15405 15409\n\t\tmu 0 3 19275 19276 19277\n\t\tf 3 15410 15411 -15410\n\t\tmu 0 3 19278 19279 19280\n\t\tf 3 15412 -15412 15413\n\t\tmu 0 3 19281 19282 19283\n\t\tf 3 15414 15415 -15414\n\t\tmu 0 3 19284 19285 19286\n\t\tf 3 15416 -15416 15417\n\t\tmu 0 3 19287 19288 19289\n\t\tf 3 15418 15419 -15418\n\t\tmu 0 3 19290 19291 19292\n\t\tf 3 15420 -15420 15421\n\t\tmu 0 3 19293 19294 19295\n\t\tf 3 15422 15423 -15422\n\t\tmu 0 3 19296 19297 19298\n\t\tf 3 15424 -15424 15425\n\t\tmu 0 3 19299 19300 19301\n\t\tf 3 15426 15427 -15426\n\t\tmu 0 3 19302 19303 19304\n\t\tf 3 15428 -15428 15429\n\t\tmu 0 3 19305 19306 19307\n\t\tf 3 15430 15431 -15430\n\t\tmu 0 3 19308 19309 19310\n\t\tf 3 15432 -15432 15433\n\t\tmu 0 3 19311 19312 19313\n\t\tf 3 15434 15435 -15434\n\t\tmu 0 3 19314 19315 19316\n\t\tf 3 15436 -15436 15437\n\t\tmu 0 3 19317 19318 19319\n\t\tf 3 15438 15439 -15438\n\t\tmu 0 3 19320 19321 19322\n\t\tf 3 15440 -15440 15441\n\t\tmu 0 3 19323 19324 19325\n\t\tf 3 15442 15443 -15442\n\t\tmu 0 3 19326 19327 19328\n\t\tf 3 15444 -15444 15445\n\t\tmu 0 3 19329 19330 19331\n\t\tf 3 15446 15447 -15446\n\t\tmu 0 3 19332 19333 19334\n\t\tf 3 15448 -15448 15449\n\t\tmu 0 3 19335 19336 19337\n\t\tf 3 15450 15451 -15450\n\t\tmu 0 3 19338 19339 19340\n\t\tf 3 15452 -15452 15453\n\t\tmu 0 3 19341 19342 19343\n\t\tf 3 15454 15455 -15454\n\t\tmu 0 3 19344 19345 19346\n\t\tf 3 15456 -15456 15457\n\t\tmu 0 3 19347 19348 19349\n\t\tf 3 15458 15459 -15458\n\t\tmu 0 3 19350 19351 19352\n\t\tf 3 15460 -15460 15461\n\t\tmu 0 3 19353 19354 19355\n\t\tf 3 15462 15463 -15462\n\t\tmu 0 3 19356 19357 19358\n\t\tf 3 15464 -15464 15465\n\t\tmu 0 3 19359 19360 19361\n\t\tf 3 15466 -15408 -15466\n\t\tmu 0 3 19362 19363 19364\n\t\tf 3 15467 15468 15469\n\t\tmu 0 3 19365 19366 19367\n\t\tf 3 15470 15471 -15470\n\t\tmu 0 3 19368 19369 19370\n\t\tf 3 -15471 15472 15473\n\t\tmu 0 3 19371 19372 19373\n\t\tf 3 15474 15475 -15474\n\t\tmu 0 3 19374 19375 19376\n\t\tf 3 -15475 15476 15477\n\t\tmu 0 3 19377 19378 19379\n\t\tf 3 15478 15479 -15478\n\t\tmu 0 3 19380 19381 19382\n\t\tf 3 -15479 15480 15481\n\t\tmu 0 3 19383 19384 19385\n\t\tf 3 15482 15483 -15482\n\t\tmu 0 3 19386 19387 19388\n\t\tf 3 -15483 15484 15485\n\t\tmu 0 3 19389 19390 19391\n\t\tf 3 15486 15487 -15486\n\t\tmu 0 3 19392 19393 19394\n\t\tf 3 -15487 15488 15489\n\t\tmu 0 3 19395 19396 19397\n\t\tf 3 15490 15491 -15490\n\t\tmu 0 3 19398 19399 19400\n\t\tf 3 -15491 15492 15493\n\t\tmu 0 3 19401 19402 19403\n\t\tf 3 15494 15495 -15494\n\t\tmu 0 3 19404 19405 19406\n\t\tf 3 -15495 15496 15497\n\t\tmu 0 3 19407 19408 19409\n\t\tf 3 15498 15499 -15498\n\t\tmu 0 3 19410 19411 19412\n\t\tf 3 -15499 15500 15501\n\t\tmu 0 3 19413 19414 19415\n\t\tf 3 15502 15503 -15502\n\t\tmu 0 3 19416 19417 19418\n\t\tf 3 -15503 15504 15505\n\t\tmu 0 3 19419 19420 19421\n\t\tf 3 15506 15507 -15506\n\t\tmu 0 3 19422 19423 19424\n\t\tf 3 -15507 15508 15509\n\t\tmu 0 3 19425 19426 19427\n\t\tf 3 15510 15511 -15510\n\t\tmu 0 3 19428 19429 19430\n\t\tf 3 -15511 15512 15513\n\t\tmu 0 3 19431 19432 19433\n\t\tf 3 15514 15515 -15514\n\t\tmu 0 3 19434 19435 19436\n\t\tf 3 -15515 15516 15517\n\t\tmu 0 3 19437 19438 19439\n\t\tf 3 15518 15519 -15518\n\t\tmu 0 3 19440 19441 19442\n\t\tf 3 -15519 15520 15521\n\t\tmu 0 3 19443 19444 19445\n\t\tf 3 15522 15523 -15522\n\t\tmu 0 3 19446 19447 19448\n\t\tf 3 -15523 15524 15525\n\t\tmu 0 3 19449 19450 19451\n\t\tf 3 15526 15527 -15526\n\t\tmu 0 3 19452 19453 19454\n\t\tf 3 -15527 15528 15529\n\t\tmu 0 3 19455 19456 19457\n\t\tf 3 -15468 15530 -15530\n\t\tmu 0 3 19458 19459 19460\n\t\tf 3 15531 15532 15533\n\t\tmu 0 3 19461 19462 19463\n\t\tf 3 15534 15535 -15534\n\t\tmu 0 3 19464 19465 19466\n\t\tf 3 -15535 15536 15537\n\t\tmu 0 3 19467 19468 19469\n\t\tf 3 15538 15539 -15538\n\t\tmu 0 3 19470 19471 19472\n\t\tf 3 -15539 15540 15541\n\t\tmu 0 3 19473 19474 19475\n\t\tf 3 15542 15543 -15542\n\t\tmu 0 3 19476 19477 19478\n\t\tf 3 -15543 15544 15545\n\t\tmu 0 3 19479 19480 19481\n\t\tf 3 15546 15547 -15546\n\t\tmu 0 3 19482 19483 19484\n\t\tf 3 -15547 15548 15549\n\t\tmu 0 3 19485 19486 19487\n\t\tf 3 15550 15551 -15550\n\t\tmu 0 3 19488 19489 19490\n\t\tf 3 -15551 15552 15553\n\t\tmu 0 3 19491 19492 19493\n\t\tf 3 15554 15555 -15554\n\t\tmu 0 3 19494 19495 19496\n\t\tf 3 -15555 15556 15557\n\t\tmu 0 3 19497 19498 19499\n\t\tf 3 15558 15559 -15558\n\t\tmu 0 3 19500 19501 19502\n\t\tf 3 -15559 15560 15561\n\t\tmu 0 3 19503 19504 19505\n\t\tf 3 15562 15563 -15562\n\t\tmu 0 3 19506 19507 19508\n\t\tf 3 -15563 15564 15565\n\t\tmu 0 3 19509 19510 19511\n\t\tf 3 15566 15567 -15566\n\t\tmu 0 3 19512 19513 19514\n\t\tf 3 -15567 15568 15569\n\t\tmu 0 3 19515 19516 19517\n\t\tf 3 15570 15571 -15570\n\t\tmu 0 3 19518 19519 19520\n\t\tf 3 -15571 15572 15573\n\t\tmu 0 3 19521 19522 19523\n\t\tf 3 15574 15575 -15574\n\t\tmu 0 3 19524 19525 19526\n\t\tf 3 -15575 15576 15577\n\t\tmu 0 3 19527 19528 19529\n\t\tf 3 15578 15579 -15578\n\t\tmu 0 3 19530 19531 19532\n\t\tf 3 -15579 15580 15581\n\t\tmu 0 3 19533 19534 19535\n\t\tf 3 15582 15583 -15582\n\t\tmu 0 3 19536 19537 19538\n\t\tf 3 -15583 15584 15585\n\t\tmu 0 3 19539 19540 19541\n\t\tf 3 15586 15587 -15586\n\t\tmu 0 3 19542 19543 19544\n\t\tf 3 -15587 15588 15589\n\t\tmu 0 3 19545 19546 19547\n\t\tf 3 15590 15591 -15590\n\t\tmu 0 3 19548 19549 19550\n\t\tf 3 -15591 15592 15593\n\t\tmu 0 3 19551 19552 19553\n\t\tf 3 -15532 15594 -15594\n\t\tmu 0 3 19554 19555 19556\n\t\tf 3 15595 15596 15597\n\t\tmu 0 3 19557 19558 19559\n\t\tf 3 15598 15599 -15598\n\t\tmu 0 3 19560 19561 19562\n\t\tf 3 -15599 15600 15601\n\t\tmu 0 3 19563 19564 19565\n\t\tf 3 15602 15603 -15602\n\t\tmu 0 3 19566 19567 19568\n\t\tf 3 -15603 15604 15605\n\t\tmu 0 3 19569 19570 19571\n\t\tf 3 15606 15607 -15606\n\t\tmu 0 3 19572 19573 19574\n\t\tf 3 -15607 15608 15609\n\t\tmu 0 3 19575 19576 19577\n\t\tf 3 15610 15611 -15610\n\t\tmu 0 3 19578 19579 19580\n\t\tf 3 -15611 15612 15613\n\t\tmu 0 3 19581 19582 19583\n\t\tf 3 15614 15615 -15614\n\t\tmu 0 3 19584 19585 19586\n\t\tf 3 -15615 15616 15617\n\t\tmu 0 3 19587 19588 19589\n\t\tf 3 15618 15619 -15618\n\t\tmu 0 3 19590 19591 19592\n\t\tf 3 -15619 15620 15621\n\t\tmu 0 3 19593 19594 19595\n\t\tf 3 15622 15623 -15622\n\t\tmu 0 3 19596 19597 19598\n\t\tf 3 -15623 15624 15625\n\t\tmu 0 3 19599 19600 19601\n\t\tf 3 15626 15627 -15626\n\t\tmu 0 3 19602 19603 19604\n\t\tf 3 -15627 15628 15629\n\t\tmu 0 3 19605 19606 19607\n\t\tf 3 15630 15631 -15630\n\t\tmu 0 3 19608 19609 19610\n\t\tf 3 -15631 15632 15633\n\t\tmu 0 3 19611 19612 19613\n\t\tf 3 15634 15635 -15634\n\t\tmu 0 3 19614 19615 19616\n\t\tf 3 -15635 15636 15637\n\t\tmu 0 3 19617 19618 19619\n\t\tf 3 15638 15639 -15638\n\t\tmu 0 3 19620 19621 19622\n\t\tf 3 -15639 15640 15641\n\t\tmu 0 3 19623 19624 19625\n\t\tf 3 15642 15643 -15642\n\t\tmu 0 3 19626 19627 19628\n\t\tf 3 -15643 15644 15645\n\t\tmu 0 3 19629 19630 19631\n\t\tf 3 15646 15647 -15646\n\t\tmu 0 3 19632 19633 19634\n\t\tf 3 -15647 15648 15649\n\t\tmu 0 3 19635 19636 19637\n\t\tf 3 15650 15651 -15650\n\t\tmu 0 3 19638 19639 19640\n\t\tf 3 -15651 15652 15653\n\t\tmu 0 3 19641 19642 19643\n\t\tf 3 15654 15655 -15654\n\t\tmu 0 3 19644 19645 19646\n\t\tf 3 -15655 15656 15657\n\t\tmu 0 3 19647 19648 19649\n\t\tf 3 -15596 15658 -15658\n\t\tmu 0 3 19650 19651 19652\n\t\tf 3 15659 15660 15661\n\t\tmu 0 3 19653 19654 19655\n\t\tf 3 15662 15663 -15662\n\t\tmu 0 3 19656 19657 19658\n\t\tf 3 -15663 15664 15665\n\t\tmu 0 3 19659 19660 19661\n\t\tf 3 15666 15667 -15666\n\t\tmu 0 3 19662 19663 19664\n\t\tf 3 -15667 15668 15669\n\t\tmu 0 3 19665 19666 19667\n\t\tf 3 15670 15671 -15670\n\t\tmu 0 3 19668 19669 19670\n\t\tf 3 -15671 15672 15673\n\t\tmu 0 3 19671 19672 19673\n\t\tf 3 15674 15675 -15674\n\t\tmu 0 3 19674 19675 19676\n\t\tf 3 -15675 15676 15677\n\t\tmu 0 3 19677 19678 19679\n\t\tf 3 15678 15679 -15678\n\t\tmu 0 3 19680 19681 19682\n\t\tf 3 -15679 15680 15681\n\t\tmu 0 3 19683 19684 19685\n\t\tf 3 15682 15683 -15682\n\t\tmu 0 3 19686 19687 19688\n\t\tf 3 -15683 15684 15685\n\t\tmu 0 3 19689 19690 19691\n\t\tf 3 15686 15687 -15686\n\t\tmu 0 3 19692 19693 19694\n\t\tf 3 -15687 15688 15689\n\t\tmu 0 3 19695 19696 19697\n\t\tf 3 15690 15691 -15690\n\t\tmu 0 3 19698 19699 19700\n\t\tf 3 -15691 15692 15693\n\t\tmu 0 3 19701 19702 19703\n\t\tf 3 15694 15695 -15694\n\t\tmu 0 3 19704 19705 19706\n\t\tf 3 -15695 15696 15697\n\t\tmu 0 3 19707 19708 19709\n\t\tf 3 15698 15699 -15698\n\t\tmu 0 3 19710 19711 19712\n\t\tf 3 -15699 15700 15701\n\t\tmu 0 3 19713 19714 19715\n\t\tf 3 15702 15703 -15702\n\t\tmu 0 3 19716 19717 19718\n\t\tf 3 -15703 15704 15705\n\t\tmu 0 3 19719 19720 19721\n\t\tf 3 15706 15707 -15706\n\t\tmu 0 3 19722 19723 19724\n\t\tf 3 -15707 15708 15709\n\t\tmu 0 3 19725 19726 19727\n\t\tf 3 15710 15711 -15710\n\t\tmu 0 3 19728 19729 19730\n\t\tf 3 -15711 15712 15713\n\t\tmu 0 3 19731 19732 19733\n\t\tf 3 15714 15715 -15714\n\t\tmu 0 3 19734 19735 19736\n\t\tf 3 -15715 15716 15717\n\t\tmu 0 3 19737 19738 19739\n\t\tf 3 15718 15719 -15718\n\t\tmu 0 3 19740 19741 19742\n\t\tf 3 -15719 15720 15721\n\t\tmu 0 3 19743 19744 19745\n\t\tf 3 -15660 15722 -15722\n\t\tmu 0 3 19746 19747 19748\n\t\tf 3 15723 15724 15725\n\t\tmu 0 3 1715 372 4721\n\t\tf 3 15726 15727 -15726\n\t\tmu 0 3 4721 1851 1715\n\t\tf 3 15728 15729 15730\n\t\tmu 0 3 3188 6198 930\n\t\tf 3 15731 15732 -15731\n\t\tmu 0 3 930 3701 3188\n\t\tf 3 15733 -15730 15734\n\t\tmu 0 3 1084 930 6198\n\t\tf 3 15735 15736 -15735\n\t\tmu 0 3 6198 5751 1084\n\t\tf 3 15737 -15737 15738\n\t\tmu 0 3 3308 1084 5751\n\t\tf 3 15739 15740 -15739\n\t\tmu 0 3 5751 4017 3308\n\t\tf 3 15741 -15741 15742\n\t\tmu 0 3 2411 3308 4017\n\t\tf 3 15743 15744 -15743\n\t\tmu 0 3 4017 1142 2411\n\t\tf 3 15745 -15745 15746\n\t\tmu 0 3 4302 2411 1142\n\t\tf 3 15747 15748 -15747\n\t\tmu 0 3 1142 1356 4302\n\t\tf 3 -15749 15749 15750\n\t\tmu 0 3 4302 1356 3547\n\t\tf 3 15751 15752 -15751\n\t\tmu 0 3 3547 5880 4302\n\t\tf 3 15753 -15752 15754\n\t\tmu 0 3 4239 5880 3547\n\t\tf 3 15755 15756 -15755\n\t\tmu 0 3 3547 2937 4239\n\t\tf 3 15757 15758 15759\n\t\tmu 0 3 5493 2522 4481\n\t\tf 3 15760 15761 -15760\n\t\tmu 0 3 4481 5976 5493\n\t\tf 3 15762 -15762 15763\n\t\tmu 0 3 3281 5493 5976\n\t\tf 3 15764 15765 -15764\n\t\tmu 0 3 5976 2736 3281\n\t\tf 3 -15763 15766 15767\n\t\tmu 0 3 5493 3281 4449\n\t\tf 3 15768 15769 -15768\n\t\tmu 0 3 4449 4561 5493\n\t\tf 3 -15758 -15770 15770\n\t\tmu 0 3 2522 5493 4561\n\t\tf 3 15771 15772 -15771\n\t\tmu 0 3 4561 1794 2522\n\t\tf 3 15773 -15766 15774\n\t\tmu 0 3 69 3281 2736\n\t\tf 3 15775 15776 -15775\n\t\tmu 0 3 2736 2049 69\n\t\tf 3 15777 -15777 15778\n\t\tmu 0 3 2643 69 2049\n\t\tf 3 15779 15780 -15779\n\t\tmu 0 3 2049 3741 2643\n\t\tf 3 15781 -15778 15782\n\t\tmu 0 3 1108 69 2643\n\t\tf 3 15783 -15767 15784\n\t\tmu 0 3 1108 4449 3281\n\t\tf 3 -15774 -15782 -15785\n\t\tmu 0 3 3281 69 1108\n\t\tf 3 15785 15786 -15783\n\t\tmu 0 3 2643 4774 1108\n\t\tf 3 -15784 15787 15788\n\t\tmu 0 3 4449 1108 1492\n\t\tf 3 15789 15790 -15789\n\t\tmu 0 3 1492 210 4449\n\t\tf 3 -15769 -15791 15791\n\t\tmu 0 3 4561 4449 210\n\t\tf 3 15792 15793 -15792\n\t\tmu 0 3 210 2430 4561\n\t\tf 3 -15772 -15794 15794\n\t\tmu 0 3 1794 4561 2430\n\t\tf 3 15795 15796 -15795\n\t\tmu 0 3 2430 961 1794\n\t\tf 3 15797 -15788 15798\n\t\tmu 0 3 2435 1492 1108\n\t\tf 3 -15787 15799 -15799\n\t\tmu 0 3 1108 4774 2435\n\t\tf 3 15800 -15781 15801\n\t\tmu 0 3 4072 2643 3741\n\t\tf 3 -15786 -15801 15802\n\t\tmu 0 3 4774 2643 4072\n\t\tf 3 15803 15804 -15802\n\t\tmu 0 3 3741 3344 4072\n\t\tf 3 15805 -15805 15806\n\t\tmu 0 3 2662 4072 3344\n\t\tf 3 15807 15808 -15807\n\t\tmu 0 3 3344 5829 2662\n\t\tf 3 15809 -15809 15810\n\t\tmu 0 3 6303 2662 5829\n\t\tf 3 15811 15812 -15811\n\t\tmu 0 3 5829 3387 6303\n\t\tf 3 15813 -15813 15814\n\t\tmu 0 3 2733 6303 3387\n\t\tf 3 15815 15816 -15815\n\t\tmu 0 3 3387 6271 2733\n\t\tf 3 -15814 15817 15818\n\t\tmu 0 3 6303 2733 2665\n\t\tf 3 15819 15820 -15819\n\t\tmu 0 3 2665 3703 6303\n\t\tf 3 15821 -15816 15822\n\t\tmu 0 3 900 6271 3387\n\t\tf 3 15823 15824 -15823\n\t\tmu 0 3 3387 6532 900\n\t\tf 3 15825 -15822 15826\n\t\tmu 0 3 1556 6271 900\n\t\tf 3 -15817 -15826 15827\n\t\tmu 0 3 2733 6271 1556\n\t\tf 3 15828 15829 -15827\n\t\tmu 0 3 900 517 1556\n\t\tf 3 -15820 15830 15831\n\t\tmu 0 3 3703 2665 6469\n\t\tf 3 15832 15833 -15832\n\t\tmu 0 3 6469 119 3703\n\t\tf 3 15834 -15818 15835\n\t\tmu 0 3 4351 2665 2733\n\t\tf 3 15836 15837 -15836\n\t\tmu 0 3 2733 6534 4351\n\t\tf 3 15838 -15837 -15828\n\t\tmu 0 3 1556 6534 2733\n\t\tf 3 15839 -15831 15840\n\t\tmu 0 3 364 6469 2665\n\t\tf 3 -15835 15841 -15841\n\t\tmu 0 3 2665 4351 364\n\t\tf 3 15842 15843 -15821\n\t\tmu 0 3 3703 4032 6303\n\t\tf 3 15844 15845 -15844\n\t\tmu 0 3 4032 2626 6303\n\t\tf 3 -15834 15846 15847\n\t\tmu 0 3 3703 119 1069\n\t\tf 3 15848 -15843 -15848\n\t\tmu 0 3 1069 4032 3703\n\t\tf 3 -15845 -15849 15849\n\t\tmu 0 3 2626 4032 1069\n\t\tf 3 15850 15851 -15850\n\t\tmu 0 3 1069 5784 2626\n\t\tf 3 15852 -15852 15853\n\t\tmu 0 3 3063 2626 5784\n\t\tf 3 -15853 15854 15855\n\t\tmu 0 3 2626 3063 2662\n\t\tf 3 -15806 -15855 15856\n\t\tmu 0 3 4072 2662 3063\n\t\tf 3 15857 15858 -15857\n\t\tmu 0 3 3063 5755 4072\n\t\tf 3 -15858 15859 15860\n\t\tmu 0 3 5755 3063 4543\n\t\tf 3 15861 -15860 -15854\n\t\tmu 0 3 5784 4543 3063\n\t\tf 3 15862 15863 -15861\n\t\tmu 0 3 4543 595 5755\n\t\tf 3 -15810 -15846 -15856\n\t\tmu 0 3 2662 6303 2626\n\t\tf 3 -15859 15864 -15803\n\t\tmu 0 3 4072 5755 4774\n\t\tf 3 -15865 -15864 15865\n\t\tmu 0 3 4774 5755 595\n\t\tf 3 15866 -15800 -15866\n\t\tmu 0 3 595 2435 4774\n\t\tf 3 15867 15868 15869\n\t\tmu 0 3 3136 125 925\n\t\tf 3 15870 15871 -15870\n\t\tmu 0 3 925 3174 3136\n\t\tf 3 15872 -15872 15873\n\t\tmu 0 3 4661 3136 3174\n\t\tf 3 15874 15875 -15874\n\t\tmu 0 3 3174 5798 4661\n\t\tf 3 15876 -15869 15877\n\t\tmu 0 3 1807 925 125\n\t\tf 3 15878 15879 -15878\n\t\tmu 0 3 125 822 1807\n\t\tf 3 15880 -15880 15881\n\t\tmu 0 3 4435 1807 822\n\t\tf 3 15882 15883 -15882\n\t\tmu 0 3 822 3794 4435\n\t\tf 3 15884 -15884 15885\n\t\tmu 0 3 2755 4435 3794\n\t\tf 3 15886 15887 -15886\n\t\tmu 0 3 3794 2274 2755\n\t\tf 3 15888 -15888 15889\n\t\tmu 0 3 6172 2755 2274\n\t\tf 3 15890 15891 -15890\n\t\tmu 0 3 2274 4179 6172\n\t\tf 3 15892 -15892 15893\n\t\tmu 0 3 6406 6172 4179\n\t\tf 3 15894 15895 -15894\n\t\tmu 0 3 4179 2365 6406\n\t\tf 3 15896 -15896 15897\n\t\tmu 0 3 1176 6406 2365\n\t\tf 3 15898 15899 -15898\n\t\tmu 0 3 2365 2064 1176\n\t\tf 3 15900 -15900 15901\n\t\tmu 0 3 3534 1176 2064\n\t\tf 3 15902 15903 -15902\n\t\tmu 0 3 2064 1292 3534\n\t\tf 3 15904 15905 15906\n\t\tmu 0 3 4964 714 3652\n\t\tf 3 15907 15908 -15907\n\t\tmu 0 3 3652 365 4964\n\t\tf 3 15909 -15905 15910\n\t\tmu 0 3 5217 714 4964\n\t\tf 3 15911 15912 -15911\n\t\tmu 0 3 4964 3767 5217\n\t\tf 3 15913 -15913 15914\n\t\tmu 0 3 2544 5217 3767\n\t\tf 3 15915 15916 -15915\n\t\tmu 0 3 3767 1499 2544\n\t\tf 3 15917 -15917 15918\n\t\tmu 0 3 6445 2544 1499\n\t\tf 3 15919 15920 -15919\n\t\tmu 0 3 1499 2974 6445\n\t\tf 3 15921 -15921 15922\n\t\tmu 0 3 2839 6445 2974\n\t\tf 3 15923 15924 -15923\n\t\tmu 0 3 2974 4629 2839\n\t\tf 3 15925 -15925 15926\n\t\tmu 0 3 3991 2839 4629\n\t\tf 3 15927 -15908 15928\n\t\tmu 0 3 6312 365 3652\n\t\tf 3 15929 15930 -15929\n\t\tmu 0 3 3652 5888 6312\n\t\tf 3 15931 -15931 15932\n\t\tmu 0 3 596 6312 5888\n\t\tf 3 -15897 15933 -15933\n\t\tmu 0 3 5888 4551 596\n\t\tf 3 15934 -15934 15935\n\t\tmu 0 3 4318 596 4551\n\t\tf 3 -15901 15936 -15936\n\t\tmu 0 3 4551 2485 4318\n\t\tf 3 -15728 15937 15938\n\t\tmu 0 3 2282 6503 194\n\t\tf 3 15939 15940 -15939\n\t\tmu 0 3 194 2577 2282\n\t\tf 3 15941 -15940 15942\n\t\tmu 0 3 4902 2577 194\n\t\tf 3 15943 15944 -15943\n\t\tmu 0 3 194 4825 4902\n\t\tf 3 15945 15946 15947\n\t\tmu 0 3 3184 6007 5020\n\t\tf 3 15948 15949 -15948\n\t\tmu 0 3 5020 3138 3184\n\t\tf 3 15950 -15946 15951\n\t\tmu 0 3 891 6007 3184\n\t\tf 3 15952 15953 -15952\n\t\tmu 0 3 3184 5081 891\n\t\tf 3 15954 15955 15956\n\t\tmu 0 3 5988 1426 3496\n\t\tf 3 -15954 15957 -15957\n\t\tmu 0 3 3496 4630 5988\n\t\tf 3 15958 -15955 15959\n\t\tmu 0 3 984 4398 2553\n\t\tf 3 15960 15961 -15960\n\t\tmu 0 3 2553 2900 984\n\t\tf 3 -15962 15962 15963\n\t\tmu 0 3 984 2900 3597\n\t\tf 3 15964 15965 -15964\n\t\tmu 0 3 3597 638 984\n\t\tf 3 -15965 15966 15967\n\t\tmu 0 3 638 3597 6194\n\t\tf 3 15968 15969 -15968\n\t\tmu 0 3 6194 2557 638\n\t\tf 3 -15969 15970 15971\n\t\tmu 0 3 2557 6194 2286\n\t\tf 3 15972 15973 -15972\n\t\tmu 0 3 2286 6454 2557\n\t\tf 3 -15973 15974 15975\n\t\tmu 0 3 6454 2286 6488\n\t\tf 3 15976 15977 -15976\n\t\tmu 0 3 6488 792 6454\n\t\tf 3 15978 -15977 15979\n\t\tmu 0 3 5808 792 6488\n\t\tf 3 15980 15981 -15980\n\t\tmu 0 3 6488 1465 5808\n\t\tf 3 15982 -15982 15983\n\t\tmu 0 3 3313 5808 1465\n\t\tf 3 15984 15985 -15984\n\t\tmu 0 3 1465 1652 3313\n\t\tf 3 15986 15987 15988\n\t\tmu 0 3 6188 2605 4623\n\t\tf 3 15989 -15988 15990\n\t\tmu 0 3 5868 4623 2605\n\t\tf 3 -15991 15991 15992\n\t\tmu 0 3 5868 2605 1397\n\t\tf 3 -15993 15993 15994\n\t\tmu 0 3 5868 1397 4319\n\t\tf 3 15995 -15995 15996\n\t\tmu 0 3 4353 5868 4319\n\t\tf 3 15997 15998 -15997\n\t\tmu 0 3 4319 5122 4353\n\t\tf 3 -15999 15999 16000\n\t\tmu 0 3 4353 5122 6250\n\t\tf 3 16001 16002 -16001\n\t\tmu 0 3 6250 894 4353\n\t\tf 3 -16002 16003 16004\n\t\tmu 0 3 894 6250 3522\n\t\tf 3 -15904 16005 16006\n\t\tmu 0 3 3534 1292 4925\n\t\tf 3 16007 16008 16009\n\t\tmu 0 3 19749 2388 19750\n\t\tf 3 16010 -16008 16011\n\t\tmu 0 3 4890 2388 19751\n\t\tf 3 16012 16013 -16012\n\t\tmu 0 3 19752 3647 4890\n\t\tf 3 16014 16015 16016\n\t\tmu 0 3 5084 1466 2172\n\t\tf 3 16017 16018 -16017\n\t\tmu 0 3 2172 5116 5084\n\t\tf 3 16019 16020 16021\n\t\tmu 0 3 19753 19754 1474\n\t\tf 3 16022 16023 -16022\n\t\tmu 0 3 1474 6139 19755\n\t\tf 3 16024 16025 16026\n\t\tmu 0 3 19756 19757 3243\n\t\tf 3 16027 16028 -16027\n\t\tmu 0 3 3243 1498 19758\n\t\tf 3 16029 16030 16031\n\t\tmu 0 3 2588 2877 4325\n\t\tf 3 16032 16033 -16032\n\t\tmu 0 3 4325 3370 2588\n\t\tf 3 16034 16035 16036\n\t\tmu 0 3 1595 2460 5506\n\t\tf 3 16037 16038 -16037\n\t\tmu 0 3 5506 2198 1595\n\t\tf 3 16039 16040 16041\n\t\tmu 0 3 928 1599 213\n\t\tf 3 16042 16043 -16042\n\t\tmu 0 3 213 426 928\n\t\tf 3 -16041 16044 16045\n\t\tmu 0 3 213 1599 3994\n\t\tf 3 -16028 16046 -16046\n\t\tmu 0 3 3994 3971 213\n\t\tf 3 16047 16048 16049\n\t\tmu 0 3 4015 19759 213\n\t\tf 3 -16047 16050 -16050\n\t\tmu 0 3 213 3971 4015\n\t\tf 3 16051 16052 16053\n\t\tmu 0 3 3768 3890 4352\n\t\tf 3 16054 16055 -16054\n\t\tmu 0 3 4352 4266 3768\n\t\tf 3 16056 -16052 16057\n\t\tmu 0 3 3095 3890 3768\n\t\tf 3 16058 -16018 -16058\n\t\tmu 0 3 3768 5680 3095\n\t\tf 3 -16059 -16056 16059\n\t\tmu 0 3 5680 3768 4266\n\t\tf 3 16060 -16034 -16060\n\t\tmu 0 3 4266 4145 5680\n\t\tf 3 16061 16062 16063\n\t\tmu 0 3 19760 19761 19762\n\t\tf 3 16064 16065 -16064\n\t\tmu 0 3 19763 19764 19765\n\t\tf 3 16066 16067 16068\n\t\tmu 0 3 4387 4600 4130\n\t\tf 3 16069 16070 -16069\n\t\tmu 0 3 4130 329 4387\n\t\tf 3 16071 -16067 16072\n\t\tmu 0 3 3087 4600 4387\n\t\tf 3 16073 16074 -16073\n\t\tmu 0 3 4387 5672 3087\n\t\tf 3 16075 16076 16077\n\t\tmu 0 3 6008 19766 19767\n\t\tf 3 16078 16079 -16078\n\t\tmu 0 3 19768 1066 6008\n\t\tf 3 16080 -16070 16081\n\t\tmu 0 3 695 329 4130\n\t\tf 3 16082 16083 -16082\n\t\tmu 0 3 4130 1406 695\n\t\tf 3 16084 -16080 16085\n\t\tmu 0 3 4810 6008 1066\n\t\tf 3 16086 16087 -16086\n\t\tmu 0 3 1066 1043 4810\n\t\tf 3 16088 16089 16090\n\t\tmu 0 3 19769 19770 6362\n\t\tf 3 16091 16092 -16091\n\t\tmu 0 3 6362 2706 19771\n\t\tf 3 -16092 16093 16094\n\t\tmu 0 3 2706 6362 3331\n\t\tf 3 16095 16096 -16095\n\t\tmu 0 3 3331 1780 2706\n\t\tf 3 16097 16098 16099\n\t\tmu 0 3 5201 4045 6541\n\t\tf 3 16100 16101 -16100\n\t\tmu 0 3 6541 1647 5201\n\t\tf 3 16102 -16099 16103\n\t\tmu 0 3 2975 6541 4045\n\t\tf 3 16104 16105 -16104\n\t\tmu 0 3 4045 4970 2975\n\t\tf 3 16106 -16106 16107\n\t\tmu 0 3 3403 2975 4970\n\t\tf 3 16108 16109 -16108\n\t\tmu 0 3 4970 3231 3403\n\t\tf 3 16110 -16110 16111\n\t\tmu 0 3 1128 3403 3231\n\t\tf 3 16112 16113 -16112\n\t\tmu 0 3 3231 6298 1128\n\t\tf 3 16114 -16114 16115\n\t\tmu 0 3 1024 1128 6298\n\t\tf 3 16116 16117 -16116\n\t\tmu 0 3 6298 6517 1024\n\t\tf 3 -16102 16118 16119\n\t\tmu 0 3 5201 1647 2806\n\t\tf 3 16120 16121 -16120\n\t\tmu 0 3 2806 1023 5201\n\t\tf 3 16122 -16121 16123\n\t\tmu 0 3 2077 1023 2806\n\t\tf 3 16124 16125 -16124\n\t\tmu 0 3 2806 1139 2077\n\t\tf 3 16126 -16126 16127\n\t\tmu 0 3 5712 2077 1139\n\t\tf 3 16128 16129 -16128\n\t\tmu 0 3 1139 940 5712\n\t\tf 3 16130 -16130 16131\n\t\tmu 0 3 3019 5712 940\n\t\tf 3 16132 16133 -16132\n\t\tmu 0 3 940 4096 3019\n\t\tf 3 16134 -16118 16135\n\t\tmu 0 3 4096 1024 6517\n\t\tf 3 16136 -16134 -16136\n\t\tmu 0 3 6517 3019 4096\n\t\tf 3 16137 -16084 16138\n\t\tmu 0 3 3365 695 1406\n\t\tf 3 16139 16140 -16139\n\t\tmu 0 3 1406 644 3365\n\t\tf 3 16141 16142 16143\n\t\tmu 0 3 17 4246 4387\n\t\tf 3 -16071 16144 -16144\n\t\tmu 0 3 4387 329 17\n\t\tf 3 16145 16146 16147\n\t\tmu 0 3 1043 468 1871\n\t\tf 3 16148 -16088 -16148\n\t\tmu 0 3 1871 4810 1043\n\t\tf 3 16149 16150 16151\n\t\tmu 0 3 5202 4758 1066\n\t\tf 3 -16079 16152 -16152\n\t\tmu 0 3 1066 19772 5202\n\t\tf 3 -16087 -16151 16153\n\t\tmu 0 3 1043 1066 4758\n\t\tf 3 16154 16155 -16154\n\t\tmu 0 3 4758 2888 1043\n\t\tf 3 16156 16157 16158\n\t\tmu 0 3 19773 4827 2461\n\t\tf 3 16159 16160 -16159\n\t\tmu 0 3 2461 19774 19775\n\t\tf 3 16161 -16158 16162\n\t\tmu 0 3 2990 2461 4827\n\t\tf 3 16163 16164 -16163\n\t\tmu 0 3 4827 4945 2990\n\t\tf 3 -16138 16165 16166\n\t\tmu 0 3 695 3365 2115\n\t\tf 3 16167 16168 -16167\n\t\tmu 0 3 2115 850 695\n\t\tf 3 -16156 16169 16170\n\t\tmu 0 3 1043 486 2807\n\t\tf 3 16171 -16146 -16171\n\t\tmu 0 3 2807 468 1043\n\t\tf 3 -16143 16172 16173\n\t\tmu 0 3 4387 3942 4410\n\t\tf 3 16174 -16074 -16174\n\t\tmu 0 3 4410 5672 4387\n\t\tf 3 16175 -16168 16176\n\t\tmu 0 3 3350 5858 3713\n\t\tf 3 16177 16178 -16177\n\t\tmu 0 3 3713 6253 3350\n\t\tf 3 16179 -16170 16180\n\t\tmu 0 3 5495 4624 2681\n\t\tf 3 16181 16182 -16181\n\t\tmu 0 3 2681 2070 5495\n\t\tf 3 16183 16184 16185\n\t\tmu 0 3 3169 3930 6046\n\t\tf 3 -16142 16186 -16186\n\t\tmu 0 3 6046 366 3169\n\t\tf 3 -16185 16187 16188\n\t\tmu 0 3 6046 3930 4328\n\t\tf 3 16189 -16173 -16189\n\t\tmu 0 3 4328 4731 6046\n\t\tf 3 -16150 -16190 16190\n\t\tmu 0 3 959 4731 4328\n\t\tf 3 16191 16192 -16191\n\t\tmu 0 3 4328 3871 959\n\t\tf 3 16193 16194 16195\n\t\tmu 0 3 19776 19777 5858\n\t\tf 3 16196 16197 -16196\n\t\tmu 0 3 5858 19778 19779\n\t\tf 3 16198 16199 16200\n\t\tmu 0 3 959 19780 19781\n\t\tf 3 16201 -16155 -16201\n\t\tmu 0 3 19782 2681 959\n\t\tf 3 -16195 16202 16203\n\t\tmu 0 3 1198 3182 329\n\t\tf 3 -16081 -16169 -16204\n\t\tmu 0 3 329 695 1198\n\t\tf 3 16204 -16090 16205\n\t\tmu 0 3 19783 801 2811\n\t\tf 3 -16048 16206 -16206\n\t\tmu 0 3 2811 19784 19785\n\t\tf 3 -16205 16207 16208\n\t\tmu 0 3 801 19786 981\n\t\tf 3 16209 -16094 -16209\n\t\tmu 0 3 981 5266 801\n\t\tf 3 -16061 16210 16211\n\t\tmu 0 3 19787 4720 6347\n\t\tf 3 16212 16213 -16212\n\t\tmu 0 3 6347 19788 19789\n\t\tf 3 -16213 16214 16215\n\t\tmu 0 3 19790 6347 3925\n\t\tf 3 16216 16217 -16216\n\t\tmu 0 3 3925 3605 19791\n\t\tf 3 16218 -16096 16219\n\t\tmu 0 3 19792 823 1716\n\t\tf 3 -16210 16220 -16220\n\t\tmu 0 3 1716 19793 19794\n\t\tf 3 16221 -16217 16222\n\t\tmu 0 3 19795 19796 5815\n\t\tf 3 -16165 16223 -16223\n\t\tmu 0 3 5815 2191 19797\n\t\tf 3 16224 16225 16226\n\t\tmu 0 3 19798 19799 19800\n\t\tf 3 16227 16228 -16227\n\t\tmu 0 3 19801 19802 19803\n\t\tf 3 16229 16230 16231\n\t\tmu 0 3 19804 19805 19806\n\t\tf 3 16232 16233 -16232\n\t\tmu 0 3 19807 19808 19809\n\t\tf 3 -16230 16234 16235\n\t\tmu 0 3 19810 19811 19812\n\t\tf 3 16236 16237 -16236\n\t\tmu 0 3 19813 19814 19815\n\t\tf 3 -16237 16238 16239\n\t\tmu 0 3 19816 19817 19818\n\t\tf 3 16240 16241 -16240\n\t\tmu 0 3 19819 19820 19821\n\t\tf 3 -16241 16242 16243\n\t\tmu 0 3 19822 19823 19824\n\t\tf 3 16244 16245 -16244\n\t\tmu 0 3 19825 19826 19827\n\t\tf 3 -16245 16246 16247\n\t\tmu 0 3 19828 19829 19830\n\t\tf 3 16248 16249 -16248\n\t\tmu 0 3 19831 19832 19833\n\t\tf 3 16250 -16249 16251\n\t\tmu 0 3 19834 19835 19836\n\t\tf 3 16252 16253 -16252\n\t\tmu 0 3 19837 19838 19839\n\t\tf 3 16254 -16254 16255\n\t\tmu 0 3 19840 19841 19842\n\t\tf 3 16256 16257 -16256\n\t\tmu 0 3 19843 19844 19845\n\t\tf 3 16258 16259 16260\n\t\tmu 0 3 19846 19847 19848\n\t\tf 3 16261 16262 -16261\n\t\tmu 0 3 19849 19850 19851\n\t\tf 3 -16259 16263 16264\n\t\tmu 0 3 19852 19853 19854\n\t\tf 3 16265 16266 -16265\n\t\tmu 0 3 19855 19856 19857\n\t\tf 3 16267 -16264 16268\n\t\tmu 0 3 19858 19859 19860\n\t\tf 3 16269 16270 -16269\n\t\tmu 0 3 19861 19862 19863\n\t\tf 3 -16270 -16263 16271\n\t\tmu 0 3 19864 19865 19866\n\t\tf 3 16272 16273 -16272\n\t\tmu 0 3 19867 19868 19869\n\t\tf 3 -16266 16274 16275\n\t\tmu 0 3 19870 19871 19872\n\t\tf 3 16276 16277 -16276\n\t\tmu 0 3 19873 19874 19875\n\t\tf 3 -16277 16278 16279\n\t\tmu 0 3 19876 19877 19878\n\t\tf 3 16280 16281 -16280\n\t\tmu 0 3 19879 19880 19881\n\t\tf 3 -16279 16282 16283\n\t\tmu 0 3 19882 19883 19884\n\t\tf 3 -16283 -16275 16284\n\t\tmu 0 3 19885 19886 19887\n\t\tf 3 -16268 16285 -16285\n\t\tmu 0 3 19888 19889 19890\n\t\tf 3 16286 16287 -16284\n\t\tmu 0 3 19891 19892 19893\n\t\tf 3 16288 -16286 16289\n\t\tmu 0 3 19894 19895 19896\n\t\tf 3 16290 16291 -16290\n\t\tmu 0 3 19897 19898 19899\n\t\tf 3 -16291 -16271 16292\n\t\tmu 0 3 19900 19901 19902\n\t\tf 3 16293 16294 -16293\n\t\tmu 0 3 19903 19904 19905\n\t\tf 3 16295 -16294 16296\n\t\tmu 0 3 19906 19907 19908\n\t\tf 3 -16274 16297 -16297\n\t\tmu 0 3 19909 19910 19911\n\t\tf 3 16298 -16287 16299\n\t\tmu 0 3 19912 19913 19914\n\t\tf 3 -16289 16300 -16300\n\t\tmu 0 3 19915 19916 19917\n\t\tf 3 -16281 16301 16302\n\t\tmu 0 3 19918 19919 19920\n\t\tf 3 -16302 -16288 16303\n\t\tmu 0 3 19921 19922 19923\n\t\tf 3 16304 16305 -16303\n\t\tmu 0 3 19924 19925 19926\n\t\tf 3 -16305 16306 16307\n\t\tmu 0 3 19927 19928 19929\n\t\tf 3 16308 16309 -16308\n\t\tmu 0 3 19930 19931 19932\n\t\tf 3 -16309 16310 16311\n\t\tmu 0 3 19933 19934 19935\n\t\tf 3 16312 16313 -16312\n\t\tmu 0 3 19936 19937 19938\n\t\tf 3 -16313 16314 16315\n\t\tmu 0 3 19939 19940 19941\n\t\tf 3 16316 16317 -16316\n\t\tmu 0 3 19942 19943 19944\n\t\tf 3 16318 -16315 16319\n\t\tmu 0 3 19945 19946 19947\n\t\tf 3 16320 16321 -16320\n\t\tmu 0 3 19948 19949 19950\n\t\tf 3 -16318 16322 16323\n\t\tmu 0 3 19951 19952 19953\n\t\tf 3 16324 16325 -16324\n\t\tmu 0 3 19954 19955 19956\n\t\tf 3 -16323 16326 16327\n\t\tmu 0 3 19957 19958 19959\n\t\tf 3 -16327 -16317 16328\n\t\tmu 0 3 19960 19961 19962\n\t\tf 3 16329 16330 -16328\n\t\tmu 0 3 19963 19964 19965\n\t\tf 3 16331 -16322 16332\n\t\tmu 0 3 19966 19967 19968\n\t\tf 3 16333 16334 -16333\n\t\tmu 0 3 19969 19970 19971\n\t\tf 3 -16319 16335 16336\n\t\tmu 0 3 19972 19973 19974\n\t\tf 3 16337 16338 -16337\n\t\tmu 0 3 19975 19976 19977\n\t\tf 3 -16339 16339 -16329\n\t\tmu 0 3 19978 19979 19980\n\t\tf 3 16340 -16336 16341\n\t\tmu 0 3 19981 19982 19983\n\t\tf 3 -16332 16342 -16342\n\t\tmu 0 3 19984 19985 19986\n\t\tf 3 -16321 16343 16344\n\t\tmu 0 3 19987 19988 19989;\n\tsetAttr \".fc[8500:8999]\"\n\t\tf 3 -16344 16345 16346\n\t\tmu 0 3 19990 19991 19992\n\t\tf 3 -16346 -16311 16347\n\t\tmu 0 3 19993 19994 19995\n\t\tf 3 16348 16349 -16348\n\t\tmu 0 3 19996 19997 19998\n\t\tf 3 -16349 -16307 16350\n\t\tmu 0 3 19999 20000 20001\n\t\tf 3 16351 16352 -16351\n\t\tmu 0 3 20002 20003 20004\n\t\tf 3 16353 -16353 16354\n\t\tmu 0 3 20005 20006 20007\n\t\tf 3 16355 16356 -16355\n\t\tmu 0 3 20008 20009 20010\n\t\tf 3 16357 -16352 -16304\n\t\tmu 0 3 20011 20012 20013\n\t\tf 3 -16356 -16358 16358\n\t\tmu 0 3 20014 20015 20016\n\t\tf 3 -16299 16359 -16359\n\t\tmu 0 3 20017 20018 20019\n\t\tf 3 -16354 16360 16361\n\t\tmu 0 3 20020 20021 20022\n\t\tf 3 16362 -16350 -16362\n\t\tmu 0 3 20023 20024 20025\n\t\tf 3 -16363 16363 16364\n\t\tmu 0 3 20026 20027 20028\n\t\tf 3 16365 -16347 -16365\n\t\tmu 0 3 20029 20030 20031\n\t\tf 3 -16345 -16366 16366\n\t\tmu 0 3 20032 20033 20034\n\t\tf 3 16367 -16334 -16367\n\t\tmu 0 3 20035 20036 20037\n\t\tf 3 16368 16369 16370\n\t\tmu 0 3 20038 20039 20040\n\t\tf 3 16371 16372 -16371\n\t\tmu 0 3 20041 20042 20043\n\t\tf 3 -16369 16373 16374\n\t\tmu 0 3 20044 20045 20046\n\t\tf 3 16375 16376 -16375\n\t\tmu 0 3 20047 20048 20049\n\t\tf 3 -16372 16377 16378\n\t\tmu 0 3 20050 20051 20052\n\t\tf 3 16379 16380 -16379\n\t\tmu 0 3 20053 20054 20055\n\t\tf 3 -16380 16381 16382\n\t\tmu 0 3 20056 20057 20058\n\t\tf 3 16383 16384 -16383\n\t\tmu 0 3 20059 20060 20061\n\t\tf 3 -16384 16385 16386\n\t\tmu 0 3 20062 20063 20064\n\t\tf 3 16387 16388 -16387\n\t\tmu 0 3 20065 20066 20067\n\t\tf 3 -16388 16389 16390\n\t\tmu 0 3 20068 20069 20070\n\t\tf 3 16391 16392 -16391\n\t\tmu 0 3 20071 20072 20073\n\t\tf 3 -16392 16393 16394\n\t\tmu 0 3 20074 20075 20076\n\t\tf 3 16395 16396 -16395\n\t\tmu 0 3 20077 20078 20079\n\t\tf 3 -16396 16397 16398\n\t\tmu 0 3 20080 20081 20082\n\t\tf 3 16399 16400 -16399\n\t\tmu 0 3 20083 20084 20085\n\t\tf 3 -16400 16401 16402\n\t\tmu 0 3 20086 20087 20088\n\t\tf 3 16403 16404 -16403\n\t\tmu 0 3 20089 20090 20091\n\t\tf 3 16405 -16390 16406\n\t\tmu 0 3 20092 20093 20094\n\t\tf 3 16407 16408 -16407\n\t\tmu 0 3 20095 20096 20097\n\t\tf 3 -16408 16409 16410\n\t\tmu 0 3 20098 20099 20100\n\t\tf 3 16411 16412 -16411\n\t\tmu 0 3 20101 20102 20103\n\t\tf 3 -16412 16413 16414\n\t\tmu 0 3 20104 20105 20106\n\t\tf 3 16415 16416 -16415\n\t\tmu 0 3 20107 20108 20109\n\t\tf 3 -16416 16417 16418\n\t\tmu 0 3 20110 20111 20112\n\t\tf 3 16419 16420 -16419\n\t\tmu 0 3 20113 20114 20115\n\t\tf 3 -16420 16421 16422\n\t\tmu 0 3 20116 20117 20118\n\t\tf 3 16423 16424 -16423\n\t\tmu 0 3 20119 20120 20121\n\t\tf 3 16425 -16424 16426\n\t\tmu 0 3 20122 20123 20124\n\t\tf 3 -16406 16427 16428\n\t\tmu 0 3 20125 20126 20127\n\t\tf 3 16429 -16394 -16429\n\t\tmu 0 3 20128 20129 20130\n\t\tf 3 -16430 16430 16431\n\t\tmu 0 3 20131 20132 20133\n\t\tf 3 16432 -16398 -16432\n\t\tmu 0 3 20134 20135 20136\n\t\tf 3 -16433 16433 16434\n\t\tmu 0 3 20137 20138 20139\n\t\tf 3 16435 -16402 -16435\n\t\tmu 0 3 20140 20141 20142\n\t\tf 3 16436 16437 16438\n\t\tmu 0 3 20143 20144 20145\n\t\tf 3 16439 -16228 -16439\n\t\tmu 0 3 20146 20147 20148\n\t\tf 3 -16438 16440 16441\n\t\tmu 0 3 20149 20150 20151\n\t\tf 3 16442 16443 -16442\n\t\tmu 0 3 20152 20153 20154\n\t\tf 3 16444 16445 16446\n\t\tmu 0 3 20155 20156 20157\n\t\tf 3 16447 16448 -16447\n\t\tmu 0 3 20158 20159 20160\n\t\tf 3 -16448 16449 16450\n\t\tmu 0 3 20161 20162 20163\n\t\tf 3 16451 16452 -16451\n\t\tmu 0 3 20164 20165 20166\n\t\tf 3 16453 16454 16455\n\t\tmu 0 3 20167 20168 20169\n\t\tf 3 16456 -16452 -16456\n\t\tmu 0 3 20170 20171 20172\n\t\tf 3 16457 16458 16459\n\t\tmu 0 3 20173 20174 20175\n\t\tf 3 -16455 16460 -16460\n\t\tmu 0 3 20176 20177 20178\n\t\tf 3 -16458 16461 16462\n\t\tmu 0 3 20179 20180 20181\n\t\tf 3 16463 16464 -16463\n\t\tmu 0 3 20182 20183 20184\n\t\tf 3 -16464 16465 16466\n\t\tmu 0 3 20185 20186 20187\n\t\tf 3 16467 16468 -16467\n\t\tmu 0 3 20188 20189 20190\n\t\tf 3 -16468 16469 16470\n\t\tmu 0 3 20191 20192 20193\n\t\tf 3 16471 16472 -16471\n\t\tmu 0 3 20194 20195 20196\n\t\tf 3 -16472 16473 16474\n\t\tmu 0 3 20197 20198 20199\n\t\tf 3 16475 16476 -16475\n\t\tmu 0 3 20200 20201 20202\n\t\tf 3 -16476 16477 16478\n\t\tmu 0 3 20203 20204 20205\n\t\tf 3 16479 16480 -16479\n\t\tmu 0 3 20206 20207 20208\n\t\tf 3 -16480 16481 16482\n\t\tmu 0 3 20209 20210 20211\n\t\tf 3 16483 16484 -16483\n\t\tmu 0 3 20212 20213 20214\n\t\tf 3 16485 16486 16487\n\t\tmu 0 3 20215 20216 20217\n\t\tf 3 16488 -16486 16489\n\t\tmu 0 3 20218 20219 20220\n\t\tf 3 16490 16491 -16489\n\t\tmu 0 3 20221 20222 20223\n\t\tf 3 16492 16493 -16492\n\t\tmu 0 3 20224 20225 20226\n\t\tf 3 -16491 16494 16495\n\t\tmu 0 3 20227 20228 20229\n\t\tf 3 16496 16497 -16496\n\t\tmu 0 3 20230 20231 20232\n\t\tf 3 16498 -16497 16499\n\t\tmu 0 3 20233 20234 20235\n\t\tf 3 16500 16501 -16500\n\t\tmu 0 3 20236 20237 20238\n\t\tf 3 16502 -16502 16503\n\t\tmu 0 3 20239 20240 20241\n\t\tf 3 16504 16505 16506\n\t\tmu 0 3 20242 20243 20244\n\t\tf 3 -16404 16507 16508\n\t\tmu 0 3 20245 20246 20247\n\t\tf 3 -16505 16509 16510\n\t\tmu 0 3 20248 20249 20250\n\t\tf 3 16511 16512 -16511\n\t\tmu 0 3 20251 20252 20253\n\t\tf 3 16513 16514 16515\n\t\tmu 0 3 20254 20255 20256\n\t\tf 3 16516 16517 -16516\n\t\tmu 0 3 20257 20258 20259\n\t\tf 3 16518 16519 16520\n\t\tmu 0 3 20260 20261 20262\n\t\tf 3 16521 16522 -16521\n\t\tmu 0 3 20263 20264 20265\n\t\tf 3 16523 16524 16525\n\t\tmu 0 3 20266 20267 20268\n\t\tf 3 16526 16527 -16526\n\t\tmu 0 3 20269 20270 20271\n\t\tf 3 16528 16529 16530\n\t\tmu 0 3 20272 20273 20274\n\t\tf 3 16531 16532 -16531\n\t\tmu 0 3 20275 20276 20277\n\t\tf 3 16533 16534 16535\n\t\tmu 0 3 20278 20279 20280\n\t\tf 3 16536 16537 -16536\n\t\tmu 0 3 20281 20282 20283\n\t\tf 3 16538 16539 16540\n\t\tmu 0 3 20284 20285 20286\n\t\tf 3 16541 16542 -16541\n\t\tmu 0 3 20287 20288 20289\n\t\tf 3 -16542 16543 16544\n\t\tmu 0 3 20290 20291 20292\n\t\tf 3 -16527 16545 -16545\n\t\tmu 0 3 20293 20294 20295\n\t\tf 3 16546 -16544 16547\n\t\tmu 0 3 20296 20297 20298\n\t\tf 3 16548 16549 -16548\n\t\tmu 0 3 20299 20300 20301\n\t\tf 3 16550 16551 16552\n\t\tmu 0 3 20302 20303 20304\n\t\tf 3 16553 16554 -16553\n\t\tmu 0 3 20305 20306 20307\n\t\tf 3 -16552 16555 16556\n\t\tmu 0 3 20308 20309 20310\n\t\tf 3 -16514 16557 -16557\n\t\tmu 0 3 20311 20312 20313\n\t\tf 3 -16554 -16558 16558\n\t\tmu 0 3 20314 20315 20316\n\t\tf 3 -16529 16559 -16559\n\t\tmu 0 3 20317 20318 20319\n\t\tf 3 16560 16561 16562\n\t\tmu 0 3 20320 20321 20322\n\t\tf 3 16563 16564 -16563\n\t\tmu 0 3 20323 20324 20325\n\t\tf 3 16565 16566 16567\n\t\tmu 0 3 20326 20327 20328\n\t\tf 3 16568 16569 -16568\n\t\tmu 0 3 20329 20330 20331\n\t\tf 3 -16570 16570 16571\n\t\tmu 0 3 20332 20333 20334\n\t\tf 3 16572 16573 -16572\n\t\tmu 0 3 20335 20336 20337\n\t\tf 3 16574 16575 16576\n\t\tmu 0 3 20338 20339 20340\n\t\tf 3 16577 16578 -16577\n\t\tmu 0 3 20341 20342 20343\n\t\tf 3 -16567 16579 16580\n\t\tmu 0 3 20344 20345 20346\n\t\tf 3 16581 16582 -16581\n\t\tmu 0 3 20347 20348 20349\n\t\tf 3 -16578 16583 16584\n\t\tmu 0 3 20350 20351 20352\n\t\tf 3 16585 16586 -16585\n\t\tmu 0 3 20353 20354 20355\n\t\tf 3 16587 16588 16589\n\t\tmu 0 3 20356 20357 20358\n\t\tf 3 16590 16591 -16590\n\t\tmu 0 3 20359 20360 20361\n\t\tf 3 16592 -16589 16593\n\t\tmu 0 3 20362 20363 20364\n\t\tf 3 16594 16595 -16594\n\t\tmu 0 3 20365 20366 20367\n\t\tf 3 16596 16597 16598\n\t\tmu 0 3 20368 20369 20370\n\t\tf 3 16599 16600 -16599\n\t\tmu 0 3 20371 20372 20373\n\t\tf 3 -16600 16601 16602\n\t\tmu 0 3 20374 20375 20376\n\t\tf 3 16603 16604 -16603\n\t\tmu 0 3 20377 20378 20379\n\t\tf 3 -16604 16605 16606\n\t\tmu 0 3 20380 20381 20382\n\t\tf 3 16607 16608 -16607\n\t\tmu 0 3 20383 20384 20385\n\t\tf 3 -16608 16609 16610\n\t\tmu 0 3 20386 20387 20388\n\t\tf 3 16611 16612 -16611\n\t\tmu 0 3 20389 20390 20391\n\t\tf 3 -16612 16613 16614\n\t\tmu 0 3 20392 20393 20394\n\t\tf 3 16615 16616 -16615\n\t\tmu 0 3 20395 20396 20397\n\t\tf 3 -16597 16617 16618\n\t\tmu 0 3 20398 20399 20400\n\t\tf 3 16619 16620 -16619\n\t\tmu 0 3 20401 20402 20403\n\t\tf 3 -16620 16621 16622\n\t\tmu 0 3 20404 20405 20406\n\t\tf 3 16623 16624 -16623\n\t\tmu 0 3 20407 20408 20409\n\t\tf 3 -16624 16625 16626\n\t\tmu 0 3 20410 20411 20412\n\t\tf 3 16627 16628 -16627\n\t\tmu 0 3 20413 20414 20415\n\t\tf 3 -16628 16629 16630\n\t\tmu 0 3 20416 20417 20418\n\t\tf 3 16631 16632 -16631\n\t\tmu 0 3 20419 20420 20421\n\t\tf 3 -16632 16633 16634\n\t\tmu 0 3 20422 20423 20424\n\t\tf 3 -16616 16635 -16635\n\t\tmu 0 3 20425 20426 20427\n\t\tf 3 16636 16637 16638\n\t\tmu 0 3 20428 20429 20430\n\t\tf 3 -16582 16639 -16639\n\t\tmu 0 3 20431 20432 20433\n\t\tf 3 16640 16641 16642\n\t\tmu 0 3 20434 20435 20436\n\t\tf 3 16643 -16566 -16643\n\t\tmu 0 3 20437 20438 20439\n\t\tf 3 -16586 16644 16645\n\t\tmu 0 3 20440 20441 20442\n\t\tf 3 16646 16647 -16646\n\t\tmu 0 3 20443 20444 20445\n\t\tf 3 16648 16649 16650\n\t\tmu 0 3 20446 20447 20448\n\t\tf 3 16651 -16579 -16651\n\t\tmu 0 3 20449 20450 20451\n\t\tf 3 16652 16653 16654\n\t\tmu 0 3 20452 20453 20454\n\t\tf 3 -16649 -16587 -16655\n\t\tmu 0 3 20455 20456 20457\n\t\tf 3 16655 16656 16657\n\t\tmu 0 3 20458 20459 20460\n\t\tf 3 16658 16659 -16658\n\t\tmu 0 3 20461 20462 20463\n\t\tf 3 -16659 16660 16661\n\t\tmu 0 3 20464 20465 20466\n\t\tf 3 16662 16663 -16662\n\t\tmu 0 3 20467 20468 20469\n\t\tf 3 16664 16665 16666\n\t\tmu 0 3 20470 20471 20472\n\t\tf 3 16667 -16640 -16667\n\t\tmu 0 3 20473 20474 20475\n\t\tf 3 16668 -16653 16669\n\t\tmu 0 3 20476 20477 20478\n\t\tf 3 -16648 16670 -16670\n\t\tmu 0 3 20479 20480 20481\n\t\tf 3 16671 -16641 16672\n\t\tmu 0 3 20482 20483 20484\n\t\tf 3 -16574 16673 -16673\n\t\tmu 0 3 20485 20486 20487\n\t\tf 3 16674 16675 16676\n\t\tmu 0 3 20488 20489 20490\n\t\tf 3 -16666 16677 -16677\n\t\tmu 0 3 20491 20492 20493\n\t\tf 3 16678 16679 16680\n\t\tmu 0 3 20494 20495 20496\n\t\tf 3 -16669 16681 -16681\n\t\tmu 0 3 20497 20498 20499\n\t\tf 3 16682 -16642 16683\n\t\tmu 0 3 20500 20501 20502\n\t\tf 3 16684 16685 -16684\n\t\tmu 0 3 20503 20504 20505\n\t\tf 3 -16685 -16672 16686\n\t\tmu 0 3 20506 20507 20508\n\t\tf 3 16687 16688 -16687\n\t\tmu 0 3 20509 20510 20511\n\t\tf 3 -16688 -16650 16689\n\t\tmu 0 3 20512 20513 20514\n\t\tf 3 16690 16691 -16690\n\t\tmu 0 3 20515 20516 20517\n\t\tf 3 16692 16693 16694\n\t\tmu 0 3 20518 20519 20520\n\t\tf 3 16695 16696 -16695\n\t\tmu 0 3 20521 20522 20523\n\t\tf 3 16697 -16654 16698\n\t\tmu 0 3 20524 20525 20526\n\t\tf 3 16699 16700 -16699\n\t\tmu 0 3 20527 20528 20529\n\t\tf 3 16701 -16697 16702\n\t\tmu 0 3 20530 20531 20532\n\t\tf 3 -16665 -16580 -16703\n\t\tmu 0 3 20533 20534 20535\n\t\tf 3 -16591 16703 16704\n\t\tmu 0 3 20536 20537 20538\n\t\tf 3 16705 -16550 -16705\n\t\tmu 0 3 20539 20540 20541\n\t\tf 3 16706 16707 16708\n\t\tmu 0 3 20542 20543 20544\n\t\tf 3 16709 -16560 -16709\n\t\tmu 0 3 20545 20546 20547\n\t\tf 3 -16593 16710 16711\n\t\tmu 0 3 20548 20549 20550\n\t\tf 3 16712 -16704 -16712\n\t\tmu 0 3 20551 20552 20553\n\t\tf 3 -16596 16713 16714\n\t\tmu 0 3 20554 20555 20556\n\t\tf 3 16715 -16711 -16715\n\t\tmu 0 3 20557 20558 20559\n\t\tf 3 16716 16717 16718\n\t\tmu 0 3 20560 20561 20562\n\t\tf 3 16719 -16708 -16719\n\t\tmu 0 3 20563 20564 20565\n\t\tf 3 -16663 -16718 16720\n\t\tmu 0 3 20566 20567 20568\n\t\tf 3 16721 16722 -16721\n\t\tmu 0 3 20569 20570 20571\n\t\tf 3 16723 16724 16725\n\t\tmu 0 3 3588 4445 710\n\t\tf 3 16726 16727 -16726\n\t\tmu 0 3 710 3221 3588\n\t\tf 3 16728 16729 16730\n\t\tmu 0 3 20572 20573 4132\n\t\tf 3 16731 16732 -16731\n\t\tmu 0 3 4132 5243 20574\n\t\tf 3 -16725 16733 16734\n\t\tmu 0 3 710 4445 5565\n\t\tf 3 16735 16736 -16735\n\t\tmu 0 3 5565 2767 710\n\t\tf 3 16737 16738 16739\n\t\tmu 0 3 6435 4725 6471\n\t\tf 3 16740 16741 -16740\n\t\tmu 0 3 6471 3353 6435\n\t\tf 3 -16742 16742 16743\n\t\tmu 0 3 6435 3353 2225\n\t\tf 3 16744 16745 -16744\n\t\tmu 0 3 2225 3581 6435\n\t\tf 3 16746 16747 16748\n\t\tmu 0 3 5769 20575 20576\n\t\tf 3 16749 16750 -16749\n\t\tmu 0 3 20577 1706 5769\n\t\tf 3 16751 16752 16753\n\t\tmu 0 3 1333 3835 14\n\t\tf 3 16754 16755 -16754\n\t\tmu 0 3 14 1960 1333\n\t\tf 3 -16756 16756 16757\n\t\tmu 0 3 1333 1960 6067\n\t\tf 3 16758 16759 -16758\n\t\tmu 0 3 6067 3201 1333\n\t\tf 3 16760 16761 16762\n\t\tmu 0 3 5990 20578 20579\n\t\tf 3 16763 16764 -16763\n\t\tmu 0 3 20580 4657 5990\n\t\tf 3 16765 16766 16767\n\t\tmu 0 3 1496 1070 2898\n\t\tf 3 16768 16769 -16768\n\t\tmu 0 3 2898 4053 1496\n\t\tf 3 16770 16771 16772\n\t\tmu 0 3 20581 20582 3814\n\t\tf 3 16773 16774 -16773\n\t\tmu 0 3 3814 3564 20583\n\t\tf 3 -16767 16775 16776\n\t\tmu 0 3 2898 1070 4776\n\t\tf 3 16777 16778 -16777\n\t\tmu 0 3 4776 2944 2898\n\t\tf 3 16779 16780 16781\n\t\tmu 0 3 2523 6121 3848\n\t\tf 3 16782 16783 -16782\n\t\tmu 0 3 3848 2466 2523\n\t\tf 3 16784 16785 16786\n\t\tmu 0 3 20584 20585 1336\n\t\tf 3 16787 16788 -16787\n\t\tmu 0 3 1336 2210 20586\n\t\tf 3 16789 -16784 16790\n\t\tmu 0 3 1724 2523 2466\n\t\tf 3 -16737 16791 -16791\n\t\tmu 0 3 2466 6269 1724\n\t\tf 3 16792 16793 16794\n\t\tmu 0 3 1429 990 89\n\t\tf 3 16795 16796 -16795\n\t\tmu 0 3 89 6107 1429\n\t\tf 3 16797 16798 16799\n\t\tmu 0 3 20587 20588 2608\n\t\tf 3 16800 16801 -16800\n\t\tmu 0 3 2608 2540 20589\n\t\tf 3 -16797 16802 16803\n\t\tmu 0 3 1429 6107 6444\n\t\tf 3 16804 -16776 -16804\n\t\tmu 0 3 6444 4777 1429\n\t\tf 3 16805 -16778 16806\n\t\tmu 0 3 2721 2944 4776\n\t\tf 3 16807 16808 -16807\n\t\tmu 0 3 4776 4080 2721\n\t\tf 3 -16808 -16805 16809\n\t\tmu 0 3 5351 4777 6444\n\t\tf 3 16810 16811 -16810\n\t\tmu 0 3 6444 4594 5351\n\t\tf 3 16812 -16792 16813\n\t\tmu 0 3 2804 1724 6269\n\t\tf 3 16814 16815 -16814\n\t\tmu 0 3 6269 1508 2804\n\t\tf 3 -16815 -16736 16816\n\t\tmu 0 3 4537 2767 5565\n\t\tf 3 16817 16818 -16817\n\t\tmu 0 3 5565 951 4537\n\t\tf 3 -16818 16819 16820\n\t\tmu 0 3 2609 20590 20591\n\t\tf 3 16821 16822 -16821\n\t\tmu 0 3 20592 5700 2609\n\t\tf 3 16823 16824 16825\n\t\tmu 0 3 4984 20593 20594\n\t\tf 3 -16806 16826 -16826\n\t\tmu 0 3 20595 5610 4984\n\t\tf 3 16827 16828 16829\n\t\tmu 0 3 20596 20597 20598\n\t\tf 3 16830 16831 -16830\n\t\tmu 0 3 20599 20600 20601\n\t\tf 3 16832 16833 16834\n\t\tmu 0 3 20602 20603 20604\n\t\tf 3 16835 16836 -16835\n\t\tmu 0 3 20605 20606 20607\n\t\tf 3 16837 -16831 16838\n\t\tmu 0 3 20608 20609 20610\n\t\tf 3 16839 16840 -16839\n\t\tmu 0 3 20611 20612 20613\n\t\tf 3 16841 16842 16843\n\t\tmu 0 3 20614 20615 20616\n\t\tf 3 16844 16845 -16844\n\t\tmu 0 3 20617 20618 20619\n\t\tf 3 16846 -16842 16847\n\t\tmu 0 3 20620 20621 20622\n\t\tf 3 16848 16849 -16848\n\t\tmu 0 3 20623 20624 20625\n\t\tf 3 16850 16851 16852\n\t\tmu 0 3 20626 20627 20628\n\t\tf 3 16853 16854 -16853\n\t\tmu 0 3 20629 20630 20631\n\t\tf 3 16855 16856 16857\n\t\tmu 0 3 20632 20633 20634\n\t\tf 3 16858 16859 -16858\n\t\tmu 0 3 20635 20636 20637\n\t\tf 3 16860 -16856 16861\n\t\tmu 0 3 20638 20639 20640\n\t\tf 3 16862 16863 -16862\n\t\tmu 0 3 20641 20642 20643\n\t\tf 3 16864 16865 16866\n\t\tmu 0 3 20644 20645 20646\n\t\tf 3 16867 16868 -16867\n\t\tmu 0 3 20647 20648 20649\n\t\tf 3 16869 16870 16871\n\t\tmu 0 3 20650 20651 20652\n\t\tf 3 16872 16873 -16872\n\t\tmu 0 3 20653 20654 20655\n\t\tf 3 16874 16875 16876\n\t\tmu 0 3 20656 20657 20658\n\t\tf 3 16877 16878 -16877\n\t\tmu 0 3 20659 20660 20661\n\t\tf 3 16879 -16873 16880\n\t\tmu 0 3 20662 20663 20664\n\t\tf 3 16881 16882 -16881\n\t\tmu 0 3 20665 20666 20667\n\t\tf 3 16883 16884 16885\n\t\tmu 0 3 20668 20669 20670\n\t\tf 3 16886 16887 -16886\n\t\tmu 0 3 20671 20672 20673\n\t\tf 3 16888 16889 16890\n\t\tmu 0 3 20674 20675 20676\n\t\tf 3 16891 16892 -16891\n\t\tmu 0 3 20677 20678 20679\n\t\tf 3 -16884 16893 16894\n\t\tmu 0 3 20680 20681 20682\n\t\tf 3 16895 -16840 -16895\n\t\tmu 0 3 20683 20684 20685\n\t\tf 3 16896 16897 16898\n\t\tmu 0 3 20686 20687 20688\n\t\tf 3 16899 16900 -16899\n\t\tmu 0 3 20689 20690 20691\n\t\tf 3 16901 16902 16903\n\t\tmu 0 3 20692 20693 20694\n\t\tf 3 16904 16905 -16904\n\t\tmu 0 3 20695 20696 20697\n\t\tf 3 16906 -16897 16907\n\t\tmu 0 3 20698 20699 20700\n\t\tf 3 -16880 16908 -16908\n\t\tmu 0 3 20701 20702 20703\n\t\tf 3 16909 16910 16911\n\t\tmu 0 3 20704 20705 20706\n\t\tf 3 -16883 16912 -16912\n\t\tmu 0 3 20707 20708 20709\n\t\tf 3 16913 16914 16915\n\t\tmu 0 3 20710 20711 20712\n\t\tf 3 -16909 -16911 -16916\n\t\tmu 0 3 20713 20714 20715\n\t\tf 3 16916 16917 16918\n\t\tmu 0 3 20716 20717 20718\n\t\tf 3 -16896 16919 -16919\n\t\tmu 0 3 20719 20720 20721\n\t\tf 3 16920 16921 16922\n\t\tmu 0 3 20722 20723 20724\n\t\tf 3 -16841 -16918 -16923\n\t\tmu 0 3 20725 20726 20727\n\t\tf 3 16923 16924 16925\n\t\tmu 0 3 20728 20729 20730\n\t\tf 3 16926 -16922 -16926\n\t\tmu 0 3 20731 20732 20733\n\t\tf 3 16927 -16913 16928\n\t\tmu 0 3 20734 20735 20736\n\t\tf 3 16929 16930 -16929\n\t\tmu 0 3 20737 20738 20739\n\t\tf 3 16931 16932 16933\n\t\tmu 0 3 3131 994 5853\n\t\tf 3 16934 16935 -16934\n\t\tmu 0 3 5853 5992 3131\n\t\tf 3 -16936 16936 16937\n\t\tmu 0 3 3131 5992 4380\n\t\tf 3 16938 16939 -16938\n\t\tmu 0 3 4380 418 3131\n\t\tf 3 16940 16941 16942\n\t\tmu 0 3 1515 1818 1295\n\t\tf 3 16943 16944 -16943\n\t\tmu 0 3 1295 4447 1515\n\t\tf 3 16945 16946 16947\n\t\tmu 0 3 1557 20740 20741\n\t\tf 3 16948 -16935 -16948\n\t\tmu 0 3 20742 6199 1557\n\t\tf 3 -16933 16949 16950\n\t\tmu 0 3 2971 3042 5021\n\t\tf 3 16951 16952 -16951\n\t\tmu 0 3 5021 1589 2971\n\t\tf 3 16953 -16952 16954\n\t\tmu 0 3 2076 1589 5021\n\t\tf 3 16955 16956 -16955\n\t\tmu 0 3 5021 2854 2076\n\t\tf 3 16957 -16957 16958\n\t\tmu 0 3 160 2076 2854\n\t\tf 3 16959 16960 -16959\n\t\tmu 0 3 2854 5767 160\n\t\tf 3 16961 -16961 16962\n\t\tmu 0 3 4120 160 5767\n\t\tf 3 16963 16964 -16963\n\t\tmu 0 3 5767 3843 4120\n\t\tf 3 16965 -16965 16966\n\t\tmu 0 3 4508 4120 3843\n\t\tf 3 16967 16968 -16967\n\t\tmu 0 3 3843 3272 4508\n\t\tf 3 -16969 16969 16970\n\t\tmu 0 3 4508 3272 3401\n\t\tf 3 16971 16972 -16971\n\t\tmu 0 3 3401 4867 4508\n\t\tf 3 16973 -16972 16974\n\t\tmu 0 3 4912 4867 3401\n\t\tf 3 16975 16976 -16975\n\t\tmu 0 3 3401 2524 4912\n\t\tf 3 -16962 16977 16978\n\t\tmu 0 3 160 4120 4635\n\t\tf 3 16979 16980 -16979\n\t\tmu 0 3 4635 2995 160\n\t\tf 3 16981 -16978 16982\n\t\tmu 0 3 4687 4635 4120\n\t\tf 3 -16966 16983 -16983\n\t\tmu 0 3 4120 4508 4687\n\t\tf 3 16984 16985 16986\n\t\tmu 0 3 5959 5483 5035\n\t\tf 3 16987 16988 -16987\n\t\tmu 0 3 5035 4214 5959\n\t\tf 3 16989 16990 16991\n\t\tmu 0 3 4648 20743 20744\n\t\tf 3 -16946 -16953 -16992\n\t\tmu 0 3 20745 2288 4648\n\t\tf 3 -16990 -16954 16992\n\t\tmu 0 3 20746 4648 836\n\t\tf 3 16993 16994 -16993\n\t\tmu 0 3 836 2223 20747\n\t\tf 3 -16988 16995 16996\n\t\tmu 0 3 4214 5035 20748\n\t\tf 3 16997 -16994 16998\n\t\tmu 0 3 1141 2223 836\n\t\tf 3 16999 17000 -16999\n\t\tmu 0 3 836 4002 1141\n\t\tf 3 17001 17002 -16997\n\t\tmu 0 3 20749 2591 4214\n\t\tf 3 17003 17004 17005\n\t\tmu 0 3 20750 20751 2810\n\t\tf 3 17006 -17002 -17006\n\t\tmu 0 3 2810 2591 20752\n\t\tf 3 17007 17008 17009\n\t\tmu 0 3 4667 3976 1578\n\t\tf 3 17010 17011 -17010\n\t\tmu 0 3 1578 1291 4667\n\t\tf 3 -16949 17012 17013\n\t\tmu 0 3 2830 20753 20754\n\t\tf 3 17014 -16937 -17014\n\t\tmu 0 3 20755 4913 2830\n\t\tf 3 17015 17016 17017\n\t\tmu 0 3 4507 289 2658\n\t\tf 3 17018 -16974 -17018\n\t\tmu 0 3 2658 901 4507\n\t\tf 3 17019 17020 17021\n\t\tmu 0 3 20756 20757 1944\n\t\tf 3 17022 17023 -17022\n\t\tmu 0 3 1944 246 20758\n\t\tf 3 -17024 17024 17025\n\t\tmu 0 3 20759 246 654\n\t\tf 3 17026 17027 -17026\n\t\tmu 0 3 654 4983 20760\n\t\tf 3 17028 17029 17030\n\t\tmu 0 3 2658 20761 4713\n\t\tf 3 -16973 -17019 -17031\n\t\tmu 0 3 4713 901 2658\n\t\tf 3 17031 17032 17033\n\t\tmu 0 3 2467 4864 3045\n\t\tf 3 17034 17035 -17034\n\t\tmu 0 3 3045 5811 2467\n\t\tf 3 17036 -17036 17037\n\t\tmu 0 3 1261 2467 5811\n\t\tf 3 17038 17039 -17038\n\t\tmu 0 3 5811 2500 1261\n\t\tf 3 17040 17041 17042\n\t\tmu 0 3 20762 20763 6477\n\t\tf 3 -16980 17043 -17043\n\t\tmu 0 3 6477 2004 20764\n\t\tf 3 17044 -17044 17045\n\t\tmu 0 3 20765 20766 2004\n\t\tf 3 -16982 17046 -17046\n\t\tmu 0 3 2004 2464 20767\n\t\tf 3 -17047 -16984 17047\n\t\tmu 0 3 20768 2464 3265\n\t\tf 3 -17030 17048 -17048\n\t\tmu 0 3 3265 860 20769\n\t\tf 3 17049 -17049 17050\n\t\tmu 0 3 20770 20771 860\n\t\tf 3 17051 17052 -17051\n\t\tmu 0 3 860 4627 20772\n\t\tf 3 17053 17054 17055\n\t\tmu 0 3 20773 20774 2116\n\t\tf 3 17056 17057 -17056\n\t\tmu 0 3 2116 262 20775\n\t\tf 3 17058 17059 17060\n\t\tmu 0 3 20776 20777 20778\n\t\tf 3 17061 17062 -17061\n\t\tmu 0 3 20779 3354 20780\n\t\tf 3 17063 17064 17065\n\t\tmu 0 3 2462 5921 5460\n\t\tf 3 17066 17067 -17066\n\t\tmu 0 3 5460 290 2462\n\t\tf 3 17068 17069 17070\n\t\tmu 0 3 5584 1735 5000\n\t\tf 3 17071 17072 -17071\n\t\tmu 0 3 5000 5082 5584\n\t\tf 3 17073 -17069 17074\n\t\tmu 0 3 2275 1735 5584\n\t\tf 3 17075 17076 -17075\n\t\tmu 0 3 5584 2397 2275\n\t\tf 3 -17072 17077 17078\n\t\tmu 0 3 5082 5000 6189\n\t\tf 3 17079 17080 -17079\n\t\tmu 0 3 6189 4100 5082\n\t\tf 3 -17080 17081 17082\n\t\tmu 0 3 4100 6189 470\n\t\tf 3 17083 17084 -17083\n\t\tmu 0 3 470 5225 4100\n\t\tf 3 -17077 17085 17086\n\t\tmu 0 3 2275 2397 1625\n\t\tf 3 17087 17088 -17087\n\t\tmu 0 3 1625 3774 2275\n\t\tf 3 -17084 17089 17090\n\t\tmu 0 3 5225 470 2089\n\t\tf 3 17091 17092 -17091\n\t\tmu 0 3 2089 6181 5225\n\t\tf 3 17093 -17092 17094\n\t\tmu 0 3 6373 6181 2089\n\t\tf 3 17095 17096 -17095\n\t\tmu 0 3 2089 1461 6373\n\t\tf 3 17097 17098 17099\n\t\tmu 0 3 2486 3392 2143\n\t\tf 3 17100 17101 -17100\n\t\tmu 0 3 2143 6336 2486\n\t\tf 3 -17101 17102 17103\n\t\tmu 0 3 6336 2143 2078\n\t\tf 3 17104 17105 -17104\n\t\tmu 0 3 2078 1574 6336\n\t\tf 3 -17105 17106 17107\n\t\tmu 0 3 1574 2078 4862\n\t\tf 3 17108 17109 -17108\n\t\tmu 0 3 4862 487 1574\n\t\tf 3 -17109 17110 17111\n\t\tmu 0 3 487 4862 4887\n\t\tf 3 17112 17113 -17112\n\t\tmu 0 3 4887 4187 487\n\t\tf 3 17114 -17113 17115\n\t\tmu 0 3 2885 4187 4887\n\t\tf 3 17116 17117 -17116\n\t\tmu 0 3 4887 6279 2885\n\t\tf 3 17118 17119 17120\n\t\tmu 0 3 3788 6497 4473\n\t\tf 3 17121 17122 -17121\n\t\tmu 0 3 4473 3030 3788\n\t\tf 3 17123 17124 17125\n\t\tmu 0 3 3525 1359 5166\n\t\tf 3 17126 17127 -17126\n\t\tmu 0 3 5166 5654 3525\n\t\tf 3 17128 -17124 17129\n\t\tmu 0 3 2943 1359 3525\n\t\tf 3 17130 17131 -17130\n\t\tmu 0 3 3525 5977 2943\n\t\tf 3 -17127 17132 17133\n\t\tmu 0 3 5654 5166 3389\n\t\tf 3 17134 17135 -17134\n\t\tmu 0 3 3389 2273 5654\n\t\tf 3 -17135 17136 17137\n\t\tmu 0 3 2273 3389 3459\n\t\tf 3 17138 17139 -17138\n\t\tmu 0 3 3459 1502 2273\n\t\tf 3 -17132 17140 17141\n\t\tmu 0 3 2943 5977 2517\n\t\tf 3 17142 17143 -17142\n\t\tmu 0 3 2517 25 2943\n\t\tf 3 -17139 17144 17145\n\t\tmu 0 3 1502 3459 6343\n\t\tf 3 17146 17147 -17146\n\t\tmu 0 3 6343 1100 1502\n\t\tf 3 17148 -17147 17149\n\t\tmu 0 3 4079 1100 6343\n\t\tf 3 17150 17151 -17150\n\t\tmu 0 3 6343 3897 4079\n\t\tf 3 17152 17153 17154\n\t\tmu 0 3 1017 5032 535\n\t\tf 3 17155 17156 -17155\n\t\tmu 0 3 535 5710 1017\n\t\tf 3 -17154 17157 17158\n\t\tmu 0 3 535 5032 3550\n\t\tf 3 17159 17160 -17159\n\t\tmu 0 3 3550 1388 535\n\t\tf 3 17161 -17160 17162\n\t\tmu 0 3 2649 1388 3550\n\t\tf 3 17163 17164 -17163\n\t\tmu 0 3 3550 1082 2649\n\t\tf 3 -17164 17165 17166\n\t\tmu 0 3 1082 3550 3861\n\t\tf 3 17167 17168 -17167\n\t\tmu 0 3 3861 3818 1082\n\t\tf 3 17169 -17166 17170\n\t\tmu 0 3 1587 3861 3550\n\t\tf 3 -17158 17171 -17171\n\t\tmu 0 3 3550 5032 1587\n\t\tf 3 -17165 17172 17173\n\t\tmu 0 3 2649 1082 6131\n\t\tf 3 17174 17175 -17174\n\t\tmu 0 3 6131 4683 2649\n\t\tf 3 17176 -17175 17177\n\t\tmu 0 3 4228 4683 6131\n\t\tf 3 17178 17179 -17178\n\t\tmu 0 3 6131 552 4228\n\t\tf 3 17180 17181 17182\n\t\tmu 0 3 3840 3681 2549\n\t\tf 3 17183 17184 -17183\n\t\tmu 0 3 2549 1942 3840\n\t\tf 3 17185 17186 17187\n\t\tmu 0 3 3844 3415 5590\n\t\tf 3 17188 17189 -17188\n\t\tmu 0 3 5590 1335 3844\n\t\tf 3 17190 -17190 17191\n\t\tmu 0 3 541 3844 1335\n\t\tf 3 17192 17193 -17192\n\t\tmu 0 3 1335 3170 541\n\t\tf 3 17194 -17194 17195\n\t\tmu 0 3 330 541 3170\n\t\tf 3 17196 17197 -17196\n\t\tmu 0 3 3170 4752 330\n\t\tf 3 17198 -17198 17199\n\t\tmu 0 3 4761 330 4752\n\t\tf 3 17200 17201 -17200\n\t\tmu 0 3 4752 4482 4761\n\t\tf 3 17202 -17202 17203\n\t\tmu 0 3 6375 4761 4482\n\t\tf 3 17204 17205 -17204\n\t\tmu 0 3 4482 1123 6375\n\t\tf 3 17206 -17206 17207\n\t\tmu 0 3 1010 6375 1123\n\t\tf 3 17208 17209 -17208\n\t\tmu 0 3 1123 2267 1010\n\t\tf 3 17210 -17210 17211\n\t\tmu 0 3 4779 1010 2267\n\t\tf 3 17212 17213 -17212\n\t\tmu 0 3 2267 5622 4779\n\t\tf 3 17214 -17214 17215\n\t\tmu 0 3 722 4779 5622\n\t\tf 3 17216 17217 -17216\n\t\tmu 0 3 5622 6028 722\n\t\tf 3 17218 -17218 17219\n\t\tmu 0 3 824 722 6028\n\t\tf 3 17220 17221 -17220\n\t\tmu 0 3 6028 6408 824\n\t\tf 3 17222 -17222 17223\n\t\tmu 0 3 5168 824 6408\n\t\tf 3 17224 17225 -17224\n\t\tmu 0 3 6408 5883 5168\n\t\tf 3 17226 -17226 17227\n\t\tmu 0 3 1225 5168 5883\n\t\tf 3 17228 17229 -17228\n\t\tmu 0 3 5883 1930 1225\n\t\tf 3 -17230 17230 17231\n\t\tmu 0 3 1225 1930 164\n\t\tf 3 17232 17233 -17232\n\t\tmu 0 3 164 3223 1225\n\t\tf 3 17234 -17233 17235\n\t\tmu 0 3 6330 3223 164\n\t\tf 3 17236 17237 -17236\n\t\tmu 0 3 164 4688 6330\n\t\tf 3 17238 17239 17240\n\t\tmu 0 3 5938 5845 4722\n\t\tf 3 17241 17242 -17241\n\t\tmu 0 3 4722 1919 5938\n\t\tf 3 17243 -17242 17244\n\t\tmu 0 3 4404 1919 4722\n\t\tf 3 17245 17246 -17245\n\t\tmu 0 3 4722 5968 4404\n\t\tf 3 -17247 17247 17248\n\t\tmu 0 3 4404 5968 1342\n\t\tf 3 17249 17250 -17249\n\t\tmu 0 3 1342 1527 4404\n\t\tf 3 -17250 17251 17252\n\t\tmu 0 3 1527 1342 4459\n\t\tf 3 17253 17254 -17253\n\t\tmu 0 3 4459 2457 1527\n\t\tf 3 17255 -17254 17256\n\t\tmu 0 3 2260 2457 4459\n\t\tf 3 17257 17258 -17257\n\t\tmu 0 3 4459 3542 2260\n\t\tf 3 -17255 17259 17260\n\t\tmu 0 3 1527 2457 2309\n\t\tf 3 17261 17262 -17261\n\t\tmu 0 3 2309 5937 1527\n\t\tf 3 17263 -17260 17264\n\t\tmu 0 3 6422 2309 2457\n\t\tf 3 -17256 17265 -17265\n\t\tmu 0 3 2457 2260 6422\n\t\tf 3 -17239 17266 17267\n\t\tmu 0 3 5845 5938 180\n\t\tf 3 17268 -17267 17269\n\t\tmu 0 3 6174 180 5938\n\t\tf 3 17270 17271 -17270\n\t\tmu 0 3 5938 497 6174\n\t\tf 3 17272 -17269 17273\n\t\tmu 0 3 5525 180 6174\n\t\tf 3 17274 17275 -17274\n\t\tmu 0 3 6174 5024 5525\n\t\tf 3 -17273 17276 17277\n\t\tmu 0 3 180 5525 5529\n\t\tf 3 17278 17279 -17278\n\t\tmu 0 3 5529 626 180\n\t\tf 3 -17280 17280 -17268\n\t\tmu 0 3 180 626 5845\n\t\tf 3 17281 -17276 17282\n\t\tmu 0 3 1521 5525 5024\n\t\tf 3 17283 17284 -17283\n\t\tmu 0 3 5024 1529 1521\n\t\tf 3 17285 -17285 17286\n\t\tmu 0 3 3149 1521 1529\n\t\tf 3 17287 17288 -17287\n\t\tmu 0 3 1529 1372 3149\n\t\tf 3 -17286 17289 17290\n\t\tmu 0 3 1521 3149 1478\n\t\tf 3 17291 17292 -17291\n\t\tmu 0 3 1478 6146 1521\n\t\tf 3 -17282 -17293 17293\n\t\tmu 0 3 5525 1521 6146\n\t\tf 3 17294 -17277 -17294\n\t\tmu 0 3 6146 5529 5525\n\t\tf 3 17295 -17289 17296\n\t\tmu 0 3 2757 3149 1372\n\t\tf 3 17297 17298 -17297\n\t\tmu 0 3 1372 2265 2757\n\t\tf 3 17299 -17299 17300\n\t\tmu 0 3 4280 2757 2265\n\t\tf 3 17301 17302 -17301\n\t\tmu 0 3 2265 2242 4280\n\t\tf 3 -17300 17303 17304\n\t\tmu 0 3 2757 4280 883\n\t\tf 3 17305 -17304 17306\n\t\tmu 0 3 2239 883 4280\n\t\tf 3 17307 17308 -17307\n\t\tmu 0 3 4280 4797 2239\n\t\tf 3 -17308 -17303 17309\n\t\tmu 0 3 4797 4280 2242\n\t\tf 3 17310 -17309 17311\n\t\tmu 0 3 1029 2239 4797\n\t\tf 3 17312 17313 -17312\n\t\tmu 0 3 4797 6420 1029\n\t\tf 3 17314 17315 -17305\n\t\tmu 0 3 883 479 2757\n\t\tf 3 -17296 -17316 17316\n\t\tmu 0 3 3149 2757 479\n\t\tf 3 17317 -17290 -17317\n\t\tmu 0 3 479 1478 3149\n\t\tf 3 17318 17319 -17310\n\t\tmu 0 3 2242 2208 4797\n\t\tf 3 -17320 17320 17321\n\t\tmu 0 3 4797 2208 3152\n\t\tf 3 17322 -17313 -17322\n\t\tmu 0 3 3152 6420 4797\n\t\tf 3 17323 17324 17325\n\t\tmu 0 3 1394 1212 5716\n\t\tf 3 17326 17327 -17326\n\t\tmu 0 3 5716 6361 1394\n\t\tf 3 -17327 17328 17329\n\t\tmu 0 3 6361 5716 5222\n\t\tf 3 17330 17331 -17330\n\t\tmu 0 3 5222 4567 6361\n\t\tf 3 17332 17333 17334\n\t\tmu 0 3 3217 20781 20782\n\t\tf 3 17335 17336 -17335\n\t\tmu 0 3 20783 1324 3217\n\t\tf 3 -17336 17337 17338\n\t\tmu 0 3 1324 20784 20785\n\t\tf 3 17339 17340 -17339\n\t\tmu 0 3 20786 4188 1324\n\t\tf 3 17341 17342 17343\n\t\tmu 0 3 241 4522 639\n\t\tf 3 17344 17345 -17344\n\t\tmu 0 3 639 3255 241\n\t\tf 3 -17345 17346 17347\n\t\tmu 0 3 3255 639 6183\n\t\tf 3 17348 17349 -17348\n\t\tmu 0 3 6183 331 3255\n\t\tf 3 17350 -17349 17351\n\t\tmu 0 3 5678 331 6183\n\t\tf 3 17352 17353 -17352\n\t\tmu 0 3 6183 5199 5678;\n\tsetAttr \".fc[9000:9499]\"\n\t\tf 3 17354 17355 17356\n\t\tmu 0 3 20787 639 54\n\t\tf 3 17357 17358 -17357\n\t\tmu 0 3 54 5115 20788\n\t\tf 3 17359 -17359 17360\n\t\tmu 0 3 20789 20790 5115\n\t\tf 3 17361 -17356 17362\n\t\tmu 0 3 583 54 639\n\t\tf 3 -17343 17363 -17363\n\t\tmu 0 3 639 4522 583\n\t\tf 3 17364 17365 -17361\n\t\tmu 0 3 5115 3125 20791\n\t\tf 3 17366 17367 17368\n\t\tmu 0 3 2778 3750 1170\n\t\tf 3 -17354 17369 -17369\n\t\tmu 0 3 1170 2398 2778\n\t\tf 3 17370 17371 17372\n\t\tmu 0 3 6256 20792 20793\n\t\tf 3 17373 17374 -17373\n\t\tmu 0 3 20794 234 6256\n\t\tf 3 17375 17376 17377\n\t\tmu 0 3 2492 4069 1167\n\t\tf 3 17378 17379 -17378\n\t\tmu 0 3 1167 2683 2492\n\t\tf 3 17380 17381 17382\n\t\tmu 0 3 20795 20796 664\n\t\tf 3 17383 17384 -17383\n\t\tmu 0 3 664 6500 20797\n\t\tf 3 -17331 17385 17386\n\t\tmu 0 3 3348 3633 849\n\t\tf 3 17387 17388 -17387\n\t\tmu 0 3 849 2892 3348\n\t\tf 3 17389 -17388 17390\n\t\tmu 0 3 397 2892 849\n\t\tf 3 17391 17392 -17391\n\t\tmu 0 3 849 1189 397\n\t\tf 3 17393 17394 17395\n\t\tmu 0 3 20798 20799 5301\n\t\tf 3 17396 17397 -17396\n\t\tmu 0 3 5301 1143 20800\n\t\tf 3 17398 -17395 17399\n\t\tmu 0 3 783 5301 20801\n\t\tf 3 17400 17401 -17400\n\t\tmu 0 3 20802 20803 783\n\t\tf 3 17402 -17393 17403\n\t\tmu 0 3 3931 397 1189\n\t\tf 3 17404 17405 -17404\n\t\tmu 0 3 1189 4203 3931\n\t\tf 3 17406 -17406 17407\n\t\tmu 0 3 3366 3931 4203\n\t\tf 3 17408 17409 -17408\n\t\tmu 0 3 4203 5626 3366\n\t\tf 3 17410 -17410 17411\n\t\tmu 0 3 3333 3366 5626\n\t\tf 3 17412 17413 -17412\n\t\tmu 0 3 5626 5609 3333\n\t\tf 3 17414 -17414 17415\n\t\tmu 0 3 6125 3333 5609\n\t\tf 3 17416 17417 -17416\n\t\tmu 0 3 5609 819 6125\n\t\tf 3 17418 -17418 17419\n\t\tmu 0 3 4819 6125 819\n\t\tf 3 17420 17421 -17420\n\t\tmu 0 3 819 4746 4819\n\t\tf 3 -17422 17422 17423\n\t\tmu 0 3 4819 4746 2231\n\t\tf 3 17424 17425 -17424\n\t\tmu 0 3 2231 1488 4819\n\t\tf 3 17426 17427 17428\n\t\tmu 0 3 20804 20805 4724\n\t\tf 3 17429 17430 -17429\n\t\tmu 0 3 4724 3194 20806\n\t\tf 3 17431 -17431 17432\n\t\tmu 0 3 20807 20808 3194\n\t\tf 3 17433 -17428 17434\n\t\tmu 0 3 3552 4724 20809\n\t\tf 3 17435 17436 -17435\n\t\tmu 0 3 20810 20811 3552\n\t\tf 3 17437 17438 17439\n\t\tmu 0 3 20812 20813 42\n\t\tf 3 17440 -17439 -17433\n\t\tmu 0 3 3194 42 20814\n\t\tf 3 17441 17442 -17440\n\t\tmu 0 3 42 5062 20815\n\t\tf 3 17443 -17443 17444\n\t\tmu 0 3 20816 20817 5062\n\t\tf 3 17445 17446 -17445\n\t\tmu 0 3 5062 5796 20818\n\t\tf 3 17447 -17447 17448\n\t\tmu 0 3 20819 20820 5796\n\t\tf 3 17449 -17402 -17449\n\t\tmu 0 3 5796 783 20821\n\t\tf 3 17450 17451 17452\n\t\tmu 0 3 3143 1569 206\n\t\tf 3 17453 17454 -17453\n\t\tmu 0 3 206 2230 3143\n\t\tf 3 -17454 17455 17456\n\t\tmu 0 3 2230 206 3251\n\t\tf 3 17457 17458 -17457\n\t\tmu 0 3 3251 3257 2230\n\t\tf 3 -17458 17459 17460\n\t\tmu 0 3 3257 3251 3862\n\t\tf 3 17461 17462 17463\n\t\tmu 0 3 611 5947 4676\n\t\tf 3 17464 17465 -17464\n\t\tmu 0 3 4676 6154 611\n\t\tf 3 17466 -17462 17467\n\t\tmu 0 3 6032 5947 611\n\t\tf 3 17468 17469 -17468\n\t\tmu 0 3 611 620 6032\n\t\tf 3 -17465 17470 17471\n\t\tmu 0 3 6154 4676 5950\n\t\tf 3 17472 17473 -17472\n\t\tmu 0 3 5950 2834 6154\n\t\tf 3 -17473 17474 17475\n\t\tmu 0 3 2834 5950 4357\n\t\tf 3 17476 17477 -17476\n\t\tmu 0 3 4357 1645 2834\n\t\tf 3 -17477 17478 17479\n\t\tmu 0 3 1645 4357 1495\n\t\tf 3 17480 17481 -17480\n\t\tmu 0 3 1495 6341 1645\n\t\tf 3 -17481 17482 17483\n\t\tmu 0 3 6341 1495 4470\n\t\tf 3 17484 17485 -17484\n\t\tmu 0 3 4470 5978 6341\n\t\tf 3 17486 17487 17488\n\t\tmu 0 3 20822 20823 2938\n\t\tf 3 17489 17490 -17489\n\t\tmu 0 3 2938 15 20824\n\t\tf 3 -17490 17491 17492\n\t\tmu 0 3 15 2938 4605\n\t\tf 3 17493 17494 -17493\n\t\tmu 0 3 4605 1156 15\n\t\tf 3 -17470 17495 17496\n\t\tmu 0 3 6032 620 2678\n\t\tf 3 17497 17498 -17497\n\t\tmu 0 3 2678 501 6032\n\t\tf 3 17499 -17498 17500\n\t\tmu 0 3 1237 501 2678\n\t\tf 3 17501 17502 -17501\n\t\tmu 0 3 2678 1092 1237\n\t\tf 3 17503 17504 17505\n\t\tmu 0 3 5200 494 4200\n\t\tf 3 17506 17507 -17506\n\t\tmu 0 3 4200 409 5200\n\t\tf 3 17508 -17504 17509\n\t\tmu 0 3 5634 494 5200\n\t\tf 3 17510 17511 -17510\n\t\tmu 0 3 5200 4697 5634\n\t\tf 3 -17507 17512 17513\n\t\tmu 0 3 409 4200 1341\n\t\tf 3 17514 17515 -17514\n\t\tmu 0 3 1341 3688 409\n\t\tf 3 -17515 17516 17517\n\t\tmu 0 3 3688 1341 5859\n\t\tf 3 17518 17519 -17518\n\t\tmu 0 3 5859 367 3688\n\t\tf 3 -17519 17520 17521\n\t\tmu 0 3 367 5859 6442\n\t\tf 3 17522 17523 -17522\n\t\tmu 0 3 6442 357 367\n\t\tf 3 -17523 17524 17525\n\t\tmu 0 3 357 6442 142\n\t\tf 3 17526 17527 -17526\n\t\tmu 0 3 142 2782 357\n\t\tf 3 -17527 17528 17529\n\t\tmu 0 3 2782 142 4371\n\t\tf 3 17530 17531 -17530\n\t\tmu 0 3 4371 2003 2782\n\t\tf 3 -17531 17532 17533\n\t\tmu 0 3 2003 4371 5365\n\t\tf 3 17534 17535 -17534\n\t\tmu 0 3 5365 4943 2003\n\t\tf 3 -17512 17536 17537\n\t\tmu 0 3 5634 4697 5339\n\t\tf 3 17538 17539 -17538\n\t\tmu 0 3 5339 5189 5634\n\t\tf 3 17540 -17539 17541\n\t\tmu 0 3 997 5189 5339\n\t\tf 3 17542 17543 -17542\n\t\tmu 0 3 5339 1079 997\n\t\tf 3 17544 -17535 17545\n\t\tmu 0 3 2957 4943 5365\n\t\tf 3 17546 17547 -17546\n\t\tmu 0 3 5365 1063 2957\n\t\tf 3 17548 -17548 17549\n\t\tmu 0 3 2792 2957 1063\n\t\tf 3 17550 17551 -17550\n\t\tmu 0 3 1063 4524 2792\n\t\tf 3 17552 17553 17554\n\t\tmu 0 3 2756 4911 6348\n\t\tf 3 17555 17556 -17555\n\t\tmu 0 3 6348 6024 2756\n\t\tf 3 17557 -17557 17558\n\t\tmu 0 3 4084 2756 6024\n\t\tf 3 17559 17560 -17559\n\t\tmu 0 3 6024 1656 4084\n\t\tf 3 17561 -17561 17562\n\t\tmu 0 3 2316 4084 1656\n\t\tf 3 17563 17564 -17563\n\t\tmu 0 3 1656 2855 2316\n\t\tf 3 17565 -17565 17566\n\t\tmu 0 3 3208 2316 2855\n\t\tf 3 17567 17568 -17567\n\t\tmu 0 3 2855 6068 3208\n\t\tf 3 17569 -17569 17570\n\t\tmu 0 3 1296 3208 6068\n\t\tf 3 17571 17572 -17571\n\t\tmu 0 3 6068 4143 1296\n\t\tf 3 17573 -17573 17574\n\t\tmu 0 3 2996 1296 4143\n\t\tf 3 17575 17576 -17575\n\t\tmu 0 3 4143 5305 2996\n\t\tf 3 17577 -17577 17578\n\t\tmu 0 3 5854 2996 5305\n\t\tf 3 17579 17580 -17579\n\t\tmu 0 3 5305 3753 5854\n\t\tf 3 17581 -17581 17582\n\t\tmu 0 3 235 5854 3753\n\t\tf 3 17583 17584 -17583\n\t\tmu 0 3 3753 5655 235\n\t\tf 3 -17585 17585 17586\n\t\tmu 0 3 235 5655 6132\n\t\tf 3 17587 17588 -17587\n\t\tmu 0 3 6132 2009 235\n\t\tf 3 -17588 17589 17590\n\t\tmu 0 3 2009 6132 5310\n\t\tf 3 17591 17592 -17591\n\t\tmu 0 3 5310 6506 2009\n\t\tf 3 17593 17594 17595\n\t\tmu 0 3 6380 6402 6348\n\t\tf 3 -17554 17596 -17596\n\t\tmu 0 3 6348 4911 6380\n\t\tf 3 17597 -17594 17598\n\t\tmu 0 3 1361 6402 6380\n\t\tf 3 17599 17600 -17599\n\t\tmu 0 3 6380 5575 1361\n\t\tf 3 17601 17602 17603\n\t\tmu 0 3 4948 5851 47\n\t\tf 3 17604 17605 -17604\n\t\tmu 0 3 47 3147 4948\n\t\tf 3 17606 -17603 17607\n\t\tmu 0 3 3241 47 5851\n\t\tf 3 17608 17609 -17608\n\t\tmu 0 3 5851 5215 3241\n\t\tf 3 -17607 17610 17611\n\t\tmu 0 3 47 3241 313\n\t\tf 3 17612 17613 -17612\n\t\tmu 0 3 313 1717 47\n\t\tf 3 17614 -17614 17615\n\t\tmu 0 3 6363 47 1717\n\t\tf 3 17616 17617 -17616\n\t\tmu 0 3 1717 2145 6363\n\t\tf 3 -17615 17618 17619\n\t\tmu 0 3 47 6363 2498\n\t\tf 3 17620 17621 -17620\n\t\tmu 0 3 2498 3479 47\n\t\tf 3 17622 -17622 17623\n\t\tmu 0 3 195 47 3479\n\t\tf 3 17624 17625 -17624\n\t\tmu 0 3 3479 986 195\n\t\tf 3 -17623 17626 17627\n\t\tmu 0 3 47 195 6242\n\t\tf 3 17628 17629 -17628\n\t\tmu 0 3 6242 3974 47\n\t\tf 3 -17605 -17630 17630\n\t\tmu 0 3 3147 47 3974\n\t\tf 3 17631 17632 -17631\n\t\tmu 0 3 3974 3215 3147\n\t\tf 3 17633 17634 17635\n\t\tmu 0 3 2922 1161 887\n\t\tf 3 17636 17637 -17636\n\t\tmu 0 3 887 33 2922\n\t\tf 3 17638 -17634 17639\n\t\tmu 0 3 1177 1161 2922\n\t\tf 3 17640 17641 -17640\n\t\tmu 0 3 2922 5786 1177\n\t\tf 3 -17637 17642 17643\n\t\tmu 0 3 33 887 5022\n\t\tf 3 17644 -17471 -17644\n\t\tmu 0 3 5022 132 33\n\t\tf 3 -17645 17645 17646\n\t\tmu 0 3 132 5022 6143\n\t\tf 3 17647 -17475 -17647\n\t\tmu 0 3 6143 5931 132\n\t\tf 3 -17642 17648 17649\n\t\tmu 0 3 1177 5786 5372\n\t\tf 3 17650 17651 -17650\n\t\tmu 0 3 5372 6078 1177\n\t\tf 3 17652 -17651 17653\n\t\tmu 0 3 3909 6078 5372\n\t\tf 3 17654 17655 -17654\n\t\tmu 0 3 5372 675 3909\n\t\tf 3 -17648 17656 17657\n\t\tmu 0 3 5931 6143 5996\n\t\tf 3 17658 -17479 -17658\n\t\tmu 0 3 5996 314 5931\n\t\tf 3 -17483 -17659 17659\n\t\tmu 0 3 4859 314 5996\n\t\tf 3 17660 17661 -17660\n\t\tmu 0 3 5996 323 4859\n\t\tf 3 17662 17663 17664\n\t\tmu 0 3 4783 3601 3074\n\t\tf 3 17665 17666 -17665\n\t\tmu 0 3 3074 2724 4783\n\t\tf 3 17667 -17663 17668\n\t\tmu 0 3 3396 3601 4783\n\t\tf 3 17669 17670 -17669\n\t\tmu 0 3 4783 1199 3396\n\t\tf 3 17671 17672 17673\n\t\tmu 0 3 5797 4033 3521\n\t\tf 3 17674 17675 -17674\n\t\tmu 0 3 3521 1250 5797\n\t\tf 3 17676 -17676 17677\n\t\tmu 0 3 3096 5797 1250\n\t\tf 3 17678 17679 -17678\n\t\tmu 0 3 1250 320 3096\n\t\tf 3 17680 -17680 17681\n\t\tmu 0 3 6130 3096 320\n\t\tf 3 17682 17683 -17682\n\t\tmu 0 3 320 1852 6130\n\t\tf 3 17684 -17684 17685\n\t\tmu 0 3 5389 6130 1852\n\t\tf 3 17686 17687 -17686\n\t\tmu 0 3 1852 5702 5389\n\t\tf 3 17688 -17673 17689\n\t\tmu 0 3 3064 3521 4033\n\t\tf 3 17690 17691 -17690\n\t\tmu 0 3 4033 1610 3064\n\t\tf 3 17692 -17692 17693\n\t\tmu 0 3 5607 3064 1610\n\t\tf 3 17694 17695 -17694\n\t\tmu 0 3 1610 5884 5607\n\t\tf 3 17696 -17696 17697\n\t\tmu 0 3 597 5607 5884\n\t\tf 3 17698 17699 -17698\n\t\tmu 0 3 5884 3996 597\n\t\tf 3 17700 -17700 17701\n\t\tmu 0 3 2984 597 3996\n\t\tf 3 17702 17703 -17702\n\t\tmu 0 3 3996 6533 2984\n\t\tf 3 17704 -17704 17705\n\t\tmu 0 3 6063 2984 6533\n\t\tf 3 17706 17707 -17706\n\t\tmu 0 3 6533 2899 6063\n\t\tf 3 17708 -17708 17709\n\t\tmu 0 3 4093 6063 2899\n\t\tf 3 17710 17711 -17710\n\t\tmu 0 3 2899 2321 4093\n\t\tf 3 17712 -17712 17713\n\t\tmu 0 3 6220 4093 2321\n\t\tf 3 17714 17715 -17714\n\t\tmu 0 3 2321 4378 6220\n\t\tf 3 17716 -17716 17717\n\t\tmu 0 3 3066 6220 4378\n\t\tf 3 17718 17719 -17718\n\t\tmu 0 3 4378 724 3066\n\t\tf 3 17720 17721 17722\n\t\tmu 0 3 1091 5083 3836\n\t\tf 3 17723 17724 -17723\n\t\tmu 0 3 3836 5223 1091\n\t\tf 3 17725 -17725 17726\n\t\tmu 0 3 3399 1091 5223\n\t\tf 3 17727 17728 -17727\n\t\tmu 0 3 5223 1615 3399\n\t\tf 3 17729 17730 17731\n\t\tmu 0 3 1190 20825 20826\n\t\tf 3 17732 17733 -17732\n\t\tmu 0 3 20827 4622 1190\n\t\tf 3 17734 -17734 17735\n\t\tmu 0 3 3553 1190 4622\n\t\tf 3 17736 17737 -17736\n\t\tmu 0 3 4622 4081 3553\n\t\tf 3 17738 -17729 17739\n\t\tmu 0 3 6464 3399 1615\n\t\tf 3 -17652 17740 -17740\n\t\tmu 0 3 1615 831 6464\n\t\tf 3 17741 -17741 17742\n\t\tmu 0 3 1293 6464 831\n\t\tf 3 -17653 17743 -17743\n\t\tmu 0 3 831 1337 1293\n\t\tf 3 17744 17745 17746\n\t\tmu 0 3 2793 5438 1067\n\t\tf 3 17747 17748 -17747\n\t\tmu 0 3 1067 4865 2793\n\t\tf 3 -17748 17749 17750\n\t\tmu 0 3 4865 1067 3673\n\t\tf 3 -15992 17751 -17751\n\t\tmu 0 3 3673 6033 4865\n\t\tf 3 17752 17753 17754\n\t\tmu 0 3 20828 20829 20830\n\t\tf 3 17755 17756 -17755\n\t\tmu 0 3 20831 20832 20833\n\t\tf 3 17757 -17753 17758\n\t\tmu 0 3 20834 20835 20836\n\t\tf 3 17759 17760 -17759\n\t\tmu 0 3 20837 20838 20839\n\t\tf 3 17761 17762 17763\n\t\tmu 0 3 20840 20841 20842\n\t\tf 3 17764 17765 -17764\n\t\tmu 0 3 20843 20844 20845\n\t\tf 3 17766 17767 17768\n\t\tmu 0 3 20846 20847 20848\n\t\tf 3 -17754 17769 -17769\n\t\tmu 0 3 20849 20850 20851\n\t\tf 3 17770 17771 17772\n\t\tmu 0 3 20852 20853 20854\n\t\tf 3 17773 -17756 -17773\n\t\tmu 0 3 20855 20856 20857\n\t\tf 3 -17772 17774 17775\n\t\tmu 0 3 20858 20859 20860\n\t\tf 3 17776 17777 -17776\n\t\tmu 0 3 20861 20862 20863\n\t\tf 3 -17777 17778 17779\n\t\tmu 0 3 20864 20865 20866\n\t\tf 3 17780 17781 -17780\n\t\tmu 0 3 20867 20868 20869\n\t\tf 3 -17781 17782 17783\n\t\tmu 0 3 20870 20871 20872\n\t\tf 3 17784 17785 -17784\n\t\tmu 0 3 20873 20874 20875\n\t\tf 3 -17785 17786 17787\n\t\tmu 0 3 20876 20877 20878\n\t\tf 3 17788 17789 -17788\n\t\tmu 0 3 20879 20880 20881\n\t\tf 3 17790 -17789 17791\n\t\tmu 0 3 20882 20883 20884\n\t\tf 3 17792 17793 -17792\n\t\tmu 0 3 20885 20886 20887\n\t\tf 3 -17794 17794 17795\n\t\tmu 0 3 20888 20889 20890\n\t\tf 3 17796 17797 -17796\n\t\tmu 0 3 20891 20892 20893\n\t\tf 3 17798 -17783 17799\n\t\tmu 0 3 20894 20895 20896\n\t\tf 3 17800 17801 -17800\n\t\tmu 0 3 20897 20898 20899\n\t\tf 3 -17799 17802 17803\n\t\tmu 0 3 20900 20901 20902\n\t\tf 3 17804 -17787 -17804\n\t\tmu 0 3 20903 20904 20905\n\t\tf 3 17805 17806 17807\n\t\tmu 0 3 20906 20907 20908\n\t\tf 3 17808 17809 -17808\n\t\tmu 0 3 20909 20910 20911\n\t\tf 3 17810 17811 17812\n\t\tmu 0 3 20912 20913 20914\n\t\tf 3 -17771 -17768 -17813\n\t\tmu 0 3 20915 20916 20917\n\t\tf 3 -17775 -17812 17813\n\t\tmu 0 3 20918 20919 20920\n\t\tf 3 17814 17815 -17814\n\t\tmu 0 3 20921 20922 20923\n\t\tf 3 17816 -17810 17817\n\t\tmu 0 3 20924 20925 20926\n\t\tf 3 -17816 17818 17819\n\t\tmu 0 3 20927 20928 20929\n\t\tf 3 17820 17821 -17820\n\t\tmu 0 3 20930 20931 20932\n\t\tf 3 17822 17823 -17818\n\t\tmu 0 3 20933 20934 20935\n\t\tf 3 17824 17825 17826\n\t\tmu 0 3 20936 20937 20938\n\t\tf 3 -17824 17827 -17827\n\t\tmu 0 3 20939 20940 20941\n\t\tf 3 17828 17829 17830\n\t\tmu 0 3 20942 20943 20944\n\t\tf 3 17831 17832 -17831\n\t\tmu 0 3 20945 20946 20947\n\t\tf 3 17833 -17770 17834\n\t\tmu 0 3 20948 20949 20950\n\t\tf 3 -17758 17835 -17835\n\t\tmu 0 3 20951 20952 20953\n\t\tf 3 -17795 17836 17837\n\t\tmu 0 3 20954 20955 20956\n\t\tf 3 17838 17839 -17838\n\t\tmu 0 3 20957 20958 20959\n\t\tf 3 17840 17841 17842\n\t\tmu 0 3 20960 20961 20962\n\t\tf 3 17843 17844 -17843\n\t\tmu 0 3 20963 20964 20965\n\t\tf 3 17845 -17844 17846\n\t\tmu 0 3 20966 20967 20968\n\t\tf 3 17847 17848 -17847\n\t\tmu 0 3 20969 20970 20971\n\t\tf 3 -17837 -17793 17849\n\t\tmu 0 3 20972 20973 20974\n\t\tf 3 17850 17851 -17850\n\t\tmu 0 3 20975 20976 20977\n\t\tf 3 17852 17853 17854\n\t\tmu 0 3 20978 20979 20980\n\t\tf 3 17855 17856 -17855\n\t\tmu 0 3 20981 20982 20983\n\t\tf 3 -17856 17857 17858\n\t\tmu 0 3 20984 20985 20986\n\t\tf 3 17859 17860 -17859\n\t\tmu 0 3 20987 20988 20989\n\t\tf 3 17861 17862 17863\n\t\tmu 0 3 20990 20991 20992\n\t\tf 3 17864 -17802 -17864\n\t\tmu 0 3 20993 20994 20995\n\t\tf 3 -17865 17865 17866\n\t\tmu 0 3 20996 20997 20998\n\t\tf 3 17867 -17803 -17867\n\t\tmu 0 3 20999 21000 21001\n\t\tf 3 -17805 -17868 17868\n\t\tmu 0 3 21002 21003 21004\n\t\tf 3 17869 -17851 -17869\n\t\tmu 0 3 21005 21006 21007\n\t\tf 3 -17870 17870 17871\n\t\tmu 0 3 21008 21009 21010\n\t\tf 3 17872 17873 -17872\n\t\tmu 0 3 21011 21012 21013\n\t\tf 3 17874 17875 17876\n\t\tmu 0 3 21014 21015 21016\n\t\tf 3 17877 17878 -17877\n\t\tmu 0 3 21017 21018 21019\n\t\tf 3 17879 17880 17881\n\t\tmu 0 3 21020 21021 21022\n\t\tf 3 17882 17883 -17882\n\t\tmu 0 3 21023 21024 21025\n\t\tf 3 17884 17885 17886\n\t\tmu 0 3 21026 21027 21028\n\t\tf 3 17887 17888 -17887\n\t\tmu 0 3 21029 21030 21031\n\t\tf 3 17889 17890 17891\n\t\tmu 0 3 21032 21033 21034\n\t\tf 3 17892 17893 -17892\n\t\tmu 0 3 21035 21036 21037\n\t\tf 3 -17894 17894 17895\n\t\tmu 0 3 21038 21039 21040\n\t\tf 3 17896 17897 -17896\n\t\tmu 0 3 21041 21042 21043\n\t\tf 3 17898 -17891 17899\n\t\tmu 0 3 21044 21045 21046\n\t\tf 3 17900 17901 -17900\n\t\tmu 0 3 21047 21048 21049\n\t\tf 3 17902 -17902 17903\n\t\tmu 0 3 21050 21051 21052\n\t\tf 3 17904 17905 -17904\n\t\tmu 0 3 21053 21054 21055\n\t\tf 3 17906 -17897 17907\n\t\tmu 0 3 21056 21057 21058\n\t\tf 3 17908 17909 -17908\n\t\tmu 0 3 21059 21060 21061\n\t\tf 3 17910 -17906 17911\n\t\tmu 0 3 21062 21063 21064\n\t\tf 3 17912 17913 -17912\n\t\tmu 0 3 21065 21066 21067\n\t\tf 3 -17914 17914 17915\n\t\tmu 0 3 21068 21069 21070\n\t\tf 3 17916 17917 -17916\n\t\tmu 0 3 21071 21072 21073\n\t\tf 3 17918 17919 17920\n\t\tmu 0 3 21074 21075 21076\n\t\tf 3 17921 17922 -17921\n\t\tmu 0 3 21077 21078 21079\n\t\tf 3 17923 -17920 17924\n\t\tmu 0 3 21080 21081 21082\n\t\tf 3 17925 17926 -17925\n\t\tmu 0 3 21083 21084 21085\n\t\tf 3 17927 -17927 17928\n\t\tmu 0 3 21086 21087 21088\n\t\tf 3 17929 17930 -17929\n\t\tmu 0 3 21089 21090 21091\n\t\tf 3 17931 -17931 17932\n\t\tmu 0 3 21092 21093 21094\n\t\tf 3 17933 17934 -17933\n\t\tmu 0 3 21095 21096 21097\n\t\tf 3 -17935 17935 17936\n\t\tmu 0 3 21098 21099 21100\n\t\tf 3 17937 17938 -17937\n\t\tmu 0 3 21101 21102 21103\n\t\tf 3 17939 17940 17941\n\t\tmu 0 3 21104 21105 21106\n\t\tf 3 17942 17943 -17942\n\t\tmu 0 3 21107 21108 21109\n\t\tf 3 17944 17945 17946\n\t\tmu 0 3 21110 21111 21112\n\t\tf 3 17947 17948 -17947\n\t\tmu 0 3 21113 21114 21115\n\t\tf 3 -17949 17949 17950\n\t\tmu 0 3 21116 21117 21118\n\t\tf 3 17951 17952 -17951\n\t\tmu 0 3 21119 21120 21121\n\t\tf 3 17953 -17946 17954\n\t\tmu 0 3 21122 21123 21124\n\t\tf 3 17955 17956 -17955\n\t\tmu 0 3 21125 21126 21127\n\t\tf 3 17957 -17957 17958\n\t\tmu 0 3 21128 21129 21130\n\t\tf 3 17959 17960 -17959\n\t\tmu 0 3 21131 21132 21133\n\t\tf 3 17961 -17952 17962\n\t\tmu 0 3 21134 21135 21136\n\t\tf 3 17963 17964 -17963\n\t\tmu 0 3 21137 21138 21139\n\t\tf 3 17965 -17961 17966\n\t\tmu 0 3 21140 21141 21142\n\t\tf 3 17967 17968 -17967\n\t\tmu 0 3 21143 21144 21145\n\t\tf 3 -17969 17969 17970\n\t\tmu 0 3 21146 21147 21148\n\t\tf 3 17971 17972 -17971\n\t\tmu 0 3 21149 21150 21151\n\t\tf 3 17973 17974 17975\n\t\tmu 0 3 21152 21153 21154\n\t\tf 3 17976 17977 -17976\n\t\tmu 0 3 21155 21156 21157\n\t\tf 3 17978 -17974 17979\n\t\tmu 0 3 21158 21159 21160\n\t\tf 3 17980 17981 -17980\n\t\tmu 0 3 21161 21162 21163\n\t\tf 3 -17982 17982 17983\n\t\tmu 0 3 21164 21165 21166\n\t\tf 3 17984 17985 -17984\n\t\tmu 0 3 21167 21168 21169\n\t\tf 3 17986 -17986 17987\n\t\tmu 0 3 21170 21171 21172\n\t\tf 3 17988 17989 -17988\n\t\tmu 0 3 21173 21174 21175\n\t\tf 3 17990 -17979 17991\n\t\tmu 0 3 21176 21177 21178\n\t\tf 3 -17987 17992 -17992\n\t\tmu 0 3 21179 21180 21181\n\t\tf 3 17993 -17985 17994\n\t\tmu 0 3 21182 21183 21184\n\t\tf 3 17995 17996 -17995\n\t\tmu 0 3 21185 21186 21187\n\t\tf 3 -17997 17997 17998\n\t\tmu 0 3 21188 21189 21190\n\t\tf 3 17999 18000 -17999\n\t\tmu 0 3 21191 21192 21193\n\t\tf 3 18001 18002 18003\n\t\tmu 0 3 21194 21195 21196\n\t\tf 3 18004 18005 -18004\n\t\tmu 0 3 21197 21198 21199\n\t\tf 3 18006 18007 18008\n\t\tmu 0 3 21200 21201 21202\n\t\tf 3 18009 18010 -18009\n\t\tmu 0 3 21203 21204 21205\n\t\tf 3 -18007 18011 18012\n\t\tmu 0 3 21206 21207 21208\n\t\tf 3 18013 18014 -18013\n\t\tmu 0 3 21209 21210 21211\n\t\tf 3 -18014 18015 18016\n\t\tmu 0 3 21212 21213 21214\n\t\tf 3 18017 18018 -18017\n\t\tmu 0 3 21215 21216 21217\n\t\tf 3 -18018 18019 18020\n\t\tmu 0 3 21218 21219 21220\n\t\tf 3 18021 18022 -18021\n\t\tmu 0 3 21221 21222 21223\n\t\tf 3 -18022 18023 18024\n\t\tmu 0 3 21224 21225 21226\n\t\tf 3 18025 18026 -18025\n\t\tmu 0 3 21227 21228 21229\n\t\tf 3 -18026 18027 18028\n\t\tmu 0 3 21230 21231 21232\n\t\tf 3 18029 18030 -18029\n\t\tmu 0 3 21233 21234 21235\n\t\tf 3 -18030 18031 18032\n\t\tmu 0 3 21236 21237 21238\n\t\tf 3 18033 18034 -18033\n\t\tmu 0 3 21239 21240 21241\n\t\tf 3 -18034 18035 18036\n\t\tmu 0 3 21242 21243 21244\n\t\tf 3 18037 18038 -18037\n\t\tmu 0 3 21245 21246 21247\n\t\tf 3 -18038 18039 18040\n\t\tmu 0 3 21248 21249 21250\n\t\tf 3 18041 18042 -18041\n\t\tmu 0 3 21251 21252 21253\n\t\tf 3 -18042 18043 18044\n\t\tmu 0 3 21254 21255 21256\n\t\tf 3 18045 18046 -18045\n\t\tmu 0 3 21257 21258 21259\n\t\tf 3 -18046 18047 18048\n\t\tmu 0 3 21260 21261 21262\n\t\tf 3 18049 18050 -18049\n\t\tmu 0 3 21263 21264 21265\n\t\tf 3 18051 -18050 18052\n\t\tmu 0 3 21266 21267 21268\n\t\tf 3 18053 18054 -18053\n\t\tmu 0 3 21269 21270 21271\n\t\tf 3 -18055 18055 18056\n\t\tmu 0 3 21272 21273 21274\n\t\tf 3 18057 18058 -18057\n\t\tmu 0 3 21275 21276 21277\n\t\tf 3 18059 18060 18061\n\t\tmu 0 3 21278 21279 21280\n\t\tf 3 18062 18063 -18062\n\t\tmu 0 3 21281 21282 21283\n\t\tf 3 -18064 18064 18065\n\t\tmu 0 3 21284 21285 21286\n\t\tf 3 18066 18067 -18066\n\t\tmu 0 3 21287 21288 21289\n\t\tf 3 18068 -18067 18069\n\t\tmu 0 3 21290 21291 21292\n\t\tf 3 18070 18071 -18070\n\t\tmu 0 3 21293 21294 21295\n\t\tf 3 18072 -18072 18073\n\t\tmu 0 3 21296 21297 21298\n\t\tf 3 18074 18075 -18074\n\t\tmu 0 3 21299 21300 21301\n\t\tf 3 18076 -18076 18077\n\t\tmu 0 3 21302 21303 21304\n\t\tf 3 18078 18079 -18078\n\t\tmu 0 3 21305 21306 21307\n\t\tf 3 18080 -18075 18081\n\t\tmu 0 3 21308 21309 21310\n\t\tf 3 18082 18083 -18082\n\t\tmu 0 3 21311 21312 21313\n\t\tf 3 18084 -18079 18085\n\t\tmu 0 3 21314 21315 21316\n\t\tf 3 -18081 18086 -18086\n\t\tmu 0 3 21317 21318 21319\n\t\tf 3 18087 -18061 18088\n\t\tmu 0 3 21320 21321 21322\n\t\tf 3 -18088 18089 18090\n\t\tmu 0 3 21323 21324 21325\n\t\tf 3 18091 18092 -18091\n\t\tmu 0 3 21326 21327 21328\n\t\tf 3 -18090 18093 18094\n\t\tmu 0 3 21329 21330 21331\n\t\tf 3 18095 18096 -18095\n\t\tmu 0 3 21332 21333 21334\n\t\tf 3 18097 -18094 18098\n\t\tmu 0 3 21335 21336 21337\n\t\tf 3 18099 18100 -18099\n\t\tmu 0 3 21338 21339 21340\n\t\tf 3 18101 -18100 -18089\n\t\tmu 0 3 21341 21342 21343\n\t\tf 3 -18096 18102 18103\n\t\tmu 0 3 21344 21345 21346\n\t\tf 3 18104 18105 -18104\n\t\tmu 0 3 21347 21348 21349\n\t\tf 3 -18105 18106 18107\n\t\tmu 0 3 21350 21351 21352\n\t\tf 3 18108 18109 -18108\n\t\tmu 0 3 21353 21354 21355\n\t\tf 3 18110 -18107 18111\n\t\tmu 0 3 21356 21357 21358\n\t\tf 3 18112 18113 -18112\n\t\tmu 0 3 21359 21360 21361\n\t\tf 3 -18113 -18103 18114\n\t\tmu 0 3 21362 21363 21364\n\t\tf 3 -18098 18115 -18115\n\t\tmu 0 3 21365 21366 21367\n\t\tf 3 -18109 18116 18117\n\t\tmu 0 3 21368 21369 21370\n\t\tf 3 18118 18119 -18118\n\t\tmu 0 3 21371 21372 21373\n\t\tf 3 -18119 18120 18121\n\t\tmu 0 3 21374 21375 21376\n\t\tf 3 18122 18123 -18122\n\t\tmu 0 3 21377 21378 21379\n\t\tf 3 18124 -18121 18125\n\t\tmu 0 3 21380 21381 21382\n\t\tf 3 -18125 18126 18127\n\t\tmu 0 3 21383 21384 21385\n\t\tf 3 18128 18129 -18128\n\t\tmu 0 3 21386 21387 21388\n\t\tf 3 -18123 -18130 18130\n\t\tmu 0 3 21389 21390 21391\n\t\tf 3 -18129 18131 18132\n\t\tmu 0 3 21392 21393 21394\n\t\tf 3 18133 18134 -18133\n\t\tmu 0 3 21395 21396 21397\n\t\tf 3 18135 18136 -18126\n\t\tmu 0 3 21398 21399 21400\n\t\tf 3 -18136 -18117 18137\n\t\tmu 0 3 21401 21402 21403\n\t\tf 3 -18111 18138 -18138\n\t\tmu 0 3 21404 21405 21406\n\t\tf 3 18139 18140 -18131\n\t\tmu 0 3 21407 21408 21409\n\t\tf 3 -18135 18141 18142\n\t\tmu 0 3 21410 21411 21412\n\t\tf 3 18143 -18140 -18143\n\t\tmu 0 3 21413 21414 21415\n\t\tf 3 18144 18145 18146\n\t\tmu 0 3 21416 21417 21418\n\t\tf 3 18147 18148 -18147\n\t\tmu 0 3 21419 21420 21421\n\t\tf 3 18149 -18146 18150\n\t\tmu 0 3 21422 21423 21424\n\t\tf 3 18151 18152 -18151\n\t\tmu 0 3 21425 21426 21427\n\t\tf 3 18153 18154 18155\n\t\tmu 0 3 21428 21429 21430\n\t\tf 3 18156 -18154 18157\n\t\tmu 0 3 21431 21432 21433\n\t\tf 3 18158 18159 -18156\n\t\tmu 0 3 21434 21435 21436\n\t\tf 3 18160 18161 -18158\n\t\tmu 0 3 21437 21438 21439\n\t\tf 3 18162 18163 18164\n\t\tmu 0 3 21440 21441 21442\n\t\tf 3 18165 18166 -18165\n\t\tmu 0 3 21443 21444 21445\n\t\tf 3 18167 -18167 18168\n\t\tmu 0 3 21446 21447 21448\n\t\tf 3 18169 18170 -18169\n\t\tmu 0 3 21449 21450 21451\n\t\tf 3 -18171 18171 18172\n\t\tmu 0 3 21452 21453 21454\n\t\tf 3 18173 18174 -18173\n\t\tmu 0 3 21455 21456 21457\n\t\tf 3 18175 18176 18177\n\t\tmu 0 3 21458 21459 21460\n\t\tf 3 18178 18179 -18178\n\t\tmu 0 3 21461 21462 21463\n\t\tf 3 -18179 18180 18181\n\t\tmu 0 3 21464 21465 21466\n\t\tf 3 18182 -18163 18183\n\t\tmu 0 3 21467 21468 21469\n\t\tf 3 -18176 18184 -18184\n\t\tmu 0 3 21470 21471 21472\n\t\tf 3 18185 18186 -18182\n\t\tmu 0 3 21473 21474 21475\n\t\tf 3 18187 -18174 18188\n\t\tmu 0 3 21476 21477 21478\n\t\tf 3 18189 18190 -18189\n\t\tmu 0 3 21479 21480 21481\n\t\tf 3 18191 18192 18193\n\t\tmu 0 3 21482 21483 21484\n\t\tf 3 18194 18195 -18194\n\t\tmu 0 3 21485 21486 21487\n\t\tf 3 18196 18197 18198\n\t\tmu 0 3 21488 21489 21490\n\t\tf 3 18199 18200 -18199\n\t\tmu 0 3 21491 21492 21493\n\t\tf 3 18201 18202 18203\n\t\tmu 0 3 21494 21495 21496\n\t\tf 3 18204 18205 -18204\n\t\tmu 0 3 21497 21498 21499\n\t\tf 3 18206 -18153 18207\n\t\tmu 0 3 21500 21501 21502\n\t\tf 3 18208 18209 -18208\n\t\tmu 0 3 21503 21504 21505\n\t\tf 3 -18210 18210 18211\n\t\tmu 0 3 21506 21507 21508\n\t\tf 3 18212 18213 -18212\n\t\tmu 0 3 21509 21510 21511\n\t\tf 3 18214 18215 18216\n\t\tmu 0 3 21512 21513 21514\n\t\tf 3 18217 18218 -18217\n\t\tmu 0 3 21515 21516 21517\n\t\tf 3 18219 18220 18221\n\t\tmu 0 3 21518 21519 21520\n\t\tf 3 -18215 18222 -18222\n\t\tmu 0 3 21521 21522 21523\n\t\tf 3 -18213 18223 18224\n\t\tmu 0 3 21524 21525 21526\n\t\tf 3 18225 18226 -18225\n\t\tmu 0 3 21527 21528 21529\n\t\tf 3 -18226 18227 18228\n\t\tmu 0 3 21530 21531 21532\n\t\tf 3 18229 18230 -18229\n\t\tmu 0 3 21533 21534 21535\n\t\tf 3 -18230 18231 18232\n\t\tmu 0 3 21536 21537 21538\n\t\tf 3 18233 18234 -18233\n\t\tmu 0 3 21539 21540 21541\n\t\tf 3 -18234 18235 18236\n\t\tmu 0 3 21542 21543 21544\n\t\tf 3 18237 18238 -18237\n\t\tmu 0 3 21545 21546 21547\n\t\tf 3 -18238 18239 18240\n\t\tmu 0 3 21548 21549 21550\n\t\tf 3 18241 18242 -18241\n\t\tmu 0 3 21551 21552 21553\n\t\tf 3 18243 -18242 18244\n\t\tmu 0 3 21554 21555 21556\n\t\tf 3 18245 18246 -18245\n\t\tmu 0 3 21557 21558 21559\n\t\tf 3 18247 18248 18249\n\t\tmu 0 3 21560 21561 21562\n\t\tf 3 18250 18251 -18250\n\t\tmu 0 3 21563 21564 21565\n\t\tf 3 -18251 18252 18253\n\t\tmu 0 3 21566 21567 21568\n\t\tf 3 18254 18255 18256\n\t\tmu 0 3 21569 21570 21571\n\t\tf 3 -18248 18257 -18257\n\t\tmu 0 3 21572 21573 21574\n\t\tf 3 18258 18259 18260\n\t\tmu 0 3 21575 21576 21577\n\t\tf 3 -18259 18261 -18254\n\t\tmu 0 3 21578 21579 21580\n\t\tf 3 18262 18263 -18261\n\t\tmu 0 3 21581 21582 21583\n\t\tf 3 -18263 18264 18265\n\t\tmu 0 3 21584 21585 21586\n\t\tf 3 18266 18267 -18266\n\t\tmu 0 3 21587 21588 21589\n\t\tf 3 -18267 18268 18269\n\t\tmu 0 3 21590 21591 21592\n\t\tf 3 -18220 18270 -18270\n\t\tmu 0 3 21593 21594 21595\n\t\tf 3 18271 18272 18273\n\t\tmu 0 3 21596 21597 21598\n\t\tf 3 18274 18275 -18274\n\t\tmu 0 3 21599 21600 21601\n\t\tf 3 18276 -18273 18277\n\t\tmu 0 3 21602 21603 21604\n\t\tf 3 18278 18279 -18278\n\t\tmu 0 3 21605 21606 21607\n\t\tf 3 18280 18281 -18280\n\t\tmu 0 3 21608 21609 21610\n\t\tf 3 18282 18283 18284\n\t\tmu 0 3 21611 21612 21613\n\t\tf 3 18285 18286 -18285\n\t\tmu 0 3 21614 21615 21616\n\t\tf 3 -18287 18287 18288\n\t\tmu 0 3 21617 21618 21619\n\t\tf 3 18289 18290 -18289\n\t\tmu 0 3 21620 21621 21622\n\t\tf 3 18291 -18284 18292\n\t\tmu 0 3 21623 21624 21625\n\t\tf 3 18293 18294 -18293\n\t\tmu 0 3 21626 21627 21628\n\t\tf 3 18295 -18295 18296\n\t\tmu 0 3 21629 21630 21631\n\t\tf 3 18297 18298 -18297\n\t\tmu 0 3 21632 21633 21634\n\t\tf 3 18299 -18299 18300\n\t\tmu 0 3 21635 21636 21637\n\t\tf 3 18301 18302 -18301\n\t\tmu 0 3 21638 21639 21640\n\t\tf 3 18303 -18303 18304\n\t\tmu 0 3 21641 21642 21643\n\t\tf 3 18305 18306 -18305\n\t\tmu 0 3 21644 21645 21646\n\t\tf 3 18307 18308 18309\n\t\tmu 0 3 21647 21648 21649\n\t\tf 3 18310 18311 -18310\n\t\tmu 0 3 21650 21651 21652\n\t\tf 3 18312 -18312 18313\n\t\tmu 0 3 21653 21654 21655\n\t\tf 3 18314 18315 -18314\n\t\tmu 0 3 21656 21657 21658\n\t\tf 3 18316 -18290 18317\n\t\tmu 0 3 21659 21660 21661\n\t\tf 3 18318 18319 -18318\n\t\tmu 0 3 21662 21663 21664\n\t\tf 3 -18320 18320 18321\n\t\tmu 0 3 21665 21666 21667\n\t\tf 3 18322 18323 -18322\n\t\tmu 0 3 21668 21669 21670\n\t\tf 3 18324 18325 18326\n\t\tmu 0 3 21671 21672 21673\n\t\tf 3 18327 18328 -18327\n\t\tmu 0 3 21674 21675 21676\n\t\tf 3 -18329 18329 18330\n\t\tmu 0 3 21677 21678 21679\n\t\tf 3 18331 18332 -18331\n\t\tmu 0 3 21680 21681 21682\n\t\tf 3 18333 -18326 18334\n\t\tmu 0 3 21683 21684 21685\n\t\tf 3 18335 18336 -18335\n\t\tmu 0 3 21686 21687 21688\n\t\tf 3 18337 -18337 18338\n\t\tmu 0 3 21689 21690 21691\n\t\tf 3 18339 18340 -18339\n\t\tmu 0 3 21692 21693 21694\n\t\tf 3 18341 -18341 18342\n\t\tmu 0 3 21695 21696 21697\n\t\tf 3 18343 18344 -18343\n\t\tmu 0 3 21698 21699 21700\n\t\tf 3 18345 -18345 18346\n\t\tmu 0 3 21701 21702 21703\n\t\tf 3 18347 18348 -18347\n\t\tmu 0 3 21704 21705 21706\n\t\tf 3 18349 -18349 18350\n\t\tmu 0 3 21707 21708 21709\n\t\tf 3 18351 18352 -18351\n\t\tmu 0 3 21710 21711 21712\n\t\tf 3 18353 -18353 18354\n\t\tmu 0 3 21713 21714 21715\n\t\tf 3 18355 18356 -18355\n\t\tmu 0 3 21716 21717 21718\n\t\tf 3 18357 -18332 18358\n\t\tmu 0 3 21719 21720 21721\n\t\tf 3 18359 18360 -18359\n\t\tmu 0 3 21722 21723 21724\n\t\tf 3 -18361 18361 18362\n\t\tmu 0 3 21725 21726 21727\n\t\tf 3 18363 18364 -18363\n\t\tmu 0 3 21728 21729 21730\n\t\tf 3 -18357 18365 18366\n\t\tmu 0 3 21731 21732 21733\n\t\tf 3 18367 18368 -18367\n\t\tmu 0 3 21734 21735 21736\n\t\tf 3 -18368 18369 18370\n\t\tmu 0 3 21737 21738 21739\n\t\tf 3 18371 18372 -18371\n\t\tmu 0 3 21740 21741 21742;\n\tsetAttr \".fc[9500:9999]\"\n\t\tf 3 18373 18374 18375\n\t\tmu 0 3 21743 21744 21745\n\t\tf 3 18376 18377 -18376\n\t\tmu 0 3 21746 21747 21748\n\t\tf 3 -18374 18378 18379\n\t\tmu 0 3 21749 21750 21751\n\t\tf 3 18380 18381 -18380\n\t\tmu 0 3 21752 21753 21754\n\t\tf 3 -18381 18382 18383\n\t\tmu 0 3 21755 21756 21757\n\t\tf 3 18384 18385 -18384\n\t\tmu 0 3 21758 21759 21760\n\t\tf 3 -18385 18386 18387\n\t\tmu 0 3 21761 21762 21763\n\t\tf 3 18388 18389 -18388\n\t\tmu 0 3 21764 21765 21766\n\t\tf 3 -18389 18390 18391\n\t\tmu 0 3 21767 21768 21769\n\t\tf 3 18392 18393 -18392\n\t\tmu 0 3 21770 21771 21772\n\t\tf 3 -18393 18394 18395\n\t\tmu 0 3 21773 21774 21775\n\t\tf 3 18396 18397 -18396\n\t\tmu 0 3 21776 21777 21778\n\t\tf 3 -18397 18398 18399\n\t\tmu 0 3 21779 21780 21781\n\t\tf 3 18400 18401 -18400\n\t\tmu 0 3 21782 21783 21784\n\t\tf 3 -18401 18402 18403\n\t\tmu 0 3 21785 21786 21787\n\t\tf 3 18404 18405 -18404\n\t\tmu 0 3 21788 21789 21790\n\t\tf 3 18406 -18405 18407\n\t\tmu 0 3 21791 21792 21793\n\t\tf 3 18408 18409 -18408\n\t\tmu 0 3 21794 21795 21796\n\t\tf 3 18410 -18410 18411\n\t\tmu 0 3 21797 21798 21799\n\t\tf 3 18412 18413 -18412\n\t\tmu 0 3 21800 21801 21802\n\t\tf 3 18414 -18377 18415\n\t\tmu 0 3 21803 21804 21805\n\t\tf 3 18416 18417 -18416\n\t\tmu 0 3 21806 21807 21808\n\t\tf 3 -18418 18418 18419\n\t\tmu 0 3 21809 21810 21811\n\t\tf 3 18420 18421 -18420\n\t\tmu 0 3 21812 21813 21814\n\t\tf 3 18422 18423 18424\n\t\tmu 0 3 21815 21816 21817\n\t\tf 3 18425 18426 -18425\n\t\tmu 0 3 21818 21819 21820\n\t\tf 3 -18426 18427 18428\n\t\tmu 0 3 21821 21822 21823\n\t\tf 3 18429 18430 -18429\n\t\tmu 0 3 21824 21825 21826\n\t\tf 3 18431 -18428 18432\n\t\tmu 0 3 21827 21828 21829\n\t\tf 3 18433 18434 -18433\n\t\tmu 0 3 21830 21831 21832\n\t\tf 3 -18434 18435 18436\n\t\tmu 0 3 21833 21834 21835\n\t\tf 3 18437 18438 -18437\n\t\tmu 0 3 21836 21837 21838\n\t\tf 3 18439 -18436 18440\n\t\tmu 0 3 21839 21840 21841\n\t\tf 3 18441 18442 -18441\n\t\tmu 0 3 21842 21843 21844\n\t\tf 3 -18442 18443 18444\n\t\tmu 0 3 21845 21846 21847\n\t\tf 3 18445 18446 -18445\n\t\tmu 0 3 21848 21849 21850\n\t\tf 3 18447 -18444 18448\n\t\tmu 0 3 21851 21852 21853\n\t\tf 3 18449 18450 -18449\n\t\tmu 0 3 21854 21855 21856\n\t\tf 3 -18450 -18424 18451\n\t\tmu 0 3 21857 21858 21859\n\t\tf 3 18452 18453 -18452\n\t\tmu 0 3 21860 21861 21862\n\t\tf 3 18454 18455 18456\n\t\tmu 0 3 21863 21864 21865\n\t\tf 3 18457 18458 -18457\n\t\tmu 0 3 21866 21867 21868\n\t\tf 3 -18459 18459 18460\n\t\tmu 0 3 21869 21870 21871\n\t\tf 3 18461 18462 -18461\n\t\tmu 0 3 21872 21873 21874\n\t\tf 3 18463 -18456 18464\n\t\tmu 0 3 21875 21876 21877\n\t\tf 3 -18292 18465 -18465\n\t\tmu 0 3 21878 21879 21880\n\t\tf 3 18466 -18466 18467\n\t\tmu 0 3 21881 21882 21883\n\t\tf 3 -18296 18468 -18468\n\t\tmu 0 3 21884 21885 21886\n\t\tf 3 18469 -18462 18470\n\t\tmu 0 3 21887 21888 21889\n\t\tf 3 18471 18472 -18471\n\t\tmu 0 3 21890 21891 21892\n\t\tf 3 -18473 18473 18474\n\t\tmu 0 3 21893 21894 21895\n\t\tf 3 18475 18476 -18475\n\t\tmu 0 3 21896 21897 21898\n\t\tf 3 18477 -18469 18478\n\t\tmu 0 3 21899 21900 21901\n\t\tf 3 -18300 18479 -18479\n\t\tmu 0 3 21902 21903 21904\n\t\tf 3 -18480 -18304 18480\n\t\tmu 0 3 21905 21906 21907\n\t\tf 3 18481 18482 -18481\n\t\tmu 0 3 21908 21909 21910\n\t\tf 3 18483 18484 18485\n\t\tmu 0 3 21911 21912 21913\n\t\tf 3 18486 18487 -18486\n\t\tmu 0 3 21914 21915 21916\n\t\tf 3 -18488 18488 18489\n\t\tmu 0 3 21917 21918 21919\n\t\tf 3 18490 18491 -18490\n\t\tmu 0 3 21920 21921 21922\n\t\tf 3 18492 18493 18494\n\t\tmu 0 3 21923 21924 21925\n\t\tf 3 18495 18496 -18495\n\t\tmu 0 3 21926 21927 21928\n\t\tf 3 -18493 18497 18498\n\t\tmu 0 3 21929 21930 21931\n\t\tf 3 18499 18500 -18499\n\t\tmu 0 3 21932 21933 21934\n\t\tf 3 -18500 18501 18502\n\t\tmu 0 3 21935 21936 21937\n\t\tf 3 18503 18504 -18503\n\t\tmu 0 3 21938 21939 21940\n\t\tf 3 -18504 18505 18506\n\t\tmu 0 3 21941 21942 21943\n\t\tf 3 18507 18508 -18507\n\t\tmu 0 3 21944 21945 21946\n\t\tf 3 -18496 18509 18510\n\t\tmu 0 3 21947 21948 21949\n\t\tf 3 18511 18512 -18511\n\t\tmu 0 3 21950 21951 21952\n\t\tf 3 -18512 18513 18514\n\t\tmu 0 3 21953 21954 21955\n\t\tf 3 18515 18516 -18515\n\t\tmu 0 3 21956 21957 21958\n\t\tf 3 -18516 18517 18518\n\t\tmu 0 3 21959 21960 21961\n\t\tf 3 18519 18520 -18519\n\t\tmu 0 3 21962 21963 21964\n\t\tf 3 -18520 18521 18522\n\t\tmu 0 3 21965 21966 21967\n\t\tf 3 18523 18524 -18523\n\t\tmu 0 3 21968 21969 21970\n\t\tf 3 -18524 18525 18526\n\t\tmu 0 3 21971 21972 21973\n\t\tf 3 18527 18528 -18527\n\t\tmu 0 3 21974 21975 21976\n\t\tf 3 -18528 18529 18530\n\t\tmu 0 3 21977 21978 21979\n\t\tf 3 18531 18532 -18531\n\t\tmu 0 3 21980 21981 21982\n\t\tf 3 -18532 18533 18534\n\t\tmu 0 3 21983 21984 21985\n\t\tf 3 18535 18536 -18535\n\t\tmu 0 3 21986 21987 21988\n\t\tf 3 -18536 18537 18538\n\t\tmu 0 3 21989 21990 21991\n\t\tf 3 18539 18540 -18539\n\t\tmu 0 3 21992 21993 21994\n\t\tf 3 18541 18542 18543\n\t\tmu 0 3 21995 21996 21997\n\t\tf 3 18544 18545 -18544\n\t\tmu 0 3 21998 21999 22000\n\t\tf 3 -18542 18546 18547\n\t\tmu 0 3 22001 22002 22003\n\t\tf 3 18548 18549 -18548\n\t\tmu 0 3 22004 22005 22006\n\t\tf 3 18550 18551 18552\n\t\tmu 0 3 22007 22008 22009\n\t\tf 3 18553 18554 -18553\n\t\tmu 0 3 22010 22011 22012\n\t\tf 3 -18554 18555 18556\n\t\tmu 0 3 22013 22014 22015\n\t\tf 3 18557 18558 -18557\n\t\tmu 0 3 22016 22017 22018\n\t\tf 3 -18549 18559 18560\n\t\tmu 0 3 22019 22020 22021\n\t\tf 3 18561 -18472 -18561\n\t\tmu 0 3 22022 22023 22024\n\t\tf 3 -18562 18562 18563\n\t\tmu 0 3 22025 22026 22027\n\t\tf 3 18564 -18474 -18564\n\t\tmu 0 3 22028 22029 22030\n\t\tf 3 18565 18566 18567\n\t\tmu 0 3 22031 22032 22033\n\t\tf 3 18568 18569 -18568\n\t\tmu 0 3 22034 22035 22036\n\t\tf 3 18570 -18567 18571\n\t\tmu 0 3 22037 22038 22039\n\t\tf 3 18572 -16494 -18572\n\t\tmu 0 3 22040 22041 22042\n\t\tf 3 18573 18574 18575\n\t\tmu 0 3 5418 2730 2915\n\t\tf 3 18576 18577 -18576\n\t\tmu 0 3 2915 5885 5418\n\t\tf 3 18578 18579 18580\n\t\tmu 0 3 5962 2067 4799\n\t\tf 3 -18581 18581 18582\n\t\tmu 0 3 5962 4799 2163\n\t\tf 3 18583 18584 -18582\n\t\tmu 0 3 4799 4587 2163\n\t\tf 3 -18584 18585 18586\n\t\tmu 0 3 4587 4799 4795\n\t\tf 3 18587 18588 -18587\n\t\tmu 0 3 4795 1737 4587\n\t\tf 3 18589 18590 18591\n\t\tmu 0 3 5136 2659 22043\n\t\tf 3 18592 18593 -18592\n\t\tmu 0 3 22044 22045 5136\n\t\tf 3 18594 -18590 18595\n\t\tmu 0 3 747 2659 5136\n\t\tf 3 18596 18597 -18596\n\t\tmu 0 3 5136 5384 747\n\t\tf 3 18598 18599 18600\n\t\tmu 0 3 937 5230 4008\n\t\tf 3 18601 18602 -18601\n\t\tmu 0 3 4008 4467 937\n\t\tf 3 18603 18604 18605\n\t\tmu 0 3 5701 2478 5323\n\t\tf 3 18606 18607 -18606\n\t\tmu 0 3 5323 3625 5701\n\t\tf 3 18608 18609 18610\n\t\tmu 0 3 34 22046 22047\n\t\tf 3 18611 18612 -18611\n\t\tmu 0 3 22048 3017 34\n\t\tf 3 18613 18614 18615\n\t\tmu 0 3 2087 4611 4223\n\t\tf 3 18616 18617 -18616\n\t\tmu 0 3 4223 3417 2087\n\t\tf 3 18618 18619 18620\n\t\tmu 0 3 2418 2676 4940\n\t\tf 3 18621 18622 -18621\n\t\tmu 0 3 4940 332 2418\n\t\tf 3 18623 -18620 18624\n\t\tmu 0 3 2093 4940 2676\n\t\tf 3 18625 18626 -18625\n\t\tmu 0 3 2676 4923 2093\n\t\tf 3 -18623 18627 18628\n\t\tmu 0 3 2418 332 2031\n\t\tf 3 18629 -18627 18630\n\t\tmu 0 3 2031 2093 4923\n\t\tf 3 -18628 18631 18632\n\t\tmu 0 3 2031 332 977\n\t\tf 3 18633 18634 -18633\n\t\tmu 0 3 977 534 2031\n\t\tf 3 18635 18636 -18629\n\t\tmu 0 3 2031 4547 2418\n\t\tf 3 18637 -18636 -18631\n\t\tmu 0 3 4923 4547 2031\n\t\tf 3 18638 18639 18640\n\t\tmu 0 3 3209 6273 4320\n\t\tf 3 18641 18642 -18641\n\t\tmu 0 3 4320 6158 3209\n\t\tf 3 18643 18644 18645\n\t\tmu 0 3 2824 6160 2822\n\t\tf 3 18646 18647 -18646\n\t\tmu 0 3 2822 5471 2824\n\t\tf 3 18648 18649 18650\n\t\tmu 0 3 22049 22050 22051\n\t\tf 3 18651 18652 -18651\n\t\tmu 0 3 22052 22053 22054\n\t\tf 3 18653 18654 18655\n\t\tmu 0 3 22055 22056 22057\n\t\tf 3 -18656 18656 18657\n\t\tmu 0 3 22058 22059 22060\n\t\tf 3 -18658 18658 18659\n\t\tmu 0 3 22061 22062 22063\n\t\tf 3 18660 -18655 18661\n\t\tmu 0 3 22064 22065 22066\n\t\tf 3 18662 18663 -18662\n\t\tmu 0 3 22067 22068 22069\n\t\tf 3 18664 18665 18666\n\t\tmu 0 3 22070 22071 22072\n\t\tf 3 18667 18668 -18667\n\t\tmu 0 3 22073 22074 22075\n\t\tf 3 -18669 18669 18670\n\t\tmu 0 3 22076 22077 747\n\t\tf 3 -18598 18671 -18671\n\t\tmu 0 3 747 5384 22078\n\t\tf 3 18672 18673 18674\n\t\tmu 0 3 22079 22080 22081\n\t\tf 3 18675 18676 -18675\n\t\tmu 0 3 22082 22083 22084\n\t\tf 3 18677 18678 18679\n\t\tmu 0 3 22085 22086 22087\n\t\tf 3 18680 18681 -18680\n\t\tmu 0 3 22088 22089 22090\n\t\tf 3 18682 18683 18684\n\t\tmu 0 3 22091 22092 22093\n\t\tf 3 18685 18686 -18685\n\t\tmu 0 3 22094 22095 22096\n\t\tf 3 18687 18688 18689\n\t\tmu 0 3 22097 22098 22099\n\t\tf 3 18690 18691 -18690\n\t\tmu 0 3 22100 22101 22102\n\t\tf 3 18692 18693 18694\n\t\tmu 0 3 22103 22104 22105\n\t\tf 3 18695 18696 -18695\n\t\tmu 0 3 22106 22107 22108\n\t\tf 3 -18693 18697 18698\n\t\tmu 0 3 22109 22110 22111\n\t\tf 3 18699 18700 -18699\n\t\tmu 0 3 22112 22113 22114\n\t\tf 3 18701 -18696 18702\n\t\tmu 0 3 22115 22116 22117\n\t\tf 3 -18700 18703 18704\n\t\tmu 0 3 22118 22119 22120\n\t\tf 3 18705 -18702 18706\n\t\tmu 0 3 977 22121 22122\n\t\tf 3 18707 -18634 -18707\n\t\tmu 0 3 22123 534 977\n\t\tf 3 18708 18709 -18703\n\t\tmu 0 3 22124 22125 22126\n\t\tf 3 -18710 18710 -18705\n\t\tmu 0 3 22127 22128 22129\n\t\tf 3 -18643 18711 18712\n\t\tmu 0 3 3209 6158 22130\n\t\tf 3 18713 18714 -18713\n\t\tmu 0 3 22131 22132 3209\n\t\tf 3 18715 -18644 18716\n\t\tmu 0 3 22133 6160 2824\n\t\tf 3 18717 18718 -18717\n\t\tmu 0 3 2824 22134 22135\n\t\tf 3 18719 18720 18721\n\t\tmu 0 3 3439 856 5670\n\t\tf 3 18722 18723 -18722\n\t\tmu 0 3 5670 4226 3439\n\t\tf 3 -18723 18724 18725\n\t\tmu 0 3 4226 5670 2137\n\t\tf 3 18726 18727 -18726\n\t\tmu 0 3 2137 5069 4226\n\t\tf 3 -18727 18728 18729\n\t\tmu 0 3 5069 2137 5373\n\t\tf 3 18730 18731 -18730\n\t\tmu 0 3 5373 1479 5069\n\t\tf 3 -18731 18732 18733\n\t\tmu 0 3 1479 5373 4043\n\t\tf 3 18734 18735 -18734\n\t\tmu 0 3 4043 6136 1479\n\t\tf 3 -18735 18736 18737\n\t\tmu 0 3 6136 4043 3779\n\t\tf 3 18738 18739 -18738\n\t\tmu 0 3 3779 173 6136\n\t\tf 3 18740 -18739 18741\n\t\tmu 0 3 368 173 3779\n\t\tf 3 18742 18743 -18742\n\t\tmu 0 3 3779 4372 368\n\t\tf 3 -18744 18744 18745\n\t\tmu 0 3 368 4372 3747\n\t\tf 3 18746 18747 -18746\n\t\tmu 0 3 3747 852 368\n\t\tf 3 18748 -18747 18749\n\t\tmu 0 3 5615 852 3747\n\t\tf 3 18750 18751 -18750\n\t\tmu 0 3 3747 4960 5615\n\t\tf 3 -18752 18752 18753\n\t\tmu 0 3 5615 4960 6519\n\t\tf 3 18754 18755 -18754\n\t\tmu 0 3 6519 153 5615\n\t\tf 3 18756 -18755 18757\n\t\tmu 0 3 3326 153 6519\n\t\tf 3 18758 18759 -18758\n\t\tmu 0 3 6519 5871 3326\n\t\tf 3 -18760 18760 18761\n\t\tmu 0 3 3326 5871 3936\n\t\tf 3 18762 18763 -18762\n\t\tmu 0 3 3936 759 3326\n\t\tf 3 18764 18765 18766\n\t\tmu 0 3 22136 22137 1616\n\t\tf 3 18767 18768 -18767\n\t\tmu 0 3 1616 4173 22138\n\t\tf 3 -18768 18769 18770\n\t\tmu 0 3 4173 1616 4900\n\t\tf 3 18771 18772 -18771\n\t\tmu 0 3 4900 2480 4173\n\t\tf 3 -18772 18773 18774\n\t\tmu 0 3 2480 4900 5040\n\t\tf 3 18775 18776 -18775\n\t\tmu 0 3 5040 3509 2480\n\t\tf 3 -18776 18777 18778\n\t\tmu 0 3 3509 5040 6101\n\t\tf 3 18779 18780 -18779\n\t\tmu 0 3 6101 6437 3509\n\t\tf 3 -18780 18781 18782\n\t\tmu 0 3 6437 6101 4232\n\t\tf 3 18783 18784 -18783\n\t\tmu 0 3 4232 4669 6437\n\t\tf 3 18785 18786 18787\n\t\tmu 0 3 996 2232 2228\n\t\tf 3 18788 18789 -18788\n\t\tmu 0 3 2228 5249 996\n\t\tf 3 18790 -18787 18791\n\t\tmu 0 3 22139 2228 2232\n\t\tf 3 18792 18793 -18792\n\t\tmu 0 3 2232 22140 22141\n\t\tf 3 18794 18795 18796\n\t\tmu 0 3 1166 1864 22142\n\t\tf 3 18797 18798 -18797\n\t\tmu 0 3 22143 22144 1166\n\t\tf 3 18799 -18796 18800\n\t\tmu 0 3 22145 22146 1864\n\t\tf 3 18801 18802 -18801\n\t\tmu 0 3 1864 1146 22147\n\t\tf 3 18803 -18803 18804\n\t\tmu 0 3 22148 22149 1146\n\t\tf 3 18805 18806 -18805\n\t\tmu 0 3 1146 4816 22150\n\t\tf 3 18807 -18807 18808\n\t\tmu 0 3 22151 22152 4816\n\t\tf 3 18809 18810 -18809\n\t\tmu 0 3 4816 880 22153\n\t\tf 3 18811 -18811 18812\n\t\tmu 0 3 22154 22155 880\n\t\tf 3 18813 18814 -18813\n\t\tmu 0 3 880 5427 22156\n\t\tf 3 -18815 18815 18816\n\t\tmu 0 3 22157 5427 1757\n\t\tf 3 18817 18818 -18817\n\t\tmu 0 3 1757 22158 22159\n\t\tf 3 18819 -18818 18820\n\t\tmu 0 3 22160 22161 1757\n\t\tf 3 18821 18822 -18821\n\t\tmu 0 3 1757 636 22162\n\t\tf 3 18823 -18823 18824\n\t\tmu 0 3 22163 22164 636\n\t\tf 3 18825 18826 -18825\n\t\tmu 0 3 636 1639 22165\n\t\tf 3 18827 -18827 18828\n\t\tmu 0 3 22166 22167 1639\n\t\tf 3 18829 18830 -18829\n\t\tmu 0 3 1639 2101 22168\n\t\tf 3 18831 -18831 18832\n\t\tmu 0 3 22169 22170 2101\n\t\tf 3 18833 18834 -18833\n\t\tmu 0 3 2101 403 22171\n\t\tf 3 18835 -18835 18836\n\t\tmu 0 3 22172 22173 403\n\t\tf 3 18837 18838 -18837\n\t\tmu 0 3 403 2382 22174\n\t\tf 3 18839 -18839 18840\n\t\tmu 0 3 22175 22176 2382\n\t\tf 3 18841 18842 -18841\n\t\tmu 0 3 2382 1065 22177\n\t\tf 3 18843 -18843 18844\n\t\tmu 0 3 22178 22179 1065\n\t\tf 3 18845 18846 -18845\n\t\tmu 0 3 1065 1322 22180\n\t\tf 3 18847 -18847 18848\n\t\tmu 0 3 22181 22182 1322\n\t\tf 3 18849 18850 -18849\n\t\tmu 0 3 1322 3679 22183\n\t\tf 3 -18851 18851 18852\n\t\tmu 0 3 22184 3679 2292\n\t\tf 3 18853 18854 -18853\n\t\tmu 0 3 2292 22185 22186\n\t\tf 3 18855 -18854 18856\n\t\tmu 0 3 22187 22188 2292\n\t\tf 3 18857 18858 -18857\n\t\tmu 0 3 2292 4129 22189\n\t\tf 3 18859 -18859 18860\n\t\tmu 0 3 22190 22191 4129\n\t\tf 3 18861 18862 -18861\n\t\tmu 0 3 4129 6309 22192\n\t\tf 3 -18863 18863 18864\n\t\tmu 0 3 22193 6309 1945\n\t\tf 3 18865 18866 -18865\n\t\tmu 0 3 1945 22194 22195\n\t\tf 3 18867 18868 18869\n\t\tmu 0 3 22196 22197 22198\n\t\tf 3 18870 18871 -18870\n\t\tmu 0 3 22199 22200 22201\n\t\tf 3 18872 -18869 18873\n\t\tmu 0 3 22202 22203 22204\n\t\tf 3 18874 18875 -18874\n\t\tmu 0 3 22205 22206 22207\n\t\tf 3 18876 -18876 18877\n\t\tmu 0 3 22208 22209 22210\n\t\tf 3 18878 18879 -18878\n\t\tmu 0 3 22211 22212 22213\n\t\tf 3 18880 -18880 18881\n\t\tmu 0 3 22214 22215 22216\n\t\tf 3 18882 18883 -18882\n\t\tmu 0 3 22217 22218 22219\n\t\tf 3 18884 -18884 18885\n\t\tmu 0 3 22220 22221 22222\n\t\tf 3 18886 18887 -18886\n\t\tmu 0 3 22223 22224 22225\n\t\tf 3 -18888 18888 18889\n\t\tmu 0 3 22226 22227 22228\n\t\tf 3 18890 18891 -18890\n\t\tmu 0 3 22229 22230 22231\n\t\tf 3 18892 -18891 18893\n\t\tmu 0 3 22232 22233 22234\n\t\tf 3 18894 18895 -18894\n\t\tmu 0 3 22235 22236 22237\n\t\tf 3 -18896 18896 18897\n\t\tmu 0 3 22238 22239 22240\n\t\tf 3 18898 18899 -18898\n\t\tmu 0 3 22241 22242 22243\n\t\tf 3 18900 -18899 18901\n\t\tmu 0 3 22244 22245 22246\n\t\tf 3 18902 18903 -18902\n\t\tmu 0 3 22247 22248 22249\n\t\tf 3 -18904 18904 18905\n\t\tmu 0 3 22250 22251 22252\n\t\tf 3 18906 18907 -18906\n\t\tmu 0 3 22253 22254 22255\n\t\tf 3 18908 -18907 18909\n\t\tmu 0 3 22256 22257 22258\n\t\tf 3 18910 18911 -18910\n\t\tmu 0 3 22259 22260 22261\n\t\tf 3 18912 18913 18914\n\t\tmu 0 3 22262 22263 22264\n\t\tf 3 18915 18916 -18915\n\t\tmu 0 3 22265 22266 22267\n\t\tf 3 18917 -18917 18918\n\t\tmu 0 3 22268 22269 22270\n\t\tf 3 18919 18920 -18919\n\t\tmu 0 3 22271 22272 22273\n\t\tf 3 -18921 18921 18922\n\t\tmu 0 3 22274 22275 22276\n\t\tf 3 18923 18924 -18923\n\t\tmu 0 3 22277 22278 22279\n\t\tf 3 -18924 18925 18926\n\t\tmu 0 3 22280 22281 22282\n\t\tf 3 18927 18928 -18927\n\t\tmu 0 3 22283 22284 22285\n\t\tf 3 -18928 18929 18930\n\t\tmu 0 3 22286 22287 22288\n\t\tf 3 18931 18932 -18931\n\t\tmu 0 3 22289 22290 22291\n\t\tf 3 18933 18934 18935\n\t\tmu 0 3 22292 22293 22294\n\t\tf 3 18936 18937 -18936\n\t\tmu 0 3 22295 22296 22297\n\t\tf 3 -18935 18938 18939\n\t\tmu 0 3 22298 22299 22300\n\t\tf 3 18940 18941 -18940\n\t\tmu 0 3 22301 22302 22303\n\t\tf 3 18942 18943 18944\n\t\tmu 0 3 22304 22305 22306\n\t\tf 3 18945 18946 -18945\n\t\tmu 0 3 22307 22308 22309\n\t\tf 3 -18946 18947 18948\n\t\tmu 0 3 22310 22311 22312\n\t\tf 3 18949 18950 -18949\n\t\tmu 0 3 22313 22314 22315\n\t\tf 3 -18950 18951 18952\n\t\tmu 0 3 22316 22317 22318\n\t\tf 3 18953 18954 -18953\n\t\tmu 0 3 22319 22320 22321\n\t\tf 3 -18954 18955 18956\n\t\tmu 0 3 22322 22323 22324\n\t\tf 3 18957 18958 -18957\n\t\tmu 0 3 22325 22326 22327\n\t\tf 3 -18958 18959 18960\n\t\tmu 0 3 22328 22329 22330\n\t\tf 3 18961 18962 -18961\n\t\tmu 0 3 22331 22332 22333\n\t\tf 3 18963 -18962 18964\n\t\tmu 0 3 22334 22335 22336\n\t\tf 3 18965 18966 -18965\n\t\tmu 0 3 22337 22338 22339\n\t\tf 3 -18967 18967 18968\n\t\tmu 0 3 22340 22341 22342\n\t\tf 3 18969 18970 -18969\n\t\tmu 0 3 22343 22344 22345\n\t\tf 3 -18970 18971 18972\n\t\tmu 0 3 22346 22347 22348\n\t\tf 3 18973 18974 -18973\n\t\tmu 0 3 22349 22350 22351\n\t\tf 3 -18974 18975 18976\n\t\tmu 0 3 22352 22353 22354\n\t\tf 3 18977 18978 -18977\n\t\tmu 0 3 22355 22356 22357\n\t\tf 3 -18978 18979 18980\n\t\tmu 0 3 22358 22359 22360\n\t\tf 3 18981 18982 -18981\n\t\tmu 0 3 22361 22362 22363\n\t\tf 3 -18982 18983 18984\n\t\tmu 0 3 22364 22365 22366\n\t\tf 3 18985 18986 -18985\n\t\tmu 0 3 22367 22368 22369\n\t\tf 3 -18986 18987 18988\n\t\tmu 0 3 22370 22371 22372\n\t\tf 3 18989 18990 -18989\n\t\tmu 0 3 22373 22374 22375\n\t\tf 3 -18990 18991 18992\n\t\tmu 0 3 22376 22377 22378\n\t\tf 3 18993 18994 -18993\n\t\tmu 0 3 22379 22380 22381\n\t\tf 3 -18994 18995 18996\n\t\tmu 0 3 22382 22383 22384\n\t\tf 3 18997 18998 -18997\n\t\tmu 0 3 22385 22386 22387\n\t\tf 3 -18998 18999 19000\n\t\tmu 0 3 22388 22389 22390\n\t\tf 3 19001 19002 -19001\n\t\tmu 0 3 22391 22392 22393\n\t\tf 3 -19002 19003 19004\n\t\tmu 0 3 22394 22395 22396\n\t\tf 3 19005 19006 -19005\n\t\tmu 0 3 22397 22398 22399\n\t\tf 3 -19006 19007 19008\n\t\tmu 0 3 22400 22401 22402\n\t\tf 3 19009 19010 -19009\n\t\tmu 0 3 22403 22404 22405\n\t\tf 3 19011 -19010 19012\n\t\tmu 0 3 22406 22407 22408\n\t\tf 3 19013 19014 -19013\n\t\tmu 0 3 22409 22410 22411\n\t\tf 3 19015 19016 19017\n\t\tmu 0 3 4871 1365 4014\n\t\tf 3 -19018 19018 19019\n\t\tmu 0 3 4871 4014 770\n\t\tf 3 -19020 19020 19021\n\t\tmu 0 3 4871 770 6299\n\t\tf 3 -19022 19022 19023\n\t\tmu 0 3 4871 6299 637\n\t\tf 3 -19024 19024 19025\n\t\tmu 0 3 4871 637 4730\n\t\tf 3 -19026 19026 19027\n\t\tmu 0 3 4871 4730 3098\n\t\tf 3 -19028 19028 19029\n\t\tmu 0 3 4871 3098 803\n\t\tf 3 -19030 19030 19031\n\t\tmu 0 3 4871 803 2687\n\t\tf 3 -19032 19032 19033\n\t\tmu 0 3 4871 2687 4125\n\t\tf 3 -19034 19034 19035\n\t\tmu 0 3 4871 4125 3756\n\t\tf 3 -19036 19036 19037\n\t\tmu 0 3 4871 3756 6265\n\t\tf 3 -19038 19038 19039\n\t\tmu 0 3 4871 6265 1462\n\t\tf 3 -19040 19040 19041\n\t\tmu 0 3 4871 1462 2108\n\t\tf 3 -19042 19042 19043\n\t\tmu 0 3 4871 2108 3122\n\t\tf 3 -19044 19044 19045\n\t\tmu 0 3 4871 3122 3740\n\t\tf 3 -19046 19046 -19016\n\t\tmu 0 3 4871 3740 1365\n\t\tf 3 19047 -19021 19048\n\t\tmu 0 3 1041 6299 770\n\t\tf 3 19049 19050 -19049\n\t\tmu 0 3 770 4793 1041\n\t\tf 3 -19048 19051 19052\n\t\tmu 0 3 6299 1041 2835\n\t\tf 3 19053 -19023 -19053\n\t\tmu 0 3 2835 637 6299\n\t\tf 3 -19054 19054 19055\n\t\tmu 0 3 637 2835 5263\n\t\tf 3 19056 -19025 -19056\n\t\tmu 0 3 5263 4730 637\n\t\tf 3 -19057 19057 19058\n\t\tmu 0 3 4730 5263 598\n\t\tf 3 19059 -19027 -19059\n\t\tmu 0 3 598 3098 4730\n\t\tf 3 -19060 19060 19061\n\t\tmu 0 3 3098 598 4692\n\t\tf 3 19062 -19029 -19062\n\t\tmu 0 3 4692 803 3098\n\t\tf 3 -19063 19063 19064\n\t\tmu 0 3 803 4692 1542\n\t\tf 3 19065 -19031 -19065\n\t\tmu 0 3 1542 2687 803\n\t\tf 3 -19066 19066 19067\n\t\tmu 0 3 2687 1542 3431\n\t\tf 3 19068 -19033 -19068\n\t\tmu 0 3 3431 4125 2687\n\t\tf 3 -19069 19069 19070\n\t\tmu 0 3 4125 3431 1604\n\t\tf 3 19071 -19035 -19071\n\t\tmu 0 3 1604 3756 4125\n\t\tf 3 -19072 19072 19073\n\t\tmu 0 3 3756 1604 3227\n\t\tf 3 19074 -19037 -19074\n\t\tmu 0 3 3227 6265 3756\n\t\tf 3 -19075 19075 19076\n\t\tmu 0 3 6265 3227 4192\n\t\tf 3 19077 -19039 -19077\n\t\tmu 0 3 4192 1462 6265\n\t\tf 3 -19078 19078 19079\n\t\tmu 0 3 1462 4192 4165\n\t\tf 3 19080 -19041 -19080\n\t\tmu 0 3 4165 2108 1462\n\t\tf 3 -19081 19081 19082\n\t\tmu 0 3 2108 4165 2513\n\t\tf 3 19083 -19043 -19083\n\t\tmu 0 3 2513 3122 2108\n\t\tf 3 -19084 19084 19085\n\t\tmu 0 3 3122 2513 2831\n\t\tf 3 19086 -19045 -19086\n\t\tmu 0 3 2831 3740 3122\n\t\tf 3 -19087 19087 19088\n\t\tmu 0 3 3740 2831 6494\n\t\tf 3 19089 -19047 -19089\n\t\tmu 0 3 6494 1365 3740\n\t\tf 3 -19090 19090 19091\n\t\tmu 0 3 1365 6494 1607\n\t\tf 3 19092 -19017 -19092\n\t\tmu 0 3 1607 4014 1365\n\t\tf 3 -19093 19093 19094\n\t\tmu 0 3 4014 1607 4793\n\t\tf 3 -19050 -19019 -19095\n\t\tmu 0 3 4793 770 4014\n\t\tf 3 19095 -19091 19096\n\t\tmu 0 3 6272 1607 6494\n\t\tf 3 19097 19098 -19097\n\t\tmu 0 3 6494 796 6272\n\t\tf 3 -19098 -19088 19099\n\t\tmu 0 3 796 6494 2831\n\t\tf 3 -19096 19100 19101\n\t\tmu 0 3 1607 6272 3454\n\t\tf 3 19102 -19094 -19102\n\t\tmu 0 3 3454 4793 1607\n\t\tf 3 -19103 19103 19104\n\t\tmu 0 3 4793 3454 5439\n\t\tf 3 19105 -19051 -19105\n\t\tmu 0 3 5439 1041 4793\n\t\tf 3 -19106 19106 19107\n\t\tmu 0 3 1041 5439 3024\n\t\tf 3 19108 -19052 -19108\n\t\tmu 0 3 3024 2835 1041\n\t\tf 3 -19109 19109 19110\n\t\tmu 0 3 2835 3024 4055\n\t\tf 3 19111 -19055 -19111\n\t\tmu 0 3 4055 5263 2835\n\t\tf 3 -19112 19112 19113\n\t\tmu 0 3 5263 4055 5581\n\t\tf 3 19114 -19058 -19114\n\t\tmu 0 3 5581 598 5263\n\t\tf 3 -19115 19115 19116\n\t\tmu 0 3 598 5581 6434\n\t\tf 3 19117 -19061 -19117\n\t\tmu 0 3 6434 4692 598\n\t\tf 3 -19118 19118 19119\n\t\tmu 0 3 4692 6434 4606\n\t\tf 3 19120 -19064 -19120\n\t\tmu 0 3 4606 1542 4692\n\t\tf 3 -19121 19121 19122\n\t\tmu 0 3 1542 4606 138\n\t\tf 3 19123 -19067 -19123\n\t\tmu 0 3 138 3431 1542\n\t\tf 3 -19124 19124 19125\n\t\tmu 0 3 3431 138 6304\n\t\tf 3 19126 -19070 -19126\n\t\tmu 0 3 6304 1604 3431\n\t\tf 3 -19127 19127 19128\n\t\tmu 0 3 1604 6304 1353\n\t\tf 3 19129 -19073 -19129\n\t\tmu 0 3 1353 3227 1604\n\t\tf 3 -19130 19130 19131\n\t\tmu 0 3 3227 1353 2178\n\t\tf 3 19132 -19076 -19132\n\t\tmu 0 3 2178 4192 3227\n\t\tf 3 -19133 19133 19134\n\t\tmu 0 3 4192 2178 2270\n\t\tf 3 19135 -19079 -19135\n\t\tmu 0 3 2270 4165 4192\n\t\tf 3 -19136 19136 19137\n\t\tmu 0 3 4165 2270 4496\n\t\tf 3 19138 -19082 -19138\n\t\tmu 0 3 4496 2513 4165\n\t\tf 3 -19139 19139 19140\n\t\tmu 0 3 2513 4496 5662\n\t\tf 3 19141 -19085 -19141\n\t\tmu 0 3 5662 2831 2513\n\t\tf 3 -19142 19142 -19100\n\t\tmu 0 3 2831 5662 796\n\t\tf 3 19143 19144 19145\n\t\tmu 0 3 22412 22413 22414\n\t\tf 3 19146 19147 -19144\n\t\tmu 0 3 22415 22416 22417\n\t\tf 3 19148 19149 -19147\n\t\tmu 0 3 22418 22419 22420\n\t\tf 3 19150 19151 -19149\n\t\tmu 0 3 22421 22422 22423\n\t\tf 3 19152 19153 -19151\n\t\tmu 0 3 22424 22425 22426\n\t\tf 3 19154 19155 -19153\n\t\tmu 0 3 22427 22428 22429\n\t\tf 3 19156 19157 -19155\n\t\tmu 0 3 22430 22431 22432\n\t\tf 3 19158 19159 -19157\n\t\tmu 0 3 22433 22434 22435\n\t\tf 3 19160 19161 -19159\n\t\tmu 0 3 22436 22437 22438\n\t\tf 3 19162 19163 -19161\n\t\tmu 0 3 22439 22440 22441\n\t\tf 3 19164 19165 -19163\n\t\tmu 0 3 22442 22443 22444\n\t\tf 3 19166 19167 -19165\n\t\tmu 0 3 22445 22446 22447\n\t\tf 3 19168 19169 -19167\n\t\tmu 0 3 22448 22449 22450\n\t\tf 3 19170 19171 -19169\n\t\tmu 0 3 22451 22452 22453\n\t\tf 3 19172 19173 -19171\n\t\tmu 0 3 22454 22455 22456\n\t\tf 3 -19146 19174 -19173\n\t\tmu 0 3 22457 22458 22459\n\t\tf 3 -19150 19175 19176\n\t\tmu 0 3 22460 22461 22462\n\t\tf 3 -19152 19177 19178\n\t\tmu 0 3 22463 22464 22465\n\t\tf 3 19179 -19176 -19179\n\t\tmu 0 3 22466 22467 22468\n\t\tf 3 -19156 19180 19181\n\t\tmu 0 3 22469 22470 22471\n\t\tf 3 -19158 19182 19183\n\t\tmu 0 3 22472 22473 22474\n\t\tf 3 19184 -19181 -19184\n\t\tmu 0 3 22475 22476 22477\n\t\tf 3 -19162 19185 19186\n\t\tmu 0 3 22478 22479 22480\n\t\tf 3 -19164 19187 19188\n\t\tmu 0 3 22481 22482 22483\n\t\tf 3 19189 -19186 -19189\n\t\tmu 0 3 22484 22485 22486\n\t\tf 3 -19168 19190 19191\n\t\tmu 0 3 22487 22488 22489\n\t\tf 3 -19170 19192 19193\n\t\tmu 0 3 22490 22491 22492\n\t\tf 3 19194 -19191 -19194\n\t\tmu 0 3 22493 22494 22495\n\t\tf 3 -19174 19195 19196\n\t\tmu 0 3 22496 22497 22498\n\t\tf 3 -19175 19197 19198\n\t\tmu 0 3 22499 22500 22501\n\t\tf 3 19199 -19198 19200\n\t\tmu 0 3 22502 22503 22504\n\t\tf 3 -19145 19201 -19201\n\t\tmu 0 3 22505 22506 22507\n\t\tf 3 19202 -19202 19203\n\t\tmu 0 3 22508 22509 22510\n\t\tf 3 -19148 19204 -19204\n\t\tmu 0 3 22511 22512 22513\n\t\tf 3 19205 -19205 -19177\n\t\tmu 0 3 22514 22515 22516\n\t\tf 3 19206 -19196 -19199\n\t\tmu 0 3 22517 22518 22519\n\t\tf 3 -19200 19207 19208\n\t\tmu 0 3 22520 22521 22522\n\t\tf 3 -19208 -19203 19209\n\t\tmu 0 3 22523 22524 22525\n\t\tf 3 19210 19211 -19209\n\t\tmu 0 3 22526 22527 22528\n\t\tf 3 19212 19213 -19210\n\t\tmu 0 3 22529 22530 22531\n\t\tf 3 -19213 -19206 19214\n\t\tmu 0 3 22532 22533 22534\n\t\tf 3 19215 19216 -19215\n\t\tmu 0 3 22535 22536 22537\n\t\tf 3 -19216 -19180 19217\n\t\tmu 0 3 22538 22539 22540\n\t\tf 3 19218 19219 -19218\n\t\tmu 0 3 22541 22542 22543\n\t\tf 3 -19219 19220 19221\n\t\tmu 0 3 22544 22545 22546\n\t\tf 3 -19221 -19178 19222\n\t\tmu 0 3 22547 22548 22549\n\t\tf 3 -19154 19223 -19223\n\t\tmu 0 3 22550 22551 22552\n\t\tf 3 19224 -19224 -19182\n\t\tmu 0 3 22553 22554 22555\n\t\tf 3 19225 19226 -19222\n\t\tmu 0 3 22556 22557 22558\n\t\tf 3 -19226 -19225 19227\n\t\tmu 0 3 22559 22560 22561\n\t\tf 3 19228 19229 -19228\n\t\tmu 0 3 22562 22563 22564\n\t\tf 3 -19229 -19185 19230\n\t\tmu 0 3 22565 22566 22567\n\t\tf 3 19231 19232 -19231\n\t\tmu 0 3 22568 22569 22570\n\t\tf 3 -19232 19233 19234\n\t\tmu 0 3 22571 22572 22573\n\t\tf 3 -19234 -19183 19235\n\t\tmu 0 3 22574 22575 22576\n\t\tf 3 -19160 19236 -19236\n\t\tmu 0 3 22577 22578 22579\n\t\tf 3 19237 -19237 -19187\n\t\tmu 0 3 22580 22581 22582\n\t\tf 3 19238 19239 -19235\n\t\tmu 0 3 22583 22584 22585\n\t\tf 3 -19239 -19238 19240\n\t\tmu 0 3 22586 22587 22588\n\t\tf 3 19241 19242 -19241\n\t\tmu 0 3 22589 22590 22591\n\t\tf 3 -19242 -19190 19243\n\t\tmu 0 3 22592 22593 22594\n\t\tf 3 19244 19245 -19244\n\t\tmu 0 3 22595 22596 22597\n\t\tf 3 -19245 19246 19247\n\t\tmu 0 3 22598 22599 22600\n\t\tf 3 -19247 -19188 19248\n\t\tmu 0 3 22601 22602 22603\n\t\tf 3 -19166 19249 -19249\n\t\tmu 0 3 22604 22605 22606\n\t\tf 3 19250 -19250 -19192\n\t\tmu 0 3 22607 22608 22609\n\t\tf 3 19251 19252 -19248\n\t\tmu 0 3 22610 22611 22612\n\t\tf 3 -19252 -19251 19253\n\t\tmu 0 3 22613 22614 22615\n\t\tf 3 19254 19255 -19254\n\t\tmu 0 3 22616 22617 22618\n\t\tf 3 -19255 -19195 19256\n\t\tmu 0 3 22619 22620 22621\n\t\tf 3 19257 19258 -19257\n\t\tmu 0 3 22622 22623 22624\n\t\tf 3 -19258 19259 19260\n\t\tmu 0 3 22625 22626 22627\n\t\tf 3 -19260 -19193 19261\n\t\tmu 0 3 22628 22629 22630\n\t\tf 3 -19172 19262 -19262\n\t\tmu 0 3 22631 22632 22633\n\t\tf 3 19263 -19263 -19197\n\t\tmu 0 3 22634 22635 22636\n\t\tf 3 19264 19265 -19261\n\t\tmu 0 3 22637 22638 22639\n\t\tf 3 -19265 -19264 19266\n\t\tmu 0 3 22640 22641 22642\n\t\tf 3 19267 19268 -19267\n\t\tmu 0 3 22643 22644 22645\n\t\tf 3 -19268 -19207 19269\n\t\tmu 0 3 22646 22647 22648\n\t\tf 3 -19212 19270 -19270\n\t\tmu 0 3 22649 22650 22651\n\t\tf 3 19271 19272 19273\n\t\tmu 0 3 3035 1594 6005\n\t\tf 3 19274 19275 -19274\n\t\tmu 0 3 6005 2370 3035\n\t\tf 3 -19273 19276 19277\n\t\tmu 0 3 6005 1594 3864\n\t\tf 3 -19277 19278 19279\n\t\tmu 0 3 3864 1594 321\n\t\tf 3 19280 -2437 -19280\n\t\tmu 0 3 321 5744 3864\n\t\tf 3 19281 -19281 19282\n\t\tmu 0 3 4185 5744 321\n\t\tf 3 19283 19284 -19283\n\t\tmu 0 3 321 4476 4185\n\t\tf 3 19285 -19284 19286\n\t\tmu 0 3 4142 4476 321\n\t\tf 3 19287 19288 -19287\n\t\tmu 0 3 321 5434 4142\n\t\tf 3 19289 19290 19291\n\t\tmu 0 3 22652 4400 22653\n\t\tf 3 19292 19293 19294\n\t\tmu 0 3 22654 22655 22656\n\t\tf 3 19295 19296 -19295\n\t\tmu 0 3 22657 22658 22659\n\t\tf 3 -19293 19297 19298\n\t\tmu 0 3 22660 22661 22662\n\t\tf 3 19299 19300 -19299\n\t\tmu 0 3 22663 22664 22665\n\t\tf 3 -19300 19301 19302\n\t\tmu 0 3 22666 22667 22668\n\t\tf 3 19303 19304 -19303\n\t\tmu 0 3 22669 22670 22671\n\t\tf 3 19305 19306 19307\n\t\tmu 0 3 3035 5434 2858\n\t\tf 3 19308 -19307 19309\n\t\tmu 0 3 281 2858 5434\n\t\tf 3 -19288 19310 -19310\n\t\tmu 0 3 5434 321 281\n\t\tf 3 19311 -19311 19312\n\t\tmu 0 3 416 281 321\n\t\tf 3 -19279 19313 -19313\n\t\tmu 0 3 321 1594 416\n\t\tf 3 19314 -19314 19315\n\t\tmu 0 3 537 416 1594\n\t\tf 3 19316 19317 -19308\n\t\tmu 0 3 2858 537 3035\n\t\tf 3 -19272 -19318 -19316\n\t\tmu 0 3 1594 3035 537\n\t\tf 3 19318 19319 19320\n\t\tmu 0 3 2251 546 5400\n\t\tf 3 19321 19322 -19321\n\t\tmu 0 3 5400 4172 2251\n\t\tf 3 19323 19324 19325\n\t\tmu 0 3 885 1543 6285\n\t\tf 3 19326 19327 -19326\n\t\tmu 0 3 6285 2576 885\n\t\tf 3 19328 19329 19330\n\t\tmu 0 3 1195 5817 6195\n\t\tf 3 19331 19332 -19331\n\t\tmu 0 3 6195 3711 1195;\n\tsetAttr \".fc[10000:10499]\"\n\t\tf 3 19333 19334 19335\n\t\tmu 0 3 167 429 1391\n\t\tf 3 19336 19337 -19336\n\t\tmu 0 3 1391 4679 167\n\t\tf 3 19338 19339 19340\n\t\tmu 0 3 4897 5967 3222\n\t\tf 3 19341 19342 -19341\n\t\tmu 0 3 3222 5647 4897\n\t\tf 3 19343 19344 19345\n\t\tmu 0 3 22672 22673 22674\n\t\tf 3 19346 19347 -19346\n\t\tmu 0 3 22675 22676 22677\n\t\tf 3 19348 -19347 19349\n\t\tmu 0 3 22678 22679 22680\n\t\tf 3 19350 -19349 19351\n\t\tmu 0 3 22681 22682 22683\n\t\tf 3 -2504 19352 -19352\n\t\tmu 0 3 22684 22685 22686\n\t\tf 3 -19353 19353 19354\n\t\tmu 0 3 22687 22688 22689\n\t\tf 3 19355 19356 -19355\n\t\tmu 0 3 22690 22691 22692\n\t\tf 3 -19357 19357 19358\n\t\tmu 0 3 22693 22694 22695\n\t\tf 3 19359 19360 -19359\n\t\tmu 0 3 22696 22697 22698\n\t\tf 3 19361 19362 19363\n\t\tmu 0 3 22699 22700 22701\n\t\tf 3 19364 19365 19366\n\t\tmu 0 3 22702 22703 22704\n\t\tf 3 19367 19368 -19367\n\t\tmu 0 3 22705 22706 22707\n\t\tf 3 -19368 -19348 19369\n\t\tmu 0 3 22708 22709 22710\n\t\tf 3 19370 -19361 19371\n\t\tmu 0 3 22711 22712 22713\n\t\tf 3 -19365 19372 -19372\n\t\tmu 0 3 22714 22715 22716\n\t\tf 3 19373 -19351 19374\n\t\tmu 0 3 22717 22718 22719\n\t\tf 3 -19371 19375 -19375\n\t\tmu 0 3 22720 22721 22722\n\t\tf 3 -19374 19376 -19370\n\t\tmu 0 3 22723 22724 22725\n\t\tf 3 19377 19378 19379\n\t\tmu 0 3 22726 22727 22728\n\t\tf 3 19380 19381 -19380\n\t\tmu 0 3 22729 22730 22731\n\t\tf 3 19382 19383 19384\n\t\tmu 0 3 22732 22733 22734\n\t\tf 3 19385 19386 -19385\n\t\tmu 0 3 22735 22736 22737\n\t\tf 3 19387 19388 19389\n\t\tmu 0 3 22738 22739 22740\n\t\tf 3 19390 19391 -19390\n\t\tmu 0 3 22741 22742 22743\n\t\tf 3 19392 19393 19394\n\t\tmu 0 3 22744 22745 22746\n\t\tf 3 19395 19396 -19395\n\t\tmu 0 3 22747 22748 22749\n\t\tf 3 19397 19398 19399\n\t\tmu 0 3 22750 22751 22752\n\t\tf 3 19400 19401 -19400\n\t\tmu 0 3 22753 22754 22755\n\t\tf 3 19402 19403 19404\n\t\tmu 0 3 272 2536 2157\n\t\tf 3 19405 19406 -19405\n\t\tmu 0 3 2157 4291 272\n\t\tf 3 19407 -19403 19408\n\t\tmu 0 3 2878 2536 272\n\t\tf 3 19409 19410 -19409\n\t\tmu 0 3 272 6550 2878\n\t\tf 3 19411 -19411 19412\n\t\tmu 0 3 2866 2878 6550\n\t\tf 3 19413 19414 -19413\n\t\tmu 0 3 6550 6044 2866\n\t\tf 3 19415 -19415 19416\n\t\tmu 0 3 4703 2866 6044\n\t\tf 3 19417 19418 -19417\n\t\tmu 0 3 6044 2760 4703\n\t\tf 3 19419 -19419 19420\n\t\tmu 0 3 5450 4703 2760\n\t\tf 3 19421 19422 -19421\n\t\tmu 0 3 2760 1415 5450\n\t\tf 3 19423 -19423 19424\n\t\tmu 0 3 5573 5450 1415\n\t\tf 3 19425 19426 -19425\n\t\tmu 0 3 1415 6323 5573\n\t\tf 3 19427 -19427 19428\n\t\tmu 0 3 4919 5573 6323\n\t\tf 3 19429 19430 -19429\n\t\tmu 0 3 6323 5299 4919\n\t\tf 3 19431 -19406 19432\n\t\tmu 0 3 1280 4291 2157\n\t\tf 3 19433 19434 -19433\n\t\tmu 0 3 2157 933 1280\n\t\tf 3 19435 -19435 19436\n\t\tmu 0 3 4613 1280 933\n\t\tf 3 19437 19438 -19436\n\t\tmu 0 3 4613 3051 1280\n\t\tf 3 -19437 19439 19440\n\t\tmu 0 3 4613 933 6167\n\t\tf 3 -19441 19441 19442\n\t\tmu 0 3 4613 6167 3092\n\t\tf 3 19443 -19431 19444\n\t\tmu 0 3 3092 4919 5299\n\t\tf 3 -19443 19445 19446\n\t\tmu 0 3 4613 3092 2296\n\t\tf 3 19447 19448 -19445\n\t\tmu 0 3 5299 3988 3092\n\t\tf 3 -19449 19449 -19446\n\t\tmu 0 3 3092 3988 2296\n\t\tf 3 19450 19451 19452\n\t\tmu 0 3 1418 75 5831\n\t\tf 3 19453 19454 -19453\n\t\tmu 0 3 5831 2473 1418\n\t\tf 3 19455 -19455 19456\n\t\tmu 0 3 2956 1418 2473\n\t\tf 3 19457 19458 -19457\n\t\tmu 0 3 2473 4213 2956\n\t\tf 3 -19452 19459 19460\n\t\tmu 0 3 5831 75 3210\n\t\tf 3 19461 19462 -19461\n\t\tmu 0 3 3210 2164 5831\n\t\tf 3 19463 19464 19465\n\t\tmu 0 3 5451 22756 22757\n\t\tf 3 19466 19467 -19466\n\t\tmu 0 3 22758 3954 5451\n\t\tf 3 19468 -19468 19469\n\t\tmu 0 3 219 5451 3954\n\t\tf 3 19470 19471 -19470\n\t\tmu 0 3 3954 2951 219\n\t\tf 3 19472 19473 19474\n\t\tmu 0 3 4209 22759 2956\n\t\tf 3 19475 -19467 19476\n\t\tmu 0 3 4209 3954 22760\n\t\tf 3 19477 -19473 -19477\n\t\tmu 0 3 22761 22762 4209\n\t\tf 3 19478 19479 -19475\n\t\tmu 0 3 2956 5812 4209\n\t\tf 3 -19480 19480 19481\n\t\tmu 0 3 4209 5812 1401\n\t\tf 3 19482 -19481 19483\n\t\tmu 0 3 3598 1401 5812\n\t\tf 3 19484 19485 -19484\n\t\tmu 0 3 5812 1865 3598\n\t\tf 3 -19485 -19479 19486\n\t\tmu 0 3 1865 5812 2956\n\t\tf 3 -19486 19487 19488\n\t\tmu 0 3 3598 1865 2082\n\t\tf 3 19489 19490 -19489\n\t\tmu 0 3 2082 1677 3598\n\t\tf 3 -19490 19491 19492\n\t\tmu 0 3 1677 2082 2138\n\t\tf 3 19493 -19492 19494\n\t\tmu 0 3 5311 2138 2082\n\t\tf 3 19495 19496 -19495\n\t\tmu 0 3 2082 4700 5311\n\t\tf 3 -19496 -19488 19497\n\t\tmu 0 3 4700 2082 1865\n\t\tf 3 19498 19499 -19493\n\t\tmu 0 3 2138 557 1677\n\t\tf 3 19500 19501 -19498\n\t\tmu 0 3 1865 391 4700\n\t\tf 3 -19502 19502 19503\n\t\tmu 0 3 4700 391 4673\n\t\tf 3 19504 19505 -19504\n\t\tmu 0 3 4673 5300 4700\n\t\tf 3 -19497 -19506 19506\n\t\tmu 0 3 5311 4700 5300\n\t\tf 3 19507 19508 -19507\n\t\tmu 0 3 5300 2790 5311\n\t\tf 3 19509 19510 19511\n\t\tmu 0 3 3780 22763 22764\n\t\tf 3 19512 19513 19514\n\t\tmu 0 3 22765 4399 22766\n\t\tf 3 19515 -19514 19516\n\t\tmu 0 3 1299 22767 4399\n\t\tf 3 19517 19518 -19517\n\t\tmu 0 3 4399 1230 1299\n\t\tf 3 19519 -19501 -19487\n\t\tmu 0 3 2956 391 1865\n\t\tf 3 19520 -19519 19521\n\t\tmu 0 3 3104 1299 1230\n\t\tf 3 19522 19523 -19522\n\t\tmu 0 3 1230 6048 3104\n\t\tf 3 19524 -19524 19525\n\t\tmu 0 3 519 3104 6048\n\t\tf 3 19526 19527 -19526\n\t\tmu 0 3 6048 2503 519\n\t\tf 3 -19528 19528 19529\n\t\tmu 0 3 519 2503 5898\n\t\tf 3 -19520 -19459 19530\n\t\tmu 0 3 391 2956 4213\n\t\tf 3 19531 -19503 -19531\n\t\tmu 0 3 4213 4673 391\n\t\tf 3 19532 -19500 19533\n\t\tmu 0 3 4134 1677 557\n\t\tf 3 19534 19535 -19534\n\t\tmu 0 3 557 3211 4134\n\t\tf 3 19536 -19536 19537\n\t\tmu 0 3 760 4134 3211\n\t\tf 3 19538 19539 -19538\n\t\tmu 0 3 3211 4971 760\n\t\tf 3 -19537 19540 19541\n\t\tmu 0 3 4134 760 8\n\t\tf 3 19542 19543 -19533\n\t\tmu 0 3 4134 22768 1677\n\t\tf 3 19544 -19491 -19544\n\t\tmu 0 3 22769 3598 1677\n\t\tf 3 -19545 19545 19546\n\t\tmu 0 3 3598 22770 3065\n\t\tf 3 19547 -19483 -19547\n\t\tmu 0 3 3065 1401 3598\n\t\tf 3 -19548 19548 19549\n\t\tmu 0 3 1401 3065 807\n\t\tf 3 19550 19551 -19550\n\t\tmu 0 3 807 3932 1401\n\t\tf 3 -19552 19552 -19482\n\t\tmu 0 3 1401 3932 4209\n\t\tf 3 -19476 -19553 19553\n\t\tmu 0 3 3954 4209 3932\n\t\tf 3 19554 -19471 -19554\n\t\tmu 0 3 3932 2951 3954\n\t\tf 3 19555 -19555 19556\n\t\tmu 0 3 3236 2951 3932\n\t\tf 3 -19551 19557 -19557\n\t\tmu 0 3 3932 807 3236\n\t\tf 3 -19556 19558 19559\n\t\tmu 0 3 2951 3236 1233\n\t\tf 3 19560 19561 19562\n\t\tmu 0 3 4358 5150 5491\n\t\tf 3 -19563 19563 19564\n\t\tmu 0 3 4358 5491 2071\n\t\tf 3 -19565 19565 19566\n\t\tmu 0 3 4358 2071 5643\n\t\tf 3 19567 -19564 19568\n\t\tmu 0 3 146 2071 5491\n\t\tf 3 -19568 19569 19570\n\t\tmu 0 3 2071 146 3189\n\t\tf 3 19571 -19570 19572\n\t\tmu 0 3 2509 3189 146\n\t\tf 3 19573 19574 -19573\n\t\tmu 0 3 146 1505 2509\n\t\tf 3 -19575 19575 19576\n\t\tmu 0 3 2509 1505 1554\n\t\tf 3 19577 19578 -19577\n\t\tmu 0 3 1554 2934 2509\n\t\tf 3 -19574 19579 19580\n\t\tmu 0 3 1505 146 5876\n\t\tf 3 19581 -19580 -19569\n\t\tmu 0 3 5491 5876 146\n\t\tf 3 19582 19583 -19581\n\t\tmu 0 3 5876 4446 1505\n\t\tf 3 -19576 -19584 19584\n\t\tmu 0 3 1554 1505 4446\n\t\tf 3 19585 19586 -19585\n\t\tmu 0 3 4446 5404 1554\n\t\tf 3 -19572 19587 19588\n\t\tmu 0 3 3189 2509 1986\n\t\tf 3 19589 19590 -19589\n\t\tmu 0 3 1986 1734 3189\n\t\tf 3 19591 -19588 19592\n\t\tmu 0 3 2578 1986 2509\n\t\tf 3 -19579 19593 -19593\n\t\tmu 0 3 2509 2934 2578\n\t\tf 3 19594 19595 -19571\n\t\tmu 0 3 3189 3693 2071\n\t\tf 3 -19595 -19591 19596\n\t\tmu 0 3 3693 3189 1734\n\t\tf 3 19597 19598 -19597\n\t\tmu 0 3 1734 410 3693\n\t\tf 3 -19599 19599 19600\n\t\tmu 0 3 3693 410 2636\n\t\tf 3 19601 19602 -19601\n\t\tmu 0 3 2636 4767 3693\n\t\tf 3 19603 -19596 -19603\n\t\tmu 0 3 4767 2071 3693\n\t\tf 3 19604 -19566 -19604\n\t\tmu 0 3 4767 5643 2071\n\t\tf 3 19605 -19567 19606\n\t\tmu 0 3 2168 4358 5643\n\t\tf 3 -19605 19607 -19607\n\t\tmu 0 3 5643 3165 2168\n\t\tf 3 19608 19609 19610\n\t\tmu 0 3 2838 1541 1130\n\t\tf 3 19611 19612 -19611\n\t\tmu 0 3 1130 2276 2838\n\t\tf 3 19613 -19612 19614\n\t\tmu 0 3 2175 2276 1130\n\t\tf 3 19615 19616 -19615\n\t\tmu 0 3 1130 711 2175\n\t\tf 3 19617 -19617 19618\n\t\tmu 0 3 1977 2175 711\n\t\tf 3 19619 19620 -19619\n\t\tmu 0 3 711 1103 1977\n\t\tf 3 19621 19622 19623\n\t\tmu 0 3 4695 3270 1688\n\t\tf 3 19624 19625 -19624\n\t\tmu 0 3 1688 6098 4695\n\t\tf 3 19626 -19625 19627\n\t\tmu 0 3 4516 6098 1688\n\t\tf 3 19628 19629 -19628\n\t\tmu 0 3 1688 5814 4516\n\t\tf 3 19630 -19630 19631\n\t\tmu 0 3 5302 4516 5814\n\t\tf 3 19632 19633 -19632\n\t\tmu 0 3 5814 1238 5302\n\t\tf 3 19634 -19634 19635\n\t\tmu 0 3 469 5302 1238\n\t\tf 3 19636 19637 -19636\n\t\tmu 0 3 1238 2027 469\n\t\tf 3 19638 19639 19640\n\t\tmu 0 3 2606 4133 2432\n\t\tf 3 19641 19642 -19641\n\t\tmu 0 3 2432 6398 2606\n\t\tf 3 -19642 19643 19644\n\t\tmu 0 3 6398 2432 22771\n\t\tf 3 19645 19646 -19645\n\t\tmu 0 3 22772 22773 6398\n\t\tf 3 19647 19648 19649\n\t\tmu 0 3 6478 4270 1923\n\t\tf 3 19650 19651 -19650\n\t\tmu 0 3 1923 6473 6478\n\t\tf 3 19652 -19648 19653\n\t\tmu 0 3 4359 4270 6478\n\t\tf 3 19654 19655 -19654\n\t\tmu 0 3 6478 1931 4359\n\t\tf 3 -19656 19656 19657\n\t\tmu 0 3 4359 1931 469\n\t\tf 3 -19638 19658 -19658\n\t\tmu 0 3 469 2027 4359\n\t\tf 3 19659 19660 19661\n\t\tmu 0 3 3738 1191 1881\n\t\tf 3 19662 19663 -19662\n\t\tmu 0 3 1881 4789 3738\n\t\tf 3 19664 -19661 19665\n\t\tmu 0 3 3872 1881 1191\n\t\tf 3 19666 19667 -19666\n\t\tmu 0 3 1191 2012 3872\n\t\tf 3 -19665 19668 19669\n\t\tmu 0 3 1881 3872 5669\n\t\tf 3 19670 19671 -19670\n\t\tmu 0 3 5669 3407 1881\n\t\tf 3 19672 -19663 19673\n\t\tmu 0 3 57 4789 1881\n\t\tf 3 -19672 19674 -19674\n\t\tmu 0 3 1881 3407 57\n\t\tf 3 -19668 19675 19676\n\t\tmu 0 3 3872 2012 2748\n\t\tf 3 19677 19678 -19677\n\t\tmu 0 3 2748 1443 3872\n\t\tf 3 -19678 19679 19680\n\t\tmu 0 3 1443 2748 589\n\t\tf 3 19681 19682 -19681\n\t\tmu 0 3 589 3853 1443\n\t\tf 3 -19682 19683 19684\n\t\tmu 0 3 3853 589 2356\n\t\tf 3 19685 19686 -19685\n\t\tmu 0 3 2356 4548 3853\n\t\tf 3 19687 -19686 19688\n\t\tmu 0 3 249 4548 2356\n\t\tf 3 19689 19690 -19689\n\t\tmu 0 3 2356 3646 249\n\t\tf 3 19691 -19691 19692\n\t\tmu 0 3 1758 249 3646\n\t\tf 3 19693 19694 -19693\n\t\tmu 0 3 3646 6545 1758\n\t\tf 3 -19692 19695 19696\n\t\tmu 0 3 249 1758 4588\n\t\tf 3 19697 19698 -19697\n\t\tmu 0 3 4588 5872 249\n\t\tf 3 -19688 -19699 19699\n\t\tmu 0 3 4548 249 5872\n\t\tf 3 19700 19701 -19700\n\t\tmu 0 3 5872 5092 4548\n\t\tf 3 19702 -19671 19703\n\t\tmu 0 3 1348 3407 5669\n\t\tf 3 19704 19705 -19704\n\t\tmu 0 3 5669 6 1348\n\t\tf 3 -19706 19706 19707\n\t\tmu 0 3 1348 6 4654\n\t\tf 3 19708 -19707 19709\n\t\tmu 0 3 4105 4654 6\n\t\tf 3 19710 19711 -19710\n\t\tmu 0 3 6 5730 4105\n\t\tf 3 -19712 19712 19713\n\t\tmu 0 3 4105 5730 6108\n\t\tf 3 19714 19715 -19714\n\t\tmu 0 3 6108 4259 4105\n\t\tf 3 19716 -19713 19717\n\t\tmu 0 3 4602 6108 5730\n\t\tf 3 -19717 19718 19719\n\t\tmu 0 3 6108 4602 5092\n\t\tf 3 19720 19721 -19718\n\t\tmu 0 3 5730 2901 4602\n\t\tf 3 -19721 -19711 19722\n\t\tmu 0 3 2901 5730 6\n\t\tf 3 -19705 19723 -19723\n\t\tmu 0 3 6 5669 2901\n\t\tf 3 19724 19725 -19720\n\t\tmu 0 3 5092 6438 6108\n\t\tf 3 -19715 -19726 19726\n\t\tmu 0 3 4259 6108 6438\n\t\tf 3 19727 19728 -19727\n\t\tmu 0 3 6438 4367 4259\n\t\tf 3 19729 19730 -19708\n\t\tmu 0 3 4654 1367 1348\n\t\tf 3 -19728 19731 19732\n\t\tmu 0 3 4367 6438 1590\n\t\tf 3 -19732 -19725 19733\n\t\tmu 0 3 1590 6438 5092\n\t\tf 3 19734 19735 -19733\n\t\tmu 0 3 1590 2570 4367\n\t\tf 3 19736 -19735 19737\n\t\tmu 0 3 356 2570 1590\n\t\tf 3 19738 19739 -19738\n\t\tmu 0 3 1590 2607 356\n\t\tf 3 19740 -19722 19741\n\t\tmu 0 3 3853 4602 2901\n\t\tf 3 19742 -19683 -19742\n\t\tmu 0 3 2901 1443 3853\n\t\tf 3 -19741 -19687 19743\n\t\tmu 0 3 4602 3853 4548\n\t\tf 3 -19702 -19719 -19744\n\t\tmu 0 3 4548 5092 4602\n\t\tf 3 -19740 19744 19745\n\t\tmu 0 3 356 2607 1411\n\t\tf 3 19746 -19745 19747\n\t\tmu 0 3 741 1411 2607\n\t\tf 3 -19747 19748 19749\n\t\tmu 0 3 1411 741 4221\n\t\tf 3 19750 19751 -19750\n\t\tmu 0 3 4221 5008 1411\n\t\tf 3 19752 -19752 19753\n\t\tmu 0 3 100 1411 5008\n\t\tf 3 -19753 19754 -19746\n\t\tmu 0 3 1411 100 356\n\t\tf 3 19755 19756 -19754\n\t\tmu 0 3 5008 4303 100\n\t\tf 3 19757 -19749 19758\n\t\tmu 0 3 4869 4221 741\n\t\tf 3 19759 19760 -19759\n\t\tmu 0 3 741 2554 4869\n\t\tf 3 19761 -19761 19762\n\t\tmu 0 3 837 4869 2554\n\t\tf 3 19763 19764 -19763\n\t\tmu 0 3 2554 523 837\n\t\tf 3 19765 19766 -19748\n\t\tmu 0 3 2607 4588 741\n\t\tf 3 -19766 -19739 19767\n\t\tmu 0 3 4588 2607 1590\n\t\tf 3 19768 -19698 -19768\n\t\tmu 0 3 1590 5872 4588\n\t\tf 3 -19701 -19769 -19734\n\t\tmu 0 3 5092 5872 1590\n\t\tf 3 19769 -19764 19770\n\t\tmu 0 3 6545 523 2554\n\t\tf 3 19771 -19695 -19771\n\t\tmu 0 3 2554 1758 6545\n\t\tf 3 -19767 -19696 19772\n\t\tmu 0 3 741 4588 1758\n\t\tf 3 -19772 -19760 -19773\n\t\tmu 0 3 1758 2554 741\n\t\tf 3 19773 -19751 19774\n\t\tmu 0 3 1890 5008 4221\n\t\tf 3 -19756 -19774 19775\n\t\tmu 0 3 4303 5008 1890\n\t\tf 3 19776 19777 -19775\n\t\tmu 0 3 4221 1373 1890\n\t\tf 3 -19777 -19758 19778\n\t\tmu 0 3 1373 4221 4869\n\t\tf 3 19779 19780 -19776\n\t\tmu 0 3 1890 3150 4303\n\t\tf 3 19781 -19762 19782\n\t\tmu 0 3 1522 4869 837\n\t\tf 3 -19782 19783 -19779\n\t\tmu 0 3 4869 1522 1373\n\t\tf 3 19784 19785 -19783\n\t\tmu 0 3 837 4918 1522\n\t\tf 3 19786 19787 19788\n\t\tmu 0 3 3956 201 3686\n\t\tf 3 19789 -19523 -19789\n\t\tmu 0 3 3686 4726 3956\n\t\tf 3 19790 -19787 19791\n\t\tmu 0 3 3781 201 3956\n\t\tf 3 -19518 19792 -19792\n\t\tmu 0 3 3956 6018 3781\n\t\tf 3 19793 -19793 19794\n\t\tmu 0 3 4637 3781 6018\n\t\tf 3 19795 19796 -19795\n\t\tmu 0 3 6018 1148 4637\n\t\tf 3 19797 -19791 19798\n\t\tmu 0 3 22774 201 3781\n\t\tf 3 -19788 -19798 19799\n\t\tmu 0 3 3686 201 22775\n\t\tf 3 19800 19801 -19799\n\t\tmu 0 3 3781 22776 22777\n\t\tf 3 -19801 -19794 19802\n\t\tmu 0 3 22778 3781 4637\n\t\tf 3 19803 19804 -19800\n\t\tmu 0 3 22779 22780 3686\n\t\tf 3 -19797 -19508 19805\n\t\tmu 0 3 4637 1148 4166\n\t\tf 3 19806 19807 -19806\n\t\tmu 0 3 4166 797 4637\n\t\tf 3 19808 -19808 19809\n\t\tmu 0 3 22781 4637 797\n\t\tf 3 -19809 19810 -19803\n\t\tmu 0 3 4637 22782 22783\n\t\tf 3 19811 19812 -19810\n\t\tmu 0 3 797 589 22784\n\t\tf 3 -19684 -19812 19813\n\t\tmu 0 3 2356 589 797\n\t\tf 3 19814 19815 -19814\n\t\tmu 0 3 797 6124 2356\n\t\tf 3 -19815 -19807 19816\n\t\tmu 0 3 6124 797 4166\n\t\tf 3 19817 19818 -19817\n\t\tmu 0 3 4166 3981 6124\n\t\tf 3 19819 -19819 19820\n\t\tmu 0 3 5727 6124 3981\n\t\tf 3 -19816 -19820 19821\n\t\tmu 0 3 2356 6124 5727\n\t\tf 3 19822 19823 -19821\n\t\tmu 0 3 3981 1452 5727\n\t\tf 3 19824 -19824 19825\n\t\tmu 0 3 3374 5727 1452\n\t\tf 3 19826 19827 -19826\n\t\tmu 0 3 1452 3252 3374\n\t\tf 3 -19825 19828 19829\n\t\tmu 0 3 5727 3374 6545\n\t\tf 3 -19829 19830 19831\n\t\tmu 0 3 6545 3374 3444\n\t\tf 3 19832 -19770 -19832\n\t\tmu 0 3 3444 523 6545\n\t\tf 3 -19765 -19833 19833\n\t\tmu 0 3 837 523 3444\n\t\tf 3 19834 19835 -19834\n\t\tmu 0 3 3444 4518 837\n\t\tf 3 -19835 19836 19837\n\t\tmu 0 3 4518 3444 6319\n\t\tf 3 -19828 -19454 19838\n\t\tmu 0 3 3374 3252 6319\n\t\tf 3 -19837 -19831 -19839\n\t\tmu 0 3 6319 3444 3374\n\t\tf 3 -19463 19839 -19838\n\t\tmu 0 3 6319 5134 4518\n\t\tf 3 -19694 19840 -19830\n\t\tmu 0 3 6545 3646 5727\n\t\tf 3 -19841 -19690 -19822\n\t\tmu 0 3 5727 3646 2356\n\t\tf 3 -19785 -19836 19841\n\t\tmu 0 3 4918 837 4518\n\t\tf 3 19842 19843 -19842\n\t\tmu 0 3 4518 2482 4918\n\t\tf 3 -19843 -19840 19844\n\t\tmu 0 3 2482 4518 5134\n\t\tf 3 19845 19846 -19845\n\t\tmu 0 3 5134 5545 2482\n\t\tf 3 19847 19848 19849\n\t\tmu 0 3 3282 4833 4689\n\t\tf 3 19850 19851 -19850\n\t\tmu 0 3 4689 6385 3282\n\t\tf 3 19852 19853 19854\n\t\tmu 0 3 446 1617 3992\n\t\tf 3 19855 19856 -19855\n\t\tmu 0 3 3992 3219 446\n\t\tf 3 19857 -19854 19858\n\t\tmu 0 3 1193 3992 1617\n\t\tf 3 19859 19860 -19859\n\t\tmu 0 3 1617 5167 1193\n\t\tf 3 19861 -19861 19862\n\t\tmu 0 3 5121 1193 5167\n\t\tf 3 19863 19864 -19863\n\t\tmu 0 3 5167 2214 5121\n\t\tf 3 19865 -19865 19866\n\t\tmu 0 3 4407 5121 2214\n\t\tf 3 19867 19868 -19867\n\t\tmu 0 3 2214 691 4407\n\t\tf 3 19869 -19869 19870\n\t\tmu 0 3 1219 4407 691\n\t\tf 3 19871 19872 -19871\n\t\tmu 0 3 691 4161 1219\n\t\tf 3 19873 -19873 19874\n\t\tmu 0 3 3242 1219 4161\n\t\tf 3 19875 19876 -19875\n\t\tmu 0 3 4161 922 3242\n\t\tf 3 19877 -19877 19878\n\t\tmu 0 3 2055 3242 922\n\t\tf 3 19879 19880 -19879\n\t\tmu 0 3 922 4598 2055\n\t\tf 3 -19881 19881 19882\n\t\tmu 0 3 2055 4598 378\n\t\tf 3 19883 19884 -19883\n\t\tmu 0 3 378 4860 2055\n\t\tf 3 19885 -19884 19886\n\t\tmu 0 3 1673 4860 378\n\t\tf 3 19887 19888 -19887\n\t\tmu 0 3 378 3196 1673\n\t\tf 3 19889 19890 19891\n\t\tmu 0 3 1450 3472 4768\n\t\tf 3 19892 19893 -19892\n\t\tmu 0 3 4768 3349 1450\n\t\tf 3 19894 -19894 19895\n\t\tmu 0 3 6443 1450 3349\n\t\tf 3 19896 19897 -19896\n\t\tmu 0 3 3349 6468 6443\n\t\tf 3 19898 -19898 19899\n\t\tmu 0 3 518 6443 6468\n\t\tf 3 19900 19901 -19900\n\t\tmu 0 3 6468 2148 518\n\t\tf 3 19902 -19902 19903\n\t\tmu 0 3 4455 518 2148\n\t\tf 3 19904 19905 -19904\n\t\tmu 0 3 2148 3339 4455\n\t\tf 3 19906 -19906 19907\n\t\tmu 0 3 5085 4455 3339\n\t\tf 3 19908 19909 -19908\n\t\tmu 0 3 3339 1670 5085\n\t\tf 3 19910 -19910 19911\n\t\tmu 0 3 1510 5085 1670\n\t\tf 3 19912 19913 -19912\n\t\tmu 0 3 1670 5443 1510\n\t\tf 3 19914 -19914 19915\n\t\tmu 0 3 784 1510 5443\n\t\tf 3 19916 19917 -19916\n\t\tmu 0 3 5443 4201 784\n\t\tf 3 19918 -19918 19919\n\t\tmu 0 3 2102 784 4201\n\t\tf 3 19920 19921 -19920\n\t\tmu 0 3 4201 2752 2102\n\t\tf 3 19922 -19922 19923\n\t\tmu 0 3 22785 2102 2752\n\t\tf 3 19924 19925 -19924\n\t\tmu 0 3 2752 22786 22787\n\t\tf 3 19926 19927 19928\n\t\tmu 0 3 5461 500 3283\n\t\tf 3 19929 19930 -19929\n\t\tmu 0 3 3283 2610 5461\n\t\tf 3 -19930 19931 19932\n\t\tmu 0 3 2610 3283 5991\n\t\tf 3 -19529 19933 -19933\n\t\tmu 0 3 5991 2639 2610\n\t\tf 3 19934 19935 19936\n\t\tmu 0 3 1107 22788 22789\n\t\tf 3 19937 19938 -19937\n\t\tmu 0 3 22790 3699 1107\n\t\tf 3 19939 -19939 19940\n\t\tmu 0 3 4254 1107 3699\n\t\tf 3 19941 19942 -19941\n\t\tmu 0 3 3699 4089 4254\n\t\tf 3 19943 -19943 19944\n\t\tmu 0 3 873 4254 4089\n\t\tf 3 19945 19946 -19945\n\t\tmu 0 3 4089 5830 873\n\t\tf 3 19947 -19947 19948\n\t\tmu 0 3 22791 873 5830\n\t\tf 3 19949 19950 -19949\n\t\tmu 0 3 5830 22792 22793\n\t\tf 3 19951 19952 19953\n\t\tmu 0 3 4066 6392 4111\n\t\tf 3 19954 19955 -19954\n\t\tmu 0 3 4111 2083 4066\n\t\tf 3 19956 -19956 19957\n\t\tmu 0 3 1281 4066 2083\n\t\tf 3 19958 19959 -19958\n\t\tmu 0 3 2083 2963 1281\n\t\tf 3 19960 -19960 19961\n\t\tmu 0 3 2028 1281 2963\n\t\tf 3 19962 19963 -19962\n\t\tmu 0 3 2963 3723 2028\n\t\tf 3 19964 -19964 19965\n\t\tmu 0 3 4303 2028 3723\n\t\tf 3 19966 -19757 -19966\n\t\tmu 0 3 3723 100 4303\n\t\tf 3 -19959 19967 19968\n\t\tmu 0 3 2963 2083 4593\n\t\tf 3 19969 19970 -19969\n\t\tmu 0 3 4593 5969 2963\n\t\tf 3 -19955 19971 19972\n\t\tmu 0 3 2083 4111 7\n\t\tf 3 19973 -19968 -19973\n\t\tmu 0 3 7 4593 2083\n\t\tf 3 19974 -19974 19975\n\t\tmu 0 3 5516 4593 7\n\t\tf 3 -19970 -19975 19976\n\t\tmu 0 3 5969 4593 5516\n\t\tf 3 19977 19978 -19976\n\t\tmu 0 3 7 6081 5516\n\t\tf 3 19979 19980 -19977\n\t\tmu 0 3 5516 1089 5969\n\t\tf 3 -19981 19981 19982\n\t\tmu 0 3 5969 1089 174\n\t\tf 3 19983 19984 -19983\n\t\tmu 0 3 174 3724 5969\n\t\tf 3 -19971 -19985 19985\n\t\tmu 0 3 2963 5969 3724\n\t\tf 3 19986 -19963 -19986\n\t\tmu 0 3 3724 3723 2963\n\t\tf 3 -19984 19987 19988\n\t\tmu 0 3 3724 174 2570\n\t\tf 3 -19736 -19988 19989\n\t\tmu 0 3 4367 2570 174\n\t\tf 3 19990 19991 -19990\n\t\tmu 0 3 174 5834 4367\n\t\tf 3 -19991 -19982 19992\n\t\tmu 0 3 5834 174 1089\n\t\tf 3 -19737 19993 -19989\n\t\tmu 0 3 2570 356 3724\n\t\tf 3 -19755 -19967 19994\n\t\tmu 0 3 356 100 3723\n\t\tf 3 -19987 -19994 -19995\n\t\tmu 0 3 3723 3724 356\n\t\tf 3 19995 19996 -19993\n\t\tmu 0 3 1089 6324 5834\n\t\tf 3 -19996 -19980 19997\n\t\tmu 0 3 6324 1089 5516\n\t\tf 3 -19992 19998 19999\n\t\tmu 0 3 4367 5834 6112\n\t\tf 3 -19997 20000 -19999\n\t\tmu 0 3 5834 6324 6112\n\t\tf 3 20001 -19729 -20000\n\t\tmu 0 3 6112 4259 4367\n\t\tf 3 -20002 20002 20003\n\t\tmu 0 3 4259 6112 2799\n\t\tf 3 20004 -19716 -20004\n\t\tmu 0 3 2799 4105 4259\n\t\tf 3 -19709 -20005 20005\n\t\tmu 0 3 4654 4105 2799\n\t\tf 3 20006 20007 -20006\n\t\tmu 0 3 2799 3694 4654\n\t\tf 3 -19730 -20008 20008\n\t\tmu 0 3 1367 4654 3694\n\t\tf 3 20009 20010 -20009\n\t\tmu 0 3 3694 6527 1367\n\t\tf 3 -20010 20011 20012\n\t\tmu 0 3 6527 3694 1262\n\t\tf 3 20013 20014 -20013\n\t\tmu 0 3 1262 544 6527\n\t\tf 3 20015 -20014 20016\n\t\tmu 0 3 3245 544 1262\n\t\tf 3 20017 -20016 20018\n\t\tmu 0 3 1576 544 3245\n\t\tf 3 20019 -20019 20020\n\t\tmu 0 3 2040 1576 3245\n\t\tf 3 20021 20022 -20020\n\t\tmu 0 3 2040 6462 1576\n\t\tf 3 -20021 20023 20024\n\t\tmu 0 3 2040 3245 2315\n\t\tf 3 -20022 20025 20026\n\t\tmu 0 3 6462 2040 1771\n\t\tf 3 20027 20028 -20026\n\t\tmu 0 3 2040 6296 1771\n\t\tf 3 20029 20030 -20029\n\t\tmu 0 3 6296 35 1771\n\t\tf 3 -20017 20031 20032\n\t\tmu 0 3 3245 1262 2226\n\t\tf 3 20033 20034 -20032\n\t\tmu 0 3 1262 6190 2226\n\t\tf 3 -20030 20035 20036\n\t\tmu 0 3 35 6296 4458\n\t\tf 3 -20011 20037 20038\n\t\tmu 0 3 1367 6527 4458\n\t\tf 3 20039 -20037 20040\n\t\tmu 0 3 3486 35 4458\n\t\tf 3 20041 -20041 -20038\n\t\tmu 0 3 6527 3486 4458\n\t\tf 3 -20015 20042 20043\n\t\tmu 0 3 6527 544 1471\n\t\tf 3 20044 20045 -20044\n\t\tmu 0 3 1471 6489 6527\n\t\tf 3 -20045 20046 20047\n\t\tmu 0 3 6489 1471 6006\n\t\tf 3 20048 20049 -20048\n\t\tmu 0 3 6006 5750 6489\n\t\tf 3 20050 20051 20052\n\t\tmu 0 3 1132 4326 771\n\t\tf 3 20053 20054 -20053\n\t\tmu 0 3 771 5882 1132\n\t\tf 3 20055 -20055 20056\n\t\tmu 0 3 3549 1132 5882\n\t\tf 3 20057 20058 -20057\n\t\tmu 0 3 5882 4930 3549\n\t\tf 3 -20056 20059 20060\n\t\tmu 0 3 1132 3549 3555\n\t\tf 3 20061 20062 -20061\n\t\tmu 0 3 3555 3899 1132\n\t\tf 3 -20051 -20063 20063\n\t\tmu 0 3 4326 1132 3899\n\t\tf 3 20064 20065 -20064\n\t\tmu 0 3 3899 5106 4326\n\t\tf 3 20066 20067 20068\n\t\tmu 0 3 22794 22795 91\n\t\tf 3 20069 20070 -20069\n\t\tmu 0 3 91 139 22796\n\t\tf 3 20071 -20068 20072\n\t\tmu 0 3 6515 91 22797\n\t\tf 3 20073 20074 -20073\n\t\tmu 0 3 22798 22799 6515\n\t\tf 3 -20072 20075 20076\n\t\tmu 0 3 91 6515 4643\n\t\tf 3 -19510 20077 -20077\n\t\tmu 0 3 4643 1228 91\n\t\tf 3 -20070 -20078 20078\n\t\tmu 0 3 139 91 1228\n\t\tf 3 20079 20080 -20079\n\t\tmu 0 3 1228 4741 139\n\t\tf 3 -20059 20081 20082\n\t\tmu 0 3 3549 4930 6227\n\t\tf 3 20083 20084 -20083\n\t\tmu 0 3 6227 2080 3549\n\t\tf 3 -20060 -20085 20085\n\t\tmu 0 3 3555 3549 2080\n\t\tf 3 20086 -20084 20087\n\t\tmu 0 3 3115 2080 6227\n\t\tf 3 20088 20089 -20088\n\t\tmu 0 3 6227 3314 3115\n\t\tf 3 20090 -20090 20091\n\t\tmu 0 3 2941 3115 3314\n\t\tf 3 20092 20093 -20092\n\t\tmu 0 3 3314 4966 2941\n\t\tf 3 20094 -20094 20095\n\t\tmu 0 3 1585 2941 4966\n\t\tf 3 20096 20097 -20096\n\t\tmu 0 3 4966 3192 1585\n\t\tf 3 20098 -20095 20099\n\t\tmu 0 3 4786 2941 1585\n\t\tf 3 20100 20101 -20100\n\t\tmu 0 3 1585 4577 4786\n\t\tf 3 20102 -20098 20103\n\t\tmu 0 3 2092 1585 3192\n\t\tf 3 -20101 -20103 20104\n\t\tmu 0 3 4577 1585 2092\n\t\tf 3 20105 20106 -20104\n\t\tmu 0 3 3192 6512 2092\n\t\tf 3 20107 20108 -20105\n\t\tmu 0 3 2092 4174 4577\n\t\tf 3 20109 20110 20111\n\t\tmu 0 3 22800 22801 5422\n\t\tf 3 20112 20113 -20112\n\t\tmu 0 3 5422 1140 22802\n\t\tf 3 20114 -20114 20115\n\t\tmu 0 3 22803 22804 1140\n\t\tf 3 -20113 20116 20117\n\t\tmu 0 3 1140 5422 4219\n\t\tf 3 20118 20119 -20118\n\t\tmu 0 3 4219 4440 1140\n\t\tf 3 20120 20121 -20116\n\t\tmu 0 3 1140 1752 22805\n\t\tf 3 20122 -20122 20123\n\t\tmu 0 3 22806 22807 1752\n\t\tf 3 20124 -20121 20125\n\t\tmu 0 3 5272 1752 1140\n\t\tf 3 20126 -20126 20127\n\t\tmu 0 3 1932 5272 1140\n\t\tf 3 -20099 20128 20129\n\t\tmu 0 3 2941 4786 1903\n\t\tf 3 20130 -20117 20131\n\t\tmu 0 3 4544 4219 5422\n\t\tf 3 20132 20133 -20132\n\t\tmu 0 3 5422 3732 4544\n\t\tf 3 -20133 -20111 20134\n\t\tmu 0 3 3732 5422 22808\n\t\tf 3 20135 20136 -20135\n\t\tmu 0 3 22809 22810 3732\n\t\tf 3 20137 20138 -20124\n\t\tmu 0 3 1752 240 22811\n\t\tf 3 -20125 20139 20140\n\t\tmu 0 3 1752 5272 3414\n\t\tf 3 20141 -20138 -20141\n\t\tmu 0 3 3414 240 1752\n\t\tf 3 20142 -20140 20143\n\t\tmu 0 3 1731 3414 5272\n\t\tf 3 20144 20145 -20144\n\t\tmu 0 3 5272 2972 1731\n\t\tf 3 -20145 -20127 20146\n\t\tmu 0 3 2972 5272 1932\n\t\tf 3 20147 20148 -20147\n\t\tmu 0 3 1932 4822 2972\n\t\tf 3 -20149 20149 20150\n\t\tmu 0 3 2972 4822 4504\n\t\tf 3 20151 20152 -20151\n\t\tmu 0 3 4504 5312 2972\n\t\tf 3 20153 -20134 20154\n\t\tmu 0 3 4741 4544 3732\n\t\tf 3 20155 -20081 -20155\n\t\tmu 0 3 3732 139 4741\n\t\tf 3 -20137 20156 20157\n\t\tmu 0 3 3732 22812 22813\n\t\tf 3 -20071 -20156 -20158\n\t\tmu 0 3 22814 139 3732\n\t\tf 3 20158 -20091 -20130\n\t\tmu 0 3 1903 3115 2941\n\t\tf 3 20159 -20087 20160\n\t\tmu 0 3 4834 2080 3115\n\t\tf 3 -20159 20161 -20161\n\t\tmu 0 3 3115 1903 4834\n\t\tf 3 -20160 20162 -20086\n\t\tmu 0 3 2080 4834 3555\n\t\tf 3 20163 20164 20165\n\t\tmu 0 3 22815 22816 3144\n\t\tf 3 20166 -20165 20167\n\t\tmu 0 3 2322 3144 22817\n\t\tf 3 20168 20169 -20168\n\t\tmu 0 3 22818 22819 2322\n\t\tf 3 20170 -20170 20171\n\t\tmu 0 3 1868 2322 22820\n\t\tf 3 20172 20173 -20172\n\t\tmu 0 3 22821 22822 1868\n\t\tf 3 20174 -20171 20175\n\t\tmu 0 3 297 2322 1868\n\t\tf 3 20176 20177 -20176\n\t\tmu 0 3 1868 3109 297\n\t\tf 3 -20175 20178 20179\n\t\tmu 0 3 2322 297 631\n\t\tf 3 20180 -20167 -20180\n\t\tmu 0 3 631 3144 2322\n\t\tf 3 20181 20182 -20166\n\t\tmu 0 3 3144 214 22823\n\t\tf 3 20183 -20183 20184\n\t\tmu 0 3 22824 22825 214\n\t\tf 3 -20181 20185 20186\n\t\tmu 0 3 3144 631 2805\n\t\tf 3 20187 -20182 -20187\n\t\tmu 0 3 2805 214 3144\n\t\tf 3 20188 20189 -20185\n\t\tmu 0 3 214 1038 22826\n\t\tf 3 -20190 20190 20191\n\t\tmu 0 3 22827 1038 5986\n\t\tf 3 20192 20193 -20192\n\t\tmu 0 3 5986 22828 22829\n\t\tf 3 20194 -20189 20195\n\t\tmu 0 3 855 1038 214\n\t\tf 3 -20188 20196 -20196\n\t\tmu 0 3 214 2805 855\n\t\tf 3 -20191 -20195 20197\n\t\tmu 0 3 5986 1038 855\n\t\tf 3 20198 20199 -20198\n\t\tmu 0 3 855 2699 5986\n\t\tf 3 20200 -20174 20201\n\t\tmu 0 3 5881 1868 22830\n\t\tf 3 -20177 -20201 20202\n\t\tmu 0 3 3109 1868 5881\n\t\tf 3 20203 20204 -20202\n\t\tmu 0 3 22831 22832 5881\n\t\tf 3 20205 20206 -20203\n\t\tmu 0 3 5881 2722 3109\n\t\tf 3 20207 -20193 20208\n\t\tmu 0 3 22833 22834 5986\n\t\tf 3 20209 20210 -20209\n\t\tmu 0 3 5986 4815 22835\n\t\tf 3 -20210 -20200 20211\n\t\tmu 0 3 4815 5986 2699\n\t\tf 3 20212 20213 -20212\n\t\tmu 0 3 2699 3501 4815\n\t\tf 3 -20214 20214 20215\n\t\tmu 0 3 4815 3501 4436\n\t\tf 3 20216 20217 -20216\n\t\tmu 0 3 4436 1308 4815\n\t\tf 3 -20211 -20218 20218\n\t\tmu 0 3 6041 4815 1308\n\t\tf 3 20219 20220 -20219\n\t\tmu 0 3 1308 1637 6041\n\t\tf 3 -20217 20221 20222\n\t\tmu 0 3 1308 4436 6120\n\t\tf 3 -19539 20223 -20223\n\t\tmu 0 3 6120 3955 1308\n\t\tf 3 -20220 -20224 20224\n\t\tmu 0 3 1637 1308 3955\n\t\tf 3 -19535 20225 -20225\n\t\tmu 0 3 3955 4073 1637\n\t\tf 3 20226 20227 20228\n\t\tmu 0 3 2842 2100 6184\n\t\tf 3 20229 20230 -20229\n\t\tmu 0 3 6184 1202 2842\n\t\tf 3 20231 -20231 20232\n\t\tmu 0 3 2138 2842 1202\n\t\tf 3 20233 -19499 -20233\n\t\tmu 0 3 1202 557 2138\n\t\tf 3 -20232 -19494 20234\n\t\tmu 0 3 2842 2138 5311\n\t\tf 3 20235 20236 -20235\n\t\tmu 0 3 5311 3577 2842\n\t\tf 3 -20227 -20237 20237\n\t\tmu 0 3 2100 2842 3577\n\t\tf 3 20238 20239 -20238\n\t\tmu 0 3 3577 254 2100\n\t\tf 3 -20128 -20120 20240\n\t\tmu 0 3 1932 1140 4440\n\t\tf 3 20241 20242 20243\n\t\tmu 0 3 1298 599 2765\n\t\tf 3 20244 20245 -20244\n\t\tmu 0 3 2765 6498 1298\n\t\tf 3 20246 -20245 20247\n\t\tmu 0 3 2247 6498 2765\n\t\tf 3 20248 20249 -20248\n\t\tmu 0 3 2765 5822 2247\n\t\tf 3 20250 20251 20252\n\t\tmu 0 3 22836 22837 6200;\n\tsetAttr \".fc[10500:10999]\"\n\t\tf 3 20253 20254 -20253\n\t\tmu 0 3 6200 5419 22838\n\t\tf 3 20255 -20254 20256\n\t\tmu 0 3 6409 5419 6200\n\t\tf 3 20257 20258 -20257\n\t\tmu 0 3 6200 6155 6409\n\t\tf 3 -20259 20259 20260\n\t\tmu 0 3 6409 6155 3784\n\t\tf 3 20261 20262 -20261\n\t\tmu 0 3 3784 4580 6409\n\t\tf 3 20263 20264 20265\n\t\tmu 0 3 22839 22840 5209\n\t\tf 3 20266 20267 -20266\n\t\tmu 0 3 5209 5080 22841\n\t\tf 3 20268 -20267 20269\n\t\tmu 0 3 3006 5080 5209\n\t\tf 3 20270 20271 -20270\n\t\tmu 0 3 5209 6354 3006\n\t\tf 3 20272 20273 20274\n\t\tmu 0 3 3432 5507 2130\n\t\tf 3 20275 20276 -20275\n\t\tmu 0 3 2130 6526 3432\n\t\tf 3 20277 -20273 20278\n\t\tmu 0 3 818 5507 3432\n\t\tf 3 20279 20280 -20279\n\t\tmu 0 3 3432 143 818\n\t\tf 3 20281 20282 20283\n\t\tmu 0 3 3704 5899 869\n\t\tf 3 20284 20285 -20284\n\t\tmu 0 3 869 2243 3704\n\t\tf 3 20286 -20285 20287\n\t\tmu 0 3 236 2243 869\n\t\tf 3 20288 20289 -20288\n\t\tmu 0 3 869 2405 236\n\t\tf 3 20290 20291 20292\n\t\tmu 0 3 22842 22843 633\n\t\tf 3 20293 20294 -20293\n\t\tmu 0 3 633 4711 22844\n\t\tf 3 20295 -20294 20296\n\t\tmu 0 3 2451 4711 633\n\t\tf 3 20297 20298 -20297\n\t\tmu 0 3 633 586 2451\n\t\tf 3 20299 20300 20301\n\t\tmu 0 3 22845 22846 3113\n\t\tf 3 20302 20303 -20302\n\t\tmu 0 3 3113 3860 22847\n\t\tf 3 20304 -20303 20305\n\t\tmu 0 3 3722 3860 3113\n\t\tf 3 20306 20307 -20306\n\t\tmu 0 3 3113 5877 3722\n\t\tf 3 -20308 20308 20309\n\t\tmu 0 3 3722 5877 4313\n\t\tf 3 20310 20311 -20310\n\t\tmu 0 3 4313 5254 3722\n\t\tf 3 20312 -20305 20313\n\t\tmu 0 3 627 3860 3722\n\t\tf 3 20314 20315 -20314\n\t\tmu 0 3 3722 101 627\n\t\tf 3 -20315 -20312 20316\n\t\tmu 0 3 101 3722 5254\n\t\tf 3 20317 -20304 20318\n\t\tmu 0 3 677 22848 3860\n\t\tf 3 -20313 20319 -20319\n\t\tmu 0 3 3860 627 677\n\t\tf 3 20320 20321 20322\n\t\tmu 0 3 5899 22849 2161\n\t\tf 3 20323 -20283 -20323\n\t\tmu 0 3 2161 869 5899\n\t\tf 3 -20289 -20324 20324\n\t\tmu 0 3 2405 869 2161\n\t\tf 3 20325 20326 -20325\n\t\tmu 0 3 2161 5740 2405\n\t\tf 3 20327 20328 -20317\n\t\tmu 0 3 5254 2240 101\n\t\tf 3 20329 20330 20331\n\t\tmu 0 3 22850 22851 6179\n\t\tf 3 20332 20333 -20332\n\t\tmu 0 3 6179 633 22852\n\t\tf 3 -20298 -20333 20334\n\t\tmu 0 3 586 633 6179\n\t\tf 3 20335 20336 -20335\n\t\tmu 0 3 6179 4135 586\n\t\tf 3 20337 20338 20339\n\t\tmu 0 3 5343 22853 22854\n\t\tf 3 20340 20341 -20340\n\t\tmu 0 3 22855 3111 5343\n\t\tf 3 -20341 20342 20343\n\t\tmu 0 3 3111 22856 22857\n\t\tf 3 20344 20345 20346\n\t\tmu 0 3 5694 22858 22859\n\t\tf 3 -20338 20347 -20347\n\t\tmu 0 3 22860 5343 5694\n\t\tf 3 -20345 20348 20349\n\t\tmu 0 3 22861 5694 4646\n\t\tf 3 20350 20351 -20350\n\t\tmu 0 3 4646 22862 22863\n\t\tf 3 20352 -20351 20353\n\t\tmu 0 3 22864 22865 4646\n\t\tf 3 20354 20355 -20354\n\t\tmu 0 3 4646 5386 22866\n\t\tf 3 20356 20357 -20344\n\t\tmu 0 3 22867 4157 3111\n\t\tf 3 -20356 20358 20359\n\t\tmu 0 3 22868 5386 1266\n\t\tf 3 20360 20361 -20360\n\t\tmu 0 3 1266 6179 22869\n\t\tf 3 -20336 -20361 20362\n\t\tmu 0 3 4135 6179 1266\n\t\tf 3 20363 20364 -20363\n\t\tmu 0 3 1266 43 4135\n\t\tf 3 20365 20366 20367\n\t\tmu 0 3 2725 2664 1393\n\t\tf 3 20368 20369 -20368\n\t\tmu 0 3 1393 1378 2725\n\t\tf 3 20370 -20369 20371\n\t\tmu 0 3 4321 1378 1393\n\t\tf 3 20372 20373 -20372\n\t\tmu 0 3 1393 1700 4321\n\t\tf 3 20374 -20367 20375\n\t\tmu 0 3 2579 1393 2664\n\t\tf 3 -20373 -20375 20376\n\t\tmu 0 3 1700 1393 2579\n\t\tf 3 20377 20378 -20376\n\t\tmu 0 3 2664 3004 2579\n\t\tf 3 20379 20380 -20377\n\t\tmu 0 3 2579 3266 1700\n\t\tf 3 20381 20382 20383\n\t\tmu 0 3 4738 22870 22871\n\t\tf 3 20384 -20382 20385\n\t\tmu 0 3 22872 22873 4738\n\t\tf 3 20386 20387 -20384\n\t\tmu 0 3 22874 5821 4738\n\t\tf 3 20388 20389 -20386\n\t\tmu 0 3 4738 1055 22875\n\t\tf 3 20390 20391 20392\n\t\tmu 0 3 874 1533 6150\n\t\tf 3 20393 20394 -20393\n\t\tmu 0 3 6150 4866 874\n\t\tf 3 20395 -20395 20396\n\t\tmu 0 3 3641 874 4866\n\t\tf 3 20397 20398 -20397\n\t\tmu 0 3 4866 2637 3641\n\t\tf 3 20399 -20399 20400\n\t\tmu 0 3 2771 3641 2637\n\t\tf 3 20401 20402 -20401\n\t\tmu 0 3 2637 1431 2771\n\t\tf 3 20403 -20403 20404\n\t\tmu 0 3 5703 2771 1431\n\t\tf 3 20405 20406 -20405\n\t\tmu 0 3 1431 5684 5703\n\t\tf 3 20407 -20407 20408\n\t\tmu 0 3 1921 5703 5684\n\t\tf 3 20409 20410 -20409\n\t\tmu 0 3 5684 1256 1921\n\t\tf 3 20411 -20392 20412\n\t\tmu 0 3 2720 6150 1533\n\t\tf 3 20413 20414 -20413\n\t\tmu 0 3 1533 6040 2720\n\t\tf 3 20415 -20415 20416\n\t\tmu 0 3 4813 2720 6040\n\t\tf 3 20417 20418 -20417\n\t\tmu 0 3 6040 3139 4813\n\t\tf 3 20419 -20419 20420\n\t\tmu 0 3 3256 4813 3139\n\t\tf 3 20421 20422 -20421\n\t\tmu 0 3 3139 3918 3256\n\t\tf 3 20423 -20423 20424\n\t\tmu 0 3 144 3256 3918\n\t\tf 3 20425 20426 -20425\n\t\tmu 0 3 3918 4513 144\n\t\tf 3 20427 20428 20429\n\t\tmu 0 3 4224 5366 4064\n\t\tf 3 20430 20431 -20430\n\t\tmu 0 3 4064 5353 4224\n\t\tf 3 20432 -20432 20433\n\t\tmu 0 3 4540 4224 5353\n\t\tf 3 20434 20435 -20434\n\t\tmu 0 3 5353 4896 4540\n\t\tf 3 20436 -20436 20437\n\t\tmu 0 3 4495 4540 4896\n\t\tf 3 20438 20439 -20438\n\t\tmu 0 3 4896 6012 4495\n\t\tf 3 20440 -20440 20441\n\t\tmu 0 3 6049 4495 6012\n\t\tf 3 20442 20443 -20442\n\t\tmu 0 3 6012 4363 6049\n\t\tf 3 20444 -20429 20445\n\t\tmu 0 3 6372 4064 5366\n\t\tf 3 20446 20447 -20446\n\t\tmu 0 3 5366 1548 6372\n\t\tf 3 20448 -20448 20449\n\t\tmu 0 3 1840 6372 1548\n\t\tf 3 20450 20451 -20450\n\t\tmu 0 3 1548 4858 1840\n\t\tf 3 20452 -20452 20453\n\t\tmu 0 3 6274 1840 4858\n\t\tf 3 20454 20455 -20454\n\t\tmu 0 3 4858 799 6274\n\t\tf 3 -20444 20456 20457\n\t\tmu 0 3 6049 4363 105\n\t\tf 3 20458 20459 -20458\n\t\tmu 0 3 105 667 6049\n\t\tf 3 20460 -20459 20461\n\t\tmu 0 3 842 667 105\n\t\tf 3 20462 20463 -20462\n\t\tmu 0 3 105 3819 842\n\t\tf 3 20464 20465 20466\n\t\tmu 0 3 2530 22876 22877\n\t\tf 3 20467 20468 -20467\n\t\tmu 0 3 22878 2491 2530\n\t\tf 3 20469 -20469 20470\n\t\tmu 0 3 6291 2530 2491\n\t\tf 3 20471 20472 -20471\n\t\tmu 0 3 2491 5629 6291\n\t\tf 3 20473 -20473 20474\n\t\tmu 0 3 580 6291 5629\n\t\tf 3 20475 20476 -20475\n\t\tmu 0 3 5629 3892 580\n\t\tf 3 20477 -20477 20478\n\t\tmu 0 3 6106 580 3892\n\t\tf 3 20479 20480 -20479\n\t\tmu 0 3 3892 6057 6106\n\t\tf 3 20481 20482 20483\n\t\tmu 0 3 1811 22879 22880\n\t\tf 3 20484 20485 20486\n\t\tmu 0 3 2644 3268 2420\n\t\tf 3 20487 20488 -20487\n\t\tmu 0 3 2420 315 2644\n\t\tf 3 20489 -20489 20490\n\t\tmu 0 3 3141 2644 315\n\t\tf 3 20491 20492 -20491\n\t\tmu 0 3 315 5746 3141\n\t\tf 3 20493 20494 20495\n\t\tmu 0 3 3293 22881 22882\n\t\tf 3 20496 20497 -20496\n\t\tmu 0 3 22883 6275 3293\n\t\tf 3 20498 -20498 20499\n\t\tmu 0 3 3963 3293 6275\n\t\tf 3 20500 20501 -20500\n\t\tmu 0 3 6275 111 3963\n\t\tf 3 20502 -20502 20503\n\t\tmu 0 3 6187 3963 111\n\t\tf 3 20504 20505 -20504\n\t\tmu 0 3 111 3751 6187\n\t\tf 3 20506 -20506 20507\n\t\tmu 0 3 5681 6187 3751\n\t\tf 3 20508 20509 -20508\n\t\tmu 0 3 3751 73 5681\n\t\tf 3 20510 -20493 20511\n\t\tmu 0 3 1447 3141 5746\n\t\tf 3 20512 20513 -20512\n\t\tmu 0 3 5746 1789 1447\n\t\tf 3 20514 20515 20516\n\t\tmu 0 3 4085 5719 1718\n\t\tf 3 20517 20518 -20517\n\t\tmu 0 3 1718 1343 4085\n\t\tf 3 20519 -20519 20520\n\t\tmu 0 3 2459 4085 1343\n\t\tf 3 20521 20522 -20521\n\t\tmu 0 3 1343 2968 2459\n\t\tf 3 20523 20524 20525\n\t\tmu 0 3 5146 2521 3639\n\t\tf 3 20526 20527 -20526\n\t\tmu 0 3 3639 1253 5146\n\t\tf 3 20528 -20525 20529\n\t\tmu 0 3 73 3639 2521\n\t\tf 3 20530 -20510 -20530\n\t\tmu 0 3 2521 5681 73\n\t\tf 3 -19724 -19669 20531\n\t\tmu 0 3 2901 5669 3872\n\t\tf 3 -19679 -19743 -20532\n\t\tmu 0 3 3872 1443 2901\n\t\tf 3 -20039 20532 20533\n\t\tmu 0 3 1367 4458 461\n\t\tf 3 20534 -19731 -20534\n\t\tmu 0 3 461 1348 1367\n\t\tf 3 -20535 20535 20536\n\t\tmu 0 3 1348 461 57\n\t\tf 3 -19675 -19703 -20537\n\t\tmu 0 3 57 3407 1348\n\t\tf 3 20537 20538 20539\n\t\tmu 0 3 2199 2357 2999\n\t\tf 3 20540 20541 -20540\n\t\tmu 0 3 2999 2528 2199\n\t\tf 3 20542 20543 -20538\n\t\tmu 0 3 2199 2850 2357\n\t\tf 3 20544 20545 20546\n\t\tmu 0 3 2211 4949 5748\n\t\tf 3 20547 20548 -20547\n\t\tmu 0 3 5748 3554 2211\n\t\tf 3 20549 -20549 20550\n\t\tmu 0 3 5793 2211 3554\n\t\tf 3 20551 20552 -20551\n\t\tmu 0 3 3554 3108 5793\n\t\tf 3 -20553 20553 20554\n\t\tmu 0 3 5793 3108 1354\n\t\tf 3 20555 20556 20557\n\t\tmu 0 3 22884 6432 22885\n\t\tf 3 20558 20559 20560\n\t\tmu 0 3 3027 1420 3710\n\t\tf 3 20561 20562 -20561\n\t\tmu 0 3 3710 3967 3027\n\t\tf 3 20563 -20560 20564\n\t\tmu 0 3 1011 3710 1420\n\t\tf 3 20565 20566 -20565\n\t\tmu 0 3 1420 56 1011\n\t\tf 3 -20564 -20349 20567\n\t\tmu 0 3 3710 1011 5673\n\t\tf 3 -20348 20568 -20568\n\t\tmu 0 3 5673 474 3710\n\t\tf 3 -20562 -20569 20569\n\t\tmu 0 3 3967 3710 474\n\t\tf 3 -20342 20570 -20570\n\t\tmu 0 3 474 5245 3967\n\t\tf 3 -20571 -20358 20571\n\t\tmu 0 3 3967 5245 5508\n\t\tf 3 -20389 20572 -20572\n\t\tmu 0 3 5508 2032 3967\n\t\tf 3 -20563 -20573 20573\n\t\tmu 0 3 3027 3967 2032\n\t\tf 3 -20388 20574 -20574\n\t\tmu 0 3 2032 1486 3027\n\t\tf 3 20575 20576 20577\n\t\tmu 0 3 4650 3764 4736\n\t\tf 3 20578 20579 -20578\n\t\tmu 0 3 4736 5154 4650\n\t\tf 3 20580 -20580 20581\n\t\tmu 0 3 1414 4650 5154\n\t\tf 3 -19978 20582 -20582\n\t\tmu 0 3 5154 6325 1414\n\t\tf 3 20583 20584 20585\n\t\tmu 0 3 2297 22886 22887\n\t\tf 3 20586 -20584 20587\n\t\tmu 0 3 22888 22889 2297\n\t\tf 3 20588 20589 -20586\n\t\tmu 0 3 22890 5127 2297\n\t\tf 3 -20589 20590 20591\n\t\tmu 0 3 5127 22891 2548\n\t\tf 3 20592 -20583 20593\n\t\tmu 0 3 22892 1414 6325\n\t\tf 3 20594 20595 -20592\n\t\tmu 0 3 2548 2154 5127\n\t\tf 3 -19972 20596 -20594\n\t\tmu 0 3 6325 1854 22893\n\t\tf 3 -20597 -19953 20597\n\t\tmu 0 3 22894 1854 522\n\t\tf 3 20598 20599 -20598\n\t\tmu 0 3 522 5128 22895\n\t\tf 3 20600 20601 -20588\n\t\tmu 0 3 2297 2823 22896\n\t\tf 3 20602 -20599 20603\n\t\tmu 0 3 4846 5128 522\n\t\tf 3 20604 20605 20606\n\t\tmu 0 3 1071 22897 22898\n\t\tf 3 20607 -20595 20608\n\t\tmu 0 3 1071 2154 2548\n\t\tf 3 20609 -20605 -20609\n\t\tmu 0 3 2548 22899 1071\n\t\tf 3 20610 20611 -20607\n\t\tmu 0 3 22900 4075 1071\n\t\tf 3 20612 20613 -20604\n\t\tmu 0 3 522 524 4846\n\t\tf 3 20614 20615 20616\n\t\tmu 0 3 6081 6142 2207\n\t\tf 3 20617 -19979 -20617\n\t\tmu 0 3 2207 5516 6081\n\t\tf 3 -20618 20618 -19998\n\t\tmu 0 3 5516 2207 6324\n\t\tf 3 -19462 20619 20620\n\t\tmu 0 3 2164 3210 5129\n\t\tf 3 20621 -19846 -20621\n\t\tmu 0 3 5129 5049 2164\n\t\tf 3 20622 -19464 20623\n\t\tmu 0 3 22901 22902 5451\n\t\tf 3 20624 20625 -20624\n\t\tmu 0 3 5451 442 22903\n\t\tf 3 -20625 -19469 20626\n\t\tmu 0 3 442 5451 219\n\t\tf 3 20627 20628 -20627\n\t\tmu 0 3 219 5878 442\n\t\tf 3 20629 -20628 20630\n\t\tmu 0 3 6209 5878 219\n\t\tf 3 20631 20632 20633\n\t\tmu 0 3 1281 5939 6418\n\t\tf 3 20634 -19957 -20634\n\t\tmu 0 3 6418 4066 1281\n\t\tf 3 -19952 -20635 20635\n\t\tmu 0 3 6392 4066 6418\n\t\tf 3 20636 -20613 -20636\n\t\tmu 0 3 6418 1374 6392\n\t\tf 3 -20632 -19961 20637\n\t\tmu 0 3 5939 1281 2028\n\t\tf 3 20638 20639 -20638\n\t\tmu 0 3 2028 5358 5939\n\t\tf 3 -20639 -19965 20640\n\t\tmu 0 3 5358 2028 4303\n\t\tf 3 -19781 20641 -20641\n\t\tmu 0 3 4303 3150 5358\n\t\tf 3 20642 20643 20644\n\t\tmu 0 3 5855 3237 4926\n\t\tf 3 -20645 20645 20646\n\t\tmu 0 3 5855 4926 451\n\t\tf 3 20647 20648 -20646\n\t\tmu 0 3 4926 5458 451\n\t\tf 3 -20647 20649 20650\n\t\tmu 0 3 5855 451 3134\n\t\tf 3 20651 20652 -20650\n\t\tmu 0 3 451 5566 3134\n\t\tf 3 20653 20654 -20652\n\t\tmu 0 3 451 74 5566\n\t\tf 3 20655 20656 -20653\n\t\tmu 0 3 5566 5367 3134\n\t\tf 3 20657 20658 -20657\n\t\tmu 0 3 5367 2363 3134\n\t\tf 3 -20651 20659 20660\n\t\tmu 0 3 5855 3134 2126\n\t\tf 3 20661 20662 20663\n\t\tmu 0 3 5041 708 6074\n\t\tf 3 -20664 20664 20665\n\t\tmu 0 3 5041 6074 188\n\t\tf 3 -20666 20666 20667\n\t\tmu 0 3 5041 188 4186\n\t\tf 3 -20668 20668 20669\n\t\tmu 0 3 5041 4186 1583\n\t\tf 3 20670 20671 -20669\n\t\tmu 0 3 4186 6518 1583\n\t\tf 3 20672 20673 -20671\n\t\tmu 0 3 4186 4364 6518\n\t\tf 3 -20670 20674 20675\n\t\tmu 0 3 5041 1583 5750\n\t\tf 3 20676 -20043 20677\n\t\tmu 0 3 4490 1790 5340\n\t\tf 3 20678 20679 20680\n\t\tmu 0 3 22904 2488 22905\n\t\tf 3 -20677 20681 20682\n\t\tmu 0 3 1790 4490 2826\n\t\tf 3 20683 -20047 -20683\n\t\tmu 0 3 2826 358 1790\n\t\tf 3 20684 -20680 20685\n\t\tmu 0 3 1056 22906 2488\n\t\tf 3 20686 20687 -20686\n\t\tmu 0 3 2488 2987 1056\n\t\tf 3 20688 20689 20690\n\t\tmu 0 3 4490 22907 802\n\t\tf 3 20691 -20682 -20691\n\t\tmu 0 3 802 2826 4490\n\t\tf 3 20692 -20688 20693\n\t\tmu 0 3 5799 1056 2987\n\t\tf 3 20694 20695 -20694\n\t\tmu 0 3 2987 5734 5799\n\t\tf 3 20696 -20696 20697\n\t\tmu 0 3 4742 5799 5734\n\t\tf 3 20698 20699 -20698\n\t\tmu 0 3 5734 936 4742\n\t\tf 3 20700 20701 20702\n\t\tmu 0 3 22908 22909 6080\n\t\tf 3 20703 20704 -20703\n\t\tmu 0 3 6080 3828 22910\n\t\tf 3 20705 -20705 20706\n\t\tmu 0 3 22911 22912 3828\n\t\tf 3 20707 -20690 -20707\n\t\tmu 0 3 3828 802 22913\n\t\tf 3 20708 -20700 20709\n\t\tmu 0 3 5577 4742 936\n\t\tf 3 20710 20711 -20710\n\t\tmu 0 3 936 95 5577\n\t\tf 3 20712 20713 20714\n\t\tmu 0 3 22914 22915 5229\n\t\tf 3 20715 -20702 -20715\n\t\tmu 0 3 5229 6080 22916\n\t\tf 3 20716 20717 20718\n\t\tmu 0 3 5982 22917 22918\n\t\tf 3 20719 20720 -20719\n\t\tmu 0 3 22919 2797 5982\n\t\tf 3 20721 -20721 20722\n\t\tmu 0 3 3276 5982 2797\n\t\tf 3 -20042 -20046 20723\n\t\tmu 0 3 22920 2976 22921\n\t\tf 3 20724 -20050 20725\n\t\tmu 0 3 22922 22923 4271\n\t\tf 3 20726 20727 -20726\n\t\tmu 0 3 4271 3438 22924\n\t\tf 3 20728 -20728 20729\n\t\tmu 0 3 22925 22926 3438\n\t\tf 3 20730 -20714 -20730\n\t\tmu 0 3 3438 5229 22927\n\t\tf 3 -20049 20731 -20676\n\t\tmu 0 3 5750 6006 5041\n\t\tf 3 -20662 -20732 20732\n\t\tmu 0 3 4092 1555 4894\n\t\tf 3 20733 20734 20735\n\t\tmu 0 3 22928 3593 22929\n\t\tf 3 20736 -20735 20737\n\t\tmu 0 3 4478 22930 3593\n\t\tf 3 20738 20739 -20738\n\t\tmu 0 3 3593 761 4478\n\t\tf 3 20740 20741 20742\n\t\tmu 0 3 31 22931 22932\n\t\tf 3 20743 20744 -20743\n\t\tmu 0 3 22933 1459 31\n\t\tf 3 20745 -20745 20746\n\t\tmu 0 3 5550 31 1459\n\t\tf 3 20747 20748 -20747\n\t\tmu 0 3 1459 2065 5550\n\t\tf 3 20749 -20749 20750\n\t\tmu 0 3 4322 5550 2065\n\t\tf 3 20751 20752 -20751\n\t\tmu 0 3 2065 6110 4322\n\t\tf 3 20753 20754 20755\n\t\tmu 0 3 22934 22935 4394\n\t\tf 3 20756 20757 -20756\n\t\tmu 0 3 4394 2894 22936\n\t\tf 3 20758 -20757 20759\n\t\tmu 0 3 5244 2894 4394\n\t\tf 3 -20727 -20675 20760\n\t\tmu 0 3 22937 647 22938\n\t\tf 3 20761 -19472 -19560\n\t\tmu 0 3 1233 219 2951\n\t\tf 3 -20762 20762 -20631\n\t\tmu 0 3 219 1233 6209\n\t\tf 3 20763 -20241 20764\n\t\tmu 0 3 2387 5783 5991\n\t\tf 3 -20765 -19932 20765\n\t\tmu 0 3 2387 5991 3283\n\t\tf 3 20766 20767 -20766\n\t\tmu 0 3 3283 3099 2387\n\t\tf 3 20768 -20767 20769\n\t\tmu 0 3 4570 3099 3283\n\t\tf 3 -19928 20770 -20770\n\t\tmu 0 3 3283 500 4570\n\t\tf 3 20771 20772 20773\n\t\tmu 0 3 22939 22940 22941\n\t\tf 3 20774 20775 -20774\n\t\tmu 0 3 22942 870 22943\n\t\tf 3 20776 -20775 20777\n\t\tmu 0 3 2801 870 22944\n\t\tf 3 20778 20779 -20778\n\t\tmu 0 3 22945 4089 2801\n\t\tf 3 20780 -20780 20781\n\t\tmu 0 3 5123 2801 4089\n\t\tf 3 -19942 20782 -20782\n\t\tmu 0 3 4089 3699 5123\n\t\tf 3 -20783 -19938 20783\n\t\tmu 0 3 5123 3699 22946\n\t\tf 3 20784 20785 -20784\n\t\tmu 0 3 22947 1778 5123\n\t\tf 3 -20785 20786 20787\n\t\tmu 0 3 1778 22948 711\n\t\tf 3 20788 20789 -20788\n\t\tmu 0 3 711 482 1778\n\t\tf 3 20790 -20789 20791\n\t\tmu 0 3 5142 482 711\n\t\tf 3 -19616 20792 -20792\n\t\tmu 0 3 711 1130 5142\n\t\tf 3 -20793 -19610 20793\n\t\tmu 0 3 5142 1130 1541\n\t\tf 3 20794 20795 -20794\n\t\tmu 0 3 1541 1779 5142\n\t\tf 3 20796 20797 20798\n\t\tmu 0 3 22949 22950 22951\n\t\tf 3 20799 20800 -20799\n\t\tmu 0 3 22952 22953 22954\n\t\tf 3 -20801 20801 20802\n\t\tmu 0 3 22955 22956 22957\n\t\tf 3 20803 20804 -20803\n\t\tmu 0 3 22958 22959 22960\n\t\tf 3 -20804 20805 20806\n\t\tmu 0 3 22961 22962 22963\n\t\tf 3 20807 20808 -20807\n\t\tmu 0 3 22964 22965 22966\n\t\tf 3 -20808 20809 20810\n\t\tmu 0 3 22967 22968 22969\n\t\tf 3 20811 20812 -20811\n\t\tmu 0 3 22970 22971 22972\n\t\tf 3 -20812 20813 20814\n\t\tmu 0 3 22973 22974 22975\n\t\tf 3 20815 20816 -20815\n\t\tmu 0 3 22976 22977 22978\n\t\tf 3 -20816 20817 20818\n\t\tmu 0 3 22979 22980 22981\n\t\tf 3 20819 20820 -20819\n\t\tmu 0 3 22982 22983 22984\n\t\tf 3 -20820 20821 20822\n\t\tmu 0 3 22985 22986 22987\n\t\tf 3 20823 20824 -20823\n\t\tmu 0 3 22988 22989 22990\n\t\tf 3 -20798 20825 20826\n\t\tmu 0 3 22991 22992 22993\n\t\tf 3 20827 20828 -20827\n\t\tmu 0 3 22994 22995 22996\n\t\tf 3 20829 -20828 20830\n\t\tmu 0 3 22997 22998 22999\n\t\tf 3 20831 20832 -20830\n\t\tmu 0 3 23000 23001 23002\n\t\tf 3 -20831 20833 20834\n\t\tmu 0 3 23003 23004 23005\n\t\tf 3 20835 -20832 20836\n\t\tmu 0 3 23006 23007 23008\n\t\tf 3 -20824 20837 20838\n\t\tmu 0 3 23009 23010 23011\n\t\tf 3 -20837 20839 20840\n\t\tmu 0 3 23012 23013 23014\n\t\tf 3 20841 20842 -20839\n\t\tmu 0 3 23015 23016 23017\n\t\tf 3 -20841 20843 -20842\n\t\tmu 0 3 23018 23019 23020\n\t\tf 3 20844 20845 20846\n\t\tmu 0 3 23021 23022 23023\n\t\tf 3 20847 20848 -20847\n\t\tmu 0 3 23024 23025 23026\n\t\tf 3 -20848 20849 20850\n\t\tmu 0 3 23027 23028 23029\n\t\tf 3 20851 20852 -20851\n\t\tmu 0 3 23030 23031 23032\n\t\tf 3 20853 -20845 20854\n\t\tmu 0 3 23033 23034 23035\n\t\tf 3 20855 20856 -20855\n\t\tmu 0 3 23036 23037 23038\n\t\tf 3 20857 20858 20859\n\t\tmu 0 3 23039 23040 23041\n\t\tf 3 20860 20861 -20860\n\t\tmu 0 3 23042 23043 23044\n\t\tf 3 -20861 20862 20863\n\t\tmu 0 3 23045 23046 23047\n\t\tf 3 20864 20865 -20864\n\t\tmu 0 3 23048 23049 23050\n\t\tf 3 20866 20867 20868\n\t\tmu 0 3 23051 23052 23053\n\t\tf 3 -20862 20869 20870\n\t\tmu 0 3 23054 23055 23056\n\t\tf 3 -20868 20871 -20871\n\t\tmu 0 3 23057 23058 23059\n\t\tf 3 20872 20873 -20869\n\t\tmu 0 3 23060 23061 23062\n\t\tf 3 20874 -20873 20875\n\t\tmu 0 3 23063 23064 23065\n\t\tf 3 -20875 20876 20877\n\t\tmu 0 3 23066 23067 23068\n\t\tf 3 20878 20879 -20878\n\t\tmu 0 3 23069 23070 23071\n\t\tf 3 -20874 -20880 20880\n\t\tmu 0 3 23072 23073 23074\n\t\tf 3 20881 -20879 20882\n\t\tmu 0 3 23075 23076 23077\n\t\tf 3 20883 20884 -20883\n\t\tmu 0 3 23078 23079 23080\n\t\tf 3 20885 -20885 20886\n\t\tmu 0 3 23081 23082 23083\n\t\tf 3 -20886 20887 20888\n\t\tmu 0 3 23084 23085 23086\n\t\tf 3 20889 20890 -20889\n\t\tmu 0 3 23087 23088 23089\n\t\tf 3 -20882 -20891 20891\n\t\tmu 0 3 23090 23091 23092\n\t\tf 3 20892 20893 -20887\n\t\tmu 0 3 23093 23094 23095\n\t\tf 3 20894 20895 -20892\n\t\tmu 0 3 23096 23097 23098\n\t\tf 3 20896 -20895 20897\n\t\tmu 0 3 23099 23100 23101\n\t\tf 3 20898 20899 -20898\n\t\tmu 0 3 23102 23103 23104\n\t\tf 3 -20899 -20890 20900\n\t\tmu 0 3 23105 23106 23107\n\t\tf 3 20901 20902 -20901\n\t\tmu 0 3 23108 23109 23110\n\t\tf 3 20903 20904 20905\n\t\tmu 0 3 23111 23112 23113\n\t\tf 3 20906 20907 20908\n\t\tmu 0 3 23114 23115 23116\n\t\tf 3 -20907 20909 20910\n\t\tmu 0 3 23117 23118 23119\n\t\tf 3 20911 20912 -20911\n\t\tmu 0 3 23120 23121 23122\n\t\tf 3 -20896 20913 -20881\n\t\tmu 0 3 23123 23124 23125\n\t\tf 3 -20912 20914 20915\n\t\tmu 0 3 23126 23127 23128\n\t\tf 3 20916 20917 -20916\n\t\tmu 0 3 23129 23130 23131\n\t\tf 3 -20917 20918 20919\n\t\tmu 0 3 23132 23133 23134\n\t\tf 3 20920 20921 -20920\n\t\tmu 0 3 23135 23136 23137\n\t\tf 3 -20921 20922 20923\n\t\tmu 0 3 23138 23139 23140\n\t\tf 3 -20852 -20914 20924\n\t\tmu 0 3 23141 23142 23143\n\t\tf 3 -20897 20925 -20925\n\t\tmu 0 3 23144 23145 23146\n\t\tf 3 20926 20927 20928\n\t\tmu 0 3 23147 23148 23149\n\t\tf 3 -20893 20929 -20929\n\t\tmu 0 3 23150 23151 23152\n\t\tf 3 -20927 20930 20931\n\t\tmu 0 3 23153 23154 23155\n\t\tf 3 20932 20933 -20932\n\t\tmu 0 3 23156 23157 23158\n\t\tf 3 -20930 20934 20935\n\t\tmu 0 3 23159 23160 23161\n\t\tf 3 20936 20937 -20931\n\t\tmu 0 3 23162 23163 23164\n\t\tf 3 -20884 20938 -20935\n\t\tmu 0 3 23165 23166 23167\n\t\tf 3 20939 -20939 20940\n\t\tmu 0 3 23168 23169 23170\n\t\tf 3 -20877 20941 -20941\n\t\tmu 0 3 23171 23172 23173\n\t\tf 3 -20942 20942 20943\n\t\tmu 0 3 23174 23175 23176\n\t\tf 3 20944 -20943 -20876\n\t\tmu 0 3 23177 23178 23179\n\t\tf 3 -20945 -20870 20945\n\t\tmu 0 3 23180 23181 23182\n\t\tf 3 -20866 20946 -20946\n\t\tmu 0 3 23183 23184 23185\n\t\tf 3 20947 20948 -20944\n\t\tmu 0 3 23186 23187 23188\n\t\tf 3 20949 -20948 20950\n\t\tmu 0 3 23189 23190 23191\n\t\tf 3 -20947 20951 -20951\n\t\tmu 0 3 23192 23193 23194\n\t\tf 3 -20952 -20865 20952\n\t\tmu 0 3 23195 23196 23197\n\t\tf 3 -20863 20953 20954\n\t\tmu 0 3 23198 23199 442\n\t\tf 3 -20629 20955 -20955\n\t\tmu 0 3 442 5878 23200\n\t\tf 3 -20626 -20954 20956\n\t\tmu 0 3 23201 442 23202\n\t\tf 3 -20859 20957 -20957\n\t\tmu 0 3 23203 23204 23205\n\t\tf 3 20958 -20857 20959\n\t\tmu 0 3 5129 23206 23207\n\t\tf 3 20960 -20622 -20960\n\t\tmu 0 3 23208 5049 5129\n\t\tf 3 -20630 20961 20962\n\t\tmu 0 3 5878 6209 23209\n\t\tf 3 20963 20964 20965\n\t\tmu 0 3 23210 23211 23212\n\t\tf 3 -20966 20966 20967\n\t\tmu 0 3 23213 23214 23215\n\t\tf 3 20968 20969 -20967\n\t\tmu 0 3 23216 23217 23218\n\t\tf 3 -20968 20970 20971\n\t\tmu 0 3 23219 23220 23221\n\t\tf 3 20972 -20971 20973\n\t\tmu 0 3 23222 23223 23224\n\t\tf 3 -20973 20974 20975\n\t\tmu 0 3 23225 23226 23227\n\t\tf 3 20976 20977 -20976\n\t\tmu 0 3 23228 23229 23230\n\t\tf 3 20978 -20977 20979\n\t\tmu 0 3 23231 23232 23233\n\t\tf 3 20980 20981 -20980\n\t\tmu 0 3 23234 23235 23236\n\t\tf 3 20982 -20978 20983\n\t\tmu 0 3 23237 23238 23239\n\t\tf 3 -20983 20984 -20972\n\t\tmu 0 3 23240 23241 23242\n\t\tf 3 20985 20986 -20984\n\t\tmu 0 3 23243 23244 23245\n\t\tf 3 20987 -20986 20988\n\t\tmu 0 3 23246 23247 23248\n\t\tf 3 -20979 20989 -20989\n\t\tmu 0 3 23249 23250 23251\n\t\tf 3 20990 -20975 20991\n\t\tmu 0 3 23252 23253 23254\n\t\tf 3 -20981 -20991 20992\n\t\tmu 0 3 23255 23256 23257\n\t\tf 3 20993 20994 -20992\n\t\tmu 0 3 23258 23259 23260\n\t\tf 3 20995 20996 -20993\n\t\tmu 0 3 23261 23262 23263\n\t\tf 3 20997 20998 -20974\n\t\tmu 0 3 23264 23265 23266\n\t\tf 3 -20994 -20999 20999\n\t\tmu 0 3 23267 23268 23269\n\t\tf 3 21000 21001 -21000\n\t\tmu 0 3 23270 23271 23272\n\t\tf 3 21002 -21001 21003\n\t\tmu 0 3 23273 23274 23275\n\t\tf 3 21004 21005 -21004\n\t\tmu 0 3 23276 23277 23278\n\t\tf 3 -21005 -20998 21006\n\t\tmu 0 3 23279 23280 23281\n\t\tf 3 -21007 -20970 21007\n\t\tmu 0 3 23282 23283 23284\n\t\tf 3 21008 -21008 21009\n\t\tmu 0 3 23285 23286 23287\n\t\tf 3 -20969 21010 -21010\n\t\tmu 0 3 23288 23289 23290\n\t\tf 3 21011 21012 21013\n\t\tmu 0 3 23291 23292 23293\n\t\tf 3 21014 21015 -21014\n\t\tmu 0 3 23294 23295 23296\n\t\tf 3 -21016 21016 21017\n\t\tmu 0 3 23297 23298 23299\n\t\tf 3 21018 21019 -21018\n\t\tmu 0 3 23300 23301 23302\n\t\tf 3 -21019 21020 21021\n\t\tmu 0 3 23303 23304 23305\n\t\tf 3 21022 21023 -21022\n\t\tmu 0 3 23306 23307 23308\n\t\tf 3 21024 21025 21026\n\t\tmu 0 3 23309 23310 23311\n\t\tf 3 21027 21028 -21027\n\t\tmu 0 3 23312 23313 23314\n\t\tf 3 -21029 21029 21030\n\t\tmu 0 3 23315 23316 23317\n\t\tf 3 21031 21032 -21031\n\t\tmu 0 3 23318 23319 23320\n\t\tf 3 -21032 21033 21034\n\t\tmu 0 3 23321 23322 23323\n\t\tf 3 21035 21036 -21035\n\t\tmu 0 3 23324 23325 23326\n\t\tf 3 -21036 21037 21038\n\t\tmu 0 3 23327 23328 23329\n\t\tf 3 21039 21040 -21039\n\t\tmu 0 3 23330 23331 23332\n\t\tf 3 21041 21042 21043\n\t\tmu 0 3 23333 23334 23335\n\t\tf 3 21044 21045 -21044\n\t\tmu 0 3 23336 23337 23338\n\t\tf 3 21046 -21043 21047\n\t\tmu 0 3 23339 23340 23341\n\t\tf 3 21048 21049 -21048\n\t\tmu 0 3 23342 23343 23344\n\t\tf 3 21050 21051 21052\n\t\tmu 0 3 23345 23346 23347\n\t\tf 3 21053 21054 -21053\n\t\tmu 0 3 23348 23349 23350\n\t\tf 3 -21055 21055 21056\n\t\tmu 0 3 23351 23352 23353\n\t\tf 3 21057 21058 -21057\n\t\tmu 0 3 23354 23355 23356\n\t\tf 3 21059 -21058 21060\n\t\tmu 0 3 23357 23358 23359\n\t\tf 3 21061 -21040 -21061\n\t\tmu 0 3 23360 23361 23362\n\t\tf 3 21062 21063 21064\n\t\tmu 0 3 23363 23364 23365\n\t\tf 3 21065 21066 -21065\n\t\tmu 0 3 23366 23367 23368\n\t\tf 3 -21063 21067 21068\n\t\tmu 0 3 23369 23370 23371\n\t\tf 3 21069 21070 -21069\n\t\tmu 0 3 23372 23373 23374\n\t\tf 3 21071 -21068 21072\n\t\tmu 0 3 23375 23376 23377\n\t\tf 3 21073 21074 -21073\n\t\tmu 0 3 23378 23379 23380\n\t\tf 3 -21067 21075 21076\n\t\tmu 0 3 23381 23382 23383\n\t\tf 3 21077 -21074 -21077\n\t\tmu 0 3 23384 23385 23386\n\t\tf 3 21078 -21070 21079\n\t\tmu 0 3 23387 23388 23389\n\t\tf 3 21080 21081 -21080\n\t\tmu 0 3 23390 23391 23392\n\t\tf 3 21082 -21082 21083\n\t\tmu 0 3 23393 23394 23395\n\t\tf 3 21084 21085 -21084\n\t\tmu 0 3 23396 23397 23398\n\t\tf 3 21086 -21086 21087\n\t\tmu 0 3 23399 23400 23401\n\t\tf 3 21088 21089 -21088\n\t\tmu 0 3 23402 23403 23404\n\t\tf 3 -21090 21090 21091\n\t\tmu 0 3 23405 23406 23407\n\t\tf 3 21092 21093 -21092\n\t\tmu 0 3 23408 23409 23410\n\t\tf 3 -21093 21094 21095\n\t\tmu 0 3 23411 23412 23413\n\t\tf 3 21096 21097 -21096\n\t\tmu 0 3 23414 23415 23416\n\t\tf 3 21098 -21095 21099\n\t\tmu 0 3 23417 23418 23419\n\t\tf 3 21100 21101 -21100\n\t\tmu 0 3 23420 23421 23422\n\t\tf 3 -21101 -21091 21102\n\t\tmu 0 3 23423 23424 23425\n\t\tf 3 21103 21104 -21103\n\t\tmu 0 3 23426 23427 23428\n\t\tf 3 -21075 21105 21106\n\t\tmu 0 3 23429 23430 23431\n\t\tf 3 -21106 -21078 21107\n\t\tmu 0 3 23432 23433 23434\n\t\tf 3 -21085 21108 21109\n\t\tmu 0 3 23435 23436 23437\n\t\tf 3 21110 21111 -21110\n\t\tmu 0 3 23438 23439 23440\n\t\tf 3 -21089 -21112 21112\n\t\tmu 0 3 23441 23442 23443\n\t\tf 3 21113 -21104 -21113\n\t\tmu 0 3 23444 23445 23446\n\t\tf 3 -21111 21114 21115\n\t\tmu 0 3 23447 23448 23449\n\t\tf 3 21116 21117 -21116\n\t\tmu 0 3 23450 23451 23452\n\t\tf 3 -21114 -21118 21118\n\t\tmu 0 3 23453 23454 23455\n\t\tf 3 -21117 21119 21120\n\t\tmu 0 3 23456 23457 23458\n\t\tf 3 21121 21122 -21121\n\t\tmu 0 3 23459 23460 23461\n\t\tf 3 21123 21124 -21119\n\t\tmu 0 3 23462 23463 23464\n\t\tf 3 -21124 -21123 21125\n\t\tmu 0 3 23465 23466 23467\n\t\tf 3 21126 21127 -21126\n\t\tmu 0 3 23468 23469 23470\n\t\tf 3 -21120 21128 21129\n\t\tmu 0 3 23471 23472 23473\n\t\tf 3 -21129 -21115 21130\n\t\tmu 0 3 23474 23475 23476\n\t\tf 3 21131 21132 -21130\n\t\tmu 0 3 23477 23478 23479\n\t\tf 3 -21132 21133 21134\n\t\tmu 0 3 23480 23481 23482\n\t\tf 3 21135 21136 -21135\n\t\tmu 0 3 23483 23484 23485\n\t\tf 3 21137 -21128 21138\n\t\tmu 0 3 23486 23487 23488\n\t\tf 3 -21102 21139 21140\n\t\tmu 0 3 23489 23490 23491\n\t\tf 3 -21125 -21138 21141\n\t\tmu 0 3 23492 23493 23494\n\t\tf 3 -21140 -21105 -21142\n\t\tmu 0 3 23495 23496 23497\n\t\tf 3 21142 21143 -21139\n\t\tmu 0 3 23498 23499 23500\n\t\tf 3 -21144 21144 21145\n\t\tmu 0 3 23501 23502 23503\n\t\tf 3 21146 21147 -21146\n\t\tmu 0 3 23504 23505 23506\n\t\tf 3 21148 21149 -21131\n\t\tmu 0 3 23507 23508 23509\n\t\tf 3 -21134 -21150 -21107\n\t\tmu 0 3 23510 23511 23512\n\t\tf 3 21150 -21147 21151\n\t\tmu 0 3 23513 23514 23515\n\t\tf 3 -21151 21152 21153\n\t\tmu 0 3 23516 23517 23518\n\t\tf 3 21154 -21153 21155\n\t\tmu 0 3 23519 23520 23521\n\t\tf 3 21156 21157 -21156\n\t\tmu 0 3 23522 23523 23524\n\t\tf 3 -21157 21158 21159\n\t\tmu 0 3 23525 23526 23527\n\t\tf 3 21160 -21159 -21152\n\t\tmu 0 3 23528 23529 23530\n\t\tf 3 21161 21162 -21160\n\t\tmu 0 3 23531 23532 23533\n\t\tf 3 -21155 21163 21164\n\t\tmu 0 3 23534 23535 23536\n\t\tf 3 21165 21166 -21165\n\t\tmu 0 3 23537 23538 23539\n\t\tf 3 -21166 21167 21168\n\t\tmu 0 3 23540 23541 23542\n\t\tf 3 21169 21170 -21169\n\t\tmu 0 3 23543 23544 23545\n\t\tf 3 21171 21172 -21154\n\t\tmu 0 3 23546 23547 23548\n\t\tf 3 -21148 -21173 -21141\n\t\tmu 0 3 23549 23550 23551\n\t\tf 3 -21171 21173 21174\n\t\tmu 0 3 23552 23553 23554\n\t\tf 3 -21097 21175 -21175\n\t\tmu 0 3 23555 23556 23557\n\t\tf 3 -21167 -21176 21176\n\t\tmu 0 3 23558 23559 23560\n\t\tf 3 -21099 -21172 -21177\n\t\tmu 0 3 23561 23562 23563\n\t\tf 3 -21158 21177 21178\n\t\tmu 0 3 23564 23565 1890\n\t\tf 3 -21178 -21163 21179\n\t\tmu 0 3 1890 23566 23567\n\t\tf 3 -19778 21180 -21179\n\t\tmu 0 3 1890 1373 23568\n\t\tf 3 -21164 -21181 21181\n\t\tmu 0 3 23569 23570 1373\n\t\tf 3 21182 -19780 -21180\n\t\tmu 0 3 23571 3150 1890\n\t\tf 3 -21168 21183 21184\n\t\tmu 0 3 23572 23573 1522\n\t\tf 3 -19784 -21184 -21182\n\t\tmu 0 3 1373 1522 23574\n\t\tf 3 -19786 21185 -21185\n\t\tmu 0 3 1522 4918 23575\n\t\tf 3 21186 21187 21188\n\t\tmu 0 3 23576 23577 23578\n\t\tf 3 -20918 21189 -21189\n\t\tmu 0 3 23579 23580 23581\n\t\tf 3 -21188 21190 21191\n\t\tmu 0 3 23582 23583 23584\n\t\tf 3 21192 -20913 -21192\n\t\tmu 0 3 23585 23586 23587\n\t\tf 3 -21193 21193 21194\n\t\tmu 0 3 23588 23589 23590;\n\tsetAttr \".fc[11000:11499]\"\n\t\tf 3 21195 21196 -21195\n\t\tmu 0 3 23591 23592 23593\n\t\tf 3 -21191 21197 21198\n\t\tmu 0 3 23594 23595 23596\n\t\tf 3 -21198 -21187 21199\n\t\tmu 0 3 23597 23598 23599\n\t\tf 3 21200 21201 -21199\n\t\tmu 0 3 23600 23601 23602\n\t\tf 3 -21194 -21202 21202\n\t\tmu 0 3 23603 23604 23605\n\t\tf 3 21203 21204 -21200\n\t\tmu 0 3 23606 23607 23608\n\t\tf 3 -20903 -21196 21205\n\t\tmu 0 3 23609 23610 23611\n\t\tf 3 21206 21207 -21206\n\t\tmu 0 3 23612 23613 23614\n\t\tf 3 -21207 21208 21209\n\t\tmu 0 3 23615 23616 23617\n\t\tf 3 21210 -21209 -21203\n\t\tmu 0 3 23618 23619 23620\n\t\tf 3 21211 21212 -21210\n\t\tmu 0 3 23621 23622 23623\n\t\tf 3 -21213 -21087 21213\n\t\tmu 0 3 23624 23625 23626\n\t\tf 3 21214 21215 -21214\n\t\tmu 0 3 23627 23628 23629\n\t\tf 3 -21208 -21216 21216\n\t\tmu 0 3 23630 23631 23632\n\t\tf 3 21217 21218 -21217\n\t\tmu 0 3 23633 23634 23635\n\t\tf 3 -21218 21219 21220\n\t\tmu 0 3 23636 23637 23638\n\t\tf 3 -21220 -21215 21221\n\t\tmu 0 3 23639 23640 23641\n\t\tf 3 21222 21223 -21221\n\t\tmu 0 3 23642 23643 23644\n\t\tf 3 -21223 21224 21225\n\t\tmu 0 3 23645 23646 23647\n\t\tf 3 21226 21227 -21226\n\t\tmu 0 3 23648 23649 23650\n\t\tf 3 21228 -21225 21229\n\t\tmu 0 3 23651 23652 23653\n\t\tf 3 21230 -21229 21231\n\t\tmu 0 3 23654 23655 23656\n\t\tf 3 -21174 21232 -21232\n\t\tmu 0 3 23657 23658 23659\n\t\tf 3 -21233 -21170 21233\n\t\tmu 0 3 23660 23661 23662\n\t\tf 3 21234 21235 -21234\n\t\tmu 0 3 23663 23664 23665\n\t\tf 3 21236 -21236 21237\n\t\tmu 0 3 23666 23667 23668\n\t\tf 3 -20849 -21227 21238\n\t\tmu 0 3 23669 23670 23671\n\t\tf 3 -21231 -21237 -21239\n\t\tmu 0 3 23672 23673 23674\n\t\tf 3 21239 -20856 -21238\n\t\tmu 0 3 23675 23676 23677\n\t\tf 3 21240 -21098 -21230\n\t\tmu 0 3 23678 23679 23680\n\t\tf 3 -21094 -21241 -21222\n\t\tmu 0 3 23681 23682 23683\n\t\tf 3 -21235 -21186 21241\n\t\tmu 0 3 23684 23685 4918\n\t\tf 3 -19844 21242 -21242\n\t\tmu 0 3 4918 2482 23686\n\t\tf 3 -21240 -21243 21243\n\t\tmu 0 3 23687 23688 2482\n\t\tf 3 -19847 -20961 -21244\n\t\tmu 0 3 2482 5545 23689\n\t\tf 3 21244 21245 21246\n\t\tmu 0 3 23690 23691 23692\n\t\tf 3 21247 21248 -21247\n\t\tmu 0 3 23693 23694 23695\n\t\tf 3 21249 21250 21251\n\t\tmu 0 3 23696 23697 23698\n\t\tf 3 21252 21253 -21252\n\t\tmu 0 3 23699 23700 23701\n\t\tf 3 -21253 21254 21255\n\t\tmu 0 3 23702 23703 23704\n\t\tf 3 21256 21257 -21256\n\t\tmu 0 3 23705 23706 23707\n\t\tf 3 -21257 21258 21259\n\t\tmu 0 3 23708 23709 23710\n\t\tf 3 21260 21261 -21260\n\t\tmu 0 3 23711 23712 23713\n\t\tf 3 -21261 21262 21263\n\t\tmu 0 3 23714 23715 23716\n\t\tf 3 21264 21265 -21264\n\t\tmu 0 3 23717 23718 23719\n\t\tf 3 -21265 21266 21267\n\t\tmu 0 3 23720 23721 23722\n\t\tf 3 21268 21269 -21268\n\t\tmu 0 3 23723 23724 23725\n\t\tf 3 -21269 21270 21271\n\t\tmu 0 3 23726 23727 23728\n\t\tf 3 21272 21273 -21272\n\t\tmu 0 3 23729 23730 23731\n\t\tf 3 -21273 21274 21275\n\t\tmu 0 3 23732 23733 23734\n\t\tf 3 21276 21277 -21276\n\t\tmu 0 3 23735 23736 23737\n\t\tf 3 21278 -21277 21279\n\t\tmu 0 3 23738 23739 23740\n\t\tf 3 21280 21281 -21280\n\t\tmu 0 3 23741 23742 23743\n\t\tf 3 -21282 21282 21283\n\t\tmu 0 3 23744 23745 23746\n\t\tf 3 21284 21285 -21284\n\t\tmu 0 3 23747 23748 23749\n\t\tf 3 21286 21287 21288\n\t\tmu 0 3 23750 23751 23752\n\t\tf 3 21289 21290 -21289\n\t\tmu 0 3 23753 23754 23755\n\t\tf 3 -21287 21291 21292\n\t\tmu 0 3 23756 23757 23758\n\t\tf 3 21293 21294 -21293\n\t\tmu 0 3 23759 23760 23761\n\t\tf 3 -21294 21295 21296\n\t\tmu 0 3 23762 23763 23764\n\t\tf 3 21297 21298 -21297\n\t\tmu 0 3 23765 23766 23767\n\t\tf 3 -21298 21299 21300\n\t\tmu 0 3 23768 23769 23770\n\t\tf 3 21301 21302 -21301\n\t\tmu 0 3 23771 23772 23773\n\t\tf 3 -21302 21303 21304\n\t\tmu 0 3 23774 23775 23776\n\t\tf 3 21305 21306 -21305\n\t\tmu 0 3 23777 23778 23779\n\t\tf 3 -21306 21307 21308\n\t\tmu 0 3 23780 23781 23782\n\t\tf 3 21309 21310 -21309\n\t\tmu 0 3 23783 23784 23785\n\t\tf 3 -21310 21311 21312\n\t\tmu 0 3 23786 23787 23788\n\t\tf 3 21313 21314 -21313\n\t\tmu 0 3 23789 23790 23791\n\t\tf 3 -21314 21315 21316\n\t\tmu 0 3 23792 23793 23794\n\t\tf 3 21317 21318 -21317\n\t\tmu 0 3 23795 23796 23797\n\t\tf 3 -21318 21319 21320\n\t\tmu 0 3 23798 23799 23800\n\t\tf 3 21321 21322 -21321\n\t\tmu 0 3 23801 23802 23803\n\t\tf 3 21323 21324 21325\n\t\tmu 0 3 23804 23805 23806\n\t\tf 3 21326 21327 -21326\n\t\tmu 0 3 23807 23808 23809\n\t\tf 3 21328 -21325 21329\n\t\tmu 0 3 23810 23811 23812\n\t\tf 3 21330 -20924 -21330\n\t\tmu 0 3 23813 23814 23815\n\t\tf 3 21331 21332 21333\n\t\tmu 0 3 23816 23817 23818\n\t\tf 3 21334 21335 -21334\n\t\tmu 0 3 23819 23820 23821\n\t\tf 3 -21335 21336 21337\n\t\tmu 0 3 23822 23823 23824\n\t\tf 3 21338 21339 -21338\n\t\tmu 0 3 23825 23826 23827\n\t\tf 3 -21339 21340 21341\n\t\tmu 0 3 23828 23829 23830\n\t\tf 3 21342 21343 -21342\n\t\tmu 0 3 23831 23832 23833\n\t\tf 3 -21343 21344 21345\n\t\tmu 0 3 23834 23835 23836\n\t\tf 3 21346 21347 -21346\n\t\tmu 0 3 23837 23838 23839\n\t\tf 3 21348 21349 21350\n\t\tmu 0 3 23840 23841 23842\n\t\tf 3 21351 21352 -21351\n\t\tmu 0 3 23843 23844 23845\n\t\tf 3 -21352 21353 21354\n\t\tmu 0 3 23846 23847 23848\n\t\tf 3 21355 21356 -21355\n\t\tmu 0 3 23849 23850 23851\n\t\tf 3 -21356 21357 21358\n\t\tmu 0 3 23852 23853 23854\n\t\tf 3 21359 21360 -21359\n\t\tmu 0 3 23855 23856 23857\n\t\tf 3 -21360 21361 21362\n\t\tmu 0 3 23858 23859 23860\n\t\tf 3 -21162 21363 -21363\n\t\tmu 0 3 23861 23862 23863\n\t\tf 3 21364 -21357 21365\n\t\tmu 0 3 23864 23865 23866\n\t\tf 3 21366 21367 -21366\n\t\tmu 0 3 23867 23868 23869\n\t\tf 3 -21365 21368 21369\n\t\tmu 0 3 23870 23871 23872\n\t\tf 3 21370 -21353 -21370\n\t\tmu 0 3 23873 23874 23875\n\t\tf 3 -21369 21371 21372\n\t\tmu 0 3 23876 23877 23878\n\t\tf 3 -21372 -21368 21373\n\t\tmu 0 3 23879 23880 23881\n\t\tf 3 21374 21375 -21373\n\t\tmu 0 3 23882 23883 23884\n\t\tf 3 21376 21377 -21374\n\t\tmu 0 3 23885 23886 23887\n\t\tf 3 21378 -21377 21379\n\t\tmu 0 3 23888 23889 23890\n\t\tf 3 21380 21381 -21380\n\t\tmu 0 3 23891 23892 23893\n\t\tf 3 -21361 21382 21383\n\t\tmu 0 3 23894 23895 23896\n\t\tf 3 -21381 -21367 -21384\n\t\tmu 0 3 23897 23898 23899\n\t\tf 3 21384 -21382 21385\n\t\tmu 0 3 23900 23901 23902\n\t\tf 3 -21385 -21143 21386\n\t\tmu 0 3 23903 23904 23905\n\t\tf 3 21387 21388 -21387\n\t\tmu 0 3 23906 23907 23908\n\t\tf 3 -21379 -21389 21389\n\t\tmu 0 3 23909 23910 23911\n\t\tf 3 21390 -21145 -21386\n\t\tmu 0 3 23912 23913 23914\n\t\tf 3 -21391 -21383 21391\n\t\tmu 0 3 23915 23916 23917\n\t\tf 3 -21364 -21161 -21392\n\t\tmu 0 3 23918 23919 23920\n\t\tf 3 21392 21393 -21390\n\t\tmu 0 3 23921 23922 23923\n\t\tf 3 -21378 -21394 21394\n\t\tmu 0 3 23924 23925 23926\n\t\tf 3 21395 -21388 21396\n\t\tmu 0 3 23927 23928 23929\n\t\tf 3 -21396 21397 -21393\n\t\tmu 0 3 23930 23931 23932\n\t\tf 3 -21127 21398 -21397\n\t\tmu 0 3 23933 23934 23935\n\t\tf 3 21399 -21399 21400\n\t\tmu 0 3 23936 23937 23938\n\t\tf 3 -21122 21401 -21401\n\t\tmu 0 3 23939 23940 23941\n\t\tf 3 -21402 -21133 21402\n\t\tmu 0 3 23942 23943 23944\n\t\tf 3 21403 21404 -21403\n\t\tmu 0 3 23945 23946 23947\n\t\tf 3 -21404 -21137 21405\n\t\tmu 0 3 23948 23949 23950\n\t\tf 3 21406 21407 -21406\n\t\tmu 0 3 23951 23952 23953\n\t\tf 3 21408 -21408 21409\n\t\tmu 0 3 23954 23955 23956\n\t\tf 3 21410 21411 -21410\n\t\tmu 0 3 23957 23958 23959\n\t\tf 3 21412 -21412 21413\n\t\tmu 0 3 23960 23961 23962\n\t\tf 3 -21414 21414 21415\n\t\tmu 0 3 23963 23964 23965\n\t\tf 3 21416 -21416 21417\n\t\tmu 0 3 23966 23967 23968\n\t\tf 3 21418 21419 -21417\n\t\tmu 0 3 23969 23970 23971\n\t\tf 3 21420 -21418 21421\n\t\tmu 0 3 23972 23973 23974\n\t\tf 3 21422 21423 -21421\n\t\tmu 0 3 23975 23976 23977\n\t\tf 3 21424 21425 -21424\n\t\tmu 0 3 23978 23979 23980\n\t\tf 3 21426 21427 -21425\n\t\tmu 0 3 23981 23982 23983\n\t\tf 3 21428 21429 -21413\n\t\tmu 0 3 23984 23985 23986\n\t\tf 3 21430 21431 -21430\n\t\tmu 0 3 23987 23988 23989\n\t\tf 3 -21407 21432 21433\n\t\tmu 0 3 23990 23991 23992\n\t\tf 3 21434 21435 -21428\n\t\tmu 0 3 23993 23994 23995\n\t\tf 3 21436 -21434 21437\n\t\tmu 0 3 23996 23997 23998\n\t\tf 3 21438 -21438 -21435\n\t\tmu 0 3 23999 24000 24001\n\t\tf 3 21439 -21411 21440\n\t\tmu 0 3 24002 24003 24004\n\t\tf 3 21441 21442 -21441\n\t\tmu 0 3 24005 24006 24007\n\t\tf 3 21443 21444 21445\n\t\tmu 0 3 24008 24009 24010\n\t\tf 3 21446 21447 -21446\n\t\tmu 0 3 24011 24012 24013\n\t\tf 3 -21447 21448 21449\n\t\tmu 0 3 24014 24015 24016\n\t\tf 3 21450 21451 -21450\n\t\tmu 0 3 24017 24018 24019\n\t\tf 3 21452 -21449 21453\n\t\tmu 0 3 24020 24021 24022\n\t\tf 3 21454 21455 -21454\n\t\tmu 0 3 24023 24024 24025\n\t\tf 3 -21455 -21445 21456\n\t\tmu 0 3 24026 24027 24028\n\t\tf 3 21457 21458 -21457\n\t\tmu 0 3 24029 24030 24031\n\t\tf 3 21459 -21451 21460\n\t\tmu 0 3 24032 24033 24034\n\t\tf 3 21461 21462 -21461\n\t\tmu 0 3 24035 24036 24037\n\t\tf 3 -21462 -21453 21463\n\t\tmu 0 3 24038 24039 24040\n\t\tf 3 -21463 21464 21465\n\t\tmu 0 3 24041 24042 24043\n\t\tf 3 21466 21467 -21466\n\t\tmu 0 3 24044 24045 24046\n\t\tf 3 -21467 21468 21469\n\t\tmu 0 3 24047 24048 24049\n\t\tf 3 21470 21471 -21470\n\t\tmu 0 3 24050 24051 24052\n\t\tf 3 -21471 21472 21473\n\t\tmu 0 3 24053 24054 24055\n\t\tf 3 21474 21475 -21474\n\t\tmu 0 3 24056 24057 24058\n\t\tf 3 -21473 21476 21477\n\t\tmu 0 3 24059 24060 24061\n\t\tf 3 21478 21479 -21478\n\t\tmu 0 3 24062 24063 24064\n\t\tf 3 -21475 21480 21481\n\t\tmu 0 3 24065 24066 24067\n\t\tf 3 -21481 -21480 21482\n\t\tmu 0 3 24068 24069 24070\n\t\tf 3 21483 21484 -21482\n\t\tmu 0 3 24071 24072 24073\n\t\tf 3 21485 21486 -21483\n\t\tmu 0 3 24074 24075 24076\n\t\tf 3 -21469 21487 21488\n\t\tmu 0 3 24077 24078 24079\n\t\tf 3 21489 -21477 -21489\n\t\tmu 0 3 24080 24081 24082\n\t\tf 3 21490 -21488 21491\n\t\tmu 0 3 24083 24084 24085\n\t\tf 3 -21465 21492 -21492\n\t\tmu 0 3 24086 24087 24088\n\t\tf 3 21493 -21493 -21464\n\t\tmu 0 3 24089 24090 24091\n\t\tf 3 21494 21495 21496\n\t\tmu 0 3 24092 24093 24094\n\t\tf 3 21497 21498 -21497\n\t\tmu 0 3 24095 24096 24097\n\t\tf 3 -21498 21499 21500\n\t\tmu 0 3 24098 24099 24100\n\t\tf 3 21501 -21499 21502\n\t\tmu 0 3 24101 24102 24103\n\t\tf 3 21503 21504 -21503\n\t\tmu 0 3 24104 24105 24106\n\t\tf 3 21505 21506 -21501\n\t\tmu 0 3 24107 24108 24109\n\t\tf 3 -21504 -21507 21507\n\t\tmu 0 3 24110 24111 24112\n\t\tf 3 -21506 21508 21509\n\t\tmu 0 3 24113 24114 24115\n\t\tf 3 21510 21511 -21508\n\t\tmu 0 3 24116 24117 24118\n\t\tf 3 21512 21513 -21510\n\t\tmu 0 3 24119 24120 24121\n\t\tf 3 -21513 21514 21515\n\t\tmu 0 3 24122 24123 24124\n\t\tf 3 -21514 21516 21517\n\t\tmu 0 3 24125 24126 24127\n\t\tf 3 21518 -21511 -21518\n\t\tmu 0 3 24128 24129 24130\n\t\tf 3 21519 21520 -21516\n\t\tmu 0 3 24131 24132 24133\n\t\tf 3 21521 -21520 21522\n\t\tmu 0 3 24134 24135 24136\n\t\tf 3 21523 21524 -21523\n\t\tmu 0 3 24137 24138 24139\n\t\tf 3 -21521 21525 21526\n\t\tmu 0 3 24140 24141 24142\n\t\tf 3 21527 -21517 -21527\n\t\tmu 0 3 24143 24144 24145\n\t\tf 3 -21526 -21522 21528\n\t\tmu 0 3 24146 24147 24148\n\t\tf 3 21529 21530 -21529\n\t\tmu 0 3 24149 24150 24151\n\t\tf 3 -21502 21531 21532\n\t\tmu 0 3 24152 24153 24154\n\t\tf 3 21533 21534 -21533\n\t\tmu 0 3 24155 24156 24157\n\t\tf 3 -21495 -21535 21535\n\t\tmu 0 3 24158 24159 24160\n\t\tf 3 21536 21537 -21536\n\t\tmu 0 3 24161 24162 24163\n\t\tf 3 -21525 21538 21539\n\t\tmu 0 3 24164 24165 24166\n\t\tf 3 21540 21541 -21540\n\t\tmu 0 3 24167 24168 24169\n\t\tf 3 -21530 -21542 21542\n\t\tmu 0 3 24170 24171 24172\n\t\tf 3 21543 21544 -21543\n\t\tmu 0 3 24173 24174 24175\n\t\tf 3 21545 -21544 21546\n\t\tmu 0 3 24176 24177 24178\n\t\tf 3 21547 21548 -21547\n\t\tmu 0 3 24179 24180 24181\n\t\tf 3 -21548 -21541 21549\n\t\tmu 0 3 24182 24183 24184\n\t\tf 3 21550 21551 -21550\n\t\tmu 0 3 24185 24186 24187\n\t\tf 3 21552 -21549 21553\n\t\tmu 0 3 24188 24189 24190\n\t\tf 3 21554 -20934 -21554\n\t\tmu 0 3 24191 24192 24193\n\t\tf 3 -21555 -21552 21555\n\t\tmu 0 3 24194 24195 24196\n\t\tf 3 21556 -20928 -21556\n\t\tmu 0 3 24197 24198 24199\n\t\tf 3 21557 21558 21559\n\t\tmu 0 3 24200 24201 24202\n\t\tf 3 21560 21561 -21560\n\t\tmu 0 3 24203 24204 24205\n\t\tf 3 -21561 21562 21563\n\t\tmu 0 3 24206 24207 24208\n\t\tf 3 -20894 21564 -21564\n\t\tmu 0 3 24209 24210 24211\n\t\tf 3 -20888 -21563 21565\n\t\tmu 0 3 24212 24213 24214\n\t\tf 3 21566 21567 -21566\n\t\tmu 0 3 24215 24216 24217\n\t\tf 3 -21567 -21559 21568\n\t\tmu 0 3 24218 24219 24220\n\t\tf 3 -21569 21569 21570\n\t\tmu 0 3 24221 24222 24223\n\t\tf 3 21571 21572 21573\n\t\tmu 0 3 24224 24225 4596\n\t\tf 3 21574 21575 21576\n\t\tmu 0 3 24226 4968 2700\n\t\tf 3 21577 21578 -21577\n\t\tmu 0 3 2700 24227 24228\n\t\tf 3 21579 -21579 21580\n\t\tmu 0 3 24229 24230 24231\n\t\tf 3 21581 21582 -21581\n\t\tmu 0 3 24232 24233 24234\n\t\tf 3 -21578 21583 21584\n\t\tmu 0 3 24235 2700 3345\n\t\tf 3 21585 21586 -21585\n\t\tmu 0 3 3345 24236 24237\n\t\tf 3 21587 21588 -21587\n\t\tmu 0 3 24238 24239 24240\n\t\tf 3 21589 21590 -21589\n\t\tmu 0 3 24241 24242 24243\n\t\tf 3 -21575 21591 21592\n\t\tmu 0 3 4968 24244 24245\n\t\tf 3 21593 21594 -21593\n\t\tmu 0 3 24246 6031 4968\n\t\tf 3 -21580 21595 21596\n\t\tmu 0 3 24247 24248 24249\n\t\tf 3 21597 -21592 -21597\n\t\tmu 0 3 24250 24251 24252\n\t\tf 3 -21586 21598 21599\n\t\tmu 0 3 24253 3345 4562\n\t\tf 3 21600 21601 -21600\n\t\tmu 0 3 4562 24254 24255\n\t\tf 3 21602 -21588 21603\n\t\tmu 0 3 24256 24257 24258\n\t\tf 3 -21602 21604 -21604\n\t\tmu 0 3 24259 24260 24261\n\t\tf 3 -21603 21605 21606\n\t\tmu 0 3 24262 24263 24264\n\t\tf 3 21607 21608 -21607\n\t\tmu 0 3 24265 24266 24267\n\t\tf 3 -21590 -21609 21609\n\t\tmu 0 3 24268 24269 24270\n\t\tf 3 21610 21611 -21610\n\t\tmu 0 3 24271 24272 24273\n\t\tf 3 21612 -21611 21613\n\t\tmu 0 3 24274 24275 24276\n\t\tf 3 21614 21615 -21614\n\t\tmu 0 3 24277 24278 24279\n\t\tf 3 -21598 21616 21617\n\t\tmu 0 3 24280 24281 24282\n\t\tf 3 21618 21619 -21618\n\t\tmu 0 3 24283 24284 24285\n\t\tf 3 -21619 21620 21621\n\t\tmu 0 3 24286 24287 24288\n\t\tf 3 21622 21623 -21622\n\t\tmu 0 3 24289 24290 24291\n\t\tf 3 21624 -21624 21625\n\t\tmu 0 3 5914 24292 24293\n\t\tf 3 -21620 -21625 21626\n\t\tmu 0 3 24294 24295 5914\n\t\tf 3 21627 -21594 -21627\n\t\tmu 0 3 5914 6031 24296\n\t\tf 3 21628 21629 -21626\n\t\tmu 0 3 24297 5441 5914\n\t\tf 3 -21629 21630 21631\n\t\tmu 0 3 5441 24298 24299\n\t\tf 3 -21574 21632 -21632\n\t\tmu 0 3 24300 2378 5441\n\t\tf 3 21633 -21631 21634\n\t\tmu 0 3 24301 24302 24303\n\t\tf 3 -21623 -20905 -21635\n\t\tmu 0 3 24304 24305 24306\n\t\tf 3 -21633 -21573 21635\n\t\tmu 0 3 5441 2378 24307\n\t\tf 3 21636 21637 -21636\n\t\tmu 0 3 24308 24309 5441\n\t\tf 3 -21630 -21638 21638\n\t\tmu 0 3 5914 5441 24310\n\t\tf 3 -21452 21639 -21639\n\t\tmu 0 3 24311 24312 5914\n\t\tf 3 -21640 -21460 21640\n\t\tmu 0 3 5914 24313 24314\n\t\tf 3 21641 -21628 -21641\n\t\tmu 0 3 24315 6031 5914\n\t\tf 3 -21595 -21642 21642\n\t\tmu 0 3 4968 6031 24316\n\t\tf 3 -21468 21643 -21643\n\t\tmu 0 3 24317 24318 4968\n\t\tf 3 -21644 -21472 21644\n\t\tmu 0 3 4968 24319 24320\n\t\tf 3 21645 -21576 -21645\n\t\tmu 0 3 24321 2700 4968\n\t\tf 3 -21646 21646 21647\n\t\tmu 0 3 2700 24322 24323\n\t\tf 3 21648 -21584 -21648\n\t\tmu 0 3 24324 3345 2700\n\t\tf 3 -21649 21649 21650\n\t\tmu 0 3 3345 24325 24326\n\t\tf 3 21651 -21599 -21651\n\t\tmu 0 3 24327 4562 3345\n\t\tf 3 21652 -21582 -21591\n\t\tmu 0 3 24328 24329 24330\n\t\tf 3 21653 21654 21655\n\t\tmu 0 3 24331 24332 24333\n\t\tf 3 21656 21657 -21656\n\t\tmu 0 3 24334 24335 24336\n\t\tf 3 -21655 21658 21659\n\t\tmu 0 3 24337 24338 24339\n\t\tf 3 21660 21661 -21660\n\t\tmu 0 3 24340 24341 24342\n\t\tf 3 21662 21663 21664\n\t\tmu 0 3 24343 24344 24345\n\t\tf 3 21665 21666 -21665\n\t\tmu 0 3 24346 24347 24348\n\t\tf 3 -21667 21667 21668\n\t\tmu 0 3 24349 24350 24351\n\t\tf 3 21669 21670 -21669\n\t\tmu 0 3 24352 24353 24354\n\t\tf 3 21671 21672 21673\n\t\tmu 0 3 24355 24356 3543\n\t\tf 3 21674 21675 -21674\n\t\tmu 0 3 3543 5090 24357\n\t\tf 3 21676 -21675 21677\n\t\tmu 0 3 24358 5090 3543\n\t\tf 3 21678 21679 -21678\n\t\tmu 0 3 3543 24359 24360\n\t\tf 3 -21680 21680 21681\n\t\tmu 0 3 24361 24362 24363\n\t\tf 3 21682 21683 -21682\n\t\tmu 0 3 24364 24365 24366\n\t\tf 3 21684 -21683 21685\n\t\tmu 0 3 24367 24368 24369\n\t\tf 3 21686 21687 -21686\n\t\tmu 0 3 24370 24371 24372\n\t\tf 3 21688 21689 21690\n\t\tmu 0 3 24373 24374 24375\n\t\tf 3 21691 21692 -21691\n\t\tmu 0 3 24376 24377 24378\n\t\tf 3 -21693 21693 21694\n\t\tmu 0 3 24379 24380 24381\n\t\tf 3 21695 21696 -21695\n\t\tmu 0 3 24382 24383 24384\n\t\tf 3 21697 21698 21699\n\t\tmu 0 3 24385 24386 24387\n\t\tf 3 21700 21701 -21700\n\t\tmu 0 3 24388 24389 24390\n\t\tf 3 -21699 21702 21703\n\t\tmu 0 3 24391 24392 24393\n\t\tf 3 21704 21705 -21704\n\t\tmu 0 3 24394 24395 24396\n\t\tf 3 21706 21707 21708\n\t\tmu 0 3 24397 24398 24399\n\t\tf 3 21709 21710 -21709\n\t\tmu 0 3 24400 24401 24402\n\t\tf 3 21711 21712 21713\n\t\tmu 0 3 24403 24404 24405\n\t\tf 3 21714 21715 -21714\n\t\tmu 0 3 24406 24407 24408\n\t\tf 3 -21701 21716 21717\n\t\tmu 0 3 24409 24410 24411\n\t\tf 3 -21717 -21706 21718\n\t\tmu 0 3 24412 24413 24414\n\t\tf 3 21719 21720 -21718\n\t\tmu 0 3 24415 24416 24417\n\t\tf 3 21721 21722 -21719\n\t\tmu 0 3 24418 24419 24420\n\t\tf 3 21723 21724 21725\n\t\tmu 0 3 24421 24422 24423\n\t\tf 3 21726 21727 -21726\n\t\tmu 0 3 24424 24425 24426\n\t\tf 3 21728 21729 21730\n\t\tmu 0 3 24427 24428 24429\n\t\tf 3 21731 -21728 -21731\n\t\tmu 0 3 24430 24431 24432\n\t\tf 3 21732 21733 21734\n\t\tmu 0 3 24433 24434 24435\n\t\tf 3 -21734 21735 21736\n\t\tmu 0 3 24436 24437 24438\n\t\tf 3 21737 21738 -21735\n\t\tmu 0 3 24439 24440 24441\n\t\tf 3 21739 21740 -21737\n\t\tmu 0 3 24442 24443 24444\n\t\tf 3 21741 -21740 21742\n\t\tmu 0 3 24445 24446 24447\n\t\tf 3 21743 21744 -21743\n\t\tmu 0 3 24448 24449 24450\n\t\tf 3 -21732 21745 21746\n\t\tmu 0 3 24451 24452 24453\n\t\tf 3 21747 -21745 -21747\n\t\tmu 0 3 24454 24455 24456\n\t\tf 3 21748 -21739 21749\n\t\tmu 0 3 2241 24457 24458\n\t\tf 3 21750 21751 21752\n\t\tmu 0 3 24459 24460 864\n\t\tf 3 -21752 21753 21754\n\t\tmu 0 3 864 24461 24462\n\t\tf 3 21755 21756 -21755\n\t\tmu 0 3 24463 24464 864\n\t\tf 3 -21757 21757 21758\n\t\tmu 0 3 864 24465 24466\n\t\tf 3 21759 21760 -21759\n\t\tmu 0 3 24467 5970 864\n\t\tf 3 -21758 21761 21762\n\t\tmu 0 3 24468 24469 24470\n\t\tf 3 -21762 -21756 21763\n\t\tmu 0 3 24471 24472 24473\n\t\tf 3 21764 21765 -21763\n\t\tmu 0 3 24474 24475 24476\n\t\tf 3 21766 -21765 21767\n\t\tmu 0 3 24477 24478 24479\n\t\tf 3 21768 21769 -21768\n\t\tmu 0 3 24480 24481 24482\n\t\tf 3 21770 21771 -21764\n\t\tmu 0 3 24483 24484 24485\n\t\tf 3 -21769 -21772 21772\n\t\tmu 0 3 24486 24487 24488\n\t\tf 3 21773 21774 -21773\n\t\tmu 0 3 24489 24490 24491\n\t\tf 3 21775 21776 21777\n\t\tmu 0 3 24492 24493 24494\n\t\tf 3 -21777 21778 21779\n\t\tmu 0 3 24495 24496 2241\n\t\tf 3 21780 21781 -21778\n\t\tmu 0 3 24497 24498 24499\n\t\tf 3 21782 -21782 21783\n\t\tmu 0 3 24500 24501 24502\n\t\tf 3 21784 21785 -21780\n\t\tmu 0 3 2241 1563 24503\n\t\tf 3 21786 21787 -21784\n\t\tmu 0 3 24504 24505 24506\n\t\tf 3 21788 -21761 21789\n\t\tmu 0 3 24507 864 5970\n\t\tf 3 21790 21791 -21790\n\t\tmu 0 3 5970 24508 24509\n\t\tf 3 -21789 21792 -21753\n\t\tmu 0 3 864 24510 24511\n\t\tf 3 21793 -21785 -21750\n\t\tmu 0 3 24512 1563 2241\n\t\tf 3 21794 21795 21796\n\t\tmu 0 3 24513 24514 24515\n\t\tf 3 21797 21798 -21797\n\t\tmu 0 3 24516 24517 24518\n\t\tf 3 -21799 21799 21800\n\t\tmu 0 3 24519 24520 24521\n\t\tf 3 21801 21802 -21801\n\t\tmu 0 3 24522 24523 24524\n\t\tf 3 -21795 21803 21804\n\t\tmu 0 3 24525 24526 24527\n\t\tf 3 -21804 -21803 21805\n\t\tmu 0 3 24528 24529 24530\n\t\tf 3 21806 21807 -21805\n\t\tmu 0 3 24531 24532 24533\n\t\tf 3 21808 21809 -21806\n\t\tmu 0 3 24534 24535 24536\n\t\tf 3 21810 21811 21812\n\t\tmu 0 3 24537 24538 24539\n\t\tf 3 -21812 21813 21814\n\t\tmu 0 3 24540 24541 24542\n\t\tf 3 21815 21816 -21813\n\t\tmu 0 3 24543 24544 24545\n\t\tf 3 21817 21818 -21815\n\t\tmu 0 3 24546 24547 24548\n\t\tf 3 21819 21820 21821\n\t\tmu 0 3 24549 24550 2895\n\t\tf 3 21822 21823 -21822\n\t\tmu 0 3 2895 6178 24551\n\t\tf 3 -21820 21824 21825\n\t\tmu 0 3 24552 24553 24554\n\t\tf 3 21826 21827 -21826\n\t\tmu 0 3 24555 24556 24557\n\t\tf 3 -21827 21828 21829\n\t\tmu 0 3 24558 24559 24560\n\t\tf 3 21830 21831 -21830\n\t\tmu 0 3 24561 24562 24563\n\t\tf 3 -21831 21832 21833\n\t\tmu 0 3 24564 24565 24566\n\t\tf 3 21834 21835 -21834\n\t\tmu 0 3 24567 24568 24569\n\t\tf 3 -21835 21836 21837\n\t\tmu 0 3 24570 24571 24572\n\t\tf 3 21838 21839 -21838\n\t\tmu 0 3 24573 24574 24575\n\t\tf 3 -21823 21840 21841\n\t\tmu 0 3 6178 2895 24576\n\t\tf 3 21842 21843 -21842\n\t\tmu 0 3 24577 24578 6178\n\t\tf 3 -21843 21844 21845\n\t\tmu 0 3 24579 24580 24581\n\t\tf 3 21846 21847 -21846\n\t\tmu 0 3 24582 24583 24584\n\t\tf 3 -21847 21848 21849\n\t\tmu 0 3 24585 24586 24587\n\t\tf 3 21850 21851 -21850\n\t\tmu 0 3 24588 24589 24590\n\t\tf 3 -21851 21852 21853\n\t\tmu 0 3 24591 24592 24593\n\t\tf 3 21854 21855 -21854\n\t\tmu 0 3 24594 24595 24596\n\t\tf 3 -21855 21856 21857\n\t\tmu 0 3 24597 24598 24599\n\t\tf 3 21858 21859 -21858\n\t\tmu 0 3 24600 24601 24602\n\t\tf 3 21860 21861 21862\n\t\tmu 0 3 24603 24604 24605\n\t\tf 3 21863 21864 -21863\n\t\tmu 0 3 24606 24607 24608\n\t\tf 3 -21861 21865 21866\n\t\tmu 0 3 24609 24610 3993\n\t\tf 3 21867 21868 -21867\n\t\tmu 0 3 3993 6002 24611\n\t\tf 3 -21864 21869 21870\n\t\tmu 0 3 24612 24613 24614\n\t\tf 3 21871 21872 -21871\n\t\tmu 0 3 24615 24616 24617\n\t\tf 3 -21872 21873 21874\n\t\tmu 0 3 24618 24619 24620\n\t\tf 3 21875 21876 -21875\n\t\tmu 0 3 24621 24622 24623\n\t\tf 3 -21876 21877 21878\n\t\tmu 0 3 24624 24625 24626\n\t\tf 3 21879 21880 -21879\n\t\tmu 0 3 24627 24628 24629\n\t\tf 3 -21868 21881 21882\n\t\tmu 0 3 6002 3993 24630\n\t\tf 3 21883 21884 -21883\n\t\tmu 0 3 24631 24632 6002\n\t\tf 3 -21884 21885 21886\n\t\tmu 0 3 24633 24634 24635\n\t\tf 3 21887 21888 -21887\n\t\tmu 0 3 24636 24637 24638\n\t\tf 3 -21888 21889 21890\n\t\tmu 0 3 24639 24640 24641\n\t\tf 3 21891 21892 -21891\n\t\tmu 0 3 24642 24643 24644\n\t\tf 3 21893 -21892 21894\n\t\tmu 0 3 24645 24646 24647\n\t\tf 3 21895 21896 -21895\n\t\tmu 0 3 24648 24649 24650\n\t\tf 3 -21897 21897 21898\n\t\tmu 0 3 24651 24652 24653\n\t\tf 3 21899 21900 -21899\n\t\tmu 0 3 24654 24655 24656\n\t\tf 3 21901 21902 21903\n\t\tmu 0 3 24657 24658 24659\n\t\tf 3 21904 21905 -21904\n\t\tmu 0 3 24660 24661 24662\n\t\tf 3 -21902 21906 21907\n\t\tmu 0 3 24663 24664 24665\n\t\tf 3 21908 21909 -21908\n\t\tmu 0 3 24666 24667 24668\n\t\tf 3 -21909 21910 21911\n\t\tmu 0 3 24669 24670 24671\n\t\tf 3 21912 21913 -21912\n\t\tmu 0 3 24672 24673 24674\n\t\tf 3 -21913 21914 21915\n\t\tmu 0 3 24675 24676 24677\n\t\tf 3 21916 21917 -21916\n\t\tmu 0 3 24678 24679 24680\n\t\tf 3 21918 21919 21920\n\t\tmu 0 3 24681 24682 24683\n\t\tf 3 21921 21922 21923\n\t\tmu 0 3 24684 24685 24686\n\t\tf 3 21924 21925 -21924\n\t\tmu 0 3 24687 24688 24689\n\t\tf 3 -21922 21926 21927\n\t\tmu 0 3 24690 24691 24692\n\t\tf 3 21928 21929 -21928\n\t\tmu 0 3 24693 24694 24695\n\t\tf 3 21930 21931 21932\n\t\tmu 0 3 24696 24697 24698\n\t\tf 3 21933 21934 -21933\n\t\tmu 0 3 24699 24700 24701\n\t\tf 3 -21934 21935 21936\n\t\tmu 0 3 24702 24703 24704\n\t\tf 3 21937 21938 -21937\n\t\tmu 0 3 24705 24706 24707\n\t\tf 3 -21938 21939 21940\n\t\tmu 0 3 24708 24709 24710\n\t\tf 3 21941 21942 -21941\n\t\tmu 0 3 24711 24712 24713\n\t\tf 3 -21942 21943 21944\n\t\tmu 0 3 24714 24715 24716\n\t\tf 3 21945 21946 -21945\n\t\tmu 0 3 24717 24718 24719\n\t\tf 3 -21929 21947 21948\n\t\tmu 0 3 24720 24721 24722\n\t\tf 3 21949 21950 -21949\n\t\tmu 0 3 24723 24724 24725\n\t\tf 3 21951 21952 21953\n\t\tmu 0 3 24726 24727 24728\n\t\tf 3 21954 21955 -21954\n\t\tmu 0 3 24729 24730 24731\n\t\tf 3 -21952 21956 21957\n\t\tmu 0 3 24732 24733 24734\n\t\tf 3 21958 21959 -21958\n\t\tmu 0 3 24735 24736 24737\n\t\tf 3 21960 21961 21962\n\t\tmu 0 3 24738 24739 24740\n\t\tf 3 21963 21964 -21963\n\t\tmu 0 3 24741 24742 24743\n\t\tf 3 -21964 21965 21966\n\t\tmu 0 3 24744 24745 24746\n\t\tf 3 -21946 21967 -21967\n\t\tmu 0 3 24747 24748 24749\n\t\tf 3 -21109 -21081 21968\n\t\tmu 0 3 24750 24751 24752\n\t\tf 3 -21072 -21149 -21969\n\t\tmu 0 3 24753 24754 24755\n\t\tf 3 -21136 21969 21970\n\t\tmu 0 3 24756 24757 24758\n\t\tf 3 21971 -21433 -21971\n\t\tmu 0 3 24759 24760 24761\n\t\tf 3 21972 -21970 -21108\n\t\tmu 0 3 24762 24763 24764\n\t\tf 3 21973 21974 21975\n\t\tmu 0 3 24765 24766 24767\n\t\tf 3 21976 21977 -21976\n\t\tmu 0 3 24768 24769 24770\n\t\tf 3 -21977 21978 21979\n\t\tmu 0 3 24771 24772 24773\n\t\tf 3 21980 21981 21982\n\t\tmu 0 3 24774 24775 24776\n\t\tf 3 21983 21984 -21983\n\t\tmu 0 3 24777 24778 24779\n\t\tf 3 -21981 21985 21986\n\t\tmu 0 3 24780 24781 24782\n\t\tf 3 21987 21988 -21987\n\t\tmu 0 3 24783 24784 24785\n\t\tf 3 21989 -21988 21990\n\t\tmu 0 3 24786 24787 24788\n\t\tf 3 21991 21992 21993\n\t\tmu 0 3 24789 24790 24791\n\t\tf 3 21994 21995 21996\n\t\tmu 0 3 24792 24793 24794\n\t\tf 3 21997 21998 -21997\n\t\tmu 0 3 24795 24796 24797\n\t\tf 3 -21998 21999 22000\n\t\tmu 0 3 24798 24799 24800\n\t\tf 3 22001 22002 -22001\n\t\tmu 0 3 24801 24802 24803\n\t\tf 3 22003 -21738 -22000\n\t\tmu 0 3 24804 24805 24806\n\t\tf 3 22004 -21794 -22004\n\t\tmu 0 3 24807 6076 24808\n\t\tf 3 22005 -21786 -22005\n\t\tmu 0 3 24809 24810 6076\n\t\tf 3 -22006 -21996 22006\n\t\tmu 0 3 24811 24812 24813\n\t\tf 3 22007 -21781 -22007\n\t\tmu 0 3 24814 24815 24816\n\t\tf 3 -21787 -22008 22008\n\t\tmu 0 3 24817 24818 24819\n\t\tf 3 22009 -21819 -22009\n\t\tmu 0 3 24820 24821 24822\n\t\tf 3 -22010 -21995 22010\n\t\tmu 0 3 24823 24824 24825\n\t\tf 3 22011 -21816 -22011\n\t\tmu 0 3 24826 24827 24828\n\t\tf 3 22012 22013 22014\n\t\tmu 0 3 24829 24830 24831\n\t\tf 3 22015 22016 -22015\n\t\tmu 0 3 24832 24833 24834\n\t\tf 3 -22016 22017 22018\n\t\tmu 0 3 24835 24836 24837\n\t\tf 3 22019 -21376 -22019\n\t\tmu 0 3 24838 24839 24840\n\t\tf 3 22020 22021 22022\n\t\tmu 0 3 24841 24842 24843\n\t\tf 3 22023 -22021 22024\n\t\tmu 0 3 24844 24845 24846\n\t\tf 3 -22020 22025 22026\n\t\tmu 0 3 24847 24848 24849\n\t\tf 3 22027 22028 -22025\n\t\tmu 0 3 24850 24851 24852\n\t\tf 3 22029 22030 -22023\n\t\tmu 0 3 24853 24854 24855\n\t\tf 3 22031 -21371 -22027\n\t\tmu 0 3 24856 24857 24858\n\t\tf 3 -21349 -22032 22032\n\t\tmu 0 3 24859 24860 24861\n\t\tf 3 22033 22034 -22033\n\t\tmu 0 3 24862 24863 24864\n\t\tf 3 22035 -22030 22036\n\t\tmu 0 3 24865 24866 24867\n\t\tf 3 22037 22038 -22037\n\t\tmu 0 3 24868 24869 24870\n\t\tf 3 -22035 22039 22040\n\t\tmu 0 3 24871 24872 4846\n\t\tf 3 -20611 22041 22042\n\t\tmu 0 3 4075 24873 24874\n\t\tf 3 22043 22044 -22043\n\t\tmu 0 3 24875 24876 4075\n\t\tf 3 -22044 22045 22046\n\t\tmu 0 3 24877 24878 24879\n\t\tf 3 -22029 22047 -22047\n\t\tmu 0 3 24880 24881 24882\n\t\tf 3 -20614 22048 -22041\n\t\tmu 0 3 4846 524 24883\n\t\tf 3 -21375 22049 22050\n\t\tmu 0 3 24884 24885 24886\n\t\tf 3 22051 22052 -22051\n\t\tmu 0 3 24887 24888 24889\n\t\tf 3 22053 -22050 -21395\n\t\tmu 0 3 24890 24891 24892\n\t\tf 3 -20633 22054 22055\n\t\tmu 0 3 6418 5939 24893\n\t\tf 3 -21354 22056 -22056\n\t\tmu 0 3 24894 24895 6418\n\t\tf 3 -22057 -21350 22057\n\t\tmu 0 3 6418 24896 24897\n\t\tf 3 -22049 -20637 -22058\n\t\tmu 0 3 24898 1374 6418\n\t\tf 3 -21358 -22055 22058\n\t\tmu 0 3 24899 24900 5939\n\t\tf 3 -20640 22059 -22059\n\t\tmu 0 3 5939 5358 24901\n\t\tf 3 -21362 -22060 22060\n\t\tmu 0 3 24902 24903 5358\n\t\tf 3 -20642 -21183 -22061\n\t\tmu 0 3 5358 3150 24904\n\t\tf 3 22061 22062 22063\n\t\tmu 0 3 24905 24906 24907\n\t\tf 3 -22064 22064 22065\n\t\tmu 0 3 24908 24909 24910\n\t\tf 3 22066 22067 -22065\n\t\tmu 0 3 24911 24912 24913\n\t\tf 3 22068 22069 -22067\n\t\tmu 0 3 24914 24915 24916\n\t\tf 3 22070 22071 -22069\n\t\tmu 0 3 24917 24918 24919\n\t\tf 3 22072 22073 -22070\n\t\tmu 0 3 24920 24921 24922\n\t\tf 3 22074 22075 -22068\n\t\tmu 0 3 24923 24924 24925\n\t\tf 3 22076 -22066 22077\n\t\tmu 0 3 24926 24927 24928\n\t\tf 3 -22078 22078 22079\n\t\tmu 0 3 24929 24930 24931\n\t\tf 3 22080 22081 22082\n\t\tmu 0 3 24932 24933 24934\n\t\tf 3 22083 -22083 22084\n\t\tmu 0 3 24935 24936 24937\n\t\tf 3 22085 -22085 22086\n\t\tmu 0 3 24938 24939 24940\n\t\tf 3 -22087 22087 22088\n\t\tmu 0 3 24941 24942 24943\n\t\tf 3 -22089 22089 22090\n\t\tmu 0 3 24944 24945 24946\n\t\tf 3 22091 -22091 22092\n\t\tmu 0 3 24947 24948 24949\n\t\tf 3 22093 -22086 22094\n\t\tmu 0 3 24950 24951 24952\n\t\tf 3 -21440 22095 22096\n\t\tmu 0 3 24953 24954 24955\n\t\tf 3 22097 22098 22099\n\t\tmu 0 3 24956 24957 24958\n\t\tf 3 -22098 22100 22101\n\t\tmu 0 3 24959 24960 24961\n\t\tf 3 22102 22103 -22102\n\t\tmu 0 3 24962 24963 24964\n\t\tf 3 -22103 22104 22105\n\t\tmu 0 3 24965 24966 24967\n\t\tf 3 22106 22107 -22106\n\t\tmu 0 3 24968 24969 24970\n\t\tf 3 -22107 22108 22109\n\t\tmu 0 3 24971 24972 24973\n\t\tf 3 22110 22111 -22110\n\t\tmu 0 3 24974 24975 24976\n\t\tf 3 -22111 22112 22113\n\t\tmu 0 3 24977 24978 24979\n\t\tf 3 22114 22115 -22114\n\t\tmu 0 3 24980 24981 24982\n\t\tf 3 22116 22117 22118\n\t\tmu 0 3 24983 24984 24985\n\t\tf 3 22119 22120 -22119\n\t\tmu 0 3 24986 24987 24988;\n\tsetAttr \".fc[11500:11999]\"\n\t\tf 3 -22120 22121 22122\n\t\tmu 0 3 24989 24990 24991\n\t\tf 3 -21442 -21437 22123\n\t\tmu 0 3 24992 24993 24994\n\t\tf 3 22124 -21443 -22095\n\t\tmu 0 3 24995 24996 24997\n\t\tf 3 22125 22126 22127\n\t\tmu 0 3 24998 24999 25000\n\t\tf 3 -22126 22128 22129\n\t\tmu 0 3 25001 25002 25003\n\t\tf 3 22130 22131 -22130\n\t\tmu 0 3 25004 25005 25006\n\t\tf 3 22132 22133 22134\n\t\tmu 0 3 25007 25008 25009\n\t\tf 3 22135 22136 -22135\n\t\tmu 0 3 25010 25011 25012\n\t\tf 3 -22136 22137 22138\n\t\tmu 0 3 25013 25014 25015\n\t\tf 3 22139 22140 -22139\n\t\tmu 0 3 25016 25017 25018\n\t\tf 3 -22140 22141 22142\n\t\tmu 0 3 25019 25020 25021\n\t\tf 3 22143 22144 -22143\n\t\tmu 0 3 25022 25023 25024\n\t\tf 3 22145 22146 22147\n\t\tmu 0 3 25025 25026 25027\n\t\tf 3 22148 22149 -22148\n\t\tmu 0 3 25028 25029 25030\n\t\tf 3 -22150 22150 22151\n\t\tmu 0 3 25031 25032 25033\n\t\tf 3 -22094 22152 22153\n\t\tmu 0 3 25034 25035 25036\n\t\tf 3 -22125 -22092 22154\n\t\tmu 0 3 25037 25038 25039\n\t\tf 3 22155 22156 -20953\n\t\tmu 0 3 25040 25041 25042\n\t\tf 3 -22156 -20956 -20963\n\t\tmu 0 3 25043 25044 5878\n\t\tf 3 22157 -21653 22158\n\t\tmu 0 3 25045 25046 25047\n\t\tf 3 -21329 -22158 22159\n\t\tmu 0 3 25048 25049 25050\n\t\tf 3 22160 22161 -22160\n\t\tmu 0 3 25051 25052 25053\n\t\tf 3 -22162 22162 22163\n\t\tmu 0 3 25054 25055 25056\n\t\tf 3 22164 -21327 -22164\n\t\tmu 0 3 25057 25058 25059\n\t\tf 3 22165 22166 22167\n\t\tmu 0 3 25060 25061 25062\n\t\tf 3 22168 22169 -22168\n\t\tmu 0 3 25063 25064 25065\n\t\tf 3 -22170 22170 22171\n\t\tmu 0 3 25066 25067 25068\n\t\tf 3 22172 22173 -22172\n\t\tmu 0 3 25069 25070 25071\n\t\tf 3 -22173 22174 22175\n\t\tmu 0 3 25072 25073 25074\n\t\tf 3 22176 -21340 -22176\n\t\tmu 0 3 25075 25076 25077\n\t\tf 3 -21336 -22177 22177\n\t\tmu 0 3 25078 25079 25080\n\t\tf 3 22178 22179 -22178\n\t\tmu 0 3 25081 25082 25083\n\t\tf 3 22180 -22180 22181\n\t\tmu 0 3 25084 25085 25086\n\t\tf 3 22182 22183 -22182\n\t\tmu 0 3 25087 25088 25089\n\t\tf 3 -22184 22184 22185\n\t\tmu 0 3 25090 25091 25092\n\t\tf 3 22186 -21020 -22186\n\t\tmu 0 3 25093 25094 25095\n\t\tf 3 -21012 -22187 22187\n\t\tmu 0 3 25096 25097 25098\n\t\tf 3 22188 22189 -22188\n\t\tmu 0 3 25099 25100 25101\n\t\tf 3 22190 22191 22192\n\t\tmu 0 3 273 964 1503\n\t\tf 3 22193 22194 -22193\n\t\tmu 0 3 1503 4247 273\n\t\tf 3 22195 -22194 22196\n\t\tmu 0 3 6050 4247 1503\n\t\tf 3 22197 22198 -22197\n\t\tmu 0 3 1503 1558 6050\n\t\tf 3 22199 -22199 22200\n\t\tmu 0 3 6213 6050 1558\n\t\tf 3 22201 22202 -22201\n\t\tmu 0 3 1558 3834 6213\n\t\tf 3 -22200 22203 22204\n\t\tmu 0 3 6050 6213 2881\n\t\tf 3 22205 22206 -22205\n\t\tmu 0 3 2881 5264 6050\n\t\tf 3 -22196 -22207 22207\n\t\tmu 0 3 4247 6050 5264\n\t\tf 3 22208 22209 -22208\n\t\tmu 0 3 5264 2185 4247\n\t\tf 3 -22195 -22210 22210\n\t\tmu 0 3 273 4247 2185\n\t\tf 3 22211 22212 -22211\n\t\tmu 0 3 2185 4001 273\n\t\tf 3 -22212 22213 22214\n\t\tmu 0 3 4001 2185 716\n\t\tf 3 22215 22216 -22215\n\t\tmu 0 3 716 2354 4001\n\t\tf 3 22217 -22214 22218\n\t\tmu 0 3 2293 716 2185\n\t\tf 3 -22209 22219 -22219\n\t\tmu 0 3 2185 5264 2293\n\t\tf 3 22220 -22220 22221\n\t\tmu 0 3 5724 2293 5264\n\t\tf 3 -22206 22222 -22222\n\t\tmu 0 3 5264 2881 5724\n\t\tf 3 -22221 22223 22224\n\t\tmu 0 3 2293 5724 4047\n\t\tf 3 22225 22226 -22225\n\t\tmu 0 3 4047 243 2293\n\t\tf 3 -22218 -22227 22227\n\t\tmu 0 3 716 2293 243\n\t\tf 3 22228 22229 -22228\n\t\tmu 0 3 243 1344 716\n\t\tf 3 -22216 -22230 22230\n\t\tmu 0 3 2354 716 1344\n\t\tf 3 22231 22232 -22231\n\t\tmu 0 3 1344 4424 2354\n\t\tf 3 -22232 22233 22234\n\t\tmu 0 3 4424 1344 2487\n\t\tf 3 22235 22236 -22235\n\t\tmu 0 3 2487 6481 4424\n\t\tf 3 22237 -22234 22238\n\t\tmu 0 3 516 2487 1344\n\t\tf 3 -22229 22239 -22239\n\t\tmu 0 3 1344 243 516\n\t\tf 3 22240 -22240 22241\n\t\tmu 0 3 3948 516 243\n\t\tf 3 -22226 22242 -22242\n\t\tmu 0 3 243 4047 3948\n\t\tf 3 -22241 22243 22244\n\t\tmu 0 3 516 3948 4967\n\t\tf 3 22245 22246 -22245\n\t\tmu 0 3 4967 3875 516\n\t\tf 3 -22238 -22247 22247\n\t\tmu 0 3 2487 516 3875\n\t\tf 3 22248 22249 -22248\n\t\tmu 0 3 3875 5291 2487\n\t\tf 3 -22236 -22250 22250\n\t\tmu 0 3 6481 2487 5291\n\t\tf 3 22251 22252 -22251\n\t\tmu 0 3 5291 5250 6481\n\t\tf 3 -22252 22253 22254\n\t\tmu 0 3 5250 5291 4039\n\t\tf 3 22255 22256 -22255\n\t\tmu 0 3 4039 4727 5250\n\t\tf 3 22257 -22254 22258\n\t\tmu 0 3 5685 4039 5291\n\t\tf 3 -22249 22259 -22259\n\t\tmu 0 3 5291 3875 5685\n\t\tf 3 22260 -22260 22261\n\t\tmu 0 3 270 5685 3875\n\t\tf 3 -22246 22262 -22262\n\t\tmu 0 3 3875 4967 270\n\t\tf 3 -22261 22263 22264\n\t\tmu 0 3 5685 270 325\n\t\tf 3 22265 22266 -22265\n\t\tmu 0 3 325 6161 5685\n\t\tf 3 -22258 -22267 22267\n\t\tmu 0 3 4039 5685 6161\n\t\tf 3 22268 22269 -22268\n\t\tmu 0 3 6161 4038 4039\n\t\tf 3 -22256 -22270 22270\n\t\tmu 0 3 4727 4039 4038\n\t\tf 3 22271 22272 -22271\n\t\tmu 0 3 4038 737 4727\n\t\tf 3 22273 -22244 22274\n\t\tmu 0 3 895 4967 3948\n\t\tf 3 22275 22276 -22275\n\t\tmu 0 3 3948 1048 895\n\t\tf 3 -22276 -22243 22277\n\t\tmu 0 3 1048 3948 4047\n\t\tf 3 22278 22279 -22278\n\t\tmu 0 3 4047 1101 1048\n\t\tf 3 -22279 -22224 22280\n\t\tmu 0 3 1101 4047 5724\n\t\tf 3 22281 22282 -22281\n\t\tmu 0 3 5724 2695 1101\n\t\tf 3 -22282 -22223 22283\n\t\tmu 0 3 2695 5724 2881\n\t\tf 3 22284 22285 -22284\n\t\tmu 0 3 2881 1674 2695\n\t\tf 3 -22285 -22204 22286\n\t\tmu 0 3 1674 2881 6213\n\t\tf 3 22287 22288 -22287\n\t\tmu 0 3 6213 5149 1674\n\t\tf 3 -22288 -22203 22289\n\t\tmu 0 3 5149 6213 3834\n\t\tf 3 22290 22291 -22290\n\t\tmu 0 3 3834 1384 5149\n\t\tf 3 22292 -22292 22293\n\t\tmu 0 3 4950 5149 1384\n\t\tf 3 22294 22295 -22294\n\t\tmu 0 3 1384 2603 4950\n\t\tf 3 22296 -22296 22297\n\t\tmu 0 3 39 4950 2603\n\t\tf 3 22298 22299 -22298\n\t\tmu 0 3 2603 3161 39\n\t\tf 3 22300 -22300 22301\n\t\tmu 0 3 3248 39 3161\n\t\tf 3 22302 22303 -22302\n\t\tmu 0 3 3161 2726 3248\n\t\tf 3 -22301 22304 22305\n\t\tmu 0 3 39 3248 4361\n\t\tf 3 22306 22307 -22306\n\t\tmu 0 3 4361 6064 39\n\t\tf 3 -22297 -22308 22308\n\t\tmu 0 3 4950 39 6064\n\t\tf 3 22309 22310 -22309\n\t\tmu 0 3 6064 3105 4950\n\t\tf 3 -22293 -22311 22311\n\t\tmu 0 3 5149 4950 3105\n\t\tf 3 22312 -22289 -22312\n\t\tmu 0 3 3105 1674 5149\n\t\tf 3 22313 -22286 22314\n\t\tmu 0 3 6009 2695 1674\n\t\tf 3 -22313 22315 -22315\n\t\tmu 0 3 1674 3105 6009\n\t\tf 3 22316 -22316 22317\n\t\tmu 0 3 1217 6009 3105\n\t\tf 3 -22310 22318 -22318\n\t\tmu 0 3 3105 6064 1217\n\t\tf 3 22319 -22319 22320\n\t\tmu 0 3 553 1217 6064\n\t\tf 3 -22307 22321 -22321\n\t\tmu 0 3 6064 4361 553\n\t\tf 3 -22320 22322 22323\n\t\tmu 0 3 1217 553 4808\n\t\tf 3 22324 22325 -22324\n\t\tmu 0 3 4808 3985 1217\n\t\tf 3 -22317 -22326 22326\n\t\tmu 0 3 6009 1217 3985\n\t\tf 3 22327 22328 -22327\n\t\tmu 0 3 3985 3137 6009\n\t\tf 3 -22314 -22329 22329\n\t\tmu 0 3 2695 6009 3137\n\t\tf 3 22330 -22283 -22330\n\t\tmu 0 3 3137 1101 2695\n\t\tf 3 -22331 22331 22332\n\t\tmu 0 3 1101 3137 2346\n\t\tf 3 22333 -22280 -22333\n\t\tmu 0 3 2346 1048 1101\n\t\tf 3 22334 -22332 22335\n\t\tmu 0 3 3585 2346 3137\n\t\tf 3 -22328 22336 -22336\n\t\tmu 0 3 3137 3985 3585\n\t\tf 3 22337 -22337 22338\n\t\tmu 0 3 4510 3585 3985\n\t\tf 3 -22325 22339 -22339\n\t\tmu 0 3 3985 4808 4510\n\t\tf 3 -22338 22340 22341\n\t\tmu 0 3 3585 4510 6337\n\t\tf 3 22342 22343 -22342\n\t\tmu 0 3 6337 4437 3585\n\t\tf 3 -22335 -22344 22344\n\t\tmu 0 3 2346 3585 4437\n\t\tf 3 22345 22346 -22345\n\t\tmu 0 3 4437 2017 2346\n\t\tf 3 -22334 -22347 22347\n\t\tmu 0 3 1048 2346 2017\n\t\tf 3 22348 -22277 -22348\n\t\tmu 0 3 2017 895 1048\n\t\tf 3 -22349 22349 22350\n\t\tmu 0 3 895 2017 2352\n\t\tf 3 22351 22352 -22351\n\t\tmu 0 3 2352 2583 895\n\t\tf 3 -22274 -22353 22353\n\t\tmu 0 3 4967 895 2583\n\t\tf 3 22354 -22263 -22354\n\t\tmu 0 3 2583 270 4967\n\t\tf 3 22355 -22350 22356\n\t\tmu 0 3 4083 2352 2017\n\t\tf 3 -22346 22357 -22357\n\t\tmu 0 3 2017 4437 4083\n\t\tf 3 22358 -22358 22359\n\t\tmu 0 3 1531 4083 4437\n\t\tf 3 -22343 22360 -22360\n\t\tmu 0 3 4437 6337 1531\n\t\tf 3 -22359 22361 22362\n\t\tmu 0 3 4083 1531 3820\n\t\tf 3 22363 22364 -22363\n\t\tmu 0 3 3820 4965 4083\n\t\tf 3 -22356 -22365 22365\n\t\tmu 0 3 2352 4083 4965\n\t\tf 3 22366 22367 -22366\n\t\tmu 0 3 4965 2889 2352\n\t\tf 3 -22352 -22368 22368\n\t\tmu 0 3 2583 2352 2889\n\t\tf 3 22369 22370 -22369\n\t\tmu 0 3 2889 782 2583\n\t\tf 3 -22355 -22371 22371\n\t\tmu 0 3 270 2583 782\n\t\tf 3 22372 -22264 -22372\n\t\tmu 0 3 782 325 270\n\t\tf 3 -22373 22373 22374\n\t\tmu 0 3 325 782 165\n\t\tf 3 22375 22376 -22375\n\t\tmu 0 3 165 3204 325\n\t\tf 3 22377 -22374 22378\n\t\tmu 0 3 717 165 782\n\t\tf 3 -22370 22379 -22379\n\t\tmu 0 3 782 2889 717\n\t\tf 3 -22367 22380 22381\n\t\tmu 0 3 2889 4965 2188\n\t\tf 3 22382 -22380 -22382\n\t\tmu 0 3 2188 2645 2889\n\t\tf 3 -22364 22383 22384\n\t\tmu 0 3 4965 3820 4217\n\t\tf 3 22385 -22381 -22385\n\t\tmu 0 3 4217 1812 4965\n\t\tf 3 22386 -22362 22387\n\t\tmu 0 3 306 3820 1531\n\t\tf 3 22388 22389 -22388\n\t\tmu 0 3 1531 1703 306\n\t\tf 3 -22389 -22361 22390\n\t\tmu 0 3 1703 1531 6337\n\t\tf 3 22391 22392 -22391\n\t\tmu 0 3 6337 923 1703\n\t\tf 3 -22392 -22341 22393\n\t\tmu 0 3 923 6337 4510\n\t\tf 3 22394 22395 -22394\n\t\tmu 0 3 4510 899 923\n\t\tf 3 -22395 -22340 22396\n\t\tmu 0 3 899 4510 4808\n\t\tf 3 22397 22398 -22397\n\t\tmu 0 3 4808 5865 899\n\t\tf 3 -22398 -22323 22399\n\t\tmu 0 3 5865 4808 553\n\t\tf 3 22400 22401 -22400\n\t\tmu 0 3 553 2097 5865\n\t\tf 3 -22401 -22322 22402\n\t\tmu 0 3 2097 553 4361\n\t\tf 3 22403 22404 -22403\n\t\tmu 0 3 4361 2371 2097\n\t\tf 3 -22404 -22305 22405\n\t\tmu 0 3 2371 4361 3248\n\t\tf 3 22406 22407 -22406\n\t\tmu 0 3 3248 4552 2371\n\t\tf 3 -22407 -22304 22408\n\t\tmu 0 3 4552 3248 2726\n\t\tf 3 22409 22410 -22409\n\t\tmu 0 3 2726 789 4552\n\t\tf 3 22411 -22411 22412\n\t\tmu 0 3 2053 4552 789\n\t\tf 3 22413 22414 -22413\n\t\tmu 0 3 789 2109 2053\n\t\tf 3 22415 -22415 22416\n\t\tmu 0 3 3232 2053 2109\n\t\tf 3 22417 22418 -22417\n\t\tmu 0 3 2109 5118 3232\n\t\tf 3 22419 -22419 22420\n\t\tmu 0 3 2672 3232 5118\n\t\tf 3 22421 22422 -22421\n\t\tmu 0 3 5118 1540 2672\n\t\tf 3 -22420 22423 22424\n\t\tmu 0 3 3232 2672 2269\n\t\tf 3 22425 22426 -22425\n\t\tmu 0 3 2269 6540 3232\n\t\tf 3 -22416 -22427 22427\n\t\tmu 0 3 2053 3232 6540\n\t\tf 3 22428 22429 -22428\n\t\tmu 0 3 6540 1476 2053\n\t\tf 3 -22412 -22430 22430\n\t\tmu 0 3 4552 2053 1476\n\t\tf 3 22431 -22408 -22431\n\t\tmu 0 3 1476 2371 4552\n\t\tf 3 22432 -22405 22433\n\t\tmu 0 3 1853 2097 2371\n\t\tf 3 -22432 22434 -22434\n\t\tmu 0 3 2371 1476 1853\n\t\tf 3 22435 -22435 22436\n\t\tmu 0 3 251 1853 1476\n\t\tf 3 -22429 22437 -22437\n\t\tmu 0 3 1476 6540 251\n\t\tf 3 22438 -22438 22439\n\t\tmu 0 3 4992 251 6540\n\t\tf 3 -22426 22440 -22440\n\t\tmu 0 3 6540 2269 4992\n\t\tf 3 -22439 22441 22442\n\t\tmu 0 3 251 4992 1571\n\t\tf 3 22443 22444 -22443\n\t\tmu 0 3 1571 2312 251\n\t\tf 3 -22436 -22445 22445\n\t\tmu 0 3 1853 251 2312\n\t\tf 3 22446 22447 -22446\n\t\tmu 0 3 2312 2470 1853\n\t\tf 3 -22433 -22448 22448\n\t\tmu 0 3 2097 1853 2470\n\t\tf 3 22449 -22402 -22449\n\t\tmu 0 3 2470 5865 2097\n\t\tf 3 -22450 22450 22451\n\t\tmu 0 3 5865 2470 5107\n\t\tf 3 22452 -22399 -22452\n\t\tmu 0 3 5107 899 5865\n\t\tf 3 22453 -22451 22454\n\t\tmu 0 3 4958 5107 2470\n\t\tf 3 -22447 22455 -22455\n\t\tmu 0 3 2470 2312 4958\n\t\tf 3 22456 -22456 22457\n\t\tmu 0 3 5087 4958 2312\n\t\tf 3 -22444 22458 -22458\n\t\tmu 0 3 2312 1571 5087\n\t\tf 3 -22457 22459 22460\n\t\tmu 0 3 4958 5087 4109\n\t\tf 3 22461 22462 -22461\n\t\tmu 0 3 4109 1799 4958\n\t\tf 3 -22454 -22463 22463\n\t\tmu 0 3 5107 4958 1799\n\t\tf 3 22464 22465 -22464\n\t\tmu 0 3 1799 455 5107\n\t\tf 3 -22453 -22466 22466\n\t\tmu 0 3 899 5107 455\n\t\tf 3 22467 -22396 -22467\n\t\tmu 0 3 455 923 899\n\t\tf 3 -22468 22468 22469\n\t\tmu 0 3 923 455 2337\n\t\tf 3 22470 -22393 -22470\n\t\tmu 0 3 2337 1703 923\n\t\tf 3 22471 -22469 22472\n\t\tmu 0 3 3470 2337 455\n\t\tf 3 -22465 22473 -22473\n\t\tmu 0 3 455 1799 3470\n\t\tf 3 22474 -22474 22475\n\t\tmu 0 3 4993 3470 1799\n\t\tf 3 -22462 22476 -22476\n\t\tmu 0 3 1799 4109 4993\n\t\tf 3 -22475 22477 22478\n\t\tmu 0 3 3470 4993 3716\n\t\tf 3 22479 22480 -22479\n\t\tmu 0 3 3716 4740 3470\n\t\tf 3 -22472 -22481 22481\n\t\tmu 0 3 2337 3470 4740\n\t\tf 3 22482 22483 -22482\n\t\tmu 0 3 4740 5314 2337\n\t\tf 3 -22471 -22484 22484\n\t\tmu 0 3 1703 2337 5314\n\t\tf 3 22485 -22390 -22485\n\t\tmu 0 3 5314 306 1703\n\t\tf 3 -22486 22486 22487\n\t\tmu 0 3 306 5314 5473\n\t\tf 3 22488 22489 -22488\n\t\tmu 0 3 5473 4298 306\n\t\tf 3 -22483 22490 22491\n\t\tmu 0 3 5314 4740 1619\n\t\tf 3 22492 -22487 -22492\n\t\tmu 0 3 1619 1340 5314\n\t\tf 3 -22480 22493 22494\n\t\tmu 0 3 4740 3716 4483\n\t\tf 3 22495 -22491 -22495\n\t\tmu 0 3 4483 5974 4740\n\t\tf 3 22496 -22478 22497\n\t\tmu 0 3 5277 3716 4993\n\t\tf 3 22498 22499 -22498\n\t\tmu 0 3 4993 4405 5277\n\t\tf 3 -22499 -22477 22500\n\t\tmu 0 3 4405 4993 4109\n\t\tf 3 22501 22502 -22501\n\t\tmu 0 3 4109 2407 4405\n\t\tf 3 -22502 -22460 22503\n\t\tmu 0 3 2407 4109 5087\n\t\tf 3 22504 22505 -22504\n\t\tmu 0 3 5087 3748 2407\n\t\tf 3 -22505 -22459 22506\n\t\tmu 0 3 3748 5087 1571\n\t\tf 3 22507 22508 -22507\n\t\tmu 0 3 1571 292 3748\n\t\tf 3 -22508 -22442 22509\n\t\tmu 0 3 292 1571 4992\n\t\tf 3 22510 22511 -22510\n\t\tmu 0 3 4992 4159 292\n\t\tf 3 -22511 -22441 22512\n\t\tmu 0 3 4159 4992 2269\n\t\tf 3 22513 22514 -22513\n\t\tmu 0 3 2269 343 4159\n\t\tf 3 -22514 -22424 22515\n\t\tmu 0 3 343 2269 2672\n\t\tf 3 22516 22517 -22516\n\t\tmu 0 3 2672 3487 343\n\t\tf 3 -22517 -22423 22518\n\t\tmu 0 3 3487 2672 1540\n\t\tf 3 22519 22520 -22519\n\t\tmu 0 3 1540 5377 3487\n\t\tf 3 22521 -22521 22522\n\t\tmu 0 3 3683 3487 5377\n\t\tf 3 22523 22524 -22523\n\t\tmu 0 3 5377 6268 3683\n\t\tf 3 22525 -22525 22526\n\t\tmu 0 3 559 3683 6268\n\t\tf 3 22527 22528 -22527\n\t\tmu 0 3 6268 3159 559\n\t\tf 3 22529 -22529 22530\n\t\tmu 0 3 510 559 3159\n\t\tf 3 22531 22532 -22531\n\t\tmu 0 3 3159 496 510\n\t\tf 3 -22530 22533 22534\n\t\tmu 0 3 559 510 3482\n\t\tf 3 22535 22536 -22535\n\t\tmu 0 3 3482 114 559\n\t\tf 3 -22526 -22537 22537\n\t\tmu 0 3 3683 559 114\n\t\tf 3 22538 22539 -22538\n\t\tmu 0 3 114 6329 3683\n\t\tf 3 -22522 -22540 22540\n\t\tmu 0 3 3487 3683 6329\n\t\tf 3 22541 -22518 -22541\n\t\tmu 0 3 6329 343 3487\n\t\tf 3 22542 -22515 22543\n\t\tmu 0 3 3132 4159 343\n\t\tf 3 -22542 22544 -22544\n\t\tmu 0 3 343 6329 3132\n\t\tf 3 22545 -22545 22546\n\t\tmu 0 3 574 3132 6329\n\t\tf 3 -22539 22547 -22547\n\t\tmu 0 3 6329 114 574\n\t\tf 3 22548 -22548 22549\n\t\tmu 0 3 606 574 114\n\t\tf 3 -22536 22550 -22550\n\t\tmu 0 3 114 3482 606\n\t\tf 3 -22549 22551 22552\n\t\tmu 0 3 574 606 2298\n\t\tf 3 22553 22554 -22553\n\t\tmu 0 3 2298 339 574\n\t\tf 3 -22546 -22555 22555\n\t\tmu 0 3 3132 574 339\n\t\tf 3 22556 22557 -22556\n\t\tmu 0 3 339 5075 3132\n\t\tf 3 -22543 -22558 22558\n\t\tmu 0 3 4159 3132 5075\n\t\tf 3 22559 -22512 -22559\n\t\tmu 0 3 5075 292 4159\n\t\tf 3 -22560 22560 22561\n\t\tmu 0 3 292 5075 4536\n\t\tf 3 22562 -22509 -22562\n\t\tmu 0 3 4536 3748 292\n\t\tf 3 22563 -22561 22564\n\t\tmu 0 3 1339 4536 5075\n\t\tf 3 -22557 22565 -22565\n\t\tmu 0 3 5075 339 1339\n\t\tf 3 22566 -22566 22567\n\t\tmu 0 3 5233 1339 339\n\t\tf 3 -22554 22568 -22568\n\t\tmu 0 3 339 2298 5233\n\t\tf 3 -22567 22569 22570\n\t\tmu 0 3 1339 5233 3100\n\t\tf 3 22571 22572 -22571\n\t\tmu 0 3 3100 5484 1339\n\t\tf 3 -22564 -22573 22573\n\t\tmu 0 3 4536 1339 5484\n\t\tf 3 22574 22575 -22574\n\t\tmu 0 3 5484 456 4536\n\t\tf 3 -22563 -22576 22576\n\t\tmu 0 3 3748 4536 456\n\t\tf 3 22577 -22506 -22577\n\t\tmu 0 3 456 2407 3748\n\t\tf 3 -22578 22578 22579\n\t\tmu 0 3 2407 456 4633\n\t\tf 3 22580 -22503 -22580\n\t\tmu 0 3 4633 4405 2407\n\t\tf 3 22581 -22579 22582\n\t\tmu 0 3 2635 4633 456\n\t\tf 3 -22575 22583 -22583\n\t\tmu 0 3 456 5484 2635\n\t\tf 3 22584 -22584 22585\n\t\tmu 0 3 3935 2635 5484\n\t\tf 3 -22572 22586 -22586\n\t\tmu 0 3 5484 3100 3935\n\t\tf 3 -22585 22587 22588\n\t\tmu 0 3 2635 3935 5496\n\t\tf 3 22589 22590 -22589\n\t\tmu 0 3 5496 2335 2635\n\t\tf 3 -22582 -22591 22591\n\t\tmu 0 3 4633 2635 2335\n\t\tf 3 22592 22593 -22592\n\t\tmu 0 3 2335 4751 4633\n\t\tf 3 -22581 -22594 22594\n\t\tmu 0 3 4405 4633 4751\n\t\tf 3 22595 -22500 -22595\n\t\tmu 0 3 4751 5277 4405\n\t\tf 3 -22596 22596 22597\n\t\tmu 0 3 5277 4751 4065\n\t\tf 3 22598 22599 -22598\n\t\tmu 0 3 4065 4895 5277\n\t\tf 3 -22593 22600 22601\n\t\tmu 0 3 4751 2335 5235\n\t\tf 3 22602 -22597 -22602\n\t\tmu 0 3 5235 5446 4751\n\t\tf 3 -22590 22603 22604\n\t\tmu 0 3 2335 5496 5569\n\t\tf 3 22605 -22601 -22605\n\t\tmu 0 3 5569 2023 2335\n\t\tf 3 22606 -22588 22607\n\t\tmu 0 3 291 5496 3935\n\t\tf 3 22608 22609 -22608\n\t\tmu 0 3 3935 228 291\n\t\tf 3 -22609 -22587 22610\n\t\tmu 0 3 228 3935 3100\n\t\tf 3 22611 22612 -22611\n\t\tmu 0 3 3100 2057 228\n\t\tf 3 -22612 -22570 22613\n\t\tmu 0 3 2057 3100 5233\n\t\tf 3 22614 22615 -22614\n\t\tmu 0 3 5233 2008 2057\n\t\tf 3 -22615 -22569 22616\n\t\tmu 0 3 2008 5233 2298\n\t\tf 3 22617 22618 -22617\n\t\tmu 0 3 2298 828 2008\n\t\tf 3 -22618 -22552 22619\n\t\tmu 0 3 828 2298 606\n\t\tf 3 22620 22621 -22620\n\t\tmu 0 3 606 389 828\n\t\tf 3 -22621 -22551 22622\n\t\tmu 0 3 389 606 3482\n\t\tf 3 22623 22624 -22623\n\t\tmu 0 3 3482 3958 389\n\t\tf 3 -22624 -22534 22625\n\t\tmu 0 3 3958 3482 510\n\t\tf 3 22626 22627 -22626\n\t\tmu 0 3 510 6014 3958\n\t\tf 3 -22627 -22533 22628\n\t\tmu 0 3 6014 510 496\n\t\tf 3 22629 22630 -22629\n\t\tmu 0 3 496 4573 6014\n\t\tf 3 22631 -22631 22632\n\t\tmu 0 3 3172 6014 4573\n\t\tf 3 22633 22634 -22633\n\t\tmu 0 3 4573 1684 3172\n\t\tf 3 22635 -22635 22636\n\t\tmu 0 3 5910 3172 1684\n\t\tf 3 22637 22638 -22637\n\t\tmu 0 3 1684 935 5910\n\t\tf 3 22639 -22639 22640\n\t\tmu 0 3 625 5910 935\n\t\tf 3 22641 22642 -22641\n\t\tmu 0 3 935 3951 625\n\t\tf 3 -22640 22643 22644\n\t\tmu 0 3 5910 625 5067\n\t\tf 3 22645 22646 -22645\n\t\tmu 0 3 5067 1469 5910\n\t\tf 3 -22636 -22647 22647\n\t\tmu 0 3 3172 5910 1469\n\t\tf 3 22648 22649 -22648\n\t\tmu 0 3 1469 5188 3172\n\t\tf 3 -22632 -22650 22650\n\t\tmu 0 3 6014 3172 5188\n\t\tf 3 22651 -22628 -22651\n\t\tmu 0 3 5188 3958 6014\n\t\tf 3 22652 -22625 22653\n\t\tmu 0 3 2950 389 3958\n\t\tf 3 -22652 22654 -22654\n\t\tmu 0 3 3958 5188 2950\n\t\tf 3 22655 -22655 22656\n\t\tmu 0 3 5725 2950 5188\n\t\tf 3 -22649 22657 -22657\n\t\tmu 0 3 5188 1469 5725\n\t\tf 3 22658 -22658 22659\n\t\tmu 0 3 1021 5725 1469\n\t\tf 3 -22646 22660 -22660\n\t\tmu 0 3 1469 5067 1021\n\t\tf 3 -22659 22661 22662\n\t\tmu 0 3 5725 1021 4806\n\t\tf 3 22663 22664 -22663\n\t\tmu 0 3 4806 5544 5725\n\t\tf 3 -22656 -22665 22665\n\t\tmu 0 3 2950 5725 5544\n\t\tf 3 22666 22667 -22666\n\t\tmu 0 3 5544 3085 2950\n\t\tf 3 -22653 -22668 22668\n\t\tmu 0 3 389 2950 3085\n\t\tf 3 22669 -22622 -22669\n\t\tmu 0 3 3085 828 389\n\t\tf 3 -22670 22670 22671\n\t\tmu 0 3 828 3085 3362\n\t\tf 3 22672 -22619 -22672\n\t\tmu 0 3 3362 2008 828\n\t\tf 3 22673 -22671 22674\n\t\tmu 0 3 3410 3362 3085\n\t\tf 3 -22667 22675 -22675\n\t\tmu 0 3 3085 5544 3410\n\t\tf 3 22676 -22676 22677\n\t\tmu 0 3 5408 3410 5544\n\t\tf 3 -22664 22678 -22678\n\t\tmu 0 3 5544 4806 5408\n\t\tf 3 -22677 22679 22680\n\t\tmu 0 3 3410 5408 2300\n\t\tf 3 22681 22682 -22681\n\t\tmu 0 3 2300 5866 3410\n\t\tf 3 -22674 -22683 22683\n\t\tmu 0 3 3362 3410 5866\n\t\tf 3 22684 22685 -22684\n\t\tmu 0 3 5866 10 3362\n\t\tf 3 -22673 -22686 22686\n\t\tmu 0 3 2008 3362 10\n\t\tf 3 22687 -22616 -22687\n\t\tmu 0 3 10 2057 2008\n\t\tf 3 -22688 22688 22689\n\t\tmu 0 3 2057 10 4715\n\t\tf 3 22690 -22613 -22690\n\t\tmu 0 3 4715 228 2057\n\t\tf 3 22691 -22689 22692\n\t\tmu 0 3 5618 4715 10\n\t\tf 3 -22685 22693 -22693\n\t\tmu 0 3 10 5866 5618\n\t\tf 3 22694 -22694 22695\n\t\tmu 0 3 2796 5618 5866\n\t\tf 3 -22682 22696 -22696\n\t\tmu 0 3 5866 2300 2796\n\t\tf 3 -22695 22697 22698\n\t\tmu 0 3 5618 2796 170\n\t\tf 3 22699 22700 -22699\n\t\tmu 0 3 170 3028 5618\n\t\tf 3 -22692 -22701 22701\n\t\tmu 0 3 4715 5618 3028\n\t\tf 3 22702 22703 -22702\n\t\tmu 0 3 3028 2353 4715\n\t\tf 3 -22691 -22704 22704\n\t\tmu 0 3 228 4715 2353\n\t\tf 3 22705 -22610 -22705\n\t\tmu 0 3 2353 291 228\n\t\tf 3 -22706 22706 22707\n\t\tmu 0 3 291 2353 6465\n\t\tf 3 22708 22709 -22708\n\t\tmu 0 3 6465 6286 291\n\t\tf 3 -22703 22710 22711\n\t\tmu 0 3 2353 3028 5108\n\t\tf 3 22712 -22707 -22712\n\t\tmu 0 3 5108 491 2353\n\t\tf 3 -22700 22713 22714\n\t\tmu 0 3 3028 170 3826\n\t\tf 3 22715 -22711 -22715\n\t\tmu 0 3 3826 3383 3028\n\t\tf 3 22716 -22698 22717\n\t\tmu 0 3 2334 170 2796\n\t\tf 3 22718 22719 -22718\n\t\tmu 0 3 2796 4682 2334\n\t\tf 3 -22719 -22697 22720\n\t\tmu 0 3 4682 2796 2300\n\t\tf 3 22721 22722 -22721\n\t\tmu 0 3 2300 2301 4682\n\t\tf 3 -22722 -22680 22723\n\t\tmu 0 3 2301 2300 5408\n\t\tf 3 22724 22725 -22724\n\t\tmu 0 3 5408 3382 2301\n\t\tf 3 -22725 -22679 22726\n\t\tmu 0 3 3382 5408 4806\n\t\tf 3 22727 22728 -22727\n\t\tmu 0 3 4806 621 3382\n\t\tf 3 -22728 -22662 22729\n\t\tmu 0 3 621 4806 1021\n\t\tf 3 22730 22731 -22730\n\t\tmu 0 3 1021 493 621\n\t\tf 3 -22731 -22661 22732\n\t\tmu 0 3 493 1021 5067\n\t\tf 3 22733 22734 -22733\n\t\tmu 0 3 5067 4905 493\n\t\tf 3 -22734 -22644 22735\n\t\tmu 0 3 4905 5067 625\n\t\tf 3 22736 22737 -22736\n\t\tmu 0 3 625 5481 4905\n\t\tf 3 -22737 -22643 22738\n\t\tmu 0 3 5481 625 3951\n\t\tf 3 22739 22740 -22739\n\t\tmu 0 3 3951 3953 5481\n\t\tf 3 22741 -22741 22742\n\t\tmu 0 3 4484 5481 3953\n\t\tf 3 22743 22744 -22743\n\t\tmu 0 3 3953 4619 4484\n\t\tf 3 22745 -22745 22746\n\t\tmu 0 3 2444 4484 4619\n\t\tf 3 22747 22748 -22747\n\t\tmu 0 3 4619 4218 2444\n\t\tf 3 22749 -22749 22750\n\t\tmu 0 3 3207 2444 4218\n\t\tf 3 22751 22752 -22751\n\t\tmu 0 3 4218 5630 3207\n\t\tf 3 -22750 22753 22754\n\t\tmu 0 3 2444 3207 550\n\t\tf 3 22755 22756 -22755\n\t\tmu 0 3 550 4557 2444\n\t\tf 3 -22746 -22757 22757\n\t\tmu 0 3 4484 2444 4557\n\t\tf 3 22758 22759 -22758\n\t\tmu 0 3 4557 2727 4484\n\t\tf 3 -22742 -22760 22760\n\t\tmu 0 3 5481 4484 2727\n\t\tf 3 22761 -22738 -22761\n\t\tmu 0 3 2727 4905 5481\n\t\tf 3 22762 -22735 22763\n\t\tmu 0 3 2139 493 4905\n\t\tf 3 -22762 22764 -22764\n\t\tmu 0 3 4905 2727 2139\n\t\tf 3 22765 -22765 22766\n\t\tmu 0 3 279 2139 2727\n\t\tf 3 -22759 22767 -22767\n\t\tmu 0 3 2727 4557 279\n\t\tf 3 -22756 22768 22769\n\t\tmu 0 3 4557 550 5027\n\t\tf 3 22770 -22768 -22770\n\t\tmu 0 3 5027 279 4557\n\t\tf 3 -22771 22771 22772\n\t\tmu 0 3 279 5027 345\n\t\tf 3 22773 22774 -22773\n\t\tmu 0 3 345 115 279\n\t\tf 3 -22766 -22775 22775\n\t\tmu 0 3 2139 279 115\n\t\tf 3 22776 22777 -22776\n\t\tmu 0 3 115 341 2139\n\t\tf 3 -22763 -22778 22778\n\t\tmu 0 3 493 2139 341\n\t\tf 3 22779 -22732 -22779\n\t\tmu 0 3 341 621 493\n\t\tf 3 -22780 22780 22781\n\t\tmu 0 3 621 341 530\n\t\tf 3 22782 -22729 -22782\n\t\tmu 0 3 530 3382 621\n\t\tf 3 22783 -22781 22784\n\t\tmu 0 3 4423 530 341\n\t\tf 3 -22777 22785 -22785\n\t\tmu 0 3 341 115 4423\n\t\tf 3 -22774 22786 22787\n\t\tmu 0 3 115 345 5203\n\t\tf 3 22788 -22786 -22788\n\t\tmu 0 3 5203 4423 115\n\t\tf 3 -22789 22789 22790\n\t\tmu 0 3 4423 5203 5631\n\t\tf 3 22791 22792 -22791\n\t\tmu 0 3 5631 5850 4423\n\t\tf 3 -22784 -22793 22793\n\t\tmu 0 3 530 4423 5850\n\t\tf 3 22794 22795 -22794\n\t\tmu 0 3 5850 6232 530\n\t\tf 3 -22783 -22796 22796\n\t\tmu 0 3 3382 530 6232\n\t\tf 3 22797 -22726 -22797\n\t\tmu 0 3 6232 2301 3382\n\t\tf 3 -22798 22798 22799\n\t\tmu 0 3 2301 6232 3423\n\t\tf 3 22800 -22723 -22800\n\t\tmu 0 3 3423 4682 2301\n\t\tf 3 22801 -22799 22802\n\t\tmu 0 3 5469 3423 6232\n\t\tf 3 -22795 22803 -22803\n\t\tmu 0 3 6232 5850 5469\n\t\tf 3 -22792 22804 22805\n\t\tmu 0 3 5850 5631 5023\n\t\tf 3 22806 -22804 -22806\n\t\tmu 0 3 5023 5469 5850\n\t\tf 3 -22807 22807 22808\n\t\tmu 0 3 5469 5023 1229\n\t\tf 3 22809 22810 -22809\n\t\tmu 0 3 1229 1834 5469\n\t\tf 3 -22802 -22811 22811\n\t\tmu 0 3 3423 5469 1834\n\t\tf 3 22812 22813 -22812\n\t\tmu 0 3 1834 5614 3423\n\t\tf 3 -22801 -22814 22814\n\t\tmu 0 3 4682 3423 5614\n\t\tf 3 22815 -22720 -22815\n\t\tmu 0 3 5614 2334 4682\n\t\tf 3 -22816 22816 22817\n\t\tmu 0 3 2334 5614 6410\n\t\tf 3 22818 22819 -22818\n\t\tmu 0 3 6410 2120 2334\n\t\tf 3 -22813 22820 22821\n\t\tmu 0 3 5614 1834 476\n\t\tf 3 22822 -22817 -22822\n\t\tmu 0 3 476 5068 5614\n\t\tf 3 22823 -22805 22824\n\t\tmu 0 3 2780 5023 5631\n\t\tf 3 -22808 -22824 22825\n\t\tmu 0 3 1229 5023 2780\n\t\tf 3 22826 22827 -22825\n\t\tmu 0 3 5631 3504 2780\n\t\tf 3 22828 -22827 22829\n\t\tmu 0 3 2289 3504 5631\n\t\tf 3 22830 -22829 22831\n\t\tmu 0 3 5045 3504 2289\n\t\tf 3 22832 22833 -22832\n\t\tmu 0 3 2289 3950 5045\n\t\tf 3 -22833 22834 22835\n\t\tmu 0 3 3950 2289 5094\n\t\tf 3 22836 -22835 22837\n\t\tmu 0 3 345 5094 2289\n\t\tf 3 22838 -22837 22839\n\t\tmu 0 3 2893 5094 345\n\t\tf 3 22840 -22839 22841\n\t\tmu 0 3 2474 5094 2893\n\t\tf 3 -22841 22842 -22836\n\t\tmu 0 3 5094 2474 3950\n\t\tf 3 22843 22844 -22842\n\t\tmu 0 3 2893 2167 2474\n\t\tf 3 -22844 22845 22846\n\t\tmu 0 3 2167 2893 2280\n\t\tf 3 22847 -22846 22848\n\t\tmu 0 3 550 2280 2893\n\t\tf 3 22849 -22848 22850\n\t\tmu 0 3 841 2280 550\n\t\tf 3 22851 -22850 22852\n\t\tmu 0 3 2761 2280 841\n\t\tf 3 -22852 22853 -22847\n\t\tmu 0 3 2280 2761 2167\n\t\tf 3 22854 22855 -22853\n\t\tmu 0 3 841 128 2761\n\t\tf 3 -22855 22856 22857\n\t\tmu 0 3 128 841 882\n\t\tf 3 22858 -22857 22859\n\t\tmu 0 3 5630 882 841\n\t\tf 3 22860 -22753 -22860\n\t\tmu 0 3 841 3207 5630\n\t\tf 3 -22754 -22861 -22851\n\t\tmu 0 3 550 3207 841\n\t\tf 3 22861 22862 -22858\n\t\tmu 0 3 882 3378 128\n\t\tf 3 22863 -22769 -22849\n\t\tmu 0 3 2893 5027 550\n\t\tf 3 -22772 -22864 -22840\n\t\tmu 0 3 345 5027 2893\n\t\tf 3 -22862 22864 22865\n\t\tmu 0 3 3378 882 2529\n\t\tf 3 22866 22867 -22866\n\t\tmu 0 3 2529 3719 3378\n\t\tf 3 -22867 22868 22869\n\t\tmu 0 3 3719 2529 4395\n\t\tf 3 22870 -22869 22871\n\t\tmu 0 3 1493 4395 2529\n\t\tf 3 22872 -22871 22873\n\t\tmu 0 3 5252 4395 1493\n\t\tf 3 22874 -22873 22875\n\t\tmu 0 3 2299 4395 5252\n\t\tf 3 -22875 22876 -22870\n\t\tmu 0 3 4395 2299 3719\n\t\tf 3 22877 22878 -22876\n\t\tmu 0 3 5252 5574 2299\n\t\tf 3 -22878 22879 22880\n\t\tmu 0 3 5574 5252 5849\n\t\tf 3 22881 -22880 22882\n\t\tmu 0 3 1947 5849 5252\n\t\tf 3 22883 -22882 22884\n\t\tmu 0 3 2506 5849 1947\n\t\tf 3 22885 -22884 22886\n\t\tmu 0 3 3506 5849 2506\n\t\tf 3 -22886 22887 -22881\n\t\tmu 0 3 5849 3506 5574\n\t\tf 3 22888 22889 -22887\n\t\tmu 0 3 2506 4882 3506\n\t\tf 3 -22889 22890 22891\n\t\tmu 0 3 4882 2506 1188\n\t\tf 3 22892 -22891 22893\n\t\tmu 0 3 5659 1188 2506\n\t\tf 3 22894 -22893 22895\n\t\tmu 0 3 4988 1188 5659\n\t\tf 3 22896 -22895 22897\n\t\tmu 0 3 947 1188 4988\n\t\tf 3 -22897 22898 -22892\n\t\tmu 0 3 1188 947 4882\n\t\tf 3 22899 22900 -22898\n\t\tmu 0 3 4988 2620 947\n\t\tf 3 22901 22902 -22896\n\t\tmu 0 3 5659 462 4988\n\t\tf 3 22903 -22902 22904\n\t\tmu 0 3 1 462 5659\n\t\tf 3 22905 22906 -22905\n\t\tmu 0 3 5659 3879 1\n\t\tf 3 -22823 -22907 22907\n\t\tmu 0 3 2596 1 3879\n\t\tf 3 22908 22909 -22908\n\t\tmu 0 3 3879 6346 2596\n\t\tf 3 -22819 -22910 22910\n\t\tmu 0 3 735 2596 6346\n\t\tf 3 22911 22912 -22911\n\t\tmu 0 3 6346 4119 735\n\t\tf 3 22913 -22913 22914\n\t\tmu 0 3 4974 735 4119\n\t\tf 3 22915 22916 -22915\n\t\tmu 0 3 4119 294 4974\n\t\tf 3 -22716 -22917 22917\n\t\tmu 0 3 5428 4974 294\n\t\tf 3 22918 22919 -22918\n\t\tmu 0 3 294 2876 5428\n\t\tf 3 -22713 -22920 22920\n\t\tmu 0 3 707 5428 2876\n\t\tf 3 22921 22922 -22921\n\t\tmu 0 3 2876 3785 707\n\t\tf 3 -22709 -22923 22923\n\t\tmu 0 3 4090 707 3785\n\t\tf 3 22924 22925 -22924\n\t\tmu 0 3 3785 4453 4090\n\t\tf 3 22926 -22926 22927\n\t\tmu 0 3 4647 4090 4453\n\t\tf 3 22928 22929 -22928\n\t\tmu 0 3 4453 5472 4647\n\t\tf 3 -22606 -22930 22930\n\t\tmu 0 3 3975 4647 5472\n\t\tf 3 22931 22932 -22931\n\t\tmu 0 3 5472 216 3975;\n\tsetAttr \".fc[12000:12499]\"\n\t\tf 3 -22603 -22933 22933\n\t\tmu 0 3 542 3975 216\n\t\tf 3 22934 22935 -22934\n\t\tmu 0 3 216 4431 542\n\t\tf 3 -22599 -22936 22936\n\t\tmu 0 3 1138 542 4431\n\t\tf 3 22937 22938 -22937\n\t\tmu 0 3 4431 3518 1138\n\t\tf 3 22939 -22939 22940\n\t\tmu 0 3 6383 1138 3518\n\t\tf 3 22941 22942 -22941\n\t\tmu 0 3 3518 1805 6383\n\t\tf 3 -22496 -22943 22943\n\t\tmu 0 3 692 6383 1805\n\t\tf 3 22944 22945 -22944\n\t\tmu 0 3 1805 4620 692\n\t\tf 3 -22493 -22946 22946\n\t\tmu 0 3 1546 692 4620\n\t\tf 3 22947 22948 -22947\n\t\tmu 0 3 4620 4612 1546\n\t\tf 3 -22489 -22949 22949\n\t\tmu 0 3 1370 1546 4612\n\t\tf 3 22950 22951 -22950\n\t\tmu 0 3 4612 793 1370\n\t\tf 3 22952 -22952 22953\n\t\tmu 0 3 859 1370 793\n\t\tf 3 22954 22955 -22954\n\t\tmu 0 3 793 1075 859\n\t\tf 3 -22386 -22956 22956\n\t\tmu 0 3 5268 859 1075\n\t\tf 3 22957 22958 -22957\n\t\tmu 0 3 1075 5398 5268\n\t\tf 3 -22383 -22959 22959\n\t\tmu 0 3 3562 5268 5398\n\t\tf 3 22960 22961 -22960\n\t\tmu 0 3 5398 3661 3562\n\t\tf 3 -22378 -22962 22962\n\t\tmu 0 3 6133 3562 3661\n\t\tf 3 22963 22964 -22963\n\t\tmu 0 3 3661 4944 6133\n\t\tf 3 -22376 -22965 22965\n\t\tmu 0 3 4138 6133 4944\n\t\tf 3 22966 22967 -22966\n\t\tmu 0 3 4944 5278 4138\n\t\tf 3 22968 -22968 22969\n\t\tmu 0 3 5227 4138 5278\n\t\tf 3 -22969 22970 22971\n\t\tmu 0 3 4138 5227 202\n\t\tf 3 -22269 -22971 22972\n\t\tmu 0 3 4762 202 5227\n\t\tf 3 22973 22974 -22973\n\t\tmu 0 3 5227 1211 4762\n\t\tf 3 -22266 -22377 -22972\n\t\tmu 0 3 202 5674 4138\n\t\tf 3 22975 22976 -22970\n\t\tmu 0 3 5278 1738 5227\n\t\tf 3 -22974 -22977 22977\n\t\tmu 0 3 1211 5227 1738\n\t\tf 3 22978 22979 -22978\n\t\tmu 0 3 1738 5997 1211\n\t\tf 3 22980 -22980 22981\n\t\tmu 0 3 3319 1211 5997\n\t\tf 3 22982 22983 -22982\n\t\tmu 0 3 5997 3408 3319\n\t\tf 3 -22983 22984 22985\n\t\tmu 0 3 3408 5997 1561\n\t\tf 3 22986 22987 -22986\n\t\tmu 0 3 1561 49 3408\n\t\tf 3 22988 -22985 22989\n\t\tmu 0 3 3536 1561 5997\n\t\tf 3 -22979 22990 -22990\n\t\tmu 0 3 5997 1738 3536\n\t\tf 3 22991 -22991 22992\n\t\tmu 0 3 5088 3536 1738\n\t\tf 3 -22976 22993 -22993\n\t\tmu 0 3 1738 5278 5088\n\t\tf 3 -22992 22994 22995\n\t\tmu 0 3 3536 5088 2932\n\t\tf 3 22996 22997 -22996\n\t\tmu 0 3 2932 4716 3536\n\t\tf 3 -22989 -22998 22998\n\t\tmu 0 3 1561 3536 4716\n\t\tf 3 22999 23000 -22999\n\t\tmu 0 3 4716 2140 1561\n\t\tf 3 -22987 -23001 23001\n\t\tmu 0 3 49 1561 2140\n\t\tf 3 23002 23003 -23002\n\t\tmu 0 3 2140 4986 49\n\t\tf 3 -23003 23004 23005\n\t\tmu 0 3 4986 2140 3516\n\t\tf 3 23006 23007 -23006\n\t\tmu 0 3 3516 939 4986\n\t\tf 3 23008 -23005 23009\n\t\tmu 0 3 4791 3516 2140\n\t\tf 3 -23000 23010 -23010\n\t\tmu 0 3 2140 4716 4791\n\t\tf 3 23011 -23011 23012\n\t\tmu 0 3 4957 4791 4716\n\t\tf 3 -22997 23013 -23013\n\t\tmu 0 3 4716 2932 4957\n\t\tf 3 -23012 23014 23015\n\t\tmu 0 3 4791 4957 6388\n\t\tf 3 23016 23017 -23016\n\t\tmu 0 3 6388 1803 4791\n\t\tf 3 -23009 -23018 23018\n\t\tmu 0 3 3516 4791 1803\n\t\tf 3 23019 23020 -23019\n\t\tmu 0 3 1803 2926 3516\n\t\tf 3 -23007 -23021 23021\n\t\tmu 0 3 939 3516 2926\n\t\tf 3 23022 23023 -23022\n\t\tmu 0 3 2926 2928 939\n\t\tf 3 -23023 23024 23025\n\t\tmu 0 3 2928 2926 2880\n\t\tf 3 23026 23027 -23026\n\t\tmu 0 3 2880 495 2928\n\t\tf 3 23028 -23025 23029\n\t\tmu 0 3 6302 2880 2926\n\t\tf 3 -23020 23030 -23030\n\t\tmu 0 3 2926 1803 6302\n\t\tf 3 23031 -23031 23032\n\t\tmu 0 3 6176 6302 1803\n\t\tf 3 -23017 23033 -23033\n\t\tmu 0 3 1803 6388 6176\n\t\tf 3 -23032 23034 23035\n\t\tmu 0 3 6302 6176 3834\n\t\tf 3 -22202 23036 -23036\n\t\tmu 0 3 3834 1558 6302\n\t\tf 3 -23029 -23037 23037\n\t\tmu 0 3 2880 6302 1558\n\t\tf 3 -22198 23038 -23038\n\t\tmu 0 3 1558 1503 2880\n\t\tf 3 -23027 -23039 23039\n\t\tmu 0 3 495 2880 1503\n\t\tf 3 -22192 23040 -23040\n\t\tmu 0 3 1503 964 495\n\t\tf 3 23041 -23015 23042\n\t\tmu 0 3 3112 6388 4957\n\t\tf 3 23043 23044 -23043\n\t\tmu 0 3 4957 5902 3112\n\t\tf 3 -23044 -23014 23045\n\t\tmu 0 3 5902 4957 2932\n\t\tf 3 23046 23047 -23046\n\t\tmu 0 3 2932 4310 5902\n\t\tf 3 -23047 -22995 23048\n\t\tmu 0 3 4310 2932 5088\n\t\tf 3 23049 23050 -23049\n\t\tmu 0 3 5088 832 4310\n\t\tf 3 -23050 -22994 23051\n\t\tmu 0 3 832 5088 5278\n\t\tf 3 -22967 23052 -23052\n\t\tmu 0 3 5278 4944 832\n\t\tf 3 23053 -23053 23054\n\t\tmu 0 3 2024 832 4944\n\t\tf 3 -22964 23055 -23055\n\t\tmu 0 3 4944 3661 2024\n\t\tf 3 23056 -23056 23057\n\t\tmu 0 3 2869 2024 3661\n\t\tf 3 -22961 23058 -23058\n\t\tmu 0 3 3661 5398 2869\n\t\tf 3 23059 -23059 23060\n\t\tmu 0 3 4287 2869 5398\n\t\tf 3 -22958 23061 -23061\n\t\tmu 0 3 5398 1075 4287\n\t\tf 3 -23060 23062 23063\n\t\tmu 0 3 2869 4287 5429\n\t\tf 3 23064 23065 -23064\n\t\tmu 0 3 5429 3462 2869\n\t\tf 3 -23057 -23066 23066\n\t\tmu 0 3 2024 2869 3462\n\t\tf 3 23067 23068 -23067\n\t\tmu 0 3 3462 5810 2024\n\t\tf 3 -23054 -23069 23069\n\t\tmu 0 3 832 2024 5810\n\t\tf 3 23070 -23051 -23070\n\t\tmu 0 3 5810 4310 832\n\t\tf 3 23071 -23048 23072\n\t\tmu 0 3 2203 5902 4310\n\t\tf 3 -23071 23073 -23073\n\t\tmu 0 3 4310 5810 2203\n\t\tf 3 23074 -23074 23075\n\t\tmu 0 3 2496 2203 5810\n\t\tf 3 -23068 23076 -23076\n\t\tmu 0 3 5810 3462 2496\n\t\tf 3 23077 -23077 23078\n\t\tmu 0 3 1050 2496 3462\n\t\tf 3 -23065 23079 -23079\n\t\tmu 0 3 3462 5429 1050\n\t\tf 3 -23078 23080 23081\n\t\tmu 0 3 2496 1050 370\n\t\tf 3 23082 23083 -23082\n\t\tmu 0 3 370 4314 2496\n\t\tf 3 -23075 -23084 23084\n\t\tmu 0 3 2203 2496 4314\n\t\tf 3 23085 23086 -23085\n\t\tmu 0 3 4314 2399 2203\n\t\tf 3 -23072 -23087 23087\n\t\tmu 0 3 5902 2203 2399\n\t\tf 3 23088 -23045 -23088\n\t\tmu 0 3 2399 3112 5902\n\t\tf 3 -23089 23089 23090\n\t\tmu 0 3 3112 2399 3529\n\t\tf 3 23091 23092 -23091\n\t\tmu 0 3 3529 3321 3112\n\t\tf 3 -23042 -23093 23093\n\t\tmu 0 3 6388 3112 3321\n\t\tf 3 23094 -23034 -23094\n\t\tmu 0 3 3321 6176 6388\n\t\tf 3 23095 -23090 23096\n\t\tmu 0 3 2495 3529 2399\n\t\tf 3 -23086 23097 -23097\n\t\tmu 0 3 2399 4314 2495\n\t\tf 3 23098 -23098 23099\n\t\tmu 0 3 5648 2495 4314\n\t\tf 3 -23083 23100 -23100\n\t\tmu 0 3 4314 370 5648\n\t\tf 3 -23099 23101 23102\n\t\tmu 0 3 2495 5648 2726\n\t\tf 3 -22303 23103 -23103\n\t\tmu 0 3 2726 3161 2495\n\t\tf 3 -23096 -23104 23104\n\t\tmu 0 3 3529 2495 3161\n\t\tf 3 -22299 23105 -23105\n\t\tmu 0 3 3161 2603 3529\n\t\tf 3 -23092 -23106 23106\n\t\tmu 0 3 3321 3529 2603\n\t\tf 3 -22295 23107 -23107\n\t\tmu 0 3 2603 1384 3321\n\t\tf 3 -23095 -23108 23108\n\t\tmu 0 3 6176 3321 1384\n\t\tf 3 -22291 -23035 -23109\n\t\tmu 0 3 1384 3834 6176\n\t\tf 3 23109 -23081 23110\n\t\tmu 0 3 3838 370 1050\n\t\tf 3 23111 23112 -23111\n\t\tmu 0 3 1050 65 3838\n\t\tf 3 -23112 -23080 23113\n\t\tmu 0 3 65 1050 5429\n\t\tf 3 23114 23115 -23114\n\t\tmu 0 3 5429 1831 65\n\t\tf 3 -23115 -23063 23116\n\t\tmu 0 3 1831 5429 4287\n\t\tf 3 23117 23118 -23117\n\t\tmu 0 3 4287 5909 1831\n\t\tf 3 -23118 -23062 23119\n\t\tmu 0 3 5909 4287 1075\n\t\tf 3 -22955 23120 -23120\n\t\tmu 0 3 1075 793 5909\n\t\tf 3 23121 -23121 23122\n\t\tmu 0 3 6431 5909 793\n\t\tf 3 -22951 23123 -23123\n\t\tmu 0 3 793 4612 6431\n\t\tf 3 23124 -23124 23125\n\t\tmu 0 3 1855 6431 4612\n\t\tf 3 -22948 23126 -23126\n\t\tmu 0 3 4612 4620 1855\n\t\tf 3 23127 -23127 23128\n\t\tmu 0 3 4987 1855 4620\n\t\tf 3 -22945 23129 -23129\n\t\tmu 0 3 4620 1805 4987\n\t\tf 3 -23128 23130 23131\n\t\tmu 0 3 1855 4987 5226\n\t\tf 3 23132 23133 -23132\n\t\tmu 0 3 5226 1962 1855\n\t\tf 3 -23125 -23134 23134\n\t\tmu 0 3 6431 1855 1962\n\t\tf 3 23135 23136 -23135\n\t\tmu 0 3 1962 2133 6431\n\t\tf 3 -23122 -23137 23137\n\t\tmu 0 3 5909 6431 2133\n\t\tf 3 23138 -23119 -23138\n\t\tmu 0 3 2133 1831 5909\n\t\tf 3 23139 -23116 23140\n\t\tmu 0 3 5579 65 1831\n\t\tf 3 -23139 23141 -23141\n\t\tmu 0 3 1831 2133 5579\n\t\tf 3 23142 -23142 23143\n\t\tmu 0 3 1772 5579 2133\n\t\tf 3 -23136 23144 -23144\n\t\tmu 0 3 2133 1962 1772\n\t\tf 3 23145 -23145 23146\n\t\tmu 0 3 1922 1772 1962\n\t\tf 3 -23133 23147 -23147\n\t\tmu 0 3 1962 5226 1922\n\t\tf 3 -23146 23148 23149\n\t\tmu 0 3 1772 1922 1028\n\t\tf 3 23150 23151 -23150\n\t\tmu 0 3 1028 5558 1772\n\t\tf 3 -23143 -23152 23152\n\t\tmu 0 3 5579 1772 5558\n\t\tf 3 23153 23154 -23153\n\t\tmu 0 3 5558 463 5579\n\t\tf 3 -23140 -23155 23155\n\t\tmu 0 3 65 5579 463\n\t\tf 3 23156 -23113 -23156\n\t\tmu 0 3 463 3838 65\n\t\tf 3 -23157 23157 23158\n\t\tmu 0 3 3838 463 2201\n\t\tf 3 23159 23160 -23159\n\t\tmu 0 3 2201 4991 3838\n\t\tf 3 -23110 -23161 23161\n\t\tmu 0 3 370 3838 4991\n\t\tf 3 23162 -23101 -23162\n\t\tmu 0 3 4991 5648 370\n\t\tf 3 23163 -23158 23164\n\t\tmu 0 3 2711 2201 463\n\t\tf 3 -23154 23165 -23165\n\t\tmu 0 3 463 5558 2711\n\t\tf 3 23166 -23166 23167\n\t\tmu 0 3 2325 2711 5558\n\t\tf 3 -23151 23168 -23168\n\t\tmu 0 3 5558 1028 2325\n\t\tf 3 -23167 23169 23170\n\t\tmu 0 3 2711 2325 1540\n\t\tf 3 -22422 23171 -23171\n\t\tmu 0 3 1540 5118 2711\n\t\tf 3 -23164 -23172 23172\n\t\tmu 0 3 2201 2711 5118\n\t\tf 3 -22418 23173 -23173\n\t\tmu 0 3 5118 2109 2201\n\t\tf 3 -23160 -23174 23174\n\t\tmu 0 3 4991 2201 2109\n\t\tf 3 -22414 23175 -23175\n\t\tmu 0 3 2109 789 4991\n\t\tf 3 -23163 -23176 23176\n\t\tmu 0 3 5648 4991 789\n\t\tf 3 -22410 -23102 -23177\n\t\tmu 0 3 789 2726 5648\n\t\tf 3 23177 -23149 23178\n\t\tmu 0 3 1200 1028 1922\n\t\tf 3 23179 23180 -23179\n\t\tmu 0 3 1922 6455 1200\n\t\tf 3 -23180 -23148 23181\n\t\tmu 0 3 6455 1922 5226\n\t\tf 3 23182 23183 -23182\n\t\tmu 0 3 5226 5612 6455\n\t\tf 3 -23183 -23131 23184\n\t\tmu 0 3 5612 5226 4987\n\t\tf 3 23185 23186 -23185\n\t\tmu 0 3 4987 5290 5612\n\t\tf 3 -23186 -23130 23187\n\t\tmu 0 3 5290 4987 1805\n\t\tf 3 -22942 23188 -23188\n\t\tmu 0 3 1805 3518 5290\n\t\tf 3 23189 -23189 23190\n\t\tmu 0 3 3517 5290 3518\n\t\tf 3 -22938 23191 -23191\n\t\tmu 0 3 3518 4431 3517\n\t\tf 3 23192 -23192 23193\n\t\tmu 0 3 6289 3517 4431\n\t\tf 3 -22935 23194 -23194\n\t\tmu 0 3 4431 216 6289\n\t\tf 3 23195 -23195 23196\n\t\tmu 0 3 458 6289 216\n\t\tf 3 -22932 23197 -23197\n\t\tmu 0 3 216 5472 458\n\t\tf 3 -23196 23198 23199\n\t\tmu 0 3 6289 458 5055\n\t\tf 3 23200 23201 -23200\n\t\tmu 0 3 5055 5072 6289\n\t\tf 3 -23193 -23202 23202\n\t\tmu 0 3 3517 6289 5072\n\t\tf 3 23203 23204 -23203\n\t\tmu 0 3 5072 4181 3517\n\t\tf 3 -23190 -23205 23205\n\t\tmu 0 3 5290 3517 4181\n\t\tf 3 23206 -23187 -23206\n\t\tmu 0 3 4181 5612 5290\n\t\tf 3 23207 -23184 23208\n\t\tmu 0 3 2993 6455 5612\n\t\tf 3 -23207 23209 -23209\n\t\tmu 0 3 5612 4181 2993\n\t\tf 3 23210 -23210 23211\n\t\tmu 0 3 1467 2993 4181\n\t\tf 3 -23204 23212 -23212\n\t\tmu 0 3 4181 5072 1467\n\t\tf 3 23213 -23213 23214\n\t\tmu 0 3 3811 1467 5072\n\t\tf 3 -23201 23215 -23215\n\t\tmu 0 3 5072 5055 3811\n\t\tf 3 -23214 23216 23217\n\t\tmu 0 3 1467 3811 50\n\t\tf 3 23218 23219 -23218\n\t\tmu 0 3 50 4934 1467\n\t\tf 3 -23211 -23220 23220\n\t\tmu 0 3 2993 1467 4934\n\t\tf 3 23221 23222 -23221\n\t\tmu 0 3 4934 3715 2993\n\t\tf 3 -23208 -23223 23223\n\t\tmu 0 3 6455 2993 3715\n\t\tf 3 23224 -23181 -23224\n\t\tmu 0 3 3715 1200 6455\n\t\tf 3 -23225 23225 23226\n\t\tmu 0 3 1200 3715 5038\n\t\tf 3 23227 23228 -23227\n\t\tmu 0 3 5038 346 1200\n\t\tf 3 -23178 -23229 23229\n\t\tmu 0 3 1028 1200 346\n\t\tf 3 23230 -23169 -23230\n\t\tmu 0 3 346 2325 1028\n\t\tf 3 23231 -23226 23232\n\t\tmu 0 3 678 5038 3715\n\t\tf 3 -23222 23233 -23233\n\t\tmu 0 3 3715 4934 678\n\t\tf 3 23234 -23234 23235\n\t\tmu 0 3 3766 678 4934\n\t\tf 3 -23219 23236 -23236\n\t\tmu 0 3 4934 50 3766\n\t\tf 3 -23235 23237 23238\n\t\tmu 0 3 678 3766 496\n\t\tf 3 -22532 23239 -23239\n\t\tmu 0 3 496 3159 678\n\t\tf 3 -23232 -23240 23240\n\t\tmu 0 3 5038 678 3159\n\t\tf 3 -22528 23241 -23241\n\t\tmu 0 3 3159 6268 5038\n\t\tf 3 -23228 -23242 23242\n\t\tmu 0 3 346 5038 6268\n\t\tf 3 -22524 23243 -23243\n\t\tmu 0 3 6268 5377 346\n\t\tf 3 -23231 -23244 23244\n\t\tmu 0 3 2325 346 5377\n\t\tf 3 -22520 -23170 -23245\n\t\tmu 0 3 5377 1540 2325\n\t\tf 3 23245 -23217 23246\n\t\tmu 0 3 3987 50 3811\n\t\tf 3 23247 23248 -23247\n\t\tmu 0 3 3811 2505 3987\n\t\tf 3 -23248 -23216 23249\n\t\tmu 0 3 2505 3811 5055\n\t\tf 3 23250 23251 -23250\n\t\tmu 0 3 5055 6056 2505\n\t\tf 3 -23251 -23199 23252\n\t\tmu 0 3 6056 5055 458\n\t\tf 3 23253 23254 -23253\n\t\tmu 0 3 458 6138 6056\n\t\tf 3 -23254 -23198 23255\n\t\tmu 0 3 6138 458 5472\n\t\tf 3 -22929 23256 -23256\n\t\tmu 0 3 5472 4453 6138\n\t\tf 3 23257 -23257 23258\n\t\tmu 0 3 156 6138 4453\n\t\tf 3 -22925 23259 -23259\n\t\tmu 0 3 4453 3785 156\n\t\tf 3 23260 -23260 23261\n\t\tmu 0 3 2007 156 3785\n\t\tf 3 -22922 23262 -23262\n\t\tmu 0 3 3785 2876 2007\n\t\tf 3 23263 -23263 23264\n\t\tmu 0 3 2525 2007 2876\n\t\tf 3 -22919 23265 -23265\n\t\tmu 0 3 2876 294 2525\n\t\tf 3 -23264 23266 23267\n\t\tmu 0 3 2007 2525 4046\n\t\tf 3 23268 23269 -23268\n\t\tmu 0 3 4046 480 2007\n\t\tf 3 -23261 -23270 23270\n\t\tmu 0 3 156 2007 480\n\t\tf 3 23271 23272 -23271\n\t\tmu 0 3 480 6544 156\n\t\tf 3 -23258 -23273 23273\n\t\tmu 0 3 6138 156 6544\n\t\tf 3 23274 -23255 -23274\n\t\tmu 0 3 6544 6056 6138\n\t\tf 3 23275 -23252 23276\n\t\tmu 0 3 3986 2505 6056\n\t\tf 3 -23275 23277 -23277\n\t\tmu 0 3 6056 6544 3986\n\t\tf 3 23278 -23278 23279\n\t\tmu 0 3 5837 3986 6544\n\t\tf 3 -23272 23280 -23280\n\t\tmu 0 3 6544 480 5837\n\t\tf 3 23281 -23281 23282\n\t\tmu 0 3 4651 5837 480\n\t\tf 3 -23269 23283 -23283\n\t\tmu 0 3 480 4046 4651\n\t\tf 3 -23282 23284 23285\n\t\tmu 0 3 5837 4651 492\n\t\tf 3 23286 23287 -23286\n\t\tmu 0 3 492 21 5837\n\t\tf 3 -23279 -23288 23288\n\t\tmu 0 3 3986 5837 21\n\t\tf 3 23289 23290 -23289\n\t\tmu 0 3 21 509 3986\n\t\tf 3 -23276 -23291 23291\n\t\tmu 0 3 2505 3986 509\n\t\tf 3 23292 -23249 -23292\n\t\tmu 0 3 509 3987 2505\n\t\tf 3 -23293 23293 23294\n\t\tmu 0 3 3987 509 5833\n\t\tf 3 23295 23296 -23295\n\t\tmu 0 3 5833 3029 3987\n\t\tf 3 -23246 -23297 23297\n\t\tmu 0 3 50 3987 3029\n\t\tf 3 23298 -23237 -23298\n\t\tmu 0 3 3029 3766 50\n\t\tf 3 23299 -23294 23300\n\t\tmu 0 3 5315 5833 509\n\t\tf 3 -23290 23301 -23301\n\t\tmu 0 3 509 21 5315\n\t\tf 3 23302 -23302 23303\n\t\tmu 0 3 6508 5315 21\n\t\tf 3 -23287 23304 -23304\n\t\tmu 0 3 21 492 6508\n\t\tf 3 -23303 23305 23306\n\t\tmu 0 3 5315 6508 3951\n\t\tf 3 -22642 23307 -23307\n\t\tmu 0 3 3951 935 5315\n\t\tf 3 -23300 -23308 23308\n\t\tmu 0 3 5833 5315 935\n\t\tf 3 -22638 23309 -23309\n\t\tmu 0 3 935 1684 5833\n\t\tf 3 -23296 -23310 23310\n\t\tmu 0 3 3029 5833 1684\n\t\tf 3 -22634 23311 -23311\n\t\tmu 0 3 1684 4573 3029\n\t\tf 3 -23299 -23312 23312\n\t\tmu 0 3 3766 3029 4573\n\t\tf 3 -22630 -23238 -23313\n\t\tmu 0 3 4573 496 3766\n\t\tf 3 23313 -23285 23314\n\t\tmu 0 3 5095 492 4651\n\t\tf 3 23315 23316 -23315\n\t\tmu 0 3 4651 3672 5095\n\t\tf 3 -23316 -23284 23317\n\t\tmu 0 3 3672 4651 4046\n\t\tf 3 23318 23319 -23318\n\t\tmu 0 3 4046 4044 3672\n\t\tf 3 -23319 -23267 23320\n\t\tmu 0 3 4044 4046 2525\n\t\tf 3 23321 23322 -23321\n\t\tmu 0 3 2525 136 4044\n\t\tf 3 -23322 -23266 23323\n\t\tmu 0 3 136 2525 294\n\t\tf 3 -22916 23324 -23324\n\t\tmu 0 3 294 4119 136\n\t\tf 3 23325 -23325 23326\n\t\tmu 0 3 4910 136 4119\n\t\tf 3 -22912 23327 -23327\n\t\tmu 0 3 4119 6346 4910\n\t\tf 3 23328 -23328 23329\n\t\tmu 0 3 892 4910 6346\n\t\tf 3 -22909 23330 -23330\n\t\tmu 0 3 6346 3879 892\n\t\tf 3 23331 -23331 23332\n\t\tmu 0 3 402 892 3879\n\t\tf 3 -22906 23333 -23333\n\t\tmu 0 3 3879 5659 402\n\t\tf 3 -23332 23334 23335\n\t\tmu 0 3 892 402 1947\n\t\tf 3 23336 23337 -23336\n\t\tmu 0 3 1947 3777 892\n\t\tf 3 -23329 -23338 23338\n\t\tmu 0 3 4910 892 3777\n\t\tf 3 23339 23340 -23339\n\t\tmu 0 3 3777 3485 4910\n\t\tf 3 -23326 -23341 23341\n\t\tmu 0 3 136 4910 3485\n\t\tf 3 23342 -23323 -23342\n\t\tmu 0 3 3485 4044 136\n\t\tf 3 23343 -23320 23344\n\t\tmu 0 3 2401 3672 4044\n\t\tf 3 -23343 23345 -23345\n\t\tmu 0 3 4044 3485 2401\n\t\tf 3 23346 -23346 23347\n\t\tmu 0 3 2552 2401 3485\n\t\tf 3 -23340 23348 -23348\n\t\tmu 0 3 3485 3777 2552\n\t\tf 3 -23337 23349 23350\n\t\tmu 0 3 3777 1947 5251\n\t\tf 3 23351 -23349 -23351\n\t\tmu 0 3 5251 2552 3777\n\t\tf 3 -23352 23352 23353\n\t\tmu 0 3 2552 5251 1493\n\t\tf 3 23354 23355 -23354\n\t\tmu 0 3 1493 1125 2552\n\t\tf 3 -23347 -23356 23356\n\t\tmu 0 3 2401 2552 1125\n\t\tf 3 23357 23358 -23357\n\t\tmu 0 3 1125 1086 2401\n\t\tf 3 -23344 -23359 23359\n\t\tmu 0 3 3672 2401 1086\n\t\tf 3 23360 -23317 -23360\n\t\tmu 0 3 1086 5095 3672\n\t\tf 3 -23361 23361 23362\n\t\tmu 0 3 5095 1086 5875\n\t\tf 3 23363 23364 -23363\n\t\tmu 0 3 5875 1468 5095\n\t\tf 3 -23314 -23365 23365\n\t\tmu 0 3 492 5095 1468\n\t\tf 3 23366 -23305 -23366\n\t\tmu 0 3 1468 6508 492\n\t\tf 3 23367 -23362 23368\n\t\tmu 0 3 5303 5875 1086\n\t\tf 3 -23358 23369 -23369\n\t\tmu 0 3 1086 1125 5303\n\t\tf 3 -23355 23370 23371\n\t\tmu 0 3 1125 1493 5073\n\t\tf 3 23372 -23370 -23372\n\t\tmu 0 3 5073 5303 1125\n\t\tf 3 -23373 23373 23374\n\t\tmu 0 3 5303 5073 5630\n\t\tf 3 -22752 23375 -23375\n\t\tmu 0 3 5630 4218 5303\n\t\tf 3 -23368 -23376 23376\n\t\tmu 0 3 5875 5303 4218\n\t\tf 3 -22748 23377 -23377\n\t\tmu 0 3 4218 4619 5875\n\t\tf 3 -23364 -23378 23378\n\t\tmu 0 3 1468 5875 4619\n\t\tf 3 -22744 23379 -23379\n\t\tmu 0 3 4619 3953 1468\n\t\tf 3 -23367 -23380 23380\n\t\tmu 0 3 6508 1468 3953\n\t\tf 3 -22740 -23306 -23381\n\t\tmu 0 3 3953 3951 6508\n\t\tf 3 -23353 23381 -22874\n\t\tmu 0 3 1493 5251 5252\n\t\tf 3 -23382 -23350 -22883\n\t\tmu 0 3 5252 5251 1947\n\t\tf 3 -22859 -23374 23382\n\t\tmu 0 3 882 5630 5073\n\t\tf 3 23383 -22865 -23383\n\t\tmu 0 3 5073 2529 882\n\t\tf 3 -23384 -23371 -22872\n\t\tmu 0 3 2529 5073 1493\n\t\tf 3 -23335 23384 -22885\n\t\tmu 0 3 1947 402 2506\n\t\tf 3 -23385 -23334 -22894\n\t\tmu 0 3 2506 402 5659\n\t\tf 3 -22272 -22975 23385\n\t\tmu 0 3 1787 4762 1211\n\t\tf 3 -22981 23386 -23386\n\t\tmu 0 3 1211 2383 1787\n\t\tf 3 -22953 -22384 23387\n\t\tmu 0 3 6349 6246 3820\n\t\tf 3 -22387 -22490 -23388\n\t\tmu 0 3 3820 306 6349\n\t\tf 3 -22940 -22494 23388\n\t\tmu 0 3 344 307 3716\n\t\tf 3 -22497 -22600 -23389\n\t\tmu 0 3 3716 5277 344\n\t\tf 3 -22927 -22604 23389\n\t\tmu 0 3 1289 2868 5496\n\t\tf 3 -22607 -22710 -23390\n\t\tmu 0 3 5496 291 1289\n\t\tf 3 -22914 -22714 23390\n\t\tmu 0 3 1755 38 170\n\t\tf 3 -22717 -22820 -23391\n\t\tmu 0 3 170 2334 1755\n\t\tf 3 -22810 23391 23392\n\t\tmu 0 3 1834 6364 3557\n\t\tf 3 -22904 -22821 -23393\n\t\tmu 0 3 3557 2475 1834\n\t\tf 3 23393 -22787 -22838\n\t\tmu 0 3 2289 5203 345\n\t\tf 3 -22790 -23394 -22830\n\t\tmu 0 3 5631 5203 2289\n\t\tf 3 23394 -22828 23395\n\t\tmu 0 3 265 2780 3504\n\t\tf 3 -22831 23396 -23396\n\t\tmu 0 3 3504 5045 265\n\t\tf 3 -23395 23397 23398\n\t\tmu 0 3 2780 265 2450\n\t\tf 3 23399 23400 -23399\n\t\tmu 0 3 2450 3983 2780\n\t\tf 3 -23401 23401 -22826\n\t\tmu 0 3 2780 3983 1229\n\t\tf 3 -23402 23402 23403\n\t\tmu 0 3 1229 3983 5595\n\t\tf 3 -22903 -23392 -23404\n\t\tmu 0 3 5595 5156 1229\n\t\tf 3 -23400 23404 23405\n\t\tmu 0 3 3983 2450 5267\n\t\tf 3 -22900 -23403 -23406\n\t\tmu 0 3 5267 4341 3983\n\t\tf 3 23406 23407 23408\n\t\tmu 0 3 134 5042 1274\n\t\tf 3 23409 23410 -23409\n\t\tmu 0 3 1274 5157 134\n\t\tf 3 23411 -23411 23412\n\t\tmu 0 3 676 134 5157\n\t\tf 3 23413 23414 -23413\n\t\tmu 0 3 5157 3249 676\n\t\tf 3 -23415 23415 23416\n\t\tmu 0 3 676 3249 964\n\t\tf 3 -22191 23417 -23417\n\t\tmu 0 3 964 273 676\n\t\tf 3 -23418 -22213 23418\n\t\tmu 0 3 676 273 4001\n\t\tf 3 23419 23420 -23419\n\t\tmu 0 3 4001 5964 676\n\t\tf 3 -23412 -23421 23421\n\t\tmu 0 3 134 676 5964\n\t\tf 3 23422 23423 -23422\n\t\tmu 0 3 5964 5139 134\n\t\tf 3 -23407 -23424 23424\n\t\tmu 0 3 5042 134 5139\n\t\tf 3 23425 23426 -23425\n\t\tmu 0 3 5139 5616 5042\n\t\tf 3 -23426 23427 23428\n\t\tmu 0 3 5616 5139 4961\n\t\tf 3 23429 23430 -23429\n\t\tmu 0 3 4961 4088 5616\n\t\tf 3 23431 -23428 23432\n\t\tmu 0 3 3341 4961 5139\n\t\tf 3 -23423 23433 -23433\n\t\tmu 0 3 5139 5964 3341\n\t\tf 3 -23420 -22217 23434\n\t\tmu 0 3 5964 4001 2354\n\t\tf 3 23435 -23434 -23435\n\t\tmu 0 3 2354 3341 5964\n\t\tf 3 -23436 -22233 23436\n\t\tmu 0 3 3341 2354 4424\n\t\tf 3 23437 23438 -23437\n\t\tmu 0 3 4424 6114 3341\n\t\tf 3 -23432 -23439 23439\n\t\tmu 0 3 4961 3341 6114\n\t\tf 3 23440 23441 -23440\n\t\tmu 0 3 6114 3823 4961\n\t\tf 3 -23430 -23442 23442\n\t\tmu 0 3 4088 4961 3823\n\t\tf 3 23443 23444 -23443\n\t\tmu 0 3 3823 353 4088\n\t\tf 3 -23444 23445 23446\n\t\tmu 0 3 353 3823 244\n\t\tf 3 23447 23448 -23447\n\t\tmu 0 3 244 1516 353\n\t\tf 3 23449 -23446 23450\n\t\tmu 0 3 3404 244 3823\n\t\tf 3 -23441 23451 -23451\n\t\tmu 0 3 3823 6114 3404\n\t\tf 3 -23438 -22237 23452\n\t\tmu 0 3 6114 4424 6481\n\t\tf 3 23453 -23452 -23453\n\t\tmu 0 3 6481 3404 6114\n\t\tf 3 -23454 -22253 23454\n\t\tmu 0 3 3404 6481 5250\n\t\tf 3 23455 23456 -23455\n\t\tmu 0 3 5250 2960 3404\n\t\tf 3 -23450 -23457 23457\n\t\tmu 0 3 244 3404 2960\n\t\tf 3 23458 23459 -23458\n\t\tmu 0 3 2960 548 244\n\t\tf 3 -23448 -23460 23460\n\t\tmu 0 3 1516 244 548\n\t\tf 3 23461 23462 -23461\n\t\tmu 0 3 548 1275 1516\n\t\tf 3 -23462 23463 23464\n\t\tmu 0 3 1275 548 2714\n\t\tf 3 23465 23466 -23465\n\t\tmu 0 3 2714 1026 1275\n\t\tf 3 23467 -23464 23468\n\t\tmu 0 3 622 2714 548\n\t\tf 3 -23459 23469 -23469\n\t\tmu 0 3 548 2960 622\n\t\tf 3 -23456 -22257 23470\n\t\tmu 0 3 2960 5250 4727\n\t\tf 3 23471 -23470 -23471\n\t\tmu 0 3 4727 622 2960\n\t\tf 3 -23472 -22273 23472\n\t\tmu 0 3 622 4727 737\n\t\tf 3 23473 23474 -23473\n\t\tmu 0 3 737 3394 622\n\t\tf 3 -23468 -23475 23475\n\t\tmu 0 3 2714 622 3394\n\t\tf 3 23476 23477 -23476\n\t\tmu 0 3 3394 1059 2714\n\t\tf 3 -23466 -23478 23478\n\t\tmu 0 3 1026 2714 1059\n\t\tf 3 23479 23480 -23479\n\t\tmu 0 3 1059 1208 1026\n\t\tf 3 23481 23482 23483\n\t\tmu 0 3 1117 1518 888\n\t\tf 3 -23480 23484 -23484\n\t\tmu 0 3 888 2872 1117\n\t\tf 3 -23482 23485 23486\n\t\tmu 0 3 1518 1117 2753\n\t\tf 3 23487 -23486 23488\n\t\tmu 0 3 3356 2753 1117\n\t\tf 3 23489 23490 -23489\n\t\tmu 0 3 1117 6386 3356\n\t\tf 3 -23490 -23485 23491\n\t\tmu 0 3 6386 1117 2305\n\t\tf 3 -23477 23492 -23492\n\t\tmu 0 3 2305 4245 6386\n\t\tf 3 23493 -23491 23494\n\t\tmu 0 3 3408 3356 6386\n\t\tf 3 23495 -22984 -23495\n\t\tmu 0 3 6386 3319 3408\n\t\tf 3 23496 23497 -23487\n\t\tmu 0 3 2753 1883 1518\n\t\tf 3 -23497 23498 23499\n\t\tmu 0 3 1883 2753 197\n\t\tf 3 23500 23501 -23500\n\t\tmu 0 3 197 2042 1883\n\t\tf 3 23502 -23499 23503\n\t\tmu 0 3 5039 197 2753\n\t\tf 3 -23488 23504 -23504\n\t\tmu 0 3 2753 3356 5039\n\t\tf 3 -23494 -22988 23505\n\t\tmu 0 3 3356 3408 49\n\t\tf 3 23506 -23505 -23506\n\t\tmu 0 3 49 5039 3356\n\t\tf 3 -23507 -23004 23507\n\t\tmu 0 3 5039 49 4986\n\t\tf 3 23508 23509 -23508\n\t\tmu 0 3 4986 3631 5039\n\t\tf 3 -23503 -23510 23510\n\t\tmu 0 3 197 5039 3631\n\t\tf 3 23511 23512 -23511\n\t\tmu 0 3 3631 5320 197\n\t\tf 3 -23501 -23513 23513\n\t\tmu 0 3 2042 197 5320\n\t\tf 3 23514 23515 -23514\n\t\tmu 0 3 5320 2186 2042\n\t\tf 3 -23515 23516 23517\n\t\tmu 0 3 2186 5320 4962\n\t\tf 3 23518 23519 -23518\n\t\tmu 0 3 4962 1968 2186\n\t\tf 3 23520 -23517 23521\n\t\tmu 0 3 5177 4962 5320\n\t\tf 3 -23512 23522 -23522\n\t\tmu 0 3 5320 3631 5177\n\t\tf 3 -23509 -23008 23523\n\t\tmu 0 3 3631 4986 939\n\t\tf 3 23524 -23523 -23524\n\t\tmu 0 3 939 5177 3631\n\t\tf 3 -23525 -23024 23525\n\t\tmu 0 3 5177 939 2928\n\t\tf 3 23526 23527 -23526\n\t\tmu 0 3 2928 4374 5177\n\t\tf 3 -23521 -23528 23528\n\t\tmu 0 3 4962 5177 4374\n\t\tf 3 23529 23530 -23529\n\t\tmu 0 3 4374 1788 4962\n\t\tf 3 -23519 -23531 23531\n\t\tmu 0 3 1968 4962 1788\n\t\tf 3 23532 23533 -23532\n\t\tmu 0 3 1788 1681 1968\n\t\tf 3 -23533 23534 23535\n\t\tmu 0 3 1681 1788 1874\n\t\tf 3 23536 23537 -23536\n\t\tmu 0 3 1874 1368 1681\n\t\tf 3 23538 -23535 23539\n\t\tmu 0 3 2103 1874 1788\n\t\tf 3 -23530 23540 -23540\n\t\tmu 0 3 1788 4374 2103\n\t\tf 3 -23527 -23028 23541\n\t\tmu 0 3 4374 2928 495\n\t\tf 3 23542 -23541 -23542\n\t\tmu 0 3 495 2103 4374\n\t\tf 3 -23543 -23041 23543\n\t\tmu 0 3 2103 495 964\n\t\tf 3 -23416 23544 -23544\n\t\tmu 0 3 964 3249 2103\n\t\tf 3 -23539 -23545 23545\n\t\tmu 0 3 1874 2103 3249\n\t\tf 3 -23414 23546 -23546\n\t\tmu 0 3 3249 5157 1874\n\t\tf 3 -23537 -23547 23547\n\t\tmu 0 3 1368 1874 5157\n\t\tf 3 -23410 23548 -23548\n\t\tmu 0 3 5157 1274 1368\n\t\tf 3 -23474 -23387 23549\n\t\tmu 0 3 3878 6360 3319\n\t\tf 3 -23496 -23493 -23550\n\t\tmu 0 3 3319 4681 3878\n\t\tf 3 23550 23551 23552\n\t\tmu 0 3 2809 5004 137\n\t\tf 3 23553 23554 -23553\n\t\tmu 0 3 137 998 2809\n\t\tf 3 23555 -23554 23556\n\t\tmu 0 3 1598 998 137\n\t\tf 3 23557 23558 -23557\n\t\tmu 0 3 137 568 1598\n\t\tf 3 23559 -23559 23560\n\t\tmu 0 3 5210 1598 568\n\t\tf 3 23561 23562 -23561\n\t\tmu 0 3 568 3830 5210\n\t\tf 3 -23560 23563 23564\n\t\tmu 0 3 1598 5210 648\n\t\tf 3 23565 23566 -23565\n\t\tmu 0 3 648 5478 1598\n\t\tf 3 -23556 -23567 23567\n\t\tmu 0 3 998 1598 5478\n\t\tf 3 23568 23569 -23568\n\t\tmu 0 3 5478 2290 998\n\t\tf 3 -23555 -23570 23570\n\t\tmu 0 3 2809 998 2290\n\t\tf 3 23571 23572 -23571\n\t\tmu 0 3 2290 4456 2809\n\t\tf 3 -23572 23573 23574\n\t\tmu 0 3 4456 2290 5480\n\t\tf 3 23575 23576 -23575\n\t\tmu 0 3 5480 1449 4456\n\t\tf 3 23577 -23574 23578\n\t\tmu 0 3 1801 5480 2290\n\t\tf 3 -23569 23579 -23579\n\t\tmu 0 3 2290 5478 1801\n\t\tf 3 23580 -23580 23581\n\t\tmu 0 3 2715 1801 5478\n\t\tf 3 -23566 23582 -23582\n\t\tmu 0 3 5478 648 2715\n\t\tf 3 -23581 23583 23584\n\t\tmu 0 3 1801 2715 4501\n\t\tf 3 23585 23586 -23585\n\t\tmu 0 3 4501 171 1801\n\t\tf 3 -23578 -23587 23587\n\t\tmu 0 3 5480 1801 171\n\t\tf 3 23588 23589 -23588\n\t\tmu 0 3 171 6315 5480\n\t\tf 3 -23576 -23590 23590\n\t\tmu 0 3 1449 5480 6315\n\t\tf 3 23591 23592 -23591\n\t\tmu 0 3 6315 2712 1449\n\t\tf 3 -23592 23593 23594\n\t\tmu 0 3 2712 6315 6416\n\t\tf 3 23595 23596 -23595\n\t\tmu 0 3 6416 1562 2712\n\t\tf 3 23597 -23594 23598\n\t\tmu 0 3 2449 6416 6315\n\t\tf 3 -23589 23599 -23599\n\t\tmu 0 3 6315 171 2449\n\t\tf 3 23600 -23600 23601\n\t\tmu 0 3 5960 2449 171\n\t\tf 3 -23586 23602 -23602\n\t\tmu 0 3 171 4501 5960\n\t\tf 3 -23601 23603 23604\n\t\tmu 0 3 2449 5960 1884\n\t\tf 3 23605 23606 -23605\n\t\tmu 0 3 1884 135 2449\n\t\tf 3 -23598 -23607 23607\n\t\tmu 0 3 6416 2449 135\n\t\tf 3 23608 23609 -23608\n\t\tmu 0 3 135 5283 6416\n\t\tf 3 -23596 -23610 23610\n\t\tmu 0 3 1562 6416 5283\n\t\tf 3 23611 23612 -23611\n\t\tmu 0 3 5283 6134 1562\n\t\tf 3 -23612 23613 23614\n\t\tmu 0 3 6134 5283 5321\n\t\tf 3 23615 23616 -23615\n\t\tmu 0 3 5321 2331 6134\n\t\tf 3 23617 -23614 23618\n\t\tmu 0 3 3831 5321 5283\n\t\tf 3 -23609 23619 -23619\n\t\tmu 0 3 5283 135 3831\n\t\tf 3 23620 -23620 23621\n\t\tmu 0 3 4010 3831 135\n\t\tf 3 -23606 23622 -23622\n\t\tmu 0 3 135 1884 4010\n\t\tf 3 -23621 23623 23624\n\t\tmu 0 3 3831 4010 4519\n\t\tf 3 23625 23626 -23625\n\t\tmu 0 3 4519 2043 3831\n\t\tf 3 -23618 -23627 23627\n\t\tmu 0 3 5321 3831 2043\n\t\tf 3 23628 23629 -23628\n\t\tmu 0 3 2043 1240 5321\n\t\tf 3 -23616 -23630 23630\n\t\tmu 0 3 2331 5321 1240\n\t\tf 3 23631 23632 -23631\n\t\tmu 0 3 1240 4989 2331\n\t\tf 3 23633 -23613 23634\n\t\tmu 0 3 5735 1562 6134\n\t\tf 3 -23634 23635 23636\n\t\tmu 0 3 1562 5735 5445\n\t\tf 3 23637 -23636 23638\n\t\tmu 0 3 5204 5445 5735\n\t\tf 3 -23638 23639 23640\n\t\tmu 0 3 5445 5204 5279\n\t\tf 3 23641 23642 -23641\n\t\tmu 0 3 5279 1739 5445\n\t\tf 3 -23642 23643 23644\n\t\tmu 0 3 1739 5279 778\n\t\tf 3 23645 23646 -23645\n\t\tmu 0 3 778 5932 1739\n\t\tf 3 -23646 23647 23648\n\t\tmu 0 3 5932 778 5791\n\t\tf 3 23649 23650 -23649\n\t\tmu 0 3 5791 1682 5932\n\t\tf 3 23651 -23650 23652\n\t\tmu 0 3 3558 1682 5791\n\t\tf 3 23653 23654 -23653\n\t\tmu 0 3 5791 1606 3558\n\t\tf 3 -23652 23655 23656\n\t\tmu 0 3 1682 3558 5004\n\t\tf 3 -23551 23657 -23657\n\t\tmu 0 3 5004 2809 1682\n\t\tf 3 23658 -23651 23659\n\t\tmu 0 3 4456 5932 1682\n\t\tf 3 -23658 -23573 -23660\n\t\tmu 0 3 1682 2809 4456\n\t\tf 3 -23659 -23577 23660\n\t\tmu 0 3 5932 4456 1449\n\t\tf 3 23661 -23647 -23661\n\t\tmu 0 3 1449 1739 5932\n\t\tf 3 23662 -23643 23663\n\t\tmu 0 3 2712 5445 1739;\n\tsetAttr \".fc[12500:12999]\"\n\t\tf 3 -23662 -23593 -23664\n\t\tmu 0 3 1739 1449 2712\n\t\tf 3 23664 23665 -23639\n\t\tmu 0 3 5735 967 5204\n\t\tf 3 -23663 -23597 -23637\n\t\tmu 0 3 5445 2712 1562\n\t\tf 3 -23656 23666 23667\n\t\tmu 0 3 5004 3558 6331\n\t\tf 3 23668 23669 -23668\n\t\tmu 0 3 6331 5253 5004\n\t\tf 3 -23552 -23670 23670\n\t\tmu 0 3 137 5004 5253\n\t\tf 3 23671 23672 -23671\n\t\tmu 0 3 5253 965 137\n\t\tf 3 -23672 23673 23674\n\t\tmu 0 3 965 5253 1820\n\t\tf 3 23675 23676 -23675\n\t\tmu 0 3 1820 668 965\n\t\tf 3 -23676 23677 23678\n\t\tmu 0 3 668 1820 4384\n\t\tf 3 23679 23680 -23679\n\t\tmu 0 3 4384 3239 668\n\t\tf 3 -23680 23681 23682\n\t\tmu 0 3 3239 4384 3743\n\t\tf 3 23683 23684 -23683\n\t\tmu 0 3 3743 6144 3239\n\t\tf 3 -23684 23685 23686\n\t\tmu 0 3 6144 3743 6103\n\t\tf 3 23687 23688 -23687\n\t\tmu 0 3 6103 63 6144\n\t\tf 3 -23688 23689 23690\n\t\tmu 0 3 63 6103 1437\n\t\tf 3 23691 23692 -23691\n\t\tmu 0 3 1437 2104 63\n\t\tf 3 -23692 23693 23694\n\t\tmu 0 3 2104 1437 5431\n\t\tf 3 23695 23696 -23695\n\t\tmu 0 3 5431 2245 2104\n\t\tf 3 -23696 23697 23698\n\t\tmu 0 3 2245 5431 4278\n\t\tf 3 -23632 23699 -23699\n\t\tmu 0 3 4278 4396 2245\n\t\tf 3 23700 -23697 23701\n\t\tmu 0 3 5635 2104 2245\n\t\tf 3 23702 23703 -23702\n\t\tmu 0 3 2245 4156 5635\n\t\tf 3 -23703 -23700 23704\n\t\tmu 0 3 4156 2245 278\n\t\tf 3 -23629 23705 -23705\n\t\tmu 0 3 278 3044 4156\n\t\tf 3 23706 -23706 23707\n\t\tmu 0 3 5998 4156 3044\n\t\tf 3 -23626 23708 -23708\n\t\tmu 0 3 3044 1519 5998\n\t\tf 3 -23707 23709 23710\n\t\tmu 0 3 4156 5998 3717\n\t\tf 3 23711 -23704 -23711\n\t\tmu 0 3 3717 5635 4156\n\t\tf 3 23712 -23693 23713\n\t\tmu 0 3 1179 63 2104\n\t\tf 3 -23701 23714 -23714\n\t\tmu 0 3 2104 5635 1179\n\t\tf 3 23715 -23715 23716\n\t\tmu 0 3 1991 1179 5635\n\t\tf 3 -23712 23717 -23717\n\t\tmu 0 3 5635 3717 1991\n\t\tf 3 -23716 23718 23719\n\t\tmu 0 3 1179 1991 1722\n\t\tf 3 23720 23721 -23720\n\t\tmu 0 3 1722 4060 1179\n\t\tf 3 -23713 -23722 23722\n\t\tmu 0 3 63 1179 4060\n\t\tf 3 23723 -23689 -23723\n\t\tmu 0 3 4060 6144 63\n\t\tf 3 -23724 23724 23725\n\t\tmu 0 3 6144 4060 2929\n\t\tf 3 23726 -23685 -23726\n\t\tmu 0 3 2929 3239 6144\n\t\tf 3 23727 -23725 23728\n\t\tmu 0 3 3530 2929 4060\n\t\tf 3 -23721 23729 -23729\n\t\tmu 0 3 4060 1722 3530\n\t\tf 3 -23728 23730 23731\n\t\tmu 0 3 2929 3530 116\n\t\tf 3 23732 23733 -23732\n\t\tmu 0 3 116 6414 2929\n\t\tf 3 -23727 -23734 23734\n\t\tmu 0 3 3239 2929 6414\n\t\tf 3 23735 -23681 -23735\n\t\tmu 0 3 6414 668 3239\n\t\tf 3 -23736 23736 23737\n\t\tmu 0 3 668 6414 5933\n\t\tf 3 23738 -23677 -23738\n\t\tmu 0 3 5933 965 668\n\t\tf 3 23739 -23737 23740\n\t\tmu 0 3 5894 5933 6414\n\t\tf 3 -23733 23741 -23741\n\t\tmu 0 3 6414 116 5894\n\t\tf 3 -23740 23742 23743\n\t\tmu 0 3 5933 5894 3830\n\t\tf 3 -23562 23744 -23744\n\t\tmu 0 3 3830 568 5933\n\t\tf 3 -23739 -23745 23745\n\t\tmu 0 3 965 5933 568\n\t\tf 3 -23558 -23673 -23746\n\t\tmu 0 3 568 137 965\n\t\tf 3 23746 -23730 23747\n\t\tmu 0 3 4772 3530 1722\n\t\tf 3 23748 23749 -23748\n\t\tmu 0 3 1722 5287 4772\n\t\tf 3 -23749 -23719 23750\n\t\tmu 0 3 5287 1722 1991\n\t\tf 3 23751 23752 -23751\n\t\tmu 0 3 1991 5070 5287\n\t\tf 3 -23752 -23718 23753\n\t\tmu 0 3 5070 1991 3717\n\t\tf 3 23754 23755 -23754\n\t\tmu 0 3 3717 3465 5070\n\t\tf 3 -23755 -23710 23756\n\t\tmu 0 3 3465 3717 5998\n\t\tf 3 23757 23758 -23757\n\t\tmu 0 3 5998 2229 3465\n\t\tf 3 23759 -23759 23760\n\t\tmu 0 3 263 3465 2229\n\t\tf 3 23761 23762 -23761\n\t\tmu 0 3 2229 354 263\n\t\tf 3 23763 -23763 23764\n\t\tmu 0 3 3279 263 354\n\t\tf 3 23765 23766 -23765\n\t\tmu 0 3 354 4680 3279\n\t\tf 3 23767 -23767 23768\n\t\tmu 0 3 5690 3279 4680\n\t\tf 3 23769 23770 -23769\n\t\tmu 0 3 4680 2285 5690\n\t\tf 3 23771 -23771 23772\n\t\tmu 0 3 1683 5690 2285\n\t\tf 3 23773 23774 -23773\n\t\tmu 0 3 2285 4000 1683\n\t\tf 3 23775 -23775 23776\n\t\tmu 0 3 3612 1683 4000\n\t\tf 3 23777 23778 -23777\n\t\tmu 0 3 4000 3 3612\n\t\tf 3 23779 -23779 23780\n\t\tmu 0 3 4754 3612 3\n\t\tf 3 23781 23782 -23781\n\t\tmu 0 3 3 4794 4754\n\t\tf 3 23783 -23783 23784\n\t\tmu 0 3 2652 4754 4794\n\t\tf 3 23785 23786 -23785\n\t\tmu 0 3 4794 4839 2652\n\t\tf 3 -23772 23787 23788\n\t\tmu 0 3 5690 1683 941\n\t\tf 3 23789 23790 -23789\n\t\tmu 0 3 941 1224 5690\n\t\tf 3 -23768 -23791 23791\n\t\tmu 0 3 3279 5690 1224\n\t\tf 3 23792 -23788 23793\n\t\tmu 0 3 3832 941 1683\n\t\tf 3 -23776 23794 -23794\n\t\tmu 0 3 1683 3612 3832\n\t\tf 3 23795 -23795 23796\n\t\tmu 0 3 2069 3832 3612\n\t\tf 3 -23780 23797 -23797\n\t\tmu 0 3 3612 4754 2069\n\t\tf 3 23798 -23798 23799\n\t\tmu 0 3 1969 2069 4754\n\t\tf 3 -23784 23800 -23800\n\t\tmu 0 3 4754 2652 1969\n\t\tf 3 -23799 23801 23802\n\t\tmu 0 3 2069 1969 435\n\t\tf 3 23803 23804 -23803\n\t\tmu 0 3 435 1209 2069\n\t\tf 3 -23796 -23805 23805\n\t\tmu 0 3 3832 2069 1209\n\t\tf 3 23806 23807 -23806\n\t\tmu 0 3 1209 5613 3832\n\t\tf 3 -23793 -23808 23808\n\t\tmu 0 3 941 3832 5613\n\t\tf 3 23809 23810 -23809\n\t\tmu 0 3 5613 4826 941\n\t\tf 3 -23790 -23811 23811\n\t\tmu 0 3 1224 941 4826\n\t\tf 3 23812 23813 -23812\n\t\tmu 0 3 4826 5005 1224\n\t\tf 3 -23813 23814 23815\n\t\tmu 0 3 5005 4826 1863\n\t\tf 3 23816 23817 -23816\n\t\tmu 0 3 1863 3833 5005\n\t\tf 3 23818 -23815 23819\n\t\tmu 0 3 3411 1863 4826\n\t\tf 3 -23810 23820 -23820\n\t\tmu 0 3 4826 5613 3411\n\t\tf 3 23821 -23821 23822\n\t\tmu 0 3 3742 3411 5613\n\t\tf 3 -23807 23823 -23823\n\t\tmu 0 3 5613 1209 3742\n\t\tf 3 23824 -23824 23825\n\t\tmu 0 3 1708 3742 1209\n\t\tf 3 -23804 23826 -23826\n\t\tmu 0 3 1209 435 1708\n\t\tf 3 -23825 23827 23828\n\t\tmu 0 3 3742 1708 2306\n\t\tf 3 23829 23830 -23829\n\t\tmu 0 3 2306 6231 3742\n\t\tf 3 -23822 -23831 23831\n\t\tmu 0 3 3411 3742 6231\n\t\tf 3 23832 23833 -23832\n\t\tmu 0 3 6231 1304 3411\n\t\tf 3 -23819 -23834 23834\n\t\tmu 0 3 1863 3411 1304\n\t\tf 3 23835 23836 -23835\n\t\tmu 0 3 1304 4525 1863\n\t\tf 3 -23817 -23837 23837\n\t\tmu 0 3 3833 1863 4525\n\t\tf 3 23838 23839 -23838\n\t\tmu 0 3 4525 3327 3833\n\t\tf 3 -23839 23840 23841\n\t\tmu 0 3 3327 4525 4579\n\t\tf 3 23842 23843 -23842\n\t\tmu 0 3 4579 79 3327\n\t\tf 3 23844 -23841 23845\n\t\tmu 0 3 2983 4579 4525\n\t\tf 3 -23836 23846 -23846\n\t\tmu 0 3 4525 1304 2983\n\t\tf 3 23847 -23847 23848\n\t\tmu 0 3 3160 2983 1304\n\t\tf 3 -23833 23849 -23849\n\t\tmu 0 3 1304 6231 3160\n\t\tf 3 23850 -23850 23851\n\t\tmu 0 3 4701 3160 6231\n\t\tf 3 -23830 23852 -23852\n\t\tmu 0 3 6231 2306 4701\n\t\tf 3 -23851 23853 23854\n\t\tmu 0 3 3160 4701 5322\n\t\tf 3 23855 23856 -23855\n\t\tmu 0 3 5322 6118 3160\n\t\tf 3 -23848 -23857 23857\n\t\tmu 0 3 2983 3160 6118\n\t\tf 3 -23856 23858 23859\n\t\tmu 0 3 6118 5322 1027\n\t\tf 3 23860 23861 -23860\n\t\tmu 0 3 1027 4959 6118\n\t\tf 3 23862 -23862 23863\n\t\tmu 0 3 64 6118 4959\n\t\tf 3 -23863 23864 -23858\n\t\tmu 0 3 6118 64 2983\n\t\tf 3 -23845 -23865 23865\n\t\tmu 0 3 4579 2983 64\n\t\tf 3 23866 23867 -23864\n\t\tmu 0 3 4959 649 64\n\t\tf 3 23868 -23868 23869\n\t\tmu 0 3 421 64 649\n\t\tf 3 -23869 23870 -23866\n\t\tmu 0 3 64 421 4579\n\t\tf 3 -23843 -23871 23871\n\t\tmu 0 3 79 4579 421\n\t\tf 3 23872 23873 -23870\n\t\tmu 0 3 649 3021 421\n\t\tf 3 23874 -23874 23875\n\t\tmu 0 3 6433 421 3021\n\t\tf 3 -23875 23876 -23872\n\t\tmu 0 3 421 6433 79\n\t\tf 3 23877 23878 -23876\n\t\tmu 0 3 3021 5617 6433\n\t\tf 3 -23861 23879 23880\n\t\tmu 0 3 4959 1027 3910\n\t\tf 3 23881 23882 -23881\n\t\tmu 0 3 3910 3515 4959\n\t\tf 3 -23867 -23883 23883\n\t\tmu 0 3 649 4959 3515\n\t\tf 3 23884 23885 -23884\n\t\tmu 0 3 3515 4180 649\n\t\tf 3 -23873 -23886 23886\n\t\tmu 0 3 3021 649 4180\n\t\tf 3 23887 23888 -23887\n\t\tmu 0 3 4180 4486 3021\n\t\tf 3 -23878 -23889 23889\n\t\tmu 0 3 5617 3021 4486\n\t\tf 3 23890 23891 -23890\n\t\tmu 0 3 4486 2969 5617\n\t\tf 3 -23891 23892 23893\n\t\tmu 0 3 2969 4486 4279\n\t\tf 3 23894 23895 -23894\n\t\tmu 0 3 4279 3323 2969\n\t\tf 3 23896 -23893 23897\n\t\tmu 0 3 2953 4279 4486\n\t\tf 3 -23888 23898 -23898\n\t\tmu 0 3 4486 4180 2953\n\t\tf 3 23899 -23899 23900\n\t\tmu 0 3 1909 2953 4180\n\t\tf 3 -23885 23901 -23901\n\t\tmu 0 3 4180 3515 1909\n\t\tf 3 23902 -23902 23903\n\t\tmu 0 3 3357 1909 3515\n\t\tf 3 -23882 23904 -23904\n\t\tmu 0 3 3515 3910 3357\n\t\tf 3 -23903 23905 23906\n\t\tmu 0 3 1909 3357 2597\n\t\tf 3 23907 23908 -23907\n\t\tmu 0 3 2597 5890 1909\n\t\tf 3 -23900 -23909 23909\n\t\tmu 0 3 2953 1909 5890\n\t\tf 3 23910 23911 -23910\n\t\tmu 0 3 5890 3084 2953\n\t\tf 3 -23897 -23912 23912\n\t\tmu 0 3 4279 2953 3084\n\t\tf 3 23913 23914 -23913\n\t\tmu 0 3 3084 4639 4279\n\t\tf 3 -23895 -23915 23915\n\t\tmu 0 3 3323 4279 4639\n\t\tf 3 23916 23917 -23916\n\t\tmu 0 3 4639 328 3323\n\t\tf 3 -23917 23918 23919\n\t\tmu 0 3 328 4639 6282\n\t\tf 3 23920 23921 -23920\n\t\tmu 0 3 6282 3048 328\n\t\tf 3 23922 -23919 23923\n\t\tmu 0 3 5660 6282 4639\n\t\tf 3 -23914 23924 -23924\n\t\tmu 0 3 4639 3084 5660\n\t\tf 3 23925 -23925 23926\n\t\tmu 0 3 326 5660 3084\n\t\tf 3 -23911 23927 -23927\n\t\tmu 0 3 3084 5890 326\n\t\tf 3 23928 -23928 23929\n\t\tmu 0 3 1118 326 5890\n\t\tf 3 -23908 23930 -23930\n\t\tmu 0 3 5890 2597 1118\n\t\tf 3 -23929 23931 23932\n\t\tmu 0 3 326 1118 1480\n\t\tf 3 23933 23934 -23933\n\t\tmu 0 3 1480 4427 326\n\t\tf 3 -23926 -23935 23935\n\t\tmu 0 3 5660 326 4427\n\t\tf 3 23936 23937 -23936\n\t\tmu 0 3 4427 229 5660\n\t\tf 3 -23923 -23938 23938\n\t\tmu 0 3 6282 5660 229\n\t\tf 3 23939 23940 -23939\n\t\tmu 0 3 229 322 6282\n\t\tf 3 -23921 -23941 23941\n\t\tmu 0 3 3048 6282 322\n\t\tf 3 23942 23943 -23942\n\t\tmu 0 3 322 1124 3048\n\t\tf 3 -23943 23944 23945\n\t\tmu 0 3 1124 322 6260\n\t\tf 3 23946 23947 -23946\n\t\tmu 0 3 6260 245 1124\n\t\tf 3 23948 -23945 23949\n\t\tmu 0 3 4843 6260 322\n\t\tf 3 -23940 23950 -23950\n\t\tmu 0 3 322 229 4843\n\t\tf 3 23951 -23951 23952\n\t\tmu 0 3 274 4843 229\n\t\tf 3 -23937 23953 -23953\n\t\tmu 0 3 229 4427 274\n\t\tf 3 23954 -23954 23955\n\t\tmu 0 3 6261 274 4427\n\t\tf 3 -23934 23956 -23956\n\t\tmu 0 3 4427 1480 6261\n\t\tf 3 -23955 23957 23958\n\t\tmu 0 3 274 6261 1631\n\t\tf 3 23959 23960 -23959\n\t\tmu 0 3 1631 5066 274\n\t\tf 3 -23952 -23961 23961\n\t\tmu 0 3 4843 274 5066\n\t\tf 3 23962 23963 -23962\n\t\tmu 0 3 5066 1593 4843\n\t\tf 3 -23949 -23964 23964\n\t\tmu 0 3 6260 4843 1593\n\t\tf 3 23965 23966 -23965\n\t\tmu 0 3 1593 3510 6260\n\t\tf 3 -23947 -23967 23967\n\t\tmu 0 3 245 6260 3510\n\t\tf 3 23968 23969 -23968\n\t\tmu 0 3 3510 3320 245\n\t\tf 3 -23969 23970 23971\n\t\tmu 0 3 3320 3510 3361\n\t\tf 3 -23774 23972 -23972\n\t\tmu 0 3 3361 3375 3320\n\t\tf 3 -23778 -23971 23973\n\t\tmu 0 3 5234 3361 3510\n\t\tf 3 -23966 23974 -23974\n\t\tmu 0 3 3510 1593 5234\n\t\tf 3 -23963 23975 23976\n\t\tmu 0 3 1593 5066 5766\n\t\tf 3 -23782 -23975 -23977\n\t\tmu 0 3 5766 813 1593\n\t\tf 3 -23960 23977 23978\n\t\tmu 0 3 5066 1631 6284\n\t\tf 3 -23786 -23976 -23979\n\t\tmu 0 3 6284 4108 5066\n\t\tf 3 23979 -23958 23980\n\t\tmu 0 3 1054 1631 6261\n\t\tf 3 23981 23982 -23981\n\t\tmu 0 3 6261 4235 1054\n\t\tf 3 -23982 -23957 23983\n\t\tmu 0 3 4235 6261 1480\n\t\tf 3 23984 23985 -23984\n\t\tmu 0 3 1480 2105 4235\n\t\tf 3 -23985 -23932 23986\n\t\tmu 0 3 2105 1480 1118\n\t\tf 3 23987 23988 -23987\n\t\tmu 0 3 1118 1886 2105\n\t\tf 3 -23988 -23931 23989\n\t\tmu 0 3 1886 1118 2597\n\t\tf 3 23990 23991 -23990\n\t\tmu 0 3 2597 2852 1886\n\t\tf 3 -23991 -23906 23992\n\t\tmu 0 3 2852 2597 3357\n\t\tf 3 23993 23994 -23993\n\t\tmu 0 3 3357 2827 2852\n\t\tf 3 -23994 -23905 23995\n\t\tmu 0 3 2827 3357 3910\n\t\tf 3 23996 23997 -23996\n\t\tmu 0 3 3910 5946 2827\n\t\tf 3 -23997 -23880 23998\n\t\tmu 0 3 5946 3910 1027\n\t\tf 3 23999 24000 -23999\n\t\tmu 0 3 1027 1112 5946\n\t\tf 3 -24000 -23859 24001\n\t\tmu 0 3 1112 1027 5322\n\t\tf 3 24002 24003 -24002\n\t\tmu 0 3 5322 3202 1112\n\t\tf 3 24004 -24004 24005\n\t\tmu 0 3 1234 1112 3202\n\t\tf 3 24006 24007 -24006\n\t\tmu 0 3 3202 2627 1234\n\t\tf 3 24008 -24008 24009\n\t\tmu 0 3 3405 1234 2627\n\t\tf 3 24010 24011 -24010\n\t\tmu 0 3 2627 5870 3405\n\t\tf 3 24012 -24012 24013\n\t\tmu 0 3 3856 3405 5870\n\t\tf 3 24014 24015 -24014\n\t\tmu 0 3 5870 2425 3856\n\t\tf 3 -24013 24016 24017\n\t\tmu 0 3 3405 3856 220\n\t\tf 3 24018 24019 -24018\n\t\tmu 0 3 220 3022 3405\n\t\tf 3 -24009 -24020 24020\n\t\tmu 0 3 1234 3405 3022\n\t\tf 3 24021 24022 -24021\n\t\tmu 0 3 3022 1740 1234\n\t\tf 3 -24005 -24023 24023\n\t\tmu 0 3 1112 1234 1740\n\t\tf 3 24024 -24001 -24024\n\t\tmu 0 3 1740 5946 1112\n\t\tf 3 24025 -23998 24026\n\t\tmu 0 3 5551 2827 5946\n\t\tf 3 -24025 24027 -24027\n\t\tmu 0 3 5946 1740 5551\n\t\tf 3 24028 -24028 24029\n\t\tmu 0 3 3145 5551 1740\n\t\tf 3 24030 24031 -24030\n\t\tmu 0 3 1740 25102 3145\n\t\tf 3 24032 -24032 24033\n\t\tmu 0 3 6115 3145 25103\n\t\tf 3 24034 24035 -24034\n\t\tmu 0 3 25104 220 6115\n\t\tf 3 -24033 24036 24037\n\t\tmu 0 3 3145 6115 5191\n\t\tf 3 24038 24039 -24038\n\t\tmu 0 3 5191 6211 3145\n\t\tf 3 -24029 -24040 24040\n\t\tmu 0 3 5551 3145 6211\n\t\tf 3 24041 24042 -24041\n\t\tmu 0 3 6211 62 5551\n\t\tf 3 -24026 -24043 24043\n\t\tmu 0 3 2827 5551 62\n\t\tf 3 24044 -23995 -24044\n\t\tmu 0 3 62 2852 2827\n\t\tf 3 -24045 24045 24046\n\t\tmu 0 3 2852 62 4457\n\t\tf 3 24047 -23992 -24047\n\t\tmu 0 3 4457 1886 2852\n\t\tf 3 24048 -24046 24049\n\t\tmu 0 3 575 4457 62\n\t\tf 3 -24042 24050 -24050\n\t\tmu 0 3 62 6211 575\n\t\tf 3 24051 -24051 24052\n\t\tmu 0 3 3937 575 6211\n\t\tf 3 -24039 24053 -24053\n\t\tmu 0 3 6211 5191 3937\n\t\tf 3 -24052 24054 24055\n\t\tmu 0 3 575 3937 5211\n\t\tf 3 24056 24057 -24056\n\t\tmu 0 3 5211 5417 575\n\t\tf 3 -24049 -24058 24058\n\t\tmu 0 3 4457 575 5417\n\t\tf 3 24059 24060 -24059\n\t\tmu 0 3 5417 36 4457\n\t\tf 3 -24048 -24061 24061\n\t\tmu 0 3 1886 4457 36\n\t\tf 3 24062 -23989 -24062\n\t\tmu 0 3 36 2105 1886\n\t\tf 3 -24063 24063 24064\n\t\tmu 0 3 2105 36 2961\n\t\tf 3 24065 -23986 -24065\n\t\tmu 0 3 2961 4235 2105\n\t\tf 3 24066 -24064 24067\n\t\tmu 0 3 4 2961 36\n\t\tf 3 -24060 24068 -24068\n\t\tmu 0 3 36 5417 4\n\t\tf 3 24069 -24069 24070\n\t\tmu 0 3 2155 4 5417\n\t\tf 3 -24057 24071 -24071\n\t\tmu 0 3 5417 5211 2155\n\t\tf 3 -24070 24072 24073\n\t\tmu 0 3 4 2155 5288\n\t\tf 3 24074 24075 -24074\n\t\tmu 0 3 5288 6247 4\n\t\tf 3 -24067 -24076 24076\n\t\tmu 0 3 2961 4 6247\n\t\tf 3 24077 24078 -24077\n\t\tmu 0 3 6247 6486 2961\n\t\tf 3 -24066 -24079 24079\n\t\tmu 0 3 4235 2961 6486\n\t\tf 3 24080 -23983 -24080\n\t\tmu 0 3 6486 1054 4235\n\t\tf 3 -24081 24081 24082\n\t\tmu 0 3 1054 6486 3613\n\t\tf 3 24083 24084 -24083\n\t\tmu 0 3 3613 4202 1054\n\t\tf 3 -24078 24085 24086\n\t\tmu 0 3 6486 6247 1566\n\t\tf 3 24087 -24082 -24087\n\t\tmu 0 3 1566 3358 6486\n\t\tf 3 -24075 24088 24089\n\t\tmu 0 3 6247 5288 1475\n\t\tf 3 24090 -24086 -24090\n\t\tmu 0 3 1475 3849 6247\n\t\tf 3 24091 -24073 24092\n\t\tmu 0 3 3297 5288 2155\n\t\tf 3 24093 24094 -24093\n\t\tmu 0 3 2155 2967 3297\n\t\tf 3 -24094 -24072 24095\n\t\tmu 0 3 2967 2155 5211\n\t\tf 3 24096 24097 -24096\n\t\tmu 0 3 5211 4664 2967\n\t\tf 3 -24097 -24055 24098\n\t\tmu 0 3 4664 5211 3937\n\t\tf 3 24099 24100 -24099\n\t\tmu 0 3 3937 4160 4664\n\t\tf 3 -24100 -24054 24101\n\t\tmu 0 3 4160 3937 5191\n\t\tf 3 24102 24103 -24102\n\t\tmu 0 3 5191 3325 4160\n\t\tf 3 -24103 -24037 24104\n\t\tmu 0 3 3325 5191 6115\n\t\tf 3 24105 24106 -24105\n\t\tmu 0 3 6115 2036 3325\n\t\tf 3 -24106 -24036 24107\n\t\tmu 0 3 2036 6115 220\n\t\tf 3 24108 24109 -24108\n\t\tmu 0 3 220 2400 2036\n\t\tf 3 -24109 -24017 24110\n\t\tmu 0 3 2400 220 3856\n\t\tf 3 24111 24112 -24111\n\t\tmu 0 3 3856 2762 2400\n\t\tf 3 -24112 -24016 24113\n\t\tmu 0 3 2762 3856 2425\n\t\tf 3 24114 24115 -24114\n\t\tmu 0 3 2425 4117 2762\n\t\tf 3 24116 -24116 24117\n\t\tmu 0 3 3425 2762 4117\n\t\tf 3 24118 24119 -24118\n\t\tmu 0 3 4117 5412 3425\n\t\tf 3 24120 -24120 24121\n\t\tmu 0 3 6001 3425 5412\n\t\tf 3 24122 24123 -24122\n\t\tmu 0 3 5412 5256 6001\n\t\tf 3 24124 -24124 24125\n\t\tmu 0 3 1376 6001 5256\n\t\tf 3 24126 24127 -24126\n\t\tmu 0 3 5256 815 1376\n\t\tf 3 -24125 24128 24129\n\t\tmu 0 3 6001 1376 4183\n\t\tf 3 24130 24131 -24130\n\t\tmu 0 3 4183 6492 6001\n\t\tf 3 -24121 -24132 24132\n\t\tmu 0 3 3425 6001 6492\n\t\tf 3 24133 24134 -24133\n\t\tmu 0 3 6492 3782 3425\n\t\tf 3 -24117 -24135 24135\n\t\tmu 0 3 2762 3425 3782\n\t\tf 3 24136 -24113 -24136\n\t\tmu 0 3 3782 2400 2762\n\t\tf 3 24137 -24110 24138\n\t\tmu 0 3 2156 2036 2400\n\t\tf 3 -24137 24139 -24139\n\t\tmu 0 3 2400 3782 2156\n\t\tf 3 24140 -24140 24141\n\t\tmu 0 3 2266 2156 3782\n\t\tf 3 -24134 24142 -24142\n\t\tmu 0 3 3782 6492 2266\n\t\tf 3 24143 -24143 24144\n\t\tmu 0 3 4158 2266 6492\n\t\tf 3 -24131 24145 -24145\n\t\tmu 0 3 6492 4183 4158\n\t\tf 3 -24144 24146 24147\n\t\tmu 0 3 2266 4158 3545\n\t\tf 3 24148 24149 -24148\n\t\tmu 0 3 3545 1351 2266\n\t\tf 3 -24141 -24150 24150\n\t\tmu 0 3 2156 2266 1351\n\t\tf 3 24151 24152 -24151\n\t\tmu 0 3 1351 1632 2156\n\t\tf 3 -24138 -24153 24153\n\t\tmu 0 3 2036 2156 1632\n\t\tf 3 24154 -24107 -24154\n\t\tmu 0 3 1632 3325 2036\n\t\tf 3 -24155 24155 24156\n\t\tmu 0 3 3325 1632 96\n\t\tf 3 24157 -24104 -24157\n\t\tmu 0 3 96 4160 3325\n\t\tf 3 24158 -24156 24159\n\t\tmu 0 3 6090 96 1632\n\t\tf 3 -24152 24160 -24160\n\t\tmu 0 3 1632 1351 6090\n\t\tf 3 24161 -24161 24162\n\t\tmu 0 3 1485 6090 1351\n\t\tf 3 -24149 24163 -24163\n\t\tmu 0 3 1351 3545 1485\n\t\tf 3 -24162 24164 24165\n\t\tmu 0 3 6090 1485 2964\n\t\tf 3 24166 24167 -24166\n\t\tmu 0 3 2964 694 6090\n\t\tf 3 -24159 -24168 24168\n\t\tmu 0 3 96 6090 694\n\t\tf 3 24169 24170 -24169\n\t\tmu 0 3 694 5071 96\n\t\tf 3 -24158 -24171 24171\n\t\tmu 0 3 4160 96 5071\n\t\tf 3 24172 -24101 -24172\n\t\tmu 0 3 5071 4664 4160\n\t\tf 3 -24173 24173 24174\n\t\tmu 0 3 4664 5071 6116\n\t\tf 3 24175 -24098 -24175\n\t\tmu 0 3 6116 2967 4664\n\t\tf 3 24176 -24174 24177\n\t\tmu 0 3 2429 6116 5071\n\t\tf 3 -24170 24178 -24178\n\t\tmu 0 3 5071 694 2429\n\t\tf 3 24179 -24179 24180\n\t\tmu 0 3 549 2429 694\n\t\tf 3 -24167 24181 -24181\n\t\tmu 0 3 694 2964 549\n\t\tf 3 -24180 24182 24183\n\t\tmu 0 3 2429 549 3649\n\t\tf 3 24184 24185 -24184\n\t\tmu 0 3 3649 5532 2429\n\t\tf 3 -24177 -24186 24186\n\t\tmu 0 3 6116 2429 5532\n\t\tf 3 24187 24188 -24187\n\t\tmu 0 3 5532 2599 6116\n\t\tf 3 -24176 -24189 24189\n\t\tmu 0 3 2967 6116 2599\n\t\tf 3 24190 -24095 -24190\n\t\tmu 0 3 2599 3297 2967\n\t\tf 3 -24191 24191 24192\n\t\tmu 0 3 3297 2599 1910\n\t\tf 3 24193 24194 -24193\n\t\tmu 0 3 1910 740 3297\n\t\tf 3 -24188 24195 24196\n\t\tmu 0 3 2599 5532 2351\n\t\tf 3 24197 -24192 -24197\n\t\tmu 0 3 2351 2384 2599\n\t\tf 3 -24185 24198 24199\n\t\tmu 0 3 5532 3649 3340\n\t\tf 3 24200 -24196 -24200\n\t\tmu 0 3 3340 1892 5532\n\t\tf 3 24201 -24183 24202\n\t\tmu 0 3 4198 3649 549\n\t\tf 3 24203 24204 -24203\n\t\tmu 0 3 549 2348 4198\n\t\tf 3 -24204 -24182 24205\n\t\tmu 0 3 2348 549 2964\n\t\tf 3 24206 24207 -24206\n\t\tmu 0 3 2964 5963 2348\n\t\tf 3 -24207 -24165 24208\n\t\tmu 0 3 5963 2964 1485\n\t\tf 3 24209 24210 -24209\n\t\tmu 0 3 1485 2526 5963\n\t\tf 3 -24210 -24164 24211\n\t\tmu 0 3 2526 1485 3545\n\t\tf 3 24212 24213 -24212\n\t\tmu 0 3 3545 4368 2526\n\t\tf 3 -24213 -24147 24214\n\t\tmu 0 3 4368 3545 4158\n\t\tf 3 24215 24216 -24215\n\t\tmu 0 3 4158 5354 4368\n\t\tf 3 -24216 -24146 24217\n\t\tmu 0 3 5354 4158 4183\n\t\tf 3 24218 24219 -24218\n\t\tmu 0 3 4183 6381 5354\n\t\tf 3 -24219 -24129 24220\n\t\tmu 0 3 6381 4183 1376\n\t\tf 3 24221 24222 -24221\n\t\tmu 0 3 1376 5892 6381\n\t\tf 3 -24222 -24128 24223\n\t\tmu 0 3 5892 1376 815\n\t\tf 3 24224 24225 -24224\n\t\tmu 0 3 815 457 5892\n\t\tf 3 24226 -24226 24227\n\t\tmu 0 3 5247 5892 457\n\t\tf 3 24228 24229 -24228\n\t\tmu 0 3 457 383 5247\n\t\tf 3 24230 -24230 24231\n\t\tmu 0 3 1440 5247 383\n\t\tf 3 24232 24233 -24232\n\t\tmu 0 3 383 857 1440\n\t\tf 3 24234 -24234 24235\n\t\tmu 0 3 5621 1440 857\n\t\tf 3 24236 24237 -24236\n\t\tmu 0 3 857 3919 5621\n\t\tf 3 -24235 24238 24239\n\t\tmu 0 3 1440 5621 2794\n\t\tf 3 24240 24241 -24240\n\t\tmu 0 3 2794 934 1440\n\t\tf 3 -24231 -24242 24242\n\t\tmu 0 3 5247 1440 934\n\t\tf 3 24243 24244 -24243\n\t\tmu 0 3 934 1623 5247\n\t\tf 3 -24227 -24245 24245\n\t\tmu 0 3 5892 5247 1623\n\t\tf 3 24246 -24223 -24246\n\t\tmu 0 3 1623 6381 5892\n\t\tf 3 24247 -24220 24248\n\t\tmu 0 3 2326 5354 6381\n\t\tf 3 -24247 24249 -24249\n\t\tmu 0 3 6381 1623 2326\n\t\tf 3 24250 -24250 24251\n\t\tmu 0 3 2555 2326 1623\n\t\tf 3 -24244 24252 -24252\n\t\tmu 0 3 1623 934 2555\n\t\tf 3 24253 -24253 24254\n\t\tmu 0 3 311 2555 934\n\t\tf 3 -24241 24255 -24255\n\t\tmu 0 3 934 2794 311\n\t\tf 3 -24254 24256 24257\n\t\tmu 0 3 2555 311 1288\n\t\tf 3 24258 24259 -24258\n\t\tmu 0 3 1288 3573 2555\n\t\tf 3 -24251 -24260 24260\n\t\tmu 0 3 2326 2555 3573\n\t\tf 3 24261 24262 -24261\n\t\tmu 0 3 3573 3075 2326\n\t\tf 3 -24248 -24263 24263\n\t\tmu 0 3 5354 2326 3075\n\t\tf 3 24264 -24217 -24264\n\t\tmu 0 3 3075 4368 5354\n\t\tf 3 -24265 24265 24266\n\t\tmu 0 3 4368 3075 1876\n\t\tf 3 24267 -24214 -24267\n\t\tmu 0 3 1876 2526 4368\n\t\tf 3 24268 -24266 24269\n\t\tmu 0 3 4830 1876 3075\n\t\tf 3 -24262 24270 -24270\n\t\tmu 0 3 3075 3573 4830\n\t\tf 3 24271 -24271 24272\n\t\tmu 0 3 2406 4830 3573\n\t\tf 3 -24259 24273 -24273\n\t\tmu 0 3 3573 1288 2406\n\t\tf 3 -24272 24274 24275\n\t\tmu 0 3 4830 2406 4382\n\t\tf 3 24276 24277 -24276\n\t\tmu 0 3 4382 1364 4830\n\t\tf 3 -24269 -24278 24278\n\t\tmu 0 3 1876 4830 1364\n\t\tf 3 24279 24280 -24279\n\t\tmu 0 3 1364 4956 1876\n\t\tf 3 -24268 -24281 24281\n\t\tmu 0 3 2526 1876 4956\n\t\tf 3 24282 -24211 -24282\n\t\tmu 0 3 4956 5963 2526\n\t\tf 3 -24283 24283 24284\n\t\tmu 0 3 5963 4956 1904\n\t\tf 3 24285 -24208 -24285\n\t\tmu 0 3 1904 2348 5963\n\t\tf 3 24286 -24284 24287\n\t\tmu 0 3 5515 1904 4956\n\t\tf 3 -24280 24288 -24288\n\t\tmu 0 3 4956 1364 5515\n\t\tf 3 24289 -24289 24290\n\t\tmu 0 3 742 5515 1364\n\t\tf 3 -24277 24291 -24291\n\t\tmu 0 3 1364 4382 742\n\t\tf 3 -24290 24292 24293\n\t\tmu 0 3 5515 742 4251\n\t\tf 3 24294 24295 -24294\n\t\tmu 0 3 4251 3685 5515\n\t\tf 3 -24287 -24296 24296\n\t\tmu 0 3 1904 5515 3685\n\t\tf 3 24297 24298 -24297\n\t\tmu 0 3 3685 93 1904\n\t\tf 3 -24286 -24299 24299\n\t\tmu 0 3 2348 1904 93\n\t\tf 3 24300 -24205 -24300\n\t\tmu 0 3 93 4198 2348\n\t\tf 3 -24301 24301 24302\n\t\tmu 0 3 4198 93 1545\n\t\tf 3 24303 24304 -24303\n\t\tmu 0 3 1545 4920 4198\n\t\tf 3 -24298 24305 24306\n\t\tmu 0 3 93 3685 6201\n\t\tf 3 24307 -24302 -24307\n\t\tmu 0 3 6201 531 93\n\t\tf 3 -24295 24308 24309\n\t\tmu 0 3 3685 4251 2122\n\t\tf 3 24310 -24306 -24310\n\t\tmu 0 3 2122 1911 3685\n\t\tf 3 24311 -24293 24312\n\t\tmu 0 3 2504 4251 742\n\t\tf 3 24313 24314 -24313\n\t\tmu 0 3 742 6019 2504\n\t\tf 3 -24314 -24292 24315\n\t\tmu 0 3 6019 742 4382\n\t\tf 3 24316 24317 -24316\n\t\tmu 0 3 4382 5006 6019\n\t\tf 3 -24317 -24275 24318\n\t\tmu 0 3 5006 4382 2406\n\t\tf 3 24319 24320 -24319\n\t\tmu 0 3 2406 154 5006\n\t\tf 3 -24320 -24274 24321\n\t\tmu 0 3 154 2406 1288\n\t\tf 3 24322 24323 -24322\n\t\tmu 0 3 1288 4990 154\n\t\tf 3 -24323 -24257 24324\n\t\tmu 0 3 4990 1288 311\n\t\tf 3 24325 24326 -24325\n\t\tmu 0 3 311 5519 4990\n\t\tf 3 -24326 -24256 24327\n\t\tmu 0 3 5519 311 2794\n\t\tf 3 24328 24329 -24328\n\t\tmu 0 3 2794 436 5519\n\t\tf 3 -24329 -24239 24330\n\t\tmu 0 3 436 2794 5621\n\t\tf 3 24331 24332 -24331\n\t\tmu 0 3 5621 3376 436\n\t\tf 3 -24332 -24238 24333\n\t\tmu 0 3 3376 5621 3919\n\t\tf 3 24334 24335 -24334\n\t\tmu 0 3 3919 2187 3376\n\t\tf 3 24336 -24336 24337\n\t\tmu 0 3 1912 3376 2187\n\t\tf 3 24338 24339 -24338\n\t\tmu 0 3 2187 6117 1912\n\t\tf 3 24340 -24340 24341\n\t\tmu 0 3 1509 1912 6117\n\t\tf 3 24342 24343 -24342\n\t\tmu 0 3 6117 94 1509\n\t\tf 3 24344 -24344 24345\n\t\tmu 0 3 222 1509 94\n\t\tf 3 24346 24347 -24346\n\t\tmu 0 3 94 5903 222\n\t\tf 3 -24345 24348 24349\n\t\tmu 0 3 1509 222 223\n\t\tf 3 24350 24351 -24350\n\t\tmu 0 3 223 1877 1509\n\t\tf 3 -24341 -24352 24352\n\t\tmu 0 3 1912 1509 1877\n\t\tf 3 24353 24354 -24353\n\t\tmu 0 3 1877 4840 1912\n\t\tf 3 -24337 -24355 24355\n\t\tmu 0 3 3376 1912 4840\n\t\tf 3 24356 -24333 -24356\n\t\tmu 0 3 4840 436 3376\n\t\tf 3 24357 -24330 24358\n\t\tmu 0 3 2426 5519 436\n\t\tf 3 -24357 24359 -24359\n\t\tmu 0 3 436 4840 2426\n\t\tf 3 24360 -24360 24361\n\t\tmu 0 3 2035 2426 4840\n\t\tf 3 -24354 24362 -24362\n\t\tmu 0 3 4840 1877 2035\n\t\tf 3 -24351 24363 24364\n\t\tmu 0 3 1877 223 971\n\t\tf 3 24365 -24363 -24365\n\t\tmu 0 3 971 2035 1877\n\t\tf 3 -24366 24366 24367\n\t\tmu 0 3 2035 971 5904\n\t\tf 3 24368 24369 -24368\n\t\tmu 0 3 5904 2684 2035\n\t\tf 3 -24361 -24370 24370\n\t\tmu 0 3 2426 2035 2684\n\t\tf 3 24371 24372 -24371\n\t\tmu 0 3 2684 3466 2426\n\t\tf 3 -24358 -24373 24373\n\t\tmu 0 3 5519 2426 3466\n\t\tf 3 24374 -24327 -24374\n\t\tmu 0 3 3466 4990 5519\n\t\tf 3 -24375 24375 24376\n\t\tmu 0 3 4990 3466 1970\n\t\tf 3 24377 -24324 -24377\n\t\tmu 0 3 1970 154 4990\n\t\tf 3 24378 -24376 24379\n\t\tmu 0 3 1624 1970 3466\n\t\tf 3 -24372 24380 -24380\n\t\tmu 0 3 3466 2684 1624\n\t\tf 3 -24369 24381 24382\n\t\tmu 0 3 2684 5904 4281\n\t\tf 3 24383 -24381 -24383\n\t\tmu 0 3 4281 1624 2684\n\t\tf 3 -24384 24384 24385\n\t\tmu 0 3 1624 4281 5172\n\t\tf 3 24386 24387 -24386\n\t\tmu 0 3 5172 1052 1624\n\t\tf 3 -24379 -24388 24388\n\t\tmu 0 3 1970 1624 1052\n\t\tf 3 24389 24390 -24389\n\t\tmu 0 3 1052 569 1970\n\t\tf 3 -24378 -24391 24391\n\t\tmu 0 3 154 1970 569\n\t\tf 3 24392 -24321 -24392\n\t\tmu 0 3 569 5006 154\n\t\tf 3 -24393 24393 24394\n\t\tmu 0 3 5006 569 5413\n\t\tf 3 24395 -24318 -24395\n\t\tmu 0 3 5413 6019 5006\n\t\tf 3 24396 -24394 24397\n\t\tmu 0 3 2180 5413 569\n\t\tf 3 -24390 24398 -24398\n\t\tmu 0 3 569 1052 2180\n\t\tf 3 -24387 24399 24400\n\t\tmu 0 3 1052 5172 1857\n\t\tf 3 24401 -24399 -24401\n\t\tmu 0 3 1857 2180 1052\n\t\tf 3 -24402 24402 24403\n\t\tmu 0 3 2180 1857 1858\n\t\tf 3 24404 24405 -24404\n\t\tmu 0 3 1858 384 2180\n\t\tf 3 -24397 -24406 24406\n\t\tmu 0 3 5413 2180 384\n\t\tf 3 24407 24408 -24407\n\t\tmu 0 3 384 2307 5413\n\t\tf 3 -24396 -24409 24409\n\t\tmu 0 3 6019 5413 2307\n\t\tf 3 24410 -24315 -24410\n\t\tmu 0 3 2307 2504 6019\n\t\tf 3 -24411 24411 24412\n\t\tmu 0 3 2504 2307 76\n\t\tf 3 24413 24414 -24413\n\t\tmu 0 3 76 5743 2504\n\t\tf 3 -24408 24415 24416\n\t\tmu 0 3 2307 384 814\n\t\tf 3 24417 -24412 -24417\n\t\tmu 0 3 814 5387 2307\n\t\tf 3 24418 -24400 24419\n\t\tmu 0 3 3488 1857 5172\n\t\tf 3 -24403 -24419 24420\n\t\tmu 0 3 1858 1857 3488\n\t\tf 3 24421 24422 -24420\n\t\tmu 0 3 5172 224 3488\n\t\tf 3 24423 -24422 24424\n\t\tmu 0 3 2628 224 5172\n\t\tf 3 24425 -24424 24426\n\t\tmu 0 3 1239 224 2628\n\t\tf 3 24427 24428 -24427\n\t\tmu 0 3 2628 1241 1239\n\t\tf 3 -24428 24429 24430\n\t\tmu 0 3 1241 2628 972\n\t\tf 3 24431 -24430 24432\n\t\tmu 0 3 5904 972 2628\n\t\tf 3 24433 -24432 24434\n\t\tmu 0 3 5905 972 5904\n\t\tf 3 24435 -24434 24436\n\t\tmu 0 3 1242 972 5905\n\t\tf 3 -24436 24437 -24431\n\t\tmu 0 3 972 1242 1241\n\t\tf 3 24438 24439 -24437\n\t\tmu 0 3 5905 1243 1242\n\t\tf 3 -24439 24440 24441\n\t\tmu 0 3 1243 5905 5173\n\t\tf 3 24442 -24441 24443\n\t\tmu 0 3 223 5173 5905\n\t\tf 3 24444 -24443 24445\n\t\tmu 0 3 5174 5173 223\n\t\tf 3 24446 -24445 24447\n\t\tmu 0 3 1247 5173 5174\n\t\tf 3 -24447 24448 -24442\n\t\tmu 0 3 5173 1247 1243\n\t\tf 3 24449 24450 -24448\n\t\tmu 0 3 5174 1442 1247\n\t\tf 3 -24450 24451 24452\n\t\tmu 0 3 1442 5174 973\n\t\tf 3 24453 -24452 24454\n\t\tmu 0 3 5903 973 5174\n\t\tf 3 24455 -24348 -24455\n\t\tmu 0 3 5174 222 5903\n\t\tf 3 -24349 -24456 -24446\n\t\tmu 0 3 223 222 5174\n\t\tf 3 24456 24457 -24453\n\t\tmu 0 3 973 3824 1442\n\t\tf 3 24458 -24364 -24444\n\t\tmu 0 3 5905 971 223\n\t\tf 3 -24367 -24459 -24435\n\t\tmu 0 3 5904 971 5905\n\t\tf 3 -24457 24459 24460\n\t\tmu 0 3 3824 973 1859;\n\tsetAttr \".fc[13000:13499]\"\n\t\tf 3 24461 24462 -24461\n\t\tmu 0 3 1859 4732 3824\n\t\tf 3 -24462 24463 24464\n\t\tmu 0 3 4732 1859 3489\n\t\tf 3 24465 -24464 24466\n\t\tmu 0 3 1860 3489 1859\n\t\tf 3 24467 -24466 24468\n\t\tmu 0 3 974 3489 1860\n\t\tf 3 24469 -24468 24470\n\t\tmu 0 3 6350 3489 974\n\t\tf 3 -24470 24471 -24465\n\t\tmu 0 3 3489 6350 4732\n\t\tf 3 24472 24473 -24471\n\t\tmu 0 3 974 3825 6350\n\t\tf 3 -24473 24474 24475\n\t\tmu 0 3 3825 974 5175\n\t\tf 3 24476 -24475 24477\n\t\tmu 0 3 225 5175 974\n\t\tf 3 24478 -24477 24479\n\t\tmu 0 3 2629 5175 225\n\t\tf 3 24480 -24479 24481\n\t\tmu 0 3 1444 5175 2629\n\t\tf 3 -24481 24482 -24476\n\t\tmu 0 3 5175 1444 3825\n\t\tf 3 24483 24484 -24482\n\t\tmu 0 3 2629 5474 1444\n\t\tf 3 -24484 24485 24486\n\t\tmu 0 3 5474 2629 5906\n\t\tf 3 24487 -24486 24488\n\t\tmu 0 3 975 5906 2629\n\t\tf 3 24489 -24488 24490\n\t\tmu 0 3 5176 5906 975\n\t\tf 3 24491 -24490 24492\n\t\tmu 0 3 2181 5906 5176\n\t\tf 3 -24492 24493 -24487\n\t\tmu 0 3 5906 2181 5474\n\t\tf 3 24494 24495 -24493\n\t\tmu 0 3 5176 1445 2181\n\t\tf 3 24496 24497 -24491\n\t\tmu 0 3 975 226 5176\n\t\tf 3 24498 -24497 24499\n\t\tmu 0 3 992 226 975\n\t\tf 3 24500 24501 -24500\n\t\tmu 0 3 975 2618 992\n\t\tf 3 -24418 -24502 24502\n\t\tmu 0 3 3911 992 2618\n\t\tf 3 24503 24504 -24503\n\t\tmu 0 3 2618 1885 3911\n\t\tf 3 -24414 -24505 24505\n\t\tmu 0 3 1276 3911 1885\n\t\tf 3 24506 24507 -24506\n\t\tmu 0 3 1885 6173 1276\n\t\tf 3 24508 -24508 24509\n\t\tmu 0 3 1975 1276 6173\n\t\tf 3 24510 24511 -24510\n\t\tmu 0 3 6173 6264 1975\n\t\tf 3 -24311 -24512 24512\n\t\tmu 0 3 196 1975 6264\n\t\tf 3 24513 24514 -24513\n\t\tmu 0 3 6264 3299 196\n\t\tf 3 -24308 -24515 24515\n\t\tmu 0 3 670 196 3299\n\t\tf 3 24516 24517 -24516\n\t\tmu 0 3 3299 3012 670\n\t\tf 3 -24304 -24518 24518\n\t\tmu 0 3 561 670 3012\n\t\tf 3 24519 24520 -24519\n\t\tmu 0 3 3012 4788 561\n\t\tf 3 24521 -24521 24522\n\t\tmu 0 3 5111 561 4788\n\t\tf 3 24523 24524 -24523\n\t\tmu 0 3 4788 4921 5111\n\t\tf 3 -24201 -24525 24525\n\t\tmu 0 3 655 5111 4921\n\t\tf 3 24526 24527 -24526\n\t\tmu 0 3 4921 2936 655\n\t\tf 3 -24198 -24528 24528\n\t\tmu 0 3 4674 655 2936\n\t\tf 3 24529 24530 -24529\n\t\tmu 0 3 2936 2814 4674\n\t\tf 3 -24194 -24531 24531\n\t\tmu 0 3 6412 4674 2814\n\t\tf 3 24532 24533 -24532\n\t\tmu 0 3 2814 739 6412\n\t\tf 3 24534 -24534 24535\n\t\tmu 0 3 966 6412 739\n\t\tf 3 24536 24537 -24536\n\t\tmu 0 3 739 203 966\n\t\tf 3 -24091 -24538 24538\n\t\tmu 0 3 5093 966 203\n\t\tf 3 24539 24540 -24539\n\t\tmu 0 3 203 4333 5093\n\t\tf 3 -24088 -24541 24541\n\t\tmu 0 3 788 5093 4333\n\t\tf 3 24542 24543 -24542\n\t\tmu 0 3 4333 5043 788\n\t\tf 3 -24084 -24544 24544\n\t\tmu 0 3 767 788 5043\n\t\tf 3 24545 24546 -24545\n\t\tmu 0 3 5043 3298 767\n\t\tf 3 24547 -24547 24548\n\t\tmu 0 3 4839 767 3298\n\t\tf 3 24549 -23787 -24549\n\t\tmu 0 3 3298 2652 4839\n\t\tf 3 -24550 24550 24551\n\t\tmu 0 3 2652 3298 3666\n\t\tf 3 24552 -23801 -24552\n\t\tmu 0 3 3666 1969 2652\n\t\tf 3 24553 -24551 24554\n\t\tmu 0 3 3614 3666 3298\n\t\tf 3 24555 24556 -24555\n\t\tmu 0 3 3298 25105 3614\n\t\tf 3 24557 -24557 24558\n\t\tmu 0 3 3837 3614 25106\n\t\tf 3 24559 24560 -24559\n\t\tmu 0 3 25107 25108 3837\n\t\tf 3 24561 -24561 24562\n\t\tmu 0 3 4878 3837 25109\n\t\tf 3 24563 24564 -24563\n\t\tmu 0 3 25110 203 4878\n\t\tf 3 -24562 24565 24566\n\t\tmu 0 3 3837 4878 4526\n\t\tf 3 24567 24568 -24567\n\t\tmu 0 3 4526 159 3837\n\t\tf 3 -24558 -24569 24569\n\t\tmu 0 3 3614 3837 159\n\t\tf 3 24570 24571 -24570\n\t\tmu 0 3 159 590 3614\n\t\tf 3 -24554 -24572 24572\n\t\tmu 0 3 3666 3614 590\n\t\tf 3 24573 24574 -24573\n\t\tmu 0 3 590 3960 3666\n\t\tf 3 -24553 -24575 24575\n\t\tmu 0 3 1969 3666 3960\n\t\tf 3 24576 -23802 -24576\n\t\tmu 0 3 3960 435 1969\n\t\tf 3 -24577 24577 24578\n\t\tmu 0 3 435 3960 3467\n\t\tf 3 24579 -23827 -24579\n\t\tmu 0 3 3467 1708 435\n\t\tf 3 24580 -24578 24581\n\t\tmu 0 3 3107 3467 3960\n\t\tf 3 -24574 24582 -24582\n\t\tmu 0 3 3960 590 3107\n\t\tf 3 24583 -24583 24584\n\t\tmu 0 3 5485 3107 590\n\t\tf 3 -24571 24585 -24585\n\t\tmu 0 3 590 159 5485\n\t\tf 3 24586 -24586 24587\n\t\tmu 0 3 5357 5485 159\n\t\tf 3 -24568 24588 -24588\n\t\tmu 0 3 159 4526 5357\n\t\tf 3 -24587 24589 24590\n\t\tmu 0 3 5485 5357 6079\n\t\tf 3 24591 24592 -24591\n\t\tmu 0 3 6079 2949 5485\n\t\tf 3 -24584 -24593 24593\n\t\tmu 0 3 3107 5485 2949\n\t\tf 3 24594 24595 -24594\n\t\tmu 0 3 2949 5578 3107\n\t\tf 3 -24581 24596 24597\n\t\tmu 0 3 3467 3107 25111\n\t\tf 3 24598 24599 -24598\n\t\tmu 0 3 25112 1270 3467\n\t\tf 3 -24580 -24600 24600\n\t\tmu 0 3 1708 3467 1270\n\t\tf 3 24601 -23828 -24601\n\t\tmu 0 3 1270 2306 1708\n\t\tf 3 -24602 24602 24603\n\t\tmu 0 3 2306 1270 4497\n\t\tf 3 24604 -23853 -24604\n\t\tmu 0 3 4497 4701 2306\n\t\tf 3 24605 -24603 24606\n\t\tmu 0 3 3023 4497 1270\n\t\tf 3 -24599 24607 -24607\n\t\tmu 0 3 1270 25113 3023\n\t\tf 3 24608 24609 24610\n\t\tmu 0 3 4503 3023 5578\n\t\tf 3 -24595 24611 -24611\n\t\tmu 0 3 5578 2949 4503\n\t\tf 3 24612 -24612 24613\n\t\tmu 0 3 2119 4503 2949\n\t\tf 3 -24592 24614 -24614\n\t\tmu 0 3 2949 6079 2119\n\t\tf 3 -24613 24615 24616\n\t\tmu 0 3 4503 2119 2425\n\t\tf 3 -24015 24617 -24617\n\t\tmu 0 3 2425 5870 4503\n\t\tf 3 -24609 -24618 24618\n\t\tmu 0 3 3023 4503 5870\n\t\tf 3 -24011 24619 -24619\n\t\tmu 0 3 5870 2627 3023\n\t\tf 3 -24606 -24620 24620\n\t\tmu 0 3 4497 3023 2627\n\t\tf 3 -24007 24621 -24621\n\t\tmu 0 3 2627 3202 4497\n\t\tf 3 -24605 -24622 24622\n\t\tmu 0 3 4701 4497 3202\n\t\tf 3 -24003 -23854 -24623\n\t\tmu 0 3 3202 5322 4701\n\t\tf 3 24623 -24590 24624\n\t\tmu 0 3 543 6079 5357\n\t\tf 3 24625 24626 -24625\n\t\tmu 0 3 5357 4197 543\n\t\tf 3 -24626 -24589 24627\n\t\tmu 0 3 4197 5357 4526\n\t\tf 3 24628 24629 -24628\n\t\tmu 0 3 4526 5591 4197\n\t\tf 3 -24629 -24566 24630\n\t\tmu 0 3 5591 4526 4878\n\t\tf 3 24631 24632 -24631\n\t\tmu 0 3 4878 1667 5591\n\t\tf 3 -24632 -24565 24633\n\t\tmu 0 3 1667 4878 203\n\t\tf 3 -24537 24634 -24634\n\t\tmu 0 3 203 739 1667\n\t\tf 3 24635 -24635 24636\n\t\tmu 0 3 810 1667 739\n\t\tf 3 -24533 24637 -24637\n\t\tmu 0 3 739 2814 810\n\t\tf 3 24638 -24638 24639\n\t\tmu 0 3 371 810 2814\n\t\tf 3 -24530 24640 -24640\n\t\tmu 0 3 2814 2936 371\n\t\tf 3 24641 -24641 24642\n\t\tmu 0 3 2209 371 2936\n\t\tf 3 -24527 24643 -24643\n\t\tmu 0 3 2936 4921 2209\n\t\tf 3 -24642 24644 24645\n\t\tmu 0 3 371 2209 1976\n\t\tf 3 24646 24647 -24646\n\t\tmu 0 3 1976 117 371\n\t\tf 3 -24639 -24648 24648\n\t\tmu 0 3 810 371 117\n\t\tf 3 24649 24650 -24649\n\t\tmu 0 3 117 3982 810\n\t\tf 3 -24636 -24651 24651\n\t\tmu 0 3 1667 810 3982\n\t\tf 3 24652 -24633 -24652\n\t\tmu 0 3 3982 5591 1667\n\t\tf 3 24653 -24630 24654\n\t\tmu 0 3 5790 4197 5591\n\t\tf 3 -24653 24655 -24655\n\t\tmu 0 3 5591 3982 5790\n\t\tf 3 24656 -24656 24657\n\t\tmu 0 3 5597 5790 3982\n\t\tf 3 -24650 24658 -24658\n\t\tmu 0 3 3982 117 5597\n\t\tf 3 24659 -24659 24660\n\t\tmu 0 3 3731 5597 117\n\t\tf 3 -24647 24661 -24661\n\t\tmu 0 3 117 1976 3731\n\t\tf 3 -24660 24662 24663\n\t\tmu 0 3 5597 3731 4500\n\t\tf 3 24664 24665 -24664\n\t\tmu 0 3 4500 6429 5597\n\t\tf 3 -24657 -24666 24666\n\t\tmu 0 3 5790 5597 6429\n\t\tf 3 24667 24668 -24667\n\t\tmu 0 3 6429 3468 5790\n\t\tf 3 -24654 -24669 24669\n\t\tmu 0 3 4197 5790 3468\n\t\tf 3 24670 -24627 -24670\n\t\tmu 0 3 3468 543 4197\n\t\tf 3 -24671 24671 24672\n\t\tmu 0 3 543 3468 5708\n\t\tf 3 24673 24674 -24673\n\t\tmu 0 3 5708 608 543\n\t\tf 3 -24624 -24675 24675\n\t\tmu 0 3 6079 543 608\n\t\tf 3 24676 -24615 -24676\n\t\tmu 0 3 608 2119 6079\n\t\tf 3 24677 -24672 24678\n\t\tmu 0 3 2386 5708 3468\n\t\tf 3 -24668 24679 -24679\n\t\tmu 0 3 3468 6429 2386\n\t\tf 3 24680 -24680 24681\n\t\tmu 0 3 250 2386 6429\n\t\tf 3 -24665 24682 -24682\n\t\tmu 0 3 6429 4500 250\n\t\tf 3 -24681 24683 24684\n\t\tmu 0 3 2386 250 815\n\t\tf 3 -24127 24685 -24685\n\t\tmu 0 3 815 5256 2386\n\t\tf 3 -24678 -24686 24686\n\t\tmu 0 3 5708 2386 5256\n\t\tf 3 -24123 24687 -24687\n\t\tmu 0 3 5256 5412 5708\n\t\tf 3 -24674 -24688 24688\n\t\tmu 0 3 608 5708 5412\n\t\tf 3 -24119 24689 -24689\n\t\tmu 0 3 5412 4117 608\n\t\tf 3 -24677 -24690 24690\n\t\tmu 0 3 2119 608 4117\n\t\tf 3 -24115 -24616 -24691\n\t\tmu 0 3 4117 2425 2119\n\t\tf 3 24691 -24663 24692\n\t\tmu 0 3 5124 4500 3731\n\t\tf 3 24693 24694 -24693\n\t\tmu 0 3 3731 830 5124\n\t\tf 3 -24694 -24662 24695\n\t\tmu 0 3 830 3731 1976\n\t\tf 3 24696 24697 -24696\n\t\tmu 0 3 1976 5334 830\n\t\tf 3 -24697 -24645 24698\n\t\tmu 0 3 5334 1976 2209\n\t\tf 3 24699 24700 -24699\n\t\tmu 0 3 2209 3422 5334\n\t\tf 3 -24700 -24644 24701\n\t\tmu 0 3 3422 2209 4921\n\t\tf 3 -24524 24702 -24702\n\t\tmu 0 3 4921 4788 3422\n\t\tf 3 24703 -24703 24704\n\t\tmu 0 3 993 3422 4788\n\t\tf 3 -24520 24705 -24705\n\t\tmu 0 3 4788 3012 993\n\t\tf 3 24706 -24706 24707\n\t\tmu 0 3 3905 993 3012\n\t\tf 3 -24517 24708 -24708\n\t\tmu 0 3 3012 3299 3905\n\t\tf 3 24709 -24709 24710\n\t\tmu 0 3 1723 3905 3299\n\t\tf 3 -24514 24711 -24711\n\t\tmu 0 3 3299 6264 1723\n\t\tf 3 -24710 24712 24713\n\t\tmu 0 3 3905 1723 5112\n\t\tf 3 24714 24715 -24714\n\t\tmu 0 3 5112 2019 3905\n\t\tf 3 -24707 -24716 24716\n\t\tmu 0 3 993 3905 2019\n\t\tf 3 24717 24718 -24717\n\t\tmu 0 3 2019 5785 993\n\t\tf 3 -24704 -24719 24719\n\t\tmu 0 3 3422 993 5785\n\t\tf 3 24720 -24701 -24720\n\t\tmu 0 3 5785 5334 3422\n\t\tf 3 24721 -24698 24722\n\t\tmu 0 3 3324 830 5334\n\t\tf 3 -24721 24723 -24723\n\t\tmu 0 3 5334 5785 3324\n\t\tf 3 24724 -24724 24725\n\t\tmu 0 3 475 3324 5785\n\t\tf 3 -24718 24726 -24726\n\t\tmu 0 3 5785 2019 475\n\t\tf 3 24727 -24727 24728\n\t\tmu 0 3 1034 475 2019\n\t\tf 3 -24715 24729 -24729\n\t\tmu 0 3 2019 5112 1034\n\t\tf 3 -24728 24730 24731\n\t\tmu 0 3 475 1034 3469\n\t\tf 3 24732 24733 -24732\n\t\tmu 0 3 3469 2896 475\n\t\tf 3 -24725 -24734 24734\n\t\tmu 0 3 3324 475 2896\n\t\tf 3 24735 24736 -24735\n\t\tmu 0 3 2896 5728 3324\n\t\tf 3 -24722 -24737 24737\n\t\tmu 0 3 830 3324 5728\n\t\tf 3 24738 -24695 -24738\n\t\tmu 0 3 5728 5124 830\n\t\tf 3 -24739 24739 24740\n\t\tmu 0 3 5124 5728 3483\n\t\tf 3 24741 24742 -24741\n\t\tmu 0 3 3483 1077 5124\n\t\tf 3 -24692 -24743 24743\n\t\tmu 0 3 4500 5124 1077\n\t\tf 3 24744 -24683 -24744\n\t\tmu 0 3 1077 250 4500\n\t\tf 3 24745 -24740 24746\n\t\tmu 0 3 293 3483 5728\n\t\tf 3 -24736 24747 -24747\n\t\tmu 0 3 5728 2896 293\n\t\tf 3 24748 -24748 24749\n\t\tmu 0 3 794 293 2896\n\t\tf 3 -24733 24750 -24750\n\t\tmu 0 3 2896 3469 794\n\t\tf 3 -24749 24751 24752\n\t\tmu 0 3 293 794 3919\n\t\tf 3 -24237 24753 -24753\n\t\tmu 0 3 3919 857 293\n\t\tf 3 -24746 -24754 24754\n\t\tmu 0 3 3483 293 857\n\t\tf 3 -24233 24755 -24755\n\t\tmu 0 3 857 383 3483\n\t\tf 3 -24742 -24756 24756\n\t\tmu 0 3 1077 3483 383\n\t\tf 3 -24229 24757 -24757\n\t\tmu 0 3 383 457 1077\n\t\tf 3 -24745 -24758 24758\n\t\tmu 0 3 250 1077 457\n\t\tf 3 -24225 -24684 -24759\n\t\tmu 0 3 457 815 250\n\t\tf 3 24759 -24731 24760\n\t\tmu 0 3 3409 3469 1034\n\t\tf 3 24761 24762 -24761\n\t\tmu 0 3 1034 5873 3409\n\t\tf 3 -24762 -24730 24763\n\t\tmu 0 3 5873 1034 5112\n\t\tf 3 24764 24765 -24764\n\t\tmu 0 3 5112 3912 5873\n\t\tf 3 -24765 -24713 24766\n\t\tmu 0 3 3912 5112 1723\n\t\tf 3 24767 24768 -24767\n\t\tmu 0 3 1723 889 3912\n\t\tf 3 -24768 -24712 24769\n\t\tmu 0 3 889 1723 6264\n\t\tf 3 -24511 24770 -24770\n\t\tmu 0 3 6264 6173 889\n\t\tf 3 24771 -24771 24772\n\t\tmu 0 3 1119 889 6173\n\t\tf 3 -24507 24773 -24773\n\t\tmu 0 3 6173 1885 1119\n\t\tf 3 24774 -24774 24775\n\t\tmu 0 3 671 1119 1885\n\t\tf 3 -24504 24776 -24776\n\t\tmu 0 3 1885 2618 671\n\t\tf 3 24777 -24777 24778\n\t\tmu 0 3 4282 671 2618\n\t\tf 3 -24501 24779 -24779\n\t\tmu 0 3 2618 975 4282\n\t\tf 3 -24778 24780 24781\n\t\tmu 0 3 671 4282 225\n\t\tf 3 24782 24783 -24782\n\t\tmu 0 3 225 2060 671\n\t\tf 3 -24775 -24784 24784\n\t\tmu 0 3 1119 671 2060\n\t\tf 3 24785 24786 -24785\n\t\tmu 0 3 2060 1277 1119\n\t\tf 3 -24772 -24787 24787\n\t\tmu 0 3 889 1119 1277\n\t\tf 3 24788 -24769 -24788\n\t\tmu 0 3 1277 3912 889\n\t\tf 3 24789 -24766 24790\n\t\tmu 0 3 2385 5873 3912\n\t\tf 3 -24789 24791 -24791\n\t\tmu 0 3 3912 1277 2385\n\t\tf 3 24792 -24792 24793\n\t\tmu 0 3 433 2385 1277\n\t\tf 3 -24786 24794 -24794\n\t\tmu 0 3 1277 2060 433\n\t\tf 3 -24783 24795 24796\n\t\tmu 0 3 2060 225 5907\n\t\tf 3 24797 -24795 -24797\n\t\tmu 0 3 5907 433 2060\n\t\tf 3 -24798 24798 24799\n\t\tmu 0 3 433 5907 1860\n\t\tf 3 24800 24801 -24800\n\t\tmu 0 3 1860 6104 433\n\t\tf 3 -24793 -24802 24802\n\t\tmu 0 3 2385 433 6104\n\t\tf 3 24803 24804 -24803\n\t\tmu 0 3 6104 1634 2385\n\t\tf 3 -24790 -24805 24805\n\t\tmu 0 3 5873 2385 1634\n\t\tf 3 24806 -24763 -24806\n\t\tmu 0 3 1634 3409 5873\n\t\tf 3 -24807 24807 24808\n\t\tmu 0 3 3409 1634 5447\n\t\tf 3 24809 24810 -24809\n\t\tmu 0 3 5447 5636 3409\n\t\tf 3 -24760 -24811 24811\n\t\tmu 0 3 3469 3409 5636\n\t\tf 3 24812 -24751 -24812\n\t\tmu 0 3 5636 794 3469\n\t\tf 3 24813 -24808 24814\n\t\tmu 0 3 3778 5447 1634\n\t\tf 3 -24804 24815 -24815\n\t\tmu 0 3 1634 6104 3778\n\t\tf 3 -24801 24816 24817\n\t\tmu 0 3 6104 1860 3490\n\t\tf 3 24818 -24816 -24818\n\t\tmu 0 3 3490 3778 6104\n\t\tf 3 -24819 24819 24820\n\t\tmu 0 3 3778 3490 5903\n\t\tf 3 -24347 24821 -24821\n\t\tmu 0 3 5903 94 3778\n\t\tf 3 -24814 -24822 24822\n\t\tmu 0 3 5447 3778 94\n\t\tf 3 -24343 24823 -24823\n\t\tmu 0 3 94 6117 5447\n\t\tf 3 -24810 -24824 24824\n\t\tmu 0 3 5636 5447 6117\n\t\tf 3 -24339 24825 -24825\n\t\tmu 0 3 6117 2187 5636\n\t\tf 3 -24813 -24826 24826\n\t\tmu 0 3 794 5636 2187\n\t\tf 3 -24335 -24752 -24827\n\t\tmu 0 3 2187 3919 794\n\t\tf 3 -24799 24827 -24469\n\t\tmu 0 3 1860 5907 974\n\t\tf 3 -24828 -24796 -24478\n\t\tmu 0 3 974 5907 225\n\t\tf 3 -24454 -24820 24828\n\t\tmu 0 3 973 5903 3490\n\t\tf 3 24829 -24460 -24829\n\t\tmu 0 3 3490 1859 973\n\t\tf 3 -24830 -24817 -24467\n\t\tmu 0 3 1859 3490 1860\n\t\tf 3 -24781 24830 -24480\n\t\tmu 0 3 225 4282 2629\n\t\tf 3 -24831 -24780 -24489\n\t\tmu 0 3 2629 4282 975\n\t\tf 3 -24548 -23978 24831\n\t\tmu 0 3 862 2481 1631\n\t\tf 3 -23980 -24085 -24832\n\t\tmu 0 3 1631 1054 862\n\t\tf 3 -24535 -24089 24832\n\t\tmu 0 3 148 1802 5288\n\t\tf 3 -24092 -24195 -24833\n\t\tmu 0 3 5288 3297 148\n\t\tf 3 -24522 -24199 24833\n\t\tmu 0 3 5205 308 3649\n\t\tf 3 -24202 -24305 -24834\n\t\tmu 0 3 3649 4198 5205\n\t\tf 3 -24509 -24309 24834\n\t\tmu 0 3 443 3648 4251\n\t\tf 3 -24312 -24415 -24835\n\t\tmu 0 3 4251 2504 443\n\t\tf 3 -24405 24835 24836\n\t\tmu 0 3 384 1278 6524\n\t\tf 3 -24499 -24416 -24837\n\t\tmu 0 3 6524 444 384\n\t\tf 3 24837 -24382 -24433\n\t\tmu 0 3 2628 4281 5904\n\t\tf 3 -24385 -24838 -24425\n\t\tmu 0 3 5172 4281 2628\n\t\tf 3 24838 -24423 24839\n\t\tmu 0 3 6351 3488 224\n\t\tf 3 -24426 24840 -24840\n\t\tmu 0 3 224 1239 6351\n\t\tf 3 -24839 24841 24842\n\t\tmu 0 3 3488 6351 6352\n\t\tf 3 24843 24844 -24843\n\t\tmu 0 3 6352 3491 3488\n\t\tf 3 -24845 24845 -24421\n\t\tmu 0 3 3488 3491 1858\n\t\tf 3 -24846 24846 24847\n\t\tmu 0 3 1858 3491 653\n\t\tf 3 -24498 -24836 -24848\n\t\tmu 0 3 653 3765 1858\n\t\tf 3 -24844 24848 24849\n\t\tmu 0 3 3491 6352 1804\n\t\tf 3 -24495 -24847 -24850\n\t\tmu 0 3 1804 129 3491\n\t\tf 3 24850 24851 -23635\n\t\tmu 0 3 6134 3440 5735\n\t\tf 3 -23665 -24852 24852\n\t\tmu 0 3 967 5735 3440\n\t\tf 3 24853 24854 -24853\n\t\tmu 0 3 3440 2986 967\n\t\tf 3 -24854 24855 24856\n\t\tmu 0 3 2986 3440 3049\n\t\tf 3 24857 24858 -24857\n\t\tmu 0 3 3049 1145 2986\n\t\tf 3 -24851 -23617 24859\n\t\tmu 0 3 3440 6134 2331\n\t\tf 3 24860 -24856 -24860\n\t\tmu 0 3 2331 3049 3440\n\t\tf 3 -24861 -23633 24861\n\t\tmu 0 3 3049 2331 4989\n\t\tf 3 24862 24863 -24862\n\t\tmu 0 3 4989 1963 3049\n\t\tf 3 -24858 -24864 24864\n\t\tmu 0 3 1145 3049 1963\n\t\tf 3 24865 24866 -24865\n\t\tmu 0 3 1963 6254 1145\n\t\tf 3 -24866 24867 24868\n\t\tmu 0 3 709 1267 4331\n\t\tf 3 24869 24870 -24869\n\t\tmu 0 3 4331 1719 709\n\t\tf 3 -24870 24871 24872\n\t\tmu 0 3 1719 4331 5414\n\t\tf 3 24873 -24872 24874\n\t\tmu 0 3 1437 5414 4331\n\t\tf 3 24875 -23694 -24875\n\t\tmu 0 3 4331 5431 1437\n\t\tf 3 -24876 -24868 24876\n\t\tmu 0 3 5431 4331 4584\n\t\tf 3 -24863 -23698 -24877\n\t\tmu 0 3 4584 2849 5431\n\t\tf 3 24877 24878 -24873\n\t\tmu 0 3 5414 4973 1719\n\t\tf 3 -24878 24879 24880\n\t\tmu 0 3 4973 5414 175\n\t\tf 3 24881 24882 -24881\n\t\tmu 0 3 175 2602 4973\n\t\tf 3 -24874 -23690 24883\n\t\tmu 0 3 5414 1437 6103\n\t\tf 3 24884 -24880 -24884\n\t\tmu 0 3 6103 175 5414\n\t\tf 3 -24885 -23686 24885\n\t\tmu 0 3 175 6103 3743\n\t\tf 3 24886 24887 -24886\n\t\tmu 0 3 3743 6052 175\n\t\tf 3 -24882 -24888 24888\n\t\tmu 0 3 2602 175 6052\n\t\tf 3 24889 24890 -24889\n\t\tmu 0 3 6052 3014 2602\n\t\tf 3 -24890 24891 24892\n\t\tmu 0 3 3014 6052 1369\n\t\tf 3 24893 24894 -24893\n\t\tmu 0 3 1369 962 3014\n\t\tf 3 -24887 -23682 24895\n\t\tmu 0 3 6052 3743 4384\n\t\tf 3 24896 -24892 -24896\n\t\tmu 0 3 4384 1369 6052\n\t\tf 3 -24897 -23678 24897\n\t\tmu 0 3 1369 4384 1820\n\t\tf 3 24898 24899 -24898\n\t\tmu 0 3 1820 2930 1369\n\t\tf 3 -24894 -24900 24900\n\t\tmu 0 3 962 1369 2930\n\t\tf 3 24901 24902 -24901\n\t\tmu 0 3 2930 2955 962\n\t\tf 3 -24902 24903 24904\n\t\tmu 0 3 2955 2930 6331\n\t\tf 3 24905 24906 -24905\n\t\tmu 0 3 6331 2864 2955\n\t\tf 3 -24899 -23674 24907\n\t\tmu 0 3 2930 1820 5253\n\t\tf 3 -23669 -24904 -24908\n\t\tmu 0 3 5253 6331 2930\n\t\tf 3 -24906 -23667 24908\n\t\tmu 0 3 2864 6331 3558\n\t\tf 3 -23655 24909 -24909\n\t\tmu 0 3 3558 1606 2864\n\t\tf 3 24910 -23563 24911\n\t\tmu 0 3 4841 5210 3830\n\t\tf 3 24912 24913 -24912\n\t\tmu 0 3 3830 5813 4841\n\t\tf 3 24914 -24914 24915\n\t\tmu 0 3 81 4841 5813\n\t\tf 3 24916 24917 -24916\n\t\tmu 0 3 5813 4617 81\n\t\tf 3 24918 -24918 24919\n\t\tmu 0 3 6202 81 4617\n\t\tf 3 24920 24921 -24920\n\t\tmu 0 3 4617 3594 6202\n\t\tf 3 24922 -24922 24923\n\t\tmu 0 3 5617 6202 3594\n\t\tf 3 24924 -23879 -24924\n\t\tmu 0 3 3594 6433 5617\n\t\tf 3 -24923 -23892 24925\n\t\tmu 0 3 6202 5617 2969\n\t\tf 3 24926 24927 -24926\n\t\tmu 0 3 2969 1720 6202\n\t\tf 3 -24919 -24928 24928\n\t\tmu 0 3 81 6202 1720\n\t\tf 3 24929 24930 -24929\n\t\tmu 0 3 1720 5236 81\n\t\tf 3 -24915 -24931 24931\n\t\tmu 0 3 4841 81 5236\n\t\tf 3 24932 24933 -24932\n\t\tmu 0 3 5236 3642 4841\n\t\tf 3 -24911 -24934 24934\n\t\tmu 0 3 5210 4841 3642\n\t\tf 3 24935 -23564 -24935\n\t\tmu 0 3 3642 648 5210\n\t\tf 3 -24936 24936 24937\n\t\tmu 0 3 648 3642 37\n\t\tf 3 24938 -23583 -24938\n\t\tmu 0 3 37 2715 648\n\t\tf 3 24939 -24937 24940\n\t\tmu 0 3 5479 37 3642\n\t\tf 3 -24933 24941 -24941\n\t\tmu 0 3 3642 5236 5479\n\t\tf 3 24942 -24942 24943\n\t\tmu 0 3 2874 5479 5236\n\t\tf 3 -24930 24944 -24944\n\t\tmu 0 3 5236 1720 2874\n\t\tf 3 24945 -24945 24946\n\t\tmu 0 3 3323 2874 1720\n\t\tf 3 -24927 -23896 -24947\n\t\tmu 0 3 1720 2969 3323\n\t\tf 3 -24946 -23918 24947\n\t\tmu 0 3 2874 3323 328\n\t\tf 3 24948 24949 -24948\n\t\tmu 0 3 328 3377 2874\n\t\tf 3 -24943 -24950 24950\n\t\tmu 0 3 5479 2874 3377\n\t\tf 3 24951 24952 -24951\n\t\tmu 0 3 3377 6522 5479\n\t\tf 3 -24940 -24953 24953\n\t\tmu 0 3 37 5479 6522\n\t\tf 3 24954 24955 -24954\n\t\tmu 0 3 6522 4618 37\n\t\tf 3 -24939 -24956 24956\n\t\tmu 0 3 2715 37 4618\n\t\tf 3 24957 -23584 -24957\n\t\tmu 0 3 4618 4501 2715\n\t\tf 3 -24958 24958 24959\n\t\tmu 0 3 4501 4618 838\n\t\tf 3 24960 -23603 -24960\n\t\tmu 0 3 838 5960 4501\n\t\tf 3 24961 -24959 24962\n\t\tmu 0 3 4792 838 4618\n\t\tf 3 -24955 24963 -24963\n\t\tmu 0 3 4618 6522 4792\n\t\tf 3 24964 -24964 24965\n\t\tmu 0 3 2708 4792 6522\n\t\tf 3 -24952 24966 -24966\n\t\tmu 0 3 6522 3377 2708\n\t\tf 3 24967 -24967 24968\n\t\tmu 0 3 3048 2708 3377\n\t\tf 3 -24949 -23922 -24969\n\t\tmu 0 3 3377 328 3048\n\t\tf 3 -24968 -23944 24969\n\t\tmu 0 3 2708 3048 1124\n\t\tf 3 24970 24971 -24970\n\t\tmu 0 3 1124 437 2708\n\t\tf 3 -24965 -24972 24972\n\t\tmu 0 3 4792 2708 437\n\t\tf 3 24973 24974 -24973\n\t\tmu 0 3 437 3561 4792\n\t\tf 3 -24962 -24975 24975\n\t\tmu 0 3 838 4792 3561\n\t\tf 3 24976 24977 -24976\n\t\tmu 0 3 3561 656 838\n\t\tf 3 -24961 -24978 24978\n\t\tmu 0 3 5960 838 656\n\t\tf 3 24979 -23604 -24979\n\t\tmu 0 3 656 1884 5960\n\t\tf 3 -24980 24980 24981\n\t\tmu 0 3 1884 656 155\n\t\tf 3 24982 -23623 -24982\n\t\tmu 0 3 155 4010 1884\n\t\tf 3 24983 -24981 24984\n\t\tmu 0 3 2189 155 656\n\t\tf 3 -24977 24985 -24985\n\t\tmu 0 3 656 3561 2189\n\t\tf 3 24986 -24986 24987\n\t\tmu 0 3 5795 2189 3561\n\t\tf 3 -24974 24988 -24988\n\t\tmu 0 3 3561 437 5795\n\t\tf 3 24989 -24989 24990\n\t\tmu 0 3 245 5795 437\n\t\tf 3 -24971 -23948 -24991\n\t\tmu 0 3 437 1124 245\n\t\tf 3 -24990 -23970 24991\n\t\tmu 0 3 5795 245 3320\n\t\tf 3 24992 24993 -24992\n\t\tmu 0 3 3320 2066 5795\n\t\tf 3 -24987 -24994 24994\n\t\tmu 0 3 2189 5795 2066\n\t\tf 3 24995 24996 -24995\n\t\tmu 0 3 2066 6382 2189\n\t\tf 3 -24984 -24997 24997\n\t\tmu 0 3 155 2189 6382\n\t\tf 3 24998 24999 -24998\n\t\tmu 0 3 6382 204 155\n\t\tf 3 -24983 -25000 25000\n\t\tmu 0 3 4010 155 204\n\t\tf 3 25001 -23624 -25001\n\t\tmu 0 3 204 4519 4010\n\t\tf 3 -25002 25002 25003\n\t\tmu 0 3 4519 204 1759\n\t\tf 3 -23758 -23709 -25004\n\t\tmu 0 3 1759 6387 4519\n\t\tf 3 -24999 25004 25005\n\t\tmu 0 3 204 6382 9\n\t\tf 3 -23762 -25003 -25006\n\t\tmu 0 3 9 5816 204\n\t\tf 3 -24996 25006 25007\n\t\tmu 0 3 6382 2066 1971\n\t\tf 3 -23766 -25005 -25008\n\t\tmu 0 3 1971 2259 6382\n\t\tf 3 -24993 -23973 25008\n\t\tmu 0 3 2066 3320 355\n\t\tf 3 -23770 -25007 -25009\n\t\tmu 0 3 355 2458 2066\n\t\tf 3 25009 -23756 25010\n\t\tmu 0 3 650 5070 3465\n\t\tf 3 -23760 25011 -25011\n\t\tmu 0 3 3465 263 650\n\t\tf 3 25012 -25012 25013\n\t\tmu 0 3 1104 650 263\n\t\tf 3 -23764 25014 -25014\n\t\tmu 0 3 263 3279 1104\n\t\tf 3 25015 -25015 -23792\n\t\tmu 0 3 1224 1104 3279\n\t\tf 3 -25016 -23814 25016\n\t\tmu 0 3 1104 1224 5005\n\t\tf 3 25017 25018 -25017\n\t\tmu 0 3 5005 2798 1104\n\t\tf 3 -25013 -25019 25019\n\t\tmu 0 3 650 1104 2798\n\t\tf 3 25020 25021 -25020\n\t\tmu 0 3 2798 2779 650\n\t\tf 3 -25010 -25022 25022\n\t\tmu 0 3 5070 650 2779\n\t\tf 3 25023 -23753 -25023\n\t\tmu 0 3 2779 5287 5070\n\t\tf 3 -25024 25024 25025\n\t\tmu 0 3 5287 2779 5912\n\t\tf 3 25026 -23750 -25026\n\t\tmu 0 3 5912 4772 5287\n\t\tf 3 25027 -25025 25028\n\t\tmu 0 3 591 5912 2779\n\t\tf 3 -25021 25029 -25029\n\t\tmu 0 3 2779 2798 591\n\t\tf 3 25030 -25030 25031\n\t\tmu 0 3 3833 591 2798\n\t\tf 3 -25018 -23818 -25032\n\t\tmu 0 3 2798 5005 3833\n\t\tf 3 -25031 -23840 25032\n\t\tmu 0 3 591 3833 3327\n\t\tf 3 25033 25034 -25033\n\t\tmu 0 3 3327 1635 591\n\t\tf 3 -25028 -25035 25035\n\t\tmu 0 3 5912 591 1635\n\t\tf 3 25036 25037 -25036\n\t\tmu 0 3 1635 839 5912\n\t\tf 3 -25027 -25038 25038\n\t\tmu 0 3 4772 5912 839\n\t\tf 3 25039 25040 -25039\n\t\tmu 0 3 839 4675 4772\n\t\tf 3 -23747 -25041 25041\n\t\tmu 0 3 3530 4772 4675\n\t\tf 3 25042 -23731 -25042\n\t\tmu 0 3 4675 116 3530\n\t\tf 3 -25043 25043 25044\n\t\tmu 0 3 116 4675 4375\n\t\tf 3 25045 -23742 -25045\n\t\tmu 0 3 4375 5894 116\n\t\tf 3 25046 -25044 25047\n\t\tmu 0 3 2746 4375 4675\n\t\tf 3 -25040 25048 -25048\n\t\tmu 0 3 4675 839 2746\n\t\tf 3 25049 -25049 25050\n\t\tmu 0 3 4267 2746 839\n\t\tf 3 -25037 25051 -25051\n\t\tmu 0 3 839 1635 4267\n\t\tf 3 25052 -25052 25053\n\t\tmu 0 3 79 4267 1635\n\t\tf 3 -25034 -23844 -25054\n\t\tmu 0 3 1635 3327 79\n\t\tf 3 -25053 -23877 25054\n\t\tmu 0 3 4267 79 6433\n\t\tf 3 -24925 25055 -25055\n\t\tmu 0 3 6433 3594 4267\n\t\tf 3 -25050 -25056 25056\n\t\tmu 0 3 2746 4267 3594\n\t\tf 3 -24921 25057 -25057\n\t\tmu 0 3 3594 4617 2746\n\t\tf 3 -25047 -25058 25058\n\t\tmu 0 3 4375 2746 4617\n\t\tf 3 -24917 25059 -25059\n\t\tmu 0 3 4617 5813 4375\n\t\tf 3 -25046 -25060 25060\n\t\tmu 0 3 5894 4375 5813\n\t\tf 3 -24913 -23743 -25061\n\t\tmu 0 3 5813 3830 5894\n\t\tf 3 25061 25062 25063\n\t\tmu 0 3 25114 25115 25116\n\t\tf 3 25064 25065 -25064\n\t\tmu 0 3 25117 25118 25119\n\t\tf 3 -25063 25066 25067\n\t\tmu 0 3 25120 25121 25122\n\t\tf 3 25068 25069 -25068\n\t\tmu 0 3 25123 25124 25125\n\t\tf 3 -25069 25070 25071\n\t\tmu 0 3 25126 25127 25128\n\t\tf 3 25072 25073 -25072\n\t\tmu 0 3 25129 25130 25131\n\t\tf 3 25074 -25071 25075\n\t\tmu 0 3 25132 25133 25134\n\t\tf 3 25076 25077 -25076\n\t\tmu 0 3 25135 25136 25137\n\t\tf 3 -25077 -25067 25078\n\t\tmu 0 3 25138 25139 25140\n\t\tf 3 25079 25080 -25079\n\t\tmu 0 3 25141 25142 25143\n\t\tf 3 -25080 -25062 25081\n\t\tmu 0 3 25144 25145 25146\n\t\tf 3 25082 25083 -25082\n\t\tmu 0 3 25147 25148 25149\n\t\tf 3 25084 -25084 25085\n\t\tmu 0 3 25150 25151 25152\n\t\tf 3 25086 25087 -25086\n\t\tmu 0 3 25153 25154 25155\n\t\tf 3 -25085 25088 25089\n\t\tmu 0 3 25156 25157 25158\n\t\tf 3 25090 -25081 -25090\n\t\tmu 0 3 25159 25160 25161\n\t\tf 3 -25091 25091 25092\n\t\tmu 0 3 25162 25163 25164\n\t\tf 3 25093 -25078 -25093\n\t\tmu 0 3 25165 25166 25167\n\t\tf 3 25094 -25092 25095\n\t\tmu 0 3 25168 25169 25170\n\t\tf 3 25096 25097 -25096\n\t\tmu 0 3 25171 25172 25173\n\t\tf 3 -25097 -25089 25098\n\t\tmu 0 3 25174 25175 25176\n\t\tf 3 25099 25100 -25099\n\t\tmu 0 3 25177 25178 25179\n\t\tf 3 -25100 -25088 25101\n\t\tmu 0 3 25180 25181 25182\n\t\tf 3 25102 25103 -25102\n\t\tmu 0 3 25183 25184 25185\n\t\tf 3 25104 -25104 25105\n\t\tmu 0 3 25186 25187 25188\n\t\tf 3 25106 25107 -25106\n\t\tmu 0 3 25189 25190 25191\n\t\tf 3 -25105 25108 25109\n\t\tmu 0 3 25192 25193 25194\n\t\tf 3 25110 -25101 -25110\n\t\tmu 0 3 25195 25196 25197\n\t\tf 3 -25111 25111 25112\n\t\tmu 0 3 25198 25199 25200\n\t\tf 3 25113 -25098 -25113\n\t\tmu 0 3 25201 25202 25203\n\t\tf 3 25114 -25112 25115\n\t\tmu 0 3 25204 25205 25206\n\t\tf 3 25116 25117 -25116\n\t\tmu 0 3 25207 25208 25209\n\t\tf 3 -25117 -25109 25118\n\t\tmu 0 3 25210 25211 25212\n\t\tf 3 25119 25120 -25119\n\t\tmu 0 3 25213 25214 25215\n\t\tf 3 -25120 -25108 25121\n\t\tmu 0 3 25216 25217 25218\n\t\tf 3 25122 25123 -25122\n\t\tmu 0 3 25219 25220 25221\n\t\tf 3 25124 -25124 25125\n\t\tmu 0 3 25222 25223 25224\n\t\tf 3 25126 25127 -25126\n\t\tmu 0 3 25225 25226 25227\n\t\tf 3 -25125 25128 25129\n\t\tmu 0 3 25228 25229 25230\n\t\tf 3 25130 -25121 -25130\n\t\tmu 0 3 25231 25232 25233\n\t\tf 3 -25131 25131 25132\n\t\tmu 0 3 25234 25235 25236\n\t\tf 3 25133 -25118 -25133\n\t\tmu 0 3 25237 25238 25239\n\t\tf 3 25134 -25132 25135\n\t\tmu 0 3 25240 25241 25242\n\t\tf 3 25136 25137 -25136\n\t\tmu 0 3 25243 25244 25245\n\t\tf 3 -25137 -25129 25138\n\t\tmu 0 3 25246 25247 25248\n\t\tf 3 25139 25140 -25139\n\t\tmu 0 3 25249 25250 25251\n\t\tf 3 -25140 -25128 25141\n\t\tmu 0 3 25252 25253 25254\n\t\tf 3 25142 25143 -25142\n\t\tmu 0 3 25255 25256 25257\n\t\tf 3 -25115 25144 25145\n\t\tmu 0 3 25258 25259 25260\n\t\tf 3 25146 25147 -25146\n\t\tmu 0 3 25261 25262 25263\n\t\tf 3 -25114 -25148 25148\n\t\tmu 0 3 25264 25265 25266\n\t\tf 3 25149 25150 -25149\n\t\tmu 0 3 25267 25268 25269\n\t\tf 3 -25095 -25151 25151\n\t\tmu 0 3 25270 25271 25272\n\t\tf 3 25152 25153 -25152\n\t\tmu 0 3 25273 25274 25275\n\t\tf 3 -25094 -25154 25154\n\t\tmu 0 3 25276 25277 25278\n\t\tf 3 25155 25156 -25155\n\t\tmu 0 3 25279 25280 25281\n\t\tf 3 -25075 -25157 25157\n\t\tmu 0 3 25282 25283 25284\n\t\tf 3 25158 25159 -25158\n\t\tmu 0 3 25285 25286 25287\n\t\tf 3 -25073 -25160 25160\n\t\tmu 0 3 25288 25289 25290\n\t\tf 3 25161 25162 -25161\n\t\tmu 0 3 25291 25292 25293\n\t\tf 3 -25162 25163 25164\n\t\tmu 0 3 25294 25295 25296\n\t\tf 3 25165 25166 -25165\n\t\tmu 0 3 25297 25298 25299\n\t\tf 3 -25166 25167 25168\n\t\tmu 0 3 25300 25301 25302\n\t\tf 3 25169 25170 -25169\n\t\tmu 0 3 25303 25304 25305\n\t\tf 3 -25170 25171 25172\n\t\tmu 0 3 25306 25307 25308\n\t\tf 3 25173 25174 -25173\n\t\tmu 0 3 25309 25310 25311\n\t\tf 3 25175 -25172 25176\n\t\tmu 0 3 25312 25313 25314\n\t\tf 3 25177 25178 -25177\n\t\tmu 0 3 25315 25316 25317\n\t\tf 3 -25178 -25168 25179\n\t\tmu 0 3 25318 25319 25320\n\t\tf 3 25180 25181 -25180\n\t\tmu 0 3 25321 25322 25323\n\t\tf 3 -25181 -25164 25182\n\t\tmu 0 3 25324 25325 25326\n\t\tf 3 -25159 25183 -25183\n\t\tmu 0 3 25327 25328 25329\n\t\tf 3 -25156 25184 25185\n\t\tmu 0 3 25330 25331 25332\n\t\tf 3 25186 -25184 -25186\n\t\tmu 0 3 25333 25334 25335;\n\tsetAttr \".fc[13500:13999]\"\n\t\tf 3 -25187 25187 25188\n\t\tmu 0 3 25336 25337 25338\n\t\tf 3 25189 -25182 -25189\n\t\tmu 0 3 25339 25340 25341\n\t\tf 3 -25190 25190 25191\n\t\tmu 0 3 25342 25343 25344\n\t\tf 3 25192 -25179 -25192\n\t\tmu 0 3 25345 25346 25347\n\t\tf 3 25193 -25191 25194\n\t\tmu 0 3 25348 25349 25350\n\t\tf 3 25195 25196 -25195\n\t\tmu 0 3 25351 25352 25353\n\t\tf 3 -25196 -25188 25197\n\t\tmu 0 3 25354 25355 25356\n\t\tf 3 25198 25199 -25198\n\t\tmu 0 3 25357 25358 25359\n\t\tf 3 -25199 -25185 25200\n\t\tmu 0 3 25360 25361 25362\n\t\tf 3 -25153 25201 -25201\n\t\tmu 0 3 25363 25364 25365\n\t\tf 3 25202 -25202 25203\n\t\tmu 0 3 25366 25367 25368\n\t\tf 3 -25150 25204 -25204\n\t\tmu 0 3 25369 25370 25371\n\t\tf 3 -25203 25205 25206\n\t\tmu 0 3 25372 25373 25374\n\t\tf 3 25207 -25200 -25207\n\t\tmu 0 3 25375 25376 25377\n\t\tf 3 -25208 25208 25209\n\t\tmu 0 3 25378 25379 25380\n\t\tf 3 25210 -25197 -25210\n\t\tmu 0 3 25381 25382 25383\n\t\tf 3 25211 -25209 25212\n\t\tmu 0 3 25384 25385 25386\n\t\tf 3 25213 25214 -25213\n\t\tmu 0 3 25387 25388 25389\n\t\tf 3 -25214 -25206 25215\n\t\tmu 0 3 25390 25391 25392\n\t\tf 3 25216 25217 -25216\n\t\tmu 0 3 25393 25394 25395\n\t\tf 3 -25217 -25205 25218\n\t\tmu 0 3 25396 25397 25398\n\t\tf 3 -25147 25219 -25219\n\t\tmu 0 3 25399 25400 25401\n\t\tf 3 25220 -25220 25221\n\t\tmu 0 3 25402 25403 25404\n\t\tf 3 25222 25223 -25222\n\t\tmu 0 3 25405 25406 25407\n\t\tf 3 -25223 -25145 25224\n\t\tmu 0 3 25408 25409 25410\n\t\tf 3 -25134 25225 -25225\n\t\tmu 0 3 25411 25412 25413\n\t\tf 3 -25221 25226 25227\n\t\tmu 0 3 25414 25415 25416\n\t\tf 3 25228 -25218 -25228\n\t\tmu 0 3 25417 25418 25419\n\t\tf 3 -25229 25229 25230\n\t\tmu 0 3 25420 25421 25422\n\t\tf 3 25231 -25215 -25231\n\t\tmu 0 3 25423 25424 25425\n\t\tf 3 25232 -25230 25233\n\t\tmu 0 3 25426 25427 25428\n\t\tf 3 25234 25235 -25234\n\t\tmu 0 3 25429 25430 25431\n\t\tf 3 -25235 -25227 25236\n\t\tmu 0 3 25432 25433 25434\n\t\tf 3 25237 25238 -25237\n\t\tmu 0 3 25435 25436 25437\n\t\tf 3 -25238 -25224 25239\n\t\tmu 0 3 25438 25439 25440\n\t\tf 3 25240 25241 -25240\n\t\tmu 0 3 25441 25442 25443\n\t\tf 3 -25241 -25226 25242\n\t\tmu 0 3 25444 25445 25446\n\t\tf 3 -25135 25243 -25243\n\t\tmu 0 3 25447 25448 25449\n\t\tf 3 25244 -25244 25245\n\t\tmu 0 3 25450 25451 25452\n\t\tf 3 25246 25247 -25246\n\t\tmu 0 3 25453 25454 25455\n\t\tf 3 -25245 25248 25249\n\t\tmu 0 3 25456 25457 25458\n\t\tf 3 25250 -25242 -25250\n\t\tmu 0 3 25459 25460 25461\n\t\tf 3 25251 -25239 25252\n\t\tmu 0 3 25462 25463 25464\n\t\tf 3 -25251 25253 -25253\n\t\tmu 0 3 25465 25466 25467\n\t\tf 3 25254 -25236 25255\n\t\tmu 0 3 25468 25469 25470\n\t\tf 3 -25252 25256 -25256\n\t\tmu 0 3 25471 25472 25473\n\t\tf 3 -25233 25257 25258\n\t\tmu 0 3 25474 25475 25476\n\t\tf 3 25259 25260 -25259\n\t\tmu 0 3 25477 25478 25479\n\t\tf 3 -25232 -25261 25261\n\t\tmu 0 3 25480 25481 25482\n\t\tf 3 25262 25263 -25262\n\t\tmu 0 3 25483 25484 25485\n\t\tf 3 -25212 -25264 25264\n\t\tmu 0 3 25486 25487 25488\n\t\tf 3 25265 25266 -25265\n\t\tmu 0 3 25489 25490 25491\n\t\tf 3 -25211 -25267 25267\n\t\tmu 0 3 25492 25493 25494\n\t\tf 3 25268 25269 -25268\n\t\tmu 0 3 25495 25496 25497\n\t\tf 3 -25194 -25270 25270\n\t\tmu 0 3 25498 25499 25500\n\t\tf 3 25271 25272 -25271\n\t\tmu 0 3 25501 25502 25503\n\t\tf 3 -25193 -25273 25273\n\t\tmu 0 3 25504 25505 25506\n\t\tf 3 25274 25275 -25274\n\t\tmu 0 3 25507 25508 25509\n\t\tf 3 -25176 -25276 25276\n\t\tmu 0 3 25510 25511 25512\n\t\tf 3 25277 25278 -25277\n\t\tmu 0 3 25513 25514 25515\n\t\tf 3 -25174 -25279 25279\n\t\tmu 0 3 25516 25517 25518\n\t\tf 3 25280 25281 -25280\n\t\tmu 0 3 25519 25520 25521\n\t\tf 3 -25281 25282 25283\n\t\tmu 0 3 25522 25523 25524\n\t\tf 3 25284 25285 -25284\n\t\tmu 0 3 25525 25526 25527\n\t\tf 3 -25285 25286 25287\n\t\tmu 0 3 25528 25529 25530\n\t\tf 3 25288 25289 -25288\n\t\tmu 0 3 25531 25532 25533\n\t\tf 3 -25289 25290 25291\n\t\tmu 0 3 25534 25535 25536\n\t\tf 3 25292 25293 -25292\n\t\tmu 0 3 25537 25538 25539\n\t\tf 3 25294 -25291 25295\n\t\tmu 0 3 25540 25541 25542\n\t\tf 3 25296 25297 -25296\n\t\tmu 0 3 25543 25544 25545\n\t\tf 3 -25297 -25287 25298\n\t\tmu 0 3 25546 25547 25548\n\t\tf 3 25299 25300 -25299\n\t\tmu 0 3 25549 25550 25551\n\t\tf 3 -25300 -25283 25301\n\t\tmu 0 3 25552 25553 25554\n\t\tf 3 -25278 25302 -25302\n\t\tmu 0 3 25555 25556 25557\n\t\tf 3 -25275 25303 25304\n\t\tmu 0 3 25558 25559 25560\n\t\tf 3 25305 -25303 -25305\n\t\tmu 0 3 25561 25562 25563\n\t\tf 3 -25306 25306 25307\n\t\tmu 0 3 25564 25565 25566\n\t\tf 3 25308 -25301 -25308\n\t\tmu 0 3 25567 25568 25569\n\t\tf 3 -25309 25309 25310\n\t\tmu 0 3 25570 25571 25572\n\t\tf 3 25311 -25298 -25311\n\t\tmu 0 3 25573 25574 25575\n\t\tf 3 25312 -25310 25313\n\t\tmu 0 3 25576 25577 25578\n\t\tf 3 25314 25315 -25314\n\t\tmu 0 3 25579 25580 25581\n\t\tf 3 -25315 -25307 25316\n\t\tmu 0 3 25582 25583 25584\n\t\tf 3 25317 25318 -25317\n\t\tmu 0 3 25585 25586 25587\n\t\tf 3 -25318 -25304 25319\n\t\tmu 0 3 25588 25589 25590\n\t\tf 3 -25272 25320 -25320\n\t\tmu 0 3 25591 25592 25593\n\t\tf 3 25321 -25321 25322\n\t\tmu 0 3 25594 25595 25596\n\t\tf 3 -25269 25323 -25323\n\t\tmu 0 3 25597 25598 25599\n\t\tf 3 -25322 25324 25325\n\t\tmu 0 3 25600 25601 25602\n\t\tf 3 25326 -25319 -25326\n\t\tmu 0 3 25603 25604 25605\n\t\tf 3 -25327 25327 25328\n\t\tmu 0 3 25606 25607 25608\n\t\tf 3 25329 -25316 -25329\n\t\tmu 0 3 25609 25610 25611\n\t\tf 3 25330 -25328 25331\n\t\tmu 0 3 25612 25613 25614\n\t\tf 3 25332 25333 -25332\n\t\tmu 0 3 25615 25616 25617\n\t\tf 3 -25333 -25325 25334\n\t\tmu 0 3 25618 25619 25620\n\t\tf 3 25335 25336 -25335\n\t\tmu 0 3 25621 25622 25623\n\t\tf 3 -25336 -25324 25337\n\t\tmu 0 3 25624 25625 25626\n\t\tf 3 -25266 25338 -25338\n\t\tmu 0 3 25627 25628 25629\n\t\tf 3 25339 -25339 25340\n\t\tmu 0 3 25630 25631 25632\n\t\tf 3 -25263 25341 -25341\n\t\tmu 0 3 25633 25634 25635\n\t\tf 3 -25340 25342 25343\n\t\tmu 0 3 25636 25637 25638\n\t\tf 3 25344 -25337 -25344\n\t\tmu 0 3 25639 25640 25641\n\t\tf 3 -25345 25345 25346\n\t\tmu 0 3 25642 25643 25644\n\t\tf 3 25347 -25334 -25347\n\t\tmu 0 3 25645 25646 25647\n\t\tf 3 25348 -25346 25349\n\t\tmu 0 3 25648 25649 25650\n\t\tf 3 25350 25351 -25350\n\t\tmu 0 3 25651 25652 25653\n\t\tf 3 -25351 -25343 25352\n\t\tmu 0 3 25654 25655 25656\n\t\tf 3 25353 25354 -25353\n\t\tmu 0 3 25657 25658 25659\n\t\tf 3 -25354 -25342 25355\n\t\tmu 0 3 25660 25661 25662\n\t\tf 3 -25260 25356 -25356\n\t\tmu 0 3 25663 25664 25665\n\t\tf 3 25357 -25357 25358\n\t\tmu 0 3 25666 25667 25668\n\t\tf 3 25359 25360 -25359\n\t\tmu 0 3 25669 25670 25671\n\t\tf 3 25361 -25355 25362\n\t\tmu 0 3 25672 25673 25674\n\t\tf 3 -25358 25363 -25363\n\t\tmu 0 3 25675 25676 25677\n\t\tf 3 25364 -25352 25365\n\t\tmu 0 3 25678 25679 25680\n\t\tf 3 -25362 25366 -25366\n\t\tmu 0 3 25681 25682 25683\n\t\tf 3 -25349 25367 25368\n\t\tmu 0 3 25684 25685 25686\n\t\tf 3 25369 25370 -25369\n\t\tmu 0 3 25687 25688 25689\n\t\tf 3 -25348 -25371 25371\n\t\tmu 0 3 25690 25691 25692\n\t\tf 3 25372 25373 -25372\n\t\tmu 0 3 25693 25694 25695\n\t\tf 3 -25331 -25374 25374\n\t\tmu 0 3 25696 25697 25698\n\t\tf 3 25375 25376 -25375\n\t\tmu 0 3 25699 25700 25701\n\t\tf 3 -25330 -25377 25377\n\t\tmu 0 3 25702 25703 25704\n\t\tf 3 25378 25379 -25378\n\t\tmu 0 3 25705 25706 25707\n\t\tf 3 -25313 -25380 25380\n\t\tmu 0 3 25708 25709 25710\n\t\tf 3 25381 25382 -25381\n\t\tmu 0 3 25711 25712 25713\n\t\tf 3 -25312 -25383 25383\n\t\tmu 0 3 25714 25715 25716\n\t\tf 3 25384 25385 -25384\n\t\tmu 0 3 25717 25718 25719\n\t\tf 3 -25295 -25386 25386\n\t\tmu 0 3 25720 25721 25722\n\t\tf 3 25387 25388 -25387\n\t\tmu 0 3 25723 25724 25725\n\t\tf 3 -25293 -25389 25389\n\t\tmu 0 3 25726 25727 25728\n\t\tf 3 25390 25391 -25390\n\t\tmu 0 3 25729 25730 25731\n\t\tf 3 -25391 25392 25393\n\t\tmu 0 3 25732 25733 25734\n\t\tf 3 25394 25395 -25394\n\t\tmu 0 3 25735 25736 25737\n\t\tf 3 -25395 25396 25397\n\t\tmu 0 3 25738 25739 25740\n\t\tf 3 25398 25399 -25398\n\t\tmu 0 3 25741 25742 25743\n\t\tf 3 -25399 25400 25401\n\t\tmu 0 3 25744 25745 25746\n\t\tf 3 25402 25403 -25402\n\t\tmu 0 3 25747 25748 25749\n\t\tf 3 25404 -25401 25405\n\t\tmu 0 3 25750 25751 25752\n\t\tf 3 25406 25407 -25406\n\t\tmu 0 3 25753 25754 25755\n\t\tf 3 -25407 -25397 25408\n\t\tmu 0 3 25756 25757 25758\n\t\tf 3 25409 25410 -25409\n\t\tmu 0 3 25759 25760 25761\n\t\tf 3 -25410 -25393 25411\n\t\tmu 0 3 25762 25763 25764\n\t\tf 3 -25388 25412 -25412\n\t\tmu 0 3 25765 25766 25767\n\t\tf 3 -25385 25413 25414\n\t\tmu 0 3 25768 25769 25770\n\t\tf 3 25415 -25413 -25415\n\t\tmu 0 3 25771 25772 25773\n\t\tf 3 -25416 25416 25417\n\t\tmu 0 3 25774 25775 25776\n\t\tf 3 25418 -25411 -25418\n\t\tmu 0 3 25777 25778 25779\n\t\tf 3 -25419 25419 25420\n\t\tmu 0 3 25780 25781 25782\n\t\tf 3 25421 -25408 -25421\n\t\tmu 0 3 25783 25784 25785\n\t\tf 3 25422 -25420 25423\n\t\tmu 0 3 25786 25787 25788\n\t\tf 3 25424 25425 -25424\n\t\tmu 0 3 25789 25790 25791\n\t\tf 3 -25425 -25417 25426\n\t\tmu 0 3 25792 25793 25794\n\t\tf 3 25427 25428 -25427\n\t\tmu 0 3 25795 25796 25797\n\t\tf 3 -25428 -25414 25429\n\t\tmu 0 3 25798 25799 25800\n\t\tf 3 -25382 25430 -25430\n\t\tmu 0 3 25801 25802 25803\n\t\tf 3 25431 -25431 25432\n\t\tmu 0 3 25804 25805 25806\n\t\tf 3 -25379 25433 -25433\n\t\tmu 0 3 25807 25808 25809\n\t\tf 3 -25432 25434 25435\n\t\tmu 0 3 25810 25811 25812\n\t\tf 3 25436 -25429 -25436\n\t\tmu 0 3 25813 25814 25815\n\t\tf 3 -25437 25437 25438\n\t\tmu 0 3 25816 25817 25818\n\t\tf 3 25439 -25426 -25439\n\t\tmu 0 3 25819 25820 25821\n\t\tf 3 25440 -25438 25441\n\t\tmu 0 3 25822 25823 25824\n\t\tf 3 25442 25443 -25442\n\t\tmu 0 3 25825 25826 25827\n\t\tf 3 -25443 -25435 25444\n\t\tmu 0 3 25828 25829 25830\n\t\tf 3 25445 25446 -25445\n\t\tmu 0 3 25831 25832 25833\n\t\tf 3 -25446 -25434 25447\n\t\tmu 0 3 25834 25835 25836\n\t\tf 3 -25376 25448 -25448\n\t\tmu 0 3 25837 25838 25839\n\t\tf 3 25449 -25449 25450\n\t\tmu 0 3 25840 25841 25842\n\t\tf 3 -25373 25451 -25451\n\t\tmu 0 3 25843 25844 25845\n\t\tf 3 -25450 25452 25453\n\t\tmu 0 3 25846 25847 25848\n\t\tf 3 25454 -25447 -25454\n\t\tmu 0 3 25849 25850 25851\n\t\tf 3 -25455 25455 25456\n\t\tmu 0 3 25852 25853 25854\n\t\tf 3 25457 -25444 -25457\n\t\tmu 0 3 25855 25856 25857\n\t\tf 3 25458 -25456 25459\n\t\tmu 0 3 25858 25859 25860\n\t\tf 3 25460 25461 -25460\n\t\tmu 0 3 25861 25862 25863\n\t\tf 3 -25461 -25453 25462\n\t\tmu 0 3 25864 25865 25866\n\t\tf 3 25463 25464 -25463\n\t\tmu 0 3 25867 25868 25869\n\t\tf 3 -25464 -25452 25465\n\t\tmu 0 3 25870 25871 25872\n\t\tf 3 -25370 25466 -25466\n\t\tmu 0 3 25873 25874 25875\n\t\tf 3 25467 -25467 25468\n\t\tmu 0 3 25876 25877 25878\n\t\tf 3 25469 25470 -25469\n\t\tmu 0 3 25879 25880 25881\n\t\tf 3 25471 -25465 25472\n\t\tmu 0 3 25882 25883 25884\n\t\tf 3 -25468 25473 -25473\n\t\tmu 0 3 25885 25886 25887\n\t\tf 3 25474 -25462 25475\n\t\tmu 0 3 25888 25889 25890\n\t\tf 3 -25472 25476 -25476\n\t\tmu 0 3 25891 25892 25893\n\t\tf 3 -25459 25477 25478\n\t\tmu 0 3 25894 25895 25896\n\t\tf 3 25479 25480 -25479\n\t\tmu 0 3 25897 25898 25899\n\t\tf 3 -25458 -25481 25481\n\t\tmu 0 3 25900 25901 25902\n\t\tf 3 25482 25483 -25482\n\t\tmu 0 3 25903 25904 25905\n\t\tf 3 -25441 -25484 25484\n\t\tmu 0 3 25906 25907 25908\n\t\tf 3 25485 25486 -25485\n\t\tmu 0 3 25909 25910 25911\n\t\tf 3 -25440 -25487 25487\n\t\tmu 0 3 25912 25913 25914\n\t\tf 3 25488 25489 -25488\n\t\tmu 0 3 25915 25916 25917\n\t\tf 3 -25423 -25490 25490\n\t\tmu 0 3 25918 25919 25920\n\t\tf 3 25491 25492 -25491\n\t\tmu 0 3 25921 25922 25923\n\t\tf 3 -25422 -25493 25493\n\t\tmu 0 3 25924 25925 25926\n\t\tf 3 25494 25495 -25494\n\t\tmu 0 3 25927 25928 25929\n\t\tf 3 -25405 -25496 25496\n\t\tmu 0 3 25930 25931 25932\n\t\tf 3 25497 25498 -25497\n\t\tmu 0 3 25933 25934 25935\n\t\tf 3 -25403 -25499 25499\n\t\tmu 0 3 25936 25937 25938\n\t\tf 3 25500 25501 -25500\n\t\tmu 0 3 25939 25940 25941\n\t\tf 3 -25501 25502 25503\n\t\tmu 0 3 25942 25943 25944\n\t\tf 3 25504 25505 -25504\n\t\tmu 0 3 25945 25946 25947\n\t\tf 3 -25505 25506 25507\n\t\tmu 0 3 25948 25949 25950\n\t\tf 3 25508 25509 -25508\n\t\tmu 0 3 25951 25952 25953\n\t\tf 3 -25509 25510 25511\n\t\tmu 0 3 25954 25955 25956\n\t\tf 3 25512 25513 -25512\n\t\tmu 0 3 25957 25958 25959\n\t\tf 3 25514 -25511 25515\n\t\tmu 0 3 25960 25961 25962\n\t\tf 3 25516 25517 -25516\n\t\tmu 0 3 25963 25964 25965\n\t\tf 3 -25517 -25507 25518\n\t\tmu 0 3 25966 25967 25968\n\t\tf 3 25519 25520 -25519\n\t\tmu 0 3 25969 25970 25971\n\t\tf 3 -25520 -25503 25521\n\t\tmu 0 3 25972 25973 25974\n\t\tf 3 -25498 25522 -25522\n\t\tmu 0 3 25975 25976 25977\n\t\tf 3 -25495 25523 25524\n\t\tmu 0 3 25978 25979 25980\n\t\tf 3 25525 -25523 -25525\n\t\tmu 0 3 25981 25982 25983\n\t\tf 3 -25526 25526 25527\n\t\tmu 0 3 25984 25985 25986\n\t\tf 3 25528 -25521 -25528\n\t\tmu 0 3 25987 25988 25989\n\t\tf 3 -25529 25529 25530\n\t\tmu 0 3 25990 25991 25992\n\t\tf 3 25531 -25518 -25531\n\t\tmu 0 3 25993 25994 25995\n\t\tf 3 25532 -25530 25533\n\t\tmu 0 3 25996 25997 25998\n\t\tf 3 25534 25535 -25534\n\t\tmu 0 3 25999 26000 26001\n\t\tf 3 -25535 -25527 25536\n\t\tmu 0 3 26002 26003 26004\n\t\tf 3 25537 25538 -25537\n\t\tmu 0 3 26005 26006 26007\n\t\tf 3 -25538 -25524 25539\n\t\tmu 0 3 26008 26009 26010\n\t\tf 3 -25492 25540 -25540\n\t\tmu 0 3 26011 26012 26013\n\t\tf 3 25541 -25541 25542\n\t\tmu 0 3 26014 26015 26016\n\t\tf 3 -25489 25543 -25543\n\t\tmu 0 3 26017 26018 26019\n\t\tf 3 -25542 25544 25545\n\t\tmu 0 3 26020 26021 26022\n\t\tf 3 25546 -25539 -25546\n\t\tmu 0 3 26023 26024 26025\n\t\tf 3 -25547 25547 25548\n\t\tmu 0 3 26026 26027 26028\n\t\tf 3 25549 -25536 -25549\n\t\tmu 0 3 26029 26030 26031\n\t\tf 3 25550 -25548 25551\n\t\tmu 0 3 26032 26033 26034\n\t\tf 3 25552 25553 -25552\n\t\tmu 0 3 26035 26036 26037\n\t\tf 3 -25553 -25545 25554\n\t\tmu 0 3 26038 26039 26040\n\t\tf 3 25555 25556 -25555\n\t\tmu 0 3 26041 26042 26043\n\t\tf 3 -25556 -25544 25557\n\t\tmu 0 3 26044 26045 26046\n\t\tf 3 -25486 25558 -25558\n\t\tmu 0 3 26047 26048 26049\n\t\tf 3 25559 -25559 25560\n\t\tmu 0 3 26050 26051 26052\n\t\tf 3 -25483 25561 -25561\n\t\tmu 0 3 26053 26054 26055\n\t\tf 3 -25560 25562 25563\n\t\tmu 0 3 26056 26057 26058\n\t\tf 3 25564 -25557 -25564\n\t\tmu 0 3 26059 26060 26061\n\t\tf 3 -25565 25565 25566\n\t\tmu 0 3 26062 26063 26064\n\t\tf 3 25567 -25554 -25567\n\t\tmu 0 3 26065 26066 26067\n\t\tf 3 25568 -25566 25569\n\t\tmu 0 3 26068 26069 26070\n\t\tf 3 25570 25571 -25570\n\t\tmu 0 3 26071 26072 26073\n\t\tf 3 -25571 -25563 25572\n\t\tmu 0 3 26074 26075 26076\n\t\tf 3 25573 25574 -25573\n\t\tmu 0 3 26077 26078 26079\n\t\tf 3 -25574 -25562 25575\n\t\tmu 0 3 26080 26081 26082\n\t\tf 3 -25480 25576 -25576\n\t\tmu 0 3 26083 26084 26085\n\t\tf 3 25577 -25577 25578\n\t\tmu 0 3 26086 26087 26088\n\t\tf 3 25579 25580 -25579\n\t\tmu 0 3 26089 26090 26091\n\t\tf 3 25581 -25575 25582\n\t\tmu 0 3 26092 26093 26094\n\t\tf 3 -25578 25583 -25583\n\t\tmu 0 3 26095 26096 26097\n\t\tf 3 25584 -25572 25585\n\t\tmu 0 3 26098 26099 26100\n\t\tf 3 -25582 25586 -25586\n\t\tmu 0 3 26101 26102 26103\n\t\tf 3 -25569 25587 25588\n\t\tmu 0 3 26104 26105 26106\n\t\tf 3 25589 25590 -25589\n\t\tmu 0 3 26107 26108 26109\n\t\tf 3 -25568 -25591 25591\n\t\tmu 0 3 26110 26111 26112\n\t\tf 3 25592 25593 -25592\n\t\tmu 0 3 26113 26114 26115\n\t\tf 3 -25551 -25594 25594\n\t\tmu 0 3 26116 26117 26118\n\t\tf 3 25595 25596 -25595\n\t\tmu 0 3 26119 26120 26121\n\t\tf 3 -25550 -25597 25597\n\t\tmu 0 3 26122 26123 26124\n\t\tf 3 25598 25599 -25598\n\t\tmu 0 3 26125 26126 26127\n\t\tf 3 -25533 -25600 25600\n\t\tmu 0 3 26128 26129 26130\n\t\tf 3 25601 25602 -25601\n\t\tmu 0 3 26131 26132 26133\n\t\tf 3 -25532 -25603 25603\n\t\tmu 0 3 26134 26135 26136\n\t\tf 3 25604 25605 -25604\n\t\tmu 0 3 26137 26138 26139\n\t\tf 3 -25515 -25606 25606\n\t\tmu 0 3 26140 26141 26142\n\t\tf 3 25607 25608 -25607\n\t\tmu 0 3 26143 26144 26145\n\t\tf 3 -25513 -25609 25609\n\t\tmu 0 3 26146 26147 26148\n\t\tf 3 25610 25611 -25610\n\t\tmu 0 3 26149 26150 26151\n\t\tf 3 -25611 25612 25613\n\t\tmu 0 3 26152 26153 26154\n\t\tf 3 25614 25615 -25614\n\t\tmu 0 3 26155 26156 26157\n\t\tf 3 -25615 25616 25617\n\t\tmu 0 3 26158 26159 26160\n\t\tf 3 25618 25619 -25618\n\t\tmu 0 3 26161 26162 26163\n\t\tf 3 -25619 25620 25621\n\t\tmu 0 3 26164 26165 26166\n\t\tf 3 25622 25623 -25622\n\t\tmu 0 3 26167 26168 26169\n\t\tf 3 25624 -25621 25625\n\t\tmu 0 3 26170 26171 26172\n\t\tf 3 25626 25627 -25626\n\t\tmu 0 3 26173 26174 26175\n\t\tf 3 -25627 -25617 25628\n\t\tmu 0 3 26176 26177 26178\n\t\tf 3 25629 25630 -25629\n\t\tmu 0 3 26179 26180 26181\n\t\tf 3 -25630 -25613 25631\n\t\tmu 0 3 26182 26183 26184\n\t\tf 3 -25608 25632 -25632\n\t\tmu 0 3 26185 26186 26187\n\t\tf 3 -25605 25633 25634\n\t\tmu 0 3 26188 26189 26190\n\t\tf 3 25635 -25633 -25635\n\t\tmu 0 3 26191 26192 26193\n\t\tf 3 -25636 25636 25637\n\t\tmu 0 3 26194 26195 26196\n\t\tf 3 25638 -25631 -25638\n\t\tmu 0 3 26197 26198 26199\n\t\tf 3 -25639 25639 25640\n\t\tmu 0 3 26200 26201 26202\n\t\tf 3 25641 -25628 -25641\n\t\tmu 0 3 26203 26204 26205\n\t\tf 3 25642 -25640 25643\n\t\tmu 0 3 26206 26207 26208\n\t\tf 3 25644 25645 -25644\n\t\tmu 0 3 26209 26210 26211\n\t\tf 3 -25645 -25637 25646\n\t\tmu 0 3 26212 26213 26214\n\t\tf 3 25647 25648 -25647\n\t\tmu 0 3 26215 26216 26217\n\t\tf 3 -25648 -25634 25649\n\t\tmu 0 3 26218 26219 26220\n\t\tf 3 -25602 25650 -25650\n\t\tmu 0 3 26221 26222 26223\n\t\tf 3 25651 -25651 25652\n\t\tmu 0 3 26224 26225 26226\n\t\tf 3 -25599 25653 -25653\n\t\tmu 0 3 26227 26228 26229\n\t\tf 3 -25652 25654 25655\n\t\tmu 0 3 26230 26231 26232\n\t\tf 3 25656 -25649 -25656\n\t\tmu 0 3 26233 26234 26235\n\t\tf 3 -25657 25657 25658\n\t\tmu 0 3 26236 26237 26238\n\t\tf 3 25659 -25646 -25659\n\t\tmu 0 3 26239 26240 26241\n\t\tf 3 25660 -25658 25661\n\t\tmu 0 3 26242 26243 26244\n\t\tf 3 25662 25663 -25662\n\t\tmu 0 3 26245 26246 26247\n\t\tf 3 -25663 -25655 25664\n\t\tmu 0 3 26248 26249 26250\n\t\tf 3 25665 25666 -25665\n\t\tmu 0 3 26251 26252 26253\n\t\tf 3 -25666 -25654 25667\n\t\tmu 0 3 26254 26255 26256\n\t\tf 3 -25596 25668 -25668\n\t\tmu 0 3 26257 26258 26259\n\t\tf 3 25669 -25669 25670\n\t\tmu 0 3 26260 26261 26262\n\t\tf 3 -25593 25671 -25671\n\t\tmu 0 3 26263 26264 26265\n\t\tf 3 -25670 25672 25673\n\t\tmu 0 3 26266 26267 26268\n\t\tf 3 25674 -25667 -25674\n\t\tmu 0 3 26269 26270 26271\n\t\tf 3 -25675 25675 25676\n\t\tmu 0 3 26272 26273 26274\n\t\tf 3 25677 -25664 -25677\n\t\tmu 0 3 26275 26276 26277\n\t\tf 3 25678 -25676 25679\n\t\tmu 0 3 26278 26279 26280\n\t\tf 3 25680 25681 -25680\n\t\tmu 0 3 26281 26282 26283\n\t\tf 3 -25681 -25673 25682\n\t\tmu 0 3 26284 26285 26286\n\t\tf 3 25683 25684 -25683\n\t\tmu 0 3 26287 26288 26289\n\t\tf 3 -25684 -25672 25685\n\t\tmu 0 3 26290 26291 26292\n\t\tf 3 -25590 25686 -25686\n\t\tmu 0 3 26293 26294 26295\n\t\tf 3 25687 -25687 25688\n\t\tmu 0 3 26296 26297 26298\n\t\tf 3 25689 25690 -25689\n\t\tmu 0 3 26299 26300 26301\n\t\tf 3 25691 -25685 25692\n\t\tmu 0 3 26302 26303 26304\n\t\tf 3 -25688 25693 -25693\n\t\tmu 0 3 26305 26306 26307\n\t\tf 3 -25678 25694 25695\n\t\tmu 0 3 26308 26309 26310\n\t\tf 3 -25695 -25679 25696\n\t\tmu 0 3 26311 26312 26313\n\t\tf 3 25697 25698 -25697\n\t\tmu 0 3 26314 26315 26316\n\t\tf 3 -25699 25699 25700\n\t\tmu 0 3 26317 26318 26319\n\t\tf 3 25701 25702 -25701\n\t\tmu 0 3 26320 26321 26322\n\t\tf 3 -25703 25703 25704\n\t\tmu 0 3 26323 26324 26325\n\t\tf 3 25705 25706 -25705\n\t\tmu 0 3 26326 26327 26328\n\t\tf 3 25707 -25706 25708\n\t\tmu 0 3 26329 26330 26331\n\t\tf 3 25709 25710 -25709\n\t\tmu 0 3 26332 26333 26334\n\t\tf 3 -25711 25711 25712\n\t\tmu 0 3 26335 26336 26337\n\t\tf 3 25713 25714 -25713\n\t\tmu 0 3 26338 26339 26340\n\t\tf 3 25715 -25714 25716\n\t\tmu 0 3 26341 26342 26343\n\t\tf 3 25717 25718 -25717\n\t\tmu 0 3 26344 26345 26346\n\t\tf 3 -25719 25719 25720\n\t\tmu 0 3 26347 26348 26349\n\t\tf 3 25721 25722 -25721\n\t\tmu 0 3 26350 26351 26352\n\t\tf 3 25723 -25722 25724\n\t\tmu 0 3 26353 26354 26355\n\t\tf 3 25725 25726 -25725\n\t\tmu 0 3 26356 26357 26358\n\t\tf 3 -25727 25727 25728\n\t\tmu 0 3 26359 26360 26361\n\t\tf 3 25729 25730 -25729\n\t\tmu 0 3 26362 26363 26364\n\t\tf 3 -25731 25731 25732\n\t\tmu 0 3 26365 26366 26367\n\t\tf 3 -25623 25733 -25733\n\t\tmu 0 3 26368 26369 26370\n\t\tf 3 -25734 -25625 25734\n\t\tmu 0 3 26371 26372 26373\n\t\tf 3 25735 -25724 -25735\n\t\tmu 0 3 26374 26375 26376\n\t\tf 3 -25723 -25736 25736\n\t\tmu 0 3 26377 26378 26379\n\t\tf 3 -25642 25737 -25737\n\t\tmu 0 3 26380 26381 26382\n\t\tf 3 -25738 -25643 25738\n\t\tmu 0 3 26383 26384 26385\n\t\tf 3 25739 -25716 -25739\n\t\tmu 0 3 26386 26387 26388\n\t\tf 3 -25715 -25740 25740\n\t\tmu 0 3 26389 26390 26391\n\t\tf 3 -25660 25741 -25741\n\t\tmu 0 3 26392 26393 26394\n\t\tf 3 -25742 -25661 25742\n\t\tmu 0 3 26395 26396 26397\n\t\tf 3 25743 -25708 -25743\n\t\tmu 0 3 26398 26399 26400\n\t\tf 3 -25707 -25744 -25696\n\t\tmu 0 3 26401 26402 26403\n\t\tf 3 25744 -25730 25745\n\t\tmu 0 3 26404 26405 26406\n\t\tf 3 25746 25747 -25746\n\t\tmu 0 3 26407 26408 26409\n\t\tf 3 -25748 25748 25749\n\t\tmu 0 3 26410 26411 26412\n\t\tf 3 25750 25751 -25750\n\t\tmu 0 3 26413 26414 26415\n\t\tf 3 25752 -25751 25753\n\t\tmu 0 3 26416 26417 26418\n\t\tf 3 25754 25755 -25754\n\t\tmu 0 3 26419 26420 26421\n\t\tf 3 -25756 25756 25757\n\t\tmu 0 3 26422 26423 26424\n\t\tf 3 25758 25759 -25758\n\t\tmu 0 3 26425 26426 26427\n\t\tf 3 25760 -25759 25761\n\t\tmu 0 3 26428 26429 26430\n\t\tf 3 25762 25763 -25762\n\t\tmu 0 3 26431 26432 26433\n\t\tf 3 -25764 25764 25765\n\t\tmu 0 3 26434 26435 26436\n\t\tf 3 25766 25767 -25766\n\t\tmu 0 3 26437 26438 26439\n\t\tf 3 25768 -25767 25769\n\t\tmu 0 3 26440 26441 26442\n\t\tf 3 25770 25771 -25770\n\t\tmu 0 3 26443 26444 26445\n\t\tf 3 25772 -25769 25773\n\t\tmu 0 3 26446 26447 26448\n\t\tf 3 -25768 -25773 25774\n\t\tmu 0 3 26449 26450 26451\n\t\tf 3 25775 25776 -25774\n\t\tmu 0 3 26452 26453 26454\n\t\tf 3 -25777 25777 25778\n\t\tmu 0 3 26455 26456 26457\n\t\tf 3 25779 25780 -25779\n\t\tmu 0 3 26458 26459 26460\n\t\tf 3 -25780 -25694 25781\n\t\tmu 0 3 26461 26462 26463\n\t\tf 3 25782 25783 -25782\n\t\tmu 0 3 26464 26465 26466\n\t\tf 3 -25783 -25691 25784\n\t\tmu 0 3 26467 26468 26469\n\t\tf 3 25785 25786 -25785\n\t\tmu 0 3 26470 26471 26472\n\t\tf 3 -25786 25787 25788\n\t\tmu 0 3 26473 26474 26475\n\t\tf 3 25789 25790 -25789\n\t\tmu 0 3 26476 26477 26478\n\t\tf 3 -25790 -25587 25791\n\t\tmu 0 3 26479 26480 26481\n\t\tf 3 25792 25793 -25792\n\t\tmu 0 3 26482 26483 26484\n\t\tf 3 -25793 -25584 25794\n\t\tmu 0 3 26485 26486 26487\n\t\tf 3 25795 25796 -25795\n\t\tmu 0 3 26488 26489 26490\n\t\tf 3 -25796 -25581 25797\n\t\tmu 0 3 26491 26492 26493\n\t\tf 3 25798 25799 -25798\n\t\tmu 0 3 26494 26495 26496\n\t\tf 3 -25799 25800 25801\n\t\tmu 0 3 26497 26498 26499\n\t\tf 3 25802 25803 -25802\n\t\tmu 0 3 26500 26501 26502\n\t\tf 3 -25803 -25477 25804\n\t\tmu 0 3 26503 26504 26505\n\t\tf 3 25805 25806 -25805\n\t\tmu 0 3 26506 26507 26508\n\t\tf 3 -25806 -25474 25807\n\t\tmu 0 3 26509 26510 26511\n\t\tf 3 25808 25809 -25808\n\t\tmu 0 3 26512 26513 26514\n\t\tf 3 -25809 -25471 25810\n\t\tmu 0 3 26515 26516 26517\n\t\tf 3 25811 25812 -25811\n\t\tmu 0 3 26518 26519 26520\n\t\tf 3 -25812 25813 25814\n\t\tmu 0 3 26521 26522 26523\n\t\tf 3 25815 25816 -25815\n\t\tmu 0 3 26524 26525 26526\n\t\tf 3 -25816 -25367 25817\n\t\tmu 0 3 26527 26528 26529\n\t\tf 3 25818 25819 -25818\n\t\tmu 0 3 26530 26531 26532\n\t\tf 3 -25819 -25364 25820\n\t\tmu 0 3 26533 26534 26535\n\t\tf 3 25821 25822 -25821\n\t\tmu 0 3 26536 26537 26538\n\t\tf 3 -25822 -25361 25823\n\t\tmu 0 3 26539 26540 26541\n\t\tf 3 25824 25825 -25824\n\t\tmu 0 3 26542 26543 26544\n\t\tf 3 -25825 25826 25827\n\t\tmu 0 3 26545 26546 26547\n\t\tf 3 25828 25829 -25828\n\t\tmu 0 3 26548 26549 26550\n\t\tf 3 -25829 -25257 25830\n\t\tmu 0 3 26551 26552 26553\n\t\tf 3 25831 25832 -25831\n\t\tmu 0 3 26554 26555 26556\n\t\tf 3 -25832 -25254 25833\n\t\tmu 0 3 26557 26558 26559\n\t\tf 3 25834 25835 -25834\n\t\tmu 0 3 26560 26561 26562\n\t\tf 3 -25835 -25249 25836\n\t\tmu 0 3 26563 26564 26565\n\t\tf 3 25837 25838 -25837\n\t\tmu 0 3 26566 26567 26568\n\t\tf 3 -25838 -25248 25839\n\t\tmu 0 3 26569 26570 26571\n\t\tf 3 25840 25841 -25840\n\t\tmu 0 3 26572 26573 26574\n\t\tf 3 -25841 25842 25843\n\t\tmu 0 3 26575 26576 26577\n\t\tf 3 25844 -25843 25845\n\t\tmu 0 3 26578 26579 26580\n\t\tf 3 -25845 -25141 25846\n\t\tmu 0 3 26581 26582 26583\n\t\tf 3 25847 25848 -25847\n\t\tmu 0 3 26584 26585 26586\n\t\tf 3 -25247 -25138 -25846\n\t\tmu 0 3 26587 26588 26589\n\t\tf 3 25849 25850 -25844\n\t\tmu 0 3 26590 26591 26592\n\t\tf 3 -25850 -25849 25851\n\t\tmu 0 3 26593 26594 26595\n\t\tf 3 25852 25853 -25852\n\t\tmu 0 3 26596 26597 26598\n\t\tf 3 -25853 25854 25855\n\t\tmu 0 3 26599 26600 26601\n\t\tf 3 25856 25857 -25856\n\t\tmu 0 3 26602 26603 26604\n\t\tf 3 25858 -25858 25859\n\t\tmu 0 3 26605 26606 26607\n\t\tf 3 25860 25861 -25860\n\t\tmu 0 3 26608 26609 26610\n\t\tf 3 -25859 25862 25863\n\t\tmu 0 3 26611 26612 26613\n\t\tf 3 25864 -25854 -25864\n\t\tmu 0 3 26614 26615 26616\n\t\tf 3 -25865 25865 25866\n\t\tmu 0 3 26617 26618 26619\n\t\tf 3 25867 -25851 -25867\n\t\tmu 0 3 26620 26621 26622\n\t\tf 3 25868 -25866 25869\n\t\tmu 0 3 26623 26624 26625\n\t\tf 3 25870 25871 -25870\n\t\tmu 0 3 26626 26627 26628\n\t\tf 3 -25871 -25863 25872\n\t\tmu 0 3 26629 26630 26631\n\t\tf 3 25873 25874 -25873\n\t\tmu 0 3 26632 26633 26634\n\t\tf 3 -25874 -25862 25875\n\t\tmu 0 3 26635 26636 26637\n\t\tf 3 25876 25877 -25876\n\t\tmu 0 3 26638 26639 26640\n\t\tf 3 25878 -25878 25879\n\t\tmu 0 3 26641 26642 26643\n\t\tf 3 25880 25881 -25880\n\t\tmu 0 3 26644 26645 26646\n\t\tf 3 -25879 25882 25883\n\t\tmu 0 3 26647 26648 26649\n\t\tf 3 25884 -25875 -25884\n\t\tmu 0 3 26650 26651 26652\n\t\tf 3 -25885 25885 25886\n\t\tmu 0 3 26653 26654 26655\n\t\tf 3 25887 -25872 -25887\n\t\tmu 0 3 26656 26657 26658\n\t\tf 3 25888 -25886 25889\n\t\tmu 0 3 26659 26660 26661\n\t\tf 3 25890 25891 -25890\n\t\tmu 0 3 26662 26663 26664\n\t\tf 3 -25891 -25883 25892\n\t\tmu 0 3 26665 26666 26667\n\t\tf 3 25893 25894 -25893\n\t\tmu 0 3 26668 26669 26670\n\t\tf 3 -25894 -25882 25895\n\t\tmu 0 3 26671 26672 26673\n\t\tf 3 25896 25897 -25896\n\t\tmu 0 3 26674 26675 26676\n\t\tf 3 25898 -25898 25899\n\t\tmu 0 3 26677 26678 26679\n\t\tf 3 25900 25901 -25900\n\t\tmu 0 3 26680 26681 26682\n\t\tf 3 -25899 25902 25903\n\t\tmu 0 3 26683 26684 26685\n\t\tf 3 25904 -25895 -25904\n\t\tmu 0 3 26686 26687 26688\n\t\tf 3 -25905 25905 25906\n\t\tmu 0 3 26689 26690 26691\n\t\tf 3 25907 -25892 -25907\n\t\tmu 0 3 26692 26693 26694\n\t\tf 3 25908 -25906 25909\n\t\tmu 0 3 26695 26696 26697\n\t\tf 3 25910 -25074 -25910\n\t\tmu 0 3 26698 26699 26700\n\t\tf 3 -25911 -25903 25911\n\t\tmu 0 3 26701 26702 26703\n\t\tf 3 25912 -25070 -25912\n\t\tmu 0 3 26704 26705 26706\n\t\tf 3 -25913 -25902 25913\n\t\tmu 0 3 26707 26708 26709\n\t\tf 3 25914 -25065 -25914\n\t\tmu 0 3 26710 26711 26712\n\t\tf 3 -25889 25915 25916\n\t\tmu 0 3 26713 26714 26715\n\t\tf 3 25917 25918 -25917\n\t\tmu 0 3 26716 26717 26718\n\t\tf 3 -25888 -25919 25919\n\t\tmu 0 3 26719 26720 26721\n\t\tf 3 25920 25921 -25920\n\t\tmu 0 3 26722 26723 26724\n\t\tf 3 -25869 -25922 25922\n\t\tmu 0 3 26725 26726 26727\n\t\tf 3 25923 25924 -25923\n\t\tmu 0 3 26728 26729 26730\n\t\tf 3 -25868 -25925 25925\n\t\tmu 0 3 26731 26732 26733\n\t\tf 3 25926 -25842 -25926\n\t\tmu 0 3 26734 26735 26736\n\t\tf 3 -25927 25927 25928\n\t\tmu 0 3 26737 26738 26739\n\t\tf 3 25929 -25839 -25929\n\t\tmu 0 3 26740 26741 26742\n\t\tf 3 -25930 25930 25931\n\t\tmu 0 3 26743 26744 26745\n\t\tf 3 25932 -25836 -25932\n\t\tmu 0 3 26746 26747 26748\n\t\tf 3 -25933 25933 25934\n\t\tmu 0 3 26749 26750 26751\n\t\tf 3 25935 -25833 -25935\n\t\tmu 0 3 26752 26753 26754\n\t\tf 3 25936 -25934 25937\n\t\tmu 0 3 26755 26756 26757\n\t\tf 3 25938 25939 -25938\n\t\tmu 0 3 26758 26759 26760\n\t\tf 3 -25939 -25931 25940\n\t\tmu 0 3 26761 26762 26763\n\t\tf 3 25941 25942 -25941\n\t\tmu 0 3 26764 26765 26766\n\t\tf 3 -25942 -25928 25943\n\t\tmu 0 3 26767 26768 26769\n\t\tf 3 -25924 25944 -25944\n\t\tmu 0 3 26770 26771 26772\n\t\tf 3 -25921 25945 25946\n\t\tmu 0 3 26773 26774 26775\n\t\tf 3 25947 -25945 -25947\n\t\tmu 0 3 26776 26777 26778\n\t\tf 3 -25948 25948 25949\n\t\tmu 0 3 26779 26780 26781\n\t\tf 3 25950 -25943 -25950\n\t\tmu 0 3 26782 26783 26784\n\t\tf 3 -25951 25951 25952\n\t\tmu 0 3 26785 26786 26787\n\t\tf 3 25953 -25940 -25953\n\t\tmu 0 3 26788 26789 26790\n\t\tf 3 25954 -25952 25955\n\t\tmu 0 3 26791 26792 26793\n\t\tf 3 25956 25957 -25956\n\t\tmu 0 3 26794 26795 26796\n\t\tf 3 -25957 -25949 25958\n\t\tmu 0 3 26797 26798 26799\n\t\tf 3 25959 25960 -25959\n\t\tmu 0 3 26800 26801 26802\n\t\tf 3 -25960 -25946 25961\n\t\tmu 0 3 26803 26804 26805\n\t\tf 3 -25918 25962 -25962\n\t\tmu 0 3 26806 26807 26808\n\t\tf 3 25963 -25963 25964\n\t\tmu 0 3 26809 26810 26811\n\t\tf 3 25965 25966 -25965\n\t\tmu 0 3 26812 26813 26814\n\t\tf 3 -25966 -25916 25967\n\t\tmu 0 3 26815 26816 26817\n\t\tf 3 -25908 25968 -25968\n\t\tmu 0 3 26818 26819 26820\n\t\tf 3 -25964 25969 25970\n\t\tmu 0 3 26821 26822 26823\n\t\tf 3 25971 -25961 -25971\n\t\tmu 0 3 26824 26825 26826\n\t\tf 3 -25972 25972 25973\n\t\tmu 0 3 26827 26828 26829\n\t\tf 3 25974 -25958 -25974\n\t\tmu 0 3 26830 26831 26832\n\t\tf 3 25975 -25973 25976\n\t\tmu 0 3 26833 26834 26835;\n\tsetAttr \".fc[14000:14499]\"\n\t\tf 3 25977 -25175 -25977\n\t\tmu 0 3 26836 26837 26838\n\t\tf 3 -25978 -25970 25978\n\t\tmu 0 3 26839 26840 26841\n\t\tf 3 25979 -25171 -25979\n\t\tmu 0 3 26842 26843 26844\n\t\tf 3 -25980 -25967 25980\n\t\tmu 0 3 26845 26846 26847\n\t\tf 3 25981 -25167 -25981\n\t\tmu 0 3 26848 26849 26850\n\t\tf 3 -25982 -25969 25982\n\t\tmu 0 3 26851 26852 26853\n\t\tf 3 -25909 -25163 -25983\n\t\tmu 0 3 26854 26855 26856\n\t\tf 3 -25955 25983 25984\n\t\tmu 0 3 26857 26858 26859\n\t\tf 3 -25975 25985 25986\n\t\tmu 0 3 26860 26861 26862\n\t\tf 3 25987 -25984 -25987\n\t\tmu 0 3 26863 26864 26865\n\t\tf 3 -25988 25988 25989\n\t\tmu 0 3 26866 26867 26868\n\t\tf 3 25990 25991 -25990\n\t\tmu 0 3 26869 26870 26871\n\t\tf 3 25992 -25992 25993\n\t\tmu 0 3 26872 26873 26874\n\t\tf 3 25994 25995 -25994\n\t\tmu 0 3 26875 26876 26877\n\t\tf 3 25996 -25996 25997\n\t\tmu 0 3 26878 26879 26880\n\t\tf 3 -25997 25998 25999\n\t\tmu 0 3 26881 26882 26883\n\t\tf 3 -25937 -25999 26000\n\t\tmu 0 3 26884 26885 26886\n\t\tf 3 26001 26002 -26001\n\t\tmu 0 3 26887 26888 26889\n\t\tf 3 -25936 -26003 26003\n\t\tmu 0 3 26890 26891 26892\n\t\tf 3 26004 -25830 -26004\n\t\tmu 0 3 26893 26894 26895\n\t\tf 3 -26005 26005 26006\n\t\tmu 0 3 26896 26897 26898\n\t\tf 3 26007 -25826 -26007\n\t\tmu 0 3 26899 26900 26901\n\t\tf 3 -26008 26008 26009\n\t\tmu 0 3 26902 26903 26904\n\t\tf 3 26010 -25823 -26010\n\t\tmu 0 3 26905 26906 26907\n\t\tf 3 -26011 26011 26012\n\t\tmu 0 3 26908 26909 26910\n\t\tf 3 26013 -25820 -26013\n\t\tmu 0 3 26911 26912 26913\n\t\tf 3 26014 -26012 26015\n\t\tmu 0 3 26914 26915 26916\n\t\tf 3 26016 26017 -26016\n\t\tmu 0 3 26917 26918 26919\n\t\tf 3 -26017 -26009 26018\n\t\tmu 0 3 26920 26921 26922\n\t\tf 3 26019 26020 -26019\n\t\tmu 0 3 26923 26924 26925\n\t\tf 3 -26020 -26006 26021\n\t\tmu 0 3 26926 26927 26928\n\t\tf 3 -26002 26022 -26022\n\t\tmu 0 3 26929 26930 26931\n\t\tf 3 26023 -26023 -25998\n\t\tmu 0 3 26932 26933 26934\n\t\tf 3 -26024 26024 26025\n\t\tmu 0 3 26935 26936 26937\n\t\tf 3 26026 -26021 -26026\n\t\tmu 0 3 26938 26939 26940\n\t\tf 3 -26027 26027 26028\n\t\tmu 0 3 26941 26942 26943\n\t\tf 3 26029 -26018 -26029\n\t\tmu 0 3 26944 26945 26946\n\t\tf 3 26030 -26028 26031\n\t\tmu 0 3 26947 26948 26949\n\t\tf 3 26032 26033 -26032\n\t\tmu 0 3 26950 26951 26952\n\t\tf 3 -26033 -26025 26034\n\t\tmu 0 3 26953 26954 26955\n\t\tf 3 -25995 26035 -26035\n\t\tmu 0 3 26956 26957 26958\n\t\tf 3 26036 -26036 26037\n\t\tmu 0 3 26959 26960 26961\n\t\tf 3 -25991 26038 -26038\n\t\tmu 0 3 26962 26963 26964\n\t\tf 3 -26037 26039 26040\n\t\tmu 0 3 26965 26966 26967\n\t\tf 3 26041 -26034 -26041\n\t\tmu 0 3 26968 26969 26970\n\t\tf 3 26042 -26040 26043\n\t\tmu 0 3 26971 26972 26973\n\t\tf 3 26044 -25294 -26044\n\t\tmu 0 3 26974 26975 26976\n\t\tf 3 -26045 -26039 26045\n\t\tmu 0 3 26977 26978 26979\n\t\tf 3 26046 -25290 -26046\n\t\tmu 0 3 26980 26981 26982\n\t\tf 3 -26047 -25989 26047\n\t\tmu 0 3 26983 26984 26985\n\t\tf 3 26048 -25286 -26048\n\t\tmu 0 3 26986 26987 26988\n\t\tf 3 -26049 -25986 26049\n\t\tmu 0 3 26989 26990 26991\n\t\tf 3 -25976 -25282 -26050\n\t\tmu 0 3 26992 26993 26994\n\t\tf 3 -26031 26050 26051\n\t\tmu 0 3 26995 26996 26997\n\t\tf 3 26052 26053 -26052\n\t\tmu 0 3 26998 26999 27000\n\t\tf 3 -26030 -26054 26054\n\t\tmu 0 3 27001 27002 27003\n\t\tf 3 26055 26056 -26055\n\t\tmu 0 3 27004 27005 27006\n\t\tf 3 -26015 -26057 26057\n\t\tmu 0 3 27007 27008 27009\n\t\tf 3 26058 26059 -26058\n\t\tmu 0 3 27010 27011 27012\n\t\tf 3 -26014 -26060 26060\n\t\tmu 0 3 27013 27014 27015\n\t\tf 3 26061 -25817 -26061\n\t\tmu 0 3 27016 27017 27018\n\t\tf 3 -26062 26062 26063\n\t\tmu 0 3 27019 27020 27021\n\t\tf 3 26064 -25813 -26064\n\t\tmu 0 3 27022 27023 27024\n\t\tf 3 -26065 26065 26066\n\t\tmu 0 3 27025 27026 27027\n\t\tf 3 26067 -25810 -26067\n\t\tmu 0 3 27028 27029 27030\n\t\tf 3 -26068 26068 26069\n\t\tmu 0 3 27031 27032 27033\n\t\tf 3 26070 -25807 -26070\n\t\tmu 0 3 27034 27035 27036\n\t\tf 3 26071 -26069 26072\n\t\tmu 0 3 27037 27038 27039\n\t\tf 3 26073 26074 -26073\n\t\tmu 0 3 27040 27041 27042\n\t\tf 3 -26074 -26066 26075\n\t\tmu 0 3 27043 27044 27045\n\t\tf 3 26076 26077 -26076\n\t\tmu 0 3 27046 27047 27048\n\t\tf 3 -26077 -26063 26078\n\t\tmu 0 3 27049 27050 27051\n\t\tf 3 -26059 26079 -26079\n\t\tmu 0 3 27052 27053 27054\n\t\tf 3 26080 -26080 26081\n\t\tmu 0 3 27055 27056 27057\n\t\tf 3 -26056 26082 -26082\n\t\tmu 0 3 27058 27059 27060\n\t\tf 3 -26081 26083 26084\n\t\tmu 0 3 27061 27062 27063\n\t\tf 3 26085 -26078 -26085\n\t\tmu 0 3 27064 27065 27066\n\t\tf 3 -26086 26086 26087\n\t\tmu 0 3 27067 27068 27069\n\t\tf 3 26088 -26075 -26088\n\t\tmu 0 3 27070 27071 27072\n\t\tf 3 26089 -26087 26090\n\t\tmu 0 3 27073 27074 27075\n\t\tf 3 26091 26092 -26091\n\t\tmu 0 3 27076 27077 27078\n\t\tf 3 -26092 -26084 26093\n\t\tmu 0 3 27079 27080 27081\n\t\tf 3 26094 26095 -26094\n\t\tmu 0 3 27082 27083 27084\n\t\tf 3 -26095 -26083 26096\n\t\tmu 0 3 27085 27086 27087\n\t\tf 3 -26053 26097 -26097\n\t\tmu 0 3 27088 27089 27090\n\t\tf 3 26098 -26098 26099\n\t\tmu 0 3 27091 27092 27093\n\t\tf 3 26100 26101 -26100\n\t\tmu 0 3 27094 27095 27096\n\t\tf 3 -26101 -26051 26102\n\t\tmu 0 3 27097 27098 27099\n\t\tf 3 -26042 26103 -26103\n\t\tmu 0 3 27100 27101 27102\n\t\tf 3 -26099 26104 26105\n\t\tmu 0 3 27103 27104 27105\n\t\tf 3 26106 -26096 -26106\n\t\tmu 0 3 27106 27107 27108\n\t\tf 3 -26107 26107 26108\n\t\tmu 0 3 27109 27110 27111\n\t\tf 3 26109 -26093 -26109\n\t\tmu 0 3 27112 27113 27114\n\t\tf 3 26110 -26108 26111\n\t\tmu 0 3 27115 27116 27117\n\t\tf 3 26112 -25404 -26112\n\t\tmu 0 3 27118 27119 27120\n\t\tf 3 -26113 -26105 26113\n\t\tmu 0 3 27121 27122 27123\n\t\tf 3 26114 -25400 -26114\n\t\tmu 0 3 27124 27125 27126\n\t\tf 3 -26115 -26102 26115\n\t\tmu 0 3 27127 27128 27129\n\t\tf 3 26116 -25396 -26116\n\t\tmu 0 3 27130 27131 27132\n\t\tf 3 -26117 -26104 26117\n\t\tmu 0 3 27133 27134 27135\n\t\tf 3 -26043 -25392 -26118\n\t\tmu 0 3 27136 27137 27138\n\t\tf 3 -26090 26118 26119\n\t\tmu 0 3 27139 27140 27141\n\t\tf 3 -26110 26120 26121\n\t\tmu 0 3 27142 27143 27144\n\t\tf 3 26122 -26119 -26122\n\t\tmu 0 3 27145 27146 27147\n\t\tf 3 -26123 26123 26124\n\t\tmu 0 3 27148 27149 27150\n\t\tf 3 26125 26126 -26125\n\t\tmu 0 3 27151 27152 27153\n\t\tf 3 26127 -26127 26128\n\t\tmu 0 3 27154 27155 27156\n\t\tf 3 26129 26130 -26129\n\t\tmu 0 3 27157 27158 27159\n\t\tf 3 26131 -26131 26132\n\t\tmu 0 3 27160 27161 27162\n\t\tf 3 -26132 26133 26134\n\t\tmu 0 3 27163 27164 27165\n\t\tf 3 -26072 -26134 26135\n\t\tmu 0 3 27166 27167 27168\n\t\tf 3 26136 26137 -26136\n\t\tmu 0 3 27169 27170 27171\n\t\tf 3 -26071 -26138 26138\n\t\tmu 0 3 27172 27173 27174\n\t\tf 3 26139 -25804 -26139\n\t\tmu 0 3 27175 27176 27177\n\t\tf 3 -26140 26140 26141\n\t\tmu 0 3 27178 27179 27180\n\t\tf 3 26142 -25800 -26142\n\t\tmu 0 3 27181 27182 27183\n\t\tf 3 -26143 26143 26144\n\t\tmu 0 3 27184 27185 27186\n\t\tf 3 26145 -25797 -26145\n\t\tmu 0 3 27187 27188 27189\n\t\tf 3 -26146 26146 26147\n\t\tmu 0 3 27190 27191 27192\n\t\tf 3 26148 -25794 -26148\n\t\tmu 0 3 27193 27194 27195\n\t\tf 3 26149 -26147 26150\n\t\tmu 0 3 27196 27197 27198\n\t\tf 3 26151 26152 -26151\n\t\tmu 0 3 27199 27200 27201\n\t\tf 3 -26152 -26144 26153\n\t\tmu 0 3 27202 27203 27204\n\t\tf 3 26154 26155 -26154\n\t\tmu 0 3 27205 27206 27207\n\t\tf 3 -26155 -26141 26156\n\t\tmu 0 3 27208 27209 27210\n\t\tf 3 -26137 26157 -26157\n\t\tmu 0 3 27211 27212 27213\n\t\tf 3 26158 -26158 -26133\n\t\tmu 0 3 27214 27215 27216\n\t\tf 3 -26159 26159 26160\n\t\tmu 0 3 27217 27218 27219\n\t\tf 3 26161 -26156 -26161\n\t\tmu 0 3 27220 27221 27222\n\t\tf 3 -26162 26162 26163\n\t\tmu 0 3 27223 27224 27225\n\t\tf 3 26164 -26153 -26164\n\t\tmu 0 3 27226 27227 27228\n\t\tf 3 26165 -26163 26166\n\t\tmu 0 3 27229 27230 27231\n\t\tf 3 26167 26168 -26167\n\t\tmu 0 3 27232 27233 27234\n\t\tf 3 -26168 -26160 26169\n\t\tmu 0 3 27235 27236 27237\n\t\tf 3 -26130 26170 -26170\n\t\tmu 0 3 27238 27239 27240\n\t\tf 3 26171 -26171 26172\n\t\tmu 0 3 27241 27242 27243\n\t\tf 3 -26126 26173 -26173\n\t\tmu 0 3 27244 27245 27246\n\t\tf 3 -26172 26174 26175\n\t\tmu 0 3 27247 27248 27249\n\t\tf 3 26176 -26169 -26176\n\t\tmu 0 3 27250 27251 27252\n\t\tf 3 26177 -26175 26178\n\t\tmu 0 3 27253 27254 27255\n\t\tf 3 26179 -25514 -26179\n\t\tmu 0 3 27256 27257 27258\n\t\tf 3 -26180 -26174 26180\n\t\tmu 0 3 27259 27260 27261\n\t\tf 3 26181 -25510 -26181\n\t\tmu 0 3 27262 27263 27264\n\t\tf 3 -26182 -26124 26182\n\t\tmu 0 3 27265 27266 27267\n\t\tf 3 26183 -25506 -26183\n\t\tmu 0 3 27268 27269 27270\n\t\tf 3 -26184 -26121 26184\n\t\tmu 0 3 27271 27272 27273\n\t\tf 3 -26111 -25502 -26185\n\t\tmu 0 3 27274 27275 27276\n\t\tf 3 -26166 26185 26186\n\t\tmu 0 3 27277 27278 27279\n\t\tf 3 26187 26188 -26187\n\t\tmu 0 3 27280 27281 27282\n\t\tf 3 -26165 -26189 26189\n\t\tmu 0 3 27283 27284 27285\n\t\tf 3 26190 26191 -26190\n\t\tmu 0 3 27286 27287 27288\n\t\tf 3 -26150 -26192 26192\n\t\tmu 0 3 27289 27290 27291\n\t\tf 3 26193 26194 -26193\n\t\tmu 0 3 27292 27293 27294\n\t\tf 3 -26149 -26195 26195\n\t\tmu 0 3 27295 27296 27297\n\t\tf 3 26196 -25791 -26196\n\t\tmu 0 3 27298 27299 27300\n\t\tf 3 -26197 26197 26198\n\t\tmu 0 3 27301 27302 27303\n\t\tf 3 26199 -25787 -26199\n\t\tmu 0 3 27304 27305 27306\n\t\tf 3 -26200 26200 26201\n\t\tmu 0 3 27307 27308 27309\n\t\tf 3 26202 -25784 -26202\n\t\tmu 0 3 27310 27311 27312\n\t\tf 3 -26203 26203 26204\n\t\tmu 0 3 27313 27314 27315\n\t\tf 3 26205 -25781 -26205\n\t\tmu 0 3 27316 27317 27318\n\t\tf 3 26206 -26204 26207\n\t\tmu 0 3 27319 27320 27321\n\t\tf 3 26208 26209 -26208\n\t\tmu 0 3 27322 27323 27324\n\t\tf 3 -26209 -26201 26210\n\t\tmu 0 3 27325 27326 27327\n\t\tf 3 26211 26212 -26211\n\t\tmu 0 3 27328 27329 27330\n\t\tf 3 -26212 -26198 26213\n\t\tmu 0 3 27331 27332 27333\n\t\tf 3 -26194 26214 -26214\n\t\tmu 0 3 27334 27335 27336\n\t\tf 3 26215 -26215 26216\n\t\tmu 0 3 27337 27338 27339\n\t\tf 3 -26191 26217 -26217\n\t\tmu 0 3 27340 27341 27342\n\t\tf 3 -26216 26218 26219\n\t\tmu 0 3 27343 27344 27345\n\t\tf 3 26220 -26213 -26220\n\t\tmu 0 3 27346 27347 27348\n\t\tf 3 -26221 26221 26222\n\t\tmu 0 3 27349 27350 27351\n\t\tf 3 26223 -26210 -26223\n\t\tmu 0 3 27352 27353 27354\n\t\tf 3 26224 -26222 26225\n\t\tmu 0 3 27355 27356 27357\n\t\tf 3 26226 26227 -26226\n\t\tmu 0 3 27358 27359 27360\n\t\tf 3 -26227 -26219 26228\n\t\tmu 0 3 27361 27362 27363\n\t\tf 3 26229 26230 -26229\n\t\tmu 0 3 27364 27365 27366\n\t\tf 3 -26230 -26218 26231\n\t\tmu 0 3 27367 27368 27369\n\t\tf 3 -26188 26232 -26232\n\t\tmu 0 3 27370 27371 27372\n\t\tf 3 26233 -26233 26234\n\t\tmu 0 3 27373 27374 27375\n\t\tf 3 26235 26236 -26235\n\t\tmu 0 3 27376 27377 27378\n\t\tf 3 -26236 -26186 26237\n\t\tmu 0 3 27379 27380 27381\n\t\tf 3 -26177 26238 -26238\n\t\tmu 0 3 27382 27383 27384\n\t\tf 3 -26234 26239 26240\n\t\tmu 0 3 27385 27386 27387\n\t\tf 3 26241 -26231 -26241\n\t\tmu 0 3 27388 27389 27390\n\t\tf 3 -26242 26242 26243\n\t\tmu 0 3 27391 27392 27393\n\t\tf 3 26244 -26228 -26244\n\t\tmu 0 3 27394 27395 27396\n\t\tf 3 26245 -26243 26246\n\t\tmu 0 3 27397 27398 27399\n\t\tf 3 26247 -25624 -26247\n\t\tmu 0 3 27400 27401 27402\n\t\tf 3 -26248 -26240 26248\n\t\tmu 0 3 27403 27404 27405\n\t\tf 3 26249 -25620 -26249\n\t\tmu 0 3 27406 27407 27408\n\t\tf 3 -26250 -26237 26250\n\t\tmu 0 3 27409 27410 27411\n\t\tf 3 26251 -25616 -26251\n\t\tmu 0 3 27412 27413 27414\n\t\tf 3 -26252 -26239 26252\n\t\tmu 0 3 27415 27416 27417\n\t\tf 3 -26178 -25612 -26253\n\t\tmu 0 3 27418 27419 27420\n\t\tf 3 26253 -26225 26254\n\t\tmu 0 3 27421 27422 27423\n\t\tf 3 -26224 -26254 26255\n\t\tmu 0 3 27424 27425 27426\n\t\tf 3 -25760 26256 -26256\n\t\tmu 0 3 27427 27428 27429\n\t\tf 3 -26257 -25761 26257\n\t\tmu 0 3 27430 27431 27432\n\t\tf 3 26258 -26207 -26258\n\t\tmu 0 3 27433 27434 27435\n\t\tf 3 -26206 -26259 -25775\n\t\tmu 0 3 27436 27437 27438\n\t\tf 3 -26246 -25732 26259\n\t\tmu 0 3 27439 27440 27441\n\t\tf 3 -25745 26260 -26260\n\t\tmu 0 3 27442 27443 27444\n\t\tf 3 -26245 -26261 26261\n\t\tmu 0 3 27445 27446 27447\n\t\tf 3 26262 -25753 -26255\n\t\tmu 0 3 27448 27449 27450\n\t\tf 3 -25752 -26263 -26262\n\t\tmu 0 3 27451 27452 27453\n\t\tf 3 26263 -25855 26264\n\t\tmu 0 3 27454 27455 27456\n\t\tf 3 -25848 -25144 -26265\n\t\tmu 0 3 27457 27458 27459\n\t\tf 3 -25255 -25827 26265\n\t\tmu 0 3 27460 27461 27462\n\t\tf 3 -25360 -25258 -26266\n\t\tmu 0 3 27463 27464 27465\n\t\tf 3 -25954 26266 -26000\n\t\tmu 0 3 27466 27467 27468\n\t\tf 3 -25993 -26267 -25985\n\t\tmu 0 3 27469 27470 27471\n\t\tf 3 -25365 -25814 26267\n\t\tmu 0 3 27472 27473 27474\n\t\tf 3 -25470 -25368 -26268\n\t\tmu 0 3 27475 27476 27477\n\t\tf 3 -25475 -25801 26268\n\t\tmu 0 3 27478 27479 27480\n\t\tf 3 -25580 -25478 -26269\n\t\tmu 0 3 27481 27482 27483\n\t\tf 3 -26089 26269 -26135\n\t\tmu 0 3 27484 27485 27486\n\t\tf 3 -26128 -26270 -26120\n\t\tmu 0 3 27487 27488 27489\n\t\tf 3 -25585 -25788 26270\n\t\tmu 0 3 27490 27491 27492\n\t\tf 3 -25690 -25588 -26271\n\t\tmu 0 3 27493 27494 27495\n\t\tf 3 -25692 -25778 26271\n\t\tmu 0 3 27496 27497 27498\n\t\tf 3 26272 -25682 -26272\n\t\tmu 0 3 27499 27500 27501\n\t\tf 3 -26273 -25776 26273\n\t\tmu 0 3 27502 27503 27504\n\t\tf 3 26274 -25698 -26274\n\t\tmu 0 3 27505 27506 27507\n\t\tf 3 -25700 -26275 26275\n\t\tmu 0 3 27508 27509 27510\n\t\tf 3 -25772 26276 -26276\n\t\tmu 0 3 27511 27512 27513\n\t\tf 3 26277 26278 26279\n\t\tmu 0 3 27514 27515 27516\n\t\tf 3 26280 26281 -26280\n\t\tmu 0 3 27517 27518 27519\n\t\tf 3 -26281 26282 26283\n\t\tmu 0 3 27520 27521 27522\n\t\tf 3 26284 26285 -26284\n\t\tmu 0 3 27523 27524 27525\n\t\tf 3 26286 -26285 26287\n\t\tmu 0 3 27526 27527 27528\n\t\tf 3 26288 -25066 -26288\n\t\tmu 0 3 27529 27530 27531\n\t\tf 3 -25083 -26289 26289\n\t\tmu 0 3 27532 27533 27534\n\t\tf 3 26290 26291 -26290\n\t\tmu 0 3 27535 27536 27537\n\t\tf 3 -26291 -26283 26292\n\t\tmu 0 3 27538 27539 27540\n\t\tf 3 26293 26294 -26293\n\t\tmu 0 3 27541 27542 27543\n\t\tf 3 26295 -26294 26296\n\t\tmu 0 3 27544 27545 27546\n\t\tf 3 -26279 26297 -26297\n\t\tmu 0 3 27547 27548 27549\n\t\tf 3 26298 -26296 26299\n\t\tmu 0 3 27550 27551 27552\n\t\tf 3 26300 26301 -26300\n\t\tmu 0 3 27553 27554 27555\n\t\tf 3 -26299 26302 26303\n\t\tmu 0 3 27556 27557 27558\n\t\tf 3 26304 -26295 -26304\n\t\tmu 0 3 27559 27560 27561\n\t\tf 3 -26305 26305 26306\n\t\tmu 0 3 27562 27563 27564\n\t\tf 3 -25087 -26292 -26307\n\t\tmu 0 3 27565 27566 27567\n\t\tf 3 -25103 -26306 26307\n\t\tmu 0 3 27568 27569 27570\n\t\tf 3 26308 26309 -26308\n\t\tmu 0 3 27571 27572 27573\n\t\tf 3 -26309 -26303 26310\n\t\tmu 0 3 27574 27575 27576\n\t\tf 3 26311 26312 -26311\n\t\tmu 0 3 27577 27578 27579\n\t\tf 3 26313 -26312 26314\n\t\tmu 0 3 27580 27581 27582\n\t\tf 3 -26302 26315 -26315\n\t\tmu 0 3 27583 27584 27585\n\t\tf 3 26316 -26314 26317\n\t\tmu 0 3 27586 27587 27588\n\t\tf 3 26318 26319 -26318\n\t\tmu 0 3 27589 27590 27591\n\t\tf 3 -26317 26320 26321\n\t\tmu 0 3 27592 27593 27594\n\t\tf 3 26322 -26313 -26322\n\t\tmu 0 3 27595 27596 27597\n\t\tf 3 -26323 26323 26324\n\t\tmu 0 3 27598 27599 27600\n\t\tf 3 -25107 -26310 -26325\n\t\tmu 0 3 27601 27602 27603\n\t\tf 3 -25123 -26324 26325\n\t\tmu 0 3 27604 27605 27606\n\t\tf 3 26326 26327 -26326\n\t\tmu 0 3 27607 27608 27609\n\t\tf 3 -26327 -26321 26328\n\t\tmu 0 3 27610 27611 27612\n\t\tf 3 26329 26330 -26329\n\t\tmu 0 3 27613 27614 27615\n\t\tf 3 26331 -26330 26332\n\t\tmu 0 3 27616 27617 27618\n\t\tf 3 -26320 26333 -26333\n\t\tmu 0 3 27619 27620 27621\n\t\tf 3 26334 -26332 26335\n\t\tmu 0 3 27622 27623 27624\n\t\tf 3 26336 26337 -26336\n\t\tmu 0 3 27625 27626 27627\n\t\tf 3 -26335 26338 26339\n\t\tmu 0 3 27628 27629 27630\n\t\tf 3 26340 -26331 -26340\n\t\tmu 0 3 27631 27632 27633\n\t\tf 3 -26341 26341 26342\n\t\tmu 0 3 27634 27635 27636\n\t\tf 3 -25127 -26328 -26343\n\t\tmu 0 3 27637 27638 27639\n\t\tf 3 -25143 -26342 26343\n\t\tmu 0 3 27640 27641 27642\n\t\tf 3 26344 26345 -26344\n\t\tmu 0 3 27643 27644 27645\n\t\tf 3 -26345 -26339 26346\n\t\tmu 0 3 27646 27647 27648\n\t\tf 3 26347 26348 -26347\n\t\tmu 0 3 27649 27650 27651\n\t\tf 3 26349 -26348 26350\n\t\tmu 0 3 27652 27653 27654\n\t\tf 3 -26338 26351 -26351\n\t\tmu 0 3 27655 27656 27657\n\t\tf 3 26352 26353 26354\n\t\tmu 0 3 27658 27659 27660\n\t\tf 3 26355 -26350 -26355\n\t\tmu 0 3 27661 27662 27663\n\t\tf 3 -26354 26356 26357\n\t\tmu 0 3 27664 27665 27666\n\t\tf 3 26358 26359 -26358\n\t\tmu 0 3 27667 27668 27669\n\t\tf 3 -26360 26360 26361\n\t\tmu 0 3 27670 27671 27672\n\t\tf 3 26362 26363 -26362\n\t\tmu 0 3 27673 27674 27675\n\t\tf 3 -26356 -26364 26364\n\t\tmu 0 3 27676 27677 27678\n\t\tf 3 26365 -26349 -26365\n\t\tmu 0 3 27679 27680 27681\n\t\tf 3 -26363 26366 26367\n\t\tmu 0 3 27682 27683 27684\n\t\tf 3 -25857 26368 -26368\n\t\tmu 0 3 27685 27686 27687\n\t\tf 3 26369 -26359 26370\n\t\tmu 0 3 27688 27689 27690\n\t\tf 3 26371 26372 -26371\n\t\tmu 0 3 27691 27692 27693\n\t\tf 3 -26370 26373 26374\n\t\tmu 0 3 27694 27695 27696\n\t\tf 3 26375 -26361 -26375\n\t\tmu 0 3 27697 27698 27699\n\t\tf 3 -26376 26376 26377\n\t\tmu 0 3 27700 27701 27702\n\t\tf 3 -25861 -26367 -26378\n\t\tmu 0 3 27703 27704 27705\n\t\tf 3 -25877 -26377 26378\n\t\tmu 0 3 27706 27707 27708\n\t\tf 3 26379 26380 -26379\n\t\tmu 0 3 27709 27710 27711\n\t\tf 3 -26380 -26374 26381\n\t\tmu 0 3 27712 27713 27714\n\t\tf 3 26382 26383 -26382\n\t\tmu 0 3 27715 27716 27717\n\t\tf 3 26384 -26383 26385\n\t\tmu 0 3 27718 27719 27720\n\t\tf 3 -26373 26386 -26386\n\t\tmu 0 3 27721 27722 27723\n\t\tf 3 26387 -26385 26388\n\t\tmu 0 3 27724 27725 27726\n\t\tf 3 26389 26390 -26389\n\t\tmu 0 3 27727 27728 27729\n\t\tf 3 -26388 26391 26392\n\t\tmu 0 3 27730 27731 27732\n\t\tf 3 26393 -26384 -26393\n\t\tmu 0 3 27733 27734 27735\n\t\tf 3 -26394 26394 26395\n\t\tmu 0 3 27736 27737 27738\n\t\tf 3 -25881 -26381 -26396\n\t\tmu 0 3 27739 27740 27741\n\t\tf 3 -25897 -26395 26396\n\t\tmu 0 3 27742 27743 27744\n\t\tf 3 26397 26398 -26397\n\t\tmu 0 3 27745 27746 27747\n\t\tf 3 -26398 -26392 26399\n\t\tmu 0 3 27748 27749 27750\n\t\tf 3 26400 26401 -26400\n\t\tmu 0 3 27751 27752 27753\n\t\tf 3 26402 -26401 26403\n\t\tmu 0 3 27754 27755 27756\n\t\tf 3 -26391 26404 -26404\n\t\tmu 0 3 27757 27758 27759\n\t\tf 3 26405 -26403 26406\n\t\tmu 0 3 27760 27761 27762\n\t\tf 3 26407 26408 -26407\n\t\tmu 0 3 27763 27764 27765\n\t\tf 3 -26406 26409 26410\n\t\tmu 0 3 27766 27767 27768\n\t\tf 3 26411 -26402 -26411\n\t\tmu 0 3 27769 27770 27771\n\t\tf 3 -26412 26412 26413\n\t\tmu 0 3 27772 27773 27774\n\t\tf 3 -25901 -26399 -26414\n\t\tmu 0 3 27775 27776 27777\n\t\tf 3 -25915 -26413 26414\n\t\tmu 0 3 27778 27779 27780\n\t\tf 3 26415 -26287 -26415\n\t\tmu 0 3 27781 27782 27783\n\t\tf 3 -26416 -26410 26416\n\t\tmu 0 3 27784 27785 27786\n\t\tf 3 26417 -26286 -26417\n\t\tmu 0 3 27787 27788 27789\n\t\tf 3 -26282 -26418 26418\n\t\tmu 0 3 27790 27791 27792\n\t\tf 3 -26409 26419 -26419\n\t\tmu 0 3 27793 27794 27795\n\t\tf 3 -26366 -26369 26420\n\t\tmu 0 3 27796 27797 27798\n\t\tf 3 -26264 -26346 -26421\n\t\tmu 0 3 27799 27800 27801\n\t\tf 3 26421 26422 26423\n\t\tmu 0 3 27802 27803 27804\n\t\tf 3 26424 26425 -26424\n\t\tmu 0 3 27805 27806 27807\n\t\tf 3 -26423 26426 26427\n\t\tmu 0 3 27808 27809 27810\n\t\tf 3 26428 26429 -26428\n\t\tmu 0 3 27811 27812 27813\n\t\tf 3 -26429 26430 26431\n\t\tmu 0 3 27814 27815 27816\n\t\tf 3 26432 26433 -26432\n\t\tmu 0 3 27817 27818 27819\n\t\tf 3 26434 -26431 26435\n\t\tmu 0 3 27820 27821 27822\n\t\tf 3 26436 26437 -26436\n\t\tmu 0 3 27823 27824 27825\n\t\tf 3 -26437 -26427 26438\n\t\tmu 0 3 27826 27827 27828\n\t\tf 3 26439 26440 -26439\n\t\tmu 0 3 27829 27830 27831\n\t\tf 3 -26440 -26422 26441\n\t\tmu 0 3 27832 27833 27834\n\t\tf 3 26442 26443 -26442\n\t\tmu 0 3 27835 27836 27837\n\t\tf 3 26444 -26444 26445\n\t\tmu 0 3 27838 27839 27840\n\t\tf 3 26446 26447 -26446\n\t\tmu 0 3 27841 27842 27843\n\t\tf 3 -26445 26448 26449\n\t\tmu 0 3 27844 27845 27846\n\t\tf 3 26450 -26441 -26450\n\t\tmu 0 3 27847 27848 27849\n\t\tf 3 -26451 26451 26452\n\t\tmu 0 3 27850 27851 27852\n\t\tf 3 26453 -26438 -26453\n\t\tmu 0 3 27853 27854 27855\n\t\tf 3 26454 -26452 26455\n\t\tmu 0 3 27856 27857 27858\n\t\tf 3 26456 26457 -26456\n\t\tmu 0 3 27859 27860 27861\n\t\tf 3 -26457 -26449 26458\n\t\tmu 0 3 27862 27863 27864\n\t\tf 3 26459 26460 -26459\n\t\tmu 0 3 27865 27866 27867\n\t\tf 3 -26460 -26448 26461\n\t\tmu 0 3 27868 27869 27870\n\t\tf 3 26462 26463 -26462\n\t\tmu 0 3 27871 27872 27873\n\t\tf 3 26464 -26464 26465\n\t\tmu 0 3 27874 27875 27876\n\t\tf 3 26466 26467 -26466\n\t\tmu 0 3 27877 27878 27879\n\t\tf 3 -26465 26468 26469\n\t\tmu 0 3 27880 27881 27882\n\t\tf 3 26470 -26461 -26470\n\t\tmu 0 3 27883 27884 27885\n\t\tf 3 -26471 26471 26472\n\t\tmu 0 3 27886 27887 27888\n\t\tf 3 26473 -26458 -26473\n\t\tmu 0 3 27889 27890 27891\n\t\tf 3 26474 -26472 26475\n\t\tmu 0 3 27892 27893 27894\n\t\tf 3 26476 26477 -26476\n\t\tmu 0 3 27895 27896 27897\n\t\tf 3 -26477 -26469 26478\n\t\tmu 0 3 27898 27899 27900\n\t\tf 3 26479 26480 -26479\n\t\tmu 0 3 27901 27902 27903\n\t\tf 3 -26480 -26468 26481\n\t\tmu 0 3 27904 27905 27906\n\t\tf 3 26482 26483 -26482\n\t\tmu 0 3 27907 27908 27909\n\t\tf 3 26484 -26484 26485\n\t\tmu 0 3 27910 27911 27912\n\t\tf 3 26486 26487 -26486\n\t\tmu 0 3 27913 27914 27915\n\t\tf 3 -26485 26488 26489\n\t\tmu 0 3 27916 27917 27918\n\t\tf 3 26490 -26481 -26490\n\t\tmu 0 3 27919 27920 27921\n\t\tf 3 -26491 26491 26492\n\t\tmu 0 3 27922 27923 27924\n\t\tf 3 26493 -26478 -26493\n\t\tmu 0 3 27925 27926 27927\n\t\tf 3 26494 -26492 26495\n\t\tmu 0 3 27928 27929 27930\n\t\tf 3 26496 26497 -26496\n\t\tmu 0 3 27931 27932 27933\n\t\tf 3 -26497 -26489 26498\n\t\tmu 0 3 27934 27935 27936\n\t\tf 3 26499 26500 -26499\n\t\tmu 0 3 27937 27938 27939\n\t\tf 3 -26500 -26488 26501\n\t\tmu 0 3 27940 27941 27942\n\t\tf 3 26502 26503 -26502\n\t\tmu 0 3 27943 27944 27945\n\t\tf 3 -26483 26504 26505\n\t\tmu 0 3 27946 27947 27948\n\t\tf 3 26506 -26505 26507\n\t\tmu 0 3 27949 27950 27951\n\t\tf 3 -26507 26508 26509\n\t\tmu 0 3 27952 27953 27954\n\t\tf 3 26510 -26509 26511\n\t\tmu 0 3 27955 27956 27957\n\t\tf 3 26512 26513 -26512\n\t\tmu 0 3 27958 27959 27960\n\t\tf 3 26514 -26514 26515\n\t\tmu 0 3 27961 27962 27963\n\t\tf 3 26516 26517 -26516\n\t\tmu 0 3 27964 27965 27966\n\t\tf 3 26518 -26518 26519\n\t\tmu 0 3 27967 27968 27969\n\t\tf 3 26520 26521 -26520\n\t\tmu 0 3 27970 27971 27972\n\t\tf 3 -26522 26522 26523\n\t\tmu 0 3 27973 27974 27975\n\t\tf 3 26524 26525 -26524\n\t\tmu 0 3 27976 27977 27978\n\t\tf 3 26526 -26523 26527\n\t\tmu 0 3 27979 27980 27981\n\t\tf 3 26528 -26426 -26528\n\t\tmu 0 3 27982 27983 27984\n\t\tf 3 -26443 -26529 26529\n\t\tmu 0 3 27985 27986 27987\n\t\tf 3 -26521 26530 -26530\n\t\tmu 0 3 27988 27989 27990\n\t\tf 3 -26517 26531 26532\n\t\tmu 0 3 27991 27992 27993\n\t\tf 3 -26447 -26531 -26533\n\t\tmu 0 3 27994 27995 27996\n\t\tf 3 -26463 -26532 26533\n\t\tmu 0 3 27997 27998 27999\n\t\tf 3 -26513 26534 -26534\n\t\tmu 0 3 28000 28001 28002\n\t\tf 3 -26467 -26535 -26508\n\t\tmu 0 3 28003 28004 28005\n\t\tf 3 26535 -26527 26536\n\t\tmu 0 3 28006 28007 28008\n\t\tf 3 26537 26538 -26537\n\t\tmu 0 3 28009 28010 28011\n\t\tf 3 -26538 -26425 26539\n\t\tmu 0 3 28012 28013 28014\n\t\tf 3 26540 26541 -26540\n\t\tmu 0 3 28015 28016 28017\n\t\tf 3 26542 -26542 26543\n\t\tmu 0 3 28018 28019 28020\n\t\tf 3 26544 26545 -26544\n\t\tmu 0 3 28021 28022 28023\n\t\tf 3 26546 -26546 26547\n\t\tmu 0 3 28024 28025 28026\n\t\tf 3 26548 26549 -26548\n\t\tmu 0 3 28027 28028 28029\n\t\tf 3 26550 -26550 26551\n\t\tmu 0 3 28030 28031 28032\n\t\tf 3 26552 26553 -26552\n\t\tmu 0 3 28033 28034 28035\n\t\tf 3 26554 -26554 26555\n\t\tmu 0 3 28036 28037 28038\n\t\tf 3 26556 26557 -26556\n\t\tmu 0 3 28039 28040 28041\n\t\tf 3 26558 -26558 26559\n\t\tmu 0 3 28042 28043 28044\n\t\tf 3 26560 26561 -26560\n\t\tmu 0 3 28045 28046 28047\n\t\tf 3 26562 -26562 26563\n\t\tmu 0 3 28048 28049 28050\n\t\tf 3 26564 26565 -26564\n\t\tmu 0 3 28051 28052 28053\n\t\tf 3 26566 -26566 26567\n\t\tmu 0 3 28054 28055 28056\n\t\tf 3 26568 -26504 -26568\n\t\tmu 0 3 28057 28058 28059\n\t\tf 3 -26565 26569 26570\n\t\tmu 0 3 28060 28061 28062\n\t\tf 3 26571 26572 -26571\n\t\tmu 0 3 28063 28064 28065\n\t\tf 3 -26569 -26573 26573\n\t\tmu 0 3 28066 28067 28068\n\t\tf 3 26574 -26501 -26574\n\t\tmu 0 3 28069 1087 28070\n\t\tf 3 -26572 26575 26576\n\t\tmu 0 3 28071 28072 28073\n\t\tf 3 26577 26578 -26577\n\t\tmu 0 3 28074 28075 28076\n\t\tf 3 -26575 -26579 26579\n\t\tmu 0 3 28077 28078 28079\n\t\tf 3 26580 -26498 -26580\n\t\tmu 0 3 28080 28081 28082\n\t\tf 3 -26561 26581 26582\n\t\tmu 0 3 28083 28084 28085\n\t\tf 3 26583 -26570 -26583\n\t\tmu 0 3 28086 28087 28088\n\t\tf 3 -26584 26584 26585\n\t\tmu 0 3 28089 28090 28091\n\t\tf 3 26586 -26576 -26586\n\t\tmu 0 3 28092 28093 28094\n\t\tf 3 26587 -26585 26588\n\t\tmu 0 3 28095 28096 28097\n\t\tf 3 26589 26590 -26589\n\t\tmu 0 3 28098 28099 28100\n\t\tf 3 -26590 -26582 26591\n\t\tmu 0 3 28101 28102 28103\n\t\tf 3 -26557 26592 -26592\n\t\tmu 0 3 28104 28105 28106\n\t\tf 3 26593 -26593 26594\n\t\tmu 0 3 28107 28108 28109\n\t\tf 3 -26553 26595 -26595\n\t\tmu 0 3 28110 28111 28112\n\t\tf 3 -26594 26596 26597\n\t\tmu 0 3 28113 28114 28115\n\t\tf 3 26598 -26591 -26598\n\t\tmu 0 3 28116 28117 28118\n\t\tf 3 26599 -26597 26600\n\t\tmu 0 3 28119 28120 28121\n\t\tf 3 26601 26602 -26601\n\t\tmu 0 3 28122 28123 28124\n\t\tf 3 -26602 -26596 26603\n\t\tmu 0 3 28125 28126 28127\n\t\tf 3 -26549 26604 -26604\n\t\tmu 0 3 28128 28129 28130\n\t\tf 3 26605 -26605 26606\n\t\tmu 0 3 28131 28132 28133\n\t\tf 3 -26545 26607 -26607\n\t\tmu 0 3 28134 28135 28136\n\t\tf 3 -26606 26608 26609\n\t\tmu 0 3 28137 28138 28139\n\t\tf 3 26610 -26603 -26610\n\t\tmu 0 3 28140 28141 28142\n\t\tf 3 26611 -26609 26612\n\t\tmu 0 3 28143 28144 28145\n\t\tf 3 26613 -26434 -26613\n\t\tmu 0 3 28146 28147 28148\n\t\tf 3 -26614 -26608 26614\n\t\tmu 0 3 28149 28150 28151\n\t\tf 3 -26541 -26430 -26615\n\t\tmu 0 3 28152 28153 28154\n\t\tf 3 -26599 26615 26616\n\t\tmu 0 3 28155 28156 28157\n\t\tf 3 26617 -26616 26618\n\t\tmu 0 3 28158 28159 28160\n\t\tf 3 -26600 26619 -26619\n\t\tmu 0 3 28161 28162 28163\n\t\tf 3 -26618 26620 26621\n\t\tmu 0 3 28164 28165 28166\n\t\tf 3 26622 26623 -26622\n\t\tmu 0 3 28167 28168 28169\n\t\tf 3 26624 -26624 26625\n\t\tmu 0 3 28170 28171 28172\n\t\tf 3 -26625 26626 -26617\n\t\tmu 0 3 28173 28174 28175\n\t\tf 3 -26588 -26627 26627\n\t\tmu 0 3 28176 28177 28178\n\t\tf 3 26628 26629 -26628\n\t\tmu 0 3 28179 28180 28181\n\t\tf 3 -26587 -26630 26630\n\t\tmu 0 3 28182 28183 28184\n\t\tf 3 26631 26632 -26631\n\t\tmu 0 3 28185 28186 28187\n\t\tf 3 -26578 -26633 26633\n\t\tmu 0 3 28188 28189 28190\n\t\tf 3 26634 26635 -26634\n\t\tmu 0 3 28191 28192 28193\n\t\tf 3 -26635 26636 26637\n\t\tmu 0 3 28194 28195 28196\n\t\tf 3 26638 26639 -26638\n\t\tmu 0 3 28197 28198 28199\n\t\tf 3 -26639 26640 26641\n\t\tmu 0 3 28200 28201 28202\n\t\tf 3 26642 26643 -26642\n\t\tmu 0 3 28203 28204 28205\n\t\tf 3 -26643 26644 26645\n\t\tmu 0 3 28206 28207 28208\n\t\tf 3 26646 26647 -26646\n\t\tmu 0 3 28209 28210 28211\n\t\tf 3 -26647 26648 26649\n\t\tmu 0 3 28212 28213 28214\n\t\tf 3 26650 26651 -26650\n\t\tmu 0 3 28215 28216 28217\n\t\tf 3 -26651 26652 26653\n\t\tmu 0 3 28218 28219 28220\n\t\tf 3 26654 26655 -26654\n\t\tmu 0 3 28221 28222 28223\n\t\tf 3 -26655 26656 26657\n\t\tmu 0 3 28224 28225 28226\n\t\tf 3 26658 26659 -26658\n\t\tmu 0 3 28227 28228 28229\n\t\tf 3 -26659 26660 26661\n\t\tmu 0 3 28230 28231 28232\n\t\tf 3 26662 26663 -26662\n\t\tmu 0 3 28233 28234 28235\n\t\tf 3 26664 -26649 26665\n\t\tmu 0 3 28236 28237 28238\n\t\tf 3 26666 26667 -26666\n\t\tmu 0 3 28239 28240 28241\n\t\tf 3 -26667 -26645 26668\n\t\tmu 0 3 28242 28243 28244\n\t\tf 3 -26665 26669 26670\n\t\tmu 0 3 28245 28246 28247\n\t\tf 3 26671 -26653 -26671\n\t\tmu 0 3 28248 28249 28250\n\t\tf 3 -26672 26672 26673\n\t\tmu 0 3 28251 28252 28253\n\t\tf 3 26674 -26657 -26674\n\t\tmu 0 3 28254 28255 28256\n\t\tf 3 -26675 26675 26676\n\t\tmu 0 3 28257 28258 28259\n\t\tf 3 26677 -26661 -26677\n\t\tmu 0 3 28260 28261 28262\n\t\tf 3 26678 -26676 26679\n\t\tmu 0 3 28263 28264 28265\n\t\tf 3 26680 26681 -26680\n\t\tmu 0 3 28266 28267 28268\n\t\tf 3 -26681 -26673 26682\n\t\tmu 0 3 28269 28270 28271\n\t\tf 3 26683 26684 -26683\n\t\tmu 0 3 28272 28273 28274\n\t\tf 3 -26684 -26670 26685\n\t\tmu 0 3 28275 28276 28277\n\t\tf 3 26686 26687 -26686\n\t\tmu 0 3 28278 28279 28280\n\t\tf 3 -26687 -26668 26688\n\t\tmu 0 3 28281 28282 28283\n\t\tf 3 26689 26690 -26689\n\t\tmu 0 3 28284 28285 28286\n\t\tf 3 26691 -26691 26692\n\t\tmu 0 3 28287 28288 28289\n\t\tf 3 26693 26694 -26693\n\t\tmu 0 3 28290 28291 28292\n\t\tf 3 -26692 26695 26696\n\t\tmu 0 3 28293 28294 28295\n\t\tf 3 26697 -26688 -26697\n\t\tmu 0 3 28296 28297 28298\n\t\tf 3 -26698 26698 26699\n\t\tmu 0 3 28299 28300 28301\n\t\tf 3 26700 -26685 -26700\n\t\tmu 0 3 28302 28303 28304\n\t\tf 3 -26701 26701 26702\n\t\tmu 0 3 28305 28306 28307\n\t\tf 3 26703 -26682 -26703\n\t\tmu 0 3 28308 28309 28310\n\t\tf 3 26704 -26702 26705\n\t\tmu 0 3 28311 28312 28313\n\t\tf 3 26706 26707 -26706\n\t\tmu 0 3 28314 28315 28316\n\t\tf 3 -26707 -26699 26708\n\t\tmu 0 3 28317 28318 28319\n\t\tf 3 26709 26710 -26709\n\t\tmu 0 3 28320 28321 28322\n\t\tf 3 -26710 -26696 26711\n\t\tmu 0 3 28323 28324 28325\n\t\tf 3 26712 26713 -26712\n\t\tmu 0 3 28326 28327 28328\n\t\tf 3 -26713 -26695 26714\n\t\tmu 0 3 28329 28330 28331\n\t\tf 3 26715 26716 -26715\n\t\tmu 0 3 28332 28333 28334;\n\tsetAttr \".fc[14500:14999]\"\n\t\tf 3 26717 -26717 26718\n\t\tmu 0 3 28335 28336 28337\n\t\tf 3 26719 26720 -26719\n\t\tmu 0 3 28338 28339 28340\n\t\tf 3 -26718 26721 26722\n\t\tmu 0 3 28341 28342 28343\n\t\tf 3 26723 -26714 -26723\n\t\tmu 0 3 28344 28345 28346\n\t\tf 3 -26724 26724 26725\n\t\tmu 0 3 28347 28348 28349\n\t\tf 3 26726 -26711 -26726\n\t\tmu 0 3 28350 28351 28352\n\t\tf 3 -26727 26727 26728\n\t\tmu 0 3 28353 28354 28355\n\t\tf 3 26729 -26708 -26729\n\t\tmu 0 3 28356 28357 28358\n\t\tf 3 26730 -26728 26731\n\t\tmu 0 3 28359 28360 28361\n\t\tf 3 26732 26733 -26732\n\t\tmu 0 3 28362 28363 28364\n\t\tf 3 -26733 -26725 26734\n\t\tmu 0 3 28365 28366 28367\n\t\tf 3 26735 -26734 26736\n\t\tmu 0 3 28368 28369 28370\n\t\tf 3 26737 26738 -26737\n\t\tmu 0 3 28371 28372 28373\n\t\tf 3 -26738 26739 26740\n\t\tmu 0 3 28374 28375 28376\n\t\tf 3 26741 -26740 -26735\n\t\tmu 0 3 28377 28378 28379\n\t\tf 3 -26742 -26722 26742\n\t\tmu 0 3 28380 28381 28382\n\t\tf 3 26743 26744 -26741\n\t\tmu 0 3 28383 28384 28385\n\t\tf 3 -26744 26745 26746\n\t\tmu 0 3 28386 28387 28388\n\t\tf 3 26747 -26746 -26743\n\t\tmu 0 3 28389 28390 28391\n\t\tf 3 -26748 -26721 26748\n\t\tmu 0 3 28392 28393 28394\n\t\tf 3 26749 26750 -26747\n\t\tmu 0 3 28395 28396 28397\n\t\tf 3 -26750 26751 26752\n\t\tmu 0 3 28398 28399 28400\n\t\tf 3 26753 -26752 -26749\n\t\tmu 0 3 28401 28402 28403\n\t\tf 3 26754 26755 -26753\n\t\tmu 0 3 28404 28405 28406\n\t\tf 3 26756 -26739 26757\n\t\tmu 0 3 28407 28408 28409\n\t\tf 3 26758 26759 -26758\n\t\tmu 0 3 28410 28411 28412\n\t\tf 3 -26759 -26745 26760\n\t\tmu 0 3 28413 28414 28415\n\t\tf 3 26761 26762 -26761\n\t\tmu 0 3 28416 28417 28418\n\t\tf 3 -26762 -26751 26763\n\t\tmu 0 3 28419 28420 28421\n\t\tf 3 26764 26765 -26764\n\t\tmu 0 3 28422 28423 28424\n\t\tf 3 -26765 -26756 26766\n\t\tmu 0 3 28425 28426 28427\n\t\tf 3 26767 26768 -26767\n\t\tmu 0 3 28428 28429 28430\n\t\tf 3 26769 -26769 26770\n\t\tmu 0 3 28431 28432 28433\n\t\tf 3 26771 26772 -26771\n\t\tmu 0 3 28434 28435 28436\n\t\tf 3 -26770 26773 26774\n\t\tmu 0 3 28437 28438 28439\n\t\tf 3 26775 -26766 -26775\n\t\tmu 0 3 28440 28441 28442\n\t\tf 3 -26776 26776 26777\n\t\tmu 0 3 28443 28444 28445\n\t\tf 3 26778 -26763 -26778\n\t\tmu 0 3 28446 28447 28448\n\t\tf 3 -26779 26779 26780\n\t\tmu 0 3 28449 28450 28451\n\t\tf 3 26781 -26760 -26781\n\t\tmu 0 3 28452 28453 28454\n\t\tf 3 26782 -26780 26783\n\t\tmu 0 3 28455 28456 28457\n\t\tf 3 26784 26785 -26784\n\t\tmu 0 3 28458 28459 28460\n\t\tf 3 -26785 -26777 26786\n\t\tmu 0 3 28461 28462 28463\n\t\tf 3 26787 26788 -26787\n\t\tmu 0 3 28464 28465 28466\n\t\tf 3 -26788 -26774 26789\n\t\tmu 0 3 28467 28468 28469\n\t\tf 3 26790 26791 -26790\n\t\tmu 0 3 28470 28471 28472\n\t\tf 3 -26791 -26773 26792\n\t\tmu 0 3 28473 28474 28475\n\t\tf 3 26793 26794 -26793\n\t\tmu 0 3 28476 28477 28478\n\t\tf 3 26795 -26795 26796\n\t\tmu 0 3 28479 28480 28481\n\t\tf 3 26797 26798 -26797\n\t\tmu 0 3 28482 28483 28484\n\t\tf 3 -26796 26799 26800\n\t\tmu 0 3 28485 28486 28487\n\t\tf 3 26801 -26792 -26801\n\t\tmu 0 3 28488 28489 28490\n\t\tf 3 -26802 26802 26803\n\t\tmu 0 3 28491 28492 28493\n\t\tf 3 26804 -26789 -26804\n\t\tmu 0 3 28494 28495 28496\n\t\tf 3 -26805 26805 26806\n\t\tmu 0 3 28497 28498 28499\n\t\tf 3 26807 -26786 -26807\n\t\tmu 0 3 28500 28501 28502\n\t\tf 3 26808 -26806 26809\n\t\tmu 0 3 28503 28504 28505\n\t\tf 3 26810 26811 -26810\n\t\tmu 0 3 28506 28507 28508\n\t\tf 3 -26811 -26803 26812\n\t\tmu 0 3 28509 28510 28511\n\t\tf 3 26813 26814 -26813\n\t\tmu 0 3 28512 28513 28514\n\t\tf 3 -26814 -26800 26815\n\t\tmu 0 3 28515 28516 28517\n\t\tf 3 26816 26817 -26816\n\t\tmu 0 3 28518 28519 28520\n\t\tf 3 -26817 -26799 26818\n\t\tmu 0 3 28521 28522 28523\n\t\tf 3 26819 26820 -26819\n\t\tmu 0 3 28524 28525 28526\n\t\tf 3 26821 -26821 26822\n\t\tmu 0 3 28527 28528 28529\n\t\tf 3 26823 26824 -26823\n\t\tmu 0 3 28530 28531 28532\n\t\tf 3 -26822 26825 26826\n\t\tmu 0 3 28533 28534 28535\n\t\tf 3 26827 -26818 -26827\n\t\tmu 0 3 28536 28537 28538\n\t\tf 3 -26828 26828 26829\n\t\tmu 0 3 28539 28540 28541\n\t\tf 3 26830 -26815 -26830\n\t\tmu 0 3 28542 28543 28544\n\t\tf 3 -26831 26831 26832\n\t\tmu 0 3 28545 28546 28547\n\t\tf 3 26833 -26812 -26833\n\t\tmu 0 3 28548 28549 28550\n\t\tf 3 26834 -26832 26835\n\t\tmu 0 3 28551 28552 28553\n\t\tf 3 26836 26837 -26836\n\t\tmu 0 3 28554 28555 28556\n\t\tf 3 -26837 -26829 26838\n\t\tmu 0 3 28557 28558 28559\n\t\tf 3 26839 26840 -26839\n\t\tmu 0 3 28560 28561 28562\n\t\tf 3 -26840 -26826 26841\n\t\tmu 0 3 28563 28564 28565\n\t\tf 3 26842 26843 -26842\n\t\tmu 0 3 28566 28567 28568\n\t\tf 3 -26843 -26825 26844\n\t\tmu 0 3 28569 28570 28571\n\t\tf 3 26845 26846 -26845\n\t\tmu 0 3 28572 28573 28574\n\t\tf 3 26847 -26847 26848\n\t\tmu 0 3 28575 28576 28577\n\t\tf 3 26849 -26652 -26849\n\t\tmu 0 3 28578 28579 28580\n\t\tf 3 -26848 -26656 26850\n\t\tmu 0 3 28581 28582 28583\n\t\tf 3 26851 -26844 -26851\n\t\tmu 0 3 28584 28585 28586\n\t\tf 3 26852 -26841 26853\n\t\tmu 0 3 28587 28588 28589\n\t\tf 3 -26852 -26660 -26854\n\t\tmu 0 3 28590 28591 28592\n\t\tf 3 26854 -26838 26855\n\t\tmu 0 3 28593 28594 28595\n\t\tf 3 -26853 -26664 -26856\n\t\tmu 0 3 28596 28597 28598\n\t\tf 3 -26835 26856 26857\n\t\tmu 0 3 28599 28600 28601\n\t\tf 3 26858 26859 -26858\n\t\tmu 0 3 28602 28603 28604\n\t\tf 3 -26834 -26860 26860\n\t\tmu 0 3 28605 28606 28607\n\t\tf 3 26861 26862 -26861\n\t\tmu 0 3 28608 28609 28610\n\t\tf 3 -26809 -26863 26863\n\t\tmu 0 3 28611 28612 28613\n\t\tf 3 26864 26865 -26864\n\t\tmu 0 3 28614 28615 28616\n\t\tf 3 -26808 -26866 26866\n\t\tmu 0 3 28617 28618 28619\n\t\tf 3 26867 26868 -26867\n\t\tmu 0 3 28620 28621 28622\n\t\tf 3 -26783 -26869 26869\n\t\tmu 0 3 28623 28624 28625\n\t\tf 3 26870 26871 -26870\n\t\tmu 0 3 28626 28627 28628\n\t\tf 3 -26782 -26872 26872\n\t\tmu 0 3 28629 28630 28631\n\t\tf 3 26873 26874 -26873\n\t\tmu 0 3 28632 28633 28634\n\t\tf 3 -26757 -26875 26875\n\t\tmu 0 3 28635 28636 28637\n\t\tf 3 26876 26877 -26876\n\t\tmu 0 3 28638 28639 28640\n\t\tf 3 -26736 -26878 26878\n\t\tmu 0 3 28641 28642 28643\n\t\tf 3 26879 26880 -26879\n\t\tmu 0 3 28644 28645 28646\n\t\tf 3 -26880 26881 26882\n\t\tmu 0 3 28647 28648 28649\n\t\tf 3 26883 26884 -26883\n\t\tmu 0 3 28650 28651 28652\n\t\tf 3 -26884 26885 26886\n\t\tmu 0 3 28653 28654 28655\n\t\tf 3 26887 26888 -26887\n\t\tmu 0 3 28656 28657 28658\n\t\tf 3 -26888 26889 26890\n\t\tmu 0 3 28659 28660 28661\n\t\tf 3 26891 26892 -26891\n\t\tmu 0 3 28662 28663 28664\n\t\tf 3 26893 -26890 26894\n\t\tmu 0 3 28665 28666 28667\n\t\tf 3 26895 26896 -26895\n\t\tmu 0 3 28668 28669 28670\n\t\tf 3 -26896 -26886 26897\n\t\tmu 0 3 28671 28672 28673\n\t\tf 3 26898 26899 -26898\n\t\tmu 0 3 28674 28675 28676\n\t\tf 3 -26899 -26882 26900\n\t\tmu 0 3 28677 28678 28679\n\t\tf 3 -26877 26901 -26901\n\t\tmu 0 3 28680 28681 28682\n\t\tf 3 -26874 26902 26903\n\t\tmu 0 3 28683 28684 28685\n\t\tf 3 26904 -26902 -26904\n\t\tmu 0 3 28686 28687 28688\n\t\tf 3 -26905 26905 26906\n\t\tmu 0 3 28689 28690 28691\n\t\tf 3 26907 26908 -26907\n\t\tmu 0 3 28692 28693 28694\n\t\tf 3 -26908 26909 26910\n\t\tmu 0 3 28695 28696 28697\n\t\tf 3 26911 26912 -26911\n\t\tmu 0 3 28698 28699 28700\n\t\tf 3 26913 -26910 26914\n\t\tmu 0 3 28701 28702 28703\n\t\tf 3 26915 26916 -26915\n\t\tmu 0 3 28704 28705 28706\n\t\tf 3 -26916 -26906 26917\n\t\tmu 0 3 28707 28708 28709\n\t\tf 3 26918 26919 -26918\n\t\tmu 0 3 28710 28711 28712\n\t\tf 3 -26919 -26903 26920\n\t\tmu 0 3 28713 28714 28715\n\t\tf 3 -26871 26921 -26921\n\t\tmu 0 3 28716 28717 28718\n\t\tf 3 26922 -26922 26923\n\t\tmu 0 3 28719 28720 28721\n\t\tf 3 -26868 26924 -26924\n\t\tmu 0 3 28722 28723 28724\n\t\tf 3 -26923 26925 26926\n\t\tmu 0 3 28725 28726 28727\n\t\tf 3 26927 -26920 -26927\n\t\tmu 0 3 28728 28729 28730\n\t\tf 3 -26928 26928 26929\n\t\tmu 0 3 28731 28732 28733\n\t\tf 3 26930 -26917 -26930\n\t\tmu 0 3 28734 28735 28736\n\t\tf 3 26931 -26929 26932\n\t\tmu 0 3 28737 28738 28739\n\t\tf 3 26933 26934 -26933\n\t\tmu 0 3 28740 28741 28742\n\t\tf 3 -26934 -26926 26935\n\t\tmu 0 3 28743 28744 28745\n\t\tf 3 26936 26937 -26936\n\t\tmu 0 3 28746 28747 28748\n\t\tf 3 -26937 -26925 26938\n\t\tmu 0 3 28749 28750 28751\n\t\tf 3 -26865 26939 -26939\n\t\tmu 0 3 28752 28753 28754\n\t\tf 3 26940 -26940 26941\n\t\tmu 0 3 28755 28756 28757\n\t\tf 3 -26862 26942 -26942\n\t\tmu 0 3 28758 28759 28760\n\t\tf 3 -26941 26943 26944\n\t\tmu 0 3 28761 28762 28763\n\t\tf 3 26945 -26938 -26945\n\t\tmu 0 3 28764 28765 28766\n\t\tf 3 -26946 26946 26947\n\t\tmu 0 3 28767 28768 28769\n\t\tf 3 26948 -26935 -26948\n\t\tmu 0 3 28770 28771 28772\n\t\tf 3 26949 -26947 26950\n\t\tmu 0 3 28773 28774 28775\n\t\tf 3 26951 26952 -26951\n\t\tmu 0 3 28776 28777 28778\n\t\tf 3 -26952 -26944 26953\n\t\tmu 0 3 28779 28780 28781\n\t\tf 3 26954 26955 -26954\n\t\tmu 0 3 28782 28783 28784\n\t\tf 3 -26955 -26943 26956\n\t\tmu 0 3 28785 28786 28787\n\t\tf 3 -26859 26957 -26957\n\t\tmu 0 3 28788 28789 28790\n\t\tf 3 26958 -26958 26959\n\t\tmu 0 3 28791 28792 28793\n\t\tf 3 26960 26961 -26960\n\t\tmu 0 3 28794 28795 28796\n\t\tf 3 26962 -26956 26963\n\t\tmu 0 3 28797 28798 28799\n\t\tf 3 -26959 26964 -26964\n\t\tmu 0 3 28800 28801 28802\n\t\tf 3 26965 -26953 26966\n\t\tmu 0 3 28803 28804 28805\n\t\tf 3 -26963 26967 -26967\n\t\tmu 0 3 28806 28807 28808\n\t\tf 3 -26950 26968 26969\n\t\tmu 0 3 28809 28810 28811\n\t\tf 3 26970 26971 -26970\n\t\tmu 0 3 28812 28813 28814\n\t\tf 3 -26949 -26972 26972\n\t\tmu 0 3 28815 28816 28817\n\t\tf 3 26973 26974 -26973\n\t\tmu 0 3 28818 28819 28820\n\t\tf 3 -26932 -26975 26975\n\t\tmu 0 3 28821 28822 28823\n\t\tf 3 26976 26977 -26976\n\t\tmu 0 3 28824 28825 28826\n\t\tf 3 -26931 -26978 26978\n\t\tmu 0 3 28827 28828 28829\n\t\tf 3 26979 26980 -26979\n\t\tmu 0 3 28830 28831 28832\n\t\tf 3 -26914 -26981 26981\n\t\tmu 0 3 28833 28834 28835\n\t\tf 3 26982 26983 -26982\n\t\tmu 0 3 28836 28837 28838\n\t\tf 3 -26912 -26984 26984\n\t\tmu 0 3 28839 28840 28841\n\t\tf 3 26985 26986 -26985\n\t\tmu 0 3 28842 28843 28844\n\t\tf 3 -26894 -26987 26987\n\t\tmu 0 3 28845 28846 28847\n\t\tf 3 26988 26989 -26988\n\t\tmu 0 3 28848 28849 28850\n\t\tf 3 -26892 -26990 26990\n\t\tmu 0 3 28851 28852 28853\n\t\tf 3 26991 26992 -26991\n\t\tmu 0 3 28854 28855 28856\n\t\tf 3 -26992 26993 26994\n\t\tmu 0 3 28857 28858 28859\n\t\tf 3 26995 26996 -26995\n\t\tmu 0 3 28860 28861 28862\n\t\tf 3 -26996 26997 26998\n\t\tmu 0 3 28863 28864 28865\n\t\tf 3 26999 27000 -26999\n\t\tmu 0 3 28866 28867 28868\n\t\tf 3 -27000 27001 27002\n\t\tmu 0 3 28869 28870 28871\n\t\tf 3 27003 27004 -27003\n\t\tmu 0 3 28872 28873 28874\n\t\tf 3 27005 -27002 27006\n\t\tmu 0 3 28875 28876 28877\n\t\tf 3 27007 27008 -27007\n\t\tmu 0 3 28878 28879 28880\n\t\tf 3 -27008 -26998 27009\n\t\tmu 0 3 28881 28882 28883\n\t\tf 3 27010 27011 -27010\n\t\tmu 0 3 28884 28885 28886\n\t\tf 3 -27011 -26994 27012\n\t\tmu 0 3 28887 28888 28889\n\t\tf 3 -26989 27013 -27013\n\t\tmu 0 3 28890 28891 28892\n\t\tf 3 -26986 27014 27015\n\t\tmu 0 3 28893 28894 28895\n\t\tf 3 27016 -27014 -27016\n\t\tmu 0 3 28896 28897 28898\n\t\tf 3 -27017 27017 27018\n\t\tmu 0 3 28899 28900 28901\n\t\tf 3 27019 -27012 -27019\n\t\tmu 0 3 28902 28903 28904\n\t\tf 3 -27020 27020 27021\n\t\tmu 0 3 28905 28906 28907\n\t\tf 3 27022 -27009 -27022\n\t\tmu 0 3 28908 28909 28910\n\t\tf 3 27023 -27021 27024\n\t\tmu 0 3 28911 28912 28913\n\t\tf 3 27025 27026 -27025\n\t\tmu 0 3 28914 28915 28916\n\t\tf 3 -27026 -27018 27027\n\t\tmu 0 3 28917 28918 28919\n\t\tf 3 27028 27029 -27028\n\t\tmu 0 3 28920 28921 28922\n\t\tf 3 -27029 -27015 27030\n\t\tmu 0 3 28923 28924 28925\n\t\tf 3 -26983 27031 -27031\n\t\tmu 0 3 28926 28927 28928\n\t\tf 3 27032 -27032 27033\n\t\tmu 0 3 28929 28930 28931\n\t\tf 3 -26980 27034 -27034\n\t\tmu 0 3 28932 28933 28934\n\t\tf 3 -27033 27035 27036\n\t\tmu 0 3 28935 28936 28937\n\t\tf 3 27037 -27030 -27037\n\t\tmu 0 3 28938 28939 28940\n\t\tf 3 -27038 27038 27039\n\t\tmu 0 3 28941 28942 28943\n\t\tf 3 27040 -27027 -27040\n\t\tmu 0 3 28944 28945 28946\n\t\tf 3 27041 -27039 27042\n\t\tmu 0 3 28947 28948 28949\n\t\tf 3 27043 27044 -27043\n\t\tmu 0 3 28950 28951 28952\n\t\tf 3 -27044 -27036 27045\n\t\tmu 0 3 28953 28954 28955\n\t\tf 3 27046 27047 -27046\n\t\tmu 0 3 28956 28957 28958\n\t\tf 3 -27047 -27035 27048\n\t\tmu 0 3 28959 28960 28961\n\t\tf 3 -26977 27049 -27049\n\t\tmu 0 3 28962 28963 28964\n\t\tf 3 27050 -27050 27051\n\t\tmu 0 3 28965 28966 28967\n\t\tf 3 -26974 27052 -27052\n\t\tmu 0 3 28968 28969 28970\n\t\tf 3 -27051 27053 27054\n\t\tmu 0 3 28971 28972 28973\n\t\tf 3 27055 -27048 -27055\n\t\tmu 0 3 28974 28975 28976\n\t\tf 3 -27056 27056 27057\n\t\tmu 0 3 28977 28978 28979\n\t\tf 3 27058 -27045 -27058\n\t\tmu 0 3 28980 28981 28982\n\t\tf 3 27059 -27057 27060\n\t\tmu 0 3 28983 28984 28985\n\t\tf 3 27061 27062 -27061\n\t\tmu 0 3 28986 28987 28988\n\t\tf 3 -27062 -27054 27063\n\t\tmu 0 3 28989 28990 28991\n\t\tf 3 27064 27065 -27064\n\t\tmu 0 3 28992 28993 28994\n\t\tf 3 -27065 -27053 27066\n\t\tmu 0 3 28995 28996 28997\n\t\tf 3 -26971 27067 -27067\n\t\tmu 0 3 28998 28999 29000\n\t\tf 3 27068 -27068 27069\n\t\tmu 0 3 29001 29002 29003\n\t\tf 3 27070 27071 -27070\n\t\tmu 0 3 29004 29005 29006\n\t\tf 3 27072 -27066 27073\n\t\tmu 0 3 29007 29008 29009\n\t\tf 3 -27069 27074 -27074\n\t\tmu 0 3 29010 2931 29011\n\t\tf 3 27075 -27063 27076\n\t\tmu 0 3 29012 29013 29014\n\t\tf 3 -27073 27077 -27077\n\t\tmu 0 3 29015 29016 29017\n\t\tf 3 -27060 27078 27079\n\t\tmu 0 3 29018 29019 29020\n\t\tf 3 27080 27081 -27080\n\t\tmu 0 3 29021 29022 29023\n\t\tf 3 -27059 -27082 27082\n\t\tmu 0 3 29024 29025 29026\n\t\tf 3 27083 27084 -27083\n\t\tmu 0 3 29027 29028 29029\n\t\tf 3 -27042 -27085 27085\n\t\tmu 0 3 29030 29031 29032\n\t\tf 3 27086 27087 -27086\n\t\tmu 0 3 29033 29034 29035\n\t\tf 3 -27041 -27088 27088\n\t\tmu 0 3 29036 29037 29038\n\t\tf 3 27089 27090 -27089\n\t\tmu 0 3 29039 29040 29041\n\t\tf 3 -27024 -27091 27091\n\t\tmu 0 3 29042 29043 29044\n\t\tf 3 27092 27093 -27092\n\t\tmu 0 3 29045 29046 29047\n\t\tf 3 -27023 -27094 27094\n\t\tmu 0 3 29048 29049 29050\n\t\tf 3 27095 27096 -27095\n\t\tmu 0 3 29051 29052 29053\n\t\tf 3 -27006 -27097 27097\n\t\tmu 0 3 29054 29055 29056\n\t\tf 3 27098 27099 -27098\n\t\tmu 0 3 29057 29058 29059\n\t\tf 3 -27004 -27100 27100\n\t\tmu 0 3 29060 29061 29062\n\t\tf 3 27101 27102 -27101\n\t\tmu 0 3 29063 29064 29065\n\t\tf 3 -27102 27103 27104\n\t\tmu 0 3 29066 29067 29068\n\t\tf 3 27105 27106 -27105\n\t\tmu 0 3 29069 29070 29071\n\t\tf 3 -27106 27107 27108\n\t\tmu 0 3 29072 29073 29074\n\t\tf 3 27109 27110 -27109\n\t\tmu 0 3 29075 29076 29077\n\t\tf 3 -27110 27111 27112\n\t\tmu 0 3 29078 29079 29080\n\t\tf 3 27113 27114 -27113\n\t\tmu 0 3 29081 29082 29083\n\t\tf 3 27115 -27112 27116\n\t\tmu 0 3 29084 29085 29086\n\t\tf 3 27117 27118 -27117\n\t\tmu 0 3 29087 29088 29089\n\t\tf 3 -27118 -27108 27119\n\t\tmu 0 3 29090 29091 29092\n\t\tf 3 27120 27121 -27120\n\t\tmu 0 3 29093 29094 29095\n\t\tf 3 -27121 -27104 27122\n\t\tmu 0 3 29096 29097 29098\n\t\tf 3 -27099 27123 -27123\n\t\tmu 0 3 29099 29100 29101\n\t\tf 3 -27096 27124 27125\n\t\tmu 0 3 29102 29103 29104\n\t\tf 3 27126 -27124 -27126\n\t\tmu 0 3 29105 29106 29107\n\t\tf 3 -27127 27127 27128\n\t\tmu 0 3 29108 29109 29110\n\t\tf 3 27129 -27122 -27129\n\t\tmu 0 3 29111 29112 29113\n\t\tf 3 -27130 27130 27131\n\t\tmu 0 3 29114 29115 29116\n\t\tf 3 27132 -27119 -27132\n\t\tmu 0 3 29117 29118 29119\n\t\tf 3 27133 -27131 27134\n\t\tmu 0 3 29120 29121 29122\n\t\tf 3 27135 27136 -27135\n\t\tmu 0 3 29123 29124 29125\n\t\tf 3 -27136 -27128 27137\n\t\tmu 0 3 29126 29127 29128\n\t\tf 3 27138 27139 -27138\n\t\tmu 0 3 29129 29130 29131\n\t\tf 3 -27139 -27125 27140\n\t\tmu 0 3 29132 29133 29134\n\t\tf 3 -27093 27141 -27141\n\t\tmu 0 3 29135 29136 29137\n\t\tf 3 27142 -27142 27143\n\t\tmu 0 3 29138 29139 29140\n\t\tf 3 -27090 27144 -27144\n\t\tmu 0 3 29141 29142 29143\n\t\tf 3 -27143 27145 27146\n\t\tmu 0 3 29144 29145 29146\n\t\tf 3 27147 -27140 -27147\n\t\tmu 0 3 29147 29148 29149\n\t\tf 3 -27148 27148 27149\n\t\tmu 0 3 29150 29151 29152\n\t\tf 3 27150 -27137 -27150\n\t\tmu 0 3 29153 29154 29155\n\t\tf 3 27151 -27149 27152\n\t\tmu 0 3 29156 29157 29158\n\t\tf 3 27153 27154 -27153\n\t\tmu 0 3 29159 29160 29161\n\t\tf 3 -27154 -27146 27155\n\t\tmu 0 3 29162 29163 29164\n\t\tf 3 27156 27157 -27156\n\t\tmu 0 3 29165 29166 29167\n\t\tf 3 -27157 -27145 27158\n\t\tmu 0 3 29168 29169 29170\n\t\tf 3 -27087 27159 -27159\n\t\tmu 0 3 29171 29172 29173\n\t\tf 3 27160 -27160 27161\n\t\tmu 0 3 29174 29175 29176\n\t\tf 3 -27084 27162 -27162\n\t\tmu 0 3 29177 29178 29179\n\t\tf 3 -27161 27163 27164\n\t\tmu 0 3 29180 29181 29182\n\t\tf 3 27165 -27158 -27165\n\t\tmu 0 3 29183 29184 29185\n\t\tf 3 -27166 27166 27167\n\t\tmu 0 3 29186 29187 29188\n\t\tf 3 27168 -27155 -27168\n\t\tmu 0 3 29189 29190 29191\n\t\tf 3 27169 -27167 27170\n\t\tmu 0 3 29192 29193 29194\n\t\tf 3 27171 27172 -27171\n\t\tmu 0 3 29195 29196 29197\n\t\tf 3 -27172 -27164 27173\n\t\tmu 0 3 29198 29199 29200\n\t\tf 3 27174 27175 -27174\n\t\tmu 0 3 29201 29202 29203\n\t\tf 3 -27175 -27163 27176\n\t\tmu 0 3 29204 29205 29206\n\t\tf 3 -27081 27177 -27177\n\t\tmu 0 3 29207 29208 29209\n\t\tf 3 27178 -27178 27179\n\t\tmu 0 3 29210 29211 29212\n\t\tf 3 27180 27181 -27180\n\t\tmu 0 3 29213 29214 29215\n\t\tf 3 27182 -27176 27183\n\t\tmu 0 3 29216 29217 29218\n\t\tf 3 -27179 27184 -27184\n\t\tmu 0 3 29219 29220 29221\n\t\tf 3 27185 -27173 27186\n\t\tmu 0 3 29222 29223 29224\n\t\tf 3 -27183 27187 -27187\n\t\tmu 0 3 29225 29226 29227\n\t\tf 3 -27170 27188 27189\n\t\tmu 0 3 29228 29229 29230\n\t\tf 3 27190 27191 -27190\n\t\tmu 0 3 29231 29232 29233\n\t\tf 3 -27169 -27192 27192\n\t\tmu 0 3 29234 29235 29236\n\t\tf 3 27193 27194 -27193\n\t\tmu 0 3 29237 29238 29239\n\t\tf 3 -27152 -27195 27195\n\t\tmu 0 3 29240 29241 29242\n\t\tf 3 27196 27197 -27196\n\t\tmu 0 3 29243 29244 29245\n\t\tf 3 -27151 -27198 27198\n\t\tmu 0 3 29246 29247 29248\n\t\tf 3 27199 27200 -27199\n\t\tmu 0 3 29249 29250 29251\n\t\tf 3 -27134 -27201 27201\n\t\tmu 0 3 29252 29253 29254\n\t\tf 3 27202 27203 -27202\n\t\tmu 0 3 29255 29256 29257\n\t\tf 3 -27133 -27204 27204\n\t\tmu 0 3 29258 29259 29260\n\t\tf 3 27205 27206 -27205\n\t\tmu 0 3 29261 29262 29263\n\t\tf 3 -27116 -27207 27207\n\t\tmu 0 3 29264 29265 29266\n\t\tf 3 27208 27209 -27208\n\t\tmu 0 3 29267 29268 29269\n\t\tf 3 -27114 -27210 27210\n\t\tmu 0 3 29270 29271 29272\n\t\tf 3 27211 27212 -27211\n\t\tmu 0 3 29273 29274 29275\n\t\tf 3 -27212 27213 27214\n\t\tmu 0 3 29276 29277 29278\n\t\tf 3 27215 27216 -27215\n\t\tmu 0 3 29279 29280 29281\n\t\tf 3 -27216 27217 27218\n\t\tmu 0 3 29282 29283 29284\n\t\tf 3 27219 27220 -27219\n\t\tmu 0 3 29285 29286 29287\n\t\tf 3 -27220 27221 27222\n\t\tmu 0 3 29288 29289 29290\n\t\tf 3 27223 27224 -27223\n\t\tmu 0 3 29291 29292 29293\n\t\tf 3 27225 -27222 27226\n\t\tmu 0 3 29294 29295 29296\n\t\tf 3 27227 27228 -27227\n\t\tmu 0 3 29297 29298 29299\n\t\tf 3 -27228 -27218 27229\n\t\tmu 0 3 29300 29301 29302\n\t\tf 3 27230 27231 -27230\n\t\tmu 0 3 29303 29304 29305\n\t\tf 3 -27231 -27214 27232\n\t\tmu 0 3 29306 29307 29308\n\t\tf 3 -27209 27233 -27233\n\t\tmu 0 3 29309 29310 29311\n\t\tf 3 -27206 27234 27235\n\t\tmu 0 3 29312 29313 29314\n\t\tf 3 27236 -27234 -27236\n\t\tmu 0 3 29315 29316 29317\n\t\tf 3 -27237 27237 27238\n\t\tmu 0 3 29318 29319 29320\n\t\tf 3 27239 -27232 -27239\n\t\tmu 0 3 29321 29322 29323\n\t\tf 3 -27240 27240 27241\n\t\tmu 0 3 29324 29325 29326\n\t\tf 3 27242 -27229 -27242\n\t\tmu 0 3 29327 29328 29329\n\t\tf 3 27243 -27241 27244\n\t\tmu 0 3 29330 29331 29332\n\t\tf 3 27245 27246 -27245\n\t\tmu 0 3 29333 29334 29335\n\t\tf 3 -27246 -27238 27247\n\t\tmu 0 3 29336 29337 29338\n\t\tf 3 27248 27249 -27248\n\t\tmu 0 3 29339 29340 29341\n\t\tf 3 -27249 -27235 27250\n\t\tmu 0 3 29342 29343 29344\n\t\tf 3 -27203 27251 -27251\n\t\tmu 0 3 29345 29346 29347\n\t\tf 3 27252 -27252 27253\n\t\tmu 0 3 29348 29349 29350\n\t\tf 3 -27200 27254 -27254\n\t\tmu 0 3 29351 29352 29353\n\t\tf 3 -27253 27255 27256\n\t\tmu 0 3 29354 29355 29356\n\t\tf 3 27257 -27250 -27257\n\t\tmu 0 3 29357 29358 29359\n\t\tf 3 -27258 27258 27259\n\t\tmu 0 3 29360 29361 29362\n\t\tf 3 27260 -27247 -27260\n\t\tmu 0 3 29363 29364 29365\n\t\tf 3 27261 -27259 27262\n\t\tmu 0 3 29366 29367 29368\n\t\tf 3 27263 27264 -27263\n\t\tmu 0 3 29369 29370 29371\n\t\tf 3 -27264 -27256 27265\n\t\tmu 0 3 29372 29373 29374\n\t\tf 3 27266 27267 -27266\n\t\tmu 0 3 29375 29376 29377\n\t\tf 3 -27267 -27255 27268\n\t\tmu 0 3 29378 29379 29380\n\t\tf 3 -27197 27269 -27269\n\t\tmu 0 3 29381 29382 29383\n\t\tf 3 27270 -27270 27271\n\t\tmu 0 3 29384 29385 29386\n\t\tf 3 -27194 27272 -27272\n\t\tmu 0 3 29387 29388 29389\n\t\tf 3 -27271 27273 27274\n\t\tmu 0 3 29390 29391 29392\n\t\tf 3 27275 -27268 -27275\n\t\tmu 0 3 29393 29394 29395\n\t\tf 3 -27276 27276 27277\n\t\tmu 0 3 29396 29397 29398\n\t\tf 3 27278 -27265 -27278\n\t\tmu 0 3 29399 29400 29401\n\t\tf 3 27279 -27277 27280\n\t\tmu 0 3 29402 29403 29404\n\t\tf 3 27281 27282 -27281\n\t\tmu 0 3 29405 29406 29407\n\t\tf 3 -27282 -27274 27283\n\t\tmu 0 3 29408 29409 29410\n\t\tf 3 27284 27285 -27284\n\t\tmu 0 3 29411 29412 29413\n\t\tf 3 -27285 -27273 27286\n\t\tmu 0 3 29414 29415 29416\n\t\tf 3 -27191 27287 -27287\n\t\tmu 0 3 29417 29418 29419\n\t\tf 3 27288 -27288 27289\n\t\tmu 0 3 2118 29420 29421\n\t\tf 3 27290 27291 -27290\n\t\tmu 0 3 29422 29423 2118\n\t\tf 3 27292 -27286 27293\n\t\tmu 0 3 29424 29425 29426\n\t\tf 3 -27289 27294 -27294\n\t\tmu 0 3 29427 29428 29429\n\t\tf 3 -27279 27295 27296\n\t\tmu 0 3 29430 29431 29432\n\t\tf 3 -27296 -27280 27297\n\t\tmu 0 3 29433 29434 29435\n\t\tf 3 27298 27299 -27298\n\t\tmu 0 3 29436 29437 29438\n\t\tf 3 -27300 27300 27301\n\t\tmu 0 3 29439 29440 29441\n\t\tf 3 27302 27303 -27302\n\t\tmu 0 3 29442 29443 29444\n\t\tf 3 -27304 27304 27305\n\t\tmu 0 3 29445 29446 29447\n\t\tf 3 27306 27307 -27306\n\t\tmu 0 3 29448 29449 29450\n\t\tf 3 27308 -27307 27309\n\t\tmu 0 3 29451 29452 29453\n\t\tf 3 27310 27311 -27310\n\t\tmu 0 3 29454 29455 29456\n\t\tf 3 -27312 27312 27313\n\t\tmu 0 3 29457 29458 29459\n\t\tf 3 27314 27315 -27314\n\t\tmu 0 3 29460 29461 29462\n\t\tf 3 27316 -27315 27317\n\t\tmu 0 3 29463 29464 29465\n\t\tf 3 27318 27319 -27318\n\t\tmu 0 3 29466 29467 29468\n\t\tf 3 -27320 27320 27321\n\t\tmu 0 3 29469 29470 29471\n\t\tf 3 27322 27323 -27322\n\t\tmu 0 3 29472 29473 29474\n\t\tf 3 27324 -27323 27325\n\t\tmu 0 3 29475 29476 29477\n\t\tf 3 27326 27327 -27326\n\t\tmu 0 3 29478 29479 29480\n\t\tf 3 -27328 27328 27329\n\t\tmu 0 3 29481 29482 29483\n\t\tf 3 27330 27331 -27330\n\t\tmu 0 3 29484 29485 29486\n\t\tf 3 -27332 27332 27333\n\t\tmu 0 3 29487 29488 29489\n\t\tf 3 -27224 27334 -27334\n\t\tmu 0 3 29490 29491 29492\n\t\tf 3 -27335 -27226 27335\n\t\tmu 0 3 29493 29494 29495\n\t\tf 3 27336 -27325 -27336\n\t\tmu 0 3 29496 29497 29498\n\t\tf 3 -27324 -27337 27337\n\t\tmu 0 3 29499 29500 29501\n\t\tf 3 -27243 27338 -27338\n\t\tmu 0 3 29502 29503 29504\n\t\tf 3 -27339 -27244 27339\n\t\tmu 0 3 29505 29506 29507\n\t\tf 3 27340 -27317 -27340\n\t\tmu 0 3 29508 29509 29510\n\t\tf 3 -27316 -27341 27341\n\t\tmu 0 3 29511 29512 29513\n\t\tf 3 -27261 27342 -27342\n\t\tmu 0 3 29514 29515 29516\n\t\tf 3 -27343 -27262 27343\n\t\tmu 0 3 29517 29518 29519\n\t\tf 3 27344 -27309 -27344\n\t\tmu 0 3 29520 29521 29522\n\t\tf 3 -27308 -27345 -27297\n\t\tmu 0 3 29523 29524 29525\n\t\tf 3 27345 -27331 27346\n\t\tmu 0 3 29526 29527 29528\n\t\tf 3 27347 27348 -27347\n\t\tmu 0 3 29529 29530 29531\n\t\tf 3 -27349 27349 27350\n\t\tmu 0 3 29532 29533 29534\n\t\tf 3 27351 27352 -27351\n\t\tmu 0 3 29535 29536 29537\n\t\tf 3 27353 -27352 27354\n\t\tmu 0 3 29538 29539 29540\n\t\tf 3 27355 27356 -27355\n\t\tmu 0 3 29541 29542 29543\n\t\tf 3 -27357 27357 27358\n\t\tmu 0 3 29544 29545 29546\n\t\tf 3 27359 27360 -27359\n\t\tmu 0 3 29547 29548 29549\n\t\tf 3 27361 -27360 27362\n\t\tmu 0 3 29550 29551 29552\n\t\tf 3 27363 27364 -27363\n\t\tmu 0 3 29553 29554 29555\n\t\tf 3 -27365 27365 27366\n\t\tmu 0 3 29556 29557 29558\n\t\tf 3 27367 27368 -27367\n\t\tmu 0 3 29559 29560 29561\n\t\tf 3 27369 -27368 27370\n\t\tmu 0 3 29562 29563 29564\n\t\tf 3 27371 27372 -27371\n\t\tmu 0 3 29565 29566 29567\n\t\tf 3 27373 -27370 27374\n\t\tmu 0 3 29568 29569 29570\n\t\tf 3 -27369 -27374 27375\n\t\tmu 0 3 29571 29572 29573\n\t\tf 3 27376 27377 -27375\n\t\tmu 0 3 29574 29575 29576\n\t\tf 3 -27378 27378 27379\n\t\tmu 0 3 29577 29578 29579\n\t\tf 3 27380 27381 -27380\n\t\tmu 0 3 29580 29581 29582\n\t\tf 3 -27381 -27295 27382\n\t\tmu 0 3 29583 29584 29585\n\t\tf 3 27383 27384 -27383\n\t\tmu 0 3 29586 29587 29588\n\t\tf 3 -27384 -27292 27385\n\t\tmu 0 3 29589 29590 29591\n\t\tf 3 27386 27387 -27386\n\t\tmu 0 3 29592 29593 29594\n\t\tf 3 -27387 27388 27389\n\t\tmu 0 3 29595 29596 29597\n\t\tf 3 27390 27391 -27390\n\t\tmu 0 3 29598 29599 29600\n\t\tf 3 -27391 -27188 27392\n\t\tmu 0 3 29601 29602 29603\n\t\tf 3 27393 27394 -27393\n\t\tmu 0 3 29604 29605 29606\n\t\tf 3 -27394 -27185 27395\n\t\tmu 0 3 29607 29608 29609\n\t\tf 3 27396 27397 -27396\n\t\tmu 0 3 29610 29611 29612\n\t\tf 3 -27397 -27182 27398\n\t\tmu 0 3 29613 29614 29615\n\t\tf 3 27399 27400 -27399\n\t\tmu 0 3 29616 29617 29618\n\t\tf 3 -27400 27401 27402\n\t\tmu 0 3 29619 29620 29621\n\t\tf 3 27403 27404 -27403\n\t\tmu 0 3 29622 29623 29624\n\t\tf 3 -27404 -27078 27405\n\t\tmu 0 3 29625 29626 29627\n\t\tf 3 27406 27407 -27406\n\t\tmu 0 3 29628 29629 29630\n\t\tf 3 -27407 -27075 27408\n\t\tmu 0 3 29631 29632 29633\n\t\tf 3 27409 27410 -27409\n\t\tmu 0 3 29634 29635 29636\n\t\tf 3 -27410 -27072 27411\n\t\tmu 0 3 29637 29638 29639\n\t\tf 3 27412 27413 -27412\n\t\tmu 0 3 29640 29641 29642\n\t\tf 3 -27413 27414 27415\n\t\tmu 0 3 29643 29644 29645\n\t\tf 3 27416 27417 -27416\n\t\tmu 0 3 29646 29647 29648\n\t\tf 3 -27417 -26968 27418\n\t\tmu 0 3 29649 29650 29651\n\t\tf 3 27419 27420 -27419\n\t\tmu 0 3 29652 29653 29654\n\t\tf 3 -27420 -26965 27421\n\t\tmu 0 3 29655 29656 29657\n\t\tf 3 27422 27423 -27422\n\t\tmu 0 3 29658 29659 29660\n\t\tf 3 -27423 -26962 27424\n\t\tmu 0 3 29661 29662 29663\n\t\tf 3 27425 27426 -27425\n\t\tmu 0 3 29664 29665 29666\n\t\tf 3 -27426 27427 27428\n\t\tmu 0 3 29667 29668 29669\n\t\tf 3 -26663 27429 -27429\n\t\tmu 0 3 29670 29671 29672\n\t\tf 3 27430 -27430 27431\n\t\tmu 0 3 29673 29674 29675\n\t\tf 3 -26678 27432 -27432\n\t\tmu 0 3 29676 29677 29678\n\t\tf 3 -27431 27433 27434\n\t\tmu 0 3 29679 29680 29681\n\t\tf 3 27435 27436 -27435\n\t\tmu 0 3 29682 29683 29684\n\t\tf 3 -27436 27437 27438\n\t\tmu 0 3 29685 29686 29687\n\t\tf 3 27439 27440 -27439\n\t\tmu 0 3 29688 29689 29690\n\t\tf 3 -27440 27441 27442\n\t\tmu 0 3 29691 29692 29693\n\t\tf 3 27443 27444 -27443\n\t\tmu 0 3 29694 29695 29696\n\t\tf 3 27445 -27442 27446\n\t\tmu 0 3 29697 29698 29699\n\t\tf 3 27447 27448 -27447\n\t\tmu 0 3 29700 29701 29702\n\t\tf 3 -27448 -27438 27449\n\t\tmu 0 3 29703 29704 29705\n\t\tf 3 27450 27451 -27450\n\t\tmu 0 3 29706 29707 29708\n\t\tf 3 -27451 -27434 27452\n\t\tmu 0 3 29709 29710 29711\n\t\tf 3 27453 27454 -27453\n\t\tmu 0 3 29712 29713 29714\n\t\tf 3 -27454 -27433 27455\n\t\tmu 0 3 29715 29716 29717\n\t\tf 3 -26679 27456 -27456\n\t\tmu 0 3 29718 29719 29720\n\t\tf 3 27457 -27457 27458\n\t\tmu 0 3 29721 29722 29723\n\t\tf 3 -26704 27459 -27459\n\t\tmu 0 3 29724 29725 29726\n\t\tf 3 -27458 27460 27461\n\t\tmu 0 3 29727 29728 29729\n\t\tf 3 27462 -27455 -27462\n\t\tmu 0 3 29730 29731 29732\n\t\tf 3 -27463 27463 27464\n\t\tmu 0 3 29733 29734 29735\n\t\tf 3 27465 -27452 -27465\n\t\tmu 0 3 29736 29737 29738\n\t\tf 3 -27466 27466 27467\n\t\tmu 0 3 29739 29740 29741\n\t\tf 3 27468 -27449 -27468\n\t\tmu 0 3 29742 29743 29744\n\t\tf 3 27469 -27467 27470\n\t\tmu 0 3 29745 29746 29747\n\t\tf 3 27471 27472 -27471\n\t\tmu 0 3 29748 29749 29750\n\t\tf 3 -27472 -27464 27473\n\t\tmu 0 3 29751 29752 29753\n\t\tf 3 27474 27475 -27474\n\t\tmu 0 3 29754 29755 29756\n\t\tf 3 27476 -27461 27477\n\t\tmu 0 3 29757 29758 29759\n\t\tf 3 27478 27479 -27478\n\t\tmu 0 3 29760 29761 29762\n\t\tf 3 -27479 -27460 27480\n\t\tmu 0 3 29763 29764 29765\n\t\tf 3 -26705 27481 -27481\n\t\tmu 0 3 29766 29767 29768\n\t\tf 3 27482 -27482 27483\n\t\tmu 0 3 29769 29770 29771\n\t\tf 3 -26730 27484 -27484\n\t\tmu 0 3 29772 29773 29774\n\t\tf 3 -27483 27485 27486\n\t\tmu 0 3 29775 29776 29777\n\t\tf 3 27487 -27480 -27487\n\t\tmu 0 3 29778 29779 29780\n\t\tf 3 27488 27489 27490\n\t\tmu 0 3 29781 29782 29783\n\t\tf 3 27491 -27476 -27491\n\t\tmu 0 3 29784 29785 29786\n\t\tf 3 -27492 27492 27493\n\t\tmu 0 3 29787 29788 29789\n\t\tf 3 27494 -27473 -27494\n\t\tmu 0 3 29790 29791 29792\n\t\tf 3 27495 -27493 27496\n\t\tmu 0 3 29793 29794 29795\n\t\tf 3 27497 -26893 -27497\n\t\tmu 0 3 29796 29797 29798\n\t\tf 3 -27498 -27490 27498\n\t\tmu 0 3 29799 29800 29801\n\t\tf 3 27499 -26889 -27499\n\t\tmu 0 3 29802 29803 29804\n\t\tf 3 -27500 -27486 27500\n\t\tmu 0 3 29805 29806 29807\n\t\tf 3 27501 -26885 -27501\n\t\tmu 0 3 29808 29809 29810\n\t\tf 3 -27502 -27485 27502\n\t\tmu 0 3 29811 29812 29813\n\t\tf 3 -26731 -26881 -27503\n\t\tmu 0 3 29814 29815 29816\n\t\tf 3 -27470 27503 27504\n\t\tmu 0 3 29817 29818 29819\n\t\tf 3 -27495 27505 27506\n\t\tmu 0 3 29820 29821 29822\n\t\tf 3 27507 -27504 -27507\n\t\tmu 0 3 29823 29824 29825\n\t\tf 3 -27508 27508 27509\n\t\tmu 0 3 29826 29827 29828\n\t\tf 3 27510 27511 -27510\n\t\tmu 0 3 29829 29830 29831;\n\tsetAttr \".fc[15000:15451]\"\n\t\tf 3 27512 -27512 27513\n\t\tmu 0 3 29832 29833 29834\n\t\tf 3 27514 27515 -27514\n\t\tmu 0 3 29835 29836 29837\n\t\tf 3 27516 -27516 27517\n\t\tmu 0 3 29838 29839 29840\n\t\tf 3 -27517 27518 27519\n\t\tmu 0 3 29841 29842 29843\n\t\tf 3 -27446 -27519 27520\n\t\tmu 0 3 29844 29845 29846\n\t\tf 3 27521 27522 -27521\n\t\tmu 0 3 29847 29848 29849\n\t\tf 3 -27444 -27523 27523\n\t\tmu 0 3 29850 29851 29852\n\t\tf 3 27524 -27418 -27524\n\t\tmu 0 3 29853 29854 29855\n\t\tf 3 -27525 27525 27526\n\t\tmu 0 3 29856 29857 29858\n\t\tf 3 27527 -27414 -27527\n\t\tmu 0 3 29859 29860 29861\n\t\tf 3 -27528 27528 27529\n\t\tmu 0 3 29862 29863 29864\n\t\tf 3 27530 -27411 -27530\n\t\tmu 0 3 29865 29866 29867\n\t\tf 3 -27531 27531 27532\n\t\tmu 0 3 29868 29869 29870\n\t\tf 3 27533 -27408 -27533\n\t\tmu 0 3 29871 29872 29873\n\t\tf 3 27534 -27532 27535\n\t\tmu 0 3 29874 29875 29876\n\t\tf 3 27536 27537 -27536\n\t\tmu 0 3 29877 29878 29879\n\t\tf 3 -27537 -27529 27538\n\t\tmu 0 3 29880 29881 29882\n\t\tf 3 27539 27540 -27539\n\t\tmu 0 3 29883 29884 29885\n\t\tf 3 -27540 -27526 27541\n\t\tmu 0 3 29886 29887 29888\n\t\tf 3 -27522 27542 -27542\n\t\tmu 0 3 29889 29890 29891\n\t\tf 3 27543 -27543 -27518\n\t\tmu 0 3 29892 29893 29894\n\t\tf 3 -27544 27544 27545\n\t\tmu 0 3 29895 29896 29897\n\t\tf 3 27546 -27541 -27546\n\t\tmu 0 3 29898 29899 29900\n\t\tf 3 -27547 27547 27548\n\t\tmu 0 3 29901 29902 29903\n\t\tf 3 27549 -27538 -27549\n\t\tmu 0 3 29904 29905 29906\n\t\tf 3 27550 -27548 27551\n\t\tmu 0 3 29907 29908 29909\n\t\tf 3 27552 27553 -27552\n\t\tmu 0 3 29910 29911 29912\n\t\tf 3 -27553 -27545 27554\n\t\tmu 0 3 29913 29914 29915\n\t\tf 3 -27515 27555 -27555\n\t\tmu 0 3 29916 29917 29918\n\t\tf 3 27556 -27556 27557\n\t\tmu 0 3 29919 29920 29921\n\t\tf 3 -27511 27558 -27558\n\t\tmu 0 3 29922 29923 29924\n\t\tf 3 -27557 27559 27560\n\t\tmu 0 3 29925 29926 29927\n\t\tf 3 27561 -27554 -27561\n\t\tmu 0 3 29928 29929 29930\n\t\tf 3 27562 -27560 27563\n\t\tmu 0 3 29931 29932 29933\n\t\tf 3 27564 -27005 -27564\n\t\tmu 0 3 29934 29935 29936\n\t\tf 3 -27565 -27559 27565\n\t\tmu 0 3 29937 29938 29939\n\t\tf 3 27566 -27001 -27566\n\t\tmu 0 3 29940 29941 29942\n\t\tf 3 -27567 -27509 27567\n\t\tmu 0 3 29943 29944 29945\n\t\tf 3 27568 -26997 -27568\n\t\tmu 0 3 29946 29947 29948\n\t\tf 3 -27569 -27506 27569\n\t\tmu 0 3 29949 29950 29951\n\t\tf 3 -27496 -26993 -27570\n\t\tmu 0 3 29952 29953 29954\n\t\tf 3 -27551 27570 27571\n\t\tmu 0 3 29955 29956 29957\n\t\tf 3 27572 27573 -27572\n\t\tmu 0 3 29958 29959 29960\n\t\tf 3 -27550 -27574 27574\n\t\tmu 0 3 29961 29962 29963\n\t\tf 3 27575 27576 -27575\n\t\tmu 0 3 29964 29965 29966\n\t\tf 3 -27535 -27577 27577\n\t\tmu 0 3 29967 29968 29969\n\t\tf 3 27578 27579 -27578\n\t\tmu 0 3 29970 29971 29972\n\t\tf 3 -27534 -27580 27580\n\t\tmu 0 3 29973 29974 29975\n\t\tf 3 27581 -27405 -27581\n\t\tmu 0 3 29976 29977 29978\n\t\tf 3 -27582 27582 27583\n\t\tmu 0 3 29979 29980 29981\n\t\tf 3 27584 -27401 -27584\n\t\tmu 0 3 29982 29983 29984\n\t\tf 3 -27585 27585 27586\n\t\tmu 0 3 29985 29986 29987\n\t\tf 3 27587 -27398 -27587\n\t\tmu 0 3 29988 29989 29990\n\t\tf 3 -27588 27588 27589\n\t\tmu 0 3 29991 29992 29993\n\t\tf 3 27590 -27395 -27590\n\t\tmu 0 3 29994 29995 29996\n\t\tf 3 27591 -27589 27592\n\t\tmu 0 3 29997 29998 29999\n\t\tf 3 27593 27594 -27593\n\t\tmu 0 3 30000 30001 30002\n\t\tf 3 -27594 -27586 27595\n\t\tmu 0 3 30003 30004 30005\n\t\tf 3 27596 27597 -27596\n\t\tmu 0 3 30006 30007 30008\n\t\tf 3 -27597 -27583 27598\n\t\tmu 0 3 30009 30010 30011\n\t\tf 3 -27579 27599 -27599\n\t\tmu 0 3 30012 30013 30014\n\t\tf 3 27600 -27600 27601\n\t\tmu 0 3 30015 30016 30017\n\t\tf 3 -27576 27602 -27602\n\t\tmu 0 3 30018 30019 30020\n\t\tf 3 -27601 27603 27604\n\t\tmu 0 3 30021 30022 30023\n\t\tf 3 27605 -27598 -27605\n\t\tmu 0 3 30024 30025 30026\n\t\tf 3 -27606 27606 27607\n\t\tmu 0 3 30027 30028 30029\n\t\tf 3 27608 -27595 -27608\n\t\tmu 0 3 30030 30031 30032\n\t\tf 3 27609 -27607 27610\n\t\tmu 0 3 30033 30034 30035\n\t\tf 3 27611 27612 -27611\n\t\tmu 0 3 30036 30037 30038\n\t\tf 3 -27612 -27604 27613\n\t\tmu 0 3 30039 30040 30041\n\t\tf 3 27614 27615 -27614\n\t\tmu 0 3 30042 30043 30044\n\t\tf 3 -27615 -27603 27616\n\t\tmu 0 3 30045 30046 30047\n\t\tf 3 -27573 27617 -27617\n\t\tmu 0 3 30048 30049 30050\n\t\tf 3 27618 -27618 27619\n\t\tmu 0 3 30051 30052 30053\n\t\tf 3 27620 27621 -27620\n\t\tmu 0 3 30054 30055 30056\n\t\tf 3 -27621 -27571 27622\n\t\tmu 0 3 30057 30058 30059\n\t\tf 3 -27562 27623 -27623\n\t\tmu 0 3 30060 30061 30062\n\t\tf 3 -27619 27624 27625\n\t\tmu 0 3 30063 30064 30065\n\t\tf 3 27626 -27616 -27626\n\t\tmu 0 3 30066 30067 30068\n\t\tf 3 -27627 27627 27628\n\t\tmu 0 3 30069 30070 30071\n\t\tf 3 27629 -27613 -27629\n\t\tmu 0 3 30072 30073 30074\n\t\tf 3 27630 -27628 27631\n\t\tmu 0 3 30075 30076 30077\n\t\tf 3 27632 -27115 -27632\n\t\tmu 0 3 30078 30079 30080\n\t\tf 3 -27633 -27625 27633\n\t\tmu 0 3 30081 30082 30083\n\t\tf 3 27634 -27111 -27634\n\t\tmu 0 3 30084 30085 30086\n\t\tf 3 -27635 -27622 27635\n\t\tmu 0 3 30087 30088 30089\n\t\tf 3 27636 -27107 -27636\n\t\tmu 0 3 30090 30091 30092\n\t\tf 3 -27637 -27624 27637\n\t\tmu 0 3 30093 30094 30095\n\t\tf 3 -27563 -27103 -27638\n\t\tmu 0 3 30096 30097 30098\n\t\tf 3 -27610 27638 27639\n\t\tmu 0 3 30099 30100 30101\n\t\tf 3 -27630 27640 27641\n\t\tmu 0 3 30102 30103 30104\n\t\tf 3 27642 -27639 -27642\n\t\tmu 0 3 30105 30106 30107\n\t\tf 3 -27643 27643 27644\n\t\tmu 0 3 30108 30109 30110\n\t\tf 3 27645 27646 -27645\n\t\tmu 0 3 30111 30112 30113\n\t\tf 3 27647 -27647 27648\n\t\tmu 0 3 30114 30115 30116\n\t\tf 3 27649 27650 -27649\n\t\tmu 0 3 30117 30118 30119\n\t\tf 3 27651 -27651 27652\n\t\tmu 0 3 30120 30121 30122\n\t\tf 3 -27652 27653 27654\n\t\tmu 0 3 30123 30124 30125\n\t\tf 3 -27592 -27654 27655\n\t\tmu 0 3 30126 30127 30128\n\t\tf 3 27656 27657 -27656\n\t\tmu 0 3 30129 30130 30131\n\t\tf 3 -27591 -27658 27658\n\t\tmu 0 3 30132 30133 30134\n\t\tf 3 27659 -27392 -27659\n\t\tmu 0 3 30135 30136 30137\n\t\tf 3 -27660 27660 27661\n\t\tmu 0 3 30138 30139 30140\n\t\tf 3 27662 -27388 -27662\n\t\tmu 0 3 30141 30142 30143\n\t\tf 3 -27663 27663 27664\n\t\tmu 0 3 30144 30145 30146\n\t\tf 3 27665 -27385 -27665\n\t\tmu 0 3 30147 30148 30149\n\t\tf 3 -27666 27666 27667\n\t\tmu 0 3 30150 30151 30152\n\t\tf 3 27668 -27382 -27668\n\t\tmu 0 3 30153 30154 30155\n\t\tf 3 27669 -27667 27670\n\t\tmu 0 3 30156 30157 30158\n\t\tf 3 27671 27672 -27671\n\t\tmu 0 3 30159 30160 30161\n\t\tf 3 -27672 -27664 27673\n\t\tmu 0 3 30162 30163 30164\n\t\tf 3 27674 27675 -27674\n\t\tmu 0 3 30165 30166 30167\n\t\tf 3 -27675 -27661 27676\n\t\tmu 0 3 30168 30169 30170\n\t\tf 3 -27657 27677 -27677\n\t\tmu 0 3 30171 30172 30173\n\t\tf 3 27678 -27678 -27653\n\t\tmu 0 3 30174 30175 30176\n\t\tf 3 -27679 27679 27680\n\t\tmu 0 3 30177 30178 30179\n\t\tf 3 27681 -27676 -27681\n\t\tmu 0 3 30180 30181 30182\n\t\tf 3 -27682 27682 27683\n\t\tmu 0 3 30183 30184 30185\n\t\tf 3 27684 -27673 -27684\n\t\tmu 0 3 30186 30187 30188\n\t\tf 3 27685 -27683 27686\n\t\tmu 0 3 30189 30190 30191\n\t\tf 3 27687 27688 -27687\n\t\tmu 0 3 30192 30193 30194\n\t\tf 3 -27688 -27680 27689\n\t\tmu 0 3 30195 30196 30197\n\t\tf 3 -27650 27690 -27690\n\t\tmu 0 3 30198 30199 30200\n\t\tf 3 27691 -27691 27692\n\t\tmu 0 3 30201 30202 30203\n\t\tf 3 -27646 27693 -27693\n\t\tmu 0 3 30204 30205 30206\n\t\tf 3 -27692 27694 27695\n\t\tmu 0 3 30207 30208 30209\n\t\tf 3 27696 -27689 -27696\n\t\tmu 0 3 30210 30211 30212\n\t\tf 3 27697 -27695 27698\n\t\tmu 0 3 30213 30214 30215\n\t\tf 3 27699 -27225 -27699\n\t\tmu 0 3 30216 30217 30218\n\t\tf 3 -27700 -27694 27700\n\t\tmu 0 3 30219 30220 30221\n\t\tf 3 27701 -27221 -27701\n\t\tmu 0 3 30222 30223 30224\n\t\tf 3 -27702 -27644 27702\n\t\tmu 0 3 30225 30226 30227\n\t\tf 3 27703 -27217 -27703\n\t\tmu 0 3 30228 30229 30230\n\t\tf 3 -27704 -27641 27704\n\t\tmu 0 3 30231 30232 30233\n\t\tf 3 -27631 -27213 -27705\n\t\tmu 0 3 30234 30235 30236\n\t\tf 3 27705 -27686 27706\n\t\tmu 0 3 30237 30238 30239\n\t\tf 3 -27685 -27706 27707\n\t\tmu 0 3 30240 30241 30242\n\t\tf 3 -27361 27708 -27708\n\t\tmu 0 3 30243 30244 30245\n\t\tf 3 -27709 -27362 27709\n\t\tmu 0 3 30246 30247 30248\n\t\tf 3 27710 -27670 -27710\n\t\tmu 0 3 30249 30250 30251\n\t\tf 3 -27669 -27711 -27376\n\t\tmu 0 3 30252 30253 30254\n\t\tf 3 -27698 -27333 27711\n\t\tmu 0 3 30255 30256 30257\n\t\tf 3 -27346 27712 -27712\n\t\tmu 0 3 30258 30259 30260\n\t\tf 3 -27697 -27713 27713\n\t\tmu 0 3 30261 30262 30263\n\t\tf 3 27714 -27354 -27707\n\t\tmu 0 3 30264 30265 30266\n\t\tf 3 -27353 -27715 -27714\n\t\tmu 0 3 30267 30268 30269\n\t\tf 3 -26855 -27428 27715\n\t\tmu 0 3 30270 30271 30272\n\t\tf 3 -26961 -26857 -27716\n\t\tmu 0 3 30273 30274 30275\n\t\tf 3 -26966 -27415 27716\n\t\tmu 0 3 30276 4585 30277\n\t\tf 3 -27071 -26969 -27717\n\t\tmu 0 3 30278 30279 30280\n\t\tf 3 -27469 27717 -27520\n\t\tmu 0 3 30281 30282 30283\n\t\tf 3 -27513 -27718 -27505\n\t\tmu 0 3 30284 30285 30286\n\t\tf 3 -27076 -27402 27718\n\t\tmu 0 3 30287 30288 30289\n\t\tf 3 -27181 -27079 -27719\n\t\tmu 0 3 30290 30291 30292\n\t\tf 3 -27186 -27389 27719\n\t\tmu 0 3 30293 30294 30295\n\t\tf 3 -27291 -27189 -27720\n\t\tmu 0 3 30296 30297 30298\n\t\tf 3 -27293 -27379 27720\n\t\tmu 0 3 30299 5555 30300\n\t\tf 3 27721 -27283 -27721\n\t\tmu 0 3 30301 30302 30303\n\t\tf 3 -27609 27722 -27655\n\t\tmu 0 3 30304 30305 30306\n\t\tf 3 -27648 -27723 -27640\n\t\tmu 0 3 30307 30308 30309\n\t\tf 3 -27722 -27377 27723\n\t\tmu 0 3 30310 30311 30312\n\t\tf 3 27724 -27299 -27724\n\t\tmu 0 3 30313 30314 30315\n\t\tf 3 -27301 -27725 27725\n\t\tmu 0 3 30316 30317 30318\n\t\tf 3 -27373 27726 -27726\n\t\tmu 0 3 30319 1530 30320\n\t\tf 3 27727 27728 -26510\n\t\tmu 0 3 30321 30322 30323\n\t\tf 3 27729 -27729 27730\n\t\tmu 0 3 30324 30325 30326\n\t\tf 3 -27730 27731 -26506\n\t\tmu 0 3 30327 30328 30329\n\t\tf 3 27732 27733 -27731\n\t\tmu 0 3 30330 30331 30332\n\t\tf 3 27734 -27734 27735\n\t\tmu 0 3 30333 30334 30335\n\t\tf 3 27736 27737 -27736\n\t\tmu 0 3 30336 30337 30338\n\t\tf 3 -27735 27738 27739\n\t\tmu 0 3 30339 30340 30341\n\t\tf 3 -26487 -27732 -27740\n\t\tmu 0 3 30342 30343 30344\n\t\tf 3 -26503 -27739 27740\n\t\tmu 0 3 30345 30346 30347\n\t\tf 3 27741 27742 -27741\n\t\tmu 0 3 30348 30349 30350\n\t\tf 3 -27742 -27738 27743\n\t\tmu 0 3 30351 30352 30353\n\t\tf 3 27744 27745 -27744\n\t\tmu 0 3 30354 30355 30356\n\t\tf 3 27746 27747 27748\n\t\tmu 0 3 30357 30358 30359\n\t\tf 3 27749 -27746 -27749\n\t\tmu 0 3 30360 30361 30362\n\t\tf 3 27750 -27748 27751\n\t\tmu 0 3 30363 30364 30365\n\t\tf 3 -27751 27752 27753\n\t\tmu 0 3 30366 30367 30368\n\t\tf 3 -26563 27754 -27754\n\t\tmu 0 3 30369 30370 30371\n\t\tf 3 -27750 -27755 27755\n\t\tmu 0 3 30372 30373 30374\n\t\tf 3 -26567 -27743 -27756\n\t\tmu 0 3 30375 30376 30377\n\t\tf 3 27756 27757 -27752\n\t\tmu 0 3 30378 30379 30380\n\t\tf 3 27758 -27758 27759\n\t\tmu 0 3 30381 30382 30383\n\t\tf 3 27760 27761 -27760\n\t\tmu 0 3 30384 30385 30386\n\t\tf 3 -27759 27762 27763\n\t\tmu 0 3 30387 30388 30389\n\t\tf 3 -26559 -27753 -27764\n\t\tmu 0 3 30390 30391 30392\n\t\tf 3 -26555 -27763 27764\n\t\tmu 0 3 30393 30394 30395\n\t\tf 3 27765 27766 -27765\n\t\tmu 0 3 30396 30397 30398\n\t\tf 3 -27766 -27762 27767\n\t\tmu 0 3 30399 30400 30401\n\t\tf 3 27768 27769 -27768\n\t\tmu 0 3 30402 30403 30404\n\t\tf 3 27770 -27770 27771\n\t\tmu 0 3 30405 30406 30407\n\t\tf 3 27772 27773 -27772\n\t\tmu 0 3 30408 30409 30410\n\t\tf 3 -27771 27774 27775\n\t\tmu 0 3 30411 30412 30413\n\t\tf 3 -26551 -27767 -27776\n\t\tmu 0 3 30414 30415 30416\n\t\tf 3 -26547 -27775 27776\n\t\tmu 0 3 30417 30418 30419\n\t\tf 3 27777 27778 -27777\n\t\tmu 0 3 30420 30421 30422\n\t\tf 3 -27778 -27774 27779\n\t\tmu 0 3 30423 30424 30425\n\t\tf 3 27780 27781 -27780\n\t\tmu 0 3 30426 30427 30428\n\t\tf 3 27782 -27782 27783\n\t\tmu 0 3 30429 30430 30431\n\t\tf 3 27784 27785 -27784\n\t\tmu 0 3 30432 30433 30434\n\t\tf 3 -27783 -26539 27786\n\t\tmu 0 3 30435 30436 30437\n\t\tf 3 -26543 -27779 -27787\n\t\tmu 0 3 30438 30439 30440\n\t\tf 3 -26536 -27786 27787\n\t\tmu 0 3 30441 30442 30443\n\t\tf 3 27788 -26525 -27788\n\t\tmu 0 3 30444 30445 30446\n\t\tf 3 -26433 27789 27790\n\t\tmu 0 3 30447 30448 30449\n\t\tf 3 27791 27792 -27791\n\t\tmu 0 3 30450 30451 30452\n\t\tf 3 -27792 27793 27794\n\t\tmu 0 3 30453 30454 30455\n\t\tf 3 27795 27796 -27795\n\t\tmu 0 3 30456 30457 30458\n\t\tf 3 -27796 27797 27798\n\t\tmu 0 3 30459 30460 30461\n\t\tf 3 27799 27800 -27799\n\t\tmu 0 3 30462 30463 30464\n\t\tf 3 -27800 27801 27802\n\t\tmu 0 3 30465 30466 30467\n\t\tf 3 -26755 27803 -27803\n\t\tmu 0 3 30468 30469 30470\n\t\tf 3 -26768 -27802 27804\n\t\tmu 0 3 30471 30472 30473\n\t\tf 3 27805 27806 -27805\n\t\tmu 0 3 30474 30475 30476\n\t\tf 3 -27806 -27798 27807\n\t\tmu 0 3 30477 30478 30479\n\t\tf 3 27808 27809 -27808\n\t\tmu 0 3 30480 30481 30482\n\t\tf 3 -27809 -27794 27810\n\t\tmu 0 3 30483 30484 30485\n\t\tf 3 27811 27812 -27811\n\t\tmu 0 3 30486 30487 30488\n\t\tf 3 -27812 -27790 27813\n\t\tmu 0 3 30489 30490 30491\n\t\tf 3 -26435 27814 -27814\n\t\tmu 0 3 30492 30493 30494\n\t\tf 3 27815 -27815 27816\n\t\tmu 0 3 30495 30496 30497\n\t\tf 3 -26454 27817 -27817\n\t\tmu 0 3 30498 30499 30500\n\t\tf 3 -27816 27818 27819\n\t\tmu 0 3 30501 30502 30503\n\t\tf 3 27820 -27813 -27820\n\t\tmu 0 3 30504 30505 30506\n\t\tf 3 -27821 27821 27822\n\t\tmu 0 3 30507 30508 30509\n\t\tf 3 27823 -27810 -27823\n\t\tmu 0 3 30510 30511 30512\n\t\tf 3 -27824 27824 27825\n\t\tmu 0 3 30513 30514 30515\n\t\tf 3 -26772 -27807 -27826\n\t\tmu 0 3 30516 30517 30518\n\t\tf 3 -26794 -27825 27826\n\t\tmu 0 3 30519 30520 30521\n\t\tf 3 27827 27828 -27827\n\t\tmu 0 3 30522 30523 30524\n\t\tf 3 -27828 -27822 27829\n\t\tmu 0 3 30525 30526 30527\n\t\tf 3 27830 27831 -27830\n\t\tmu 0 3 30528 30529 30530\n\t\tf 3 -27831 -27819 27832\n\t\tmu 0 3 30531 30532 30533\n\t\tf 3 27833 27834 -27833\n\t\tmu 0 3 30534 30535 30536\n\t\tf 3 -27834 -27818 27835\n\t\tmu 0 3 30537 30538 30539\n\t\tf 3 -26455 27836 -27836\n\t\tmu 0 3 30540 30541 30542\n\t\tf 3 27837 -27837 27838\n\t\tmu 0 3 30543 30544 30545\n\t\tf 3 -26474 27839 -27839\n\t\tmu 0 3 30546 30547 30548\n\t\tf 3 -27838 27840 27841\n\t\tmu 0 3 30549 30550 30551\n\t\tf 3 27842 -27835 -27842\n\t\tmu 0 3 30552 30553 30554\n\t\tf 3 -27843 27843 27844\n\t\tmu 0 3 30555 30556 30557\n\t\tf 3 27845 -27832 -27845\n\t\tmu 0 3 30558 30559 30560\n\t\tf 3 -27846 27846 27847\n\t\tmu 0 3 30561 30562 30563\n\t\tf 3 -26798 -27829 -27848\n\t\tmu 0 3 30564 30565 30566\n\t\tf 3 -26820 -27847 27848\n\t\tmu 0 3 30567 30568 30569\n\t\tf 3 27849 27850 -27849\n\t\tmu 0 3 30570 30571 30572\n\t\tf 3 -27850 -27844 27851\n\t\tmu 0 3 30573 30574 30575\n\t\tf 3 27852 27853 -27852\n\t\tmu 0 3 30576 30577 30578\n\t\tf 3 -27853 -27841 27854\n\t\tmu 0 3 30579 30580 30581\n\t\tf 3 27855 27856 -27855\n\t\tmu 0 3 30582 30583 30584\n\t\tf 3 -27856 -27840 27857\n\t\tmu 0 3 30585 30586 30587\n\t\tf 3 -26475 27858 -27858\n\t\tmu 0 3 30588 30589 30590\n\t\tf 3 27859 -27859 27860\n\t\tmu 0 3 30591 30592 30593\n\t\tf 3 -26494 27861 -27861\n\t\tmu 0 3 30594 30595 30596\n\t\tf 3 -27860 27862 27863\n\t\tmu 0 3 30597 30598 30599\n\t\tf 3 27864 -27857 -27864\n\t\tmu 0 3 30600 30601 30602\n\t\tf 3 -27865 27865 27866\n\t\tmu 0 3 30603 30604 30605\n\t\tf 3 27867 -27854 -27867\n\t\tmu 0 3 30606 30607 30608\n\t\tf 3 -27868 27868 27869\n\t\tmu 0 3 30609 30610 30611\n\t\tf 3 -26824 -27851 -27870\n\t\tmu 0 3 30612 30613 30614\n\t\tf 3 -26846 -27869 27870\n\t\tmu 0 3 30615 30616 30617\n\t\tf 3 27871 27872 -27871\n\t\tmu 0 3 30618 30619 30620\n\t\tf 3 -27872 -27866 27873\n\t\tmu 0 3 30621 30622 30623\n\t\tf 3 27874 27875 -27874\n\t\tmu 0 3 30624 30625 30626\n\t\tf 3 -27875 -27863 27876\n\t\tmu 0 3 30627 30628 30629\n\t\tf 3 27877 27878 -27877\n\t\tmu 0 3 30630 30631 30632\n\t\tf 3 -27878 -27862 27879\n\t\tmu 0 3 30633 30634 30635\n\t\tf 3 -26495 27880 -27880\n\t\tmu 0 3 30636 30637 30638\n\t\tf 3 27881 -27881 27882\n\t\tmu 0 3 30639 30640 30641\n\t\tf 3 -26581 -26636 -27883\n\t\tmu 0 3 30642 30643 30644\n\t\tf 3 27883 -27879 27884\n\t\tmu 0 3 30645 30646 30647\n\t\tf 3 -27882 -26640 -27885\n\t\tmu 0 3 30648 30649 30650\n\t\tf 3 27885 -27876 27886\n\t\tmu 0 3 30651 30652 30653\n\t\tf 3 -27884 -26644 -27887\n\t\tmu 0 3 30654 30655 30656\n\t\tf 3 -26850 -27873 27887\n\t\tmu 0 3 30657 30658 30659\n\t\tf 3 -27886 -26648 -27888\n\t\tmu 0 3 30660 30661 30662\n\t\tf 3 -26632 27888 27889\n\t\tmu 0 3 30663 30664 30665\n\t\tf 3 27890 -26637 -27890\n\t\tmu 0 3 30666 30667 30668\n\t\tf 3 -27891 27891 27892\n\t\tmu 0 3 30669 30670 30671\n\t\tf 3 27893 -26641 -27893\n\t\tmu 0 3 30672 30673 30674\n\t\tf 3 -27894 27894 -26669\n\t\tmu 0 3 30675 30676 30677\n\t\tf 3 -26690 -27895 27895\n\t\tmu 0 3 30678 30679 30680\n\t\tf 3 27896 27897 -27896\n\t\tmu 0 3 30681 30682 30683\n\t\tf 3 -27897 -27892 27898\n\t\tmu 0 3 30684 30685 30686\n\t\tf 3 27899 27900 -27899\n\t\tmu 0 3 30687 30688 30689\n\t\tf 3 -27900 -27889 27901\n\t\tmu 0 3 30690 30691 30692\n\t\tf 3 -26629 27902 -27902\n\t\tmu 0 3 30693 30694 30695\n\t\tf 3 27903 -27903 -26626\n\t\tmu 0 3 30696 30697 30698\n\t\tf 3 -27904 27904 27905\n\t\tmu 0 3 30699 30700 30701\n\t\tf 3 27906 -27901 -27906\n\t\tmu 0 3 30702 30703 30704\n\t\tf 3 -27907 27907 27908\n\t\tmu 0 3 30705 30706 30707\n\t\tf 3 -26694 -27898 -27909\n\t\tmu 0 3 30708 30709 30710\n\t\tf 3 -26716 -27908 27909\n\t\tmu 0 3 30711 30712 30713\n\t\tf 3 27910 27911 -27910\n\t\tmu 0 3 30714 30715 30716\n\t\tf 3 -27911 -27905 27912\n\t\tmu 0 3 30717 30718 30719\n\t\tf 3 -26623 27913 -27913\n\t\tmu 0 3 30720 30721 30722\n\t\tf 3 27914 -27914 27915\n\t\tmu 0 3 30723 30724 30725\n\t\tf 3 27916 27917 -27916\n\t\tmu 0 3 30726 30727 30728\n\t\tf 3 -27917 -26621 27918\n\t\tmu 0 3 30729 30730 30731\n\t\tf 3 27919 27920 -27919\n\t\tmu 0 3 30732 30733 30734\n\t\tf 3 -27920 -26620 27921\n\t\tmu 0 3 30735 30736 30737\n\t\tf 3 -26611 27922 -27922\n\t\tmu 0 3 30738 30739 30740\n\t\tf 3 -27915 27923 27924\n\t\tmu 0 3 30741 30742 30743\n\t\tf 3 -26720 -27912 -27925\n\t\tmu 0 3 30744 30745 30746\n\t\tf 3 -26754 -27924 27925\n\t\tmu 0 3 30747 30748 30749\n\t\tf 3 27926 -27804 -27926\n\t\tmu 0 3 30750 30751 30752\n\t\tf 3 -27927 -27918 27927\n\t\tmu 0 3 30753 30754 30755\n\t\tf 3 27928 -27801 -27928\n\t\tmu 0 3 30756 30757 30758\n\t\tf 3 -27929 -27921 27929\n\t\tmu 0 3 30759 30760 30761\n\t\tf 3 27930 -27797 -27930\n\t\tmu 0 3 30762 30763 30764\n\t\tf 3 -27931 -27923 27931\n\t\tmu 0 3 30765 30766 30767\n\t\tf 3 -26612 -27793 -27932\n\t\tmu 0 3 30768 30769 30770\n\t\tf 3 27932 27933 27934\n\t\tmu 0 3 4985 1375 4334\n\t\tf 3 27935 27936 -27935\n\t\tmu 0 3 4334 340 4985\n\t\tf 3 27937 -27937 27938\n\t\tmu 0 3 6255 4985 340\n\t\tf 3 27939 27940 -27939\n\t\tmu 0 3 340 1235 6255\n\t\tf 3 27941 -27941 27942\n\t\tmu 0 3 2058 6255 1235\n\t\tf 3 27943 27944 -27943\n\t\tmu 0 3 1235 0 2058\n\t\tf 3 27945 -27945 27946\n\t\tmu 0 3 2347 2058 0\n\t\tf 3 27947 27948 -27947\n\t\tmu 0 3 0 2707 2347\n\t\tf 3 27949 -27949 27950\n\t\tmu 0 3 5140 2347 2707\n\t\tf 3 27951 27952 -27951\n\t\tmu 0 3 2707 805 5140\n\t\tf 3 27953 -27953 27954\n\t\tmu 0 3 5580 5140 805\n\t\tf 3 27955 27956 -27955\n\t\tmu 0 3 805 5333 5580\n\t\tf 3 27957 27958 27959\n\t\tmu 0 3 30771 30772 646\n\t\tf 3 27960 27961 -27960\n\t\tmu 0 3 646 3322 30773\n\t\tf 3 27962 27963 27964\n\t\tmu 0 3 3328 30774 30775\n\t\tf 3 27965 27966 27967\n\t\tmu 0 3 30776 4104 30777\n\t\tf 3 27968 27969 27970\n\t\tmu 0 3 30778 30779 3300\n\t\tf 3 27971 27972 -27971\n\t\tmu 0 3 3300 205 30780\n\t\tf 3 27973 27974 27975\n\t\tmu 0 3 3630 30781 30782\n\t\tf 3 27976 27977 -27976\n\t\tmu 0 3 30783 2302 3630\n\t\tf 3 27978 27979 27980\n\t\tmu 0 3 4879 30784 30785\n\t\tf 3 -27948 27981 27982\n\t\tmu 0 3 2707 0 30786\n\t\tf 3 27983 27984 -27981\n\t\tmu 0 3 30787 252 4879\n\t\tf 3 27985 27986 27987\n\t\tmu 0 3 498 30788 30789\n\t\tf 3 -27986 27988 27989\n\t\tmu 0 3 30790 498 30791\n\t\tf 3 27990 27991 -27988\n\t\tmu 0 3 30792 2202 498\n\t\tf 3 27992 27993 27994\n\t\tmu 0 3 3939 30793 30794\n\t\tf 3 27995 27996 -27995\n\t\tmu 0 3 30795 1893 3939\n\t\tf 3 27997 27998 27999\n\t\tmu 0 3 3578 30796 30797\n\t\tf 3 28000 28001 -28000\n\t\tmu 0 3 30798 1287 3578\n\t\tf 3 -28002 28002 28003\n\t\tmu 0 3 3578 1287 5044\n\t\tf 3 28004 28005 -28004\n\t\tmu 0 3 5044 2336 3578\n\t\tf 3 28006 -28006 28007\n\t\tmu 0 3 30799 3578 2336\n\t\tf 3 28008 -27959 -28008\n\t\tmu 0 3 2336 646 30800\n\t\tf 3 28009 -27956 28010\n\t\tmu 0 3 30801 5333 805\n\t\tf 3 28011 -27998 28012\n\t\tmu 0 3 30802 30803 3578\n\t\tf 3 28013 28014 28015\n\t\tmu 0 3 30804 30805 30806\n\t\tf 3 28016 -27993 28017\n\t\tmu 0 3 30807 30808 3939\n\t\tf 3 28018 28019 28020\n\t\tmu 0 3 30809 30810 30811\n\t\tf 3 -28019 28021 28022\n\t\tmu 0 3 30812 30813 30814\n\t\tf 3 28023 -27974 28024\n\t\tmu 0 3 30815 30816 3630\n\t\tf 3 -28003 28025 28026\n\t\tmu 0 3 5044 1287 4845\n\t\tf 3 -28026 -28001 28027\n\t\tmu 0 3 4845 1287 30817\n\t\tf 3 28028 28029 -28027\n\t\tmu 0 3 4845 4739 5044\n\t\tf 3 28030 28031 -28028\n\t\tmu 0 3 30818 1987 4845\n\t\tf 3 28032 -27996 28033\n\t\tmu 0 3 30819 1893 30820\n\t\tf 3 28034 28035 -28034\n\t\tmu 0 3 30821 98 30822\n\t\tf 3 28036 -27991 28037\n\t\tmu 0 3 30823 2202 30824\n\t\tf 3 28038 28039 -28038\n\t\tmu 0 3 30825 563 30826\n\t\tf 3 28040 -27984 28041\n\t\tmu 0 3 30827 252 30828\n\t\tf 3 28042 28043 -28042\n\t\tmu 0 3 30829 5503 30830\n\t\tf 3 28044 -27977 28045\n\t\tmu 0 3 30831 2302 30832\n\t\tf 3 28046 28047 -28046\n\t\tmu 0 3 30833 609 30834\n\t\tf 3 28048 -27972 28049\n\t\tmu 0 3 30835 205 3300\n\t\tf 3 28050 28051 -28050\n\t\tmu 0 3 3300 5820 30836\n\t\tf 3 28052 28053 28054\n\t\tmu 0 3 30837 30838 2106\n\t\tf 3 28055 28056 28057\n\t\tmu 0 3 30839 2375 30840\n\t\tf 3 -28048 28058 28059\n\t\tmu 0 3 30841 609 30842\n\t\tf 3 28060 28061 28062\n\t\tmu 0 3 3606 30843 30844\n\t\tf 3 28063 28064 -28063\n\t\tmu 0 3 30845 2469 3606\n\t\tf 3 -28061 28065 28066\n\t\tmu 0 3 30846 3606 651\n\t\tf 3 28067 28068 -28067\n\t\tmu 0 3 651 587 30847\n\t\tf 3 28069 28070 28071\n\t\tmu 0 3 30848 30849 30850\n\t\tf 3 28072 -28071 28073\n\t\tmu 0 3 30851 30852 30853\n\t\tf 3 -28068 28074 28075\n\t\tmu 0 3 587 651 4677\n\t\tf 3 28076 28077 -28076\n\t\tmu 0 3 4677 4535 587\n\t\tf 3 -28078 28078 28079\n\t\tmu 0 3 587 4535 30854\n\t\tf 3 -28077 28080 28081\n\t\tmu 0 3 4535 4677 3117\n\t\tf 3 28082 28083 -28082\n\t\tmu 0 3 3117 6043 4535\n\t\tf 3 -28083 28084 28085\n\t\tmu 0 3 6043 3117 5074\n\t\tf 3 28086 28087 -28086\n\t\tmu 0 3 5074 779 6043\n\t\tf 3 -28087 28088 28089\n\t\tmu 0 3 779 5074 3359\n\t\tf 3 28090 28091 -28090\n\t\tmu 0 3 3359 4195 779\n\t\tf 3 28092 28093 28094\n\t\tmu 0 3 5632 30855 30856\n\t\tf 3 28095 28096 -28095\n\t\tmu 0 3 30857 5989 5632\n\t\tf 3 -28079 -28084 28097\n\t\tmu 0 3 30858 4535 6043\n\t\tf 3 28098 -28040 28099\n\t\tmu 0 3 30859 30860 563\n\t\tf 3 -28093 28100 28101\n\t\tmu 0 3 30861 5632 4739\n\t\tf 3 -28029 28102 -28102\n\t\tmu 0 3 4739 4845 30862\n\t\tf 3 -28092 28103 28104\n\t\tmu 0 3 779 4195 30863\n\t\tf 3 -28032 28105 28106\n\t\tmu 0 3 4845 1987 30864\n\t\tf 3 -28036 28107 28108\n\t\tmu 0 3 30865 98 30866\n\t\tf 3 28109 28110 28111\n\t\tmu 0 3 30867 30868 30869\n\t\tf 3 28112 28113 28114\n\t\tmu 0 3 30870 30871 266\n\t\tf 3 28115 -28115 28116\n\t\tmu 0 3 30872 30873 266\n\t\tf 3 28117 28118 -28117\n\t\tmu 0 3 266 5158 30874\n\t\tf 3 28119 -28119 28120\n\t\tmu 0 3 30875 30876 5158\n\t\tf 3 28121 28122 -28121\n\t\tmu 0 3 5158 5281 30877\n\t\tf 3 28123 -28123 28124\n\t\tmu 0 3 30878 30879 5281\n\t\tf 3 28125 28126 -28125\n\t\tmu 0 3 5281 6316 30880\n\t\tf 3 28127 -28127 28128\n\t\tmu 0 3 30881 30882 6316\n\t\tf 3 28129 28130 28131\n\t\tmu 0 3 30883 560 30884\n\t\tf 3 -28131 28132 28133\n\t\tmu 0 3 30885 560 30886\n\t\tf 3 28134 -28126 28135\n\t\tmu 0 3 4471 6316 5281\n\t\tf 3 28136 28137 -28136\n\t\tmu 0 3 5281 5611 4471\n\t\tf 3 -28122 28138 28139\n\t\tmu 0 3 5281 5158 5497\n\t\tf 3 28140 -28137 -28140\n\t\tmu 0 3 5497 5611 5281\n\t\tf 3 28141 -28138 28142\n\t\tmu 0 3 3441 4471 5611\n\t\tf 3 28143 28144 -28143\n\t\tmu 0 3 5611 5025 3441\n\t\tf 3 28145 -28144 28146\n\t\tmu 0 3 672 5025 5611\n\t\tf 3 -28141 28147 -28147\n\t\tmu 0 3 5611 5497 672\n\t\tf 3 -27982 -27944 28148\n\t\tmu 0 3 30887 0 1235\n\t\tf 3 28149 28150 28151\n\t\tmu 0 3 5663 2906 30888\n\t\tf 3 28152 28153 -28152\n\t\tmu 0 3 30889 30890 5663\n\t\tf 3 -27966 28154 28155\n\t\tmu 0 3 4104 30891 30892\n\t\tf 3 28156 28157 -28156\n\t\tmu 0 3 30893 1833 4104\n\t\tf 3 -27970 28158 28159\n\t\tmu 0 3 3300 30894 30895\n\t\tf 3 28160 28161 -28160\n\t\tmu 0 3 30896 5086 3300\n\t\tf 3 -28162 28162 28163\n\t\tmu 0 3 3300 5086 610\n\t\tf 3 28164 -28051 -28164\n\t\tmu 0 3 610 5820 3300\n\t\tf 3 28165 28166 28167\n\t\tmu 0 3 30897 30898 723\n\t\tf 3 28168 -28054 -28168\n\t\tmu 0 3 723 2106 30899\n\t\tf 3 28169 28170 28171\n\t\tmu 0 3 30900 30901 5169\n\t\tf 3 28172 28173 -28172\n\t\tmu 0 3 5169 30902 30903\n\t\tf 3 -28150 28174 28175\n\t\tmu 0 3 2906 5663 3783\n\t\tf 3 28176 28177 -28176\n\t\tmu 0 3 3783 280 2906\n\t\tf 3 28178 28179 28180\n\t\tmu 0 3 30904 30905 5661\n\t\tf 3 -28178 28181 28182\n\t\tmu 0 3 2906 280 30906\n\t\tf 3 -28180 28183 28184\n\t\tmu 0 3 5661 30907 30908\n\t\tf 3 28185 28186 -28181\n\t\tmu 0 3 5661 432 30909\n\t\tf 3 28187 -28171 28188\n\t\tmu 0 3 657 5169 30910\n\t\tf 3 28189 28190 -28189\n\t\tmu 0 3 30911 2759 657\n\t\tf 3 -28187 28191 28192\n\t\tmu 0 3 30912 432 382\n\t\tf 3 28193 28194 -28193\n\t\tmu 0 3 382 30913 30914\n\t\tf 3 28195 -28194 28196\n\t\tmu 0 3 30915 30916 382\n\t\tf 3 28197 -28190 28198\n\t\tmu 0 3 30917 2759 30918\n\t\tf 3 28199 28200 28201\n\t\tmu 0 3 32 30919 30920\n\t\tf 3 28202 28203 28204\n\t\tmu 0 3 382 1567 30921\n\t\tf 3 -28203 -28192 28205\n\t\tmu 0 3 1567 382 432\n\t\tf 3 28206 28207 28208\n\t\tmu 0 3 30922 30923 4755\n\t\tf 3 28209 28210 -28209\n\t\tmu 0 3 4755 2647 30924\n\t\tf 3 -28186 28211 28212\n\t\tmu 0 3 432 5661 2745\n\t\tf 3 -28212 28213 28214\n\t\tmu 0 3 2745 5661 30925\n\t\tf 3 -28211 28215 28216\n\t\tmu 0 3 30926 2647 30927\n\t\tf 3 28217 28218 -28213\n\t\tmu 0 3 2745 5762 432\n\t\tf 3 -28219 28219 -28206\n\t\tmu 0 3 432 5762 1567\n\t\tf 3 -28200 28220 28221\n\t\tmu 0 3 30928 32 6287\n\t\tf 3 28222 28223 -28222\n\t\tmu 0 3 6287 30929 30930;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ns\" 0.1;\n\tsetAttr \".ndt\" 2;\n\tsetAttr \".tsa\" 3.0000000000000004;\n\tsetAttr \".tnt\" 3.0000000000000004;\ncreateNode transform -n \"directionalLight1\";\n\trename -uid \"11363E86-4D28-0D19-0058-2BADBA2FE35D\";\n\tsetAttr \".t\" -type \"double3\" 1.40019273164942 1.7506716874128676 -1.1122982736040181 ;\ncreateNode directionalLight -n \"directionalLightShape1\" -p \"directionalLight1\";\n\trename -uid \"4593F2A7-4759-14A9-8452-B58929D7C3FD\";\n\tsetAttr -k off \".v\";\ncreateNode aimConstraint -n \"directionalLight1_aimConstraint1\" -p \"directionalLight1\";\n\trename -uid \"E3C97E59-4816-A1D3-4855-A29A000165D2\";\n\taddAttr -dcb 0 -ci true -sn \"w0\" -ln \"helmetW0\" -dv 1 -at \"double\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -k off \".v\";\n\tsetAttr -k off \".tx\";\n\tsetAttr -k off \".ty\";\n\tsetAttr -k off \".tz\";\n\tsetAttr -k off \".rx\";\n\tsetAttr -k off \".ry\";\n\tsetAttr -k off \".rz\";\n\tsetAttr -k off \".sx\";\n\tsetAttr -k off \".sy\";\n\tsetAttr -k off \".sz\";\n\tsetAttr \".erp\" yes;\n\tsetAttr \".a\" -type \"double3\" 0 0 -1 ;\n\tsetAttr \".rsrr\" -type \"double3\" 148.87354140215703 -38.133182477117664 -135.63904563843241 ;\n\tsetAttr -k on \".w0\";\ncreateNode transform -n \"camera1\";\n\trename -uid \"D3308AE9-4667-0629-BA77-AAAA96E02635\";\n\tsetAttr \".t\" -type \"double3\" -2.1917677499514818 1.8263077643736478 -3.7437973715735056 ;\n\tsetAttr \".r\" -type \"double3\" -23.000423325217938 209.79999999999572 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"EA1A02DD-4189-F083-821C-8FB336F64007\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 4.8814085253269743;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.0024815797805786133 1.0520219802856445e-05 0.18715494871139526 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"1A56AE72-42FA-03DF-2E76-CF9ACFCFC078\";\n\tsetAttr -s 8 \".lnk\";\n\tsetAttr -s 8 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"FE169790-404D-EE87-A1FF-2B8533C95F99\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"E7BD0D48-4179-CAEE-E593-0C8B3263A627\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"2A0CCABD-41BC-F14A-29D4-2BB152C0BA58\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"3C9209EA-406A-FCB8-9CDD-3CACF423DD99\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"A4D18E4F-4ADE-12CF-0101-20A25E300865\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"ED99F701-4D18-CF26-1244-E9848CE5CB7E\";\n\tsetAttr \".g\" yes;\ncreateNode phong -n \"Material_MR\";\n\trename -uid \"E6DF2618-4078-77E7-01B6-74A5595255C5\";\n\tsetAttr \".dc\" 1;\n\tsetAttr \".c\" -type \"float3\" 0.80000001 0.80000001 0.80000001 ;\n\tsetAttr \".ambc\" -type \"float3\" 0.2 0.2 0.2 ;\n\tsetAttr \".sc\" -type \"float3\" 0.2 0.2 0.2 ;\n\tsetAttr \".rfl\" 1;\ncreateNode shadingEngine -n \"node_damagedHelmet_FBXASC0456514SG\";\n\trename -uid \"22221CD8-4334-FC68-3830-FF96AD69440D\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"A23C5D88-4258-7DA2-3CFA-0DBA85EF946F\";\ncreateNode GLSLShader -n \"GLSL_PBR_Shader\";\n\trename -uid \"697495E0-490C-7336-20DA-4FA663BF1120\";\n\taddAttr -ci true -sn \"Light_0_use_implicit_lighting\" -ln \"Light_0_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_0_connected_light\" -ln \"Light_0_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_1_use_implicit_lighting\" -ln \"Light_1_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_1_connected_light\" -ln \"Light_1_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_2_use_implicit_lighting\" -ln \"Light_2_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_2_connected_light\" -ln \"Light_2_connected_light\" \n\t\t-at \"message\";\n\taddAttr -s false -is true -ci true -k true -sn \"te\" -ln \"techniqueEnum\" -nn \"Technique\" \n\t\t-min 0 -max 1 -en \"Solid:Transparent\" -at \"enum\";\n\taddAttr -ci true -sn \"Position\" -ln \"Position\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Position_Name\" -ln \"Position_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"Position_Source\" -ln \"Position_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -sn \"Position_DefaultTexture\" -ln \"Position_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Name\" -ln \"u_LightColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Type\" -ln \"u_LightColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_LightColor\" -ln \"u_LightColor\" -nn \"Light Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_LightColorR\" -ln \"u_LightColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorG\" -ln \"u_LightColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorB\" -ln \"u_LightColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Name\" -ln \"u_BaseColorTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Type\" -ln \"u_BaseColorTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorTexture\" -ln \"u_BaseColorTexture\" \n\t\t-nn \"Base color map (sRGB)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureR\" -ln \"u_BaseColorTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureG\" -ln \"u_BaseColorTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureB\" -ln \"u_BaseColorTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Name\" -ln \"u_EmissiveTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Type\" -ln \"u_EmissiveTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveTexture\" -ln \"u_EmissiveTexture\" -nn \"Emissive map (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureR\" -ln \"u_EmissiveTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureG\" -ln \"u_EmissiveTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureB\" -ln \"u_EmissiveTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Name\" -ln \"u_OcclusionTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Type\" -ln \"u_OcclusionTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_OcclusionTexture\" -ln \"u_OcclusionTexture\" \n\t\t-nn \"Occlusion map (R,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureR\" -ln \"u_OcclusionTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureG\" -ln \"u_OcclusionTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureB\" -ln \"u_OcclusionTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Name\" -ln \"u_OcclusionStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Type\" -ln \"u_OcclusionStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_OcclusionStrength\" -ln \"u_OcclusionStrength\" -nn \"Occlusion strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Name\" -ln \"u_BaseColorFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Type\" -ln \"u_BaseColorFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactor\" -ln \"u_BaseColorFactor\" -nn \"Base color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorFactorRGB\" -ln \"u_BaseColorFactorRGB\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_BaseColorFactor\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorR\" -ln \"u_BaseColorFactorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorG\" -ln \"u_BaseColorFactorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorB\" -ln \"u_BaseColorFactorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorA\" -ln \"u_BaseColorFactorA\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactor\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Name\" -ln \"u_ScaleDiffBaseMR_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Type\" -ln \"u_ScaleDiffBaseMR_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMR\" -ln \"u_ScaleDiffBaseMR\" -nn \"Scale Diff Base MR\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRXYZ\" -ln \"u_ScaleDiffBaseMRXYZ\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_ScaleDiffBaseMR\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRX\" -ln \"u_ScaleDiffBaseMRX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRY\" -ln \"u_ScaleDiffBaseMRY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRZ\" -ln \"u_ScaleDiffBaseMRZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRW\" -ln \"u_ScaleDiffBaseMRW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMR\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Name\" -ln \"u_ScaleFGDSpec_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Type\" -ln \"u_ScaleFGDSpec_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpec\" -ln \"u_ScaleFGDSpec\" -nn \"Scale FGD Spec\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecXYZ\" -ln \"u_ScaleFGDSpecXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleFGDSpec\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecX\" -ln \"u_ScaleFGDSpecX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecY\" -ln \"u_ScaleFGDSpecY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecZ\" -ln \"u_ScaleFGDSpecZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecW\" -ln \"u_ScaleFGDSpecW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpec\";\n\taddAttr -ci true -sn \"Normal\" -ln \"Normal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Normal_Name\" -ln \"Normal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Source\" -ln \"Normal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -sn \"Normal_DefaultTexture\" -ln \"Normal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Normal\";\n\taddAttr -ci true -sn \"Tangent\" -ln \"Tangent\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Tangent_Name\" -ln \"Tangent_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"Tangent_Source\" -ln \"Tangent_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -sn \"Tangent_DefaultTexture\" -ln \"Tangent_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Name\" -ln \"u_NormalTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Type\" -ln \"u_NormalTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_NormalTexture\" -ln \"u_NormalTexture\" -nn \"Normal map (LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_NormalTextureR\" -ln \"u_NormalTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureG\" -ln \"u_NormalTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureB\" -ln \"u_NormalTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Name\" -ln \"u_NormalScale_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Type\" -ln \"u_NormalScale_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_NormalScale\" -ln \"u_NormalScale\" -nn \"Normal scale\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Name\" -ln \"u_DiffuseEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Type\" -ln \"u_DiffuseEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_DiffuseEnvTexture\" -ln \"u_DiffuseEnvTexture\" \n\t\t-nn \"Diffuse env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureR\" -ln \"u_DiffuseEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureG\" -ln \"u_DiffuseEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureB\" -ln \"u_DiffuseEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Name\" -ln \"u_SpecularEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Type\" -ln \"u_SpecularEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_SpecularEnvTexture\" -ln \"u_SpecularEnvTexture\" \n\t\t-nn \"Specular env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureR\" -ln \"u_SpecularEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureG\" -ln \"u_SpecularEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureB\" -ln \"u_SpecularEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Name\" -ln \"u_brdfTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Type\" -ln \"u_brdfTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_brdfTexture\" -ln \"u_brdfTexture\" -nn \"BRDF LUT (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_brdfTextureR\" -ln \"u_brdfTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureG\" -ln \"u_brdfTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureB\" -ln \"u_brdfTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Name\" -ln \"u_MetallicTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Type\" -ln \"u_MetallicTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_MetallicTexture\" -ln \"u_MetallicTexture\" -nn \"Metallic map (B,LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_MetallicTextureR\" -ln \"u_MetallicTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureG\" -ln \"u_MetallicTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureB\" -ln \"u_MetallicTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Name\" -ln \"u_MetallicStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Type\" -ln \"u_MetallicStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_MetallicStrength\" -ln \"u_MetallicStrength\" -nn \"Metallic strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Name\" -ln \"u_RoughnessTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Type\" -ln \"u_RoughnessTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_RoughnessTexture\" -ln \"u_RoughnessTexture\" \n\t\t-nn \"Roughness map (G,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureR\" -ln \"u_RoughnessTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureG\" -ln \"u_RoughnessTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureB\" -ln \"u_RoughnessTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Name\" -ln \"u_RoughnessStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Type\" -ln \"u_RoughnessStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessStrength\" -ln \"u_RoughnessStrength\" -nn \"Roughness strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Name\" -ln \"u_EmissiveColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Type\" -ln \"u_EmissiveColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveColor\" -ln \"u_EmissiveColor\" -nn \"Emissive color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveColorR\" -ln \"u_EmissiveColorR\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorG\" -ln \"u_EmissiveColorG\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorB\" -ln \"u_EmissiveColorB\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Name\" -ln \"u_ScaleIBL_Occl_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Type\" -ln \"u_ScaleIBL_Occl_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_Occl\" -ln \"u_ScaleIBL_Occl\" -nn \"Scale IBL AO(w)\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclXYZ\" -ln \"u_ScaleIBL_OcclXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleIBL_Occl\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclX\" -ln \"u_ScaleIBL_OcclX\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclY\" -ln \"u_ScaleIBL_OcclY\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclZ\" -ln \"u_ScaleIBL_OcclZ\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclW\" -ln \"u_ScaleIBL_OcclW\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_Occl\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Name\" -ln \"u_UseMeshTangents_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Type\" -ln \"u_UseMeshTangents_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UseMeshTangents\" -ln \"u_UseMeshTangents\" -nn \"Use mesh tangents?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -ci true -sn \"directionalLight1_use_implicit_lighting\" -ln \"directionalLight1_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"directionalLight1_connected_light\" -ln \"directionalLight1_connected_light\" \n\t\t-at \"message\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Name\" -ln \"u_LightIntensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Type\" -ln \"u_LightIntensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightIntensity\" -ln \"u_LightIntensity\" -nn \"Light Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 10 -smn 0 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Name\" -ln \"u_LightRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Type\" -ln \"u_LightRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightRotation\" -ln \"u_LightRotation\" -nn \"Light rotation (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 75 -min 0 -max 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Name\" -ln \"u_LightPitch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Type\" -ln \"u_LightPitch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightPitch\" -ln \"u_LightPitch\" -nn \"Light pitch (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 40 -min -90 -max 90 -at \"float\";\n\taddAttr -ci true -sn \"Binormal\" -ln \"Binormal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Binormal_Name\" -ln \"Binormal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -h true -sn \"Binormal_Source\" -ln \"Binormal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -sn \"Binormal_DefaultTexture\" -ln \"Binormal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Binormal\";\n\taddAttr -ci true -sn \"TexCoord0\" -ln \"TexCoord0\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Name\" -ln \"TexCoord0_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Source\" -ln \"TexCoord0_Source\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -sn \"TexCoord0_DefaultTexture\" -ln \"TexCoord0_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Name\" -ln \"u_IsDoubleSided_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Type\" -ln \"u_IsDoubleSided_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsDoubleSided\" -ln \"u_IsDoubleSided\" -nn \"Double sided material?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Name\" -ln \"u_RoughnessOffset_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Type\" -ln \"u_RoughnessOffset_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessOffset\" -ln \"u_RoughnessOffset\" -nn \"Roughness offset\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 12 -smn 0 -smx 12 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Name\" -ln \"u_BurleyFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Type\" -ln \"u_BurleyFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BurleyFactor\" -ln \"u_BurleyFactor\" -nn \"Burley factor\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Name\" -ln \"u_UndoEdgeStretch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Type\" -ln \"u_UndoEdgeStretch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UndoEdgeStretch\" -ln \"u_UndoEdgeStretch\" -nn \"Undo edge stretch?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Name\" -ln \"u_IsEmissiveInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Type\" -ln \"u_IsEmissiveInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEmissiveInsRGB\" -ln \"u_IsEmissiveInsRGB\" -nn \"sRGB emissive?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Name\" -ln \"u_EnvRotationAngle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Type\" -ln \"u_EnvRotationAngle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_EnvRotationAngle\" -ln \"u_EnvRotationAngle\" -nn \"Environment Rotation\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Name\" -ln \"u_FlipEnvMapZ_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Type\" -ln \"u_FlipEnvMapZ_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_FlipEnvMapZ\" -ln \"u_FlipEnvMapZ\" -nn \"Flip environment Z?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Name\" -ln \"u_IsEnvMapInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Type\" -ln \"u_IsEnvMapInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInsRGB\" -ln \"u_IsEnvMapInsRGB\" -nn \"sRGB environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Name\" -ln \"u_IsEnvMapInRGBM_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Type\" -ln \"u_IsEnvMapInRGBM_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInRGBM\" -ln \"u_IsEnvMapInRGBM\" -nn \"RGBM environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Name\" -ln \"u_IsBRDFsSRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Type\" -ln \"u_IsBRDFsSRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBRDFsSRGB\" -ln \"u_IsBRDFsSRGB\" -nn \"sRGB BRDF table?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Name\" -ln \"u_IsBaseColorInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Type\" -ln \"u_IsBaseColorInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBaseColorInsRGB\" -ln \"u_IsBaseColorInsRGB\" -nn \"sRGB basecolor?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\tsetAttr \".vpar\" -type \"stringArray\" 5 \"Position\" \"Normal\" \"Tangent\" \"Binormal\" \"TexCoord0\"  ;\n\tsetAttr \".upar\" -type \"stringArray\" 34 \"u_LightColor\" \"u_LightIntensity\" \"u_LightRotation\" \"u_LightPitch\" \"u_BaseColorTexture\" \"u_BaseColorFactor\" \"u_MetallicTexture\" \"u_MetallicStrength\" \"u_RoughnessTexture\" \"u_RoughnessStrength\" \"u_OcclusionTexture\" \"u_OcclusionStrength\" \"u_NormalTexture\" \"u_NormalScale\" \"u_EmissiveTexture\" \"u_EmissiveColor\" \"u_DiffuseEnvTexture\" \"u_SpecularEnvTexture\" \"u_brdfTexture\" \"u_IsDoubleSided\" \"u_UseMeshTangents\" \"u_RoughnessOffset\" \"u_ScaleDiffBaseMR\" \"u_BurleyFactor\" \"u_ScaleFGDSpec\" \"u_UndoEdgeStretch\" \"u_ScaleIBL_Occl\" \"u_IsEmissiveInsRGB\" \"u_EnvRotationAngle\" \"u_FlipEnvMapZ\" \"u_IsEnvMapInsRGB\" \"u_IsEnvMapInRGBM\" \"u_IsBRDFsSRGB\" \"u_IsBaseColorInsRGB\"  ;\n\tsetAttr \".s\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/shaders/glTF_PBR.ogsfx\";\n\tsetAttr \".t\" -type \"string\" \"Solid\";\n\tsetAttr \".Light_0_use_implicit_lighting\" no;\n\tsetAttr \".Light_1_use_implicit_lighting\" no;\n\tsetAttr \".Position_Name\" -type \"string\" \"Position\";\n\tsetAttr \".Position_Source\" -type \"string\" \"position\";\n\tsetAttr \".u_LightColor_Name\" -type \"string\" \"u_LightColor\";\n\tsetAttr \".u_LightColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr -l on \".u_LightColor\" -type \"float3\" 1 1 1 ;\n\tsetAttr -l on \".u_LightColor\";\n\tsetAttr \".u_BaseColorTexture_Name\" -type \"string\" \"u_BaseColorTexture\";\n\tsetAttr \".u_BaseColorTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_BaseColorTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_EmissiveTexture_Name\" -type \"string\" \"u_EmissiveTexture\";\n\tsetAttr \".u_EmissiveTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_EmissiveTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_OcclusionTexture_Name\" -type \"string\" \"u_OcclusionTexture\";\n\tsetAttr \".u_OcclusionTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_OcclusionTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_OcclusionStrength_Name\" -type \"string\" \"u_OcclusionStrength\";\n\tsetAttr \".u_OcclusionStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_OcclusionStrength\" 1;\n\tsetAttr \".u_BaseColorFactor_Name\" -type \"string\" \"u_BaseColorFactor\";\n\tsetAttr \".u_BaseColorFactor_Type\" -type \"string\" \"color4x1\";\n\tsetAttr \".u_BaseColorFactorRGB\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_BaseColorFactorA\" 1;\n\tsetAttr \".u_ScaleDiffBaseMR_Name\" -type \"string\" \"u_ScaleDiffBaseMR\";\n\tsetAttr \".u_ScaleDiffBaseMR_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleDiffBaseMRXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleDiffBaseMRW\" 0;\n\tsetAttr \".u_ScaleFGDSpec_Name\" -type \"string\" \"u_ScaleFGDSpec\";\n\tsetAttr \".u_ScaleFGDSpec_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleFGDSpecXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleFGDSpecW\" 0;\n\tsetAttr \".Normal_Name\" -type \"string\" \"Normal\";\n\tsetAttr \".Normal_Source\" -type \"string\" \"normal\";\n\tsetAttr \".Tangent_Name\" -type \"string\" \"Tangent\";\n\tsetAttr \".Tangent_Source\" -type \"string\" \"tangent:map1\";\n\tsetAttr \".u_NormalTexture_Name\" -type \"string\" \"u_NormalTexture\";\n\tsetAttr \".u_NormalTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_NormalTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_NormalScale_Name\" -type \"string\" \"u_NormalScale\";\n\tsetAttr \".u_NormalScale_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_NormalScale\" 1;\n\tsetAttr \".u_DiffuseEnvTexture_Name\" -type \"string\" \"u_DiffuseEnvTexture\";\n\tsetAttr \".u_DiffuseEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_DiffuseEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_SpecularEnvTexture_Name\" -type \"string\" \"u_SpecularEnvTexture\";\n\tsetAttr \".u_SpecularEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_SpecularEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_brdfTexture_Name\" -type \"string\" \"u_brdfTexture\";\n\tsetAttr \".u_brdfTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_brdfTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_MetallicTexture_Name\" -type \"string\" \"u_MetallicTexture\";\n\tsetAttr \".u_MetallicTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_MetallicTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_MetallicStrength_Name\" -type \"string\" \"u_MetallicStrength\";\n\tsetAttr \".u_MetallicStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_MetallicStrength\" 1;\n\tsetAttr \".u_RoughnessTexture_Name\" -type \"string\" \"u_RoughnessTexture\";\n\tsetAttr \".u_RoughnessTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_RoughnessTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_RoughnessStrength_Name\" -type \"string\" \"u_RoughnessStrength\";\n\tsetAttr \".u_RoughnessStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_RoughnessStrength\" 1;\n\tsetAttr \".u_EmissiveColor_Name\" -type \"string\" \"u_EmissiveColor\";\n\tsetAttr \".u_EmissiveColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_EmissiveColor\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_ScaleIBL_Occl_Name\" -type \"string\" \"u_ScaleIBL_Occl\";\n\tsetAttr \".u_ScaleIBL_Occl_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleIBL_OcclXYZ\" -type \"float3\" 1 1 0 ;\n\tsetAttr \".u_ScaleIBL_OcclW\" 1;\n\tsetAttr \".u_UseMeshTangents_Name\" -type \"string\" \"u_UseMeshTangents\";\n\tsetAttr \".u_UseMeshTangents_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UseMeshTangents\" no;\n\tsetAttr \".directionalLight1_use_implicit_lighting\" no;\n\tsetAttr \".u_LightIntensity_Name\" -type \"string\" \"u_LightIntensity\";\n\tsetAttr \".u_LightIntensity_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".u_LightIntensity\" 1;\n\tsetAttr \".u_LightRotation_Name\" -type \"string\" \"u_LightRotation\";\n\tsetAttr \".u_LightRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightRotation\" 75;\n\tsetAttr \".u_LightPitch_Name\" -type \"string\" \"u_LightPitch\";\n\tsetAttr \".u_LightPitch_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightPitch\" 40;\n\tsetAttr \".Binormal_Name\" -type \"string\" \"Binormal\";\n\tsetAttr \".Binormal_Source\" -type \"string\" \"binormal:map1\";\n\tsetAttr \".TexCoord0_Name\" -type \"string\" \"TexCoord0\";\n\tsetAttr \".TexCoord0_Source\" -type \"string\" \"uv:map1\";\n\tsetAttr \".TexCoord0_DefaultTexture\" -type \"string\" \"u_BaseColorTexture\";\n\tsetAttr \".u_IsDoubleSided_Name\" -type \"string\" \"u_IsDoubleSided\";\n\tsetAttr \".u_IsDoubleSided_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsDoubleSided\" no;\n\tsetAttr \".u_RoughnessOffset_Name\" -type \"string\" \"u_RoughnessOffset\";\n\tsetAttr \".u_RoughnessOffset_Type\" -type \"string\" \"int\";\n\tsetAttr \".u_RoughnessOffset\" 0;\n\tsetAttr \".u_BurleyFactor_Name\" -type \"string\" \"u_BurleyFactor\";\n\tsetAttr \".u_BurleyFactor_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_BurleyFactor\" 0;\n\tsetAttr \".u_UndoEdgeStretch_Name\" -type \"string\" \"u_UndoEdgeStretch\";\n\tsetAttr \".u_UndoEdgeStretch_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UndoEdgeStretch\" no;\n\tsetAttr \".u_IsEmissiveInsRGB_Name\" -type \"string\" \"u_IsEmissiveInsRGB\";\n\tsetAttr \".u_IsEmissiveInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEmissiveInsRGB\" yes;\n\tsetAttr \".u_EnvRotationAngle_Name\" -type \"string\" \"u_EnvRotationAngle\";\n\tsetAttr \".u_EnvRotationAngle_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_EnvRotationAngle\" 0;\n\tsetAttr \".u_FlipEnvMapZ_Name\" -type \"string\" \"u_FlipEnvMapZ\";\n\tsetAttr \".u_FlipEnvMapZ_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_FlipEnvMapZ\" yes;\n\tsetAttr \".u_IsEnvMapInsRGB_Name\" -type \"string\" \"u_IsEnvMapInsRGB\";\n\tsetAttr \".u_IsEnvMapInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInsRGB\" no;\n\tsetAttr \".u_IsEnvMapInRGBM_Name\" -type \"string\" \"u_IsEnvMapInRGBM\";\n\tsetAttr \".u_IsEnvMapInRGBM_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInRGBM\" no;\n\tsetAttr \".u_IsBRDFsSRGB_Name\" -type \"string\" \"u_IsBRDFsSRGB\";\n\tsetAttr \".u_IsBRDFsSRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBRDFsSRGB\" no;\n\tsetAttr \".u_IsBaseColorInsRGB_Name\" -type \"string\" \"u_IsBaseColorInsRGB\";\n\tsetAttr \".u_IsBaseColorInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBaseColorInsRGB\" yes;\ncreateNode shadingEngine -n \"GLSLShader1SG\";\n\trename -uid \"A39CC043-408D-53D0-BCE3-E5B74A46CB09\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"4CE616B2-46CC-0D62-D1AD-8F9FF97C700A\";\ncreateNode file -n \"file_albedo\";\n\trename -uid \"9635A652-444D-3C90-BC05-38A30D9B7D69\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//images/damaged_helmet_albedo.jpg\";\n\tsetAttr \".pfr\" 10;\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture1\";\n\trename -uid \"92259C15-471D-ADC6-FD70-659CF88ECE2F\";\ncreateNode file -n \"file_normal\";\n\trename -uid \"4DA2741B-4978-1AA0-1355-44AA3C5B011D\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//images/damaged_helmet_normal.png\";\n\tsetAttr \".ft\" 4;\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture2\";\n\trename -uid \"7982CF56-4B9A-A63B-DCEF-6C9C1458341E\";\ncreateNode file -n \"file_orm\";\n\trename -uid \"86C058B9-4789-FE12-375D-87A82F44A30F\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//images/damaged_helmet_orm.jpg\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture3\";\n\trename -uid \"02B90BEC-4D84-ACBB-B1B0-AC8419FE0707\";\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"5E62F7F3-4425-6AA7-3A68-2998B05A9941\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 0\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 1\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 0\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 0\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 10 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"1ACBD286-4C21-4A15-9BDA-BE99B8047EE0\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode place2dTexture -n \"place2dTexture4\";\n\trename -uid \"C0A8C725-475C-FAAA-DC52-2891FA906FB6\";\ncreateNode envCube -n \"envCube1\";\n\trename -uid \"1863FB24-4D86-0AF5-BBDD-88BE441D1845\";\ncreateNode place2dTexture -n \"place2dTexture5\";\n\trename -uid \"0B90B01A-41E2-61AF-AFFD-94B14532AFE6\";\ncreateNode place2dTexture -n \"place2dTexture6\";\n\trename -uid \"B68B52DD-416B-FA02-FC02-1E87AF96BE40\";\ncreateNode place2dTexture -n \"place2dTexture7\";\n\trename -uid \"4D77912C-4285-ED2C-5E4E-3AACFA7D490F\";\ncreateNode place2dTexture -n \"place2dTexture8\";\n\trename -uid \"56220B31-46C0-641A-90AC-79B8B1B9634E\";\ncreateNode place2dTexture -n \"place2dTexture9\";\n\trename -uid \"C458D8F3-4D46-19A9-8802-969CF7162F26\";\ncreateNode place2dTexture -n \"place2dTexture10\";\n\trename -uid \"6D766279-45DE-D1C5-A303-50BFB7498CC5\";\ncreateNode envCube -n \"envCube2\";\n\trename -uid \"5796FF62-4E44-F6C1-7AB7-028CAFC031F4\";\ncreateNode place2dTexture -n \"place2dTexture11\";\n\trename -uid \"46880797-45D6-8AB5-7960-73B38A6DDBA1\";\ncreateNode place2dTexture -n \"place2dTexture12\";\n\trename -uid \"ABBE931F-405D-EB7C-0E67-75A81D184D96\";\ncreateNode place2dTexture -n \"place2dTexture13\";\n\trename -uid \"3C8967E9-4959-9BED-A954-BCA6DC45E9B9\";\ncreateNode place2dTexture -n \"place2dTexture14\";\n\trename -uid \"52A548FA-43A9-EBBF-AECC-CB89AFB2F8BA\";\ncreateNode place2dTexture -n \"place2dTexture15\";\n\trename -uid \"A6C3D041-4063-E2F5-4346-77A13225EFB8\";\ncreateNode place2dTexture -n \"place2dTexture16\";\n\trename -uid \"F6044585-4BF8-A58D-8142-77A4C02F6BB9\";\ncreateNode layeredTexture -n \"layeredTexture1\";\n\trename -uid \"7C6D88C5-48D4-3F2C-1AC0-9EA0F5D8E4F0\";\n\tsetAttr \".cs[0].c\" -type \"float3\" 0.2 0.69999999 0.30000001 ;\n\tsetAttr \".cs[0].a\" 1;\n\tsetAttr \".cs[0].bm\" 1;\n\tsetAttr \".cs[0].iv\" yes;\ncreateNode envCube -n \"envCube3\";\n\trename -uid \"F4124F43-4584-F512-E131-B69152156874\";\n\tsetAttr \".lt\" 1;\ncreateNode place2dTexture -n \"place2dTexture17\";\n\trename -uid \"C2FB0326-4FAC-522E-70C3-E08D70C49B6F\";\ncreateNode place2dTexture -n \"place2dTexture18\";\n\trename -uid \"CB18252A-4F32-7AF9-F448-74BB3AA9B758\";\ncreateNode place2dTexture -n \"place2dTexture19\";\n\trename -uid \"10B8D0DC-41C4-BF08-5084-E8983B96BE93\";\ncreateNode place2dTexture -n \"place2dTexture20\";\n\trename -uid \"06BAB71B-42C9-3C03-834A-249767F1995B\";\ncreateNode place2dTexture -n \"place2dTexture21\";\n\trename -uid \"649A863D-4940-1346-0B29-5EBA310A2166\";\ncreateNode place2dTexture -n \"place2dTexture22\";\n\trename -uid \"841A4250-453D-42CB-1528-10BAE9F344B6\";\ncreateNode place2dTexture -n \"place2dTexture23\";\n\trename -uid \"55C390A1-48DA-3465-F58A-0D8A2DF6B423\";\ncreateNode place2dTexture -n \"place2dTexture24\";\n\trename -uid \"46F46848-4E07-C9CA-9922-39B5FF93E5DF\";\ncreateNode place2dTexture -n \"place2dTexture25\";\n\trename -uid \"6C900BA0-4588-E2D4-305A-57AF28DFF3D3\";\ncreateNode place2dTexture -n \"place2dTexture26\";\n\trename -uid \"EEDC0D58-4D58-2734-D7E4-7BAE79BBB0DC\";\ncreateNode file -n \"file_diffuse_env\";\n\trename -uid \"1610DE0C-44D6-A0CB-B29D-ABB38A71DAEF\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_diffuse_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture27\";\n\trename -uid \"BDACD375-4B22-C2BF-3D10-CD8FEED5837B\";\ncreateNode file -n \"file_specular_env\";\n\trename -uid \"1320658B-4C86-29FD-1D71-338A9870324F\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_specular_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\n\tsetAttr \".ifr\" yes;\ncreateNode place2dTexture -n \"place2dTexture28\";\n\trename -uid \"51F4C5BA-47E1-935B-3A70-18A3EF54588F\";\ncreateNode surfaceShader -n \"surfaceShader1\";\n\trename -uid \"BCB8A36B-4C76-7B4E-14EE-19A55E7810F9\";\ncreateNode shadingEngine -n \"surfaceShader1SG\";\n\trename -uid \"F1ACF987-49A8-A4F5-A894-35942828D90E\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo3\";\n\trename -uid \"92029E1E-43B0-F4D4-959F-429A90AE3BBF\";\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"F4E49400-4B7C-26E2-407B-C68A19006287\";\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"1835084C-454A-C8A2-8E36-07A5BBB2F653\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo4\";\n\trename -uid \"659E0107-4129-0A24-0980-0FBA838A63BE\";\ncreateNode place2dTexture -n \"place2dTexture29\";\n\trename -uid \"38FD2A9B-46A7-E5D9-E69D-29812AF43992\";\ncreateNode GLSLShader -n \"GLSLShader2\";\n\trename -uid \"8D89AEB5-4E78-7D63-B0BB-3A9EE0FBABBB\";\n\taddAttr -is true -ci true -h true -sn \"ShadowFilterTaps_Name\" -ln \"ShadowFilterTaps_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"ShadowFilterTaps_Type\" -ln \"ShadowFilterTaps_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"ShadowFilterTaps\" -ln \"ShadowFilterTaps\" \n\t\t-ct \"HW_shader_parameter\" -at \"float2\" -nc 2;\n\taddAttr -is true -ci true -sn \"ShadowFilterTapsX\" -ln \"ShadowFilterTapsX\" -ct \"HW_shader_parameter\" \n\t\t-dv -0.84052002429962158 -smn 0 -smx 1 -at \"float\" -p \"ShadowFilterTaps\";\n\taddAttr -is true -ci true -sn \"ShadowFilterTapsY\" -ln \"ShadowFilterTapsY\" -ct \"HW_shader_parameter\" \n\t\t-dv -0.073954001069068909 -smn 0 -smx 1 -at \"float\" -p \"ShadowFilterTaps\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnabled_Name\" -ln \"MayaHwFogEnabled_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnabled_Type\" -ln \"MayaHwFogEnabled_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnabled\" -ln \"MayaHwFogEnabled\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogMode_Name\" -ln \"MayaHwFogMode_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogMode_Type\" -ln \"MayaHwFogMode_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogMode\" -ln \"MayaHwFogMode\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogStart_Name\" -ln \"MayaHwFogStart_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogStart_Type\" -ln \"MayaHwFogStart_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogStart\" -ln \"MayaHwFogStart\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnd_Name\" -ln \"MayaHwFogEnd_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnd_Type\" -ln \"MayaHwFogEnd_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnd\" -ln \"MayaHwFogEnd\" -ct \"HW_shader_parameter\" \n\t\t-dv 100 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogDensity_Name\" -ln \"MayaHwFogDensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogDensity_Type\" -ln \"MayaHwFogDensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogDensity\" -ln \"MayaHwFogDensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.10000000149011612 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogColor_Name\" -ln \"MayaHwFogColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogColor_Type\" -ln \"MayaHwFogColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogColor\" -ln \"MayaHwFogColor\" -ct \"HW_shader_parameter\" \n\t\t-at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"MayaHwFogColorXYZ\" -ln \"MayaHwFogColorXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"MayaHwFogColor\" -nc 3;\n\taddAttr -is true -ci true -sn \"MayaHwFogColorX\" -ln \"MayaHwFogColorX\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.5 -smn 0 -smx 1 -at \"float\" -p \"MayaHwFogColorXYZ\";\n\taddAttr -is true -ci true -sn \"MayaHwFogColorY\" -ln \"MayaHwFogColorY\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.5 -smn 0 -smx 1 -at \"float\" -p \"MayaHwFogColorXYZ\";\n\taddAttr -is true -ci true -sn \"MayaHwFogColorZ\" -ln \"MayaHwFogColorZ\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.5 -smn 0 -smx 1 -at \"float\" -p \"MayaHwFogColorXYZ\";\n\taddAttr -is true -ci true -sn \"MayaHwFogColorW\" -ln \"MayaHwFogColorW\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -smn 0 -smx 1 -at \"float\" -p \"MayaHwFogColor\";\n\taddAttr -is true -ci true -h true -sn \"Clamp_Dynamic_Lights_Name\" -ln \"Clamp_Dynamic_Lights_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Clamp_Dynamic_Lights_Type\" -ln \"Clamp_Dynamic_Lights_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Clamp_Dynamic_Lights\" -ln \"Clamp_Dynamic_Lights\" \n\t\t-nn \"Clamp Dynamic Lights\" -ct \"HW_shader_parameter\" -dv 99 -min 0 -max 99 -smn 0 \n\t\t-smx 99 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"IsSwatchRender_Name\" -ln \"IsSwatchRender_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IsSwatchRender_Type\" -ln \"IsSwatchRender_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IsSwatchRender\" -ln \"IsSwatchRender\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Tessellation_Maximum_Name\" -ln \"Tessellation_Maximum_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Tessellation_Maximum_Type\" -ln \"Tessellation_Maximum_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Tessellation_Maximum\" -ln \"Tessellation_Maximum\" \n\t\t-nn \"Tessellation Maximum\" -ct \"HW_shader_parameter\" -dv 20 -min 0 -max 99 -smn 0 \n\t\t-smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Surface_Mask_Cutoff_Name\" -ln \"Surface_Mask_Cutoff_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Surface_Mask_Cutoff_Type\" -ln \"Surface_Mask_Cutoff_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Surface_Mask_Cutoff\" -ln \"Surface_Mask_Cutoff\" -nn \"Surface Mask Cutoff\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Name\" -ln \"Thickness_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Type\" -ln \"Thickness_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -sn \"Thickness\" -ln \"Thickness\" -nn \"Thickness\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"ReflectionRotation_Name\" -ln \"ReflectionRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"ReflectionRotation_Type\" -ln \"ReflectionRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"ReflectionRotation\" -ln \"ReflectionRotation\" -nn \"ReflectionRotation\" \n\t\t-ct \"HW_shader_parameter\" -dv 360 -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"EmissiveStrength_Name\" -ln \"EmissiveStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"EmissiveStrength_Type\" -ln \"EmissiveStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"EmissiveStrength\" -ln \"EmissiveStrength\" -nn \"EmissiveStrength\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"IBLRotation_Name\" -ln \"IBLRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IBLRotation_Type\" -ln \"IBLRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"IBLRotation\" -ln \"IBLRotation\" -nn \"IBLRotation\" \n\t\t-ct \"HW_shader_parameter\" -dv 360 -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"IBLBlur_Name\" -ln \"IBLBlur_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IBLBlur_Type\" -ln \"IBLBlur_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -sn \"IBLBlur\" -ln \"IBLBlur\" -nn \"IBLBlur\" -ct \"HW_shader_parameter\" \n\t\t-dv 5 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"IBLIntensity_Name\" -ln \"IBLIntensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IBLIntensity_Type\" -ln \"IBLIntensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"IBLIntensity\" -ln \"IBLIntensity\" -nn \"IBLIntensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Type_Name\" -ln \"Light_0_Type_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Type_Type\" -ln \"Light_0_Type_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Type\" -ln \"Light_0_Type\" -nn \"Light 0 Type\" \n\t\t-ct \"HW_shader_parameter\" -dv 3 -smn 0 -smx 1 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Type_Name\" -ln \"Light_1_Type_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Type_Type\" -ln \"Light_1_Type_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Type\" -ln \"Light_1_Type\" -nn \"Light 1 Type\" \n\t\t-ct \"HW_shader_parameter\" -dv 3 -smn 0 -smx 1 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Type_Name\" -ln \"Light_2_Type_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Type_Type\" -ln \"Light_2_Type_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Type\" -ln \"Light_2_Type\" -nn \"Light 2 Type\" \n\t\t-ct \"HW_shader_parameter\" -dv 3 -smn 0 -smx 1 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Color_Name\" -ln \"Light_0_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Color_Type\" -ln \"Light_0_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_0_Color\" -ln \"Light_0_Color\" -nn \"Light 0 Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_0_ColorR\" -ln \"Light_0_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_0_Color\";\n\taddAttr -is true -ci true -sn \"Light_0_ColorG\" -ln \"Light_0_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_0_Color\";\n\taddAttr -is true -ci true -sn \"Light_0_ColorB\" -ln \"Light_0_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_0_Color\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Color_Name\" -ln \"Light_1_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Color_Type\" -ln \"Light_1_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_1_Color\" -ln \"Light_1_Color\" -nn \"Light 1 Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_1_ColorR\" -ln \"Light_1_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_1_Color\";\n\taddAttr -is true -ci true -sn \"Light_1_ColorG\" -ln \"Light_1_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_1_Color\";\n\taddAttr -is true -ci true -sn \"Light_1_ColorB\" -ln \"Light_1_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_1_Color\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Color_Name\" -ln \"Light_2_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Color_Type\" -ln \"Light_2_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_2_Color\" -ln \"Light_2_Color\" -nn \"Light 2 Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_2_ColorR\" -ln \"Light_2_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_2_Color\";\n\taddAttr -is true -ci true -sn \"Light_2_ColorG\" -ln \"Light_2_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_2_Color\";\n\taddAttr -is true -ci true -sn \"Light_2_ColorB\" -ln \"Light_2_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_2_Color\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Intensity_Name\" -ln \"Light_0_Intensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Intensity_Type\" -ln \"Light_0_Intensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Intensity\" -ln \"Light_0_Intensity\" -nn \"Light 0 Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Intensity_Name\" -ln \"Light_1_Intensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Intensity_Type\" -ln \"Light_1_Intensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Intensity\" -ln \"Light_1_Intensity\" -nn \"Light 1 Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Intensity_Name\" -ln \"Light_2_Intensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Intensity_Type\" -ln \"Light_2_Intensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Intensity\" -ln \"Light_2_Intensity\" -nn \"Light 2 Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Position_Name\" -ln \"Light_0_Position_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Position_Type\" -ln \"Light_0_Position_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Position\" -ln \"Light_0_Position\" -nn \"Light 0 Position\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Position_Name\" -ln \"Light_1_Position_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Position_Type\" -ln \"Light_1_Position_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Position\" -ln \"Light_1_Position\" -nn \"Light 1 Position\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Position_Name\" -ln \"Light_2_Position_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Position_Type\" -ln \"Light_2_Position_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Position\" -ln \"Light_2_Position\" -nn \"Light 2 Position\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Direction_Name\" -ln \"Light_0_Direction_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Direction_Type\" -ln \"Light_0_Direction_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Direction\" -ln \"Light_0_Direction\" -nn \"Light 0 Direction\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Direction_Name\" -ln \"Light_1_Direction_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Direction_Type\" -ln \"Light_1_Direction_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Direction\" -ln \"Light_1_Direction\" -nn \"Light 1 Direction\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Direction_Name\" -ln \"Light_2_Direction_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Direction_Type\" -ln \"Light_2_Direction_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Direction\" -ln \"Light_2_Direction\" -nn \"Light 2 Direction\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Decay_Name\" -ln \"Light_0_Decay_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Decay_Type\" -ln \"Light_0_Decay_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Decay\" -ln \"Light_0_Decay\" -nn \"Light 0 Decay\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Decay_Name\" -ln \"Light_1_Decay_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Decay_Type\" -ln \"Light_1_Decay_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Decay\" -ln \"Light_1_Decay\" -nn \"Light 1 Decay\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Decay_Name\" -ln \"Light_2_Decay_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Decay_Type\" -ln \"Light_2_Decay_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Decay\" -ln \"Light_2_Decay\" -nn \"Light 2 Decay\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Cone_Angle_Name\" -ln \"Light_0_Cone_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Cone_Angle_Type\" -ln \"Light_0_Cone_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Cone_Angle\" -ln \"Light_0_Cone_Angle\" -nn \"Light 0 Cone Angle\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.46000000834465027 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Cone_Angle_Name\" -ln \"Light_1_Cone_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Cone_Angle_Type\" -ln \"Light_1_Cone_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Cone_Angle\" -ln \"Light_1_Cone_Angle\" -nn \"Light 1 Cone Angle\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.46000000834465027 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Cone_Angle_Name\" -ln \"Light_2_Cone_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Cone_Angle_Type\" -ln \"Light_2_Cone_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Cone_Angle\" -ln \"Light_2_Cone_Angle\" -nn \"Light 2 Cone Angle\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.46000000834465027 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Penumbra_Angle_Name\" -ln \"Light_0_Penumbra_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Penumbra_Angle_Type\" -ln \"Light_0_Penumbra_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Penumbra_Angle\" -ln \"Light_0_Penumbra_Angle\" \n\t\t-nn \"Light 0 Penumbra Angle\" -ct \"HW_shader_parameter\" -dv 0.69999998807907104 -smn \n\t\t0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Penumbra_Angle_Name\" -ln \"Light_1_Penumbra_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Penumbra_Angle_Type\" -ln \"Light_1_Penumbra_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Penumbra_Angle\" -ln \"Light_1_Penumbra_Angle\" \n\t\t-nn \"Light 1 Penumbra Angle\" -ct \"HW_shader_parameter\" -dv 0.69999998807907104 -smn \n\t\t0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Penumbra_Angle_Name\" -ln \"Light_2_Penumbra_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Penumbra_Angle_Type\" -ln \"Light_2_Penumbra_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Penumbra_Angle\" -ln \"Light_2_Penumbra_Angle\" \n\t\t-nn \"Light 2 Penumbra Angle\" -ct \"HW_shader_parameter\" -dv 0.69999998807907104 -smn \n\t\t0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Casts_Shadow_Name\" -ln \"Light_0_Casts_Shadow_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Casts_Shadow_Type\" -ln \"Light_0_Casts_Shadow_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Casts_Shadow\" -ln \"Light_0_Casts_Shadow\" \n\t\t-nn \"Light 0 Casts Shadow\" -ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Casts_Shadow_Name\" -ln \"Light_1_Casts_Shadow_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Casts_Shadow_Type\" -ln \"Light_1_Casts_Shadow_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Casts_Shadow\" -ln \"Light_1_Casts_Shadow\" \n\t\t-nn \"Light 1 Casts Shadow\" -ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Casts_Shadow_Name\" -ln \"Light_2_Casts_Shadow_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Casts_Shadow_Type\" -ln \"Light_2_Casts_Shadow_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Casts_Shadow\" -ln \"Light_2_Casts_Shadow\" \n\t\t-nn \"Light 2 Casts Shadow\" -ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Shadow_Color_Name\" -ln \"Light_0_Shadow_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Shadow_Color_Type\" -ln \"Light_0_Shadow_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_0_Shadow_Color\" -ln \"Light_0_Shadow_Color\" \n\t\t-nn \"Light 0 Shadow Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_0_Shadow_ColorR\" -ln \"Light_0_Shadow_ColorR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_0_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_0_Shadow_ColorG\" -ln \"Light_0_Shadow_ColorG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_0_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_0_Shadow_ColorB\" -ln \"Light_0_Shadow_ColorB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_0_Shadow_Color\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Shadow_Color_Name\" -ln \"Light_1_Shadow_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Shadow_Color_Type\" -ln \"Light_1_Shadow_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_1_Shadow_Color\" -ln \"Light_1_Shadow_Color\" \n\t\t-nn \"Light 1 Shadow Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_1_Shadow_ColorR\" -ln \"Light_1_Shadow_ColorR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_1_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_1_Shadow_ColorG\" -ln \"Light_1_Shadow_ColorG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_1_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_1_Shadow_ColorB\" -ln \"Light_1_Shadow_ColorB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_1_Shadow_Color\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Shadow_Color_Name\" -ln \"Light_2_Shadow_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Shadow_Color_Type\" -ln \"Light_2_Shadow_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_2_Shadow_Color\" -ln \"Light_2_Shadow_Color\" \n\t\t-nn \"Light 2 Shadow Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_2_Shadow_ColorR\" -ln \"Light_2_Shadow_ColorR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_2_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_2_Shadow_ColorG\" -ln \"Light_2_Shadow_ColorG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_2_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_2_Shadow_ColorB\" -ln \"Light_2_Shadow_ColorB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_2_Shadow_Color\";\n\taddAttr -is true -ci true -h true -sn \"Surface_Mask_Name\" -ln \"Surface_Mask_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Surface_Mask_Type\" -ln \"Surface_Mask_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Surface_Mask\" -ln \"Surface_Mask\" -nn \"Surface Mask\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Surface_MaskR\" -ln \"Surface_MaskR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Surface_Mask\";\n\taddAttr -is true -ci true -sn \"Surface_MaskG\" -ln \"Surface_MaskG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Surface_Mask\";\n\taddAttr -is true -ci true -sn \"Surface_MaskB\" -ln \"Surface_MaskB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Surface_Mask\";\n\taddAttr -is true -ci true -h true -sn \"light0ShadowMap_Name\" -ln \"light0ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"light0ShadowMap_Type\" -ln \"light0ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"light0ShadowMap\" -ln \"light0ShadowMap\" \n\t\t-nn \"light0ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"light0ShadowMapR\" -ln \"light0ShadowMapR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light0ShadowMap\";\n\taddAttr -is true -ci true -sn \"light0ShadowMapG\" -ln \"light0ShadowMapG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light0ShadowMap\";\n\taddAttr -is true -ci true -sn \"light0ShadowMapB\" -ln \"light0ShadowMapB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light0ShadowMap\";\n\taddAttr -is true -ci true -h true -sn \"light1ShadowMap_Name\" -ln \"light1ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"light1ShadowMap_Type\" -ln \"light1ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"light1ShadowMap\" -ln \"light1ShadowMap\" \n\t\t-nn \"light1ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"light1ShadowMapR\" -ln \"light1ShadowMapR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light1ShadowMap\";\n\taddAttr -is true -ci true -sn \"light1ShadowMapG\" -ln \"light1ShadowMapG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light1ShadowMap\";\n\taddAttr -is true -ci true -sn \"light1ShadowMapB\" -ln \"light1ShadowMapB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light1ShadowMap\";\n\taddAttr -is true -ci true -h true -sn \"light2ShadowMap_Name\" -ln \"light2ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"light2ShadowMap_Type\" -ln \"light2ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"light2ShadowMap\" -ln \"light2ShadowMap\" \n\t\t-nn \"light2ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"light2ShadowMapR\" -ln \"light2ShadowMapR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light2ShadowMap\";\n\taddAttr -is true -ci true -sn \"light2ShadowMapG\" -ln \"light2ShadowMapG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light2ShadowMap\";\n\taddAttr -is true -ci true -sn \"light2ShadowMapB\" -ln \"light2ShadowMapB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light2ShadowMap\";\n\taddAttr -is true -ci true -h true -sn \"IBLMap_Name\" -ln \"IBLMap_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IBLMap_Type\" -ln \"IBLMap_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"IBLMap\" -ln \"IBLMap\" -nn \"IBLMap\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"IBLMapR\" -ln \"IBLMapR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"IBLMap\";\n\taddAttr -is true -ci true -sn \"IBLMapG\" -ln \"IBLMapG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"IBLMap\";\n\taddAttr -is true -ci true -sn \"IBLMapB\" -ln \"IBLMapB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"IBLMap\";\n\taddAttr -is true -ci true -h true -sn \"TransDepthTexture_Name\" -ln \"TransDepthTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"TransDepthTexture_Type\" -ln \"TransDepthTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"TransDepthTexture\" -ln \"TransDepthTexture\" \n\t\t-nn \"TransDepthTexture\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"TransDepthTextureR\" -ln \"TransDepthTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"TransDepthTexture\";\n\taddAttr -is true -ci true -sn \"TransDepthTextureG\" -ln \"TransDepthTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"TransDepthTexture\";\n\taddAttr -is true -ci true -sn \"TransDepthTextureB\" -ln \"TransDepthTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"TransDepthTexture\";\n\taddAttr -is true -ci true -h true -sn \"OpaqueDepthTexture_Name\" -ln \"OpaqueDepthTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"OpaqueDepthTexture_Type\" -ln \"OpaqueDepthTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"OpaqueDepthTexture\" -ln \"OpaqueDepthTexture\" \n\t\t-nn \"OpaqueDepthTexture\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"OpaqueDepthTextureR\" -ln \"OpaqueDepthTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"OpaqueDepthTexture\";\n\taddAttr -is true -ci true -sn \"OpaqueDepthTextureG\" -ln \"OpaqueDepthTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"OpaqueDepthTexture\";\n\taddAttr -is true -ci true -sn \"OpaqueDepthTextureB\" -ln \"OpaqueDepthTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"OpaqueDepthTexture\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_Name\" -ln \"Ambient_Emissive_Map_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_Type\" -ln \"Ambient_Emissive_Map_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Ambient_Emissive_Map\" -ln \"Ambient_Emissive_Map\" \n\t\t-nn \"Ambient Emissive Map\" -ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_AO_Name\" -ln \"Ambient_Emissive_Map_AO_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_AO_Type\" -ln \"Ambient_Emissive_Map_AO_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Ambient_Emissive_Map_AO\" -ln \"Ambient_Emissive_Map_AO\" \n\t\t-nn \"Ambient Emissive Map AO\" -ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_1_Name\" -ln \"Ambient_Emissive_Map_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_1_Type\" -ln \"Ambient_Emissive_Map_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Ambient_Emissive_Map_1\" -ln \"Ambient_Emissive_Map_1\" \n\t\t-nn \"Ambient Emissive Map\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Ambient_Emissive_Map_1R\" -ln \"Ambient_Emissive_Map_1R\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Ambient_Emissive_Map_1\";\n\taddAttr -is true -ci true -sn \"Ambient_Emissive_Map_1G\" -ln \"Ambient_Emissive_Map_1G\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Ambient_Emissive_Map_1\";\n\taddAttr -is true -ci true -sn \"Ambient_Emissive_Map_1B\" -ln \"Ambient_Emissive_Map_1B\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Ambient_Emissive_Map_1\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Sky_Color_Name\" -ln \"Ambient_Sky_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Sky_Color_Type\" -ln \"Ambient_Sky_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Ambient_Sky_Color\" -ln \"Ambient_Sky_Color\" -nn \"Ambient Sky Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Ambient_Sky_ColorR\" -ln \"Ambient_Sky_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"Ambient_Sky_Color\";\n\taddAttr -is true -ci true -sn \"Ambient_Sky_ColorG\" -ln \"Ambient_Sky_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"Ambient_Sky_Color\";\n\taddAttr -is true -ci true -sn \"Ambient_Sky_ColorB\" -ln \"Ambient_Sky_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"Ambient_Sky_Color\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Ground_Color_Name\" -ln \"Ambient_Ground_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Ground_Color_Type\" -ln \"Ambient_Ground_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Ambient_Ground_Color\" -ln \"Ambient_Ground_Color\" \n\t\t-nn \"Ambient Ground Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Ambient_Ground_ColorR\" -ln \"Ambient_Ground_ColorR\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"float\" -p \"Ambient_Ground_Color\";\n\taddAttr -is true -ci true -sn \"Ambient_Ground_ColorG\" -ln \"Ambient_Ground_ColorG\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"float\" -p \"Ambient_Ground_Color\";\n\taddAttr -is true -ci true -sn \"Ambient_Ground_ColorB\" -ln \"Ambient_Ground_ColorB\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"float\" -p \"Ambient_Ground_Color\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_Name\" -ln \"Diffuse_Map_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_Type\" -ln \"Diffuse_Map_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Diffuse_Map\" -ln \"Diffuse_Map\" -nn \"Diffuse Map\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_Alpha_Name\" -ln \"Diffuse_Map_Alpha_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_Alpha_Type\" -ln \"Diffuse_Map_Alpha_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Diffuse_Map_Alpha\" -ln \"Diffuse_Map_Alpha\" -nn \"Diffuse Map Alpha\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_1_Name\" -ln \"Diffuse_Map_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_1_Type\" -ln \"Diffuse_Map_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Diffuse_Map_1\" -ln \"Diffuse_Map_1\" -nn \"Diffuse Map\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Diffuse_Map_1R\" -ln \"Diffuse_Map_1R\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Diffuse_Map_1\";\n\taddAttr -is true -ci true -sn \"Diffuse_Map_1G\" -ln \"Diffuse_Map_1G\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Diffuse_Map_1\";\n\taddAttr -is true -ci true -sn \"Diffuse_Map_1B\" -ln \"Diffuse_Map_1B\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Diffuse_Map_1\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Color_Name\" -ln \"Diffuse_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Color_Type\" -ln \"Diffuse_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Diffuse_Color\" -ln \"Diffuse_Color\" -nn \"Diffuse Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Diffuse_ColorR\" -ln \"Diffuse_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.56099998950958252 -min 0 -max 1 -at \"float\" -p \"Diffuse_Color\";\n\taddAttr -is true -ci true -sn \"Diffuse_ColorG\" -ln \"Diffuse_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.56099998950958252 -min 0 -max 1 -at \"float\" -p \"Diffuse_Color\";\n\taddAttr -is true -ci true -sn \"Diffuse_ColorB\" -ln \"Diffuse_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.56099998950958252 -min 0 -max 1 -at \"float\" -p \"Diffuse_Color\";\n\taddAttr -is true -ci true -h true -sn \"Opacity_Name\" -ln \"Opacity_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Opacity_Type\" -ln \"Opacity_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -sn \"Opacity\" -ln \"Opacity\" -nn \"Opacity\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_Name\" -ln \"Specular_Map_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_Type\" -ln \"Specular_Map_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Specular_Map\" -ln \"Specular_Map\" -nn \"Specular Map\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_1_Name\" -ln \"Specular_Map_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_1_Type\" -ln \"Specular_Map_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Specular_Map_1\" -ln \"Specular_Map_1\" -nn \"Specular Map\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_2_Name\" -ln \"Specular_Map_2_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_2_Type\" -ln \"Specular_Map_2_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Specular_Map_2\" -ln \"Specular_Map_2\" -nn \"Specular Map\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Specular_Map_2R\" -ln \"Specular_Map_2R\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Specular_Map_2\";\n\taddAttr -is true -ci true -sn \"Specular_Map_2G\" -ln \"Specular_Map_2G\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Specular_Map_2\";\n\taddAttr -is true -ci true -sn \"Specular_Map_2B\" -ln \"Specular_Map_2B\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Specular_Map_2\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Color_Name\" -ln \"Specular_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Color_Type\" -ln \"Specular_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Specular_Color\" -ln \"Specular_Color\" -nn \"Specular Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Specular_ColorR\" -ln \"Specular_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Specular_Color\";\n\taddAttr -is true -ci true -sn \"Specular_ColorG\" -ln \"Specular_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Specular_Color\";\n\taddAttr -is true -ci true -sn \"Specular_ColorB\" -ln \"Specular_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Specular_Color\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Power_Name\" -ln \"Specular_Power_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Power_Type\" -ln \"Specular_Power_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Specular_Power\" -ln \"Specular_Power\" -nn \"Specular Power\" \n\t\t-ct \"HW_shader_parameter\" -dv 20 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Map_Name\" -ln \"Normal_Map_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Map_Type\" -ln \"Normal_Map_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -sn \"Normal_Map\" -ln \"Normal_Map\" -nn \"Normal Map\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Map_1_Name\" -ln \"Normal_Map_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Map_1_Type\" -ln \"Normal_Map_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Normal_Map_1\" -ln \"Normal_Map_1\" -nn \"Normal Map\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Normal_Map_1R\" -ln \"Normal_Map_1R\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Normal_Map_1\";\n\taddAttr -is true -ci true -sn \"Normal_Map_1G\" -ln \"Normal_Map_1G\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Normal_Map_1\";\n\taddAttr -is true -ci true -sn \"Normal_Map_1B\" -ln \"Normal_Map_1B\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Normal_Map_1\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Height_Name\" -ln \"Normal_Height_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Height_Type\" -ln \"Normal_Height_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Normal_Height\" -ln \"Normal_Height\" -nn \"Normal Height\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Intensity_Name\" -ln \"Reflection_Intensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Intensity_Type\" -ln \"Reflection_Intensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Reflection_Intensity\" -ln \"Reflection_Intensity\" \n\t\t-nn \"Reflection Intensity\" -ct \"HW_shader_parameter\" -dv 0.5 -min 0 -max 99 -smn \n\t\t0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Blur_Name\" -ln \"Reflection_Blur_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Blur_Type\" -ln \"Reflection_Blur_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Reflection_Blur\" -ln \"Reflection_Blur\" -nn \"Reflection Blur\" \n\t\t-ct \"HW_shader_parameter\" -dv 5 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Mask_Name\" -ln \"Reflection_Mask_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Mask_Type\" -ln \"Reflection_Mask_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Reflection_Mask\" -ln \"Reflection_Mask\" -nn \"Reflection Mask\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Mask_1_Name\" -ln \"Reflection_Mask_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Mask_1_Type\" -ln \"Reflection_Mask_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Reflection_Mask_1\" -ln \"Reflection_Mask_1\" -nn \"Reflection Mask\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Reflection_Mask_1R\" -ln \"Reflection_Mask_1R\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Reflection_Mask_1\";\n\taddAttr -is true -ci true -sn \"Reflection_Mask_1G\" -ln \"Reflection_Mask_1G\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Reflection_Mask_1\";\n\taddAttr -is true -ci true -sn \"Reflection_Mask_1B\" -ln \"Reflection_Mask_1B\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Reflection_Mask_1\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Map_Name\" -ln \"Displacement_Map_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Map_Type\" -ln \"Displacement_Map_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Displacement_Map\" -ln \"Displacement_Map\" -nn \"Displacement Map\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Displacement_MapR\" -ln \"Displacement_MapR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Displacement_Map\";\n\taddAttr -is true -ci true -sn \"Displacement_MapG\" -ln \"Displacement_MapG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Displacement_Map\";\n\taddAttr -is true -ci true -sn \"Displacement_MapB\" -ln \"Displacement_MapB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Displacement_Map\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Height_Name\" -ln \"Displacement_Height_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Height_Type\" -ln \"Displacement_Height_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Displacement_Height\" -ln \"Displacement_Height\" -nn \"Displacement Height\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 999 -smn 0 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Offset_Name\" -ln \"Displacement_Offset_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Offset_Type\" -ln \"Displacement_Offset_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Displacement_Offset\" -ln \"Displacement_Offset\" -nn \"Displacement Offset\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -min -99 -max 99 -smn -10 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Clipping_Bias_Name\" -ln \"Displacement_Clipping_Bias_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Clipping_Bias_Type\" -ln \"Displacement_Clipping_Bias_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Displacement_Clipping_Bias\" -ln \"Displacement_Clipping_Bias\" \n\t\t-nn \"Displacement Clipping Bias\" -ct \"HW_shader_parameter\" -dv 5 -min 0 -max 99 -smn \n\t\t0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Bounding_Box_Extra_Scale_Name\" -ln \"Bounding_Box_Extra_Scale_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Bounding_Box_Extra_Scale_Type\" -ln \"Bounding_Box_Extra_Scale_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Bounding_Box_Extra_Scale\" -ln \"Bounding_Box_Extra_Scale\" \n\t\t-nn \"Bounding Box Extra Scale\" -ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -smn \n\t\t1 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Tessellation_Range_Name\" -ln \"Tessellation_Range_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Tessellation_Range_Type\" -ln \"Tessellation_Range_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Tessellation_Range\" -ln \"Tessellation_Range\" -nn \"Tessellation Range\" \n\t\t-ct \"HW_shader_parameter\" -dv 100 -min 0 -max 9999 -smn 0 -smx 9999 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Flat_Tessellation_Name\" -ln \"Flat_Tessellation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Flat_Tessellation_Type\" -ln \"Flat_Tessellation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Flat_Tessellation\" -ln \"Flat_Tessellation\" -nn \"Flat Tessellation\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Mask_Name\" -ln \"Thickness_Mask_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Mask_Type\" -ln \"Thickness_Mask_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Thickness_Mask\" -ln \"Thickness_Mask\" -nn \"Thickness Mask\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Mask_1_Name\" -ln \"Thickness_Mask_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Mask_1_Type\" -ln \"Thickness_Mask_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Thickness_Mask_1\" -ln \"Thickness_Mask_1\" -nn \"Thickness Mask\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Thickness_Mask_1R\" -ln \"Thickness_Mask_1R\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Thickness_Mask_1\";\n\taddAttr -is true -ci true -sn \"Thickness_Mask_1G\" -ln \"Thickness_Mask_1G\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Thickness_Mask_1\";\n\taddAttr -is true -ci true -sn \"Thickness_Mask_1B\" -ln \"Thickness_Mask_1B\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Thickness_Mask_1\";\n\taddAttr -is true -ci true -h true -sn \"Light_Translucent_Distortion_Name\" -ln \"Light_Translucent_Distortion_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_Translucent_Distortion_Type\" -ln \"Light_Translucent_Distortion_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_Translucent_Distortion\" -ln \"Light_Translucent_Distortion\" \n\t\t-nn \"Light Translucent Distortion\" -ct \"HW_shader_parameter\" -dv 0.20000000298023224 \n\t\t-min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_Translucent_Power_Name\" -ln \"Light_Translucent_Power_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_Translucent_Power_Type\" -ln \"Light_Translucent_Power_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_Translucent_Power\" -ln \"Light_Translucent_Power\" \n\t\t-nn \"Light Translucent Power\" -ct \"HW_shader_parameter\" -dv 3 -min 0 -max 99 -smn \n\t\t0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Translucent_Minimum_Name\" -ln \"Translucent_Minimum_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Translucent_Minimum_Type\" -ln \"Translucent_Minimum_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Translucent_Minimum\" -ln \"Translucent_Minimum\" -nn \"Translucent Minimum\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Outer_Translucent_Color_Name\" -ln \"Outer_Translucent_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Outer_Translucent_Color_Type\" -ln \"Outer_Translucent_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Outer_Translucent_Color\" -ln \"Outer_Translucent_Color\" \n\t\t-nn \"Outer Translucent Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Outer_Translucent_ColorX\" -ln \"Outer_Translucent_ColorX\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"float\" -p \"Outer_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Outer_Translucent_ColorY\" -ln \"Outer_Translucent_ColorY\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.63999998569488525 -min 0 -max 1 -at \"float\" -p \"Outer_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Outer_Translucent_ColorZ\" -ln \"Outer_Translucent_ColorZ\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.25 -min 0 -max 1 -at \"float\" -p \"Outer_Translucent_Color\";\n\taddAttr -is true -ci true -h true -sn \"Medium_Translucent_Color_Name\" -ln \"Medium_Translucent_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Medium_Translucent_Color_Type\" -ln \"Medium_Translucent_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Medium_Translucent_Color\" -ln \"Medium_Translucent_Color\" \n\t\t-nn \"Medium Translucent Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Medium_Translucent_ColorX\" -ln \"Medium_Translucent_ColorX\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"float\" -p \"Medium_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Medium_Translucent_ColorY\" -ln \"Medium_Translucent_ColorY\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.20999999344348907 -min 0 -max 1 -at \"float\" -p \"Medium_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Medium_Translucent_ColorZ\" -ln \"Medium_Translucent_ColorZ\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.14000000059604645 -min 0 -max 1 -at \"float\" -p \"Medium_Translucent_Color\";\n\taddAttr -is true -ci true -h true -sn \"Inner_Translucent_Color_Name\" -ln \"Inner_Translucent_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Inner_Translucent_Color_Type\" -ln \"Inner_Translucent_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Inner_Translucent_Color\" -ln \"Inner_Translucent_Color\" \n\t\t-nn \"Inner Translucent Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Inner_Translucent_ColorX\" -ln \"Inner_Translucent_ColorX\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.25 -min 0 -max 1 -at \"float\" -p \"Inner_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Inner_Translucent_ColorY\" -ln \"Inner_Translucent_ColorY\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.05000000074505806 -min 0 -max 1 -at \"float\" -p \"Inner_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Inner_Translucent_ColorZ\" -ln \"Inner_Translucent_ColorZ\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.019999999552965164 -min 0 -max 1 -at \"float\" -p \"Inner_Translucent_Color\";\n\taddAttr -ci true -sn \"Light_0_use_implicit_lighting\" -ln \"Light_0_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_0_connected_light\" -ln \"Light_0_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_1_use_implicit_lighting\" -ln \"Light_1_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_1_connected_light\" -ln \"Light_1_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_2_use_implicit_lighting\" -ln \"Light_2_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_2_connected_light\" -ln \"Light_2_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Position\" -ln \"Position\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Position_Name\" -ln \"Position_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"Position_Source\" -ln \"Position_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -sn \"Position_DefaultTexture\" -ln \"Position_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Position\";\n\taddAttr -ci true -sn \"Normal\" -ln \"Normal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Normal_Name\" -ln \"Normal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Source\" -ln \"Normal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -sn \"Normal_DefaultTexture\" -ln \"Normal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Normal\";\n\taddAttr -ci true -sn \"Tangent\" -ln \"Tangent\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Tangent_Name\" -ln \"Tangent_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"Tangent_Source\" -ln \"Tangent_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -sn \"Tangent_DefaultTexture\" -ln \"Tangent_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Tangent\";\n\taddAttr -ci true -sn \"Binormal\" -ln \"Binormal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Binormal_Name\" -ln \"Binormal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -h true -sn \"Binormal_Source\" -ln \"Binormal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -sn \"Binormal_DefaultTexture\" -ln \"Binormal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Binormal\";\n\taddAttr -ci true -sn \"TexCoord0\" -ln \"TexCoord0\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Name\" -ln \"TexCoord0_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Source\" -ln \"TexCoord0_Source\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -sn \"TexCoord0_DefaultTexture\" -ln \"TexCoord0_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -s false -is true -ci true -k true -sn \"te\" -ln \"techniqueEnum\" -nn \"Technique\" \n\t\t-min 0 -max 0 -en \"T0\" -at \"enum\";\n\taddAttr -is true -ci true -h true -sn \"DepthRange_Name\" -ln \"DepthRange_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"DepthRange_Type\" -ln \"DepthRange_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"DepthRange\" -ln \"DepthRange\" -ct \"HW_shader_parameter\" \n\t\t-dv 100000 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"PointLight0ShadowMap_Name\" -ln \"PointLight0ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"PointLight0ShadowMap_Type\" -ln \"PointLight0ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"PointLight0ShadowMap\" -ln \"PointLight0ShadowMap\" \n\t\t-nn \"PointLight0ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"PointLight0ShadowMapR\" -ln \"PointLight0ShadowMapR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight0ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight0ShadowMapG\" -ln \"PointLight0ShadowMapG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight0ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight0ShadowMapB\" -ln \"PointLight0ShadowMapB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight0ShadowMap\";\n\taddAttr -is true -ci true -h true -sn \"PointLight1ShadowMap_Name\" -ln \"PointLight1ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"PointLight1ShadowMap_Type\" -ln \"PointLight1ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"PointLight1ShadowMap\" -ln \"PointLight1ShadowMap\" \n\t\t-nn \"PointLight1ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"PointLight1ShadowMapR\" -ln \"PointLight1ShadowMapR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight1ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight1ShadowMapG\" -ln \"PointLight1ShadowMapG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight1ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight1ShadowMapB\" -ln \"PointLight1ShadowMapB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight1ShadowMap\";\n\taddAttr -is true -ci true -h true -sn \"PointLight2ShadowMap_Name\" -ln \"PointLight2ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"PointLight2ShadowMap_Type\" -ln \"PointLight2ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"PointLight2ShadowMap\" -ln \"PointLight2ShadowMap\" \n\t\t-nn \"PointLight2ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"PointLight2ShadowMapR\" -ln \"PointLight2ShadowMapR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight2ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight2ShadowMapG\" -ln \"PointLight2ShadowMapG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight2ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight2ShadowMapB\" -ln \"PointLight2ShadowMapB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight2ShadowMap\";\n\tsetAttr \".vpar\" -type \"stringArray\" 5 \"Position\" \"Normal\" \"Tangent\" \"Binormal\" \"TexCoord0\"  ;\n\tsetAttr \".upar\" -type \"stringArray\" 95 \"ShadowFilterTaps\" \"MayaHwFogEnabled\" \"MayaHwFogMode\" \"MayaHwFogStart\" \"MayaHwFogEnd\" \"MayaHwFogDensity\" \"MayaHwFogColor\" \"DepthRange\" \"Clamp_Dynamic_Lights\" \"IsSwatchRender\" \"Tessellation_Maximum\" \"Surface_Mask_Cutoff\" \"Thickness\" \"ReflectionRotation\" \"EmissiveStrength\" \"IBLRotation\" \"IBLBlur\" \"IBLIntensity\" \"Light_0_Type\" \"Light_1_Type\" \"Light_2_Type\" \"Light_0_Color\" \"Light_1_Color\" \"Light_2_Color\" \"Light_0_Intensity\" \"Light_1_Intensity\" \"Light_2_Intensity\" \"Light_0_Position\" \"Light_1_Position\" \"Light_2_Position\" \"Light_0_Direction\" \"Light_1_Direction\" \"Light_2_Direction\" \"Light_0_Decay\" \"Light_1_Decay\" \"Light_2_Decay\" \"Light_0_Cone_Angle\" \"Light_1_Cone_Angle\" \"Light_2_Cone_Angle\" \"Light_0_Penumbra_Angle\" \"Light_1_Penumbra_Angle\" \"Light_2_Penumbra_Angle\" \"Light_0_Casts_Shadow\" \"Light_1_Casts_Shadow\" \"Light_2_Casts_Shadow\" \"Light_0_Shadow_Color\" \"Light_1_Shadow_Color\" \"Light_2_Shadow_Color\" \"Surface_Mask\" \"light0ShadowMap\" \"PointLight0ShadowMap\" \"light1ShadowMap\" \"PointLight1ShadowMap\" \"light2ShadowMap\" \"PointLight2ShadowMap\" \"IBLMap\" \"TransDepthTexture\" \"OpaqueDepthTexture\" \"Ambient_Emissive_Map\" \"Ambient_Emissive_Map_AO\" \"Ambient_Emissive_Map_1\" \"Ambient_Sky_Color\" \"Ambient_Ground_Color\" \"Diffuse_Map\" \"Diffuse_Map_Alpha\" \"Diffuse_Map_1\" \"Diffuse_Color\" \"Opacity\" \"Specular_Map\" \"Specular_Map_1\" \"Specular_Map_2\" \"Specular_Color\" \"Specular_Power\" \"Normal_Map\" \"Normal_Map_1\" \"Normal_Height\" \"Reflection_Intensity\" \"Reflection_Blur\" \"Reflection_Mask\" \"Reflection_Mask_1\" \"Displacement_Map\" \"Displacement_Height\" \"Displacement_Offset\" \"Displacement_Clipping_Bias\" \"Bounding_Box_Extra_Scale\" \"Tessellation_Range\" \"Flat_Tessellation\" \"Thickness_Mask\" \"Thickness_Mask_1\" \"Light_Translucent_Distortion\" \"Light_Translucent_Power\" \"Translucent_Minimum\" \"Outer_Translucent_Color\" \"Medium_Translucent_Color\" \"Inner_Translucent_Color\"  ;\n\tsetAttr \".s\" -type \"string\" \"AutodeskUberShader.ogsfx\";\n\tsetAttr \".t\" -type \"string\" \"T0\";\n\tsetAttr \".ShadowFilterTaps_Name\" -type \"string\" \"ShadowFilterTaps\";\n\tsetAttr \".ShadowFilterTaps_Type\" -type \"string\" \"float2x1\";\n\tsetAttr \".ShadowFilterTaps\" -type \"float2\" -0.84052002 -0.073954001 ;\n\tsetAttr \".MayaHwFogEnabled_Name\" -type \"string\" \"MayaHwFogEnabled\";\n\tsetAttr \".MayaHwFogEnabled_Type\" -type \"string\" \"bool\";\n\tsetAttr \".MayaHwFogEnabled\" no;\n\tsetAttr \".MayaHwFogMode_Name\" -type \"string\" \"MayaHwFogMode\";\n\tsetAttr \".MayaHwFogMode_Type\" -type \"string\" \"int\";\n\tsetAttr \".MayaHwFogMode\" 0;\n\tsetAttr \".MayaHwFogStart_Name\" -type \"string\" \"MayaHwFogStart\";\n\tsetAttr \".MayaHwFogStart_Type\" -type \"string\" \"float\";\n\tsetAttr \".MayaHwFogStart\" 0;\n\tsetAttr \".MayaHwFogEnd_Name\" -type \"string\" \"MayaHwFogEnd\";\n\tsetAttr \".MayaHwFogEnd_Type\" -type \"string\" \"float\";\n\tsetAttr \".MayaHwFogEnd\" 100;\n\tsetAttr \".MayaHwFogDensity_Name\" -type \"string\" \"MayaHwFogDensity\";\n\tsetAttr \".MayaHwFogDensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".MayaHwFogDensity\" 0.10000000149011612;\n\tsetAttr \".MayaHwFogColor_Name\" -type \"string\" \"MayaHwFogColor\";\n\tsetAttr \".MayaHwFogColor_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".MayaHwFogColorXYZ\" -type \"float3\" 0.5 0.5 0.5 ;\n\tsetAttr \".MayaHwFogColorW\" 1;\n\tsetAttr \".Clamp_Dynamic_Lights_Name\" -type \"string\" \"Clamp_Dynamic_Lights\";\n\tsetAttr \".Clamp_Dynamic_Lights_Type\" -type \"string\" \"int\";\n\tsetAttr \".Clamp_Dynamic_Lights\" 99;\n\tsetAttr \".IsSwatchRender_Name\" -type \"string\" \"IsSwatchRender\";\n\tsetAttr \".IsSwatchRender_Type\" -type \"string\" \"bool\";\n\tsetAttr \".IsSwatchRender\" no;\n\tsetAttr \".Tessellation_Maximum_Name\" -type \"string\" \"Tessellation_Maximum\";\n\tsetAttr \".Tessellation_Maximum_Type\" -type \"string\" \"float\";\n\tsetAttr \".Tessellation_Maximum\" 1;\n\tsetAttr \".Surface_Mask_Cutoff_Name\" -type \"string\" \"Surface_Mask_Cutoff\";\n\tsetAttr \".Surface_Mask_Cutoff_Type\" -type \"string\" \"float\";\n\tsetAttr \".Surface_Mask_Cutoff\" 0;\n\tsetAttr \".Thickness_Name\" -type \"string\" \"Thickness\";\n\tsetAttr \".Thickness_Type\" -type \"string\" \"float\";\n\tsetAttr \".Thickness\" 1;\n\tsetAttr \".ReflectionRotation_Name\" -type \"string\" \"ReflectionRotation\";\n\tsetAttr \".ReflectionRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".ReflectionRotation\" 360;\n\tsetAttr \".EmissiveStrength_Name\" -type \"string\" \"EmissiveStrength\";\n\tsetAttr \".EmissiveStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".EmissiveStrength\" 1;\n\tsetAttr \".IBLRotation_Name\" -type \"string\" \"IBLRotation\";\n\tsetAttr \".IBLRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".IBLRotation\" 360;\n\tsetAttr \".IBLBlur_Name\" -type \"string\" \"IBLBlur\";\n\tsetAttr \".IBLBlur_Type\" -type \"string\" \"float\";\n\tsetAttr \".IBLBlur\" 5;\n\tsetAttr \".IBLIntensity_Name\" -type \"string\" \"IBLIntensity\";\n\tsetAttr \".IBLIntensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".IBLIntensity\" 1;\n\tsetAttr \".Light_0_Type_Name\" -type \"string\" \"Light_0_Type\";\n\tsetAttr \".Light_0_Type_Type\" -type \"string\" \"int\";\n\tsetAttr \".Light_0_Type\" 4;\n\tsetAttr \".Light_1_Type_Name\" -type \"string\" \"Light_1_Type\";\n\tsetAttr \".Light_1_Type_Type\" -type \"string\" \"int\";\n\tsetAttr \".Light_1_Type\" 4;\n\tsetAttr \".Light_2_Type_Name\" -type \"string\" \"Light_2_Type\";\n\tsetAttr \".Light_2_Type_Type\" -type \"string\" \"int\";\n\tsetAttr \".Light_2_Type\" 3;\n\tsetAttr \".Light_0_Color_Name\" -type \"string\" \"Light_0_Color\";\n\tsetAttr \".Light_0_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr -l on \".Light_0_Color\" -type \"float3\" 0 1 0.14129999 ;\n\tsetAttr -l on \".Light_0_Color\";\n\tsetAttr \".Light_1_Color_Name\" -type \"string\" \"Light_1_Color\";\n\tsetAttr \".Light_1_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr -l on \".Light_1_Color\" -type \"float3\" 1 0 0.1514 ;\n\tsetAttr -l on \".Light_1_Color\";\n\tsetAttr \".Light_2_Color_Name\" -type \"string\" \"Light_2_Color\";\n\tsetAttr \".Light_2_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".Light_2_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Light_0_Intensity_Name\" -type \"string\" \"Light_0_Intensity\";\n\tsetAttr \".Light_0_Intensity_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_0_Intensity\" 1;\n\tsetAttr \".Light_1_Intensity_Name\" -type \"string\" \"Light_1_Intensity\";\n\tsetAttr \".Light_1_Intensity_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_1_Intensity\" 1;\n\tsetAttr \".Light_2_Intensity_Name\" -type \"string\" \"Light_2_Intensity\";\n\tsetAttr \".Light_2_Intensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".Light_2_Intensity\" 0;\n\tsetAttr \".Light_0_Position_Name\" -type \"string\" \"Light_0_Position\";\n\tsetAttr \".Light_0_Position_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr -l on \".Light_0_Position\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 1 1 1 1;\n\tsetAttr \".Light_1_Position_Name\" -type \"string\" \"Light_1_Position\";\n\tsetAttr \".Light_1_Position_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr -l on \".Light_1_Position\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 1 1 1 1;\n\tsetAttr \".Light_2_Position_Name\" -type \"string\" \"Light_2_Position\";\n\tsetAttr \".Light_2_Position_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr \".Light_2_Position\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 1 1 1 1;\n\tsetAttr \".Light_0_Direction_Name\" -type \"string\" \"Light_0_Direction\";\n\tsetAttr \".Light_0_Direction_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr -l on \".Light_0_Direction\" -type \"matrix\" 1 0 0 0 0 1 0 0 -0.14622309803962708 0.80383044481277466 0.57660681009292603 0\n\t\t 0 0 0 1;\n\tsetAttr \".Light_1_Direction_Name\" -type \"string\" \"Light_1_Direction\";\n\tsetAttr \".Light_1_Direction_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr -l on \".Light_1_Direction\" -type \"matrix\" 1 0 0 0 0 1 0 0 -0.90581142902374268 0.25502690672874451 -0.33832964301109314 0\n\t\t 0 0 0 1;\n\tsetAttr \".Light_2_Direction_Name\" -type \"string\" \"Light_2_Direction\";\n\tsetAttr \".Light_2_Direction_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr \".Light_2_Direction\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1;\n\tsetAttr \".Light_0_Decay_Name\" -type \"string\" \"Light_0_Decay\";\n\tsetAttr \".Light_0_Decay_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_0_Decay\" 0;\n\tsetAttr \".Light_1_Decay_Name\" -type \"string\" \"Light_1_Decay\";\n\tsetAttr \".Light_1_Decay_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_1_Decay\" 0;\n\tsetAttr \".Light_2_Decay_Name\" -type \"string\" \"Light_2_Decay\";\n\tsetAttr \".Light_2_Decay_Type\" -type \"string\" \"float\";\n\tsetAttr \".Light_2_Decay\" 0;\n\tsetAttr \".Light_0_Cone_Angle_Name\" -type \"string\" \"Light_0_Cone_Angle\";\n\tsetAttr \".Light_0_Cone_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_0_Cone_Angle\" 0.46000000834465027;\n\tsetAttr \".Light_1_Cone_Angle_Name\" -type \"string\" \"Light_1_Cone_Angle\";\n\tsetAttr \".Light_1_Cone_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_1_Cone_Angle\" 0.46000000834465027;\n\tsetAttr \".Light_2_Cone_Angle_Name\" -type \"string\" \"Light_2_Cone_Angle\";\n\tsetAttr \".Light_2_Cone_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr \".Light_2_Cone_Angle\" 0.46000000834465027;\n\tsetAttr \".Light_0_Penumbra_Angle_Name\" -type \"string\" \"Light_0_Penumbra_Angle\";\n\tsetAttr \".Light_0_Penumbra_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_0_Penumbra_Angle\" 0.69999998807907104;\n\tsetAttr \".Light_1_Penumbra_Angle_Name\" -type \"string\" \"Light_1_Penumbra_Angle\";\n\tsetAttr \".Light_1_Penumbra_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_1_Penumbra_Angle\" 0.69999998807907104;\n\tsetAttr \".Light_2_Penumbra_Angle_Name\" -type \"string\" \"Light_2_Penumbra_Angle\";\n\tsetAttr \".Light_2_Penumbra_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr \".Light_2_Penumbra_Angle\" 0.69999998807907104;\n\tsetAttr \".Light_0_Casts_Shadow_Name\" -type \"string\" \"Light_0_Casts_Shadow\";\n\tsetAttr \".Light_0_Casts_Shadow_Type\" -type \"string\" \"bool\";\n\tsetAttr -l on \".Light_0_Casts_Shadow\" no;\n\tsetAttr \".Light_1_Casts_Shadow_Name\" -type \"string\" \"Light_1_Casts_Shadow\";\n\tsetAttr \".Light_1_Casts_Shadow_Type\" -type \"string\" \"bool\";\n\tsetAttr -l on \".Light_1_Casts_Shadow\" no;\n\tsetAttr \".Light_2_Casts_Shadow_Name\" -type \"string\" \"Light_2_Casts_Shadow\";\n\tsetAttr \".Light_2_Casts_Shadow_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Light_2_Casts_Shadow\" yes;\n\tsetAttr \".Light_0_Shadow_Color_Name\" -type \"string\" \"Light_0_Shadow_Color\";\n\tsetAttr \".Light_0_Shadow_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr -l on \".Light_0_Shadow_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr -l on \".Light_0_Shadow_Color\";\n\tsetAttr \".Light_1_Shadow_Color_Name\" -type \"string\" \"Light_1_Shadow_Color\";\n\tsetAttr \".Light_1_Shadow_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr -l on \".Light_1_Shadow_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr -l on \".Light_1_Shadow_Color\";\n\tsetAttr \".Light_2_Shadow_Color_Name\" -type \"string\" \"Light_2_Shadow_Color\";\n\tsetAttr \".Light_2_Shadow_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".Light_2_Shadow_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Surface_Mask_Name\" -type \"string\" \"Surface_Mask\";\n\tsetAttr \".Surface_Mask_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Surface_Mask\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".light0ShadowMap_Name\" -type \"string\" \"light0ShadowMap\";\n\tsetAttr \".light0ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".light0ShadowMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".light1ShadowMap_Name\" -type \"string\" \"light1ShadowMap\";\n\tsetAttr \".light1ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".light1ShadowMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".light2ShadowMap_Name\" -type \"string\" \"light2ShadowMap\";\n\tsetAttr \".light2ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".light2ShadowMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".IBLMap_Name\" -type \"string\" \"IBLMap\";\n\tsetAttr \".IBLMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".IBLMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".TransDepthTexture_Name\" -type \"string\" \"TransDepthTexture\";\n\tsetAttr \".TransDepthTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".TransDepthTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".OpaqueDepthTexture_Name\" -type \"string\" \"OpaqueDepthTexture\";\n\tsetAttr \".OpaqueDepthTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".OpaqueDepthTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Ambient_Emissive_Map_Name\" -type \"string\" \"Ambient_Emissive_Map\";\n\tsetAttr \".Ambient_Emissive_Map_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Ambient_Emissive_Map\" no;\n\tsetAttr \".Ambient_Emissive_Map_AO_Name\" -type \"string\" \"Ambient_Emissive_Map_AO\";\n\tsetAttr \".Ambient_Emissive_Map_AO_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Ambient_Emissive_Map_AO\" no;\n\tsetAttr \".Ambient_Emissive_Map_1_Name\" -type \"string\" \"Ambient_Emissive_Map\";\n\tsetAttr \".Ambient_Emissive_Map_1_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Ambient_Emissive_Map_1\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Ambient_Sky_Color_Name\" -type \"string\" \"Ambient_Sky_Color\";\n\tsetAttr \".Ambient_Sky_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".Ambient_Sky_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Ambient_Ground_Color_Name\" -type \"string\" \"Ambient_Ground_Color\";\n\tsetAttr \".Ambient_Ground_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".Ambient_Ground_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Diffuse_Map_Name\" -type \"string\" \"Diffuse_Map\";\n\tsetAttr \".Diffuse_Map_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Diffuse_Map\" no;\n\tsetAttr \".Diffuse_Map_Alpha_Name\" -type \"string\" \"Diffuse_Map_Alpha\";\n\tsetAttr \".Diffuse_Map_Alpha_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Diffuse_Map_Alpha\" no;\n\tsetAttr \".Diffuse_Map_1_Name\" -type \"string\" \"Diffuse_Map\";\n\tsetAttr \".Diffuse_Map_1_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Diffuse_Map_1\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Diffuse_Color_Name\" -type \"string\" \"Diffuse_Color\";\n\tsetAttr \".Diffuse_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".Diffuse_Color\" -type \"float3\" 0.56099999 0.56099999 0.56099999 ;\n\tsetAttr \".Opacity_Name\" -type \"string\" \"Opacity\";\n\tsetAttr \".Opacity_Type\" -type \"string\" \"float\";\n\tsetAttr \".Opacity\" 1;\n\tsetAttr \".Specular_Map_Name\" -type \"string\" \"Specular_Map\";\n\tsetAttr \".Specular_Map_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Specular_Map\" no;\n\tsetAttr \".Specular_Map_1_Name\" -type \"string\" \"Specular_Map\";\n\tsetAttr \".Specular_Map_1_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Specular_Map_1\" no;\n\tsetAttr \".Specular_Map_2_Name\" -type \"string\" \"Specular_Map\";\n\tsetAttr \".Specular_Map_2_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Specular_Map_2\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Specular_Color_Name\" -type \"string\" \"Specular_Color\";\n\tsetAttr \".Specular_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".Specular_Color\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".Specular_Power_Name\" -type \"string\" \"Specular_Power\";\n\tsetAttr \".Specular_Power_Type\" -type \"string\" \"float\";\n\tsetAttr \".Specular_Power\" 20;\n\tsetAttr \".Normal_Map_Name\" -type \"string\" \"Normal_Map\";\n\tsetAttr \".Normal_Map_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Normal_Map\" no;\n\tsetAttr \".Normal_Map_1_Name\" -type \"string\" \"Normal_Map\";\n\tsetAttr \".Normal_Map_1_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Normal_Map_1\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Normal_Height_Name\" -type \"string\" \"Normal_Height\";\n\tsetAttr \".Normal_Height_Type\" -type \"string\" \"float\";\n\tsetAttr \".Normal_Height\" 1;\n\tsetAttr \".Reflection_Intensity_Name\" -type \"string\" \"Reflection_Intensity\";\n\tsetAttr \".Reflection_Intensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".Reflection_Intensity\" 0.5;\n\tsetAttr \".Reflection_Blur_Name\" -type \"string\" \"Reflection_Blur\";\n\tsetAttr \".Reflection_Blur_Type\" -type \"string\" \"float\";\n\tsetAttr \".Reflection_Blur\" 5;\n\tsetAttr \".Reflection_Mask_Name\" -type \"string\" \"Reflection_Mask\";\n\tsetAttr \".Reflection_Mask_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Reflection_Mask\" no;\n\tsetAttr \".Reflection_Mask_1_Name\" -type \"string\" \"Reflection_Mask\";\n\tsetAttr \".Reflection_Mask_1_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Reflection_Mask_1\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Displacement_Map_Name\" -type \"string\" \"Displacement_Map\";\n\tsetAttr \".Displacement_Map_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Displacement_Map\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Displacement_Height_Name\" -type \"string\" \"Displacement_Height\";\n\tsetAttr \".Displacement_Height_Type\" -type \"string\" \"float\";\n\tsetAttr \".Displacement_Height\" 0;\n\tsetAttr \".Displacement_Offset_Name\" -type \"string\" \"Displacement_Offset\";\n\tsetAttr \".Displacement_Offset_Type\" -type \"string\" \"float\";\n\tsetAttr \".Displacement_Offset\" 0.5;\n\tsetAttr \".Displacement_Clipping_Bias_Name\" -type \"string\" \"Displacement_Clipping_Bias\";\n\tsetAttr \".Displacement_Clipping_Bias_Type\" -type \"string\" \"float\";\n\tsetAttr \".Displacement_Clipping_Bias\" 5;\n\tsetAttr \".Bounding_Box_Extra_Scale_Name\" -type \"string\" \"Bounding_Box_Extra_Scale\";\n\tsetAttr \".Bounding_Box_Extra_Scale_Type\" -type \"string\" \"float\";\n\tsetAttr \".Bounding_Box_Extra_Scale\" 1;\n\tsetAttr \".Tessellation_Range_Name\" -type \"string\" \"Tessellation_Range\";\n\tsetAttr \".Tessellation_Range_Type\" -type \"string\" \"float\";\n\tsetAttr \".Tessellation_Range\" 100;\n\tsetAttr \".Flat_Tessellation_Name\" -type \"string\" \"Flat_Tessellation\";\n\tsetAttr \".Flat_Tessellation_Type\" -type \"string\" \"float\";\n\tsetAttr \".Flat_Tessellation\" 0;\n\tsetAttr \".Thickness_Mask_Name\" -type \"string\" \"Thickness_Mask\";\n\tsetAttr \".Thickness_Mask_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Thickness_Mask\" no;\n\tsetAttr \".Thickness_Mask_1_Name\" -type \"string\" \"Thickness_Mask\";\n\tsetAttr \".Thickness_Mask_1_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Thickness_Mask_1\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Light_Translucent_Distortion_Name\" -type \"string\" \"Light_Translucent_Distortion\";\n\tsetAttr \".Light_Translucent_Distortion_Type\" -type \"string\" \"float\";\n\tsetAttr \".Light_Translucent_Distortion\" 0.20000000298023224;\n\tsetAttr \".Light_Translucent_Power_Name\" -type \"string\" \"Light_Translucent_Power\";\n\tsetAttr \".Light_Translucent_Power_Type\" -type \"string\" \"float\";\n\tsetAttr \".Light_Translucent_Power\" 3;\n\tsetAttr \".Translucent_Minimum_Name\" -type \"string\" \"Translucent_Minimum\";\n\tsetAttr \".Translucent_Minimum_Type\" -type \"string\" \"float\";\n\tsetAttr \".Translucent_Minimum\" 0;\n\tsetAttr \".Outer_Translucent_Color_Name\" -type \"string\" \"Outer_Translucent_Color\";\n\tsetAttr \".Outer_Translucent_Color_Type\" -type \"string\" \"float3x1\";\n\tsetAttr \".Outer_Translucent_Color\" -type \"float3\" 1 0.63999999 0.25 ;\n\tsetAttr \".Medium_Translucent_Color_Name\" -type \"string\" \"Medium_Translucent_Color\";\n\tsetAttr \".Medium_Translucent_Color_Type\" -type \"string\" \"float3x1\";\n\tsetAttr \".Medium_Translucent_Color\" -type \"float3\" 1 0.20999999 0.14 ;\n\tsetAttr \".Inner_Translucent_Color_Name\" -type \"string\" \"Inner_Translucent_Color\";\n\tsetAttr \".Inner_Translucent_Color_Type\" -type \"string\" \"float3x1\";\n\tsetAttr \".Inner_Translucent_Color\" -type \"float3\" 0.25 0.050000001 0.02 ;\n\tsetAttr \".Light_0_use_implicit_lighting\" no;\n\tsetAttr \".Light_1_use_implicit_lighting\" no;\n\tsetAttr \".Position_Name\" -type \"string\" \"Position\";\n\tsetAttr \".Position_Source\" -type \"string\" \"position\";\n\tsetAttr \".Normal_Name\" -type \"string\" \"Normal\";\n\tsetAttr \".Normal_Source\" -type \"string\" \"normal\";\n\tsetAttr \".Tangent_Name\" -type \"string\" \"Tangent\";\n\tsetAttr \".Tangent_Source\" -type \"string\" \"tangent:map1\";\n\tsetAttr \".Binormal_Name\" -type \"string\" \"Binormal\";\n\tsetAttr \".Binormal_Source\" -type \"string\" \"binormal:map1\";\n\tsetAttr \".TexCoord0_Name\" -type \"string\" \"TexCoord0\";\n\tsetAttr \".TexCoord0_Source\" -type \"string\" \"uv:map1\";\n\tsetAttr \".DepthRange_Name\" -type \"string\" \"DepthRange\";\n\tsetAttr \".DepthRange_Type\" -type \"string\" \"float\";\n\tsetAttr \".DepthRange\" 100000;\n\tsetAttr \".PointLight0ShadowMap_Name\" -type \"string\" \"PointLight0ShadowMap\";\n\tsetAttr \".PointLight0ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".PointLight0ShadowMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".PointLight1ShadowMap_Name\" -type \"string\" \"PointLight1ShadowMap\";\n\tsetAttr \".PointLight1ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".PointLight1ShadowMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".PointLight2ShadowMap_Name\" -type \"string\" \"PointLight2ShadowMap\";\n\tsetAttr \".PointLight2ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".PointLight2ShadowMap\" -type \"float3\" 0 0 0 ;\ncreateNode shadingEngine -n \"GLSLShader2SG\";\n\trename -uid \"8B56255F-445D-0293-9E21-AFB0A3CE8B8C\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo5\";\n\trename -uid \"05895386-49A1-7F2E-AFFC-0A87DB0785CF\";\ncreateNode GLSLShader -n \"GLSLShader3\";\n\trename -uid \"B7E67C46-4400-216D-87FF-F1A1236255C6\";\n\taddAttr -is true -ci true -h true -sn \"ShadowFilterTaps_Name\" -ln \"ShadowFilterTaps_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"ShadowFilterTaps_Type\" -ln \"ShadowFilterTaps_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"ShadowFilterTaps\" -ln \"ShadowFilterTaps\" \n\t\t-ct \"HW_shader_parameter\" -at \"float2\" -nc 2;\n\taddAttr -is true -ci true -sn \"ShadowFilterTapsX\" -ln \"ShadowFilterTapsX\" -ct \"HW_shader_parameter\" \n\t\t-dv -0.84052002429962158 -smn 0 -smx 1 -at \"float\" -p \"ShadowFilterTaps\";\n\taddAttr -is true -ci true -sn \"ShadowFilterTapsY\" -ln \"ShadowFilterTapsY\" -ct \"HW_shader_parameter\" \n\t\t-dv -0.073954001069068909 -smn 0 -smx 1 -at \"float\" -p \"ShadowFilterTaps\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnabled_Name\" -ln \"MayaHwFogEnabled_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnabled_Type\" -ln \"MayaHwFogEnabled_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnabled\" -ln \"MayaHwFogEnabled\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogMode_Name\" -ln \"MayaHwFogMode_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogMode_Type\" -ln \"MayaHwFogMode_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogMode\" -ln \"MayaHwFogMode\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogStart_Name\" -ln \"MayaHwFogStart_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogStart_Type\" -ln \"MayaHwFogStart_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogStart\" -ln \"MayaHwFogStart\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnd_Name\" -ln \"MayaHwFogEnd_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnd_Type\" -ln \"MayaHwFogEnd_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnd\" -ln \"MayaHwFogEnd\" -ct \"HW_shader_parameter\" \n\t\t-dv 100 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogDensity_Name\" -ln \"MayaHwFogDensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogDensity_Type\" -ln \"MayaHwFogDensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogDensity\" -ln \"MayaHwFogDensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.10000000149011612 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogColor_Name\" -ln \"MayaHwFogColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogColor_Type\" -ln \"MayaHwFogColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogColor\" -ln \"MayaHwFogColor\" -ct \"HW_shader_parameter\" \n\t\t-at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"MayaHwFogColorXYZ\" -ln \"MayaHwFogColorXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"MayaHwFogColor\" -nc 3;\n\taddAttr -is true -ci true -sn \"MayaHwFogColorX\" -ln \"MayaHwFogColorX\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.5 -smn 0 -smx 1 -at \"float\" -p \"MayaHwFogColorXYZ\";\n\taddAttr -is true -ci true -sn \"MayaHwFogColorY\" -ln \"MayaHwFogColorY\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.5 -smn 0 -smx 1 -at \"float\" -p \"MayaHwFogColorXYZ\";\n\taddAttr -is true -ci true -sn \"MayaHwFogColorZ\" -ln \"MayaHwFogColorZ\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.5 -smn 0 -smx 1 -at \"float\" -p \"MayaHwFogColorXYZ\";\n\taddAttr -is true -ci true -sn \"MayaHwFogColorW\" -ln \"MayaHwFogColorW\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -smn 0 -smx 1 -at \"float\" -p \"MayaHwFogColor\";\n\taddAttr -is true -ci true -h true -sn \"Clamp_Dynamic_Lights_Name\" -ln \"Clamp_Dynamic_Lights_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Clamp_Dynamic_Lights_Type\" -ln \"Clamp_Dynamic_Lights_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Clamp_Dynamic_Lights\" -ln \"Clamp_Dynamic_Lights\" \n\t\t-nn \"Clamp Dynamic Lights\" -ct \"HW_shader_parameter\" -dv 99 -min 0 -max 99 -smn 0 \n\t\t-smx 99 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"IsSwatchRender_Name\" -ln \"IsSwatchRender_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IsSwatchRender_Type\" -ln \"IsSwatchRender_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IsSwatchRender\" -ln \"IsSwatchRender\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Tessellation_Maximum_Name\" -ln \"Tessellation_Maximum_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Tessellation_Maximum_Type\" -ln \"Tessellation_Maximum_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Tessellation_Maximum\" -ln \"Tessellation_Maximum\" \n\t\t-nn \"Tessellation Maximum\" -ct \"HW_shader_parameter\" -dv 20 -min 0 -max 99 -smn 0 \n\t\t-smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Surface_Mask_Cutoff_Name\" -ln \"Surface_Mask_Cutoff_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Surface_Mask_Cutoff_Type\" -ln \"Surface_Mask_Cutoff_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Surface_Mask_Cutoff\" -ln \"Surface_Mask_Cutoff\" -nn \"Surface Mask Cutoff\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Name\" -ln \"Thickness_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Type\" -ln \"Thickness_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -sn \"Thickness\" -ln \"Thickness\" -nn \"Thickness\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"ReflectionRotation_Name\" -ln \"ReflectionRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"ReflectionRotation_Type\" -ln \"ReflectionRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"ReflectionRotation\" -ln \"ReflectionRotation\" -nn \"ReflectionRotation\" \n\t\t-ct \"HW_shader_parameter\" -dv 360 -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"EmissiveStrength_Name\" -ln \"EmissiveStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"EmissiveStrength_Type\" -ln \"EmissiveStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"EmissiveStrength\" -ln \"EmissiveStrength\" -nn \"EmissiveStrength\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"IBLRotation_Name\" -ln \"IBLRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IBLRotation_Type\" -ln \"IBLRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"IBLRotation\" -ln \"IBLRotation\" -nn \"IBLRotation\" \n\t\t-ct \"HW_shader_parameter\" -dv 360 -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"IBLBlur_Name\" -ln \"IBLBlur_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IBLBlur_Type\" -ln \"IBLBlur_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -sn \"IBLBlur\" -ln \"IBLBlur\" -nn \"IBLBlur\" -ct \"HW_shader_parameter\" \n\t\t-dv 5 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"IBLIntensity_Name\" -ln \"IBLIntensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IBLIntensity_Type\" -ln \"IBLIntensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"IBLIntensity\" -ln \"IBLIntensity\" -nn \"IBLIntensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Type_Name\" -ln \"Light_0_Type_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Type_Type\" -ln \"Light_0_Type_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Type\" -ln \"Light_0_Type\" -nn \"Light 0 Type\" \n\t\t-ct \"HW_shader_parameter\" -dv 3 -smn 0 -smx 1 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Type_Name\" -ln \"Light_1_Type_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Type_Type\" -ln \"Light_1_Type_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Type\" -ln \"Light_1_Type\" -nn \"Light 1 Type\" \n\t\t-ct \"HW_shader_parameter\" -dv 3 -smn 0 -smx 1 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Type_Name\" -ln \"Light_2_Type_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Type_Type\" -ln \"Light_2_Type_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Type\" -ln \"Light_2_Type\" -nn \"Light 2 Type\" \n\t\t-ct \"HW_shader_parameter\" -dv 3 -smn 0 -smx 1 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Color_Name\" -ln \"Light_0_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Color_Type\" -ln \"Light_0_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_0_Color\" -ln \"Light_0_Color\" -nn \"Light 0 Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_0_ColorR\" -ln \"Light_0_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_0_Color\";\n\taddAttr -is true -ci true -sn \"Light_0_ColorG\" -ln \"Light_0_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_0_Color\";\n\taddAttr -is true -ci true -sn \"Light_0_ColorB\" -ln \"Light_0_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_0_Color\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Color_Name\" -ln \"Light_1_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Color_Type\" -ln \"Light_1_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_1_Color\" -ln \"Light_1_Color\" -nn \"Light 1 Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_1_ColorR\" -ln \"Light_1_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_1_Color\";\n\taddAttr -is true -ci true -sn \"Light_1_ColorG\" -ln \"Light_1_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_1_Color\";\n\taddAttr -is true -ci true -sn \"Light_1_ColorB\" -ln \"Light_1_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_1_Color\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Color_Name\" -ln \"Light_2_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Color_Type\" -ln \"Light_2_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_2_Color\" -ln \"Light_2_Color\" -nn \"Light 2 Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_2_ColorR\" -ln \"Light_2_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_2_Color\";\n\taddAttr -is true -ci true -sn \"Light_2_ColorG\" -ln \"Light_2_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_2_Color\";\n\taddAttr -is true -ci true -sn \"Light_2_ColorB\" -ln \"Light_2_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_2_Color\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Intensity_Name\" -ln \"Light_0_Intensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Intensity_Type\" -ln \"Light_0_Intensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Intensity\" -ln \"Light_0_Intensity\" -nn \"Light 0 Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Intensity_Name\" -ln \"Light_1_Intensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Intensity_Type\" -ln \"Light_1_Intensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Intensity\" -ln \"Light_1_Intensity\" -nn \"Light 1 Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Intensity_Name\" -ln \"Light_2_Intensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Intensity_Type\" -ln \"Light_2_Intensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Intensity\" -ln \"Light_2_Intensity\" -nn \"Light 2 Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Position_Name\" -ln \"Light_0_Position_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Position_Type\" -ln \"Light_0_Position_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Position\" -ln \"Light_0_Position\" -nn \"Light 0 Position\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Position_Name\" -ln \"Light_1_Position_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Position_Type\" -ln \"Light_1_Position_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Position\" -ln \"Light_1_Position\" -nn \"Light 1 Position\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Position_Name\" -ln \"Light_2_Position_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Position_Type\" -ln \"Light_2_Position_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Position\" -ln \"Light_2_Position\" -nn \"Light 2 Position\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Direction_Name\" -ln \"Light_0_Direction_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Direction_Type\" -ln \"Light_0_Direction_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Direction\" -ln \"Light_0_Direction\" -nn \"Light 0 Direction\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Direction_Name\" -ln \"Light_1_Direction_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Direction_Type\" -ln \"Light_1_Direction_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Direction\" -ln \"Light_1_Direction\" -nn \"Light 1 Direction\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Direction_Name\" -ln \"Light_2_Direction_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Direction_Type\" -ln \"Light_2_Direction_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Direction\" -ln \"Light_2_Direction\" -nn \"Light 2 Direction\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Decay_Name\" -ln \"Light_0_Decay_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Decay_Type\" -ln \"Light_0_Decay_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Decay\" -ln \"Light_0_Decay\" -nn \"Light 0 Decay\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Decay_Name\" -ln \"Light_1_Decay_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Decay_Type\" -ln \"Light_1_Decay_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Decay\" -ln \"Light_1_Decay\" -nn \"Light 1 Decay\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Decay_Name\" -ln \"Light_2_Decay_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Decay_Type\" -ln \"Light_2_Decay_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Decay\" -ln \"Light_2_Decay\" -nn \"Light 2 Decay\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Cone_Angle_Name\" -ln \"Light_0_Cone_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Cone_Angle_Type\" -ln \"Light_0_Cone_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Cone_Angle\" -ln \"Light_0_Cone_Angle\" -nn \"Light 0 Cone Angle\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.46000000834465027 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Cone_Angle_Name\" -ln \"Light_1_Cone_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Cone_Angle_Type\" -ln \"Light_1_Cone_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Cone_Angle\" -ln \"Light_1_Cone_Angle\" -nn \"Light 1 Cone Angle\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.46000000834465027 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Cone_Angle_Name\" -ln \"Light_2_Cone_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Cone_Angle_Type\" -ln \"Light_2_Cone_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Cone_Angle\" -ln \"Light_2_Cone_Angle\" -nn \"Light 2 Cone Angle\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.46000000834465027 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Penumbra_Angle_Name\" -ln \"Light_0_Penumbra_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Penumbra_Angle_Type\" -ln \"Light_0_Penumbra_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Penumbra_Angle\" -ln \"Light_0_Penumbra_Angle\" \n\t\t-nn \"Light 0 Penumbra Angle\" -ct \"HW_shader_parameter\" -dv 0.69999998807907104 -smn \n\t\t0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Penumbra_Angle_Name\" -ln \"Light_1_Penumbra_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Penumbra_Angle_Type\" -ln \"Light_1_Penumbra_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Penumbra_Angle\" -ln \"Light_1_Penumbra_Angle\" \n\t\t-nn \"Light 1 Penumbra Angle\" -ct \"HW_shader_parameter\" -dv 0.69999998807907104 -smn \n\t\t0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Penumbra_Angle_Name\" -ln \"Light_2_Penumbra_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Penumbra_Angle_Type\" -ln \"Light_2_Penumbra_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Penumbra_Angle\" -ln \"Light_2_Penumbra_Angle\" \n\t\t-nn \"Light 2 Penumbra Angle\" -ct \"HW_shader_parameter\" -dv 0.69999998807907104 -smn \n\t\t0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Casts_Shadow_Name\" -ln \"Light_0_Casts_Shadow_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Casts_Shadow_Type\" -ln \"Light_0_Casts_Shadow_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Casts_Shadow\" -ln \"Light_0_Casts_Shadow\" \n\t\t-nn \"Light 0 Casts Shadow\" -ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Casts_Shadow_Name\" -ln \"Light_1_Casts_Shadow_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Casts_Shadow_Type\" -ln \"Light_1_Casts_Shadow_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Casts_Shadow\" -ln \"Light_1_Casts_Shadow\" \n\t\t-nn \"Light 1 Casts Shadow\" -ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Casts_Shadow_Name\" -ln \"Light_2_Casts_Shadow_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Casts_Shadow_Type\" -ln \"Light_2_Casts_Shadow_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Casts_Shadow\" -ln \"Light_2_Casts_Shadow\" \n\t\t-nn \"Light 2 Casts Shadow\" -ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Shadow_Color_Name\" -ln \"Light_0_Shadow_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Shadow_Color_Type\" -ln \"Light_0_Shadow_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_0_Shadow_Color\" -ln \"Light_0_Shadow_Color\" \n\t\t-nn \"Light 0 Shadow Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_0_Shadow_ColorR\" -ln \"Light_0_Shadow_ColorR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_0_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_0_Shadow_ColorG\" -ln \"Light_0_Shadow_ColorG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_0_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_0_Shadow_ColorB\" -ln \"Light_0_Shadow_ColorB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_0_Shadow_Color\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Shadow_Color_Name\" -ln \"Light_1_Shadow_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Shadow_Color_Type\" -ln \"Light_1_Shadow_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_1_Shadow_Color\" -ln \"Light_1_Shadow_Color\" \n\t\t-nn \"Light 1 Shadow Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_1_Shadow_ColorR\" -ln \"Light_1_Shadow_ColorR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_1_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_1_Shadow_ColorG\" -ln \"Light_1_Shadow_ColorG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_1_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_1_Shadow_ColorB\" -ln \"Light_1_Shadow_ColorB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_1_Shadow_Color\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Shadow_Color_Name\" -ln \"Light_2_Shadow_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Shadow_Color_Type\" -ln \"Light_2_Shadow_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_2_Shadow_Color\" -ln \"Light_2_Shadow_Color\" \n\t\t-nn \"Light 2 Shadow Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_2_Shadow_ColorR\" -ln \"Light_2_Shadow_ColorR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_2_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_2_Shadow_ColorG\" -ln \"Light_2_Shadow_ColorG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_2_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_2_Shadow_ColorB\" -ln \"Light_2_Shadow_ColorB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_2_Shadow_Color\";\n\taddAttr -is true -ci true -h true -sn \"Surface_Mask_Name\" -ln \"Surface_Mask_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Surface_Mask_Type\" -ln \"Surface_Mask_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Surface_Mask\" -ln \"Surface_Mask\" -nn \"Surface Mask\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Surface_MaskR\" -ln \"Surface_MaskR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Surface_Mask\";\n\taddAttr -is true -ci true -sn \"Surface_MaskG\" -ln \"Surface_MaskG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Surface_Mask\";\n\taddAttr -is true -ci true -sn \"Surface_MaskB\" -ln \"Surface_MaskB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Surface_Mask\";\n\taddAttr -is true -ci true -h true -sn \"light0ShadowMap_Name\" -ln \"light0ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"light0ShadowMap_Type\" -ln \"light0ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"light0ShadowMap\" -ln \"light0ShadowMap\" \n\t\t-nn \"light0ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"light0ShadowMapR\" -ln \"light0ShadowMapR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light0ShadowMap\";\n\taddAttr -is true -ci true -sn \"light0ShadowMapG\" -ln \"light0ShadowMapG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light0ShadowMap\";\n\taddAttr -is true -ci true -sn \"light0ShadowMapB\" -ln \"light0ShadowMapB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light0ShadowMap\";\n\taddAttr -is true -ci true -h true -sn \"light1ShadowMap_Name\" -ln \"light1ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"light1ShadowMap_Type\" -ln \"light1ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"light1ShadowMap\" -ln \"light1ShadowMap\" \n\t\t-nn \"light1ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"light1ShadowMapR\" -ln \"light1ShadowMapR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light1ShadowMap\";\n\taddAttr -is true -ci true -sn \"light1ShadowMapG\" -ln \"light1ShadowMapG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light1ShadowMap\";\n\taddAttr -is true -ci true -sn \"light1ShadowMapB\" -ln \"light1ShadowMapB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light1ShadowMap\";\n\taddAttr -is true -ci true -h true -sn \"light2ShadowMap_Name\" -ln \"light2ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"light2ShadowMap_Type\" -ln \"light2ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"light2ShadowMap\" -ln \"light2ShadowMap\" \n\t\t-nn \"light2ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"light2ShadowMapR\" -ln \"light2ShadowMapR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light2ShadowMap\";\n\taddAttr -is true -ci true -sn \"light2ShadowMapG\" -ln \"light2ShadowMapG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light2ShadowMap\";\n\taddAttr -is true -ci true -sn \"light2ShadowMapB\" -ln \"light2ShadowMapB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light2ShadowMap\";\n\taddAttr -is true -ci true -h true -sn \"IBLMap_Name\" -ln \"IBLMap_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IBLMap_Type\" -ln \"IBLMap_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"IBLMap\" -ln \"IBLMap\" -nn \"IBLMap\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"IBLMapR\" -ln \"IBLMapR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"IBLMap\";\n\taddAttr -is true -ci true -sn \"IBLMapG\" -ln \"IBLMapG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"IBLMap\";\n\taddAttr -is true -ci true -sn \"IBLMapB\" -ln \"IBLMapB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"IBLMap\";\n\taddAttr -is true -ci true -h true -sn \"TransDepthTexture_Name\" -ln \"TransDepthTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"TransDepthTexture_Type\" -ln \"TransDepthTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"TransDepthTexture\" -ln \"TransDepthTexture\" \n\t\t-nn \"TransDepthTexture\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"TransDepthTextureR\" -ln \"TransDepthTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"TransDepthTexture\";\n\taddAttr -is true -ci true -sn \"TransDepthTextureG\" -ln \"TransDepthTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"TransDepthTexture\";\n\taddAttr -is true -ci true -sn \"TransDepthTextureB\" -ln \"TransDepthTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"TransDepthTexture\";\n\taddAttr -is true -ci true -h true -sn \"OpaqueDepthTexture_Name\" -ln \"OpaqueDepthTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"OpaqueDepthTexture_Type\" -ln \"OpaqueDepthTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"OpaqueDepthTexture\" -ln \"OpaqueDepthTexture\" \n\t\t-nn \"OpaqueDepthTexture\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"OpaqueDepthTextureR\" -ln \"OpaqueDepthTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"OpaqueDepthTexture\";\n\taddAttr -is true -ci true -sn \"OpaqueDepthTextureG\" -ln \"OpaqueDepthTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"OpaqueDepthTexture\";\n\taddAttr -is true -ci true -sn \"OpaqueDepthTextureB\" -ln \"OpaqueDepthTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"OpaqueDepthTexture\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_Name\" -ln \"Ambient_Emissive_Map_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_Type\" -ln \"Ambient_Emissive_Map_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Ambient_Emissive_Map\" -ln \"Ambient_Emissive_Map\" \n\t\t-nn \"Ambient Emissive Map\" -ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_AO_Name\" -ln \"Ambient_Emissive_Map_AO_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_AO_Type\" -ln \"Ambient_Emissive_Map_AO_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Ambient_Emissive_Map_AO\" -ln \"Ambient_Emissive_Map_AO\" \n\t\t-nn \"Ambient Emissive Map AO\" -ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_1_Name\" -ln \"Ambient_Emissive_Map_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_1_Type\" -ln \"Ambient_Emissive_Map_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Ambient_Emissive_Map_1\" -ln \"Ambient_Emissive_Map_1\" \n\t\t-nn \"Ambient Emissive Map\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Ambient_Emissive_Map_1R\" -ln \"Ambient_Emissive_Map_1R\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Ambient_Emissive_Map_1\";\n\taddAttr -is true -ci true -sn \"Ambient_Emissive_Map_1G\" -ln \"Ambient_Emissive_Map_1G\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Ambient_Emissive_Map_1\";\n\taddAttr -is true -ci true -sn \"Ambient_Emissive_Map_1B\" -ln \"Ambient_Emissive_Map_1B\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Ambient_Emissive_Map_1\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Sky_Color_Name\" -ln \"Ambient_Sky_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Sky_Color_Type\" -ln \"Ambient_Sky_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Ambient_Sky_Color\" -ln \"Ambient_Sky_Color\" -nn \"Ambient Sky Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Ambient_Sky_ColorR\" -ln \"Ambient_Sky_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"Ambient_Sky_Color\";\n\taddAttr -is true -ci true -sn \"Ambient_Sky_ColorG\" -ln \"Ambient_Sky_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"Ambient_Sky_Color\";\n\taddAttr -is true -ci true -sn \"Ambient_Sky_ColorB\" -ln \"Ambient_Sky_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"Ambient_Sky_Color\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Ground_Color_Name\" -ln \"Ambient_Ground_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Ground_Color_Type\" -ln \"Ambient_Ground_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Ambient_Ground_Color\" -ln \"Ambient_Ground_Color\" \n\t\t-nn \"Ambient Ground Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Ambient_Ground_ColorR\" -ln \"Ambient_Ground_ColorR\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"float\" -p \"Ambient_Ground_Color\";\n\taddAttr -is true -ci true -sn \"Ambient_Ground_ColorG\" -ln \"Ambient_Ground_ColorG\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"float\" -p \"Ambient_Ground_Color\";\n\taddAttr -is true -ci true -sn \"Ambient_Ground_ColorB\" -ln \"Ambient_Ground_ColorB\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"float\" -p \"Ambient_Ground_Color\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_Name\" -ln \"Diffuse_Map_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_Type\" -ln \"Diffuse_Map_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Diffuse_Map\" -ln \"Diffuse_Map\" -nn \"Diffuse Map\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_Alpha_Name\" -ln \"Diffuse_Map_Alpha_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_Alpha_Type\" -ln \"Diffuse_Map_Alpha_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Diffuse_Map_Alpha\" -ln \"Diffuse_Map_Alpha\" -nn \"Diffuse Map Alpha\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_1_Name\" -ln \"Diffuse_Map_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_1_Type\" -ln \"Diffuse_Map_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Diffuse_Map_1\" -ln \"Diffuse_Map_1\" -nn \"Diffuse Map\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Diffuse_Map_1R\" -ln \"Diffuse_Map_1R\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Diffuse_Map_1\";\n\taddAttr -is true -ci true -sn \"Diffuse_Map_1G\" -ln \"Diffuse_Map_1G\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Diffuse_Map_1\";\n\taddAttr -is true -ci true -sn \"Diffuse_Map_1B\" -ln \"Diffuse_Map_1B\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Diffuse_Map_1\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Color_Name\" -ln \"Diffuse_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Color_Type\" -ln \"Diffuse_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Diffuse_Color\" -ln \"Diffuse_Color\" -nn \"Diffuse Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Diffuse_ColorR\" -ln \"Diffuse_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.56099998950958252 -min 0 -max 1 -at \"float\" -p \"Diffuse_Color\";\n\taddAttr -is true -ci true -sn \"Diffuse_ColorG\" -ln \"Diffuse_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.56099998950958252 -min 0 -max 1 -at \"float\" -p \"Diffuse_Color\";\n\taddAttr -is true -ci true -sn \"Diffuse_ColorB\" -ln \"Diffuse_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.56099998950958252 -min 0 -max 1 -at \"float\" -p \"Diffuse_Color\";\n\taddAttr -is true -ci true -h true -sn \"Opacity_Name\" -ln \"Opacity_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Opacity_Type\" -ln \"Opacity_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -sn \"Opacity\" -ln \"Opacity\" -nn \"Opacity\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_Name\" -ln \"Specular_Map_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_Type\" -ln \"Specular_Map_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Specular_Map\" -ln \"Specular_Map\" -nn \"Specular Map\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_1_Name\" -ln \"Specular_Map_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_1_Type\" -ln \"Specular_Map_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Specular_Map_1\" -ln \"Specular_Map_1\" -nn \"Specular Map\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_2_Name\" -ln \"Specular_Map_2_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_2_Type\" -ln \"Specular_Map_2_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Specular_Map_2\" -ln \"Specular_Map_2\" -nn \"Specular Map\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Specular_Map_2R\" -ln \"Specular_Map_2R\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Specular_Map_2\";\n\taddAttr -is true -ci true -sn \"Specular_Map_2G\" -ln \"Specular_Map_2G\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Specular_Map_2\";\n\taddAttr -is true -ci true -sn \"Specular_Map_2B\" -ln \"Specular_Map_2B\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Specular_Map_2\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Color_Name\" -ln \"Specular_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Color_Type\" -ln \"Specular_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Specular_Color\" -ln \"Specular_Color\" -nn \"Specular Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Specular_ColorR\" -ln \"Specular_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Specular_Color\";\n\taddAttr -is true -ci true -sn \"Specular_ColorG\" -ln \"Specular_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Specular_Color\";\n\taddAttr -is true -ci true -sn \"Specular_ColorB\" -ln \"Specular_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Specular_Color\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Power_Name\" -ln \"Specular_Power_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Power_Type\" -ln \"Specular_Power_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Specular_Power\" -ln \"Specular_Power\" -nn \"Specular Power\" \n\t\t-ct \"HW_shader_parameter\" -dv 20 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Map_Name\" -ln \"Normal_Map_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Map_Type\" -ln \"Normal_Map_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -sn \"Normal_Map\" -ln \"Normal_Map\" -nn \"Normal Map\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Map_1_Name\" -ln \"Normal_Map_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Map_1_Type\" -ln \"Normal_Map_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Normal_Map_1\" -ln \"Normal_Map_1\" -nn \"Normal Map\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Normal_Map_1R\" -ln \"Normal_Map_1R\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Normal_Map_1\";\n\taddAttr -is true -ci true -sn \"Normal_Map_1G\" -ln \"Normal_Map_1G\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Normal_Map_1\";\n\taddAttr -is true -ci true -sn \"Normal_Map_1B\" -ln \"Normal_Map_1B\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Normal_Map_1\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Height_Name\" -ln \"Normal_Height_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Height_Type\" -ln \"Normal_Height_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Normal_Height\" -ln \"Normal_Height\" -nn \"Normal Height\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Intensity_Name\" -ln \"Reflection_Intensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Intensity_Type\" -ln \"Reflection_Intensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Reflection_Intensity\" -ln \"Reflection_Intensity\" \n\t\t-nn \"Reflection Intensity\" -ct \"HW_shader_parameter\" -dv 0.5 -min 0 -max 99 -smn \n\t\t0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Blur_Name\" -ln \"Reflection_Blur_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Blur_Type\" -ln \"Reflection_Blur_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Reflection_Blur\" -ln \"Reflection_Blur\" -nn \"Reflection Blur\" \n\t\t-ct \"HW_shader_parameter\" -dv 5 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Mask_Name\" -ln \"Reflection_Mask_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Mask_Type\" -ln \"Reflection_Mask_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Reflection_Mask\" -ln \"Reflection_Mask\" -nn \"Reflection Mask\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Mask_1_Name\" -ln \"Reflection_Mask_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Mask_1_Type\" -ln \"Reflection_Mask_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Reflection_Mask_1\" -ln \"Reflection_Mask_1\" -nn \"Reflection Mask\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Reflection_Mask_1R\" -ln \"Reflection_Mask_1R\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Reflection_Mask_1\";\n\taddAttr -is true -ci true -sn \"Reflection_Mask_1G\" -ln \"Reflection_Mask_1G\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Reflection_Mask_1\";\n\taddAttr -is true -ci true -sn \"Reflection_Mask_1B\" -ln \"Reflection_Mask_1B\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Reflection_Mask_1\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Map_Name\" -ln \"Displacement_Map_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Map_Type\" -ln \"Displacement_Map_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Displacement_Map\" -ln \"Displacement_Map\" -nn \"Displacement Map\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Displacement_MapR\" -ln \"Displacement_MapR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Displacement_Map\";\n\taddAttr -is true -ci true -sn \"Displacement_MapG\" -ln \"Displacement_MapG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Displacement_Map\";\n\taddAttr -is true -ci true -sn \"Displacement_MapB\" -ln \"Displacement_MapB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Displacement_Map\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Height_Name\" -ln \"Displacement_Height_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Height_Type\" -ln \"Displacement_Height_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Displacement_Height\" -ln \"Displacement_Height\" -nn \"Displacement Height\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 999 -smn 0 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Offset_Name\" -ln \"Displacement_Offset_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Offset_Type\" -ln \"Displacement_Offset_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Displacement_Offset\" -ln \"Displacement_Offset\" -nn \"Displacement Offset\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -min -99 -max 99 -smn -10 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Clipping_Bias_Name\" -ln \"Displacement_Clipping_Bias_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Clipping_Bias_Type\" -ln \"Displacement_Clipping_Bias_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Displacement_Clipping_Bias\" -ln \"Displacement_Clipping_Bias\" \n\t\t-nn \"Displacement Clipping Bias\" -ct \"HW_shader_parameter\" -dv 5 -min 0 -max 99 -smn \n\t\t0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Bounding_Box_Extra_Scale_Name\" -ln \"Bounding_Box_Extra_Scale_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Bounding_Box_Extra_Scale_Type\" -ln \"Bounding_Box_Extra_Scale_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Bounding_Box_Extra_Scale\" -ln \"Bounding_Box_Extra_Scale\" \n\t\t-nn \"Bounding Box Extra Scale\" -ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -smn \n\t\t1 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Tessellation_Range_Name\" -ln \"Tessellation_Range_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Tessellation_Range_Type\" -ln \"Tessellation_Range_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Tessellation_Range\" -ln \"Tessellation_Range\" -nn \"Tessellation Range\" \n\t\t-ct \"HW_shader_parameter\" -dv 100 -min 0 -max 9999 -smn 0 -smx 9999 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Flat_Tessellation_Name\" -ln \"Flat_Tessellation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Flat_Tessellation_Type\" -ln \"Flat_Tessellation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Flat_Tessellation\" -ln \"Flat_Tessellation\" -nn \"Flat Tessellation\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Mask_Name\" -ln \"Thickness_Mask_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Mask_Type\" -ln \"Thickness_Mask_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Thickness_Mask\" -ln \"Thickness_Mask\" -nn \"Thickness Mask\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Mask_1_Name\" -ln \"Thickness_Mask_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Mask_1_Type\" -ln \"Thickness_Mask_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Thickness_Mask_1\" -ln \"Thickness_Mask_1\" -nn \"Thickness Mask\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Thickness_Mask_1R\" -ln \"Thickness_Mask_1R\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Thickness_Mask_1\";\n\taddAttr -is true -ci true -sn \"Thickness_Mask_1G\" -ln \"Thickness_Mask_1G\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Thickness_Mask_1\";\n\taddAttr -is true -ci true -sn \"Thickness_Mask_1B\" -ln \"Thickness_Mask_1B\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Thickness_Mask_1\";\n\taddAttr -is true -ci true -h true -sn \"Light_Translucent_Distortion_Name\" -ln \"Light_Translucent_Distortion_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_Translucent_Distortion_Type\" -ln \"Light_Translucent_Distortion_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_Translucent_Distortion\" -ln \"Light_Translucent_Distortion\" \n\t\t-nn \"Light Translucent Distortion\" -ct \"HW_shader_parameter\" -dv 0.20000000298023224 \n\t\t-min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_Translucent_Power_Name\" -ln \"Light_Translucent_Power_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_Translucent_Power_Type\" -ln \"Light_Translucent_Power_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_Translucent_Power\" -ln \"Light_Translucent_Power\" \n\t\t-nn \"Light Translucent Power\" -ct \"HW_shader_parameter\" -dv 3 -min 0 -max 99 -smn \n\t\t0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Translucent_Minimum_Name\" -ln \"Translucent_Minimum_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Translucent_Minimum_Type\" -ln \"Translucent_Minimum_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Translucent_Minimum\" -ln \"Translucent_Minimum\" -nn \"Translucent Minimum\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Outer_Translucent_Color_Name\" -ln \"Outer_Translucent_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Outer_Translucent_Color_Type\" -ln \"Outer_Translucent_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Outer_Translucent_Color\" -ln \"Outer_Translucent_Color\" \n\t\t-nn \"Outer Translucent Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Outer_Translucent_ColorX\" -ln \"Outer_Translucent_ColorX\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"float\" -p \"Outer_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Outer_Translucent_ColorY\" -ln \"Outer_Translucent_ColorY\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.63999998569488525 -min 0 -max 1 -at \"float\" -p \"Outer_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Outer_Translucent_ColorZ\" -ln \"Outer_Translucent_ColorZ\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.25 -min 0 -max 1 -at \"float\" -p \"Outer_Translucent_Color\";\n\taddAttr -is true -ci true -h true -sn \"Medium_Translucent_Color_Name\" -ln \"Medium_Translucent_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Medium_Translucent_Color_Type\" -ln \"Medium_Translucent_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Medium_Translucent_Color\" -ln \"Medium_Translucent_Color\" \n\t\t-nn \"Medium Translucent Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Medium_Translucent_ColorX\" -ln \"Medium_Translucent_ColorX\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"float\" -p \"Medium_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Medium_Translucent_ColorY\" -ln \"Medium_Translucent_ColorY\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.20999999344348907 -min 0 -max 1 -at \"float\" -p \"Medium_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Medium_Translucent_ColorZ\" -ln \"Medium_Translucent_ColorZ\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.14000000059604645 -min 0 -max 1 -at \"float\" -p \"Medium_Translucent_Color\";\n\taddAttr -is true -ci true -h true -sn \"Inner_Translucent_Color_Name\" -ln \"Inner_Translucent_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Inner_Translucent_Color_Type\" -ln \"Inner_Translucent_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Inner_Translucent_Color\" -ln \"Inner_Translucent_Color\" \n\t\t-nn \"Inner Translucent Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Inner_Translucent_ColorX\" -ln \"Inner_Translucent_ColorX\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.25 -min 0 -max 1 -at \"float\" -p \"Inner_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Inner_Translucent_ColorY\" -ln \"Inner_Translucent_ColorY\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.05000000074505806 -min 0 -max 1 -at \"float\" -p \"Inner_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Inner_Translucent_ColorZ\" -ln \"Inner_Translucent_ColorZ\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.019999999552965164 -min 0 -max 1 -at \"float\" -p \"Inner_Translucent_Color\";\n\taddAttr -ci true -sn \"Light_0_use_implicit_lighting\" -ln \"Light_0_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_0_connected_light\" -ln \"Light_0_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_1_use_implicit_lighting\" -ln \"Light_1_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_1_connected_light\" -ln \"Light_1_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_2_use_implicit_lighting\" -ln \"Light_2_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_2_connected_light\" -ln \"Light_2_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Position\" -ln \"Position\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Position_Name\" -ln \"Position_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"Position_Source\" -ln \"Position_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -sn \"Position_DefaultTexture\" -ln \"Position_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Position\";\n\taddAttr -ci true -sn \"Normal\" -ln \"Normal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Normal_Name\" -ln \"Normal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Source\" -ln \"Normal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -sn \"Normal_DefaultTexture\" -ln \"Normal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Normal\";\n\taddAttr -ci true -sn \"Tangent\" -ln \"Tangent\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Tangent_Name\" -ln \"Tangent_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"Tangent_Source\" -ln \"Tangent_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -sn \"Tangent_DefaultTexture\" -ln \"Tangent_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Tangent\";\n\taddAttr -ci true -sn \"Binormal\" -ln \"Binormal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Binormal_Name\" -ln \"Binormal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -h true -sn \"Binormal_Source\" -ln \"Binormal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -sn \"Binormal_DefaultTexture\" -ln \"Binormal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Binormal\";\n\taddAttr -ci true -sn \"TexCoord0\" -ln \"TexCoord0\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Name\" -ln \"TexCoord0_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Source\" -ln \"TexCoord0_Source\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -sn \"TexCoord0_DefaultTexture\" -ln \"TexCoord0_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -s false -is true -ci true -k true -sn \"te\" -ln \"techniqueEnum\" -nn \"Technique\" \n\t\t-min 0 -max 0 -en \"T0\" -at \"enum\";\n\taddAttr -is true -ci true -h true -sn \"DepthRange_Name\" -ln \"DepthRange_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"DepthRange_Type\" -ln \"DepthRange_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"DepthRange\" -ln \"DepthRange\" -ct \"HW_shader_parameter\" \n\t\t-dv 100000 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"PointLight0ShadowMap_Name\" -ln \"PointLight0ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"PointLight0ShadowMap_Type\" -ln \"PointLight0ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"PointLight0ShadowMap\" -ln \"PointLight0ShadowMap\" \n\t\t-nn \"PointLight0ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"PointLight0ShadowMapR\" -ln \"PointLight0ShadowMapR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight0ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight0ShadowMapG\" -ln \"PointLight0ShadowMapG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight0ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight0ShadowMapB\" -ln \"PointLight0ShadowMapB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight0ShadowMap\";\n\taddAttr -is true -ci true -h true -sn \"PointLight1ShadowMap_Name\" -ln \"PointLight1ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"PointLight1ShadowMap_Type\" -ln \"PointLight1ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"PointLight1ShadowMap\" -ln \"PointLight1ShadowMap\" \n\t\t-nn \"PointLight1ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"PointLight1ShadowMapR\" -ln \"PointLight1ShadowMapR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight1ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight1ShadowMapG\" -ln \"PointLight1ShadowMapG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight1ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight1ShadowMapB\" -ln \"PointLight1ShadowMapB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight1ShadowMap\";\n\taddAttr -is true -ci true -h true -sn \"PointLight2ShadowMap_Name\" -ln \"PointLight2ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"PointLight2ShadowMap_Type\" -ln \"PointLight2ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"PointLight2ShadowMap\" -ln \"PointLight2ShadowMap\" \n\t\t-nn \"PointLight2ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"PointLight2ShadowMapR\" -ln \"PointLight2ShadowMapR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight2ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight2ShadowMapG\" -ln \"PointLight2ShadowMapG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight2ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight2ShadowMapB\" -ln \"PointLight2ShadowMapB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight2ShadowMap\";\n\tsetAttr \".vpar\" -type \"stringArray\" 5 \"Position\" \"Normal\" \"Tangent\" \"Binormal\" \"TexCoord0\"  ;\n\tsetAttr \".upar\" -type \"stringArray\" 95 \"ShadowFilterTaps\" \"MayaHwFogEnabled\" \"MayaHwFogMode\" \"MayaHwFogStart\" \"MayaHwFogEnd\" \"MayaHwFogDensity\" \"MayaHwFogColor\" \"DepthRange\" \"Clamp_Dynamic_Lights\" \"IsSwatchRender\" \"Tessellation_Maximum\" \"Surface_Mask_Cutoff\" \"Thickness\" \"ReflectionRotation\" \"EmissiveStrength\" \"IBLRotation\" \"IBLBlur\" \"IBLIntensity\" \"Light_0_Type\" \"Light_1_Type\" \"Light_2_Type\" \"Light_0_Color\" \"Light_1_Color\" \"Light_2_Color\" \"Light_0_Intensity\" \"Light_1_Intensity\" \"Light_2_Intensity\" \"Light_0_Position\" \"Light_1_Position\" \"Light_2_Position\" \"Light_0_Direction\" \"Light_1_Direction\" \"Light_2_Direction\" \"Light_0_Decay\" \"Light_1_Decay\" \"Light_2_Decay\" \"Light_0_Cone_Angle\" \"Light_1_Cone_Angle\" \"Light_2_Cone_Angle\" \"Light_0_Penumbra_Angle\" \"Light_1_Penumbra_Angle\" \"Light_2_Penumbra_Angle\" \"Light_0_Casts_Shadow\" \"Light_1_Casts_Shadow\" \"Light_2_Casts_Shadow\" \"Light_0_Shadow_Color\" \"Light_1_Shadow_Color\" \"Light_2_Shadow_Color\" \"Surface_Mask\" \"light0ShadowMap\" \"PointLight0ShadowMap\" \"light1ShadowMap\" \"PointLight1ShadowMap\" \"light2ShadowMap\" \"PointLight2ShadowMap\" \"IBLMap\" \"TransDepthTexture\" \"OpaqueDepthTexture\" \"Ambient_Emissive_Map\" \"Ambient_Emissive_Map_AO\" \"Ambient_Emissive_Map_1\" \"Ambient_Sky_Color\" \"Ambient_Ground_Color\" \"Diffuse_Map\" \"Diffuse_Map_Alpha\" \"Diffuse_Map_1\" \"Diffuse_Color\" \"Opacity\" \"Specular_Map\" \"Specular_Map_1\" \"Specular_Map_2\" \"Specular_Color\" \"Specular_Power\" \"Normal_Map\" \"Normal_Map_1\" \"Normal_Height\" \"Reflection_Intensity\" \"Reflection_Blur\" \"Reflection_Mask\" \"Reflection_Mask_1\" \"Displacement_Map\" \"Displacement_Height\" \"Displacement_Offset\" \"Displacement_Clipping_Bias\" \"Bounding_Box_Extra_Scale\" \"Tessellation_Range\" \"Flat_Tessellation\" \"Thickness_Mask\" \"Thickness_Mask_1\" \"Light_Translucent_Distortion\" \"Light_Translucent_Power\" \"Translucent_Minimum\" \"Outer_Translucent_Color\" \"Medium_Translucent_Color\" \"Inner_Translucent_Color\"  ;\n\tsetAttr \".s\" -type \"string\" \"AutodeskUberShader.ogsfx\";\n\tsetAttr \".t\" -type \"string\" \"T0\";\n\tsetAttr \".ShadowFilterTaps_Name\" -type \"string\" \"ShadowFilterTaps\";\n\tsetAttr \".ShadowFilterTaps_Type\" -type \"string\" \"float2x1\";\n\tsetAttr \".ShadowFilterTaps\" -type \"float2\" -0.84052002 -0.073954001 ;\n\tsetAttr \".MayaHwFogEnabled_Name\" -type \"string\" \"MayaHwFogEnabled\";\n\tsetAttr \".MayaHwFogEnabled_Type\" -type \"string\" \"bool\";\n\tsetAttr \".MayaHwFogEnabled\" no;\n\tsetAttr \".MayaHwFogMode_Name\" -type \"string\" \"MayaHwFogMode\";\n\tsetAttr \".MayaHwFogMode_Type\" -type \"string\" \"int\";\n\tsetAttr \".MayaHwFogMode\" 0;\n\tsetAttr \".MayaHwFogStart_Name\" -type \"string\" \"MayaHwFogStart\";\n\tsetAttr \".MayaHwFogStart_Type\" -type \"string\" \"float\";\n\tsetAttr \".MayaHwFogStart\" 0;\n\tsetAttr \".MayaHwFogEnd_Name\" -type \"string\" \"MayaHwFogEnd\";\n\tsetAttr \".MayaHwFogEnd_Type\" -type \"string\" \"float\";\n\tsetAttr \".MayaHwFogEnd\" 100;\n\tsetAttr \".MayaHwFogDensity_Name\" -type \"string\" \"MayaHwFogDensity\";\n\tsetAttr \".MayaHwFogDensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".MayaHwFogDensity\" 0.10000000149011612;\n\tsetAttr \".MayaHwFogColor_Name\" -type \"string\" \"MayaHwFogColor\";\n\tsetAttr \".MayaHwFogColor_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".MayaHwFogColorXYZ\" -type \"float3\" 0.5 0.5 0.5 ;\n\tsetAttr \".MayaHwFogColorW\" 1;\n\tsetAttr \".Clamp_Dynamic_Lights_Name\" -type \"string\" \"Clamp_Dynamic_Lights\";\n\tsetAttr \".Clamp_Dynamic_Lights_Type\" -type \"string\" \"int\";\n\tsetAttr \".Clamp_Dynamic_Lights\" 99;\n\tsetAttr \".IsSwatchRender_Name\" -type \"string\" \"IsSwatchRender\";\n\tsetAttr \".IsSwatchRender_Type\" -type \"string\" \"bool\";\n\tsetAttr \".IsSwatchRender\" no;\n\tsetAttr \".Tessellation_Maximum_Name\" -type \"string\" \"Tessellation_Maximum\";\n\tsetAttr \".Tessellation_Maximum_Type\" -type \"string\" \"float\";\n\tsetAttr \".Tessellation_Maximum\" 20;\n\tsetAttr \".Surface_Mask_Cutoff_Name\" -type \"string\" \"Surface_Mask_Cutoff\";\n\tsetAttr \".Surface_Mask_Cutoff_Type\" -type \"string\" \"float\";\n\tsetAttr \".Surface_Mask_Cutoff\" 0;\n\tsetAttr \".Thickness_Name\" -type \"string\" \"Thickness\";\n\tsetAttr \".Thickness_Type\" -type \"string\" \"float\";\n\tsetAttr \".Thickness\" 1;\n\tsetAttr \".ReflectionRotation_Name\" -type \"string\" \"ReflectionRotation\";\n\tsetAttr \".ReflectionRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".ReflectionRotation\" 360;\n\tsetAttr \".EmissiveStrength_Name\" -type \"string\" \"EmissiveStrength\";\n\tsetAttr \".EmissiveStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".EmissiveStrength\" 1;\n\tsetAttr \".IBLRotation_Name\" -type \"string\" \"IBLRotation\";\n\tsetAttr \".IBLRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".IBLRotation\" 360;\n\tsetAttr \".IBLBlur_Name\" -type \"string\" \"IBLBlur\";\n\tsetAttr \".IBLBlur_Type\" -type \"string\" \"float\";\n\tsetAttr \".IBLBlur\" 5;\n\tsetAttr \".IBLIntensity_Name\" -type \"string\" \"IBLIntensity\";\n\tsetAttr \".IBLIntensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".IBLIntensity\" 1;\n\tsetAttr \".Light_0_Type_Name\" -type \"string\" \"Light_0_Type\";\n\tsetAttr \".Light_0_Type_Type\" -type \"string\" \"int\";\n\tsetAttr \".Light_0_Type\" 4;\n\tsetAttr \".Light_1_Type_Name\" -type \"string\" \"Light_1_Type\";\n\tsetAttr \".Light_1_Type_Type\" -type \"string\" \"int\";\n\tsetAttr \".Light_1_Type\" 4;\n\tsetAttr \".Light_2_Type_Name\" -type \"string\" \"Light_2_Type\";\n\tsetAttr \".Light_2_Type_Type\" -type \"string\" \"int\";\n\tsetAttr \".Light_2_Type\" 2;\n\tsetAttr \".Light_0_Color_Name\" -type \"string\" \"Light_0_Color\";\n\tsetAttr \".Light_0_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr -l on \".Light_0_Color\" -type \"float3\" 1 1 1 ;\n\tsetAttr -l on \".Light_0_Color\";\n\tsetAttr \".Light_1_Color_Name\" -type \"string\" \"Light_1_Color\";\n\tsetAttr \".Light_1_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr -l on \".Light_1_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr -l on \".Light_1_Color\";\n\tsetAttr \".Light_2_Color_Name\" -type \"string\" \"Light_2_Color\";\n\tsetAttr \".Light_2_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr -l on \".Light_2_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr -l on \".Light_2_Color\";\n\tsetAttr \".Light_0_Intensity_Name\" -type \"string\" \"Light_0_Intensity\";\n\tsetAttr \".Light_0_Intensity_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_0_Intensity\" 1;\n\tsetAttr \".Light_1_Intensity_Name\" -type \"string\" \"Light_1_Intensity\";\n\tsetAttr \".Light_1_Intensity_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_1_Intensity\" 0;\n\tsetAttr \".Light_2_Intensity_Name\" -type \"string\" \"Light_2_Intensity\";\n\tsetAttr \".Light_2_Intensity_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_2_Intensity\" 0;\n\tsetAttr \".Light_0_Position_Name\" -type \"string\" \"Light_0_Position\";\n\tsetAttr \".Light_0_Position_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr -l on \".Light_0_Position\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 1.0990990400314331 0.44998592138290405 1.596551775932312 1;\n\tsetAttr \".Light_1_Position_Name\" -type \"string\" \"Light_1_Position\";\n\tsetAttr \".Light_1_Position_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr -l on \".Light_1_Position\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 1 1 1 1;\n\tsetAttr \".Light_2_Position_Name\" -type \"string\" \"Light_2_Position\";\n\tsetAttr \".Light_2_Position_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr -l on \".Light_2_Position\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 -1.1893892288208008 0.97755825519561768 1.4075454473495483 1;\n\tsetAttr \".Light_0_Direction_Name\" -type \"string\" \"Light_0_Direction\";\n\tsetAttr \".Light_0_Direction_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr -l on \".Light_0_Direction\" -type \"matrix\" 1 0 0 0 0 1 0 0 0.026330450549721718 0.33275771141052246 -0.94264471530914307 0\n\t\t 0 0 0 1;\n\tsetAttr \".Light_1_Direction_Name\" -type \"string\" \"Light_1_Direction\";\n\tsetAttr \".Light_1_Direction_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr -l on \".Light_1_Direction\" -type \"matrix\" 1 0 0 0 0 1 0 0 0.68678545951843262 0.48995029926300049 0.53691196441650391 0\n\t\t 0 0 0 1;\n\tsetAttr \".Light_2_Direction_Name\" -type \"string\" \"Light_2_Direction\";\n\tsetAttr \".Light_2_Direction_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr -l on \".Light_2_Direction\" -type \"matrix\" 1 0 0 0 0 1 0 0 -0.43001112341880798 0.27973565459251404 0.85839289426803589 0\n\t\t 0 0 0 1;\n\tsetAttr \".Light_0_Decay_Name\" -type \"string\" \"Light_0_Decay\";\n\tsetAttr \".Light_0_Decay_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_0_Decay\" 0;\n\tsetAttr \".Light_1_Decay_Name\" -type \"string\" \"Light_1_Decay\";\n\tsetAttr \".Light_1_Decay_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_1_Decay\" 0;\n\tsetAttr \".Light_2_Decay_Name\" -type \"string\" \"Light_2_Decay\";\n\tsetAttr \".Light_2_Decay_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_2_Decay\" 0;\n\tsetAttr \".Light_0_Cone_Angle_Name\" -type \"string\" \"Light_0_Cone_Angle\";\n\tsetAttr \".Light_0_Cone_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_0_Cone_Angle\" 0.46000000834465027;\n\tsetAttr \".Light_1_Cone_Angle_Name\" -type \"string\" \"Light_1_Cone_Angle\";\n\tsetAttr \".Light_1_Cone_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_1_Cone_Angle\" 0.46000000834465027;\n\tsetAttr \".Light_2_Cone_Angle_Name\" -type \"string\" \"Light_2_Cone_Angle\";\n\tsetAttr \".Light_2_Cone_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_2_Cone_Angle\" 0.3490658700466156;\n\tsetAttr \".Light_0_Penumbra_Angle_Name\" -type \"string\" \"Light_0_Penumbra_Angle\";\n\tsetAttr \".Light_0_Penumbra_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_0_Penumbra_Angle\" 0.69999998807907104;\n\tsetAttr \".Light_1_Penumbra_Angle_Name\" -type \"string\" \"Light_1_Penumbra_Angle\";\n\tsetAttr \".Light_1_Penumbra_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_1_Penumbra_Angle\" 0.69999998807907104;\n\tsetAttr \".Light_2_Penumbra_Angle_Name\" -type \"string\" \"Light_2_Penumbra_Angle\";\n\tsetAttr \".Light_2_Penumbra_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_2_Penumbra_Angle\" 0.3490658700466156;\n\tsetAttr \".Light_0_Casts_Shadow_Name\" -type \"string\" \"Light_0_Casts_Shadow\";\n\tsetAttr \".Light_0_Casts_Shadow_Type\" -type \"string\" \"bool\";\n\tsetAttr -l on \".Light_0_Casts_Shadow\" no;\n\tsetAttr \".Light_1_Casts_Shadow_Name\" -type \"string\" \"Light_1_Casts_Shadow\";\n\tsetAttr \".Light_1_Casts_Shadow_Type\" -type \"string\" \"bool\";\n\tsetAttr -l on \".Light_1_Casts_Shadow\" no;\n\tsetAttr \".Light_2_Casts_Shadow_Name\" -type \"string\" \"Light_2_Casts_Shadow\";\n\tsetAttr \".Light_2_Casts_Shadow_Type\" -type \"string\" \"bool\";\n\tsetAttr -l on \".Light_2_Casts_Shadow\" no;\n\tsetAttr \".Light_0_Shadow_Color_Name\" -type \"string\" \"Light_0_Shadow_Color\";\n\tsetAttr \".Light_0_Shadow_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr -l on \".Light_0_Shadow_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr -l on \".Light_0_Shadow_Color\";\n\tsetAttr \".Light_1_Shadow_Color_Name\" -type \"string\" \"Light_1_Shadow_Color\";\n\tsetAttr \".Light_1_Shadow_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr -l on \".Light_1_Shadow_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr -l on \".Light_1_Shadow_Color\";\n\tsetAttr \".Light_2_Shadow_Color_Name\" -type \"string\" \"Light_2_Shadow_Color\";\n\tsetAttr \".Light_2_Shadow_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr -l on \".Light_2_Shadow_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr -l on \".Light_2_Shadow_Color\";\n\tsetAttr \".Surface_Mask_Name\" -type \"string\" \"Surface_Mask\";\n\tsetAttr \".Surface_Mask_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Surface_Mask\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".light0ShadowMap_Name\" -type \"string\" \"light0ShadowMap\";\n\tsetAttr \".light0ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".light0ShadowMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".light1ShadowMap_Name\" -type \"string\" \"light1ShadowMap\";\n\tsetAttr \".light1ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".light1ShadowMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".light2ShadowMap_Name\" -type \"string\" \"light2ShadowMap\";\n\tsetAttr \".light2ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".light2ShadowMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".IBLMap_Name\" -type \"string\" \"IBLMap\";\n\tsetAttr \".IBLMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".IBLMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".TransDepthTexture_Name\" -type \"string\" \"TransDepthTexture\";\n\tsetAttr \".TransDepthTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".TransDepthTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".OpaqueDepthTexture_Name\" -type \"string\" \"OpaqueDepthTexture\";\n\tsetAttr \".OpaqueDepthTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".OpaqueDepthTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Ambient_Emissive_Map_Name\" -type \"string\" \"Ambient_Emissive_Map\";\n\tsetAttr \".Ambient_Emissive_Map_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Ambient_Emissive_Map\" no;\n\tsetAttr \".Ambient_Emissive_Map_AO_Name\" -type \"string\" \"Ambient_Emissive_Map_AO\";\n\tsetAttr \".Ambient_Emissive_Map_AO_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Ambient_Emissive_Map_AO\" no;\n\tsetAttr \".Ambient_Emissive_Map_1_Name\" -type \"string\" \"Ambient_Emissive_Map\";\n\tsetAttr \".Ambient_Emissive_Map_1_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Ambient_Emissive_Map_1\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Ambient_Sky_Color_Name\" -type \"string\" \"Ambient_Sky_Color\";\n\tsetAttr \".Ambient_Sky_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".Ambient_Sky_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Ambient_Ground_Color_Name\" -type \"string\" \"Ambient_Ground_Color\";\n\tsetAttr \".Ambient_Ground_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".Ambient_Ground_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Diffuse_Map_Name\" -type \"string\" \"Diffuse_Map\";\n\tsetAttr \".Diffuse_Map_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Diffuse_Map\" no;\n\tsetAttr \".Diffuse_Map_Alpha_Name\" -type \"string\" \"Diffuse_Map_Alpha\";\n\tsetAttr \".Diffuse_Map_Alpha_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Diffuse_Map_Alpha\" no;\n\tsetAttr \".Diffuse_Map_1_Name\" -type \"string\" \"Diffuse_Map\";\n\tsetAttr \".Diffuse_Map_1_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Diffuse_Map_1\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Diffuse_Color_Name\" -type \"string\" \"Diffuse_Color\";\n\tsetAttr \".Diffuse_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".Diffuse_Color\" -type \"float3\" 0.56099999 0.56099999 0.56099999 ;\n\tsetAttr \".Opacity_Name\" -type \"string\" \"Opacity\";\n\tsetAttr \".Opacity_Type\" -type \"string\" \"float\";\n\tsetAttr \".Opacity\" 1;\n\tsetAttr \".Specular_Map_Name\" -type \"string\" \"Specular_Map\";\n\tsetAttr \".Specular_Map_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Specular_Map\" no;\n\tsetAttr \".Specular_Map_1_Name\" -type \"string\" \"Specular_Map\";\n\tsetAttr \".Specular_Map_1_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Specular_Map_1\" no;\n\tsetAttr \".Specular_Map_2_Name\" -type \"string\" \"Specular_Map\";\n\tsetAttr \".Specular_Map_2_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Specular_Map_2\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Specular_Color_Name\" -type \"string\" \"Specular_Color\";\n\tsetAttr \".Specular_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".Specular_Color\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".Specular_Power_Name\" -type \"string\" \"Specular_Power\";\n\tsetAttr \".Specular_Power_Type\" -type \"string\" \"float\";\n\tsetAttr \".Specular_Power\" 20;\n\tsetAttr \".Normal_Map_Name\" -type \"string\" \"Normal_Map\";\n\tsetAttr \".Normal_Map_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Normal_Map\" no;\n\tsetAttr \".Normal_Map_1_Name\" -type \"string\" \"Normal_Map\";\n\tsetAttr \".Normal_Map_1_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Normal_Map_1\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Normal_Height_Name\" -type \"string\" \"Normal_Height\";\n\tsetAttr \".Normal_Height_Type\" -type \"string\" \"float\";\n\tsetAttr \".Normal_Height\" 1;\n\tsetAttr \".Reflection_Intensity_Name\" -type \"string\" \"Reflection_Intensity\";\n\tsetAttr \".Reflection_Intensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".Reflection_Intensity\" 0.5;\n\tsetAttr \".Reflection_Blur_Name\" -type \"string\" \"Reflection_Blur\";\n\tsetAttr \".Reflection_Blur_Type\" -type \"string\" \"float\";\n\tsetAttr \".Reflection_Blur\" 5;\n\tsetAttr \".Reflection_Mask_Name\" -type \"string\" \"Reflection_Mask\";\n\tsetAttr \".Reflection_Mask_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Reflection_Mask\" no;\n\tsetAttr \".Reflection_Mask_1_Name\" -type \"string\" \"Reflection_Mask\";\n\tsetAttr \".Reflection_Mask_1_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Reflection_Mask_1\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Displacement_Map_Name\" -type \"string\" \"Displacement_Map\";\n\tsetAttr \".Displacement_Map_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Displacement_Map\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Displacement_Height_Name\" -type \"string\" \"Displacement_Height\";\n\tsetAttr \".Displacement_Height_Type\" -type \"string\" \"float\";\n\tsetAttr \".Displacement_Height\" 0;\n\tsetAttr \".Displacement_Offset_Name\" -type \"string\" \"Displacement_Offset\";\n\tsetAttr \".Displacement_Offset_Type\" -type \"string\" \"float\";\n\tsetAttr \".Displacement_Offset\" 0.5;\n\tsetAttr \".Displacement_Clipping_Bias_Name\" -type \"string\" \"Displacement_Clipping_Bias\";\n\tsetAttr \".Displacement_Clipping_Bias_Type\" -type \"string\" \"float\";\n\tsetAttr \".Displacement_Clipping_Bias\" 5;\n\tsetAttr \".Bounding_Box_Extra_Scale_Name\" -type \"string\" \"Bounding_Box_Extra_Scale\";\n\tsetAttr \".Bounding_Box_Extra_Scale_Type\" -type \"string\" \"float\";\n\tsetAttr \".Bounding_Box_Extra_Scale\" 1;\n\tsetAttr \".Tessellation_Range_Name\" -type \"string\" \"Tessellation_Range\";\n\tsetAttr \".Tessellation_Range_Type\" -type \"string\" \"float\";\n\tsetAttr \".Tessellation_Range\" 100;\n\tsetAttr \".Flat_Tessellation_Name\" -type \"string\" \"Flat_Tessellation\";\n\tsetAttr \".Flat_Tessellation_Type\" -type \"string\" \"float\";\n\tsetAttr \".Flat_Tessellation\" 0;\n\tsetAttr \".Thickness_Mask_Name\" -type \"string\" \"Thickness_Mask\";\n\tsetAttr \".Thickness_Mask_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Thickness_Mask\" no;\n\tsetAttr \".Thickness_Mask_1_Name\" -type \"string\" \"Thickness_Mask\";\n\tsetAttr \".Thickness_Mask_1_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Thickness_Mask_1\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Light_Translucent_Distortion_Name\" -type \"string\" \"Light_Translucent_Distortion\";\n\tsetAttr \".Light_Translucent_Distortion_Type\" -type \"string\" \"float\";\n\tsetAttr \".Light_Translucent_Distortion\" 0.20000000298023224;\n\tsetAttr \".Light_Translucent_Power_Name\" -type \"string\" \"Light_Translucent_Power\";\n\tsetAttr \".Light_Translucent_Power_Type\" -type \"string\" \"float\";\n\tsetAttr \".Light_Translucent_Power\" 3;\n\tsetAttr \".Translucent_Minimum_Name\" -type \"string\" \"Translucent_Minimum\";\n\tsetAttr \".Translucent_Minimum_Type\" -type \"string\" \"float\";\n\tsetAttr \".Translucent_Minimum\" 0;\n\tsetAttr \".Outer_Translucent_Color_Name\" -type \"string\" \"Outer_Translucent_Color\";\n\tsetAttr \".Outer_Translucent_Color_Type\" -type \"string\" \"float3x1\";\n\tsetAttr \".Outer_Translucent_Color\" -type \"float3\" 1 0.63999999 0.25 ;\n\tsetAttr \".Medium_Translucent_Color_Name\" -type \"string\" \"Medium_Translucent_Color\";\n\tsetAttr \".Medium_Translucent_Color_Type\" -type \"string\" \"float3x1\";\n\tsetAttr \".Medium_Translucent_Color\" -type \"float3\" 1 0.20999999 0.14 ;\n\tsetAttr \".Inner_Translucent_Color_Name\" -type \"string\" \"Inner_Translucent_Color\";\n\tsetAttr \".Inner_Translucent_Color_Type\" -type \"string\" \"float3x1\";\n\tsetAttr \".Inner_Translucent_Color\" -type \"float3\" 0.25 0.050000001 0.02 ;\n\tsetAttr \".Light_0_use_implicit_lighting\" no;\n\tsetAttr \".Light_2_use_implicit_lighting\" no;\n\tsetAttr \".Position_Name\" -type \"string\" \"Position\";\n\tsetAttr \".Position_Source\" -type \"string\" \"position\";\n\tsetAttr \".Normal_Name\" -type \"string\" \"Normal\";\n\tsetAttr \".Normal_Source\" -type \"string\" \"normal\";\n\tsetAttr \".Tangent_Name\" -type \"string\" \"Tangent\";\n\tsetAttr \".Tangent_Source\" -type \"string\" \"tangent:map1\";\n\tsetAttr \".Binormal_Name\" -type \"string\" \"Binormal\";\n\tsetAttr \".Binormal_Source\" -type \"string\" \"binormal:map1\";\n\tsetAttr \".TexCoord0_Name\" -type \"string\" \"TexCoord0\";\n\tsetAttr \".TexCoord0_Source\" -type \"string\" \"uv:map1\";\n\tsetAttr \".DepthRange_Name\" -type \"string\" \"DepthRange\";\n\tsetAttr \".DepthRange_Type\" -type \"string\" \"float\";\n\tsetAttr \".DepthRange\" 100000;\n\tsetAttr \".PointLight0ShadowMap_Name\" -type \"string\" \"PointLight0ShadowMap\";\n\tsetAttr \".PointLight0ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".PointLight0ShadowMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".PointLight1ShadowMap_Name\" -type \"string\" \"PointLight1ShadowMap\";\n\tsetAttr \".PointLight1ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".PointLight1ShadowMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".PointLight2ShadowMap_Name\" -type \"string\" \"PointLight2ShadowMap\";\n\tsetAttr \".PointLight2ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".PointLight2ShadowMap\" -type \"float3\" 0 0 0 ;\ncreateNode shadingEngine -n \"GLSLShader3SG\";\n\trename -uid \"005B1914-45C0-F462-21B9-D2836B8AA91F\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo6\";\n\trename -uid \"B018A17F-4949-DA75-8895-37B69318B425\";\ncreateNode place2dTexture -n \"place2dTexture30\";\n\trename -uid \"F83235C8-4412-C5E5-68CB-1D9465FECD35\";\ncreateNode file -n \"file_brdf\";\n\trename -uid \"94988878-4B51-268F-D9AC-4F8EE66B9F47\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/brdfLUT.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture31\";\n\trename -uid \"5D0837E6-4B5E-558E-A019-F189423FA10F\";\ncreateNode file -n \"file_emissive\";\n\trename -uid \"D4A21B74-4EA4-5201-5577-E581E5CC2581\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//images/damaged_helmet_emissive.jpg\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture32\";\n\trename -uid \"BE2DC323-46E1-5ED3-929F-18B7A48AE37E\";\ncreateNode nodeGraphEditorInfo -n \"MayaNodeEditorSavedTabsInfo\";\n\trename -uid \"F3941D94-4ABE-91A3-E47A-ED849CD5CD81\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -581.56795195795121 -896.58857623260906 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 614.82126375428345 90.316146456082436 ;\n\tsetAttr -s 6 \".tgi[0].ni\";\n\tsetAttr \".tgi[0].ni[0].x\" 72.857139587402344;\n\tsetAttr \".tgi[0].ni[0].y\" 31.693340301513672;\n\tsetAttr \".tgi[0].ni[0].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[1].x\" -234.28572082519531;\n\tsetAttr \".tgi[0].ni[1].y\" -594.28570556640625;\n\tsetAttr \".tgi[0].ni[1].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[2].x\" -197.14285278320313;\n\tsetAttr \".tgi[0].ni[2].y\" -25.714284896850586;\n\tsetAttr \".tgi[0].ni[2].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[3].x\" -197.14285278320313;\n\tsetAttr \".tgi[0].ni[3].y\" -215.71427917480469;\n\tsetAttr \".tgi[0].ni[3].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[4].x\" -504.28570556640625;\n\tsetAttr \".tgi[0].ni[4].y\" -215.71427917480469;\n\tsetAttr \".tgi[0].ni[4].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[5].x\" -504.28570556640625;\n\tsetAttr \".tgi[0].ni[5].y\" -25.714284896850586;\n\tsetAttr \".tgi[0].ni[5].nvs\" 18304;\ncreateNode file -n \"file1\";\n\trename -uid \"0B3DBCED-4F8B-086D-BEF1-268CA0A2B683\";\n\tsetAttr \".ftn\" -type \"string\" \"renderData/shaders//white_color.png\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture33\";\n\trename -uid \"D445D92F-4160-1C4F-3E78-18BF3DDB9052\";\ncreateNode file -n \"file2\";\n\trename -uid \"90D37564-436B-5F8F-3536-82A9DA725E01\";\n\tsetAttr \".ftn\" -type \"string\" \"renderData/shaders//white_color.png\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture34\";\n\trename -uid \"BA9F78C7-4CD4-C6E3-B5EB-8B9F0E581D05\";\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"12E39BDD-4D68-D4E9-A8F1-74AC2B26033A\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 8 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 10 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderUtilityList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 34 \".u\";\nselect -ne :defaultRenderingList1;\nselect -ne :lightList1;\nselect -ne :defaultTextureList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 13 \".tx\";\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".macc\";\n\tsetAttr -k on \".macd\";\n\tsetAttr -k on \".macq\";\n\tsetAttr -cb on \".ifg\";\n\tsetAttr -k on \".clip\";\n\tsetAttr -k on \".edm\";\n\tsetAttr -k on \".edl\";\n\tsetAttr \".ren\" -type \"string\" \"mayaHardware2\";\n\tsetAttr -av -k on \".esr\";\n\tsetAttr -k on \".ors\";\n\tsetAttr -cb on \".sdf\";\n\tsetAttr -cb on \".imfkey\" -type \"string\" \"exr\";\n\tsetAttr -k on \".gama\";\n\tsetAttr -cb on \".ar\";\n\tsetAttr -av \".bfs\";\n\tsetAttr -k on \".be\";\n\tsetAttr -k on \".fec\";\n\tsetAttr -k on \".ofc\";\n\tsetAttr -cb on \".ofe\";\n\tsetAttr -cb on \".efe\";\n\tsetAttr -cb on \".umfn\";\n\tsetAttr -cb on \".ufe\";\n\tsetAttr -k on \".comp\";\n\tsetAttr -k on \".cth\";\n\tsetAttr -k on \".soll\";\n\tsetAttr -k on \".rd\";\n\tsetAttr -k on \".lp\";\n\tsetAttr -k on \".sp\";\n\tsetAttr -k on \".shs\";\n\tsetAttr -k on \".lpr\";\n\tsetAttr -cb on \".gv\";\n\tsetAttr -cb on \".sv\";\n\tsetAttr -k on \".mm\";\n\tsetAttr -k on \".npu\";\n\tsetAttr -k on \".itf\";\n\tsetAttr -k on \".shp\";\n\tsetAttr -cb on \".isp\";\n\tsetAttr -k on \".uf\";\n\tsetAttr -k on \".oi\";\n\tsetAttr -k on \".rut\";\n\tsetAttr -av -k on \".mbf\";\n\tsetAttr -k on \".afp\";\n\tsetAttr -k on \".pfb\";\n\tsetAttr -cb on \".pfrm\";\n\tsetAttr -cb on \".pfom\";\n\tsetAttr -av -k on \".bll\";\n\tsetAttr -k on \".bls\";\n\tsetAttr -k on \".smv\";\n\tsetAttr -k on \".ubc\";\n\tsetAttr -k on \".mbc\";\n\tsetAttr -k on \".udbx\";\n\tsetAttr -k on \".smc\";\n\tsetAttr -k on \".kmv\";\n\tsetAttr -cb on \".isl\";\n\tsetAttr -cb on \".ism\";\n\tsetAttr -cb on \".imb\";\n\tsetAttr -k on \".rlen\";\n\tsetAttr -av -k on \".frts\";\n\tsetAttr -k on \".tlwd\";\n\tsetAttr -k on \".tlht\";\n\tsetAttr -k on \".jfc\";\n\tsetAttr -cb on \".rsb\";\n\tsetAttr -k on \".ope\";\n\tsetAttr -k on \".oppf\";\n\tsetAttr -cb on \".hbl\";\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :defaultLightSet;\nselect -ne :defaultColorMgtGlobals;\n\tsetAttr \".ote\" yes;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"directionalLight1_aimConstraint1.crx\" \"directionalLight1.rx\";\nconnectAttr \"directionalLight1_aimConstraint1.cry\" \"directionalLight1.ry\";\nconnectAttr \"directionalLight1_aimConstraint1.crz\" \"directionalLight1.rz\";\nconnectAttr \"directionalLight1.pim\" \"directionalLight1_aimConstraint1.cpim\";\nconnectAttr \"directionalLight1.t\" \"directionalLight1_aimConstraint1.ct\";\nconnectAttr \"directionalLight1.rp\" \"directionalLight1_aimConstraint1.crp\";\nconnectAttr \"directionalLight1.rpt\" \"directionalLight1_aimConstraint1.crt\";\nconnectAttr \"directionalLight1.ro\" \"directionalLight1_aimConstraint1.cro\";\nconnectAttr \"helmet.t\" \"directionalLight1_aimConstraint1.tg[0].tt\";\nconnectAttr \"helmet.rp\" \"directionalLight1_aimConstraint1.tg[0].trp\";\nconnectAttr \"helmet.rpt\" \"directionalLight1_aimConstraint1.tg[0].trt\";\nconnectAttr \"helmet.pm\" \"directionalLight1_aimConstraint1.tg[0].tpm\";\nconnectAttr \"directionalLight1_aimConstraint1.w0\" \"directionalLight1_aimConstraint1.tg[0].tw\"\n\t\t;\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"node_damagedHelmet_FBXASC0456514SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader1SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"surfaceShader1SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader3SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"node_damagedHelmet_FBXASC0456514SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader1SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"surfaceShader1SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader3SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"Material_MR.oc\" \"node_damagedHelmet_FBXASC0456514SG.ss\";\nconnectAttr \"node_damagedHelmet_FBXASC0456514SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"Material_MR.msg\" \"materialInfo1.m\";\nconnectAttr \"file_albedo.oc\" \"GLSL_PBR_Shader.u_BaseColorTexture\";\nconnectAttr \"file_orm.oc\" \"GLSL_PBR_Shader.u_OcclusionTexture\";\nconnectAttr \"file_emissive.oc\" \"GLSL_PBR_Shader.u_EmissiveTexture\";\nconnectAttr \"file_normal.oc\" \"GLSL_PBR_Shader.u_NormalTexture\";\nconnectAttr \"file_diffuse_env.oc\" \"GLSL_PBR_Shader.u_DiffuseEnvTexture\";\nconnectAttr \"file_specular_env.oc\" \"GLSL_PBR_Shader.u_SpecularEnvTexture\";\nconnectAttr \"file_brdf.oc\" \"GLSL_PBR_Shader.u_brdfTexture\";\nconnectAttr \"file_orm.oc\" \"GLSL_PBR_Shader.u_MetallicTexture\";\nconnectAttr \"file_orm.oc\" \"GLSL_PBR_Shader.u_RoughnessTexture\";\nconnectAttr \"directionalLightShape1.ltd\" \"GLSL_PBR_Shader.Light_0_connected_light\"\n\t\t;\nconnectAttr \"directionalLightShape1.ltd\" \"GLSL_PBR_Shader.directionalLight1_connected_light\"\n\t\t;\nconnectAttr \"GLSL_PBR_Shader.oc\" \"GLSLShader1SG.ss\";\nconnectAttr \"helmetShape.iog\" \"GLSLShader1SG.dsm\" -na;\nconnectAttr \"GLSLShader1SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"GLSL_PBR_Shader.msg\" \"materialInfo2.m\";\nconnectAttr \"GLSL_PBR_Shader.msg\" \"materialInfo2.t\" -na;\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file_albedo.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file_albedo.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file_albedo.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file_albedo.ws\";\nconnectAttr \"place2dTexture1.c\" \"file_albedo.c\";\nconnectAttr \"place2dTexture1.tf\" \"file_albedo.tf\";\nconnectAttr \"place2dTexture1.rf\" \"file_albedo.rf\";\nconnectAttr \"place2dTexture1.mu\" \"file_albedo.mu\";\nconnectAttr \"place2dTexture1.mv\" \"file_albedo.mv\";\nconnectAttr \"place2dTexture1.s\" \"file_albedo.s\";\nconnectAttr \"place2dTexture1.wu\" \"file_albedo.wu\";\nconnectAttr \"place2dTexture1.wv\" \"file_albedo.wv\";\nconnectAttr \"place2dTexture1.re\" \"file_albedo.re\";\nconnectAttr \"place2dTexture1.of\" \"file_albedo.of\";\nconnectAttr \"place2dTexture1.r\" \"file_albedo.ro\";\nconnectAttr \"place2dTexture1.n\" \"file_albedo.n\";\nconnectAttr \"place2dTexture1.vt1\" \"file_albedo.vt1\";\nconnectAttr \"place2dTexture1.vt2\" \"file_albedo.vt2\";\nconnectAttr \"place2dTexture1.vt3\" \"file_albedo.vt3\";\nconnectAttr \"place2dTexture1.vc1\" \"file_albedo.vc1\";\nconnectAttr \"place2dTexture1.o\" \"file_albedo.uv\";\nconnectAttr \"place2dTexture1.ofs\" \"file_albedo.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file_normal.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file_normal.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file_normal.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file_normal.ws\";\nconnectAttr \"place2dTexture2.c\" \"file_normal.c\";\nconnectAttr \"place2dTexture2.tf\" \"file_normal.tf\";\nconnectAttr \"place2dTexture2.rf\" \"file_normal.rf\";\nconnectAttr \"place2dTexture2.mu\" \"file_normal.mu\";\nconnectAttr \"place2dTexture2.mv\" \"file_normal.mv\";\nconnectAttr \"place2dTexture2.s\" \"file_normal.s\";\nconnectAttr \"place2dTexture2.wu\" \"file_normal.wu\";\nconnectAttr \"place2dTexture2.wv\" \"file_normal.wv\";\nconnectAttr \"place2dTexture2.re\" \"file_normal.re\";\nconnectAttr \"place2dTexture2.of\" \"file_normal.of\";\nconnectAttr \"place2dTexture2.r\" \"file_normal.ro\";\nconnectAttr \"place2dTexture2.n\" \"file_normal.n\";\nconnectAttr \"place2dTexture2.vt1\" \"file_normal.vt1\";\nconnectAttr \"place2dTexture2.vt2\" \"file_normal.vt2\";\nconnectAttr \"place2dTexture2.vt3\" \"file_normal.vt3\";\nconnectAttr \"place2dTexture2.vc1\" \"file_normal.vc1\";\nconnectAttr \"place2dTexture2.o\" \"file_normal.uv\";\nconnectAttr \"place2dTexture2.ofs\" \"file_normal.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file_orm.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file_orm.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file_orm.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file_orm.ws\";\nconnectAttr \"place2dTexture3.c\" \"file_orm.c\";\nconnectAttr \"place2dTexture3.tf\" \"file_orm.tf\";\nconnectAttr \"place2dTexture3.rf\" \"file_orm.rf\";\nconnectAttr \"place2dTexture3.mu\" \"file_orm.mu\";\nconnectAttr \"place2dTexture3.mv\" \"file_orm.mv\";\nconnectAttr \"place2dTexture3.s\" \"file_orm.s\";\nconnectAttr \"place2dTexture3.wu\" \"file_orm.wu\";\nconnectAttr \"place2dTexture3.wv\" \"file_orm.wv\";\nconnectAttr \"place2dTexture3.re\" \"file_orm.re\";\nconnectAttr \"place2dTexture3.of\" \"file_orm.of\";\nconnectAttr \"place2dTexture3.r\" \"file_orm.ro\";\nconnectAttr \"place2dTexture3.n\" \"file_orm.n\";\nconnectAttr \"place2dTexture3.vt1\" \"file_orm.vt1\";\nconnectAttr \"place2dTexture3.vt2\" \"file_orm.vt2\";\nconnectAttr \"place2dTexture3.vt3\" \"file_orm.vt3\";\nconnectAttr \"place2dTexture3.vc1\" \"file_orm.vc1\";\nconnectAttr \"place2dTexture3.o\" \"file_orm.uv\";\nconnectAttr \"place2dTexture3.ofs\" \"file_orm.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file_diffuse_env.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file_diffuse_env.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file_diffuse_env.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file_diffuse_env.ws\";\nconnectAttr \"place2dTexture27.c\" \"file_diffuse_env.c\";\nconnectAttr \"place2dTexture27.tf\" \"file_diffuse_env.tf\";\nconnectAttr \"place2dTexture27.rf\" \"file_diffuse_env.rf\";\nconnectAttr \"place2dTexture27.mu\" \"file_diffuse_env.mu\";\nconnectAttr \"place2dTexture27.mv\" \"file_diffuse_env.mv\";\nconnectAttr \"place2dTexture27.s\" \"file_diffuse_env.s\";\nconnectAttr \"place2dTexture27.wu\" \"file_diffuse_env.wu\";\nconnectAttr \"place2dTexture27.wv\" \"file_diffuse_env.wv\";\nconnectAttr \"place2dTexture27.re\" \"file_diffuse_env.re\";\nconnectAttr \"place2dTexture27.of\" \"file_diffuse_env.of\";\nconnectAttr \"place2dTexture27.r\" \"file_diffuse_env.ro\";\nconnectAttr \"place2dTexture27.n\" \"file_diffuse_env.n\";\nconnectAttr \"place2dTexture27.vt1\" \"file_diffuse_env.vt1\";\nconnectAttr \"place2dTexture27.vt2\" \"file_diffuse_env.vt2\";\nconnectAttr \"place2dTexture27.vt3\" \"file_diffuse_env.vt3\";\nconnectAttr \"place2dTexture27.vc1\" \"file_diffuse_env.vc1\";\nconnectAttr \"place2dTexture27.o\" \"file_diffuse_env.uv\";\nconnectAttr \"place2dTexture27.ofs\" \"file_diffuse_env.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file_specular_env.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file_specular_env.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file_specular_env.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file_specular_env.ws\";\nconnectAttr \"place2dTexture28.c\" \"file_specular_env.c\";\nconnectAttr \"place2dTexture28.tf\" \"file_specular_env.tf\";\nconnectAttr \"place2dTexture28.rf\" \"file_specular_env.rf\";\nconnectAttr \"place2dTexture28.mu\" \"file_specular_env.mu\";\nconnectAttr \"place2dTexture28.mv\" \"file_specular_env.mv\";\nconnectAttr \"place2dTexture28.s\" \"file_specular_env.s\";\nconnectAttr \"place2dTexture28.wu\" \"file_specular_env.wu\";\nconnectAttr \"place2dTexture28.wv\" \"file_specular_env.wv\";\nconnectAttr \"place2dTexture28.re\" \"file_specular_env.re\";\nconnectAttr \"place2dTexture28.of\" \"file_specular_env.of\";\nconnectAttr \"place2dTexture28.r\" \"file_specular_env.ro\";\nconnectAttr \"place2dTexture28.n\" \"file_specular_env.n\";\nconnectAttr \"place2dTexture28.vt1\" \"file_specular_env.vt1\";\nconnectAttr \"place2dTexture28.vt2\" \"file_specular_env.vt2\";\nconnectAttr \"place2dTexture28.vt3\" \"file_specular_env.vt3\";\nconnectAttr \"place2dTexture28.vc1\" \"file_specular_env.vc1\";\nconnectAttr \"place2dTexture28.o\" \"file_specular_env.uv\";\nconnectAttr \"place2dTexture28.ofs\" \"file_specular_env.fs\";\nconnectAttr \"surfaceShader1.oc\" \"surfaceShader1SG.ss\";\nconnectAttr \"surfaceShader1SG.msg\" \"materialInfo3.sg\";\nconnectAttr \"surfaceShader1.msg\" \"materialInfo3.m\";\nconnectAttr \"surfaceShader1.msg\" \"materialInfo3.t\" -na;\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"lambert2SG.msg\" \"materialInfo4.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo4.m\";\nconnectAttr \"GLSLShader2.oc\" \"GLSLShader2SG.ss\";\nconnectAttr \"GLSLShader2SG.msg\" \"materialInfo5.sg\";\nconnectAttr \"GLSLShader2.msg\" \"materialInfo5.m\";\nconnectAttr \"GLSLShader3.oc\" \"GLSLShader3SG.ss\";\nconnectAttr \"GLSLShader3SG.msg\" \"materialInfo6.sg\";\nconnectAttr \"GLSLShader3.msg\" \"materialInfo6.m\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file_brdf.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file_brdf.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file_brdf.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file_brdf.ws\";\nconnectAttr \"place2dTexture31.c\" \"file_brdf.c\";\nconnectAttr \"place2dTexture31.tf\" \"file_brdf.tf\";\nconnectAttr \"place2dTexture31.rf\" \"file_brdf.rf\";\nconnectAttr \"place2dTexture31.mu\" \"file_brdf.mu\";\nconnectAttr \"place2dTexture31.mv\" \"file_brdf.mv\";\nconnectAttr \"place2dTexture31.s\" \"file_brdf.s\";\nconnectAttr \"place2dTexture31.wu\" \"file_brdf.wu\";\nconnectAttr \"place2dTexture31.wv\" \"file_brdf.wv\";\nconnectAttr \"place2dTexture31.re\" \"file_brdf.re\";\nconnectAttr \"place2dTexture31.of\" \"file_brdf.of\";\nconnectAttr \"place2dTexture31.r\" \"file_brdf.ro\";\nconnectAttr \"place2dTexture31.n\" \"file_brdf.n\";\nconnectAttr \"place2dTexture31.vt1\" \"file_brdf.vt1\";\nconnectAttr \"place2dTexture31.vt2\" \"file_brdf.vt2\";\nconnectAttr \"place2dTexture31.vt3\" \"file_brdf.vt3\";\nconnectAttr \"place2dTexture31.vc1\" \"file_brdf.vc1\";\nconnectAttr \"place2dTexture31.o\" \"file_brdf.uv\";\nconnectAttr \"place2dTexture31.ofs\" \"file_brdf.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file_emissive.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file_emissive.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file_emissive.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file_emissive.ws\";\nconnectAttr \"place2dTexture32.c\" \"file_emissive.c\";\nconnectAttr \"place2dTexture32.tf\" \"file_emissive.tf\";\nconnectAttr \"place2dTexture32.rf\" \"file_emissive.rf\";\nconnectAttr \"place2dTexture32.mu\" \"file_emissive.mu\";\nconnectAttr \"place2dTexture32.mv\" \"file_emissive.mv\";\nconnectAttr \"place2dTexture32.s\" \"file_emissive.s\";\nconnectAttr \"place2dTexture32.wu\" \"file_emissive.wu\";\nconnectAttr \"place2dTexture32.wv\" \"file_emissive.wv\";\nconnectAttr \"place2dTexture32.re\" \"file_emissive.re\";\nconnectAttr \"place2dTexture32.of\" \"file_emissive.of\";\nconnectAttr \"place2dTexture32.r\" \"file_emissive.ro\";\nconnectAttr \"place2dTexture32.n\" \"file_emissive.n\";\nconnectAttr \"place2dTexture32.vt1\" \"file_emissive.vt1\";\nconnectAttr \"place2dTexture32.vt2\" \"file_emissive.vt2\";\nconnectAttr \"place2dTexture32.vt3\" \"file_emissive.vt3\";\nconnectAttr \"place2dTexture32.vc1\" \"file_emissive.vc1\";\nconnectAttr \"place2dTexture32.o\" \"file_emissive.uv\";\nconnectAttr \"place2dTexture32.ofs\" \"file_emissive.fs\";\nconnectAttr \"file_albedo.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[0].dn\";\nconnectAttr \"place2dTexture1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[1].dn\";\nconnectAttr \"file_emissive.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[2].dn\";\nconnectAttr \"file_brdf.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[3].dn\";\nconnectAttr \"place2dTexture31.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[4].dn\"\n\t\t;\nconnectAttr \"place2dTexture32.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[5].dn\"\n\t\t;\nconnectAttr \"place2dTexture33.c\" \"file1.c\";\nconnectAttr \"place2dTexture33.tf\" \"file1.tf\";\nconnectAttr \"place2dTexture33.rf\" \"file1.rf\";\nconnectAttr \"place2dTexture33.mu\" \"file1.mu\";\nconnectAttr \"place2dTexture33.mv\" \"file1.mv\";\nconnectAttr \"place2dTexture33.s\" \"file1.s\";\nconnectAttr \"place2dTexture33.wu\" \"file1.wu\";\nconnectAttr \"place2dTexture33.wv\" \"file1.wv\";\nconnectAttr \"place2dTexture33.re\" \"file1.re\";\nconnectAttr \"place2dTexture33.r\" \"file1.ro\";\nconnectAttr \"place2dTexture33.of\" \"file1.of\";\nconnectAttr \"place2dTexture33.n\" \"file1.n\";\nconnectAttr \"place2dTexture33.vt1\" \"file1.vt1\";\nconnectAttr \"place2dTexture33.vt2\" \"file1.vt2\";\nconnectAttr \"place2dTexture33.vt3\" \"file1.vt3\";\nconnectAttr \"place2dTexture33.vc1\" \"file1.vc1\";\nconnectAttr \"place2dTexture33.o\" \"file1.uv\";\nconnectAttr \"place2dTexture33.ofs\" \"file1.fs\";\nconnectAttr \"place2dTexture34.c\" \"file2.c\";\nconnectAttr \"place2dTexture34.tf\" \"file2.tf\";\nconnectAttr \"place2dTexture34.rf\" \"file2.rf\";\nconnectAttr \"place2dTexture34.mu\" \"file2.mu\";\nconnectAttr \"place2dTexture34.mv\" \"file2.mv\";\nconnectAttr \"place2dTexture34.s\" \"file2.s\";\nconnectAttr \"place2dTexture34.wu\" \"file2.wu\";\nconnectAttr \"place2dTexture34.wv\" \"file2.wv\";\nconnectAttr \"place2dTexture34.re\" \"file2.re\";\nconnectAttr \"place2dTexture34.r\" \"file2.ro\";\nconnectAttr \"place2dTexture34.of\" \"file2.of\";\nconnectAttr \"place2dTexture34.n\" \"file2.n\";\nconnectAttr \"place2dTexture34.vt1\" \"file2.vt1\";\nconnectAttr \"place2dTexture34.vt2\" \"file2.vt2\";\nconnectAttr \"place2dTexture34.vt3\" \"file2.vt3\";\nconnectAttr \"place2dTexture34.vc1\" \"file2.vc1\";\nconnectAttr \"place2dTexture34.o\" \"file2.uv\";\nconnectAttr \"place2dTexture34.ofs\" \"file2.fs\";\nconnectAttr \"node_damagedHelmet_FBXASC0456514SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader1SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"surfaceShader1SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader3SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"Material_MR.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"GLSL_PBR_Shader.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"surfaceShader1.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"GLSLShader2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"GLSLShader3.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"place2dTexture1.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture2.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture3.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture4.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture5.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture6.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture7.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture8.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture9.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture10.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture11.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture12.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture13.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture14.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture15.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture16.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture17.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture18.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture19.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture20.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture21.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture22.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture23.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture24.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture25.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture26.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture27.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture28.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture29.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture30.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture31.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture32.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture33.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture34.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"directionalLightShape1.ltd\" \":lightList1.l\" -na;\nconnectAttr \"file_albedo.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file_normal.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file_orm.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"envCube1.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"envCube2.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"layeredTexture1.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"envCube3.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file_diffuse_env.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file_specular_env.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file_brdf.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file_emissive.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file1.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file2.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"directionalLight1.iog\" \":defaultLightSet.dsm\" -na;\n// End of DamagedHelmet.ma\n"
  },
  {
    "path": "maya/scenes/DamagedHelmet2024.ma",
    "content": "//Maya ASCII 2024 scene\n//Name: DamagedHelmet2024.ma\n//Last modified: Tue, May 21, 2024 11:16:28 AM\n//Codeset: 1252\nrequires maya \"2024\";\nrequires \"stereoCamera\" \"10.0\";\nrequires -nodeType \"GLSLShader\" \"glslShader\" \"1.0\";\nrequires -nodeType \"mayaUsdLayerManager\" -dataType \"pxrUsdStageData\" \"mayaUsdPlugin\" \"0.25.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2024\";\nfileInfo \"version\" \"2024\";\nfileInfo \"cutIdentifier\" \"202310181224-69282f2959\";\nfileInfo \"osv\" \"Windows 11 Pro v2009 (Build: 22631)\";\nfileInfo \"UUID\" \"C3801A9F-4D49-1BF3-A90B-DB8E89889B8E\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"62D6CA3E-4845-5AEF-C5AD-3789FFD0601D\";\n\taddAttr -ci true -sn \"nts\" -ln \"notes\" -dt \"string\";\n\tsetAttr \".t\" -type \"double3\" -1.4803989291703874 0.80651703427770671 -2.3284970460991552 ;\n\tsetAttr \".r\" -type \"double3\" -1095.6000000017407 4532.8000000005904 0 ;\n\tsetAttr \".nts\" -type \"string\" \"\\t\\t\";\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"077E03D9-4657-105C-1272-90A434265646\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 2.8409577913835555;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.22884866298771966 0.42484885587722543 0.037428367356010961 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"2FC3A1B8-4B0A-C6DF-08F9-BE940896DEC1\";\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"D1B6367C-46F9-C5D7-A2E4-F6897B148775\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 3.2539231374277473;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"069F6436-4153-A05C-460C-018207B3D022\";\n\tsetAttr \".t\" -type \"double3\" 1.4461369786288363 0.36447797051161412 1000.1015332221973 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"D975C53B-4157-CCD4-5CEC-88B15FA91B98\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 998.9079352200032;\n\tsetAttr \".ow\" 7.8592285325730646;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".tp\" -type \"double3\" 1.4461369786288363 0.36447797051161412 1.193598002194074 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"7E13387B-471A-FB3A-41BD-7C9E32C726BB\";\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"F564C0BC-4180-B78F-CA8D-A58135750634\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"directionalLight1\";\n\trename -uid \"11363E86-4D28-0D19-0058-2BADBA2FE35D\";\n\tsetAttr \".t\" -type \"double3\" 1.40019273164942 1.7506716874128676 -1.1122982736040181 ;\n\tsetAttr \".r\" -type \"double3\" 148.87354140215703 -38.133182477117664 -135.63904563843241 ;\ncreateNode directionalLight -n \"directionalLightShape1\" -p \"directionalLight1\";\n\trename -uid \"4593F2A7-4759-14A9-8452-B58929D7C3FD\";\n\tsetAttr -k off \".v\";\ncreateNode transform -n \"camera1\";\n\trename -uid \"D3308AE9-4667-0629-BA77-AAAA96E02635\";\n\tsetAttr \".t\" -type \"double3\" 3.3925724872722927 0.73858161888978247 -4.3776057092141389 ;\n\tsetAttr \".r\" -type \"double3\" -7.4009736479991401 143.39999999997951 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"EA1A02DD-4189-F083-821C-8FB336F64007\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 5.733693504910006;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.002481997013092041 1.0520219802856445e-05 0.18715500831604004 ;\n\tsetAttr \".dr\" yes;\ncreateNode transform -n \"helmet:helmet\";\n\trename -uid \"00F88C60-4D43-1A80-B5C3-BBB5045D6D2E\";\ncreateNode mesh -n \"helmet:helmetShape\" -p \"helmet:helmet\";\n\trename -uid \"240C1665-4236-7E71-E605-D69389D49AFD\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 30931 \".uvst[0].uvsp\";\n\tsetAttr \".uvst[0].uvsp[0:249]\" -type \"float2\" 0.70468599 0.75439602 0.67577797\n\t\t 0.74337798 0.67268401 0.75403303 0.69770801 0.76686198 0.67102098 0.75906497 0.694713\n\t\t 0.77121103 0.69173598 0.775401 0.66927898 0.76396 0.66754401 0.77038401 0.68843102\n\t\t 0.78025597 0.68475997 0.785721 0.66571498 0.77801001 0.71644902 0.76859599 0.70468599\n\t\t 0.75439602 0.71644902 0.76859599 0.72211099 0.76863599 0.71394902 0.75905597 0.70468599\n\t\t 0.75439602 0.72964001 0.77766001 0.71644902 0.76859599 0.71644902 0.76859599 0.72534198\n\t\t 0.77907401 0.73386598 0.77551401 0.72849399 0.76988 0.72291303 0.76353902 0.74580902\n\t\t 0.800807 0.74243897 0.802616 0.74869901 0.79929203 0.72534198 0.77907401 0.70846099\n\t\t 0.77534997 0.71725202 0.78435302 0.72534198 0.77907401 0.74243897 0.802616 0.72534198\n\t\t 0.77907401 0.71725202 0.78435302 0.70846099 0.77534997 0.70515698 0.77899599 0.71376503\n\t\t 0.78731102 0.71725202 0.78435302 0.70846099 0.77534997 0.70846099 0.77534997 0.70159602\n\t\t 0.78271103 0.70974201 0.790595 0.69720203 0.78688401 0.70444 0.79423302 0.69216901\n\t\t 0.791399 0.698304 0.79806203 0.734231 0.807473 0.71725202 0.78435302 0.734231 0.807473\n\t\t 0.74243897 0.802616 0.74895102 0.81383801 0.74243897 0.802616 0.734231 0.807473 0.734231\n\t\t 0.807473 0.74055898 0.81869799 0.76692402 0.85495502 0.758241 0.85911697 0.758241\n\t\t 0.85911697 0.74055898 0.81869799 0.736507 0.82126403 0.754017 0.86081898 0.758241\n\t\t 0.85911697 0.74930102 0.86245799 0.73188502 0.82389998 0.72604501 0.826554 0.743532\n\t\t 0.86421299 0.737041 0.86604798 0.71943301 0.82920498 0.78192902 0.89236403 0.76692402\n\t\t 0.85495502 0.78192902 0.89236403 0.786053 0.88967597 0.77097797 0.85267597 0.76692402\n\t\t 0.85495502 0.74895102 0.81383801 0.76692402 0.85495502 0.77471602 0.85050201 0.78999501\n\t\t 0.887209 0.77360201 0.89750803 0.77360201 0.89750803 0.758241 0.85911697 0.78282601\n\t\t 0.92086798 0.79089099 0.914621 0.78282601 0.92086798 0.77360201 0.89750803 0.76952702\n\t\t 0.89951402 0.77360201 0.89750803 0.778808 0.92331302 0.78282601 0.92086798 0.77425599\n\t\t 0.925381 0.764952 0.90129602 0.75941199 0.90303999 0.76876801 0.92721599 0.76265502\n\t\t 0.92902601 0.75321901 0.90486002 0.793262 0.88526201 0.798841 0.90881902 0.80206698\n\t\t 0.90672398 0.80518299 0.90490401 0.79715002 0.88535398 0.77764899 0.84881198 0.78039402\n\t\t 0.84726799 0.75785202 0.80897403 0.75787097 0.80440801 0.75305098 0.79684001 0.75098002\n\t\t 0.79805398 0.755557 0.81027597 0.73797798 0.77944797 0.79494202 0.911538 0.78192902\n\t\t 0.89236403 0.78192902 0.89236403 0.79089099 0.914621 0.75252301 0.81188899 0.74895102\n\t\t 0.81383801 0.74895102 0.81383801 0.69041097 0.68968803 0.658198 0.67971599 0.65584201\n\t\t 0.686418 0.68895 0.69676602 0.68752301 0.703264 0.65374202 0.69302398 0.65218902\n\t\t 0.70011097 0.68613601 0.70950502 0.68469 0.71574497 0.65119398 0.70758498 0.650666\n\t\t 0.71549499 0.68303001 0.72232002 0.68101698 0.72927302 0.65031898 0.72346699 0.64950198\n\t\t 0.73832703 0.67577797 0.74337798 0.72276199 0.700625 0.720357 0.70786202 0.718135\n\t\t 0.71444798 0.71609098 0.72041798 0.71408898 0.72621202 0.71185201 0.73260999 0.70931602\n\t\t 0.73957598 0.67577797 0.74337798 0.67577797 0.74337798 0.70468599 0.75439602 0.73556101\n\t\t 0.706011 0.73258603 0.71310401 0.747383 0.71138102 0.74387503 0.718247 0.75997502\n\t\t 0.71738702 0.75597203 0.72399002 0.779324 0.73641402 0.78422898 0.730398 0.740668\n\t\t 0.724572 0.752303 0.73013401 0.77481902 0.74211597 0.748923 0.73612499 0.770621 0.74796402\n\t\t 0.73774999 0.73053098 0.735147 0.73638099 0.74593699 0.742176 0.76702797 0.75399101\n\t\t 0.76702797 0.75399101 0.74315798 0.74918902 0.76373202 0.76112998 0.76702797 0.75399101\n\t\t 0.732737 0.74271899 0.72993797 0.74950999 0.73968101 0.75602502 0.75130099 0.76655197\n\t\t 0.76023698 0.76959997 0.727395 0.72549301 0.72986299 0.719576 0.72511703 0.73123902\n\t\t 0.72282302 0.73750103 0.72025597 0.74436897 0.71394902 0.75905597 0.71394902 0.75905597\n\t\t 0.72291303 0.76353902 0.70468599 0.75439602 0.71394902 0.75905597 0.70468599 0.75439602\n\t\t 0.72291303 0.76353902 0.72927499 0.76345903 0.891792 0.71633798 0.87129903 0.74586803\n\t\t 0.87712097 0.751674 0.89752901 0.72206402 0.90286702 0.72729301 0.88252699 0.75703698\n\t\t 0.88792098 0.76201099 0.90804398 0.73217899 0.91332603 0.73685497 0.89355302 0.76656502\n\t\t 0.89967501 0.77072698 0.91921002 0.74133801 0.925385 0.74544698 0.90535402 0.77438903\n\t\t 0.91239899 0.77969998 0.93699098 0.75178099 0.93699098 0.75178099 0.91239899 0.77969998\n\t\t 0.91805702 0.782637 0.94062102 0.758986 0.93699098 0.75178099 0.94062102 0.758986\n\t\t 0.91805702 0.782637 0.92219198 0.78398299 0.94390601 0.76179099 0.94062102 0.758986\n\t\t 0.94814402 0.76462102 0.94390601 0.76179099 0.92685002 0.78554797 0.88683897 0.77703702\n\t\t 0.88114101 0.77245098 0.87567699 0.76740801 0.87024403 0.76201499 0.86438298 0.756226\n\t\t 0.86508203 0.76956803 0.85924298 0.76371598 0.87049901 0.775051 0.87595499 0.78020197\n\t\t 0.881688 0.78491598 0.88791603 0.78913403 0.89301002 0.78116399 0.89208603 0.791682\n\t\t 0.89798301 0.78530902 0.89910102 0.79362899 0.91239899 0.77969998 0.90924299 0.79165\n\t\t 0.91239899 0.77969998 0.90455699 0.797185 0.88724399 0.80595201 0.91805702 0.782637\n\t\t 0.91428 0.79220098 0.91805702 0.782637 0.90754598 0.79882401 0.91276598 0.80048501\n\t\t 0.919168 0.79361701 0.89473999 0.80930901 0.90114403 0.812114 0.90628302 0.81466299\n\t\t 0.91789699 0.80294102 0.92321098 0.80601799 0.91123998 0.81746298 0.92685002 0.78554797\n\t\t 0.92425799 0.79599297 0.93194801 0.78809297 0.92685002 0.78554797 0.92685002 0.78554797\n\t\t 0.95362401 0.76858997 0.96746999 0.74599802 0.94390601 0.76179099;\n\tsetAttr \".uvst[0].uvsp[250:499]\" 0.963507 0.742558 0.94390601 0.76179099 0.963507\n\t\t 0.742558 0.96025699 0.73934603 0.94062102 0.758986 0.96025699 0.73934603 0.95528698\n\t\t 0.73331398 0.93699098 0.75178099 0.95528698 0.73331398 0.95528698 0.73331398 0.94436598\n\t\t 0.72333997 0.93821698 0.71844602 0.93193197 0.71383601 0.92576897 0.70965701 0.91958201\n\t\t 0.70582598 0.91357797 0.70224398 0.90739501 0.69851798 0.36241001 0.44191 0.360156\n\t\t 0.443398 0.36453 0.449857 0.36680901 0.44849899 0.35595599 0.437794 0.35802701 0.43600401\n\t\t 0.35308799 0.43110499 0.35148999 0.433348 0.34633401 0.43046001 0.34706199 0.42780301\n\t\t 0.340094 0.426981 0.340523 0.429699 0.33470401 0.431575 0.333202 0.42925701 0.32758099\n\t\t 0.434082 0.32975399 0.43580201 0.32630301 0.440952 0.32384399 0.439684 0.321646 0.44448099\n\t\t 0.32420599 0.44552401 0.32242 0.45012301 0.319828 0.44916001 0.67511499 0.743213\n\t\t 0.64967299 0.73757398 0.64778 0.74552399 0.64719099 0.74952102 0.64719099 0.74952102\n\t\t 0.64719099 0.74952102 0.64654398 0.75409198 0.64537102 0.76081002 0.64386803 0.76870197\n\t\t 0.97310603 0.75043499 0.97958601 0.755337 0.95999599 0.77338398 0.93750799 0.79137301\n\t\t 0.92966503 0.79906499 0.360742 0.42539999 0.35639799 0.428426 0.36131099 0.43537301\n\t\t 0.36569101 0.43243301 0.360742 0.42539999 0.36569101 0.43243301 0.36771801 0.43074399\n\t\t 0.36569101 0.43243301 0.37057501 0.43873101 0.37057501 0.43873101 0.36143801 0.435572\n\t\t 0.36644 0.442004 0.37057501 0.43873101 0.37238601 0.43692899 0.36771801 0.43074399\n\t\t 0.37238601 0.43692899 0.37476 0.43420601 0.37990099 0.439199 0.37238601 0.43692899\n\t\t 0.37238601 0.43692899 0.37773299 0.44216001 0.37773299 0.44216001 0.385526 0.44341201\n\t\t 0.383551 0.44662201 0.39164799 0.44689301 0.38996899 0.45029199 0.398359 0.44951299\n\t\t 0.39715201 0.45304301 0.40557599 0.451269 0.40497601 0.45485601 0.412384 0.45220301\n\t\t 0.41238299 0.45585099 0.41780701 0.45176199 0.418246 0.45545501 0.422685 0.45049301\n\t\t 0.423729 0.45421699 0.42436999 0.45724699 0.423729 0.45421699 0.418246 0.45545501\n\t\t 0.418246 0.45545501 0.41855401 0.45811799 0.42436999 0.45724699 0.41855401 0.45811799\n\t\t 0.41910601 0.46340299 0.42482099 0.46276 0.42436999 0.45724699 0.418246 0.45545501\n\t\t 0.41238299 0.45585099 0.41241401 0.45843899 0.418246 0.45545501 0.41238299 0.45585099\n\t\t 0.40497601 0.45485601 0.418782 0.46344101 0.41855401 0.45811799 0.41241401 0.45843899\n\t\t 0.41241401 0.45843899 0.41256899 0.463696 0.40497601 0.45485601 0.40461901 0.457526\n\t\t 0.41241401 0.45843899 0.40461901 0.457526 0.404163 0.462899 0.412081 0.46369499 0.41241401\n\t\t 0.45843899 0.40382099 0.462861 0.40461901 0.457526 0.396415 0.455623 0.395441 0.46095499\n\t\t 0.396415 0.455623 0.40497601 0.45485601 0.40497601 0.45485601 0.39715201 0.45304301\n\t\t 0.396415 0.455623 0.396415 0.455623 0.39715201 0.45304301 0.38996899 0.45029199 0.38996899\n\t\t 0.45029199 0.38891301 0.45273501 0.396415 0.455623 0.38891301 0.45273501 0.387187\n\t\t 0.457885 0.39497399 0.46085599 0.38218501 0.44893 0.38996899 0.45029199 0.38672799\n\t\t 0.45771301 0.38891301 0.45273501 0.38218501 0.44893 0.38218501 0.44893 0.37968501\n\t\t 0.45373401 0.38996899 0.45029199 0.383551 0.44662201 0.383551 0.44662201 0.37773299\n\t\t 0.44216001 0.37773299 0.44216001 0.37610701 0.44422999 0.38218501 0.44893 0.37610701\n\t\t 0.44422999 0.37284201 0.448513 0.37918201 0.45343399 0.38218501 0.44893 0.37773299\n\t\t 0.44216001 0.37245601 0.448176 0.37610701 0.44422999 0.37057501 0.43873101 0.37057501\n\t\t 0.43873101 0.36677799 0.44241399 0.362984 0.41592801 0.369436 0.41291001 0.36860001\n\t\t 0.40933701 0.361415 0.41247901 0.356525 0.42022699 0.35431299 0.41702399 0.376187\n\t\t 0.40882099 0.376059 0.41232899 0.383425 0.41059601 0.38234299 0.41385001 0.38973701\n\t\t 0.414626 0.38786 0.417364 0.394945 0.42039901 0.39239901 0.422391 0.39860901 0.42765799\n\t\t 0.395551 0.42863399 0.40051499 0.43499899 0.39711499 0.434894 0.400105 0.44094899\n\t\t 0.39662799 0.43997201 0.39845899 0.446374 0.39505899 0.44461599 0.85536897 0.784109\n\t\t 0.85741699 0.78103602 0.85173303 0.77495801 0.84981298 0.77785802 0.86271298 0.786744\n\t\t 0.86053997 0.790003 0.86581302 0.795623 0.86809301 0.79213798 0.873842 0.79699802\n\t\t 0.87148798 0.80066299 0.87763202 0.80512202 0.88001603 0.80139899 0.88442099 0.80918097\n\t\t 0.89188099 0.81279999 0.89892399 0.81596398 0.90440798 0.81848699 0.90946698 0.82100099\n\t\t 0.012627 0.42740601 0.012461 0.400047 0.00333 0.40049401 0.0035079999 0.42737299\n\t\t 0.020988001 0.39975199 0.021129999 0.42756599 0.029423 0.42797601 0.029300001 0.39974999\n\t\t 0.037473999 0.400006 0.039730001 0.432583 0.039730001 0.432583 0.046257 0.43193501\n\t\t 0.045669001 0.40037701 0.054193001 0.40086401 0.054788999 0.43236101 0.063669004\n\t\t 0.43262401 0.063068002 0.40139499 0.071322002 0.40182 0.071920998 0.43277201 0.078404002\n\t\t 0.43285999 0.077804998 0.401999 0.083961003 0.40204599 0.084559999 0.43290699 0.029688001\n\t\t 0.438889 0.038357999 0.43954301 0.021376001 0.43843099 0.012848 0.438209 0.0037209999\n\t\t 0.43811601 0.37026501 0.42819199 0.36771801 0.43074399 0.36308599 0.42376101 0.36771801\n\t\t 0.43074399 0.36596999 0.421554 0.36308599 0.42376101 0.360742 0.42539999 0.359732\n\t\t 0.33566299 0.35919201 0.33956999 0.365859 0.34005901 0.366593 0.33644101 0.35281399\n\t\t 0.33902901 0.35325199 0.334905 0.346935 0.33461899 0.34651101 0.338651 0.339993 0.33843699\n\t\t 0.34040901 0.334454 0.333478 0.334104 0.33309501 0.338135 0.32587701 0.33796901 0.32618999\n\t\t 0.333886 0.31165799 0.33372599 0.31159201 0.33720699 0.31159201 0.33720699;\n\tsetAttr \".uvst[0].uvsp[500:749]\" 0.31165799 0.33372599 0.30317199 0.332679\n\t\t 0.303029 0.33686399 0.31159201 0.33720699 0.303029 0.33686399 0.30317199 0.332679\n\t\t 0.299413 0.33276901 0.29922101 0.33697101 0.303029 0.33686399 0.29486901 0.337437\n\t\t 0.29922101 0.33697101 0.299413 0.33276901 0.299413 0.33276901 0.29506499 0.33337799\n\t\t 0.28865901 0.33449 0.28842601 0.338413 0.28096101 0.34001401 0.28123799 0.33602801\n\t\t 0.35919201 0.33956999 0.35281399 0.33902901 0.352496 0.34129399 0.35877299 0.34179699\n\t\t 0.35919201 0.33956999 0.365859 0.34005901 0.35919201 0.33956999 0.365749 0.342235\n\t\t 0.365859 0.34005901 0.34636801 0.34085399 0.35281399 0.33902901 0.35281399 0.33902901\n\t\t 0.34651101 0.338651 0.33997399 0.34068701 0.34651101 0.338651 0.34651101 0.338651\n\t\t 0.339993 0.33843699 0.33313301 0.340368 0.339993 0.33843699 0.339993 0.33843699 0.33309501\n\t\t 0.338135 0.325993 0.340287 0.33309501 0.338135 0.33309501 0.338135 0.32587701 0.33796901\n\t\t 0.32587701 0.33796901 0.31159201 0.33720699 0.31159201 0.33720699 0.311652 0.33906499\n\t\t 0.31159201 0.33720699 0.303029 0.33686399 0.303029 0.33686399 0.303065 0.33916199\n\t\t 0.29948401 0.33897901 0.303029 0.33686399 0.303029 0.33686399 0.29922101 0.33697101\n\t\t 0.29526201 0.33948001 0.29922101 0.33697101 0.29922101 0.33697101 0.29486901 0.337437\n\t\t 0.288856 0.34043601 0.29486901 0.337437 0.29486901 0.337437 0.28842601 0.338413 0.28114799\n\t\t 0.34245199 0.28842601 0.338413 0.28842601 0.338413 0.28096101 0.34001401 0.359732\n\t\t 0.33566299 0.366593 0.33644101 0.36690301 0.33428901 0.35980999 0.33343101 0.359732\n\t\t 0.33566299 0.35325199 0.334905 0.359732 0.33566299 0.35341999 0.33251801 0.35325199\n\t\t 0.334905 0.346935 0.33461899 0.35325199 0.334905 0.34715101 0.33240801 0.346935 0.33461899\n\t\t 0.34040901 0.334454 0.346935 0.33461899 0.34065101 0.332324 0.34040901 0.334454 0.333478\n\t\t 0.334104 0.34040901 0.334454 0.333711 0.33181599 0.333478 0.334104 0.32618999 0.333886\n\t\t 0.333478 0.334104 0.32646799 0.33158901 0.32618999 0.333886 0.31165799 0.33372599\n\t\t 0.32618999 0.333886 0.31199601 0.331788 0.31165799 0.33372599 0.30317199 0.332679\n\t\t 0.31165799 0.33372599 0.30329701 0.33034801 0.30317199 0.332679 0.299413 0.33276901\n\t\t 0.30317199 0.332679 0.299485 0.33060199 0.299413 0.33276901 0.29506499 0.33337799\n\t\t 0.299413 0.33276901 0.29502901 0.33122101 0.29506499 0.33337799 0.28865901 0.33449\n\t\t 0.29506499 0.33337799 0.288495 0.33230901 0.28865901 0.33449 0.28123799 0.33602801\n\t\t 0.28865901 0.33449 0.28064501 0.33384201 0.28123799 0.33602801 0.82181799 0.757285\n\t\t 0.80801201 0.745906 0.80227399 0.75118101 0.81567401 0.76210397 0.79053402 0.74322301\n\t\t 0.79585701 0.73753297 0.78565001 0.74867803 0.797068 0.75631398 0.81016499 0.76697302\n\t\t 0.79222399 0.76190001 0.805035 0.772515 0.78109998 0.75442302 0.777188 0.76027697\n\t\t 0.78797901 0.76759601 0.80045801 0.77818799 0.78797901 0.76759601 0.78413701 0.77355701\n\t\t 0.79629302 0.783786 0.78797901 0.76759601 0.777188 0.76027697 0.77369601 0.76675802\n\t\t 0.78797901 0.76759601 0.76969498 0.773718 0.77990103 0.78025502 0.79006302 0.78710699\n\t\t 0.82048798 0.78853798 0.82590699 0.78290403 0.83170003 0.778166 0.838139 0.77367097\n\t\t 0.84057599 0.79914898 0.84651399 0.794487 0.85306197 0.79011601 0.83499998 0.80484802\n\t\t 0.82995999 0.81073099 0.81560898 0.79432899 0.81129402 0.79971302 0.80670798 0.80526\n\t\t 0.82351601 0.82352102 0.82562798 0.81597298 0.864151 0.81509203 0.85817599 0.81971002\n\t\t 0.87070101 0.810736 0.852543 0.82546699 0.847449 0.831429 0.84314001 0.83660501 0.83879799\n\t\t 0.84171802 0.74055898 0.81869799 0.73031199 0.81018001 0.74055898 0.81869799 0.725806\n\t\t 0.81303799 0.72000802 0.81596899 0.71341801 0.81895202 0.777188 0.76027697 0.76702797\n\t\t 0.75399101 0.777188 0.76027697 0.28343499 0.95032501 0.284796 0.96045101 0.30764499\n\t\t 0.95397002 0.30682701 0.94240898 0.329638 0.933294 0.331209 0.948946 0.28119001 0.965276\n\t\t 0.27147201 0.95737201 0.26161799 0.96341598 0.27943599 0.97045702 0.37038901 0.96957397\n\t\t 0.376522 0.95671898 0.267995 0.97756398 0.27961901 0.97548699 0.28225499 0.97930801\n\t\t 0.276086 0.99022698 0.32452601 0.984173 0.32392299 0.992118 0.36264199 0.98563999\n\t\t 0.36495399 0.99469799 0.36963999 0.97177702 0.385894 0.99686497 0.26743799 0.99088198\n\t\t 0.26013601 0.980407 0.24523699 0.99319297 0.237058 0.99234498 0.24003901 0.99389398\n\t\t 0.232954 0.99489403 0.228873 0.991521 0.24478801 0.97601599 0.25284201 0.96993101\n\t\t 0.22492699 0.99627 0.39279699 0.98287398 0.37901399 0.96025997 0.67577797 0.74337798\n\t\t 0.70468599 0.75439602 0.69770801 0.76686198 0.69770801 0.76686198 0.67268401 0.75403303\n\t\t 0.67577797 0.74337798 0.67102098 0.75906497 0.67268401 0.75403303 0.69770801 0.76686198\n\t\t 0.69770801 0.76686198 0.694713 0.77121103 0.67102098 0.75906497 0.67102098 0.75906497\n\t\t 0.694713 0.77121103 0.69173598 0.775401 0.69173598 0.775401 0.66927898 0.76396 0.67102098\n\t\t 0.75906497 0.66754401 0.77038401 0.66927898 0.76396 0.69173598 0.775401 0.69173598\n\t\t 0.775401 0.68843102 0.78025597 0.66754401 0.77038401 0.66571498 0.77801001 0.66754401\n\t\t 0.77038401 0.68843102 0.78025597 0.68843102 0.78025597 0.68475997 0.785721 0.66571498\n\t\t 0.77801001 0.69770801 0.76686198 0.70468599 0.75439602 0.71644902 0.76859599 0.72211099\n\t\t 0.76863599 0.71644902 0.76859599 0.70468599 0.75439602 0.70468599 0.75439602 0.71394902\n\t\t 0.75905597 0.72211099 0.76863599 0.71644902 0.76859599 0.72211099 0.76863599 0.72964001\n\t\t 0.77766001 0.72964001 0.77766001 0.72534198 0.77907401 0.71644902 0.76859599;\n\tsetAttr \".uvst[0].uvsp[750:999]\" 0.73386598 0.77551401 0.72964001 0.77766001\n\t\t 0.72211099 0.76863599 0.72211099 0.76863599 0.72849399 0.76988 0.73386598 0.77551401\n\t\t 0.72849399 0.76988 0.72211099 0.76863599 0.71394902 0.75905597 0.71394902 0.75905597\n\t\t 0.72291303 0.76353902 0.72849399 0.76988 0.72534198 0.77907401 0.72964001 0.77766001\n\t\t 0.74580902 0.800807 0.74580902 0.800807 0.72964001 0.77766001 0.73386598 0.77551401\n\t\t 0.74580902 0.800807 0.74243897 0.802616 0.72534198 0.77907401 0.73386598 0.77551401\n\t\t 0.74869901 0.79929203 0.74580902 0.800807 0.70846099 0.77534997 0.71644902 0.76859599\n\t\t 0.72534198 0.77907401 0.72534198 0.77907401 0.71725202 0.78435302 0.70846099 0.77534997\n\t\t 0.71725202 0.78435302 0.72534198 0.77907401 0.74243897 0.802616 0.71644902 0.76859599\n\t\t 0.70846099 0.77534997 0.69770801 0.76686198 0.70515698 0.77899599 0.70846099 0.77534997\n\t\t 0.71725202 0.78435302 0.71725202 0.78435302 0.71376503 0.78731102 0.70515698 0.77899599\n\t\t 0.70846099 0.77534997 0.70515698 0.77899599 0.694713 0.77121103 0.694713 0.77121103\n\t\t 0.69770801 0.76686198 0.70846099 0.77534997 0.69173598 0.775401 0.694713 0.77121103\n\t\t 0.70515698 0.77899599 0.70515698 0.77899599 0.70159602 0.78271103 0.69173598 0.775401\n\t\t 0.70159602 0.78271103 0.70515698 0.77899599 0.71376503 0.78731102 0.71376503 0.78731102\n\t\t 0.70974201 0.790595 0.70159602 0.78271103 0.69720203 0.78688401 0.70159602 0.78271103\n\t\t 0.70974201 0.790595 0.70974201 0.790595 0.70444 0.79423302 0.69720203 0.78688401\n\t\t 0.70159602 0.78271103 0.69720203 0.78688401 0.68843102 0.78025597 0.68843102 0.78025597\n\t\t 0.69173598 0.775401 0.70159602 0.78271103 0.68475997 0.785721 0.68843102 0.78025597\n\t\t 0.69720203 0.78688401 0.69720203 0.78688401 0.69216901 0.791399 0.68475997 0.785721\n\t\t 0.69216901 0.791399 0.69720203 0.78688401 0.70444 0.79423302 0.70444 0.79423302 0.698304\n\t\t 0.79806203 0.69216901 0.791399 0.71376503 0.78731102 0.71725202 0.78435302 0.734231\n\t\t 0.807473 0.74243897 0.802616 0.734231 0.807473 0.71725202 0.78435302 0.734231 0.807473\n\t\t 0.74243897 0.802616 0.74895102 0.81383801 0.74895102 0.81383801 0.74055898 0.81869799\n\t\t 0.734231 0.807473 0.74055898 0.81869799 0.74895102 0.81383801 0.76692402 0.85495502\n\t\t 0.76692402 0.85495502 0.758241 0.85911697 0.74055898 0.81869799 0.736507 0.82126403\n\t\t 0.74055898 0.81869799 0.758241 0.85911697 0.758241 0.85911697 0.754017 0.86081898\n\t\t 0.736507 0.82126403 0.736507 0.82126403 0.754017 0.86081898 0.74930102 0.86245799\n\t\t 0.74930102 0.86245799 0.73188502 0.82389998 0.736507 0.82126403 0.72604501 0.826554\n\t\t 0.73188502 0.82389998 0.74930102 0.86245799 0.74930102 0.86245799 0.743532 0.86421299\n\t\t 0.72604501 0.826554 0.71943301 0.82920498 0.72604501 0.826554 0.743532 0.86421299\n\t\t 0.743532 0.86421299 0.737041 0.86604798 0.71943301 0.82920498 0.758241 0.85911697\n\t\t 0.76692402 0.85495502 0.78192902 0.89236403 0.786053 0.88967597 0.78192902 0.89236403\n\t\t 0.76692402 0.85495502 0.76692402 0.85495502 0.77097797 0.85267597 0.786053 0.88967597\n\t\t 0.77097797 0.85267597 0.76692402 0.85495502 0.74895102 0.81383801 0.786053 0.88967597\n\t\t 0.77097797 0.85267597 0.77471602 0.85050201 0.77471602 0.85050201 0.78999501 0.887209\n\t\t 0.786053 0.88967597 0.78192902 0.89236403 0.77360201 0.89750803 0.758241 0.85911697\n\t\t 0.754017 0.86081898 0.758241 0.85911697 0.77360201 0.89750803 0.78282601 0.92086798\n\t\t 0.77360201 0.89750803 0.78192902 0.89236403 0.78192902 0.89236403 0.79089099 0.914621\n\t\t 0.78282601 0.92086798 0.76952702 0.89951402 0.77360201 0.89750803 0.78282601 0.92086798\n\t\t 0.77360201 0.89750803 0.76952702 0.89951402 0.754017 0.86081898 0.78282601 0.92086798\n\t\t 0.778808 0.92331302 0.76952702 0.89951402 0.76952702 0.89951402 0.778808 0.92331302\n\t\t 0.77425599 0.925381 0.77425599 0.925381 0.764952 0.90129602 0.76952702 0.89951402\n\t\t 0.75941199 0.90303999 0.764952 0.90129602 0.77425599 0.925381 0.764952 0.90129602\n\t\t 0.75941199 0.90303999 0.743532 0.86421299 0.737041 0.86604798 0.743532 0.86421299\n\t\t 0.75941199 0.90303999 0.77425599 0.925381 0.76876801 0.92721599 0.75941199 0.90303999\n\t\t 0.75321901 0.90486002 0.75941199 0.90303999 0.76876801 0.92721599 0.75941199 0.90303999\n\t\t 0.75321901 0.90486002 0.737041 0.86604798 0.76876801 0.92721599 0.76265502 0.92902601\n\t\t 0.75321901 0.90486002 0.754017 0.86081898 0.76952702 0.89951402 0.764952 0.90129602\n\t\t 0.764952 0.90129602 0.74930102 0.86245799 0.754017 0.86081898 0.743532 0.86421299\n\t\t 0.74930102 0.86245799 0.764952 0.90129602 0.793262 0.88526201 0.78999501 0.887209\n\t\t 0.77471602 0.85050201 0.798841 0.90881902 0.78999501 0.887209 0.793262 0.88526201\n\t\t 0.793262 0.88526201 0.80206698 0.90672398 0.798841 0.90881902 0.80518299 0.90490401\n\t\t 0.80206698 0.90672398 0.793262 0.88526201 0.793262 0.88526201 0.79715002 0.88535398\n\t\t 0.80518299 0.90490401 0.79715002 0.88535398 0.793262 0.88526201 0.77764899 0.84881198\n\t\t 0.77471602 0.85050201 0.77764899 0.84881198 0.793262 0.88526201 0.75785202 0.80897403\n\t\t 0.77764899 0.84881198 0.77471602 0.85050201 0.78039402 0.84726799 0.77764899 0.84881198\n\t\t 0.75785202 0.80897403 0.77764899 0.84881198 0.78039402 0.84726799 0.79715002 0.88535398\n\t\t 0.75785202 0.80897403 0.75787097 0.80440801 0.78039402 0.84726799 0.75305098 0.79684001\n\t\t 0.75787097 0.80440801 0.75785202 0.80897403 0.75785202 0.80897403 0.75098002 0.79805398\n\t\t 0.75305098 0.79684001 0.75098002 0.79805398 0.75785202 0.80897403 0.755557 0.81027597\n\t\t 0.77471602 0.85050201 0.755557 0.81027597 0.75785202 0.80897403 0.755557 0.81027597\n\t\t 0.74869901 0.79929203 0.75098002 0.79805398 0.75098002 0.79805398;\n\tsetAttr \".uvst[0].uvsp[1000:1249]\" 0.73797798 0.77944797 0.75305098 0.79684001\n\t\t 0.73797798 0.77944797 0.75098002 0.79805398 0.74869901 0.79929203 0.786053 0.88967597\n\t\t 0.78999501 0.887209 0.798841 0.90881902 0.798841 0.90881902 0.79494202 0.911538 0.786053\n\t\t 0.88967597 0.78192902 0.89236403 0.786053 0.88967597 0.79494202 0.911538 0.79494202\n\t\t 0.911538 0.79089099 0.914621 0.78192902 0.89236403 0.74580902 0.800807 0.74869901\n\t\t 0.79929203 0.755557 0.81027597 0.755557 0.81027597 0.75252301 0.81188899 0.74580902\n\t\t 0.800807 0.75252301 0.81188899 0.755557 0.81027597 0.77471602 0.85050201 0.77471602\n\t\t 0.85050201 0.77097797 0.85267597 0.75252301 0.81188899 0.74895102 0.81383801 0.75252301\n\t\t 0.81188899 0.77097797 0.85267597 0.74243897 0.802616 0.74580902 0.800807 0.75252301\n\t\t 0.81188899 0.75252301 0.81188899 0.74895102 0.81383801 0.74243897 0.802616 0.74869901\n\t\t 0.79929203 0.73386598 0.77551401 0.73797798 0.77944797 0.65584201 0.686418 0.658198\n\t\t 0.67971599 0.69041097 0.68968803 0.69041097 0.68968803 0.68895 0.69676602 0.65584201\n\t\t 0.686418 0.65584201 0.686418 0.68895 0.69676602 0.68752301 0.703264 0.68752301 0.703264\n\t\t 0.65374202 0.69302398 0.65584201 0.686418 0.65218902 0.70011097 0.65374202 0.69302398\n\t\t 0.68752301 0.703264 0.68752301 0.703264 0.68613601 0.70950502 0.65218902 0.70011097\n\t\t 0.65218902 0.70011097 0.68613601 0.70950502 0.68469 0.71574497 0.68469 0.71574497\n\t\t 0.65119398 0.70758498 0.65218902 0.70011097 0.650666 0.71549499 0.65119398 0.70758498\n\t\t 0.68469 0.71574497 0.68469 0.71574497 0.68303001 0.72232002 0.650666 0.71549499 0.650666\n\t\t 0.71549499 0.68303001 0.72232002 0.68101698 0.72927302 0.68101698 0.72927302 0.65031898\n\t\t 0.72346699 0.650666 0.71549499 0.64950198 0.73832703 0.65031898 0.72346699 0.68101698\n\t\t 0.72927302 0.68101698 0.72927302 0.67577797 0.74337798 0.64950198 0.73832703 0.68895\n\t\t 0.69676602 0.69041097 0.68968803 0.72276199 0.700625 0.72276199 0.700625 0.720357\n\t\t 0.70786202 0.68895 0.69676602 0.718135 0.71444798 0.68752301 0.703264 0.68895 0.69676602\n\t\t 0.68895 0.69676602 0.720357 0.70786202 0.718135 0.71444798 0.68613601 0.70950502\n\t\t 0.68752301 0.703264 0.718135 0.71444798 0.718135 0.71444798 0.71609098 0.72041798\n\t\t 0.68613601 0.70950502 0.71408898 0.72621202 0.68469 0.71574497 0.68613601 0.70950502\n\t\t 0.68613601 0.70950502 0.71609098 0.72041798 0.71408898 0.72621202 0.68303001 0.72232002\n\t\t 0.68469 0.71574497 0.71408898 0.72621202 0.71408898 0.72621202 0.71185201 0.73260999\n\t\t 0.68303001 0.72232002 0.70931602 0.73957598 0.68101698 0.72927302 0.68303001 0.72232002\n\t\t 0.68303001 0.72232002 0.71185201 0.73260999 0.70931602 0.73957598 0.67577797 0.74337798\n\t\t 0.68101698 0.72927302 0.70931602 0.73957598 0.70931602 0.73957598 0.70468599 0.75439602\n\t\t 0.67577797 0.74337798 0.720357 0.70786202 0.72276199 0.700625 0.73556101 0.706011\n\t\t 0.73556101 0.706011 0.73258603 0.71310401 0.720357 0.70786202 0.718135 0.71444798\n\t\t 0.720357 0.70786202 0.73258603 0.71310401 0.73258603 0.71310401 0.73556101 0.706011\n\t\t 0.747383 0.71138102 0.747383 0.71138102 0.74387503 0.718247 0.73258603 0.71310401\n\t\t 0.74387503 0.718247 0.747383 0.71138102 0.75997502 0.71738702 0.75997502 0.71738702\n\t\t 0.75597203 0.72399002 0.74387503 0.718247 0.75597203 0.72399002 0.75997502 0.71738702\n\t\t 0.78422898 0.730398 0.78422898 0.730398 0.779324 0.73641402 0.75597203 0.72399002\n\t\t 0.740668 0.724572 0.74387503 0.718247 0.75597203 0.72399002 0.75597203 0.72399002\n\t\t 0.752303 0.73013401 0.740668 0.724572 0.752303 0.73013401 0.75597203 0.72399002 0.779324\n\t\t 0.73641402 0.779324 0.73641402 0.77481902 0.74211597 0.752303 0.73013401 0.748923\n\t\t 0.73612499 0.752303 0.73013401 0.77481902 0.74211597 0.77481902 0.74211597 0.770621\n\t\t 0.74796402 0.748923 0.73612499 0.752303 0.73013401 0.748923 0.73612499 0.73774999\n\t\t 0.73053098 0.73774999 0.73053098 0.740668 0.724572 0.752303 0.73013401 0.735147 0.73638099\n\t\t 0.73774999 0.73053098 0.748923 0.73612499 0.748923 0.73612499 0.74593699 0.742176\n\t\t 0.735147 0.73638099 0.74593699 0.742176 0.748923 0.73612499 0.770621 0.74796402 0.770621\n\t\t 0.74796402 0.76702797 0.75399101 0.74593699 0.742176 0.74315798 0.74918902 0.74593699\n\t\t 0.742176 0.76702797 0.75399101 0.76702797 0.75399101 0.76373202 0.76112998 0.74315798\n\t\t 0.74918902 0.74593699 0.742176 0.74315798 0.74918902 0.732737 0.74271899 0.732737\n\t\t 0.74271899 0.735147 0.73638099 0.74593699 0.742176 0.72993797 0.74950999 0.732737\n\t\t 0.74271899 0.74315798 0.74918902 0.74315798 0.74918902 0.73968101 0.75602502 0.72993797\n\t\t 0.74950999 0.76373202 0.76112998 0.73968101 0.75602502 0.74315798 0.74918902 0.76373202\n\t\t 0.76112998 0.75130099 0.76655197 0.73968101 0.75602502 0.76373202 0.76112998 0.76023698\n\t\t 0.76959997 0.75130099 0.76655197 0.740668 0.724572 0.73774999 0.73053098 0.727395\n\t\t 0.72549301 0.72511703 0.73123902 0.727395 0.72549301 0.73774999 0.73053098 0.73774999\n\t\t 0.73053098 0.735147 0.73638099 0.72511703 0.73123902 0.727395 0.72549301 0.72511703\n\t\t 0.73123902 0.71408898 0.72621202 0.71408898 0.72621202 0.71609098 0.72041798 0.727395\n\t\t 0.72549301 0.72986299 0.719576 0.727395 0.72549301 0.71609098 0.72041798 0.727395\n\t\t 0.72549301 0.72986299 0.719576 0.740668 0.724572 0.74387503 0.718247 0.740668 0.724572\n\t\t 0.72986299 0.719576 0.72986299 0.719576 0.73258603 0.71310401 0.74387503 0.718247\n\t\t 0.73258603 0.71310401 0.72986299 0.719576 0.718135 0.71444798 0.71609098 0.72041798\n\t\t 0.718135 0.71444798 0.72986299 0.719576 0.71185201 0.73260999 0.71408898 0.72621202;\n\tsetAttr \".uvst[0].uvsp[1250:1499]\" 0.72511703 0.73123902 0.72511703 0.73123902\n\t\t 0.72282302 0.73750103 0.71185201 0.73260999 0.735147 0.73638099 0.732737 0.74271899\n\t\t 0.72282302 0.73750103 0.72282302 0.73750103 0.72511703 0.73123902 0.735147 0.73638099\n\t\t 0.70931602 0.73957598 0.71185201 0.73260999 0.72282302 0.73750103 0.72282302 0.73750103\n\t\t 0.72025597 0.74436897 0.70931602 0.73957598 0.72025597 0.74436897 0.72282302 0.73750103\n\t\t 0.732737 0.74271899 0.732737 0.74271899 0.72993797 0.74950999 0.72025597 0.74436897\n\t\t 0.71394902 0.75905597 0.72025597 0.74436897 0.72993797 0.74950999 0.72993797 0.74950999\n\t\t 0.72291303 0.76353902 0.71394902 0.75905597 0.72025597 0.74436897 0.71394902 0.75905597\n\t\t 0.70468599 0.75439602 0.70468599 0.75439602 0.70931602 0.73957598 0.72025597 0.74436897\n\t\t 0.72927499 0.76345903 0.72291303 0.76353902 0.72993797 0.74950999 0.72993797 0.74950999\n\t\t 0.73968101 0.75602502 0.72927499 0.76345903 0.72927499 0.76345903 0.73968101 0.75602502\n\t\t 0.75130099 0.76655197 0.87712097 0.751674 0.87129903 0.74586803 0.891792 0.71633798\n\t\t 0.891792 0.71633798 0.89752901 0.72206402 0.87712097 0.751674 0.87712097 0.751674\n\t\t 0.89752901 0.72206402 0.90286702 0.72729301 0.90286702 0.72729301 0.88252699 0.75703698\n\t\t 0.87712097 0.751674 0.88792098 0.76201099 0.88252699 0.75703698 0.90286702 0.72729301\n\t\t 0.90286702 0.72729301 0.90804398 0.73217899 0.88792098 0.76201099 0.88792098 0.76201099\n\t\t 0.90804398 0.73217899 0.91332603 0.73685497 0.91332603 0.73685497 0.89355302 0.76656502\n\t\t 0.88792098 0.76201099 0.89967501 0.77072698 0.89355302 0.76656502 0.91332603 0.73685497\n\t\t 0.91332603 0.73685497 0.91921002 0.74133801 0.89967501 0.77072698 0.89967501 0.77072698\n\t\t 0.91921002 0.74133801 0.925385 0.74544698 0.925385 0.74544698 0.90535402 0.77438903\n\t\t 0.89967501 0.77072698 0.91239899 0.77969998 0.90535402 0.77438903 0.925385 0.74544698\n\t\t 0.925385 0.74544698 0.93699098 0.75178099 0.91239899 0.77969998 0.91805702 0.782637\n\t\t 0.91239899 0.77969998 0.93699098 0.75178099 0.93699098 0.75178099 0.94062102 0.758986\n\t\t 0.91805702 0.782637 0.92219198 0.78398299 0.91805702 0.782637 0.94062102 0.758986\n\t\t 0.94062102 0.758986 0.94390601 0.76179099 0.92219198 0.78398299 0.92219198 0.78398299\n\t\t 0.94390601 0.76179099 0.94814402 0.76462102 0.94814402 0.76462102 0.92685002 0.78554797\n\t\t 0.92219198 0.78398299 0.88792098 0.76201099 0.89355302 0.76656502 0.88683897 0.77703702\n\t\t 0.89355302 0.76656502 0.89967501 0.77072698 0.89301002 0.78116399 0.89301002 0.78116399\n\t\t 0.88683897 0.77703702 0.89355302 0.76656502 0.88683897 0.77703702 0.89301002 0.78116399\n\t\t 0.88791603 0.78913403 0.88791603 0.78913403 0.881688 0.78491598 0.88683897 0.77703702\n\t\t 0.88114101 0.77245098 0.88683897 0.77703702 0.881688 0.78491598 0.881688 0.78491598\n\t\t 0.87595499 0.78020197 0.88114101 0.77245098 0.87567699 0.76740801 0.88114101 0.77245098\n\t\t 0.87595499 0.78020197 0.88114101 0.77245098 0.87567699 0.76740801 0.88252699 0.75703698\n\t\t 0.87712097 0.751674 0.88252699 0.75703698 0.87567699 0.76740801 0.87567699 0.76740801\n\t\t 0.87024403 0.76201499 0.87712097 0.751674 0.87129903 0.74586803 0.87712097 0.751674\n\t\t 0.87024403 0.76201499 0.87024403 0.76201499 0.86438298 0.756226 0.87129903 0.74586803\n\t\t 0.86438298 0.756226 0.87024403 0.76201499 0.86508203 0.76956803 0.86508203 0.76956803\n\t\t 0.85924298 0.76371598 0.86438298 0.756226 0.87049901 0.775051 0.86508203 0.76956803\n\t\t 0.87024403 0.76201499 0.87024403 0.76201499 0.87567699 0.76740801 0.87049901 0.775051\n\t\t 0.87595499 0.78020197 0.87049901 0.775051 0.87567699 0.76740801 0.88252699 0.75703698\n\t\t 0.88792098 0.76201099 0.88114101 0.77245098 0.88683897 0.77703702 0.88114101 0.77245098\n\t\t 0.88792098 0.76201099 0.89208603 0.791682 0.88791603 0.78913403 0.89301002 0.78116399\n\t\t 0.89301002 0.78116399 0.89798301 0.78530902 0.89208603 0.791682 0.88724399 0.80595201\n\t\t 0.89208603 0.791682 0.89798301 0.78530902 0.89798301 0.78530902 0.89910102 0.79362899\n\t\t 0.88724399 0.80595201 0.90455699 0.797185 0.88724399 0.80595201 0.89910102 0.79362899\n\t\t 0.89910102 0.79362899 0.90924299 0.79165 0.90455699 0.797185 0.90924299 0.79165 0.89910102\n\t\t 0.79362899 0.91239899 0.77969998 0.91239899 0.77969998 0.91805702 0.782637 0.90924299\n\t\t 0.79165 0.91428 0.79220098 0.90924299 0.79165 0.91805702 0.782637 0.91805702 0.782637\n\t\t 0.92219198 0.78398299 0.91428 0.79220098 0.90924299 0.79165 0.91428 0.79220098 0.90754598\n\t\t 0.79882401 0.90754598 0.79882401 0.90455699 0.797185 0.90924299 0.79165 0.91276598\n\t\t 0.80048501 0.90754598 0.79882401 0.91428 0.79220098 0.91428 0.79220098 0.919168 0.79361701\n\t\t 0.91276598 0.80048501 0.919168 0.79361701 0.91428 0.79220098 0.92219198 0.78398299\n\t\t 0.92219198 0.78398299 0.92685002 0.78554797 0.919168 0.79361701 0.90535402 0.77438903\n\t\t 0.91239899 0.77969998 0.89910102 0.79362899 0.89910102 0.79362899 0.89798301 0.78530902\n\t\t 0.90535402 0.77438903 0.89967501 0.77072698 0.90535402 0.77438903 0.89798301 0.78530902\n\t\t 0.89798301 0.78530902 0.89301002 0.78116399 0.89967501 0.77072698 0.89473999 0.80930901\n\t\t 0.88724399 0.80595201 0.90455699 0.797185 0.90455699 0.797185 0.90754598 0.79882401\n\t\t 0.89473999 0.80930901 0.89473999 0.80930901 0.90754598 0.79882401 0.91276598 0.80048501\n\t\t 0.91276598 0.80048501 0.90114403 0.812114 0.89473999 0.80930901 0.90628302 0.81466299\n\t\t 0.90114403 0.812114 0.91276598 0.80048501 0.91276598 0.80048501 0.91789699 0.80294102\n\t\t 0.90628302 0.81466299 0.91789699 0.80294102 0.91276598 0.80048501 0.919168 0.79361701\n\t\t 0.91123998 0.81746298 0.90628302 0.81466299 0.91789699 0.80294102 0.91789699 0.80294102\n\t\t 0.92321098 0.80601799 0.91123998 0.81746298;\n\tsetAttr \".uvst[0].uvsp[1500:1749]\" 0.92425799 0.79599297 0.919168 0.79361701\n\t\t 0.92685002 0.78554797 0.919168 0.79361701 0.92425799 0.79599297 0.91789699 0.80294102\n\t\t 0.92321098 0.80601799 0.91789699 0.80294102 0.92425799 0.79599297 0.92685002 0.78554797\n\t\t 0.93194801 0.78809297 0.92425799 0.79599297 0.93194801 0.78809297 0.92685002 0.78554797\n\t\t 0.94814402 0.76462102 0.94814402 0.76462102 0.95362401 0.76858997 0.93194801 0.78809297\n\t\t 0.95362401 0.76858997 0.94814402 0.76462102 0.96746999 0.74599802 0.96746999 0.74599802\n\t\t 0.94814402 0.76462102 0.94390601 0.76179099 0.94390601 0.76179099 0.963507 0.742558\n\t\t 0.96746999 0.74599802 0.96025699 0.73934603 0.963507 0.742558 0.94390601 0.76179099\n\t\t 0.94390601 0.76179099 0.94062102 0.758986 0.96025699 0.73934603 0.95528698 0.73331398\n\t\t 0.96025699 0.73934603 0.94062102 0.758986 0.94062102 0.758986 0.93699098 0.75178099\n\t\t 0.95528698 0.73331398 0.95528698 0.73331398 0.93699098 0.75178099 0.925385 0.74544698\n\t\t 0.925385 0.74544698 0.94436598 0.72333997 0.95528698 0.73331398 0.94436598 0.72333997\n\t\t 0.925385 0.74544698 0.91921002 0.74133801 0.91921002 0.74133801 0.93821698 0.71844602\n\t\t 0.94436598 0.72333997 0.93193197 0.71383601 0.93821698 0.71844602 0.91921002 0.74133801\n\t\t 0.91921002 0.74133801 0.91332603 0.73685497 0.93193197 0.71383601 0.93193197 0.71383601\n\t\t 0.91332603 0.73685497 0.90804398 0.73217899 0.90804398 0.73217899 0.92576897 0.70965701\n\t\t 0.93193197 0.71383601 0.91958201 0.70582598 0.92576897 0.70965701 0.90804398 0.73217899\n\t\t 0.90804398 0.73217899 0.90286702 0.72729301 0.91958201 0.70582598 0.91958201 0.70582598\n\t\t 0.90286702 0.72729301 0.89752901 0.72206402 0.89752901 0.72206402 0.91357797 0.70224398\n\t\t 0.91958201 0.70582598 0.90739501 0.69851798 0.91357797 0.70224398 0.89752901 0.72206402\n\t\t 0.89752901 0.72206402 0.891792 0.71633798 0.90739501 0.69851798 0.36241001 0.44191\n\t\t 0.36680901 0.44849899 0.36453 0.449857 0.36453 0.449857 0.360156 0.443398 0.36241001\n\t\t 0.44191 0.36241001 0.44191 0.360156 0.443398 0.35595599 0.437794 0.35595599 0.437794\n\t\t 0.35802701 0.43600401 0.36241001 0.44191 0.35308799 0.43110499 0.35802701 0.43600401\n\t\t 0.35595599 0.437794 0.35595599 0.437794 0.35148999 0.433348 0.35308799 0.43110499\n\t\t 0.35308799 0.43110499 0.35148999 0.433348 0.34633401 0.43046001 0.34633401 0.43046001\n\t\t 0.34706199 0.42780301 0.35308799 0.43110499 0.340094 0.426981 0.34706199 0.42780301\n\t\t 0.34633401 0.43046001 0.34633401 0.43046001 0.340523 0.429699 0.340094 0.426981 0.340094\n\t\t 0.426981 0.340523 0.429699 0.33470401 0.431575 0.33470401 0.431575 0.333202 0.42925701\n\t\t 0.340094 0.426981 0.32758099 0.434082 0.333202 0.42925701 0.33470401 0.431575 0.33470401\n\t\t 0.431575 0.32975399 0.43580201 0.32758099 0.434082 0.32758099 0.434082 0.32975399\n\t\t 0.43580201 0.32630301 0.440952 0.32630301 0.440952 0.32384399 0.439684 0.32758099\n\t\t 0.434082 0.321646 0.44448099 0.32384399 0.439684 0.32630301 0.440952 0.32630301 0.440952\n\t\t 0.32420599 0.44552401 0.321646 0.44448099 0.321646 0.44448099 0.32420599 0.44552401\n\t\t 0.32242 0.45012301 0.32242 0.45012301 0.319828 0.44916001 0.321646 0.44448099 0.67577797\n\t\t 0.74337798 0.67268401 0.75403303 0.64778 0.74552399 0.64778 0.74552399 0.64967299\n\t\t 0.73757398 0.67577797 0.74337798 0.64719099 0.74952102 0.64778 0.74552399 0.67268401\n\t\t 0.75403303 0.67268401 0.75403303 0.67102098 0.75906497 0.64719099 0.74952102 0.64719099\n\t\t 0.74952102 0.67102098 0.75906497 0.66927898 0.76396 0.66927898 0.76396 0.64654398\n\t\t 0.75409198 0.64719099 0.74952102 0.64537102 0.76081002 0.64654398 0.75409198 0.66927898\n\t\t 0.76396 0.66927898 0.76396 0.66754401 0.77038401 0.64537102 0.76081002 0.64388198\n\t\t 0.768709 0.64537102 0.76081002 0.66754401 0.77038401 0.66754401 0.77038401 0.66571498\n\t\t 0.77801001 0.96746999 0.74599802 0.97310603 0.75043499 0.95362401 0.76858997 0.95999599\n\t\t 0.77338398 0.95362401 0.76858997 0.97310603 0.75043499 0.97310603 0.75043499 0.97957802\n\t\t 0.75534803 0.95999599 0.77338398 0.95362401 0.76858997 0.95999599 0.77338398 0.93750799\n\t\t 0.79137301 0.93750799 0.79137301 0.93194801 0.78809297 0.95362401 0.76858997 0.93194801\n\t\t 0.78809297 0.93750799 0.79137301 0.92966503 0.79906499 0.92966503 0.79906499 0.92425799\n\t\t 0.79599297 0.93194801 0.78809297 0.92425799 0.79599297 0.92966503 0.79906499 0.92321098\n\t\t 0.80601799 0.36131099 0.43537301 0.35639799 0.428426 0.360742 0.42539999 0.360742\n\t\t 0.42539999 0.36569101 0.43243301 0.36131099 0.43537301 0.36569101 0.43243301 0.360742\n\t\t 0.42539999 0.36308599 0.42376101 0.36308599 0.42376101 0.36771801 0.43074399 0.36569101\n\t\t 0.43243301 0.37026501 0.42819199 0.36771801 0.43074399 0.36308599 0.42376101 0.36771801\n\t\t 0.43074399 0.37026501 0.42819199 0.37476 0.43420601 0.37476 0.43420601 0.37238601\n\t\t 0.43692899 0.36771801 0.43074399 0.37238601 0.43692899 0.37476 0.43420601 0.37990099\n\t\t 0.439199 0.37990099 0.439199 0.37773299 0.44216001 0.37238601 0.43692899 0.37773299\n\t\t 0.44216001 0.37990099 0.439199 0.385526 0.44341201 0.385526 0.44341201 0.383551 0.44662201\n\t\t 0.37773299 0.44216001 0.383551 0.44662201 0.385526 0.44341201 0.39164799 0.44689301\n\t\t 0.39164799 0.44689301 0.38996899 0.45029199 0.383551 0.44662201 0.38996899 0.45029199\n\t\t 0.39164799 0.44689301 0.398359 0.44951299 0.398359 0.44951299 0.39715201 0.45304301\n\t\t 0.38996899 0.45029199 0.39715201 0.45304301 0.398359 0.44951299 0.40557599 0.451269\n\t\t 0.40557599 0.451269 0.40497601 0.45485601 0.39715201 0.45304301 0.40497601 0.45485601\n\t\t 0.40557599 0.451269 0.412384 0.45220301 0.412384 0.45220301 0.41238299 0.45585099;\n\tsetAttr \".uvst[0].uvsp[1750:1999]\" 0.40497601 0.45485601 0.41238299 0.45585099\n\t\t 0.412384 0.45220301 0.41780701 0.45176199 0.41780701 0.45176199 0.418246 0.45545501\n\t\t 0.41238299 0.45585099 0.418246 0.45545501 0.41780701 0.45176199 0.422685 0.45049301\n\t\t 0.422685 0.45049301 0.423729 0.45421699 0.418246 0.45545501 0.418246 0.45545501 0.423729\n\t\t 0.45421699 0.42436999 0.45724699 0.42436999 0.45724699 0.41855401 0.45811799 0.418246\n\t\t 0.45545501 0.41855401 0.45811799 0.42436999 0.45724699 0.42482299 0.46276301 0.41910899\n\t\t 0.46340701 0.41855401 0.45811799 0.41241401 0.45843899 0.41238299 0.45585099 0.418246\n\t\t 0.45545501 0.418246 0.45545501 0.41855401 0.45811799 0.41241401 0.45843899 0.40497601\n\t\t 0.45485601 0.41238299 0.45585099 0.41241401 0.45843899 0.41241401 0.45843899 0.41855401\n\t\t 0.45811799 0.418782 0.46344101 0.418782 0.46344101 0.41256899 0.463696 0.41241401\n\t\t 0.45843899 0.41241401 0.45843899 0.40461901 0.457526 0.40497601 0.45485601 0.404163\n\t\t 0.462899 0.40461901 0.457526 0.41241401 0.45843899 0.41241401 0.45843899 0.412081\n\t\t 0.46369499 0.404163 0.462899 0.396415 0.455623 0.40461901 0.457526 0.40382099 0.462861\n\t\t 0.40382099 0.462861 0.395441 0.46095499 0.396415 0.455623 0.40497601 0.45485601 0.40461901\n\t\t 0.457526 0.396415 0.455623 0.396415 0.455623 0.39715201 0.45304301 0.40497601 0.45485601\n\t\t 0.38996899 0.45029199 0.39715201 0.45304301 0.396415 0.455623 0.396415 0.455623 0.38891301\n\t\t 0.45273501 0.38996899 0.45029199 0.387187 0.457885 0.38891301 0.45273501 0.396415\n\t\t 0.455623 0.396415 0.455623 0.39497399 0.46085599 0.387187 0.457885 0.38996899 0.45029199\n\t\t 0.38891301 0.45273501 0.38218501 0.44893 0.38218501 0.44893 0.38891301 0.45273501\n\t\t 0.38672799 0.45771301 0.38672799 0.45771301 0.37968501 0.45373401 0.38218501 0.44893\n\t\t 0.38218501 0.44893 0.383551 0.44662201 0.38996899 0.45029199 0.37773299 0.44216001\n\t\t 0.383551 0.44662201 0.38218501 0.44893 0.38218501 0.44893 0.37610701 0.44422999 0.37773299\n\t\t 0.44216001 0.37284201 0.448513 0.37610701 0.44422999 0.38218501 0.44893 0.38218501\n\t\t 0.44893 0.37918201 0.45343399 0.37284201 0.448513 0.37773299 0.44216001 0.37610701\n\t\t 0.44422999 0.37057501 0.43873101 0.37057501 0.43873101 0.37610701 0.44422999 0.37245601\n\t\t 0.448176 0.37245601 0.448176 0.36677799 0.44241399 0.37057501 0.43873101 0.37057501\n\t\t 0.43873101 0.37238601 0.43692899 0.37773299 0.44216001 0.36771801 0.43074399 0.37238601\n\t\t 0.43692899 0.37057501 0.43873101 0.37057501 0.43873101 0.36569101 0.43243301 0.36771801\n\t\t 0.43074399 0.36143801 0.435572 0.36569101 0.43243301 0.37057501 0.43873101 0.37057501\n\t\t 0.43873101 0.36644 0.442004 0.36143801 0.435572 0.362984 0.41592801 0.361415 0.41247901\n\t\t 0.36860001 0.40933701 0.36860001 0.40933701 0.369436 0.41291001 0.362984 0.41592801\n\t\t 0.361415 0.41247901 0.362984 0.41592801 0.356525 0.42022699 0.356525 0.42022699 0.35431299\n\t\t 0.41702399 0.361415 0.41247901 0.369436 0.41291001 0.36860001 0.40933701 0.376187\n\t\t 0.40882099 0.376187 0.40882099 0.376059 0.41232899 0.369436 0.41291001 0.376059 0.41232899\n\t\t 0.376187 0.40882099 0.383425 0.41059601 0.383425 0.41059601 0.38234299 0.41385001\n\t\t 0.376059 0.41232899 0.38234299 0.41385001 0.383425 0.41059601 0.38973701 0.414626\n\t\t 0.38973701 0.414626 0.38786 0.417364 0.38234299 0.41385001 0.38786 0.417364 0.38973701\n\t\t 0.414626 0.394945 0.42039901 0.394945 0.42039901 0.39239901 0.422391 0.38786 0.417364\n\t\t 0.39239901 0.422391 0.394945 0.42039901 0.39860901 0.42765799 0.39860901 0.42765799\n\t\t 0.395551 0.42863399 0.39239901 0.422391 0.395551 0.42863399 0.39860901 0.42765799\n\t\t 0.40051499 0.43499899 0.40051499 0.43499899 0.39711499 0.434894 0.395551 0.42863399\n\t\t 0.39711499 0.434894 0.40051499 0.43499899 0.400105 0.44094899 0.400105 0.44094899\n\t\t 0.39662799 0.43997201 0.39711499 0.434894 0.39662799 0.43997201 0.400105 0.44094899\n\t\t 0.39845899 0.446374 0.39845899 0.446374 0.39505899 0.44461599 0.39662799 0.43997201\n\t\t 0.85536897 0.784109 0.84981298 0.77785802 0.85173303 0.77495801 0.85173303 0.77495801\n\t\t 0.85741699 0.78103602 0.85536897 0.784109 0.85536897 0.784109 0.85741699 0.78103602\n\t\t 0.86271298 0.786744 0.86271298 0.786744 0.86053997 0.790003 0.85536897 0.784109 0.86581302\n\t\t 0.795623 0.86053997 0.790003 0.86271298 0.786744 0.86271298 0.786744 0.86809301 0.79213798\n\t\t 0.86581302 0.795623 0.86581302 0.795623 0.86809301 0.79213798 0.873842 0.79699802\n\t\t 0.873842 0.79699802 0.87148798 0.80066299 0.86581302 0.795623 0.87763202 0.80512202\n\t\t 0.87148798 0.80066299 0.873842 0.79699802 0.873842 0.79699802 0.88001603 0.80139899\n\t\t 0.87763202 0.80512202 0.87763202 0.80512202 0.88001603 0.80139899 0.88724399 0.80595201\n\t\t 0.88724399 0.80595201 0.88442099 0.80918097 0.87763202 0.80512202 0.89188099 0.81279999\n\t\t 0.88442099 0.80918097 0.88724399 0.80595201 0.88724399 0.80595201 0.89473999 0.80930901\n\t\t 0.89188099 0.81279999 0.89188099 0.81279999 0.89473999 0.80930901 0.90114403 0.812114\n\t\t 0.90114403 0.812114 0.89892399 0.81596398 0.89188099 0.81279999 0.90440798 0.81848699\n\t\t 0.89892399 0.81596398 0.90114403 0.812114 0.90114403 0.812114 0.90628302 0.81466299\n\t\t 0.90440798 0.81848699 0.90440798 0.81848699 0.90628302 0.81466299 0.91123998 0.81746298\n\t\t 0.91123998 0.81746298 0.90946698 0.82100099 0.90440798 0.81848699 0.881688 0.78491598\n\t\t 0.873842 0.79699802 0.86809301 0.79213798 0.88001603 0.80139899 0.873842 0.79699802\n\t\t 0.881688 0.78491598 0.86809301 0.79213798 0.87595499 0.78020197 0.881688 0.78491598\n\t\t 0.881688 0.78491598;\n\tsetAttr \".uvst[0].uvsp[2000:2249]\" 0.88791603 0.78913403 0.88001603 0.80139899\n\t\t 0.88724399 0.80595201 0.88001603 0.80139899 0.88791603 0.78913403 0.88791603 0.78913403\n\t\t 0.89208603 0.791682 0.88724399 0.80595201 0.87049901 0.775051 0.87595499 0.78020197\n\t\t 0.86809301 0.79213798 0.86809301 0.79213798 0.86271298 0.786744 0.87049901 0.775051\n\t\t 0.87049901 0.775051 0.86271298 0.786744 0.85741699 0.78103602 0.85741699 0.78103602\n\t\t 0.86508203 0.76956803 0.87049901 0.775051 0.85924298 0.76371598 0.86508203 0.76956803\n\t\t 0.85741699 0.78103602 0.85741699 0.78103602 0.85173303 0.77495801 0.85924298 0.76371598\n\t\t 0.012627 0.42740601 0.0035079999 0.42737299 0.00333 0.40049401 0.00333 0.40049401\n\t\t 0.012461 0.400047 0.012627 0.42740601 0.012627 0.42740601 0.012461 0.400047 0.020988001\n\t\t 0.39975199 0.020988001 0.39975199 0.021129999 0.42756599 0.012627 0.42740601 0.029423\n\t\t 0.42797601 0.021129999 0.42756599 0.020988001 0.39975199 0.020988001 0.39975199 0.029300001\n\t\t 0.39974999 0.029423 0.42797601 0.029423 0.42797601 0.029300001 0.39974999 0.037473999\n\t\t 0.400006 0.037473999 0.400006 0.039730001 0.432583 0.029423 0.42797601 0.046257 0.43193501\n\t\t 0.039730001 0.432583 0.037473999 0.400006 0.037473999 0.400006 0.045669001 0.40037701\n\t\t 0.046257 0.43193501 0.046257 0.43193501 0.045669001 0.40037701 0.054193001 0.40086401\n\t\t 0.054193001 0.40086401 0.054788999 0.43236101 0.046257 0.43193501 0.063669004 0.43262401\n\t\t 0.054788999 0.43236101 0.054193001 0.40086401 0.054193001 0.40086401 0.063068002\n\t\t 0.40139499 0.063669004 0.43262401 0.063669004 0.43262401 0.063068002 0.40139499 0.071322002\n\t\t 0.40182 0.071322002 0.40182 0.071920998 0.43277201 0.063669004 0.43262401 0.078404002\n\t\t 0.43285999 0.071920998 0.43277201 0.071322002 0.40182 0.071322002 0.40182 0.077804998\n\t\t 0.401999 0.078404002 0.43285999 0.078404002 0.43285999 0.077804998 0.401999 0.083961003\n\t\t 0.40204599 0.083961003 0.40204599 0.084559999 0.43290699 0.078404002 0.43285999 0.029688001\n\t\t 0.438889 0.029423 0.42797601 0.039730001 0.432583 0.039730001 0.432583 0.038357999\n\t\t 0.43954301 0.029688001 0.438889 0.029423 0.42797601 0.029688001 0.438889 0.021376001\n\t\t 0.43843099 0.021376001 0.43843099 0.021129999 0.42756599 0.029423 0.42797601 0.021129999\n\t\t 0.42756599 0.021376001 0.43843099 0.012848 0.438209 0.012848 0.438209 0.012627 0.42740601\n\t\t 0.021129999 0.42756599 0.012627 0.42740601 0.012848 0.438209 0.0037209999 0.43811601\n\t\t 0.0037209999 0.43811601 0.0035079999 0.42737299 0.012627 0.42740601 0.36308599 0.42376101\n\t\t 0.36596999 0.421554 0.37026501 0.42819199 0.359732 0.33566299 0.366593 0.33644101\n\t\t 0.365859 0.34005901 0.365859 0.34005901 0.35919201 0.33956999 0.359732 0.33566299\n\t\t 0.359732 0.33566299 0.35919201 0.33956999 0.35281399 0.33902901 0.35281399 0.33902901\n\t\t 0.35325199 0.334905 0.359732 0.33566299 0.346935 0.33461899 0.35325199 0.334905 0.35281399\n\t\t 0.33902901 0.35281399 0.33902901 0.34651101 0.338651 0.346935 0.33461899 0.346935\n\t\t 0.33461899 0.34651101 0.338651 0.339993 0.33843699 0.339993 0.33843699 0.34040901\n\t\t 0.334454 0.346935 0.33461899 0.333478 0.334104 0.34040901 0.334454 0.339993 0.33843699\n\t\t 0.339993 0.33843699 0.33309501 0.338135 0.333478 0.334104 0.333478 0.334104 0.33309501\n\t\t 0.338135 0.32587701 0.33796901 0.32587701 0.33796901 0.32618999 0.333886 0.333478\n\t\t 0.334104 0.31165799 0.33372599 0.32618999 0.333886 0.32587701 0.33796901 0.32587701\n\t\t 0.33796901 0.31159201 0.33720699 0.31165799 0.33372599 0.30317199 0.332679 0.31165799\n\t\t 0.33372599 0.31159201 0.33720699 0.31159201 0.33720699 0.303029 0.33686399 0.30317199\n\t\t 0.332679 0.299413 0.33276901 0.30317199 0.332679 0.303029 0.33686399 0.303029 0.33686399\n\t\t 0.29922101 0.33697101 0.299413 0.33276901 0.299413 0.33276901 0.29922101 0.33697101\n\t\t 0.29486901 0.337437 0.29486901 0.337437 0.29506499 0.33337799 0.299413 0.33276901\n\t\t 0.28865901 0.33449 0.29506499 0.33337799 0.29486901 0.337437 0.29486901 0.337437\n\t\t 0.28842601 0.338413 0.28865901 0.33449 0.28865901 0.33449 0.28842601 0.338413 0.28096101\n\t\t 0.34001401 0.28096101 0.34001401 0.28123799 0.33602801 0.28865901 0.33449 0.35919201\n\t\t 0.33956999 0.35877299 0.34179699 0.352496 0.34129399 0.352496 0.34129399 0.35281399\n\t\t 0.33902901 0.35919201 0.33956999 0.35877299 0.34179699 0.35919201 0.33956999 0.365859\n\t\t 0.34005901 0.365859 0.34005901 0.365749 0.342235 0.35877299 0.34179699 0.35281399\n\t\t 0.33902901 0.352496 0.34129399 0.34636801 0.34085399 0.34636801 0.34085399 0.34651101\n\t\t 0.338651 0.35281399 0.33902901 0.34651101 0.338651 0.34636801 0.34085399 0.33997399\n\t\t 0.34068701 0.33997399 0.34068701 0.339993 0.33843699 0.34651101 0.338651 0.339993\n\t\t 0.33843699 0.33997399 0.34068701 0.33313301 0.340368 0.33313301 0.340368 0.33309501\n\t\t 0.338135 0.339993 0.33843699 0.33309501 0.338135 0.33313301 0.340368 0.325993 0.340287\n\t\t 0.325993 0.340287 0.32587701 0.33796901 0.33309501 0.338135 0.31159201 0.33720699\n\t\t 0.32587701 0.33796901 0.325993 0.340287 0.325993 0.340287 0.311652 0.33906499 0.31159201\n\t\t 0.33720699 0.303029 0.33686399 0.31159201 0.33720699 0.311652 0.33906499 0.311652\n\t\t 0.33906499 0.303065 0.33916199 0.303029 0.33686399 0.303029 0.33686399 0.303065 0.33916199\n\t\t 0.29948401 0.33897901 0.29948401 0.33897901 0.29922101 0.33697101 0.303029 0.33686399\n\t\t 0.29922101 0.33697101 0.29948401 0.33897901 0.29526201 0.33948001 0.29526201 0.33948001\n\t\t 0.29486901 0.337437 0.29922101 0.33697101 0.29486901 0.337437 0.29526201 0.33948001\n\t\t 0.288856 0.34043601 0.288856 0.34043601 0.28842601 0.338413;\n\tsetAttr \".uvst[0].uvsp[2250:2499]\" 0.29486901 0.337437 0.28842601 0.338413 0.288856\n\t\t 0.34043601 0.28114799 0.34245199 0.28114799 0.34245199 0.28096101 0.34001401 0.28842601\n\t\t 0.338413 0.359732 0.33566299 0.35980999 0.33343101 0.36690301 0.33428901 0.36690301\n\t\t 0.33428901 0.366593 0.33644101 0.359732 0.33566299 0.35980999 0.33343101 0.359732\n\t\t 0.33566299 0.35325199 0.334905 0.35325199 0.334905 0.35341999 0.33251801 0.35980999\n\t\t 0.33343101 0.35341999 0.33251801 0.35325199 0.334905 0.346935 0.33461899 0.346935\n\t\t 0.33461899 0.34715101 0.33240801 0.35341999 0.33251801 0.34715101 0.33240801 0.346935\n\t\t 0.33461899 0.34040901 0.334454 0.34040901 0.334454 0.34065101 0.332324 0.34715101\n\t\t 0.33240801 0.34065101 0.332324 0.34040901 0.334454 0.333478 0.334104 0.333478 0.334104\n\t\t 0.333711 0.33181599 0.34065101 0.332324 0.333711 0.33181599 0.333478 0.334104 0.32618999\n\t\t 0.333886 0.32618999 0.333886 0.32646799 0.33158901 0.333711 0.33181599 0.32646799\n\t\t 0.33158901 0.32618999 0.333886 0.31165799 0.33372599 0.31165799 0.33372599 0.31199601\n\t\t 0.331788 0.32646799 0.33158901 0.31199601 0.331788 0.31165799 0.33372599 0.30317199\n\t\t 0.332679 0.30317199 0.332679 0.30329701 0.33034801 0.31199601 0.331788 0.30329701\n\t\t 0.33034801 0.30317199 0.332679 0.299413 0.33276901 0.299413 0.33276901 0.299485 0.33060199\n\t\t 0.30329701 0.33034801 0.299485 0.33060199 0.299413 0.33276901 0.29506499 0.33337799\n\t\t 0.29506499 0.33337799 0.29502901 0.33122101 0.299485 0.33060199 0.29502901 0.33122101\n\t\t 0.29506499 0.33337799 0.28865901 0.33449 0.28865901 0.33449 0.288495 0.33230901 0.29502901\n\t\t 0.33122101 0.288495 0.33230901 0.28865901 0.33449 0.28123799 0.33602801 0.28123799\n\t\t 0.33602801 0.28064501 0.33384201 0.288495 0.33230901 0.82181799 0.757285 0.81567401\n\t\t 0.76210397 0.80227399 0.75118101 0.80227399 0.75118101 0.80801201 0.745906 0.82181799\n\t\t 0.757285 0.80801201 0.745906 0.80227399 0.75118101 0.79053402 0.74322301 0.79053402\n\t\t 0.74322301 0.79585701 0.73753297 0.80801201 0.745906 0.78565001 0.74867803 0.79053402\n\t\t 0.74322301 0.80227399 0.75118101 0.80227399 0.75118101 0.797068 0.75631398 0.78565001\n\t\t 0.74867803 0.797068 0.75631398 0.80227399 0.75118101 0.81567401 0.76210397 0.81567401\n\t\t 0.76210397 0.81016499 0.76697302 0.797068 0.75631398 0.79222399 0.76190001 0.797068\n\t\t 0.75631398 0.81016499 0.76697302 0.81016499 0.76697302 0.805035 0.772515 0.79222399\n\t\t 0.76190001 0.797068 0.75631398 0.79222399 0.76190001 0.78109998 0.75442302 0.78109998\n\t\t 0.75442302 0.78565001 0.74867803 0.797068 0.75631398 0.777188 0.76027697 0.78109998\n\t\t 0.75442302 0.79222399 0.76190001 0.79222399 0.76190001 0.78797901 0.76759601 0.777188\n\t\t 0.76027697 0.78797901 0.76759601 0.79222399 0.76190001 0.805035 0.772515 0.805035\n\t\t 0.772515 0.80045801 0.77818799 0.78797901 0.76759601 0.78413701 0.77355701 0.78797901\n\t\t 0.76759601 0.80045801 0.77818799 0.80045801 0.77818799 0.79629302 0.783786 0.78413701\n\t\t 0.77355701 0.78797901 0.76759601 0.78413701 0.77355701 0.77369601 0.76675802 0.77369601\n\t\t 0.76675802 0.777188 0.76027697 0.78797901 0.76759601 0.76969498 0.773718 0.77369601\n\t\t 0.76675802 0.78413701 0.77355701 0.78413701 0.77355701 0.77990103 0.78025502 0.76969498\n\t\t 0.773718 0.77990103 0.78025502 0.78413701 0.77355701 0.79629302 0.783786 0.79629302\n\t\t 0.783786 0.79006302 0.78710699 0.77990103 0.78025502 0.82048798 0.78853798 0.805035\n\t\t 0.772515 0.81016499 0.76697302 0.81016499 0.76697302 0.82590699 0.78290403 0.82048798\n\t\t 0.78853798 0.82590699 0.78290403 0.81016499 0.76697302 0.81567401 0.76210397 0.81567401\n\t\t 0.76210397 0.83170003 0.778166 0.82590699 0.78290403 0.83170003 0.778166 0.81567401\n\t\t 0.76210397 0.82181799 0.757285 0.82181799 0.757285 0.838139 0.77367097 0.83170003\n\t\t 0.778166 0.84057599 0.79914898 0.82590699 0.78290403 0.83170003 0.778166 0.83170003\n\t\t 0.778166 0.84651399 0.794487 0.84057599 0.79914898 0.84651399 0.794487 0.83170003\n\t\t 0.778166 0.838139 0.77367097 0.838139 0.77367097 0.85306197 0.79011601 0.84651399\n\t\t 0.794487 0.83499998 0.80484802 0.82048798 0.78853798 0.82590699 0.78290403 0.82590699\n\t\t 0.78290403 0.84057599 0.79914898 0.83499998 0.80484802 0.82048798 0.78853798 0.83499998\n\t\t 0.80484802 0.82995999 0.81073099 0.82995999 0.81073099 0.81560898 0.79432899 0.82048798\n\t\t 0.78853798 0.805035 0.772515 0.82048798 0.78853798 0.81560898 0.79432899 0.81560898\n\t\t 0.79432899 0.80045801 0.77818799 0.805035 0.772515 0.80045801 0.77818799 0.81560898\n\t\t 0.79432899 0.81129402 0.79971302 0.81129402 0.79971302 0.79629302 0.783786 0.80045801\n\t\t 0.77818799 0.79629302 0.783786 0.81129402 0.79971302 0.80670798 0.80526 0.80670798\n\t\t 0.80526 0.79006302 0.78710699 0.79629302 0.783786 0.82351601 0.82352102 0.80670798\n\t\t 0.80526 0.81129402 0.79971302 0.81129402 0.79971302 0.82562798 0.81597298 0.82351601\n\t\t 0.82352102 0.82562798 0.81597298 0.81129402 0.79971302 0.81560898 0.79432899 0.81560898\n\t\t 0.79432899 0.82995999 0.81073099 0.82562798 0.81597298 0.84057599 0.79914898 0.84651399\n\t\t 0.794487 0.864151 0.81509203 0.864151 0.81509203 0.85817599 0.81971002 0.84057599\n\t\t 0.79914898 0.83499998 0.80484802 0.84057599 0.79914898 0.85817599 0.81971002 0.84651399\n\t\t 0.794487 0.85306197 0.79011601 0.87070101 0.810736 0.87070101 0.810736 0.864151 0.81509203\n\t\t 0.84651399 0.794487 0.82995999 0.81073099 0.83499998 0.80484802 0.852543 0.82546699\n\t\t 0.85817599 0.81971002 0.852543 0.82546699 0.83499998 0.80484802 0.852543 0.82546699\n\t\t 0.847449 0.831429 0.82995999 0.81073099 0.82562798 0.81597298 0.82995999 0.81073099\n\t\t 0.847449 0.831429;\n\tsetAttr \".uvst[0].uvsp[2500:2749]\" 0.82351601 0.82352102 0.82562798 0.81597298\n\t\t 0.84314001 0.83660501 0.847449 0.831429 0.84314001 0.83660501 0.82562798 0.81597298\n\t\t 0.84314001 0.83660501 0.83879799 0.84171802 0.82351601 0.82352102 0.74055898 0.81869799\n\t\t 0.736507 0.82126403 0.73031199 0.81018001 0.73031199 0.81018001 0.734231 0.807473\n\t\t 0.74055898 0.81869799 0.734231 0.807473 0.73031199 0.81018001 0.71376503 0.78731102\n\t\t 0.725806 0.81303799 0.73031199 0.81018001 0.736507 0.82126403 0.71376503 0.78731102\n\t\t 0.73031199 0.81018001 0.725806 0.81303799 0.736507 0.82126403 0.73188502 0.82389998\n\t\t 0.725806 0.81303799 0.72000802 0.81596899 0.725806 0.81303799 0.73188502 0.82389998\n\t\t 0.73188502 0.82389998 0.72604501 0.826554 0.72000802 0.81596899 0.725806 0.81303799\n\t\t 0.72000802 0.81596899 0.70444 0.79423302 0.70444 0.79423302 0.70974201 0.790595 0.725806\n\t\t 0.81303799 0.725806 0.81303799 0.70974201 0.790595 0.71376503 0.78731102 0.71341801\n\t\t 0.81895202 0.72000802 0.81596899 0.72604501 0.826554 0.72604501 0.826554 0.71943301\n\t\t 0.82920498 0.71341801 0.81895202 0.72000802 0.81596899 0.71341801 0.81895202 0.698304\n\t\t 0.79806203 0.698304 0.79806203 0.70444 0.79423302 0.72000802 0.81596899 0.79585701\n\t\t 0.73753297 0.79053402 0.74322301 0.779324 0.73641402 0.779324 0.73641402 0.78422898\n\t\t 0.730398 0.79585701 0.73753297 0.77481902 0.74211597 0.779324 0.73641402 0.79053402\n\t\t 0.74322301 0.79053402 0.74322301 0.78565001 0.74867803 0.77481902 0.74211597 0.770621\n\t\t 0.74796402 0.77481902 0.74211597 0.78565001 0.74867803 0.78565001 0.74867803 0.78109998\n\t\t 0.75442302 0.770621 0.74796402 0.76702797 0.75399101 0.770621 0.74796402 0.78109998\n\t\t 0.75442302 0.78109998 0.75442302 0.777188 0.76027697 0.76702797 0.75399101 0.76373202\n\t\t 0.76112998 0.76702797 0.75399101 0.777188 0.76027697 0.777188 0.76027697 0.77369601\n\t\t 0.76675802 0.76373202 0.76112998 0.76023698 0.76959997 0.76373202 0.76112998 0.77369601\n\t\t 0.76675802 0.77369601 0.76675802 0.76969498 0.773718 0.76023698 0.76959997 0.28343499\n\t\t 0.95032501 0.30682701 0.94240898 0.30764499 0.95397002 0.30764499 0.95397002 0.284796\n\t\t 0.96045101 0.28343499 0.95032501 0.30764499 0.95397002 0.30682701 0.94240898 0.329638\n\t\t 0.933294 0.329638 0.933294 0.331209 0.948946 0.30764499 0.95397002 0.28343499 0.95032501\n\t\t 0.284796 0.96045101 0.28119001 0.965276 0.28119001 0.965276 0.27147201 0.95737201\n\t\t 0.28343499 0.95032501 0.26161799 0.96341598 0.27147201 0.95737201 0.28119001 0.965276\n\t\t 0.28119001 0.965276 0.27943599 0.97045702 0.26161799 0.96341598 0.37038901 0.96957397\n\t\t 0.331209 0.948946 0.329638 0.933294 0.329638 0.933294 0.376522 0.95671898 0.37038901\n\t\t 0.96957397 0.267995 0.97756398 0.26161799 0.96341598 0.27943599 0.97045702 0.27943599\n\t\t 0.97045702 0.27961901 0.97548699 0.267995 0.97756398 0.267995 0.97756398 0.27961901\n\t\t 0.97548699 0.28225499 0.97930801 0.28225499 0.97930801 0.276086 0.99022698 0.267995\n\t\t 0.97756398 0.276086 0.99022698 0.28225499 0.97930801 0.32452601 0.984173 0.32452601\n\t\t 0.984173 0.32392299 0.992118 0.276086 0.99022698 0.32392299 0.992118 0.32452601 0.984173\n\t\t 0.36264199 0.98563999 0.36264199 0.98563999 0.36495399 0.99469799 0.32392299 0.992118\n\t\t 0.36495399 0.99469799 0.36264199 0.98563999 0.36963999 0.97177702 0.36963999 0.97177702\n\t\t 0.37038901 0.96957397 0.376522 0.95671898 0.36963999 0.97177702 0.385894 0.99686497\n\t\t 0.36495399 0.99469799 0.267995 0.97756398 0.276086 0.99022698 0.26743799 0.99088198\n\t\t 0.26743799 0.99088198 0.26013601 0.980407 0.267995 0.97756398 0.26161799 0.96341598\n\t\t 0.267995 0.97756398 0.26013601 0.980407 0.26013601 0.980407 0.26743799 0.99088198\n\t\t 0.24523699 0.99319297 0.24523699 0.99319297 0.237058 0.99234498 0.26013601 0.980407\n\t\t 0.237058 0.99234498 0.24523699 0.99319297 0.24003901 0.99389398 0.24003901 0.99389398\n\t\t 0.232954 0.99489403 0.237058 0.99234498 0.228873 0.991521 0.26013601 0.980407 0.237058\n\t\t 0.99234498 0.228873 0.991521 0.237058 0.99234498 0.232954 0.99489403 0.228873 0.991521\n\t\t 0.24478801 0.97601599 0.26013601 0.980407 0.24478801 0.97601599 0.25284201 0.96993101\n\t\t 0.26013601 0.980407 0.232954 0.99489403 0.22492699 0.99627 0.228873 0.991521 0.26013601\n\t\t 0.980407 0.25284201 0.96993101 0.26161799 0.96341598 0.39279699 0.98287398 0.385894\n\t\t 0.99686497 0.36963999 0.97177702 0.36963999 0.97177702 0.37901399 0.96025997 0.39279699\n\t\t 0.98287398 0.376522 0.95671898 0.37901399 0.96025997 0.36963999 0.97177702 0.69672\n\t\t 0.326157 0.68778199 0.326882 0.69597602 0.356291 0.70139199 0.35585099 0.68462098\n\t\t 0.331218 0.69060397 0.352795 0.67390001 0.35951599 0.67545599 0.364957 0.697891 0.36298499\n\t\t 0.67217797 0.35963401 0.66503602 0.327768 0.68586701 0.32018799 0.66343302 0.32216001\n\t\t 0.66328597 0.327777 0.67217797 0.35963401 0.673141 0.36300299 0.67545599 0.364957\n\t\t 0.66232198 0.324413 0.67695701 0.35481501 0.67056 0.33179301 0.66943002 0.35986 0.66054398\n\t\t 0.32800201 0.46121499 0.138423 0.46269599 0.125993 0.442379 0.126296 0.439533 0.13874801\n\t\t 0.87162298 0.38929099 0.87122297 0.410972 0.87601 0.41106099 0.87640899 0.38937899\n\t\t 0.87717599 0.36943299 0.87717599 0.381951 0.88196403 0.381951 0.88196403 0.36943299\n\t\t 0.57042402 0.039528001 0.57042402 0.019207999 0.56563598 0.019207999 0.56563598 0.039528001\n\t\t 0.87700701 0.34803399 0.876706 0.36080301 0.88149202 0.36091599 0.88179302 0.348147\n\t\t 0.69672 0.326157 0.70139199 0.35585099 0.69597602 0.356291 0.69597602 0.356291 0.68778199\n\t\t 0.326882 0.69672 0.326157 0.68462098 0.331218;\n\tsetAttr \".uvst[0].uvsp[2750:2999]\" 0.68778199 0.326882 0.69597602 0.356291 0.69597602\n\t\t 0.356291 0.69060397 0.352795 0.68462098 0.331218 0.69060397 0.352795 0.69597602 0.356291\n\t\t 0.67390001 0.35951599 0.67545599 0.364957 0.67390001 0.35951599 0.69597602 0.356291\n\t\t 0.69597602 0.356291 0.697891 0.36298499 0.67545599 0.364957 0.67217797 0.35963401\n\t\t 0.67390001 0.35951599 0.67545599 0.364957 0.66503602 0.327768 0.67390001 0.35951599\n\t\t 0.67217797 0.35963401 0.68586701 0.32018799 0.68778199 0.326882 0.66503602 0.327768\n\t\t 0.66503602 0.327768 0.66343302 0.32216001 0.68586701 0.32018799 0.67217797 0.35963401\n\t\t 0.66328597 0.327777 0.66503602 0.327768 0.67545599 0.364957 0.673141 0.36300299 0.67217797\n\t\t 0.35963401 0.66232198 0.324413 0.66343302 0.32216001 0.66503602 0.327768 0.66503602\n\t\t 0.327768 0.66328597 0.327777 0.66232198 0.324413 0.67695701 0.35481501 0.67390001\n\t\t 0.35951599 0.66503602 0.327768 0.67390001 0.35951599 0.67695701 0.35481501 0.69060397\n\t\t 0.352795 0.66503602 0.327768 0.67056 0.33179301 0.67695701 0.35481501 0.67056 0.33179301\n\t\t 0.66503602 0.327768 0.68778199 0.326882 0.68778199 0.326882 0.68462098 0.331218 0.67056\n\t\t 0.33179301 0.66328597 0.327777 0.67217797 0.35963401 0.66943002 0.35986 0.66943002\n\t\t 0.35986 0.66054398 0.32800201 0.66328597 0.327777 0.46121499 0.138423 0.439533 0.13874801\n\t\t 0.442379 0.126296 0.442379 0.126296 0.46269599 0.125993 0.46121499 0.138423 0.87162298\n\t\t 0.38929099 0.87640899 0.38937899 0.87601 0.41106099 0.87601 0.41106099 0.87122297\n\t\t 0.410972 0.87162298 0.38929099 0.87717599 0.36943299 0.88196403 0.36943299 0.88196403\n\t\t 0.381951 0.88196403 0.381951 0.87717599 0.381951 0.87717599 0.36943299 0.57042402\n\t\t 0.039528001 0.56563598 0.039528001 0.56563598 0.019207999 0.56563598 0.019207999\n\t\t 0.57042402 0.019207999 0.57042402 0.039528001 0.87700701 0.34803399 0.88179302 0.348147\n\t\t 0.88149202 0.36091599 0.88149202 0.36091599 0.876706 0.36080301 0.87700701 0.34803399\n\t\t 0.68539798 0.59543997 0.68610698 0.60066098 0.68858701 0.60020697 0.68791997 0.59533298\n\t\t 0.68545699 0.59015602 0.68796301 0.59046102 0.68644297 0.584948 0.688842 0.58572501\n\t\t 0.68849301 0.58003998 0.69065601 0.58132499 0.69166601 0.57575399 0.69343901 0.57753003\n\t\t 0.69587201 0.57245398 0.69709802 0.57463902 0.70086801 0.57048601 0.70136601 0.57290298\n\t\t 0.68984801 0.60499698 0.68744302 0.60574597 0.69161499 0.60964501 0.689309 0.610654\n\t\t 0.69383901 0.61409402 0.69165599 0.61535001 0.696504 0.61827701 0.69448 0.61978102\n\t\t 0.69800299 0.620242 0.69607699 0.62187397 0.70134401 0.62383598 0.69967502 0.62572998\n\t\t 0.70319301 0.62542498 0.70168501 0.62744898 0.70722997 0.628075 0.70612401 0.63034201\n\t\t 0.71166003 0.62984401 0.71106899 0.63229102 0.71632499 0.630521 0.71634901 0.63303101\n\t\t 0.72095603 0.62994897 0.72165102 0.63235801 0.72519201 0.62813503 0.72656298 0.63018799\n\t\t 0.72656298 0.63018799 0.72165102 0.63235801 0.72226101 0.63449103 0.727736 0.63207799\n\t\t 0.72656298 0.63018799 0.72165102 0.63235801 0.71634901 0.63303101 0.71635997 0.63525498\n\t\t 0.72165102 0.63235801 0.71634901 0.63303101 0.71106899 0.63229102 0.710531 0.63445401\n\t\t 0.71634901 0.63303101 0.71106899 0.63229102 0.70612401 0.63034201 0.70512903 0.63234001\n\t\t 0.71106899 0.63229102 0.70612401 0.63034201 0.70168501 0.62744898 0.70033598 0.62922901\n\t\t 0.70612401 0.63034201 0.69818503 0.62739402 0.70168501 0.62744898 0.70168501 0.62744898\n\t\t 0.69967502 0.62572998 0.69436502 0.62330699 0.69967502 0.62572998 0.69967502 0.62572998\n\t\t 0.69607699 0.62187397 0.69268203 0.62110198 0.69607699 0.62187397 0.69607699 0.62187397\n\t\t 0.69448 0.61978102 0.68971997 0.61645597 0.69448 0.61978102 0.69448 0.61978102 0.69165599\n\t\t 0.61535001 0.68726701 0.61154801 0.69165599 0.61535001 0.69165599 0.61535001 0.689309\n\t\t 0.610654 0.68531698 0.606417 0.689309 0.610654 0.689309 0.610654 0.68744302 0.60574597\n\t\t 0.68391502 0.60107702 0.68744302 0.60574597 0.68744302 0.60574597 0.68610698 0.60066098\n\t\t 0.68316799 0.59555298 0.68610698 0.60066098 0.68610698 0.60066098 0.68539798 0.59543997\n\t\t 0.68323702 0.58990502 0.68539798 0.59543997 0.68539798 0.59543997 0.68545699 0.59015602\n\t\t 0.68431401 0.58427602 0.68545699 0.59015602 0.68545699 0.59015602 0.68644297 0.584948\n\t\t 0.68656999 0.578915 0.68644297 0.584948 0.68644297 0.584948 0.68849301 0.58003998\n\t\t 0.69008899 0.57418698 0.68849301 0.58003998 0.68849301 0.58003998 0.69166601 0.57575399\n\t\t 0.69478202 0.57052201 0.69166601 0.57575399 0.69166601 0.57575399 0.69587201 0.57245398\n\t\t 0.70034802 0.56832302 0.69587201 0.57245398 0.69587201 0.57245398 0.70086801 0.57048601\n\t\t 0.082198001 0.47376499 0.074061997 0.475941 0.077992 0.486803 0.084053002 0.48514199\n\t\t 0.090630002 0.473102 0.090218 0.48464301 0.090828001 0.46738499 0.081325002 0.46811199\n\t\t 0.072141998 0.47055599 0.099009 0.474188 0.096258 0.48537999 0.095666997 0.467702\n\t\t 0.100455 0.46867299 0.104645 0.48142201 0.102016 0.48729101 0.106973 0.47703999 0.072264001\n\t\t 0.48953801 0.066446997 0.47954801 0.067066997 0.49324399 0.059578001 0.48443401 0.062579997\n\t\t 0.49779701 0.053656999 0.49044099 0.058954999 0.50304401 0.048865002 0.497385 0.057505\n\t\t 0.505876 0.046955001 0.50114501 0.045400999 0.50505197 0.055392999 0.51183999 0.044162001\n\t\t 0.50905699 0.054754 0.51492399 0.043313999 0.51318097 0.054327998 0.52114302 0.042803999\n\t\t 0.52157903 0.055087 0.52727199 0.043880001 0.52991301 0.056968 0.53306103 0.046553001\n\t\t 0.537898 0.059914 0.53819197 0.050825 0.54525799 0.05359 0.548576 0.059994999 0.547472\n\t\t 0.056871999 0.55143303 0.063910998 0.542247 0.041379001 0.54025602;\n\tsetAttr \".uvst[0].uvsp[3000:3249]\" 0.046179 0.54859799 0.049157999 0.55246103\n\t\t 0.03833 0.53123701 0.037094001 0.521828 0.037636001 0.51234502 0.041416999 0.55179602\n\t\t 0.044560999 0.55607998 0.036169998 0.54257703 0.030885 0.54493499 0.03658 0.55499703\n\t\t 0.039910998 0.55960703 0.03277 0.53255099 0.027132001 0.533871 0.031383 0.52207899\n\t\t 0.025597 0.52231598 0.031966001 0.51153398 0.026213 0.51080501 0.038587999 0.507653\n\t\t 0.039133001 0.50598502 0.039995 0.50318998 0.040995002 0.50072002 0.027154 0.50519902\n\t\t 0.032873999 0.506311 0.034384999 0.50662398 0.036770001 0.50717801 0.041698001 0.49883801\n\t\t 0.043857999 0.49458399 0.049235001 0.48679599 0.05587 0.48006299 0.063575998 0.47459099\n\t\t 0.044819999 0.48314801 0.038865 0.49178201 0.040355001 0.47945401 0.033860002 0.48886201\n\t\t 0.052161001 0.47569299 0.048407 0.471277 0.060699999 0.46963701 0.057783999 0.464627\n\t\t 0.070193 0.465184 0.080351003 0.462459 0.090865999 0.46166199 0.090843 0.455865 0.079333998\n\t\t 0.45675001 0.068209 0.45974499 0.096166998 0.4619 0.096527003 0.45607701 0.031184999\n\t\t 0.49386799 0.036389999 0.49646899 0.037762001 0.49711999 0.040100999 0.49815699 0.039758001\n\t\t 0.49851099 0.040658999 0.50030899 0.038683999 0.50585598 0.036844999 0.50671703 0.31741399\n\t\t 0.43661001 0.32587001 0.42973199 0.32380399 0.427201 0.315364 0.434066 0.30889499\n\t\t 0.44341299 0.306862 0.440855 0.30462801 0.44679901 0.30259699 0.44424 0.332275 0.42032\n\t\t 0.33430099 0.42288399 0.34106401 0.41371599 0.342913 0.416408 0.350564 0.407974 0.35202399\n\t\t 0.41089299 0.361013 0.403938 0.36183801 0.407094 0.36659601 0.402816 0.36691701 0.406082\n\t\t 0.37764201 0.40280101 0.37735701 0.40607199 0.383268 0.40382901 0.382433 0.406977\n\t\t 0.39362699 0.40836999 0.391947 0.41116601 0.402542 0.415117 0.40036899 0.417555 0.41032401\n\t\t 0.422968 0.407913 0.425172 0.417492 0.43125999 0.41498899 0.43336099 0.42097601 0.43546301\n\t\t 0.42443699 0.43967301 0.421913 0.44174799 0.427894 0.443883 0.42536899 0.44595599\n\t\t 0.67020202 0.56974798 0.66025102 0.57846802 0.67157203 0.58268702 0.67577702 0.57155502\n\t\t 0.66690898 0.59345299 0.656223 0.58825302 0.66123903 0.60364902 0.651169 0.59732598\n\t\t 0.65448099 0.61311501 0.64513201 0.60570002 0.64674801 0.62177402 0.63823599 0.61338699\n\t\t 0.642555 0.62578499 0.63449699 0.61695802 0.63356799 0.633129 0.62649798 0.62351602\n\t\t 0.628824 0.63648099 0.62226301 0.62648499 0.61883003 0.64238298 0.61337602 0.63174498\n\t\t 0.60823601 0.64718199 0.60400099 0.63601899 0.59714502 0.65075898 0.59422803 0.63921499\n\t\t 0.58566499 0.65299201 0.584135 0.64123303 0.57389998 0.65389001 0.57377899 0.64189798\n\t\t 0.56793702 0.65398198 0.56854397 0.64159399 0.57438201 0.62952501 0.57039201 0.62916797\n\t\t 0.58268601 0.62899899 0.59117103 0.627253 0.599563 0.624479 0.60769302 0.62075597\n\t\t 0.61545002 0.61615801 0.61915898 0.61355901 0.62616903 0.60781097 0.629444 0.60468501\n\t\t 0.63547301 0.59798902 0.64071 0.59079999 0.64493501 0.58332801 0.65414798 0.57683802\n\t\t 0.10732 0.49008 0.11094 0.48470399 0.111773 0.493774 0.116558 0.48940599 0.115003\n\t\t 0.498413 0.120806 0.49551901 0.597507 0.22001401 0.59718198 0.21433 0.59356701 0.21433\n\t\t 0.59324199 0.22001401 0.58995301 0.21433 0.58962798 0.22001401 0.59389299 0.22001401\n\t\t 0.58633798 0.21433 0.58601302 0.22001401 0.59027803 0.22001401 0.58272398 0.21433\n\t\t 0.58239901 0.22001401 0.58666301 0.22001401 0.57910901 0.21433 0.578785 0.22001401\n\t\t 0.583049 0.22001401 0.575495 0.214331 0.57517099 0.220015 0.57943499 0.22001401 0.571881\n\t\t 0.214331 0.57155699 0.220015 0.57582098 0.220015 0.63694298 0.21432599 0.63332897\n\t\t 0.21432599 0.63300401 0.22001 0.63726902 0.22001 0.62971503 0.21432699 0.62939 0.22001\n\t\t 0.63365501 0.22001 0.6261 0.21432599 0.62577498 0.22001 0.63003999 0.22001 0.62248498\n\t\t 0.21432599 0.62216002 0.22001 0.62642503 0.22001 0.61887002 0.21432699 0.61854601\n\t\t 0.22001 0.62281102 0.22001 0.61690098 0.220011 0.61903298 0.22001 0.61706299 0.21432699\n\t\t 0.61738998 0.220011 0.61344802 0.21432801 0.61312401 0.22001199 0.61361301 0.22001199\n\t\t 0.61164099 0.214329 0.61148101 0.22001299 0.60802603 0.21433 0.60770202 0.22001401\n\t\t 0.61196703 0.22001299 0.60441101 0.21433 0.604087 0.22001401 0.60835201 0.22001299\n\t\t 0.600797 0.21433 0.60047197 0.22001401 0.60473698 0.22001401 0.59685701 0.22001401\n\t\t 0.60112202 0.22001401 0.69391602 0.67265999 0.69682097 0.68353099 0.70036298 0.68188298\n\t\t 0.70312703 0.67912298 0.70478201 0.675583 0.70512599 0.671691 0.70411801 0.66791499\n\t\t 0.70187801 0.664711 0.70037699 0.66344702 0.69490403 0.661452 0.69683599 0.66179299\n\t\t 0.69101101 0.66179001 0.68746901 0.66343802 0.68470401 0.66619802 0.68304998 0.66973799\n\t\t 0.682706 0.67363 0.68371397 0.67740601 0.68595302 0.68061 0.68915302 0.68285501 0.69292802\n\t\t 0.683869 0.68046099 0.58635902 0.684807 0.57499403 0.68934 0.56383401 0.685076 0.56202102\n\t\t 0.69174403 0.558263 0.67547101 0.59775198 0.66932899 0.608778 0.66197997 0.61908799\n\t\t 0.65357101 0.62851799 0.649014 0.63288403 0.63923198 0.64078403 0.634161 0.64448702\n\t\t 0.62322998 0.65091097 0.61166197 0.65613699 0.59952497 0.66003698 0.58700901 0.66246098\n\t\t 0.57449698 0.66349298 0.56837398 0.66376197 0.73285902 0.091545001 0.73285902 0.087880999\n\t\t 0.72260797 0.087880999 0.72260797 0.091545001 0.71236902 0.091545001 0.71236902 0.087880999\n\t\t 0.70214999 0.087880999 0.70214999 0.091545001 0.69194698 0.087880999 0.69194698 0.091545001\n\t\t 0.68174899 0.087880999 0.68174899 0.091545001 0.671552 0.087880999 0.671552 0.091545001\n\t\t 0.73830497 0.091545001;\n\tsetAttr \".uvst[0].uvsp[3250:3499]\" 0.73830497 0.087880999 0.66645199 0.087880999\n\t\t 0.66645199 0.091545001 0.634049 0.091545001 0.634049 0.087880999 0.62379998 0.087880999\n\t\t 0.62379998 0.091545001 0.61359698 0.087880999 0.61359698 0.091545001 0.60341299 0.087880999\n\t\t 0.60341299 0.091545001 0.593211 0.087880999 0.593211 0.091545001 0.58820099 0.091545001\n\t\t 0.58820099 0.087880999 0.639548 0.091545001 0.639548 0.087880999 0.70947599 0.101333\n\t\t 0.70947599 0.105103 0.72000998 0.105103 0.72000998 0.101333 0.73053098 0.101333 0.73053098\n\t\t 0.105103 0.73579699 0.101333 0.73579699 0.105103 0.74073899 0.105103 0.74073899 0.101333\n\t\t 0.69891101 0.105103 0.69891101 0.101333 0.68831301 0.105103 0.68831301 0.101333 0.67771\n\t\t 0.105103 0.67771 0.101333 0.66713101 0.105103 0.66713101 0.101333 0.661856 0.101333\n\t\t 0.661856 0.105103 0.65134001 0.101333 0.65134001 0.105103 0.64609802 0.105103 0.64609802\n\t\t 0.101333 0.63564402 0.105103 0.63564402 0.101333 0.62520498 0.105103 0.62520498 0.101333\n\t\t 0.61473 0.105103 0.61473 0.101333 0.604186 0.105103 0.604186 0.101333 0.59359902\n\t\t 0.105103 0.59359902 0.101333 0.58820099 0.101333 0.58820099 0.105103 0.65179801 0.091545001\n\t\t 0.65423602 0.091545001 0.65423602 0.087880999 0.648821 0.087880999 0.648821 0.091545001\n\t\t 0.64674199 0.091545001 0.648821 0.091545001 0.648821 0.087880999 0.648821 0.087880999\n\t\t 0.64674199 0.087880999 0.64458102 0.091545001 0.64674199 0.091545001 0.64674199 0.087880999\n\t\t 0.64674199 0.087880999 0.64458102 0.087880999 0.64268202 0.091545001 0.64268202 0.087880999\n\t\t 0.639548 0.091545001 0.639548 0.087880999 0.639548 0.091545001 0.65638298 0.087880999\n\t\t 0.65423602 0.087880999 0.65423602 0.091545001 0.65423602 0.091545001 0.65638298 0.091545001\n\t\t 0.65795398 0.087880999 0.65638298 0.087880999 0.65638298 0.091545001 0.65638298 0.091545001\n\t\t 0.65795398 0.091545001 0.66129303 0.087880999 0.66129303 0.091545001 0.66645199 0.087880999\n\t\t 0.66645199 0.091545001 0.66645199 0.087880999 0.37698999 0.39652199 0.36656499 0.396732\n\t\t 0.374313 0.39173999 0.37596399 0.393244 0.376854 0.39577699 0.36656499 0.39584801\n\t\t 0.367044 0.393278 0.368568 0.39174899 0.68858701 0.60020697 0.68610698 0.60066098\n\t\t 0.68539798 0.59543997 0.68539798 0.59543997 0.68791997 0.59533298 0.68858701 0.60020697\n\t\t 0.68791997 0.59533298 0.68539798 0.59543997 0.68545699 0.59015602 0.68545699 0.59015602\n\t\t 0.68796301 0.59046102 0.68791997 0.59533298 0.68796301 0.59046102 0.68545699 0.59015602\n\t\t 0.68644297 0.584948 0.68644297 0.584948 0.688842 0.58572501 0.68796301 0.59046102\n\t\t 0.688842 0.58572501 0.68644297 0.584948 0.68849301 0.58003998 0.68849301 0.58003998\n\t\t 0.69065601 0.58132499 0.688842 0.58572501 0.69065601 0.58132499 0.68849301 0.58003998\n\t\t 0.69166601 0.57575399 0.69166601 0.57575399 0.69343901 0.57753003 0.69065601 0.58132499\n\t\t 0.69343901 0.57753003 0.69166601 0.57575399 0.69587201 0.57245398 0.69587201 0.57245398\n\t\t 0.69709802 0.57463902 0.69343901 0.57753003 0.69709802 0.57463902 0.69587201 0.57245398\n\t\t 0.70086801 0.57048601 0.70086801 0.57048601 0.70136601 0.57290298 0.69709802 0.57463902\n\t\t 0.68610698 0.60066098 0.68858701 0.60020697 0.68984801 0.60499698 0.68984801 0.60499698\n\t\t 0.68744302 0.60574597 0.68610698 0.60066098 0.68744302 0.60574597 0.68984801 0.60499698\n\t\t 0.69161499 0.60964501 0.69161499 0.60964501 0.689309 0.610654 0.68744302 0.60574597\n\t\t 0.689309 0.610654 0.69161499 0.60964501 0.69383901 0.61409402 0.69383901 0.61409402\n\t\t 0.69165599 0.61535001 0.689309 0.610654 0.69165599 0.61535001 0.69383901 0.61409402\n\t\t 0.696504 0.61827701 0.696504 0.61827701 0.69448 0.61978102 0.69165599 0.61535001\n\t\t 0.69448 0.61978102 0.696504 0.61827701 0.69800299 0.620242 0.69800299 0.620242 0.69607699\n\t\t 0.62187397 0.69448 0.61978102 0.69607699 0.62187397 0.69800299 0.620242 0.70134401\n\t\t 0.62383598 0.70134401 0.62383598 0.69967502 0.62572998 0.69607699 0.62187397 0.69967502\n\t\t 0.62572998 0.70134401 0.62383598 0.70319301 0.62542498 0.70319301 0.62542498 0.70168501\n\t\t 0.62744898 0.69967502 0.62572998 0.70168501 0.62744898 0.70319301 0.62542498 0.70722997\n\t\t 0.628075 0.70722997 0.628075 0.70612401 0.63034201 0.70168501 0.62744898 0.70612401\n\t\t 0.63034201 0.70722997 0.628075 0.71166003 0.62984401 0.71166003 0.62984401 0.71106899\n\t\t 0.63229102 0.70612401 0.63034201 0.71106899 0.63229102 0.71166003 0.62984401 0.71632499\n\t\t 0.630521 0.71632499 0.630521 0.71634901 0.63303101 0.71106899 0.63229102 0.71634901\n\t\t 0.63303101 0.71632499 0.630521 0.72095603 0.62994897 0.72095603 0.62994897 0.72165102\n\t\t 0.63235801 0.71634901 0.63303101 0.72165102 0.63235801 0.72095603 0.62994897 0.72519201\n\t\t 0.62813503 0.72519201 0.62813503 0.72656298 0.63018799 0.72165102 0.63235801 0.72226101\n\t\t 0.63449103 0.72165102 0.63235801 0.72656298 0.63018799 0.72656298 0.63018799 0.727736\n\t\t 0.63207799 0.72226101 0.63449103 0.72165102 0.63235801 0.72226101 0.63449103 0.71635997\n\t\t 0.63525498 0.71635997 0.63525498 0.71634901 0.63303101 0.72165102 0.63235801 0.71634901\n\t\t 0.63303101 0.71635997 0.63525498 0.710531 0.63445401 0.710531 0.63445401 0.71106899\n\t\t 0.63229102 0.71634901 0.63303101 0.71106899 0.63229102 0.710531 0.63445401 0.70512903\n\t\t 0.63234001 0.70512903 0.63234001 0.70612401 0.63034201 0.71106899 0.63229102 0.70612401\n\t\t 0.63034201 0.70512903 0.63234001 0.70033598 0.62922901 0.70033598 0.62922901 0.70168501\n\t\t 0.62744898 0.70612401 0.63034201 0.70168501 0.62744898 0.70033598 0.62922901 0.69818503\n\t\t 0.62739402 0.69818503 0.62739402 0.69967502 0.62572998 0.70168501 0.62744898 0.69967502\n\t\t 0.62572998 0.69818503 0.62739402 0.69436502 0.62330699 0.69436502 0.62330699;\n\tsetAttr \".uvst[0].uvsp[3500:3749]\" 0.69607699 0.62187397 0.69967502 0.62572998\n\t\t 0.69607699 0.62187397 0.69436502 0.62330699 0.69268203 0.62110198 0.69268203 0.62110198\n\t\t 0.69448 0.61978102 0.69607699 0.62187397 0.69448 0.61978102 0.69268203 0.62110198\n\t\t 0.68971997 0.61645597 0.68971997 0.61645597 0.69165599 0.61535001 0.69448 0.61978102\n\t\t 0.69165599 0.61535001 0.68971997 0.61645597 0.68726701 0.61154801 0.68726701 0.61154801\n\t\t 0.689309 0.610654 0.69165599 0.61535001 0.689309 0.610654 0.68726701 0.61154801 0.68531698\n\t\t 0.606417 0.68531698 0.606417 0.68744302 0.60574597 0.689309 0.610654 0.68744302 0.60574597\n\t\t 0.68531698 0.606417 0.68391502 0.60107702 0.68391502 0.60107702 0.68610698 0.60066098\n\t\t 0.68744302 0.60574597 0.68610698 0.60066098 0.68391502 0.60107702 0.68316799 0.59555298\n\t\t 0.68316799 0.59555298 0.68539798 0.59543997 0.68610698 0.60066098 0.68539798 0.59543997\n\t\t 0.68316799 0.59555298 0.68323702 0.58990502 0.68323702 0.58990502 0.68545699 0.59015602\n\t\t 0.68539798 0.59543997 0.68545699 0.59015602 0.68323702 0.58990502 0.68431401 0.58427602\n\t\t 0.68431401 0.58427602 0.68644297 0.584948 0.68545699 0.59015602 0.68644297 0.584948\n\t\t 0.68431401 0.58427602 0.68656999 0.578915 0.68656999 0.578915 0.68849301 0.58003998\n\t\t 0.68644297 0.584948 0.68849301 0.58003998 0.68656999 0.578915 0.69008899 0.57418698\n\t\t 0.69008899 0.57418698 0.69166601 0.57575399 0.68849301 0.58003998 0.69166601 0.57575399\n\t\t 0.69008899 0.57418698 0.69478202 0.57052201 0.69478202 0.57052201 0.69587201 0.57245398\n\t\t 0.69166601 0.57575399 0.69587201 0.57245398 0.69478202 0.57052201 0.70034802 0.56832302\n\t\t 0.70034802 0.56832302 0.70086801 0.57048601 0.69587201 0.57245398 0.082198001 0.47376499\n\t\t 0.084053002 0.48514199 0.077992 0.486803 0.077992 0.486803 0.074061997 0.475941 0.082198001\n\t\t 0.47376499 0.084053002 0.48514199 0.082198001 0.47376499 0.090630002 0.473102 0.090630002\n\t\t 0.473102 0.090218 0.48464301 0.084053002 0.48514199 0.090828001 0.46738499 0.090630002\n\t\t 0.473102 0.082198001 0.47376499 0.082198001 0.47376499 0.081325002 0.46811199 0.090828001\n\t\t 0.46738499 0.081325002 0.46811199 0.082198001 0.47376499 0.074061997 0.475941 0.074061997\n\t\t 0.475941 0.072141998 0.47055599 0.081325002 0.46811199 0.090218 0.48464301 0.090630002\n\t\t 0.473102 0.099009 0.474188 0.099009 0.474188 0.096258 0.48537999 0.090218 0.48464301\n\t\t 0.090630002 0.473102 0.090828001 0.46738499 0.095666997 0.467702 0.090630002 0.473102\n\t\t 0.095666997 0.467702 0.099009 0.474188 0.095666997 0.467702 0.100455 0.46867299 0.099009\n\t\t 0.474188 0.106973 0.47703999 0.096258 0.48537999 0.099009 0.474188 0.106973 0.47703999\n\t\t 0.104645 0.48142201 0.096258 0.48537999 0.104645 0.48142201 0.102016 0.48729101 0.096258\n\t\t 0.48537999 0.074061997 0.475941 0.077992 0.486803 0.072264001 0.48953801 0.072264001\n\t\t 0.48953801 0.066446997 0.47954801 0.074061997 0.475941 0.072141998 0.47055599 0.074061997\n\t\t 0.475941 0.066446997 0.47954801 0.066446997 0.47954801 0.072264001 0.48953801 0.067066997\n\t\t 0.49324399 0.067066997 0.49324399 0.059578001 0.48443401 0.066446997 0.47954801 0.059578001\n\t\t 0.48443401 0.067066997 0.49324399 0.062579997 0.49779701 0.062579997 0.49779701 0.053656999\n\t\t 0.49044099 0.059578001 0.48443401 0.053656999 0.49044099 0.062579997 0.49779701 0.058954999\n\t\t 0.50304401 0.058954999 0.50304401 0.048865002 0.497385 0.053656999 0.49044099 0.048865002\n\t\t 0.497385 0.058954999 0.50304401 0.057505 0.505876 0.057505 0.505876 0.046955001 0.50114501\n\t\t 0.048865002 0.497385 0.045400999 0.50505197 0.046955001 0.50114501 0.057505 0.505876\n\t\t 0.045400999 0.50505197 0.057505 0.505876 0.055392999 0.51183999 0.045400999 0.50505197\n\t\t 0.055392999 0.51183999 0.044162001 0.50905699 0.044162001 0.50905699 0.055392999\n\t\t 0.51183999 0.054754 0.51492399 0.054754 0.51492399 0.043313999 0.51318097 0.044162001\n\t\t 0.50905699 0.043313999 0.51318097 0.054754 0.51492399 0.054327998 0.52114302 0.054327998\n\t\t 0.52114302 0.042803999 0.52157903 0.043313999 0.51318097 0.042803999 0.52157903 0.054327998\n\t\t 0.52114302 0.055087 0.52727199 0.055087 0.52727199 0.043880001 0.52991301 0.042803999\n\t\t 0.52157903 0.043880001 0.52991301 0.055087 0.52727199 0.056968 0.53306103 0.056968\n\t\t 0.53306103 0.046553001 0.537898 0.043880001 0.52991301 0.046553001 0.537898 0.056968\n\t\t 0.53306103 0.059914 0.53819197 0.059914 0.53819197 0.050825 0.54525799 0.046553001\n\t\t 0.537898 0.05359 0.548576 0.050825 0.54525799 0.059914 0.53819197 0.05359 0.548576\n\t\t 0.059914 0.53819197 0.059994999 0.547472 0.059914 0.53819197 0.063910998 0.542247\n\t\t 0.059994999 0.547472 0.05359 0.548576 0.059994999 0.547472 0.056871999 0.55143303\n\t\t 0.041379001 0.54025602 0.046553001 0.537898 0.050825 0.54525799 0.050825 0.54525799\n\t\t 0.046179 0.54859799 0.041379001 0.54025602 0.046179 0.54859799 0.050825 0.54525799\n\t\t 0.05359 0.548576 0.05359 0.548576 0.049157999 0.55246103 0.046179 0.54859799 0.046553001\n\t\t 0.537898 0.041379001 0.54025602 0.03833 0.53123701 0.03833 0.53123701 0.043880001\n\t\t 0.52991301 0.046553001 0.537898 0.043880001 0.52991301 0.03833 0.53123701 0.037094001\n\t\t 0.521828 0.037094001 0.521828 0.042803999 0.52157903 0.043880001 0.52991301 0.042803999\n\t\t 0.52157903 0.037094001 0.521828 0.037636001 0.51234502 0.041416999 0.55179602 0.046179\n\t\t 0.54859799 0.049157999 0.55246103 0.049157999 0.55246103 0.044560999 0.55607998 0.041416999\n\t\t 0.55179602 0.036169998 0.54257703 0.041379001 0.54025602 0.046179 0.54859799 0.046179\n\t\t 0.54859799 0.041416999 0.55179602 0.036169998 0.54257703 0.030885 0.54493499 0.036169998\n\t\t 0.54257703 0.041416999 0.55179602 0.041416999 0.55179602 0.03658 0.55499703;\n\tsetAttr \".uvst[0].uvsp[3750:3999]\" 0.030885 0.54493499 0.03658 0.55499703 0.041416999\n\t\t 0.55179602 0.044560999 0.55607998 0.044560999 0.55607998 0.039910998 0.55960703 0.03658\n\t\t 0.55499703 0.03277 0.53255099 0.03833 0.53123701 0.041379001 0.54025602 0.041379001\n\t\t 0.54025602 0.036169998 0.54257703 0.03277 0.53255099 0.036169998 0.54257703 0.030885\n\t\t 0.54493499 0.027132001 0.533871 0.027132001 0.533871 0.03277 0.53255099 0.036169998\n\t\t 0.54257703 0.031383 0.52207899 0.037094001 0.521828 0.03833 0.53123701 0.03833 0.53123701\n\t\t 0.03277 0.53255099 0.031383 0.52207899 0.03277 0.53255099 0.027132001 0.533871 0.025597\n\t\t 0.52231598 0.025597 0.52231598 0.031383 0.52207899 0.03277 0.53255099 0.031966001\n\t\t 0.51153398 0.037636001 0.51234502 0.037094001 0.521828 0.037094001 0.521828 0.031383\n\t\t 0.52207899 0.031966001 0.51153398 0.031383 0.52207899 0.025597 0.52231598 0.026213\n\t\t 0.51080501 0.026213 0.51080501 0.031966001 0.51153398 0.031383 0.52207899 0.031966001\n\t\t 0.51153398 0.026213 0.51080501 0.027154 0.50519902 0.027154 0.50519902 0.032873999\n\t\t 0.506311 0.031966001 0.51153398 0.034384999 0.50662398 0.031966001 0.51153398 0.032873999\n\t\t 0.506311 0.037636001 0.51234502 0.031966001 0.51153398 0.034384999 0.50662398 0.034384999\n\t\t 0.50662398 0.036770001 0.50717801 0.037636001 0.51234502 0.034384999 0.50662398 0.036844999\n\t\t 0.50671703 0.036770001 0.50717801 0.036770001 0.50717801 0.036844999 0.50671703 0.038683999\n\t\t 0.50585598 0.038683999 0.50585598 0.039133001 0.50598502 0.036770001 0.50717801 0.039133001\n\t\t 0.50598502 0.038683999 0.50585598 0.039995 0.50318998 0.045400999 0.50505197 0.039133001\n\t\t 0.50598502 0.039995 0.50318998 0.039995 0.50318998 0.040995002 0.50072002 0.045400999\n\t\t 0.50505197 0.039133001 0.50598502 0.045400999 0.50505197 0.044162001 0.50905699 0.044162001\n\t\t 0.50905699 0.038587999 0.507653 0.039133001 0.50598502 0.036770001 0.50717801 0.039133001\n\t\t 0.50598502 0.038587999 0.507653 0.038587999 0.507653 0.044162001 0.50905699 0.043313999\n\t\t 0.51318097 0.043313999 0.51318097 0.037636001 0.51234502 0.038587999 0.507653 0.037636001\n\t\t 0.51234502 0.036770001 0.50717801 0.038587999 0.507653 0.037636001 0.51234502 0.043313999\n\t\t 0.51318097 0.042803999 0.52157903 0.045400999 0.50505197 0.040995002 0.50072002 0.041698001\n\t\t 0.49883801 0.041698001 0.49883801 0.046955001 0.50114501 0.045400999 0.50505197 0.046955001\n\t\t 0.50114501 0.041698001 0.49883801 0.043857999 0.49458399 0.043857999 0.49458399 0.048865002\n\t\t 0.497385 0.046955001 0.50114501 0.048865002 0.497385 0.043857999 0.49458399 0.049235001\n\t\t 0.48679599 0.049235001 0.48679599 0.053656999 0.49044099 0.048865002 0.497385 0.053656999\n\t\t 0.49044099 0.049235001 0.48679599 0.05587 0.48006299 0.05587 0.48006299 0.059578001\n\t\t 0.48443401 0.053656999 0.49044099 0.059578001 0.48443401 0.05587 0.48006299 0.063575998\n\t\t 0.47459099 0.063575998 0.47459099 0.066446997 0.47954801 0.059578001 0.48443401 0.066446997\n\t\t 0.47954801 0.063575998 0.47459099 0.072141998 0.47055599 0.044819999 0.48314801 0.049235001\n\t\t 0.48679599 0.043857999 0.49458399 0.043857999 0.49458399 0.038865 0.49178201 0.044819999\n\t\t 0.48314801 0.040355001 0.47945401 0.044819999 0.48314801 0.038865 0.49178201 0.038865\n\t\t 0.49178201 0.033860002 0.48886201 0.040355001 0.47945401 0.052161001 0.47569299 0.05587\n\t\t 0.48006299 0.049235001 0.48679599 0.049235001 0.48679599 0.044819999 0.48314801 0.052161001\n\t\t 0.47569299 0.044819999 0.48314801 0.040355001 0.47945401 0.048407 0.471277 0.048407\n\t\t 0.471277 0.052161001 0.47569299 0.044819999 0.48314801 0.060699999 0.46963701 0.063575998\n\t\t 0.47459099 0.05587 0.48006299 0.05587 0.48006299 0.052161001 0.47569299 0.060699999\n\t\t 0.46963701 0.052161001 0.47569299 0.048407 0.471277 0.057783999 0.464627 0.057783999\n\t\t 0.464627 0.060699999 0.46963701 0.052161001 0.47569299 0.070193 0.465184 0.072141998\n\t\t 0.47055599 0.063575998 0.47459099 0.063575998 0.47459099 0.060699999 0.46963701 0.070193\n\t\t 0.465184 0.072141998 0.47055599 0.070193 0.465184 0.080351003 0.462459 0.080351003\n\t\t 0.462459 0.081325002 0.46811199 0.072141998 0.47055599 0.081325002 0.46811199 0.080351003\n\t\t 0.462459 0.090865999 0.46166199 0.090865999 0.46166199 0.090828001 0.46738499 0.081325002\n\t\t 0.46811199 0.090843 0.455865 0.090865999 0.46166199 0.080351003 0.462459 0.080351003\n\t\t 0.462459 0.079333998 0.45675001 0.090843 0.455865 0.079333998 0.45675001 0.080351003\n\t\t 0.462459 0.070193 0.465184 0.070193 0.465184 0.068209 0.45974499 0.079333998 0.45675001\n\t\t 0.060699999 0.46963701 0.057783999 0.464627 0.068209 0.45974499 0.068209 0.45974499\n\t\t 0.070193 0.465184 0.060699999 0.46963701 0.090828001 0.46738499 0.090865999 0.46166199\n\t\t 0.096166998 0.4619 0.096166998 0.4619 0.095666997 0.467702 0.090828001 0.46738499\n\t\t 0.096527003 0.45607701 0.096166998 0.4619 0.090865999 0.46166199 0.090865999 0.46166199\n\t\t 0.090843 0.455865 0.096527003 0.45607701 0.033860002 0.48886201 0.038865 0.49178201\n\t\t 0.036389999 0.49646899 0.038865 0.49178201 0.037762001 0.49711999 0.036389999 0.49646899\n\t\t 0.040100999 0.49815699 0.037762001 0.49711999 0.038865 0.49178201 0.038865 0.49178201\n\t\t 0.043857999 0.49458399 0.040100999 0.49815699 0.041698001 0.49883801 0.040100999\n\t\t 0.49815699 0.043857999 0.49458399 0.040100999 0.49815699 0.039758001 0.49851099 0.037762001\n\t\t 0.49711999 0.040995002 0.50072002 0.040100999 0.49815699 0.041698001 0.49883801 0.040658999\n\t\t 0.50030899 0.039758001 0.49851099 0.040100999 0.49815699 0.040100999 0.49815699 0.040995002\n\t\t 0.50072002 0.040658999 0.50030899 0.039995 0.50318998 0.040658999 0.50030899 0.040995002\n\t\t 0.50072002 0.036389999 0.49646899 0.031184999 0.49386799 0.033860002 0.48886201 0.32380399\n\t\t 0.427201 0.32587001 0.42973199 0.31741399 0.43661001;\n\tsetAttr \".uvst[0].uvsp[4000:4249]\" 0.31741399 0.43661001 0.315364 0.434066 0.32380399\n\t\t 0.427201 0.315364 0.434066 0.31741399 0.43661001 0.30889499 0.44341299 0.30889499\n\t\t 0.44341299 0.306862 0.440855 0.315364 0.434066 0.306862 0.440855 0.30889499 0.44341299\n\t\t 0.30462801 0.44679901 0.30462801 0.44679901 0.30259699 0.44424 0.306862 0.440855\n\t\t 0.32587001 0.42973199 0.32380399 0.427201 0.332275 0.42032 0.332275 0.42032 0.33430099\n\t\t 0.42288399 0.32587001 0.42973199 0.33430099 0.42288399 0.332275 0.42032 0.34106401\n\t\t 0.41371599 0.34106401 0.41371599 0.342913 0.416408 0.33430099 0.42288399 0.342913\n\t\t 0.416408 0.34106401 0.41371599 0.350564 0.407974 0.350564 0.407974 0.35202399 0.41089299\n\t\t 0.342913 0.416408 0.35202399 0.41089299 0.350564 0.407974 0.361013 0.403938 0.361013\n\t\t 0.403938 0.36183801 0.407094 0.35202399 0.41089299 0.36183801 0.407094 0.361013 0.403938\n\t\t 0.36659601 0.402816 0.36659601 0.402816 0.36691701 0.406082 0.36183801 0.407094 0.36691701\n\t\t 0.406082 0.36659601 0.402816 0.37764201 0.40280101 0.37764201 0.40280101 0.37735701\n\t\t 0.40607199 0.36691701 0.406082 0.37735701 0.40607199 0.37764201 0.40280101 0.383268\n\t\t 0.40382901 0.383268 0.40382901 0.382433 0.406977 0.37735701 0.40607199 0.382433 0.406977\n\t\t 0.383268 0.40382901 0.39362699 0.40836999 0.39362699 0.40836999 0.391947 0.41116601\n\t\t 0.382433 0.406977 0.391947 0.41116601 0.39362699 0.40836999 0.402542 0.415117 0.402542\n\t\t 0.415117 0.40036899 0.417555 0.391947 0.41116601 0.40036899 0.417555 0.402542 0.415117\n\t\t 0.41032401 0.422968 0.41032401 0.422968 0.407913 0.425172 0.40036899 0.417555 0.407913\n\t\t 0.425172 0.41032401 0.422968 0.417492 0.43125999 0.417492 0.43125999 0.41498899 0.43336099\n\t\t 0.407913 0.425172 0.41498899 0.43336099 0.417492 0.43125999 0.42097601 0.43546301\n\t\t 0.42443699 0.43967301 0.41498899 0.43336099 0.42097601 0.43546301 0.42443699 0.43967301\n\t\t 0.421913 0.44174799 0.41498899 0.43336099 0.421913 0.44174799 0.42443699 0.43967301\n\t\t 0.427894 0.443883 0.427894 0.443883 0.42536899 0.44595599 0.421913 0.44174799 0.67020202\n\t\t 0.56974798 0.67577702 0.57155502 0.67157203 0.58268702 0.67157203 0.58268702 0.66025102\n\t\t 0.57846802 0.67020202 0.56974798 0.66025102 0.57846802 0.67157203 0.58268702 0.66690898\n\t\t 0.59345299 0.66690898 0.59345299 0.656223 0.58825302 0.66025102 0.57846802 0.656223\n\t\t 0.58825302 0.66690898 0.59345299 0.66123903 0.60364902 0.66123903 0.60364902 0.651169\n\t\t 0.59732598 0.656223 0.58825302 0.651169 0.59732598 0.66123903 0.60364902 0.65448099\n\t\t 0.61311501 0.65448099 0.61311501 0.64513201 0.60570002 0.651169 0.59732598 0.64513201\n\t\t 0.60570002 0.65448099 0.61311501 0.64674801 0.62177402 0.64674801 0.62177402 0.63823599\n\t\t 0.61338699 0.64513201 0.60570002 0.63823599 0.61338699 0.64674801 0.62177402 0.642555\n\t\t 0.62578499 0.642555 0.62578499 0.63449699 0.61695802 0.63823599 0.61338699 0.63449699\n\t\t 0.61695802 0.642555 0.62578499 0.63356799 0.633129 0.63356799 0.633129 0.62649798\n\t\t 0.62351602 0.63449699 0.61695802 0.62649798 0.62351602 0.63356799 0.633129 0.628824\n\t\t 0.63648099 0.628824 0.63648099 0.62226301 0.62648499 0.62649798 0.62351602 0.62226301\n\t\t 0.62648499 0.628824 0.63648099 0.61883003 0.64238298 0.61883003 0.64238298 0.61337602\n\t\t 0.63174498 0.62226301 0.62648499 0.61337602 0.63174498 0.61883003 0.64238298 0.60823601\n\t\t 0.64718199 0.60823601 0.64718199 0.60400099 0.63601899 0.61337602 0.63174498 0.60400099\n\t\t 0.63601899 0.60823601 0.64718199 0.59714502 0.65075898 0.59714502 0.65075898 0.59422803\n\t\t 0.63921499 0.60400099 0.63601899 0.59422803 0.63921499 0.59714502 0.65075898 0.58566499\n\t\t 0.65299201 0.58566499 0.65299201 0.584135 0.64123303 0.59422803 0.63921499 0.584135\n\t\t 0.64123303 0.58566499 0.65299201 0.57389998 0.65389001 0.57389998 0.65389001 0.57377899\n\t\t 0.64189798 0.584135 0.64123303 0.57377899 0.64189798 0.57389998 0.65389001 0.56793702\n\t\t 0.65398198 0.56793702 0.65398198 0.56854397 0.64159399 0.57377899 0.64189798 0.57438201\n\t\t 0.62952501 0.57377899 0.64189798 0.56854397 0.64159399 0.56854397 0.64159399 0.57039201\n\t\t 0.62916797 0.57438201 0.62952501 0.57377899 0.64189798 0.57438201 0.62952501 0.58268601\n\t\t 0.62899899 0.58268601 0.62899899 0.584135 0.64123303 0.57377899 0.64189798 0.584135\n\t\t 0.64123303 0.58268601 0.62899899 0.59117103 0.627253 0.59117103 0.627253 0.59422803\n\t\t 0.63921499 0.584135 0.64123303 0.59422803 0.63921499 0.59117103 0.627253 0.599563\n\t\t 0.624479 0.599563 0.624479 0.60400099 0.63601899 0.59422803 0.63921499 0.60400099\n\t\t 0.63601899 0.599563 0.624479 0.60769302 0.62075597 0.60769302 0.62075597 0.61337602\n\t\t 0.63174498 0.60400099 0.63601899 0.61337602 0.63174498 0.60769302 0.62075597 0.61545002\n\t\t 0.61615801 0.61545002 0.61615801 0.62226301 0.62648499 0.61337602 0.63174498 0.62226301\n\t\t 0.62648499 0.61545002 0.61615801 0.61915898 0.61355901 0.61915898 0.61355901 0.62649798\n\t\t 0.62351602 0.62226301 0.62648499 0.62649798 0.62351602 0.61915898 0.61355901 0.62616903\n\t\t 0.60781097 0.62616903 0.60781097 0.63449699 0.61695802 0.62649798 0.62351602 0.63449699\n\t\t 0.61695802 0.62616903 0.60781097 0.629444 0.60468501 0.629444 0.60468501 0.63823599\n\t\t 0.61338699 0.63449699 0.61695802 0.63823599 0.61338699 0.629444 0.60468501 0.63547301\n\t\t 0.59798902 0.63547301 0.59798902 0.64513201 0.60570002 0.63823599 0.61338699 0.64513201\n\t\t 0.60570002 0.63547301 0.59798902 0.64071 0.59079999 0.64071 0.59079999 0.651169 0.59732598\n\t\t 0.64513201 0.60570002 0.651169 0.59732598 0.64071 0.59079999 0.64493501 0.58332801\n\t\t 0.64493501 0.58332801;\n\tsetAttr \".uvst[0].uvsp[4250:4499]\" 0.656223 0.58825302 0.651169 0.59732598 0.656223\n\t\t 0.58825302 0.64493501 0.58332801 0.65414798 0.57683802 0.65414798 0.57683802 0.66025102\n\t\t 0.57846802 0.656223 0.58825302 0.102016 0.48729101 0.104645 0.48142201 0.11094 0.48470399\n\t\t 0.11094 0.48470399 0.10732 0.49008 0.102016 0.48729101 0.10732 0.49008 0.11094 0.48470399\n\t\t 0.116558 0.48940599 0.116558 0.48940599 0.111773 0.493774 0.10732 0.49008 0.111773\n\t\t 0.493774 0.116558 0.48940599 0.120806 0.49551901 0.120806 0.49551901 0.115003 0.498413\n\t\t 0.111773 0.493774 0.59356701 0.21433 0.59718198 0.21433 0.597507 0.22001401 0.597507\n\t\t 0.22001401 0.59324199 0.22001401 0.59356701 0.21433 0.58962798 0.22001401 0.58995301\n\t\t 0.21433 0.59356701 0.21433 0.59356701 0.21433 0.59389299 0.22001401 0.58962798 0.22001401\n\t\t 0.58601302 0.22001401 0.58633798 0.21433 0.58995301 0.21433 0.58995301 0.21433 0.59027803\n\t\t 0.22001401 0.58601302 0.22001401 0.58239901 0.22001401 0.58272398 0.21433 0.58633798\n\t\t 0.21433 0.58633798 0.21433 0.58666301 0.22001401 0.58239901 0.22001401 0.578785 0.22001401\n\t\t 0.57910901 0.21433 0.58272398 0.21433 0.58272398 0.21433 0.583049 0.22001401 0.578785\n\t\t 0.22001401 0.57517099 0.220015 0.575495 0.214331 0.57910901 0.21433 0.57910901 0.21433\n\t\t 0.57943499 0.22001401 0.57517099 0.220015 0.57155699 0.220015 0.571881 0.214331 0.575495\n\t\t 0.214331 0.575495 0.214331 0.57582098 0.220015 0.57155699 0.220015 0.63300401 0.22001\n\t\t 0.63332897 0.21432599 0.63694298 0.21432599 0.63694298 0.21432599 0.63726902 0.22001\n\t\t 0.63300401 0.22001 0.62939 0.22001 0.62971503 0.21432699 0.63332897 0.21432599 0.63332897\n\t\t 0.21432599 0.63365501 0.22001 0.62939 0.22001 0.62577498 0.22001 0.6261 0.21432599\n\t\t 0.62971503 0.21432699 0.62971503 0.21432699 0.63003999 0.22001 0.62577498 0.22001\n\t\t 0.62216002 0.22001 0.62248498 0.21432599 0.6261 0.21432599 0.6261 0.21432599 0.62642503\n\t\t 0.22001 0.62216002 0.22001 0.61854601 0.22001 0.61887002 0.21432699 0.62248498 0.21432599\n\t\t 0.62248498 0.21432599 0.62281102 0.22001 0.61854601 0.22001 0.61690098 0.220011 0.61706299\n\t\t 0.21432699 0.61887002 0.21432699 0.61887002 0.21432699 0.61903298 0.22001 0.61690098\n\t\t 0.220011 0.61738998 0.220011 0.61312401 0.22001199 0.61344802 0.21432801 0.61344802\n\t\t 0.21432801 0.61706299 0.21432699 0.61738998 0.220011 0.61361301 0.22001199 0.61148101\n\t\t 0.22001299 0.61164099 0.214329 0.61164099 0.214329 0.61344802 0.21432801 0.61361301\n\t\t 0.22001199 0.60770202 0.22001401 0.60802603 0.21433 0.61164099 0.214329 0.61164099\n\t\t 0.214329 0.61196703 0.22001299 0.60770202 0.22001401 0.604087 0.22001401 0.60441101\n\t\t 0.21433 0.60802603 0.21433 0.60802603 0.21433 0.60835201 0.22001299 0.604087 0.22001401\n\t\t 0.60047197 0.22001401 0.600797 0.21433 0.60441101 0.21433 0.60441101 0.21433 0.60473698\n\t\t 0.22001401 0.60047197 0.22001401 0.59685701 0.22001401 0.59718198 0.21433 0.600797\n\t\t 0.21433 0.600797 0.21433 0.60112202 0.22001401 0.59685701 0.22001401 0.69391602 0.67265999\n\t\t 0.70036298 0.68188298 0.69682097 0.68353099 0.70312703 0.67912298 0.70036298 0.68188298\n\t\t 0.69391602 0.67265999 0.69391602 0.67265999 0.70478201 0.675583 0.70312703 0.67912298\n\t\t 0.70512599 0.671691 0.70478201 0.675583 0.69391602 0.67265999 0.69391602 0.67265999\n\t\t 0.70411801 0.66791499 0.70512599 0.671691 0.70187801 0.664711 0.70411801 0.66791499\n\t\t 0.69391602 0.67265999 0.69391602 0.67265999 0.70037699 0.66344702 0.70187801 0.664711\n\t\t 0.69391602 0.67265999 0.69490403 0.661452 0.70037699 0.66344702 0.69490403 0.661452\n\t\t 0.69683599 0.66179299 0.70037699 0.66344702 0.69391602 0.67265999 0.69101101 0.66179001\n\t\t 0.69490403 0.661452 0.68746901 0.66343802 0.69101101 0.66179001 0.69391602 0.67265999\n\t\t 0.69391602 0.67265999 0.68470401 0.66619802 0.68746901 0.66343802 0.68304998 0.66973799\n\t\t 0.68470401 0.66619802 0.69391602 0.67265999 0.69391602 0.67265999 0.682706 0.67363\n\t\t 0.68304998 0.66973799 0.68371397 0.67740601 0.682706 0.67363 0.69391602 0.67265999\n\t\t 0.69391602 0.67265999 0.68595302 0.68061 0.68371397 0.67740601 0.68915302 0.68285501\n\t\t 0.68595302 0.68061 0.69391602 0.67265999 0.69391602 0.67265999 0.69292802 0.683869\n\t\t 0.68915302 0.68285501 0.69682097 0.68353099 0.69292802 0.683869 0.69391602 0.67265999\n\t\t 0.68046099 0.58635902 0.67157203 0.58268702 0.67577702 0.57155502 0.67577702 0.57155502\n\t\t 0.684807 0.57499403 0.68046099 0.58635902 0.684807 0.57499403 0.67577702 0.57155502\n\t\t 0.685076 0.56202102 0.685076 0.56202102 0.68934 0.56383401 0.684807 0.57499403 0.69174403\n\t\t 0.558263 0.68934 0.56383401 0.685076 0.56202102 0.67157203 0.58268702 0.68046099\n\t\t 0.58635902 0.67547101 0.59775198 0.67547101 0.59775198 0.66690898 0.59345299 0.67157203\n\t\t 0.58268702 0.66690898 0.59345299 0.67547101 0.59775198 0.66932899 0.608778 0.66932899\n\t\t 0.608778 0.66123903 0.60364902 0.66690898 0.59345299 0.66123903 0.60364902 0.66932899\n\t\t 0.608778 0.66197997 0.61908799 0.66197997 0.61908799 0.65448099 0.61311501 0.66123903\n\t\t 0.60364902 0.65448099 0.61311501 0.66197997 0.61908799 0.65357101 0.62851799 0.65357101\n\t\t 0.62851799 0.64674801 0.62177402 0.65448099 0.61311501 0.64674801 0.62177402 0.65357101\n\t\t 0.62851799 0.649014 0.63288403 0.649014 0.63288403 0.642555 0.62578499 0.64674801\n\t\t 0.62177402 0.642555 0.62578499 0.649014 0.63288403 0.63923198 0.64078403 0.63923198\n\t\t 0.64078403 0.63356799 0.633129 0.642555 0.62578499 0.63356799 0.633129 0.63923198\n\t\t 0.64078403;\n\tsetAttr \".uvst[0].uvsp[4500:4749]\" 0.634161 0.64448702 0.634161 0.64448702 0.628824\n\t\t 0.63648099 0.63356799 0.633129 0.628824 0.63648099 0.634161 0.64448702 0.62322998\n\t\t 0.65091097 0.62322998 0.65091097 0.61883003 0.64238298 0.628824 0.63648099 0.61883003\n\t\t 0.64238298 0.62322998 0.65091097 0.61166197 0.65613699 0.61166197 0.65613699 0.60823601\n\t\t 0.64718199 0.61883003 0.64238298 0.60823601 0.64718199 0.61166197 0.65613699 0.59952497\n\t\t 0.66003698 0.59952497 0.66003698 0.59714502 0.65075898 0.60823601 0.64718199 0.59714502\n\t\t 0.65075898 0.59952497 0.66003698 0.58700901 0.66246098 0.58700901 0.66246098 0.58566499\n\t\t 0.65299201 0.59714502 0.65075898 0.58566499 0.65299201 0.58700901 0.66246098 0.57449698\n\t\t 0.66349298 0.57449698 0.66349298 0.57389998 0.65389001 0.58566499 0.65299201 0.57389998\n\t\t 0.65389001 0.57449698 0.66349298 0.56837398 0.66376197 0.56837398 0.66376197 0.56793702\n\t\t 0.65398198 0.57389998 0.65389001 0.72260797 0.087880999 0.73285902 0.087880999 0.73285902\n\t\t 0.091545001 0.73285902 0.091545001 0.72260797 0.091545001 0.72260797 0.087880999\n\t\t 0.72260797 0.087880999 0.72260797 0.091545001 0.71236902 0.091545001 0.71236902 0.091545001\n\t\t 0.71236902 0.087880999 0.72260797 0.087880999 0.70214999 0.087880999 0.71236902 0.087880999\n\t\t 0.71236902 0.091545001 0.71236902 0.091545001 0.70214999 0.091545001 0.70214999 0.087880999\n\t\t 0.69194698 0.087880999 0.70214999 0.087880999 0.70214999 0.091545001 0.70214999 0.091545001\n\t\t 0.69194698 0.091545001 0.69194698 0.087880999 0.68174899 0.087880999 0.69194698 0.087880999\n\t\t 0.69194698 0.091545001 0.69194698 0.091545001 0.68174899 0.091545001 0.68174899 0.087880999\n\t\t 0.671552 0.087880999 0.68174899 0.087880999 0.68174899 0.091545001 0.68174899 0.091545001\n\t\t 0.671552 0.091545001 0.671552 0.087880999 0.73830497 0.091545001 0.73285902 0.091545001\n\t\t 0.73285902 0.087880999 0.73285902 0.087880999 0.73830497 0.087880999 0.73830497 0.091545001\n\t\t 0.66645199 0.087880999 0.671552 0.087880999 0.671552 0.091545001 0.671552 0.091545001\n\t\t 0.66645199 0.091545001 0.66645199 0.087880999 0.62379998 0.087880999 0.634049 0.087880999\n\t\t 0.634049 0.091545001 0.634049 0.091545001 0.62379998 0.091545001 0.62379998 0.087880999\n\t\t 0.61359698 0.087880999 0.62379998 0.087880999 0.62379998 0.091545001 0.62379998 0.091545001\n\t\t 0.61359698 0.091545001 0.61359698 0.087880999 0.60341299 0.087880999 0.61359698 0.087880999\n\t\t 0.61359698 0.091545001 0.61359698 0.091545001 0.60341299 0.091545001 0.60341299 0.087880999\n\t\t 0.593211 0.087880999 0.60341299 0.087880999 0.60341299 0.091545001 0.60341299 0.091545001\n\t\t 0.593211 0.091545001 0.593211 0.087880999 0.593211 0.087880999 0.593211 0.091545001\n\t\t 0.58820099 0.091545001 0.58820099 0.091545001 0.58820099 0.087880999 0.593211 0.087880999\n\t\t 0.639548 0.091545001 0.634049 0.091545001 0.634049 0.087880999 0.634049 0.087880999\n\t\t 0.639548 0.087880999 0.639548 0.091545001 0.72000998 0.105103 0.70947599 0.105103\n\t\t 0.70947599 0.101333 0.70947599 0.101333 0.72000998 0.101333 0.72000998 0.105103 0.72000998\n\t\t 0.105103 0.72000998 0.101333 0.73053098 0.101333 0.73053098 0.101333 0.73053098 0.105103\n\t\t 0.72000998 0.105103 0.73579699 0.101333 0.73053098 0.105103 0.73053098 0.101333 0.73579699\n\t\t 0.101333 0.73579699 0.105103 0.73053098 0.105103 0.73579699 0.101333 0.74073899 0.105103\n\t\t 0.73579699 0.105103 0.73579699 0.101333 0.74073899 0.101333 0.74073899 0.105103 0.70947599\n\t\t 0.101333 0.70947599 0.105103 0.69891101 0.105103 0.69891101 0.105103 0.69891101 0.101333\n\t\t 0.70947599 0.101333 0.69891101 0.101333 0.69891101 0.105103 0.68831301 0.105103 0.68831301\n\t\t 0.105103 0.68831301 0.101333 0.69891101 0.101333 0.68831301 0.101333 0.68831301 0.105103\n\t\t 0.67771 0.105103 0.67771 0.105103 0.67771 0.101333 0.68831301 0.101333 0.67771 0.101333\n\t\t 0.67771 0.105103 0.66713101 0.105103 0.66713101 0.105103 0.66713101 0.101333 0.67771\n\t\t 0.101333 0.661856 0.101333 0.66713101 0.101333 0.66713101 0.105103 0.66713101 0.105103\n\t\t 0.661856 0.105103 0.661856 0.101333 0.65134001 0.101333 0.661856 0.101333 0.661856\n\t\t 0.105103 0.661856 0.105103 0.65134001 0.105103 0.65134001 0.101333 0.65134001 0.101333\n\t\t 0.65134001 0.105103 0.64609802 0.105103 0.64609802 0.105103 0.64609802 0.101333 0.65134001\n\t\t 0.101333 0.64609802 0.101333 0.64609802 0.105103 0.63564402 0.105103 0.63564402 0.105103\n\t\t 0.63564402 0.101333 0.64609802 0.101333 0.63564402 0.101333 0.63564402 0.105103 0.62520498\n\t\t 0.105103 0.62520498 0.105103 0.62520498 0.101333 0.63564402 0.101333 0.62520498 0.101333\n\t\t 0.62520498 0.105103 0.61473 0.105103 0.61473 0.105103 0.61473 0.101333 0.62520498\n\t\t 0.101333 0.61473 0.101333 0.61473 0.105103 0.604186 0.105103 0.604186 0.105103 0.604186\n\t\t 0.101333 0.61473 0.101333 0.604186 0.101333 0.604186 0.105103 0.59359902 0.105103\n\t\t 0.59359902 0.105103 0.59359902 0.101333 0.604186 0.101333 0.58820099 0.101333 0.59359902\n\t\t 0.101333 0.59359902 0.105103 0.59359902 0.105103 0.58820099 0.105103 0.58820099 0.101333\n\t\t 0.65179801 0.091545001 0.648821 0.091545001 0.648821 0.087880999 0.65179801 0.091545001\n\t\t 0.648821 0.087880999 0.65423602 0.087880999 0.65179801 0.091545001 0.65423602 0.087880999\n\t\t 0.65423602 0.091545001 0.648821 0.087880999 0.648821 0.091545001 0.64674199 0.091545001\n\t\t 0.64674199 0.091545001 0.64674199 0.087880999 0.648821 0.087880999 0.64674199 0.087880999\n\t\t 0.64674199 0.091545001 0.64458102 0.091545001 0.64458102 0.091545001 0.64458102 0.087880999\n\t\t 0.64674199 0.087880999 0.64458102 0.087880999 0.64458102 0.091545001 0.64268202 0.091545001;\n\tsetAttr \".uvst[0].uvsp[4750:4999]\" 0.64268202 0.091545001 0.64268202 0.087880999\n\t\t 0.64458102 0.087880999 0.64268202 0.087880999 0.64268202 0.091545001 0.639548 0.091545001\n\t\t 0.639548 0.091545001 0.639548 0.087880999 0.64268202 0.087880999 0.65423602 0.091545001\n\t\t 0.65423602 0.087880999 0.65638298 0.087880999 0.65638298 0.087880999 0.65638298 0.091545001\n\t\t 0.65423602 0.091545001 0.65638298 0.091545001 0.65638298 0.087880999 0.65795398 0.087880999\n\t\t 0.65795398 0.087880999 0.65795398 0.091545001 0.65638298 0.091545001 0.65795398 0.091545001\n\t\t 0.65795398 0.087880999 0.66129303 0.087880999 0.66129303 0.087880999 0.66129303 0.091545001\n\t\t 0.65795398 0.091545001 0.66129303 0.091545001 0.66129303 0.087880999 0.66645199 0.087880999\n\t\t 0.66645199 0.087880999 0.66645199 0.091545001 0.66129303 0.091545001 0.36659601 0.402816\n\t\t 0.36656499 0.396732 0.37698999 0.39652199 0.37698999 0.39652199 0.37764201 0.40280101\n\t\t 0.36659601 0.402816 0.374313 0.39173999 0.37698999 0.39652199 0.36656499 0.396732\n\t\t 0.374313 0.39173999 0.37596399 0.393244 0.37698999 0.39652199 0.37596399 0.393244\n\t\t 0.376854 0.39577699 0.37698999 0.39652199 0.374313 0.39173999 0.36656499 0.396732\n\t\t 0.36656499 0.39584801 0.374313 0.39173999 0.36656499 0.39584801 0.367044 0.393278\n\t\t 0.374313 0.39173999 0.367044 0.393278 0.368568 0.39174899 0.78802299 0.089864001\n\t\t 0.78802299 0.088597 0.785353 0.088597 0.785353 0.089864001 0.782686 0.089864001 0.782686\n\t\t 0.088597 0.79068798 0.088597 0.79068798 0.089864001 0.79335201 0.089794002 0.79333597\n\t\t 0.088414997 0.78003001 0.088597 0.78003001 0.089864001 0.77737701 0.089864001 0.77737701\n\t\t 0.088597 0.77473199 0.088597 0.77473199 0.089864001 0.77208799 0.089864001 0.77208799\n\t\t 0.088597 0.769445 0.088597 0.769445 0.089864001 0.76679599 0.089864001 0.76679599\n\t\t 0.088597 0.76414299 0.088597 0.76414299 0.089864001 0.76148099 0.089864001 0.76148099\n\t\t 0.088597 0.75881302 0.088597 0.75881302 0.089864001 0.75613499 0.089864001 0.75613499\n\t\t 0.088597 0.75345898 0.088597 0.75345898 0.089864001 0.75079799 0.089864001 0.75079799\n\t\t 0.088597 0.75345898 0.092546001 0.75079799 0.092546001 0.74828202 0.092546001 0.748285\n\t\t 0.089863002 0.75613499 0.092546001 0.75881302 0.092546001 0.76148099 0.092546001\n\t\t 0.76414299 0.092546001 0.76679599 0.092546001 0.769445 0.092546001 0.77208799 0.092546001\n\t\t 0.77473199 0.092546001 0.77737701 0.092546001 0.78003001 0.092546001 0.782686 0.092546001\n\t\t 0.785353 0.092546001 0.78802299 0.092546001 0.79068798 0.092546001 0.57718301 0.115195\n\t\t 0.57667202 0.116828 0.577981 0.117542 0.57866502 0.115355 0.57703102 0.113486 0.57846099\n\t\t 0.113065 0.57623702 0.111969 0.577398 0.111034 0.57492 0.110868 0.575634 0.10956\n\t\t 0.57328802 0.110357 0.57344699 0.108875 0.57157803 0.11051 0.57115698 0.10908 0.57006198\n\t\t 0.111303 0.56912702 0.110142 0.56896102 0.11262 0.56765199 0.111906 0.56844902 0.114253\n\t\t 0.56696802 0.114093 0.56860203 0.115963 0.56717199 0.116383 0.56939501 0.117479 0.56823403\n\t\t 0.118414 0.57071197 0.11858 0.56999898 0.119888 0.57234502 0.119091 0.57218599 0.120573\n\t\t 0.57405502 0.118938 0.57447499 0.120368 0.575571 0.118145 0.57650602 0.119306 0.788306\n\t\t 0.052170999 0.78985798 0.052170999 0.78985798 0.051284 0.788306 0.051284 0.78675199\n\t\t 0.052170999 0.78675199 0.051284 0.7852 0.052170999 0.7852 0.051284 0.78364599 0.052170999\n\t\t 0.78364599 0.051284 0.78211898 0.052184001 0.78210503 0.051297002 0.791412 0.051284\n\t\t 0.791412 0.052170999 0.79296499 0.051284 0.79296499 0.052170999 0.79451901 0.051284\n\t\t 0.79451901 0.052170999 0.79607201 0.051284 0.79607201 0.052170999 0.79762602 0.051284\n\t\t 0.79762602 0.052170999 0.79917997 0.051284 0.79917997 0.052170999 0.800735 0.051284\n\t\t 0.800735 0.052170999 0.80228901 0.051284 0.80228901 0.052170999 0.80384398 0.051284\n\t\t 0.80384398 0.052170999 0.80539697 0.051284 0.80539697 0.052170999 0.806952 0.051284\n\t\t 0.806952 0.052170999 0.82287002 0.029844999 0.82287002 0.030681999 0.82438701 0.030681999\n\t\t 0.82438701 0.029844999 0.82590002 0.029844999 0.82590002 0.030681999 0.827407 0.030681999\n\t\t 0.827407 0.029844999 0.82892102 0.029844999 0.82892102 0.030681999 0.82134998 0.030681999\n\t\t 0.82134998 0.029844999 0.81983203 0.029844999 0.81983203 0.030681999 0.818313 0.030681999\n\t\t 0.818313 0.029844999 0.816796 0.029844999 0.816796 0.030681999 0.81527799 0.030681999\n\t\t 0.81527799 0.029844999 0.813761 0.029844999 0.813761 0.030681999 0.81224197 0.030681999\n\t\t 0.81224197 0.029844999 0.81072301 0.029844999 0.81072301 0.030681999 0.809201 0.030681999\n\t\t 0.809201 0.029844999 0.807679 0.029844999 0.807679 0.030681999 0.80615699 0.030681999\n\t\t 0.80615699 0.029844999 0.806198 0.030603999 0.80470401 0.029782001 0.80463499 0.030536\n\t\t 0.86468798 0.36732799 0.86482799 0.36579999 0.864375 0.36434001 0.86203998 0.36244899\n\t\t 0.86339402 0.363161 0.857162 0.36509699 0.85905302 0.36276299 0.86051297 0.36230901\n\t\t 0.85787302 0.36374301 0.85980898 0.36997601 0.85747498 0.368085 0.85702097 0.366624\n\t\t 0.85845602 0.36926401 0.86279702 0.36966199 0.86133701 0.370116 0.863976 0.36868101\n\t\t 0.80596602 0.31341699 0.77665299 0.31417799 0.77424598 0.31744 0.80357403 0.31656799\n\t\t 0.81845897 0.31267399 0.81598598 0.315595 0.82247901 0.30725899 0.81050098 0.30757701\n\t\t 0.78156602 0.30808201 0.74944401 0.31656599 0.75145203 0.31318799 0.75538999 0.30684999\n\t\t 0.78406298 0.30523601 0.757312 0.30387601 0.74396002 0.305695 0.74647498 0.30446601\n\t\t 0.74963999 0.303758 0.74108797 0.31215799 0.81265599 0.30487499 0.824045 0.30475199\n\t\t 0.74404699 0.31535301 0.74170798 0.31347901 0.83049101 0.30556199 0.829997 0.307569;\n\tsetAttr \".uvst[0].uvsp[5000:5249]\" 0.840011 0.30873701 0.84113598 0.309246 0.82696199\n\t\t 0.31196299 0.82442802 0.314354 0.83951902 0.310711 0.84110099 0.31007001 0.27082601\n\t\t 0.359882 0.27077499 0.35124499 0.24347501 0.35370001 0.241015 0.36227199 0.23205601\n\t\t 0.36311799 0.236157 0.35372701 0.300257 0.359525 0.30050901 0.35089201 0.31282899\n\t\t 0.36033499 0.31327501 0.35168901 0.32208499 0.35254601 0.32168999 0.361406 0.339192\n\t\t 0.36552599 0.33930501 0.35593599 0.3427 0.35729799 0.34321299 0.36639601 0.3427 0.35729799\n\t\t 0.34321299 0.36639601 0.34919199 0.366469 0.347305 0.35734999 0.3427 0.35729799 0.347305\n\t\t 0.35734999 0.34919199 0.366469 0.35225901 0.36559099 0.350164 0.35610399 0.347305\n\t\t 0.35734999 0.36170799 0.352925 0.36356601 0.36170799 0.36847401 0.35149199 0.370159\n\t\t 0.36025801 0.380007 0.34933001 0.381062 0.35816699 0.40842199 0.35755599 0.40880099\n\t\t 0.34859699 0.43577299 0.363298 0.436207 0.353935 0.44488299 0.36564299 0.444686 0.35605901\n\t\t 0.44789299 0.356424 0.447909 0.36598799 0.45192 0.35637 0.453096 0.365704 0.46621501\n\t\t 0.36096901 0.46219 0.352786 0.46219 0.352786 0.46621501 0.36096901 0.46913999 0.35850701\n\t\t 0.46412501 0.35062301 0.46219 0.352786 0.46489301 0.347826 0.47121599 0.35637799\n\t\t 0.45192 0.35637 0.46219 0.352786 0.458498 0.35010099 0.450966 0.35289299 0.45192\n\t\t 0.35637 0.44789299 0.356424 0.45192 0.35637 0.44764301 0.35273501 0.44789299 0.356424\n\t\t 0.45950001 0.34871 0.46219 0.352786 0.46219 0.352786 0.46412501 0.35062301 0.459997\n\t\t 0.345698 0.46412501 0.35062301 0.46412501 0.35062301 0.46489301 0.347826 0.444686\n\t\t 0.35605901 0.44789299 0.356424 0.44392499 0.352202 0.444686 0.35605901 0.436207 0.353935\n\t\t 0.444686 0.35605901 0.43606901 0.350173 0.436207 0.353935 0.436207 0.353935 0.40911701\n\t\t 0.34504199 0.40880099 0.34859699 0.436207 0.353935 0.380007 0.34933001 0.40880099\n\t\t 0.34859699 0.379776 0.345754 0.380007 0.34933001 0.36847401 0.35149199 0.380007 0.34933001\n\t\t 0.36801299 0.34792599 0.36847401 0.35149199 0.36170799 0.352925 0.36847401 0.35149199\n\t\t 0.36100599 0.34939101 0.36170799 0.352925 0.350164 0.35610399 0.36170799 0.352925\n\t\t 0.349013 0.35265899 0.350164 0.35610399 0.347305 0.35734999 0.350164 0.35610399 0.34672701\n\t\t 0.353459 0.347305 0.35734999 0.347305 0.35734999 0.342926 0.35348499 0.3427 0.35729799\n\t\t 0.347305 0.35734999 0.33930501 0.35593599 0.3427 0.35729799 0.34010899 0.35247901\n\t\t 0.33930501 0.35593599 0.32208499 0.35254601 0.33930501 0.35593599 0.32262701 0.34900099\n\t\t 0.32208499 0.35254601 0.31327501 0.35168901 0.32208499 0.35254601 0.313629 0.34813499\n\t\t 0.31327501 0.35168901 0.30050901 0.35089201 0.31327501 0.35168901 0.300713 0.347325\n\t\t 0.30050901 0.35089201 0.30050901 0.35089201 0.27057201 0.347664 0.27077499 0.35124499\n\t\t 0.30050901 0.35089201 0.27077499 0.35124499 0.245281 0.34977901 0.24347501 0.35370001\n\t\t 0.27077499 0.35124499 0.236157 0.35372701 0.24347501 0.35370001 0.23965 0.349767\n\t\t 0.236157 0.35372701 0.54662901 0.20830201 0.54662901 0.203738 0.53700697 0.203738\n\t\t 0.53700697 0.20830201 0.52739501 0.20830201 0.52739501 0.203738 0.55623502 0.203738\n\t\t 0.55635399 0.20843101 0.51781899 0.203738 0.51781899 0.20830201 0.50826001 0.20830201\n\t\t 0.50826001 0.203738 0.49872699 0.203738 0.49872699 0.20830201 0.48919401 0.20830201\n\t\t 0.48919401 0.203738 0.47966799 0.203738 0.47966799 0.20830201 0.470121 0.20830201\n\t\t 0.470121 0.203738 0.46056101 0.203738 0.46056101 0.20830201 0.45096499 0.20830201\n\t\t 0.45096499 0.203738 0.441349 0.203738 0.441349 0.20830201 0.43169799 0.20830201 0.43169799\n\t\t 0.203738 0.422052 0.203738 0.422052 0.20830201 0.41246 0.20830201 0.41246 0.203738\n\t\t 0.422052 0.217971 0.41246 0.217971 0.403391 0.217968 0.40340099 0.20829999 0.43169799\n\t\t 0.217971 0.441349 0.217971 0.45096499 0.217971 0.46056101 0.217971 0.470121 0.217971\n\t\t 0.47966799 0.217971 0.48919401 0.217971 0.49872699 0.217971 0.50826001 0.217971 0.51781899\n\t\t 0.217971 0.52739501 0.217971 0.53700697 0.217971 0.54662901 0.217971 0.55623502 0.217971\n\t\t 0.56634003 0.207724 0.56577897 0.20308 0.44331801 0.017507 0.44615301 0.012265 0.44215599\n\t\t 0.0089539997 0.43835899 0.015974 0.442702 0.023452001 0.437534 0.023937 0.44440401\n\t\t 0.029162999 0.43981299 0.031585999 0.44817299 0.033803001 0.44486099 0.037799999\n\t\t 0.45341399 0.036637999 0.45188099 0.041597001 0.45936 0.037253 0.45984399 0.042420998\n\t\t 0.46507099 0.035551999 0.467493 0.040143002 0.46970999 0.031783 0.47370699 0.035094\n\t\t 0.472545 0.026542 0.47750399 0.028075 0.47316101 0.020595999 0.47832799 0.020111\n\t\t 0.471459 0.014885 0.47604999 0.012463 0.46768999 0.010246 0.47100201 0.0062489999\n\t\t 0.46244901 0.0074109999 0.46398199 0.002452 0.456503 0.0067949998 0.45601901 0.001627\n\t\t 0.450793 0.0084969997 0.44837001 0.0039059999 0.70609599 0.215358 0.70117998 0.215358\n\t\t 0.70117998 0.218169 0.70609599 0.218169 0.711016 0.215358 0.711016 0.218169 0.71592999\n\t\t 0.215358 0.71592999 0.218169 0.720851 0.215358 0.720851 0.218169 0.69625998 0.218169\n\t\t 0.69625998 0.215358 0.69134498 0.218169 0.69134498 0.215358 0.686423 0.218169 0.686423\n\t\t 0.215358 0.68150598 0.218169 0.68150598 0.215358 0.67658401 0.218169 0.67658401 0.215358\n\t\t 0.67166501 0.218169 0.67166501 0.215358 0.66674 0.218169 0.66674 0.215358 0.66182101\n\t\t 0.218169 0.66182101 0.215358 0.656896 0.218169 0.656896 0.215358;\n\tsetAttr \".uvst[0].uvsp[5250:5499]\" 0.651977 0.218169 0.651977 0.215358 0.64705402\n\t\t 0.218169 0.64705402 0.215358 0.64219099 0.218128 0.64223498 0.215317 0.62909502 0.20627899\n\t\t 0.62909502 0.208932 0.63389999 0.208932 0.63389999 0.20627899 0.63869101 0.20627899\n\t\t 0.63869101 0.208932 0.643466 0.208932 0.643466 0.20627899 0.64825702 0.20627899 0.64825702\n\t\t 0.208932 0.62428498 0.208932 0.62428498 0.20627899 0.61947697 0.20627899 0.61947697\n\t\t 0.208932 0.61466801 0.208932 0.61466801 0.20627899 0.60986501 0.20627899 0.60986501\n\t\t 0.208932 0.60505599 0.208932 0.60505599 0.20627899 0.60025299 0.20627899 0.60025299\n\t\t 0.208932 0.59544301 0.208932 0.59544301 0.20627899 0.59063399 0.20627899 0.59063399\n\t\t 0.208932 0.58581197 0.208932 0.58581197 0.20627899 0.58099401 0.20627899 0.58099401\n\t\t 0.208932 0.57617497 0.208932 0.57617497 0.20627899 0.653566 0.20846701 0.65324497\n\t\t 0.20608 0.64819801 0.208684 0.89339298 0.095794998 0.888556 0.095351003 0.88393098\n\t\t 0.096786998 0.87794298 0.10418 0.88019699 0.099894002 0.88632703 0.11963 0.87893498\n\t\t 0.113641 0.87749898 0.109017 0.88204199 0.117375 0.90177798 0.111245 0.89578903 0.118637\n\t\t 0.89116502 0.120074 0.89952397 0.115531 0.90078503 0.101784 0.90222198 0.106408 0.89767897\n\t\t 0.098049 0.72679299 0.24128699 0.74311298 0.241491 0.74326199 0.236762 0.72658002\n\t\t 0.236624 0.74603802 0.23697001 0.745547 0.241583 0.74792701 0.23739199 0.74603802\n\t\t 0.23697001 0.745547 0.241583 0.745547 0.241583 0.74699801 0.241843 0.72237498 0.241274\n\t\t 0.72211802 0.236654 0.72029001 0.24137101 0.72005397 0.236742 0.749304 0.237873 0.74792701\n\t\t 0.23739199 0.74699801 0.241843 0.74699801 0.241843 0.74798298 0.242393 0.750736 0.238416\n\t\t 0.74909902 0.243056 0.71869898 0.24146099 0.71864402 0.23684201 0.69860399 0.24167299\n\t\t 0.69898802 0.23705401 0.696922 0.241551 0.697537 0.23698699 0.694857 0.241449 0.69550502\n\t\t 0.236931 0.690759 0.241446 0.69138801 0.236921 0.67608202 0.24135999 0.67656201 0.236789\n\t\t 0.67369199 0.241264 0.67394203 0.23675901 0.67202699 0.24129499 0.67369199 0.241264\n\t\t 0.67394203 0.23675901 0.67394203 0.23675901 0.67194498 0.236821 0.670717 0.241537\n\t\t 0.67202699 0.24129499 0.67194498 0.236821 0.67194498 0.236821 0.67041397 0.236858\n\t\t 0.66922301 0.241688 0.66880602 0.236938 0.62714303 0.24144199 0.62691599 0.236788\n\t\t 0.694857 0.241449 0.690759 0.241446 0.690741 0.242332 0.690759 0.241446 0.67608202\n\t\t 0.24135999 0.67611003 0.24224401 0.690759 0.241446 0.67382598 0.24214201 0.67608202\n\t\t 0.24135999 0.67608202 0.24135999 0.67369199 0.241264 0.67224002 0.24206699 0.67369199\n\t\t 0.241264 0.67369199 0.241264 0.67202699 0.24129499 0.67085803 0.24233 0.67202699\n\t\t 0.24129499 0.67202699 0.24129499 0.670717 0.241537 0.66930699 0.242485 0.670717 0.241537\n\t\t 0.670717 0.241537 0.66922301 0.241688 0.66922301 0.241688 0.62714303 0.24144199 0.62714303\n\t\t 0.24144199 0.62714499 0.24221601 0.69480199 0.24232 0.694857 0.241449 0.696922 0.241551\n\t\t 0.694857 0.241449 0.69685602 0.24241599 0.696922 0.241551 0.69860399 0.24167299 0.696922\n\t\t 0.241551 0.69852602 0.242516 0.69860399 0.24167299 0.69860399 0.24167299 0.71879399\n\t\t 0.242305 0.71869898 0.24146099 0.69860399 0.24167299 0.72029001 0.24137101 0.71869898\n\t\t 0.24146099 0.72035998 0.2422 0.72029001 0.24137101 0.72237498 0.241274 0.72029001\n\t\t 0.24137101 0.72242397 0.242083 0.72237498 0.241274 0.72679299 0.24128699 0.72237498\n\t\t 0.241274 0.72679299 0.242081 0.72679299 0.24128699 0.74311298 0.241491 0.72679299\n\t\t 0.24128699 0.743038 0.242255 0.74311298 0.241491 0.745547 0.241583 0.74311298 0.241491\n\t\t 0.74526501 0.24236199 0.745547 0.241583 0.74699801 0.241843 0.745547 0.241583 0.74656898\n\t\t 0.24246 0.74699801 0.241843 0.74798298 0.242393 0.74699801 0.241843 0.74753398 0.24304099\n\t\t 0.74798298 0.242393 0.74909902 0.243056 0.74798298 0.242393 0.748595 0.243726 0.74909902\n\t\t 0.243056 0.44459701 0.122412 0.44556201 0.122231 0.44571799 0.121148 0.43568501 0.103565\n\t\t 0.445032 0.119029 0.42923999 0.098814003 0.432439 0.10012 0.430574 0.099127002 0.395702\n\t\t 0.121227 0.393029 0.11759 0.40521401 0.099123001 0.406618 0.098819003 0.403409 0.100123\n\t\t 0.40053001 0.103368 0.394171 0.12119 0.39258599 0.119713 0.39301699 0.120928 0.443259\n\t\t 0.122378 0.44459701 0.122412 0.395702 0.121227 0.66325498 0.53942901 0.61278099 0.54154402\n\t\t 0.61430901 0.55941403 0.66510201 0.55373502 0.66696697 0.56744498 0.61362398 0.57693499\n\t\t 0.60790098 0.55994803 0.60748798 0.57659799 0.60771602 0.54367697 0.59161198 0.54141003\n\t\t 0.59118903 0.542633 0.59217501 0.58365899 0.59143603 0.58268398 0.29769701 0.468714\n\t\t 0.29349399 0.48982301 0.35350299 0.49341199 0.35795099 0.475472 0.39953601 0.49683201\n\t\t 0.40339401 0.481325 0.26528201 0.46652201 0.261457 0.489126 0.42237201 0.48341399\n\t\t 0.41910499 0.49809501 0.36273399 0.458756 0.40672299 0.46625501 0.30387601 0.450266\n\t\t 0.27179 0.44709 0.232786 0.467242 0.239406 0.44685999 0.188789 0.44657499 0.181428\n\t\t 0.467666 0.149166 0.44337401 0.14025401 0.46671301 0.176552 0.492383 0.229177 0.490969\n\t\t 0.136419 0.490035 0.132486 0.48694199 0.13315301 0.46676999 0.131304 0.48360899 0.141018\n\t\t 0.44855499 0.14352401 0.445851 0.146796 0.44415101 0.42505899 0.469181 0.091200002\n\t\t 0.59672099 0.090680003 0.59758103 0.103958 0.61321902 0.104667 0.61258399 0.118742\n\t\t 0.62760597 0.117816 0.62801802 0.100029 0.61672699;\n\tsetAttr \".uvst[0].uvsp[5500:5749]\" 0.108865 0.62623501 0.098765999 0.63560998\n\t\t 0.100041 0.629282 0.089795999 0.62588102 0.093734004 0.62238401 0.080839999 0.615381\n\t\t 0.087287001 0.61489302 0.091367997 0.60661602 0.057236999 0.27252299 0.0099870004\n\t\t 0.27813399 0.006327 0.298406 0.058857001 0.29280499 0.0061349999 0.29938301 0.082183003\n\t\t 0.29082701 0.080578998 0.27048299 0.127142 0.28692499 0.125328 0.26655301 0.18278299\n\t\t 0.261875 0.184037 0.282179 0.213728 0.260434 0.21425299 0.28079399 0.244937 0.26034701\n\t\t 0.24440999 0.28066501 0.294561 0.26395699 0.29013699 0.283851 0.33647299 0.274304\n\t\t 0.33498001 0.29764301 0.339959 0.27488899 0.33996099 0.29891399 0.344201 0.27546901\n\t\t 0.34355599 0.29962099 0.34718701 0.29982001 0.34888601 0.27572301 0.374116 0.299007\n\t\t 0.37322 0.27492499 0.39512101 0.27681601 0.39788601 0.30092001 0.399479 0.27685899\n\t\t 0.40132099 0.30086699 0.399479 0.27685899 0.40132099 0.30086699 0.408622 0.29900301\n\t\t 0.40700901 0.27573299 0.399479 0.27685899 0.40700901 0.27573299 0.408622 0.29900301\n\t\t 0.454355 0.284621 0.44990501 0.264734 0.40700901 0.27573299 0.50151098 0.26056299\n\t\t 0.50234902 0.280904 0.53388399 0.26049301 0.53359401 0.280864 0.56596398 0.262108\n\t\t 0.56490302 0.28246301 0.625633 0.26695099 0.62393999 0.287305 0.67230499 0.27093601\n\t\t 0.67091298 0.29127899 0.69557202 0.29304299 0.69681102 0.27276701 0.74861598 0.27706301\n\t\t 0.753555 0.29826301 0.753555 0.29826301 0.75331402 0.297288 0.74861598 0.27706301\n\t\t 0.76355201 0.016585 0.77826798 0.017225999 0.77850199 0.016794 0.76357102 0.016173\n\t\t 0.744349 0.015725 0.74436402 0.015313 0.73403698 0.015465 0.73404598 0.015053 0.723665\n\t\t 0.01543 0.72366899 0.015018 0.70722097 0.015299 0.70724601 0.014888 0.69375998 0.014466\n\t\t 0.69366401 0.014004 0.691423 0.014039 0.69178301 0.014592 0.69044602 0.015795 0.69011098\n\t\t 0.015269 0.68957698 0.017374 0.68927801 0.016868001 0.68705398 0.026644999 0.68720597\n\t\t 0.026666 0.68559003 0.034639001 0.686113 0.034256 0.68641198 0.035958 0.68584299\n\t\t 0.036350001 0.68886501 0.037620999 0.68861401 0.038042001 0.70242298 0.037818 0.70242298\n\t\t 0.038229998 0.71938902 0.036993999 0.719414 0.037404999 0.73009503 0.036208 0.73012501\n\t\t 0.036619 0.74075699 0.035390001 0.740789 0.035801001 0.76063699 0.033748001 0.76067501\n\t\t 0.034157999 0.775949 0.032241002 0.77616602 0.032651 0.421817 0.49946499 0.42525199\n\t\t 0.48399401 0.42237201 0.48341399 0.42237201 0.48341399 0.41910499 0.49809501 0.42505899\n\t\t 0.469181 0.42237201 0.48341399 0.42812601 0.46880901 0.42505899 0.469181 0.78972602\n\t\t 0.36907199 0.764355 0.36907199 0.764355 0.372172 0.78972602 0.372172 0.72522098 0.372172\n\t\t 0.72522098 0.36907199 0.66896999 0.372172 0.66896999 0.36907199 0.637743 0.372172\n\t\t 0.637743 0.36907199 0.605865 0.372172 0.605865 0.36907199 0.55010498 0.36907199 0.55010498\n\t\t 0.372172 0.501607 0.372172 0.501607 0.36907199 0.49666601 0.36907199 0.49666601 0.372172\n\t\t 0.49348 0.372172 0.49348 0.36907199 0.48969501 0.372172 0.48969501 0.36907199 0.47021601\n\t\t 0.36907199 0.47021601 0.372172 0.45104101 0.36907199 0.45104101 0.372172 0.44758499\n\t\t 0.372172 0.44758499 0.36907199 0.44117001 0.372172 0.44117001 0.36907199 0.40736401\n\t\t 0.372172 0.44117001 0.372172 0.44117001 0.36907199 0.44117001 0.36907199 0.40736401\n\t\t 0.36907199 0.36149701 0.372172 0.36149701 0.36907199 0.33007601 0.372172 0.33007601\n\t\t 0.36907199 0.29706699 0.372172 0.29706699 0.36907199 0.23401 0.36907199 0.23401 0.372172\n\t\t 0.18264399 0.372172 0.18264399 0.36907199 0.156432 0.372172 0.156432 0.36907199 0.097300999\n\t\t 0.30428001 0.107185 0.304571 0.107224 0.296105 0.093925998 0.29568899 0.120205 0.29598001\n\t\t 0.116527 0.30455899 0.54470497 0.060621999 0.53404897 0.061560001 0.53473198 0.070522003\n\t\t 0.54538798 0.069583997 0.54410499 0.052149002 0.53344899 0.053087 0.74765599 0.25286299\n\t\t 0.73932999 0.24997 0.73947698 0.26066601 0.74780297 0.26355901 0.58600402 0.569148\n\t\t 0.58657497 0.557401 0.57358599 0.55712003 0.57302499 0.56886798 0.59930003 0.569565\n\t\t 0.59988302 0.55781901 0.55615902 0.071474999 0.55619502 0.082171001 0.56447798 0.079414003\n\t\t 0.56444198 0.068718001 0.785353 0.088597 0.78802299 0.088597 0.78802299 0.089864001\n\t\t 0.78802299 0.089864001 0.785353 0.089864001 0.785353 0.088597 0.785353 0.088597 0.785353\n\t\t 0.089864001 0.782686 0.089864001 0.782686 0.089864001 0.782686 0.088597 0.785353\n\t\t 0.088597 0.78802299 0.089864001 0.78802299 0.088597 0.79068798 0.088597 0.79068798\n\t\t 0.088597 0.79068798 0.089864001 0.78802299 0.089864001 0.79335201 0.089794002 0.79068798\n\t\t 0.089864001 0.79068798 0.088597 0.79068798 0.088597 0.79333597 0.088414997 0.79335201\n\t\t 0.089794002 0.78003001 0.088597 0.782686 0.088597 0.782686 0.089864001 0.782686 0.089864001\n\t\t 0.78003001 0.089864001 0.78003001 0.088597 0.78003001 0.088597 0.78003001 0.089864001\n\t\t 0.77737701 0.089864001 0.77737701 0.089864001 0.77737701 0.088597 0.78003001 0.088597\n\t\t 0.77473199 0.088597 0.77737701 0.088597 0.77737701 0.089864001 0.77737701 0.089864001\n\t\t 0.77473199 0.089864001 0.77473199 0.088597 0.77473199 0.088597 0.77473199 0.089864001\n\t\t 0.77208799 0.089864001 0.77208799 0.089864001 0.77208799 0.088597 0.77473199 0.088597\n\t\t 0.769445 0.088597 0.77208799 0.088597 0.77208799 0.089864001 0.77208799 0.089864001\n\t\t 0.769445 0.089864001 0.769445 0.088597 0.769445 0.088597 0.769445 0.089864001 0.76679599\n\t\t 0.089864001 0.76679599 0.089864001 0.76679599 0.088597 0.769445 0.088597 0.76414299\n\t\t 0.088597 0.76679599 0.088597;\n\tsetAttr \".uvst[0].uvsp[5750:5999]\" 0.76679599 0.089864001 0.76679599 0.089864001\n\t\t 0.76414299 0.089864001 0.76414299 0.088597 0.76414299 0.088597 0.76414299 0.089864001\n\t\t 0.76148099 0.089864001 0.76148099 0.089864001 0.76148099 0.088597 0.76414299 0.088597\n\t\t 0.75881302 0.088597 0.76148099 0.088597 0.76148099 0.089864001 0.76148099 0.089864001\n\t\t 0.75881302 0.089864001 0.75881302 0.088597 0.75881302 0.088597 0.75881302 0.089864001\n\t\t 0.75613499 0.089864001 0.75613499 0.089864001 0.75613499 0.088597 0.75881302 0.088597\n\t\t 0.75345898 0.088597 0.75613499 0.088597 0.75613499 0.089864001 0.75613499 0.089864001\n\t\t 0.75345898 0.089864001 0.75345898 0.088597 0.75345898 0.088597 0.75345898 0.089864001\n\t\t 0.75079799 0.089864001 0.75079799 0.089864001 0.75079799 0.088597 0.75345898 0.088597\n\t\t 0.75079799 0.092546001 0.75079799 0.089864001 0.75345898 0.089864001 0.75079799 0.089864001\n\t\t 0.75079799 0.092546001 0.74828202 0.092546001 0.74828202 0.092546001 0.748285 0.089863002\n\t\t 0.75079799 0.089864001 0.75345898 0.089864001 0.75345898 0.092546001 0.75079799 0.092546001\n\t\t 0.75345898 0.092546001 0.75345898 0.089864001 0.75613499 0.089864001 0.75613499 0.089864001\n\t\t 0.75613499 0.092546001 0.75345898 0.092546001 0.75613499 0.092546001 0.75613499 0.089864001\n\t\t 0.75881302 0.089864001 0.75881302 0.089864001 0.75881302 0.092546001 0.75613499 0.092546001\n\t\t 0.75881302 0.092546001 0.75881302 0.089864001 0.76148099 0.089864001 0.76148099 0.089864001\n\t\t 0.76148099 0.092546001 0.75881302 0.092546001 0.76414299 0.089864001 0.76414299 0.092546001\n\t\t 0.76148099 0.092546001 0.76148099 0.092546001 0.76148099 0.089864001 0.76414299 0.089864001\n\t\t 0.76414299 0.092546001 0.76414299 0.089864001 0.76679599 0.089864001 0.76679599 0.089864001\n\t\t 0.76679599 0.092546001 0.76414299 0.092546001 0.76679599 0.092546001 0.76679599 0.089864001\n\t\t 0.769445 0.089864001 0.769445 0.089864001 0.769445 0.092546001 0.76679599 0.092546001\n\t\t 0.769445 0.092546001 0.769445 0.089864001 0.77208799 0.089864001 0.77208799 0.089864001\n\t\t 0.77208799 0.092546001 0.769445 0.092546001 0.77208799 0.092546001 0.77208799 0.089864001\n\t\t 0.77473199 0.089864001 0.77473199 0.089864001 0.77473199 0.092546001 0.77208799 0.092546001\n\t\t 0.77473199 0.092546001 0.77473199 0.089864001 0.77737701 0.089864001 0.77737701 0.089864001\n\t\t 0.77737701 0.092546001 0.77473199 0.092546001 0.77737701 0.092546001 0.77737701 0.089864001\n\t\t 0.78003001 0.089864001 0.78003001 0.089864001 0.78003001 0.092546001 0.77737701 0.092546001\n\t\t 0.78003001 0.092546001 0.78003001 0.089864001 0.782686 0.089864001 0.782686 0.089864001\n\t\t 0.782686 0.092546001 0.78003001 0.092546001 0.782686 0.092546001 0.782686 0.089864001\n\t\t 0.785353 0.089864001 0.785353 0.089864001 0.785353 0.092546001 0.782686 0.092546001\n\t\t 0.785353 0.092546001 0.785353 0.089864001 0.78802299 0.089864001 0.78802299 0.089864001\n\t\t 0.78802299 0.092546001 0.785353 0.092546001 0.78802299 0.092546001 0.78802299 0.089864001\n\t\t 0.79068798 0.089864001 0.79068798 0.089864001 0.79068798 0.092546001 0.78802299 0.092546001\n\t\t 0.577981 0.117542 0.57667202 0.116828 0.57718301 0.115195 0.57718301 0.115195 0.57866502\n\t\t 0.115355 0.577981 0.117542 0.57866502 0.115355 0.57718301 0.115195 0.57703102 0.113486\n\t\t 0.57703102 0.113486 0.57846099 0.113065 0.57866502 0.115355 0.57846099 0.113065 0.57703102\n\t\t 0.113486 0.57623702 0.111969 0.57623702 0.111969 0.577398 0.111034 0.57846099 0.113065\n\t\t 0.577398 0.111034 0.57623702 0.111969 0.57492 0.110868 0.57492 0.110868 0.575634\n\t\t 0.10956 0.577398 0.111034 0.575634 0.10956 0.57492 0.110868 0.57328802 0.110357 0.57328802\n\t\t 0.110357 0.57344699 0.108875 0.575634 0.10956 0.57344699 0.108875 0.57328802 0.110357\n\t\t 0.57157803 0.11051 0.57157803 0.11051 0.57115698 0.10908 0.57344699 0.108875 0.57115698\n\t\t 0.10908 0.57157803 0.11051 0.57006198 0.111303 0.57006198 0.111303 0.56912702 0.110142\n\t\t 0.57115698 0.10908 0.56912702 0.110142 0.57006198 0.111303 0.56896102 0.11262 0.56896102\n\t\t 0.11262 0.56765199 0.111906 0.56912702 0.110142 0.56765199 0.111906 0.56896102 0.11262\n\t\t 0.56844902 0.114253 0.56844902 0.114253 0.56696802 0.114093 0.56765199 0.111906 0.56696802\n\t\t 0.114093 0.56844902 0.114253 0.56860203 0.115963 0.56860203 0.115963 0.56717199 0.116383\n\t\t 0.56696802 0.114093 0.56717199 0.116383 0.56860203 0.115963 0.56939501 0.117479 0.56939501\n\t\t 0.117479 0.56823403 0.118414 0.56717199 0.116383 0.56823403 0.118414 0.56939501 0.117479\n\t\t 0.57071197 0.11858 0.57071197 0.11858 0.56999898 0.119888 0.56823403 0.118414 0.56999898\n\t\t 0.119888 0.57071197 0.11858 0.57234502 0.119091 0.57234502 0.119091 0.57218599 0.120573\n\t\t 0.56999898 0.119888 0.57218599 0.120573 0.57234502 0.119091 0.57405502 0.118938 0.57405502\n\t\t 0.118938 0.57447499 0.120368 0.57218599 0.120573 0.57447499 0.120368 0.57405502 0.118938\n\t\t 0.575571 0.118145 0.575571 0.118145 0.57650602 0.119306 0.57447499 0.120368 0.57650602\n\t\t 0.119306 0.575571 0.118145 0.57667202 0.116828 0.57667202 0.116828 0.577981 0.117542\n\t\t 0.57650602 0.119306 0.78985798 0.051284 0.78985798 0.052170999 0.788306 0.052170999\n\t\t 0.788306 0.052170999 0.788306 0.051284 0.78985798 0.051284 0.788306 0.051284 0.788306\n\t\t 0.052170999 0.78675199 0.052170999 0.78675199 0.052170999 0.78675199 0.051284 0.788306\n\t\t 0.051284 0.78675199 0.051284 0.78675199 0.052170999 0.7852 0.052170999 0.7852 0.052170999\n\t\t 0.7852 0.051284 0.78675199 0.051284 0.7852 0.051284 0.7852 0.052170999 0.78364599\n\t\t 0.052170999 0.78364599 0.052170999 0.78364599 0.051284 0.7852 0.051284;\n\tsetAttr \".uvst[0].uvsp[6000:6249]\" 0.78364599 0.051284 0.78364599 0.052170999\n\t\t 0.78211898 0.052184001 0.78211898 0.052184001 0.78210503 0.051297002 0.78364599 0.051284\n\t\t 0.78985798 0.052170999 0.78985798 0.051284 0.791412 0.051284 0.791412 0.051284 0.791412\n\t\t 0.052170999 0.78985798 0.052170999 0.791412 0.052170999 0.791412 0.051284 0.79296499\n\t\t 0.051284 0.79296499 0.051284 0.79296499 0.052170999 0.791412 0.052170999 0.79296499\n\t\t 0.052170999 0.79296499 0.051284 0.79451901 0.051284 0.79451901 0.051284 0.79451901\n\t\t 0.052170999 0.79296499 0.052170999 0.79451901 0.052170999 0.79451901 0.051284 0.79607201\n\t\t 0.051284 0.79607201 0.051284 0.79607201 0.052170999 0.79451901 0.052170999 0.79607201\n\t\t 0.052170999 0.79607201 0.051284 0.79762602 0.051284 0.79762602 0.051284 0.79762602\n\t\t 0.052170999 0.79607201 0.052170999 0.79762602 0.052170999 0.79762602 0.051284 0.79917997\n\t\t 0.051284 0.79917997 0.051284 0.79917997 0.052170999 0.79762602 0.052170999 0.79917997\n\t\t 0.052170999 0.79917997 0.051284 0.800735 0.051284 0.800735 0.051284 0.800735 0.052170999\n\t\t 0.79917997 0.052170999 0.800735 0.052170999 0.800735 0.051284 0.80228901 0.051284\n\t\t 0.80228901 0.051284 0.80228901 0.052170999 0.800735 0.052170999 0.80228901 0.052170999\n\t\t 0.80228901 0.051284 0.80384398 0.051284 0.80384398 0.051284 0.80384398 0.052170999\n\t\t 0.80228901 0.052170999 0.80384398 0.052170999 0.80384398 0.051284 0.80539697 0.051284\n\t\t 0.80539697 0.051284 0.80539697 0.052170999 0.80384398 0.052170999 0.80539697 0.052170999\n\t\t 0.80539697 0.051284 0.806952 0.051284 0.806952 0.051284 0.806952 0.052170999 0.80539697\n\t\t 0.052170999 0.82438701 0.030681999 0.82287002 0.030681999 0.82287002 0.029844999\n\t\t 0.82287002 0.029844999 0.82438701 0.029844999 0.82438701 0.030681999 0.82438701 0.030681999\n\t\t 0.82438701 0.029844999 0.82590002 0.029844999 0.82590002 0.029844999 0.82590002 0.030681999\n\t\t 0.82438701 0.030681999 0.827407 0.030681999 0.82590002 0.030681999 0.82590002 0.029844999\n\t\t 0.82590002 0.029844999 0.827407 0.029844999 0.827407 0.030681999 0.827407 0.030681999\n\t\t 0.827407 0.029844999 0.82892102 0.029844999 0.82892102 0.029844999 0.82892102 0.030681999\n\t\t 0.827407 0.030681999 0.82287002 0.029844999 0.82287002 0.030681999 0.82134998 0.030681999\n\t\t 0.82134998 0.030681999 0.82134998 0.029844999 0.82287002 0.029844999 0.81983203 0.029844999\n\t\t 0.82134998 0.029844999 0.82134998 0.030681999 0.82134998 0.030681999 0.81983203 0.030681999\n\t\t 0.81983203 0.029844999 0.81983203 0.029844999 0.81983203 0.030681999 0.818313 0.030681999\n\t\t 0.818313 0.030681999 0.818313 0.029844999 0.81983203 0.029844999 0.816796 0.029844999\n\t\t 0.818313 0.029844999 0.818313 0.030681999 0.818313 0.030681999 0.816796 0.030681999\n\t\t 0.816796 0.029844999 0.816796 0.029844999 0.816796 0.030681999 0.81527799 0.030681999\n\t\t 0.81527799 0.030681999 0.81527799 0.029844999 0.816796 0.029844999 0.813761 0.029844999\n\t\t 0.81527799 0.029844999 0.81527799 0.030681999 0.81527799 0.030681999 0.813761 0.030681999\n\t\t 0.813761 0.029844999 0.813761 0.029844999 0.813761 0.030681999 0.81224197 0.030681999\n\t\t 0.81224197 0.030681999 0.81224197 0.029844999 0.813761 0.029844999 0.81072301 0.029844999\n\t\t 0.81224197 0.029844999 0.81224197 0.030681999 0.81224197 0.030681999 0.81072301 0.030681999\n\t\t 0.81072301 0.029844999 0.81072301 0.029844999 0.81072301 0.030681999 0.809201 0.030681999\n\t\t 0.809201 0.030681999 0.809201 0.029844999 0.81072301 0.029844999 0.807679 0.029844999\n\t\t 0.809201 0.029844999 0.809201 0.030681999 0.809201 0.030681999 0.807679 0.030681999\n\t\t 0.807679 0.029844999 0.807679 0.029844999 0.807679 0.030681999 0.80615699 0.030681999\n\t\t 0.80615699 0.030681999 0.80615699 0.029844999 0.807679 0.029844999 0.80470401 0.029782001\n\t\t 0.80615699 0.029844999 0.806198 0.030603999 0.806198 0.030603999 0.80463499 0.030536\n\t\t 0.80470401 0.029782001 0.864375 0.36434001 0.86482799 0.36579999 0.86468798 0.36732799\n\t\t 0.864375 0.36434001 0.86468798 0.36732799 0.86203998 0.36244899 0.86468798 0.36732799\n\t\t 0.857162 0.36509699 0.86203998 0.36244899 0.86468798 0.36732799 0.85980898 0.36997601\n\t\t 0.857162 0.36509699 0.86468798 0.36732799 0.86279702 0.36966199 0.85980898 0.36997601\n\t\t 0.86468798 0.36732799 0.863976 0.36868101 0.86279702 0.36966199 0.86279702 0.36966199\n\t\t 0.86133701 0.370116 0.85980898 0.36997601 0.85980898 0.36997601 0.85747498 0.368085\n\t\t 0.857162 0.36509699 0.85980898 0.36997601 0.85845602 0.36926401 0.85747498 0.368085\n\t\t 0.85747498 0.368085 0.85702097 0.366624 0.857162 0.36509699 0.857162 0.36509699 0.85905302\n\t\t 0.36276299 0.86203998 0.36244899 0.857162 0.36509699 0.85787302 0.36374301 0.85905302\n\t\t 0.36276299 0.85905302 0.36276299 0.86051297 0.36230901 0.86203998 0.36244899 0.864375\n\t\t 0.36434001 0.86203998 0.36244899 0.86339402 0.363161 0.80596602 0.31341699 0.80357403\n\t\t 0.31656799 0.77424598 0.31744 0.77424598 0.31744 0.77665299 0.31417799 0.80596602\n\t\t 0.31341699 0.80357403 0.31656799 0.80596602 0.31341699 0.81845897 0.31267399 0.81845897\n\t\t 0.31267399 0.81598598 0.315595 0.80357403 0.31656799 0.82247901 0.30725899 0.81845897\n\t\t 0.31267399 0.80596602 0.31341699 0.80596602 0.31341699 0.81050098 0.30757701 0.82247901\n\t\t 0.30725899 0.81050098 0.30757701 0.80596602 0.31341699 0.77665299 0.31417799 0.77665299\n\t\t 0.31417799 0.78156602 0.30808201 0.81050098 0.30757701 0.77665299 0.31417799 0.77424598\n\t\t 0.31744 0.74944401 0.31656599 0.74944401 0.31656599 0.75145203 0.31318799 0.77665299\n\t\t 0.31417799 0.78156602 0.30808201 0.77665299 0.31417799 0.75145203 0.31318799 0.75145203\n\t\t 0.31318799 0.75538999 0.30684999 0.78156602 0.30808201 0.78406298 0.30523601 0.78156602\n\t\t 0.30808201 0.75538999 0.30684999 0.81050098 0.30757701;\n\tsetAttr \".uvst[0].uvsp[6250:6499]\" 0.78156602 0.30808201 0.78406298 0.30523601\n\t\t 0.75538999 0.30684999 0.757312 0.30387601 0.78406298 0.30523601 0.757312 0.30387601\n\t\t 0.75538999 0.30684999 0.74396002 0.305695 0.757312 0.30387601 0.74396002 0.305695\n\t\t 0.74647498 0.30446601 0.757312 0.30387601 0.74647498 0.30446601 0.74963999 0.303758\n\t\t 0.75538999 0.30684999 0.75145203 0.31318799 0.74108797 0.31215799 0.74108797 0.31215799\n\t\t 0.74396002 0.305695 0.75538999 0.30684999 0.74108797 0.31215799 0.75145203 0.31318799\n\t\t 0.74944401 0.31656599 0.82247901 0.30725899 0.81050098 0.30757701 0.81265599 0.30487499\n\t\t 0.78406298 0.30523601 0.81265599 0.30487499 0.81050098 0.30757701 0.81265599 0.30487499\n\t\t 0.824045 0.30475199 0.82247901 0.30725899 0.74108797 0.31215799 0.74944401 0.31656599\n\t\t 0.74404699 0.31535301 0.74108797 0.31215799 0.74404699 0.31535301 0.74170798 0.31347901\n\t\t 0.82247901 0.30725899 0.824045 0.30475199 0.83049101 0.30556199 0.829997 0.307569\n\t\t 0.83049101 0.30556199 0.840011 0.30873701 0.840011 0.30873701 0.84113598 0.309246\n\t\t 0.829997 0.307569 0.829997 0.307569 0.84113598 0.309246 0.84110099 0.31007001 0.84110099\n\t\t 0.31007001 0.82696199 0.31196299 0.829997 0.307569 0.82247901 0.30725899 0.829997\n\t\t 0.307569 0.82696199 0.31196299 0.83049101 0.30556199 0.829997 0.307569 0.82247901\n\t\t 0.30725899 0.82696199 0.31196299 0.81845897 0.31267399 0.82247901 0.30725899 0.81845897\n\t\t 0.31267399 0.82696199 0.31196299 0.82442802 0.314354 0.82442802 0.314354 0.81598598\n\t\t 0.315595 0.81845897 0.31267399 0.82696199 0.31196299 0.84110099 0.31007001 0.83951902\n\t\t 0.310711 0.83951902 0.310711 0.82442802 0.314354 0.82696199 0.31196299 0.27077499\n\t\t 0.35124499 0.27082601 0.359882 0.241015 0.36227199 0.241015 0.36227199 0.24347501\n\t\t 0.35370001 0.27077499 0.35124499 0.24347501 0.35370001 0.241015 0.36227199 0.23205601\n\t\t 0.36311799 0.23205601 0.36311799 0.236157 0.35372701 0.24347501 0.35370001 0.27082601\n\t\t 0.359882 0.27077499 0.35124499 0.30050901 0.35089201 0.30050901 0.35089201 0.300257\n\t\t 0.359525 0.27082601 0.359882 0.300257 0.359525 0.30050901 0.35089201 0.31327501 0.35168901\n\t\t 0.31327501 0.35168901 0.31282899 0.36033499 0.300257 0.359525 0.32168999 0.361406\n\t\t 0.31282899 0.36033499 0.31327501 0.35168901 0.31327501 0.35168901 0.32208499 0.35254601\n\t\t 0.32168999 0.361406 0.32168999 0.361406 0.32208499 0.35254601 0.33930501 0.35593599\n\t\t 0.33930501 0.35593599 0.339192 0.36552599 0.32168999 0.361406 0.339192 0.36552599\n\t\t 0.33930501 0.35593599 0.3427 0.35729799 0.3427 0.35729799 0.34321299 0.36639601 0.339192\n\t\t 0.36552599 0.34321299 0.36639601 0.3427 0.35729799 0.347305 0.35734999 0.347305 0.35734999\n\t\t 0.34919199 0.366469 0.34321299 0.36639601 0.34919199 0.366469 0.347305 0.35734999\n\t\t 0.350164 0.35610399 0.350164 0.35610399 0.35225901 0.36559099 0.34919199 0.366469\n\t\t 0.35225901 0.36559099 0.350164 0.35610399 0.36170799 0.352925 0.36170799 0.352925\n\t\t 0.36356601 0.36170799 0.35225901 0.36559099 0.36356601 0.36170799 0.36170799 0.352925\n\t\t 0.36847401 0.35149199 0.36847401 0.35149199 0.370159 0.36025801 0.36356601 0.36170799\n\t\t 0.370159 0.36025801 0.36847401 0.35149199 0.380007 0.34933001 0.380007 0.34933001\n\t\t 0.381062 0.35816699 0.370159 0.36025801 0.381062 0.35816699 0.380007 0.34933001 0.40880099\n\t\t 0.34859699 0.40880099 0.34859699 0.40842199 0.35755599 0.381062 0.35816699 0.40842199\n\t\t 0.35755599 0.40880099 0.34859699 0.436207 0.353935 0.436207 0.353935 0.43577299 0.363298\n\t\t 0.40842199 0.35755599 0.43577299 0.363298 0.436207 0.353935 0.444686 0.35605901 0.444686\n\t\t 0.35605901 0.44488299 0.36564299 0.43577299 0.363298 0.44488299 0.36564299 0.444686\n\t\t 0.35605901 0.44789299 0.356424 0.44789299 0.356424 0.447909 0.36598799 0.44488299\n\t\t 0.36564299 0.447909 0.36598799 0.44789299 0.356424 0.45192 0.35637 0.45192 0.35637\n\t\t 0.453096 0.365704 0.447909 0.36598799 0.453096 0.365704 0.45192 0.35637 0.46219 0.352786\n\t\t 0.46219 0.352786 0.46621501 0.36096901 0.453096 0.365704 0.46621501 0.36096901 0.46219\n\t\t 0.352786 0.46412501 0.35062301 0.46412501 0.35062301 0.46913999 0.35850701 0.46621501\n\t\t 0.36096901 0.46913999 0.35850701 0.46412501 0.35062301 0.46489301 0.347826 0.46489301\n\t\t 0.347826 0.47121599 0.35637799 0.46913999 0.35850701 0.458498 0.35010099 0.46219\n\t\t 0.352786 0.45192 0.35637 0.45192 0.35637 0.450966 0.35289299 0.458498 0.35010099\n\t\t 0.450966 0.35289299 0.45192 0.35637 0.44789299 0.356424 0.44789299 0.356424 0.44764301\n\t\t 0.35273501 0.450966 0.35289299 0.46219 0.352786 0.458498 0.35010099 0.45950001 0.34871\n\t\t 0.45950001 0.34871 0.46412501 0.35062301 0.46219 0.352786 0.46412501 0.35062301 0.45950001\n\t\t 0.34871 0.459997 0.345698 0.459997 0.345698 0.46489301 0.347826 0.46412501 0.35062301\n\t\t 0.44764301 0.35273501 0.44789299 0.356424 0.444686 0.35605901 0.444686 0.35605901\n\t\t 0.44392499 0.352202 0.44764301 0.35273501 0.44392499 0.352202 0.444686 0.35605901\n\t\t 0.436207 0.353935 0.436207 0.353935 0.43606901 0.350173 0.44392499 0.352202 0.40911701\n\t\t 0.34504199 0.43606901 0.350173 0.436207 0.353935 0.436207 0.353935 0.40880099 0.34859699\n\t\t 0.40911701 0.34504199 0.40911701 0.34504199 0.40880099 0.34859699 0.380007 0.34933001\n\t\t 0.380007 0.34933001 0.379776 0.345754 0.40911701 0.34504199 0.379776 0.345754 0.380007\n\t\t 0.34933001 0.36847401 0.35149199 0.36847401 0.35149199 0.36801299 0.34792599 0.379776\n\t\t 0.345754 0.36801299 0.34792599 0.36847401 0.35149199;\n\tsetAttr \".uvst[0].uvsp[6500:6749]\" 0.36170799 0.352925 0.36170799 0.352925 0.36100599\n\t\t 0.34939101 0.36801299 0.34792599 0.36100599 0.34939101 0.36170799 0.352925 0.350164\n\t\t 0.35610399 0.350164 0.35610399 0.349013 0.35265899 0.36100599 0.34939101 0.349013\n\t\t 0.35265899 0.350164 0.35610399 0.347305 0.35734999 0.347305 0.35734999 0.34672701\n\t\t 0.353459 0.349013 0.35265899 0.342926 0.35348499 0.34672701 0.353459 0.347305 0.35734999\n\t\t 0.347305 0.35734999 0.3427 0.35729799 0.342926 0.35348499 0.342926 0.35348499 0.3427\n\t\t 0.35729799 0.33930501 0.35593599 0.33930501 0.35593599 0.34010899 0.35247901 0.342926\n\t\t 0.35348499 0.34010899 0.35247901 0.33930501 0.35593599 0.32208499 0.35254601 0.32208499\n\t\t 0.35254601 0.32262701 0.34900099 0.34010899 0.35247901 0.32262701 0.34900099 0.32208499\n\t\t 0.35254601 0.31327501 0.35168901 0.31327501 0.35168901 0.313629 0.34813499 0.32262701\n\t\t 0.34900099 0.313629 0.34813499 0.31327501 0.35168901 0.30050901 0.35089201 0.30050901\n\t\t 0.35089201 0.300713 0.347325 0.313629 0.34813499 0.27057201 0.347664 0.300713 0.347325\n\t\t 0.30050901 0.35089201 0.30050901 0.35089201 0.27077499 0.35124499 0.27057201 0.347664\n\t\t 0.245281 0.34977901 0.27057201 0.347664 0.27077499 0.35124499 0.27077499 0.35124499\n\t\t 0.24347501 0.35370001 0.245281 0.34977901 0.245281 0.34977901 0.24347501 0.35370001\n\t\t 0.236157 0.35372701 0.236157 0.35372701 0.23965 0.349767 0.245281 0.34977901 0.53700697\n\t\t 0.203738 0.54662901 0.203738 0.54662901 0.20830201 0.54662901 0.20830201 0.53700697\n\t\t 0.20830201 0.53700697 0.203738 0.53700697 0.203738 0.53700697 0.20830201 0.52739501\n\t\t 0.20830201 0.52739501 0.20830201 0.52739501 0.203738 0.53700697 0.203738 0.54662901\n\t\t 0.20830201 0.54662901 0.203738 0.55623502 0.203738 0.55623502 0.203738 0.55635399\n\t\t 0.20843101 0.54662901 0.20830201 0.51781899 0.203738 0.52739501 0.203738 0.52739501\n\t\t 0.20830201 0.52739501 0.20830201 0.51781899 0.20830201 0.51781899 0.203738 0.51781899\n\t\t 0.203738 0.51781899 0.20830201 0.50826001 0.20830201 0.50826001 0.20830201 0.50826001\n\t\t 0.203738 0.51781899 0.203738 0.49872699 0.203738 0.50826001 0.203738 0.50826001 0.20830201\n\t\t 0.50826001 0.20830201 0.49872699 0.20830201 0.49872699 0.203738 0.49872699 0.203738\n\t\t 0.49872699 0.20830201 0.48919401 0.20830201 0.48919401 0.20830201 0.48919401 0.203738\n\t\t 0.49872699 0.203738 0.47966799 0.203738 0.48919401 0.203738 0.48919401 0.20830201\n\t\t 0.48919401 0.20830201 0.47966799 0.20830201 0.47966799 0.203738 0.47966799 0.203738\n\t\t 0.47966799 0.20830201 0.470121 0.20830201 0.470121 0.20830201 0.470121 0.203738 0.47966799\n\t\t 0.203738 0.46056101 0.203738 0.470121 0.203738 0.470121 0.20830201 0.470121 0.20830201\n\t\t 0.46056101 0.20830201 0.46056101 0.203738 0.46056101 0.203738 0.46056101 0.20830201\n\t\t 0.45096499 0.20830201 0.45096499 0.20830201 0.45096499 0.203738 0.46056101 0.203738\n\t\t 0.441349 0.203738 0.45096499 0.203738 0.45096499 0.20830201 0.45096499 0.20830201\n\t\t 0.441349 0.20830201 0.441349 0.203738 0.441349 0.203738 0.441349 0.20830201 0.43169799\n\t\t 0.20830201 0.43169799 0.20830201 0.43169799 0.203738 0.441349 0.203738 0.422052 0.203738\n\t\t 0.43169799 0.203738 0.43169799 0.20830201 0.43169799 0.20830201 0.422052 0.20830201\n\t\t 0.422052 0.203738 0.422052 0.203738 0.422052 0.20830201 0.41246 0.20830201 0.41246\n\t\t 0.20830201 0.41246 0.203738 0.422052 0.203738 0.41246 0.217971 0.41246 0.20830201\n\t\t 0.422052 0.20830201 0.41246 0.20830201 0.41246 0.217971 0.403391 0.217968 0.403391\n\t\t 0.217968 0.40340099 0.20829999 0.41246 0.20830201 0.422052 0.20830201 0.422052 0.217971\n\t\t 0.41246 0.217971 0.422052 0.217971 0.422052 0.20830201 0.43169799 0.20830201 0.43169799\n\t\t 0.20830201 0.43169799 0.217971 0.422052 0.217971 0.43169799 0.217971 0.43169799 0.20830201\n\t\t 0.441349 0.20830201 0.441349 0.20830201 0.441349 0.217971 0.43169799 0.217971 0.441349\n\t\t 0.217971 0.441349 0.20830201 0.45096499 0.20830201 0.45096499 0.20830201 0.45096499\n\t\t 0.217971 0.441349 0.217971 0.46056101 0.20830201 0.46056101 0.217971 0.45096499 0.217971\n\t\t 0.45096499 0.217971 0.45096499 0.20830201 0.46056101 0.20830201 0.46056101 0.217971\n\t\t 0.46056101 0.20830201 0.470121 0.20830201 0.470121 0.20830201 0.470121 0.217971 0.46056101\n\t\t 0.217971 0.470121 0.217971 0.470121 0.20830201 0.47966799 0.20830201 0.47966799 0.20830201\n\t\t 0.47966799 0.217971 0.470121 0.217971 0.47966799 0.217971 0.47966799 0.20830201 0.48919401\n\t\t 0.20830201 0.48919401 0.20830201 0.48919401 0.217971 0.47966799 0.217971 0.48919401\n\t\t 0.217971 0.48919401 0.20830201 0.49872699 0.20830201 0.49872699 0.20830201 0.49872699\n\t\t 0.217971 0.48919401 0.217971 0.49872699 0.217971 0.49872699 0.20830201 0.50826001\n\t\t 0.20830201 0.50826001 0.20830201 0.50826001 0.217971 0.49872699 0.217971 0.50826001\n\t\t 0.217971 0.50826001 0.20830201 0.51781899 0.20830201 0.51781899 0.20830201 0.51781899\n\t\t 0.217971 0.50826001 0.217971 0.51781899 0.217971 0.51781899 0.20830201 0.52739501\n\t\t 0.20830201 0.52739501 0.20830201 0.52739501 0.217971 0.51781899 0.217971 0.52739501\n\t\t 0.217971 0.52739501 0.20830201 0.53700697 0.20830201 0.53700697 0.20830201 0.53700697\n\t\t 0.217971 0.52739501 0.217971 0.53700697 0.217971 0.53700697 0.20830201 0.54662901\n\t\t 0.20830201 0.54662901 0.20830201 0.54662901 0.217971 0.53700697 0.217971 0.54662901\n\t\t 0.217971 0.54662901 0.20830201 0.55635399 0.20843101 0.55635399 0.20843101 0.55623502\n\t\t 0.217971 0.54662901 0.217971;\n\tsetAttr \".uvst[0].uvsp[6750:6999]\" 0.56634003 0.207724 0.55635399 0.20843101\n\t\t 0.55623502 0.203738 0.55623502 0.203738 0.56577897 0.20308 0.56634003 0.207724 0.44215599\n\t\t 0.0089539997 0.44615301 0.012265 0.44331801 0.017507 0.44331801 0.017507 0.43835899\n\t\t 0.015974 0.44215599 0.0089539997 0.43835899 0.015974 0.44331801 0.017507 0.442702\n\t\t 0.023452001 0.442702 0.023452001 0.437534 0.023937 0.43835899 0.015974 0.437534 0.023937\n\t\t 0.442702 0.023452001 0.44440401 0.029162999 0.44440401 0.029162999 0.43981299 0.031585999\n\t\t 0.437534 0.023937 0.43981299 0.031585999 0.44440401 0.029162999 0.44817299 0.033803001\n\t\t 0.44817299 0.033803001 0.44486099 0.037799999 0.43981299 0.031585999 0.44486099 0.037799999\n\t\t 0.44817299 0.033803001 0.45341399 0.036637999 0.45341399 0.036637999 0.45188099 0.041597001\n\t\t 0.44486099 0.037799999 0.45188099 0.041597001 0.45341399 0.036637999 0.45936 0.037253\n\t\t 0.45936 0.037253 0.45984399 0.042420998 0.45188099 0.041597001 0.45984399 0.042420998\n\t\t 0.45936 0.037253 0.46507099 0.035551999 0.46507099 0.035551999 0.467493 0.040143002\n\t\t 0.45984399 0.042420998 0.467493 0.040143002 0.46507099 0.035551999 0.46970999 0.031783\n\t\t 0.46970999 0.031783 0.47370699 0.035094 0.467493 0.040143002 0.47370699 0.035094\n\t\t 0.46970999 0.031783 0.472545 0.026542 0.472545 0.026542 0.47750399 0.028075 0.47370699\n\t\t 0.035094 0.47750399 0.028075 0.472545 0.026542 0.47316101 0.020595999 0.47316101\n\t\t 0.020595999 0.47832799 0.020111 0.47750399 0.028075 0.47832799 0.020111 0.47316101\n\t\t 0.020595999 0.471459 0.014885 0.471459 0.014885 0.47604999 0.012463 0.47832799 0.020111\n\t\t 0.47604999 0.012463 0.471459 0.014885 0.46768999 0.010246 0.46768999 0.010246 0.47100201\n\t\t 0.0062489999 0.47604999 0.012463 0.47100201 0.0062489999 0.46768999 0.010246 0.46244901\n\t\t 0.0074109999 0.46244901 0.0074109999 0.46398199 0.002452 0.47100201 0.0062489999\n\t\t 0.46398199 0.002452 0.46244901 0.0074109999 0.456503 0.0067949998 0.456503 0.0067949998\n\t\t 0.45601901 0.001627 0.46398199 0.002452 0.45601901 0.001627 0.456503 0.0067949998\n\t\t 0.450793 0.0084969997 0.450793 0.0084969997 0.44837001 0.0039059999 0.45601901 0.001627\n\t\t 0.44837001 0.0039059999 0.450793 0.0084969997 0.44615301 0.012265 0.44615301 0.012265\n\t\t 0.44215599 0.0089539997 0.44837001 0.0039059999 0.70117998 0.218169 0.70117998 0.215358\n\t\t 0.70609599 0.215358 0.70609599 0.215358 0.70609599 0.218169 0.70117998 0.218169 0.70609599\n\t\t 0.218169 0.70609599 0.215358 0.711016 0.215358 0.711016 0.215358 0.711016 0.218169\n\t\t 0.70609599 0.218169 0.711016 0.218169 0.711016 0.215358 0.71592999 0.215358 0.71592999\n\t\t 0.215358 0.71592999 0.218169 0.711016 0.218169 0.71592999 0.218169 0.71592999 0.215358\n\t\t 0.720851 0.215358 0.720851 0.215358 0.720851 0.218169 0.71592999 0.218169 0.70117998\n\t\t 0.215358 0.70117998 0.218169 0.69625998 0.218169 0.69625998 0.218169 0.69625998 0.215358\n\t\t 0.70117998 0.215358 0.69625998 0.215358 0.69625998 0.218169 0.69134498 0.218169 0.69134498\n\t\t 0.218169 0.69134498 0.215358 0.69625998 0.215358 0.69134498 0.215358 0.69134498 0.218169\n\t\t 0.686423 0.218169 0.686423 0.218169 0.686423 0.215358 0.69134498 0.215358 0.686423\n\t\t 0.215358 0.686423 0.218169 0.68150598 0.218169 0.68150598 0.218169 0.68150598 0.215358\n\t\t 0.686423 0.215358 0.68150598 0.215358 0.68150598 0.218169 0.67658401 0.218169 0.67658401\n\t\t 0.218169 0.67658401 0.215358 0.68150598 0.215358 0.67658401 0.215358 0.67658401 0.218169\n\t\t 0.67166501 0.218169 0.67166501 0.218169 0.67166501 0.215358 0.67658401 0.215358 0.67166501\n\t\t 0.215358 0.67166501 0.218169 0.66674 0.218169 0.66674 0.218169 0.66674 0.215358 0.67166501\n\t\t 0.215358 0.66674 0.215358 0.66674 0.218169 0.66182101 0.218169 0.66182101 0.218169\n\t\t 0.66182101 0.215358 0.66674 0.215358 0.66182101 0.215358 0.66182101 0.218169 0.656896\n\t\t 0.218169 0.656896 0.218169 0.656896 0.215358 0.66182101 0.215358 0.656896 0.215358\n\t\t 0.656896 0.218169 0.651977 0.218169 0.651977 0.218169 0.651977 0.215358 0.656896\n\t\t 0.215358 0.651977 0.215358 0.651977 0.218169 0.64705402 0.218169 0.64705402 0.218169\n\t\t 0.64705402 0.215358 0.651977 0.215358 0.64705402 0.215358 0.64705402 0.218169 0.64219099\n\t\t 0.218128 0.64219099 0.218128 0.64223498 0.215317 0.64705402 0.215358 0.63389999 0.208932\n\t\t 0.62909502 0.208932 0.62909502 0.20627899 0.62909502 0.20627899 0.63389999 0.20627899\n\t\t 0.63389999 0.208932 0.63389999 0.208932 0.63389999 0.20627899 0.63869101 0.20627899\n\t\t 0.63869101 0.20627899 0.63869101 0.208932 0.63389999 0.208932 0.643466 0.208932 0.63869101\n\t\t 0.208932 0.63869101 0.20627899 0.63869101 0.20627899 0.643466 0.20627899 0.643466\n\t\t 0.208932 0.643466 0.208932 0.643466 0.20627899 0.64825702 0.20627899 0.64825702 0.20627899\n\t\t 0.64825702 0.208932 0.643466 0.208932 0.62909502 0.20627899 0.62909502 0.208932 0.62428498\n\t\t 0.208932 0.62428498 0.208932 0.62428498 0.20627899 0.62909502 0.20627899 0.61947697\n\t\t 0.20627899 0.62428498 0.20627899 0.62428498 0.208932 0.62428498 0.208932 0.61947697\n\t\t 0.208932 0.61947697 0.20627899 0.61947697 0.20627899 0.61947697 0.208932 0.61466801\n\t\t 0.208932 0.61466801 0.208932 0.61466801 0.20627899 0.61947697 0.20627899 0.60986501\n\t\t 0.20627899 0.61466801 0.20627899 0.61466801 0.208932 0.61466801 0.208932 0.60986501\n\t\t 0.208932 0.60986501 0.20627899 0.60986501 0.20627899 0.60986501 0.208932 0.60505599\n\t\t 0.208932 0.60505599 0.208932;\n\tsetAttr \".uvst[0].uvsp[7000:7249]\" 0.60505599 0.20627899 0.60986501 0.20627899\n\t\t 0.60025299 0.20627899 0.60505599 0.20627899 0.60505599 0.208932 0.60505599 0.208932\n\t\t 0.60025299 0.208932 0.60025299 0.20627899 0.60025299 0.20627899 0.60025299 0.208932\n\t\t 0.59544301 0.208932 0.59544301 0.208932 0.59544301 0.20627899 0.60025299 0.20627899\n\t\t 0.59063399 0.20627899 0.59544301 0.20627899 0.59544301 0.208932 0.59544301 0.208932\n\t\t 0.59063399 0.208932 0.59063399 0.20627899 0.59063399 0.20627899 0.59063399 0.208932\n\t\t 0.58581197 0.208932 0.58581197 0.208932 0.58581197 0.20627899 0.59063399 0.20627899\n\t\t 0.58099401 0.20627899 0.58581197 0.20627899 0.58581197 0.208932 0.58581197 0.208932\n\t\t 0.58099401 0.208932 0.58099401 0.20627899 0.58099401 0.20627899 0.58099401 0.208932\n\t\t 0.57617497 0.208932 0.57617497 0.208932 0.57617497 0.20627899 0.58099401 0.20627899\n\t\t 0.64825702 0.20627899 0.65324497 0.20608 0.653566 0.20846701 0.653566 0.20846701\n\t\t 0.64819801 0.208684 0.64825702 0.20627899 0.88393098 0.096786998 0.888556 0.095351003\n\t\t 0.89339298 0.095794998 0.88393098 0.096786998 0.89339298 0.095794998 0.87794298 0.10418\n\t\t 0.89339298 0.095794998 0.88632703 0.11963 0.87794298 0.10418 0.89339298 0.095794998\n\t\t 0.90177798 0.111245 0.88632703 0.11963 0.89339298 0.095794998 0.90078503 0.101784\n\t\t 0.90177798 0.111245 0.89339298 0.095794998 0.89767897 0.098049 0.90078503 0.101784\n\t\t 0.90078503 0.101784 0.90222198 0.106408 0.90177798 0.111245 0.90177798 0.111245 0.89578903\n\t\t 0.118637 0.88632703 0.11963 0.90177798 0.111245 0.89952397 0.115531 0.89578903 0.118637\n\t\t 0.89578903 0.118637 0.89116502 0.120074 0.88632703 0.11963 0.88632703 0.11963 0.87893498\n\t\t 0.113641 0.87794298 0.10418 0.88632703 0.11963 0.88204199 0.117375 0.87893498 0.113641\n\t\t 0.87893498 0.113641 0.87749898 0.109017 0.87794298 0.10418 0.88393098 0.096786998\n\t\t 0.87794298 0.10418 0.88019699 0.099894002 0.72677302 0.2403 0.72658002 0.236624 0.74326199\n\t\t 0.236762 0.74326199 0.236762 0.743393 0.240458 0.74326199 0.236762 0.74603802 0.23697001\n\t\t 0.74603802 0.23697001 0.745915 0.24062499 0.745915 0.24062499 0.74603802 0.23697001\n\t\t 0.74792701 0.23739199 0.74792701 0.23739199 0.74743998 0.240972 0.745915 0.24062499\n\t\t 0.72658002 0.236624 0.72228098 0.24032301 0.72211802 0.236654 0.72658002 0.236624\n\t\t 0.72211802 0.236654 0.72017002 0.240422 0.72005397 0.236742 0.72211802 0.236654 0.74743998\n\t\t 0.240972 0.74792701 0.23739199 0.749304 0.237873 0.749304 0.237873 0.748469 0.241458\n\t\t 0.74743998 0.240972 0.749304 0.237873 0.750736 0.238416 0.750736 0.238416 0.74973702\n\t\t 0.242071 0.72005397 0.236742 0.718602 0.240527 0.71864402 0.23684201 0.72005397 0.236742\n\t\t 0.71864402 0.23684201 0.698672 0.24072701 0.69898802 0.23705401 0.71864402 0.23684201\n\t\t 0.69898802 0.23705401 0.69702202 0.240631 0.697537 0.23698699 0.69898802 0.23705401\n\t\t 0.697537 0.23698699 0.69494301 0.24056 0.69550502 0.236931 0.697537 0.23698699 0.69550502\n\t\t 0.236931 0.69080198 0.240555 0.69138801 0.236921 0.69550502 0.236931 0.69138801 0.236921\n\t\t 0.67595601 0.24044 0.67656201 0.236789 0.69138801 0.236921 0.67656201 0.236789 0.67354399\n\t\t 0.240391 0.67394203 0.23675901 0.67656201 0.236789 0.67394203 0.23675901 0.67354399\n\t\t 0.240391 0.671857 0.240426 0.67194498 0.236821 0.67394203 0.23675901 0.67194498 0.236821\n\t\t 0.671857 0.240426 0.67062998 0.240538 0.67041397 0.236858 0.67194498 0.236821 0.67041397\n\t\t 0.236858 0.669119 0.240641 0.66880602 0.236938 0.67041397 0.236858 0.66880602 0.236938\n\t\t 0.627114 0.240454 0.62691599 0.236788 0.66880602 0.236938 0.690741 0.242332 0.69080198\n\t\t 0.240555 0.69494301 0.24056 0.69494301 0.24056 0.69480199 0.24232 0.690741 0.242332\n\t\t 0.69480199 0.24232 0.69494301 0.24056 0.69702202 0.240631 0.69702202 0.240631 0.69685602\n\t\t 0.24241599 0.69480199 0.24232 0.69685602 0.24241599 0.69702202 0.240631 0.698672\n\t\t 0.24072701 0.698672 0.24072701 0.69852602 0.242516 0.69685602 0.24241599 0.69852602\n\t\t 0.242516 0.698672 0.24072701 0.718602 0.240527 0.718602 0.240527 0.71879399 0.242305\n\t\t 0.69852602 0.242516 0.71879399 0.242305 0.718602 0.240527 0.72017002 0.240422 0.72017002\n\t\t 0.240422 0.72035998 0.2422 0.71879399 0.242305 0.72035998 0.2422 0.72017002 0.240422\n\t\t 0.72228098 0.24032301 0.72228098 0.24032301 0.72242397 0.242083 0.72035998 0.2422\n\t\t 0.72242397 0.242083 0.72228098 0.24032301 0.72677302 0.2403 0.72677302 0.2403 0.72679299\n\t\t 0.242081 0.72242397 0.242083 0.72679299 0.242081 0.72677302 0.2403 0.743393 0.240458\n\t\t 0.743393 0.240458 0.743038 0.242255 0.72679299 0.242081 0.743038 0.242255 0.743393\n\t\t 0.240458 0.745915 0.24062499 0.745915 0.24062499 0.74526501 0.24236199 0.743038 0.242255\n\t\t 0.74526501 0.24236199 0.745915 0.24062499 0.74743998 0.240972 0.74743998 0.240972\n\t\t 0.74656898 0.24246 0.74526501 0.24236199 0.74656898 0.24246 0.74743998 0.240972 0.748469\n\t\t 0.241458 0.748469 0.241458 0.74753398 0.24304099 0.74656898 0.24246 0.74753398 0.24304099\n\t\t 0.748469 0.241458 0.74973702 0.242071 0.74973702 0.242071 0.748595 0.243726 0.74753398\n\t\t 0.24304099 0.69080198 0.240555 0.690741 0.242332 0.67611003 0.24224401 0.67611003\n\t\t 0.24224401 0.67595601 0.24044 0.69080198 0.240555 0.67595601 0.24044 0.67611003 0.24224401\n\t\t 0.67382598 0.24214201 0.67382598 0.24214201 0.67354399 0.240391 0.67595601 0.24044\n\t\t 0.67354399 0.240391;\n\tsetAttr \".uvst[0].uvsp[7250:7499]\" 0.67382598 0.24214201 0.67224002 0.24206699\n\t\t 0.67224002 0.24206699 0.671857 0.240426 0.67354399 0.240391 0.671857 0.240426 0.67224002\n\t\t 0.24206699 0.67085803 0.24233 0.67085803 0.24233 0.67062998 0.240538 0.671857 0.240426\n\t\t 0.67062998 0.240538 0.67085803 0.24233 0.66930699 0.242485 0.66930699 0.242485 0.669119\n\t\t 0.240641 0.67062998 0.240538 0.669119 0.240641 0.66930699 0.242485 0.62714499 0.24221601\n\t\t 0.62714499 0.24221601 0.627114 0.240454 0.669119 0.240641 0.432439 0.10012 0.43568501\n\t\t 0.103565 0.445032 0.119029 0.432439 0.10012 0.445032 0.119029 0.430574 0.099127002\n\t\t 0.445032 0.119029 0.44459701 0.122412 0.430574 0.099127002 0.445032 0.119029 0.44571799\n\t\t 0.121148 0.44459701 0.122412 0.44571799 0.121148 0.44556201 0.122231 0.44459701 0.122412\n\t\t 0.44459701 0.122412 0.395702 0.121227 0.430574 0.099127002 0.395702 0.121227 0.40053001\n\t\t 0.103368 0.430574 0.099127002 0.395702 0.121227 0.394171 0.12119 0.40053001 0.103368\n\t\t 0.394171 0.12119 0.39258599 0.119713 0.40053001 0.103368 0.394171 0.12119 0.39301699\n\t\t 0.120928 0.39258599 0.119713 0.39258599 0.119713 0.393029 0.11759 0.40053001 0.103368\n\t\t 0.40053001 0.103368 0.42923999 0.098814003 0.430574 0.099127002 0.40053001 0.103368\n\t\t 0.406618 0.098819003 0.42923999 0.098814003 0.40053001 0.103368 0.403409 0.100123\n\t\t 0.406618 0.098819003 0.403409 0.100123 0.40521401 0.099123001 0.406618 0.098819003\n\t\t 0.44459701 0.122412 0.443259 0.122378 0.395702 0.121227 0.66329598 0.53956801 0.665142\n\t\t 0.55387503 0.61435199 0.55955499 0.612836 0.54170102 0.66700703 0.56758499 0.61367798\n\t\t 0.577106 0.60794401 0.56008703 0.60752499 0.57678097 0.60775298 0.54380298 0.59163803\n\t\t 0.541529 0.59123403 0.54274303 0.59222001 0.583772 0.59149301 0.58279502 0.35351199\n\t\t 0.49354801 0.29350501 0.48995799 0.29770699 0.46884799 0.357959 0.47560799 0.399544\n\t\t 0.49696901 0.40340301 0.48146099 0.26529399 0.46665299 0.26147199 0.48925999 0.42238399\n\t\t 0.48355001 0.41911301 0.49823201 0.36274099 0.45888999 0.40673199 0.46639001 0.30388501\n\t\t 0.45039901 0.27179801 0.44722101 0.232797 0.467372 0.239416 0.44698799 0.18879201\n\t\t 0.44670099 0.181431 0.467796 0.14919899 0.443515 0.140249 0.46684301 0.176552 0.49251699\n\t\t 0.229188 0.49110299 0.13641401 0.49016801 0.13248 0.48707399 0.133148 0.46689999\n\t\t 0.13129801 0.483742 0.141013 0.44868201 0.143519 0.44597799 0.146791 0.444278 0.42507201\n\t\t 0.46931601 0.104667 0.61258399 0.103958 0.61321902 0.090680003 0.59758103 0.090680003\n\t\t 0.59758103 0.091200002 0.59672099 0.104667 0.61258399 0.103958 0.61321902 0.104667\n\t\t 0.61258399 0.118742 0.62760597 0.118742 0.62760597 0.117816 0.62801802 0.103958 0.61321902\n\t\t 0.100029 0.61672699 0.103958 0.61321902 0.117816 0.62801802 0.117816 0.62801802 0.108865\n\t\t 0.62623501 0.100029 0.61672699 0.108865 0.62623501 0.117816 0.62801802 0.09888 0.635692\n\t\t 0.100041 0.629282 0.108865 0.62623501 0.100041 0.629282 0.089910999 0.62596297 0.093734004\n\t\t 0.62238401 0.100041 0.629282 0.093734004 0.62238401 0.080954999 0.61546302 0.087287001\n\t\t 0.61489302 0.093734004 0.62238401 0.087287001 0.61489302 0.090680003 0.59758103 0.103958\n\t\t 0.61321902 0.100029 0.61672699 0.091367997 0.60661602 0.091367997 0.60661602 0.090680003\n\t\t 0.59758103 0.103958 0.61321902 0.090680003 0.59758103 0.091367997 0.60661602 0.087287001\n\t\t 0.61489302 0.006327 0.298406 0.0099529997 0.27811 0.057202999 0.27250001 0.0061349999\n\t\t 0.29938301 0.006327 0.298406 0.0061349999 0.29938301 0.058857001 0.29280499 0.058857001\n\t\t 0.29280499 0.080548003 0.27046201 0.082183003 0.29082701 0.058857001 0.29280499 0.082183003\n\t\t 0.29082701 0.12530001 0.26653701 0.127142 0.28692499 0.082183003 0.29082701 0.127142\n\t\t 0.28692499 0.18276 0.26186499 0.184037 0.282179 0.127142 0.28692499 0.184037 0.282179\n\t\t 0.21371 0.26042899 0.21425299 0.28079399 0.184037 0.282179 0.21425299 0.28079399\n\t\t 0.24492399 0.260346 0.24440999 0.28066501 0.21425299 0.28079399 0.24440999 0.28066501\n\t\t 0.294552 0.26396099 0.29013699 0.283851 0.24440999 0.28066501 0.29013699 0.283851\n\t\t 0.33649501 0.27431199 0.33498001 0.29764301 0.29013699 0.283851 0.33498001 0.29764301\n\t\t 0.34002301 0.27490199 0.33996099 0.29891399 0.33498001 0.29764301 0.33996099 0.29891399\n\t\t 0.344302 0.27548701 0.34355599 0.29962099 0.33996099 0.29891399 0.34718701 0.29982001\n\t\t 0.34355599 0.29962099 0.34901899 0.27574801 0.34718701 0.29982001 0.374116 0.299007\n\t\t 0.34718701 0.29982001 0.37336501 0.274968 0.374116 0.299007 0.374116 0.299007 0.39527199\n\t\t 0.27687401 0.39788601 0.30092001 0.374116 0.299007 0.39788601 0.30092001 0.399611\n\t\t 0.276925 0.40132099 0.30086699 0.39788601 0.30092001 0.408622 0.29900301 0.40132099\n\t\t 0.30086699 0.399611 0.276925 0.399611 0.276925 0.40708101 0.275812 0.408622 0.29900301\n\t\t 0.408622 0.29900301 0.40708101 0.275812 0.44992399 0.26482001 0.454355 0.284621 0.408622\n\t\t 0.29900301 0.454355 0.284621 0.50152302 0.26065001 0.50234902 0.280904 0.454355 0.284621\n\t\t 0.50234902 0.280904 0.53389299 0.26057801 0.53359401 0.280864 0.50234902 0.280904\n\t\t 0.53359401 0.280864 0.56597298 0.262191 0.56490302 0.28246301 0.53359401 0.280864\n\t\t 0.56490302 0.28246301 0.62564403 0.26703101 0.62393999 0.287305 0.56490302 0.28246301\n\t\t 0.62393999 0.287305 0.67231601 0.27101299 0.67091298 0.29127899 0.62393999 0.287305\n\t\t 0.69557202 0.29304299 0.67091298 0.29127899 0.69682199 0.272843 0.69557202 0.29304299;\n\tsetAttr \".uvst[0].uvsp[7500:7749]\" 0.69557202 0.29304299 0.74862403 0.27713999\n\t\t 0.69557202 0.29304299 0.75331402 0.297288 0.69557202 0.29304299 0.75331402 0.297288\n\t\t 0.753555 0.29826301 0.77850997 0.016837999 0.77827603 0.017269 0.76355898 0.016628001\n\t\t 0.763578 0.016217001 0.74435502 0.015768001 0.74436998 0.015356 0.734043 0.015507\n\t\t 0.73405099 0.015095 0.72366899 0.015472 0.72367299 0.01506 0.70722198 0.01534 0.70724797\n\t\t 0.014929 0.69374502 0.014505 0.69365698 0.014045 0.69141102 0.014086 0.691791 0.014649\n\t\t 0.69045401 0.015852001 0.69011998 0.015326 0.689578 0.017431 0.68928099 0.016926\n\t\t 0.68705302 0.026703 0.68718398 0.026721001 0.68557 0.034699 0.68609202 0.034318 0.68640399\n\t\t 0.036024 0.68582398 0.036417 0.68887198 0.037671 0.688622 0.038093001 0.70242602\n\t\t 0.037863001 0.70242399 0.038275 0.71939498 0.037037998 0.719419 0.037448999 0.730102\n\t\t 0.036251999 0.73013198 0.036663 0.74076498 0.035434999 0.74079698 0.035845 0.760647\n\t\t 0.033792 0.76068401 0.034201998 0.77595901 0.032285001 0.77617598 0.032696001 0.42182201\n\t\t 0.49960101 0.41911301 0.49823201 0.42238399 0.48355001 0.42238399 0.48355001 0.42526001\n\t\t 0.48413199 0.42238399 0.48355001 0.42507201 0.46931601 0.42507201 0.46931601 0.428141\n\t\t 0.46894601 0.78977299 0.36907199 0.78976703 0.37218601 0.76439101 0.372179 0.76438898\n\t\t 0.36908001 0.72524601 0.372177 0.72524601 0.36907801 0.668993 0.37217 0.668993 0.36907101\n\t\t 0.63776201 0.37216401 0.63776201 0.36906499 0.60587901 0.37215999 0.60588002 0.36906099\n\t\t 0.55011499 0.369055 0.55011398 0.37215501 0.50157201 0.372161 0.50157499 0.36905301\n\t\t 0.496602 0.36905801 0.49659899 0.37215999 0.493404 0.37215799 0.493404 0.36906001\n\t\t 0.48958701 0.37215099 0.48958799 0.369057 0.47008899 0.36904001 0.47008401 0.37213701\n\t\t 0.45091099 0.36902601 0.45091099 0.37211499 0.447478 0.37210199 0.447467 0.36901501\n\t\t 0.44111201 0.37209901 0.441111 0.36899799 0.441111 0.36899799 0.44111201 0.37209901\n\t\t 0.40735999 0.37209699 0.40736601 0.36899799 0.441111 0.36899799 0.36148801 0.37210101\n\t\t 0.36149201 0.369001 0.330064 0.37210399 0.33006799 0.369003 0.297052 0.37210599 0.29705501\n\t\t 0.36900601 0.23399401 0.36900899 0.233991 0.37211001 0.18262701 0.37211201 0.18263\n\t\t 0.369012 0.15643699 0.372105 0.15640999 0.36900401 0.107224 0.296105 0.107185 0.304571\n\t\t 0.097300999 0.30428001 0.097300999 0.30428001 0.093925998 0.29568899 0.107224 0.296105\n\t\t 0.107185 0.304571 0.107224 0.296105 0.120205 0.29598001 0.120205 0.29598001 0.116527\n\t\t 0.30455899 0.107185 0.304571 0.53473198 0.070522003 0.53404897 0.061560001 0.54470497\n\t\t 0.060621999 0.54470497 0.060621999 0.54538798 0.069583997 0.53473198 0.070522003\n\t\t 0.54410499 0.052149002 0.54470497 0.060621999 0.53404897 0.061560001 0.53404897 0.061560001\n\t\t 0.53344899 0.053087 0.54410499 0.052149002 0.73947698 0.26066601 0.73932999 0.24997\n\t\t 0.74765599 0.25286299 0.74765599 0.25286299 0.74780297 0.26355901 0.73947698 0.26066601\n\t\t 0.57358599 0.55712003 0.58657497 0.557401 0.58600402 0.569148 0.58600402 0.569148\n\t\t 0.57302499 0.56886798 0.57358599 0.55712003 0.59930003 0.569565 0.58600402 0.569148\n\t\t 0.58657497 0.557401 0.58657497 0.557401 0.59988302 0.55781901 0.59930003 0.569565\n\t\t 0.56447798 0.079414003 0.55619502 0.082171001 0.55615902 0.071474999 0.55615902 0.071474999\n\t\t 0.56444198 0.068718001 0.56447798 0.079414003 0.193514 0.38251901 0.21823999 0.382543\n\t\t 0.219256 0.376589 0.194482 0.37621501 0.26245701 0.381432 0.263607 0.37535 0.214086\n\t\t 0.398599 0.189466 0.39827201 0.187534 0.40378499 0.212341 0.40412101 0.257274 0.40461299\n\t\t 0.25860301 0.39888299 0.265434 0.39880201 0.26430899 0.40451401 0.27057099 0.37539801\n\t\t 0.26925701 0.38131499 0.27193299 0.399535 0.265434 0.39880201 0.26430899 0.40451401\n\t\t 0.26430899 0.40451401 0.27246299 0.40634999 0.265434 0.39880201 0.27660501 0.38133699\n\t\t 0.26925701 0.38131499 0.265434 0.39880201 0.27057099 0.37539801 0.26925701 0.38131499\n\t\t 0.28032601 0.375204 0.27057099 0.37539801 0.90434402 0.177679 0.91274101 0.137961\n\t\t 0.910667 0.115645 0.89583403 0.185574 0.90277499 0.183698 0.75661498 0.273119 0.75379997\n\t\t 0.28426099 0.82487297 0.28268501 0.76301098 0.27287999 0.80336601 0.27692199 0.56298\n\t\t 0.049157999 0.56536001 0.053817 0.567644 0.051527001 0.56814599 0.048333 0.56667501\n\t\t 0.045453999 0.563793 0.043990001 0.56059998 0.044498999 0.55831599 0.046789002 0.557814\n\t\t 0.049982999 0.55928499 0.052862 0.56216699 0.054326002 0.0069889999 0.53664899 0.011656\n\t\t 0.53807998 0.013238 0.534702 0.00923 0.53191501 0.012905 0.52811098 0.00923 0.53191501\n\t\t 0.013238 0.534702 0.013238 0.534702 0.015759001 0.53207201 0.011656 0.53807998 0.0069889999\n\t\t 0.53664899 0.0062239999 0.54178202 0.011105 0.541852 0.011656 0.53807998 0.011105\n\t\t 0.541852 0.0062239999 0.54178202 0.006854 0.54690403 0.011579 0.54568398 0.011105\n\t\t 0.541852 0.011579 0.54568398 0.006854 0.54690403 0.0087839998 0.55168998 0.01302\n\t\t 0.54926503 0.011579 0.54568398 0.01302 0.54926503 0.0087839998 0.55168998 0.011938\n\t\t 0.55580997 0.015328 0.55229902 0.01302 0.54926503 0.015328 0.55229902 0.011938 0.55580997\n\t\t 0.016191 0.55886698 0.018348999 0.554488 0.015328 0.55229902 0.018348999 0.554488\n\t\t 0.016191 0.55886698 0.021249 0.56041598 0.021828 0.55556899 0.018348999 0.554488\n\t\t 0.021828 0.55556899 0.021249 0.56041598 0.026567999 0.56011403 0.025409 0.55537099\n\t\t 0.021828 0.55556899 0.012905 0.52811098 0.015759001 0.53207201 0.018988 0.53051001\n\t\t 0.017705999 0.52579999 0.012905 0.52811098;\n\tsetAttr \".uvst[0].uvsp[7750:7999]\" 0.71565402 0.254825 0.71565402 0.264543 0.72103298\n\t\t 0.264543 0.72103298 0.254825 0.72103298 0.254825 0.72103298 0.264543 0.726412 0.264543\n\t\t 0.726412 0.254825 0.72103298 0.254825 0.71565402 0.264543 0.71565402 0.254825 0.71027499\n\t\t 0.254825 0.71027499 0.264543 0.71565402 0.264543 0.71027499 0.264543 0.71027499 0.254825\n\t\t 0.70489597 0.254825 0.70489597 0.264543 0.71027499 0.264543 0.70489597 0.264543 0.70489597\n\t\t 0.254825 0.69951701 0.254825 0.69951701 0.264543 0.70489597 0.264543 0.69951701 0.264543\n\t\t 0.69951701 0.254825 0.69413698 0.254825 0.69413799 0.264543 0.69951701 0.264543 0.69413799\n\t\t 0.264543 0.69413698 0.254825 0.688757 0.254825 0.68875802 0.264543 0.69413799 0.264543\n\t\t 0.68875802 0.264543 0.688757 0.254825 0.68337798 0.25482601 0.68337899 0.26454401\n\t\t 0.68875802 0.264543 0.68337899 0.26454401 0.68337798 0.25482601 0.67799801 0.25482699\n\t\t 0.67799902 0.26454401 0.68337899 0.26454401 0.726412 0.254825 0.726412 0.264543 0.73179197\n\t\t 0.264543 0.73179197 0.254825 0.726412 0.254825 0.194482 0.37621501 0.219256 0.376589\n\t\t 0.21823999 0.382543 0.21823999 0.382543 0.193514 0.38251901 0.194482 0.37621501 0.26245701\n\t\t 0.381432 0.21823999 0.382543 0.219256 0.376589 0.219256 0.376589 0.263607 0.37535\n\t\t 0.26245701 0.381432 0.193514 0.38251901 0.21823999 0.382543 0.214086 0.398599 0.214086\n\t\t 0.398599 0.21823999 0.382543 0.26245701 0.381432 0.214086 0.398599 0.189466 0.39827201\n\t\t 0.193514 0.38251901 0.187534 0.40378499 0.189466 0.39827201 0.214086 0.398599 0.214086\n\t\t 0.398599 0.212341 0.40412101 0.187534 0.40378499 0.257274 0.40461299 0.212341 0.40412101\n\t\t 0.214086 0.398599 0.214086 0.398599 0.25860301 0.39888299 0.257274 0.40461299 0.26245701\n\t\t 0.381432 0.25860301 0.39888299 0.214086 0.398599 0.257274 0.40461299 0.25860301 0.39888299\n\t\t 0.265434 0.39880201 0.265434 0.39880201 0.25860301 0.39888299 0.26245701 0.381432\n\t\t 0.265434 0.39880201 0.26430899 0.40451401 0.257274 0.40461299 0.26245701 0.381432\n\t\t 0.263607 0.37535 0.27057099 0.37539801 0.27057099 0.37539801 0.26925701 0.38131499\n\t\t 0.26245701 0.381432 0.26245701 0.381432 0.26925701 0.38131499 0.265434 0.39880201\n\t\t 0.265434 0.39880201 0.27193299 0.399535 0.27246299 0.40634999 0.27246299 0.40634999\n\t\t 0.26430899 0.40451401 0.265434 0.39880201 0.27193299 0.399535 0.265434 0.39880201\n\t\t 0.26925701 0.38131499 0.26925701 0.38131499 0.27660501 0.38133699 0.27193299 0.399535\n\t\t 0.27660501 0.38133699 0.26925701 0.38131499 0.27057099 0.37539801 0.27057099 0.37539801\n\t\t 0.28032601 0.375204 0.27660501 0.38133699 0.90434402 0.177679 0.90277499 0.183698\n\t\t 0.89583403 0.185574 0.90434402 0.177679 0.89583403 0.185574 0.910667 0.115645 0.90434402\n\t\t 0.177679 0.910667 0.115645 0.91274101 0.137961 0.75379997 0.28426099 0.75661498 0.273119\n\t\t 0.76301098 0.27287999 0.75379997 0.28426099 0.76301098 0.27287999 0.80336601 0.27692199\n\t\t 0.75379997 0.28426099 0.80336601 0.27692199 0.82487297 0.28268501 0.56298 0.049157999\n\t\t 0.567644 0.051527001 0.56536001 0.053817 0.56814599 0.048333 0.567644 0.051527001\n\t\t 0.56298 0.049157999 0.56298 0.049157999 0.56667501 0.045453999 0.56814599 0.048333\n\t\t 0.563793 0.043990001 0.56667501 0.045453999 0.56298 0.049157999 0.56298 0.049157999\n\t\t 0.56059998 0.044498999 0.563793 0.043990001 0.55831599 0.046789002 0.56059998 0.044498999\n\t\t 0.56298 0.049157999 0.56298 0.049157999 0.557814 0.049982999 0.55831599 0.046789002\n\t\t 0.55928499 0.052862 0.557814 0.049982999 0.56298 0.049157999 0.56298 0.049157999\n\t\t 0.56216699 0.054326002 0.55928499 0.052862 0.56536001 0.053817 0.56216699 0.054326002\n\t\t 0.56298 0.049157999 0.013238 0.534702 0.011656 0.53807998 0.0069889999 0.53664899\n\t\t 0.0069889999 0.53664899 0.00923 0.53191501 0.013238 0.534702 0.013238 0.534702 0.00923\n\t\t 0.53191501 0.012905 0.52811098 0.012905 0.52811098 0.015759001 0.53207201 0.013238\n\t\t 0.534702 0.0062239999 0.54178202 0.0069889999 0.53664899 0.011656 0.53807998 0.011656\n\t\t 0.53807998 0.011105 0.541852 0.0062239999 0.54178202 0.006854 0.54690403 0.0062239999\n\t\t 0.54178202 0.011105 0.541852 0.011105 0.541852 0.011579 0.54568398 0.006854 0.54690403\n\t\t 0.0087839998 0.55168998 0.006854 0.54690403 0.011579 0.54568398 0.011579 0.54568398\n\t\t 0.01302 0.54926503 0.0087839998 0.55168998 0.011938 0.55580997 0.0087839998 0.55168998\n\t\t 0.01302 0.54926503 0.01302 0.54926503 0.015328 0.55229902 0.011938 0.55580997 0.016191\n\t\t 0.55886698 0.011938 0.55580997 0.015328 0.55229902 0.015328 0.55229902 0.018348999\n\t\t 0.554488 0.016191 0.55886698 0.021249 0.56041598 0.016191 0.55886698 0.018348999\n\t\t 0.554488 0.018348999 0.554488 0.021828 0.55556899 0.021249 0.56041598 0.026567999\n\t\t 0.56011403 0.021249 0.56041598 0.021828 0.55556899 0.021828 0.55556899 0.025409 0.55537099\n\t\t 0.026567999 0.56011403 0.018988 0.53051001 0.015759001 0.53207201 0.012905 0.52811098\n\t\t 0.012905 0.52811098 0.017705999 0.52579999 0.018988 0.53051001 0.72103298 0.254825\n\t\t 0.72103298 0.264543 0.71565402 0.264543 0.71565402 0.264543 0.71565402 0.254825 0.72103298\n\t\t 0.254825 0.72103298 0.264543 0.72103298 0.254825 0.726412 0.254825 0.726412 0.254825\n\t\t 0.726412 0.264543 0.72103298 0.264543 0.71565402 0.254825 0.71565402 0.264543 0.71027499\n\t\t 0.264543 0.71027499 0.264543 0.71027499 0.254825 0.71565402 0.254825 0.71027499 0.254825\n\t\t 0.71027499 0.264543 0.70489597 0.264543;\n\tsetAttr \".uvst[0].uvsp[8000:8249]\" 0.70489597 0.264543 0.70489597 0.254825 0.71027499\n\t\t 0.254825 0.70489597 0.254825 0.70489597 0.264543 0.69951701 0.264543 0.69951701 0.264543\n\t\t 0.69951701 0.254825 0.70489597 0.254825 0.69951701 0.254825 0.69951701 0.264543 0.69413799\n\t\t 0.264543 0.69413799 0.264543 0.69413698 0.254825 0.69951701 0.254825 0.69413698 0.254825\n\t\t 0.69413799 0.264543 0.68875802 0.264543 0.68875802 0.264543 0.688757 0.254825 0.69413698\n\t\t 0.254825 0.688757 0.254825 0.68875802 0.264543 0.68337899 0.26454401 0.68337899 0.26454401\n\t\t 0.68337798 0.25482601 0.688757 0.254825 0.68337798 0.25482601 0.68337899 0.26454401\n\t\t 0.67799902 0.26454401 0.67799902 0.26454401 0.67799801 0.25482699 0.68337798 0.25482601\n\t\t 0.726412 0.264543 0.726412 0.254825 0.73179197 0.254825 0.73179197 0.254825 0.73179197\n\t\t 0.264543 0.726412 0.264543 0.914428 0.25238699 0.914446 0.25380799 0.93071401 0.254397\n\t\t 0.93047702 0.25273401 0.91438103 0.251091 0.93033999 0.251001 0.901232 0.25121799\n\t\t 0.90133798 0.25193799 0.90133798 0.25193799 0.90133798 0.25193799 0.90137303 0.25276601\n\t\t 0.89735597 0.25169301 0.89713699 0.251252 0.89839298 0.252359 0.90133798 0.25193799\n\t\t 0.90133798 0.25193799 0.89735597 0.25169301 0.94293398 0.25417 0.94320899 0.25260001\n\t\t 0.94346601 0.25068599 0.94680703 0.252534 0.945508 0.25374201 0.947447 0.25062999\n\t\t 0.90133101 0.25049499 0.91438103 0.251091 0.91438103 0.251091 0.91442102 0.24979299\n\t\t 0.91438103 0.251091 0.90135503 0.24966501 0.90133101 0.25049499 0.91442102 0.24979299\n\t\t 0.91442102 0.24979299 0.914424 0.248374 0.91442102 0.24979299 0.93048799 0.249276\n\t\t 0.93048799 0.249276 0.93048799 0.249276 0.93071502 0.247655 0.90133101 0.25049499\n\t\t 0.89837998 0.25012001 0.89735299 0.250806 0.90133101 0.25049499 0.89735299 0.250806\n\t\t 0.89735299 0.250806 0.94321299 0.24878301 0.93048799 0.249276 0.94294 0.24722999\n\t\t 0.94680798 0.248749 0.94550902 0.247585 0.94680798 0.248749 0.947447 0.25062999 0.95056999\n\t\t 0.25060299 0.94967401 0.25337201 0.95056999 0.25060299 0.947447 0.25062999 0.947447\n\t\t 0.25062999 0.94680703 0.252534 0.947236 0.25547001 0.94967401 0.25337201 0.94680703\n\t\t 0.252534 0.94680703 0.252534 0.945508 0.25374201 0.94365799 0.25664699 0.945508 0.25374201\n\t\t 0.945508 0.25374201 0.94293398 0.25417 0.93091601 0.25720799 0.94293398 0.25417 0.94293398\n\t\t 0.25417 0.93071401 0.254397 0.91412902 0.256652 0.93071401 0.254397 0.93071401 0.254397\n\t\t 0.914446 0.25380799 0.90042198 0.25514701 0.914446 0.25380799 0.914446 0.25380799\n\t\t 0.90137303 0.25276601 0.94965398 0.24786 0.94680798 0.248749 0.94550902 0.247585\n\t\t 0.94680798 0.248749 0.94965398 0.24786 0.89626002 0.25385201 0.90137303 0.25276601\n\t\t 0.90137303 0.25276601 0.8944 0.25249901 0.89735597 0.25169301 0.89397299 0.25128901\n\t\t 0.8944 0.25249901 0.89735597 0.25169301 0.89735597 0.25169301 0.89713699 0.251252\n\t\t 0.89437801 0.250063 0.89397299 0.25128901 0.89713699 0.251252 0.89713699 0.251252\n\t\t 0.89735299 0.250806 0.89622003 0.248667 0.89437801 0.250063 0.900361 0.247299 0.90135503\n\t\t 0.24966501 0.91402 0.24557699 0.90135503 0.24966501 0.90135503 0.24966501 0.914424\n\t\t 0.248374 0.914424 0.248374 0.93071502 0.247655 0.93071502 0.247655 0.93088901 0.244855\n\t\t 0.93071502 0.247655 0.94294 0.24722999 0.94294 0.24722999 0.94360697 0.244743 0.94720399\n\t\t 0.24582601 0.94294 0.24722999 0.94294 0.24722999 0.94550902 0.247585 0.94965398 0.24786\n\t\t 0.94550902 0.247585 0.76181602 0.79217499 0.752581 0.78254902 0.74862802 0.78362101\n\t\t 0.75918001 0.79459399 0.772973 0.80377603 0.77031398 0.80616999 0.78173202 0.81295902\n\t\t 0.78019601 0.81653398 0.78499299 0.81528503 0.78486001 0.81962198 0.78849 0.815633\n\t\t 0.79027599 0.81985003 0.79130501 0.81424701 0.79483199 0.81749201 0.79251498 0.81138301\n\t\t 0.79690701 0.81285101 0.79192901 0.80796498 0.79631102 0.80754101 0.78936398 0.80491102\n\t\t 0.79287797 0.80316001 0.77948397 0.796911 0.781726 0.79413098 0.767021 0.78668201\n\t\t 0.76928598 0.783921 0.75670999 0.77819002 0.75753301 0.774212 0.75311399 0.77566099\n\t\t 0.75254399 0.77105802 0.75066102 0.77486098 0.74883801 0.77085501 0.74926102 0.77537602\n\t\t 0.74626702 0.772587 0.74883097 0.77679098 0.74468398 0.77524102 0.74979502 0.77916199\n\t\t 0.74512601 0.77889401 0.78586 0.29766801 0.77278298 0.29590601 0.772524 0.29714099\n\t\t 0.78578001 0.29896599 0.80198997 0.298852 0.80187899 0.30015701 0.814228 0.29858601\n\t\t 0.81462502 0.29983899 0.81769699 0.297883 0.818573 0.29898301 0.82018799 0.29617801\n\t\t 0.82150102 0.29684901 0.82118601 0.29372701 0.822694 0.293749 0.820315 0.291251 0.82166302\n\t\t 0.29063401 0.81797302 0.289415 0.818896 0.28833601 0.81451702 0.288739 0.814924 0.28747901\n\t\t 0.80224001 0.288715 0.802158 0.28740999 0.78600901 0.28922799 0.78601599 0.28792799\n\t\t 0.77283603 0.29037899 0.77263099 0.289139 0.76878798 0.29124999 0.76825899 0.290167\n\t\t 0.76687902 0.29221499 0.76591301 0.29156601 0.76644701 0.29311901 0.76687902 0.29221499\n\t\t 0.76591301 0.29156601 0.76591301 0.29156601 0.76525497 0.29312301 0.76685601 0.29402\n\t\t 0.76644701 0.29311901 0.76525497 0.29312301 0.76525497 0.29312301 0.76589102 0.294682\n\t\t 0.768767 0.29493901 0.76685601 0.29402 0.76589102 0.294682 0.76589102 0.294682 0.76822501\n\t\t 0.29602101 0.78600901 0.28922799 0.77283603 0.29037899 0.77314198 0.291161 0.76934302\n\t\t 0.29189101 0.77283603 0.29037899 0.77283603 0.29037899 0.76878798 0.29124999 0.76773399\n\t\t 0.29254201 0.76878798 0.29124999 0.76878798 0.29124999;\n\tsetAttr \".uvst[0].uvsp[8250:8499]\" 0.76687902 0.29221499 0.76746899 0.29311699\n\t\t 0.76687902 0.29221499 0.76687902 0.29221499 0.76644701 0.29311901 0.76771897 0.293686\n\t\t 0.76644701 0.29311901 0.76644701 0.29311901 0.76685601 0.29402 0.76933801 0.29430401\n\t\t 0.76685601 0.29402 0.76685601 0.29402 0.768767 0.29493901 0.77312797 0.295136 0.768767\n\t\t 0.29493901 0.768767 0.29493901 0.77278298 0.29590601 0.785972 0.296859 0.77278298\n\t\t 0.29590601 0.77278298 0.29590601 0.78586 0.29766801 0.80203003 0.29803601 0.78586\n\t\t 0.29766801 0.78586 0.29766801 0.80198997 0.298852 0.81394398 0.297777 0.80198997\n\t\t 0.298852 0.80198997 0.298852 0.814228 0.29858601 0.817164 0.297169 0.814228 0.29858601\n\t\t 0.814228 0.29858601 0.81769699 0.297883 0.81936598 0.29574499 0.81769699 0.297883\n\t\t 0.81769699 0.297883 0.82018799 0.29617801 0.82020497 0.293713 0.82018799 0.29617801\n\t\t 0.82018799 0.29617801 0.82118601 0.29372701 0.81947201 0.29165399 0.82118601 0.29372701\n\t\t 0.82118601 0.29372701 0.820315 0.291251 0.817406 0.29012099 0.820315 0.291251 0.820315\n\t\t 0.291251 0.81797302 0.289415 0.81421798 0.28955099 0.81797302 0.289415 0.81797302\n\t\t 0.289415 0.81451702 0.288739 0.80225301 0.28953099 0.81451702 0.288739 0.81451702\n\t\t 0.288739 0.80224001 0.288715 0.78606302 0.29004201 0.80224001 0.288715 0.80224001\n\t\t 0.288715 0.78600901 0.28922799 0.78600901 0.28922799 0.402143 0.310518 0.419862 0.31013101\n\t\t 0.41981801 0.30502099 0.402091 0.305408 0.38557601 0.308431 0.385627 0.31354201 0.37936801\n\t\t 0.31523901 0.37931699 0.31012899 0.435516 0.30694699 0.43553299 0.312058 0.44155499\n\t\t 0.30825201 0.44155401 0.31336299 0.44742799 0.30940101 0.44155499 0.30825201 0.44155401\n\t\t 0.31336299 0.44155401 0.31336299 0.44740999 0.31451201 0.453062 0.309955 0.44742799\n\t\t 0.30940101 0.44740999 0.31451201 0.44740999 0.31451201 0.45302999 0.315065 0.45864701\n\t\t 0.30947301 0.453062 0.309955 0.45302999 0.315065 0.45302999 0.315065 0.458608 0.31458399\n\t\t 0.464434 0.308384 0.45864701 0.30947301 0.458608 0.31458399 0.458608 0.31458399 0.46439901\n\t\t 0.31349501 0.47042999 0.30710801 0.464434 0.308384 0.46439901 0.31349501 0.46439901\n\t\t 0.31349501 0.47041401 0.31221801 0.48608199 0.305022 0.48615399 0.31013301 0.50376898\n\t\t 0.30475101 0.50398397 0.30985799 0.52041203 0.30668101 0.52075303 0.31178099 0.52679503\n\t\t 0.307861 0.527174 0.312958 0.53083301 0.30842099 0.52679503 0.307861 0.527174 0.312958\n\t\t 0.527174 0.312958 0.53123498 0.31351599 0.53423899 0.30838901 0.53083301 0.30842099\n\t\t 0.53123498 0.31351599 0.53123498 0.31351599 0.53465497 0.313483 0.53759599 0.307863\n\t\t 0.538019 0.31295601 0.541466 0.30666399 0.53759599 0.307863 0.538019 0.31295601 0.538019\n\t\t 0.31295601 0.54189098 0.311757 0.914428 0.25238699 0.93047702 0.25273401 0.93071401\n\t\t 0.254397 0.93071401 0.254397 0.914446 0.25380799 0.914428 0.25238699 0.93047702 0.25273401\n\t\t 0.914428 0.25238699 0.91438103 0.251091 0.91438103 0.251091 0.93033999 0.251001 0.93047702\n\t\t 0.25273401 0.901232 0.25121799 0.91438103 0.251091 0.914428 0.25238699 0.914428 0.25238699\n\t\t 0.90133798 0.25193799 0.901232 0.25121799 0.90133798 0.25193799 0.914428 0.25238699\n\t\t 0.914446 0.25380799 0.914446 0.25380799 0.90137303 0.25276601 0.90133798 0.25193799\n\t\t 0.901232 0.25121799 0.90133798 0.25193799 0.89735597 0.25169301 0.89735597 0.25169301\n\t\t 0.89713699 0.251252 0.901232 0.25121799 0.89839298 0.252359 0.89735597 0.25169301\n\t\t 0.90133798 0.25193799 0.90133798 0.25193799 0.90137303 0.25276601 0.89839298 0.252359\n\t\t 0.94293398 0.25417 0.93071401 0.254397 0.93047702 0.25273401 0.93047702 0.25273401\n\t\t 0.94320899 0.25260001 0.94293398 0.25417 0.94320899 0.25260001 0.93047702 0.25273401\n\t\t 0.93033999 0.251001 0.93033999 0.251001 0.94346601 0.25068599 0.94320899 0.25260001\n\t\t 0.94293398 0.25417 0.94320899 0.25260001 0.94680703 0.252534 0.94680703 0.252534\n\t\t 0.945508 0.25374201 0.94293398 0.25417 0.947447 0.25062999 0.94680703 0.252534 0.94320899\n\t\t 0.25260001 0.94320899 0.25260001 0.94346601 0.25068599 0.947447 0.25062999 0.91438103\n\t\t 0.251091 0.901232 0.25121799 0.90133101 0.25049499 0.90133101 0.25049499 0.91442102\n\t\t 0.24979299 0.91438103 0.251091 0.93033999 0.251001 0.91438103 0.251091 0.91442102\n\t\t 0.24979299 0.91442102 0.24979299 0.90133101 0.25049499 0.90135503 0.24966501 0.90135503\n\t\t 0.24966501 0.914424 0.248374 0.91442102 0.24979299 0.93048799 0.249276 0.91442102\n\t\t 0.24979299 0.914424 0.248374 0.91442102 0.24979299 0.93048799 0.249276 0.93033999\n\t\t 0.251001 0.94346601 0.25068599 0.93033999 0.251001 0.93048799 0.249276 0.914424 0.248374\n\t\t 0.93071502 0.247655 0.93048799 0.249276 0.89837998 0.25012001 0.90135503 0.24966501\n\t\t 0.90133101 0.25049499 0.90133101 0.25049499 0.89735299 0.250806 0.89837998 0.25012001\n\t\t 0.89735299 0.250806 0.90133101 0.25049499 0.901232 0.25121799 0.901232 0.25121799\n\t\t 0.89713699 0.251252 0.89735299 0.250806 0.93048799 0.249276 0.94321299 0.24878301\n\t\t 0.94346601 0.25068599 0.94321299 0.24878301 0.93048799 0.249276 0.93071502 0.247655\n\t\t 0.947447 0.25062999 0.94346601 0.25068599 0.94321299 0.24878301 0.93071502 0.247655\n\t\t 0.94294 0.24722999 0.94321299 0.24878301 0.94321299 0.24878301 0.94680798 0.248749\n\t\t 0.947447 0.25062999 0.94680798 0.248749 0.94321299 0.24878301 0.94294 0.24722999\n\t\t 0.94294 0.24722999 0.94550902 0.247585 0.94680798 0.248749 0.95056999 0.25060299\n\t\t 0.947447 0.25062999 0.94680798 0.248749 0.947447 0.25062999 0.95056999 0.25060299\n\t\t 0.94967401 0.25337201;\n\tsetAttr \".uvst[0].uvsp[8500:8749]\" 0.94967401 0.25337201 0.94680703 0.252534\n\t\t 0.947447 0.25062999 0.94680703 0.252534 0.94967401 0.25337201 0.947236 0.25547001\n\t\t 0.947236 0.25547001 0.945508 0.25374201 0.94680703 0.252534 0.945508 0.25374201 0.947236\n\t\t 0.25547001 0.94365799 0.25664699 0.94365799 0.25664699 0.94293398 0.25417 0.945508\n\t\t 0.25374201 0.94293398 0.25417 0.94365799 0.25664699 0.93091601 0.25720799 0.93091601\n\t\t 0.25720799 0.93071401 0.254397 0.94293398 0.25417 0.93071401 0.254397 0.93091601\n\t\t 0.25720799 0.91412902 0.256652 0.91412902 0.256652 0.914446 0.25380799 0.93071401\n\t\t 0.254397 0.914446 0.25380799 0.91412902 0.256652 0.90042198 0.25514701 0.90042198\n\t\t 0.25514701 0.90137303 0.25276601 0.914446 0.25380799 0.94680798 0.248749 0.94965398\n\t\t 0.24786 0.95056999 0.25060299 0.94965398 0.24786 0.94680798 0.248749 0.94550902 0.247585\n\t\t 0.90137303 0.25276601 0.90042198 0.25514701 0.89626002 0.25385201 0.89626002 0.25385201\n\t\t 0.89839298 0.252359 0.90137303 0.25276601 0.89839298 0.252359 0.89626002 0.25385201\n\t\t 0.8944 0.25249901 0.8944 0.25249901 0.89735597 0.25169301 0.89839298 0.252359 0.89735597\n\t\t 0.25169301 0.8944 0.25249901 0.89397299 0.25128901 0.89397299 0.25128901 0.89713699\n\t\t 0.251252 0.89735597 0.25169301 0.89713699 0.251252 0.89397299 0.25128901 0.89437801\n\t\t 0.250063 0.89437801 0.250063 0.89735299 0.250806 0.89713699 0.251252 0.89735299 0.250806\n\t\t 0.89437801 0.250063 0.89622003 0.248667 0.89622003 0.248667 0.89837998 0.25012001\n\t\t 0.89735299 0.250806 0.89837998 0.25012001 0.89622003 0.248667 0.900361 0.247299 0.900361\n\t\t 0.247299 0.90135503 0.24966501 0.89837998 0.25012001 0.90135503 0.24966501 0.900361\n\t\t 0.247299 0.91402 0.24557699 0.91402 0.24557699 0.914424 0.248374 0.90135503 0.24966501\n\t\t 0.93071502 0.247655 0.914424 0.248374 0.91402 0.24557699 0.91402 0.24557699 0.93088901\n\t\t 0.244855 0.93071502 0.247655 0.94294 0.24722999 0.93071502 0.247655 0.93088901 0.244855\n\t\t 0.93088901 0.244855 0.94360697 0.244743 0.94294 0.24722999 0.94294 0.24722999 0.94360697\n\t\t 0.244743 0.94720399 0.24582601 0.94720399 0.24582601 0.94550902 0.247585 0.94294\n\t\t 0.24722999 0.94550902 0.247585 0.94720399 0.24582601 0.94965398 0.24786 0.74862802\n\t\t 0.78362101 0.752581 0.78254902 0.76181602 0.79217499 0.76181602 0.79217499 0.75918001\n\t\t 0.79459399 0.74862802 0.78362101 0.75918001 0.79459399 0.76181602 0.79217499 0.772973\n\t\t 0.80377603 0.772973 0.80377603 0.77031398 0.80616999 0.75918001 0.79459399 0.77031398\n\t\t 0.80616999 0.772973 0.80377603 0.78173202 0.81295902 0.78173202 0.81295902 0.78019601\n\t\t 0.81653398 0.77031398 0.80616999 0.78019601 0.81653398 0.78173202 0.81295902 0.78499299\n\t\t 0.81528503 0.78499299 0.81528503 0.78486001 0.81962198 0.78019601 0.81653398 0.78486001\n\t\t 0.81962198 0.78499299 0.81528503 0.78849 0.815633 0.78849 0.815633 0.79027599 0.81985003\n\t\t 0.78486001 0.81962198 0.79027599 0.81985003 0.78849 0.815633 0.79130501 0.81424701\n\t\t 0.79130501 0.81424701 0.79483199 0.81749201 0.79027599 0.81985003 0.79483199 0.81749201\n\t\t 0.79130501 0.81424701 0.79251498 0.81138301 0.79251498 0.81138301 0.79690701 0.81285101\n\t\t 0.79483199 0.81749201 0.79690701 0.81285101 0.79251498 0.81138301 0.79192901 0.80796498\n\t\t 0.79192901 0.80796498 0.79631102 0.80754101 0.79690701 0.81285101 0.79631102 0.80754101\n\t\t 0.79192901 0.80796498 0.78936398 0.80491102 0.78936398 0.80491102 0.79287797 0.80316001\n\t\t 0.79631102 0.80754101 0.79287797 0.80316001 0.78936398 0.80491102 0.77948397 0.796911\n\t\t 0.77948397 0.796911 0.781726 0.79413098 0.79287797 0.80316001 0.781726 0.79413098\n\t\t 0.77948397 0.796911 0.767021 0.78668201 0.767021 0.78668201 0.76928598 0.783921 0.781726\n\t\t 0.79413098 0.76928598 0.783921 0.767021 0.78668201 0.75670999 0.77819002 0.75670999\n\t\t 0.77819002 0.75753301 0.774212 0.76928598 0.783921 0.75753301 0.774212 0.75670999\n\t\t 0.77819002 0.75311399 0.77566099 0.75311399 0.77566099 0.75254399 0.77105802 0.75753301\n\t\t 0.774212 0.75254399 0.77105802 0.75311399 0.77566099 0.75066102 0.77486098 0.75066102\n\t\t 0.77486098 0.74883801 0.77085501 0.75254399 0.77105802 0.74883801 0.77085501 0.75066102\n\t\t 0.77486098 0.74926102 0.77537602 0.74926102 0.77537602 0.74626702 0.772587 0.74883801\n\t\t 0.77085501 0.74626702 0.772587 0.74926102 0.77537602 0.74883097 0.77679098 0.74883097\n\t\t 0.77679098 0.74468398 0.77524102 0.74626702 0.772587 0.74468398 0.77524102 0.74883097\n\t\t 0.77679098 0.74979502 0.77916199 0.74979502 0.77916199 0.74512601 0.77889401 0.74468398\n\t\t 0.77524102 0.74512601 0.77889401 0.74979502 0.77916199 0.752581 0.78254902 0.752581\n\t\t 0.78254902 0.74862802 0.78362101 0.74512601 0.77889401 0.772524 0.29714099 0.77278298\n\t\t 0.29590601 0.78586 0.29766801 0.78586 0.29766801 0.78578001 0.29896599 0.772524 0.29714099\n\t\t 0.78578001 0.29896599 0.78586 0.29766801 0.80198997 0.298852 0.80198997 0.298852\n\t\t 0.80187899 0.30015701 0.78578001 0.29896599 0.80187899 0.30015701 0.80198997 0.298852\n\t\t 0.814228 0.29858601 0.814228 0.29858601 0.81462502 0.29983899 0.80187899 0.30015701\n\t\t 0.81462502 0.29983899 0.814228 0.29858601 0.81769699 0.297883 0.81769699 0.297883\n\t\t 0.818573 0.29898301 0.81462502 0.29983899 0.818573 0.29898301 0.81769699 0.297883\n\t\t 0.82018799 0.29617801 0.82018799 0.29617801 0.82150102 0.29684901 0.818573 0.29898301\n\t\t 0.82150102 0.29684901 0.82018799 0.29617801 0.82118601 0.29372701 0.82118601 0.29372701\n\t\t 0.822694 0.293749 0.82150102 0.29684901 0.822694 0.293749 0.82118601 0.29372701 0.820315\n\t\t 0.291251 0.820315 0.291251;\n\tsetAttr \".uvst[0].uvsp[8750:8999]\" 0.82166302 0.29063401 0.822694 0.293749 0.82166302\n\t\t 0.29063401 0.820315 0.291251 0.81797302 0.289415 0.81797302 0.289415 0.818896 0.28833601\n\t\t 0.82166302 0.29063401 0.818896 0.28833601 0.81797302 0.289415 0.81451702 0.288739\n\t\t 0.81451702 0.288739 0.814924 0.28747901 0.818896 0.28833601 0.814924 0.28747901 0.81451702\n\t\t 0.288739 0.80224001 0.288715 0.80224001 0.288715 0.802158 0.28740999 0.814924 0.28747901\n\t\t 0.802158 0.28740999 0.80224001 0.288715 0.78600901 0.28922799 0.78600901 0.28922799\n\t\t 0.78601599 0.28792799 0.802158 0.28740999 0.78601599 0.28792799 0.78600901 0.28922799\n\t\t 0.77283603 0.29037899 0.77283603 0.29037899 0.77263099 0.289139 0.78601599 0.28792799\n\t\t 0.77263099 0.289139 0.77283603 0.29037899 0.76878798 0.29124999 0.76878798 0.29124999\n\t\t 0.76825899 0.290167 0.77263099 0.289139 0.76825899 0.290167 0.76878798 0.29124999\n\t\t 0.76687902 0.29221499 0.76687902 0.29221499 0.76591301 0.29156601 0.76825899 0.290167\n\t\t 0.76591301 0.29156601 0.76687902 0.29221499 0.76644701 0.29311901 0.76644701 0.29311901\n\t\t 0.76525497 0.29312301 0.76591301 0.29156601 0.76525497 0.29312301 0.76644701 0.29311901\n\t\t 0.76685601 0.29402 0.76685601 0.29402 0.76589102 0.294682 0.76525497 0.29312301 0.76589102\n\t\t 0.294682 0.76685601 0.29402 0.768767 0.29493901 0.768767 0.29493901 0.76822501 0.29602101\n\t\t 0.76589102 0.294682 0.76822501 0.29602101 0.768767 0.29493901 0.77278298 0.29590601\n\t\t 0.77278298 0.29590601 0.772524 0.29714099 0.76822501 0.29602101 0.77314198 0.291161\n\t\t 0.77283603 0.29037899 0.78600901 0.28922799 0.78600901 0.28922799 0.78606302 0.29004201\n\t\t 0.77314198 0.291161 0.78606302 0.29004201 0.78600901 0.28922799 0.80224001 0.288715\n\t\t 0.80224001 0.288715 0.80225301 0.28953099 0.78606302 0.29004201 0.80225301 0.28953099\n\t\t 0.80224001 0.288715 0.81451702 0.288739 0.81451702 0.288739 0.81421798 0.28955099\n\t\t 0.80225301 0.28953099 0.81421798 0.28955099 0.81451702 0.288739 0.81797302 0.289415\n\t\t 0.81797302 0.289415 0.817406 0.29012099 0.81421798 0.28955099 0.817406 0.29012099\n\t\t 0.81797302 0.289415 0.820315 0.291251 0.820315 0.291251 0.81947201 0.29165399 0.817406\n\t\t 0.29012099 0.81947201 0.29165399 0.820315 0.291251 0.82118601 0.29372701 0.82118601\n\t\t 0.29372701 0.82020497 0.293713 0.81947201 0.29165399 0.82020497 0.293713 0.82118601\n\t\t 0.29372701 0.82018799 0.29617801 0.82018799 0.29617801 0.81936598 0.29574499 0.82020497\n\t\t 0.293713 0.81936598 0.29574499 0.82018799 0.29617801 0.81769699 0.297883 0.81769699\n\t\t 0.297883 0.817164 0.297169 0.81936598 0.29574499 0.817164 0.297169 0.81769699 0.297883\n\t\t 0.814228 0.29858601 0.814228 0.29858601 0.81394398 0.297777 0.817164 0.297169 0.81394398\n\t\t 0.297777 0.814228 0.29858601 0.80198997 0.298852 0.80198997 0.298852 0.80203003 0.29803601\n\t\t 0.81394398 0.297777 0.80203003 0.29803601 0.80198997 0.298852 0.78586 0.29766801\n\t\t 0.78586 0.29766801 0.785972 0.296859 0.80203003 0.29803601 0.785972 0.296859 0.78586\n\t\t 0.29766801 0.77278298 0.29590601 0.77278298 0.29590601 0.77312797 0.295136 0.785972\n\t\t 0.296859 0.77312797 0.295136 0.77278298 0.29590601 0.768767 0.29493901 0.768767 0.29493901\n\t\t 0.76933801 0.29430401 0.77312797 0.295136 0.76933801 0.29430401 0.768767 0.29493901\n\t\t 0.76685601 0.29402 0.76685601 0.29402 0.76771897 0.293686 0.76933801 0.29430401 0.76771897\n\t\t 0.293686 0.76685601 0.29402 0.76644701 0.29311901 0.76644701 0.29311901 0.76746899\n\t\t 0.29311699 0.76771897 0.293686 0.76746899 0.29311699 0.76644701 0.29311901 0.76687902\n\t\t 0.29221499 0.76687902 0.29221499 0.76773399 0.29254201 0.76746899 0.29311699 0.76773399\n\t\t 0.29254201 0.76687902 0.29221499 0.76878798 0.29124999 0.76878798 0.29124999 0.76934302\n\t\t 0.29189101 0.76773399 0.29254201 0.76934302 0.29189101 0.76878798 0.29124999 0.77283603\n\t\t 0.29037899 0.77283603 0.29037899 0.77314198 0.291161 0.76934302 0.29189101 0.41981801\n\t\t 0.30502099 0.419862 0.31013101 0.402143 0.310518 0.402143 0.310518 0.402091 0.305408\n\t\t 0.41981801 0.30502099 0.402091 0.305408 0.402143 0.310518 0.385627 0.31354201 0.385627\n\t\t 0.31354201 0.38557601 0.308431 0.402091 0.305408 0.38557601 0.308431 0.385627 0.31354201\n\t\t 0.37936801 0.31523901 0.37936801 0.31523901 0.37931699 0.31012899 0.38557601 0.308431\n\t\t 0.419862 0.31013101 0.41981801 0.30502099 0.435516 0.30694699 0.435516 0.30694699\n\t\t 0.43553299 0.312058 0.419862 0.31013101 0.43553299 0.312058 0.435516 0.30694699 0.44155499\n\t\t 0.30825201 0.44155499 0.30825201 0.44155401 0.31336299 0.43553299 0.312058 0.44155401\n\t\t 0.31336299 0.44155499 0.30825201 0.44742799 0.30940101 0.44742799 0.30940101 0.44740999\n\t\t 0.31451201 0.44155401 0.31336299 0.44740999 0.31451201 0.44742799 0.30940101 0.453062\n\t\t 0.309955 0.453062 0.309955 0.45302999 0.315065 0.44740999 0.31451201 0.45302999 0.315065\n\t\t 0.453062 0.309955 0.45864701 0.30947301 0.45864701 0.30947301 0.458608 0.31458399\n\t\t 0.45302999 0.315065 0.458608 0.31458399 0.45864701 0.30947301 0.464434 0.308384 0.464434\n\t\t 0.308384 0.46439901 0.31349501 0.458608 0.31458399 0.46439901 0.31349501 0.464434\n\t\t 0.308384 0.47042999 0.30710801 0.47042999 0.30710801 0.47041401 0.31221801 0.46439901\n\t\t 0.31349501 0.47041401 0.31221801 0.47042999 0.30710801 0.48608199 0.305022 0.48608199\n\t\t 0.305022 0.48615399 0.31013301 0.47041401 0.31221801 0.48615399 0.31013301 0.48608199\n\t\t 0.305022 0.50376898 0.30475101 0.50376898 0.30475101 0.50398397 0.30985799 0.48615399\n\t\t 0.31013301 0.50398397 0.30985799 0.50376898 0.30475101;\n\tsetAttr \".uvst[0].uvsp[9000:9249]\" 0.52041203 0.30668101 0.52041203 0.30668101\n\t\t 0.52075303 0.31178099 0.50398397 0.30985799 0.52075303 0.31178099 0.52041203 0.30668101\n\t\t 0.52679503 0.307861 0.52679503 0.307861 0.527174 0.312958 0.52075303 0.31178099 0.527174\n\t\t 0.312958 0.52679503 0.307861 0.53083301 0.30842099 0.53083301 0.30842099 0.53123498\n\t\t 0.31351599 0.527174 0.312958 0.53123498 0.31351599 0.53083301 0.30842099 0.53423899\n\t\t 0.30838901 0.53423899 0.30838901 0.53465497 0.313483 0.53123498 0.31351599 0.53465497\n\t\t 0.313483 0.53423899 0.30838901 0.53759599 0.307863 0.53759599 0.307863 0.538019 0.31295601\n\t\t 0.53465497 0.313483 0.538019 0.31295601 0.53759599 0.307863 0.541466 0.30666399 0.541466\n\t\t 0.30666399 0.54189098 0.311757 0.538019 0.31295601 0.54164499 0.16175599 0.541228\n\t\t 0.160062 0.536264 0.16004699 0.53745198 0.161659 0.54197299 0.162542 0.53915697 0.162358\n\t\t 0.57117701 0.160171 0.57093197 0.161833 0.57002801 0.15777799 0.54120702 0.157827\n\t\t 0.54127002 0.156498 0.56897497 0.156215 0.53753799 0.157969 0.57905602 0.160155 0.578951\n\t\t 0.161616 0.57678699 0.162339 0.57059401 0.162653 0.53912503 0.15689 0.482977 0.33253801\n\t\t 0.48451701 0.333951 0.488033 0.33332199 0.48790199 0.33142099 0.48110101 0.33493301\n\t\t 0.480537 0.333545 0.47741401 0.335922 0.477494 0.33417001 0.44469601 0.33518901 0.44455501\n\t\t 0.33343199 0.43703499 0.33344001 0.438344 0.33178899 0.43387499 0.33435699 0.43703499\n\t\t 0.33344001 0.438344 0.33178899 0.438344 0.33178899 0.434769 0.33193001 0.493384 0.33229899\n\t\t 0.48790199 0.33142099 0.488033 0.33332199 0.488033 0.33332199 0.49209899 0.33385801\n\t\t 0.49605 0.333121 0.49579701 0.33459401 0.49883699 0.333552 0.49890801 0.33531299\n\t\t 0.53113198 0.334535 0.53053999 0.336247 0.48422399 0.33740801 0.48811901 0.33691099\n\t\t 0.488033 0.33332199 0.488033 0.33332199 0.48451701 0.333951 0.48152101 0.337991 0.48451701\n\t\t 0.333951 0.48451701 0.333951 0.48110101 0.33493301 0.47799101 0.33891201 0.48110101\n\t\t 0.33493301 0.48110101 0.33493301 0.47741401 0.335922 0.44515201 0.33841899 0.47741401\n\t\t 0.335922 0.47741401 0.335922 0.44469601 0.33518901 0.43781099 0.33707401 0.44469601\n\t\t 0.33518901 0.44469601 0.33518901 0.43703499 0.33344001 0.43476701 0.33708501 0.43703499\n\t\t 0.33344001 0.43703499 0.33344001 0.43387499 0.33435699 0.53053999 0.336247 0.49890801\n\t\t 0.33531299 0.49826199 0.33833301 0.52978498 0.33931899 0.53053999 0.336247 0.495386\n\t\t 0.33765599 0.49890801 0.33531299 0.49890801 0.33531299 0.49579701 0.33459401 0.49251801\n\t\t 0.33730301 0.49579701 0.33459401 0.49579701 0.33459401 0.49209899 0.33385801 0.48811901\n\t\t 0.33691099 0.49209899 0.33385801 0.49209899 0.33385801 0.488033 0.33332199 0.48811901\n\t\t 0.33691099 0.48422399 0.33740801 0.48152101 0.337991 0.48173299 0.3398 0.48437101\n\t\t 0.339232 0.48422399 0.33740801 0.48811901 0.33691099 0.48422399 0.33740801 0.48816699\n\t\t 0.33874601 0.48811901 0.33691099 0.47818699 0.34071299 0.48152101 0.337991 0.48152101\n\t\t 0.337991 0.47799101 0.33891201 0.47799101 0.33891201 0.44515201 0.33841899 0.44515201\n\t\t 0.33841899 0.44555101 0.340323 0.43851799 0.33908299 0.44515201 0.33841899 0.44515201\n\t\t 0.33841899 0.43781099 0.33707401 0.43554601 0.33885899 0.43781099 0.33707401 0.43781099\n\t\t 0.33707401 0.43476701 0.33708501 0.48811901 0.33691099 0.49242201 0.33916101 0.49251801\n\t\t 0.33730301 0.48811901 0.33691099 0.495386 0.33765599 0.49251801 0.33730301 0.49515799\n\t\t 0.33950701 0.495386 0.33765599 0.49826199 0.33833301 0.495386 0.33765599 0.498025\n\t\t 0.34017399 0.49826199 0.33833301 0.52978498 0.33931899 0.49826199 0.33833301 0.52925199\n\t\t 0.34118199 0.52978498 0.33931899 0.54164499 0.16175599 0.53745198 0.161659 0.536264\n\t\t 0.16004699 0.536264 0.16004699 0.541228 0.160062 0.54164499 0.16175599 0.53745198\n\t\t 0.161659 0.54164499 0.16175599 0.54197299 0.162542 0.54197299 0.162542 0.53915697\n\t\t 0.162358 0.53745198 0.161659 0.54164499 0.16175599 0.541228 0.160062 0.57117701 0.160171\n\t\t 0.57117701 0.160171 0.57093197 0.161833 0.54164499 0.16175599 0.57002801 0.15777799\n\t\t 0.57117701 0.160171 0.541228 0.160062 0.541228 0.160062 0.54120702 0.157827 0.57002801\n\t\t 0.15777799 0.54120702 0.157827 0.541228 0.160062 0.536264 0.16004699 0.57002801 0.15777799\n\t\t 0.54120702 0.157827 0.54127002 0.156498 0.54127002 0.156498 0.56897497 0.156215 0.57002801\n\t\t 0.15777799 0.536264 0.16004699 0.53753799 0.157969 0.54120702 0.157827 0.54127002\n\t\t 0.156498 0.54120702 0.157827 0.53753799 0.157969 0.57093197 0.161833 0.57117701 0.160171\n\t\t 0.57905602 0.160155 0.57905602 0.160155 0.578951 0.161616 0.57093197 0.161833 0.57093197\n\t\t 0.161833 0.578951 0.161616 0.57678699 0.162339 0.57678699 0.162339 0.57059401 0.162653\n\t\t 0.57093197 0.161833 0.57059401 0.162653 0.54197299 0.162542 0.54164499 0.16175599\n\t\t 0.54164499 0.16175599 0.57093197 0.161833 0.57059401 0.162653 0.53753799 0.157969\n\t\t 0.53912503 0.15689 0.54127002 0.156498 0.48790199 0.33142099 0.488033 0.33332199\n\t\t 0.48451701 0.333951 0.48451701 0.333951 0.482977 0.33253801 0.48790199 0.33142099\n\t\t 0.482977 0.33253801 0.48451701 0.333951 0.48110101 0.33493301 0.48110101 0.33493301\n\t\t 0.480537 0.333545 0.482977 0.33253801 0.480537 0.333545 0.48110101 0.33493301 0.47741401\n\t\t 0.335922 0.47741401 0.335922 0.477494 0.33417001 0.480537 0.333545 0.477494 0.33417001\n\t\t 0.47741401 0.335922 0.44469601 0.33518901 0.44469601 0.33518901 0.44455501 0.33343199\n\t\t 0.477494 0.33417001 0.44455501 0.33343199 0.44469601 0.33518901;\n\tsetAttr \".uvst[0].uvsp[9250:9499]\" 0.43703499 0.33344001 0.43703499 0.33344001\n\t\t 0.438344 0.33178899 0.44455501 0.33343199 0.438344 0.33178899 0.43703499 0.33344001\n\t\t 0.43387499 0.33435699 0.43387499 0.33435699 0.434769 0.33193001 0.438344 0.33178899\n\t\t 0.488033 0.33332199 0.48790199 0.33142099 0.493384 0.33229899 0.493384 0.33229899\n\t\t 0.49209899 0.33385801 0.488033 0.33332199 0.49209899 0.33385801 0.493384 0.33229899\n\t\t 0.49605 0.333121 0.49605 0.333121 0.49579701 0.33459401 0.49209899 0.33385801 0.49579701\n\t\t 0.33459401 0.49605 0.333121 0.49883699 0.333552 0.49883699 0.333552 0.49890801 0.33531299\n\t\t 0.49579701 0.33459401 0.49890801 0.33531299 0.49883699 0.333552 0.53113198 0.334535\n\t\t 0.53113198 0.334535 0.53053999 0.336247 0.49890801 0.33531299 0.488033 0.33332199\n\t\t 0.48811901 0.33691099 0.48422399 0.33740801 0.48422399 0.33740801 0.48451701 0.333951\n\t\t 0.488033 0.33332199 0.48451701 0.333951 0.48422399 0.33740801 0.48152101 0.337991\n\t\t 0.48152101 0.337991 0.48110101 0.33493301 0.48451701 0.333951 0.48110101 0.33493301\n\t\t 0.48152101 0.337991 0.47799101 0.33891201 0.47799101 0.33891201 0.47741401 0.335922\n\t\t 0.48110101 0.33493301 0.47741401 0.335922 0.47799101 0.33891201 0.44515201 0.33841899\n\t\t 0.44515201 0.33841899 0.44469601 0.33518901 0.47741401 0.335922 0.44469601 0.33518901\n\t\t 0.44515201 0.33841899 0.43781099 0.33707401 0.43781099 0.33707401 0.43703499 0.33344001\n\t\t 0.44469601 0.33518901 0.43703499 0.33344001 0.43781099 0.33707401 0.43476701 0.33708501\n\t\t 0.43476701 0.33708501 0.43387499 0.33435699 0.43703499 0.33344001 0.48811901 0.33691099\n\t\t 0.488033 0.33332199 0.49209899 0.33385801 0.49209899 0.33385801 0.49251801 0.33730301\n\t\t 0.48811901 0.33691099 0.49251801 0.33730301 0.49209899 0.33385801 0.49579701 0.33459401\n\t\t 0.49579701 0.33459401 0.495386 0.33765599 0.49251801 0.33730301 0.495386 0.33765599\n\t\t 0.49579701 0.33459401 0.49890801 0.33531299 0.49890801 0.33531299 0.49826199 0.33833301\n\t\t 0.495386 0.33765599 0.49826199 0.33833301 0.49890801 0.33531299 0.53053999 0.336247\n\t\t 0.53053999 0.336247 0.52978498 0.33931899 0.49826199 0.33833301 0.48422399 0.33740801\n\t\t 0.48437101 0.339232 0.48173299 0.3398 0.48173299 0.3398 0.48152101 0.337991 0.48422399\n\t\t 0.33740801 0.48437101 0.339232 0.48422399 0.33740801 0.48811901 0.33691099 0.48811901\n\t\t 0.33691099 0.48816699 0.33874601 0.48437101 0.339232 0.48152101 0.337991 0.48173299\n\t\t 0.3398 0.47818699 0.34071299 0.47818699 0.34071299 0.47799101 0.33891201 0.48152101\n\t\t 0.337991 0.44515201 0.33841899 0.47799101 0.33891201 0.47818699 0.34071299 0.47818699\n\t\t 0.34071299 0.44555101 0.340323 0.44515201 0.33841899 0.44515201 0.33841899 0.44555101\n\t\t 0.340323 0.43851799 0.33908299 0.43851799 0.33908299 0.43781099 0.33707401 0.44515201\n\t\t 0.33841899 0.43781099 0.33707401 0.43851799 0.33908299 0.43554601 0.33885899 0.43554601\n\t\t 0.33885899 0.43476701 0.33708501 0.43781099 0.33707401 0.49242201 0.33916101 0.48816699\n\t\t 0.33874601 0.48811901 0.33691099 0.48811901 0.33691099 0.49251801 0.33730301 0.49242201\n\t\t 0.33916101 0.49242201 0.33916101 0.49251801 0.33730301 0.495386 0.33765599 0.495386\n\t\t 0.33765599 0.49515799 0.33950701 0.49242201 0.33916101 0.49515799 0.33950701 0.495386\n\t\t 0.33765599 0.49826199 0.33833301 0.49826199 0.33833301 0.498025 0.34017399 0.49515799\n\t\t 0.33950701 0.498025 0.34017399 0.49826199 0.33833301 0.52978498 0.33931899 0.52978498\n\t\t 0.33931899 0.52925199 0.34118199 0.498025 0.34017399 0.55439198 0.57676202 0.56650299\n\t\t 0.54195303 0.56548703 0.53719401 0.54150701 0.51174301 0.51270002 0.58815098 0.55067301\n\t\t 0.58004397 0.50828201 0.58652502 0.53684998 0.50999802 0.49790001 0.516361 0.50183803\n\t\t 0.51345998 0.48419699 0.555188 0.48357001 0.55031002 0.95774603 0.15181699 0.95741099\n\t\t 0.124713 0.95278502 0.123557 0.95378 0.152698 0.96153599 0.126505 0.95741099 0.124713\n\t\t 0.95774603 0.15181699 0.95774603 0.15181699 0.96191299 0.1506 0.95785803 0.121826\n\t\t 0.95785803 0.121826 0.95741099 0.124713 0.95353699 0.120382 0.97105998 0.095912002\n\t\t 0.97419399 0.098935999 0.97419399 0.098935999 0.95785803 0.121826 0.96203899 0.122782\n\t\t 0.95785803 0.121826 0.97606701 0.102297 0.97419399 0.098935999 0.95848298 0.15473001\n\t\t 0.95387501 0.15469299 0.96374202 0.17944001 0.96011603 0.18010899 0.95848298 0.15473001\n\t\t 0.96374202 0.17944001 0.96674502 0.178461 0.96335 0.155477 0.95848298 0.15473001\n\t\t 0.96385098 0.182419 0.96374202 0.17944001 0.96011603 0.18010899 0.96011603 0.18010899\n\t\t 0.95985502 0.181666 0.958691 0.207201 0.96385098 0.182419 0.95985502 0.181666 0.95985502\n\t\t 0.181666 0.95430702 0.207415 0.96385098 0.182419 0.958691 0.207201 0.962533 0.206439\n\t\t 0.96755302 0.183731 0.96385098 0.182419 0.96374202 0.17944001 0.96385098 0.182419\n\t\t 0.96374202 0.17944001 0.958327 0.21016601 0.95388198 0.20937601 0.95869601 0.23716\n\t\t 0.95424902 0.238334 0.958327 0.21016601 0.95869601 0.23716 0.96198702 0.23548 0.96263301\n\t\t 0.211345 0.958327 0.21016601 0.958691 0.207201 0.958327 0.21016601 0.958691 0.207201\n\t\t 0.95907402 0.240146 0.95869601 0.23716 0.95907402 0.240146 0.954768 0.241051 0.97312897\n\t\t 0.26499599 0.96937001 0.26785299 0.95907402 0.240146 0.97312897 0.26499599 0.97538799\n\t\t 0.261796 0.96303201 0.239518 0.95907402 0.240146 0.95907402 0.240146 0.97488701 0.267156\n\t\t 0.97312897 0.26499599 0.96937001 0.26785299 0.96937001 0.26785299 0.97134298 0.270062\n\t\t 0.95774603 0.15181699 0.95848298 0.15473001 0.95774603 0.15181699 0.97570401 0.26675501\n\t\t 0.97767502 0.26361501 0.97364998 0.264873 0.55439198 0.57676202;\n\tsetAttr \".uvst[0].uvsp[9500:9749]\" 0.55067301 0.58004397 0.51270002 0.58815098\n\t\t 0.55439198 0.57676202 0.51270002 0.58815098 0.54150701 0.51174301 0.55439198 0.57676202\n\t\t 0.54150701 0.51174301 0.56548703 0.53719401 0.56650299 0.54195303 0.55439198 0.57676202\n\t\t 0.56548703 0.53719401 0.54150701 0.51174301 0.51270002 0.58815098 0.50828201 0.58652502\n\t\t 0.50828201 0.58652502 0.53684998 0.50999802 0.54150701 0.51174301 0.53684998 0.50999802\n\t\t 0.50828201 0.58652502 0.49790001 0.516361 0.50828201 0.58652502 0.48419699 0.555188\n\t\t 0.49790001 0.516361 0.48419699 0.555188 0.48357001 0.55031002 0.49790001 0.516361\n\t\t 0.50183803 0.51345998 0.53684998 0.50999802 0.49790001 0.516361 0.95774603 0.15181699\n\t\t 0.95378 0.152698 0.95278502 0.123557 0.95278502 0.123557 0.95741099 0.124713 0.95774603\n\t\t 0.15181699 0.95774603 0.15181699 0.95741099 0.124713 0.96153599 0.126505 0.96153599\n\t\t 0.126505 0.96191299 0.1506 0.95774603 0.15181699 0.95741099 0.124713 0.95278502 0.123557\n\t\t 0.95353699 0.120382 0.95353699 0.120382 0.95785803 0.121826 0.95741099 0.124713 0.96153599\n\t\t 0.126505 0.95741099 0.124713 0.95785803 0.121826 0.95785803 0.121826 0.95353699 0.120382\n\t\t 0.97105998 0.095912002 0.97105998 0.095912002 0.97419399 0.098935999 0.95785803 0.121826\n\t\t 0.96203899 0.122782 0.95785803 0.121826 0.97419399 0.098935999 0.95785803 0.121826\n\t\t 0.96203899 0.122782 0.96153599 0.126505 0.97419399 0.098935999 0.97606701 0.102297\n\t\t 0.96203899 0.122782 0.95378 0.152698 0.95774603 0.15181699 0.95848298 0.15473001\n\t\t 0.95848298 0.15473001 0.95387501 0.15469299 0.95378 0.152698 0.95387501 0.15469299\n\t\t 0.95848298 0.15473001 0.96374202 0.17944001 0.96374202 0.17944001 0.96011603 0.18010899\n\t\t 0.95387501 0.15469299 0.96674502 0.178461 0.96374202 0.17944001 0.95848298 0.15473001\n\t\t 0.95848298 0.15473001 0.96335 0.155477 0.96674502 0.178461 0.96011603 0.18010899\n\t\t 0.96374202 0.17944001 0.96385098 0.182419 0.96385098 0.182419 0.95985502 0.181666\n\t\t 0.96011603 0.18010899 0.95985502 0.181666 0.96385098 0.182419 0.958691 0.207201 0.958691\n\t\t 0.207201 0.95430702 0.207415 0.95985502 0.181666 0.962533 0.206439 0.958691 0.207201\n\t\t 0.96385098 0.182419 0.96385098 0.182419 0.96755302 0.183731 0.962533 0.206439 0.96374202\n\t\t 0.17944001 0.96674502 0.178461 0.96755302 0.183731 0.96755302 0.183731 0.96385098\n\t\t 0.182419 0.96374202 0.17944001 0.95430702 0.207415 0.958691 0.207201 0.958327 0.21016601\n\t\t 0.958327 0.21016601 0.95388198 0.20937601 0.95430702 0.207415 0.95388198 0.20937601\n\t\t 0.958327 0.21016601 0.95869601 0.23716 0.95869601 0.23716 0.95424902 0.238334 0.95388198\n\t\t 0.20937601 0.96198702 0.23548 0.95869601 0.23716 0.958327 0.21016601 0.958327 0.21016601\n\t\t 0.96263301 0.211345 0.96198702 0.23548 0.958691 0.207201 0.962533 0.206439 0.96263301\n\t\t 0.211345 0.96263301 0.211345 0.958327 0.21016601 0.958691 0.207201 0.95424902 0.238334\n\t\t 0.95869601 0.23716 0.95907402 0.240146 0.95907402 0.240146 0.95869601 0.23716 0.96198702\n\t\t 0.23548 0.95907402 0.240146 0.954768 0.241051 0.95424902 0.238334 0.954768 0.241051\n\t\t 0.95907402 0.240146 0.97312897 0.26499599 0.97312897 0.26499599 0.96937001 0.26785299\n\t\t 0.954768 0.241051 0.97538799 0.261796 0.97312897 0.26499599 0.95907402 0.240146 0.95907402\n\t\t 0.240146 0.96303201 0.239518 0.97538799 0.261796 0.96198702 0.23548 0.96303201 0.239518\n\t\t 0.95907402 0.240146 0.96937001 0.26785299 0.97312897 0.26499599 0.97488701 0.267156\n\t\t 0.97488701 0.267156 0.97134298 0.270062 0.96937001 0.26785299 0.95774603 0.15181699\n\t\t 0.96191299 0.1506 0.96335 0.155477 0.96335 0.155477 0.95848298 0.15473001 0.95774603\n\t\t 0.15181699 0.97570401 0.26675501 0.97364998 0.264873 0.97538799 0.261796 0.97538799\n\t\t 0.261796 0.97767502 0.26361501 0.97570401 0.26675501 0.87495703 0.735511 0.87328398\n\t\t 0.707654 0.83477998 0.70703697 0.81704402 0.748236 0.814331 0.74527198 0.83281499\n\t\t 0.70639002 0.814331 0.74527198 0.83281499 0.70639002 0.82834899 0.70358801 0.80939603\n\t\t 0.74324203 0.814331 0.74527198 0.82316297 0.69995999 0.80364001 0.74000502 0.81759697\n\t\t 0.69592297 0.79586601 0.73451602 0.78802401 0.72855097 0.81377202 0.69314098 0.81357002\n\t\t 0.24340101 0.80976999 0.241524 0.81044799 0.24625701 0.81179303 0.24751 0.81625402\n\t\t 0.237829 0.81130499 0.23542599 0.807212 0.240512 0.80879903 0.234257 0.80762303 0.24590901\n\t\t 0.84394199 0.26351401 0.84580201 0.259388 0.84834701 0.25369099 0.80887699 0.24784601\n\t\t 0.81179303 0.24751 0.81179303 0.24751 0.84358603 0.26490101 0.84394199 0.26351401\n\t\t 0.81179303 0.24751 0.81929499 0.231635 0.85139799 0.24748801 0.81185299 0.228012\n\t\t 0.81434298 0.229223 0.85348898 0.243242 0.82138097 0.22738899 0.81642598 0.224971\n\t\t 0.81393802 0.223757 0.85832399 0.227291 0.85831302 0.232971 0.88546401 0.240761 0.88547498\n\t\t 0.23508 0.85829997 0.23886 0.88545102 0.24665 0.85827899 0.248758 0.88543397 0.25391701\n\t\t 0.858262 0.258488 0.88542497 0.25853401 0.88808697 0.25853899 0.88809699 0.25375199\n\t\t 0.88811302 0.24676099 0.88724899 0.24051 0.88661897 0.235975 0.83760703 0.35395399\n\t\t 0.83810198 0.322759 0.77812099 0.321789 0.77762598 0.353003 0.918495 0.68215603 0.91578197\n\t\t 0.68653101 0.922759 0.68750101 0.92462498 0.685727 0.92149401 0.68966001 0.91567397\n\t\t 0.69125801 0.95169902 0.714311 0.94812202 0.71939099 0.978136 0.74321401 0.97810203\n\t\t 0.73569202 0.991247 0.73565298 0.98482502 0.73174298 0.98555303 0.73082399 0.99289203\n\t\t 0.73407298 0.96921599 0.69991601;\n\tsetAttr \".uvst[0].uvsp[9750:9999]\" 0.972848 0.69464898 0.949525 0.69110799 0.95128602\n\t\t 0.68422401 0.92980301 0.682823 0.92873102 0.67647803 0.92689502 0.68421501 0.92288399\n\t\t 0.67867899 0.88598299 0.29197499 0.88596499 0.296848 0.88832903 0.29692301 0.888367\n\t\t 0.292137 0.88869601 0.30144799 0.88832903 0.29692301 0.88596499 0.296848 0.88596499\n\t\t 0.296848 0.886388 0.30138001 0.88616902 0.28675199 0.88865298 0.28698099 0.88643199\n\t\t 0.281019 0.88904703 0.281454 0.886388 0.30138001 0.88622999 0.340628 0.88910103 0.340496\n\t\t 0.88869601 0.30144799 0.886388 0.30138001 0.89002901 0.37511501 0.88673902 0.37561601\n\t\t 0.72852999 0.052997999 0.714486 0.053489 0.71459198 0.056380998 0.72823602 0.056375001\n\t\t 0.71258098 0.056483999 0.71240801 0.053585999 0.79584998 0.26294401 0.75502402 0.262382\n\t\t 0.75572801 0.26655999 0.79558599 0.26567799 0.68943799 0.063422002 0.66773498 0.062839001\n\t\t 0.66739601 0.066302001 0.68927598 0.066028997 0.64532101 0.066336997 0.64583099 0.062043998\n\t\t 0.693097 0.176147 0.69831598 0.175594 0.69830602 0.173352 0.69319201 0.17405599 0.69824201\n\t\t 0.17793299 0.693021 0.17834599 0.69824803 0.18049701 0.69305301 0.180795 0.69316298\n\t\t 0.18363699 0.69830298 0.18345299 0.498887 0.228847 0.51838797 0.228807 0.517501 0.22363099\n\t\t 0.49809301 0.22346801 0.47930601 0.22885799 0.478605 0.223305 0.68722099 0.19225\n\t\t 0.686746 0.185635 0.68155301 0.185863 0.682064 0.19289599 0.68733603 0.193253 0.68230897\n\t\t 0.193941 0.60140902 0.0099999998 0.63197398 0.011273 0.63232601 0.0055340002 0.601601\n\t\t 0.0047189998 0.66701102 0.011149 0.66756898 0.0058539999 0.53859198 0.326415 0.53930199\n\t\t 0.321257 0.50759703 0.320494 0.50721401 0.32607201 0.250175 0.66298598 0.25151199\n\t\t 0.66015399 0.25248501 0.65764499 0.250175 0.66298598 0.25248501 0.65764499 0.20936\n\t\t 0.67509401 0.25248501 0.65764499 0.180815 0.652587 0.25248501 0.65764499 0.25282401\n\t\t 0.65294302 0.25248501 0.65764499 0.25297201 0.65526301 0.25282401 0.65294302 0.21438301\n\t\t 0.65269703 0.180815 0.652587 0.178285 0.65943301 0.17829899 0.66055399 0.250175 0.66298598\n\t\t 0.229876 0.66924798 0.87495703 0.735511 0.81704402 0.748236 0.83477998 0.70703697\n\t\t 0.83477998 0.70703697 0.87328398 0.707654 0.87495703 0.735511 0.83477998 0.70703697\n\t\t 0.81704402 0.748236 0.814331 0.74527198 0.814331 0.74527198 0.83281499 0.70639002\n\t\t 0.83477998 0.70703697 0.82834899 0.70358801 0.83281499 0.70639002 0.814331 0.74527198\n\t\t 0.814331 0.74527198 0.80939603 0.74324203 0.82834899 0.70358801 0.82316297 0.69995999\n\t\t 0.82834899 0.70358801 0.80939603 0.74324203 0.80939603 0.74324203 0.80364001 0.74000502\n\t\t 0.82316297 0.69995999 0.81759697 0.69592297 0.82316297 0.69995999 0.80364001 0.74000502\n\t\t 0.80364001 0.74000502 0.79586601 0.73451602 0.81759697 0.69592297 0.81759697 0.69592297\n\t\t 0.79586601 0.73451602 0.81759697 0.69592297 0.81357002 0.24340101 0.81179303 0.24751\n\t\t 0.81044799 0.24625701 0.81044799 0.24625701 0.80976999 0.241524 0.81357002 0.24340101\n\t\t 0.81625402 0.237829 0.81357002 0.24340101 0.80976999 0.241524 0.80976999 0.241524\n\t\t 0.81130499 0.23542599 0.81625402 0.237829 0.81130499 0.23542599 0.80976999 0.241524\n\t\t 0.807212 0.240512 0.807212 0.240512 0.80879903 0.234257 0.81130499 0.23542599 0.80976999\n\t\t 0.241524 0.81044799 0.24625701 0.80762303 0.24590901 0.80762303 0.24590901 0.807212\n\t\t 0.240512 0.80976999 0.241524 0.84394199 0.26351401 0.81179303 0.24751 0.81357002\n\t\t 0.24340101 0.81357002 0.24340101 0.84580201 0.259388 0.84394199 0.26351401 0.84834701\n\t\t 0.25369099 0.84580201 0.259388 0.81357002 0.24340101 0.81357002 0.24340101 0.81625402\n\t\t 0.237829 0.84834701 0.25369099 0.81044799 0.24625701 0.81179303 0.24751 0.80887699\n\t\t 0.24784601 0.80887699 0.24784601 0.80762303 0.24590901 0.81044799 0.24625701 0.81179303\n\t\t 0.24751 0.84394199 0.26351401 0.84358603 0.26490101 0.84358603 0.26490101 0.80887699\n\t\t 0.24784601 0.81179303 0.24751 0.84834701 0.25369099 0.81625402 0.237829 0.81929499\n\t\t 0.231635 0.81929499 0.231635 0.85139799 0.24748801 0.84834701 0.25369099 0.81130499\n\t\t 0.23542599 0.80879903 0.234257 0.81185299 0.228012 0.81185299 0.228012 0.81434298\n\t\t 0.229223 0.81130499 0.23542599 0.81434298 0.229223 0.81929499 0.231635 0.81625402\n\t\t 0.237829 0.81625402 0.237829 0.81130499 0.23542599 0.81434298 0.229223 0.85139799\n\t\t 0.24748801 0.81929499 0.231635 0.81929499 0.231635 0.81929499 0.231635 0.81434298\n\t\t 0.229223 0.81434298 0.229223 0.81185299 0.228012 0.81434298 0.229223 0.81185299 0.228012\n\t\t 0.85832399 0.227291 0.88547498 0.23508 0.88546401 0.240761 0.88546401 0.240761 0.85831302\n\t\t 0.232971 0.85832399 0.227291 0.85829997 0.23886 0.85831302 0.232971 0.88546401 0.240761\n\t\t 0.88546401 0.240761 0.88545102 0.24665 0.85829997 0.23886 0.85827899 0.248758 0.85829997\n\t\t 0.23886 0.88545102 0.24665 0.88545102 0.24665 0.88543397 0.25391701 0.85827899 0.248758\n\t\t 0.85827899 0.248758 0.88543397 0.25391701 0.88543397 0.25391701 0.88543397 0.25391701\n\t\t 0.88543397 0.25391701 0.88809699 0.25375199 0.88809699 0.25375199 0.88543397 0.25391701\n\t\t 0.88545102 0.24665 0.88545102 0.24665 0.88811302 0.24676099 0.88809699 0.25375199\n\t\t 0.88724899 0.24051 0.88811302 0.24676099 0.88545102 0.24665 0.88545102 0.24665 0.88546401\n\t\t 0.240761 0.88724899 0.24051 0.88661897 0.235975 0.88724899 0.24051 0.88546401 0.240761\n\t\t 0.88546401 0.240761 0.88547498 0.23508 0.88661897 0.235975 0.77812099 0.321789 0.77812099\n\t\t 0.321789 0.83810198 0.322759 0.922759 0.68750101 0.91578197 0.68653101 0.918495 0.68215603;\n\tsetAttr \".uvst[0].uvsp[10000:10249]\" 0.918495 0.68215603 0.92462498 0.685727 0.922759\n\t\t 0.68750101 0.91578197 0.68653101 0.922759 0.68750101 0.92149401 0.68966001 0.92149401\n\t\t 0.68966001 0.91567397 0.69125801 0.91578197 0.68653101 0.91567397 0.69125801 0.92149401\n\t\t 0.68966001 0.95169902 0.714311 0.95169902 0.714311 0.94812202 0.71939099 0.91567397\n\t\t 0.69125801 0.978136 0.74321401 0.94812202 0.71939099 0.95169902 0.714311 0.95169902\n\t\t 0.714311 0.97810203 0.73569202 0.978136 0.74321401 0.991247 0.73565298 0.978136 0.74321401\n\t\t 0.97810203 0.73569202 0.97810203 0.73569202 0.98482502 0.73174298 0.991247 0.73565298\n\t\t 0.991247 0.73565298 0.98482502 0.73174298 0.98555303 0.73082399 0.98555303 0.73082399\n\t\t 0.99289203 0.73407298 0.991247 0.73565298 0.99289203 0.73407298 0.98555303 0.73082399\n\t\t 0.96921599 0.69991601 0.96921599 0.69991601 0.972848 0.69464898 0.99289203 0.73407298\n\t\t 0.972848 0.69464898 0.96921599 0.69991601 0.949525 0.69110799 0.949525 0.69110799\n\t\t 0.95128602 0.68422401 0.972848 0.69464898 0.95128602 0.68422401 0.949525 0.69110799\n\t\t 0.92980301 0.682823 0.92980301 0.682823 0.92873102 0.67647803 0.95128602 0.68422401\n\t\t 0.92873102 0.67647803 0.92980301 0.682823 0.92689502 0.68421501 0.92689502 0.68421501\n\t\t 0.92288399 0.67867899 0.92873102 0.67647803 0.92288399 0.67867899 0.92689502 0.68421501\n\t\t 0.92462498 0.685727 0.92462498 0.685727 0.918495 0.68215603 0.92288399 0.67867899\n\t\t 0.88598299 0.29197499 0.888367 0.292137 0.88832903 0.29692301 0.88832903 0.29692301\n\t\t 0.88596499 0.296848 0.88598299 0.29197499 0.88596499 0.296848 0.88832903 0.29692301\n\t\t 0.88869601 0.30144799 0.88869601 0.30144799 0.886388 0.30138001 0.88596499 0.296848\n\t\t 0.888367 0.292137 0.88598299 0.29197499 0.88616902 0.28675199 0.88616902 0.28675199\n\t\t 0.88865298 0.28698099 0.888367 0.292137 0.88865298 0.28698099 0.88616902 0.28675199\n\t\t 0.88643199 0.281019 0.88643199 0.281019 0.88904703 0.281454 0.88865298 0.28698099\n\t\t 0.886388 0.30138001 0.88869601 0.30144799 0.88910103 0.340496 0.88910103 0.340496\n\t\t 0.88622999 0.340628 0.886388 0.30138001 0.88622999 0.340628 0.88910103 0.340496 0.89002901\n\t\t 0.37511501 0.89002901 0.37511501 0.88673902 0.37561601 0.88622999 0.340628 0.72852999\n\t\t 0.052997999 0.72823602 0.056375001 0.71459198 0.056380998 0.71459198 0.056380998\n\t\t 0.714486 0.053489 0.72852999 0.052997999 0.714486 0.053489 0.71459198 0.056380998\n\t\t 0.71258098 0.056483999 0.71258098 0.056483999 0.71240801 0.053585999 0.714486 0.053489\n\t\t 0.79584998 0.26294401 0.79558599 0.26567799 0.75572801 0.26655999 0.75572801 0.26655999\n\t\t 0.75502402 0.262382 0.79584998 0.26294401 0.66739601 0.066302001 0.66773498 0.062839001\n\t\t 0.68943799 0.063422002 0.68943799 0.063422002 0.68927598 0.066028997 0.66739601 0.066302001\n\t\t 0.66773498 0.062839001 0.66739601 0.066302001 0.64532101 0.066336997 0.64532101 0.066336997\n\t\t 0.64583099 0.062043998 0.66773498 0.062839001 0.693097 0.176147 0.69319201 0.17405599\n\t\t 0.69830602 0.173352 0.69830602 0.173352 0.69831598 0.175594 0.693097 0.176147 0.693097\n\t\t 0.176147 0.69831598 0.175594 0.69824201 0.17793299 0.69824201 0.17793299 0.693021\n\t\t 0.17834599 0.693097 0.176147 0.693021 0.17834599 0.69824201 0.17793299 0.69824803\n\t\t 0.18049701 0.69824803 0.18049701 0.69305301 0.180795 0.693021 0.17834599 0.69316298\n\t\t 0.18363699 0.69305301 0.180795 0.69824803 0.18049701 0.69824803 0.18049701 0.69830298\n\t\t 0.18345299 0.69316298 0.18363699 0.517501 0.22363099 0.51838797 0.228807 0.498887\n\t\t 0.228847 0.498887 0.228847 0.49809301 0.22346801 0.517501 0.22363099 0.49809301 0.22346801\n\t\t 0.498887 0.228847 0.47930601 0.22885799 0.47930601 0.22885799 0.478605 0.223305 0.49809301\n\t\t 0.22346801 0.68722099 0.19225 0.682064 0.19289599 0.68155301 0.185863 0.68155301\n\t\t 0.185863 0.686746 0.185635 0.68722099 0.19225 0.682064 0.19289599 0.68722099 0.19225\n\t\t 0.68733603 0.193253 0.68733603 0.193253 0.68230897 0.193941 0.682064 0.19289599 0.60140902\n\t\t 0.0099999998 0.601601 0.0047189998 0.63232601 0.0055340002 0.63232601 0.0055340002\n\t\t 0.63197398 0.011273 0.60140902 0.0099999998 0.66701102 0.011149 0.63197398 0.011273\n\t\t 0.63232601 0.0055340002 0.63232601 0.0055340002 0.66756898 0.0058539999 0.66701102\n\t\t 0.011149 0.53859198 0.326415 0.50721401 0.32607201 0.50759703 0.320494 0.50759703\n\t\t 0.320494 0.53930199 0.321257 0.53859198 0.326415 0.180815 0.652587 0.21438301 0.65269703\n\t\t 0.25282401 0.65294302 0.180815 0.652587 0.25282401 0.65294302 0.25248501 0.65764499\n\t\t 0.25282401 0.65294302 0.25297201 0.65526301 0.25248501 0.65764499 0.180815 0.652587\n\t\t 0.25248501 0.65764499 0.20936 0.67509401 0.25248501 0.65764499 0.250175 0.66298598\n\t\t 0.20936 0.67509401 0.25248501 0.65764499 0.25151199 0.66015399 0.250175 0.66298598\n\t\t 0.250175 0.66298598 0.229876 0.66924798 0.20936 0.67509401 0.180815 0.652587 0.20936\n\t\t 0.67509401 0.178285 0.65943301 0.20936 0.67509401 0.17829899 0.66055399 0.178285\n\t\t 0.65943301 0.92276597 0.63005197 0.93923599 0.628268 0.94546199 0.62093198 0.92661202\n\t\t 0.61794502 0.93436199 0.59341502 0.95700002 0.60541397 0.917422 0.63016802 0.92120302\n\t\t 0.61741799 0.81924099 0.63081002 0.82395202 0.617257 0.83378798 0.58966398 0.92885798\n\t\t 0.59154999 0.95149302 0.62183499 0.93923599 0.628268 0.94480002 0.62596798 0.95149302\n\t\t 0.62183499 0.96358198 0.60907501 0.96231198 0.59723401 0.93717599 0.57980102 0.93272698\n\t\t 0.578444 0.838947 0.57559103 0.96537101 0.60272902 0.36606699 0.20621599 0.36480001\n\t\t 0.21591599 0.37220401 0.213842 0.373072 0.206751 0.385562 0.19188499 0.38175401 0.188875;\n\tsetAttr \".uvst[0].uvsp[10250:10499]\" 0.385562 0.19188499 0.373072 0.206751 0.378144\n\t\t 0.206595 0.389696 0.194686 0.385562 0.19188499 0.393255 0.187555 0.385562 0.19188499\n\t\t 0.396442 0.19130901 0.376304 0.21924999 0.37220401 0.213842 0.36480001 0.21591599\n\t\t 0.37220401 0.213842 0.376304 0.21924999 0.381199 0.217168 0.37737501 0.21261901 0.37220401\n\t\t 0.213842 0.373072 0.206751 0.373072 0.206751 0.37220401 0.213842 0.40849701 0.22985201\n\t\t 0.376304 0.21924999 0.376304 0.21924999 0.406863 0.23412301 0.40434101 0.23917399\n\t\t 0.406863 0.23412301 0.36993599 0.223579 0.36480001 0.21591599 0.41312799 0.230804\n\t\t 0.41149601 0.234982 0.41149601 0.234982 0.406863 0.23412301 0.50844902 0.235589 0.50984001\n\t\t 0.239788 0.50887799 0.244826 0.50984001 0.239788 0.41149601 0.234982 0.41149601 0.234982\n\t\t 0.40983099 0.23967201 0.41149601 0.234982 0.399542 0.18562099 0.393255 0.187555 0.399542\n\t\t 0.18562099 0.39798501 0.182255 0.41734099 0.182106 0.399542 0.18562099 0.399542 0.18562099\n\t\t 0.417918 0.18594199 0.42309499 0.18269099 0.42355999 0.186542 0.52797401 0.189916\n\t\t 0.527381 0.180078 0.52797401 0.189916 0.42355999 0.186542 0.42380801 0.190621 0.52362698\n\t\t 0.194233 0.52797401 0.189916 0.417918 0.18594199 0.40195701 0.189677 0.41839501 0.190145\n\t\t 0.417918 0.18594199 0.42355999 0.186542 0.42355999 0.186542 0.417918 0.18594199 0.391049\n\t\t 0.18465 0.393255 0.187555 0.393255 0.187555 0.70449603 0.349154 0.70906401 0.35349801\n\t\t 0.72390699 0.353021 0.720828 0.34879601 0.75402701 0.34662801 0.75414002 0.350903\n\t\t 0.70366901 0.33915401 0.70449603 0.349154 0.720828 0.34879601 0.720828 0.34879601\n\t\t 0.72023499 0.34001201 0.720828 0.34879601 0.75402701 0.34662801 0.75402701 0.34662801\n\t\t 0.75387198 0.34022 0.76950097 0.34889799 0.77091497 0.34457901 0.77093101 0.339385\n\t\t 0.75402701 0.34662801 0.75402701 0.34662801 0.77091497 0.34457901 0.984604 0.17867599\n\t\t 0.99834901 0.17867599 0.99834901 0.169891 0.984604 0.169891 0.984604 0.16670901 0.99834901\n\t\t 0.16670901 0.99834901 0.19197901 0.984604 0.19197901 0.99834901 0.26771599 0.99834901\n\t\t 0.19534799 0.984604 0.19534799 0.984604 0.26771599 0.984604 0.19197901 0.99834901\n\t\t 0.19197901 0.984604 0.19197901 0.62519503 0.908678 0.61003703 0.90618402 0.61164898\n\t\t 0.962704 0.62696803 0.96519297 0.60846299 0.96218002 0.60702801 0.90579599 0.61252099\n\t\t 0.993545 0.62791902 0.99603498 0.60925299 0.99303502 0.62837499 0.90926898 0.63031203\n\t\t 0.96567398 0.63133502 0.99652702 0.74974 0.908687 0.63168401 0.90934199 0.633735\n\t\t 0.96574998 0.75171101 0.96195501 0.70858699 0.99514198 0.63482898 0.99666202 0.63031203\n\t\t 0.96567398 0.62837499 0.90926898 0.63031203 0.96567398 0.75171101 0.96195501 0.70858699\n\t\t 0.99514198 0.75171101 0.96195501 0.63133502 0.99652702 0.63031203 0.96567398 0.63133502\n\t\t 0.99652702 0.984604 0.00685 0.984604 0.11273 0.99834901 0.11273 0.99834901 0.00685\n\t\t 0.99834901 0.16670901 0.984604 0.16670901 0.99834901 0.16670901 0.70010298 0.116378\n\t\t 0.700306 0.118869 0.70915198 0.119796 0.70895702 0.117305 0.69709802 0.118536 0.696926\n\t\t 0.116043 0.71202201 0.117639 0.71217 0.120134 0.58830601 0.120059 0.69388199 0.118469\n\t\t 0.693753 0.115973 0.58820099 0.117562 0.696926 0.116043 0.69709802 0.118536 0.696926\n\t\t 0.116043 0.81957197 0.114892 0.71507001 0.117668 0.71515697 0.120165 0.819628 0.11739\n\t\t 0.71217 0.120134 0.71202201 0.117639 0.71217 0.120134 0.984604 0.17867599 0.984604\n\t\t 0.169891 0.97997999 0.170661 0.97997999 0.177027 0.984604 0.17867599 0.83235401 0.15879001\n\t\t 0.84057802 0.131308 0.83883202 0.129869 0.82898998 0.15759499 0.61003703 0.90618402\n\t\t 0.62519503 0.908678 0.62313801 0.90476799 0.61330497 0.90316802 0.61003703 0.90618402\n\t\t 0.82683498 0.18546499 0.83666402 0.15681601 0.83484101 0.15604401 0.82326502 0.18546499\n\t\t 0.850573 0.13402 0.85117102 0.135068 0.85278201 0.134821 0.85215998 0.133764 0.848773\n\t\t 0.133103 0.850384 0.132855 0.85385001 0.16642 0.850851 0.165355 0.84141099 0.130768\n\t\t 0.84328902 0.131156 0.84154302 0.12971701 0.83969003 0.129338 0.84729999 0.156028\n\t\t 0.84790498 0.15681601 0.84964401 0.15604401 0.84901398 0.155256 0.84539998 0.155766\n\t\t 0.84714001 0.154994 0.84964401 0.18546499 0.84646201 0.18546499 0.837578 0.156028\n\t\t 0.83958203 0.155766 0.837758 0.154994 0.83578098 0.155256 0.60522699 0.961959 0.60846299\n\t\t 0.96218002 0.60702801 0.90579599 0.60702801 0.90579599 0.60397798 0.90552002 0.60846299\n\t\t 0.96218002 0.60593802 0.99287897 0.60925299 0.99303502 0.60846299 0.96218002 0.48866799\n\t\t 0.961335 0.48754799 0.908041 0.53310698 0.993343 0.48866799 0.961335 0.48866799 0.961335\n\t\t 0.53310698 0.993343 0.97934997 0.101358 0.97937298 0.15511601 0.984604 0.16670901\n\t\t 0.984604 0.16670901 0.984604 0.11273 0.63328099 0.90513402 0.629408 0.90519202 0.62837499\n\t\t 0.90926898 0.62837499 0.90926898 0.63168401 0.90934199 0.75729501 0.232142 0.75729799\n\t\t 0.218486 0.75384998 0.217813 0.753851 0.23208 0.75749999 0.233072 0.75446999 0.23503201\n\t\t 0.75824898 0.23364 0.75690502 0.236882 0.85685402 0.277381 0.85511202 0.28345501\n\t\t 0.75480902 0.214947 0.75753403 0.217767 0.75768101 0.213981 0.758241 0.21754199 0.86500299\n\t\t 0.213981 0.86500299 0.220301 0.69633102 0.149021 0.69651198 0.15420599 0.70989001\n\t\t 0.15637 0.70966202 0.148422 0.71065801 0.15649299 0.71045703 0.14840201 0.69556898\n\t\t 0.14910699 0.69578397 0.154098 0.71045703 0.14840201;\n\tsetAttr \".uvst[0].uvsp[10500:10749]\" 0.71065801 0.15649299 0.71142501 0.156541\n\t\t 0.71125501 0.148404 0.71045703 0.14840201 0.81919903 0.157323 0.81904501 0.149186\n\t\t 0.69481099 0.149165 0.69506299 0.154089 0.69578397 0.154098 0.69578397 0.154098 0.69556898\n\t\t 0.14910699 0.58820099 0.155571 0.58847302 0.160494 0.51066703 0.99915701 0.51139802\n\t\t 0.998909 0.51162499 0.99817097 0.51100397 0.98353797 0.51126897 0.98430598 0.39858499\n\t\t 0.97083199 0.51025897 0.983208 0.39934501 0.99924302 0.94546199 0.62093198 0.93923599\n\t\t 0.628268 0.92276597 0.63005197 0.92276597 0.63005197 0.92661202 0.61794502 0.94546199\n\t\t 0.62093198 0.94546199 0.62093198 0.92661202 0.61794502 0.93436199 0.59341502 0.93436199\n\t\t 0.59341502 0.95700002 0.60541397 0.94546199 0.62093198 0.92661202 0.61794502 0.92276597\n\t\t 0.63005197 0.917422 0.63016802 0.917422 0.63016802 0.92120302 0.61741799 0.92661202\n\t\t 0.61794502 0.93436199 0.59341502 0.92661202 0.61794502 0.92120302 0.61741799 0.92120302\n\t\t 0.61741799 0.917422 0.63016802 0.81924099 0.63081002 0.81924099 0.63081002 0.82395202\n\t\t 0.617257 0.92120302 0.61741799 0.92120302 0.61741799 0.82395202 0.617257 0.83378798\n\t\t 0.58966398 0.83378798 0.58966398 0.92885798 0.59154999 0.92120302 0.61741799 0.92120302\n\t\t 0.61741799 0.92885798 0.59154999 0.93436199 0.59341502 0.93923599 0.628268 0.94546199\n\t\t 0.62093198 0.95149302 0.62183499 0.95149302 0.62183499 0.94480002 0.62596798 0.93923599\n\t\t 0.628268 0.94546199 0.62093198 0.95700002 0.60541397 0.96358198 0.60907501 0.96358198\n\t\t 0.60907501 0.95149302 0.62183499 0.94546199 0.62093198 0.96231198 0.59723401 0.95700002\n\t\t 0.60541397 0.93436199 0.59341502 0.96358198 0.60907501 0.95700002 0.60541397 0.96231198\n\t\t 0.59723401 0.93436199 0.59341502 0.93717599 0.57980102 0.96231198 0.59723401 0.93272698\n\t\t 0.578444 0.92885798 0.59154999 0.83378798 0.58966398 0.93436199 0.59341502 0.92885798\n\t\t 0.59154999 0.93272698 0.578444 0.93272698 0.578444 0.93717599 0.57980102 0.93436199\n\t\t 0.59341502 0.83378798 0.58966398 0.838947 0.57559103 0.93272698 0.578444 0.96231198\n\t\t 0.59723401 0.96537101 0.60272902 0.96358198 0.60907501 0.36606699 0.20621599 0.373072\n\t\t 0.206751 0.37220401 0.213842 0.37220401 0.213842 0.36480001 0.21591599 0.36606699\n\t\t 0.20621599 0.373072 0.206751 0.36606699 0.20621599 0.38175401 0.188875 0.38175401\n\t\t 0.188875 0.385562 0.19188499 0.373072 0.206751 0.378144 0.206595 0.373072 0.206751\n\t\t 0.385562 0.19188499 0.385562 0.19188499 0.389696 0.194686 0.378144 0.206595 0.389696\n\t\t 0.194686 0.385562 0.19188499 0.393255 0.187555 0.393255 0.187555 0.396442 0.19130901\n\t\t 0.389696 0.194686 0.36480001 0.21591599 0.37220401 0.213842 0.376304 0.21924999 0.381199\n\t\t 0.217168 0.376304 0.21924999 0.37220401 0.213842 0.37220401 0.213842 0.37737501 0.21261901\n\t\t 0.381199 0.217168 0.373072 0.206751 0.378144 0.206595 0.37737501 0.21261901 0.37737501\n\t\t 0.21261901 0.37220401 0.213842 0.373072 0.206751 0.376304 0.21924999 0.381199 0.217168\n\t\t 0.40849701 0.22985201 0.40849701 0.22985201 0.406863 0.23412301 0.376304 0.21924999\n\t\t 0.36993599 0.223579 0.376304 0.21924999 0.406863 0.23412301 0.376304 0.21924999 0.36993599\n\t\t 0.223579 0.36480001 0.21591599 0.406863 0.23412301 0.40434101 0.23917399 0.36993599\n\t\t 0.223579 0.406863 0.23412301 0.40849701 0.22985201 0.41312799 0.230804 0.41312799\n\t\t 0.230804 0.41149601 0.234982 0.406863 0.23412301 0.40434101 0.23917399 0.406863 0.23412301\n\t\t 0.41149601 0.234982 0.41149601 0.234982 0.41312799 0.230804 0.50844902 0.235589 0.50844902\n\t\t 0.235589 0.50984001 0.239788 0.41149601 0.234982 0.41149601 0.234982 0.50984001 0.239788\n\t\t 0.50887799 0.244826 0.50887799 0.244826 0.40983099 0.23967201 0.41149601 0.234982\n\t\t 0.41149601 0.234982 0.40983099 0.23967201 0.40434101 0.23917399 0.396442 0.19130901\n\t\t 0.393255 0.187555 0.399542 0.18562099 0.39798501 0.182255 0.399542 0.18562099 0.393255\n\t\t 0.187555 0.393255 0.187555 0.391049 0.18465 0.39798501 0.182255 0.399542 0.18562099\n\t\t 0.39798501 0.182255 0.41734099 0.182106 0.41734099 0.182106 0.417918 0.18594199 0.399542\n\t\t 0.18562099 0.417918 0.18594199 0.41734099 0.182106 0.42309499 0.18269099 0.42309499\n\t\t 0.18269099 0.42355999 0.186542 0.417918 0.18594199 0.52797401 0.189916 0.42355999\n\t\t 0.186542 0.42309499 0.18269099 0.42309499 0.18269099 0.527381 0.180078 0.52797401\n\t\t 0.189916 0.42380801 0.190621 0.42355999 0.186542 0.52797401 0.189916 0.52797401 0.189916\n\t\t 0.52362698 0.194233 0.42380801 0.190621 0.40195701 0.189677 0.399542 0.18562099 0.417918\n\t\t 0.18594199 0.417918 0.18594199 0.41839501 0.190145 0.40195701 0.189677 0.42355999\n\t\t 0.186542 0.42380801 0.190621 0.41839501 0.190145 0.41839501 0.190145 0.417918 0.18594199\n\t\t 0.42355999 0.186542 0.399542 0.18562099 0.40195701 0.189677 0.396442 0.19130901 0.391049\n\t\t 0.18465 0.393255 0.187555 0.385562 0.19188499 0.385562 0.19188499 0.38175401 0.188875\n\t\t 0.391049 0.18465 0.72390699 0.353021 0.70906401 0.35349801 0.70449603 0.349154 0.70449603\n\t\t 0.349154 0.720828 0.34879601 0.72390699 0.353021 0.72390699 0.353021 0.720828 0.34879601\n\t\t 0.75402701 0.34662801 0.75402701 0.34662801 0.75414002 0.350903 0.72390699 0.353021\n\t\t 0.720828 0.34879601 0.70449603 0.349154 0.70366901 0.33915401 0.70366901 0.33915401\n\t\t 0.72023499 0.34001201 0.720828 0.34879601 0.75387198 0.34022 0.75402701 0.34662801\n\t\t 0.720828 0.34879601 0.720828 0.34879601 0.72023499 0.34001201 0.75387198 0.34022\n\t\t 0.76950097 0.34889799;\n\tsetAttr \".uvst[0].uvsp[10750:10999]\" 0.75414002 0.350903 0.75402701 0.34662801\n\t\t 0.75402701 0.34662801 0.77091497 0.34457901 0.76950097 0.34889799 0.77093101 0.339385\n\t\t 0.77091497 0.34457901 0.75402701 0.34662801 0.75402701 0.34662801 0.75387198 0.34022\n\t\t 0.77093101 0.339385 0.984604 0.17867599 0.984604 0.169891 0.99834901 0.169891 0.99834901\n\t\t 0.169891 0.99834901 0.17867599 0.984604 0.17867599 0.99834901 0.169891 0.984604 0.169891\n\t\t 0.984604 0.16670901 0.984604 0.16670901 0.99834901 0.16670901 0.99834901 0.169891\n\t\t 0.984604 0.17867599 0.99834901 0.17867599 0.99834901 0.19197901 0.99834901 0.19197901\n\t\t 0.984604 0.19197901 0.984604 0.17867599 0.99834901 0.26771599 0.984604 0.26771599\n\t\t 0.984604 0.19534799 0.984604 0.19534799 0.99834901 0.19534799 0.99834901 0.26771599\n\t\t 0.99834901 0.19534799 0.984604 0.19534799 0.984604 0.19197901 0.984604 0.19197901\n\t\t 0.99834901 0.19197901 0.99834901 0.19534799 0.62519503 0.908678 0.62696803 0.96519297\n\t\t 0.61164898 0.962704 0.61164898 0.962704 0.61003703 0.90618402 0.62519503 0.908678\n\t\t 0.61003703 0.90618402 0.61164898 0.962704 0.60846299 0.96218002 0.60846299 0.96218002\n\t\t 0.60702801 0.90579599 0.61003703 0.90618402 0.61252099 0.993545 0.61164898 0.962704\n\t\t 0.62696803 0.96519297 0.62696803 0.96519297 0.62791902 0.99603498 0.61252099 0.993545\n\t\t 0.61164898 0.962704 0.61252099 0.993545 0.60925299 0.99303502 0.60925299 0.99303502\n\t\t 0.60846299 0.96218002 0.61164898 0.962704 0.62696803 0.96519297 0.62519503 0.908678\n\t\t 0.62837499 0.90926898 0.62837499 0.90926898 0.63031203 0.96567398 0.62696803 0.96519297\n\t\t 0.62791902 0.99603498 0.62696803 0.96519297 0.63031203 0.96567398 0.63031203 0.96567398\n\t\t 0.63133502 0.99652702 0.62791902 0.99603498 0.74974 0.908687 0.75171101 0.96195501\n\t\t 0.633735 0.96574998 0.633735 0.96574998 0.63168401 0.90934199 0.74974 0.908687 0.633735\n\t\t 0.96574998 0.75171101 0.96195501 0.70858699 0.99514198 0.70858699 0.99514198 0.63482898\n\t\t 0.99666202 0.633735 0.96574998 0.63168401 0.90934199 0.633735 0.96574998 0.63031203\n\t\t 0.96567398 0.63031203 0.96567398 0.62837499 0.90926898 0.63168401 0.90934199 0.63133502\n\t\t 0.99652702 0.63031203 0.96567398 0.633735 0.96574998 0.633735 0.96574998 0.63482898\n\t\t 0.99666202 0.63133502 0.99652702 0.984604 0.00685 0.99834901 0.00685 0.99834901 0.11273\n\t\t 0.99834901 0.11273 0.984604 0.11273 0.984604 0.00685 0.984604 0.11273 0.99834901\n\t\t 0.11273 0.99834901 0.16670901 0.99834901 0.16670901 0.984604 0.16670901 0.984604\n\t\t 0.11273 0.70010298 0.116378 0.70895702 0.117305 0.70915198 0.119796 0.70915198 0.119796\n\t\t 0.700306 0.118869 0.70010298 0.116378 0.70010298 0.116378 0.700306 0.118869 0.69709802\n\t\t 0.118536 0.69709802 0.118536 0.696926 0.116043 0.70010298 0.116378 0.70915198 0.119796\n\t\t 0.70895702 0.117305 0.71202201 0.117639 0.71202201 0.117639 0.71217 0.120134 0.70915198\n\t\t 0.119796 0.58830601 0.120059 0.58820099 0.117562 0.693753 0.115973 0.693753 0.115973\n\t\t 0.69388199 0.118469 0.58830601 0.120059 0.69388199 0.118469 0.693753 0.115973 0.696926\n\t\t 0.116043 0.696926 0.116043 0.69709802 0.118536 0.69388199 0.118469 0.81957197 0.114892\n\t\t 0.819628 0.11739 0.71515697 0.120165 0.71515697 0.120165 0.71507001 0.117668 0.81957197\n\t\t 0.114892 0.71507001 0.117668 0.71515697 0.120165 0.71217 0.120134 0.71217 0.120134\n\t\t 0.71202201 0.117639 0.71507001 0.117668 0.97997999 0.170661 0.984604 0.169891 0.984604\n\t\t 0.17867599 0.984604 0.17867599 0.97997999 0.177027 0.97997999 0.170661 0.82898998\n\t\t 0.15759499 0.83883202 0.129869 0.84057802 0.131308 0.84057802 0.131308 0.83235401\n\t\t 0.15879001 0.82898998 0.15759499 0.62313801 0.90476799 0.62519503 0.908678 0.61003703\n\t\t 0.90618402 0.61003703 0.90618402 0.61330497 0.90316802 0.62313801 0.90476799 0.82326502\n\t\t 0.18546499 0.83484101 0.15604401 0.83666402 0.15681601 0.83666402 0.15681601 0.82683498\n\t\t 0.18546499 0.82326502 0.18546499 0.850573 0.13402 0.85215998 0.133764 0.85278201\n\t\t 0.134821 0.85278201 0.134821 0.85117102 0.135068 0.850573 0.13402 0.85215998 0.133764\n\t\t 0.850573 0.13402 0.848773 0.133103 0.848773 0.133103 0.850384 0.132855 0.85215998\n\t\t 0.133764 0.850851 0.165355 0.85117102 0.135068 0.85278201 0.134821 0.85278201 0.134821\n\t\t 0.85385001 0.16642 0.850851 0.165355 0.84141099 0.130768 0.83969003 0.129338 0.84154302\n\t\t 0.12971701 0.84154302 0.12971701 0.84328902 0.131156 0.84141099 0.130768 0.84729999\n\t\t 0.156028 0.84901398 0.155256 0.84964401 0.15604401 0.84964401 0.15604401 0.84790498\n\t\t 0.15681601 0.84729999 0.156028 0.84901398 0.155256 0.84729999 0.156028 0.84539998\n\t\t 0.155766 0.84539998 0.155766 0.84714001 0.154994 0.84901398 0.155256 0.84646201 0.18546499\n\t\t 0.84790498 0.15681601 0.84964401 0.15604401 0.84964401 0.15604401 0.84964401 0.18546499\n\t\t 0.84646201 0.18546499 0.837578 0.156028 0.83578098 0.155256 0.837758 0.154994 0.837758\n\t\t 0.154994 0.83958203 0.155766 0.837578 0.156028 0.60522699 0.961959 0.60397798 0.90552002\n\t\t 0.60702801 0.90579599 0.60702801 0.90579599 0.60846299 0.96218002 0.60522699 0.961959\n\t\t 0.60593802 0.99287897 0.60522699 0.961959 0.60846299 0.96218002 0.60846299 0.96218002\n\t\t 0.60925299 0.99303502 0.60593802 0.99287897 0.60397798 0.90552002 0.60522699 0.961959\n\t\t 0.48866799 0.961335 0.48866799 0.961335 0.48754799 0.908041 0.60397798 0.90552002\n\t\t 0.53310698 0.993343 0.48866799 0.961335 0.60522699 0.961959 0.60522699 0.961959 0.60593802\n\t\t 0.99287897;\n\tsetAttr \".uvst[0].uvsp[11000:11249]\" 0.53310698 0.993343 0.97934997 0.101358 0.984604\n\t\t 0.11273 0.984604 0.16670901 0.984604 0.16670901 0.97937298 0.15511601 0.97934997\n\t\t 0.101358 0.63328099 0.90513402 0.63168401 0.90934199 0.62837499 0.90926898 0.62837499\n\t\t 0.90926898 0.629408 0.90519202 0.63328099 0.90513402 0.75729501 0.232142 0.753851\n\t\t 0.23208 0.75384998 0.217813 0.75384998 0.217813 0.75729799 0.218486 0.75729501 0.232142\n\t\t 0.753851 0.23208 0.75729501 0.232142 0.75749999 0.233072 0.75749999 0.233072 0.75446999\n\t\t 0.23503201 0.753851 0.23208 0.75446999 0.23503201 0.75749999 0.233072 0.75824898\n\t\t 0.23364 0.75824898 0.23364 0.75690502 0.236882 0.75446999 0.23503201 0.75690502 0.236882\n\t\t 0.75824898 0.23364 0.85685402 0.277381 0.85685402 0.277381 0.85511202 0.28345501\n\t\t 0.75690502 0.236882 0.75729799 0.218486 0.75384998 0.217813 0.75480902 0.214947 0.75480902\n\t\t 0.214947 0.75753403 0.217767 0.75729799 0.218486 0.75753403 0.217767 0.75480902 0.214947\n\t\t 0.75768101 0.213981 0.75768101 0.213981 0.758241 0.21754199 0.75753403 0.217767 0.758241\n\t\t 0.21754199 0.75768101 0.213981 0.86500299 0.213981 0.86500299 0.213981 0.86500299\n\t\t 0.220301 0.758241 0.21754199 0.69633102 0.149021 0.70966202 0.148422 0.70989001 0.15637\n\t\t 0.70989001 0.15637 0.69651198 0.15420599 0.69633102 0.149021 0.71065801 0.15649299\n\t\t 0.70989001 0.15637 0.70966202 0.148422 0.70966202 0.148422 0.71045703 0.14840201\n\t\t 0.71065801 0.15649299 0.69556898 0.14910699 0.69633102 0.149021 0.69651198 0.15420599\n\t\t 0.69651198 0.15420599 0.69578397 0.154098 0.69556898 0.14910699 0.71045703 0.14840201\n\t\t 0.71125501 0.148404 0.71142501 0.156541 0.71142501 0.156541 0.71065801 0.15649299\n\t\t 0.71045703 0.14840201 0.81919903 0.157323 0.71142501 0.156541 0.71125501 0.148404\n\t\t 0.71125501 0.148404 0.81904501 0.149186 0.81919903 0.157323 0.69481099 0.149165 0.69556898\n\t\t 0.14910699 0.69578397 0.154098 0.69578397 0.154098 0.69506299 0.154089 0.69481099\n\t\t 0.149165 0.58820099 0.155571 0.69481099 0.149165 0.69506299 0.154089 0.69506299 0.154089\n\t\t 0.58847302 0.160494 0.58820099 0.155571 0.39858499 0.97083199 0.51025897 0.983208\n\t\t 0.51100397 0.98353797 0.39858499 0.97083199 0.51100397 0.98353797 0.51066703 0.99915701\n\t\t 0.51100397 0.98353797 0.51162499 0.99817097 0.51066703 0.99915701 0.51100397 0.98353797\n\t\t 0.51126897 0.98430598 0.51162499 0.99817097 0.51162499 0.99817097 0.51139802 0.998909\n\t\t 0.51066703 0.99915701 0.39858499 0.97083199 0.51066703 0.99915701 0.39934501 0.99924302\n\t\t 0.232237 0.52772897 0.27256 0.52632302 0.273031 0.494095 0.230663 0.49469599 0.193591\n\t\t 0.531129 0.19013301 0.497004 0.15879101 0.53578401 0.153616 0.50055802 0.13013799\n\t\t 0.54079002 0.123436 0.50466901 0.087196998 0.51142198 0.096279003 0.54856402 0.102394\n\t\t 0.56353998 0.088756002 0.56897002 0.12279 0.61155498 0.118394 0.61516899 0.152053\n\t\t 0.63635302 0.15574799 0.63225502 0.19531199 0.648489 0.171746 0.64543903 0.083015002\n\t\t 0.57183599 0.081703998 0.553285 0.075557001 0.55575001 0.071111999 0.51533699 0.064199001\n\t\t 0.51736999 0.163679 0.62401402 0.197501 0.64436799 0.199958 0.63921601 0.217894 0.64926398\n\t\t 0.219115 0.64372897 0.205577 0.629071 0.218181 0.62991703 0.18391199 0.61488003 0.202126\n\t\t 0.61154902 0.16002201 0.59466499 0.18296701 0.58974802 0.134877 0.55528098 0.16255\n\t\t 0.55005997 0.196173 0.54512501 0.21081901 0.58532703 0.233486 0.54143399 0.241639\n\t\t 0.58205903 0.27355599 0.580643 0.27234399 0.53982103 0.22458699 0.60906702 0.23624299\n\t\t 0.63056499 0.256679 0.630817 0.24966601 0.607355 0.27830499 0.63077301 0.27583799\n\t\t 0.60664701 0.301606 0.60718 0.29993701 0.63060302 0.32588801 0.60857701 0.32021001\n\t\t 0.62999099 0.349648 0.62743801 0.365531 0.61310899 0.38345701 0.59221101 0.33438\n\t\t 0.58447701 0.30482101 0.58172202 0.31087899 0.540941 0.347776 0.54390502 0.40987\n\t\t 0.55200201 0.31270099 0.52741301 0.35122901 0.53023702 0.41606799 0.53786498 0.35605401\n\t\t 0.49796 0.42389601 0.50438303 0.45411 0.54374301 0.46219501 0.50860798 0.485836 0.511558\n\t\t 0.479435 0.54858297 0.133357 0.60415101 0.44675699 0.55829602 0.474525 0.56073499\n\t\t 0.41232699 0.59934598 0.43165401 0.60671401 0.387999 0.61984497 0.403283 0.62789899\n\t\t 0.37024599 0.64702803 0.35878 0.63605398 0.32028499 0.63837302 0.30011001 0.63986701\n\t\t 0.27988499 0.64810503 0.259215 0.64798498 0.23878001 0.64664 0.27382299 0.099601999\n\t\t 0.24055199 0.100504 0.240008 0.114346 0.273256 0.114249 0.29618999 0.099224001 0.29547399\n\t\t 0.114131 0.27217501 0.152784 0.29468501 0.15317699 0.23818301 0.15050299 0.21642099\n\t\t 0.114144 0.214203 0.148011 0.188309 0.145151 0.19082101 0.113436 0.334236 0.152376\n\t\t 0.33537 0.114104 0.355057 0.114048 0.35418499 0.151464 0.38684201 0.113805 0.38705501\n\t\t 0.149599 0.33705699 0.099372 0.35699499 0.099579997 0.38874099 0.100049 0.191577\n\t\t 0.101208 0.217067 0.101154 0.62545598 0.88002902 0.69283998 0.85166001 0.67393702\n\t\t 0.82428497 0.61096197 0.84985 0.599271 0.83183199 0.65909898 0.80751699 0.62947297\n\t\t 0.77921498 0.57464898 0.802387 0.55798602 0.84607297 0.567985 0.864779 0.510019 0.859505\n\t\t 0.51819801 0.87881398 0.52490002 0.90011197 0.57985902 0.89640701 0.53664201 0.81587398\n\t\t 0.47872999 0.88834298 0.47179601 0.86844999 0.45835799 0.83736497 0.49295399 0.82889801\n\t\t 0.56204498 0.78862798 0.614582 0.76625597 0.54268903 0.76687902 0.59072798 0.74632901\n\t\t 0.52573001 0.80144 0.50907999 0.77799898 0.47156399 0.78741199;\n\tsetAttr \".uvst[0].uvsp[11250:11499]\" 0.48442599 0.813577 0.45195499 0.82108498\n\t\t 0.62420201 0.76142401 0.63964701 0.77440703 0.59896803 0.74101502 0.67027998 0.80272901\n\t\t 0.68573898 0.81940001 0.70552498 0.84636301 0.70397002 0.87239099 0.65551299 0.89364702\n\t\t 0.71510601 0.89542902 0.62988698 0.89107198 0.60355997 0.88852698 0.57985902 0.89640701\n\t\t 0.60355997 0.88852698 0.62545598 0.88002902 0.717125 0.866763 0.72858697 0.889525\n\t\t 0.615619 0.59079099 0.61719602 0.602795 0.63662899 0.58448702 0.57629102 0.59869897\n\t\t 0.575638 0.62355602 0.51999903 0.59748602 0.51263899 0.635571 0.575638 0.62355602\n\t\t 0.51263899 0.635571 0.53970402 0.63738102 0.502666 0.59499502 0.49415401 0.63292599\n\t\t 0.45394799 0.62358302 0.46393201 0.586182 0.46393201 0.586182 0.502666 0.59499502\n\t\t 0.50347 0.59198397 0.46483099 0.58315098 0.46393201 0.586182 0.51999903 0.59748602\n\t\t 0.57629102 0.59869897 0.57655102 0.59589303 0.52078998 0.594598 0.51999903 0.59748602\n\t\t 0.502666 0.59499502 0.51999903 0.59748602 0.502666 0.59499502 0.57629102 0.59869897\n\t\t 0.615619 0.59079099 0.61540502 0.58813101 0.57629102 0.59869897 0.63612598 0.58191502\n\t\t 0.615619 0.59079099 0.615619 0.59079099 0.63662899 0.58448702 0.277971 0.408438 0.29579601\n\t\t 0.398965 0.295329 0.39680299 0.27732101 0.40630001 0.33041 0.38633701 0.33034599\n\t\t 0.38426599 0.381616 0.386691 0.38225001 0.384882 0.39715201 0.39090401 0.39798099\n\t\t 0.389195 0.42875001 0.40931299 0.42988399 0.407859 0.80761302 0.068322003 0.80680901\n\t\t 0.069388002 0.84376198 0.112964 0.84488702 0.111781 0.85980201 0.14091399 0.86104101\n\t\t 0.13940801 0.87148899 0.173526 0.872787 0.17219 0.80636001 0.067773998 0.79536301\n\t\t 0.064816996 0.79578501 0.065733001 0.76749998 0.063960001 0.76183498 0.063723996\n\t\t 0.76749998 0.063960001 0.76329303 0.064205997 0.76749998 0.063960001 0.76183498 0.063723996\n\t\t 0.76183498 0.063723996 0.76185697 0.063950002 0.76180899 0.063440003 0.47156399 0.78741199\n\t\t 0.50907999 0.77799898 0.50763398 0.77558601 0.47064099 0.78492802 0.47156399 0.78741199\n\t\t 0.50907999 0.77799898 0.54268903 0.76687902 0.54268903 0.76687902 0.54102898 0.764431\n\t\t 0.54268903 0.76687902 0.59896803 0.74101502 0.54268903 0.76687902 0.59072798 0.74632901\n\t\t 0.59896803 0.74101502 0.59896803 0.74101502 0.598795 0.74006701 0.38896 0.10012 0.38684201\n\t\t 0.113805 0.388926 0.112631 0.38983199 0.100235 0.38945699 0.149407 0.38684201 0.113805\n\t\t 0.38684201 0.113805 0.38705501 0.149599 0.151648 0.63753301 0.17129 0.64660197 0.171746\n\t\t 0.64543903 0.171746 0.64543903 0.152053 0.63635302 0.152053 0.63635302 0.118394 0.61516899\n\t\t 0.118394 0.61516899 0.117801 0.61630303 0.081876002 0.57269001 0.118394 0.61516899\n\t\t 0.118394 0.61516899 0.083015002 0.57183599 0.074284002 0.55642998 0.083015002 0.57183599\n\t\t 0.083015002 0.57183599 0.075557001 0.55575001 0.075557001 0.55575001 0.064199001\n\t\t 0.51736999 0.064199001 0.51736999 0.062785998 0.51780403 0.479435 0.54858297 0.48109701\n\t\t 0.54923803 0.48669401 0.51797098 0.485836 0.511558 0.479435 0.54858297 0.486781 0.51174599\n\t\t 0.485836 0.511558 0.487019 0.51179099 0.486781 0.51174599 0.48669401 0.51797098 0.48669401\n\t\t 0.51797098 0.48720899 0.51338297 0.47544801 0.56130701 0.479435 0.54858297 0.479435\n\t\t 0.54858297 0.474525 0.56073499 0.43260899 0.60805601 0.474525 0.56073499 0.474525\n\t\t 0.56073499 0.43165401 0.60671401 0.40401101 0.62913698 0.43165401 0.60671401 0.43165401\n\t\t 0.60671401 0.403283 0.62789899 0.371099 0.648341 0.403283 0.62789899 0.403283 0.62789899\n\t\t 0.37024599 0.64702803 0.86689401 0.127748 0.86466402 0.12786201 0.87785202 0.155305\n\t\t 0.87998801 0.154971 0.88460302 0.175698 0.88666099 0.175385 0.89051098 0.198347 0.89253598\n\t\t 0.198055 0.85416198 0.110226 0.85638797 0.110377 0.83686101 0.078474998 0.83460498\n\t\t 0.078140996 0.82670999 0.063135996 0.824476 0.062999003 0.81073701 0.038096 0.81073701\n\t\t 0.038096 0.80949199 0.038665 0.824476 0.062999003 0.27382299 0.099601999 0.27403501\n\t\t 0.098587997 0.240594 0.099399999 0.24055199 0.100504 0.27382299 0.099601999 0.217067\n\t\t 0.101154 0.24055199 0.100504 0.21708199 0.100034 0.217067 0.101154 0.29644001 0.098220997\n\t\t 0.27382299 0.099601999 0.27382299 0.099601999 0.29618999 0.099224001 0.33730301 0.098396003\n\t\t 0.29618999 0.099224001 0.29618999 0.099224001 0.33705699 0.099372 0.33705699 0.099372\n\t\t 0.35699499 0.099579997 0.35699499 0.099579997 0.35724899 0.098610997 0.35699499 0.099579997\n\t\t 0.38874099 0.100049 0.38874099 0.100049 0.38938901 0.099460997 0.217067 0.101154\n\t\t 0.19161101 0.100081 0.191577 0.101208 0.217067 0.101154 0.63964701 0.77440703 0.64026099\n\t\t 0.772273 0.62479299 0.75922799 0.62420201 0.76142401 0.63964701 0.77440703 0.59896803\n\t\t 0.74101502 0.62420201 0.76142401 0.62479299 0.75922799 0.59956598 0.74039298 0.59896803\n\t\t 0.74101502 0.63964701 0.77440703 0.67027998 0.80272901 0.67027998 0.80272901 0.67123902\n\t\t 0.80073798 0.68704301 0.81757802 0.67027998 0.80272901 0.67027998 0.80272901 0.68573898\n\t\t 0.81940001 0.70746398 0.84516299 0.68573898 0.81940001 0.68573898 0.81940001 0.70552498\n\t\t 0.84636301 0.70552498 0.84636301 0.717125 0.866763 0.717125 0.866763 0.71923202 0.865848\n\t\t 0.73073697 0.88869798 0.717125 0.866763 0.717125 0.866763 0.72858697 0.889525 0.31539199\n\t\t 0.49534801 0.27256 0.52632302 0.232237 0.52772897 0.232237 0.52772897 0.232237 0.52772897\n\t\t 0.193591 0.531129 0.193591 0.531129 0.193591 0.531129 0.15879101 0.53578401 0.15879101\n\t\t 0.53578401 0.15879101 0.53578401 0.13013799 0.54079002 0.13013799 0.54079002 0.13013799\n\t\t 0.54079002 0.13013799 0.54079002;\n\tsetAttr \".uvst[0].uvsp[11500:11749]\" 0.096279003 0.54856402 0.102394 0.56353998\n\t\t 0.096279003 0.54856402 0.13013799 0.54079002 0.096279003 0.54856402 0.102394 0.56353998\n\t\t 0.088756002 0.56897002 0.12279 0.61155498 0.088756002 0.56897002 0.102394 0.56353998\n\t\t 0.088756002 0.56897002 0.12279 0.61155498 0.118394 0.61516899 0.152053 0.63635302\n\t\t 0.118394 0.61516899 0.12279 0.61155498 0.12279 0.61155498 0.15574799 0.63225502 0.152053\n\t\t 0.63635302 0.171746 0.64543903 0.152053 0.63635302 0.15574799 0.63225502 0.15574799\n\t\t 0.63225502 0.19531199 0.648489 0.171746 0.64543903 0.118394 0.61516899 0.083015002\n\t\t 0.57183599 0.088756002 0.56897002 0.081703998 0.553285 0.088756002 0.56897002 0.083015002\n\t\t 0.57183599 0.088756002 0.56897002 0.081703998 0.553285 0.096279003 0.54856402 0.096279003\n\t\t 0.54856402 0.081703998 0.553285 0.083015002 0.57183599 0.075557001 0.55575001 0.081703998\n\t\t 0.553285 0.081703998 0.553285 0.075557001 0.55575001 0.081703998 0.553285 0.075557001\n\t\t 0.55575001 0.19531199 0.648489 0.15574799 0.63225502 0.163679 0.62401402 0.197501\n\t\t 0.64436799 0.19531199 0.648489 0.163679 0.62401402 0.199958 0.63921601 0.197501 0.64436799\n\t\t 0.163679 0.62401402 0.217894 0.64926398 0.197501 0.64436799 0.199958 0.63921601 0.199958\n\t\t 0.63921601 0.219115 0.64372897 0.217894 0.64926398 0.219115 0.64372897 0.199958 0.63921601\n\t\t 0.205577 0.629071 0.205577 0.629071 0.199958 0.63921601 0.163679 0.62401402 0.205577\n\t\t 0.629071 0.218181 0.62991703 0.219115 0.64372897 0.218181 0.62991703 0.205577 0.629071\n\t\t 0.18391199 0.61488003 0.163679 0.62401402 0.18391199 0.61488003 0.205577 0.629071\n\t\t 0.18391199 0.61488003 0.202126 0.61154902 0.218181 0.62991703 0.202126 0.61154902\n\t\t 0.18391199 0.61488003 0.16002201 0.59466499 0.16002201 0.59466499 0.18391199 0.61488003\n\t\t 0.163679 0.62401402 0.16002201 0.59466499 0.18296701 0.58974802 0.202126 0.61154902\n\t\t 0.18296701 0.58974802 0.16002201 0.59466499 0.134877 0.55528098 0.134877 0.55528098\n\t\t 0.16255 0.55005997 0.18296701 0.58974802 0.18296701 0.58974802 0.16255 0.55005997\n\t\t 0.196173 0.54512501 0.196173 0.54512501 0.21081901 0.58532703 0.18296701 0.58974802\n\t\t 0.202126 0.61154902 0.18296701 0.58974802 0.21081901 0.58532703 0.21081901 0.58532703\n\t\t 0.196173 0.54512501 0.233486 0.54143399 0.233486 0.54143399 0.241639 0.58205903 0.21081901\n\t\t 0.58532703 0.27355599 0.580643 0.241639 0.58205903 0.233486 0.54143399 0.233486 0.54143399\n\t\t 0.27234399 0.53982103 0.27355599 0.580643 0.21081901 0.58532703 0.22458699 0.60906702\n\t\t 0.202126 0.61154902 0.218181 0.62991703 0.202126 0.61154902 0.22458699 0.60906702\n\t\t 0.22458699 0.60906702 0.23624299 0.63056499 0.218181 0.62991703 0.256679 0.630817\n\t\t 0.23624299 0.63056499 0.22458699 0.60906702 0.22458699 0.60906702 0.24966601 0.607355\n\t\t 0.256679 0.630817 0.24966601 0.607355 0.22458699 0.60906702 0.21081901 0.58532703\n\t\t 0.21081901 0.58532703 0.241639 0.58205903 0.24966601 0.607355 0.27830499 0.63077301\n\t\t 0.256679 0.630817 0.24966601 0.607355 0.24966601 0.607355 0.27583799 0.60664701 0.27830499\n\t\t 0.63077301 0.241639 0.58205903 0.27355599 0.580643 0.27583799 0.60664701 0.27583799\n\t\t 0.60664701 0.24966601 0.607355 0.241639 0.58205903 0.27830499 0.63077301 0.27583799\n\t\t 0.60664701 0.301606 0.60718 0.301606 0.60718 0.27583799 0.60664701 0.27355599 0.580643\n\t\t 0.301606 0.60718 0.29993701 0.63060302 0.27830499 0.63077301 0.29993701 0.63060302\n\t\t 0.301606 0.60718 0.32588801 0.60857701 0.32588801 0.60857701 0.32021001 0.62999099\n\t\t 0.29993701 0.63060302 0.349648 0.62743801 0.32021001 0.62999099 0.32588801 0.60857701\n\t\t 0.32588801 0.60857701 0.365531 0.61310899 0.349648 0.62743801 0.38345701 0.59221101\n\t\t 0.365531 0.61310899 0.32588801 0.60857701 0.32588801 0.60857701 0.33438 0.58447701\n\t\t 0.38345701 0.59221101 0.33438 0.58447701 0.32588801 0.60857701 0.301606 0.60718 0.301606\n\t\t 0.60718 0.30482101 0.58172202 0.33438 0.58447701 0.27355599 0.580643 0.30482101 0.58172202\n\t\t 0.301606 0.60718 0.31087899 0.540941 0.30482101 0.58172202 0.27355599 0.580643 0.27355599\n\t\t 0.580643 0.27234399 0.53982103 0.31087899 0.540941 0.30482101 0.58172202 0.31087899\n\t\t 0.540941 0.347776 0.54390502 0.347776 0.54390502 0.33438 0.58447701 0.30482101 0.58172202\n\t\t 0.33438 0.58447701 0.347776 0.54390502 0.40987 0.55200201 0.40987 0.55200201 0.38345701\n\t\t 0.59221101 0.33438 0.58447701 0.31270099 0.52741301 0.31087899 0.540941 0.27234399\n\t\t 0.53982103 0.27234399 0.53982103 0.27256 0.52632302 0.31270099 0.52741301 0.31087899\n\t\t 0.540941 0.31270099 0.52741301 0.35122901 0.53023702 0.35122901 0.53023702 0.347776\n\t\t 0.54390502 0.31087899 0.540941 0.347776 0.54390502 0.35122901 0.53023702 0.41606799\n\t\t 0.53786498 0.41606799 0.53786498 0.40987 0.55200201 0.347776 0.54390502 0.41606799\n\t\t 0.53786498 0.35122901 0.53023702 0.35122901 0.53023702 0.31270099 0.52741301 0.41606799\n\t\t 0.53786498 0.45411 0.54374301 0.41606799 0.53786498 0.40987 0.55200201 0.41606799\n\t\t 0.53786498 0.45411 0.54374301 0.45411 0.54374301 0.45411 0.54374301 0.479435 0.54858297\n\t\t 0.45411 0.54374301 0.232237 0.52772897 0.27256 0.52632302 0.27234399 0.53982103 0.27234399\n\t\t 0.53982103 0.233486 0.54143399 0.232237 0.52772897 0.193591 0.531129 0.232237 0.52772897\n\t\t 0.233486 0.54143399 0.233486 0.54143399 0.196173 0.54512501 0.193591 0.531129 0.193591\n\t\t 0.531129 0.196173 0.54512501 0.16255 0.55005997 0.16255 0.55005997 0.15879101 0.53578401\n\t\t 0.193591 0.531129 0.13013799 0.54079002;\n\tsetAttr \".uvst[0].uvsp[11750:11999]\" 0.15879101 0.53578401 0.16255 0.55005997 0.16255\n\t\t 0.55005997 0.134877 0.55528098 0.13013799 0.54079002 0.13013799 0.54079002 0.134877\n\t\t 0.55528098 0.102394 0.56353998 0.102394 0.56353998 0.134877 0.55528098 0.16002201\n\t\t 0.59466499 0.16002201 0.59466499 0.133357 0.60415101 0.102394 0.56353998 0.163679\n\t\t 0.62401402 0.133357 0.60415101 0.16002201 0.59466499 0.133357 0.60415101 0.163679\n\t\t 0.62401402 0.15574799 0.63225502 0.15574799 0.63225502 0.12279 0.61155498 0.133357\n\t\t 0.60415101 0.102394 0.56353998 0.133357 0.60415101 0.12279 0.61155498 0.44675699\n\t\t 0.55829602 0.45411 0.54374301 0.479435 0.54858297 0.45411 0.54374301 0.44675699 0.55829602\n\t\t 0.40987 0.55200201 0.40987 0.55200201 0.44675699 0.55829602 0.41232699 0.59934598\n\t\t 0.41232699 0.59934598 0.44675699 0.55829602 0.474525 0.56073499 0.474525 0.56073499\n\t\t 0.43165401 0.60671401 0.41232699 0.59934598 0.387999 0.61984497 0.41232699 0.59934598\n\t\t 0.43165401 0.60671401 0.43165401 0.60671401 0.403283 0.62789899 0.387999 0.61984497\n\t\t 0.35878 0.63605398 0.387999 0.61984497 0.403283 0.62789899 0.403283 0.62789899 0.37024599\n\t\t 0.64702803 0.35878 0.63605398 0.41232699 0.59934598 0.38345701 0.59221101 0.40987\n\t\t 0.55200201 0.41232699 0.59934598 0.387999 0.61984497 0.365531 0.61310899 0.365531\n\t\t 0.61310899 0.38345701 0.59221101 0.41232699 0.59934598 0.349648 0.62743801 0.365531\n\t\t 0.61310899 0.387999 0.61984497 0.387999 0.61984497 0.35878 0.63605398 0.349648 0.62743801\n\t\t 0.349648 0.62743801 0.35878 0.63605398 0.32028499 0.63837302 0.32028499 0.63837302\n\t\t 0.32021001 0.62999099 0.349648 0.62743801 0.29993701 0.63060302 0.32021001 0.62999099\n\t\t 0.32028499 0.63837302 0.32028499 0.63837302 0.30011001 0.63986701 0.29993701 0.63060302\n\t\t 0.27830499 0.63077301 0.29993701 0.63060302 0.30011001 0.63986701 0.30011001 0.63986701\n\t\t 0.27988499 0.64810503 0.27830499 0.63077301 0.256679 0.630817 0.27830499 0.63077301\n\t\t 0.27988499 0.64810503 0.27988499 0.64810503 0.259215 0.64798498 0.256679 0.630817\n\t\t 0.256679 0.630817 0.259215 0.64798498 0.23878001 0.64664 0.23878001 0.64664 0.23624299\n\t\t 0.63056499 0.256679 0.630817 0.218181 0.62991703 0.23624299 0.63056499 0.23878001\n\t\t 0.64664 0.23878001 0.64664 0.219115 0.64372897 0.218181 0.62991703 0.23878001 0.64664\n\t\t 0.217894 0.64926398 0.219115 0.64372897 0.240008 0.114346 0.24055199 0.100504 0.27382299\n\t\t 0.099601999 0.27382299 0.099601999 0.273256 0.114249 0.240008 0.114346 0.273256 0.114249\n\t\t 0.27382299 0.099601999 0.29618999 0.099224001 0.29618999 0.099224001 0.29547399 0.114131\n\t\t 0.273256 0.114249 0.273256 0.114249 0.29547399 0.114131 0.240008 0.114346 0.273256\n\t\t 0.114249 0.29547399 0.114131 0.240008 0.114346 0.21642099 0.114144 0.240008 0.114346\n\t\t 0.24055199 0.100504 0.240008 0.114346 0.21642099 0.114144 0.21642099 0.114144 0.19082101\n\t\t 0.113436 0.21642099 0.114144 0.19082101 0.113436 0.29547399 0.114131 0.29547399 0.114131\n\t\t 0.33537 0.114104 0.33537 0.114104 0.29547399 0.114131 0.29618999 0.099224001 0.33537\n\t\t 0.114104 0.355057 0.114048 0.355057 0.114048 0.355057 0.114048 0.38684201 0.113805\n\t\t 0.38684201 0.113805 0.355057 0.114048 0.33537 0.114104 0.33705699 0.099372 0.29618999\n\t\t 0.099224001 0.33705699 0.099372 0.33537 0.114104 0.33705699 0.099372 0.35699499 0.099579997\n\t\t 0.355057 0.114048 0.38874099 0.100049 0.38684201 0.113805 0.355057 0.114048 0.355057\n\t\t 0.114048 0.35699499 0.099579997 0.38874099 0.100049 0.21642099 0.114144 0.19082101\n\t\t 0.113436 0.191577 0.101208 0.191577 0.101208 0.217067 0.101154 0.21642099 0.114144\n\t\t 0.21642099 0.114144 0.217067 0.101154 0.24055199 0.100504 0.67393702 0.82428497 0.69283998\n\t\t 0.85166001 0.62545598 0.88002902 0.62545598 0.88002902 0.61096197 0.84985 0.67393702\n\t\t 0.82428497 0.67393702 0.82428497 0.61096197 0.84985 0.599271 0.83183199 0.599271\n\t\t 0.83183199 0.65909898 0.80751699 0.67393702 0.82428497 0.62947297 0.77921498 0.65909898\n\t\t 0.80751699 0.599271 0.83183199 0.599271 0.83183199 0.57464898 0.802387 0.62947297\n\t\t 0.77921498 0.55798602 0.84607297 0.599271 0.83183199 0.61096197 0.84985 0.61096197\n\t\t 0.84985 0.567985 0.864779 0.55798602 0.84607297 0.510019 0.859505 0.55798602 0.84607297\n\t\t 0.567985 0.864779 0.567985 0.864779 0.51819801 0.87881398 0.510019 0.859505 0.52490002\n\t\t 0.90011197 0.51819801 0.87881398 0.567985 0.864779 0.567985 0.864779 0.57985902 0.89640701\n\t\t 0.52490002 0.90011197 0.57985902 0.89640701 0.567985 0.864779 0.61096197 0.84985\n\t\t 0.62545598 0.88002902 0.57985902 0.89640701 0.61096197 0.84985 0.53664201 0.81587398\n\t\t 0.57464898 0.802387 0.599271 0.83183199 0.599271 0.83183199 0.55798602 0.84607297\n\t\t 0.53664201 0.81587398 0.53664201 0.81587398 0.55798602 0.84607297 0.510019 0.859505\n\t\t 0.51819801 0.87881398 0.52490002 0.90011197 0.47872999 0.88834298 0.510019 0.859505\n\t\t 0.51819801 0.87881398 0.47872999 0.88834298 0.47872999 0.88834298 0.47179601 0.86844999\n\t\t 0.510019 0.859505 0.510019 0.859505 0.47179601 0.86844999 0.45835799 0.83736497 0.45835799\n\t\t 0.83736497 0.49295399 0.82889801 0.510019 0.859505 0.510019 0.859505 0.49295399 0.82889801\n\t\t 0.53664201 0.81587398 0.62947297 0.77921498 0.57464898 0.802387 0.56204498 0.78862798\n\t\t 0.56204498 0.78862798 0.614582 0.76625597 0.62947297 0.77921498 0.614582 0.76625597\n\t\t 0.56204498 0.78862798 0.54268903 0.76687902 0.54268903 0.76687902 0.59072798 0.74632901;\n\tsetAttr \".uvst[0].uvsp[12000:12249]\" 0.614582 0.76625597 0.57464898 0.802387 0.53664201\n\t\t 0.81587398 0.52573001 0.80144 0.52573001 0.80144 0.56204498 0.78862798 0.57464898\n\t\t 0.802387 0.56204498 0.78862798 0.52573001 0.80144 0.50907999 0.77799898 0.50907999\n\t\t 0.77799898 0.54268903 0.76687902 0.56204498 0.78862798 0.47156399 0.78741199 0.50907999\n\t\t 0.77799898 0.52573001 0.80144 0.52573001 0.80144 0.48442599 0.813577 0.47156399 0.78741199\n\t\t 0.48442599 0.813577 0.52573001 0.80144 0.53664201 0.81587398 0.53664201 0.81587398\n\t\t 0.49295399 0.82889801 0.48442599 0.813577 0.49295399 0.82889801 0.45835799 0.83736497\n\t\t 0.45195499 0.82108498 0.45195499 0.82108498 0.48442599 0.813577 0.49295399 0.82889801\n\t\t 0.47156399 0.78741199 0.48442599 0.813577 0.45195499 0.82108498 0.62420201 0.76142401\n\t\t 0.614582 0.76625597 0.59072798 0.74632901 0.62947297 0.77921498 0.614582 0.76625597\n\t\t 0.62420201 0.76142401 0.62420201 0.76142401 0.63964701 0.77440703 0.62947297 0.77921498\n\t\t 0.59072798 0.74632901 0.59896803 0.74101502 0.62420201 0.76142401 0.62947297 0.77921498\n\t\t 0.63964701 0.77440703 0.67027998 0.80272901 0.67027998 0.80272901 0.65909898 0.80751699\n\t\t 0.62947297 0.77921498 0.65909898 0.80751699 0.67027998 0.80272901 0.68573898 0.81940001\n\t\t 0.68573898 0.81940001 0.67393702 0.82428497 0.65909898 0.80751699 0.69283998 0.85166001\n\t\t 0.67393702 0.82428497 0.68573898 0.81940001 0.68573898 0.81940001 0.70552498 0.84636301\n\t\t 0.69283998 0.85166001 0.70397002 0.87239099 0.69283998 0.85166001 0.70552498 0.84636301\n\t\t 0.70397002 0.87239099 0.65551299 0.89364702 0.69283998 0.85166001 0.65551299 0.89364702\n\t\t 0.70397002 0.87239099 0.71510601 0.89542902 0.65551299 0.89364702 0.62545598 0.88002902\n\t\t 0.69283998 0.85166001 0.65551299 0.89364702 0.62988698 0.89107198 0.62545598 0.88002902\n\t\t 0.62988698 0.89107198 0.60355997 0.88852698 0.62545598 0.88002902 0.62545598 0.88002902\n\t\t 0.60355997 0.88852698 0.57985902 0.89640701 0.70552498 0.84636301 0.717125 0.866763\n\t\t 0.70397002 0.87239099 0.71510601 0.89542902 0.70397002 0.87239099 0.717125 0.866763\n\t\t 0.717125 0.866763 0.72858697 0.889525 0.71510601 0.89542902 0.615619 0.59079099 0.63662899\n\t\t 0.58448702 0.61719602 0.602795 0.615619 0.59079099 0.61719602 0.602795 0.575638 0.62355602\n\t\t 0.575638 0.62355602 0.57629102 0.59869897 0.615619 0.59079099 0.575638 0.62355602\n\t\t 0.51999903 0.59748602 0.57629102 0.59869897 0.575638 0.62355602 0.53970402 0.63738102\n\t\t 0.51999903 0.59748602 0.53970402 0.63738102 0.51263899 0.635571 0.51999903 0.59748602\n\t\t 0.502666 0.59499502 0.51999903 0.59748602 0.51263899 0.635571 0.51263899 0.635571\n\t\t 0.49415401 0.63292599 0.502666 0.59499502 0.502666 0.59499502 0.49415401 0.63292599\n\t\t 0.502666 0.59499502 0.50347 0.59198397 0.502666 0.59499502 0.46393201 0.586182 0.46393201\n\t\t 0.586182 0.50347 0.59198397 0.57655102 0.59589303 0.57629102 0.59869897 0.51999903\n\t\t 0.59748602 0.51999903 0.59748602 0.52078998 0.594598 0.57655102 0.59589303 0.52078998\n\t\t 0.594598 0.51999903 0.59748602 0.502666 0.59499502 0.502666 0.59499502 0.50347 0.59198397\n\t\t 0.52078998 0.594598 0.61540502 0.58813101 0.615619 0.59079099 0.57629102 0.59869897\n\t\t 0.57629102 0.59869897 0.57655102 0.59589303 0.61540502 0.58813101 0.63612598 0.58191502\n\t\t 0.63662899 0.58448702 0.615619 0.59079099 0.615619 0.59079099 0.61540502 0.58813101\n\t\t 0.63612598 0.58191502 0.277971 0.408438 0.27732101 0.40630001 0.295329 0.39680299\n\t\t 0.295329 0.39680299 0.29579601 0.398965 0.277971 0.408438 0.33041 0.38633701 0.29579601\n\t\t 0.398965 0.295329 0.39680299 0.295329 0.39680299 0.33034599 0.38426599 0.33041 0.38633701\n\t\t 0.381616 0.386691 0.33041 0.38633701 0.33034599 0.38426599 0.33034599 0.38426599\n\t\t 0.38225001 0.384882 0.381616 0.386691 0.39715201 0.39090401 0.381616 0.386691 0.38225001\n\t\t 0.384882 0.38225001 0.384882 0.39798099 0.389195 0.39715201 0.39090401 0.39715201\n\t\t 0.39090401 0.39798099 0.389195 0.39798099 0.389195 0.80761302 0.068322003 0.84488702\n\t\t 0.111781 0.84376198 0.112964 0.84376198 0.112964 0.80680901 0.069388002 0.80761302\n\t\t 0.068322003 0.85980201 0.14091399 0.84376198 0.112964 0.84488702 0.111781 0.84488702\n\t\t 0.111781 0.86104101 0.13940801 0.85980201 0.14091399 0.87148899 0.173526 0.85980201\n\t\t 0.14091399 0.86104101 0.13940801 0.86104101 0.13940801 0.872787 0.17219 0.87148899\n\t\t 0.173526 0.80761302 0.068322003 0.80680901 0.069388002 0.80636001 0.067773998 0.79536301\n\t\t 0.064816996 0.80636001 0.067773998 0.80680901 0.069388002 0.80680901 0.069388002\n\t\t 0.79578501 0.065733001 0.79536301 0.064816996 0.79536301 0.064816996 0.79578501 0.065733001\n\t\t 0.76749998 0.063960001 0.79536301 0.064816996 0.76749998 0.063960001 0.76183498 0.063723996\n\t\t 0.76749998 0.063960001 0.76329303 0.064205997 0.76329303 0.064205997 0.76185697 0.063950002\n\t\t 0.76183498 0.063723996 0.79536301 0.064816996 0.47064099 0.78492802 0.50763398 0.77558601\n\t\t 0.50907999 0.77799898 0.50907999 0.77799898 0.47156399 0.78741199 0.47064099 0.78492802\n\t\t 0.54268903 0.76687902 0.50907999 0.77799898 0.50763398 0.77558601 0.50763398 0.77558601\n\t\t 0.54102898 0.764431 0.54268903 0.76687902 0.54102898 0.764431 0.59896803 0.74101502\n\t\t 0.54268903 0.76687902 0.54102898 0.764431 0.598795 0.74006701 0.59896803 0.74101502\n\t\t 0.59896803 0.74101502 0.59072798 0.74632901 0.54268903 0.76687902 0.38896 0.10012\n\t\t 0.38983199 0.100235 0.388926 0.112631 0.388926 0.112631 0.38684201 0.113805 0.38896\n\t\t 0.10012 0.38684201 0.113805 0.388926 0.112631 0.38705501 0.149599 0.38684201 0.113805\n\t\t 0.151648 0.63753301 0.152053 0.63635302 0.171746 0.64543903;\n\tsetAttr \".uvst[0].uvsp[12250:12499]\" 0.171746 0.64543903 0.17129 0.64660197 0.151648\n\t\t 0.63753301 0.118394 0.61516899 0.152053 0.63635302 0.151648 0.63753301 0.151648 0.63753301\n\t\t 0.117801 0.61630303 0.118394 0.61516899 0.118394 0.61516899 0.117801 0.61630303 0.081876002\n\t\t 0.57269001 0.081876002 0.57269001 0.083015002 0.57183599 0.118394 0.61516899 0.083015002\n\t\t 0.57183599 0.081876002 0.57269001 0.074284002 0.55642998 0.074284002 0.55642998 0.075557001\n\t\t 0.55575001 0.083015002 0.57183599 0.064199001 0.51736999 0.075557001 0.55575001 0.074284002\n\t\t 0.55642998 0.074284002 0.55642998 0.064199001 0.51736999 0.48669401 0.51797098 0.48109701\n\t\t 0.54923803 0.479435 0.54858297 0.48669401 0.51797098 0.479435 0.54858297 0.485836\n\t\t 0.511558 0.48669401 0.51797098 0.485836 0.511558 0.48669401 0.51797098 0.486781 0.51174599\n\t\t 0.487019 0.51179099 0.487019 0.51179099 0.48720899 0.51338297 0.48669401 0.51797098\n\t\t 0.479435 0.54858297 0.48109701 0.54923803 0.47544801 0.56130701 0.47544801 0.56130701\n\t\t 0.474525 0.56073499 0.479435 0.54858297 0.474525 0.56073499 0.47544801 0.56130701\n\t\t 0.43260899 0.60805601 0.43260899 0.60805601 0.43165401 0.60671401 0.474525 0.56073499\n\t\t 0.43165401 0.60671401 0.43260899 0.60805601 0.40401101 0.62913698 0.40401101 0.62913698\n\t\t 0.403283 0.62789899 0.43165401 0.60671401 0.37024599 0.64702803 0.403283 0.62789899\n\t\t 0.40401101 0.62913698 0.40401101 0.62913698 0.371099 0.648341 0.37024599 0.64702803\n\t\t 0.87785202 0.155305 0.86466402 0.12786201 0.86689401 0.127748 0.86689401 0.127748\n\t\t 0.87998801 0.154971 0.87785202 0.155305 0.88460302 0.175698 0.87785202 0.155305 0.87998801\n\t\t 0.154971 0.87998801 0.154971 0.88666099 0.175385 0.88460302 0.175698 0.89051098 0.198347\n\t\t 0.88460302 0.175698 0.88666099 0.175385 0.88666099 0.175385 0.89253598 0.198055 0.89051098\n\t\t 0.198347 0.86689401 0.127748 0.86466402 0.12786201 0.85416198 0.110226 0.85416198\n\t\t 0.110226 0.85638797 0.110377 0.86689401 0.127748 0.83686101 0.078474998 0.85638797\n\t\t 0.110377 0.85416198 0.110226 0.85416198 0.110226 0.83460498 0.078140996 0.83686101\n\t\t 0.078474998 0.82670999 0.063135996 0.83686101 0.078474998 0.83460498 0.078140996\n\t\t 0.83460498 0.078140996 0.824476 0.062999003 0.82670999 0.063135996 0.81073701 0.038096\n\t\t 0.82670999 0.063135996 0.824476 0.062999003 0.824476 0.062999003 0.80949199 0.038665\n\t\t 0.81073701 0.038096 0.240594 0.099399999 0.27403501 0.098587997 0.27382299 0.099601999\n\t\t 0.27382299 0.099601999 0.24055199 0.100504 0.240594 0.099399999 0.240594 0.099399999\n\t\t 0.24055199 0.100504 0.217067 0.101154 0.217067 0.101154 0.21708199 0.100034 0.240594\n\t\t 0.099399999 0.27382299 0.099601999 0.27403501 0.098587997 0.29644001 0.098220997\n\t\t 0.29644001 0.098220997 0.29618999 0.099224001 0.27382299 0.099601999 0.29618999 0.099224001\n\t\t 0.29644001 0.098220997 0.33730301 0.098396003 0.33730301 0.098396003 0.33705699 0.099372\n\t\t 0.29618999 0.099224001 0.35699499 0.099579997 0.33705699 0.099372 0.33730301 0.098396003\n\t\t 0.33730301 0.098396003 0.35724899 0.098610997 0.35699499 0.099579997 0.38874099 0.100049\n\t\t 0.35699499 0.099579997 0.35724899 0.098610997 0.35724899 0.098610997 0.38938901 0.099460997\n\t\t 0.38874099 0.100049 0.19161101 0.100081 0.21708199 0.100034 0.217067 0.101154 0.217067\n\t\t 0.101154 0.191577 0.101208 0.19161101 0.100081 0.62479299 0.75922799 0.64026099 0.772273\n\t\t 0.63964701 0.77440703 0.63964701 0.77440703 0.62420201 0.76142401 0.62479299 0.75922799\n\t\t 0.62479299 0.75922799 0.62420201 0.76142401 0.59896803 0.74101502 0.59896803 0.74101502\n\t\t 0.59956598 0.74039298 0.62479299 0.75922799 0.67027998 0.80272901 0.63964701 0.77440703\n\t\t 0.64026099 0.772273 0.64026099 0.772273 0.67123902 0.80073798 0.67027998 0.80272901\n\t\t 0.67027998 0.80272901 0.67123902 0.80073798 0.68704301 0.81757802 0.68704301 0.81757802\n\t\t 0.68573898 0.81940001 0.67027998 0.80272901 0.68573898 0.81940001 0.68704301 0.81757802\n\t\t 0.70746398 0.84516299 0.70746398 0.84516299 0.70552498 0.84636301 0.68573898 0.81940001\n\t\t 0.717125 0.866763 0.70552498 0.84636301 0.70746398 0.84516299 0.70746398 0.84516299\n\t\t 0.71923202 0.865848 0.717125 0.866763 0.717125 0.866763 0.71923202 0.865848 0.73073697\n\t\t 0.88869798 0.73073697 0.88869798 0.72858697 0.889525 0.717125 0.866763 0.31270099\n\t\t 0.52741301 0.27256 0.52632302 0.31270099 0.52741301 0.31270099 0.52741301 0.479435\n\t\t 0.54858297 0.474525 0.56073499 0.44675699 0.55829602 0.127242 0.41025501 0.146827\n\t\t 0.40550801 0.14958 0.38585201 0.129186 0.392858 0.117264 0.411203 0.116843 0.41702801\n\t\t 0.132953 0.371227 0.15121201 0.37438199 0.134939 0.36569801 0.150901 0.36980599 0.14868\n\t\t 0.36630201 0.13810401 0.363574 0.164776 0.405352 0.168715 0.38669601 0.180279 0.40770599\n\t\t 0.184846 0.389532 0.603194 0.732602 0.60921502 0.719971 0.59334803 0.72702903 0.60187602\n\t\t 0.73316997 0.54758102 0.74721301 0.54691303 0.75761598 0.54732901 0.75853699 0.60142702\n\t\t 0.73447198 0.61347097 0.71931702 0.60583502 0.73237902 0.62134802 0.72114998 0.61093801\n\t\t 0.73360801 0.617266 0.73897099 0.632231 0.72833699 0.62336701 0.74760401 0.64094698\n\t\t 0.73838502 0.627819 0.75655198 0.64598101 0.74803698 0.74374801 0.56016701 0.71946299\n\t\t 0.58645397 0.72836 0.59352601 0.75059801 0.56433499 0.70740998 0.57264 0.73457003\n\t\t 0.55104202 0.726861 0.54035598 0.698111 0.559219 0.73070699 0.59537703 0.75466198\n\t\t 0.56524903 0.69086999 0.54694903 0.721789 0.53085101 0.539177 0.039845999 0.54518998\n\t\t 0.034364998 0.53108102 0.026257999 0.52359599 0.032954 0.54915297 0.025914 0.55522197\n\t\t 0.028611001 0.49232599 0.28609499;\n\tsetAttr \".uvst[0].uvsp[12500:12749]\" 0.48236999 0.28668901 0.48303699 0.29896301\n\t\t 0.494405 0.29828301 0.50342399 0.286874 0.49801299 0.28634399 0.49889299 0.29874799\n\t\t 0.50479603 0.29928499 0.52511901 0.30091 0.52377802 0.28843901 0.49732399 0.28641799\n\t\t 0.493806 0.28609899 0.49477401 0.29842001 0.49889299 0.29874799 0.48171699 0.286746\n\t\t 0.47795099 0.287514 0.47866699 0.299889 0.48303699 0.29896301 0.47424901 0.301112\n\t\t 0.47866699 0.299889 0.47795099 0.287514 0.47795099 0.287514 0.47334501 0.28867099\n\t\t 0.462816 0.29153201 0.46501899 0.30360201 0.808855 0.102516 0.80528301 0.106378 0.81193399\n\t\t 0.110831 0.81614202 0.108934 0.78233498 0.103135 0.808855 0.102516 0.78125 0.098941997\n\t\t 0.78233498 0.103135 0.77977699 0.103817 0.78233498 0.103135 0.77867299 0.099546 0.74654698\n\t\t 0.107896 0.74939299 0.111669 0.54350501 0.290144 0.52345002 0.28848201 0.54494101\n\t\t 0.302598 0.39611799 0.126964 0.39610299 0.139364 0.41111299 0.13955601 0.411219 0.127184\n\t\t 0.42781001 0.14040001 0.428931 0.12819301 0.74052298 0.59581798 0.80952197 0.594082\n\t\t 0.82196701 0.56613898 0.77201998 0.565584 0.73874998 0.59828699 0.80960202 0.59758002\n\t\t 0.80996799 0.63336003 0.73727399 0.63246 0.73061699 0.59828401 0.73070699 0.59537703\n\t\t 0.73083001 0.63213199 0.78632599 0.080055997 0.79391301 0.078951001 0.79216897 0.075096004\n\t\t 0.78566098 0.075591996 0.79593903 0.074198999 0.79824799 0.076838002 0.776568 0.079893\n\t\t 0.77689803 0.075158998 0.79832101 0.074051 0.80021799 0.075441003 0.80115002 0.074515\n\t\t 0.76739401 0.078994997 0.76786298 0.074222997 0.75576699 0.33288601 0.76231498 0.33228499\n\t\t 0.762007 0.330459 0.75593901 0.33093601 0.76560998 0.32927701 0.76600897 0.33088601\n\t\t 0.74706399 0.33151099 0.74762303 0.329602 0.76767403 0.32821101 0.76811898 0.32962\n\t\t 0.73837399 0.32884499 0.73899502 0.326949 0.76976103 0.326873 0.76767403 0.32821101\n\t\t 0.76811898 0.32962 0.76811898 0.32962 0.77043599 0.32793701 0.45257801 0.069972999\n\t\t 0.45782 0.072366998 0.45952201 0.066450998 0.454274 0.064074002 0.451619 0.073668003\n\t\t 0.456839 0.076082997 0.462237 0.058424 0.456983 0.056061 0.45622101 0.078244999 0.45194101\n\t\t 0.075897001 0.455917 0.079187997 0.45329201 0.077982001 0.46042499 0.047710001 0.46568\n\t\t 0.050069999 0.86312902 0.32464299 0.86262101 0.27011001 0.85973299 0.27011001 0.860241\n\t\t 0.32464299 0.730555 0.21864501 0.737176 0.219191 0.73729199 0.208721 0.73092198 0.20718201\n\t\t 0.73092198 0.20718201 0.73729199 0.208721 0.73580998 0.207433 0.722242 0.20247 0.714109\n\t\t 0.20270699 0.716102 0.211145 0.72423601 0.210908 0.70254201 0.202124 0.70453203 0.21056201\n\t\t 0.127242 0.41025501 0.129186 0.392858 0.14958 0.38585201 0.14958 0.38585201 0.146827\n\t\t 0.40550801 0.127242 0.41025501 0.117264 0.411203 0.129186 0.392858 0.127242 0.41025501\n\t\t 0.127242 0.41025501 0.116843 0.41702801 0.117264 0.411203 0.14958 0.38585201 0.129186\n\t\t 0.392858 0.132953 0.371227 0.132953 0.371227 0.15121201 0.37438199 0.14958 0.38585201\n\t\t 0.15121201 0.37438199 0.132953 0.371227 0.134939 0.36569801 0.134939 0.36569801 0.150901\n\t\t 0.36980599 0.15121201 0.37438199 0.14868 0.36630201 0.150901 0.36980599 0.134939\n\t\t 0.36569801 0.134939 0.36569801 0.13810401 0.363574 0.14868 0.36630201 0.164776 0.405352\n\t\t 0.146827 0.40550801 0.14958 0.38585201 0.14958 0.38585201 0.168715 0.38669601 0.164776\n\t\t 0.405352 0.164776 0.405352 0.168715 0.38669601 0.168715 0.38669601 0.603194 0.732602\n\t\t 0.60187602 0.73316997 0.59334803 0.72702903 0.59334803 0.72702903 0.60921502 0.719971\n\t\t 0.603194 0.732602 0.54758102 0.74721301 0.59334803 0.72702903 0.60187602 0.73316997\n\t\t 0.60187602 0.73316997 0.54691303 0.75761598 0.54758102 0.74721301 0.54732901 0.75853699\n\t\t 0.54691303 0.75761598 0.60187602 0.73316997 0.60187602 0.73316997 0.60142702 0.73447198\n\t\t 0.54732901 0.75853699 0.603194 0.732602 0.60921502 0.719971 0.61347097 0.71931702\n\t\t 0.61347097 0.71931702 0.60583502 0.73237902 0.603194 0.732602 0.60583502 0.73237902\n\t\t 0.61347097 0.71931702 0.62134802 0.72114998 0.62134802 0.72114998 0.61093801 0.73360801\n\t\t 0.60583502 0.73237902 0.617266 0.73897099 0.61093801 0.73360801 0.62134802 0.72114998\n\t\t 0.62134802 0.72114998 0.632231 0.72833699 0.617266 0.73897099 0.62336701 0.74760401\n\t\t 0.617266 0.73897099 0.632231 0.72833699 0.632231 0.72833699 0.64094698 0.73838502\n\t\t 0.62336701 0.74760401 0.62336701 0.74760401 0.64094698 0.73838502 0.64094698 0.73838502\n\t\t 0.72836 0.59352601 0.71946299 0.58645397 0.74374801 0.56016701 0.74374801 0.56016701\n\t\t 0.75059801 0.56433499 0.72836 0.59352601 0.74374801 0.56016701 0.71946299 0.58645397\n\t\t 0.70740998 0.57264 0.70740998 0.57264 0.73457003 0.55104202 0.74374801 0.56016701\n\t\t 0.726861 0.54035598 0.73457003 0.55104202 0.70740998 0.57264 0.70740998 0.57264 0.698111\n\t\t 0.559219 0.726861 0.54035598 0.73070699 0.59537703 0.72836 0.59352601 0.75059801\n\t\t 0.56433499 0.75059801 0.56433499 0.75466198 0.56524903 0.73070699 0.59537703 0.726861\n\t\t 0.54035598 0.698111 0.559219 0.726861 0.54035598 0.539177 0.039845999 0.52359599\n\t\t 0.032954 0.53108102 0.026257999 0.53108102 0.026257999 0.54518998 0.034364998 0.539177\n\t\t 0.039845999 0.54518998 0.034364998 0.53108102 0.026257999 0.54915297 0.025914 0.54915297\n\t\t 0.025914 0.55522197 0.028611001 0.54518998 0.034364998 0.48303699 0.29896301 0.48236999\n\t\t 0.28668901 0.49232599 0.28609499 0.49232599 0.28609499 0.494405 0.29828301 0.48303699\n\t\t 0.29896301 0.49889299 0.29874799 0.49801299 0.28634399 0.50342399 0.286874;\n\tsetAttr \".uvst[0].uvsp[12750:12999]\" 0.50342399 0.286874 0.50479603 0.29928499\n\t\t 0.49889299 0.29874799 0.50479603 0.29928499 0.50342399 0.286874 0.52377898 0.28844801\n\t\t 0.52511901 0.30091 0.50479603 0.29928499 0.49477401 0.29842001 0.493806 0.28609899\n\t\t 0.49732399 0.28641799 0.49732399 0.28641799 0.49889299 0.29874799 0.49477401 0.29842001\n\t\t 0.47866699 0.299889 0.47795099 0.287514 0.48171699 0.286746 0.48171699 0.286746 0.48303699\n\t\t 0.29896301 0.47866699 0.299889 0.47795099 0.287514 0.47866699 0.299889 0.47424901\n\t\t 0.301112 0.47424901 0.301112 0.47334501 0.28867099 0.47795099 0.287514 0.47334501\n\t\t 0.28867099 0.47424901 0.301112 0.46501899 0.30360201 0.46501899 0.30360201 0.462814\n\t\t 0.291522 0.47334501 0.28867099 0.81614202 0.108934 0.81193399 0.110831 0.80528301\n\t\t 0.106378 0.80528301 0.106378 0.808855 0.102516 0.81614202 0.108934 0.808855 0.102516\n\t\t 0.80528301 0.106378 0.78233498 0.103135 0.78233498 0.103135 0.78125 0.098941997 0.808855\n\t\t 0.102516 0.78125 0.098941997 0.78233498 0.103135 0.77977699 0.103817 0.77977699 0.103817\n\t\t 0.77867299 0.099546 0.78125 0.098941997 0.77867299 0.099546 0.77977699 0.103817 0.74939299\n\t\t 0.111669 0.74939299 0.111669 0.74654698 0.107896 0.77867299 0.099546 0.52511901 0.30091\n\t\t 0.52345002 0.28848201 0.54350501 0.290144 0.54350501 0.290144 0.54494101 0.302598\n\t\t 0.52511901 0.30091 0.411219 0.127184 0.411219 0.127184 0.41111299 0.13955601 0.41111299\n\t\t 0.13955601 0.411219 0.127184 0.428931 0.128189 0.42781001 0.14040001 0.41111299 0.13955601\n\t\t 0.74052298 0.59581798 0.77201998 0.565584 0.82196701 0.56613898 0.82196701 0.56613898\n\t\t 0.80952197 0.594082 0.74052298 0.59581798 0.77201998 0.565584 0.74052298 0.59581798\n\t\t 0.73070699 0.59537703 0.73070699 0.59537703 0.75466198 0.56524903 0.77201998 0.565584\n\t\t 0.73874998 0.59828699 0.74052298 0.59581798 0.80952197 0.594082 0.80952197 0.594082\n\t\t 0.80960202 0.59758002 0.73874998 0.59828699 0.73874998 0.59828699 0.80960202 0.59758002\n\t\t 0.80996799 0.63336003 0.80996799 0.63336003 0.73727399 0.63246 0.73874998 0.59828699\n\t\t 0.74052298 0.59581798 0.73874998 0.59828699 0.73061699 0.59828401 0.73061699 0.59828401\n\t\t 0.73874998 0.59828699 0.73727399 0.63246 0.73061699 0.59828401 0.73070699 0.59537703\n\t\t 0.74052298 0.59581798 0.73727399 0.63246 0.73083001 0.63213199 0.73061699 0.59828401\n\t\t 0.78632599 0.080055997 0.78566098 0.075591996 0.79216897 0.075096004 0.79216897 0.075096004\n\t\t 0.79391301 0.078951001 0.78632599 0.080055997 0.79391301 0.078951001 0.79216897 0.075096004\n\t\t 0.79593903 0.074198999 0.79593903 0.074198999 0.79824799 0.076838002 0.79391301 0.078951001\n\t\t 0.78566098 0.075591996 0.78632599 0.080055997 0.776568 0.079893 0.776568 0.079893\n\t\t 0.77689803 0.075158998 0.78566098 0.075591996 0.79824799 0.076838002 0.79593903 0.074198999\n\t\t 0.79832101 0.074051 0.79832101 0.074051 0.80021799 0.075441003 0.79824799 0.076838002\n\t\t 0.80021799 0.075441003 0.79832101 0.074051 0.80115002 0.074515 0.77689803 0.075158998\n\t\t 0.776568 0.079893 0.77689803 0.075158998 0.75576699 0.33288601 0.75593901 0.33093601\n\t\t 0.762007 0.330459 0.762007 0.330459 0.76231498 0.33228499 0.75576699 0.33288601 0.76231498\n\t\t 0.33228499 0.762007 0.330459 0.76560998 0.32927701 0.76560998 0.32927701 0.76600897\n\t\t 0.33088601 0.76231498 0.33228499 0.75593901 0.33093601 0.75576699 0.33288601 0.74706399\n\t\t 0.33151099 0.74706399 0.33151099 0.74762303 0.329602 0.75593901 0.33093601 0.76600897\n\t\t 0.33088601 0.76560998 0.32927701 0.76767403 0.32821101 0.76767403 0.32821101 0.76811898\n\t\t 0.32962 0.76600897 0.33088601 0.74762303 0.329602 0.74706399 0.33151099 0.74762303\n\t\t 0.329602 0.76976103 0.326873 0.77043599 0.32793701 0.76811898 0.32962 0.76811898\n\t\t 0.32962 0.76767403 0.32821101 0.76976103 0.326873 0.454274 0.064074002 0.45952201\n\t\t 0.066450998 0.45782 0.072366998 0.45782 0.072366998 0.45257801 0.069972999 0.454274\n\t\t 0.064074002 0.45257801 0.069972999 0.45782 0.072366998 0.456839 0.076082997 0.456839\n\t\t 0.076082997 0.451619 0.073668003 0.45257801 0.069972999 0.45952201 0.066450998 0.454274\n\t\t 0.064074002 0.456983 0.056061 0.456983 0.056061 0.462237 0.058424 0.45952201 0.066450998\n\t\t 0.451619 0.073668003 0.456839 0.076082997 0.45622101 0.078244999 0.45622101 0.078244999\n\t\t 0.45194101 0.075897001 0.451619 0.073668003 0.45194101 0.075897001 0.45622101 0.078244999\n\t\t 0.455917 0.079187997 0.455917 0.079187997 0.45329201 0.077982001 0.45194101 0.075897001\n\t\t 0.462237 0.058424 0.456983 0.056061 0.462237 0.058424 0.86312902 0.32464299 0.860241\n\t\t 0.32464299 0.85973299 0.27011001 0.85973299 0.27011001 0.86262101 0.27011001 0.86312902\n\t\t 0.32464299 0.73092198 0.20718201 0.73580998 0.207433 0.73729199 0.208721 0.73092198\n\t\t 0.20718201 0.73729199 0.208721 0.730555 0.21864501 0.73729199 0.208721 0.737176 0.219191\n\t\t 0.730555 0.21864501 0.722242 0.20247 0.72423601 0.210908 0.716102 0.211145 0.716102\n\t\t 0.211145 0.714109 0.20270699 0.722242 0.20247 0.714109 0.20270699 0.716102 0.211145\n\t\t 0.70453203 0.21056201 0.70453203 0.21056201 0.70254201 0.202124 0.714109 0.20270699\n\t\t 0.24945401 0.158391 0.24945299 0.195365 0.26014599 0.195363 0.26014701 0.158391 0.238759\n\t\t 0.19536801 0.23875999 0.15839 0.228067 0.158391 0.228065 0.195371 0.217372 0.195374\n\t\t 0.217373 0.158391 0.206679 0.158391 0.206679 0.19537599 0.195986 0.19537701 0.195986\n\t\t 0.158391 0.18529201 0.158391 0.185293 0.19537701 0.17460001 0.19537701 0.17459901\n\t\t 0.158392 0.16390499 0.158392 0.16390599 0.195375 0.153212 0.195372;\n\tsetAttr \".uvst[0].uvsp[13000:13249]\" 0.153211 0.158393 0.142518 0.158393 0.142518\n\t\t 0.19536901 0.31361601 0.158391 0.30292201 0.158391 0.30292201 0.195365 0.31361601\n\t\t 0.19536801 0.29222801 0.158391 0.29222801 0.195363 0.28153399 0.195362 0.281535 0.158391\n\t\t 0.270841 0.158391 0.27083999 0.195362 0.73100698 0.50860798 0.72211099 0.50582999\n\t\t 0.72091699 0.51147902 0.72864199 0.51384598 0.73916698 0.51310098 0.73563302 0.51766098\n\t\t 0.74589902 0.51953 0.741337 0.52299798 0.75073999 0.52747899 0.74537802 0.52948397\n\t\t 0.75276101 0.53656697 0.74709702 0.53675801 0.75170702 0.54583299 0.74635297 0.54404902\n\t\t 0.74724102 0.55404699 0.74291301 0.55039901 0.71280199 0.51075602 0.71282202 0.50501502\n\t\t 0.70467103 0.51147199 0.70353299 0.505813 0.69688898 0.51379502 0.69461298 0.50852102\n\t\t 0.68977702 0.51751101 0.68636602 0.51285601 0.68384999 0.52270699 0.67942399 0.51906002\n\t\t 0.67947 0.52904803 0.67420697 0.52676898 0.67729801 0.53624803 0.67164397 0.535721\n\t\t 0.67754799 0.54359502 0.67208201 0.54503798 0.68055803 0.55016398 0.676 0.55352801\n\t\t 0.72320199 0.50120002 0.72211099 0.50582999 0.73100698 0.50860798 0.73100698 0.50860798\n\t\t 0.73311698 0.50438797 0.74223697 0.50952899 0.73100698 0.50860798 0.73100698 0.50860798\n\t\t 0.73916698 0.51310098 0.73916698 0.51310098 0.74589902 0.51953 0.74589902 0.51953\n\t\t 0.749744 0.516927 0.75509501 0.526088 0.74589902 0.51953 0.74589902 0.51953 0.75073999\n\t\t 0.52747899 0.75073999 0.52747899 0.75276101 0.53656697 0.75276101 0.53656697 0.75724798\n\t\t 0.53653598 0.75593197 0.547135 0.75276101 0.53656697 0.75276101 0.53656697 0.75170702\n\t\t 0.54583299 0.75170702 0.54583299 0.74724102 0.55404699 0.74724102 0.55404699 0.751118\n\t\t 0.55654901 0.72211099 0.50582999 0.71286201 0.50029099 0.71282202 0.50501502 0.72211099\n\t\t 0.50582999 0.71282202 0.50501502 0.70252597 0.50116301 0.70353299 0.505813 0.71282202\n\t\t 0.50501502 0.69461298 0.50852102 0.70353299 0.505813 0.69260103 0.50425202 0.69461298\n\t\t 0.50852102 0.69461298 0.50852102 0.683397 0.50918198 0.68636602 0.51285601 0.69461298\n\t\t 0.50852102 0.67942399 0.51906002 0.68636602 0.51285601 0.67566401 0.516298 0.67942399\n\t\t 0.51906002 0.67942399 0.51906002 0.66989201 0.52516699 0.67420697 0.52676898 0.67942399\n\t\t 0.51906002 0.67164397 0.535721 0.67420697 0.52676898 0.66713798 0.53545201 0.67164397\n\t\t 0.535721 0.67164397 0.535721 0.66777098 0.54610401 0.67208201 0.54503798 0.67164397\n\t\t 0.535721 0.676 0.55352801 0.67208201 0.54503798 0.67197198 0.55580401 0.676 0.55352801\n\t\t 0.078675002 0.233715 0.078722 0.260748 0.086200997 0.26074699 0.086254001 0.233716\n\t\t 0.071147002 0.26075 0.071096003 0.233715 0.063516997 0.233715 0.063564003 0.26075301\n\t\t 0.055989999 0.260755 0.055938002 0.233716 0.048358999 0.233716 0.048407 0.26075599\n\t\t 0.040833 0.260757 0.040780999 0.233716 0.033202 0.233716 0.03325 0.260757 0.025676001\n\t\t 0.26075599 0.025622999 0.233716 0.018044 0.233716 0.018092999 0.260755 0.010518 0.26075301\n\t\t 0.010465 0.23371699 0.0028860001 0.23371699 0.002935 0.26075101 0.116621 0.260748\n\t\t 0.1241 0.26075 0.124148 0.233716 0.116568 0.233716 0.10899 0.233716 0.109038 0.26074699\n\t\t 0.101463 0.260746 0.101411 0.233716 0.093832001 0.233716 0.093878999 0.260746 0.79816902\n\t\t 0.86414897 0.80371797 0.86870098 0.80590099 0.86525398 0.80095899 0.86128199 0.79351097\n\t\t 0.858697 0.79683799 0.85644001 0.79014999 0.85237402 0.79385501 0.85084403 0.788073\n\t\t 0.84554398 0.79197103 0.84480399 0.787287 0.838471 0.79131299 0.83866203 0.78841299\n\t\t 0.83142 0.79214501 0.83287799 0.79218698 0.82534802 0.79512101 0.82812101 0.81174397\n\t\t 0.86798501 0.81025898 0.87162697 0.81792599 0.870094 0.81701499 0.873959 0.82415301\n\t\t 0.87117201 0.82405102 0.87519997 0.83018798 0.87076801 0.83116698 0.874681 0.835648\n\t\t 0.86855602 0.837744 0.87197 0.84011698 0.86484802 0.84319502 0.86742097 0.84302598\n\t\t 0.85989201 0.84676498 0.861292 0.84415698 0.85431898 0.84815598 0.85432899 0.84314001\n\t\t 0.84879899 0.84687001 0.84732699 0.85058898 0.85441202 0.84815598 0.85432899 0.84676498\n\t\t 0.861292 0.84687001 0.84732699 0.84815598 0.85432899 0.84676498 0.861292 0.849069\n\t\t 0.86213303 0.84514701 0.86895198 0.84319502 0.86742097 0.837744 0.87197 0.84676498\n\t\t 0.861292 0.84319502 0.86742097 0.84676498 0.861292 0.837744 0.87197 0.83918101 0.87405598\n\t\t 0.84936303 0.84663999 0.84687001 0.84732699 0.837744 0.87197 0.83116698 0.874681\n\t\t 0.83199799 0.87716597 0.837744 0.87197 0.83116698 0.874681 0.82405102 0.87519997\n\t\t 0.82405102 0.87519997 0.824242 0.87789702 0.81665099 0.87635899 0.82405102 0.87519997\n\t\t 0.82405102 0.87519997 0.81701499 0.873959 0.81701499 0.873959 0.81025898 0.87162697\n\t\t 0.81025898 0.87162697 0.80937099 0.87378597 0.81025898 0.87162697 0.80371797 0.86870098\n\t\t 0.80371797 0.86870098 0.80208498 0.87122297 0.80371797 0.86870098 0.79816902 0.86414897\n\t\t 0.79816902 0.86414897 0.79634202 0.86602497 0.791291 0.860156 0.79816902 0.86414897\n\t\t 0.79816902 0.86414897 0.79351097 0.858697 0.79351097 0.858697 0.79014999 0.85237402\n\t\t 0.79014999 0.85237402 0.787673 0.85330701 0.78560603 0.84582698 0.79014999 0.85237402\n\t\t 0.79014999 0.85237402 0.788073 0.84554398 0.788073 0.84554398 0.787287 0.838471 0.787287\n\t\t 0.838471 0.78462601 0.83809799 0.78616601 0.83042598 0.787287 0.838471 0.787287 0.838471\n\t\t 0.78841299 0.83142 0.78841299 0.83142 0.79218698 0.82534802 0.79218698 0.82534802\n\t\t 0.790106 0.823632 0.070900999 0.20072401 0.070900999 0.157203 0.062449001 0.157204\n\t\t 0.062449001 0.20072401 0.079352997 0.157204;\n\tsetAttr \".uvst[0].uvsp[13250:13499]\" 0.079352997 0.20072401 0.087805003 0.20072401\n\t\t 0.087805003 0.157204 0.096257001 0.157204 0.096257001 0.20072401 0.104709 0.20072401\n\t\t 0.104709 0.157204 0.113161 0.157204 0.113161 0.20072401 0.121613 0.20072401 0.121613\n\t\t 0.157204 0.13006499 0.157204 0.13006499 0.20072301 0.13851801 0.20072301 0.13851701\n\t\t 0.157203 0.0032840001 0.20072401 0.011737 0.20072401 0.011737 0.157204 0.0032840001\n\t\t 0.157204 0.020189 0.20072401 0.020189 0.157204 0.028641 0.157204 0.028641 0.20072401\n\t\t 0.037092999 0.20072401 0.037092999 0.157204 0.045545001 0.157204 0.045545001 0.20072401\n\t\t 0.053996999 0.20072401 0.053996999 0.157204 0.80208403 0.85816002 0.80713201 0.86314797\n\t\t 0.80907398 0.86015201 0.80501598 0.85614097 0.799227 0.85166299 0.802719 0.85091799\n\t\t 0.79918402 0.84456599 0.80268502 0.84521198 0.80175799 0.83795202 0.80475402 0.83989501\n\t\t 0.80674702 0.83290398 0.80876499 0.83583599 0.81324297 0.83004701 0.81398797 0.83353901\n\t\t 0.82033998 0.83000499 0.81969398 0.83350599 0.82695401 0.832578 0.82501203 0.83557397\n\t\t 0.832003 0.83756697 0.82906997 0.83958501 0.83485901 0.84406298 0.83136702 0.84480798\n\t\t 0.83490199 0.85115999 0.83140099 0.85051399 0.83232802 0.85777402 0.82933199 0.85583198\n\t\t 0.82733899 0.862822 0.82532102 0.85988998 0.82084298 0.86567998 0.82009798 0.86218703\n\t\t 0.81374598 0.865722 0.81439197 0.862221 0.266267 0.217169 0.266267 0.22095001 0.274719\n\t\t 0.22095101 0.274719 0.217169 0.25781301 0.22095001 0.257817 0.217169 0.249369 0.217149\n\t\t 0.249357 0.22093 0.24090301 0.220899 0.240918 0.217117 0.232465 0.217085 0.23245201\n\t\t 0.22086599 0.224004 0.220844 0.22400901 0.21706299 0.215554 0.217062 0.215554 0.220844\n\t\t 0.207102 0.220844 0.207102 0.217062 0.19865 0.217062 0.19865 0.220844 0.33383799\n\t\t 0.216473 0.325389 0.216653 0.325468 0.220434 0.33391899 0.220254 0.31694099 0.216828\n\t\t 0.31701499 0.22060899 0.308557 0.22076499 0.30849701 0.21698301 0.300055 0.21710201\n\t\t 0.30009601 0.220883 0.29163101 0.22095001 0.29161701 0.217169 0.283171 0.217169 0.283171\n\t\t 0.22095001 0.27306801 0.203343 0.27306801 0.20919301 0.28235701 0.20919301 0.28235701\n\t\t 0.203343 0.26377901 0.20919199 0.26377901 0.203344 0.254491 0.203339 0.254491 0.209197\n\t\t 0.245203 0.209189 0.245203 0.203346 0.23591299 0.20333999 0.23591299 0.209195 0.22661901\n\t\t 0.20918401 0.22661901 0.20335101 0.217307 0.203357 0.217307 0.209179 0.20793501 0.209168\n\t\t 0.20793401 0.20336799 0.198411 0.20324899 0.198411 0.209287 0.34772801 0.203247 0.338204\n\t\t 0.20336799 0.338204 0.209162 0.34772801 0.209282 0.32883099 0.20335101 0.32883099\n\t\t 0.209181 0.31951901 0.20918401 0.31951901 0.20334899 0.31022501 0.20333999 0.31022501\n\t\t 0.209195 0.300935 0.20919099 0.300935 0.203344 0.291646 0.203343 0.291646 0.20919199\n\t\t 0.20445 0.25670499 0.20445 0.24848101 0.195998 0.24848101 0.195998 0.25670499 0.21290199\n\t\t 0.24848101 0.21290199 0.25670499 0.22135399 0.25670499 0.22135399 0.24848101 0.22980601\n\t\t 0.24848101 0.22980601 0.25670499 0.238258 0.25670499 0.238258 0.24848001 0.246711\n\t\t 0.24848001 0.246711 0.25670499 0.255162 0.25670499 0.255162 0.24848001 0.26361501\n\t\t 0.24848101 0.26361501 0.25670499 0.27206701 0.25670499 0.27206701 0.24848101 0.136833\n\t\t 0.25670499 0.145285 0.25670499 0.145285 0.24848101 0.136833 0.24848101 0.15373801\n\t\t 0.25670499 0.15373699 0.24848001 0.16219001 0.24848001 0.16219001 0.25670499 0.170642\n\t\t 0.25670499 0.170642 0.24848101 0.179094 0.24848101 0.179094 0.25670499 0.187546 0.25670499\n\t\t 0.187546 0.24848101 0.76993102 0.36104801 0.76993102 0.362214 0.77898097 0.362214\n\t\t 0.77898097 0.36104801 0.78803098 0.36104801 0.78803098 0.362214 0.79708201 0.36221701\n\t\t 0.79708201 0.36104599 0.80613297 0.36105001 0.80613297 0.36221299 0.81518799 0.362216\n\t\t 0.81518799 0.361047 0.82424903 0.36104801 0.82424903 0.36221501 0.83332402 0.36221501\n\t\t 0.83332402 0.361047 0.84243 0.361047 0.84243 0.362216 0.85159802 0.36221701 0.85159802\n\t\t 0.36104599 0.706361 0.36222401 0.71552801 0.36222401 0.71552801 0.361038 0.706361\n\t\t 0.36103901 0.724635 0.36220899 0.724635 0.36105299 0.733711 0.36105299 0.733711 0.36220899\n\t\t 0.742773 0.362216 0.742773 0.361047 0.75182801 0.361049 0.75182801 0.362214 0.76087999\n\t\t 0.362214 0.76087999 0.36104801 0.28235701 0.19931801 0.27306801 0.19930699 0.27306801\n\t\t 0.203343 0.27306801 0.203343 0.28235701 0.203343 0.26377901 0.203344 0.27306801 0.203343\n\t\t 0.26378 0.19931901 0.26377901 0.203344 0.254491 0.203339 0.26377901 0.203344 0.254491\n\t\t 0.199301 0.254491 0.203339 0.245203 0.203346 0.254491 0.203339 0.245203 0.199322\n\t\t 0.245203 0.203346 0.23591299 0.20333999 0.245203 0.203346 0.23591501 0.199304 0.23591299\n\t\t 0.20333999 0.22661901 0.20335101 0.23591299 0.20333999 0.226633 0.19933701 0.22661901\n\t\t 0.20335101 0.217307 0.203357 0.22661901 0.20335101 0.217373 0.199349 0.217307 0.203357\n\t\t 0.20793401 0.20336799 0.217307 0.203357 0.208213 0.199403 0.20793401 0.20336799 0.198411\n\t\t 0.20324899 0.20793401 0.20336799 0.199434 0.19901399 0.198411 0.20324899 0.34670499\n\t\t 0.19901399 0.337928 0.199405 0.338204 0.20336799 0.338204 0.20336799 0.34772801 0.203247\n\t\t 0.32883099 0.20335101 0.338204 0.20336799 0.328767 0.199342 0.32883099 0.20335101\n\t\t 0.31951901 0.20334899 0.32883099 0.20335101 0.31950599 0.199333 0.31951901 0.20334899\n\t\t 0.31022501 0.20333999 0.31951901 0.20334899 0.310222 0.199303;\n\tsetAttr \".uvst[0].uvsp[13500:13749]\" 0.31022501 0.20333999 0.300935 0.203344 0.31022501\n\t\t 0.20333999 0.300933 0.19932 0.300935 0.203344 0.291646 0.203343 0.300935 0.203344\n\t\t 0.291646 0.19930699 0.291646 0.203343 0.28235701 0.203343 0.291646 0.203343 0.28235701\n\t\t 0.203343 0.26378 0.21321601 0.27306801 0.213229 0.27306801 0.20919301 0.27306801\n\t\t 0.20919301 0.26377901 0.20919199 0.28235701 0.20919301 0.27306801 0.20919301 0.28235701\n\t\t 0.21321701 0.28235701 0.20919301 0.291646 0.20919199 0.28235701 0.20919301 0.291646\n\t\t 0.213228 0.291646 0.20919199 0.300935 0.20919099 0.291646 0.20919199 0.30093399 0.21321601\n\t\t 0.300935 0.20919099 0.31022501 0.209195 0.300935 0.20919099 0.31022301 0.213232 0.31022501\n\t\t 0.209195 0.31951901 0.20918401 0.31022501 0.209195 0.319507 0.2132 0.31951901 0.20918401\n\t\t 0.32883099 0.209181 0.31951901 0.20918401 0.32876799 0.21319 0.32883099 0.209181\n\t\t 0.338204 0.209162 0.32883099 0.209181 0.337928 0.21312501 0.338204 0.209162 0.34772801\n\t\t 0.209282 0.338204 0.209162 0.346706 0.213516 0.34772801 0.209282 0.199434 0.213523\n\t\t 0.208213 0.21313401 0.20793501 0.209168 0.20793501 0.209168 0.198411 0.209287 0.217307\n\t\t 0.209179 0.20793501 0.209168 0.217374 0.21318699 0.217307 0.209179 0.22661901 0.20918401\n\t\t 0.217307 0.209179 0.226633 0.213199 0.22661901 0.20918401 0.23591299 0.209195 0.22661901\n\t\t 0.20918401 0.23591501 0.213231 0.23591299 0.209195 0.245203 0.209189 0.23591299 0.209195\n\t\t 0.245203 0.213213 0.245203 0.209189 0.254491 0.209197 0.245203 0.209189 0.254491\n\t\t 0.21323501 0.254491 0.209197 0.26377901 0.20919199 0.254491 0.209197 0.26377901 0.20919199\n\t\t 0.76993197 0.36443999 0.77898097 0.364443 0.77898097 0.362214 0.77898097 0.362214\n\t\t 0.76993102 0.362214 0.78803098 0.362214 0.77898097 0.362214 0.78802902 0.36443901\n\t\t 0.78803098 0.362214 0.79708201 0.36221701 0.78803098 0.362214 0.797077 0.36444801\n\t\t 0.79708201 0.36221701 0.80613297 0.36221299 0.79708201 0.36221701 0.80612302 0.364436\n\t\t 0.80613297 0.36221299 0.81518799 0.362216 0.80613297 0.36221299 0.81516498 0.36444601\n\t\t 0.81518799 0.362216 0.82424903 0.36221501 0.81518799 0.362216 0.82419801 0.364438\n\t\t 0.82424903 0.36221501 0.83332402 0.36221501 0.82424903 0.36221501 0.83320898 0.36443999\n\t\t 0.83332402 0.36221501 0.84243 0.362216 0.83332402 0.36221501 0.842161 0.364429 0.84243\n\t\t 0.362216 0.85159802 0.36221701 0.84243 0.362216 0.85089397 0.36449501 0.85159802\n\t\t 0.36221701 0.707066 0.364508 0.71579897 0.36444199 0.71552801 0.36222401 0.71552801\n\t\t 0.36222401 0.706361 0.36222401 0.724635 0.36220899 0.71552801 0.36222401 0.72475201\n\t\t 0.36443099 0.724635 0.36220899 0.733711 0.36220899 0.724635 0.36220899 0.73376203\n\t\t 0.36442801 0.733711 0.36220899 0.742773 0.362216 0.733711 0.36220899 0.74279499 0.364445\n\t\t 0.742773 0.362216 0.75182801 0.362214 0.742773 0.362216 0.75183803 0.36443901 0.75182801\n\t\t 0.362214 0.76087999 0.362214 0.75182801 0.362214 0.76088399 0.364443 0.76087999 0.362214\n\t\t 0.76993102 0.362214 0.76087999 0.362214 0.76993102 0.362214 0.78802902 0.358823 0.77898097\n\t\t 0.35881901 0.77898097 0.36104801 0.77898097 0.36104801 0.78803098 0.36104801 0.76993102\n\t\t 0.36104801 0.77898097 0.36104801 0.76993197 0.358823 0.76993102 0.36104801 0.76087999\n\t\t 0.36104801 0.76993102 0.36104801 0.76088399 0.35881999 0.76087999 0.36104801 0.75182801\n\t\t 0.361049 0.76087999 0.36104801 0.75183803 0.35882401 0.75182801 0.361049 0.742773\n\t\t 0.361047 0.75182801 0.361049 0.74279499 0.35881799 0.742773 0.361047 0.733711 0.36105299\n\t\t 0.742773 0.361047 0.73376203 0.35883501 0.733711 0.36105299 0.724635 0.36105299 0.733711\n\t\t 0.36105299 0.72475201 0.35883099 0.724635 0.36105299 0.71552801 0.361038 0.724635\n\t\t 0.36105299 0.71579897 0.358821 0.71552801 0.361038 0.706361 0.36103901 0.71552801\n\t\t 0.361038 0.707066 0.35875499 0.706361 0.36103901 0.85089397 0.35876799 0.842161 0.358834\n\t\t 0.84243 0.361047 0.84243 0.361047 0.85159802 0.36104599 0.83332402 0.361047 0.84243\n\t\t 0.361047 0.83320898 0.358823 0.83332402 0.361047 0.82424903 0.36104801 0.83332402\n\t\t 0.361047 0.82419801 0.35882401 0.82424903 0.36104801 0.81518799 0.361047 0.82424903\n\t\t 0.36104801 0.81516498 0.35881701 0.81518799 0.361047 0.80613297 0.36105001 0.81518799\n\t\t 0.361047 0.80612302 0.35882699 0.80613297 0.36105001 0.79708201 0.36104599 0.80613297\n\t\t 0.36105001 0.797077 0.358814 0.79708201 0.36104599 0.78803098 0.36104801 0.79708201\n\t\t 0.36104599 0.78803098 0.36104801 0.0704 0.230534 0.0704 0.22429501 0.062785998 0.22429501\n\t\t 0.062785998 0.230534 0.055185001 0.230534 0.055185001 0.22429501 0.047591999 0.22429501\n\t\t 0.047591999 0.230534 0.039988 0.230534 0.039988 0.22429501 0.032391999 0.22429501\n\t\t 0.032391999 0.230534 0.024747999 0.230534 0.024747999 0.22429501 0.016985999 0.22429501\n\t\t 0.016985999 0.230534 0.0093120001 0.230534 0.0093120001 0.22429501 0.002449 0.22429501\n\t\t 0.002449 0.230534 0.123461 0.22429501 0.115714 0.22429501 0.115714 0.230534 0.123461\n\t\t 0.230534 0.108187 0.22429501 0.108187 0.230534 0.100658 0.230534 0.100658 0.22429501\n\t\t 0.093124002 0.22429501 0.093124002 0.230534 0.085575998 0.230534 0.085575998 0.22429501\n\t\t 0.078004003 0.22429501 0.078004003 0.230534 0.082194 0.099444002 0.082194 0.154567\n\t\t 0.093474001 0.154567 0.093474001 0.099444002 0.104753 0.154567 0.104753 0.099444002\n\t\t 0.116033 0.154567 0.116033 0.099444002 0.127312 0.154567;\n\tsetAttr \".uvst[0].uvsp[13750:13999]\" 0.127312 0.099444002 0.13859101 0.154567 0.13859101\n\t\t 0.099444002 0.149872 0.154567 0.149872 0.099444002 0.16115101 0.154567 0.16115101\n\t\t 0.099444002 0.17243101 0.154567 0.17243101 0.099444002 0.18370999 0.154567 0.18370999\n\t\t 0.099444002 0.014516 0.154567 0.014516 0.099444002 0.003236 0.099444002 0.003236\n\t\t 0.154567 0.025796 0.154567 0.025795 0.099444002 0.037076 0.154567 0.037075002 0.099444002\n\t\t 0.048354998 0.154567 0.048354998 0.099444002 0.059634998 0.154567 0.059634998 0.099444002\n\t\t 0.070914 0.154567 0.070914 0.099444002 0.59282202 0.51386303 0.593436 0.51964098\n\t\t 0.59773701 0.52001297 0.59694499 0.512559 0.595676 0.52722102 0.591838 0.52522701\n\t\t 0.59096402 0.53305101 0.58818698 0.52974701 0.58441001 0.53669 0.58310699 0.53256702\n\t\t 0.57695597 0.53748202 0.57732898 0.53318101 0.569749 0.53542 0.57174301 0.53158301\n\t\t 0.56391799 0.53070903 0.56722301 0.52793199 0.56028003 0.52415502 0.564403 0.522852\n\t\t 0.559488 0.51670098 0.56378901 0.51707399 0.56154901 0.50949401 0.56538701 0.51148701\n\t\t 0.56626099 0.503663 0.56903797 0.50696802 0.572815 0.50002497 0.57411802 0.50414699\n\t\t 0.58026898 0.49923301 0.57989597 0.50353402 0.58747602 0.50129402 0.58548301 0.50513202\n\t\t 0.59330702 0.506006 0.590002 0.50878298 0.218839 0.30441299 0.218839 0.29938799 0.20872299\n\t\t 0.29938799 0.208722 0.30441299 0.198606 0.29938799 0.198605 0.30441201 0.18848 0.29937601\n\t\t 0.188484 0.30440301 0.17832901 0.29940599 0.178343 0.30442899 0.168138 0.29944399\n\t\t 0.168162 0.30447 0.157882 0.299537 0.15789001 0.30456001 0.14750899 0.299566 0.147478\n\t\t 0.30459401 0.13696 0.29952201 0.13659699 0.30449101 0.126205 0.29805499 0.125476\n\t\t 0.30309001 0.188473 0.29137799 0.18848 0.29937601 0.198606 0.29938799 0.198606 0.29938799\n\t\t 0.198607 0.29139599 0.198606 0.29938799 0.20872299 0.29938799 0.20872299 0.29938799\n\t\t 0.20872299 0.29139 0.20872299 0.29938799 0.218839 0.29938799 0.218839 0.29938799\n\t\t 0.218841 0.29139 0.147744 0.29156801 0.14750899 0.299566 0.157882 0.299537 0.157882\n\t\t 0.299537 0.15792 0.29153299 0.14750899 0.299566 0.13780101 0.291594 0.13696 0.29952201\n\t\t 0.14750899 0.299566 0.13696 0.29952201 0.12848599 0.29008299 0.126205 0.29805499\n\t\t 0.13696 0.29952201 0.218839 0.29938799 0.228966 0.299389 0.228965 0.30441499 0.228966\n\t\t 0.299389 0.228966 0.299389 0.239099 0.304416 0.239114 0.299391 0.228966 0.299389\n\t\t 0.249248 0.30450499 0.24930499 0.29947901 0.259527 0.304708 0.259574 0.29968199 0.27010101\n\t\t 0.30480701 0.269977 0.29978099 0.28108099 0.30427301 0.28054801 0.29929301 0.29212999\n\t\t 0.30257499 0.291264 0.297564 0.27947301 0.29139999 0.28054801 0.29929301 0.291264\n\t\t 0.297564 0.291264 0.297564 0.28877199 0.289666 0.28054801 0.29929301 0.269631 0.29175901\n\t\t 0.269977 0.29978099 0.28054801 0.29929301 0.269977 0.29978099 0.259541 0.29166901\n\t\t 0.259574 0.29968199 0.269977 0.29978099 0.259574 0.29968199 0.249347 0.29148 0.24930499\n\t\t 0.29947901 0.259574 0.29968199 0.24930499 0.29947901 0.23914 0.29140899 0.239114\n\t\t 0.299391 0.24930499 0.29947901 0.239114 0.299391 0.228974 0.29139099 0.239114 0.299391\n\t\t 0.086597003 0.208582 0.086597003 0.216254 0.098562002 0.21625499 0.098562002 0.20858\n\t\t 0.110527 0.216253 0.110527 0.208583 0.122492 0.21625701 0.122492 0.208579 0.134461\n\t\t 0.216251 0.134461 0.20858499 0.14643499 0.21625701 0.14643499 0.208579 0.158415 0.216253\n\t\t 0.158415 0.208584 0.170404 0.216253 0.170404 0.20858601 0.182428 0.216242 0.182427\n\t\t 0.208597 0.19467101 0.21634001 0.194675 0.208464 0.014698 0.21623699 0.014699 0.208598\n\t\t 0.00245 0.208462 0.0024530001 0.216337 0.026721001 0.21625599 0.026721001 0.208583\n\t\t 0.038708001 0.216252 0.038709 0.20858499 0.050687999 0.21625701 0.050687999 0.208579\n\t\t 0.062661 0.216253 0.062661 0.208583 0.074630998 0.21625499 0.074630998 0.20858 0.21580701\n\t\t 0.23479 0.21580701 0.245207 0.22708701 0.245207 0.22708701 0.23479 0.23836599 0.245207\n\t\t 0.23836701 0.234789 0.24964599 0.245207 0.24964599 0.23479 0.26092601 0.245207 0.26092601\n\t\t 0.23479 0.27220601 0.245207 0.27220601 0.234789 0.28348601 0.245207 0.28348601 0.23479\n\t\t 0.29476601 0.245207 0.29476601 0.23479 0.30604601 0.245207 0.30604601 0.23479 0.317325\n\t\t 0.245207 0.317325 0.234789 0.148128 0.245207 0.148128 0.23479 0.136849 0.234789 0.136849\n\t\t 0.245207 0.159408 0.245207 0.159408 0.234789 0.170688 0.245207 0.170688 0.234789\n\t\t 0.181968 0.245207 0.181968 0.23479 0.193248 0.245207 0.193248 0.234789 0.20452701\n\t\t 0.245207 0.20452701 0.23479 0.232987 0.228928 0.232987 0.227449 0.22136199 0.227449\n\t\t 0.22136199 0.228928 0.209737 0.227449 0.209737 0.228927 0.198118 0.227446 0.198118\n\t\t 0.228929 0.186511 0.22745 0.186511 0.228926 0.17492101 0.227447 0.17492101 0.228929\n\t\t 0.163351 0.227449 0.16335 0.228927 0.15180101 0.227449 0.15180101 0.228927 0.14026199\n\t\t 0.227448 0.14026199 0.228928 0.128668 0.227446 0.128668 0.22893 0.302461 0.227446\n\t\t 0.302461 0.22893 0.31405601 0.22893099 0.31405601 0.22744501 0.290921 0.227449 0.29092199\n\t\t 0.228927 0.27937299 0.22745 0.27937299 0.228925 0.26780301 0.227447 0.26780301 0.228929\n\t\t 0.256212 0.227449 0.256212 0.228927 0.244605 0.227449 0.244605 0.228927 0.086597003\n\t\t 0.22152001 0.098562002 0.22152901 0.098562002 0.21625499;\n\tsetAttr \".uvst[0].uvsp[14000:14249]\" 0.098562002 0.21625499 0.086597003 0.216254\n\t\t 0.110527 0.216253 0.098562002 0.21625499 0.110525 0.22151899 0.110527 0.216253 0.122492\n\t\t 0.21625701 0.110527 0.216253 0.122492 0.221533 0.122492 0.21625701 0.134461 0.216251\n\t\t 0.122492 0.21625701 0.134461 0.221517 0.134461 0.216251 0.14643499 0.21625701 0.134461\n\t\t 0.216251 0.14643499 0.221533 0.14643499 0.21625701 0.158415 0.216253 0.14643499 0.21625701\n\t\t 0.158417 0.22151799 0.158415 0.216253 0.170404 0.216253 0.158415 0.216253 0.170404\n\t\t 0.221522 0.170404 0.216253 0.182428 0.216242 0.170404 0.216253 0.182363 0.221468\n\t\t 0.182428 0.216242 0.19467101 0.21634001 0.182428 0.216242 0.193859 0.221815 0.19467101\n\t\t 0.21634001 0.0032649999 0.221811 0.014759 0.22146399 0.014698 0.21623699 0.014698\n\t\t 0.21623699 0.0024530001 0.216337 0.026721001 0.21625599 0.014698 0.21623699 0.026719\n\t\t 0.221526 0.026721001 0.21625599 0.038708001 0.216252 0.026721001 0.21625599 0.038708001\n\t\t 0.22151799 0.038708001 0.216252 0.050687999 0.21625701 0.038708001 0.216252 0.050687999\n\t\t 0.221534 0.050687999 0.21625701 0.062661 0.216253 0.050687999 0.21625701 0.062662996\n\t\t 0.22152001 0.062661 0.216253 0.074630998 0.21625499 0.062661 0.216253 0.074631996\n\t\t 0.22153001 0.074630998 0.21625499 0.086597003 0.216254 0.074630998 0.21625499 0.086597003\n\t\t 0.216254 0.110525 0.203316 0.098562002 0.203306 0.098562002 0.20858 0.098562002 0.20858\n\t\t 0.110527 0.208583 0.086597003 0.208582 0.098562002 0.20858 0.086597003 0.203315 0.086597003\n\t\t 0.208582 0.074630998 0.20858 0.086597003 0.208582 0.074630998 0.203306 0.074630998\n\t\t 0.20858 0.062661 0.208583 0.074630998 0.20858 0.062662996 0.203317 0.062661 0.208583\n\t\t 0.050687999 0.208579 0.062661 0.208583 0.050687999 0.20330299 0.050687999 0.208579\n\t\t 0.038709 0.20858499 0.050687999 0.208579 0.038708001 0.20332 0.038709 0.20858499\n\t\t 0.026721001 0.208583 0.038709 0.20858499 0.026721001 0.20331199 0.026721001 0.208583\n\t\t 0.014699 0.208598 0.026721001 0.208583 0.014768 0.203374 0.014699 0.208598 0.00245\n\t\t 0.208462 0.014699 0.208598 0.0032939999 0.20298401 0.00245 0.208462 0.193831 0.202985\n\t\t 0.182356 0.203372 0.182427 0.208597 0.182427 0.208597 0.194675 0.208464 0.170404\n\t\t 0.20858601 0.182427 0.208597 0.17040201 0.203317 0.170404 0.20858601 0.158415 0.208584\n\t\t 0.170404 0.20858601 0.158417 0.203318 0.158415 0.208584 0.14643499 0.208579 0.158415\n\t\t 0.208584 0.14643499 0.20330299 0.14643499 0.208579 0.134461 0.20858499 0.14643499\n\t\t 0.208579 0.134461 0.203319 0.134461 0.20858499 0.122492 0.208579 0.134461 0.20858499\n\t\t 0.122492 0.20330299 0.122492 0.208579 0.110527 0.208583 0.122492 0.208579 0.110527\n\t\t 0.208583 0.232987 0.224594 0.22136199 0.224592 0.22136199 0.227449 0.22136199 0.227449\n\t\t 0.232987 0.227449 0.209737 0.227449 0.22136199 0.227449 0.209737 0.224595 0.209737\n\t\t 0.227449 0.198118 0.227446 0.209737 0.227449 0.198118 0.22458801 0.198118 0.227446\n\t\t 0.186511 0.22745 0.198118 0.227446 0.186511 0.22459701 0.186511 0.22745 0.17492101\n\t\t 0.227447 0.186511 0.22745 0.17492101 0.22458901 0.17492101 0.227447 0.163351 0.227449\n\t\t 0.17492101 0.227447 0.163353 0.22459599 0.163351 0.227449 0.15180101 0.227449 0.163351\n\t\t 0.227449 0.151816 0.224594 0.15180101 0.227449 0.14026199 0.227448 0.15180101 0.227449\n\t\t 0.14033499 0.224601 0.14026199 0.227448 0.128668 0.227446 0.14026199 0.227448 0.12911899\n\t\t 0.22453 0.128668 0.227446 0.313604 0.224528 0.302387 0.224599 0.302461 0.227446 0.302461\n\t\t 0.227446 0.31405601 0.22744501 0.290921 0.227449 0.302461 0.227446 0.29090801 0.224594\n\t\t 0.290921 0.227449 0.27937299 0.22745 0.290921 0.227449 0.27937001 0.22459801 0.27937299\n\t\t 0.22745 0.26780301 0.227447 0.27937299 0.22745 0.267802 0.22458901 0.26780301 0.227447\n\t\t 0.256212 0.227449 0.26780301 0.227447 0.256212 0.224595 0.256212 0.227449 0.244605\n\t\t 0.227449 0.256212 0.227449 0.244605 0.224592 0.244605 0.227449 0.232987 0.227449\n\t\t 0.244605 0.227449 0.232987 0.227449 0.209737 0.23178101 0.22136199 0.231784 0.22136199\n\t\t 0.228928 0.22136199 0.228928 0.209737 0.228927 0.232987 0.228928 0.22136199 0.228928\n\t\t 0.232987 0.23178101 0.232987 0.228928 0.244605 0.228927 0.232987 0.228928 0.244605\n\t\t 0.231784 0.244605 0.228927 0.256212 0.228927 0.244605 0.228927 0.256212 0.23178101\n\t\t 0.256212 0.228927 0.26780301 0.228929 0.256212 0.228927 0.267802 0.231787 0.26780301\n\t\t 0.228929 0.27937299 0.228925 0.26780301 0.228929 0.27937001 0.231777 0.27937299 0.228925\n\t\t 0.29092199 0.228927 0.27937299 0.228925 0.29090801 0.231782 0.29092199 0.228927 0.302461\n\t\t 0.22893 0.29092199 0.228927 0.302387 0.231777 0.302461 0.22893 0.31405601 0.22893099\n\t\t 0.302461 0.22893 0.313604 0.231848 0.31405601 0.22893099 0.12911899 0.23184501 0.14033499\n\t\t 0.231774 0.14026199 0.228928 0.14026199 0.228928 0.128668 0.22893 0.15180101 0.228927\n\t\t 0.14026199 0.228928 0.151816 0.231782 0.15180101 0.228927 0.16335 0.228927 0.15180101\n\t\t 0.228927 0.163353 0.23177999 0.16335 0.228927 0.17492101 0.228929 0.16335 0.228927\n\t\t 0.17492101 0.231787 0.17492101 0.228929 0.186511 0.228926 0.17492101 0.228929 0.186511\n\t\t 0.23177899 0.186511 0.228926;\n\tsetAttr \".uvst[0].uvsp[14250:14499]\" 0.198118 0.228929 0.186511 0.228926 0.198118\n\t\t 0.231787 0.198118 0.228929 0.209737 0.228927 0.198118 0.228929 0.209737 0.228927\n\t\t 0.18848 0.29937601 0.178314 0.29141399 0.17832901 0.29940599 0.18848 0.29937601 0.17832901\n\t\t 0.29940599 0.16812401 0.29144201 0.168138 0.29944399 0.17832901 0.29940599 0.168138\n\t\t 0.29944399 0.157882 0.299537 0.168138 0.29944399 0.24945401 0.158391 0.26014701 0.158391\n\t\t 0.26014599 0.195363 0.26014599 0.195363 0.24945299 0.195365 0.24945401 0.158391 0.24945401\n\t\t 0.158391 0.24945299 0.195365 0.238759 0.19536801 0.238759 0.19536801 0.23875999 0.15839\n\t\t 0.24945401 0.158391 0.228067 0.158391 0.23875999 0.15839 0.238759 0.19536801 0.238759\n\t\t 0.19536801 0.228065 0.195371 0.228067 0.158391 0.228067 0.158391 0.228065 0.195371\n\t\t 0.217372 0.195374 0.217372 0.195374 0.217373 0.158391 0.228067 0.158391 0.206679\n\t\t 0.158391 0.217373 0.158391 0.217372 0.195374 0.217372 0.195374 0.206679 0.19537599\n\t\t 0.206679 0.158391 0.206679 0.158391 0.206679 0.19537599 0.195986 0.19537701 0.195986\n\t\t 0.19537701 0.195986 0.158391 0.206679 0.158391 0.18529201 0.158391 0.195986 0.158391\n\t\t 0.195986 0.19537701 0.195986 0.19537701 0.185293 0.19537701 0.18529201 0.158391 0.18529201\n\t\t 0.158391 0.185293 0.19537701 0.17460001 0.19537701 0.17460001 0.19537701 0.17459901\n\t\t 0.158392 0.18529201 0.158391 0.16390499 0.158392 0.17459901 0.158392 0.17460001 0.19537701\n\t\t 0.17460001 0.19537701 0.16390599 0.195375 0.16390499 0.158392 0.16390499 0.158392\n\t\t 0.16390599 0.195375 0.153212 0.195372 0.153212 0.195372 0.153211 0.158393 0.16390499\n\t\t 0.158392 0.142518 0.158393 0.153211 0.158393 0.153212 0.195372 0.153212 0.195372\n\t\t 0.142518 0.19536901 0.142518 0.158393 0.31361601 0.158391 0.31361601 0.19536801 0.30292201\n\t\t 0.195365 0.30292201 0.195365 0.30292201 0.158391 0.31361601 0.158391 0.29222801 0.158391\n\t\t 0.30292201 0.158391 0.30292201 0.195365 0.30292201 0.195365 0.29222801 0.195363 0.29222801\n\t\t 0.158391 0.29222801 0.158391 0.29222801 0.195363 0.28153399 0.195362 0.28153399 0.195362\n\t\t 0.281535 0.158391 0.29222801 0.158391 0.270841 0.158391 0.281535 0.158391 0.28153399\n\t\t 0.195362 0.28153399 0.195362 0.27083999 0.195362 0.270841 0.158391 0.26014701 0.158391\n\t\t 0.270841 0.158391 0.27083999 0.195362 0.27083999 0.195362 0.26014599 0.195363 0.26014701\n\t\t 0.158391 0.72091699 0.51147902 0.72211099 0.50582999 0.73100698 0.50860798 0.73100698\n\t\t 0.50860798 0.72864199 0.51384598 0.72091699 0.51147902 0.72864199 0.51384598 0.73100698\n\t\t 0.50860798 0.73916698 0.51310098 0.73916698 0.51310098 0.73563302 0.51766098 0.72864199\n\t\t 0.51384598 0.73563302 0.51766098 0.73916698 0.51310098 0.74589902 0.51953 0.74589902\n\t\t 0.51953 0.741337 0.52299798 0.73563302 0.51766098 0.741337 0.52299798 0.74589902\n\t\t 0.51953 0.75073999 0.52747899 0.75073999 0.52747899 0.74537802 0.52948397 0.741337\n\t\t 0.52299798 0.74537802 0.52948397 0.75073999 0.52747899 0.75276101 0.53656697 0.75276101\n\t\t 0.53656697 0.74709702 0.53675801 0.74537802 0.52948397 0.74709702 0.53675801 0.75276101\n\t\t 0.53656697 0.75170702 0.54583299 0.75170702 0.54583299 0.74635297 0.54404902 0.74709702\n\t\t 0.53675801 0.74635297 0.54404902 0.75170702 0.54583299 0.74724102 0.55404699 0.74724102\n\t\t 0.55404699 0.74291301 0.55039901 0.74635297 0.54404902 0.72211099 0.50582999 0.72091699\n\t\t 0.51147902 0.71280199 0.51075602 0.71280199 0.51075602 0.71282202 0.50501502 0.72211099\n\t\t 0.50582999 0.71282202 0.50501502 0.71280199 0.51075602 0.70467103 0.51147199 0.70467103\n\t\t 0.51147199 0.70353299 0.505813 0.71282202 0.50501502 0.70353299 0.505813 0.70467103\n\t\t 0.51147199 0.69688898 0.51379502 0.69688898 0.51379502 0.69461298 0.50852102 0.70353299\n\t\t 0.505813 0.69461298 0.50852102 0.69688898 0.51379502 0.68977702 0.51751101 0.68977702\n\t\t 0.51751101 0.68636602 0.51285601 0.69461298 0.50852102 0.68636602 0.51285601 0.68977702\n\t\t 0.51751101 0.68384999 0.52270699 0.68384999 0.52270699 0.67942399 0.51906002 0.68636602\n\t\t 0.51285601 0.67942399 0.51906002 0.68384999 0.52270699 0.67947 0.52904803 0.67947\n\t\t 0.52904803 0.67420697 0.52676898 0.67942399 0.51906002 0.67420697 0.52676898 0.67947\n\t\t 0.52904803 0.67729801 0.53624803 0.67729801 0.53624803 0.67164397 0.535721 0.67420697\n\t\t 0.52676898 0.67164397 0.535721 0.67729801 0.53624803 0.67754799 0.54359502 0.67754799\n\t\t 0.54359502 0.67208201 0.54503798 0.67164397 0.535721 0.67208201 0.54503798 0.67754799\n\t\t 0.54359502 0.68055803 0.55016398 0.68055803 0.55016398 0.676 0.55352801 0.67208201\n\t\t 0.54503798 0.73100698 0.50860798 0.72211099 0.50582999 0.72320199 0.50120002 0.72320199\n\t\t 0.50120002 0.73311698 0.50438797 0.73100698 0.50860798 0.73100698 0.50860798 0.73311698\n\t\t 0.50438797 0.74223697 0.50952899 0.74223697 0.50952899 0.73916698 0.51310098 0.73100698\n\t\t 0.50860798 0.74589902 0.51953 0.73916698 0.51310098 0.74223697 0.50952899 0.74223697\n\t\t 0.50952899 0.749744 0.516927 0.74589902 0.51953 0.74589902 0.51953 0.749744 0.516927\n\t\t 0.75509501 0.526088 0.75509501 0.526088 0.75073999 0.52747899 0.74589902 0.51953\n\t\t 0.75276101 0.53656697 0.75073999 0.52747899 0.75509501 0.526088 0.75509501 0.526088\n\t\t 0.75724798 0.53653598 0.75276101 0.53656697 0.75276101 0.53656697 0.75724798 0.53653598\n\t\t 0.75593197 0.547135 0.75593197 0.547135 0.75170702 0.54583299 0.75276101 0.53656697\n\t\t 0.74724102 0.55404699 0.75170702 0.54583299 0.75593197 0.547135 0.75593197 0.547135;\n\tsetAttr \".uvst[0].uvsp[14500:14749]\" 0.751118 0.55654901 0.74724102 0.55404699\n\t\t 0.71286201 0.50029099 0.72320199 0.50120002 0.72211099 0.50582999 0.72211099 0.50582999\n\t\t 0.71282202 0.50501502 0.71286201 0.50029099 0.70252597 0.50116301 0.71286201 0.50029099\n\t\t 0.71282202 0.50501502 0.71282202 0.50501502 0.70353299 0.505813 0.70252597 0.50116301\n\t\t 0.70252597 0.50116301 0.70353299 0.505813 0.69461298 0.50852102 0.69461298 0.50852102\n\t\t 0.69260103 0.50425202 0.70252597 0.50116301 0.683397 0.50918198 0.69260103 0.50425202\n\t\t 0.69461298 0.50852102 0.69461298 0.50852102 0.68636602 0.51285601 0.683397 0.50918198\n\t\t 0.683397 0.50918198 0.68636602 0.51285601 0.67942399 0.51906002 0.67942399 0.51906002\n\t\t 0.67566401 0.516298 0.683397 0.50918198 0.66989201 0.52516699 0.67566401 0.516298\n\t\t 0.67942399 0.51906002 0.67942399 0.51906002 0.67420697 0.52676898 0.66989201 0.52516699\n\t\t 0.66989201 0.52516699 0.67420697 0.52676898 0.67164397 0.535721 0.67164397 0.535721\n\t\t 0.66713798 0.53545201 0.66989201 0.52516699 0.66777098 0.54610401 0.66713798 0.53545201\n\t\t 0.67164397 0.535721 0.67164397 0.535721 0.67208201 0.54503798 0.66777098 0.54610401\n\t\t 0.66777098 0.54610401 0.67208201 0.54503798 0.676 0.55352801 0.676 0.55352801 0.67197198\n\t\t 0.55580401 0.66777098 0.54610401 0.086200997 0.26074699 0.078722 0.260748 0.078675002\n\t\t 0.233715 0.078675002 0.233715 0.086254001 0.233716 0.086200997 0.26074699 0.078675002\n\t\t 0.233715 0.078722 0.260748 0.071147002 0.26075 0.071147002 0.26075 0.071096003 0.233715\n\t\t 0.078675002 0.233715 0.063516997 0.233715 0.071096003 0.233715 0.071147002 0.26075\n\t\t 0.071147002 0.26075 0.063564003 0.26075301 0.063516997 0.233715 0.063516997 0.233715\n\t\t 0.063564003 0.26075301 0.055989999 0.260755 0.055989999 0.260755 0.055938002 0.233716\n\t\t 0.063516997 0.233715 0.048358999 0.233716 0.055938002 0.233716 0.055989999 0.260755\n\t\t 0.055989999 0.260755 0.048407 0.26075599 0.048358999 0.233716 0.048358999 0.233716\n\t\t 0.048407 0.26075599 0.040833 0.260757 0.040833 0.260757 0.040780999 0.233716 0.048358999\n\t\t 0.233716 0.033202 0.233716 0.040780999 0.233716 0.040833 0.260757 0.040833 0.260757\n\t\t 0.03325 0.260757 0.033202 0.233716 0.033202 0.233716 0.03325 0.260757 0.025676001\n\t\t 0.26075599 0.025676001 0.26075599 0.025622999 0.233716 0.033202 0.233716 0.018044\n\t\t 0.233716 0.025622999 0.233716 0.025676001 0.26075599 0.025676001 0.26075599 0.018092999\n\t\t 0.260755 0.018044 0.233716 0.018044 0.233716 0.018092999 0.260755 0.010518 0.26075301\n\t\t 0.010518 0.26075301 0.010465 0.23371699 0.018044 0.233716 0.0028860001 0.23371699\n\t\t 0.010465 0.23371699 0.010518 0.26075301 0.010518 0.26075301 0.002935 0.26075101 0.0028860001\n\t\t 0.23371699 0.124148 0.233716 0.1241 0.26075 0.116621 0.260748 0.116621 0.260748 0.116568\n\t\t 0.233716 0.124148 0.233716 0.10899 0.233716 0.116568 0.233716 0.116621 0.260748 0.116621\n\t\t 0.260748 0.109038 0.26074699 0.10899 0.233716 0.10899 0.233716 0.109038 0.26074699\n\t\t 0.101463 0.260746 0.101463 0.260746 0.101411 0.233716 0.10899 0.233716 0.093832001\n\t\t 0.233716 0.101411 0.233716 0.101463 0.260746 0.101463 0.260746 0.093878999 0.260746\n\t\t 0.093832001 0.233716 0.086254001 0.233716 0.093832001 0.233716 0.093878999 0.260746\n\t\t 0.093878999 0.260746 0.086200997 0.26074699 0.086254001 0.233716 0.79816902 0.86414897\n\t\t 0.80095899 0.86128199 0.80590099 0.86525398 0.80590099 0.86525398 0.80371797 0.86870098\n\t\t 0.79816902 0.86414897 0.80095899 0.86128199 0.79816902 0.86414897 0.79351097 0.858697\n\t\t 0.79351097 0.858697 0.79683799 0.85644001 0.80095899 0.86128199 0.79683799 0.85644001\n\t\t 0.79351097 0.858697 0.79014999 0.85237402 0.79014999 0.85237402 0.79385501 0.85084403\n\t\t 0.79683799 0.85644001 0.79385501 0.85084403 0.79014999 0.85237402 0.788073 0.84554398\n\t\t 0.788073 0.84554398 0.79197103 0.84480399 0.79385501 0.85084403 0.79197103 0.84480399\n\t\t 0.788073 0.84554398 0.787287 0.838471 0.787287 0.838471 0.79131299 0.83866203 0.79197103\n\t\t 0.84480399 0.79131299 0.83866203 0.787287 0.838471 0.78841299 0.83142 0.78841299\n\t\t 0.83142 0.79214501 0.83287799 0.79131299 0.83866203 0.79214501 0.83287799 0.78841299\n\t\t 0.83142 0.79218698 0.82534802 0.79218698 0.82534802 0.79512101 0.82812101 0.79214501\n\t\t 0.83287799 0.80371797 0.86870098 0.80590099 0.86525398 0.81174397 0.86798501 0.81174397\n\t\t 0.86798501 0.81025898 0.87162697 0.80371797 0.86870098 0.81025898 0.87162697 0.81174397\n\t\t 0.86798501 0.81792599 0.870094 0.81792599 0.870094 0.81701499 0.873959 0.81025898\n\t\t 0.87162697 0.81701499 0.873959 0.81792599 0.870094 0.82415301 0.87117201 0.82415301\n\t\t 0.87117201 0.82405102 0.87519997 0.81701499 0.873959 0.82405102 0.87519997 0.82415301\n\t\t 0.87117201 0.83018798 0.87076801 0.83018798 0.87076801 0.83116698 0.874681 0.82405102\n\t\t 0.87519997 0.83116698 0.874681 0.83018798 0.87076801 0.835648 0.86855602 0.835648\n\t\t 0.86855602 0.837744 0.87197 0.83116698 0.874681 0.837744 0.87197 0.835648 0.86855602\n\t\t 0.84011698 0.86484802 0.84011698 0.86484802 0.84319502 0.86742097 0.837744 0.87197\n\t\t 0.84319502 0.86742097 0.84011698 0.86484802 0.84302598 0.85989201 0.84302598 0.85989201\n\t\t 0.84676498 0.861292 0.84319502 0.86742097 0.84676498 0.861292 0.84302598 0.85989201\n\t\t 0.84415698 0.85431898 0.84415698 0.85431898 0.84815598 0.85432899 0.84676498 0.861292\n\t\t 0.84815598 0.85432899 0.84415698 0.85431898 0.84314001 0.84879899 0.84314001 0.84879899\n\t\t 0.84687001 0.84732699 0.84815598 0.85432899 0.84676498 0.861292 0.84815598 0.85432899;\n\tsetAttr \".uvst[0].uvsp[14750:14999]\" 0.85058898 0.85441202 0.85058898 0.85441202\n\t\t 0.84815598 0.85432899 0.84687001 0.84732699 0.85058898 0.85441202 0.849069 0.86213303\n\t\t 0.84676498 0.861292 0.837744 0.87197 0.84319502 0.86742097 0.84514701 0.86895198\n\t\t 0.84514701 0.86895198 0.84319502 0.86742097 0.84676498 0.861292 0.84676498 0.861292\n\t\t 0.849069 0.86213303 0.84514701 0.86895198 0.84514701 0.86895198 0.83918101 0.87405598\n\t\t 0.837744 0.87197 0.84687001 0.84732699 0.84936303 0.84663999 0.85058898 0.85441202\n\t\t 0.83199799 0.87716597 0.83116698 0.874681 0.837744 0.87197 0.837744 0.87197 0.83918101\n\t\t 0.87405598 0.83199799 0.87716597 0.82405102 0.87519997 0.83116698 0.874681 0.83199799\n\t\t 0.87716597 0.83199799 0.87716597 0.824242 0.87789702 0.82405102 0.87519997 0.82405102\n\t\t 0.87519997 0.824242 0.87789702 0.81665099 0.87635899 0.81665099 0.87635899 0.81701499\n\t\t 0.873959 0.82405102 0.87519997 0.81025898 0.87162697 0.81701499 0.873959 0.81665099\n\t\t 0.87635899 0.81665099 0.87635899 0.80937099 0.87378597 0.81025898 0.87162697 0.80371797\n\t\t 0.86870098 0.81025898 0.87162697 0.80937099 0.87378597 0.80937099 0.87378597 0.80208498\n\t\t 0.87122297 0.80371797 0.86870098 0.79816902 0.86414897 0.80371797 0.86870098 0.80208498\n\t\t 0.87122297 0.80208498 0.87122297 0.79634202 0.86602497 0.79816902 0.86414897 0.79816902\n\t\t 0.86414897 0.79634202 0.86602497 0.791291 0.860156 0.791291 0.860156 0.79351097 0.858697\n\t\t 0.79816902 0.86414897 0.79014999 0.85237402 0.79351097 0.858697 0.791291 0.860156\n\t\t 0.791291 0.860156 0.787673 0.85330701 0.79014999 0.85237402 0.79014999 0.85237402\n\t\t 0.787673 0.85330701 0.78560603 0.84582698 0.78560603 0.84582698 0.788073 0.84554398\n\t\t 0.79014999 0.85237402 0.787287 0.838471 0.788073 0.84554398 0.78560603 0.84582698\n\t\t 0.78560603 0.84582698 0.78462601 0.83809799 0.787287 0.838471 0.787287 0.838471 0.78462601\n\t\t 0.83809799 0.78616601 0.83042598 0.78616601 0.83042598 0.78841299 0.83142 0.787287\n\t\t 0.838471 0.79218698 0.82534802 0.78841299 0.83142 0.78616601 0.83042598 0.78616601\n\t\t 0.83042598 0.790106 0.823632 0.79218698 0.82534802 0.070900999 0.20072401 0.062449001\n\t\t 0.20072401 0.062449001 0.157204 0.062449001 0.157204 0.070900999 0.157203 0.070900999\n\t\t 0.20072401 0.070900999 0.20072401 0.070900999 0.157203 0.079352997 0.157204 0.079352997\n\t\t 0.157204 0.079352997 0.20072401 0.070900999 0.20072401 0.087805003 0.20072401 0.079352997\n\t\t 0.20072401 0.079352997 0.157204 0.079352997 0.157204 0.087805003 0.157204 0.087805003\n\t\t 0.20072401 0.087805003 0.20072401 0.087805003 0.157204 0.096257001 0.157204 0.096257001\n\t\t 0.157204 0.096257001 0.20072401 0.087805003 0.20072401 0.104709 0.20072401 0.096257001\n\t\t 0.20072401 0.096257001 0.157204 0.096257001 0.157204 0.104709 0.157204 0.104709 0.20072401\n\t\t 0.104709 0.20072401 0.104709 0.157204 0.113161 0.157204 0.113161 0.157204 0.113161\n\t\t 0.20072401 0.104709 0.20072401 0.121613 0.20072401 0.113161 0.20072401 0.113161 0.157204\n\t\t 0.113161 0.157204 0.121613 0.157204 0.121613 0.20072401 0.121613 0.20072401 0.121613\n\t\t 0.157204 0.13006499 0.157204 0.13006499 0.157204 0.13006499 0.20072301 0.121613 0.20072401\n\t\t 0.13851801 0.20072301 0.13006499 0.20072301 0.13006499 0.157204 0.13006499 0.157204\n\t\t 0.13851701 0.157203 0.13851801 0.20072301 0.0032840001 0.20072401 0.0032840001 0.157204\n\t\t 0.011737 0.157204 0.011737 0.157204 0.011737 0.20072401 0.0032840001 0.20072401 0.020189\n\t\t 0.20072401 0.011737 0.20072401 0.011737 0.157204 0.011737 0.157204 0.020189 0.157204\n\t\t 0.020189 0.20072401 0.020189 0.20072401 0.020189 0.157204 0.028641 0.157204 0.028641\n\t\t 0.157204 0.028641 0.20072401 0.020189 0.20072401 0.037092999 0.20072401 0.028641\n\t\t 0.20072401 0.028641 0.157204 0.028641 0.157204 0.037092999 0.157204 0.037092999 0.20072401\n\t\t 0.037092999 0.20072401 0.037092999 0.157204 0.045545001 0.157204 0.045545001 0.157204\n\t\t 0.045545001 0.20072401 0.037092999 0.20072401 0.053996999 0.20072401 0.045545001\n\t\t 0.20072401 0.045545001 0.157204 0.045545001 0.157204 0.053996999 0.157204 0.053996999\n\t\t 0.20072401 0.062449001 0.20072401 0.053996999 0.20072401 0.053996999 0.157204 0.053996999\n\t\t 0.157204 0.062449001 0.157204 0.062449001 0.20072401 0.80208403 0.85816002 0.80501598\n\t\t 0.85614097 0.80907398 0.86015201 0.80907398 0.86015201 0.80713201 0.86314797 0.80208403\n\t\t 0.85816002 0.80501598 0.85614097 0.80208403 0.85816002 0.799227 0.85166299 0.799227\n\t\t 0.85166299 0.802719 0.85091799 0.80501598 0.85614097 0.802719 0.85091799 0.799227\n\t\t 0.85166299 0.79918402 0.84456599 0.79918402 0.84456599 0.80268502 0.84521198 0.802719\n\t\t 0.85091799 0.80268502 0.84521198 0.79918402 0.84456599 0.80175799 0.83795202 0.80175799\n\t\t 0.83795202 0.80475402 0.83989501 0.80268502 0.84521198 0.80475402 0.83989501 0.80175799\n\t\t 0.83795202 0.80674702 0.83290398 0.80674702 0.83290398 0.80876499 0.83583599 0.80475402\n\t\t 0.83989501 0.80876499 0.83583599 0.80674702 0.83290398 0.81324297 0.83004701 0.81324297\n\t\t 0.83004701 0.81398797 0.83353901 0.80876499 0.83583599 0.81398797 0.83353901 0.81324297\n\t\t 0.83004701 0.82033998 0.83000499 0.82033998 0.83000499 0.81969398 0.83350599 0.81398797\n\t\t 0.83353901 0.81969398 0.83350599 0.82033998 0.83000499 0.82695401 0.832578 0.82695401\n\t\t 0.832578 0.82501203 0.83557397 0.81969398 0.83350599 0.82501203 0.83557397 0.82695401\n\t\t 0.832578 0.832003 0.83756697 0.832003 0.83756697 0.82906997 0.83958501 0.82501203\n\t\t 0.83557397 0.82906997 0.83958501 0.832003 0.83756697 0.83485901 0.84406298 0.83485901\n\t\t 0.84406298 0.83136702 0.84480798 0.82906997 0.83958501;\n\tsetAttr \".uvst[0].uvsp[15000:15249]\" 0.83136702 0.84480798 0.83485901 0.84406298\n\t\t 0.83490199 0.85115999 0.83490199 0.85115999 0.83140099 0.85051399 0.83136702 0.84480798\n\t\t 0.83140099 0.85051399 0.83490199 0.85115999 0.83232802 0.85777402 0.83232802 0.85777402\n\t\t 0.82933199 0.85583198 0.83140099 0.85051399 0.82933199 0.85583198 0.83232802 0.85777402\n\t\t 0.82733899 0.862822 0.82733899 0.862822 0.82532102 0.85988998 0.82933199 0.85583198\n\t\t 0.82532102 0.85988998 0.82733899 0.862822 0.82084298 0.86567998 0.82084298 0.86567998\n\t\t 0.82009798 0.86218703 0.82532102 0.85988998 0.82009798 0.86218703 0.82084298 0.86567998\n\t\t 0.81374598 0.865722 0.81374598 0.865722 0.81439197 0.862221 0.82009798 0.86218703\n\t\t 0.81439197 0.862221 0.81374598 0.865722 0.80713201 0.86314797 0.80713201 0.86314797\n\t\t 0.80907398 0.86015201 0.81439197 0.862221 0.266267 0.217169 0.274719 0.217169 0.274719\n\t\t 0.22095101 0.274719 0.22095101 0.266267 0.22095001 0.266267 0.217169 0.266267 0.217169\n\t\t 0.266267 0.22095001 0.25781301 0.22095001 0.25781301 0.22095001 0.257817 0.217169\n\t\t 0.266267 0.217169 0.249369 0.217149 0.257817 0.217169 0.25781301 0.22095001 0.25781301\n\t\t 0.22095001 0.249357 0.22093 0.249369 0.217149 0.249369 0.217149 0.249357 0.22093\n\t\t 0.24090301 0.220899 0.24090301 0.220899 0.240918 0.217117 0.249369 0.217149 0.232465\n\t\t 0.217085 0.240918 0.217117 0.24090301 0.220899 0.24090301 0.220899 0.23245201 0.22086599\n\t\t 0.232465 0.217085 0.232465 0.217085 0.23245201 0.22086599 0.224004 0.220844 0.224004\n\t\t 0.220844 0.22400901 0.21706299 0.232465 0.217085 0.215554 0.217062 0.22400901 0.21706299\n\t\t 0.224004 0.220844 0.224004 0.220844 0.215554 0.220844 0.215554 0.217062 0.215554\n\t\t 0.217062 0.215554 0.220844 0.207102 0.220844 0.207102 0.220844 0.207102 0.217062\n\t\t 0.215554 0.217062 0.19865 0.217062 0.207102 0.217062 0.207102 0.220844 0.207102 0.220844\n\t\t 0.19865 0.220844 0.19865 0.217062 0.33383799 0.216473 0.33391899 0.220254 0.325468\n\t\t 0.220434 0.325468 0.220434 0.325389 0.216653 0.33383799 0.216473 0.31694099 0.216828\n\t\t 0.325389 0.216653 0.325468 0.220434 0.325468 0.220434 0.31701499 0.22060899 0.31694099\n\t\t 0.216828 0.31694099 0.216828 0.31701499 0.22060899 0.308557 0.22076499 0.308557 0.22076499\n\t\t 0.30849701 0.21698301 0.31694099 0.216828 0.300055 0.21710201 0.30849701 0.21698301\n\t\t 0.308557 0.22076499 0.308557 0.22076499 0.30009601 0.220883 0.300055 0.21710201 0.300055\n\t\t 0.21710201 0.30009601 0.220883 0.29163101 0.22095001 0.29163101 0.22095001 0.29161701\n\t\t 0.217169 0.300055 0.21710201 0.283171 0.217169 0.29161701 0.217169 0.29163101 0.22095001\n\t\t 0.29163101 0.22095001 0.283171 0.22095001 0.283171 0.217169 0.274719 0.217169 0.283171\n\t\t 0.217169 0.283171 0.22095001 0.283171 0.22095001 0.274719 0.22095101 0.274719 0.217169\n\t\t 0.27306801 0.203343 0.28235701 0.203343 0.28235701 0.20919301 0.28235701 0.20919301\n\t\t 0.27306801 0.20919301 0.27306801 0.203343 0.27306801 0.203343 0.27306801 0.20919301\n\t\t 0.26377901 0.20919199 0.26377901 0.20919199 0.26377901 0.203344 0.27306801 0.203343\n\t\t 0.254491 0.203339 0.26377901 0.203344 0.26377901 0.20919199 0.26377901 0.20919199\n\t\t 0.254491 0.209197 0.254491 0.203339 0.254491 0.203339 0.254491 0.209197 0.245203\n\t\t 0.209189 0.245203 0.209189 0.245203 0.203346 0.254491 0.203339 0.23591299 0.20333999\n\t\t 0.245203 0.203346 0.245203 0.209189 0.245203 0.209189 0.23591299 0.209195 0.23591299\n\t\t 0.20333999 0.23591299 0.20333999 0.23591299 0.209195 0.22661901 0.20918401 0.22661901\n\t\t 0.20918401 0.22661901 0.20335101 0.23591299 0.20333999 0.217307 0.203357 0.22661901\n\t\t 0.20335101 0.22661901 0.20918401 0.22661901 0.20918401 0.217307 0.209179 0.217307\n\t\t 0.203357 0.217307 0.203357 0.217307 0.209179 0.20793501 0.209168 0.20793501 0.209168\n\t\t 0.20793401 0.20336799 0.217307 0.203357 0.198411 0.20324899 0.20793401 0.20336799\n\t\t 0.20793501 0.209168 0.20793501 0.209168 0.198411 0.209287 0.198411 0.20324899 0.34772801\n\t\t 0.203247 0.34772801 0.209282 0.338204 0.209162 0.338204 0.209162 0.338204 0.20336799\n\t\t 0.34772801 0.203247 0.32883099 0.20335101 0.338204 0.20336799 0.338204 0.209162 0.338204\n\t\t 0.209162 0.32883099 0.209181 0.32883099 0.20335101 0.32883099 0.20335101 0.32883099\n\t\t 0.209181 0.31951901 0.20918401 0.31951901 0.20918401 0.31951901 0.20334899 0.32883099\n\t\t 0.20335101 0.31022501 0.20333999 0.31951901 0.20334899 0.31951901 0.20918401 0.31951901\n\t\t 0.20918401 0.31022501 0.209195 0.31022501 0.20333999 0.31022501 0.20333999 0.31022501\n\t\t 0.209195 0.300935 0.20919099 0.300935 0.20919099 0.300935 0.203344 0.31022501 0.20333999\n\t\t 0.291646 0.203343 0.300935 0.203344 0.300935 0.20919099 0.300935 0.20919099 0.291646\n\t\t 0.20919199 0.291646 0.203343 0.28235701 0.203343 0.291646 0.203343 0.291646 0.20919199\n\t\t 0.291646 0.20919199 0.28235701 0.20919301 0.28235701 0.203343 0.20445 0.25670499\n\t\t 0.195998 0.25670499 0.195998 0.24848101 0.195998 0.24848101 0.20445 0.24848101 0.20445\n\t\t 0.25670499 0.20445 0.25670499 0.20445 0.24848101 0.21290199 0.24848101 0.21290199\n\t\t 0.24848101 0.21290199 0.25670499 0.20445 0.25670499 0.22135399 0.25670499 0.21290199\n\t\t 0.25670499 0.21290199 0.24848101 0.21290199 0.24848101 0.22135399 0.24848101 0.22135399\n\t\t 0.25670499 0.22135399 0.25670499 0.22135399 0.24848101 0.22980601 0.24848101 0.22980601\n\t\t 0.24848101;\n\tsetAttr \".uvst[0].uvsp[15250:15499]\" 0.22980601 0.25670499 0.22135399 0.25670499\n\t\t 0.238258 0.25670499 0.22980601 0.25670499 0.22980601 0.24848101 0.22980601 0.24848101\n\t\t 0.238258 0.24848001 0.238258 0.25670499 0.238258 0.25670499 0.238258 0.24848001 0.246711\n\t\t 0.24848001 0.246711 0.24848001 0.246711 0.25670499 0.238258 0.25670499 0.255162 0.25670499\n\t\t 0.246711 0.25670499 0.246711 0.24848001 0.246711 0.24848001 0.255162 0.24848001 0.255162\n\t\t 0.25670499 0.255162 0.25670499 0.255162 0.24848001 0.26361501 0.24848101 0.26361501\n\t\t 0.24848101 0.26361501 0.25670499 0.255162 0.25670499 0.27206701 0.25670499 0.26361501\n\t\t 0.25670499 0.26361501 0.24848101 0.26361501 0.24848101 0.27206701 0.24848101 0.27206701\n\t\t 0.25670499 0.136833 0.25670499 0.136833 0.24848101 0.145285 0.24848101 0.145285 0.24848101\n\t\t 0.145285 0.25670499 0.136833 0.25670499 0.15373801 0.25670499 0.145285 0.25670499\n\t\t 0.145285 0.24848101 0.145285 0.24848101 0.15373699 0.24848001 0.15373801 0.25670499\n\t\t 0.15373801 0.25670499 0.15373699 0.24848001 0.16219001 0.24848001 0.16219001 0.24848001\n\t\t 0.16219001 0.25670499 0.15373801 0.25670499 0.170642 0.25670499 0.16219001 0.25670499\n\t\t 0.16219001 0.24848001 0.16219001 0.24848001 0.170642 0.24848101 0.170642 0.25670499\n\t\t 0.170642 0.25670499 0.170642 0.24848101 0.179094 0.24848101 0.179094 0.24848101 0.179094\n\t\t 0.25670499 0.170642 0.25670499 0.187546 0.25670499 0.179094 0.25670499 0.179094 0.24848101\n\t\t 0.179094 0.24848101 0.187546 0.24848101 0.187546 0.25670499 0.195998 0.25670499 0.187546\n\t\t 0.25670499 0.187546 0.24848101 0.187546 0.24848101 0.195998 0.24848101 0.195998 0.25670499\n\t\t 0.77898097 0.362214 0.76993102 0.362214 0.76993102 0.36104801 0.76993102 0.36104801\n\t\t 0.77898097 0.36104801 0.77898097 0.362214 0.77898097 0.362214 0.77898097 0.36104801\n\t\t 0.78803098 0.36104801 0.78803098 0.36104801 0.78803098 0.362214 0.77898097 0.362214\n\t\t 0.79708201 0.36221701 0.78803098 0.362214 0.78803098 0.36104801 0.78803098 0.36104801\n\t\t 0.79708201 0.36104599 0.79708201 0.36221701 0.79708201 0.36221701 0.79708201 0.36104599\n\t\t 0.80613297 0.36105001 0.80613297 0.36105001 0.80613297 0.36221299 0.79708201 0.36221701\n\t\t 0.81518799 0.362216 0.80613297 0.36221299 0.80613297 0.36105001 0.80613297 0.36105001\n\t\t 0.81518799 0.361047 0.81518799 0.362216 0.81518799 0.362216 0.81518799 0.361047 0.82424903\n\t\t 0.36104801 0.82424903 0.36104801 0.82424903 0.36221501 0.81518799 0.362216 0.83332402\n\t\t 0.36221501 0.82424903 0.36221501 0.82424903 0.36104801 0.82424903 0.36104801 0.83332402\n\t\t 0.361047 0.83332402 0.36221501 0.83332402 0.36221501 0.83332402 0.361047 0.84243\n\t\t 0.361047 0.84243 0.361047 0.84243 0.362216 0.83332402 0.36221501 0.85159802 0.36221701\n\t\t 0.84243 0.362216 0.84243 0.361047 0.84243 0.361047 0.85159802 0.36104599 0.85159802\n\t\t 0.36221701 0.71552801 0.361038 0.71552801 0.36222401 0.706361 0.36222401 0.706361\n\t\t 0.36222401 0.706361 0.36103901 0.71552801 0.361038 0.724635 0.36220899 0.71552801\n\t\t 0.36222401 0.71552801 0.361038 0.71552801 0.361038 0.724635 0.36105299 0.724635 0.36220899\n\t\t 0.724635 0.36220899 0.724635 0.36105299 0.733711 0.36105299 0.733711 0.36105299 0.733711\n\t\t 0.36220899 0.724635 0.36220899 0.742773 0.362216 0.733711 0.36220899 0.733711 0.36105299\n\t\t 0.733711 0.36105299 0.742773 0.361047 0.742773 0.362216 0.742773 0.362216 0.742773\n\t\t 0.361047 0.75182801 0.361049 0.75182801 0.361049 0.75182801 0.362214 0.742773 0.362216\n\t\t 0.76087999 0.362214 0.75182801 0.362214 0.75182801 0.361049 0.75182801 0.361049 0.76087999\n\t\t 0.36104801 0.76087999 0.362214 0.76993102 0.362214 0.76087999 0.362214 0.76087999\n\t\t 0.36104801 0.76087999 0.36104801 0.76993102 0.36104801 0.76993102 0.362214 0.28235701\n\t\t 0.19931801 0.28235701 0.203343 0.27306801 0.203343 0.27306801 0.203343 0.27306801\n\t\t 0.19930699 0.28235701 0.19931801 0.27306801 0.19930699 0.27306801 0.203343 0.26377901\n\t\t 0.203344 0.26377901 0.203344 0.26378 0.19931901 0.27306801 0.19930699 0.26378 0.19931901\n\t\t 0.26377901 0.203344 0.254491 0.203339 0.254491 0.203339 0.254491 0.199301 0.26378\n\t\t 0.19931901 0.254491 0.199301 0.254491 0.203339 0.245203 0.203346 0.245203 0.203346\n\t\t 0.245203 0.199322 0.254491 0.199301 0.245203 0.199322 0.245203 0.203346 0.23591299\n\t\t 0.20333999 0.23591299 0.20333999 0.23591501 0.199304 0.245203 0.199322 0.23591501\n\t\t 0.199304 0.23591299 0.20333999 0.22661901 0.20335101 0.22661901 0.20335101 0.226633\n\t\t 0.19933701 0.23591501 0.199304 0.226633 0.19933701 0.22661901 0.20335101 0.217307\n\t\t 0.203357 0.217307 0.203357 0.217373 0.199349 0.226633 0.19933701 0.217373 0.199349\n\t\t 0.217307 0.203357 0.20793401 0.20336799 0.20793401 0.20336799 0.208213 0.199403 0.217373\n\t\t 0.199349 0.208213 0.199403 0.20793401 0.20336799 0.198411 0.20324899 0.198411 0.20324899\n\t\t 0.199434 0.19901399 0.208213 0.199403 0.34670499 0.19901399 0.34772801 0.203247 0.338204\n\t\t 0.20336799 0.338204 0.20336799 0.337928 0.199405 0.34670499 0.19901399 0.337928 0.199405\n\t\t 0.338204 0.20336799 0.32883099 0.20335101 0.32883099 0.20335101 0.328767 0.199342\n\t\t 0.337928 0.199405 0.328767 0.199342 0.32883099 0.20335101 0.31951901 0.20334899 0.31951901\n\t\t 0.20334899 0.31950599 0.199333 0.328767 0.199342 0.31950599 0.199333 0.31951901 0.20334899\n\t\t 0.31022501 0.20333999 0.31022501 0.20333999 0.310222 0.199303 0.31950599 0.199333\n\t\t 0.310222 0.199303 0.31022501 0.20333999;\n\tsetAttr \".uvst[0].uvsp[15500:15749]\" 0.300935 0.203344 0.300935 0.203344 0.300933\n\t\t 0.19932 0.310222 0.199303 0.300933 0.19932 0.300935 0.203344 0.291646 0.203343 0.291646\n\t\t 0.203343 0.291646 0.19930699 0.300933 0.19932 0.291646 0.19930699 0.291646 0.203343\n\t\t 0.28235701 0.203343 0.28235701 0.203343 0.28235701 0.19931801 0.291646 0.19930699\n\t\t 0.26378 0.21321601 0.26377901 0.20919199 0.27306801 0.20919301 0.27306801 0.20919301\n\t\t 0.27306801 0.213229 0.26378 0.21321601 0.27306801 0.213229 0.27306801 0.20919301\n\t\t 0.28235701 0.20919301 0.28235701 0.20919301 0.28235701 0.21321701 0.27306801 0.213229\n\t\t 0.28235701 0.21321701 0.28235701 0.20919301 0.291646 0.20919199 0.291646 0.20919199\n\t\t 0.291646 0.213228 0.28235701 0.21321701 0.291646 0.213228 0.291646 0.20919199 0.300935\n\t\t 0.20919099 0.300935 0.20919099 0.30093399 0.21321601 0.291646 0.213228 0.30093399\n\t\t 0.21321601 0.300935 0.20919099 0.31022501 0.209195 0.31022501 0.209195 0.31022301\n\t\t 0.213232 0.30093399 0.21321601 0.31022301 0.213232 0.31022501 0.209195 0.31951901\n\t\t 0.20918401 0.31951901 0.20918401 0.319507 0.2132 0.31022301 0.213232 0.319507 0.2132\n\t\t 0.31951901 0.20918401 0.32883099 0.209181 0.32883099 0.209181 0.32876799 0.21319\n\t\t 0.319507 0.2132 0.32876799 0.21319 0.32883099 0.209181 0.338204 0.209162 0.338204\n\t\t 0.209162 0.337928 0.21312501 0.32876799 0.21319 0.337928 0.21312501 0.338204 0.209162\n\t\t 0.34772801 0.209282 0.34772801 0.209282 0.346706 0.213516 0.337928 0.21312501 0.199434\n\t\t 0.213523 0.198411 0.209287 0.20793501 0.209168 0.20793501 0.209168 0.208213 0.21313401\n\t\t 0.199434 0.213523 0.208213 0.21313401 0.20793501 0.209168 0.217307 0.209179 0.217307\n\t\t 0.209179 0.217374 0.21318699 0.208213 0.21313401 0.217374 0.21318699 0.217307 0.209179\n\t\t 0.22661901 0.20918401 0.22661901 0.20918401 0.226633 0.213199 0.217374 0.21318699\n\t\t 0.226633 0.213199 0.22661901 0.20918401 0.23591299 0.209195 0.23591299 0.209195 0.23591501\n\t\t 0.213231 0.226633 0.213199 0.23591501 0.213231 0.23591299 0.209195 0.245203 0.209189\n\t\t 0.245203 0.209189 0.245203 0.213213 0.23591501 0.213231 0.245203 0.213213 0.245203\n\t\t 0.209189 0.254491 0.209197 0.254491 0.209197 0.254491 0.21323501 0.245203 0.213213\n\t\t 0.254491 0.21323501 0.254491 0.209197 0.26377901 0.20919199 0.26377901 0.20919199\n\t\t 0.26378 0.21321601 0.254491 0.21323501 0.76993197 0.36443999 0.76993102 0.362214\n\t\t 0.77898097 0.362214 0.77898097 0.362214 0.77898097 0.364443 0.76993197 0.36443999\n\t\t 0.77898097 0.364443 0.77898097 0.362214 0.78803098 0.362214 0.78803098 0.362214 0.78802902\n\t\t 0.36443901 0.77898097 0.364443 0.78802902 0.36443901 0.78803098 0.362214 0.79708201\n\t\t 0.36221701 0.79708201 0.36221701 0.797077 0.36444801 0.78802902 0.36443901 0.797077\n\t\t 0.36444801 0.79708201 0.36221701 0.80613297 0.36221299 0.80613297 0.36221299 0.80612302\n\t\t 0.364436 0.797077 0.36444801 0.80612302 0.364436 0.80613297 0.36221299 0.81518799\n\t\t 0.362216 0.81518799 0.362216 0.81516498 0.36444601 0.80612302 0.364436 0.81516498\n\t\t 0.36444601 0.81518799 0.362216 0.82424903 0.36221501 0.82424903 0.36221501 0.82419801\n\t\t 0.364438 0.81516498 0.36444601 0.82419801 0.364438 0.82424903 0.36221501 0.83332402\n\t\t 0.36221501 0.83332402 0.36221501 0.83320898 0.36443999 0.82419801 0.364438 0.83320898\n\t\t 0.36443999 0.83332402 0.36221501 0.84243 0.362216 0.84243 0.362216 0.842161 0.364429\n\t\t 0.83320898 0.36443999 0.842161 0.364429 0.84243 0.362216 0.85159802 0.36221701 0.85159802\n\t\t 0.36221701 0.85089397 0.36449501 0.842161 0.364429 0.707066 0.364508 0.706361 0.36222401\n\t\t 0.71552801 0.36222401 0.71552801 0.36222401 0.71579897 0.36444199 0.707066 0.364508\n\t\t 0.71579897 0.36444199 0.71552801 0.36222401 0.724635 0.36220899 0.724635 0.36220899\n\t\t 0.72475201 0.36443099 0.71579897 0.36444199 0.72475201 0.36443099 0.724635 0.36220899\n\t\t 0.733711 0.36220899 0.733711 0.36220899 0.73376203 0.36442801 0.72475201 0.36443099\n\t\t 0.73376203 0.36442801 0.733711 0.36220899 0.742773 0.362216 0.742773 0.362216 0.74279499\n\t\t 0.364445 0.73376203 0.36442801 0.74279499 0.364445 0.742773 0.362216 0.75182801 0.362214\n\t\t 0.75182801 0.362214 0.75183803 0.36443901 0.74279499 0.364445 0.75183803 0.36443901\n\t\t 0.75182801 0.362214 0.76087999 0.362214 0.76087999 0.362214 0.76088399 0.364443 0.75183803\n\t\t 0.36443901 0.76088399 0.364443 0.76087999 0.362214 0.76993102 0.362214 0.76993102\n\t\t 0.362214 0.76993197 0.36443999 0.76088399 0.364443 0.78802902 0.358823 0.78803098\n\t\t 0.36104801 0.77898097 0.36104801 0.77898097 0.36104801 0.77898097 0.35881901 0.78802902\n\t\t 0.358823 0.77898097 0.35881901 0.77898097 0.36104801 0.76993102 0.36104801 0.76993102\n\t\t 0.36104801 0.76993197 0.358823 0.77898097 0.35881901 0.76993197 0.358823 0.76993102\n\t\t 0.36104801 0.76087999 0.36104801 0.76087999 0.36104801 0.76088399 0.35881999 0.76993197\n\t\t 0.358823 0.76088399 0.35881999 0.76087999 0.36104801 0.75182801 0.361049 0.75182801\n\t\t 0.361049 0.75183803 0.35882401 0.76088399 0.35881999 0.75183803 0.35882401 0.75182801\n\t\t 0.361049 0.742773 0.361047 0.742773 0.361047 0.74279499 0.35881799 0.75183803 0.35882401\n\t\t 0.74279499 0.35881799 0.742773 0.361047 0.733711 0.36105299 0.733711 0.36105299 0.73376203\n\t\t 0.35883501 0.74279499 0.35881799 0.73376203 0.35883501 0.733711 0.36105299 0.724635\n\t\t 0.36105299 0.724635 0.36105299 0.72475201 0.35883099 0.73376203 0.35883501;\n\tsetAttr \".uvst[0].uvsp[15750:15999]\" 0.72475201 0.35883099 0.724635 0.36105299\n\t\t 0.71552801 0.361038 0.71552801 0.361038 0.71579897 0.358821 0.72475201 0.35883099\n\t\t 0.71579897 0.358821 0.71552801 0.361038 0.706361 0.36103901 0.706361 0.36103901 0.707066\n\t\t 0.35875499 0.71579897 0.358821 0.85089397 0.35876799 0.85159802 0.36104599 0.84243\n\t\t 0.361047 0.84243 0.361047 0.842161 0.358834 0.85089397 0.35876799 0.842161 0.358834\n\t\t 0.84243 0.361047 0.83332402 0.361047 0.83332402 0.361047 0.83320898 0.358823 0.842161\n\t\t 0.358834 0.83320898 0.358823 0.83332402 0.361047 0.82424903 0.36104801 0.82424903\n\t\t 0.36104801 0.82419801 0.35882401 0.83320898 0.358823 0.82419801 0.35882401 0.82424903\n\t\t 0.36104801 0.81518799 0.361047 0.81518799 0.361047 0.81516498 0.35881701 0.82419801\n\t\t 0.35882401 0.81516498 0.35881701 0.81518799 0.361047 0.80613297 0.36105001 0.80613297\n\t\t 0.36105001 0.80612302 0.35882699 0.81516498 0.35881701 0.80612302 0.35882699 0.80613297\n\t\t 0.36105001 0.79708201 0.36104599 0.79708201 0.36104599 0.797077 0.358814 0.80612302\n\t\t 0.35882699 0.797077 0.358814 0.79708201 0.36104599 0.78803098 0.36104801 0.78803098\n\t\t 0.36104801 0.78802902 0.358823 0.797077 0.358814 0.062785998 0.22429501 0.0704 0.22429501\n\t\t 0.0704 0.230534 0.0704 0.230534 0.062785998 0.230534 0.062785998 0.22429501 0.062785998\n\t\t 0.22429501 0.062785998 0.230534 0.055185001 0.230534 0.055185001 0.230534 0.055185001\n\t\t 0.22429501 0.062785998 0.22429501 0.047591999 0.22429501 0.055185001 0.22429501 0.055185001\n\t\t 0.230534 0.055185001 0.230534 0.047591999 0.230534 0.047591999 0.22429501 0.047591999\n\t\t 0.22429501 0.047591999 0.230534 0.039988 0.230534 0.039988 0.230534 0.039988 0.22429501\n\t\t 0.047591999 0.22429501 0.032391999 0.22429501 0.039988 0.22429501 0.039988 0.230534\n\t\t 0.039988 0.230534 0.032391999 0.230534 0.032391999 0.22429501 0.032391999 0.22429501\n\t\t 0.032391999 0.230534 0.024747999 0.230534 0.024747999 0.230534 0.024747999 0.22429501\n\t\t 0.032391999 0.22429501 0.016985999 0.22429501 0.024747999 0.22429501 0.024747999\n\t\t 0.230534 0.024747999 0.230534 0.016985999 0.230534 0.016985999 0.22429501 0.016985999\n\t\t 0.22429501 0.016985999 0.230534 0.0093120001 0.230534 0.0093120001 0.230534 0.0093120001\n\t\t 0.22429501 0.016985999 0.22429501 0.002449 0.22429501 0.0093120001 0.22429501 0.0093120001\n\t\t 0.230534 0.0093120001 0.230534 0.002449 0.230534 0.002449 0.22429501 0.115714 0.230534\n\t\t 0.115714 0.22429501 0.123461 0.22429501 0.123461 0.22429501 0.123461 0.230534 0.115714\n\t\t 0.230534 0.108187 0.22429501 0.115714 0.22429501 0.115714 0.230534 0.115714 0.230534\n\t\t 0.108187 0.230534 0.108187 0.22429501 0.108187 0.22429501 0.108187 0.230534 0.100658\n\t\t 0.230534 0.100658 0.230534 0.100658 0.22429501 0.108187 0.22429501 0.093124002 0.22429501\n\t\t 0.100658 0.22429501 0.100658 0.230534 0.100658 0.230534 0.093124002 0.230534 0.093124002\n\t\t 0.22429501 0.093124002 0.22429501 0.093124002 0.230534 0.085575998 0.230534 0.085575998\n\t\t 0.230534 0.085575998 0.22429501 0.093124002 0.22429501 0.078004003 0.22429501 0.085575998\n\t\t 0.22429501 0.085575998 0.230534 0.085575998 0.230534 0.078004003 0.230534 0.078004003\n\t\t 0.22429501 0.0704 0.22429501 0.078004003 0.22429501 0.078004003 0.230534 0.078004003\n\t\t 0.230534 0.0704 0.230534 0.0704 0.22429501 0.082194 0.099444002 0.093474001 0.099444002\n\t\t 0.093474001 0.154567 0.093474001 0.154567 0.082194 0.154567 0.082194 0.099444002\n\t\t 0.093474001 0.154567 0.093474001 0.099444002 0.104753 0.099444002 0.104753 0.099444002\n\t\t 0.104753 0.154567 0.093474001 0.154567 0.116033 0.154567 0.104753 0.154567 0.104753\n\t\t 0.099444002 0.104753 0.099444002 0.116033 0.099444002 0.116033 0.154567 0.116033\n\t\t 0.154567 0.116033 0.099444002 0.127312 0.099444002 0.127312 0.099444002 0.127312\n\t\t 0.154567 0.116033 0.154567 0.13859101 0.154567 0.127312 0.154567 0.127312 0.099444002\n\t\t 0.127312 0.099444002 0.13859101 0.099444002 0.13859101 0.154567 0.13859101 0.154567\n\t\t 0.13859101 0.099444002 0.149872 0.099444002 0.149872 0.099444002 0.149872 0.154567\n\t\t 0.13859101 0.154567 0.16115101 0.154567 0.149872 0.154567 0.149872 0.099444002 0.149872\n\t\t 0.099444002 0.16115101 0.099444002 0.16115101 0.154567 0.16115101 0.154567 0.16115101\n\t\t 0.099444002 0.17243101 0.099444002 0.17243101 0.099444002 0.17243101 0.154567 0.16115101\n\t\t 0.154567 0.18370999 0.154567 0.17243101 0.154567 0.17243101 0.099444002 0.17243101\n\t\t 0.099444002 0.18370999 0.099444002 0.18370999 0.154567 0.003236 0.154567 0.003236\n\t\t 0.099444002 0.014516 0.099444002 0.014516 0.099444002 0.014516 0.154567 0.003236\n\t\t 0.154567 0.025796 0.154567 0.014516 0.154567 0.014516 0.099444002 0.014516 0.099444002\n\t\t 0.025795 0.099444002 0.025796 0.154567 0.025796 0.154567 0.025795 0.099444002 0.037075002\n\t\t 0.099444002 0.037075002 0.099444002 0.037076 0.154567 0.025796 0.154567 0.048354998\n\t\t 0.154567 0.037076 0.154567 0.037075002 0.099444002 0.037075002 0.099444002 0.048354998\n\t\t 0.099444002 0.048354998 0.154567 0.048354998 0.154567 0.048354998 0.099444002 0.059634998\n\t\t 0.099444002 0.059634998 0.099444002 0.059634998 0.154567 0.048354998 0.154567 0.070914\n\t\t 0.154567 0.059634998 0.154567 0.059634998 0.099444002 0.059634998 0.099444002 0.070914\n\t\t 0.099444002 0.070914 0.154567 0.070914 0.154567 0.070914 0.099444002 0.082194 0.099444002\n\t\t 0.082194 0.099444002 0.082194 0.154567 0.070914 0.154567 0.59282202 0.51386303 0.59694499\n\t\t 0.512559 0.59773701 0.52001297 0.59773701 0.52001297;\n\tsetAttr \".uvst[0].uvsp[16000:16249]\" 0.593436 0.51964098 0.59282202 0.51386303\n\t\t 0.593436 0.51964098 0.59773701 0.52001297 0.595676 0.52722102 0.595676 0.52722102\n\t\t 0.591838 0.52522701 0.593436 0.51964098 0.591838 0.52522701 0.595676 0.52722102 0.59096402\n\t\t 0.53305101 0.59096402 0.53305101 0.58818698 0.52974701 0.591838 0.52522701 0.58818698\n\t\t 0.52974701 0.59096402 0.53305101 0.58441001 0.53669 0.58441001 0.53669 0.58310699\n\t\t 0.53256702 0.58818698 0.52974701 0.58310699 0.53256702 0.58441001 0.53669 0.57695597\n\t\t 0.53748202 0.57695597 0.53748202 0.57732898 0.53318101 0.58310699 0.53256702 0.57732898\n\t\t 0.53318101 0.57695597 0.53748202 0.569749 0.53542 0.569749 0.53542 0.57174301 0.53158301\n\t\t 0.57732898 0.53318101 0.57174301 0.53158301 0.569749 0.53542 0.56391799 0.53070903\n\t\t 0.56391799 0.53070903 0.56722301 0.52793199 0.57174301 0.53158301 0.56722301 0.52793199\n\t\t 0.56391799 0.53070903 0.56028003 0.52415502 0.56028003 0.52415502 0.564403 0.522852\n\t\t 0.56722301 0.52793199 0.564403 0.522852 0.56028003 0.52415502 0.559488 0.51670098\n\t\t 0.559488 0.51670098 0.56378901 0.51707399 0.564403 0.522852 0.56378901 0.51707399\n\t\t 0.559488 0.51670098 0.56154901 0.50949401 0.56154901 0.50949401 0.56538701 0.51148701\n\t\t 0.56378901 0.51707399 0.56538701 0.51148701 0.56154901 0.50949401 0.56626099 0.503663\n\t\t 0.56626099 0.503663 0.56903797 0.50696802 0.56538701 0.51148701 0.56903797 0.50696802\n\t\t 0.56626099 0.503663 0.572815 0.50002497 0.572815 0.50002497 0.57411802 0.50414699\n\t\t 0.56903797 0.50696802 0.57411802 0.50414699 0.572815 0.50002497 0.58026898 0.49923301\n\t\t 0.58026898 0.49923301 0.57989597 0.50353402 0.57411802 0.50414699 0.57989597 0.50353402\n\t\t 0.58026898 0.49923301 0.58747602 0.50129402 0.58747602 0.50129402 0.58548301 0.50513202\n\t\t 0.57989597 0.50353402 0.58548301 0.50513202 0.58747602 0.50129402 0.59330702 0.506006\n\t\t 0.59330702 0.506006 0.590002 0.50878298 0.58548301 0.50513202 0.590002 0.50878298\n\t\t 0.59330702 0.506006 0.59694499 0.512559 0.59694499 0.512559 0.59282202 0.51386303\n\t\t 0.590002 0.50878298 0.218839 0.30441299 0.208722 0.30441299 0.20872299 0.29938799\n\t\t 0.20872299 0.29938799 0.218839 0.29938799 0.218839 0.30441299 0.198606 0.29938799\n\t\t 0.20872299 0.29938799 0.208722 0.30441299 0.208722 0.30441299 0.198605 0.30441201\n\t\t 0.198606 0.29938799 0.18848 0.29937601 0.198606 0.29938799 0.198605 0.30441201 0.198605\n\t\t 0.30441201 0.188484 0.30440301 0.18848 0.29937601 0.17832901 0.29940599 0.18848 0.29937601\n\t\t 0.188484 0.30440301 0.188484 0.30440301 0.178343 0.30442899 0.17832901 0.29940599\n\t\t 0.168138 0.29944399 0.17832901 0.29940599 0.178343 0.30442899 0.178343 0.30442899\n\t\t 0.168162 0.30447 0.168138 0.29944399 0.157882 0.299537 0.168138 0.29944399 0.168162\n\t\t 0.30447 0.168162 0.30447 0.15789001 0.30456001 0.157882 0.299537 0.14750899 0.299566\n\t\t 0.157882 0.299537 0.15789001 0.30456001 0.15789001 0.30456001 0.147478 0.30459401\n\t\t 0.14750899 0.299566 0.13696 0.29952201 0.14750899 0.299566 0.147478 0.30459401 0.147478\n\t\t 0.30459401 0.13659699 0.30449101 0.13696 0.29952201 0.126205 0.29805499 0.13696 0.29952201\n\t\t 0.13659699 0.30449101 0.13659699 0.30449101 0.125476 0.30309001 0.126205 0.29805499\n\t\t 0.198606 0.29938799 0.18848 0.29937601 0.188473 0.29137799 0.178314 0.29141399 0.188473\n\t\t 0.29137799 0.18848 0.29937601 0.18848 0.29937601 0.17832901 0.29940599 0.178314 0.29141399\n\t\t 0.17832901 0.29940599 0.168138 0.29944399 0.16812401 0.29144201 0.16812401 0.29144201\n\t\t 0.178314 0.29141399 0.17832901 0.29940599 0.15792 0.29153299 0.16812401 0.29144201\n\t\t 0.168138 0.29944399 0.168138 0.29944399 0.157882 0.299537 0.15792 0.29153299 0.157882\n\t\t 0.299537 0.14750899 0.299566 0.147744 0.29156801 0.147744 0.29156801 0.15792 0.29153299\n\t\t 0.157882 0.299537 0.13780101 0.291594 0.147744 0.29156801 0.14750899 0.299566 0.14750899\n\t\t 0.299566 0.13696 0.29952201 0.13780101 0.291594 0.13696 0.29952201 0.126205 0.29805499\n\t\t 0.12848599 0.29008299 0.12848599 0.29008299 0.13780101 0.291594 0.13696 0.29952201\n\t\t 0.188473 0.29137799 0.198607 0.29139599 0.198606 0.29938799 0.20872299 0.29938799\n\t\t 0.198606 0.29938799 0.198607 0.29139599 0.198607 0.29139599 0.20872299 0.29139 0.20872299\n\t\t 0.29938799 0.218839 0.29938799 0.20872299 0.29938799 0.20872299 0.29139 0.20872299\n\t\t 0.29139 0.218841 0.29139 0.218839 0.29938799 0.228966 0.299389 0.218839 0.29938799\n\t\t 0.218841 0.29139 0.218839 0.29938799 0.228966 0.299389 0.228965 0.30441499 0.239099\n\t\t 0.304416 0.228965 0.30441499 0.228966 0.299389 0.228966 0.299389 0.239114 0.299391\n\t\t 0.239099 0.304416 0.249248 0.30450499 0.239099 0.304416 0.239114 0.299391 0.239114\n\t\t 0.299391 0.24930499 0.29947901 0.249248 0.30450499 0.259527 0.304708 0.249248 0.30450499\n\t\t 0.24930499 0.29947901 0.24930499 0.29947901 0.259574 0.29968199 0.259527 0.304708\n\t\t 0.27010101 0.30480701 0.259527 0.304708 0.259574 0.29968199 0.259574 0.29968199 0.269977\n\t\t 0.29978099 0.27010101 0.30480701 0.28108099 0.30427301 0.27010101 0.30480701 0.269977\n\t\t 0.29978099 0.269977 0.29978099 0.28054801 0.29929301 0.28108099 0.30427301 0.29212999\n\t\t 0.30257499 0.28108099 0.30427301 0.28054801 0.29929301 0.28054801 0.29929301 0.291264\n\t\t 0.297564 0.29212999 0.30257499 0.228965 0.30441499 0.218839 0.30441299 0.218839 0.29938799\n\t\t 0.291264 0.297564 0.28054801 0.29929301 0.27947301 0.29139999 0.27947301 0.29139999\n\t\t 0.28877199 0.289666;\n\tsetAttr \".uvst[0].uvsp[16250:16499]\" 0.291264 0.297564 0.28054801 0.29929301 0.269977\n\t\t 0.29978099 0.269631 0.29175901 0.269631 0.29175901 0.27947301 0.29139999 0.28054801\n\t\t 0.29929301 0.259541 0.29166901 0.269631 0.29175901 0.269977 0.29978099 0.269977 0.29978099\n\t\t 0.259574 0.29968199 0.259541 0.29166901 0.259574 0.29968199 0.24930499 0.29947901\n\t\t 0.249347 0.29148 0.249347 0.29148 0.259541 0.29166901 0.259574 0.29968199 0.23914\n\t\t 0.29140899 0.249347 0.29148 0.24930499 0.29947901 0.24930499 0.29947901 0.239114\n\t\t 0.299391 0.23914 0.29140899 0.228974 0.29139099 0.23914 0.29140899 0.239114 0.299391\n\t\t 0.239114 0.299391 0.228966 0.299389 0.228974 0.29139099 0.218841 0.29139 0.228974\n\t\t 0.29139099 0.228966 0.299389 0.086597003 0.208582 0.098562002 0.20858 0.098562002\n\t\t 0.21625499 0.098562002 0.21625499 0.086597003 0.216254 0.086597003 0.208582 0.110527\n\t\t 0.216253 0.098562002 0.21625499 0.098562002 0.20858 0.098562002 0.20858 0.110527\n\t\t 0.208583 0.110527 0.216253 0.122492 0.21625701 0.110527 0.216253 0.110527 0.208583\n\t\t 0.110527 0.208583 0.122492 0.208579 0.122492 0.21625701 0.134461 0.216251 0.122492\n\t\t 0.21625701 0.122492 0.208579 0.122492 0.208579 0.134461 0.20858499 0.134461 0.216251\n\t\t 0.14643499 0.21625701 0.134461 0.216251 0.134461 0.20858499 0.134461 0.20858499 0.14643499\n\t\t 0.208579 0.14643499 0.21625701 0.158415 0.216253 0.14643499 0.21625701 0.14643499\n\t\t 0.208579 0.14643499 0.208579 0.158415 0.208584 0.158415 0.216253 0.170404 0.216253\n\t\t 0.158415 0.216253 0.158415 0.208584 0.158415 0.208584 0.170404 0.20858601 0.170404\n\t\t 0.216253 0.182428 0.216242 0.170404 0.216253 0.170404 0.20858601 0.170404 0.20858601\n\t\t 0.182427 0.208597 0.182428 0.216242 0.19467101 0.21634001 0.182428 0.216242 0.182427\n\t\t 0.208597 0.182427 0.208597 0.194675 0.208464 0.19467101 0.21634001 0.014698 0.21623699\n\t\t 0.0024530001 0.216337 0.00245 0.208462 0.00245 0.208462 0.014699 0.208598 0.014698\n\t\t 0.21623699 0.026721001 0.21625599 0.014698 0.21623699 0.014699 0.208598 0.014699\n\t\t 0.208598 0.026721001 0.208583 0.026721001 0.21625599 0.038708001 0.216252 0.026721001\n\t\t 0.21625599 0.026721001 0.208583 0.026721001 0.208583 0.038709 0.20858499 0.038708001\n\t\t 0.216252 0.050687999 0.21625701 0.038708001 0.216252 0.038709 0.20858499 0.038709\n\t\t 0.20858499 0.050687999 0.208579 0.050687999 0.21625701 0.062661 0.216253 0.050687999\n\t\t 0.21625701 0.050687999 0.208579 0.050687999 0.208579 0.062661 0.208583 0.062661 0.216253\n\t\t 0.074630998 0.21625499 0.062661 0.216253 0.062661 0.208583 0.062661 0.208583 0.074630998\n\t\t 0.20858 0.074630998 0.21625499 0.086597003 0.216254 0.074630998 0.21625499 0.074630998\n\t\t 0.20858 0.074630998 0.20858 0.086597003 0.208582 0.086597003 0.216254 0.21580701\n\t\t 0.23479 0.22708701 0.23479 0.22708701 0.245207 0.22708701 0.245207 0.21580701 0.245207\n\t\t 0.21580701 0.23479 0.23836599 0.245207 0.22708701 0.245207 0.22708701 0.23479 0.22708701\n\t\t 0.23479 0.23836701 0.234789 0.23836599 0.245207 0.24964599 0.245207 0.23836599 0.245207\n\t\t 0.23836701 0.234789 0.23836701 0.234789 0.24964599 0.23479 0.24964599 0.245207 0.26092601\n\t\t 0.245207 0.24964599 0.245207 0.24964599 0.23479 0.24964599 0.23479 0.26092601 0.23479\n\t\t 0.26092601 0.245207 0.27220601 0.245207 0.26092601 0.245207 0.26092601 0.23479 0.26092601\n\t\t 0.23479 0.27220601 0.234789 0.27220601 0.245207 0.28348601 0.245207 0.27220601 0.245207\n\t\t 0.27220601 0.234789 0.27220601 0.234789 0.28348601 0.23479 0.28348601 0.245207 0.29476601\n\t\t 0.245207 0.28348601 0.245207 0.28348601 0.23479 0.28348601 0.23479 0.29476601 0.23479\n\t\t 0.29476601 0.245207 0.30604601 0.245207 0.29476601 0.245207 0.29476601 0.23479 0.29476601\n\t\t 0.23479 0.30604601 0.23479 0.30604601 0.245207 0.317325 0.245207 0.30604601 0.245207\n\t\t 0.30604601 0.23479 0.30604601 0.23479 0.317325 0.234789 0.317325 0.245207 0.148128\n\t\t 0.245207 0.136849 0.245207 0.136849 0.234789 0.136849 0.234789 0.148128 0.23479 0.148128\n\t\t 0.245207 0.159408 0.245207 0.148128 0.245207 0.148128 0.23479 0.148128 0.23479 0.159408\n\t\t 0.234789 0.159408 0.245207 0.170688 0.245207 0.159408 0.245207 0.159408 0.234789\n\t\t 0.159408 0.234789 0.170688 0.234789 0.170688 0.245207 0.181968 0.245207 0.170688\n\t\t 0.245207 0.170688 0.234789 0.170688 0.234789 0.181968 0.23479 0.181968 0.245207 0.193248\n\t\t 0.245207 0.181968 0.245207 0.181968 0.23479 0.181968 0.23479 0.193248 0.234789 0.193248\n\t\t 0.245207 0.20452701 0.245207 0.193248 0.245207 0.193248 0.234789 0.193248 0.234789\n\t\t 0.20452701 0.23479 0.20452701 0.245207 0.21580701 0.245207 0.20452701 0.245207 0.20452701\n\t\t 0.23479 0.20452701 0.23479 0.21580701 0.23479 0.21580701 0.245207 0.232987 0.228928\n\t\t 0.22136199 0.228928 0.22136199 0.227449 0.22136199 0.227449 0.232987 0.227449 0.232987\n\t\t 0.228928 0.209737 0.227449 0.22136199 0.227449 0.22136199 0.228928 0.22136199 0.228928\n\t\t 0.209737 0.228927 0.209737 0.227449 0.198118 0.227446 0.209737 0.227449 0.209737\n\t\t 0.228927 0.209737 0.228927 0.198118 0.228929 0.198118 0.227446 0.186511 0.22745 0.198118\n\t\t 0.227446 0.198118 0.228929 0.198118 0.228929 0.186511 0.228926 0.186511 0.22745;\n\tsetAttr \".uvst[0].uvsp[16500:16749]\" 0.17492101 0.227447 0.186511 0.22745 0.186511\n\t\t 0.228926 0.186511 0.228926 0.17492101 0.228929 0.17492101 0.227447 0.163351 0.227449\n\t\t 0.17492101 0.227447 0.17492101 0.228929 0.17492101 0.228929 0.16335 0.228927 0.163351\n\t\t 0.227449 0.15180101 0.227449 0.163351 0.227449 0.16335 0.228927 0.16335 0.228927\n\t\t 0.15180101 0.228927 0.15180101 0.227449 0.14026199 0.227448 0.15180101 0.227449 0.15180101\n\t\t 0.228927 0.15180101 0.228927 0.14026199 0.228928 0.14026199 0.227448 0.128668 0.227446\n\t\t 0.14026199 0.227448 0.14026199 0.228928 0.14026199 0.228928 0.128668 0.22893 0.128668\n\t\t 0.227446 0.302461 0.227446 0.31405601 0.22744501 0.31405601 0.22893099 0.31405601\n\t\t 0.22893099 0.302461 0.22893 0.302461 0.227446 0.290921 0.227449 0.302461 0.227446\n\t\t 0.302461 0.22893 0.302461 0.22893 0.29092199 0.228927 0.290921 0.227449 0.27937299\n\t\t 0.22745 0.290921 0.227449 0.29092199 0.228927 0.29092199 0.228927 0.27937299 0.228925\n\t\t 0.27937299 0.22745 0.26780301 0.227447 0.27937299 0.22745 0.27937299 0.228925 0.27937299\n\t\t 0.228925 0.26780301 0.228929 0.26780301 0.227447 0.256212 0.227449 0.26780301 0.227447\n\t\t 0.26780301 0.228929 0.26780301 0.228929 0.256212 0.228927 0.256212 0.227449 0.244605\n\t\t 0.227449 0.256212 0.227449 0.256212 0.228927 0.256212 0.228927 0.244605 0.228927\n\t\t 0.244605 0.227449 0.232987 0.227449 0.244605 0.227449 0.244605 0.228927 0.244605\n\t\t 0.228927 0.232987 0.228928 0.232987 0.227449 0.086597003 0.22152001 0.086597003 0.216254\n\t\t 0.098562002 0.21625499 0.098562002 0.21625499 0.098562002 0.22152901 0.086597003\n\t\t 0.22152001 0.098562002 0.22152901 0.098562002 0.21625499 0.110527 0.216253 0.110527\n\t\t 0.216253 0.110525 0.22151899 0.098562002 0.22152901 0.110525 0.22151899 0.110527\n\t\t 0.216253 0.122492 0.21625701 0.122492 0.21625701 0.122492 0.221533 0.110525 0.22151899\n\t\t 0.122492 0.221533 0.122492 0.21625701 0.134461 0.216251 0.134461 0.216251 0.134461\n\t\t 0.221517 0.122492 0.221533 0.134461 0.221517 0.134461 0.216251 0.14643499 0.21625701\n\t\t 0.14643499 0.21625701 0.14643499 0.221533 0.134461 0.221517 0.14643499 0.221533 0.14643499\n\t\t 0.21625701 0.158415 0.216253 0.158415 0.216253 0.158417 0.22151799 0.14643499 0.221533\n\t\t 0.158417 0.22151799 0.158415 0.216253 0.170404 0.216253 0.170404 0.216253 0.170404\n\t\t 0.221522 0.158417 0.22151799 0.170404 0.221522 0.170404 0.216253 0.182428 0.216242\n\t\t 0.182428 0.216242 0.182363 0.221468 0.170404 0.221522 0.182363 0.221468 0.182428\n\t\t 0.216242 0.19467101 0.21634001 0.19467101 0.21634001 0.193859 0.221815 0.182363 0.221468\n\t\t 0.0032649999 0.221811 0.0024530001 0.216337 0.014698 0.21623699 0.014698 0.21623699\n\t\t 0.014759 0.22146399 0.0032649999 0.221811 0.014759 0.22146399 0.014698 0.21623699\n\t\t 0.026721001 0.21625599 0.026721001 0.21625599 0.026719 0.221526 0.014759 0.22146399\n\t\t 0.026719 0.221526 0.026721001 0.21625599 0.038708001 0.216252 0.038708001 0.216252\n\t\t 0.038708001 0.22151799 0.026719 0.221526 0.038708001 0.22151799 0.038708001 0.216252\n\t\t 0.050687999 0.21625701 0.050687999 0.21625701 0.050687999 0.221534 0.038708001 0.22151799\n\t\t 0.050687999 0.221534 0.050687999 0.21625701 0.062661 0.216253 0.062661 0.216253 0.062662996\n\t\t 0.22152001 0.050687999 0.221534 0.062662996 0.22152001 0.062661 0.216253 0.074630998\n\t\t 0.21625499 0.074630998 0.21625499 0.074631996 0.22153001 0.062662996 0.22152001 0.074631996\n\t\t 0.22153001 0.074630998 0.21625499 0.086597003 0.216254 0.086597003 0.216254 0.086597003\n\t\t 0.22152001 0.074631996 0.22153001 0.110525 0.203316 0.110527 0.208583 0.098562002\n\t\t 0.20858 0.098562002 0.20858 0.098562002 0.203306 0.110525 0.203316 0.098562002 0.203306\n\t\t 0.098562002 0.20858 0.086597003 0.208582 0.086597003 0.208582 0.086597003 0.203315\n\t\t 0.098562002 0.203306 0.086597003 0.203315 0.086597003 0.208582 0.074630998 0.20858\n\t\t 0.074630998 0.20858 0.074630998 0.203306 0.086597003 0.203315 0.074630998 0.203306\n\t\t 0.074630998 0.20858 0.062661 0.208583 0.062661 0.208583 0.062662996 0.203317 0.074630998\n\t\t 0.203306 0.062662996 0.203317 0.062661 0.208583 0.050687999 0.208579 0.050687999\n\t\t 0.208579 0.050687999 0.20330299 0.062662996 0.203317 0.050687999 0.20330299 0.050687999\n\t\t 0.208579 0.038709 0.20858499 0.038709 0.20858499 0.038708001 0.20332 0.050687999\n\t\t 0.20330299 0.038708001 0.20332 0.038709 0.20858499 0.026721001 0.208583 0.026721001\n\t\t 0.208583 0.026721001 0.20331199 0.038708001 0.20332 0.026721001 0.20331199 0.026721001\n\t\t 0.208583 0.014699 0.208598 0.014699 0.208598 0.014768 0.203374 0.026721001 0.20331199\n\t\t 0.014768 0.203374 0.014699 0.208598 0.00245 0.208462 0.00245 0.208462 0.0032939999\n\t\t 0.20298401 0.014768 0.203374 0.193831 0.202985 0.194675 0.208464 0.182427 0.208597\n\t\t 0.182427 0.208597 0.182356 0.203372 0.193831 0.202985 0.182356 0.203372 0.182427\n\t\t 0.208597 0.170404 0.20858601 0.170404 0.20858601 0.17040201 0.203317 0.182356 0.203372\n\t\t 0.17040201 0.203317 0.170404 0.20858601 0.158415 0.208584 0.158415 0.208584 0.158417\n\t\t 0.203318 0.17040201 0.203317 0.158417 0.203318 0.158415 0.208584 0.14643499 0.208579\n\t\t 0.14643499 0.208579 0.14643499 0.20330299 0.158417 0.203318 0.14643499 0.20330299\n\t\t 0.14643499 0.208579 0.134461 0.20858499 0.134461 0.20858499;\n\tsetAttr \".uvst[0].uvsp[16750:16999]\" 0.134461 0.203319 0.14643499 0.20330299 0.134461\n\t\t 0.203319 0.134461 0.20858499 0.122492 0.208579 0.122492 0.208579 0.122492 0.20330299\n\t\t 0.134461 0.203319 0.122492 0.20330299 0.122492 0.208579 0.110527 0.208583 0.110527\n\t\t 0.208583 0.110525 0.203316 0.122492 0.20330299 0.232987 0.224594 0.232987 0.227449\n\t\t 0.22136199 0.227449 0.22136199 0.227449 0.22136199 0.224592 0.232987 0.224594 0.22136199\n\t\t 0.224592 0.22136199 0.227449 0.209737 0.227449 0.209737 0.227449 0.209737 0.224595\n\t\t 0.22136199 0.224592 0.209737 0.224595 0.209737 0.227449 0.198118 0.227446 0.198118\n\t\t 0.227446 0.198118 0.22458801 0.209737 0.224595 0.198118 0.22458801 0.198118 0.227446\n\t\t 0.186511 0.22745 0.186511 0.22745 0.186511 0.22459701 0.198118 0.22458801 0.186511\n\t\t 0.22459701 0.186511 0.22745 0.17492101 0.227447 0.17492101 0.227447 0.17492101 0.22458901\n\t\t 0.186511 0.22459701 0.17492101 0.22458901 0.17492101 0.227447 0.163351 0.227449 0.163351\n\t\t 0.227449 0.163353 0.22459599 0.17492101 0.22458901 0.163353 0.22459599 0.163351 0.227449\n\t\t 0.15180101 0.227449 0.15180101 0.227449 0.151816 0.224594 0.163353 0.22459599 0.151816\n\t\t 0.224594 0.15180101 0.227449 0.14026199 0.227448 0.14026199 0.227448 0.14033499 0.224601\n\t\t 0.151816 0.224594 0.14033499 0.224601 0.14026199 0.227448 0.128668 0.227446 0.128668\n\t\t 0.227446 0.12911899 0.22453 0.14033499 0.224601 0.313604 0.224528 0.31405601 0.22744501\n\t\t 0.302461 0.227446 0.302461 0.227446 0.302387 0.224599 0.313604 0.224528 0.302387\n\t\t 0.224599 0.302461 0.227446 0.290921 0.227449 0.290921 0.227449 0.29090801 0.224594\n\t\t 0.302387 0.224599 0.29090801 0.224594 0.290921 0.227449 0.27937299 0.22745 0.27937299\n\t\t 0.22745 0.27937001 0.22459801 0.29090801 0.224594 0.27937001 0.22459801 0.27937299\n\t\t 0.22745 0.26780301 0.227447 0.26780301 0.227447 0.267802 0.22458901 0.27937001 0.22459801\n\t\t 0.267802 0.22458901 0.26780301 0.227447 0.256212 0.227449 0.256212 0.227449 0.256212\n\t\t 0.224595 0.267802 0.22458901 0.256212 0.224595 0.256212 0.227449 0.244605 0.227449\n\t\t 0.244605 0.227449 0.244605 0.224592 0.256212 0.224595 0.244605 0.224592 0.244605\n\t\t 0.227449 0.232987 0.227449 0.232987 0.227449 0.232987 0.224594 0.244605 0.224592\n\t\t 0.209737 0.23178101 0.209737 0.228927 0.22136199 0.228928 0.22136199 0.228928 0.22136199\n\t\t 0.231784 0.209737 0.23178101 0.22136199 0.231784 0.22136199 0.228928 0.232987 0.228928\n\t\t 0.232987 0.228928 0.232987 0.23178101 0.22136199 0.231784 0.232987 0.23178101 0.232987\n\t\t 0.228928 0.244605 0.228927 0.244605 0.228927 0.244605 0.231784 0.232987 0.23178101\n\t\t 0.244605 0.231784 0.244605 0.228927 0.256212 0.228927 0.256212 0.228927 0.256212\n\t\t 0.23178101 0.244605 0.231784 0.256212 0.23178101 0.256212 0.228927 0.26780301 0.228929\n\t\t 0.26780301 0.228929 0.267802 0.231787 0.256212 0.23178101 0.267802 0.231787 0.26780301\n\t\t 0.228929 0.27937299 0.228925 0.27937299 0.228925 0.27937001 0.231777 0.267802 0.231787\n\t\t 0.27937001 0.231777 0.27937299 0.228925 0.29092199 0.228927 0.29092199 0.228927 0.29090801\n\t\t 0.231782 0.27937001 0.231777 0.29090801 0.231782 0.29092199 0.228927 0.302461 0.22893\n\t\t 0.302461 0.22893 0.302387 0.231777 0.29090801 0.231782 0.302387 0.231777 0.302461\n\t\t 0.22893 0.31405601 0.22893099 0.31405601 0.22893099 0.313604 0.231848 0.302387 0.231777\n\t\t 0.12911899 0.23184501 0.128668 0.22893 0.14026199 0.228928 0.14026199 0.228928 0.14033499\n\t\t 0.231774 0.12911899 0.23184501 0.14033499 0.231774 0.14026199 0.228928 0.15180101\n\t\t 0.228927 0.15180101 0.228927 0.151816 0.231782 0.14033499 0.231774 0.151816 0.231782\n\t\t 0.15180101 0.228927 0.16335 0.228927 0.16335 0.228927 0.163353 0.23177999 0.151816\n\t\t 0.231782 0.163353 0.23177999 0.16335 0.228927 0.17492101 0.228929 0.17492101 0.228929\n\t\t 0.17492101 0.231787 0.163353 0.23177999 0.17492101 0.231787 0.17492101 0.228929 0.186511\n\t\t 0.228926 0.186511 0.228926 0.186511 0.23177899 0.17492101 0.231787 0.186511 0.23177899\n\t\t 0.186511 0.228926 0.198118 0.228929 0.198118 0.228929 0.198118 0.231787 0.186511\n\t\t 0.23177899 0.198118 0.231787 0.198118 0.228929 0.209737 0.228927 0.209737 0.228927\n\t\t 0.209737 0.23178101 0.198118 0.231787 0.76521701 0.229938 0.79998899 0.22942001 0.79917097\n\t\t 0.223455 0.76552403 0.224144 0.58820099 0.077753 0.59228301 0.077978 0.59643298 0.073408\n\t\t 0.59236699 0.073224999 0.614142 0.073770002 0.61131603 0.078087002 0.63787001 0.073876999\n\t\t 0.63608402 0.077955998 0.662754 0.074087001 0.66140199 0.078080997 0.67734498 0.073954999\n\t\t 0.67580402 0.077914998 0.68922597 0.077737004 0.69101202 0.073749997 0.70830101 0.073531002\n\t\t 0.70624298 0.077570997 0.67631602 0.638919 0.69232899 0.630018 0.68620801 0.625521\n\t\t 0.67007202 0.63444901 0.66369402 0.64589697 0.65735298 0.641388 0.66995001 0.650271\n\t\t 0.682307 0.64309299 0.69797403 0.63401598 0.65011102 0.65320897 0.64371699 0.648296\n\t\t 0.62529498 0.66603303 0.61915702 0.65917897 0.656506 0.65806299 0.63130599 0.672831\n\t\t 0.66956198 0.66739398 0.68222499 0.65818799 0.69328099 0.65002197 0.70725101 0.63981003\n\t\t 0.64299703 0.68624997 0.59850103 0.67925102 0.59509403 0.66888398 0.57347101 0.69117498\n\t\t 0.57689601 0.67566699;\n\tsetAttr \".uvst[0].uvsp[17000:17249]\" 0.56349498 0.69449598 0.57327002 0.677212\n\t\t 0.52742302 0.69070601 0.53289098 0.67330301 0.51822299 0.71059799 0.54894203 0.71339703\n\t\t 0.526443 0.64682698 0.54606003 0.65132201 0.432547 0.646676 0.44482401 0.62784201\n\t\t 0.49901801 0.75386298 0.53434098 0.751158 0.41583401 0.67382902 0.425928 0.65728599\n\t\t 0.380007 0.73271298 0.556346 0.71231902 0.56264198 0.71034002 0.54469597 0.747648\n\t\t 0.55434299 0.74310797 0.57049 0.706572 0.60150498 0.68969703 0.56562299 0.73651898\n\t\t 0.60578501 0.71140301 0.64140898 0.25170299 0.62764102 0.25067499 0.63221002 0.25683099\n\t\t 0.64615101 0.25797299 0.65888703 0.25286299 0.66377699 0.25933701 0.61650598 0.255761\n\t\t 0.61231202 0.249542 0.58335501 0.25476801 0.58010697 0.248312 0.53682601 0.254646\n\t\t 0.53567398 0.248126 0.48738399 0.25638899 0.48852 0.249798 0.47456801 0.257541 0.47547001\n\t\t 0.25088 0.46422401 0.25880599 0.46486399 0.25187999 0.453949 0.26051 0.454014 0.25255799\n\t\t 0.70473802 0.13060901 0.70327199 0.136407 0.74811 0.137793 0.75166702 0.131878 0.66119099\n\t\t 0.136123 0.66102499 0.129954 0.63119203 0.13646001 0.63003403 0.130105 0.61696702\n\t\t 0.13663299 0.61599398 0.13125101 0.60427201 0.136751 0.60373801 0.13366 0.58820099\n\t\t 0.13688 0.76350099 0.132039 0.75982398 0.138128 0.77320403 0.13211299 0.76935297\n\t\t 0.13837001 0.78292 0.13215099 0.77892601 0.138613 0.76044399 0.16801301 0.76223499\n\t\t 0.16247299 0.74243402 0.163055 0.74175 0.16837101 0.66422802 0.169506 0.66591799\n\t\t 0.163886 0.63444901 0.178058 0.634471 0.17242201 0.55640399 0.172298 0.55809802 0.17738\n\t\t 0.65476298 0.17011701 0.65422702 0.178409 0.86369801 0.096235 0.86917198 0.095513999\n\t\t 0.85089397 0.069224998 0.84262198 0.070008002 0.74149799 0.229366 0.745646 0.22954001\n\t\t 0.74326199 0.22455999 0.73920101 0.224525 0.72153902 0.224694 0.72206402 0.229029\n\t\t 0.697887 0.22485299 0.69732499 0.22900701 0.67307299 0.224958 0.67237902 0.22911\n\t\t 0.65854102 0.22490899 0.65788603 0.229067 0.644238 0.22899 0.64488298 0.22483 0.62695003\n\t\t 0.228916 0.62759203 0.224756 0.53854901 0.187566 0.54389 0.18800201 0.54129499 0.182661\n\t\t 0.56196803 0.181765 0.54664803 0.188233 0.55616999 0.185987 0.57347 0.18167201 0.57795298\n\t\t 0.185506 0.605582 0.185626 0.59130901 0.182138 0.65476298 0.18501399 0.418639 0.25081301\n\t\t 0.418639 0.25081301 0.41735399 0.257364 0.453949 0.26051 0.295825 0.25729999 0.418639\n\t\t 0.25081301 0.418639 0.25081301 0.296478 0.25040001 0.87591499 0.49943301 0.87457502\n\t\t 0.52511603 0.91174501 0.53756398 0.91876698 0.51378798 0.87457502 0.52511603 0.87591499\n\t\t 0.49943301 0.87255001 0.49920201 0.87120402 0.524885 0.87457502 0.52511603 0.87120402\n\t\t 0.524885 0.87255001 0.49920201 0.828188 0.50782198 0.83272499 0.53236002 0.87120402\n\t\t 0.524885 0.95607698 0.86144501 0.933559 0.93219101 0.98186898 0.96576202 0.99750799\n\t\t 0.92335302 0.93144 0.93526101 0.87327498 0.98140401 0.94585198 0.99818897 0.97995901\n\t\t 0.96852797 0.93950802 0.56942999 0.98769498 0.60434502 0.99484497 0.58304101 0.95561397\n\t\t 0.523821 0.99193799 0.60674697 0.99997598 0.58305597 0.95716 0.52035999 0.95561397\n\t\t 0.523821 0.89121401 0.900199 0.90663397 0.91656297 0.93679798 0.86629099 0.90270001\n\t\t 0.82978803 0.90372002 0.920425 0.88655299 0.90231299 0.90001798 0.82725698 0.93144\n\t\t 0.93526101 0.97995901 0.96852797 0.98186898 0.96576202 0.98186898 0.96576202 0.933559\n\t\t 0.93219101 0.93144 0.93526101 0.968023 0.39150399 0.96340197 0.39137101 0.94391799\n\t\t 0.44914201 0.94847602 0.45217401 0.96285701 0.38925499 0.96737099 0.38901299 0.94170398\n\t\t 0.331525 0.96285701 0.38925499 0.96737099 0.38901299 0.96737099 0.38901299 0.94628203\n\t\t 0.32827401 0.945517 0.45705801 0.94068903 0.454353 0.93685102 0.325697 0.94178498\n\t\t 0.32300299 0.93950802 0.56942999 0.95561397 0.523821 0.95028901 0.52485502 0.92992401\n\t\t 0.56890899 0.93950802 0.56942999 0.90263999 0.55253601 0.89038599 0.573493 0.57262999\n\t\t 0.016679 0.58625698 0.045178 0.59571999 0.040401001 0.57298601 0.0089100003 0.57328099\n\t\t 0.095957004 0.57252699 0.085244998 0.57100803 0.097430997 0.56153601 0.092373997\n\t\t 0.51354402 0.096643999 0.51936197 0.088567004 0.491676 0.061648998 0.49891201 0.064493001\n\t\t 0.56788898 0.0066490001 0.56008899 0.011472 0.52707702 0.014358 0.51941502 0.011001\n\t\t 0.51564002 0.021671001 0.51556599 0.013357 0.49929199 0.050887998 0.49169201 0.056072999\n\t\t 0.90145099 0.482072 0.89484501 0.47921401 0.983136 0.493855 0.99651802 0.39833799\n\t\t 0.89993 0.29459301 0.89313501 0.29694399 0.995655 0.38164499 0.98119998 0.28647 0.96737099\n\t\t 0.38901299 0.97601098 0.27985299 0.93679798 0.86629099 0.94566399 0.86104202 0.90797597\n\t\t 0.82834399 0.90270001 0.82978803 0.93679798 0.86629099 0.96416003 0.83061898 0.98466402\n\t\t 0.844006 0.94742298 0.51834399 0.975797 0.50287801 0.97569197 0.27962101 0.94690001\n\t\t 0.26092401 0.99666399 0.397901 0.99580902 0.384092 0.94638002 0.634965 0.94590098\n\t\t 0.66230398 0.97854197 0.66280502 0.97899503 0.63575602 0.713144 0.63769001 0.71374798\n\t\t 0.66477501 0.74840701 0.66432297 0.74780703 0.63702202 0.93879199 0.63484597 0.85017997\n\t\t 0.63522398 0.850357 0.69917703 0.93919897 0.663715 0.8441 0.635364 0.84495997 0.69935\n\t\t 0.75519001 0.66571999 0.75510401 0.63684398 0.93879199 0.63484597 0.93919897 0.663715\n\t\t 0.94638002 0.634965 0.93879199 0.63484597 0.75510401 0.63684398 0.74780703 0.63702202\n\t\t 0.74780703 0.63702202 0.97648501 0.50235897 0.98284 0.49428001 0.89993 0.29459301\n\t\t 0.899225 0.29098201 0.89428198 0.293244 0.89313501 0.29694399;\n\tsetAttr \".uvst[0].uvsp[17250:17499]\" 0.89993 0.29459301 0.89993 0.29459301 0.94666499\n\t\t 0.26060399 0.942693 0.25799099 0.89484501 0.47921401 0.89560997 0.48290199 0.90039098\n\t\t 0.48557299 0.90145099 0.482072 0.89484501 0.47921401 0.90145099 0.482072 0.94302601\n\t\t 0.52097702 0.94716603 0.51865 0.90145099 0.482072 0.713144 0.63769001 0.70890403\n\t\t 0.63958699 0.70917797 0.66396701 0.71374798 0.66477501 0.713144 0.63769001 0.97899503\n\t\t 0.63575602 0.97854197 0.66280502 0.98322397 0.66202402 0.983347 0.637523 0.97899503\n\t\t 0.63575602 0.79917097 0.223455 0.79998899 0.22942001 0.76521701 0.229938 0.76521701\n\t\t 0.229938 0.76552403 0.224144 0.79917097 0.223455 0.59643298 0.073408 0.59228301 0.077978\n\t\t 0.58820099 0.077753 0.58820099 0.077753 0.59236699 0.073224999 0.59643298 0.073408\n\t\t 0.59228301 0.077978 0.59643298 0.073408 0.614142 0.073770002 0.614142 0.073770002\n\t\t 0.61131603 0.078087002 0.59228301 0.077978 0.61131603 0.078087002 0.614142 0.073770002\n\t\t 0.63787001 0.073876999 0.63787001 0.073876999 0.63608402 0.077955998 0.61131603 0.078087002\n\t\t 0.63608402 0.077955998 0.63787001 0.073876999 0.662754 0.074087001 0.662754 0.074087001\n\t\t 0.66140199 0.078080997 0.63608402 0.077955998 0.66140199 0.078080997 0.662754 0.074087001\n\t\t 0.67734498 0.073954999 0.67734498 0.073954999 0.67580402 0.077914998 0.66140199 0.078080997\n\t\t 0.68922597 0.077737004 0.67580402 0.077914998 0.67734498 0.073954999 0.67734498 0.073954999\n\t\t 0.69101202 0.073749997 0.68922597 0.077737004 0.70624298 0.077570997 0.68922597 0.077737004\n\t\t 0.69101202 0.073749997 0.69101202 0.073749997 0.70830101 0.073531002 0.70624298 0.077570997\n\t\t 0.67631602 0.638919 0.67007202 0.63444901 0.68620801 0.625521 0.68620801 0.625521\n\t\t 0.69232899 0.630018 0.67631602 0.638919 0.67007202 0.63444901 0.67631602 0.638919\n\t\t 0.66369402 0.64589697 0.66369402 0.64589697 0.65735298 0.641388 0.67007202 0.63444901\n\t\t 0.66995001 0.650271 0.66369402 0.64589697 0.67631602 0.638919 0.67631602 0.638919\n\t\t 0.682307 0.64309299 0.66995001 0.650271 0.682307 0.64309299 0.67631602 0.638919 0.69232899\n\t\t 0.630018 0.69232899 0.630018 0.69797403 0.63401598 0.682307 0.64309299 0.65735298\n\t\t 0.641388 0.66369402 0.64589697 0.65011102 0.65320897 0.65011102 0.65320897 0.64371699\n\t\t 0.648296 0.65735298 0.641388 0.64371699 0.648296 0.65011102 0.65320897 0.62529498\n\t\t 0.66603303 0.62529498 0.66603303 0.61915702 0.65917897 0.64371699 0.648296 0.62529498\n\t\t 0.66603303 0.65011102 0.65320897 0.656506 0.65806299 0.656506 0.65806299 0.65011102\n\t\t 0.65320897 0.66369402 0.64589697 0.66369402 0.64589697 0.66995001 0.650271 0.656506\n\t\t 0.65806299 0.656506 0.65806299 0.63130599 0.672831 0.62529498 0.66603303 0.66956198\n\t\t 0.66739398 0.656506 0.65806299 0.66995001 0.650271 0.66995001 0.650271 0.68222499\n\t\t 0.65818799 0.66956198 0.66739398 0.68222499 0.65818799 0.66995001 0.650271 0.682307\n\t\t 0.64309299 0.682307 0.64309299 0.69328099 0.65002197 0.68222499 0.65818799 0.70725101\n\t\t 0.63981003 0.69328099 0.65002197 0.682307 0.64309299 0.682307 0.64309299 0.69797403\n\t\t 0.63401598 0.70725101 0.63981003 0.64299703 0.68624997 0.63130599 0.672831 0.656506\n\t\t 0.65806299 0.656506 0.65806299 0.66956198 0.66739398 0.64299703 0.68624997 0.61915702\n\t\t 0.65917897 0.62529498 0.66603303 0.59850103 0.67925102 0.59850103 0.67925102 0.62529498\n\t\t 0.66603303 0.63130599 0.672831 0.59850103 0.67925102 0.59509403 0.66888398 0.61915702\n\t\t 0.65917897 0.59509403 0.66888398 0.59850103 0.67925102 0.57347101 0.69117498 0.57347101\n\t\t 0.69117498 0.57689601 0.67566699 0.59509403 0.66888398 0.57689601 0.67566699 0.57347101\n\t\t 0.69117498 0.56349498 0.69449598 0.56349498 0.69449598 0.57327002 0.677212 0.57689601\n\t\t 0.67566699 0.57327002 0.677212 0.56349498 0.69449598 0.52742302 0.69070601 0.52742302\n\t\t 0.69070601 0.53289098 0.67330301 0.57327002 0.677212 0.51822299 0.71059799 0.52742302\n\t\t 0.69070601 0.56349498 0.69449598 0.56349498 0.69449598 0.54894203 0.71339703 0.51822299\n\t\t 0.71059799 0.57327002 0.677212 0.53289098 0.67330301 0.526443 0.64682698 0.526443\n\t\t 0.64682698 0.54606003 0.65132201 0.57327002 0.677212 0.526443 0.64682698 0.53289098\n\t\t 0.67330301 0.432547 0.646676 0.432547 0.646676 0.53289098 0.67330301 0.52742302 0.69070601\n\t\t 0.432547 0.646676 0.44482401 0.62784201 0.526443 0.64682698 0.49901801 0.75386298\n\t\t 0.51822299 0.71059799 0.54894203 0.71339703 0.54894203 0.71339703 0.53434098 0.751158\n\t\t 0.49901801 0.75386298 0.52742302 0.69070601 0.51822299 0.71059799 0.41583401 0.67382902\n\t\t 0.41583401 0.67382902 0.425928 0.65728599 0.52742302 0.69070601 0.52742302 0.69070601\n\t\t 0.425928 0.65728599 0.432547 0.646676 0.380007 0.73271298 0.41583401 0.67382902 0.51822299\n\t\t 0.71059799 0.51822299 0.71059799 0.49901801 0.75386298 0.380007 0.73271298 0.54894203\n\t\t 0.71339703 0.56349498 0.69449598 0.556346 0.71231902 0.556346 0.71231902 0.56349498\n\t\t 0.69449598 0.56264198 0.71034002 0.56264198 0.71034002 0.56349498 0.69449598 0.57347101\n\t\t 0.69117498 0.57347101 0.69117498 0.57049 0.706572 0.56264198 0.71034002 0.57049 0.706572\n\t\t 0.57347101 0.69117498 0.59850103 0.67925102 0.59850103 0.67925102 0.60150498 0.68969703\n\t\t 0.57049 0.706572 0.56562299 0.73651898 0.57049 0.706572 0.60150498 0.68969703 0.60150498\n\t\t 0.68969703 0.60578501 0.71140301 0.56562299 0.73651898 0.63130599 0.672831 0.60150498\n\t\t 0.68969703 0.59850103 0.67925102 0.60578501 0.71140301 0.60150498 0.68969703 0.63130599\n\t\t 0.672831 0.63130599 0.672831 0.64299703 0.68624997 0.60578501 0.71140301 0.57049\n\t\t 0.706572 0.56562299 0.73651898 0.55434299 0.74310797 0.55434299 0.74310797 0.56264198\n\t\t 0.71034002;\n\tsetAttr \".uvst[0].uvsp[17500:17749]\" 0.57049 0.706572 0.56264198 0.71034002 0.55434299\n\t\t 0.74310797 0.54469597 0.747648 0.54469597 0.747648 0.556346 0.71231902 0.56264198\n\t\t 0.71034002 0.54894203 0.71339703 0.556346 0.71231902 0.54469597 0.747648 0.54469597\n\t\t 0.747648 0.53434098 0.751158 0.54894203 0.71339703 0.64140898 0.25170299 0.64615101\n\t\t 0.25797299 0.63221002 0.25683099 0.63221002 0.25683099 0.62764102 0.25067499 0.64140898\n\t\t 0.25170299 0.64615101 0.25797299 0.64140898 0.25170299 0.65888703 0.25286299 0.65888703\n\t\t 0.25286299 0.66377699 0.25933701 0.64615101 0.25797299 0.62764102 0.25067499 0.63221002\n\t\t 0.25683099 0.61650598 0.255761 0.61650598 0.255761 0.61231202 0.249542 0.62764102\n\t\t 0.25067499 0.61231202 0.249542 0.61650598 0.255761 0.58335501 0.25476801 0.58335501\n\t\t 0.25476801 0.58010697 0.248312 0.61231202 0.249542 0.58010697 0.248312 0.58335501\n\t\t 0.25476801 0.53682601 0.254646 0.53682601 0.254646 0.53567398 0.248126 0.58010697\n\t\t 0.248312 0.53567398 0.248126 0.53682601 0.254646 0.48738399 0.25638899 0.48738399\n\t\t 0.25638899 0.48852 0.249798 0.53567398 0.248126 0.48852 0.249798 0.48738399 0.25638899\n\t\t 0.47456801 0.257541 0.47456801 0.257541 0.47547001 0.25088 0.48852 0.249798 0.47547001\n\t\t 0.25088 0.47456801 0.257541 0.46422401 0.25880599 0.46422401 0.25880599 0.46486399\n\t\t 0.25187999 0.47547001 0.25088 0.46486399 0.25187999 0.46422401 0.25880599 0.453949\n\t\t 0.26051 0.453949 0.26051 0.454014 0.25255799 0.46486399 0.25187999 0.75166702 0.131878\n\t\t 0.74811 0.137793 0.70327199 0.136407 0.70327199 0.136407 0.70473802 0.13060901 0.75166702\n\t\t 0.131878 0.70473802 0.13060901 0.70327199 0.136407 0.66119099 0.136123 0.66119099\n\t\t 0.136123 0.66102499 0.129954 0.70473802 0.13060901 0.66102499 0.129954 0.66119099\n\t\t 0.136123 0.63119203 0.13646001 0.63119203 0.13646001 0.63003403 0.130105 0.66102499\n\t\t 0.129954 0.63003403 0.130105 0.63119203 0.13646001 0.61696702 0.13663299 0.61696702\n\t\t 0.13663299 0.61599398 0.13125101 0.63003403 0.130105 0.61599398 0.13125101 0.61696702\n\t\t 0.13663299 0.60427201 0.136751 0.60427201 0.136751 0.60373801 0.13366 0.61599398\n\t\t 0.13125101 0.58820099 0.13688 0.60373801 0.13366 0.60427201 0.136751 0.74811 0.137793\n\t\t 0.75166702 0.131878 0.76350099 0.132039 0.76350099 0.132039 0.75982398 0.138128 0.74811\n\t\t 0.137793 0.75982398 0.138128 0.76350099 0.132039 0.77320403 0.13211299 0.77320403\n\t\t 0.13211299 0.76935297 0.13837001 0.75982398 0.138128 0.76935297 0.13837001 0.77320403\n\t\t 0.13211299 0.78292 0.13215099 0.78292 0.13215099 0.77892601 0.138613 0.76935297 0.13837001\n\t\t 0.76044399 0.16801301 0.74175 0.16837101 0.74243402 0.163055 0.74243402 0.163055\n\t\t 0.76223499 0.16247299 0.76044399 0.16801301 0.74243402 0.163055 0.74175 0.16837101\n\t\t 0.66422802 0.169506 0.66422802 0.169506 0.66591799 0.163886 0.74243402 0.163055 0.55809802\n\t\t 0.17738 0.55640399 0.172298 0.634471 0.17242201 0.634471 0.17242201 0.63444901 0.178058\n\t\t 0.55809802 0.17738 0.63444901 0.178058 0.634471 0.17242201 0.65476298 0.17011701\n\t\t 0.65476298 0.17011701 0.65422702 0.178409 0.63444901 0.178058 0.85089397 0.069224998\n\t\t 0.86917198 0.095513999 0.86369801 0.096235 0.86369801 0.096235 0.84262198 0.070008002\n\t\t 0.85089397 0.069224998 0.74149799 0.229366 0.73920101 0.224525 0.74326199 0.22455999\n\t\t 0.74326199 0.22455999 0.745646 0.22954001 0.74149799 0.229366 0.73920101 0.224525\n\t\t 0.74149799 0.229366 0.72206402 0.229029 0.72206402 0.229029 0.72153902 0.224694 0.73920101\n\t\t 0.224525 0.72153902 0.224694 0.72206402 0.229029 0.69732499 0.22900701 0.69732499\n\t\t 0.22900701 0.697887 0.22485299 0.72153902 0.224694 0.697887 0.22485299 0.69732499\n\t\t 0.22900701 0.67237902 0.22911 0.67237902 0.22911 0.67307299 0.224958 0.697887 0.22485299\n\t\t 0.67307299 0.224958 0.67237902 0.22911 0.65788603 0.229067 0.65788603 0.229067 0.65854102\n\t\t 0.22490899 0.67307299 0.224958 0.65854102 0.22490899 0.65788603 0.229067 0.644238\n\t\t 0.22899 0.644238 0.22899 0.64488298 0.22483 0.65854102 0.22490899 0.64488298 0.22483\n\t\t 0.644238 0.22899 0.62695003 0.228916 0.62695003 0.228916 0.62759203 0.224756 0.64488298\n\t\t 0.22483 0.54129499 0.182661 0.54389 0.18800201 0.53854901 0.187566 0.56196803 0.181765\n\t\t 0.54389 0.18800201 0.54129499 0.182661 0.56196803 0.181765 0.55616999 0.185987 0.54389\n\t\t 0.18800201 0.55616999 0.185987 0.54664803 0.188233 0.54389 0.18800201 0.55616999\n\t\t 0.185987 0.56196803 0.181765 0.57347 0.18167201 0.57347 0.18167201 0.57795298 0.185506\n\t\t 0.55616999 0.185987 0.605582 0.185626 0.57795298 0.185506 0.57347 0.18167201 0.57347\n\t\t 0.18167201 0.59130901 0.182138 0.605582 0.185626 0.65476298 0.18501399 0.605582 0.185626\n\t\t 0.59130901 0.182138 0.41735399 0.257364 0.418639 0.25081301 0.454014 0.25255799 0.454014\n\t\t 0.25255799 0.453949 0.26051 0.41735399 0.257364 0.418639 0.25081301 0.41735399 0.257364\n\t\t 0.295825 0.25729999 0.295825 0.25729999 0.296478 0.25040001 0.418639 0.25081301 0.91876698\n\t\t 0.51378798 0.91174501 0.53756398 0.87457502 0.52511603 0.87457502 0.52511603 0.87591499\n\t\t 0.49943301 0.91876698 0.51378798 0.87255001 0.49920201 0.87591499 0.49943301 0.87457502\n\t\t 0.52511603 0.87457502 0.52511603 0.87120402 0.524885 0.87255001 0.49920201 0.87255001\n\t\t 0.49920201 0.87120402 0.524885 0.83272499 0.53236002 0.83272499 0.53236002 0.828188\n\t\t 0.50782198 0.87255001 0.49920201 0.95607698 0.86144501 0.99750799 0.92335302 0.98186898\n\t\t 0.96576202;\n\tsetAttr \".uvst[0].uvsp[17750:17999]\" 0.98186898 0.96576202 0.933559 0.93219101\n\t\t 0.95607698 0.86144501 0.93144 0.93526101 0.97995901 0.96852797 0.94585198 0.99818897\n\t\t 0.94585198 0.99818897 0.87327498 0.98140401 0.93144 0.93526101 0.93950802 0.56942999\n\t\t 0.95561397 0.523821 0.99484497 0.58304101 0.99484497 0.58304101 0.98769498 0.60434502\n\t\t 0.93950802 0.56942999 0.98769498 0.60434502 0.99484497 0.58304101 0.99997598 0.58305597\n\t\t 0.99997598 0.58305597 0.99193799 0.60674697 0.98769498 0.60434502 0.95716 0.52035999\n\t\t 0.99997598 0.58305597 0.99484497 0.58304101 0.99484497 0.58304101 0.95561397 0.523821\n\t\t 0.95716 0.52035999 0.93679798 0.86629099 0.90663397 0.91656297 0.89121401 0.900199\n\t\t 0.89121401 0.900199 0.90270001 0.82978803 0.93679798 0.86629099 0.89121401 0.900199\n\t\t 0.90663397 0.91656297 0.90372002 0.920425 0.90372002 0.920425 0.88655299 0.90231299\n\t\t 0.89121401 0.900199 0.90270001 0.82978803 0.89121401 0.900199 0.88655299 0.90231299\n\t\t 0.88655299 0.90231299 0.90001798 0.82725698 0.90270001 0.82978803 0.93144 0.93526101\n\t\t 0.933559 0.93219101 0.98186898 0.96576202 0.98186898 0.96576202 0.97995901 0.96852797\n\t\t 0.93144 0.93526101 0.968023 0.39150399 0.94847602 0.45217401 0.94391799 0.44914201\n\t\t 0.94391799 0.44914201 0.96340197 0.39137101 0.968023 0.39150399 0.968023 0.39150399\n\t\t 0.96340197 0.39137101 0.96285701 0.38925499 0.96285701 0.38925499 0.96737099 0.38901299\n\t\t 0.968023 0.39150399 0.96737099 0.38901299 0.96285701 0.38925499 0.94170398 0.331525\n\t\t 0.94170398 0.331525 0.94628203 0.32827401 0.96737099 0.38901299 0.94391799 0.44914201\n\t\t 0.94847602 0.45217401 0.945517 0.45705801 0.945517 0.45705801 0.94068903 0.454353\n\t\t 0.94391799 0.44914201 0.94628203 0.32827401 0.94170398 0.331525 0.93685102 0.325697\n\t\t 0.93685102 0.325697 0.94178498 0.32300299 0.94628203 0.32827401 0.93950802 0.56942999\n\t\t 0.92992401 0.56890899 0.95028901 0.52485502 0.95028901 0.52485502 0.95561397 0.523821\n\t\t 0.93950802 0.56942999 0.90263999 0.55253601 0.95028901 0.52485502 0.92992401 0.56890899\n\t\t 0.92992401 0.56890899 0.89038599 0.573493 0.90263999 0.55253601 0.57262999 0.016679\n\t\t 0.57298601 0.0089100003 0.59571999 0.040401001 0.59571999 0.040401001 0.58625698\n\t\t 0.045178 0.57262999 0.016679 0.58625698 0.045178 0.59571999 0.040401001 0.57328099\n\t\t 0.095957004 0.57328099 0.095957004 0.57252699 0.085244998 0.58625698 0.045178 0.57252699\n\t\t 0.085244998 0.57328099 0.095957004 0.57100803 0.097430997 0.57100803 0.097430997\n\t\t 0.56153601 0.092373997 0.57252699 0.085244998 0.56153601 0.092373997 0.57100803 0.097430997\n\t\t 0.51354402 0.096643999 0.51354402 0.096643999 0.51936197 0.088567004 0.56153601 0.092373997\n\t\t 0.51936197 0.088567004 0.51354402 0.096643999 0.491676 0.061648998 0.491676 0.061648998\n\t\t 0.49891201 0.064493001 0.51936197 0.088567004 0.57298601 0.0089100003 0.57262999\n\t\t 0.016679 0.56008899 0.011472 0.56008899 0.011472 0.56788898 0.0066490001 0.57298601\n\t\t 0.0089100003 0.56788898 0.0066490001 0.56008899 0.011472 0.52707702 0.014358 0.52707702\n\t\t 0.014358 0.51941502 0.011001 0.56788898 0.0066490001 0.51941502 0.011001 0.52707702\n\t\t 0.014358 0.51564002 0.021671001 0.51564002 0.021671001 0.51556599 0.013357 0.51941502\n\t\t 0.011001 0.51556599 0.013357 0.51564002 0.021671001 0.49929199 0.050887998 0.49929199\n\t\t 0.050887998 0.49169201 0.056072999 0.51556599 0.013357 0.49169201 0.056072999 0.49929199\n\t\t 0.050887998 0.49891201 0.064493001 0.49891201 0.064493001 0.491676 0.061648998 0.49169201\n\t\t 0.056072999 0.90145099 0.482072 0.89484501 0.47921401 0.94068903 0.454353 0.94068903\n\t\t 0.454353 0.945517 0.45705801 0.90145099 0.482072 0.968023 0.39150399 0.99651802 0.39833799\n\t\t 0.983136 0.493855 0.983136 0.493855 0.94847602 0.45217401 0.968023 0.39150399 0.94178498\n\t\t 0.32300299 0.93685102 0.325697 0.89313501 0.29694399 0.89313501 0.29694399 0.89993\n\t\t 0.29459301 0.94178498 0.32300299 0.94628203 0.32827401 0.98119998 0.28647 0.995655\n\t\t 0.38164499 0.995655 0.38164499 0.96737099 0.38901299 0.94628203 0.32827401 0.94178498\n\t\t 0.32300299 0.97601098 0.27985299 0.98119998 0.28647 0.98119998 0.28647 0.94628203\n\t\t 0.32827401 0.94178498 0.32300299 0.93679798 0.86629099 0.90270001 0.82978803 0.90797597\n\t\t 0.82834399 0.90797597 0.82834399 0.94566399 0.86104202 0.93679798 0.86629099 0.94566399\n\t\t 0.86104202 0.90797597 0.82834399 0.96416003 0.83061898 0.96416003 0.83061898 0.98466402\n\t\t 0.844006 0.94566399 0.86104202 0.945517 0.45705801 0.975797 0.50287801 0.94742298\n\t\t 0.51834399 0.94742298 0.51834399 0.90145099 0.482072 0.945517 0.45705801 0.94690001\n\t\t 0.26092401 0.97569197 0.27962101 0.94178498 0.32300299 0.94178498 0.32300299 0.89993\n\t\t 0.29459301 0.94690001 0.26092401 0.99580902 0.384092 0.99666399 0.397901 0.968023\n\t\t 0.39150399 0.968023 0.39150399 0.96737099 0.38901299 0.99580902 0.384092 0.94638002\n\t\t 0.634965 0.97899503 0.63575602 0.97854197 0.66280502 0.97854197 0.66280502 0.94590098\n\t\t 0.66230398 0.94638002 0.634965 0.713144 0.63769001 0.74780703 0.63702202 0.74840701\n\t\t 0.66432297 0.74840701 0.66432297 0.71374798 0.66477501 0.713144 0.63769001 0.93879199\n\t\t 0.63484597 0.93919897 0.663715 0.850357 0.69917703 0.850357 0.69917703 0.85017997\n\t\t 0.63522398 0.93879199 0.63484597 0.85017997 0.63522398 0.850357 0.69917703 0.84495997\n\t\t 0.69935 0.84495997 0.69935 0.8441 0.635364 0.85017997 0.63522398 0.8441 0.635364\n\t\t 0.84495997 0.69935 0.75519001 0.66571999 0.75519001 0.66571999 0.75510401 0.63684398\n\t\t 0.8441 0.635364 0.93919897 0.663715 0.93879199 0.63484597 0.94638002 0.634965 0.94638002\n\t\t 0.634965 0.94590098 0.66230398 0.93919897 0.663715 0.75510401 0.63684398;\n\tsetAttr \".uvst[0].uvsp[18000:18249]\" 0.75519001 0.66571999 0.74840701 0.66432297\n\t\t 0.74840701 0.66432297 0.74780703 0.63702202 0.75510401 0.63684398 0.94847602 0.45217401\n\t\t 0.98284 0.49428001 0.97648501 0.50235897 0.97648501 0.50235897 0.945517 0.45705801\n\t\t 0.94847602 0.45217401 0.89428198 0.293244 0.899225 0.29098201 0.89993 0.29459301\n\t\t 0.89993 0.29459301 0.89313501 0.29694399 0.89428198 0.293244 0.89484501 0.47921401\n\t\t 0.90145099 0.482072 0.90039098 0.48557299 0.90039098 0.48557299 0.89560997 0.48290199\n\t\t 0.89484501 0.47921401 0.899225 0.29098201 0.942693 0.25799099 0.94666499 0.26060399\n\t\t 0.94666499 0.26060399 0.89993 0.29459301 0.899225 0.29098201 0.70917797 0.66396701\n\t\t 0.70890403 0.63958699 0.713144 0.63769001 0.713144 0.63769001 0.71374798 0.66477501\n\t\t 0.70917797 0.66396701 0.90145099 0.482072 0.94716603 0.51865 0.94302601 0.52097702\n\t\t 0.94302601 0.52097702 0.90039098 0.48557299 0.90145099 0.482072 0.983347 0.637523\n\t\t 0.98322397 0.66202402 0.97854197 0.66280502 0.97854197 0.66280502 0.97899503 0.63575602\n\t\t 0.983347 0.637523 0.943088 0.80326998 0.95142102 0.81833702 0.99494499 0.77966797\n\t\t 0.98661298 0.765212 0.943088 0.80326998 0.98661298 0.765212 0.98200703 0.76066399\n\t\t 0.93848199 0.79872102 0.943088 0.80326998 0.95427603 0.82066202 0.99626201 0.78340399\n\t\t 0.60503203 0.50786799 0.60520202 0.51918399 0.66681999 0.51896 0.67951399 0.50732899\n\t\t 0.68039298 0.50091499 0.60575801 0.50078303 0.66427797 0.52162302 0.66681999 0.51896\n\t\t 0.60520202 0.51918399 0.60520202 0.51918399 0.60635197 0.52252698 0.74324399 0.50340003\n\t\t 0.75660598 0.51489002 0.81755197 0.51442701 0.817586 0.50310397 0.81668597 0.496041\n\t\t 0.74218601 0.497015 0.81643599 0.51778102 0.81755197 0.51442701 0.75660598 0.51489002\n\t\t 0.75660598 0.51489002 0.75920802 0.51754898 0.76094598 0.53412497 0.76408398 0.55051303\n\t\t 0.82226098 0.55187601 0.81875098 0.53460503 0.76094598 0.53412497 0.81875098 0.53460503\n\t\t 0.81928402 0.52815402 0.76147902 0.52767402 0.76094598 0.53412497 0.765513 0.55420399\n\t\t 0.82163203 0.55554599 0.73831302 0.67871898 0.729523 0.69159198 0.79016602 0.719944\n\t\t 0.78769702 0.703439 0.79016602 0.719944 0.729523 0.69159198 0.72814697 0.697918 0.788791\n\t\t 0.72627002 0.79016602 0.719944 0.74075502 0.67601198 0.78718299 0.69951999 0.88400298\n\t\t 0.56004697 0.89328003 0.54617602 0.82636201 0.54592103 0.82879299 0.56131798 0.82636201\n\t\t 0.54592103 0.89328003 0.54617602 0.894849 0.539895 0.827932 0.53964102 0.82636201\n\t\t 0.54592103 0.82984698 0.56480902 0.88183999 0.563353 0.81728101 0.562841 0.76959598\n\t\t 0.56167102 0.877675 0.57077402 0.83364999 0.57187599 0.74721301 0.67124897 0.78669101\n\t\t 0.69115698 0.99796802 0.79160702 0.96219099 0.82318997 0.66031599 0.52892101 0.66427797\n\t\t 0.52162302 0.60635197 0.52252698 0.60635197 0.52252698 0.610973 0.52970201 0.81188798\n\t\t 0.52499801 0.81643599 0.51778102 0.75920802 0.51754898 0.75920802 0.51754898 0.76333302\n\t\t 0.52496898 0.943088 0.80326998 0.98661298 0.765212 0.99494499 0.77966797 0.99494499\n\t\t 0.77966797 0.95142102 0.81833702 0.943088 0.80326998 0.98200703 0.76066399 0.98661298\n\t\t 0.765212 0.943088 0.80326998 0.943088 0.80326998 0.93848199 0.79872102 0.98200703\n\t\t 0.76066399 0.95427603 0.82066202 0.95142102 0.81833702 0.99494499 0.77966797 0.99494499\n\t\t 0.77966797 0.99626201 0.78340399 0.95427603 0.82066202 0.60503203 0.50786799 0.67951399\n\t\t 0.50732899 0.66681999 0.51896 0.66681999 0.51896 0.60520202 0.51918399 0.60503203\n\t\t 0.50786799 0.68039298 0.50091499 0.67951399 0.50732899 0.60503203 0.50786799 0.60503203\n\t\t 0.50786799 0.60575801 0.50078303 0.68039298 0.50091499 0.60520202 0.51918399 0.66681999\n\t\t 0.51896 0.66427797 0.52162302 0.66427797 0.52162302 0.60635197 0.52252698 0.60520202\n\t\t 0.51918399 0.74324399 0.50340003 0.817586 0.50310397 0.81755197 0.51442701 0.81755197\n\t\t 0.51442701 0.75660598 0.51489002 0.74324399 0.50340003 0.81668597 0.496041 0.817586\n\t\t 0.50310397 0.74324399 0.50340003 0.74324399 0.50340003 0.74218601 0.497015 0.81668597\n\t\t 0.496041 0.75660598 0.51489002 0.81755197 0.51442701 0.81643599 0.51778102 0.81643599\n\t\t 0.51778102 0.75920802 0.51754898 0.75660598 0.51489002 0.76094598 0.53412497 0.81875098\n\t\t 0.53460503 0.82226098 0.55187601 0.82226098 0.55187601 0.76408398 0.55051303 0.76094598\n\t\t 0.53412497 0.81928402 0.52815402 0.81875098 0.53460503 0.76094598 0.53412497 0.76094598\n\t\t 0.53412497 0.76147902 0.52767402 0.81928402 0.52815402 0.765513 0.55420399 0.76408398\n\t\t 0.55051303 0.82226098 0.55187601 0.82226098 0.55187601 0.82163203 0.55554599 0.765513\n\t\t 0.55420399 0.73831302 0.67871898 0.78769702 0.703439 0.79016602 0.719944 0.79016602\n\t\t 0.719944 0.729523 0.69159198 0.73831302 0.67871898 0.72814697 0.697918 0.729523 0.69159198\n\t\t 0.79016602 0.719944 0.79016602 0.719944 0.788791 0.72627002 0.72814697 0.697918 0.78769702\n\t\t 0.703439 0.73831302 0.67871898 0.74075502 0.67601198 0.74075502 0.67601198 0.78718299\n\t\t 0.69951999 0.78769702 0.703439 0.88400298 0.56004697 0.82879299 0.56131798 0.82636201\n\t\t 0.54592103 0.82636201 0.54592103 0.89328003 0.54617602 0.88400298 0.56004697 0.894849\n\t\t 0.539895 0.89328003 0.54617602 0.82636201 0.54592103 0.82636201 0.54592103 0.827932\n\t\t 0.53964102 0.894849 0.539895 0.82984698 0.56480902 0.82879299 0.56131798 0.88400298\n\t\t 0.56004697 0.88400298 0.56004697 0.88183999 0.563353 0.82984698 0.56480902 0.81728101\n\t\t 0.562841 0.76959598 0.56167102 0.765513 0.55420399 0.765513 0.55420399 0.82163203\n\t\t 0.55554599 0.81728101 0.562841 0.877675 0.57077402 0.83364999 0.57187599 0.82984698\n\t\t 0.56480902 0.82984698 0.56480902 0.88183999 0.563353;\n\tsetAttr \".uvst[0].uvsp[18250:18499]\" 0.877675 0.57077402 0.74721301 0.67124897\n\t\t 0.78669101 0.69115698 0.78718299 0.69951999 0.78718299 0.69951999 0.74075502 0.67601198\n\t\t 0.74721301 0.67124897 0.99796802 0.79160702 0.96219099 0.82318997 0.95427603 0.82066202\n\t\t 0.95427603 0.82066202 0.99626201 0.78340399 0.99796802 0.79160702 0.66031599 0.52892101\n\t\t 0.610973 0.52970201 0.60635197 0.52252698 0.60635197 0.52252698 0.66427797 0.52162302\n\t\t 0.66031599 0.52892101 0.81188798 0.52499801 0.76333302 0.52496898 0.75920802 0.51754898\n\t\t 0.75920802 0.51754898 0.81643599 0.51778102 0.81188798 0.52499801 0.89637703 0.40627301\n\t\t 0.87688398 0.43789399 0.88349003 0.436764 0.902192 0.40642399 0.90371901 0.33002099\n\t\t 0.89757401 0.329009 0.30440399 0.96377498 0.30174699 0.976376 0.34292001 0.978526\n\t\t 0.34588099 0.965325 0.30314401 0.960383 0.30440399 0.96377498 0.34588099 0.965325\n\t\t 0.34588099 0.965325 0.34488001 0.96196902 0.91665202 0.32239801 0.91028899 0.32029301\n\t\t 0.91015399 0.332589 0.91588598 0.33377901 0.91457403 0.35557899 0.90960801 0.355885\n\t\t 0.91404903 0.36761701 0.90933299 0.36936599 0.91394401 0.383102 0.9091 0.38453501\n\t\t 0.91378498 0.39772499 0.90898299 0.39741999 0.90918398 0.41151199 0.91399199 0.40990201\n\t\t 0.91476601 0.44443801 0.910043 0.44637299 0.91904002 0.38425699 0.918441 0.37413201\n\t\t 0.918365 0.39398599 0.204916 0.33999699 0.211622 0.33239901 0.201428 0.33253399 0.19585501\n\t\t 0.33937001 0.20290001 0.33029401 0.201428 0.33253399 0.211622 0.33239901 0.211622\n\t\t 0.33239901 0.213241 0.330089 0.201428 0.33253399 0.18309399 0.330028 0.18189 0.332151\n\t\t 0.201428 0.33253399 0.18189 0.332151 0.171069 0.33231199 0.17215499 0.33018601 0.18189\n\t\t 0.332151 0.17492899 0.33948499 0.18189 0.332151 0.171069 0.33231199 0.162683 0.33984101\n\t\t 0.18189 0.332151 0.61050302 0.29968601 0.60754102 0.309374 0.683604 0.31071001 0.68678898\n\t\t 0.29949999 0.68317598 0.31367901 0.683604 0.31071001 0.60754102 0.309374 0.60754102\n\t\t 0.309374 0.60673499 0.31228 0.52381599 0.104336 0.52312797 0.106678 0.55400598 0.10601\n\t\t 0.555237 0.103906 0.55400598 0.10601 0.52312797 0.106678 0.51870799 0.113902 0.54760301\n\t\t 0.11408 0.55400598 0.10601 0.55400598 0.10601 0.55331898 0.114192 0.56345898 0.105795\n\t\t 0.55400598 0.10601 0.56345898 0.105795 0.56631702 0.103796 0.40402001 0.38401201\n\t\t 0.41398001 0.38720399 0.42636099 0.38121 0.415912 0.378463 0.393516 0.38139799 0.40498099\n\t\t 0.37655899 0.40402001 0.38401201 0.393516 0.38139799 0.39135301 0.38265499 0.40135899\n\t\t 0.385407 0.40402001 0.38401201 0.41398001 0.38720399 0.40402001 0.38401201 0.41072899\n\t\t 0.38871801 0.41398001 0.38720399 0.41398001 0.38720399 0.41389799 0.39401001 0.41738901\n\t\t 0.392241 0.41398001 0.38720399 0.42636099 0.38121 0.41398001 0.38720399 0.43087101\n\t\t 0.385831 0.42636099 0.38121 0.393516 0.38139799 0.40498099 0.37655899 0.39716601\n\t\t 0.37451401 0.38560301 0.37963599 0.393516 0.38139799 0.39135301 0.38265499 0.393516\n\t\t 0.38139799 0.38560301 0.37963599 0.38560301 0.37963599 0.38317099 0.380211 0.39135301\n\t\t 0.38265499 0.85397899 0.28908199 0.850676 0.28865799 0.85031903 0.32228699 0.85341001\n\t\t 0.32266101 0.92834198 0.41460299 0.93060499 0.416215 0.93007898 0.403458 0.927953\n\t\t 0.40186301 0.93093503 0.43923301 0.9285 0.43728501 0.92965698 0.389483 0.92768902\n\t\t 0.387822 0.92981499 0.377763 0.92802203 0.37598199 0.92798698 0.44937801 0.93051302\n\t\t 0.451552 0.93013698 0.36491501 0.92843097 0.36309701 0.92765701 0.33131099 0.92933398\n\t\t 0.33305699 0.69648302 0.024065999 0.69580901 0.026498999 0.74782097 0.027043 0.74039698\n\t\t 0.024262 0.75479102 0.027086001 0.74997801 0.024507999 0.75955403 0.027218999 0.75872099\n\t\t 0.024715001 0.76668102 0.027469 0.76719803 0.024901001 0.77556002 0.025009001 0.77509099\n\t\t 0.027997 0.81756401 0.096483 0.83831 0.123122 0.84137797 0.121736 0.82086098 0.094991997\n\t\t 0.619757 0.196063 0.62209201 0.19341201 0.60968399 0.19304501 0.60738403 0.19566\n\t\t 0.64348602 0.193754 0.64118701 0.19653 0.59577602 0.194057 0.59346098 0.196568 0.58411503\n\t\t 0.19410899 0.58143002 0.19608501 0.652439 0.197377 0.65476298 0.194557 0.57139403\n\t\t 0.191496 0.56876999 0.19347499 0.53717101 0.197813 0.539442 0.19550399 0.87375301\n\t\t 0.38231501 0.87083 0.31202301 0.86774701 0.31600001 0.870462 0.38158801 0.87080097\n\t\t 0.30857399 0.86752403 0.30793801 0.867562 0.303 0.87084401 0.30513099 0.873851 0.30920199\n\t\t 0.87383997 0.30535501 0.87389898 0.31305099 0.87105697 0.29557201 0.86768597 0.29499701\n\t\t 0.867845 0.28545499 0.87122297 0.28602299 0.57187003 0.137556 0.57241702 0.135199\n\t\t 0.56820798 0.13516299 0.56818497 0.137861 0.686445 0.198599 0.65617698 0.208233 0.65756702\n\t\t 0.211661 0.687828 0.202016 0.69871902 0.19483 0.70011002 0.198239 0.71000803 0.19158401\n\t\t 0.71142 0.19498099 0.72339499 0.18766899 0.72472697 0.19109 0.73551297 0.18401299\n\t\t 0.73654002 0.187553 0.75701302 0.17702299 0.75686198 0.18127599 0.768363 0.17291901\n\t\t 0.76752001 0.17771 0.79453599 0.194085 0.79362398 0.199131 0.858154 0.202461 0.85876799\n\t\t 0.20755 0.86664701 0.203467 0.866835 0.208482 0.87243098 0.20423099 0.87178499 0.209057\n\t\t 0.87975401 0.20998099 0.88110203 0.20548201 0.891442 0.206397 0.88923103 0.21107499\n\t\t 0.01113 0.67762703 0.084656 0.687491 0.084554002 0.66624498 0.01548 0.66322899 0.023274999\n\t\t 0.63237798 0.078962997 0.62985301 0.076797001 0.61361903 0.026728 0.615888 0.073853999\n\t\t 0.59056199 0.032113999 0.58755302 0.034131002 0.56350201 0.070537999 0.56408697;\n\tsetAttr \".uvst[0].uvsp[18500:18749]\" 0.0062290002 0.57881999 0.0032939999 0.58047301\n\t\t 0.0091549996 0.577169 0.019107999 0.68937701 0.0038399999 0.69329602 0.002567 0.686782\n\t\t 0.018978 0.70142901 0.0056039998 0.70303798 0.061315 0.71338999 0.073982999 0.700634\n\t\t 0.019805999 0.71975303 0.0084239999 0.71946102 0.020849001 0.740026 0.011422 0.73799902\n\t\t 0.044597 0.748954 0.052046001 0.73047298 0.021514 0.75833601 0.013853 0.754605 0.022001\n\t\t 0.77261603 0.015707999 0.767533 0.03081 0.782812 0.029146001 0.78655797 0.022242\n\t\t 0.78011602 0.027484 0.79030597 0.022367001 0.78422499 0.037544001 0.76607603 0.016674001\n\t\t 0.77433199 0.017204 0.77806801 0.75587898 0.253685 0.755862 0.257471 0.76333398 0.25754601\n\t\t 0.76320899 0.253791 0.77087599 0.25727499 0.77171099 0.25350699 0.756024 0.24929\n\t\t 0.75587898 0.253685 0.76320899 0.253791 0.76320899 0.253791 0.76341599 0.24928799\n\t\t 0.76320899 0.253791 0.77171099 0.25350699 0.77171099 0.25350699 0.77203602 0.249065\n\t\t 0.48818901 0.141232 0.48809001 0.145192 0.50370598 0.144481 0.50398701 0.140479 0.53229398\n\t\t 0.14461 0.53385901 0.140769 0.54795301 0.14183401 0.54526901 0.14544199 0.53229398\n\t\t 0.14461 0.501239 0.149157 0.52982199 0.148945 0.53229398 0.14461 0.54526901 0.14544199\n\t\t 0.53229398 0.14461 0.485816 0.149636 0.54298902 0.149198 0.54526901 0.14544199 0.66070402\n\t\t 0.194537 0.66102099 0.199057 0.67278397 0.19897699 0.67327797 0.194509 0.66162199\n\t\t 0.189998 0.66070402 0.194537 0.67327797 0.194509 0.67327797 0.194509 0.67437702 0.19025899\n\t\t 0.79310203 0.13009299 0.79403502 0.133132 0.83086503 0.134262 0.83299899 0.130914\n\t\t 0.83086503 0.134262 0.79403502 0.133132 0.79270899 0.138613 0.82828498 0.13854299\n\t\t 0.83086503 0.134262 0.61829102 0.23329 0.61772501 0.229093 0.613841 0.228816 0.61433297\n\t\t 0.233024 0.60712498 0.23254199 0.60676998 0.22831599 0.61829102 0.23329 0.61433297\n\t\t 0.233024 0.61401999 0.238004 0.61803299 0.238178 0.61829102 0.23329 0.60671002 0.237688\n\t\t 0.61433297 0.233024 0.61433297 0.233024 0.60712498 0.23254199 0.59342599 0.23160701\n\t\t 0.59332299 0.227349 0.57581699 0.23046599 0.576015 0.2263 0.556104 0.23083501 0.55662102\n\t\t 0.22670101 0.53851199 0.232206 0.53946698 0.228007 0.52767402 0.23348799 0.52932101\n\t\t 0.22924 0.52259398 0.230551 0.52012902 0.23489299 0.53851199 0.232206 0.52767402\n\t\t 0.23348799 0.52662998 0.23873 0.537552 0.237693 0.53851199 0.232206 0.556104 0.23083501\n\t\t 0.53851199 0.232206 0.51898199 0.239859 0.52767402 0.23348799 0.52767402 0.23348799\n\t\t 0.52012902 0.23489299 0.57581699 0.23046599 0.556104 0.23083501 0.55518001 0.23649\n\t\t 0.556104 0.23083501 0.57498097 0.236147 0.57581699 0.23046599 0.59342599 0.23160701\n\t\t 0.57581699 0.23046599 0.592803 0.237068 0.59342599 0.23160701 0.60712498 0.23254199\n\t\t 0.59342599 0.23160701 0.60712498 0.23254199 0.67336899 0.182097 0.67490202 0.17924\n\t\t 0.67015201 0.17616899 0.66637897 0.18199199 0.66746497 0.175771 0.66382802 0.18183\n\t\t 0.66134399 0.18223999 0.69523799 0.30471101 0.69285601 0.30464801 0.69278502 0.30713099\n\t\t 0.69516599 0.30721 0.69291598 0.30216101 0.69529802 0.30221599 0.69269401 0.30961701\n\t\t 0.69507498 0.30970499 0.69260299 0.312107 0.69498402 0.31219599 0.692514 0.31459999\n\t\t 0.69489002 0.31468299 0.69240701 0.317231 0.69483 0.31716001 0.69483 0.31716001 0.69240701\n\t\t 0.317231 0.69267201 0.31985 0.69503802 0.31963 0.69483 0.31716001 0.69291401 0.32247999\n\t\t 0.69528598 0.32225999 0.69535202 0.29972199 0.69296902 0.29967099 0.69302499 0.29703099\n\t\t 0.69540697 0.29708099 0.41610599 0.42216799 0.425208 0.41580001 0.42295 0.41289401\n\t\t 0.414267 0.41980299 0.42730299 0.418827 0.41780999 0.42462999 0.420508 0.41010001\n\t\t 0.41231701 0.41756901 0.41789901 0.40745801 0.41023299 0.41546199 0.41514701 0.40496501\n\t\t 0.40803799 0.41347 0.412251 0.40264601 0.40572199 0.41161701 0.409251 0.40051401\n\t\t 0.40327999 0.40988201 0.40613699 0.39855099 0.400747 0.40828499 0.41935 0.427196\n\t\t 0.429198 0.42198399 0.43110201 0.42539099 0.42089799 0.42996401 0.39811799 0.406856\n\t\t 0.40290201 0.39679301 0.39528501 0.40542901 0.39941499 0.39503801 0.57769102 0.14506701\n\t\t 0.57878602 0.141927 0.576603 0.141628 0.57577503 0.143994 0.57558697 0.147627 0.57417101\n\t\t 0.14594001 0.57270598 0.149244 0.57195997 0.14717899 0.56946099 0.149838 0.56945699\n\t\t 0.147636 0.56621599 0.149257 0.566953 0.14718799 0.56332701 0.147654 0.56473398 0.14595801\n\t\t 0.56120801 0.145109 0.56311601 0.144021 0.56008601 0.141982 0.56176603 0.14173 0.56237102\n\t\t 0.139156 0.560233 0.138652 0.56296998 0.13658801 0.56103802 0.135203 0.578583 0.13859899\n\t\t 0.57645398 0.139138 0.57581198 0.136581 0.57771999 0.13516299 0.51196599 0.062550999\n\t\t 0.51404798 0.062905997 0.51394397 0.057500001 0.51019597 0.061397001 0.51783901 0.061251\n\t\t 0.51628602 0.062863998 0.51939201 0.059636999 0.51934999 0.057397999 0.51769298 0.053605001\n\t\t 0.51930702 0.055158999 0.51592302 0.052451 0.51384002 0.052095 0.51004702 0.053753\n\t\t 0.51177102 0.052531 0.50889301 0.055523999 0.50853801 0.057606999 0.50897503 0.059673999\n\t\t 0.38558501 0.65196502 0.38210201 0.66811901 0.38620201 0.668244 0.38812301 0.65205401\n\t\t 0.37781999 0.66715401 0.38310701 0.65140998 0.38979101 0.66750401 0.390632 0.65167499\n\t\t 0.39350399 0.66637897 0.393047 0.65096802 0.380797 0.65035897 0.373822 0.66534001\n\t\t 0.36978599 0.66303402 0.378463 0.64902103 0.40093401 0.66008598 0.39531499 0.650002\n\t\t 0.39752901 0.64878601 0.40835401 0.65386301 0.77610803 0.196917 0.76461798 0.196238;\n\tsetAttr \".uvst[0].uvsp[18750:18999]\" 0.76472598 0.201111 0.77589703 0.204804 0.76450503\n\t\t 0.191365 0.77632201 0.18903001 0.70810801 0.177789 0.70973802 0.176393 0.70875603\n\t\t 0.174833 0.70671701 0.17658401 0.706949 0.17957699 0.70525301 0.17885 0.70643502\n\t\t 0.181633 0.70459902 0.18147799 0.70623702 0.183862 0.70434302 0.184343 0.71121502\n\t\t 0.17377 0.71171802 0.175538 0.71386099 0.17338701 0.71386099 0.175228 0.716506 0.17377\n\t\t 0.716003 0.175538 0.71896499 0.174834 0.71798402 0.176394 0.72100401 0.17658401 0.71961302\n\t\t 0.177789 0.72246802 0.17885 0.72077203 0.17957801 0.72312301 0.18147799 0.72128701\n\t\t 0.181633 0.72337902 0.18434399 0.72148597 0.183862 0.74501503 0.19835401 0.74894798\n\t\t 0.198359 0.74895298 0.190598 0.74502701 0.19147301 0.74084598 0.19834501 0.74085999\n\t\t 0.19255599 0.75252301 0.19014201 0.74895298 0.190598 0.74894798 0.198359 0.74894798\n\t\t 0.198359 0.75252301 0.198359 0.75629801 0.189898 0.75629801 0.198359 0.736678 0.198333\n\t\t 0.736691 0.193636 0.73224902 0.19832 0.73225999 0.19471499 0.684313 0.182019 0.68773502\n\t\t 0.182036 0.68777502 0.173574 0.68433899 0.176845 0.68066603 0.17405701 0.68065399\n\t\t 0.176828 0.89637703 0.40627301 0.902192 0.40642399 0.88349003 0.436764 0.88349003\n\t\t 0.436764 0.87688398 0.43789399 0.89637703 0.40627301 0.90371901 0.33002099 0.902192\n\t\t 0.40642399 0.89637703 0.40627301 0.89637703 0.40627301 0.89757401 0.329009 0.90371901\n\t\t 0.33002099 0.30174699 0.976376 0.30440399 0.96377498 0.34588099 0.965325 0.34588099\n\t\t 0.965325 0.34292001 0.978526 0.30174699 0.976376 0.34588099 0.965325 0.30440399 0.96377498\n\t\t 0.30314401 0.960383 0.30314401 0.960383 0.34488001 0.96196902 0.34588099 0.965325\n\t\t 0.91665202 0.32239801 0.91588598 0.33377901 0.91015399 0.332589 0.91015399 0.332589\n\t\t 0.91028899 0.32029301 0.91665202 0.32239801 0.91015399 0.332589 0.91588598 0.33377901\n\t\t 0.91457403 0.35557899 0.91457403 0.35557899 0.90960801 0.355885 0.91015399 0.332589\n\t\t 0.90960801 0.355885 0.91457403 0.35557899 0.91404903 0.36761701 0.91404903 0.36761701\n\t\t 0.90933299 0.36936599 0.90960801 0.355885 0.90933299 0.36936599 0.91404903 0.36761701\n\t\t 0.91394401 0.383102 0.91394401 0.383102 0.9091 0.38453501 0.90933299 0.36936599 0.9091\n\t\t 0.38453501 0.91394401 0.383102 0.91378498 0.39772499 0.91378498 0.39772499 0.90898299\n\t\t 0.39741999 0.9091 0.38453501 0.90918398 0.41151199 0.90898299 0.39741999 0.91378498\n\t\t 0.39772499 0.91378498 0.39772499 0.91399199 0.40990201 0.90918398 0.41151199 0.90918398\n\t\t 0.41151199 0.91399199 0.40990201 0.91476601 0.44443801 0.91476601 0.44443801 0.910043\n\t\t 0.44637299 0.90918398 0.41151199 0.91904002 0.38425699 0.91394401 0.383102 0.91404903\n\t\t 0.36761701 0.91404903 0.36761701 0.918441 0.37413201 0.91904002 0.38425699 0.91394401\n\t\t 0.383102 0.91904002 0.38425699 0.918365 0.39398599 0.918365 0.39398599 0.91378498\n\t\t 0.39772499 0.91394401 0.383102 0.201428 0.33253399 0.211622 0.33239901 0.204916 0.33999699\n\t\t 0.204916 0.33999699 0.19585501 0.33937001 0.201428 0.33253399 0.211622 0.33239901\n\t\t 0.201428 0.33253399 0.20290001 0.33029401 0.20290001 0.33029401 0.213241 0.330089\n\t\t 0.211622 0.33239901 0.18309399 0.330028 0.20290001 0.33029401 0.201428 0.33253399\n\t\t 0.201428 0.33253399 0.18189 0.332151 0.18309399 0.330028 0.18189 0.332151 0.201428\n\t\t 0.33253399 0.19585501 0.33937001 0.18309399 0.330028 0.18189 0.332151 0.171069 0.33231199\n\t\t 0.171069 0.33231199 0.17215499 0.33018601 0.18309399 0.330028 0.19585501 0.33937001\n\t\t 0.17492899 0.33948499 0.18189 0.332151 0.162683 0.33984101 0.171069 0.33231199 0.18189\n\t\t 0.332151 0.18189 0.332151 0.17492899 0.33948499 0.162683 0.33984101 0.61050302 0.29968601\n\t\t 0.68678898 0.29949999 0.683604 0.31071001 0.683604 0.31071001 0.60754102 0.309374\n\t\t 0.61050302 0.29968601 0.60754102 0.309374 0.683604 0.31071001 0.68317598 0.31367901\n\t\t 0.68317598 0.31367901 0.60673499 0.31228 0.60754102 0.309374 0.52381599 0.104336\n\t\t 0.555237 0.103906 0.55400598 0.10601 0.55400598 0.10601 0.52312797 0.106678 0.52381599\n\t\t 0.104336 0.51870799 0.113902 0.52312797 0.106678 0.55400598 0.10601 0.55400598 0.10601\n\t\t 0.54760301 0.11408 0.51870799 0.113902 0.55331898 0.114192 0.54760301 0.11408 0.55400598\n\t\t 0.10601 0.55400598 0.10601 0.56345898 0.105795 0.55331898 0.114192 0.55400598 0.10601\n\t\t 0.555237 0.103906 0.56631702 0.103796 0.56631702 0.103796 0.56345898 0.105795 0.55400598\n\t\t 0.10601 0.42636099 0.38121 0.41398001 0.38720399 0.40402001 0.38401201 0.40402001\n\t\t 0.38401201 0.415912 0.378463 0.42636099 0.38121 0.415912 0.378463 0.40402001 0.38401201\n\t\t 0.393516 0.38139799 0.393516 0.38139799 0.40498099 0.37655899 0.415912 0.378463 0.39135301\n\t\t 0.38265499 0.393516 0.38139799 0.40402001 0.38401201 0.40402001 0.38401201 0.40135899\n\t\t 0.385407 0.39135301 0.38265499 0.40135899 0.385407 0.40402001 0.38401201 0.41398001\n\t\t 0.38720399 0.41398001 0.38720399 0.41072899 0.38871801 0.40135899 0.385407 0.41389799\n\t\t 0.39401001 0.41072899 0.38871801 0.41398001 0.38720399 0.41398001 0.38720399 0.41738901\n\t\t 0.392241 0.41389799 0.39401001 0.41738901 0.392241 0.41398001 0.38720399 0.42636099\n\t\t 0.38121 0.42636099 0.38121 0.43087101 0.385831 0.41738901 0.392241 0.39716601 0.37451401\n\t\t 0.40498099 0.37655899 0.393516 0.38139799 0.393516 0.38139799 0.38560301 0.37963599\n\t\t 0.39716601 0.37451401 0.38560301 0.37963599 0.393516 0.38139799 0.39135301 0.38265499\n\t\t 0.39135301 0.38265499 0.38317099 0.380211;\n\tsetAttr \".uvst[0].uvsp[19000:19249]\" 0.38560301 0.37963599 0.85397899 0.28908199\n\t\t 0.85341001 0.32266101 0.85031903 0.32228699 0.85031903 0.32228699 0.850676 0.28865799\n\t\t 0.85397899 0.28908199 0.92834198 0.41460299 0.927953 0.40186301 0.93007898 0.403458\n\t\t 0.93007898 0.403458 0.93060499 0.416215 0.92834198 0.41460299 0.92834198 0.41460299\n\t\t 0.93060499 0.416215 0.93093503 0.43923301 0.93093503 0.43923301 0.9285 0.43728501\n\t\t 0.92834198 0.41460299 0.92965698 0.389483 0.93007898 0.403458 0.927953 0.40186301\n\t\t 0.927953 0.40186301 0.92768902 0.387822 0.92965698 0.389483 0.92981499 0.377763 0.92965698\n\t\t 0.389483 0.92768902 0.387822 0.92768902 0.387822 0.92802203 0.37598199 0.92981499\n\t\t 0.377763 0.92798698 0.44937801 0.9285 0.43728501 0.93093503 0.43923301 0.93093503\n\t\t 0.43923301 0.93051302 0.451552 0.92798698 0.44937801 0.93013698 0.36491501 0.92981499\n\t\t 0.377763 0.92802203 0.37598199 0.92802203 0.37598199 0.92843097 0.36309701 0.93013698\n\t\t 0.36491501 0.93013698 0.36491501 0.92843097 0.36309701 0.92765701 0.33131099 0.92765701\n\t\t 0.33131099 0.92933398 0.33305699 0.93013698 0.36491501 0.69648302 0.024065999 0.74039698\n\t\t 0.024262 0.74782097 0.027043 0.74782097 0.027043 0.69580901 0.026498999 0.69648302\n\t\t 0.024065999 0.75479102 0.027086001 0.74782097 0.027043 0.74039698 0.024262 0.74039698\n\t\t 0.024262 0.74997801 0.024507999 0.75479102 0.027086001 0.75955403 0.027218999 0.75479102\n\t\t 0.027086001 0.74997801 0.024507999 0.74997801 0.024507999 0.75872099 0.024715001\n\t\t 0.75955403 0.027218999 0.76668102 0.027469 0.75955403 0.027218999 0.75872099 0.024715001\n\t\t 0.75872099 0.024715001 0.76719803 0.024901001 0.76668102 0.027469 0.76668102 0.027469\n\t\t 0.76719803 0.024901001 0.77556002 0.025009001 0.77556002 0.025009001 0.77509099 0.027997\n\t\t 0.76668102 0.027469 0.84137797 0.121736 0.83831 0.123122 0.81756401 0.096483 0.81756401\n\t\t 0.096483 0.82086098 0.094991997 0.84137797 0.121736 0.619757 0.196063 0.60738403\n\t\t 0.19566 0.60968399 0.19304501 0.60968399 0.19304501 0.62209201 0.19341201 0.619757\n\t\t 0.196063 0.619757 0.196063 0.62209201 0.19341201 0.64348602 0.193754 0.64348602 0.193754\n\t\t 0.64118701 0.19653 0.619757 0.196063 0.59577602 0.194057 0.60968399 0.19304501 0.60738403\n\t\t 0.19566 0.60738403 0.19566 0.59346098 0.196568 0.59577602 0.194057 0.58411503 0.19410899\n\t\t 0.59577602 0.194057 0.59346098 0.196568 0.59346098 0.196568 0.58143002 0.19608501\n\t\t 0.58411503 0.19410899 0.652439 0.197377 0.64118701 0.19653 0.64348602 0.193754 0.64348602\n\t\t 0.193754 0.65476298 0.194557 0.652439 0.197377 0.57139403 0.191496 0.58411503 0.19410899\n\t\t 0.58143002 0.19608501 0.58143002 0.19608501 0.56876999 0.19347499 0.57139403 0.191496\n\t\t 0.57139403 0.191496 0.56876999 0.19347499 0.53717101 0.197813 0.53717101 0.197813\n\t\t 0.539442 0.19550399 0.57139403 0.191496 0.86774701 0.31600001 0.87083 0.31202301\n\t\t 0.87375301 0.38231501 0.87375301 0.38231501 0.870462 0.38158801 0.86774701 0.31600001\n\t\t 0.87080097 0.30857399 0.87083 0.31202301 0.86774701 0.31600001 0.86774701 0.31600001\n\t\t 0.86752403 0.30793801 0.87080097 0.30857399 0.87080097 0.30857399 0.86752403 0.30793801\n\t\t 0.867562 0.303 0.867562 0.303 0.87084401 0.30513099 0.87080097 0.30857399 0.873851\n\t\t 0.30920199 0.87080097 0.30857399 0.87084401 0.30513099 0.87084401 0.30513099 0.87383997\n\t\t 0.30535501 0.873851 0.30920199 0.87389898 0.31305099 0.87083 0.31202301 0.87080097\n\t\t 0.30857399 0.87080097 0.30857399 0.873851 0.30920199 0.87389898 0.31305099 0.87105697\n\t\t 0.29557201 0.87084401 0.30513099 0.867562 0.303 0.867562 0.303 0.86768597 0.29499701\n\t\t 0.87105697 0.29557201 0.87105697 0.29557201 0.86768597 0.29499701 0.867845 0.28545499\n\t\t 0.867845 0.28545499 0.87122297 0.28602299 0.87105697 0.29557201 0.57187003 0.137556\n\t\t 0.56818497 0.137861 0.56820798 0.13516299 0.56820798 0.13516299 0.57241702 0.135199\n\t\t 0.57187003 0.137556 0.686445 0.198599 0.687828 0.202016 0.65756702 0.211661 0.65756702\n\t\t 0.211661 0.65617698 0.208233 0.686445 0.198599 0.687828 0.202016 0.686445 0.198599\n\t\t 0.69871902 0.19483 0.69871902 0.19483 0.70011002 0.198239 0.687828 0.202016 0.70011002\n\t\t 0.198239 0.69871902 0.19483 0.71000803 0.19158401 0.71000803 0.19158401 0.71142 0.19498099\n\t\t 0.70011002 0.198239 0.71142 0.19498099 0.71000803 0.19158401 0.72339499 0.18766899\n\t\t 0.72339499 0.18766899 0.72472697 0.19109 0.71142 0.19498099 0.72472697 0.19109 0.72339499\n\t\t 0.18766899 0.73551297 0.18401299 0.73551297 0.18401299 0.73654002 0.187553 0.72472697\n\t\t 0.19109 0.73654002 0.187553 0.73551297 0.18401299 0.75701302 0.17702299 0.75701302\n\t\t 0.17702299 0.75686198 0.18127599 0.73654002 0.187553 0.75686198 0.18127599 0.75701302\n\t\t 0.17702299 0.768363 0.17291901 0.768363 0.17291901 0.76752001 0.17771 0.75686198\n\t\t 0.18127599 0.76752001 0.17771 0.768363 0.17291901 0.79453599 0.194085 0.79453599\n\t\t 0.194085 0.79362398 0.199131 0.76752001 0.17771 0.79362398 0.199131 0.79453599 0.194085\n\t\t 0.858154 0.202461 0.858154 0.202461 0.85876799 0.20755 0.79362398 0.199131 0.85876799\n\t\t 0.20755 0.858154 0.202461 0.86664701 0.203467 0.86664701 0.203467 0.866835 0.208482\n\t\t 0.85876799 0.20755 0.866835 0.208482 0.86664701 0.203467 0.87243098 0.20423099 0.87243098\n\t\t 0.20423099 0.87178499 0.209057 0.866835 0.208482 0.87975401 0.20998099 0.87178499\n\t\t 0.209057 0.87243098 0.20423099 0.87243098 0.20423099 0.88110203 0.20548201 0.87975401\n\t\t 0.20998099 0.87975401 0.20998099 0.88110203 0.20548201 0.891442 0.206397;\n\tsetAttr \".uvst[0].uvsp[19250:19499]\" 0.891442 0.206397 0.88923103 0.21107499 0.87975401\n\t\t 0.20998099 0.084554002 0.66624498 0.084656 0.687491 0.01113 0.67762703 0.01113 0.67762703\n\t\t 0.01548 0.66322899 0.084554002 0.66624498 0.084554002 0.66624498 0.01548 0.66322899\n\t\t 0.023274999 0.63237798 0.023274999 0.63237798 0.078962997 0.62985301 0.084554002\n\t\t 0.66624498 0.076797001 0.61361903 0.078962997 0.62985301 0.023274999 0.63237798 0.023274999\n\t\t 0.63237798 0.026728 0.615888 0.076797001 0.61361903 0.073853999 0.59056199 0.076797001\n\t\t 0.61361903 0.026728 0.615888 0.026728 0.615888 0.032113999 0.58755302 0.073853999\n\t\t 0.59056199 0.070537999 0.56408697 0.073853999 0.59056199 0.032113999 0.58755302 0.032113999\n\t\t 0.58755302 0.034131002 0.56350201 0.070537999 0.56408697 0.0062290002 0.57881999\n\t\t 0.032113999 0.58755302 0.026728 0.615888 0.026728 0.615888 0.0032939999 0.58047301\n\t\t 0.0062290002 0.57881999 0.0091549996 0.577169 0.034131002 0.56350201 0.032113999\n\t\t 0.58755302 0.032113999 0.58755302 0.0062290002 0.57881999 0.0091549996 0.577169 0.019107999\n\t\t 0.68937701 0.01113 0.67762703 0.084656 0.687491 0.01113 0.67762703 0.019107999 0.68937701\n\t\t 0.0038399999 0.69329602 0.0038399999 0.69329602 0.002567 0.686782 0.01113 0.67762703\n\t\t 0.0038399999 0.69329602 0.019107999 0.68937701 0.018978 0.70142901 0.018978 0.70142901\n\t\t 0.0056039998 0.70303798 0.0038399999 0.69329602 0.061315 0.71338999 0.018978 0.70142901\n\t\t 0.019107999 0.68937701 0.019107999 0.68937701 0.073982999 0.700634 0.061315 0.71338999\n\t\t 0.084656 0.687491 0.073982999 0.700634 0.019107999 0.68937701 0.0056039998 0.70303798\n\t\t 0.018978 0.70142901 0.019805999 0.71975303 0.019805999 0.71975303 0.0084239999 0.71946102\n\t\t 0.0056039998 0.70303798 0.0084239999 0.71946102 0.019805999 0.71975303 0.020849001\n\t\t 0.740026 0.020849001 0.740026 0.011422 0.73799902 0.0084239999 0.71946102 0.044597\n\t\t 0.748954 0.020849001 0.740026 0.019805999 0.71975303 0.019805999 0.71975303 0.052046001\n\t\t 0.73047298 0.044597 0.748954 0.052046001 0.73047298 0.019805999 0.71975303 0.018978\n\t\t 0.70142901 0.018978 0.70142901 0.061315 0.71338999 0.052046001 0.73047298 0.011422\n\t\t 0.73799902 0.020849001 0.740026 0.021514 0.75833601 0.021514 0.75833601 0.013853\n\t\t 0.754605 0.011422 0.73799902 0.013853 0.754605 0.021514 0.75833601 0.022001 0.77261603\n\t\t 0.022001 0.77261603 0.015707999 0.767533 0.013853 0.754605 0.03081 0.782812 0.022001\n\t\t 0.77261603 0.021514 0.75833601 0.022001 0.77261603 0.03081 0.782812 0.029146001 0.78655797\n\t\t 0.029146001 0.78655797 0.022242 0.78011602 0.022001 0.77261603 0.015707999 0.767533\n\t\t 0.022001 0.77261603 0.022242 0.78011602 0.022242 0.78011602 0.029146001 0.78655797\n\t\t 0.027484 0.79030597 0.027484 0.79030597 0.022367001 0.78422499 0.022242 0.78011602\n\t\t 0.021514 0.75833601 0.037544001 0.76607603 0.03081 0.782812 0.037544001 0.76607603\n\t\t 0.021514 0.75833601 0.020849001 0.740026 0.020849001 0.740026 0.044597 0.748954 0.037544001\n\t\t 0.76607603 0.022242 0.78011602 0.016674001 0.77433199 0.015707999 0.767533 0.022242\n\t\t 0.78011602 0.022367001 0.78422499 0.017204 0.77806801 0.017204 0.77806801 0.016674001\n\t\t 0.77433199 0.022242 0.78011602 0.75587898 0.253685 0.76320899 0.253791 0.76333398\n\t\t 0.25754601 0.76333398 0.25754601 0.755862 0.257471 0.75587898 0.253685 0.77087599\n\t\t 0.25727499 0.76333398 0.25754601 0.76320899 0.253791 0.76320899 0.253791 0.77171099\n\t\t 0.25350699 0.77087599 0.25727499 0.76341599 0.24928799 0.76320899 0.253791 0.75587898\n\t\t 0.253685 0.77171099 0.25350699 0.76320899 0.253791 0.76341599 0.24928799 0.75587898\n\t\t 0.253685 0.756024 0.24929 0.76341599 0.24928799 0.76341599 0.24928799 0.77203602\n\t\t 0.249065 0.77171099 0.25350699 0.50370598 0.144481 0.48809001 0.145192 0.48818901\n\t\t 0.141232 0.48818901 0.141232 0.50398701 0.140479 0.50370598 0.144481 0.53229398 0.14461\n\t\t 0.50370598 0.144481 0.50398701 0.140479 0.50398701 0.140479 0.53385901 0.140769 0.53229398\n\t\t 0.14461 0.53229398 0.14461 0.53385901 0.140769 0.54795301 0.14183401 0.54795301 0.14183401\n\t\t 0.54526901 0.14544199 0.53229398 0.14461 0.501239 0.149157 0.50370598 0.144481 0.53229398\n\t\t 0.14461 0.53229398 0.14461 0.52982199 0.148945 0.501239 0.149157 0.52982199 0.148945\n\t\t 0.53229398 0.14461 0.54526901 0.14544199 0.485816 0.149636 0.48809001 0.145192 0.50370598\n\t\t 0.144481 0.50370598 0.144481 0.501239 0.149157 0.485816 0.149636 0.54526901 0.14544199\n\t\t 0.54298902 0.149198 0.52982199 0.148945 0.66070402 0.194537 0.67327797 0.194509 0.67278397\n\t\t 0.19897699 0.67278397 0.19897699 0.66102099 0.199057 0.66070402 0.194537 0.67327797\n\t\t 0.194509 0.66070402 0.194537 0.66162199 0.189998 0.66162199 0.189998 0.67437702 0.19025899\n\t\t 0.67327797 0.194509 0.79310203 0.13009299 0.83299899 0.130914 0.83086503 0.134262\n\t\t 0.83086503 0.134262 0.79403502 0.133132 0.79310203 0.13009299 0.79270899 0.138613\n\t\t 0.79403502 0.133132 0.83086503 0.134262 0.83086503 0.134262 0.82828498 0.13854299\n\t\t 0.79270899 0.138613 0.613841 0.228816 0.61772501 0.229093 0.61829102 0.23329 0.61829102\n\t\t 0.23329 0.61433297 0.233024 0.613841 0.228816 0.613841 0.228816 0.61433297 0.233024\n\t\t 0.60712498 0.23254199 0.60712498 0.23254199 0.60676998 0.22831599 0.613841 0.228816\n\t\t 0.61401999 0.238004 0.61433297 0.233024 0.61829102 0.23329 0.61829102 0.23329 0.61803299\n\t\t 0.238178 0.61401999 0.238004 0.60671002 0.237688 0.60712498 0.23254199 0.61433297\n\t\t 0.233024 0.61433297 0.233024 0.61401999 0.238004 0.60671002 0.237688 0.60676998 0.22831599;\n\tsetAttr \".uvst[0].uvsp[19500:19749]\" 0.60712498 0.23254199 0.59342599 0.23160701\n\t\t 0.59342599 0.23160701 0.59332299 0.227349 0.60676998 0.22831599 0.59332299 0.227349\n\t\t 0.59342599 0.23160701 0.57581699 0.23046599 0.57581699 0.23046599 0.576015 0.2263\n\t\t 0.59332299 0.227349 0.576015 0.2263 0.57581699 0.23046599 0.556104 0.23083501 0.556104\n\t\t 0.23083501 0.55662102 0.22670101 0.576015 0.2263 0.55662102 0.22670101 0.556104 0.23083501\n\t\t 0.53851199 0.232206 0.53851199 0.232206 0.53946698 0.228007 0.55662102 0.22670101\n\t\t 0.53946698 0.228007 0.53851199 0.232206 0.52767402 0.23348799 0.52767402 0.23348799\n\t\t 0.52932101 0.22924 0.53946698 0.228007 0.52259398 0.230551 0.52932101 0.22924 0.52767402\n\t\t 0.23348799 0.52767402 0.23348799 0.52012902 0.23489299 0.52259398 0.230551 0.52662998\n\t\t 0.23873 0.52767402 0.23348799 0.53851199 0.232206 0.53851199 0.232206 0.537552 0.237693\n\t\t 0.52662998 0.23873 0.537552 0.237693 0.53851199 0.232206 0.556104 0.23083501 0.51898199\n\t\t 0.239859 0.52012902 0.23489299 0.52767402 0.23348799 0.52767402 0.23348799 0.52662998\n\t\t 0.23873 0.51898199 0.239859 0.55518001 0.23649 0.556104 0.23083501 0.57581699 0.23046599\n\t\t 0.556104 0.23083501 0.55518001 0.23649 0.537552 0.237693 0.57581699 0.23046599 0.57498097\n\t\t 0.236147 0.55518001 0.23649 0.57498097 0.236147 0.57581699 0.23046599 0.59342599\n\t\t 0.23160701 0.59342599 0.23160701 0.592803 0.237068 0.57498097 0.236147 0.592803 0.237068\n\t\t 0.59342599 0.23160701 0.60712498 0.23254199 0.60712498 0.23254199 0.60671002 0.237688\n\t\t 0.592803 0.237068 0.67336899 0.182097 0.66637897 0.18199199 0.67015201 0.17616899\n\t\t 0.67015201 0.17616899 0.67490202 0.17924 0.67336899 0.182097 0.66746497 0.175771\n\t\t 0.67015201 0.17616899 0.66637897 0.18199199 0.66637897 0.18199199 0.66382802 0.18183\n\t\t 0.66746497 0.175771 0.66382802 0.18183 0.66134399 0.18223999 0.66746497 0.175771\n\t\t 0.69523799 0.30471101 0.69516599 0.30721 0.69278502 0.30713099 0.69278502 0.30713099\n\t\t 0.69285601 0.30464801 0.69523799 0.30471101 0.69523799 0.30471101 0.69285601 0.30464801\n\t\t 0.69291598 0.30216101 0.69291598 0.30216101 0.69529802 0.30221599 0.69523799 0.30471101\n\t\t 0.69269401 0.30961701 0.69278502 0.30713099 0.69516599 0.30721 0.69516599 0.30721\n\t\t 0.69507498 0.30970499 0.69269401 0.30961701 0.69260299 0.312107 0.69269401 0.30961701\n\t\t 0.69507498 0.30970499 0.69507498 0.30970499 0.69498402 0.31219599 0.69260299 0.312107\n\t\t 0.692514 0.31459999 0.69260299 0.312107 0.69498402 0.31219599 0.69498402 0.31219599\n\t\t 0.69489002 0.31468299 0.692514 0.31459999 0.69240701 0.317231 0.692514 0.31459999\n\t\t 0.69489002 0.31468299 0.69489002 0.31468299 0.69483 0.31716001 0.69240701 0.317231\n\t\t 0.69267201 0.31985 0.69240701 0.317231 0.69483 0.31716001 0.69483 0.31716001 0.69503802\n\t\t 0.31963 0.69267201 0.31985 0.69291401 0.32247999 0.69267201 0.31985 0.69503802 0.31963\n\t\t 0.69503802 0.31963 0.69528598 0.32225999 0.69291401 0.32247999 0.69535202 0.29972199\n\t\t 0.69529802 0.30221599 0.69291598 0.30216101 0.69291598 0.30216101 0.69296902 0.29967099\n\t\t 0.69535202 0.29972199 0.69535202 0.29972199 0.69296902 0.29967099 0.69302499 0.29703099\n\t\t 0.69302499 0.29703099 0.69540697 0.29708099 0.69535202 0.29972199 0.41610599 0.42216799\n\t\t 0.414267 0.41980299 0.42295 0.41289401 0.42295 0.41289401 0.425208 0.41580001 0.41610599\n\t\t 0.42216799 0.41610599 0.42216799 0.425208 0.41580001 0.42730299 0.418827 0.42730299\n\t\t 0.418827 0.41780999 0.42462999 0.41610599 0.42216799 0.420508 0.41010001 0.42295\n\t\t 0.41289401 0.414267 0.41980299 0.414267 0.41980299 0.41231701 0.41756901 0.420508\n\t\t 0.41010001 0.41789901 0.40745801 0.420508 0.41010001 0.41231701 0.41756901 0.41231701\n\t\t 0.41756901 0.41023299 0.41546199 0.41789901 0.40745801 0.41514701 0.40496501 0.41789901\n\t\t 0.40745801 0.41023299 0.41546199 0.41023299 0.41546199 0.40803799 0.41347 0.41514701\n\t\t 0.40496501 0.412251 0.40264601 0.41514701 0.40496501 0.40803799 0.41347 0.40803799\n\t\t 0.41347 0.40572199 0.41161701 0.412251 0.40264601 0.409251 0.40051401 0.412251 0.40264601\n\t\t 0.40572199 0.41161701 0.40572199 0.41161701 0.40327999 0.40988201 0.409251 0.40051401\n\t\t 0.40613699 0.39855099 0.409251 0.40051401 0.40327999 0.40988201 0.40327999 0.40988201\n\t\t 0.400747 0.40828499 0.40613699 0.39855099 0.41935 0.427196 0.41780999 0.42462999\n\t\t 0.42730299 0.418827 0.42730299 0.418827 0.429198 0.42198399 0.41935 0.427196 0.41935\n\t\t 0.427196 0.429198 0.42198399 0.43110201 0.42539099 0.43110201 0.42539099 0.42089799\n\t\t 0.42996401 0.41935 0.427196 0.40613699 0.39855099 0.400747 0.40828499 0.39811799\n\t\t 0.406856 0.39811799 0.406856 0.40290201 0.39679301 0.40613699 0.39855099 0.40290201\n\t\t 0.39679301 0.39811799 0.406856 0.39528501 0.40542901 0.39528501 0.40542901 0.39941499\n\t\t 0.39503801 0.40290201 0.39679301 0.57769102 0.14506701 0.57577503 0.143994 0.576603\n\t\t 0.141628 0.576603 0.141628 0.57878602 0.141927 0.57769102 0.14506701 0.57577503 0.143994\n\t\t 0.57769102 0.14506701 0.57558697 0.147627 0.57558697 0.147627 0.57417101 0.14594001\n\t\t 0.57577503 0.143994 0.57417101 0.14594001 0.57558697 0.147627 0.57270598 0.149244\n\t\t 0.57270598 0.149244 0.57195997 0.14717899 0.57417101 0.14594001 0.57195997 0.14717899\n\t\t 0.57270598 0.149244 0.56946099 0.149838 0.56946099 0.149838 0.56945699 0.147636 0.57195997\n\t\t 0.14717899 0.56945699 0.147636 0.56946099 0.149838 0.56621599 0.149257 0.56621599\n\t\t 0.149257 0.566953 0.14718799 0.56945699 0.147636 0.566953 0.14718799 0.56621599 0.149257;\n\tsetAttr \".uvst[0].uvsp[19750:19999]\" 0.56332701 0.147654 0.56332701 0.147654 0.56473398\n\t\t 0.14595801 0.566953 0.14718799 0.56473398 0.14595801 0.56332701 0.147654 0.56120801\n\t\t 0.145109 0.56120801 0.145109 0.56311601 0.144021 0.56473398 0.14595801 0.56311601\n\t\t 0.144021 0.56120801 0.145109 0.56008601 0.141982 0.56008601 0.141982 0.56176603 0.14173\n\t\t 0.56311601 0.144021 0.56237102 0.139156 0.56176603 0.14173 0.56008601 0.141982 0.56008601\n\t\t 0.141982 0.560233 0.138652 0.56237102 0.139156 0.56296998 0.13658801 0.56237102 0.139156\n\t\t 0.560233 0.138652 0.560233 0.138652 0.56103802 0.135203 0.56296998 0.13658801 0.578583\n\t\t 0.13859899 0.57878602 0.141927 0.576603 0.141628 0.576603 0.141628 0.57645398 0.139138\n\t\t 0.578583 0.13859899 0.578583 0.13859899 0.57645398 0.139138 0.57581198 0.136581 0.57581198\n\t\t 0.136581 0.57771999 0.13516299 0.578583 0.13859899 0.51196599 0.062550999 0.51019597\n\t\t 0.061397001 0.51394397 0.057500001 0.51394397 0.057500001 0.51404798 0.062905997\n\t\t 0.51196599 0.062550999 0.51404798 0.062905997 0.51394397 0.057500001 0.51783901 0.061251\n\t\t 0.51783901 0.061251 0.51628602 0.062863998 0.51404798 0.062905997 0.51939201 0.059636999\n\t\t 0.51783901 0.061251 0.51394397 0.057500001 0.51394397 0.057500001 0.51934999 0.057397999\n\t\t 0.51939201 0.059636999 0.51934999 0.057397999 0.51394397 0.057500001 0.51769298 0.053605001\n\t\t 0.51769298 0.053605001 0.51930702 0.055158999 0.51934999 0.057397999 0.51592302 0.052451\n\t\t 0.51769298 0.053605001 0.51394397 0.057500001 0.51394397 0.057500001 0.51384002 0.052095\n\t\t 0.51592302 0.052451 0.51384002 0.052095 0.51394397 0.057500001 0.51004702 0.053753\n\t\t 0.51004702 0.053753 0.51177102 0.052531 0.51384002 0.052095 0.50889301 0.055523999\n\t\t 0.51004702 0.053753 0.51394397 0.057500001 0.51394397 0.057500001 0.50853801 0.057606999\n\t\t 0.50889301 0.055523999 0.50853801 0.057606999 0.51394397 0.057500001 0.51019597 0.061397001\n\t\t 0.51019597 0.061397001 0.50897503 0.059673999 0.50853801 0.057606999 0.38558501 0.65196502\n\t\t 0.38812301 0.65205401 0.38620201 0.668244 0.38620201 0.668244 0.38210201 0.66811901\n\t\t 0.38558501 0.65196502 0.38558501 0.65196502 0.38210201 0.66811901 0.37781999 0.66715401\n\t\t 0.37781999 0.66715401 0.38310701 0.65140998 0.38558501 0.65196502 0.38979101 0.66750401\n\t\t 0.38620201 0.668244 0.38812301 0.65205401 0.38812301 0.65205401 0.390632 0.65167499\n\t\t 0.38979101 0.66750401 0.39350399 0.66637897 0.38979101 0.66750401 0.390632 0.65167499\n\t\t 0.390632 0.65167499 0.393047 0.65096802 0.39350399 0.66637897 0.380797 0.65035897\n\t\t 0.38310701 0.65140998 0.37781999 0.66715401 0.37781999 0.66715401 0.373822 0.66534001\n\t\t 0.380797 0.65035897 0.380797 0.65035897 0.373822 0.66534001 0.36978599 0.66303402\n\t\t 0.36978599 0.66303402 0.378463 0.64902103 0.380797 0.65035897 0.40093401 0.66008598\n\t\t 0.39350399 0.66637897 0.393047 0.65096802 0.393047 0.65096802 0.39531499 0.650002\n\t\t 0.40093401 0.66008598 0.40093401 0.66008598 0.39531499 0.650002 0.39752901 0.64878601\n\t\t 0.39752901 0.64878601 0.40835401 0.65386301 0.40093401 0.66008598 0.77610803 0.196917\n\t\t 0.77589703 0.204804 0.76472598 0.201111 0.76472598 0.201111 0.76461798 0.196238 0.77610803\n\t\t 0.196917 0.77610803 0.196917 0.76461798 0.196238 0.76450503 0.191365 0.76450503 0.191365\n\t\t 0.77632201 0.18903001 0.77610803 0.196917 0.70810801 0.177789 0.70671701 0.17658401\n\t\t 0.70875603 0.174833 0.70875603 0.174833 0.70973802 0.176393 0.70810801 0.177789 0.70671701\n\t\t 0.17658401 0.70810801 0.177789 0.706949 0.17957699 0.706949 0.17957699 0.70525301\n\t\t 0.17885 0.70671701 0.17658401 0.70525301 0.17885 0.706949 0.17957699 0.70643502 0.181633\n\t\t 0.70643502 0.181633 0.70459902 0.18147799 0.70525301 0.17885 0.70459902 0.18147799\n\t\t 0.70643502 0.181633 0.70623702 0.183862 0.70623702 0.183862 0.70434302 0.184343 0.70459902\n\t\t 0.18147799 0.70973802 0.176393 0.70875603 0.174833 0.71121502 0.17377 0.71121502\n\t\t 0.17377 0.71171802 0.175538 0.70973802 0.176393 0.71171802 0.175538 0.71121502 0.17377\n\t\t 0.71386099 0.17338701 0.71386099 0.17338701 0.71386099 0.175228 0.71171802 0.175538\n\t\t 0.71386099 0.175228 0.71386099 0.17338701 0.716506 0.17377 0.716506 0.17377 0.716003\n\t\t 0.175538 0.71386099 0.175228 0.716003 0.175538 0.716506 0.17377 0.71896499 0.174834\n\t\t 0.71896499 0.174834 0.71798402 0.176394 0.716003 0.175538 0.71798402 0.176394 0.71896499\n\t\t 0.174834 0.72100401 0.17658401 0.72100401 0.17658401 0.71961302 0.177789 0.71798402\n\t\t 0.176394 0.71961302 0.177789 0.72100401 0.17658401 0.72246802 0.17885 0.72246802\n\t\t 0.17885 0.72077203 0.17957801 0.71961302 0.177789 0.72077203 0.17957801 0.72246802\n\t\t 0.17885 0.72312301 0.18147799 0.72312301 0.18147799 0.72128701 0.181633 0.72077203\n\t\t 0.17957801 0.72128701 0.181633 0.72312301 0.18147799 0.72337902 0.18434399 0.72337902\n\t\t 0.18434399 0.72148597 0.183862 0.72128701 0.181633 0.74501503 0.19835401 0.74502701\n\t\t 0.19147301 0.74895298 0.190598 0.74895298 0.190598 0.74894798 0.198359 0.74501503\n\t\t 0.19835401 0.74502701 0.19147301 0.74501503 0.19835401 0.74084598 0.19834501 0.74084598\n\t\t 0.19834501 0.74085999 0.19255599 0.74502701 0.19147301 0.74894798 0.198359 0.74895298\n\t\t 0.190598 0.75252301 0.19014201 0.75252301 0.19014201 0.75252301 0.198359 0.74894798\n\t\t 0.198359 0.75252301 0.198359 0.75252301 0.19014201 0.75629801 0.189898 0.75629801\n\t\t 0.189898 0.75629801 0.198359 0.75252301 0.198359 0.74085999 0.19255599 0.74084598\n\t\t 0.19834501 0.736678 0.198333 0.736678 0.198333 0.736691 0.193636 0.74085999 0.19255599;\n\tsetAttr \".uvst[0].uvsp[20000:20249]\" 0.736691 0.193636 0.736678 0.198333 0.73224902\n\t\t 0.19832 0.73224902 0.19832 0.73225999 0.19471499 0.736691 0.193636 0.684313 0.182019\n\t\t 0.68433899 0.176845 0.68777502 0.173574 0.68777502 0.173574 0.68773502 0.182036 0.684313\n\t\t 0.182019 0.68066603 0.17405701 0.68777502 0.173574 0.68433899 0.176845 0.68433899\n\t\t 0.176845 0.68065399 0.176828 0.68066603 0.17405701 0.84167898 0.354296 0.86419803\n\t\t 0.354498 0.86442798 0.32884201 0.84295201 0.329703 0.113811 0.34452999 0.007183 0.33719301\n\t\t 0.013101 0.370103 0.117148 0.36316901 0.119199 0.37452301 0.017441001 0.39413401\n\t\t 0.106473 0.39387301 0.114475 0.31726399 0.0087519996 0.31033599 0.007183 0.33719301\n\t\t 0.007183 0.33719301 0.113811 0.34452999 0.0090950001 0.305029 0.114827 0.311957 0.42603299\n\t\t 0.17605799 0.42603299 0.15040199 0.394447 0.15040199 0.394447 0.17605799 0.321877\n\t\t 0.188049 0.35354999 0.19298901 0.348176 0.16015901 0.32679299 0.156847 0.37265399\n\t\t 0.15640201 0.348176 0.16015901 0.35354999 0.19298901 0.35354999 0.19298901 0.378158\n\t\t 0.189257 0.72596699 0.333464 0.73654997 0.30187699 0.703448 0.30187699 0.703448 0.333464\n\t\t 0.59112501 0.304896 0.589903 0.329532 0.59794003 0.33627099 0.599406 0.29825401 0.55060798\n\t\t 0.33683601 0.55799103 0.33018199 0.55072701 0.297791 0.59947598 0.29070199 0.550798\n\t\t 0.29023901 0.558025 0.30452901 0.59846699 0.059211999 0.64087701 0.069966003 0.64082301\n\t\t 0.055066001 0.59845299 0.05522 0.27203199 0.65773499 0.25467199 0.66291797 0.26074699\n\t\t 0.68323201 0.27808601 0.678056 0.84295201 0.329703 0.86442798 0.32884201 0.86419803\n\t\t 0.354498 0.86419803 0.354498 0.84167898 0.354296 0.84295201 0.329703 0.117148 0.36316901\n\t\t 0.119199 0.37452301 0.013101 0.370103 0.117148 0.36316901 0.013101 0.370103 0.007183\n\t\t 0.33719301 0.117148 0.36316901 0.007183 0.33719301 0.113811 0.34452999 0.017441001\n\t\t 0.39413401 0.013101 0.370103 0.119199 0.37452301 0.119199 0.37452301 0.106473 0.39387301\n\t\t 0.017441001 0.39413401 0.114475 0.31726399 0.113811 0.34452999 0.007183 0.33719301\n\t\t 0.007183 0.33719301 0.0087519996 0.31033599 0.114475 0.31726399 0.114475 0.31726399\n\t\t 0.0087519996 0.31033599 0.114475 0.31726399 0.42603299 0.17605799 0.394447 0.17605799\n\t\t 0.394447 0.15040199 0.394447 0.15040199 0.42603299 0.15040199 0.42603299 0.17605799\n\t\t 0.35354999 0.19298901 0.321877 0.188049 0.32679299 0.156847 0.32679299 0.156847 0.348176\n\t\t 0.16015901 0.35354999 0.19298901 0.37265399 0.15640201 0.378158 0.189257 0.35354999\n\t\t 0.19298901 0.35354999 0.19298901 0.348176 0.16015901 0.37265399 0.15640201 0.72596699\n\t\t 0.333464 0.703448 0.333464 0.703448 0.30187699 0.703448 0.30187699 0.73654997 0.30187699\n\t\t 0.72596699 0.333464 0.59794003 0.33627099 0.589903 0.329532 0.59112501 0.304896 0.59112501\n\t\t 0.304896 0.599406 0.29825401 0.59794003 0.33627099 0.589903 0.329532 0.59794003 0.33627099\n\t\t 0.55060798 0.33683601 0.55060798 0.33683601 0.55799103 0.33018199 0.589903 0.329532\n\t\t 0.55072701 0.297791 0.599406 0.29825401 0.59112501 0.304896 0.55799103 0.33018199\n\t\t 0.55060798 0.33683601 0.55072701 0.297791 0.599406 0.29825401 0.55072701 0.297791\n\t\t 0.55072701 0.297791 0.59112501 0.304896 0.558025 0.30452901 0.55072701 0.297791 0.55072701\n\t\t 0.297791 0.558025 0.30452901 0.55799103 0.33018199 0.64082301 0.055066001 0.64082301\n\t\t 0.055066001 0.64087701 0.069966003 0.26074699 0.68323201 0.27808601 0.678056 0.26074699\n\t\t 0.68323201 0.490747 0.326166 0.48999101 0.323838 0.47812799 0.32804 0.478616 0.33063301\n\t\t 0.473851 0.32905599 0.473995 0.33174601 0.46988299 0.32901201 0.469659 0.33188301\n\t\t 0.44931901 0.32584 0.44862801 0.329155 0.434971 0.324247 0.43401101 0.3281 0.42445901\n\t\t 0.328235 0.425782 0.32370701 0.417586 0.323277 0.41609901 0.32794899 0.40411201 0.327654\n\t\t 0.40525499 0.32365701 0.39264199 0.32506999 0.39191201 0.32832 0.38322201 0.32946301\n\t\t 0.38392499 0.32650599 0.37620899 0.32749099 0.37468001 0.330037 0.37468001 0.330037\n\t\t 0.37620899 0.32749099 0.37291199 0.32656199 0.37060499 0.32937601 0.37468001 0.330037\n\t\t 0.36489499 0.32365301 0.36153099 0.32688299 0.342603 0.316181 0.33799401 0.32011899\n\t\t 0.31866801 0.31010699 0.31510001 0.313528 0.30469501 0.307906 0.303489 0.31177399\n\t\t 0.27448699 0.33131701 0.29901999 0.314174 0.29938099 0.310406 0.273397 0.32837099\n\t\t 0.30469501 0.307906 0.303489 0.31177399 0.30469501 0.307906 0.48708099 0.31566501\n\t\t 0.47503299 0.319976 0.47812799 0.32804 0.47812799 0.32804 0.48999101 0.323838 0.473851\n\t\t 0.32905599 0.47812799 0.32804 0.47056201 0.32111099 0.473851 0.32905599 0.46988299\n\t\t 0.32901201 0.473851 0.32905599 0.46640199 0.32110101 0.46988299 0.32901201 0.44931901\n\t\t 0.32584 0.46988299 0.32901201 0.445355 0.318259 0.44931901 0.32584 0.434971 0.324247\n\t\t 0.44931901 0.32584 0.431153 0.31664601 0.434971 0.324247 0.434971 0.324247 0.42257199\n\t\t 0.31603301 0.425782 0.32370701 0.434971 0.324247 0.417586 0.323277 0.425782 0.32370701\n\t\t 0.41554701 0.31584901 0.417586 0.323277 0.40525499 0.32365701 0.417586 0.323277 0.40544999\n\t\t 0.31615901 0.40525499 0.32365701 0.39264199 0.32506999 0.40525499 0.32365701 0.39508399\n\t\t 0.316953 0.39264199 0.32506999 0.38392499 0.32650599 0.39264199 0.32506999 0.38727\n\t\t 0.31790799 0.38392499 0.32650599 0.37620899 0.32749099 0.38392499 0.32650599 0.37981901\n\t\t 0.31845099 0.37620899 0.32749099 0.37291199 0.32656199 0.37620899 0.32749099 0.37781399\n\t\t 0.317229;\n\tsetAttr \".uvst[0].uvsp[20250:20499]\" 0.37291199 0.32656199 0.36489499 0.32365301\n\t\t 0.37291199 0.32656199 0.37369299 0.31403601 0.36489499 0.32365301 0.342603 0.316181\n\t\t 0.36489499 0.32365301 0.35410899 0.30646101 0.342603 0.316181 0.342603 0.316181 0.32381701\n\t\t 0.30101001 0.31866801 0.31010699 0.342603 0.316181 0.30469501 0.307906 0.31866801\n\t\t 0.31010699 0.30618501 0.298976 0.30469501 0.307906 0.29938099 0.310406 0.30469501\n\t\t 0.307906 0.30062199 0.30236399 0.29938099 0.310406 0.29938099 0.310406 0.270208 0.32358101\n\t\t 0.273397 0.32837099 0.29938099 0.310406 0.490747 0.326166 0.478616 0.33063301 0.47812799\n\t\t 0.32804 0.47812799 0.32804 0.48999101 0.323838 0.490747 0.326166 0.473851 0.32905599\n\t\t 0.47812799 0.32804 0.478616 0.33063301 0.478616 0.33063301 0.473995 0.33174601 0.473851\n\t\t 0.32905599 0.46988299 0.32901201 0.473851 0.32905599 0.473995 0.33174601 0.473995\n\t\t 0.33174601 0.469659 0.33188301 0.46988299 0.32901201 0.44931901 0.32584 0.46988299\n\t\t 0.32901201 0.469659 0.33188301 0.469659 0.33188301 0.44862801 0.329155 0.44931901\n\t\t 0.32584 0.434971 0.324247 0.44931901 0.32584 0.44862801 0.329155 0.44862801 0.329155\n\t\t 0.43401101 0.3281 0.434971 0.324247 0.434971 0.324247 0.43401101 0.3281 0.42445901\n\t\t 0.328235 0.42445901 0.328235 0.425782 0.32370701 0.434971 0.324247 0.417586 0.323277\n\t\t 0.425782 0.32370701 0.42445901 0.328235 0.42445901 0.328235 0.41609901 0.32794899\n\t\t 0.417586 0.323277 0.417586 0.323277 0.41609901 0.32794899 0.40411201 0.327654 0.40411201\n\t\t 0.327654 0.40525499 0.32365701 0.417586 0.323277 0.39264199 0.32506999 0.40525499\n\t\t 0.32365701 0.40411201 0.327654 0.40411201 0.327654 0.39191201 0.32832 0.39264199\n\t\t 0.32506999 0.39264199 0.32506999 0.39191201 0.32832 0.38322201 0.32946301 0.38322201\n\t\t 0.32946301 0.38392499 0.32650599 0.39264199 0.32506999 0.37620899 0.32749099 0.38392499\n\t\t 0.32650599 0.38322201 0.32946301 0.38322201 0.32946301 0.37468001 0.330037 0.37620899\n\t\t 0.32749099 0.37291199 0.32656199 0.37620899 0.32749099 0.37468001 0.330037 0.37468001\n\t\t 0.330037 0.37060499 0.32937601 0.37291199 0.32656199 0.36489499 0.32365301 0.37291199\n\t\t 0.32656199 0.37060499 0.32937601 0.37060499 0.32937601 0.36153099 0.32688299 0.36489499\n\t\t 0.32365301 0.36489499 0.32365301 0.36153099 0.32688299 0.33799401 0.32011899 0.33799401\n\t\t 0.32011899 0.342603 0.316181 0.36489499 0.32365301 0.342603 0.316181 0.33799401 0.32011899\n\t\t 0.31510001 0.313528 0.31510001 0.313528 0.31866801 0.31010699 0.342603 0.316181 0.31866801\n\t\t 0.31010699 0.31510001 0.313528 0.303489 0.31177399 0.303489 0.31177399 0.30469501\n\t\t 0.307906 0.31866801 0.31010699 0.273397 0.32837099 0.29938099 0.310406 0.29901999\n\t\t 0.314174 0.29901999 0.314174 0.27448699 0.33131701 0.273397 0.32837099 0.29901999\n\t\t 0.314174 0.29938099 0.310406 0.30469501 0.307906 0.30469501 0.307906 0.303489 0.31177399\n\t\t 0.29901999 0.314174 0.48708099 0.31566501 0.48999101 0.323838 0.47812799 0.32804\n\t\t 0.47812799 0.32804 0.47503299 0.319976 0.48708099 0.31566501 0.47503299 0.319976\n\t\t 0.47812799 0.32804 0.473851 0.32905599 0.473851 0.32905599 0.47056201 0.32111099\n\t\t 0.47503299 0.319976 0.47056201 0.32111099 0.473851 0.32905599 0.46988299 0.32901201\n\t\t 0.46988299 0.32901201 0.46640199 0.32110101 0.47056201 0.32111099 0.46640199 0.32110101\n\t\t 0.46988299 0.32901201 0.44931901 0.32584 0.44931901 0.32584 0.445355 0.318259 0.46640199\n\t\t 0.32110101 0.445355 0.318259 0.44931901 0.32584 0.434971 0.324247 0.434971 0.324247\n\t\t 0.431153 0.31664601 0.445355 0.318259 0.42257199 0.31603301 0.431153 0.31664601 0.434971\n\t\t 0.324247 0.434971 0.324247 0.425782 0.32370701 0.42257199 0.31603301 0.42257199 0.31603301\n\t\t 0.425782 0.32370701 0.417586 0.323277 0.417586 0.323277 0.41554701 0.31584901 0.42257199\n\t\t 0.31603301 0.41554701 0.31584901 0.417586 0.323277 0.40525499 0.32365701 0.40525499\n\t\t 0.32365701 0.40544999 0.31615901 0.41554701 0.31584901 0.40544999 0.31615901 0.40525499\n\t\t 0.32365701 0.39264199 0.32506999 0.39264199 0.32506999 0.39508399 0.316953 0.40544999\n\t\t 0.31615901 0.39508399 0.316953 0.39264199 0.32506999 0.38392499 0.32650599 0.38392499\n\t\t 0.32650599 0.38727 0.31790799 0.39508399 0.316953 0.38727 0.31790799 0.38392499 0.32650599\n\t\t 0.37620899 0.32749099 0.37620899 0.32749099 0.37981901 0.31845099 0.38727 0.31790799\n\t\t 0.37981901 0.31845099 0.37620899 0.32749099 0.37291199 0.32656199 0.37291199 0.32656199\n\t\t 0.37781399 0.317229 0.37981901 0.31845099 0.37781399 0.317229 0.37291199 0.32656199\n\t\t 0.36489499 0.32365301 0.36489499 0.32365301 0.37369299 0.31403601 0.37781399 0.317229\n\t\t 0.37369299 0.31403601 0.36489499 0.32365301 0.342603 0.316181 0.342603 0.316181 0.35410899\n\t\t 0.30646101 0.37369299 0.31403601 0.35410899 0.30646101 0.342603 0.316181 0.31866801\n\t\t 0.31010699 0.31866801 0.31010699 0.32381701 0.30101001 0.35410899 0.30646101 0.32381701\n\t\t 0.30101001 0.31866801 0.31010699 0.30469501 0.307906 0.30469501 0.307906 0.30618501\n\t\t 0.298976 0.32381701 0.30101001 0.30618501 0.298976 0.30469501 0.307906 0.29938099\n\t\t 0.310406 0.29938099 0.310406 0.30062199 0.30236399 0.30618501 0.298976 0.270208 0.32358101\n\t\t 0.30062199 0.30236399 0.29938099 0.310406 0.29938099 0.310406 0.273397 0.32837099\n\t\t 0.270208 0.32358101 0.95228899 0.025598999 0.954373 0.01542 0.95029598 0.015402 0.94652498\n\t\t 0.016944 0.94364202 0.019801 0.94207799 0.023538999 0.94205302 0.027589001 0.943591\n\t\t 0.031327002 0.946455 0.034203999;\n\tsetAttr \".uvst[0].uvsp[20500:20749]\" 0.95020503 0.035772 0.95428997 0.035787001\n\t\t 0.95806003 0.034242999 0.96094602 0.031380001 0.96251303 0.027633 0.96251601 0.023606\n\t\t 0.96098101 0.019859999 0.95811999 0.016987 0.937859 0.015872 0.94268298 0.011103\n\t\t 0.935229 0.022120001 0.93519402 0.028902 0.937769 0.035185002 0.94255698 0.040002\n\t\t 0.948825 0.042621002 0.95561802 0.042647 0.96190399 0.040077001 0.96672899 0.035301\n\t\t 0.96935499 0.029045001 0.96938002 0.022265 0.96680301 0.015992001 0.962017 0.011183\n\t\t 0.95575398 0.0085669998 0.94896603 0.0085389996 0.94758701 0.0014290001 0.95719302\n\t\t 0.001469 0.93869299 0.0050590001 0.93186098 0.011815 0.92813402 0.020674 0.92808998\n\t\t 0.030288 0.93173701 0.039186999 0.93851501 0.046009 0.94738603 0.049717002 0.956999\n\t\t 0.049755 0.96589702 0.046117999 0.97272801 0.039354 0.97644901 0.03049 0.97648698\n\t\t 0.020877 0.972835 0.011986 0.96605802 0.005173 0.95228899 0.025598999 0.95029598\n\t\t 0.015402 0.954373 0.01542 0.95228899 0.025598999 0.94652498 0.016944 0.95029598 0.015402\n\t\t 0.95228899 0.025598999 0.94364202 0.019801 0.94652498 0.016944 0.95228899 0.025598999\n\t\t 0.94207799 0.023538999 0.94364202 0.019801 0.95228899 0.025598999 0.94205302 0.027589001\n\t\t 0.94207799 0.023538999 0.95228899 0.025598999 0.943591 0.031327002 0.94205302 0.027589001\n\t\t 0.95228899 0.025598999 0.946455 0.034203999 0.943591 0.031327002 0.95228899 0.025598999\n\t\t 0.95020503 0.035772 0.946455 0.034203999 0.95228899 0.025598999 0.95428997 0.035787001\n\t\t 0.95020503 0.035772 0.95228899 0.025598999 0.95806003 0.034242999 0.95428997 0.035787001\n\t\t 0.95228899 0.025598999 0.96094602 0.031380001 0.95806003 0.034242999 0.95228899 0.025598999\n\t\t 0.96251303 0.027633 0.96094602 0.031380001 0.95228899 0.025598999 0.96251601 0.023606\n\t\t 0.96251303 0.027633 0.95228899 0.025598999 0.96098101 0.019859999 0.96251601 0.023606\n\t\t 0.95228899 0.025598999 0.95811999 0.016987 0.96098101 0.019859999 0.95228899 0.025598999\n\t\t 0.954373 0.01542 0.95811999 0.016987 0.94652498 0.016944 0.94364202 0.019801 0.937859\n\t\t 0.015872 0.94364202 0.019801 0.94207799 0.023538999 0.935229 0.022120001 0.935229\n\t\t 0.022120001 0.937859 0.015872 0.94364202 0.019801 0.94205302 0.027589001 0.943591\n\t\t 0.031327002 0.937769 0.035185002 0.943591 0.031327002 0.946455 0.034203999 0.94255698\n\t\t 0.040002 0.94255698 0.040002 0.937769 0.035185002 0.943591 0.031327002 0.95020503\n\t\t 0.035772 0.95428997 0.035787001 0.95561802 0.042647 0.95428997 0.035787001 0.95806003\n\t\t 0.034242999 0.96190399 0.040077001 0.96190399 0.040077001 0.95561802 0.042647 0.95428997\n\t\t 0.035787001 0.96094602 0.031380001 0.96251303 0.027633 0.96935499 0.029045001 0.96251303\n\t\t 0.027633 0.96251601 0.023606 0.96938002 0.022265 0.96938002 0.022265 0.96935499 0.029045001\n\t\t 0.96251303 0.027633 0.96098101 0.019859999 0.95811999 0.016987 0.962017 0.011183\n\t\t 0.95811999 0.016987 0.954373 0.01542 0.95575398 0.0085669998 0.94896603 0.0085389996\n\t\t 0.95575398 0.0085669998 0.954373 0.01542 0.954373 0.01542 0.95029598 0.015402 0.94896603\n\t\t 0.0085389996 0.94268298 0.011103 0.94896603 0.0085389996 0.95029598 0.015402 0.95029598\n\t\t 0.015402 0.94652498 0.016944 0.94268298 0.011103 0.937859 0.015872 0.94268298 0.011103\n\t\t 0.94652498 0.016944 0.95575398 0.0085669998 0.962017 0.011183 0.95811999 0.016987\n\t\t 0.95575398 0.0085669998 0.94896603 0.0085389996 0.94758701 0.0014290001 0.94758701\n\t\t 0.0014290001 0.94896603 0.0085389996 0.94268298 0.011103 0.94758701 0.0014290001\n\t\t 0.95719302 0.001469 0.95575398 0.0085669998 0.94268298 0.011103 0.93869299 0.0050590001\n\t\t 0.94758701 0.0014290001 0.93869299 0.0050590001 0.94268298 0.011103 0.937859 0.015872\n\t\t 0.937859 0.015872 0.93186098 0.011815 0.93869299 0.0050590001 0.93186098 0.011815\n\t\t 0.937859 0.015872 0.935229 0.022120001 0.935229 0.022120001 0.92813402 0.020674 0.93186098\n\t\t 0.011815 0.92813402 0.020674 0.935229 0.022120001 0.93519402 0.028902 0.93519402\n\t\t 0.028902 0.935229 0.022120001 0.94207799 0.023538999 0.94207799 0.023538999 0.94205302\n\t\t 0.027589001 0.93519402 0.028902 0.937769 0.035185002 0.93519402 0.028902 0.94205302\n\t\t 0.027589001 0.93519402 0.028902 0.92808998 0.030288 0.92813402 0.020674 0.92808998\n\t\t 0.030288 0.93519402 0.028902 0.937769 0.035185002 0.937769 0.035185002 0.93173701\n\t\t 0.039186999 0.92808998 0.030288 0.93173701 0.039186999 0.937769 0.035185002 0.94255698\n\t\t 0.040002 0.94255698 0.040002 0.93851501 0.046009 0.93173701 0.039186999 0.93851501\n\t\t 0.046009 0.94255698 0.040002 0.948825 0.042621002 0.948825 0.042621002 0.94255698\n\t\t 0.040002 0.946455 0.034203999 0.946455 0.034203999 0.95020503 0.035772 0.948825 0.042621002\n\t\t 0.95561802 0.042647 0.948825 0.042621002 0.95020503 0.035772 0.948825 0.042621002\n\t\t 0.94738603 0.049717002 0.93851501 0.046009 0.94738603 0.049717002 0.948825 0.042621002\n\t\t 0.95561802 0.042647 0.95561802 0.042647 0.956999 0.049755 0.94738603 0.049717002\n\t\t 0.956999 0.049755 0.95561802 0.042647 0.96190399 0.040077001 0.96190399 0.040077001\n\t\t 0.96589702 0.046117999 0.956999 0.049755 0.96589702 0.046117999 0.96190399 0.040077001\n\t\t 0.96672899 0.035301 0.96672899 0.035301 0.96190399 0.040077001 0.95806003 0.034242999\n\t\t 0.95806003 0.034242999 0.96094602 0.031380001 0.96672899 0.035301 0.96935499 0.029045001\n\t\t 0.96672899 0.035301 0.96094602 0.031380001 0.96672899 0.035301 0.97272801 0.039354\n\t\t 0.96589702 0.046117999 0.97272801 0.039354 0.96672899 0.035301 0.96935499 0.029045001\n\t\t 0.96935499 0.029045001 0.97644901 0.03049 0.97272801 0.039354 0.97644901 0.03049\n\t\t 0.96935499 0.029045001 0.96938002 0.022265;\n\tsetAttr \".uvst[0].uvsp[20750:20999]\" 0.96938002 0.022265 0.97648698 0.020877 0.97644901\n\t\t 0.03049 0.97648698 0.020877 0.96938002 0.022265 0.96680301 0.015992001 0.96680301\n\t\t 0.015992001 0.96938002 0.022265 0.96251601 0.023606 0.96251601 0.023606 0.96098101\n\t\t 0.019859999 0.96680301 0.015992001 0.962017 0.011183 0.96680301 0.015992001 0.96098101\n\t\t 0.019859999 0.96680301 0.015992001 0.972835 0.011986 0.97648698 0.020877 0.972835\n\t\t 0.011986 0.96680301 0.015992001 0.962017 0.011183 0.962017 0.011183 0.96605802 0.005173\n\t\t 0.972835 0.011986 0.96605802 0.005173 0.962017 0.011183 0.95575398 0.0085669998 0.95575398\n\t\t 0.0085669998 0.95719302 0.001469 0.96605802 0.005173 0.60478902 0.32697201 0.65886199\n\t\t 0.32823601 0.65785903 0.32242599 0.6038 0.321188 0.66773403 0.359979 0.67004198 0.36335\n\t\t 0.66869497 0.365491 0.61461103 0.364254 0.61367399 0.35870999 0.66054398 0.32800201\n\t\t 0.659944 0.324599 0.65785903 0.32242599 0.60478902 0.32697201 0.60478902 0.32697201\n\t\t 0.6038 0.321188 0.6038 0.321188 0.6038 0.321188 0.60478902 0.32697201 0.60478902\n\t\t 0.32697201 0.60478902 0.32697201 0.61367399 0.35870999 0.61367399 0.35870999 0.61367399\n\t\t 0.35870999 0.60478902 0.32697201 0.61367399 0.35870999 0.61367399 0.35870999 0.61461103\n\t\t 0.364254 0.61461103 0.364254 0.61461103 0.364254 0.61367399 0.35870999 0.617019 0.35438901\n\t\t 0.66250199 0.35592201 0.65551102 0.33255699 0.610026 0.331027 0.47124499 0.08563\n\t\t 0.49407199 0.124874 0.51239198 0.10888 0.48956501 0.069636002 0.798998 0.164738 0.77688497\n\t\t 0.16444001 0.77682102 0.169227 0.79893398 0.169525 0.79782301 0.37359601 0.83907998\n\t\t 0.37507001 0.83925098 0.37028599 0.797993 0.36881199 0.78115302 0.238702 0.80326802\n\t\t 0.238702 0.80326802 0.233914 0.78115302 0.233914 0.718458 0.078093 0.759619 0.074913003\n\t\t 0.759251 0.070138998 0.71808898 0.073319003 0.60478902 0.32697201 0.6038 0.321188\n\t\t 0.65785903 0.32242599 0.65785903 0.32242599 0.65886199 0.32823601 0.60478902 0.32697201\n\t\t 0.66054398 0.32800201 0.65886199 0.32823601 0.65785903 0.32242599 0.66773403 0.359979\n\t\t 0.65886199 0.32823601 0.66054398 0.32800201 0.66054398 0.32800201 0.66943002 0.35986\n\t\t 0.66773403 0.359979 0.66773403 0.359979 0.66943002 0.35986 0.67004198 0.36335 0.67004198\n\t\t 0.36335 0.66869497 0.365491 0.66773403 0.359979 0.66773403 0.359979 0.66869497 0.365491\n\t\t 0.61461103 0.364254 0.61461103 0.364254 0.61367399 0.35870999 0.66773403 0.359979\n\t\t 0.65785903 0.32242599 0.659944 0.324599 0.66054398 0.32800201 0.617019 0.35438901\n\t\t 0.61367399 0.35870999 0.60478902 0.32697201 0.60478902 0.32697201 0.610026 0.331027\n\t\t 0.617019 0.35438901 0.610026 0.331027 0.60478902 0.32697201 0.65886199 0.32823601\n\t\t 0.66250199 0.35592201 0.66773403 0.359979 0.61367399 0.35870999 0.61367399 0.35870999\n\t\t 0.617019 0.35438901 0.66250199 0.35592201 0.65551102 0.33255699 0.65886199 0.32823601\n\t\t 0.66773403 0.359979 0.66773403 0.359979 0.66250199 0.35592201 0.65551102 0.33255699\n\t\t 0.65886199 0.32823601 0.65551102 0.33255699 0.610026 0.331027 0.47124499 0.08563\n\t\t 0.48956501 0.069636002 0.51239198 0.10888 0.51239198 0.10888 0.49407199 0.124874\n\t\t 0.47124499 0.08563 0.798998 0.164738 0.79893398 0.169525 0.77682102 0.169227 0.77682102\n\t\t 0.169227 0.77688497 0.16444001 0.798998 0.164738 0.79782301 0.37359601 0.797993 0.36881199\n\t\t 0.83925098 0.37028599 0.83925098 0.37028599 0.83907998 0.37507001 0.79782301 0.37359601\n\t\t 0.78115302 0.238702 0.78115302 0.233914 0.80326802 0.233914 0.80326802 0.233914 0.80326802\n\t\t 0.238702 0.78115302 0.238702 0.718458 0.078093 0.71808898 0.073319003 0.759251 0.070138998\n\t\t 0.759251 0.070138998 0.759619 0.074913003 0.718458 0.078093 0.153644 0.36192599 0.15472201\n\t\t 0.347193 0.14737 0.333774 0.13878 0.33371601 0.170789 0.349518 0.171372 0.362279\n\t\t 0.18434601 0.34904501 0.18731999 0.36173299 0.197899 0.348566 0.203308 0.361229 0.214476\n\t\t 0.345579 0.221442 0.35972601 0.21876501 0.340249 0.233404 0.34860101 0.22956599 0.326242\n\t\t 0.25862601 0.32567799 0.124433 0.30945 0.14048199 0.32094601 0.171895 0.308597 0.124092\n\t\t 0.308615 0.169838 0.32039699 0.234914 0.319107 0.27257299 0.31194699 0.27239901 0.31325701\n\t\t 0.20527799 0.70029497 0.183213 0.69088501 0.172011 0.71131301 0.194773 0.71963 0.25527701\n\t\t 0.71437699 0.24905001 0.73062301 0.146175 0.66950399 0.130183 0.69045901 0.14928199\n\t\t 0.66229802 0.146175 0.66950399 0.183213 0.69088501 0.183213 0.69088501 0.184911 0.682019\n\t\t 0.155085 0.65250999 0.18846899 0.67398298 0.20529 0.69065899 0.20527799 0.70029497\n\t\t 0.183213 0.69088501 0.183213 0.69088501 0.20527799 0.70029497 0.251955 0.70353299\n\t\t 0.25120601 0.69191903 0.27759099 0.69138002 0.28082901 0.70425802 0.315788 0.69211102\n\t\t 0.31338799 0.68538302 0.35396901 0.67738003 0.36746001 0.699745 0.32332599 0.70574999\n\t\t 0.34745401 0.67073601 0.28540301 0.71400797 0.282931 0.73087698 0.32461801 0.72294903\n\t\t 0.36122599 0.71204698 0.37717 0.69343603 0.36746001 0.699745 0.36122599 0.71204698\n\t\t 0.36122599 0.71204698 0.37962699 0.70248401 0.37717 0.69343603 0.38962001 0.68301803\n\t\t 0.37717 0.69343603 0.39707401 0.686203 0.40421301 0.66788101 0.40875 0.67190403 0.40738299\n\t\t 0.664285 0.40997699 0.67006201 0.42522699 0.63301498 0.32161799 0.677809 0.343052\n\t\t 0.66613799 0.30866501 0.67701298 0.34206301 0.66168201 0.278725 0.68712598 0.278725\n\t\t 0.68712598 0.278725 0.68712598 0.278725 0.68712598 0.251535 0.68821299 0.208046 0.67878801;\n\tsetAttr \".uvst[0].uvsp[21000:21249]\" 0.207776 0.681229 0.188972 0.67236 0.15474001\n\t\t 0.65295398 0.76185203 0.971398 0.73923099 0.97386903 0.73977602 0.976569 0.761244\n\t\t 0.974374 0.76254302 0.97261202 0.76226801 0.97939903 0.768085 0.97959101 0.76971501\n\t\t 0.98755801 0.76387697 0.98740101 0.76591802 0.99743301 0.77180398 0.99754 0.74081302\n\t\t 0.98155999 0.74254102 0.98943698 0.74449098 0.99944699 0.78207999 0.98837602 0.780294\n\t\t 0.97963399 0.78435999 0.999336 0.766936 0.97455603 0.778148 0.973836 0.77529502 0.97147\n\t\t 0.76498801 0.97213399 0.76432902 0.97113198 0.76498997 0.97213602 0.89157403 0.82677102\n\t\t 0.87142801 0.81740999 0.86627603 0.83245802 0.88972598 0.84458703 0.88566101 0.87857598\n\t\t 0.85601598 0.86275101 0.883403 0.89477998 0.85091603 0.87785298 0.75806999 0.004704\n\t\t 0.75889498 0.0025559999 0.74330699 0.001651 0.74275601 0.003848 0.72892499 0.00358\n\t\t 0.72920197 0.001334 0.71526599 0.003731 0.71527702 0.001425 0.700288 0.0043779998\n\t\t 0.70005 0.0019970001 0.79083401 0.024803 0.79149902 0.022652 0.774867 0.010979 0.77415901\n\t\t 0.013175 0.75889498 0.0025559999 0.75889498 0.0025559999 0.75806999 0.004704 0.66763097\n\t\t 0.021300999 0.66666299 0.019580999 0.65505499 0.026155001 0.65627098 0.027654 0.68913901\n\t\t 0.0075079999 0.68961799 0.0096739996 0.44563299 0.80971903 0.420533 0.80835301 0.42185\n\t\t 0.83162397 0.44869599 0.83172601 0.367423 0.83082998 0.36844301 0.80451399 0.366142\n\t\t 0.85516399 0.42299399 0.85255498 0.45152801 0.85111302 0.33404401 0.80204099 0.33134699\n\t\t 0.829642 0.28475901 0.79887301 0.27822301 0.82717597 0.23500299 0.79641002 0.225196\n\t\t 0.82338297 0.18745901 0.82175601 0.198378 0.79467303 0.12937 0.81943399 0.142957\n\t\t 0.79033399 0.120128 0.84801 0.178938 0.85061699 0.217693 0.85233098 0.424155 0.87317199\n\t\t 0.364324 0.87919301 0.36234099 0.90484399 0.323304 0.91085601 0.326107 0.88203597\n\t\t 0.27056199 0.88413 0.26879299 0.91797501 0.27312499 0.85449803 0.328724 0.85564202\n\t\t 0.214975 0.88395298 0.21415 0.91947001 0.42566201 0.895706 0.17533401 0.88305199\n\t\t 0.174026 0.92001098 0.111635 0.917961 0.114806 0.88105398 0.089451998 0.87933803\n\t\t 0.095866002 0.84599799 0.056219 0.83975297 0.048643 0.87414098 0.085736997 0.916192\n\t\t 0.044029001 0.91315198 0.066013999 0.810444 0.105076 0.81751698 0.079697996 0.78073102\n\t\t 0.118948 0.78847402 0.0095779998 0.86699098 0.018692 0.830015 0.0035590001 0.911304\n\t\t 0.029856 0.79853201 0.045083001 0.76613098 0.43040201 0.755144 0.42668399 0.78149801\n\t\t 0.44919199 0.78250802 0.456227 0.75485802 0.38194099 0.77833903 0.39609501 0.75272501\n\t\t 0.351019 0.77561897 0.368705 0.75051999 0.420533 0.80835301 0.420533 0.80835301 0.36844301\n\t\t 0.80451399 0.420533 0.80835301 0.36844301 0.80451399 0.420533 0.80835301 0.44563299\n\t\t 0.80971903 0.32250601 0.74537301 0.30224001 0.77092397 0.33404401 0.80204099 0.33404401\n\t\t 0.80204099 0.36844301 0.80451399 0.33404401 0.80204099 0.25174499 0.76654297 0.27289\n\t\t 0.73948801 0.215376 0.76297998 0.236084 0.73398399 0.162195 0.75542098 0.182005 0.72391498\n\t\t 0.139342 0.75237799 0.102257 0.74307197 0.160769 0.71903199 0.123933 0.70884103 0.070505001\n\t\t 0.72692502 0.093709998 0.69297898 0.48168099 0.127278 0.47972 0.126176 0.47907501\n\t\t 0.126985 0.481078 0.128078 0.65029198 0.032265998 0.67025298 0.039241001 0.670394\n\t\t 0.037496999 0.65096903 0.031534001 0.68782002 0.042435002 0.68931699 0.044767998\n\t\t 0.70376199 0.040947001 0.70450902 0.043611001 0.71803403 0.040867999 0.71846199 0.043602999\n\t\t 0.732086 0.041528001 0.73223799 0.044294 0.74749202 0.043033998 0.74720401 0.045793999\n\t\t 0.75941497 0.039960001 0.758977 0.042447001 0.78378999 0.035978999 0.78433502 0.034028001\n\t\t 0.797261 0.030694 0.79676402 0.032396998 0.50785601 0.010592 0.51826602 0.0027910001\n\t\t 0.51691401 0.001356 0.506199 0.0092500001 0.489052 0.026836 0.48679101 0.02568 0.48064199\n\t\t 0.035273001 0.47807199 0.034187 0.475732 0.049477998 0.47320199 0.048308998 0.471627\n\t\t 0.062527999 0.46913099 0.061313 0.46794799 0.075886004 0.46549401 0.074623004 0.464443\n\t\t 0.090815999 0.462028 0.089468002 0.47160599 0.107537 0.469933 0.107833 0.47972 0.126176\n\t\t 0.47907501 0.126985 0.47972 0.126176 0.84398198 0.959912 0.80793899 0.92561698 0.77908403\n\t\t 0.93861198 0.82179201 0.97434402 0.75456798 0.94946802 0.796345 0.98760402 0.87388003\n\t\t 0.91226202 0.883403 0.89477998 0.85091603 0.87785298 0.85091603 0.87785298 0.83976197\n\t\t 0.89059901 0.86472201 0.92800099 0.82959503 0.90183997 0.85497701 0.943591 0.81946099\n\t\t 0.913149 0.84398198 0.959912 0.80793899 0.92561698 0.84398198 0.959912 0.046918001\n\t\t 0.97280598 0.047867 0.99423897 0.088991001 0.99580097 0.088207997 0.97422099 0.045529999\n\t\t 0.95204902 0.087218001 0.953641 0.044411998 0.93239403 0.086378001 0.934569 0.115325\n\t\t 0.97605401 0.113897 0.95547599 0.116869 0.99763399 0.180702 0.97734499 0.183431 0.998703\n\t\t 0.17855699 0.95695102 0.176465 0.93823999 0.112731 0.9364 0.218034 0.937886 0.221321\n\t\t 0.95750898 0.275682 0.93605399 0.333094 0.92651099 0.37078801 0.919936 0.43161899\n\t\t 0.91130799 0.38741499 0.95105797 0.44270301 0.94329202 0.44942001 0.96028203 0.459113\n\t\t 0.934026 0.47592101 0.93936801 0.46080399 0.93168002 0.482844 0.95614398 0.45565\n\t\t 0.91625297 0.46380699 0.90680301 0.45499399 0.91488099 0.415943 0.96437597 0.39583999\n\t\t 0.967462 0.45784 0.89104801 0.45276901 0.91354698 0.44254899 0.94192302 0.433303\n\t\t 0.91212302 0.44258201 0.94013101 0.43522799 0.913324 0.85712498 0.035971001 0.85297102\n\t\t 0.033181001 0.84703702 0.03782 0.85163599 0.040994;\n\tsetAttr \".uvst[0].uvsp[21250:21499]\" 0.864986 0.041149002 0.86031997 0.046985 0.87060499\n\t\t 0.035342999 0.86282301 0.030334 0.85674101 0.026665 0.86031997 0.046985 0.85163599\n\t\t 0.040994 0.84238601 0.044852 0.85502303 0.053845 0.86031997 0.046985 0.83459097 0.039299\n\t\t 0.85163599 0.040994 0.85163599 0.040994 0.84703702 0.03782 0.81859899 0.038454998\n\t\t 0.83154398 0.047463998 0.85036898 0.059861999 0.88188303 0.060662001 0.88685602 0.054566\n\t\t 0.90618998 0.066547997 0.90022099 0.072319001 0.93713701 0.084114 0.93239802 0.090791002\n\t\t 0.950656 0.091057003 0.94616801 0.097998001 0.94297999 0.077464998 0.95644999 0.084352002\n\t\t 0.95485902 0.093194999 0.95035899 0.100113 0.96061599 0.086542003 0.93239802 0.090791002\n\t\t 0.90022099 0.072319001 0.89098197 0.076962002 0.92762601 0.098526999 0.93239802 0.090791002\n\t\t 0.94616801 0.097998001 0.93239802 0.090791002 0.881468 0.080255002 0.92817599 0.106914\n\t\t 0.942586 0.107125 0.94616801 0.097998001 0.95035899 0.100113 0.94616801 0.097998001\n\t\t 0.940256 0.11559 0.92275 0.109083 0.912175 0.060490999 0.87553298 0.076572001 0.87623298\n\t\t 0.067717001 0.90022099 0.072319001 0.90022099 0.072319001 0.88188303 0.060662001\n\t\t 0.94665498 0.109504 0.95035899 0.100113 0.944471 0.118341 0.93648702 0.145447 0.92934901\n\t\t 0.14492901 0.91709602 0.151651 0.89427501 0.24050499 0.90463901 0.240197 0.88188303\n\t\t 0.060662001 0.86031997 0.046985 0.86031997 0.046985 0.89266402 0.048618998 0.89266402\n\t\t 0.048618998 0.912175 0.060490999 0.92001998 0.05387 0.95055902 0.070791997 0.912175\n\t\t 0.060490999 0.912175 0.060490999 0.94297999 0.077464998 0.96406502 0.077628002 0.94297999\n\t\t 0.077464998 0.94297999 0.077464998 0.95644999 0.084352002 0.95920402 0.063947 0.972709\n\t\t 0.070744999 0.92872399 0.046957999 0.90053302 0.041986998 0.89266402 0.048618998\n\t\t 0.87060499 0.035342999 0.89266402 0.048618998 0.90925598 0.035023 0.878483 0.02861\n\t\t 0.87060499 0.035342999 0.87060499 0.035342999 0.87066698 0.023638001 0.86282301 0.030334\n\t\t 0.87060499 0.035342999 0.88722003 0.021552 0.87936401 0.016579 0.96822602 0.079788998\n\t\t 0.95644999 0.084352002 0.95644999 0.084352002 0.96061599 0.086542003 0.97685701 0.072865002\n\t\t 0.85674101 0.026665 0.86282301 0.030334 0.86648703 0.019897001 0.85674101 0.026665\n\t\t 0.875018 0.013568 0.86970001 0.0093489997 0.86163902 0.013337 0.85683101 0.026417\n\t\t 0.85180497 0.018355001 0.86391801 0.0045230002 0.85653597 0.005262 0.84721601 0.0072479998\n\t\t 0.36293301 0.67467099 0.36921099 0.66940302 0.36100399 0.66332901 0.35591099 0.66744202\n\t\t 0.37414399 0.68881899 0.37490499 0.67745602 0.327829 0.391287 0.32844001 0.39379299\n\t\t 0.335235 0.39322001 0.33479899 0.390793 0.34248799 0.39179999 0.34273899 0.394133\n\t\t 0.32844001 0.39379299 0.327829 0.391287 0.31900999 0.39446399 0.31940901 0.39712101\n\t\t 0.32844001 0.39379299 0.311526 0.401223 0.31132901 0.39849499 0.286358 0.409383 0.288073\n\t\t 0.41163999 0.34248799 0.39179999 0.34273899 0.394133 0.35238799 0.39684999 0.35216099\n\t\t 0.394568 0.34248799 0.39179999 0.36274499 0.39827001 0.362968 0.40055501 0.84266597\n\t\t 0.295706 0.84524399 0.29561901 0.84473503 0.28878099 0.84215099 0.289114 0.84575099\n\t\t 0.302459 0.84318 0.30229899 0.042091999 0.44345701 0.046301 0.44892401 0.053348999\n\t\t 0.44477901 0.050326001 0.43925199 0.060047999 0.43758801 0.061934002 0.44259399 0.060047999\n\t\t 0.43758801 0.061934002 0.44259399 0.072517 0.44266099 0.071300998 0.438829 0.060047999\n\t\t 0.43758801 0.083153002 0.44163999 0.084048003 0.445173 0.046301 0.44892401 0.042091999\n\t\t 0.44345701 0.033815 0.45136401 0.039216001 0.45712 0.046301 0.44892401 0.033728998\n\t\t 0.465592 0.027522 0.45938399 0.0086390004 0.48147899 0.019014999 0.48644099 0.041687001\n\t\t 0.459683 0.036956999 0.46824101 0.048514001 0.451689 0.046301 0.44892401 0.048514001\n\t\t 0.451689 0.055163 0.44806099 0.063019998 0.44571301 0.024235999 0.48758 0.061934002\n\t\t 0.44259399 0.063019998 0.44571301 0.073013999 0.44554999 0.061934002 0.44259399 0.083636999\n\t\t 0.448901 0.044039998 0.46187899 0.041687001 0.459683 0.036956999 0.46824101 0.036956999\n\t\t 0.46824101 0.039659999 0.46974 0.036956999 0.46824101 0.024235999 0.48758 0.050877001\n\t\t 0.454427 0.048514001 0.451689 0.041687001 0.459683 0.041687001 0.459683 0.048514001\n\t\t 0.451689 0.056697 0.45117399 0.055163 0.44806099 0.048514001 0.451689 0.063019998\n\t\t 0.44571301 0.055163 0.44806099 0.063781999 0.44902501 0.063019998 0.44571301 0.024235999\n\t\t 0.48758 0.028958 0.485998 0.063019998 0.44571301 0.073284 0.44889799 0.063019998\n\t\t 0.44571301 0.082952 0.45191401 0.89717698 0.141249 0.89885801 0.13305201 0.89054602\n\t\t 0.13333599 0.88925898 0.14215299 0.88134199 0.143058 0.88223398 0.133619 0.89175498\n\t\t 0.129769 0.89998698 0.129636 0.88352197 0.12990201 0.89379603 0.12651099 0.89175498\n\t\t 0.129769 0.89998698 0.129636 0.88352197 0.12990201 0.89175498 0.129769 0.89998698\n\t\t 0.129636 0.90186697 0.126399 0.88572598 0.12662201 0.88352197 0.12990201 0.82417798\n\t\t 0.189923 0.81544602 0.18978401 0.815741 0.191061 0.82443702 0.191554 0.83197498 0.188623\n\t\t 0.83248198 0.190327 0.85658002 0.187627 0.85803097 0.188961 0.857454 0.180792 0.85898203\n\t\t 0.181246 0.85823798 0.174059 0.86003399 0.173429 0.808887 0.189604 0.809003 0.188603\n\t\t 0.80130899 0.18837699 0.801956 0.187224 0.79338902 0.1839 0.79416001 0.182501 0.78694302\n\t\t 0.176172 0.787691 0.174762 0.72938001 0.065673999 0.721349 0.064521998 0.72080398\n\t\t 0.066234 0.72902697 0.067391999 0.73837298 0.065394998 0.73793501 0.066734999 0.74466503\n\t\t 0.064030997 0.74475998 0.064989999 0.751477 0.062289 0.75227702 0.063378997 0.69675398\n\t\t 0.065585002;\n\tsetAttr \".uvst[0].uvsp[21500:21749]\" 0.69811797 0.064249001 0.69553798 0.057914998\n\t\t 0.69704199 0.057679001 0.69420898 0.050145 0.69605702 0.051210001 0.759947 0.058449998\n\t\t 0.75894099 0.057092 0.76493299 0.048967998 0.765921 0.050338 0.93233001 0.145137\n\t\t 0.92934901 0.14492901 0.90463901 0.240197 0.90463901 0.240197 0.90829003 0.239733\n\t\t 0.93670303 0.14555401 0.914428 0.239326 0.94232702 0.146084 0.92320102 0.23901699\n\t\t 0.94932801 0.14674 0.934246 0.238662 0.46060401 0.930143 0.46080399 0.93168002 0.45565\n\t\t 0.91625297 0.50427198 0.36357799 0.51039201 0.36513901 0.51086903 0.35330099 0.504884\n\t\t 0.351329 0.488554 0.35942701 0.48946601 0.34604299 0.52656603 0.35364699 0.51086903\n\t\t 0.35330099 0.51039201 0.36513901 0.51039201 0.36513901 0.526196 0.36548799 0.539056\n\t\t 0.353228 0.53874397 0.365073 0.55154401 0.352745 0.55129099 0.36459601 0.56670201\n\t\t 0.35115099 0.56655502 0.363002 0.48068801 0.357337 0.48178399 0.34317499 0.46320501\n\t\t 0.171873 0.52395397 0.172043 0.52240902 0.157924 0.46232799 0.16005699 0.43607801\n\t\t 0.17191599 0.43520099 0.160101 0.59270197 0.34187901 0.58000898 0.34644499 0.57993799\n\t\t 0.35829699 0.59267998 0.35372999 0.45443299 0.87014502 0.87767398 0.31062099 0.88047898\n\t\t 0.31057501 0.88070899 0.279551 0.87851 0.279585 0.876854 0.34165701 0.54564202 0.174485\n\t\t 0.552136 0.175909 0.55314201 0.173821 0.54514802 0.171817 0.54040301 0.17356101 0.53706598\n\t\t 0.17011701 0.53470099 0.176395 0.53470099 0.176395 0.53674799 0.174465 0.54040301\n\t\t 0.17356101 0.89408302 0.46616301 0.89014 0.45765299 0.87940001 0.45935801 0.88068402\n\t\t 0.46734101 0.87750697 0.45123601 0.88373601 0.45198801 0.872271 0.453132 0.86866099\n\t\t 0.46105701 0.86865401 0.46919999 0.86823499 0.487124 0.87710798 0.48686099 0.88598198\n\t\t 0.48660001 0.263336 0.42882299 0.29974499 0.43158299 0.30225801 0.415306 0.26509199\n\t\t 0.412931 0.19650801 0.42539501 0.196741 0.410193 0.26153499 0.442426 0.263336 0.42882299\n\t\t 0.19650801 0.42539501 0.29974499 0.43158299 0.263336 0.42882299 0.19650801 0.42539501\n\t\t 0.19608501 0.43793899 0.19650801 0.42539501 0.169397 0.425809 0.169397 0.425809 0.169696\n\t\t 0.43762201 0.16868 0.411102 0.169397 0.425809 0.169397 0.425809 0.128181 0.41997901\n\t\t 0.131869 0.43361199 0.169397 0.425809 0.297133 0.44561499 0.29974499 0.43158299 0.100689\n\t\t 0.448533 0.134417 0.443737 0.131869 0.43361199 0.100689 0.448533 0.131869 0.43361199\n\t\t 0.100689 0.448533 0.106381 0.45750001 0.093742996 0.435958 0.218034 0.99825102 0.22259501\n\t\t 0.97947598 0.112222 0.64064002 0.093314998 0.66191298 0.112222 0.64064002 0.146175\n\t\t 0.66950399 0.118705 0.63334501 0.112222 0.64064002 0.123712 0.62771201 0.124213 0.62714797\n\t\t 0.00666 0.95375597 0.0096349996 0.97502398 0.012541 0.996373 0.0044760001 0.93271601\n\t\t 0.88250101 0.953942 0.88107002 0.947896 0.87713599 0.93236297 0.840092 0.97320998\n\t\t 0.875166 0.92458099 0.868936 0.97805297 0.837915 0.99703902 0.824718 0.99512702 0.85175103\n\t\t 0.99892402 0.86205 0.98832101 0.87582201 0.967785 0.44245401 0.93985301 0.45250401\n\t\t 0.93556899 0.454422 0.93359601 0.454521 0.93210799 0.45269799 0.92243701 0.43570101\n\t\t 0.91354299 0.449765 0.91909498 0.45210201 0.92098898 0.33025399 0.40390301 0.34555\n\t\t 0.40746701 0.34700599 0.407033 0.34700599 0.407033 0.33008999 0.397654 0.33025399\n\t\t 0.40390301 0.330989 0.40521199 0.343748 0.40843999 0.32748899 0.404156 0.33025399\n\t\t 0.40390301 0.32703301 0.397421 0.32748899 0.404156 0.32812899 0.405449 0.32635599\n\t\t 0.40506101 0.32562599 0.39830101 0.317577 0.41315699 0.31483299 0.40887201 0.32635599\n\t\t 0.40506101 0.317577 0.41315699 0.318921 0.413508 0.32681701 0.40634599 0.32635599\n\t\t 0.40506101 0.32748899 0.404156 0.32635599 0.40506101 0.32748899 0.404156 0.31659201\n\t\t 0.41422501 0.31373301 0.41014001 0.317577 0.41315699 0.31659201 0.41422501 0.31782201\n\t\t 0.414785 0.317577 0.41315699 0.315211 0.41656801 0.31659201 0.41422501 0.31373301\n\t\t 0.41014001 0.31373301 0.41014001 0.31230199 0.41305599 0.30645999 0.432733 0.31230199\n\t\t 0.41305599 0.30583 0.43385899 0.30645999 0.432733 0.315211 0.41656801 0.30645999\n\t\t 0.432733 0.30818799 0.43168801 0.316048 0.417642 0.315211 0.41656801 0.31659201 0.41422501\n\t\t 0.315211 0.41656801 0.31659201 0.41422501 0.39160699 0.244921 0.401705 0.244339 0.40193701\n\t\t 0.244444 0.40193701 0.244444 0.3906 0.240814 0.39160699 0.244921 0.38902599 0.244717\n\t\t 0.39160699 0.244921 0.38805199 0.23987401 0.387694 0.24440899 0.38902599 0.244717\n\t\t 0.38805199 0.23987401 0.38805199 0.23987401 0.38676399 0.239278 0.378777 0.24264599\n\t\t 0.37731299 0.23750301 0.37735599 0.242451 0.375891 0.23739401 0.37735599 0.242451\n\t\t 0.375891 0.23739401 0.37327099 0.238134 0.374569 0.24255601 0.37735599 0.242451 0.36082399\n\t\t 0.24492501 0.37327099 0.238134 0.36050799 0.244959 0.36082399 0.24492501 0.75446898\n\t\t 0.94715297 0.75318998 0.94831598 0.77812201 0.93608803 0.80537301 0.92400998 0.80537301\n\t\t 0.92400998 0.80793899 0.92561698 0.81946099 0.913149 0.81946099 0.913149 0.81706101\n\t\t 0.911264 0.80537301 0.92400998 0.826985 0.90022498 0.81946099 0.913149 0.81946099\n\t\t 0.913149 0.83699399 0.88928699 0.85091603 0.87785298 0.85091603 0.87785298 0.84824002\n\t\t 0.87638402 0.85091603 0.87785298 0.853104 0.86207801 0.86361903 0.83254099 0.86924303\n\t\t 0.81641102 0.153644 0.36192599 0.13878 0.33371601 0.14737 0.333774 0.14737 0.333774\n\t\t 0.15472201 0.347193 0.153644 0.36192599 0.153644 0.36192599 0.15472201 0.347193;\n\tsetAttr \".uvst[0].uvsp[21750:21999]\" 0.170789 0.349518 0.170789 0.349518 0.171372\n\t\t 0.362279 0.153644 0.36192599 0.171372 0.362279 0.170789 0.349518 0.18434601 0.34904501\n\t\t 0.18434601 0.34904501 0.18731999 0.36173299 0.171372 0.362279 0.18731999 0.36173299\n\t\t 0.18434601 0.34904501 0.197899 0.348566 0.197899 0.348566 0.203308 0.361229 0.18731999\n\t\t 0.36173299 0.203308 0.361229 0.197899 0.348566 0.214476 0.345579 0.214476 0.345579\n\t\t 0.221442 0.35972601 0.203308 0.361229 0.221442 0.35972601 0.214476 0.345579 0.21876501\n\t\t 0.340249 0.21876501 0.340249 0.233404 0.34860101 0.221442 0.35972601 0.233404 0.34860101\n\t\t 0.21876501 0.340249 0.22956599 0.326242 0.22956599 0.326242 0.25862601 0.32567799\n\t\t 0.233404 0.34860101 0.14737 0.333774 0.13878 0.33371601 0.124433 0.30945 0.124433\n\t\t 0.30945 0.14048199 0.32094601 0.14737 0.333774 0.171895 0.308597 0.14048199 0.32094601\n\t\t 0.124433 0.30945 0.171895 0.308597 0.169838 0.32039699 0.14048199 0.32094601 0.171895\n\t\t 0.308597 0.124433 0.30945 0.124092 0.308615 0.234914 0.319107 0.169838 0.32039699\n\t\t 0.171895 0.308597 0.25862601 0.32567799 0.22956599 0.326242 0.234914 0.319107 0.234914\n\t\t 0.319107 0.171895 0.308597 0.27257299 0.31194699 0.234914 0.319107 0.27239901 0.31325701\n\t\t 0.25862601 0.32567799 0.234914 0.319107 0.27257299 0.31194699 0.27239901 0.31325701\n\t\t 0.172011 0.71131301 0.183213 0.69088501 0.20527799 0.70029497 0.20527799 0.70029497\n\t\t 0.194773 0.71963 0.172011 0.71131301 0.194773 0.71963 0.20527799 0.70029497 0.25527701\n\t\t 0.71437699 0.25527701 0.71437699 0.24905001 0.73062301 0.194773 0.71963 0.146175\n\t\t 0.66950399 0.183213 0.69088501 0.172011 0.71131301 0.172011 0.71131301 0.130183 0.69045901\n\t\t 0.146175 0.66950399 0.183213 0.69088501 0.146175 0.66950399 0.14928199 0.66229802\n\t\t 0.14928199 0.66229802 0.184911 0.682019 0.183213 0.69088501 0.184911 0.682019 0.14928199\n\t\t 0.66229802 0.155085 0.65250999 0.155085 0.65250999 0.18846899 0.67398298 0.184911\n\t\t 0.682019 0.25527701 0.71437699 0.20527799 0.70029497 0.20529 0.69065899 0.183213\n\t\t 0.69088501 0.184911 0.682019 0.20529 0.69065899 0.20529 0.69065899 0.20527799 0.70029497\n\t\t 0.183213 0.69088501 0.20529 0.69065899 0.251955 0.70353299 0.25527701 0.71437699\n\t\t 0.25120601 0.69191903 0.251955 0.70353299 0.20529 0.69065899 0.251955 0.70353299\n\t\t 0.25120601 0.69191903 0.27759099 0.69138002 0.27759099 0.69138002 0.28082901 0.70425802\n\t\t 0.251955 0.70353299 0.25527701 0.71437699 0.251955 0.70353299 0.28082901 0.70425802\n\t\t 0.315788 0.69211102 0.28082901 0.70425802 0.27759099 0.69138002 0.27759099 0.69138002\n\t\t 0.31338799 0.68538302 0.315788 0.69211102 0.35396901 0.67738003 0.315788 0.69211102\n\t\t 0.31338799 0.68538302 0.315788 0.69211102 0.35396901 0.67738003 0.36746001 0.699745\n\t\t 0.36746001 0.699745 0.32332599 0.70574999 0.315788 0.69211102 0.28082901 0.70425802\n\t\t 0.315788 0.69211102 0.32332599 0.70574999 0.31338799 0.68538302 0.34745401 0.67073601\n\t\t 0.35396901 0.67738003 0.32332599 0.70574999 0.28540301 0.71400797 0.28082901 0.70425802\n\t\t 0.282931 0.73087698 0.28540301 0.71400797 0.32332599 0.70574999 0.32332599 0.70574999\n\t\t 0.32461801 0.72294903 0.282931 0.73087698 0.32461801 0.72294903 0.32332599 0.70574999\n\t\t 0.36746001 0.699745 0.36746001 0.699745 0.36122599 0.71204698 0.32461801 0.72294903\n\t\t 0.36122599 0.71204698 0.36746001 0.699745 0.37717 0.69343603 0.37717 0.69343603 0.37962699\n\t\t 0.70248401 0.36122599 0.71204698 0.37962699 0.70248401 0.37717 0.69343603 0.38962001\n\t\t 0.68301803 0.38962001 0.68301803 0.39707401 0.686203 0.37962699 0.70248401 0.28082901\n\t\t 0.70425802 0.28540301 0.71400797 0.25527701 0.71437699 0.39707401 0.686203 0.38962001\n\t\t 0.68301803 0.40421301 0.66788101 0.40421301 0.66788101 0.40875 0.67190403 0.39707401\n\t\t 0.686203 0.40875 0.67190403 0.40421301 0.66788101 0.40738299 0.664285 0.40738299\n\t\t 0.664285 0.40997699 0.67006201 0.40875 0.67190403 0.40997699 0.67006201 0.40738299\n\t\t 0.664285 0.42522699 0.63301498 0.24905001 0.73062301 0.25527701 0.71437699 0.28540301\n\t\t 0.71400797 0.28540301 0.71400797 0.282931 0.73087698 0.24905001 0.73062301 0.32161799\n\t\t 0.677809 0.343052 0.66613799 0.34745401 0.67073601 0.34745401 0.67073601 0.31338799\n\t\t 0.68538302 0.32161799 0.677809 0.343052 0.66613799 0.32161799 0.677809 0.30866501\n\t\t 0.67701298 0.30866501 0.67701298 0.34206301 0.66168201 0.343052 0.66613799 0.32161799\n\t\t 0.677809 0.31338799 0.68538302 0.278725 0.68712598 0.32161799 0.677809 0.278725 0.68712598\n\t\t 0.30866501 0.67701298 0.31338799 0.68538302 0.27759099 0.69138002 0.278725 0.68712598\n\t\t 0.251535 0.68821299 0.278725 0.68712598 0.27759099 0.69138002 0.27759099 0.69138002\n\t\t 0.25120601 0.69191903 0.251535 0.68821299 0.251535 0.68821299 0.25120601 0.69191903\n\t\t 0.207776 0.681229 0.20529 0.69065899 0.207776 0.681229 0.25120601 0.69191903 0.207776\n\t\t 0.681229 0.20529 0.69065899 0.184911 0.682019 0.184911 0.682019 0.18846899 0.67398298\n\t\t 0.207776 0.681229 0.207776 0.681229 0.208046 0.67878801 0.251535 0.68821299 0.188972\n\t\t 0.67236 0.208046 0.67878801 0.207776 0.681229 0.207776 0.681229 0.18846899 0.67398298\n\t\t 0.188972 0.67236 0.188972 0.67236 0.18846899 0.67398298 0.155085 0.65250999 0.155085\n\t\t 0.65250999 0.14928199 0.66229802 0.155085 0.65250999 0.112222 0.64064002 0.14928199\n\t\t 0.66229802 0.14928199 0.66229802 0.146175 0.66950399 0.112222 0.64064002 0.146175\n\t\t 0.66950399;\n\tsetAttr \".uvst[0].uvsp[22000:22249]\" 0.130183 0.69045901 0.130183 0.69045901 0.15474001\n\t\t 0.65295398 0.73977602 0.976569 0.73923099 0.97386903 0.76185203 0.971398 0.73977602\n\t\t 0.976569 0.76185203 0.971398 0.761244 0.974374 0.76185203 0.971398 0.76254302 0.97261202\n\t\t 0.761244 0.974374 0.73977602 0.976569 0.761244 0.974374 0.76226801 0.97939903 0.768085\n\t\t 0.97959101 0.76226801 0.97939903 0.761244 0.974374 0.76226801 0.97939903 0.768085\n\t\t 0.97959101 0.76971501 0.98755801 0.76971501 0.98755801 0.76387697 0.98740101 0.76226801\n\t\t 0.97939903 0.76591802 0.99743301 0.76387697 0.98740101 0.76971501 0.98755801 0.76971501\n\t\t 0.98755801 0.77180398 0.99754 0.76591802 0.99743301 0.74081302 0.98155999 0.76226801\n\t\t 0.97939903 0.76387697 0.98740101 0.76226801 0.97939903 0.74081302 0.98155999 0.73977602\n\t\t 0.976569 0.76387697 0.98740101 0.74254102 0.98943698 0.74081302 0.98155999 0.74449098\n\t\t 0.99944699 0.74254102 0.98943698 0.76387697 0.98740101 0.76387697 0.98740101 0.76591802\n\t\t 0.99743301 0.74449098 0.99944699 0.78207999 0.98837602 0.76971501 0.98755801 0.768085\n\t\t 0.97959101 0.77180398 0.99754 0.76971501 0.98755801 0.78207999 0.98837602 0.768085\n\t\t 0.97959101 0.780294 0.97963399 0.78207999 0.98837602 0.78207999 0.98837602 0.78435999\n\t\t 0.999336 0.77180398 0.99754 0.761244 0.974374 0.766936 0.97455603 0.768085 0.97959101\n\t\t 0.780294 0.97963399 0.768085 0.97959101 0.766936 0.97455603 0.766936 0.97455603 0.778148\n\t\t 0.973836 0.780294 0.97963399 0.77529502 0.97147 0.778148 0.973836 0.766936 0.97455603\n\t\t 0.766936 0.97455603 0.76498801 0.97213399 0.77529502 0.97147 0.76498801 0.97213399\n\t\t 0.766936 0.97455603 0.761244 0.974374 0.76498801 0.97213399 0.761244 0.974374 0.76254302\n\t\t 0.97261202 0.76432902 0.97113198 0.76498997 0.97213602 0.76254302 0.97261202 0.76254302\n\t\t 0.97261202 0.76185203 0.971398 0.76432902 0.97113198 0.86627603 0.83245802 0.87142801\n\t\t 0.81740999 0.89157403 0.82677102 0.89157403 0.82677102 0.88972598 0.84458703 0.86627603\n\t\t 0.83245802 0.86627603 0.83245802 0.88972598 0.84458703 0.88566101 0.87857598 0.88566101\n\t\t 0.87857598 0.85601598 0.86275101 0.86627603 0.83245802 0.85601598 0.86275101 0.88566101\n\t\t 0.87857598 0.883403 0.89477998 0.883403 0.89477998 0.85091603 0.87785298 0.85601598\n\t\t 0.86275101 0.74330699 0.001651 0.75889498 0.0025559999 0.75806999 0.004704 0.75806999\n\t\t 0.004704 0.74275601 0.003848 0.74330699 0.001651 0.74330699 0.001651 0.74275601 0.003848\n\t\t 0.72892499 0.00358 0.72892499 0.00358 0.72920197 0.001334 0.74330699 0.001651 0.72920197\n\t\t 0.001334 0.72892499 0.00358 0.71526599 0.003731 0.71526599 0.003731 0.71527702 0.001425\n\t\t 0.72920197 0.001334 0.71527702 0.001425 0.71526599 0.003731 0.700288 0.0043779998\n\t\t 0.700288 0.0043779998 0.70005 0.0019970001 0.71527702 0.001425 0.79083401 0.024803\n\t\t 0.77415901 0.013175 0.774867 0.010979 0.774867 0.010979 0.79149902 0.022652 0.79083401\n\t\t 0.024803 0.75889498 0.0025559999 0.774867 0.010979 0.77415901 0.013175 0.77415901\n\t\t 0.013175 0.75806999 0.004704 0.75889498 0.0025559999 0.66763097 0.021300999 0.65627098\n\t\t 0.027654 0.65505499 0.026155001 0.65505499 0.026155001 0.66666299 0.019580999 0.66763097\n\t\t 0.021300999 0.66763097 0.021300999 0.66666299 0.019580999 0.68913901 0.0075079999\n\t\t 0.68913901 0.0075079999 0.68961799 0.0096739996 0.66763097 0.021300999 0.700288 0.0043779998\n\t\t 0.68961799 0.0096739996 0.68913901 0.0075079999 0.68913901 0.0075079999 0.70005 0.0019970001\n\t\t 0.700288 0.0043779998 0.42185 0.83162397 0.420533 0.80835301 0.44563299 0.80971903\n\t\t 0.44563299 0.80971903 0.44869599 0.83172601 0.42185 0.83162397 0.420533 0.80835301\n\t\t 0.42185 0.83162397 0.367423 0.83082998 0.367423 0.83082998 0.36844301 0.80451399\n\t\t 0.420533 0.80835301 0.366142 0.85516399 0.367423 0.83082998 0.42185 0.83162397 0.42185\n\t\t 0.83162397 0.42299399 0.85255498 0.366142 0.85516399 0.42185 0.83162397 0.44869599\n\t\t 0.83172601 0.45152801 0.85111302 0.45152801 0.85111302 0.42299399 0.85255498 0.42185\n\t\t 0.83162397 0.33404401 0.80204099 0.36844301 0.80451399 0.367423 0.83082998 0.367423\n\t\t 0.83082998 0.33134699 0.829642 0.33404401 0.80204099 0.28475901 0.79887301 0.33404401\n\t\t 0.80204099 0.33134699 0.829642 0.33134699 0.829642 0.27822301 0.82717597 0.28475901\n\t\t 0.79887301 0.23500299 0.79641002 0.28475901 0.79887301 0.27822301 0.82717597 0.27822301\n\t\t 0.82717597 0.225196 0.82338297 0.23500299 0.79641002 0.23500299 0.79641002 0.225196\n\t\t 0.82338297 0.18745901 0.82175601 0.18745901 0.82175601 0.198378 0.79467303 0.23500299\n\t\t 0.79641002 0.198378 0.79467303 0.18745901 0.82175601 0.12937 0.81943399 0.12937 0.81943399\n\t\t 0.142957 0.79033399 0.198378 0.79467303 0.120128 0.84801 0.12937 0.81943399 0.18745901\n\t\t 0.82175601 0.18745901 0.82175601 0.178938 0.85061699 0.120128 0.84801 0.178938 0.85061699\n\t\t 0.18745901 0.82175601 0.225196 0.82338297 0.225196 0.82338297 0.217693 0.85233098\n\t\t 0.178938 0.85061699 0.366142 0.85516399 0.42299399 0.85255498 0.424155 0.87317199\n\t\t 0.424155 0.87317199 0.42299399 0.85255498 0.45152801 0.85111302 0.27822301 0.82717597\n\t\t 0.33134699 0.829642 0.328724 0.85564202 0.328724 0.85564202 0.27312499 0.85449803\n\t\t 0.27822301 0.82717597 0.225196 0.82338297 0.27822301 0.82717597 0.27312499 0.85449803\n\t\t 0.27312499 0.85449803 0.217693 0.85233098 0.225196 0.82338297 0.27312499 0.85449803\n\t\t 0.328724 0.85564202 0.326107 0.88203597 0.326107 0.88203597 0.27056199 0.88413 0.27312499\n\t\t 0.85449803 0.217693 0.85233098 0.27312499 0.85449803 0.27056199 0.88413 0.27056199\n\t\t 0.88413;\n\tsetAttr \".uvst[0].uvsp[22250:22499]\" 0.326107 0.88203597 0.323304 0.91085601 0.323304\n\t\t 0.91085601 0.26879299 0.91797501 0.27056199 0.88413 0.27056199 0.88413 0.214975 0.88395298\n\t\t 0.217693 0.85233098 0.214975 0.88395298 0.27056199 0.88413 0.26879299 0.91797501\n\t\t 0.26879299 0.91797501 0.21415 0.91947001 0.214975 0.88395298 0.323304 0.91085601\n\t\t 0.326107 0.88203597 0.364324 0.87919301 0.364324 0.87919301 0.326107 0.88203597 0.328724\n\t\t 0.85564202 0.364324 0.87919301 0.36234099 0.90484399 0.323304 0.91085601 0.36234099\n\t\t 0.90484399 0.364324 0.87919301 0.424155 0.87317199 0.424155 0.87317199 0.42566201\n\t\t 0.895706 0.36234099 0.90484399 0.17533401 0.88305199 0.214975 0.88395298 0.21415\n\t\t 0.91947001 0.120128 0.84801 0.178938 0.85061699 0.17533401 0.88305199 0.217693 0.85233098\n\t\t 0.214975 0.88395298 0.17533401 0.88305199 0.17533401 0.88305199 0.178938 0.85061699\n\t\t 0.217693 0.85233098 0.21415 0.91947001 0.174026 0.92001098 0.17533401 0.88305199\n\t\t 0.17533401 0.88305199 0.174026 0.92001098 0.111635 0.917961 0.111635 0.917961 0.114806\n\t\t 0.88105398 0.17533401 0.88305199 0.328724 0.85564202 0.366142 0.85516399 0.364324\n\t\t 0.87919301 0.424155 0.87317199 0.364324 0.87919301 0.366142 0.85516399 0.089451998\n\t\t 0.87933803 0.114806 0.88105398 0.111635 0.917961 0.114806 0.88105398 0.089451998\n\t\t 0.87933803 0.095866002 0.84599799 0.056219 0.83975297 0.095866002 0.84599799 0.089451998\n\t\t 0.87933803 0.089451998 0.87933803 0.048643 0.87414098 0.056219 0.83975297 0.048643\n\t\t 0.87414098 0.089451998 0.87933803 0.085736997 0.916192 0.111635 0.917961 0.085736997\n\t\t 0.916192 0.089451998 0.87933803 0.085736997 0.916192 0.044029001 0.91315198 0.048643\n\t\t 0.87414098 0.095866002 0.84599799 0.056219 0.83975297 0.066013999 0.810444 0.066013999\n\t\t 0.810444 0.105076 0.81751698 0.095866002 0.84599799 0.105076 0.81751698 0.066013999\n\t\t 0.810444 0.079697996 0.78073102 0.079697996 0.78073102 0.118948 0.78847402 0.105076\n\t\t 0.81751698 0.095866002 0.84599799 0.120128 0.84801 0.114806 0.88105398 0.17533401\n\t\t 0.88305199 0.114806 0.88105398 0.120128 0.84801 0.105076 0.81751698 0.118948 0.78847402\n\t\t 0.142957 0.79033399 0.142957 0.79033399 0.12937 0.81943399 0.105076 0.81751698 0.095866002\n\t\t 0.84599799 0.105076 0.81751698 0.12937 0.81943399 0.12937 0.81943399 0.120128 0.84801\n\t\t 0.095866002 0.84599799 0.056219 0.83975297 0.048643 0.87414098 0.048643 0.87414098\n\t\t 0.044029001 0.91315198 0.056219 0.83975297 0.066013999 0.810444 0.056219 0.83975297\n\t\t 0.044029001 0.91315198 0.079697996 0.78073102 0.066013999 0.810444 0.066013999 0.810444\n\t\t 0.079697996 0.78073102 0.44919199 0.78250802 0.42668399 0.78149801 0.43040201 0.755144\n\t\t 0.43040201 0.755144 0.456227 0.75485802 0.44919199 0.78250802 0.43040201 0.755144\n\t\t 0.42668399 0.78149801 0.38194099 0.77833903 0.38194099 0.77833903 0.39609501 0.75272501\n\t\t 0.43040201 0.755144 0.39609501 0.75272501 0.38194099 0.77833903 0.351019 0.77561897\n\t\t 0.351019 0.77561897 0.368705 0.75051999 0.39609501 0.75272501 0.38194099 0.77833903\n\t\t 0.42668399 0.78149801 0.420533 0.80835301 0.420533 0.80835301 0.42668399 0.78149801\n\t\t 0.44919199 0.78250802 0.420533 0.80835301 0.36844301 0.80451399 0.38194099 0.77833903\n\t\t 0.351019 0.77561897 0.38194099 0.77833903 0.36844301 0.80451399 0.44919199 0.78250802\n\t\t 0.44563299 0.80971903 0.420533 0.80835301 0.32250601 0.74537301 0.368705 0.75051999\n\t\t 0.351019 0.77561897 0.351019 0.77561897 0.30224001 0.77092397 0.32250601 0.74537301\n\t\t 0.30224001 0.77092397 0.351019 0.77561897 0.33404401 0.80204099 0.36844301 0.80451399\n\t\t 0.33404401 0.80204099 0.351019 0.77561897 0.33404401 0.80204099 0.28475901 0.79887301\n\t\t 0.30224001 0.77092397 0.30224001 0.77092397 0.28475901 0.79887301 0.23500299 0.79641002\n\t\t 0.23500299 0.79641002 0.25174499 0.76654297 0.30224001 0.77092397 0.32250601 0.74537301\n\t\t 0.30224001 0.77092397 0.25174499 0.76654297 0.25174499 0.76654297 0.27289 0.73948801\n\t\t 0.32250601 0.74537301 0.27289 0.73948801 0.25174499 0.76654297 0.215376 0.76297998\n\t\t 0.215376 0.76297998 0.25174499 0.76654297 0.23500299 0.79641002 0.215376 0.76297998\n\t\t 0.236084 0.73398399 0.27289 0.73948801 0.236084 0.73398399 0.215376 0.76297998 0.162195\n\t\t 0.75542098 0.162195 0.75542098 0.182005 0.72391498 0.236084 0.73398399 0.142957 0.79033399\n\t\t 0.162195 0.75542098 0.215376 0.76297998 0.139342 0.75237799 0.162195 0.75542098 0.142957\n\t\t 0.79033399 0.142957 0.79033399 0.118948 0.78847402 0.139342 0.75237799 0.139342 0.75237799\n\t\t 0.118948 0.78847402 0.079697996 0.78073102 0.079697996 0.78073102 0.102257 0.74307197\n\t\t 0.139342 0.75237799 0.160769 0.71903199 0.139342 0.75237799 0.102257 0.74307197 0.160769\n\t\t 0.71903199 0.182005 0.72391498 0.162195 0.75542098 0.162195 0.75542098 0.139342 0.75237799\n\t\t 0.160769 0.71903199 0.102257 0.74307197 0.123933 0.70884103 0.160769 0.71903199 0.215376\n\t\t 0.76297998 0.198378 0.79467303 0.142957 0.79033399 0.23500299 0.79641002 0.198378\n\t\t 0.79467303 0.215376 0.76297998 0.102257 0.74307197 0.079697996 0.78073102 0.102257\n\t\t 0.74307197 0.123933 0.70884103 0.102257 0.74307197 0.123933 0.70884103 0.48168099\n\t\t 0.127278 0.481078 0.128078 0.47907501 0.126985 0.47907501 0.126985 0.47972 0.126176\n\t\t 0.48168099 0.127278 0.65029198 0.032265998 0.65096903 0.031534001 0.670394 0.037496999\n\t\t 0.670394 0.037496999 0.67025298 0.039241001 0.65029198 0.032265998 0.67025298 0.039241001\n\t\t 0.670394 0.037496999 0.68782002 0.042435002 0.68782002 0.042435002 0.68931699 0.044767998;\n\tsetAttr \".uvst[0].uvsp[22500:22749]\" 0.67025298 0.039241001 0.68931699 0.044767998\n\t\t 0.68782002 0.042435002 0.70376199 0.040947001 0.70376199 0.040947001 0.70450902 0.043611001\n\t\t 0.68931699 0.044767998 0.70450902 0.043611001 0.70376199 0.040947001 0.71803403 0.040867999\n\t\t 0.71803403 0.040867999 0.71846199 0.043602999 0.70450902 0.043611001 0.71846199 0.043602999\n\t\t 0.71803403 0.040867999 0.732086 0.041528001 0.732086 0.041528001 0.73223799 0.044294\n\t\t 0.71846199 0.043602999 0.73223799 0.044294 0.732086 0.041528001 0.74749202 0.043033998\n\t\t 0.74749202 0.043033998 0.74720401 0.045793999 0.73223799 0.044294 0.74720401 0.045793999\n\t\t 0.74749202 0.043033998 0.75941497 0.039960001 0.75941497 0.039960001 0.758977 0.042447001\n\t\t 0.74720401 0.045793999 0.78378999 0.035978999 0.758977 0.042447001 0.75941497 0.039960001\n\t\t 0.75941497 0.039960001 0.78433502 0.034028001 0.78378999 0.035978999 0.78378999 0.035978999\n\t\t 0.78433502 0.034028001 0.797261 0.030694 0.797261 0.030694 0.79676402 0.032396998\n\t\t 0.78378999 0.035978999 0.50785601 0.010592 0.506199 0.0092500001 0.51691401 0.001356\n\t\t 0.51691401 0.001356 0.51826602 0.0027910001 0.50785601 0.010592 0.506199 0.0092500001\n\t\t 0.50785601 0.010592 0.489052 0.026836 0.489052 0.026836 0.48679101 0.02568 0.506199\n\t\t 0.0092500001 0.48679101 0.02568 0.489052 0.026836 0.48064199 0.035273001 0.48064199\n\t\t 0.035273001 0.47807199 0.034187 0.48679101 0.02568 0.47807199 0.034187 0.48064199\n\t\t 0.035273001 0.475732 0.049477998 0.475732 0.049477998 0.47320199 0.048308998 0.47807199\n\t\t 0.034187 0.47320199 0.048308998 0.475732 0.049477998 0.471627 0.062527999 0.471627\n\t\t 0.062527999 0.46913099 0.061313 0.47320199 0.048308998 0.46913099 0.061313 0.471627\n\t\t 0.062527999 0.46794799 0.075886004 0.46794799 0.075886004 0.46549401 0.074623004\n\t\t 0.46913099 0.061313 0.46549401 0.074623004 0.46794799 0.075886004 0.464443 0.090815999\n\t\t 0.464443 0.090815999 0.462028 0.089468002 0.46549401 0.074623004 0.462028 0.089468002\n\t\t 0.464443 0.090815999 0.47160599 0.107537 0.47160599 0.107537 0.469933 0.107833 0.462028\n\t\t 0.089468002 0.469933 0.107833 0.47160599 0.107537 0.47972 0.126176 0.47972 0.126176\n\t\t 0.47907501 0.126985 0.469933 0.107833 0.84398198 0.959912 0.82179201 0.97434402 0.77908403\n\t\t 0.93861198 0.77908403 0.93861198 0.80793899 0.92561698 0.84398198 0.959912 0.75456798\n\t\t 0.94946802 0.77908403 0.93861198 0.82179201 0.97434402 0.82179201 0.97434402 0.796345\n\t\t 0.98760402 0.75456798 0.94946802 0.85091603 0.87785298 0.883403 0.89477998 0.87388003\n\t\t 0.91226202 0.87388003 0.91226202 0.83976197 0.89059901 0.85091603 0.87785298 0.83976197\n\t\t 0.89059901 0.87388003 0.91226202 0.86472201 0.92800099 0.86472201 0.92800099 0.82959503\n\t\t 0.90183997 0.83976197 0.89059901 0.82959503 0.90183997 0.86472201 0.92800099 0.85497701\n\t\t 0.943591 0.85497701 0.943591 0.81946099 0.913149 0.82959503 0.90183997 0.81946099\n\t\t 0.913149 0.85497701 0.943591 0.84398198 0.959912 0.84398198 0.959912 0.80793899 0.92561698\n\t\t 0.81946099 0.913149 0.088991001 0.99580097 0.047867 0.99423897 0.046918001 0.97280598\n\t\t 0.046918001 0.97280598 0.088207997 0.97422099 0.088991001 0.99580097 0.088207997\n\t\t 0.97422099 0.046918001 0.97280598 0.045529999 0.95204902 0.045529999 0.95204902 0.087218001\n\t\t 0.953641 0.088207997 0.97422099 0.087218001 0.953641 0.045529999 0.95204902 0.044411998\n\t\t 0.93239403 0.044411998 0.93239403 0.086378001 0.934569 0.087218001 0.953641 0.086378001\n\t\t 0.934569 0.044411998 0.93239403 0.044029001 0.91315198 0.044029001 0.91315198 0.085736997\n\t\t 0.916192 0.086378001 0.934569 0.115325 0.97605401 0.088207997 0.97422099 0.087218001\n\t\t 0.953641 0.087218001 0.953641 0.113897 0.95547599 0.115325 0.97605401 0.088207997\n\t\t 0.97422099 0.115325 0.97605401 0.116869 0.99763399 0.116869 0.99763399 0.088991001\n\t\t 0.99580097 0.088207997 0.97422099 0.116869 0.99763399 0.115325 0.97605401 0.180702\n\t\t 0.97734499 0.180702 0.97734499 0.115325 0.97605401 0.113897 0.95547599 0.180702 0.97734499\n\t\t 0.183431 0.998703 0.116869 0.99763399 0.113897 0.95547599 0.17855699 0.95695102 0.180702\n\t\t 0.97734499 0.176465 0.93823999 0.17855699 0.95695102 0.113897 0.95547599 0.113897\n\t\t 0.95547599 0.112731 0.9364 0.176465 0.93823999 0.087218001 0.953641 0.086378001 0.934569\n\t\t 0.112731 0.9364 0.112731 0.9364 0.113897 0.95547599 0.087218001 0.953641 0.174026\n\t\t 0.92001098 0.176465 0.93823999 0.112731 0.9364 0.176465 0.93823999 0.174026 0.92001098\n\t\t 0.21415 0.91947001 0.21415 0.91947001 0.218034 0.937886 0.176465 0.93823999 0.17855699\n\t\t 0.95695102 0.176465 0.93823999 0.218034 0.937886 0.112731 0.9364 0.111635 0.917961\n\t\t 0.174026 0.92001098 0.111635 0.917961 0.112731 0.9364 0.086378001 0.934569 0.086378001\n\t\t 0.934569 0.085736997 0.916192 0.111635 0.917961 0.218034 0.937886 0.221321 0.95750898\n\t\t 0.17855699 0.95695102 0.180702 0.97734499 0.17855699 0.95695102 0.221321 0.95750898\n\t\t 0.275682 0.93605399 0.218034 0.937886 0.21415 0.91947001 0.218034 0.937886 0.275682\n\t\t 0.93605399 0.221321 0.95750898 0.21415 0.91947001 0.26879299 0.91797501 0.275682\n\t\t 0.93605399 0.333094 0.92651099 0.275682 0.93605399 0.26879299 0.91797501 0.26879299\n\t\t 0.91797501 0.323304 0.91085601 0.333094 0.92651099 0.333094 0.92651099 0.323304 0.91085601\n\t\t 0.36234099 0.90484399 0.36234099 0.90484399 0.37078801 0.919936 0.333094 0.92651099\n\t\t 0.37078801 0.919936 0.36234099 0.90484399 0.42566201 0.895706 0.42566201 0.895706\n\t\t 0.43161899 0.91130799 0.37078801 0.919936 0.38741499 0.95105797 0.37078801 0.919936\n\t\t 0.43161899 0.91130799;\n\tsetAttr \".uvst[0].uvsp[22750:22999]\" 0.43161899 0.91130799 0.44270301 0.94329202\n\t\t 0.38741499 0.95105797 0.44942001 0.96028203 0.38741499 0.95105797 0.44270301 0.94329202\n\t\t 0.44942001 0.96028203 0.44270301 0.94329202 0.459113 0.934026 0.47592101 0.93936801\n\t\t 0.44942001 0.96028203 0.459113 0.934026 0.47592101 0.93936801 0.482844 0.95614398\n\t\t 0.44942001 0.96028203 0.46080399 0.93168002 0.47592101 0.93936801 0.459113 0.934026\n\t\t 0.46080399 0.93168002 0.45565 0.91625297 0.47592101 0.93936801 0.45565 0.91625297\n\t\t 0.46380699 0.90680301 0.47592101 0.93936801 0.45565 0.91625297 0.45499399 0.91488099\n\t\t 0.46380699 0.90680301 0.44942001 0.96028203 0.415943 0.96437597 0.38741499 0.95105797\n\t\t 0.415943 0.96437597 0.39583999 0.967462 0.38741499 0.95105797 0.43161899 0.91130799\n\t\t 0.42566201 0.895706 0.45784 0.89104801 0.45499399 0.91488099 0.45784 0.89104801 0.46380699\n\t\t 0.90680301 0.45276901 0.91354698 0.43161899 0.91130799 0.45784 0.89104801 0.45499399\n\t\t 0.91488099 0.45276901 0.91354698 0.45784 0.89104801 0.44258201 0.94013101 0.44270301\n\t\t 0.94329202 0.43161899 0.91130799 0.43161899 0.91130799 0.43522799 0.913324 0.44258201\n\t\t 0.94013101 0.84703702 0.03782 0.85297102 0.033181001 0.85712498 0.035971001 0.85712498\n\t\t 0.035971001 0.85163599 0.040994 0.84703702 0.03782 0.85163599 0.040994 0.85712498\n\t\t 0.035971001 0.864986 0.041149002 0.864986 0.041149002 0.86031997 0.046985 0.85163599\n\t\t 0.040994 0.87060499 0.035342999 0.864986 0.041149002 0.85712498 0.035971001 0.85712498\n\t\t 0.035971001 0.86282301 0.030334 0.87060499 0.035342999 0.86282301 0.030334 0.85712498\n\t\t 0.035971001 0.85297102 0.033181001 0.85297102 0.033181001 0.85674101 0.026665 0.86282301\n\t\t 0.030334 0.88188303 0.060662001 0.86031997 0.046985 0.864986 0.041149002 0.864986\n\t\t 0.041149002 0.88685602 0.054566 0.88188303 0.060662001 0.88685602 0.054566 0.864986\n\t\t 0.041149002 0.87060499 0.035342999 0.88188303 0.060662001 0.88685602 0.054566 0.90618998\n\t\t 0.066547997 0.90618998 0.066547997 0.90022099 0.072319001 0.88188303 0.060662001\n\t\t 0.90022099 0.072319001 0.90618998 0.066547997 0.93713701 0.084114 0.93713701 0.084114\n\t\t 0.93239802 0.090791002 0.90022099 0.072319001 0.93239802 0.090791002 0.93713701 0.084114\n\t\t 0.950656 0.091057003 0.950656 0.091057003 0.94616801 0.097998001 0.93239802 0.090791002\n\t\t 0.950656 0.091057003 0.93713701 0.084114 0.94297999 0.077464998 0.94297999 0.077464998\n\t\t 0.95644999 0.084352002 0.950656 0.091057003 0.94616801 0.097998001 0.950656 0.091057003\n\t\t 0.95485902 0.093194999 0.95485902 0.093194999 0.950656 0.091057003 0.95644999 0.084352002\n\t\t 0.95485902 0.093194999 0.95035899 0.100113 0.94616801 0.097998001 0.95644999 0.084352002\n\t\t 0.96061599 0.086542003 0.95485902 0.093194999 0.93713701 0.084114 0.90618998 0.066547997\n\t\t 0.912175 0.060490999 0.912175 0.060490999 0.94297999 0.077464998 0.93713701 0.084114\n\t\t 0.89266402 0.048618998 0.912175 0.060490999 0.90618998 0.066547997 0.90618998 0.066547997\n\t\t 0.88685602 0.054566 0.89266402 0.048618998 0.87060499 0.035342999 0.89266402 0.048618998\n\t\t 0.88685602 0.054566 0.96406502 0.077628002 0.95644999 0.084352002 0.94297999 0.077464998\n\t\t 0.94297999 0.077464998 0.95055902 0.070791997 0.96406502 0.077628002 0.95055902 0.070791997\n\t\t 0.94297999 0.077464998 0.912175 0.060490999 0.972709 0.070744999 0.96406502 0.077628002\n\t\t 0.95055902 0.070791997 0.95055902 0.070791997 0.95920402 0.063947 0.972709 0.070744999\n\t\t 0.912175 0.060490999 0.92001998 0.05387 0.95055902 0.070791997 0.95920402 0.063947\n\t\t 0.95055902 0.070791997 0.92001998 0.05387 0.92001998 0.05387 0.912175 0.060490999\n\t\t 0.89266402 0.048618998 0.92001998 0.05387 0.92872399 0.046957999 0.95920402 0.063947\n\t\t 0.89266402 0.048618998 0.90053302 0.041986998 0.92001998 0.05387 0.90053302 0.041986998\n\t\t 0.89266402 0.048618998 0.87060499 0.035342999 0.92001998 0.05387 0.90053302 0.041986998\n\t\t 0.90925598 0.035023 0.90925598 0.035023 0.92872399 0.046957999 0.92001998 0.05387\n\t\t 0.87060499 0.035342999 0.878483 0.02861 0.90053302 0.041986998 0.87066698 0.023638001\n\t\t 0.878483 0.02861 0.87060499 0.035342999 0.87060499 0.035342999 0.86282301 0.030334\n\t\t 0.87066698 0.023638001 0.90053302 0.041986998 0.878483 0.02861 0.88722003 0.021552\n\t\t 0.88722003 0.021552 0.90925598 0.035023 0.90053302 0.041986998 0.88722003 0.021552\n\t\t 0.878483 0.02861 0.87066698 0.023638001 0.87066698 0.023638001 0.87936401 0.016579\n\t\t 0.88722003 0.021552 0.96406502 0.077628002 0.972709 0.070744999 0.97685701 0.072865002\n\t\t 0.97685701 0.072865002 0.96822602 0.079788998 0.96406502 0.077628002 0.95644999 0.084352002\n\t\t 0.96406502 0.077628002 0.96822602 0.079788998 0.96822602 0.079788998 0.96061599 0.086542003\n\t\t 0.95644999 0.084352002 0.87066698 0.023638001 0.86282301 0.030334 0.85674101 0.026665\n\t\t 0.85674101 0.026665 0.86648703 0.019897001 0.87066698 0.023638001 0.87936401 0.016579\n\t\t 0.87066698 0.023638001 0.86648703 0.019897001 0.86648703 0.019897001 0.875018 0.013568\n\t\t 0.87936401 0.016579 0.86970001 0.0093489997 0.875018 0.013568 0.86648703 0.019897001\n\t\t 0.86648703 0.019897001 0.86163902 0.013337 0.86970001 0.0093489997 0.86163902 0.013337\n\t\t 0.86648703 0.019897001 0.85683101 0.026417 0.85683101 0.026417 0.85180497 0.018355001\n\t\t 0.86163902 0.013337 0.86391801 0.0045230002 0.86970001 0.0093489997 0.86163902 0.013337\n\t\t 0.86163902 0.013337 0.85653597 0.005262 0.86391801 0.0045230002 0.85653597 0.005262\n\t\t 0.86163902 0.013337 0.85180497 0.018355001 0.85180497 0.018355001 0.84721601 0.0072479998\n\t\t 0.85653597 0.005262 0.36100399 0.66332901 0.36921099 0.66940302 0.36293301 0.67467099\n\t\t 0.36293301 0.67467099 0.35591099 0.66744202 0.36100399 0.66332901 0.35591099 0.66744202;\n\tsetAttr \".uvst[0].uvsp[23000:23249]\" 0.36293301 0.67467099 0.35396901 0.67738003\n\t\t 0.35396901 0.67738003 0.34745401 0.67073601 0.35591099 0.66744202 0.36746001 0.699745\n\t\t 0.35396901 0.67738003 0.36293301 0.67467099 0.36293301 0.67467099 0.37414399 0.68881899\n\t\t 0.36746001 0.699745 0.37414399 0.68881899 0.36293301 0.67467099 0.36921099 0.66940302\n\t\t 0.37414399 0.68881899 0.36921099 0.66940302 0.37490499 0.67745602 0.37414399 0.68881899\n\t\t 0.37490499 0.67745602 0.37508601 0.68194199 0.89098197 0.076962002 0.89754099 0.075438\n\t\t 0.93004501 0.094489999 0.92762601 0.098526999 0.89098197 0.076962002 0.881468 0.080255002\n\t\t 0.89098197 0.076962002 0.92762601 0.098526999 0.92762601 0.098526999 0.92817599 0.106914\n\t\t 0.881468 0.080255002 0.92762601 0.098526999 0.94445199 0.101925 0.942586 0.107125\n\t\t 0.92762601 0.098526999 0.942586 0.107125 0.940256 0.11559 0.92762601 0.098526999\n\t\t 0.940256 0.11559 0.92275 0.109083 0.92762601 0.098526999 0.89098197 0.076962002 0.87623298\n\t\t 0.067717001 0.87623298 0.067717001 0.87882602 0.064461999 0.89098197 0.076962002\n\t\t 0.881468 0.080255002 0.87553298 0.076572001 0.87553298 0.076572001 0.87623298 0.067717001\n\t\t 0.89098197 0.076962002 0.942586 0.107125 0.94861197 0.104038 0.94665498 0.109504\n\t\t 0.942586 0.107125 0.944471 0.118341 0.940256 0.11559 0.942586 0.107125 0.942586 0.107125\n\t\t 0.94665498 0.109504 0.944471 0.118341 0.940256 0.11559 0.944471 0.118341 0.93648702\n\t\t 0.145447 0.93648702 0.145447 0.92934901 0.14492901 0.940256 0.11559 0.92275 0.109083\n\t\t 0.940256 0.11559 0.92934901 0.14492901 0.92934901 0.14492901 0.91709602 0.151651\n\t\t 0.92275 0.109083 0.89427501 0.24050499 0.91709602 0.151651 0.92934901 0.14492901\n\t\t 0.92934901 0.14492901 0.90463901 0.240197 0.89427501 0.24050499 0.87623298 0.067717001\n\t\t 0.87553298 0.076572001 0.85036898 0.059861999 0.85036898 0.059861999 0.85502303 0.053845\n\t\t 0.87623298 0.067717001 0.85502303 0.053845 0.85036898 0.059861999 0.83154398 0.047463998\n\t\t 0.83154398 0.047463998 0.84238601 0.044852 0.85502303 0.053845 0.85743201 0.050710998\n\t\t 0.85502303 0.053845 0.84238601 0.044852 0.87623298 0.067717001 0.85502303 0.053845\n\t\t 0.87623298 0.067717001 0.84238601 0.044852 0.84718198 0.043083001 0.84238601 0.044852\n\t\t 0.83459097 0.039299 0.83459097 0.039299 0.84240299 0.038807999 0.81859899 0.038454998\n\t\t 0.83459097 0.039299 0.84238601 0.044852 0.84238601 0.044852 0.83154398 0.047463998\n\t\t 0.81859899 0.038454998 0.84703702 0.03782 0.84703702 0.03782 0.85163599 0.040994\n\t\t 0.85163599 0.040994 0.85163599 0.040994 0.86031997 0.046985 0.86031997 0.046985 0.88188303\n\t\t 0.060662001 0.88188303 0.060662001 0.88188303 0.060662001 0.88188303 0.060662001\n\t\t 0.90022099 0.072319001 0.90022099 0.072319001 0.93239802 0.090791002 0.93239802 0.090791002\n\t\t 0.93239802 0.090791002 0.94616801 0.097998001 0.94616801 0.097998001 0.94616801 0.097998001\n\t\t 0.95035899 0.100113 0.95035899 0.100113 0.92275 0.109083 0.92817599 0.106914 0.92762601\n\t\t 0.098526999 0.327829 0.391287 0.33479899 0.390793 0.335235 0.39322001 0.335235 0.39322001\n\t\t 0.32844001 0.39379299 0.327829 0.391287 0.335235 0.39322001 0.33479899 0.390793 0.34248799\n\t\t 0.39179999 0.34248799 0.39179999 0.34273899 0.394133 0.335235 0.39322001 0.35238799\n\t\t 0.39684999 0.34273899 0.394133 0.34248799 0.39179999 0.34248799 0.39179999 0.35216099\n\t\t 0.394568 0.35238799 0.39684999 0.35238799 0.39684999 0.35216099 0.394568 0.36274499\n\t\t 0.39827001 0.36274499 0.39827001 0.362968 0.40055501 0.35238799 0.39684999 0.327829\n\t\t 0.391287 0.32844001 0.39379299 0.32445401 0.395015 0.323805 0.39248401 0.327829 0.391287\n\t\t 0.31900999 0.39446399 0.31940901 0.39712101 0.31900999 0.39446399 0.31900999 0.39446399\n\t\t 0.31940901 0.39712101 0.311526 0.401223 0.311526 0.401223 0.31132901 0.39849499 0.31900999\n\t\t 0.39446399 0.286358 0.409383 0.31132901 0.39849499 0.311526 0.401223 0.311526 0.401223\n\t\t 0.288073 0.41163999 0.286358 0.409383 0.84266597 0.295706 0.84215099 0.289114 0.84473503\n\t\t 0.28878099 0.84473503 0.28878099 0.84524399 0.29561901 0.84266597 0.295706 0.84266597\n\t\t 0.295706 0.84524399 0.29561901 0.84575099 0.302459 0.84575099 0.302459 0.84318 0.30229899\n\t\t 0.84266597 0.295706 0.042091999 0.44345701 0.050326001 0.43925199 0.053348999 0.44477901\n\t\t 0.053348999 0.44477901 0.046301 0.44892401 0.042091999 0.44345701 0.053348999 0.44477901\n\t\t 0.050326001 0.43925199 0.060047999 0.43758801 0.060047999 0.43758801 0.061934002\n\t\t 0.44259399 0.053348999 0.44477901 0.072517 0.44266099 0.061934002 0.44259399 0.060047999\n\t\t 0.43758801 0.060047999 0.43758801 0.071300998 0.438829 0.072517 0.44266099 0.084048003\n\t\t 0.445173 0.072517 0.44266099 0.071300998 0.438829 0.071300998 0.438829 0.083153002\n\t\t 0.44163999 0.084048003 0.445173 0.046301 0.44892401 0.053348999 0.44477901 0.055163\n\t\t 0.44806099 0.055163 0.44806099 0.053348999 0.44477901 0.061934002 0.44259399 0.055163\n\t\t 0.44806099 0.048514001 0.451689 0.046301 0.44892401 0.061934002 0.44259399 0.063019998\n\t\t 0.44571301 0.055163 0.44806099 0.073013999 0.44554999 0.063019998 0.44571301 0.061934002\n\t\t 0.44259399 0.061934002 0.44259399 0.072517 0.44266099 0.073013999 0.44554999 0.072517\n\t\t 0.44266099 0.084048003 0.445173 0.083636999 0.448901 0.083636999 0.448901 0.073013999\n\t\t 0.44554999 0.072517 0.44266099 0.048514001 0.451689 0.055163 0.44806099 0.056697\n\t\t 0.45117399 0.056697 0.45117399 0.055163 0.44806099 0.063019998 0.44571301 0.056697\n\t\t 0.45117399 0.050877001 0.454427 0.048514001 0.451689 0.063019998 0.44571301 0.063781999\n\t\t 0.44902501 0.056697 0.45117399 0.073284 0.44889799;\n\tsetAttr \".uvst[0].uvsp[23250:23499]\" 0.063781999 0.44902501 0.063019998 0.44571301\n\t\t 0.063019998 0.44571301 0.073013999 0.44554999 0.073284 0.44889799 0.073013999 0.44554999\n\t\t 0.083636999 0.448901 0.082952 0.45191401 0.082952 0.45191401 0.073284 0.44889799\n\t\t 0.073013999 0.44554999 0.045524001 0.45477799 0.048514001 0.451689 0.050877001 0.454427\n\t\t 0.048514001 0.451689 0.045524001 0.45477799 0.043292999 0.451951 0.045524001 0.45477799\n\t\t 0.041687001 0.459683 0.041687001 0.459683 0.039216001 0.45712 0.039216001 0.45712\n\t\t 0.033815 0.45136401 0.033815 0.45136401 0.038431998 0.446509 0.033815 0.45136401\n\t\t 0.039216001 0.45712 0.033728998 0.465592 0.033728998 0.465592 0.039216001 0.45712\n\t\t 0.041687001 0.459683 0.033728998 0.465592 0.027522 0.45938399 0.033815 0.45136401\n\t\t 0.0086390004 0.48147899 0.027522 0.45938399 0.033728998 0.465592 0.033728998 0.465592\n\t\t 0.019014999 0.48644099 0.0086390004 0.48147899 0.041687001 0.459683 0.036956999 0.46824101\n\t\t 0.033728998 0.465592 0.019014999 0.48644099 0.033728998 0.465592 0.036956999 0.46824101\n\t\t 0.036956999 0.46824101 0.024235999 0.48758 0.019014999 0.48644099 0.036956999 0.46824101\n\t\t 0.041687001 0.459683 0.044039998 0.46187899 0.044039998 0.46187899 0.041687001 0.459683\n\t\t 0.044039998 0.46187899 0.039659999 0.46974 0.036956999 0.46824101 0.024235999 0.48758\n\t\t 0.036956999 0.46824101 0.039659999 0.46974 0.047421999 0.457708 0.044039998 0.46187899\n\t\t 0.039659999 0.46974 0.028958 0.485998 0.024235999 0.48758 0.046301 0.44892401 0.042091999\n\t\t 0.44345701 0.046301 0.44892401 0.046301 0.44892401 0.048514001 0.451689 0.050877001\n\t\t 0.454427 0.89054602 0.13333599 0.89885801 0.13305201 0.89717698 0.141249 0.89717698\n\t\t 0.141249 0.88925898 0.14215299 0.89054602 0.13333599 0.89054602 0.13333599 0.88925898\n\t\t 0.14215299 0.88134199 0.143058 0.88134199 0.143058 0.88223398 0.133619 0.89054602\n\t\t 0.13333599 0.89885801 0.13305201 0.89054602 0.13333599 0.89175498 0.129769 0.89175498\n\t\t 0.129769 0.89054602 0.13333599 0.88223398 0.133619 0.89175498 0.129769 0.89998698\n\t\t 0.129636 0.89885801 0.13305201 0.88223398 0.133619 0.88352197 0.12990201 0.89175498\n\t\t 0.129769 0.89998698 0.129636 0.89175498 0.129769 0.89379603 0.12651099 0.89379603\n\t\t 0.12651099 0.89175498 0.129769 0.88352197 0.12990201 0.89379603 0.12651099 0.90186697\n\t\t 0.126399 0.89998698 0.129636 0.88352197 0.12990201 0.88572598 0.12662201 0.89379603\n\t\t 0.12651099 0.82417798 0.189923 0.82443702 0.191554 0.819372 0.19137301 0.81937897\n\t\t 0.18994799 0.82417798 0.189923 0.82443702 0.191554 0.82417798 0.189923 0.83197498\n\t\t 0.188623 0.83197498 0.188623 0.83248198 0.190327 0.82443702 0.191554 0.83248198 0.190327\n\t\t 0.83197498 0.188623 0.85658002 0.187627 0.85658002 0.187627 0.85803097 0.188961 0.83248198\n\t\t 0.190327 0.85803097 0.188961 0.85658002 0.187627 0.857454 0.180792 0.857454 0.180792\n\t\t 0.85898203 0.181246 0.85803097 0.188961 0.85898203 0.181246 0.857454 0.180792 0.85823798\n\t\t 0.174059 0.85823798 0.174059 0.86003399 0.173429 0.85898203 0.181246 0.815741 0.191061\n\t\t 0.815741 0.191061 0.81544602 0.18978401 0.81544602 0.18978401 0.815741 0.191061 0.808887\n\t\t 0.189604 0.808887 0.189604 0.809003 0.188603 0.81544602 0.18978401 0.809003 0.188603\n\t\t 0.808887 0.189604 0.80130899 0.18837699 0.80130899 0.18837699 0.801956 0.187224 0.809003\n\t\t 0.188603 0.801956 0.187224 0.80130899 0.18837699 0.79338902 0.1839 0.79338902 0.1839\n\t\t 0.79416001 0.182501 0.801956 0.187224 0.79416001 0.182501 0.79338902 0.1839 0.78694302\n\t\t 0.176172 0.78694302 0.176172 0.787691 0.174762 0.79416001 0.182501 0.72938001 0.065673999\n\t\t 0.72902697 0.067391999 0.72080398 0.066234 0.72080398 0.066234 0.721349 0.064521998\n\t\t 0.72938001 0.065673999 0.72902697 0.067391999 0.72938001 0.065673999 0.734447 0.065644003\n\t\t 0.73433203 0.067155004 0.72902697 0.067391999 0.721349 0.064521998 0.72080398 0.066234\n\t\t 0.69675398 0.065585002 0.69675398 0.065585002 0.69811797 0.064249001 0.721349 0.064521998\n\t\t 0.69811797 0.064249001 0.69675398 0.065585002 0.69553798 0.057914998 0.69553798 0.057914998\n\t\t 0.69704199 0.057679001 0.69811797 0.064249001 0.69704199 0.057679001 0.69553798 0.057914998\n\t\t 0.69420898 0.050145 0.69420898 0.050145 0.69605702 0.051210001 0.69704199 0.057679001\n\t\t 0.73837298 0.065394998 0.73837298 0.065394998 0.73793501 0.066734999 0.73793501 0.066734999\n\t\t 0.73837298 0.065394998 0.74466503 0.064030997 0.74466503 0.064030997 0.74475998 0.064989999\n\t\t 0.73793501 0.066734999 0.74475998 0.064989999 0.74466503 0.064030997 0.751477 0.062289\n\t\t 0.751477 0.062289 0.75227702 0.063378997 0.74475998 0.064989999 0.759947 0.058449998\n\t\t 0.75227702 0.063378997 0.751477 0.062289 0.751477 0.062289 0.75894099 0.057092 0.759947\n\t\t 0.058449998 0.759947 0.058449998 0.75894099 0.057092 0.76493299 0.048967998 0.76493299\n\t\t 0.048967998 0.765921 0.050338 0.759947 0.058449998 0.93233001 0.145137 0.90829003\n\t\t 0.239733 0.90463901 0.240197 0.90463901 0.240197 0.92934901 0.14492901 0.93233001\n\t\t 0.145137 0.90829003 0.239733 0.93233001 0.145137 0.93670303 0.14555401 0.93670303\n\t\t 0.14555401 0.914428 0.239326 0.90829003 0.239733 0.914428 0.239326 0.93670303 0.14555401\n\t\t 0.94232702 0.146084 0.94232702 0.146084 0.92320102 0.23901699 0.914428 0.239326 0.92320102\n\t\t 0.23901699 0.94232702 0.146084 0.94932801 0.14674 0.94932801 0.14674 0.934246 0.238662\n\t\t 0.92320102 0.23901699 0.46080399 0.93168002 0.46060401 0.930143 0.45565 0.91625297\n\t\t 0.50427198 0.36357799 0.504884 0.351329 0.51086903 0.35330099 0.51086903 0.35330099;\n\tsetAttr \".uvst[0].uvsp[23500:23749]\" 0.51039201 0.36513901 0.50427198 0.36357799\n\t\t 0.504884 0.351329 0.50427198 0.36357799 0.488554 0.35942701 0.488554 0.35942701 0.48946601\n\t\t 0.34604299 0.504884 0.351329 0.51039201 0.36513901 0.51086903 0.35330099 0.52656603\n\t\t 0.35364699 0.52656603 0.35364699 0.526196 0.36548799 0.51039201 0.36513901 0.526196\n\t\t 0.36548799 0.52656603 0.35364699 0.539056 0.353228 0.539056 0.353228 0.53874397 0.365073\n\t\t 0.526196 0.36548799 0.53874397 0.365073 0.539056 0.353228 0.55154401 0.352745 0.55154401\n\t\t 0.352745 0.55129099 0.36459601 0.53874397 0.365073 0.55129099 0.36459601 0.55154401\n\t\t 0.352745 0.56670201 0.35115099 0.56670201 0.35115099 0.56655502 0.363002 0.55129099\n\t\t 0.36459601 0.48946601 0.34604299 0.488554 0.35942701 0.48068801 0.357337 0.48068801\n\t\t 0.357337 0.48178399 0.34317499 0.48946601 0.34604299 0.46320501 0.171873 0.46232799\n\t\t 0.16005699 0.52240902 0.157924 0.52240902 0.157924 0.52395397 0.172043 0.46320501\n\t\t 0.171873 0.46232799 0.16005699 0.46320501 0.171873 0.43607801 0.17191599 0.43607801\n\t\t 0.17191599 0.43520099 0.160101 0.46232799 0.16005699 0.59270197 0.34187901 0.59267998\n\t\t 0.35372999 0.57993799 0.35829699 0.57993799 0.35829699 0.58000898 0.34644499 0.59270197\n\t\t 0.34187901 0.58000898 0.34644499 0.57993799 0.35829699 0.56655502 0.363002 0.56655502\n\t\t 0.363002 0.56670201 0.35115099 0.58000898 0.34644499 0.328724 0.85564202 0.33134699\n\t\t 0.829642 0.367423 0.83082998 0.367423 0.83082998 0.366142 0.85516399 0.328724 0.85564202\n\t\t 0.42566201 0.895706 0.424155 0.87317199 0.45443299 0.87014502 0.45443299 0.87014502\n\t\t 0.45784 0.89104801 0.42566201 0.895706 0.45152801 0.85111302 0.45443299 0.87014502\n\t\t 0.424155 0.87317199 0.87851 0.279585 0.88070899 0.279551 0.88047898 0.31057501 0.88047898\n\t\t 0.31057501 0.87767398 0.31062099 0.87851 0.279585 0.87767398 0.31062099 0.88047898\n\t\t 0.31057501 0.876854 0.34165701 0.54564202 0.174485 0.54514802 0.171817 0.55314201\n\t\t 0.173821 0.55314201 0.173821 0.552136 0.175909 0.54564202 0.174485 0.54514802 0.171817\n\t\t 0.54564202 0.174485 0.54040301 0.17356101 0.54040301 0.17356101 0.53706598 0.17011701\n\t\t 0.54514802 0.171817 0.53470099 0.176395 0.53706598 0.17011701 0.54040301 0.17356101\n\t\t 0.54040301 0.17356101 0.53674799 0.174465 0.53470099 0.176395 0.89408302 0.46616301\n\t\t 0.88068402 0.46734101 0.87940001 0.45935801 0.87940001 0.45935801 0.89014 0.45765299\n\t\t 0.89408302 0.46616301 0.89014 0.45765299 0.87940001 0.45935801 0.87750697 0.45123601\n\t\t 0.87750697 0.45123601 0.88373601 0.45198801 0.89014 0.45765299 0.87940001 0.45935801\n\t\t 0.872271 0.453132 0.87750697 0.45123601 0.87940001 0.45935801 0.87002701 0.456552\n\t\t 0.872271 0.453132 0.87940001 0.45935801 0.86866099 0.46105701 0.86866099 0.46105701\n\t\t 0.87940001 0.45935801 0.88068402 0.46734101 0.88068402 0.46734101 0.86865401 0.46919999\n\t\t 0.86866099 0.46105701 0.86823499 0.487124 0.86865401 0.46919999 0.88068402 0.46734101\n\t\t 0.88068402 0.46734101 0.87710798 0.48686099 0.86823499 0.487124 0.87710798 0.48686099\n\t\t 0.88068402 0.46734101 0.89408302 0.46616301 0.89408302 0.46616301 0.88598198 0.48660001\n\t\t 0.87710798 0.48686099 0.30225801 0.415306 0.29974499 0.43158299 0.263336 0.42882299\n\t\t 0.263336 0.42882299 0.26509199 0.412931 0.30225801 0.415306 0.26509199 0.412931 0.263336\n\t\t 0.42882299 0.19650801 0.42539501 0.19650801 0.42539501 0.196741 0.410193 0.26509199\n\t\t 0.412931 0.19608501 0.43793899 0.19650801 0.42539501 0.263336 0.42882299 0.169397\n\t\t 0.425809 0.19650801 0.42539501 0.19608501 0.43793899 0.196741 0.410193 0.19650801\n\t\t 0.42539501 0.169397 0.425809 0.19608501 0.43793899 0.169696 0.43762201 0.169397 0.425809\n\t\t 0.263336 0.42882299 0.26153499 0.442426 0.19608501 0.43793899 0.169397 0.425809 0.16868\n\t\t 0.411102 0.196741 0.410193 0.128181 0.41997901 0.16868 0.411102 0.169397 0.425809\n\t\t 0.169397 0.425809 0.131869 0.43361199 0.128181 0.41997901 0.297133 0.44561499 0.26153499\n\t\t 0.442426 0.263336 0.42882299 0.263336 0.42882299 0.29974499 0.43158299 0.297133 0.44561499\n\t\t 0.128181 0.41997901 0.131869 0.43361199 0.100689 0.448533 0.131869 0.43361199 0.131869\n\t\t 0.43361199 0.134417 0.443737 0.134417 0.443737 0.131869 0.43361199 0.169397 0.425809\n\t\t 0.169397 0.425809 0.169696 0.43762201 0.134417 0.443737 0.128181 0.41997901 0.183431\n\t\t 0.998703 0.180702 0.97734499 0.22259501 0.97947598 0.22259501 0.97947598 0.218034\n\t\t 0.99825102 0.183431 0.998703 0.221321 0.95750898 0.22259501 0.97947598 0.180702 0.97734499\n\t\t 0.045529999 0.95204902 0.045529999 0.95204902 0.046918001 0.97280598 0.046918001\n\t\t 0.97280598 0.047867 0.99423897 0.047867 0.99423897 0.044411998 0.93239403 0.045529999\n\t\t 0.95204902 0.044411998 0.93239403 0.044029001 0.91315198 0.044411998 0.93239403 0.044029001\n\t\t 0.91315198 0.837915 0.99703902 0.824718 0.99512702 0.840092 0.97320998 0.837915 0.99703902\n\t\t 0.840092 0.97320998 0.868936 0.97805297 0.840092 0.97320998 0.88250101 0.953942 0.868936\n\t\t 0.97805297 0.840092 0.97320998 0.87713599 0.93236297 0.88250101 0.953942 0.840092\n\t\t 0.97320998 0.875166 0.92458099 0.87713599 0.93236297 0.87713599 0.93236297 0.88107002\n\t\t 0.947896 0.88250101 0.953942 0.88250101 0.953942 0.87582201 0.967785 0.868936 0.97805297\n\t\t 0.85175103 0.99892402 0.837915 0.99703902 0.868936 0.97805297 0.85175103 0.99892402\n\t\t 0.868936 0.97805297 0.86205 0.98832101 0.449765 0.91909498 0.45210201 0.92098898\n\t\t 0.45269799 0.92243701 0.43570101 0.91354299 0.449765 0.91909498;\n\tsetAttr \".uvst[0].uvsp[23750:23999]\" 0.45269799 0.92243701 0.44245401 0.93985301\n\t\t 0.43570101 0.91354299 0.45269799 0.92243701 0.44245401 0.93985301 0.45269799 0.92243701\n\t\t 0.454521 0.93210799 0.44245401 0.93985301 0.454521 0.93210799 0.454422 0.93359601\n\t\t 0.45250401 0.93556899 0.44245401 0.93985301 0.454422 0.93359601 0.43522799 0.913324\n\t\t 0.43570101 0.91354299 0.44245401 0.93985301 0.34700599 0.407033 0.343748 0.40843999\n\t\t 0.330989 0.40521199 0.330989 0.40521199 0.33008999 0.397654 0.34700599 0.407033 0.33008999\n\t\t 0.397654 0.330989 0.40521199 0.32812899 0.405449 0.32812899 0.405449 0.32703301 0.397421\n\t\t 0.33008999 0.397654 0.32703301 0.397421 0.32812899 0.405449 0.32681701 0.40634599\n\t\t 0.32681701 0.40634599 0.32562599 0.39830101 0.32703301 0.397421 0.32562599 0.39830101\n\t\t 0.32681701 0.40634599 0.318921 0.413508 0.318921 0.413508 0.31483299 0.40887201 0.32562599\n\t\t 0.39830101 0.31483299 0.40887201 0.318921 0.413508 0.31782201 0.414785 0.31782201\n\t\t 0.414785 0.31373301 0.41014001 0.31483299 0.40887201 0.31373301 0.41014001 0.31782201\n\t\t 0.414785 0.316048 0.417642 0.316048 0.417642 0.31230199 0.41305599 0.31373301 0.41014001\n\t\t 0.31230199 0.41305599 0.316048 0.417642 0.30818799 0.43168801 0.30818799 0.43168801\n\t\t 0.30583 0.43385899 0.31230199 0.41305599 0.44245401 0.93985301 0.44258201 0.94013101\n\t\t 0.43522799 0.913324 0.39160699 0.244921 0.3906 0.240814 0.40193701 0.244444 0.3906\n\t\t 0.240814 0.39160699 0.244921 0.38902599 0.244717 0.38902599 0.244717 0.38805199 0.23987401\n\t\t 0.3906 0.240814 0.38805199 0.23987401 0.38902599 0.244717 0.387694 0.24440899 0.387694\n\t\t 0.24440899 0.38676399 0.239278 0.38805199 0.23987401 0.38676399 0.239278 0.387694\n\t\t 0.24440899 0.378777 0.24264599 0.378777 0.24264599 0.37731299 0.23750301 0.38676399\n\t\t 0.239278 0.37731299 0.23750301 0.378777 0.24264599 0.37735599 0.242451 0.37735599\n\t\t 0.242451 0.375891 0.23739401 0.37731299 0.23750301 0.37327099 0.238134 0.375891 0.23739401\n\t\t 0.37735599 0.242451 0.37735599 0.242451 0.374569 0.24255601 0.37327099 0.238134 0.37327099\n\t\t 0.238134 0.374569 0.24255601 0.36082399 0.24492501 0.36082399 0.24492501 0.36050799\n\t\t 0.244959 0.37327099 0.238134 0.40193701 0.244444 0.401705 0.244339 0.39160699 0.244921\n\t\t 0.155085 0.65250999 0.15474001 0.65295398 0.188972 0.67236 0.15474001 0.65295398\n\t\t 0.155085 0.65250999 0.75446898 0.94715297 0.75456798 0.94946802 0.75318998 0.94831598\n\t\t 0.77908403 0.93861198 0.75456798 0.94946802 0.75446898 0.94715297 0.75446898 0.94715297\n\t\t 0.77812201 0.93608803 0.77908403 0.93861198 0.77908403 0.93861198 0.77812201 0.93608803\n\t\t 0.80537301 0.92400998 0.80537301 0.92400998 0.80793899 0.92561698 0.77908403 0.93861198\n\t\t 0.81946099 0.913149 0.80793899 0.92561698 0.80537301 0.92400998 0.80537301 0.92400998\n\t\t 0.81706101 0.911264 0.81946099 0.913149 0.81946099 0.913149 0.81706101 0.911264 0.826985\n\t\t 0.90022498 0.826985 0.90022498 0.82959503 0.90183997 0.81946099 0.913149 0.82959503\n\t\t 0.90183997 0.826985 0.90022498 0.83699399 0.88928699 0.83699399 0.88928699 0.83976197\n\t\t 0.89059901 0.82959503 0.90183997 0.85091603 0.87785298 0.83976197 0.89059901 0.83699399\n\t\t 0.88928699 0.83699399 0.88928699 0.84824002 0.87638402 0.85091603 0.87785298 0.85601598\n\t\t 0.86275101 0.85091603 0.87785298 0.84824002 0.87638402 0.84824002 0.87638402 0.853104\n\t\t 0.86207801 0.85601598 0.86275101 0.85601598 0.86275101 0.853104 0.86207801 0.86361903\n\t\t 0.83254099 0.86361903 0.83254099 0.86627603 0.83245802 0.85601598 0.86275101 0.87142801\n\t\t 0.81740999 0.86627603 0.83245802 0.86361903 0.83254099 0.86361903 0.83254099 0.86924303\n\t\t 0.81641102 0.87142801 0.81740999 0.45170501 0.43195301 0.45223501 0.43911499 0.475375\n\t\t 0.438833 0.47409701 0.43194801 0.48773399 0.43252099 0.48940399 0.43898901 0.50184101\n\t\t 0.432679 0.50377399 0.43921599 0.499906 0.42593801 0.486139 0.426072 0.47295401 0.42513701\n\t\t 0.451368 0.42481801 0.47208399 0.41837701 0.451213 0.417716 0.48483199 0.41940799\n\t\t 0.49823499 0.41907299 0.497105 0.412092 0.48401299 0.41251099 0.47159299 0.41167501\n\t\t 0.45128199 0.41067201 0.47155499 0.40484801 0.45155299 0.40375099 0.48375699 0.40551901\n\t\t 0.49662799 0.405224 0.49682999 0.39835101 0.48412499 0.39852899 0.472002 0.398148\n\t\t 0.45210901 0.39701301 0.47281101 0.39156401 0.45299 0.39052701 0.484851 0.39167699\n\t\t 0.497417 0.39151099 0.49766001 0.38471001 0.485457 0.38485 0.47388199 0.38487399\n\t\t 0.45463899 0.38428199 0.50966698 0.39794201 0.50971901 0.40473601 0.51045197 0.411641\n\t\t 0.51183403 0.418607 0.513699 0.42554101 0.51576698 0.43236801 0.51772499 0.43906\n\t\t 0.52949399 0.431907 0.53133702 0.438806 0.542817 0.43127999 0.54449099 0.438438 0.55563498\n\t\t 0.430787 0.55710298 0.438135 0.553765 0.42354801 0.54080099 0.42411 0.52742398 0.424936\n\t\t 0.52543998 0.417961 0.53874999 0.41701099 0.55178303 0.41658801 0.54996997 0.40995601\n\t\t 0.536982 0.410099 0.523844 0.411073 0.522834 0.404331 0.535734 0.40348101 0.54859197\n\t\t 0.403548 0.54779202 0.39747199 0.53512198 0.39714399 0.52248502 0.39771301 0.52259701\n\t\t 0.39114699 0.51002198 0.39125001 0.53503501 0.39091101 0.54751402 0.391278 0.54779202\n\t\t 0.38466799 0.53517503 0.38452601 0.52259499 0.38456199 0.51003802 0.38459399 0.50864398\n\t\t 0.377911 0.49643999 0.377922 0.52112198 0.378041 0.53416401 0.37808299 0.52157003\n\t\t 0.37804201 0.54767299 0.37812299 0.53502399 0.37807101 0.56108999 0.38434899 0.56082702\n\t\t 0.39035299 0.561212 0.396539 0.56207699 0.402906 0.563366 0.40943199 0.56499398 0.416444;\n\tsetAttr \".uvst[0].uvsp[24000:24249]\" 0.56670898 0.423599 0.56826901 0.43083599\n\t\t 0.56943601 0.43817201 0.58108699 0.43112999 0.58189797 0.43838301 0.59433103 0.43139401\n\t\t 0.59480798 0.43863001 0.60813898 0.43160799 0.60839099 0.43884999 0.60768002 0.42441699\n\t\t 0.59358197 0.42427999 0.57993299 0.42406899 0.578605 0.41727501 0.59266597 0.417272\n\t\t 0.60707098 0.41727799 0.606381 0.41023099 0.59169197 0.410339 0.57728601 0.41080001\n\t\t 0.57617998 0.404318 0.59078699 0.403512 0.60569298 0.40337601 0.60506898 0.39680699\n\t\t 0.59004903 0.396905 0.57535797 0.39772001 0.57492 0.39110699 0.58954102 0.390567\n\t\t 0.60453498 0.39050999 0.60400498 0.38435799 0.58925301 0.38438901 0.57495201 0.38455799\n\t\t 0.57512802 0.37829399 0.56223398 0.37827501 0.58875501 0.37806699 0.57552302 0.378084\n\t\t 0.60287398 0.378212 0.58907199 0.37825301 0.61929202 0.38436699 0.61985302 0.39063901\n\t\t 0.62032098 0.39708701 0.62081099 0.40372401 0.621324 0.41055 0.62183303 0.41754001\n\t\t 0.62228 0.42464599 0.62261599 0.431817 0.62279999 0.439024 0.63800102 0.43200001\n\t\t 0.638188 0.43915501 0.65442699 0.43213099 0.65462297 0.439239 0.67196 0.43218601\n\t\t 0.67212701 0.43926799 0.67177099 0.42512399 0.65417498 0.42504299 0.637712 0.424869\n\t\t 0.63735998 0.41778201 0.65390199 0.41798201 0.67158699 0.41806501 0.67143703 0.41098201\n\t\t 0.65364403 0.41096699 0.63698602 0.410763 0.63662499 0.403853 0.65342301 0.404037\n\t\t 0.67133701 0.403914 0.67126501 0.39703301 0.653225 0.39725 0.63628203 0.39712 0.63593602\n\t\t 0.390614 0.653014 0.39066499 0.67116201 0.39049599 0.67097902 0.384289 0.65271503\n\t\t 0.38433999 0.63548398 0.384339 0.63424098 0.37824801 0.61855203 0.37827301 0.65167701\n\t\t 0.37829301 0.634911 0.37830299 0.67013401 0.37830499 0.65237498 0.37830299 0.690184\n\t\t 0.38453099 0.690319 0.391229 0.69037902 0.398002 0.690391 0.404663 0.690409 0.411311\n\t\t 0.69045597 0.41810799 0.69053203 0.425071 0.69061798 0.43212399 0.69070202 0.43921801\n\t\t 0.70975298 0.43198401 0.70975298 0.43912801 0.72957098 0.43198401 0.72957098 0.43912801\n\t\t 0.74909002 0.43198401 0.74909002 0.43912801 0.74909002 0.42480901 0.72957098 0.42480901\n\t\t 0.70975298 0.42480901 0.70975298 0.41754699 0.72957098 0.41754699 0.74909002 0.41754699\n\t\t 0.74909002 0.41019899 0.72957098 0.41019899 0.70975298 0.41019899 0.70975298 0.40285999\n\t\t 0.72957098 0.40285999 0.74909002 0.40285999 0.74909002 0.39579299 0.72957098 0.39579299\n\t\t 0.70975298 0.39579299 0.70975298 0.38929901 0.72957098 0.38929901 0.74909002 0.38929901\n\t\t 0.74909002 0.383661 0.72957098 0.383661 0.70975298 0.383661 0.70901603 0.37810999\n\t\t 0.689978 0.37811199 0.72895098 0.37895399 0.70978302 0.378959 0.74849802 0.37894601\n\t\t 0.72960597 0.37895399 0.76784199 0.383661 0.76784199 0.38929901 0.76784199 0.39579299\n\t\t 0.76784199 0.40285999 0.76784199 0.41019899 0.76784199 0.41754699 0.76784199 0.42480901\n\t\t 0.76784199 0.43198401 0.76784199 0.43912801 0.78534901 0.43198401 0.78534901 0.43912801\n\t\t 0.80120897 0.43198401 0.80120897 0.43912801 0.82712501 0.43198401 0.82712501 0.43912801\n\t\t 0.82712501 0.42480901 0.80120897 0.42480901 0.78534901 0.42480901 0.78534901 0.41754699\n\t\t 0.80120897 0.41754699 0.82712501 0.41754699 0.82712501 0.41019899 0.80120897 0.41019899\n\t\t 0.78534901 0.41019899 0.78534901 0.40285999 0.80120897 0.40285999 0.82712501 0.40285999\n\t\t 0.82712501 0.39579299 0.80120897 0.39579299 0.78534901 0.39579299 0.78534901 0.38929901\n\t\t 0.80120897 0.38929901 0.82712501 0.38929901 0.82712501 0.383661 0.80120897 0.383661\n\t\t 0.78534901 0.383661 0.784863 0.37894899 0.76788503 0.378959 0.80078101 0.378948 0.78537798\n\t\t 0.378961 0.85441101 0.38929901 0.85441101 0.39579299 0.85441101 0.40285999 0.865794\n\t\t 0.39579299 0.865794 0.40285999 0.85441101 0.41019899 0.85441101 0.41754699 0.865794\n\t\t 0.41019899 0.865794 0.41754699 0.85441101 0.42480901 0.85441101 0.43198401 0.865794\n\t\t 0.42480901 0.865794 0.43198401 0.85441101 0.43912801 0.865794 0.43912801 0.85441101\n\t\t 0.446311 0.865794 0.446311 0.85441101 0.45353299 0.82712501 0.45353299 0.85441101\n\t\t 0.46066999 0.865794 0.45353299 0.865794 0.46066999 0.85441101 0.46759501 0.82712501\n\t\t 0.46759501 0.85441101 0.474323 0.865794 0.46759501 0.865794 0.474323 0.85441101 0.481004\n\t\t 0.82712501 0.481004 0.85441101 0.487591 0.865794 0.481004 0.865794 0.487591 0.82712501\n\t\t 0.487591 0.80120897 0.487591 0.80120897 0.481004 0.78534901 0.487591 0.78534901 0.481004\n\t\t 0.76784199 0.487591 0.76784199 0.481004 0.74909002 0.487591 0.74909002 0.481004 0.72957098\n\t\t 0.487591 0.72957098 0.481004 0.70975298 0.487591 0.70975298 0.481004 0.69024998 0.486826\n\t\t 0.69048601 0.48045501 0.671112 0.486718 0.671547 0.480248 0.65288597 0.486718 0.65348899\n\t\t 0.48022401 0.63565397 0.486754 0.636397 0.48029599 0.61946899 0.48681599 0.62032801\n\t\t 0.48043701 0.60426599 0.48687899 0.60524702 0.480598 0.58977002 0.48689499 0.59096801\n\t\t 0.480685 0.57581502 0.486949 0.57732898 0.48079601 0.562325 0.487077 0.56427503 0.48098701\n\t\t 0.54930401 0.487212 0.55180901 0.481062 0.53684199 0.48711601 0.53990799 0.48073801\n\t\t 0.52441001 0.48689201 0.52792299 0.480214 0.511967 0.48662901 0.51563501 0.47966999\n\t\t 0.49960899 0.48632199 0.50296599 0.47917601 0.48718399 0.48622099 0.48371401 0.49365899\n\t\t 0.47394899 0.493406 0.47521299 0.48649001 0.49467599 0.49354899 0.48966101 0.47921801\n\t\t 0.47654101 0.479978 0.455163 0.48667201 0.454689 0.48023999 0.47758099 0.47347 0.45473099\n\t\t 0.47384599 0.491294 0.47237 0.50513101 0.47230101 0.50642902 0.46557701 0.492226\n\t\t 0.465588 0.478118 0.466692 0.45460999 0.46722701;\n\tsetAttr \".uvst[0].uvsp[24250:24499]\" 0.478122 0.45984599 0.45421699 0.46036899\n\t\t 0.492457 0.45875901 0.50689101 0.45888701 0.50651699 0.452214 0.491965 0.452104 0.47755599\n\t\t 0.45285201 0.453594 0.45337799 0.476587 0.44581199 0.452894 0.446275 0.49088901 0.44551799\n\t\t 0.50541598 0.44568101 0.52023602 0.452254 0.520401 0.45894399 0.51969498 0.46575201\n\t\t 0.51811898 0.47267199 0.530518 0.47324601 0.54247099 0.47387299 0.55420297 0.474361\n\t\t 0.55614299 0.46731299 0.54439598 0.46680301 0.53230298 0.46622801 0.53326398 0.45927799\n\t\t 0.545591 0.45969501 0.55748802 0.46007699 0.55809999 0.45280701 0.54598403 0.45261499\n\t\t 0.53337401 0.45242199 0.5327 0.44562399 0.51929599 0.445656 0.54560202 0.44554299\n\t\t 0.55796701 0.44548601 0.57001102 0.45298299 0.56932497 0.460325 0.568039 0.46750399\n\t\t 0.56630498 0.474448 0.578915 0.474343 0.59214401 0.474264 0.60611898 0.474145 0.60693002\n\t\t 0.467457 0.59322703 0.46755201 0.580329 0.46758401 0.581429 0.46050301 0.59411001\n\t\t 0.46054199 0.60762298 0.46052101 0.608132 0.45338199 0.59470499 0.453302 0.58209598\n\t\t 0.45317 0.58225203 0.44575799 0.57004601 0.44557601 0.59494197 0.44595799 0.60839099\n\t\t 0.44612801 0.62259299 0.45339999 0.62219799 0.46044099 0.62166101 0.4673 0.62102699\n\t\t 0.47395399 0.63697499 0.47379601 0.653943 0.473721 0.67185801 0.473757 0.67207998\n\t\t 0.46714699 0.65429902 0.467112 0.637465 0.46717 0.63785797 0.46036899 0.654558 0.46033701\n\t\t 0.672221 0.46036199 0.67227697 0.45341501 0.65470499 0.45339999 0.63812703 0.45339799\n\t\t 0.63823402 0.44630599 0.62279499 0.446237 0.65472198 0.44634601 0.67224002 0.44636101\n\t\t 0.690795 0.453446 0.69078201 0.46045601 0.69072503 0.46729499 0.69063002 0.47395\n\t\t 0.70975298 0.474323 0.72957098 0.474323 0.74909002 0.474323 0.74909002 0.46759501\n\t\t 0.72957098 0.46759501 0.70975298 0.46759501 0.70975298 0.46066999 0.72957098 0.46066999\n\t\t 0.74909002 0.46066999 0.74909002 0.45353299 0.72957098 0.45353299 0.70975298 0.45353299\n\t\t 0.70975298 0.446311 0.69076598 0.44633999 0.72957098 0.446311 0.74909002 0.446311\n\t\t 0.76784199 0.45353299 0.76784199 0.46066999 0.76784199 0.46759501 0.76784199 0.474323\n\t\t 0.78534901 0.474323 0.80120897 0.474323 0.82712501 0.474323 0.80120897 0.46759501\n\t\t 0.78534901 0.46759501 0.78534901 0.46066999 0.80120897 0.46066999 0.82712501 0.46066999\n\t\t 0.80120897 0.45353299 0.78534901 0.45353299 0.78534901 0.446311 0.76784199 0.446311\n\t\t 0.80120897 0.446311 0.82712501 0.446311 0.45548001 0.493691 0.45495501 0.48666999\n\t\t 0.56153703 0.377992 0.54881698 0.37794 0.61794102 0.37824199 0.603284 0.378281 0.68937403\n\t\t 0.378355 0.67082798 0.37835401 0.76730502 0.37894699 0.74913901 0.37895501 0.82733101\n\t\t 0.38255599 0.82647502 0.37785101 0.80122697 0.37896001 0.865794 0.38929901 0.865794\n\t\t 0.383661 0.85441101 0.383661 0.85426301 0.37894899 0.82717001 0.37895399 0.86566502\n\t\t 0.37895301 0.85443997 0.37895301 0.43696001 0.43238801 0.433898 0.43198401 0.433898\n\t\t 0.43912801 0.437051 0.43969899 0.440433 0.43262401 0.44064301 0.44005299 0.44035101\n\t\t 0.42513001 0.43693 0.42501101 0.433898 0.42480901 0.436959 0.41756701 0.433898 0.41754699\n\t\t 0.440384 0.41760799 0.440568 0.410108 0.43706799 0.410119 0.433898 0.41019899 0.437213\n\t\t 0.40277201 0.433898 0.402859 0.44086099 0.40276799 0.44128999 0.39576799 0.437446\n\t\t 0.395769 0.433898 0.39579299 0.437767 0.389368 0.433898 0.38929901 0.44190699 0.38929701\n\t\t 0.44259301 0.38361999 0.43800399 0.38379899 0.433898 0.383661 0.438131 0.48694 0.433898\n\t\t 0.487591 0.43340799 0.492971 0.43673101 0.492971 0.43804201 0.480674 0.44249901 0.480452\n\t\t 0.44278601 0.486855 0.437592 0.49304399 0.44252399 0.49305999 0.433898 0.481004 0.43793201\n\t\t 0.47426 0.433898 0.474323 0.442303 0.474123 0.442056 0.467785 0.43777999 0.467691\n\t\t 0.433898 0.46759501 0.43760601 0.460978 0.433898 0.46066999 0.441742 0.461281 0.44135401\n\t\t 0.45447701 0.43740001 0.45405799 0.433898 0.45353299 0.437204 0.44693899 0.433898\n\t\t 0.446311 0.44096401 0.447368 0.44586799 0.49407199 0.45785299 0.49324301 0.44302601\n\t\t 0.487827 0.423985 0.050494 0.423619 0.045405999 0.418051 0.045705002 0.41834 0.050755002\n\t\t 0.41431499 0.051059999 0.41408601 0.046032 0.40903601 0.051438 0.40886 0.046415001\n\t\t 0.40872899 0.056370001 0.414022 0.056023002 0.41810501 0.055752002 0.42391101 0.055525001\n\t\t 0.41736501 0.060702 0.42340001 0.060515001 0.41322801 0.060931001 0.40795401 0.061230998\n\t\t 0.40681201 0.066137001 0.412036 0.065894 0.41622001 0.065722004 0.42254001 0.065604001\n\t\t 0.414801 0.070941001 0.42142299 0.070910998 0.41059199 0.071042001 0.40545499 0.071220003\n\t\t 0.40407601 0.076543003 0.40908399 0.076433003 0.41328001 0.076405004 0.42016399 0.076453\n\t\t 0.41181001 0.082099997 0.41886899 0.082186997 0.40768 0.082070999 0.40284401 0.082107\n\t\t 0.40174299 0.087815002 0.40639701 0.087823004 0.41043401 0.087857001 0.417613 0.087917998\n\t\t 0.42699501 0.070735 0.42759201 0.065366 0.43294501 0.064749002 0.43294501 0.059604999\n\t\t 0.42803201 0.060249999 0.43294501 0.054804999 0.42827699 0.055307001 0.43294501 0.050276\n\t\t 0.42826 0.050425 0.42800301 0.045513 0.43294501 0.045942999 0.43294501 0.070223004\n\t\t 0.42754 0.040523 0.422833 0.040265001 0.41724601 0.040608 0.42175999 0.035145 0.41607201\n\t\t 0.035523999 0.42055601 0.030095 0.41467601 0.030486999 0.41938901 0.025082 0.41325501\n\t\t 0.025454 0.41840601 0.020026 0.41196901 0.020341 0.41766399 0.014793 0.41091701 0.015022\n\t\t 0.41718301 0.0093139997 0.41012901 0.0094149997 0.41667601 0.003672 0.40959001 0.0036210001;\n\tsetAttr \".uvst[0].uvsp[24500:24749]\" 0.40704301 0.015075 0.40618199 0.0094280001\n\t\t 0.409491 0.003579 0.405518 0.0035570001 0.40160701 0.0094370004 0.40100399 0.00358\n\t\t 0.402448 0.015097 0.40814599 0.020443 0.40348399 0.020492001 0.40469399 0.025729001\n\t\t 0.409455 0.025624 0.41086701 0.030732 0.405981 0.030925 0.40720999 0.036114 0.412227\n\t\t 0.035829 0.413344 0.040940002 0.408207 0.041292001 0.399647 0.030972 0.398617 0.025738001\n\t\t 0.397652 0.020494999 0.39683101 0.015124 0.396144 0.009474 0.38973999 0.014973 0.38934001\n\t\t 0.0094309999 0.38062099 0.014606 0.38062501 0.0092909997 0.36882499 0.014239 0.36932501\n\t\t 0.0091420002 0.35367 0.014235 0.354608 0.0091159996 0.33692899 0.014388 0.33799899\n\t\t 0.0091319997 0.32042599 0.014697 0.32118499 0.0091949999 0.30583301 0.015355 0.30583301\n\t\t 0.0093700001 0.35329801 0.019366 0.368662 0.019352 0.33648601 0.019624 0.32008201\n\t\t 0.020175001 0.30583301 0.021309 0.30583301 0.026961001 0.319895 0.02555 0.33626199\n\t\t 0.024847001 0.35314101 0.024569999 0.36867401 0.024572 0.35308599 0.029851999 0.36876801\n\t\t 0.029913999 0.336146 0.030060001 0.31979799 0.030793 0.30583301 0.032191999 0.30583301\n\t\t 0.037030999 0.31980899 0.035998002 0.33614901 0.035303 0.35313299 0.035200998 0.36893699\n\t\t 0.035330001 0.35322899 0.040575001 0.36911699 0.040747002 0.33622199 0.040589999\n\t\t 0.31988299 0.041264001 0.30583301 0.041602999 0.30583301 0.045942999 0.31998801 0.046634\n\t\t 0.30583301 0.050276 0.32004201 0.052179001 0.33634001 0.045882002 0.33641699 0.051165\n\t\t 0.35336101 0.045914002 0.35344401 0.051194999 0.36929101 0.046091001 0.36937699 0.051325999\n\t\t 0.30583301 0.054804999 0.32004601 0.057872999 0.336445 0.056398999 0.35346901 0.056416001\n\t\t 0.36935699 0.056474 0.35343501 0.061622001 0.36922699 0.061606999 0.33643401 0.061579\n\t\t 0.320034 0.063637003 0.30583301 0.059604999 0.30583301 0.064749002 0.32006299 0.069332004\n\t\t 0.33643401 0.06673 0.35338101 0.066869996 0.36903101 0.066811003 0.35339901 0.072177\n\t\t 0.368866 0.072120003 0.336541 0.071888 0.32020301 0.074758999 0.30583301 0.070223004\n\t\t 0.30583301 0.076016001 0.32043299 0.079764999 0.33678001 0.077133 0.353517 0.077519\n\t\t 0.368783 0.077486999 0.35384801 0.082828 0.36890599 0.08281 0.33721101 0.082514003\n\t\t 0.32074401 0.084316 0.30583301 0.08196 0.30583301 0.087775998 0.32131499 0.088601001\n\t\t 0.33812901 0.087985002 0.35467401 0.088076003 0.36934501 0.088055 0.356085 0.093331002\n\t\t 0.37009701 0.093227997 0.34033701 0.093310997 0.32327899 0.093345001 0.340361 0.093350001\n\t\t 0.306806 0.092666999 0.322799 0.092758 0.29161799 0.087775998 0.29161799 0.08196\n\t\t 0.29161799 0.076016001 0.29161799 0.070223004 0.29161799 0.064749002 0.29161799 0.059604999\n\t\t 0.29161799 0.054804999 0.29161799 0.050276 0.29161799 0.045942999 0.279039 0.050276\n\t\t 0.279039 0.045942999 0.26699799 0.050276 0.26699799 0.045942999 0.254612 0.050276\n\t\t 0.254612 0.045942999 0.254612 0.054804999 0.26699799 0.054804999 0.279039 0.054804999\n\t\t 0.279039 0.059604999 0.26699799 0.059604999 0.26699799 0.054804999 0.254612 0.059604999\n\t\t 0.26699799 0.054804999 0.26699799 0.054804999 0.254612 0.064749002 0.26699799 0.064749002\n\t\t 0.279039 0.064749002 0.279039 0.070223004 0.26699799 0.070223004 0.254612 0.070223004\n\t\t 0.254612 0.076016001 0.26699799 0.076016001 0.279039 0.076016001 0.279039 0.08196\n\t\t 0.26699799 0.08196 0.254612 0.08196 0.254612 0.087775998 0.26699799 0.087775998 0.279039\n\t\t 0.087775998 0.27953699 0.093370996 0.29153499 0.093516 0.26748601 0.093465 0.27893701\n\t\t 0.093479998 0.25503099 0.093579002 0.26689601 0.093484998 0.241256 0.087775998 0.241256\n\t\t 0.08196 0.241256 0.076016001 0.241256 0.070223004 0.241256 0.064749002 0.241256 0.059604999\n\t\t 0.241256 0.054804999 0.241256 0.050276 0.241256 0.045942999 0.22657999 0.050276 0.22657999\n\t\t 0.045942999 0.21060701 0.050276 0.21060701 0.045942999 0.193698 0.050276 0.193698\n\t\t 0.045942999 0.193698 0.054804999 0.21060701 0.054804999 0.22657999 0.054804999 0.22657999\n\t\t 0.059604999 0.21060701 0.059604999 0.193698 0.059604999 0.193698 0.064749002 0.21060701\n\t\t 0.064749002 0.22657999 0.064749002 0.22657999 0.070223004 0.21060701 0.070223004\n\t\t 0.193698 0.070223004 0.193698 0.076016001 0.21060701 0.076016001 0.22657999 0.076016001\n\t\t 0.22657999 0.08196 0.21060701 0.08196 0.193698 0.08196 0.193698 0.087775998 0.21060701\n\t\t 0.087775998 0.22657999 0.087775998 0.22687501 0.093610004 0.241166 0.093535997 0.21092001\n\t\t 0.093584001 0.226504 0.093548998 0.19405501 0.093566 0.210548 0.093552999 0.17641\n\t\t 0.087775998 0.17641 0.08196 0.17641 0.076016001 0.17641 0.070223004 0.17641 0.064749002\n\t\t 0.17641 0.059604999 0.17641 0.054804999 0.17641 0.050276 0.17641 0.045942999 0.159236\n\t\t 0.050276 0.159236 0.045942999 0.14243101 0.050276 0.14243101 0.045942999 0.126 0.050276\n\t\t 0.126 0.045942999 0.126 0.054804999 0.14243101 0.054804999 0.159236 0.054804999 0.159236\n\t\t 0.059604999 0.14243101 0.059604999 0.126 0.059604999 0.126 0.064749002 0.14243101\n\t\t 0.064749002 0.159236 0.064749002 0.159236 0.070223004 0.14243101 0.070223004 0.126\n\t\t 0.070223004 0.126 0.076016001 0.14243101 0.076016001 0.159236 0.076016001 0.159236\n\t\t 0.08196 0.14243101 0.08196 0.126 0.08196 0.126 0.087775998 0.14243101 0.087775998\n\t\t 0.159236 0.087775998 0.159666 0.093576998 0.176385 0.093561999 0.142858 0.093589999\n\t\t 0.159217 0.093571 0.126404 0.093594998 0.142409 0.093579002 0.109512 0.087775998\n\t\t 0.109512 0.08196 0.109512 0.076016001 0.109512 0.070223004 0.109512 0.064749002 0.109512\n\t\t 0.059604999 0.109512 0.054804999 0.109512 0.050276;\n\tsetAttr \".uvst[0].uvsp[24750:24999]\" 0.109512 0.045942999 0.092609003 0.050276\n\t\t 0.092609003 0.045942999 0.075531997 0.050276 0.075531997 0.045942999 0.043738 0.050276\n\t\t 0.043738 0.045942999 0.043738 0.054804999 0.075531997 0.054804999 0.092609003 0.054804999\n\t\t 0.092609003 0.059604999 0.075531997 0.059604999 0.043738 0.059604999 0.043738 0.064749002\n\t\t 0.075531997 0.064749002 0.092609003 0.064749002 0.092609003 0.070223004 0.075531997\n\t\t 0.070223004 0.043738 0.070223004 0.043738 0.076016001 0.075531997 0.076016001 0.092609003\n\t\t 0.076016001 0.092609003 0.08196 0.075531997 0.08196 0.043738 0.08196 0.043738 0.087775998\n\t\t 0.075531997 0.087775998 0.092609003 0.087775998 0.092991002 0.093571 0.109479 0.093572997\n\t\t 0.075910002 0.093566 0.092583999 0.093567997 0.016646 0.08196 0.016646 0.076016001\n\t\t 0.016646 0.070223004 0.0034680001 0.076016001 0.0034680001 0.070223004 0.016646 0.064749002\n\t\t 0.016646 0.059604999 0.0034680001 0.064749002 0.0034680001 0.059604999 0.016646 0.054804999\n\t\t 0.016646 0.050276 0.0034680001 0.054804999 0.0034680001 0.050276 0.016646 0.045942999\n\t\t 0.0034680001 0.045942999 0.016646 0.041602999 0.0034680001 0.041602999 0.016646 0.037030999\n\t\t 0.043738 0.037030999 0.016646 0.032191999 0.0034680001 0.037030999 0.0034680001 0.032191999\n\t\t 0.016646 0.026961001 0.043738 0.026961001 0.016646 0.021309 0.0034680001 0.026961001\n\t\t 0.0034680001 0.021309 0.016646 0.015355 0.043738 0.015355 0.016646 0.0093700001 0.0034680001\n\t\t 0.015355 0.0034680001 0.0093700001 0.043738 0.0093700001 0.075531997 0.0093700001\n\t\t 0.075531997 0.015355 0.092609003 0.0093700001 0.092609003 0.015355 0.109512 0.0093700001\n\t\t 0.109512 0.015355 0.126 0.0093700001 0.126 0.015355 0.14243101 0.0093700001 0.14243101\n\t\t 0.015355 0.159236 0.0093700001 0.159236 0.015355 0.17641 0.0093700001 0.17641 0.015355\n\t\t 0.193698 0.0093700001 0.193698 0.015355 0.21060701 0.0093700001 0.21060701 0.015355\n\t\t 0.22657999 0.0093700001 0.22657999 0.015355 0.241256 0.0093700001 0.241256 0.015355\n\t\t 0.254612 0.0093700001 0.254612 0.015355 0.26699799 0.0093700001 0.26699799 0.015355\n\t\t 0.279039 0.0093700001 0.279039 0.015355 0.29161799 0.0093700001 0.29161799 0.015355\n\t\t 0.29161799 0.021309 0.279039 0.021309 0.279039 0.015355 0.26699799 0.021309 0.279039\n\t\t 0.015355 0.279039 0.015355 0.26699799 0.015355 0.254612 0.021309 0.26699799 0.015355\n\t\t 0.26699799 0.015355 0.254612 0.026961001 0.26699799 0.026961001 0.279039 0.026961001\n\t\t 0.29161799 0.026961001 0.29161799 0.032191999 0.279039 0.032191999 0.26699799 0.032191999\n\t\t 0.254612 0.032191999 0.254612 0.037030999 0.26699799 0.037030999 0.279039 0.037030999\n\t\t 0.279039 0.037030999 0.279039 0.037030999 0.29161799 0.037030999 0.29161799 0.041602999\n\t\t 0.279039 0.041602999 0.279039 0.037030999 0.26699799 0.041602999 0.254612 0.041602999\n\t\t 0.241256 0.037030999 0.241256 0.032191999 0.241256 0.026961001 0.241256 0.021309\n\t\t 0.22657999 0.021309 0.21060701 0.021309 0.193698 0.021309 0.193698 0.026961001 0.21060701\n\t\t 0.026961001 0.22657999 0.026961001 0.22657999 0.032191999 0.21060701 0.032191999\n\t\t 0.193698 0.032191999 0.193698 0.037030999 0.21060701 0.037030999 0.22657999 0.037030999\n\t\t 0.22657999 0.041602999 0.241256 0.041602999 0.21060701 0.041602999 0.193698 0.041602999\n\t\t 0.17641 0.037030999 0.17641 0.032191999 0.17641 0.026961001 0.17641 0.021309 0.159236\n\t\t 0.021309 0.14243101 0.021309 0.126 0.021309 0.126 0.026961001 0.14243101 0.026961001\n\t\t 0.159236 0.026961001 0.159236 0.032191999 0.14243101 0.032191999 0.126 0.032191999\n\t\t 0.126 0.037030999 0.14243101 0.037030999 0.159236 0.037030999 0.159236 0.041602999\n\t\t 0.17641 0.041602999 0.14243101 0.041602999 0.126 0.041602999 0.109512 0.037030999\n\t\t 0.109512 0.032191999 0.109512 0.026961001 0.109512 0.021309 0.092609003 0.021309\n\t\t 0.075531997 0.021309 0.043738 0.021309 0.075531997 0.026961001 0.092609003 0.026961001\n\t\t 0.092609003 0.032191999 0.075531997 0.032191999 0.043738 0.032191999 0.075531997\n\t\t 0.037030999 0.092609003 0.037030999 0.092609003 0.041602999 0.109512 0.041602999\n\t\t 0.075531997 0.041602999 0.043738 0.041602999 0.292052 0.093355998 0.305805 0.093561999\n\t\t 0.241579 0.093621999 0.254513 0.093514003 0.176817 0.093567997 0.19365899 0.093556002\n\t\t 0.109894 0.093583003 0.125967 0.093579002 0.044558 0.089449003 0.045396999 0.095196001\n\t\t 0.075515002 0.093566 0.0034680001 0.08196 0.0034680001 0.087775998 0.016646 0.087775998\n\t\t 0.016774001 0.093561999 0.043703999 0.093567997 0.0035880001 0.093555003 0.016619001\n\t\t 0.093566 0.42630199 0.076339997 0.43294501 0.076016001 0.42555699 0.082094997 0.43294501\n\t\t 0.08196 0.42484999 0.087856002 0.43294501 0.087775998 0.43277499 0.003798 0.424622\n\t\t 0.003821 0.42455399 0.0092390003 0.43294501 0.0093700001 0.42473999 0.014725 0.42435399\n\t\t 0.003817 0.41690201 0.0037380001 0.43294501 0.015355 0.42512301 0.020093 0.43294501\n\t\t 0.021309 0.42563999 0.025319999 0.43294501 0.026961001 0.426276 0.030410999 0.43294501\n\t\t 0.032191999 0.42693499 0.035475999 0.43294501 0.037030999 0.43294501 0.041602999\n\t\t 0.40213001 0.051681999 0.40198299 0.046629 0.39339501 0.051739 0.39327201 0.046634\n\t\t 0.38257799 0.051577002 0.382476 0.046404 0.38248599 0.056637999 0.39321899 0.056722\n\t\t 0.40187401 0.056623999 0.40121701 0.061489001 0.392737 0.061636999 0.38219401 0.061654001\n\t\t 0.381758 0.066737004 0.39202401 0.066609003 0.40025201 0.066400997 0.39912 0.071486004\n\t\t 0.39120999 0.071745999 0.38128901 0.071960002 0.38088599 0.077299997 0.39043501 0.077062003\n\t\t 0.398 0.076793 0.39704999 0.082292996 0.38984299 0.082491003 0.380674 0.082663 0.38062599\n\t\t 0.088005997 0.38936001 0.087954998 0.39621499 0.087889999;\n\tsetAttr \".uvst[0].uvsp[25000:25249]\" 0.39540401 0.093434997 0.40092501 0.093482003\n\t\t 0.388769 0.093367003 0.39555901 0.093392 0.38038501 0.093327001 0.38896599 0.093316004\n\t\t 0.36968699 0.093321003 0.380656 0.093264997 0.390246 0.020274 0.38077599 0.019804001\n\t\t 0.38107401 0.025026999 0.390885 0.025505999 0.39158499 0.030777 0.38144001 0.030343\n\t\t 0.38184199 0.035723001 0.39228299 0.036090001 0.40063801 0.036219001 0.401445 0.041457001\n\t\t 0.392865 0.041398 0.3822 0.041101001 0.45170501 0.43195301 0.47409701 0.43194801\n\t\t 0.475375 0.438833 0.475375 0.438833 0.45223501 0.43911499 0.45170501 0.43195301 0.475375\n\t\t 0.438833 0.47409701 0.43194801 0.48773399 0.43252099 0.48773399 0.43252099 0.48940399\n\t\t 0.43898901 0.475375 0.438833 0.48940399 0.43898901 0.48773399 0.43252099 0.50184101\n\t\t 0.432679 0.50184101 0.432679 0.50377399 0.43921599 0.48940399 0.43898901 0.499906\n\t\t 0.42593801 0.50184101 0.432679 0.48773399 0.43252099 0.48773399 0.43252099 0.486139\n\t\t 0.426072 0.499906 0.42593801 0.486139 0.426072 0.48773399 0.43252099 0.47409701 0.43194801\n\t\t 0.47409701 0.43194801 0.47295401 0.42513701 0.486139 0.426072 0.47295401 0.42513701\n\t\t 0.47409701 0.43194801 0.45170501 0.43195301 0.45170501 0.43195301 0.451368 0.42481801\n\t\t 0.47295401 0.42513701 0.47208399 0.41837701 0.47295401 0.42513701 0.451368 0.42481801\n\t\t 0.451368 0.42481801 0.451213 0.417716 0.47208399 0.41837701 0.47295401 0.42513701\n\t\t 0.47208399 0.41837701 0.48483199 0.41940799 0.48483199 0.41940799 0.486139 0.426072\n\t\t 0.47295401 0.42513701 0.486139 0.426072 0.48483199 0.41940799 0.49823499 0.41907299\n\t\t 0.49823499 0.41907299 0.499906 0.42593801 0.486139 0.426072 0.497105 0.412092 0.49823499\n\t\t 0.41907299 0.48483199 0.41940799 0.48483199 0.41940799 0.48401299 0.41251099 0.497105\n\t\t 0.412092 0.48401299 0.41251099 0.48483199 0.41940799 0.47208399 0.41837701 0.47208399\n\t\t 0.41837701 0.47159299 0.41167501 0.48401299 0.41251099 0.47159299 0.41167501 0.47208399\n\t\t 0.41837701 0.451213 0.417716 0.451213 0.417716 0.45128199 0.41067201 0.47159299 0.41167501\n\t\t 0.47155499 0.40484801 0.47159299 0.41167501 0.45128199 0.41067201 0.45128199 0.41067201\n\t\t 0.45155299 0.40375099 0.47155499 0.40484801 0.47159299 0.41167501 0.47155499 0.40484801\n\t\t 0.48375699 0.40551901 0.48375699 0.40551901 0.48401299 0.41251099 0.47159299 0.41167501\n\t\t 0.48401299 0.41251099 0.48375699 0.40551901 0.49662799 0.405224 0.49662799 0.405224\n\t\t 0.497105 0.412092 0.48401299 0.41251099 0.49682999 0.39835101 0.49662799 0.405224\n\t\t 0.48375699 0.40551901 0.48375699 0.40551901 0.48412499 0.39852899 0.49682999 0.39835101\n\t\t 0.48412499 0.39852899 0.48375699 0.40551901 0.47155499 0.40484801 0.47155499 0.40484801\n\t\t 0.472002 0.398148 0.48412499 0.39852899 0.472002 0.398148 0.47155499 0.40484801 0.45155299\n\t\t 0.40375099 0.45155299 0.40375099 0.45210901 0.39701301 0.472002 0.398148 0.47281101\n\t\t 0.39156401 0.472002 0.398148 0.45210901 0.39701301 0.45210901 0.39701301 0.45299\n\t\t 0.39052701 0.47281101 0.39156401 0.472002 0.398148 0.47281101 0.39156401 0.484851\n\t\t 0.39167699 0.484851 0.39167699 0.48412499 0.39852899 0.472002 0.398148 0.48412499\n\t\t 0.39852899 0.484851 0.39167699 0.497417 0.39151099 0.497417 0.39151099 0.49682999\n\t\t 0.39835101 0.48412499 0.39852899 0.49766001 0.38471001 0.497417 0.39151099 0.484851\n\t\t 0.39167699 0.484851 0.39167699 0.485457 0.38485 0.49766001 0.38471001 0.485457 0.38485\n\t\t 0.484851 0.39167699 0.47281101 0.39156401 0.47281101 0.39156401 0.47388199 0.38487399\n\t\t 0.485457 0.38485 0.47388199 0.38487399 0.47281101 0.39156401 0.45299 0.39052701 0.45299\n\t\t 0.39052701 0.45463899 0.38428199 0.47388199 0.38487399 0.49662799 0.405224 0.49682999\n\t\t 0.39835101 0.50966698 0.39794201 0.50966698 0.39794201 0.50971901 0.40473601 0.49662799\n\t\t 0.405224 0.497105 0.412092 0.49662799 0.405224 0.50971901 0.40473601 0.50971901 0.40473601\n\t\t 0.51045197 0.411641 0.497105 0.412092 0.49823499 0.41907299 0.497105 0.412092 0.51045197\n\t\t 0.411641 0.51045197 0.411641 0.51183403 0.418607 0.49823499 0.41907299 0.499906 0.42593801\n\t\t 0.49823499 0.41907299 0.51183403 0.418607 0.51183403 0.418607 0.513699 0.42554101\n\t\t 0.499906 0.42593801 0.50184101 0.432679 0.499906 0.42593801 0.513699 0.42554101 0.513699\n\t\t 0.42554101 0.51576698 0.43236801 0.50184101 0.432679 0.50377399 0.43921599 0.50184101\n\t\t 0.432679 0.51576698 0.43236801 0.51576698 0.43236801 0.51772499 0.43906 0.50377399\n\t\t 0.43921599 0.51772499 0.43906 0.51576698 0.43236801 0.52949399 0.431907 0.52949399\n\t\t 0.431907 0.53133702 0.438806 0.51772499 0.43906 0.53133702 0.438806 0.52949399 0.431907\n\t\t 0.542817 0.43127999 0.542817 0.43127999 0.54449099 0.438438 0.53133702 0.438806 0.54449099\n\t\t 0.438438 0.542817 0.43127999 0.55563498 0.430787 0.55563498 0.430787 0.55710298 0.438135\n\t\t 0.54449099 0.438438 0.553765 0.42354801 0.55563498 0.430787 0.542817 0.43127999 0.542817\n\t\t 0.43127999 0.54080099 0.42411 0.553765 0.42354801 0.54080099 0.42411 0.542817 0.43127999\n\t\t 0.52949399 0.431907 0.52949399 0.431907 0.52742398 0.424936 0.54080099 0.42411 0.52742398\n\t\t 0.424936 0.52949399 0.431907 0.51576698 0.43236801 0.51576698 0.43236801 0.513699\n\t\t 0.42554101 0.52742398 0.424936 0.513699 0.42554101 0.51183403 0.418607 0.52543998\n\t\t 0.417961 0.52543998 0.417961 0.52742398 0.424936 0.513699 0.42554101 0.52742398 0.424936\n\t\t 0.52543998 0.417961 0.53874999 0.41701099 0.53874999 0.41701099 0.54080099 0.42411\n\t\t 0.52742398 0.424936 0.54080099 0.42411 0.53874999 0.41701099;\n\tsetAttr \".uvst[0].uvsp[25250:25499]\" 0.55178303 0.41658801 0.55178303 0.41658801\n\t\t 0.553765 0.42354801 0.54080099 0.42411 0.54996997 0.40995601 0.55178303 0.41658801\n\t\t 0.53874999 0.41701099 0.53874999 0.41701099 0.536982 0.410099 0.54996997 0.40995601\n\t\t 0.536982 0.410099 0.53874999 0.41701099 0.52543998 0.417961 0.52543998 0.417961 0.523844\n\t\t 0.411073 0.536982 0.410099 0.523844 0.411073 0.52543998 0.417961 0.51183403 0.418607\n\t\t 0.51183403 0.418607 0.51045197 0.411641 0.523844 0.411073 0.522834 0.404331 0.523844\n\t\t 0.411073 0.51045197 0.411641 0.51045197 0.411641 0.50971901 0.40473601 0.522834 0.404331\n\t\t 0.523844 0.411073 0.522834 0.404331 0.535734 0.40348101 0.535734 0.40348101 0.536982\n\t\t 0.410099 0.523844 0.411073 0.536982 0.410099 0.535734 0.40348101 0.54859197 0.403548\n\t\t 0.54859197 0.403548 0.54996997 0.40995601 0.536982 0.410099 0.54779202 0.39747199\n\t\t 0.54859197 0.403548 0.535734 0.40348101 0.535734 0.40348101 0.53512198 0.39714399\n\t\t 0.54779202 0.39747199 0.53512198 0.39714399 0.535734 0.40348101 0.522834 0.404331\n\t\t 0.522834 0.404331 0.52248502 0.39771301 0.53512198 0.39714399 0.52248502 0.39771301\n\t\t 0.522834 0.404331 0.50971901 0.40473601 0.50971901 0.40473601 0.50966698 0.39794201\n\t\t 0.52248502 0.39771301 0.52259701 0.39114699 0.52248502 0.39771301 0.50966698 0.39794201\n\t\t 0.50966698 0.39794201 0.51002198 0.39125001 0.52259701 0.39114699 0.51002198 0.39125001\n\t\t 0.50966698 0.39794201 0.49682999 0.39835101 0.49682999 0.39835101 0.497417 0.39151099\n\t\t 0.51002198 0.39125001 0.52248502 0.39771301 0.52259701 0.39114699 0.53503501 0.39091101\n\t\t 0.53503501 0.39091101 0.53512198 0.39714399 0.52248502 0.39771301 0.53512198 0.39714399\n\t\t 0.53503501 0.39091101 0.54751402 0.391278 0.54751402 0.391278 0.54779202 0.39747199\n\t\t 0.53512198 0.39714399 0.54779202 0.38466799 0.54751402 0.391278 0.53503501 0.39091101\n\t\t 0.53503501 0.39091101 0.53517503 0.38452601 0.54779202 0.38466799 0.53517503 0.38452601\n\t\t 0.53503501 0.39091101 0.52259701 0.39114699 0.52259701 0.39114699 0.52259499 0.38456199\n\t\t 0.53517503 0.38452601 0.52259499 0.38456199 0.52259701 0.39114699 0.51002198 0.39125001\n\t\t 0.51002198 0.39125001 0.51003802 0.38459399 0.52259499 0.38456199 0.51003802 0.38459399\n\t\t 0.51002198 0.39125001 0.497417 0.39151099 0.497417 0.39151099 0.49766001 0.38471001\n\t\t 0.51003802 0.38459399 0.50864398 0.377911 0.51003802 0.38459399 0.49766001 0.38471001\n\t\t 0.49766001 0.38471001 0.49643999 0.377922 0.50864398 0.377911 0.51003802 0.38459399\n\t\t 0.50864398 0.377911 0.52112198 0.378041 0.52112198 0.378041 0.52259499 0.38456199\n\t\t 0.51003802 0.38459399 0.53416401 0.37808299 0.53517503 0.38452601 0.52259499 0.38456199\n\t\t 0.52259499 0.38456199 0.52157003 0.37804201 0.53416401 0.37808299 0.54767299 0.37812299\n\t\t 0.54779202 0.38466799 0.53517503 0.38452601 0.53517503 0.38452601 0.53502399 0.37807101\n\t\t 0.54767299 0.37812299 0.54751402 0.391278 0.54779202 0.38466799 0.56108999 0.38434899\n\t\t 0.56108999 0.38434899 0.56082702 0.39035299 0.54751402 0.391278 0.54779202 0.39747199\n\t\t 0.54751402 0.391278 0.56082702 0.39035299 0.56082702 0.39035299 0.561212 0.396539\n\t\t 0.54779202 0.39747199 0.54859197 0.403548 0.54779202 0.39747199 0.561212 0.396539\n\t\t 0.561212 0.396539 0.56207699 0.402906 0.54859197 0.403548 0.54996997 0.40995601 0.54859197\n\t\t 0.403548 0.56207699 0.402906 0.56207699 0.402906 0.563366 0.40943199 0.54996997 0.40995601\n\t\t 0.55178303 0.41658801 0.54996997 0.40995601 0.563366 0.40943199 0.563366 0.40943199\n\t\t 0.56499398 0.416444 0.55178303 0.41658801 0.553765 0.42354801 0.55178303 0.41658801\n\t\t 0.56499398 0.416444 0.56499398 0.416444 0.56670898 0.423599 0.553765 0.42354801 0.55563498\n\t\t 0.430787 0.553765 0.42354801 0.56670898 0.423599 0.56670898 0.423599 0.56826901 0.43083599\n\t\t 0.55563498 0.430787 0.55710298 0.438135 0.55563498 0.430787 0.56826901 0.43083599\n\t\t 0.56826901 0.43083599 0.56943601 0.43817201 0.55710298 0.438135 0.56943601 0.43817201\n\t\t 0.56826901 0.43083599 0.58108699 0.43112999 0.58108699 0.43112999 0.58189797 0.43838301\n\t\t 0.56943601 0.43817201 0.58189797 0.43838301 0.58108699 0.43112999 0.59433103 0.43139401\n\t\t 0.59433103 0.43139401 0.59480798 0.43863001 0.58189797 0.43838301 0.59480798 0.43863001\n\t\t 0.59433103 0.43139401 0.60813898 0.43160799 0.60813898 0.43160799 0.60839099 0.43884999\n\t\t 0.59480798 0.43863001 0.60768002 0.42441699 0.60813898 0.43160799 0.59433103 0.43139401\n\t\t 0.59433103 0.43139401 0.59358197 0.42427999 0.60768002 0.42441699 0.59358197 0.42427999\n\t\t 0.59433103 0.43139401 0.58108699 0.43112999 0.58108699 0.43112999 0.57993299 0.42406899\n\t\t 0.59358197 0.42427999 0.57993299 0.42406899 0.58108699 0.43112999 0.56826901 0.43083599\n\t\t 0.56826901 0.43083599 0.56670898 0.423599 0.57993299 0.42406899 0.56670898 0.423599\n\t\t 0.56499398 0.416444 0.578605 0.41727501 0.578605 0.41727501 0.57993299 0.42406899\n\t\t 0.56670898 0.423599 0.57993299 0.42406899 0.578605 0.41727501 0.59266597 0.417272\n\t\t 0.59266597 0.417272 0.59358197 0.42427999 0.57993299 0.42406899 0.59358197 0.42427999\n\t\t 0.59266597 0.417272 0.60707098 0.41727799 0.60707098 0.41727799 0.60768002 0.42441699\n\t\t 0.59358197 0.42427999 0.606381 0.41023099 0.60707098 0.41727799 0.59266597 0.417272\n\t\t 0.59266597 0.417272 0.59169197 0.410339 0.606381 0.41023099 0.59169197 0.410339 0.59266597\n\t\t 0.417272 0.578605 0.41727501 0.578605 0.41727501 0.57728601 0.41080001 0.59169197\n\t\t 0.410339 0.57728601 0.41080001 0.578605 0.41727501 0.56499398 0.416444 0.56499398\n\t\t 0.416444 0.563366 0.40943199 0.57728601 0.41080001;\n\tsetAttr \".uvst[0].uvsp[25500:25749]\" 0.57617998 0.404318 0.57728601 0.41080001\n\t\t 0.563366 0.40943199 0.563366 0.40943199 0.56207699 0.402906 0.57617998 0.404318 0.57728601\n\t\t 0.41080001 0.57617998 0.404318 0.59078699 0.403512 0.59078699 0.403512 0.59169197\n\t\t 0.410339 0.57728601 0.41080001 0.59169197 0.410339 0.59078699 0.403512 0.60569298\n\t\t 0.40337601 0.60569298 0.40337601 0.606381 0.41023099 0.59169197 0.410339 0.60506898\n\t\t 0.39680699 0.60569298 0.40337601 0.59078699 0.403512 0.59078699 0.403512 0.59004903\n\t\t 0.396905 0.60506898 0.39680699 0.59004903 0.396905 0.59078699 0.403512 0.57617998\n\t\t 0.404318 0.57617998 0.404318 0.57535797 0.39772001 0.59004903 0.396905 0.57535797\n\t\t 0.39772001 0.57617998 0.404318 0.56207699 0.402906 0.56207699 0.402906 0.561212 0.396539\n\t\t 0.57535797 0.39772001 0.57492 0.39110699 0.57535797 0.39772001 0.561212 0.396539\n\t\t 0.561212 0.396539 0.56082702 0.39035299 0.57492 0.39110699 0.57535797 0.39772001\n\t\t 0.57492 0.39110699 0.58954102 0.390567 0.58954102 0.390567 0.59004903 0.396905 0.57535797\n\t\t 0.39772001 0.59004903 0.396905 0.58954102 0.390567 0.60453498 0.39050999 0.60453498\n\t\t 0.39050999 0.60506898 0.39680699 0.59004903 0.396905 0.60400498 0.38435799 0.60453498\n\t\t 0.39050999 0.58954102 0.390567 0.58954102 0.390567 0.58925301 0.38438901 0.60400498\n\t\t 0.38435799 0.58925301 0.38438901 0.58954102 0.390567 0.57492 0.39110699 0.57492 0.39110699\n\t\t 0.57495201 0.38455799 0.58925301 0.38438901 0.57495201 0.38455799 0.57492 0.39110699\n\t\t 0.56082702 0.39035299 0.56082702 0.39035299 0.56108999 0.38434899 0.57495201 0.38455799\n\t\t 0.57512802 0.37829399 0.57495201 0.38455799 0.56108999 0.38434899 0.56108999 0.38434899\n\t\t 0.56223398 0.37827501 0.57512802 0.37829399 0.58875501 0.37806699 0.58925301 0.38438901\n\t\t 0.57495201 0.38455799 0.57495201 0.38455799 0.57552302 0.378084 0.58875501 0.37806699\n\t\t 0.60287398 0.378212 0.60400498 0.38435799 0.58925301 0.38438901 0.58925301 0.38438901\n\t\t 0.58907199 0.37825301 0.60287398 0.378212 0.60453498 0.39050999 0.60400498 0.38435799\n\t\t 0.61929202 0.38436699 0.61929202 0.38436699 0.61985302 0.39063901 0.60453498 0.39050999\n\t\t 0.60506898 0.39680699 0.60453498 0.39050999 0.61985302 0.39063901 0.61985302 0.39063901\n\t\t 0.62032098 0.39708701 0.60506898 0.39680699 0.60569298 0.40337601 0.60506898 0.39680699\n\t\t 0.62032098 0.39708701 0.62032098 0.39708701 0.62081099 0.40372401 0.60569298 0.40337601\n\t\t 0.606381 0.41023099 0.60569298 0.40337601 0.62081099 0.40372401 0.62081099 0.40372401\n\t\t 0.621324 0.41055 0.606381 0.41023099 0.60707098 0.41727799 0.606381 0.41023099 0.621324\n\t\t 0.41055 0.621324 0.41055 0.62183303 0.41754001 0.60707098 0.41727799 0.60768002 0.42441699\n\t\t 0.60707098 0.41727799 0.62183303 0.41754001 0.62183303 0.41754001 0.62228 0.42464599\n\t\t 0.60768002 0.42441699 0.60813898 0.43160799 0.60768002 0.42441699 0.62228 0.42464599\n\t\t 0.62228 0.42464599 0.62261599 0.431817 0.60813898 0.43160799 0.60839099 0.43884999\n\t\t 0.60813898 0.43160799 0.62261599 0.431817 0.62261599 0.431817 0.62279999 0.439024\n\t\t 0.60839099 0.43884999 0.62279999 0.439024 0.62261599 0.431817 0.63800102 0.43200001\n\t\t 0.63800102 0.43200001 0.638188 0.43915501 0.62279999 0.439024 0.638188 0.43915501\n\t\t 0.63800102 0.43200001 0.65442699 0.43213099 0.65442699 0.43213099 0.65462297 0.439239\n\t\t 0.638188 0.43915501 0.65462297 0.439239 0.65442699 0.43213099 0.67196 0.43218601\n\t\t 0.67196 0.43218601 0.67212701 0.43926799 0.65462297 0.439239 0.67177099 0.42512399\n\t\t 0.67196 0.43218601 0.65442699 0.43213099 0.65442699 0.43213099 0.65417498 0.42504299\n\t\t 0.67177099 0.42512399 0.65417498 0.42504299 0.65442699 0.43213099 0.63800102 0.43200001\n\t\t 0.63800102 0.43200001 0.637712 0.424869 0.65417498 0.42504299 0.637712 0.424869 0.63800102\n\t\t 0.43200001 0.62261599 0.431817 0.62261599 0.431817 0.62228 0.42464599 0.637712 0.424869\n\t\t 0.62228 0.42464599 0.62183303 0.41754001 0.63735998 0.41778201 0.63735998 0.41778201\n\t\t 0.637712 0.424869 0.62228 0.42464599 0.637712 0.424869 0.63735998 0.41778201 0.65390199\n\t\t 0.41798201 0.65390199 0.41798201 0.65417498 0.42504299 0.637712 0.424869 0.65417498\n\t\t 0.42504299 0.65390199 0.41798201 0.67158699 0.41806501 0.67158699 0.41806501 0.67177099\n\t\t 0.42512399 0.65417498 0.42504299 0.67143703 0.41098201 0.67158699 0.41806501 0.65390199\n\t\t 0.41798201 0.65390199 0.41798201 0.65364403 0.41096699 0.67143703 0.41098201 0.65364403\n\t\t 0.41096699 0.65390199 0.41798201 0.63735998 0.41778201 0.63735998 0.41778201 0.63698602\n\t\t 0.410763 0.65364403 0.41096699 0.63698602 0.410763 0.63735998 0.41778201 0.62183303\n\t\t 0.41754001 0.62183303 0.41754001 0.621324 0.41055 0.63698602 0.410763 0.63662499\n\t\t 0.403853 0.63698602 0.410763 0.621324 0.41055 0.621324 0.41055 0.62081099 0.40372401\n\t\t 0.63662499 0.403853 0.63698602 0.410763 0.63662499 0.403853 0.65342301 0.404037 0.65342301\n\t\t 0.404037 0.65364403 0.41096699 0.63698602 0.410763 0.65364403 0.41096699 0.65342301\n\t\t 0.404037 0.67133701 0.403914 0.67133701 0.403914 0.67143703 0.41098201 0.65364403\n\t\t 0.41096699 0.67126501 0.39703301 0.67133701 0.403914 0.65342301 0.404037 0.65342301\n\t\t 0.404037 0.653225 0.39725 0.67126501 0.39703301 0.653225 0.39725 0.65342301 0.404037\n\t\t 0.63662499 0.403853 0.63662499 0.403853 0.63628203 0.39712 0.653225 0.39725 0.63628203\n\t\t 0.39712 0.63662499 0.403853 0.62081099 0.40372401 0.62081099 0.40372401 0.62032098\n\t\t 0.39708701 0.63628203 0.39712 0.63593602 0.390614 0.63628203 0.39712 0.62032098 0.39708701\n\t\t 0.62032098 0.39708701;\n\tsetAttr \".uvst[0].uvsp[25750:25999]\" 0.61985302 0.39063901 0.63593602 0.390614\n\t\t 0.63628203 0.39712 0.63593602 0.390614 0.653014 0.39066499 0.653014 0.39066499 0.653225\n\t\t 0.39725 0.63628203 0.39712 0.653225 0.39725 0.653014 0.39066499 0.67116201 0.39049599\n\t\t 0.67116201 0.39049599 0.67126501 0.39703301 0.653225 0.39725 0.67097902 0.384289\n\t\t 0.67116201 0.39049599 0.653014 0.39066499 0.653014 0.39066499 0.65271503 0.38433999\n\t\t 0.67097902 0.384289 0.65271503 0.38433999 0.653014 0.39066499 0.63593602 0.390614\n\t\t 0.63593602 0.390614 0.63548398 0.384339 0.65271503 0.38433999 0.63548398 0.384339\n\t\t 0.63593602 0.390614 0.61985302 0.39063901 0.61985302 0.39063901 0.61929202 0.38436699\n\t\t 0.63548398 0.384339 0.63424098 0.37824801 0.63548398 0.384339 0.61929202 0.38436699\n\t\t 0.61929202 0.38436699 0.61855203 0.37827301 0.63424098 0.37824801 0.65167701 0.37829301\n\t\t 0.65271503 0.38433999 0.63548398 0.384339 0.63548398 0.384339 0.634911 0.37830299\n\t\t 0.65167701 0.37829301 0.67013401 0.37830499 0.67097902 0.384289 0.65271503 0.38433999\n\t\t 0.65271503 0.38433999 0.65237498 0.37830299 0.67013401 0.37830499 0.67116201 0.39049599\n\t\t 0.67097902 0.384289 0.690184 0.38453099 0.690184 0.38453099 0.690319 0.391229 0.67116201\n\t\t 0.39049599 0.67126501 0.39703301 0.67116201 0.39049599 0.690319 0.391229 0.690319\n\t\t 0.391229 0.69037902 0.398002 0.67126501 0.39703301 0.67133701 0.403914 0.67126501\n\t\t 0.39703301 0.69037902 0.398002 0.69037902 0.398002 0.690391 0.404663 0.67133701 0.403914\n\t\t 0.67143703 0.41098201 0.67133701 0.403914 0.690391 0.404663 0.690391 0.404663 0.690409\n\t\t 0.411311 0.67143703 0.41098201 0.67158699 0.41806501 0.67143703 0.41098201 0.690409\n\t\t 0.411311 0.690409 0.411311 0.69045597 0.41810799 0.67158699 0.41806501 0.67177099\n\t\t 0.42512399 0.67158699 0.41806501 0.69045597 0.41810799 0.69045597 0.41810799 0.69053203\n\t\t 0.425071 0.67177099 0.42512399 0.67196 0.43218601 0.67177099 0.42512399 0.69053203\n\t\t 0.425071 0.69053203 0.425071 0.69061798 0.43212399 0.67196 0.43218601 0.67212701\n\t\t 0.43926799 0.67196 0.43218601 0.69061798 0.43212399 0.69061798 0.43212399 0.69070202\n\t\t 0.43921801 0.67212701 0.43926799 0.69070202 0.43921801 0.69061798 0.43212399 0.70975298\n\t\t 0.43198401 0.70975298 0.43198401 0.70975298 0.43912801 0.69070202 0.43921801 0.70975298\n\t\t 0.43912801 0.70975298 0.43198401 0.72957098 0.43198401 0.72957098 0.43198401 0.72957098\n\t\t 0.43912801 0.70975298 0.43912801 0.72957098 0.43912801 0.72957098 0.43198401 0.74909002\n\t\t 0.43198401 0.74909002 0.43198401 0.74909002 0.43912801 0.72957098 0.43912801 0.74909002\n\t\t 0.42480901 0.74909002 0.43198401 0.72957098 0.43198401 0.72957098 0.43198401 0.72957098\n\t\t 0.42480901 0.74909002 0.42480901 0.72957098 0.42480901 0.72957098 0.43198401 0.70975298\n\t\t 0.43198401 0.70975298 0.43198401 0.70975298 0.42480901 0.72957098 0.42480901 0.70975298\n\t\t 0.42480901 0.70975298 0.43198401 0.69061798 0.43212399 0.69061798 0.43212399 0.69053203\n\t\t 0.425071 0.70975298 0.42480901 0.69053203 0.425071 0.69045597 0.41810799 0.70975298\n\t\t 0.41754699 0.70975298 0.41754699 0.70975298 0.42480901 0.69053203 0.425071 0.70975298\n\t\t 0.42480901 0.70975298 0.41754699 0.72957098 0.41754699 0.72957098 0.41754699 0.72957098\n\t\t 0.42480901 0.70975298 0.42480901 0.72957098 0.42480901 0.72957098 0.41754699 0.74909002\n\t\t 0.41754699 0.74909002 0.41754699 0.74909002 0.42480901 0.72957098 0.42480901 0.74909002\n\t\t 0.41019899 0.74909002 0.41754699 0.72957098 0.41754699 0.72957098 0.41754699 0.72957098\n\t\t 0.41019899 0.74909002 0.41019899 0.72957098 0.41019899 0.72957098 0.41754699 0.70975298\n\t\t 0.41754699 0.70975298 0.41754699 0.70975298 0.41019899 0.72957098 0.41019899 0.70975298\n\t\t 0.41019899 0.70975298 0.41754699 0.69045597 0.41810799 0.69045597 0.41810799 0.690409\n\t\t 0.411311 0.70975298 0.41019899 0.70975298 0.40285999 0.70975298 0.41019899 0.690409\n\t\t 0.411311 0.690409 0.411311 0.690391 0.404663 0.70975298 0.40285999 0.70975298 0.41019899\n\t\t 0.70975298 0.40285999 0.72957098 0.40285999 0.72957098 0.40285999 0.72957098 0.41019899\n\t\t 0.70975298 0.41019899 0.72957098 0.41019899 0.72957098 0.40285999 0.74909002 0.40285999\n\t\t 0.74909002 0.40285999 0.74909002 0.41019899 0.72957098 0.41019899 0.74909002 0.39579299\n\t\t 0.74909002 0.40285999 0.72957098 0.40285999 0.72957098 0.40285999 0.72957098 0.39579299\n\t\t 0.74909002 0.39579299 0.72957098 0.39579299 0.72957098 0.40285999 0.70975298 0.40285999\n\t\t 0.70975298 0.40285999 0.70975298 0.39579299 0.72957098 0.39579299 0.70975298 0.39579299\n\t\t 0.70975298 0.40285999 0.690391 0.404663 0.690391 0.404663 0.69037902 0.398002 0.70975298\n\t\t 0.39579299 0.70975298 0.38929901 0.70975298 0.39579299 0.69037902 0.398002 0.69037902\n\t\t 0.398002 0.690319 0.391229 0.70975298 0.38929901 0.70975298 0.39579299 0.70975298\n\t\t 0.38929901 0.72957098 0.38929901 0.72957098 0.38929901 0.72957098 0.39579299 0.70975298\n\t\t 0.39579299 0.72957098 0.39579299 0.72957098 0.38929901 0.74909002 0.38929901 0.74909002\n\t\t 0.38929901 0.74909002 0.39579299 0.72957098 0.39579299 0.74909002 0.383661 0.74909002\n\t\t 0.38929901 0.72957098 0.38929901 0.72957098 0.38929901 0.72957098 0.383661 0.74909002\n\t\t 0.383661 0.72957098 0.383661 0.72957098 0.38929901 0.70975298 0.38929901 0.70975298\n\t\t 0.38929901 0.70975298 0.383661 0.72957098 0.383661 0.70975298 0.383661 0.70975298\n\t\t 0.38929901 0.690319 0.391229 0.690319 0.391229 0.690184 0.38453099 0.70975298 0.383661\n\t\t 0.70901603 0.37810999 0.70975298 0.383661 0.690184 0.38453099 0.690184 0.38453099\n\t\t 0.689978 0.37811199 0.70901603 0.37810999 0.72895098 0.37895399 0.72957098 0.383661;\n\tsetAttr \".uvst[0].uvsp[26000:26249]\" 0.70975298 0.383661 0.70975298 0.383661 0.70978302\n\t\t 0.378959 0.72895098 0.37895399 0.74849802 0.37894601 0.74909002 0.383661 0.72957098\n\t\t 0.383661 0.72957098 0.383661 0.72960597 0.37895399 0.74849802 0.37894601 0.74909002\n\t\t 0.38929901 0.74909002 0.383661 0.76784199 0.383661 0.76784199 0.383661 0.76784199\n\t\t 0.38929901 0.74909002 0.38929901 0.74909002 0.39579299 0.74909002 0.38929901 0.76784199\n\t\t 0.38929901 0.76784199 0.38929901 0.76784199 0.39579299 0.74909002 0.39579299 0.74909002\n\t\t 0.40285999 0.74909002 0.39579299 0.76784199 0.39579299 0.76784199 0.39579299 0.76784199\n\t\t 0.40285999 0.74909002 0.40285999 0.74909002 0.41019899 0.74909002 0.40285999 0.76784199\n\t\t 0.40285999 0.76784199 0.40285999 0.76784199 0.41019899 0.74909002 0.41019899 0.74909002\n\t\t 0.41754699 0.74909002 0.41019899 0.76784199 0.41019899 0.76784199 0.41019899 0.76784199\n\t\t 0.41754699 0.74909002 0.41754699 0.74909002 0.42480901 0.74909002 0.41754699 0.76784199\n\t\t 0.41754699 0.76784199 0.41754699 0.76784199 0.42480901 0.74909002 0.42480901 0.74909002\n\t\t 0.43198401 0.74909002 0.42480901 0.76784199 0.42480901 0.76784199 0.42480901 0.76784199\n\t\t 0.43198401 0.74909002 0.43198401 0.74909002 0.43912801 0.74909002 0.43198401 0.76784199\n\t\t 0.43198401 0.76784199 0.43198401 0.76784199 0.43912801 0.74909002 0.43912801 0.76784199\n\t\t 0.43912801 0.76784199 0.43198401 0.78534901 0.43198401 0.78534901 0.43198401 0.78534901\n\t\t 0.43912801 0.76784199 0.43912801 0.78534901 0.43912801 0.78534901 0.43198401 0.80120897\n\t\t 0.43198401 0.80120897 0.43198401 0.80120897 0.43912801 0.78534901 0.43912801 0.80120897\n\t\t 0.43912801 0.80120897 0.43198401 0.82712501 0.43198401 0.82712501 0.43198401 0.82712501\n\t\t 0.43912801 0.80120897 0.43912801 0.82712501 0.42480901 0.82712501 0.43198401 0.80120897\n\t\t 0.43198401 0.80120897 0.43198401 0.80120897 0.42480901 0.82712501 0.42480901 0.80120897\n\t\t 0.42480901 0.80120897 0.43198401 0.78534901 0.43198401 0.78534901 0.43198401 0.78534901\n\t\t 0.42480901 0.80120897 0.42480901 0.78534901 0.42480901 0.78534901 0.43198401 0.76784199\n\t\t 0.43198401 0.76784199 0.43198401 0.76784199 0.42480901 0.78534901 0.42480901 0.76784199\n\t\t 0.42480901 0.76784199 0.41754699 0.78534901 0.41754699 0.78534901 0.41754699 0.78534901\n\t\t 0.42480901 0.76784199 0.42480901 0.78534901 0.42480901 0.78534901 0.41754699 0.80120897\n\t\t 0.41754699 0.80120897 0.41754699 0.80120897 0.42480901 0.78534901 0.42480901 0.80120897\n\t\t 0.42480901 0.80120897 0.41754699 0.82712501 0.41754699 0.82712501 0.41754699 0.82712501\n\t\t 0.42480901 0.80120897 0.42480901 0.82712501 0.41019899 0.82712501 0.41754699 0.80120897\n\t\t 0.41754699 0.80120897 0.41754699 0.80120897 0.41019899 0.82712501 0.41019899 0.80120897\n\t\t 0.41019899 0.80120897 0.41754699 0.78534901 0.41754699 0.78534901 0.41754699 0.78534901\n\t\t 0.41019899 0.80120897 0.41019899 0.78534901 0.41019899 0.78534901 0.41754699 0.76784199\n\t\t 0.41754699 0.76784199 0.41754699 0.76784199 0.41019899 0.78534901 0.41019899 0.78534901\n\t\t 0.40285999 0.78534901 0.41019899 0.76784199 0.41019899 0.76784199 0.41019899 0.76784199\n\t\t 0.40285999 0.78534901 0.40285999 0.78534901 0.41019899 0.78534901 0.40285999 0.80120897\n\t\t 0.40285999 0.80120897 0.40285999 0.80120897 0.41019899 0.78534901 0.41019899 0.80120897\n\t\t 0.41019899 0.80120897 0.40285999 0.82712501 0.40285999 0.82712501 0.40285999 0.82712501\n\t\t 0.41019899 0.80120897 0.41019899 0.82712501 0.39579299 0.82712501 0.40285999 0.80120897\n\t\t 0.40285999 0.80120897 0.40285999 0.80120897 0.39579299 0.82712501 0.39579299 0.80120897\n\t\t 0.39579299 0.80120897 0.40285999 0.78534901 0.40285999 0.78534901 0.40285999 0.78534901\n\t\t 0.39579299 0.80120897 0.39579299 0.78534901 0.39579299 0.78534901 0.40285999 0.76784199\n\t\t 0.40285999 0.76784199 0.40285999 0.76784199 0.39579299 0.78534901 0.39579299 0.78534901\n\t\t 0.38929901 0.78534901 0.39579299 0.76784199 0.39579299 0.76784199 0.39579299 0.76784199\n\t\t 0.38929901 0.78534901 0.38929901 0.78534901 0.39579299 0.78534901 0.38929901 0.80120897\n\t\t 0.38929901 0.80120897 0.38929901 0.80120897 0.39579299 0.78534901 0.39579299 0.80120897\n\t\t 0.39579299 0.80120897 0.38929901 0.82712501 0.38929901 0.82712501 0.38929901 0.82712501\n\t\t 0.39579299 0.80120897 0.39579299 0.82712501 0.383661 0.82712501 0.38929901 0.80120897\n\t\t 0.38929901 0.80120897 0.38929901 0.80120897 0.383661 0.82712501 0.383661 0.80120897\n\t\t 0.383661 0.80120897 0.38929901 0.78534901 0.38929901 0.78534901 0.38929901 0.78534901\n\t\t 0.383661 0.80120897 0.383661 0.78534901 0.383661 0.78534901 0.38929901 0.76784199\n\t\t 0.38929901 0.76784199 0.38929901 0.76784199 0.383661 0.78534901 0.383661 0.784863\n\t\t 0.37894899 0.78534901 0.383661 0.76784199 0.383661 0.76784199 0.383661 0.76788503\n\t\t 0.378959 0.784863 0.37894899 0.80078101 0.378948 0.80120897 0.383661 0.78534901 0.383661\n\t\t 0.78534901 0.383661 0.78537798 0.378961 0.80078101 0.378948 0.82712501 0.39579299\n\t\t 0.82712501 0.38929901 0.85441101 0.38929901 0.85441101 0.38929901 0.82712501 0.38929901\n\t\t 0.82712501 0.383661 0.82712501 0.383661 0.85441101 0.383661 0.85441101 0.38929901\n\t\t 0.85441101 0.38929901 0.85441101 0.383661 0.865794 0.383661 0.865794 0.383661 0.865794\n\t\t 0.38929901 0.85441101 0.38929901 0.85441101 0.38929901 0.865794 0.38929901 0.865794\n\t\t 0.39579299 0.865794 0.39579299 0.85441101 0.39579299 0.85441101 0.38929901 0.85441101\n\t\t 0.40285999 0.85441101 0.39579299 0.865794 0.39579299 0.865794 0.39579299 0.865794\n\t\t 0.40285999 0.85441101 0.40285999 0.85441101 0.40285999 0.865794 0.40285999 0.865794\n\t\t 0.41019899 0.865794 0.41019899 0.85441101 0.41019899 0.85441101 0.40285999 0.85441101\n\t\t 0.41754699 0.85441101 0.41019899 0.865794 0.41019899;\n\tsetAttr \".uvst[0].uvsp[26250:26499]\" 0.865794 0.41019899 0.865794 0.41754699 0.85441101\n\t\t 0.41754699 0.85441101 0.41754699 0.865794 0.41754699 0.865794 0.42480901 0.865794\n\t\t 0.42480901 0.85441101 0.42480901 0.85441101 0.41754699 0.85441101 0.43198401 0.85441101\n\t\t 0.42480901 0.865794 0.42480901 0.865794 0.42480901 0.865794 0.43198401 0.85441101\n\t\t 0.43198401 0.85441101 0.43198401 0.865794 0.43198401 0.865794 0.43912801 0.865794\n\t\t 0.43912801 0.85441101 0.43912801 0.85441101 0.43198401 0.85441101 0.43198401 0.85441101\n\t\t 0.43912801 0.82712501 0.43912801 0.82712501 0.43912801 0.82712501 0.43198401 0.85441101\n\t\t 0.43198401 0.85441101 0.43198401 0.82712501 0.43198401 0.82712501 0.42480901 0.82712501\n\t\t 0.42480901 0.85441101 0.42480901 0.85441101 0.43198401 0.85441101 0.41754699 0.85441101\n\t\t 0.42480901 0.82712501 0.42480901 0.82712501 0.42480901 0.82712501 0.41754699 0.85441101\n\t\t 0.41754699 0.85441101 0.41754699 0.82712501 0.41754699 0.82712501 0.41019899 0.82712501\n\t\t 0.41019899 0.85441101 0.41019899 0.85441101 0.41754699 0.85441101 0.40285999 0.85441101\n\t\t 0.41019899 0.82712501 0.41019899 0.82712501 0.41019899 0.82712501 0.40285999 0.85441101\n\t\t 0.40285999 0.85441101 0.40285999 0.82712501 0.40285999 0.82712501 0.39579299 0.82712501\n\t\t 0.39579299 0.85441101 0.39579299 0.85441101 0.40285999 0.85441101 0.38929901 0.85441101\n\t\t 0.39579299 0.82712501 0.39579299 0.85441101 0.446311 0.85441101 0.43912801 0.865794\n\t\t 0.43912801 0.865794 0.43912801 0.865794 0.446311 0.85441101 0.446311 0.85441101 0.446311\n\t\t 0.865794 0.446311 0.865794 0.45353299 0.865794 0.45353299 0.85441101 0.45353299 0.85441101\n\t\t 0.446311 0.85441101 0.46066999 0.85441101 0.45353299 0.865794 0.45353299 0.865794\n\t\t 0.45353299 0.865794 0.46066999 0.85441101 0.46066999 0.85441101 0.46066999 0.865794\n\t\t 0.46066999 0.865794 0.46759501 0.865794 0.46759501 0.85441101 0.46759501 0.85441101\n\t\t 0.46066999 0.85441101 0.474323 0.85441101 0.46759501 0.865794 0.46759501 0.865794\n\t\t 0.46759501 0.865794 0.474323 0.85441101 0.474323 0.85441101 0.474323 0.865794 0.474323\n\t\t 0.865794 0.481004 0.865794 0.481004 0.85441101 0.481004 0.85441101 0.474323 0.85441101\n\t\t 0.487591 0.85441101 0.481004 0.865794 0.481004 0.865794 0.481004 0.865794 0.487591\n\t\t 0.85441101 0.487591 0.82712501 0.481004 0.85441101 0.481004 0.85441101 0.487591 0.85441101\n\t\t 0.474323 0.85441101 0.481004 0.82712501 0.481004 0.85441101 0.487591 0.82712501 0.487591\n\t\t 0.82712501 0.481004 0.82712501 0.481004 0.82712501 0.487591 0.80120897 0.487591 0.80120897\n\t\t 0.487591 0.80120897 0.481004 0.82712501 0.481004 0.80120897 0.481004 0.80120897 0.487591\n\t\t 0.78534901 0.487591 0.78534901 0.487591 0.78534901 0.481004 0.80120897 0.481004 0.78534901\n\t\t 0.481004 0.78534901 0.487591 0.76784199 0.487591 0.76784199 0.487591 0.76784199 0.481004\n\t\t 0.78534901 0.481004 0.76784199 0.481004 0.76784199 0.487591 0.74909002 0.487591 0.74909002\n\t\t 0.487591 0.74909002 0.481004 0.76784199 0.481004 0.74909002 0.481004 0.74909002 0.487591\n\t\t 0.72957098 0.487591 0.72957098 0.487591 0.72957098 0.481004 0.74909002 0.481004 0.72957098\n\t\t 0.481004 0.72957098 0.487591 0.70975298 0.487591 0.70975298 0.487591 0.70975298 0.481004\n\t\t 0.72957098 0.481004 0.70975298 0.481004 0.70975298 0.487591 0.69024998 0.486826 0.69024998\n\t\t 0.486826 0.69048601 0.48045501 0.70975298 0.481004 0.69048601 0.48045501 0.69024998\n\t\t 0.486826 0.671112 0.486718 0.671112 0.486718 0.671547 0.480248 0.69048601 0.48045501\n\t\t 0.671547 0.480248 0.671112 0.486718 0.65288597 0.486718 0.65288597 0.486718 0.65348899\n\t\t 0.48022401 0.671547 0.480248 0.65348899 0.48022401 0.65288597 0.486718 0.63565397\n\t\t 0.486754 0.63565397 0.486754 0.636397 0.48029599 0.65348899 0.48022401 0.636397 0.48029599\n\t\t 0.63565397 0.486754 0.61946899 0.48681599 0.61946899 0.48681599 0.62032801 0.48043701\n\t\t 0.636397 0.48029599 0.62032801 0.48043701 0.61946899 0.48681599 0.60426599 0.48687899\n\t\t 0.60426599 0.48687899 0.60524702 0.480598 0.62032801 0.48043701 0.60524702 0.480598\n\t\t 0.60426599 0.48687899 0.58977002 0.48689499 0.58977002 0.48689499 0.59096801 0.480685\n\t\t 0.60524702 0.480598 0.59096801 0.480685 0.58977002 0.48689499 0.57581502 0.486949\n\t\t 0.57581502 0.486949 0.57732898 0.48079601 0.59096801 0.480685 0.57732898 0.48079601\n\t\t 0.57581502 0.486949 0.562325 0.487077 0.562325 0.487077 0.56427503 0.48098701 0.57732898\n\t\t 0.48079601 0.56427503 0.48098701 0.562325 0.487077 0.54930401 0.487212 0.54930401\n\t\t 0.487212 0.55180901 0.481062 0.56427503 0.48098701 0.55180901 0.481062 0.54930401\n\t\t 0.487212 0.53684199 0.48711601 0.53684199 0.48711601 0.53990799 0.48073801 0.55180901\n\t\t 0.481062 0.53990799 0.48073801 0.53684199 0.48711601 0.52441001 0.48689201 0.52441001\n\t\t 0.48689201 0.52792299 0.480214 0.53990799 0.48073801 0.52792299 0.480214 0.52441001\n\t\t 0.48689201 0.511967 0.48662901 0.511967 0.48662901 0.51563501 0.47966999 0.52792299\n\t\t 0.480214 0.51563501 0.47966999 0.511967 0.48662901 0.49960899 0.48632199 0.49960899\n\t\t 0.48632199 0.50296599 0.47917601 0.51563501 0.47966999 0.50296599 0.47917601 0.49960899\n\t\t 0.48632199 0.48718399 0.48622099 0.48371401 0.49365899 0.48718399 0.48622099 0.49960899\n\t\t 0.48632199 0.48718399 0.48622099 0.48371401 0.49365899 0.47394899 0.493406 0.47394899\n\t\t 0.493406 0.47521299 0.48649001 0.48718399 0.48622099 0.49960899 0.48632199 0.49467599\n\t\t 0.49354899 0.48371401 0.49365899 0.48718399 0.48622099 0.48966101 0.47921801 0.50296599\n\t\t 0.47917601 0.48966101 0.47921801;\n\tsetAttr \".uvst[0].uvsp[26500:26749]\" 0.48718399 0.48622099 0.47521299 0.48649001\n\t\t 0.47521299 0.48649001 0.47654101 0.479978 0.48966101 0.47921801 0.47654101 0.479978\n\t\t 0.47521299 0.48649001 0.455163 0.48667201 0.455163 0.48667201 0.454689 0.48023999\n\t\t 0.47654101 0.479978 0.47758099 0.47347 0.47654101 0.479978 0.454689 0.48023999 0.454689\n\t\t 0.48023999 0.45473099 0.47384599 0.47758099 0.47347 0.47654101 0.479978 0.47758099\n\t\t 0.47347 0.491294 0.47237 0.491294 0.47237 0.48966101 0.47921801 0.47654101 0.479978\n\t\t 0.48966101 0.47921801 0.491294 0.47237 0.50513101 0.47230101 0.50513101 0.47230101\n\t\t 0.50296599 0.47917601 0.48966101 0.47921801 0.50642902 0.46557701 0.50513101 0.47230101\n\t\t 0.491294 0.47237 0.491294 0.47237 0.492226 0.465588 0.50642902 0.46557701 0.492226\n\t\t 0.465588 0.491294 0.47237 0.47758099 0.47347 0.47758099 0.47347 0.478118 0.466692\n\t\t 0.492226 0.465588 0.478118 0.466692 0.47758099 0.47347 0.45473099 0.47384599 0.45473099\n\t\t 0.47384599 0.45460999 0.46722701 0.478118 0.466692 0.478122 0.45984599 0.478118 0.466692\n\t\t 0.45460999 0.46722701 0.45460999 0.46722701 0.45421699 0.46036899 0.478122 0.45984599\n\t\t 0.478118 0.466692 0.478122 0.45984599 0.492457 0.45875901 0.492457 0.45875901 0.492226\n\t\t 0.465588 0.478118 0.466692 0.492226 0.465588 0.492457 0.45875901 0.50689101 0.45888701\n\t\t 0.50689101 0.45888701 0.50642902 0.46557701 0.492226 0.465588 0.50651699 0.452214\n\t\t 0.50689101 0.45888701 0.492457 0.45875901 0.492457 0.45875901 0.491965 0.452104 0.50651699\n\t\t 0.452214 0.491965 0.452104 0.492457 0.45875901 0.478122 0.45984599 0.478122 0.45984599\n\t\t 0.47755599 0.45285201 0.491965 0.452104 0.47755599 0.45285201 0.478122 0.45984599\n\t\t 0.45421699 0.46036899 0.45421699 0.46036899 0.453594 0.45337799 0.47755599 0.45285201\n\t\t 0.476587 0.44581199 0.47755599 0.45285201 0.453594 0.45337799 0.453594 0.45337799\n\t\t 0.452894 0.446275 0.476587 0.44581199 0.47755599 0.45285201 0.476587 0.44581199 0.49088901\n\t\t 0.44551799 0.49088901 0.44551799 0.491965 0.452104 0.47755599 0.45285201 0.491965\n\t\t 0.452104 0.49088901 0.44551799 0.50541598 0.44568101 0.50541598 0.44568101 0.50651699\n\t\t 0.452214 0.491965 0.452104 0.50377399 0.43921599 0.50541598 0.44568101 0.49088901\n\t\t 0.44551799 0.49088901 0.44551799 0.48940399 0.43898901 0.50377399 0.43921599 0.48940399\n\t\t 0.43898901 0.49088901 0.44551799 0.476587 0.44581199 0.476587 0.44581199 0.475375\n\t\t 0.438833 0.48940399 0.43898901 0.475375 0.438833 0.476587 0.44581199 0.452894 0.446275\n\t\t 0.452894 0.446275 0.45223501 0.43911499 0.475375 0.438833 0.50689101 0.45888701 0.50651699\n\t\t 0.452214 0.52023602 0.452254 0.52023602 0.452254 0.520401 0.45894399 0.50689101 0.45888701\n\t\t 0.50642902 0.46557701 0.50689101 0.45888701 0.520401 0.45894399 0.520401 0.45894399\n\t\t 0.51969498 0.46575201 0.50642902 0.46557701 0.50513101 0.47230101 0.50642902 0.46557701\n\t\t 0.51969498 0.46575201 0.51969498 0.46575201 0.51811898 0.47267199 0.50513101 0.47230101\n\t\t 0.50296599 0.47917601 0.50513101 0.47230101 0.51811898 0.47267199 0.51811898 0.47267199\n\t\t 0.51563501 0.47966999 0.50296599 0.47917601 0.51563501 0.47966999 0.51811898 0.47267199\n\t\t 0.530518 0.47324601 0.530518 0.47324601 0.52792299 0.480214 0.51563501 0.47966999\n\t\t 0.52792299 0.480214 0.530518 0.47324601 0.54247099 0.47387299 0.54247099 0.47387299\n\t\t 0.53990799 0.48073801 0.52792299 0.480214 0.53990799 0.48073801 0.54247099 0.47387299\n\t\t 0.55420297 0.474361 0.55420297 0.474361 0.55180901 0.481062 0.53990799 0.48073801\n\t\t 0.55614299 0.46731299 0.55420297 0.474361 0.54247099 0.47387299 0.54247099 0.47387299\n\t\t 0.54439598 0.46680301 0.55614299 0.46731299 0.54439598 0.46680301 0.54247099 0.47387299\n\t\t 0.530518 0.47324601 0.530518 0.47324601 0.53230298 0.46622801 0.54439598 0.46680301\n\t\t 0.53230298 0.46622801 0.530518 0.47324601 0.51811898 0.47267199 0.51811898 0.47267199\n\t\t 0.51969498 0.46575201 0.53230298 0.46622801 0.51969498 0.46575201 0.520401 0.45894399\n\t\t 0.53326398 0.45927799 0.53326398 0.45927799 0.53230298 0.46622801 0.51969498 0.46575201\n\t\t 0.53230298 0.46622801 0.53326398 0.45927799 0.545591 0.45969501 0.545591 0.45969501\n\t\t 0.54439598 0.46680301 0.53230298 0.46622801 0.54439598 0.46680301 0.545591 0.45969501\n\t\t 0.55748802 0.46007699 0.55748802 0.46007699 0.55614299 0.46731299 0.54439598 0.46680301\n\t\t 0.55809999 0.45280701 0.55748802 0.46007699 0.545591 0.45969501 0.545591 0.45969501\n\t\t 0.54598403 0.45261499 0.55809999 0.45280701 0.54598403 0.45261499 0.545591 0.45969501\n\t\t 0.53326398 0.45927799 0.53326398 0.45927799 0.53337401 0.45242199 0.54598403 0.45261499\n\t\t 0.53337401 0.45242199 0.53326398 0.45927799 0.520401 0.45894399 0.520401 0.45894399\n\t\t 0.52023602 0.452254 0.53337401 0.45242199 0.5327 0.44562399 0.53337401 0.45242199\n\t\t 0.52023602 0.452254 0.52023602 0.452254 0.51929599 0.445656 0.5327 0.44562399 0.51929599\n\t\t 0.445656 0.52023602 0.452254 0.50651699 0.452214 0.50651699 0.452214 0.50541598 0.44568101\n\t\t 0.51929599 0.445656 0.53337401 0.45242199 0.5327 0.44562399 0.54560202 0.44554299\n\t\t 0.54560202 0.44554299 0.54598403 0.45261499 0.53337401 0.45242199 0.54598403 0.45261499\n\t\t 0.54560202 0.44554299 0.55796701 0.44548601 0.55796701 0.44548601 0.55809999 0.45280701\n\t\t 0.54598403 0.45261499 0.55710298 0.438135 0.55796701 0.44548601 0.54560202 0.44554299\n\t\t 0.54560202 0.44554299 0.54449099 0.438438 0.55710298 0.438135 0.54449099 0.438438\n\t\t 0.54560202 0.44554299 0.5327 0.44562399 0.5327 0.44562399 0.53133702 0.438806;\n\tsetAttr \".uvst[0].uvsp[26750:26999]\" 0.54449099 0.438438 0.53133702 0.438806 0.5327\n\t\t 0.44562399 0.51929599 0.445656 0.51929599 0.445656 0.51772499 0.43906 0.53133702\n\t\t 0.438806 0.51772499 0.43906 0.51929599 0.445656 0.50541598 0.44568101 0.50541598\n\t\t 0.44568101 0.50377399 0.43921599 0.51772499 0.43906 0.55748802 0.46007699 0.55809999\n\t\t 0.45280701 0.57001102 0.45298299 0.55809999 0.45280701 0.55796701 0.44548601 0.57004601\n\t\t 0.44557601 0.57004601 0.44557601 0.57001102 0.45298299 0.55809999 0.45280701 0.57001102\n\t\t 0.45298299 0.57004601 0.44557601 0.58225203 0.44575799 0.58225203 0.44575799 0.58209598\n\t\t 0.45317 0.57001102 0.45298299 0.56932497 0.460325 0.57001102 0.45298299 0.58209598\n\t\t 0.45317 0.58209598 0.45317 0.581429 0.46050301 0.56932497 0.460325 0.568039 0.46750399\n\t\t 0.56932497 0.460325 0.581429 0.46050301 0.56932497 0.460325 0.568039 0.46750399 0.55614299\n\t\t 0.46731299 0.55420297 0.474361 0.55614299 0.46731299 0.568039 0.46750399 0.568039\n\t\t 0.46750399 0.56630498 0.474448 0.55420297 0.474361 0.55180901 0.481062 0.55420297\n\t\t 0.474361 0.56630498 0.474448 0.56630498 0.474448 0.56427503 0.48098701 0.55180901\n\t\t 0.481062 0.56427503 0.48098701 0.56630498 0.474448 0.578915 0.474343 0.578915 0.474343\n\t\t 0.57732898 0.48079601 0.56427503 0.48098701 0.57732898 0.48079601 0.578915 0.474343\n\t\t 0.59214401 0.474264 0.59214401 0.474264 0.59096801 0.480685 0.57732898 0.48079601\n\t\t 0.59096801 0.480685 0.59214401 0.474264 0.60611898 0.474145 0.60611898 0.474145 0.60524702\n\t\t 0.480598 0.59096801 0.480685 0.60693002 0.467457 0.60611898 0.474145 0.59214401 0.474264\n\t\t 0.59214401 0.474264 0.59322703 0.46755201 0.60693002 0.467457 0.59322703 0.46755201\n\t\t 0.59214401 0.474264 0.578915 0.474343 0.578915 0.474343 0.580329 0.46758401 0.59322703\n\t\t 0.46755201 0.580329 0.46758401 0.578915 0.474343 0.56630498 0.474448 0.56630498 0.474448\n\t\t 0.568039 0.46750399 0.580329 0.46758401 0.581429 0.46050301 0.580329 0.46758401 0.568039\n\t\t 0.46750399 0.580329 0.46758401 0.581429 0.46050301 0.59411001 0.46054199 0.59411001\n\t\t 0.46054199 0.59322703 0.46755201 0.580329 0.46758401 0.59322703 0.46755201 0.59411001\n\t\t 0.46054199 0.60762298 0.46052101 0.60762298 0.46052101 0.60693002 0.467457 0.59322703\n\t\t 0.46755201 0.608132 0.45338199 0.60762298 0.46052101 0.59411001 0.46054199 0.59411001\n\t\t 0.46054199 0.59470499 0.453302 0.608132 0.45338199 0.59470499 0.453302 0.59411001\n\t\t 0.46054199 0.581429 0.46050301 0.581429 0.46050301 0.58209598 0.45317 0.59470499\n\t\t 0.453302 0.59494197 0.44595799 0.59470499 0.453302 0.58209598 0.45317 0.58209598\n\t\t 0.45317 0.58225203 0.44575799 0.59494197 0.44595799 0.59470499 0.453302 0.59494197\n\t\t 0.44595799 0.60839099 0.44612801 0.60839099 0.44612801 0.608132 0.45338199 0.59470499\n\t\t 0.453302 0.60839099 0.43884999 0.60839099 0.44612801 0.59494197 0.44595799 0.59494197\n\t\t 0.44595799 0.59480798 0.43863001 0.60839099 0.43884999 0.59480798 0.43863001 0.59494197\n\t\t 0.44595799 0.58225203 0.44575799 0.58225203 0.44575799 0.58189797 0.43838301 0.59480798\n\t\t 0.43863001 0.58189797 0.43838301 0.58225203 0.44575799 0.57004601 0.44557601 0.57004601\n\t\t 0.44557601 0.56943601 0.43817201 0.58189797 0.43838301 0.56943601 0.43817201 0.57004601\n\t\t 0.44557601 0.55796701 0.44548601 0.55796701 0.44548601 0.55710298 0.438135 0.56943601\n\t\t 0.43817201 0.60762298 0.46052101 0.608132 0.45338199 0.62259299 0.45339999 0.62259299\n\t\t 0.45339999 0.62219799 0.46044099 0.60762298 0.46052101 0.60693002 0.467457 0.60762298\n\t\t 0.46052101 0.62219799 0.46044099 0.62219799 0.46044099 0.62166101 0.4673 0.60693002\n\t\t 0.467457 0.60611898 0.474145 0.60693002 0.467457 0.62166101 0.4673 0.62166101 0.4673\n\t\t 0.62102699 0.47395399 0.60611898 0.474145 0.60524702 0.480598 0.60611898 0.474145\n\t\t 0.62102699 0.47395399 0.62102699 0.47395399 0.62032801 0.48043701 0.60524702 0.480598\n\t\t 0.62032801 0.48043701 0.62102699 0.47395399 0.63697499 0.47379601 0.63697499 0.47379601\n\t\t 0.636397 0.48029599 0.62032801 0.48043701 0.636397 0.48029599 0.63697499 0.47379601\n\t\t 0.653943 0.473721 0.653943 0.473721 0.65348899 0.48022401 0.636397 0.48029599 0.65348899\n\t\t 0.48022401 0.653943 0.473721 0.67185801 0.473757 0.67185801 0.473757 0.671547 0.480248\n\t\t 0.65348899 0.48022401 0.67207998 0.46714699 0.67185801 0.473757 0.653943 0.473721\n\t\t 0.653943 0.473721 0.65429902 0.467112 0.67207998 0.46714699 0.65429902 0.467112 0.653943\n\t\t 0.473721 0.63697499 0.47379601 0.63697499 0.47379601 0.637465 0.46717 0.65429902\n\t\t 0.467112 0.637465 0.46717 0.63697499 0.47379601 0.62102699 0.47395399 0.62102699\n\t\t 0.47395399 0.62166101 0.4673 0.637465 0.46717 0.63785797 0.46036899 0.637465 0.46717\n\t\t 0.62166101 0.4673 0.62166101 0.4673 0.62219799 0.46044099 0.63785797 0.46036899 0.637465\n\t\t 0.46717 0.63785797 0.46036899 0.654558 0.46033701 0.654558 0.46033701 0.65429902\n\t\t 0.467112 0.637465 0.46717 0.65429902 0.467112 0.654558 0.46033701 0.672221 0.46036199\n\t\t 0.672221 0.46036199 0.67207998 0.46714699 0.65429902 0.467112 0.67227697 0.45341501\n\t\t 0.672221 0.46036199 0.654558 0.46033701 0.654558 0.46033701 0.65470499 0.45339999\n\t\t 0.67227697 0.45341501 0.65470499 0.45339999 0.654558 0.46033701 0.63785797 0.46036899\n\t\t 0.63785797 0.46036899 0.63812703 0.45339799 0.65470499 0.45339999 0.63812703 0.45339799\n\t\t 0.63785797 0.46036899 0.62219799 0.46044099 0.62219799 0.46044099 0.62259299 0.45339999\n\t\t 0.63812703 0.45339799 0.63823402 0.44630599 0.63812703 0.45339799 0.62259299 0.45339999;\n\tsetAttr \".uvst[0].uvsp[27000:27249]\" 0.62259299 0.45339999 0.62279499 0.446237\n\t\t 0.63823402 0.44630599 0.62279499 0.446237 0.62259299 0.45339999 0.608132 0.45338199\n\t\t 0.608132 0.45338199 0.60839099 0.44612801 0.62279499 0.446237 0.63812703 0.45339799\n\t\t 0.63823402 0.44630599 0.65472198 0.44634601 0.65472198 0.44634601 0.65470499 0.45339999\n\t\t 0.63812703 0.45339799 0.65470499 0.45339999 0.65472198 0.44634601 0.67224002 0.44636101\n\t\t 0.67224002 0.44636101 0.67227697 0.45341501 0.65470499 0.45339999 0.67212701 0.43926799\n\t\t 0.67224002 0.44636101 0.65472198 0.44634601 0.65472198 0.44634601 0.65462297 0.439239\n\t\t 0.67212701 0.43926799 0.65462297 0.439239 0.65472198 0.44634601 0.63823402 0.44630599\n\t\t 0.63823402 0.44630599 0.638188 0.43915501 0.65462297 0.439239 0.638188 0.43915501\n\t\t 0.63823402 0.44630599 0.62279499 0.446237 0.62279499 0.446237 0.62279999 0.439024\n\t\t 0.638188 0.43915501 0.62279999 0.439024 0.62279499 0.446237 0.60839099 0.44612801\n\t\t 0.60839099 0.44612801 0.60839099 0.43884999 0.62279999 0.439024 0.672221 0.46036199\n\t\t 0.67227697 0.45341501 0.690795 0.453446 0.67227697 0.45341501 0.67224002 0.44636101\n\t\t 0.69076598 0.44633999 0.69076598 0.44633999 0.690795 0.453446 0.67227697 0.45341501\n\t\t 0.690795 0.453446 0.69076598 0.44633999 0.70975298 0.446311 0.70975298 0.446311 0.70975298\n\t\t 0.45353299 0.690795 0.453446 0.69078201 0.46045601 0.690795 0.453446 0.70975298 0.45353299\n\t\t 0.70975298 0.45353299 0.70975298 0.46066999 0.69078201 0.46045601 0.69072503 0.46729499\n\t\t 0.69078201 0.46045601 0.70975298 0.46066999 0.69078201 0.46045601 0.69072503 0.46729499\n\t\t 0.67207998 0.46714699 0.67185801 0.473757 0.67207998 0.46714699 0.69072503 0.46729499\n\t\t 0.69072503 0.46729499 0.69063002 0.47395 0.67185801 0.473757 0.671547 0.480248 0.67185801\n\t\t 0.473757 0.69063002 0.47395 0.69063002 0.47395 0.69048601 0.48045501 0.671547 0.480248\n\t\t 0.69048601 0.48045501 0.69063002 0.47395 0.70975298 0.474323 0.70975298 0.474323\n\t\t 0.70975298 0.481004 0.69048601 0.48045501 0.70975298 0.481004 0.70975298 0.474323\n\t\t 0.72957098 0.474323 0.72957098 0.474323 0.72957098 0.481004 0.70975298 0.481004 0.72957098\n\t\t 0.481004 0.72957098 0.474323 0.74909002 0.474323 0.74909002 0.474323 0.74909002 0.481004\n\t\t 0.72957098 0.481004 0.74909002 0.46759501 0.74909002 0.474323 0.72957098 0.474323\n\t\t 0.72957098 0.474323 0.72957098 0.46759501 0.74909002 0.46759501 0.72957098 0.46759501\n\t\t 0.72957098 0.474323 0.70975298 0.474323 0.70975298 0.474323 0.70975298 0.46759501\n\t\t 0.72957098 0.46759501 0.70975298 0.46759501 0.70975298 0.474323 0.69063002 0.47395\n\t\t 0.69063002 0.47395 0.69072503 0.46729499 0.70975298 0.46759501 0.70975298 0.46066999\n\t\t 0.70975298 0.46759501 0.69072503 0.46729499 0.70975298 0.46759501 0.70975298 0.46066999\n\t\t 0.72957098 0.46066999 0.72957098 0.46066999 0.72957098 0.46759501 0.70975298 0.46759501\n\t\t 0.72957098 0.46759501 0.72957098 0.46066999 0.74909002 0.46066999 0.74909002 0.46066999\n\t\t 0.74909002 0.46759501 0.72957098 0.46759501 0.74909002 0.45353299 0.74909002 0.46066999\n\t\t 0.72957098 0.46066999 0.72957098 0.46066999 0.72957098 0.45353299 0.74909002 0.45353299\n\t\t 0.72957098 0.45353299 0.72957098 0.46066999 0.70975298 0.46066999 0.70975298 0.46066999\n\t\t 0.70975298 0.45353299 0.72957098 0.45353299 0.72957098 0.446311 0.72957098 0.45353299\n\t\t 0.70975298 0.45353299 0.70975298 0.45353299 0.70975298 0.446311 0.72957098 0.446311\n\t\t 0.72957098 0.45353299 0.72957098 0.446311 0.74909002 0.446311 0.74909002 0.446311\n\t\t 0.74909002 0.45353299 0.72957098 0.45353299 0.74909002 0.43912801 0.74909002 0.446311\n\t\t 0.72957098 0.446311 0.72957098 0.446311 0.72957098 0.43912801 0.74909002 0.43912801\n\t\t 0.72957098 0.43912801 0.72957098 0.446311 0.70975298 0.446311 0.70975298 0.446311\n\t\t 0.70975298 0.43912801 0.72957098 0.43912801 0.70975298 0.43912801 0.70975298 0.446311\n\t\t 0.69076598 0.44633999 0.69076598 0.44633999 0.69070202 0.43921801 0.70975298 0.43912801\n\t\t 0.69070202 0.43921801 0.69076598 0.44633999 0.67224002 0.44636101 0.67224002 0.44636101\n\t\t 0.67212701 0.43926799 0.69070202 0.43921801 0.74909002 0.46066999 0.74909002 0.45353299\n\t\t 0.76784199 0.45353299 0.76784199 0.45353299 0.76784199 0.46066999 0.74909002 0.46066999\n\t\t 0.74909002 0.46759501 0.74909002 0.46066999 0.76784199 0.46066999 0.76784199 0.46066999\n\t\t 0.76784199 0.46759501 0.74909002 0.46759501 0.74909002 0.474323 0.74909002 0.46759501\n\t\t 0.76784199 0.46759501 0.76784199 0.46759501 0.76784199 0.474323 0.74909002 0.474323\n\t\t 0.74909002 0.481004 0.74909002 0.474323 0.76784199 0.474323 0.76784199 0.474323 0.76784199\n\t\t 0.481004 0.74909002 0.481004 0.76784199 0.481004 0.76784199 0.474323 0.78534901 0.474323\n\t\t 0.78534901 0.474323 0.78534901 0.481004 0.76784199 0.481004 0.78534901 0.481004 0.78534901\n\t\t 0.474323 0.80120897 0.474323 0.80120897 0.474323 0.80120897 0.481004 0.78534901 0.481004\n\t\t 0.80120897 0.481004 0.80120897 0.474323 0.82712501 0.474323 0.82712501 0.474323 0.82712501\n\t\t 0.481004 0.80120897 0.481004 0.82712501 0.46759501 0.82712501 0.474323 0.80120897\n\t\t 0.474323 0.80120897 0.474323 0.80120897 0.46759501 0.82712501 0.46759501 0.80120897\n\t\t 0.46759501 0.80120897 0.474323 0.78534901 0.474323 0.78534901 0.474323 0.78534901\n\t\t 0.46759501 0.80120897 0.46759501 0.78534901 0.46759501 0.78534901 0.474323 0.76784199\n\t\t 0.474323 0.76784199 0.474323 0.76784199 0.46759501 0.78534901 0.46759501 0.78534901\n\t\t 0.46066999 0.78534901 0.46759501 0.76784199 0.46759501 0.76784199 0.46759501 0.76784199\n\t\t 0.46066999 0.78534901 0.46066999 0.78534901 0.46759501;\n\tsetAttr \".uvst[0].uvsp[27250:27499]\" 0.78534901 0.46066999 0.80120897 0.46066999\n\t\t 0.80120897 0.46066999 0.80120897 0.46759501 0.78534901 0.46759501 0.80120897 0.46759501\n\t\t 0.80120897 0.46066999 0.82712501 0.46066999 0.82712501 0.46066999 0.82712501 0.46759501\n\t\t 0.80120897 0.46759501 0.82712501 0.45353299 0.82712501 0.46066999 0.80120897 0.46066999\n\t\t 0.80120897 0.46066999 0.80120897 0.45353299 0.82712501 0.45353299 0.80120897 0.45353299\n\t\t 0.80120897 0.46066999 0.78534901 0.46066999 0.78534901 0.46066999 0.78534901 0.45353299\n\t\t 0.80120897 0.45353299 0.78534901 0.45353299 0.78534901 0.46066999 0.76784199 0.46066999\n\t\t 0.76784199 0.46066999 0.76784199 0.45353299 0.78534901 0.45353299 0.78534901 0.446311\n\t\t 0.78534901 0.45353299 0.76784199 0.45353299 0.76784199 0.45353299 0.76784199 0.446311\n\t\t 0.78534901 0.446311 0.76784199 0.446311 0.76784199 0.45353299 0.74909002 0.45353299\n\t\t 0.74909002 0.45353299 0.74909002 0.446311 0.76784199 0.446311 0.78534901 0.45353299\n\t\t 0.78534901 0.446311 0.80120897 0.446311 0.80120897 0.446311 0.80120897 0.45353299\n\t\t 0.78534901 0.45353299 0.80120897 0.45353299 0.80120897 0.446311 0.82712501 0.446311\n\t\t 0.82712501 0.446311 0.82712501 0.45353299 0.80120897 0.45353299 0.82712501 0.43912801\n\t\t 0.82712501 0.446311 0.80120897 0.446311 0.80120897 0.446311 0.80120897 0.43912801\n\t\t 0.82712501 0.43912801 0.80120897 0.43912801 0.80120897 0.446311 0.78534901 0.446311\n\t\t 0.78534901 0.446311 0.78534901 0.43912801 0.80120897 0.43912801 0.78534901 0.43912801\n\t\t 0.78534901 0.446311 0.76784199 0.446311 0.76784199 0.446311 0.76784199 0.43912801\n\t\t 0.78534901 0.43912801 0.76784199 0.43912801 0.76784199 0.446311 0.74909002 0.446311\n\t\t 0.74909002 0.446311 0.74909002 0.43912801 0.76784199 0.43912801 0.85441101 0.46066999\n\t\t 0.82712501 0.46066999 0.82712501 0.45353299 0.82712501 0.46759501 0.82712501 0.46066999\n\t\t 0.85441101 0.46066999 0.85441101 0.46066999 0.85441101 0.46759501 0.82712501 0.46759501\n\t\t 0.82712501 0.46759501 0.85441101 0.46759501 0.85441101 0.474323 0.85441101 0.474323\n\t\t 0.82712501 0.474323 0.82712501 0.46759501 0.82712501 0.481004 0.82712501 0.474323\n\t\t 0.85441101 0.474323 0.82712501 0.446311 0.82712501 0.43912801 0.85441101 0.43912801\n\t\t 0.85441101 0.43912801 0.85441101 0.446311 0.82712501 0.446311 0.82712501 0.45353299\n\t\t 0.82712501 0.446311 0.85441101 0.446311 0.82712501 0.45353299 0.85441101 0.45353299\n\t\t 0.85441101 0.46066999 0.85441101 0.446311 0.85441101 0.45353299 0.82712501 0.45353299\n\t\t 0.45548001 0.493691 0.45495501 0.48666999 0.47521299 0.48649001 0.47521299 0.48649001\n\t\t 0.47394899 0.493406 0.45548001 0.493691 0.54779202 0.38466799 0.54881698 0.37794\n\t\t 0.56153703 0.377992 0.56153703 0.377992 0.56108999 0.38434899 0.54779202 0.38466799\n\t\t 0.55614299 0.46731299 0.55748802 0.46007699 0.56932497 0.460325 0.57001102 0.45298299\n\t\t 0.56932497 0.460325 0.55748802 0.46007699 0.60400498 0.38435799 0.603284 0.378281\n\t\t 0.61794102 0.37824199 0.61794102 0.37824199 0.61929202 0.38436699 0.60400498 0.38435799\n\t\t 0.67097902 0.384289 0.67082798 0.37835401 0.68937403 0.378355 0.68937403 0.378355\n\t\t 0.690184 0.38453099 0.67097902 0.384289 0.67207998 0.46714699 0.672221 0.46036199\n\t\t 0.69078201 0.46045601 0.690795 0.453446 0.69078201 0.46045601 0.672221 0.46036199\n\t\t 0.74909002 0.383661 0.74913901 0.37895501 0.76730502 0.37894699 0.76730502 0.37894699\n\t\t 0.76784199 0.383661 0.74909002 0.383661 0.80120897 0.383661 0.80122697 0.37896001\n\t\t 0.82647502 0.37785101 0.82647502 0.37785101 0.82733101 0.38255599 0.80120897 0.383661\n\t\t 0.82712501 0.383661 0.82717001 0.37895399 0.85426301 0.37894899 0.85426301 0.37894899\n\t\t 0.85441101 0.383661 0.82712501 0.383661 0.865794 0.383661 0.85441101 0.383661 0.85443997\n\t\t 0.37895301 0.85443997 0.37895301 0.86566502 0.37895301 0.865794 0.383661 0.433898\n\t\t 0.43912801 0.433898 0.43198401 0.43696001 0.43238801 0.43696001 0.43238801 0.437051\n\t\t 0.43969899 0.433898 0.43912801 0.437051 0.43969899 0.43696001 0.43238801 0.440433\n\t\t 0.43262401 0.440433 0.43262401 0.44064301 0.44005299 0.437051 0.43969899 0.45223501\n\t\t 0.43911499 0.44064301 0.44005299 0.440433 0.43262401 0.440433 0.43262401 0.45170501\n\t\t 0.43195301 0.45223501 0.43911499 0.451368 0.42481801 0.45170501 0.43195301 0.440433\n\t\t 0.43262401 0.440433 0.43262401 0.44035101 0.42513001 0.451368 0.42481801 0.44035101\n\t\t 0.42513001 0.440433 0.43262401 0.43696001 0.43238801 0.43696001 0.43238801 0.43693\n\t\t 0.42501101 0.44035101 0.42513001 0.433898 0.42480901 0.43693 0.42501101 0.43696001\n\t\t 0.43238801 0.43696001 0.43238801 0.433898 0.43198401 0.433898 0.42480901 0.436959\n\t\t 0.41756701 0.43693 0.42501101 0.433898 0.42480901 0.433898 0.42480901 0.433898 0.41754699\n\t\t 0.436959 0.41756701 0.43693 0.42501101 0.436959 0.41756701 0.440384 0.41760799 0.440384\n\t\t 0.41760799 0.44035101 0.42513001 0.43693 0.42501101 0.44035101 0.42513001 0.440384\n\t\t 0.41760799 0.451213 0.417716 0.451213 0.417716 0.451368 0.42481801 0.44035101 0.42513001\n\t\t 0.45128199 0.41067201 0.451213 0.417716 0.440384 0.41760799 0.440384 0.41760799 0.440568\n\t\t 0.410108 0.45128199 0.41067201 0.440568 0.410108 0.440384 0.41760799 0.436959 0.41756701\n\t\t 0.436959 0.41756701 0.43706799 0.410119 0.440568 0.410108 0.433898 0.41019899 0.43706799\n\t\t 0.410119 0.436959 0.41756701 0.436959 0.41756701 0.433898 0.41754699 0.433898 0.41019899\n\t\t 0.437213 0.40277201 0.43706799 0.410119 0.433898 0.41019899 0.433898 0.41019899 0.433898\n\t\t 0.402859 0.437213 0.40277201 0.43706799 0.410119 0.437213 0.40277201;\n\tsetAttr \".uvst[0].uvsp[27500:27749]\" 0.44086099 0.40276799 0.44086099 0.40276799\n\t\t 0.440568 0.410108 0.43706799 0.410119 0.440568 0.410108 0.44086099 0.40276799 0.45155299\n\t\t 0.40375099 0.45155299 0.40375099 0.45128199 0.41067201 0.440568 0.410108 0.45210901\n\t\t 0.39701301 0.45155299 0.40375099 0.44086099 0.40276799 0.44086099 0.40276799 0.44128999\n\t\t 0.39576799 0.45210901 0.39701301 0.44128999 0.39576799 0.44086099 0.40276799 0.437213\n\t\t 0.40277201 0.437213 0.40277201 0.437446 0.395769 0.44128999 0.39576799 0.433898 0.39579299\n\t\t 0.437446 0.395769 0.437213 0.40277201 0.437213 0.40277201 0.433898 0.402859 0.433898\n\t\t 0.39579299 0.437767 0.389368 0.437446 0.395769 0.433898 0.39579299 0.433898 0.39579299\n\t\t 0.433898 0.38929901 0.437767 0.389368 0.437446 0.395769 0.437767 0.389368 0.44190699\n\t\t 0.38929701 0.44190699 0.38929701 0.44128999 0.39576799 0.437446 0.395769 0.44128999\n\t\t 0.39576799 0.44190699 0.38929701 0.45299 0.39052701 0.45299 0.39052701 0.45210901\n\t\t 0.39701301 0.44128999 0.39576799 0.45463899 0.38428199 0.45299 0.39052701 0.44190699\n\t\t 0.38929701 0.44190699 0.38929701 0.44259301 0.38361999 0.45463899 0.38428199 0.44259301\n\t\t 0.38361999 0.44190699 0.38929701 0.437767 0.389368 0.437767 0.389368 0.43800399 0.38379899\n\t\t 0.44259301 0.38361999 0.433898 0.383661 0.43800399 0.38379899 0.437767 0.389368 0.437767\n\t\t 0.389368 0.433898 0.38929901 0.433898 0.383661 0.43340799 0.492971 0.433898 0.487591\n\t\t 0.438131 0.48694 0.438131 0.48694 0.43673101 0.492971 0.43340799 0.492971 0.438131\n\t\t 0.48694 0.433898 0.487591 0.433898 0.481004 0.433898 0.481004 0.43804201 0.480674\n\t\t 0.438131 0.48694 0.438131 0.48694 0.43804201 0.480674 0.44249901 0.480452 0.44249901\n\t\t 0.480452 0.44278601 0.486855 0.438131 0.48694 0.437592 0.49304399 0.438131 0.48694\n\t\t 0.44278601 0.486855 0.44278601 0.486855 0.44252399 0.49305999 0.437592 0.49304399\n\t\t 0.44278601 0.486855 0.44249901 0.480452 0.454689 0.48023999 0.454689 0.48023999 0.455163\n\t\t 0.48667201 0.44278601 0.486855 0.43793201 0.47426 0.43804201 0.480674 0.433898 0.481004\n\t\t 0.433898 0.481004 0.433898 0.474323 0.43793201 0.47426 0.43804201 0.480674 0.43793201\n\t\t 0.47426 0.442303 0.474123 0.442303 0.474123 0.44249901 0.480452 0.43804201 0.480674\n\t\t 0.44249901 0.480452 0.442303 0.474123 0.45473099 0.47384599 0.45473099 0.47384599\n\t\t 0.454689 0.48023999 0.44249901 0.480452 0.45460999 0.46722701 0.45473099 0.47384599\n\t\t 0.442303 0.474123 0.442303 0.474123 0.442056 0.467785 0.45460999 0.46722701 0.442056\n\t\t 0.467785 0.442303 0.474123 0.43793201 0.47426 0.43793201 0.47426 0.43777999 0.467691\n\t\t 0.442056 0.467785 0.433898 0.46759501 0.43777999 0.467691 0.43793201 0.47426 0.43793201\n\t\t 0.47426 0.433898 0.474323 0.433898 0.46759501 0.43760601 0.460978 0.43777999 0.467691\n\t\t 0.433898 0.46759501 0.433898 0.46759501 0.433898 0.46066999 0.43760601 0.460978 0.43777999\n\t\t 0.467691 0.43760601 0.460978 0.441742 0.461281 0.441742 0.461281 0.442056 0.467785\n\t\t 0.43777999 0.467691 0.442056 0.467785 0.441742 0.461281 0.45421699 0.46036899 0.45421699\n\t\t 0.46036899 0.45460999 0.46722701 0.442056 0.467785 0.453594 0.45337799 0.45421699\n\t\t 0.46036899 0.441742 0.461281 0.441742 0.461281 0.44135401 0.45447701 0.453594 0.45337799\n\t\t 0.44135401 0.45447701 0.441742 0.461281 0.43760601 0.460978 0.43760601 0.460978 0.43740001\n\t\t 0.45405799 0.44135401 0.45447701 0.433898 0.45353299 0.43740001 0.45405799 0.43760601\n\t\t 0.460978 0.43760601 0.460978 0.433898 0.46066999 0.433898 0.45353299 0.437204 0.44693899\n\t\t 0.43740001 0.45405799 0.433898 0.45353299 0.433898 0.45353299 0.433898 0.446311 0.437204\n\t\t 0.44693899 0.43740001 0.45405799 0.437204 0.44693899 0.44096401 0.447368 0.44096401\n\t\t 0.447368 0.44135401 0.45447701 0.43740001 0.45405799 0.44135401 0.45447701 0.44096401\n\t\t 0.447368 0.452894 0.446275 0.452894 0.446275 0.453594 0.45337799 0.44135401 0.45447701\n\t\t 0.45223501 0.43911499 0.452894 0.446275 0.44096401 0.447368 0.44096401 0.447368 0.44064301\n\t\t 0.44005299 0.45223501 0.43911499 0.44064301 0.44005299 0.44096401 0.447368 0.437204\n\t\t 0.44693899 0.437204 0.44693899 0.437051 0.43969899 0.44064301 0.44005299 0.433898\n\t\t 0.43912801 0.437051 0.43969899 0.437204 0.44693899 0.437204 0.44693899 0.433898 0.446311\n\t\t 0.433898 0.43912801 0.44586799 0.49407199 0.44302601 0.487827 0.455163 0.48667201\n\t\t 0.455163 0.48667201 0.45785299 0.49324301 0.44586799 0.49407199 0.423985 0.050494\n\t\t 0.41834 0.050755002 0.418051 0.045705002 0.418051 0.045705002 0.423619 0.045405999\n\t\t 0.423985 0.050494 0.418051 0.045705002 0.41834 0.050755002 0.41431499 0.051059999\n\t\t 0.41431499 0.051059999 0.41408601 0.046032 0.418051 0.045705002 0.41408601 0.046032\n\t\t 0.41431499 0.051059999 0.40903601 0.051438 0.40903601 0.051438 0.40886 0.046415001\n\t\t 0.41408601 0.046032 0.40872899 0.056370001 0.40903601 0.051438 0.41431499 0.051059999\n\t\t 0.41431499 0.051059999 0.414022 0.056023002 0.40872899 0.056370001 0.414022 0.056023002\n\t\t 0.41431499 0.051059999 0.41834 0.050755002 0.41834 0.050755002 0.41810501 0.055752002\n\t\t 0.414022 0.056023002 0.41810501 0.055752002 0.41834 0.050755002 0.423985 0.050494\n\t\t 0.423985 0.050494 0.42391101 0.055525001 0.41810501 0.055752002 0.41736501 0.060702\n\t\t 0.41810501 0.055752002 0.42391101 0.055525001 0.42391101 0.055525001 0.42340001 0.060515001\n\t\t 0.41736501 0.060702;\n\tsetAttr \".uvst[0].uvsp[27750:27999]\" 0.41810501 0.055752002 0.41736501 0.060702\n\t\t 0.41322801 0.060931001 0.41322801 0.060931001 0.414022 0.056023002 0.41810501 0.055752002\n\t\t 0.414022 0.056023002 0.41322801 0.060931001 0.40795401 0.061230998 0.40795401 0.061230998\n\t\t 0.40872899 0.056370001 0.414022 0.056023002 0.40681201 0.066137001 0.40795401 0.061230998\n\t\t 0.41322801 0.060931001 0.41322801 0.060931001 0.412036 0.065894 0.40681201 0.066137001\n\t\t 0.412036 0.065894 0.41322801 0.060931001 0.41736501 0.060702 0.41736501 0.060702\n\t\t 0.41622001 0.065722004 0.412036 0.065894 0.41622001 0.065722004 0.41736501 0.060702\n\t\t 0.42340001 0.060515001 0.42340001 0.060515001 0.42254001 0.065604001 0.41622001 0.065722004\n\t\t 0.414801 0.070941001 0.41622001 0.065722004 0.42254001 0.065604001 0.42254001 0.065604001\n\t\t 0.42142299 0.070910998 0.414801 0.070941001 0.41622001 0.065722004 0.414801 0.070941001\n\t\t 0.41059199 0.071042001 0.41059199 0.071042001 0.412036 0.065894 0.41622001 0.065722004\n\t\t 0.412036 0.065894 0.41059199 0.071042001 0.40545499 0.071220003 0.40545499 0.071220003\n\t\t 0.40681201 0.066137001 0.412036 0.065894 0.40407601 0.076543003 0.40545499 0.071220003\n\t\t 0.41059199 0.071042001 0.41059199 0.071042001 0.40908399 0.076433003 0.40407601 0.076543003\n\t\t 0.40908399 0.076433003 0.41059199 0.071042001 0.414801 0.070941001 0.414801 0.070941001\n\t\t 0.41328001 0.076405004 0.40908399 0.076433003 0.41328001 0.076405004 0.414801 0.070941001\n\t\t 0.42142299 0.070910998 0.42142299 0.070910998 0.42016399 0.076453 0.41328001 0.076405004\n\t\t 0.41181001 0.082099997 0.41328001 0.076405004 0.42016399 0.076453 0.42016399 0.076453\n\t\t 0.41886899 0.082186997 0.41181001 0.082099997 0.41328001 0.076405004 0.41181001 0.082099997\n\t\t 0.40768 0.082070999 0.40768 0.082070999 0.40908399 0.076433003 0.41328001 0.076405004\n\t\t 0.40908399 0.076433003 0.40768 0.082070999 0.40284401 0.082107 0.40284401 0.082107\n\t\t 0.40407601 0.076543003 0.40908399 0.076433003 0.40174299 0.087815002 0.40284401 0.082107\n\t\t 0.40768 0.082070999 0.40768 0.082070999 0.40639701 0.087823004 0.40174299 0.087815002\n\t\t 0.40639701 0.087823004 0.40768 0.082070999 0.41181001 0.082099997 0.41181001 0.082099997\n\t\t 0.41043401 0.087857001 0.40639701 0.087823004 0.41043401 0.087857001 0.41181001 0.082099997\n\t\t 0.41886899 0.082186997 0.41886899 0.082186997 0.417613 0.087917998 0.41043401 0.087857001\n\t\t 0.42016399 0.076453 0.42142299 0.070910998 0.42699501 0.070735 0.42759201 0.065366\n\t\t 0.42699501 0.070735 0.42142299 0.070910998 0.42699501 0.070735 0.42759201 0.065366\n\t\t 0.43294501 0.064749002 0.43294501 0.059604999 0.43294501 0.064749002 0.42759201 0.065366\n\t\t 0.42759201 0.065366 0.42803201 0.060249999 0.43294501 0.059604999 0.43294501 0.054804999\n\t\t 0.43294501 0.059604999 0.42803201 0.060249999 0.42803201 0.060249999 0.42827699 0.055307001\n\t\t 0.43294501 0.054804999 0.43294501 0.050276 0.43294501 0.054804999 0.42827699 0.055307001\n\t\t 0.42827699 0.055307001 0.42826 0.050425 0.43294501 0.050276 0.43294501 0.050276 0.42826\n\t\t 0.050425 0.42800301 0.045513 0.42800301 0.045513 0.43294501 0.045942999 0.43294501\n\t\t 0.050276 0.423619 0.045405999 0.42800301 0.045513 0.42826 0.050425 0.42826 0.050425\n\t\t 0.423985 0.050494 0.423619 0.045405999 0.42391101 0.055525001 0.423985 0.050494 0.42826\n\t\t 0.050425 0.42826 0.050425 0.42827699 0.055307001 0.42391101 0.055525001 0.42827699\n\t\t 0.055307001 0.42803201 0.060249999 0.42340001 0.060515001 0.42340001 0.060515001\n\t\t 0.42391101 0.055525001 0.42827699 0.055307001 0.42254001 0.065604001 0.42340001 0.060515001\n\t\t 0.42803201 0.060249999 0.42803201 0.060249999 0.42759201 0.065366 0.42254001 0.065604001\n\t\t 0.42142299 0.070910998 0.42254001 0.065604001 0.42759201 0.065366 0.42754 0.040523\n\t\t 0.42800301 0.045513 0.423619 0.045405999 0.423619 0.045405999 0.422833 0.040265001\n\t\t 0.42754 0.040523 0.422833 0.040265001 0.423619 0.045405999 0.418051 0.045705002 0.418051\n\t\t 0.045705002 0.41724601 0.040608 0.422833 0.040265001 0.42175999 0.035145 0.422833\n\t\t 0.040265001 0.41724601 0.040608 0.41724601 0.040608 0.41607201 0.035523999 0.42175999\n\t\t 0.035145 0.42055601 0.030095 0.42175999 0.035145 0.41607201 0.035523999 0.41607201\n\t\t 0.035523999 0.41467601 0.030486999 0.42055601 0.030095 0.41938901 0.025082 0.42055601\n\t\t 0.030095 0.41467601 0.030486999 0.41467601 0.030486999 0.41325501 0.025454 0.41938901\n\t\t 0.025082 0.41840601 0.020026 0.41938901 0.025082 0.41325501 0.025454 0.41325501 0.025454\n\t\t 0.41196901 0.020341 0.41840601 0.020026 0.41766399 0.014793 0.41840601 0.020026 0.41196901\n\t\t 0.020341 0.41196901 0.020341 0.41091701 0.015022 0.41766399 0.014793 0.41718301 0.0093139997\n\t\t 0.41766399 0.014793 0.41091701 0.015022 0.41091701 0.015022 0.41012901 0.0094149997\n\t\t 0.41718301 0.0093139997 0.41667601 0.003672 0.41718301 0.0093139997 0.41012901 0.0094149997\n\t\t 0.41012901 0.0094149997 0.40959001 0.0036210001 0.41667601 0.003672 0.41012901 0.0094149997\n\t\t 0.41091701 0.015022 0.40704301 0.015075 0.40704301 0.015075 0.40618199 0.0094280001\n\t\t 0.41012901 0.0094149997 0.409491 0.003579 0.41012901 0.0094149997 0.40618199 0.0094280001\n\t\t 0.40618199 0.0094280001 0.40556699 0.0035979999 0.409491 0.003579 0.40618199 0.0094280001\n\t\t 0.40704301 0.015075 0.402448 0.015097 0.402448 0.015097 0.40160701 0.0094370004 0.40618199\n\t\t 0.0094280001 0.405518 0.0035570001 0.40618199 0.0094280001 0.40160701 0.0094370004\n\t\t 0.40160701 0.0094370004 0.40100399 0.00358 0.405518 0.0035570001 0.41091701 0.015022\n\t\t 0.41196901 0.020341 0.40814599 0.020443 0.40814599 0.020443 0.40704301 0.015075 0.41091701\n\t\t 0.015022 0.40704301 0.015075 0.40814599 0.020443 0.40348399 0.020492001 0.40348399\n\t\t 0.020492001;\n\tsetAttr \".uvst[0].uvsp[28000:28249]\" 0.402448 0.015097 0.40704301 0.015075 0.40469399\n\t\t 0.025729001 0.40348399 0.020492001 0.40814599 0.020443 0.40814599 0.020443 0.409455\n\t\t 0.025624 0.40469399 0.025729001 0.409455 0.025624 0.40814599 0.020443 0.41196901\n\t\t 0.020341 0.41196901 0.020341 0.41325501 0.025454 0.409455 0.025624 0.41086701 0.030732\n\t\t 0.409455 0.025624 0.41325501 0.025454 0.41325501 0.025454 0.41467601 0.030486999\n\t\t 0.41086701 0.030732 0.409455 0.025624 0.41086701 0.030732 0.405981 0.030925 0.405981\n\t\t 0.030925 0.40469399 0.025729001 0.409455 0.025624 0.40720999 0.036114 0.405981 0.030925\n\t\t 0.41086701 0.030732 0.41086701 0.030732 0.412227 0.035829 0.40720999 0.036114 0.412227\n\t\t 0.035829 0.41086701 0.030732 0.41467601 0.030486999 0.41467601 0.030486999 0.41607201\n\t\t 0.035523999 0.412227 0.035829 0.413344 0.040940002 0.412227 0.035829 0.41607201 0.035523999\n\t\t 0.41607201 0.035523999 0.41724601 0.040608 0.413344 0.040940002 0.412227 0.035829\n\t\t 0.413344 0.040940002 0.408207 0.041292001 0.408207 0.041292001 0.40720999 0.036114\n\t\t 0.412227 0.035829 0.40886 0.046415001 0.408207 0.041292001 0.413344 0.040940002 0.413344\n\t\t 0.040940002 0.41408601 0.046032 0.40886 0.046415001 0.41408601 0.046032 0.413344\n\t\t 0.040940002 0.41724601 0.040608 0.41724601 0.040608 0.418051 0.045705002 0.41408601\n\t\t 0.046032 0.40469399 0.025729001 0.405981 0.030925 0.399647 0.030972 0.40063801 0.036219001\n\t\t 0.399647 0.030972 0.405981 0.030925 0.405981 0.030925 0.40720999 0.036114 0.40063801\n\t\t 0.036219001 0.399647 0.030972 0.40063801 0.036219001 0.39228299 0.036090001 0.39228299\n\t\t 0.036090001 0.39158499 0.030777 0.399647 0.030972 0.398617 0.025738001 0.399647 0.030972\n\t\t 0.39158499 0.030777 0.399647 0.030972 0.398617 0.025738001 0.40469399 0.025729001\n\t\t 0.40348399 0.020492001 0.40469399 0.025729001 0.398617 0.025738001 0.398617 0.025738001\n\t\t 0.397652 0.020494999 0.40348399 0.020492001 0.402448 0.015097 0.40348399 0.020492001\n\t\t 0.397652 0.020494999 0.397652 0.020494999 0.39683101 0.015124 0.402448 0.015097 0.40160701\n\t\t 0.0094370004 0.402448 0.015097 0.39683101 0.015124 0.39683101 0.015124 0.396144 0.009474\n\t\t 0.40160701 0.0094370004 0.396144 0.009474 0.39683101 0.015124 0.38973999 0.014973\n\t\t 0.38973999 0.014973 0.38934001 0.0094309999 0.396144 0.009474 0.38934001 0.0094309999\n\t\t 0.38973999 0.014973 0.38062099 0.014606 0.38062099 0.014606 0.38062501 0.0092909997\n\t\t 0.38934001 0.0094309999 0.38062501 0.0092909997 0.38062099 0.014606 0.36882499 0.014239\n\t\t 0.36882499 0.014239 0.36932501 0.0091420002 0.38062501 0.0092909997 0.36932501 0.0091420002\n\t\t 0.36882499 0.014239 0.35367 0.014235 0.35367 0.014235 0.354608 0.0091159996 0.36932501\n\t\t 0.0091420002 0.354608 0.0091159996 0.35367 0.014235 0.33692899 0.014388 0.33692899\n\t\t 0.014388 0.33799899 0.0091319997 0.354608 0.0091159996 0.33799899 0.0091319997 0.33692899\n\t\t 0.014388 0.32042599 0.014697 0.32042599 0.014697 0.32118499 0.0091949999 0.33799899\n\t\t 0.0091319997 0.32118499 0.0091949999 0.32042599 0.014697 0.30583301 0.015355 0.30583301\n\t\t 0.015355 0.30583301 0.0093700001 0.32118499 0.0091949999 0.35329801 0.019366 0.35367\n\t\t 0.014235 0.36882499 0.014239 0.36882499 0.014239 0.368662 0.019352 0.35329801 0.019366\n\t\t 0.368662 0.019352 0.36882499 0.014239 0.38062099 0.014606 0.35367 0.014235 0.35329801\n\t\t 0.019366 0.33648601 0.019624 0.33648601 0.019624 0.33692899 0.014388 0.35367 0.014235\n\t\t 0.33692899 0.014388 0.33648601 0.019624 0.32008201 0.020175001 0.32008201 0.020175001\n\t\t 0.32042599 0.014697 0.33692899 0.014388 0.32042599 0.014697 0.32008201 0.020175001\n\t\t 0.30583301 0.021309 0.30583301 0.021309 0.30583301 0.015355 0.32042599 0.014697 0.30583301\n\t\t 0.026961001 0.30583301 0.021309 0.32008201 0.020175001 0.32008201 0.020175001 0.319895\n\t\t 0.02555 0.30583301 0.026961001 0.319895 0.02555 0.32008201 0.020175001 0.33648601\n\t\t 0.019624 0.33648601 0.019624 0.33626199 0.024847001 0.319895 0.02555 0.33626199 0.024847001\n\t\t 0.33648601 0.019624 0.35329801 0.019366 0.35329801 0.019366 0.35314101 0.024569999\n\t\t 0.33626199 0.024847001 0.35314101 0.024569999 0.35329801 0.019366 0.368662 0.019352\n\t\t 0.368662 0.019352 0.36867401 0.024572 0.35314101 0.024569999 0.35308599 0.029851999\n\t\t 0.35314101 0.024569999 0.36867401 0.024572 0.36867401 0.024572 0.36876801 0.029913999\n\t\t 0.35308599 0.029851999 0.35314101 0.024569999 0.35308599 0.029851999 0.336146 0.030060001\n\t\t 0.336146 0.030060001 0.33626199 0.024847001 0.35314101 0.024569999 0.33626199 0.024847001\n\t\t 0.336146 0.030060001 0.31979799 0.030793 0.31979799 0.030793 0.319895 0.02555 0.33626199\n\t\t 0.024847001 0.319895 0.02555 0.31979799 0.030793 0.30583301 0.032191999 0.30583301\n\t\t 0.032191999 0.30583301 0.026961001 0.319895 0.02555 0.30583301 0.037030999 0.30583301\n\t\t 0.032191999 0.31979799 0.030793 0.31979799 0.030793 0.31980899 0.035998002 0.30583301\n\t\t 0.037030999 0.31980899 0.035998002 0.31979799 0.030793 0.336146 0.030060001 0.336146\n\t\t 0.030060001 0.33614901 0.035303 0.31980899 0.035998002 0.33614901 0.035303 0.336146\n\t\t 0.030060001 0.35308599 0.029851999 0.35308599 0.029851999 0.35313299 0.035200998\n\t\t 0.33614901 0.035303 0.35313299 0.035200998 0.35308599 0.029851999 0.36876801 0.029913999\n\t\t 0.36876801 0.029913999 0.36893699 0.035330001 0.35313299 0.035200998 0.35322899 0.040575001\n\t\t 0.35313299 0.035200998 0.36893699 0.035330001 0.36893699 0.035330001 0.36911699 0.040747002\n\t\t 0.35322899 0.040575001 0.35313299 0.035200998 0.35322899 0.040575001;\n\tsetAttr \".uvst[0].uvsp[28250:28499]\" 0.33622199 0.040589999 0.33622199 0.040589999\n\t\t 0.33614901 0.035303 0.35313299 0.035200998 0.33614901 0.035303 0.33622199 0.040589999\n\t\t 0.31988299 0.041264001 0.31988299 0.041264001 0.31980899 0.035998002 0.33614901 0.035303\n\t\t 0.31980899 0.035998002 0.31988299 0.041264001 0.30583301 0.041602999 0.30583301 0.041602999\n\t\t 0.30583301 0.037030999 0.31980899 0.035998002 0.30583301 0.045942999 0.30583301 0.041602999\n\t\t 0.31988299 0.041264001 0.31988299 0.041264001 0.31998801 0.046634 0.30583301 0.045942999\n\t\t 0.31998801 0.046634 0.31988299 0.041264001 0.33622199 0.040589999 0.30583301 0.050276\n\t\t 0.30583301 0.045942999 0.31998801 0.046634 0.31998801 0.046634 0.32004201 0.052179001\n\t\t 0.30583301 0.050276 0.32004201 0.052179001 0.31998801 0.046634 0.33634001 0.045882002\n\t\t 0.33622199 0.040589999 0.33634001 0.045882002 0.31998801 0.046634 0.33634001 0.045882002\n\t\t 0.33622199 0.040589999 0.35322899 0.040575001 0.33634001 0.045882002 0.33641699 0.051165\n\t\t 0.32004201 0.052179001 0.33641699 0.051165 0.33634001 0.045882002 0.35336101 0.045914002\n\t\t 0.35322899 0.040575001 0.35336101 0.045914002 0.33634001 0.045882002 0.35336101 0.045914002\n\t\t 0.35322899 0.040575001 0.36911699 0.040747002 0.35336101 0.045914002 0.35344401 0.051194999\n\t\t 0.33641699 0.051165 0.35344401 0.051194999 0.35336101 0.045914002 0.36929101 0.046091001\n\t\t 0.36911699 0.040747002 0.36929101 0.046091001 0.35336101 0.045914002 0.36929101 0.046091001\n\t\t 0.36937699 0.051325999 0.35344401 0.051194999 0.30583301 0.054804999 0.30583301 0.050276\n\t\t 0.32004201 0.052179001 0.32004201 0.052179001 0.32004601 0.057872999 0.30583301 0.054804999\n\t\t 0.32004601 0.057872999 0.32004201 0.052179001 0.33641699 0.051165 0.33641699 0.051165\n\t\t 0.336445 0.056398999 0.32004601 0.057872999 0.336445 0.056398999 0.33641699 0.051165\n\t\t 0.35344401 0.051194999 0.35344401 0.051194999 0.35346901 0.056416001 0.336445 0.056398999\n\t\t 0.35346901 0.056416001 0.35344401 0.051194999 0.36937699 0.051325999 0.36937699 0.051325999\n\t\t 0.36935699 0.056474 0.35346901 0.056416001 0.35343501 0.061622001 0.35346901 0.056416001\n\t\t 0.36935699 0.056474 0.36935699 0.056474 0.36922699 0.061606999 0.35343501 0.061622001\n\t\t 0.35346901 0.056416001 0.35343501 0.061622001 0.33643401 0.061579 0.33643401 0.061579\n\t\t 0.336445 0.056398999 0.35346901 0.056416001 0.336445 0.056398999 0.33643401 0.061579\n\t\t 0.320034 0.063637003 0.320034 0.063637003 0.32004601 0.057872999 0.336445 0.056398999\n\t\t 0.32004601 0.057872999 0.320034 0.063637003 0.30583301 0.059604999 0.30583301 0.059604999\n\t\t 0.30583301 0.054804999 0.32004601 0.057872999 0.30583301 0.064749002 0.30583301 0.059604999\n\t\t 0.320034 0.063637003 0.320034 0.063637003 0.32006299 0.069332004 0.30583301 0.064749002\n\t\t 0.32006299 0.069332004 0.320034 0.063637003 0.33643401 0.061579 0.33643401 0.061579\n\t\t 0.33643401 0.06673 0.32006299 0.069332004 0.33643401 0.06673 0.33643401 0.061579\n\t\t 0.35343501 0.061622001 0.35343501 0.061622001 0.35338101 0.066869996 0.33643401 0.06673\n\t\t 0.35338101 0.066869996 0.35343501 0.061622001 0.36922699 0.061606999 0.36922699 0.061606999\n\t\t 0.36903101 0.066811003 0.35338101 0.066869996 0.35339901 0.072177 0.35338101 0.066869996\n\t\t 0.36903101 0.066811003 0.36903101 0.066811003 0.368866 0.072120003 0.35339901 0.072177\n\t\t 0.35338101 0.066869996 0.35339901 0.072177 0.336541 0.071888 0.336541 0.071888 0.33643401\n\t\t 0.06673 0.35338101 0.066869996 0.33643401 0.06673 0.336541 0.071888 0.32020301 0.074758999\n\t\t 0.32020301 0.074758999 0.32006299 0.069332004 0.33643401 0.06673 0.32006299 0.069332004\n\t\t 0.32020301 0.074758999 0.30583301 0.070223004 0.30583301 0.070223004 0.30583301 0.064749002\n\t\t 0.32006299 0.069332004 0.30583301 0.076016001 0.30583301 0.070223004 0.32020301 0.074758999\n\t\t 0.32020301 0.074758999 0.32043299 0.079764999 0.30583301 0.076016001 0.32043299 0.079764999\n\t\t 0.32020301 0.074758999 0.336541 0.071888 0.336541 0.071888 0.33678001 0.077133 0.32043299\n\t\t 0.079764999 0.33678001 0.077133 0.336541 0.071888 0.35339901 0.072177 0.35339901\n\t\t 0.072177 0.353517 0.077519 0.33678001 0.077133 0.353517 0.077519 0.35339901 0.072177\n\t\t 0.368866 0.072120003 0.368866 0.072120003 0.368783 0.077486999 0.353517 0.077519\n\t\t 0.35384801 0.082828 0.353517 0.077519 0.368783 0.077486999 0.368783 0.077486999 0.36890599\n\t\t 0.08281 0.35384801 0.082828 0.353517 0.077519 0.35384801 0.082828 0.33721101 0.082514003\n\t\t 0.33721101 0.082514003 0.33678001 0.077133 0.353517 0.077519 0.33678001 0.077133\n\t\t 0.33721101 0.082514003 0.32074401 0.084316 0.32074401 0.084316 0.32043299 0.079764999\n\t\t 0.33678001 0.077133 0.32043299 0.079764999 0.32074401 0.084316 0.30583301 0.08196\n\t\t 0.30583301 0.08196 0.30583301 0.076016001 0.32043299 0.079764999 0.30583301 0.087775998\n\t\t 0.30583301 0.08196 0.32074401 0.084316 0.32074401 0.084316 0.32131499 0.088601001\n\t\t 0.30583301 0.087775998 0.32131499 0.088601001 0.32074401 0.084316 0.33721101 0.082514003\n\t\t 0.33721101 0.082514003 0.33812901 0.087985002 0.32131499 0.088601001 0.33812901 0.087985002\n\t\t 0.33721101 0.082514003 0.35384801 0.082828 0.35384801 0.082828 0.35467401 0.088076003\n\t\t 0.33812901 0.087985002 0.35467401 0.088076003 0.35384801 0.082828 0.36890599 0.08281\n\t\t 0.36890599 0.08281 0.36934501 0.088055 0.35467401 0.088076003 0.356085 0.093331002\n\t\t 0.35467401 0.088076003 0.36934501 0.088055 0.36934501 0.088055 0.37009701 0.093227997\n\t\t 0.356085 0.093331002 0.35467401 0.088076003 0.356085 0.093331002 0.34033701 0.093310997\n\t\t 0.34033701 0.093310997 0.33812901 0.087985002 0.35467401 0.088076003 0.32327899 0.093345001\n\t\t 0.32131499 0.088601001 0.33812901 0.087985002 0.33812901 0.087985002 0.340361 0.093350001\n\t\t 0.32327899 0.093345001;\n\tsetAttr \".uvst[0].uvsp[28500:28749]\" 0.306806 0.092666999 0.30583301 0.087775998\n\t\t 0.32131499 0.088601001 0.32131499 0.088601001 0.322799 0.092758 0.306806 0.092666999\n\t\t 0.30583301 0.08196 0.30583301 0.087775998 0.29161799 0.087775998 0.29161799 0.087775998\n\t\t 0.29161799 0.08196 0.30583301 0.08196 0.30583301 0.076016001 0.30583301 0.08196 0.29161799\n\t\t 0.08196 0.29161799 0.08196 0.29161799 0.076016001 0.30583301 0.076016001 0.30583301\n\t\t 0.070223004 0.30583301 0.076016001 0.29161799 0.076016001 0.29161799 0.076016001\n\t\t 0.29161799 0.070223004 0.30583301 0.070223004 0.30583301 0.064749002 0.30583301 0.070223004\n\t\t 0.29161799 0.070223004 0.29161799 0.070223004 0.29161799 0.064749002 0.30583301 0.064749002\n\t\t 0.30583301 0.059604999 0.30583301 0.064749002 0.29161799 0.064749002 0.29161799 0.064749002\n\t\t 0.29161799 0.059604999 0.30583301 0.059604999 0.30583301 0.054804999 0.30583301 0.059604999\n\t\t 0.29161799 0.059604999 0.29161799 0.059604999 0.29161799 0.054804999 0.30583301 0.054804999\n\t\t 0.30583301 0.050276 0.30583301 0.054804999 0.29161799 0.054804999 0.29161799 0.054804999\n\t\t 0.29161799 0.050276 0.30583301 0.050276 0.30583301 0.045942999 0.30583301 0.050276\n\t\t 0.29161799 0.050276 0.29161799 0.050276 0.29161799 0.045942999 0.30583301 0.045942999\n\t\t 0.29161799 0.045942999 0.29161799 0.050276 0.279039 0.050276 0.279039 0.050276 0.279039\n\t\t 0.045942999 0.29161799 0.045942999 0.279039 0.045942999 0.279039 0.050276 0.26699799\n\t\t 0.050276 0.26699799 0.050276 0.26699799 0.045942999 0.279039 0.045942999 0.26699799\n\t\t 0.045942999 0.26699799 0.050276 0.254612 0.050276 0.254612 0.050276 0.254612 0.045942999\n\t\t 0.26699799 0.045942999 0.254612 0.054804999 0.254612 0.050276 0.26699799 0.050276\n\t\t 0.26699799 0.050276 0.26699799 0.054804999 0.254612 0.054804999 0.26699799 0.054804999\n\t\t 0.26699799 0.050276 0.279039 0.050276 0.279039 0.050276 0.279039 0.054804999 0.26699799\n\t\t 0.054804999 0.279039 0.054804999 0.279039 0.050276 0.29161799 0.050276 0.29161799\n\t\t 0.050276 0.29161799 0.054804999 0.279039 0.054804999 0.29161799 0.054804999 0.29161799\n\t\t 0.059604999 0.279039 0.059604999 0.279039 0.059604999 0.279039 0.054804999 0.29161799\n\t\t 0.054804999 0.279039 0.054804999 0.279039 0.059604999 0.26699799 0.059604999 0.26699799\n\t\t 0.059604999 0.26699799 0.054804999 0.279039 0.054804999 0.26699799 0.054804999 0.26699799\n\t\t 0.059604999 0.254612 0.059604999 0.254612 0.059604999 0.254612 0.054804999 0.26699799\n\t\t 0.054804999 0.254612 0.064749002 0.254612 0.059604999 0.26699799 0.059604999 0.26699799\n\t\t 0.059604999 0.26699799 0.064749002 0.254612 0.064749002 0.26699799 0.064749002 0.26699799\n\t\t 0.059604999 0.279039 0.059604999 0.279039 0.059604999 0.279039 0.064749002 0.26699799\n\t\t 0.064749002 0.279039 0.064749002 0.279039 0.059604999 0.29161799 0.059604999 0.29161799\n\t\t 0.059604999 0.29161799 0.064749002 0.279039 0.064749002 0.279039 0.070223004 0.279039\n\t\t 0.064749002 0.29161799 0.064749002 0.29161799 0.064749002 0.29161799 0.070223004\n\t\t 0.279039 0.070223004 0.279039 0.064749002 0.279039 0.070223004 0.26699799 0.070223004\n\t\t 0.26699799 0.070223004 0.26699799 0.064749002 0.279039 0.064749002 0.26699799 0.064749002\n\t\t 0.26699799 0.070223004 0.254612 0.070223004 0.254612 0.070223004 0.254612 0.064749002\n\t\t 0.26699799 0.064749002 0.254612 0.076016001 0.254612 0.070223004 0.26699799 0.070223004\n\t\t 0.26699799 0.070223004 0.26699799 0.076016001 0.254612 0.076016001 0.26699799 0.076016001\n\t\t 0.26699799 0.070223004 0.279039 0.070223004 0.279039 0.070223004 0.279039 0.076016001\n\t\t 0.26699799 0.076016001 0.279039 0.076016001 0.279039 0.070223004 0.29161799 0.070223004\n\t\t 0.29161799 0.070223004 0.29161799 0.076016001 0.279039 0.076016001 0.279039 0.08196\n\t\t 0.279039 0.076016001 0.29161799 0.076016001 0.29161799 0.076016001 0.29161799 0.08196\n\t\t 0.279039 0.08196 0.279039 0.076016001 0.279039 0.08196 0.26699799 0.08196 0.26699799\n\t\t 0.08196 0.26699799 0.076016001 0.279039 0.076016001 0.26699799 0.076016001 0.26699799\n\t\t 0.08196 0.254612 0.08196 0.254612 0.08196 0.254612 0.076016001 0.26699799 0.076016001\n\t\t 0.254612 0.087775998 0.254612 0.08196 0.26699799 0.08196 0.26699799 0.08196 0.26699799\n\t\t 0.087775998 0.254612 0.087775998 0.26699799 0.087775998 0.26699799 0.08196 0.279039\n\t\t 0.08196 0.279039 0.08196 0.279039 0.087775998 0.26699799 0.087775998 0.279039 0.087775998\n\t\t 0.279039 0.08196 0.29161799 0.08196 0.29161799 0.08196 0.29161799 0.087775998 0.279039\n\t\t 0.087775998 0.27953699 0.093370996 0.279039 0.087775998 0.29161799 0.087775998 0.29161799\n\t\t 0.087775998 0.29153499 0.093516 0.27953699 0.093370996 0.26748601 0.093465 0.26699799\n\t\t 0.087775998 0.279039 0.087775998 0.279039 0.087775998 0.27893701 0.093479998 0.26748601\n\t\t 0.093465 0.25503099 0.093579002 0.254612 0.087775998 0.26699799 0.087775998 0.26699799\n\t\t 0.087775998 0.26689601 0.093484998 0.25503099 0.093579002 0.254612 0.08196 0.254612\n\t\t 0.087775998 0.241256 0.087775998 0.241256 0.087775998 0.241256 0.08196 0.254612 0.08196\n\t\t 0.254612 0.076016001 0.254612 0.08196 0.241256 0.08196 0.241256 0.08196 0.241256\n\t\t 0.076016001 0.254612 0.076016001 0.254612 0.070223004 0.254612 0.076016001 0.241256\n\t\t 0.076016001 0.241256 0.076016001 0.241256 0.070223004 0.254612 0.070223004 0.254612\n\t\t 0.064749002 0.254612 0.070223004 0.241256 0.070223004 0.241256 0.070223004 0.241256\n\t\t 0.064749002 0.254612 0.064749002 0.254612 0.059604999 0.254612 0.064749002 0.241256\n\t\t 0.064749002 0.241256 0.064749002 0.241256 0.059604999 0.254612 0.059604999 0.254612\n\t\t 0.054804999 0.254612 0.059604999 0.241256 0.059604999 0.241256 0.059604999;\n\tsetAttr \".uvst[0].uvsp[28750:28999]\" 0.241256 0.054804999 0.254612 0.054804999\n\t\t 0.254612 0.050276 0.254612 0.054804999 0.241256 0.054804999 0.241256 0.054804999\n\t\t 0.241256 0.050276 0.254612 0.050276 0.254612 0.045942999 0.254612 0.050276 0.241256\n\t\t 0.050276 0.241256 0.050276 0.241256 0.045942999 0.254612 0.045942999 0.241256 0.045942999\n\t\t 0.241256 0.050276 0.22657999 0.050276 0.22657999 0.050276 0.22657999 0.045942999\n\t\t 0.241256 0.045942999 0.22657999 0.045942999 0.22657999 0.050276 0.21060701 0.050276\n\t\t 0.21060701 0.050276 0.21060701 0.045942999 0.22657999 0.045942999 0.21060701 0.045942999\n\t\t 0.21060701 0.050276 0.193698 0.050276 0.193698 0.050276 0.193698 0.045942999 0.21060701\n\t\t 0.045942999 0.193698 0.054804999 0.193698 0.050276 0.21060701 0.050276 0.21060701\n\t\t 0.050276 0.21060701 0.054804999 0.193698 0.054804999 0.21060701 0.054804999 0.21060701\n\t\t 0.050276 0.22657999 0.050276 0.22657999 0.050276 0.22657999 0.054804999 0.21060701\n\t\t 0.054804999 0.22657999 0.054804999 0.22657999 0.050276 0.241256 0.050276 0.241256\n\t\t 0.050276 0.241256 0.054804999 0.22657999 0.054804999 0.241256 0.054804999 0.241256\n\t\t 0.059604999 0.22657999 0.059604999 0.22657999 0.059604999 0.22657999 0.054804999\n\t\t 0.241256 0.054804999 0.22657999 0.054804999 0.22657999 0.059604999 0.21060701 0.059604999\n\t\t 0.21060701 0.059604999 0.21060701 0.054804999 0.22657999 0.054804999 0.21060701 0.054804999\n\t\t 0.21060701 0.059604999 0.193698 0.059604999 0.193698 0.059604999 0.193698 0.054804999\n\t\t 0.21060701 0.054804999 0.193698 0.064749002 0.193698 0.059604999 0.21060701 0.059604999\n\t\t 0.21060701 0.059604999 0.21060701 0.064749002 0.193698 0.064749002 0.21060701 0.064749002\n\t\t 0.21060701 0.059604999 0.22657999 0.059604999 0.22657999 0.059604999 0.22657999 0.064749002\n\t\t 0.21060701 0.064749002 0.22657999 0.064749002 0.22657999 0.059604999 0.241256 0.059604999\n\t\t 0.241256 0.059604999 0.241256 0.064749002 0.22657999 0.064749002 0.22657999 0.070223004\n\t\t 0.22657999 0.064749002 0.241256 0.064749002 0.241256 0.064749002 0.241256 0.070223004\n\t\t 0.22657999 0.070223004 0.22657999 0.064749002 0.22657999 0.070223004 0.21060701 0.070223004\n\t\t 0.21060701 0.070223004 0.21060701 0.064749002 0.22657999 0.064749002 0.21060701 0.064749002\n\t\t 0.21060701 0.070223004 0.193698 0.070223004 0.193698 0.070223004 0.193698 0.064749002\n\t\t 0.21060701 0.064749002 0.193698 0.076016001 0.193698 0.070223004 0.21060701 0.070223004\n\t\t 0.21060701 0.070223004 0.21060701 0.076016001 0.193698 0.076016001 0.21060701 0.076016001\n\t\t 0.21060701 0.070223004 0.22657999 0.070223004 0.22657999 0.070223004 0.22657999 0.076016001\n\t\t 0.21060701 0.076016001 0.22657999 0.076016001 0.22657999 0.070223004 0.241256 0.070223004\n\t\t 0.241256 0.070223004 0.241256 0.076016001 0.22657999 0.076016001 0.22657999 0.08196\n\t\t 0.22657999 0.076016001 0.241256 0.076016001 0.241256 0.076016001 0.241256 0.08196\n\t\t 0.22657999 0.08196 0.22657999 0.076016001 0.22657999 0.08196 0.21060701 0.08196 0.21060701\n\t\t 0.08196 0.21060701 0.076016001 0.22657999 0.076016001 0.21060701 0.076016001 0.21060701\n\t\t 0.08196 0.193698 0.08196 0.193698 0.08196 0.193698 0.076016001 0.21060701 0.076016001\n\t\t 0.193698 0.087775998 0.193698 0.08196 0.21060701 0.08196 0.21060701 0.08196 0.21060701\n\t\t 0.087775998 0.193698 0.087775998 0.21060701 0.087775998 0.21060701 0.08196 0.22657999\n\t\t 0.08196 0.22657999 0.08196 0.22657999 0.087775998 0.21060701 0.087775998 0.22657999\n\t\t 0.087775998 0.22657999 0.08196 0.241256 0.08196 0.241256 0.08196 0.241256 0.087775998\n\t\t 0.22657999 0.087775998 0.22687501 0.093610004 0.22657999 0.087775998 0.241256 0.087775998\n\t\t 0.241256 0.087775998 0.241166 0.093535997 0.22687501 0.093610004 0.21092001 0.093584001\n\t\t 0.21060701 0.087775998 0.22657999 0.087775998 0.22657999 0.087775998 0.226504 0.093548\n\t\t 0.21092001 0.093584001 0.19405501 0.093566 0.193698 0.087775998 0.21060701 0.087775998\n\t\t 0.21060701 0.087775998 0.210548 0.093552999 0.19405501 0.093566 0.193698 0.08196\n\t\t 0.193698 0.087775998 0.17641 0.087775998 0.17641 0.087775998 0.17641 0.08196 0.193698\n\t\t 0.08196 0.193698 0.076016001 0.193698 0.08196 0.17641 0.08196 0.17641 0.08196 0.17641\n\t\t 0.076016001 0.193698 0.076016001 0.193698 0.070223004 0.193698 0.076016001 0.17641\n\t\t 0.076016001 0.17641 0.076016001 0.17641 0.070223004 0.193698 0.070223004 0.193698\n\t\t 0.064749002 0.193698 0.070223004 0.17641 0.070223004 0.17641 0.070223004 0.17641\n\t\t 0.064749002 0.193698 0.064749002 0.193698 0.059604999 0.193698 0.064749002 0.17641\n\t\t 0.064749002 0.17641 0.064749002 0.17641 0.059604999 0.193698 0.059604999 0.193698\n\t\t 0.054804999 0.193698 0.059604999 0.17641 0.059604999 0.17641 0.059604999 0.17641\n\t\t 0.054804999 0.193698 0.054804999 0.193698 0.050276 0.193698 0.054804999 0.17641 0.054804999\n\t\t 0.17641 0.054804999 0.17641 0.050276 0.193698 0.050276 0.193698 0.045942999 0.193698\n\t\t 0.050276 0.17641 0.050276 0.17641 0.050276 0.17641 0.045942999 0.193698 0.045942999\n\t\t 0.17641 0.045942999 0.17641 0.050276 0.159236 0.050276 0.159236 0.050276 0.159236\n\t\t 0.045942999 0.17641 0.045942999 0.159236 0.045942999 0.159236 0.050276 0.14243101\n\t\t 0.050276 0.14243101 0.050276 0.14243101 0.045942999 0.159236 0.045942999 0.14243101\n\t\t 0.045942999 0.14243101 0.050276 0.126 0.050276 0.126 0.050276 0.126 0.045942999 0.14243101\n\t\t 0.045942999 0.126 0.054804999 0.126 0.050276 0.14243101 0.050276 0.14243101 0.050276\n\t\t 0.14243101 0.054804999 0.126 0.054804999 0.14243101 0.054804999 0.14243101 0.050276;\n\tsetAttr \".uvst[0].uvsp[29000:29249]\" 0.159236 0.050276 0.159236 0.050276 0.159236\n\t\t 0.054804999 0.14243101 0.054804999 0.159236 0.054804999 0.159236 0.050276 0.17641\n\t\t 0.050276 0.17641 0.050276 0.17641 0.054804999 0.159236 0.054804999 0.17641 0.054804999\n\t\t 0.17641 0.059604999 0.159236 0.059604999 0.159236 0.059604999 0.159236 0.054804999\n\t\t 0.17641 0.054804999 0.159236 0.054804999 0.159236 0.059604999 0.14243101 0.059604999\n\t\t 0.14243101 0.059604999 0.14243101 0.054804999 0.159236 0.054804999 0.14243101 0.054804999\n\t\t 0.14243101 0.059604999 0.126 0.059604999 0.126 0.059604999 0.126 0.054804999 0.14243101\n\t\t 0.054804999 0.126 0.064749002 0.126 0.059604999 0.14243101 0.059604999 0.14243101\n\t\t 0.059604999 0.14243101 0.064749002 0.126 0.064749002 0.14243101 0.064749002 0.14243101\n\t\t 0.059604999 0.159236 0.059604999 0.159236 0.059604999 0.159236 0.064749002 0.14243101\n\t\t 0.064749002 0.159236 0.064749002 0.159236 0.059604999 0.17641 0.059604999 0.17641\n\t\t 0.059604999 0.17641 0.064749002 0.159236 0.064749002 0.159236 0.070223004 0.159236\n\t\t 0.064749002 0.17641 0.064749002 0.17641 0.064749002 0.17641 0.070223004 0.159236\n\t\t 0.070223004 0.159236 0.064749002 0.159236 0.070223004 0.14243101 0.070223004 0.14243101\n\t\t 0.070223004 0.14243101 0.064749002 0.159236 0.064749002 0.14243101 0.064749002 0.14243101\n\t\t 0.070223004 0.126 0.070223004 0.126 0.070223004 0.126 0.064749002 0.14243101 0.064749002\n\t\t 0.126 0.076016001 0.126 0.070223004 0.14243101 0.070223004 0.14243101 0.070223004\n\t\t 0.14243101 0.076016001 0.126 0.076016001 0.14243101 0.076016001 0.14243101 0.070223004\n\t\t 0.159236 0.070223004 0.159236 0.070223004 0.159236 0.076016001 0.14243101 0.076016001\n\t\t 0.159236 0.076016001 0.159236 0.070223004 0.17641 0.070223004 0.17641 0.070223004\n\t\t 0.17641 0.076016001 0.159236 0.076016001 0.159236 0.08196 0.159236 0.076016001 0.17641\n\t\t 0.076016001 0.17641 0.076016001 0.17641 0.08196 0.159236 0.08196 0.159236 0.076016001\n\t\t 0.159236 0.08196 0.14243101 0.08196 0.14243101 0.08196 0.14243101 0.076016001 0.159236\n\t\t 0.076016001 0.14243101 0.076016001 0.14243101 0.08196 0.126 0.08196 0.126 0.08196\n\t\t 0.126 0.076016001 0.14243101 0.076016001 0.126 0.087775998 0.126 0.08196 0.14243101\n\t\t 0.08196 0.14243101 0.08196 0.14243101 0.087775998 0.126 0.087775998 0.14243101 0.087775998\n\t\t 0.14243101 0.08196 0.159236 0.08196 0.159236 0.08196 0.159236 0.087775998 0.14243101\n\t\t 0.087775998 0.159236 0.087775998 0.159236 0.08196 0.17641 0.08196 0.17641 0.08196\n\t\t 0.17641 0.087775998 0.159236 0.087775998 0.159666 0.093576998 0.159236 0.087775998\n\t\t 0.17641 0.087775998 0.17641 0.087775998 0.176385 0.093561999 0.159666 0.093576998\n\t\t 0.142858 0.093589999 0.14243101 0.087775998 0.159236 0.087775998 0.159236 0.087775998\n\t\t 0.159217 0.093571 0.142858 0.093589999 0.126404 0.093594998 0.126 0.087775998 0.14243101\n\t\t 0.087775998 0.14243101 0.087775998 0.142409 0.093579002 0.126404 0.093594998 0.126\n\t\t 0.08196 0.126 0.087775998 0.109512 0.087775998 0.109512 0.087775998 0.109512 0.08196\n\t\t 0.126 0.08196 0.126 0.076016001 0.126 0.08196 0.109512 0.08196 0.109512 0.08196 0.109512\n\t\t 0.076016001 0.126 0.076016001 0.126 0.070223004 0.126 0.076016001 0.109512 0.076016001\n\t\t 0.109512 0.076016001 0.109512 0.070223004 0.126 0.070223004 0.126 0.064749002 0.126\n\t\t 0.070223004 0.109512 0.070223004 0.109512 0.070223004 0.109512 0.064749002 0.126\n\t\t 0.064749002 0.126 0.059604999 0.126 0.064749002 0.109512 0.064749002 0.109512 0.064749002\n\t\t 0.109512 0.059604999 0.126 0.059604999 0.126 0.054804999 0.126 0.059604999 0.109512\n\t\t 0.059604999 0.109512 0.059604999 0.109512 0.054804999 0.126 0.054804999 0.126 0.050276\n\t\t 0.126 0.054804999 0.109512 0.054804999 0.109512 0.054804999 0.109512 0.050276 0.126\n\t\t 0.050276 0.126 0.045942999 0.126 0.050276 0.109512 0.050276 0.109512 0.050276 0.109512\n\t\t 0.045942999 0.126 0.045942999 0.109512 0.045942999 0.109512 0.050276 0.092609003\n\t\t 0.050276 0.092609003 0.050276 0.092609003 0.045942999 0.109512 0.045942999 0.092609003\n\t\t 0.045942999 0.092609003 0.050276 0.075531997 0.050276 0.075531997 0.050276 0.075531997\n\t\t 0.045942999 0.092609003 0.045942999 0.075531997 0.045942999 0.075531997 0.050276\n\t\t 0.043738 0.050276 0.043738 0.050276 0.043738 0.045942999 0.075531997 0.045942999\n\t\t 0.043738 0.054804999 0.043738 0.050276 0.075531997 0.050276 0.075531997 0.050276\n\t\t 0.075531997 0.054804999 0.043738 0.054804999 0.075531997 0.054804999 0.075531997\n\t\t 0.050276 0.092609003 0.050276 0.092609003 0.050276 0.092609003 0.054804999 0.075531997\n\t\t 0.054804999 0.092609003 0.054804999 0.092609003 0.050276 0.109512 0.050276 0.109512\n\t\t 0.050276 0.109512 0.054804999 0.092609003 0.054804999 0.109512 0.054804999 0.109512\n\t\t 0.059604999 0.092609003 0.059604999 0.092609003 0.059604999 0.092609003 0.054804999\n\t\t 0.109512 0.054804999 0.092609003 0.054804999 0.092609003 0.059604999 0.075531997\n\t\t 0.059604999 0.075531997 0.059604999 0.075531997 0.054804999 0.092609003 0.054804999\n\t\t 0.075531997 0.054804999 0.075531997 0.059604999 0.043738 0.059604999 0.043738 0.059604999\n\t\t 0.043738 0.054804999 0.075531997 0.054804999 0.043738 0.064749002 0.043738 0.059604999\n\t\t 0.075531997 0.059604999 0.075531997 0.059604999 0.075531997 0.064749002 0.043738\n\t\t 0.064749002 0.075531997 0.064749002 0.075531997 0.059604999 0.092609003 0.059604999\n\t\t 0.092609003 0.059604999 0.092609003 0.064749002 0.075531997 0.064749002;\n\tsetAttr \".uvst[0].uvsp[29250:29499]\" 0.092609003 0.064749002 0.092609003 0.059604999\n\t\t 0.109512 0.059604999 0.109512 0.059604999 0.109512 0.064749002 0.092609003 0.064749002\n\t\t 0.092609003 0.070223004 0.092609003 0.064749002 0.109512 0.064749002 0.109512 0.064749002\n\t\t 0.109512 0.070223004 0.092609003 0.070223004 0.092609003 0.064749002 0.092609003\n\t\t 0.070223004 0.075531997 0.070223004 0.075531997 0.070223004 0.075531997 0.064749002\n\t\t 0.092609003 0.064749002 0.075531997 0.064749002 0.075531997 0.070223004 0.043738\n\t\t 0.070223004 0.043738 0.070223004 0.043738 0.064749002 0.075531997 0.064749002 0.043738\n\t\t 0.076016001 0.043738 0.070223004 0.075531997 0.070223004 0.075531997 0.070223004\n\t\t 0.075531997 0.076016001 0.043738 0.076016001 0.075531997 0.076016001 0.075531997\n\t\t 0.070223004 0.092609003 0.070223004 0.092609003 0.070223004 0.092609003 0.076016001\n\t\t 0.075531997 0.076016001 0.092609003 0.076016001 0.092609003 0.070223004 0.109512\n\t\t 0.070223004 0.109512 0.070223004 0.109512 0.076016001 0.092609003 0.076016001 0.092609003\n\t\t 0.08196 0.092609003 0.076016001 0.109512 0.076016001 0.109512 0.076016001 0.109512\n\t\t 0.08196 0.092609003 0.08196 0.092609003 0.076016001 0.092609003 0.08196 0.075531997\n\t\t 0.08196 0.075531997 0.08196 0.075531997 0.076016001 0.092609003 0.076016001 0.075531997\n\t\t 0.076016001 0.075531997 0.08196 0.043738 0.08196 0.043738 0.08196 0.043738 0.076016001\n\t\t 0.075531997 0.076016001 0.043738 0.087775998 0.043738 0.08196 0.075531997 0.08196\n\t\t 0.075531997 0.08196 0.075531997 0.087775998 0.043738 0.087775998 0.075531997 0.087775998\n\t\t 0.075531997 0.08196 0.092609003 0.08196 0.092609003 0.08196 0.092609003 0.087775998\n\t\t 0.075531997 0.087775998 0.092609003 0.087775998 0.092609003 0.08196 0.109512 0.08196\n\t\t 0.109512 0.08196 0.109512 0.087775998 0.092609003 0.087775998 0.092991002 0.093570001\n\t\t 0.092609003 0.087775998 0.109512 0.087775998 0.109512 0.087775998 0.109479 0.093572997\n\t\t 0.075910002 0.093566 0.075531997 0.087775998 0.092609003 0.087775998 0.092609003\n\t\t 0.087775998 0.092583999 0.093567997 0.075910002 0.093566 0.043738 0.076016001 0.043738\n\t\t 0.08196 0.016646 0.08196 0.016646 0.08196 0.043738 0.08196 0.043738 0.087775998 0.043738\n\t\t 0.087775998 0.016646 0.087775998 0.016646 0.08196 0.016646 0.08196 0.016646 0.087775998\n\t\t 0.0034680001 0.087775998 0.0034680001 0.087775998 0.0034680001 0.08196 0.016646 0.08196\n\t\t 0.016646 0.08196 0.0034680001 0.08196 0.0034680001 0.076016001 0.0034680001 0.076016001\n\t\t 0.016646 0.076016001 0.016646 0.08196 0.016646 0.070223004 0.016646 0.076016001 0.0034680001\n\t\t 0.076016001 0.0034680001 0.076016001 0.0034680001 0.070223004 0.016646 0.070223004\n\t\t 0.016646 0.070223004 0.0034680001 0.070223004 0.0034680001 0.064749002 0.0034680001\n\t\t 0.064749002 0.016646 0.064749002 0.016646 0.070223004 0.016646 0.059604999 0.016646\n\t\t 0.064749002 0.0034680001 0.064749002 0.0034680001 0.064749002 0.0034680001 0.059604999\n\t\t 0.016646 0.059604999 0.016646 0.059604999 0.0034680001 0.059604999 0.0034680001 0.054804999\n\t\t 0.0034680001 0.054804999 0.016646 0.054804999 0.016646 0.059604999 0.016646 0.050276\n\t\t 0.016646 0.054804999 0.0034680001 0.054804999 0.0034680001 0.054804999 0.0034680001\n\t\t 0.050276 0.016646 0.050276 0.016646 0.050276 0.0034680001 0.050276 0.0034680001 0.045942999\n\t\t 0.0034680001 0.045942999 0.016646 0.045942999 0.016646 0.050276 0.016646 0.050276\n\t\t 0.016646 0.045942999 0.043738 0.045942999 0.043738 0.045942999 0.043738 0.050276\n\t\t 0.016646 0.050276 0.016646 0.050276 0.043738 0.050276 0.043738 0.054804999 0.043738\n\t\t 0.054804999 0.016646 0.054804999 0.016646 0.050276 0.016646 0.059604999 0.016646\n\t\t 0.054804999 0.043738 0.054804999 0.043738 0.054804999 0.043738 0.059604999 0.016646\n\t\t 0.059604999 0.016646 0.059604999 0.043738 0.059604999 0.043738 0.064749002 0.043738\n\t\t 0.064749002 0.016646 0.064749002 0.016646 0.059604999 0.016646 0.070223004 0.016646\n\t\t 0.064749002 0.043738 0.064749002 0.043738 0.064749002 0.043738 0.070223004 0.016646\n\t\t 0.070223004 0.016646 0.070223004 0.043738 0.070223004 0.043738 0.076016001 0.043738\n\t\t 0.076016001 0.016646 0.076016001 0.016646 0.070223004 0.016646 0.08196 0.016646 0.076016001\n\t\t 0.043738 0.076016001 0.016646 0.041602999 0.016646 0.045942999 0.0034680001 0.045942999\n\t\t 0.0034680001 0.045942999 0.0034680001 0.041602999 0.016646 0.041602999 0.016646 0.041602999\n\t\t 0.0034680001 0.041602999 0.0034680001 0.037030999 0.0034680001 0.037030999 0.016646\n\t\t 0.037030999 0.016646 0.041602999 0.016646 0.032191999 0.016646 0.037030999 0.0034680001\n\t\t 0.037030999 0.0034680001 0.037030999 0.0034680001 0.032191999 0.016646 0.032191999\n\t\t 0.016646 0.032191999 0.0034680001 0.032191999 0.0034680001 0.026961001 0.0034680001\n\t\t 0.026961001 0.016646 0.026961001 0.016646 0.032191999 0.016646 0.021309 0.016646\n\t\t 0.026961001 0.0034680001 0.026961001 0.0034680001 0.026961001 0.0034680001 0.021309\n\t\t 0.016646 0.021309 0.016646 0.021309 0.0034680001 0.021309 0.0034680001 0.015355 0.0034680001\n\t\t 0.015355 0.016646 0.015355 0.016646 0.021309 0.016646 0.0093700001 0.016646 0.015355\n\t\t 0.0034680001 0.015355 0.0034680001 0.015355 0.0034680001 0.0093700001 0.016646 0.0093700001\n\t\t 0.043738 0.015355 0.016646 0.015355 0.016646 0.0093700001 0.016646 0.021309 0.016646\n\t\t 0.015355 0.043738 0.015355 0.016646 0.0093700001 0.043738 0.0093700001 0.043738 0.015355\n\t\t 0.043738 0.015355 0.043738 0.0093700001 0.075531997 0.0093700001 0.075531997 0.0093700001\n\t\t 0.075531997 0.015355 0.043738 0.015355 0.075531997 0.015355 0.075531997 0.0093700001\n\t\t 0.092609003 0.0093700001 0.092609003 0.0093700001 0.092609003 0.015355 0.075531997\n\t\t 0.015355 0.092609003 0.015355 0.092609003 0.0093700001;\n\tsetAttr \".uvst[0].uvsp[29500:29749]\" 0.109512 0.0093700001 0.109512 0.0093700001\n\t\t 0.109512 0.015355 0.092609003 0.015355 0.109512 0.015355 0.109512 0.0093700001 0.126\n\t\t 0.0093700001 0.126 0.0093700001 0.126 0.015355 0.109512 0.015355 0.126 0.015355 0.126\n\t\t 0.0093700001 0.14243101 0.0093700001 0.14243101 0.0093700001 0.14243101 0.015355\n\t\t 0.126 0.015355 0.14243101 0.015355 0.14243101 0.0093700001 0.159236 0.0093700001\n\t\t 0.159236 0.0093700001 0.159236 0.015355 0.14243101 0.015355 0.159236 0.015355 0.159236\n\t\t 0.0093700001 0.17641 0.0093700001 0.17641 0.0093700001 0.17641 0.015355 0.159236\n\t\t 0.015355 0.17641 0.015355 0.17641 0.0093700001 0.193698 0.0093700001 0.193698 0.0093700001\n\t\t 0.193698 0.015355 0.17641 0.015355 0.193698 0.015355 0.193698 0.0093700001 0.21060701\n\t\t 0.0093700001 0.21060701 0.0093700001 0.21060701 0.015355 0.193698 0.015355 0.21060701\n\t\t 0.015355 0.21060701 0.0093700001 0.22657999 0.0093700001 0.22657999 0.0093700001\n\t\t 0.22657999 0.015355 0.21060701 0.015355 0.22657999 0.015355 0.22657999 0.0093700001\n\t\t 0.241256 0.0093700001 0.241256 0.0093700001 0.241256 0.015355 0.22657999 0.015355\n\t\t 0.241256 0.015355 0.241256 0.0093700001 0.254612 0.0093700001 0.254612 0.0093700001\n\t\t 0.254612 0.015355 0.241256 0.015355 0.254612 0.015355 0.254612 0.0093700001 0.26699799\n\t\t 0.0093700001 0.26699799 0.0093700001 0.26699799 0.015355 0.254612 0.015355 0.26699799\n\t\t 0.015355 0.26699799 0.0093700001 0.279039 0.0093700001 0.279039 0.0093700001 0.279039\n\t\t 0.015355 0.26699799 0.015355 0.279039 0.015355 0.279039 0.0093700001 0.29161799 0.0093700001\n\t\t 0.29161799 0.0093700001 0.29161799 0.015355 0.279039 0.015355 0.29161799 0.015355\n\t\t 0.29161799 0.0093700001 0.30583301 0.0093700001 0.30583301 0.0093700001 0.30583301\n\t\t 0.015355 0.29161799 0.015355 0.29161799 0.021309 0.29161799 0.015355 0.30583301 0.015355\n\t\t 0.30583301 0.015355 0.30583301 0.021309 0.29161799 0.021309 0.29161799 0.015355 0.29161799\n\t\t 0.021309 0.279039 0.021309 0.279039 0.021309 0.279039 0.015355 0.29161799 0.015355\n\t\t 0.279039 0.015355 0.279039 0.021309 0.26699799 0.021309 0.26699799 0.021309 0.26699799\n\t\t 0.015355 0.279039 0.015355 0.26699799 0.015355 0.26699799 0.021309 0.254612 0.021309\n\t\t 0.254612 0.021309 0.254612 0.015355 0.26699799 0.015355 0.254612 0.026961001 0.254612\n\t\t 0.021309 0.26699799 0.021309 0.26699799 0.021309 0.26699799 0.026961001 0.254612\n\t\t 0.026961001 0.26699799 0.026961001 0.26699799 0.021309 0.279039 0.021309 0.279039\n\t\t 0.021309 0.279039 0.026961001 0.26699799 0.026961001 0.279039 0.026961001 0.279039\n\t\t 0.021309 0.29161799 0.021309 0.29161799 0.021309 0.29161799 0.026961001 0.279039\n\t\t 0.026961001 0.29161799 0.026961001 0.29161799 0.021309 0.30583301 0.021309 0.30583301\n\t\t 0.021309 0.30583301 0.026961001 0.29161799 0.026961001 0.29161799 0.032191999 0.29161799\n\t\t 0.026961001 0.30583301 0.026961001 0.30583301 0.026961001 0.30583301 0.032191999\n\t\t 0.29161799 0.032191999 0.29161799 0.026961001 0.29161799 0.032191999 0.279039 0.032191999\n\t\t 0.279039 0.032191999 0.279039 0.026961001 0.29161799 0.026961001 0.279039 0.026961001\n\t\t 0.279039 0.032191999 0.26699799 0.032191999 0.26699799 0.032191999 0.26699799 0.026961001\n\t\t 0.279039 0.026961001 0.26699799 0.026961001 0.26699799 0.032191999 0.254612 0.032191999\n\t\t 0.254612 0.032191999 0.254612 0.026961001 0.26699799 0.026961001 0.254612 0.037030999\n\t\t 0.254612 0.032191999 0.26699799 0.032191999 0.26699799 0.032191999 0.26699799 0.037030999\n\t\t 0.254612 0.037030999 0.26699799 0.037030999 0.26699799 0.032191999 0.279039 0.032191999\n\t\t 0.279039 0.032191999 0.279039 0.037030999 0.26699799 0.037030999 0.279039 0.037030999\n\t\t 0.279039 0.032191999 0.29161799 0.032191999 0.29161799 0.032191999 0.29161799 0.037030999\n\t\t 0.279039 0.037030999 0.29161799 0.037030999 0.29161799 0.032191999 0.30583301 0.032191999\n\t\t 0.30583301 0.032191999 0.30583301 0.037030999 0.29161799 0.037030999 0.29161799 0.041602999\n\t\t 0.29161799 0.037030999 0.30583301 0.037030999 0.30583301 0.037030999 0.30583301 0.041602999\n\t\t 0.29161799 0.041602999 0.29161799 0.037030999 0.29161799 0.041602999 0.279039 0.041602999\n\t\t 0.279039 0.041602999 0.279039 0.037030999 0.29161799 0.037030999 0.279039 0.037030999\n\t\t 0.279039 0.041602999 0.26699799 0.041602999 0.26699799 0.041602999 0.26699799 0.037030999\n\t\t 0.279039 0.037030999 0.26699799 0.037030999 0.26699799 0.041602999 0.254612 0.041602999\n\t\t 0.254612 0.041602999 0.254612 0.037030999 0.26699799 0.037030999 0.254612 0.045942999\n\t\t 0.254612 0.041602999 0.26699799 0.041602999 0.26699799 0.041602999 0.26699799 0.045942999\n\t\t 0.254612 0.045942999 0.26699799 0.045942999 0.26699799 0.041602999 0.279039 0.041602999\n\t\t 0.279039 0.041602999 0.279039 0.045942999 0.26699799 0.045942999 0.279039 0.045942999\n\t\t 0.279039 0.041602999 0.29161799 0.041602999 0.29161799 0.041602999 0.29161799 0.045942999\n\t\t 0.279039 0.045942999 0.29161799 0.045942999 0.29161799 0.041602999 0.30583301 0.041602999\n\t\t 0.30583301 0.041602999 0.30583301 0.045942999 0.29161799 0.045942999 0.254612 0.032191999\n\t\t 0.254612 0.037030999 0.241256 0.037030999 0.254612 0.037030999 0.254612 0.041602999\n\t\t 0.241256 0.041602999 0.241256 0.041602999 0.241256 0.037030999 0.254612 0.037030999\n\t\t 0.241256 0.037030999 0.241256 0.041602999 0.22657999 0.041602999 0.22657999 0.041602999\n\t\t 0.22657999 0.037030999 0.241256 0.037030999 0.241256 0.032191999 0.241256 0.037030999\n\t\t 0.22657999 0.037030999 0.22657999 0.037030999 0.22657999 0.032191999 0.241256 0.032191999\n\t\t 0.241256 0.026961001 0.241256 0.032191999 0.22657999 0.032191999;\n\tsetAttr \".uvst[0].uvsp[29750:29999]\" 0.241256 0.032191999 0.241256 0.026961001\n\t\t 0.254612 0.026961001 0.254612 0.021309 0.254612 0.026961001 0.241256 0.026961001\n\t\t 0.241256 0.026961001 0.241256 0.021309 0.254612 0.021309 0.254612 0.015355 0.254612\n\t\t 0.021309 0.241256 0.021309 0.241256 0.021309 0.241256 0.015355 0.254612 0.015355\n\t\t 0.241256 0.015355 0.241256 0.021309 0.22657999 0.021309 0.22657999 0.021309 0.22657999\n\t\t 0.015355 0.241256 0.015355 0.22657999 0.015355 0.22657999 0.021309 0.21060701 0.021309\n\t\t 0.21060701 0.021309 0.21060701 0.015355 0.22657999 0.015355 0.21060701 0.015355 0.21060701\n\t\t 0.021309 0.193698 0.021309 0.193698 0.021309 0.193698 0.015355 0.21060701 0.015355\n\t\t 0.193698 0.026961001 0.193698 0.021309 0.21060701 0.021309 0.21060701 0.021309 0.21060701\n\t\t 0.026961001 0.193698 0.026961001 0.21060701 0.026961001 0.21060701 0.021309 0.22657999\n\t\t 0.021309 0.22657999 0.021309 0.22657999 0.026961001 0.21060701 0.026961001 0.22657999\n\t\t 0.026961001 0.22657999 0.021309 0.241256 0.021309 0.241256 0.021309 0.241256 0.026961001\n\t\t 0.22657999 0.026961001 0.22657999 0.032191999 0.22657999 0.026961001 0.241256 0.026961001\n\t\t 0.22657999 0.026961001 0.22657999 0.032191999 0.21060701 0.032191999 0.21060701 0.032191999\n\t\t 0.21060701 0.026961001 0.22657999 0.026961001 0.21060701 0.026961001 0.21060701 0.032191999\n\t\t 0.193698 0.032191999 0.193698 0.032191999 0.193698 0.026961001 0.21060701 0.026961001\n\t\t 0.193698 0.037030999 0.193698 0.032191999 0.21060701 0.032191999 0.21060701 0.032191999\n\t\t 0.21060701 0.037030999 0.193698 0.037030999 0.21060701 0.037030999 0.21060701 0.032191999\n\t\t 0.22657999 0.032191999 0.22657999 0.032191999 0.22657999 0.037030999 0.21060701 0.037030999\n\t\t 0.21060701 0.041602999 0.21060701 0.037030999 0.22657999 0.037030999 0.22657999 0.037030999\n\t\t 0.22657999 0.041602999 0.21060701 0.041602999 0.21060701 0.037030999 0.21060701 0.041602999\n\t\t 0.193698 0.041602999 0.193698 0.041602999 0.193698 0.037030999 0.21060701 0.037030999\n\t\t 0.193698 0.045942999 0.193698 0.041602999 0.21060701 0.041602999 0.21060701 0.041602999\n\t\t 0.21060701 0.045942999 0.193698 0.045942999 0.21060701 0.045942999 0.21060701 0.041602999\n\t\t 0.22657999 0.041602999 0.22657999 0.041602999 0.22657999 0.045942999 0.21060701 0.045942999\n\t\t 0.22657999 0.045942999 0.22657999 0.041602999 0.241256 0.041602999 0.241256 0.041602999\n\t\t 0.241256 0.045942999 0.22657999 0.045942999 0.241256 0.045942999 0.241256 0.041602999\n\t\t 0.254612 0.041602999 0.254612 0.041602999 0.254612 0.045942999 0.241256 0.045942999\n\t\t 0.193698 0.032191999 0.193698 0.037030999 0.17641 0.037030999 0.17641 0.037030999\n\t\t 0.17641 0.032191999 0.193698 0.032191999 0.193698 0.026961001 0.193698 0.032191999\n\t\t 0.17641 0.032191999 0.17641 0.032191999 0.17641 0.026961001 0.193698 0.026961001\n\t\t 0.193698 0.021309 0.193698 0.026961001 0.17641 0.026961001 0.17641 0.026961001 0.17641\n\t\t 0.021309 0.193698 0.021309 0.193698 0.015355 0.193698 0.021309 0.17641 0.021309 0.17641\n\t\t 0.021309 0.17641 0.015355 0.193698 0.015355 0.17641 0.015355 0.17641 0.021309 0.159236\n\t\t 0.021309 0.159236 0.021309 0.159236 0.015355 0.17641 0.015355 0.159236 0.015355 0.159236\n\t\t 0.021309 0.14243101 0.021309 0.14243101 0.021309 0.14243101 0.015355 0.159236 0.015355\n\t\t 0.14243101 0.015355 0.14243101 0.021309 0.126 0.021309 0.126 0.021309 0.126 0.015355\n\t\t 0.14243101 0.015355 0.126 0.026961001 0.126 0.021309 0.14243101 0.021309 0.14243101\n\t\t 0.021309 0.14243101 0.026961001 0.126 0.026961001 0.14243101 0.026961001 0.14243101\n\t\t 0.021309 0.159236 0.021309 0.159236 0.021309 0.159236 0.026961001 0.14243101 0.026961001\n\t\t 0.159236 0.026961001 0.159236 0.021309 0.17641 0.021309 0.17641 0.021309 0.17641\n\t\t 0.026961001 0.159236 0.026961001 0.159236 0.032191999 0.159236 0.026961001 0.17641\n\t\t 0.026961001 0.17641 0.026961001 0.17641 0.032191999 0.159236 0.032191999 0.159236\n\t\t 0.026961001 0.159236 0.032191999 0.14243101 0.032191999 0.14243101 0.032191999 0.14243101\n\t\t 0.026961001 0.159236 0.026961001 0.14243101 0.026961001 0.14243101 0.032191999 0.126\n\t\t 0.032191999 0.126 0.032191999 0.126 0.026961001 0.14243101 0.026961001 0.126 0.037030999\n\t\t 0.126 0.032191999 0.14243101 0.032191999 0.14243101 0.032191999 0.14243101 0.037030999\n\t\t 0.126 0.037030999 0.14243101 0.037030999 0.14243101 0.032191999 0.159236 0.032191999\n\t\t 0.159236 0.032191999 0.159236 0.037030999 0.14243101 0.037030999 0.159236 0.037030999\n\t\t 0.159236 0.032191999 0.17641 0.032191999 0.17641 0.032191999 0.17641 0.037030999\n\t\t 0.159236 0.037030999 0.159236 0.041602999 0.159236 0.037030999 0.17641 0.037030999\n\t\t 0.17641 0.037030999 0.17641 0.041602999 0.159236 0.041602999 0.17641 0.041602999\n\t\t 0.17641 0.037030999 0.193698 0.037030999 0.193698 0.037030999 0.193698 0.041602999\n\t\t 0.17641 0.041602999 0.159236 0.037030999 0.159236 0.041602999 0.14243101 0.041602999\n\t\t 0.14243101 0.041602999 0.14243101 0.037030999 0.159236 0.037030999 0.14243101 0.037030999\n\t\t 0.14243101 0.041602999 0.126 0.041602999 0.126 0.041602999 0.126 0.037030999 0.14243101\n\t\t 0.037030999 0.126 0.045942999 0.126 0.041602999 0.14243101 0.041602999 0.14243101\n\t\t 0.041602999 0.14243101 0.045942999 0.126 0.045942999 0.14243101 0.045942999 0.14243101\n\t\t 0.041602999 0.159236 0.041602999 0.159236 0.041602999 0.159236 0.045942999 0.14243101\n\t\t 0.045942999 0.159236 0.045942999 0.159236 0.041602999 0.17641 0.041602999 0.17641\n\t\t 0.041602999;\n\tsetAttr \".uvst[0].uvsp[30000:30249]\" 0.17641 0.045942999 0.159236 0.045942999 0.17641\n\t\t 0.045942999 0.17641 0.041602999 0.193698 0.041602999 0.193698 0.041602999 0.193698\n\t\t 0.045942999 0.17641 0.045942999 0.126 0.032191999 0.126 0.037030999 0.109512 0.037030999\n\t\t 0.126 0.037030999 0.126 0.041602999 0.109512 0.041602999 0.109512 0.041602999 0.109512\n\t\t 0.037030999 0.126 0.037030999 0.109512 0.037030999 0.109512 0.041602999 0.092609003\n\t\t 0.041602999 0.092609003 0.041602999 0.092609003 0.037030999 0.109512 0.037030999\n\t\t 0.109512 0.032191999 0.109512 0.037030999 0.092609003 0.037030999 0.092609003 0.037030999\n\t\t 0.092609003 0.032191999 0.109512 0.032191999 0.109512 0.026961001 0.109512 0.032191999\n\t\t 0.092609003 0.032191999 0.109512 0.032191999 0.109512 0.026961001 0.126 0.026961001\n\t\t 0.126 0.021309 0.126 0.026961001 0.109512 0.026961001 0.109512 0.026961001 0.109512\n\t\t 0.021309 0.126 0.021309 0.126 0.015355 0.126 0.021309 0.109512 0.021309 0.109512\n\t\t 0.021309 0.109512 0.015355 0.126 0.015355 0.109512 0.015355 0.109512 0.021309 0.092609003\n\t\t 0.021309 0.092609003 0.021309 0.092609003 0.015355 0.109512 0.015355 0.092609003\n\t\t 0.015355 0.092609003 0.021309 0.075531997 0.021309 0.075531997 0.021309 0.075531997\n\t\t 0.015355 0.092609003 0.015355 0.075531997 0.015355 0.075531997 0.021309 0.043738\n\t\t 0.021309 0.043738 0.021309 0.043738 0.015355 0.075531997 0.015355 0.043738 0.026961001\n\t\t 0.043738 0.021309 0.075531997 0.021309 0.075531997 0.021309 0.075531997 0.026961001\n\t\t 0.043738 0.026961001 0.075531997 0.026961001 0.075531997 0.021309 0.092609003 0.021309\n\t\t 0.092609003 0.021309 0.092609003 0.026961001 0.075531997 0.026961001 0.092609003\n\t\t 0.026961001 0.092609003 0.021309 0.109512 0.021309 0.109512 0.021309 0.109512 0.026961001\n\t\t 0.092609003 0.026961001 0.092609003 0.032191999 0.092609003 0.026961001 0.109512\n\t\t 0.026961001 0.092609003 0.026961001 0.092609003 0.032191999 0.075531997 0.032191999\n\t\t 0.075531997 0.032191999 0.075531997 0.026961001 0.092609003 0.026961001 0.075531997\n\t\t 0.026961001 0.075531997 0.032191999 0.043738 0.032191999 0.043738 0.032191999 0.043738\n\t\t 0.026961001 0.075531997 0.026961001 0.043738 0.037030999 0.043738 0.032191999 0.075531997\n\t\t 0.032191999 0.075531997 0.032191999 0.075531997 0.037030999 0.043738 0.037030999\n\t\t 0.075531997 0.037030999 0.075531997 0.032191999 0.092609003 0.032191999 0.092609003\n\t\t 0.032191999 0.092609003 0.037030999 0.075531997 0.037030999 0.075531997 0.041602999\n\t\t 0.075531997 0.037030999 0.092609003 0.037030999 0.092609003 0.037030999 0.092609003\n\t\t 0.041602999 0.075531997 0.041602999 0.075531997 0.037030999 0.075531997 0.041602999\n\t\t 0.043738 0.041602999 0.043738 0.041602999 0.043738 0.037030999 0.075531997 0.037030999\n\t\t 0.043738 0.045942999 0.043738 0.041602999 0.075531997 0.041602999 0.075531997 0.041602999\n\t\t 0.075531997 0.045942999 0.043738 0.045942999 0.075531997 0.045942999 0.075531997\n\t\t 0.041602999 0.092609003 0.041602999 0.092609003 0.041602999 0.092609003 0.045942999\n\t\t 0.075531997 0.045942999 0.092609003 0.045942999 0.092609003 0.041602999 0.109512\n\t\t 0.041602999 0.109512 0.041602999 0.109512 0.045942999 0.092609003 0.045942999 0.109512\n\t\t 0.045942999 0.109512 0.041602999 0.126 0.041602999 0.126 0.041602999 0.126 0.045942999\n\t\t 0.109512 0.045942999 0.016646 0.032191999 0.043738 0.032191999 0.043738 0.037030999\n\t\t 0.043738 0.026961001 0.043738 0.032191999 0.016646 0.032191999 0.016646 0.032191999\n\t\t 0.016646 0.026961001 0.043738 0.026961001 0.043738 0.026961001 0.016646 0.026961001\n\t\t 0.016646 0.021309 0.016646 0.021309 0.043738 0.021309 0.043738 0.026961001 0.043738\n\t\t 0.015355 0.043738 0.021309 0.016646 0.021309 0.043738 0.041602999 0.043738 0.045942999\n\t\t 0.016646 0.045942999 0.016646 0.045942999 0.016646 0.041602999 0.043738 0.041602999\n\t\t 0.043738 0.037030999 0.043738 0.041602999 0.016646 0.041602999 0.043738 0.037030999\n\t\t 0.016646 0.037030999 0.016646 0.032191999 0.016646 0.041602999 0.016646 0.037030999\n\t\t 0.043738 0.037030999 0.30583301 0.087775998 0.305805 0.093561999 0.292052 0.093355998\n\t\t 0.292052 0.093355998 0.29161799 0.087775998 0.30583301 0.087775998 0.254612 0.087775998\n\t\t 0.254513 0.093512997 0.241579 0.093621999 0.241579 0.093621999 0.241256 0.087775998\n\t\t 0.254612 0.087775998 0.254612 0.026961001 0.254612 0.032191999 0.241256 0.032191999\n\t\t 0.241256 0.037030999 0.241256 0.032191999 0.254612 0.032191999 0.193698 0.087775998\n\t\t 0.19365899 0.093556002 0.176817 0.093567997 0.176817 0.093567997 0.17641 0.087775998\n\t\t 0.193698 0.087775998 0.126 0.087775998 0.125967 0.093579002 0.109894 0.093583003\n\t\t 0.109894 0.093583003 0.109512 0.087775998 0.126 0.087775998 0.075531997 0.087775998\n\t\t 0.075515002 0.093566 0.045396999 0.095196001 0.045396999 0.095196001 0.044558 0.089449003\n\t\t 0.075531997 0.087775998 0.126 0.026961001 0.126 0.032191999 0.109512 0.032191999\n\t\t 0.109512 0.037030999 0.109512 0.032191999 0.126 0.032191999 0.043738 0.087775998\n\t\t 0.043703999 0.093567997 0.016774001 0.093561999 0.016774001 0.093561999 0.016646\n\t\t 0.087775998 0.043738 0.087775998 0.0034680001 0.087775998 0.016646 0.087775998 0.016619001\n\t\t 0.093566 0.016619001 0.093566 0.0035880001 0.093555003 0.0034680001 0.087775998 0.43294501\n\t\t 0.064749002 0.43294501 0.070223004 0.42699501 0.070735 0.42630199 0.076339997 0.42699501\n\t\t 0.070735 0.43294501 0.070223004 0.42699501 0.070735 0.42630199 0.076339997 0.42016399\n\t\t 0.076453 0.43294501 0.070223004 0.43294501 0.076016001 0.42630199 0.076339997 0.42555699\n\t\t 0.082094997 0.42630199 0.076339997 0.43294501 0.076016001 0.43294501 0.076016001\n\t\t 0.43294501 0.08196;\n\tsetAttr \".uvst[0].uvsp[30250:30499]\" 0.42555699 0.082094997 0.42630199 0.076339997\n\t\t 0.42555699 0.082094997 0.41886899 0.082186997 0.41886899 0.082186997 0.42016399 0.076453\n\t\t 0.42630199 0.076339997 0.417613 0.087917998 0.41886899 0.082186997 0.42555699 0.082094997\n\t\t 0.42555699 0.082094997 0.42484999 0.087856002 0.417613 0.087917998 0.42484999 0.087856002\n\t\t 0.42555699 0.082094997 0.43294501 0.08196 0.43294501 0.08196 0.43294501 0.087775998\n\t\t 0.42484999 0.087856002 0.43277499 0.003798 0.43294501 0.0093700001 0.42455399 0.0092390003\n\t\t 0.42455399 0.0092390003 0.424622 0.003821 0.43277499 0.003798 0.42473999 0.014725\n\t\t 0.42455399 0.0092390003 0.43294501 0.0093700001 0.42455399 0.0092390003 0.42473999\n\t\t 0.014725 0.41766399 0.014793 0.41766399 0.014793 0.41718301 0.0093139997 0.42455399\n\t\t 0.0092390003 0.42435399 0.003817 0.42455399 0.0092390003 0.41718301 0.0093139997\n\t\t 0.41718301 0.0093139997 0.41690201 0.0037380001 0.42435399 0.003817 0.43294501 0.0093700001\n\t\t 0.43294501 0.015355 0.42473999 0.014725 0.42512301 0.020093 0.42473999 0.014725 0.43294501\n\t\t 0.015355 0.43294501 0.015355 0.43294501 0.021309 0.42512301 0.020093 0.42473999 0.014725\n\t\t 0.42512301 0.020093 0.41840601 0.020026 0.41840601 0.020026 0.41766399 0.014793 0.42473999\n\t\t 0.014725 0.41938901 0.025082 0.41840601 0.020026 0.42512301 0.020093 0.42512301 0.020093\n\t\t 0.42563999 0.025319999 0.41938901 0.025082 0.42563999 0.025319999 0.42512301 0.020093\n\t\t 0.43294501 0.021309 0.43294501 0.021309 0.43294501 0.026961001 0.42563999 0.025319999\n\t\t 0.426276 0.030410999 0.42563999 0.025319999 0.43294501 0.026961001 0.43294501 0.026961001\n\t\t 0.43294501 0.032191999 0.426276 0.030410999 0.42563999 0.025319999 0.426276 0.030410999\n\t\t 0.42055601 0.030095 0.42055601 0.030095 0.41938901 0.025082 0.42563999 0.025319999\n\t\t 0.42175999 0.035145 0.42055601 0.030095 0.426276 0.030410999 0.426276 0.030410999\n\t\t 0.42693499 0.035475999 0.42175999 0.035145 0.42693499 0.035475999 0.426276 0.030410999\n\t\t 0.43294501 0.032191999 0.43294501 0.032191999 0.43294501 0.037030999 0.42693499 0.035475999\n\t\t 0.42754 0.040523 0.42693499 0.035475999 0.43294501 0.037030999 0.43294501 0.037030999\n\t\t 0.43294501 0.041602999 0.42754 0.040523 0.42693499 0.035475999 0.42754 0.040523 0.422833\n\t\t 0.040265001 0.422833 0.040265001 0.42175999 0.035145 0.42693499 0.035475999 0.42800301\n\t\t 0.045513 0.42754 0.040523 0.43294501 0.041602999 0.43294501 0.041602999 0.43294501\n\t\t 0.045942999 0.42800301 0.045513 0.40886 0.046415001 0.40903601 0.051438 0.40213001\n\t\t 0.051681999 0.40213001 0.051681999 0.40198299 0.046629 0.40886 0.046415001 0.40198299\n\t\t 0.046629 0.40213001 0.051681999 0.39339501 0.051739 0.39339501 0.051739 0.39327201\n\t\t 0.046634 0.40198299 0.046629 0.39327201 0.046634 0.39339501 0.051739 0.38257799 0.051577002\n\t\t 0.38257799 0.051577002 0.382476 0.046404 0.39327201 0.046634 0.382476 0.046404 0.38257799\n\t\t 0.051577002 0.36937699 0.051325999 0.36937699 0.051325999 0.36929101 0.046091001\n\t\t 0.382476 0.046404 0.36935699 0.056474 0.36937699 0.051325999 0.38257799 0.051577002\n\t\t 0.38257799 0.051577002 0.38248599 0.056637999 0.36935699 0.056474 0.38248599 0.056637999\n\t\t 0.38257799 0.051577002 0.39339501 0.051739 0.39339501 0.051739 0.39321899 0.056722\n\t\t 0.38248599 0.056637999 0.39321899 0.056722 0.39339501 0.051739 0.40213001 0.051681999\n\t\t 0.40213001 0.051681999 0.40187401 0.056623999 0.39321899 0.056722 0.40187401 0.056623999\n\t\t 0.40213001 0.051681999 0.40903601 0.051438 0.40903601 0.051438 0.40872899 0.056370001\n\t\t 0.40187401 0.056623999 0.40121701 0.061489001 0.40187401 0.056623999 0.40872899 0.056370001\n\t\t 0.40872899 0.056370001 0.40795401 0.061230998 0.40121701 0.061489001 0.40187401 0.056623999\n\t\t 0.40121701 0.061489001 0.392737 0.061636999 0.392737 0.061636999 0.39321899 0.056722\n\t\t 0.40187401 0.056623999 0.39321899 0.056722 0.392737 0.061636999 0.38219401 0.061654001\n\t\t 0.38219401 0.061654001 0.38248599 0.056637999 0.39321899 0.056722 0.38248599 0.056637999\n\t\t 0.38219401 0.061654001 0.36922699 0.061606999 0.36922699 0.061606999 0.36935699 0.056474\n\t\t 0.38248599 0.056637999 0.36903101 0.066811003 0.36922699 0.061606999 0.38219401 0.061654001\n\t\t 0.38219401 0.061654001 0.381758 0.066737004 0.36903101 0.066811003 0.381758 0.066737004\n\t\t 0.38219401 0.061654001 0.392737 0.061636999 0.392737 0.061636999 0.39202401 0.066609003\n\t\t 0.381758 0.066737004 0.39202401 0.066609003 0.392737 0.061636999 0.40121701 0.061489001\n\t\t 0.40121701 0.061489001 0.40025201 0.066400997 0.39202401 0.066609003 0.40025201 0.066400997\n\t\t 0.40121701 0.061489001 0.40795401 0.061230998 0.40795401 0.061230998 0.40681201 0.066137001\n\t\t 0.40025201 0.066400997 0.39912 0.071486004 0.40025201 0.066400997 0.40681201 0.066137001\n\t\t 0.40681201 0.066137001 0.40545499 0.071220003 0.39912 0.071486004 0.40025201 0.066400997\n\t\t 0.39912 0.071486004 0.39120999 0.071745999 0.39120999 0.071745999 0.39202401 0.066609003\n\t\t 0.40025201 0.066400997 0.39202401 0.066609003 0.39120999 0.071745999 0.38128901 0.071960002\n\t\t 0.38128901 0.071960002 0.381758 0.066737004 0.39202401 0.066609003 0.381758 0.066737004\n\t\t 0.38128901 0.071960002 0.368866 0.072120003 0.368866 0.072120003 0.36903101 0.066811003\n\t\t 0.381758 0.066737004 0.368783 0.077486999 0.368866 0.072120003 0.38128901 0.071960002\n\t\t 0.38128901 0.071960002 0.38088599 0.077299997 0.368783 0.077486999 0.38088599 0.077299997\n\t\t 0.38128901 0.071960002 0.39120999 0.071745999 0.39120999 0.071745999 0.39043501 0.077062003\n\t\t 0.38088599 0.077299997 0.39043501 0.077062003 0.39120999 0.071745999 0.39912 0.071486004\n\t\t 0.39912 0.071486004 0.398 0.076793 0.39043501 0.077062003 0.398 0.076793 0.39912\n\t\t 0.071486004 0.40545499 0.071220003;\n\tsetAttr \".uvst[0].uvsp[30500:30749]\" 0.40545499 0.071220003 0.40407601 0.076543003\n\t\t 0.398 0.076793 0.39704999 0.082292996 0.398 0.076793 0.40407601 0.076543003 0.40407601\n\t\t 0.076543003 0.40284401 0.082107 0.39704999 0.082292996 0.398 0.076793 0.39704999\n\t\t 0.082292996 0.38984299 0.082491003 0.38984299 0.082491003 0.39043501 0.077062003\n\t\t 0.398 0.076793 0.39043501 0.077062003 0.38984299 0.082491003 0.380674 0.082663 0.380674\n\t\t 0.082663 0.38088599 0.077299997 0.39043501 0.077062003 0.38088599 0.077299997 0.380674\n\t\t 0.082663 0.36890599 0.08281 0.36890599 0.08281 0.368783 0.077486999 0.38088599 0.077299997\n\t\t 0.36934501 0.088055 0.36890599 0.08281 0.380674 0.082663 0.380674 0.082663 0.38062599\n\t\t 0.088005997 0.36934501 0.088055 0.38062599 0.088005997 0.380674 0.082663 0.38984299\n\t\t 0.082491003 0.38984299 0.082491003 0.38936001 0.087954998 0.38062599 0.088005997\n\t\t 0.38936001 0.087954998 0.38984299 0.082491003 0.39704999 0.082292996 0.39704999 0.082292996\n\t\t 0.39621499 0.087889999 0.38936001 0.087954998 0.39621499 0.087889999 0.39704999 0.082292996\n\t\t 0.40284401 0.082107 0.40284401 0.082107 0.40174299 0.087815002 0.39621499 0.087889999\n\t\t 0.39540401 0.093434997 0.39621499 0.087889999 0.40174299 0.087815002 0.40174299 0.087815002\n\t\t 0.40092501 0.093482003 0.39540401 0.093434997 0.388769 0.093367003 0.38936001 0.087954998\n\t\t 0.39621499 0.087889999 0.39621499 0.087889999 0.39555901 0.093392 0.388769 0.093367003\n\t\t 0.38038501 0.093327001 0.38062599 0.088005997 0.38936001 0.087954998 0.38936001 0.087954998\n\t\t 0.38896599 0.093316004 0.38038501 0.093327001 0.36968699 0.093321003 0.36934501 0.088055\n\t\t 0.38062599 0.088005997 0.38062599 0.088005997 0.380656 0.093264997 0.36968699 0.093321003\n\t\t 0.39683101 0.015124 0.397652 0.020494999 0.390246 0.020274 0.390246 0.020274 0.38973999\n\t\t 0.014973 0.39683101 0.015124 0.38973999 0.014973 0.390246 0.020274 0.38077599 0.019804001\n\t\t 0.38077599 0.019804001 0.38062099 0.014606 0.38973999 0.014973 0.38062099 0.014606\n\t\t 0.38077599 0.019804001 0.368662 0.019352 0.36867401 0.024572 0.368662 0.019352 0.38077599\n\t\t 0.019804001 0.38077599 0.019804001 0.38107401 0.025026999 0.36867401 0.024572 0.38107401\n\t\t 0.025026999 0.38077599 0.019804001 0.390246 0.020274 0.390246 0.020274 0.390885 0.025505999\n\t\t 0.38107401 0.025026999 0.390885 0.025505999 0.390246 0.020274 0.397652 0.020494999\n\t\t 0.397652 0.020494999 0.398617 0.025738001 0.390885 0.025505999 0.39158499 0.030777\n\t\t 0.390885 0.025505999 0.398617 0.025738001 0.390885 0.025505999 0.39158499 0.030777\n\t\t 0.38144001 0.030343 0.38144001 0.030343 0.38107401 0.025026999 0.390885 0.025505999\n\t\t 0.38107401 0.025026999 0.38144001 0.030343 0.36876801 0.029913999 0.36876801 0.029913999\n\t\t 0.36867401 0.024572 0.38107401 0.025026999 0.36893699 0.035330001 0.36876801 0.029913999\n\t\t 0.38144001 0.030343 0.38144001 0.030343 0.38184199 0.035723001 0.36893699 0.035330001\n\t\t 0.38184199 0.035723001 0.38144001 0.030343 0.39158499 0.030777 0.39158499 0.030777\n\t\t 0.39228299 0.036090001 0.38184199 0.035723001 0.3822 0.041101001 0.38184199 0.035723001\n\t\t 0.39228299 0.036090001 0.39228299 0.036090001 0.392865 0.041398 0.3822 0.041101001\n\t\t 0.392865 0.041398 0.39228299 0.036090001 0.40063801 0.036219001 0.40063801 0.036219001\n\t\t 0.401445 0.041457001 0.392865 0.041398 0.401445 0.041457001 0.40063801 0.036219001\n\t\t 0.40720999 0.036114 0.40720999 0.036114 0.408207 0.041292001 0.401445 0.041457001\n\t\t 0.38184199 0.035723001 0.3822 0.041101001 0.36911699 0.040747002 0.36911699 0.040747002\n\t\t 0.36893699 0.035330001 0.38184199 0.035723001 0.36929101 0.046091001 0.36911699 0.040747002\n\t\t 0.3822 0.041101001 0.3822 0.041101001 0.382476 0.046404 0.36929101 0.046091001 0.382476\n\t\t 0.046404 0.3822 0.041101001 0.392865 0.041398 0.392865 0.041398 0.39327201 0.046634\n\t\t 0.382476 0.046404 0.39327201 0.046634 0.392865 0.041398 0.401445 0.041457001 0.401445\n\t\t 0.041457001 0.40198299 0.046629 0.39327201 0.046634 0.40198299 0.046629 0.401445\n\t\t 0.041457001 0.408207 0.041292001 0.408207 0.041292001 0.40886 0.046415001 0.40198299\n\t\t 0.046629 0.97737199 0.52298099 0.977153 0.52573502 0.97823 0.52547401 0.97850299\n\t\t 0.52295703 0.977557 0.52090102 0.97865802 0.52099502 0.977979 0.51862198 0.97907501\n\t\t 0.51876903 0.978773 0.51611698 0.97985101 0.51625401 0.97941703 0.51365298 0.98079801\n\t\t 0.51366597 0.97984499 0.51224899 0.98153001 0.51225102 0.97984499 0.51224899 0.98153001\n\t\t 0.51225102 0.98066002 0.51093 0.979702 0.51096803 0.97984499 0.51224899 0.98313898\n\t\t 0.51999098 0.97850299 0.52295703 0.97823 0.52547401 0.97823 0.52547401 0.98336202\n\t\t 0.52138299 0.98313898 0.51999098 0.98313898 0.51999098 0.98336202 0.52138299 0.987423\n\t\t 0.52135098 0.98742199 0.519898 0.98313898 0.51999098 0.98345298 0.51894802 0.98313898\n\t\t 0.51999098 0.98742199 0.519898 0.98742199 0.519898 0.987423 0.518906 0.98337102 0.51737303\n\t\t 0.98345298 0.51894802 0.987423 0.518906 0.98337102 0.51737303 0.987423 0.518906 0.98742199\n\t\t 0.51739299 0.98342001 0.51656502 0.98337102 0.51737303 0.98742199 0.51739299 0.98337102\n\t\t 0.51737303 0.97985101 0.51625401 0.98742199 0.51739299 0.98742098 0.51650101 0.98412901\n\t\t 0.513089 0.98342001 0.51656502 0.98742098 0.51650101 0.98742098 0.51650101 0.98742098\n\t\t 0.51303101 0.98432899 0.51190001 0.98412901 0.513089 0.98742098 0.51303101 0.98742098\n\t\t 0.51303101 0.98742098 0.511783 0.98742002 0.51062399 0.98387301 0.51067603 0.98153001\n\t\t 0.51225102 0.98153001 0.51225102 0.98432899 0.51190001 0.98079801 0.51366597 0.98412901\n\t\t 0.513089 0.98412901 0.513089 0.98079801 0.51366597;\n\tsetAttr \".uvst[0].uvsp[30750:30930]\" 0.97985101 0.51625401 0.97985101 0.51625401\n\t\t 0.98342001 0.51656502 0.97865802 0.52099502 0.98345298 0.51894802 0.98337102 0.51737303\n\t\t 0.98345298 0.51894802 0.97865802 0.52099502 0.97850299 0.52295703 0.97850299 0.52295703\n\t\t 0.98313898 0.51999098 0.99051201 0.51189798 0.98742098 0.51303101 0.99096799 0.51067501\n\t\t 0.98742098 0.51303101 0.990713 0.51308697 0.990713 0.51308697 0.98742098 0.51650101\n\t\t 0.98742098 0.51650101 0.99142402 0.516563 0.990713 0.51308697 0.99142402 0.516563\n\t\t 0.98742199 0.51739299 0.98742199 0.51739299 0.99147201 0.51736999 0.99142402 0.516563\n\t\t 0.99147201 0.51736999 0.987423 0.518906 0.987423 0.518906 0.99139202 0.51894599 0.99147201\n\t\t 0.51736999 0.99139202 0.51894599 0.98742199 0.519898 0.98742199 0.519898 0.99170601\n\t\t 0.51998597 0.99139202 0.51894599 0.99170601 0.51998597 0.99148399 0.52137601 0.99170601\n\t\t 0.51998597 0.99170601 0.51998597 0.99148399 0.52137601 0.99662602 0.52545601 0.99662602\n\t\t 0.52545601 0.99634999 0.52294201 0.99170601 0.51998597 0.99139202 0.51894599 0.99634999\n\t\t 0.52294201 0.99748099 0.52296501 0.99634999 0.52294201 0.99662602 0.52545601 0.99662602\n\t\t 0.52545601 0.99770302 0.52571499 0.99634999 0.52294201 0.997293 0.52088702 0.99619198\n\t\t 0.52098203 0.99634999 0.52294201 0.99634999 0.52294201 0.99619198 0.52098203 0.99139202\n\t\t 0.51894599 0.99147201 0.51736999 0.99139202 0.51894599 0.99619198 0.52098203 0.99686801\n\t\t 0.51861101 0.99577099 0.51876003 0.99147201 0.51736999 0.99607003 0.51610899 0.99499202\n\t\t 0.51624799 0.99542397 0.51364702 0.99404401 0.51366103 0.99499601 0.512245 0.993312\n\t\t 0.51224798 0.99418098 0.51092702 0.993312 0.51224798 0.99499601 0.512245 0.99499601\n\t\t 0.512245 0.995139 0.51096398 0.99147201 0.51736999 0.99499202 0.51624799 0.99142402\n\t\t 0.516563 0.993312 0.51224798 0.993312 0.51224798 0.99051201 0.51189798 0.99404401\n\t\t 0.51366103 0.990713 0.51308697 0.99499202 0.51624799 0.99499202 0.51624799 0.99404401\n\t\t 0.51366103 0.990713 0.51308697 0.99418098 0.51092702 0.995139 0.51096398 0.99424201\n\t\t 0.50948501 0.99096799 0.51067501 0.99418098 0.51092702 0.99062902 0.50651002 0.99096799\n\t\t 0.51067501 0.98742002 0.51062399 0.99096799 0.51067501 0.98742002 0.50612402 0.98742002\n\t\t 0.51062399 0.98387301 0.51067603 0.98742002 0.51062399 0.98421103 0.50651097 0.98387301\n\t\t 0.51067603 0.98066002 0.51093 0.98387301 0.51067603 0.98421103 0.50651097 0.98059797\n\t\t 0.50948799 0.98066002 0.51093 0.98066002 0.51093 0.979702 0.51096803 0.98497701 0.505548\n\t\t 0.98742002 0.50529301 0.98986399 0.505548 0.98561299 0.50336802 0.98742002 0.50333703\n\t\t 0.98922801 0.50336802 0.98337102 0.51737303 0.97762102 0.52705598 0.97878802 0.52677703\n\t\t 0.97823 0.52547401 0.97823 0.52547401 0.977153 0.52573502 0.97823 0.52547401 0.97878802\n\t\t 0.52677703 0.97878802 0.52677703 0.983634 0.52230102 0.98336202 0.52138299 0.983634\n\t\t 0.52230102 0.983634 0.52230102 0.98742199 0.52245498 0.99121201 0.52229202 0.99148399\n\t\t 0.52137601 0.99121201 0.52229202 0.99607301 0.52675802 0.99148399 0.52137601 0.99662602\n\t\t 0.52545601 0.99607301 0.52675802 0.99724102 0.52703297 0.99770302 0.52571499 0.99662602\n\t\t 0.52545601 0.97808999 0.52840102 0.97924 0.52804202 0.98742199 0.52245498 0.983634\n\t\t 0.52230102 0.98310602 0.529055 0.98310602 0.529055 0.983634 0.52230102 0.97878802\n\t\t 0.52677703 0.987441 0.53000897 0.98742199 0.52245498 0.99677902 0.52837902 0.99607301\n\t\t 0.52675802 0.99607301 0.52675802 0.99562901 0.52802402 0.98742199 0.52245498 0.99177003\n\t\t 0.52904397 0.99121201 0.52229202 0.98742199 0.52245498 0.99607301 0.52675802 0.99121201\n\t\t 0.52229202 0.99177003 0.52904397 0.99607301 0.52675802 0.99552798 0.528494 0.99562901\n\t\t 0.52802402 0.99177003 0.52904397 0.99188101 0.532224 0.99552798 0.528494 0.97924\n\t\t 0.52804202 0.97808999 0.52840102 0.97824198 0.52885401 0.979343 0.528512 0.97924\n\t\t 0.52804202 0.98299903 0.53223097 0.97924 0.52804202 0.97924 0.52804202 0.98299903\n\t\t 0.53223097 0.987441 0.53424603 0.99562901 0.52802402 0.996629 0.52883297 0.99677902\n\t\t 0.52837902 0.99562901 0.52802402;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr -s 13341 \".vt\";\n\tsetAttr \".vt[0:165]\"  0.61199498 -0.48309001 0.030941 0.57358402 -0.48685801 -0.063533999\n\t\t 0.57950503 -0.52175802 -0.056274001 0.60760301 -0.444814 0.0080620004 0.56702697 -0.47124299 -0.065672003\n\t\t 0.59856802 -0.431817 0.0024890001 0.585195 -0.42213699 0.001334 0.55421799 -0.46076399 -0.062870003\n\t\t 0.53601998 -0.455731 -0.052186001 0.56739998 -0.41637301 0.0058180001 0.54739302 -0.41256601 0.013119\n\t\t 0.51512802 -0.45342201 -0.037560999 0.63198298 -0.436573 0.061292 0.63207102 -0.43411401 0.078919999\n\t\t 0.61979401 -0.46517 0.057004001 0.643507 -0.40487501 0.098967999 0.64644498 -0.40248001 0.085004002\n\t\t 0.63115901 -0.42638999 0.098222002 0.62462199 -0.44725001 0.083067998 0.66804999 -0.33135301 0.145013\n\t\t 0.671422 -0.32667199 0.13388 0.66191101 -0.333922 0.153391 0.62458998 -0.41600999 0.036486\n\t\t 0.63929302 -0.386114 0.059440002 0.61484098 -0.405211 0.030115001 0.62891799 -0.377386 0.052668002\n\t\t 0.60044998 -0.396826 0.027775999 0.61354399 -0.370208 0.049614999 0.58121502 -0.391574 0.029345\n\t\t 0.59275597 -0.365621 0.049185 0.55955797 -0.38789001 0.032869 0.56926 -0.36232999 0.050067998\n\t\t 0.66374099 -0.31118399 0.108426 0.67926103 -0.29002699 0.153432 0.67243701 -0.27484301 0.127588\n\t\t 0.70101798 -0.15720899 0.21114901 0.69539899 -0.14394701 0.18320601 0.66180497 -0.26740101 0.119199\n\t\t 0.68481302 -0.13919 0.173501 0.66953802 -0.136373 0.167886 0.64626801 -0.26154801 0.114724\n\t\t 0.62569702 -0.258295 0.114015 0.64977002 -0.13576099 0.16665301 0.62775701 -0.13625 0.167612\n\t\t 0.60260803 -0.25634301 0.11519 0.710518 -0.035130002 0.25996599 0.70318699 -0.042585 0.27217001\n\t\t 0.69424802 -0.16314299 0.22365201 0.68413597 -0.16744301 0.232775 0.692307 -0.048129998 0.281124\n\t\t 0.70608002 -0.018796001 0.233419 0.70907402 0.05731 0.26381201 0.71272397 0.037703 0.28878599\n\t\t 0.69578302 -0.013249 0.224179 0.69890898 0.064047001 0.25516599 0.684111 0.067709997 0.250319\n\t\t 0.68089402 -0.010254 0.21890301 0.66195601 -0.010062 0.218015 0.665434 0.067955002 0.249731\n\t\t 0.64481902 0.066489004 0.25127399 0.64099503 -0.01127 0.21932 0.68094599 -0.050882999 0.28514001\n\t\t 0.69425601 0.022465 0.308994 0.68292701 0.019114001 0.31260899 0.67140102 0.01733 0.31376201\n\t\t 0.67402798 -0.169367 0.237075 0.66101801 -0.29901999 0.177587 0.64796102 -0.33480099 0.161707\n\t\t 0.65510303 -0.33478701 0.158393 0.66839802 -0.29781801 0.172941 0.63745099 -0.39408901 0.121771\n\t\t 0.70519102 0.028953001 0.30045199 0.67522001 -0.29491699 0.164644 0.57050002 -0.63773501 -0.01781\n\t\t 0.59292102 -0.63394302 -0.024435 0.61249 -0.62668902 -0.031373002 0.56572002 -0.65349501 -0.133506\n\t\t 0.62635702 -0.61251003 -0.038938999 0.632846 -0.59356803 -0.045965001 0.58321398 -0.59510398 -0.14618701\n\t\t 0.630283 -0.57202202 -0.051282 0.61958098 -0.551094 -0.054503001 0.57494599 -0.57273197 -0.14364401\n\t\t 0.54497302 -0.53862703 -0.13225099 0.59742099 -0.595137 0.075001001 0.62139302 -0.59161901 0.069137998\n\t\t 0.64227003 -0.58519 0.06256 0.65695602 -0.57294101 0.054549001 0.66374201 -0.55602002 0.046158999\n\t\t 0.66092098 -0.53557301 0.038442999 0.65000701 -0.515176 0.032345999 0.60553902 -0.57635301 0.111729\n\t\t 0.62973702 -0.572833 0.10585 0.61086202 -0.55834001 0.145941 0.63506001 -0.554712 0.140003\n\t\t 0.61407298 -0.53874999 0.183149 0.63827199 -0.53500497 0.177149 0.639009 -0.49462399 0.24979\n\t\t 0.61480701 -0.49880099 0.25602299 0.65613598 -0.54795599 0.13301601 0.659352 -0.527942 0.16990399\n\t\t 0.66009003 -0.48691499 0.24201401 0.674191 -0.51424402 0.16016801 0.67493099 -0.472139 0.231153\n\t\t 0.670964 -0.53494298 0.123924 0.67744797 -0.51746303 0.114353 0.67962599 -0.49575499 0.149776\n\t\t 0.67938602 -0.45279601 0.21941 0.67249298 -0.47431901 0.140562 0.66930902 -0.43138099 0.208988\n\t\t 0.67348802 -0.497307 0.105924 0.66172898 -0.478055 0.097912997 0.659078 -0.456137 0.13026699\n\t\t 0.665627 -0.55397499 0.090599 0.65080899 -0.56635797 0.099097997 0.67246401 -0.53707701 0.081652999\n\t\t 0.66959 -0.51705998 0.073559999 0.658535 -0.49708799 0.066698998 0.63226902 -0.443407 0.101328\n\t\t 0.47597 -0.67677802 -0.184604 0.43013 -0.677118 -0.29899099 0.411753 -0.67954701 -0.27956\n\t\t 0.49529001 -0.674281 -0.202611 0.512402 -0.66766399 -0.219047 0.44661099 -0.670322 -0.31649899\n\t\t 0.45930001 -0.65479201 -0.33016399 0.52509898 -0.65280598 -0.232344 0.53178197 -0.63208997 -0.24072701\n\t\t 0.466555 -0.63338202 -0.33819801 0.46672899 -0.60894901 -0.338815 0.53085202 -0.60789597 -0.242421\n\t\t 0.52449697 -0.58470899 -0.238602 0.461851 -0.58739603 -0.335195 0.44452801 -0.56625199 -0.32531801\n\t\t 0.50368601 -0.55207002 -0.22012199 0.44345099 -0.545636 -0.321127 0.498025 -0.52928603 -0.230766\n\t\t 0.439372 -0.53445899 -0.313218 0.49126801 -0.51724899 -0.227918 0.47998801 -0.50841099 -0.219221\n\t\t 0.431725 -0.52635199 -0.301673 0.44202399 -0.63309598 -0.370998 0.43481299 -0.65464002 -0.36289501\n\t\t 0.42233199 -0.67030698 -0.349006 0.406205 -0.67714602 -0.33114201 0.38825399 -0.67957097 -0.31129\n\t\t 0.38769099 -0.67682701 -0.35414401 0.37016299 -0.67925102 -0.33382601 0.40343401 -0.66999 -0.372448\n\t\t 0.41560501 -0.65432602 -0.38672701 0.422611 -0.632783 -0.39513299 0.42286101 -0.60830998 -0.39581999\n\t\t 0.44234401 -0.608621 -0.371503 0.42055699 -0.59271902 -0.39335999 0.43697399 -0.588081 -0.370534\n\t\t 0.415014 -0.57399702 -0.38022301 0.422252 -0.55141097 -0.35598201 0.408438 -0.55411798 -0.375099\n\t\t 0.38647401 -0.58172202 -0.42743099 0.41933 -0.54032701 -0.344078 0.40290001 -0.54607803 -0.36957201\n\t\t 0.39455399 -0.53788102 -0.35599899 0.41190201 -0.53263301 -0.33138499 0.37650901 -0.56079298 -0.41430801\n\t\t 0.364793 -0.54804802 -0.39945701 0.353293 -0.54546499 -0.384859;\n\tsetAttr \".vt[166:331]\" 0.38319299 -0.536659 -0.34134999 0.370325 -0.53892499 -0.32616299\n\t\t 0.34189999 -0.54796302 -0.37038901 0.40069601 -0.531551 -0.31694099 0.41977501 -0.52508003 -0.28750601\n\t\t 0.46280199 -0.50648499 -0.205365 0.53122199 -0.50247997 -0.14905 0.53752702 -0.51357597 -0.150526\n\t\t 0.53956801 -0.54072702 -0.143967 0.56901801 -0.57470298 -0.15505099 0.577245 -0.597076 -0.157566\n\t\t 0.57888901 -0.62023997 -0.15691499 0.34601 -0.66588998 -0.39974201 0.35937199 -0.66032702 -0.417472\n\t\t 0.37441799 -0.62905502 -0.43899301 0.36906499 -0.58819598 -0.43486801 0.36165801 -0.588157 -0.439955\n\t\t 0.352155 -0.57146603 -0.42872301 0.35946301 -0.57151699 -0.42361799 0.34835601 -0.56098098 -0.40974599\n\t\t 0.34112501 -0.56088197 -0.41483301 0.33143601 -0.55908602 -0.401622 0.338689 -0.55922401 -0.39661101\n\t\t 0.32974201 -0.561858 -0.38384399 0.542777 -0.51108801 -0.138816 0.53656203 -0.49983501 -0.137435\n\t\t 0.52525198 -0.49225199 -0.130945 0.487391 -0.490408 -0.101742 0.50242603 -0.492908 -0.129467\n\t\t 0.442664 -0.50801498 -0.18893 0.405673 -0.52722698 -0.27202901 0.3876 -0.53377497 -0.301622\n\t\t 0.31537601 -0.68149799 -0.39410299 0.30125099 -0.67762202 -0.403106 0.33194801 -0.67886698 -0.416473\n\t\t 0.33689299 -0.67515999 -0.41109699 0.346791 -0.67160702 -0.43686101 0.31709501 -0.67519999 -0.42507899\n\t\t 0.33121601 -0.66836601 -0.44502401 0.35132501 -0.66838503 -0.43076801 0.35219699 -0.66005498 -0.42249799\n\t\t 0.36184299 -0.64695698 -0.43604201 0.36224699 -0.65284801 -0.44638899 0.36699 -0.62886101 -0.444024\n\t\t 0.36828601 -0.63146901 -0.455924 0.36676601 -0.608275 -0.44519201 0.36806899 -0.60716802 -0.45733899\n\t\t 0.36212799 -0.58344603 -0.45107299 0.35099599 -0.56380302 -0.43756601 0.338117 -0.55121398 -0.42100799\n\t\t 0.32693499 -0.54865301 -0.40559101 0.32241699 -0.56168401 -0.388751 0.31660101 -0.55110699 -0.39074501\n\t\t 0.310105 -0.54685599 -0.39439699 0.32095999 -0.54448301 -0.40999901 0.306519 -0.54776198 -0.419761\n\t\t 0.33272201 -0.54736298 -0.42626399 0.34630001 -0.56074798 -0.44385299 0.330477 -0.56304199 -0.45204699\n\t\t 0.35804501 -0.58154798 -0.45824501 0.364306 -0.60667002 -0.46491799 0.34744501 -0.60669202 -0.47210699\n\t\t 0.36453301 -0.63241702 -0.46341699 0.35817301 -0.65509301 -0.45328701 0.36686099 -0.66948599 -0.41808301\n\t\t 0.35225701 -0.67632598 -0.39844099 0.33085701 -0.66767502 -0.37991101 0.36915499 -0.64721 -0.43099701\n\t\t 0.384123 -0.632276 -0.443243 0.38393801 -0.60780299 -0.44463301 0.374219 -0.60838002 -0.44013801\n\t\t 0.377938 -0.58392298 -0.438324 0.36666301 -0.564156 -0.42476499 0.34236601 -0.54887998 -0.39269099\n\t\t 0.331981 -0.55131501 -0.377801 0.34290999 -0.67886102 -0.36789399 0.35971501 -0.67643899 -0.38901401\n\t\t 0.33590001 -0.67875302 -0.376789 0.374789 -0.66960299 -0.408088 0.37795699 -0.65381998 -0.433705\n\t\t 0.38640201 -0.653943 -0.423067 0.39298001 -0.63239998 -0.43210101 0.39294899 -0.60791999 -0.433339\n\t\t 0.35363299 -0.55148202 -0.40815499 0.249017 -0.67351902 -0.46969399 0.234405 -0.67592698 -0.44694901\n\t\t 0.26198 -0.66669703 -0.49036601 0.27164099 -0.65104699 -0.50688899 0.34189001 -0.652704 -0.46091199\n\t\t 0.347754 -0.63116401 -0.47064 0.26896399 -0.624286 -0.52710098 0.26882601 -0.60500401 -0.52347302\n\t\t 0.34150499 -0.582811 -0.46575999 0.26304901 -0.58112103 -0.51702398 0.25269499 -0.56134403 -0.50288802\n\t\t 0.31770101 -0.55036497 -0.43527699 0.24061701 -0.54865998 -0.48568001 0.22966699 -0.54605502 -0.47001699\n\t\t 0.296134 -0.55019701 -0.40487 0.219283 -0.54848999 -0.455127 0.244616 -0.64964998 -0.52493101\n\t\t 0.25249299 -0.62958699 -0.53946501 0.2351 -0.66529799 -0.50831699 0.222303 -0.67211902 -0.487542\n\t\t 0.207866 -0.67452502 -0.46468601 0.33892301 -0.66565198 -0.40464199 0.32070699 -0.67755598 -0.38940099\n\t\t 0.323836 -0.66749799 -0.38462901 0.53883499 -0.65546298 -0.134618 0.54485798 -0.65336603 -0.123375\n\t\t 0.55567902 -0.64955401 -0.143382 0.56730098 -0.63640398 -0.149737 0.57296699 -0.63475603 -0.1381\n\t\t 0.57865399 -0.61675298 -0.141706 0.57723898 -0.59600902 -0.14199901 0.56934899 -0.57529497 -0.13941\n\t\t 0.53343898 -0.54272997 -0.13981999 0.53894502 -0.54087597 -0.128114 0.53713399 -0.51348799 -0.134864\n\t\t 0.53264999 -0.50405401 -0.133993 0.52348202 -0.49843299 -0.128213 0.51783699 -0.50112301 -0.13963\n\t\t 0.48888499 -0.497738 -0.100597 0.56132102 -0.64772499 -0.131787 0.547984 -0.66016299 -0.123974\n\t\t 0.52598602 -0.65534401 -0.113915 0.52776998 -0.66272002 -0.113423 0.57849598 -0.63860399 -0.14099801\n\t\t 0.58482403 -0.61822802 -0.145532 0.50784498 -0.48999801 -0.117966 0.50780898 -0.497031 -0.116011\n\t\t 0.52117097 -0.66512698 -0.124163 0.51938099 -0.65775198 -0.124651 0.54171902 -0.66244298 -0.135003\n\t\t 0.55970597 -0.65566099 -0.144761 0.57256901 -0.64068103 -0.152356 0.57279903 -0.61834598 -0.153238\n\t\t 0.57126898 -0.59771001 -0.15343601 0.563389 -0.57713401 -0.15082601 0.53185803 -0.51598603 -0.14655501\n\t\t 0.52718198 -0.50667 -0.145537 0.519813 -0.49503499 -0.142465 0.50226003 -0.499872 -0.12744901\n\t\t 0.48356801 -0.50076902 -0.112132 0.48205 -0.49344 -0.113261 0.60473001 -0.424797 0.37543601\n\t\t 0.63415098 -0.45131001 0.32386899 0.60994703 -0.45616201 0.330466 0.62893498 -0.41967201 0.36869201\n\t\t 0.63708401 -0.473856 0.28531 0.61288202 -0.47835699 0.29171601 0.65816301 -0.46580401 0.27725899\n\t\t 0.65522802 -0.44288599 0.315521 0.650011 -0.41092101 0.36008999 0.67004699 -0.427315 0.30366701\n\t\t 0.664828 -0.39491799 0.34777299 0.67299402 -0.450647 0.26592201 0.67783397 -0.43158501 0.25363901\n\t\t 0.67521399 -0.408364 0.29063299 0.67036802 -0.37590799 0.33403799 0.66733003 -0.38979799 0.278745\n\t\t 0.66361398 -0.358136 0.32118401 0.66894299 -0.41181901 0.242753 0.65392601 -0.39322001 0.2318\n\t\t 0.65292197 -0.371425 0.26743001 0.65607297 -0.346232 0.40162599;\n\tsetAttr \".vt[332:497]\" 0.64124203 -0.36266899 0.41425899 0.62016201 -0.37162599 0.42299899\n\t\t 0.59595501 -0.37684199 0.42979199 0.63253701 -0.31337899 0.46511 0.61145002 -0.32246101 0.47391701\n\t\t 0.58724397 -0.32767701 0.48071 0.64738601 -0.29656699 0.45227301 0.65391099 -0.27706 0.437958\n\t\t 0.66214103 -0.326998 0.387501 0.65693802 -0.30965 0.37428701 0.64609802 -0.293246 0.36152601\n\t\t 0.65002799 -0.25989199 0.424714 0.60323399 -0.25955701 0.535101 0.624327 -0.25032699 0.52622199\n\t\t 0.57902801 -0.26477301 0.54189402 0.63919502 -0.233071 0.51317197 0.64588499 -0.21318699 0.498694\n\t\t 0.64244699 -0.19607601 0.485533 0.63394302 -0.180352 0.47303 0.653018 -0.303238 0.100535\n\t\t 0.63742 -0.29677799 0.096469 0.61660397 -0.29294401 0.095757 0.59317797 -0.29042301 0.096722998\n\t\t 0.65191799 -0.34963 0.30305901 0.64027798 -0.236862 0.419994 0.65951103 -0.333814 0.256441\n\t\t 0.66042697 -0.33127001 0.23810101 0.67777598 -0.069816001 0.41522101 0.65450603 -0.35364401 0.20036601\n\t\t 0.66478097 -0.310175 0.214945 0.65324497 -0.31158999 0.17576601 0.66792101 -0.179885 0.26280501\n\t\t 0.66393101 -0.170187 0.23895 0.670178 -0.066248 0.312264 0.66969699 -0.046399001 0.289085\n\t\t 0.64996302 -0.371867 0.18046699 0.63485998 -0.41874799 0.111549 0.63600099 -0.407884 0.111687\n\t\t 0.649234 -0.42258099 0.16891401 0.65196502 -0.408932 0.19922701 0.678289 0.016094999 0.36413401\n\t\t 0.67816103 -0.057647999 0.40879399 -0.57454097 -0.52175802 -0.056274001 -0.60263902 -0.444814 0.0080620004\n\t\t -0.60703099 -0.48309001 0.030941 -0.56862003 -0.48685801 -0.063533999 -0.56206298 -0.47124299 -0.065672003\n\t\t -0.59360403 -0.431817 0.0024890001 -0.58023101 -0.42213699 0.001334 -0.549254 -0.46076399 -0.062870003\n\t\t -0.53105599 -0.455731 -0.052186001 -0.56243598 -0.41637301 0.0058180001 -0.51016402 -0.45342201 -0.037560999\n\t\t -0.54242897 -0.41256601 0.013119 -0.62701899 -0.436573 0.061292 -0.62710702 -0.43411401 0.078919999\n\t\t -0.61483002 -0.46517 0.057004001 -0.63854301 -0.40487501 0.098967999 -0.64148098 -0.40248001 0.085004002\n\t\t -0.631037 -0.407884 0.111687 -0.62619501 -0.42638999 0.098223001 -0.663086 -0.33135301 0.145013\n\t\t -0.66645801 -0.32667199 0.13388 -0.65694702 -0.333922 0.153391 -0.61962599 -0.41600999 0.036486\n\t\t -0.63432902 -0.386114 0.059440002 -0.60987699 -0.405211 0.030115001 -0.623954 -0.377386 0.052668002\n\t\t -0.59548599 -0.396826 0.027775999 -0.60857999 -0.370208 0.049614999 -0.57625097 -0.391574 0.029345\n\t\t -0.58779198 -0.365621 0.049185 -0.55459398 -0.38789001 0.032869 -0.56429601 -0.36232999 0.050067998\n\t\t -0.658777 -0.31118399 0.108426 -0.67429698 -0.29002699 0.153432 -0.66747302 -0.27484301 0.127588\n\t\t -0.69605398 -0.15720899 0.21115001 -0.69043499 -0.14394701 0.18320601 -0.65684098 -0.26740101 0.119199\n\t\t -0.67984903 -0.13919 0.173501 -0.66457403 -0.136373 0.167886 -0.64130402 -0.26154801 0.114724\n\t\t -0.62073302 -0.258295 0.114015 -0.64480603 -0.13576099 0.16665401 -0.59764397 -0.25634301 0.11519\n\t\t -0.62279302 -0.13625 0.167612 -0.70555401 -0.035130002 0.25996599 -0.69822299 -0.042585999 0.27217099\n\t\t -0.68928403 -0.16314299 0.22365201 -0.67917198 -0.16744301 0.232776 -0.687343 -0.048131 0.281124\n\t\t -0.70111603 -0.018796001 0.233419 -0.70411003 0.057309002 0.26381201 -0.70775998 0.037702002 0.28878599\n\t\t -0.69081903 -0.013249 0.22418 -0.69394499 0.064047001 0.25516599 -0.67914701 0.067709997 0.250319\n\t\t -0.67593002 -0.010255 0.21890301 -0.65699202 -0.010062 0.218015 -0.66047001 0.067953996 0.249731\n\t\t -0.63603097 -0.011271 0.21932 -0.63985503 0.066489004 0.25127399 -0.675982 -0.050884001 0.28514001\n\t\t -0.68929201 0.022465 0.308994 -0.67796302 0.019113 0.31260899 -0.66473299 -0.046399999 0.289085\n\t\t -0.66906399 -0.169367 0.237075 -0.65605402 -0.29901999 0.177588 -0.64828098 -0.31158999 0.17576601\n\t\t -0.64299703 -0.33480099 0.161707 -0.65013897 -0.33478701 0.158393 -0.66343403 -0.29781801 0.172941\n\t\t -0.70022702 0.028952001 0.30045199 -0.67025602 -0.29491699 0.164644 -0.56553602 -0.63773501 -0.01781\n\t\t -0.52280599 -0.66272002 -0.113423 -0.58795702 -0.63394302 -0.024435 -0.607526 -0.62668902 -0.031373002\n\t\t -0.62139302 -0.61251003 -0.038938999 -0.627882 -0.59356803 -0.045965001 -0.57985997 -0.61822802 -0.145532\n\t\t -0.625319 -0.57202202 -0.051282 -0.61461699 -0.551094 -0.054503001 -0.56998199 -0.57273197 -0.14364401\n\t\t -0.54000902 -0.53862703 -0.13225099 -0.592457 -0.595137 0.075001001 -0.61642897 -0.59161901 0.069137998\n\t\t -0.63730597 -0.58519 0.06256 -0.65199202 -0.57294101 0.054549001 -0.65877801 -0.55602002 0.046158999\n\t\t -0.65595698 -0.53557301 0.038442999 -0.64504302 -0.515176 0.032345999 -0.60057497 -0.57635301 0.111729\n\t\t -0.62477303 -0.572833 0.10585 -0.60589802 -0.55834001 0.145941 -0.63009602 -0.554712 0.14000399\n\t\t -0.60910898 -0.53874999 0.18314999 -0.63330799 -0.53500497 0.177149 -0.60984302 -0.49880099 0.25602299\n\t\t -0.634045 -0.49462399 0.24979 -0.65117198 -0.54795599 0.13301601 -0.65438801 -0.527942 0.16990399\n\t\t -0.65512598 -0.48691499 0.24201401 -0.669227 -0.51424402 0.16016801 -0.669967 -0.472139 0.231153\n\t\t -0.66600001 -0.53494298 0.123924 -0.67248398 -0.51746303 0.114353 -0.67466199 -0.49575499 0.149777\n\t\t -0.67442203 -0.45279601 0.21941 -0.66752899 -0.47431901 0.140563 -0.66434503 -0.43138099 0.208988\n\t\t -0.66852403 -0.497307 0.105924 -0.65676498 -0.478055 0.097912997 -0.65411401 -0.456137 0.13026699\n\t\t -0.64700103 -0.408932 0.19922701 -0.66066301 -0.55397499 0.090599 -0.66750002 -0.53707701 0.081652999\n\t\t -0.645845 -0.56635797 0.099097997 -0.664626 -0.51705998 0.073559999 -0.65357101 -0.49708799 0.066698998\n\t\t -0.62730497 -0.443407 0.101328 -0.42516601 -0.677118 -0.29899099 -0.47100601 -0.67677802 -0.184604\n\t\t -0.406789 -0.67954701 -0.27956 -0.49032599 -0.674281 -0.202611;\n\tsetAttr \".vt[498:663]\" -0.507438 -0.66766399 -0.219047 -0.44164699 -0.670322 -0.31649899\n\t\t -0.45433599 -0.65479201 -0.33016399 -0.52013499 -0.65280598 -0.232344 -0.52681798 -0.63208997 -0.24072701\n\t\t -0.46159101 -0.63338202 -0.33819801 -0.46176499 -0.60894901 -0.338815 -0.52588803 -0.60789597 -0.242421\n\t\t -0.51953298 -0.58470899 -0.238602 -0.45688701 -0.58739603 -0.335195 -0.43956399 -0.56625199 -0.32531801\n\t\t -0.49872199 -0.55207002 -0.22012199 -0.43848699 -0.545636 -0.321127 -0.49306101 -0.52928603 -0.230766\n\t\t -0.43440801 -0.53445899 -0.313218 -0.48630399 -0.51724899 -0.227918 -0.47502401 -0.50841099 -0.219221\n\t\t -0.426761 -0.52635199 -0.301673 -0.43706 -0.63309598 -0.370998 -0.43737999 -0.608621 -0.371503\n\t\t -0.417898 -0.60830998 -0.39581999 -0.417647 -0.632783 -0.39513299 -0.429849 -0.65464002 -0.36289501\n\t\t -0.41064101 -0.65432602 -0.38672701 -0.41736799 -0.67030698 -0.349006 -0.401241 -0.67714602 -0.33114201\n\t\t -0.38328999 -0.67957097 -0.31129 -0.38272801 -0.67682701 -0.35414401 -0.365199 -0.67925102 -0.33382601\n\t\t -0.39847001 -0.66999 -0.372448 -0.41559401 -0.59271902 -0.39335999 -0.43200999 -0.588081 -0.370534\n\t\t -0.38150999 -0.58172202 -0.42743099 -0.41005 -0.57399702 -0.38022301 -0.403474 -0.55411798 -0.375099\n\t\t -0.41728801 -0.55141097 -0.35598201 -0.41436601 -0.54032701 -0.344078 -0.39793599 -0.54607803 -0.36957201\n\t\t -0.38959 -0.53788102 -0.35599899 -0.406939 -0.53263301 -0.33138499 -0.37154499 -0.56079298 -0.41430801\n\t\t -0.35982901 -0.54804802 -0.39945701 -0.34832901 -0.54546499 -0.384859 -0.37822899 -0.536659 -0.34134999\n\t\t -0.336936 -0.54796302 -0.37038901 -0.36536101 -0.53892499 -0.32616299 -0.39573199 -0.531551 -0.31694099\n\t\t -0.41481099 -0.52508003 -0.28750601 -0.45783901 -0.50648499 -0.205365 -0.52625799 -0.50247997 -0.14905\n\t\t -0.572281 -0.597076 -0.157566 -0.56760502 -0.64068103 -0.152356 -0.51620698 -0.66512698 -0.124163\n\t\t -0.318872 -0.66749799 -0.38462901 -0.354408 -0.66032702 -0.417472 -0.347233 -0.66005498 -0.42249799\n\t\t -0.356879 -0.64695698 -0.43604201 -0.369454 -0.62905502 -0.43899301 -0.36202601 -0.62886101 -0.444024\n\t\t -0.36180201 -0.608275 -0.44519201 -0.36925599 -0.60838002 -0.44013801 -0.36410099 -0.58819598 -0.43486801\n\t\t -0.35669401 -0.588157 -0.439955 -0.34719199 -0.57146603 -0.42872301 -0.33616099 -0.56088197 -0.41483301\n\t\t -0.33372501 -0.55922401 -0.39661101 -0.32477799 -0.561858 -0.38384399 -0.317453 -0.56168401 -0.388751\n\t\t -0.53781301 -0.51108801 -0.138816 -0.53159797 -0.49983501 -0.137435 -0.50288099 -0.48999801 -0.117966\n\t\t -0.497462 -0.492908 -0.129467 -0.4377 -0.50801498 -0.18893 -0.400709 -0.52722698 -0.27202901\n\t\t -0.38263601 -0.53377497 -0.301622 -0.31041199 -0.68149799 -0.39410299 -0.32698399 -0.67886698 -0.416473\n\t\t -0.31574401 -0.67755598 -0.38940099 -0.331929 -0.67515999 -0.41109699 -0.33395901 -0.66565198 -0.40464199\n\t\t -0.34636101 -0.66838503 -0.43076801 -0.357283 -0.65284801 -0.44638899 -0.36332199 -0.63146901 -0.455924\n\t\t -0.363105 -0.60716802 -0.45733899 -0.357164 -0.58344603 -0.45107299 -0.34603199 -0.56380302 -0.43756601\n\t\t -0.33315301 -0.55121398 -0.42100799 -0.32647201 -0.55908602 -0.401622 -0.321971 -0.54865301 -0.40559101\n\t\t -0.31163701 -0.55110699 -0.39074501 -0.305141 -0.54685599 -0.39439699 -0.31599599 -0.54448301 -0.40999901\n\t\t -0.29117 -0.55019701 -0.40487 -0.32775801 -0.54736298 -0.42626399 -0.31273699 -0.55036497 -0.43527699\n\t\t -0.34133601 -0.56074798 -0.44385299 -0.32551301 -0.56304199 -0.45204699 -0.35308099 -0.58154798 -0.45824501\n\t\t -0.336541 -0.582811 -0.46575999 -0.35934201 -0.60667002 -0.46491799 -0.35956901 -0.63241702 -0.46341699\n\t\t -0.35320899 -0.65509301 -0.45328701 -0.33692601 -0.652704 -0.46091199 -0.34182701 -0.67160702 -0.43686101\n\t\t -0.34104601 -0.66588998 -0.39974201 -0.34729299 -0.67632598 -0.39844099 -0.32589301 -0.66767502 -0.37991101\n\t\t -0.33093601 -0.67875302 -0.376789 -0.364191 -0.64721 -0.43099701 -0.37297401 -0.58392298 -0.438324\n\t\t -0.3617 -0.564156 -0.42476499 -0.35449901 -0.57151699 -0.42361799 -0.34866899 -0.55148202 -0.40815499\n\t\t -0.34339201 -0.56098098 -0.40974599 -0.33740199 -0.54887998 -0.39269099 -0.337946 -0.67886102 -0.36789399\n\t\t -0.35475099 -0.67643899 -0.38901401 -0.36982501 -0.66960299 -0.408088 -0.36189699 -0.66948599 -0.41808301\n\t\t -0.37299299 -0.65381998 -0.433705 -0.38143799 -0.653943 -0.423067 -0.38801599 -0.63239998 -0.43210101\n\t\t -0.379159 -0.632276 -0.443243 -0.37897399 -0.60780299 -0.44463301 -0.38798499 -0.60791999 -0.433339\n\t\t -0.32701799 -0.55131501 -0.377801 -0.24405301 -0.67351902 -0.46969399 -0.296287 -0.67762202 -0.403106\n\t\t -0.229441 -0.67592698 -0.44694901 -0.31213099 -0.67519999 -0.42507899 -0.32625201 -0.66836601 -0.44502401\n\t\t -0.257016 -0.66669703 -0.49036601 -0.26667699 -0.65104699 -0.50688899 -0.34279001 -0.63116401 -0.47064\n\t\t -0.264 -0.624286 -0.52710098 -0.26386201 -0.60500401 -0.52347302 -0.34248099 -0.60669202 -0.47210699\n\t\t -0.25808501 -0.58112103 -0.51702398 -0.247731 -0.56134403 -0.50288802 -0.235653 -0.54865998 -0.48568001\n\t\t -0.224703 -0.54605502 -0.47001699 -0.30155501 -0.54776198 -0.419761 -0.21431901 -0.54848999 -0.455127\n\t\t -0.23965301 -0.64964998 -0.52493101 -0.247529 -0.62958699 -0.53946501 -0.23013601 -0.66529799 -0.50831699\n\t\t -0.21733899 -0.67211902 -0.487542 -0.202902 -0.67452502 -0.46468601 -0.52102202 -0.65534401 -0.113915\n\t\t -0.51441699 -0.65775198 -0.124651 -0.568003 -0.63475603 -0.1381 -0.56630498 -0.59771001 -0.15343601\n\t\t -0.55842501 -0.57713401 -0.15082601 -0.52689397 -0.51598603 -0.14655501 -0.50284499 -0.497031 -0.116011\n\t\t -0.47860399 -0.50076902 -0.112132 -0.53989398 -0.65336603 -0.123375 -0.56075603 -0.65349501 -0.133506\n\t\t -0.54302001 -0.66016299 -0.123974 -0.55635703 -0.64772499 -0.131787 -0.57353199 -0.63860399 -0.14099801\n\t\t -0.57369 -0.61675298 -0.141706 -0.57824999 -0.59510398 -0.14618701 -0.57227498 -0.59600902 -0.14199901\n\t\t -0.564385 -0.57529497 -0.13941 -0.53398103 -0.54087597 -0.128114;\n\tsetAttr \".vt[664:829]\" -0.53217 -0.51348799 -0.134864 -0.527686 -0.50405401 -0.133993\n\t\t -0.52028799 -0.49225199 -0.130945 -0.51851797 -0.49843299 -0.128213 -0.482427 -0.490408 -0.101742\n\t\t -0.48392099 -0.497738 -0.100597 -0.533871 -0.65546298 -0.134618 -0.53675503 -0.66244298 -0.135003\n\t\t -0.55071503 -0.64955401 -0.143382 -0.55474198 -0.65566099 -0.144761 -0.56233698 -0.63640398 -0.149737\n\t\t -0.56783497 -0.61834598 -0.153238 -0.57392502 -0.62023997 -0.15691499 -0.56405401 -0.57470298 -0.15505099\n\t\t -0.52847499 -0.54272997 -0.13981999 -0.53460401 -0.54072702 -0.143967 -0.53256297 -0.51357597 -0.150526\n\t\t -0.52221799 -0.50667 -0.145537 -0.51287299 -0.50112301 -0.13963 -0.51484901 -0.49503499 -0.142465\n\t\t -0.49729601 -0.499872 -0.12744901 -0.47708601 -0.49344 -0.113261 -0.59976602 -0.424797 0.37543601\n\t\t -0.62918699 -0.45131001 0.32386899 -0.62397099 -0.41967201 0.36869201 -0.60498297 -0.45616201 0.330466\n\t\t -0.63212001 -0.473856 0.28531 -0.60791802 -0.47835699 0.29171601 -0.65319902 -0.46580401 0.27725899\n\t\t -0.65026402 -0.44288599 0.315521 -0.64504701 -0.41092101 0.36008999 -0.66508299 -0.427315 0.30366701\n\t\t -0.65986401 -0.39491799 0.34777299 -0.66803002 -0.450647 0.26592201 -0.67286998 -0.43158501 0.25363901\n\t\t -0.67025 -0.408364 0.29063299 -0.66540402 -0.37590799 0.33403799 -0.66236597 -0.38979799 0.278745\n\t\t -0.65864998 -0.358136 0.32118401 -0.66397899 -0.41181901 0.242753 -0.64896202 -0.39322001 0.231801\n\t\t -0.65110898 -0.346232 0.40162599 -0.63627797 -0.36266899 0.41425899 -0.61519802 -0.37162599 0.42299899\n\t\t -0.59099102 -0.37684199 0.42979199 -0.62757301 -0.31337899 0.46511 -0.60648602 -0.32246101 0.47391701\n\t\t -0.58227998 -0.32767701 0.48071 -0.64242202 -0.29656699 0.45227301 -0.648947 -0.27706 0.437958\n\t\t -0.65717697 -0.326998 0.387501 -0.65197402 -0.30965 0.37428701 -0.64113402 -0.293246 0.36152601\n\t\t -0.63531399 -0.236862 0.419994 -0.645064 -0.25989199 0.424714 -0.59827 -0.25955701 0.535101\n\t\t -0.61936301 -0.25032699 0.52622199 -0.57406402 -0.26477301 0.54189402 -0.63423097 -0.233071 0.51317197\n\t\t -0.640921 -0.21318699 0.498694 -0.637483 -0.19607601 0.485533 -0.62897903 -0.180352 0.47303\n\t\t -0.648054 -0.303238 0.100535 -0.632456 -0.29677799 0.096469 -0.61163998 -0.29294401 0.095757\n\t\t -0.58821398 -0.29042301 0.096722998 -0.646954 -0.34963 0.30305901 -0.65408701 -0.33073801 0.27653801\n\t\t -0.64715701 -0.212093 0.37652901 -0.65454698 -0.333814 0.256441 -0.64795798 -0.371425 0.26743001\n\t\t -0.65546298 -0.33127001 0.23810101 -0.67071497 -0.069532 0.36870199 -0.67281199 -0.069816999 0.41522101\n\t\t -0.64954197 -0.35364401 0.20036601 -0.65737498 -0.323396 0.223078 -0.66295701 -0.179885 0.26280501\n\t\t -0.65896702 -0.170187 0.23895 -0.66643697 0.01733 0.31376201 -0.64499903 -0.371867 0.18046699\n\t\t -0.632487 -0.39408901 0.121771 -0.62989599 -0.41874799 0.11155 -0.64427 -0.42258099 0.16891401\n\t\t -0.61965799 -0.44725001 0.083067998 -0.673325 0.016093999 0.36413401 -0.67319697 -0.057649001 0.40879399\n\t\t 0.227523 -0.81936502 0.25590399 0.20281801 -0.728513 0.23762301 0.15655801 -0.80649799 0.203393\n\t\t 0.21373001 -0.83844501 0.245698 0.15655801 -0.700477 0.203392 0.21373001 -0.69546002 0.245698\n\t\t 0.15219299 -0.69896799 0.20016301 0.15219299 -0.81661499 0.20016301 0.15219299 -0.68770701 0.20016301\n\t\t 0.16746999 -0.79462397 0.211467 0.145202 -0.80367398 0.19498999 0.145202 -0.69728798 0.19498999\n\t\t 0.21291099 -0.728513 0.223983 0.177563 -0.79462397 0.197827 0.16746999 -0.71776801 0.211467\n\t\t 0.20281801 -0.80053002 0.237624 0.21291099 -0.80053002 0.223984 0.177563 -0.71776801 0.197827\n\t\t -0.22255901 -0.81936502 0.25590399 -0.208766 -0.71785498 0.245698 -0.151594 -0.80649799 0.203393\n\t\t -0.151594 -0.700477 0.203392 -0.151594 -0.68171799 0.203392 -0.147229 -0.81661499 0.20016301\n\t\t -0.147229 -0.68770701 0.20016301 -0.140238 -0.80367398 0.19498999 -0.172599 -0.71776801 0.197827\n\t\t -0.207947 -0.80053002 0.223984 -0.172599 -0.79462397 0.197827 -0.162506 -0.71776801 0.211467\n\t\t -0.162506 -0.79462397 0.211467 -0.197854 -0.80053002 0.237624 -0.197854 -0.728513 0.23762301\n\t\t -0.207947 -0.728513 0.223983 0.225604 -0.52722502 -0.63005 0.241483 -0.53561997 -0.62678301\n\t\t 0.243173 -0.52776599 -0.62696302 0.22666 -0.53516299 -0.62938702 0.20882 -0.532794 -0.63245302\n\t\t 0.21249899 -0.53986198 -0.63141501 0.194846 -0.54380101 -0.63388598 0.185366 -0.55891901 -0.63417298\n\t\t 0.18152601 -0.57632399 -0.63328099 0.183787 -0.59391803 -0.63131702 0.19187599 -0.609577 -0.62851799\n\t\t 0.25518 -0.54117602 -0.623918 0.259408 -0.534352 -0.62356699 0.27235201 -0.546188 -0.62027001\n\t\t 0.280442 -0.56184798 -0.61747098 0.282702 -0.57944101 -0.61550701 0.28153899 -0.58830303 -0.61491603\n\t\t 0.274775 -0.60481799 -0.61460799 0.269382 -0.61196399 -0.61490202 0.25540799 -0.62297201 -0.61633402\n\t\t 0.23862401 -0.62854099 -0.61873901 0.222822 -0.62018502 -0.62244803 0.221055 -0.62799901 -0.62182498\n\t\t 0.20482001 -0.62141299 -0.62522101 0.19820499 -0.60464299 -0.62809497 0.23847701 -0.63342297 -0.61334401\n\t\t 0.25702 -0.62726998 -0.61068702 0.27246001 -0.61510801 -0.60910499 0.28467801 -0.55973703 -0.61194301\n\t\t 0.24350201 -0.52208197 -0.62243098 0.22409099 -0.52148402 -0.62584102 0.205547 -0.527637 -0.628497\n\t\t 0.190107 -0.53979802 -0.63007897 0.186827 -0.61247098 -0.62414801 0.21581399 -0.48909199 -0.60371298\n\t\t 0.24566901 -0.49001199 -0.59846801 0.18729299 -0.498555 -0.60779798 0.179318 -0.487095 -0.59337199\n\t\t 0.211564 -0.47639599 -0.58875197 0.24532001 -0.47743499 -0.58282298 0.16354699 -0.51726002 -0.610232\n\t\t 0.16498899 -0.49648699 -0.59500998 0.15246899 -0.50824302 -0.59612399 0.160468 -0.54848099 -0.621234\n\t\t 0.179634 -0.55650097 -0.63039702 0.147439 -0.54294997 -0.61071998;\n\tsetAttr \".vt[830:995]\" 0.26144001 -0.52935803 -0.61867797 0.27325699 -0.501203 -0.59269702\n\t\t 0.27574 -0.542436 -0.61503601 0.29525101 -0.52131701 -0.58709598 0.30899799 -0.54792601 -0.58233899\n\t\t 0.28717601 -0.579175 -0.60977298 0.31284001 -0.57782203 -0.57900101 0.285891 -0.58896601 -0.60912001\n\t\t 0.310862 -0.59288102 -0.57799703 0.30631399 -0.60739899 -0.57748502 0.278418 -0.60721201 -0.60878098\n\t\t 0.29936901 -0.62094402 -0.57747501 0.29020599 -0.63308799 -0.57797402 0.26645899 -0.651793 -0.58040702\n\t\t 0.237939 -0.66125602 -0.58449298 0.219065 -0.63282502 -0.616754 0.208084 -0.66033602 -0.589737\n\t\t 0.20112801 -0.62554801 -0.62050599 0.18049601 -0.64914501 -0.59550798 0.168607 -0.640082 -0.59837502\n\t\t 0.158501 -0.62903202 -0.60110998 0.20282499 -0.67001301 -0.57295102 0.17163201 -0.657359 -0.579476\n\t\t 0.15819 -0.64711201 -0.582717 0.23658 -0.67105198 -0.56702101 0.26882699 -0.660353 -0.562401\n\t\t 0.29567599 -0.63920498 -0.55965 0.16407301 -0.662857 -0.56165498 0.149489 -0.65174001 -0.56517202\n\t\t 0.197915 -0.67658597 -0.55457598 0.19318099 -0.68160701 -0.53540701 0.234538 -0.67771399 -0.54814303\n\t\t 0.232153 -0.68280703 -0.528561 0.26952299 -0.66610497 -0.54313099 0.29865301 -0.643161 -0.54014599\n\t\t 0.300383 -0.64603698 -0.520051 0.306036 -0.62547398 -0.55908602 0.30902699 -0.61964101 -0.55909097\n\t\t 0.31388801 -0.61015898 -0.55909801 0.31680399 -0.60085201 -0.55942601 0.30989301 -0.62826401 -0.53953397\n\t\t 0.30727199 -0.62636799 -0.55282199 0.319031 -0.59374499 -0.55967599 0.32126701 -0.57671797 -0.560812\n\t\t 0.31692299 -0.542916 -0.56458598 0.30138001 -0.51283002 -0.56996399 0.27651301 -0.490089 -0.57629699\n\t\t 0.32170501 -0.53869402 -0.54550099 0.32641801 -0.57536697 -0.54140699 0.304842 -0.50605297 -0.55133498\n\t\t 0.27786201 -0.48137999 -0.55820698 0.278258 -0.47387299 -0.539271 0.24402 -0.46765101 -0.56528598\n\t\t 0.207397 -0.46652299 -0.57172 0.17241199 -0.47813201 -0.57673198 0.16604 -0.47041699 -0.55898499\n\t\t 0.24224401 -0.45926401 -0.54680502 0.156866 -0.48832101 -0.57850897 0.149497 -0.48126 -0.56087601\n\t\t 0.322712 -0.59381503 -0.545205 0.32050699 -0.59377301 -0.55387503 0.203179 -0.47031799 -0.54185098\n\t\t 0.23936699 -0.47230199 -0.54613698 0.204965 -0.47124201 -0.55217999 0.170314 -0.48122299 -0.54655898\n\t\t 0.157497 -0.49171799 -0.55855697 0.271157 -0.48519799 -0.53948599 0.29650199 -0.50837499 -0.53303099\n\t\t 0.29471499 -0.507451 -0.52270198 0.312343 -0.53903699 -0.527551 0.31055599 -0.538113 -0.51722097\n\t\t 0.31676999 -0.57348597 -0.52370501 0.29068801 -0.63717097 -0.52252001 0.261538 -0.65780002 -0.51499599\n\t\t 0.19605801 -0.66856903 -0.53607601 0.164267 -0.65567303 -0.54272598 0.162481 -0.65474898 -0.53239697\n\t\t 0.138923 -0.632496 -0.54918098 0.129655 -0.61789101 -0.55208898 0.127869 -0.61696702 -0.54176098\n\t\t 0.193959 -0.45957401 -0.494003 0.23477501 -0.45726901 -0.50566298 0.22567201 -0.46727499 -0.46919501\n\t\t 0.19639 -0.45608601 -0.512407 0.270246 -0.47165799 -0.498243 0.25686401 -0.479929 -0.46267\n\t\t 0.29852399 -0.497518 -0.491041 0.28173199 -0.50266999 -0.45633599 0.316199 -0.53173101 -0.48492599\n\t\t 0.29727501 -0.53275597 -0.450959 0.32113901 -0.57016897 -0.480634 0.30161899 -0.566558 -0.44718501\n\t\t 0.31859601 -0.589531 -0.479343 0.29938301 -0.58358401 -0.446049 0.303819 -0.62561202 -0.47867101\n\t\t 0.28638801 -0.61531299 -0.44545901 0.29203701 -0.64122599 -0.47931299 0.27602699 -0.629044 -0.446022\n\t\t 0.26150599 -0.66527498 -0.48244199 0.24917901 -0.65019202 -0.44877401 0.22483601 -0.67744201 -0.487694\n\t\t 0.216932 -0.66089201 -0.45339301 0.186451 -0.67625898 -0.49443799 0.18317699 -0.65985203 -0.45932299\n\t\t 0.15098 -0.66187 -0.501858 0.15198401 -0.64719898 -0.465848 0.122702 -0.63600999 -0.50906003\n\t\t 0.12711599 -0.62445801 -0.47218201 0.11236 -0.61971402 -0.51230502 0.118022 -0.61012697 -0.475036\n\t\t 0.140708 -0.60663003 -0.438667 0.133855 -0.59583098 -0.44081801 0.159448 -0.62376797 -0.43389401\n\t\t 0.182954 -0.63330299 -0.42897701 0.20839199 -0.63408703 -0.42450801 0.232693 -0.62602401 -0.421027\n\t\t 0.25292599 -0.61008698 -0.41895401 0.26073399 -0.59973902 -0.418529 0.27052599 -0.57582903 -0.41897401\n\t\t 0.27221099 -0.562998 -0.41982901 0.268938 -0.537525 -0.42267299 0.25722501 -0.514853 -0.42672601\n\t\t 0.23848499 -0.497715 -0.431499 0.220413 -0.476951 -0.452409 0.175391 -0.57573199 -0.62941098\n\t\t 0.15482999 -0.57402903 -0.61992502 0.177889 -0.59517002 -0.62724102 0.158149 -0.59985399 -0.61704201\n\t\t 0.17002399 -0.62283897 -0.61293298 0.224078 -0.53991199 -0.60888499 0.236641 -0.540299 -0.60667801\n\t\t 0.21207701 -0.54389399 -0.61060399 0.200709 -0.54914802 -0.63262397 0.202084 -0.55176401 -0.611628\n\t\t 0.195306 -0.56257403 -0.61183399 0.189472 -0.57658798 -0.63211298 0.19271199 -0.561903 -0.63286602\n\t\t 0.19256 -0.57502002 -0.61119598 0.194177 -0.58759999 -0.60979098 0.19996101 -0.59879702 -0.60778999\n\t\t 0.191379 -0.59143102 -0.63045597 0.209125 -0.61462897 -0.625314 0.220825 -0.61197001 -0.60300398\n\t\t 0.23338801 -0.61235702 -0.600797 0.237645 -0.62064201 -0.61984402 0.245389 -0.60837501 -0.599078\n\t\t 0.25180501 -0.61594301 -0.61781597 0.26814499 -0.60062701 -0.616359 0.26359501 -0.60665703 -0.61660701\n\t\t 0.259238 -0.59539402 -0.597844 0.27385101 -0.586694 -0.61661899 0.264074 -0.58358502 -0.59806401\n\t\t 0.27483299 -0.57921702 -0.617118 0.263289 -0.564668 -0.59989101 0.272926 -0.56437403 -0.61877501\n\t\t 0.257505 -0.55347103 -0.60189199 0.26609999 -0.55116302 -0.62113601 0.228733 -0.57613403 -0.60484099\n\t\t 0.24824999 -0.545008 -0.60425001 0.26490599 -0.57724899 -0.59848702 0.255382 -0.60050398 -0.59805399\n\t\t 0.209216 -0.607261 -0.60543197 0.16425399 -0.469493 -0.54865497 0.16168299 -0.46816301 -0.53378701\n\t\t 0.323129 -0.53394198 -0.51542097 0.32814401 -0.57296801 -0.51106399;\n\tsetAttr \".vt[996:1161]\" 0.325562 -0.59262699 -0.50975198 0.191395 -0.68068302 -0.525078\n\t\t 0.15538099 -0.66607398 -0.53261203 0.11617 -0.62327302 -0.54321998 0.17209999 -0.48214599 -0.55688798\n\t\t 0.203271 -0.45806301 -0.55365098 0.30696899 -0.50012898 -0.531959 0.32491499 -0.53486502 -0.52574903\n\t\t 0.32993001 -0.573892 -0.521393 0.32734799 -0.59355003 -0.52008098 0.26332501 -0.65872401 -0.52532399\n\t\t 0.269384 -0.67045403 -0.52322799 0.23046 -0.66962898 -0.53003198 0.157167 -0.66699702 -0.54294097\n\t\t 0.141647 -0.65516597 -0.54668301 0.15056799 -0.64522898 -0.54602897 0.240458 -0.45833999 -0.53647602\n\t\t 0.237581 -0.471378 -0.53580803 0.20148499 -0.45714 -0.54332298 0.14771099 -0.48033601 -0.550547\n\t\t 0.155711 -0.49079499 -0.54822803 0.142951 -0.50277603 -0.54936302 0.133256 -0.49391001 -0.55183202\n\t\t 0.269371 -0.484274 -0.52915698 0.276472 -0.47295001 -0.52894199 0.30518299 -0.49920601 -0.52162999\n\t\t 0.31498301 -0.57256299 -0.513376 0.31270501 -0.58991599 -0.512218 0.310559 -0.62926 -0.50907099\n\t\t 0.29946101 -0.622253 -0.511617 0.288901 -0.63624698 -0.512191 0.29859701 -0.64511299 -0.50972199\n\t\t 0.267598 -0.66952997 -0.51289898 0.228673 -0.66870499 -0.51970398 0.230367 -0.68188399 -0.51823199\n\t\t 0.194271 -0.66764498 -0.525747 0.137137 -0.63157201 -0.53885198 0.126669 -0.63981801 -0.53992498\n\t\t 0.31745699 -0.60008198 -0.55784601 0.30390999 -0.613644 -0.55752498 0.30938199 -0.619798 -0.55747902\n\t\t 0.308065 -0.62491798 -0.55263901 0.308898 -0.62754399 -0.54457802 0.30120501 -0.62111199 -0.54437399\n\t\t 0.301213 -0.62150002 -0.54198802 0.312345 -0.63018399 -0.5194 0.301247 -0.62317699 -0.52194601\n\t\t 0.320171 -0.59535801 -0.55318898 0.32399201 -0.59384 -0.54017401 0.314491 -0.59083998 -0.52254701\n\t\t 0.31465799 -0.59089899 -0.54193801 0.30186501 -0.61844403 -0.55257398 0.31464601 -0.59090298 -0.54476899\n\t\t 0.31391999 -0.59241998 -0.55302 0.31182501 -0.59694803 -0.55786097 -0.23651899 -0.53561997 -0.62678301\n\t\t -0.22064 -0.52722502 -0.63005 -0.23820899 -0.52776599 -0.62696302 -0.221696 -0.53516299 -0.62938702\n\t\t -0.20385601 -0.532794 -0.63245302 -0.207535 -0.53986198 -0.63141501 -0.189882 -0.54380101 -0.63388598\n\t\t -0.19574501 -0.54914802 -0.63262397 -0.180402 -0.55891901 -0.63417298 -0.176562 -0.57632399 -0.63328099\n\t\t -0.17882299 -0.59391803 -0.63131702 -0.254444 -0.534352 -0.62356699 -0.26738799 -0.546188 -0.62027001\n\t\t -0.27547801 -0.56184798 -0.61747098 -0.27773899 -0.57944101 -0.61550701 -0.26888701 -0.586694 -0.61661899\n\t\t -0.276575 -0.58830303 -0.61491603 -0.269811 -0.60481799 -0.61460799 -0.26441801 -0.61196399 -0.61490202\n\t\t -0.25044399 -0.62297201 -0.61633402 -0.23366 -0.62854099 -0.61873901 -0.217858 -0.62018502 -0.62244803\n\t\t -0.21609101 -0.62799901 -0.62182498 -0.199856 -0.62141299 -0.62522101 -0.186913 -0.609577 -0.62851799\n\t\t -0.181863 -0.61247098 -0.62414801 -0.214101 -0.63282502 -0.616754 -0.252056 -0.62726998 -0.61068702\n\t\t -0.26749599 -0.61510801 -0.60910499 -0.280927 -0.58896601 -0.60912001 -0.27971399 -0.55973703 -0.61194301\n\t\t -0.238538 -0.52208197 -0.62243098 -0.200583 -0.527637 -0.628497 -0.17042699 -0.57573199 -0.62941098\n\t\t -0.172925 -0.59517002 -0.62724102 -0.21085 -0.48909199 -0.60371298 -0.219127 -0.52148402 -0.62584102\n\t\t -0.240705 -0.49001199 -0.59846801 -0.182329 -0.498555 -0.60779798 -0.174354 -0.487095 -0.59337199\n\t\t -0.20660099 -0.47639599 -0.58875197 -0.240356 -0.47743499 -0.58282298 -0.158583 -0.51726002 -0.610232\n\t\t -0.18514401 -0.53979802 -0.63007897 -0.160025 -0.49648699 -0.59500998 -0.147505 -0.50824302 -0.59612399\n\t\t -0.14247499 -0.54294997 -0.61071998 -0.155504 -0.54848099 -0.621234 -0.17467 -0.55650097 -0.63039702\n\t\t -0.25647601 -0.52935803 -0.61867797 -0.26829299 -0.501203 -0.59269702 -0.270776 -0.542436 -0.61503601\n\t\t -0.29028699 -0.52131701 -0.58709598 -0.30403399 -0.54792601 -0.58233899 -0.282213 -0.579175 -0.60977298\n\t\t -0.30787599 -0.57782203 -0.57900101 -0.30589899 -0.59288102 -0.57799703 -0.30135 -0.60739899 -0.57748502\n\t\t -0.27345401 -0.60721201 -0.60878098 -0.29440501 -0.62094402 -0.57747501 -0.28524199 -0.63308799 -0.57797402\n\t\t -0.26149499 -0.651793 -0.58040702 -0.233513 -0.63342297 -0.61334401 -0.23297501 -0.66125602 -0.58449298\n\t\t -0.20311999 -0.66033602 -0.589737 -0.196164 -0.62554801 -0.62050599 -0.175532 -0.64914501 -0.59550798\n\t\t -0.163643 -0.640082 -0.59837502 -0.153538 -0.62903202 -0.60110998 -0.197861 -0.67001301 -0.57295102\n\t\t -0.166668 -0.657359 -0.579476 -0.153226 -0.64711201 -0.582717 -0.23161601 -0.67105198 -0.56702101\n\t\t -0.263863 -0.660353 -0.562401 -0.290712 -0.63920498 -0.55965 -0.159109 -0.662857 -0.56165498\n\t\t -0.14452501 -0.65174001 -0.56517202 -0.19295099 -0.67658597 -0.55457598 -0.188217 -0.68160701 -0.53540701\n\t\t -0.15220299 -0.66699702 -0.54294097 -0.22957399 -0.67771399 -0.54814303 -0.264559 -0.66610497 -0.54313099\n\t\t -0.26442 -0.67045403 -0.52322799 -0.29368901 -0.643161 -0.54014599 -0.29541901 -0.64603698 -0.520051\n\t\t -0.307381 -0.63018399 -0.5194 -0.30492899 -0.62826401 -0.53953397 -0.30393401 -0.62754399 -0.54457802\n\t\t -0.30230799 -0.62636799 -0.55282199 -0.303101 -0.62491798 -0.55263901 -0.304418 -0.619798 -0.55747902\n\t\t -0.30406299 -0.61964101 -0.55909097 -0.30892399 -0.61015898 -0.55909801 -0.31184 -0.60085201 -0.55942601\n\t\t -0.30107301 -0.62547398 -0.55908602 -0.31406701 -0.59374499 -0.55967599 -0.31630301 -0.57671797 -0.560812\n\t\t -0.311959 -0.542916 -0.56458598 -0.29641601 -0.51283002 -0.56996399 -0.27154899 -0.490089 -0.57629699\n\t\t -0.31674099 -0.53869402 -0.54550099 -0.32145399 -0.57536697 -0.54140699 -0.32496601 -0.573892 -0.521393\n\t\t -0.299878 -0.50605297 -0.55133498 -0.27289799 -0.48137999 -0.55820698 -0.23905601 -0.46765101 -0.56528598\n\t\t -0.202433 -0.46652299 -0.57172 -0.167448 -0.47813201 -0.57673198 -0.23728 -0.45926401 -0.54680502\n\t\t -0.15190201 -0.48832101 -0.57850897 -0.14453299 -0.48126 -0.56087601;\n\tsetAttr \".vt[1162:1327]\" -0.31774801 -0.59381503 -0.545205 -0.315543 -0.59377301 -0.55387503\n\t\t -0.322384 -0.59355003 -0.52008098 -0.19821499 -0.47031799 -0.54185098 -0.23261701 -0.471378 -0.53580803\n\t\t -0.167136 -0.48214599 -0.55688798 -0.266193 -0.48519799 -0.53948599 -0.291538 -0.50837499 -0.53303099\n\t\t -0.28975201 -0.507451 -0.52270198 -0.30737901 -0.53903699 -0.527551 -0.305592 -0.538113 -0.51722097\n\t\t -0.31180599 -0.57348597 -0.52370501 -0.30952701 -0.59083998 -0.52254701 -0.30774099 -0.58991599 -0.512218\n\t\t -0.28572401 -0.63717097 -0.52252001 -0.25836101 -0.65872401 -0.52532399 -0.256574 -0.65780002 -0.51499599\n\t\t -0.22549599 -0.66962898 -0.53003198 -0.15930299 -0.65567303 -0.54272598 -0.157517 -0.65474898 -0.53239697\n\t\t -0.145604 -0.64522898 -0.54602897 -0.133959 -0.632496 -0.54918098 -0.132173 -0.63157201 -0.53885198\n\t\t -0.124691 -0.61789101 -0.55208898 -0.122905 -0.61696702 -0.54176098 -0.188995 -0.45957401 -0.494003\n\t\t -0.229811 -0.45726901 -0.50566298 -0.19142599 -0.45608601 -0.512407 -0.220708 -0.46727499 -0.46919501\n\t\t -0.26528201 -0.47165799 -0.498243 -0.25189999 -0.479929 -0.46267 -0.29356 -0.497518 -0.491041\n\t\t -0.276768 -0.50266999 -0.45633599 -0.31123501 -0.53173101 -0.48492599 -0.29231101 -0.53275597 -0.450959\n\t\t -0.31617501 -0.57016897 -0.480634 -0.296655 -0.566558 -0.44718501 -0.31363201 -0.589531 -0.479343\n\t\t -0.29441899 -0.58358401 -0.446049 -0.29885501 -0.62561202 -0.47867101 -0.28142399 -0.61531299 -0.44545901\n\t\t -0.28707299 -0.64122599 -0.47931299 -0.271063 -0.629044 -0.446022 -0.256542 -0.66527498 -0.48244199\n\t\t -0.244215 -0.65019202 -0.44877401 -0.219873 -0.67744201 -0.487694 -0.211968 -0.66089201 -0.45339301\n\t\t -0.18148699 -0.67625898 -0.49443799 -0.178213 -0.65985203 -0.45932299 -0.146016 -0.66187 -0.501858\n\t\t -0.14702 -0.64719898 -0.465848 -0.117738 -0.63600999 -0.50906003 -0.122152 -0.62445801 -0.47218201\n\t\t -0.107396 -0.61971402 -0.51230502 -0.113058 -0.61012697 -0.475036 -0.13574401 -0.60663003 -0.438667\n\t\t -0.12889101 -0.59583098 -0.44081801 -0.154484 -0.62376797 -0.43389401 -0.17799 -0.63330299 -0.42897701\n\t\t -0.203428 -0.63408703 -0.42450801 -0.22772899 -0.62602401 -0.421027 -0.247962 -0.61008698 -0.41895401\n\t\t -0.25577 -0.59973902 -0.418529 -0.265562 -0.57582903 -0.41897401 -0.26724699 -0.562998 -0.41982901\n\t\t -0.26397401 -0.537525 -0.42267299 -0.25226101 -0.514853 -0.42672601 -0.233521 -0.497715 -0.431499\n\t\t -0.21544901 -0.476951 -0.452409 -0.149866 -0.57402903 -0.61992502 -0.153185 -0.59985399 -0.61704201\n\t\t -0.16506 -0.62283897 -0.61293298 -0.231677 -0.540299 -0.60667801 -0.207113 -0.54389399 -0.61060399\n\t\t -0.19034199 -0.56257403 -0.61183399 -0.187748 -0.561903 -0.63286602 -0.186415 -0.59143102 -0.63045597\n\t\t -0.18759599 -0.57502002 -0.61119598 -0.184508 -0.57658798 -0.63211298 -0.18921299 -0.58759999 -0.60979098\n\t\t -0.204161 -0.61462897 -0.625314 -0.193241 -0.60464299 -0.62809497 -0.21586099 -0.61197001 -0.60300398\n\t\t -0.246841 -0.61594301 -0.61781597 -0.23268101 -0.62064201 -0.61984402 -0.25863099 -0.60665703 -0.61660701\n\t\t -0.25041801 -0.60050398 -0.59805399 -0.263181 -0.60062701 -0.616359 -0.25911 -0.58358502 -0.59806401\n\t\t -0.25427401 -0.59539402 -0.597844 -0.269869 -0.57921702 -0.617118 -0.259942 -0.57724899 -0.59848702\n\t\t -0.261136 -0.55116302 -0.62113601 -0.25254101 -0.55347103 -0.60189199 -0.26796201 -0.56437403 -0.61877501\n\t\t -0.25021601 -0.54117602 -0.623918 -0.243286 -0.545008 -0.60425001 -0.22376899 -0.57613403 -0.60484099\n\t\t -0.21911401 -0.53991199 -0.60888499 -0.25832599 -0.564668 -0.59989101 -0.24042501 -0.60837501 -0.599078\n\t\t -0.228424 -0.61235702 -0.600797 -0.204252 -0.607261 -0.60543197 -0.194997 -0.59879702 -0.60778999\n\t\t -0.19712099 -0.55176401 -0.611628 -0.196521 -0.45714 -0.54332298 -0.156719 -0.46816301 -0.53378701\n\t\t -0.142747 -0.48033601 -0.550547 -0.300219 -0.49920601 -0.52162999 -0.32317999 -0.57296801 -0.51106399\n\t\t -0.32059801 -0.59262699 -0.50975198 -0.121705 -0.63981801 -0.53992498 -0.200001 -0.47124201 -0.55217999\n\t\t -0.16107599 -0.47041699 -0.55898499 -0.19830699 -0.45806301 -0.55365098 -0.234403 -0.47230199 -0.54613698\n\t\t -0.273294 -0.47387299 -0.539271 -0.30200499 -0.50012898 -0.531959 -0.319951 -0.53486502 -0.52574903\n\t\t -0.15253299 -0.49171799 -0.55855697 -0.22719 -0.68280703 -0.528561 -0.191094 -0.66856903 -0.53607601\n\t\t -0.136683 -0.65516597 -0.54668301 -0.235494 -0.45833999 -0.53647602 -0.15929 -0.469493 -0.54865497\n\t\t -0.16535001 -0.48122299 -0.54655898 -0.150747 -0.49079499 -0.54822803 -0.137987 -0.50277603 -0.54936302\n\t\t -0.12829199 -0.49391001 -0.55183202 -0.26440701 -0.484274 -0.52915698 -0.27150801 -0.47295001 -0.52894199\n\t\t -0.318165 -0.53394198 -0.51542097 -0.31001899 -0.57256299 -0.513376 -0.30559501 -0.62926 -0.50907099\n\t\t -0.29449701 -0.622253 -0.511617 -0.28393701 -0.63624698 -0.512191 -0.29363301 -0.64511299 -0.50972199\n\t\t -0.26263499 -0.66952997 -0.51289898 -0.223709 -0.66870499 -0.51970398 -0.225403 -0.68188399 -0.51823199\n\t\t -0.189307 -0.66764498 -0.525747 -0.18643101 -0.68068302 -0.525078 -0.150417 -0.66607398 -0.53261203\n\t\t -0.111206 -0.62327302 -0.54321998 -0.29894599 -0.613644 -0.55752498 -0.30686101 -0.59694803 -0.55786097\n\t\t -0.312493 -0.60008198 -0.55784601 -0.29690099 -0.61844403 -0.55257398 -0.29624099 -0.62111199 -0.54437399\n\t\t -0.296249 -0.62150002 -0.54198802 -0.29628301 -0.62317699 -0.52194601 -0.315207 -0.59535801 -0.55318898\n\t\t -0.30969399 -0.59089899 -0.54193801 -0.31902799 -0.59384 -0.54017401 -0.30968201 -0.59090298 -0.54476899\n\t\t -0.30895701 -0.59241998 -0.55302 0.11771 0.147172 1.14557302 0.114367 0.152559 1.15216506\n\t\t 0.119396 0.14718901 1.14872205 0.112308 0.152943 1.14927101 0.10982 0.160483 1.15295804\n\t\t 0.112052 0.159578 1.15559602 0.133699 0.143976 1.14026797 0.110641 0.168602 1.15605104\n\t\t 0.11465 0.176111 1.15809798 0.122656 0.17943899 1.16101003;\n\tsetAttr \".vt[1328:1493]\" 0.121213 0.181823 1.15877402 0.12937 0.184902 1.15798104\n\t\t 0.130248 0.18230399 1.160272 0.13812301 0.182266 1.158283 0.137832 0.184861 1.15584505\n\t\t 0.14535899 0.181706 1.15267706 0.150157 0.173959 1.15189195 0.15076099 0.175935 1.14897799\n\t\t 0.153249 0.168395 1.14529097 0.152472 0.166941 1.14846003 0.15170801 0.159384 1.14558101\n\t\t 0.152428 0.160275 1.14219797 0.14841899 0.152767 1.14015102 0.14797699 0.152395 1.143677\n\t\t 0.141856 0.147055 1.13947499 0.139292 0.15121099 1.12914002 0.131118 0.14812601 1.12993503\n\t\t 0.12264 0.148167 1.13207603 0.125237 0.144017 1.14240396 0.145869 0.15693399 1.12981796\n\t\t 0.149886 0.16445801 1.13186896 0.150708 0.172594 1.13496804 0.14821599 0.18015 1.13866305\n\t\t 0.142802 0.185932 1.14236903 0.13526 0.18909299 1.14554405 0.126782 0.189135 1.14768398\n\t\t 0.118608 0.18605 1.14847898 0.112031 0.180326 1.147802 0.108014 0.172802 1.145751\n\t\t 0.107192 0.164667 1.14265096 0.109684 0.157111 1.13895595 0.115098 0.151329 1.13524997\n\t\t 0.117173 0.16051 1.15469205 0.112816 0.167134 1.158476 0.117743 0.166152 1.15684199\n\t\t 0.12640101 0.144252 1.14577401 0.133766 0.149039 1.14587295 0.134276 0.144214 1.143785\n\t\t 0.141868 0.14707901 1.14304698 0.146781 0.160366 1.14721501 0.14186899 0.175258 1.15449703\n\t\t 0.145129 0.17932899 1.155334 0.12509 0.17534 1.15873396 0.116547 0.174123 1.16038001\n\t\t 0.11754 0.162809 1.14946997 0.11805 0.167851 1.15139103 0.117998 0.161614 1.15234399\n\t\t 0.119085 0.15812699 1.14717996 0.119572 0.156844 1.15001202 0.12244 0.154543 1.14488399\n\t\t 0.133102 0.151172 1.14431703 0.120539 0.17251401 1.15266204 0.124615 0.176062 1.15308201\n\t\t 0.130365 0.17705999 1.15552104 0.12968101 0.177974 1.15259004 0.135717 0.17703401 1.15417004\n\t\t 0.13493501 0.177948 1.151263 0.13961001 0.175989 1.14929605 0.14495 0.16148201 1.14553702\n\t\t 0.14399999 0.16268 1.14278805 0.14150999 0.15801699 1.14151704 0.13743401 0.15447 1.14109695\n\t\t 0.118517 0.16675 1.15430105 0.118901 0.15527 1.15213001 0.122656 0.151261 1.14955997\n\t\t 0.122989 0.153194 1.14767206 0.127886 0.149068 1.14735794 0.120529 0.17137 1.15826404\n\t\t 0.121053 0.1715 1.15559494 0.125205 0.17511301 1.15602303 0.130758 0.177479 1.15818298\n\t\t 0.136638 0.17745 1.15669799 0.140478 0.17503799 1.15216601 0.143896 0.171388 1.149827\n\t\t 0.145623 0.171248 1.15192699 0.147352 0.166008 1.14936399 0.14546899 0.166618 1.14749396\n\t\t 0.143995 0.155148 1.14579296 0.142414 0.15673301 1.144243 0.138262 0.15312 1.14381504\n\t\t 0.13943399 0.151179 1.14532197 0.12774999 0.151198 1.14566803 0.132368 0.152558 1.14158905\n\t\t 0.127114 0.152584 1.14291596 0.144509 0.167722 1.14470899 0.142965 0.172405 1.146999\n\t\t 0.52413201 0.64532501 0.66080499 0.47572801 0.65727299 0.741166 0.54140502 0.63982499 0.62471902\n\t\t 0.53912902 0.65119398 0.60626799 0.522412 0.65758198 0.640414 0.47539601 0.67036802 0.71968597\n\t\t 0.42350501 0.66529697 0.80296499 0.42167401 0.67987198 0.783979 0.47501501 0.67582202 0.70879102\n\t\t 0.40412301 0.68725699 0.79295599 0.39921901 0.66799998 0.82598603 0.53711498 0.65620899 0.59841001\n\t\t 0.55006498 0.64579701 0.58535099 0.56755 0.63446897 0.55567998 0.55228698 0.63657802 0.59962499\n\t\t 0.55185699 0.631859 0.60980201 0.56761599 0.63192499 0.562163 0.568694 0.63237101 0.55678701\n\t\t 0.46606299 0.62767398 0.74870098 0.42573199 0.65064001 0.82480198 0.48272401 0.64259303 0.75764698\n\t\t 0.40497699 0.63607401 0.82079399 0.40764499 0.65525597 0.83931798 0.51398098 0.61672801 0.66807801\n\t\t 0.53189099 0.63088202 0.67638099 0.53088301 0.61207998 0.63099998 0.54931802 0.62592399 0.63955802\n\t\t 0.559861 0.62432301 0.613433 0.54147899 0.61028498 0.60345602 0.55956602 0.61074299 0.545955\n\t\t 0.577106 0.62546301 0.56101102 0.57840103 0.62835097 0.54991603 0.56097603 0.61472797 0.53373802\n\t\t 0.55426002 0.62882799 0.52489603 0.54733801 0.63681102 0.52842599 0.52189702 0.656519 0.559192\n\t\t 0.509772 0.66356403 0.578637 0.51787102 0.67291701 0.62600702 0.49297601 0.67019898 0.61169899\n\t\t 0.44713199 0.68269998 0.68907201 0.38868001 0.69364399 0.75873899 0.41455701 0.696522 0.77283603\n\t\t 0.369183 0.69368702 0.78250402 0.39166501 0.69553298 0.80326098 0.36453101 0.69139999 0.79110998\n\t\t 0.360562 0.68410301 0.80562001 0.367971 0.65464801 0.83757401 0.37557501 0.64634597 0.84038502\n\t\t 0.38321501 0.64146602 0.83841801 0.38820899 0.69104397 0.81491297 0.394326 0.66735399 0.839935\n\t\t 0.39536101 0.683474 0.80976099 0.39861599 0.68599898 0.80175 0.40251899 0.66467798 0.82634002\n\t\t 0.40015101 0.66036397 0.84163201 0.410436 0.65996897 0.823439 0.39654601 0.69724798 0.79430598\n\t\t 0.42050701 0.68611598 0.77450699 0.471376 0.68592101 0.70453203 0.52108902 0.66275901 0.63062602\n\t\t 0.53449398 0.66630501 0.59319699 0.54550397 0.66021597 0.57542002 0.54741198 0.65029699 0.58125401\n\t\t 0.56685299 0.644526 0.54973 0.56543398 0.63668001 0.558258 0.57266998 0.63856101 0.54468697\n\t\t 0.54166698 0.63347203 0.63531202 0.52452898 0.638246 0.67140901 0.47567901 0.64963198 0.75174999\n\t\t 0.42416799 0.65696597 0.81247902 0.285211 0.115302 1.056808949 0.28501701 0.13229901 1.080260038\n\t\t 0.294453 0.115386 1.063333035 0.27507201 0.13347401 1.074996948 0.273139 0.157307 1.089028001\n\t\t 0.283218 0.15448 1.093319058 0.27971801 0.183034 1.096686006 0.29384601 0.20688701 1.096848965\n\t\t 0.31328899 0.225098 1.089491963 0.33520001 0.234999 1.075693011;\n\tsetAttr \".vt[1494:1659]\" 0.34097901 0.22679 1.080906987 0.35611799 0.235027 1.057629943\n\t\t 0.372978 0.22517601 1.037950039 0.38557601 0.200735 1.028853059 0.38311699 0.207004 1.019762993\n\t\t 0.38504899 0.183172 1.0057320595 0.38125199 0.15460899 1.0086669922 0.37847 0.157445 0.998074\n\t\t 0.36434299 0.133591 0.99791002 0.368103 0.13240799 1.0085150003 0.350007 0.115459 1.015362024\n\t\t 0.34490001 0.115381 1.005267024 0.32298899 0.105479 1.019068003 0.32961401 0.106243 1.028205991\n\t\t 0.32085201 0.129713 0.97730601 0.29889199 0.11979 0.99113601 0.27792799 0.119762 1.0092389584\n\t\t 0.30207101 0.105451 1.037129998 0.34033799 0.147965 0.96993297 0.354496 0.17187101 0.97009701\n\t\t 0.36109 0.19765501 0.977772 0.359153 0.22154 0.99183398 0.34899199 0.23975199 1.010061026\n\t\t 0.33209401 0.249625 1.029783964 0.31112999 0.249597 1.047886968 0.28917 0.239674 1.061717033\n\t\t 0.26968399 0.221423 1.069090962 0.25552601 0.19751599 1.06892705 0.248932 0.17173301 1.061251998\n\t\t 0.25086901 0.147847 1.047188997 0.26102999 0.12963501 1.028962016 0.31014499 0.106218 1.04501605\n\t\t 0.289341 0.178425 1.10044706 0.30098501 0.17540801 1.088819981 0.29775599 0.14096899 1.073747993\n\t\t 0.30480099 0.128341 1.061108947 0.31651801 0.121495 1.047433972 0.33105299 0.121514 1.034881949\n\t\t 0.34628001 0.12839501 1.025292039 0.35979101 0.14105 1.020179987 0.387375 0.178553 1.015794039\n\t\t 0.36579201 0.204693 1.048004031 0.37614 0.217648 1.045779943 0.35407501 0.211538 1.061679006\n\t\t 0.360448 0.226816 1.064097047 0.33954 0.211519 1.074231029 0.32431301 0.204639 1.083821058\n\t\t 0.320586 0.217575 1.093750954 0.30249 0.200626 1.10059905 0.28999999 0.16481701 1.068214059\n\t\t 0.294085 0.180793 1.072970033 0.29539701 0.16103999 1.075688004 0.29120001 0.15001699 1.059501052\n\t\t 0.29749599 0.138731 1.048205972 0.30303299 0.13447 1.055307984 0.302858 0.19560599 1.073071003\n\t\t 0.314933 0.20691501 1.068503022 0.34153 0.213081 1.048715949 0.36496401 0.192476 1.031873941\n\t\t 0.36618599 0.17740101 1.022999048 0.36202401 0.161128 1.018154979 0.35541099 0.164902 1.011731029\n\t\t 0.35308799 0.14603899 1.018051028 0.34663799 0.150089 1.011630058 0.32095599 0.132631 1.024767995\n\t\t 0.31369799 0.12823901 1.042860031 0.30796599 0.132614 1.035984993 0.29955801 0.177314 1.080531955\n\t\t 0.296413 0.15752999 1.083498001 0.296619 0.145965 1.066812038 0.31080201 0.191984 1.088932991\n\t\t 0.30849499 0.19240201 1.080634952 0.32079399 0.203922 1.075981975 0.334654 0.21018501 1.067252994\n\t\t 0.34788501 0.21020199 1.055827022 0.35855001 0.203971 1.043378949 0.37283701 0.192065 1.035364985\n\t\t 0.37417999 0.175504 1.025614977 0.36960801 0.157626 1.020292997 0.34078899 0.13451999 1.022704959\n\t\t 0.326929 0.12825599 1.031434059 0.359496 0.180879 1.016487002 0.334564 0.13878 1.016198039\n\t\t 0.32854 0.213064 1.059932947 0.352 0.206964 1.03649497 0.35829601 0.19567899 1.025200009\n\t\t 0.92436498 -0.080376998 0.54885697 0.89841998 -0.109616 0.58723199 0.91276699 -0.11017 0.59041703\n\t\t 0.91044998 -0.079047002 0.54434597 0.89689702 -0.112276 0.59539801 0.91132897 -0.112971 0.597601\n\t\t 0.89681798 -0.110218 0.60083997 0.91118503 -0.11157 0.60215902 0.92771798 -0.070128001 0.53970301\n\t\t 0.91399997 -0.068319 0.53490901 0.92930102 -0.064195 0.53724098 0.91573298 -0.061981998 0.53233999\n\t\t 0.89764601 -0.106213 0.60225201 0.91187501 -0.108144 0.60327399 0.91278601 -0.104074 0.60364801\n\t\t 0.93036801 -0.059517 0.53668201 0.91696399 -0.056772001 0.53182602 0.943892 0.0032250001 0.54308999\n\t\t 0.93046099 0.0059770001 0.53822398 0.94477302 0.0079960003 0.544631 0.93149197 0.011273 0.53994\n\t\t 0.94561398 0.013295 0.54837799 0.93242401 0.016913 0.54395401 0.94644499 0.02091 0.55900502\n\t\t 0.93332899 0.024870999 0.55500501 0.94696802 0.038446002 0.60265398 0.93381703 0.042794999 0.59996802\n\t\t 0.94654697 0.039101999 0.61026502 0.93320698 0.043235 0.60838503 0.94555497 0.036222 0.61464298\n\t\t 0.93199998 0.039751001 0.61343098 0.94459999 0.032117002 0.61515301 0.93075401 0.035151001 0.61416602\n\t\t 0.94356602 0.027512999 0.61473101 0.92954701 0.03002 0.613729 0.89873999 -0.10156 0.60264701\n\t\t 0.946935 0.018497 0.56047398 0.94711697 0.036384001 0.60910398 0.94647402 0.034924001 0.61240399\n\t\t 0.94565701 0.031684998 0.612804 0.913881 -0.104132 0.60136497 0.94534898 0.00661 0.54699898\n\t\t 0.94460499 0.002781 0.54568601 0.93017602 -0.063739002 0.53973299 0.912736 -0.110635 0.59714597\n\t\t 0.91245103 -0.110452 0.60024601 0.92544502 -0.078910001 0.55065799 0.913939 -0.108257 0.59138298\n\t\t 0.93108201 -0.059962999 0.539285 0.92869598 -0.069140002 0.54194701 0.94466197 0.027455 0.61244297\n\t\t 0.94745898 0.035666998 0.60297698 0.94613099 0.011356 0.550403 0.91301 -0.107833 0.60105097\n\t\t 0.75243402 0.42154199 0.31850901 0.78760898 0.35399699 0.171459 0.748375 0.42515001 0.33607301\n\t\t 0.752689 0.37661901 0.35225499 0.72438902 0.48971701 0.37661001 0.724563 0.48605499 0.379787\n\t\t 0.620794 0.49639899 0.721057 0.62589699 0.43006101 0.74444503 0.69698203 0.46443301 0.54137301\n\t\t 0.74510503 0.38937801 0.41844401 0.74116498 0.43838999 0.40094799 0.56906801 0.510167 0.812599\n\t\t 0.75594801 0.42771399 0.341371 0.68985099 0.51614398 0.51877201 0.73430902 0.48555699 0.384644\n\t\t 0.61426598 0.55204898 0.69072199 0.50761098 0.52031499 0.89855403 0.50358099 0.57980299 0.86254197\n\t\t 0.39236501 0.53091401 1.02018702 0.28712001 0.59969503 1.059507966 0.28437099 0.529356 1.10046804\n\t\t 0.395013 0.453639 1.047621965 0.51205701 0.446482 0.92435801 0.29024401 0.45659199 1.12509406\n\t\t 0.26548499 0.52813798 1.11383104 0.729873 0.38215101 0.13447;\n\tsetAttr \".vt[1660:1825]\" 0.72728002 0.38147601 0.132973 0.74420899 0.38591501 0.142747\n\t\t 0.78160602 0.39562199 0.164341 0.77372003 0.438649 0.15637 0.74463397 0.47243601 0.30302101\n\t\t 0.71781301 0.44613501 0.12297 0.68299198 0.484667 0.28504699 0.71503597 0.44637901 0.121321\n\t\t 0.66361898 0.50058299 0.355322 0.61913002 0.52941102 0.489337 0.54679197 0.56049401 0.653642\n\t\t 0.55351597 0.57089299 0.77200401 0.49904701 0.57350999 0.73664302 0.49412501 0.58261198 0.85477901\n\t\t 0.44326001 0.58318698 0.81450999 0.34376699 0.59324902 0.92143899 0.21742301 0.597763 1.0056120157\n\t\t 0.20554399 0.59214401 1.016137004 0.198291 0.58643001 1.023874044 0.194351 0.57771599 1.031075001\n\t\t 0.25788 0.58446002 1.074512959 0.19048899 0.50106698 1.073564053 0.26061201 0.466506 1.12740004\n\t\t 0.202519 0.42662701 1.095098972 0.26585799 0.45619199 1.12756705 0.208159 0.416572 1.095463991\n\t\t 0.228671 0.40438899 1.087767005 0.27978 0.44624799 1.12165105 0.35914099 0.40261301 1.0019030571\n\t\t 0.39017799 0.44372699 1.041514993 0.464035 0.39715901 0.889157 0.52135998 0.39129901 0.80760998\n\t\t 0.61804003 0.42070401 0.74132699 0.56938499 0.382936 0.720245 0.64014 0.362744 0.54619998\n\t\t 0.68309498 0.34506199 0.402877 0.70225 0.33612901 0.32687801 0.75707603 0.37060499 0.33498999\n\t\t 0.73637098 0.316598 0.143407 0.73883301 0.318257 0.144767 0.67984903 0.51661497 0.514934\n\t\t 0.67907602 0.52044898 0.51380199 0.60386699 0.55560398 0.68462002 0.554488 0.56714201 0.77325797\n\t\t 0.49513 0.57889497 0.85610598 0.38454199 0.59190601 0.974235 0.383641 0.59556901 0.97269702\n\t\t 0.27540699 0.601919 1.052274942 0.26875299 0.59859502 1.058876991 0.261832 0.592978 1.06694901\n\t\t 0.260167 0.581451 1.075587034 0.25435999 0.52420503 1.10982096 0.26306701 0.469978 1.12654495\n\t\t 0.28199899 0.45043099 1.12059295 0.50487798 0.440763 0.918899 0.50547999 0.43681201 0.91968399\n\t\t 0.56683201 0.430031 0.83333403 0.61748302 0.424674 0.74060899 0.692707 0.39877999 0.56023598\n\t\t 0.73611599 0.38431701 0.41510499 0.73704302 0.37993199 0.41412199 0.74118 0.47260699 0.321511\n\t\t 0.74917603 0.47255501 0.32761899 0.60477602 0.55181998 0.685821 0.56353903 0.56773698 0.77887601\n\t\t 0.39120001 0.59325403 0.98242199 0.27770799 0.59809703 1.053611994 0.27134001 0.59516001 1.059859037\n\t\t 0.28161201 0.59711498 1.064910054 0.27456599 0.59168899 1.073007941 0.264294 0.58977199 1.067963958\n\t\t 0.270417 0.58337301 1.080641985 0.25537899 0.52426499 1.10970199 0.27242801 0.47589701 1.130283\n\t\t 0.277803 0.465689 1.13041794 0.26853201 0.45983201 1.12659204 0.38963601 0.447658 1.040596962\n\t\t 0.57411498 0.43955001 0.83722401 0.566248 0.433992 0.832591 0.69220799 0.40276501 0.55956203\n\t\t 0.70129198 0.40783 0.56217301 0.76012701 0.38124999 0.35684499 0.76096398 0.39790699 0.19295301\n\t\t 0.76727903 0.39180899 0.156074 0.77164298 0.36245599 0.161143 0.765329 0.368554 0.19802301\n\t\t 0.74380702 0.35112399 0.18626601 0.73789501 0.392014 0.179626 0.750121 0.34502599 0.149386\n\t\t 0.73654002 0.42746001 0.135354 0.73022598 0.433559 0.172233 0.76174998 0.42266899 0.150406\n\t\t 0.755436 0.428767 0.18728501 -0.109403 0.152559 1.15216506 -0.112746 0.147172 1.14557302\n\t\t -0.114432 0.14718901 1.14872205 -0.107344 0.152943 1.14927101 -0.104856 0.160483 1.15295804\n\t\t -0.121437 0.144252 1.14577401 -0.12873501 0.143976 1.14026797 -0.105677 0.168602 1.15605104\n\t\t -0.109686 0.176111 1.15809798 -0.117692 0.17943899 1.16101003 -0.11625 0.181823 1.15877402\n\t\t -0.124407 0.184902 1.15798104 -0.125284 0.18230399 1.160272 -0.133159 0.182266 1.158283\n\t\t -0.13286801 0.184861 1.15584505 -0.140395 0.181706 1.15267706 -0.145193 0.173959 1.15189195\n\t\t -0.145797 0.175935 1.14897799 -0.148285 0.168395 1.14529097 -0.146744 0.159384 1.14558101\n\t\t -0.14746401 0.160275 1.14219797 -0.143455 0.152767 1.14015102 -0.13689201 0.147055 1.13947499\n\t\t -0.12931199 0.144214 1.143785 -0.12615401 0.14812601 1.12993503 -0.117676 0.148167 1.13207603\n\t\t -0.120273 0.144017 1.14240396 -0.13432799 0.15121099 1.12914002 -0.14090499 0.15693399 1.12981796\n\t\t -0.144922 0.16445801 1.13186896 -0.145744 0.172594 1.13496804 -0.143252 0.18015 1.13866305\n\t\t -0.13783801 0.185932 1.14236903 -0.13029601 0.18909299 1.14554405 -0.121818 0.189135 1.14768398\n\t\t -0.113644 0.18605 1.14847898 -0.107067 0.180326 1.147802 -0.10305 0.172802 1.145751\n\t\t -0.102228 0.164667 1.14265096 -0.10472 0.157111 1.13895595 -0.110134 0.151329 1.13524997\n\t\t -0.107852 0.167134 1.158476 -0.112779 0.166152 1.15684199 -0.107088 0.159578 1.15559602\n\t\t -0.128802 0.149039 1.14587295 -0.13447 0.151179 1.14532197 -0.136904 0.14707901 1.14304698\n\t\t -0.143013 0.152395 1.143677 -0.141817 0.160366 1.14721501 -0.142388 0.166008 1.14936399\n\t\t -0.147508 0.166941 1.14846003 -0.140165 0.17932899 1.155334 -0.115565 0.17137 1.15826404\n\t\t -0.111583 0.174123 1.16038001 -0.113553 0.16675 1.15430105 -0.113086 0.167851 1.15139103\n\t\t -0.113034 0.161614 1.15234399 -0.114121 0.15812699 1.14717996 -0.117476 0.154543 1.14488399\n\t\t -0.12215 0.152584 1.14291596 -0.122786 0.151198 1.14566803 -0.128139 0.151172 1.14431703\n\t\t -0.116089 0.1715 1.15559494 -0.119651 0.176062 1.15308201 -0.12540101 0.17705999 1.15552104\n\t\t -0.124717 0.177974 1.15259004 -0.130753 0.17703401 1.15417004 -0.129971 0.177948 1.151263\n\t\t -0.138932 0.171388 1.149827 -0.13998599 0.16148201 1.14553702 -0.139036 0.16268 1.14278805\n\t\t -0.13744999 0.15673301 1.144243 -0.13329799 0.15312 1.14381504;\n\tsetAttr \".vt[1826:1991]\" -0.13247 0.15447 1.14109695 -0.127405 0.152558 1.14158905\n\t\t -0.112209 0.16051 1.15469205 -0.114608 0.156844 1.15001202 -0.113937 0.15527 1.15213001\n\t\t -0.117692 0.151261 1.14955997 -0.118025 0.153194 1.14767206 -0.122922 0.149068 1.14735794\n\t\t -0.120241 0.17511301 1.15602303 -0.120126 0.17534 1.15873396 -0.12579399 0.177479 1.15818298\n\t\t -0.13167401 0.17745 1.15669799 -0.136905 0.175258 1.15449703 -0.13551401 0.17503799 1.15216601\n\t\t -0.140659 0.171248 1.15192699 -0.140505 0.166618 1.14749396 -0.13903099 0.155148 1.14579296\n\t\t -0.112576 0.162809 1.14946997 -0.13954499 0.167722 1.14470899 -0.115575 0.17251401 1.15266204\n\t\t -0.134646 0.175989 1.14929605 -0.13800099 0.172405 1.146999 -0.136546 0.15801699 1.14151704\n\t\t -0.51916999 0.64532501 0.66080499 -0.47076401 0.65727299 0.741166 -0.536443 0.63982499 0.62471902\n\t\t -0.53670502 0.63347203 0.63531202 -0.53416699 0.65119398 0.60626799 -0.51744998 0.65758198 0.640414\n\t\t -0.47043201 0.67036802 0.71968597 -0.419204 0.65696597 0.81247902 -0.41854101 0.66529697 0.80296499\n\t\t -0.41671199 0.67987198 0.783979 -0.39916101 0.68725699 0.79295599 -0.394256 0.66799998 0.82598603\n\t\t -0.53215301 0.65620899 0.59841001 -0.40547201 0.65996897 0.823439 -0.54245001 0.65029699 0.58125401\n\t\t -0.54510301 0.64579701 0.58535099 -0.54732502 0.63657802 0.59962499 -0.54689503 0.631859 0.60980201\n\t\t -0.400013 0.63607401 0.82079399 -0.461099 0.62767398 0.74870098 -0.42076799 0.65064001 0.82480198\n\t\t -0.37825099 0.64146602 0.83841801 -0.40268099 0.65525597 0.83931798 -0.52692902 0.63088202 0.67638099\n\t\t -0.50901902 0.61672801 0.66807801 -0.54435599 0.62592399 0.63955802 -0.52592099 0.61207998 0.63099998\n\t\t -0.53651702 0.61028498 0.60345602 -0.55460399 0.61074299 0.545955 -0.573439 0.62835097 0.54991603\n\t\t -0.556014 0.61472797 0.53373802 -0.56770802 0.63856101 0.54468697 -0.54929799 0.62882799 0.52489603\n\t\t -0.56189102 0.644526 0.54973 -0.54237598 0.63681102 0.52842599 -0.51693499 0.656519 0.559192\n\t\t -0.52953202 0.66630501 0.59319699 -0.50480998 0.66356403 0.578637 -0.512909 0.67291701 0.62600702\n\t\t -0.48801199 0.67019898 0.61169899 -0.46641499 0.68592101 0.70453203 -0.44217101 0.68269998 0.68907201\n\t\t -0.40959501 0.696522 0.77283603 -0.38371801 0.69364399 0.75873899 -0.36422101 0.69368702 0.78250402\n\t\t -0.38670301 0.69553298 0.80326098 -0.35956901 0.69139999 0.79110998 -0.3556 0.68410301 0.80562001\n\t\t -0.36300701 0.65464801 0.83757401 -0.37061101 0.64634597 0.84038502 -0.38324699 0.69104397 0.81491297\n\t\t -0.38936201 0.66735399 0.839935 -0.39039999 0.683474 0.80976099 -0.39365399 0.68599898 0.80175\n\t\t -0.39755499 0.66467798 0.82634002 -0.39518699 0.66036397 0.84163201 -0.39158401 0.69724798 0.79430598\n\t\t -0.41554499 0.68611598 0.77450699 -0.47005299 0.67582202 0.70879102 -0.51612699 0.66275901 0.63062602\n\t\t -0.54054201 0.66021597 0.57542002 -0.56047201 0.63668001 0.558258 -0.56258798 0.63446897 0.55567998\n\t\t -0.56373203 0.63237101 0.55678701 -0.57214397 0.62546301 0.56101102 -0.56265402 0.63192499 0.562163\n\t\t -0.55489898 0.62432301 0.613433 -0.51956701 0.638246 0.67140901 -0.47071499 0.64963198 0.75174999\n\t\t -0.47775999 0.64259303 0.75764698 -0.280247 0.115302 1.056808949 -0.289489 0.115386 1.063333035\n\t\t -0.27010801 0.13347401 1.074996948 -0.26817501 0.157307 1.089028001 -0.28437799 0.178425 1.10044706\n\t\t -0.274755 0.183034 1.096686006 -0.28888199 0.20688701 1.096848965 -0.315622 0.217575 1.093750954\n\t\t -0.30832499 0.225098 1.089491963 -0.33023599 0.234999 1.075693011 -0.35548401 0.226816 1.064097047\n\t\t -0.351154 0.235027 1.057629943 -0.36801401 0.22517601 1.037950039 -0.371176 0.217648 1.045779943\n\t\t -0.378153 0.207004 1.019762993 -0.38008499 0.183172 1.0057320595 -0.382411 0.178553 1.015794039\n\t\t -0.376288 0.15460899 1.0086669922 -0.37350601 0.157445 0.998074 -0.35937899 0.133591 0.99791002\n\t\t -0.363139 0.13240799 1.0085150003 -0.345043 0.115459 1.015362024 -0.33993599 0.115381 1.005267024\n\t\t -0.32464999 0.106243 1.028205991 -0.293928 0.11979 0.99113601 -0.272964 0.119762 1.0092389584\n\t\t -0.29710701 0.105451 1.037129998 -0.31588799 0.129713 0.97730601 -0.335374 0.147965 0.96993297\n\t\t -0.34953201 0.17187101 0.97009701 -0.35612601 0.19765501 0.977772 -0.35418901 0.22154 0.99183398\n\t\t -0.344028 0.23975199 1.010061026 -0.32712999 0.249625 1.029783964 -0.30616701 0.249597 1.047886968\n\t\t -0.284206 0.239674 1.061717033 -0.26471999 0.221423 1.069090962 -0.25056201 0.19751599 1.06892705\n\t\t -0.243968 0.17173301 1.061251998 -0.245905 0.147847 1.047188997 -0.25606599 0.12963501 1.028962016\n\t\t -0.31802499 0.105479 1.019068003 -0.29144901 0.15752999 1.083498001 -0.29602101 0.17540801 1.088819981\n\t\t -0.278254 0.15448 1.093319058 -0.28005299 0.13229901 1.080260038 -0.29983699 0.128341 1.061108947\n\t\t -0.31155401 0.121495 1.047433972 -0.305181 0.106218 1.04501605 -0.36787301 0.192065 1.035364985\n\t\t -0.38061199 0.200735 1.028853059 -0.36082801 0.204693 1.048004031 -0.33601499 0.22679 1.080906987\n\t\t -0.297526 0.200626 1.10059905 -0.285036 0.16481701 1.068214059 -0.29043299 0.16103999 1.075688004\n\t\t -0.28623599 0.15001699 1.059501052 -0.292532 0.138731 1.048205972 -0.30300301 0.132614 1.035984993\n\t\t -0.30353099 0.19240201 1.080634952 -0.297894 0.19560599 1.073071003 -0.323576 0.213064 1.059932947\n\t\t -0.35358599 0.203971 1.043378949 -0.347036 0.206964 1.03649497 -0.35333201 0.19567899 1.025200009\n\t\t -0.35705999 0.161128 1.018154979 -0.350447 0.164902 1.011731029 -0.341674 0.150089 1.011630058\n\t\t -0.335825 0.13451999 1.022704959 -0.32960001 0.13878 1.016198039 -0.315992 0.132631 1.024767995\n\t\t -0.294595 0.177314 1.080531955 -0.291655 0.145965 1.066812038;\n\tsetAttr \".vt[1992:2157]\" -0.29279199 0.14096899 1.073747993 -0.298069 0.13447 1.055307984\n\t\t -0.30583799 0.191984 1.088932991 -0.31582999 0.203922 1.075981975 -0.31934899 0.204639 1.083821058\n\t\t -0.33457601 0.211519 1.074231029 -0.32969001 0.21018501 1.067252994 -0.34292099 0.21020199 1.055827022\n\t\t -0.34911099 0.211538 1.061679006 -0.36000001 0.192476 1.031873941 -0.369216 0.175504 1.025614977\n\t\t -0.361222 0.17740101 1.022999048 -0.36464399 0.157626 1.020292997 -0.35482699 0.14105 1.020179987\n\t\t -0.348124 0.14603899 1.018051028 -0.34131601 0.12839501 1.025292039 -0.308734 0.12823901 1.042860031\n\t\t -0.32609001 0.121514 1.034881949 -0.32196501 0.12825599 1.031434059 -0.35453299 0.180879 1.016487002\n\t\t -0.289121 0.180793 1.072970033 -0.30996901 0.20691501 1.068503022 -0.336566 0.213081 1.048715949\n\t\t -0.91684097 -0.081096001 0.54711902 -0.89345598 -0.109616 0.58723199 -0.90548599 -0.079047002 0.54434597\n\t\t -0.90481001 -0.111665 0.59000599 -0.89193302 -0.112276 0.59539801 -0.90328699 -0.114325 0.59817201\n\t\t -0.89185399 -0.110218 0.60083997 -0.90320802 -0.112267 0.60361302 -0.92039102 -0.070367999 0.53768301\n\t\t -0.90903598 -0.068319999 0.53490901 -0.92212301 -0.064030997 0.53511399 -0.91076899 -0.061981998 0.53233999\n\t\t -0.89268202 -0.106213 0.60225201 -0.90403599 -0.108262 0.60502601 -0.92335498 -0.058821 0.53460002\n\t\t -0.912 -0.056772999 0.53182602 -0.93685102 0.0039280001 0.54099798 -0.925497 0.0059770001 0.53822398\n\t\t -0.93788201 0.0092240004 0.542714 -0.92652798 0.011272 0.53994 -0.93881398 0.014864 0.54672801\n\t\t -0.92746001 0.016913 0.54395401 -0.93971997 0.022822 0.55777901 -0.92836499 0.024870999 0.55500501\n\t\t -0.94020802 0.040746 0.60274202 -0.92885298 0.042794999 0.59996802 -0.93959701 0.041186001 0.61115903\n\t\t -0.92824298 0.043235 0.60838503 -0.93830198 0.037618 0.61620498 -0.92703599 0.039751001 0.61343098\n\t\t -0.93714398 0.033101998 0.61693901 -0.92579001 0.035151001 0.61416602 -0.93593699 0.027970999 0.616503\n\t\t -0.92458302 0.03002 0.613729 -0.90513098 -0.103609 0.60542202 -0.893776 -0.10156 0.60264701\n\t\t -0.941971 0.018497 0.56047398 -0.941167 0.011356 0.550403 -0.939641 0.00278 0.54568601\n\t\t -0.92611802 -0.059964001 0.539285 -0.92048103 -0.078910999 0.55065799 -0.907772 -0.110635 0.59714597\n\t\t -0.90804601 -0.107833 0.60105097 -0.94069302 0.031684998 0.612804 -0.90891701 -0.104132 0.60136497\n\t\t -0.92373198 -0.069140002 0.54194701 -0.90897501 -0.108257 0.59138298 -0.92521203 -0.06374 0.53973299\n\t\t -0.90748698 -0.110452 0.60024601 -0.94215298 0.036382999 0.60910398 -0.94151002 0.034924001 0.61240399\n\t\t -0.94249499 0.035666 0.60297698 -0.94038498 0.0066089998 0.54699898 -0.93969798 0.027454 0.61244297\n\t\t -0.74747199 0.421087 0.31850901 -0.77664399 0.39516801 0.164341 -0.73967201 0.471982 0.30302101\n\t\t -0.74341297 0.424696 0.33607301 -0.74772698 0.376165 0.35225499 -0.71942699 0.48926201 0.37661001\n\t\t -0.61583 0.49594501 0.721057 -0.69202 0.46397799 0.54137301 -0.73620301 0.43793601 0.40094799\n\t\t -0.56410402 0.50971299 0.812599 -0.56915301 0.439096 0.83722401 -0.60930401 0.55159497 0.69072199\n\t\t -0.55857497 0.56728297 0.77887601 -0.50264901 0.51986098 0.89855403 -0.38623601 0.59280002 0.98242199\n\t\t -0.38740101 0.53045899 1.02018702 -0.27940699 0.52890199 1.10046804 -0.50709498 0.44602799 0.92435801\n\t\t -0.27283901 0.46523499 1.13041794 -0.26052099 0.52768302 1.11383104 -0.26746401 0.47544199 1.130283\n\t\t -0.26545301 0.58291799 1.080641985 -0.269602 0.59123498 1.073007941 -0.27664801 0.59666002 1.064910054\n\t\t -0.72231799 0.38147601 0.132973 -0.71285099 0.44613501 0.122971 -0.72491097 0.38215101 0.13447\n\t\t -0.71007401 0.44637901 0.121321 -0.73140901 0.316598 0.143408 -0.73387098 0.318257 0.144768\n\t\t -0.78264701 0.353542 0.17146 -0.75678802 0.42266899 0.150406 -0.73157799 0.42746001 0.135354\n\t\t -0.768758 0.43819499 0.15637 -0.67803001 0.484667 0.28504801 -0.65865701 0.50058299 0.355322\n\t\t -0.61416799 0.52941102 0.489337 -0.598903 0.55514902 0.68462002 -0.54183 0.56049401 0.653642\n\t\t -0.54855198 0.57043803 0.77200401 -0.49408299 0.57350999 0.73664302 -0.43829599 0.58318698 0.81450999\n\t\t -0.33880299 0.59324902 0.92143899 -0.27044299 0.60146397 1.052274942 -0.21246099 0.597763 1.0056120157\n\t\t -0.200582 0.59214401 1.016137004 -0.256868 0.59252399 1.06694901 -0.19332901 0.58643001 1.023874044\n\t\t -0.18938699 0.57771599 1.031075001 -0.185525 0.50106698 1.073564053 -0.249396 0.52375102 1.10982096\n\t\t -0.19755501 0.42662701 1.095098972 -0.260894 0.45573801 1.12756705 -0.20319501 0.416572 1.095463991\n\t\t -0.22370701 0.40438899 1.087767005 -0.27481601 0.445793 1.12165105 -0.385214 0.44327301 1.041514993\n\t\t -0.354177 0.40261301 1.0019030571 -0.500516 0.436358 0.91968399 -0.45907101 0.39715901 0.889157\n\t\t -0.56186801 0.42957601 0.83333403 -0.51639599 0.39129901 0.80760998 -0.564421 0.382936 0.720245\n\t\t -0.68774498 0.39832601 0.56023598 -0.635176 0.362744 0.54619998 -0.67813301 0.34506199 0.402877\n\t\t -0.69728798 0.33612901 0.32687801 -0.752114 0.37015 0.33498999 -0.674887 0.51616001 0.514934\n\t\t -0.67411202 0.51999497 0.51380199 -0.48916101 0.58215803 0.85477901 -0.37957799 0.59145099 0.974235\n\t\t -0.37867701 0.59511501 0.97269702 -0.263789 0.59814101 1.058876991 -0.26637599 0.594706 1.059859037\n\t\t -0.25933 0.58931702 1.067963958 -0.25291601 0.584005 1.074512959 -0.25564799 0.466052 1.12740004\n\t\t -0.56128401 0.43353799 0.832591 -0.61252099 0.42422 0.74060899 -0.61307597 0.42025 0.74132699\n\t\t -0.687244 0.402311 0.55956203 -0.732081 0.37947699 0.41412199 -0.75098598 0.42726001 0.341371\n\t\t -0.73621798 0.47215199 0.321511 -0.72934699 0.48510301 0.384644 -0.744214 0.47209999 0.32761899\n\t\t -0.71960098 0.48560101 0.379787 -0.68488699 0.51569003 0.51877201;\n\tsetAttr \".vt[2158:2323]\" -0.599814 0.55136597 0.685821 -0.54952401 0.56668699 0.77325797\n\t\t -0.49861801 0.57934898 0.86254197 -0.49016601 0.57844102 0.85610598 -0.28215599 0.59924102 1.059507966\n\t\t -0.272744 0.59764302 1.053611994 -0.25520301 0.58099699 1.075587034 -0.250415 0.52381003 1.10970199\n\t\t -0.25810301 0.46952301 1.12654495 -0.26356801 0.45937699 1.12659204 -0.28527999 0.456137 1.12509406\n\t\t -0.277035 0.449976 1.12059295 -0.39004999 0.45318401 1.047621965 -0.38467199 0.44720399 1.040596962\n\t\t -0.499915 0.440308 0.918899 -0.620933 0.42960599 0.74444503 -0.69632798 0.40737599 0.56217301\n\t\t -0.740143 0.38892299 0.41844401 -0.73115402 0.38386199 0.41510499 -0.75516498 0.38079599 0.35684499\n\t\t -0.73293298 0.392014 0.179627 -0.75600201 0.39790699 0.19295301 -0.76036698 0.368554 0.19802301\n\t\t -0.75047398 0.428767 0.18728501 -0.762317 0.39180899 0.156074 -0.76668102 0.36245599 0.161144\n\t\t -0.74515897 0.34502599 0.149386 -0.73884499 0.35112399 0.18626601 -0.73924702 0.38591501 0.142747\n\t\t -0.72526401 0.433559 0.172233 0.615933 -0.234543 -0.072129004 0.65405101 -0.17117099 -0.02994\n\t\t 0.655384 -0.16886599 -0.049479 0.61465901 -0.236847 -0.052531999 0.68775702 -0.037978999 -0.001779\n\t\t 0.68636203 -0.040777002 0.017689999 0.64738297 -0.163113 -0.102313 0.608114 -0.228917 -0.123121\n\t\t 0.64026701 -0.160992 -0.11941 0.679205 -0.030134 -0.058159001 0.69028002 -0.020669 0.025265999\n\t\t 0.669927 0.005223 -0.043752 0.68338197 -0.0094539998 -0.051059 0.67714697 -0.001131 0.014605\n\t\t 0.69199401 -0.017628999 0.0058670002 0.67193198 -0.027690001 -0.075212002 0.60094202 -0.226798 -0.140277\n\t\t 0.65631503 0.0072940001 -0.060066 0.67576897 -0.0071450002 -0.068138003 0.66765499 -0.0033849999 0.034995999\n\t\t 0.46077201 0.40940699 -0.33748099 0.47766301 0.41479099 -0.34291199 0.47247401 0.39531201 -0.33462301\n\t\t 0.44310099 0.41479099 -0.33589199 0.44907001 0.42350301 -0.34033999 0.437951 0.40576199 -0.317536\n\t\t 0.44388101 0.404024 -0.33205101 0.45951 0.42683101 -0.343696 0.47760099 0.434854 -0.336395\n\t\t 0.470431 0.42350301 -0.34467801 0.488401 0.42184401 -0.333756 0.48956701 0.40576199 -0.32802001\n\t\t 0.47844401 0.404024 -0.33907101 0.480652 0.39275199 -0.32137701 0.46506199 0.38778299 -0.316365\n\t\t 0.46203399 0.39198399 -0.331267 0.45111299 0.39531201 -0.330284 0.45155799 0.44556499 -0.301074\n\t\t 0.43678501 0.42184401 -0.32327199 0.44569999 0.434854 -0.32991499 0.44264299 0.43255499 -0.294431\n\t\t 0.443809 0.41647401 -0.28869501 0.46715 0.450535 -0.306086 0.46129099 0.439823 -0.33492801\n\t\t 0.483459 0.44556499 -0.30755401 0.49426001 0.43255499 -0.30491501 0.495424 0.41647401 -0.29917899\n\t\t 0.48651001 0.40346399 -0.29253599 0.47092 0.39849401 -0.28752401 0.45460901 0.40346399 -0.286057\n\t\t 0.448751 0.39275199 -0.31489801 -0.60969502 -0.236847 -0.052531999 -0.65042001 -0.16886599 -0.049479\n\t\t -0.64908701 -0.17117099 -0.02994 -0.61096901 -0.234543 -0.072129004 -0.68279302 -0.037980001 -0.001779\n\t\t -0.64241898 -0.163113 -0.102313 -0.60315001 -0.228917 -0.123121 -0.66696799 -0.027690999 -0.075212002\n\t\t -0.67424101 -0.030134 -0.058159001 -0.67841798 -0.0094539998 -0.051059 -0.66496301 0.0052220002 -0.043752\n\t\t -0.67080498 -0.0071459999 -0.068138003 -0.68703002 -0.017628999 0.0058670002 -0.67218298 -0.001131 0.014605\n\t\t -0.65135098 0.0072940001 -0.060066 -0.59597802 -0.226798 -0.140277 -0.63530302 -0.160992 -0.11941\n\t\t -0.662691 -0.0033859999 0.034995999 -0.68139797 -0.040778 0.017689999 -0.68531603 -0.02067 0.025265999\n\t\t -0.45581001 0.40940699 -0.33748099 -0.43813899 0.41479099 -0.33589199 -0.465469 0.42350301 -0.34467801\n\t\t -0.47270101 0.41479099 -0.34291199 -0.44410801 0.42350301 -0.34033999 -0.43891901 0.404024 -0.33205101\n\t\t -0.45632699 0.439823 -0.33492801 -0.454546 0.42683101 -0.343696 -0.47263899 0.434854 -0.336395\n\t\t -0.48460299 0.40576199 -0.32802001 -0.47347999 0.404024 -0.33907101 -0.46751001 0.39531201 -0.33462301\n\t\t -0.45707199 0.39198399 -0.331267 -0.44615099 0.39531201 -0.330284 -0.43768099 0.43255499 -0.294431\n\t\t -0.44073799 0.434854 -0.32991499 -0.43182299 0.42184401 -0.32327199 -0.446596 0.44556499 -0.301074\n\t\t -0.43884501 0.41647401 -0.28869501 -0.432987 0.40576199 -0.317536 -0.46218601 0.450535 -0.306086\n\t\t -0.478497 0.44556499 -0.30755401 -0.483439 0.42184401 -0.333756 -0.48929599 0.43255499 -0.30491501\n\t\t -0.49046201 0.41647401 -0.29917899 -0.47568801 0.39275199 -0.32137701 -0.48154601 0.40346399 -0.29253599\n\t\t -0.460098 0.38778299 -0.316365 -0.465956 0.39849401 -0.28752401 -0.44964701 0.40346399 -0.286057\n\t\t -0.44378701 0.39275199 -0.31489801 0.178 -0.16369499 -0.685242 0.171846 -0.106117 -0.68398201\n\t\t 0.17379101 -0.163173 -0.68275303 0.177269 -0.106634 -0.68612099 0.18246201 -0.164046 -0.685395\n\t\t 0.18333399 -0.106974 -0.68575197 0.17879701 -0.210391 -0.67659301 0.17606699 -0.209723 -0.67686599\n\t\t 0.17341401 -0.20872401 -0.67539603 0.174444 -0.223061 -0.67140698 0.17648099 -0.22396301 -0.67061901\n\t\t 0.17305 -0.218724 -0.67173302 0.168669 -0.063395001 -0.67959303 0.17437901 -0.061640002 -0.679757\n\t\t 0.181205 -0.060467001 -0.67786503 0.17258599 -0.049509998 -0.67514801 0.168786 -0.054627001 -0.67640001\n\t\t 0.179388 -0.047203999 -0.67230803 0.18107601 -0.20973299 -0.67504102 0.185789 -0.16370501 -0.68240499\n\t\t 0.18218 -0.20874301 -0.67220199 0.18742201 -0.16318899 -0.67778802 0.188224 -0.106617 -0.68213099\n\t\t 0.191017 -0.106087 -0.67699999 0.17992 -0.218731 -0.669231 0.178564 -0.22306301 -0.66990697\n\t\t 0.187617 -0.061625 -0.67493701 0.191835 -0.063368 -0.67115599 0.186358 -0.049506001 -0.67013502\n\t\t 0.189932 -0.054614998 -0.66870201 0.167136 -0.105944 -0.67529702 0.16962799 -0.208391 -0.666933\n\t\t 0.171002 -0.227507 -0.66161501 0.177093 -0.221753 -0.66090602;\n\tsetAttr \".vt[2324:2489]\" 0.185065 -0.163017 -0.66827703 0.188531 -0.05277 -0.66025102\n\t\t 0.152999 -0.21763501 -0.67384398 0.165383 -0.210253 -0.671763 0.153332 -0.16439199 -0.68352199\n\t\t 0.162958 -0.106375 -0.68068302 0.15937001 -0.061625 -0.67643398 0.19569901 -0.106352 -0.66876298\n\t\t 0.207623 -0.107323 -0.66449702 0.19169299 -0.16345499 -0.669653 0.203566 -0.16439199 -0.66523802\n\t\t 0.18597101 -0.21026801 -0.664267 0.19667301 -0.21763501 -0.65794897 0.18248001 -0.225301 -0.66166598\n\t\t 0.19091 -0.237497 -0.65443802 0.177981 -0.23330399 -0.661026 0.181888 -0.24709401 -0.654728\n\t\t 0.171524 -0.24932601 -0.65765798 0.16173699 -0.24709401 -0.662063 0.16677 -0.16322599 -0.67491603\n\t\t 0.166877 -0.20927 -0.66768003 0.16528501 -0.163442 -0.679268 0.16443101 -0.10616 -0.67629802\n\t\t 0.16104899 -0.063194998 -0.672391 0.16190401 -0.050971001 -0.66948801 0.160403 -0.047805998 -0.67304802\n\t\t 0.167475 -0.042592999 -0.66546398 0.166933 -0.038214002 -0.66829598 0.175631 -0.039365001 -0.66164702\n\t\t 0.176489 -0.034474 -0.66378897 0.18424 -0.042592999 -0.65936202 0.186599 -0.038214002 -0.661138\n\t\t 0.19086 -0.050965 -0.65894699 0.194387 -0.047800999 -0.66067803 0.193048 -0.063169003 -0.66074002\n\t\t 0.196977 -0.061604001 -0.66274202 0.191756 -0.106131 -0.66634798 0.18776201 -0.163242 -0.66727197\n\t\t 0.182218 -0.209289 -0.66209197 0.17921101 -0.223447 -0.65961099 0.175816 -0.23036499 -0.65895098\n\t\t 0.17241199 -0.232015 -0.65966302 0.173235 -0.23554701 -0.66201401 0.169376 -0.23036499 -0.66129601\n\t\t 0.169002 -0.23330399 -0.664294 0.167325 -0.223442 -0.66393799 0.166109 -0.225297 -0.66762501\n\t\t 0.179646 -0.20841201 -0.66328299 0.174825 -0.227507 -0.66022402 0.17280699 -0.228487 -0.66065401\n\t\t 0.169809 -0.22174799 -0.66355801 0.169487 -0.162999 -0.67395103 0.163863 -0.063979998 -0.67156601\n\t\t 0.16447499 -0.052777998 -0.66900802 0.16908699 -0.045467 -0.66564 0.17588 -0.042783 -0.66248298\n\t\t 0.183037 -0.045465998 -0.66056198 0.19034 -0.063948996 -0.661924 0.189046 -0.10591 -0.66731697\n\t\t 0.147697 -0.16439199 -0.66803998 0.15105499 -0.107323 -0.68508601 0.14542 -0.107323 -0.66960502\n\t\t 0.14736401 -0.21763501 -0.65836298 0.146788 -0.056862999 -0.67968202 0.14115299 -0.056862999 -0.66420001\n\t\t 0.14875101 -0.037783001 -0.67446101 0.143117 -0.037783001 -0.658979 0.15947799 -0.023824001 -0.666659\n\t\t 0.153843 -0.023823 -0.651178 0.17508 -0.018123999 -0.65918398 0.16944601 -0.018123999 -0.64370197\n\t\t 0.191672 -0.023823 -0.65494198 0.186037 -0.023823 -0.63946003 0.20450599 -0.037783001 -0.65416801\n\t\t 0.198871 -0.037783001 -0.638686 0.208838 -0.056862999 -0.65709698 0.20320401 -0.056862999 -0.64161497\n\t\t 0.201988 -0.107323 -0.64901602 0.19793101 -0.16439199 -0.64975601 0.191038 -0.21763501 -0.64246702\n\t\t 0.185275 -0.237497 -0.63895601 0.17625301 -0.24709401 -0.639247 0.16588899 -0.24932601 -0.64217597\n\t\t 0.156102 -0.24709401 -0.64658099 0.15480299 -0.237498 -0.667579 0.149169 -0.237497 -0.652098\n\t\t -0.17303599 -0.16369499 -0.685242 -0.16688199 -0.106117 -0.68398201 -0.172305 -0.106634 -0.68612099\n\t\t -0.168827 -0.163173 -0.68275303 -0.177498 -0.164046 -0.685395 -0.17837 -0.106974 -0.68575197\n\t\t -0.173833 -0.210391 -0.67659301 -0.171103 -0.209723 -0.67686599 -0.16845 -0.20872401 -0.67539603\n\t\t -0.16948 -0.223061 -0.67140698 -0.171517 -0.22396301 -0.67061901 -0.16808601 -0.218724 -0.67173302\n\t\t -0.16370501 -0.063395001 -0.67959303 -0.169415 -0.061641 -0.679757 -0.176241 -0.060467001 -0.67786503\n\t\t -0.167622 -0.049509998 -0.67514801 -0.163822 -0.054627001 -0.67640001 -0.17442399 -0.047203999 -0.67230803\n\t\t -0.176112 -0.20973299 -0.67504102 -0.180825 -0.16370501 -0.68240499 -0.17721599 -0.20874301 -0.67220199\n\t\t -0.182458 -0.16318899 -0.67778802 -0.18325999 -0.106617 -0.68213099 -0.18605299 -0.106087 -0.67699999\n\t\t -0.17495599 -0.218731 -0.669231 -0.1736 -0.22306301 -0.66990697 -0.18265299 -0.061625 -0.67493701\n\t\t -0.18687101 -0.063368 -0.67115599 -0.181394 -0.049506001 -0.67013502 -0.18496799 -0.054614998 -0.66870201\n\t\t -0.17091601 -0.042783 -0.66248298 -0.159511 -0.052777998 -0.66900802 -0.15889899 -0.063979998 -0.67156601\n\t\t -0.16452301 -0.162999 -0.67395103 -0.164845 -0.22174799 -0.66355801 -0.167843 -0.228487 -0.66065401\n\t\t -0.169861 -0.227507 -0.66022402 -0.17212901 -0.221753 -0.66090602 -0.148035 -0.21763501 -0.67384398\n\t\t -0.160321 -0.163442 -0.679268 -0.157994 -0.106375 -0.68068302 -0.154406 -0.061625 -0.67643398\n\t\t -0.155439 -0.047805998 -0.67304802 -0.17011601 -0.018123999 -0.65918398 -0.186708 -0.023824001 -0.65494198\n\t\t -0.18942299 -0.047800999 -0.66067803 -0.192013 -0.061604001 -0.66274202 -0.190735 -0.106352 -0.66876298\n\t\t -0.186729 -0.16345499 -0.669653 -0.19860201 -0.16439199 -0.66523802 -0.181007 -0.21026801 -0.664267\n\t\t -0.191709 -0.21763501 -0.65794897 -0.177516 -0.225301 -0.66166598 -0.173017 -0.23330399 -0.661026\n\t\t -0.164038 -0.23330399 -0.664294 -0.156773 -0.24709401 -0.662063 -0.14984 -0.237498 -0.667579\n\t\t -0.160419 -0.210253 -0.671763 -0.161806 -0.16322599 -0.67491603 -0.16191299 -0.20927 -0.66768003\n\t\t -0.159467 -0.10616 -0.67629802 -0.156085 -0.063194998 -0.672391 -0.15694 -0.050971001 -0.66948801\n\t\t -0.16251101 -0.042592999 -0.66546398 -0.16196901 -0.038214002 -0.66829598 -0.17066699 -0.039365001 -0.66164702\n\t\t -0.171525 -0.034474999 -0.66378897 -0.179276 -0.042592999 -0.65936202 -0.18163501 -0.038214002 -0.661138\n\t\t -0.18589599 -0.050965 -0.65894699 -0.188085 -0.063169003 -0.66074002 -0.186793 -0.106131 -0.66634798\n\t\t -0.182798 -0.163242 -0.66727197 -0.17725401 -0.209289 -0.66209197 -0.174247 -0.223447 -0.65961099\n\t\t -0.17085201 -0.23036499 -0.65895098 -0.167448 -0.232015 -0.65966302 -0.16827101 -0.23554701 -0.66201401\n\t\t -0.16441201 -0.23036499 -0.66129601 -0.162361 -0.223442 -0.66393799;\n\tsetAttr \".vt[2490:2655]\" -0.161145 -0.225297 -0.66762501 -0.17468201 -0.20841201 -0.66328299\n\t\t -0.18010101 -0.163017 -0.66827703 -0.184082 -0.10591 -0.66731697 -0.185376 -0.063948996 -0.661924\n\t\t -0.183567 -0.05277 -0.66025102 -0.178073 -0.045465998 -0.66056198 -0.164123 -0.045467 -0.66564\n\t\t -0.162172 -0.105944 -0.67529702 -0.164664 -0.208391 -0.666933 -0.16603801 -0.227507 -0.66161501\n\t\t -0.146091 -0.107323 -0.68508601 -0.14273299 -0.16439199 -0.66803998 -0.14045601 -0.107323 -0.66960502\n\t\t -0.148368 -0.16439199 -0.68352199 -0.1424 -0.21763501 -0.65836298 -0.144205 -0.237497 -0.652098\n\t\t -0.14182401 -0.056862999 -0.67968202 -0.136189 -0.056862999 -0.66420001 -0.143787 -0.037783001 -0.67446101\n\t\t -0.138153 -0.037783001 -0.658979 -0.154514 -0.023824001 -0.666659 -0.14887901 -0.023824001 -0.651178\n\t\t -0.164482 -0.018123999 -0.64370197 -0.181073 -0.023824001 -0.63946003 -0.199542 -0.037783001 -0.65416801\n\t\t -0.19390699 -0.037783001 -0.638686 -0.20387501 -0.056862999 -0.65709698 -0.19824 -0.056862999 -0.64161497\n\t\t -0.202659 -0.107323 -0.66449702 -0.197024 -0.107323 -0.64901602 -0.192968 -0.16439199 -0.64975601\n\t\t -0.186074 -0.21763501 -0.64246702 -0.185946 -0.237497 -0.65443802 -0.18031099 -0.237497 -0.63895601\n\t\t -0.17692401 -0.24709401 -0.654728 -0.171289 -0.24709401 -0.639247 -0.16655999 -0.24932601 -0.65765798\n\t\t -0.160925 -0.24932601 -0.64217597 -0.15113799 -0.24709401 -0.64658099 0.71925998 0.26383999 0.34548399\n\t\t 0.72366202 0.25632301 0.32742101 0.71964699 0.257745 0.34448999 0.71871299 0.26668701 0.34633699\n\t\t 0.72098202 0.26526299 0.336694 0.69405103 0.264341 0.447319 0.69406301 0.27014399 0.44604301\n\t\t 0.69355899 0.25577101 0.443537 0.71801198 0.25003299 0.34458601 0.71653801 0.24556901 0.34482601\n\t\t 0.69302702 0.25019801 0.43989101 0.72090501 0.249539 0.331918 0.68699998 0.26647201 0.474251\n\t\t 0.68848002 0.273541 0.46582901 0.71337801 0.26900101 0.321742 0.71633899 0.257337 0.313245\n\t\t 0.716515 0.27470201 0.32958499 0.71165597 0.27405101 0.32921901 0.71342498 0.27747601 0.342188\n\t\t 0.70847899 0.27635899 0.33961701 0.681647 0.28333899 0.44724199 0.68064398 0.28385901 0.47264901\n\t\t 0.67729002 0.28267699 0.46646899 0.67868 0.27781299 0.48263001 0.675129 0.277962 0.474347\n\t\t 0.71092701 0.244803 0.322056 0.70807201 0.239444 0.32946101 0.712439 0.23750401 0.33048201\n\t\t 0.70479602 0.23796301 0.338678 0.67912799 0.24271899 0.442702 0.684434 0.240263 0.44234699\n\t\t 0.725595 0.26606199 0.32760099 0.72705001 0.25604299 0.32235199 0.71963602 0.268112 0.319426\n\t\t 0.72352397 0.270192 0.334663 0.687208 0.28439 0.44738001 0.68949598 0.278568 0.47025299\n\t\t 0.70934099 0.235577 0.34115899 0.717098 0.244316 0.32016701 0.722655 0.25659201 0.31026\n\t\t 0.722579 0.26234201 0.33106899 0.72094899 0.27206099 0.34547901 0.69556898 0.278543 0.44712701\n\t\t 0.69411701 0.272948 0.44463199 0.68668503 0.27159399 0.473452 0.68763 0.27460501 0.478995\n\t\t 0.72322601 0.24523 0.32846901 0.72012299 0.240821 0.33549601 0.71852398 0.24633101 0.33740899\n\t\t 0.71773499 0.2397 0.344217 0.69357502 0.244454 0.44227999 -0.71429801 0.26383999 0.34548399\n\t\t -0.71761698 0.26234201 0.33106899 -0.71468502 0.257745 0.34448999 -0.71375102 0.26668701 0.34633699\n\t\t -0.68908697 0.264341 0.447319 -0.68910098 0.27014399 0.44604301 -0.688595 0.25577101 0.443537\n\t\t -0.71305001 0.25003299 0.34458601 -0.68806499 0.25019801 0.43989101 -0.68203598 0.26647201 0.474251\n\t\t -0.68351799 0.273541 0.46582901 -0.71137702 0.257337 0.313245 -0.714674 0.268112 0.319426\n\t\t -0.71769297 0.25659201 0.31026 -0.70841599 0.26900101 0.321742 -0.71155298 0.27470201 0.32958499\n\t\t -0.70669401 0.27405101 0.32921901 -0.70846301 0.27747601 0.342188 -0.70351702 0.27635899 0.33961701\n\t\t -0.682244 0.28439 0.44738001 -0.67668498 0.28333899 0.44724199 -0.67232603 0.28267699 0.46646899\n\t\t -0.67016703 0.277962 0.474347 -0.70596498 0.244803 0.322056 -0.70310998 0.239444 0.32946101\n\t\t -0.69983399 0.23796301 0.338678 -0.70437902 0.235577 0.34115899 -0.67416602 0.24271899 0.442702\n\t\t -0.67947 0.240263 0.44234699 -0.72063297 0.26606199 0.32760099 -0.71598703 0.27206099 0.34547901\n\t\t -0.68453401 0.278568 0.47025299 -0.67567998 0.28385901 0.47264901 -0.67371798 0.27781299 0.48263001\n\t\t -0.71213597 0.244316 0.32016701 -0.71826398 0.24523 0.32846901 -0.70747697 0.23750401 0.33048201\n\t\t -0.71516103 0.240821 0.33549601 -0.688613 0.244454 0.44227999 -0.71601999 0.26526299 0.336694\n\t\t -0.71856201 0.270192 0.334663 -0.72208798 0.25604299 0.32235199 -0.71869999 0.25632301 0.32742101\n\t\t -0.69060498 0.278543 0.44712701 -0.68915302 0.272948 0.44463199 -0.68172097 0.27159399 0.473452\n\t\t -0.682666 0.27460501 0.478995 -0.71594298 0.249539 0.331918 -0.71356201 0.24633101 0.33740899\n\t\t -0.71277303 0.2397 0.344217 -0.71157598 0.24556901 0.34482601 0.91694999 -0.078915998 0.51398599\n\t\t 0.94244701 0.044155002 0.53492898 0.94046199 0.032288 0.52582598 0.94452399 0.084472999 0.63555902\n\t\t 0.88716 -0.161312 0.61537701 0.86532903 0.032104 0.73213297 0.87278402 0.043951001 0.72629303\n\t\t 0.83946401 -0.092400998 0.72082001 0.93672699 0.044321999 0.510562 0.89239699 -0.084638998 0.48417601\n\t\t 0.90982002 -0.084385999 0.496777 0.92176998 0.054031 0.50015599 0.90607703 -0.097999997 0.50284398\n\t\t 0.88863099 -0.098336004 0.490105 0.913225 -0.092542 0.52005702 0.93863201 0.056260001 0.51964498\n\t\t 0.92378801 0.066064999 0.50926 0.94016802 0.103159 0.63396102 0.92674601 0.117114 0.62913197\n\t\t 0.934991 0.103135 0.648332 0.921588 0.11712 0.64334899 0.86077398 0.055785 0.73550302\n\t\t 0.84208101 0.065931 0.733877 0.93931198 0.084476002 0.64992499;\n\tsetAttr \".vt[2656:2821]\" 0.85342699 0.043839999 0.74138999 0.834602 0.053920999 0.73969501\n\t\t 0.82261199 -0.084310003 0.73657799 0.8003 -0.084536999 0.73510098 0.83846402 -0.078864999 0.72776997\n\t\t 0.82355702 -0.097842999 0.72960597 0.80118001 -0.098141998 0.72822899 0.85155201 -0.18282001 0.61765498\n\t\t 0.856502 -0.18274499 0.60415 0.87588298 -0.17592099 0.61119598 0.88217503 -0.161385 0.62897599\n\t\t 0.87093002 -0.17598601 0.62483197 -0.88219601 -0.161312 0.61537701 -0.908261 -0.092542998 0.52005702\n\t\t -0.93956 0.084472001 0.63555902 -0.93748301 0.044155002 0.53492898 -0.935498 0.032288 0.52582598\n\t\t -0.93434799 0.084475003 0.64992499 -0.83450001 -0.092402004 0.72082001 -0.83350003 -0.078864999 0.72776997\n\t\t -0.93176299 0.044321001 0.510562 -0.88743299 -0.084639996 0.48417601 -0.91680598 0.054031 0.50015599\n\t\t -0.90485603 -0.084385999 0.496777 -0.91198599 -0.078915998 0.51398599 -0.88366699 -0.098337002 0.490105\n\t\t -0.90111297 -0.098001003 0.50284398 -0.851538 -0.18274499 0.60415 -0.93366802 0.056258999 0.51964498\n\t\t -0.91882402 0.066064 0.50926 -0.93520403 0.103159 0.63396102 -0.92178202 0.117114 0.62913197\n\t\t -0.93002701 0.103135 0.648332 -0.91662401 0.11712 0.64334899 -0.85580999 0.055785 0.73550302\n\t\t -0.83711702 0.065931 0.733877 -0.86782002 0.043951001 0.72629303 -0.848463 0.043839999 0.74138999\n\t\t -0.829638 0.053920001 0.73969501 -0.81764799 -0.084311001 0.73657799 -0.79533601 -0.084536999 0.73510098\n\t\t -0.86036497 0.032102998 0.73213297 -0.81859303 -0.097842999 0.72960597 -0.79621601 -0.098141998 0.72822899\n\t\t -0.84658802 -0.18282001 0.61765498 -0.87091899 -0.17592099 0.61119598 -0.87721097 -0.161385 0.62897599\n\t\t -0.86596602 -0.17598601 0.62483197 0.100006 -0.61380398 -0.69813597 0.060580999 -0.69458002 -0.80982\n\t\t 0.085524 -0.60461998 -0.701141 0.065388002 -0.59739602 -0.70445001 0.034658 -0.59336603 -0.70763099\n\t\t 0.002482 -0.59333301 -0.70858997 0.060584001 -0.71676803 -0.80625498 0.073127002 -0.71125901 -0.80520999\n\t\t 0.060577001 -0.70357198 -0.81058598 0.075107001 -0.71681499 -0.80371898 0.040445 -0.717134 -0.80817199\n\t\t 0.040445 -0.69981998 -0.81284499 0.040445 -0.69080597 -0.81278199 0.074938998 -0.70223403 -0.80418599\n\t\t 0.075195 -0.82948703 -0.77177697 0.060584001 -0.82948703 -0.77383298 0.040445 -0.82948703 -0.77666497\n\t\t 0.078074001 -0.70799297 -0.80126399 0.017911 -0.717134 -0.80817199 0.017911 -0.82948703 -0.77666497\n\t\t 0.017911 -0.69080597 -0.81278199 0.017911 -0.69981998 -0.81284499 0.002482 -0.717134 -0.80817199\n\t\t 0.002482 -0.69981998 -0.81284499 0.002482 -0.69080597 -0.81278199 0.103036 -0.813241 -0.68210202\n\t\t 0.059765 -0.82948703 -0.76808298 0.084726997 -0.813241 -0.68210202 0.078073002 -0.82948703 -0.76808298\n\t\t 0.065746002 -0.813241 -0.68210202 0.040784001 -0.82948703 -0.76808298 0.033845 -0.813241 -0.68210202\n\t\t 0.017363001 -0.82948703 -0.76808298 0.002482 -0.813241 -0.68210202 0.103096 -0.61996502 -0.68708998\n\t\t 0.002482 -0.61996502 -0.68708998 0.67039502 -0.32312199 0.223471 0.67141199 -0.31113601 0.249562\n\t\t 0.67283899 -0.310321 0.21554001 0.67826098 -0.18075199 0.26338801 0.682015 -0.067580998 0.31242499\n\t\t 0.684129 -0.090360001 0.3488 0.66757202 -0.27458301 0.328601 0.66233897 -0.323396 0.223078\n\t\t 0.668607 -0.33073199 0.238157 0.66806501 -0.33321899 0.25604799 0.68525898 -0.069231004 0.36063999\n\t\t 0.67519897 -0.067667998 0.36164501 0.67567903 -0.069531001 0.36870199 0.68553299 -0.071056999 0.367567\n\t\t 0.66815901 -0.33031601 0.27563199 0.65543699 -0.27472001 0.32991299 0.659051 -0.33073801 0.27653801\n\t\t 0.65212101 -0.212093 0.37652901 0.66719502 -0.212337 0.374973 0.65348899 -0.30717701 0.243469\n\t\t 0.67283702 -0.30556801 0.23442 0.67194998 -0.30932501 0.24145199 0.65423501 -0.303882 0.236745\n\t\t 0.65305102 -0.308671 0.251185 0.67152101 -0.31151599 0.25871399 0.65364301 -0.30850801 0.270114\n\t\t 0.66946 -0.25768799 0.313333 0.67199099 -0.31102601 0.26931301 0.64743501 -0.200957 0.356455\n\t\t 0.66400701 -0.088560998 0.32544699 0.67716002 -0.18963 0.28151801 0.65701401 -0.188667 0.28374699\n\t\t 0.68260598 -0.089060001 0.32370701 0.667054 -0.20308401 0.356244 0.68415898 -0.091903001 0.35229799\n\t\t 0.65318298 -0.30892 0.259929 0.66569901 -0.089714997 0.34924901 0.66574299 -0.091168001 0.35260299\n\t\t 0.65046 -0.25531101 0.31376901 -0.073109001 -0.82948703 -0.76808298 -0.095043004 -0.61380398 -0.69813597\n\t\t -0.069976002 -0.70223403 -0.80418599 -0.080559999 -0.60461998 -0.701141 -0.060424998 -0.59739602 -0.70445001\n\t\t -0.012948 -0.69080597 -0.81278199 -0.029695 -0.59336603 -0.70763099 -0.05562 -0.71676803 -0.80625498\n\t\t -0.068163 -0.71125901 -0.80520999 -0.070143998 -0.71681499 -0.80371898 -0.055613998 -0.70357198 -0.81058598\n\t\t -0.035480998 -0.717134 -0.80817199 -0.035480998 -0.69981998 -0.81284499 -0.055617999 -0.69458002 -0.80982\n\t\t -0.035480998 -0.69080597 -0.81278199 -0.073110998 -0.70799297 -0.80126399 -0.012948 -0.717134 -0.80817199\n\t\t -0.012948 -0.82948703 -0.77666497 -0.012948 -0.69981998 -0.81284499 -0.098072 -0.813241 -0.68210202\n\t\t -0.054800998 -0.82948703 -0.76808298 -0.079764001 -0.813241 -0.68210202 -0.060782999 -0.813241 -0.68210202\n\t\t -0.03582 -0.82948703 -0.76808298 -0.028882001 -0.813241 -0.68210202 -0.012399 -0.82948703 -0.76808298\n\t\t 0.002482 -0.82948703 -0.76808298 0.002482 -0.82948703 -0.77666497 -0.035480998 -0.82948703 -0.77666497\n\t\t -0.05562 -0.82948703 -0.77383298 -0.070231996 -0.82948703 -0.77177697 -0.098131999 -0.61996502 -0.68708998\n\t\t -0.66698599 -0.30932501 0.24145199 -0.663643 -0.33073199 0.238158 -0.66543102 -0.32312199 0.223471\n\t\t -0.67329699 -0.18075199 0.26338801 -0.67919499 -0.091903999 0.35229799 -0.66209 -0.20308401 0.356244\n\t\t -0.66223103 -0.212337 0.374973 -0.664496 -0.25768799 0.313333 -0.66310102 -0.33321899 0.25604799\n\t\t -0.66787499 -0.310321 0.21554001 -0.65981698 -0.310175 0.214945;\n\tsetAttr \".vt[2822:2987]\" -0.66319501 -0.33031601 0.27563199 -0.67705101 -0.067581996 0.31242499\n\t\t -0.665214 -0.066248 0.312264 -0.68029499 -0.069232002 0.36063999 -0.67023498 -0.067668997 0.36164501\n\t\t -0.68056899 -0.071057998 0.367567 -0.650473 -0.27472001 0.32991299 -0.66260803 -0.27458301 0.328601\n\t\t -0.648525 -0.30717701 0.243469 -0.66787302 -0.30556801 0.23442 -0.666448 -0.31113601 0.249562\n\t\t -0.64808702 -0.308671 0.251185 -0.66655701 -0.31151599 0.25871399 -0.64867902 -0.30850801 0.270114\n\t\t -0.667027 -0.31102601 0.26931301 -0.64549601 -0.25531101 0.31376901 -0.66073501 -0.089716002 0.34924901\n\t\t -0.67916501 -0.090360001 0.3488 -0.660779 -0.091169 0.35260299 -0.67219597 -0.18963 0.28151801\n\t\t -0.67764199 -0.089060999 0.32370701 -0.64927101 -0.303882 0.236745 -0.65904301 -0.088560998 0.32544699\n\t\t -0.65205002 -0.188667 0.28374699 -0.64247102 -0.200957 0.356455 -0.64821899 -0.30892 0.259929\n\t\t 0.59840399 -0.348654 -0.083584003 0.61227399 -0.28914699 -0.071501002 0.59820199 -0.28214201 -0.154001\n\t\t 0.58389801 -0.36383101 -0.14311001 0.62374401 -0.27690101 -0.024436999 0.61643398 -0.27249399 -0.067055002\n\t\t 0.68044198 0.016814999 0.090682 0.678931 0.018352 0.043777999 0.66921401 0.021743 -0.051329002\n\t\t 0.60198802 -0.26355699 -0.15347099 0.59200799 -0.273936 -0.198201 0.57530701 -0.38511699 -0.16032401\n\t\t 0.54266 -0.400812 -0.141164 0.56120598 -0.39628801 -0.165068 0.535245 -0.39787701 -0.16480599\n\t\t 0.56611699 -0.39918199 -0.141744 0.58245897 -0.37796801 -0.084247999 0.56691301 -0.37943 -0.082875997\n\t\t 0.57948601 -0.38773 -0.139365 0.59417999 -0.36769101 -0.087638997 0.59056503 -0.36272401 -0.061728001\n\t\t 0.60180098 -0.35302699 -0.067964002 0.56294698 -0.378699 -0.179627 0.57691997 -0.36956501 -0.173638\n\t\t 0.57990497 -0.27331901 -0.20648199 0.56173998 -0.27322501 -0.206615 0.53758401 -0.379998 -0.179519\n\t\t 0.59485298 -0.25902799 -0.19727001 0.58310997 -0.258196 -0.20545501 0.65152299 0.033291001 -0.103813\n\t\t 0.635189 0.034683999 -0.103128 0.56706601 -0.25807101 -0.205568 0.59509301 -0.34748399 -0.047731999\n\t\t 0.58327001 -0.34865999 -0.045864999 0.59787101 -0.297005 -0.019854 0.61009002 -0.29646 -0.022046\n\t\t 0.60269397 -0.28061801 -0.013169 0.61493599 -0.28015801 -0.015409 0.64174199 0.028623 0.108768\n\t\t 0.60593098 -0.339212 -0.054586999 0.61954099 -0.292602 -0.030815 0.57887501 -0.364104 -0.059965\n\t\t 0.67316997 0.027140001 0.105426 0.671112 0.028522 0.053831 0.66028899 0.031598002 -0.050788\n\t\t 0.64340699 0.029983001 0.056518 0.64012998 0.033013001 -0.049430002 0.66101003 0.023596 -0.099532999\n\t\t 0.390872 -0.81112802 -0.113266 0.38279799 -0.74446303 -0.102354 0.43996999 -0.758205 -0.060047999\n\t\t 0.15655801 -0.68171799 0.203392 0.446026 -0.76330298 -0.068232 0.37515199 -0.75649798 -0.124898\n\t\t 0.229551 -0.77235198 -0.232637 0.229551 -0.72150099 -0.232637 0.150065 -0.75324702 -0.291453\n\t\t 0.150065 -0.70239502 -0.29145399 0.148072 -0.76340902 -0.28870699 0.148072 -0.69168502 -0.28870699\n\t\t 0.221762 -0.70575601 -0.221514 0.0035280001 -0.64807397 -0.087379001 0.14209101 -0.68660498 -0.28046799\n\t\t 0.227604 -0.71080202 -0.229856 0.37313399 -0.74578202 -0.12217 0.001435 -0.64493501 0.090157002\n\t\t 0.15655801 -0.82470298 0.203393 0.43996999 -0.83844501 -0.060047999 0.388854 -0.82128501 -0.110538\n\t\t 0.38056999 -0.79959899 -0.108471 0.37855101 -0.80989897 -0.105743 0.37156001 -0.755521 -0.110916\n\t\t 0.37855101 -0.75720102 -0.105743 0.36550501 -0.81149298 -0.102732 0.390872 -0.76027697 -0.113266\n\t\t 0.38056999 -0.76806098 -0.108471 0.15219299 -0.805354 0.20016301 0.38279799 -0.82470298 -0.102354\n\t\t 0.372495 -0.81317401 -0.097558998 0.373579 -0.76638103 -0.113644 0.36550501 -0.75056702 -0.102732\n\t\t 0.372495 -0.75224698 -0.097558998 0.388854 -0.74956 -0.110538 0.37156001 -0.80821902 -0.110916\n\t\t 0.373579 -0.79791898 -0.113644 0.37515199 -0.80734998 -0.124898 0.221762 -0.78599501 -0.221514\n\t\t 0.37313399 -0.81750602 -0.12217 0.227604 -0.78252602 -0.229856 0.36707801 -0.82092398 -0.113986\n\t\t 0.14209101 -0.76684499 -0.28046799 0.140838 -0.82092398 0.19176 0.0035280001 -0.767515 -0.087379001\n\t\t 0.001435 -0.767515 -0.087379001 0.36707801 -0.74068499 -0.113986 0.44077799 -0.77438802 -0.061140001\n\t\t 0.44804499 -0.82486999 -0.07096 0.44804499 -0.774019 -0.070960999 0.43879101 -0.77049702 -0.058455002\n\t\t 0.446026 -0.83502698 -0.068232 0.440281 -0.825032 -0.060469002 0.21373001 -0.81604898 0.245698\n\t\t 0.44077799 -0.82248598 -0.061140001 0.440281 -0.77170402 -0.060469002 0.46292299 -0.77714598 -0.043714002\n\t\t 0.461557 -0.77596903 -0.041609 0.21373001 -0.71785498 0.245698 0.236496 -0.72332799 0.26254401\n\t\t 0.43879101 -0.82582599 -0.058455002 0.454254 -0.82839102 -0.050129 0.452584 -0.82914102 -0.048248\n\t\t 0.455291 -0.82597399 -0.050400998 0.46302101 -0.77973402 -0.044681001 -0.59344 -0.348654 -0.083584003\n\t\t -0.60096699 -0.339212 -0.054586999 -0.60731 -0.28914699 -0.071501002 -0.593238 -0.28214201 -0.154001\n\t\t -0.57893401 -0.36383101 -0.14311001 -0.61878002 -0.27690101 -0.024436999 -0.61146998 -0.27249399 -0.067055002\n\t\t -0.67547798 0.016814999 0.090682 -0.66425002 0.021741999 -0.051329002 -0.59702402 -0.26355699 -0.15347099\n\t\t -0.59683698 -0.35302699 -0.067964002 -0.57195598 -0.36956501 -0.173638 -0.58988899 -0.25902799 -0.19727001\n\t\t -0.537696 -0.400812 -0.141164 -0.55624199 -0.39628801 -0.165068 -0.56115299 -0.39918199 -0.141744\n\t\t -0.53028101 -0.39787701 -0.16480599 -0.56194901 -0.37943 -0.082875997 -0.57749498 -0.37796801 -0.084247999\n\t\t -0.57452202 -0.38773 -0.139365 -0.58921599 -0.36769101 -0.087638997 -0.58560097 -0.36272401 -0.061728001\n\t\t -0.55798298 -0.378699 -0.179627 -0.57034302 -0.38511699 -0.16032401 -0.587044 -0.273936 -0.198201\n\t\t -0.57494098 -0.27331901 -0.20648199 -0.53262001 -0.379998 -0.179519;\n\tsetAttr \".vt[2988:3153]\" -0.55677599 -0.27322501 -0.206615 -0.57814598 -0.258196 -0.20545501\n\t\t -0.65604597 0.023596 -0.099532999 -0.630225 0.034683999 -0.103128 -0.56210202 -0.25807101 -0.205568\n\t\t -0.59012902 -0.34748399 -0.047731999 -0.57830602 -0.34865999 -0.045864999 -0.57391101 -0.364104 -0.059965\n\t\t -0.59290701 -0.297005 -0.019854 -0.60512602 -0.29646 -0.022046 -0.59772998 -0.28061801 -0.013169\n\t\t -0.609972 -0.28015801 -0.015409 -0.614577 -0.292602 -0.030815 -0.673967 0.018352 0.043777999\n\t\t -0.66820598 0.027140001 0.105426 -0.66614801 0.028522 0.053831 -0.655325 0.031597 -0.050788\n\t\t -0.636778 0.028623 0.108768 -0.63844299 0.029982001 0.056518 -0.63516599 0.033013001 -0.049430002\n\t\t -0.646559 0.033291001 -0.103813 -0.44308099 -0.774019 -0.070960999 -0.208766 -0.69546002 0.245698\n\t\t -0.37783399 -0.74446303 -0.102354 -0.38389 -0.74956 -0.110538 -0.22458699 -0.77235198 -0.232637\n\t\t -0.22458699 -0.72150099 -0.232637 -0.145101 -0.75324702 -0.291453 -0.145101 -0.70239502 -0.29145399\n\t\t -0.21679799 -0.70575601 -0.221514 0.001435 -0.64807397 -0.087379001 -0.137127 -0.68660498 -0.28046799\n\t\t -0.22263999 -0.71080202 -0.229856 -0.143108 -0.69168502 -0.28870699 -0.151594 -0.82470298 0.203393\n\t\t -0.208766 -0.83844501 0.245698 -0.441062 -0.83502698 -0.068232 -0.37358701 -0.75720102 -0.105743\n\t\t -0.147229 -0.69896799 0.20016301 -0.140238 -0.69728798 0.19498999 -0.367531 -0.81317401 -0.097558998\n\t\t -0.375606 -0.79959899 -0.108471 -0.38590801 -0.76027697 -0.113266 -0.375606 -0.76806098 -0.108471\n\t\t -0.37783399 -0.82470298 -0.102354 -0.147229 -0.805354 0.20016301 -0.368615 -0.76638103 -0.113644\n\t\t -0.370188 -0.75649798 -0.124898 -0.368615 -0.79791898 -0.113644 -0.135874 -0.677939 0.19176\n\t\t -0.367531 -0.75224698 -0.097558998 -0.37358701 -0.80989897 -0.105743 -0.38590801 -0.81112802 -0.113266\n\t\t -0.36659601 -0.80821902 -0.110916 -0.36054099 -0.81149298 -0.102732 -0.370188 -0.80734998 -0.124898\n\t\t -0.135874 -0.82092398 0.19176 -0.21679799 -0.78599501 -0.221514 -0.36816999 -0.81750602 -0.12217\n\t\t -0.36211401 -0.82092398 -0.113986 -0.22263999 -0.78252602 -0.229856 -0.137127 -0.76684499 -0.28046799\n\t\t -0.143108 -0.76340902 -0.28870699 0.001435 -0.78792 0.090157002 -0.38389 -0.82128501 -0.110538\n\t\t -0.36054099 -0.75056702 -0.102732 -0.36816999 -0.74578202 -0.12217 -0.36211401 -0.74068499 -0.113986\n\t\t -0.36659601 -0.755521 -0.110916 -0.44308099 -0.82486999 -0.07096 -0.43581399 -0.82248598 -0.061140001\n\t\t -0.441062 -0.76330298 -0.068232 -0.43500599 -0.758205 -0.060047999 -0.43531701 -0.825032 -0.060469002\n\t\t -0.43500701 -0.83844501 -0.060047999 -0.43581399 -0.77438802 -0.061140001 -0.457959 -0.77714598 -0.043714002\n\t\t -0.43382701 -0.77049702 -0.058455002 -0.45659301 -0.77596903 -0.041609 -0.43531701 -0.77170402 -0.060469002\n\t\t -0.43382701 -0.82582599 -0.058455002 -0.208766 -0.81604898 0.245698 -0.23153199 -0.72332799 0.26254401\n\t\t -0.44762 -0.82914102 -0.048248 -0.45032701 -0.82597399 -0.050400998 -0.45805699 -0.77973402 -0.044681001\n\t\t -0.44929001 -0.82839102 -0.050129 0.110782 0.77753901 -0.011285 0.002481 0.717255 -0.13106699\n\t\t 0.10813 0.71372402 -0.126224 0.002481 0.78369099 -0.012971 0.114659 0.826828 0.105142\n\t\t 0.002481 0.83501202 0.106135 0.118977 0.86197197 0.214082 0.122952 0.88335198 0.306559\n\t\t 0.002481 0.89392298 0.31176001 0.12772501 0.88999802 0.41976199 0.178745 0.87597001 0.40842301\n\t\t 0.182129 0.86201298 0.45437601 0.32393801 0.79236001 0.37668401 0.32757699 0.78243798 0.39240199\n\t\t 0.39216799 0.73095 0.29070801 0.44468701 0.66163099 0.183199 0.12962 0.87541902 0.46771699\n\t\t 0.130032 0.86450797 0.48623201 0.002481 0.87478602 0.49706101 0.37872201 0.74543399 0.25904599\n\t\t 0.43724701 0.66996503 0.173824 0.42740801 0.67944199 0.161746 0.45403901 0.63673902 0.118468\n\t\t 0.44289899 0.64798403 0.108997 0.40538099 0.694161 0.135313 0.410366 0.67765099 0.098242\n\t\t 0.363507 0.74456799 0.188434 0.358758 0.72918397 0.13029 0.30022499 0.80132699 0.24585401\n\t\t 0.29269201 0.78392601 0.171397 0.171524 0.86956102 0.29900101 0.16599301 0.84904897 0.209222\n\t\t 0.16016699 0.81537902 0.103384 0.28588 0.75570601 0.083738998 0.15509599 0.76822102 -0.0096899997\n\t\t 0.28077301 0.71715099 -0.010005 0.278359 0.66874498 -0.10272 0.151831 0.70724398 -0.121178\n\t\t 0.355849 0.70424098 0.061037999 0.41501299 0.65303302 0.045426998 0.41817799 0.62370402 -0.013706\n\t\t 0.354215 0.67140597 -0.014047 0.41994101 0.59115201 -0.075516 0.35394299 0.631984 -0.089768\n\t\t 0.35511401 0.58727998 -0.160928 0.42038 0.556871 -0.13635901 0.357429 0.54057801 -0.224994\n\t\t 0.41887999 0.52310801 -0.19234 0.409583 0.469993 -0.270953 0.365096 0.45416 -0.32187\n\t\t 0.295836 0.43326101 -0.37519801 0.283602 0.549016 -0.26202199 0.27962399 0.61097401 -0.18729\n\t\t 0.15142 0.63211799 -0.222256 0.15316699 0.55046999 -0.31134501 0.160335 0.398128 -0.447236\n\t\t 0.107487 0.63500202 -0.230699 0.108398 0.54948503 -0.32296401 0.113061 0.39051601 -0.46387601\n\t\t 0.002481 0.54650402 -0.33520401 0.118571 0.29107001 -0.53996998 0.002481 0.28452799 -0.55674899\n\t\t 0.123692 0.219767 -0.583211 0.31411299 0.80566502 0.33743301 0.167491 0.30126899 -0.52130902\n\t\t 0.30795401 0.35649699 -0.43330801 0.37836301 0.393976 -0.36703199 0.39353701 0.34161299 -0.38558701\n\t\t 0.45137599 0.39353901 -0.28930199 0.43121001 0.43804601 -0.28362101 0.44052899 0.50912601 -0.183615\n\t\t 0.443719 0.54030299 -0.127427 0.46156901 0.55541098 -0.061439 0.45914701 0.58639598 -0.0029829999\n\t\t 0.453136 0.617235 0.054031 0.120038 -0.24758799 -0.66271502 0.16353001 -0.245827 -0.65104598\n\t\t 0.12745699 -0.141756 -0.685215 0.17498501 -0.068484001 -0.66562903;\n\tsetAttr \".vt[3154:3319]\" 0.12852401 -0.069144003 -0.67971802 0.002482 -0.069140002 -0.697034\n\t\t 0.11268 -0.31687701 -0.62946302 0.002482 -0.316789 -0.63858801 0.105618 -0.389691 -0.588875\n\t\t 0.125782 0.05765 -0.64881003 0.123148 0.118238 -0.62720501 0.002481 0.115676 -0.644427\n\t\t 0.118533 0.21410599 -0.587672 0.002481 0.21335401 -0.600429 0.144116 -0.387321 -0.58024198\n\t\t 0.37994099 -0.161277 -0.48014501 0.214231 -0.12629101 -0.64876699 0.206788 -0.231966 -0.62626302\n\t\t 0.37741899 -0.057004001 -0.51454598 0.37029701 0.013598 -0.51947099 0.21407899 -0.053659 -0.64452499\n\t\t 0.208295 0.075195 -0.61494303 0.35401899 0.13871101 -0.50402701 0.45371401 0.064181 -0.41466099\n\t\t 0.46192101 -0.004092 -0.40387401 0.52103502 0.127266 -0.28034499 0.528965 0.061714999 -0.26360199\n\t\t 0.53353697 -0.0057580001 -0.237129 0.46714699 -0.106785 -0.364351 0.43483001 0.18457501 -0.41073\n\t\t 0.56069303 0.116423 -0.147385 0.55297899 0.180196 -0.168208 0.53476101 0.28380999 -0.187765\n\t\t 0.50198102 0.23937599 -0.289873 0.343923 0.197871 -0.490468 0.203719 0.135478 -0.594769\n\t\t 0.19551501 0.2304 -0.56084698 0.42238301 0.24243499 -0.403409 0.399068 0.33300799 -0.392111\n\t\t 0.457441 0.38518301 -0.29417801 0.48724201 0.294783 -0.29074901 0.51808 0.33652401 -0.19539499\n\t\t 0.174051 0.123631 -0.60916698 0.18091901 -0.065927997 -0.66253901 0.19836301 -0.301256 -0.59391302\n\t\t 0.32792801 -0.253654 -0.49192801 0.189982 -0.37403399 -0.55387098 0.37905401 -0.195628 -0.46229899\n\t\t 0.42554799 -0.135506 -0.42558801 0.159648 -0.31250399 -0.61731499 0.405947 0.72084898 0.31274\n\t\t 0.43630001 0.68547201 0.25834101 0.41949499 0.69906998 0.34281299 0.333985 0.783454 0.40253299\n\t\t 0.35344499 0.74509799 0.47134599 0.185423 0.85288203 0.483733 0.194601 0.79508299 0.59609401\n\t\t 0.273819 0.770935 0.56506503 0.13140801 0.86588103 0.497991 0.13635001 0.80612099 0.60981899\n\t\t 0.002481 0.876028 0.50882602 0.12981901 0.86084002 0.489871 0.39964601 0.71766102 0.308626\n\t\t 0.429517 0.68278497 0.255059 0.32889199 0.779383 0.39685601 0.18301301 0.84795803 0.47598499\n\t\t 0.129218 0.86088997 0.483318 0.002481 0.87092501 0.50045502 0.165611 0.219767 -0.570979\n\t\t 0.163268 0.222651 -0.56829298 0.32061699 0.290867 -0.46031901 0.390609 0.340168 -0.38201401\n\t\t 0.393641 0.335062 -0.38561499 0.45100999 0.38681799 -0.289417 0.325524 0.28902099 -0.468389\n\t\t 0.16783001 0.22002199 -0.57279199 0.121404 0.216497 -0.58085001 0.16103999 0.219496 -0.572806\n\t\t 0.39458701 0.71797699 0.30288601 0.427109 0.68592203 0.250328 0.42399701 0.68339801 0.249658\n\t\t 0.39749801 0.72070599 0.30389601 0.32518101 0.77933198 0.39072299 0.18185601 0.84793103 0.469459\n\t\t 0.183061 0.851475 0.47217 0.002481 0.87111801 0.49399701 0.022414999 0.216902 -0.589522\n\t\t 0.123041 0.218352 -0.57824099 0.002481 0.218235 -0.59485602 0.002481 0.216879 -0.59238702\n\t\t 0.0074649998 0.216833 -0.59019798 0.164051 0.22458699 -0.57115 0.31773299 0.29527 -0.45774499\n\t\t 0.319956 0.29664299 -0.46199799 0.44789401 0.39188701 -0.28653699 0.17823599 -0.064476997 -0.65598297\n\t\t 0.17488199 -0.068125002 -0.66226 0.17489401 0.063827001 -0.62387699 0.17148399 0.124216 -0.60223198\n\t\t 0.173512 -0.140788 -0.67147797 0.163444 -0.244367 -0.64774698 0.17339399 -0.13994899 -0.66810101\n\t\t 0.153634 -0.31474799 -0.61965299 0.15358201 -0.31302601 -0.61642897 0.17147 0.06013 -0.63023698\n\t\t 0.17151 0.060378 -0.63351703 0.16803201 0.121588 -0.61194497 0.168017 0.121245 -0.60869002\n\t\t 0.1618 0.218257 -0.57528901 0.144079 -0.38547301 -0.57706499 0.177508 0.062939003 -0.63059002\n\t\t 0.176732 -0.136426 -0.661865 0.179433 -0.13834199 -0.66842002 0.16682801 -0.24095701 -0.641909\n\t\t 0.16949999 -0.24352901 -0.64839202 0.15701 -0.30963701 -0.61091101 0.147516 -0.38207099 -0.57165998\n\t\t 0.15013801 -0.38508299 -0.57801199 0.002481 0.63530302 -0.239246 -0.10582 0.77753901 -0.011285\n\t\t -0.103168 0.71372402 -0.126224 -0.109697 0.826828 0.105142 -0.114015 0.86197197 0.214082\n\t\t 0.002481 0.87162203 0.21734799 -0.11799 0.88335198 0.306559 0.002481 0.90099502 0.42801499\n\t\t -0.122764 0.88999802 0.41976199 -0.173783 0.87597001 0.40842301 -0.177167 0.86201298 0.45437601\n\t\t -0.31897601 0.79236001 0.37668401 -0.322615 0.78243798 0.39240199 -0.38720599 0.73095 0.29070801\n\t\t -0.42214701 0.68592203 0.250328 -0.43972501 0.66163099 0.183199 -0.124658 0.87541902 0.46771699\n\t\t -0.12507001 0.86450797 0.48623201 0.002481 0.88598198 0.47784001 -0.37376001 0.74543399 0.25904599\n\t\t -0.43228501 0.66996503 0.173824 -0.42244601 0.67944199 0.161746 -0.44907701 0.63673902 0.118468\n\t\t -0.43793699 0.64798403 0.108997 -0.400419 0.694161 0.135313 -0.405404 0.67765099 0.098242998\n\t\t -0.35854599 0.74456799 0.188434 -0.35379601 0.72918397 0.13029 -0.29526299 0.80132699 0.24585401\n\t\t -0.28773001 0.78392601 0.171397 -0.16656201 0.86956102 0.29900101 -0.16103099 0.84904897 0.209222\n\t\t -0.155205 0.81537902 0.103384 -0.280918 0.75570601 0.083738998 -0.150134 0.76822102 -0.0096899997\n\t\t -0.27581099 0.71715099 -0.010005 -0.273397 0.66874498 -0.10272 -0.146869 0.70724398 -0.121178\n\t\t -0.350887 0.70424098 0.061037999 -0.41005099 0.65303302 0.045426998 -0.41321599 0.62370402 -0.013706\n\t\t -0.349253 0.67140597 -0.014047 -0.41497901 0.59115201 -0.075516 -0.34898099 0.631984 -0.089768\n\t\t -0.35015199 0.58727998 -0.160928 -0.415418 0.556871 -0.13635901 -0.352467 0.54057801 -0.224994\n\t\t -0.41391799 0.52310801 -0.19234 -0.40462101 0.469993 -0.270953 -0.36013401 0.45416 -0.32187\n\t\t -0.29087201 0.43326101 -0.37519801 -0.27864 0.549016 -0.26202199;\n\tsetAttr \".vt[3320:3485]\" -0.27466199 0.61097401 -0.18729 -0.146459 0.63211799 -0.222256\n\t\t -0.148205 0.55046999 -0.31134501 -0.15537301 0.398128 -0.447236 -0.102525 0.63500202 -0.230699\n\t\t -0.103436 0.54948503 -0.32296401 -0.108099 0.39051601 -0.46387601 0.002481 0.38305101 -0.48123899\n\t\t -0.113609 0.29107001 -0.53996998 -0.11873 0.219767 -0.583211 -0.30915099 0.80566502 0.33743301\n\t\t -0.16252901 0.30126899 -0.52130902 -0.30299199 0.35649699 -0.43330801 -0.159089 0.22458699 -0.57115\n\t\t -0.31499401 0.29664299 -0.46199799 -0.37339899 0.393976 -0.36703199 -0.38857499 0.34161299 -0.38558701\n\t\t -0.42624599 0.43804601 -0.28362101 -0.43556699 0.50912601 -0.183615 -0.438757 0.54030299 -0.127427\n\t\t -0.45660701 0.55541098 -0.061439 -0.45418501 0.58639598 -0.0029829999 -0.448174 0.617235 0.054031\n\t\t -0.115074 -0.24758799 -0.66271502 -0.168548 -0.140788 -0.67147797 -0.122493 -0.141756 -0.685215\n\t\t -0.12356 -0.069145001 -0.67971802 0.002482 -0.141489 -0.700665 0.002482 -0.247392 -0.67455202\n\t\t -0.107716 -0.31687701 -0.62946302 -0.100654 -0.389691 -0.588875 0.002482 -0.38979799 -0.59517699\n\t\t 0.002482 0.055061001 -0.66740799 -0.120818 0.05765 -0.64881003 -0.118185 0.118238 -0.62720501\n\t\t -0.163068 0.121588 -0.61194497 -0.14867 -0.31474799 -0.61965299 -0.20926701 -0.12629101 -0.64876699\n\t\t -0.37497699 -0.161277 -0.48014501 -0.20182399 -0.231966 -0.62626302 -0.372455 -0.057004001 -0.51454598\n\t\t -0.36533299 0.013598 -0.51947099 -0.209116 -0.053659 -0.64452499 -0.20333201 0.075194001 -0.61494303\n\t\t -0.34905499 0.13871101 -0.50402701 -0.44874999 0.064181 -0.41466099 -0.45695701 -0.004092 -0.40387401\n\t\t -0.51607299 0.127266 -0.28034499 -0.52400303 0.061714001 -0.26360199 -0.52857298 -0.0057580001 -0.237129\n\t\t -0.46218401 -0.106785 -0.364351 -0.42986599 0.18457501 -0.41073 -0.55572897 0.116423 -0.147385\n\t\t -0.548015 0.180196 -0.168208 -0.52979898 0.28380999 -0.187765 -0.49701801 0.23937599 -0.289873\n\t\t -0.33895901 0.197871 -0.490468 -0.198755 0.135478 -0.594769 -0.32056001 0.28902099 -0.468389\n\t\t -0.41741899 0.24243499 -0.403409 -0.394106 0.33300799 -0.392111 -0.45247701 0.38518301 -0.29417801\n\t\t -0.48227999 0.294783 -0.29074901 -0.51311803 0.33652401 -0.19539499 -0.175956 -0.065927997 -0.66253901\n\t\t -0.17446899 -0.13834199 -0.66842002 -0.193399 -0.301256 -0.59391302 -0.32296401 -0.253654 -0.49192801\n\t\t -0.185018 -0.37403399 -0.55387098 -0.37408999 -0.195628 -0.46229899 -0.42058399 -0.135506 -0.42558801\n\t\t -0.145174 -0.38508299 -0.57801199 -0.400985 0.72084898 0.31274 -0.41453299 0.69906998 0.34281299\n\t\t -0.43133801 0.68547201 0.25834101 -0.348483 0.74509799 0.47134599 -0.329023 0.783454 0.40253299\n\t\t -0.180461 0.85288203 0.483733 -0.268857 0.770935 0.56506503 -0.189639 0.79508299 0.59609401\n\t\t -0.12644599 0.86588103 0.497991 -0.13138799 0.80612099 0.60981899 0.002481 0.814601 0.61909902\n\t\t -0.124857 0.86084002 0.489871 -0.32393101 0.779383 0.39685601 -0.41903499 0.68339801 0.249658\n\t\t -0.39468399 0.71766102 0.308626 -0.424555 0.68278497 0.255059 -0.38962501 0.71797699 0.30288601\n\t\t -0.32021901 0.77933198 0.39072299 -0.17689399 0.84793103 0.469459 -0.17805099 0.84795803 0.47598499\n\t\t -0.124256 0.86088997 0.483318 -0.31277099 0.29527 -0.45774499 -0.385645 0.340168 -0.38201401\n\t\t -0.44604799 0.38681799 -0.289417 -0.156078 0.219496 -0.572806 -0.118079 0.218352 -0.57824099\n\t\t -0.017452 0.216902 -0.589522 -0.388679 0.335062 -0.38561499 -0.31565499 0.290867 -0.46031901\n\t\t -0.160649 0.219767 -0.570979 -0.19055299 0.2304 -0.56084698 -0.156838 0.218257 -0.57528901\n\t\t -0.116442 0.216497 -0.58085001 -0.113571 0.21410599 -0.587672 0.002481 0.216442 -0.59324199\n\t\t -0.39253601 0.72070599 0.30389601 -0.17809901 0.851475 0.47217 0.002481 0.216833 -0.591609\n\t\t -0.002502 0.216833 -0.59019798 -0.158306 0.222651 -0.56829298 -0.446412 0.39353901 -0.28930199\n\t\t -0.44293001 0.39188701 -0.28653699 -0.15848 -0.244367 -0.64774698 -0.15204599 -0.30963701 -0.61091101\n\t\t -0.148618 -0.31302601 -0.61642897 -0.142553 -0.38207099 -0.57165998 -0.139116 -0.38547301 -0.57706499\n\t\t -0.169918 -0.068125002 -0.66226 -0.16650701 0.06013 -0.63023698 -0.16305301 0.121245 -0.60869002\n\t\t -0.16843 -0.13994899 -0.66810101 -0.158566 -0.245827 -0.65104598 -0.170021 -0.068484001 -0.66562903\n\t\t -0.166546 0.060378 -0.63351703 -0.13915201 -0.387321 -0.58024198 -0.16652 0.124216 -0.60223198\n\t\t -0.172544 0.062939003 -0.63059002 -0.16993 0.063827001 -0.62387699 -0.16908699 0.123631 -0.60916698\n\t\t -0.16286901 0.22002199 -0.57279199 -0.173272 -0.064476997 -0.65598297 -0.17176799 -0.136426 -0.661865\n\t\t -0.161864 -0.24095701 -0.641909 -0.164536 -0.24352901 -0.64839202 -0.15468401 -0.31250399 -0.61731499\n\t\t 0.17648099 -0.492558 -0.5988 0.165253 -0.351307 -0.62496102 0.114773 -0.334324 -0.63095403\n\t\t 0.048815001 -0.42581099 -0.62495899 0.106224 -0.61224502 -0.69235402 0.106285 -0.61689401 -0.69225001\n\t\t 0.103354 -0.813241 -0.69119298 0.103489 -0.60423601 -0.69310099 0.068857998 -0.579584 -0.69954699\n\t\t 0.079171002 -0.52060997 -0.69587898 0.114759 -0.54283202 -0.689062 0.152527 -0.466373 -0.60881102\n\t\t 0.130009 -0.56359899 -0.68364102 0.100203 -0.43914801 -0.61966002 0.037765998 -0.50873899 -0.70017701\n\t\t 0.002482 -0.50719899 -0.70130801 0.150151 -0.47104001 -0.56906903 0.13286 -0.396869 -0.57810098\n\t\t 0.181511 -0.474884 -0.55931503 0.12172 -0.32240701 -0.59286398 0.123795 -0.32594499 -0.63241398\n\t\t 0.169118 -0.35078201 -0.58475798 0.159466 -0.41497999 -0.61223203 0.16384301 -0.334216 -0.628654\n\t\t 0.158916 -0.32227999 -0.59109402 0.156409 -0.32584 -0.63086599 0.16742399 -0.33217701 -0.58864897\n\t\t 0.11144 -0.332306 -0.59105402 0.106695 -0.346003 -0.58822298;\n\tsetAttr \".vt[3486:3651]\" 0.11045 -0.34706801 -0.62837702 0.13322601 -0.79723102 -0.67593199\n\t\t 0.106545 -0.813241 -0.67391998 0.124625 -0.79723901 -0.65922999 0.106544 -0.813241 -0.69033498\n\t\t 0.15281799 -0.75532299 -0.59469801 0.152824 -0.75532299 -0.58532399 0.168376 -0.75532299 -0.58524799\n\t\t 0.168376 -0.75532299 -0.46830001 0.152973 -0.75532299 -0.47464299 0.16293199 -0.414875 -0.57187998\n\t\t 0.002482 -0.365713 -0.62640297 0.050693002 -0.36510399 -0.585576 0.002482 -0.36164099 -0.58649302\n\t\t 0.050985999 -0.36922899 -0.62539399 0.103348 -0.37604699 -0.58242399 0.106434 -0.38055101 -0.62169898\n\t\t 0.13340101 -0.63391399 -0.679811 0.17863099 -0.49818501 -0.59474599 0.133644 -0.57722503 -0.68178397\n\t\t 0.18494301 -0.52408201 -0.58537698 0.168376 -0.75532299 -0.59453303 0.18451899 -0.53000998 -0.59462398\n\t\t 0.185368 -0.51815301 -0.473519 0.17863099 -0.49818501 -0.58545899 0.17863099 -0.49818501 -0.474785\n\t\t 0.086892001 -0.59855998 -0.70674098 0.093103997 -0.59087098 -0.69546002 0.065286003 -0.59097099 -0.71018302\n\t\t 0.098402999 -0.60596102 -0.70432502 0.035078 -0.57348001 -0.70303702 0.002482 -0.58627599 -0.714257\n\t\t 0.084463999 -0.60464102 -0.707156 0.064064004 -0.59779501 -0.710338 0.096015997 -0.61130798 -0.70478302\n\t\t 0.034626 -0.58682001 -0.713247 0.100933 -0.61577302 -0.70042801 0.103407 -0.61115599 -0.70011503\n\t\t 0.002482 -0.59334099 -0.71425402 0.064064004 -0.59779501 -0.68992001 0.084463999 -0.60464102 -0.68673098\n\t\t 0.096038997 -0.61135298 -0.68439698 0.034476999 -0.59386498 -0.69283903 0.034476999 -0.59386498 -0.71325701\n\t\t 0.101485 -0.61687303 -0.68317097 0.103096 -0.61996502 -0.68275702 0.103096 -0.61996502 -0.69299299\n\t\t 0.002482 -0.59334099 -0.69383597 0.103354 -0.813241 -0.68095601 0.17941 -0.47546801 -0.59968603\n\t\t 0.12578399 -0.45674899 -0.54414999 0.150151 -0.47104001 -0.53833997 0.12578399 -0.45674899 -0.57487899\n\t\t 0.17863099 -0.49818501 -0.52691197 0.17863099 -0.49818501 -0.55764103 -0.154502 -0.41497999 -0.61223203\n\t\t -0.095239997 -0.43914801 -0.61966002 -0.105486 -0.34706801 -0.62837702 -0.158879 -0.334216 -0.628654\n\t\t -0.109809 -0.334324 -0.63095403 -0.043850999 -0.42581099 -0.62495899 -0.046023 -0.36922899 -0.62539399\n\t\t 0.002482 -0.42135799 -0.626284 -0.10126 -0.61224502 -0.69235402 -0.12868001 -0.57722503 -0.68178397\n\t\t -0.098389998 -0.813241 -0.69119298 -0.088141002 -0.59087098 -0.69546002 -0.063895002 -0.579584 -0.69954699\n\t\t -0.032802001 -0.50873899 -0.70017701 0.002482 -0.57268101 -0.70408601 -0.109795 -0.54283202 -0.689062\n\t\t -0.147563 -0.466373 -0.60881102 -0.125045 -0.56359899 -0.68364102 -0.074207 -0.52060997 -0.69587898\n\t\t -0.127896 -0.396869 -0.57810098 -0.14518701 -0.47104001 -0.56906903 -0.17654701 -0.474884 -0.55931503\n\t\t -0.151445 -0.32584 -0.63086599 -0.118831 -0.32594499 -0.63241398 -0.16246 -0.33217701 -0.58864897\n\t\t -0.160289 -0.351307 -0.62496102 -0.16415399 -0.35078201 -0.58475798 -0.157969 -0.414875 -0.57187998\n\t\t -0.153952 -0.32227999 -0.59109402 -0.106476 -0.332306 -0.59105402 -0.116756 -0.32240701 -0.59286398\n\t\t -0.101731 -0.346003 -0.58822298 -0.098384 -0.37604699 -0.58242399 -0.10147 -0.38055101 -0.62169898\n\t\t -0.10158 -0.813241 -0.69033498 -0.119661 -0.79723901 -0.65922999 -0.101581 -0.813241 -0.67391998\n\t\t -0.128263 -0.79723102 -0.67593199 -0.147854 -0.75532299 -0.59469801 -0.14786001 -0.75532299 -0.58532399\n\t\t -0.148009 -0.75532299 -0.47464299 -0.045729 -0.36510399 -0.585576 -0.179555 -0.53000998 -0.59462398\n\t\t -0.128437 -0.63391399 -0.679811 -0.17997999 -0.52408201 -0.58537698 -0.163413 -0.75532299 -0.59453303\n\t\t -0.163413 -0.75532299 -0.58524799 -0.163413 -0.75532299 -0.46830001 -0.18040401 -0.51815301 -0.473519\n\t\t -0.173667 -0.49818501 -0.58545899 -0.173667 -0.49818501 -0.474785 -0.081928 -0.59855998 -0.70674098\n\t\t -0.060322002 -0.59097099 -0.71018302 -0.098525003 -0.60423601 -0.69310099 -0.030115001 -0.57348001 -0.70303702\n\t\t -0.098443002 -0.61115599 -0.70011503 -0.059099998 -0.59779501 -0.710338 -0.093438998 -0.60596102 -0.70432502\n\t\t -0.029662 -0.58682001 -0.713247 -0.098131999 -0.61996502 -0.69299299 -0.101321 -0.61689401 -0.69225001\n\t\t -0.079501003 -0.60464102 -0.68673098 -0.059099998 -0.59779501 -0.68992001 -0.079501003 -0.60464102 -0.707156\n\t\t -0.091076002 -0.61135298 -0.68439698 -0.091052003 -0.61130798 -0.70478302 -0.029514 -0.59386498 -0.71325701\n\t\t -0.029514 -0.59386498 -0.69283903 -0.096520998 -0.61687303 -0.68317097 -0.095969997 -0.61577302 -0.70042801\n\t\t -0.098131999 -0.61996502 -0.68275702 -0.098389998 -0.813241 -0.68095601 -0.174446 -0.47546801 -0.59968603\n\t\t -0.173667 -0.49818501 -0.59474599 -0.171517 -0.492558 -0.5988 -0.173667 -0.49818501 -0.55764103\n\t\t -0.12082 -0.45674899 -0.54414999 -0.12082 -0.45674899 -0.57487899 -0.14518701 -0.47104001 -0.53833997\n\t\t -0.173667 -0.49818501 -0.52691197 0.33564001 -0.085917003 0.379242 0.34182101 -0.120284 0.49997199\n\t\t 0.335639 -0.085914999 0.49997899 0.34182101 -0.120286 0.379242 0.31724 -0.056233998 0.499989\n\t\t 0.31724101 -0.056235999 0.379242 0.28856799 -0.036304001 0.379242 0.25457099 -0.028325999 0.379242\n\t\t 0.220201 -0.034508001 0.379242 0.2202 -0.034508001 0.50001401 0.19052 -0.052905999 0.500018\n\t\t 0.19052 -0.052905999 0.379242 0.170588 -0.081579998 0.379242 0.170588 -0.081579 0.500018\n\t\t 0.16260999 -0.115577 0.379242 0.16879199 -0.149946 0.379242 0.168791 -0.14994501 0.50000602\n\t\t 0.18719 -0.179627 0.379242 0.215864 -0.199559 0.379242 0.249861 -0.207537 0.379242\n\t\t 0.28423101 -0.20135599 0.379242 0.28422999 -0.201355 0.499971 0.313912 -0.182956 0.49996799\n\t\t 0.313912 -0.18295699 0.379242 0.33384299 -0.154284 0.379242 0.29683101 -0.075602002 0.51016998\n\t\t 0.31039599 -0.062729001 0.51016903 0.30945399 -0.095965996 0.51016098 0.332389 -0.120037 0.510153\n\t\t 0.31369501 -0.119547 0.51015401 0.32525101 -0.150456 0.510149;\n\tsetAttr \".vt[3652:3817]\" 0.30822101 -0.142873 0.51015002 0.29454601 -0.16254599 0.51015002\n\t\t 0.27418101 -0.17517 0.510153 0.250108 -0.19810501 0.51015902 0.25060001 -0.17941099 0.51015902\n\t\t 0.27715701 -0.061926 0.51017898 0.28474 -0.044895999 0.51017898 0.253831 -0.056453001 0.51018798\n\t\t 0.25432101 -0.037758 0.51018798 0.23025 -0.060694002 0.510194 0.22357 -0.043288998 0.51019502\n\t\t 0.209886 -0.073316999 0.510198 0.196211 -0.092990004 0.51019698 0.17918099 -0.085405998 0.510198\n\t\t 0.19073699 -0.116316 0.51019299 0.172042 -0.115824 0.510194 0.194978 -0.139897 0.51018602\n\t\t 0.177573 -0.146575 0.51018697 0.207601 -0.160262 0.51017803 0.194034 -0.173132 0.51017803\n\t\t 0.227275 -0.17393699 0.51016802 0.32685801 -0.089285001 0.51016003 0.33384401 -0.154282 0.49996799\n\t\t 0.30741799 -0.176112 0.510149 0.28086099 -0.19257399 0.51015198 0.24986 -0.207537 0.49997801\n\t\t 0.215863 -0.199559 0.49998701 0.28856599 -0.036302999 0.499998 0.25456801 -0.028325999 0.50000799\n\t\t 0.197014 -0.059751 0.51019901 0.16260999 -0.115575 0.50001299 0.187189 -0.179626 0.49999699\n\t\t 0.21969 -0.190966 0.51016802 0.168992 -0.30294299 0.19178499 0.172784 -0.328969 0.28619099\n\t\t 0.16815899 -0.30326 0.28619701 0.173677 -0.32899401 0.19178399 0.154396 -0.281059 0.286203\n\t\t 0.155046 -0.28044501 0.19178499 0.133312 -0.26533601 0.19178499 0.107517 -0.26018301 0.28621799\n\t\t 0.107542 -0.259289 0.19178399 0.081490003 -0.26397499 0.19178499 0.058991998 -0.27792099 0.19178499\n\t\t 0.043884002 -0.29965499 0.19178499 0.044698 -0.300017 0.28622499 0.038729999 -0.32544699 0.28622201\n\t\t 0.037836999 -0.325425 0.19178499 0.042521998 -0.35147601 0.19178399 0.057116002 -0.37335801 0.28621\n\t\t 0.056467999 -0.373974 0.19178499 0.078202002 -0.38908201 0.19178499 0.103972 -0.39513001 0.19178499\n\t\t 0.130024 -0.39044401 0.19178399 0.152522 -0.37649801 0.19178499 0.16763 -0.35476401 0.19178499\n\t\t 0.16233499 -0.30549601 0.29099 0.140229 -0.294503 0.29099 0.149857 -0.285366 0.29099\n\t\t 0.149983 -0.310238 0.29099 0.166528 -0.328805 0.29099 0.15325899 -0.32845801 0.29099\n\t\t 0.161117 -0.351863 0.29099 0.14903 -0.346481 0.29099 0.1476 -0.37131 0.29099 0.138464 -0.36168101 0.29099\n\t\t 0.127469 -0.38378799 0.29099 0.122729 -0.37143499 0.29099 0.10416 -0.38798001 0.29099\n\t\t 0.104509 -0.37471199 0.29099 0.081101999 -0.38256899 0.29099 0.125028 -0.28393701 0.29099\n\t\t 0.13041 -0.27184901 0.29099 0.107005 -0.27970701 0.29099 0.107353 -0.26643899 0.29099\n\t\t 0.088785 -0.28298399 0.29099 0.084044002 -0.27063099 0.29099 0.07305 -0.29273799 0.29099\n\t\t 0.063914001 -0.28310901 0.29099 0.062484 -0.30793801 0.29099 0.050397001 -0.30255499 0.29099\n\t\t 0.058254998 -0.32596099 0.29099 0.044985998 -0.32561201 0.29099 0.061531 -0.344181 0.29099\n\t\t 0.049178001 -0.348921 0.29099 0.071285002 -0.359916 0.29099 0.061655998 -0.36905101 0.29099\n\t\t 0.086485997 -0.37048301 0.29099 0.043354001 -0.351156 0.286217 0.078564003 -0.38826799 0.28620201\n\t\t 0.059606999 -0.27856901 0.286226 0.081808001 -0.26480699 0.28622299 0.132947 -0.26615 0.28621101\n\t\t 0.166816 -0.35440001 0.28618801 0.151907 -0.37584901 0.28618801 0.129705 -0.38961199 0.28619\n\t\t 0.103995 -0.394236 0.28619501 0.240978 -0.46938899 -0.133173 0.26800501 -0.474987 -0.133173\n\t\t 0.240978 -0.46938899 0.0089410003 0.29107499 -0.49013999 -0.133173 0.30622801 -0.51320899 -0.133173\n\t\t 0.31182501 -0.540236 -0.133173 0.30622801 -0.56726301 -0.133173 0.29107401 -0.59033298 -0.133173\n\t\t 0.26800501 -0.60548598 -0.133173 0.240978 -0.61108398 -0.133173 0.240978 -0.61108398 0.0089410003\n\t\t 0.21395101 -0.60548598 0.0089410003 0.21395101 -0.60548598 -0.133173 0.190882 -0.59033298 -0.133173\n\t\t 0.17572901 -0.56726402 -0.133173 0.170131 -0.54023701 -0.133173 0.170131 -0.540236 0.0089410003\n\t\t 0.17572799 -0.51320899 0.0089410003 0.17572799 -0.51320899 -0.133173 0.190882 -0.49013999 -0.133173\n\t\t 0.21395101 -0.474987 -0.133173 0.240978 -0.49240899 0.104388 0.25922301 -0.49618801 0.104388\n\t\t 0.28304201 -0.49817199 0.104388 0.27479699 -0.50641698 0.104388 0.28502601 -0.52199101 0.104388\n\t\t 0.300466 -0.540236 0.104388 0.28880501 -0.540236 0.104388 0.28502601 -0.55848199 0.104388\n\t\t 0.28304201 -0.58230102 0.104388 0.27479699 -0.57405502 0.104388 0.25922301 -0.58428502 0.104388\n\t\t 0.240978 -0.588063 0.104388 0.218284 -0.59502399 0.104388 0.22273199 -0.58428502 0.104388\n\t\t 0.207159 -0.57405502 0.104388 0.19692899 -0.55848199 0.104388 0.193151 -0.540236 0.104388\n\t\t 0.19692899 -0.52199101 0.104388 0.207159 -0.50641698 0.104388 0.218284 -0.485448 0.104388\n\t\t 0.22273199 -0.49618801 0.104388 0.26800501 -0.474987 0.088372998 0.240978 -0.46938899 0.076024003\n\t\t 0.26800501 -0.47498599 0.076025002 0.29107401 -0.49013999 0.076024003 0.30622801 -0.56726301 0.088372998\n\t\t 0.30622801 -0.56726301 0.076025002 0.26800501 -0.60548598 0.076024003 0.190881 -0.59033298 0.088372998\n\t\t 0.17572799 -0.56726301 0.088372998 0.170131 -0.540236 0.076025002 0.17572799 -0.51320899 0.088372998\n\t\t 0.190881 -0.49013999 0.076024003 0.190881 -0.49013999 0.088372998 0.21395101 -0.47498599 0.076025002\n\t\t 0.27167001 -0.46613899 0.070440002 0.297867 -0.483347 0.070440002 0.31507501 -0.50954401 0.070440002\n\t\t 0.31507501 -0.50954401 0.051406 0.32143199 -0.540236 0.051406 0.31507501 -0.57092798 0.070440002\n\t\t 0.31507501 -0.57092798 0.051406 0.27167001 -0.61433297 0.051406 0.240978 -0.62068999 0.070440002\n\t\t 0.18408801 -0.59712499 0.070440002 0.166881 -0.57092798 0.070440002 0.166881 -0.57092899 0.051406\n\t\t 0.166881 -0.50954401 0.070440002;\n\tsetAttr \".vt[3818:3983]\" 0.21028601 -0.46613899 0.070440002 0.240978 -0.46938899 0.045821998\n\t\t 0.30622801 -0.51320899 0.045821998 0.30622801 -0.51320899 0.018964 0.31182501 -0.540236 0.045821998\n\t\t 0.30622801 -0.56726301 0.045821998 0.30622801 -0.56726301 0.018964 0.29107401 -0.59033298 0.018964\n\t\t 0.26800501 -0.60548598 0.018964 0.21395101 -0.60548598 0.045821998 0.17572799 -0.56726402 0.018964\n\t\t 0.170131 -0.540236 0.018964 0.17572799 -0.51320899 0.018964 0.190881 -0.49013999 0.045821998\n\t\t 0.240978 -0.46389201 0.012081 0.240978 -0.46389201 0.015823999 0.29496199 -0.48625299 0.012081\n\t\t 0.31129101 -0.51111197 0.015823999 0.31129101 -0.51111197 0.012081 0.31732199 -0.540236 0.012081\n\t\t 0.31732199 -0.540236 0.015823999 0.211854 -0.61054897 0.012081 0.186994 -0.59421998 0.012081\n\t\t 0.170665 -0.51111197 0.015823999 0.170665 -0.51111197 0.012081 0.186994 -0.48625299 0.012081\n\t\t 0.186994 -0.48625299 0.015823999 0.240978 -0.45978299 0.070440002 0.30622801 -0.51320899 0.076025002\n\t\t 0.32143199 -0.540236 0.070440002 0.31182501 -0.540236 0.076025002 0.297867 -0.59712499 0.070440002\n\t\t 0.29107401 -0.59033298 0.076025002 0.27167001 -0.61433297 0.070440002 0.240978 -0.61108297 0.076024003\n\t\t 0.21395101 -0.60548598 0.076024003 0.190881 -0.59033298 0.076025002 0.21028601 -0.61433297 0.070440002\n\t\t 0.17572799 -0.56726301 0.076025002 0.160524 -0.540236 0.070440002 0.17572799 -0.51320899 0.076025002\n\t\t 0.184089 -0.483347 0.070440002 0.29107401 -0.49013999 0.045821998 0.27167001 -0.46613899 0.051406\n\t\t 0.26800501 -0.47498599 0.045821998 0.297867 -0.483347 0.051406 0.240978 -0.45978299 0.051406\n\t\t 0.21028601 -0.46613899 0.051406 0.21395101 -0.47498599 0.045821998 0.184089 -0.483347 0.051406\n\t\t 0.166881 -0.50954401 0.051406 0.17572799 -0.51320899 0.045821998 0.160524 -0.54023701 0.051406\n\t\t 0.170131 -0.540236 0.045821998 0.17572799 -0.56726301 0.045821998 0.184089 -0.59712601 0.051406\n\t\t 0.190881 -0.59033298 0.045821998 0.240978 -0.62068999 0.051406 0.240978 -0.61108297 0.045821998\n\t\t 0.21028601 -0.61433297 0.051406 0.26800501 -0.60548598 0.045821998 0.297867 -0.59712499 0.051406\n\t\t 0.29107401 -0.59033298 0.045821998 0.240978 -0.46938899 0.018964 0.27010199 -0.469924 0.015823999\n\t\t 0.26800501 -0.47498599 0.018964 0.29496199 -0.48625299 0.015823999 0.29107401 -0.49013999 0.018964\n\t\t 0.31182501 -0.540236 0.018964 0.31129101 -0.56936002 0.015823999 0.29496199 -0.59421998 0.015823999\n\t\t 0.27010199 -0.61054897 0.015823999 0.240978 -0.61658102 0.015823999 0.240978 -0.61108297 0.018964\n\t\t 0.21395101 -0.60548598 0.018964 0.186994 -0.59421998 0.015823999 0.190882 -0.59033298 0.018964\n\t\t 0.211854 -0.61054897 0.015823999 0.170665 -0.56936097 0.015823999 0.164634 -0.540236 0.015823999\n\t\t 0.190881 -0.49013999 0.018964 0.211854 -0.469924 0.015823999 0.21395101 -0.47498599 0.018964\n\t\t 0.29107401 -0.49013999 0.0089410003 0.27010199 -0.469924 0.012081 0.26800501 -0.47498599 0.0089410003\n\t\t 0.211854 -0.469924 0.012081 0.21395101 -0.47498599 0.0089410003 0.190881 -0.49013999 0.0089410003\n\t\t 0.164634 -0.54023701 0.012081 0.17066599 -0.56936097 0.012081 0.17572799 -0.56726402 0.0089410003\n\t\t 0.190882 -0.59033298 0.0089410003 0.240978 -0.61658001 0.012081 0.27010199 -0.61054897 0.012081\n\t\t 0.26800501 -0.60548598 0.0089410003 0.29496199 -0.59421998 0.012081 0.29107401 -0.59033298 0.0089410003\n\t\t 0.31129101 -0.56936002 0.012081 0.30622801 -0.56726301 0.0089410003 0.31182501 -0.540236 0.0089410003\n\t\t 0.30622801 -0.51320899 0.0089410003 0.240978 -0.46938899 0.088372998 0.26367199 -0.485448 0.104388\n\t\t 0.240978 -0.480748 0.104388 0.29107401 -0.49013999 0.088372998 0.295766 -0.517542 0.104388\n\t\t 0.30622801 -0.51320899 0.088372998 0.31182501 -0.540236 0.088372998 0.295766 -0.56292999 0.104388\n\t\t 0.29107401 -0.59033298 0.088372998 0.26367199 -0.59502399 0.104388 0.26800501 -0.60548598 0.088372998\n\t\t 0.240978 -0.61108297 0.088372998 0.240978 -0.59972399 0.104388 0.21395101 -0.60548598 0.088372998\n\t\t 0.19891299 -0.58230102 0.104388 0.18618999 -0.56292999 0.104388 0.170131 -0.540236 0.088372998\n\t\t 0.18149 -0.540236 0.104388 0.18618999 -0.517542 0.104388 0.19891299 -0.49817199 0.104388\n\t\t 0.21395101 -0.474987 0.088372998 0.43959901 -0.44303399 0.015509 0.43959901 -0.44303399 0.20162\n\t\t 0.47434601 -0.45009601 0.015509 0.50391001 -0.46967199 0.20162 0.50391001 -0.46967199 0.015509\n\t\t 0.52348602 -0.49923599 0.015509 0.53054798 -0.53398299 0.015509 0.52348602 -0.56873 0.015509\n\t\t 0.50391001 -0.59829301 0.015509 0.47434601 -0.61786902 0.20162 0.47434601 -0.61786902 0.015509\n\t\t 0.43959901 -0.62493199 0.20162 0.43959901 -0.62493199 0.015509 0.40485299 -0.61786997 0.015509\n\t\t 0.37528899 -0.59829402 0.20162 0.37528899 -0.59829402 0.015509 0.35571301 -0.56873 0.20162\n\t\t 0.35571301 -0.56873101 0.015509 0.34865099 -0.53398401 0.015509 0.35571301 -0.499237 0.015509\n\t\t 0.37528899 -0.46967199 0.015509 0.404852 -0.45009601 0.015509 0.43959901 -0.47479001 0.32670701\n\t\t 0.46221399 -0.479386 0.32670701 0.43959901 -0.457616 0.32670701 0.493599 -0.479983 0.32670701\n\t\t 0.481455 -0.492127 0.32670701 0.51003599 -0.504807 0.32670701 0.494196 -0.51136798 0.32670701\n\t\t 0.515966 -0.53398299 0.32670701 0.49879199 -0.53398299 0.32670701 0.494196 -0.55659699 0.32670701\n\t\t 0.493599 -0.587982 0.32670701 0.481455 -0.57583803 0.32670701 0.468775 -0.60442001 0.32670701\n\t\t 0.46221399 -0.588579 0.32670701 0.43959901 -0.61035001 0.32670701 0.43959901 -0.59317601 0.32670701\n\t\t 0.41698501 -0.588579 0.32670701 0.3856 -0.587982 0.32670701 0.397744 -0.57583803 0.32670701\n\t\t 0.36916199 -0.56315899 0.32670701 0.385003 -0.55659699 0.32670701;\n\tsetAttr \".vt[3984:4149]\" 0.38040599 -0.53398299 0.32670701 0.385003 -0.51136798 0.32670701\n\t\t 0.3856 -0.479983 0.32670701 0.397744 -0.492127 0.32670701 0.41042301 -0.46354601 0.32670701\n\t\t 0.41698501 -0.479386 0.32670701 0.43959901 -0.44303399 0.289473 0.47434601 -0.45009601 0.30564499\n\t\t 0.43959901 -0.44303399 0.30564499 0.50391001 -0.46967199 0.30564499 0.52348602 -0.49923599 0.30564499\n\t\t 0.53054798 -0.53398299 0.30564499 0.53054798 -0.53398299 0.289473 0.52348602 -0.56873 0.30564499\n\t\t 0.50391001 -0.59829301 0.30564499 0.47434601 -0.61786902 0.30564499 0.43959901 -0.62493199 0.30564499\n\t\t 0.404852 -0.61786902 0.30564499 0.404852 -0.61786997 0.289473 0.468775 -0.46354601 0.32670701\n\t\t 0.404852 -0.45009601 0.30564499 0.404852 -0.45009601 0.289473 0.37528899 -0.46967199 0.289473\n\t\t 0.37528899 -0.46967199 0.30564499 0.35571301 -0.49923599 0.289473 0.35571301 -0.49923599 0.30564499\n\t\t 0.34865001 -0.53398299 0.30564499 0.35571301 -0.56873 0.30564499 0.37528899 -0.59829301 0.289473\n\t\t 0.37528899 -0.59829301 0.30564499 0.41042301 -0.60442001 0.32670701 0.36323199 -0.53398299 0.32670701\n\t\t 0.36916199 -0.504807 0.32670701 0.479058 -0.43872201 0.28216001 0.51262999 -0.46095201 0.25723299\n\t\t 0.53486001 -0.494524 0.25723299 0.53486001 -0.57344198 0.25723299 0.47905701 -0.62924403 0.28216001\n\t\t 0.479058 -0.62924403 0.25723299 0.43959901 -0.63726401 0.28216001 0.40013999 -0.62924403 0.28216001\n\t\t 0.36656901 -0.607014 0.25723299 0.33631799 -0.53398299 0.28216001 0.33631799 -0.53398299 0.25723299\n\t\t 0.344338 -0.494524 0.28216001 0.344338 -0.49452499 0.25723299 0.36656901 -0.46095201 0.28216001\n\t\t 0.36656901 -0.46095201 0.25723299 0.400141 -0.43872201 0.28216001 0.47434601 -0.45009601 0.214746\n\t\t 0.50391001 -0.46967199 0.24992 0.50391001 -0.46967199 0.214746 0.52348602 -0.49923599 0.24992\n\t\t 0.52348602 -0.49923599 0.214746 0.53054798 -0.53398299 0.24992 0.53054798 -0.53398299 0.214746\n\t\t 0.47434601 -0.61786902 0.24992 0.47434601 -0.61786997 0.214746 0.43959901 -0.62493199 0.24992\n\t\t 0.404852 -0.61786997 0.24992 0.37528899 -0.59829301 0.24992 0.37528899 -0.59829402 0.214746\n\t\t 0.35571301 -0.56873 0.24992 0.35571301 -0.56873 0.214746 0.34865001 -0.53398299 0.24992\n\t\t 0.34865001 -0.53398299 0.214746 0.35571301 -0.49923599 0.24992 0.35571301 -0.49923599 0.214746\n\t\t 0.37528899 -0.46967199 0.214746 0.404852 -0.45009601 0.24992 0.404852 -0.45009601 0.214746\n\t\t 0.47701001 -0.44366601 0.210595 0.43959901 -0.43606299 0.210595 0.47701001 -0.44366601 0.205772\n\t\t 0.50883901 -0.46474299 0.205772 0.52991599 -0.49657199 0.205771 0.52991599 -0.57139301 0.205772\n\t\t 0.50883901 -0.60322303 0.210595 0.47701001 -0.6243 0.205772 0.43959901 -0.63190299 0.210595\n\t\t 0.34928301 -0.57139403 0.205772 0.349282 -0.49657199 0.205772 0.370359 -0.46474299 0.205772\n\t\t 0.40218899 -0.44366601 0.210595 0.40218899 -0.44366601 0.205772 0.47434601 -0.45009601 0.289473\n\t\t 0.43959901 -0.430702 0.28216001 0.51262999 -0.46095201 0.28216001 0.50391001 -0.46967199 0.289473\n\t\t 0.53486001 -0.494524 0.28216001 0.52348602 -0.49923599 0.289473 0.54288 -0.53398299 0.28216001\n\t\t 0.53486001 -0.57344198 0.28216001 0.52348602 -0.56873 0.289473 0.51262999 -0.60701299 0.28216001\n\t\t 0.50391001 -0.59829301 0.289473 0.47434601 -0.61786902 0.289473 0.43959901 -0.62493199 0.289473\n\t\t 0.366568 -0.60701299 0.28216001 0.344338 -0.57344103 0.28216001 0.35571301 -0.56873 0.289473\n\t\t 0.34865001 -0.53398299 0.289473 0.479058 -0.43872201 0.25723299 0.47434601 -0.45009601 0.24992\n\t\t 0.43959901 -0.430702 0.25723299 0.43959901 -0.44303399 0.24992 0.400141 -0.43872201 0.25723299\n\t\t 0.37528899 -0.46967199 0.24992 0.344338 -0.57344198 0.25723299 0.43959901 -0.63726401 0.25723299\n\t\t 0.400141 -0.62924403 0.25723299 0.51262999 -0.60701299 0.25723299 0.50391001 -0.59829301 0.24992\n\t\t 0.52348602 -0.56873 0.24992 0.54288 -0.53398299 0.25723299 0.43959901 -0.44303399 0.214746\n\t\t 0.50883901 -0.46474299 0.210595 0.52991599 -0.49657199 0.210595 0.53751999 -0.53398299 0.210595\n\t\t 0.52991599 -0.57139301 0.210595 0.52348602 -0.56873 0.214746 0.50391001 -0.59829301 0.214746\n\t\t 0.47701001 -0.6243 0.210595 0.43959901 -0.62493199 0.214746 0.404852 -0.61786997 0.214746\n\t\t 0.370359 -0.60322303 0.210595 0.40218899 -0.6243 0.210595 0.34928301 -0.57139403 0.210595\n\t\t 0.34167901 -0.53398299 0.210595 0.349282 -0.49657199 0.210595 0.370359 -0.46474299 0.210595\n\t\t 0.47434601 -0.45009601 0.20162 0.43959901 -0.43606299 0.205771 0.404852 -0.45009601 0.20162\n\t\t 0.37528899 -0.46967199 0.20162 0.35571301 -0.49923599 0.20162 0.34167901 -0.53398299 0.205772\n\t\t 0.34865001 -0.53398299 0.20162 0.370359 -0.60322303 0.205771 0.40218899 -0.6243 0.205772\n\t\t 0.404852 -0.61786997 0.20162 0.43959901 -0.63190299 0.205771 0.50883901 -0.60322303 0.205772\n\t\t 0.50391001 -0.59829301 0.20162 0.52348602 -0.56873 0.20162 0.53751999 -0.53398299 0.205772\n\t\t 0.53054798 -0.53398299 0.20162 0.52348602 -0.49923599 0.20162 0.51003599 -0.56315899 0.32670701\n\t\t -0.33067599 -0.085917003 0.379242 -0.33685699 -0.120286 0.379242 -0.33067501 -0.085914999 0.49997899\n\t\t -0.312278 -0.056235999 0.379242 -0.283604 -0.036304001 0.379242 -0.249607 -0.028325999 0.379242\n\t\t -0.21523701 -0.034508001 0.379242 -0.18555599 -0.052905999 0.379242 -0.16562399 -0.081579998 0.379242\n\t\t -0.157646 -0.115575 0.50001299 -0.157647 -0.115577 0.379242 -0.163828 -0.149946 0.379242\n\t\t -0.163827 -0.14994501 0.50000602 -0.182225 -0.179626 0.49999699 -0.182226 -0.179627 0.379242\n\t\t -0.21089999 -0.199559 0.379242 -0.24489599 -0.207537 0.49997801;\n\tsetAttr \".vt[4150:4315]\" -0.24489699 -0.207537 0.379242 -0.27926701 -0.20135599 0.379242\n\t\t -0.30894801 -0.18295699 0.379242 -0.32888001 -0.154284 0.379242 -0.32888001 -0.154282 0.49996799\n\t\t -0.29186699 -0.075602002 0.51016998 -0.30543199 -0.062729001 0.51016903 -0.30449 -0.095965996 0.51016098\n\t\t -0.327425 -0.120037 0.510153 -0.30873099 -0.119547 0.51015401 -0.30325699 -0.142873 0.51015002\n\t\t -0.28958201 -0.16254599 0.51015002 -0.26921701 -0.17517 0.510153 -0.245636 -0.17941099 0.51015902\n\t\t -0.27219301 -0.061926998 0.51017898 -0.27977601 -0.044895999 0.51017898 -0.248868 -0.056453001 0.51018798\n\t\t -0.22528601 -0.060694002 0.510194 -0.20492201 -0.073316999 0.510198 -0.191247 -0.092991002 0.51019698\n\t\t -0.174217 -0.085405998 0.510198 -0.185773 -0.116316 0.51019299 -0.190014 -0.139897 0.51018602\n\t\t -0.172609 -0.146575 0.51018697 -0.202637 -0.160262 0.51017803 -0.222311 -0.17393699 0.51016802\n\t\t -0.32189399 -0.089286 0.51016003 -0.31227601 -0.056233998 0.499989 -0.33685699 -0.120284 0.49997199\n\t\t -0.32028699 -0.150456 0.510149 -0.30894801 -0.182956 0.49996799 -0.30245399 -0.176112 0.510149\n\t\t -0.275897 -0.19257399 0.51015198 -0.27926701 -0.201355 0.499971 -0.24514499 -0.19810501 0.51015902\n\t\t -0.214726 -0.190966 0.51016802 -0.210899 -0.199559 0.49998701 -0.283602 -0.036302999 0.499998\n\t\t -0.249604 -0.028325999 0.50000799 -0.249357 -0.037758 0.51018798 -0.218606 -0.043288998 0.51019502\n\t\t -0.21523599 -0.034508001 0.50001401 -0.18555599 -0.052905999 0.500018 -0.19205 -0.059751 0.51019901\n\t\t -0.16562399 -0.081579 0.500018 -0.167079 -0.115824 0.510194 -0.18907 -0.173132 0.51017803\n\t\t -0.16782001 -0.328969 0.28619099 -0.164028 -0.30294299 0.19178499 -0.163195 -0.30326 0.28619701\n\t\t -0.168713 -0.32899401 0.19178399 -0.15008201 -0.28044501 0.19178499 -0.12834799 -0.26533601 0.19178499\n\t\t -0.102578 -0.259289 0.19178399 -0.076526999 -0.26397499 0.19178499 -0.076844998 -0.26480699 0.28622299\n\t\t -0.054644 -0.27856901 0.286226 -0.054028999 -0.27792099 0.19178499 -0.03892 -0.29965499 0.19178499\n\t\t -0.032873001 -0.325425 0.19178499 -0.037558999 -0.35147601 0.19178399 -0.038389999 -0.351156 0.286217\n\t\t -0.051504999 -0.373974 0.19178499 -0.073238999 -0.38908201 0.19178499 -0.099008001 -0.39513001 0.19178499\n\t\t -0.12506001 -0.39044401 0.19178399 -0.124741 -0.38961199 0.28619 -0.146943 -0.37584901 0.28618801\n\t\t -0.147558 -0.37649801 0.19178499 -0.16266599 -0.35476401 0.19178499 -0.157371 -0.30549601 0.29099\n\t\t -0.13526499 -0.294503 0.29099 -0.14501899 -0.310238 0.29099 -0.14489301 -0.285366 0.29099\n\t\t -0.16156401 -0.328805 0.29099 -0.148295 -0.32845801 0.29099 -0.15615299 -0.351863 0.29099\n\t\t -0.14406601 -0.346481 0.29099 -0.142636 -0.37131 0.29099 -0.13349999 -0.36168101 0.29099\n\t\t -0.122506 -0.38378799 0.29099 -0.117765 -0.37143499 0.29099 -0.099196002 -0.38798001 0.29099\n\t\t -0.099545002 -0.37471199 0.29099 -0.081522003 -0.37048301 0.29099 -0.120064 -0.28393701 0.29099\n\t\t -0.12544601 -0.27184901 0.29099 -0.102041 -0.27970701 0.29099 -0.102389 -0.26643899 0.29099\n\t\t -0.083821997 -0.28298399 0.29099 -0.079080001 -0.27063099 0.29099 -0.068086997 -0.29273799 0.29099\n\t\t -0.058951002 -0.28310901 0.29099 -0.057519998 -0.30793801 0.29099 -0.045433 -0.30255499 0.29099\n\t\t -0.053291 -0.32596099 0.29099 -0.040022999 -0.32561201 0.29099 -0.056568 -0.344181 0.29099\n\t\t -0.044215001 -0.348921 0.29099 -0.066321999 -0.359916 0.29099 -0.056692 -0.36905101 0.29099\n\t\t -0.076139003 -0.38256899 0.29099 -0.052152 -0.37335801 0.28621 -0.033767 -0.32544699 0.28622201\n\t\t -0.039735001 -0.300017 0.28622499 -0.073601 -0.38826799 0.28620201 -0.102553 -0.26018301 0.28621799\n\t\t -0.127983 -0.26615 0.28621101 -0.149432 -0.281059 0.286203 -0.161852 -0.35440001 0.28618801\n\t\t -0.099031001 -0.394236 0.28619501 -0.26304099 -0.47498599 0.0089410003 -0.23601399 -0.46938899 -0.133173\n\t\t -0.23601399 -0.46938899 0.0089410003 -0.26304099 -0.474987 -0.133173 -0.286111 -0.49013999 -0.133173\n\t\t -0.30126399 -0.51320899 -0.133173 -0.30686101 -0.540236 -0.133173 -0.30126399 -0.56726301 0.0089410003\n\t\t -0.30126399 -0.56726301 -0.133173 -0.286111 -0.59033298 -0.133173 -0.26304099 -0.60548598 0.0089410003\n\t\t -0.26304099 -0.60548598 -0.133173 -0.23601399 -0.61108398 -0.133173 -0.208987 -0.60548598 0.0089410003\n\t\t -0.185918 -0.59033298 -0.133173 -0.208987 -0.60548598 -0.133173 -0.185918 -0.59033298 0.0089410003\n\t\t -0.170764 -0.56726402 0.0089410003 -0.170765 -0.56726402 -0.133173 -0.165167 -0.54023701 -0.133173\n\t\t -0.165167 -0.540236 0.0089410003 -0.170764 -0.51320899 -0.133173 -0.185918 -0.49013999 -0.133173\n\t\t -0.185918 -0.49013999 0.0089410003 -0.208987 -0.474987 -0.133173 -0.23601399 -0.49240899 0.104388\n\t\t -0.25425899 -0.49618801 0.104388 -0.23601399 -0.480748 0.104388 -0.27807799 -0.49817199 0.104388\n\t\t -0.269833 -0.50641698 0.104388 -0.290802 -0.517542 0.104388 -0.280063 -0.52199101 0.104388\n\t\t -0.29550201 -0.540236 0.104388 -0.28384101 -0.540236 0.104388 -0.28006199 -0.55848199 0.104388\n\t\t -0.27807799 -0.58230102 0.104388 -0.269833 -0.57405502 0.104388 -0.25425899 -0.58428502 0.104388\n\t\t -0.23601399 -0.59972399 0.104388 -0.23601399 -0.588063 0.104388 -0.21332 -0.59502399 0.104388\n\t\t -0.217768 -0.58428502 0.104388 -0.202195 -0.57405502 0.104388 -0.191965 -0.55848199 0.104388\n\t\t -0.188187 -0.540236 0.104388 -0.181226 -0.517542 0.104388 -0.191965 -0.52199101 0.104388\n\t\t -0.19395 -0.49817199 0.104388 -0.202195 -0.50641698 0.104388 -0.21332 -0.485448 0.104388\n\t\t -0.217768 -0.49618801 0.104388 -0.26304099 -0.474987 0.088372998 -0.23601399 -0.46938899 0.076024003\n\t\t -0.30686101 -0.540236 0.076025002 -0.30126399 -0.56726301 0.076025002;\n\tsetAttr \".vt[4316:4481]\" -0.28611001 -0.59033298 0.076025002 -0.26304099 -0.60548598 0.088372998\n\t\t -0.26304099 -0.60548598 0.076024003 -0.23601399 -0.61108297 0.076024003 -0.23601399 -0.61108297 0.088372998\n\t\t -0.185917 -0.59033298 0.076025002 -0.165167 -0.540236 0.076025002 -0.165167 -0.540236 0.088372998\n\t\t -0.170764 -0.51320899 0.088372998 -0.170764 -0.51320899 0.076025002 -0.23601399 -0.45978299 0.051406\n\t\t -0.29290301 -0.483347 0.051406 -0.29290301 -0.483347 0.070440002 -0.31011099 -0.50954401 0.070440002\n\t\t -0.316468 -0.540236 0.051406 -0.31011099 -0.57092798 0.051406 -0.23601399 -0.62068999 0.051406\n\t\t -0.205322 -0.61433297 0.070440002 -0.205322 -0.61433297 0.051406 -0.179124 -0.59712499 0.070440002\n\t\t -0.15556 -0.540236 0.070440002 -0.179125 -0.483347 0.051406 -0.205322 -0.46613899 0.051406\n\t\t -0.23601399 -0.46938899 0.018964 -0.23601399 -0.46938899 0.045821998 -0.26304099 -0.47498599 0.018964\n\t\t -0.30126399 -0.51320899 0.045821998 -0.30126399 -0.51320899 0.018964 -0.30686101 -0.540236 0.018964\n\t\t -0.30686101 -0.540236 0.045821998 -0.30126399 -0.56726301 0.018964 -0.286111 -0.59033298 0.018964\n\t\t -0.26304099 -0.60548598 0.045821998 -0.26304099 -0.60548598 0.018964 -0.23601399 -0.61108297 0.045821998\n\t\t -0.185918 -0.59033298 0.045821998 -0.170764 -0.56726402 0.018964 -0.165167 -0.540236 0.045821998\n\t\t -0.208987 -0.47498599 0.045821998 -0.30632699 -0.56936002 0.012081 -0.28999799 -0.59421998 0.012081\n\t\t -0.28999799 -0.59421998 0.015823999 -0.23601399 -0.61658001 0.012081 -0.20689 -0.61054897 0.012081\n\t\t -0.18203101 -0.59421998 0.015823999 -0.165702 -0.56936097 0.015823999 -0.165702 -0.56936097 0.012081\n\t\t -0.165701 -0.51111197 0.015823999 -0.165702 -0.51111197 0.012081 -0.18203001 -0.48625299 0.015823999\n\t\t -0.20689 -0.469924 0.015823999 -0.20689 -0.469924 0.012081 -0.26670599 -0.46613899 0.070440002\n\t\t -0.23601399 -0.45978299 0.070440002 -0.26304099 -0.47498599 0.076025002 -0.286111 -0.49013999 0.076024003\n\t\t -0.30126399 -0.51320899 0.076025002 -0.316468 -0.540236 0.070440002 -0.31011099 -0.57092798 0.070440002\n\t\t -0.29290301 -0.59712499 0.070440002 -0.26670599 -0.61433297 0.070440002 -0.23601399 -0.62068999 0.070440002\n\t\t -0.208987 -0.60548598 0.076024003 -0.161917 -0.57092798 0.070440002 -0.170764 -0.56726301 0.076025002\n\t\t -0.161917 -0.50954401 0.070440002 -0.179125 -0.483347 0.070440002 -0.185917 -0.49013999 0.076024003\n\t\t -0.205322 -0.46613899 0.070440002 -0.208987 -0.47498599 0.076025002 -0.286111 -0.49013999 0.045821998\n\t\t -0.26670599 -0.46613899 0.051406 -0.26304099 -0.47498599 0.045821998 -0.185918 -0.49013999 0.045821998\n\t\t -0.161917 -0.50954401 0.051406 -0.170764 -0.51320899 0.045821998 -0.15556 -0.54023701 0.051406\n\t\t -0.161917 -0.57092899 0.051406 -0.170764 -0.56726301 0.045821998 -0.179125 -0.59712601 0.051406\n\t\t -0.208987 -0.60548598 0.045821998 -0.26670599 -0.61433297 0.051406 -0.29290301 -0.59712499 0.051406\n\t\t -0.28611001 -0.59033298 0.045821998 -0.30126399 -0.56726301 0.045821998 -0.31011099 -0.50954401 0.051406\n\t\t -0.26513901 -0.469924 0.015823999 -0.23601399 -0.46389201 0.015823999 -0.28999799 -0.48625299 0.015823999\n\t\t -0.286111 -0.49013999 0.018964 -0.30632699 -0.51111197 0.015823999 -0.31235799 -0.540236 0.015823999\n\t\t -0.30632699 -0.56936002 0.015823999 -0.265138 -0.61054897 0.015823999 -0.23601399 -0.61658102 0.015823999\n\t\t -0.23601399 -0.61108297 0.018964 -0.20689 -0.61054897 0.015823999 -0.208987 -0.60548598 0.018964\n\t\t -0.185918 -0.59033298 0.018964 -0.15967 -0.540236 0.015823999 -0.165167 -0.540236 0.018964\n\t\t -0.170764 -0.51320899 0.018964 -0.185918 -0.49013999 0.018964 -0.208987 -0.47498599 0.018964\n\t\t -0.286111 -0.49013999 0.0089410003 -0.26513901 -0.469924 0.012081 -0.28999799 -0.48625299 0.012081\n\t\t -0.23601399 -0.46389201 0.012081 -0.208987 -0.47498599 0.0089410003 -0.18203001 -0.48625299 0.012081\n\t\t -0.170764 -0.51320899 0.0089410003 -0.15967 -0.54023701 0.012081 -0.18203101 -0.59421998 0.012081\n\t\t -0.23601399 -0.61108398 0.0089410003 -0.265138 -0.61054897 0.012081 -0.286111 -0.59033298 0.0089410003\n\t\t -0.31235799 -0.540236 0.012081 -0.30686101 -0.540236 0.0089410003 -0.30632699 -0.51111197 0.012081\n\t\t -0.30126399 -0.51320899 0.0089410003 -0.258708 -0.485448 0.104388 -0.23601399 -0.46938899 0.088372998\n\t\t -0.286111 -0.49013999 0.088372998 -0.30126399 -0.51320899 0.088372998 -0.30686101 -0.540236 0.088372998\n\t\t -0.290802 -0.56292999 0.104388 -0.30126399 -0.56726301 0.088372998 -0.28611001 -0.59033298 0.088372998\n\t\t -0.258708 -0.59502399 0.104388 -0.208987 -0.60548598 0.088372998 -0.185917 -0.59033298 0.088372998\n\t\t -0.19395 -0.58230102 0.104388 -0.181226 -0.56292999 0.104388 -0.170764 -0.56726301 0.088372998\n\t\t -0.176526 -0.540236 0.104388 -0.185917 -0.49013999 0.088372998 -0.208987 -0.474987 0.088372998\n\t\t -0.43463501 -0.44303399 0.015509 -0.46938199 -0.45009601 0.015509 -0.49894601 -0.46967199 0.015509\n\t\t -0.49894601 -0.46967199 0.20162 -0.51852202 -0.49923599 0.20162 -0.51852202 -0.49923599 0.015509\n\t\t -0.52558398 -0.53398299 0.015509 -0.52558398 -0.53398299 0.20162 -0.51852202 -0.56873 0.015509\n\t\t -0.49894601 -0.59829301 0.015509 -0.46938199 -0.61786902 0.20162 -0.46938199 -0.61786902 0.015509\n\t\t -0.434636 -0.62493199 0.015509 -0.39988899 -0.61786997 0.015509 -0.39988801 -0.61786997 0.20162\n\t\t -0.370325 -0.59829402 0.015509 -0.370325 -0.59829402 0.20162 -0.35074899 -0.56873101 0.015509\n\t\t -0.343687 -0.53398401 0.015509 -0.34368601 -0.53398299 0.20162 -0.35074899 -0.499237 0.015509\n\t\t -0.370325 -0.46967199 0.015509 -0.39988801 -0.45009601 0.20162 -0.39988801 -0.45009601 0.015509\n\t\t -0.43463501 -0.47479001 0.32670701 -0.45725 -0.479386 0.32670701 -0.476491 -0.492127 0.32670701\n\t\t -0.489232 -0.51136798 0.32670701 -0.493828 -0.53398299 0.32670701;\n\tsetAttr \".vt[4482:4647]\" -0.505072 -0.56315899 0.32670701 -0.489232 -0.55659699 0.32670701\n\t\t -0.476491 -0.57583803 0.32670701 -0.45725 -0.588579 0.32670701 -0.43463501 -0.61035001 0.32670701\n\t\t -0.43463501 -0.59317601 0.32670701 -0.41202101 -0.588579 0.32670701 -0.38063601 -0.587982 0.32670701\n\t\t -0.39278001 -0.57583803 0.32670701 -0.38003901 -0.55659699 0.32670701 -0.375442 -0.53398299 0.32670701\n\t\t -0.364198 -0.504807 0.32670701 -0.38003901 -0.51136798 0.32670701 -0.39278001 -0.492127 0.32670701\n\t\t -0.40545899 -0.46354601 0.32670701 -0.41202101 -0.479386 0.32670701 -0.43463501 -0.44303399 0.289473\n\t\t -0.46938199 -0.45009601 0.30564499 -0.43463501 -0.44303399 0.30564499 -0.49894601 -0.46967199 0.30564499\n\t\t -0.51852202 -0.49923599 0.30564499 -0.51852202 -0.49923599 0.289473 -0.52558398 -0.53398299 0.30564499\n\t\t -0.52558398 -0.53398299 0.289473 -0.51852202 -0.56873 0.30564499 -0.49894601 -0.59829301 0.30564499\n\t\t -0.46938199 -0.61786902 0.30564499 -0.43463501 -0.62493199 0.30564499 -0.43463501 -0.62493199 0.289473\n\t\t -0.39988801 -0.61786902 0.30564499 -0.39988801 -0.61786997 0.289473 -0.505072 -0.504807 0.32670701\n\t\t -0.511002 -0.53398299 0.32670701 -0.488635 -0.587982 0.32670701 -0.46381101 -0.60442001 0.32670701\n\t\t -0.40545899 -0.60442001 0.32670701 -0.488635 -0.479983 0.32670701 -0.46381101 -0.46354601 0.32670701\n\t\t -0.43463501 -0.457616 0.32670701 -0.39988801 -0.45009601 0.30564499 -0.39988801 -0.45009601 0.289473\n\t\t -0.370325 -0.46967199 0.30564499 -0.35074899 -0.49923599 0.30564499 -0.34368601 -0.53398299 0.289473\n\t\t -0.34368601 -0.53398299 0.30564499 -0.35074899 -0.56873 0.289473 -0.35074899 -0.56873 0.30564499\n\t\t -0.370325 -0.59829301 0.30564499 -0.364198 -0.56315899 0.32670701 -0.35826799 -0.53398299 0.32670701\n\t\t -0.38063601 -0.479983 0.32670701 -0.474094 -0.43872201 0.28216001 -0.474094 -0.43872201 0.25723299\n\t\t -0.50766599 -0.46095201 0.28216001 -0.52989602 -0.494524 0.28216001 -0.537916 -0.53398299 0.25723299\n\t\t -0.52989602 -0.57344198 0.25723299 -0.50766599 -0.60701299 0.25723299 -0.474094 -0.62924403 0.28216001\n\t\t -0.43463501 -0.63726401 0.28216001 -0.39517701 -0.62924403 0.25723299 -0.33937401 -0.494524 0.28216001\n\t\t -0.33937401 -0.49452499 0.25723299 -0.36160499 -0.46095201 0.28216001 -0.36160499 -0.46095201 0.25723299\n\t\t -0.39517701 -0.43872201 0.25723299 -0.46938199 -0.45009601 0.24992 -0.46938199 -0.45009601 0.214747\n\t\t -0.43463501 -0.44303399 0.24992 -0.49894601 -0.46967199 0.24992 -0.51852202 -0.49923599 0.24992\n\t\t -0.51852202 -0.49923599 0.214747 -0.52558398 -0.53398299 0.24992 -0.52558398 -0.53398299 0.214746\n\t\t -0.51852202 -0.56873 0.24992 -0.49894601 -0.59829301 0.24992 -0.49894601 -0.59829301 0.214746\n\t\t -0.46938199 -0.61786997 0.214747 -0.43463501 -0.62493199 0.24992 -0.39988801 -0.61786997 0.24992\n\t\t -0.370325 -0.59829301 0.24992 -0.39988801 -0.61786997 0.214746 -0.370325 -0.59829402 0.214746\n\t\t -0.35074899 -0.56873 0.214746 -0.35074899 -0.49923599 0.214746 -0.370325 -0.46967199 0.24992\n\t\t -0.370325 -0.46967199 0.214746 -0.47204599 -0.44366601 0.205772 -0.43463501 -0.43606299 0.210595\n\t\t -0.50387502 -0.46474299 0.210595 -0.52495199 -0.49657199 0.210595 -0.52495199 -0.49657199 0.205772\n\t\t -0.532556 -0.53398299 0.210595 -0.52495199 -0.57139301 0.210595 -0.50387502 -0.60322303 0.210595\n\t\t -0.50387502 -0.60322303 0.205772 -0.39722499 -0.6243 0.210595 -0.36539501 -0.60322303 0.210595\n\t\t -0.39722499 -0.6243 0.205772 -0.34431899 -0.57139403 0.205772 -0.33671501 -0.53398299 0.210595\n\t\t -0.34431899 -0.49657199 0.210595 -0.34431899 -0.49657199 0.205772 -0.36539501 -0.46474299 0.205772\n\t\t -0.39722499 -0.44366601 0.210595 -0.39722499 -0.44366601 0.205772 -0.43463501 -0.430702 0.28216001\n\t\t -0.46938199 -0.45009601 0.289473 -0.49894601 -0.46967199 0.289473 -0.537916 -0.53398299 0.28216001\n\t\t -0.52989602 -0.57344198 0.28216001 -0.51852202 -0.56873 0.289473 -0.50766599 -0.60701299 0.28216001\n\t\t -0.49894601 -0.59829301 0.289473 -0.46938199 -0.61786902 0.289473 -0.39517599 -0.62924403 0.28216001\n\t\t -0.36160401 -0.60701299 0.28216001 -0.370325 -0.59829301 0.289473 -0.33937401 -0.57344103 0.28216001\n\t\t -0.33135399 -0.53398299 0.28216001 -0.35074899 -0.49923599 0.289473 -0.370325 -0.46967199 0.289473\n\t\t -0.39517701 -0.43872201 0.28216001 -0.50766599 -0.46095201 0.25723299 -0.43463501 -0.430702 0.25723299\n\t\t -0.39988801 -0.45009601 0.24992 -0.35074899 -0.49923599 0.24992 -0.33135399 -0.53398299 0.25723299\n\t\t -0.34368601 -0.53398299 0.24992 -0.33937401 -0.57344198 0.25723299 -0.35074899 -0.56873 0.24992\n\t\t -0.36160499 -0.607014 0.25723299 -0.43463501 -0.63726401 0.25723299 -0.474094 -0.62924403 0.25723299\n\t\t -0.46938199 -0.61786902 0.24992 -0.52989602 -0.494524 0.25723299 -0.43463501 -0.44303399 0.214746\n\t\t -0.47204599 -0.44366601 0.210595 -0.49894601 -0.46967199 0.214746 -0.51852202 -0.56873 0.214746\n\t\t -0.47204599 -0.6243 0.210595 -0.43463501 -0.63190299 0.210595 -0.43463501 -0.62493199 0.214747\n\t\t -0.34431899 -0.57139403 0.210595 -0.34368601 -0.53398299 0.214746 -0.36539501 -0.46474299 0.210595\n\t\t -0.39988801 -0.45009601 0.214746 -0.50387502 -0.46474299 0.205772 -0.46938199 -0.45009601 0.20162\n\t\t -0.43463501 -0.43606299 0.205771 -0.43463501 -0.44303399 0.20162 -0.370325 -0.46967199 0.20162\n\t\t -0.35074899 -0.49923599 0.20162 -0.33671501 -0.53398299 0.205772 -0.35074899 -0.56873 0.20162\n\t\t -0.36539501 -0.60322303 0.205772 -0.43463501 -0.63190299 0.205772 -0.43463501 -0.62493199 0.20162\n\t\t -0.47204599 -0.6243 0.205772 -0.49894601 -0.59829301 0.20162 -0.52495199 -0.57139301 0.205772\n\t\t -0.51852202 -0.56873 0.20162 -0.532556 -0.53398299 0.205772 0.56412601 -0.262833 -0.26851901\n\t\t 0.51979101 -0.375525 -0.25085601 0.53729802 -0.380018 -0.241285;\n\tsetAttr \".vt[4648:4813]\" 0.511473 -0.38277799 -0.26010001 0.529369 -0.38734099 -0.25089601\n\t\t 0.41782501 -0.45341399 -0.34763101 0.42944399 -0.46118301 -0.34417501 0.356372 -0.49285001 -0.396467\n\t\t 0.32731301 -0.52256501 -0.419736 0.28985199 -0.54098397 -0.44269401 0.28541899 -0.565328 -0.43854001\n\t\t 0.24241599 -0.56430799 -0.47176701 0.239384 -0.58877599 -0.46881899 0.32177299 -0.54681098 -0.414628\n\t\t 0.31573999 -0.57041401 -0.40951601 0.28048801 -0.58830398 -0.434376 0.23584899 -0.61095601 -0.46585599\n\t\t 0.35993201 -0.52646899 -0.38742799 0.36630401 -0.50169599 -0.39390799 0.423805 -0.48837799 -0.33254299\n\t\t 0.35304701 -0.551054 -0.38093001 0.41758299 -0.51489598 -0.32048401 0.26839399 -0.628102 -0.42600501\n\t\t 0.226523 -0.64502603 -0.45985901 0.40251699 -0.56488699 -0.29444599 0.48649901 -0.44617999 -0.26818901\n\t\t 0.48754099 -0.41996399 -0.29256901 0.536892 -0.40553799 -0.202687 0.55273098 -0.38572201 -0.178442\n\t\t 0.58956301 -0.28242999 -0.12995499 0.580908 -0.26597199 -0.186459 0.60078198 -0.29280201 -0.060157999\n\t\t 0.57262599 -0.379751 -0.103085 0.58260798 -0.202305 -0.24870101 0.65267199 0.050905999 -0.088076003\n\t\t 0.56402099 -0.39737901 -0.117695 0.55546701 -0.41023901 -0.132772 0.54288799 -0.42340299 -0.154618\n\t\t 0.48489201 -0.47095001 -0.24236 0.47913799 -0.51397902 -0.184185 0.30146 -0.61473799 -0.39927\n\t\t 0.20522501 -0.65931898 -0.45485899 0.33697301 -0.59937203 -0.36785901 0.46213201 -0.52210701 -0.17417599\n\t\t 0.54856902 -0.457634 -0.061200999 0.565449 -0.44042 -0.026773 0.56287903 -0.42918199 0.016053\n\t\t 0.57796401 -0.423691 0.00023000001 0.57584202 -0.41541499 0.044220001 0.58943498 -0.403144 0.026024001\n\t\t 0.460392 -0.53741503 -0.15956201 0.53322703 -0.45960599 -0.046192002 0.52756602 -0.46888399 -0.024235001\n\t\t 0.38397199 -0.57767898 -0.28856701 0.384036 -0.59763998 -0.279625 0.31812501 -0.61389297 -0.36364499\n\t\t 0.31669399 -0.63581598 -0.357281 0.28202 -0.62936503 -0.39504001 0.280958 -0.64800203 -0.38986999\n\t\t 0.248134 -0.642582 -0.421435 0.247596 -0.65326899 -0.41845199 0.54244 -0.451186 0.010666\n\t\t 0.54982299 -0.44286901 -0.011949 0.55419499 -0.43659201 0.039444 0.56582099 -0.42194501 0.068328001\n\t\t 0.56604499 -0.198434 -0.25492299 0.62526798 0.05119 -0.169065 0.62526798 0.05119 -0.150078\n\t\t 0.566046 -0.204647 -0.235935 0.546148 -0.27293 -0.249212 0.54609501 -0.262086 -0.276595\n\t\t 0.51202703 -0.38955301 -0.24236099 0.51979101 -0.38201001 -0.23239601 0.47295201 -0.41375899 -0.29853401\n\t\t 0.47304699 -0.42435399 -0.28722 0.41783899 -0.466537 -0.34065899 0.356372 -0.50639403 -0.39021701\n\t\t 0.31712699 -0.51364499 -0.42231101 0.31712699 -0.52718902 -0.41606101 0.27892101 -0.54576701 -0.43919599\n\t\t 0.27892101 -0.53222299 -0.44544601 0.23054101 -0.55574799 -0.47474301 0.64336997 0.051189002 -0.160799\n\t\t 0.62526798 0.05119 -0.140256 0.63603902 0.050590001 -0.107294 0.65647501 0.050195999 -0.047501002\n\t\t 0.64430898 0.049213 -0.03053 0.65226501 0.047382001 0.067042001 0.66025198 0.048778001 0.015611\n\t\t 0.66937399 0.043713 0.240457 0.616382 -0.315393 0.091812998 0.59937799 -0.315393 0.104981\n\t\t 0.65135098 0.043713 0.25362599 0.59423798 -0.225826 0.40008199 0.56891102 -0.30210701 0.499697\n\t\t 0.63996702 -0.32723501 0.53874201 0.56514001 -0.30210701 0.51005697 0.58831 -0.239638 0.64569098\n\t\t 0.52051097 -0.225826 0.60264599 0.64373797 -0.32723501 0.52838099 0.79447699 -0.22244 0.583305\n\t\t 0.67291099 -0.239638 0.413248 0.58192801 -0.22503 0.65093601 0.520908 -0.21302301 0.61195099\n\t\t 0.67135298 -0.22485501 0.40584499 0.68514597 -0.04332 0.37581301 0.60026598 -0.21278401 0.39392799\n\t\t 0.79074401 -0.22244 0.59356099 0.89472002 0.114861 0.43082899 0.89281899 0.19906101 0.614649\n\t\t 0.88689798 0.199496 0.63183701 0.76955998 0.114859 0.77469802 0.88511002 0.108212 0.404623\n\t\t 0.57061499 -0.044677999 0.69514298 0.55562598 -0.022288 0.71114999 0.88067001 0.069232002 0.43206301\n\t\t 0.848095 -0.063034996 0.43767899 0.80349201 -0.180825 0.56430799 0.78543901 -0.180825 0.61390799\n\t\t 0.71847302 -0.071093 0.771016 0.73821503 -0.063034996 0.73957002 0.75834501 0.096073002 0.78368598\n\t\t 0.75958401 0.069232002 0.76474202 0.88722098 0.114158 0.46740699 0.88593602 0.17180599 0.592417\n\t\t 0.86745 0.172132 0.64389598 0.78740698 0.114211 0.74175602 0.89190102 0.096073002 0.41674301\n\t\t 0.77325797 0.179361 0.291529 0.887797 0.126867 0.418686 0.74535203 0.108213 0.78860497\n\t\t 0.808608 0.272807 0.60373503 0.58697599 0.179361 0.80332899 0.75645101 0.126865 0.77955002\n\t\t 0.68440503 -0.020209 0.351641 0.84411502 -0.070808001 0.39324701 0.57422698 0.16209701 0.81106198\n\t\t 0.88557702 0.212184 0.61199301 0.87964398 0.212604 0.62921298 0.68710703 0.18284599 0.247805\n\t\t 0.74480897 0.058669999 0.26773101 0.66412002 0.07925 0.23836499 0.467715 0.07277 0.77345997\n\t\t 0.68709499 0.20165201 0.261015 0.81469703 0.27261999 0.586236 0.62453002 0.32093501 0.51651698\n\t\t 0.61832899 0.32159001 0.53401202 0.50136298 0.201649 0.77132499 0.49287999 0.182845 0.78145599\n\t\t 0.76845598 0.16209701 0.277412 0.70561099 -0.054028001 0.78180701 0.70620298 -0.070845 0.77169698\n\t\t 0.69503999 -0.058301002 0.777282 0.545398 0.040245 0.79345798 0.85317999 -0.071092002 0.400911\n\t\t 0.83913398 -0.058228001 0.381666 0.85026503 -0.054028001 0.38437399 0.73638999 0.046939 0.273148\n\t\t 0.472702 0.059744 0.768489 0.54839599 0.052191999 0.80282301 0.66414601 0.066284999 0.24556801\n\t\t -0.50650901 -0.38277799 -0.26010001 -0.482577 -0.41996399 -0.29256901 -0.41286099 -0.45341399 -0.34763101\n\t\t -0.351408 -0.49285001 -0.396467 -0.237452 -0.56430799 -0.47176701 -0.225577 -0.55574799 -0.47474301\n\t\t -0.28045499 -0.565328 -0.43854001 -0.284888 -0.54098397 -0.44269401;\n\tsetAttr \".vt[4814:4979]\" -0.23442 -0.58877599 -0.46881899 -0.316809 -0.54681098 -0.414628\n\t\t -0.32234901 -0.52256501 -0.419736 -0.310776 -0.57041401 -0.40951601 -0.275525 -0.58830398 -0.434376\n\t\t -0.230886 -0.61095601 -0.46585599 -0.35496801 -0.52646899 -0.38742799 -0.36133999 -0.50169599 -0.39390799\n\t\t -0.418841 -0.48837799 -0.33254299 -0.42447999 -0.46118301 -0.34417501 -0.34808299 -0.551054 -0.38093001\n\t\t -0.41261899 -0.51489598 -0.32048401 -0.33200899 -0.59937203 -0.36785901 -0.26343 -0.628102 -0.42600501\n\t\t -0.48153499 -0.44617999 -0.26818901 -0.531928 -0.40553799 -0.202687 -0.524405 -0.38734099 -0.25089601\n\t\t -0.54776698 -0.38572201 -0.178442 -0.53233403 -0.380018 -0.241285 -0.58459902 -0.28242999 -0.12995499\n\t\t -0.57594401 -0.26597199 -0.186459 -0.59581798 -0.29280201 -0.060157999 -0.567662 -0.379751 -0.103085\n\t\t -0.58447099 -0.403144 0.026024001 -0.559057 -0.39737901 -0.117695 -0.55050302 -0.41023901 -0.132772\n\t\t -0.53792399 -0.42340299 -0.154618 -0.47992799 -0.47095001 -0.24236 -0.57300001 -0.423691 0.00023000001\n\t\t -0.296496 -0.61473799 -0.39927 -0.221559 -0.64502603 -0.45985901 -0.200261 -0.65931898 -0.45485899\n\t\t -0.31316099 -0.61389297 -0.36364499 -0.39755401 -0.56488699 -0.29444599 -0.47417399 -0.51397902 -0.184185\n\t\t -0.54360503 -0.457634 -0.061200999 -0.56048501 -0.44042 -0.026773 -0.57087803 -0.41541499 0.044220001\n\t\t -0.52260202 -0.46888399 -0.024235001 -0.45716801 -0.52210701 -0.17417599 -0.52826297 -0.45960599 -0.046192002\n\t\t -0.455428 -0.53741503 -0.15956201 -0.379008 -0.57767898 -0.28856701 -0.37907201 -0.59763998 -0.279625\n\t\t -0.31173 -0.63581598 -0.357281 -0.27705699 -0.62936503 -0.39504001 -0.275994 -0.64800203 -0.38986999\n\t\t -0.24316999 -0.642582 -0.421435 -0.242632 -0.65326899 -0.41845199 -0.537476 -0.451186 0.010666\n\t\t -0.54485899 -0.44286901 -0.011949 -0.54923099 -0.43659201 0.039444 -0.55791497 -0.42918199 0.016053\n\t\t -0.560857 -0.42194501 0.068328001 -0.55916202 -0.262833 -0.26851901 -0.57764399 -0.202305 -0.24870101\n\t\t -0.63840598 0.051188 -0.160799 -0.62030399 0.051189002 -0.169065 -0.56108201 -0.204647 -0.235935\n\t\t -0.56108099 -0.198434 -0.25492299 -0.54118401 -0.27293 -0.249212 -0.51482701 -0.38201001 -0.23239601\n\t\t -0.54113102 -0.262086 -0.276595 -0.50706297 -0.38955301 -0.24236099 -0.51482701 -0.375525 -0.25085601\n\t\t -0.46808299 -0.42435399 -0.28722 -0.46798801 -0.41375899 -0.29853401 -0.412875 -0.466537 -0.34065899\n\t\t -0.351408 -0.50639403 -0.39021701 -0.312163 -0.52718902 -0.41606101 -0.312163 -0.51364499 -0.42231101\n\t\t -0.27395701 -0.54576701 -0.43919599 -0.27395701 -0.53222299 -0.44544601 -0.62030399 0.05119 -0.150078\n\t\t -0.647708 0.050905999 -0.088076003 -0.63107502 0.050588999 -0.107294 -0.62030399 0.05119 -0.140256\n\t\t -0.65151101 0.050195999 -0.047501002 -0.63934499 0.049213 -0.03053 -0.64730102 0.047380999 0.067042001\n\t\t -0.65528798 0.048778001 0.015611 -0.594414 -0.315393 0.104981 -0.61141801 -0.315393 0.091812998\n\t\t -0.64638698 0.043713 0.25362599 -0.66441 0.043713 0.240457 -0.56394702 -0.30210701 0.499697\n\t\t -0.56017601 -0.30210701 0.51005697 -0.63877398 -0.32723501 0.52838099 -0.78578001 -0.22244 0.59356099\n\t\t -0.565651 -0.044677999 0.69514298 -0.57696402 -0.22503 0.65093601 -0.515944 -0.21302301 0.61195099\n\t\t -0.58334601 -0.239638 0.64569098 -0.51554698 -0.225826 0.60264599 -0.66638899 -0.22485501 0.40584499\n\t\t -0.59530199 -0.21278401 0.39392799 -0.58927399 -0.225826 0.40008199 -0.66794699 -0.239638 0.413248\n\t\t -0.63500297 -0.32723501 0.53874201 -0.88785702 0.19906101 0.614649 -0.88193601 0.199496 0.63183701\n\t\t -0.76459599 0.114859 0.77469802 -0.75148702 0.126865 0.77955002 -0.69007599 -0.058302 0.777282\n\t\t -0.55066198 -0.022288 0.71114999 -0.70123899 -0.070845 0.77169698 -0.467738 0.059744 0.768489\n\t\t -0.87570602 0.069231004 0.43206301 -0.84313101 -0.063034996 0.43767899 -0.78951299 -0.22244 0.583305\n\t\t -0.79852802 -0.180825 0.56430799 -0.78047502 -0.180825 0.61390799 -0.73325098 -0.063034996 0.73957002\n\t\t -0.75462002 0.069232002 0.76474202 -0.88225698 0.114158 0.46740699 -0.88975602 0.114861 0.43082899\n\t\t -0.88097203 0.17180599 0.592417 -0.862486 0.172132 0.64389598 -0.78244299 0.114211 0.74175602\n\t\t -0.88693702 0.096072003 0.41674301 -0.84530097 -0.054028999 0.38437399 -0.88061303 0.212184 0.61199301\n\t\t -0.80973297 0.27261999 0.586236 -0.882833 0.126867 0.418686 -0.75338101 0.096073002 0.78368598\n\t\t -0.71350902 -0.071093 0.771016 -0.74038798 0.108213 0.78860497 -0.68018198 -0.043320999 0.37581301\n\t\t -0.83416998 -0.058228999 0.381666 -0.83915102 -0.070808001 0.39324701 -0.67944098 -0.020209 0.351641\n\t\t -0.65918201 0.066284999 0.24556901 -0.803644 0.272807 0.60373503 -0.87468201 0.212604 0.62921298\n\t\t -0.68214297 0.18284599 0.247805 -0.73984498 0.058669001 0.26773101 -0.56926298 0.16209701 0.81106198\n\t\t -0.48791599 0.182845 0.78145599 -0.543432 0.052191 0.80282301 -0.68213302 0.20165201 0.26101601\n\t\t -0.76829398 0.179361 0.291529 -0.61956602 0.32093501 0.51651698 -0.61336499 0.32159001 0.53401202\n\t\t -0.582012 0.179361 0.80332899 -0.4964 0.201649 0.77132499 -0.76349199 0.16209701 0.277412\n\t\t -0.88014603 0.108212 0.404623 -0.848216 -0.071093 0.400911 -0.700647 -0.054028999 0.78180701\n\t\t -0.462751 0.07277 0.77345997 -0.540434 0.040243998 0.79345798 -0.731426 0.046937998 0.273148\n\t\t -0.65915602 0.07925 0.23836499 0.77375102 -0.101715 0.75673699 0.75269401 0.108678 0.77315903\n\t\t 0.70606202 -0.074124001 0.765724 0.80409902 -0.22051901 0.59258598 0.83868301 -0.216915 0.60520202\n\t\t 0.72554898 -0.077794001 0.773045 0.78245503 -0.217887 0.584508 0.78383601 -0.101966 0.75019503\n\t\t 0.88555998 -0.101775 0.44983301 0.84026498 -0.074124001 0.39700601 0.90044397 0.105007 0.42807901\n\t\t 0.859752 -0.077794001 0.40432701 0.88095701 0.108678 0.42075801;\n\tsetAttr \".vt[4980:5145]\" 0.92711902 0.076076001 0.482131 0.77218097 0.105007 0.78048003\n\t\t 0.89923698 0.19510999 0.62713301 0.81887501 0.082856998 0.76321203 0.87975198 0.19878 0.61981302\n\t\t 0.92511702 0.082856998 0.471313 0.92678398 0.15351599 0.63720399 0.93040597 0.142225 0.63851798\n\t\t 0.89004898 -0.091192 0.48698801 0.88904703 -0.102051 0.461474 0.92212498 0.060238998 0.50443703\n\t\t 0.92539001 0.116565 0.636702 0.83771098 0.060114 0.73653603 0.82736403 0.075993001 0.75628\n\t\t 0.80025399 -0.091075003 0.73151898 0.855039 -0.18317001 0.61126 0.84717298 -0.209729 0.60831201\n\t\t -0.72058499 -0.077794999 0.773045 -0.81391102 0.082856998 0.76321203 -0.74773002 0.108678 0.77315903\n\t\t -0.77887201 -0.101966 0.75019503 -0.82239997 0.075992003 0.75628 -0.79913503 -0.22051901 0.59258598\n\t\t -0.76878703 -0.101715 0.75673699 -0.83371902 -0.216915 0.60520202 -0.70109802 -0.074124001 0.765724\n\t\t -0.84220898 -0.209729 0.60831201 -0.85478801 -0.077794999 0.40432701 -0.88059598 -0.101775 0.44983301\n\t\t -0.77749097 -0.217887 0.584508 -0.88408297 -0.102051 0.461474 -0.83530098 -0.074124001 0.39700601\n\t\t -0.87599301 0.108678 0.42075801 -0.92215502 0.076075003 0.482131 -0.92181998 0.15351599 0.63720399\n\t\t -0.76721698 0.105007 0.78048003 -0.89427501 0.19510999 0.62713301 -0.92544198 0.142225 0.63851798\n\t\t -0.92015302 0.082856998 0.471313 -0.89547998 0.105007 0.42807901 -0.87478799 0.19878 0.61981302\n\t\t -0.91716099 0.060238 0.50443703 -0.92042601 0.116565 0.636702 -0.83274698 0.060114 0.73653603\n\t\t -0.79528999 -0.091076002 0.73151898 -0.85007501 -0.18317001 0.61126 -0.88508499 -0.091192 0.48698801\n\t\t 0.488159 -0.36091399 -0.27701399 0.481273 -0.25199199 -0.30736399 0.52192801 -0.25617701 -0.29440701\n\t\t 0.36263701 -0.45993599 -0.37968001 0.32955101 -0.48105699 -0.40577701 0.29952201 -0.49684799 -0.42553699\n\t\t 0.213625 -0.54104197 -0.48090401 0.20960701 -0.55574697 -0.474738 0.35621601 -0.44704601 -0.388358\n\t\t 0.38018399 -0.43459299 -0.36993599 0.45350301 -0.358776 -0.281243 0.46495399 -0.379841 -0.297389\n\t\t 0.43481699 -0.37602401 -0.30037299 0.470606 -0.383939 -0.290934 0.493503 -0.36465001 -0.26952901\n\t\t 0.42422599 -0.41914499 -0.330522 0.417878 -0.41475499 -0.33458 0.38272601 -0.41088599 -0.33958599\n\t\t 0.51745802 -0.253575 -0.30249199 0.58166701 -0.029588999 -0.22622301 0.29354301 -0.49186799 -0.42922401\n\t\t 0.20899101 -0.53449601 -0.484079 0.18165299 -0.527349 -0.47967699 0.25907299 -0.48436201 -0.42828301\n\t\t 0.274212 -0.475537 -0.41811901 0.31940001 -0.47879201 -0.412404 0.34821001 -0.44414201 -0.39261699\n\t\t 0.28135699 -0.457279 -0.41622099 0.32470301 -0.46035001 -0.41030699 0.307091 -0.44135699 -0.399555\n\t\t 0.37349299 -0.430949 -0.37268299 0.334353 -0.42843899 -0.380647 0.334144 -0.46260899 -0.40444401\n\t\t 0.35219201 -0.43120301 -0.36305401 0.39122999 -0.43360299 -0.35486901 0.398056 -0.43792 -0.35225201\n\t\t 0.54610902 -0.26857299 -0.257038 0.43816301 -0.44335401 -0.314473 0.41843301 -0.46639401 -0.34052199\n\t\t 0.44782701 -0.44487599 -0.31339699 0.49610901 -0.40433899 -0.261522 0.38428301 -0.48905799 -0.368743\n\t\t 0.37534499 -0.48736501 -0.36952499 0.35464901 -0.50757402 -0.39167601 0.34588501 -0.50588298 -0.39245701\n\t\t 0.31966999 -0.52595198 -0.41452101 0.59390199 -0.059843 -0.188115 0.53536099 -0.26779199 -0.25941199\n\t\t 0.59754902 -0.093246996 -0.197044 0.60669202 -0.054432999 -0.183522 0.613913 -0.018641001 -0.171515\n\t\t 0.60875797 0.016837999 -0.162874 0.61989897 0.016450001 -0.160538 0.61220598 0.05119 -0.15008201\n\t\t 0.49377099 -0.375523 -0.250857 0.52189201 -0.26208499 -0.276595 0.424339 -0.432684 -0.32197201\n\t\t 0.407873 -0.45318699 -0.347352 0.436746 -0.43268099 -0.32196501 0.395643 -0.45318699 -0.34735399\n\t\t 0.48359299 -0.39567199 -0.27614701 0.47093901 -0.395688 -0.276171 0.362064 -0.47551501 -0.37499401\n\t\t 0.34463301 -0.494032 -0.397926 0.33282301 -0.49403399 -0.397926 0.298143 -0.512411 -0.42076901\n\t\t 0.22097699 -0.55574697 -0.47474 0.533822 -0.262086 -0.276595 0.58796501 -0.023473 -0.19366699\n\t\t 0.599783 -0.023362 -0.19389901 0.60280102 -0.0069900001 -0.18827 0.577079 -0.024255 -0.192044\n\t\t 0.57987899 -0.012003 -0.186757 0.59505898 0.019556999 -0.179205 0.60716599 0.019556001 -0.179204\n\t\t 0.23054101 -0.56929201 -0.46849301 0.311039 -0.52425998 -0.415301 0.22217301 -0.56759799 -0.46927199\n\t\t 0.30980599 -0.51240897 -0.42076901 0.37406799 -0.47551501 -0.374993 0.409201 -0.46474299 -0.34137699\n\t\t 0.485273 -0.40326601 -0.263367 0.508246 -0.381199 -0.234704 0.50659603 -0.37552401 -0.25085601\n\t\t 0.59338099 -0.049745999 -0.203115 0.60064697 -0.031904999 -0.178361 0.60418999 -0.012523 -0.171996\n\t\t 0.61220598 0.05119 -0.16842 0.40937901 -0.40724999 -0.314419 0.456034 -0.36781901 -0.27908301\n\t\t 0.37433201 -0.244073 -0.47259 0.322586 -0.45912901 -0.383261 0.28203601 -0.48189801 -0.41155201\n\t\t 0.222891 -0.51350802 -0.44998601 0.199008 -0.417274 -0.54762101 0.140172 -0.46317899 -0.57718003\n\t\t 0.15445 -0.54953903 -0.49349201 0.16211399 -0.36596099 -0.61288702 0.15897299 -0.375781 -0.60842198\n\t\t 0.43230301 -0.203383 -0.42042899 0.42956901 -0.156747 -0.44429201 0.45518199 -0.178919 -0.39817101\n\t\t 0.49879199 -0.26051199 -0.284733 0.481318 -0.31760299 -0.28160301 0.48605999 -0.14308301 -0.35937399\n\t\t 0.515854 -0.102868 -0.31378701 0.506428 -0.083208002 -0.33738899 0.53921902 -0.14333899 -0.24342801\n\t\t 0.51954502 -0.20147 -0.26851201 0.53810298 -0.065261997 -0.271157 0.52741098 -0.053757001 -0.29474699\n\t\t 0.55521202 -0.035916999 -0.237893 0.57427901 -0.036508001 -0.197331 0.56409597 -0.020484 -0.22039901\n\t\t 0.55608201 -0.088979997 -0.219973 0.55168998 -0.018689999 -0.243974 0.57215202 -0.001835 -0.18312301\n\t\t 0.56887001 -0.012008 -0.21078999 0.56141502 -0.001832 -0.20682;\n\tsetAttr \".vt[5146:5311]\" 0.55801803 0.000558 -0.177036 0.54685098 0.00056199997 -0.20068499\n\t\t 0.295526 -0.30997401 -0.504632 0.25716799 -0.34698501 -0.51968402 0.30631801 -0.319076 -0.50364399\n\t\t 0.361554 -0.238437 -0.47676599 0.38922399 -0.203912 -0.463952 0.27773899 -0.307991 -0.499084\n\t\t 0.344836 -0.23750401 -0.471084 0.240298 -0.344556 -0.51493001 0.403723 -0.20621599 -0.45800301\n\t\t 0.385921 -0.15988 -0.460639 0.37449101 -0.203582 -0.45892999 0.165255 -0.356141 -0.61735302\n\t\t 0.16436701 -0.346975 -0.61131603 0.26769501 -0.35622099 -0.52011102 0.147826 -0.34458601 -0.60039598\n\t\t 0.547436 -0.001836 -0.233547 0.55628699 -0.012052 -0.23436201 0.54269701 -0.008591 -0.243315\n\t\t 0.53406602 -0.020888999 -0.26109701 0.54332101 -0.030776 -0.261473 0.52783602 -0.0062079998 -0.237652\n\t\t 0.53291899 0.00056399999 -0.227863 0.51858199 -0.018537 -0.255476 0.517658 -0.044273999 -0.294911\n\t\t 0.496115 -0.074242003 -0.33824301 0.46660101 -0.10629 -0.38458201 0.47736701 -0.114702 -0.38299\n\t\t 0.436813 -0.13383 -0.424496 0.448212 -0.141472 -0.421855 0.41706899 -0.150277 -0.44855201\n\t\t 0.41561899 -0.16627499 -0.45851499 0.401784 -0.161176 -0.464679 0.40052599 -0.148599 -0.44391599\n\t\t 0.41964501 -0.131845 -0.419386 0.448919 -0.104148 -0.37924099 0.47845599 -0.072021 -0.33279601\n\t\t 0.50098598 -0.041979 -0.28936601 0.58569402 -0.031068999 -0.217553 0.58558297 -0.034644 -0.197809\n\t\t 0.56109101 -0.031068999 -0.217553 0.55663598 -0.029753 -0.225273 0.550596 -0.028656 -0.231738\n\t\t 0.56863099 0.050705001 -0.211155 0.55316001 0.057339001 -0.20701 0.57503903 0.034689002 -0.212872\n\t\t 0.572855 0.034689002 -0.221021 0.57331002 0.026048001 -0.212409 0.57112598 0.026048001 -0.220558\n\t\t 0.56150699 0.013828 -0.20924599 0.55932301 0.013829 -0.21739499 0.55316001 0.010249 -0.20701\n\t\t 0.55097699 0.010249 -0.215159 0.54263002 0.055550002 -0.21292201 0.534284 0.051970001 -0.210686\n\t\t 0.57178903 0.056235 -0.220735 0.55957198 0.052193001 -0.25410101 0.56468701 0.025246 -0.255472\n\t\t 0.57178903 0.013143 -0.220735 0.56220502 0.0066260002 -0.21816701 0.55178702 0.011891 -0.25201499\n\t\t 0.542665 0.009935 -0.249571 0.52851999 0.057937 -0.209141 0.533544 0.011891 -0.247127\n\t\t 0.524423 0.015803 -0.244683 0.528521 0.011441 -0.209141 0.56220502 0.062752001 -0.21816701\n\t\t 0.55097699 0.057339001 -0.215159 0.55097699 0.065159999 -0.215159 0.55932301 0.055550002 -0.21739499\n\t\t 0.56644702 0.050705001 -0.219304 0.57808399 0.046312999 -0.222422 0.57112598 0.043329999 -0.220558\n\t\t 0.58040899 0.034689002 -0.22304501 0.57808399 0.023065001 -0.222422 0.56644702 0.018673001 -0.219304\n\t\t 0.55097699 0.004218 -0.215159 0.54263002 0.013828 -0.21292201 0.53974903 0.0066260002 -0.21214999\n\t\t 0.534284 0.017408 -0.210686 0.53974903 0.062752001 -0.21214999 0.54177201 0.034689002 -0.25296599\n\t\t 0.534688 0.016984999 -0.251068 0.52467 0.027356001 -0.248384 0.52760398 0.020022999 -0.24917001\n\t\t 0.52173698 0.034689002 -0.24759801 0.52467 0.042022001 -0.248384 0.534688 0.052393001 -0.251068\n\t\t 0.52760398 0.049355 -0.24917001 0.55887198 0.042022001 -0.257548 0.554901 0.048282001 -0.256484\n\t\t 0.554901 0.021097001 -0.256484 0.56150699 0.055550002 -0.20924599 0.57331002 0.043329999 -0.212409\n\t\t 0.60008103 0.05119 -0.16842 0.54481399 0.055550002 -0.20477299 0.55159199 0.083587997 -0.155075\n\t\t 0.53714502 0.077453002 -0.151204 0.53646803 0.051970001 -0.202537 0.59003699 -0.012077 -0.18999\n\t\t 0.56361502 -0.012077 -0.180833 0.56985301 0.017408 -0.211483 0.55316001 0.017408 -0.20701\n\t\t 0.53646803 0.017408 -0.202537 0.537193 -0.012077 -0.17167599 0.54885399 0.016984999 -0.25486401\n\t\t 0.55957198 0.017185001 -0.25410101 0.54177201 0.015466 -0.25296599 0.55887198 0.027356001 -0.257548\n\t\t 0.566576 0.034689002 -0.25597799 0.56033897 0.034689002 -0.25794199 0.56468701 0.044132002 -0.255472\n\t\t 0.55178702 0.057487 -0.25201499 0.54885399 0.052393001 -0.25486401 0.542665 0.059443001 -0.249571\n\t\t 0.54177201 0.053911999 -0.25296599 0.533544 0.057487 -0.247127 0.524423 0.053576 -0.244683\n\t\t 0.580486 0.083587997 -0.138429 0.59196401 0.075704001 -0.16593701 0.59196502 0.075704001 -0.13843\n\t\t 0.580486 0.083587997 -0.162817 0.56603903 0.086654998 -0.138428 0.56603903 0.086654998 -0.15894599\n\t\t 0.597507 0.064322002 -0.16755401 0.597507 0.064322002 -0.13843 0.55159199 0.083587997 -0.138428\n\t\t 0.53714597 0.077453002 -0.138427 0.60008103 0.05119 -0.13843 -0.51692802 -0.26208499 -0.276595\n\t\t -0.58073002 -0.031068999 -0.217553 -0.51249403 -0.253575 -0.30249199 -0.476309 -0.25199199 -0.30736399\n\t\t -0.48853901 -0.36465001 -0.26952901 -0.46597499 -0.395688 -0.276171 -0.48880699 -0.375523 -0.250857\n\t\t -0.41926199 -0.41914499 -0.330522 -0.35767299 -0.45993599 -0.37968001 -0.35710001 -0.47551501 -0.37499401\n\t\t -0.32785901 -0.49403399 -0.397926 -0.29317901 -0.512411 -0.42076901 -0.29455799 -0.49684799 -0.42553699\n\t\t -0.35125199 -0.44704601 -0.388358 -0.37522 -0.43459299 -0.36993599 -0.45998999 -0.379841 -0.297389\n\t\t -0.44853899 -0.358776 -0.281243 -0.48319501 -0.36091399 -0.27701399 -0.42985299 -0.37602401 -0.30037299\n\t\t -0.46564201 -0.383939 -0.290934 -0.41291401 -0.41475499 -0.33458 -0.38626599 -0.43360299 -0.35486901\n\t\t -0.37776199 -0.41088599 -0.33958599 -0.347229 -0.43120301 -0.36305401 -0.545632 -0.028656 -0.231738\n\t\t -0.51696402 -0.25617701 -0.29440701 -0.208661 -0.54104197 -0.48090401 -0.28857899 -0.49186799 -0.42922401\n\t\t -0.204027 -0.53449601 -0.484079 -0.176689 -0.527349 -0.47967699 -0.254109 -0.48436201 -0.42828301\n\t\t -0.31443599 -0.47879201 -0.412404 -0.32458699 -0.48105699 -0.40577701 -0.276393 -0.457279 -0.41622099\n\t\t -0.34324601 -0.44414201 -0.39261699 -0.31973901 -0.46035001 -0.41030699;\n\tsetAttr \".vt[5312:5477]\" -0.302127 -0.44135699 -0.399555 -0.36852899 -0.430949 -0.37268299\n\t\t -0.32938901 -0.42843899 -0.380647 -0.32918 -0.46260899 -0.40444401 -0.26924801 -0.475537 -0.41811901\n\t\t -0.39309201 -0.43792 -0.35225201 -0.54114503 -0.26857299 -0.257038 -0.43319899 -0.44335401 -0.314473\n\t\t -0.41346899 -0.46639401 -0.34052199 -0.44286299 -0.44487599 -0.31339699 -0.49114501 -0.40433899 -0.261522\n\t\t -0.48030901 -0.40326601 -0.263367 -0.37931901 -0.48905799 -0.368743 -0.34968501 -0.50757402 -0.39167601\n\t\t -0.34092101 -0.50588298 -0.39245701 -0.314706 -0.52595198 -0.41452101 -0.30607501 -0.52425998 -0.415301\n\t\t -0.225577 -0.56929201 -0.46849301 -0.588938 -0.059843998 -0.188115 -0.59258503 -0.093246996 -0.197044\n\t\t -0.530397 -0.26779199 -0.25941199 -0.60172802 -0.054434001 -0.183522 -0.599226 -0.012524 -0.171996\n\t\t -0.60894901 -0.018642001 -0.171515 -0.60379398 0.016837999 -0.162874 -0.61493498 0.016449001 -0.160538\n\t\t -0.50163198 -0.37552401 -0.25085601 -0.41937599 -0.432684 -0.32197201 -0.40290901 -0.45318699 -0.347352\n\t\t -0.390679 -0.45318699 -0.34735399 -0.47862899 -0.39567199 -0.27614701 -0.369104 -0.47551501 -0.374993\n\t\t -0.204643 -0.55574697 -0.474738 -0.216014 -0.55574697 -0.47474 -0.58841699 -0.049747001 -0.203115\n\t\t -0.52885801 -0.262086 -0.276595 -0.58300102 -0.023473 -0.19366699 -0.59481901 -0.023362 -0.19389901\n\t\t -0.59783697 -0.0069909999 -0.18827 -0.572115 -0.024256 -0.192044 -0.59009498 0.019556001 -0.179205\n\t\t -0.60724199 0.05119 -0.16842 -0.59511697 0.05119 -0.16842 -0.304842 -0.51240897 -0.42076901\n\t\t -0.217209 -0.56759799 -0.46927199 -0.33966899 -0.494032 -0.397926 -0.370381 -0.48736501 -0.36952499\n\t\t -0.404237 -0.46474299 -0.34137699 -0.43178201 -0.43268099 -0.32196501 -0.50328201 -0.381199 -0.234704\n\t\t -0.59568298 -0.031906001 -0.178361 -0.602202 0.019556001 -0.179204 -0.60724199 0.05119 -0.15008201\n\t\t -0.40441501 -0.40724999 -0.314419 -0.45107001 -0.36781901 -0.27908301 -0.31762201 -0.45912901 -0.383261\n\t\t -0.27707201 -0.48189801 -0.41155201 -0.26273099 -0.35622099 -0.52011102 -0.21792699 -0.51350802 -0.44998601\n\t\t -0.19404399 -0.417274 -0.54762101 -0.14948601 -0.54953903 -0.49349201 -0.135208 -0.46317899 -0.57718003\n\t\t -0.15715 -0.36596099 -0.61288702 -0.154009 -0.375781 -0.60842198 -0.42733899 -0.203383 -0.42042899\n\t\t -0.45021799 -0.178919 -0.39817101 -0.443248 -0.141472 -0.421855 -0.493828 -0.26051199 -0.284733\n\t\t -0.476354 -0.31760299 -0.28160301 -0.481096 -0.14308301 -0.35937399 -0.47240299 -0.114702 -0.38299\n\t\t -0.51089001 -0.102868 -0.31378701 -0.53425503 -0.14333899 -0.24342801 -0.51458102 -0.20147 -0.26851201\n\t\t -0.53314102 -0.065261997 -0.271157 -0.52244699 -0.053757001 -0.29474699 -0.55024803 -0.035916999 -0.237893\n\t\t -0.53835899 -0.030776 -0.261473 -0.56931502 -0.036509 -0.197331 -0.55913198 -0.020485001 -0.22039901\n\t\t -0.55111802 -0.088981003 -0.219973 -0.551323 -0.012052 -0.23436201 -0.56718802 -0.001835 -0.18312301\n\t\t -0.56390601 -0.012008 -0.21078999 -0.55645102 -0.001832 -0.20682 -0.57491499 -0.012003 -0.186757\n\t\t -0.542472 -0.001836 -0.233547 -0.54188699 0.00056199997 -0.20068499 -0.55305398 0.000558 -0.177036\n\t\t -0.290562 -0.30997401 -0.504632 -0.301355 -0.319076 -0.50364399 -0.35659 -0.238437 -0.47676599\n\t\t -0.369369 -0.244073 -0.47259 -0.38426 -0.203912 -0.463952 -0.27277499 -0.307991 -0.499084\n\t\t -0.339872 -0.23750401 -0.471084 -0.23533399 -0.344556 -0.51493001 -0.39875901 -0.20621599 -0.45800301\n\t\t -0.41065499 -0.16627499 -0.45851499 -0.36952701 -0.203582 -0.45892999 -0.160291 -0.356141 -0.61735302\n\t\t -0.252204 -0.34698501 -0.51968402 -0.159403 -0.346975 -0.61131603 -0.14286201 -0.34458601 -0.60039598\n\t\t -0.54672599 -0.018689999 -0.243974 -0.53773302 -0.008591 -0.243315 -0.52910399 -0.020888999 -0.26109701\n\t\t -0.52287197 -0.0062079998 -0.237652 -0.527955 0.00056299998 -0.227863 -0.51361799 -0.018537 -0.255476\n\t\t -0.512694 -0.044273999 -0.294911 -0.49115101 -0.074242003 -0.33824301 -0.50146598 -0.083208002 -0.33738899\n\t\t -0.46163699 -0.10629 -0.38458201 -0.431849 -0.13383 -0.424496 -0.41210499 -0.150277 -0.44855201\n\t\t -0.42460501 -0.156747 -0.44429201 -0.39682001 -0.161176 -0.464679 -0.39556199 -0.148599 -0.44391599\n\t\t -0.41468099 -0.131845 -0.419386 -0.38095701 -0.15988 -0.460639 -0.443955 -0.104148 -0.37924099\n\t\t -0.473492 -0.072021 -0.33279601 -0.49602199 -0.041979 -0.28936601 -0.55612701 -0.031068999 -0.217553\n\t\t -0.58061898 -0.034644999 -0.197809 -0.57670301 -0.029589999 -0.22622301 -0.55167198 -0.029754 -0.225273\n\t\t -0.55435902 0.055548999 -0.21739499 -0.563667 0.050705001 -0.211155 -0.546013 0.057339001 -0.215159\n\t\t -0.56616199 0.043329 -0.220558 -0.55654299 0.013828 -0.20924599 -0.55435902 0.013828 -0.21739499\n\t\t -0.54819602 0.010249 -0.20701 -0.546013 0.010249 -0.215159 -0.53766602 0.055548999 -0.21292201\n\t\t -0.55972302 0.044132002 -0.255472 -0.575445 0.034689002 -0.22304501 -0.55461001 0.017185001 -0.25410101\n\t\t -0.55724102 0.0066260002 -0.21816701 -0.53770298 0.009935 -0.249571 -0.52858001 0.057487 -0.247127\n\t\t -0.53478497 0.0066249999 -0.21214999 -0.51945901 0.015802 -0.244683 -0.52355701 0.01144 -0.209141\n\t\t -0.55724102 0.062752001 -0.21816701 -0.546013 0.065159999 -0.215159 -0.56682497 0.056235 -0.220735\n\t\t -0.56148303 0.050705001 -0.219304 -0.57312 0.046312999 -0.222422 -0.567891 0.034689002 -0.221021\n\t\t -0.57312 0.023065001 -0.222422 -0.56616199 0.026048001 -0.220558 -0.56682497 0.013143 -0.220735\n\t\t -0.56148303 0.018673001 -0.219304 -0.546013 0.004218 -0.215159 -0.53766602 0.013828 -0.21292201\n\t\t -0.52932 0.017407 -0.210686 -0.53478497 0.062752001 -0.21214999 -0.52932 0.051970001 -0.210686\n\t\t -0.52355599 0.057937 -0.209141 -0.53680801 0.015466 -0.25296599 -0.53680801 0.034689002 -0.25296599\n\t\t -0.51970798 0.027355 -0.248384 -0.52264202 0.020021999 -0.24917001;\n\tsetAttr \".vt[5478:5643]\" -0.51677299 0.034689002 -0.24759801 -0.51970798 0.042022001 -0.248384\n\t\t -0.52264202 0.049355 -0.24917001 -0.55537701 0.034689002 -0.25794199 -0.54993701 0.021096 -0.256484\n\t\t -0.55654299 0.055548999 -0.20924599 -0.58700001 0.075704001 -0.16593701 -0.56107497 0.086654998 -0.15894599\n\t\t -0.54819602 0.057339001 -0.20701 -0.56834602 0.043329 -0.212409 -0.57007498 0.034689002 -0.212872\n\t\t -0.53985 0.055548999 -0.20477299 -0.546628 0.083587997 -0.155075 -0.53150398 0.051970001 -0.202537\n\t\t -0.56834602 0.026048001 -0.212409 -0.56488901 0.017407 -0.211483 -0.55865097 -0.012077 -0.180833\n\t\t -0.58507299 -0.012077 -0.18999 -0.54819602 0.017407 -0.20701 -0.53150398 0.017407 -0.202537\n\t\t -0.53222901 -0.012077 -0.17167599 -0.54389203 0.016984999 -0.25486401 -0.54682302 0.011891 -0.25201499\n\t\t -0.52972603 0.016984999 -0.251068 -0.52858001 0.011891 -0.247127 -0.55972302 0.025246 -0.255472\n\t\t -0.55391002 0.027355 -0.257548 -0.56161201 0.034689002 -0.25597799 -0.55390799 0.042022001 -0.257548\n\t\t -0.55461001 0.052191999 -0.25410101 -0.54993701 0.048280999 -0.256484 -0.54682302 0.057487 -0.25201499\n\t\t -0.54389203 0.052393001 -0.25486401 -0.53770298 0.059443001 -0.249571 -0.53680801 0.053911 -0.25296599\n\t\t -0.529724 0.052393001 -0.251068 -0.51945901 0.053575002 -0.244683 -0.57552201 0.083587997 -0.138429\n\t\t -0.57552201 0.083587997 -0.162817 -0.58700103 0.075704001 -0.13843 -0.56107497 0.086654998 -0.138428\n\t\t -0.59254301 0.064320996 -0.16755401 -0.59254301 0.064320996 -0.13843 -0.546628 0.083587997 -0.138428\n\t\t -0.53218198 0.077453002 -0.138427 -0.53218102 0.077453002 -0.151204 -0.59511697 0.05119 -0.13843\n\t\t 0.048397999 -0.84030402 -0.44360301 0.048397999 -0.76772499 -0.443602 0.12769499 -0.83691102 -0.44360301\n\t\t 0.152661 -0.744039 -0.54540402 0.149388 -0.89659798 -0.54540402 0.152661 -0.69061202 -0.071073003\n\t\t 0.152661 -0.63780302 -0.071073003 0.152661 -0.632258 -0.54540402 0.026825 -0.799707 -0.071071997\n\t\t 0.026825 -0.90097398 -0.54540402 0.149354 -0.77673203 -0.071071997 0.131089 -0.76772499 -0.44360301\n\t\t 0.048397999 -0.874412 -0.54540402 0.048397999 -0.76772499 -0.54540402 0.127837 -0.87054902 -0.54540402\n\t\t 0.131088 -0.76772499 -0.54540402 0.026825 -0.74406701 -0.54540402 0.002482 -0.74406701 -0.54540402\n\t\t 0.152661 -0.56099802 -0.14413901 -0.147697 -0.69061202 -0.071073003 -0.147697 -0.744039 -0.54540402\n\t\t -0.14439 -0.77673203 -0.071071997 -0.147697 -0.632258 -0.54540402 -0.021862 -0.799707 -0.071071997\n\t\t -0.021861 -0.90097398 -0.54540402 0.002482 -0.799707 -0.071071997 -0.12612499 -0.76772499 -0.44360301\n\t\t -0.043434002 -0.76772499 -0.443602 -0.122731 -0.83691102 -0.44360301 -0.043434002 -0.84030402 -0.44360301\n\t\t -0.043434002 -0.76772499 -0.54540402 -0.14442401 -0.89659798 -0.54540402 -0.043434002 -0.874412 -0.54540402\n\t\t -0.122873 -0.87054902 -0.54540402 -0.12612399 -0.76772499 -0.54540402 -0.021862 -0.74406701 -0.54540402\n\t\t 0.002482 -0.90097302 -0.54540402 0.002482 -0.65195298 -0.071073003 -0.147697 -0.63780302 -0.071073003\n\t\t 0.002482 -0.56099802 -0.14413901 0.002482 -0.63780397 -0.071073003 -0.147697 -0.56099802 -0.14413901\n\t\t 0.55796301 0.01116 -0.192081 0.547867 0.0098099997 -0.23202799 0.54005998 0.011165 -0.22902501\n\t\t 0.53339303 0.0094729997 -0.24188501 0.53648901 0.0030380001 -0.25570399 0.52778101 0.0043939999 -0.252698\n\t\t 0.512797 -0.032738 -0.30744699 0.50212097 -0.031376999 -0.30441099 0.49460801 -0.057128001 -0.34271801\n\t\t 0.48223001 -0.055778999 -0.33969 0.46688399 -0.070987999 -0.36167699 0.45420599 -0.084587 -0.381336\n\t\t 0.43590501 -0.104158 -0.40962899 0.44888401 -0.105277 -0.41228199 0.41607201 -0.1237 -0.43797699\n\t\t 0.40114999 -0.137214 -0.45780301 0.386251 -0.149794 -0.47490701 0.37861499 -0.158724 -0.47822899\n\t\t 0.36057201 -0.181355 -0.48511499 0.33242899 -0.242118 -0.504933 0.31305501 -0.241616 -0.50283003\n\t\t 0.266561 -0.300578 -0.52016401 0.25198099 -0.33270201 -0.53362203 0.23987199 -0.329005 -0.53159201\n\t\t 0.15581299 -0.33162999 -0.60949302 0.22657301 -0.330957 -0.54329503 0.16325 -0.33540601 -0.61453199\n\t\t 0.56575102 -0.018000999 -0.195409 0.54808998 -0.017996 -0.232353 0.56497198 0.0098059997 -0.195076\n\t\t 0.54165 0.0081179999 -0.24488699 0.54145402 -0.019688999 -0.245213 0.53615499 -0.024767 -0.256026\n\t\t 0.51075703 -0.060538001 -0.30773899 0.492863 -0.084436998 -0.34221601 0.48029599 -0.098132998 -0.36179999\n\t\t 0.48133001 -0.072293997 -0.36463699 0.46941099 -0.085816003 -0.38417 0.47005001 -0.109147 -0.377352\n\t\t 0.45462 -0.124998 -0.39973399 0.426263 -0.124694 -0.44042501 0.43783101 -0.14128099 -0.422353\n\t\t 0.410411 -0.138083 -0.46005201 0.423605 -0.15358999 -0.43861401 0.39609599 -0.15063301 -0.47698\n\t\t 0.40908101 -0.166356 -0.45279199 0.389999 -0.159567 -0.48032001 0.40607601 -0.17321 -0.453677\n\t\t 0.37540299 -0.182019 -0.487223 0.40022299 -0.188885 -0.45414299 0.364301 -0.24297 -0.46832201\n\t\t 0.301231 -0.31292099 -0.496562 0.28251201 -0.301649 -0.52226698 0.26220599 -0.35123301 -0.51428199\n\t\t 0.23792601 -0.33454701 -0.54563999 0.247059 -0.353075 -0.52898198 0.164022 -0.35416201 -0.61487597\n\t\t -0.55299902 0.01116 -0.192081 -0.53509599 0.011165 -0.22902501 -0.56000799 0.0098059997 -0.195076\n\t\t -0.52842897 0.0094729997 -0.24188501 -0.53152502 0.0030380001 -0.25570399 -0.52281702 0.0043939999 -0.252698\n\t\t -0.49715799 -0.031376999 -0.30441099 -0.47726601 -0.055780001 -0.33969 -0.46191999 -0.070988998 -0.36167699\n\t\t -0.46444699 -0.085816003 -0.38417 -0.44924301 -0.084587 -0.381336 -0.43094099 -0.104158 -0.40962899\n\t\t -0.44391999 -0.105277 -0.41228199 -0.42129901 -0.124694 -0.44042501 -0.41110799 -0.1237 -0.43797699\n\t\t -0.39618599 -0.137214 -0.45780301 -0.38128701 -0.149794 -0.47490701 -0.373651 -0.158724 -0.47822899\n\t\t -0.35560799 -0.181355 -0.48511499 -0.30809101 -0.241616 -0.50283003;\n\tsetAttr \".vt[5644:5809]\" -0.26159701 -0.300578 -0.52016401 -0.234908 -0.329005 -0.53159201\n\t\t -0.221609 -0.330957 -0.54329503 -0.232962 -0.33454701 -0.54563999 -0.15085 -0.33162999 -0.60949302\n\t\t -0.56078702 -0.018002 -0.195409 -0.54290301 0.0098099997 -0.23202799 -0.54312599 -0.017996 -0.232353\n\t\t -0.536686 0.0081169996 -0.24488699 -0.53649002 -0.019688999 -0.245213 -0.53119099 -0.024767 -0.256026\n\t\t -0.50783497 -0.032738 -0.30744699 -0.505795 -0.060538001 -0.30773899 -0.48964399 -0.057128999 -0.34271801\n\t\t -0.48789901 -0.084436998 -0.34221601 -0.47533199 -0.098132998 -0.36179999 -0.47636601 -0.072293997 -0.36463699\n\t\t -0.46508601 -0.109147 -0.377352 -0.44965601 -0.124998 -0.39973399 -0.43286699 -0.14128099 -0.422353\n\t\t -0.40544701 -0.138083 -0.46005201 -0.418641 -0.15358999 -0.43861401 -0.391132 -0.15063301 -0.47698\n\t\t -0.40411699 -0.166356 -0.45279199 -0.38503501 -0.159567 -0.48032001 -0.40111199 -0.17321 -0.453677\n\t\t -0.37043899 -0.182019 -0.487223 -0.39525899 -0.188885 -0.45414299 -0.327465 -0.242118 -0.504933\n\t\t -0.359337 -0.24297 -0.46832201 -0.27754799 -0.301649 -0.52226698 -0.296267 -0.31292099 -0.496562\n\t\t -0.247017 -0.33270201 -0.53362203 -0.25724301 -0.35123301 -0.51428199 -0.24209601 -0.353075 -0.52898198\n\t\t -0.159058 -0.35416201 -0.61487597 -0.15828601 -0.33540601 -0.61453199 0.230673 -0.57730597 -0.61501598\n\t\t 0.23361 -0.560112 -0.61368197 0.226945 -0.560215 -0.61485201 0.239768 -0.56259799 -0.61237401\n\t\t 0.244481 -0.56729299 -0.61112899 0.247032 -0.57348299 -0.61013597 0.247032 -0.58022499 -0.60954601\n\t\t 0.244481 -0.58649302 -0.60944903 0.239768 -0.59133297 -0.60986 0.23361 -0.59400803 -0.61071599\n\t\t 0.226945 -0.59411001 -0.61188698 0.220787 -0.59162498 -0.61319399 0.216075 -0.58692998 -0.61443901\n\t\t 0.213524 -0.58073997 -0.61543202 0.213524 -0.57399797 -0.61602199 0.216075 -0.567729 -0.61611903\n\t\t 0.220788 -0.56288999 -0.61570799 0.25088799 -0.56209701 -0.60665298 0.243834 -0.555071 -0.60851598\n\t\t 0.25470501 -0.57136101 -0.60516697 0.25470501 -0.581451 -0.60428399 0.25088799 -0.590832 -0.60413897\n\t\t 0.243834 -0.59807599 -0.60475397 0.23461901 -0.60207897 -0.60603499 0.22464401 -0.60223198 -0.60778701\n\t\t 0.21542799 -0.59851199 -0.60974401 0.20837399 -0.59148598 -0.61160702 0.204557 -0.58222198 -0.61309302\n\t\t 0.204557 -0.57213199 -0.613976 0.20837399 -0.562751 -0.61412102 0.21542799 -0.555507 -0.61350602\n\t\t 0.22464401 -0.55150402 -0.612225 0.23461901 -0.55135101 -0.61047298 0.234669 -0.54636502 -0.60593998\n\t\t 0.222903 -0.54654503 -0.60800701 0.24553999 -0.55075198 -0.60363197 0.25386 -0.55904102 -0.60143399\n\t\t 0.25836301 -0.56996799 -0.59968102 0.25836301 -0.58187002 -0.59864002 0.25386 -0.59293598 -0.59846902\n\t\t 0.24553999 -0.60148001 -0.59919399 0.234669 -0.60620201 -0.60070503 0.222903 -0.60638303 -0.602772\n\t\t 0.21203201 -0.60199499 -0.60508001 0.203712 -0.59370703 -0.60727698 0.199209 -0.58278 -0.60903001\n\t\t 0.199209 -0.57087702 -0.61007202 0.203712 -0.559811 -0.61024302 0.21203201 -0.55126703 -0.60951799\n\t\t -0.22570901 -0.57730699 -0.61501598 -0.221981 -0.560215 -0.61485201 -0.228646 -0.560112 -0.61368197\n\t\t -0.234804 -0.56259799 -0.61237401 -0.239517 -0.56729299 -0.61112899 -0.24206799 -0.57348299 -0.61013597\n\t\t -0.24206799 -0.58022499 -0.60954601 -0.239517 -0.58649302 -0.60944903 -0.234804 -0.59133297 -0.60986\n\t\t -0.228646 -0.59400803 -0.61071599 -0.221981 -0.59411001 -0.61188698 -0.21582399 -0.59162498 -0.61319399\n\t\t -0.21111099 -0.58692998 -0.61443901 -0.20856 -0.58073997 -0.61543202 -0.20856 -0.57399797 -0.61602199\n\t\t -0.21111099 -0.567729 -0.61611903 -0.21582399 -0.56288999 -0.61570799 -0.245924 -0.56209701 -0.60665298\n\t\t -0.249741 -0.57136101 -0.60516697 -0.245924 -0.590832 -0.60413897 -0.23886999 -0.59807599 -0.60475397\n\t\t -0.21968 -0.60223198 -0.60778701 -0.210464 -0.59851199 -0.60974401 -0.19959299 -0.58222198 -0.61309302\n\t\t -0.19959299 -0.57213199 -0.613976 -0.210464 -0.555507 -0.61350602 -0.21968 -0.55150402 -0.612225\n\t\t -0.229655 -0.55135101 -0.61047298 -0.23886999 -0.555071 -0.60851598 -0.22970501 -0.54636502 -0.60593998\n\t\t -0.217939 -0.54654598 -0.60800701 -0.240576 -0.55075198 -0.60363197 -0.248896 -0.55904102 -0.60143399\n\t\t -0.25339901 -0.56996799 -0.59968102 -0.249741 -0.581451 -0.60428399 -0.25339901 -0.58187097 -0.59864002\n\t\t -0.248896 -0.59293598 -0.59846902 -0.240576 -0.60148001 -0.59919399 -0.229655 -0.60207897 -0.60603499\n\t\t -0.22970501 -0.60620201 -0.60070503 -0.217939 -0.60638303 -0.602772 -0.207068 -0.60199499 -0.60508001\n\t\t -0.20341 -0.59148598 -0.61160702 -0.19874801 -0.59370703 -0.60727698 -0.194245 -0.58278 -0.60903001\n\t\t -0.194245 -0.57087702 -0.61007202 -0.20341 -0.562751 -0.61412102 -0.19874801 -0.559811 -0.61024302\n\t\t -0.207068 -0.55126703 -0.60951799 0.0035280001 -0.66382402 0.090157002 0.140838 -0.677939 0.19176\n\t\t 0.140838 -0.69682801 0.19176 0.0035280001 -0.64493501 0.090157002 0.140838 -0.80285901 0.19176\n\t\t 0.145202 -0.81493503 0.19498999 0.0035280001 -0.78792 0.090157002 0.0035280001 -0.76985502 0.090157002\n\t\t 0.145202 -0.68602699 0.19498999 0.01444 -0.75865197 0.098231003 0.01444 -0.68027198 0.098231003\n\t\t 0.024533 -0.75865299 0.084591001 0.024533 -0.68027198 0.084591001 0.129926 -0.78641099 0.183686\n\t\t 0.140019 -0.78641099 0.170046 0.129926 -0.708031 0.183686 0.140019 -0.708031 0.170046\n\t\t 0.001435 -0.66382402 0.090157002 -0.135874 -0.69682801 0.19176 -0.135874 -0.80285901 0.19176\n\t\t -0.140238 -0.81493503 0.19498999 0.001435 -0.76985502 0.090157002 -0.140238 -0.68602699 0.19498999\n\t\t -0.0094769998 -0.68027198 0.098231003 -0.01957 -0.75865299 0.084591001 -0.01957 -0.68027198 0.084591001\n\t\t -0.13505501 -0.78641099 0.170046 -0.0094769998 -0.75865197 0.098231003 -0.13505501 -0.708031 0.170046\n\t\t -0.124962 -0.78641099 0.183686 -0.124962 -0.708031 0.183686;\n\tsetAttr \".vt[5810:5975]\" 0.70037699 0.41407499 -0.138541 0.66264898 0.39770001 -0.151219\n\t\t 0.68575698 0.332468 -0.127933 0.68339401 0.228542 -0.107815 0.71574402 0.194932 -0.089322999\n\t\t 0.65346801 0.185664 -0.113489 0.57043898 0.33093601 -0.17784099 0.53781903 0.47008899 -0.216575\n\t\t 0.598791 0.34784901 -0.164294 0.63847399 0.16418 -0.117022 0.252276 0.82692999 0.590186\n\t\t 0.202272 0.84106201 0.62710398 0.35914901 0.78196001 0.48718199 0.38204899 0.78028202 0.57064998\n\t\t 0.103746 0.85248601 0.66339898 0.099921003 0.82998699 0.62367803 0.19434901 0.825104 0.58897698\n\t\t 0.096435003 0.800219 0.59267801 0.24132 0.81041503 0.55437201 0.34087199 0.769005 0.45820099\n\t\t 0.322889 0.75376898 0.436248 0.36815199 0.727759 0.36201501 0.393875 0.742773 0.38330799\n\t\t 0.44816199 0.70814401 0.26848099 0.431817 0.70027798 0.25186199 0.49890199 0.66976798 0.13522901\n\t\t 0.54130799 0.67346299 0.151684 0.474538 0.71444499 0.28740001 0.41622999 0.75242001 0.40766999\n\t\t 0.44176099 0.75433898 0.47874701 0.549537 0.67923802 0.20660301 0.54849201 0.65124398 0.105701\n\t\t 0.56687301 0.65077001 0.12683 0.556072 0.572613 -0.046932999 0.422885 0.67656201 0.203711\n\t\t 0.44628301 0.64719301 0.115013 0.40300101 0.68137097 0.24255399 0.36632001 0.72440302 0.35558599\n\t\t 0.32040799 0.75163001 0.43331301 0.229606 0.78253901 0.523274 0.230795 0.78542697 0.526371\n\t\t 0.18620899 0.79347301 0.55566698 0.65235299 0.052336 -0.092681997 0.65003097 0.051534999 -0.020563999\n\t\t 0.64347899 0.051506002 -0.088965997 0.64819503 0.051504001 -0.094094001 0.62719297 0.051506002 -0.089101002\n\t\t 0.623034 0.051500998 -0.107288 0.59719801 0.051500998 -0.107694 0.60129201 0.051506002 -0.089317001\n\t\t 0.56830001 0.051506002 -0.089592002 0.56433702 0.051500998 -0.108154 0.633807 0.051534999 -0.020563999\n\t\t 0.60800397 0.051534999 -0.020563001 0.57513702 0.051534999 -0.020563001 0.58700299 0.051500998 -0.146312\n\t\t 0.61561799 0.051500998 -0.145583 0.63945901 0.051500998 -0.106664 0.63505101 0.051500998 -0.142177\n\t\t 0.64820701 0.051500998 -0.102032 0.65144402 0.05294 -0.100549 0.65879703 0.051534999 -0.020563999\n\t\t 0.67524201 0.098214999 -0.089139 0.74045098 0.193753 0.025078001 0.76140797 0.241027 0.039081998\n\t\t 0.72206903 0.42798701 0.037663002 0.721551 0.42471501 0.028308 0.73534399 0.36765999 0.043203\n\t\t 0.742836 0.30628499 0.037165001 0.74920201 0.240942 0.039235 0.752271 0.24087 0.049318001\n\t\t 0.56895298 0.55905002 -0.053303 0.703758 0.48574999 0.020127 0.650895 0.054892 -0.01935\n\t\t 0.72931898 0.194527 0.025496 0.715644 0.490251 0.029381 0.72076899 0.447496 0.122019\n\t\t 0.73425299 0.42809799 0.037574001 0.68813002 0.48773399 0.29352301 0.66957802 0.56725901 0.26759201\n\t\t 0.70110297 0.412774 0.31554699 0.73377001 0.38254401 0.134122 0.74752802 0.36776599 0.043094002\n\t\t 0.63739902 0.59578401 0.37315601 0.65643001 0.51334602 0.40587401 0.59964198 0.54850298 0.56880802\n\t\t 0.50967598 0.656564 0.66912103 0.52195603 0.579449 0.72413403 0.45144099 0.59242898 0.82778502\n\t\t 0.438981 0.66962397 0.76820499 0.31424499 0.599994 0.96622199 0.304784 0.68038201 0.89522499\n\t\t 0.322319 0.513978 1.017209053 0.46899301 0.50909102 0.88165498 0.54407698 0.49736899 0.77450502\n\t\t 0.74211502 0.317435 0.144426 0.70714998 0.33765799 0.336633 0.67817301 0.262575 0.47977901\n\t\t 0.67596799 0.35216299 0.45754501 0.62220401 0.37523699 0.63093901 0.626571 0.27137801 0.650208\n\t\t 0.61434102 0.46736801 0.60565001 0.669958 0.434149 0.43327099 0.55370098 0.39610901 0.80022502\n\t\t 0.56042701 0.27901801 0.81597102 0.47830701 0.40401199 0.90881199 0.33490399 0.28259501 1.069079995\n\t\t 0.32909101 0.40669701 1.048037052 0.26063001 0.40774 1.099354982 0.25509799 0.51589102 1.064998984\n\t\t 0.129785 0.51776201 1.11492896 0.132615 0.40871099 1.14963496 0.13526601 0.28294501 1.17340004\n\t\t 0.126955 0.60574198 1.066921949 0.24924099 0.60294098 1.015871048 0.24269 0.68453401 0.94487703\n\t\t 0.002482 0.51890397 1.12839794 0.002481 0.607427 1.081352949 0.002481 0.69038701 1.019366026\n\t\t 0.57208401 0.60308701 0.028989 0.63892502 0.56819803 0.062890999 0.57027602 0.56702101 -0.04696\n\t\t 0.620233 0.61250502 0.19699299 0.59462601 0.64151198 0.28921399 0.70238501 0.51410198 0.10658\n\t\t 0.50240803 0.71721703 0.34030399 0.54072702 0.67861903 0.433189 0.57995701 0.62875098 0.522219\n\t\t 0.47354901 0.71281201 0.57811803 0.40810201 0.73308098 0.67320198 0.28587401 0.75718099 0.79073501\n\t\t 0.26991799 0.81458998 0.68529302 0.228825 0.76642197 0.83633 0.123868 0.68823802 1.00098001957\n\t\t 0.117131 0.77131999 0.88608003 0.217126 0.82556403 0.72196001 0.111446 0.83712101 0.77219999\n\t\t 0.56950098 0.56347299 -0.044468001 0.56955898 0.562675 -0.055987999 0.64031303 0.533149 -0.00148\n\t\t 0.64615399 0.53683299 -0.0048659998 0.703426 0.490127 0.029224001 0.74500602 0.30733299 0.047017999\n\t\t 0.75718999 0.30743399 0.046889 0.73166698 0.19339401 0.034883 0.742773 0.19345801 0.034768999\n\t\t 0.68997198 0.098264001 0.0041570002 0.68106902 0.098242 0.004195 0.68016601 0.101502 -0.003797\n\t\t 0.68914598 0.099007003 -0.004745 0.75502098 0.30638599 0.037035 0.73400003 0.3655 0.033599999\n\t\t 0.73373502 0.424826 0.028217999 0.71597099 0.48586899 0.020289 0.640176 0.52898699 -0.010724\n\t\t 0.64593798 0.53249103 -0.013948 0.705392 0.417945 -0.131529 0.53892398 0.47300699 -0.211685\n\t\t 0.73508501 0.29058701 -0.091508999 0.74618399 0.36560601 0.033489998 0.726475 0.33707899 -0.104063\n\t\t 0.12192 0.101029 1.10808206 0.22658101 0.040224001 1.024839044 0.240879 0.101011 1.05803597\n\t\t 0.128342 0.16177399 1.13724697 0.25291499 0.161734 1.086797953;\n\tsetAttr \".vt[5976:6141]\" 0.132396 0.22239099 1.15754104 0.26042801 0.22233 1.106691\n\t\t 0.265679 0.28286299 1.12214899 0.30810699 0.100949 1.0060310364 0.32141 0.161604 1.034438014\n\t\t 0.292182 0.040231999 0.97319001 0.457481 0.100775 0.86467201 0.472177 0.16123299 0.89219302\n\t\t 0.480396 0.22156499 0.91084802 0.32946801 0.222131 1.053976059 0.48537701 0.28183299 0.92506897\n\t\t 0.55628997 0.219456 0.80031598 0.54866999 0.159831 0.78072399 0.62448198 0.213726 0.62932003\n\t\t 0.67663199 0.207243 0.45560899 0.70960099 0.256271 0.35668099 0.704391 0.202874 0.336932\n\t\t 0.74770898 0.246086 0.153208 0.68218201 0.095857002 0.29559499 0.68986303 0.098750003 0.113008\n\t\t 0.70138597 0.11917 0.056279 0.65887398 0.050567001 -0.012057 0.66830701 0.044165999 0.20773301\n\t\t 0.66518098 0.042236 0.27400801 0.73057002 0.178745 0.073356003 0.73081499 0.193519 0.13684601\n\t\t 0.69588703 0.108381 0.109414 0.497585 0.67058498 0.039212 0.52048898 0.66980398 0.046636999\n\t\t 0.49821201 0.65603799 0.012057 0.52211899 0.653615 0.016137 0.47325099 0.64836401 0.010672\n\t\t 0.47310001 0.66266698 0.037241001 0.53903598 0.66168702 0.072114997 0.543688 0.63850701 0.027182\n\t\t 0.53601003 0.67595297 0.099771 0.554079 0.61934501 0.039577998 0.52120697 0.61356801 -0.057383999\n\t\t 0.4957 0.61593598 -0.061624002 0.49285299 0.58024698 -0.12682199 0.519876 0.57934201 -0.119781\n\t\t 0.483006 0.521622 -0.22689 0.50989598 0.51809198 -0.22448801 0.47606999 0.495029 -0.26827899\n\t\t 0.502186 0.49050799 -0.266949 0.455066 0.51347798 -0.226301 0.448733 0.487055 -0.267465\n\t\t 0.54368198 0.57162797 -0.095821999 0.55602902 0.561759 -0.066673003 0.52266997 0.46762401 -0.26079401\n\t\t 0.52967399 0.44113401 -0.25281999 0.465725 0.57219303 -0.12820999 0.54419899 0.598997 -0.045825001\n\t\t 0.52660298 0.430507 -0.26537901 0.546978 0.345635 -0.23549899 0.64412898 0.051500998 -0.134644\n\t\t 0.469549 0.60809797 -0.062958002 0.44428399 0.54662102 -0.124992 0.43404499 0.48847601 -0.22222\n\t\t 0.42781299 0.462026 -0.263322 0.424952 0.45397601 -0.216922 0.418562 0.427526 -0.25802401\n\t\t 0.43416399 0.51212102 -0.119694 0.44814 0.58244801 -0.059905 0.43752199 0.547948 -0.054607\n\t\t 0.45192799 0.62269098 0.013692 0.45190999 0.63695699 0.040201001 0.440815 0.58819097 0.018990001\n\t\t 0.440797 0.60245699 0.045499001 0.41665599 0.41944599 -0.27088901 0.451682 0.64265299 0.057617001\n\t\t 0.440395 0.60999697 0.060876999 0.43920401 0.61848301 0.081202999 0.44999301 0.64560801 0.084059\n\t\t 0.473342 0.674429 0.057257 0.437619 0.627442 0.104004 0.499421 0.67434299 0.093342997\n\t\t 0.497163 0.67857999 0.053504001 0.475034 0.67326999 0.089057997 0.470222 0.66789401 0.12751099\n\t\t 0.51966202 0.67836601 0.062711999 0.53117901 0.49968901 -0.21424299 0.472271 0.479381 -0.28650001\n\t\t 0.45009699 0.47583899 -0.279053 0.51400697 0.45641899 -0.27274001 0.51895499 0.42432901 -0.27195001\n\t\t 0.42984599 0.44663101 -0.28105399 0.42116401 0.41616699 -0.26958701 0.51650101 0.34638599 -0.24445499\n\t\t 0.49318901 0.34512499 -0.233906 0.53978503 0.348692 -0.245829 0.49822801 0.47755 -0.28663701\n\t\t 0.469358 0.474433 -0.30462101 0.49447301 0.46915001 -0.30564201 0.47254401 0.48253599 -0.287938\n\t\t 0.44310299 0.466842 -0.30101001 0.42322099 0.44259599 -0.293363 0.42488101 0.44964901 -0.282747\n\t\t 0.41557601 0.415149 -0.27744901 0.414902 0.40912801 -0.28516099 0.51416498 0.44279099 -0.30121601\n\t\t 0.52037501 0.413652 -0.29476899 0.53614002 0.34101 -0.27717599 0.50930798 0.43684101 -0.30989599\n\t\t 0.51509601 0.40869099 -0.30385199 0.49063501 0.462311 -0.31386301 0.467684 0.46696699 -0.312489\n\t\t 0.44380799 0.45965299 -0.30853 0.42589501 0.43667799 -0.299992 0.41924599 0.40513301 -0.290903\n\t\t 0.484723 0.453668 -0.315065 0.46706 0.45674601 -0.313521 0.44798201 0.45068201 -0.310875\n\t\t 0.51897699 0.350995 -0.29336599 0.43147799 0.42989701 -0.303745 0.489149 0.33799899 -0.24087501\n\t\t 0.507213 0.33757001 -0.27269 0.478286 0.33412901 -0.268204 0.54512101 0.34437299 -0.244984\n\t\t 0.50051099 0.33882701 -0.28398699 0.471984 0.33510101 -0.27911699 0.52903903 0.34255299 -0.28885701\n\t\t 0.49102199 0.34720099 -0.288638 0.499358 0.48213899 -0.27960101 0.495653 0.479332 -0.27864301\n\t\t 0.51966298 0.45817301 -0.273191 0.52022898 0.43016699 -0.265486 0.54146498 0.34993199 -0.23694099\n\t\t 0.51732701 0.34752801 -0.235424 0.473665 0.48688599 -0.28103501 0.47363099 0.483457 -0.27981499\n\t\t 0.446767 0.478986 -0.28029799 0.42595899 0.45394599 -0.276187 0.43046901 0.45066699 -0.274885\n\t\t 0.51239902 0.451193 -0.279443 0.525406 0.424375 -0.27200001 0.51850998 0.45262 -0.27998\n\t\t 0.49388 0.47509801 -0.285568 0.44927999 0.471834 -0.28542101 0.445678 0.47468099 -0.28698301\n\t\t 0.51713502 0.34118599 -0.24293 0.49321601 0.34408 -0.243081 0.420544 0.41213101 -0.275756\n\t\t 0.55092502 0.051500998 -0.14678 0.72713298 0.169539 0.063355997 0.69476199 0.24533699 -0.105835\n\t\t 0.65356302 0.19373401 -0.071015999 0.69272 0.2942 -0.11711 0.69281501 0.30227101 -0.079786003\n\t\t 0.67879498 0.37073499 -0.13875601 0.678891 0.37880501 -0.101431 0.662745 0.40577 -0.116752\n\t\t 0.59888703 0.355919 -0.12696899 0.58222198 0.43825001 -0.151204 0.58212602 0.430179 -0.188528\n\t\t 0.621602 0.43031299 -0.134395 0.62150699 0.422243 -0.17172 0.76447701 0.240955 0.049167\n\t\t 0.66359001 0.047366001 0.097837999 0.65107399 0.050567001 -0.012057 0.65364897 0.047366001 0.097837999\n\t\t 0.51581901 0.342949 -0.22426599 0.49093199 0.33927599 -0.23121201 0.49302399 0.34026 -0.223465\n\t\t 0.51895499 0.34245601 -0.233355 0.55410802 0.349619 -0.214559;\n\tsetAttr \".vt[6142:6307]\" 0.53411502 0.345222 -0.22453301 0.54774702 0.34767199 -0.221753\n\t\t 0.42442399 0.401476 -0.29631701 0.46628699 0.43049201 -0.30763301 0.46729001 0.40514699 -0.30165601\n\t\t 0.501095 0.431086 -0.31152099 0.50625801 0.40591401 -0.306077 0.463067 0.34340701 -0.28391099\n\t\t 0.41409901 0.0070270002 0.81068498 0.48943901 0.0070389998 0.732283 0.439547 0.040254001 0.832717\n\t\t 0.271505 0.007005 0.95021999 0.38467401 -0.0021869999 0.785209 0.247595 -0.0022090001 0.92365801\n\t\t 0.208719 0.0069980002 1.0014200211 0.18806399 -0.0022169999 0.97434098 0.114314 0.040220998 1.07448101\n\t\t 0.104955 0.0069949999 1.050133944 0.4571 -0.002175 0.70738 0.094132997 -0.0022189999 1.021981001\n\t\t 0.002482 -0.0022189999 1.033128977 0.53408802 0.10008 0.75325602 0.517407 0.040265001 0.75382\n\t\t 0.002481 0.85249001 0.667992 0.002481 0.79711801 0.59365797 0.002482 0.16177 1.15047705\n\t\t 0.002482 0.222386 1.17103398 0.69485801 0.253407 -0.068510003 0.68348998 0.23661201 -0.069121003\n\t\t 0.638569 0.172251 -0.071965002 0.685853 0.340538 -0.090608999 0.69646502 0.109403 0.109066\n\t\t 0.72976601 0.188344 0.131332 0.72995901 0.189165 0.13220599 0.71520698 0.121507 0.070548996\n\t\t 0.69260597 0.102959 0.111256 0.71488702 0.123215 0.075021997 0.72012901 0.127151 0.064956002\n\t\t 0.70439601 0.124654 0.050547 0.72316301 0.13108499 0.064810999 0.70662898 0.12879901 0.05091\n\t\t 0.73957098 0.165068 0.072605997 0.737275 0.162494 0.075328 0.741265 0.16932701 0.074568003\n\t\t 0.72900099 0.173724 0.065412998 0.73897898 0.166758 0.077288002 0.74144101 0.17481001 0.082200997\n\t\t 0.73136503 0.19651 0.14027099 0.700019 0.123332 0.076375 0.70238101 0.129355 0.070164002\n\t\t 0.71977502 0.128721 0.069239996 0.70452303 0.133707 0.069857001 0.72286803 0.132607 0.068958998\n\t\t 0.71842098 0.162009 0.075841002 0.72041702 0.16627701 0.077806003 0.73916799 0.17231999 0.084894001\n\t\t 0.72291899 0.17187101 0.085450999 0.096082002 0.79711801 0.58957899 0.186974 0.79651397 0.55875099\n\t\t 0.54175001 0.46710801 -0.21394099 0.61536998 0.45464599 -0.174991 0.61568803 0.447272 -0.17840999\n\t\t 0.71775401 0.383522 -0.116628 0.712385 0.380629 -0.123937 0.72081298 0.33555499 -0.111613\n\t\t 0.72939998 0.29043201 -0.099207997 0.74250299 0.237905 -0.078382999 0.73677999 0.238548 -0.086033002\n\t\t 0.72025198 0.191412 -0.081987001 0.67312598 0.103332 -0.095618002 -0.61654502 0.422243 -0.17172\n\t\t -0.67383301 0.37073499 -0.13875601 -0.71585101 0.33555499 -0.111613 -0.72443801 0.29043201 -0.099207997\n\t\t -0.68980002 0.24533699 -0.105835 -0.73181802 0.238548 -0.086033002 -0.67843199 0.228542 -0.107815\n\t\t -0.71078199 0.194932 -0.089322999 -0.64850402 0.185664 -0.113489 -0.59382898 0.34784901 -0.164294\n\t\t -0.24731401 0.82692999 0.590186 -0.19731 0.84106201 0.62710398 -0.264956 0.81458998 0.68529302\n\t\t -0.35418701 0.78196001 0.48718199 -0.377087 0.78028202 0.57064998 -0.098784 0.85248601 0.66339898\n\t\t -0.094958 0.82998699 0.62367803 -0.18938699 0.825104 0.58897698 -0.18201201 0.79651397 0.55875099\n\t\t -0.236358 0.81041503 0.55437201 -0.33590999 0.769005 0.45820099 -0.317927 0.75376898 0.436248\n\t\t -0.36319 0.727759 0.36201501 -0.38891301 0.742773 0.38330799 -0.44319999 0.70814401 0.26848099\n\t\t -0.426855 0.70027798 0.25186199 -0.49394 0.66976798 0.13523 -0.53634602 0.67346299 0.151684\n\t\t -0.469576 0.71444499 0.28740001 -0.411268 0.75242001 0.40766999 -0.43679899 0.75433898 0.47874701\n\t\t -0.54457498 0.67923802 0.20660301 -0.54911703 0.61934501 0.039577998 -0.417923 0.67656201 0.203711\n\t\t -0.44132099 0.64719301 0.115014 -0.39803901 0.68137097 0.24255399 -0.36135799 0.72440302 0.35558599\n\t\t -0.31544599 0.75163001 0.43331301 -0.225833 0.78542697 0.526371 -0.22464401 0.78253901 0.523274\n\t\t -0.181247 0.79347301 0.55566698 0.002481 0.82997203 0.62780201 0.002481 0.80022699 0.59676802\n\t\t 0.002481 0.83790499 0.78518897 -0.091118999 0.79711801 0.58957899 -0.64506698 0.051534999 -0.020563999\n\t\t -0.638515 0.051506002 -0.088965997 -0.64323097 0.051504001 -0.094094001 -0.62222898 0.051506002 -0.089101002\n\t\t -0.61807001 0.051500998 -0.107288 -0.59223402 0.051500998 -0.107694 -0.59632802 0.051506002 -0.089317001\n\t\t -0.56333601 0.051506002 -0.089592002 -0.55937302 0.051500998 -0.108154 -0.62884301 0.051534999 -0.020563999\n\t\t -0.60303998 0.051534999 -0.020563001 -0.57017303 0.051534001 -0.020563001 -0.610654 0.051500998 -0.145583\n\t\t -0.63449502 0.051500998 -0.106664 -0.63916498 0.051500998 -0.134644 -0.64648002 0.05294 -0.100549\n\t\t -0.64324301 0.051500998 -0.102032 -0.73548901 0.193753 0.025078001 -0.756446 0.241027 0.039081998\n\t\t -0.717107 0.42798701 0.037663002 -0.71658897 0.42471501 0.028308 -0.635351 0.533149 -0.00148\n\t\t -0.69846398 0.490127 0.029224001 -0.69879597 0.48574999 0.020127 -0.67610502 0.098242 0.004195\n\t\t -0.72670501 0.19339401 0.034883 -0.74423999 0.240942 0.039235 -0.71580702 0.447496 0.122019\n\t\t -0.68316799 0.48773399 0.29352301 -0.696141 0.412774 0.31554699 -0.72880799 0.38254401 0.134122\n\t\t -0.74256599 0.36776599 0.043094002 -0.63243699 0.59578401 0.37315601 -0.65146798 0.51334602 0.40587401\n\t\t -0.59468001 0.54850298 0.56880802 -0.516994 0.579449 0.72413403 -0.446477 0.59242898 0.82778502\n\t\t -0.434017 0.66962397 0.76820499 -0.30928099 0.599994 0.96622199 -0.299822 0.68038201 0.89522499\n\t\t -0.31735501 0.513978 1.017209053 -0.46402901 0.50909102 0.88165498 -0.53911501 0.49736899 0.77450502\n\t\t -0.73715299 0.317435 0.144426 -0.66499603 0.434149 0.43327099 -0.60937899 0.46736801 0.60565001\n\t\t -0.67100602 0.35216299 0.45754501 -0.61724001 0.37523699 0.63093901 -0.67321098 0.262575 0.47977901\n\t\t -0.62160701 0.27137801 0.650208 -0.54873699 0.39610901 0.80022502;\n\tsetAttr \".vt[6308:6473]\" -0.70218801 0.33765799 0.336633 -0.70463902 0.256271 0.35668099\n\t\t -0.74274701 0.246086 0.153209 -0.47334301 0.40401199 0.90881199 -0.32412699 0.40669701 1.048037052\n\t\t -0.25566599 0.40774 1.099354982 -0.25013399 0.51589102 1.064998984 -0.124821 0.51776201 1.11492896\n\t\t -0.12765101 0.40871099 1.14963496 -0.121992 0.60574198 1.066921949 -0.244277 0.60294098 1.015871048\n\t\t 0.002482 0.409289 1.16303098 0.002482 0.28293699 1.18715501 -0.56712198 0.60308701 0.028989\n\t\t -0.63396299 0.56819803 0.062890999 -0.61527097 0.61250502 0.19699299 -0.56191099 0.65077001 0.12683\n\t\t -0.58966398 0.64151198 0.28921399 -0.69742298 0.51410198 0.10658 -0.66461599 0.56725901 0.267593\n\t\t -0.497446 0.71721703 0.34030399 -0.53576499 0.67861903 0.433189 -0.57499498 0.62875098 0.522219\n\t\t -0.50471401 0.656564 0.66912103 -0.46858701 0.71281201 0.57811803 -0.40314001 0.73308098 0.67320198\n\t\t -0.28091201 0.75718099 0.79073501 -0.22386301 0.76642197 0.83633 -0.237728 0.68453401 0.94487703\n\t\t -0.118906 0.68823802 1.00098001957 -0.112169 0.77131999 0.88608003 -0.212164 0.82556403 0.72196001\n\t\t -0.106484 0.83712101 0.77219999 0.002481 0.77240098 0.90041697 -0.56459701 0.562675 -0.055987999\n\t\t -0.56531399 0.56702101 -0.04696 -0.56399101 0.55905002 -0.053303 -0.56453902 0.56347299 -0.044468001\n\t\t -0.64119202 0.53683299 -0.0048659998 -0.71068197 0.490251 0.029381 -0.72929102 0.42809799 0.037574001\n\t\t -0.73038203 0.36765999 0.043203 -0.740044 0.30733299 0.047017999 -0.75222802 0.30743399 0.046889\n\t\t -0.74730903 0.24087 0.049318001 -0.73781103 0.19345801 0.034768999 -0.64611 0.050565999 -0.012057\n\t\t -0.67520201 0.101502 -0.003797 -0.65383297 0.051534999 -0.020563999 -0.68418199 0.099007003 -0.004745\n\t\t -0.64593101 0.054891001 -0.01935 -0.72435701 0.194527 0.025496 -0.73787397 0.30628499 0.037165001\n\t\t -0.729038 0.3655 0.033599999 -0.74122202 0.36560601 0.033489998 -0.728773 0.424826 0.028217999\n\t\t -0.63521397 0.52898699 -0.010724 -0.64097601 0.53249103 -0.013948 -0.53396201 0.47300699 -0.211685\n\t\t -0.75005901 0.30638599 0.037035 -0.71279198 0.383522 -0.116628 -0.71100903 0.48586899 0.020289\n\t\t -0.116956 0.101029 1.10808206 -0.10935 0.040220998 1.07448101 -0.23591501 0.101011 1.05803597\n\t\t -0.123378 0.16177399 1.13724697 -0.247951 0.161734 1.086797953 -0.127433 0.22239099 1.15754104\n\t\t -0.25546399 0.22233 1.106691 -0.130303 0.28294501 1.17340004 -0.26071501 0.28286299 1.12214899\n\t\t -0.30314299 0.100949 1.0060310364 -0.31644601 0.161604 1.034438014 -0.287218 0.040231001 0.97319001\n\t\t -0.452517 0.100775 0.86467201 -0.467213 0.16123299 0.89219302 -0.47543201 0.22156499 0.91084802\n\t\t -0.32450399 0.222131 1.053976059 -0.48041299 0.28183299 0.92506897 -0.55546302 0.27901801 0.81597102\n\t\t -0.55132598 0.219456 0.80031598 -0.32993999 0.28259501 1.069079995 -0.543706 0.159831 0.78072399\n\t\t -0.61952001 0.213726 0.62932003 -0.67166799 0.207243 0.45560899 -0.69942898 0.202874 0.336932\n\t\t -0.67721802 0.095857002 0.29559499 -0.68489897 0.098750003 0.113009 -0.65862602 0.047366001 0.097837999\n\t\t -0.69642198 0.11917 0.056279 -0.68500799 0.098263003 0.0041570002 -0.72216898 0.169539 0.063355997\n\t\t -0.72403699 0.173724 0.065412998 -0.66021699 0.042236 0.27400801 -0.492623 0.67058498 0.039212\n\t\t -0.51552701 0.66980398 0.046636999 -0.49325001 0.65603799 0.012057 -0.51715702 0.653615 0.016137\n\t\t -0.46828899 0.64836401 0.010672 -0.46813801 0.66266698 0.037241001 -0.46838 0.674429 0.057257\n\t\t -0.51624501 0.61356801 -0.057383999 -0.490738 0.61593598 -0.061624002 -0.48789099 0.58024698 -0.12682199\n\t\t -0.51491398 0.57934201 -0.119781 -0.478044 0.521622 -0.22689 -0.50493401 0.51809198 -0.22448801\n\t\t -0.47110799 0.495029 -0.26827899 -0.497224 0.49050799 -0.266949 -0.450104 0.51347798 -0.226301\n\t\t -0.443771 0.487055 -0.267465 -0.44180501 0.478986 -0.28029799 -0.46076301 0.57219303 -0.12820999\n\t\t -0.464587 0.60809797 -0.062958002 -0.422851 0.462026 -0.263322 -0.42908299 0.48847601 -0.22222\n\t\t -0.4136 0.427526 -0.25802401 -0.41998801 0.45397601 -0.216922 -0.43932199 0.54662102 -0.124992\n\t\t -0.42920199 0.51212102 -0.119694 -0.443178 0.58244801 -0.059905 -0.43256 0.547948 -0.054607\n\t\t -0.44696599 0.62269098 0.013692 -0.44694799 0.63695699 0.040201001 -0.435853 0.58819097 0.018990001\n\t\t -0.435835 0.60245699 0.045499001 -0.44672099 0.64265299 0.057617001 -0.435433 0.60999697 0.060876999\n\t\t -0.43424201 0.61848301 0.081202999 -0.44503099 0.64560801 0.084059 -0.432657 0.627442 0.104004\n\t\t -0.46526 0.66789401 0.12751099 -0.494459 0.67434299 0.093342997 -0.492201 0.67857999 0.053504001\n\t\t -0.470072 0.67326999 0.089057997 -0.531048 0.67595297 0.099771 -0.5147 0.67836601 0.062711999\n\t\t -0.52199697 0.67664599 0.076026 -0.53872001 0.57162797 -0.095821999 -0.51642698 0.51022601 -0.22009601\n\t\t -0.52647001 0.57363898 -0.114523 -0.52621698 0.49968901 -0.21424299 -0.55106699 0.561759 -0.066673003\n\t\t -0.507608 0.48179701 -0.264604 -0.517708 0.46762401 -0.26079401 -0.52471203 0.44113401 -0.25281999\n\t\t -0.53923702 0.598997 -0.045825001 -0.52943802 0.606543 -0.051621001 -0.55111003 0.572613 -0.046932999\n\t\t -0.51470101 0.45817301 -0.273191 -0.52164102 0.430507 -0.26537901 -0.54201603 0.345635 -0.23549899\n\t\t -0.549146 0.349619 -0.214559 -0.56547701 0.33093601 -0.17784099 -0.53872597 0.63850701 0.027182\n\t\t -0.54352999 0.65124398 0.105701 -0.53407401 0.66168702 0.072114997 -0.52969301 0.64630598 0.021679999\n\t\t -0.52595299 0.66625202 0.058279 -0.49068901 0.479332 -0.27864301 -0.46730801 0.479381 -0.28650001\n\t\t -0.468669 0.483457 -0.27981499 -0.445133 0.47583899 -0.279053 -0.41620201 0.41616699 -0.26958701\n\t\t -0.41558 0.41213101 -0.275756 -0.498541 0.465947 -0.28326201;\n\tsetAttr \".vt[6474:6639]\" -0.50044602 0.470283 -0.27631 -0.51526701 0.43016699 -0.265486\n\t\t -0.534823 0.348692 -0.245829 -0.51153898 0.34638599 -0.24445499 -0.48822501 0.34512499 -0.233906\n\t\t -0.53650302 0.34993199 -0.23694099 -0.464394 0.474433 -0.30462101 -0.48950899 0.46915001 -0.30564201\n\t\t -0.43813899 0.466842 -0.30101001 -0.41825899 0.44259599 -0.293363 -0.41991699 0.44964901 -0.282747\n\t\t -0.40993801 0.40912801 -0.28516099 -0.462722 0.46696699 -0.312489 -0.48567101 0.462311 -0.31386301\n\t\t -0.438844 0.45965299 -0.30853 -0.42093101 0.43667799 -0.299992 -0.41428199 0.40513301 -0.290903\n\t\t -0.46209601 0.45674601 -0.313521 -0.426514 0.42989701 -0.303745 -0.49511299 0.45306 -0.312704\n\t\t -0.499089 0.45994401 -0.30434099 -0.50434601 0.43684101 -0.30989599 -0.50920302 0.44279099 -0.30121601\n\t\t -0.503205 0.46859899 -0.28426301 -0.51541299 0.413652 -0.29476899 -0.52044398 0.424375 -0.27200001\n\t\t -0.54015899 0.34437299 -0.244984 -0.531178 0.34101 -0.27717599 -0.51013398 0.40869099 -0.30385199\n\t\t -0.524077 0.34255299 -0.28885701 -0.496133 0.431086 -0.31152099 -0.50129598 0.40591401 -0.306077\n\t\t -0.50225103 0.33757001 -0.27269 -0.473322 0.33412901 -0.268204 -0.49554899 0.33882701 -0.28398699\n\t\t -0.46702 0.33510101 -0.27911699 -0.509045 0.45641899 -0.27274001 -0.50451797 0.473286 -0.277224\n\t\t -0.51236498 0.34752801 -0.235424 -0.51399302 0.34245601 -0.233355 -0.494396 0.48213899 -0.27960101\n\t\t -0.468703 0.48688599 -0.28103501 -0.42099699 0.45394599 -0.276187 -0.42550501 0.45066699 -0.274885\n\t\t -0.41169199 0.41944599 -0.27088901 -0.50743699 0.451193 -0.279443 -0.51354802 0.45262 -0.27998\n\t\t -0.51399302 0.42432901 -0.27195001 -0.512173 0.34118599 -0.24293 -0.48418701 0.33799899 -0.24087501\n\t\t -0.48825499 0.34408 -0.243081 -0.48891601 0.47509801 -0.285568 -0.49326399 0.47755 -0.28663701\n\t\t -0.467583 0.48253599 -0.287938 -0.444316 0.471834 -0.28542101 -0.440716 0.47468099 -0.28698301\n\t\t -0.42488399 0.44663101 -0.28105399 -0.41061401 0.415149 -0.27744901 -0.63008702 0.051500998 -0.142177\n\t\t -0.51085699 0.342949 -0.22426599 -0.582039 0.051500998 -0.146312 -0.48806199 0.34026 -0.223465\n\t\t -0.54596102 0.051500998 -0.14678 -0.70166498 0.12879901 0.05091 -0.67852801 0.23661201 -0.069121003\n\t\t -0.68775803 0.2942 -0.11711 -0.68079501 0.332468 -0.127933 -0.63350999 0.16418 -0.117022\n\t\t -0.633605 0.172251 -0.071965002 -0.57716399 0.430179 -0.188528 -0.61663997 0.43031299 -0.134395\n\t\t -0.57726002 0.43825001 -0.151204 -0.65768701 0.39770001 -0.15145101 -0.75951499 0.240955 0.049167\n\t\t -0.65390998 0.050565999 -0.012057 -0.64868498 0.047366001 0.097837999 -0.66334301 0.044165999 0.20773301\n\t\t -0.48596999 0.33927599 -0.23121201 -0.52915299 0.345222 -0.22453301 -0.54278499 0.34767199 -0.221753\n\t\t -0.419462 0.401476 -0.29631701 -0.46132299 0.43049201 -0.30763301 -0.46232799 0.40514699 -0.30165601\n\t\t -0.44301799 0.45068201 -0.310875 -0.47975901 0.453668 -0.315065 -0.48898599 0.444291 -0.31385499\n\t\t -0.51401502 0.350995 -0.29336599 -0.48605999 0.34720099 -0.288638 -0.458105 0.34340701 -0.28391099\n\t\t -0.40913501 0.0070270002 0.81068498 -0.484476 0.0070389998 0.732283 -0.43458301 0.040252998 0.832717\n\t\t -0.266541 0.007005 0.95021999 -0.242631 -0.0022090001 0.92365801 -0.20375501 0.006997 1.0014200211\n\t\t -0.1831 -0.0022169999 0.97434098 -0.37970999 -0.0021869999 0.785209 -0.221617 0.040224001 1.024839044\n\t\t -0.099991001 0.0069949999 1.050133944 -0.45213601 -0.002175 0.70738 0.002482 0.0069949999 1.062116981\n\t\t -0.089169003 -0.0022189999 1.021981001 -0.52912402 0.10008 0.75325602 -0.51244301 0.040265001 0.75382\n\t\t 0.002482 0.101028 1.12104905 0.002482 0.040220998 1.087185979 -0.593925 0.355919 -0.12696899\n\t\t -0.68089098 0.340538 -0.090608999 -0.68989599 0.253407 -0.068510003 -0.648601 0.19373401 -0.071015999\n\t\t -0.68785298 0.30227101 -0.079786003 -0.65778297 0.40577 -0.116752 -0.67392898 0.37880501 -0.101431\n\t\t -0.72480202 0.188344 0.131332 -0.69955897 0.133707 0.069857001 -0.69741702 0.129355 0.070164002\n\t\t -0.70992303 0.123215 0.075021997 -0.69943202 0.124654 0.050547 -0.73231101 0.162494 0.075328\n\t\t -0.72560602 0.178745 0.073356003 -0.72499502 0.189165 0.13220599 -0.726403 0.19651 0.14027099\n\t\t -0.69150102 0.109403 0.109066 -0.71481103 0.128721 0.069239996 -0.71790397 0.132607 0.068958998\n\t\t -0.71345699 0.162009 0.075841002 -0.71545303 0.16627701 0.077806003 -0.73401499 0.166758 0.077288002\n\t\t -0.73420399 0.17231999 0.084894001 -0.71795499 0.17187101 0.085450999 -0.69092298 0.108381 0.109414\n\t\t -0.69505501 0.123332 0.076375 -0.091472 0.800219 0.59267801 -0.53678799 0.46710801 -0.21394099\n\t\t -0.532857 0.47008899 -0.216575 -0.61040801 0.45464599 -0.174991 -0.610726 0.447272 -0.17840999\n\t\t -0.69541502 0.41407499 -0.138541 -0.70042998 0.417945 -0.131529 -0.70742297 0.380629 -0.123937\n\t\t -0.72151297 0.33707899 -0.104063 -0.73012298 0.29058701 -0.091508999 -0.73754102 0.237905 -0.078382999\n\t\t -0.71528798 0.191412 -0.081987001 -0.66816199 0.103332 -0.095618002 -0.67027801 0.098214999 -0.089139\n\t\t -0.64738899 0.052336 -0.092681997 0.48471901 -0.46986899 0.38022301 0.51104301 -0.45303199 0.451974\n\t\t 0.461445 -0.46488699 0.38810399 0.53250098 -0.458222 0.440575 0.56259602 -0.45471099 0.47692201\n\t\t 0.54186702 -0.44929701 0.48943001 0.593422 -0.45583701 0.51467502 0.572932 -0.45007899 0.527542\n\t\t 0.61023498 -0.470438 0.50313997 0.57970798 -0.468979 0.466021 0.55036902 -0.47224101 0.430953\n\t\t 0.50439698 -0.48359099 0.37405899 0.56172502 -0.49327201 0.424676 0.517277 -0.50428098 0.37064001\n\t\t 0.59039903 -0.49024701 0.45848501 0.62061 -0.49197701 0.49478599 0.62325299 -0.51696903 0.49072999\n\t\t 0.59332597 -0.51506799 0.45530599 0.56513 -0.51790202 0.42254701;\n\tsetAttr \".vt[6640:6805]\" 0.52170497 -0.52857703 0.37036601 0.55972999 -0.542454 0.42506799\n\t\t 0.51664603 -0.55285501 0.373411 0.58771598 -0.53973198 0.457156 0.61743599 -0.54167199 0.49178201\n\t\t 0.60435998 -0.562415 0.49758101 0.57474297 -0.56056702 0.46356201 0.54667699 -0.56326902 0.43167999\n\t\t 0.50322998 -0.573493 0.37918901 0.52768499 -0.57695901 0.441524 0.48319599 -0.58713698 0.386915\n\t\t 0.55611902 -0.57417798 0.47371501 0.58575797 -0.57581198 0.50742298 0.564623 -0.58015501 0.51968002\n\t\t 0.50582099 -0.581765 0.45300299 0.63351899 -0.57102102 0.53252298 0.64696598 -0.55053198 0.52771801\n\t\t 0.652969 -0.52590197 0.52748603 0.65028799 -0.50078601 0.53205001 0.63966602 -0.47895101 0.54054201\n\t\t 0.622428 -0.46392101 0.55180198 0.60140401 -0.45767099 0.56404197 0.64793801 -0.47573 0.588727\n\t\t 0.62596297 -0.46897301 0.59941101 0.66827899 -0.488031 0.625875 0.64528799 -0.48088801 0.63413\n\t\t 0.68177497 -0.49759001 0.66367102 0.65805697 -0.49031699 0.66868001 0.70130199 -0.513327 0.65899301\n\t\t 0.687208 -0.50374401 0.618011 0.66599298 -0.49116901 0.57867998 0.677163 -0.51324898 0.57085502\n\t\t 0.69896698 -0.52593899 0.61177498 0.71343201 -0.53543001 0.65538698 0.71664798 -0.56035203 0.65334803\n\t\t 0.70208502 -0.55104798 0.608033 0.68005198 -0.53841299 0.566333 0.67387402 -0.56288201 0.56595099\n\t\t 0.69572401 -0.575293 0.60746902 0.71008402 -0.58433801 0.65325701 0.69510502 -0.60384601 0.65505201\n\t\t 0.68120497 -0.59509099 0.61004102 0.65990502 -0.583031 0.56960398 0.63999802 -0.59555501 0.57688898\n\t\t 0.61440903 -0.58401799 0.54134202 0.66044998 -0.60718298 0.61548001 0.67369199 -0.61566401 0.65853\n\t\t 0.64929199 -0.61833102 0.66310602 0.63679898 -0.61007202 0.622859 0.61735398 -0.59888601 0.586577\n\t\t 0.59271097 -0.58787799 0.55270201 0.57168698 -0.58162802 0.564942 0.59537899 -0.59212899 0.59726101\n\t\t 0.61380798 -0.602929 0.63111401 0.65307802 -0.62055701 0.70887399 0.67764801 -0.617755 0.70745599\n\t\t 0.69928902 -0.60594302 0.70585197 0.71451902 -0.586586 0.70430303 0.72132099 -0.56286901 0.70303798\n\t\t 0.71828997 -0.538297 0.70226598 0.70626801 -0.51656801 0.70208102 0.68675202 -0.50117397 0.70253801\n\t\t 0.66294903 -0.49416199 0.70354199 0.68418401 -0.49869001 0.74109602 0.66084898 -0.49232799 0.737737\n\t\t 0.67504501 -0.49004599 0.777964 0.65264398 -0.48472199 0.77028602 0.66030902 -0.47514701 0.81176102\n\t\t 0.63921899 -0.471248 0.80021203 0.67669898 -0.486974 0.82531703 0.692936 -0.503519 0.78710997\n\t\t 0.70313603 -0.51334101 0.74540901 0.71458399 -0.53434598 0.75004703 0.70335603 -0.52338302 0.79636598\n\t\t 0.68564898 -0.505216 0.838857 0.68611699 -0.52689898 0.850362 0.70504302 -0.54642397 0.80434501\n\t\t 0.71711498 -0.55831999 0.75430399 0.70997101 -0.58166301 0.75750297 0.69737899 -0.56919199 0.80975699\n\t\t 0.677683 -0.54879701 0.85796201 0.661955 -0.567635 0.86067599 0.68187398 -0.58830303 0.81189501\n\t\t 0.69459802 -0.60091698 0.75920999 0.67304701 -0.61292499 0.75909698 0.66061401 -0.60063899 0.81029302\n\t\t 0.641078 -0.58036298 0.85788399 0.61836803 -0.58532101 0.85021698 0.63699901 -0.60462499 0.80533701\n\t\t 0.64877498 -0.61618 0.75725299 0.61459899 -0.59930098 0.79765999 0.62544101 -0.60981798 0.75389397\n\t\t 0.59727699 -0.58142197 0.83866799 0.593499 -0.55769598 0.88898498 0.615165 -0.55156398 0.89870799\n\t\t 0.63568401 -0.53844899 0.90232199 0.65182298 -0.52010202 0.89901501 0.66134697 -0.49946499 0.88955402\n\t\t 0.66250497 -0.47964901 0.87515599 0.65545398 -0.46357799 0.85816199 0.640953 -0.45390201 0.84110701\n\t\t 0.62145799 -0.451812 0.82653499 0.61750102 -0.42684001 0.86555898 0.59986401 -0.42691499 0.848719\n\t\t 0.590482 -0.39448899 0.88467801 0.57493901 -0.39705801 0.86622697 0.56042099 -0.35737699 0.898022\n\t\t 0.54718602 -0.362739 0.87852198 0.567487 -0.358208 0.92094398 0.60026699 -0.39860401 0.90633398\n\t\t 0.62978297 -0.433925 0.885288 0.63458198 -0.447364 0.90495902 0.602539 -0.40903899 0.92796397\n\t\t 0.56703299 -0.36535501 0.94386899 0.55942303 -0.377505 0.96337599 0.597256 -0.42398801 0.94634199\n\t\t 0.63147801 -0.46490201 0.92164099 0.62062901 -0.48398301 0.93261999 0.58492702 -0.441315 0.95848\n\t\t 0.545546 -0.392975 0.97629797 0.52771902 -0.409327 0.98096502 0.56766897 -0.458341 0.96281397\n\t\t 0.603957 -0.50169998 0.93648303 0.58381301 -0.51524502 0.932338 0.547961 -0.47240901 0.95835\n\t\t 0.50854802 -0.42405701 0.97631401 0.49094599 -0.43503299 0.96340501 0.52883899 -0.481538 0.94610101\n\t\t 0.56334001 -0.52276301 0.92111999 0.51329702 -0.48410699 0.92764997 0.450607 -0.38426301 0.97251302\n\t\t 0.46651101 -0.37119401 0.98580301 0.48500201 -0.35561299 0.99058902 0.50331497 -0.33983901 0.98577702\n\t\t 0.51872599 -0.326231 0.97246403 0.52872199 -0.316991 0.95236897 0.53202403 -0.31332701 0.928756\n\t\t 0.52784699 -0.316035 0.90514898 0.51710701 -0.32446 0.885068 0.49393699 -0.27322 0.904275\n\t\t 0.48576701 -0.284785 0.88419098 0.459869 -0.231693 0.89361501 0.45423099 -0.24627601 0.87421602\n\t\t 0.42682201 -0.194212 0.87138498 0.42356399 -0.21149801 0.85347003 0.42245999 -0.181407 0.89247102\n\t\t 0.45821899 -0.221964 0.91641402 0.49517101 -0.26692501 0.92787802 0.488994 -0.26709101 0.95147902\n\t\t 0.449238 -0.218799 0.93921202 0.41084301 -0.175256 0.91358203 0.393989 -0.176415 0.93156999\n\t\t 0.43455401 -0.22241101 0.95860797 0.47661799 -0.27344099 0.97155702 0.459712 -0.28524199 0.984851\n\t\t 0.41621399 -0.232518 0.97145098 0.3743 -0.185003 0.94351202 0.35482699 -0.19944701 0.94786501\n\t\t 0.397098 -0.247356 0.97608203 0.44097599 -0.30051801 0.98964298 0.42324501 -0.31703901 0.98484099\n\t\t 0.38014299 -0.264815 0.97144598 0.33860099 -0.21774399 0.94364101 0.32791501 -0.237011 0.93181002\n\t\t 0.36779299 -0.28218701 0.95859998 0.40912399 -0.33229199 0.97153902;\n\tsetAttr \".vt[6806:6971]\" 0.40095401 -0.34385699 0.951455 0.36215499 -0.29677001 0.939201\n\t\t 0.29078799 -0.19983099 0.88928503 0.30001101 -0.17904601 0.89944702 0.31561801 -0.160108 0.902946\n\t\t 0.335448 -0.146033 0.89896601 0.35637599 -0.13872901 0.888394 0.37519699 -0.139608 0.87260199\n\t\t 0.38918701 -0.14821699 0.85415202 0.39597401 -0.163536 0.83579898 0.39482999 -0.18301401 0.820279\n\t\t 0.368496 -0.13924301 0.79098397 0.36916101 -0.160441 0.778386 0.34556201 -0.120911 0.74106401\n\t\t 0.34768799 -0.14339601 0.73153299 0.318012 -0.100442 0.64241099 0.321854 -0.124353 0.637927\n\t\t 0.30545101 -0.079965003 0.64800698 0.334997 -0.102105 0.75256598 0.359624 -0.121936 0.80600297\n\t\t 0.343584 -0.111368 0.82120699 0.31728601 -0.090051003 0.76433301 0.28576499 -0.066243999 0.653889\n\t\t 0.26217201 -0.061057001 0.65916902 0.29535401 -0.086280003 0.77460003 0.323053 -0.108851 0.83432299\n\t\t 0.301034 -0.115104 0.84322798 0.27243301 -0.091716997 0.781712 0.23817401 -0.065562002 0.66300303\n\t\t 0.21736801 -0.078704 0.66487497 0.25198099 -0.105189 0.78473002 0.280871 -0.128851 0.84675801\n\t\t 0.265771 -0.14826199 0.84414601 0.237277 -0.124933 0.78301901 0.203116 -0.098797001 0.664415\n\t\t 0.19728599 -0.122568 0.66178298 0.230286 -0.147756 0.77702099 0.25778699 -0.17022 0.83602297\n\t\t 0.25845101 -0.19141901 0.82342398 0.194576 -0.092262 0.558047 0.20871501 -0.072082996 0.55810601\n\t\t 0.229609 -0.059023 0.55747002 0.20871501 -0.072082996 0.506244 0.229609 -0.059023 0.50624001\n\t\t 0.253876 -0.054752 0.556261 0.27788499 -0.060292002 0.55464202 0.253876 -0.054752 0.50623399\n\t\t 0.27788499 -0.060292002 0.50622499 0.29806501 -0.074431002 0.55287099 0.311124 -0.095325001 0.55121797\n\t\t 0.29806501 -0.074429996 0.50621498 0.311124 -0.095325001 0.50620598 0.31539601 -0.119592 0.54992503\n\t\t 0.31539601 -0.119592 0.506199 0.309856 -0.143601 0.54920602 0.309856 -0.143601 0.50619501\n\t\t 0.295717 -0.16378 0.54914701 0.301772 -0.168217 0.63483298 0.274822 -0.17684001 0.54978299\n\t\t 0.295717 -0.16378 0.50619501 0.274822 -0.17684001 0.50619799 0.25055599 -0.18111099 0.55099303\n\t\t 0.256969 -0.185863 0.64054 0.226547 -0.17557099 0.55261201 0.25055599 -0.18111099 0.50620502\n\t\t 0.226547 -0.17557099 0.50621402 0.206367 -0.161432 0.55438203 0.213689 -0.16695499 0.65170199\n\t\t 0.206367 -0.161432 0.50622302 0.20112801 -0.146479 0.65729702 0.232412 -0.170241 0.76749003\n\t\t 0.24297699 -0.189046 0.755988 0.26732299 -0.208726 0.808406 0.289644 -0.219309 0.87376499\n\t\t 0.29643101 -0.23462801 0.85541201 0.32465601 -0.254298 0.91389501 0.329018 -0.26710299 0.89280897\n\t\t 0.363805 -0.306499 0.91640198 0.39972001 -0.35015199 0.92785197 0.439868 -0.39268801 0.95243299\n\t\t 0.43568999 -0.39539599 0.92882502 0.47771099 -0.440395 0.94390601 0.47064501 -0.43956399 0.92098403\n\t\t 0.50351101 -0.47999099 0.90599298 0.54570198 -0.52283901 0.90428001 0.53342003 -0.51575398 0.88455099\n\t\t 0.55950201 -0.54593003 0.85735798 0.58088797 -0.56959599 0.82511199 0.59670699 -0.58582801 0.788513\n\t\t 0.60648799 -0.59516698 0.74958098 0.62927502 -0.613545 0.70987701 0.60975897 -0.59815198 0.710334\n\t\t 0.62557298 -0.611058 0.66811597 0.60604697 -0.59532201 0.67279398 0.59487897 -0.58721602 0.63897902\n\t\t 0.57732397 -0.57669002 0.60730898 0.55444801 -0.56659901 0.57620299 0.54413301 -0.57439703 0.532547\n\t\t 0.52732003 -0.55979699 0.54408097 0.514117 -0.57340699 0.49846101 0.53484601 -0.578821 0.485953\n\t\t 0.48436201 -0.57657403 0.46440199 0.49700499 -0.55913901 0.50936198 0.46649399 -0.56255502 0.474024\n\t\t 0.43652099 -0.58704603 0.40324 0.416843 -0.57332402 0.40940499 0.455138 -0.54152399 0.48030099\n\t\t 0.403963 -0.552634 0.412824 0.486314 -0.537871 0.51689798 0.51694399 -0.538257 0.55243498\n\t\t 0.51430202 -0.51326603 0.55649102 0.48338699 -0.51305002 0.52007598 0.45173299 -0.51689398 0.48243001\n\t\t 0.399535 -0.528337 0.41309699 0.45713401 -0.492342 0.47990799 0.404594 -0.50405902 0.410052\n\t\t 0.48899701 -0.48838601 0.51822603 0.52011901 -0.48856199 0.555439 0.53319502 -0.46781901 0.54964\n\t\t 0.50196898 -0.46755201 0.51182002 0.470186 -0.47152799 0.47329599 0.41801 -0.483421 0.40427399\n\t\t 0.489178 -0.45783699 0.46345299 0.43804401 -0.46977699 0.396548 0.52059299 -0.45394 0.50166702\n\t\t 0.55179697 -0.454422 0.53979802 0.56059599 -0.47452801 0.58422101 0.54714799 -0.49501699 0.58902597\n\t\t 0.54114598 -0.51964802 0.58925802 0.543827 -0.54476303 0.58469403 0.56615502 -0.55461103 0.61513299\n\t\t 0.58311999 -0.56502098 0.64521497 0.59391701 -0.57321799 0.67640001 0.59070098 -0.54829597 0.67843801\n\t\t 0.58000201 -0.53991199 0.648956 0.56326503 -0.52944601 0.61965501 0.569444 -0.504978 0.62003601\n\t\t 0.58636302 -0.51566702 0.64952099 0.59726501 -0.52431101 0.67852902 0.61224401 -0.50480199 0.67673498\n\t\t 0.60088199 -0.49586999 0.64694798 0.58341199 -0.484828 0.61638403 0.60332 -0.47230399 0.60909897\n\t\t 0.57970601 -0.461532 0.57540202 0.62163699 -0.48377699 0.64151001 0.63365698 -0.49298501 0.67325699\n\t\t 0.61673802 -0.50877601 0.70656401 0.60150802 -0.52813399 0.70811301 0.594706 -0.55185002 0.70937699\n\t\t 0.59773701 -0.57642299 0.71015 0.59504002 -0.57416201 0.74494302 0.58628798 -0.56596297 0.77925801\n\t\t 0.57193798 -0.55135298 0.81157202 0.57147002 -0.52967 0.80006701 0.58459997 -0.54292297 0.77127802\n\t\t 0.59250897 -0.550188 0.740686 0.59965301 -0.52684498 0.73748702 0.59226501 -0.520154 0.76586598\n\t\t 0.57990402 -0.50777203 0.79246801 0.595631 -0.488933 0.78975302 0.60777003 -0.50104302 0.76372802\n\t\t 0.615026 -0.50759101 0.73578 0.63657802 -0.495583 0.73589301 0.63837898 -0.49696401 0.70495999\n\t\t 0.62902898 -0.48870799 0.76533002 0.61650902 -0.476206 0.79254597;\n\tsetAttr \".vt[6972:7137]\" 0.57927197 -0.47105801 0.81319898 0.563133 -0.48940599 0.81650501\n\t\t 0.55360901 -0.51004303 0.825966 0.55245101 -0.52985901 0.84036499 0.52862102 -0.50231498 0.86488003\n\t\t 0.501239 -0.469556 0.88436401 0.47109899 -0.43241701 0.89806002 0.47870901 -0.42026699 0.87855101\n\t\t 0.506522 -0.45460701 0.86598599 0.53172499 -0.484777 0.84819901 0.542575 -0.46569601 0.837219\n\t\t 0.51885098 -0.43728 0.85384798 0.49258599 -0.40479699 0.86562997 0.51041299 -0.38844499 0.86096299\n\t\t 0.53610897 -0.42025501 0.84951401 0.559246 -0.447979 0.83335602 0.57938999 -0.43443301 0.83750099\n\t\t 0.59979099 -0.45794401 0.81681299 0.55581701 -0.40618601 0.85397798 0.52958399 -0.37371501 0.865614\n\t\t 0.48271301 -0.353109 0.86699301 0.46439999 -0.368884 0.87180501 0.448989 -0.38249201 0.88511699\n\t\t 0.43899301 -0.39173099 0.905213 0.40589699 -0.34998599 0.90425098 0.372787 -0.30966499 0.89360398\n\t\t 0.34063599 -0.27325299 0.87169701 0.35749 -0.27209401 0.85371 0.38747001 -0.306052 0.87420702\n\t\t 0.418273 -0.34363601 0.88417298 0.435179 -0.331835 0.87088001 0.40581 -0.29594499 0.86136502\n\t\t 0.37717801 -0.263506 0.84176803 0.39665201 -0.249062 0.83741498 0.42492601 -0.28110701 0.85673398\n\t\t 0.453915 -0.31656 0.86608797 0.47164601 -0.30003801 0.87089002 0.50120401 -0.337529 0.87177801\n\t\t 0.441881 -0.263648 0.86137003 0.41287801 -0.230766 0.84163803 0.36999899 -0.222737 0.80661798\n\t\t 0.350169 -0.236812 0.81059802 0.32924101 -0.24411599 0.82116997 0.31042001 -0.243237 0.83696198\n\t\t 0.28336301 -0.219294 0.79320198 0.26068801 -0.20110101 0.74422097 0.233375 -0.180677 0.64582002\n\t\t 0.28262001 -0.204872 0.73395401 0.30389401 -0.221811 0.78008598 0.32591301 -0.21555699 0.77118099\n\t\t 0.30554101 -0.199434 0.726843 0.28096601 -0.18135899 0.63670599 0.32599199 -0.18596201 0.72382498\n\t\t 0.346077 -0.201811 0.76765102 0.361177 -0.182399 0.77026302 0.385607 -0.20379899 0.81011701\n\t\t 0.34069699 -0.166219 0.72553498 0.31602401 -0.14812399 0.63529402 0.57400399 -0.55560601 0.87441403\n\t\t 0.194576 -0.092262 0.506244 0.189036 -0.116271 0.50624001 0.189036 -0.116271 0.55732799\n\t\t 0.193308 -0.14053801 0.50623202 0.193308 -0.14053801 0.55603498 0.46374601 -0.47568899 0.333033\n\t\t 0.43959999 -0.470781 0.321978 0.46374601 -0.47568899 0.321978 0.43959999 -0.470781 0.33502799\n\t\t 0.46584299 -0.47510701 0.345373 0.44178399 -0.47019199 0.34935299 0.486301 -0.488722 0.342426\n\t\t 0.48429 -0.48929301 0.33157599 0.48429 -0.48929301 0.321978 0.49789399 -0.50983697 0.33090499\n\t\t 0.49789399 -0.50983697 0.321978 0.499832 -0.50928098 0.34100899 0.50469202 -0.53344202 0.34127501\n\t\t 0.502801 -0.53398299 0.33108801 0.502801 -0.53398299 0.321978 0.49789399 -0.55812901 0.332133\n\t\t 0.49789399 -0.55812901 0.32197699 0.499769 -0.55760199 0.34325099 0.486184 -0.57815498 0.34657499\n\t\t 0.48429 -0.57867301 0.33384901 0.48429 -0.57867301 0.32197699 0.46374601 -0.59227699 0.335998\n\t\t 0.46374601 -0.59227699 0.321978 0.465691 -0.59176302 0.350786 0.43959999 -0.59718502 0.33824301\n\t\t 0.43959999 -0.59718502 0.321978 0.41545299 -0.59227699 0.34023699 0.41545299 -0.59227699 0.321978\n\t\t 0.39490899 -0.57867301 0.341694 0.397102 -0.57813799 0.362149 0.44161901 -0.59666902 0.355221\n\t\t 0.39490899 -0.57867301 0.32197699 0.38130501 -0.55812901 0.34236601 0.38130501 -0.55812901 0.32197699\n\t\t 0.383571 -0.55757999 0.36356601 0.37871099 -0.533418 0.3633 0.376398 -0.53398299 0.34218299\n\t\t 0.376398 -0.53398299 0.321978 0.38130501 -0.50983697 0.34113801 0.38130501 -0.50983697 0.321978\n\t\t 0.383634 -0.50925899 0.36132401 0.397219 -0.48870501 0.35800001 0.39490899 -0.48929301 0.33942199\n\t\t 0.39490899 -0.48929301 0.321978 0.41545299 -0.47568899 0.337273 0.41545299 -0.47568899 0.321978\n\t\t 0.417712 -0.47509801 0.353789 0.459795 -0.59202802 0.39535901 0.41756001 -0.59175402 0.35920101\n\t\t 0.26398399 -0.49650401 0.14216299 0.253847 -0.49595201 0.17404801 0.24541 -0.492511 0.147578\n\t\t 0.2719 -0.50002998 0.16704801 0.27872601 -0.50486201 0.182832 0.26108399 -0.50069302 0.19045199\n\t\t 0.28811601 -0.51304799 0.201726 0.27097699 -0.50872201 0.20996299 0.30200601 -0.52397299 0.194738\n\t\t 0.29325899 -0.51563799 0.17669 0.28690699 -0.51069701 0.161634 0.279551 -0.50704497 0.138184\n\t\t 0.29652399 -0.52640003 0.15865199 0.28968099 -0.52260399 0.136255 0.30239201 -0.53146499 0.172993\n\t\t 0.31042999 -0.53993899 0.1901 0.31246001 -0.55847698 0.18838701 0.30510899 -0.54993498 0.172158\n\t\t 0.29967701 -0.54477698 0.158407 0.293226 -0.54085201 0.136538 0.29572701 -0.56330299 0.16102199\n\t\t 0.289478 -0.559295 0.139053 0.30083299 -0.56847101 0.17440701 0.30761299 -0.57695001 0.189963\n\t\t 0.29678801 -0.59264398 0.194483 0.290337 -0.58434999 0.179326 0.28536901 -0.57925802 0.16605499\n\t\t 0.27909601 -0.57522303 0.14341199 0.26975399 -0.590065 0.172892 0.26320899 -0.58605999 0.149095\n\t\t 0.274831 -0.59500998 0.18630899 0.28130201 -0.60302597 0.201387 0.263625 -0.60671502 0.209554\n\t\t 0.28680301 -0.55846202 0.120244 0.290537 -0.53998101 0.118747 0.289675 -0.540236 0.099657997\n\t\t 0.28589299 -0.521631 0.099657997 0.28683099 -0.521626 0.118475 0.27541199 -0.50580198 0.099657997\n\t\t 0.276465 -0.50599402 0.119436 0.25958201 -0.49532101 0.099657997 0.260683 -0.49550101 0.12156\n\t\t 0.24198601 -0.491604 0.124522 0.240978 -0.491539 0.099657997 0.28589299 -0.55884099 0.099657997\n\t\t 0.22310901 -0.495298 0.12793 0.226511 -0.496151 0.15369999 0.235355 -0.499567 0.181657\n\t\t 0.210235 -0.506639 0.15954299 0.219321 -0.51008898 0.188666 0.19935 -0.52265102 0.164133\n\t\t 0.20847601 -0.52618802 0.193902 0.195288 -0.54151702 0.166811;\n\tsetAttr \".vt[7138:7303]\" 0.204257 -0.54516399 0.196632 0.198965 -0.56034499 0.167068\n\t\t 0.207592 -0.56409502 0.196319 0.20951299 -0.57628697 0.16497201 0.217657 -0.58012098 0.193157\n\t\t 0.225554 -0.58670902 0.160769 0.233123 -0.59060502 0.187548 0.25141501 -0.59419501 0.18044101\n\t\t 0.22407299 -0.58471602 0.20819101 0.23900101 -0.595272 0.201905 0.256816 -0.598979 0.194234\n\t\t 0.232201 -0.59214598 0.224831 0.214513 -0.56865299 0.212056 0.223378 -0.57605797 0.22961199\n\t\t 0.2211 -0.55716503 0.231446 0.211583 -0.54971302 0.21298499 0.216058 -0.53075403 0.210676\n\t\t 0.226052 -0.53830802 0.229883 0.237211 -0.52239001 0.225283 0.22697601 -0.51469302 0.205605\n\t\t 0.242883 -0.50423098 0.19846299 0.25307399 -0.51209199 0.218243 0.23875999 -0.54969501 0.25240299\n\t\t 0.23302899 -0.56833303 0.25288001 0.234345 -0.587107 0.249799 0.24215201 -0.60320002 0.243815\n\t\t 0.25588599 -0.619201 0.265129 0.26822901 -0.63014799 0.25604099 0.275365 -0.641473 0.28875801\n\t\t 0.302551 -0.671336 0.31469199 0.33940601 -0.71011502 0.34291601 0.351136 -0.72079301 0.33093199\n\t\t 0.38039899 -0.75186598 0.37361401 0.420001 -0.79064602 0.40697199 0.43333101 -0.800668 0.39547399\n\t\t 0.45268399 -0.820512 0.44317001 0.33360401 -0.69462103 0.35398099 0.29704201 -0.65555602 0.324707\n\t\t 0.37389299 -0.73668402 0.385106 0.412655 -0.77572203 0.41788 0.44464001 -0.80571502 0.45209599\n\t\t 0.443299 -0.78853899 0.45930299 0.411973 -0.758452 0.42661399 0.37399501 -0.71919698 0.39416701\n\t\t 0.33435199 -0.67684603 0.36248499 0.29803199 -0.63747299 0.332086 0.341793 -0.65948898 0.36697599\n\t\t 0.30569699 -0.61981201 0.33552301 0.380862 -0.70209002 0.399297 0.41814601 -0.74151897 0.43176401\n\t\t 0.448892 -0.77168298 0.463662 0.460361 -0.75730097 0.46474001 0.43004 -0.72715998 0.432809\n\t\t 0.39324799 -0.68772101 0.399957 0.35458201 -0.64504498 0.366974 0.318643 -0.60519397 0.33465299\n\t\t 0.37099299 -0.63579702 0.36232099 0.33508199 -0.59602797 0.32943299 0.40953299 -0.67825103 0.39592201\n\t\t 0.44615 -0.71742898 0.429499 0.476289 -0.74736899 0.46231401 0.49435899 -0.74333102 0.456734\n\t\t 0.464084 -0.71372402 0.42234999 0.51205403 -0.74626398 0.44857499 0.481278 -0.71705401 0.412157\n\t\t 0.427248 -0.675008 0.38786501 0.44378701 -0.678895 0.37674999 0.388482 -0.632999 0.35383001\n\t\t 0.40441 -0.63744402 0.34259501 0.35241601 -0.59351301 0.32079801 0.36797401 -0.59836 0.30993399\n\t\t 0.52654397 -0.75559199 0.43920001 0.49501801 -0.72675002 0.40060601 0.456588 -0.68912101 0.36440101\n\t\t 0.41635999 -0.64821702 0.33044201 0.37944099 -0.60955 0.29858199 0.42220399 -0.663912 0.31927601\n\t\t 0.38481101 -0.62558502 0.288528 0.463346 -0.70439702 0.35275599 0.50282001 -0.741638 0.38951299\n\t\t 0.53520697 -0.77023 0.43009201 0.53696197 -0.78767502 0.42263499 0.50374901 -0.75918198 0.38056099\n\t\t 0.46329701 -0.72214198 0.34357199 0.421325 -0.681903 0.31076699 0.38354999 -0.643812 0.281248\n\t\t 0.41362301 -0.69939601 0.306371 0.37562901 -0.66142499 0.27800199 0.45620301 -0.73958898 0.33840901\n\t\t 0.497408 -0.77664697 0.37526399 0.53127497 -0.80520803 0.418082 0.519337 -0.82019198 0.41698101\n\t\t 0.48509499 -0.79141903 0.37423399 0.443483 -0.75414401 0.33782801 0.400608 -0.71380401 0.30651501\n\t\t 0.36257601 -0.67583197 0.279048 0.38416201 -0.72279203 0.311295 0.34627801 -0.684699 0.284327\n\t\t 0.42695501 -0.76344597 0.34204999 0.468539 -0.80110002 0.377767 0.50279498 -0.83018899 0.419624\n\t\t 0.48431399 -0.83386302 0.42548901 0.45036799 -0.80444199 0.38517299 0.40919799 -0.76635802 0.35026601\n\t\t 0.36681101 -0.72531599 0.31981799 0.329216 -0.68702501 0.29288101 0.39287499 -0.76220399 0.36138001\n\t\t 0.46670899 -0.83034801 0.43380699 0.50502598 -0.84890997 0.47216299 0.52360201 -0.84515202 0.46879801\n\t\t 0.54009998 -0.83502799 0.467316 0.55184197 -0.81991398 0.468009 0.55721903 -0.80227399 0.47069201\n\t\t 0.55509001 -0.78477001 0.47503901 0.54606199 -0.77013397 0.48032799 0.53128803 -0.76086497 0.48576301\n\t\t 0.51344502 -0.758012 0.490466 0.53958499 -0.76235998 0.52258801 0.52193302 -0.759489 0.52303499\n\t\t 0.53754902 -0.752249 0.557917 0.520419 -0.74948299 0.553931 0.52578598 -0.73203301 0.590617\n\t\t 0.50949401 -0.72971499 0.582645 0.53878897 -0.74051398 0.60005599 0.55156201 -0.76133901 0.56264198\n\t\t 0.55419397 -0.771631 0.52210402 0.56310898 -0.78627902 0.521703 0.55990499 -0.77577502 0.56743199\n\t\t 0.54611897 -0.75427699 0.609577 0.54683602 -0.77097702 0.61768198 0.56149602 -0.79309797 0.57152498\n\t\t 0.56517702 -0.80380601 0.52142602 0.55978698 -0.82147598 0.521299 0.55578798 -0.81060898 0.57420403\n\t\t 0.54052198 -0.78802502 0.62297899 0.52844203 -0.80282599 0.62478399 0.54396099 -0.82565498 0.57512498\n\t\t 0.548078 -0.83661902 0.52133298 0.53165698 -0.84675598 0.52153403 0.52765602 -0.835769 0.57407999\n\t\t 0.51229203 -0.812958 0.62268198 0.49467701 -0.81704003 0.61714101 0.50951499 -0.83957601 0.57130802\n\t\t 0.51319599 -0.85050702 0.52187598 0.469372 -0.78382099 0.65605402 0.48626199 -0.779091 0.66358602\n\t\t 0.502213 -0.76882398 0.666403 0.51466799 -0.75443602 0.66387701 0.52185398 -0.73826998 0.65658998\n\t\t 0.52239102 -0.72280502 0.64548498 0.51649803 -0.71041298 0.63246202 0.50490099 -0.70321399 0.61955398\n\t\t 0.48975399 -0.70190501 0.60866803 0.477034 -0.66754699 0.64406103 0.46329299 -0.66772902 0.63114101\n\t\t 0.44432801 -0.62678802 0.66346902 0.432208 -0.62886298 0.64920801 0.40892401 -0.58269399 0.67711103\n\t\t 0.39859501 -0.586981 0.66201299 0.414648 -0.58311898 0.69508398 0.452214 -0.629848 0.68042898\n\t\t 0.486902 -0.67290199 0.65940398 0.49101901 -0.68335801 0.674905 0.454301 -0.63793701 0.69758397\n\t\t 0.414536 -0.58854097 0.71327001 0.408804 -0.59794497 0.72884798;\n\tsetAttr \".vt[7304:7469]\" 0.45045599 -0.64962298 0.71226901 0.488933 -0.69710797 0.68814999\n\t\t 0.48067901 -0.71207899 0.696886 0.441006 -0.66318703 0.72199202 0.39810401 -0.60999602 0.73918301\n\t\t 0.38426399 -0.62275398 0.74292099 0.427623 -0.67649001 0.725483 0.46777299 -0.72594702 0.699974\n\t\t 0.452084 -0.73647499 0.69670099 0.41227499 -0.68741798 0.72193801 0.369351 -0.63422501 0.73920602\n\t\t 0.35568199 -0.64271301 0.72888303 0.39737201 -0.69439298 0.71216601 0.43610299 -0.74218398 0.68781\n\t\t 0.38529399 -0.69613898 0.69744301 0.31353399 -0.58940798 0.73772299 0.325831 -0.57920402 0.74841303\n\t\t 0.34019601 -0.56703299 0.75227797 0.354424 -0.55474001 0.74844497 0.36636001 -0.544204 0.73779303\n\t\t 0.37402201 -0.53717101 0.72171098 0.37641701 -0.53458101 0.702914 0.37296301 -0.53702003 0.68431699\n\t\t 0.36454999 -0.54375899 0.668697 0.33714399 -0.49185601 0.683348 0.33069399 -0.50111097 0.66763502\n\t\t 0.302167 -0.449292 0.67246097 0.29764801 -0.46094799 0.65719903 0.268729 -0.41141599 0.64991599\n\t\t 0.26603201 -0.425183 0.63576102 0.26553899 -0.40088201 0.66680801 0.301083 -0.44118699 0.690642\n\t\t 0.33830199 -0.48651201 0.70205498 0.33361501 -0.48626301 0.72093499 0.29416999 -0.43824899 0.70897102\n\t\t 0.25654399 -0.395567 0.68384802 0.243378 -0.39607701 0.69839102 0.282736 -0.44072399 0.724608\n\t\t 0.32403401 -0.49094799 0.73706102 0.31089601 -0.500018 0.74771202 0.26844701 -0.44842499 0.73491597\n\t\t 0.228008 -0.40255699 0.70798898 0.212845 -0.413775 0.71140802 0.25357601 -0.45996299 0.73856598\n\t\t 0.29633 -0.51190901 0.751508 0.282574 -0.52485198 0.74757999 0.240437 -0.473667 0.73472798\n\t\t 0.20028 -0.42814499 0.70787698 0.192151 -0.44336599 0.69816297 0.230988 -0.48737299 0.72424299\n\t\t 0.271709 -0.53684002 0.73680198 0.15597899 -0.40718299 0.65668398 0.16296101 -0.39078501 0.66504502\n\t\t 0.17504799 -0.37592399 0.667988 0.19050699 -0.365013 0.664864 0.20686901 -0.35955501 0.65636897\n\t\t 0.22159199 -0.36065099 0.64359403 0.23245101 -0.36787501 0.62869 0.23753101 -0.38032001 0.61397099\n\t\t 0.236469 -0.39572901 0.60169297 0.209741 -0.35559899 0.56884998 0.21009199 -0.372242 0.5589\n\t\t 0.186533 -0.33685401 0.51877803 0.188035 -0.354379 0.51128399 0.158539 -0.31568199 0.420672\n\t\t 0.161422 -0.334149 0.417198 0.148917 -0.299685 0.42505401 0.17849401 -0.32192501 0.52793598\n\t\t 0.203031 -0.341708 0.580872 0.190571 -0.333009 0.59313202 0.164738 -0.31214899 0.53738201\n\t\t 0.13365801 -0.288807 0.42971101 0.115286 -0.284536 0.43391299 0.14759099 -0.30884901 0.54564297\n\t\t 0.17450701 -0.33064801 0.603724 0.157278 -0.33528101 0.61087102 0.129657 -0.312852 0.55133599\n\t\t 0.096574001 -0.287866 0.43696299 0.080366999 -0.29799101 0.43844599 0.113688 -0.323255 0.55371398\n\t\t 0.141542 -0.34591699 0.613644 0.129843 -0.36111701 0.61144102 0.102288 -0.33867401 0.55227101\n\t\t 0.069325 -0.313595 0.438063 0.097023003 -0.356572 0.54735899 0.12382 -0.37839499 0.60476297\n\t\t 0.124689 -0.39510199 0.59445202 0.061232999 -0.307385 0.334685 0.072152004 -0.29179299 0.334732\n\t\t 0.088320002 -0.28173199 0.33422899 0.072228998 -0.29187199 0.28356299 0.088331997 -0.28180701 0.28356299\n\t\t 0.107105 -0.27849099 0.33327299 0.125679 -0.282859 0.33199799 0.107035 -0.278514 0.28356299\n\t\t 0.12554 -0.28278399 0.28356299 0.141265 -0.29385799 0.330614 0.15131199 -0.31002599 0.329339\n\t\t 0.141093 -0.293681 0.28356299 0.151159 -0.309784 0.28356299 0.154578 -0.328729 0.32835099\n\t\t 0.154452 -0.32848701 0.28356299 0.150323 -0.347159 0.32780901 0.15018199 -0.34699199 0.28356299\n\t\t 0.139475 -0.36263001 0.32776499 0.14612199 -0.36754099 0.41484901 0.123439 -0.37266999 0.328242\n\t\t 0.139285 -0.362546 0.28356299 0.12318 -0.37261099 0.28356299 0.104766 -0.37597999 0.32916\n\t\t 0.111912 -0.38107499 0.41916001 0.086205997 -0.37174201 0.33040899 0.104477 -0.37590399 0.28356299\n\t\t 0.085972004 -0.37163299 0.28356299 0.070547 -0.36085701 0.33179 0.078110002 -0.366613 0.427883\n\t\t 0.060369998 -0.344717 0.33309099 0.070418999 -0.36073601 0.28356299 0.060354002 -0.344632 0.28356299\n\t\t 0.068115003 -0.350721 0.43233901 0.098998003 -0.37422001 0.53959203 0.107593 -0.388908 0.53031802\n\t\t 0.13201199 -0.40867099 0.58229703 0.161172 -0.434636 0.62909597 0.18996599 -0.45706099 0.68351001\n\t\t 0.193791 -0.46715099 0.666448 0.22691099 -0.498909 0.70845699 0.228587 -0.50655901 0.69008702\n\t\t 0.26560199 -0.54593498 0.72056597 0.264972 -0.55083603 0.70165098 0.302358 -0.59795398 0.70277601\n\t\t 0.34547901 -0.64674503 0.713301 0.340157 -0.64588797 0.695099 0.37777999 -0.69261098 0.68025899\n\t\t 0.42234299 -0.74195403 0.67446101 0.41284099 -0.73607498 0.65890902 0.44294801 -0.77423 0.63170499\n\t\t 0.46571499 -0.80502599 0.59930098 0.492331 -0.83617401 0.567173 0.47875199 -0.826415 0.56235301\n\t\t 0.49552399 -0.84697098 0.52231598 0.481379 -0.83703399 0.52275401 0.47291601 -0.83552003 0.48239601\n\t\t 0.46459401 -0.820638 0.48754901 0.47319701 -0.82208598 0.523094 0.471127 -0.81164998 0.55758399\n\t\t 0.459061 -0.79092401 0.58987403 0.45891401 -0.77434301 0.58202702 0.47012699 -0.79449701 0.55360699\n\t\t 0.471708 -0.80477297 0.52332699 0.462989 -0.80338299 0.49171701 0.46834201 -0.78648603 0.49427\n\t\t 0.477139 -0.78784698 0.52345699 0.475923 -0.77768499 0.55109298 0.46533599 -0.75791901 0.57704502\n\t\t 0.477056 -0.74380398 0.57541603 0.48734799 -0.76337397 0.550282 0.48840401 -0.77345097 0.52346402\n\t\t 0.47961199 -0.77207899 0.49495399 0.49539801 -0.76210898 0.49362999 0.504071 -0.76353401 0.52332902\n\t\t 0.50290298 -0.75352401 0.55128998 0.49248999 -0.73396403 0.57739401 0.45813799 -0.71669799 0.59887803\n\t\t 0.44601801 -0.73046702 0.60118502 0.438737 -0.74610102 0.60806298;\n\tsetAttr \".vt[7470:7635]\" 0.43767899 -0.76149899 0.61881602 0.409291 -0.72528201 0.64356703\n\t\t 0.37620899 -0.68417799 0.663279 0.34074399 -0.64009398 0.67710602 0.34676 -0.63057101 0.66199601\n\t\t 0.380427 -0.67244202 0.64903301 0.41183001 -0.71154302 0.63072598 0.420136 -0.69700801 0.62245703\n\t\t 0.389853 -0.65921998 0.63980901 0.357335 -0.61878198 0.65218699 0.37077299 -0.60646403 0.64872003\n\t\t 0.40288299 -0.64639801 0.636581 0.43270901 -0.68368602 0.61961699 0.44779801 -0.67347199 0.62269199\n\t\t 0.473425 -0.70673603 0.601524 0.417696 -0.63580197 0.63991302 0.38520899 -0.595357 0.65219998\n\t\t 0.33849201 -0.56551498 0.65498 0.32474601 -0.57737303 0.658539 0.31306401 -0.58770198 0.66863102\n\t\t 0.30520701 -0.59493399 0.68420398 0.27010301 -0.550583 0.68302798 0.235937 -0.50892901 0.67203701\n\t\t 0.20321199 -0.47185701 0.64968699 0.216361 -0.47092599 0.63569301 0.247408 -0.50609797 0.65696597\n\t\t 0.27979499 -0.54561698 0.66745001 0.292546 -0.53671199 0.65738797 0.26119399 -0.49851999 0.64725798\n\t\t 0.231149 -0.46451899 0.626674 0.245608 -0.45374799 0.62350202 0.27541199 -0.48743999 0.64387202\n\t\t 0.30654001 -0.52526802 0.65386498 0.31989601 -0.51282299 0.65746999 0.35242501 -0.55376899 0.65856898\n\t\t 0.288176 -0.4743 0.64735502 0.25781801 -0.43998501 0.62667602 0.21762501 -0.42591 0.59125501\n\t\t 0.20287 -0.43642801 0.59415698 0.187108 -0.441883 0.60214299 0.172433 -0.44125101 0.614434\n\t\t 0.144841 -0.41679499 0.57022297 0.121675 -0.398173 0.52099299 0.093581997 -0.377159 0.42325601\n\t\t 0.138761 -0.40099999 0.51300901 0.160844 -0.41867301 0.56001502 0.17750099 -0.41396901 0.55328298\n\t\t 0.156187 -0.39686 0.50762498 0.130299 -0.37757799 0.41624701 0.171565 -0.386684 0.5054\n\t\t 0.192573 -0.40364799 0.55069798 0.20395599 -0.389029 0.552661 0.22937401 -0.411661 0.593885\n\t\t 0.18267401 -0.37178901 0.50668401 0.15696201 -0.352285 0.41519299 0.487212 -0.845406 0.47697401\n\t\t 0.45416999 -0.78201401 0.644795 0.47831801 -0.81414503 0.608886 0.30535299 -0.595945 0.72159499\n\t\t 0.155452 -0.42258799 0.64396602 0.064916 -0.332102 0.43594 0.061331999 -0.30742401 0.28356299\n\t\t 0.057062 -0.32592899 0.28356299 0.056993 -0.32595101 0.334115 0.276362 -0.57433701 0.122742\n\t\t 0.27541199 -0.57467002 0.099657997 0.26043001 -0.58503401 0.125949 0.25958201 -0.58515197 0.099657997\n\t\t 0.240978 -0.58893299 0.099657997 0.222725 -0.58544099 0.132421 0.241605 -0.58906698 0.129353\n\t\t 0.22237299 -0.58515197 0.099657997 0.20665 -0.57500798 0.13468701 0.244413 -0.59024602 0.15519699\n\t\t 0.206544 -0.57467002 0.099657997 0.196035 -0.559129 0.135747 0.196062 -0.55884099 0.099657997\n\t\t 0.192259 -0.54041499 0.135483 0.19228099 -0.540236 0.099657997 0.19619399 -0.52168202 0.133876\n\t\t 0.196062 -0.521631 0.099657997 0.206945 -0.505768 0.131231 0.206544 -0.50580198 0.099657997\n\t\t 0.22237299 -0.49532101 0.099657997 0.300556 -0.52556801 0.224393 0.28400901 -0.52099502 0.233328\n\t\t 0.31722599 -0.54334402 0.250323 0.30122799 -0.538535 0.25997201 0.339306 -0.56730098 0.27900699\n\t\t 0.323681 -0.56236601 0.28932101 0.350936 -0.57863498 0.26867899 0.32945499 -0.55462903 0.241135\n\t\t 0.31360799 -0.53668898 0.216353 0.32104301 -0.55279201 0.21047901 0.335879 -0.57082099 0.23385701\n\t\t 0.35658601 -0.59482002 0.25996399 0.35569301 -0.613217 0.254114 0.33583599 -0.58932501 0.22950099\n\t\t 0.322063 -0.57134199 0.20754699 0.31632999 -0.58964199 0.20812 0.32913601 -0.607391 0.22885799\n\t\t 0.348185 -0.63103801 0.25215799 0.33549601 -0.64566499 0.25418001 0.31705001 -0.62236702 0.231842\n\t\t 0.30491999 -0.60500503 0.21196499 0.289309 -0.61494899 0.218612 0.30122501 -0.631832 0.23810001\n\t\t 0.319424 -0.65473098 0.259967 0.302421 -0.65719402 0.26850501 0.28410599 -0.63464803 0.246571\n\t\t 0.27194801 -0.618213 0.22696 0.25542 -0.61401302 0.23579 0.246402 -0.60281003 0.21777\n\t\t 0.287002 -0.65247798 0.278597 0.31391299 -0.68227202 0.303536 0.24913099 -0.60314399 0.27247199\n\t\t 0.26945701 -0.625512 0.29748899 0.27002099 -0.607153 0.303491 0.248845 -0.58455098 0.27699199\n\t\t 0.25543401 -0.56621099 0.27780399 0.27732801 -0.58915102 0.305655 0.29002699 -0.574233 0.30378601\n\t\t 0.267645 -0.55093098 0.27491 0.25040299 -0.53405899 0.24856301 0.26636899 -0.52407002 0.241816\n\t\t 0.28378999 -0.54129702 0.26859599 0.30635399 -0.56490499 0.297997 -0.47975501 -0.46986899 0.38022301\n\t\t -0.50607902 -0.45303199 0.451974 -0.52753699 -0.458222 0.440575 -0.45648101 -0.46488699 0.38810399\n\t\t -0.55763203 -0.45471099 0.47692201 -0.53690302 -0.44929701 0.48943001 -0.588458 -0.45583701 0.51467502\n\t\t -0.56796801 -0.45007899 0.527542 -0.60527098 -0.470438 0.50313997 -0.57474399 -0.468979 0.466021\n\t\t -0.54540497 -0.47224101 0.430953 -0.49943301 -0.48359099 0.37405899 -0.55676103 -0.49327201 0.424676\n\t\t -0.51231301 -0.50428098 0.37064001 -0.58543497 -0.49024701 0.45848501 -0.615646 -0.49197701 0.49478599\n\t\t -0.61828899 -0.51696903 0.49072999 -0.58836198 -0.51506799 0.45530599 -0.560166 -0.51790202 0.42254701\n\t\t -0.51674098 -0.52857703 0.37036601 -0.554766 -0.542454 0.42506799 -0.51168197 -0.55285501 0.373411\n\t\t -0.58275199 -0.53973198 0.457156 -0.612472 -0.54167199 0.49178201 -0.59939599 -0.562415 0.49758101\n\t\t -0.56977898 -0.56056702 0.46356201 -0.541713 -0.56326902 0.43167999 -0.49826601 -0.573493 0.37918901\n\t\t -0.52272099 -0.57695901 0.441524 -0.478232 -0.58713698 0.386915 -0.55115497 -0.57417798 0.47371501\n\t\t -0.58079398 -0.57581198 0.50742298 -0.628555 -0.57102102 0.53252298 -0.64200199 -0.55053198 0.52771801\n\t\t -0.64800501 -0.52590197 0.52748603 -0.64532399 -0.50078601 0.53205001 -0.63470203 -0.47895101 0.54054201\n\t\t -0.61746401 -0.46392101 0.55180198 -0.59644002 -0.45767099 0.56404197;\n\tsetAttr \".vt[7636:7801]\" -0.64297402 -0.47573 0.588727 -0.62099898 -0.46897301 0.59941101\n\t\t -0.663315 -0.488031 0.625875 -0.640324 -0.48088801 0.63413 -0.67681098 -0.49759001 0.66367102\n\t\t -0.65309298 -0.49031699 0.66868001 -0.696338 -0.513327 0.65899301 -0.682244 -0.50374401 0.618011\n\t\t -0.66102898 -0.49116901 0.57867998 -0.67219901 -0.51324898 0.57085502 -0.69400299 -0.52593899 0.61177498\n\t\t -0.70846802 -0.53543001 0.65538698 -0.71168399 -0.56035203 0.65334803 -0.69712102 -0.55104798 0.608033\n\t\t -0.67508799 -0.53841299 0.566333 -0.66891003 -0.56288201 0.56595099 -0.69076002 -0.575293 0.60746902\n\t\t -0.70512003 -0.58433801 0.65325701 -0.69014102 -0.60384601 0.65505201 -0.67624098 -0.59509099 0.61004102\n\t\t -0.65494102 -0.583031 0.56960398 -0.63503402 -0.59555501 0.57688898 -0.60944498 -0.58401799 0.54134202\n\t\t -0.65548599 -0.60718298 0.61548001 -0.66872799 -0.61566401 0.65853 -0.644328 -0.61833102 0.66310602\n\t\t -0.63183498 -0.61007202 0.622859 -0.61238998 -0.59888601 0.586577 -0.58774698 -0.58787799 0.55270201\n\t\t -0.56672299 -0.58162802 0.564942 -0.590415 -0.59212899 0.59726101 -0.64811403 -0.62055701 0.70887399\n\t\t -0.67268401 -0.617755 0.70745599 -0.69432497 -0.60594302 0.70585197 -0.70955497 -0.586586 0.70430303\n\t\t -0.71635699 -0.56286901 0.70303798 -0.71332598 -0.538297 0.70226598 -0.70130402 -0.51656801 0.70208102\n\t\t -0.68178803 -0.50117397 0.70253801 -0.65798497 -0.49416199 0.70354199 -0.67922002 -0.49869001 0.74109602\n\t\t -0.65588498 -0.49232799 0.737737 -0.67008102 -0.49004599 0.777964 -0.64767998 -0.48472199 0.77028602\n\t\t -0.65534502 -0.47514701 0.81176102 -0.63425499 -0.471248 0.80021203 -0.67173499 -0.486974 0.82531703\n\t\t -0.68797201 -0.503519 0.78710997 -0.69817197 -0.51334101 0.74540901 -0.70962 -0.53434598 0.75004703\n\t\t -0.69839197 -0.52338302 0.79636598 -0.68068498 -0.505216 0.838857 -0.681153 -0.52689898 0.850362\n\t\t -0.70007902 -0.54642397 0.80434501 -0.71215099 -0.55831999 0.75430399 -0.70500702 -0.58166301 0.75750297\n\t\t -0.692415 -0.56919199 0.80975699 -0.672719 -0.54879701 0.85796201 -0.656991 -0.567635 0.86067599\n\t\t -0.67690998 -0.58830303 0.81189501 -0.68963403 -0.60091698 0.75920999 -0.66808301 -0.61292499 0.75909698\n\t\t -0.65565002 -0.60063899 0.81029302 -0.636114 -0.58036298 0.85788399 -0.61340398 -0.58532101 0.85021698\n\t\t -0.63203502 -0.60462499 0.80533701 -0.64381099 -0.61618 0.75725299 -0.62047702 -0.60981798 0.75389397\n\t\t -0.609635 -0.59930098 0.79765999 -0.58853501 -0.55769598 0.88898498 -0.610201 -0.55156398 0.89870799\n\t\t -0.63072002 -0.53844899 0.90232199 -0.64685899 -0.52010202 0.89901501 -0.65638298 -0.49946499 0.88955402\n\t\t -0.65754098 -0.47964901 0.87515599 -0.65048999 -0.46357799 0.85816199 -0.63598901 -0.45390201 0.84110701\n\t\t -0.616494 -0.451812 0.82653499 -0.61253703 -0.42684001 0.86555898 -0.59490001 -0.42691499 0.848719\n\t\t -0.585518 -0.39448899 0.88467801 -0.56997502 -0.39705801 0.86622697 -0.555457 -0.35737699 0.898022\n\t\t -0.54222202 -0.362739 0.87852198 -0.56252301 -0.358208 0.92094398 -0.595303 -0.39860401 0.90633398\n\t\t -0.62481898 -0.433925 0.885288 -0.62961799 -0.447364 0.90495902 -0.59757501 -0.40903899 0.92796397\n\t\t -0.562069 -0.36535501 0.94386899 -0.55445898 -0.377505 0.96337599 -0.59229201 -0.42398801 0.94634199\n\t\t -0.62651402 -0.46490201 0.92164099 -0.61566502 -0.48398301 0.93261999 -0.57996303 -0.441315 0.95848\n\t\t -0.540582 -0.392975 0.97629797 -0.52275503 -0.409327 0.98096502 -0.56270498 -0.458341 0.96281397\n\t\t -0.598993 -0.50169998 0.93648303 -0.57884902 -0.51524502 0.932338 -0.542997 -0.47240901 0.95835\n\t\t -0.50358403 -0.42405701 0.97631401 -0.485982 -0.43503299 0.96340501 -0.523875 -0.481538 0.94610101\n\t\t -0.55837601 -0.52276301 0.92111999 -0.54073799 -0.52283901 0.90428001 -0.56904 -0.55560601 0.87441403\n\t\t -0.472747 -0.440395 0.94390601 -0.44564301 -0.38426301 0.97251302 -0.46154699 -0.37119401 0.98580301\n\t\t -0.48003799 -0.35561299 0.99058902 -0.49835101 -0.33983901 0.98577702 -0.513762 -0.326231 0.97246403\n\t\t -0.52375799 -0.316991 0.95236897 -0.52705997 -0.31332701 0.928756 -0.522883 -0.316035 0.90514898\n\t\t -0.51214302 -0.32446 0.885068 -0.48897299 -0.27322 0.904275 -0.48080301 -0.284785 0.88419098\n\t\t -0.454905 -0.231693 0.89361501 -0.449267 -0.24627601 0.87421602 -0.42185801 -0.194212 0.87138498\n\t\t -0.41859999 -0.21149801 0.85347003 -0.417496 -0.181407 0.89247102 -0.453255 -0.221964 0.91641402\n\t\t -0.49020699 -0.26692501 0.92787802 -0.48403001 -0.26709101 0.95147902 -0.44427401 -0.218799 0.93921202\n\t\t -0.40587899 -0.175256 0.91358203 -0.389025 -0.176415 0.93156999 -0.42958999 -0.22241101 0.95860797\n\t\t -0.471654 -0.27344099 0.97155702 -0.454748 -0.28524199 0.984851 -0.41125 -0.232518 0.97145098\n\t\t -0.36933601 -0.185003 0.94351202 -0.34986299 -0.19944701 0.94786501 -0.39213401 -0.247356 0.97608203\n\t\t -0.436012 -0.30051801 0.98964298 -0.41828099 -0.31703901 0.98484099 -0.37517899 -0.264815 0.97144598\n\t\t -0.333637 -0.21774399 0.94364101 -0.32295099 -0.237011 0.93181002 -0.362829 -0.28218701 0.95859998\n\t\t -0.40415999 -0.33229199 0.97153902 -0.357191 -0.29677001 0.939201 -0.31969199 -0.254298 0.91389501\n\t\t -0.285824 -0.19983099 0.88928503 -0.29504699 -0.17904601 0.89944702 -0.31065401 -0.160108 0.902946\n\t\t -0.330484 -0.146033 0.89896601 -0.35141301 -0.13872901 0.888394 -0.37023401 -0.139608 0.87260199\n\t\t -0.38422301 -0.14821699 0.85415202 -0.39100999 -0.163536 0.83579898 -0.38986599 -0.18301401 0.820279\n\t\t -0.36353201 -0.13924301 0.79098397 -0.36419699 -0.160441 0.778386 -0.34059799 -0.120911 0.74106401\n\t\t -0.342724 -0.14339601 0.73153299 -0.31304801 -0.100442 0.64241099 -0.31689 -0.124353 0.637927\n\t\t -0.30048701 -0.079966001 0.64800698 -0.330033 -0.102105 0.75256598 -0.35466 -0.121936 0.80600297\n\t\t -0.33862001 -0.111368 0.82120699 -0.31232199 -0.090051003 0.76433301;\n\tsetAttr \".vt[7802:7967]\" -0.280801 -0.066243999 0.653889 -0.25720799 -0.061057001 0.65916902\n\t\t -0.29039001 -0.086280003 0.77460003 -0.31808901 -0.108851 0.83432299 -0.29607001 -0.115104 0.84322798\n\t\t -0.26746899 -0.091716997 0.781712 -0.23321 -0.065562002 0.66300303 -0.212404 -0.078704 0.66487497\n\t\t -0.24701799 -0.105189 0.78473002 -0.27590701 -0.128851 0.84675801 -0.26080701 -0.14826199 0.84414601\n\t\t -0.23231301 -0.124933 0.78301901 -0.19815201 -0.098797001 0.664415 -0.22532199 -0.147756 0.77702099\n\t\t -0.252823 -0.17022 0.83602297 -0.25348699 -0.19141901 0.82342398 -0.189612 -0.092262 0.558047\n\t\t -0.184072 -0.116271 0.55732799 -0.184072 -0.116271 0.50624001 -0.189612 -0.092262 0.506244\n\t\t -0.203751 -0.072082996 0.506244 -0.203751 -0.072082996 0.55810601 -0.224645 -0.059023 0.55747002\n\t\t -0.224645 -0.059023 0.50624001 -0.24891201 -0.054752 0.50623399 -0.24891201 -0.054752 0.556261\n\t\t -0.272921 -0.060292002 0.55464202 -0.272921 -0.060292002 0.50622499 -0.29310101 -0.074431002 0.50621498\n\t\t -0.29310101 -0.074431002 0.55287099 -0.30616 -0.095325001 0.55121797 -0.30616 -0.095325001 0.50620598\n\t\t -0.31043199 -0.119592 0.506199 -0.31043199 -0.119592 0.54992503 -0.304892 -0.143601 0.54920602\n\t\t -0.304892 -0.143601 0.50619501 -0.29075301 -0.16378 0.50619501 -0.29075301 -0.16378 0.54914701\n\t\t -0.26985899 -0.17684001 0.54978299 -0.26985899 -0.17684001 0.50619799 -0.245592 -0.18111099 0.50620502\n\t\t -0.245592 -0.18111099 0.55099303 -0.22158299 -0.17557099 0.55261201 -0.22158299 -0.17557099 0.50621402\n\t\t -0.20140301 -0.161432 0.50622302 -0.20140301 -0.161432 0.55438203 -0.188344 -0.14053801 0.55603498\n\t\t -0.20872501 -0.16695499 0.65170199 -0.196164 -0.146479 0.65729702 -0.238013 -0.189046 0.755988\n\t\t -0.26235899 -0.208726 0.808406 -0.28468001 -0.219309 0.87376499 -0.29146701 -0.23462801 0.85541201\n\t\t -0.324054 -0.26710299 0.89280897 -0.358841 -0.306499 0.91640198 -0.39599001 -0.34385699 0.951455\n\t\t -0.39475599 -0.35015199 0.92785197 -0.43072599 -0.39539599 0.92882502 -0.46568099 -0.43956399 0.92098403\n\t\t -0.50833303 -0.48410699 0.92764997 -0.49854699 -0.47999099 0.90599298 -0.52845597 -0.51575398 0.88455099\n\t\t -0.55453801 -0.54593003 0.85735798 -0.59231299 -0.58142197 0.83866799 -0.57592398 -0.56959599 0.82511199\n\t\t -0.59174299 -0.58582801 0.788513 -0.601524 -0.59516698 0.74958098 -0.62431097 -0.613545 0.70987701\n\t\t -0.60479498 -0.59815198 0.710334 -0.62060899 -0.611058 0.66811597 -0.60108298 -0.59532201 0.67279398\n\t\t -0.60884398 -0.602929 0.63111401 -0.58991498 -0.58721602 0.63897902 -0.57235998 -0.57669002 0.60730898\n\t\t -0.54948401 -0.56659901 0.57620299 -0.53916901 -0.57439703 0.532547 -0.52235597 -0.55979699 0.54408097\n\t\t -0.50915301 -0.57340699 0.49846101 -0.52988201 -0.578821 0.485953 -0.500857 -0.581765 0.45300299\n\t\t -0.559659 -0.58015501 0.51968002 -0.49204099 -0.55913901 0.50936198 -0.46153 -0.56255502 0.474024\n\t\t -0.431557 -0.58704603 0.40324 -0.411879 -0.57332402 0.40940499 -0.45017499 -0.54152399 0.48030099\n\t\t -0.39899901 -0.552634 0.412824 -0.48135 -0.537871 0.51689798 -0.51198 -0.538257 0.55243498\n\t\t -0.50933802 -0.51326603 0.55649102 -0.478423 -0.51305002 0.52007598 -0.446769 -0.51689398 0.48243001\n\t\t -0.39457101 -0.528337 0.41309699 -0.45217001 -0.492342 0.47990799 -0.39963001 -0.50405902 0.410052\n\t\t -0.48403299 -0.48838601 0.51822603 -0.51515502 -0.48856199 0.555439 -0.52823102 -0.46781901 0.54964\n\t\t -0.497006 -0.46755201 0.51182002 -0.465222 -0.47152799 0.47329599 -0.413046 -0.483421 0.40427399\n\t\t -0.48421401 -0.45783699 0.46345299 -0.43307999 -0.46977699 0.396548 -0.51562899 -0.45394 0.50166702\n\t\t -0.54683298 -0.454422 0.53979802 -0.555632 -0.47452801 0.58422101 -0.542184 -0.49501699 0.58902597\n\t\t -0.53618199 -0.51964802 0.58925802 -0.538863 -0.54476303 0.58469403 -0.56119102 -0.55461103 0.61513299\n\t\t -0.57815599 -0.56502098 0.64521497 -0.58895302 -0.57321799 0.67640001 -0.58573699 -0.54829597 0.67843801\n\t\t -0.57503802 -0.53991199 0.648956 -0.55830097 -0.52944601 0.61965501 -0.56448001 -0.504978 0.62003601\n\t\t -0.58139902 -0.51566702 0.64952099 -0.59230101 -0.52431101 0.67852902 -0.60728002 -0.50480199 0.67673498\n\t\t -0.595918 -0.49586999 0.64694798 -0.578448 -0.484828 0.61638403 -0.59835601 -0.47230399 0.60909897\n\t\t -0.57474202 -0.461532 0.57540202 -0.61667299 -0.48377699 0.64151001 -0.62869298 -0.49298501 0.67325699\n\t\t -0.61177403 -0.50877601 0.70656401 -0.63341498 -0.49696401 0.70495999 -0.63161403 -0.495583 0.73589301\n\t\t -0.610062 -0.50759101 0.73578 -0.59654403 -0.52813399 0.70811301 -0.59468901 -0.52684498 0.73748702\n\t\t -0.589742 -0.55185002 0.70937699 -0.59277302 -0.57642299 0.71015 -0.59007603 -0.57416201 0.74494302\n\t\t -0.58132398 -0.56596297 0.77925801 -0.56697398 -0.55135298 0.81157202 -0.56650603 -0.52967 0.80006701\n\t\t -0.57963598 -0.54292297 0.77127802 -0.58754498 -0.550188 0.740686 -0.58730102 -0.520154 0.76586598\n\t\t -0.57494003 -0.50777203 0.79246801 -0.59066701 -0.488933 0.78975302 -0.60280597 -0.50104302 0.76372802\n\t\t -0.62406498 -0.48870799 0.76533002 -0.61154503 -0.476206 0.79254597 -0.57430798 -0.47105801 0.81319898\n\t\t -0.55816901 -0.48940599 0.81650501 -0.54864502 -0.51004303 0.825966 -0.54748702 -0.52985901 0.84036499\n\t\t -0.52365702 -0.50231498 0.86488003 -0.49627501 -0.469556 0.88436401 -0.466135 -0.43241701 0.89806002\n\t\t -0.47374499 -0.42026699 0.87855101 -0.50155801 -0.45460701 0.86598599 -0.526761 -0.484777 0.84819901\n\t\t -0.53761101 -0.46569601 0.837219 -0.51388699 -0.43728 0.85384798 -0.48762199 -0.40479699 0.86562997\n\t\t -0.505449 -0.38844499 0.86096299 -0.53114498 -0.42025501 0.84951401 -0.55428201 -0.447979 0.83335602\n\t\t -0.574426 -0.43443301 0.83750099 -0.594827 -0.45794401 0.81681299 -0.55085301 -0.40618601 0.85397798\n\t\t -0.52462 -0.37371501 0.865614 -0.47774899 -0.353109 0.86699301;\n\tsetAttr \".vt[7968:8133]\" -0.49623999 -0.337529 0.87177801 -0.46668199 -0.30003801 0.87089002\n\t\t -0.44895101 -0.31656 0.86608797 -0.459436 -0.368884 0.87180501 -0.430215 -0.331835 0.87088001\n\t\t -0.44402501 -0.38249201 0.88511699 -0.43402901 -0.39173099 0.905213 -0.40093401 -0.34998599 0.90425098\n\t\t -0.367823 -0.30966499 0.89360398 -0.33567199 -0.27325299 0.87169701 -0.35252601 -0.27209401 0.85371\n\t\t -0.38250601 -0.306052 0.87420702 -0.41330901 -0.34363601 0.88417298 -0.400846 -0.29594499 0.86136502\n\t\t -0.37221399 -0.263506 0.84176803 -0.39168799 -0.249062 0.83741498 -0.41996199 -0.28110701 0.85673398\n\t\t -0.43691701 -0.263648 0.86137003 -0.40791401 -0.230766 0.84163803 -0.365035 -0.222737 0.80661798\n\t\t -0.34520501 -0.236812 0.81059802 -0.32427701 -0.24411599 0.82116997 -0.30545601 -0.243237 0.83696198\n\t\t -0.27839899 -0.219294 0.79320198 -0.25572401 -0.20110101 0.74422097 -0.228411 -0.180677 0.64582002\n\t\t -0.25200501 -0.185863 0.64054 -0.27765599 -0.204872 0.73395401 -0.29892999 -0.221811 0.78008598\n\t\t -0.32094899 -0.21555699 0.77118099 -0.30057701 -0.199434 0.726843 -0.27600199 -0.18135899 0.63670599\n\t\t -0.296808 -0.168217 0.63483298 -0.32102799 -0.18596201 0.72382498 -0.341113 -0.201811 0.76765102\n\t\t -0.356213 -0.182399 0.77026302 -0.38064301 -0.20379899 0.81011701 -0.335733 -0.166219 0.72553498\n\t\t -0.31106001 -0.14812399 0.63529402 -0.47939801 -0.57657403 0.46440199 -0.43490401 -0.39268801 0.95243299\n\t\t -0.227448 -0.170241 0.76749003 -0.192322 -0.122568 0.66178298 -0.188344 -0.14053801 0.50623202\n\t\t -0.434636 -0.470781 0.321978 -0.45878199 -0.47568899 0.333033 -0.45878199 -0.47568899 0.321978\n\t\t -0.434636 -0.470781 0.33502799 -0.460879 -0.47510701 0.345373 -0.43682 -0.47019199 0.34935299\n\t\t -0.48133701 -0.488722 0.342426 -0.47932601 -0.48929301 0.33157599 -0.47932601 -0.48929301 0.321978\n\t\t -0.49293 -0.50983697 0.33090499 -0.49293 -0.50983697 0.321978 -0.49486801 -0.50928098 0.34100899\n\t\t -0.49972799 -0.53344202 0.34127501 -0.49783701 -0.53398299 0.33108801 -0.49783701 -0.53398299 0.321978\n\t\t -0.49293 -0.55812901 0.332133 -0.49293 -0.55812901 0.32197699 -0.49480501 -0.55760199 0.34325099\n\t\t -0.48122001 -0.57815498 0.34657499 -0.47932601 -0.57867301 0.33384901 -0.47932601 -0.57867301 0.32197699\n\t\t -0.45878199 -0.59227699 0.335998 -0.45878199 -0.59227699 0.321978 -0.46072701 -0.59176302 0.350786\n\t\t -0.434636 -0.59718502 0.321978 -0.41048899 -0.59227699 0.34023699 -0.41048899 -0.59227699 0.321978\n\t\t -0.434636 -0.59718502 0.33824301 -0.389945 -0.57867301 0.32197699 -0.389945 -0.57867301 0.341694\n\t\t -0.392138 -0.57813799 0.362149 -0.43665501 -0.59666902 0.355221 -0.37634099 -0.55812901 0.34236601\n\t\t -0.37634099 -0.55812901 0.32197699 -0.378607 -0.55757999 0.36356601 -0.37374699 -0.533418 0.3633\n\t\t -0.371434 -0.53398299 0.34218299 -0.371434 -0.53398299 0.321978 -0.37634099 -0.50983697 0.34113801\n\t\t -0.37634099 -0.50983697 0.321978 -0.37867001 -0.50925899 0.36132401 -0.39225501 -0.48870501 0.35800001\n\t\t -0.389945 -0.48929301 0.33942199 -0.389945 -0.48929301 0.321978 -0.41048899 -0.47568899 0.337273\n\t\t -0.41048899 -0.47568899 0.321978 -0.41274801 -0.47509801 0.353789 -0.41259599 -0.59175402 0.35920101\n\t\t -0.454831 -0.59202802 0.39535901 -0.25902 -0.49650401 0.14216299 -0.24888299 -0.49595201 0.17404801\n\t\t -0.266936 -0.50002998 0.16704801 -0.240446 -0.492511 0.147578 -0.273763 -0.50486201 0.182832\n\t\t -0.25612 -0.50069302 0.19045199 -0.28315201 -0.51304799 0.201726 -0.266013 -0.50872201 0.20996299\n\t\t -0.29704201 -0.52397299 0.194738 -0.288295 -0.51563799 0.17669 -0.28194299 -0.51069701 0.161634\n\t\t -0.27458701 -0.50704497 0.138184 -0.29155999 -0.52640003 0.15865199 -0.28471699 -0.52260399 0.136255\n\t\t -0.29742801 -0.53146499 0.172993 -0.305466 -0.53993899 0.1901 -0.30749601 -0.55847698 0.18838701\n\t\t -0.300145 -0.54993498 0.172158 -0.29471299 -0.54477698 0.158407 -0.28826201 -0.54085201 0.136538\n\t\t -0.29076299 -0.56330299 0.16102199 -0.28451401 -0.559295 0.139053 -0.29586899 -0.56847101 0.17440701\n\t\t -0.30264899 -0.57695001 0.189963 -0.29182401 -0.59264398 0.194483 -0.285373 -0.58434999 0.179326\n\t\t -0.28040501 -0.57925802 0.16605499 -0.27413201 -0.57522303 0.14341199 -0.26479 -0.590065 0.172892\n\t\t -0.25824499 -0.58605999 0.149095 -0.269867 -0.59500998 0.18630899 -0.27633801 -0.60302597 0.201387\n\t\t -0.24645101 -0.59419501 0.18044101 -0.23944899 -0.59024602 0.15519699 -0.28183901 -0.55846202 0.120244\n\t\t -0.28557301 -0.53998101 0.118747 -0.284711 -0.540236 0.099657997 -0.280929 -0.521631 0.099657997\n\t\t -0.281867 -0.521626 0.118475 -0.270448 -0.50580198 0.099657997 -0.271501 -0.50599402 0.119436\n\t\t -0.25461799 -0.49532101 0.099657997 -0.25571901 -0.49550101 0.12156 -0.237022 -0.491604 0.124522\n\t\t -0.23601399 -0.491539 0.099657997 -0.218145 -0.495298 0.12793 -0.22154699 -0.496151 0.15369999\n\t\t -0.230391 -0.499567 0.181657 -0.205272 -0.506639 0.15954299 -0.214357 -0.51008898 0.188666\n\t\t -0.19438601 -0.52265102 0.164133 -0.203512 -0.52618802 0.193902 -0.19032399 -0.54151702 0.166811\n\t\t -0.199293 -0.54516399 0.196632 -0.194001 -0.56034499 0.167068 -0.202628 -0.56409502 0.19632\n\t\t -0.204549 -0.57628697 0.16497201 -0.21269301 -0.58012098 0.193157 -0.22059 -0.58670902 0.160769\n\t\t -0.228159 -0.59060502 0.187548 -0.219109 -0.58471602 0.20819101 -0.234037 -0.595272 0.201905\n\t\t -0.227237 -0.59214598 0.224831 -0.241438 -0.60281003 0.21777 -0.25185201 -0.598979 0.194234\n\t\t -0.258661 -0.60671502 0.209554 -0.20954899 -0.56865299 0.212056 -0.21841399 -0.57605797 0.22961199\n\t\t -0.21613599 -0.55716503 0.231446 -0.20661899 -0.54971302 0.21298499 -0.21109401 -0.53075403 0.210676\n\t\t -0.22108801 -0.53830802 0.229883 -0.23224699 -0.52239001 0.225283;\n\tsetAttr \".vt[8134:8299]\" -0.222013 -0.51469302 0.205605 -0.237919 -0.50423098 0.19846299\n\t\t -0.24811 -0.51209199 0.218243 -0.233796 -0.54969501 0.25240299 -0.24543899 -0.53405899 0.24856301\n\t\t -0.26268101 -0.55093098 0.27491 -0.25047001 -0.56621099 0.27780399 -0.228065 -0.56833303 0.25288001\n\t\t -0.229381 -0.587107 0.249799 -0.237188 -0.60320002 0.243815 -0.25092199 -0.619201 0.265129\n\t\t -0.270401 -0.641473 0.28875801 -0.29758701 -0.671336 0.31469199 -0.33444199 -0.71011502 0.34291601\n\t\t -0.34617299 -0.72079301 0.33093199 -0.37543499 -0.75186598 0.37361401 -0.41503701 -0.79064602 0.40697199\n\t\t -0.44771999 -0.820512 0.44317001 -0.32864001 -0.69462103 0.35398099 -0.29207799 -0.65555602 0.324707\n\t\t -0.368929 -0.73668402 0.385106 -0.407691 -0.77572203 0.41788 -0.43967599 -0.80571502 0.45209599\n\t\t -0.43833601 -0.78853899 0.45930299 -0.40700901 -0.758452 0.42661399 -0.36903101 -0.71919698 0.39416701\n\t\t -0.32938799 -0.67684603 0.36248499 -0.29306799 -0.63747299 0.332086 -0.33682901 -0.65948898 0.36697599\n\t\t -0.300733 -0.61981201 0.33552301 -0.375898 -0.70209002 0.399297 -0.41318199 -0.74151897 0.43176401\n\t\t -0.443928 -0.77168298 0.463662 -0.45539701 -0.75730097 0.46474001 -0.42507601 -0.72715998 0.432809\n\t\t -0.388284 -0.68772101 0.399957 -0.34961799 -0.64504498 0.366974 -0.31367901 -0.60519397 0.33465299\n\t\t -0.36602899 -0.63579702 0.36232099 -0.330118 -0.59602797 0.32943299 -0.404569 -0.67825103 0.39592201\n\t\t -0.44118601 -0.71742898 0.429499 -0.47132501 -0.74736899 0.46231401 -0.48939499 -0.74333102 0.456734\n\t\t -0.45912001 -0.71372402 0.42234999 -0.50708997 -0.74626398 0.44857499 -0.47631401 -0.71705401 0.412157\n\t\t -0.42228401 -0.675008 0.38786501 -0.43882301 -0.678895 0.37674999 -0.38351801 -0.632999 0.35383001\n\t\t -0.39944601 -0.63744402 0.34259501 -0.34745201 -0.59351301 0.32079801 -0.36300999 -0.59836 0.30993399\n\t\t -0.52157998 -0.75559199 0.43920001 -0.49005401 -0.72675002 0.40060601 -0.45162401 -0.68912101 0.36440101\n\t\t -0.41139701 -0.64821702 0.33044201 -0.374477 -0.60955 0.29858199 -0.41723999 -0.663912 0.31927601\n\t\t -0.379848 -0.62558502 0.288528 -0.45838201 -0.70439702 0.35275599 -0.49785599 -0.741638 0.38951299\n\t\t -0.53024298 -0.77023 0.43009201 -0.53199798 -0.78767502 0.42263499 -0.49878499 -0.75918198 0.38056099\n\t\t -0.45833299 -0.72214198 0.34357199 -0.416361 -0.681903 0.31076699 -0.37858701 -0.643812 0.281248\n\t\t -0.40865901 -0.69939601 0.306371 -0.370666 -0.66142499 0.27800301 -0.45123899 -0.73958898 0.33840901\n\t\t -0.49244401 -0.77664697 0.37526399 -0.52631098 -0.80520803 0.418082 -0.514373 -0.82019198 0.41698101\n\t\t -0.480131 -0.79141903 0.37423399 -0.438519 -0.75414401 0.33782801 -0.39564401 -0.71380401 0.30651501\n\t\t -0.357613 -0.67583197 0.279048 -0.37919801 -0.72279203 0.311295 -0.34131399 -0.684699 0.284327\n\t\t -0.42199099 -0.76344597 0.34204999 -0.46357501 -0.80110002 0.377767 -0.49783099 -0.83018899 0.419624\n\t\t -0.47935 -0.83386302 0.42548901 -0.44540399 -0.80444199 0.38517299 -0.40423399 -0.76635802 0.35026601\n\t\t -0.36184701 -0.72531599 0.31981799 -0.32425201 -0.68702501 0.29288101 -0.30894899 -0.68227202 0.303536\n\t\t -0.428368 -0.800668 0.39547399 -0.38791099 -0.76220399 0.36138001 -0.46174499 -0.83034801 0.43380699\n\t\t -0.50006199 -0.84890997 0.47216299 -0.51863801 -0.84515202 0.46879801 -0.53513598 -0.83502799 0.467316\n\t\t -0.54687798 -0.81991398 0.468009 -0.55225497 -0.80227399 0.47069201 -0.55012602 -0.78477001 0.47503901\n\t\t -0.541098 -0.77013397 0.48032799 -0.52632397 -0.76086497 0.48576301 -0.50848103 -0.758012 0.490466\n\t\t -0.534621 -0.76235998 0.52258801 -0.51696903 -0.759489 0.52303499 -0.53258502 -0.752249 0.557917\n\t\t -0.51545501 -0.74948299 0.553931 -0.52082199 -0.73203301 0.590617 -0.50453001 -0.72971499 0.582645\n\t\t -0.53382498 -0.74051398 0.60005599 -0.54659802 -0.76133901 0.56264198 -0.54922998 -0.771631 0.52210402\n\t\t -0.55814499 -0.78627902 0.521703 -0.554941 -0.77577502 0.56743199 -0.54115498 -0.75427699 0.609577\n\t\t -0.54187202 -0.77097702 0.61768198 -0.55653203 -0.79309797 0.57152498 -0.56021303 -0.80380601 0.52142602\n\t\t -0.55482298 -0.82147598 0.521299 -0.55082399 -0.81060898 0.57420403 -0.53555799 -0.78802502 0.62297899\n\t\t -0.52347797 -0.80282599 0.62478399 -0.53899699 -0.82565498 0.57512498 -0.54311401 -0.83661902 0.52133298\n\t\t -0.52669299 -0.84675598 0.52153403 -0.52269202 -0.835769 0.57407999 -0.50732797 -0.812958 0.62268198\n\t\t -0.48971301 -0.81704003 0.61714101 -0.50455099 -0.83957601 0.57130802 -0.508232 -0.85050702 0.52187598\n\t\t -0.49056 -0.84697098 0.52231598 -0.487367 -0.83617401 0.567173 -0.46440801 -0.78382099 0.65605402\n\t\t -0.48129901 -0.779091 0.66358602 -0.49724901 -0.76882398 0.666403 -0.50970399 -0.75443602 0.66387701\n\t\t -0.51688999 -0.73826998 0.65658998 -0.51742703 -0.72280502 0.64548498 -0.51153398 -0.71041298 0.63246202\n\t\t -0.499937 -0.70321399 0.61955398 -0.48479 -0.70190501 0.60866803 -0.47207001 -0.66754699 0.64406103\n\t\t -0.45832899 -0.66772902 0.63114101 -0.43936399 -0.62678802 0.66346902 -0.42724401 -0.62886298 0.64920801\n\t\t -0.40395999 -0.58269399 0.67711103 -0.39363101 -0.586981 0.66201299 -0.409684 -0.58311898 0.69508398\n\t\t -0.44725001 -0.629848 0.68042898 -0.481938 -0.67290199 0.65940398 -0.48605499 -0.68335801 0.674905\n\t\t -0.44933701 -0.63793701 0.69758397 -0.40957201 -0.58854097 0.71327001 -0.40384001 -0.59794497 0.72884798\n\t\t -0.445492 -0.64962298 0.71226901 -0.483969 -0.69710797 0.68814999 -0.47571501 -0.71207899 0.696886\n\t\t -0.43604201 -0.66318703 0.72199202 -0.39313999 -0.60999602 0.73918301 -0.3793 -0.62275398 0.74292099\n\t\t -0.42265901 -0.67649001 0.725483 -0.462809 -0.72594702 0.699974 -0.44712001 -0.73647499 0.69670099\n\t\t -0.40731099 -0.68741798 0.72193801 -0.36438701 -0.63422501 0.73920602 -0.35071799 -0.64271301 0.72888303\n\t\t -0.39240801 -0.69439298 0.71216601 -0.43113899 -0.74218398 0.68781;\n\tsetAttr \".vt[8300:8465]\" -0.44920599 -0.78201401 0.644795 -0.38033 -0.69613898 0.69744301\n\t\t -0.30857 -0.58940798 0.73772299 -0.32086799 -0.57920402 0.74841303 -0.33523199 -0.56703299 0.75227797\n\t\t -0.34946001 -0.55474001 0.74844497 -0.36139601 -0.544204 0.73779303 -0.36905801 -0.53717101 0.72171098\n\t\t -0.371454 -0.53458101 0.702914 -0.36799899 -0.53702003 0.68431699 -0.359586 -0.54375899 0.668697\n\t\t -0.33217999 -0.49185601 0.683348 -0.32573 -0.50111097 0.66763502 -0.297203 -0.449292 0.67246097\n\t\t -0.29268399 -0.46094799 0.65719903 -0.26376501 -0.41141599 0.64991599 -0.26106799 -0.425183 0.63576102\n\t\t -0.260575 -0.40088201 0.66680801 -0.296119 -0.44118699 0.690642 -0.33333901 -0.48651201 0.70205498\n\t\t -0.32865101 -0.48626301 0.72093499 -0.289206 -0.43824899 0.70897102 -0.25158 -0.395567 0.68384802\n\t\t -0.238414 -0.39607701 0.69839102 -0.27777201 -0.44072399 0.724608 -0.31907001 -0.49094799 0.73706102\n\t\t -0.30593199 -0.500018 0.74771202 -0.263484 -0.44842499 0.73491597 -0.22304501 -0.40255699 0.70798898\n\t\t -0.207882 -0.413775 0.71140802 -0.248612 -0.45996299 0.73856598 -0.29136601 -0.51190901 0.751508\n\t\t -0.27761 -0.52485198 0.74757999 -0.23547301 -0.473667 0.73472798 -0.195316 -0.42814499 0.70787698\n\t\t -0.187188 -0.44336599 0.69816297 -0.226024 -0.48737299 0.72424299 -0.266745 -0.53684002 0.73680198\n\t\t -0.221947 -0.498909 0.70845699 -0.260638 -0.54593498 0.72056597 -0.151015 -0.40718299 0.65668398\n\t\t -0.157997 -0.39078501 0.66504502 -0.170084 -0.37592399 0.667988 -0.185543 -0.365013 0.664864\n\t\t -0.201905 -0.35955501 0.65636897 -0.216628 -0.36065099 0.64359403 -0.227487 -0.36787501 0.62869\n\t\t -0.232567 -0.38032001 0.61397099 -0.23150501 -0.39572901 0.60169297 -0.204777 -0.35559899 0.56884998\n\t\t -0.205128 -0.372242 0.5589 -0.181569 -0.33685401 0.51877803 -0.183071 -0.354379 0.51128399\n\t\t -0.153575 -0.31568199 0.420672 -0.15645801 -0.334149 0.417198 -0.143953 -0.299685 0.42505401\n\t\t -0.17353 -0.32192501 0.52793598 -0.19806799 -0.341708 0.580872 -0.185607 -0.333009 0.59313202\n\t\t -0.15977401 -0.31214899 0.53738201 -0.128694 -0.288807 0.42971101 -0.110322 -0.284536 0.43391299\n\t\t -0.142627 -0.30884901 0.54564297 -0.169543 -0.33064801 0.603724 -0.15231501 -0.33528101 0.61087102\n\t\t -0.124693 -0.312852 0.55133599 -0.09161 -0.287866 0.43696299 -0.075402997 -0.29799101 0.43844599\n\t\t -0.108724 -0.323255 0.55371398 -0.13657799 -0.34591699 0.613644 -0.124879 -0.36111701 0.61144102\n\t\t -0.097324997 -0.33867401 0.55227101 -0.064360999 -0.313595 0.438063 -0.09206 -0.356572 0.54735899\n\t\t -0.118856 -0.37839499 0.60476297 -0.119725 -0.39510199 0.59445202 -0.094035 -0.37422001 0.53959203\n\t\t -0.056269001 -0.307385 0.334685 -0.052028999 -0.32595101 0.334115 -0.052097999 -0.32592899 0.28356299\n\t\t -0.056368001 -0.30742401 0.28356299 -0.067264996 -0.29187199 0.28356299 -0.067188002 -0.29179299 0.334732\n\t\t -0.083356999 -0.28173199 0.33422899 -0.083369002 -0.28180701 0.28356299 -0.102071 -0.278514 0.28356299\n\t\t -0.102141 -0.27849099 0.33327299 -0.120715 -0.282859 0.33199799 -0.120576 -0.28278399 0.28356299\n\t\t -0.13612901 -0.293681 0.28356299 -0.136301 -0.29385799 0.330614 -0.146348 -0.31002599 0.329339\n\t\t -0.14619499 -0.309784 0.28356299 -0.149488 -0.32848701 0.28356299 -0.14961401 -0.328729 0.32835099\n\t\t -0.14535899 -0.347159 0.32780901 -0.145218 -0.34699199 0.28356299 -0.134321 -0.362546 0.28356299\n\t\t -0.13451099 -0.36263001 0.32776499 -0.118475 -0.37266999 0.328242 -0.118216 -0.37261099 0.28356299\n\t\t -0.099513002 -0.37590399 0.28356299 -0.099802002 -0.37597999 0.32916 -0.081243001 -0.37174201 0.33040899\n\t\t -0.081008002 -0.37163299 0.28356299 -0.065454997 -0.36073601 0.28356299 -0.065583996 -0.36085701 0.33179\n\t\t -0.055406 -0.344717 0.33309099 -0.073146999 -0.366613 0.427883 -0.102629 -0.388908 0.53031802\n\t\t -0.127048 -0.40867099 0.58229703 -0.15620799 -0.434636 0.62909597 -0.18882699 -0.46715099 0.666448\n\t\t -0.22362299 -0.50655901 0.69008702 -0.26000801 -0.55083603 0.70165098 -0.30038899 -0.595945 0.72159499\n\t\t -0.29739401 -0.59795398 0.70277601 -0.34051499 -0.64674503 0.713301 -0.33519301 -0.64588797 0.695099\n\t\t -0.37281701 -0.69261098 0.68025899 -0.41737899 -0.74195403 0.67446101 -0.407877 -0.73607498 0.65890902\n\t\t -0.43798399 -0.77423 0.63170499 -0.460751 -0.80502599 0.59930098 -0.47378799 -0.826415 0.56235301\n\t\t -0.47641501 -0.83703399 0.52275401 -0.46795201 -0.83552003 0.48239601 -0.45963001 -0.820638 0.48754901\n\t\t -0.46823299 -0.82208598 0.523094 -0.46616301 -0.81164998 0.55758399 -0.454097 -0.79092401 0.58987403\n\t\t -0.45394999 -0.77434301 0.58202702 -0.46516299 -0.79449701 0.55360699 -0.46674401 -0.80477297 0.52332699\n\t\t -0.45802501 -0.80338299 0.49171701 -0.46337801 -0.78648603 0.49427 -0.472175 -0.78784698 0.52345699\n\t\t -0.47095901 -0.77768499 0.55109298 -0.460372 -0.75791901 0.57704502 -0.472092 -0.74380398 0.57541603\n\t\t -0.482384 -0.76337397 0.550282 -0.48344001 -0.77345097 0.52346402 -0.474648 -0.77207899 0.49495399\n\t\t -0.49043399 -0.76210898 0.49362999 -0.499107 -0.76353401 0.52332902 -0.49793899 -0.75352401 0.55128998\n\t\t -0.487526 -0.73396403 0.57739401 -0.453174 -0.71669799 0.59887803 -0.46846101 -0.70673603 0.601524\n\t\t -0.44283399 -0.67347199 0.62269199 -0.42774501 -0.68368602 0.61961699 -0.44105399 -0.73046702 0.60118502\n\t\t -0.41517201 -0.69700801 0.62245703 -0.43377301 -0.74610102 0.60806298 -0.432715 -0.76149899 0.61881602\n\t\t -0.40432701 -0.72528201 0.64356703 -0.371245 -0.68417799 0.663279 -0.33577999 -0.64009398 0.67710602\n\t\t -0.34179601 -0.63057101 0.66199601 -0.37546301 -0.67244202 0.64903301 -0.40686601 -0.71154302 0.63072598\n\t\t -0.38488901 -0.65921998 0.63980901 -0.35237101 -0.61878198 0.65218699 -0.36580899 -0.60646403 0.64872003\n\t\t -0.397919 -0.64639801 0.636581 -0.41273201 -0.63580197 0.63991302;\n\tsetAttr \".vt[8466:8631]\" -0.380245 -0.595357 0.65219998 -0.33352801 -0.56551498 0.65498\n\t\t -0.31978199 -0.57737303 0.658539 -0.30809999 -0.58770198 0.66863102 -0.30024299 -0.59493399 0.68420398\n\t\t -0.26513901 -0.550583 0.68302798 -0.23097301 -0.50892901 0.67203701 -0.198248 -0.47185701 0.64968699\n\t\t -0.21139701 -0.47092599 0.63569301 -0.24244399 -0.50609797 0.65696597 -0.274831 -0.54561698 0.66745001\n\t\t -0.28758201 -0.53671199 0.65738797 -0.25623 -0.49851999 0.64725798 -0.22618499 -0.46451899 0.626674\n\t\t -0.24064399 -0.45374799 0.62350202 -0.270448 -0.48743999 0.64387202 -0.30157599 -0.52526802 0.65386498\n\t\t -0.31493199 -0.51282299 0.65746999 -0.34746099 -0.55376899 0.65856898 -0.28321201 -0.4743 0.64735502\n\t\t -0.25285399 -0.43998501 0.62667602 -0.212661 -0.42591 0.59125501 -0.22441 -0.411661 0.593885\n\t\t -0.198992 -0.389029 0.552661 -0.187609 -0.40364799 0.55069798 -0.197906 -0.43642801 0.59415698\n\t\t -0.172538 -0.41396901 0.55328298 -0.182144 -0.441883 0.60214299 -0.16746899 -0.44125101 0.614434\n\t\t -0.13987701 -0.41679499 0.57022297 -0.116711 -0.398173 0.52099299 -0.088618003 -0.377159 0.42325601\n\t\t -0.106948 -0.38107499 0.41916001 -0.133797 -0.40099999 0.51300901 -0.15588 -0.41867301 0.56001502\n\t\t -0.151223 -0.39686 0.50762498 -0.12533499 -0.37757799 0.41624701 -0.141158 -0.36754099 0.41484901\n\t\t -0.166601 -0.386684 0.5054 -0.17771 -0.37178901 0.50668401 -0.151998 -0.352285 0.41519299\n\t\t -0.48224801 -0.845406 0.47697401 -0.47335401 -0.81414503 0.608886 -0.150488 -0.42258799 0.64396602\n\t\t -0.185002 -0.45706099 0.68351001 -0.059953 -0.332102 0.43594 -0.063151002 -0.350721 0.43233901\n\t\t -0.05539 -0.344632 0.28356299 -0.280929 -0.55884099 0.099657997 -0.27139801 -0.57433701 0.122742\n\t\t -0.270448 -0.57467002 0.099657997 -0.25546601 -0.58503401 0.125949 -0.25461799 -0.58515197 0.099657997\n\t\t -0.23601399 -0.58893299 0.099657997 -0.217761 -0.58544099 0.132421 -0.217409 -0.58515197 0.099657997\n\t\t -0.20168599 -0.57500798 0.13468701 -0.236642 -0.58906698 0.129353 -0.20158 -0.57467002 0.099657997\n\t\t -0.191071 -0.559129 0.135747 -0.191098 -0.55884099 0.099657997 -0.187295 -0.54041499 0.135483\n\t\t -0.187317 -0.540236 0.099657997 -0.19123 -0.52168202 0.133876 -0.191098 -0.521631 0.099657997\n\t\t -0.20198099 -0.505768 0.131231 -0.20158 -0.50580198 0.099657997 -0.217409 -0.49532101 0.099657997\n\t\t -0.29559201 -0.52556801 0.224393 -0.27904499 -0.52099502 0.233328 -0.312262 -0.54334402 0.250323\n\t\t -0.29626399 -0.538535 0.25997201 -0.334342 -0.56730098 0.27900699 -0.318717 -0.56236601 0.28932101\n\t\t -0.345972 -0.57863498 0.26867899 -0.32449099 -0.55462903 0.241135 -0.308644 -0.53668898 0.216353\n\t\t -0.31607899 -0.55279201 0.21047901 -0.330915 -0.57082099 0.23385701 -0.35162199 -0.59482002 0.25996399\n\t\t -0.35072899 -0.613217 0.254114 -0.330872 -0.58932501 0.22950099 -0.317099 -0.57134199 0.20754699\n\t\t -0.31136599 -0.58964199 0.20812 -0.32417199 -0.607391 0.22885799 -0.34322101 -0.63103801 0.25215799\n\t\t -0.33053201 -0.64566499 0.25418001 -0.31208599 -0.62236702 0.231842 -0.29995599 -0.60500503 0.21196499\n\t\t -0.284345 -0.61494899 0.218612 -0.29626101 -0.631832 0.23810001 -0.31446001 -0.65473098 0.259967\n\t\t -0.29745701 -0.65719402 0.26850501 -0.27914199 -0.63464803 0.246571 -0.26698399 -0.618213 0.22696\n\t\t -0.26326501 -0.63014799 0.25604099 -0.25045601 -0.61401302 0.23579 -0.282038 -0.65247798 0.278597\n\t\t -0.244167 -0.60314399 0.27247199 -0.26449299 -0.625512 0.29748899 -0.265057 -0.607153 0.303491\n\t\t -0.243881 -0.58455098 0.27699199 -0.27236399 -0.58915102 0.305655 -0.285063 -0.574233 0.30378601\n\t\t -0.30138999 -0.56490499 0.297997 -0.278826 -0.54129702 0.26859599 -0.261406 -0.52407002 0.241816\n\t\t 0.62676001 -0.252166 0.53519702 0.57031202 -0.134303 0.65275699 0.65292501 -0.134303 0.665721\n\t\t 0.547777 -0.252166 0.53519702 0.62186998 -0.337892 0.434558 0.54356498 -0.337892 0.434558\n\t\t 0.61813402 -0.40634 0.298096 0.54034698 -0.40634 0.298096 0.59884799 -0.429187 0.118118\n\t\t 0.523736 -0.429187 0.118118 0.56248099 -0.50829703 -0.039827 0.464701 -0.50829703 -0.039827\n\t\t 0.53346002 -0.533795 -0.135113 0.416657 -0.533795 -0.135113 0.47533399 -0.61409003 -0.174941\n\t\t 0.542651 -0.61409003 -0.174941 0.28678 -0.252166 0.267764 0.29858801 -0.134303 0.267764\n\t\t 0.002482 -0.134303 0.267764 0.002482 -0.252166 0.267764 0.28457299 -0.25428501 0.182936\n\t\t 0.002482 -0.25428501 0.182936 0.28288701 -0.35280001 0.118118 0.002482 -0.35280001 0.118118\n\t\t 0.27418301 -0.429187 0.118118 0.002482 -0.429187 0.118118 0.24325 -0.438618 -0.135113\n\t\t 0.002482 -0.438618 -0.135113 0.21807601 -0.533795 -0.135113 0.002482 -0.533795 -0.135113\n\t\t 0.002482 -0.61409003 -0.174941 0.248822 -0.61409003 -0.174941 -0.213112 -0.533795 -0.135113\n\t\t -0.24385799 -0.61409003 -0.174941 -0.238287 -0.438618 -0.135113 -0.26921901 -0.429187 0.118118\n\t\t -0.27792299 -0.35280001 0.118118 -0.27960899 -0.25428501 0.182936 -0.28181601 -0.252166 0.267764\n\t\t -0.29362401 -0.134303 0.267764 -0.56534803 -0.134303 0.65275699 -0.542813 -0.252166 0.53519702\n\t\t -0.62179601 -0.252166 0.53519702 -0.64796102 -0.134303 0.665721 -0.61690599 -0.337892 0.434558\n\t\t -0.53860098 -0.337892 0.434558 -0.61317003 -0.40634 0.298096 -0.53538299 -0.40634 0.298096\n\t\t -0.59388399 -0.429187 0.118118 -0.51877201 -0.429187 0.118118 -0.55751699 -0.50829703 -0.039827\n\t\t -0.45973799 -0.50829703 -0.039827 -0.52849603 -0.533795 -0.135113 -0.41169301 -0.533795 -0.135113\n\t\t -0.47036999 -0.61409003 -0.174941 -0.537687 -0.61409003 -0.174941 -0.47036999 -0.665057 -0.26135099\n\t\t -0.218114 -0.665057 -0.462657 0.002482 -0.68499798 -0.487387;\n\tsetAttr \".vt[8632:8797]\" 0.223078 -0.665057 -0.462657 0.47533399 -0.665057 -0.26135099\n\t\t 0.171923 -0.665057 -0.52883399 0.002482 -0.68499798 -0.54675198 -0.166959 -0.665057 -0.52883399\n\t\t 0.127359 -0.665057 -0.68153602 0.002482 -0.68499798 -0.683734 -0.122395 -0.665057 -0.68153602\n\t\t 0.65217698 -0.047063999 0.665721 0.56966799 -0.047065001 0.665721 0.29824999 -0.047065001 0.267764\n\t\t 0.002482 -0.047065001 0.267764 -0.29328701 -0.047065001 0.267764 -0.564704 -0.047065001 0.665721\n\t\t -0.64721298 -0.047065001 0.665721 0.65101397 0.047538001 0.69166201 0.56866699 0.047538001 0.69166201\n\t\t 0.29772601 0.088652998 0.73233497 0.002482 0.088652998 0.78701901 -0.64605099 0.047538001 0.69166201\n\t\t -0.563703 0.047538001 0.69166201 -0.29276201 0.088652998 0.73233497 -0.56312501 0.067919001 0.71900499\n\t\t -0.29245901 0.067919001 0.95603001 0.65034401 0.067919001 0.71900499 0.56808901 0.067919001 0.719006\n\t\t 0.29742301 0.067919001 0.95603001 0.002482 0.067919001 1.086469054 -0.64538002 0.067919001 0.719006\n\t\t 0.002482 -0.25428501 0.182936 -0.27960899 -0.25428501 0.182936 -0.27960899 -0.25428501 0.182936\n\t\t -0.30686101 -0.540236 0.018964 -0.30126399 -0.56726301 0.018964 0.30696899 -0.50012898 -0.531959\n\t\t 0.32491499 -0.53486502 -0.52574903 0.737275 0.162494 0.075328 0.73897898 0.166758 0.077288002\n\t\t 0.73897898 0.166758 0.077288002 0.66478097 -0.310175 0.214945 0.66478097 -0.310175 0.214945\n\t\t 0.66792101 -0.179885 0.26280501 0.61199498 -0.48309001 0.030941 0.61199498 -0.48309001 0.030941\n\t\t 0.57950503 -0.52175802 -0.056274001 0.741265 0.16932701 0.074568003 0.741265 0.16932701 0.074568003\n\t\t 0.74144101 0.17481001 0.082200997 0.32993001 -0.573892 -0.521393 0.64031303 0.533149 -0.00148\n\t\t 0.703426 0.490127 0.029224001 0.703426 0.490127 0.029224001 0.32734799 -0.59355003 -0.52008098\n\t\t 0.32734799 -0.59355003 -0.52008098 0.670178 -0.066248 0.312264 0.670178 -0.066248 0.312264\n\t\t -0.16688199 -0.106117 -0.68398201 -0.168827 -0.163173 -0.68275303 -0.238287 -0.438618 -0.135113\n\t\t -0.238287 -0.438618 -0.135113 -0.45973799 -0.50829703 -0.039827 -0.45973799 -0.50829703 -0.039827\n\t\t 0.34865001 -0.53398299 0.214746 0.35571301 -0.49923599 0.214746 0.040445 -0.69080597 -0.81278199\n\t\t 0.017911 -0.69080597 -0.81278199 0.66393101 -0.170187 0.23895 0.66969699 -0.046399001 0.289085\n\t\t 0.34865001 -0.53398299 0.24992 0.35571301 -0.49923599 0.24992 0.44804499 -0.82486999 -0.07096\n\t\t 0.44804499 -0.774019 -0.070960999 -0.177498 -0.164046 -0.685395 -0.16845 -0.20872401 -0.67539603\n\t\t -0.51877201 -0.429187 0.118118 -0.51877201 -0.429187 0.118118 -0.51877201 -0.429187 0.118118\n\t\t -0.19731 0.84106201 0.62710398 -0.098784 0.85248601 0.66339898 0.002482 -0.429187 0.118118\n\t\t -0.26921901 -0.429187 0.118118 0.32518101 0.77933198 0.39072299 0.18185601 0.84793103 0.469459\n\t\t -0.524405 -0.38734099 -0.25089601 -0.53233403 -0.380018 -0.241285 -0.53233403 -0.380018 -0.241285\n\t\t -0.13954499 0.167722 1.14470899 -0.13800099 0.172405 1.146999 -0.377087 0.78028202 0.57064998\n\t\t 0.33282301 -0.49403399 -0.397926 0.298143 -0.512411 -0.42076901 -0.235494 -0.45833999 -0.53647602\n\t\t -0.27150801 -0.47295001 -0.52894199 0.362064 -0.47551501 -0.37499401 -0.171517 -0.22396301 -0.67061901\n\t\t -0.171517 -0.22396301 -0.67061901 -0.1736 -0.22306301 -0.66990697 -0.1736 -0.22306301 -0.66990697\n\t\t 0.73957098 0.165068 0.072605997 -0.33135399 -0.53398299 0.25723299 -0.33937401 -0.57344198 0.25723299\n\t\t -0.537916 -0.53398299 0.28216001 -0.52989602 -0.57344198 0.28216001 -0.286111 -0.59033298 0.018964\n\t\t -0.49068901 0.479332 -0.27864301 -0.49068901 0.479332 -0.27864301 -0.468669 0.483457 -0.27981499\n\t\t 0.32095599 0.132631 1.024767995 0.30796599 0.132614 1.035984993 0.297867 -0.483347 0.070440002\n\t\t 0.31507501 -0.50954401 0.070440002 0.440281 -0.77170402 -0.060469002 0.440281 -0.77170402 -0.060469002\n\t\t 0.46292299 -0.77714598 -0.043714002 0.46292299 -0.77714598 -0.043714002 0.46495399 -0.379841 -0.297389\n\t\t 0.417878 -0.41475499 -0.33458 0.32814401 -0.57296801 -0.51106399 0.325562 -0.59262699 -0.50975198\n\t\t -0.27792299 -0.35280001 0.118118 -0.27792299 -0.35280001 0.118118 -0.27792299 -0.35280001 0.118118\n\t\t -0.39755401 -0.56488699 -0.29444599 -0.47417399 -0.51397902 -0.184185 0.47434601 -0.45009601 0.289473\n\t\t 0.50391001 -0.46967199 0.289473 -0.65408701 -0.33073801 0.27653801 -0.65408701 -0.33073801 0.27653801\n\t\t -0.65454698 -0.333814 0.256441 -0.36852899 -0.430949 -0.37268299 -0.36852899 -0.430949 -0.37268299\n\t\t -0.36852899 -0.430949 -0.37268299 -0.32938901 -0.42843899 -0.380647 0.52348602 -0.49923599 0.289473\n\t\t -0.50766599 -0.46095201 0.25723299 -0.52989602 -0.494524 0.25723299 0.25198099 -0.33270201 -0.53362203\n\t\t 0.25198099 -0.33270201 -0.53362203 0.23987199 -0.329005 -0.53159201 -0.24385799 -0.61409003 -0.174941\n\t\t -0.47036999 -0.61409003 -0.174941 0.671422 -0.32667199 0.13388 0.67926103 -0.29002699 0.153432\n\t\t -0.35074899 -0.49923599 0.24992 -0.34368601 -0.53398299 0.24992 0.002482 -0.438618 -0.135113\n\t\t -0.16535001 -0.48122299 -0.54655898 -0.150747 -0.49079499 -0.54822803 0.060584001 -0.82948703 -0.77383298\n\t\t 0.040445 -0.82948703 -0.77666497 -0.54360503 -0.457634 -0.061200999 -0.646954 -0.34963 0.30305901\n\t\t -0.64795798 -0.371425 0.26743001 0.63198298 -0.436573 0.061292 0.72900099 0.173724 0.065412998\n\t\t 0.72900099 0.173724 0.065412998 -0.370381 -0.48736501 -0.36952499 -0.404237 -0.46474299 -0.34137699\n\t\t -0.16370501 -0.063395001 -0.67959303 -0.163822 -0.054627001 -0.67640001 0.51262999 -0.46095201 0.28216001\n\t\t 0.53486001 -0.494524 0.28216001 -0.46938199 -0.45009601 0.289473 -0.49894601 -0.46967199 0.289473\n\t\t -0.26304099 -0.60548598 0.018964 0.15358201 -0.31302601 -0.61642897;\n\tsetAttr \".vt[8798:8963]\" 0.144079 -0.38547301 -0.57706499 0.27167001 -0.46613899 0.070440002\n\t\t 0.36707801 -0.82092398 -0.113986 0.140838 -0.82092398 0.19176 0.140838 -0.82092398 0.19176\n\t\t 0.37313399 -0.81750602 -0.12217 0.37313399 -0.81750602 -0.12217 -0.53860098 -0.337892 0.434558\n\t\t -0.171103 -0.209723 -0.67686599 -0.16948 -0.223061 -0.67140698 -0.16948 -0.223061 -0.67140698\n\t\t 0.37528899 -0.46967199 0.214746 0.002482 -0.61409003 -0.174941 0.61979401 -0.46517 0.057004001\n\t\t 0.37417999 0.175504 1.025614977 0.36960801 0.157626 1.020292997 0.227604 -0.78252602 -0.229856\n\t\t 0.65324497 -0.31158999 0.17576601 0.62462199 -0.44725001 0.083067998 0.62462199 -0.44725001 0.083067998\n\t\t -0.26304099 -0.60548598 0.045821998 -0.23601399 -0.61108297 0.045821998 0.37283701 0.192065 1.035364985\n\t\t 0.67039502 -0.32312199 0.223471 0.67039502 -0.32312199 0.223471 0.67283899 -0.310321 0.21554001\n\t\t 0.67283899 -0.310321 0.21554001 0.359496 0.180879 1.016487002 0.35829601 0.19567899 1.025200009\n\t\t 0.62458998 -0.41600999 0.036486 -0.35074899 -0.56873 0.24992 -0.50044602 0.470283 -0.27631\n\t\t 0.240458 -0.45833999 -0.53647602 0.276472 -0.47295001 -0.52894199 0.649234 -0.42258099 0.16891401\n\t\t 0.65196502 -0.408932 0.19922701 -0.445133 0.47583899 -0.279053 -0.445133 0.47583899 -0.279053\n\t\t -0.36160499 -0.607014 0.25723299 0.165611 0.219767 -0.570979 0.165611 0.219767 -0.570979\n\t\t 0.165611 0.219767 -0.570979 0.32061699 0.290867 -0.46031901 0.26332501 -0.65872401 -0.52532399\n\t\t 0.23046 -0.66962898 -0.53003198 -0.136905 0.175258 1.15449703 -0.140659 0.171248 1.15192699\n\t\t -0.13247 0.15447 1.14109695 -0.127405 0.152558 1.14158905 -0.29290301 -0.483347 0.070440002\n\t\t -0.31011099 -0.50954401 0.070440002 0.67826098 -0.18075199 0.26338801 0.37528899 -0.59829301 0.24992\n\t\t 0.35571301 -0.56873 0.24992 0.43959901 -0.62493199 0.24992 0.404852 -0.61786997 0.24992\n\t\t -0.57454097 -0.52175802 -0.056274001 -0.60703099 -0.48309001 0.030941 -0.60703099 -0.48309001 0.030941\n\t\t -0.56048501 -0.44042 -0.026773 -0.30200499 -0.50012898 -0.531959 -0.319951 -0.53486502 -0.52574903\n\t\t 0.71520698 0.121507 0.070548996 0.72012901 0.127151 0.064956002 0.65951103 -0.333814 0.256441\n\t\t 0.66042697 -0.33127001 0.23810101 -0.23601399 -0.46938899 0.045821998 -0.208987 -0.47498599 0.045821998\n\t\t 0.72316301 0.13108499 0.064810999 -0.29449701 -0.622253 -0.511617 -0.28393701 -0.63624698 -0.512191\n\t\t -0.48916101 0.58215803 0.85477901 -0.37867701 0.59511501 0.97269702 0.455291 -0.82597399 -0.050400998\n\t\t 0.46302101 -0.77973402 -0.044681001 0.29858801 -0.134303 0.267764 0.29824999 -0.047065001 0.267764\n\t\t 0.29824999 -0.047065001 0.267764 -0.43463501 -0.63726401 0.25723299 -0.474094 -0.62924403 0.25723299\n\t\t -0.29363301 -0.64511299 -0.50972199 -0.26263499 -0.66952997 -0.51289898 -0.30559501 -0.62926 -0.50907099\n\t\t 0.599783 -0.023362 -0.19389901 0.60280102 -0.0069900001 -0.18827 0.164051 0.22458699 -0.57115\n\t\t 0.319956 0.29664299 -0.46199799 -0.467583 0.48253599 -0.287938 -0.440716 0.47468099 -0.28698301\n\t\t -0.440716 0.47468099 -0.28698301 0.64644498 -0.40248001 0.085004002 0.70439601 0.124654 0.050547\n\t\t 0.70439601 0.124654 0.050547 0.70662898 0.12879901 0.05091 -0.169861 -0.227507 -0.66022402\n\t\t -0.169861 -0.227507 -0.66022402 0.682015 -0.067580998 0.31242499 0.682015 -0.067580998 0.31242499\n\t\t 0.191395 -0.68068302 -0.525078 0.15538099 -0.66607398 -0.53261203 0.37528899 -0.59829402 0.214746\n\t\t 0.35571301 -0.56873 0.214746 -0.28857899 -0.49186799 -0.42922401 -0.204027 -0.53449601 -0.484079\n\t\t -0.112209 0.16051 1.15469205 -0.113937 0.15527 1.15213001 -0.582039 0.051500998 -0.146312\n\t\t -0.54596102 0.051500998 -0.14678 0.31507501 -0.50954401 0.051406 0.32143199 -0.540236 0.051406\n\t\t 0.352 0.206964 1.03649497 0.47434601 -0.61786902 0.24992 0.577079 -0.024255 -0.192044\n\t\t 0.57987899 -0.012003 -0.186757 0.57987899 -0.012003 -0.186757 0.31507501 -0.57092798 0.051406\n\t\t -0.93002701 0.103135 0.648332 -0.93002701 0.103135 0.648332 -0.91662401 0.11712 0.64334899\n\t\t 0.168376 -0.75532299 -0.58524799 0.168376 -0.75532299 -0.46830001 0.302858 0.19560599 1.073071003\n\t\t 0.314933 0.20691501 1.068503022 0.60716599 0.019556001 -0.179204 -0.444316 0.471834 -0.28542101\n\t\t -0.444316 0.471834 -0.28542101 -0.42488399 0.44663101 -0.28105399 -0.34324601 -0.44414201 -0.39261699\n\t\t -0.31973901 -0.46035001 -0.41030699 -0.16107599 -0.47041699 -0.55898499 -0.19830699 -0.45806301 -0.55365098\n\t\t -0.51085699 0.342949 -0.22426599 -0.48806199 0.34026 -0.223465 0.461557 -0.77596903 -0.041609\n\t\t 0.236496 -0.72332799 0.26254401 0.236496 -0.72332799 0.26254401 -0.134646 0.175989 1.14929605\n\t\t 0.19034 -0.063948996 -0.661924 0.189046 -0.10591 -0.66731697 -0.75678802 0.42266899 0.150406\n\t\t -0.75678802 0.42266899 0.150406 -0.73157799 0.42746001 0.135354 -0.73157799 0.42746001 0.135354\n\t\t -0.93520403 0.103159 0.63396102 -0.93520403 0.103159 0.63396102 -0.92178202 0.117114 0.62913197\n\t\t 0.349282 -0.49657199 0.205772 0.370359 -0.46474299 0.205772 0.237581 -0.471378 -0.53580803\n\t\t 0.269371 -0.484274 -0.52915698 0.21373001 -0.71785498 0.245698 0.21373001 -0.71785498 0.245698\n\t\t -0.147697 -0.63780302 -0.071073003 -0.147697 -0.63780302 -0.071073003 0.002482 -0.63780397 -0.071073003\n\t\t -0.58560097 -0.36272401 -0.061728001 -0.59012902 -0.34748399 -0.047731999 -0.50766599 -0.60701299 0.28216001\n\t\t -0.598903 0.55514902 0.68462002 -0.54855198 0.57043803 0.77200401 -0.66645801 -0.32667199 0.13388\n\t\t -0.67429698 -0.29002699 0.153432 -0.276393 -0.457279 -0.41622099 0.40218899 -0.44366601 0.205772\n\t\t 0.91118503 -0.11157 0.60215902 0.91118503 -0.11157 0.60215902;\n\tsetAttr \".vt[8964:9129]\" 0.91187501 -0.108144 0.60327399 -0.165167 -0.540236 0.076025002\n\t\t -0.170764 -0.51320899 0.076025002 -0.147697 -0.56099802 -0.14413901 -0.23601399 -0.61658001 0.012081\n\t\t -0.20689 -0.61054897 0.012081 -0.93366802 0.056258999 0.51964498 0.69485801 0.253407 -0.068510003\n\t\t 0.69485801 0.253407 -0.068510003 0.68348998 0.23661201 -0.069121003 -0.51852202 -0.56873 0.289473\n\t\t -0.49894601 -0.59829301 0.289473 0.075107001 -0.71681499 -0.80371898 -0.30632699 -0.56936002 0.012081\n\t\t -0.28999799 -0.59421998 0.012081 0.26800501 -0.47498599 0.076025002 0.29107401 -0.49013999 0.076024003\n\t\t 0.240978 -0.46938899 0.076024003 0.89681798 -0.110218 0.60083997 -0.41286099 -0.45341399 -0.34763101\n\t\t -0.351408 -0.49285001 -0.396467 0.53648901 0.0030380001 -0.25570399 0.512797 -0.032738 -0.30744699\n\t\t -0.117692 0.151261 1.14955997 -0.273294 -0.47387299 -0.539271 -0.165167 -0.540236 0.088372998\n\t\t -0.170764 -0.51320899 0.088372998 0.248822 -0.61409003 -0.174941 0.89689702 -0.112276 0.59539801\n\t\t 0.91132897 -0.112971 0.597601 0.91132897 -0.112971 0.597601 0.20148499 -0.45714 -0.54332298\n\t\t -0.52495199 -0.57139301 0.210595 -0.50387502 -0.60322303 0.210595 -0.122922 0.149068 1.14735794\n\t\t -0.46938199 -0.61786902 0.289473 0.28999999 0.16481701 1.068214059 0.294085 0.180793 1.072970033\n\t\t -0.57764399 -0.202305 -0.24870101 -0.63840598 0.051188 -0.160799 -0.63840598 0.051188 -0.160799\n\t\t -0.167843 -0.228487 -0.66065401 -0.167843 -0.228487 -0.66065401 -0.532556 -0.53398299 0.210595\n\t\t 0.13140801 0.86588103 0.497991 0.002481 0.876028 0.50882602 0.47434601 -0.45009601 0.24992\n\t\t 0.43959901 -0.44303399 0.24992 -0.50743699 0.451193 -0.279443 -0.51399302 0.42432901 -0.27195001\n\t\t 0.24325 -0.438618 -0.135113 0.24325 -0.438618 -0.135113 0.35344499 0.74509799 0.47134599\n\t\t 0.194601 0.79508299 0.59609401 0.65392601 -0.39322001 0.2318 0.65292197 -0.371425 0.26743001\n\t\t 0.479058 -0.43872201 0.25723299 0.43959901 -0.430702 0.25723299 0.185423 0.85288203 0.483733\n\t\t -0.55798298 -0.378699 -0.179627 -0.57494098 -0.27331901 -0.20648199 0.29120001 0.15001699 1.059501052\n\t\t 0.92436498 -0.080376998 0.54885697 0.91276699 -0.11017 0.59041703 -0.45998999 -0.379841 -0.297389\n\t\t -0.48319501 -0.36091399 -0.27701399 -0.48319501 -0.36091399 -0.27701399 -0.52495199 -0.49657199 0.210595\n\t\t -0.43813899 0.466842 -0.30101001 -0.43813899 0.466842 -0.30101001 -0.438844 0.45965299 -0.30853\n\t\t -0.438844 0.45965299 -0.30853 -0.31443599 -0.47879201 -0.412404 0.323129 -0.53394198 -0.51542097\n\t\t 0.668607 -0.33073199 0.238157 0.66806501 -0.33321899 0.25604799 -0.51287299 -0.50112301 -0.13963\n\t\t -0.49729601 -0.499872 -0.12744901 0.63929302 -0.386114 0.059440002 0.66374099 -0.31118399 0.108426\n\t\t -0.41825899 0.44259599 -0.293363 -0.41825899 0.44259599 -0.293363 -0.40993801 0.40912801 -0.28516099\n\t\t -0.41291401 -0.41475499 -0.33458 0.163863 -0.063979998 -0.67156601 0.16447499 -0.052777998 -0.66900802\n\t\t -0.41991699 0.44964901 -0.282747 -0.41991699 0.44964901 -0.282747 -0.32234901 -0.52256501 -0.419736\n\t\t -0.36133999 -0.50169599 -0.39390799 0.170131 -0.540236 0.0089410003 0.17572799 -0.51320899 0.0089410003\n\t\t 0.16908699 -0.045467 -0.66564 0.16908699 -0.045467 -0.66564 0.17588 -0.042783 -0.66248298\n\t\t 0.17588 -0.042783 -0.66248298 -0.48950899 0.46915001 -0.30564201 -0.48567101 0.462311 -0.31386301\n\t\t -0.48567101 0.462311 -0.31386301 0.92771798 -0.070128001 0.53970301 0.29749599 0.138731 1.048205972\n\t\t 0.183037 -0.045465998 -0.66056198 0.183037 -0.045465998 -0.66056198 -0.44853899 -0.358776 -0.281243\n\t\t -0.73181802 0.238548 -0.086033002 -0.71078199 0.194932 -0.089322999 0.157167 -0.66699702 -0.54294097\n\t\t 0.141647 -0.65516597 -0.54668301 -0.043850999 -0.42581099 -0.62495899 0.002482 -0.42135799 -0.626284\n\t\t 0.16803201 0.121588 -0.61194497 0.1618 0.218257 -0.57528901 0.1618 0.218257 -0.57528901\n\t\t -0.52221799 -0.50667 -0.145537 -0.52221799 -0.50667 -0.145537 0.28288701 -0.35280001 0.118118\n\t\t 0.28288701 -0.35280001 0.118118 0.28288701 -0.35280001 0.118118 0.002482 -0.35280001 0.118118\n\t\t 0.344338 -0.494524 0.28216001 0.36656901 -0.46095201 0.28216001 -0.63432902 -0.386114 0.059440002\n\t\t -0.658777 -0.31118399 0.108426 -0.17212901 -0.221753 -0.66090602 -0.62030399 0.051189002 -0.169065\n\t\t -0.62030399 0.051189002 -0.169065 -0.56108099 -0.198434 -0.25492299 -0.56405401 -0.57470298 -0.15505099\n\t\t -0.53460401 -0.54072702 -0.143967 -0.53460401 -0.54072702 -0.143967 0.47905701 -0.62924403 0.28216001\n\t\t 0.43959901 -0.63726401 0.28216001 -0.67843199 0.228542 -0.107815 -0.64850402 0.185664 -0.113489\n\t\t 0.57031202 -0.134303 0.65275699 0.57031202 -0.134303 0.65275699 0.57031202 -0.134303 0.65275699\n\t\t 0.56966799 -0.047065001 0.665721 0.56966799 -0.047065001 0.665721 0.63115901 -0.42638999 0.098222002\n\t\t -0.50387502 -0.46474299 0.210595 0.40013999 -0.62924403 0.28216001 -0.64113402 -0.293246 0.36152601\n\t\t -0.63531399 -0.236862 0.419994 0.17151 0.060378 -0.63351703 -0.57814598 -0.258196 -0.20545501\n\t\t 0.15480299 -0.237498 -0.667579 0.15480299 -0.237498 -0.667579 0.149169 -0.237497 -0.652098\n\t\t 0.33631799 -0.53398299 0.25723299 0.344338 -0.49452499 0.25723299 -0.200001 -0.47124201 -0.55217999\n\t\t -0.234403 -0.47230199 -0.54613698 -0.18203001 -0.48625299 0.015823999 -0.20689 -0.469924 0.015823999\n\t\t 0.17147 0.06013 -0.63023698 0.168017 0.121245 -0.60869002 0.37614 0.217648 1.045779943\n\t\t 0.360448 0.226816 1.064097047 0.27418301 -0.429187 0.118118 -0.160419 -0.210253 -0.671763\n\t\t -0.161145 -0.225297 -0.66762501 0.17921101 -0.223447 -0.65961099 0.175816 -0.23036499 -0.65895098\n\t\t 0.175816 -0.23036499 -0.65895098 -0.42076799 0.65064001 0.82480198;\n\tsetAttr \".vt[9130:9295]\" -0.40268099 0.65525597 0.83931798 -0.40268099 0.65525597 0.83931798\n\t\t 0.37156001 -0.755521 -0.110916 0.37156001 -0.755521 -0.110916 0.37855101 -0.75720102 -0.105743\n\t\t 0.37855101 -0.75720102 -0.105743 -0.85580999 0.055785 0.73550302 -0.848463 0.043839999 0.74138999\n\t\t -0.60512602 -0.29646 -0.022046 0.53346002 -0.533795 -0.135113 0.416657 -0.533795 -0.135113\n\t\t 0.182218 -0.209289 -0.66209197 -0.37825099 0.64146602 0.83841801 -0.53256297 -0.51357597 -0.150526\n\t\t -0.53256297 -0.51357597 -0.150526 0.33631799 -0.53398299 0.28216001 -0.26304099 -0.47498599 0.076025002\n\t\t -0.286111 -0.49013999 0.076024003 0.36579201 0.204693 1.048004031 0.35407501 0.211538 1.061679006\n\t\t -0.114121 0.15812699 1.14717996 -0.117476 0.154543 1.14488399 0.170131 -0.540236 0.018964\n\t\t 0.17572799 -0.51320899 0.018964 0.28678 -0.252166 0.267764 0.28678 -0.252166 0.267764\n\t\t 0.28678 -0.252166 0.267764 0.002482 -0.252166 0.267764 0.47533399 -0.61409003 -0.174941\n\t\t 0.47533399 -0.61409003 -0.174941 0.542651 -0.61409003 -0.174941 0.18776201 -0.163242 -0.66727197\n\t\t -0.30126399 -0.51320899 0.076025002 -0.12215 0.152584 1.14291596 -0.16191299 -0.20927 -0.66768003\n\t\t -0.162361 -0.223442 -0.66393799 -0.55071503 -0.64955401 -0.143382 -0.56233698 -0.63640398 -0.149737\n\t\t 0.47434601 -0.45009601 0.214746 0.50391001 -0.46967199 0.214746 -0.71585101 0.33555499 -0.111613\n\t\t -0.72443801 0.29043201 -0.099207997 0.523736 -0.429187 0.118118 0.523736 -0.429187 0.118118\n\t\t 0.523736 -0.429187 0.118118 0.464701 -0.50829703 -0.039827 0.464701 -0.50829703 -0.039827\n\t\t 0.17241199 -0.232015 -0.65966302 0.17241199 -0.232015 -0.65966302 0.320586 0.217575 1.093750954\n\t\t 0.30249 0.200626 1.10059905 0.29354301 -0.49186799 -0.42922401 0.31940001 -0.47879201 -0.412404\n\t\t -0.095239997 -0.43914801 -0.61966002 0.50391001 -0.46967199 0.24992 0.52348602 -0.49923599 0.24992\n\t\t -0.088141002 -0.59087098 -0.69546002 -0.063895002 -0.579584 -0.69954699 -0.165701 -0.51111197 0.015823999\n\t\t -0.512173 0.34118599 -0.24293 -0.48418701 0.33799899 -0.24087501 -0.64648002 0.05294 -0.100549\n\t\t -0.64648002 0.05294 -0.100549 -0.64324301 0.051500998 -0.102032 -0.64324301 0.051500998 -0.102032\n\t\t 0.33105299 0.121514 1.034881949 0.34628001 0.12839501 1.025292039 -0.56783497 -0.61834598 -0.153238\n\t\t 0.405947 0.72084898 0.31274 0.43630001 0.68547201 0.25834101 -0.23601399 -0.45978299 0.051406\n\t\t -0.205322 -0.46613899 0.051406 -0.30968201 -0.59090298 -0.54476899 -0.30895701 -0.59241998 -0.55302\n\t\t -0.30895701 -0.59241998 -0.55302 0.366568 -0.60701299 0.28216001 0.344338 -0.57344103 0.28216001\n\t\t 0.193048 -0.063169003 -0.66074002 0.191756 -0.106131 -0.66634798 0.53054798 -0.53398299 0.24992\n\t\t -0.52692902 0.63088202 0.67638099 -0.54435599 0.62592399 0.63955802 -0.73621798 0.47215199 0.321511\n\t\t -0.73621798 0.47215199 0.321511 -0.744214 0.47209999 0.32761899 -0.744214 0.47209999 0.32761899\n\t\t 0.31651801 0.121495 1.047433972 0.72206903 0.42798701 0.037663002 0.73534399 0.36765999 0.043203\n\t\t -0.46444699 -0.085816003 -0.38417 -0.44391999 -0.105277 -0.41228199 0.169002 -0.23330399 -0.664294\n\t\t 0.169002 -0.23330399 -0.664294 0.166109 -0.225297 -0.66762501 0.169376 -0.23036499 -0.66129601\n\t\t 0.169376 -0.23036499 -0.66129601 0.333985 0.783454 0.40253299 -0.316468 -0.540236 0.070440002\n\t\t -0.31011099 -0.57092798 0.070440002 -0.72934699 0.48510301 0.384644 -0.68488699 0.51569003 0.51877201\n\t\t 0.20899101 -0.53449601 -0.484079 0.28457299 -0.25428501 0.182936 0.28457299 -0.25428501 0.182936\n\t\t 0.21395101 -0.47498599 0.076025002 0.167325 -0.223442 -0.66393799 -0.284888 -0.54098397 -0.44269401\n\t\t -0.70555401 -0.035130002 0.25996599 -0.70775998 0.037702002 0.28878599 0.002482 -0.365713 -0.62640297\n\t\t 0.050985999 -0.36922899 -0.62539399 -0.38626599 -0.43360299 -0.35486901 -0.38626599 -0.43360299 -0.35486901\n\t\t -0.38626599 -0.43360299 -0.35486901 -0.347229 -0.43120301 -0.36305401 0.106434 -0.38055101 -0.62169898\n\t\t 0.106434 -0.38055101 -0.62169898 0.114367 0.152559 1.15216506 0.112052 0.159578 1.15559602\n\t\t -0.68980002 0.24533699 -0.105835 -0.68980002 0.24533699 -0.105835 -0.23601399 -0.45978299 0.070440002\n\t\t -0.205322 -0.46613899 0.070440002 0.29859701 -0.64511299 -0.50972199 0.267598 -0.66952997 -0.51289898\n\t\t 0.49460801 -0.057128001 -0.34271801 0.173235 -0.23554701 -0.66201401 0.173235 -0.23554701 -0.66201401\n\t\t -0.105486 -0.34706801 -0.62837702 -0.109809 -0.334324 -0.63095403 -0.109809 -0.334324 -0.63095403\n\t\t 0.52348602 -0.49923599 0.214746 -0.81764799 -0.084311001 0.73657799 -0.71960098 0.48560101 0.379787\n\t\t -0.53675503 -0.66244298 -0.135003 -0.55474198 -0.65566099 -0.144761 0.29946101 -0.622253 -0.511617\n\t\t 0.288901 -0.63624698 -0.512191 -0.27705699 -0.62936503 -0.39504001 -0.24316999 -0.642582 -0.421435\n\t\t -0.66747302 -0.27484301 0.127588 0.34821001 -0.44414201 -0.39261699 0.37349299 -0.430949 -0.37268299\n\t\t 0.37349299 -0.430949 -0.37268299 0.37349299 -0.430949 -0.37268299 0.274212 -0.475537 -0.41811901\n\t\t 0.29775599 0.14096899 1.073747993 0.30480099 0.128341 1.061108947 0.21807601 -0.533795 -0.135113\n\t\t 0.32889199 0.779383 0.39685601 0.18301301 0.84795803 0.47598499 -0.29290301 -0.59712499 0.070440002\n\t\t -0.26670599 -0.61433297 0.070440002 -0.89547998 0.105007 0.42807901 -0.89547998 0.105007 0.42807901\n\t\t -0.89547998 0.105007 0.42807901 -0.58841699 -0.049747001 -0.203115 -0.52885801 -0.262086 -0.276595\n\t\t -0.52885801 -0.262086 -0.276595 -0.69043499 -0.14394701 0.18320601 -0.55916202 -0.262833 -0.26851901\n\t\t -0.533871 -0.65546298 -0.134618 -0.59481901 -0.023362 -0.19389901 -0.59783697 -0.0069909999 -0.18827\n\t\t 0.17823599 -0.064476997 -0.65598297 0.17489401 0.063827001 -0.62387699;\n\tsetAttr \".vt[9296:9461]\" 0.17148399 0.124216 -0.60223198 0.17148399 0.124216 -0.60223198\n\t\t 0.17148399 0.124216 -0.60223198 -0.49326399 0.47755 -0.28663701 -0.49326399 0.47755 -0.28663701\n\t\t 0.167475 -0.042592999 -0.66546398 0.175631 -0.039365001 -0.66164702 0.13340101 -0.63391399 -0.679811\n\t\t 0.133644 -0.57722503 -0.68178397 -0.655325 0.031597 -0.050788 -0.646559 0.033291001 -0.103813\n\t\t -0.646559 0.033291001 -0.103813 -0.646559 0.033291001 -0.103813 0.28135699 -0.457279 -0.41622099\n\t\t 0.32470301 -0.46035001 -0.41030699 -0.42129901 -0.124694 -0.44042501 0.53054798 -0.53398299 0.214746\n\t\t -0.18203101 -0.59421998 0.015823999 -0.165702 -0.56936097 0.015823999 -0.66820598 0.027140001 0.105426\n\t\t -0.66820598 0.027140001 0.105426 -0.66820598 0.027140001 0.105426 -0.66614801 0.028522 0.053831\n\t\t -0.370325 -0.46967199 0.20162 -0.35074899 -0.49923599 0.20162 -0.54952401 0.56668699 0.77325797\n\t\t -0.49016601 0.57844102 0.85610598 0.311039 -0.52425998 -0.415301 0.22217301 -0.56759799 -0.46927199\n\t\t 0.22217301 -0.56759799 -0.46927199 -0.636778 0.028623 0.108768 0.38056999 -0.79959899 -0.108471\n\t\t 0.37855101 -0.80989897 -0.105743 0.37855101 -0.80989897 -0.105743 0.166933 -0.038214002 -0.66829598\n\t\t 0.176489 -0.034474 -0.66378897 0.174825 -0.227507 -0.66022402 0.174825 -0.227507 -0.66022402\n\t\t 0.17280699 -0.228487 -0.66065401 0.17280699 -0.228487 -0.66065401 -0.51852202 -0.56873 0.24992\n\t\t -0.49894601 -0.59829301 0.24992 0.35571301 -0.56873 0.289473 0.34865001 -0.53398299 0.289473\n\t\t -0.69605398 -0.15720899 0.21115001 0.163444 -0.244367 -0.64774698 0.742836 0.30628499 0.037165001\n\t\t 0.74920201 0.240942 0.039235 -0.56718802 -0.001835 -0.18312301 -0.55645102 -0.001832 -0.20682\n\t\t 0.53486001 -0.57344198 0.28216001 0.51262999 -0.60701299 0.28216001 0.103348 -0.37604699 -0.58242399\n\t\t -0.35074899 -0.49923599 0.214746 -0.370325 -0.46967199 0.214746 0.17339399 -0.13994899 -0.66810101\n\t\t 0.151907 -0.37584901 0.28618801 0.129705 -0.38961199 0.28619 -0.542472 -0.001836 -0.233547\n\t\t -0.542472 -0.001836 -0.233547 0.186599 -0.038214002 -0.661138 -0.52558398 -0.53398299 0.24992\n\t\t 0.52348602 -0.56873 0.289473 0.50391001 -0.59829301 0.289473 0.18424 -0.042592999 -0.65936202\n\t\t 0.240978 -0.61108398 0.0089410003 0.21395101 -0.60548598 0.0089410003 0.31129101 -0.51111197 0.012081\n\t\t 0.31732199 -0.540236 0.012081 0.54288 -0.53398299 0.28216001 -0.70111603 -0.018796001 0.233419\n\t\t 0.33954 0.211519 1.074231029 0.32431301 0.204639 1.083821058 -0.53398103 -0.54087597 -0.128114\n\t\t -0.53398103 -0.54087597 -0.128114 -0.53217 -0.51348799 -0.134864 -0.53217 -0.51348799 -0.134864\n\t\t 0.47434601 -0.61786902 0.289473 0.54356498 -0.337892 0.434558 -0.599814 0.55136597 0.685821\n\t\t 0.230367 -0.68188399 -0.51823199 0.53411502 0.345222 -0.22453301 0.53411502 0.345222 -0.22453301\n\t\t 0.54774702 0.34767199 -0.221753 0.31129101 -0.51111197 0.015823999 0.31732199 -0.540236 0.015823999\n\t\t 0.194387 -0.047800999 -0.66067803 0.196977 -0.061604001 -0.66274202 -0.56390601 -0.012008 -0.21078999\n\t\t -0.57491499 -0.012003 -0.186757 -0.57491499 -0.012003 -0.186757 -0.159511 -0.052777998 -0.66900802\n\t\t -0.15889899 -0.063979998 -0.67156601 0.103995 -0.394236 0.28619501 0.19086 -0.050965 -0.65894699\n\t\t -0.39875901 -0.20621599 -0.45800301 -0.41065499 -0.16627499 -0.45851499 -0.41065499 -0.16627499 -0.45851499\n\t\t -0.81859303 -0.097842999 0.72960597 -0.564385 -0.57529497 -0.13941 0.119396 0.14718901 1.14872205\n\t\t 0.70608002 -0.018796001 0.233419 0.70907402 0.05731 0.26381201 -0.609972 -0.28015801 -0.015409\n\t\t 0.228673 -0.66870499 -0.51970398 0.194271 -0.66764498 -0.525747 0.61561799 0.051500998 -0.145583\n\t\t 0.63505101 0.051500998 -0.142177 -0.87091899 -0.17592099 0.61119598 -0.87091899 -0.17592099 0.61119598\n\t\t -0.86596602 -0.17598601 0.62483197 -0.86596602 -0.17598601 0.62483197 -0.57369 -0.61675298 -0.141706\n\t\t -0.57227498 -0.59600902 -0.14199901 -0.316468 -0.540236 0.051406 -0.31011099 -0.57092798 0.051406\n\t\t -0.73967201 0.471982 0.30302101 -0.71942699 0.48926201 0.37661001 0.29496199 -0.48625299 0.012081\n\t\t 0.58700299 0.051500998 -0.146312 0.63226902 -0.443407 0.101328 0.506428 -0.083208002 -0.33738899\n\t\t 0.52741098 -0.053757001 -0.29474699 -0.27807799 -0.49817199 0.104388 -0.290802 -0.517542 0.104388\n\t\t -0.252204 -0.34698501 -0.51968402 -0.252204 -0.34698501 -0.51968402 -0.159403 -0.346975 -0.61131603\n\t\t 0.54497302 -0.53862703 -0.13225099 0.54497302 -0.53862703 -0.13225099 -0.18325999 -0.106617 -0.68213099\n\t\t 0.39964601 0.71766102 0.308626 0.429517 0.68278497 0.255059 -0.26356801 0.45937699 1.12659204\n\t\t -0.49894601 -0.59829301 0.214746 -0.46938199 -0.61786997 0.214747 -0.182458 -0.16318899 -0.67778802\n\t\t -0.18605299 -0.106087 -0.67699999 -0.181394 -0.049506001 -0.67013502 -0.181394 -0.049506001 -0.67013502\n\t\t -0.18496799 -0.054614998 -0.66870201 -0.124717 0.177974 1.15259004 -0.129971 0.177948 1.151263\n\t\t -0.74341297 0.424696 0.33607301 -0.74772698 0.376165 0.35225499 -0.74772698 0.376165 0.35225499\n\t\t -0.18687101 -0.063368 -0.67115599 -0.52910399 -0.020888999 -0.26109701 -0.512694 -0.044273999 -0.294911\n\t\t -0.119651 0.176062 1.15308201 -0.167622 -0.049509998 -0.67514801 -0.167622 -0.049509998 -0.67514801\n\t\t 0.67243701 -0.27484301 0.127588 -0.25911 -0.58358502 -0.59806401 -0.25427401 -0.59539402 -0.597844\n\t\t 0.208719 0.0069980002 1.0014200211 0.104955 0.0069949999 1.050133944 -0.205322 -0.61433297 0.070440002\n\t\t -0.179124 -0.59712499 0.070440002 -0.25520301 0.58099699 1.075587034 0.106224 -0.61224502 -0.69235402\n\t\t 0.106285 -0.61689401 -0.69225001 0.106285 -0.61689401 -0.69225001 0.74045098 0.193753 0.025078001\n\t\t 0.76140797 0.241027 0.039081998 0.76140797 0.241027 0.039081998;\n\tsetAttr \".vt[9462:9627]\" 0.69539899 -0.14394701 0.18320601 -0.35659 -0.238437 -0.47676599\n\t\t -0.17442399 -0.047203999 -0.67230803 -0.17442399 -0.047203999 -0.67230803 0.130248 0.18230399 1.160272\n\t\t 0.13812301 0.182266 1.158283 0.70101798 -0.15720899 0.21114901 0.710518 -0.035130002 0.25996599\n\t\t -0.39988801 -0.61786997 0.214746 -0.370325 -0.59829402 0.214746 -0.43463501 -0.62493199 0.24992\n\t\t -0.39988801 -0.61786997 0.24992 0.43959901 -0.62493199 0.289473 0.36656901 -0.46095201 0.25723299\n\t\t 0.30518299 -0.49920601 -0.52162999 0.400141 -0.43872201 0.28216001 -0.35074899 -0.56873 0.214746\n\t\t 0.289341 0.178425 1.10044706 0.37994099 -0.161277 -0.48014501 0.46714699 -0.106785 -0.364351\n\t\t -0.18589599 -0.050965 -0.65894699 -0.188085 -0.063169003 -0.66074002 -0.128263 -0.79723102 -0.67593199\n\t\t -0.128263 -0.79723102 -0.67593199 -0.128263 -0.79723102 -0.67593199 -0.147854 -0.75532299 -0.59469801\n\t\t 0.122656 0.17943899 1.16101003 -0.172599 -0.79462397 0.197827 -0.172599 -0.79462397 0.197827\n\t\t -0.162506 -0.79462397 0.211467 -0.162506 -0.79462397 0.211467 -0.53773302 -0.008591 -0.243315\n\t\t -0.17091601 -0.042783 -0.66248298 -0.17091601 -0.042783 -0.66248298 0.90982002 -0.084385999 0.496777\n\t\t 0.90607703 -0.097999997 0.50284398 0.57215202 -0.001835 -0.18312301 0.56141502 -0.001832 -0.20682\n\t\t 0.310559 -0.62926 -0.50907099 -0.43463501 -0.63190299 0.205772 -0.47204599 -0.6243 0.205772\n\t\t 0.103489 -0.60423601 -0.69310099 -0.26670599 -0.46613899 0.070440002 -0.38426 -0.203912 -0.463952\n\t\t -0.38426 -0.203912 -0.463952 0.43996999 -0.758205 -0.060047999 0.446026 -0.76330298 -0.068232\n\t\t 0.446026 -0.76330298 -0.068232 0.71272397 0.037703 0.28878599 -0.48344001 -0.77345097 0.52346402\n\t\t -0.531048 0.67595297 0.099771 -0.5147 0.67836601 0.062711999 -0.5147 0.67836601 0.062711999\n\t\t 0.35979101 0.14105 1.020179987 -0.10158 -0.813241 -0.69033498 -0.65546298 -0.33127001 0.23810101\n\t\t -0.65737498 -0.323396 0.223078 -0.65737498 -0.323396 0.223078 -0.186793 -0.106131 -0.66634798\n\t\t 0.31270501 -0.58991599 -0.512218 0.118533 0.21410599 -0.587672 0.002481 0.21335401 -0.600429\n\t\t -0.527686 -0.50405401 -0.133993 -0.527686 -0.50405401 -0.133993 -0.182798 -0.163242 -0.66727197\n\t\t -0.17725401 -0.209289 -0.66209197 -0.301355 -0.319076 -0.50364399 -0.369369 -0.244073 -0.47259\n\t\t -0.51851797 -0.49843299 -0.128213 0.65235299 0.052336 -0.092681997 0.65144402 0.05294 -0.100549\n\t\t 0.65144402 0.05294 -0.100549 0.93672699 0.044321999 0.510562 -0.17721599 -0.20874301 -0.67220199\n\t\t -0.537916 -0.53398299 0.25723299 -0.52989602 -0.57344198 0.25723299 -0.176112 -0.20973299 -0.67504102\n\t\t -0.180825 -0.16370501 -0.68240499 -0.50766599 -0.46095201 0.28216001 -0.52989602 -0.494524 0.28216001\n\t\t 0.048397999 -0.84030402 -0.44360301 0.048397999 -0.84030402 -0.44360301 0.048397999 -0.76772499 -0.443602\n\t\t 0.048397999 -0.76772499 -0.443602 0.31498301 -0.57256299 -0.513376 -0.64715701 -0.212093 0.37652901\n\t\t -0.64715701 -0.212093 0.37652901 -0.67071497 -0.069532 0.36870199 -0.67071497 -0.069532 0.36870199\n\t\t -0.474094 -0.62924403 0.28216001 -0.43463501 -0.63726401 0.28216001 -0.170764 -0.56726402 0.0089410003\n\t\t -0.165167 -0.540236 0.0089410003 0.38279799 -0.74446303 -0.102354 0.15655801 -0.68171799 0.203392\n\t\t 0.15655801 -0.68171799 0.203392 0.12769499 -0.83691102 -0.44360301 0.12769499 -0.83691102 -0.44360301\n\t\t -0.167448 -0.232015 -0.65966302 -0.167448 -0.232015 -0.65966302 -0.16441201 -0.23036499 -0.66129601\n\t\t -0.16441201 -0.23036499 -0.66129601 0.60064697 -0.031904999 -0.178361 0.60418999 -0.012523 -0.171996\n\t\t 0.152661 -0.744039 -0.54540402 0.149388 -0.89659798 -0.54540402 0.149388 -0.89659798 -0.54540402\n\t\t -0.70411003 0.057309002 0.26381201 0.225604 -0.52722502 -0.63005 0.243173 -0.52776599 -0.62696302\n\t\t -0.29328701 -0.047065001 0.267764 -0.29328701 -0.047065001 0.267764 -0.564704 -0.047065001 0.665721\n\t\t -0.564704 -0.047065001 0.665721 -0.16827101 -0.23554701 -0.66201401 -0.16827101 -0.23554701 -0.66201401\n\t\t 0.002482 -0.047065001 0.267764 0.297867 -0.59712499 0.070440002 0.27167001 -0.61433297 0.070440002\n\t\t -0.76668102 0.36245599 0.161144 -0.76668102 0.36245599 0.161144 -0.74515897 0.34502599 0.149386\n\t\t -0.74515897 0.34502599 0.149386 0.671112 0.028522 0.053831 0.66028899 0.031598002 -0.050788\n\t\t -0.17085201 -0.23036499 -0.65895098 -0.17085201 -0.23036499 -0.65895098 -0.492201 0.67857999 0.053504001\n\t\t 0.485273 -0.40326601 -0.263367 0.508246 -0.381199 -0.234704 0.508246 -0.381199 -0.234704\n\t\t 0.56866699 0.047538001 0.69166201 0.56866699 0.047538001 0.69166201 0.29772601 0.088652998 0.73233497\n\t\t -0.197854 -0.728513 0.23762301 -0.197854 -0.728513 0.23762301 -0.207947 -0.728513 0.223983\n\t\t -0.207947 -0.728513 0.223983 0.549537 0.67923802 0.20660301 0.549537 0.67923802 0.20660301\n\t\t -0.364198 -0.56315899 0.32670701 -0.35826799 -0.53398299 0.32670701 0.65101397 0.047538001 0.69166201\n\t\t -0.57214397 0.62546301 0.56101102 -0.55489898 0.62432301 0.613433 -0.18010101 -0.163017 -0.66827703\n\t\t -0.184082 -0.10591 -0.66731697 0.54849201 0.65124398 0.105701 -0.29276201 0.088652998 0.73233497\n\t\t -0.29276201 0.088652998 0.73233497 0.22666 -0.53516299 -0.62938702 0.21249899 -0.53986198 -0.63141501\n\t\t -0.17468201 -0.20841201 -0.66328299 -0.186415 -0.59143102 -0.63045597 -0.184508 -0.57658798 -0.63211298\n\t\t 0.194846 -0.54380101 -0.63388598 0.185366 -0.55891901 -0.63417298 -0.56312501 0.067919001 0.71900499\n\t\t -0.174247 -0.223447 -0.65961099 0.259408 -0.534352 -0.62356699 -0.185376 -0.063948996 -0.661924\n\t\t 0.35571301 -0.49923599 0.20162 0.34865001 -0.53398299 0.20162 -0.26304099 -0.47498599 0.0089410003\n\t\t -0.23601399 -0.46938899 0.0089410003 0.20882 -0.532794 -0.63245302;\n\tsetAttr \".vt[9628:9793]\" 0.54130799 0.67346299 0.151684 -0.38324699 0.69104397 0.81491297\n\t\t -0.38936201 0.66735399 0.839935 -0.38936201 0.66735399 0.839935 -0.098384 -0.37604699 -0.58242399\n\t\t -0.10147 -0.38055101 -0.62169898 -0.10147 -0.38055101 -0.62169898 0.74480897 0.058669999 0.26773101\n\t\t 0.66412002 0.07925 0.23836499 0.67938602 -0.45279601 0.21941 -0.55435902 0.055548999 -0.21739499\n\t\t -0.546013 0.057339001 -0.215159 0.404852 -0.45009601 0.20162 0.37528899 -0.46967199 0.20162\n\t\t 0.152527 -0.466373 -0.60881102 0.100203 -0.43914801 -0.61966002 0.241483 -0.53561997 -0.62678301\n\t\t 0.25518 -0.54117602 -0.623918 -0.185918 -0.59033298 0.0089410003 -0.162506 -0.71776801 0.211467\n\t\t -0.162506 -0.71776801 0.211467 0.51581901 0.342949 -0.22426599 0.49302399 0.34026 -0.223465\n\t\t 0.65405101 -0.17117099 -0.02994 0.61465901 -0.236847 -0.052531999 -0.474094 -0.43872201 0.28216001\n\t\t 0.68636203 -0.040777002 0.017689999 -0.75600201 0.39790699 0.19295301 -0.76036698 0.368554 0.19802301\n\t\t -0.76036698 0.368554 0.19802301 0.30622801 -0.51320899 0.076025002 0.31182501 -0.540236 0.076025002\n\t\t -0.246841 -0.61594301 -0.61781597 -0.23268101 -0.62064201 -0.61984402 0.183787 -0.59391803 -0.63131702\n\t\t 0.19187599 -0.609577 -0.62851799 -0.146091 -0.107323 -0.68508601 -0.14182401 -0.056862999 -0.67968202\n\t\t 0.114759 -0.54283202 -0.689062 0.130009 -0.56359899 -0.68364102 0.49093199 0.33927599 -0.23121201\n\t\t 0.51895499 0.34245601 -0.233355 0.27167001 -0.46613899 0.051406 0.297867 -0.483347 0.051406\n\t\t 0.52348602 -0.56873 0.20162 0.53054798 -0.53398299 0.20162 -0.39518699 0.66036397 0.84163201\n\t\t -0.39518699 0.66036397 0.84163201 0.240978 -0.45978299 0.051406 0.29107401 -0.49013999 0.045821998\n\t\t 0.26800501 -0.47498599 0.045821998 0.60593098 -0.339212 -0.054586999 0.60593098 -0.339212 -0.054586999\n\t\t 0.61954099 -0.292602 -0.030815 0.152661 -0.69061202 -0.071073003 0.152661 -0.63780302 -0.071073003\n\t\t 0.152661 -0.63780302 -0.071073003 0.493599 -0.587982 0.32670701 0.468775 -0.60442001 0.32670701\n\t\t 0.18152601 -0.57632399 -0.63328099 0.497163 0.67857999 0.053504001 0.51966202 0.67836601 0.062711999\n\t\t 0.51966202 0.67836601 0.062711999 0.59509301 -0.34748399 -0.047731999 0.61009002 -0.29646 -0.022046\n\t\t -0.148368 -0.16439199 -0.68352199 0.35219699 -0.66005498 -0.42249799 0.33892301 -0.66565198 -0.40464199\n\t\t -0.39988801 -0.45009601 0.30564499 -0.370325 -0.46967199 0.30564499 -0.49894601 -0.46967199 0.24992\n\t\t -0.51852202 -0.49923599 0.24992 0.43959901 -0.61035001 0.32670701 0.67316997 0.027140001 0.105426\n\t\t 0.67316997 0.027140001 0.105426 0.67316997 0.027140001 0.105426 -0.28527999 0.456137 1.12509406\n\t\t -0.28527999 0.456137 1.12509406 -0.277035 0.449976 1.12059295 -0.277035 0.449976 1.12059295\n\t\t -0.563703 0.047538001 0.69166201 -0.53634602 0.67346299 0.151684 -0.54457498 0.67923802 0.20660301\n\t\t -0.54457498 0.67923802 0.20660301 0.29742301 0.067919001 0.95603001 0.50391001 -0.59829301 0.20162\n\t\t -0.64605099 0.047538001 0.69166201 0.227604 -0.71080202 -0.229856 0.37313399 -0.74578202 -0.12217\n\t\t 0.37313399 -0.74578202 -0.12217 -0.53680801 0.053911 -0.25296599 -0.529724 0.052393001 -0.251068\n\t\t 0.037765998 -0.50873899 -0.70017701 0.002482 -0.50719899 -0.70130801 0.61493599 -0.28015801 -0.015409\n\t\t -0.54682302 0.057487 -0.25201499 -0.53770298 0.059443001 -0.249571 -0.109795 -0.54283202 -0.689062\n\t\t -0.125045 -0.56359899 -0.68364102 -0.46938199 -0.45009601 0.24992 -0.35074899 -0.49923599 0.30564499\n\t\t -0.54201603 0.345635 -0.23549899 -0.54201603 0.345635 -0.23549899 -0.549146 0.349619 -0.214559\n\t\t -0.549146 0.349619 -0.214559 -0.549146 0.349619 -0.214559 0.184089 -0.483347 0.051406\n\t\t 0.166881 -0.50954401 0.051406 -0.51852202 -0.49923599 0.214747 -0.52558398 -0.53398299 0.214746\n\t\t 0.33689299 -0.67515999 -0.41109699 0.32070699 -0.67755598 -0.38940099 -0.074207 -0.52060997 -0.69587898\n\t\t 0.17572799 -0.51320899 0.045821998 0.170131 -0.540236 0.045821998 -0.39004999 0.45318401 1.047621965\n\t\t 0.475034 0.67326999 0.089057997 -0.43463501 -0.44303399 0.24992 -0.28999799 -0.48625299 0.012081\n\t\t -0.30632699 -0.51111197 0.012081 -0.34368601 -0.53398299 0.30564499 -0.35074899 -0.56873 0.30564499\n\t\t -0.54389203 0.052393001 -0.25486401 -0.34368601 -0.53398299 0.289473 -0.35074899 -0.56873 0.289473\n\t\t -0.38467199 0.44720399 1.040596962 -0.286111 -0.49013999 0.0089410003 -0.30126399 -0.51320899 0.0089410003\n\t\t 0.160524 -0.54023701 0.051406 0.68338197 -0.0094539998 -0.051059 0.69199401 -0.017628999 0.0058670002\n\t\t -0.64828098 -0.31158999 0.17576601 -0.64299703 -0.33480099 0.161707 -0.33937401 -0.494524 0.28216001\n\t\t -0.36160499 -0.46095201 0.28216001 -0.542813 -0.252166 0.53519702 -0.542813 -0.252166 0.53519702\n\t\t -0.542813 -0.252166 0.53519702 -0.28181601 -0.252166 0.267764 -0.28181601 -0.252166 0.267764\n\t\t -0.28181601 -0.252166 0.267764 -0.29362401 -0.134303 0.267764 0.534688 0.052393001 -0.251068\n\t\t 0.52760398 0.049355 -0.24917001 -0.55390799 0.042022001 -0.257548 -0.54993701 0.048280999 -0.256484\n\t\t -0.55461001 0.052191999 -0.25410101 0.71597099 0.48586899 0.020289 0.71597099 0.48586899 0.020289\n\t\t 0.64593798 0.53249103 -0.013948 -0.058951002 -0.28310901 0.29099 -0.045433 -0.30255499 0.29099\n\t\t 0.370359 -0.60322303 0.205771 0.40218899 -0.6243 0.205772 0.73373502 0.424826 0.028217999\n\t\t -0.499915 0.440308 0.918899 0.221055 -0.62799901 -0.62182498 0.20482001 -0.62141299 -0.62522101\n\t\t 0.170665 -0.51111197 0.015823999 0.186994 -0.48625299 0.015823999 -0.079080001 -0.27063099 0.29099\n\t\t -0.56770802 0.63856101 0.54468697 -0.56770802 0.63856101 0.54468697 -0.56189102 0.644526 0.54973\n\t\t -0.102389 -0.26643899 0.29099 -0.52849603 -0.533795 -0.135113;\n\tsetAttr \".vt[9794:9959]\" -0.41169301 -0.533795 -0.135113 -0.68775803 0.2942 -0.11711\n\t\t -0.68079501 0.332468 -0.127933 -0.26513901 -0.469924 0.012081 -0.573439 0.62835097 0.54991603\n\t\t -0.573439 0.62835097 0.54991603 -0.556014 0.61472797 0.53373802 -0.46938199 -0.45009601 0.20162\n\t\t -0.43463501 -0.44303399 0.20162 0.176732 -0.136426 -0.661865 0.16682801 -0.24095701 -0.641909\n\t\t -0.56534803 -0.134303 0.65275699 -0.56534803 -0.134303 0.65275699 -0.56534803 -0.134303 0.65275699\n\t\t -0.23601399 -0.46389201 0.012081 0.15701 -0.30963701 -0.61091101 -0.64796102 -0.134303 0.665721\n\t\t 0.179433 -0.13834199 -0.66842002 0.16949999 -0.24352901 -0.64839202 0.54171902 -0.66244298 -0.135003\n\t\t 0.55970597 -0.65566099 -0.144761 -0.54929799 0.62882799 0.52489603 0.174444 -0.223061 -0.67140698\n\t\t 0.174444 -0.223061 -0.67140698 0.17648099 -0.22396301 -0.67061901 0.17648099 -0.22396301 -0.67061901\n\t\t 0.17341401 -0.20872401 -0.67539603 -0.33937401 -0.49452499 0.25723299 -0.36160499 -0.46095201 0.25723299\n\t\t 0.28501701 0.13229901 1.080260038 0.283218 0.15448 1.093319058 0.83913398 -0.058228001 0.381666\n\t\t 0.493599 -0.479983 0.32670701 0.51003599 -0.504807 0.32670701 -0.69632798 0.40737599 0.56217301\n\t\t -0.740143 0.38892299 0.41844401 0.18246201 -0.164046 -0.685395 0.21028601 -0.46613899 0.051406\n\t\t 0.170665 -0.51111197 0.012081 0.186994 -0.48625299 0.012081 0.515966 -0.53398299 0.32670701\n\t\t -0.36135799 0.72440302 0.35558599 -0.05562 -0.82948703 -0.77383298 -0.070231996 -0.82948703 -0.77177697\n\t\t -0.070231996 -0.82948703 -0.77177697 0.69028002 -0.020669 0.025265999 0.69028002 -0.020669 0.025265999\n\t\t 0.294453 0.115386 1.063333035 -0.56915301 0.439096 0.83722401 -0.50709498 0.44602799 0.92435801\n\t\t 0.147516 -0.38207099 -0.57165998 -0.57749498 -0.37796801 -0.084247999 0.52117097 -0.66512698 -0.124163\n\t\t 0.17606699 -0.209723 -0.67686599 -0.75516498 0.38079599 0.35684499 -0.75516498 0.38079599 0.35684499\n\t\t -0.370325 -0.59829301 0.30564499 -0.57452202 -0.38773 -0.139365 -0.58921599 -0.36769101 -0.087638997\n\t\t -0.58921599 -0.36769101 -0.087638997 -0.39517701 -0.43872201 0.25723299 -0.67442203 -0.45279601 0.21941\n\t\t -0.57034302 -0.38511699 -0.16032401 -0.55624199 -0.39628801 -0.165068 -0.55624199 -0.39628801 -0.165068\n\t\t -0.56115299 -0.39918199 -0.141744 -0.183567 -0.05277 -0.66025102 -0.178073 -0.045465998 -0.66056198\n\t\t -0.178073 -0.045465998 -0.66056198 -0.12544601 -0.27184901 0.29099 0.85317999 -0.071092002 0.400911\n\t\t 0.85317999 -0.071092002 0.400911 0.85026503 -0.054028001 0.38437399 -0.53028101 -0.39787701 -0.16480599\n\t\t -0.185946 -0.237497 -0.65443802 -0.185946 -0.237497 -0.65443802 -0.17692401 -0.24709401 -0.654728\n\t\t -0.17692401 -0.24709401 -0.654728 0.171846 -0.106117 -0.68398201 0.17379101 -0.163173 -0.68275303\n\t\t -0.63350999 0.16418 -0.117022 -0.63350999 0.16418 -0.117022 -0.633605 0.172251 -0.071965002\n\t\t -0.633605 0.172251 -0.071965002 -0.163827 -0.14994501 0.50000602 -0.182225 -0.179626 0.49999699\n\t\t 0.13322601 -0.79723102 -0.67593199 0.13322601 -0.79723102 -0.67593199 0.13322601 -0.79723102 -0.67593199\n\t\t 0.15281799 -0.75532299 -0.59469801 0.57126898 -0.59771001 -0.15343601 0.563389 -0.57713401 -0.15082601\n\t\t 0.742773 0.19345801 0.034768999 0.68997198 0.098264001 0.0041570002 -0.18031099 -0.237497 -0.63895601\n\t\t 0.47434601 -0.61786902 0.20162 0.43959901 -0.62493199 0.20162 -0.16655999 -0.24932601 -0.65765798\n\t\t 0.106544 -0.813241 -0.69033498 -0.620933 0.42960599 0.74444503 -0.663643 -0.33073199 0.238158\n\t\t -0.66543102 -0.32312199 0.223471 -0.66543102 -0.32312199 0.223471 0.57279903 -0.61834598 -0.153238\n\t\t -0.171289 -0.24709401 -0.639247 0.55887198 0.042022001 -0.257548 0.554901 0.048282001 -0.256484\n\t\t -0.70437902 0.235577 0.34115899 -0.67947 0.240263 0.44234699 0.16384301 -0.334216 -0.628654\n\t\t 0.16384301 -0.334216 -0.628654 0.156409 -0.32584 -0.63086599 0.156409 -0.32584 -0.63086599\n\t\t 0.37528899 -0.59829402 0.20162 0.35571301 -0.56873 0.20162 0.12172 -0.32240701 -0.59286398\n\t\t 0.123795 -0.32594499 -0.63241398 0.123795 -0.32594499 -0.63241398 0.168669 -0.063395001 -0.67959303\n\t\t -0.23601399 -0.46938899 0.088372998 -0.208987 -0.474987 0.088372998 -0.34092101 -0.50588298 -0.39245701\n\t\t -0.30607501 -0.52425998 -0.415301 0.16742399 -0.33217701 -0.58864897 -0.39682001 -0.161176 -0.464679\n\t\t -0.39682001 -0.161176 -0.464679 -0.39682001 -0.161176 -0.464679 -0.38095701 -0.15988 -0.460639\n\t\t 0.94561398 0.013295 0.54837799 0.94644499 0.02091 0.55900502 -0.41210499 -0.150277 -0.44855201\n\t\t 0.158916 -0.32227999 -0.59109402 -0.61663997 0.43031299 -0.134395 -0.57726002 0.43825001 -0.151204\n\t\t -0.57726002 0.43825001 -0.151204 -0.312163 -0.51364499 -0.42231101 -0.27395701 -0.53222299 -0.44544601\n\t\t 0.94477302 0.0079960003 0.544631 -0.47204599 -0.6243 0.210595 -0.43463501 -0.63190299 0.210595\n\t\t -0.46163699 -0.10629 -0.38458201 -0.431849 -0.13383 -0.424496 0.57256901 -0.64068103 -0.152356\n\t\t 0.73166698 0.19339401 0.034883 0.68106902 0.098242 0.004195 -0.55106699 0.561759 -0.066673003\n\t\t -0.55111003 0.572613 -0.046932999 -0.035480998 -0.82948703 -0.77666497 0.94696802 0.038446002 0.60265398\n\t\t 0.94654697 0.039101999 0.61026502 0.94654697 0.039101999 0.61026502 -0.53159797 -0.49983501 -0.137435\n\t\t -0.53159797 -0.49983501 -0.137435 -0.483439 0.42184401 -0.333756 -0.483439 0.42184401 -0.333756\n\t\t -0.483439 0.42184401 -0.333756 -0.48929599 0.43255499 -0.30491501 -0.204161 -0.61462897 -0.625314\n\t\t -0.193241 -0.60464299 -0.62809497 -0.60930401 0.55159497 0.69072199 -0.55857497 0.56728297 0.77887601\n\t\t -0.43319899 -0.44335401 -0.314473 -0.48030901 -0.40326601 -0.263367 -0.67919499 -0.091903999 0.35229799\n\t\t -0.67919499 -0.091903999 0.35229799 -0.66209 -0.20308401 0.356244;\n\tsetAttr \".vt[9960:10125]\" -0.66209 -0.20308401 0.356244 0.93036801 -0.059517 0.53668201\n\t\t 0.943892 0.0032250001 0.54308999 0.93320698 0.043235 0.60838503 0.19605801 -0.66856903 -0.53607601\n\t\t 0.164267 -0.65567303 -0.54272598 0.94555497 0.036222 0.61464298 0.94555497 0.036222 0.61464298\n\t\t 0.94459999 0.032117002 0.61515301 -0.61141801 -0.315393 0.091812998 -0.66441 0.043713 0.240457\n\t\t -0.66441 0.043713 0.240457 -0.26052099 0.52768302 1.11383104 -0.26746401 0.47544199 1.130283\n\t\t 0.271505 0.007005 0.95021999 -0.66310102 -0.33321899 0.25604799 0.399068 0.33300799 -0.392111\n\t\t 0.457441 0.38518301 -0.29417801 -0.56459701 0.562675 -0.055987999 -0.56459701 0.562675 -0.055987999\n\t\t -0.56399101 0.55905002 -0.053303 -0.56399101 0.55905002 -0.053303 -0.52164102 0.430507 -0.26537901\n\t\t 0.118901 0.15527 1.15213001 0.122656 0.151261 1.14955997 0.30741799 -0.176112 0.510149\n\t\t 0.28086099 -0.19257399 0.51015198 0.36632001 0.72440302 0.35558599 -0.141817 0.160366 1.14721501\n\t\t -0.142388 0.166008 1.14936399 -0.34729299 -0.67632598 -0.39844099 -0.33093601 -0.67875302 -0.376789\n\t\t -0.27283901 0.46523499 1.13041794 -0.26545301 0.58291799 1.080641985 -0.269602 0.59123498 1.073007941\n\t\t -0.51470101 0.45817301 -0.273191 0.24986 -0.207537 0.49997801 0.215863 -0.199559 0.49998701\n\t\t 0.93199998 0.039751001 0.61343098 -0.36816999 -0.81750602 -0.12217 -0.36816999 -0.81750602 -0.12217\n\t\t -0.22263999 -0.78252602 -0.229856 0.92930102 -0.064195 0.53724098 -0.36211401 -0.82092398 -0.113986\n\t\t -0.040022999 -0.32561201 0.29099 0.534688 0.016984999 -0.251068 0.52760398 0.020022999 -0.24917001\n\t\t -0.157646 -0.115575 0.50001299 -0.45707199 0.39198399 -0.331267 -0.45707199 0.39198399 -0.331267\n\t\t -0.44615099 0.39531201 -0.330284 -0.44615099 0.39531201 -0.330284 -0.34104601 -0.66588998 -0.39974201\n\t\t -0.32589301 -0.66767502 -0.37991101 -0.044215001 -0.348921 0.29099 -0.056692 -0.36905101 0.29099\n\t\t 0.41409901 0.0070270002 0.81068498 0.48943901 0.0070389998 0.732283 -0.49115101 -0.074242003 -0.33824301\n\t\t -0.60096699 -0.339212 -0.054586999 -0.60096699 -0.339212 -0.054586999 -0.59683698 -0.35302699 -0.067964002\n\t\t -0.73038203 0.36765999 0.043203 -0.740044 0.30733299 0.047017999 0.94356602 0.027512999 0.61473101\n\t\t 0.50226003 -0.499872 -0.12744901 0.48356801 -0.50076902 -0.112132 -0.647708 0.050905999 -0.088076003\n\t\t -0.65151101 0.050195999 -0.047501002 -0.52953202 0.66630501 0.59319699 -0.512909 0.67291701 0.62600702\n\t\t 0.127886 0.149068 1.14735794 -0.199542 -0.037783001 -0.65416801 -0.199542 -0.037783001 -0.65416801\n\t\t -0.20387501 -0.056862999 -0.65709698 0.91278601 -0.104074 0.60364801 -0.151445 -0.32584 -0.63086599\n\t\t -0.151445 -0.32584 -0.63086599 -0.118831 -0.32594499 -0.63241398 -0.118831 -0.32594499 -0.63241398\n\t\t -0.296249 -0.62150002 -0.54198802 -0.29628301 -0.62317699 -0.52194601 -0.29628301 -0.62317699 -0.52194601\n\t\t -0.74730903 0.24087 0.049318001 -0.143108 -0.76340902 -0.28870699 -0.46641499 0.68592101 0.70453203\n\t\t -0.47347999 0.404024 -0.33907101 -0.47347999 0.404024 -0.33907101 -0.46751001 0.39531201 -0.33462301\n\t\t -0.46751001 0.39531201 -0.33462301 -0.19390699 -0.037783001 -0.638686 -0.48460299 0.40576199 -0.32802001\n\t\t -0.48460299 0.40576199 -0.32802001 -0.48460299 0.40576199 -0.32802001 -0.537687 -0.61409003 -0.174941\n\t\t -0.36054099 -0.75056702 -0.102732 -0.36659601 -0.755521 -0.110916 -0.36659601 -0.755521 -0.110916\n\t\t -0.29624099 -0.62111199 -0.54437399 0.346791 -0.67160702 -0.43686101 0.35817301 -0.65509301 -0.45328701\n\t\t -0.64119202 0.53683299 -0.0048659998 -0.71068197 0.490251 0.029381 -0.71068197 0.490251 0.029381\n\t\t 0.52348602 -0.49923599 0.20162 0.177573 -0.146575 0.51018697 0.194034 -0.173132 0.51017803\n\t\t 0.44380799 0.45965299 -0.30853 0.44380799 0.45965299 -0.30853 0.67783397 -0.43158501 0.25363901\n\t\t 0.67521399 -0.408364 0.29063299 -0.65528798 0.048778001 0.015611 -0.35320899 -0.65509301 -0.45328701\n\t\t -0.34182701 -0.67160702 -0.43686101 -0.36816999 -0.74578202 -0.12217 -0.36816999 -0.74578202 -0.12217\n\t\t -0.36211401 -0.74068499 -0.113986 -0.033767 -0.32544699 0.28622201 -0.039735001 -0.300017 0.28622499\n\t\t 0.172042 -0.115824 0.510194 0.15105499 -0.107323 -0.68508601 0.146788 -0.056862999 -0.67968202\n\t\t -0.31934899 0.204639 1.083821058 -0.33457601 0.211519 1.074231029 0.49063501 0.462311 -0.31386301\n\t\t 0.49063501 0.462311 -0.31386301 0.467684 0.46696699 -0.312489 -0.460098 0.38778299 -0.316365\n\t\t -0.460098 0.38778299 -0.316365 -0.460098 0.38778299 -0.316365 -0.465956 0.39849401 -0.28752401\n\t\t 0.55097699 0.065159999 -0.215159 0.53974903 0.062752001 -0.21214999 -0.107852 0.167134 1.158476\n\t\t -0.107088 0.159578 1.15559602 0.129926 -0.708031 0.183686 0.129926 -0.708031 0.183686\n\t\t 0.140019 -0.708031 0.170046 0.140019 -0.708031 0.170046 -0.47568801 0.39275199 -0.32137701\n\t\t -0.47568801 0.39275199 -0.32137701 -0.47568801 0.39275199 -0.32137701 0.56604499 -0.198434 -0.25492299\n\t\t 0.62526798 0.05119 -0.169065 0.62526798 0.05119 -0.169065 -0.48154601 0.40346399 -0.29253599\n\t\t 0.64796102 -0.33480099 0.161707 0.63745099 -0.39408901 0.121771 -0.56531399 0.56702101 -0.04696\n\t\t -0.56531399 0.56702101 -0.04696 -0.72929102 0.42809799 0.037574001 -0.202659 -0.107323 -0.66449702\n\t\t 0.23862401 -0.62854099 -0.61873901 0.57178903 0.013143 -0.220735 0.56220502 0.0066260002 -0.21816701\n\t\t -0.40959501 0.696522 0.77283603 -0.076139003 -0.38256899 0.29099 -0.127983 -0.26615 0.28621101\n\t\t -0.149432 -0.281059 0.286203 0.143995 0.155148 1.14579296 0.13943399 0.151179 1.14532197\n\t\t -0.67567998 0.28385901 0.47264901 -0.67567998 0.28385901 0.47264901 -0.67371798 0.27781299 0.48263001\n\t\t -0.29690099 -0.61844403 -0.55257398 -0.29690099 -0.61844403 -0.55257398;\n\tsetAttr \".vt[10126:10291]\" 0.542665 0.009935 -0.249571 0.533544 0.011891 -0.247127\n\t\t -0.53478497 0.062752001 -0.21214999 -0.52355599 0.057937 -0.209141 0.53656203 -0.49983501 -0.137435\n\t\t 0.53656203 -0.49983501 -0.137435 0.53185803 -0.51598603 -0.14655501 0.53185803 -0.51598603 -0.14655501\n\t\t 0.52718198 -0.50667 -0.145537 0.52718198 -0.50667 -0.145537 -0.30583799 0.191984 1.088932991\n\t\t -0.143787 -0.037783001 -0.67446101 -0.143787 -0.037783001 -0.67446101 -0.312493 -0.60008198 -0.55784601\n\t\t -0.312493 -0.60008198 -0.55784601 -0.315207 -0.59535801 -0.55318898 -0.315207 -0.59535801 -0.55318898\n\t\t 0.43959901 -0.43606299 0.210595 0.40218899 -0.44366601 0.210595 0.103036 -0.813241 -0.68210202\n\t\t 0.103036 -0.813241 -0.68210202 0.078073002 -0.82948703 -0.76808298 -0.30686101 -0.540236 0.0089410003\n\t\t 0.269382 -0.61196399 -0.61490202 0.25540799 -0.62297201 -0.61633402 -0.18643101 -0.68068302 -0.525078\n\t\t -0.150417 -0.66607398 -0.53261203 0.190881 -0.59033298 0.076025002 0.17572799 -0.56726301 0.076025002\n\t\t -0.31235799 -0.540236 0.012081 0.17918099 -0.085405998 0.510198 -0.052152 -0.37335801 0.28621\n\t\t -0.073601 -0.38826799 0.28620201 0.001435 -0.66382402 0.090157002 0.001435 -0.76985502 0.090157002\n\t\t 0.28153899 -0.58830303 -0.61491603 0.274775 -0.60481799 -0.61460799 -0.61878002 -0.27690101 -0.024436999\n\t\t -0.67547798 0.016814999 0.090682 -0.67547798 0.016814999 0.090682 -0.154514 -0.023824001 -0.666659\n\t\t -0.154514 -0.023824001 -0.666659 -0.14887901 -0.023824001 -0.651178 -0.225403 -0.68188399 -0.51823199\n\t\t 0.50051099 0.33882701 -0.28398699 0.52903903 0.34255299 -0.28885701 0.52903903 0.34255299 -0.28885701\n\t\t 0.52903903 0.34255299 -0.28885701 0.55178702 0.011891 -0.25201499 0.14875101 -0.037783001 -0.67446101\n\t\t 0.14875101 -0.037783001 -0.67446101 0.15947799 -0.023824001 -0.666659 0.15947799 -0.023824001 -0.666659\n\t\t 0.42554799 -0.135506 -0.42558801 0.143117 -0.037783001 -0.658979 -0.74122202 0.36560601 0.033489998\n\t\t -0.728773 0.424826 0.028217999 -0.73140901 0.316598 0.143408 -0.73387098 0.318257 0.144768\n\t\t -0.78264701 0.353542 0.17146 -0.78264701 0.353542 0.17146 -0.29894599 -0.613644 -0.55752498\n\t\t -0.29894599 -0.613644 -0.55752498 -0.30686101 -0.59694803 -0.55786097 -0.30686101 -0.59694803 -0.55786097\n\t\t -0.73754102 0.237905 -0.078382999 0.130758 0.177479 1.15818298 0.136638 0.17745 1.15669799\n\t\t 0.47701001 -0.44366601 0.205772 0.50883901 -0.46474299 0.205772 -0.43463501 -0.44303399 0.214746\n\t\t -0.39988801 -0.45009601 0.214746 0.54263002 0.055550002 -0.21292201 0.534284 0.051970001 -0.210686\n\t\t -0.432987 0.40576199 -0.317536 -0.432987 0.40576199 -0.317536 -0.432987 0.40576199 -0.317536\n\t\t -0.44378701 0.39275199 -0.31489801 -0.44378701 0.39275199 -0.31489801 -0.44378701 0.39275199 -0.31489801\n\t\t -0.55654299 0.055548999 -0.20924599 -0.54819602 0.057339001 -0.20701 -0.32775801 -0.54736298 -0.42626399\n\t\t -0.34133601 -0.56074798 -0.44385299 0.21395101 -0.60548598 0.076024003 0.024533 -0.75865299 0.084591001\n\t\t 0.024533 -0.75865299 0.084591001 0.024533 -0.68027198 0.084591001 0.024533 -0.68027198 0.084591001\n\t\t -0.32960001 0.13878 1.016198039 -0.315992 0.132631 1.024767995 -0.71826398 0.24523 0.32846901\n\t\t -0.71516103 0.240821 0.33549601 0.56220502 0.062752001 -0.21816701 -0.71213597 0.244316 0.32016701\n\t\t -0.70747697 0.23750401 0.33048201 0.52991599 -0.49657199 0.205771 0.58321398 -0.59510398 -0.14618701\n\t\t 0.57494599 -0.57273197 -0.14364401 -0.71285099 0.44613501 0.122971 -0.71007401 0.44637901 0.121321\n\t\t -0.32021901 0.77933198 0.39072299 -0.17689399 0.84793103 0.469459 -0.38962501 0.71797699 0.30288601\n\t\t -0.53985 0.055548999 -0.20477299 -0.124256 0.86088997 0.483318 0.350007 0.115459 1.015362024\n\t\t 0.32961401 0.106243 1.028205991 0.27235201 -0.546188 -0.62027001 0.191672 -0.023823 -0.65494198\n\t\t 0.191672 -0.023823 -0.65494198 0.20450599 -0.037783001 -0.65416801 0.20450599 -0.037783001 -0.65416801\n\t\t -0.223709 -0.66870499 -0.51970398 -0.189307 -0.66764498 -0.525747 0.28422999 -0.201355 0.499971\n\t\t 0.313912 -0.182956 0.49996799 0.208838 -0.056862999 -0.65709698 0.368103 0.13240799 1.0085150003\n\t\t -0.136904 0.14707901 1.14304698 -0.143013 0.152395 1.143677 0.49513 0.57889497 0.85610598\n\t\t 0.38454199 0.59190601 0.974235 -0.102553 -0.26018301 0.28621799 0.471984 0.33510101 -0.27911699\n\t\t -0.35308099 -0.58154798 -0.45824501 0.186037 -0.023823 -0.63946003 0.50930798 0.43684101 -0.30989599\n\t\t -0.666448 -0.31113601 0.249562 -0.66655701 -0.31151599 0.25871399 -0.56682497 0.056235 -0.220735\n\t\t -0.57312 0.046312999 -0.222422 0.554488 0.56714201 0.77325797 -0.43768099 0.43255499 -0.294431\n\t\t -0.43182299 0.42184401 -0.32327199 -0.43182299 0.42184401 -0.32327199 -0.43182299 0.42184401 -0.32327199\n\t\t -0.24514499 -0.19810501 0.51015902 -0.214726 -0.190966 0.51016802 -0.27664801 0.59666002 1.064910054\n\t\t -0.648525 -0.30717701 0.243469 -0.64808702 -0.308671 0.251185 -0.64808702 -0.308671 0.251185\n\t\t -0.667027 -0.31102601 0.26931301 -0.667027 -0.31102601 0.26931301 -0.111583 0.174123 1.16038001\n\t\t 0.51509601 0.40869099 -0.30385199 0.34630001 -0.56074798 -0.44385299 0.35804501 -0.58154798 -0.45824501\n\t\t 0.51650101 0.34638599 -0.24445499 0.53978503 0.348692 -0.245829 0.53978503 0.348692 -0.245829\n\t\t 0.198871 -0.037783001 -0.638686 0.17508 -0.018123999 -0.65918398 0.17508 -0.018123999 -0.65918398\n\t\t 0.27010199 -0.61054897 0.012081 0.29496199 -0.59421998 0.012081 -0.44073799 0.434854 -0.32991499\n\t\t -0.44073799 0.434854 -0.32991499 -0.44073799 0.434854 -0.32991499 0.145623 0.171248 1.15192699\n\t\t 0.147352 0.166008 1.14936399 -0.51852202 -0.49923599 0.20162 -0.52558398 -0.53398299 0.20162\n\t\t 0.38125199 0.15460899 1.0086669922 0.33272201 -0.54736298 -0.42626399;\n\tsetAttr \".vt[10292:10457]\" -0.446596 0.44556499 -0.301074 -0.128802 0.149039 1.14587295\n\t\t -0.13447 0.151179 1.14532197 0.153843 -0.023823 -0.651178 -0.35934201 -0.60667002 -0.46491799\n\t\t -0.35956901 -0.63241702 -0.46341699 0.44310299 0.466842 -0.30101001 0.44310299 0.466842 -0.30101001\n\t\t 0.49447301 0.46915001 -0.30564201 0.31039599 -0.062729001 0.51016903 0.28474 -0.044895999 0.51017898\n\t\t -0.69092298 0.108381 0.109414 -0.69505501 0.123332 0.076375 -0.49894601 -0.46967199 0.20162\n\t\t -0.13505501 -0.708031 0.170046 -0.13505501 -0.708031 0.170046 -0.124962 -0.708031 0.183686\n\t\t -0.124962 -0.708031 0.183686 0.31129101 -0.56936002 0.012081 -0.31277099 0.29527 -0.45774499\n\t\t -0.385645 0.340168 -0.38201401 -0.30245399 -0.176112 0.510149 -0.275897 -0.19257399 0.51015198\n\t\t -0.50766599 -0.60701299 0.25723299 -0.41903499 0.68339801 0.249658 0.280442 -0.56184798 -0.61747098\n\t\t 0.524423 0.015803 -0.244683 -0.249604 -0.028325999 0.50000799 -0.21523599 -0.034508001 0.50001401\n\t\t 0.473665 0.48688599 -0.28103501 0.446767 0.478986 -0.28029799 0.446767 0.478986 -0.28029799\n\t\t -0.112779 0.166152 1.15684199 -0.115565 0.17137 1.15826404 -0.124962 -0.78641099 0.183686\n\t\t -0.124962 -0.78641099 0.183686 0.31712699 -0.51364499 -0.42231101 0.27892101 -0.53222299 -0.44544601\n\t\t -0.249357 -0.037758 0.51018798 -0.218606 -0.043288998 0.51019502 -0.56998199 -0.57273197 -0.14364401\n\t\t -0.54000902 -0.53862703 -0.13225099 -0.54000902 -0.53862703 -0.13225099 0.282702 -0.57944101 -0.61550701\n\t\t -0.30894801 -0.182956 0.49996799 -0.27926701 -0.201355 0.499971 -0.53478497 0.0066249999 -0.21214999\n\t\t -0.52355701 0.01144 -0.209141 0.26800501 -0.60548598 0.0089410003 0.29107401 -0.59033298 0.0089410003\n\t\t 0.54146498 0.34993199 -0.23694099 0.54146498 0.34993199 -0.23694099 0.51732701 0.34752801 -0.235424\n\t\t -0.39468399 0.71766102 0.308626 -0.424555 0.68278497 0.255059 0.55097699 0.004218 -0.215159\n\t\t 0.53974903 0.0066260002 -0.21214999 0.332389 -0.120037 0.510153 0.32525101 -0.150456 0.510149\n\t\t 0.499358 0.48213899 -0.27960101 0.499358 0.48213899 -0.27960101 0.51966298 0.45817301 -0.273191\n\t\t 0.17572799 -0.56726402 0.0089410003 0.190882 -0.59033298 0.0089410003 0.26875299 0.59859502 1.058876991\n\t\t 0.261832 0.592978 1.06694901 0.310105 -0.54685599 -0.39439699 0.32095999 -0.54448301 -0.40999901\n\t\t -0.4964 0.201649 0.77132499 -0.138153 -0.037783001 -0.658979 0.16944601 -0.018123999 -0.64370197\n\t\t -0.32028699 -0.150456 0.510149 0.103746 0.85248601 0.66339898 0.002481 0.85249001 0.667992\n\t\t -0.73787397 0.30628499 0.037165001 -0.729038 0.3655 0.033599999 0.49822801 0.47755 -0.28663701\n\t\t 0.49822801 0.47755 -0.28663701 0.47254401 0.48253599 -0.287938 0.30622801 -0.56726301 0.0089410003\n\t\t 0.31182501 -0.540236 0.0089410003 -0.43884501 0.41647401 -0.28869501 0.383641 0.59556901 0.97269702\n\t\t 0.27540699 0.601919 1.052274942 -0.67025 -0.408364 0.29063299 -0.71545303 0.16627701 0.077806003\n\t\t -0.71545303 0.16627701 0.077806003 -0.71795499 0.17187101 0.085450999 0.80409902 -0.22051901 0.59258598\n\t\t 0.78245503 -0.217887 0.584508 -0.185917 -0.49013999 0.088372998 0.717098 0.244316 0.32016701\n\t\t 0.722655 0.25659201 0.31026 0.722655 0.25659201 0.31026 0.722655 0.25659201 0.31026\n\t\t -0.55724102 0.062752001 -0.21816701 -0.546013 0.065159999 -0.215159 -0.283602 -0.036302999 0.499998\n\t\t -0.441062 -0.76330298 -0.068232 -0.441062 -0.76330298 -0.068232 -0.43500599 -0.758205 -0.060047999\n\t\t 0.572855 0.034689002 -0.221021 0.57112598 0.026048001 -0.220558 -0.73401499 0.166758 0.077288002\n\t\t -0.73401499 0.166758 0.077288002 -0.73401499 0.166758 0.077288002 -0.67841798 -0.0094539998 -0.051059\n\t\t -0.67080498 -0.0071459999 -0.068138003 -0.67080498 -0.0071459999 -0.068138003 -0.67286998 -0.43158501 0.25363901\n\t\t 0.29107401 -0.49013999 0.088372998 0.30622801 -0.51320899 0.088372998 0.25432101 -0.037758 0.51018798\n\t\t -0.65383297 0.051534999 -0.020563999 -0.65383297 0.051534999 -0.020563999 -0.68418199 0.099007003 -0.004745\n\t\t -0.73420399 0.17231999 0.084894001 -0.73420399 0.17231999 0.084894001 0.72094899 0.27206099 0.34547901\n\t\t 0.69556898 0.278543 0.44712701 -0.67520201 0.101502 -0.003797 -0.64593101 0.054891001 -0.01935\n\t\t -0.66073501 -0.089716002 0.34924901 -0.660779 -0.091169 0.35260299 -0.660779 -0.091169 0.35260299\n\t\t -0.181226 -0.56292999 0.104388 -0.176526 -0.540236 0.104388 0.21395101 -0.47498599 0.0089410003\n\t\t 0.190881 -0.49013999 0.0089410003 -0.347036 0.206964 1.03649497 -0.35333201 0.19567899 1.025200009\n\t\t 0.36212799 -0.58344603 -0.45107299 0.35099599 -0.56380302 -0.43756601 0.42488101 0.44964901 -0.282747\n\t\t 0.41557601 0.415149 -0.27744901 0.67907602 0.52044898 0.51380199 0.60386699 0.55560398 0.68462002\n\t\t 0.19052 -0.052905999 0.500018 0.170588 -0.081579 0.500018 -0.292532 0.138731 1.048205972\n\t\t -0.30300301 0.132614 1.035984993 0.495653 0.479332 -0.27864301 0.495653 0.479332 -0.27864301\n\t\t 0.47363099 0.483457 -0.27981499 -0.43581399 -0.82248598 -0.061140001 -0.43531701 -0.825032 -0.060469002\n\t\t -0.43531701 -0.825032 -0.060469002 0.2202 -0.034508001 0.50001401 0.55097699 0.057339001 -0.215159\n\t\t 0.55932301 0.055550002 -0.21739499 -0.19395 -0.58230102 0.104388 0.338117 -0.55121398 -0.42100799\n\t\t 0.26367199 -0.485448 0.104388 0.240978 -0.480748 0.104388 0.22357 -0.043288998 0.51019502\n\t\t 0.32693499 -0.54865301 -0.40559101 -0.71345699 0.162009 0.075841002 -0.72435701 0.194527 0.025496\n\t\t 0.36184299 -0.64695698 -0.43604201 0.36699 -0.62886101 -0.444024 0.30622801 -0.51320899 0.0089410003\n\t\t -0.185917 -0.59033298 0.088372998 -0.170764 -0.56726301 0.088372998 -0.43382701 -0.77049702 -0.058455002\n\t\t -0.43531701 -0.77170402 -0.060469002 -0.43531701 -0.77170402 -0.060469002;\n\tsetAttr \".vt[10458:10623]\" 0.55932301 0.013829 -0.21739499 0.55097699 0.010249 -0.215159\n\t\t 0.36806899 -0.60716802 -0.45733899 -0.31041199 -0.68149799 -0.39410299 -0.32698399 -0.67886698 -0.416473\n\t\t -0.16782001 -0.328969 0.28619099 -0.163195 -0.30326 0.28619701 0.65647501 0.050195999 -0.047501002\n\t\t 0.66025198 0.048778001 0.015611 0.19318099 -0.68160701 -0.53540701 0.232153 -0.68280703 -0.528561\n\t\t 0.335639 -0.085914999 0.49997899 0.31724 -0.056233998 0.499989 -0.31565499 0.290867 -0.46031901\n\t\t -0.160649 0.219767 -0.570979 -0.160649 0.219767 -0.570979 -0.160649 0.219767 -0.570979\n\t\t -0.341674 0.150089 1.011630058 0.34182101 -0.120284 0.49997199 0.56644702 0.050705001 -0.219304\n\t\t -0.350447 0.164902 1.011731029 0.692707 0.39877999 0.56023598 0.73704302 0.37993199 0.41412199\n\t\t -0.53781301 -0.51108801 -0.138816 0.52022898 0.43016699 -0.265486 0.36224699 -0.65284801 -0.44638899\n\t\t 0.36828601 -0.63146901 -0.455924 0.36676601 -0.608275 -0.44519201 -0.285036 0.16481701 1.068214059\n\t\t -0.28623599 0.15001699 1.059501052 0.164634 -0.54023701 0.012081 0.17066599 -0.56936097 0.012081\n\t\t -0.66787499 -0.310321 0.21554001 -0.66787499 -0.310321 0.21554001 -0.65981698 -0.310175 0.214945\n\t\t -0.65981698 -0.310175 0.214945 -0.388679 0.335062 -0.38561499 -0.60969502 -0.236847 -0.052531999\n\t\t -0.64908701 -0.17117099 -0.02994 0.68064398 0.28385901 0.47264901 0.68064398 0.28385901 0.47264901\n\t\t 0.67868 0.27781299 0.48263001 0.48840401 -0.77345097 0.52346402 -0.71481103 0.128721 0.069239996\n\t\t -0.71481103 0.128721 0.069239996 -0.71790397 0.132607 0.068958998 0.67729002 0.28267699 0.46646899\n\t\t -0.19821499 -0.47031799 -0.54185098 -0.23261701 -0.471378 -0.53580803 0.58040899 0.034689002 -0.22304501\n\t\t 0.57808399 0.023065001 -0.222422 -0.55972302 0.025246 -0.255472 -0.56161201 0.034689002 -0.25597799\n\t\t -0.357283 -0.65284801 -0.44638899 -0.36332199 -0.63146901 -0.455924 0.57112598 0.043329999 -0.220558\n\t\t 0.31660101 -0.55110699 -0.39074501 0.278258 -0.47387299 -0.539271 0.24224401 -0.45926401 -0.54680502\n\t\t -0.076844998 -0.26480699 0.28622299 -0.054644 -0.27856901 0.286226 -0.35669401 -0.588157 -0.439955\n\t\t -0.34719199 -0.57146603 -0.42872301 0.66937399 0.043713 0.240457 0.66937399 0.043713 0.240457\n\t\t -0.30126399 -0.51320899 0.088372998 -0.30686101 -0.540236 0.088372998 -0.68018198 -0.043320999 0.37581301\n\t\t -0.83915102 -0.070808001 0.39324701 -0.30126399 -0.56726301 0.088372998 0.83868301 -0.216915 0.60520202\n\t\t 0.83868301 -0.216915 0.60520202 0.83868301 -0.216915 0.60520202 0.31537601 -0.68149799 -0.39410299\n\t\t 0.33194801 -0.67886698 -0.416473 0.19891299 -0.58230102 0.104388 0.18618999 -0.56292999 0.104388\n\t\t 0.252276 0.82692999 0.590186 0.186994 -0.59421998 0.015823999 0.211854 -0.61054897 0.015823999\n\t\t -0.55435902 0.013828 -0.21739499 -0.546013 0.010249 -0.215159 0.57808399 0.046312999 -0.222422\n\t\t -0.33616099 -0.56088197 -0.41483301 -0.68703002 -0.017628999 0.0058670002 -0.118079 0.218352 -0.57824099\n\t\t -0.017452 0.216902 -0.589522 -0.017452 0.216902 -0.589522 -0.017452 0.216902 -0.589522\n\t\t -0.017452 0.216902 -0.589522 -0.34636101 -0.66838503 -0.43076801 0.71773499 0.2397 0.344217\n\t\t 0.69357502 0.244454 0.44227999 0.170665 -0.56936097 0.015823999 -0.28611001 -0.59033298 0.088372998\n\t\t -0.83416998 -0.058228999 0.381666 -0.33372501 -0.55922401 -0.39661101 -0.32477799 -0.561858 -0.38384399\n\t\t 0.89923698 0.19510999 0.62713301 0.89923698 0.19510999 0.62713301 0.89923698 0.19510999 0.62713301\n\t\t 0.87975198 0.19878 0.61981302 -0.286111 -0.49013999 0.088372998 0.202272 0.84106201 0.62710398\n\t\t 0.598791 0.34784901 -0.164294 0.63847399 0.16418 -0.117022 0.63847399 0.16418 -0.117022\n\t\t 0.77218097 0.105007 0.78048003 0.77218097 0.105007 0.78048003 0.77218097 0.105007 0.78048003\n\t\t 0.364306 -0.60667002 -0.46491799 0.36453301 -0.63241702 -0.46341699 -0.31574401 -0.67755598 -0.38940099\n\t\t -0.331929 -0.67515999 -0.41109699 0.725595 0.26606199 0.32760099 0.72705001 0.25604299 0.32235199\n\t\t 0.72705001 0.25604299 0.32235199 -0.329023 0.783454 0.40253299 -0.180461 0.85288203 0.483733\n\t\t -0.465469 0.42350301 -0.34467801 -0.465469 0.42350301 -0.34467801 -0.47270101 0.41479099 -0.34291199\n\t\t -0.47270101 0.41479099 -0.34291199 -0.664496 -0.25768799 0.313333 0.21395101 -0.60548598 0.018964\n\t\t 0.190882 -0.59033298 0.018964 0.18149 -0.540236 0.104388 0.18618999 -0.517542 0.104388\n\t\t 0.72352397 0.270192 0.334663 0.54931802 0.62592399 0.63955802 0.559861 0.62432301 0.613433\n\t\t 0.228671 0.40438899 1.087767005 0.27978 0.44624799 1.12165105 0.27978 0.44624799 1.12165105\n\t\t 0.577106 0.62546301 0.56101102 -0.31227601 -0.056233998 0.499989 -0.28572401 -0.63717097 -0.52252001\n\t\t -0.25836101 -0.65872401 -0.52532399 0.62374401 -0.27690101 -0.024436999 0.68044198 0.016814999 0.090682\n\t\t 0.68044198 0.016814999 0.090682 -0.44410801 0.42350301 -0.34033999 -0.44410801 0.42350301 -0.34033999\n\t\t -0.454546 0.42683101 -0.343696 -0.454546 0.42683101 -0.343696 -0.12644599 0.86588103 0.497991\n\t\t -0.400985 0.72084898 0.31274 -0.43133801 0.68547201 0.25834101 -0.45632699 0.439823 -0.33492801\n\t\t -0.45632699 0.439823 -0.33492801 -0.45632699 0.439823 -0.33492801 -0.47263899 0.434854 -0.336395\n\t\t -0.47263899 0.434854 -0.336395 -0.47263899 0.434854 -0.336395 -0.34911099 0.211538 1.061679006\n\t\t -0.31599599 -0.54448301 -0.40999901 -0.22549599 -0.66962898 -0.53003198 0.39017799 0.44372699 1.041514993\n\t\t -0.305141 -0.54685599 -0.39439699 0.92678398 0.15351599 0.63720399 0.93040597 0.142225 0.63851798\n\t\t 0.54481399 0.055550002 -0.20477299 0.53646803 0.051970001 -0.202537 0.69476199 0.24533699 -0.105835\n\t\t 0.69476199 0.24533699 -0.105835 0.69272 0.2942 -0.11711;\n\tsetAttr \".vt[10624:10789]\" 0.57043898 0.33093601 -0.17784099 0.53781903 0.47008899 -0.216575\n\t\t 0.29496199 -0.59421998 0.015823999 0.27010199 -0.61054897 0.015823999 -0.29983699 0.128341 1.061108947\n\t\t -0.31155401 0.121495 1.047433972 -0.39988801 -0.61786997 0.20162 -0.370325 -0.59829402 0.20162\n\t\t -0.64867902 -0.30850801 0.270114 -0.64867902 -0.30850801 0.270114 -0.64867902 -0.30850801 0.270114\n\t\t 0.72012299 0.240821 0.33549601 0.31129101 -0.56936002 0.015823999 0.90044397 0.105007 0.42807901\n\t\t 0.90044397 0.105007 0.42807901 0.90044397 0.105007 0.42807901 0.859752 -0.077794001 0.40432701\n\t\t 0.859752 -0.077794001 0.40432701 0.678931 0.018352 0.043777999 0.66921401 0.021743 -0.051329002\n\t\t 0.50547999 0.43681201 0.91968399 0.56683201 0.430031 0.83333403 -0.69742298 0.51410198 0.10658\n\t\t -0.66461599 0.56725901 0.267593 0.53189099 0.63088202 0.67638099 0.0035280001 -0.66382402 0.090157002\n\t\t 0.0035280001 -0.76985502 0.090157002 0.28856599 -0.036302999 0.499998 0.25456801 -0.028325999 0.50000799\n\t\t 0.19891299 -0.49817199 0.104388 0.72322601 0.24523 0.32846901 0.38397199 -0.57767898 -0.28856701\n\t\t 0.31812501 -0.61389297 -0.36364499 -0.36659601 -0.80821902 -0.110916 -0.36659601 -0.80821902 -0.110916\n\t\t -0.36054099 -0.81149298 -0.102732 0.0035280001 -0.64493501 0.090157002 0.0035280001 -0.64493501 0.090157002\n\t\t -0.33315301 -0.55121398 -0.42100799 -0.321971 -0.54865301 -0.40559101 -0.35482699 0.14105 1.020179987\n\t\t -0.34131601 0.12839501 1.025292039 0.65346801 0.185664 -0.113489 0.140838 -0.677939 0.19176\n\t\t 0.140838 -0.677939 0.19176 0.140838 -0.677939 0.19176 -0.31163701 -0.55110699 -0.39074501\n\t\t 0.28202 -0.62936503 -0.39504001 0.248134 -0.642582 -0.421435 0.165255 -0.356141 -0.61735302\n\t\t 0.26769501 -0.35622099 -0.52011102 0.26769501 -0.35622099 -0.52011102 0.240978 -0.61658001 0.012081\n\t\t 0.240978 -0.61658102 0.015823999 0.132368 0.152558 1.14158905 0.127114 0.152584 1.14291596\n\t\t 0.53322703 -0.45960599 -0.046192002 0.38204899 0.78028202 0.57064998 0.44176099 0.75433898 0.47874701\n\t\t 0.48956701 0.40576199 -0.32802001 0.48956701 0.40576199 -0.32802001 0.48956701 0.40576199 -0.32802001\n\t\t 0.47844401 0.404024 -0.33907101 0.47844401 0.404024 -0.33907101 -0.15615299 -0.351863 0.29099\n\t\t -0.142636 -0.37131 0.29099 -0.29144901 0.15752999 1.083498001 -0.29602101 0.17540801 1.088819981\n\t\t -0.36925599 -0.60838002 -0.44013801 -0.36410099 -0.58819598 -0.43486801 -0.132173 -0.63157201 -0.53885198\n\t\t -0.122905 -0.61696702 -0.54176098 0.56120598 -0.39628801 -0.165068 0.56120598 -0.39628801 -0.165068\n\t\t 0.535245 -0.39787701 -0.16480599 0.59056503 -0.36272401 -0.061728001 0.29650199 -0.50837499 -0.53303099\n\t\t 0.312343 -0.53903699 -0.527551 -0.36464399 0.157626 1.020292997 -0.30543199 -0.062729001 0.51016903\n\t\t -0.27977601 -0.044895999 0.51017898 0.68339401 0.228542 -0.107815 -0.122506 -0.38378799 0.29099\n\t\t 0.27242801 0.47589701 1.130283 0.277803 0.465689 1.13041794 0.23054101 -0.55574799 -0.47474301\n\t\t 0.23054101 -0.55574799 -0.47474301 0.59888703 0.355919 -0.12696899 0.58222198 0.43825001 -0.151204\n\t\t 0.58222198 0.43825001 -0.151204 0.29471499 -0.507451 -0.52270198 0.31055599 -0.538113 -0.51722097\n\t\t -0.36180201 -0.608275 -0.44519201 -0.363105 -0.60716802 -0.45733899 0.48272401 0.64259303 0.75764698\n\t\t 0.144509 0.167722 1.14470899 0.142965 0.172405 1.146999 -0.46938199 -0.45009601 0.30564499\n\t\t -0.49894601 -0.46967199 0.30564499 0.56611699 -0.39918199 -0.141744 0.27010199 -0.469924 0.015823999\n\t\t 0.29496199 -0.48625299 0.015823999 0.47760099 0.434854 -0.336395 0.47760099 0.434854 -0.336395\n\t\t 0.47760099 0.434854 -0.336395 0.470431 0.42350301 -0.34467801 0.470431 0.42350301 -0.34467801\n\t\t -0.099196002 -0.38798001 0.29099 0.34601 -0.66588998 -0.39974201 0.35937199 -0.66032702 -0.417472\n\t\t 0.42573199 0.65064001 0.82480198 0.488401 0.42184401 -0.333756 0.488401 0.42184401 -0.333756\n\t\t 0.488401 0.42184401 -0.333756 -0.369454 -0.62905502 -0.43899301 -0.357164 -0.58344603 -0.45107299\n\t\t -0.53766602 0.055548999 -0.21292201 0.678891 0.37880501 -0.101431 0.662745 0.40577 -0.116752\n\t\t -0.16156401 -0.328805 0.29099 0.57948601 -0.38773 -0.139365 0.59417999 -0.36769101 -0.087638997\n\t\t 0.59417999 -0.36769101 -0.087638997 0.45951 0.42683101 -0.343696 0.45951 0.42683101 -0.343696\n\t\t -0.32496601 -0.573892 -0.521393 -0.322384 -0.59355003 -0.52008098 -0.322384 -0.59355003 -0.52008098\n\t\t 0.0035280001 -0.78792 0.090157002 0.0035280001 -0.78792 0.090157002 -0.36202601 -0.62886101 -0.444024\n\t\t 0.60180098 -0.35302699 -0.067964002 -0.15930299 -0.65567303 -0.54272598 -0.145604 -0.64522898 -0.54602897\n\t\t 0.58245897 -0.37796801 -0.084247999 -0.278254 0.15448 1.093319058 -0.28005299 0.13229901 1.080260038\n\t\t -0.53678799 0.46710801 -0.21394099 -0.610726 0.447272 -0.17840999 -0.356879 -0.64695698 -0.43604201\n\t\t 0.40764499 0.65525597 0.83931798 0.40764499 0.65525597 0.83931798 0.31676999 -0.57348597 -0.52370501\n\t\t 0.240978 -0.46938899 0.018964 0.26800501 -0.47498599 0.018964 -0.157371 -0.30549601 0.29099\n\t\t -0.369216 0.175504 1.025614977 -0.347233 -0.66005498 -0.42249799 0.35132501 -0.66838503 -0.43076801\n\t\t -0.157517 -0.65474898 -0.53239697 0.56294698 -0.378699 -0.179627 -0.43463501 -0.44303399 0.30564499\n\t\t -0.34603199 -0.56380302 -0.43756601 -0.51852202 -0.49923599 0.30564499 -0.52558398 -0.53398299 0.30564499\n\t\t 0.361554 -0.238437 -0.47676599 0.38922399 -0.203912 -0.463952 0.38922399 -0.203912 -0.463952\n\t\t 0.57990497 -0.27331901 -0.20648199 0.58310997 -0.258196 -0.20545501 0.240978 -0.61108297 0.045821998\n\t\t 0.26800501 -0.60548598 0.045821998 0.465725 0.57219303 -0.12820999 0.469549 0.60809797 -0.062958002\n\t\t -0.532857 0.47008899 -0.216575 0.25716799 -0.34698501 -0.51968402;\n\tsetAttr \".vt[10790:10955]\" 0.25716799 -0.34698501 -0.51968402 0.240298 -0.344556 -0.51493001\n\t\t 0.58212602 0.430179 -0.188528 0.58212602 0.430179 -0.188528 0.62150699 0.422243 -0.17172\n\t\t -0.14489301 -0.285366 0.29099 -0.099991001 0.0069949999 1.050133944 0.002482 0.0069949999 1.062116981\n\t\t -0.53150398 0.051970001 -0.202537 0.566576 0.034689002 -0.25597799 0.56468701 0.044132002 -0.255472\n\t\t 0.36686099 -0.66948599 -0.41808301 0.35225701 -0.67632598 -0.39844099 0.44310099 0.41479099 -0.33589199\n\t\t 0.44310099 0.41479099 -0.33589199 0.44907001 0.42350301 -0.34033999 0.44907001 0.42350301 -0.34033999\n\t\t -0.714674 0.268112 0.319426 -0.71769297 0.25659201 0.31026 -0.71769297 0.25659201 0.31026\n\t\t -0.71769297 0.25659201 0.31026 -0.47378799 -0.826415 0.56235301 -0.47641501 -0.83703399 0.52275401\n\t\t 0.44388101 0.404024 -0.33205101 0.44388101 0.404024 -0.33205101 0.43959901 -0.457616 0.32670701\n\t\t 0.41042301 -0.46354601 0.32670701 -0.48791599 0.182845 0.78145599 0.14150999 0.15801699 1.14151704\n\t\t 0.13743401 0.15447 1.14109695 0.172784 -0.328969 0.28619099 0.16815899 -0.30326 0.28619701\n\t\t 0.71781301 0.44613501 0.12297 0.71503597 0.44637901 0.121321 0.240978 -0.62068999 0.051406\n\t\t 0.21028601 -0.61433297 0.051406 -0.71155298 0.27470201 0.32958499 0.55887198 0.027356001 -0.257548\n\t\t 0.56033897 0.034689002 -0.25794199 0.52660298 0.430507 -0.26537901 0.546978 0.345635 -0.23549899\n\t\t 0.546978 0.345635 -0.23549899 0.65152299 0.033291001 -0.103813 0.65152299 0.033291001 -0.103813\n\t\t 0.65152299 0.033291001 -0.103813 -0.375606 -0.79959899 -0.108471 -0.375606 -0.76806098 -0.108471\n\t\t 0.17572799 -0.56726301 0.045821998 0.190881 -0.59033298 0.045821998 -0.46938199 -0.61786902 0.30564499\n\t\t -0.43463501 -0.62493199 0.30564499 -0.70846301 0.27747601 0.342188 -0.20375501 0.006997 1.0014200211\n\t\t 0.55351597 0.57089299 0.77200401 0.49412501 0.58261198 0.85477901 0.171002 -0.227507 -0.66161501\n\t\t 0.171002 -0.227507 -0.66161501 -0.87468201 0.212604 0.62921298 -0.185918 -0.49013999 0.018964\n\t\t -0.208987 -0.47498599 0.018964 -0.40913501 0.0070270002 0.81068498 -0.484476 0.0070389998 0.732283\n\t\t 0.57796401 -0.423691 0.00023000001 0.58943498 -0.403144 0.026024001 -0.170764 -0.51320899 0.018964\n\t\t 0.716515 0.27470201 0.32958499 0.71342498 0.27747601 0.342188 -0.266541 0.007005 0.95021999\n\t\t -0.49894601 -0.59829301 0.30564499 -0.68213302 0.20165201 0.26101601 -0.76829398 0.179361 0.291529\n\t\t 0.437951 0.40576199 -0.317536 0.437951 0.40576199 -0.317536 0.437951 0.40576199 -0.317536\n\t\t -0.156838 0.218257 -0.57528901 -0.156838 0.218257 -0.57528901 -0.113571 0.21410599 -0.587672\n\t\t 0.72098202 0.26526299 0.336694 0.14399999 0.16268 1.14278805 -0.175956 -0.065927997 -0.66253901\n\t\t -0.17446899 -0.13834199 -0.66842002 0.27134001 0.59516001 1.059859037 0.264294 0.58977199 1.067963958\n\t\t 0.002481 0.216833 -0.591609 0.002481 0.216833 -0.591609 0.002481 0.216833 -0.591609\n\t\t -0.002502 0.216833 -0.59019798 0.34236601 -0.54887998 -0.39269099 0.331981 -0.55131501 -0.377801\n\t\t 0.44798201 0.45068201 -0.310875 0.43147799 0.42989701 -0.303745 0.27456599 0.59168899 1.073007941\n\t\t 0.270417 0.58337301 1.080641985 0.28161201 0.59711498 1.064910054 0.12968101 0.177974 1.15259004\n\t\t 0.13493501 0.177948 1.151263 -0.51852202 -0.49923599 0.289473 -0.52558398 -0.53398299 0.289473\n\t\t 0.271157 -0.48519799 -0.53948599 -0.51852202 -0.56873 0.30564499 0.635189 0.034683999 -0.103128\n\t\t 0.88095701 0.108678 0.42075801 -0.90481001 -0.111665 0.59000599 -0.90328699 -0.114325 0.59817201\n\t\t -0.90328699 -0.114325 0.59817201 -0.91684097 -0.081096001 0.54711902 0.54856902 -0.457634 -0.061200999\n\t\t 0.565449 -0.44042 -0.026773 0.044698 -0.300017 0.28622499 0.038729999 -0.32544699 0.28622201\n\t\t 0.29107401 -0.49013999 0.018964 -0.682244 0.28439 0.44738001 -0.69541502 0.41407499 -0.138541\n\t\t -0.69541502 0.41407499 -0.138541 -0.70742297 0.380629 -0.123937 0.54885399 0.016984999 -0.25486401\n\t\t 0.54177201 0.015466 -0.25296599 -0.90320802 -0.112267 0.60361302 -0.90320802 -0.112267 0.60361302\n\t\t -0.90320802 -0.112267 0.60361302 -0.89193302 -0.112276 0.59539801 0.26585799 0.45619199 1.12756705\n\t\t 0.26585799 0.45619199 1.12756705 0.208159 0.416572 1.095463991 0.01444 -0.75865197 0.098231003\n\t\t 0.01444 -0.75865197 0.098231003 0.01444 -0.68027198 0.098231003 0.01444 -0.68027198 0.098231003\n\t\t -0.43463501 -0.44303399 0.289473 -0.39988801 -0.45009601 0.289473 -0.70042998 0.417945 -0.131529\n\t\t -0.70042998 0.417945 -0.131529 -0.37297401 -0.58392298 -0.438324 -0.3617 -0.564156 -0.42476499\n\t\t 0.13961001 0.175989 1.14929605 -0.46076301 0.57219303 -0.12820999 -0.464587 0.60809797 -0.062958002\n\t\t -0.055617999 -0.69458002 -0.80982 -0.035480998 -0.69080597 -0.81278199 0.52048898 0.66980398 0.046636999\n\t\t 0.52211899 0.653615 0.016137 -0.43956399 -0.56625199 -0.32531801 -0.49872199 -0.55207002 -0.22012199\n\t\t -0.165167 -0.540236 0.018964 0.38393801 -0.60780299 -0.44463301 0.377938 -0.58392298 -0.438324\n\t\t -0.163413 -0.75532299 -0.59453303 -0.163413 -0.75532299 -0.58524799 -0.46381101 -0.46354601 0.32670701\n\t\t -0.43463501 -0.457616 0.32670701 0.47875199 -0.826415 0.56235301 -0.43848699 -0.545636 -0.321127\n\t\t -0.49306101 -0.52928603 -0.230766 -0.488635 -0.479983 0.32670701 0.178564 -0.22306301 -0.66990697\n\t\t 0.178564 -0.22306301 -0.66990697 0.36666301 -0.564156 -0.42476499 0.26061201 0.466506 1.12740004\n\t\t -0.34866899 -0.55148202 -0.40815499 -0.33740199 -0.54887998 -0.39269099 0.27770799 0.59809703 1.053611994\n\t\t 0.127837 -0.87054902 -0.54540402 0.127837 -0.87054902 -0.54540402 0.131088 -0.76772499 -0.54540402\n\t\t 0.131088 -0.76772499 -0.54540402 0.240978 -0.61108297 0.088372998;\n\tsetAttr \".vt[10956:11121]\" 0.21395101 -0.60548598 0.088372998 0.481379 -0.83703399 0.52275401\n\t\t -0.35449901 -0.57151699 -0.42361799 -0.34339201 -0.56098098 -0.40974599 0.168786 -0.054627001 -0.67640001\n\t\t -0.23601399 -0.61108297 0.018964 -0.208987 -0.60548598 0.018964 -0.45032701 -0.82597399 -0.050400998\n\t\t -0.45805699 -0.77973402 -0.044681001 0.203179 -0.47031799 -0.54185098 0.170314 -0.48122299 -0.54655898\n\t\t 0.384123 -0.632276 -0.443243 0.17258599 -0.049509998 -0.67514801 0.17258599 -0.049509998 -0.67514801\n\t\t 0.179388 -0.047203999 -0.67230803 0.179388 -0.047203999 -0.67230803 -0.44929001 -0.82839102 -0.050129\n\t\t -0.44929001 -0.82839102 -0.050129 -0.23601399 -0.61658102 0.015823999 -0.20689 -0.61054897 0.015823999\n\t\t -0.443771 0.487055 -0.267465 -0.44180501 0.478986 -0.28029799 -0.44180501 0.478986 -0.28029799\n\t\t 0.64373797 -0.32723501 0.52838099 0.64373797 -0.32723501 0.52838099 0.64373797 -0.32723501 0.52838099\n\t\t -0.426761 -0.52635199 -0.301673 0.63996702 -0.32723501 0.53874201 0.63996702 -0.32723501 0.53874201\n\t\t 0.63996702 -0.32723501 0.53874201 0.56514001 -0.30210701 0.51005697 -0.635351 0.533149 -0.00148\n\t\t -0.69846398 0.490127 0.029224001 -0.69846398 0.490127 0.029224001 -0.488635 -0.587982 0.32670701\n\t\t -0.46381101 -0.60442001 0.32670701 0.79447699 -0.22244 0.583305 0.79447699 -0.22244 0.583305\n\t\t 0.23936699 -0.47230199 -0.54613698 0.204965 -0.47124201 -0.55217999 -0.67705101 -0.067581996 0.31242499\n\t\t -0.67705101 -0.067581996 0.31242499 -0.665214 -0.066248 0.312264 -0.665214 -0.066248 0.312264\n\t\t 0.29107401 -0.59033298 0.088372998 0.26800501 -0.60548598 0.088372998 -0.92039102 -0.070367999 0.53768301\n\t\t -0.081928 -0.59855998 -0.70674098 -0.060322002 -0.59097099 -0.71018302 -0.070143998 -0.71681499 -0.80371898\n\t\t 0.58831 -0.239638 0.64569098 0.56685299 0.644526 0.54973 0.57266998 0.63856101 0.54468697\n\t\t 0.57266998 0.63856101 0.54468697 0.52120697 0.61356801 -0.057383999 -0.32056001 0.28902099 -0.468389\n\t\t -0.394106 0.33300799 -0.392111 0.3856 -0.587982 0.32670701 0.36916199 -0.56315899 0.32670701\n\t\t 0.188224 -0.106617 -0.68213099 0.18742201 -0.16318899 -0.67778802 0.191017 -0.106087 -0.67699999\n\t\t 0.18218 -0.20874301 -0.67220199 0.191835 -0.063368 -0.67115599 -0.265138 -0.61054897 0.015823999\n\t\t -0.44762 -0.82914102 -0.048248 -0.69879597 0.48574999 0.020127 -0.69879597 0.48574999 0.020127\n\t\t 0.54550397 0.66021597 0.57542002 0.47325099 0.64836401 0.010672 0.47310001 0.66266698 0.037241001\n\t\t -0.48630399 -0.51724899 -0.227918 0.119085 0.15812699 1.14717996 0.12244 0.154543 1.14488399\n\t\t -0.188217 -0.68160701 -0.53540701 -0.15220299 -0.66699702 -0.54294097 0.18107601 -0.20973299 -0.67504102\n\t\t 0.185789 -0.16370501 -0.68240499 -0.26442 -0.67045403 -0.52322799 -0.29541901 -0.64603698 -0.520051\n\t\t -0.71137702 0.257337 0.313245 0.26367199 -0.59502399 0.104388 0.240978 -0.59972399 0.104388\n\t\t -0.54659802 -0.76133901 0.56264198 -0.450104 0.51347798 -0.226301 -0.43382701 -0.82582599 -0.058455002\n\t\t -0.208766 -0.81604898 0.245698 -0.208766 -0.81604898 0.245698 0.580486 0.083587997 -0.162817\n\t\t 0.11805 0.167851 1.15139103 0.120539 0.17251401 1.15266204 -0.85478801 -0.077794999 0.40432701\n\t\t -0.85478801 -0.077794999 0.40432701 -0.88059598 -0.101775 0.44983301 -0.88059598 -0.101775 0.44983301\n\t\t -0.307381 -0.63018399 -0.5194 -0.307381 -0.63018399 -0.5194 -0.30492899 -0.62826401 -0.53953397\n\t\t 0.338689 -0.55922401 -0.39661101 0.32974201 -0.561858 -0.38384399 0.3856 -0.479983 0.32670701\n\t\t -0.45247701 0.38518301 -0.29417801 -0.39988801 -0.61786902 0.30564499 -0.64700103 -0.408932 0.19922701\n\t\t -0.64896202 -0.39322001 0.231801 -0.124741 -0.38961199 0.28619 -0.146943 -0.37584901 0.28618801\n\t\t 0.67193198 -0.027690001 -0.075212002 0.67576897 -0.0071450002 -0.068138003 0.67576897 -0.0071450002 -0.068138003\n\t\t 0.53449398 0.66630501 0.59319699 0.519876 0.57934201 -0.119781 -0.163413 -0.75532299 -0.46830001\n\t\t -0.36787301 0.192065 1.035364985 -0.36082801 0.204693 1.048004031 0.39353701 0.34161299 -0.38558701\n\t\t 0.45137599 0.39353901 -0.28930199 0.154396 -0.281059 0.286203 -0.368615 -0.76638103 -0.113644\n\t\t -0.368615 -0.79791898 -0.113644 0.93863201 0.056260001 0.51964498 0.186358 -0.049506001 -0.67013502\n\t\t 0.186358 -0.049506001 -0.67013502 0.34835601 -0.56098098 -0.40974599 0.542777 -0.51108801 -0.138816\n\t\t 0.65631503 0.0072940001 -0.060066 0.31182501 -0.540236 0.088372998 -0.379159 -0.632276 -0.443243\n\t\t -0.37897399 -0.60780299 -0.44463301 -0.304418 -0.619798 -0.55747902 -0.304418 -0.619798 -0.55747902\n\t\t -0.30892399 -0.61015898 -0.55909801 -0.505072 -0.504807 0.32670701 0.16604 -0.47041699 -0.55898499\n\t\t 0.149497 -0.48126 -0.56087601 -0.43463501 -0.62493199 0.289473 -0.39988801 -0.61786997 0.289473\n\t\t 0.34112501 -0.56088197 -0.41483301 0.33143601 -0.55908602 -0.401622 -0.73548901 0.193753 0.025078001\n\t\t -0.756446 0.241027 0.039081998 -0.756446 0.241027 0.039081998 -0.497224 0.49050799 -0.266949\n\t\t -0.51249403 -0.253575 -0.30249199 -0.51249403 -0.253575 -0.30249199 -0.476309 -0.25199199 -0.30736399\n\t\t -0.79913503 -0.22051901 0.59258598 -0.83371902 -0.216915 0.60520202 -0.83371902 -0.216915 0.60520202\n\t\t -0.83371902 -0.216915 0.60520202 -0.511002 -0.53398299 0.32670701 -0.88785702 0.19906101 0.614649\n\t\t -0.88193601 0.199496 0.63183701 -0.88193601 0.199496 0.63183701 0.29107401 -0.59033298 0.045821998\n\t\t 0.36906499 -0.58819598 -0.43486801 0.35946301 -0.57151699 -0.42361799 -0.84220898 -0.209729 0.60831201\n\t\t -0.84220898 -0.209729 0.60831201 -0.84220898 -0.209729 0.60831201 -0.76878703 -0.101715 0.75673699\n\t\t -0.76878703 -0.101715 0.75673699 0.124615 0.176062 1.15308201 0.36165801 -0.588157 -0.439955\n\t\t 0.352155 -0.57146603 -0.42872301 -0.67610502 0.098242 0.004195;\n\tsetAttr \".vt[11122:11287]\" -0.72670501 0.19339401 0.034883 -0.68139797 -0.040778 0.017689999\n\t\t -0.68531603 -0.02067 0.025265999 -0.68531603 -0.02067 0.025265999 0.240978 -0.46938899 0.088372998\n\t\t 0.21395101 -0.474987 0.088372998 0.30146 -0.61473799 -0.39927 0.33697301 -0.59937203 -0.36785901\n\t\t -0.76459599 0.114859 0.77469802 -0.46597499 -0.395688 -0.276171 -0.48880699 -0.375523 -0.250857\n\t\t -0.48880699 -0.375523 -0.250857 -0.46828899 0.64836401 0.010672 0.189932 -0.054614998 -0.66870201\n\t\t 0.52525198 -0.49225199 -0.130945 0.52348602 -0.56873 0.30564499 0.50391001 -0.59829301 0.30564499\n\t\t -0.92181998 0.15351599 0.63720399 -0.89427501 0.19510999 0.62713301 -0.89427501 0.19510999 0.62713301\n\t\t -0.89427501 0.19510999 0.62713301 0.667054 -0.20308401 0.356244 0.667054 -0.20308401 0.356244\n\t\t 0.68415898 -0.091903001 0.35229799 0.68415898 -0.091903001 0.35229799 -0.92544198 0.142225 0.63851798\n\t\t 0.47434601 -0.61786902 0.30564499 0.349282 -0.49657199 0.210595 0.370359 -0.46474299 0.210595\n\t\t -0.76721698 0.105007 0.78048003 -0.76721698 0.105007 0.78048003 -0.76721698 0.105007 0.78048003\n\t\t -0.303101 -0.62491798 -0.55263901 -0.303101 -0.62491798 -0.55263901 0.43959901 -0.62493199 0.30564499\n\t\t 0.66569901 -0.089714997 0.34924901 0.66574299 -0.091168001 0.35260299 0.66574299 -0.091168001 0.35260299\n\t\t -0.68089098 0.340538 -0.090608999 -0.67392898 0.37880501 -0.101431 -0.23601399 -0.480748 0.104388\n\t\t -0.21332 -0.485448 0.104388 -0.59597802 -0.226798 -0.140277 -0.63530302 -0.160992 -0.11941\n\t\t 0.53054798 -0.53398299 0.30564499 0.34928301 -0.57139403 0.210595 0.34167901 -0.53398299 0.210595\n\t\t -0.30393401 -0.62754399 -0.54457802 -0.68785298 0.30227101 -0.079786003 -0.662691 -0.0033859999 0.034995999\n\t\t -0.21609101 -0.62799901 -0.62182498 -0.199856 -0.62141299 -0.62522101 0.32731301 -0.52256501 -0.419736\n\t\t 0.28985199 -0.54098397 -0.44269401 0.40251699 -0.56488699 -0.29444599 0.47913799 -0.51397902 -0.184185\n\t\t 0.10416 -0.38798001 0.29099 0.081101999 -0.38256899 0.29099 -0.52244699 -0.053757001 -0.29474699\n\t\t -0.53835899 -0.030776 -0.261473 0.47434601 -0.45009601 0.30564499 0.43959901 -0.44303399 0.30564499\n\t\t 0.13041 -0.27184901 0.29099 0.107353 -0.26643899 0.29099 -0.68989599 0.253407 -0.068510003\n\t\t -0.68989599 0.253407 -0.068510003 0.41782501 -0.45341399 -0.34763101 0.356372 -0.49285001 -0.396467\n\t\t 0.127469 -0.38378799 0.29099 -0.32785901 -0.49403399 -0.397926 -0.29317901 -0.512411 -0.42076901\n\t\t -0.37783399 -0.74446303 -0.102354 -0.38389 -0.74956 -0.110538 -0.38389 -0.74956 -0.110538\n\t\t 0.50391001 -0.46967199 0.30564499 -0.28611001 -0.59033298 0.045821998 -0.30126399 -0.56726301 0.045821998\n\t\t -0.36189699 -0.66948599 -0.41808301 -0.37299299 -0.65381998 -0.433705 -0.125284 0.18230399 1.160272\n\t\t -0.133159 0.182266 1.158283 0.152999 -0.21763501 -0.67384398 0.153332 -0.16439199 -0.68352199\n\t\t 0.1476 -0.37131 0.29099 0.162958 -0.106375 -0.68068302 0.15937001 -0.061625 -0.67643398\n\t\t 0.084044002 -0.27063099 0.29099 0.063914001 -0.28310901 0.29099 -0.161917 -0.57092899 0.051406\n\t\t -0.179125 -0.59712601 0.051406 0.94016802 0.103159 0.63396102 0.94016802 0.103159 0.63396102\n\t\t 0.934991 0.103135 0.648332 0.934991 0.103135 0.648332 -0.186913 -0.609577 -0.62851799\n\t\t 0.51979101 -0.375525 -0.25085601 0.51979101 -0.375525 -0.25085601 0.53729802 -0.380018 -0.241285\n\t\t 0.53729802 -0.380018 -0.241285 -0.22263999 -0.71080202 -0.229856 -0.143108 -0.69168502 -0.28870699\n\t\t -0.151594 -0.82470298 0.203393 -0.151594 -0.82470298 0.203393 -0.151594 -0.82470298 0.203393\n\t\t -0.208766 -0.83844501 0.245698 -0.208766 -0.83844501 0.245698 -0.15556 -0.54023701 0.051406\n\t\t -0.269811 -0.60481799 -0.61460799 -0.26441801 -0.61196399 -0.61490202 -0.46813801 0.66266698 0.037241001\n\t\t -0.095043004 -0.61380398 -0.69813597 -0.069976002 -0.70223403 -0.80418599 -0.069976002 -0.70223403 -0.80418599\n\t\t 0.715644 0.490251 0.029381 0.715644 0.490251 0.029381 0.73425299 0.42809799 0.037574001\n\t\t 0.53713399 -0.51348799 -0.134864 0.53713399 -0.51348799 -0.134864 0.53264999 -0.50405401 -0.133993\n\t\t 0.53264999 -0.50405401 -0.133993 0.404852 -0.45009601 0.30564499 0.37528899 -0.46967199 0.30564499\n\t\t 0.224078 -0.53991199 -0.60888499 0.236641 -0.540299 -0.60667801 0.50989598 0.51809198 -0.22448801\n\t\t -0.16908699 0.123631 -0.60916698 -0.16286901 0.22002199 -0.57279199 -0.16286901 0.22002199 -0.57279199\n\t\t -0.16286901 0.22002199 -0.57279199 0.43959901 -0.62493199 0.214746 0.404852 -0.61786997 0.214746\n\t\t -0.941971 0.018497 0.56047398 -0.941167 0.011356 0.550403 -0.276575 -0.58830303 -0.61491603\n\t\t 0.55178702 0.057487 -0.25201499 0.542665 0.059443001 -0.249571 -0.46838 0.674429 0.057257\n\t\t -0.46838 0.674429 0.057257 0.53894502 -0.54087597 -0.128114 0.53894502 -0.54087597 -0.128114\n\t\t -0.16652 0.124216 -0.60223198 -0.16652 0.124216 -0.60223198 -0.16652 0.124216 -0.60223198\n\t\t 0.166877 -0.20927 -0.66768003 -0.117692 0.17943899 1.16101003 -0.26670599 -0.61433297 0.051406\n\t\t -0.29290301 -0.59712499 0.051406 0.533544 0.057487 -0.247127 -0.27773899 -0.57944101 -0.61550701\n\t\t 0.16233499 -0.30549601 0.29099 0.149857 -0.285366 0.29099 -0.172544 0.062939003 -0.63059002\n\t\t 0.37528899 -0.46967199 0.289473 0.35571301 -0.49923599 0.289473 0.404852 -0.45009601 0.289473\n\t\t 0.455066 0.51347798 -0.226301 -0.939641 0.00278 0.54568601 -0.92611802 -0.059964001 0.539285\n\t\t -0.37497699 -0.161277 -0.48014501 -0.42058399 -0.135506 -0.42558801 0.049178001 -0.348921 0.29099\n\t\t 0.061655998 -0.36905101 0.29099 0.748375 0.42515001 0.33607301 0.752689 0.37661901 0.35225499\n\t\t 0.752689 0.37661901 0.35225499 -0.26513901 -0.469924 0.015823999;\n\tsetAttr \".vt[11288:11453]\" -0.28999799 -0.48625299 0.015823999 0.161117 -0.351863 0.29099\n\t\t -0.25044399 -0.62297201 -0.61633402 0.166528 -0.328805 0.29099 0.68986303 0.098750003 0.113008\n\t\t 0.70138597 0.11917 0.056279 -0.49894601 -0.59829301 0.20162 -0.51852202 -0.56873 0.20162\n\t\t 0.54885399 0.052393001 -0.25486401 0.54177201 0.053911999 -0.25296599 0.67716002 -0.18963 0.28151801\n\t\t 0.68260598 -0.089060001 0.32370701 0.68260598 -0.089060001 0.32370701 0.044985998 -0.32561201 0.29099\n\t\t 0.53343898 -0.54272997 -0.13981999 0.53343898 -0.54272997 -0.13981999 0.502186 0.49050799 -0.266949\n\t\t 0.44345099 -0.545636 -0.321127 0.56412601 -0.262833 -0.26851901 -0.26738799 -0.546188 -0.62027001\n\t\t -0.27547801 -0.56184798 -0.61747098 0.52348202 -0.49843299 -0.128213 0.66957802 0.56725901 0.26759201\n\t\t 0.63739902 0.59578401 0.37315601 0.68985099 0.51614398 0.51877201 0.61426598 0.55204898 0.69072199\n\t\t -0.52495199 -0.57139301 0.205772 -0.532556 -0.53398299 0.205772 -0.16993 0.063827001 -0.62387699\n\t\t -0.30632699 -0.51111197 0.015823999 -0.23366 -0.62854099 -0.61873901 0.59196401 0.075704001 -0.16593701\n\t\t 0.59196401 0.075704001 -0.16593701 0.597507 0.064322002 -0.16755401 -0.286111 -0.49013999 0.045821998\n\t\t -0.26304099 -0.47498599 0.045821998 0.370359 -0.60322303 0.210595 0.52348602 -0.49923599 0.30564499\n\t\t 0.56934899 -0.57529497 -0.13941 0.92674601 0.117114 0.62913197 0.050397001 -0.30255499 0.29099\n\t\t -0.93959701 0.041186001 0.61115903 -0.93959701 0.041186001 0.61115903 -0.92824298 0.043235 0.60838503\n\t\t -0.185917 -0.49013999 0.076024003 -0.208987 -0.47498599 0.076025002 -0.147229 -0.69896799 0.20016301\n\t\t -0.147229 -0.69896799 0.20016301 -0.140238 -0.69728798 0.19498999 -0.140238 -0.69728798 0.19498999\n\t\t -0.140238 -0.69728798 0.19498999 -0.179276 -0.042592999 -0.65936202 -0.31499401 0.29664299 -0.46199799\n\t\t -0.38857499 0.34161299 -0.38558701 -0.31235799 -0.540236 0.015823999 -0.30632699 -0.56936002 0.015823999\n\t\t 0.40218899 -0.6243 0.210595 0.524423 0.053576 -0.244683 0.59196502 0.075704001 -0.13843\n\t\t 0.77325797 0.179361 0.291529 -0.29550201 -0.540236 0.104388 0.547436 -0.001836 -0.233547\n\t\t 0.547436 -0.001836 -0.233547 0.54269701 -0.008591 -0.243315 -0.17066699 -0.039365001 -0.66164702\n\t\t 0.448733 0.487055 -0.267465 -0.179125 -0.483347 0.070440002 0.57849598 -0.63860399 -0.14099801\n\t\t 0.58482403 -0.61822802 -0.145532 0.57723898 -0.59600902 -0.14199901 -0.171525 -0.034474999 -0.66378897\n\t\t -0.18163501 -0.038214002 -0.661138 0.50883901 -0.46474299 0.210595 0.52991599 -0.49657199 0.210595\n\t\t -0.94020802 0.040746 0.60274202 0.65212101 -0.212093 0.37652901 0.65212101 -0.212093 0.37652901\n\t\t 0.66719502 -0.212337 0.374973 0.66719502 -0.212337 0.374973 0.82261199 -0.084310003 0.73657799\n\t\t 0.82355702 -0.097842999 0.72960597 -0.173272 -0.064476997 -0.65598297 0.12640101 0.144252 1.14577401\n\t\t 0.134276 0.144214 1.143785 -0.159089 0.22458699 -0.57115 0.73430902 0.48555699 0.384644\n\t\t 0.74752802 0.36776599 0.043094002 -0.93971997 0.022822 0.55777901 -0.180402 -0.55891901 -0.63417298\n\t\t -0.176562 -0.57632399 -0.63328099 -0.94215298 0.036382999 0.60910398 -0.94151002 0.034924001 0.61240399\n\t\t -0.94151002 0.034924001 0.61240399 0.53291899 0.00056399999 -0.227863 0.166816 -0.35440001 0.28618801\n\t\t -0.15694 -0.050971001 -0.66948801 -0.16251101 -0.042592999 -0.66546398 -0.56630498 -0.59771001 -0.15343601\n\t\t -0.55842501 -0.57713401 -0.15082601 -0.94249499 0.035666 0.60297698 -0.88408297 -0.102051 0.461474\n\t\t -0.54290301 0.0098099997 -0.23202799 -0.536686 0.0081169996 -0.24488699 0.43959901 -0.44303399 0.289473\n\t\t -0.443248 -0.141472 -0.421855 -0.47240299 -0.114702 -0.38299 0.53751999 -0.53398299 0.210595\n\t\t 0.52991599 -0.57139301 0.210595 -0.93881398 0.014864 0.54672801 0.547984 -0.66016299 -0.123974\n\t\t 0.52776998 -0.66272002 -0.113423 0.65543699 -0.27472001 0.32991299 0.659051 -0.33073801 0.27653801\n\t\t 0.659051 -0.33073801 0.27653801 0.112816 0.167134 1.158476 0.116547 0.174123 1.16038001\n\t\t 0.21395101 -0.47498599 0.018964 0.53406602 -0.020888999 -0.26109701 -0.16196901 -0.038214002 -0.66829598\n\t\t 0.73789501 0.392014 0.179626 0.73022598 0.433559 0.172233 0.73022598 0.433559 0.172233\n\t\t 0.74380702 0.35112399 0.18626601 0.74380702 0.35112399 0.18626601 0.750121 0.34502599 0.149386\n\t\t 0.750121 0.34502599 0.149386 -0.20385601 -0.532794 -0.63245302 -0.189882 -0.54380101 -0.63388598\n\t\t 0.921588 0.11712 0.64334899 -0.35710001 -0.47551501 -0.37499401 0.11754 0.162809 1.14946997\n\t\t 0.57865399 -0.61675298 -0.141706 0.431725 -0.52635199 -0.301673 0.181888 -0.24709401 -0.654728\n\t\t 0.181888 -0.24709401 -0.654728 0.171524 -0.24932601 -0.65765798 -0.221696 -0.53516299 -0.62938702\n\t\t -0.207535 -0.53986198 -0.63141501 0.141868 0.14707901 1.14304698 -0.23601399 -0.59972399 0.104388\n\t\t -0.21332 -0.59502399 0.104388 0.517658 -0.044273999 -0.294911 0.496115 -0.074242003 -0.33824301\n\t\t 0.50368601 -0.55207002 -0.22012199 0.53956801 -0.54072702 -0.143967 0.53956801 -0.54072702 -0.143967\n\t\t -0.161917 -0.50954401 0.070440002 0.15170801 0.159384 1.14558101 0.14797699 0.152395 1.143677\n\t\t 0.059606999 -0.27856901 0.286226 0.081808001 -0.26480699 0.28622299 -0.92335498 -0.058821 0.53460002\n\t\t -0.93685102 0.0039280001 0.54099798 0.152472 0.166941 1.14846003 0.86077398 0.055785 0.73550302\n\t\t 0.66815901 -0.33031601 0.27563199 0.66815901 -0.33031601 0.27563199 0.46660101 -0.10629 -0.38458201\n\t\t -0.161806 -0.16322599 -0.67491603 -0.159467 -0.10616 -0.67629802 0.76174998 0.42266899 0.150406\n\t\t 0.76174998 0.42266899 0.150406 0.755436 0.428767 0.18728501 0.755436 0.428767 0.18728501\n\t\t 0.498025 -0.52928603 -0.230766 0.53752702 -0.51357597 -0.150526;\n\tsetAttr \".vt[11454:11619]\" 0.53752702 -0.51357597 -0.150526 -0.46218401 -0.106785 -0.364351\n\t\t 0.57296699 -0.63475603 -0.1381 0.16677 -0.16322599 -0.67491603 0.16443101 -0.10616 -0.67629802\n\t\t -0.11873 0.219767 -0.583211 -0.69955897 0.133707 0.069857001 -0.69741702 0.129355 0.070164002\n\t\t -0.69741702 0.129355 0.070164002 -0.43463501 -0.43606299 0.210595 -0.39722499 -0.44366601 0.210595\n\t\t -0.17176799 -0.136426 -0.661865 0.16173699 -0.24709401 -0.662063 0.16173699 -0.24709401 -0.662063\n\t\t 0.71847302 -0.071093 0.771016 0.71847302 -0.071093 0.771016 0.71847302 -0.071093 0.771016\n\t\t 0.75834501 0.096073002 0.78368598 -0.19574501 -0.54914802 -0.63262397 0.150157 0.173959 1.15189195\n\t\t 0.55567902 -0.64955401 -0.143382 0.56730098 -0.63640398 -0.149737 -0.122873 -0.87054902 -0.54540402\n\t\t -0.122873 -0.87054902 -0.54540402 -0.12612399 -0.76772499 -0.54540402 -0.12612399 -0.76772499 -0.54540402\n\t\t -0.93788201 0.0092240004 0.542714 0.49126801 -0.51724899 -0.227918 0.53122199 -0.50247997 -0.14905\n\t\t 0.53122199 -0.50247997 -0.14905 -0.23601399 -0.62068999 0.070440002 -0.156773 -0.24709401 -0.662063\n\t\t -0.156773 -0.24709401 -0.662063 -0.14984 -0.237498 -0.667579 -0.14984 -0.237498 -0.667579\n\t\t -0.15848 -0.244367 -0.64774698 -0.148618 -0.31302601 -0.61642897 0.51262999 -0.46095201 0.25723299\n\t\t 0.53486001 -0.494524 0.25723299 0.67519897 -0.067667998 0.36164501 0.67567903 -0.069531001 0.36870199\n\t\t 0.67567903 -0.069531001 0.36870199 -0.114432 0.14718901 1.14872205 -0.121437 0.144252 1.14577401\n\t\t -0.161864 -0.24095701 -0.641909 0.41706899 -0.150277 -0.44855201 0.401784 -0.161176 -0.464679\n\t\t 0.401784 -0.161176 -0.464679 0.401784 -0.161176 -0.464679 -0.65778297 0.40577 -0.116752\n\t\t -0.56075603 -0.65349501 -0.133506 -0.54302001 -0.66016299 -0.123974 0.73654002 0.42746001 0.135354\n\t\t 0.73654002 0.42746001 0.135354 -0.92212301 -0.064030997 0.53511399 -0.53989398 -0.65336603 -0.123375\n\t\t -0.55635703 -0.64772499 -0.131787 -0.35548401 0.226816 1.064097047 -0.371176 0.217648 1.045779943\n\t\t -0.23601399 -0.46389201 0.015823999 -0.89185399 -0.110218 0.60083997 0.85342699 0.043839999 0.74138999\n\t\t 0.17572799 -0.56726402 0.018964 -0.156085 -0.063194998 -0.672391 -0.57353199 -0.63860399 -0.14099801\n\t\t 0.189472 -0.57658798 -0.63211298 0.19271199 -0.561903 -0.63286602 0.41561899 -0.16627499 -0.45851499\n\t\t 0.41561899 -0.16627499 -0.45851499 -0.261136 -0.55116302 -0.62113601 -0.26796201 -0.56437403 -0.61877501\n\t\t 0.19256 -0.57502002 -0.61119598 0.194177 -0.58759999 -0.60979098 -0.50783497 -0.032738 -0.30744699\n\t\t -0.48964399 -0.057128999 -0.34271801 0.15219299 -0.805354 0.20016301 0.15219299 -0.805354 0.20016301\n\t\t 0.15219299 -0.805354 0.20016301 0.372495 -0.81317401 -0.097558998 -0.47636601 -0.072293997 -0.36463699\n\t\t 0.42595899 0.45394599 -0.276187 0.26896399 -0.624286 -0.52710098 -0.109403 0.152559 1.15216506\n\t\t -0.164536 -0.24352901 -0.64839202 -0.15468401 -0.31250399 -0.61731499 -0.90403599 -0.108262 0.60502601\n\t\t 0.44452801 -0.56625199 -0.32531801 0.160403 -0.047805998 -0.67304802 0.52348602 -0.56873 0.214746\n\t\t 0.50391001 -0.59829301 0.214746 -0.043434002 -0.874412 -0.54540402 -0.043434002 -0.874412 -0.54540402\n\t\t -0.17882299 -0.59391803 -0.63131702 0.16190401 -0.050971001 -0.66948801 0.436746 -0.43268099 -0.32196501\n\t\t 0.48359299 -0.39567199 -0.27614701 0.16104899 -0.063194998 -0.672391 0.404852 -0.61786902 0.30564499\n\t\t -0.92373198 -0.069140002 0.54194701 -0.92521203 -0.06374 0.53973299 0.436813 -0.13383 -0.424496\n\t\t -0.098131999 -0.61996502 -0.69299299 -0.098131999 -0.61996502 -0.69299299 -0.101321 -0.61689401 -0.69225001\n\t\t -0.101321 -0.61689401 -0.69225001 0.424339 -0.432684 -0.32197201 0.395643 -0.45318699 -0.34735399\n\t\t -0.72560602 0.178745 0.073356003 -0.72499502 0.189165 0.13220599 0.47736701 -0.114702 -0.38299\n\t\t 0.448212 -0.141472 -0.421855 -0.091052003 -0.61130798 -0.70478302 -0.095969997 -0.61577302 -0.70042801\n\t\t -0.095969997 -0.61577302 -0.70042801 0.47093901 -0.395688 -0.276171 -0.90485603 -0.084385999 0.496777\n\t\t -0.90111297 -0.098001003 0.50284398 0.78160602 0.39562199 0.164341 0.77372003 0.438649 0.15637\n\t\t 0.77372003 0.438649 0.15637 -0.72216898 0.169539 0.063355997 -0.72216898 0.169539 0.063355997\n\t\t -0.72403699 0.173724 0.065412998 -0.72403699 0.173724 0.065412998 0.400141 -0.43872201 0.25723299\n\t\t 0.29107401 -0.59033298 0.018964 0.26800501 -0.60548598 0.018964 -0.52625799 -0.50247997 -0.14905\n\t\t -0.52625799 -0.50247997 -0.14905 0.70238101 0.129355 0.070164002 0.70238101 0.129355 0.070164002\n\t\t 0.71977502 0.128721 0.069239996 0.71977502 0.128721 0.069239996 0.308065 -0.62491798 -0.55263901\n\t\t 0.308065 -0.62491798 -0.55263901 0.308898 -0.62754399 -0.54457802 0.407873 -0.45318699 -0.347352\n\t\t 0.394326 0.66735399 0.839935 0.394326 0.66735399 0.839935 0.40015101 0.66036397 0.84163201\n\t\t -0.15204599 -0.30963701 -0.61091101 -0.142553 -0.38207099 -0.57165998 -0.139116 -0.38547301 -0.57706499\n\t\t 0.89281899 0.19906101 0.614649 0.88689798 0.199496 0.63183701 0.88689798 0.199496 0.63183701\n\t\t 0.70452303 0.133707 0.069857001 0.89472002 0.114861 0.43082899 -0.30686101 -0.540236 0.076025002\n\t\t -0.30126399 -0.56726301 0.076025002 0.45111299 0.39531201 -0.330284 0.45111299 0.39531201 -0.330284\n\t\t -0.38503501 -0.159567 -0.48032001 -0.37043899 -0.182019 -0.487223 -0.26304099 -0.60548598 0.088372998\n\t\t -0.23601399 -0.61108297 0.088372998 -0.264 -0.624286 -0.52710098 -0.079501003 -0.60464102 -0.707156\n\t\t 0.76955998 0.114859 0.77469802 0.60875797 0.016837999 -0.162874 0.61220598 0.05119 -0.15008201\n\t\t 0.61220598 0.05119 -0.15008201 0.30390999 -0.613644 -0.55752498 0.30390999 -0.613644 -0.55752498\n\t\t 0.30938199 -0.619798 -0.55747902 0.30938199 -0.619798 -0.55747902;\n\tsetAttr \".vt[11620:11785]\" 0.31182501 -0.540236 0.045821998 0.30622801 -0.56726301 0.045821998\n\t\t -0.327465 -0.242118 -0.504933 0.72041702 0.16627701 0.077806003 0.72041702 0.16627701 0.077806003\n\t\t 0.72291899 0.17187101 0.085450999 -0.28611001 -0.59033298 0.076025002 0.130032 0.86450797 0.48623201\n\t\t 0.002481 0.87478602 0.49706101 -0.12612499 -0.76772499 -0.44360301 -0.12612499 -0.76772499 -0.44360301\n\t\t -0.043434002 -0.76772499 -0.443602 -0.043434002 -0.76772499 -0.443602 -0.254444 -0.534352 -0.62356699\n\t\t 0.30622801 -0.51320899 0.045821998 -0.154406 -0.061625 -0.67643398 -0.155439 -0.047805998 -0.67304802\n\t\t -0.16650701 0.06013 -0.63023698 -0.16305301 0.121245 -0.60869002 -0.169918 -0.068125002 -0.66226\n\t\t -0.27754799 -0.301649 -0.52226698 -0.247017 -0.33270201 -0.53362203 -0.247017 -0.33270201 -0.53362203\n\t\t -0.40544701 -0.138083 -0.46005201 -0.391132 -0.15063301 -0.47698 -0.391132 -0.15063301 -0.47698\n\t\t -0.174446 -0.47546801 -0.59968603 -0.174446 -0.47546801 -0.59968603 -0.173667 -0.49818501 -0.59474599\n\t\t -0.173667 -0.49818501 -0.59474599 0.51239902 0.451193 -0.279443 0.49388 0.47509801 -0.285568\n\t\t 0.49388 0.47509801 -0.285568 -0.26304099 -0.60548598 0.076024003 -0.23601399 -0.61108297 0.076024003\n\t\t -0.157994 -0.106375 -0.68068302 -0.171517 -0.492558 -0.5988 0.38820899 0.69104397 0.81491297\n\t\t 0.58569402 -0.031068999 -0.217553 0.58558297 -0.034644 -0.197809 0.58558297 -0.034644 -0.197809\n\t\t -0.93176299 0.044321001 0.510562 -0.61252099 0.42422 0.74060899 -0.687244 0.402311 0.55956203\n\t\t 0.59390199 -0.059843 -0.188115 0.53536099 -0.26779199 -0.25941199 0.53536099 -0.26779199 -0.25941199\n\t\t -0.43463501 -0.430702 0.28216001 -0.39517701 -0.43872201 0.28216001 -0.68489897 0.098750003 0.113009\n\t\t -0.69642198 0.11917 0.056279 0.31745699 -0.60008198 -0.55784601 0.31745699 -0.60008198 -0.55784601\n\t\t 0.320171 -0.59535801 -0.55318898 0.320171 -0.59535801 -0.55318898 0.49377099 -0.375523 -0.250857\n\t\t 0.49377099 -0.375523 -0.250857 0.52189201 -0.26208499 -0.276595 0.52189201 -0.26208499 -0.276595\n\t\t 0.525406 0.424375 -0.27200001 0.51850998 0.45262 -0.27998 -0.567891 0.034689002 -0.221021\n\t\t -0.56616199 0.026048001 -0.220558 -0.19395 -0.49817199 0.104388 -0.204252 -0.607261 -0.60543197\n\t\t -0.194997 -0.59879702 -0.60778999 0.56901801 -0.57470298 -0.15505099 -0.56148303 0.018673001 -0.219304\n\t\t -0.56148303 0.018673001 -0.219304 0.480652 0.39275199 -0.32137701 0.480652 0.39275199 -0.32137701\n\t\t 0.480652 0.39275199 -0.32137701 0.65348899 -0.30717701 0.243469 0.65305102 -0.308671 0.251185\n\t\t 0.65305102 -0.308671 0.251185 -0.192013 -0.061604001 -0.66274202 -0.190735 -0.106352 -0.66876298\n\t\t -0.345043 0.115459 1.015362024 -0.32464999 0.106243 1.028205991 0.71842098 0.162009 0.075841002\n\t\t -0.49554899 0.33882701 -0.28398699 -0.46702 0.33510101 -0.27911699 0.46506199 0.38778299 -0.316365\n\t\t 0.46506199 0.38778299 -0.316365 0.46506199 0.38778299 -0.316365 0.72286803 0.132607 0.068958998\n\t\t 0.65423501 -0.303882 0.236745 0.65423501 -0.303882 0.236745 0.65423501 -0.303882 0.236745\n\t\t -0.57312 0.023065001 -0.222422 -0.56682497 0.013143 -0.220735 -0.01957 -0.75865299 0.084591001\n\t\t -0.01957 -0.75865299 0.084591001 -0.01957 -0.68027198 0.084591001 -0.01957 -0.68027198 0.084591001\n\t\t -0.170021 -0.068484001 -0.66562903 -0.166546 0.060378 -0.63351703 -0.58447099 -0.403144 0.026024001\n\t\t -0.58447099 -0.403144 0.026024001 -0.57300001 -0.423691 0.00023000001 -0.181226 -0.517542 0.104388\n\t\t -0.186729 -0.16345499 -0.669653 -0.181007 -0.21026801 -0.664267 0.46203399 0.39198399 -0.331267\n\t\t 0.46203399 0.39198399 -0.331267 0.29107401 -0.49013999 0.0089410003 -0.376288 0.15460899 1.0086669922\n\t\t -0.363139 0.13240799 1.0085150003 0.30120501 -0.62111199 -0.54437399 0.301213 -0.62150002 -0.54198802\n\t\t -0.24042501 -0.60837501 -0.599078 -0.228424 -0.61235702 -0.600797 -0.382411 0.178553 1.015794039\n\t\t 0.18408801 -0.59712499 0.070440002 0.166881 -0.57092798 0.070440002 0.67283702 -0.30556801 0.23442\n\t\t 0.67283702 -0.30556801 0.23442 0.67194998 -0.30932501 0.24145199 0.577245 -0.597076 -0.157566\n\t\t -0.19860201 -0.16439199 -0.66523802 -0.191709 -0.21763501 -0.65794897 0.72081298 0.33555499 -0.111613\n\t\t 0.72939998 0.29043201 -0.099207997 0.712385 0.380629 -0.123937 -0.51013398 0.40869099 -0.30385199\n\t\t -0.524077 0.34255299 -0.28885701 -0.524077 0.34255299 -0.28885701 -0.524077 0.34255299 -0.28885701\n\t\t 0.57888901 -0.62023997 -0.15691499 0.164634 -0.540236 0.015823999 0.73677999 0.238548 -0.086033002\n\t\t 0.312345 -0.63018399 -0.5194 0.312345 -0.63018399 -0.5194 0.301247 -0.62317699 -0.52194601\n\t\t 0.301247 -0.62317699 -0.52194601 0.45155799 0.44556499 -0.301074 0.44569999 0.434854 -0.32991499\n\t\t 0.44569999 0.434854 -0.32991499 0.44569999 0.434854 -0.32991499 -0.54015899 0.34437299 -0.244984\n\t\t -0.54015899 0.34437299 -0.244984 -0.531178 0.34101 -0.27717599 -0.61962599 -0.41600999 0.036486\n\t\t -0.52044398 0.424375 -0.27200001 0.30622801 -0.56726301 0.018964 -0.56128401 0.43353799 0.832591\n\t\t 0.57840103 0.62835097 0.54991603 0.57840103 0.62835097 0.54991603 0.56097603 0.61472797 0.53373802\n\t\t -0.65904301 -0.088560998 0.32544699 -0.65904301 -0.088560998 0.32544699 -0.65904301 -0.088560998 0.32544699\n\t\t -0.65205002 -0.188667 0.28374699 0.26814499 -0.60062701 -0.616359 0.26359501 -0.60665703 -0.61660701\n\t\t 0.190881 -0.49013999 0.018964 -0.177516 -0.225301 -0.66166598 -0.173017 -0.23330399 -0.661026\n\t\t -0.173017 -0.23330399 -0.661026 -0.160321 -0.163442 -0.679268 0.34865001 -0.53398299 0.30564499\n\t\t 0.35571301 -0.56873 0.30564499 -0.34431899 -0.49657199 0.205772 -0.36539501 -0.46474299 0.205772\n\t\t 0.395013 0.453639 1.047621965 0.51205701 0.446482 0.92435801;\n\tsetAttr \".vt[11786:11951]\" -0.67219597 -0.18963 0.28151801 -0.67764199 -0.089060999 0.32370701\n\t\t -0.67764199 -0.089060999 0.32370701 0.29024401 0.45659199 1.12509406 0.29024401 0.45659199 1.12509406\n\t\t 0.35571301 -0.49923599 0.30564499 0.26839399 -0.628102 -0.42600501 0.226523 -0.64502603 -0.45985901\n\t\t 0.36323199 -0.53398299 0.32670701 0.36916199 -0.504807 0.32670701 0.87588298 -0.17592099 0.61119598\n\t\t 0.87588298 -0.17592099 0.61119598 0.87093002 -0.17598601 0.62483197 0.87093002 -0.17598601 0.62483197\n\t\t -0.23820899 -0.52776599 -0.62696302 0.74250299 0.237905 -0.078382999 0.50391001 -0.59829301 0.24992\n\t\t 0.52348602 -0.56873 0.24992 0.35219201 -0.43120301 -0.36305401 0.39122999 -0.43360299 -0.35486901\n\t\t 0.39122999 -0.43360299 -0.35486901 0.39122999 -0.43360299 -0.35486901 -0.33671501 -0.53398299 0.210595\n\t\t -0.34431899 -0.49657199 0.210595 0.398056 -0.43792 -0.35225201 0.398056 -0.43792 -0.35225201\n\t\t -0.631037 -0.407884 0.111687 -0.62619501 -0.42638999 0.098223001 -0.39722499 -0.44366601 0.205772\n\t\t -0.64148098 -0.40248001 0.085004002 -0.32317999 -0.57296801 -0.51106399 -0.32059801 -0.59262699 -0.50975198\n\t\t 0.55156201 -0.76133901 0.56264198 0.426263 -0.124694 -0.44042501 0.410411 -0.138083 -0.46005201\n\t\t 0.48133001 -0.072293997 -0.36463699 0.46941099 -0.085816003 -0.38417 -0.41937599 -0.432684 -0.32197201\n\t\t -0.390679 -0.45318699 -0.34735399 -0.50434601 0.43684101 -0.30989599 0.39609599 -0.15063301 -0.47698\n\t\t 0.39609599 -0.15063301 -0.47698 0.46715 0.450535 -0.306086 0.46129099 0.439823 -0.33492801\n\t\t 0.46129099 0.439823 -0.33492801 0.46129099 0.439823 -0.33492801 0.43959901 -0.63726401 0.25723299\n\t\t 0.400141 -0.62924403 0.25723299 0.77164298 0.36245599 0.161143 0.77164298 0.36245599 0.161143\n\t\t 0.765329 0.368554 0.19802301 0.765329 0.368554 0.19802301 -0.148035 -0.21763501 -0.67384398\n\t\t 0.389999 -0.159567 -0.48032001 0.19091 -0.237497 -0.65443802 0.19091 -0.237497 -0.65443802\n\t\t 0.18597101 -0.21026801 -0.664267 0.18248001 -0.225301 -0.66166598 0.334353 -0.42843899 -0.380647\n\t\t 0.37156001 -0.80821902 -0.110916 0.37156001 -0.80821902 -0.110916 0.373579 -0.79791898 -0.113644\n\t\t -0.22064 -0.52722502 -0.63005 -0.40290901 -0.45318699 -0.347352 -0.369104 -0.47551501 -0.374993\n\t\t 0.54175001 0.46710801 -0.21394099 0.61568803 0.447272 -0.17840999 0.19667301 -0.21763501 -0.65794897\n\t\t 0.31391999 -0.59241998 -0.55302 0.31391999 -0.59241998 -0.55302 0.31182501 -0.59694803 -0.55786097\n\t\t 0.31182501 -0.59694803 -0.55786097 0.177981 -0.23330399 -0.661026 0.177981 -0.23330399 -0.661026\n\t\t 0.31464601 -0.59090298 -0.54476899 -0.26637599 0.594706 1.059859037 -0.25933 0.58931702 1.067963958\n\t\t -0.30737901 -0.53903699 -0.527551 -0.31180599 -0.57348597 -0.52370501 0.223078 -0.665057 -0.462657\n\t\t 0.43678501 0.42184401 -0.32327199 0.43678501 0.42184401 -0.32327199 0.43678501 0.42184401 -0.32327199\n\t\t 0.44264299 0.43255499 -0.294431 -0.462722 0.46696699 -0.312489 0.203566 -0.16439199 -0.66523802\n\t\t 0.66946 -0.25768799 0.313333 0.67199099 -0.31102601 0.26931301 0.67199099 -0.31102601 0.26931301\n\t\t 0.547777 -0.252166 0.53519702 0.547777 -0.252166 0.53519702 0.547777 -0.252166 0.53519702\n\t\t -0.93830198 0.037618 0.61620498 -0.93830198 0.037618 0.61620498 -0.93830198 0.037618 0.61620498\n\t\t -0.599226 -0.012524 -0.171996 -0.60379398 0.016837999 -0.162874 -0.18555599 -0.052905999 0.500018\n\t\t -0.30952701 -0.59083998 -0.52254701 -0.30952701 -0.59083998 -0.52254701 -0.16562399 -0.081579 0.500018\n\t\t 0.76727903 0.39180899 0.156074 -0.28975201 -0.507451 -0.52270198 -0.305592 -0.538113 -0.51722097\n\t\t 0.26800501 -0.47498599 0.0089410003 -0.161917 -0.50954401 0.051406 -0.92703599 0.039751001 0.61343098\n\t\t -0.588938 -0.059843998 -0.188115 -0.530397 -0.26779199 -0.25941199 -0.530397 -0.26779199 -0.25941199\n\t\t -0.19205 -0.059751 0.51019901 -0.93714398 0.033101998 0.61693901 -0.93593699 0.027970999 0.616503\n\t\t 0.37534499 -0.48736501 -0.36952499 0.34588501 -0.50588298 -0.39245701 0.37540299 -0.182019 -0.487223\n\t\t 0.53883499 -0.65546298 -0.134618 0.37528899 -0.59829301 0.30564499 -0.23651899 -0.53561997 -0.62678301\n\t\t 0.022414999 0.216902 -0.589522 0.022414999 0.216902 -0.589522 0.022414999 0.216902 -0.589522\n\t\t 0.022414999 0.216902 -0.589522 0.0074649998 0.216833 -0.59019798 -0.50451797 0.473286 -0.277224\n\t\t -0.494396 0.48213899 -0.27960101 -0.494396 0.48213899 -0.27960101 0.002481 0.216879 -0.59238702\n\t\t 0.002481 0.216879 -0.59238702 0.002481 0.216879 -0.59238702 0.002481 0.216879 -0.59238702\n\t\t 0.002481 0.216879 -0.59238702 0.084463999 -0.60464102 -0.707156 0.064064004 -0.59779501 -0.710338\n\t\t 0.017911 -0.82948703 -0.77666497 0.096015997 -0.61130798 -0.70478302 0.35541099 0.164902 1.011731029\n\t\t 0.34663799 0.150089 1.011630058 -0.59009498 0.019556001 -0.179205 -0.59511697 0.05119 -0.16842\n\t\t -0.59511697 0.05119 -0.16842 -0.59511697 0.05119 -0.16842 -0.62701899 -0.436573 0.061292\n\t\t 0.207623 -0.107323 -0.66449702 0.074938998 -0.70223403 -0.80418599 0.074938998 -0.70223403 -0.80418599\n\t\t 0.123041 0.218352 -0.57824099 0.075195 -0.82948703 -0.77177697 0.075195 -0.82948703 -0.77177697\n\t\t -0.185918 -0.49013999 0.045821998 -0.170764 -0.51320899 0.045821998 0.19169299 -0.16345499 -0.669653\n\t\t -0.18942299 -0.047800999 -0.66067803 0.39458701 0.71797699 0.30288601 0.42399701 0.68339801 0.249658\n\t\t 0.100933 -0.61577302 -0.70042801 0.100933 -0.61577302 -0.70042801 0.103407 -0.61115599 -0.70011503\n\t\t 0.103407 -0.61115599 -0.70011503 0.427109 0.68592203 0.250328 0.39749801 0.72070599 0.30389601\n\t\t 0.002482 -0.69080597 -0.81278199 0.15219299 -0.69896799 0.20016301 0.15219299 -0.69896799 0.20016301\n\t\t 0.145202 -0.69728798 0.19498999 0.145202 -0.69728798 0.19498999;\n\tsetAttr \".vt[11952:12117]\" 0.145202 -0.69728798 0.19498999 -0.60724199 0.05119 -0.16842\n\t\t -0.60724199 0.05119 -0.16842 0.51745802 -0.253575 -0.30249199 0.51745802 -0.253575 -0.30249199\n\t\t 0.58166701 -0.029588999 -0.22622301 0.58166701 -0.029588999 -0.22622301 -0.291538 -0.50837499 -0.53303099\n\t\t 0.190881 -0.59033298 0.088372998 0.17572799 -0.56726301 0.088372998 -0.17011601 -0.018123999 -0.65918398\n\t\t -0.17011601 -0.018123999 -0.65918398 -0.186708 -0.023824001 -0.65494198 -0.186708 -0.023824001 -0.65494198\n\t\t -0.468703 0.48688599 -0.28103501 0.117173 0.16051 1.15469205 0.117743 0.166152 1.15684199\n\t\t -0.61483002 -0.46517 0.057004001 0.19569901 -0.106352 -0.66876298 0.323836 -0.66749799 -0.38462901\n\t\t 0.220825 -0.61197001 -0.60300398 0.23338801 -0.61235702 -0.600797 -0.24731401 0.82692999 0.590186\n\t\t 0.31465799 -0.59089899 -0.54193801 -0.30126399 -0.51320899 0.045821998 -0.30686101 -0.540236 0.045821998\n\t\t -0.90513098 -0.103609 0.60542202 0.65292501 -0.134303 0.665721 -0.33937401 -0.57344103 0.28216001\n\t\t -0.33135399 -0.53398299 0.28216001 -0.22370701 0.40438899 1.087767005 -0.27481601 0.445793 1.12165105\n\t\t -0.27481601 0.445793 1.12165105 -0.266193 -0.48519799 -0.53948599 -0.43679899 0.75433898 0.47874701\n\t\t -0.23601399 -0.46938899 0.018964 -0.26304099 -0.47498599 0.018964 -0.385214 0.44327301 1.041514993\n\t\t -0.500516 0.436358 0.91968399 0.17572799 -0.51320899 0.088372998 0.190881 -0.49013999 0.088372998\n\t\t -0.42447999 -0.46118301 -0.34417501 -0.13167401 0.17745 1.15669799 0.086892001 -0.59855998 -0.70674098\n\t\t 0.065286003 -0.59097099 -0.71018302 -0.260894 0.45573801 1.12756705 -0.260894 0.45573801 1.12756705\n\t\t -0.20319501 0.416572 1.095463991 -0.49511299 0.45306 -0.312704 0.098402999 -0.60596102 -0.70432502\n\t\t 0.446026 -0.83502698 -0.068232 0.446026 -0.83502698 -0.068232 0.47701001 -0.44366601 0.210595\n\t\t -0.35074899 -0.49923599 0.289473 -0.370325 -0.46967199 0.289473 -0.179125 -0.483347 0.051406\n\t\t -0.304842 -0.51240897 -0.42076901 -0.33966899 -0.494032 -0.397926 -0.36160401 -0.60701299 0.28216001\n\t\t -0.30126399 -0.51320899 0.018964 -0.42099699 0.45394599 -0.276187 -0.41169199 0.41944599 -0.27088901\n\t\t -0.120126 0.17534 1.15873396 -0.12579399 0.177479 1.15818298 -0.213112 -0.533795 -0.135113\n\t\t -0.379008 -0.57767898 -0.28856701 -0.56186801 0.42957601 0.83333403 0.190881 -0.49013999 0.076024003\n\t\t 0.404852 -0.45009601 0.214746 0.393641 0.335062 -0.38561499 0.45100999 0.38681799 -0.289417\n\t\t 0.001435 -0.78792 0.090157002 0.001435 -0.78792 0.090157002 -0.046023 -0.36922899 -0.62539399\n\t\t -0.032802001 -0.50873899 -0.70017701 0.129218 0.86088997 0.483318 0.002481 0.87111801 0.49399701\n\t\t 0.12981901 0.86084002 0.489871 0.002481 0.87092501 0.50045502 0.026825 -0.90097398 -0.54540402\n\t\t 0.002482 -0.90097302 -0.54540402 -0.12507001 0.86450797 0.48623201 0.001435 -0.64493501 0.090157002\n\t\t 0.001435 -0.64493501 0.090157002 -0.012948 -0.82948703 -0.77666497 0.002482 -0.82948703 -0.77666497\n\t\t -0.124857 0.86084002 0.489871 0.002481 0.218235 -0.59485602 0.123692 0.219767 -0.583211\n\t\t -0.012948 -0.69080597 -0.81278199 0.048815001 -0.42581099 -0.62495899 -0.030115001 -0.57348001 -0.70303702\n\t\t 0.002482 -0.57268101 -0.70408601 -0.029662 -0.58682001 -0.713247 0.002482 -0.58627599 -0.714257\n\t\t -0.029514 -0.59386498 -0.71325701 0.002482 -0.59334099 -0.71425402 -0.021861 -0.90097398 -0.54540402\n\t\t 0.034476999 -0.59386498 -0.71325701 0.034626 -0.58682001 -0.713247 0.035078 -0.57348001 -0.70303702\n\t\t 0.36707801 -0.74068499 -0.113986 -0.482577 -0.41996399 -0.29256901 0.37528899 -0.46967199 0.24992\n\t\t 0.404852 -0.45009601 0.24992 -0.216014 -0.55574697 -0.47474 -0.216014 -0.55574697 -0.47474\n\t\t 0.36550501 -0.75056702 -0.102732 -0.68774498 0.39832601 0.56023598 -0.732081 0.37947699 0.41412199\n\t\t -0.44301799 0.45068201 -0.310875 0.23792601 -0.33454701 -0.54563999 0.28251201 -0.301649 -0.52226698\n\t\t 0.66233897 -0.323396 0.223078 0.66233897 -0.323396 0.223078 -0.13903099 0.155148 1.14579296\n\t\t -0.43178201 -0.43268099 -0.32196501 -0.47862899 -0.39567199 -0.27614701 0.185275 -0.237497 -0.63895601\n\t\t -0.39517599 -0.62924403 0.28216001 0.33242899 -0.242118 -0.504933 0.56950098 0.56347299 -0.044468001\n\t\t 0.56950098 0.56347299 -0.044468001 0.103096 -0.61996502 -0.69299299 0.103096 -0.61996502 -0.69299299\n\t\t 0.32757699 0.78243798 0.39240199 0.183061 0.851475 0.47217 0.73916799 0.17231999 0.084894001\n\t\t 0.240978 -0.45978299 0.070440002 0.29068801 -0.63717097 -0.52252001 -0.256868 0.59252399 1.06694901\n\t\t -0.25291601 0.584005 1.074512959 0.72713298 0.169539 0.063355997 0.72713298 0.169539 0.063355997\n\t\t 0.44077799 -0.82248598 -0.061140001 0.440281 -0.825032 -0.060469002 0.440281 -0.825032 -0.060469002\n\t\t 0.479058 -0.43872201 0.28216001 0.300383 -0.64603698 -0.520051 -0.370325 -0.46967199 0.24992\n\t\t -0.191094 -0.66856903 -0.53607601 -0.196521 -0.45714 -0.54332298 -0.15929 -0.469493 -0.54865497\n\t\t 0.44077799 -0.77438802 -0.061140001 0.103096 -0.61996502 -0.68708998 0.73057002 0.178745 0.073356003\n\t\t 0.705392 0.417945 -0.131529 0.705392 0.417945 -0.131529 -0.112576 0.162809 1.14946997\n\t\t 0.56955898 0.562675 -0.055987999 0.56955898 0.562675 -0.055987999 0.56895298 0.55905002 -0.053303\n\t\t 0.56895298 0.55905002 -0.053303 0.43959901 -0.430702 0.28216001 -0.752114 0.37015 0.33498999\n\t\t -0.161917 -0.57092798 0.070440002 0.64615399 0.53683299 -0.0048659998 0.314491 -0.59083998 -0.52254701\n\t\t 0.314491 -0.59083998 -0.52254701 0.57027602 0.56702101 -0.04696 0.57027602 0.56702101 -0.04696\n\t\t 0.068857998 -0.579584 -0.69954699 0.103354 -0.813241 -0.69119298 0.29107401 -0.59033298 0.076025002\n\t\t 0.26800501 -0.60548598 0.076024003 -0.46730801 0.479381 -0.28650001;\n\tsetAttr \".vt[12118:12283]\" -0.48891601 0.47509801 -0.285568 -0.48891601 0.47509801 -0.285568\n\t\t 0.203271 -0.45806301 -0.55365098 -0.26924801 -0.475537 -0.41811901 -0.650473 -0.27472001 0.32991299\n\t\t 0.34463301 -0.494032 -0.397926 0.30980599 -0.51240897 -0.42076901 0.37406799 -0.47551501 -0.374993\n\t\t 0.16325 -0.33540601 -0.61453199 -0.113086 0.167851 1.15139103 -0.139036 0.16268 1.14278805\n\t\t -0.15556 -0.540236 0.070440002 -0.142747 -0.48033601 -0.550547 -0.27044299 0.60146397 1.052274942\n\t\t -0.263789 0.59814101 1.058876991 0.181511 -0.474884 -0.55931503 0.17863099 -0.49818501 -0.55764103\n\t\t 0.17863099 -0.49818501 -0.55764103 0.71775401 0.383522 -0.116628 -0.208987 -0.60548598 0.045821998\n\t\t 0.17209999 -0.48214599 -0.55688798 0.17863099 -0.49818501 -0.59474599 0.17863099 -0.49818501 -0.59474599\n\t\t 0.17941 -0.47546801 -0.59968603 0.17941 -0.47546801 -0.59968603 0.22097699 -0.55574697 -0.47474\n\t\t 0.22097699 -0.55574697 -0.47474 0.43959901 -0.63190299 0.210595 0.240978 -0.61108297 0.076024003\n\t\t -0.39517701 -0.62924403 0.25723299 0.63600099 -0.407884 0.111687 0.240978 -0.46938899 0.045821998\n\t\t 0.21395101 -0.47498599 0.045821998 0.64609802 -0.293246 0.36152601 0.64027798 -0.236862 0.419994\n\t\t -0.632487 -0.39408901 0.121771 0.43959901 -0.63190299 0.205771 -0.67023498 -0.067668997 0.36164501\n\t\t 0.45350301 -0.358776 -0.281243 0.488159 -0.36091399 -0.27701399 0.488159 -0.36091399 -0.27701399\n\t\t 0.227523 -0.81936502 0.25590399 0.227523 -0.81936502 0.25590399 0.153634 -0.31474799 -0.61965299\n\t\t 0.144116 -0.387321 -0.58024198 -0.50163198 -0.37552401 -0.25085601 -0.50163198 -0.37552401 -0.25085601\n\t\t -0.136683 -0.65516597 -0.54668301 0.269384 -0.67045403 -0.52322799 0.30098501 0.17540801 1.088819981\n\t\t 0.31080201 0.191984 1.088932991 -0.51692802 -0.26208499 -0.276595 -0.51692802 -0.26208499 -0.276595\n\t\t -0.31001899 -0.57256299 -0.513376 -0.30774099 -0.58991599 -0.512218 0.150151 -0.47104001 -0.56906903\n\t\t -0.37522 -0.43459299 -0.36993599 -0.370325 -0.59829301 0.24992 0.31773299 0.29527 -0.45774499\n\t\t 0.163268 0.222651 -0.56829298 -0.115575 0.17251401 1.15266204 0.12578399 -0.45674899 -0.57487899\n\t\t 0.20960701 -0.55574697 -0.474738 0.75502098 0.30638599 0.037035 -0.26343 -0.628102 -0.42600501\n\t\t -0.221559 -0.64502603 -0.45985901 -0.54278499 0.34767199 -0.221753 0.27167001 -0.61433297 0.051406\n\t\t 0.21373001 -0.81604898 0.245698 0.21373001 -0.81604898 0.245698 0.43816301 -0.44335401 -0.314473\n\t\t -0.61307597 0.42025 0.74132699 0.50659603 -0.37552401 -0.25085601 0.50659603 -0.37552401 -0.25085601\n\t\t -0.41558 0.41213101 -0.275756 0.296413 0.15752999 1.083498001 -0.147563 -0.466373 -0.60881102\n\t\t 0.47434601 -0.61786997 0.214746 0.67141199 -0.31113601 0.249562 0.67152101 -0.31151599 0.25871399\n\t\t -0.37957799 0.59145099 0.974235 -0.63008702 0.051500998 -0.142177 -0.610654 0.051500998 -0.145583\n\t\t 0.240978 -0.62068999 0.070440002 0.21028601 -0.61433297 0.070440002 -0.296496 -0.61473799 -0.39927\n\t\t 0.159466 -0.41497999 -0.61223203 0.409201 -0.46474299 -0.34137699 -0.29290301 -0.483347 0.051406\n\t\t -0.31011099 -0.50954401 0.051406 0.74618399 0.36560601 0.033489998 -0.42550501 0.45066699 -0.274885\n\t\t -0.52915299 0.345222 -0.22453301 -0.52915299 0.345222 -0.22453301 0.184089 -0.59712601 0.051406\n\t\t -0.15828601 -0.33540601 -0.61453199 -0.232962 -0.33454701 -0.54563999 0.166881 -0.57092899 0.051406\n\t\t 0.452584 -0.82914102 -0.048248 0.17648099 -0.492558 -0.5988 0.297867 -0.59712499 0.051406\n\t\t -0.147697 -0.69061202 -0.071073003 0.454254 -0.82839102 -0.050129 0.454254 -0.82839102 -0.050129\n\t\t 0.126669 -0.63981801 -0.53992498 0.16293199 -0.414875 -0.57187998 -0.46938199 -0.61786902 0.24992\n\t\t -0.256574 -0.65780002 -0.51499599 0.59003699 -0.012077 -0.18999 0.59003699 -0.012077 -0.18999\n\t\t 0.59505898 0.019556999 -0.179205 0.32854 0.213064 1.059932947 0.72976601 0.188344 0.131332\n\t\t -0.66295701 -0.179885 0.26280501 -0.768758 0.43819499 0.15637 -0.768758 0.43819499 0.15637\n\t\t 0.218284 -0.485448 0.104388 0.209216 -0.607261 -0.60543197 -0.234908 -0.329005 -0.53159201\n\t\t -0.154502 -0.41497999 -0.61223203 -0.160289 -0.351307 -0.62496102 0.26800501 -0.474987 0.088372998\n\t\t -0.136546 0.15801699 1.14151704 0.34153 0.213081 1.048715949 0.148072 -0.76340902 -0.28870699\n\t\t -0.51482701 -0.375525 -0.25085601 -0.51482701 -0.375525 -0.25085601 -0.498541 0.465947 -0.28326201\n\t\t -0.26670599 -0.46613899 0.051406 0.16103999 0.219496 -0.572806 0.16103999 0.219496 -0.572806\n\t\t 0.16103999 0.219496 -0.572806 0.177508 0.062939003 -0.63059002 0.18091901 -0.065927997 -0.66253901\n\t\t -0.54113102 -0.262086 -0.276595 -0.30969399 -0.59089899 -0.54193801 -0.65896702 -0.170187 0.23895\n\t\t -0.66473299 -0.046399999 0.289085 0.32143199 -0.540236 0.070440002 0.31507501 -0.57092798 0.070440002\n\t\t 0.388854 -0.82128501 -0.110538 0.388854 -0.82128501 -0.110538 0.38279799 -0.82470298 -0.102354\n\t\t -0.66643697 0.01733 0.31376201 -0.509045 0.45641899 -0.27274001 -0.51526701 0.43016699 -0.265486\n\t\t 0.57427901 -0.036508001 -0.197331 0.57427901 -0.036508001 -0.197331 -0.41061401 0.415149 -0.27744901\n\t\t -0.57670301 -0.029589999 -0.22622301 -0.57670301 -0.029589999 -0.22622301 -0.58073002 -0.031068999 -0.217553\n\t\t 0.533822 -0.262086 -0.276595 0.533822 -0.262086 -0.276595 -0.534823 0.348692 -0.245829\n\t\t -0.534823 0.348692 -0.245829 0.59338099 -0.049745999 -0.203115 -0.23728 -0.45926401 -0.54680502\n\t\t 0.16783001 0.22002199 -0.57279199 0.16783001 0.22002199 -0.57279199 0.16783001 0.22002199 -0.57279199\n\t\t 0.61220598 0.05119 -0.16842 0.61220598 0.05119 -0.16842 0.19996101 -0.59879702 -0.60778999\n\t\t 0.60008103 0.05119 -0.16842 0.60008103 0.05119 -0.16842;\n\tsetAttr \".vt[12284:12449]\" 0.60008103 0.05119 -0.16842 -0.41620201 0.41616699 -0.26958701\n\t\t 0.685853 0.340538 -0.090608999 0.69281501 0.30227101 -0.079786003 0.16425399 -0.469493 -0.54865497\n\t\t 0.14771099 -0.48033601 -0.550547 0.390609 0.340168 -0.38201401 -0.67411202 0.51999497 0.51380199\n\t\t -0.46798801 -0.41375899 -0.29853401 0.188531 -0.05277 -0.66025102 0.174051 0.123631 -0.60916698\n\t\t 0.30622801 -0.56726301 0.076025002 0.65356302 0.19373401 -0.071015999 0.638569 0.172251 -0.071965002\n\t\t 0.638569 0.172251 -0.071965002 -0.61965799 -0.44725001 0.083067998 -0.61965799 -0.44725001 0.083067998\n\t\t -0.121705 -0.63981801 -0.53992498 0.43879101 -0.82582599 -0.058455002 0.195306 -0.56257403 -0.61183399\n\t\t 0.202084 -0.55176401 -0.611628 0.34928301 -0.57139403 0.205772 0.34167901 -0.53398299 0.205772\n\t\t -0.503205 0.46859899 -0.28426301 -0.111206 -0.62327302 -0.54321998 -0.28999799 -0.59421998 0.015823999\n\t\t 0.621602 0.43031299 -0.134395 0.44789401 0.39188701 -0.28653699 -0.162172 -0.105944 -0.67529702\n\t\t -0.16452301 -0.162999 -0.67395103 -0.170764 -0.56726301 0.076025002 -0.164664 -0.208391 -0.666933\n\t\t -0.164845 -0.22174799 -0.66355801 0.169487 -0.162999 -0.67395103 0.167136 -0.105944 -0.67529702\n\t\t 0.21373001 -0.83844501 0.245698 0.21373001 -0.83844501 0.245698 0.185065 -0.163017 -0.66827703\n\t\t 0.168376 -0.75532299 -0.59453303 0.21028601 -0.46613899 0.070440002 0.54165 0.0081179999 -0.24488699\n\t\t 0.16962799 -0.208391 -0.666933 -0.265138 -0.61054897 0.012081 -0.14453299 -0.48126 -0.56087601\n\t\t -0.51354802 0.45262 -0.27998 -0.16603801 -0.227507 -0.66161501 -0.16603801 -0.227507 -0.66161501\n\t\t 0.72931898 0.194527 0.025496 -0.167136 -0.48214599 -0.55688798 -0.15253299 -0.49171799 -0.55855697\n\t\t -0.64738899 0.052336 -0.092681997 -0.128437 -0.63391399 -0.679811 -0.12868001 -0.57722503 -0.68178397\n\t\t -0.674887 0.51616001 0.514934 -0.59382898 0.34784901 -0.164294 0.71488702 0.123215 0.075021997\n\t\t -0.56547701 0.33093601 -0.17784099 0.547867 0.0098099997 -0.23202799 0.65191799 -0.34963 0.30305901\n\t\t -0.098389998 -0.813241 -0.69119298 -0.318165 -0.53394198 -0.51542097 -0.20689 -0.469924 0.012081\n\t\t -0.57716399 0.430179 -0.188528 -0.57716399 0.430179 -0.188528 0.65107399 0.050567001 -0.012057\n\t\t 0.65107399 0.050567001 -0.012057 -0.51484901 -0.49503499 -0.142465 -0.497462 -0.492908 -0.129467\n\t\t -0.63916498 0.051500998 -0.134644 -0.63916498 0.051500998 -0.134644 0.69588703 0.108381 0.109414\n\t\t 0.75718999 0.30743399 0.046889 0.56497198 0.0098059997 -0.195076 0.36656901 -0.607014 0.25723299\n\t\t 0.344338 -0.57344198 0.25723299 -0.10126 -0.61224502 -0.69235402 -0.52495199 -0.49657199 0.205772\n\t\t -0.18203001 -0.48625299 0.012081 -0.31774801 -0.59381503 -0.545205 0.38056999 -0.76806098 -0.108471\n\t\t -0.098525003 -0.60423601 -0.69310099 -0.300219 -0.49920601 -0.52162999 -0.43463501 -0.43606299 0.205771\n\t\t -0.47204599 -0.44366601 0.205772 -0.51153898 0.34638599 -0.24445499 -0.48825499 0.34408 -0.243081\n\t\t -0.47204599 -0.44366601 0.210595 0.159648 -0.31250399 -0.61731499 0.15013801 -0.38508299 -0.57801199\n\t\t -0.165702 -0.51111197 0.012081 0.390872 -0.76027697 -0.113266 0.390872 -0.81112802 -0.113266\n\t\t -0.50387502 -0.46474299 0.205772 -0.92042601 0.116565 0.636702 0.387375 0.178553 1.015794039\n\t\t 0.38557601 0.200735 1.028853059 0.240978 -0.46389201 0.015823999 0.211854 -0.469924 0.015823999\n\t\t 0.68016601 0.101502 -0.003797 0.15056799 -0.64522898 -0.54602897 0.640176 0.52898699 -0.010724\n\t\t 0.703758 0.48574999 0.020127 0.703758 0.48574999 0.020127 -0.75098598 0.42726001 0.341371\n\t\t -0.15967 -0.540236 0.015823999 -0.53650302 0.34993199 -0.23694099 -0.53650302 0.34993199 -0.23694099\n\t\t -0.587044 -0.273936 -0.198201 -0.58988899 -0.25902799 -0.19727001 -0.47775999 0.64259303 0.75764698\n\t\t -0.50650901 -0.38277799 -0.26010001 -0.15967 -0.54023701 0.012081 0.68525898 -0.069231004 0.36063999\n\t\t 0.68553299 -0.071056999 0.367567 0.68553299 -0.071056999 0.367567 0.650895 0.054892 -0.01935\n\t\t -0.62030399 0.05119 -0.150078 -0.62030399 0.05119 -0.150078 -0.56931502 -0.036509 -0.197331\n\t\t -0.56931502 -0.036509 -0.197331 -0.572115 -0.024256 -0.192044 -0.64427 -0.42258099 0.16891401\n\t\t 0.51262999 -0.60701299 0.25723299 0.479058 -0.62924403 0.25723299 -0.165702 -0.56936097 0.012081\n\t\t -0.54672599 -0.018689999 -0.243974 0.386251 -0.149794 -0.47490701 -0.31902799 -0.59384 -0.54017401\n\t\t 0.17488199 -0.068125002 -0.66226 -0.52847499 -0.54272997 -0.13981999 -0.52847499 -0.54272997 -0.13981999\n\t\t -0.52689397 -0.51598603 -0.14655501 -0.52689397 -0.51598603 -0.14655501 -0.66816199 0.103332 -0.095618002\n\t\t 0.66757202 -0.27458301 0.328601 0.67140102 0.01733 0.31376201 -0.31316099 -0.61389297 -0.36364499\n\t\t -0.62730497 -0.443407 0.101328 -0.26440701 -0.484274 -0.52915698 0.145202 -0.80367398 0.19498999\n\t\t 0.145202 -0.80367398 0.19498999 0.137137 -0.63157201 -0.53885198 0.127869 -0.61696702 -0.54176098\n\t\t 0.73400003 0.3655 0.033599999 -0.630225 0.034683999 -0.103128 0.26490599 -0.57724899 -0.59848702\n\t\t 0.264074 -0.58358502 -0.59806401 0.721551 0.42471501 0.028308 -0.67383301 0.37073499 -0.13875601\n\t\t -0.34368601 -0.53398299 0.214746 0.684129 -0.090360001 0.3488 -0.65604597 0.023596 -0.099532999\n\t\t -0.65604597 0.023596 -0.099532999 -0.551323 -0.012052 -0.23436201 0.17498501 -0.068484001 -0.66562903\n\t\t 0.31388801 -0.61015898 -0.55909801 0.263289 -0.564668 -0.59989101 -0.158879 -0.334216 -0.628654\n\t\t -0.158879 -0.334216 -0.628654 0.43959901 -0.44303399 0.214746 0.372495 -0.75224698 -0.097558998\n\t\t 0.190881 -0.49013999 0.045821998 0.16353001 -0.245827 -0.65104598 0.36550501 -0.81149298 -0.102732\n\t\t 0.44888401 -0.105277 -0.41228199 -0.51620698 -0.66512698 -0.124163;\n\tsetAttr \".vt[12450:12615]\" 0.162481 -0.65474898 -0.53239697 0.257505 -0.55347103 -0.60189199\n\t\t -0.39309201 -0.43792 -0.35225201 -0.39309201 -0.43792 -0.35225201 -0.58507299 -0.012077 -0.18999\n\t\t -0.58507299 -0.012077 -0.18999 0.21207701 -0.54389399 -0.61060399 0.31014499 0.106218 1.04501605\n\t\t 0.261538 -0.65780002 -0.51499599 -0.56760502 -0.64068103 -0.152356 -0.57392502 -0.62023997 -0.15691499\n\t\t -0.200261 -0.65931898 -0.45485899 -0.49861801 0.57934898 0.86254197 -0.38623601 0.59280002 0.98242199\n\t\t -0.48822501 0.34512499 -0.233906 -0.51236498 0.34752801 -0.235424 0.37528899 -0.59829301 0.289473\n\t\t -0.602202 0.019556001 -0.179204 0.240978 -0.46389201 0.012081 0.27010199 -0.469924 0.012081\n\t\t -0.58061898 -0.034644999 -0.197809 -0.58061898 -0.034644999 -0.197809 -0.527955 0.00056299998 -0.227863\n\t\t 0.179646 -0.20841201 -0.66328299 0.272926 -0.56437403 -0.61877501 0.27483299 -0.57921702 -0.617118\n\t\t -0.50284499 -0.497031 -0.116011 -0.48392099 -0.497738 -0.100597 -0.18203101 -0.59421998 0.012081\n\t\t -0.237452 -0.56430799 -0.47176701 -0.87478799 0.19878 0.61981302 -0.572281 -0.597076 -0.157566\n\t\t 0.24824999 -0.545008 -0.60425001 -0.673967 0.018352 0.043777999 0.11617 -0.62327302 -0.54321998\n\t\t -0.38128701 -0.149794 -0.47490701 -0.39988801 -0.45009601 0.20162 0.373579 -0.76638103 -0.113644\n\t\t 0.700019 0.123332 0.076375 0.169809 -0.22174799 -0.66355801 0.173512 -0.140788 -0.67147797\n\t\t -0.51441699 -0.65775198 -0.124651 -0.225577 -0.55574799 -0.47474301 -0.225577 -0.55574799 -0.47474301\n\t\t -0.51852202 -0.56873 0.214746 -0.84658802 -0.18282001 0.61765498 0.74500602 0.30733299 0.047017999\n\t\t 0.34097901 0.22679 1.080906987 -0.545632 -0.028656 -0.231738 -0.34368601 -0.53398299 0.20162\n\t\t 0.43996999 -0.83844501 -0.060047999 0.26609999 -0.55116302 -0.62113601 -0.87599301 0.108678 0.42075801\n\t\t -0.208766 -0.71785498 0.245698 -0.208766 -0.71785498 0.245698 -0.208766 -0.69546002 0.245698\n\t\t -0.208766 -0.69546002 0.245698 -0.39988801 -0.45009601 0.24992 0.42442399 0.401476 -0.29631701\n\t\t 0.23054101 -0.56929201 -0.46849301 0.23054101 -0.56929201 -0.46849301 -0.851538 -0.18274499 0.60415\n\t\t -0.33671501 -0.53398299 0.205772 -0.23601399 -0.46938899 0.076024003 -0.614577 -0.292602 -0.030815\n\t\t -0.164123 -0.045467 -0.66564 -0.164123 -0.045467 -0.66564 0.752271 0.24087 0.049318001\n\t\t -0.36539501 -0.60322303 0.205772 -0.39722499 -0.6243 0.205772 0.53054798 -0.53398299 0.289473\n\t\t -0.419462 0.401476 -0.29631701 -0.426514 0.42989701 -0.303745 0.55410802 0.349619 -0.214559\n\t\t 0.55410802 0.349619 -0.214559 0.55410802 0.349619 -0.214559 0.078564003 -0.38826799 0.28620201\n\t\t 0.211854 -0.61054897 0.012081 0.91301 -0.107833 0.60105097 0.94466197 0.027455 0.61244297\n\t\t -0.34431899 -0.57139403 0.205772 0.334564 0.13878 1.016198039 -0.36952701 -0.203582 -0.45892999\n\t\t 0.145129 0.17932899 1.155334 0.155711 -0.49079499 -0.54822803 -0.57985997 -0.61822802 -0.145532\n\t\t -0.57824999 -0.59510398 -0.14618701 -0.66425002 0.021741999 -0.051329002 0.177093 -0.221753 -0.66090602\n\t\t -0.77664399 0.39516801 0.164341 -0.197854 -0.80053002 0.237624 -0.197854 -0.80053002 0.237624\n\t\t -0.35074899 -0.56873 0.20162 -0.93969798 0.027454 0.61244297 -0.93969798 0.027454 0.61244297\n\t\t -0.90891701 -0.104132 0.60136497 -0.269869 -0.57921702 -0.617118 0.42956901 -0.156747 -0.44429201\n\t\t 0.84411502 -0.070808001 0.39324701 0.404852 -0.61786997 0.289473 -0.51244301 0.040265001 0.75382\n\t\t 0.55092502 0.051500998 -0.14678 -0.78578001 -0.22244 0.59356099 -0.78578001 -0.22244 0.59356099\n\t\t -0.63500297 -0.32723501 0.53874201 -0.63500297 -0.32723501 0.53874201 -0.63500297 -0.32723501 0.53874201\n\t\t 0.255382 -0.60050398 -0.59805399 0.259238 -0.59539402 -0.597844 -0.78951299 -0.22244 0.583305\n\t\t -0.78951299 -0.22244 0.583305 -0.259942 -0.57724899 -0.59848702 -0.25832599 -0.564668 -0.59989101\n\t\t 0.048397999 -0.874412 -0.54540402 0.048397999 -0.874412 -0.54540402 -0.48596999 0.33927599 -0.23121201\n\t\t -0.51399302 0.34245601 -0.233355 0.240978 -0.46938899 0.0089410003 -0.160291 -0.356141 -0.61735302\n\t\t -0.26273099 -0.35622099 -0.52011102 -0.26273099 -0.35622099 -0.52011102 -0.50387502 -0.60322303 0.205772\n\t\t -0.90804601 -0.107833 0.60105097 -0.90804601 -0.107833 0.60105097 -0.73115402 0.38386199 0.41510499\n\t\t -0.23533399 -0.344556 -0.51493001 0.65887398 0.050567001 -0.012057 0.65887398 0.050567001 -0.012057\n\t\t 0.65879703 0.051534999 -0.020563999 0.65879703 0.051534999 -0.020563999 0.245389 -0.60837501 -0.599078\n\t\t -0.26888701 -0.586694 -0.61661899 0.68914598 0.099007003 -0.004745 0.50784498 -0.48999801 -0.117966\n\t\t 0.487391 -0.490408 -0.101742 0.64820701 0.051500998 -0.102032 0.64820701 0.051500998 -0.102032\n\t\t 0.68514597 -0.04332 0.37581301 -0.151594 -0.68171799 0.203392 -0.151594 -0.68171799 0.203392\n\t\t 0.66359001 0.047366001 0.097837999 0.76447701 0.240955 0.049167 0.50780898 -0.497031 -0.116011\n\t\t -0.46938199 -0.61786902 0.20162 -0.43463501 -0.62493199 0.214747 -0.147229 -0.805354 0.20016301\n\t\t -0.147229 -0.805354 0.20016301 -0.147229 -0.805354 0.20016301 -0.140238 -0.80367398 0.19498999\n\t\t -0.140238 -0.80367398 0.19498999 0.54332101 -0.030776 -0.261473 -0.65862602 0.047366001 0.097837999\n\t\t -0.66334301 0.044165999 0.20773301 -0.263181 -0.60062701 -0.616359 -0.205322 -0.61433297 0.051406\n\t\t -0.94038498 0.0066089998 0.54699898 -0.70123899 -0.070845 0.77169698 -0.258708 -0.485448 0.104388\n\t\t -0.75222802 0.30743399 0.046889 -0.75951499 0.240955 0.049167 0.131089 -0.76772499 -0.44360301\n\t\t 0.131089 -0.76772499 -0.44360301 -0.170764 -0.51320899 0.0089410003 0.17572799 -0.51320899 0.076025002\n\t\t -0.565651 -0.044677999 0.69514298 -0.185918 -0.49013999 0.0089410003;\n\tsetAttr \".vt[12616:12781]\" 0.37433201 -0.244073 -0.47259 0.30631801 -0.319076 -0.50364399\n\t\t 0.048397999 -0.76772499 -0.54540402 0.048397999 -0.76772499 -0.54540402 -0.28215599 0.59924102 1.059507966\n\t\t -0.474094 -0.43872201 0.25723299 -0.25863099 -0.60665703 -0.61660701 -0.172599 -0.71776801 0.197827\n\t\t -0.172599 -0.71776801 0.197827 0.66264898 0.39770001 -0.151219 0.211854 -0.469924 0.012081\n\t\t -0.43463501 -0.62493199 0.20162 -0.272744 0.59764302 1.053611994 0.170131 -0.540236 0.076025002\n\t\t -0.43463501 -0.430702 0.25723299 0.170131 -0.540236 0.088372998 0.56887001 -0.012008 -0.21078999\n\t\t 0.55628699 -0.012052 -0.23436201 -0.25041801 -0.60050398 -0.59805399 -0.65390998 0.050565999 -0.012057\n\t\t -0.65390998 0.050565999 -0.012057 -0.157969 -0.414875 -0.57187998 -0.17654701 -0.474884 -0.55931503\n\t\t 0.467715 0.07277 0.77345997 0.54839599 0.052191999 0.80282301 -0.23601399 -0.62068999 0.051406\n\t\t -0.64611 0.050565999 -0.012057 -0.64611 0.050565999 -0.012057 0.37515199 -0.75649798 -0.124898\n\t\t 0.37515199 -0.80734998 -0.124898 0.388854 -0.74956 -0.110538 0.388854 -0.74956 -0.110538\n\t\t 0.43959901 -0.43606299 0.205771 -0.207947 -0.80053002 0.223984 -0.207947 -0.80053002 0.223984\n\t\t -0.208987 -0.47498599 0.0089410003 -0.470072 0.67326999 0.089057997 0.556072 0.572613 -0.046932999\n\t\t 0.55602902 0.561759 -0.066673003 0.68709499 0.20165201 0.261015 -0.58334601 -0.239638 0.64569098\n\t\t -0.71350902 -0.071093 0.771016 -0.71350902 -0.071093 0.771016 -0.71350902 -0.071093 0.771016\n\t\t -0.249396 0.52375102 1.10982096 -0.25564799 0.466052 1.12740004 -0.56394702 -0.30210701 0.499697\n\t\t -0.63877398 -0.32723501 0.52838099 -0.63877398 -0.32723501 0.52838099 -0.63877398 -0.32723501 0.52838099\n\t\t -0.286111 -0.59033298 0.0089410003 -0.26304099 -0.60548598 0.0089410003 0.403723 -0.20621599 -0.45800301\n\t\t 0.50391001 -0.46967199 0.20162 0.47434601 -0.45009601 0.20162 0.554079 0.61934501 0.039577998\n\t\t 0.49287999 0.182845 0.78145599 0.149354 -0.77673203 -0.071071997 -0.54054201 0.66021597 0.57542002\n\t\t -0.52028799 -0.49225199 -0.130945 -0.116756 -0.32240701 -0.59286398 -0.22719 -0.68280703 -0.528561\n\t\t -0.106476 -0.332306 -0.59105402 0.21373001 -0.69546002 0.245698 0.21373001 -0.69546002 0.245698\n\t\t -0.140165 0.17932899 1.155334 -0.145193 0.173959 1.15189195 -0.50288099 -0.48999801 -0.117966\n\t\t -0.482427 -0.490408 -0.101742 0.43959901 -0.44303399 0.20162 -0.23601399 -0.61108398 0.0089410003\n\t\t -0.208987 -0.60548598 0.0089410003 -0.73884499 0.35112399 0.18626601 -0.73884499 0.35112399 0.18626601\n\t\t -0.33685699 -0.120284 0.49997199 -0.32888001 -0.154282 0.49996799 -0.73924702 0.38591501 0.142747\n\t\t -0.147508 0.166941 1.14846003 -0.73293298 0.392014 0.179627 -0.72526401 0.433559 0.172233\n\t\t -0.72526401 0.433559 0.172233 0.66101003 0.023596 -0.099532999 0.66101003 0.023596 -0.099532999\n\t\t -0.762317 0.39180899 0.156074 0.148072 -0.69168502 -0.28870699 0.66830701 0.044165999 0.20773301\n\t\t -0.164038 -0.23330399 -0.664294 -0.164038 -0.23330399 -0.664294 -0.146744 0.159384 1.14558101\n\t\t -0.364198 -0.504807 0.32670701 -0.18921299 -0.58759999 -0.60979098 0.186994 -0.59421998 0.012081\n\t\t 0.093103997 -0.59087098 -0.69546002 -0.75047398 0.428767 0.18728501 -0.75047398 0.428767 0.18728501\n\t\t -0.56017601 -0.30210701 0.51005697 -0.56148303 0.050705001 -0.219304 -0.56616199 0.043329 -0.220558\n\t\t 0.55168998 -0.018689999 -0.243974 0.51003599 -0.56315899 0.32670701 -0.67852801 0.23661201 -0.069121003\n\t\t 0.15655801 -0.82470298 0.203393 0.15655801 -0.82470298 0.203393 0.15655801 -0.82470298 0.203393\n\t\t -0.18759599 -0.57502002 -0.61119598 -0.099031001 -0.394236 0.28619501 0.200709 -0.54914802 -0.63262397\n\t\t -0.648601 0.19373401 -0.071015999 -0.71598703 0.27206099 0.34547901 -0.69060498 0.278543 0.44712701\n\t\t -0.69943202 0.124654 0.050547 -0.69943202 0.124654 0.050547 0.079171002 -0.52060997 -0.69587898\n\t\t 0.41042301 -0.60442001 0.32670701 -0.38063601 -0.479983 0.32670701 -0.217858 -0.62018502 -0.62244803\n\t\t -0.85007501 -0.18317001 0.61126 -0.17809901 0.851475 0.47217 0.160524 -0.540236 0.070440002\n\t\t 0.166881 -0.50954401 0.070440002 -0.21586099 -0.61197001 -0.60300398 -0.38670301 0.69553298 0.80326098\n\t\t -0.39158401 0.69724798 0.79430598 -0.14518701 -0.47104001 -0.56906903 -0.173667 -0.49818501 -0.55764103\n\t\t -0.173667 -0.49818501 -0.55764103 0.68710703 0.18284599 0.247805 -0.77887201 -0.101966 0.75019503\n\t\t -0.40545899 -0.46354601 0.32670701 -0.70166498 0.12879901 0.05091 0.64174199 0.028623 0.108768\n\t\t -0.187748 -0.561903 -0.63286602 -0.39253601 0.72070599 0.30389601 -0.42214701 0.68592203 0.250328\n\t\t 0.87964398 0.212604 0.62921298 -0.19712099 -0.55176401 -0.611628 -0.19034199 -0.56257403 -0.61183399\n\t\t 0.191379 -0.59143102 -0.63045597 0.19820499 -0.60464299 -0.62809497 0.64412898 0.051500998 -0.134644\n\t\t 0.64412898 0.051500998 -0.134644 -0.848216 -0.071093 0.400911 -0.848216 -0.071093 0.400911\n\t\t 0.52991599 -0.57139301 0.205772 0.53751999 -0.53398299 0.205772 0.184089 -0.483347 0.070440002\n\t\t 0.19551501 0.2304 -0.56084698 0.70561099 -0.054028001 0.78180701 0.50883901 -0.60322303 0.205772\n\t\t 0.152661 -0.56099802 -0.14413901 0.913881 -0.104132 0.60136497 -0.12931199 0.144214 1.143785\n\t\t -0.54911703 0.61934501 0.039577998 -0.073109001 -0.82948703 -0.76808298 -0.72208798 0.25604299 0.32235199\n\t\t -0.72208798 0.25604299 0.32235199 -0.52858001 0.057487 -0.247127 -0.12082 -0.45674899 -0.57487899\n\t\t -0.46938199 -0.45009601 0.214747 -0.49894601 -0.46967199 0.214746 0.473342 0.674429 0.057257\n\t\t 0.473342 0.674429 0.057257 -0.52264202 0.049355 -0.24917001 -0.68453401 0.278568 0.47025299\n\t\t -0.682666 0.27460501 0.478995 0.47701001 -0.6243 0.205772;\n\tsetAttr \".vt[12782:12947]\" 0.468775 -0.46354601 0.32670701 -0.55972302 0.044132002 -0.255472\n\t\t -0.098072 -0.813241 -0.68210202 -0.098072 -0.813241 -0.68210202 0.554901 0.021097001 -0.256484\n\t\t -0.58700001 0.075704001 -0.16593701 -0.58700001 0.075704001 -0.16593701 -0.57552201 0.083587997 -0.162817\n\t\t 0.38018399 -0.43459299 -0.36993599 -0.71277303 0.2397 0.344217 -0.59254301 0.064320996 -0.16755401\n\t\t 0.48888499 -0.497738 -0.100597 0.56150699 0.055550002 -0.20924599 0.55316001 0.057339001 -0.20701\n\t\t 0.53601003 0.67595297 0.099771 0.404852 -0.61786997 0.20162 -0.38063601 -0.587982 0.32670701\n\t\t -0.40545899 -0.60442001 0.32670701 -0.688613 0.244454 0.44227999 0.209125 -0.61462897 -0.625314\n\t\t -0.54352999 0.65124398 0.105701 0.481273 -0.25199199 -0.30736399 -0.58700103 0.075704001 -0.13843\n\t\t -0.57195598 -0.36956501 -0.173638 -0.52280599 -0.66272002 -0.113423 -0.36539501 -0.46474299 0.210595\n\t\t 0.114773 -0.334324 -0.63095403 0.114773 -0.334324 -0.63095403 -0.65768701 0.39770001 -0.15145101\n\t\t -0.370325 -0.59829301 0.289473 -0.60724199 0.05119 -0.15008201 -0.60724199 0.05119 -0.15008201\n\t\t 0.51938099 -0.65775198 -0.124651 0.11144 -0.332306 -0.59105402 -0.30126399 -0.56726301 0.0089410003\n\t\t -0.50328201 -0.381199 -0.234704 -0.50328201 -0.381199 -0.234704 -0.54114503 -0.26857299 -0.257038\n\t\t -0.098131999 -0.61996502 -0.68708998 -0.59511697 0.05119 -0.13843 -0.51482701 -0.38201001 -0.23239601\n\t\t -0.51482701 -0.38201001 -0.23239601 0.60094202 -0.226798 -0.140277 0.64026701 -0.160992 -0.11941\n\t\t 0.43046901 0.45066699 -0.274885 0.42116401 0.41616699 -0.26958701 -0.66698599 -0.30932501 0.24145199\n\t\t -0.225577 -0.56929201 -0.46849301 -0.225577 -0.56929201 -0.46849301 0.42984599 0.44663101 -0.28105399\n\t\t 0.420544 0.41213101 -0.275756 -0.593925 0.355919 -0.12696899 -0.66787302 -0.30556801 0.23442\n\t\t -0.66787302 -0.30556801 0.23442 -0.51945901 0.053575002 -0.244683 -0.42460501 -0.156747 -0.44429201\n\t\t -0.61654502 0.422243 -0.17172 -0.72063297 0.26606199 0.32760099 -0.71856201 0.270192 0.334663\n\t\t -0.36539501 -0.60322303 0.210595 -0.39722499 -0.6243 0.210595 -0.34431899 -0.57139403 0.210595\n\t\t 0.51895499 0.42432901 -0.27195001 -0.67329699 -0.18075199 0.26338801 0.120529 0.17137 1.15826404\n\t\t 0.528521 0.011441 -0.209141 0.28304201 -0.49817199 0.104388 0.50136298 0.201649 0.77132499\n\t\t 0.472271 0.479381 -0.28650001 -0.364191 -0.64721 -0.43099701 -0.210899 -0.199559 0.49998701\n\t\t -0.67916501 -0.090360001 0.3488 0.250108 -0.19810501 0.51015902 0.21969 -0.190966 0.51016802\n\t\t -0.478497 0.44556499 -0.30755401 -0.217209 -0.56759799 -0.46927199 -0.217209 -0.56759799 -0.46927199\n\t\t -0.68029499 -0.069232002 0.36063999 -0.68056899 -0.071057998 0.367567 -0.68056899 -0.071057998 0.367567\n\t\t -0.66223103 -0.212337 0.374973 -0.66223103 -0.212337 0.374973 -0.56453902 0.56347299 -0.044468001\n\t\t -0.56453902 0.56347299 -0.044468001 -0.46218601 0.450535 -0.306086 -0.322615 0.78243798 0.39240199\n\t\t 0.45009699 0.47583899 -0.279053 0.45009699 0.47583899 -0.279053 0.51400697 0.45641899 -0.27274001\n\t\t 0.44927999 0.471834 -0.28542101 0.44927999 0.471834 -0.28542101 0.517407 0.040265001 0.75382\n\t\t -0.49046201 0.41647401 -0.29917899 0.11045 -0.34706801 -0.62837702 0.295766 -0.517542 0.104388\n\t\t 0.300466 -0.540236 0.104388 -0.370188 -0.75649798 -0.124898 0.33384401 -0.154282 0.49996799\n\t\t -0.44964701 0.40346399 -0.286057 0.52851999 0.057937 -0.209141 0.295766 -0.56292999 0.104388\n\t\t 0.519813 -0.49503499 -0.142465 0.50242603 -0.492908 -0.129467 -0.354408 -0.66032702 -0.417472\n\t\t 0.325524 0.28902099 -0.468389 0.51783699 -0.50112301 -0.13963 -0.594414 -0.315393 0.104981\n\t\t -0.26304099 -0.474987 0.088372998 0.12509 0.17534 1.15873396 -0.84530097 -0.054028999 0.38437399\n\t\t -0.73984498 0.058669001 0.26773101 -0.135874 -0.82092398 0.19176 -0.135874 -0.82092398 0.19176\n\t\t -0.74256599 0.36776599 0.043094002 -0.367531 -0.81317401 -0.097558998 -0.37358701 -0.80989897 -0.105743\n\t\t -0.37358701 -0.80989897 -0.105743 -0.153952 -0.32227999 -0.59109402 -0.50146598 -0.083208002 -0.33738899\n\t\t -0.71601999 0.26526299 0.336694 0.48205 -0.49344 -0.113261 -0.717107 0.42798701 0.037663002\n\t\t 0.56572002 -0.65349501 -0.133506 -0.47860399 -0.50076902 -0.112132 -0.038389999 -0.351156 0.286217\n\t\t -0.43581399 -0.77438802 -0.061140001 -0.68500799 0.098263003 0.0041570002 -0.135874 -0.677939 0.19176\n\t\t -0.135874 -0.677939 0.19176 -0.135874 -0.677939 0.19176 -0.47708601 -0.49344 -0.113261\n\t\t -0.73781103 0.19345801 0.034768999 -0.462751 0.07277 0.77345997 -0.543432 0.052191 0.80282301\n\t\t 0.222822 -0.62018502 -0.62244803 0.56468701 0.025246 -0.255472 0.55957198 0.017185001 -0.25410101\n\t\t 0.218284 -0.59502399 0.104388 -0.53680801 0.015466 -0.25296599 -0.52972603 0.016984999 -0.251068\n\t\t -0.52264202 0.020021999 -0.24917001 -0.33067501 -0.085914999 0.49997899 -0.165167 -0.540236 0.045821998\n\t\t 0.197014 -0.059751 0.51019901 0.237645 -0.62064201 -0.61984402 0.54512101 0.34437299 -0.244984\n\t\t 0.54512101 0.34437299 -0.244984 -0.54389203 0.016984999 -0.25486401 -0.16246 -0.33217701 -0.58864897\n\t\t 0.133766 0.149039 1.14587295 0.32685801 -0.089285001 0.51016003 0.54609501 -0.262086 -0.276595\n\t\t 0.58260798 -0.202305 -0.24870101 -0.52932 0.051970001 -0.210686 0.129926 -0.78641099 0.183686\n\t\t 0.129926 -0.78641099 0.183686 0.140019 -0.78641099 0.170046 0.140019 -0.78641099 0.170046\n\t\t -0.144205 -0.237497 -0.652098 0.64336997 0.051189002 -0.160799 0.64336997 0.051189002 -0.160799\n\t\t 0.25180501 -0.61594301 -0.61781597 -0.36300701 0.65464801 0.83757401 -0.29279199 0.14096899 1.073747993\n\t\t 0.489149 0.33799899 -0.24087501 0.51713502 0.34118599 -0.24293;\n\tsetAttr \".vt[12948:13113]\" 0.146781 0.160366 1.14721501 -0.185918 -0.59033298 0.018964\n\t\t -0.161852 -0.35440001 0.28618801 0.28304201 -0.58230102 0.104388 -0.37061101 0.64634597 0.84038502\n\t\t -0.54993701 0.021096 -0.256484 0.55957198 0.052193001 -0.25410101 -0.700647 -0.054028999 0.78180701\n\t\t 0.53614002 0.34101 -0.27717599 -0.33395901 -0.66565198 -0.40464199 -0.318872 -0.66749799 -0.38462901\n\t\t 0.27385101 -0.586694 -0.61661899 -0.0094769998 -0.75865197 0.098231003 -0.0094769998 -0.75865197 0.098231003\n\t\t -0.21911401 -0.53991199 -0.60888499 -0.231677 -0.540299 -0.60667801 -0.71658897 0.42471501 0.028308\n\t\t 0.165253 -0.351307 -0.62496102 -0.164482 -0.018123999 -0.64370197 -0.0094769998 -0.68027198 0.098231003\n\t\t -0.0094769998 -0.68027198 0.098231003 -0.185918 -0.59033298 0.045821998 0.57178903 0.056235 -0.220735\n\t\t -0.17805099 0.84795803 0.47598499 -0.181073 -0.023824001 -0.63946003 -0.63521397 0.52898699 -0.010724\n\t\t -0.38389 -0.82128501 -0.110538 -0.38389 -0.82128501 -0.110538 -0.37783399 -0.82470298 -0.102354\n\t\t 0.60477602 0.55181998 0.685821 -0.170764 -0.56726402 0.018964 -0.32393101 0.779383 0.39685601\n\t\t -0.71100903 0.48586899 0.020289 -0.71100903 0.48586899 0.020289 -0.457959 -0.77714598 -0.043714002\n\t\t -0.457959 -0.77714598 -0.043714002 -0.170764 -0.56726301 0.045821998 -0.64927101 -0.303882 0.236745\n\t\t -0.64927101 -0.303882 0.236745 -0.64927101 -0.303882 0.236745 -0.575445 0.034689002 -0.22304501\n\t\t 0.14186899 0.175258 1.15449703 0.49321601 0.34408 -0.243081 -0.68214297 0.18284599 0.247805\n\t\t 0.49318901 0.34512499 -0.233906 0.62526798 0.05119 -0.150078 0.62526798 0.05119 -0.150078\n\t\t -0.64821899 -0.30892 0.259929 -0.63243699 0.59578401 0.37315601 -0.22255901 -0.81936502 0.25590399\n\t\t -0.22255901 -0.81936502 0.25590399 -0.156078 0.219496 -0.572806 -0.156078 0.219496 -0.572806\n\t\t -0.156078 0.219496 -0.572806 -0.207113 -0.54389399 -0.61060399 -0.13505501 -0.78641099 0.170046\n\t\t -0.13505501 -0.78641099 0.170046 -0.24489599 -0.207537 0.49997801 -0.66319501 -0.33031601 0.27563199\n\t\t -0.66319501 -0.33031601 0.27563199 -0.66260803 -0.27458301 0.328601 -0.158306 0.222651 -0.56829298\n\t\t 0.684434 0.240263 0.44234699 0.70934099 0.235577 0.34115899 0.260167 0.581451 1.075587034\n\t\t -0.441062 -0.83502698 -0.068232 -0.441062 -0.83502698 -0.068232 -0.43500701 -0.83844501 -0.060047999\n\t\t 0.712439 0.23750401 0.33048201 -0.72480202 0.188344 0.131332 -0.75005901 0.30638599 0.037035\n\t\t -0.52858001 0.011891 -0.247127 -0.51945901 0.015802 -0.244683 -0.64549601 -0.25531101 0.31376901\n\t\t -0.64247102 -0.200957 0.356455 -0.64247102 -0.200957 0.356455 -0.327425 -0.120037 0.510153\n\t\t 0.157497 -0.49171799 -0.55855697 -0.65915602 0.07925 0.23836499 0.25788 0.58446002 1.074512959\n\t\t 0.70037699 0.41407499 -0.138541 0.70037699 0.41407499 -0.138541 0.68949598 0.278568 0.47025299\n\t\t 0.68763 0.27460501 0.478995 0.75269401 0.108678 0.77315903 0.56644702 0.018673001 -0.219304\n\t\t 0.56644702 0.018673001 -0.219304 -0.30996901 0.20691501 1.068503022 -0.323576 0.213064 1.059932947\n\t\t -0.73231101 0.162494 0.075328 -0.65135098 0.0072940001 -0.060066 -0.55461001 0.017185001 -0.25410101\n\t\t 0.65267199 0.050905999 -0.088076003 0.72554898 -0.077794001 0.773045 0.72554898 -0.077794001 0.773045\n\t\t 0.77375102 -0.101715 0.75673699 0.77375102 -0.101715 0.75673699 0.84717298 -0.209729 0.60831201\n\t\t 0.84717298 -0.209729 0.60831201 0.84717298 -0.209729 0.60831201 -0.167079 -0.115824 0.510194\n\t\t -0.172609 -0.146575 0.51018697 -0.44308099 -0.82486999 -0.07096 -0.44308099 -0.774019 -0.070960999\n\t\t -0.74423999 0.240942 0.039235 -0.54682302 0.011891 -0.25201499 -0.53770298 0.009935 -0.249571\n\t\t 0.78383601 -0.101966 0.75019503 -0.336566 0.213081 1.048715949 -0.55391002 0.027355 -0.257548\n\t\t -0.55724102 0.0066260002 -0.21816701 -0.546013 0.004218 -0.215159 0.26853201 0.45983201 1.12659204\n\t\t -0.66696799 -0.027690999 -0.075212002 -0.297894 0.19560599 1.073071003 0.16260999 -0.115575 0.50001299\n\t\t -0.23153199 -0.72332799 0.26254401 -0.23153199 -0.72332799 0.26254401 0.70606202 -0.074124001 0.765724\n\t\t -0.18907 -0.173132 0.51017803 0.687208 0.28439 0.44738001 0.28199899 0.45043099 1.12059295\n\t\t 0.28199899 0.45043099 1.12059295 0.30989301 -0.62826401 -0.53953397 0.445678 0.47468099 -0.28698301\n\t\t 0.445678 0.47468099 -0.28698301 -0.45659301 -0.77596903 -0.041609 -0.70992303 0.123215 0.075021997\n\t\t -0.70992303 0.123215 0.075021997 0.71963602 0.268112 0.319426 0.67984903 0.51661497 0.514934\n\t\t 0.724563 0.48605499 0.379787 -0.55537701 0.034689002 -0.25794199 0.616382 -0.315393 0.091812998\n\t\t 0.616382 -0.315393 0.091812998 0.68575698 0.332468 -0.127933 0.78760898 0.35399699 0.171459\n\t\t 0.78760898 0.35399699 0.171459 0.78760898 0.35399699 0.171459 0.73883301 0.318257 0.144767\n\t\t -0.44293001 0.39188701 -0.28653699 -0.208987 -0.60548598 0.088372998 -0.44604799 0.38681799 -0.289417\n\t\t 0.57584202 -0.41541499 0.044220001 0.72438902 0.48971701 0.37661001 0.67879498 0.37073499 -0.13875601\n\t\t 0.73637098 0.316598 0.143407 0.73637098 0.316598 0.143407 -0.174217 -0.085405998 0.510198\n\t\t 0.75707603 0.37060499 0.33498999 0.32241699 -0.56168401 -0.388751 -0.289121 0.180793 1.072970033\n\t\t -0.19055299 0.2304 -0.56084698 0.511473 -0.38277799 -0.26010001 -0.43891901 0.404024 -0.33205101\n\t\t -0.43891901 0.404024 -0.33205101 -0.43813899 0.41479099 -0.33589199 -0.43813899 0.41479099 -0.33589199\n\t\t 0.47295201 -0.41375899 -0.29853401 0.76012701 0.38124999 0.35684499 0.76012701 0.38124999 0.35684499\n\t\t 0.75594801 0.42771399 0.341371 0.74917603 0.47255501 0.32761899 0.74917603 0.47255501 0.32761899\n\t\t 0.448751 0.39275199 -0.31489801 0.448751 0.39275199 -0.31489801;\n\tsetAttr \".vt[13114:13279]\" 0.448751 0.39275199 -0.31489801 0.45460901 0.40346399 -0.286057\n\t\t 0.25435999 0.52420503 1.10982096 -0.145174 -0.38508299 -0.57801199 -0.35453299 0.180879 1.016487002\n\t\t -0.290802 -0.56292999 0.104388 -0.27807799 -0.58230102 0.104388 0.56985301 0.017408 -0.211483\n\t\t 0.56985301 0.017408 -0.211483 0.47092 0.39849401 -0.28752401 -0.258708 -0.59502399 0.104388\n\t\t 0.41665599 0.41944599 -0.27088901 0.38321501 0.64146602 0.83841801 0.61804003 0.42070401 0.74132699\n\t\t 0.240978 -0.61108297 0.018964 -0.32647201 -0.55908602 -0.401622 -0.317453 -0.56168401 -0.388751\n\t\t -0.56488901 0.017407 -0.211483 -0.56488901 0.017407 -0.211483 0.57061499 -0.044677999 0.69514298\n\t\t 0.70620298 -0.070845 0.77169698 -0.71279198 0.383522 -0.116628 0.20522501 -0.65931898 -0.45485899\n\t\t 0.84026498 -0.074124001 0.39700601 0.69220799 0.40276501 0.55956203 0.73611599 0.38431701 0.41510499\n\t\t -0.32609001 0.121514 1.034881949 -0.32189399 -0.089286 0.51016003 -0.370188 -0.80734998 -0.124898\n\t\t 0.61748302 0.424674 0.74060899 -0.289489 0.115386 1.063333035 -0.305181 0.106218 1.04501605\n\t\t 0.46213201 -0.52210701 -0.17417599 0.33085701 -0.66767502 -0.37991101 0.88555998 -0.101775 0.44983301\n\t\t 0.88555998 -0.101775 0.44983301 0.50487798 0.440763 0.918899 0.566248 0.433992 0.832591\n\t\t 0.36915499 -0.64721 -0.43099701 0.37795699 -0.65381998 -0.433705 0.37449101 -0.203582 -0.45892999\n\t\t 0.38963601 0.447658 1.040596962 0.67312598 0.103332 -0.095618002 0.33590001 -0.67875302 -0.376789\n\t\t -0.28437799 0.178425 1.10044706 0.71574402 0.194932 -0.089322999 0.385921 -0.15988 -0.460639\n\t\t -0.38590801 -0.76027697 -0.113266 0.88904703 -0.102051 0.461474 -0.64097601 0.53249103 -0.013948\n\t\t 0.16436701 -0.346975 -0.61131603 -0.37358701 -0.75720102 -0.105743 -0.37358701 -0.75720102 -0.105743\n\t\t -0.367531 -0.75224698 -0.097558998 0.59485298 -0.25902799 -0.19727001 -0.446412 0.39353901 -0.28930199\n\t\t -0.15113799 -0.24709401 -0.64658099 0.57530701 -0.38511699 -0.16032401 0.57691997 -0.36956501 -0.173638\n\t\t 0.59200799 -0.273936 -0.198201 0.47766301 0.41479099 -0.34291199 0.47766301 0.41479099 -0.34291199\n\t\t -0.38590801 -0.81112802 -0.113266 0.168791 -0.14994501 0.50000602 -0.67232603 0.28267699 0.46646899\n\t\t 0.30622801 -0.51320899 0.018964 0.31182501 -0.540236 0.018964 0.26548499 0.52813798 1.11383104\n\t\t 0.21395101 -0.60548598 0.045821998 0.74463397 0.47243601 0.30302101 0.39166501 0.69553298 0.80326098\n\t\t 0.39654601 0.69724798 0.79430598 -0.098443002 -0.61115599 -0.70011503 -0.098443002 -0.61115599 -0.70011503\n\t\t -0.297526 0.200626 1.10059905 0.39120001 0.59325403 0.98242199 0.28712001 0.59969503 1.059507966\n\t\t -0.093438998 -0.60596102 -0.70432502 0.35363299 -0.55148202 -0.40815499 0.187189 -0.179626 0.49999699\n\t\t 0.41455701 0.696522 0.77283603 0.043354001 -0.351156 0.286217 0.471376 0.68592101 0.70453203\n\t\t 0.51787102 0.67291701 0.62600702 0.79074401 -0.22244 0.59356099 0.79074401 -0.22244 0.59356099\n\t\t -0.32701799 -0.55131501 -0.377801 0.374219 -0.60838002 -0.44013801 0.37441799 -0.62905502 -0.43899301\n\t\t 0.66765499 -0.0033849999 0.034995999 0.74118 0.47260699 0.321511 0.74118 0.47260699 0.321511\n\t\t 0.47247401 0.39531201 -0.33462301 0.47247401 0.39531201 -0.33462301 -0.505072 -0.56315899 0.32670701\n\t\t 0.60008103 0.05119 -0.13843 -0.77749097 -0.217887 0.584508 0.32399201 -0.59384 -0.54017401\n\t\t 0.322712 -0.59381503 -0.545205 0.71633899 0.257337 0.313245 -0.43463501 -0.61035001 0.32670701\n\t\t 0.56353903 0.56773698 0.77887601 0.50358099 0.57980299 0.86254197 -0.38061199 0.200735 1.028853059\n\t\t 0.30622801 -0.56726301 0.088372998 -0.83530098 -0.074124001 0.39700601 0.132947 -0.26615 0.28621101\n\t\t 0.107517 -0.26018301 0.28621799 -0.88975602 0.114861 0.43082899 -0.88693702 0.096072003 0.41674301\n\t\t -0.315622 0.217575 1.093750954 -0.72058499 -0.077794999 0.773045 -0.72058499 -0.077794999 0.773045\n\t\t 0.65364301 -0.30850801 0.270114 0.65364301 -0.30850801 0.270114 0.65364301 -0.30850801 0.270114\n\t\t 0.66400701 -0.088560998 0.32544699 0.66400701 -0.088560998 0.32544699 0.66400701 -0.088560998 0.32544699\n\t\t 0.56891102 -0.30210701 0.499697 0.65318298 -0.30892 0.259929 0.64743501 -0.200957 0.356455\n\t\t 0.64743501 -0.200957 0.356455 0.65701401 -0.188667 0.28374699 -0.75338101 0.096073002 0.78368598\n\t\t -0.33601499 0.22679 1.080906987 -0.74773002 0.108678 0.77315903 0.42944399 -0.46118301 -0.34417501\n\t\t 0.36630401 -0.50169599 -0.39390799 -0.70109802 -0.074124001 0.765724 0.48754099 -0.41996399 -0.29256901\n\t\t -0.14442401 -0.89659798 -0.54540402 -0.14442401 -0.89659798 -0.54540402 -0.14439 -0.77673203 -0.071071997\n\t\t 0.24241599 -0.56430799 -0.47176701 -0.204643 -0.55574697 -0.474738 0.65046 -0.25531101 0.31376901\n\t\t -0.90897501 -0.108257 0.59138298 -0.907772 -0.110635 0.59714597 -0.90748698 -0.110452 0.60024601\n\t\t -0.90748698 -0.110452 0.60024601 0.57411498 0.43955001 0.83722401 -0.147697 -0.744039 -0.54540402\n\t\t 0.529369 -0.38734099 -0.25089601 -0.92048103 -0.078910999 0.55065799 0.856502 -0.18274499 0.60415\n\t\t 0.62589699 0.43006101 0.74444503 0.16528501 -0.163442 -0.679268 0.70129198 0.40783 0.56217301\n\t\t 0.74510503 0.38937801 0.41844401 0.165383 -0.210253 -0.671763 0.92539001 0.116565 0.636702\n\t\t -0.94069302 0.031684998 0.612804 0.70238501 0.51410198 0.10658 -0.122731 -0.83691102 -0.44360301\n\t\t -0.122731 -0.83691102 -0.44360301 -0.043434002 -0.84030402 -0.44360301 -0.043434002 -0.84030402 -0.44360301\n\t\t -0.52102202 -0.65534401 -0.113915 -0.286111 -0.49013999 0.018964 -0.53152502 0.0030380001 -0.25570399\n\t\t 0.89190102 0.096073002 0.41674301 -0.56000799 0.0098059997 -0.195076 0.057116002 -0.37335801 0.28621\n\t\t 0.54485798 -0.65336603 -0.123375 0.56132102 -0.64772499 -0.131787;\n\tsetAttr \".vt[13280:13340]\" 0.52598602 -0.65534401 -0.113915 0.85155201 -0.18282001 0.61765498\n\t\t -0.185917 -0.59033298 0.076025002 0.74420899 0.38591501 0.142747 -0.043434002 -0.76772499 -0.54540402\n\t\t -0.043434002 -0.76772499 -0.54540402 -0.208987 -0.60548598 0.076024003 -0.59568298 -0.031906001 -0.178361\n\t\t -0.568003 -0.63475603 -0.1381 0.47701001 -0.6243 0.210595 -0.059099998 -0.59779501 -0.710338\n\t\t -0.16843 -0.13994899 -0.66810101 0.50883901 -0.60322303 0.210595 0.54288 -0.53398299 0.25723299\n\t\t -0.25254101 -0.55347103 -0.60189199 0.53486001 -0.57344198 0.25723299 -0.13915201 -0.387321 -0.58024198\n\t\t -0.14867 -0.31474799 -0.61965299 0.20281801 -0.80053002 0.237624 0.20281801 -0.80053002 0.237624\n\t\t 0.21291099 -0.80053002 0.223984 0.21291099 -0.80053002 0.223984 0.20281801 -0.728513 0.23762301\n\t\t 0.20281801 -0.728513 0.23762301 0.177563 -0.71776801 0.197827 0.177563 -0.71776801 0.197827\n\t\t 0.21291099 -0.728513 0.223983 0.21291099 -0.728513 0.223983 -0.25021601 -0.54117602 -0.623918\n\t\t 0.16746999 -0.71776801 0.211467 0.16746999 -0.71776801 0.211467 -0.163068 0.121588 -0.61194497\n\t\t -0.243286 -0.545008 -0.60425001 0.30186501 -0.61844403 -0.55257398 0.30186501 -0.61844403 -0.55257398\n\t\t 0.367971 0.65464801 0.83757401 0.855039 -0.18317001 0.61126 0.177563 -0.79462397 0.197827\n\t\t 0.177563 -0.79462397 0.197827 0.550596 -0.028656 -0.231738 0.16746999 -0.79462397 0.211467\n\t\t 0.16746999 -0.79462397 0.211467 0.54610902 -0.26857299 -0.257038 -0.168548 -0.140788 -0.67147797\n\t\t 0.55426002 0.62882799 0.52489603 -0.158566 -0.245827 -0.65104598 0.483459 0.44556499 -0.30755401\n\t\t 0.51979101 -0.38201001 -0.23239601 0.51979101 -0.38201001 -0.23239601 0.76096398 0.39790699 0.19295301\n\t\t 0.49426001 0.43255499 -0.30491501 0.48651001 0.40346399 -0.29253599 0.443809 0.41647401 -0.28869501\n\t\t 0.495424 0.41647401 -0.29917899 -0.33200899 -0.59937203 -0.36785901 0.060580999 -0.69458002 -0.80982\n\t\t 0.43879101 -0.77049702 -0.058455002 0.73081499 0.193519 0.13684601 0.17625301 -0.24709401 -0.639247\n\t\t 0.100006 -0.61380398 -0.69813597 0.156102 -0.24709401 -0.64658099;\n\tsetAttr -s 28224 \".ed\";\n\tsetAttr \".ed[0:165]\"  8674 8676 0 8676 1 0 1 8674 0 1 3 0 3 8674 0 1 4 0\n\t\t 4 3 0 4 5 0 5 3 0 6 5 0 4 6 0 4 7 0 7 6 0 7 8 0 8 6 0 8 9 0 9 6 0 10 9 0 8 10 0 8 11 0\n\t\t 11 10 0 8785 8674 0 3 8785 0 8675 12 0 12 13 0 13 8675 0 13 8811 0 8811 8675 0 15 13 0\n\t\t 12 15 0 12 8888 0 8888 15 0 15 369 0 369 13 0 369 9103 0 9103 13 0 9103 8811 0 9103 8816 0\n\t\t 8816 8811 0 19 15 0 8888 19 0 19 369 0 8888 20 0 20 19 0 19 21 0 21 369 0 16 8785 0\n\t\t 8785 8827 0 8827 16 0 8827 23 0 23 16 0 8773 16 0 23 8773 0 3 8827 0 9042 22 0 22 24 0\n\t\t 24 9042 0 24 25 0 25 9042 0 22 3 0 5 22 0 5 24 0 6 24 0 6 26 0 26 24 0 26 25 0 26 27 0\n\t\t 27 25 0 26 28 0 28 27 0 28 29 0 29 27 0 9 26 0 9 28 0 10 28 0 10 30 0 30 28 0 30 29 0\n\t\t 30 31 0 31 29 0 9043 9042 0 25 9043 0 23 32 0 32 8773 0 8774 8773 0 32 8774 0 32 9448 0\n\t\t 9448 8774 0 35 8774 0 9448 35 0 9448 9462 0 9462 35 0 36 34 0 34 37 0 37 36 0 37 38 0\n\t\t 38 36 0 39 38 0 37 39 0 37 40 0 40 39 0 40 41 0 41 39 0 41 42 0 42 39 0 43 42 0 41 43 0\n\t\t 41 44 0 44 43 0 45 35 0 9462 45 0 9468 9469 0 9469 46 0 46 9468 0 46 47 0 47 9468 0\n\t\t 33 9468 0 47 33 0 48 47 0 46 48 0 46 49 0 49 48 0 9462 50 0 50 45 0 9397 36 0 38 9397 0\n\t\t 50 9398 0 9398 45 0 9398 52 0 52 45 0 51 9397 0 9397 53 0 53 51 0 38 53 0 53 54 0\n\t\t 54 51 0 55 54 0 53 55 0 53 56 0 56 55 0 56 57 0 57 55 0 42 57 0 56 42 0 57 58 0 58 55 0\n\t\t 59 58 0 57 59 0 57 60 0 60 59 0 38 56 0 39 56 0 42 60 0 43 60 0 61 49 0 49 62 0 62 61 0\n\t\t 62 63 0 63 61 0 63 12419 0 12419 61 0 12419 8699 0 8699 61 0 65 61 0 8699 65 0 8699 8698 0;\n\tsetAttr \".ed[166:331]\" 8698 65 0 66 65 0 8698 66 0 8698 362 0 362 66 0 362 10106 0\n\t\t 10106 66 0 10106 68 0 68 66 0 69 66 0 68 69 0 68 21 0 21 69 0 10106 10107 0 10107 68 0\n\t\t 10107 21 0 69 48 0 48 66 0 48 65 0 61 48 0 46 62 0 46 71 0 71 62 0 9469 71 0 9469 9510 0\n\t\t 9510 71 0 69 72 0 72 48 0 72 47 0 72 33 0 20 33 0 72 20 0 72 19 0 19 69 0 10107 369 0\n\t\t 73 11398 0 11398 11397 0 11397 73 0 11397 74 0 74 73 0 75 74 0 11397 75 0 11397 12904 0\n\t\t 12904 75 0 12904 11355 0 11355 75 0 11355 77 0 77 75 0 78 77 0 11355 78 0 11355 11356 0\n\t\t 11356 78 0 11356 10223 0 10223 78 0 10223 80 0 80 78 0 81 80 0 10223 81 0 10223 10224 0\n\t\t 10224 81 0 10224 9424 0 9424 81 0 9424 2 0 2 81 0 84 73 0 74 84 0 74 85 0 85 84 0\n\t\t 75 86 0 86 74 0 77 86 0 86 85 0 77 87 0 87 86 0 78 88 0 88 77 0 88 87 0 80 88 0 80 89 0\n\t\t 89 88 0 81 90 0 90 80 0 90 89 0 2 90 0 2 0 0 0 90 0 91 84 0 85 91 0 85 92 0 92 91 0\n\t\t 86 92 0 93 91 0 92 93 0 92 94 0 94 93 0 95 93 0 94 95 0 94 96 0 96 95 0 96 97 0 97 95 0\n\t\t 97 98 0 98 95 0 94 99 0 99 96 0 99 100 0 100 96 0 100 97 0 100 101 0 101 97 0 100 102 0\n\t\t 102 101 0 102 103 0 103 101 0 99 104 0 104 100 0 104 102 0 104 105 0 105 102 0 105 106 0\n\t\t 106 102 0 106 103 0 106 9637 0 9637 103 0 107 106 0 106 108 0 108 107 0 108 109 0\n\t\t 109 107 0 105 110 0 110 106 0 110 108 0 110 111 0 111 108 0 111 112 0 112 108 0 112 109 0\n\t\t 112 370 0 370 109 0 370 371 0 371 109 0 113 104 0 99 113 0 99 114 0 114 113 0 94 114 0\n\t\t 92 114 0 86 114 0 87 114 0 87 113 0 88 113 0 88 115 0 115 113 0 115 104 0 115 105 0\n\t\t 115 116 0 116 105 0 116 110 0 89 115 0 89 116 0 90 116 0 90 117 0 117 116 0 117 110 0\n\t\t 117 111 0 117 14 0;\n\tsetAttr \".ed[332:497]\" 14 111 0 14 8817 0 8817 111 0 0 14 0 117 0 0 8817 9416 0\n\t\t 9416 111 0 9416 112 0 9416 370 0 119 121 0 121 120 0 120 119 0 120 122 0 122 119 0\n\t\t 123 122 0 120 123 0 120 124 0 124 123 0 124 125 0 125 123 0 125 126 0 126 123 0 127 126 0\n\t\t 125 127 0 125 128 0 128 127 0 128 129 0 129 127 0 129 130 0 130 127 0 131 130 0 129 131 0\n\t\t 129 132 0 132 131 0 132 133 0 133 131 0 133 11431 0 11431 131 0 134 11540 0 11540 135 0\n\t\t 135 134 0 135 136 0 136 134 0 11452 11305 0 11305 137 0 137 11452 0 137 138 0 138 11452 0\n\t\t 139 11481 0 11481 137 0 137 139 0 137 11420 0 11420 139 0 141 128 0 125 141 0 125 142 0\n\t\t 142 141 0 124 142 0 124 143 0 143 142 0 120 143 0 120 144 0 144 143 0 121 144 0 121 145 0\n\t\t 145 144 0 146 144 0 145 146 0 145 147 0 147 146 0 148 143 0 144 148 0 146 148 0 148 149 0\n\t\t 149 143 0 149 142 0 150 141 0 142 150 0 149 150 0 150 151 0 151 141 0 151 152 0 152 141 0\n\t\t 152 128 0 152 129 0 151 153 0 153 152 0 153 154 0 154 152 0 154 129 0 154 132 0 154 155 0\n\t\t 155 132 0 155 133 0 11540 155 0 155 156 0 156 11540 0 156 135 0 157 156 0 155 157 0\n\t\t 155 158 0 158 157 0 154 158 0 153 158 0 151 158 0 11305 156 0 156 159 0 159 11305 0\n\t\t 159 137 0 157 160 0 160 156 0 160 159 0 160 161 0 161 159 0 161 162 0 162 159 0 162 137 0\n\t\t 162 11420 0 158 163 0 163 157 0 163 160 0 163 161 0 163 164 0 164 161 0 164 165 0\n\t\t 165 161 0 165 166 0 166 161 0 166 162 0 167 166 0 165 167 0 165 168 0 168 167 0 140 162 0\n\t\t 162 169 0 169 140 0 166 169 0 167 169 0 169 170 0 170 140 0 139 140 0 170 139 0 170 171 0\n\t\t 171 139 0 307 139 0 171 307 0 307 11481 0 307 11482 0 11482 11481 0 138 11483 0 11483 11453 0\n\t\t 11453 138 0 11453 11452 0 136 11454 0 11454 11432 0 11432 136 0 11432 134 0 11431 11433 0\n\t\t 11433 131 0 11433 11686 0 11686 131 0 11686 130 0 11686 11738 0 11738 130 0 11738 11748 0\n\t\t 11748 130 0;\n\tsetAttr \".ed[498:663]\" 11748 127 0 11748 126 0 11748 9936 0 9936 126 0 9936 9814 0\n\t\t 9814 126 0 9814 123 0 9814 122 0 9814 9813 0 9813 122 0 9813 119 0 9813 297 0 297 119 0\n\t\t 9695 10732 0 10732 232 0 232 9695 0 232 273 0 273 9695 0 10733 10732 0 9695 10733 0\n\t\t 9695 9694 0 9694 10733 0 9694 10450 0 10450 10733 0 10450 233 0 233 10733 0 180 233 0\n\t\t 10450 180 0 10450 209 0 209 180 0 209 211 0 211 180 0 211 236 0 236 180 0 11111 236 0\n\t\t 211 11111 0 211 11119 0 11119 11111 0 11119 11120 0 11120 11111 0 11120 11112 0 11112 11111 0\n\t\t 11079 11112 0 11120 11079 0 11120 11093 0 11093 11079 0 11093 11094 0 11094 11079 0\n\t\t 11094 11054 0 11054 11079 0 11055 11054 0 11094 11055 0 11094 217 0 217 11055 0 8676 83 0\n\t\t 83 11080 0 11080 8676 0 11080 1 0 11080 10130 0 10130 1 0 10130 4 0 4 10131 0 10131 7 0\n\t\t 10131 11136 0 11136 7 0 11136 295 0 295 7 0 295 8 0 295 11 0 295 12584 0 12584 11 0\n\t\t 171 12884 0 12884 307 0 310 12884 0 171 310 0 171 195 0 195 310 0 170 195 0 170 196 0\n\t\t 196 195 0 197 196 0 170 197 0 169 197 0 167 197 0 198 199 0 199 203 0 203 198 0 203 200 0\n\t\t 200 198 0 10531 10532 0 10532 201 0 201 10531 0 10532 10059 0 10059 201 0 202 200 0\n\t\t 203 202 0 203 204 0 204 202 0 10059 10772 0 10772 201 0 9738 205 0 205 206 0 206 9738 0\n\t\t 207 206 0 205 207 0 205 208 0 208 207 0 10483 10772 0 10059 10483 0 10451 207 0 208 10451 0\n\t\t 208 210 0 210 10451 0 10485 10451 0 210 10485 0 210 212 0 212 10485 0 182 10485 0\n\t\t 212 182 0 212 10423 0 10423 182 0 183 182 0 10423 183 0 10423 10424 0 10424 183 0\n\t\t 186 183 0 10424 186 0 10424 10443 0 10443 186 0 187 186 0 10443 187 0 10443 216 0\n\t\t 216 187 0 13098 187 0 216 13098 0 216 10514 0 10514 13098 0 219 218 0 218 10447 0\n\t\t 10447 219 0 10447 220 0 220 219 0 10358 10359 0 10359 221 0 221 10358 0 221 264 0\n\t\t 264 10358 0 10447 215 0 215 10291 0 10291 10447 0 10291 220 0 215 214 0 214 10291 0\n\t\t 10359 222 0 222 221 0 222 261 0 261 221 0 214 223 0 223 10291 0 222 10273 0 10273 224 0\n\t\t 224 222 0 224 261 0 10273 10274 0 10274 224 0 10274 258 0;\n\tsetAttr \".ed[664:829]\" 258 224 0 225 223 0 214 225 0 214 213 0 213 225 0 213 10460 0\n\t\t 10460 225 0 10460 10568 0 10568 225 0 10274 226 0 226 227 0 227 10274 0 227 258 0\n\t\t 10569 10568 0 10460 10569 0 226 228 0 228 227 0 228 255 0 255 227 0 10460 10484 0\n\t\t 10484 10569 0 10484 10483 0 10483 10569 0 10483 10060 0 10060 10569 0 228 229 0 229 254 0\n\t\t 254 228 0 254 255 0 10059 10060 0 229 202 0 202 254 0 204 254 0 178 179 0 179 10801 0\n\t\t 10801 178 0 10801 10802 0 10802 178 0 13147 178 0 10802 13147 0 10802 243 0 243 13147 0\n\t\t 245 10801 0 179 245 0 179 13152 0 13152 245 0 10967 245 0 13152 10967 0 13152 13202 0\n\t\t 13202 10967 0 10934 10967 0 13202 10934 0 13202 13201 0 13201 10934 0 10935 10934 0\n\t\t 13201 10935 0 13201 181 0 181 10935 0 10946 10935 0 181 10946 0 181 184 0 184 10946 0\n\t\t 249 10946 0 184 249 0 184 185 0 185 249 0 10877 249 0 185 10877 0 185 188 0 188 10877 0\n\t\t 10878 10877 0 188 10878 0 188 189 0 189 10878 0 231 242 0 242 241 0 241 231 0 241 13157 0\n\t\t 13157 231 0 244 242 0 231 244 0 231 230 0 230 244 0 230 13153 0 13153 244 0 13153 246 0\n\t\t 246 244 0 247 246 0 13153 247 0 13153 234 0 234 247 0 234 235 0 235 247 0 235 248 0\n\t\t 248 247 0 158 248 0 235 158 0 235 237 0 237 158 0 237 238 0 238 158 0 238 163 0 238 164 0\n\t\t 238 13192 0 13192 164 0 13192 239 0 239 164 0 239 165 0 239 168 0 239 240 0 240 168 0\n\t\t 247 150 0 150 246 0 248 150 0 149 246 0 248 151 0 148 246 0 148 244 0 148 242 0 146 242 0\n\t\t 147 242 0 147 241 0 250 203 0 199 250 0 199 251 0 251 250 0 250 204 0 250 252 0 252 204 0\n\t\t 252 253 0 253 204 0 253 254 0 253 255 0 253 11535 0 11535 255 0 255 256 0 256 257 0\n\t\t 257 255 0 257 227 0 257 258 0 257 259 0 259 258 0 259 260 0 260 258 0 260 224 0 260 261 0\n\t\t 260 262 0 262 261 0 262 263 0 263 261 0 263 221 0 263 264 0 263 265 0 265 264 0 253 266 0\n\t\t 266 11535 0 266 267 0 267 11535 0 268 266 0 253 268 0 252 268 0 269 268 0 252 269 0\n\t\t 250 269 0 270 269 0 250 270 0;\n\tsetAttr \".ed[830:995]\" 251 270 0 206 271 0 271 9738 0 272 9738 0 271 272 0\n\t\t 271 11971 0 11971 272 0 201 9739 0 9739 10531 0 11902 13278 0 13278 291 0 291 11902 0\n\t\t 291 298 0 298 11902 0 289 13278 0 11902 289 0 11902 11474 0 11474 289 0 11474 11475 0\n\t\t 11475 289 0 11475 11456 0 11456 289 0 11419 11456 0 11475 11419 0 11475 9897 0 9897 11419 0\n\t\t 9897 9884 0 9884 11419 0 9884 11357 0 11357 11419 0 11326 11357 0 9884 11326 0 9884 9885 0\n\t\t 9885 11326 0 9885 11302 0 11302 11326 0 11302 11261 0 11261 11326 0 11260 282 0 282 10133 0\n\t\t 10133 11260 0 10133 11239 0 11239 11260 0 11238 10132 0 10132 10134 0 10134 11238 0\n\t\t 10134 11240 0 11240 11238 0 11309 11241 0 11241 10135 0 10135 11309 0 10135 12887 0\n\t\t 12887 11309 0 12887 308 0 308 11309 0 308 296 0 296 11309 0 12793 296 0 308 12793 0\n\t\t 308 309 0 309 12793 0 275 13279 0 13279 76 0 76 275 0 76 290 0 290 275 0 13280 275 0\n\t\t 290 13280 0 290 292 0 292 13280 0 293 76 0 13279 293 0 13279 278 0 278 293 0 294 293 0\n\t\t 278 294 0 278 279 0 279 294 0 79 294 0 279 79 0 279 280 0 280 79 0 82 79 0 280 82 0\n\t\t 280 281 0 281 82 0 281 283 0 283 82 0 283 9425 0 9425 82 0 283 284 0 284 9425 0 284 190 0\n\t\t 190 9425 0 191 190 0 284 191 0 284 285 0 285 191 0 192 191 0 285 192 0 285 286 0\n\t\t 286 192 0 12583 192 0 286 12583 0 286 12592 0 12592 12583 0 193 12583 0 12592 193 0\n\t\t 12592 288 0 288 193 0 274 12814 0 12814 9846 0 9846 274 0 9846 299 0 299 274 0 276 274 0\n\t\t 299 276 0 299 300 0 300 276 0 277 276 0 300 277 0 300 301 0 301 277 0 302 277 0 301 302 0\n\t\t 301 177 0 177 302 0 303 302 0 177 303 0 177 176 0 176 303 0 304 303 0 176 304 0 176 175 0\n\t\t 175 304 0 11303 304 0 175 11303 0 175 174 0 174 11303 0 305 11303 0 174 305 0 174 173 0\n\t\t 173 305 0 306 305 0 173 306 0 173 172 0 172 306 0 287 306 0 172 287 0 172 12883 0\n\t\t 12883 287 0 10025 287 0 12883 10025 0 12883 194 0 194 10025 0 10026 10025 0 194 10026 0\n\t\t 194 12902 0 12902 10026 0 311 313 0 313 312 0 312 311 0 312 314 0 314 311 0 315 312 0\n\t\t 313 315 0;\n\tsetAttr \".ed[996:1161]\" 313 316 0 316 315 0 315 317 0 317 312 0 317 318 0 318 312 0\n\t\t 318 314 0 318 319 0 319 314 0 318 320 0 320 319 0 320 321 0 321 319 0 317 322 0 322 318 0\n\t\t 322 320 0 322 10069 0 10069 320 0 10069 10070 0 10070 320 0 10070 321 0 10070 325 0\n\t\t 325 321 0 325 324 0 324 326 0 326 325 0 326 327 0 327 325 0 324 323 0 323 328 0 328 324 0\n\t\t 328 326 0 328 9018 0 9018 326 0 9018 9019 0 9019 326 0 9019 327 0 9019 355 0 355 327 0\n\t\t 321 331 0 331 319 0 331 332 0 332 319 0 332 314 0 332 333 0 333 314 0 333 311 0 333 334 0\n\t\t 334 311 0 332 335 0 335 333 0 335 336 0 336 333 0 336 334 0 336 337 0 337 334 0 338 335 0\n\t\t 332 338 0 331 338 0 339 338 0 331 339 0 331 340 0 340 339 0 321 340 0 325 340 0 341 340 0\n\t\t 325 341 0 327 341 0 12151 341 0 327 12151 0 355 12151 0 12151 356 0 356 341 0 356 343 0\n\t\t 343 341 0 343 339 0 340 343 0 344 336 0 335 344 0 344 337 0 335 345 0 345 344 0 338 345 0\n\t\t 344 346 0 346 337 0 347 338 0 339 347 0 347 345 0 339 348 0 348 347 0 343 348 0 349 343 0\n\t\t 356 349 0 349 348 0 356 350 0 350 349 0 34 9043 0 9043 351 0 351 34 0 351 37 0 25 351 0\n\t\t 351 352 0 352 37 0 25 352 0 352 40 0 352 353 0 353 40 0 353 41 0 29 353 0 352 29 0\n\t\t 352 27 0 353 354 0 354 41 0 29 354 0 354 44 0 31 354 0 316 98 0 97 316 0 97 315 0\n\t\t 101 315 0 101 317 0 103 317 0 103 322 0 9637 322 0 9637 10069 0 323 107 0 109 323 0\n\t\t 109 328 0 371 328 0 371 9018 0 12342 11400 0 11400 11399 0 11399 12342 0 11399 342 0\n\t\t 342 12342 0 12152 342 0 11399 12152 0 11399 11364 0 11364 12152 0 8862 11400 0 12342 8862 0\n\t\t 12342 330 0 330 8862 0 330 329 0 329 8862 0 329 8863 0 8863 8862 0 11364 11494 0\n\t\t 11494 12152 0 11494 359 0 359 12152 0 329 360 0 360 8863 0 360 12065 0 12065 8863 0\n\t\t 8671 12065 0 360 8671 0 360 8815 0 8815 8671 0 8673 8671 0 8815 8673 0 8815 364 0\n\t\t 364 8673 0 8686 8673 0 364 8686 0 364 366 0;\n\tsetAttr \".ed[1162:1327]\" 366 8686 0 2751 8686 0 366 2751 0 11494 2751 0 2751 359 0\n\t\t 366 64 0 64 2751 0 67 8815 0 360 67 0 360 367 0 367 67 0 329 367 0 70 67 0 367 70 0\n\t\t 367 368 0 368 70 0 12148 70 0 368 12148 0 368 17 0 17 12148 0 118 368 0 367 118 0\n\t\t 118 17 0 367 8832 0 8832 118 0 367 8833 0 8833 8832 0 118 18 0 18 17 0 329 8833 0\n\t\t 64 372 0 372 2751 0 372 373 0 373 2751 0 373 359 0 8854 8855 0 8855 375 0 375 8854 0\n\t\t 375 377 0 377 8854 0 378 377 0 375 378 0 375 379 0 379 378 0 379 380 0 380 378 0\n\t\t 380 381 0 381 378 0 382 381 0 380 382 0 380 383 0 383 382 0 384 382 0 383 384 0 383 385 0\n\t\t 385 384 0 8855 11928 0 11928 375 0 387 386 0 386 376 0 376 387 0 376 388 0 388 387 0\n\t\t 387 389 0 389 386 0 389 11815 0 11815 386 0 11812 389 0 387 11812 0 387 11813 0 11813 11812 0\n\t\t 388 11813 0 388 12299 0 12299 11813 0 389 393 0 393 11815 0 11812 393 0 393 8958 0\n\t\t 8958 11815 0 11812 395 0 395 393 0 396 11928 0 11928 390 0 390 396 0 390 397 0 397 396 0\n\t\t 390 394 0 394 397 0 396 375 0 398 11762 0 11762 9085 0 9085 398 0 9085 399 0 399 398 0\n\t\t 398 379 0 379 11762 0 375 11762 0 398 380 0 398 400 0 400 380 0 399 400 0 399 401 0\n\t\t 401 400 0 402 400 0 401 402 0 401 403 0 403 402 0 402 383 0 383 400 0 402 385 0 402 404 0\n\t\t 404 385 0 403 404 0 403 405 0 405 404 0 9085 406 0 406 399 0 394 9086 0 9086 397 0\n\t\t 394 8959 0 8959 9086 0 8959 9270 0 9270 9086 0 8959 9340 0 9340 9270 0 9340 410 0\n\t\t 410 9270 0 411 408 0 408 9289 0 9289 411 0 9289 412 0 412 411 0 412 413 0 413 411 0\n\t\t 413 414 0 414 411 0 415 414 0 413 415 0 413 416 0 416 415 0 417 415 0 416 417 0 416 418 0\n\t\t 418 417 0 9340 9237 0 9237 410 0 420 419 0 419 409 0 409 420 0 409 421 0 421 420 0\n\t\t 409 407 0 407 421 0 421 422 0 422 420 0 422 423 0 423 420 0 9237 9366 0 9366 410 0\n\t\t 9289 424 0 424 412 0 9569 9366 0 9237 9569 0 9237 9238 0 9238 9569 0 427 424 0;\n\tsetAttr \".ed[1328:1493]\" 424 425 0 425 427 0 427 412 0 425 428 0 428 427 0 428 429 0\n\t\t 429 427 0 429 430 0 430 427 0 431 430 0 429 431 0 431 416 0 416 430 0 431 418 0 429 432 0\n\t\t 432 431 0 433 431 0 432 433 0 433 418 0 432 434 0 434 433 0 430 412 0 430 413 0 435 423 0\n\t\t 422 435 0 436 423 0 435 436 0 435 437 0 437 436 0 742 437 0 435 742 0 435 12255 0\n\t\t 12255 742 0 435 439 0 439 12255 0 422 439 0 440 439 0 422 440 0 741 439 0 440 741 0\n\t\t 741 12255 0 440 9759 0 9759 741 0 9760 9759 0 440 9760 0 440 443 0 443 9760 0 440 444 0\n\t\t 444 443 0 422 444 0 444 395 0 395 443 0 443 744 0 744 9760 0 395 744 0 436 420 0\n\t\t 436 445 0 445 420 0 445 419 0 445 426 0 426 419 0 444 393 0 444 446 0 446 393 0 422 446 0\n\t\t 421 446 0 407 446 0 446 8958 0 407 8958 0 11812 744 0 656 12806 0 12806 447 0 447 656 0\n\t\t 447 449 0 449 656 0 449 450 0 450 656 0 450 655 0 655 656 0 658 655 0 450 658 0 450 451 0\n\t\t 451 658 0 451 452 0 452 658 0 452 12535 0 12535 658 0 660 12535 0 452 660 0 452 454 0\n\t\t 454 660 0 454 455 0 455 660 0 455 10332 0 10332 660 0 10333 10332 0 455 10333 0 455 374 0\n\t\t 374 10333 0 447 458 0 458 449 0 458 459 0 459 449 0 460 450 0 449 460 0 459 460 0\n\t\t 460 451 0 460 461 0 461 451 0 462 452 0 451 462 0 461 462 0 462 454 0 462 463 0 463 454 0\n\t\t 464 455 0 454 464 0 463 464 0 464 374 0 464 8856 0 8856 374 0 458 465 0 465 459 0\n\t\t 465 466 0 466 459 0 466 460 0 465 467 0 467 466 0 467 468 0 468 466 0 467 469 0 469 468 0\n\t\t 469 470 0 470 468 0 469 471 0 471 470 0 471 472 0 472 470 0 473 468 0 470 473 0 470 474 0\n\t\t 474 473 0 472 474 0 472 475 0 475 474 0 476 474 0 475 476 0 475 477 0 477 476 0 476 478 0\n\t\t 478 474 0 478 473 0 479 478 0 476 479 0 476 480 0 480 479 0 477 480 0 477 481 0 481 480 0\n\t\t 482 480 0 480 9855 0 9855 482 0 9855 483 0 483 482 0 482 484 0 484 480 0;\n\tsetAttr \".ed[1494:1659]\" 484 479 0 485 484 0 482 485 0 482 486 0 486 485 0 483 486 0\n\t\t 483 746 0 746 486 0 483 11059 0 11059 746 0 478 488 0 488 473 0 489 488 0 478 489 0\n\t\t 479 489 0 489 462 0 462 488 0 461 488 0 490 488 0 461 490 0 490 473 0 490 468 0 490 466 0\n\t\t 490 460 0 489 463 0 489 491 0 491 463 0 484 491 0 491 479 0 491 464 0 491 492 0 492 464 0\n\t\t 484 492 0 485 492 0 11969 492 0 485 11969 0 485 12300 0 12300 11969 0 11969 8856 0\n\t\t 8856 492 0 12421 12300 0 485 12421 0 486 12421 0 746 12421 0 494 496 0 496 495 0\n\t\t 495 494 0 495 497 0 497 494 0 497 498 0 498 494 0 498 499 0 499 494 0 500 499 0 498 500 0\n\t\t 498 501 0 501 500 0 501 502 0 502 500 0 502 503 0 503 500 0 504 503 0 502 504 0 502 505 0\n\t\t 505 504 0 505 506 0 506 504 0 506 507 0 507 504 0 10931 507 0 506 10931 0 506 509 0\n\t\t 509 10931 0 510 508 0 508 10932 0 10932 510 0 10932 10942 0 10942 510 0 512 10941 0\n\t\t 10941 511 0 511 512 0 511 513 0 513 512 0 512 11027 0 11027 514 0 514 512 0 514 10982 0\n\t\t 10982 512 0 503 516 0 516 500 0 504 517 0 517 503 0 517 516 0 517 518 0 518 516 0\n\t\t 518 519 0 519 516 0 520 516 0 519 520 0 519 521 0 521 520 0 522 520 0 521 522 0 522 499 0\n\t\t 499 520 0 522 494 0 522 523 0 523 494 0 523 496 0 523 524 0 524 496 0 523 525 0 525 524 0\n\t\t 525 526 0 526 524 0 527 525 0 523 527 0 522 527 0 521 527 0 500 520 0 528 518 0 517 528 0\n\t\t 517 529 0 529 528 0 530 528 0 529 530 0 529 531 0 531 530 0 532 530 0 531 532 0 531 533 0\n\t\t 533 532 0 531 508 0 508 533 0 510 533 0 534 533 0 533 10941 0 10941 534 0 512 534 0\n\t\t 534 535 0 535 533 0 535 532 0 536 535 0 534 536 0 534 537 0 537 536 0 512 537 0 10982 537 0\n\t\t 10931 531 0 531 507 0 529 507 0 529 504 0 538 530 0 532 538 0 535 538 0 536 538 0\n\t\t 536 539 0 539 538 0 540 539 0 536 540 0 536 541 0 541 540 0 537 541 0 542 540 0 541 542 0\n\t\t 541 543 0;\n\tsetAttr \".ed[1660:1825]\" 543 542 0 544 537 0 537 515 0 515 544 0 544 541 0 544 543 0\n\t\t 515 545 0 545 544 0 515 514 0 514 545 0 514 546 0 546 545 0 514 683 0 683 546 0 11027 683 0\n\t\t 11027 11581 0 11581 683 0 680 547 0 547 513 0 513 680 0 511 680 0 679 9144 0 9144 10942 0\n\t\t 10942 679 0 10932 679 0 9093 509 0 506 9093 0 506 677 0 677 9093 0 505 677 0 505 12481 0\n\t\t 12481 677 0 676 12481 0 505 676 0 502 676 0 501 676 0 501 12459 0 12459 676 0 673 12459 0\n\t\t 501 673 0 498 673 0 497 673 0 497 671 0 671 673 0 12449 671 0 497 12449 0 495 12449 0\n\t\t 577 12958 0 12958 604 0 604 577 0 604 602 0 602 577 0 602 12885 0 12885 577 0 12885 10771 0\n\t\t 10771 577 0 10763 10771 0 12885 10763 0 12885 12851 0 12851 10763 0 12851 10738 0\n\t\t 10738 10763 0 10738 10754 0 10754 10763 0 10716 10754 0 10738 10716 0 10738 10692 0\n\t\t 10692 10716 0 10692 10693 0 10693 10716 0 10693 10519 0 10519 10716 0 10520 10519 0\n\t\t 10693 10520 0 10693 10958 0 10958 10520 0 10958 611 0 611 10520 0 611 10541 0 10541 10520 0\n\t\t 585 10541 0 611 585 0 611 10554 0 10554 585 0 10554 10555 0 10555 585 0 10555 13130 0\n\t\t 13130 585 0 377 10481 0 10481 8854 0 10481 457 0 457 8854 0 9946 10481 0 377 9946 0\n\t\t 378 9946 0 9945 378 0 381 9945 0 381 666 0 666 9945 0 12683 666 0 381 12683 0 382 12683 0\n\t\t 668 12683 0 382 668 0 384 668 0 683 12351 0 12351 546 0 570 546 0 12351 570 0 12351 12912 0\n\t\t 12912 570 0 570 571 0 571 546 0 571 545 0 571 572 0 572 545 0 572 544 0 572 543 0\n\t\t 627 625 0 625 10461 0 10461 627 0 10461 10462 0 10462 627 0 574 573 0 573 10570 0\n\t\t 10570 574 0 10570 10571 0 10571 574 0 12957 576 0 576 575 0 575 12957 0 12957 553 0\n\t\t 553 576 0 553 10548 0 10548 576 0 553 554 0 554 10548 0 554 10511 0 10511 10548 0\n\t\t 554 556 0 556 10511 0 556 580 0 580 10511 0 556 557 0 557 580 0 557 581 0 581 580 0\n\t\t 557 560 0 560 581 0 560 582 0 582 581 0 560 561 0 561 582 0 561 583 0 583 582 0 561 562 0\n\t\t 562 583 0 562 10662 0 10662 583 0 562 13129 0 13129 10662 0 13129 586 0 586 10662 0\n\t\t 13129 565 0 565 586 0 565 587 0;\n\tsetAttr \".ed[1826:1991]\" 587 586 0 10663 10670 0 10670 588 0 588 10663 0 588 10613 0\n\t\t 10613 10663 0 589 10616 0 10616 590 0 590 589 0 590 639 0 639 589 0 591 584 0 584 10663 0\n\t\t 10663 591 0 10613 591 0 10776 584 0 591 10776 0 10208 589 0 639 10208 0 639 592 0\n\t\t 592 10208 0 591 10209 0 10209 10776 0 594 593 0 593 10208 0 10208 594 0 592 594 0\n\t\t 10251 593 0 594 10251 0 594 596 0 596 10251 0 10209 595 0 595 10776 0 595 10739 0\n\t\t 10739 10776 0 10717 10739 0 595 10717 0 595 10296 0 10296 10717 0 634 597 0 597 10251 0\n\t\t 10251 634 0 596 634 0 10296 598 0 598 10717 0 10297 597 0 634 10297 0 634 631 0 631 10297 0\n\t\t 598 10512 0 10512 10717 0 579 10512 0 598 579 0 598 599 0 599 579 0 600 10072 0 10072 10297 0\n\t\t 10297 600 0 631 600 0 599 10073 0 10073 579 0 601 10072 0 600 601 0 600 628 0 628 601 0\n\t\t 10073 578 0 578 579 0 10571 578 0 10073 10571 0 10073 574 0 10462 601 0 601 627 0\n\t\t 628 627 0 10012 9990 0 9990 616 0 616 10012 0 616 552 0 552 10012 0 10012 10013 0\n\t\t 10013 9990 0 10013 9991 0 9991 9990 0 616 617 0 617 552 0 617 606 0 606 552 0 617 620 0\n\t\t 620 606 0 620 555 0 555 606 0 620 621 0 621 555 0 621 558 0 558 555 0 621 10922 0\n\t\t 10922 558 0 10922 559 0 559 558 0 10922 10923 0 10923 559 0 10923 609 0 609 559 0\n\t\t 10923 10948 0 10948 609 0 10948 10959 0 10959 609 0 10948 10949 0 10949 10959 0 10949 563 0\n\t\t 563 10959 0 10949 623 0 623 563 0 623 564 0 564 563 0 603 605 0 605 613 0 613 603 0\n\t\t 613 614 0 614 603 0 614 615 0 615 603 0 615 11199 0 11199 603 0 11200 11199 0 615 11200 0\n\t\t 615 618 0 618 11200 0 618 619 0 619 11200 0 619 11083 0 11083 11200 0 11084 11083 0\n\t\t 619 11084 0 619 622 0 622 11084 0 622 530 0 530 11084 0 530 607 0 607 11084 0 608 607 0\n\t\t 530 608 0 538 608 0 539 608 0 539 610 0 610 608 0 612 610 0 539 612 0 540 612 0 542 612 0\n\t\t 542 13200 0 13200 612 0 519 619 0 618 519 0 519 622 0 618 521 0 518 622 0 518 530 0\n\t\t 618 527 0 615 527 0 614 527 0 614 525 0 614 526 0 613 526 0 624 626 0 626 625 0 625 624 0;\n\tsetAttr \".ed[1992:2157]\" 627 624 0 628 624 0 628 629 0 629 624 0 630 629 0 628 630 0\n\t\t 600 630 0 631 630 0 631 11610 0 11610 630 0 633 632 0 632 631 0 631 633 0 634 633 0\n\t\t 596 633 0 596 635 0 635 633 0 636 635 0 596 636 0 594 636 0 592 636 0 592 637 0 637 636 0\n\t\t 638 637 0 592 638 0 639 638 0 590 638 0 590 640 0 640 638 0 641 630 0 11610 641 0\n\t\t 11610 642 0 642 641 0 641 643 0 643 630 0 643 629 0 643 644 0 644 629 0 644 624 0\n\t\t 644 645 0 645 624 0 645 626 0 575 551 0 551 12957 0 9291 12491 0 12491 13272 0 13272 9291 0\n\t\t 13272 654 0 654 9291 0 654 657 0 657 9291 0 657 9166 0 9166 9291 0 9167 9166 0 657 9167 0\n\t\t 657 13288 0 13288 9167 0 13288 9408 0 9408 9167 0 9408 9197 0 9197 9167 0 11385 9197 0\n\t\t 9408 11385 0 9408 9409 0 9409 11385 0 9409 9395 0 9395 11385 0 9395 11386 0 11386 11385 0\n\t\t 678 11386 0 9395 678 0 9395 9370 0 9370 678 0 12415 12414 0 12414 9369 0 9369 12415 0\n\t\t 9369 9371 0 9371 12415 0 681 12416 0 12416 9372 0 9372 681 0 9372 9524 0 9524 681 0\n\t\t 9078 9525 0 9525 9530 0 9530 9078 0 9530 9040 0 9040 9078 0 684 9040 0 9530 684 0\n\t\t 9530 652 0 652 684 0 652 669 0 669 684 0 669 12905 0 12905 684 0 11509 11505 0 11505 11504 0\n\t\t 11504 11509 0 11504 11510 0 11510 11509 0 11509 646 0 646 11505 0 646 448 0 448 11505 0\n\t\t 11504 11518 0 11518 11510 0 11518 648 0 648 11510 0 11518 453 0 453 648 0 453 659 0\n\t\t 659 648 0 453 12536 0 12536 659 0 12536 661 0 661 659 0 12536 456 0 456 661 0 456 662 0\n\t\t 662 661 0 663 662 0 456 663 0 456 10334 0 10334 663 0 664 663 0 10334 664 0 10334 566 0\n\t\t 566 664 0 566 567 0 567 664 0 567 665 0 665 664 0 567 12675 0 12675 665 0 12675 667 0\n\t\t 667 665 0 12675 568 0 568 667 0 568 12476 0 12476 667 0 568 12684 0 12684 12476 0\n\t\t 12684 12477 0 12477 12476 0 670 9264 0 9264 550 0 550 670 0 550 647 0 647 670 0 670 672 0\n\t\t 672 9264 0 672 9265 0 9265 9264 0 672 674 0 674 9265 0 674 549 0 549 9265 0 674 675 0\n\t\t 675 549 0 675 12460 0 12460 549 0 675 649 0 649 12460 0 649 548 0 548 12460 0;\n\tsetAttr \".ed[2158:2323]\" 649 650 0 650 548 0 650 9091 0 9091 548 0 650 12413 0\n\t\t 12413 9091 0 12413 9092 0 9092 9091 0 12413 651 0 651 9092 0 651 9143 0 9143 9092 0\n\t\t 651 9077 0 9077 9143 0 9077 11582 0 11582 9143 0 9077 682 0 682 11582 0 682 12350 0\n\t\t 12350 11582 0 682 9041 0 9041 12350 0 9041 569 0 569 12350 0 9041 653 0 653 569 0\n\t\t 653 685 0 685 569 0 686 688 0 688 687 0 687 686 0 687 689 0 689 686 0 687 690 0 690 689 0\n\t\t 690 691 0 691 689 0 692 690 0 687 692 0 687 693 0 693 692 0 688 693 0 688 694 0 694 693 0\n\t\t 695 693 0 694 695 0 694 696 0 696 695 0 695 697 0 697 693 0 697 692 0 10401 697 0\n\t\t 695 10401 0 695 10376 0 10376 10401 0 696 10376 0 696 700 0 700 10376 0 701 699 0\n\t\t 699 700 0 700 701 0 700 702 0 702 701 0 701 703 0 703 699 0 703 698 0 698 699 0 11060 703 0\n\t\t 701 11060 0 701 8784 0 8784 11060 0 702 8784 0 702 730 0 730 8784 0 705 696 0 694 705 0\n\t\t 694 706 0 706 705 0 688 706 0 688 707 0 707 706 0 686 707 0 686 708 0 708 707 0 709 706 0\n\t\t 707 709 0 707 710 0 710 709 0 708 710 0 708 711 0 711 710 0 712 705 0 706 712 0 709 712 0\n\t\t 712 713 0 713 705 0 713 714 0 714 705 0 714 696 0 714 700 0 714 715 0 715 700 0 715 702 0\n\t\t 715 9106 0 9106 702 0 9106 730 0 9107 9106 0 715 9107 0 715 718 0 718 9107 0 714 718 0\n\t\t 713 718 0 710 719 0 719 709 0 719 720 0 720 709 0 720 712 0 711 721 0 721 710 0 721 719 0\n\t\t 712 722 0 722 713 0 720 722 0 722 723 0 723 713 0 723 718 0 718 724 0 724 9107 0\n\t\t 723 724 0 724 725 0 725 9107 0 411 726 0 726 408 0 726 406 0 406 408 0 726 399 0\n\t\t 727 726 0 411 727 0 727 399 0 414 727 0 728 727 0 414 728 0 415 728 0 728 403 0 403 727 0\n\t\t 401 727 0 729 728 0 415 729 0 417 729 0 729 405 0 405 728 0 690 472 0 472 691 0 471 691 0\n\t\t 690 475 0 692 475 0 692 477 0 697 477 0 697 481 0 10401 481 0 9855 698 0 698 483 0\n\t\t 703 483 0 703 11059 0 11060 11059 0 8783 716 0;\n\tsetAttr \".ed[2324:2489]\" 716 2828 0 2828 8783 0 2828 8758 0 8758 8783 0 716 717 0\n\t\t 717 2828 0 717 9547 0 9547 2828 0 8758 8760 0 8760 8783 0 8760 734 0 734 8783 0 704 734 0\n\t\t 8760 704 0 8760 9517 0 9517 704 0 9549 9547 0 717 9549 0 717 737 0 737 9549 0 738 704 0\n\t\t 9517 738 0 9517 9518 0 9518 738 0 9518 10493 0 10493 738 0 10493 441 0 441 738 0\n\t\t 10493 12231 0 12231 441 0 12231 12254 0 12254 441 0 12231 10999 0 10999 12254 0 10999 438 0\n\t\t 438 12254 0 10999 2826 0 2826 438 0 2826 9549 0 737 2826 0 2826 12261 0 12261 438 0\n\t\t 441 442 0 442 738 0 442 743 0 743 738 0 743 704 0 442 12153 0 12153 743 0 12153 745 0\n\t\t 745 743 0 12153 391 0 391 745 0 391 392 0 392 745 0 493 743 0 745 493 0 392 493 0\n\t\t 493 12405 0 12405 743 0 12405 487 0 487 743 0 392 747 0 747 493 0 487 704 0 748 12261 0\n\t\t 2826 748 0 2826 749 0 749 748 0 737 749 0 8933 8949 0 8949 12186 0 12186 8933 0 12186 12159 0\n\t\t 12159 8933 0 8949 13302 0 13302 12186 0 13302 13298 0 13298 12186 0 752 12186 0 13298 752 0\n\t\t 752 12718 0 12718 12186 0 12718 12319 0 12319 12186 0 752 11531 0 11531 12718 0 752 754 0\n\t\t 754 11531 0 754 8949 0 8949 12679 0 12679 754 0 12679 9557 0 9557 754 0 754 11948 0\n\t\t 11948 11531 0 2924 757 0 757 12719 0 12719 2924 0 758 11948 0 754 758 0 9557 758 0\n\t\t 752 13320 0 13320 754 0 13298 13320 0 13320 13310 0 13310 754 0 13310 13302 0 8949 13310 0\n\t\t 12423 11531 0 11948 12423 0 11948 11950 0 11950 12423 0 13318 13301 0 13301 13306 0\n\t\t 13306 13318 0 13306 13304 0 13304 13318 0 13317 13305 0 13305 13309 0 13309 13317 0\n\t\t 13309 13321 0 13321 13317 0 13300 763 0 763 759 0 759 13300 0 759 13299 0 13299 13300 0\n\t\t 13307 766 0 766 765 0 765 13307 0 765 751 0 751 13307 0 767 762 0 762 13303 0 13303 767 0\n\t\t 13303 764 0 764 767 0 13065 12998 0 12998 11043 0 11043 13065 0 11043 12503 0 12503 13065 0\n\t\t 9597 12503 0 11043 9597 0 11043 12540 0 12540 9597 0 11043 770 0 770 12540 0 11223 770 0\n\t\t 11043 11223 0 11043 11226 0 11226 11223 0 12596 770 0 11223 12596 0 771 770 0 12596 771 0\n\t\t 12506 12503 0 12503 771 0 771 12506 0 771 12588 0 12588 12506 0 12596 11334 0 11334 771 0\n\t\t 11224 773 0 773 12595 0;\n\tsetAttr \".ed[2490:2655]\" 12595 11224 0 774 12588 0 771 774 0 11334 774 0 9492 770 0\n\t\t 771 9492 0 9492 12540 0 771 9648 0 9648 9492 0 12503 9648 0 9597 9648 0 12596 12598 0\n\t\t 12598 11334 0 12598 11336 0 11336 11334 0 9490 12623 0 12623 9599 0 9599 9490 0 9599 12649 0\n\t\t 12649 9490 0 9489 9491 0 9491 9647 0 9647 9489 0 9647 12624 0 12624 9489 0 12650 12541 0\n\t\t 12541 780 0 780 12650 0 780 778 0 778 12650 0 9598 9596 0 9596 781 0 781 9598 0 781 777 0\n\t\t 777 9598 0 776 779 0 779 782 0 782 776 0 782 783 0 783 776 0 9570 9571 0 9571 9644 0\n\t\t 9644 9570 0 9644 9612 0 9612 9570 0 9627 9570 0 9612 9627 0 9612 9613 0 9613 9627 0\n\t\t 9617 9627 0 9613 9617 0 9613 962 0 962 9617 0 9618 9617 0 962 9618 0 962 11520 0\n\t\t 11520 9618 0 9687 9618 0 11520 9687 0 11520 11519 0 11519 9687 0 9662 9687 0 11519 9662 0\n\t\t 11519 12753 0 12753 9662 0 9663 9662 0 12753 9663 0 12753 12754 0 12754 9663 0 9645 9644 0\n\t\t 9571 9645 0 9571 9621 0 9621 9645 0 986 9645 0 9621 986 0 9621 10234 0 10234 986 0\n\t\t 984 986 0 10234 984 0 10234 798 0 798 984 0 982 984 0 798 982 0 798 799 0 799 982 0\n\t\t 12959 982 0 799 12959 0 799 10161 0 10161 12959 0 11773 12959 0 10161 11773 0 10161 10162 0\n\t\t 10162 11773 0 11774 11773 0 10162 11774 0 10162 802 0 802 11774 0 976 11774 0 802 976 0\n\t\t 802 803 0 803 976 0 12926 976 0 803 12926 0 803 804 0 804 12926 0 12916 12926 0 804 12916 0\n\t\t 804 806 0 806 12916 0 12801 12916 0 806 12801 0 806 9785 0 9785 12801 0 12754 12801 0\n\t\t 9785 12754 0 9785 9663 0 794 807 0 807 847 0 847 794 0 847 817 0 817 794 0 807 9784 0\n\t\t 9784 845 0 845 807 0 845 847 0 9784 10112 0 10112 809 0 809 9784 0 809 845 0 10112 10150 0\n\t\t 10150 810 0 810 10112 0 810 809 0 10150 10149 0 10149 811 0 811 10150 0 811 810 0\n\t\t 840 811 0 10149 840 0 10149 801 0 801 840 0 837 840 0 801 837 0 801 800 0 800 837 0\n\t\t 835 837 0 800 835 0 800 10335 0 10335 835 0 812 835 0 10335 812 0 10335 10317 0 10317 812 0\n\t\t 832 812 0 10317 832 0 10317 797 0 797 832 0 830 832 0 797 830 0 797 796 0 796 830 0\n\t\t 813 830 0 796 813 0 796 786 0 786 813 0 814 813 0;\n\tsetAttr \".ed[2656:2821]\" 786 814 0 786 784 0 784 814 0 815 814 0 784 815 0 784 788 0\n\t\t 788 815 0 816 815 0 788 816 0 788 790 0 790 816 0 828 816 0 790 828 0 790 791 0 791 828 0\n\t\t 954 828 0 791 954 0 791 792 0 792 954 0 956 954 0 792 956 0 792 793 0 793 956 0 817 956 0\n\t\t 793 817 0 793 794 0 818 819 0 819 813 0 813 818 0 814 818 0 820 818 0 814 820 0 815 820 0\n\t\t 820 821 0 821 818 0 821 822 0 822 818 0 822 819 0 822 823 0 823 819 0 824 820 0 815 824 0\n\t\t 816 824 0 824 825 0 825 820 0 825 821 0 824 826 0 826 825 0 816 827 0 827 824 0 828 827 0\n\t\t 827 829 0 829 824 0 819 830 0 819 831 0 831 830 0 823 831 0 831 832 0 831 833 0 833 832 0\n\t\t 833 812 0 833 834 0 834 812 0 834 835 0 834 836 0 836 835 0 836 837 0 836 838 0 838 837 0\n\t\t 839 837 0 838 839 0 839 840 0 839 841 0 841 840 0 841 811 0 841 842 0 842 811 0 842 810 0\n\t\t 842 843 0 843 810 0 843 809 0 843 844 0 844 809 0 844 845 0 844 846 0 846 845 0 846 847 0\n\t\t 846 848 0 848 847 0 849 847 0 848 849 0 849 958 0 958 847 0 849 850 0 850 958 0 958 817 0\n\t\t 846 851 0 851 848 0 851 852 0 852 848 0 852 849 0 852 853 0 853 849 0 844 854 0 854 846 0\n\t\t 854 851 0 843 855 0 855 844 0 855 854 0 856 855 0 843 856 0 842 856 0 852 857 0 857 853 0\n\t\t 857 858 0 858 853 0 851 859 0 859 852 0 859 857 0 859 10467 0 10467 857 0 10467 9070 0\n\t\t 9070 857 0 9070 858 0 9070 9071 0 9071 858 0 854 861 0 861 851 0 861 859 0 861 10468 0\n\t\t 10468 859 0 10468 10467 0 855 863 0 863 854 0 863 861 0 863 1007 0 1007 861 0 1007 10468 0\n\t\t 856 864 0 864 855 0 864 863 0 864 12090 0 12090 863 0 12090 1007 0 866 856 0 842 866 0\n\t\t 841 866 0 867 866 0 841 867 0 839 867 0 12439 867 0 839 12439 0 839 869 0 869 12439 0\n\t\t 1041 12090 0 864 1041 0 864 13071 0 13071 1041 0 11589 13071 0 864 11589 0 856 11589 0\n\t\t 856 871 0 871 11589 0 866 871 0 867 871 0 872 869 0;\n\tsetAttr \".ed[2822:2987]\" 839 872 0 838 872 0 873 872 0 838 873 0 836 873 0 874 873 0\n\t\t 836 874 0 834 874 0 875 874 0 834 875 0 833 875 0 876 875 0 833 876 0 831 876 0 823 876 0\n\t\t 874 877 0 877 873 0 877 878 0 878 873 0 877 8667 0 8667 878 0 8667 8680 0 8680 878 0\n\t\t 875 879 0 879 874 0 879 877 0 879 8666 0 8666 877 0 8666 8667 0 876 880 0 880 875 0\n\t\t 880 879 0 880 10515 0 10515 879 0 10515 8666 0 823 882 0 882 876 0 882 880 0 883 882 0\n\t\t 823 883 0 822 883 0 884 883 0 822 884 0 821 884 0 884 11089 0 11089 883 0 11089 12120 0\n\t\t 12120 883 0 12120 882 0 12120 10516 0 10516 882 0 10516 880 0 10516 10515 0 887 884 0\n\t\t 821 887 0 825 887 0 11090 11089 0 884 11090 0 887 11090 0 8680 8684 0 8684 1044 0\n\t\t 1044 8680 0 1044 878 0 1044 13212 0 13212 878 0 13212 890 0 890 878 0 890 873 0 890 872 0\n\t\t 13212 11673 0 11673 890 0 890 869 0 11671 869 0 890 11671 0 11673 11671 0 11671 12439 0\n\t\t 12439 11619 0 11619 867 0 11619 871 0 11619 11587 0 11587 871 0 11587 11589 0 10965 1013 0\n\t\t 1013 10994 0 10994 10965 0 10994 10995 0 10995 10965 0 10966 10965 0 10995 10966 0\n\t\t 10995 1000 0 1000 10966 0 1016 10966 0 1000 1016 0 1000 895 0 895 1016 0 10888 10994 0\n\t\t 1013 10888 0 1013 8947 0 8947 10888 0 10700 10888 0 8947 10700 0 8947 10714 0 10714 10700 0\n\t\t 10701 10700 0 10714 10701 0 10714 10715 0 10715 10701 0 10766 10701 0 10715 10766 0\n\t\t 10715 9546 0 9546 10766 0 1045 10766 0 9546 1045 0 9546 1023 0 1023 1045 0 1042 1045 0\n\t\t 1023 1042 0 1023 9266 0 9266 1042 0 12081 1042 0 9266 12081 0 9266 9267 0 9267 12081 0\n\t\t 1006 12081 0 9267 1006 0 9267 903 0 903 1006 0 1008 1006 0 903 1008 0 903 1029 0\n\t\t 1029 1008 0 9964 1008 0 1029 9964 0 1029 9401 0 9401 9964 0 9965 9964 0 9401 9965 0\n\t\t 9401 12450 0 12450 9965 0 1011 9965 0 12450 1011 0 907 1011 0 12450 907 0 12450 1032 0\n\t\t 1032 907 0 908 907 0 1032 908 0 1032 12426 0 12426 908 0 910 912 0 912 911 0 911 910 0\n\t\t 911 913 0 913 910 0 914 911 0 912 914 0 912 915 0 915 914 0 916 914 0 915 916 0 915 917 0\n\t\t 917 916 0 918 916 0 917 918 0 917 919 0 919 918 0;\n\tsetAttr \".ed[2988:3153]\" 920 918 0 919 920 0 919 921 0 921 920 0 922 920 0 921 922 0\n\t\t 921 923 0 923 922 0 924 922 0 923 924 0 923 925 0 925 924 0 926 924 0 925 926 0 925 927 0\n\t\t 927 926 0 928 926 0 927 928 0 927 929 0 929 928 0 930 928 0 929 930 0 929 931 0 931 930 0\n\t\t 932 930 0 931 932 0 931 933 0 933 932 0 934 932 0 933 934 0 933 935 0 935 934 0 936 934 0\n\t\t 935 936 0 935 937 0 937 936 0 938 936 0 937 938 0 937 939 0 939 938 0 937 940 0 940 939 0\n\t\t 940 941 0 941 939 0 935 942 0 942 937 0 942 940 0 933 943 0 943 935 0 943 942 0 931 944 0\n\t\t 944 933 0 944 943 0 929 945 0 945 931 0 945 944 0 946 945 0 929 946 0 927 946 0 947 946 0\n\t\t 927 947 0 925 947 0 948 947 0 925 948 0 923 948 0 949 948 0 923 949 0 921 949 0 950 949 0\n\t\t 921 950 0 919 950 0 951 950 0 919 951 0 917 951 0 952 951 0 917 952 0 915 952 0 912 952 0\n\t\t 912 953 0 953 952 0 954 827 0 954 955 0 955 827 0 956 955 0 956 957 0 957 955 0 817 957 0\n\t\t 958 957 0 785 11245 0 11245 11244 0 11244 785 0 11244 787 0 787 785 0 11244 12456 0\n\t\t 12456 789 0 789 11244 0 789 787 0 12456 12304 0 12304 12722 0 12722 12456 0 12722 789 0\n\t\t 12304 12303 0 12303 966 0 966 12304 0 966 12722 0 12303 11525 0 11525 965 0 965 12303 0\n\t\t 965 966 0 11525 11526 0 11526 970 0 970 11525 0 970 965 0 11526 12281 0 12281 808 0\n\t\t 808 11526 0 808 970 0 12281 991 0 991 971 0 971 12281 0 971 808 0 991 11972 0 11972 805 0\n\t\t 805 991 0 805 971 0 11972 11973 0 11973 974 0 974 11972 0 974 805 0 11973 12580 0\n\t\t 12580 12943 0 12943 11973 0 12943 974 0 12580 990 0 990 978 0 978 12580 0 978 12943 0\n\t\t 977 978 0 990 977 0 990 12558 0 12558 977 0 12558 12430 0 12430 977 0 12430 980 0\n\t\t 980 977 0 12430 989 0 989 980 0 989 12475 0 12475 980 0 989 12440 0 12440 12474 0\n\t\t 12474 989 0 12474 12475 0 12440 12451 0 12451 12501 0 12501 12440 0 12501 12474 0\n\t\t 12451 988 0 988 795 0 795 12451 0 795 12501 0 988 11245 0 785 988 0 785 795 0 987 961 0\n\t\t 961 959 0;\n\tsetAttr \".ed[3154:3319]\" 959 987 0 960 987 0 959 960 0 960 12482 0 12482 987 0\n\t\t 985 987 0 12482 985 0 985 983 0 983 987 0 12429 987 0 983 12429 0 12429 981 0 981 987 0\n\t\t 981 12557 0 12557 987 0 981 979 0 979 12557 0 12557 975 0 975 987 0 973 987 0 975 973 0\n\t\t 973 972 0 972 987 0 12235 987 0 972 12235 0 12235 969 0 969 987 0 968 987 0 969 968 0\n\t\t 968 967 0 967 987 0 964 987 0 967 964 0 964 963 0 963 987 0 963 961 0 911 8830 0\n\t\t 8830 913 0 8830 8995 0 8995 913 0 8995 12288 0 12288 913 0 12288 993 0 993 913 0\n\t\t 12288 1015 0 1015 993 0 8831 8830 0 911 8831 0 914 8831 0 9476 8831 0 914 9476 0\n\t\t 916 9476 0 9037 9476 0 916 9037 0 918 9037 0 8749 9037 0 918 8749 0 920 8749 0 8750 8749 0\n\t\t 920 8750 0 922 8750 0 9500 8750 0 922 9500 0 924 9500 0 9253 9500 0 924 9253 0 926 9253 0\n\t\t 1028 9253 0 926 1028 0 928 1028 0 9376 1028 0 928 9376 0 930 9376 0 8896 9376 0 930 8896 0\n\t\t 932 8896 0 8897 8896 0 932 8897 0 934 8897 0 1033 8897 0 934 1033 0 936 1033 0 12484 1033 0\n\t\t 936 12484 0 938 12484 0 885 12138 0 12138 893 0 893 885 0 893 1001 0 1001 885 0 886 1001 0\n\t\t 893 886 0 893 892 0 892 886 0 892 896 0 896 886 0 896 881 0 881 886 0 896 897 0 897 881 0\n\t\t 897 1002 0 1002 881 0 897 899 0 899 1002 0 899 1003 0 1003 1002 0 899 901 0 901 1003 0\n\t\t 901 1004 0 1004 1003 0 885 888 0 888 12138 0 888 13025 0 13025 12138 0 901 12110 0\n\t\t 12110 1004 0 12110 8685 0 8685 1004 0 865 902 0 902 8841 0 8841 865 0 8841 12166 0\n\t\t 12166 865 0 8841 8842 0 8842 12166 0 8842 862 0 862 12166 0 8842 904 0 904 862 0\n\t\t 904 860 0 860 862 0 904 905 0 905 860 0 905 1009 0 1009 860 0 1010 1009 0 905 1010 0\n\t\t 905 12383 0 12383 1010 0 865 11752 0 11752 902 0 11752 11753 0 11753 902 0 1012 8946 0\n\t\t 8946 891 0 891 1012 0 891 1014 0 1014 1012 0 992 1014 0 891 992 0 891 894 0 894 992 0\n\t\t 12289 992 0 894 12289 0 894 12534 0 12534 12289 0 12534 1017 0 1017 12289 0 1017 1018 0\n\t\t 1018 12289 0 1019 8946 0 1012 1019 0 1012 1020 0 1020 1019 0 898 1019 0 1020 898 0;\n\tsetAttr \".ed[3320:3485]\" 1020 1021 0 1021 898 0 900 898 0 1021 900 0 1021 994 0\n\t\t 994 900 0 1022 900 0 994 1022 0 994 995 0 995 1022 0 995 996 0 996 1022 0 996 9521 0\n\t\t 9521 1022 0 996 1024 0 1024 9521 0 1024 1025 0 1025 9521 0 1026 1025 0 1024 1026 0\n\t\t 1024 1027 0 1027 1026 0 12458 1026 0 1027 12458 0 1027 9254 0 9254 12458 0 9400 12458 0\n\t\t 9254 9400 0 9254 1030 0 1030 9400 0 1031 9400 0 1030 1031 0 1030 997 0 997 1031 0\n\t\t 906 1031 0 997 906 0 997 998 0 998 906 0 12425 906 0 998 12425 0 998 12222 0 12222 12425 0\n\t\t 12222 999 0 999 12425 0 999 909 0 909 12425 0 868 11672 0 11672 11857 0 11857 868 0\n\t\t 11857 11617 0 11617 868 0 11617 11618 0 11618 868 0 11588 1036 0 1036 11616 0 11616 11588 0\n\t\t 11616 13314 0 13314 11588 0 1038 1037 0 1037 13313 0 13313 1038 0 13313 11728 0 11728 1038 0\n\t\t 870 1038 0 11728 870 0 11728 11729 0 11729 870 0 11751 870 0 11729 11751 0 11729 11754 0\n\t\t 11754 11751 0 11854 11856 0 11856 1034 0 1034 11854 0 1034 1043 0 1043 11854 0 11860 11855 0\n\t\t 11855 11674 0 11674 11860 0 11674 889 0 889 11860 0 11975 11860 0 889 11975 0 889 13211 0\n\t\t 13211 11975 0 12109 11975 0 13211 12109 0 13211 1005 0 1005 12109 0 1042 1040 0 1040 1045 0\n\t\t 1040 1046 0 1046 1045 0 1040 1035 0 1035 1046 0 1040 1047 0 1047 1035 0 1040 1039 0\n\t\t 1039 1047 0 1035 1048 0 1048 1046 0 1035 1049 0 1049 1048 0 1035 1050 0 1050 1049 0\n\t\t 11904 1053 0 1053 1052 0 1052 11904 0 1052 11424 0 11424 11904 0 1052 1055 0 1055 11424 0\n\t\t 1055 11425 0 11425 11424 0 1055 11415 0 11415 11425 0 11415 11472 0 11472 11425 0\n\t\t 11415 1059 0 1059 11472 0 1059 1237 0 1237 11472 0 1059 1060 0 1060 1237 0 1060 1240 0\n\t\t 1240 1237 0 1060 1061 0 1061 1240 0 1061 1238 0 1238 1240 0 1061 1075 0 1075 1238 0\n\t\t 1075 9952 0 9952 1238 0 11904 1257 0 1257 1053 0 1257 1062 0 1062 1053 0 1257 11523 0\n\t\t 11523 1062 0 11523 11307 0 11307 1062 0 11523 11524 0 11524 11307 0 11524 1064 0\n\t\t 1064 11307 0 11524 12546 0 12546 1064 0 12546 1065 0 1065 1064 0 12546 12581 0 12581 1065 0\n\t\t 12581 1067 0 1067 1065 0 12581 1249 0 1249 1067 0 1249 1068 0 1068 1067 0 1249 1247 0\n\t\t 1247 1068 0 1247 1069 0 1069 1068 0 1247 9660 0 9660 1069 0 9660 1070 0 1070 1069 0;\n\tsetAttr \".ed[3486:3651]\" 9660 9661 0 9661 1070 0 9661 1071 0 1071 1070 0 9661 12731 0\n\t\t 12731 1071 0 12731 11172 0 11172 1071 0 12731 9951 0 9951 11172 0 9951 1074 0 1074 11172 0\n\t\t 9951 9952 0 9952 1074 0 1075 1074 0 1116 11173 0 11173 11216 0 11216 1116 0 11216 1076 0\n\t\t 1076 1116 0 1116 1077 0 1077 11173 0 1077 1073 0 1073 11173 0 1077 1113 0 1113 1073 0\n\t\t 1113 11318 0 11318 1073 0 1113 1078 0 1078 11318 0 1078 11290 0 11290 11318 0 1078 1079 0\n\t\t 1079 11290 0 1079 11230 0 11230 11290 0 1079 1109 0 1109 11230 0 1109 11229 0 11229 11230 0\n\t\t 1109 1080 0 1080 11229 0 1080 11255 0 11255 11229 0 1080 1105 0 1105 11255 0 1105 11270 0\n\t\t 11270 11255 0 1105 1081 0 1081 11270 0 1081 11308 0 11308 11270 0 1081 1102 0 1102 11308 0\n\t\t 1102 1063 0 1063 11308 0 1102 1100 0 1100 1063 0 1100 11633 0 11633 1063 0 1100 1082 0\n\t\t 1082 11633 0 1082 11800 0 11800 11633 0 1082 1087 0 1087 11800 0 1087 11848 0 11848 11800 0\n\t\t 1087 1083 0 1083 11848 0 1083 11414 0 11414 11848 0 1083 1094 0 1094 11414 0 1094 1057 0\n\t\t 1057 11414 0 1094 1099 0 1099 1057 0 1099 11376 0 11376 1057 0 1099 1084 0 1084 11376 0\n\t\t 1084 11377 0 11377 11376 0 1084 1085 0 1085 11377 0 1085 11546 0 11546 11377 0 1085 1076 0\n\t\t 1076 11546 0 11216 11546 0 1086 1087 0 1082 1086 0 1082 1088 0 1088 1086 0 1086 1089 0\n\t\t 1089 1087 0 1089 1083 0 1090 1089 0 1086 1090 0 1086 1091 0 1091 1090 0 1088 1091 0\n\t\t 1088 1092 0 1092 1091 0 1089 1093 0 1093 1083 0 1093 1094 0 1090 1095 0 1095 1089 0\n\t\t 1095 1093 0 1095 1096 0 1096 1093 0 1097 1094 0 1093 1097 0 1097 1098 0 1098 1094 0\n\t\t 1098 1099 0 1100 1088 0 1100 1101 0 1101 1088 0 1101 1092 0 1102 1101 0 1102 1103 0\n\t\t 1103 1101 0 1081 1103 0 1081 1104 0 1104 1103 0 1105 1104 0 1105 1106 0 1106 1104 0\n\t\t 1080 1106 0 1080 1107 0 1107 1106 0 1108 1107 0 1080 1108 0 1109 1108 0 1109 1110 0\n\t\t 1110 1108 0 1079 1110 0 1079 1111 0 1111 1110 0 1078 1111 0 1078 1112 0 1112 1111 0\n\t\t 1113 1112 0 1113 1114 0 1114 1112 0 1077 1114 0 1077 1115 0 1115 1114 0 1116 1115 0\n\t\t 1116 1117 0 1117 1115 0 1118 1117 0 1116 1118 0 1116 1233 0 1233 1118 0 1076 1233 0\n\t\t 1233 1119 0 1119 1118 0 1120 1115 0 1117 1120 0 1117 1121 0 1121 1120 0 1118 1121 0;\n\tsetAttr \".ed[3652:3817]\" 1118 1122 0 1122 1121 0 1120 1123 0 1123 1115 0 1123 1114 0\n\t\t 1123 1124 0 1124 1114 0 1124 1112 0 1124 1125 0 1125 1112 0 1126 1121 0 1122 1126 0\n\t\t 1122 1127 0 1127 1126 0 1128 1120 0 1121 1128 0 1126 1128 0 11030 1128 0 1126 11030 0\n\t\t 1126 11031 0 11031 11030 0 1127 11031 0 1127 1284 0 1284 11031 0 1131 1123 0 1120 1131 0\n\t\t 1128 1131 0 11030 1282 0 1282 1128 0 1282 1131 0 1132 1124 0 1123 1132 0 1131 1132 0\n\t\t 1282 11034 0 11034 1131 0 11034 1132 0 1134 1125 0 1124 1134 0 1132 1134 0 11034 11035 0\n\t\t 11035 1132 0 11035 1134 0 11035 11051 0 11051 1134 0 11051 11053 0 11053 1134 0 11169 1134 0\n\t\t 11053 11169 0 11169 1125 0 11169 1139 0 1139 1125 0 11169 11154 0 11154 1139 0 11154 11085 0\n\t\t 11085 1139 0 11085 1142 0 1142 1139 0 11085 11087 0 11087 1142 0 1108 1142 0 11087 1108 0\n\t\t 11087 1144 0 1144 1108 0 1110 1142 0 1110 1145 0 1145 1142 0 1145 1139 0 1111 1145 0\n\t\t 1111 1125 0 1125 1145 0 1144 1146 0 1146 1108 0 1146 1107 0 1146 1147 0 1147 1107 0\n\t\t 1147 1106 0 1147 1148 0 1148 1106 0 1148 1104 0 1148 1149 0 1149 1104 0 1149 1103 0\n\t\t 1149 1150 0 1150 1103 0 1150 1101 0 1150 1092 0 1151 1148 0 1147 1151 0 1147 1152 0\n\t\t 1152 1151 0 8859 1151 0 1152 8859 0 1152 10749 0 10749 8859 0 1154 1149 0 1148 1154 0\n\t\t 1151 1154 0 8859 8858 0 8858 1151 0 8858 1154 0 1155 1150 0 1149 1155 0 1154 1155 0\n\t\t 8858 8988 0 8988 1154 0 8988 1155 0 1156 1092 0 1150 1156 0 1155 1156 0 1156 1157 0\n\t\t 1157 1092 0 1157 1091 0 1157 1158 0 1158 1091 0 1158 1090 0 8927 1158 0 1157 8927 0\n\t\t 1157 8928 0 8928 8927 0 1156 8928 0 1156 12275 0 12275 8928 0 8988 12275 0 12275 1155 0\n\t\t 1158 1160 0 1160 1090 0 1160 1095 0 12327 1160 0 1158 12327 0 8927 12327 0 1152 1315 0\n\t\t 1315 10749 0 1152 12362 0 12362 1315 0 1163 12362 0 1152 1163 0 1147 1163 0 1146 1163 0\n\t\t 1163 10141 0 10141 12362 0 1144 1163 0 10139 10141 0 1163 10139 0 1144 10139 0 11087 10139 0\n\t\t 1315 10750 0 10750 10749 0 9116 10506 0 10506 10505 0 10505 9116 0 10505 1274 0 1274 9116 0\n\t\t 10505 1287 0 1287 1274 0 1287 1167 0 1167 1274 0 1287 1288 0 1288 1167 0 1288 1281 0\n\t\t 1281 1167 0 9116 11985 0 11985 10506 0 11985 1291 0 1291 10506 0 11985 11959 0 11959 1291 0;\n\tsetAttr \".ed[3818:3983]\" 11959 11888 0 11888 1291 0 11959 11863 0 11863 11888 0\n\t\t 11863 11889 0 11889 11888 0 11863 11864 0 11864 11889 0 11864 1294 0 1294 11889 0\n\t\t 11864 11884 0 11884 1294 0 11884 12172 0 12172 1294 0 11884 10042 0 10042 12172 0\n\t\t 10042 8867 0 8867 12172 0 10042 10594 0 10594 8867 0 10594 8868 0 8868 8867 0 10594 10595 0\n\t\t 10595 8868 0 10595 12225 0 12225 8868 0 10595 10614 0 10614 12225 0 10614 1300 0\n\t\t 1300 12225 0 10614 1283 0 1283 1300 0 1283 1302 0 1302 1300 0 1283 10756 0 10756 1302 0\n\t\t 10756 10773 0 10773 1302 0 10756 10757 0 10757 10773 0 1183 10773 0 10757 1183 0\n\t\t 1183 10694 0 10694 10773 0 1183 1185 0 1185 10694 0 1185 10695 0 10695 10694 0 1187 1189 0\n\t\t 1189 1188 0 1188 1187 0 1188 1190 0 1190 1187 0 1188 1191 0 1191 1190 0 1191 1192 0\n\t\t 1192 1190 0 1191 1193 0 1193 1192 0 1193 1194 0 1194 1192 0 1193 1195 0 1195 1194 0\n\t\t 1195 1196 0 1196 1194 0 1195 1197 0 1197 1196 0 1197 1198 0 1198 1196 0 1197 1199 0\n\t\t 1199 1198 0 1199 1200 0 1200 1198 0 1199 1201 0 1201 1200 0 1201 1202 0 1202 1200 0\n\t\t 1201 1203 0 1203 1202 0 1203 1204 0 1204 1202 0 1203 1205 0 1205 1204 0 1205 1206 0\n\t\t 1206 1204 0 1205 1207 0 1207 1206 0 1207 1208 0 1208 1206 0 1207 1209 0 1209 1208 0\n\t\t 1209 1210 0 1210 1208 0 1209 1211 0 1211 1210 0 1211 1212 0 1212 1210 0 1211 1213 0\n\t\t 1213 1212 0 1213 1214 0 1214 1212 0 1213 1215 0 1215 1214 0 1215 1216 0 1216 1214 0\n\t\t 1217 1214 0 1216 1217 0 1216 1218 0 1218 1217 0 1217 1219 0 1219 1214 0 1219 1212 0\n\t\t 1219 1220 0 1220 1212 0 1220 1210 0 1220 1221 0 1221 1210 0 1221 1208 0 1221 1222 0\n\t\t 1222 1208 0 1222 1206 0 1222 1223 0 1223 1206 0 1223 1204 0 1223 1224 0 1224 1204 0\n\t\t 1224 1202 0 1224 1225 0 1225 1202 0 1225 1200 0 1225 1226 0 1226 1200 0 1226 1198 0\n\t\t 1226 1227 0 1227 1198 0 1227 1196 0 1227 1228 0 1228 1196 0 1228 1194 0 1228 1229 0\n\t\t 1229 1194 0 1229 1192 0 1229 1230 0 1230 1192 0 1230 1190 0 1098 1231 0 1231 1099 0\n\t\t 1231 1084 0 1231 1232 0 1232 1084 0 1232 1085 0 1232 1233 0 1233 1085 0 1260 12963 0\n\t\t 12963 1051 0 1051 1260 0 1051 1054 0 1054 1260 0 1056 13002 0 13002 1260 0 1260 1056 0\n\t\t 1054 1056 0 1058 1266 0 1266 13002 0 13002 1058 0 1056 1058 0;\n\tsetAttr \".ed[3984:4149]\" 12747 12752 0 12752 1266 0 1266 12747 0 1058 12747 0\n\t\t 9616 12720 0 12720 12752 0 12752 9616 0 12747 9616 0 9615 12706 0 12706 12720 0 12720 9615 0\n\t\t 9616 9615 0 1243 11685 0 11685 12706 0 12706 1243 0 9615 1243 0 1242 11684 0 11684 11685 0\n\t\t 11685 1242 0 1243 1242 0 1072 12736 0 12736 11684 0 11684 1072 0 1242 1072 0 1246 11731 0\n\t\t 11731 12736 0 12736 1246 0 1072 1246 0 1245 11730 0 11730 11731 0 11731 1245 0 1246 1245 0\n\t\t 12622 12634 0 12634 11730 0 11730 12622 0 1245 12622 0 12603 9450 0 9450 12634 0\n\t\t 12634 12603 0 12622 12603 0 12603 1066 0 1066 9449 0 9449 12603 0 9449 9450 0 1066 1252 0\n\t\t 1252 12561 0 12561 1066 0 12561 9449 0 1256 1261 0 1261 12561 0 12561 1256 0 1252 1256 0\n\t\t 1254 13294 0 13294 1261 0 1261 1254 0 1256 1254 0 13308 13312 0 13312 13294 0 13294 13308 0\n\t\t 1254 13308 0 12963 13312 0 13312 1051 0 13308 1051 0 1259 12962 0 12962 1235 0 1235 1259 0\n\t\t 1234 12962 0 1259 1234 0 1259 1258 0 1258 1234 0 1255 1258 0 1259 1255 0 1259 12562 0\n\t\t 12562 1255 0 1253 12562 0 1259 1253 0 1259 1250 0 1250 1253 0 1259 1248 0 1248 1250 0\n\t\t 1248 1251 0 1251 1250 0 1259 1262 0 1262 1248 0 1263 1262 0 1259 1263 0 1259 1244 0\n\t\t 1244 1263 0 1264 1244 0 1259 1264 0 1259 1265 0 1265 1264 0 1241 1265 0 1259 1241 0\n\t\t 1259 1239 0 1239 1241 0 1236 1239 0 1259 1236 0 1259 12751 0 12751 1236 0 1235 12751 0\n\t\t 1285 1188 0 1189 1285 0 1189 12093 0 12093 1285 0 1189 1268 0 1268 12093 0 1268 1286 0\n\t\t 1286 12093 0 12130 1286 0 1268 12130 0 1285 8724 0 8724 1188 0 8724 1191 0 8724 12365 0\n\t\t 12365 1191 0 12365 1193 0 12365 1293 0 1293 1193 0 1293 1195 0 1293 11816 0 11816 1195 0\n\t\t 11816 1197 0 11816 11817 0 11817 1197 0 11817 1199 0 11817 1295 0 1295 1199 0 1295 1201 0\n\t\t 1295 8878 0 8878 1201 0 8878 1203 0 8878 8879 0 8879 1203 0 8879 1205 0 8879 1301 0\n\t\t 1301 1205 0 1301 1207 0 1301 10151 0 10151 1207 0 10151 1209 0 10151 10152 0 10152 1209 0\n\t\t 10152 1211 0 10152 12301 0 12301 1211 0 12301 1213 0 12301 12308 0 12308 1213 0 12308 1215 0\n\t\t 9115 12332 0 12332 1275 0 1275 9115 0 1275 1276 0 1276 9115 0 1276 1159 0 1159 9115 0\n\t\t 1159 1277 0 1277 9115 0 1168 1277 0 1159 1168 0 1159 1278 0 1278 1168 0 1169 1168 0\n\t\t 1278 1169 0 1278 1279 0;\n\tsetAttr \".ed[4150:4315]\" 1279 1169 0 1171 1169 0 1279 1171 0 1279 1280 0 1280 1171 0\n\t\t 1173 1171 0 1280 1173 0 1280 1153 0 1153 1173 0 1161 1275 0 12332 1161 0 12332 12333 0\n\t\t 12333 1161 0 11885 1173 0 1153 11885 0 1153 10751 0 10751 11885 0 1177 1176 0 1176 1135 0\n\t\t 1135 1177 0 1135 1133 0 1133 1177 0 1179 1177 0 1133 1179 0 1133 12677 0 12677 1179 0\n\t\t 12092 1179 0 12677 12092 0 12677 1129 0 1129 12092 0 1180 12092 0 1129 1180 0 1129 1130 0\n\t\t 1130 1180 0 1130 12165 0 12165 1180 0 12165 1182 0 1182 1180 0 11052 1135 0 1176 11052 0\n\t\t 1176 1312 0 1312 11052 0 1165 1166 0 1166 8723 0 8723 1165 0 8723 1267 0 1267 1165 0\n\t\t 1267 12094 0 12094 1165 0 12094 8778 0 8778 1165 0 1269 8778 0 12094 1269 0 1269 8779 0\n\t\t 8779 8778 0 1269 1289 0 1289 8779 0 1269 1290 0 1290 1289 0 1166 12422 0 12422 8723 0\n\t\t 12422 1292 0 1292 8723 0 12422 1170 0 1170 1292 0 1170 1270 0 1270 1292 0 1170 1172 0\n\t\t 1172 1270 0 1172 12344 0 12344 1270 0 1172 12171 0 12171 12344 0 12171 1271 0 1271 12344 0\n\t\t 1272 1271 0 12171 1272 0 12171 1175 0 1175 1272 0 8880 1272 0 1175 8880 0 1175 1296 0\n\t\t 1296 8880 0 1296 1297 0 1297 8880 0 1297 1298 0 1298 8880 0 1297 1178 0 1178 1298 0\n\t\t 1178 1299 0 1299 1298 0 1178 10239 0 10239 1299 0 10239 10169 0 10169 1299 0 10239 10240 0\n\t\t 10240 10169 0 10240 1303 0 1303 10169 0 10240 1181 0 1181 1303 0 1181 1304 0 1304 1303 0\n\t\t 1181 1184 0 1184 1304 0 1184 1273 0 1273 1304 0 1305 1273 0 1184 1305 0 1184 1186 0\n\t\t 1186 1305 0 1143 11086 0 11086 10187 0 10187 1143 0 10187 10189 0 10189 1143 0 10189 10140 0\n\t\t 10140 1143 0 10188 1141 0 1141 11155 0 11155 10188 0 11155 10125 0 10125 10188 0\n\t\t 10124 1140 0 1140 1138 0 1138 10124 0 1138 10058 0 10058 10124 0 1138 1137 0 1137 10058 0\n\t\t 1137 10040 0 10040 10058 0 1137 1136 0 1136 10040 0 1136 10041 0 10041 10040 0 1308 10190 0\n\t\t 10190 1317 0 1317 1308 0 1317 1313 0 1313 1308 0 10142 9203 0 9203 9202 0 9202 10142 0\n\t\t 9202 1162 0 1162 10142 0 9202 12253 0 12253 1162 0 12253 12411 0 12411 1162 0 12253 1174 0\n\t\t 1174 12411 0 1174 1164 0 1164 12411 0 11884 1314 0 1314 1311 0 1311 11884 0 1311 10042 0\n\t\t 1306 1311 0 1314 1306 0 1306 1309 0 1309 1311 0 1309 1310 0 1310 1311 0 1314 1316 0\n\t\t 1316 1306 0;\n\tsetAttr \".ed[4316:4481]\" 1316 9204 0 9204 1306 0 9204 1307 0 1307 1306 0 1318 9396 0\n\t\t 9396 9247 0 9247 1318 0 9247 1321 0 1321 1318 0 1322 1321 0 9247 1322 0 9247 9248 0\n\t\t 9248 1322 0 1363 9396 0 1318 1363 0 1318 1346 0 1346 1363 0 1346 1324 0 1324 1363 0\n\t\t 1324 11371 0 11371 1363 0 9248 1361 0 1361 1322 0 1361 1325 0 1325 1322 0 1326 1325 0\n\t\t 1361 1326 0 1361 11403 0 11403 1326 0 11403 9488 0 9488 1326 0 9488 1328 0 1328 1326 0\n\t\t 1329 1328 0 9488 1329 0 9488 9466 0 9466 1329 0 9466 9467 0 9467 1329 0 9467 1332 0\n\t\t 1332 1329 0 1333 1332 0 9467 1333 0 9467 1369 0 1369 1333 0 1369 11473 0 11473 1333 0\n\t\t 11473 1335 0 1335 1333 0 1336 1335 0 11473 1336 0 11473 11441 0 11441 1336 0 11441 11435 0\n\t\t 11435 1336 0 11435 1339 0 1339 1336 0 1340 1339 0 11435 1340 0 11435 11436 0 11436 1340 0\n\t\t 11436 11426 0 11426 1340 0 11426 1342 0 1342 1340 0 1324 1342 0 11426 1324 0 11426 11371 0\n\t\t 1343 1342 0 1324 1343 0 1343 1340 0 1324 1344 0 1344 1343 0 1345 1344 0 1324 1345 0\n\t\t 1346 1345 0 1343 1347 0 1347 1340 0 1347 1348 0 1348 1340 0 1348 1339 0 1348 1336 0\n\t\t 1348 1349 0 1349 1336 0 1349 1350 0 1350 1336 0 1350 1335 0 1350 1333 0 1350 1351 0\n\t\t 1351 1333 0 1351 1352 0 1352 1333 0 1352 1332 0 1352 1329 0 1352 1353 0 1353 1329 0\n\t\t 1353 1354 0 1354 1329 0 1354 1328 0 1354 1326 0 1354 1355 0 1355 1326 0 1355 1356 0\n\t\t 1356 1326 0 1356 1325 0 1356 1357 0 1357 1325 0 1357 1322 0 1357 1358 0 1358 1322 0\n\t\t 1358 1321 0 1358 1318 0 1358 1359 0 1359 1318 0 1359 1345 0 1345 1318 0 11967 11968 0\n\t\t 11968 11402 0 11402 11967 0 11402 1323 0 1323 11967 0 9983 11967 0 1323 9983 0 1323 1319 0\n\t\t 1319 9983 0 9984 9983 0 1319 9984 0 1319 1320 0 1320 9984 0 10031 9984 0 1320 10031 0\n\t\t 1320 11370 0 11370 10031 0 12931 10031 0 11370 12931 0 11370 1365 0 1365 12931 0\n\t\t 10120 12931 0 1365 10120 0 1365 1366 0 1366 10120 0 1405 10120 0 1366 1405 0 1366 1341 0\n\t\t 1341 1405 0 1367 1405 0 1341 1367 0 1341 1338 0 1338 1367 0 1403 1367 0 1338 1403 0\n\t\t 1338 1337 0 1337 1403 0 10286 1403 0 1337 10286 0 1337 1334 0 1334 10286 0 12989 10286 0\n\t\t 1334 12989 0 1334 12533 0 12533 12989 0 10193 12989 0 12533 10193 0 12533 1331 0\n\t\t 1331 10193 0 1398 10193 0;\n\tsetAttr \".ed[4482:4647]\" 1331 1398 0 1331 1330 0 1330 1398 0 12890 1398 0 1330 12890 0\n\t\t 1330 1327 0 1327 12890 0 1395 12890 0 1327 1395 0 1327 1371 0 1371 1395 0 11968 1395 0\n\t\t 1371 11968 0 1371 11402 0 11418 11045 0 11045 1390 0 1390 11418 0 1390 1374 0 1374 11418 0\n\t\t 11028 11418 0 1374 11028 0 1374 1376 0 1376 11028 0 11029 11028 0 1376 11029 0 1376 1393 0\n\t\t 1393 11029 0 10679 11029 0 1393 10679 0 1393 1409 0 1409 10679 0 1410 10679 0 1409 1410 0\n\t\t 1409 1378 0 1378 1410 0 1396 1390 0 11045 1396 0 11045 11046 0 11046 1396 0 1397 1396 0\n\t\t 11046 1397 0 11046 11118 0 11118 1397 0 1381 1397 0 11118 1381 0 11118 10884 0 10884 1381 0\n\t\t 1383 1381 0 10884 1383 0 10884 10885 0 10885 1383 0 1400 1383 0 10885 1400 0 10885 10924 0\n\t\t 10924 1400 0 1401 1400 0 10924 1401 0 10924 10720 0 10720 1401 0 1404 1401 0 10720 1404 0\n\t\t 10720 1412 0 1412 1404 0 1386 1404 0 1412 1386 0 1412 10868 0 10868 1386 0 1406 1386 0\n\t\t 10868 1406 0 10868 10818 0 10818 1406 0 1407 1406 0 10818 1407 0 10818 10819 0 10819 1407 0\n\t\t 1378 1407 0 10819 1378 0 10819 1410 0 1390 1362 0 1362 1360 0 1360 1390 0 1360 1374 0\n\t\t 1360 1376 0 1360 1391 0 1391 1376 0 1391 1392 0 1392 1376 0 1392 1393 0 1392 1409 0\n\t\t 1392 1394 0 1394 1409 0 12846 1362 0 1390 12846 0 1396 12846 0 1397 12846 0 1397 1370 0\n\t\t 1370 12846 0 10192 1370 0 1397 10192 0 1381 10192 0 1383 10192 0 1383 1399 0 1399 10192 0\n\t\t 1368 1399 0 1383 1368 0 1400 1368 0 1401 1368 0 1401 1402 0 1402 1368 0 10287 1402 0\n\t\t 1401 10287 0 1404 10287 0 1386 10287 0 1386 12948 0 12948 10287 0 10119 12948 0 1386 10119 0\n\t\t 1406 10119 0 1407 10119 0 1407 1408 0 1408 10119 0 1364 1408 0 1407 1364 0 1378 1364 0\n\t\t 1409 1364 0 1394 1364 0 1372 1375 0 1375 1377 0 1377 1372 0 1377 10678 0 10678 1372 0\n\t\t 1377 1411 0 1411 10678 0 10678 10719 0 10719 1372 0 10678 1388 0 1388 10719 0 10678 1389 0\n\t\t 1389 1388 0 1388 1387 0 1387 10719 0 10719 1382 0 1382 1372 0 10719 1385 0 1385 1382 0\n\t\t 10719 1413 0 1413 1385 0 1385 1384 0 1384 1382 0 1382 1379 0 1379 1372 0 1382 1380 0\n\t\t 1380 1379 0 1373 1372 0 1379 1373 0 1414 1415 0 1415 1482 0 1482 1414 0 1482 1481 0\n\t\t 1481 1414 0 1416 1414 0 1481 1416 0 1481 1480 0 1480 1416 0 1416 1417 0 1417 1414 0;\n\tsetAttr \".ed[4648:4813]\" 1417 1418 0 1418 1414 0 1418 1415 0 1418 1419 0 1419 1415 0\n\t\t 1483 1482 0 1415 1483 0 1415 1420 0 1420 1483 0 1419 1420 0 1419 1421 0 1421 1420 0\n\t\t 1419 1422 0 1422 1421 0 1418 1422 0 1422 1471 0 1471 1421 0 1471 1465 0 1465 1421 0\n\t\t 1471 1466 0 1466 1465 0 1471 1423 0 1423 1466 0 1465 1424 0 1424 1421 0 1424 1420 0\n\t\t 1424 1483 0 1473 1418 0 1417 1473 0 1473 1422 0 1417 1425 0 1425 1473 0 1424 1469 0\n\t\t 1469 1483 0 1424 1467 0 1467 1469 0 1476 1425 0 1417 1476 0 1417 1426 0 1426 1476 0\n\t\t 1478 1476 0 1426 1478 0 1426 1427 0 1427 1478 0 1428 1426 0 1417 1428 0 1416 1428 0\n\t\t 1429 1428 0 1416 1429 0 1480 1429 0 1429 1430 0 1430 1428 0 1430 1431 0 1431 1428 0\n\t\t 1431 1427 0 1426 1431 0 1432 10718 0 10718 10734 0 10734 1432 0 10734 1435 0 1435 1432 0\n\t\t 1462 1435 0 10734 1462 0 10734 10764 0 10764 1462 0 1432 1437 0 1437 10718 0 1437 10648 0\n\t\t 10648 10718 0 1437 1439 0 1439 10648 0 1439 10587 0 10587 10648 0 10588 10587 0 1439 10588 0\n\t\t 1439 1442 0 1442 10588 0 1442 1443 0 1443 10588 0 1443 10592 0 10592 10588 0 11766 10592 0\n\t\t 1443 11766 0 1443 1446 0 1446 11766 0 11767 11768 0 11768 1447 0 1447 11767 0 1447 1479 0\n\t\t 1479 11767 0 11009 13324 0 13324 1448 0 1448 11009 0 1448 1477 0 1477 11009 0 1475 1477 0\n\t\t 1448 1475 0 1448 1449 0 1449 1475 0 1474 1475 0 1449 1474 0 1449 1450 0 1450 1474 0\n\t\t 13197 1474 0 1450 13197 0 1450 1452 0 1452 13197 0 1452 1453 0 1453 13197 0 1453 13196 0\n\t\t 13196 13197 0 1453 1454 0 1454 13196 0 1454 13194 0 13194 13196 0 1454 1456 0 1456 13194 0\n\t\t 1456 1470 0 1470 13194 0 13184 1470 0 1456 13184 0 1456 1458 0 1458 13184 0 1463 13184 0\n\t\t 1458 1463 0 1458 1459 0 1459 1463 0 1459 1460 0 1460 1463 0 1460 1464 0 1464 1463 0\n\t\t 11591 13315 0 13315 1461 0 1461 11591 0 1461 1468 0 1468 11591 0 1436 1468 0 1461 1436 0\n\t\t 1461 13126 0 13126 1436 0 11657 11592 0 11592 1424 0 1424 11657 0 1465 11657 0 1457 11657 0\n\t\t 1465 1457 0 1466 1457 0 11592 1467 0 11592 11593 0 11593 1467 0 11593 1469 0 11593 10765 0\n\t\t 10765 1469 0 13185 1457 0 1466 13185 0 1423 13185 0 1455 13185 0 1423 1455 0 1471 1455 0\n\t\t 1422 1455 0 1422 1472 0 1472 1455 0 1451 1472 0 1422 1451 0 1473 1451 0 11066 1451 0;\n\tsetAttr \".ed[4814:4979]\" 1473 11066 0 1425 11066 0 11024 11066 0 1425 11024 0\n\t\t 1476 11024 0 11007 11024 0 1476 11007 0 1478 11007 0 11008 11007 0 1478 11008 0 1427 11008 0\n\t\t 1431 11008 0 1431 1445 0 1445 11008 0 1444 1445 0 1431 1444 0 1430 1444 0 1441 1444 0\n\t\t 1430 1441 0 1429 1441 0 1440 1441 0 1429 1440 0 1480 1440 0 1438 1440 0 1480 1438 0\n\t\t 1481 1438 0 1482 1438 0 1482 1434 0 1434 1438 0 1483 1434 0 1483 1433 0 1433 1434 0\n\t\t 10765 1433 0 1483 10765 0 1484 9841 0 9841 9823 0 9823 1484 0 9823 1487 0 1487 1484 0\n\t\t 1488 1487 0 9823 1488 0 9823 9824 0 9824 1488 0 1525 9841 0 1484 1525 0 1484 1511 0\n\t\t 1511 1525 0 9824 1526 0 1526 1488 0 1526 1490 0 1490 1488 0 1491 1490 0 1526 1491 0\n\t\t 1526 9180 0 9180 1491 0 9180 9179 0 9179 1491 0 9179 1492 0 1492 1491 0 1493 1492 0\n\t\t 9179 1493 0 9179 12497 0 12497 1493 0 12497 9122 0 9122 1493 0 9122 1495 0 1495 1493 0\n\t\t 1496 1495 0 9122 1496 0 9122 9121 0 9121 1496 0 9121 12379 0 12379 1496 0 12379 1498 0\n\t\t 1498 1496 0 1499 1498 0 12379 1499 0 12379 12378 0 12378 1499 0 12378 10290 0 10290 1499 0\n\t\t 10290 1501 0 1501 1499 0 1502 1501 0 10290 1502 0 10290 10244 0 10244 1502 0 10244 10232 0\n\t\t 10232 1502 0 10232 1505 0 1505 1502 0 1506 1505 0 10232 1506 0 10232 10233 0 10233 1506 0\n\t\t 1508 1505 0 1506 1508 0 1508 1502 0 1506 1509 0 1509 1508 0 1510 1509 0 1506 1510 0\n\t\t 1506 1511 0 1511 1510 0 1508 1512 0 1512 1502 0 1512 1513 0 1513 1502 0 1513 1501 0\n\t\t 1513 1499 0 1513 1514 0 1514 1499 0 1514 1515 0 1515 1499 0 1515 1498 0 1515 1496 0\n\t\t 1515 1516 0 1516 1496 0 1516 1517 0 1517 1496 0 1517 1495 0 1517 1493 0 1517 1518 0\n\t\t 1518 1493 0 1518 1519 0 1519 1493 0 1519 1492 0 1519 1491 0 1519 1520 0 1520 1491 0\n\t\t 1520 1521 0 1521 1491 0 1521 1490 0 1521 1522 0 1522 1490 0 1522 1488 0 1522 1523 0\n\t\t 1523 1488 0 1523 1487 0 1523 1484 0 1523 1524 0 1524 1484 0 1524 1510 0 1510 1484 0\n\t\t 1506 1525 0 10233 1525 0 1562 12167 0 12167 9479 0 9479 1562 0 9479 1489 0 1489 1562 0\n\t\t 9276 1562 0 1489 9276 0 1489 1485 0 1485 9276 0 9277 9276 0 1485 9277 0 1485 1486 0\n\t\t 1486 9277 0 9216 9277 0 1486 9216 0 1486 12457 0 12457 9216 0 9195 9216 0 12457 9195 0\n\t\t 12457 1507 0;\n\tsetAttr \".ed[4980:5145]\" 1507 9195 0 9196 9195 0 1507 9196 0 1507 1504 0 1504 9196 0\n\t\t 9515 9196 0 1504 9515 0 1504 1503 0 1503 9515 0 8813 9515 0 1503 8813 0 1503 1500 0\n\t\t 1500 8813 0 8812 8813 0 1500 8812 0 1500 1534 0 1534 8812 0 8820 8812 0 1534 8820 0\n\t\t 1534 1497 0 1497 8820 0 9148 8820 0 1497 9148 0 1497 1536 0 1536 9148 0 9149 9148 0\n\t\t 1536 9149 0 1536 1538 0 1538 9149 0 9367 9149 0 1538 9367 0 1538 1494 0 1494 9367 0\n\t\t 9368 9367 0 1494 9368 0 1494 1541 0 1541 9368 0 1564 9368 0 1541 1564 0 1541 1542 0\n\t\t 1542 1564 0 12167 1564 0 1542 12167 0 1542 9479 0 9000 9001 0 9001 1561 0 1561 9000 0\n\t\t 1561 1545 0 1545 9000 0 9025 9000 0 1545 9025 0 1545 1563 0 1563 9025 0 9064 9025 0\n\t\t 1563 9064 0 1563 1548 0 1548 9064 0 8740 9064 0 1548 8740 0 1548 1559 0 1559 8740 0\n\t\t 1565 1561 0 9001 1565 0 9001 8919 0 8919 1565 0 1566 1565 0 8919 1566 0 8919 8920 0\n\t\t 8920 1566 0 1567 1566 0 8920 1567 0 8920 1577 0 1577 1567 0 1568 1567 0 1577 1568 0\n\t\t 1577 12241 0 12241 1568 0 1569 1568 0 12241 1569 0 12241 8908 0 8908 1569 0 1552 1569 0\n\t\t 8908 1552 0 8908 8826 0 8826 1552 0 1553 1552 0 8826 1553 0 8826 8825 0 8825 1553 0\n\t\t 1554 1553 0 8825 1554 0 8825 11922 0 11922 1554 0 1556 1554 0 11922 1556 0 11922 11923 0\n\t\t 11923 1556 0 1573 1556 0 11923 1573 0 11923 12531 0 12531 1573 0 1574 1573 0 12531 1574 0\n\t\t 12531 8739 0 8739 1574 0 1559 1574 0 8739 1559 0 8739 8740 0 1561 1527 0 1527 12193 0\n\t\t 12193 1561 0 12193 1545 0 12193 1563 0 12193 1528 0 1528 1563 0 1528 1529 0 1529 1563 0\n\t\t 1529 1548 0 1529 1559 0 1529 1530 0 1530 1559 0 12168 1527 0 1561 12168 0 1565 12168 0\n\t\t 1566 12168 0 1566 1540 0 1540 12168 0 1539 1540 0 1566 1539 0 1567 1539 0 1568 1539 0\n\t\t 1568 1537 0 1537 1539 0 1535 1537 0 1568 1535 0 1569 1535 0 1552 1535 0 1552 1570 0\n\t\t 1570 1535 0 1571 1570 0 1552 1571 0 1553 1571 0 1554 1571 0 1554 1572 0 1572 1571 0\n\t\t 1533 1572 0 1554 1533 0 1556 1533 0 1573 1533 0 1573 1532 0 1532 1533 0 1531 1532 0\n\t\t 1573 1531 0 1574 1531 0 1559 1531 0 1530 1531 0 1543 1546 0 1546 1547 0 1547 1543 0\n\t\t 1547 1558 0 1558 1543 0 1547 1560 0 1560 1558 0 1558 1575 0 1575 1543 0 1558 1557 0;\n\tsetAttr \".ed[5146:5311]\" 1557 1575 0 1558 1576 0 1576 1557 0 1557 1555 0 1555 1575 0\n\t\t 1575 12229 0 12229 1543 0 1575 1578 0 1578 12229 0 1575 1579 0 1579 1578 0 1578 1551 0\n\t\t 1551 12229 0 12229 1549 0 1549 1543 0 12229 1550 0 1550 1549 0 1544 1543 0 1549 1544 0\n\t\t 9026 9027 0 9027 1581 0 1581 9026 0 1581 1583 0 1583 9026 0 8992 1581 0 9027 8992 0\n\t\t 9027 8994 0 8994 8992 0 1586 1584 0 1584 8993 0 8993 1586 0 8993 8963 0 8963 1586 0\n\t\t 9063 9026 0 1583 9063 0 1583 1589 0 1589 9063 0 10002 9063 0 1589 10002 0 1589 1591 0\n\t\t 1591 10002 0 1592 8982 0 8982 8962 0 8962 1592 0 8962 8964 0 8964 1592 0 1615 1592 0\n\t\t 8964 1615 0 8964 10035 0 10035 1615 0 9961 10002 0 1591 9961 0 1591 1596 0 1596 9961 0\n\t\t 9962 9961 0 1596 9962 0 1596 1598 0 1598 9962 0 9931 9962 0 1598 9931 0 1598 1600 0\n\t\t 1600 9931 0 9922 9931 0 1600 9922 0 1600 1602 0 1602 9922 0 9923 9922 0 1602 9923 0\n\t\t 1602 1604 0 1604 9923 0 9942 9923 0 1604 9942 0 1604 1606 0 1606 9942 0 9944 9942 0\n\t\t 1606 9944 0 1606 9963 0 9963 9944 0 1609 1607 0 1607 1608 0 1608 1609 0 1608 9998 0\n\t\t 9998 1609 0 9968 9967 0 9967 1610 0 1610 9968 0 1610 1612 0 1612 9968 0 10024 9968 0\n\t\t 1612 10024 0 1612 1614 0 1614 10024 0 10035 10024 0 1614 10035 0 1614 1615 0 1601 1603 0\n\t\t 1603 1616 0 1616 1601 0 1603 1605 0 1605 1631 0 1631 1603 0 1631 1616 0 1617 1631 0\n\t\t 1605 1617 0 1605 9943 0 9943 1617 0 1618 1617 0 9943 1618 0 9943 9966 0 9966 1618 0\n\t\t 1619 1618 0 9966 1619 0 9966 1611 0 1611 1619 0 12529 1619 0 1611 12529 0 1611 1613 0\n\t\t 1613 12529 0 1613 1594 0 1594 12529 0 1594 12766 0 12766 12529 0 1616 1632 0 1632 1601 0\n\t\t 1599 1601 0 1632 1599 0 1632 1621 0 1621 1599 0 1597 1599 0 1621 1597 0 1621 1622 0\n\t\t 1622 1597 0 1622 1628 0 1628 1597 0 1628 1595 0 1595 1597 0 1590 1595 0 1628 1590 0\n\t\t 1628 1623 0 1623 1590 0 1588 1590 0 1623 1588 0 1623 1629 0 1629 1588 0 1580 1588 0\n\t\t 1629 1580 0 1629 1626 0 1626 1580 0 1582 1580 0 1626 1582 0 1626 1627 0 1627 1582 0\n\t\t 1585 1582 0 1627 1585 0 1627 1624 0 1624 1585 0 1587 1585 0 1624 1587 0 1624 1625 0\n\t\t 1625 1587 0 1593 1587 0 1625 1593 0 1625 12528 0 12528 1593 0 1594 1593 0 12528 1594 0;\n\tsetAttr \".ed[5312:5477]\" 12528 12766 0 1624 12528 0 1624 1626 0 1626 12528 0\n\t\t 1626 1628 0 1628 12528 0 1629 1628 0 1628 12529 0 12529 12528 0 1628 1631 0 1631 12529 0\n\t\t 1628 1621 0 1621 1631 0 1632 1631 0 1631 1619 0 1617 1619 0 1620 1633 0 1633 1630 0\n\t\t 1630 1620 0 11572 1664 0 1664 1634 0 1634 11572 0 1634 11571 0 11571 11572 0 13084 11571 0\n\t\t 1634 13084 0 1634 1697 0 1697 13084 0 1634 11284 0 11284 1697 0 11284 11285 0 11285 1697 0\n\t\t 13204 11284 0 1634 13204 0 1664 13204 0 1664 13092 0 13092 13204 0 13092 13079 0\n\t\t 13079 13204 0 1720 1697 0 11285 1720 0 11285 13139 0 13139 1720 0 1640 13260 0 13260 1740 0\n\t\t 1740 1640 0 1740 1642 0 1642 1640 0 1740 13263 0 13263 1642 0 13263 1644 0 1644 1642 0\n\t\t 1640 1645 0 1645 13260 0 1645 1737 0 1737 13260 0 13109 1644 0 13263 13109 0 13263 13108 0\n\t\t 13108 13109 0 11312 1642 0 1644 11312 0 11312 1640 0 1644 11373 0 11373 11312 0 11312 11313 0\n\t\t 11313 1640 0 11313 1645 0 11313 1724 0 1724 1645 0 1650 1645 0 1724 1650 0 1650 1737 0\n\t\t 1724 13216 0 13216 1650 0 13216 13189 0 13189 1650 0 13189 1652 0 1652 1650 0 13189 13190 0\n\t\t 13190 1652 0 13190 1654 0 1654 1652 0 1652 11784 0 11784 1650 0 1654 11784 0 11784 11785 0\n\t\t 11785 1650 0 11785 1737 0 1654 11789 0 11789 11784 0 1654 10708 0 10708 11789 0 1654 13181 0\n\t\t 13181 10708 0 13181 10707 0 10707 10708 0 1731 13181 0 1654 1731 0 13190 1731 0 13190 1729 0\n\t\t 1729 1731 0 13190 10883 0 10883 1729 0 13110 11373 0 1644 13110 0 13109 13110 0 1667 10822 0\n\t\t 10822 1659 0 1659 1667 0 1659 1660 0 1660 1667 0 13095 1660 0 1659 13095 0 1659 13087 0\n\t\t 13087 13095 0 1659 13283 0 13283 13087 0 13283 11413 0 11413 13087 0 13085 13087 0\n\t\t 11413 13085 0 11413 11835 0 11835 13085 0 1662 13085 0 11835 1662 0 11835 11887 0\n\t\t 11887 1662 0 11573 1662 0 11887 11573 0 11887 11449 0 11449 11573 0 10822 11573 0\n\t\t 11449 10822 0 11507 13283 0 1659 11507 0 10822 11507 0 11449 11507 0 13183 1663 0\n\t\t 1663 1665 0 1665 13183 0 1666 13183 0 1665 1666 0 10823 1666 0 1665 10823 0 1666 1668 0\n\t\t 1668 13183 0 1668 1638 0 1638 13183 0 1668 1669 0 1669 1638 0 1669 10427 0 10427 1638 0\n\t\t 1702 10427 0 1669 1702 0 1669 1670 0 1670 1702 0 10843 1702 0 1670 10843 0 1670 1672 0\n\t\t 1672 10843 0 10844 10843 0 1672 10844 0 1672 1674 0 1674 10844 0 10374 10844 0;\n\tsetAttr \".ed[5478:5643]\" 1674 10374 0 1674 1675 0 1675 10374 0 10375 10374 0\n\t\t 1675 10375 0 1675 1676 0 1676 10375 0 10356 10375 0 1676 10356 0 1676 1677 0 1677 10356 0\n\t\t 1709 10356 0 1677 1709 0 1677 1678 0 1678 1709 0 1678 1679 0 1679 1709 0 1679 13027 0\n\t\t 13027 1709 0 1679 1681 0 1681 13027 0 1681 1711 0 1711 13027 0 10947 1711 0 1681 10947 0\n\t\t 1681 1683 0 1683 10947 0 10911 10947 0 1683 10911 0 1683 10913 0 10913 10911 0 10912 1685 0\n\t\t 1685 10589 0 10589 10912 0 10589 10590 0 10590 10912 0 10591 1686 0 1686 1688 0 1688 10591 0\n\t\t 1688 10615 0 10615 10591 0 10644 10615 0 1688 10644 0 1688 1690 0 1690 10644 0 10645 10644 0\n\t\t 1690 10645 0 1690 1691 0 1691 10645 0 13127 10645 0 1691 13127 0 1691 1693 0 1693 13127 0\n\t\t 10479 13127 0 1693 10479 0 1693 1694 0 1694 10479 0 10480 10479 0 1694 10480 0 1694 1695 0\n\t\t 1695 10480 0 1695 1696 0 1696 10480 0 1696 13097 0 13097 10480 0 1696 13086 0 13086 13097 0\n\t\t 1696 13094 0 13094 13086 0 1698 1699 0 1699 1635 0 1635 1698 0 13078 13079 0 13092 13078 0\n\t\t 13092 1701 0 1701 13078 0 1723 13078 0 1701 1723 0 1701 10428 0 10428 1723 0 10258 1723 0\n\t\t 10428 10258 0 10428 1671 0 1671 10258 0 10247 10258 0 1671 10247 0 1671 1673 0 1673 10247 0\n\t\t 10248 10247 0 1673 10248 0 1673 1706 0 1706 10248 0 10950 10248 0 1706 10950 0 1706 1707 0\n\t\t 1707 10950 0 1707 1708 0 1708 10950 0 1708 1727 0 1727 10950 0 1730 1727 0 1708 1730 0\n\t\t 1708 10357 0 10357 1730 0 13012 1730 0 10357 13012 0 10357 1680 0 1680 13012 0 1680 13116 0\n\t\t 13116 13012 0 13116 1732 0 1732 13012 0 13116 1682 0 1682 1732 0 1682 1712 0 1712 1732 0\n\t\t 1735 1712 0 1682 1735 0 1682 1684 0 1684 1735 0 13069 1735 0 1684 13069 0 1684 1687 0\n\t\t 1687 13069 0 13155 13069 0 1687 13155 0 1687 1689 0 1689 13155 0 13150 13155 0 1689 13150 0\n\t\t 1689 1715 0 1715 13150 0 1738 13150 0 1715 1738 0 1715 1716 0 1716 1738 0 13143 1738 0\n\t\t 1716 13143 0 1716 1692 0 1692 13143 0 1739 13143 0 1692 1739 0 1692 1718 0 1718 1739 0\n\t\t 13139 1739 0 1718 13139 0 1718 1720 0 11286 1636 0 1636 1646 0 1646 11286 0 1646 13107 0\n\t\t 13107 11286 0 13111 1646 0 1636 13111 0 1636 1721 0 1721 13111 0 13205 1639 0 1639 1648 0\n\t\t 1648 13205 0 1648 1722 0 1722 13205 0 1647 1648 0 1639 1647 0 1639 1700 0 1700 1647 0\n\t\t 1649 1647 0;\n\tsetAttr \".ed[5644:5809]\" 1700 1649 0 1700 12977 0 12977 1649 0 13215 1649 0 12977 13215 0\n\t\t 12977 1703 0 1703 13215 0 1651 13215 0 1703 1651 0 1703 1704 0 1704 1651 0 1704 1705 0\n\t\t 1705 1651 0 1705 1725 0 1725 1651 0 1653 1725 0 1705 1653 0 1705 1726 0 1726 1653 0\n\t\t 1726 10871 0 10871 1653 0 10871 1728 0 1728 1653 0 10881 1728 0 10871 10881 0 10871 10872 0\n\t\t 10872 10881 0 10882 10881 0 10872 10882 0 10872 1710 0 1710 10882 0 1710 1732 0 1732 10882 0\n\t\t 1732 1658 0 1658 10882 0 1712 1658 0 1712 1733 0 1733 1658 0 1734 1733 0 1712 1734 0\n\t\t 1712 13060 0 13060 1734 0 11790 1734 0 13060 11790 0 13060 1713 0 1713 11790 0 1655 1657 0\n\t\t 1657 13070 0 13070 1655 0 13070 1736 0 1736 1655 0 1656 1655 0 1736 1656 0 1736 1714 0\n\t\t 1714 1656 0 13255 1656 0 1714 13255 0 1714 13151 0 13151 13255 0 1641 13255 0 13151 1641 0\n\t\t 13151 1717 0 1717 1641 0 1717 13138 0 13138 1641 0 13138 13262 0 13262 1641 0 1643 13262 0\n\t\t 13138 1643 0 13138 1719 0 1719 1643 0 1741 1643 0 1719 1741 0 1719 1637 0 1637 1741 0\n\t\t 11451 1742 0 1742 11407 0 11407 11451 0 11407 11408 0 11408 11451 0 11411 11407 0\n\t\t 1742 11411 0 1742 11837 0 11837 11411 0 1743 13329 0 13329 11450 0 11450 1743 0 11450 11448 0\n\t\t 11448 1743 0 1743 11834 0 11834 13329 0 11834 11836 0 11836 13329 0 11410 1745 0\n\t\t 1745 1744 0 1744 11410 0 1744 11412 0 11412 11410 0 1661 1747 0 1747 1746 0 1746 1661 0\n\t\t 1746 1748 0 1748 1661 0 1661 11506 0 11506 1747 0 11506 11409 0 11409 1747 0 1751 1752 0\n\t\t 1752 1750 0 1750 1751 0 1750 1749 0 1749 1751 0 11536 11496 0 11496 1754 0 1754 11536 0\n\t\t 1754 1756 0 1756 11536 0 1756 1757 0 1757 11536 0 1757 10094 0 10094 11536 0 11496 11497 0\n\t\t 11497 1754 0 11497 1779 0 1779 1754 0 1759 1779 0 11497 1759 0 11497 12767 0 12767 1759 0\n\t\t 1794 10094 0 1757 1794 0 1757 1760 0 1760 1794 0 1760 1761 0 1761 1794 0 1761 1806 0\n\t\t 1806 1794 0 11266 1806 0 1761 11266 0 1761 1763 0 1763 11266 0 1763 1764 0 1764 11266 0\n\t\t 1764 11201 0 11201 11266 0 11202 11201 0 1764 11202 0 1764 1767 0 1767 11202 0 1767 1768 0\n\t\t 1768 11202 0 1768 12681 0 12681 11202 0 12682 12681 0 1768 12682 0 1768 1770 0 1770 12682 0\n\t\t 1770 1771 0 1771 12682 0 1771 1803 0 1803 12682 0 12704 1803 0 1771 12704 0 1771 1773 0\n\t\t 1773 12704 0 1773 1774 0;\n\tsetAttr \".ed[5810:5975]\" 1774 12704 0 1774 1800 0 1800 12704 0 1799 1800 0 1774 1799 0\n\t\t 1774 1775 0 1775 1799 0 1775 1759 0 1759 1799 0 12767 1799 0 1777 1759 0 1775 1777 0\n\t\t 1777 1778 0 1778 1759 0 1778 1779 0 1775 1780 0 1780 1777 0 1774 1780 0 1774 1781 0\n\t\t 1781 1780 0 1773 1781 0 1773 1782 0 1782 1781 0 1771 1782 0 1771 1783 0 1783 1782 0\n\t\t 1770 1784 0 1784 1783 0 1783 1770 0 1768 1784 0 1768 1785 0 1785 1784 0 1767 1785 0\n\t\t 1767 1786 0 1786 1785 0 1764 1786 0 1764 1787 0 1787 1786 0 1763 1787 0 1763 1788 0\n\t\t 1788 1787 0 1761 1788 0 1761 1789 0 1789 1788 0 1760 1789 0 1760 1790 0 1790 1789 0\n\t\t 1757 1790 0 1757 1791 0 1791 1790 0 1756 1791 0 1756 1792 0 1792 1791 0 1754 1792 0\n\t\t 1754 1793 0 1793 1792 0 1779 1793 0 1778 1793 0 10093 10324 0 10324 8902 0 8902 10093 0\n\t\t 8902 1796 0 1796 10093 0 8902 8903 0 8903 1796 0 8903 1753 0 1753 1796 0 8903 1831 0\n\t\t 1831 1753 0 1831 1755 0 1755 1753 0 1831 8998 0 8998 1755 0 8998 1758 0 1758 1755 0\n\t\t 8998 10293 0 10293 1758 0 10293 1776 0 1776 1758 0 10293 10294 0 10294 1776 0 10294 10245 0\n\t\t 10245 1776 0 10294 1842 0 1842 10245 0 1842 10246 0 10246 10245 0 1842 9988 0 9988 10246 0\n\t\t 9988 1772 0 1772 10246 0 9988 9989 0 9989 1772 0 9989 12693 0 12693 1772 0 9989 8844 0\n\t\t 8844 12693 0 8844 1769 0 1769 12693 0 8844 8843 0 8843 1769 0 8843 1804 0 1804 1769 0\n\t\t 8843 11994 0 11994 1804 0 11994 1766 0 1766 1804 0 11994 12015 0 12015 1766 0 12015 1765 0\n\t\t 1765 1766 0 12015 12014 0 12014 1765 0 12014 1762 0 1762 1765 0 12014 10325 0 10325 1762 0\n\t\t 10325 10271 0 10271 1762 0 10325 10324 0 10324 10271 0 10093 10271 0 1807 12127 0\n\t\t 12127 1843 0 1843 1807 0 1843 1809 0 1809 1807 0 1843 9150 0 9150 1809 0 9150 1829 0\n\t\t 1829 1809 0 9150 9151 0 9151 1829 0 9151 1832 0 1832 1829 0 9151 9163 0 9163 1832 0\n\t\t 9163 1813 0 1813 1832 0 9163 8846 0 8846 1813 0 8846 1814 0 1814 1813 0 1807 1815 0\n\t\t 1815 12127 0 1815 1845 0 1845 12127 0 1815 1834 0 1834 1845 0 1834 9445 0 9445 1845 0\n\t\t 1834 1817 0 1817 9445 0 1817 9437 0 9437 9445 0 1817 1819 0 1819 9437 0 1819 9438 0\n\t\t 9438 9437 0 1819 1839 0 1839 9438 0 1839 1846 0 1846 9438 0 1839 1821 0 1821 1846 0\n\t\t 1821 8719 0;\n\tsetAttr \".ed[5976:6141]\" 8719 1846 0 1821 1841 0 1841 8719 0 1841 1844 0 1844 8719 0\n\t\t 1841 1822 0 1822 1844 0 1822 12128 0 12128 1844 0 1822 1824 0 1824 12128 0 1824 1848 0\n\t\t 1848 12128 0 1824 1825 0 1825 1848 0 1825 8845 0 8845 1848 0 1825 1814 0 1814 8845 0\n\t\t 8846 8845 0 1828 1795 0 1795 1807 0 1807 1828 0 1809 1828 0 1829 1828 0 1829 1830 0\n\t\t 1830 1828 0 8987 1830 0 1829 8987 0 1832 8987 0 1813 8987 0 1813 1833 0 1833 8987 0\n\t\t 1795 1805 0 1805 1807 0 1805 1815 0 1805 1834 0 1805 1835 0 1835 1834 0 1835 1836 0\n\t\t 1836 1834 0 1836 1817 0 1836 1819 0 1836 1837 0 1837 1819 0 1837 1838 0 1838 1819 0\n\t\t 1838 1839 0 1838 1821 0 1838 1840 0 1840 1821 0 1840 1802 0 1802 1821 0 1802 1841 0\n\t\t 1802 1822 0 1802 1801 0 1801 1822 0 1801 12067 0 12067 1822 0 12067 1824 0 12067 1825 0\n\t\t 12067 1798 0 1798 1825 0 1798 1797 0 1797 1825 0 1797 1814 0 1797 1813 0 1797 1833 0\n\t\t 1811 1810 0 1810 12100 0 12100 1811 0 12100 1827 0 1827 1811 0 12100 8718 0 8718 1827 0\n\t\t 12100 1818 0 1818 8718 0 12100 12178 0 12178 1818 0 12100 1808 0 1808 12178 0 12178 1816 0\n\t\t 1816 1818 0 1818 8934 0 8934 8718 0 1818 1820 0 1820 8934 0 8934 1847 0 1847 8718 0\n\t\t 8718 12240 0 12240 1827 0 8718 1823 0 1823 12240 0 12240 1826 0 1826 1827 0 1827 1812 0\n\t\t 1812 1811 0 1849 1916 0 1916 1917 0 1917 1849 0 1917 1850 0 1850 1849 0 1849 1851 0\n\t\t 1851 1916 0 1851 1852 0 1852 1916 0 1853 1851 0 1849 1853 0 1849 1854 0 1854 1853 0\n\t\t 1850 1854 0 1850 1855 0 1855 1854 0 1917 1856 0 1856 1850 0 1856 1857 0 1857 1850 0\n\t\t 1857 1855 0 1857 1858 0 1858 1855 0 1907 1855 0 1858 1907 0 1907 1854 0 1858 1906 0\n\t\t 1906 1907 0 1858 1901 0 1901 1906 0 1901 1902 0 1902 1906 0 1902 1859 0 1859 1906 0\n\t\t 1857 1860 0 1860 1858 0 1860 1901 0 1856 1860 0 1854 1908 0 1908 1853 0 1907 1908 0\n\t\t 1908 1861 0 1861 1853 0 1856 1862 0 1862 1860 0 1862 1903 0 1903 1860 0 1861 1863 0\n\t\t 1863 1853 0 1864 1863 0 1863 1910 0 1910 1864 0 1910 1911 0 1911 1864 0 1911 1912 0\n\t\t 1912 1864 0 1912 1865 0 1865 1864 0 1853 1864 0 1865 1853 0 1865 1851 0 1865 1866 0\n\t\t 1866 1851 0 1866 1852 0 1912 1914 0 1914 1865 0 1914 1866 0 1918 1868 0 1868 1867 0;\n\tsetAttr \".ed[6142:6307]\" 1867 1918 0 1867 9129 0 9129 1918 0 1867 9142 0 9142 9129 0\n\t\t 9142 9130 0 9130 9129 0 1918 9210 0 9210 1868 0 9210 1873 0 1873 1868 0 9210 9211 0\n\t\t 9211 1873 0 9211 1875 0 1875 1873 0 1876 1875 0 9211 1876 0 9211 1915 0 1915 1876 0\n\t\t 1915 1913 0 1913 1876 0 1913 1877 0 1877 1876 0 1913 9798 0 9798 1877 0 9798 1879 0\n\t\t 1879 1877 0 9800 9799 0 9799 9790 0 9790 9800 0 9790 1881 0 1881 9800 0 9815 9789 0\n\t\t 9789 9791 0 9791 9815 0 9791 1883 0 1883 9815 0 9791 12674 0 12674 1883 0 12674 1884 0\n\t\t 1884 1883 0 12674 10029 0 10029 1884 0 10029 1886 0 1886 1884 0 10029 10030 0 10030 1886 0\n\t\t 10030 1888 0 1888 1886 0 10030 10045 0 10045 1888 0 10045 1890 0 1890 1888 0 10045 10115 0\n\t\t 10115 1890 0 10115 1892 0 1892 1890 0 10115 1905 0 1905 1892 0 1905 1893 0 1893 1892 0\n\t\t 1905 12737 0 12737 1893 0 12737 1895 0 1895 1893 0 12737 9629 0 9629 1895 0 9629 1896 0\n\t\t 1896 1895 0 9629 9630 0 9630 1896 0 9630 12944 0 12944 1896 0 1897 9631 0 9631 9675 0\n\t\t 9675 1897 0 9675 12952 0 12952 1897 0 1898 1904 0 1904 1871 0 1871 1898 0 1871 1870 0\n\t\t 1870 1898 0 1860 1900 0 1900 1899 0 1899 1860 0 1899 1901 0 1899 1894 0 1894 1901 0\n\t\t 1894 1902 0 1903 1900 0 1903 9674 0 9674 1900 0 1862 9674 0 1862 9131 0 9131 9674 0\n\t\t 1894 12738 0 12738 1902 0 12738 1859 0 12738 1891 0 1891 1859 0 1891 1906 0 1891 1907 0\n\t\t 1891 1889 0 1889 1907 0 1889 1887 0 1887 1907 0 1887 1908 0 1887 1885 0 1885 1908 0\n\t\t 1885 1861 0 1885 1909 0 1909 1861 0 1909 1863 0 1909 1882 0 1882 1863 0 1882 1910 0\n\t\t 1882 1880 0 1880 1910 0 1880 1911 0 1880 1912 0 1880 1878 0 1878 1912 0 1878 9605 0\n\t\t 9605 1912 0 9605 1914 0 9605 9606 0 9606 1914 0 9606 1866 0 9606 1874 0 1874 1866 0\n\t\t 1874 1852 0 1874 1872 0 1872 1852 0 1872 1916 0 1872 1917 0 1872 12393 0 12393 1917 0\n\t\t 12393 1856 0 12393 1869 0 1869 1856 0 1869 9131 0 9131 1856 0 1964 13144 0 13144 1919 0\n\t\t 1919 1964 0 1919 1921 0 1921 1964 0 1921 1922 0 1922 1964 0 1922 1963 0 1963 1964 0\n\t\t 13144 1967 0 1967 1919 0 1967 1945 0 1945 1919 0 13158 1963 0 1922 13158 0 1922 1924 0\n\t\t 1924 13158 0 1924 1925 0 1925 13158 0 1925 1972 0 1972 13158 0 13224 1972 0 1925 13224 0;\n\tsetAttr \".ed[6308:6473]\" 1925 1927 0 1927 13224 0 1927 1928 0 1928 13224 0 1928 1971 0\n\t\t 1971 13224 0 11511 1971 0 1928 11511 0 1928 1930 0 1930 11511 0 1930 1931 0 1931 11511 0\n\t\t 1931 11512 0 11512 11511 0 1969 11512 0 1931 1969 0 1931 1933 0 1933 1969 0 1933 1934 0\n\t\t 1934 1969 0 1934 11732 0 11732 1969 0 11726 11732 0 1934 11726 0 1934 1937 0 1937 11726 0\n\t\t 1937 1938 0 1938 11726 0 1938 11727 0 11727 11726 0 11697 11727 0 1938 11697 0 1938 1941 0\n\t\t 1941 11697 0 1941 1960 0 1960 11697 0 1960 11698 0 11698 11697 0 1943 1960 0 1941 1943 0\n\t\t 1943 1944 0 1944 1960 0 1944 1945 0 1945 1960 0 1941 1946 0 1946 1943 0 1938 1946 0\n\t\t 1938 1947 0 1947 1946 0 1937 1947 0 1937 1948 0 1948 1947 0 1934 1948 0 1934 1949 0\n\t\t 1949 1948 0 1933 1950 0 1950 1949 0 1949 1933 0 1931 1950 0 1931 1951 0 1951 1950 0\n\t\t 1930 1951 0 1930 1952 0 1952 1951 0 1928 1952 0 1928 1953 0 1953 1952 0 1927 1953 0\n\t\t 1927 1954 0 1954 1953 0 1925 1954 0 1925 1955 0 1955 1954 0 1924 1955 0 1924 1956 0\n\t\t 1956 1955 0 1922 1956 0 1922 1957 0 1957 1956 0 1921 1957 0 1921 1958 0 1958 1957 0\n\t\t 1919 1958 0 1919 1959 0 1959 1958 0 1945 1959 0 1944 1959 0 1967 1960 0 1967 11698 0\n\t\t 1923 10691 0 10691 10690 0 10690 1923 0 10690 10759 0 10759 1923 0 10690 1992 0 1992 10759 0\n\t\t 1992 10760 0 10760 10759 0 1992 10628 0 10628 10760 0 10628 1920 0 1920 10760 0 10628 10629 0\n\t\t 10629 1920 0 10629 13145 0 13145 1920 0 10629 2009 0 2009 13145 0 2009 1942 0 1942 13145 0\n\t\t 2009 10665 0 10665 1942 0 10665 1940 0 1940 1942 0 10665 10664 0 10664 1940 0 10664 1939 0\n\t\t 1939 1940 0 10664 10702 0 10702 1939 0 10702 1936 0 1936 1939 0 10702 2002 0 2002 1936 0\n\t\t 2002 1935 0 1935 1936 0 2002 11069 0 11069 1935 0 11069 13217 0 13217 1935 0 11069 11070 0\n\t\t 11070 13217 0 11070 1932 0 1932 13217 0 11070 10612 0 10612 1932 0 10612 1929 0 1929 1932 0\n\t\t 10612 1997 0 1997 1929 0 1997 13239 0 13239 1929 0 1997 10082 0 10082 13239 0 10082 1926 0\n\t\t 1926 13239 0 10082 10136 0 10136 1926 0 10136 13188 0 13188 1926 0 10136 10691 0\n\t\t 10691 13188 0 1923 13188 0 1990 13099 0 13099 10486 0 10486 1990 0 10486 1974 0 1974 1990 0\n\t\t 10486 10487 0 10487 1974 0 10487 1991 0 1991 1974 0 10487 10431 0 10431 1991 0 10431 1993 0\n\t\t 1993 1991 0;\n\tsetAttr \".ed[6474:6639]\" 10431 10432 0 10432 1993 0 10432 2008 0 2008 1993 0\n\t\t 1990 1978 0 1978 13099 0 1978 13062 0 13062 13099 0 1978 1995 0 1995 13062 0 1995 13035 0\n\t\t 13035 13062 0 1995 1998 0 1998 13035 0 1998 13036 0 13036 13035 0 1998 1999 0 1999 13036 0\n\t\t 1999 13056 0 13056 13036 0 1999 1981 0 1981 13056 0 1981 10421 0 10421 13056 0 1981 2001 0\n\t\t 2001 10421 0 2001 10422 0 10422 10421 0 2001 2003 0 2003 10422 0 2003 13118 0 13118 10422 0\n\t\t 2003 1984 0 1984 13118 0 1984 10478 0 10478 13118 0 1984 2006 0 2006 10478 0 2006 10475 0\n\t\t 10475 10478 0 2006 1987 0 1987 10475 0 1987 10215 0 10215 10475 0 1987 2010 0 2010 10215 0\n\t\t 2010 10216 0 10216 10215 0 2010 2008 0 2008 10216 0 10432 10216 0 1961 1962 0 1962 1990 0\n\t\t 1990 1961 0 1974 1961 0 1991 1961 0 1991 12945 0 12945 1961 0 1965 12945 0 1991 1965 0\n\t\t 1993 1965 0 2008 1965 0 2008 1966 0 1966 1965 0 1962 1994 0 1994 1990 0 1994 1978 0\n\t\t 1994 1995 0 1994 1996 0 1996 1995 0 1996 10083 0 10083 1995 0 10083 1998 0 10083 1999 0\n\t\t 10083 2000 0 2000 1999 0 2000 1970 0 1970 1999 0 1970 1981 0 1970 2001 0 1970 1968 0\n\t\t 1968 2001 0 1968 10770 0 10770 2001 0 10770 2003 0 10770 1984 0 10770 2004 0 2004 1984 0\n\t\t 2004 2005 0 2005 1984 0 2005 2006 0 2005 1987 0 2005 2007 0 2007 1987 0 2007 13140 0\n\t\t 13140 1987 0 13140 2010 0 13140 2008 0 13140 1966 0 1976 1975 0 1975 1973 0 1973 1976 0\n\t\t 1973 1989 0 1989 1976 0 1973 2011 0 2011 1989 0 1973 1980 0 1980 2011 0 1973 1979 0\n\t\t 1979 1980 0 1973 2012 0 2012 1979 0 1979 2013 0 2013 1980 0 1980 1982 0 1982 2011 0\n\t\t 1980 2014 0 2014 1982 0 1982 1983 0 1983 2011 0 2011 1986 0 1986 1989 0 2011 1985 0\n\t\t 1985 1986 0 1986 1988 0 1988 1989 0 1989 1977 0 1977 1976 0 2015 2017 0 2017 2016 0\n\t\t 2016 2015 0 2016 2018 0 2018 2015 0 2016 10910 0 10910 2018 0 10910 10894 0 10894 2018 0\n\t\t 2020 2019 0 2019 11514 0 11514 2020 0 11514 10907 0 10907 2020 0 2015 11002 0 11002 2017 0\n\t\t 11002 2024 0 2024 2017 0 11002 11508 0 11508 2024 0 11508 2026 0 2026 2024 0 10908 2021 0\n\t\t 2021 2027 0 2027 10908 0 2027 11539 0 11539 10908 0 2027 2050 0 2050 11539 0 2050 2049 0\n\t\t 2049 11539 0 11508 11439 0 11439 2026 0 11439 2030 0 2030 2026 0 11439 11440 0 11440 2030 0\n\t\t 11440 2032 0;\n\tsetAttr \".ed[6640:6805]\" 2032 2030 0 11440 11480 0 11480 2032 0 11480 2034 0\n\t\t 2034 2032 0 11480 11396 0 11396 2034 0 11396 2036 0 2036 2034 0 11396 11375 0 11375 2036 0\n\t\t 11375 2038 0 2038 2036 0 11375 11362 0 11362 2038 0 11362 2040 0 2040 2038 0 11362 11329 0\n\t\t 11329 2040 0 11329 11331 0 11331 2040 0 2042 11330 0 11330 11879 0 11879 2042 0 11879 11892 0\n\t\t 11892 2042 0 2044 11880 0 11880 2045 0 2045 2044 0 2045 2046 0 2046 2044 0 2045 2047 0\n\t\t 2047 2046 0 2047 2048 0 2048 2046 0 2047 2049 0 2049 2048 0 2050 2048 0 11253 2037 0\n\t\t 2037 2035 0 2035 11253 0 2035 11254 0 11254 11253 0 2035 2033 0 2033 11254 0 2033 12605 0\n\t\t 12605 11254 0 2033 2031 0 2031 12605 0 2031 11278 0 11278 12605 0 2031 2029 0 2029 11278 0\n\t\t 2029 11279 0 11279 11278 0 2029 2025 0 2025 11279 0 2025 11553 0 11553 11279 0 2025 2023 0\n\t\t 2023 11553 0 2023 2060 0 2060 11553 0 2023 10895 0 10895 2060 0 10895 13258 0 13258 2060 0\n\t\t 10895 10892 0 10892 13258 0 10892 2061 0 2061 13258 0 10892 10893 0 10893 2061 0\n\t\t 10893 13252 0 13252 2061 0 10893 10909 0 10909 13252 0 10909 13253 0 13253 13252 0\n\t\t 13254 2022 0 2022 2028 0 2028 13254 0 2028 12572 0 12572 13254 0 2028 11978 0 11978 12572 0\n\t\t 11978 12545 0 12545 12572 0 11253 11387 0 11387 2037 0 11387 2039 0 2039 2037 0 11387 11378 0\n\t\t 11378 2039 0 11378 2041 0 2041 2039 0 11378 11379 0 11379 2041 0 11379 2043 0 2043 2041 0\n\t\t 11878 11380 0 11380 13266 0 13266 11878 0 13266 11897 0 11897 11878 0 13266 12543 0\n\t\t 12543 11897 0 12543 11898 0 11898 11897 0 12543 12545 0 12545 11898 0 11978 11898 0\n\t\t 11552 2055 0 2055 13251 0 13251 11552 0 13251 2062 0 2062 11552 0 13251 12573 0 12573 2062 0\n\t\t 13251 2056 0 2056 12573 0 2056 2063 0 2063 12573 0 12573 12544 0 12544 2062 0 12544 2051 0\n\t\t 2051 2062 0 12544 2058 0 2058 2051 0 2058 2064 0 2064 2051 0 2058 2065 0 2065 2064 0\n\t\t 2064 2066 0 2066 2051 0 2051 2054 0 2054 2062 0 2051 2053 0 2053 2054 0 2051 2052 0\n\t\t 2052 2053 0 2052 2067 0 2067 2053 0 2057 2059 0 2059 2068 0 2068 2057 0 12232 12539 0\n\t\t 12539 2069 0 2069 12232 0 2069 9412 0 9412 12232 0 12539 2099 0 2099 2069 0 2099 2136 0\n\t\t 2136 2069 0 9439 2069 0 2136 9439 0 2136 9440 0 9440 9439 0 9439 2153 0 2153 2069 0\n\t\t 2153 9412 0 9413 9412 0 2153 9413 0 2153 2156 0 2156 9413 0;\n\tsetAttr \".ed[6806:6971]\" 2136 2151 0 2151 9440 0 2151 2176 0 2176 9440 0 9828 9893 0\n\t\t 9893 2075 0 2075 9828 0 2075 2076 0 2076 9828 0 2175 9828 0 2076 2175 0 2076 2077 0\n\t\t 2077 2175 0 2078 2075 0 9893 2078 0 9893 9842 0 9842 2078 0 2077 12387 0 12387 2175 0\n\t\t 12387 9849 0 9849 2175 0 2076 2157 0 2157 2077 0 2075 2157 0 2157 9229 0 9229 2077 0\n\t\t 2075 9953 0 9953 2157 0 2078 9953 0 2078 9954 0 9954 9953 0 2078 2082 0 2082 9954 0\n\t\t 9842 2082 0 2082 2160 0 2160 9954 0 12463 2160 0 2082 12463 0 2082 2084 0 2084 12463 0\n\t\t 2162 12463 0 2084 2162 0 2084 2085 0 2085 2162 0 9743 2084 0 2082 9743 0 9743 2085 0\n\t\t 2082 9843 0 9843 9743 0 9842 9843 0 9743 9705 0 9705 2085 0 9705 9992 0 9992 2085 0\n\t\t 9992 9972 0 9972 2085 0 9992 9973 0 9973 9972 0 9972 9993 0 9993 2085 0 9993 2162 0\n\t\t 9993 9994 0 9994 2162 0 9994 10265 0 10265 2162 0 9229 9215 0 9215 2077 0 9215 12387 0\n\t\t 2093 2095 0 2095 10225 0 10225 2093 0 10225 10226 0 10226 2093 0 2093 10183 0 10183 2095 0\n\t\t 10183 10184 0 10184 2095 0 2186 2095 0 10184 2186 0 10184 9583 0 9583 2186 0 10184 10185 0\n\t\t 10185 9583 0 10185 9581 0 9581 9583 0 10185 2070 0 2070 9581 0 2070 2182 0 2182 9581 0\n\t\t 2070 12233 0 12233 2182 0 12233 8937 0 8937 2182 0 12233 10225 0 10225 8937 0 2186 8939 0\n\t\t 8939 2095 0 8939 10225 0 8939 8937 0 2094 2102 0 2102 2071 0 2071 2094 0 2096 2094 0\n\t\t 2071 2096 0 2071 2103 0 2103 2096 0 2071 2074 0 2074 2103 0 2074 2104 0 2104 2103 0\n\t\t 2074 2138 0 2138 2104 0 2138 2105 0 2105 2104 0 2138 8956 0 8956 2105 0 8956 2107 0\n\t\t 2107 2105 0 8956 8957 0 8957 2107 0 8957 2109 0 2109 2107 0 8957 2139 0 2139 2109 0\n\t\t 2139 2110 0 2110 2109 0 2139 8870 0 8870 2110 0 8870 2111 0 2111 2110 0 8870 12131 0\n\t\t 12131 2111 0 12131 2113 0 2113 2111 0 12131 2142 0 2142 2113 0 2142 2114 0 2114 2113 0\n\t\t 2142 12082 0 12082 2114 0 12082 2116 0 2116 2114 0 2117 2116 0 12082 2117 0 12082 12083 0\n\t\t 12083 2117 0 2118 2117 0 12083 2118 0 12083 12660 0 12660 2118 0 12660 12661 0 12661 2118 0\n\t\t 12661 2120 0 2120 2118 0 12661 11997 0 11997 2120 0 11997 11999 0 11999 2120 0 11982 2122 0\n\t\t 2122 11998 0 11998 11982 0 11998 11983 0 11983 11982 0 2123 11984 0 11984 11989 0\n\t\t 11989 2123 0;\n\tsetAttr \".ed[6972:7137]\" 11989 2126 0 2126 2123 0 11989 11990 0 11990 2126 0\n\t\t 11990 2128 0 2128 2126 0 11990 12018 0 12018 2128 0 12018 2130 0 2130 2128 0 12018 2149 0\n\t\t 2149 2130 0 2149 2131 0 2131 2130 0 2149 12060 0 12060 2131 0 12060 2133 0 2133 2131 0\n\t\t 12060 12061 0 12061 2133 0 12061 2134 0 2134 2133 0 2135 2134 0 12061 2135 0 12061 12106 0\n\t\t 12106 2135 0 12106 10186 0 10186 2135 0 10186 2098 0 2098 2135 0 2098 2097 0 2097 2135 0\n\t\t 2156 12337 0 12337 9413 0 12337 12291 0 12291 9413 0 12337 9375 0 9375 12291 0 9375 2106 0\n\t\t 2106 12291 0 9375 9321 0 9321 2106 0 9321 2108 0 2108 2106 0 9321 2161 0 2161 2108 0\n\t\t 2161 8869 0 8869 2108 0 2161 12198 0 12198 8869 0 12198 2141 0 2141 8869 0 12198 2163 0\n\t\t 2163 2141 0 2163 2112 0 2112 2141 0 12132 2112 0 2163 12132 0 2163 11861 0 11861 12132 0\n\t\t 11861 11862 0 11862 12132 0 11862 2115 0 2115 12132 0 11862 9455 0 9455 2115 0 9455 2145 0\n\t\t 2145 2115 0 2119 2145 0 9455 2119 0 9455 2165 0 2165 2119 0 2146 2119 0 2165 2146 0\n\t\t 2165 2166 0 2166 2146 0 2166 9429 0 9429 2146 0 9429 2121 0 2121 2146 0 9429 9707 0\n\t\t 9707 2121 0 9707 2124 0 2124 2121 0 9707 9753 0 9753 2124 0 9753 2125 0 2125 2124 0\n\t\t 9753 9783 0 9783 2125 0 9783 2127 0 2127 2125 0 9783 11765 0 11765 2127 0 11765 2129 0\n\t\t 2129 2127 0 11765 11662 0 11662 2129 0 11662 12189 0 12189 2129 0 11662 11663 0 11663 12189 0\n\t\t 11663 2132 0 2132 12189 0 11663 2176 0 2176 2132 0 2151 2132 0 9441 2177 0 2177 2152 0\n\t\t 2152 9441 0 2152 2072 0 2072 9441 0 2152 9214 0 9214 2072 0 9214 9212 0 9212 2072 0\n\t\t 9213 2155 0 2155 2154 0 2154 9213 0 2154 9263 0 9263 9213 0 2154 9230 0 9230 9263 0\n\t\t 9230 2137 0 2137 9263 0 9230 2080 0 2080 2137 0 2080 2158 0 2158 2137 0 2080 2081 0\n\t\t 2081 2158 0 2081 2159 0 2159 2158 0 2081 12462 0 12462 2159 0 12462 9322 0 9322 2159 0\n\t\t 2140 9322 0 12462 2140 0 12462 2083 0 2083 2140 0 2083 12620 0 12620 2140 0 12620 12628 0\n\t\t 12628 2140 0 2143 12628 0 12620 2143 0 12620 2092 0 2092 2143 0 2092 2091 0 2091 2143 0\n\t\t 2091 2144 0 2144 2143 0 2091 2090 0 2090 2144 0 2090 2164 0 2164 2144 0 2165 2164 0\n\t\t 2090 2165 0 2090 2088 0 2088 2165 0 2088 2166 0 2088 2089 0 2089 2166 0 2089 2087 0\n\t\t 2087 2166 0;\n\tsetAttr \".ed[7138:7303]\" 2087 2167 0 2167 2166 0 2087 9704 0 9704 2167 0 9704 9706 0\n\t\t 9706 2167 0 2169 2168 0 2168 2170 0 2170 2169 0 2170 2171 0 2171 2169 0 2170 2086 0\n\t\t 2086 2171 0 2086 2172 0 2172 2171 0 2086 2079 0 2079 2172 0 2079 2147 0 2147 2172 0\n\t\t 2079 2173 0 2173 2147 0 2173 2148 0 2148 2147 0 2150 2148 0 2173 2150 0 2173 2174 0\n\t\t 2174 2150 0 2174 9829 0 9829 2150 0 9829 12574 0 12574 2150 0 9829 9848 0 9848 12574 0\n\t\t 9848 2073 0 2073 12574 0 12694 9655 0 9655 12710 0 12710 12694 0 12710 12695 0 12695 12694 0\n\t\t 12694 2185 0 2185 9655 0 2185 9656 0 9656 9655 0 12709 2179 0 2179 12699 0 12699 12709 0\n\t\t 12699 2100 0 2100 12709 0 9582 12699 0 2179 9582 0 2179 9657 0 9657 9582 0 2183 2180 0\n\t\t 2180 12689 0 12689 2183 0 12689 9584 0 9584 2183 0 12688 2178 0 2178 12692 0 12692 12688 0\n\t\t 12692 2184 0 2184 12688 0 8940 12692 0 2178 8940 0 2178 12696 0 12696 8940 0 2187 2181 0\n\t\t 2181 8938 0 8938 2187 0 8938 2101 0 2101 2187 0 2188 2190 0 2190 9651 0 9651 2188 0\n\t\t 9651 9652 0 9652 2188 0 2190 2192 0 2192 9651 0 2192 9654 0 9654 9651 0 2194 2190 0\n\t\t 2188 2194 0 2194 2192 0 2188 2195 0 2195 2194 0 2195 2204 0 2204 2194 0 2204 12825 0\n\t\t 12825 2194 0 12825 2203 0 2203 2194 0 2203 2197 0 2197 2194 0 2197 2192 0 2200 2197 0\n\t\t 2203 2200 0 2200 2192 0 2203 11064 0 11064 2200 0 9839 9654 0 2192 9839 0 2192 9758 0\n\t\t 9758 9839 0 2200 9758 0 2199 9757 0 9757 11065 0 11065 2199 0 11065 2205 0 2205 2199 0\n\t\t 2199 2201 0 2201 9757 0 2201 2202 0 2202 9757 0 9840 2202 0 2201 9840 0 2201 13203 0\n\t\t 13203 9840 0 11063 2196 0 2196 12824 0 12824 11063 0 12824 11081 0 11081 11063 0\n\t\t 2206 11063 0 11081 2206 0 2198 2207 0 2207 2191 0 2191 2198 0 2191 2193 0 2193 2198 0\n\t\t 2191 2189 0 2189 2193 0 2208 10813 0 10813 10803 0 10803 2208 0 10805 2208 0 10803 10805 0\n\t\t 10805 10747 0 10747 2208 0 2217 2208 0 10747 2217 0 2217 13174 0 13174 2208 0 2220 2208 0\n\t\t 13174 2220 0 2220 13206 0 13206 2208 0 11724 2208 0 13206 11724 0 11724 11604 0 11604 2208 0\n\t\t 11604 10813 0 11757 10806 0 10806 2211 0 2211 11757 0 2211 11867 0 11867 11757 0\n\t\t 10861 11868 0 11868 10804 0 10804 10861 0 10804 10814 0 10814 10861 0 2212 11758 0\n\t\t 11758 11830 0 11830 2212 0 11830 2215 0;\n\tsetAttr \".ed[7304:7469]\" 2215 2212 0 10748 2231 0 2231 10726 0 10726 10748 0\n\t\t 10726 10729 0 10729 10748 0 10730 10727 0 10727 10736 0 10736 10730 0 10736 2209 0\n\t\t 2209 10730 0 13175 10735 0 10735 10683 0 10683 13175 0 10683 10686 0 10686 13175 0\n\t\t 10687 10684 0 10684 11689 0 11689 10687 0 11689 13207 0 13207 10687 0 2210 11690 0\n\t\t 11690 11702 0 11702 2210 0 11702 11723 0 11723 2210 0 2223 11703 0 11703 13114 0\n\t\t 13114 2223 0 13114 2224 0 2224 2223 0 10862 2214 0 2214 11605 0 11605 10862 0 11605 2238 0\n\t\t 2238 10862 0 2225 11756 0 11756 11866 0 11866 2225 0 11866 11869 0 11869 2225 0 2228 2226 0\n\t\t 2226 10863 0 10863 2228 0 10863 13332 0 13332 2228 0 2227 11755 0 11755 11828 0 11828 2227 0\n\t\t 11828 11829 0 11829 2227 0 11831 2230 0 2230 2232 0 2232 11831 0 2232 10728 0 10728 11831 0\n\t\t 2216 13326 0 13326 13330 0 13330 2216 0 13330 2218 0 2218 2216 0 10737 2233 0 2233 13333 0\n\t\t 13333 10737 0 13333 10685 0 10685 10737 0 2219 2234 0 2234 2235 0 2235 2219 0 2235 2221 0\n\t\t 2221 2219 0 11691 13331 0 13331 2236 0 2236 11691 0 2236 11704 0 11704 11691 0 2222 13123 0\n\t\t 13123 13115 0 13115 2222 0 13115 13113 0 13113 2222 0 2229 2213 0 2213 13112 0 13112 2229 0\n\t\t 13112 2237 0 2237 2229 0 10495 10496 0 10496 2240 0 2240 10495 0 2240 2242 0 2242 10495 0\n\t\t 2243 2240 0 10496 2243 0 10496 11123 0 11123 2243 0 2240 2244 0 2244 2242 0 2243 2244 0\n\t\t 2244 2245 0 2245 2242 0 2254 2245 0 2244 2254 0 2244 11165 0 11165 2254 0 13061 11165 0\n\t\t 2244 13061 0 2244 2247 0 2247 13061 0 2243 2247 0 2247 10398 0 10398 13061 0 2243 10398 0\n\t\t 10398 10399 0 10399 13061 0 11123 11124 0 11124 2243 0 11124 2251 0 2251 2243 0 2251 10398 0\n\t\t 2248 2249 0 2249 2253 0 2253 2248 0 2253 10400 0 10400 2248 0 2248 10542 0 10542 2249 0\n\t\t 10542 2252 0 2252 2249 0 10542 11125 0 11125 2252 0 11125 11171 0 11171 2252 0 2246 2250 0\n\t\t 2250 13038 0 13038 2246 0 13038 11164 0 11164 2246 0 11164 2255 0 2255 2246 0 2256 2258 0\n\t\t 2258 2257 0 2257 2256 0 2257 2241 0 2241 2256 0 2241 2239 0 2239 2256 0 2259 13104 0\n\t\t 13104 13102 0 13102 2259 0 10599 13104 0 2259 10599 0 2259 10601 0 10601 10599 0\n\t\t 10577 10601 0 2259 10577 0 2259 10579 0 10579 10577 0 10046 10579 0 2259 10046 0\n\t\t 2259 10048 0 10048 10046 0 10008 10048 0 2259 10008 0 2259 10010 0 10010 10008 0\n\t\t 13102 10010 0;\n\tsetAttr \".ed[7470:7635]\" 2260 2263 0 2263 10284 0 10284 2260 0 10284 10261 0\n\t\t 10261 2260 0 13105 2275 0 2275 10201 0 10201 13105 0 10201 13103 0 13103 13105 0\n\t\t 10607 10285 0 10285 10600 0 10600 10607 0 10600 2266 0 2266 10607 0 10609 10606 0\n\t\t 10606 10602 0 10602 10609 0 10602 2261 0 2261 10609 0 9949 10611 0 10611 10578 0\n\t\t 10578 9949 0 10578 2262 0 2262 9949 0 10051 9948 0 9948 10580 0 10580 10051 0 10580 10047 0\n\t\t 10047 10051 0 10101 10052 0 10052 2269 0 2269 10101 0 2269 10049 0 10049 10101 0\n\t\t 10088 10100 0 10100 2270 0 2270 10088 0 2270 2271 0 2271 10088 0 10205 10089 0 10089 10009 0\n\t\t 10009 10205 0 10009 10011 0 10011 10205 0 2272 2264 0 2264 10200 0 10200 2272 0 10200 10203 0\n\t\t 10203 2272 0 10259 10260 0 10260 10283 0 10283 10259 0 10283 10292 0 10292 10259 0\n\t\t 10262 2273 0 2273 10373 0 10373 10262 0 10373 10202 0 10202 10262 0 2276 2274 0 2274 10608 0\n\t\t 10608 2276 0 10608 2279 0 2279 2276 0 12866 2265 0 2265 10610 0 10610 12866 0 10610 12856 0\n\t\t 12856 12866 0 2280 2267 0 2267 9947 0 9947 2280 0 9947 2282 0 2282 2280 0 9950 2281 0\n\t\t 2281 10053 0 10053 9950 0 10053 12874 0 12874 9950 0 2283 2268 0 2268 10099 0 10099 2283 0\n\t\t 10099 10105 0 10105 2283 0 2285 2284 0 2284 10087 0 10087 2285 0 10087 2287 0 2287 2285 0\n\t\t 10090 2286 0 2286 10204 0 10204 10090 0 10204 12880 0 12880 10090 0 2278 2277 0 2277 2288 0\n\t\t 2288 2278 0 2288 2289 0 2289 2278 0 2290 9873 0 9873 9872 0 9872 2290 0 9872 2293 0\n\t\t 2293 2290 0 9830 2290 0 2293 9830 0 2293 2295 0 2295 9830 0 9830 2296 0 2296 2290 0\n\t\t 2296 2297 0 2297 2290 0 2290 9847 0 9847 9873 0 9847 9820 0 9820 9873 0 9817 2297 0\n\t\t 2296 9817 0 2296 9818 0 9818 9817 0 2301 9820 0 9847 2301 0 9847 9816 0 9816 2301 0\n\t\t 9872 9912 0 9912 2293 0 9912 2303 0 2303 2293 0 2303 2295 0 2303 2304 0 2304 2295 0\n\t\t 10968 2303 0 9912 10968 0 9912 10960 0 10960 10968 0 10970 2304 0 2303 10970 0 10968 10970 0\n\t\t 11032 2296 0 2296 2294 0 2294 11032 0 2294 11033 0 11033 11032 0 2294 2295 0 2295 11033 0\n\t\t 11018 2308 0 2308 2309 0 2309 11018 0 2309 11016 0 11016 11018 0 2309 2312 0 2312 11016 0\n\t\t 2295 11015 0 11015 11033 0 2304 11015 0 2312 11017 0 11017 11016 0 11018 2314 0 2314 2308 0\n\t\t 2314 10945 0 10945 2308 0 11032 10944 0 10944 2296 0 10944 9818 0 2304 2316 0;\n\tsetAttr \".ed[7636:7801]\" 2316 11015 0 2312 2316 0 2316 11017 0 10970 2316 0 2316 2317 0\n\t\t 2317 11017 0 10970 11077 0 11077 2316 0 11077 2317 0 11077 2319 0 2319 2317 0 11078 2307 0\n\t\t 2307 9059 0 9059 11078 0 9056 9058 0 9058 10971 0 10971 9056 0 10971 2305 0 2305 9056 0\n\t\t 9049 9057 0 9057 10969 0 10969 9049 0 10969 2306 0 2306 9049 0 9048 9049 0 2306 9048 0\n\t\t 2306 2302 0 2302 9048 0 12318 9048 0 2302 12318 0 2302 2291 0 2291 12318 0 2375 12318 0\n\t\t 2291 2375 0 2291 2292 0 2292 2375 0 12325 2375 0 2292 12325 0 2292 2298 0 2298 12325 0\n\t\t 9059 9065 0 9065 11078 0 11135 2318 0 2318 2380 0 2380 11135 0 2374 12325 0 2298 2374 0\n\t\t 2298 2301 0 2301 2374 0 10845 2374 0 2301 10845 0 9816 10845 0 2373 2322 0 2322 2299 0\n\t\t 2299 2373 0 2299 2300 0 2300 2373 0 9333 9335 0 9335 9819 0 9819 9333 0 9819 2315 0\n\t\t 2315 9333 0 12538 2372 0 2372 10945 0 10945 12538 0 2314 12538 0 2371 12538 0 2314 2371 0\n\t\t 2314 2310 0 2310 2371 0 12321 2371 0 2310 12321 0 2310 2311 0 2311 12321 0 2311 2313 0\n\t\t 2313 12321 0 2313 8936 0 8936 12321 0 2313 11019 0 11019 8936 0 11019 8935 0 8935 8936 0\n\t\t 12293 8935 0 11019 12293 0 11019 11135 0 11135 12293 0 2380 12293 0 2345 13264 0\n\t\t 13264 11203 0 11203 2345 0 11203 11204 0 11204 2345 0 11206 2345 0 11204 11206 0\n\t\t 11204 2384 0 2384 11206 0 11207 11206 0 2384 11207 0 2384 10081 0 10081 11207 0 2349 11207 0\n\t\t 10081 2349 0 10081 10175 0 10175 2349 0 2351 2349 0 10175 2351 0 10175 10177 0 10177 2351 0\n\t\t 9331 2351 0 10177 9331 0 10177 10280 0 10280 9331 0 9356 9331 0 10280 9356 0 10280 10235 0\n\t\t 10235 9356 0 2357 9356 0 10235 2357 0 10235 10237 0 10237 2357 0 2359 2357 0 10237 2359 0\n\t\t 10237 2399 0 2399 2359 0 11970 2359 0 2399 11970 0 2399 11929 0 11929 11970 0 11937 11970 0\n\t\t 11929 11937 0 11929 11871 0 11871 11937 0 11842 11937 0 11871 11842 0 11871 11853 0\n\t\t 11853 11842 0 11843 11842 0 11853 11843 0 11853 11840 0 11840 11843 0 11858 11843 0\n\t\t 11840 11858 0 11840 11421 0 11421 11858 0 2366 11858 0 11421 2366 0 11421 11423 0\n\t\t 11423 2366 0 9222 2366 0 11423 9222 0 11423 11466 0 11466 9222 0 9223 9222 0 11466 9223 0\n\t\t 11466 2408 0 2408 9223 0 13264 9223 0 2408 13264 0 2408 11203 0 2343 2344 0 2344 2327 0\n\t\t 2327 2343 0 2327 13261 0 13261 2343 0 2346 2343 0 13261 2346 0;\n\tsetAttr \".ed[7802:7967]\" 13261 2329 0 2329 2346 0 2347 2346 0 2329 2347 0 2329 2330 0\n\t\t 2330 2347 0 2348 2347 0 2330 2348 0 2330 11541 0 11541 2348 0 9301 2348 0 11541 9301 0\n\t\t 11541 9330 0 9330 9301 0 9302 9301 0 9330 9302 0 9330 2353 0 2353 9302 0 9360 9302 0\n\t\t 2353 9360 0 2353 2355 0 2355 9360 0 9390 9360 0 2355 9390 0 2355 9382 0 9382 9390 0\n\t\t 9207 9390 0 9382 9207 0 9382 9383 0 9383 9207 0 9208 9207 0 9383 9208 0 9383 2331 0\n\t\t 2331 9208 0 9161 9208 0 2331 9161 0 2331 2333 0 2333 9161 0 9141 9161 0 2333 9141 0\n\t\t 2333 2335 0 2335 9141 0 9126 9141 0 2335 9126 0 2335 2337 0 2337 9126 0 9127 9126 0\n\t\t 2337 9127 0 2337 2339 0 2339 9127 0 9178 9128 0 9128 11859 0 11859 9178 0 11859 9256 0\n\t\t 9256 9178 0 9225 2365 0 2365 9257 0 9257 9225 0 9257 2368 0 2368 9225 0 9235 2367 0\n\t\t 2367 9221 0 9221 9235 0 9221 2370 0 2370 9235 0 2344 9235 0 2370 2344 0 2370 2327 0\n\t\t 2361 2362 0 2362 12473 0 12473 2361 0 2323 12473 0 2362 2323 0 2362 2363 0 2363 2323 0\n\t\t 9332 2323 0 2363 9332 0 2363 2364 0 2364 9332 0 9334 9332 0 2364 9334 0 2364 9177 0\n\t\t 9177 9334 0 10846 9334 0 9177 10846 0 9177 9224 0 9224 10846 0 12489 10846 0 9224 12489 0\n\t\t 9224 2369 0 2369 12489 0 2321 12489 0 2369 2321 0 2369 11265 0 11265 2321 0 12317 2321 0\n\t\t 11265 12317 0 11265 11457 0 11457 12317 0 2320 12317 0 11457 2320 0 11457 11458 0\n\t\t 11458 2320 0 2376 2320 0 11458 2376 0 11458 11550 0 11550 2376 0 2377 2376 0 11550 2377 0\n\t\t 11550 11547 0 11547 2377 0 2378 2377 0 11547 2378 0 11547 2350 0 2350 2378 0 2379 2378 0\n\t\t 2350 2379 0 2350 2352 0 2352 2379 0 9066 2379 0 2352 9066 0 2352 2354 0 2354 9066 0\n\t\t 2325 9066 0 2354 2325 0 2354 2356 0 2356 2325 0 2381 2325 0 2356 2381 0 2356 2358 0\n\t\t 2358 2381 0 2382 2381 0 2358 2382 0 2358 2360 0 2360 2382 0 2324 2382 0 2360 2324 0\n\t\t 2360 2361 0 2361 2324 0 12473 2324 0 2383 2385 0 2385 10080 0 10080 2383 0 10080 2328 0\n\t\t 2328 2383 0 2328 2326 0 2326 2383 0 2326 2386 0 2386 2383 0 2409 2386 0 2326 2409 0\n\t\t 2326 9111 0 9111 2409 0 2387 10080 0 2385 2387 0 2385 2388 0 2388 2387 0 10176 2387 0\n\t\t 2388 10176 0 2388 2390 0 2390 10176 0 10178 2389 0 2389 10180 0 10180 10178 0 10180 10295 0\n\t\t 10295 10178 0;\n\tsetAttr \".ed[7968:8133]\" 10279 2391 0 2391 2392 0 2392 10279 0 2392 2394 0 2394 10279 0\n\t\t 10236 2393 0 2393 10362 0 10362 10236 0 10362 10252 0 10252 10236 0 10238 2395 0\n\t\t 2395 2396 0 2396 10238 0 2396 2398 0 2398 10238 0 10243 2397 0 2397 10278 0 10278 10243 0\n\t\t 10278 2400 0 2400 10243 0 2332 10243 0 2400 2332 0 2400 2401 0 2401 2332 0 2334 2332 0\n\t\t 2401 2334 0 2401 2402 0 2402 2334 0 2336 2334 0 2402 2336 0 2402 2403 0 2403 2336 0\n\t\t 11841 2336 0 2403 11841 0 2403 2404 0 2404 11841 0 11422 2338 0 2338 12070 0 12070 11422 0\n\t\t 12070 2405 0 2405 11422 0 2341 2340 0 2340 13338 0 13338 2341 0 13338 2406 0 2406 2341 0\n\t\t 11467 2341 0 2406 11467 0 2406 13340 0 13340 11467 0 9110 2342 0 2342 2407 0 2407 9110 0\n\t\t 2407 9112 0 9112 9110 0 2410 2412 0 2412 8688 0 8688 2410 0 8688 8689 0 8689 2410 0\n\t\t 2410 8704 0 8704 2412 0 8704 2415 0 2415 2412 0 2416 8704 0 2410 2416 0 2410 2417 0\n\t\t 2417 2416 0 8806 2410 0 8689 8806 0 8689 8705 0 8705 8806 0 2417 8808 0 8808 2416 0\n\t\t 8808 8726 0 8726 2416 0 2421 8807 0 8807 8806 0 8806 2421 0 8705 2421 0 8790 8688 0\n\t\t 2412 8790 0 2412 2423 0 2423 8790 0 2415 2423 0 2415 2424 0 2424 2423 0 2423 9446 0\n\t\t 9446 8790 0 9446 8791 0 8791 8790 0 9464 9446 0 2423 9464 0 2424 9464 0 2414 2416 0\n\t\t 2416 9538 0 9538 2414 0 9538 9539 0 9539 2414 0 2415 2414 0 9539 2415 0 2429 2428 0\n\t\t 2428 9535 0 9535 2429 0 9535 9432 0 9432 2429 0 9426 2429 0 9432 9426 0 9539 2432 0\n\t\t 2432 2415 0 2432 2424 0 9432 9433 0 9433 9426 0 2434 9535 0 2428 2434 0 2428 8729 0\n\t\t 8729 2434 0 8728 9538 0 2416 8728 0 8726 8728 0 2432 2436 0 2436 2424 0 2436 9426 0\n\t\t 9433 2436 0 2436 9464 0 9433 9442 0 9442 2436 0 2436 9434 0 9434 9464 0 9442 9434 0\n\t\t 9442 9436 0 9436 9434 0 9494 9465 0 9465 9435 0 9435 9494 0 2427 9495 0 9495 2497 0\n\t\t 2497 2427 0 2497 2425 0 2425 2427 0 9447 12516 0 12516 9387 0 9387 9447 0 9387 2426 0\n\t\t 2426 9447 0 9387 9388 0 9388 2426 0 9388 2422 0 2422 2426 0 9388 2498 0 2498 2422 0\n\t\t 2498 2411 0 2411 2422 0 2498 12313 0 12313 2411 0 12313 2413 0 2413 2411 0 12313 2499 0\n\t\t 2499 2413 0 2499 2418 0 2418 2413 0 9435 2496 0 2496 9494 0 9862 2438 0 2438 2439 0\n\t\t 2439 9862 0;\n\tsetAttr \".ed[8134:8299]\" 2499 12316 0 12316 2418 0 12316 2421 0 2421 2418 0 12316 2500 0\n\t\t 2500 2421 0 2500 8807 0 2419 12330 0 12330 9006 0 9006 2419 0 9006 2420 0 2420 2419 0\n\t\t 8727 9005 0 9005 8892 0 8892 8727 0 8892 2435 0 2435 8727 0 8729 8893 0 8893 9087 0\n\t\t 9087 8729 0 9087 2434 0 9087 2491 0 2491 2434 0 2491 2430 0 2430 2434 0 2491 2492 0\n\t\t 2492 2430 0 2492 2431 0 2431 2430 0 2433 2431 0 2492 2433 0 2492 2493 0 2493 2433 0\n\t\t 2437 2433 0 2493 2437 0 2493 2494 0 2494 2437 0 2494 2495 0 2495 2437 0 2495 2439 0\n\t\t 2439 2437 0 2495 9862 0 11838 9124 0 9124 11779 0 11779 11838 0 11779 9693 0 9693 11838 0\n\t\t 11779 11655 0 11655 9693 0 11655 9664 0 9664 9693 0 11655 11635 0 11635 9664 0 11635 9665 0\n\t\t 9665 9664 0 11635 11636 0 11636 9665 0 11636 10137 0 10137 9665 0 11636 11406 0 11406 10137 0\n\t\t 11406 10167 0 10167 10137 0 11406 11358 0 11358 10167 0 11358 11962 0 11962 10167 0\n\t\t 11358 2478 0 2478 11962 0 2478 11964 0 11964 11962 0 2478 11938 0 11938 11964 0 11938 10032 0\n\t\t 10032 11964 0 11938 11695 0 11695 10032 0 11695 2517 0 2517 10032 0 11695 11696 0\n\t\t 11696 2517 0 11696 2519 0 2519 2517 0 11696 11721 0 11721 2519 0 11721 11739 0 11739 2519 0\n\t\t 11721 11722 0 11722 11739 0 11722 11740 0 11740 11739 0 11722 11776 0 11776 11740 0\n\t\t 11776 9868 0 9868 11740 0 11776 11777 0 11777 9868 0 11777 9870 0 9870 9868 0 11777 2487 0\n\t\t 2487 9870 0 2487 9891 0 9891 9870 0 2487 12702 0 12702 9891 0 12702 11485 0 11485 9891 0\n\t\t 12702 9125 0 9125 11485 0 9125 11487 0 11487 11485 0 9125 9124 0 9124 11487 0 11838 11487 0\n\t\t 2467 9164 0 9164 2468 0 2468 2467 0 2468 2449 0 2449 2467 0 2468 2470 0 2470 2449 0\n\t\t 2470 2450 0 2450 2449 0 2470 11517 0 11517 2450 0 11517 2451 0 2451 2450 0 11517 2472 0\n\t\t 2472 2451 0 2472 2452 0 2452 2451 0 2472 2473 0 2473 2452 0 2473 2474 0 2474 2452 0\n\t\t 2473 2475 0 2475 2474 0 2475 2476 0 2476 2474 0 2475 2477 0 2477 2476 0 2477 11359 0\n\t\t 11359 2476 0 2477 2479 0 2479 11359 0 2479 2455 0 2455 11359 0 2479 2480 0 2480 2455 0\n\t\t 2480 2456 0 2456 2455 0 2480 2481 0 2481 2456 0 2481 2457 0 2457 2456 0 2481 2482 0\n\t\t 2482 2457 0 2482 2458 0 2458 2457 0 2482 9527 0 9527 2458 0 9527 2460 0 2460 2458 0\n\t\t 9527 9620 0 9620 2460 0 9620 2462 0;\n\tsetAttr \".ed[8300:8465]\" 2462 2460 0 9620 9588 0 9588 2462 0 9588 2463 0 2463 2462 0\n\t\t 11778 9587 0 9587 9561 0 9561 11778 0 9561 9576 0 9576 11778 0 9577 9560 0 9560 9562 0\n\t\t 9562 9577 0 9562 2464 0 2464 9577 0 12703 9563 0 9563 9165 0 9165 12703 0 9165 2490 0\n\t\t 2490 12703 0 9165 9164 0 9164 2490 0 2467 2490 0 9614 2483 0 2483 9526 0 9526 9614 0\n\t\t 9526 9607 0 9607 9614 0 9526 9520 0 9520 9607 0 9520 9608 0 9608 9607 0 9520 9483 0\n\t\t 9483 9608 0 9483 9622 0 9622 9608 0 9483 9482 0 9482 9622 0 9482 9860 0 9860 9622 0\n\t\t 9482 11339 0 11339 9860 0 11339 9861 0 9861 9860 0 11339 11352 0 11352 9861 0 11352 2440 0\n\t\t 2440 9861 0 11352 11384 0 11384 2440 0 11384 12515 0 12515 2440 0 11384 11383 0 11383 12515 0\n\t\t 11383 2441 0 2441 12515 0 11383 2471 0 2471 2441 0 2471 2442 0 2442 2441 0 2471 11447 0\n\t\t 11447 2442 0 11447 12312 0 12312 2442 0 11447 11446 0 11446 12312 0 11446 2443 0\n\t\t 2443 12312 0 11446 2469 0 2469 2443 0 2469 12315 0 12315 2443 0 2469 2489 0 2489 12315 0\n\t\t 2489 2444 0 2444 12315 0 2489 2488 0 2488 2444 0 2488 12329 0 12329 2444 0 2488 2486 0\n\t\t 2486 12329 0 2486 2445 0 2445 12329 0 2486 2485 0 2485 2445 0 2485 2446 0 2446 2445 0\n\t\t 2485 2484 0 2484 2446 0 2484 2447 0 2447 2446 0 2484 2483 0 2483 2447 0 9614 2447 0\n\t\t 2501 2503 0 2503 2502 0 2502 2501 0 2502 2504 0 2504 2501 0 2502 2505 0 2505 2504 0\n\t\t 2505 2448 0 2448 2504 0 2505 12940 0 12940 2448 0 12940 11488 0 11488 2448 0 2501 2507 0\n\t\t 2507 2503 0 2507 2508 0 2508 2503 0 2507 10138 0 10138 2508 0 10138 2510 0 2510 2508 0\n\t\t 10361 2509 0 2509 10166 0 10166 10361 0 10166 10168 0 10168 10361 0 2512 2511 0 2511 11963 0\n\t\t 11963 2512 0 11963 2513 0 2513 2512 0 12966 2453 0 2453 11965 0 11965 12966 0 11965 2514 0\n\t\t 2514 12966 0 12972 2454 0 2454 10033 0 10033 12972 0 10033 2516 0 2516 12972 0 10050 2515 0\n\t\t 2515 10034 0 10034 10050 0 10034 2518 0 2518 10050 0 10034 10111 0 10111 2518 0 10111 2520 0\n\t\t 2520 2518 0 10111 2459 0 2459 2520 0 2459 2521 0 2521 2520 0 2459 2461 0 2461 2521 0\n\t\t 2461 2522 0 2522 2521 0 2461 9869 0 9869 2522 0 9869 9888 0 9888 2522 0 2524 2523 0\n\t\t 2523 9871 0 9871 2524 0 9871 9898 0 9898 2524 0 2526 2525 0 2525 2527 0 2527 2526 0\n\t\t 2527 2528 0;\n\tsetAttr \".ed[8466:8631]\" 2528 2526 0 2527 11486 0 11486 2528 0 11486 13170 0\n\t\t 13170 2528 0 2529 2465 0 2465 2466 0 2466 2529 0 2466 2506 0 2506 2529 0 2530 2532 0\n\t\t 2532 2531 0 2531 2530 0 2531 2570 0 2570 2530 0 2533 2530 0 2570 2533 0 2570 10867 0\n\t\t 10867 2533 0 2535 2532 0 2530 2535 0 2530 2536 0 2536 2535 0 2535 2537 0 2537 2532 0\n\t\t 2537 2538 0 2538 2532 0 2538 2531 0 2539 2538 0 2537 2539 0 2537 2540 0 2540 2539 0\n\t\t 2538 2541 0 2541 2531 0 2539 2541 0 2542 2535 0 2536 2542 0 2536 2574 0 2574 2542 0\n\t\t 2543 2574 0 2536 2543 0 2536 2573 0 2573 2543 0 2530 2573 0 2533 2573 0 2539 2578 0\n\t\t 2578 2541 0 2544 2563 0 2563 10386 0 10386 2544 0 10386 2545 0 2545 2544 0 10855 2563 0\n\t\t 2544 10855 0 2544 2547 0 2547 10855 0 10856 10855 0 2547 10856 0 2547 2549 0 2549 10856 0\n\t\t 2565 10856 0 2549 2565 0 2549 2550 0 2550 2565 0 10498 2565 0 2550 10498 0 2550 2552 0\n\t\t 2552 10498 0 10499 10497 0 10497 10504 0 10504 10499 0 10504 2554 0 2554 10499 0\n\t\t 2555 13213 0 13213 10384 0 10384 2555 0 10384 10383 0 10383 2555 0 2556 2555 0 10383 2556 0\n\t\t 10383 13016 0 13016 2556 0 2558 2556 0 13016 2558 0 13016 2567 0 2567 2558 0 2559 2558 0\n\t\t 2567 2559 0 2567 13010 0 13010 2559 0 10572 10573 0 10573 10385 0 10385 10572 0 10385 13077 0\n\t\t 13077 10572 0 10586 10572 0 13077 10586 0 13077 2546 0 2546 10586 0 10410 10586 0\n\t\t 2546 10410 0 2546 2548 0 2548 10410 0 2572 10410 0 2548 2572 0 2548 13068 0 13068 2572 0\n\t\t 13030 2572 0 13068 13030 0 13068 2551 0 2551 13030 0 2575 13030 0 2551 2575 0 2551 2553 0\n\t\t 2553 2575 0 2560 13011 0 13011 10549 0 10549 2560 0 10549 10550 0 10550 2560 0 10635 10549 0\n\t\t 13011 10635 0 13011 2557 0 2557 10635 0 10654 10635 0 2557 10654 0 2557 2568 0 2568 10654 0\n\t\t 2562 10654 0 2568 2562 0 2568 2569 0 2569 2562 0 2561 2564 0 2564 2534 0 2534 2561 0\n\t\t 2534 2570 0 2570 2561 0 10574 2561 0 2570 10574 0 2531 10574 0 2533 2534 0 2564 2533 0\n\t\t 2564 2571 0 2571 2533 0 2571 10411 0 10411 2533 0 10411 2573 0 10411 2543 0 10411 2566 0\n\t\t 2566 2543 0 2566 2574 0 2566 13031 0 13031 2574 0 2541 10574 0 2541 2576 0 2576 10574 0\n\t\t 2577 2576 0 2541 2577 0 2578 2577 0 2579 2577 0 2578 2579 0 2539 2579 0 2580 2579 0\n\t\t 2539 2580 0 2540 2580 0 2581 2582 0;\n\tsetAttr \".ed[8632:8797]\" 2582 2623 0 2623 2581 0 2623 2583 0 2583 2581 0 2581 2584 0\n\t\t 2584 2582 0 2584 2620 0 2620 2582 0 2583 2585 0 2585 2581 0 2585 2586 0 2586 2581 0\n\t\t 2587 2585 0 2583 2587 0 2583 2588 0 2588 2587 0 2623 2588 0 2588 2631 0 2631 2587 0\n\t\t 2631 2589 0 2589 2587 0 2623 2628 0 2628 2588 0 2628 2631 0 2585 2590 0 2590 2586 0\n\t\t 2590 2626 0 2626 2586 0 2626 2591 0 2591 2586 0 2591 2625 0 2625 2586 0 2625 2584 0\n\t\t 2581 2625 0 2628 2629 0 2629 2631 0 2592 10808 0 10808 10807 0 10807 2592 0 10807 2595 0\n\t\t 2595 2592 0 10807 10826 0 10826 2595 0 10826 2597 0 2597 2595 0 10826 10841 0 10841 2597 0\n\t\t 10841 2599 0 2599 2597 0 10841 10901 0 10901 2599 0 10901 2601 0 2601 2599 0 10901 2613 0\n\t\t 2613 2601 0 2613 13178 0 13178 2601 0 2602 10121 0 10121 10123 0 10123 2602 0 10123 2603 0\n\t\t 2603 2602 0 10809 11036 0 11036 2604 0 2604 10809 0 2604 2615 0 2615 10809 0 2604 2605 0\n\t\t 2605 2615 0 2605 2617 0 2617 2615 0 2605 2606 0 2606 2617 0 2606 9901 0 9901 2617 0\n\t\t 2606 2608 0 2608 9901 0 2608 9902 0 9902 9901 0 10810 2622 0 2622 12839 0 12839 10810 0\n\t\t 12839 2593 0 2593 10810 0 12839 2621 0 2621 2593 0 2621 2596 0 2596 2593 0 2621 12724 0\n\t\t 12724 2596 0 12724 2598 0 2598 2596 0 12724 2624 0 2624 2598 0 2624 2600 0 2600 2598 0\n\t\t 2624 12779 0 12779 2600 0 12779 10122 0 10122 2600 0 12779 2627 0 2627 10122 0 2627 2614 0\n\t\t 2614 10122 0 12771 2594 0 2594 10220 0 10220 12771 0 10220 10217 0 10217 12771 0\n\t\t 10220 10221 0 10221 10217 0 10221 10218 0 10218 10217 0 10221 2607 0 2607 10218 0\n\t\t 2607 2630 0 2630 10218 0 2607 2609 0 2609 2630 0 2609 2619 0 2619 2630 0 2610 2582 0\n\t\t 2582 12901 0 12901 2610 0 12901 12840 0 12840 2610 0 2610 12770 0 12770 2582 0 12770 2623 0\n\t\t 12901 2584 0 2584 12840 0 2584 2611 0 2611 12840 0 12725 2611 0 2584 12725 0 2625 12725 0\n\t\t 2591 12725 0 2591 2612 0 2612 12725 0 2626 2612 0 2626 12780 0 12780 2612 0 12770 2628 0\n\t\t 12770 2616 0 2616 2628 0 2616 2618 0 2618 2628 0 2618 2629 0 2618 12791 0 12791 2629 0\n\t\t 12791 2631 0 12791 12800 0 12800 2631 0 12800 2589 0 2632 2634 0 2634 2633 0 2633 2632 0\n\t\t 2633 2635 0 2635 2632 0 2635 2636 0 2636 2632 0 2636 2646 0 2646 2632 0 2666 2636 0\n\t\t 2635 2666 0 2635 2655 0;\n\tsetAttr \".ed[8798:8963]\" 2655 2666 0 2655 2637 0 2637 2666 0 2655 2638 0 2638 2637 0\n\t\t 2637 2639 0 2639 2666 0 2637 2660 0 2660 2639 0 9534 9496 0 9496 2641 0 2641 9534 0\n\t\t 2641 2643 0 2643 9534 0 2632 2642 0 2642 2640 0 2640 2632 0 2640 2634 0 9496 9497 0\n\t\t 9497 2641 0 2644 2642 0 2632 2644 0 9497 2645 0 2645 2641 0 2664 2645 0 9497 2664 0\n\t\t 9497 2665 0 2665 2664 0 11796 2644 0 2644 2646 0 2646 11796 0 2636 11796 0 11076 9534 0\n\t\t 2643 11076 0 2643 2648 0 2648 11076 0 11213 11076 0 2648 11213 0 2648 2650 0 2650 11213 0\n\t\t 2647 2649 0 2649 2635 0 2635 2647 0 2633 2647 0 11214 11212 0 11212 11327 0 11327 11214 0\n\t\t 11327 11416 0 11416 11214 0 11442 2651 0 2651 2652 0 2652 11442 0 2652 2654 0 2654 11442 0\n\t\t 11215 2653 0 2653 2638 0 2638 11215 0 2655 11215 0 2649 11215 0 2655 2649 0 11515 11442 0\n\t\t 2654 11515 0 2654 2657 0 2657 11515 0 11367 11515 0 2657 11367 0 2657 2659 0 2659 11367 0\n\t\t 2656 2658 0 2658 2660 0 2660 2656 0 2637 2656 0 2653 2656 0 2637 2653 0 2661 11367 0\n\t\t 2659 2661 0 2658 11368 0 11368 2660 0 2659 2662 0 2662 2661 0 2667 2661 0 2662 2667 0\n\t\t 2662 13281 0 13281 2667 0 11368 11799 0 11799 2666 0 2666 11368 0 2639 11368 0 11797 11798 0\n\t\t 11798 2663 0 2663 11797 0 2663 13259 0 13259 11797 0 2640 2647 0 2633 2640 0 2666 11796 0\n\t\t 11799 11796 0 2680 2669 0 2669 2668 0 2668 2680 0 2668 2670 0 2670 2680 0 2670 2671 0\n\t\t 2671 2680 0 2672 2680 0 2671 2672 0 2668 2702 0 2702 2670 0 2702 2673 0 2673 2670 0\n\t\t 2702 2697 0 2697 2673 0 2702 2674 0 2674 2697 0 2674 2675 0 2675 2697 0 2692 2673 0\n\t\t 2697 2692 0 11661 2678 0 2678 2677 0 2677 11661 0 2677 2679 0 2679 11661 0 2676 11569 0\n\t\t 11569 2680 0 2680 2676 0 2672 2676 0 2677 2681 0 2681 2679 0 2681 11570 0 11570 2679 0\n\t\t 11569 2682 0 2682 2680 0 2681 12511 0 12511 11570 0 12511 2701 0 2701 11570 0 2669 2682 0\n\t\t 2682 9404 0 9404 2669 0 9404 2668 0 11661 8970 0 8970 2678 0 8970 2685 0 2685 2678 0\n\t\t 8970 8941 0 8941 2685 0 8941 8943 0 8943 2685 0 2670 2686 0 2686 2684 0 2684 2670 0\n\t\t 2684 2671 0 2687 8942 0 8942 8914 0 8914 2687 0 8914 8916 0 8916 2687 0 2689 8915 0\n\t\t 8915 9136 0 9136 2689 0 9136 2691 0 2691 2689 0 2692 2690 0 2690 2688 0 2688 2692 0;\n\tsetAttr \".ed[8964:9129]\" 2688 2673 0 2673 2686 0 2688 2686 0 9136 9137 0 9137 2691 0\n\t\t 9137 2694 0 2694 2691 0 9137 9262 0 9262 2694 0 9262 2696 0 2696 2694 0 2675 2695 0\n\t\t 2695 2693 0 2693 2675 0 2693 2697 0 2697 2690 0 2693 2690 0 9262 9394 0 9394 2696 0\n\t\t 2698 2695 0 2675 2698 0 9394 2699 0 2699 2696 0 9394 2703 0 2703 2699 0 2703 12495 0\n\t\t 12495 2699 0 2702 9407 0 9407 2698 0 2698 2702 0 2698 2674 0 2700 9406 0 9406 9405 0\n\t\t 9405 2700 0 9405 2683 0 2683 2700 0 2671 2676 0 2684 2676 0 9404 9407 0 2702 9404 0\n\t\t 10146 10147 0 10147 2721 0 2721 10146 0 2721 2738 0 2738 10146 0 2704 2738 0 2721 2704 0\n\t\t 2721 11931 0 11931 2704 0 13339 2717 0 2717 13335 0 13335 13339 0 13335 2706 0 2706 13339 0\n\t\t 13335 8696 0 8696 2706 0 8696 2707 0 2707 2706 0 8696 8697 0 8697 2707 0 8697 2708 0\n\t\t 2708 2707 0 2709 2708 0 8697 2709 0 8697 2728 0 2728 2709 0 2710 2712 0 2712 2711 0\n\t\t 2711 2710 0 2711 8976 0 8976 2710 0 2710 2714 0 2714 2712 0 2714 2715 0 2715 2712 0\n\t\t 2705 2712 0 2715 2705 0 2715 2716 0 2716 2705 0 2705 11930 0 11930 2712 0 11930 2711 0\n\t\t 8976 11933 0 11933 2710 0 11933 8780 0 8780 2710 0 8781 2714 0 2710 8781 0 8780 8781 0\n\t\t 11930 2721 0 2721 2711 0 2721 2713 0 2713 2711 0 10147 2713 0 10147 11934 0 11934 2713 0\n\t\t 2722 2714 0 8781 2722 0 8781 11920 0 11920 2722 0 2724 2716 0 2715 2724 0 2715 2725 0\n\t\t 2725 2724 0 2714 2725 0 2722 2725 0 11920 2806 0 2806 2722 0 2806 2726 0 2726 2722 0\n\t\t 2726 2725 0 2725 2727 0 2727 2724 0 2726 2727 0 2727 11947 0 11947 2724 0 10145 2731 0\n\t\t 2731 2730 0 2730 10145 0 2730 2732 0 2732 10145 0 2731 2733 0 2733 2730 0 2733 2734 0\n\t\t 2734 2730 0 2733 2735 0 2735 2734 0 2735 2736 0 2736 2734 0 2735 2737 0 2737 2736 0\n\t\t 2737 2805 0 2805 2736 0 2805 12037 0 12037 2736 0 12037 2723 0 2723 2736 0 2723 2734 0\n\t\t 2723 2720 0 2720 2734 0 2719 2730 0 2734 2719 0 2720 2719 0 2718 2732 0 2730 2718 0\n\t\t 2719 2718 0 2737 2729 0 2729 12096 0 12096 2737 0 12096 2739 0 2739 2737 0 9038 8821 0\n\t\t 8821 2761 0 2761 9038 0 2761 12196 0 12196 9038 0 11736 2761 0 8821 11736 0 8821 8823 0\n\t\t 8823 11736 0 11298 11736 0 8823 11298 0 8823 8849 0 8849 11298 0 8849 8894 0 8894 11298 0;\n\tsetAttr \".ed[9130:9295]\" 8894 11299 0 11299 11298 0 8894 2750 0 2750 11299 0\n\t\t 2750 12434 0 12434 11299 0 11145 12434 0 2750 11145 0 2750 12397 0 12397 11145 0\n\t\t 11143 11145 0 12397 11143 0 12397 11366 0 11366 11143 0 11872 11143 0 11366 11872 0\n\t\t 11366 12418 0 12418 11872 0 11873 11872 0 12418 11873 0 12418 2754 0 2754 11873 0\n\t\t 2764 11873 0 2754 2764 0 2754 9039 0 9039 2764 0 12196 2764 0 9039 12196 0 9039 9038 0\n\t\t 358 2747 0 2747 8822 0 8822 358 0 8822 2748 0 2748 358 0 8824 2740 0 2740 12066 0\n\t\t 12066 8824 0 12066 8672 0 8672 8824 0 357 358 0 2748 357 0 2748 2749 0 2749 357 0\n\t\t 11401 357 0 2749 11401 0 2749 11444 0 11444 11401 0 361 363 0 363 2743 0 2743 361 0\n\t\t 2743 2742 0 2742 361 0 8895 2743 0 363 8895 0 363 365 0 365 8895 0 8687 11493 0 11493 12396 0\n\t\t 12396 8687 0 12396 2744 0 2744 8687 0 12398 12396 0 11493 12398 0 11493 11495 0 11495 12398 0\n\t\t 2752 11363 0 11363 11365 0 11365 2752 0 11365 2753 0 2753 2752 0 11443 2746 0 2746 2755 0\n\t\t 2755 11443 0 2755 2756 0 2756 11443 0 2757 2755 0 2746 2757 0 2746 2758 0 2758 2757 0\n\t\t 11692 11737 0 11737 11735 0 11735 11692 0 11735 11706 0 11706 11692 0 2741 11737 0\n\t\t 11692 2741 0 11692 11693 0 11693 2741 0 12197 2741 0 11693 12197 0 11693 13234 0\n\t\t 13234 12197 0 13234 13227 0 13227 12197 0 13227 11874 0 11874 12197 0 2766 2767 0\n\t\t 2767 13229 0 13229 2766 0 13229 13250 0 13250 2766 0 11144 2766 0 13250 11144 0 13250 2768 0\n\t\t 2768 11144 0 11157 13230 0 13230 11300 0 11300 11157 0 11300 2745 0 2745 11157 0\n\t\t 11158 11157 0 2745 11158 0 2745 11146 0 11146 11158 0 13231 13237 0 13237 2770 0\n\t\t 2770 13231 0 2770 2772 0 2772 13231 0 13237 11708 0 11708 2770 0 11708 2760 0 2760 2770 0\n\t\t 11159 2774 0 2774 2773 0 2773 11159 0 2773 13236 0 13236 11159 0 13228 2775 0 2775 2763 0\n\t\t 2763 13228 0 2765 11694 0 11694 13235 0 13235 2765 0 11694 13232 0 13232 13235 0\n\t\t 11694 11707 0 11707 13232 0 11694 2759 0 2759 11707 0 2762 2771 0 2771 2769 0 2769 2762 0\n\t\t 13232 2776 0 2776 13235 0 2776 2777 0 2777 13235 0 13235 2778 0 2778 2765 0 12785 2810 0\n\t\t 2810 2794 0 2794 12785 0 2794 12769 0 12769 12785 0 2810 2780 0 2780 2794 0 2780 11233 0\n\t\t 11233 2794 0 2792 11234 0 11234 11232 0 11232 2792 0 11232 2782 0 2782 2792 0 2793 2792 0\n\t\t 2782 2793 0 2782 2783 0;\n\tsetAttr \".ed[9296:9461]\" 2783 2793 0 12041 2793 0 2783 12041 0 2783 2785 0 2785 12041 0\n\t\t 2785 2709 0 2709 12041 0 2728 12041 0 2786 2788 0 2788 2787 0 2787 2786 0 2787 2789 0\n\t\t 2789 2786 0 2790 2786 0 2789 2790 0 2789 2791 0 2791 2790 0 2789 10927 0 10927 2791 0\n\t\t 10927 10928 0 10928 2791 0 2787 2781 0 2781 2789 0 2781 10927 0 9837 2788 0 2786 9837 0\n\t\t 2786 9836 0 9836 9837 0 9941 9836 0 2786 9941 0 2790 9941 0 2787 11005 0 11005 2794 0\n\t\t 2794 2787 0 2794 2781 0 11005 2809 0 2809 12769 0 12769 11005 0 2790 2795 0 2795 9941 0\n\t\t 2795 12036 0 12036 9941 0 10928 2784 0 2784 2791 0 2784 2797 0 2797 2791 0 2797 2795 0\n\t\t 2790 2797 0 2806 12036 0 2795 2806 0 2795 2726 0 2797 2726 0 2727 2797 0 2784 2727 0\n\t\t 2784 11947 0 12784 2779 0 2779 2799 0 2799 12784 0 2799 2800 0 2800 12784 0 2801 2800 0\n\t\t 2799 2801 0 2799 2802 0 2802 2801 0 2803 2801 0 2802 2803 0 2802 2804 0 2804 2803 0\n\t\t 2737 2803 0 2804 2737 0 2804 2805 0 2804 12037 0 2804 2796 0 2796 12037 0 2802 2796 0\n\t\t 2802 2807 0 2807 2796 0 2808 2807 0 2802 2808 0 2799 2808 0 9838 2808 0 2799 9838 0\n\t\t 2779 9838 0 2739 12820 0 12820 2737 0 12820 2798 0 2798 2737 0 12828 9895 0 9895 9894 0\n\t\t 9894 12828 0 9894 10254 0 10254 12828 0 12828 12835 0 12835 9895 0 12835 10491 0\n\t\t 10491 9895 0 12835 11786 0 11786 10491 0 11786 12845 0 12845 10491 0 10997 12845 0\n\t\t 11786 10997 0 11786 11787 0 11787 10997 0 2825 10997 0 11787 2825 0 11787 2839 0\n\t\t 2839 2825 0 2839 9957 0 9957 2825 0 9957 12860 0 12860 2825 0 9957 9959 0 9959 12860 0\n\t\t 9959 12862 0 12862 12860 0 9959 10581 0 10581 12862 0 10581 2829 0 2829 12862 0 10581 10269 0\n\t\t 10269 2829 0 10269 13006 0 13006 2829 0 10269 10255 0 10255 13006 0 10255 9975 0\n\t\t 9975 13006 0 10255 10254 0 10254 9975 0 9894 9975 0 735 2812 0 2812 9896 0 9896 735 0\n\t\t 9896 9519 0 9519 735 0 739 2813 0 2813 10490 0 10490 739 0 10490 10492 0 10492 739 0\n\t\t 735 733 0 733 2812 0 733 2819 0 2819 2812 0 733 8759 0 8759 2819 0 8759 2822 0 2822 2819 0\n\t\t 2821 2820 0 2820 2814 0 2814 2821 0 2814 740 0 740 2821 0 2814 10996 0 10996 740 0\n\t\t 10996 10998 0 10998 740 0 2824 2823 0 2823 12859 0 12859 2824 0 12859 12155 0 12155 2824 0\n\t\t 12859 12861 0 12861 12155 0 12861 9550 0;\n\tsetAttr \".ed[9462:9627]\" 9550 12155 0 736 2827 0 2827 12863 0 12863 736 0 12863 9548 0\n\t\t 9548 736 0 12122 13008 0 13008 13007 0 13007 12122 0 13007 731 0 731 12122 0 12122 732 0\n\t\t 732 13008 0 732 2817 0 2817 13008 0 10266 12986 0 12986 12834 0 12834 10266 0 12834 2811 0\n\t\t 2811 10266 0 2811 2832 0 2832 10266 0 2832 10267 0 10267 10266 0 2832 2834 0 2834 10267 0\n\t\t 2834 12995 0 12995 10267 0 10632 12995 0 2834 10632 0 2834 10270 0 10270 10632 0\n\t\t 10633 2836 0 2836 2818 0 2818 10633 0 2818 13021 0 13021 10633 0 2818 9960 0 9960 13021 0\n\t\t 9960 13023 0 13023 13021 0 10414 12853 0 12853 11788 0 11788 10414 0 11788 11771 0\n\t\t 11771 10414 0 10414 10415 0 10415 12853 0 10415 9958 0 9958 12853 0 11770 2842 0\n\t\t 2842 2841 0 2841 11770 0 2841 11772 0 11772 11770 0 12985 11772 0 2841 12985 0 2841 2831 0\n\t\t 2831 12985 0 10416 2846 0 2846 2816 0 2816 10416 0 2816 2815 0 2815 10416 0 2844 2845 0\n\t\t 2845 2843 0 2843 2844 0 11769 12987 0 12987 10268 0 10268 11769 0 12987 2830 0 2830 10268 0\n\t\t 10268 13022 0 13022 11769 0 10268 10634 0 10634 13022 0 2833 2847 0 2847 2835 0 2835 2833 0\n\t\t 10634 2837 0 2837 13022 0 13022 2838 0 2838 11769 0 13022 2840 0 2840 2838 0 9681 9679 0\n\t\t 9679 2848 0 2848 9681 0 2848 2849 0 2849 9681 0 2850 2849 0 2848 2850 0 2848 2851 0\n\t\t 2851 2850 0 10596 9681 0 2849 10596 0 2849 2853 0 2853 10596 0 2850 2853 0 10597 10596 0\n\t\t 2853 10597 0 2853 10642 0 10642 10597 0 10643 10642 0 2853 10643 0 2853 2857 0 2857 10643 0\n\t\t 2850 2857 0 10745 2848 0 9679 10745 0 2887 2869 0 2869 2867 0 2867 2887 0 10745 10744 0\n\t\t 10744 2848 0 10744 2851 0 2851 2871 0 2871 2850 0 10744 2871 0 2871 13173 0 13173 2850 0\n\t\t 2857 2875 0 2875 10643 0 13173 2875 0 2875 2850 0 2875 2895 0 2895 10643 0 10744 2859 0\n\t\t 2859 2871 0 2860 10698 0 10698 10696 0 10696 2860 0 10696 10723 0 10723 2860 0 10723 10758 0\n\t\t 10758 2860 0 10758 2865 0 2865 2860 0 2864 2863 0 2863 2866 0 2866 2864 0 2866 10746 0\n\t\t 10746 2864 0 2868 2864 0 10746 2868 0 10746 10755 0 10755 2868 0 10774 10697 0 10697 2862 0\n\t\t 2862 10774 0 2861 2870 0 2870 13172 0 13172 2861 0 13172 13171 0 13171 2861 0 13171 2866 0\n\t\t 2863 13171 0 2863 2861 0 2858 13172 0 2870 2858 0 2870 10782 0 10782 2858 0 2873 2872 0\n\t\t 2872 10774 0 10774 2873 0 10774 2874 0;\n\tsetAttr \".ed[9628:9793]\" 2874 2873 0 2862 2874 0 13168 2858 0 10782 13168 0 10782 10783 0\n\t\t 10783 13168 0 2876 2872 0 2873 2876 0 12698 13168 0 10783 12698 0 10783 10832 0 10832 12698 0\n\t\t 10890 10833 0 10833 2876 0 2876 10890 0 2876 2879 0 2879 10890 0 2873 2879 0 2880 2868 0\n\t\t 10755 2880 0 10699 9691 0 9691 2881 0 2881 10699 0 2882 2881 0 9691 2882 0 9691 2883 0\n\t\t 2883 2882 0 2884 2882 0 2883 2884 0 2883 9722 0 9722 2884 0 9722 9702 0 9702 2884 0\n\t\t 9702 12746 0 12746 2884 0 9703 2885 0 2885 2852 0 2852 9703 0 2852 10598 0 10598 9703 0\n\t\t 9692 2880 0 2880 9680 0 9680 9692 0 9680 2888 0 2888 9692 0 2888 2852 0 2885 2888 0\n\t\t 2885 9692 0 10755 9680 0 2881 2889 0 2889 10699 0 10758 10699 0 2889 10758 0 2889 2865 0\n\t\t 9701 2854 0 2854 2855 0 2855 9701 0 2855 9585 0 9585 9701 0 9586 9585 0 2855 9586 0\n\t\t 2855 2856 0 2856 9586 0 2886 2890 0 2890 2891 0 2891 2886 0 2891 2893 0 2893 2886 0\n\t\t 2891 2892 0 2892 2893 0 2892 2894 0 2894 2893 0 2856 12697 0 12697 9586 0 12697 10834 0\n\t\t 10834 9586 0 2878 2894 0 2892 2878 0 2892 2877 0 2877 2878 0 2922 8703 0 8703 8702 0\n\t\t 8702 2922 0 8702 12375 0 12375 2922 0 2916 12375 0 8702 2916 0 8702 12003 0 12003 2916 0\n\t\t 9509 8703 0 2922 9509 0 2922 12647 0 12647 9509 0 12680 9507 0 9507 9555 0 9555 12680 0\n\t\t 9555 9556 0 9556 12680 0 12646 9555 0 9507 12646 0 9507 9508 0 9508 12646 0 12644 2933 0\n\t\t 2933 2902 0 2902 12644 0 2902 2903 0 2903 12644 0 2936 2902 0 2933 2936 0 2933 8804 0\n\t\t 8804 2936 0 2902 2904 0 2904 2903 0 2904 2905 0 2905 2903 0 2936 12242 0 12242 2902 0\n\t\t 12242 2904 0 9716 12644 0 2903 9716 0 2903 9715 0 9715 9716 0 2905 9715 0 2905 12700 0\n\t\t 12700 9715 0 10668 12053 0 12053 2908 0 2908 10668 0 2908 10661 0 10661 10668 0 2909 10661 0\n\t\t 2908 2909 0 2908 2910 0 2910 2909 0 2911 2908 0 12053 2911 0 12053 9717 0 9717 2911 0\n\t\t 12034 10661 0 2909 12034 0 2909 3018 0 3018 12034 0 2907 2910 0 2908 2907 0 2911 2907 0\n\t\t 12717 2925 0 2925 12500 0 12500 12717 0 12500 12320 0 12320 12717 0 2947 12500 0\n\t\t 2925 2947 0 2925 12259 0 12259 2947 0 12487 2923 0 2923 9327 0 9327 12487 0 9327 2932 0\n\t\t 2932 12487 0 9134 2923 0 12487 9134 0 12487 9132 0 9132 9134 0 11845 2932 0 9327 11845 0\n\t\t 9327 9328 0;\n\tsetAttr \".ed[9794:9959]\" 9328 11845 0 11949 12444 0 12444 2928 0 2928 11949 0\n\t\t 2928 11951 0 11951 11949 0 9133 2928 0 12444 9133 0 12444 9135 0 9135 9133 0 12424 12447 0\n\t\t 12447 11532 0 11532 12424 0 11532 11530 0 11530 12424 0 2918 11532 0 12447 2918 0\n\t\t 12447 11846 0 11846 2918 0 12374 2896 0 2896 2917 0 2917 12374 0 2917 12363 0 12363 12374 0\n\t\t 11529 2926 0 2926 12260 0 12260 11529 0 12260 2914 0 2914 11529 0 12645 2901 0 2901 2927 0\n\t\t 2927 12645 0 2927 11847 0 11847 12645 0 761 12059 0 12059 2942 0 2942 761 0 2942 5780 0\n\t\t 5780 761 0 2920 2929 0 2929 2897 0 2897 2920 0 2897 2930 0 2930 2920 0 12363 2920 0\n\t\t 2930 12363 0 2930 12374 0 2899 2897 0 2929 2899 0 2929 756 0 756 2899 0 9329 2917 0\n\t\t 2896 9329 0 2896 12258 0 12258 9329 0 2931 2921 0 2921 2937 0 2937 2931 0 2937 8803 0\n\t\t 8803 2931 0 11847 2931 0 8803 11847 0 8803 12645 0 8801 2937 0 2921 8801 0 2921 760 0\n\t\t 760 8801 0 2919 2927 0 2901 2919 0 2901 2912 0 2912 2919 0 2934 8814 0 8814 2935 0\n\t\t 2935 2934 0 2935 8800 0 8800 2934 0 2934 2938 0 2938 8814 0 2938 2906 0 2906 8814 0\n\t\t 10753 2934 0 8800 10753 0 8800 8802 0 8802 10753 0 2940 2938 0 2934 2940 0 10753 2940 0\n\t\t 10753 12023 0 12023 2940 0 12023 2941 0 2941 2940 0 2926 9329 0 12258 2926 0 12258 12260 0\n\t\t 12059 2919 0 2912 12059 0 2912 2942 0 12095 12086 0 12086 2944 0 2944 12095 0 2944 2945 0\n\t\t 2945 12095 0 8744 12095 0 2945 8744 0 2945 2900 0 2900 8744 0 13336 8744 0 2900 13336 0\n\t\t 2900 2898 0 2898 13336 0 2954 13336 0 2898 2954 0 2898 755 0 755 2954 0 12002 2944 0\n\t\t 12086 12002 0 12086 12087 0 12087 12002 0 2915 12002 0 12087 2915 0 12087 2956 0\n\t\t 2956 2915 0 753 2915 0 2956 753 0 2956 12187 0 12187 753 0 8871 2950 0 2950 2943 0\n\t\t 2943 8871 0 2943 8872 0 8872 8871 0 2943 8743 0 8743 8872 0 8743 8745 0 8745 8872 0\n\t\t 8871 12220 0 12220 2950 0 12220 2948 0 2948 2950 0 8746 2951 0 2951 2946 0 2946 8746 0\n\t\t 2946 8931 0 8931 8746 0 2946 8948 0 8948 8931 0 8948 8932 0 8932 8931 0 2958 12302 0\n\t\t 12302 12088 0 12088 2958 0 12088 12221 0 12221 2958 0 2958 12160 0 12160 12302 0\n\t\t 12160 2949 0 2949 12302 0 12216 2957 0 2957 2959 0 2959 12216 0 2959 2952 0 2952 12216 0\n\t\t 2959 2960 0 2960 2952 0 2952 2955 0 2955 12216 0;\n\tsetAttr \".ed[9960:10125]\" 2952 2953 0 2953 2955 0 2955 750 0 750 12216 0 2961 10020 0\n\t\t 10020 3000 0 3000 2961 0 3000 2963 0 2963 2961 0 2963 2964 0 2964 2961 0 2964 2965 0\n\t\t 2965 2961 0 3000 10163 0 10163 2963 0 10163 2967 0 2967 2963 0 2967 2964 0 10163 10164 0\n\t\t 10164 2967 0 10164 3001 0 3001 2967 0 3001 12537 0 12537 2967 0 12537 2970 0 2970 2967 0\n\t\t 2970 2964 0 2961 9853 0 9853 10020 0 2981 10021 0 10021 10019 0 10019 2981 0 2965 2980 0\n\t\t 2980 2961 0 2980 9853 0 12805 2965 0 2964 12805 0 12805 2980 0 2964 2985 0 2985 12805 0\n\t\t 12392 2970 0 12537 12392 0 12392 2964 0 12392 2985 0 12537 12436 0 12436 12392 0\n\t\t 12805 9856 0 9856 2980 0 2974 9859 0 9859 9857 0 9857 2974 0 9857 2977 0 2977 2974 0\n\t\t 2974 2978 0 2978 9859 0 2978 9845 0 9845 9859 0 9851 2976 0 2976 2979 0 2979 9851 0\n\t\t 2979 9852 0 9852 9851 0 2979 2982 0 2982 9852 0 2982 2971 0 2971 9852 0 9867 9858 0\n\t\t 9858 2983 0 2983 9867 0 2972 9023 0 9023 2975 0 2975 2972 0 2975 2984 0 2984 2972 0\n\t\t 9851 2984 0 2984 2976 0 2975 2976 0 2972 12391 0 12391 9023 0 12391 9024 0 9024 9023 0\n\t\t 2987 2983 0 2983 2986 0 2986 2987 0 2987 9867 0 2986 2988 0 2988 2987 0 12391 2973 0\n\t\t 2973 9024 0 2973 2989 0 2989 9024 0 2986 9109 0 9109 2988 0 2973 12435 0 12435 2989 0\n\t\t 12435 9308 0 9308 2989 0 9109 9307 0 9307 12428 0 12428 9109 0 12428 2992 0 2992 9109 0\n\t\t 2992 2988 0 2982 8954 0 8954 2971 0 2994 2993 0 2993 8953 0 8953 2994 0 8953 2995 0\n\t\t 2995 2994 0 2994 2996 0 2996 2993 0 2996 9138 0 9138 2993 0 2996 2998 0 2998 9138 0\n\t\t 2998 9399 0 9399 9138 0 9316 9399 0 2998 9316 0 2998 9326 0 9326 9316 0 2966 2999 0\n\t\t 2999 9317 0 9317 2966 0 9317 10165 0 10165 2966 0 2962 8954 0 8954 2997 0 2997 2962 0\n\t\t 2997 12514 0 12514 2962 0 2966 12514 0 12514 2999 0 2997 2999 0 2962 2971 0 8953 9845 0\n\t\t 9845 2995 0 2978 2995 0 12483 2968 0 2968 9315 0 9315 12483 0 9315 3003 0 3003 12483 0\n\t\t 3003 9305 0 9305 12483 0 9305 2969 0 2969 12483 0 9318 3002 0 3002 3005 0 3005 9318 0\n\t\t 3005 3006 0 3006 9318 0 3007 3004 0 3004 9318 0 9318 3007 0 3006 3007 0 2990 2969 0\n\t\t 9305 2990 0 9305 9306 0 9306 2990 0 2991 3008 0 3008 3004 0 3004 2991 0 3007 2991 0\n\t\t 3030 3040 0;\n\tsetAttr \".ed[10126:10291]\" 3040 3057 0 3057 3030 0 3057 3009 0 3009 3030 0 3040 3052 0\n\t\t 3052 3057 0 3052 3024 0 3024 3057 0 3009 3059 0 3059 3030 0 3059 11195 0 11195 3030 0\n\t\t 12505 772 0 772 11193 0 11193 12505 0 11193 10392 0 10392 12505 0 11193 11194 0 11194 10392 0\n\t\t 11194 10390 0 10390 10392 0 3035 3014 0 3014 3013 0 3013 3035 0 3013 3043 0 3043 3035 0\n\t\t 3013 3048 0 3048 3043 0 3048 9999 0 9999 3043 0 3015 3013 0 3014 3015 0 3014 3016 0\n\t\t 3016 3015 0 3015 3050 0 3050 3013 0 3050 3048 0 3035 3054 0 3054 3014 0 3054 3020 0\n\t\t 3020 3014 0 3020 3016 0 3020 3021 0 3021 3016 0 3037 12034 0 12034 3017 0 3017 3037 0\n\t\t 3017 3055 0 3055 3037 0 3018 3017 0 3018 3019 0 3019 3017 0 3017 11221 0 11221 3055 0\n\t\t 11221 10075 0 10075 3055 0 11222 11221 0 3017 11222 0 3019 11222 0 11225 11227 0\n\t\t 11227 3062 0 3062 11225 0 3062 3032 0 3032 11225 0 3062 13013 0 13013 3032 0 13013 12975 0\n\t\t 12975 3032 0 3034 11075 0 11075 10835 0 10835 3034 0 10835 3031 0 3031 3034 0 3031 3025 0\n\t\t 3025 3034 0 3025 3056 0 3056 3034 0 11075 3041 0 3041 10835 0 3041 3039 0 3039 10835 0\n\t\t 11335 11338 0 11338 10055 0 10055 11335 0 10055 3038 0 3038 11335 0 10055 10056 0\n\t\t 10056 3038 0 10056 13166 0 13166 3038 0 775 12597 0 12597 12896 0 12896 775 0 12896 10659 0\n\t\t 10659 775 0 12896 12898 0 12898 10659 0 12898 10657 0 10657 10659 0 3029 13176 0\n\t\t 13176 13161 0 13161 3029 0 13161 10836 0 10836 3029 0 3022 12976 0 12976 3028 0 3028 3022 0\n\t\t 3028 3033 0 3033 3022 0 11074 12878 0 12878 13142 0 13142 11074 0 13142 3036 0 3036 11074 0\n\t\t 12911 10076 0 10076 3053 0 3053 12911 0 3053 3027 0 3027 12911 0 13165 3012 0 3012 3011 0\n\t\t 3011 13165 0 3011 13167 0 13167 13165 0 13165 10836 0 10836 3012 0 13161 3012 0 3026 13167 0\n\t\t 3011 3026 0 3011 12589 0 12589 3026 0 12897 12974 0 12974 13176 0 13176 12897 0 3029 12897 0\n\t\t 10658 10000 0 10000 3047 0 3047 10658 0 3047 3042 0 3042 10658 0 10658 3036 0 3036 10000 0\n\t\t 13142 10000 0 12599 3042 0 3047 12599 0 3047 12894 0 12894 12599 0 10057 10074 0\n\t\t 10074 12878 0 12878 10057 0 11074 10057 0 3045 10003 0 10003 3046 0 3046 3045 0 3046 10001 0\n\t\t 10001 3045 0 3049 3045 0 10001 3049 0 10001 10044 0 10044 3049 0 3045 12023 0 12023 10003 0\n\t\t 12023 12893 0 12893 10003 0 3045 2941 0 3049 2941 0;\n\tsetAttr \".ed[10292:10457]\" 12976 12974 0 12974 3028 0 12897 3028 0 10076 10074 0\n\t\t 10074 3053 0 10057 3053 0 12907 13051 0 13051 13050 0 13050 12907 0 13050 10436 0\n\t\t 10436 12907 0 12907 10456 0 10456 13051 0 10456 10391 0 10391 13051 0 10456 3065 0\n\t\t 3065 10391 0 3065 3060 0 3060 10391 0 3065 12504 0 12504 3060 0 12504 3010 0 3010 3060 0\n\t\t 13050 13014 0 13014 10436 0 13014 10437 0 10437 10436 0 13014 13015 0 13015 10437 0\n\t\t 13015 11041 0 11041 10437 0 13015 3023 0 3023 11041 0 3023 11042 0 11042 11041 0\n\t\t 10963 10964 0 10964 3063 0 3063 10963 0 3063 3058 0 3058 10963 0 10457 3063 0 10964 10457 0\n\t\t 10964 12982 0 12982 10457 0 10972 10963 0 3058 10972 0 3058 10438 0 10438 10972 0\n\t\t 12983 13074 0 13074 10455 0 10455 12983 0 10455 3067 0 3067 12983 0 769 10455 0 13074 769 0\n\t\t 13074 3070 0 3070 769 0 3071 10973 0 10973 3061 0 3061 3071 0 3061 3068 0 3068 3071 0\n\t\t 12997 3071 0 3068 12997 0 3068 3069 0 3069 12997 0 13064 3066 0 3066 3064 0 3064 13064 0\n\t\t 3064 11021 0 11021 13064 0 3064 3072 0 3072 11021 0 3064 3073 0 3073 3072 0 3072 3074 0\n\t\t 3074 11021 0 11021 768 0 768 13064 0 3075 3077 0 3077 3076 0 3076 3075 0 3076 3078 0\n\t\t 3078 3075 0 3079 3075 0 3078 3079 0 3078 3080 0 3080 3079 0 3081 3079 0 3080 3081 0\n\t\t 3080 3273 0 3273 3081 0 3082 3081 0 3273 3082 0 3273 3083 0 3083 3082 0 3083 3275 0\n\t\t 3275 3082 0 3275 3084 0 3084 3082 0 3084 3085 0 3085 3082 0 3086 3085 0 3084 3086 0\n\t\t 3086 3087 0 3087 3085 0 12077 3087 0 3086 12077 0 12077 3231 0 3231 3087 0 3231 3089 0\n\t\t 3089 3087 0 3090 3089 0 3231 3090 0 3231 11945 0 11945 3090 0 3086 3234 0 3234 12077 0\n\t\t 3086 3091 0 3091 3234 0 3084 3091 0 3275 3091 0 3091 11627 0 11627 3234 0 3091 3286 0\n\t\t 3286 11627 0 3275 3286 0 3286 11628 0 11628 11627 0 3090 3094 0 3094 3089 0 3090 3095 0\n\t\t 3095 3094 0 3095 3096 0 3096 3094 0 3095 3097 0 3097 3096 0 3097 3098 0 3098 3096 0\n\t\t 3099 3096 0 3098 3099 0 3099 3094 0 3098 3100 0 3100 3099 0 3101 3099 0 3100 3101 0\n\t\t 3101 3094 0 3100 3102 0 3102 3101 0 3103 3101 0 3102 3103 0 3103 3094 0 3102 3104 0\n\t\t 3104 3103 0 3105 3103 0 3104 3105 0 3104 3106 0 3106 3105 0 3107 3106 0 3104 3107 0\n\t\t 3104 3108 0 3108 3107 0 3102 3108 0 3109 3107 0 3108 3109 0 3108 3110 0;\n\tsetAttr \".ed[10458:10623]\" 3110 3109 0 3110 3111 0 3111 3109 0 3111 3112 0 3112 3109 0\n\t\t 3102 3113 0 3113 3108 0 3100 3113 0 3100 3114 0 3114 3113 0 3114 3115 0 3115 3113 0\n\t\t 3115 3116 0 3116 3113 0 3116 3108 0 3116 3110 0 3115 3117 0 3117 3116 0 3117 3118 0\n\t\t 3118 3116 0 3118 3111 0 3110 3118 0 3119 3118 0 3117 3119 0 3119 3111 0 3117 3120 0\n\t\t 3120 3119 0 3121 3119 0 3120 3121 0 3120 3122 0 3122 3121 0 3122 3123 0 3123 3121 0\n\t\t 3123 3124 0 3124 3121 0 3124 3125 0 3125 3121 0 3125 3126 0 3126 3121 0 3126 3119 0\n\t\t 3126 3127 0 3127 3119 0 3127 3111 0 3127 3128 0 3128 3111 0 3128 3112 0 3129 3128 0\n\t\t 3127 3129 0 3126 3129 0 3125 3130 0 3130 3126 0 3130 3129 0 3128 3131 0 3131 3112 0\n\t\t 3131 3077 0 3077 3112 0 3132 3131 0 3128 3132 0 3129 3132 0 3130 3133 0 3133 3129 0\n\t\t 3133 3132 0 3134 3132 0 3133 3134 0 3134 3131 0 3133 3327 0 3327 3134 0 3133 3135 0\n\t\t 3135 3327 0 3130 3135 0 3135 3136 0 3136 3327 0 3238 3136 0 3135 3238 0 3135 12040 0\n\t\t 12040 3238 0 3075 3112 0 3075 3109 0 3079 3109 0 3079 3107 0 3079 3106 0 3081 3106 0\n\t\t 3082 3106 0 3082 3105 0 3085 3105 0 3085 3103 0 3085 3138 0 3138 3103 0 3138 3094 0\n\t\t 3138 3089 0 3138 3087 0 3139 3241 0 3241 12040 0 12040 3139 0 3139 3140 0 3140 3241 0\n\t\t 3140 3243 0 3243 3241 0 3140 3141 0 3141 3243 0 3141 11071 0 11071 3243 0 11072 11071 0\n\t\t 3141 11072 0 3141 3144 0 3144 11072 0 3139 3130 0 3130 3140 0 3125 3140 0 3124 3140 0\n\t\t 3124 3141 0 3123 3144 0 3141 3123 0 3122 3144 0 3122 3145 0 3145 3144 0 3120 3145 0\n\t\t 3120 3146 0 3146 3145 0 3117 3146 0 3117 3147 0 3147 3146 0 3115 3147 0 3115 3148 0\n\t\t 3148 3147 0 3149 3148 0 3115 3149 0 3114 3149 0 3100 3149 0 3098 3149 0 3097 3149 0\n\t\t 3249 12446 0 12446 3150 0 3150 3249 0 3150 3152 0 3152 3249 0 12438 3249 0 3152 12438 0\n\t\t 3152 3154 0 3154 12438 0 3152 3347 0 3347 3154 0 3150 3347 0 3347 3155 0 3155 3154 0\n\t\t 3150 3348 0 3348 3347 0 3150 3156 0 3156 3348 0 12446 3156 0 3156 3157 0 3157 3348 0\n\t\t 3351 3157 0 3156 3351 0 3156 3158 0 3158 3351 0 3155 3352 0 3352 3154 0 3352 3159 0\n\t\t 3159 3154 0 3159 12438 0 3160 3159 0 3352 3160 0 3352 3161 0 3161 3160 0 9522 3160 0;\n\tsetAttr \".ed[10624:10789]\" 3161 9522 0 3161 9523 0 9523 9522 0 3255 3159 0 3160 3255 0\n\t\t 3255 12438 0 3160 9074 0 9074 3255 0 9076 9074 0 3160 9076 0 9522 9076 0 12162 3158 0\n\t\t 3156 12162 0 3156 3252 0 3252 12162 0 12446 3252 0 9480 3167 0 3167 3166 0 3166 9480 0\n\t\t 3166 3168 0 3168 9480 0 3169 3168 0 3166 3169 0 3166 3170 0 3170 3169 0 3170 3171 0\n\t\t 3171 3169 0 3171 3172 0 3172 3169 0 3169 3173 0 3173 3168 0 3173 3174 0 3174 3168 0\n\t\t 3173 3175 0 3175 3174 0 3175 3176 0 3176 3174 0 3176 3177 0 3177 3174 0 3177 9481 0\n\t\t 9481 3174 0 9481 9480 0 3168 9481 0 3172 3179 0 3179 3169 0 3179 3173 0 3179 3175 0\n\t\t 3176 3180 0 3180 3177 0 3175 3180 0 3175 3181 0 3181 3180 0 3182 3181 0 3175 3182 0\n\t\t 3175 3183 0 3183 3182 0 3179 3183 0 3184 3172 0 3171 3184 0 3171 3185 0 3185 3184 0\n\t\t 3224 3184 0 3185 3224 0 3185 12762 0 12762 3224 0 3187 3179 0 3172 3187 0 3184 3187 0\n\t\t 3224 9976 0 9976 3184 0 9976 3187 0 9976 9977 0 9977 3187 0 9977 3190 0 3190 3187 0\n\t\t 3190 3183 0 3179 3190 0 3191 3182 0 3183 3191 0 3190 3191 0 9977 3191 0 3185 12294 0\n\t\t 12294 12762 0 3171 12294 0 3171 12250 0 12250 12294 0 12294 12278 0 12278 12762 0\n\t\t 12251 12250 0 3171 12251 0 3170 12251 0 9811 12251 0 3170 9811 0 3166 9811 0 3167 9811 0\n\t\t 3167 9812 0 9812 9811 0 3167 3194 0 3194 9812 0 3167 3195 0 3195 3194 0 3196 3194 0\n\t\t 3195 3196 0 9480 3195 0 9480 3197 0 3197 3195 0 9480 10179 0 10179 3197 0 3178 3198 0\n\t\t 3198 3165 0 3165 3178 0 3194 12371 0 12371 9812 0 3196 12371 0 3196 3267 0 3267 12371 0\n\t\t 3200 3202 0 3202 3201 0 3201 3200 0 3200 3203 0 3203 3202 0 3203 9016 0 9016 3202 0\n\t\t 3203 9022 0 9022 9016 0 9022 9017 0 9017 9016 0 3204 3206 0 3206 3207 0 3207 3204 0\n\t\t 9022 9008 0 9008 9017 0 9008 3209 0 3209 9017 0 3402 3209 0 9008 3402 0 9008 9009 0\n\t\t 9009 3402 0 3210 3208 0 3208 12029 0 12029 3210 0 12029 3217 0 3217 3210 0 3205 9226 0\n\t\t 9226 9279 0 9279 3205 0 9279 3215 0 3215 3205 0 3208 3205 0 3215 3208 0 3215 12029 0\n\t\t 9226 9198 0 9198 9427 0 9427 9226 0 9427 9279 0 9428 9427 0 9198 9428 0 9198 9199 0\n\t\t 9199 9428 0 11940 3228 0 3228 3212 0 3212 11940 0 3212 3213 0 3213 11940 0 3228 8713 0\n\t\t 8713 3212 0;\n\tsetAttr \".ed[10790:10955]\" 8713 3214 0 3214 3212 0 8713 8714 0 8714 3214 0 8714 9280 0\n\t\t 9280 3214 0 8714 12027 0 12027 9280 0 12027 3211 0 3211 9280 0 12027 12028 0 12028 3211 0\n\t\t 12028 12030 0 12030 3211 0 8837 12177 0 12177 3242 0 3242 8837 0 3242 8840 0 8840 8837 0\n\t\t 3242 12290 0 12290 8840 0 12290 3222 0 3222 8840 0 12290 3244 0 3244 3222 0 3244 12022 0\n\t\t 12022 3222 0 8837 12247 0 12247 12177 0 12247 3226 0 3226 12177 0 3226 11932 0 11932 12177 0\n\t\t 11907 11932 0 3226 11907 0 11915 3236 0 3236 3226 0 3226 11915 0 11909 11905 0 11905 11916 0\n\t\t 11916 11909 0 11916 10874 0 10874 11909 0 3426 11915 0 3226 3426 0 3189 3188 0 3188 12021 0\n\t\t 12021 3189 0 12021 3223 0 3223 3189 0 3188 12886 0 12886 12021 0 12886 3220 0 3220 12021 0\n\t\t 12886 12276 0 12276 3220 0 12886 3186 0 3186 12276 0 12276 8839 0 8839 3220 0 3258 3162 0\n\t\t 3162 3226 0 3226 3258 0 12247 3258 0 3162 3426 0 3162 3163 0 3163 3426 0 11939 3230 0\n\t\t 3230 3229 0 3229 11939 0 3229 11946 0 11946 11939 0 11946 3088 0 3088 11939 0 3088 3232 0\n\t\t 3232 11939 0 3233 3232 0 3088 3233 0 3088 12078 0 12078 3233 0 3216 3233 0 12078 3216 0\n\t\t 12078 3092 0 3092 3216 0 3092 3093 0 3093 3216 0 3093 3235 0 3235 3216 0 3137 3237 0\n\t\t 3237 11906 0 11906 3137 0 12039 3137 0 11906 12039 0 11913 12039 0 11906 11913 0\n\t\t 10875 3239 0 3239 11908 0 11908 10875 0 11908 3240 0 3240 10875 0 3219 3237 0 3137 3219 0\n\t\t 3137 8883 0 8883 3219 0 12176 3219 0 8883 12176 0 8883 8884 0 8884 12176 0 3221 12176 0\n\t\t 8884 3221 0 8884 3142 0 3142 3221 0 12311 3221 0 3142 12311 0 3142 3143 0 3143 12311 0\n\t\t 9351 9803 0 9803 9804 0 9804 9351 0 9804 3250 0 3250 9351 0 9804 9809 0 9809 3250 0\n\t\t 9809 8797 0 8797 3250 0 9809 9844 0 9844 8797 0 9844 3259 0 3259 8797 0 9294 9803 0\n\t\t 9351 9294 0 9351 12412 0 12412 9294 0 12412 3254 0 3254 9294 0 3254 9295 0 9295 9294 0\n\t\t 3254 3257 0 3257 9295 0 3257 9296 0 9296 9295 0 3257 12248 0 12248 9296 0 12249 8838 0\n\t\t 8838 9297 0 9297 12249 0 12490 3251 0 3251 9341 0 9341 12490 0 9341 3151 0 3151 12490 0\n\t\t 12161 3151 0 9341 12161 0 9341 3253 0 3253 12161 0 3246 3251 0 12490 3246 0 12490 3153 0\n\t\t 3153 3246 0 9119 3246 0 3153 9119 0 3153 9108 0 9108 9119 0 9108 3256 0 3256 9119 0\n\t\t 3256 9120 0;\n\tsetAttr \".ed[10956:11121]\" 9120 9119 0 3256 9075 0 9075 9120 0 9075 3227 0 3227 9120 0\n\t\t 3253 8798 0 8798 12161 0 8798 3164 0 3164 12161 0 3260 3247 0 3247 9298 0 9298 3260 0\n\t\t 9298 3192 0 3192 3260 0 12277 3192 0 9298 12277 0 3248 3218 0 3218 3225 0 3225 3248 0\n\t\t 3260 3193 0 3193 3247 0 3193 3245 0 3245 3247 0 3261 3245 0 3193 3261 0 3193 3262 0\n\t\t 3262 3261 0 3263 3261 0 3262 3263 0 3262 3264 0 3264 3263 0 3264 3199 0 3199 3263 0\n\t\t 3199 3265 0 3265 3263 0 3266 3265 0 3199 3266 0 3199 12372 0 12372 3266 0 3131 3076 0\n\t\t 3131 3268 0 3268 3076 0 3134 3268 0 3135 3139 0 3076 3270 0 3270 3269 0 3269 3076 0\n\t\t 3269 3078 0 3269 3271 0 3271 3078 0 3271 3080 0 3271 3272 0 3272 3080 0 3272 3273 0\n\t\t 3272 3274 0 3274 3273 0 3274 3083 0 3274 3275 0 3274 3276 0 3276 3275 0 3277 3276 0\n\t\t 3274 3277 0 3277 3278 0 3278 3276 0 3279 3278 0 3277 3279 0 3279 12867 0 12867 3278 0\n\t\t 12748 12867 0 3279 12748 0 3279 3281 0 3281 12748 0 12749 12748 0 3281 12749 0 3281 3283 0\n\t\t 3283 12749 0 12867 12733 0 12733 3278 0 3284 3278 0 12733 3284 0 3284 3276 0 3284 3275 0\n\t\t 12733 12033 0 12033 3284 0 3286 3284 0 12033 3286 0 12033 11628 0 3281 3287 0 3287 3283 0\n\t\t 3288 3283 0 3287 3288 0 3289 3288 0 3287 3289 0 3290 3288 0 3289 3290 0 3289 3291 0\n\t\t 3291 3290 0 3289 3292 0 3292 3291 0 3287 3292 0 3292 3293 0 3293 3291 0 3292 3294 0\n\t\t 3294 3293 0 3287 3294 0 3294 3295 0 3295 3293 0 3294 3296 0 3296 3295 0 3287 3296 0\n\t\t 3296 3297 0 3297 3295 0 3296 3298 0 3298 3297 0 3298 3299 0 3299 3297 0 3299 3300 0\n\t\t 3300 3297 0 3300 3301 0 3301 3297 0 3301 3295 0 3300 3302 0 3302 3301 0 3302 3303 0\n\t\t 3303 3301 0 3304 3303 0 3302 3304 0 3302 3305 0 3305 3304 0 3301 3306 0 3306 3295 0\n\t\t 3306 3293 0 3306 3307 0 3307 3293 0 3308 3307 0 3306 3308 0 3306 3309 0 3309 3308 0\n\t\t 3301 3309 0 3303 3309 0 3310 3308 0 3309 3310 0 3309 3311 0 3311 3310 0 3304 3311 0\n\t\t 3311 3303 0 3311 3312 0 3312 3310 0 3304 3312 0 3312 3313 0 3313 3310 0 3312 3314 0\n\t\t 3314 3313 0 3314 3315 0 3315 3313 0 3316 3315 0 3314 3316 0 3314 3317 0 3317 3316 0\n\t\t 3318 3317 0 3314 3318 0 3314 3319 0 3319 3318 0 3312 3319 0 3312 3320 0 3320 3319 0;\n\tsetAttr \".ed[11122:11287]\" 3304 3320 0 3321 3320 0 3304 3321 0 3305 3321 0 3321 3322 0\n\t\t 3322 3320 0 3322 3319 0 3322 3323 0 3323 3319 0 3323 3318 0 3324 3321 0 3305 3324 0\n\t\t 3305 3270 0 3270 3324 0 3324 3325 0 3325 3321 0 3325 3322 0 3325 3326 0 3326 3322 0\n\t\t 3326 3323 0 3325 3134 0 3134 3326 0 3324 3134 0 3327 3326 0 3328 3326 0 3327 3328 0\n\t\t 3328 3323 0 3136 3328 0 3238 3328 0 3238 11459 0 11459 3328 0 3305 3269 0 3302 3269 0\n\t\t 3302 3271 0 3300 3271 0 3299 3271 0 3299 3272 0 3299 3274 0 3298 3274 0 3298 3277 0\n\t\t 3296 3277 0 3296 3330 0 3330 3277 0 3287 3330 0 3281 3330 0 3279 3330 0 3331 3328 0\n\t\t 11459 3331 0 3331 3323 0 3331 3332 0 3332 3323 0 3331 11372 0 11372 3332 0 11372 11340 0\n\t\t 11340 3332 0 3335 3332 0 11340 3335 0 11340 11341 0 11341 3335 0 3337 3335 0 11341 3337 0\n\t\t 11341 3432 0 3432 3337 0 3332 3318 0 3335 3317 0 3317 3332 0 3335 3316 0 3337 3316 0\n\t\t 3337 3338 0 3338 3316 0 3338 3315 0 3338 3313 0 3338 3339 0 3339 3313 0 3339 3310 0\n\t\t 3339 3340 0 3340 3310 0 3340 3308 0 3340 3341 0 3341 3308 0 3341 3342 0 3342 3308 0\n\t\t 3342 3307 0 3342 3293 0 3342 3291 0 3342 3290 0 3343 13325 0 13325 13323 0 13323 3343 0\n\t\t 13323 3345 0 3345 3343 0 13323 11715 0 11715 3345 0 11715 3346 0 3346 3345 0 3347 3345 0\n\t\t 3346 3347 0 3347 3343 0 3346 3155 0 3348 3343 0 3349 3343 0 3348 3349 0 3349 13325 0\n\t\t 3157 3349 0 3350 3349 0 3157 3350 0 3351 3350 0 3346 3352 0 3346 3353 0 3353 3352 0\n\t\t 11715 3353 0 3353 3354 0 3354 3352 0 3354 3161 0 3354 3425 0 3425 3161 0 3425 9523 0\n\t\t 3353 11716 0 11716 3354 0 11715 11716 0 11716 13311 0 13311 3354 0 10865 3425 0 3354 10865 0\n\t\t 13311 10865 0 3350 3446 0 3446 3349 0 3446 13297 0 13297 3349 0 13297 13325 0 3357 3359 0\n\t\t 3359 11280 0 11280 3357 0 11280 3360 0 3360 3357 0 3360 3361 0 3361 3357 0 3361 3362 0\n\t\t 3362 3357 0 3363 3362 0 3361 3363 0 3361 3364 0 3364 3363 0 3365 3361 0 3360 3365 0\n\t\t 3360 3366 0 3366 3365 0 3367 3365 0 3366 3367 0 3366 3368 0 3368 3367 0 3369 3368 0\n\t\t 3366 3369 0 3366 11455 0 11455 3369 0 3360 11455 0 11280 11455 0 3371 3364 0 3361 3371 0\n\t\t 3365 3371 0 3367 3371 0 3369 3372 0 3372 3368 0 3372 3367 0 3372 3373 0 3373 3367 0;\n\tsetAttr \".ed[11288:11453]\" 3373 3374 0 3374 3367 0 3374 3375 0 3375 3367 0 3375 3371 0\n\t\t 3364 3376 0 3376 3363 0 3376 3377 0 3377 3363 0 3376 11011 0 11011 3377 0 11011 13100 0\n\t\t 13100 3377 0 3371 3379 0 3379 3364 0 3379 3376 0 3379 11012 0 11012 3376 0 11012 11011 0\n\t\t 11057 11012 0 3379 11057 0 3379 3382 0 3382 11057 0 3371 3382 0 3375 3382 0 3374 3383 0\n\t\t 3383 3375 0 3383 3382 0 3383 11057 0 11247 3377 0 13100 11247 0 11247 3363 0 11247 11273 0\n\t\t 11273 3363 0 13100 11248 0 11248 11247 0 11273 10869 0 10869 3363 0 10869 3362 0\n\t\t 10869 10870 0 10870 3362 0 10870 3357 0 10870 3359 0 10870 3455 0 3455 3359 0 3386 3359 0\n\t\t 3455 3386 0 3386 3387 0 3387 3359 0 3386 3388 0 3388 3387 0 3387 11280 0 3387 3389 0\n\t\t 3389 11280 0 3389 11281 0 11281 11280 0 3358 3390 0 3390 3370 0 3370 3358 0 3455 3456 0\n\t\t 3456 3386 0 3456 3388 0 3456 13117 0 13117 3388 0 10604 10605 0 10605 3393 0 3393 10604 0\n\t\t 3393 3395 0 3395 10604 0 3395 3396 0 3396 10604 0 3395 3397 0 3397 3396 0 3395 3398 0\n\t\t 3398 3397 0 3398 3399 0 3399 3397 0 10603 3397 0 3399 10603 0 3399 3401 0 3401 10603 0\n\t\t 3401 3402 0 3402 10603 0 9009 10603 0 12038 3400 0 3400 3210 0 3210 12038 0 3217 12038 0\n\t\t 12979 10575 0 10575 10576 0 10576 12979 0 10576 3411 0 3411 12979 0 10576 3400 0\n\t\t 3400 3411 0 12038 3411 0 3406 3392 0 3392 10575 0 10575 3406 0 12979 3406 0 3407 3394 0\n\t\t 3394 3392 0 3392 3407 0 3406 3407 0 10316 10346 0 10346 10345 0 10345 10316 0 10345 10229 0\n\t\t 10229 10316 0 10227 10229 0 10345 10227 0 10345 3404 0 3404 10227 0 10228 10227 0\n\t\t 3404 10228 0 3404 12971 0 12971 10228 0 10231 10228 0 12971 10231 0 12971 3403 0\n\t\t 3403 10231 0 12028 10231 0 3403 12028 0 3403 12030 0 10472 10471 0 10471 10311 0\n\t\t 10311 10472 0 10311 13009 0 13009 10472 0 10312 10311 0 10471 10312 0 10471 10494 0\n\t\t 10494 10312 0 3433 10312 0 10494 3433 0 10494 13090 0 13090 3433 0 13009 12999 0\n\t\t 12999 10472 0 3424 12999 0 13009 3424 0 13009 10543 0 10543 3424 0 10543 10544 0\n\t\t 10544 3424 0 11915 3424 0 3424 3418 0 3418 11915 0 11914 10545 0 10545 10876 0 10876 11914 0\n\t\t 10876 10873 0 10873 11914 0 3426 3424 0 3415 3419 0 3419 3380 0 3380 3415 0 3380 3381 0\n\t\t 3381 3415 0 3378 3380 0 3419 3378 0 3419 3420 0 3420 3378 0 3420 11250 0 11250 3378 0\n\t\t 3420 10473 0;\n\tsetAttr \".ed[11454:11619]\" 10473 11250 0 11250 3422 0 3422 3378 0 10864 12999 0\n\t\t 3424 10864 0 3424 10866 0 10866 10864 0 3426 10866 0 3163 10866 0 3408 3427 0 3427 3282 0\n\t\t 3282 3408 0 3282 3405 0 3405 3408 0 3280 3427 0 3408 3280 0 3408 3409 0 3409 3280 0\n\t\t 3409 3410 0 3410 3280 0 3410 3428 0 3428 3280 0 3410 3412 0 3412 3428 0 3412 3285 0\n\t\t 3285 3428 0 3093 3285 0 3412 3093 0 3412 3235 0 10546 3417 0 3417 3329 0 3329 10546 0\n\t\t 3329 12039 0 12039 10546 0 11913 10546 0 10547 11917 0 11917 3429 0 3429 10547 0\n\t\t 3429 3430 0 3430 10547 0 3417 3431 0 3431 3329 0 3431 3333 0 3333 3329 0 3431 3413 0\n\t\t 3413 3333 0 3413 3334 0 3334 3333 0 3413 3414 0 3414 3334 0 3414 3336 0 3336 3334 0\n\t\t 13169 3336 0 3414 13169 0 3414 13088 0 13088 13169 0 11498 11465 0 11465 13291 0\n\t\t 13291 11498 0 13291 11489 0 11489 11498 0 11594 11498 0 11489 11594 0 11489 11490 0\n\t\t 11490 11594 0 11595 11594 0 11490 11595 0 11490 11596 0 11596 11595 0 11465 11369 0\n\t\t 11369 13291 0 11369 11639 0 11639 13291 0 11637 11639 0 11369 11637 0 11369 3449 0\n\t\t 3449 11637 0 11638 11637 0 3449 11638 0 3449 11263 0 11263 11638 0 13000 11638 0\n\t\t 11263 13000 0 11264 10474 0 10474 13001 0 13001 11264 0 3434 3442 0 3442 3344 0 3344 3434 0\n\t\t 3344 3443 0 3443 3434 0 3443 3356 0 3356 3434 0 3356 3436 0 3436 3434 0 3442 3439 0\n\t\t 3439 3344 0 3439 3444 0 3444 3344 0 3439 3440 0 3440 3444 0 3440 3445 0 3445 3444 0\n\t\t 3355 3445 0 3440 3355 0 3440 3441 0 3441 3355 0 3423 3355 0 3441 3423 0 3441 3416 0\n\t\t 3416 3423 0 3438 3436 0 3356 3438 0 3356 13296 0 13296 3438 0 11262 11316 0 11316 3448 0\n\t\t 3448 11262 0 3448 3450 0 3450 11262 0 3450 11249 0 11249 11262 0 3451 3421 0 3421 3447 0\n\t\t 3447 3451 0 3384 3448 0 11316 3384 0 11316 3452 0 3452 3384 0 3452 3453 0 3453 3384 0\n\t\t 3453 3385 0 3385 3384 0 3453 3454 0 3454 3385 0 3454 11537 0 11537 3385 0 11538 11537 0\n\t\t 3454 11538 0 3454 3435 0 3435 11538 0 3435 3437 0 3437 11538 0 3437 3391 0 3391 11538 0\n\t\t 3076 3324 0 3268 3324 0 11459 11372 0 9642 9643 0 9643 9245 0 9245 9642 0 9245 12204 0\n\t\t 12204 9642 0 12204 12142 0 12142 9642 0 12142 3457 0 3457 9642 0 3458 12204 0 9245 3458 0\n\t\t 9245 3486 0 3486 3458 0 9904 3458 0 3486 9904 0 3486 12808 0 12808 9904 0 12808 9911 0;\n\tsetAttr \".ed[11620:11785]\" 9911 9904 0 9911 9905 0 9905 9904 0 9643 12042 0 12042 9245 0\n\t\t 12042 3500 0 3500 9245 0 12042 9073 0 9073 3500 0 9073 3497 0 3497 3500 0 9456 9304 0\n\t\t 9304 9303 0 9303 9456 0 9303 9457 0 9457 9456 0 9303 9881 0 9881 9457 0 9881 9892 0\n\t\t 9892 9457 0 9892 12114 0 12114 9457 0 12114 12076 0 12076 9457 0 9667 9304 0 9456 9667 0\n\t\t 9456 9503 0 9503 9667 0 3467 9667 0 9503 3467 0 9503 3513 0 3513 3467 0 3513 12113 0\n\t\t 12113 3467 0 12113 12728 0 12728 3467 0 12113 3516 0 3516 12728 0 3516 3471 0 3471 12728 0\n\t\t 3516 12044 0 12044 3471 0 12044 9721 0 9721 3471 0 9666 3468 0 3468 12217 0 12217 9666 0\n\t\t 12217 3469 0 3469 9666 0 3470 3468 0 9666 3470 0 9666 3466 0 3466 3470 0 3466 9720 0\n\t\t 9720 3470 0 9720 3460 0 3460 3470 0 12217 12139 0 12139 3469 0 12139 3505 0 3505 3469 0\n\t\t 3548 3460 0 9720 3548 0 9720 3472 0 3472 3548 0 3538 12173 0 12173 12223 0 12223 3538 0\n\t\t 12223 3474 0 3474 3538 0 12133 12223 0 12173 12133 0 12173 12135 0 12135 12133 0\n\t\t 9906 9910 0 9910 9909 0 9909 9906 0 9909 3481 0 3481 9906 0 12965 3480 0 3480 9917 0\n\t\t 9917 12965 0 9917 3478 0 3478 12965 0 3478 3496 0 3496 12965 0 3496 3479 0 3479 12965 0\n\t\t 9903 3482 0 3482 9925 0 9925 9903 0 9925 3483 0 3483 9903 0 3477 12809 0 12809 3484 0\n\t\t 3484 3477 0 3484 3476 0 3476 3477 0 3485 12815 0 12815 3459 0 3459 3485 0 3459 12875 0\n\t\t 12875 3485 0 12875 9246 0 9246 3485 0 9246 3501 0 3501 3485 0 9880 3489 0 3489 3488 0\n\t\t 3488 9880 0 3488 3490 0 3490 9880 0 3491 3489 0 9880 3491 0 9882 3507 0 3507 9883 0\n\t\t 9883 9882 0 3492 9883 0 3507 3492 0 3507 8917 0 8917 3492 0 8917 8918 0 8918 3492 0\n\t\t 8918 3495 0 3495 3492 0 12141 3479 0 3496 12141 0 3496 3475 0 3475 12141 0 9239 3499 0\n\t\t 3499 3498 0 3498 9239 0 3498 9240 0 9240 9239 0 3498 9348 0 9348 9240 0 9348 3502 0\n\t\t 3502 9240 0 3508 12322 0 12322 3487 0 3487 3508 0 3487 3503 0 3503 3508 0 12139 3508 0\n\t\t 3503 12139 0 3503 3505 0 3506 3493 0 3493 12322 0 12322 3506 0 3508 3506 0 3494 3493 0\n\t\t 3506 3494 0 3506 3509 0 3509 3494 0 3510 3506 0 3508 3510 0 3510 3509 0 3508 3504 0\n\t\t 3504 3510 0 3510 3511 0 3511 3509 0 3465 12708 0 12708 11995 0 11995 3465 0 11995 11996 0\n\t\t 11996 3465 0;\n\tsetAttr \".ed[11786:11951]\" 12001 11995 0 12708 12001 0 12708 3464 0 3464 12001 0\n\t\t 12052 3465 0 11996 12052 0 11996 3521 0 3521 12052 0 11944 12001 0 3464 11944 0 3464 3461 0\n\t\t 3461 11944 0 3461 9458 0 9458 11944 0 3555 12052 0 3521 3555 0 3521 3517 0 3517 3555 0\n\t\t 3514 3512 0 3512 11918 0 11918 3514 0 11918 11919 0 11919 3514 0 11921 11918 0 3512 11921 0\n\t\t 3512 3515 0 3515 11921 0 12051 3514 0 11919 12051 0 11919 3529 0 3529 12051 0 11941 11921 0\n\t\t 3515 11941 0 3515 11943 0 11943 11941 0 12046 12051 0 3529 12046 0 3529 12048 0 12048 12046 0\n\t\t 3532 11942 0 11942 3523 0 3523 3532 0 3523 3462 0 3462 3532 0 3518 3526 0 3526 3525 0\n\t\t 3525 3518 0 3525 3519 0 3519 3518 0 3518 3520 0 3520 3526 0 3520 3527 0 3527 3526 0\n\t\t 3525 3528 0 3528 3519 0 3528 12050 0 12050 3519 0 3530 3527 0 3520 3530 0 3520 3522 0\n\t\t 3522 3530 0 3531 3530 0 3522 3531 0 3522 12075 0 12075 3531 0 3524 12050 0 3528 3524 0\n\t\t 3528 3533 0 3533 3524 0 3534 3531 0 12075 3534 0 12075 3463 0 3463 3534 0 3475 3540 0\n\t\t 3540 12140 0 12140 3475 0 12140 12141 0 3535 12139 0 12217 3535 0 3536 3537 0 3537 3473 0\n\t\t 3473 3536 0 3473 12179 0 12179 3536 0 3537 3539 0 3539 3473 0 3539 12134 0 12134 3473 0\n\t\t 3557 12237 0 12237 9634 0 9634 3557 0 9634 9183 0 9183 3557 0 11647 12237 0 3557 11647 0\n\t\t 3557 11656 0 11656 11647 0 12237 3566 0 3566 9634 0 3566 9258 0 9258 9634 0 3566 12441 0\n\t\t 12441 9258 0 12441 9259 0 9259 9258 0 10038 9259 0 12441 10038 0 12441 10036 0 10036 10038 0\n\t\t 9072 9183 0 9634 9072 0 9634 12025 0 12025 9072 0 9073 9072 0 12025 9073 0 12025 3497 0\n\t\t 12359 11557 0 11557 3584 0 3584 12359 0 3584 12336 0 12336 12359 0 9485 3584 0 11557 9485 0\n\t\t 11557 3575 0 3575 9485 0 12343 3575 0 11557 12343 0 11557 11555 0 11555 12343 0 12336 9726 0\n\t\t 9726 12359 0 9726 3594 0 3594 12359 0 9726 9725 0 9725 3594 0 9725 9186 0 9186 3594 0\n\t\t 9187 9186 0 9725 9187 0 9725 9740 0 9740 9187 0 3595 9187 0 9740 3595 0 9740 12026 0\n\t\t 12026 3595 0 12044 3595 0 12026 12044 0 12026 9721 0 3615 12194 0 12194 3556 0 3556 3615 0\n\t\t 3556 3558 0 3558 3615 0 12194 3542 0 3542 3556 0 3542 3559 0 3559 3556 0 3554 3559 0\n\t\t 3542 3554 0 3542 3546 0 3546 3554 0 11648 3615 0 3558 11648 0 3558 3550 0 3550 11648 0\n\t\t 3546 3548 0;\n\tsetAttr \".ed[11952:12117]\" 3548 3554 0 3472 3554 0 3618 3560 0 3560 3568 0 3568 3618 0\n\t\t 3568 12739 0 12739 3618 0 3568 12638 0 12638 12739 0 12638 12741 0 12741 12739 0\n\t\t 3571 10039 0 10039 10037 0 10037 3571 0 10037 12899 0 12899 3571 0 12930 12442 0\n\t\t 12442 12238 0 12238 12930 0 12238 3567 0 3567 12930 0 12238 3541 0 3541 3567 0 3541 12637 0\n\t\t 12637 3567 0 3569 3563 0 3563 3544 0 3544 3569 0 3544 3565 0 3565 3569 0 12678 3545 0\n\t\t 3545 3564 0 3564 12678 0 3564 12676 0 12676 12678 0 9260 3570 0 3570 3572 0 3572 9260 0\n\t\t 3572 3543 0 3543 9260 0 3572 9632 0 9632 3543 0 9632 9633 0 9633 3543 0 9516 3577 0\n\t\t 3577 3576 0 3576 9516 0 3576 9484 0 9484 9516 0 3576 3579 0 3579 9484 0 9487 10936 0\n\t\t 10936 9486 0 9486 9487 0 9487 3580 0 3580 10936 0 3580 10937 0 10937 10936 0 3580 3581 0\n\t\t 3581 10937 0 3581 3588 0 3588 10937 0 3541 3613 0 3613 12637 0 3613 3562 0 3562 12637 0\n\t\t 9239 3547 0 3547 3499 0 3547 3582 0 3582 3499 0 3547 3574 0 3574 3582 0 3574 3573 0\n\t\t 3573 3582 0 3583 12335 0 12335 3578 0 3578 3583 0 3578 3586 0 3586 3583 0 3583 11648 0\n\t\t 11648 12335 0 3550 12335 0 3585 3583 0 3586 3585 0 3586 3587 0 3587 3585 0 3587 11068 0\n\t\t 11068 3585 0 11068 3589 0 3589 3585 0 3585 3590 0 3590 3583 0 3589 3590 0 3590 3614 0\n\t\t 3614 3583 0 3589 3591 0 3591 3590 0 3553 11004 0 11004 11003 0 11003 3553 0 11003 3552 0\n\t\t 3552 3553 0 11003 13191 0 13191 3552 0 13191 12364 0 12364 3552 0 3553 12043 0 12043 11004 0\n\t\t 12043 3599 0 3599 11004 0 13191 13186 0 13186 12364 0 13186 3549 0 3549 12364 0 13186 11558 0\n\t\t 11558 3549 0 12043 3555 0 3555 3599 0 3517 3599 0 3593 13290 0 13290 3604 0 3604 3593 0\n\t\t 3604 3592 0 3592 3593 0 3604 3606 0 3606 3592 0 3606 3598 0 3598 3592 0 3593 12045 0\n\t\t 12045 13290 0 12045 3607 0 3607 13290 0 3606 11566 0 11566 3598 0 11566 3596 0 3596 3598 0\n\t\t 12045 12046 0 12046 3607 0 12048 3607 0 11556 3601 0 3601 13187 0 13187 11556 0 13187 3610 0\n\t\t 3610 11556 0 3597 3603 0 3603 3602 0 3602 3597 0 3602 11611 0 11611 3597 0 3602 3605 0\n\t\t 3605 11611 0 3605 11565 0 11565 11611 0 3597 12047 0 12047 3603 0 12047 3608 0 3608 3603 0\n\t\t 3605 3609 0 3609 11565 0 3609 11567 0 11567 11565 0 3609 3611 0 3611 11567 0 3611 3600 0\n\t\t 3600 11567 0 12047 3524 0;\n\tsetAttr \".ed[12118:12283]\" 3524 3608 0 3533 3608 0 3612 3551 0 3551 3600 0 3600 3612 0\n\t\t 3611 3612 0 11646 3615 0 11648 11646 0 3613 11649 0 11649 3562 0 11649 12740 0 12740 3562 0\n\t\t 3617 12773 0 12773 3561 0 3561 3617 0 3561 3619 0 3619 3617 0 3561 3616 0 3616 3619 0\n\t\t 3616 3620 0 3620 3619 0 3621 10469 0 10469 10476 0 10476 3621 0 10476 3624 0 3624 3621 0\n\t\t 10470 10469 0 3621 10470 0 3621 3626 0 3626 10470 0 3626 3627 0 3627 10470 0 3627 10651 0\n\t\t 10651 10470 0 10652 10651 0 3627 10652 0 3627 3628 0 3628 10652 0 3628 3629 0 3629 10652 0\n\t\t 3629 10439 0 10439 10652 0 10429 10439 0 3629 10429 0 3629 3632 0 3632 10429 0 3632 3633 0\n\t\t 3633 10429 0 3633 10430 0 10430 10429 0 13063 10430 0 3633 13063 0 3633 3635 0 3635 13063 0\n\t\t 3635 3636 0 3636 13063 0 3636 13177 0 13177 13063 0 3683 13177 0 3636 3683 0 3636 3638 0\n\t\t 3638 3683 0 3638 3639 0 3639 3683 0 3639 9997 0 9997 3683 0 3639 3640 0 3640 3677 0\n\t\t 3677 3639 0 3677 9997 0 3640 3641 0 3641 3677 0 3641 10241 0 10241 3677 0 10242 10241 0\n\t\t 3641 10242 0 3641 3644 0 3644 10242 0 3644 3645 0 3645 10242 0 3645 12879 0 12879 10242 0\n\t\t 3645 3624 0 3624 12879 0 10476 12879 0 3673 10301 0 10301 3646 0 3646 3673 0 3646 3648 0\n\t\t 3648 3673 0 10349 3673 0 3648 10349 0 3648 3650 0 3650 10349 0 10350 10349 0 3650 10350 0\n\t\t 3650 3652 0 3652 10350 0 9985 10350 0 3652 9985 0 3652 3653 0 3653 9985 0 3676 9985 0\n\t\t 3653 3676 0 3653 3654 0 3654 3676 0 12854 3676 0 3654 12854 0 3654 3656 0 3656 12854 0\n\t\t 3684 12854 0 3656 3684 0 3656 3672 0 3672 3684 0 3657 3646 0 10301 3657 0 10301 10302 0\n\t\t 10302 3657 0 3659 3657 0 10302 3659 0 10302 10404 0 10404 3659 0 3661 3659 0 10404 3661 0\n\t\t 10404 10446 0 10446 3661 0 3663 3661 0 10446 3663 0 10446 12925 0 12925 3663 0 3664 3663 0\n\t\t 12925 3664 0 12925 10156 0 10156 3664 0 3666 3664 0 10156 3666 0 10156 10079 0 10079 3666 0\n\t\t 3668 3666 0 10079 3668 0 10079 10065 0 10065 3668 0 3670 3668 0 10065 3670 0 10065 10066 0\n\t\t 10066 3670 0 3672 3670 0 10066 3672 0 10066 3684 0 3625 3647 0 3647 12932 0 12932 3625 0\n\t\t 12932 3623 0 3623 3625 0 3622 3623 0 12932 3622 0 12932 3649 0 3649 3622 0 3649 3651 0\n\t\t 3651 3622 0 3651 3674 0 3674 3622 0 3643 3674 0 3651 3643 0 3651 3675 0 3675 3643 0;\n\tsetAttr \".ed[12284:12449]\" 3675 9986 0 9986 3643 0 9986 3642 0 3642 3643 0 9996 3642 0\n\t\t 9986 9996 0 9986 3655 0 3655 9996 0 3655 12855 0 12855 9996 0 12855 3678 0 3678 9996 0\n\t\t 3625 3679 0 3679 3647 0 3679 3658 0 3658 3647 0 3679 3680 0 3680 3658 0 3680 3660 0\n\t\t 3660 3658 0 3662 3660 0 3680 3662 0 3680 3630 0 3630 3662 0 3630 3631 0 3631 3662 0\n\t\t 3631 3681 0 3681 3662 0 3665 3681 0 3631 3665 0 3631 3634 0 3634 3665 0 3634 3682 0\n\t\t 3682 3665 0 3682 3667 0 3667 3665 0 3669 3667 0 3682 3669 0 3682 3637 0 3637 3669 0\n\t\t 3637 13193 0 13193 3669 0 13193 3671 0 3671 3669 0 12855 3671 0 13193 12855 0 13193 3678 0\n\t\t 3685 10821 0 10821 10820 0 10820 3685 0 10820 3688 0 3688 3685 0 11073 10821 0 3685 11073 0\n\t\t 3685 3690 0 3690 11073 0 3690 3691 0 3691 11073 0 3691 3744 0 3744 11073 0 13221 3744 0\n\t\t 3691 13221 0 3691 3693 0 3693 13221 0 3693 3694 0 3694 13221 0 3694 3743 0 3743 13221 0\n\t\t 3742 3743 0 3694 3742 0 3694 3695 0 3695 3742 0 3695 3696 0 3696 3742 0 3696 10898 0\n\t\t 10898 3742 0 10899 10898 0 3696 10899 0 3696 3699 0 3699 10899 0 3699 3700 0 3700 10899 0\n\t\t 3700 3740 0 3740 10899 0 13277 3740 0 3700 13277 0 3700 3702 0 3702 13277 0 3702 3703 0\n\t\t 3703 13277 0 3703 12526 0 12526 13277 0 9389 12526 0 3703 9389 0 3703 3704 0 3704 9389 0\n\t\t 3704 3705 0 3705 9389 0 3705 9353 0 9353 9389 0 9352 9353 0 3705 9352 0 3705 3706 0\n\t\t 3706 9352 0 3706 3707 0 3707 9352 0 3707 11382 0 11382 9352 0 3707 3688 0 3688 11382 0\n\t\t 10820 11382 0 11271 11272 0 11272 3709 0 3709 11271 0 3709 3711 0 3711 11271 0 11291 11271 0\n\t\t 3711 11291 0 3711 3713 0 3713 11291 0 11289 11291 0 3713 11289 0 3713 3715 0 3715 11289 0\n\t\t 11205 11289 0 3715 11205 0 3715 3717 0 3717 11205 0 11190 11205 0 3717 11190 0 3717 3719 0\n\t\t 3719 11190 0 11178 11190 0 3719 11178 0 3719 3721 0 3721 11178 0 11179 11178 0 3721 11179 0\n\t\t 3721 3739 0 3739 11179 0 3723 3709 0 11272 3723 0 11272 11184 0 11184 3723 0 3725 3723 0\n\t\t 11184 3725 0 11184 11185 0 11185 3725 0 3727 3725 0 11185 3727 0 11185 11208 0 11208 3727 0\n\t\t 3729 3727 0 11208 3729 0 11208 3730 0 3730 3729 0 3731 3729 0 3730 3731 0 3730 3732 0\n\t\t 3732 3731 0 3733 3731 0 3732 3733 0 3732 11301 0 11301 3733 0 3735 3733 0 11301 3735 0;\n\tsetAttr \".ed[12450:12615]\" 11301 3736 0 3736 3735 0 3737 3735 0 3736 3737 0 3736 11283 0\n\t\t 11283 3737 0 3739 3737 0 11283 3739 0 11283 11179 0 3701 3738 0 3738 11282 0 11282 3701 0\n\t\t 3722 3738 0 3701 3722 0 11282 13195 0 13195 3701 0 3698 3734 0 3734 11328 0 11328 3698 0\n\t\t 11282 3734 0 3698 11282 0 3698 13195 0 11328 3697 0 3697 3698 0 3701 3741 0 3741 3722 0\n\t\t 11328 11209 0 11209 11437 0 11437 11328 0 11437 3697 0 11209 3728 0 3728 11437 0\n\t\t 3728 11438 0 11438 11437 0 3692 11438 0 3728 3692 0 3728 3726 0 3726 3692 0 3726 3724 0\n\t\t 3724 3692 0 3724 13220 0 13220 3692 0 3724 3710 0 3710 13220 0 3710 3689 0 3689 13220 0\n\t\t 3710 3708 0 3708 3689 0 3708 3687 0 3687 3689 0 3686 3687 0 3708 3686 0 3708 3712 0\n\t\t 3712 3686 0 3712 3714 0 3714 3686 0 3714 3745 0 3745 3686 0 3746 3745 0 3714 3746 0\n\t\t 3714 3716 0 3716 3746 0 3716 3718 0 3718 3746 0 3718 3747 0 3747 3746 0 3748 3747 0\n\t\t 3718 3748 0 3718 3720 0 3720 3748 0 3720 3722 0 3722 3748 0 3741 3748 0 11890 3750 0\n\t\t 3750 3749 0 3749 11890 0 3749 12567 0 12567 11890 0 3752 3750 0 11890 3752 0 11890 11725 0\n\t\t 11725 3752 0 11725 10452 0 10452 3752 0 10452 3753 0 3753 3752 0 3754 3753 0 10452 3754 0\n\t\t 10452 10372 0 10372 3754 0 10372 10371 0 10371 3754 0 10371 3755 0 3755 3754 0 3756 3755 0\n\t\t 10371 3756 0 10371 3915 0 3915 3756 0 3915 3913 0 3913 3756 0 3913 3757 0 3757 3756 0\n\t\t 3758 3757 0 3913 3758 0 3913 9361 0 9361 3758 0 9361 9362 0 9362 3758 0 9362 3761 0\n\t\t 3761 3758 0 9362 10355 0 10355 3762 0 3762 9362 0 3762 3761 0 10355 10354 0 10354 3762 0\n\t\t 10354 3763 0 3763 3762 0 3764 3763 0 10354 3764 0 10354 9054 0 9054 3764 0 9054 9055 0\n\t\t 9055 3764 0 9055 3767 0 3767 3764 0 3768 3767 0 9055 3768 0 9055 10420 0 10420 3768 0\n\t\t 10420 10419 0 10419 3768 0 10419 3769 0 3769 3768 0 10419 12567 0 12567 3769 0 3749 3769 0\n\t\t 10444 10445 0 10445 3770 0 3770 10444 0 3770 3771 0 3771 10444 0 12848 10444 0 3771 12848 0\n\t\t 3771 3773 0 3773 12848 0 3924 12848 0 3773 3924 0 3773 3774 0 3774 3924 0 12877 3924 0\n\t\t 3774 12877 0 3774 3776 0 3776 12877 0 3927 12877 0 3776 3927 0 3776 3777 0 3777 3927 0\n\t\t 12951 3927 0 3777 12951 0 3777 3779 0 3779 12951 0 3929 12951 0 3779 3929 0 3779 3780 0\n\t\t 3780 3929 0;\n\tsetAttr \".ed[12616:12781]\" 3932 3929 0 3780 3932 0 3780 3781 0 3781 3932 0 12919 3932 0\n\t\t 3781 12919 0 3781 3783 0 3783 12919 0 10533 12919 0 3783 10533 0 3783 3784 0 3784 10533 0\n\t\t 10534 10533 0 3784 10534 0 3784 3785 0 3785 10534 0 3937 10534 0 3785 3937 0 3785 3786 0\n\t\t 3786 3937 0 3938 3937 0 3786 3938 0 3786 3787 0 3787 3938 0 10653 3938 0 3787 10653 0\n\t\t 3787 3788 0 3788 10653 0 12234 10653 0 3788 12234 0 3788 3790 0 3790 12234 0 10445 12234 0\n\t\t 3790 10445 0 3790 3770 0 12239 8979 0 8979 8981 0 8981 12239 0 8981 3920 0 3920 12239 0\n\t\t 8980 8979 0 12239 8980 0 12239 10402 0 10402 8980 0 10402 10403 0 10403 8980 0 10403 9658 0\n\t\t 9658 8980 0 3848 9658 0 10403 3848 0 10403 3926 0 3926 3848 0 3926 13218 0 13218 3848 0\n\t\t 13218 12295 0 12295 3848 0 3850 12295 0 13218 3850 0 13218 3928 0 3928 3850 0 3928 11001 0\n\t\t 11001 3850 0 11001 12116 0 12116 3850 0 12146 12116 0 11001 12146 0 11001 3931 0\n\t\t 3931 12146 0 3931 10956 0 10956 12146 0 10956 3853 0 3853 12146 0 10956 11960 0 11960 10153 0\n\t\t 10153 10956 0 10153 3853 0 11960 11961 0 11961 10153 0 11961 3856 0 3856 10153 0\n\t\t 12629 3856 0 11961 12629 0 11961 3936 0 3936 12629 0 3936 11991 0 11991 12629 0 11991 3858 0\n\t\t 3858 12629 0 12019 3858 0 11991 12019 0 11991 11992 0 11992 12019 0 11992 3940 0\n\t\t 3940 12019 0 3940 9234 0 9234 12019 0 3940 3920 0 3920 9234 0 8981 9234 0 8799 9670 0\n\t\t 9670 9676 0 9676 8799 0 9676 12080 0 12080 8799 0 9671 9670 0 8799 9671 0 8799 8741 0\n\t\t 8741 9671 0 8741 8742 0 8742 9671 0 8742 8906 0 8906 9671 0 8907 8906 0 8742 8907 0\n\t\t 8742 3847 0 3847 8907 0 3847 12257 0 12257 8907 0 12257 8913 0 8913 8907 0 3879 8913 0\n\t\t 12257 3879 0 12257 3849 0 3849 3879 0 3849 3851 0 3851 3879 0 3851 12185 0 12185 3879 0\n\t\t 10824 12185 0 3851 10824 0 3851 12201 0 12201 10824 0 12201 3855 0 3855 10824 0 3855 10825 0\n\t\t 10825 10824 0 3855 11733 0 11733 3873 0 3873 3855 0 3873 10825 0 11733 11734 0 11734 3873 0\n\t\t 11734 12215 0 12215 3873 0 3870 12215 0 11734 3870 0 11734 3857 0 3857 3870 0 3857 12735 0\n\t\t 12735 3870 0 12735 9735 0 9735 3870 0 9734 9735 0 12735 9734 0 12735 3859 0 3859 9734 0\n\t\t 3859 12323 0 12323 9734 0 12323 3865 0 3865 9734 0 12323 12080 0 12080 3865 0 9676 3865 0\n\t\t 9678 3883 0 3883 3881 0 3881 9678 0;\n\tsetAttr \".ed[12782:12947]\" 3881 12149 0 12149 9678 0 3885 3883 0 9678 3885 0 9678 3860 0\n\t\t 3860 3885 0 3860 11634 0 11634 3885 0 11634 13179 0 13179 3885 0 3886 13179 0 11634 3886 0\n\t\t 11634 11620 0 11620 3886 0 11620 11621 0 11621 3886 0 11621 11764 0 11764 3886 0\n\t\t 11579 11764 0 11621 11579 0 11621 11110 0 11110 11579 0 11110 10785 0 10785 11579 0\n\t\t 10785 11580 0 11580 11579 0 3891 11580 0 10785 3891 0 10785 10784 0 10784 3891 0\n\t\t 10784 3827 0 3827 3891 0 3827 3892 0 3892 3891 0 3827 10838 0 10838 3894 0 3894 3827 0\n\t\t 3894 3892 0 10838 10837 0 10837 3894 0 10837 11516 0 11516 3894 0 9152 11516 0 10837 9152 0\n\t\t 10837 9742 0 9742 9152 0 9742 9741 0 9741 9152 0 9741 9153 0 9153 9152 0 11775 9153 0\n\t\t 9741 11775 0 9741 12445 0 12445 11775 0 12445 3866 0 3866 11775 0 3866 11404 0 11404 11775 0\n\t\t 3866 12149 0 12149 11404 0 3881 11404 0 12468 12380 0 12380 10724 0 10724 12468 0\n\t\t 10724 3902 0 3902 12468 0 9414 3902 0 10724 9414 0 10724 10725 0 10725 9414 0 10725 9380 0\n\t\t 9380 9414 0 9380 9363 0 9363 9414 0 9364 9363 0 9380 9364 0 9380 9381 0 9381 9364 0\n\t\t 9381 10636 0 10636 9364 0 10636 10310 0 10310 9364 0 10282 10310 0 10636 10282 0\n\t\t 10636 10626 0 10626 10282 0 10626 10627 0 10627 10282 0 10627 10281 0 10281 10282 0\n\t\t 10676 10281 0 10627 10676 0 10627 3890 0 3890 10676 0 3890 10537 0 10537 10676 0\n\t\t 10537 12527 0 12527 10676 0 10537 3893 0 3893 12707 0 12707 10537 0 12707 12527 0\n\t\t 3893 3896 0 3896 12707 0 3896 3908 0 3908 12707 0 10488 3908 0 3896 10488 0 3896 11749 0\n\t\t 11749 10488 0 11749 9786 0 9786 10488 0 9786 9832 0 9832 10488 0 9833 9832 0 9786 9833 0\n\t\t 9786 9787 0 9787 9833 0 9787 3899 0 3899 9833 0 3899 3904 0 3904 9833 0 3899 12380 0\n\t\t 12380 3904 0 12468 3904 0 3792 3793 0 3793 3805 0 3805 3792 0 3805 3845 0 3845 3792 0\n\t\t 3806 3805 0 3793 3806 0 3793 3794 0 3794 3806 0 3807 3806 0 3794 3807 0 3794 3846 0\n\t\t 3846 3807 0 12256 3807 0 3846 12256 0 3846 9659 0 9659 12256 0 3810 12256 0 9659 3810 0\n\t\t 9659 3796 0 3796 3810 0 9579 3810 0 3796 9579 0 3796 12115 0 12115 9579 0 9580 9579 0\n\t\t 12115 9580 0 12115 3797 0 3797 9580 0 3813 9580 0 3797 3813 0 3797 3852 0 3852 3813 0\n\t\t 12202 3813 0 3852 12202 0 3852 10210 0 10210 12202 0 10210 3854 0 3854 3814 0 3814 10210 0\n\t\t 3814 12202 0;\n\tsetAttr \".ed[12948:13113]\" 3815 3814 0 3854 3815 0 3854 10154 0 10154 3815 0 12734 3815 0\n\t\t 10154 12734 0 10154 3800 0 3800 12734 0 3817 12734 0 3800 3817 0 3800 12613 0 12613 3817 0\n\t\t 12761 3817 0 12613 12761 0 12613 3802 0 3802 12761 0 3818 12761 0 3802 3818 0 3802 3804 0\n\t\t 3804 3818 0 3845 3818 0 3804 3845 0 3804 3792 0 9677 3862 0 3862 3861 0 3861 9677 0\n\t\t 3861 3863 0 3863 9677 0 3864 3861 0 3862 3864 0 3862 3819 0 3819 3864 0 9831 3864 0\n\t\t 3819 9831 0 3819 12150 0 12150 9831 0 3867 9831 0 12150 3867 0 12150 3831 0 3831 3867 0\n\t\t 3868 3867 0 3831 3868 0 3831 3869 0 3869 3868 0 9756 3868 0 3869 9756 0 3869 3871 0\n\t\t 3871 9756 0 3816 9756 0 3871 3816 0 3871 3872 0 3872 3816 0 12212 3816 0 3872 12212 0\n\t\t 3872 3874 0 3874 12212 0 3877 12212 0 3874 3877 0 3874 13182 0 13182 3877 0 13182 3876 0\n\t\t 3876 3875 0 3875 13182 0 3875 3877 0 3812 3875 0 3876 3812 0 3876 3878 0 3878 3812 0\n\t\t 12218 3812 0 3878 12218 0 3878 3880 0 3880 12218 0 3811 12218 0 3880 3811 0 3880 3823 0\n\t\t 3823 3811 0 3809 3811 0 3823 3809 0 3823 3822 0 3822 3809 0 3808 3809 0 3822 3808 0\n\t\t 3822 3820 0 3820 3808 0 3863 3808 0 3820 3863 0 3820 9677 0 10767 10768 0 10768 3882 0\n\t\t 3882 10767 0 3882 3833 0 3833 10767 0 3884 3882 0 10768 3884 0 10768 10900 0 10900 3884 0\n\t\t 3835 3884 0 10900 3835 0 10900 3821 0 3821 3835 0 3838 3835 0 3821 3838 0 3821 13180 0\n\t\t 13180 3838 0 3887 3838 0 13180 3887 0 13180 3824 0 3824 3887 0 3888 3887 0 3824 3888 0\n\t\t 3824 3825 0 3825 3888 0 3889 3888 0 3825 3889 0 3825 3826 0 3826 3889 0 10677 3889 0\n\t\t 3826 10677 0 3826 13128 0 13128 10677 0 3895 10677 0 13128 3895 0 13128 10582 0 10582 3895 0\n\t\t 10582 10583 0 10583 10536 0 10536 10582 0 10536 3895 0 10551 10536 0 10583 10551 0\n\t\t 10583 3828 0 3828 10551 0 3897 10551 0 3828 3897 0 3828 3829 0 3829 3897 0 3841 3897 0\n\t\t 3829 3841 0 3829 3830 0 3830 3841 0 3844 3841 0 3830 3844 0 3830 3898 0 3898 3844 0\n\t\t 12381 3844 0 3898 12381 0 3898 3900 0 3900 12381 0 3833 12381 0 3900 3833 0 3900 10767 0\n\t\t 3901 3903 0 3903 12469 0 12469 3901 0 12469 3834 0 3834 3901 0 3832 12469 0 3903 3832 0\n\t\t 3903 3751 0 3751 3832 0 12626 3832 0 3751 12626 0 3751 3905 0 3905 12626 0 3843 12626 0\n\t\t 3905 3843 0;\n\tsetAttr \".ed[13114:13279]\" 3905 3906 0 3906 3843 0 3842 3843 0 3906 3842 0 3906 3766 0\n\t\t 3766 3842 0 3907 3842 0 3766 3907 0 3766 3765 0 3765 3907 0 10489 3907 0 3765 10489 0\n\t\t 3765 3909 0 3909 10489 0 3840 10489 0 3909 3840 0 3909 3910 0 3910 3840 0 3839 3840 0\n\t\t 3910 3839 0 3910 3760 0 3760 3839 0 3760 3759 0 3759 3911 0 3911 3760 0 3911 3839 0\n\t\t 3912 3911 0 3759 3912 0 3759 10340 0 10340 3912 0 3914 3912 0 10340 3914 0 10340 10341 0\n\t\t 10341 3914 0 3916 3914 0 10341 3916 0 10341 3917 0 3917 3916 0 3837 3916 0 3917 3837 0\n\t\t 3917 3918 0 3918 3837 0 3836 3837 0 3918 3836 0 3918 3919 0 3919 3836 0 3834 3836 0\n\t\t 3919 3834 0 3919 3901 0 11126 3922 0 3922 3921 0 3921 11126 0 3921 3791 0 3791 11126 0\n\t\t 3923 3791 0 3921 3923 0 3921 3772 0 3772 3923 0 3772 12876 0 12876 3923 0 12876 3925 0\n\t\t 3925 3923 0 11082 3925 0 12876 11082 0 12876 3775 0 3775 11082 0 3775 12882 0 12882 11082 0\n\t\t 12882 3795 0 3795 11082 0 11000 3795 0 12882 11000 0 12882 3778 0 3778 11000 0 3778 11037 0\n\t\t 11037 11000 0 11037 3930 0 3930 11000 0 10955 3930 0 11037 10955 0 11037 11038 0\n\t\t 11038 10955 0 11038 3782 0 3782 10955 0 3782 3933 0 3933 10955 0 3782 3934 0 3934 3798 0\n\t\t 3798 3782 0 3798 3933 0 3934 3935 0 3935 3798 0 3935 3799 0 3799 3798 0 12631 3799 0\n\t\t 3935 12631 0 3935 10584 0 10584 12631 0 10584 10585 0 10585 12631 0 10585 3801 0\n\t\t 3801 12631 0 3803 3801 0 10585 3803 0 10585 3939 0 3939 3803 0 3939 3789 0 3789 3803 0\n\t\t 3789 11127 0 11127 3803 0 3789 3922 0 3922 11127 0 11126 11127 0 3941 12685 0 12685 4115 0\n\t\t 4115 3941 0 4115 3943 0 3943 3941 0 4115 12669 0 12669 3943 0 12669 3945 0 3945 3943 0\n\t\t 12669 10064 0 10064 3945 0 10064 3946 0 3946 3945 0 10064 9673 0 9673 3946 0 9673 3947 0\n\t\t 3947 3946 0 9673 9672 0 9672 3947 0 9672 3948 0 3948 3947 0 9672 4127 0 4127 3948 0\n\t\t 4127 3949 0 3949 3948 0 4127 9889 0 9889 3949 0 9889 3951 0 3951 3949 0 9889 9890 0\n\t\t 9890 3951 0 9890 3953 0 3953 3951 0 9890 4124 0 4124 3953 0 4124 3954 0 3954 3953 0\n\t\t 9907 3956 0 3956 3954 0 3954 9907 0 4124 9907 0 9907 9908 0 9908 3956 0 9908 3958 0\n\t\t 3958 3956 0 9908 4121 0 4121 3958 0 4121 3959 0 3959 3958 0 4121 4119 0 4119 3959 0\n\t\t 4119 3960 0 3960 3959 0;\n\tsetAttr \".ed[13280:13445]\" 4119 9641 0 9641 3960 0 9641 3961 0 3961 3960 0 9641 9640 0\n\t\t 9640 3961 0 9640 3962 0 3962 3961 0 9640 12685 0 12685 3962 0 3941 3962 0 3963 3964 0\n\t\t 3964 4003 0 4003 3963 0 4003 10815 0 10815 3963 0 9826 4003 0 3964 9826 0 3964 3967 0\n\t\t 3967 9826 0 9827 9826 0 3967 9827 0 3967 3969 0 3969 9827 0 9834 9827 0 3969 9834 0\n\t\t 3969 3971 0 3971 9834 0 4132 9834 0 3971 4132 0 3971 3972 0 3972 4132 0 9685 4132 0\n\t\t 3972 9685 0 3972 3974 0 3974 9685 0 9686 9685 0 3974 9686 0 3974 3976 0 3976 9686 0\n\t\t 9700 9686 0 3976 9700 0 3976 3978 0 3978 9700 0 12729 9700 0 3978 12729 0 3978 3979 0\n\t\t 3979 12729 0 11013 12729 0 3979 11013 0 3979 3981 0 3981 11013 0 11014 11013 0 3981 11014 0\n\t\t 3981 3983 0 3983 11014 0 11794 11014 0 3983 11794 0 3983 3984 0 3984 11794 0 11795 11794 0\n\t\t 3984 11795 0 3984 3985 0 3985 11795 0 11056 11795 0 3985 11056 0 3985 3987 0 3987 11056 0\n\t\t 10816 11056 0 3987 10816 0 3987 3989 0 3989 10816 0 10815 10816 0 3989 10815 0 3989 3963 0\n\t\t 11391 11183 0 11183 11182 0 11182 11391 0 11182 4069 0 4069 11391 0 11182 11196 0\n\t\t 11196 4069 0 11196 8757 0 8757 4069 0 11196 11325 0 11325 8757 0 11325 8765 0 8765 8757 0\n\t\t 11325 3995 0 3995 8765 0 3995 12520 0 12520 8765 0 3995 3997 0 3997 12520 0 3997 9358 0\n\t\t 9358 12520 0 3997 11138 0 11138 9358 0 11138 9359 0 9359 9358 0 11138 11148 0 11148 9359 0\n\t\t 11148 9373 0 9373 9359 0 11148 11156 0 11156 9373 0 11156 9474 0 9474 9373 0 11156 11551 0\n\t\t 11551 9474 0 11551 12549 0 12549 9474 0 3968 3994 0 3994 3993 0 3993 3968 0 3993 3966 0\n\t\t 3966 3968 0 3993 3991 0 3991 3966 0 3991 12782 0 12782 3966 0 3991 3992 0 3992 12782 0\n\t\t 3992 3965 0 3965 12782 0 3975 3999 0 3999 3998 0 3998 3975 0 3998 3973 0 3973 3975 0\n\t\t 3975 3977 0 3977 3999 0 3977 4000 0 4000 3999 0 3977 4014 0 4014 4000 0 4014 4001 0\n\t\t 4001 4000 0 3992 4004 0 4004 3965 0 11276 11242 0 11242 11183 0 11183 11276 0 11276 11274 0\n\t\t 11274 11242 0 11274 11243 0 11243 11242 0 11274 11275 0 11275 11243 0 11275 11791 0\n\t\t 11791 11243 0 11275 9339 0 9339 11791 0 9339 11780 0 11780 11791 0 9339 4084 0 4084 11780 0\n\t\t 4084 11781 0 11781 11780 0 4084 12466 0 12466 11781 0 12466 11903 0 11903 11781 0\n\t\t 12466 12549 0 12549 11903 0 11551 11903 0;\n\tsetAttr \".ed[13446:13611]\" 3980 4013 0 4013 4001 0 4001 3980 0 4014 3980 0 3980 3982 0\n\t\t 3982 4013 0 3982 4011 0 4011 4013 0 3982 4015 0 4015 4011 0 4015 4010 0 4010 4011 0\n\t\t 4015 4016 0 4016 4010 0 4016 4009 0 4009 4010 0 4016 3986 0 3986 4009 0 3986 4007 0\n\t\t 4007 4009 0 3986 3988 0 3988 4007 0 3988 4004 0 4004 4007 0 3988 3965 0 11391 11276 0\n\t\t 4088 4070 0 4070 12089 0 12089 4088 0 12089 4086 0 4086 4088 0 12089 4071 0 4071 4086 0\n\t\t 4071 11491 0 11491 4086 0 4071 4073 0 4073 11491 0 4073 11492 0 11492 11491 0 4073 9365 0\n\t\t 9365 11492 0 9365 4098 0 4098 11492 0 9365 9346 0 9346 4098 0 9346 13295 0 13295 4098 0\n\t\t 9346 9347 0 9347 13295 0 9347 4095 0 4095 13295 0 9347 9094 0 9094 4095 0 9094 12407 0\n\t\t 12407 4095 0 9094 9095 0 9095 12407 0 9095 11832 0 11832 12407 0 9095 9105 0 9105 11832 0\n\t\t 9105 11833 0 11833 11832 0 9205 12357 0 12357 11833 0 11833 9205 0 9105 9205 0 9205 4083 0\n\t\t 4083 12357 0 4083 12358 0 12358 12357 0 4083 9145 0 9145 12358 0 9145 9113 0 9113 12358 0\n\t\t 9145 9083 0 9083 9113 0 9083 9114 0 9114 9113 0 9083 9084 0 9084 9114 0 9084 9475 0\n\t\t 9475 9114 0 9084 9477 0 9477 9475 0 9477 4090 0 4090 9475 0 9477 4070 0 4070 4090 0\n\t\t 4088 4090 0 12443 9011 0 9011 4087 0 4087 12443 0 4087 9168 0 9168 12443 0 4087 9184 0\n\t\t 9184 9168 0 9184 9169 0 9169 9168 0 9184 9185 0 9185 9169 0 9185 9261 0 9261 9169 0\n\t\t 9185 9209 0 9209 9261 0 9209 9312 0 9312 9261 0 9209 11803 0 11803 9312 0 11803 4104 0\n\t\t 4104 9312 0 11803 11802 0 11802 4104 0 11802 4105 0 4105 4104 0 11802 8909 0 8909 4105 0\n\t\t 8909 12195 0 12195 4105 0 8909 8852 0 8852 12195 0 8852 11251 0 11251 12195 0 8852 8853 0\n\t\t 8853 11251 0 8853 11252 0 11252 11251 0 8850 8898 0 8898 11252 0 11252 8850 0 8853 8850 0\n\t\t 8850 8851 0 8851 8898 0 8851 8899 0 8899 8898 0 8851 8700 0 8700 8899 0 8700 8694 0\n\t\t 8694 8899 0 8700 8701 0 8701 8694 0 8701 8695 0 8695 8694 0 8701 12055 0 12055 8695 0\n\t\t 12055 8809 0 8809 8695 0 12055 12056 0 12056 8809 0 12056 12020 0 12020 8809 0 12056 9011 0\n\t\t 9011 12020 0 12443 12020 0 4116 10143 0 10143 12004 0 12004 4116 0 12004 10194 0\n\t\t 10194 4116 0 12004 11360 0 11360 10194 0 11360 10195 0 10195 10194 0 11360 11361 0\n\t\t 11361 10195 0 11361 10222 0;\n\tsetAttr \".ed[13612:13777]\" 10222 10195 0 11361 11394 0 11394 10222 0 11394 4129 0\n\t\t 4129 10222 0 11394 11395 0 11395 4129 0 11395 12759 0 12759 4129 0 11395 13292 0\n\t\t 13292 12759 0 13292 4126 0 4126 12759 0 13292 4106 0 4106 4126 0 4106 12781 0 12781 4126 0\n\t\t 4106 12145 0 12145 12781 0 12145 4125 0 4125 12781 0 12145 11344 0 11344 4125 0 11344 9781 0\n\t\t 9781 4125 0 11324 9780 0 9780 9781 0 9781 11324 0 11344 11324 0 11324 11167 0 11167 9780 0\n\t\t 11167 12305 0 12305 9780 0 11167 11168 0 11168 12305 0 11168 4120 0 4120 12305 0\n\t\t 11168 11149 0 11149 4120 0 11149 8944 0 8944 4120 0 11149 11150 0 11150 8944 0 11150 8945 0\n\t\t 8945 8944 0 11150 10144 0 10144 8945 0 10144 8961 0 8961 8945 0 10144 10143 0 10143 8961 0\n\t\t 4116 8961 0 3990 8756 0 8756 4017 0 4017 3990 0 4017 12105 0 12105 3990 0 8792 4017 0\n\t\t 8756 8792 0 8756 4072 0 4072 8792 0 8793 8792 0 4072 8793 0 4072 4074 0 4074 8793 0\n\t\t 4075 8793 0 4074 4075 0 4074 3996 0 3996 4075 0 4076 4075 0 3996 4076 0 3996 4077 0\n\t\t 4077 4076 0 4078 4076 0 4077 4078 0 4077 4079 0 4079 4078 0 4021 4078 0 4079 4021 0\n\t\t 4079 4080 0 4080 4021 0 4023 4021 0 4080 4023 0 4080 4081 0 4081 4023 0 4024 4023 0\n\t\t 4081 4024 0 4081 4002 0 4002 4024 0 4002 4012 0 4012 4082 0 4082 4002 0 4082 4024 0\n\t\t 9206 4082 0 4012 9206 0 4012 9338 0 9338 9206 0 4026 9206 0 9338 4026 0 9338 4085 0\n\t\t 4085 4026 0 4028 4026 0 4085 4028 0 4085 4008 0 4008 4028 0 4030 4028 0 4008 4030 0\n\t\t 4008 4006 0 4006 4030 0 4032 4030 0 4006 4032 0 4006 4005 0 4005 4032 0 12105 4032 0\n\t\t 4005 12105 0 4005 3990 0 4034 9010 0 9010 9020 0 9020 4034 0 9020 4018 0 4018 4034 0\n\t\t 9021 9020 0 9010 9021 0 9010 4089 0 4089 9021 0 11578 9021 0 4089 11578 0 4089 4053 0\n\t\t 4053 11578 0 4031 11578 0 4053 4031 0 4053 4091 0 4091 4031 0 4029 4031 0 4091 4029 0\n\t\t 4091 4050 0 4050 4029 0 4027 4029 0 4050 4027 0 4050 4048 0 4048 4027 0 4092 4027 0\n\t\t 4048 4092 0 4048 4046 0 4046 4092 0 4025 4092 0 4046 4025 0 4046 4044 0 4044 4025 0\n\t\t 4094 4025 0 4044 4094 0 4044 4043 0 4043 4094 0 4043 4042 0 4042 4093 0 4093 4043 0\n\t\t 4093 4094 0 4022 4093 0 4042 4022 0 4042 4040 0 4040 4022 0 12406 4022 0 4040 12406 0\n\t\t 4040 4096 0 4096 12406 0 4020 12406 0;\n\tsetAttr \".ed[13778:13943]\" 4096 4020 0 4096 4097 0 4097 4020 0 13293 4020 0 4097 13293 0\n\t\t 4097 4038 0 4038 13293 0 4019 13293 0 4038 4019 0 4038 4036 0 4036 4019 0 4018 4019 0\n\t\t 4036 4018 0 4036 4034 0 4099 4033 0 4033 4055 0 4055 4099 0 4055 4056 0 4056 4099 0\n\t\t 4100 4055 0 4033 4100 0 4033 4035 0 4035 4100 0 4101 4100 0 4035 4101 0 4035 4037 0\n\t\t 4037 4101 0 4102 4101 0 4037 4102 0 4037 4039 0 4039 4102 0 4103 4102 0 4039 4103 0\n\t\t 4039 11542 0 11542 4103 0 4061 4103 0 11542 4061 0 11542 11543 0 11543 4061 0 13289 4061 0\n\t\t 11543 13289 0 11543 4041 0 4041 13289 0 4063 13289 0 4041 4063 0 4041 4107 0 4107 4063 0\n\t\t 4110 4063 0 4107 4110 0 4107 4108 0 4108 4110 0 4108 4045 0 4045 4109 0 4109 4108 0\n\t\t 4109 4110 0 4111 4109 0 4045 4111 0 4045 4047 0 4047 4111 0 4112 4111 0 4047 4112 0\n\t\t 4047 4049 0 4049 4112 0 4113 4112 0 4049 4113 0 4049 4051 0 4051 4113 0 4114 4113 0\n\t\t 4051 4114 0 4051 4052 0 4052 4114 0 4067 4114 0 4052 4067 0 4052 4054 0 4054 4067 0\n\t\t 4056 4067 0 4054 4056 0 4054 4099 0 3944 12670 0 12670 4057 0 4057 3944 0 4057 4058 0\n\t\t 4058 3944 0 12648 4057 0 12670 12648 0 12670 3942 0 3942 12648 0 4068 12648 0 3942 4068 0\n\t\t 3942 4117 0 4117 4068 0 4066 4068 0 4117 4066 0 4117 4118 0 4118 4066 0 4065 4066 0\n\t\t 4118 4065 0 4118 9623 0 9623 4065 0 12306 4065 0 9623 12306 0 9623 9624 0 9624 12306 0\n\t\t 4064 12306 0 9624 4064 0 9624 3957 0 3957 4064 0 4122 4064 0 3957 4122 0 3957 3955 0\n\t\t 3955 4122 0 4123 4122 0 3955 4123 0 3955 12797 0 12797 4123 0 12797 3952 0 3952 12154 0\n\t\t 12154 12797 0 12154 4123 0 4062 12154 0 3952 4062 0 3952 3950 0 3950 4062 0 12764 4062 0\n\t\t 3950 12764 0 3950 9713 0 9713 12764 0 4060 12764 0 9713 4060 0 9713 4128 0 4128 4060 0\n\t\t 12760 4060 0 4128 12760 0 4128 4130 0 4130 12760 0 4059 12760 0 4130 4059 0 4130 4131 0\n\t\t 4131 4059 0 4058 4059 0 4131 4058 0 4131 3944 0 3968 3970 0 3970 3994 0 3970 11166 0\n\t\t 11166 3994 0 3970 12715 0 12715 11166 0 12715 11137 0 11137 11166 0 12715 3973 0\n\t\t 3973 11137 0 3998 11137 0 4133 4134 0 4134 4178 0 4178 4133 0 4178 12923 0 12923 4133 0\n\t\t 12923 10593 0 10593 4133 0 10593 4136 0 4136 4133 0 4137 4136 0 10593 4137 0 10593 10389 0\n\t\t 10389 4137 0;\n\tsetAttr \".ed[13944:14109]\" 10389 4188 0 4188 4137 0 4188 4138 0 4138 4137 0 4139 4138 0\n\t\t 4188 4139 0 4188 10320 0 10320 4139 0 10320 11883 0 11883 4139 0 11883 4140 0 4140 4139 0\n\t\t 4141 4140 0 11883 4141 0 11883 11886 0 11886 4141 0 11886 10007 0 10007 4141 0 10007 4143 0\n\t\t 4143 4141 0 4144 4143 0 10007 4144 0 10007 9878 0 9878 4144 0 9878 9879 0 9879 4144 0\n\t\t 9879 4147 0 4147 4144 0 4148 4147 0 9879 4148 0 9879 4186 0 4186 4148 0 4186 13005 0\n\t\t 13005 4148 0 13005 4150 0 4150 4148 0 4151 4150 0 13005 4151 0 13005 4183 0 4183 4151 0\n\t\t 4183 4180 0 4180 4151 0 4180 4152 0 4152 4151 0 4153 4152 0 4180 4153 0 4180 12691 0\n\t\t 12691 4153 0 4134 4153 0 12691 4134 0 12691 4178 0 4155 10703 0 10703 4176 0 4176 4155 0\n\t\t 4176 4157 0 4157 4155 0 4176 13024 0 13024 4157 0 13024 4159 0 4159 4157 0 13024 4179 0\n\t\t 4179 4159 0 4179 4160 0 4160 4159 0 4179 10313 0 10313 4160 0 10313 4161 0 4161 4160 0\n\t\t 10313 4182 0 4182 4161 0 4182 4162 0 4162 4161 0 4182 10263 0 10263 4162 0 10263 4163 0\n\t\t 4163 4162 0 10263 10264 0 10264 4163 0 10264 4175 0 4175 4163 0 4155 4164 0 4164 10703 0\n\t\t 4164 10704 0 10704 10703 0 4164 4166 0 4166 10704 0 4166 10330 0 10330 10704 0 4166 4167 0\n\t\t 4167 10330 0 4167 4190 0 4190 10330 0 4167 4168 0 4168 4190 0 4168 11896 0 11896 4190 0\n\t\t 4168 4169 0 4169 11896 0 4169 13096 0 13096 11896 0 4169 4171 0 4171 13096 0 4171 13048 0\n\t\t 13048 13096 0 4171 4172 0 4172 13048 0 4172 13049 0 13049 13048 0 4172 4174 0 4174 13049 0\n\t\t 4174 13067 0 13067 13049 0 4174 4175 0 4175 13067 0 10264 13067 0 13141 4156 0 4156 4177 0\n\t\t 4177 13141 0 4177 4135 0 4135 13141 0 4135 12690 0 12690 13141 0 12690 4158 0 4158 13141 0\n\t\t 10363 4158 0 12690 10363 0 12690 4154 0 4154 10363 0 4154 10336 0 10336 10363 0 10336 4181 0\n\t\t 4181 10363 0 10314 4181 0 10336 10314 0 10336 10337 0 10337 10314 0 10337 4149 0\n\t\t 4149 10314 0 4149 4184 0 4184 10314 0 4185 4184 0 4149 4185 0 4149 12852 0 12852 4185 0\n\t\t 4187 4177 0 4156 4187 0 4156 4165 0 4165 4187 0 10319 4187 0 4165 10319 0 4165 4189 0\n\t\t 4189 10319 0 4189 10331 0 10331 10319 0 10331 4191 0 4191 10319 0 4192 4191 0 10331 4192 0\n\t\t 10331 4193 0 4193 4192 0 4193 4170 0 4170 4192 0 4170 4194 0 4194 4192 0 4142 4194 0\n\t\t 4170 4142 0;\n\tsetAttr \".ed[14110:14275]\" 4170 4195 0 4195 4142 0 4195 4173 0 4173 4142 0 4173 4145 0\n\t\t 4145 4142 0 4146 4145 0 4173 4146 0 4173 4196 0 4196 4146 0 4196 4185 0 4185 4146 0\n\t\t 12852 4146 0 10463 10464 0 10464 4198 0 4198 10463 0 4198 4200 0 4200 10463 0 10464 10118 0\n\t\t 10118 4198 0 10118 4201 0 4201 4198 0 4202 4201 0 10118 4202 0 10118 4257 0 4257 4202 0\n\t\t 4257 4256 0 4256 4202 0 4256 4203 0 4203 4202 0 4204 4203 0 4256 4204 0 4256 10517 0\n\t\t 10517 4204 0 10517 10518 0 10518 4204 0 10518 4207 0 4207 4204 0 4208 4207 0 10518 4208 0\n\t\t 10518 4254 0 4254 4208 0 4254 4253 0 4253 4208 0 4253 4209 0 4209 4208 0 4210 4209 0\n\t\t 4253 4210 0 4253 12906 0 12906 4210 0 12906 4252 0 4252 4210 0 4252 4212 0 4212 4210 0\n\t\t 4213 4212 0 4252 4213 0 4252 10158 0 10158 4213 0 10158 4260 0 4260 4213 0 4260 4214 0\n\t\t 4214 4213 0 4215 4214 0 4260 4215 0 4260 11061 0 11061 4215 0 11061 11062 0 11062 4215 0\n\t\t 11062 4218 0 4218 4215 0 4219 4218 0 11062 4219 0 11062 4259 0 4259 4219 0 4200 4219 0\n\t\t 4259 4200 0 4259 10463 0 4220 4222 0 4222 4221 0 4221 4220 0 4221 4223 0 4223 4220 0\n\t\t 4220 10743 0 10743 4222 0 10743 4225 0 4225 4222 0 10743 4226 0 4226 4225 0 4226 4227 0\n\t\t 4227 4225 0 4226 10689 0 10689 4227 0 10689 4229 0 4229 4227 0 10689 4230 0 4230 4229 0\n\t\t 4230 4231 0 4231 4229 0 4230 4232 0 4232 4231 0 4232 4233 0 4233 4231 0 4232 4251 0\n\t\t 4251 4233 0 4251 4234 0 4234 4233 0 4221 4235 0 4235 4223 0 4235 9863 0 9863 4223 0\n\t\t 4235 4237 0 4237 9863 0 4237 9792 0 9792 9863 0 4237 4239 0 4239 9792 0 4239 9788 0\n\t\t 9788 9792 0 4239 4241 0 4241 9788 0 4241 9778 0 9778 9788 0 4241 4243 0 4243 9778 0\n\t\t 4243 9779 0 9779 9778 0 4243 4245 0 4245 9779 0 4245 4246 0 4246 9779 0 4245 4247 0\n\t\t 4247 4246 0 4247 4248 0 4248 4246 0 4247 4249 0 4249 4248 0 4249 10015 0 10015 4248 0\n\t\t 4249 4234 0 4234 10015 0 4251 10015 0 10014 4250 0 4250 10157 0 10157 10014 0 4250 10116 0\n\t\t 10116 10157 0 10157 4211 0 4211 10014 0 4244 10004 0 10004 10077 0 10077 4244 0 10004 10014 0\n\t\t 10014 10077 0 4211 10077 0 10077 10078 0 10078 4244 0 10116 4255 0 4255 10157 0 4206 4242 0\n\t\t 4242 4244 0 4244 4206 0 10078 4206 0 4240 4242 0 4206 4240 0 4206 4205 0 4205 4240 0;\n\tsetAttr \".ed[14276:14441]\" 4205 10249 0 10249 4240 0 10249 4238 0 4238 4240 0 4236 4238 0\n\t\t 10249 4236 0 10249 10117 0 10117 4236 0 10795 4236 0 10117 10795 0 10117 4258 0 4258 10795 0\n\t\t 10769 10795 0 4258 10769 0 4258 4199 0 4199 10769 0 4199 4197 0 4197 10769 0 4197 4224 0\n\t\t 4224 10769 0 10688 4224 0 4197 10688 0 4197 12950 0 12950 10688 0 12950 4217 0 4217 10688 0\n\t\t 4217 4228 0 4228 10688 0 10706 4228 0 4217 10706 0 4217 4216 0 4216 10706 0 4216 12721 0\n\t\t 12721 10706 0 12721 10731 0 10731 10706 0 10116 10731 0 12721 10116 0 12721 4255 0\n\t\t 9625 9626 0 9626 4262 0 4262 9625 0 4262 4264 0 4264 9625 0 4264 4265 0 4265 9625 0\n\t\t 4265 9754 0 9754 9625 0 4435 9754 0 4265 4435 0 4265 4266 0 4266 4435 0 4266 4267 0\n\t\t 4267 4435 0 4267 10148 0 10148 4435 0 12816 10148 0 4267 12816 0 4267 4269 0 4269 12816 0\n\t\t 4269 4270 0 4270 12816 0 4270 12666 0 12666 12816 0 12667 12666 0 4270 12667 0 4270 4272 0\n\t\t 4272 12667 0 4272 4273 0 4273 12667 0 4273 4429 0 4429 12667 0 12687 4429 0 4273 12687 0\n\t\t 4273 4276 0 4276 12687 0 4276 4275 0 4275 12687 0 4275 9646 0 9646 12687 0 9553 9646 0\n\t\t 4275 9553 0 4275 4279 0 4279 9553 0 4279 4280 0 4280 9553 0 4280 9554 0 9554 9553 0\n\t\t 4426 9554 0 4280 4426 0 4280 4282 0 4282 4426 0 4282 4283 0 4283 4426 0 4283 12615 0\n\t\t 12615 4426 0 4424 12615 0 4283 4424 0 4283 4285 0 4285 4424 0 9626 4424 0 4285 9626 0\n\t\t 4285 4262 0 4436 4287 0 4287 4286 0 4286 4436 0 4286 11162 0 11162 4436 0 4436 9419 0\n\t\t 9419 4287 0 9419 4290 0 4290 4287 0 9419 9420 0 9420 4290 0 9420 4292 0 4292 4290 0\n\t\t 9420 11348 0 11348 4292 0 11348 4294 0 4294 4292 0 11348 4441 0 4441 4294 0 4441 4295 0\n\t\t 4295 4294 0 4441 13120 0 13120 4295 0 13120 4297 0 4297 4295 0 13120 4444 0 4444 4297 0\n\t\t 4444 4298 0 4298 4297 0 4444 11427 0 11427 4298 0 11427 4300 0 4300 4298 0 11427 11428 0\n\t\t 11428 4300 0 11428 4302 0 4302 4300 0 11428 10442 0 10442 4302 0 10442 4303 0 4303 4302 0\n\t\t 10442 10417 0 10417 4303 0 10417 4304 0 4304 4303 0 10417 10418 0 10418 4304 0 10418 4305 0\n\t\t 4305 4304 0 10418 11720 0 11720 4305 0 11720 4307 0 4307 4305 0 11720 11683 0 11683 4307 0\n\t\t 11683 4309 0 4309 4307 0 11683 11163 0 11163 4309 0 11163 4311 0 4311 4309 0 11163 11162 0\n\t\t 11162 4311 0;\n\tsetAttr \".ed[14442:14607]\" 4286 4311 0 12889 9913 0 9913 12513 0 12513 12889 0\n\t\t 12513 9146 0 9146 12889 0 9146 9147 0 9147 12889 0 9147 4438 0 4438 12889 0 10523 4438 0\n\t\t 9147 10523 0 9147 9162 0 9162 10523 0 9162 11602 0 11602 10523 0 11602 4440 0 4440 10523 0\n\t\t 10527 4440 0 11602 10527 0 11602 11603 0 11603 10527 0 11603 11626 0 11626 10527 0\n\t\t 11626 10552 0 10552 10527 0 11608 10552 0 11626 11608 0 11626 11653 0 11653 11608 0\n\t\t 11653 11654 0 11654 11608 0 11654 11609 0 11609 11608 0 4445 11609 0 11654 4445 0\n\t\t 11654 4378 0 4378 4445 0 4378 4321 0 4321 4445 0 4321 4446 0 4446 4445 0 10454 4446 0\n\t\t 4321 10454 0 4321 4380 0 4380 10454 0 4380 8965 0 8965 10454 0 8965 8989 0 8989 10454 0\n\t\t 8990 8989 0 8965 8990 0 8965 8966 0 8966 8990 0 8966 11332 0 11332 8990 0 11332 10382 0\n\t\t 10382 8990 0 9914 10382 0 11332 9914 0 11332 4385 0 4385 9914 0 9913 9914 0 4385 9913 0\n\t\t 4385 12513 0 4368 9251 0 9251 9200 0 9200 4368 0 9200 4387 0 4387 4368 0 4387 12206 0\n\t\t 12206 4368 0 12206 8847 0 8847 4368 0 8848 8847 0 12206 8848 0 12206 12207 0 12207 8848 0\n\t\t 12207 9410 0 9410 8848 0 9410 9227 0 9227 8848 0 9228 9227 0 9410 9228 0 9410 9411 0\n\t\t 9411 9228 0 9411 4398 0 4398 9228 0 4398 9281 0 9281 9228 0 9282 9281 0 4398 9282 0\n\t\t 4398 11267 0 11267 9282 0 11267 12641 0 12641 9282 0 12641 11484 0 11484 9282 0 9453 11484 0\n\t\t 12641 9453 0 12641 12604 0 12604 9453 0 12604 11211 0 11211 9453 0 11211 9454 0 9454 9453 0\n\t\t 4379 9454 0 11211 4379 0 11211 11210 0 11210 4379 0 11210 11228 0 11228 4379 0 11228 12129 0\n\t\t 12129 4379 0 11434 12129 0 11228 11434 0 11228 11891 0 11891 11434 0 11891 12007 0\n\t\t 12007 11434 0 12007 4382 0 4382 11434 0 9252 4382 0 12007 9252 0 12007 9201 0 9201 9252 0\n\t\t 9251 9252 0 9201 9251 0 9201 9200 0 4388 8864 0 8864 11987 0 11987 4388 0 11987 11988 0\n\t\t 11988 4388 0 11988 4405 0 4405 4388 0 4405 4386 0 4386 4388 0 11976 4386 0 4405 11976 0\n\t\t 4405 12011 0 12011 11976 0 12011 8664 0 8664 11976 0 8664 11977 0 11977 11976 0 11198 11977 0\n\t\t 8664 11198 0 8664 8665 0 8665 11198 0 8665 8735 0 8735 11198 0 8735 11197 0 11197 11198 0\n\t\t 8818 11197 0 8735 8818 0 8735 8796 0 8796 8818 0 8796 10961 0 10961 8818 0 10961 8819 0\n\t\t 8819 8818 0 12137 8819 0 10961 12137 0 10961 10962 0 10962 12137 0;\n\tsetAttr \".ed[14608:14773]\" 10962 12949 0 12949 12137 0 12949 12969 0 12969 12137 0\n\t\t 4394 12969 0 12949 4394 0 12949 12978 0 12978 4394 0 12978 4416 0 4416 4394 0 4416 12924 0\n\t\t 12924 4394 0 4391 12924 0 4416 4391 0 4416 10854 0 10854 4391 0 10854 10848 0 10848 4391 0\n\t\t 10848 11935 0 11935 4391 0 8865 11935 0 10848 8865 0 10848 10849 0 10849 8865 0 8864 8865 0\n\t\t 10849 8864 0 10849 11987 0 11287 4403 0 4403 9808 0 9808 11287 0 9808 9797 0 9797 11287 0\n\t\t 9797 4422 0 4422 11287 0 4422 11288 0 11288 11287 0 11317 11288 0 4422 11317 0 4422 9747 0\n\t\t 9747 11317 0 9747 4432 0 4432 11317 0 4432 11342 0 11342 11317 0 11343 11342 0 4432 11343 0\n\t\t 4432 8977 0 8977 11343 0 8977 8978 0 8978 11343 0 8978 12309 0 12309 11343 0 11020 12309 0\n\t\t 8978 11020 0 8978 4430 0 4430 11020 0 4430 8968 0 8968 11020 0 8968 4410 0 4410 11020 0\n\t\t 10975 4410 0 8968 10975 0 8968 8969 0 8969 10975 0 12478 9313 0 9313 10975 0 10975 12478 0\n\t\t 8969 12478 0 9314 9313 0 12478 9314 0 12478 12408 0 12408 9314 0 12408 4427 0 4427 9314 0\n\t\t 4427 4415 0 4415 9314 0 9188 4415 0 4427 9188 0 4427 12373 0 12373 9188 0 12373 4425 0\n\t\t 4425 9188 0 4425 9117 0 9117 9188 0 9118 9117 0 4425 9118 0 4425 12345 0 12345 9118 0\n\t\t 4403 9118 0 12345 4403 0 12345 9808 0 4313 4369 0 4369 9504 0 9504 4313 0 9504 4370 0\n\t\t 4370 4313 0 9504 4328 0 4328 4370 0 4328 4371 0 4371 4370 0 4328 4329 0 4329 4371 0\n\t\t 4329 4372 0 4372 4371 0 4329 4373 0 4373 4372 0 4373 4314 0 4314 4372 0 4373 4374 0\n\t\t 4374 4314 0 4374 4315 0 4315 4314 0 4374 4375 0 4375 4315 0 4375 4316 0 4316 4315 0\n\t\t 4375 4376 0 4376 4316 0 4376 4318 0 4318 4316 0 4376 4377 0 4377 4318 0 4377 4319 0\n\t\t 4319 4318 0 4377 4333 0 4333 4319 0 4333 13286 0 13286 4319 0 4333 4335 0 4335 13286 0\n\t\t 4335 13282 0 13282 13286 0 4335 12107 0 12107 13282 0 12107 12314 0 12314 13282 0\n\t\t 12107 4336 0 4336 12314 0 4336 4322 0 4322 12314 0 4336 4381 0 4381 4322 0 4381 4325 0\n\t\t 4325 4322 0 4381 11354 0 11354 4325 0 11354 4383 0 4383 4325 0 11354 4384 0 4384 4383 0\n\t\t 4384 11333 0 11333 4383 0 4384 4369 0 4369 11333 0 4313 11333 0 11322 4327 0 4327 12246 0\n\t\t 12246 11322 0 12246 11323 0 11323 11322 0 12246 4326 0 4326 11323 0 4326 4340 0 4340 11323 0\n\t\t 4326 4338 0 4338 4340 0;\n\tsetAttr \".ed[14774:14939]\" 4338 4354 0 4354 4340 0 4338 4337 0 4337 4354 0 4337 4389 0\n\t\t 4389 4354 0 4337 4390 0 4390 4389 0 4390 11936 0 11936 4389 0 4390 4392 0 4392 11936 0\n\t\t 4392 4353 0 4353 11936 0 4392 4393 0 4393 4353 0 4393 12984 0 12984 4353 0 4393 4395 0\n\t\t 4395 12984 0 4395 4351 0 4351 12984 0 4395 4334 0 4334 4351 0 4334 4396 0 4396 4351 0\n\t\t 4334 4332 0 4332 4396 0 4332 4350 0 4350 4396 0 4332 4397 0 4397 4350 0 4397 4348 0\n\t\t 4348 4350 0 4397 11268 0 11268 4348 0 11268 4399 0 4399 4348 0 11268 4331 0 4331 4399 0\n\t\t 4331 4400 0 4400 4399 0 4331 4330 0 4330 4400 0 4330 4345 0 4345 4400 0 4330 4401 0\n\t\t 4401 4345 0 4401 4342 0 4342 4345 0 4401 4327 0 4327 4342 0 11322 4342 0 4339 11513 0\n\t\t 11513 4402 0 4402 4339 0 4402 4341 0 4341 4339 0 4402 4404 0 4404 4341 0 4404 13273 0\n\t\t 13273 4341 0 4404 4406 0 4406 13273 0 4406 4343 0 4343 13273 0 4406 4407 0 4407 4343 0\n\t\t 4407 4344 0 4344 4343 0 4407 4408 0 4408 4344 0 4408 4346 0 4346 4344 0 4408 4357 0\n\t\t 4357 4346 0 4357 4347 0 4347 4346 0 4357 4409 0 4409 4347 0 4409 4349 0 4349 4347 0\n\t\t 4409 10974 0 10974 4349 0 10974 4411 0 4411 4349 0 10974 4412 0 4412 4411 0 4412 4413 0\n\t\t 4413 4411 0 4412 4360 0 4360 4413 0 4360 4414 0 4414 4413 0 4360 4361 0 4361 4414 0\n\t\t 4361 4352 0 4352 4414 0 4361 12388 0 12388 4352 0 12388 10933 0 10933 4352 0 12388 4363 0\n\t\t 4363 10933 0 4363 4417 0 4417 10933 0 4363 4365 0 4365 4417 0 4365 4418 0 4418 4417 0\n\t\t 4365 4366 0 4366 4418 0 4366 4419 0 4419 4418 0 4366 11513 0 11513 4419 0 4339 4419 0\n\t\t 4420 9746 0 9746 4421 0 4421 4420 0 4421 4261 0 4261 4420 0 4421 4423 0 4423 4261 0\n\t\t 4423 4263 0 4263 4261 0 4423 4367 0 4367 4263 0 4367 12651 0 12651 4263 0 4367 12361 0\n\t\t 12361 12651 0 12361 4284 0 4284 12651 0 12361 4364 0 4364 4284 0 4364 12612 0 12612 4284 0\n\t\t 4364 12395 0 12395 12612 0 12395 4281 0 4281 12612 0 12395 4362 0 4362 4281 0 4362 4278 0\n\t\t 4278 4281 0 4362 4428 0 4428 4278 0 4428 4277 0 4277 4278 0 4428 4359 0 4359 4277 0\n\t\t 4359 4274 0 4274 4277 0 4359 4358 0 4358 4274 0 4358 12686 0 12686 4274 0 4358 12326 0\n\t\t 12326 12686 0 12326 4271 0 4271 12686 0 12326 4356 0 4356 4271 0 4356 4431 0 4431 4271 0;\n\tsetAttr \".ed[14940:15105]\" 4356 4355 0 4355 4431 0 4355 4268 0 4268 4431 0 4355 10155 0\n\t\t 10155 4268 0 10155 4433 0 4433 4268 0 10155 4434 0 4434 4433 0 4434 9755 0 9755 4433 0\n\t\t 4434 9746 0 9746 9755 0 4420 9755 0 12607 4288 0 4288 4437 0 4437 12607 0 4437 4312 0\n\t\t 4312 12607 0 4312 10560 0 10560 12607 0 10560 4289 0 4289 12607 0 4291 4289 0 10560 4291 0\n\t\t 10560 4439 0 4439 4291 0 4439 10524 0 10524 4291 0 10524 4293 0 4293 4291 0 13119 4293 0\n\t\t 10524 13119 0 10524 4442 0 4442 13119 0 4442 4443 0 4443 13119 0 4443 4296 0 4296 13119 0\n\t\t 13124 4296 0 4443 13124 0 4443 4317 0 4317 13124 0 4317 4320 0 4320 13124 0 4320 4299 0\n\t\t 4299 13124 0 4301 4299 0 4320 4301 0 4320 13089 0 13089 4301 0 10453 4447 0 4447 4301 0\n\t\t 4301 10453 0 13089 10453 0 4448 4447 0 10453 4448 0 10453 4449 0 4449 4448 0 4449 4323 0\n\t\t 4323 4448 0 4323 4450 0 4450 4448 0 4306 4450 0 4323 4306 0 4323 4324 0 4324 4306 0\n\t\t 4324 4451 0 4451 4306 0 4451 4308 0 4308 4306 0 4310 4308 0 4451 4310 0 4451 4452 0\n\t\t 4452 4310 0 4288 4310 0 4452 4288 0 4452 4437 0 4453 4454 0 4454 9801 0 9801 4453 0\n\t\t 9801 4632 0 4632 4453 0 4454 4455 0 4455 9801 0 4455 10305 0 10305 9801 0 10288 10305 0\n\t\t 4455 10288 0 4455 4458 0 4458 10288 0 4458 4459 0 4459 10288 0 4459 10289 0 10289 10288 0\n\t\t 4643 10289 0 4459 4643 0 4459 4461 0 4461 4643 0 4461 4462 0 4462 4643 0 4462 4641 0\n\t\t 4641 4643 0 12593 4641 0 4462 12593 0 4462 4464 0 4464 12593 0 4464 4465 0 4465 12593 0\n\t\t 4465 4639 0 4639 12593 0 10630 4639 0 4465 10630 0 4465 4466 0 4466 10630 0 4466 4468 0\n\t\t 4468 10630 0 4468 10631 0 10631 10630 0 4636 10631 0 4468 4636 0 4468 4470 0 4470 4636 0\n\t\t 4470 4471 0 4471 4636 0 4471 12499 0 12499 4636 0 9320 12499 0 4471 9320 0 4471 4473 0\n\t\t 4473 9320 0 4473 4474 0 4474 9320 0 4474 9319 0 9319 9320 0 12486 9319 0 4474 12486 0\n\t\t 4474 4476 0 4476 12486 0 4476 4453 0 4453 12486 0 4632 12486 0 4477 4520 0 4520 4519 0\n\t\t 4519 4477 0 4519 4478 0 4478 4477 0 4519 4518 0 4518 4478 0 4518 4479 0 4479 4478 0\n\t\t 4518 4513 0 4513 4479 0 4513 4480 0 4480 4479 0 4513 4514 0 4514 4480 0 4514 4481 0\n\t\t 4481 4480 0 4514 13208 0 13208 4481 0 13208 4483 0 4483 4481 0 13208 4515 0 4515 4483 0;\n\tsetAttr \".ed[15106:15271]\" 4515 4484 0 4484 4483 0 4515 4516 0 4516 4484 0 4516 4485 0\n\t\t 4485 4484 0 4516 13214 0 13214 4485 0 13214 4487 0 4487 4485 0 13214 4517 0 4517 4487 0\n\t\t 4517 4488 0 4488 4487 0 4517 12798 0 12798 4488 0 12798 4490 0 4490 4488 0 12798 9602 0\n\t\t 9602 4490 0 9602 4491 0 4491 4490 0 9602 9603 0 9603 4491 0 9603 4492 0 4492 4491 0\n\t\t 9603 12705 0 12705 4492 0 12705 4494 0 4494 4492 0 12705 4532 0 4532 4494 0 4532 4495 0\n\t\t 4495 4494 0 4532 12744 0 12744 4495 0 12744 4497 0 4497 4495 0 12744 4520 0 4520 4497 0\n\t\t 4477 4497 0 10918 8794 0 8794 10721 0 10721 10918 0 10721 10775 0 10775 10918 0 10722 10721 0\n\t\t 8794 10722 0 8794 8795 0 8795 10722 0 10777 10722 0 8795 10777 0 8795 10886 0 10886 10777 0\n\t\t 4504 10777 0 10886 4504 0 10886 10887 0 10887 4504 0 4506 4504 0 10887 4506 0 10887 4593 0\n\t\t 4593 4506 0 4507 4506 0 4593 4507 0 4593 8975 0 8975 4507 0 4508 4507 0 8975 4508 0\n\t\t 8975 8999 0 8999 4508 0 10840 4508 0 8999 10840 0 8999 11091 0 11091 10840 0 11058 10840 0\n\t\t 11091 11058 0 11091 11092 0 11092 11058 0 4501 4502 0 4502 11088 0 11088 4501 0 11106 11088 0\n\t\t 4502 11106 0 4502 10778 0 10778 11106 0 10778 10889 0 10889 4482 0 4482 10778 0 4482 11106 0\n\t\t 10990 4482 0 10889 10990 0 10889 10858 0 10858 10990 0 10858 10839 0 10839 10991 0\n\t\t 10991 10858 0 10991 10990 0 4486 10991 0 10839 4486 0 10839 4509 0 4509 4486 0 4509 4511 0\n\t\t 4511 12799 0 12799 4509 0 12799 4486 0 11088 10943 0 10943 4501 0 4499 4501 0 10943 4499 0\n\t\t 10943 10938 0 10938 4499 0 4500 4499 0 10938 4500 0 10938 10939 0 10939 4500 0 4521 4500 0\n\t\t 10939 4521 0 10775 9696 0 9696 10919 0 10919 10775 0 12006 10919 0 9696 12006 0 9696 9697 0\n\t\t 9697 12006 0 12005 12006 0 9697 12005 0 9697 9728 0 9728 12005 0 9751 12005 0 9728 9751 0\n\t\t 9728 4526 0 4526 9751 0 9752 9751 0 4526 9752 0 4526 9749 0 9749 9752 0 4599 9752 0\n\t\t 9749 4599 0 9749 9850 0 9850 4599 0 11092 4599 0 9850 11092 0 9850 11058 0 10919 10918 0\n\t\t 4511 4529 0 4529 4489 0 4489 4511 0 4489 12799 0 4529 4528 0 4528 4530 0 4530 4529 0\n\t\t 4530 4489 0 4531 4530 0 4528 4531 0 4528 9748 0 9748 4531 0 9748 4524 0 4524 4493 0\n\t\t 4493 9748 0 4493 4531 0 12730 4493 0 4524 12730 0 4524 4523 0 4523 12730 0 4496 12730 0\n\t\t 4523 4496 0;\n\tsetAttr \".ed[15272:15437]\" 4523 4521 0 4521 4496 0 10939 4496 0 12630 12621 0 12621 9653 0\n\t\t 9653 12630 0 9653 11667 0 11667 12630 0 9540 9653 0 12621 9540 0 12621 8766 0 8766 9540 0\n\t\t 9541 9540 0 8766 9541 0 8766 8767 0 8767 9541 0 8733 9541 0 8767 8733 0 8767 9536 0\n\t\t 9536 8733 0 4592 8733 0 9536 4592 0 9536 9537 0 9537 4592 0 8955 4592 0 9537 8955 0\n\t\t 9537 10315 0 10315 8955 0 9551 8955 0 10315 9551 0 10315 4615 0 4615 9551 0 9552 9551 0\n\t\t 4615 9552 0 4615 8876 0 8876 9552 0 12071 9552 0 8876 12071 0 8876 12147 0 12147 12071 0\n\t\t 4598 12071 0 12147 4598 0 12147 4613 0 4613 4598 0 11980 4598 0 4613 11980 0 4613 8732 0\n\t\t 8732 11980 0 11981 11980 0 8732 11981 0 8732 8731 0 8731 11981 0 9761 11981 0 8731 9761 0\n\t\t 8731 9821 0 9821 9761 0 9762 9761 0 9821 9762 0 9821 9822 0 9822 9762 0 11668 9762 0\n\t\t 9822 11668 0 9822 9854 0 9854 11668 0 11667 11668 0 9854 11667 0 9854 12630 0 4618 12774 0\n\t\t 12774 9727 0 9727 4618 0 9727 9745 0 9745 4618 0 9698 9727 0 12774 9698 0 12774 12775 0\n\t\t 12775 9698 0 9699 9698 0 12775 9699 0 12775 9736 0 9736 9699 0 9357 9699 0 9736 9357 0\n\t\t 9736 9737 0 9737 9357 0 9336 9357 0 9737 9336 0 9737 12494 0 12494 9336 0 9337 9336 0\n\t\t 12494 9337 0 12494 9430 0 9430 9337 0 4616 9337 0 9430 4616 0 9430 9431 0 9431 4616 0\n\t\t 9472 4616 0 9431 9472 0 9431 4624 0 4624 9472 0 9473 9472 0 4624 9473 0 4624 9470 0\n\t\t 9470 9473 0 12175 9473 0 9470 12175 0 9470 9471 0 9471 12175 0 4612 12175 0 9471 4612 0\n\t\t 9471 9478 0 9478 4612 0 4610 4612 0 9478 4610 0 9478 12433 0 12433 4610 0 4608 4610 0\n\t\t 12433 4608 0 12433 9349 0 9349 4608 0 12091 4608 0 9349 12091 0 9349 9350 0 9350 12091 0\n\t\t 12507 12091 0 9350 12507 0 9350 10197 0 10197 12507 0 9745 12507 0 10197 9745 0 10197 4618 0\n\t\t 4631 12367 0 12367 4619 0 4619 4631 0 4619 11463 0 11463 4631 0 9104 4619 0 12367 9104 0\n\t\t 12367 12376 0 12376 9104 0 9031 9104 0 12376 9031 0 12376 12360 0 12360 9031 0 9007 9031 0\n\t\t 12360 9007 0 12360 4644 0 4644 9007 0 8996 9007 0 4644 8996 0 4644 4642 0 4642 8996 0\n\t\t 8997 8996 0 4642 8997 0 4642 12571 0 12571 8997 0 9932 8997 0 12571 9932 0 12571 4640 0\n\t\t 4640 9932 0 4623 9932 0 4640 4623 0 4640 4638 0 4638 4623 0 4578 4623 0 4638 4578 0;\n\tsetAttr \".ed[15438:15603]\" 4638 12519 0 12519 4578 0 12841 4578 0 12519 12841 0\n\t\t 12519 4637 0 4637 12841 0 12843 12841 0 4637 12843 0 4637 12530 0 12530 12843 0 11808 12843 0\n\t\t 12530 11808 0 12530 4635 0 4635 11808 0 11809 11808 0 4635 11809 0 4635 11782 0 11782 11809 0\n\t\t 12807 11809 0 11782 12807 0 11782 11783 0 11783 12807 0 11464 12807 0 11783 11464 0\n\t\t 11783 11814 0 11814 11464 0 11463 11464 0 11814 11463 0 11814 4631 0 4498 4588 0\n\t\t 4588 4533 0 4533 4498 0 4533 4589 0 4589 4498 0 4533 4535 0 4535 4589 0 4535 4590 0\n\t\t 4590 4589 0 4535 4536 0 4536 4590 0 4536 4503 0 4503 4590 0 4536 4591 0 4591 4503 0\n\t\t 4591 4505 0 4505 4503 0 4591 8734 0 8734 4505 0 8734 8974 0 8974 4505 0 8734 4594 0\n\t\t 4594 8974 0 4594 4595 0 4595 8974 0 4594 4540 0 4540 4595 0 4540 4596 0 4596 4595 0\n\t\t 4540 4541 0 4541 4596 0 4541 4510 0 4510 4596 0 4541 4597 0 4597 4510 0 4597 4512 0\n\t\t 4512 4510 0 4597 12010 0 12010 4512 0 12010 12811 0 12811 4512 0 12010 4600 0 4600 12811 0\n\t\t 4600 4527 0 4527 12811 0 4600 4601 0 4601 4527 0 4601 4525 0 4525 4527 0 4601 4543 0\n\t\t 4543 4525 0 4543 4602 0 4602 4525 0 4543 4545 0 4545 4602 0 4545 4603 0 4603 4602 0\n\t\t 4545 4604 0 4604 4603 0 4604 4522 0 4522 4603 0 4604 4588 0 4588 4522 0 4498 4522 0\n\t\t 4551 4605 0 4605 4534 0 4534 4551 0 4534 4548 0 4548 4551 0 4534 4606 0 4606 4548 0\n\t\t 4606 4550 0 4550 4548 0 4606 4547 0 4547 4550 0 4547 4607 0 4607 4550 0 4547 4546 0\n\t\t 4546 4607 0 4546 4567 0 4567 4607 0 4546 4544 0 4544 4567 0 4544 8775 0 8775 4567 0\n\t\t 4544 4609 0 4609 8775 0 4609 8776 0 8776 8775 0 4609 4611 0 4611 8776 0 4611 8828 0\n\t\t 8828 8776 0 4611 8836 0 8836 8828 0 8836 4562 0 4562 8828 0 8836 4542 0 4542 4562 0\n\t\t 4542 4561 0 4561 4562 0 4542 4614 0 4614 4561 0 4614 4560 0 4560 4561 0 4614 8877 0\n\t\t 8877 4560 0 8877 12224 0 12224 4560 0 8877 4539 0 4539 12224 0 4539 4557 0 4557 12224 0\n\t\t 4539 4538 0 4538 4557 0 4538 4556 0 4556 4557 0 4538 4537 0 4537 4556 0 4537 4554 0\n\t\t 4554 4556 0 4537 4617 0 4617 4554 0 4617 4552 0 4552 4554 0 4617 4605 0 4605 4552 0\n\t\t 4551 4552 0 10196 4570 0 4570 12370 0 12370 10196 0 12370 4549 0 4549 10196 0 12370 4571 0\n\t\t 4571 4549 0 4571 4620 0 4620 4549 0;\n\tsetAttr \".ed[15604:15769]\" 4571 4572 0 4572 4620 0 4572 4553 0 4553 4620 0 4572 4574 0\n\t\t 4574 4553 0 4574 4555 0 4555 4553 0 4574 4575 0 4575 4555 0 4575 4621 0 4621 4555 0\n\t\t 4575 4576 0 4576 4621 0 4576 4558 0 4558 4621 0 4576 4622 0 4622 4558 0 4622 4559 0\n\t\t 4559 4558 0 4622 9933 0 9933 4559 0 9933 12594 0 12594 4559 0 9933 12842 0 12842 12594 0\n\t\t 12842 4563 0 4563 12594 0 12842 4579 0 4579 4563 0 4579 4564 0 4564 4563 0 4579 4625 0\n\t\t 4625 4564 0 4625 4565 0 4565 4564 0 4625 4582 0 4582 4565 0 4582 4626 0 4626 4565 0\n\t\t 4582 4583 0 4583 4626 0 4583 4566 0 4566 4626 0 4583 4627 0 4627 4566 0 4627 4568 0\n\t\t 4568 4566 0 4627 4586 0 4586 4568 0 4586 4628 0 4628 4568 0 4586 4570 0 4570 4628 0\n\t\t 10196 4628 0 4456 4629 0 4629 4569 0 4569 4456 0 4569 4630 0 4630 4456 0 4569 12366 0\n\t\t 12366 4630 0 12366 9802 0 9802 4630 0 12366 4587 0 4587 9802 0 4587 4475 0 4475 9802 0\n\t\t 4587 4585 0 4585 4475 0 4585 4633 0 4633 4475 0 4585 4584 0 4584 4633 0 4584 4634 0\n\t\t 4634 4633 0 4584 12512 0 12512 4634 0 12512 4472 0 4472 4634 0 12512 4581 0 4581 4472 0\n\t\t 4581 12542 0 12542 4472 0 4581 12518 0 12518 12542 0 12518 4469 0 4469 12542 0 12518 4580 0\n\t\t 4580 4469 0 4580 4467 0 4467 4469 0 4580 9501 0 9501 4467 0 9501 12627 0 12627 4467 0\n\t\t 9501 9502 0 9502 12627 0 9502 4463 0 4463 12627 0 9502 4577 0 4577 4463 0 4577 11294 0\n\t\t 11294 4463 0 4577 11314 0 11314 11294 0 11314 11295 0 11295 11294 0 11314 11315 0\n\t\t 11315 11295 0 11315 4460 0 4460 11295 0 11315 4573 0 4573 4460 0 4573 4457 0 4457 4460 0\n\t\t 4573 4629 0 4629 4457 0 4456 4457 0 11306 11219 0 11219 11217 0 11217 11306 0 11217 12933 0\n\t\t 12933 11306 0 11220 13257 0 13257 13101 0 13101 11220 0 13101 4646 0 4646 11220 0\n\t\t 4718 13101 0 13257 4718 0 13257 4671 0 4671 4718 0 11188 4718 0 4671 11188 0 4671 13241 0\n\t\t 13241 11188 0 11189 11188 0 13241 11189 0 13241 4663 0 4663 11189 0 4722 11189 0\n\t\t 4663 4722 0 4663 11174 0 11174 4722 0 11174 11175 0 11175 4722 0 11175 10329 0 10329 4722 0\n\t\t 10709 10329 0 11175 10709 0 11175 4656 0 4656 10709 0 4655 4657 0 4657 13248 0 13248 4655 0\n\t\t 13248 4654 0 4654 4655 0 4658 4655 0 4654 4658 0 4654 4653 0 4653 4658 0 4658 4659 0\n\t\t 4659 4655 0 4659 4660 0 4660 4655 0;\n\tsetAttr \".ed[15770:15935]\" 4660 4657 0 4660 4661 0 4661 4657 0 4662 4658 0 4653 4662 0\n\t\t 4653 13242 0 13242 4662 0 4664 4662 0 13242 4664 0 13242 4651 0 4651 4664 0 4665 4662 0\n\t\t 4664 4665 0 4665 4659 0 4658 4665 0 4664 4666 0 4666 4665 0 4665 11129 0 11129 4659 0\n\t\t 11129 11128 0 11128 4659 0 11128 4660 0 11128 11792 0 11792 4660 0 11792 4661 0 11792 11793 0\n\t\t 11793 4661 0 11176 11129 0 4665 11176 0 4666 11176 0 4670 4664 0 4651 4670 0 4670 4666 0\n\t\t 4651 13244 0 13244 4670 0 4672 4670 0 13244 4672 0 13244 4649 0 4649 4672 0 4673 4672 0\n\t\t 4649 4673 0 4649 4647 0 4647 4673 0 4674 4673 0 4647 4674 0 4647 4675 0 4675 4674 0\n\t\t 4674 4676 0 4676 4673 0 4676 4677 0 4677 4673 0 12934 4675 0 4647 12934 0 4647 4645 0\n\t\t 4645 12934 0 13040 4675 0 12934 13040 0 13040 4674 0 12934 12942 0 12942 13040 0\n\t\t 4676 13082 0 13082 4677 0 13082 4694 0 4694 4677 0 4733 4676 0 4674 4733 0 4674 4730 0\n\t\t 4730 4733 0 13040 4730 0 10522 13082 0 4676 10522 0 4733 10522 0 4677 4680 0 4680 4673 0\n\t\t 4680 4681 0 4681 4673 0 4694 10852 0 10852 4677 0 10852 4680 0 10852 4681 0 10852 10897 0\n\t\t 10897 4681 0 4682 4681 0 10897 4682 0 4682 4672 0 4672 4681 0 4682 4670 0 4682 4683 0\n\t\t 4683 4670 0 4682 10896 0 10896 4683 0 10897 10896 0 10896 11177 0 11177 4683 0 4683 4666 0\n\t\t 11177 4666 0 11177 11176 0 4667 4685 0 4685 10671 0 10671 4667 0 10671 4704 0 4704 4667 0\n\t\t 4668 4667 0 4704 4668 0 4704 13136 0 13136 4668 0 10656 10671 0 4685 10656 0 4685 4687 0\n\t\t 4687 10656 0 10655 10656 0 4687 10655 0 4687 4669 0 4669 10655 0 13146 10655 0 4669 13146 0\n\t\t 4669 4684 0 4684 13146 0 4696 13146 0 4684 4696 0 4684 4689 0 4689 4696 0 4707 4696 0\n\t\t 4689 4707 0 4689 4690 0 4690 4707 0 4691 4707 0 4690 4691 0 4690 4692 0 4692 4691 0\n\t\t 13091 4691 0 4692 13091 0 4692 10853 0 10853 13091 0 4695 4688 0 4688 10680 0 10680 4695 0\n\t\t 10680 4697 0 4697 4695 0 4698 4688 0 4695 4698 0 4695 4699 0 4699 4698 0 4700 4698 0\n\t\t 4699 4700 0 4699 4701 0 4701 4700 0 4702 4700 0 4701 4702 0 4701 4703 0 4703 4702 0\n\t\t 10672 4702 0 4703 10672 0 4703 4705 0 4705 10672 0 4686 10672 0 4705 4686 0 4706 4697 0\n\t\t 10680 4706 0 10680 4707 0 4707 4706 0 4708 4706 0 4707 4708 0 4691 4708 0 4709 4708 0\n\t\t 4691 4709 0;\n\tsetAttr \".ed[15936:16101]\" 13091 4709 0 12933 10102 0 10102 11306 0 10102 4678 0\n\t\t 4678 11306 0 12941 4678 0 10102 12941 0 10102 10103 0 10103 12941 0 4710 4713 0 4713 12993 0\n\t\t 12993 4710 0 12993 10104 0 10104 4710 0 4714 4713 0 4710 4714 0 4710 4715 0 4715 4714 0\n\t\t 11218 13327 0 13327 4714 0 4714 11218 0 4715 11218 0 4716 13327 0 11218 4716 0 11218 4648 0\n\t\t 4648 4716 0 4648 13106 0 13106 4716 0 13106 4719 0 4719 4716 0 13106 4650 0 4650 4719 0\n\t\t 4650 4720 0 4720 4719 0 4650 4652 0 4652 4720 0 4652 4721 0 4721 4720 0 4652 10328 0\n\t\t 10328 4721 0 10328 4723 0 4723 4721 0 4724 4723 0 10328 4724 0 10328 4725 0 4725 4724 0\n\t\t 12510 4724 0 4725 12510 0 4725 4726 0 4726 12510 0 4711 12994 0 12994 4727 0 4727 4711 0\n\t\t 4679 4727 0 12994 4679 0 12994 4728 0 4728 4679 0 4728 4729 0 4729 4679 0 10465 4679 0\n\t\t 4729 10465 0 4729 4731 0 4731 10465 0 4731 4732 0 4732 10465 0 4732 10466 0 10466 10465 0\n\t\t 4732 10521 0 10521 10466 0 10853 4735 0 4735 13091 0 13081 4736 0 4736 4693 0 4693 13081 0\n\t\t 4737 4736 0 13081 4737 0 13081 4734 0 4734 4737 0 10979 13233 0 13233 4738 0 4738 10979 0\n\t\t 4738 4746 0 4746 10979 0 4739 10981 0 10981 10983 0 10983 4739 0 10983 10986 0 10986 4739 0\n\t\t 4741 10984 0 10984 11006 0 11006 4741 0 11006 4743 0 4743 4741 0 9864 10992 0 10992 10980 0\n\t\t 10980 9864 0 10980 4746 0 4746 9864 0 13198 4764 0 4764 4742 0 4742 13198 0 4742 10985 0\n\t\t 10985 13198 0 4758 4748 0 4748 4747 0 4747 4758 0 4747 4796 0 4796 4758 0 4748 4743 0\n\t\t 4743 4747 0 11006 4747 0 11469 13134 0 13134 4747 0 4747 11469 0 11006 11469 0 4749 4751 0\n\t\t 4751 12587 0 12587 4749 0 12587 4780 0 4780 4749 0 4738 4751 0 4749 4738 0 4749 4746 0\n\t\t 4780 4746 0 4780 9864 0 13199 4740 0 4740 4744 0 4744 13199 0 4744 10993 0 10993 13199 0\n\t\t 4782 11597 0 11597 11601 0 11601 4782 0 11601 4774 0 4774 4782 0 11598 11597 0 4782 11598 0\n\t\t 4782 12750 0 12750 11598 0 11612 11599 0 11599 4783 0 4783 11612 0 4783 4778 0 4778 11612 0\n\t\t 4757 4774 0 11601 4757 0 11601 4772 0 4772 4757 0 4766 11612 0 4778 4766 0 4778 4775 0\n\t\t 4775 4766 0 13133 13134 0 13134 4797 0 4797 13133 0 4797 4759 0 4759 13133 0 4797 4798 0\n\t\t 4798 4759 0 4798 4803 0 4803 4759 0 4760 4761 0 4761 4799 0 4799 4760 0 4799 13275 0\n\t\t 13275 4760 0;\n\tsetAttr \".ed[16102:16267]\" 4745 4799 0 4761 4745 0 4761 4762 0 4762 4745 0 4752 4745 0\n\t\t 4762 4752 0 4762 4763 0 4763 4752 0 11468 4752 0 4763 11468 0 4763 4765 0 4765 11468 0\n\t\t 11471 11468 0 4765 11471 0 4765 4767 0 4767 11471 0 13275 4753 0 4753 4760 0 4753 4768 0\n\t\t 4768 4760 0 4769 4768 0 4753 4769 0 4753 4754 0 4754 4769 0 4770 4769 0 4754 4770 0\n\t\t 4754 4755 0 4755 4770 0 4771 4770 0 4755 4771 0 4755 4756 0 4756 4771 0 4756 11471 0\n\t\t 4767 4756 0 4767 4771 0 4801 4757 0 4772 4801 0 4772 9865 0 9865 4801 0 11347 4789 0\n\t\t 4789 4782 0 4782 11347 0 4774 11347 0 4775 4795 0 4795 11470 0 11470 4775 0 11470 4766 0\n\t\t 4776 4777 0 4777 4778 0 4778 4776 0 4783 4776 0 4777 4775 0 4777 4781 0 4781 4775 0\n\t\t 4750 4779 0 4779 9825 0 9825 4750 0 9825 12548 0 12548 4750 0 4802 9825 0 4779 4802 0\n\t\t 4779 4805 0 4805 4802 0 4801 9635 0 9635 4757 0 9635 4794 0 4794 4757 0 4781 12640 0\n\t\t 12640 4775 0 12640 4795 0 4789 4776 0 4776 4782 0 4776 12750 0 12742 4794 0 9635 12742 0\n\t\t 9635 9636 0 9636 12742 0 12639 12640 0 4781 12639 0 4781 4793 0 4793 12639 0 12655 4790 0\n\t\t 4790 4789 0 4789 12655 0 11347 12655 0 4790 4791 0 4791 4789 0 4791 4776 0 4791 4777 0\n\t\t 4791 4792 0 4792 4777 0 4788 4773 0 4773 4794 0 4794 4788 0 4794 4784 0 4784 4788 0\n\t\t 4777 12849 0 12849 12672 0 12672 4777 0 12672 4781 0 4773 4774 0 4774 4794 0 12763 4797 0\n\t\t 13134 12763 0 11469 12763 0 12763 4804 0 4804 4797 0 4804 4798 0 4780 4800 0 4800 9864 0\n\t\t 4800 9866 0 9866 9864 0 4800 4802 0 4802 9866 0 4802 4785 0 4785 9866 0 4787 4803 0\n\t\t 4798 4787 0 4804 4787 0 4786 4785 0 4802 4786 0 4805 4786 0 12244 4832 0 4832 4868 0\n\t\t 4868 12244 0 4868 12252 0 12252 12244 0 4806 8715 0 8715 8716 0 8716 4806 0 8716 4878 0\n\t\t 4878 4806 0 4806 4880 0 4880 8715 0 4880 12054 0 12054 8715 0 4880 8983 0 8983 12054 0\n\t\t 8983 11993 0 11993 12054 0 8983 8984 0 8984 11993 0 8984 9053 0 9053 11993 0 8984 4884 0\n\t\t 4884 9053 0 4884 4816 0 4816 9053 0 4813 4816 0 4884 4813 0 4884 4886 0 4886 4813 0\n\t\t 12479 4813 0 4886 12479 0 4886 12492 0 12492 12479 0 4812 9236 0 9236 4810 0 4810 4812 0\n\t\t 4810 4814 0 4814 4812 0 4812 4815 0 4815 9236 0 4815 9052 0 9052 9236 0 4817 4815 0;\n\tsetAttr \".ed[16268:16433]\" 4812 4817 0 4812 4818 0 4818 4817 0 4814 4818 0 4814 4819 0\n\t\t 4819 4818 0 4815 4820 0 4820 9052 0 4820 4821 0 4821 9052 0 4820 4822 0 4822 4821 0\n\t\t 4822 4823 0 4823 4821 0 4820 4824 0 4824 4822 0 4815 4824 0 4817 4824 0 4824 4825 0\n\t\t 4825 4822 0 13334 4824 0 4817 13334 0 4817 4843 0 4843 13334 0 4818 4843 0 4818 12182 0\n\t\t 12182 4843 0 4844 12182 0 4818 4844 0 4819 4844 0 8754 4825 0 4824 8754 0 13334 8754 0\n\t\t 4822 4828 0 4828 4823 0 4825 4828 0 4828 4807 0 4807 4823 0 4828 4829 0 4829 4807 0\n\t\t 4829 4830 0 4830 4807 0 4829 4831 0 4831 4830 0 4831 8717 0 8717 4830 0 4831 4833 0\n\t\t 4833 8717 0 4833 4834 0 4834 8717 0 4835 4833 0 4831 4835 0 4831 4836 0 4836 4835 0\n\t\t 4834 9002 0 9002 8717 0 9002 9290 0 9290 8717 0 4834 4888 0 4888 9002 0 4833 4888 0\n\t\t 4888 9003 0 9003 9002 0 4896 4835 0 4836 4896 0 4836 11717 0 11717 4896 0 4835 4894 0\n\t\t 4894 4833 0 4894 10028 0 10028 4833 0 10028 4888 0 9971 4894 0 4835 9971 0 4896 9971 0\n\t\t 4831 4838 0 4838 4836 0 4831 4839 0 4839 4838 0 4829 4839 0 4829 4840 0 4840 4839 0\n\t\t 4828 4840 0 4828 4841 0 4841 4840 0 8782 4840 0 4841 8782 0 4841 8755 0 8755 8782 0\n\t\t 4825 4841 0 4825 8755 0 8754 8755 0 8782 8857 0 8857 4840 0 8857 4839 0 8857 11719 0\n\t\t 11719 4839 0 11719 4838 0 11719 4836 0 11719 11717 0 4827 4861 0 4861 4859 0 4859 4827 0\n\t\t 4859 12203 0 12203 4827 0 4827 12183 0 12183 4861 0 12183 12461 0 12461 4861 0 4859 12420 0\n\t\t 12420 12203 0 12420 4826 0 4826 12203 0 12420 4856 0 4856 4826 0 4856 4847 0 4847 4826 0\n\t\t 4856 4853 0 4853 4847 0 4853 4848 0 4848 4847 0 4853 4854 0 4854 4848 0 4854 4849 0\n\t\t 4849 4848 0 4854 4864 0 4864 4849 0 4864 4850 0 4850 4849 0 4864 4866 0 4866 4850 0\n\t\t 4866 4842 0 4842 4850 0 4866 4851 0 4851 4842 0 4851 11718 0 11718 4842 0 4852 4854 0\n\t\t 4853 4852 0 4853 4855 0 4855 4852 0 4853 12017 0 12017 4855 0 12017 4857 0 4857 4855 0\n\t\t 12017 4846 0 4846 4857 0 4846 4858 0 4858 4857 0 4846 9268 0 9268 4858 0 9268 4860 0\n\t\t 4860 4858 0 9268 9269 0 9269 4860 0 9269 4862 0 4862 4860 0 4845 4862 0 9269 4845 0\n\t\t 4852 4863 0 4863 4854 0 4863 4864 0 4863 4865 0 4865 4864 0 4865 4866 0 4865 4867 0;\n\tsetAttr \".ed[16434:16599]\" 4867 4866 0 4867 4851 0 4868 4869 0 4869 4873 0 4873 4868 0\n\t\t 4873 12252 0 4869 9004 0 9004 4873 0 9004 9088 0 9088 4873 0 9089 12401 0 12401 4872 0\n\t\t 4872 9089 0 4872 9090 0 9090 9089 0 4872 4874 0 4874 9090 0 4874 4876 0 4876 9090 0\n\t\t 4874 12822 0 12822 12243 0 12243 4874 0 12243 4876 0 4877 12394 0 12394 12243 0 12243 4877 0\n\t\t 12822 4877 0 4877 4879 0 4879 12394 0 4879 12292 0 12292 12394 0 4879 4881 0 4881 12292 0\n\t\t 4881 4808 0 4808 12292 0 4881 4882 0 4882 4808 0 4882 4809 0 4809 4808 0 4882 4883 0\n\t\t 4883 4809 0 4883 9929 0 9929 4809 0 4883 4885 0 4885 9929 0 4885 9930 0 9930 9929 0\n\t\t 4885 12830 0 12830 9930 0 12830 12493 0 12493 9930 0 4870 12400 0 12400 4871 0 4871 4870 0\n\t\t 10027 12400 0 4870 10027 0 10027 4889 0 4889 12400 0 4889 4890 0 4890 12400 0 10027 4891 0\n\t\t 4891 4889 0 4891 4892 0 4892 4889 0 4893 4892 0 4891 4893 0 4891 10071 0 10071 4893 0\n\t\t 4898 4893 0 10071 4898 0 12888 9969 0 9969 4837 0 4837 12888 0 4851 4895 0 4895 11718 0\n\t\t 12888 4897 0 4897 9969 0 4897 9970 0 9970 9969 0 4911 4910 0 4910 4899 0 4899 4911 0\n\t\t 4899 12664 0 12664 4911 0 12555 12665 0 12665 12662 0 12662 12555 0 12662 12711 0\n\t\t 12711 12555 0 12556 4900 0 4900 4907 0 4907 12556 0 4907 12656 0 12656 12556 0 12757 4911 0\n\t\t 4911 4901 0 4901 12757 0 4901 4923 0 4923 12757 0 12552 12554 0 12554 4906 0 4906 12552 0\n\t\t 4906 12659 0 12659 12552 0 12614 4919 0 4919 4904 0 4904 12614 0 4904 4905 0 4905 12614 0\n\t\t 4904 12656 0 12656 4905 0 4907 4905 0 12658 12656 0 4904 12658 0 4904 12606 0 12606 12658 0\n\t\t 4941 4909 0 4909 4908 0 4908 4941 0 4908 10526 0 10526 4941 0 4909 4910 0 4910 4908 0\n\t\t 4911 4908 0 4911 10526 0 12757 10526 0 12553 12560 0 12560 12663 0 12663 12553 0\n\t\t 12663 4912 0 4912 12553 0 4935 4937 0 4937 4929 0 4929 4935 0 4929 11107 0 11107 4935 0\n\t\t 11107 11108 0 11108 4935 0 11108 4947 0 4947 4935 0 10847 11109 0 11109 11130 0 11130 10847 0\n\t\t 11130 4916 0 4916 10847 0 4937 4960 0 4960 4929 0 4960 13223 0 13223 4929 0 11130 13238 0\n\t\t 13238 4916 0 13238 4940 0 4940 4916 0 4903 4918 0 4918 4917 0 4917 4903 0 4917 12606 0\n\t\t 12606 4903 0 4964 4917 0 4918 4964 0 4918 4920 0 4920 4964 0 4921 4933 0 4933 4961 0\n\t\t 4961 4921 0 4961 4922 0;\n\tsetAttr \".ed[16600:16765]\" 4922 4921 0 4961 12559 0 12559 4922 0 12559 4924 0 4924 4922 0\n\t\t 12559 4902 0 4902 4924 0 4902 4925 0 4925 4924 0 4902 4939 0 4939 4925 0 4939 4926 0\n\t\t 4926 4925 0 4939 4938 0 4938 4926 0 4938 4927 0 4927 4926 0 4921 4928 0 4928 4933 0\n\t\t 4928 13222 0 13222 4933 0 4928 4930 0 4930 13222 0 4930 4913 0 4913 13222 0 4930 4931 0\n\t\t 4931 4913 0 4931 4914 0 4914 4913 0 4931 4932 0 4932 4914 0 4932 4915 0 4915 4914 0\n\t\t 4932 4927 0 4927 4915 0 4938 4915 0 4934 12758 0 12758 13223 0 13223 4934 0 4960 4934 0\n\t\t 4935 4936 0 4936 4954 0 4954 4935 0 4954 4937 0 13238 12657 0 12657 4940 0 12657 12955 0\n\t\t 12955 4940 0 4916 4957 0 4957 4946 0 4946 4916 0 4946 10847 0 4940 4950 0 4950 4957 0\n\t\t 4957 4940 0 10525 4943 0 4943 10553 0 10553 10525 0 10553 4944 0 4944 10525 0 10553 4965 0\n\t\t 4965 4944 0 4965 4945 0 4945 4944 0 4960 4959 0 4959 12892 0 12892 4960 0 12892 4934 0\n\t\t 12915 4950 0 4940 12915 0 12955 12915 0 4946 4936 0 4935 4946 0 4947 4946 0 12991 4966 0\n\t\t 4966 12892 0 12892 12991 0 4959 12991 0 4963 10817 0 10817 4950 0 4950 4963 0 12915 4963 0\n\t\t 10859 4954 0 4936 10859 0 4936 4955 0 4955 10859 0 4946 4955 0 4946 4956 0 4956 4955 0\n\t\t 4957 4956 0 4957 10360 0 10360 4956 0 10860 4953 0 4953 4948 0 4948 10860 0 4948 4959 0\n\t\t 4959 10860 0 4958 4957 0 4950 4958 0 4950 4951 0 4951 4958 0 4937 10860 0 4959 4937 0\n\t\t 4917 4962 0 4962 12606 0 4962 12658 0 12757 12891 0 12891 4942 0 4942 12757 0 4942 10526 0\n\t\t 4964 4952 0 4952 4917 0 4952 4962 0 4920 12914 0 12914 4964 0 12914 4952 0 12891 4949 0\n\t\t 4949 4965 0 4965 12891 0 4965 4942 0 4949 4945 0 4949 13026 0 13026 4945 0 13042 13043 0\n\t\t 13043 4983 0 4983 13042 0 4983 10567 0 10567 13042 0 4972 4981 0 4981 13032 0 13032 4972 0\n\t\t 13032 13066 0 13066 4972 0 13043 4974 0 4974 4983 0 4974 4993 0 4993 4983 0 10380 10529 0\n\t\t 10529 13044 0 13044 10380 0 13044 13041 0 13041 10380 0 13041 4969 0 4969 10380 0\n\t\t 4969 10381 0 10381 10380 0 13055 4967 0 4967 10528 0 10528 13055 0 10528 13045 0\n\t\t 13045 13055 0 10641 13149 0 13149 10530 0 10530 10641 0 10530 4970 0 4970 10641 0\n\t\t 4970 4973 0 4973 10641 0 4973 13137 0 13137 10641 0 13046 4971 0 4971 4975 0 4975 13046 0\n\t\t 4975 4989 0 4989 13046 0 10637 4985 0;\n\tsetAttr \".ed[16766:16931]\" 4985 13148 0 13148 10637 0 13148 10640 0 10640 10637 0\n\t\t 10638 4978 0 4978 4976 0 4976 10638 0 4976 10891 0 10891 10638 0 4985 4980 0 4980 13148 0\n\t\t 4980 13162 0 13162 13148 0 10617 10557 0 10557 10565 0 10565 10617 0 10565 4983 0\n\t\t 4983 10617 0 10566 10556 0 10556 10559 0 10559 10566 0 10559 4968 0 4968 10566 0\n\t\t 4987 10617 0 4983 4987 0 4993 4987 0 4985 10639 0 10639 10558 0 10558 4985 0 10558 4986 0\n\t\t 4986 4985 0 4982 4977 0 4977 4979 0 4979 4982 0 4979 4984 0 4984 4982 0 4986 10618 0\n\t\t 10618 4985 0 10618 4980 0 4988 13162 0 4980 4988 0 4980 4990 0 4990 4988 0 10618 4990 0\n\t\t 10618 4991 0 4991 4990 0 13265 4987 0 4993 13265 0 4993 4992 0 4992 13265 0 4974 4992 0\n\t\t 4974 4994 0 4994 4992 0 4974 13047 0 13047 4994 0 13047 13316 0 13316 4994 0 4995 4996 0\n\t\t 4996 13162 0 13162 4995 0 4988 4995 0 13226 5015 0 5015 4998 0 4998 13226 0 4998 11117 0\n\t\t 11117 13226 0 13240 11152 0 11152 13225 0 13225 13240 0 13225 5005 0 5005 13240 0\n\t\t 12743 11117 0 4998 12743 0 4998 5001 0 5001 12743 0 11102 4997 0 4997 11116 0 11116 11102 0\n\t\t 11116 11103 0 11103 11102 0 13243 4997 0 11102 13243 0 11102 5009 0 5009 13243 0\n\t\t 11104 5003 0 5003 5000 0 5000 11104 0 5000 11113 0 11113 11104 0 11047 5002 0 5002 11105 0\n\t\t 11105 11047 0 11105 11049 0 11049 11047 0 13210 5002 0 11047 13210 0 11047 5011 0\n\t\t 5011 13210 0 11050 5004 0 5004 11115 0 11115 11050 0 11115 11388 0 11388 11050 0\n\t\t 9283 11048 0 11048 5008 0 5008 9283 0 5008 5018 0 5018 9283 0 13219 5007 0 5007 9285 0\n\t\t 9285 13219 0 9285 12502 0 12502 13219 0 5013 5018 0 5008 5013 0 5008 5010 0 5010 5013 0\n\t\t 11139 4998 0 4998 11151 0 11151 11139 0 11151 11140 0 11140 11139 0 12480 11141 0\n\t\t 11141 11153 0 11153 12480 0 11153 4999 0 4999 12480 0 11139 11147 0 11147 4998 0\n\t\t 11147 5001 0 5018 5014 0 5014 5016 0 5016 5018 0 5016 9284 0 9284 5018 0 5012 5019 0\n\t\t 5019 11142 0 11142 5012 0 11142 5020 0 5020 5012 0 5017 5014 0 5018 5017 0 5013 5017 0\n\t\t 5026 5021 0 5021 5013 0 5013 5026 0 5010 5026 0 5021 5022 0 5022 5017 0 5017 5021 0\n\t\t 12377 5023 0 5023 5001 0 5001 12377 0 11147 12377 0 5023 5024 0 5024 12743 0 12743 5023 0\n\t\t 5024 5025 0 5025 11114 0 11114 5024 0 11114 12743 0 12732 5026 0 5010 12732 0 5010 5006 0\n\t\t 5006 12732 0 11677 11675 0;\n\tsetAttr \".ed[16932:17097]\" 11675 5041 0 5041 11677 0 5041 5029 0 5029 11677 0 5029 11658 0\n\t\t 11658 11677 0 11658 11659 0 11659 11677 0 12157 5037 0 5037 12803 0 12803 12157 0\n\t\t 12803 5045 0 5045 12157 0 5041 5027 0 5027 11956 0 11956 5041 0 11956 5029 0 11675 5088 0\n\t\t 5088 5041 0 5088 5040 0 5040 5041 0 5042 5040 0 5088 5042 0 5088 11559 0 11559 5042 0\n\t\t 11811 5042 0 11559 11811 0 11559 11560 0 11560 11811 0 5030 11811 0 11560 5030 0\n\t\t 11560 8725 0 8725 5030 0 5031 5030 0 8725 5031 0 8725 8721 0 8721 5031 0 8721 8722 0\n\t\t 8722 5031 0 8722 5032 0 5032 5031 0 5033 5032 0 8722 5033 0 8722 12180 0 12180 5033 0\n\t\t 5030 5035 0 5035 11811 0 5035 12790 0 12790 11811 0 5059 5035 0 5030 5059 0 5031 5059 0\n\t\t 12156 12158 0 12158 8747 0 8747 12156 0 8747 5039 0 5039 12156 0 5040 5038 0 5038 5027 0\n\t\t 5027 5040 0 5042 5038 0 5042 8748 0 8748 5038 0 8747 5043 0 5043 5039 0 11806 8748 0\n\t\t 5042 11806 0 5042 11810 0 11810 11806 0 5043 5044 0 5044 5039 0 5043 11805 0 11805 11804 0\n\t\t 11804 5043 0 11804 5044 0 5189 11957 0 11957 11955 0 11955 5189 0 11955 5028 0 5028 5189 0\n\t\t 11956 11958 0 11958 5029 0 11958 11658 0 5033 5048 0 5048 5047 0 5047 5033 0 5047 5032 0\n\t\t 9181 9231 0 9231 5049 0 5049 9181 0 5049 5050 0 5050 9181 0 5050 9275 0 9275 9181 0\n\t\t 9275 9182 0 9182 9181 0 5047 5052 0 5052 5031 0 5031 5047 0 9271 9310 0 9310 9309 0\n\t\t 9309 9271 0 9309 5056 0 5056 9271 0 9272 9271 0 5056 9272 0 5056 11844 0 11844 9272 0\n\t\t 5053 9274 0 9274 12790 0 12790 5053 0 5035 5053 0 5055 5053 0 5035 5055 0 5059 5055 0\n\t\t 5031 5055 0 5052 5055 0 5054 5055 0 5052 5054 0 5052 5051 0 5051 5054 0 9273 5058 0\n\t\t 5058 5060 0 5060 9273 0 5060 11807 0 11807 9273 0 5036 5057 0 5057 5061 0 5061 5036 0\n\t\t 5061 5062 0 5062 5036 0 13328 5109 0 5109 5074 0 5074 13328 0 5074 5063 0 5063 13328 0\n\t\t 12188 5066 0 5066 5065 0 5065 12188 0 5065 5107 0 5107 12188 0 5067 5066 0 12188 5067 0\n\t\t 12188 9590 0 9590 5067 0 5065 5068 0 5068 5107 0 5068 11899 0 11899 5107 0 5068 5070 0\n\t\t 5070 11899 0 5070 11900 0 11900 11899 0 9590 9591 0 9591 5067 0 9591 4717 0 4717 5067 0\n\t\t 5070 5072 0 5072 11900 0 5072 5103 0 5103 11900 0 9324 5103 0 5072 9324 0 5072 12509 0\n\t\t 12509 9324 0 13322 11665 0;\n\tsetAttr \".ed[17098:17263]\" 11665 11664 0 11664 13322 0 11664 5075 0 5075 13322 0\n\t\t 11664 9564 0 9564 5075 0 9564 5076 0 5076 5075 0 9564 9565 0 9565 5076 0 9565 5077 0\n\t\t 5077 5076 0 9565 11613 0 11613 5077 0 11613 5079 0 5079 5077 0 4712 5079 0 11613 4712 0\n\t\t 11613 11614 0 11614 4712 0 5081 11678 0 11678 12270 0 12270 5081 0 12270 12191 0\n\t\t 12191 5081 0 5083 11548 0 11548 11590 0 11590 5083 0 11590 5086 0 5086 5083 0 11549 11548 0\n\t\t 5083 11549 0 5083 11568 0 11568 11549 0 11590 5106 0 5106 5086 0 5106 5089 0 5089 5086 0\n\t\t 5106 12123 0 12123 5089 0 12123 5091 0 5091 5089 0 11568 11676 0 11676 11549 0 11676 5110 0\n\t\t 5110 11549 0 12123 5105 0 5105 5091 0 5105 5092 0 5092 5091 0 5034 5092 0 5105 5034 0\n\t\t 5105 12143 0 12143 5034 0 5082 11660 0 11660 5111 0 5111 5082 0 5111 12271 0 12271 5082 0\n\t\t 11660 5095 0 5095 5111 0 5095 8881 0 8881 5111 0 8882 8881 0 5095 8882 0 5095 12226 0\n\t\t 12226 8882 0 5095 8910 0 8910 12226 0 8910 8911 0 8911 12226 0 12265 8910 0 5095 12265 0\n\t\t 11660 12265 0 12226 12228 0 12228 8882 0 12228 8921 0 8921 8882 0 12279 8921 0 12228 12279 0\n\t\t 12228 12283 0 12283 12279 0 9325 5102 0 5102 10710 0 10710 9325 0 10710 12144 0 12144 9325 0\n\t\t 9323 5104 0 5104 5093 0 5093 9323 0 5093 12124 0 12124 9323 0 5071 9323 0 12124 5071 0\n\t\t 12124 5090 0 5090 5071 0 5069 5071 0 5090 5069 0 5090 12125 0 12125 5069 0 12205 5069 0\n\t\t 12125 12205 0 12125 5084 0 5084 12205 0 5064 12205 0 5084 5064 0 5084 5085 0 5085 5064 0\n\t\t 5108 5064 0 5085 5108 0 5085 5087 0 5087 5108 0 9592 5108 0 5087 9592 0 5087 12190 0\n\t\t 12190 9592 0 11666 9592 0 12190 11666 0 12190 5094 0 5094 11666 0 5073 11666 0 5094 5073 0\n\t\t 5094 12274 0 12274 5073 0 5112 5073 0 12274 5112 0 12274 5096 0 5096 5112 0 5113 5112 0\n\t\t 5096 5113 0 5096 5097 0 5097 5113 0 5097 5101 0 5101 5113 0 5101 5078 0 5078 5113 0\n\t\t 11615 5078 0 5101 11615 0 5101 12280 0 12280 11615 0 12668 5116 0 5116 5115 0 5115 12668 0\n\t\t 5115 12616 0 12616 12668 0 5150 12616 0 5115 5150 0 5115 5118 0 5118 5150 0 5118 5119 0\n\t\t 5119 5150 0 5119 10674 0 10674 5150 0 5119 5120 0 5120 10674 0 5120 5121 0 5121 10674 0\n\t\t 5122 5121 0 5120 5122 0 5120 5123 0 5123 5122 0 5121 5124 0 5124 10674 0 5124 5159 0\n\t\t 5159 10674 0 5125 5124 0;\n\tsetAttr \".ed[17264:17429]\" 5121 5125 0 5122 5125 0 12668 5126 0 5126 5116 0 12547 5126 0\n\t\t 12668 12547 0 12668 5178 0 5178 12547 0 5128 5126 0 12547 5128 0 12547 5176 0 5176 5128 0\n\t\t 5128 5129 0 5129 5126 0 5129 5130 0 5130 5126 0 5130 5116 0 5131 5128 0 5176 5131 0\n\t\t 5176 11563 0 11563 5131 0 5132 5131 0 11563 5132 0 11563 9417 0 9417 5132 0 5132 5134 0\n\t\t 5134 5131 0 5134 5135 0 5135 5131 0 5135 5128 0 5135 5129 0 5136 5132 0 9417 5136 0\n\t\t 9417 9418 0 9418 5136 0 5138 5136 0 9418 5138 0 9418 5167 0 5167 5138 0 5138 12264 0\n\t\t 12264 5136 0 5098 12264 0 5138 5098 0 5138 5140 0 5140 5098 0 5167 5140 0 8912 5098 0\n\t\t 5140 8912 0 5140 5144 0 5144 8912 0 12264 5141 0 5141 5136 0 5141 5132 0 5141 5134 0\n\t\t 5167 12714 0 12714 5140 0 12714 5164 0 5164 5140 0 5164 5144 0 9498 5099 0 5099 12632 0\n\t\t 12632 9498 0 12632 9499 0 9499 9498 0 12632 12633 0 12633 9499 0 12633 11349 0 11349 9499 0\n\t\t 5146 5143 0 5143 5145 0 5145 5146 0 5145 5147 0 5147 5146 0 5145 5163 0 5163 5147 0\n\t\t 5163 11381 0 11381 5147 0 10675 10789 0 10789 5148 0 5148 10675 0 5148 12617 0 12617 10675 0\n\t\t 5148 5151 0 5151 12617 0 5151 5117 0 5117 12617 0 5156 5117 0 5151 5156 0 5151 10780 0\n\t\t 10780 5156 0 10779 5148 0 5148 5153 0 5153 10779 0 5153 5154 0 5154 10779 0 10781 10779 0\n\t\t 5154 10781 0 10791 5153 0 5148 10791 0 10789 10791 0 5154 5158 0 5158 10781 0 11501 11521 0\n\t\t 11521 5156 0 5156 11501 0 10780 11501 0 13160 11502 0 11502 5152 0 5152 13160 0 5152 13154 0\n\t\t 13154 13160 0 10673 5160 0 5160 10790 0 10790 10673 0 10790 5161 0 5161 10673 0 5149 13164 0\n\t\t 13164 5162 0 5162 5149 0 5162 5155 0 5155 5149 0 12633 5142 0 5142 11349 0 5142 11351 0\n\t\t 11351 11349 0 11405 11351 0 5142 11405 0 5142 12600 0 12600 11405 0 11350 5165 0\n\t\t 5165 5168 0 5168 11350 0 5168 5169 0 5169 11350 0 5170 5168 0 5165 5170 0 5165 5166 0\n\t\t 5166 5170 0 11429 11405 0 12600 11429 0 12600 5137 0 5137 11429 0 11430 11429 0 5137 11430 0\n\t\t 5137 5133 0 5133 11430 0 5173 11430 0 5133 5173 0 5133 5174 0 5174 5173 0 5175 5173 0\n\t\t 5174 5175 0 5174 11564 0 11564 5175 0 5177 5175 0 11564 5177 0 11564 5127 0 5127 5177 0\n\t\t 5127 11522 0 11522 5177 0 11522 11500 0 11500 5177 0 11554 11499 0 11499 5180 0 5180 11554 0\n\t\t 5180 5181 0;\n\tsetAttr \".ed[17430:17595]\" 5181 11554 0 11445 11554 0 5181 11445 0 5157 5180 0\n\t\t 11499 5157 0 11499 5179 0 5179 5157 0 5172 11445 0 11445 5182 0 5182 5172 0 5181 5182 0\n\t\t 5182 5183 0 5183 5172 0 5171 5172 0 5183 5171 0 5183 5184 0 5184 5171 0 5166 5171 0\n\t\t 5184 5166 0 5184 5170 0 5139 5186 0 5186 5185 0 5185 5139 0 5185 5187 0 5187 5139 0\n\t\t 5185 5046 0 5046 5187 0 5046 5188 0 5188 5187 0 5046 13319 0 13319 5188 0 5216 5239 0\n\t\t 5239 5190 0 5190 5216 0 5190 10477 0 10477 5216 0 12795 5239 0 5216 12795 0 5216 5214 0\n\t\t 5214 12795 0 5190 5240 0 5240 10477 0 5240 5219 0 5219 10477 0 5240 5192 0 5192 5219 0\n\t\t 5192 10393 0 10393 5219 0 5192 5194 0 5194 10393 0 5194 10394 0 10394 10393 0 5194 13122 0\n\t\t 13122 10394 0 13122 5222 0 5222 10394 0 13033 5248 0 5248 5196 0 5196 13033 0 5196 10458 0\n\t\t 10458 13033 0 5196 5198 0 5198 10458 0 5198 10459 0 10459 10458 0 5214 10198 0 10198 12795 0\n\t\t 10198 5242 0 5242 12795 0 10620 5242 0 10198 10620 0 10198 10199 0 10199 10620 0\n\t\t 11256 5213 0 5213 12970 0 12970 11256 0 12970 12954 0 12954 11256 0 10091 5213 0\n\t\t 11256 10091 0 11256 11257 0 11257 10091 0 12970 5218 0 5218 12954 0 5218 10800 0\n\t\t 10800 12954 0 5218 10507 0 10507 10800 0 10507 10799 0 10799 10800 0 10507 10508 0\n\t\t 10508 10799 0 10508 12917 0 12917 10799 0 10508 10113 0 10113 12917 0 10113 5253 0\n\t\t 5253 12917 0 10113 10114 0 10114 5253 0 10114 10174 0 10174 5253 0 10114 10347 0\n\t\t 10347 10174 0 10347 10126 0 10126 10174 0 11257 11269 0 11269 10091 0 11269 10092 0\n\t\t 10092 10091 0 5209 10092 0 11269 5209 0 11269 11345 0 11345 5209 0 10127 10126 0\n\t\t 10347 10127 0 10347 5225 0 5225 10127 0 10318 10127 0 5225 10318 0 5225 12847 0 12847 10318 0\n\t\t 10219 5215 0 5215 10440 0 10440 10219 0 10440 10441 0 10441 10219 0 5202 10219 0\n\t\t 10441 5202 0 10441 5217 0 5217 5202 0 10540 5202 0 5217 10540 0 5217 10513 0 10513 10540 0\n\t\t 5220 10540 0 10513 5220 0 10513 5193 0 5193 5220 0 5221 5220 0 5193 5221 0 5193 5195 0\n\t\t 5195 5221 0 5205 5221 0 5195 5205 0 5195 13034 0 13034 5205 0 5206 5205 0 13034 5206 0\n\t\t 13034 5197 0 5197 5206 0 5223 5206 0 5197 5223 0 5197 5199 0 5199 5223 0 5199 5224 0\n\t\t 5224 5223 0 5224 10348 0 10348 5223 0 5224 5226 0 5226 10348 0 5226 5212 0 5212 10348 0\n\t\t 5227 5200 0 5200 10440 0 10440 5227 0;\n\tsetAttr \".ed[17596:17761]\" 5215 5227 0 5201 5200 0 5227 5201 0 5227 12881 0 12881 5201 0\n\t\t 10906 10005 0 10005 5228 0 5228 10906 0 5228 5252 0 5252 10906 0 5230 5228 0 10005 5230 0\n\t\t 10005 10006 0 10006 5230 0 5230 5232 0 5232 5228 0 5232 5233 0 5233 5228 0 9770 5228 0\n\t\t 5233 9770 0 5233 9771 0 9771 9770 0 9770 5262 0 5262 5228 0 5262 5260 0 5260 5228 0\n\t\t 9899 5228 0 5260 9899 0 5260 9900 0 9900 9899 0 9899 5257 0 5257 5228 0 5257 5255 0\n\t\t 5255 5228 0 5255 5252 0 5255 12786 0 12786 5252 0 12794 5268 0 5268 11319 0 11319 12794 0\n\t\t 11319 5190 0 5190 12794 0 5270 5268 0 12794 5270 0 12794 5191 0 5191 5270 0 11319 5271 0\n\t\t 5271 5190 0 5271 5240 0 5271 12282 0 12282 5240 0 12282 5192 0 5191 10619 0 10619 5270 0\n\t\t 10619 5243 0 5243 5270 0 5244 5243 0 10619 5244 0 10619 5245 0 5245 5244 0 12282 5100 0\n\t\t 5100 5192 0 5100 5194 0 5100 13122 0 5100 5246 0 5246 13122 0 5247 5249 0 5249 13121 0\n\t\t 13121 5247 0 13121 12227 0 12227 5247 0 5250 5249 0 5247 5250 0 5247 5251 0 5251 5250 0\n\t\t 10905 5238 0 5238 12918 0 12918 10905 0 12918 5207 0 5207 10905 0 5254 10905 0 5207 5254 0\n\t\t 5207 5208 0 5208 5254 0 5229 5254 0 5208 5229 0 5208 5210 0 5210 5229 0 5231 5229 0\n\t\t 5210 5231 0 5210 5211 0 5211 5231 0 5204 12918 0 5238 5204 0 5238 10827 0 10827 5204 0\n\t\t 5256 5204 0 10827 5256 0 10827 10828 0 10828 5256 0 5258 5256 0 10828 5258 0 10828 5236 0\n\t\t 5236 5258 0 5203 5258 0 5236 5203 0 5236 5237 0 5237 5203 0 5259 5203 0 5237 5259 0\n\t\t 5237 11296 0 11296 5259 0 5261 5259 0 11296 5261 0 11296 11297 0 11297 5261 0 5263 5261 0\n\t\t 11297 5263 0 11297 5234 0 5234 5263 0 5264 5263 0 5234 5264 0 5234 5235 0 5235 5264 0\n\t\t 5265 5267 0 5267 11320 0 11320 5265 0 11320 11044 0 11044 5265 0 5269 5265 0 11044 5269 0\n\t\t 11044 5270 0 5270 5269 0 11321 5266 0 5266 11346 0 11346 11321 0 11346 5272 0 5272 11321 0\n\t\t 12284 11321 0 5272 12284 0 5272 5275 0 5275 12284 0 5273 5269 0 5270 5273 0 5243 5273 0\n\t\t 5274 5273 0 5243 5274 0 5244 5274 0 5114 5241 0 5241 13209 0 13209 5114 0 13209 5080 0\n\t\t 5080 5114 0 13209 4728 0 4728 5080 0 12994 5080 0 12169 5301 0 5301 5280 0 5280 12169 0\n\t\t 5280 11132 0 11132 12169 0 12269 5301 0 12169 12269 0 12169 12471 0 12471 12269 0\n\t\t 5292 5293 0;\n\tsetAttr \".ed[17762:17927]\" 5293 11099 0 11099 5292 0 11099 11101 0 11101 5292 0\n\t\t 11100 9030 0 9030 5280 0 5280 11100 0 5301 11100 0 5280 5295 0 5295 11131 0 11131 5280 0\n\t\t 11131 11132 0 5295 5283 0 5283 11131 0 5283 5339 0 5339 11131 0 5283 12452 0 12452 5339 0\n\t\t 12452 5341 0 5341 5339 0 12452 5284 0 5284 5341 0 5284 11417 0 11417 5341 0 5284 5308 0\n\t\t 5308 11417 0 5308 11191 0 11191 11417 0 11192 11191 0 5308 11192 0 5308 5288 0 5288 11192 0\n\t\t 5288 5302 0 5302 11192 0 5302 5344 0 5344 11192 0 5289 5284 0 12452 5289 0 12452 12174 0\n\t\t 12174 5289 0 5289 5315 0 5315 5284 0 5315 5308 0 9028 9029 0 9029 9067 0 9067 9028 0\n\t\t 9067 5294 0 5294 9028 0 9030 5291 0 5291 5295 0 5295 9030 0 5291 5283 0 5291 5296 0\n\t\t 5296 5283 0 9047 9028 0 5294 9047 0 5296 9242 0 9242 5283 0 9242 12453 0 12453 5283 0\n\t\t 5294 5298 0 5298 9047 0 9244 9241 0 9241 9047 0 9047 9244 0 5298 9244 0 12498 5279 0\n\t\t 5279 5278 0 5278 12498 0 5278 5438 0 5438 12498 0 12268 11100 0 5301 12268 0 12269 12268 0\n\t\t 5288 8900 0 8900 5302 0 8900 5304 0 5304 5302 0 5305 8901 0 8901 5303 0 5303 5305 0\n\t\t 5303 5306 0 5306 5305 0 5316 5306 0 5303 5316 0 5303 5307 0 5307 5316 0 5308 8900 0\n\t\t 5308 9036 0 9036 8900 0 5309 5311 0 5311 8925 0 8925 5309 0 8925 5312 0 5312 5309 0\n\t\t 8925 8761 0 8761 5312 0 8761 8764 0 8764 5312 0 12174 8762 0 8762 5310 0 5310 12174 0\n\t\t 5310 5289 0 5310 8926 0 8926 5289 0 8926 5315 0 8926 5308 0 8926 9036 0 8926 8960 0\n\t\t 8960 9036 0 8960 12121 0 12121 9036 0 5299 5314 0 5314 8763 0 8763 5299 0 8763 5297 0\n\t\t 5297 5299 0 9243 5313 0 5313 5290 0 5290 9243 0 5290 5317 0 5317 9243 0 12823 12819 0\n\t\t 12819 11895 0 11895 12823 0 11895 12817 0 12817 12823 0 9955 8789 0 8789 5320 0 5320 9955 0\n\t\t 5320 5321 0 5321 9955 0 5321 5322 0 5322 9955 0 5322 9956 0 9956 9955 0 5324 5320 0\n\t\t 8789 5324 0 8789 8788 0 8788 5324 0 5325 5324 0 8788 5325 0 8788 9915 0 9915 5325 0\n\t\t 12818 9956 0 5322 12818 0 5322 4875 0 4875 12818 0 5327 5325 0 9915 5327 0 9915 9916 0\n\t\t 9916 5327 0 9916 12857 0 12857 5327 0 12857 12829 0 12829 5327 0 5318 5331 0 5331 11893 0\n\t\t 11893 5318 0 11893 11894 0 11894 5318 0 13287 11893 0 5331 13287 0 5331 5333 0 5333 13287 0\n\t\t 11881 13287 0;\n\tsetAttr \".ed[17928:18093]\" 5333 11881 0 5333 5335 0 5335 11881 0 11882 11881 0\n\t\t 5335 11882 0 5335 5337 0 5337 11882 0 5337 4887 0 4887 11882 0 4887 5364 0 5364 11882 0\n\t\t 9288 12170 0 12170 11133 0 11133 9288 0 11133 12163 0 12163 9288 0 11823 11824 0\n\t\t 11824 11849 0 11849 11823 0 11849 12068 0 12068 11823 0 12068 12069 0 12069 11823 0\n\t\t 12069 5281 0 5281 11823 0 11850 11849 0 11824 11850 0 11824 5285 0 5285 11850 0 5357 11850 0\n\t\t 5285 5357 0 5285 5286 0 5286 5357 0 5282 5281 0 12069 5282 0 12069 5338 0 5338 5282 0\n\t\t 12008 5357 0 5286 12008 0 5286 5287 0 5287 12008 0 5287 13249 0 13249 12008 0 13249 12057 0\n\t\t 12057 12008 0 9286 12470 0 12470 5276 0 5276 9286 0 5276 9287 0 9287 9286 0 5348 12470 0\n\t\t 9286 5348 0 9286 9292 0 9292 5348 0 9292 9293 0 9293 5348 0 9293 12455 0 12455 5348 0\n\t\t 12404 5348 0 12455 12404 0 12455 5397 0 5397 12404 0 12403 12470 0 5348 12403 0 12404 12403 0\n\t\t 11924 12455 0 9293 11924 0 9293 5363 0 5363 11924 0 5363 11953 0 11953 11924 0 11953 11925 0\n\t\t 11925 11924 0 12858 5345 0 5345 4811 0 4811 12858 0 4811 5329 0 5329 12858 0 5328 5355 0\n\t\t 5355 12058 0 12058 5328 0 12058 5356 0 5356 5328 0 5328 5326 0 5326 5355 0 5326 12009 0\n\t\t 12009 5355 0 5326 5358 0 5358 12009 0 5358 5343 0 5343 12009 0 5358 5359 0 5359 5343 0\n\t\t 5359 5340 0 5340 5343 0 5359 5319 0 5319 5340 0 5319 5360 0 5360 5340 0 5319 5323 0\n\t\t 5323 5360 0 5323 5342 0 5342 5360 0 5323 5361 0 5361 5342 0 5361 12164 0 12164 5342 0\n\t\t 5361 5332 0 5332 12164 0 5332 5347 0 5347 12164 0 5332 5330 0 5330 5347 0 5330 5346 0\n\t\t 5346 5347 0 5330 5362 0 5362 5346 0 5362 5349 0 5349 5346 0 5362 5334 0 5334 5349 0\n\t\t 5334 5350 0 5350 5349 0 12467 5350 0 5334 12467 0 5334 5336 0 5336 12467 0 5336 12812 0\n\t\t 12812 12467 0 12812 11954 0 11954 12467 0 5365 5366 0 5366 9391 0 9391 5365 0 9391 5404 0\n\t\t 5404 5365 0 5404 5402 0 5402 5365 0 5402 5367 0 5367 5365 0 5368 5367 0 5402 5368 0\n\t\t 5402 12569 0 12569 5368 0 5370 5368 0 12569 5370 0 12569 5371 0 5371 5370 0 5372 5370 0\n\t\t 5371 5372 0 5371 5373 0 5373 5372 0 5374 5371 0 12569 5374 0 12569 5412 0 5412 5374 0\n\t\t 5375 5373 0 5371 5375 0 5374 5375 0 5376 9391 0 5366 5376 0 5376 5428 0 5428 9391 0\n\t\t 5428 9392 0 9392 9391 0 5376 5377 0;\n\tsetAttr \".ed[18094:18259]\" 5377 5428 0 5377 11392 0 11392 5428 0 5379 5377 0 5376 5379 0\n\t\t 5376 5380 0 5380 5379 0 5366 5380 0 5377 5381 0 5381 11392 0 5381 11393 0 11393 11392 0\n\t\t 5381 5383 0 5383 11393 0 5383 5424 0 5424 11393 0 5384 5383 0 5381 5384 0 5381 5385 0\n\t\t 5385 5384 0 5377 5385 0 5379 5385 0 5383 5386 0 5386 5424 0 5386 11180 0 11180 5424 0\n\t\t 5386 5388 0 5388 11180 0 5388 11181 0 11181 11180 0 12402 5388 0 5386 12402 0 12402 5351 0\n\t\t 5351 5388 0 5351 5391 0 5391 5388 0 5391 11181 0 5351 9386 0 9386 5391 0 9386 5395 0\n\t\t 5395 5391 0 5386 5392 0 5392 12402 0 5383 5392 0 5384 5392 0 5391 5416 0 5416 11181 0\n\t\t 5395 12437 0 12437 5391 0 12437 5416 0 9344 5396 0 5396 9384 0 9384 9344 0 9384 9385 0\n\t\t 9385 9344 0 5393 9384 0 5396 5393 0 5396 9355 0 9355 5393 0 5399 9345 0 9345 5394 0\n\t\t 5394 5399 0 9354 9345 0 5399 9354 0 5394 5400 0 5400 5399 0 5399 5420 0 5420 9354 0\n\t\t 5401 5413 0 5413 12570 0 12570 5401 0 12570 9528 0 9528 5401 0 9463 5401 0 9528 9463 0\n\t\t 9528 9529 0 9529 9463 0 9529 5409 0 5409 9463 0 5409 9506 0 9506 9463 0 5406 5401 0\n\t\t 5401 5403 0 5403 5406 0 5403 5407 0 5407 5406 0 5403 9505 0 9505 5407 0 12575 5413 0\n\t\t 5401 12575 0 5406 12575 0 9505 12532 0 12532 5407 0 9920 9506 0 5409 9920 0 5409 9393 0\n\t\t 9393 9920 0 5405 9918 0 9918 5432 0 5432 5405 0 5432 5411 0 5411 5405 0 12568 5369 0\n\t\t 5369 9421 0 9421 12568 0 9421 9423 0 9423 12568 0 5415 5414 0 5414 9422 0 9422 5415 0\n\t\t 9422 5408 0 5408 5415 0 12409 5393 0 9355 12409 0 9355 5417 0 5417 12409 0 5417 9443 0\n\t\t 9443 12409 0 9443 5389 0 5389 12409 0 5419 9493 0 9493 5398 0 5398 5419 0 5398 12472 0\n\t\t 12472 5419 0 5421 5418 0 5418 9493 0 9493 5421 0 5419 5421 0 9443 5422 0 5422 5389 0\n\t\t 5422 5387 0 5387 5389 0 5422 5423 0 5423 5387 0 5423 12900 0 12900 5387 0 5423 9934 0\n\t\t 9934 12900 0 9934 5382 0 5382 12900 0 9934 9935 0 9935 5382 0 9935 5378 0 5378 5382 0\n\t\t 9935 9924 0 9924 5378 0 9924 12837 0 12837 5378 0 5410 12837 0 9924 5410 0 9924 9919 0\n\t\t 9919 5410 0 5430 5427 0 5427 5426 0 5426 5430 0 5426 5431 0 5431 5430 0 5426 5425 0\n\t\t 5425 5431 0 9921 5429 0 5429 5427 0 5427 9921 0 5430 9921 0 5433 5425 0 5425 10018 0;\n\tsetAttr \".ed[18260:18425]\" 10018 5433 0 5433 5431 0 10018 5434 0 5434 5433 0 10018 9444 0\n\t\t 9444 5434 0 9444 5435 0 5435 5434 0 9444 5418 0 5418 5435 0 5421 5435 0 5390 5436 0\n\t\t 5436 5277 0 5277 5390 0 5277 5437 0 5437 5390 0 12267 5277 0 5436 12267 0 5436 5439 0\n\t\t 5439 12267 0 5439 5300 0 5300 12267 0 9638 5461 0 5461 5441 0 5441 9638 0 5441 5483 0\n\t\t 5483 9638 0 5483 10207 0 10207 9638 0 10207 9639 0 9639 9638 0 5487 5441 0 5461 5487 0\n\t\t 5461 12713 0 12713 5487 0 5488 5487 0 12713 5488 0 12713 11681 0 11681 5488 0 5492 5488 0\n\t\t 11681 5492 0 11681 11682 0 11682 5492 0 13131 5492 0 11682 13131 0 11682 11687 0\n\t\t 11687 13131 0 5444 13132 0 13132 5467 0 5467 5444 0 5467 10538 0 10538 5444 0 5446 5444 0\n\t\t 10538 5446 0 10538 10539 0 10539 5446 0 10740 9639 0 10207 10740 0 10207 10230 0\n\t\t 10230 10740 0 10230 10798 0 10798 10740 0 10798 5472 0 5472 10740 0 9723 5507 0 5507 10256 0\n\t\t 10256 9723 0 10256 10387 0 10387 9723 0 10387 10388 0 10388 9723 0 10388 5511 0 5511 9723 0\n\t\t 10257 10256 0 5507 10257 0 5507 12783 0 12783 10257 0 12988 10257 0 12783 12988 0\n\t\t 12783 5505 0 5505 12988 0 5464 12988 0 5505 5464 0 5505 10509 0 10509 5464 0 5466 5464 0\n\t\t 10509 5466 0 10509 13039 0 13039 5466 0 13058 5466 0 13039 13058 0 13039 5500 0 5500 13058 0\n\t\t 5468 13058 0 5500 5468 0 5500 13054 0 13054 5468 0 12772 5511 0 10388 12772 0 10388 10128 0\n\t\t 10128 12772 0 10128 5473 0 5473 12772 0 5473 5514 0 5514 12772 0 13054 5502 0 5502 5468 0\n\t\t 5502 10338 0 10338 5468 0 5502 13020 0 13020 10338 0 13020 10339 0 10339 10338 0\n\t\t 5458 5440 0 5440 5442 0 5442 5458 0 5442 5459 0 5459 5458 0 5458 5460 0 5460 5440 0\n\t\t 5460 12712 0 12712 5440 0 5460 5462 0 5462 12712 0 5462 5443 0 5443 12712 0 5462 5450 0\n\t\t 5450 5443 0 5450 5463 0 5463 5443 0 5450 11709 0 11709 5463 0 11709 5465 0 5465 5463 0\n\t\t 11709 11710 0 11710 5465 0 11710 11688 0 11688 5465 0 11710 5452 0 5452 11688 0 5452 5445 0\n\t\t 5445 11688 0 5452 13059 0 13059 5445 0 13059 5447 0 5447 5445 0 5469 5447 0 13059 5469 0\n\t\t 13059 5455 0 5455 5469 0 5470 5469 0 5455 5470 0 5455 5457 0 5457 5470 0 5471 5459 0\n\t\t 5442 5471 0 5442 5448 0 5448 5471 0 5448 12935 0 12935 5471 0 12935 10129 0 10129 5471 0\n\t\t 12920 5499 0 5499 5475 0 5475 12920 0 5475 5501 0;\n\tsetAttr \".ed[18426:18591]\" 5501 12920 0 5475 5476 0 5476 5501 0 5476 12922 0 12922 5501 0\n\t\t 5478 5476 0 5475 5478 0 5475 5479 0 5479 5478 0 5475 9719 0 9719 5479 0 9719 12778 0\n\t\t 12778 5479 0 9718 9719 0 5475 9718 0 5475 5510 0 5510 9718 0 5475 5506 0 5506 5510 0\n\t\t 5506 9773 0 9773 5510 0 13080 5506 0 5475 13080 0 5475 5504 0 5504 13080 0 5499 5504 0\n\t\t 5499 12953 0 12953 5504 0 10206 5441 0 5441 12787 0 12787 10206 0 12787 5516 0 5516 10206 0\n\t\t 5516 5485 0 5485 10206 0 5485 5486 0 5486 10206 0 5519 12787 0 5441 5519 0 5487 5519 0\n\t\t 11927 5519 0 5487 11927 0 5488 11927 0 5489 5486 0 5485 5489 0 5485 5490 0 5490 5489 0\n\t\t 5490 5523 0 5523 5489 0 5523 5491 0 5491 5489 0 5352 11927 0 5488 5352 0 5492 5352 0\n\t\t 13131 5352 0 13131 5495 0 5495 5352 0 5494 12454 0 12454 5493 0 5493 5494 0 5493 5496 0\n\t\t 5496 5494 0 5496 5497 0 5497 5494 0 5497 5498 0 5498 5494 0 12929 13053 0 13053 5451 0\n\t\t 5451 12929 0 5451 5482 0 5482 12929 0 12929 5474 0 5474 13053 0 5474 5453 0 5453 13053 0\n\t\t 5474 12921 0 12921 5453 0 12921 13019 0 13019 5453 0 12921 5477 0 5477 13019 0 5477 5456 0\n\t\t 5456 13019 0 5451 5503 0 5503 5482 0 5503 13057 0 13057 5482 0 5503 10510 0 10510 13057 0\n\t\t 10510 5481 0 5481 13057 0 10510 5449 0 5449 5481 0 5449 9772 0 9772 5481 0 5449 9774 0\n\t\t 9774 9772 0 9774 5508 0 5508 9772 0 9774 5509 0 5509 5508 0 5509 9750 0 9750 5508 0\n\t\t 5509 9724 0 9724 9750 0 9724 5512 0 5512 9750 0 9724 5454 0 5454 5512 0 5454 5513 0\n\t\t 5513 5512 0 5454 12836 0 12836 5513 0 12836 5480 0 5480 5513 0 5515 12789 0 12789 12788 0\n\t\t 12788 5515 0 12788 5517 0 5517 5515 0 5515 5518 0 5518 12789 0 5518 5485 0 5485 12789 0\n\t\t 12804 5484 0 5484 12792 0 12792 12804 0 12792 5520 0 5520 12804 0 12792 11926 0 11926 5520 0\n\t\t 11926 5524 0 5524 5520 0 5518 5521 0 5521 5485 0 5521 5490 0 5521 5522 0 5522 5490 0\n\t\t 5522 5523 0 5353 12813 0 12813 12821 0 12821 5353 0 12821 5354 0 5354 5353 0 4890 12821 0\n\t\t 12813 4890 0 12813 12400 0 9542 9544 0 9544 12610 0 12610 9542 0 12610 9558 0 9558 9542 0\n\t\t 5535 9567 0 9567 9566 0 9566 5535 0 9566 9682 0 9682 5535 0 9566 9683 0 9683 9682 0\n\t\t 9566 5532 0 5532 9683 0 5532 5543 0 5543 9683 0 5533 12031 0 12031 9568 0 9568 5533 0;\n\tsetAttr \".ed[18592:18757]\" 9568 12673 0 12673 5533 0 5561 12031 0 5533 5561 0 5533 5550 0\n\t\t 5550 5561 0 12618 5540 0 5540 12611 0 12611 12618 0 12611 9545 0 9545 12618 0 10953 10951 0\n\t\t 10951 9559 0 9559 10953 0 9559 5536 0 5536 10953 0 9543 5527 0 5527 10952 0 10952 9543 0\n\t\t 10952 12563 0 12563 9543 0 5525 12564 0 12564 12619 0 12619 5525 0 12619 5526 0 5526 5525 0\n\t\t 5537 5539 0 5539 5529 0 5529 5537 0 5529 5534 0 5534 5537 0 5528 5529 0 5539 5528 0\n\t\t 5539 10954 0 10954 5528 0 5534 5541 0 5541 5537 0 5541 5528 0 10954 5541 0 5534 12032 0\n\t\t 12032 5541 0 12032 5542 0 5542 5541 0 5541 5538 0 5538 5537 0 10954 5538 0 5562 5530 0\n\t\t 5530 9684 0 9684 5562 0 9684 8952 0 8952 5562 0 5564 5565 0 5565 5531 0 5531 5564 0\n\t\t 5531 12765 0 12765 5564 0 13268 11629 0 11629 11631 0 11631 13268 0 11631 13270 0\n\t\t 13270 13268 0 12219 5563 0 5563 13256 0 13256 12219 0 13256 13246 0 13246 12219 0\n\t\t 13246 13247 0 13247 12219 0 5547 13256 0 5563 5547 0 5563 5566 0 5566 5547 0 5548 5546 0\n\t\t 5546 5556 0 5556 5548 0 5556 12049 0 12049 5548 0 12049 5561 0 5561 5548 0 5550 5548 0\n\t\t 13285 11632 0 11632 11630 0 11630 13285 0 11630 5559 0 5559 13285 0 11476 11478 0\n\t\t 11478 5551 0 5551 11476 0 5551 13269 0 13269 11476 0 13271 11545 0 11545 11477 0\n\t\t 11477 13271 0 11477 5553 0 5553 13271 0 5554 5552 0 5552 5555 0 5555 5554 0 5555 5557 0\n\t\t 5557 5554 0 13245 5558 0 5558 11544 0 11544 13245 0 11544 5549 0 5549 13245 0 13245 5545 0\n\t\t 5545 5558 0 5545 11479 0 11479 5558 0 5560 5549 0 11544 5560 0 5545 5560 0 5560 11479 0\n\t\t 12032 5549 0 5560 12032 0 5560 5542 0 11544 13284 0 13284 5560 0 13284 11479 0 8952 8950 0\n\t\t 8950 5562 0 8950 5544 0 5544 5562 0 8951 5565 0 5564 8951 0 5564 8967 0 8967 8951 0\n\t\t 5567 5596 0 5596 12341 0 12341 5567 0 12341 5569 0 5569 5567 0 12341 5597 0 5597 5569 0\n\t\t 5597 5570 0 5570 5569 0 5597 8985 0 8985 5570 0 8985 5572 0 5572 5570 0 8985 8986 0\n\t\t 8986 5572 0 8986 5574 0 5574 5572 0 8986 9255 0 9255 5574 0 9255 5576 0 5576 5574 0\n\t\t 5577 5576 0 9255 5577 0 9255 5603 0 5603 5577 0 5603 5604 0 5604 5577 0 5604 5578 0\n\t\t 5578 5577 0 5579 5578 0 5604 5579 0 5604 12448 0 12448 5579 0 12448 5607 0 5607 5579 0\n\t\t 5607 5581 0 5581 5579 0 5582 5581 0 5607 5582 0;\n\tsetAttr \".ed[18758:18923]\" 5607 11820 0 11820 5582 0 11820 11826 0 11826 5582 0\n\t\t 11826 12410 0 12410 5582 0 5583 11827 0 11827 11839 0 11839 5583 0 11839 5584 0 5584 5583 0\n\t\t 11839 5615 0 5615 5584 0 5615 5585 0 5585 5584 0 5615 12072 0 12072 5585 0 12072 5587 0\n\t\t 5587 5585 0 12072 5619 0 5619 5587 0 5619 5588 0 5588 5587 0 5619 8768 0 8768 5588 0\n\t\t 8768 8770 0 8770 5588 0 5591 5592 0 5592 5621 0 5621 5591 0 5621 12126 0 12126 5591 0\n\t\t 8769 5621 0 5592 8769 0 5592 5590 0 5590 8769 0 5594 5595 0 5595 5568 0 5568 5594 0\n\t\t 5568 12356 0 12356 5594 0 12324 5568 0 5595 12324 0 5595 5598 0 5598 12324 0 5571 12324 0\n\t\t 5598 5571 0 5598 5599 0 5599 5571 0 5573 5571 0 5599 5573 0 5599 5600 0 5600 5573 0\n\t\t 5575 5573 0 5600 5575 0 5600 5601 0 5601 5575 0 5601 5602 0 5602 5575 0 5602 11821 0\n\t\t 11821 5575 0 11822 11821 0 5602 11822 0 5602 5605 0 5605 11822 0 5580 11822 0 5605 5580 0\n\t\t 5605 5606 0 5606 5580 0 11819 5580 0 5606 11819 0 5606 5608 0 5608 11819 0 5609 11819 0\n\t\t 5608 5609 0 5608 5610 0 5610 5609 0 5611 5609 0 5610 5611 0 5610 5612 0 5612 5611 0\n\t\t 5613 5611 0 5612 5613 0 5612 5614 0 5614 5613 0 11901 5613 0 5614 11901 0 5614 5616 0\n\t\t 5616 11901 0 5586 11901 0 5616 5586 0 5616 5617 0 5617 5586 0 5617 5618 0 5618 5586 0\n\t\t 5618 12064 0 12064 5586 0 5589 12064 0 5618 5589 0 5618 5620 0 5620 5589 0 12063 5589 0\n\t\t 5620 12063 0 5620 5622 0 5622 12063 0 5622 5623 0 5623 12063 0 5623 5593 0 5593 12063 0\n\t\t 5624 5625 0 5625 5650 0 5650 5624 0 5650 13276 0 13276 5624 0 5652 5650 0 5625 5652 0\n\t\t 5625 5627 0 5627 5652 0 13274 5652 0 5627 13274 0 5627 5629 0 5629 13274 0 5655 13274 0\n\t\t 5629 5655 0 5629 5630 0 5630 5655 0 5657 5655 0 5630 5657 0 5630 5631 0 5631 5657 0\n\t\t 5631 5632 0 5632 5657 0 5632 11533 0 11533 5657 0 9219 11533 0 5632 9219 0 5632 5634 0\n\t\t 5634 9219 0 5634 5635 0 5635 9219 0 5635 9220 0 9220 9219 0 9311 9220 0 5635 9311 0\n\t\t 5635 5638 0 5638 9311 0 5638 5639 0 5639 9311 0 5639 11643 0 11643 9311 0 11645 11643 0\n\t\t 5639 11645 0 5639 12485 0 12485 11645 0 11606 5666 0 5666 5640 0 5640 11606 0 5640 5641 0\n\t\t 5641 11606 0 11607 11606 0 5641 11607 0 5641 5642 0 5642 11607 0 5642 5643 0 5643 11607 0\n\t\t 5643 11622 0;\n\tsetAttr \".ed[18924:19089]\" 11622 11607 0 5643 5644 0 5644 11622 0 5644 11640 0\n\t\t 11640 11622 0 5644 12236 0 12236 11640 0 12236 11642 0 11642 11640 0 5680 12214 0\n\t\t 12214 5646 0 5646 5680 0 5646 5648 0 5648 5680 0 12214 5676 0 5676 5646 0 5676 5645 0\n\t\t 5645 5646 0 5649 5626 0 5626 11389 0 11389 5649 0 11389 5651 0 5651 5649 0 11389 11390 0\n\t\t 11390 5651 0 11390 5653 0 5653 5651 0 11390 5628 0 5628 5653 0 5628 5654 0 5654 5653 0\n\t\t 5628 11527 0 11527 5654 0 11527 5656 0 5656 5654 0 11527 11528 0 11528 5656 0 11528 5658 0\n\t\t 5658 5656 0 5659 5658 0 11528 5659 0 11528 5660 0 5660 5659 0 5660 5633 0 5633 5659 0\n\t\t 5633 5661 0 5661 5659 0 5633 5636 0 5636 5661 0 5636 5662 0 5662 5661 0 5636 5637 0\n\t\t 5637 5662 0 5637 5663 0 5663 5662 0 5637 5664 0 5664 5663 0 5664 5665 0 5665 5663 0\n\t\t 5664 11644 0 11644 5665 0 11644 5667 0 5667 5665 0 11644 5668 0 5668 5667 0 5668 5669 0\n\t\t 5669 5667 0 5668 5670 0 5670 5669 0 5670 5671 0 5671 5669 0 5670 5672 0 5672 5671 0\n\t\t 5672 5673 0 5673 5671 0 5672 5674 0 5674 5673 0 5674 5675 0 5675 5673 0 5674 11641 0\n\t\t 11641 5675 0 11641 5677 0 5677 5675 0 11641 5647 0 5647 5677 0 5647 5678 0 5678 5677 0\n\t\t 5679 5678 0 5647 5679 0 5647 12213 0 12213 5679 0 5681 5683 0 5683 5682 0 5682 5681 0\n\t\t 5682 5684 0 5684 5681 0 5684 5685 0 5685 5681 0 5685 5686 0 5686 5681 0 5686 5687 0\n\t\t 5687 5681 0 5687 5688 0 5688 5681 0 5688 5689 0 5689 5681 0 5689 5690 0 5690 5681 0\n\t\t 5690 5691 0 5691 5681 0 5691 5692 0 5692 5681 0 5692 5693 0 5693 5681 0 5693 5694 0\n\t\t 5694 5681 0 5694 5695 0 5695 5681 0 5695 5696 0 5696 5681 0 5696 5697 0 5697 5681 0\n\t\t 5697 5683 0 5698 5685 0 5684 5698 0 5684 5699 0 5699 5698 0 5698 5700 0 5700 5685 0\n\t\t 5700 5686 0 5700 5701 0 5701 5686 0 5701 5687 0 5701 5702 0 5702 5687 0 5702 5688 0\n\t\t 5702 5703 0 5703 5688 0 5703 5689 0 5703 5704 0 5704 5689 0 5704 5690 0 5704 5705 0\n\t\t 5705 5690 0 5705 5691 0 5705 5706 0 5706 5691 0 5706 5692 0 5706 5707 0 5707 5692 0\n\t\t 5707 5693 0 5707 5708 0 5708 5693 0 5708 5694 0 5708 5709 0 5709 5694 0 5709 5695 0\n\t\t 5709 5710 0 5710 5695 0 5710 5696 0 5710 5711 0 5711 5696 0 5711 5697 0 5711 5712 0\n\t\t 5712 5697 0 5712 5683 0;\n\tsetAttr \".ed[19090:19255]\" 5712 5713 0 5713 5683 0 5713 5682 0 5713 5699 0 5699 5682 0\n\t\t 5714 5713 0 5712 5714 0 5712 5715 0 5715 5714 0 5711 5715 0 5714 5716 0 5716 5713 0\n\t\t 5716 5699 0 5716 5717 0 5717 5699 0 5717 5698 0 5717 5718 0 5718 5698 0 5718 5700 0\n\t\t 5718 5719 0 5719 5700 0 5719 5701 0 5719 5720 0 5720 5701 0 5720 5702 0 5720 5721 0\n\t\t 5721 5702 0 5721 5703 0 5721 5722 0 5722 5703 0 5722 5704 0 5722 5723 0 5723 5704 0\n\t\t 5723 5705 0 5723 5724 0 5724 5705 0 5724 5706 0 5724 5725 0 5725 5706 0 5725 5707 0\n\t\t 5725 5726 0 5726 5707 0 5726 5708 0 5726 5727 0 5727 5708 0 5727 5709 0 5727 5728 0\n\t\t 5728 5709 0 5728 5710 0 5728 5729 0 5729 5710 0 5729 5711 0 5729 5715 0 5730 5732 0\n\t\t 5732 5731 0 5731 5730 0 5730 5733 0 5733 5732 0 5730 5734 0 5734 5733 0 5730 5735 0\n\t\t 5735 5734 0 5730 5736 0 5736 5735 0 5730 5737 0 5737 5736 0 5730 5738 0 5738 5737 0\n\t\t 5730 5739 0 5739 5738 0 5730 5740 0 5740 5739 0 5730 5741 0 5741 5740 0 5730 5742 0\n\t\t 5742 5741 0 5730 5743 0 5743 5742 0 5730 5744 0 5744 5743 0 5730 5745 0 5745 5744 0\n\t\t 5730 5746 0 5746 5745 0 5731 5746 0 5734 5747 0 5747 5733 0 5735 5748 0 5748 5734 0\n\t\t 5748 5747 0 5737 5749 0 5749 5736 0 5738 5750 0 5750 5737 0 5750 5749 0 5740 5751 0\n\t\t 5751 5739 0 5741 5752 0 5752 5740 0 5752 5751 0 5743 5753 0 5753 5742 0 5744 5754 0\n\t\t 5754 5743 0 5754 5753 0 5746 5755 0 5755 5745 0 5731 5756 0 5756 5746 0 5757 5756 0\n\t\t 5731 5757 0 5732 5757 0 5758 5757 0 5732 5758 0 5733 5758 0 5747 5758 0 5756 5755 0\n\t\t 5757 5759 0 5759 5756 0 5758 5759 0 5759 5760 0 5760 5756 0 5758 5761 0 5761 5759 0\n\t\t 5747 5761 0 5747 5762 0 5762 5761 0 5748 5762 0 5748 5763 0 5763 5762 0 5748 5764 0\n\t\t 5764 5763 0 5735 5764 0 5736 5764 0 5749 5764 0 5764 5765 0 5765 5763 0 5749 5765 0\n\t\t 5749 5766 0 5766 5765 0 5750 5766 0 5750 5767 0 5767 5766 0 5750 5768 0 5768 5767 0\n\t\t 5738 5768 0 5739 5768 0 5751 5768 0 5768 5769 0 5769 5767 0 5751 5769 0 5751 5770 0\n\t\t 5770 5769 0 5752 5770 0 5752 5771 0 5771 5770 0 5752 5772 0 5772 5771 0 5741 5772 0\n\t\t 5742 5772 0 5753 5772 0 5772 5773 0 5773 5771 0 5753 5773 0 5753 5774 0 5774 5773 0;\n\tsetAttr \".ed[19256:19421]\" 5754 5774 0 5754 5775 0 5775 5774 0 5754 5776 0 5776 5775 0\n\t\t 5744 5776 0 5745 5776 0 5755 5776 0 5776 5777 0 5777 5775 0 5755 5777 0 5755 5778 0\n\t\t 5778 5777 0 5756 5778 0 5760 5778 0 10649 5781 0 5781 10667 0 10667 10649 0 10667 10660 0\n\t\t 10660 10649 0 5781 11950 0 11950 10667 0 5781 5783 0 5783 11950 0 5783 12423 0 5784 12423 0\n\t\t 5783 5784 0 5783 2939 0 2939 5784 0 10752 2939 0 5783 10752 0 5783 5786 0 5786 10752 0\n\t\t 11952 5787 0 5787 10669 0 10669 11952 0 5796 5779 0 5779 5782 0 5782 5796 0 5782 12035 0\n\t\t 12035 5796 0 5796 10160 0 10160 5779 0 10160 10650 0 10650 5779 0 10160 12024 0 12024 10650 0\n\t\t 12024 5785 0 5785 10650 0 10649 5786 0 5786 10914 0 10914 10649 0 12937 10914 0 5786 12937 0\n\t\t 5783 12937 0 10096 12937 0 5783 10096 0 5781 10096 0 10916 10096 0 5781 10916 0 10914 10916 0\n\t\t 10916 10649 0 10098 10213 0 10213 10211 0 10211 10098 0 10211 12939 0 12939 10098 0\n\t\t 10212 10214 0 10214 10917 0 10917 10212 0 10917 10915 0 10915 10212 0 12938 5790 0\n\t\t 5790 5788 0 5788 12938 0 5788 12936 0 12936 12938 0 10097 5793 0 5793 5792 0 5792 10097 0\n\t\t 5792 10095 0 10095 10097 0 5791 5795 0 5795 5794 0 5794 5791 0 5794 5789 0 5789 5791 0\n\t\t 10159 2913 0 2913 12909 0 12909 10159 0 12909 5797 0 5797 10159 0 11336 5797 0 12909 11336 0\n\t\t 5798 5797 0 11336 5798 0 12598 5798 0 12598 5799 0 5799 5798 0 5799 3044 0 3044 5798 0\n\t\t 3044 3051 0 3051 5798 0 3051 5800 0 5800 5798 0 12910 5801 0 5801 11337 0 11337 12910 0\n\t\t 12961 5800 0 5800 10159 0 10159 12961 0 10159 12967 0 12967 12961 0 5797 12967 0\n\t\t 10327 5798 0 5800 10327 0 12961 10327 0 10309 5797 0 5798 10309 0 10327 10309 0 10309 12967 0\n\t\t 10307 13004 0 13004 11711 0 11711 10307 0 11711 11713 0 11713 10307 0 11712 5806 0\n\t\t 5806 12968 0 12968 11712 0 12968 11714 0 11714 11712 0 13003 5808 0 5808 12960 0\n\t\t 12960 13003 0 12960 5803 0 5803 13003 0 10306 10308 0 10308 10326 0 10326 10306 0\n\t\t 10326 5805 0 5805 10306 0 5804 5802 0 5802 5809 0 5809 5804 0 5809 5807 0 5807 5804 0\n\t\t 13028 12625 0 12625 6132 0 6132 13028 0 6132 6203 0 6203 13028 0 6125 12625 0 13028 6125 0\n\t\t 13028 11743 0 11743 6125 0 13083 6125 0 11743 13083 0 11743 11741 0 11741 13083 0\n\t\t 10623 13083 0 11741 10623 0 11741 11742 0 11742 10623 0 10621 10623 0 11742 10621 0\n\t\t 11742 11750 0;\n\tsetAttr \".ed[19422:19587]\" 11750 10621 0 10705 10621 0 11750 10705 0 11750 13159 0\n\t\t 13159 10705 0 10666 10705 0 13159 10666 0 13159 6211 0 6211 10666 0 11851 6203 0\n\t\t 6132 11851 0 6132 10793 0 10793 11851 0 10624 11851 0 10793 10624 0 10624 10625 0\n\t\t 10625 11851 0 10793 10562 0 10562 10624 0 10562 10563 0 10563 10624 0 10563 10666 0\n\t\t 6211 10563 0 10563 12586 0 12586 10624 0 6211 9533 0 9533 10563 0 9533 12586 0 10535 5821 0\n\t\t 5821 5945 0 5945 10535 0 5945 5941 0 5941 10535 0 5822 10535 0 5941 5822 0 5941 10681 0\n\t\t 10681 5822 0 5821 10364 0 10364 5945 0 10364 5946 0 5946 5945 0 5825 5824 0 5824 10561 0\n\t\t 10561 5825 0 10561 5826 0 5826 5825 0 5827 5825 0 5826 5827 0 5826 6200 0 6200 5827 0\n\t\t 5828 5820 0 5820 5822 0 5822 5828 0 5828 5826 0 10561 5828 0 10561 5820 0 5822 5829 0\n\t\t 5829 5828 0 5829 5830 0 5830 5828 0 5831 5830 0 5829 5831 0 5829 5832 0 5832 5831 0\n\t\t 5822 5832 0 5832 5833 0 5833 5831 0 5833 5834 0 5834 5831 0 5833 5835 0 5835 5834 0\n\t\t 5836 5835 0 5833 5836 0 5833 5837 0 5837 5836 0 5832 5837 0 5835 6055 0 6055 5834 0\n\t\t 5832 5838 0 5838 5837 0 5838 10682 0 10682 5837 0 10682 5935 0 5935 5837 0 5935 5836 0\n\t\t 5935 5840 0 5840 5836 0 5841 9628 0 9628 9601 0 9601 5841 0 9600 5842 0 5842 9609 0\n\t\t 9609 9600 0 6012 9609 0 5842 6012 0 5842 5929 0 5929 6012 0 5822 5838 0 12653 6012 0\n\t\t 5929 12653 0 5929 12111 0 12111 12653 0 6024 12653 0 12111 6024 0 12111 12102 0 12102 6024 0\n\t\t 12102 5967 0 5967 6024 0 10681 5838 0 10681 10682 0 5844 5834 0 6055 5844 0 6055 5845 0\n\t\t 5845 5844 0 5846 5844 0 5845 5846 0 5845 6051 0 6051 5846 0 5846 5847 0 5847 5844 0\n\t\t 5844 9987 0 9987 5834 0 9987 5831 0 9987 5848 0 5848 5831 0 5848 5830 0 5848 5849 0\n\t\t 5849 5830 0 5849 5850 0 5850 5830 0 5850 5828 0 5850 5826 0 5850 6200 0 5851 6200 0\n\t\t 5850 5851 0 5849 5851 0 5851 6199 0 6199 6200 0 9531 12579 0 12579 5853 0 5853 9531 0\n\t\t 5853 5854 0 5854 9531 0 5854 5855 0 5855 9531 0 5856 5854 0 5853 5856 0 5856 5857 0\n\t\t 5857 5854 0 5858 5857 0 5856 5858 0 5856 5859 0 5859 5858 0 5859 5860 0 5860 5858 0\n\t\t 5860 5861 0 5861 5858 0 5856 5862 0 5862 5859 0 5853 5862 0 5862 5863 0 5863 5859 0\n\t\t 5863 5860 0 5863 5864 0 5864 5860 0 5858 9415 0;\n\tsetAttr \".ed[19588:19753]\" 9415 5857 0 9415 9402 0 9402 5857 0 12551 9415 0 5858 12551 0\n\t\t 5861 12551 0 5857 5867 0 5867 5854 0 9402 5867 0 9402 9403 0 9403 5867 0 9403 12755 0\n\t\t 12755 5867 0 12755 12585 0 12585 5867 0 12585 5854 0 12585 5855 0 9532 9531 0 5855 9532 0\n\t\t 12585 9532 0 12578 5852 0 5852 5872 0 5872 12578 0 5872 5959 0 5959 12578 0 9459 5959 0\n\t\t 5872 9459 0 5872 6210 0 6210 9459 0 9460 9459 0 6210 9460 0 6210 6208 0 6208 9460 0\n\t\t 12386 5951 0 5951 9217 0 9217 12386 0 9217 12431 0 12431 12386 0 5961 12431 0 9217 5961 0\n\t\t 9217 9218 0 9218 5961 0 9342 5961 0 9218 9342 0 9218 5952 0 5952 9342 0 9343 9342 0\n\t\t 5952 9343 0 5952 12517 0 12517 9343 0 12104 12074 0 12074 5949 0 5949 12104 0 5949 5964 0\n\t\t 5964 12104 0 5949 8682 0 8682 5964 0 8682 12385 0 12385 5964 0 5958 9938 0 9938 12349 0\n\t\t 12349 5958 0 12349 12399 0 12399 5958 0 5954 9938 0 5958 5954 0 5958 12331 0 12331 5954 0\n\t\t 12331 9343 0 9343 5954 0 12517 5954 0 11235 5934 0 5934 5886 0 5886 11235 0 5886 11237 0\n\t\t 11237 11235 0 5888 5886 0 5934 5888 0 5934 11310 0 11310 5888 0 5888 5890 0 5890 5886 0\n\t\t 5890 5891 0 5891 5886 0 11374 11237 0 5886 11374 0 5891 11374 0 11310 11311 0 11311 5888 0\n\t\t 11311 5894 0 5894 5888 0 11311 5937 0 5937 5894 0 5937 5895 0 5895 5894 0 5937 5896 0\n\t\t 5896 5895 0 5896 5897 0 5897 5895 0 5898 5897 0 5896 5898 0 5896 5899 0 5899 5898 0\n\t\t 5900 5898 0 5899 5900 0 5899 5901 0 5901 5900 0 5900 5902 0 5902 5898 0 5902 5903 0\n\t\t 5903 5898 0 5903 5897 0 5903 5904 0 5904 5897 0 5905 5891 0 5890 5905 0 5890 5906 0\n\t\t 5906 5905 0 5906 5991 0 5991 5905 0 5907 5991 0 5906 5907 0 5906 5908 0 5908 5907 0\n\t\t 5908 5909 0 5909 5907 0 5909 5910 0 5910 5907 0 5911 5909 0 5908 5911 0 5911 5904 0\n\t\t 5904 5909 0 5908 5912 0 5912 5911 0 5906 5912 0 5890 5912 0 5904 5913 0 5913 5909 0\n\t\t 5913 5910 0 5913 5914 0 5914 5910 0 5991 5993 0 5993 5905 0 5913 5915 0 5915 5914 0\n\t\t 5904 5915 0 5915 5986 0 5986 5914 0 5916 5986 0 5915 5916 0 5915 5917 0 5917 5916 0\n\t\t 5895 5911 0 5912 5895 0 5912 5894 0 5897 5911 0 5917 5918 0 5918 5916 0 5919 5918 0\n\t\t 5917 5919 0 5919 5920 0 5920 5918 0 5920 5921 0 5921 5918 0 5978 5918 0 5921 5978 0;\n\tsetAttr \".ed[19754:19919]\" 5978 5916 0 5921 5922 0 5922 5978 0 5923 5920 0 5919 5923 0\n\t\t 5919 5924 0 5924 5923 0 5943 5923 0 5924 5943 0 5924 5925 0 5925 5943 0 5917 5902 0\n\t\t 5902 5919 0 5915 5902 0 5915 5903 0 5901 5925 0 5924 5901 0 5924 5900 0 5900 5919 0\n\t\t 6319 5921 0 5920 6319 0 6319 5922 0 5920 5926 0 5926 6319 0 5923 5926 0 6319 6320 0\n\t\t 6320 5922 0 5927 5923 0 5943 5927 0 5927 5926 0 5943 5928 0 5928 5927 0 5929 5930 0\n\t\t 5930 5950 0 5950 5929 0 5950 12111 0 5932 5930 0 5929 5932 0 5842 5932 0 5933 5932 0\n\t\t 5842 5933 0 5842 5840 0 5840 5933 0 13267 5930 0 5932 13267 0 13267 5950 0 5932 5889 0\n\t\t 5889 13267 0 5933 5889 0 13267 5885 0 5885 5950 0 5935 5933 0 5935 5936 0 5936 5933 0\n\t\t 5893 5933 0 5936 5893 0 5893 5889 0 5936 5937 0 5937 5893 0 5936 5896 0 5936 5938 0\n\t\t 5938 5896 0 5935 5938 0 5935 5839 0 5839 5938 0 5939 5938 0 5839 5939 0 5939 5896 0\n\t\t 5839 5823 0 5823 5939 0 5940 5939 0 5823 5940 0 5823 5941 0 5941 5940 0 5940 5901 0\n\t\t 5901 5939 0 5940 5942 0 5942 5901 0 5942 5925 0 5942 5943 0 5942 5944 0 5944 5943 0\n\t\t 5942 5945 0 5945 5944 0 5945 5940 0 5946 5944 0 5899 5939 0 5944 5928 0 5944 6341 0\n\t\t 6341 5928 0 5946 6341 0 5946 6255 0 6255 6341 0 12073 12103 0 12103 12101 0 12101 12073 0\n\t\t 12101 12112 0 12112 12073 0 5931 12108 0 12108 8681 0 8681 5931 0 8681 5947 0 5947 5931 0\n\t\t 8683 8681 0 12108 8683 0 12108 11236 0 11236 8683 0 5875 8683 0 11236 5875 0 11236 5887 0\n\t\t 5887 5875 0 5877 5875 0 5887 5877 0 5887 5892 0 5892 5877 0 12496 5877 0 5892 12496 0\n\t\t 5892 12355 0 12355 12496 0 5880 12496 0 12355 5880 0 12355 6133 0 6133 5880 0 9937 5880 0\n\t\t 6133 9937 0 6133 9886 0 9886 9937 0 9886 9887 0 9887 9937 0 9887 5957 0 5957 9937 0\n\t\t 6135 5957 0 9887 6135 0 9887 12576 0 12576 6135 0 12382 5883 0 5883 5871 0 5871 12382 0\n\t\t 5871 12582 0 12582 12382 0 5884 12382 0 12582 5884 0 12582 5873 0 5873 5884 0 5879 5884 0\n\t\t 5873 5879 0 5873 9461 0 9461 5879 0 5878 5879 0 9461 5878 0 9461 12181 0 12181 5878 0\n\t\t 12427 5878 0 12181 12427 0 12181 5969 0 5969 12427 0 5876 12427 0 5969 5876 0 5969 9782 0\n\t\t 9782 5876 0 5882 5876 0 9782 5882 0 9782 9775 0 9775 5882 0 12384 5882 0 9775 12384 0;\n\tsetAttr \".ed[19920:20085]\" 9775 9777 0 9777 12384 0 5881 12384 0 9777 5881 0 9777 5948 0\n\t\t 5948 5881 0 9776 12098 0 12098 6202 0 6202 9776 0 6202 5965 0 5965 9776 0 6202 5967 0\n\t\t 5967 5965 0 12102 5965 0 5960 5874 0 5874 11801 0 11801 5960 0 11801 5968 0 5968 5960 0\n\t\t 12208 5960 0 5968 12208 0 5968 5970 0 5970 12208 0 5962 12208 0 5970 5962 0 5970 6204 0\n\t\t 6204 5962 0 5963 5962 0 6204 5963 0 6204 12099 0 12099 5963 0 5971 6158 0 6158 5972 0\n\t\t 5972 5971 0 5972 5973 0 5973 5971 0 5974 5971 0 5973 5974 0 5973 5975 0 5975 5974 0\n\t\t 5976 5974 0 5975 5976 0 5975 5977 0 5977 5976 0 5922 5976 0 5977 5922 0 5977 5978 0\n\t\t 5973 5979 0 5979 5975 0 5979 5980 0 5980 5975 0 5972 5981 0 5981 5973 0 5981 5979 0\n\t\t 5982 5979 0 5981 5982 0 5982 5980 0 5981 6152 0 6152 5982 0 5982 5983 0 5983 5980 0\n\t\t 5983 5984 0 5984 5980 0 5984 5985 0 5985 5980 0 5985 5975 0 5985 5977 0 5984 5986 0\n\t\t 5986 5985 0 5984 5914 0 5984 5987 0 5987 5914 0 5983 5987 0 5916 5985 0 5977 5916 0\n\t\t 5983 5988 0 5988 5987 0 5982 5988 0 5987 5989 0 5989 5914 0 5988 5989 0 5989 5910 0\n\t\t 5989 5990 0 5990 5910 0 5990 5907 0 5990 5991 0 5990 5992 0 5992 5991 0 5992 5993 0\n\t\t 5992 6189 0 6189 5993 0 5992 5994 0 5994 6189 0 5994 11292 0 11292 6189 0 6134 11292 0\n\t\t 5994 6134 0 11293 11292 0 6134 11293 0 5956 11293 0 6134 5956 0 5956 6180 0 6180 11293 0\n\t\t 6134 12577 0 12577 5956 0 5956 12085 0 12085 6180 0 5956 5955 0 5955 12085 0 5955 6186 0\n\t\t 6186 12085 0 5994 12701 0 12701 6134 0 5994 5999 0 5999 12701 0 5955 12591 0 12591 6186 0\n\t\t 6189 12591 0 12591 5993 0 12097 6186 0 12591 12097 0 6189 12097 0 11292 6177 0 6177 6189 0\n\t\t 6177 13337 0 13337 6189 0 6177 12354 0 12354 13337 0 12354 6175 0 6175 13337 0 6003 9688 0\n\t\t 9688 9689 0 9689 6003 0 9689 10929 0 10929 6003 0 6005 6003 0 10929 6005 0 10929 6006 0\n\t\t 6006 6005 0 6005 11025 0 11025 6003 0 11025 11026 0 11026 6003 0 11026 9688 0 11026 12777 0\n\t\t 12777 9688 0 10930 6004 0 6004 6009 0 6009 10930 0 6009 6010 0 6010 10930 0 12796 6009 0\n\t\t 6004 12796 0 6004 9690 0 9690 12796 0 12796 9628 0 9628 6009 0 5841 6009 0 5841 6010 0\n\t\t 5841 12671 0 12671 6010 0 6006 11010 0 11010 6005 0 11010 6014 0 6014 6005 0 6014 11025 0;\n\tsetAttr \".ed[20086:20251]\" 6015 6014 0 11010 6015 0 11010 6016 0 6016 6015 0 6017 6015 0\n\t\t 6016 6017 0 6016 11246 0 11246 6017 0 6019 6017 0 11246 6019 0 11246 6020 0 6020 6019 0\n\t\t 6021 6017 0 6019 6021 0 6019 6022 0 6022 6021 0 10321 6019 0 6020 10321 0 10321 6022 0\n\t\t 6020 6099 0 6099 10321 0 10321 10322 0 10322 6022 0 6018 11067 0 11067 6023 0 6023 6018 0\n\t\t 6023 6057 0 6057 6018 0 11304 6018 0 6057 11304 0 6023 12654 0 12654 6057 0 12654 5967 0\n\t\t 5967 6057 0 6057 6025 0 6025 11304 0 10352 11304 0 6025 10352 0 6026 6025 0 6057 6026 0\n\t\t 5817 6026 0 6057 5817 0 6021 6027 0 6027 6017 0 5843 12654 0 6023 5843 0 6023 6028 0\n\t\t 6028 5843 0 11067 6028 0 11067 6013 0 6013 6028 0 6025 10353 0 10353 10352 0 6026 10829 0\n\t\t 10829 6025 0 10829 10353 0 10830 10829 0 6026 10830 0 6026 12523 0 12523 10830 0\n\t\t 5817 12523 0 5817 5816 0 5816 12523 0 5816 5869 0 5869 12523 0 5869 12756 0 12756 12523 0\n\t\t 12671 5843 0 6028 12671 0 6028 6010 0 6013 10930 0 10930 6028 0 6027 6015 0 6032 6014 0\n\t\t 6015 6032 0 6027 6032 0 6032 11025 0 10787 10786 0 10786 6033 0 6033 10787 0 6034 6033 0\n\t\t 10786 6034 0 10786 11277 0 11277 6034 0 6035 6034 0 11277 6035 0 11277 11353 0 11353 6035 0\n\t\t 6036 6034 0 6035 6036 0 6035 6037 0 6037 6036 0 6036 6038 0 6038 6034 0 6038 6033 0\n\t\t 6033 6039 0 6039 10787 0 6007 10787 0 6039 6007 0 6038 6040 0 6040 6033 0 6040 6039 0\n\t\t 6039 6041 0 6041 6007 0 6041 6042 0 6042 6007 0 6042 6008 0 6008 6007 0 6043 6041 0\n\t\t 6039 6043 0 6040 6043 0 6043 6042 0 6043 6044 0 6044 6042 0 11534 6035 0 11353 11534 0\n\t\t 11534 6037 0 11353 10323 0 10323 11534 0 11534 13125 0 13125 6037 0 12776 6008 0\n\t\t 6042 12776 0 6042 6046 0 6046 12776 0 6044 6046 0 6044 6047 0 6047 6046 0 6047 6048 0\n\t\t 6048 6046 0 6048 6049 0 6049 6046 0 6049 12776 0 6049 6054 0 6054 12776 0 6048 6051 0\n\t\t 6051 6049 0 5845 6049 0 5845 6054 0 6055 6054 0 6052 6053 0 6053 6050 0 6050 6052 0\n\t\t 6050 9744 0 9744 6052 0 5835 6052 0 9744 5835 0 9744 6055 0 5836 6052 0 5836 6011 0\n\t\t 6011 6052 0 6011 6053 0 6011 6056 0 6056 6053 0 5967 5817 0 10434 6113 0 6113 12850 0\n\t\t 12850 10434 0 12850 6106 0 6106 10434 0 12869 6106 0 12850 12869 0 12850 6114 0 6114 12869 0\n\t\t 11651 6100 0 6100 12870 0;\n\tsetAttr \".ed[20252:20417]\" 12870 11651 0 12870 11650 0 11650 11651 0 12844 11650 0\n\t\t 12870 12844 0 12870 10482 0 10482 12844 0 10482 10343 0 10343 12844 0 10343 10277 0\n\t\t 10277 12844 0 12868 12872 0 12872 12831 0 12831 12868 0 12831 6109 0 6109 12868 0\n\t\t 12827 6109 0 12831 12827 0 12831 12832 0 12832 12827 0 10275 10344 0 10344 12992 0\n\t\t 12992 10275 0 12992 12990 0 12990 10275 0 10342 10344 0 10275 10342 0 10275 10276 0\n\t\t 10276 10342 0 10368 6069 0 6069 6068 0 6068 10368 0 6068 10370 0 10370 10368 0 13073 10370 0\n\t\t 6068 13073 0 6068 10299 0 10299 13073 0 6115 6071 0 6071 6072 0 6072 6115 0 6072 10425 0\n\t\t 10425 6115 0 10426 10425 0 6072 10426 0 6072 6075 0 6075 10426 0 10300 10369 0 10369 6112 0\n\t\t 6112 10300 0 6112 6076 0 6076 10300 0 6077 6076 0 6112 6077 0 6112 6111 0 6111 6077 0\n\t\t 6111 12928 0 12928 6077 0 12928 12956 0 12956 6077 0 10253 6076 0 6077 10253 0 6077 10272 0\n\t\t 10272 10253 0 12956 10272 0 6081 10300 0 6076 6081 0 10253 6081 0 6069 10084 0 10084 10086 0\n\t\t 10086 6069 0 10086 6068 0 10086 10299 0 10086 10068 0 10068 10299 0 12956 6097 0\n\t\t 6097 10272 0 10298 10067 0 10067 6084 0 6084 10298 0 6084 6072 0 6072 10298 0 6084 6075 0\n\t\t 6084 6085 0 6085 6075 0 6147 6079 0 6079 6080 0 6080 6147 0 6080 6148 0 6148 6147 0\n\t\t 6080 10173 0 10173 6148 0 6086 10085 0 10085 6079 0 6079 6086 0 6147 6086 0 6086 6087 0\n\t\t 6087 10085 0 6087 6082 0 6082 10085 0 6083 6082 0 6087 6083 0 6087 10879 0 10879 6083 0\n\t\t 10173 6089 0 6089 6148 0 10879 10880 0 10880 6083 0 10880 6084 0 6084 6083 0 10880 6085 0\n\t\t 10880 6144 0 6144 6085 0 12946 6093 0 6093 6092 0 6092 12946 0 6092 12947 0 12947 12946 0\n\t\t 12927 12947 0 6092 12927 0 6092 6078 0 6078 12927 0 10170 6092 0 6093 10170 0 10170 6078 0\n\t\t 6093 10250 0 10250 10170 0 10170 10171 0 10171 6078 0 6098 6095 0 6095 6096 0 6096 6098 0\n\t\t 10172 6095 0 6098 10172 0 6096 6149 0 6149 6098 0 6098 6089 0 6089 10172 0 6060 10433 0\n\t\t 10433 10351 0 10351 6060 0 10351 6101 0 6101 6060 0 6102 6060 0 6101 6102 0 6101 6029 0\n\t\t 6029 6102 0 6103 6102 0 6029 6103 0 6029 6030 0 6030 6103 0 6104 6103 0 6030 6104 0\n\t\t 6030 6140 0 6140 6104 0 6065 6104 0 6140 6065 0 6140 6138 0 6138 6065 0 6105 10351 0\n\t\t 10433 6105 0 10433 10435 0 10435 6105 0 6107 6105 0 10435 6107 0 10435 6059 0;\n\tsetAttr \".ed[20418:20583]\" 6059 6107 0 6108 6107 0 6059 6108 0 6059 12826 0 12826 6108 0\n\t\t 6045 6108 0 12826 6045 0 12826 6063 0 6063 6045 0 6110 6061 0 6061 11679 0 11679 6110 0\n\t\t 11679 11680 0 11680 6110 0 11652 6110 0 11680 11652 0 11680 6067 0 6067 11652 0 6058 11652 0\n\t\t 6067 6058 0 6067 6070 0 6070 6058 0 12871 6058 0 6070 12871 0 6070 13072 0 13072 12871 0\n\t\t 6094 11679 0 6061 6094 0 6061 6066 0 6066 6094 0 6116 6094 0 6066 6116 0 6066 6064 0\n\t\t 6064 6116 0 6091 6116 0 6064 6091 0 6064 6117 0 6117 6091 0 13072 6073 0 6073 12871 0\n\t\t 6073 6062 0 6062 12871 0 6118 6062 0 6073 6118 0 6073 6074 0 6074 6118 0 9379 12525 0\n\t\t 12525 6031 0 6031 9379 0 6031 5868 0 5868 9379 0 9377 9379 0 5868 9377 0 5868 5866 0\n\t\t 5866 9377 0 9649 9377 0 5866 9649 0 5866 5865 0 5865 9649 0 6139 9649 0 5865 6139 0\n\t\t 5865 6119 0 6119 6139 0 8891 8889 0 8889 6120 0 6120 8891 0 8973 8971 0 8971 10622 0\n\t\t 10622 8973 0 10622 5813 0 5813 8973 0 12296 8973 0 5813 12296 0 5813 5815 0 5815 12296 0\n\t\t 6123 6121 0 6121 6169 0 6169 6123 0 6169 12287 0 12287 6123 0 5812 6123 0 12287 5812 0\n\t\t 12287 6172 0 6172 5812 0 13093 5812 0 6172 13093 0 6172 10741 0 10741 13093 0 5811 13093 0\n\t\t 10741 5811 0 10741 10742 0 10742 5811 0 12297 12296 0 5815 12297 0 5815 10564 0 10564 12297 0\n\t\t 10711 12298 0 12298 5819 0 5819 10711 0 5819 5818 0 5818 10711 0 10712 10711 0 5818 10712 0\n\t\t 5818 6130 0 6130 10712 0 10792 10794 0 10794 12310 0 12310 10792 0 12310 10713 0\n\t\t 10713 10792 0 10742 12310 0 10794 10742 0 10794 5811 0 5888 5912 0 12591 5953 0 5953 5993 0\n\t\t 5953 5905 0 5953 11374 0 11374 5905 0 12590 6136 0 6136 12348 0 12348 12590 0 12348 5997 0\n\t\t 5997 12590 0 12590 5998 0 5998 6136 0 6137 9650 0 9650 9668 0 9668 6137 0 9668 9669 0\n\t\t 9669 6137 0 9378 6137 0 9669 9378 0 9669 10831 0 10831 9378 0 10831 12524 0 12524 9378 0\n\t\t 6141 6143 0 6143 6142 0 6142 6141 0 12508 6090 0 6090 6145 0 6145 12508 0 6145 6146 0\n\t\t 6146 12508 0 6087 6145 0 6090 6087 0 6090 6088 0 6088 6087 0 6086 6145 0 6147 6145 0\n\t\t 6147 6146 0 6148 6146 0 6089 6146 0 6098 6146 0 6098 12508 0 6149 12508 0 6150 6151 0\n\t\t 6151 6164 0 6164 6150 0 6164 6152 0 6152 6150 0 6153 6150 0 6152 6153 0 5981 6153 0\n\t\t 6154 10016 0;\n\tsetAttr \".ed[20584:20749]\" 10016 9974 0 9974 6154 0 10017 10016 0 6154 10017 0\n\t\t 9974 6155 0 6155 6154 0 9974 9451 0 9451 6155 0 6156 6153 0 5981 6156 0 9451 6157 0\n\t\t 6157 6155 0 5972 6156 0 6158 6156 0 6158 9452 0 9452 6156 0 6154 6160 0 6160 10017 0\n\t\t 10797 9452 0 6158 10797 0 6161 6159 0 6159 6574 0 6574 6161 0 6161 6157 0 9451 6161 0\n\t\t 9451 6159 0 6574 6162 0 6162 6161 0 6158 6579 0 6579 10797 0 6152 12873 0 12873 6163 0\n\t\t 6163 6152 0 6163 5982 0 6163 5988 0 10364 10365 0 10365 5946 0 10365 6255 0 6165 5824 0\n\t\t 5825 6165 0 5825 6253 0 6253 6165 0 5827 6253 0 5827 6254 0 6254 6253 0 6166 6254 0\n\t\t 5827 6166 0 5974 6167 0 6167 6578 0 6578 5974 0 6578 5971 0 6578 6158 0 6578 6579 0\n\t\t 5976 6167 0 5976 6168 0 6168 6167 0 5922 6168 0 6320 6168 0 8972 6170 0 6170 6122 0\n\t\t 6122 8972 0 6122 6128 0 6128 8972 0 6122 6171 0 6171 6128 0 6128 12286 0 12286 8972 0\n\t\t 6128 6131 0 6131 12286 0 6128 6129 0 6129 6131 0 6131 6127 0 6127 12286 0 6127 6126 0\n\t\t 6126 12286 0 12286 6124 0 6124 8972 0 6173 12488 0 12488 11584 0 11584 6173 0 11584 11600 0\n\t\t 11600 6173 0 11600 11699 0 11699 6173 0 11699 12230 0 12230 6173 0 11699 11625 0\n\t\t 11625 12230 0 11699 11623 0 11623 11625 0 12230 6175 0 6175 6173 0 8860 6177 0 11292 8860 0\n\t\t 5995 5996 0 5996 6176 0 6176 5995 0 8860 12339 0 12339 6177 0 12339 12354 0 8861 6176 0\n\t\t 5996 8861 0 5996 8890 0 8890 8861 0 8860 6179 0 6179 6192 0 6192 8860 0 6192 12339 0\n\t\t 8866 8861 0 8890 8866 0 8890 6182 0 6182 8866 0 6183 8866 0 6182 6183 0 6182 12084 0\n\t\t 12084 6183 0 6181 8730 0 8730 8668 0 8668 6181 0 8668 6194 0 6194 6181 0 6179 6181 0\n\t\t 6194 6179 0 6194 6192 0 8678 6183 0 12084 8678 0 12084 8787 0 8787 8678 0 8730 6185 0\n\t\t 6185 8669 0 8669 8730 0 8669 8668 0 8679 8677 0 8677 8786 0 8786 8679 0 8786 6000 0\n\t\t 6000 8679 0 6001 8679 0 6000 6001 0 13337 12097 0 6188 13337 0 6175 6188 0 6175 6197 0\n\t\t 6197 6188 0 6185 6188 0 6197 6185 0 6197 8669 0 12354 6173 0 12354 12488 0 6002 6178 0\n\t\t 6178 6190 0 6190 6002 0 11583 6190 0 6178 11583 0 6178 11585 0 11585 11583 0 6193 6191 0\n\t\t 6191 11586 0 11586 6193 0 11586 11705 0 11705 6193 0 6195 6193 0 11705 6195 0 11705 6184 0\n\t\t 6184 6195 0 6196 6195 0;\n\tsetAttr \".ed[20750:20915]\" 6184 6196 0 6184 8670 0 8670 6196 0 11624 6187 0 6187 12079 0\n\t\t 12079 11624 0 12079 6198 0 6198 11624 0 6174 6198 0 12079 6174 0 12230 6197 0 6199 5827 0\n\t\t 6199 6166 0 6201 5817 0 5967 6201 0 6202 6201 0 6202 11852 0 11852 6201 0 5810 11852 0\n\t\t 6202 5810 0 12098 5810 0 13029 5966 0 5966 12136 0 12136 13029 0 12136 6205 0 6205 13029 0\n\t\t 6206 6205 0 12136 6206 0 12136 5970 0 5970 6206 0 6207 6206 0 5970 6207 0 5968 6207 0\n\t\t 11801 6207 0 11801 6209 0 6209 6207 0 11801 6210 0 6210 6209 0 6210 5814 0 5814 6209 0\n\t\t 13156 5814 0 6210 13156 0 5872 13156 0 5852 13156 0 5852 5870 0 5870 13156 0 10903 10762 0\n\t\t 10762 12838 0 12838 10903 0 12838 12810 0 12810 10903 0 12810 12432 0 12432 10903 0\n\t\t 12432 10904 0 10904 10903 0 12432 9796 0 9796 10904 0 9796 9170 0 9170 10904 0 9796 9795 0\n\t\t 9795 9170 0 9795 9171 0 9171 9170 0 9795 9249 0 9249 9171 0 9249 9068 0 9068 9171 0\n\t\t 9249 9096 0 9096 9068 0 9096 9069 0 9069 9068 0 9096 9097 0 9097 9069 0 9097 6618 0\n\t\t 6618 9069 0 10762 10761 0 10761 12838 0 10761 12346 0 12346 12838 0 6461 12346 0\n\t\t 10761 6461 0 6461 12338 0 12338 12346 0 10761 10788 0 10788 6461 0 9875 12338 0 6461 9875 0\n\t\t 9097 9875 0 9875 6618 0 6461 9194 0 9194 9875 0 9875 9192 0 9192 6618 0 9194 9192 0\n\t\t 6339 8709 0 8709 6222 0 6222 6339 0 6222 6224 0 6224 6339 0 6222 6225 0 6225 6224 0\n\t\t 6225 8720 0 8720 6224 0 8710 8709 0 6339 8710 0 6339 6340 0 6340 8710 0 6223 6227 0\n\t\t 6227 6228 0 6228 6223 0 6228 6229 0 6229 6223 0 6228 6606 0 6606 6229 0 6606 6230 0\n\t\t 6230 6229 0 6225 11974 0 11974 6231 0 6231 6225 0 6229 6231 0 6231 6223 0 11974 6223 0\n\t\t 6231 6232 0 6232 6225 0 6233 6232 0 6231 6233 0 6233 6234 0 6234 6232 0 6234 6235 0\n\t\t 6235 6232 0 6235 6225 0 6236 6235 0 6234 6236 0 6234 6237 0 6237 6236 0 6238 6236 0\n\t\t 6237 6238 0 6238 9709 0 9709 6236 0 9709 6240 0 6240 6236 0 6240 6235 0 6237 6439 0\n\t\t 6439 6238 0 6240 6241 0 6241 6235 0 11986 6241 0 6240 11986 0 6240 6328 0 6328 11986 0\n\t\t 9709 6328 0 9709 9710 0 9710 6328 0 9711 6239 0 6239 12802 0 12802 9711 0 6463 6324 0\n\t\t 6324 6243 0 6243 6463 0 6463 12768 0 12768 6324 0 12768 6321 0 6321 6324 0 6241 6225 0\n\t\t 12768 6456 0 6456 6321 0;\n\tsetAttr \".ed[20916:21081]\" 6456 10108 0 10108 6321 0 6456 6450 0 6450 10108 0 6450 9979 0\n\t\t 9979 10108 0 6450 6366 0 6366 9979 0 6241 8720 0 11986 8720 0 6245 6246 0 6246 6439 0\n\t\t 6439 6245 0 6237 6245 0 6245 6247 0 6247 6246 0 6247 6438 0 6438 6246 0 6237 6248 0\n\t\t 6248 6245 0 6245 9835 0 9835 6247 0 6234 6248 0 6249 6248 0 6234 6249 0 6233 6249 0\n\t\t 6233 6250 0 6250 6249 0 6231 6250 0 6229 6250 0 6230 6250 0 6250 6251 0 6251 6249 0\n\t\t 6252 6251 0 6250 6252 0 6230 6252 0 6606 6252 0 6228 6253 0 6253 6606 0 6254 6606 0\n\t\t 6228 6165 0 6227 6165 0 10365 8710 0 6340 10365 0 6340 6255 0 6166 6256 0 6256 6254 0\n\t\t 6257 6356 0 6356 6620 0 6620 6257 0 6620 6258 0 6258 6257 0 6620 6259 0 6259 6258 0\n\t\t 6258 6260 0 6260 6257 0 6261 6260 0 6258 6261 0 6261 6262 0 6262 6260 0 6262 6263 0\n\t\t 6263 6260 0 6264 6263 0 6262 6264 0 6262 6265 0 6265 6264 0 6266 6260 0 6263 6266 0\n\t\t 6266 6257 0 6263 6267 0 6267 6266 0 6268 6267 0 6263 6268 0 6264 6268 0 6534 6262 0\n\t\t 6261 6534 0 6534 6265 0 6261 12200 0 12200 6534 0 6534 8905 0 8905 6265 0 6258 6270 0\n\t\t 6270 6261 0 6270 12200 0 6270 6532 0 6532 12200 0 12352 6532 0 6270 12352 0 6270 9193 0\n\t\t 9193 12352 0 6258 9193 0 6259 9193 0 9191 9193 0 6259 9191 0 6620 9191 0 6619 12334 0\n\t\t 12334 10406 0 10406 6619 0 10406 10407 0 10407 6619 0 10407 11095 0 11095 6619 0\n\t\t 11095 6617 0 6617 6619 0 11095 11096 0 11096 6617 0 11096 10191 0 10191 6617 0 12903 10989 0\n\t\t 10989 11022 0 11022 12903 0 11022 12964 0 12964 12903 0 12964 6361 0 6361 12903 0\n\t\t 6361 10022 0 10022 12903 0 6361 10366 0 10366 10022 0 10366 10023 0 10023 10022 0\n\t\t 10366 13052 0 13052 10023 0 13052 10043 0 10043 10023 0 9981 12973 0 12973 10987 0\n\t\t 10987 9981 0 10987 12864 0 12864 9981 0 10988 10987 0 12973 10988 0 12973 11023 0\n\t\t 11023 10988 0 10412 6358 0 6358 6354 0 6354 10412 0 6354 11121 0 11121 10412 0 11121 11122 0\n\t\t 11122 10412 0 11122 10449 0 10449 10412 0 13052 10449 0 11122 13052 0 11122 10043 0\n\t\t 6284 6326 0 6326 10063 0 10063 6284 0 10063 6348 0 6348 6284 0 6284 6285 0 6285 6326 0\n\t\t 6285 6327 0 6327 6326 0 6286 6285 0 6284 6286 0 6284 6287 0 6287 6286 0 6348 12895 0\n\t\t 12895 6284 0 12895 6287 0 12996 6327 0 6285 12996 0 6285 6290 0 6290 12996 0;\n\tsetAttr \".ed[21082:21247]\" 6330 12996 0 6290 6330 0 6290 6291 0 6291 6330 0 6331 6330 0\n\t\t 6291 6331 0 6291 6292 0 6292 6331 0 6292 6293 0 6293 6331 0 6293 6294 0 6294 6331 0\n\t\t 6293 6295 0 6295 6294 0 6295 6296 0 6296 6294 0 6297 6295 0 6293 6297 0 6293 6298 0\n\t\t 6298 6297 0 6292 6298 0 6292 6299 0 6299 6298 0 6287 6300 0 6300 6286 0 12895 6300 0\n\t\t 6290 6301 0 6301 6291 0 6301 6302 0 6302 6291 0 6302 6292 0 6302 6299 0 6301 6303 0\n\t\t 6303 6302 0 6303 6304 0 6304 6302 0 6304 6299 0 6303 6305 0 6305 6304 0 6305 6306 0\n\t\t 6306 6304 0 6304 6307 0 6307 6299 0 6306 6307 0 6306 6387 0 6387 6307 0 6303 6308 0\n\t\t 6308 6305 0 6301 6308 0 6308 6309 0 6309 6305 0 6308 6300 0 6300 6309 0 6300 6310 0\n\t\t 6310 6309 0 6311 6307 0 6387 6311 0 6298 6311 0 6311 6297 0 6311 6299 0 6387 6386 0\n\t\t 6386 6311 0 6386 6389 0 6389 6311 0 6389 6312 0 6312 6311 0 6301 6286 0 6286 6308 0\n\t\t 6313 6312 0 6389 6313 0 6313 6314 0 6314 6312 0 6315 6314 0 6313 6315 0 6313 6316 0\n\t\t 6316 6315 0 6313 6378 0 6378 6316 0 6389 6378 0 6378 6377 0 6377 6316 0 6315 6317 0\n\t\t 6317 6314 0 6317 6318 0 6318 6314 0 6317 6337 0 6337 6318 0 6337 6336 0 6336 6318 0\n\t\t 6314 6297 0 6297 6312 0 6336 6296 0 6296 6318 0 6295 6318 0 6295 6314 0 6316 6319 0\n\t\t 6319 6315 0 6377 6319 0 5926 6315 0 5926 6317 0 6377 6320 0 6317 5927 0 5927 6337 0\n\t\t 5928 6337 0 10061 6322 0 6322 6321 0 6321 10061 0 10108 10061 0 6322 6323 0 6323 6321 0\n\t\t 6323 6324 0 6323 6325 0 6325 6324 0 6325 9710 0 9710 6324 0 6322 10646 0 10646 6323 0\n\t\t 10061 10646 0 10646 10647 0 10647 6323 0 10647 6325 0 10061 10062 0 10062 10646 0\n\t\t 6325 6328 0 6325 6329 0 6329 6328 0 6325 6289 0 6289 6329 0 10647 6289 0 6289 6330 0\n\t\t 6330 6329 0 6331 6329 0 6331 6332 0 6332 6329 0 6332 6328 0 6332 6242 0 6242 6328 0\n\t\t 6332 6333 0 6333 6242 0 6331 6333 0 6333 6226 0 6226 6242 0 6333 6334 0 6334 6226 0\n\t\t 6334 6224 0 6224 6226 0 6296 6334 0 6333 6296 0 6335 6334 0 6296 6335 0 6336 6335 0\n\t\t 6337 6335 0 6337 6338 0 6338 6335 0 6339 6335 0 6338 6339 0 6334 6339 0 6338 6340 0\n\t\t 6333 6294 0 5928 6338 0 6341 6338 0 6341 6340 0 12865 6343 0 6343 9978 0 9978 12865 0\n\t\t 9978 9980 0;\n\tsetAttr \".ed[21248:21413]\" 9980 12865 0 10109 6345 0 6345 6278 0 6278 10109 0 6278 6346 0\n\t\t 6346 10109 0 6278 6279 0 6279 6346 0 6279 6347 0 6347 6346 0 6279 6276 0 6276 6347 0\n\t\t 6276 10110 0 10110 6347 0 6276 6349 0 6349 10110 0 6349 6288 0 6288 10110 0 6349 6350 0\n\t\t 6350 6288 0 6350 12608 0 12608 6288 0 6350 6352 0 6352 12608 0 6352 6547 0 6547 12608 0\n\t\t 6352 6282 0 6282 6547 0 6282 12913 0 12913 6547 0 6398 12913 0 6282 6398 0 6282 6281 0\n\t\t 6281 6398 0 6281 12642 0 12642 6398 0 12642 6548 0 6548 6398 0 6355 6357 0 6357 10405 0\n\t\t 10405 6355 0 10405 10413 0 10413 6355 0 6355 6359 0 6359 6357 0 6359 6274 0 6274 6357 0\n\t\t 6359 6283 0 6283 6274 0 6283 11097 0 11097 6274 0 6283 6360 0 6360 11097 0 6360 13018 0\n\t\t 13018 11097 0 6360 10367 0 10367 13018 0 10367 10181 0 10181 13018 0 10367 6277 0\n\t\t 6277 10181 0 6277 10182 0 10182 10181 0 6277 6280 0 6280 10182 0 6280 12981 0 12981 10182 0\n\t\t 6280 6364 0 6364 12981 0 6364 6365 0 6365 12981 0 6364 6344 0 6344 6365 0 6344 6342 0\n\t\t 6342 6365 0 6369 13163 0 13163 6609 0 6609 6369 0 6609 10920 0 10920 6369 0 6366 6609 0\n\t\t 13163 6366 0 13163 9979 0 6616 6275 0 6275 6367 0 6367 6616 0 6367 6615 0 6615 6616 0\n\t\t 6367 6362 0 6362 6615 0 6362 6614 0 6614 6615 0 6362 6363 0 6363 6614 0 6363 13135 0\n\t\t 13135 6614 0 6363 12980 0 12980 13135 0 12980 10921 0 10921 13135 0 6571 6371 0 6371 6370 0\n\t\t 6370 6571 0 6370 6372 0 6372 6571 0 6370 6373 0 6373 6372 0 6373 6374 0 6374 6372 0\n\t\t 6373 6375 0 6375 6374 0 6375 6376 0 6376 6374 0 6375 6377 0 6377 6376 0 6378 6376 0\n\t\t 6379 6372 0 6374 6379 0 6374 6380 0 6380 6379 0 6379 6381 0 6381 6372 0 6381 6571 0\n\t\t 6379 6382 0 6382 6381 0 6380 6382 0 6382 6565 0 6565 6381 0 6380 6383 0 6383 6382 0\n\t\t 6384 6383 0 6380 6384 0 6380 6385 0 6385 6384 0 6376 6385 0 6385 6374 0 6386 6384 0\n\t\t 6385 6386 0 6387 6384 0 6387 6388 0 6388 6384 0 6388 6383 0 6385 6389 0 6376 6389 0\n\t\t 6388 6390 0 6390 6383 0 6390 6382 0 6391 6388 0 6387 6391 0 6391 6390 0 6306 6391 0\n\t\t 6392 6391 0 6306 6392 0 6305 6392 0 6309 6392 0 6309 6393 0 6393 6392 0 6310 6393 0\n\t\t 6310 6595 0 6595 6393 0 6394 6393 0 6595 6394 0 6595 11669 0 11669 6394 0 12601 6394 0\n\t\t 11669 12601 0;\n\tsetAttr \".ed[21414:21579]\" 11669 11670 0 11670 12601 0 12908 12601 0 11670 12908 0\n\t\t 12908 12636 0 12636 12601 0 12726 12908 0 11670 12726 0 12726 11574 0 11574 12908 0\n\t\t 11574 6353 0 6353 12908 0 11574 11576 0 11576 6353 0 12601 6550 0 6550 6394 0 6550 6401 0\n\t\t 6401 6394 0 6310 12609 0 12609 6595 0 11576 12609 0 12609 6353 0 6593 6595 0 12609 6593 0\n\t\t 11576 6593 0 6604 11669 0 6595 6604 0 6595 11562 0 11562 6604 0 6444 9589 0 9589 6402 0\n\t\t 6402 6444 0 6402 6403 0 6403 6444 0 6402 6404 0 6404 6403 0 6404 6405 0 6405 6403 0\n\t\t 6406 6404 0 6402 6406 0 6402 6407 0 6407 6406 0 9589 6407 0 9589 11259 0 11259 6407 0\n\t\t 6409 6405 0 6404 6409 0 6404 6410 0 6410 6409 0 6406 6410 0 6410 6411 0 6411 6409 0\n\t\t 6411 6412 0 6412 6409 0 6411 6413 0 6413 6412 0 6413 6414 0 6414 6412 0 6413 6415 0\n\t\t 6415 6414 0 6415 6416 0 6416 6414 0 6413 6417 0 6417 6415 0 6417 10976 0 10976 6415 0\n\t\t 6415 11966 0 11966 6416 0 10976 11966 0 11966 11912 0 11912 6416 0 10976 10977 0\n\t\t 10977 11966 0 6411 6420 0 6420 6413 0 6420 6417 0 6421 6420 0 6411 6421 0 6410 6421 0\n\t\t 6406 6421 0 6422 6418 0 6418 11040 0 11040 6422 0 11040 6423 0 6423 6422 0 11040 10925 0\n\t\t 10925 6423 0 6424 6422 0 6423 6424 0 6423 6425 0 6425 6424 0 10925 6426 0 6426 6423 0\n\t\t 6426 6425 0 10925 10926 0 10926 6426 0 6426 6427 0 6427 6425 0 10926 6428 0 6428 6426 0\n\t\t 10926 11134 0 11134 6428 0 6428 6429 0 6429 6426 0 6429 6427 0 11134 6430 0 6430 6428 0\n\t\t 6431 6430 0 11134 6431 0 11134 11231 0 11231 6431 0 6430 6432 0 6432 6428 0 6432 6429 0\n\t\t 6431 6432 0 6431 6433 0 6433 6432 0 6424 12013 0 12013 6422 0 12013 12012 0 12012 6422 0\n\t\t 12012 6418 0 12012 10978 0 10978 6418 0 11231 11258 0 11258 6431 0 11258 6434 0 6434 6431 0\n\t\t 6434 6433 0 6434 6435 0 6435 6433 0 6436 6435 0 6434 6436 0 6434 6437 0 6437 6436 0\n\t\t 11258 6437 0 11258 6442 0 6442 6437 0 6438 6436 0 6437 6438 0 6437 6246 0 6442 6246 0\n\t\t 6442 6439 0 6408 6441 0 6441 6440 0 6440 6408 0 6440 12652 0 12652 6408 0 6440 6238 0\n\t\t 6238 12652 0 6439 12652 0 6440 9709 0 6440 6443 0 6443 9709 0 6441 6443 0 6441 9514 0\n\t\t 9514 6443 0 9512 9513 0 9513 6445 0 6445 9512 0 6446 6448 0 6448 6447 0 6447 6446 0\n\t\t 6447 6449 0 6449 6446 0 9939 6446 0;\n\tsetAttr \".ed[21580:21745]\" 6449 9939 0 6449 6366 0 6366 9939 0 6447 6451 0 6451 6449 0\n\t\t 6451 6452 0 6452 6449 0 6452 6453 0 6453 6449 0 6453 6608 0 6608 6449 0 6446 6454 0\n\t\t 6454 6448 0 6454 6455 0 6455 6448 0 9939 9940 0 9940 6446 0 9940 6454 0 6451 6511 0\n\t\t 6511 6452 0 6511 9995 0 9995 6452 0 9982 6453 0 6452 9982 0 9995 9982 0 9982 9729 0\n\t\t 9729 6453 0 9729 9731 0 9731 6453 0 9731 6608 0 9731 12340 0 12340 6608 0 6273 12340 0\n\t\t 9731 6273 0 9731 6271 0 6271 6273 0 9940 6244 0 6244 6454 0 6244 6462 0 6462 6454 0\n\t\t 6244 12802 0 12802 6462 0 12802 6464 0 6464 6462 0 6465 6462 0 6464 6465 0 6465 6454 0\n\t\t 6465 6455 0 6464 6466 0 6466 6465 0 6464 9512 0 9512 6466 0 6445 6466 0 6239 9512 0\n\t\t 6464 6239 0 9513 6466 0 9513 6403 0 6403 6466 0 6403 6465 0 6405 6465 0 6409 6465 0\n\t\t 6409 6455 0 6409 6448 0 6412 6448 0 6414 6448 0 6414 6447 0 6414 11098 0 11098 6447 0\n\t\t 11098 6451 0 11098 11911 0 11911 6451 0 11911 6511 0 6608 6366 0 8736 8738 0 8738 12117 0\n\t\t 12117 8736 0 12117 12119 0 12119 8736 0 8738 8834 0 8834 12117 0 8834 6528 0 6528 12117 0\n\t\t 8924 8923 0 8923 8835 0 8835 8924 0 8835 6517 0 6517 8924 0 6517 12285 0 12285 8924 0\n\t\t 12285 12192 0 12192 8924 0 8737 6525 0 6525 12245 0 12245 8737 0 12245 8829 0 8829 8737 0\n\t\t 6510 8829 0 12245 6510 0 12245 6519 0 6519 6510 0 6519 9013 0 9013 6510 0 9013 12263 0\n\t\t 12263 6510 0 12390 12263 0 9013 12390 0 9013 12272 0 12272 12390 0 12368 6524 0 6524 12464 0\n\t\t 12464 12368 0 12464 6512 0 6512 12368 0 6512 12389 0 12389 12368 0 12389 6476 0 6476 12368 0\n\t\t 9299 6527 0 6527 6480 0 6480 9299 0 6480 6481 0 6481 9299 0 6527 8887 0 8887 6480 0\n\t\t 8887 9033 0 9033 6480 0 6483 6482 0 6482 6529 0 6529 6483 0 6529 9050 0 9050 6483 0\n\t\t 9046 9045 0 9045 9051 0 9051 9046 0 9051 6531 0 6531 9046 0 6480 11870 0 11870 6481 0\n\t\t 9033 11870 0 11870 9061 0 9061 6481 0 9033 9034 0 9034 11870 0 6489 6488 0 6488 9032 0\n\t\t 9032 6489 0 9032 9044 0 9044 6489 0 9044 6485 0 6485 6490 0 6490 9044 0 6490 6489 0\n\t\t 9062 6486 0 6486 6491 0 6491 9062 0 6486 9035 0 9035 6491 0 6491 6558 0 6558 9062 0\n\t\t 9035 12062 0 12062 6491 0 12522 12062 0 9035 12522 0 9035 6489 0 6489 12522 0 6490 6554 0;\n\tsetAttr \".ed[21746:21911]\" 6554 6489 0 6554 12522 0 6493 9062 0 6558 6493 0 6487 12000 0\n\t\t 12000 6494 0 6494 6487 0 12000 11825 0 11825 6494 0 11825 6496 0 6496 6494 0 6496 6520 0\n\t\t 6520 6494 0 6520 12307 0 12307 6494 0 6496 6498 0 6498 6520 0 11825 6498 0 6498 11763 0\n\t\t 11763 6520 0 11759 11763 0 6498 11759 0 6498 11761 0 11761 11759 0 11825 11744 0\n\t\t 11744 6498 0 11744 11761 0 11744 11746 0 11746 11761 0 6502 6495 0 6495 6504 0 6504 6502 0\n\t\t 6495 6493 0 6493 6504 0 6504 6505 0 6505 6502 0 11745 6502 0 6505 11745 0 6493 6559 0\n\t\t 6559 6504 0 6505 6560 0 6560 11745 0 9060 6494 0 12307 9060 0 12307 6526 0 6526 9060 0\n\t\t 9060 6487 0 6558 6559 0 6506 6507 0 6507 9190 0 9190 6506 0 9190 9189 0 9189 6506 0\n\t\t 9189 11760 0 11760 6506 0 11760 6501 0 6501 6506 0 6506 11700 0 11700 6507 0 6501 11700 0\n\t\t 11700 11701 0 11701 6507 0 6501 6503 0 6503 11700 0 6509 6508 0 6508 6561 0 6561 6509 0\n\t\t 6508 11747 0 11747 6561 0 6561 6562 0 6562 6509 0 11747 6560 0 6560 6561 0 12262 6457 0\n\t\t 6457 11910 0 11910 12262 0 11910 6474 0 6474 12262 0 12262 6475 0 6475 6457 0 6475 6458 0\n\t\t 6458 6457 0 6475 6479 0 6479 6458 0 6479 9730 0 9730 6458 0 6479 12465 0 12465 9730 0\n\t\t 12465 12566 0 12566 9730 0 12465 6478 0 6478 12566 0 6478 12565 0 12565 12566 0 11910 6514 0\n\t\t 6514 6474 0 6514 6467 0 6467 6474 0 6514 6515 0 6515 6467 0 6515 6469 0 6469 6467 0\n\t\t 6515 6419 0 6419 6469 0 6419 6470 0 6470 6469 0 6419 6516 0 6516 6470 0 6516 12209 0\n\t\t 12209 6470 0 6516 6518 0 6518 12209 0 6518 6471 0 6471 12209 0 9012 12328 0 12328 6499 0\n\t\t 6499 9012 0 6499 6521 0 6521 9012 0 9012 6473 0 6473 12328 0 6473 6497 0 6497 12328 0\n\t\t 6499 6500 0 6500 6521 0 6500 12273 0 12273 6521 0 6500 6522 0 6522 12273 0 6522 6477 0\n\t\t 6477 12273 0 6522 6523 0 6523 6477 0 6523 12369 0 12369 6477 0 6473 12118 0 12118 6497 0\n\t\t 12118 9300 0 9300 6497 0 12118 6468 0 6468 9300 0 6468 8885 0 8885 9300 0 6468 8922 0\n\t\t 8922 8885 0 8922 8886 0 8886 8885 0 6484 8886 0 8922 6484 0 8922 6530 0 6530 6484 0\n\t\t 6530 6472 0 6472 6484 0 6472 12266 0 12266 6484 0 12184 12199 0 12199 12353 0 12353 12184 0\n\t\t 12353 9732 0 9732 12184 0 12184 12210 0 12210 12199 0 12210 6269 0 6269 12199 0 12210 8929 0\n\t\t 8929 6269 0;\n\tsetAttr \".ed[21912:22077]\" 8929 8904 0 8904 6269 0 8929 8930 0 8930 8904 0 8930 6536 0\n\t\t 6536 8904 0 12727 12745 0 12745 11575 0 11575 12727 0 12716 6218 0 6218 9250 0 9250 12716 0\n\t\t 9250 6582 0 6582 12716 0 12716 6583 0 6583 6218 0 6583 6220 0 6220 6218 0 11186 6216 0\n\t\t 6216 6539 0 6539 11186 0 6539 11170 0 11170 11186 0 6539 6540 0 6540 11170 0 6540 11160 0\n\t\t 11160 11170 0 6540 6213 0 6213 11160 0 6213 11161 0 11161 11160 0 6213 6546 0 6546 11161 0\n\t\t 6546 6585 0 6585 11161 0 6583 9876 0 9876 6220 0 9876 9874 0 9874 6220 0 6580 6221 0\n\t\t 6221 6541 0 6541 6580 0 6541 9877 0 9877 6580 0 6580 9928 0 9928 6221 0 9928 12347 0\n\t\t 12347 6221 0 6543 9927 0 9927 9926 0 9926 6543 0 9926 6212 0 6212 6543 0 9926 6585 0\n\t\t 6585 6212 0 6546 6212 0 6285 6301 0 6300 6351 0 6351 6310 0 6351 12609 0 12895 6351 0\n\t\t 12635 12643 0 12643 6549 0 6549 12635 0 6549 6396 0 6396 12635 0 6549 12602 0 12602 6396 0\n\t\t 6533 6513 0 6513 6551 0 6551 6533 0 6551 6535 0 6535 6533 0 6533 12211 0 12211 6513 0\n\t\t 12211 6459 0 6459 6513 0 9733 6459 0 12211 9733 0 6552 6553 0 6553 6460 0 6460 6552 0\n\t\t 12521 6556 0 6556 6555 0 6555 12521 0 6555 6492 0 6492 12521 0 6555 6491 0 6491 6492 0\n\t\t 6491 6557 0 6557 6492 0 6555 6558 0 6555 6559 0 6555 6504 0 6556 6504 0 6556 6505 0\n\t\t 6556 6560 0 6556 6561 0 12521 6561 0 12521 6562 0 6577 10851 0 10851 10850 0 10850 6577 0\n\t\t 10850 6565 0 6565 6577 0 10850 6566 0 6566 6565 0 6566 6381 0 6567 10857 0 10857 6563 0\n\t\t 6563 6567 0 6568 10857 0 6567 6568 0 6566 10842 0 10842 6381 0 6567 6569 0 6569 6568 0\n\t\t 6563 6570 0 6570 6567 0 10842 6571 0 10842 6371 0 10842 10796 0 10796 6371 0 6573 6570 0\n\t\t 6563 6573 0 6563 6564 0 6564 6573 0 10796 10797 0 10797 6371 0 6574 6572 0 6572 6162 0\n\t\t 6572 6575 0 6575 6162 0 6572 6568 0 6568 6575 0 6569 6575 0 6579 6371 0 6382 6576 0\n\t\t 6576 6565 0 6576 12550 0 12550 6565 0 6390 6576 0 6167 6373 0 6373 6578 0 6370 6578 0\n\t\t 6371 6578 0 6167 6375 0 6168 6375 0 6168 6377 0 6544 6545 0 6545 12833 0 12833 6544 0\n\t\t 12833 6581 0 6581 6544 0 12833 11187 0 11187 6581 0 12833 12723 0 12723 11187 0 12833 6542 0\n\t\t 6542 12723 0 12723 6538 0 6538 11187 0 11187 6584 0 6584 6581 0 11503 6544 0 6581 11503 0;\n\tsetAttr \".ed[22078:22243]\" 6581 6586 0 6586 11503 0 10379 10378 0 10378 10448 0\n\t\t 10448 10379 0 13017 10379 0 10448 13017 0 6596 13017 0 10448 6596 0 10448 11460 0\n\t\t 11460 6596 0 11460 11461 0 11461 6596 0 6605 6596 0 11461 6605 0 11562 13017 0 6596 11562 0\n\t\t 6604 13076 0 13076 11669 0 6590 6397 0 6397 6395 0 6395 6590 0 6590 10501 0 10501 6397 0\n\t\t 10501 6591 0 6591 6397 0 10501 6598 0 6598 6591 0 6598 6537 0 6537 6591 0 6598 6592 0\n\t\t 6592 6537 0 6592 6399 0 6399 6537 0 6592 10397 0 10397 6399 0 10397 11577 0 11577 6399 0\n\t\t 6400 10396 0 10396 10409 0 10409 6400 0 10409 11561 0 11561 6400 0 10409 6594 0 6594 11561 0\n\t\t 6593 11562 0 6596 6604 0 10304 13075 0 13075 10303 0 10303 10304 0 10304 11462 0\n\t\t 11462 13075 0 11462 10502 0 10502 13075 0 6597 6589 0 6589 6588 0 6588 6597 0 6588 10503 0\n\t\t 10503 6597 0 6588 6599 0 6599 10503 0 6599 13037 0 13037 10503 0 6599 6600 0 6600 13037 0\n\t\t 6600 10395 0 10395 13037 0 10408 6601 0 6601 10377 0 10377 10408 0 10377 6603 0 6603 10408 0\n\t\t 6603 6587 0 6587 10408 0 11562 6602 0 6602 13017 0 6605 6604 0 6606 6256 0 6256 6252 0\n\t\t 6607 6366 0 6608 6607 0 6607 6609 0 6607 6610 0 6610 6609 0 6610 10902 0 10902 6609 0\n\t\t 10902 10920 0 6368 6612 0 6612 6611 0 6611 6368 0 6611 6613 0 6613 6368 0 6613 6214 0\n\t\t 6214 6368 0 6214 6614 0 6614 6368 0 6214 6215 0 6215 6614 0 6215 6615 0 6215 6616 0\n\t\t 6215 6217 0 6217 6616 0 6617 6616 0 6217 6617 0 6217 6219 0 6219 6617 0 6219 12417 0\n\t\t 12417 6617 0 12417 6619 0 12417 12334 0 12417 6272 0 6272 12334 0 6621 6623 0 6623 6622 0\n\t\t 6622 6621 0 6622 6624 0 6624 6621 0 6625 6624 0 6622 6625 0 6622 6626 0 6626 6625 0\n\t\t 6627 6625 0 6626 6627 0 6626 6628 0 6628 6627 0 6627 6629 0 6629 6625 0 6629 6630 0\n\t\t 6630 6625 0 6630 6624 0 6630 6631 0 6631 6624 0 6631 6621 0 6631 6632 0 6632 6621 0\n\t\t 6631 6633 0 6633 6632 0 6633 6634 0 6634 6632 0 6635 6633 0 6631 6635 0 6630 6635 0\n\t\t 6636 6635 0 6630 6636 0 6629 6636 0 6636 6637 0 6637 6635 0 6637 6638 0 6638 6635 0\n\t\t 6638 6633 0 6638 6639 0 6639 6633 0 6639 6634 0 6639 6640 0 6640 6634 0 6639 6641 0\n\t\t 6641 6640 0 6641 6642 0 6642 6640 0 6643 6641 0 6639 6643 0 6638 6643 0 6644 6643 0\n\t\t 6638 6644 0 6637 6644 0 6644 6645 0;\n\tsetAttr \".ed[22244:22409]\" 6645 6643 0 6645 6646 0 6646 6643 0 6646 6641 0 6646 6647 0\n\t\t 6647 6641 0 6647 6642 0 6647 6648 0 6648 6642 0 6647 6649 0 6649 6648 0 6649 6650 0\n\t\t 6650 6648 0 6651 6649 0 6647 6651 0 6646 6651 0 6652 6651 0 6646 6652 0 6645 6652 0\n\t\t 6652 6653 0 6653 6651 0 6653 6906 0 6906 6651 0 6906 6649 0 6906 6654 0 6654 6649 0\n\t\t 6654 6650 0 6654 7083 0 7083 6650 0 6655 6645 0 6644 6655 0 6644 6656 0 6656 6655 0\n\t\t 6637 6656 0 6637 6657 0 6657 6656 0 6636 6657 0 6636 6658 0 6658 6657 0 6629 6658 0\n\t\t 6629 6659 0 6659 6658 0 6627 6659 0 6627 6660 0 6660 6659 0 6628 6660 0 6628 6661 0\n\t\t 6661 6660 0 6662 6660 0 6661 6662 0 6661 6663 0 6663 6662 0 6664 6662 0 6663 6664 0\n\t\t 6663 6665 0 6665 6664 0 6666 6664 0 6665 6666 0 6665 6667 0 6667 6666 0 6666 6668 0\n\t\t 6668 6664 0 6668 6669 0 6669 6664 0 6669 6662 0 6669 6670 0 6670 6662 0 6670 6660 0\n\t\t 6670 6659 0 6671 6658 0 6659 6671 0 6670 6671 0 6672 6671 0 6670 6672 0 6669 6672 0\n\t\t 6673 6672 0 6669 6673 0 6668 6673 0 6673 6674 0 6674 6672 0 6674 6675 0 6675 6672 0\n\t\t 6675 6671 0 6675 6676 0 6676 6671 0 6676 6658 0 6676 6657 0 6676 6677 0 6677 6657 0\n\t\t 6677 6656 0 6678 6677 0 6676 6678 0 6675 6678 0 6679 6678 0 6675 6679 0 6674 6679 0\n\t\t 6679 6680 0 6680 6678 0 6680 6681 0 6681 6678 0 6681 6677 0 6681 6682 0 6682 6677 0\n\t\t 6682 6656 0 6682 6655 0 6682 6683 0 6683 6655 0 6683 6684 0 6684 6655 0 6684 6645 0\n\t\t 6684 6652 0 6685 6683 0 6682 6685 0 6681 6685 0 6686 6685 0 6681 6686 0 6680 6686 0\n\t\t 6686 6687 0 6687 6685 0 6687 6688 0 6688 6685 0 6688 6683 0 6688 6689 0 6689 6683 0\n\t\t 6689 6684 0 6689 6690 0 6690 6684 0 6690 6652 0 6690 6653 0 6690 6691 0 6691 6653 0\n\t\t 6691 6903 0 6903 6653 0 6692 6691 0 6690 6692 0 6689 6692 0 6688 6693 0 6693 6689 0\n\t\t 6693 6692 0 6687 6898 0 6898 6688 0 6898 6693 0 6694 6687 0 6686 6694 0 6686 6695 0\n\t\t 6695 6694 0 6680 6695 0 6680 6696 0 6696 6695 0 6679 6696 0 6679 6697 0 6697 6696 0\n\t\t 6674 6697 0 6674 6698 0 6698 6697 0 6673 6698 0 6673 6699 0 6699 6698 0 6668 6699 0\n\t\t 6668 6700 0 6700 6699 0 6666 6700 0 6666 6701 0 6701 6700 0 6667 6701 0 6667 6702 0;\n\tsetAttr \".ed[22410:22575]\" 6702 6701 0 6703 6701 0 6702 6703 0 6702 6704 0 6704 6703 0\n\t\t 6705 6703 0 6704 6705 0 6704 6706 0 6706 6705 0 6707 6705 0 6706 6707 0 6706 6708 0\n\t\t 6708 6707 0 6707 6709 0 6709 6705 0 6709 6710 0 6710 6705 0 6710 6703 0 6710 6711 0\n\t\t 6711 6703 0 6711 6701 0 6711 6700 0 6712 6699 0 6700 6712 0 6711 6712 0 6713 6712 0\n\t\t 6711 6713 0 6710 6713 0 6714 6713 0 6710 6714 0 6709 6714 0 6714 6715 0 6715 6713 0\n\t\t 6715 6716 0 6716 6713 0 6716 6712 0 6716 6717 0 6717 6712 0 6717 6699 0 6717 6698 0\n\t\t 6717 6718 0 6718 6698 0 6718 6697 0 6719 6718 0 6717 6719 0 6716 6719 0 6720 6719 0\n\t\t 6716 6720 0 6715 6720 0 6720 6721 0 6721 6719 0 6721 6722 0 6722 6719 0 6722 6718 0\n\t\t 6722 6723 0 6723 6718 0 6723 6697 0 6723 6696 0 6723 6724 0 6724 6696 0 6724 6695 0\n\t\t 6725 6724 0 6723 6725 0 6722 6725 0 6726 6725 0 6722 6726 0 6721 6726 0 6726 6727 0\n\t\t 6727 6725 0 6727 6728 0 6728 6725 0 6728 6724 0 6728 6729 0 6729 6724 0 6729 6695 0\n\t\t 6729 6694 0 6729 6731 0 6731 6694 0 6731 6896 0 6896 6694 0 6728 6730 0 6730 6729 0\n\t\t 6730 6731 0 6727 6732 0 6732 6728 0 6732 6730 0 6733 6727 0 6726 6733 0 6726 6734 0\n\t\t 6734 6733 0 6721 6734 0 6721 6735 0 6735 6734 0 6720 6735 0 6720 6736 0 6736 6735 0\n\t\t 6715 6736 0 6715 6737 0 6737 6736 0 6714 6737 0 6714 6738 0 6738 6737 0 6709 6738 0\n\t\t 6709 6739 0 6739 6738 0 6707 6739 0 6707 6740 0 6740 6739 0 6708 6740 0 6708 6741 0\n\t\t 6741 6740 0 6742 6740 0 6741 6742 0 6741 6743 0 6743 6742 0 6744 6742 0 6743 6744 0\n\t\t 6743 6745 0 6745 6744 0 6746 6744 0 6745 6746 0 6745 6747 0 6747 6746 0 6746 6748 0\n\t\t 6748 6744 0 6748 6749 0 6749 6744 0 6749 6742 0 6749 6750 0 6750 6742 0 6750 6740 0\n\t\t 6750 6739 0 6751 6738 0 6739 6751 0 6750 6751 0 6752 6751 0 6750 6752 0 6749 6752 0\n\t\t 6753 6752 0 6749 6753 0 6748 6753 0 6753 6754 0 6754 6752 0 6754 6755 0 6755 6752 0\n\t\t 6755 6751 0 6755 6756 0 6756 6751 0 6756 6738 0 6756 6737 0 6756 6757 0 6757 6737 0\n\t\t 6757 6736 0 6758 6757 0 6756 6758 0 6755 6758 0 6759 6758 0 6755 6759 0 6754 6759 0\n\t\t 6759 6760 0 6760 6758 0 6760 6761 0 6761 6758 0 6761 6757 0 6761 6762 0 6762 6757 0;\n\tsetAttr \".ed[22576:22741]\" 6762 6736 0 6762 6735 0 6762 6763 0 6763 6735 0 6763 6734 0\n\t\t 6764 6763 0 6762 6764 0 6761 6764 0 6765 6764 0 6761 6765 0 6760 6765 0 6765 6766 0\n\t\t 6766 6764 0 6766 6767 0 6767 6764 0 6767 6763 0 6767 6768 0 6768 6763 0 6768 6734 0\n\t\t 6768 6733 0 6768 6890 0 6890 6733 0 6890 7030 0 7030 6733 0 6767 6769 0 6769 6768 0\n\t\t 6769 6890 0 6766 6887 0 6887 6767 0 6887 6769 0 6770 6766 0 6765 6770 0 6765 6771 0\n\t\t 6771 6770 0 6760 6771 0 6760 6772 0 6772 6771 0 6759 6772 0 6759 6773 0 6773 6772 0\n\t\t 6754 6773 0 6754 6774 0 6774 6773 0 6753 6774 0 6753 6775 0 6775 6774 0 6748 6775 0\n\t\t 6748 6776 0 6776 6775 0 6746 6776 0 6746 6777 0 6777 6776 0 6747 6777 0 6747 6778 0\n\t\t 6778 6777 0 6779 6777 0 6778 6779 0 6778 6780 0 6780 6779 0 6781 6779 0 6780 6781 0\n\t\t 6780 6782 0 6782 6781 0 6783 6781 0 6782 6783 0 6782 6784 0 6784 6783 0 6783 6785 0\n\t\t 6785 6781 0 6785 6786 0 6786 6781 0 6786 6779 0 6786 6787 0 6787 6779 0 6787 6777 0\n\t\t 6787 6776 0 6788 6775 0 6776 6788 0 6787 6788 0 6789 6788 0 6787 6789 0 6786 6789 0\n\t\t 6790 6789 0 6786 6790 0 6785 6790 0 6790 6791 0 6791 6789 0 6791 6792 0 6792 6789 0\n\t\t 6792 6788 0 6792 6793 0 6793 6788 0 6793 6775 0 6793 6774 0 6793 6794 0 6794 6774 0\n\t\t 6794 6773 0 6795 6794 0 6793 6795 0 6792 6795 0 6796 6795 0 6792 6796 0 6791 6796 0\n\t\t 6796 6797 0 6797 6795 0 6797 6798 0 6798 6795 0 6798 6794 0 6798 6799 0 6799 6794 0\n\t\t 6799 6773 0 6799 6772 0 6799 6800 0 6800 6772 0 6800 6771 0 6801 6800 0 6799 6801 0\n\t\t 6798 6801 0 6802 6801 0 6798 6802 0 6797 6802 0 6802 6803 0 6803 6801 0 6803 6804 0\n\t\t 6804 6801 0 6804 6800 0 6804 6805 0 6805 6800 0 6805 6771 0 6805 6770 0 6805 6806 0\n\t\t 6806 6770 0 6806 6885 0 6885 6770 0 6804 6807 0 6807 6805 0 6807 6806 0 6803 6881 0\n\t\t 6881 6804 0 6881 6807 0 6808 6803 0 6802 6808 0 6802 6809 0 6809 6808 0 6797 6809 0\n\t\t 6797 6810 0 6810 6809 0 6796 6810 0 6796 6811 0 6811 6810 0 6791 6811 0 6791 6812 0\n\t\t 6812 6811 0 6790 6812 0 6790 6813 0 6813 6812 0 6785 6813 0 6785 6814 0 6814 6813 0\n\t\t 6783 6814 0 6783 6815 0 6815 6814 0 6784 6815 0 6784 6816 0 6816 6815 0 6817 6815 0;\n\tsetAttr \".ed[22742:22907]\" 6816 6817 0 6816 6818 0 6818 6817 0 6819 6817 0 6818 6819 0\n\t\t 6818 6820 0 6820 6819 0 6821 6819 0 6820 6821 0 6820 6822 0 6822 6821 0 6821 6823 0\n\t\t 6823 6819 0 6823 6824 0 6824 6819 0 6824 6817 0 6824 6825 0 6825 6817 0 6825 6815 0\n\t\t 6825 6814 0 6826 6813 0 6814 6826 0 6825 6826 0 6827 6826 0 6825 6827 0 6824 6827 0\n\t\t 6823 6828 0 6828 6824 0 6828 6827 0 6828 6829 0 6829 6827 0 6829 6830 0 6830 6827 0\n\t\t 6830 6826 0 6830 6831 0 6831 6826 0 6831 6813 0 6831 6812 0 6831 6832 0 6832 6812 0\n\t\t 6832 6811 0 6833 6832 0 6831 6833 0 6830 6833 0 6829 6834 0 6834 6830 0 6834 6833 0\n\t\t 6834 6835 0 6835 6833 0 6835 6836 0 6836 6833 0 6836 6832 0 6836 6837 0 6837 6832 0\n\t\t 6837 6811 0 6837 6810 0 6837 6838 0 6838 6810 0 6838 6809 0 6839 6838 0 6837 6839 0\n\t\t 6836 6839 0 6835 6840 0 6840 6836 0 6840 6839 0 6840 6841 0 6841 6839 0 6841 6842 0\n\t\t 6842 6839 0 6842 6838 0 6842 6843 0 6843 6838 0 6843 6809 0 6843 6808 0 6843 6844 0\n\t\t 6844 6808 0 6844 6879 0 6879 6808 0 6842 6876 0 6876 6843 0 6876 6844 0 6845 6840 0\n\t\t 6835 6845 0 6845 6841 0 6835 6846 0 6846 6845 0 6847 6846 0 6835 6847 0 6848 6846 0\n\t\t 6847 6848 0 6847 6849 0 6849 6848 0 6847 6850 0 6850 6849 0 6829 6850 0 6847 6829 0\n\t\t 6851 6850 0 6829 6851 0 6852 6850 0 6851 6852 0 6852 6849 0 6851 6853 0 6853 6852 0\n\t\t 6851 6854 0 6854 6853 0 6823 6854 0 6851 6823 0 6855 6854 0 6823 6855 0 6856 6854 0\n\t\t 6855 6856 0 6856 6853 0 6855 6857 0 6857 6856 0 6855 6858 0 6858 6857 0 6822 6858 0\n\t\t 6855 6822 0 6855 6821 0 6858 6859 0 6859 6857 0 6851 6828 0 6858 6860 0 6860 6859 0\n\t\t 6860 6861 0 6861 6859 0 6860 6862 0 6862 6861 0 6863 6862 0 6860 6863 0 6864 6862 0\n\t\t 6863 6864 0 6865 6862 0 6864 6865 0 6865 6861 0 6864 6866 0 6866 6865 0 6864 6867 0\n\t\t 6867 6866 0 6868 6867 0 6864 6868 0 6869 6867 0 6868 6869 0 6870 6867 0 6869 6870 0\n\t\t 6870 6866 0 6869 6871 0 6871 6870 0 6869 6872 0 6872 6871 0 6873 6872 0 6869 6873 0\n\t\t 7035 6872 0 6873 7035 0 6874 6872 0 7035 6874 0 6874 6871 0 7035 7034 0 7034 6874 0\n\t\t 6873 6875 0 6875 7035 0 6876 6875 0 6873 6876 0 6873 6877 0 6877 6876 0 6877 6844 0;\n\tsetAttr \".ed[22908:23073]\" 6877 6878 0 6878 6844 0 6878 6879 0 6878 6880 0 6880 6879 0\n\t\t 6881 6879 0 6880 6881 0 6880 6882 0 6882 6881 0 6882 6807 0 6882 6883 0 6883 6807 0\n\t\t 6883 6806 0 6883 6884 0 6884 6806 0 6884 6885 0 6884 6886 0 6886 6885 0 6887 6885 0\n\t\t 6886 6887 0 6886 6888 0 6888 6887 0 6888 6769 0 6888 6889 0 6889 6769 0 6889 6890 0\n\t\t 6889 6891 0 6891 6890 0 6891 7030 0 6891 6892 0 6892 7030 0 6732 7030 0 6892 6732 0\n\t\t 6892 6893 0 6893 6732 0 6893 6730 0 6893 6894 0 6894 6730 0 6894 6731 0 6894 6895 0\n\t\t 6895 6731 0 6895 6896 0 6895 6897 0 6897 6896 0 6898 6896 0 6897 6898 0 6897 6899 0\n\t\t 6899 6898 0 6899 6693 0 6899 6900 0 6900 6693 0 6900 6692 0 6900 6901 0 6901 6692 0\n\t\t 6901 6691 0 6901 6902 0 6902 6691 0 6902 6903 0 6902 6904 0 6904 6903 0 6905 6903 0\n\t\t 6904 6905 0 6905 6906 0 6906 6903 0 6905 6654 0 6905 6907 0 6907 6654 0 6904 6908 0\n\t\t 6908 6905 0 6908 6907 0 6908 6909 0 6909 6907 0 6910 6907 0 6909 6910 0 6909 6911 0\n\t\t 6911 6910 0 6909 6912 0 6912 6911 0 6912 6913 0 6913 6911 0 6914 6912 0 6909 6914 0\n\t\t 6908 6914 0 6915 6914 0 6908 6915 0 6904 6915 0 6915 6916 0 6916 6914 0 6916 6917 0\n\t\t 6917 6914 0 6917 6912 0 6917 6918 0 6918 6912 0 6918 6913 0 6918 6919 0 6919 6913 0\n\t\t 6918 6920 0 6920 6919 0 6920 6921 0 6921 6919 0 6922 6920 0 6918 6922 0 6917 6922 0\n\t\t 6923 6922 0 6917 6923 0 6916 6923 0 6923 6924 0 6924 6922 0 6924 6925 0 6925 6922 0\n\t\t 6925 6920 0 6925 6926 0 6926 6920 0 6926 6921 0 6926 6927 0 6927 6921 0 6926 6928 0\n\t\t 6928 6927 0 6928 6929 0 6929 6927 0 6930 6928 0 6926 6930 0 6925 6930 0 6931 6930 0\n\t\t 6925 6931 0 6924 6931 0 6931 6628 0 6628 6930 0 6626 6930 0 6626 6928 0 6622 6928 0\n\t\t 6622 6929 0 6623 6929 0 6932 6924 0 6923 6932 0 6923 6933 0 6933 6932 0 6916 6933 0\n\t\t 6916 6934 0 6934 6933 0 6915 6934 0 6915 6935 0 6935 6934 0 6904 6935 0 6902 6935 0\n\t\t 6936 6935 0 6902 6936 0 6901 6936 0 6937 6936 0 6901 6937 0 6900 6937 0 6938 6937 0\n\t\t 6900 6938 0 6899 6938 0 6938 6939 0 6939 6937 0 6939 6940 0 6940 6937 0 6940 6936 0\n\t\t 6940 6941 0 6941 6936 0 6941 6935 0 6941 6934 0 6942 6933 0 6934 6942 0 6941 6942 0;\n\tsetAttr \".ed[23074:23239]\" 6943 6942 0 6941 6943 0 6940 6943 0 6944 6943 0 6940 6944 0\n\t\t 6939 6944 0 6944 6945 0 6945 6943 0 6945 6946 0 6946 6943 0 6946 6942 0 6946 6947 0\n\t\t 6947 6942 0 6947 6933 0 6947 6932 0 6947 6948 0 6948 6932 0 6948 6949 0 6949 6932 0\n\t\t 6949 6924 0 6949 6931 0 6950 6948 0 6947 6950 0 6946 6950 0 6951 6950 0 6946 6951 0\n\t\t 6945 6951 0 6951 6667 0 6667 6950 0 6665 6950 0 6665 6948 0 6663 6948 0 6663 6949 0\n\t\t 6661 6949 0 6661 6931 0 6952 6945 0 6944 6952 0 6944 6953 0 6953 6952 0 6939 6953 0\n\t\t 6939 6954 0 6954 6953 0 6938 6954 0 6938 6955 0 6955 6954 0 6899 6955 0 6897 6955 0\n\t\t 6956 6955 0 6897 6956 0 6895 6956 0 6957 6956 0 6895 6957 0 6894 6957 0 6958 6957 0\n\t\t 6894 6958 0 6893 6958 0 6958 6959 0 6959 6957 0 6959 6960 0 6960 6957 0 6960 6956 0\n\t\t 6960 6961 0 6961 6956 0 6961 6955 0 6961 6954 0 6962 6953 0 6954 6962 0 6961 6962 0\n\t\t 6963 6962 0 6961 6963 0 6960 6963 0 6964 6963 0 6960 6964 0 6959 6964 0 6964 6965 0\n\t\t 6965 6963 0 6965 6966 0 6966 6963 0 6966 6962 0 6966 6967 0 6967 6962 0 6967 6953 0\n\t\t 6967 6952 0 6967 6968 0 6968 6952 0 6968 6969 0 6969 6952 0 6969 6945 0 6969 6951 0\n\t\t 6970 6968 0 6967 6970 0 6966 6970 0 6971 6970 0 6966 6971 0 6965 6971 0 6971 6708 0\n\t\t 6708 6970 0 6706 6970 0 6706 6968 0 6704 6968 0 6704 6969 0 6702 6969 0 6702 6951 0\n\t\t 6972 6965 0 6964 6972 0 6964 6973 0 6973 6972 0 6959 6973 0 6959 6974 0 6974 6973 0\n\t\t 6958 6974 0 6958 6975 0 6975 6974 0 6893 6975 0 6892 6975 0 6976 6975 0 6892 6976 0\n\t\t 6891 6976 0 6977 6976 0 6891 6977 0 6889 6977 0 6978 6977 0 6889 6978 0 6888 6978 0\n\t\t 6978 6979 0 6979 6977 0 6979 6980 0 6980 6977 0 6980 6976 0 6980 6981 0 6981 6976 0\n\t\t 6981 6975 0 6981 6974 0 6982 6973 0 6974 6982 0 6981 6982 0 6983 6982 0 6981 6983 0\n\t\t 6980 6983 0 6984 6983 0 6980 6984 0 6979 6984 0 6984 6985 0 6985 6983 0 6985 6986 0\n\t\t 6986 6983 0 6986 6982 0 6986 6987 0 6987 6982 0 6987 6973 0 6987 6972 0 6987 6988 0\n\t\t 6988 6972 0 6988 6989 0 6989 6972 0 6989 6965 0 6989 6971 0 6990 6988 0 6987 6990 0\n\t\t 6986 6990 0 6991 6990 0 6986 6991 0 6985 6991 0 6991 6747 0 6747 6990 0 6745 6990 0;\n\tsetAttr \".ed[23240:23405]\" 6745 6988 0 6743 6988 0 6743 6989 0 6741 6989 0 6741 6971 0\n\t\t 6992 6985 0 6984 6992 0 6984 6993 0 6993 6992 0 6979 6993 0 6979 6994 0 6994 6993 0\n\t\t 6978 6994 0 6978 6995 0 6995 6994 0 6888 6995 0 6886 6995 0 6996 6995 0 6886 6996 0\n\t\t 6884 6996 0 6997 6996 0 6884 6997 0 6883 6997 0 6998 6997 0 6883 6998 0 6882 6998 0\n\t\t 6998 6999 0 6999 6997 0 6999 7000 0 7000 6997 0 7000 6996 0 7000 7001 0 7001 6996 0\n\t\t 7001 6995 0 7001 6994 0 7002 6993 0 6994 7002 0 7001 7002 0 7003 7002 0 7001 7003 0\n\t\t 7000 7003 0 7004 7003 0 7000 7004 0 6999 7004 0 7004 7005 0 7005 7003 0 7005 7006 0\n\t\t 7006 7003 0 7006 7002 0 7006 7007 0 7007 7002 0 7007 6993 0 7007 6992 0 7007 7008 0\n\t\t 7008 6992 0 7008 7009 0 7009 6992 0 7009 6985 0 7009 6991 0 7010 7008 0 7007 7010 0\n\t\t 7006 7010 0 7011 7010 0 7006 7011 0 7005 7011 0 7011 6784 0 6784 7010 0 6782 7010 0\n\t\t 6782 7008 0 6780 7008 0 6780 7009 0 6778 7009 0 6778 6991 0 7012 7005 0 7004 7012 0\n\t\t 7004 7013 0 7013 7012 0 6999 7013 0 6999 7014 0 7014 7013 0 6998 7014 0 6998 7015 0\n\t\t 7015 7014 0 6882 7015 0 6880 7015 0 7016 7015 0 6880 7016 0 6878 7016 0 7017 7016 0\n\t\t 6878 7017 0 6877 7017 0 7018 7017 0 6877 7018 0 6873 7018 0 7018 6868 0 6868 7017 0\n\t\t 6868 7019 0 7019 7017 0 7019 7016 0 7019 7020 0 7020 7016 0 7020 7015 0 7020 7014 0\n\t\t 7021 7013 0 7014 7021 0 7020 7021 0 7022 7021 0 7020 7022 0 7019 7022 0 6868 7023 0\n\t\t 7023 7019 0 7023 7022 0 7023 6863 0 6863 7022 0 6863 7024 0 7024 7022 0 7024 7021 0\n\t\t 7024 7025 0 7025 7021 0 7025 7013 0 7025 7012 0 7025 7026 0 7026 7012 0 7026 7027 0\n\t\t 7027 7012 0 7027 7005 0 7027 7011 0 7028 7026 0 7025 7028 0 7024 7028 0 6863 7029 0\n\t\t 7029 7024 0 7029 7028 0 7029 6822 0 6822 7028 0 6820 7028 0 6820 7026 0 6818 7026 0\n\t\t 6818 7027 0 6816 7027 0 6816 7011 0 7023 6864 0 7029 6858 0 7029 6860 0 7018 6869 0\n\t\t 6907 7083 0 6910 7083 0 6687 6896 0 6727 7030 0 6766 6885 0 6803 6879 0 6841 6875 0\n\t\t 6875 6842 0 6847 6834 0 7031 6845 0 6846 7031 0 6848 7031 0 7031 7032 0 7032 6845 0\n\t\t 7032 7033 0 7033 6845 0 7033 6841 0 7033 7035 0 7035 6841 0 7032 7034 0 7034 7033 0;\n\tsetAttr \".ed[23406:23571]\" 7036 7038 0 7038 7037 0 7037 7036 0 7037 7039 0 7039 7036 0\n\t\t 7040 7036 0 7039 7040 0 7039 7041 0 7041 7040 0 7041 6623 0 6623 7040 0 6621 7040 0\n\t\t 6632 7040 0 6632 7042 0 7042 7040 0 7042 7036 0 7042 7043 0 7043 7036 0 7043 7038 0\n\t\t 7043 7044 0 7044 7038 0 7043 7045 0 7045 7044 0 7045 7046 0 7046 7044 0 7047 7045 0\n\t\t 7043 7047 0 7042 7047 0 6634 7042 0 6634 7047 0 6640 7047 0 6640 7048 0 7048 7047 0\n\t\t 7048 7045 0 7048 7049 0 7049 7045 0 7049 7046 0 7049 7050 0 7050 7046 0 7049 7051 0\n\t\t 7051 7050 0 7051 7052 0 7052 7050 0 7053 7051 0 7049 7053 0 7048 7053 0 6642 7048 0\n\t\t 6642 7053 0 6648 7053 0 6648 7054 0 7054 7053 0 7054 7051 0 7054 7055 0 7055 7051 0\n\t\t 7055 7052 0 7055 7056 0 7056 7052 0 7055 7057 0 7057 7056 0 7057 7058 0 7058 7056 0\n\t\t 7059 7057 0 7055 7059 0 7054 7059 0 6650 7054 0 6650 7059 0 7083 7059 0 7083 7066 0\n\t\t 7066 7059 0 7066 7057 0 7066 7060 0 7060 7057 0 7060 7058 0 7060 7061 0 7061 7058 0\n\t\t 7062 7063 0 7063 7061 0 7061 7062 0 7060 7062 0 7062 7064 0 7064 7063 0 7065 7064 0\n\t\t 7062 7065 0 7062 7084 0 7084 7065 0 7060 7084 0 7066 7084 0 6911 7065 0 7084 6911 0\n\t\t 7084 6910 0 7064 7067 0 7067 7063 0 7064 7068 0 7068 7067 0 7068 7069 0 7069 7067 0\n\t\t 7070 7068 0 7064 7070 0 7065 7070 0 6913 7065 0 6913 7070 0 6919 7070 0 6919 7071 0\n\t\t 7071 7070 0 7071 7068 0 7071 7072 0 7072 7068 0 7072 7069 0 7072 7073 0 7073 7069 0\n\t\t 7072 7074 0 7074 7073 0 7074 7075 0 7075 7073 0 7076 7074 0 7072 7076 0 7071 7076 0\n\t\t 6921 7071 0 6921 7076 0 6927 7076 0 6927 7077 0 7077 7076 0 7077 7074 0 7077 7078 0\n\t\t 7078 7074 0 7078 7075 0 7078 7079 0 7079 7075 0 7078 7080 0 7080 7079 0 7080 7081 0\n\t\t 7081 7079 0 7082 7080 0 7078 7082 0 7077 7082 0 6929 7077 0 6929 7082 0 6623 7082 0\n\t\t 7041 7082 0 7041 7080 0 7039 7080 0 7039 7081 0 7037 7081 0 6910 7066 0 7085 7087 0\n\t\t 7087 7086 0 7086 7085 0 7086 7088 0 7088 7085 0 7089 7088 0 7086 7089 0 7086 7090 0\n\t\t 7090 7089 0 7091 7089 0 7090 7091 0 7090 7092 0 7092 7091 0 7091 7093 0 7093 7089 0\n\t\t 7093 7094 0 7094 7089 0 7094 7088 0 7094 7095 0 7095 7088 0 7095 7085 0 7095 7096 0;\n\tsetAttr \".ed[23572:23737]\" 7096 7085 0 7095 7097 0 7097 7096 0 7097 7098 0 7098 7096 0\n\t\t 7099 7097 0 7095 7099 0 7094 7099 0 7100 7099 0 7094 7100 0 7093 7100 0 7100 7101 0\n\t\t 7101 7099 0 7101 7102 0 7102 7099 0 7102 7097 0 7102 7103 0 7103 7097 0 7103 7098 0\n\t\t 7103 7104 0 7104 7098 0 7103 7105 0 7105 7104 0 7105 7106 0 7106 7104 0 7107 7105 0\n\t\t 7103 7107 0 7102 7107 0 7108 7107 0 7102 7108 0 7101 7108 0 7108 7109 0 7109 7107 0\n\t\t 7109 7110 0 7110 7107 0 7110 7105 0 7110 7111 0 7111 7105 0 7111 7106 0 7111 7112 0\n\t\t 7112 7106 0 7111 7113 0 7113 7112 0 7113 7114 0 7114 7112 0 7115 7113 0 7111 7115 0\n\t\t 7110 7115 0 7116 7115 0 7110 7116 0 7109 7116 0 7116 7117 0 7117 7115 0 7117 7148 0\n\t\t 7148 7115 0 7148 7113 0 7148 7145 0 7145 7113 0 7145 7114 0 7145 7543 0 7543 7114 0\n\t\t 7118 7106 0 7112 7118 0 7118 7119 0 7119 7106 0 7120 7119 0 7118 7120 0 7120 7121 0\n\t\t 7121 7119 0 7121 7122 0 7122 7119 0 7121 7123 0 7123 7122 0 7123 7124 0 7124 7122 0\n\t\t 7123 7125 0 7125 7124 0 7125 7126 0 7126 7124 0 7127 7126 0 7125 7127 0 7125 7128 0\n\t\t 7128 7127 0 7127 7087 0 7087 7126 0 7085 7126 0 7096 7124 0 7126 7096 0 7098 7124 0\n\t\t 7098 7122 0 7104 7119 0 7122 7104 0 7118 7129 0 7129 7120 0 7127 7130 0 7130 7087 0\n\t\t 7130 7131 0 7131 7087 0 7131 7086 0 7131 7132 0 7132 7086 0 7131 7133 0 7133 7132 0\n\t\t 7133 7134 0 7134 7132 0 7133 7135 0 7135 7134 0 7135 7136 0 7136 7134 0 7135 7137 0\n\t\t 7137 7136 0 7137 7138 0 7138 7136 0 7137 7139 0 7139 7138 0 7139 7140 0 7140 7138 0\n\t\t 7139 7141 0 7141 7140 0 7141 7142 0 7142 7140 0 7141 7143 0 7143 7142 0 7143 7144 0\n\t\t 7144 7142 0 7143 7543 0 7543 7144 0 7145 7144 0 7146 7142 0 7144 7146 0 7144 7147 0\n\t\t 7147 7146 0 7145 7147 0 7148 7147 0 7582 7147 0 7148 7582 0 7117 7582 0 7582 7149 0\n\t\t 7149 7147 0 7149 7146 0 7150 7140 0 7142 7150 0 7146 7150 0 7151 7150 0 7146 7151 0\n\t\t 7149 7151 0 7151 7152 0 7152 7150 0 7152 7153 0 7153 7150 0 7153 7140 0 7153 7138 0\n\t\t 7153 7154 0 7154 7138 0 7154 7136 0 7155 7154 0 7153 7155 0 7152 7155 0 7155 7156 0\n\t\t 7156 7154 0 7156 7157 0 7157 7154 0 7157 7136 0 7157 7134 0 7157 7158 0 7158 7134 0;\n\tsetAttr \".ed[23738:23903]\" 7158 7132 0 7159 7158 0 7157 7159 0 7156 7159 0 7159 7092 0\n\t\t 7092 7158 0 7090 7158 0 7090 7132 0 7160 7155 0 7152 7160 0 7152 7161 0 7161 7160 0\n\t\t 7151 7161 0 7151 7162 0 7162 7161 0 7149 7162 0 7149 7163 0 7163 7162 0 7582 7163 0\n\t\t 7582 7581 0 7581 7163 0 7164 7163 0 7581 7164 0 7581 7165 0 7165 7164 0 7166 7164 0\n\t\t 7165 7166 0 7165 7583 0 7583 7166 0 7167 7166 0 7583 7167 0 7583 7584 0 7584 7167 0\n\t\t 7168 7167 0 7584 7168 0 7584 7169 0 7169 7168 0 7170 7168 0 7169 7170 0 7169 7244 0\n\t\t 7244 7170 0 7171 7170 0 7244 7171 0 7244 7172 0 7172 7171 0 7173 7171 0 7172 7173 0\n\t\t 7172 7245 0 7245 7173 0 7168 7174 0 7174 7167 0 7174 7175 0 7175 7167 0 7175 7166 0\n\t\t 7176 7174 0 7168 7176 0 7170 7176 0 7177 7176 0 7170 7177 0 7171 7177 0 7178 7177 0\n\t\t 7171 7178 0 7173 7178 0 7178 7179 0 7179 7177 0 7179 7180 0 7180 7177 0 7180 7176 0\n\t\t 7180 7181 0 7181 7176 0 7181 7174 0 7181 7182 0 7182 7174 0 7182 7175 0 7182 7183 0\n\t\t 7183 7175 0 7182 7184 0 7184 7183 0 7184 7185 0 7185 7183 0 7186 7184 0 7182 7186 0\n\t\t 7181 7186 0 7187 7186 0 7181 7187 0 7180 7187 0 7188 7187 0 7180 7188 0 7179 7188 0\n\t\t 7188 7189 0 7189 7187 0 7189 7190 0 7190 7187 0 7190 7186 0 7190 7191 0 7191 7186 0\n\t\t 7191 7184 0 7191 7192 0 7192 7184 0 7192 7185 0 7192 7193 0 7193 7185 0 7192 7194 0\n\t\t 7194 7193 0 7194 7195 0 7195 7193 0 7196 7194 0 7192 7196 0 7191 7196 0 7197 7196 0\n\t\t 7191 7197 0 7190 7197 0 7198 7197 0 7190 7198 0 7189 7198 0 7198 7199 0 7199 7197 0\n\t\t 7199 7200 0 7200 7197 0 7200 7196 0 7199 7201 0 7201 7200 0 7201 7202 0 7202 7200 0\n\t\t 7203 7200 0 7202 7203 0 7203 7196 0 7203 7194 0 7202 7204 0 7204 7203 0 7205 7203 0\n\t\t 7204 7205 0 7205 7194 0 7205 7195 0 7204 7206 0 7206 7205 0 7207 7205 0 7206 7207 0\n\t\t 7207 7195 0 7206 7208 0 7208 7207 0 7201 7209 0 7209 7202 0 7209 7210 0 7210 7202 0\n\t\t 7210 7204 0 7210 7211 0 7211 7204 0 7211 7206 0 7211 7212 0 7212 7206 0 7212 7208 0\n\t\t 7212 7213 0 7213 7208 0 7212 7214 0 7214 7213 0 7214 7215 0 7215 7213 0 7216 7214 0\n\t\t 7212 7216 0 7211 7216 0 7217 7216 0 7211 7217 0 7210 7217 0 7218 7217 0 7210 7218 0;\n\tsetAttr \".ed[23904:24069]\" 7209 7218 0 7218 7219 0 7219 7217 0 7219 7220 0 7220 7217 0\n\t\t 7220 7216 0 7220 7221 0 7221 7216 0 7221 7214 0 7221 7222 0 7222 7214 0 7222 7215 0\n\t\t 7222 7223 0 7223 7215 0 7222 7224 0 7224 7223 0 7224 7225 0 7225 7223 0 7226 7224 0\n\t\t 7222 7226 0 7221 7226 0 7227 7226 0 7221 7227 0 7220 7227 0 7228 7227 0 7220 7228 0\n\t\t 7219 7228 0 7228 7229 0 7229 7227 0 7229 7230 0 7230 7227 0 7230 7226 0 7230 7231 0\n\t\t 7231 7226 0 7231 7224 0 7231 7232 0 7232 7224 0 7232 7225 0 7232 7233 0 7233 7225 0\n\t\t 7232 7234 0 7234 7233 0 7234 7235 0 7235 7233 0 7236 7234 0 7232 7236 0 7231 7236 0\n\t\t 7237 7236 0 7231 7237 0 7230 7237 0 7238 7237 0 7230 7238 0 7229 7238 0 7238 7239 0\n\t\t 7239 7237 0 7239 7240 0 7240 7237 0 7240 7236 0 7240 7241 0 7241 7236 0 7241 7234 0\n\t\t 7241 7242 0 7242 7234 0 7242 7235 0 7242 7243 0 7243 7235 0 7242 7169 0 7169 7243 0\n\t\t 7584 7243 0 7242 7244 0 7241 7244 0 7240 7172 0 7172 7241 0 7239 7245 0 7245 7240 0\n\t\t 7246 7239 0 7238 7246 0 7238 7247 0 7247 7246 0 7229 7247 0 7229 7248 0 7248 7247 0\n\t\t 7228 7248 0 7228 7249 0 7249 7248 0 7219 7249 0 7219 7250 0 7250 7249 0 7218 7250 0\n\t\t 7218 7251 0 7251 7250 0 7209 7251 0 7209 7252 0 7252 7251 0 7201 7252 0 7201 7253 0\n\t\t 7253 7252 0 7199 7253 0 7199 7254 0 7254 7253 0 7255 7253 0 7254 7255 0 7254 7256 0\n\t\t 7256 7255 0 7257 7255 0 7256 7257 0 7256 7258 0 7258 7257 0 7259 7257 0 7258 7259 0\n\t\t 7258 7260 0 7260 7259 0 7259 7261 0 7261 7257 0 7261 11818 0 11818 7257 0 11818 7255 0\n\t\t 11818 7263 0 7263 7255 0 7263 7253 0 7263 7252 0 7264 7251 0 7252 7264 0 7263 7264 0\n\t\t 7265 7264 0 7263 7265 0 7263 7262 0 7262 7265 0 7266 7265 0 7262 7266 0 7262 7261 0\n\t\t 7261 7266 0 7266 7267 0 7267 7265 0 7267 7268 0 7268 7265 0 7268 7264 0 7268 7269 0\n\t\t 7269 7264 0 7269 7251 0 7269 7250 0 7269 7270 0 7270 7250 0 7270 7249 0 7271 7270 0\n\t\t 7269 7271 0 7268 7271 0 7272 7271 0 7268 7272 0 7267 7272 0 7272 7273 0 7273 7271 0\n\t\t 7273 7274 0 7274 7271 0 7274 7270 0 7274 7275 0 7275 7270 0 7275 7249 0 7275 7248 0\n\t\t 7275 7276 0 7276 7248 0 7276 7247 0 7277 7276 0 7275 7277 0 7274 7277 0 7278 7277 0;\n\tsetAttr \".ed[24070:24235]\" 7274 7278 0 7273 7278 0 7278 7279 0 7279 7277 0 7279 7280 0\n\t\t 7280 7277 0 7280 7276 0 7280 7281 0 7281 7276 0 7281 7247 0 7281 7246 0 7281 7444 0\n\t\t 7444 7246 0 7444 7525 0 7525 7246 0 7280 7442 0 7442 7281 0 7442 7444 0 7279 7527 0\n\t\t 7527 7280 0 7527 7442 0 7282 7279 0 7278 7282 0 7278 7283 0 7283 7282 0 7273 7283 0\n\t\t 7273 7284 0 7284 7283 0 7272 7284 0 7272 7285 0 7285 7284 0 7267 7285 0 7267 7286 0\n\t\t 7286 7285 0 7266 7286 0 7266 7287 0 7287 7286 0 7261 7287 0 7261 7288 0 7288 7287 0\n\t\t 7259 7288 0 7259 7289 0 7289 7288 0 7260 7289 0 7260 7290 0 7290 7289 0 7291 7289 0\n\t\t 7290 7291 0 7290 7292 0 7292 7291 0 7293 7291 0 7292 7293 0 7292 7294 0 7294 7293 0\n\t\t 7295 7293 0 7294 7295 0 7294 7296 0 7296 7295 0 7295 7297 0 7297 7293 0 7297 7298 0\n\t\t 7298 7293 0 7298 7291 0 7298 7299 0 7299 7291 0 7299 7289 0 7299 7288 0 7300 7287 0\n\t\t 7288 7300 0 7299 7300 0 7301 7300 0 7299 7301 0 7298 7301 0 7302 7301 0 7298 7302 0\n\t\t 7297 7302 0 7302 7303 0 7303 7301 0 7303 7304 0 7304 7301 0 7304 7300 0 7304 7305 0\n\t\t 7305 7300 0 7305 7287 0 7305 7286 0 7305 7306 0 7306 7286 0 7306 7285 0 7307 7306 0\n\t\t 7305 7307 0 7304 7307 0 7308 7307 0 7304 7308 0 7303 7308 0 7308 7309 0 7309 7307 0\n\t\t 7309 7310 0 7310 7307 0 7310 7306 0 7310 7311 0 7311 7306 0 7311 7285 0 7311 7284 0\n\t\t 7311 7312 0 7312 7284 0 7312 7283 0 7313 7312 0 7311 7313 0 7310 7313 0 7314 7313 0\n\t\t 7310 7314 0 7309 7314 0 7314 7315 0 7315 7313 0 7315 7316 0 7316 7313 0 7316 7312 0\n\t\t 7316 7317 0 7317 7312 0 7317 7283 0 7317 7282 0 7317 7438 0 7438 7282 0 7438 7526 0\n\t\t 7526 7282 0 7316 7318 0 7318 7317 0 7318 7438 0 7315 7435 0 7435 7316 0 7435 7318 0\n\t\t 7319 7315 0 7314 7319 0 7314 7320 0 7320 7319 0 7309 7320 0 7309 7321 0 7321 7320 0\n\t\t 7308 7321 0 7308 7322 0 7322 7321 0 7303 7322 0 7303 7323 0 7323 7322 0 7302 7323 0\n\t\t 7302 7324 0 7324 7323 0 7297 7324 0 7297 7325 0 7325 7324 0 7295 7325 0 7295 7326 0\n\t\t 7326 7325 0 7296 7326 0 7296 7327 0 7327 7326 0 7328 7326 0 7327 7328 0 7327 7329 0\n\t\t 7329 7328 0 7330 7328 0 7329 7330 0 7329 7331 0 7331 7330 0 7332 7330 0 7331 7332 0;\n\tsetAttr \".ed[24236:24401]\" 7331 7333 0 7333 7332 0 7332 7334 0 7334 7330 0 7334 7335 0\n\t\t 7335 7330 0 7335 7328 0 7335 7336 0 7336 7328 0 7336 7326 0 7336 7325 0 7337 7324 0\n\t\t 7325 7337 0 7336 7337 0 7338 7337 0 7336 7338 0 7335 7338 0 7339 7338 0 7335 7339 0\n\t\t 7334 7339 0 7339 7340 0 7340 7338 0 7340 7341 0 7341 7338 0 7341 7337 0 7341 7342 0\n\t\t 7342 7337 0 7342 7324 0 7342 7323 0 7342 7343 0 7343 7323 0 7343 7322 0 7344 7343 0\n\t\t 7342 7344 0 7341 7344 0 7345 7344 0 7341 7345 0 7340 7345 0 7345 7346 0 7346 7344 0\n\t\t 7346 7347 0 7347 7344 0 7347 7343 0 7347 7348 0 7348 7343 0 7348 7322 0 7348 7321 0\n\t\t 7348 7349 0 7349 7321 0 7349 7320 0 7350 7349 0 7348 7350 0 7347 7350 0 7351 7350 0\n\t\t 7347 7351 0 7346 7351 0 7351 7352 0 7352 7350 0 7352 7353 0 7353 7350 0 7353 7349 0\n\t\t 7353 7354 0 7354 7349 0 7354 7320 0 7354 7319 0 7354 7432 0 7432 7319 0 7432 7528 0\n\t\t 7528 7319 0 7353 7430 0 7430 7354 0 7430 7432 0 7352 7428 0 7428 7353 0 7428 7430 0\n\t\t 7355 7352 0 7351 7355 0 7351 7356 0 7356 7355 0 7346 7356 0 7346 7357 0 7357 7356 0\n\t\t 7345 7357 0 7345 7358 0 7358 7357 0 7340 7358 0 7340 7359 0 7359 7358 0 7339 7359 0\n\t\t 7339 7360 0 7360 7359 0 7334 7360 0 7334 7361 0 7361 7360 0 7332 7361 0 7332 7362 0\n\t\t 7362 7361 0 7333 7362 0 7333 7363 0 7363 7362 0 7364 7362 0 7363 7364 0 7363 7365 0\n\t\t 7365 7364 0 7366 7364 0 7365 7366 0 7365 7367 0 7367 7366 0 7368 7366 0 7367 7368 0\n\t\t 7367 7369 0 7369 7368 0 7368 7370 0 7370 7366 0 7370 7371 0 7371 7366 0 7371 7364 0\n\t\t 7371 7372 0 7372 7364 0 7372 7362 0 7372 7361 0 7373 7360 0 7361 7373 0 7372 7373 0\n\t\t 7374 7373 0 7372 7374 0 7371 7374 0 7370 7375 0 7375 7371 0 7375 7374 0 7375 7376 0\n\t\t 7376 7374 0 7376 7377 0 7377 7374 0 7377 7373 0 7377 7378 0 7378 7373 0 7378 7360 0\n\t\t 7378 7359 0 7378 7379 0 7379 7359 0 7379 7358 0 7380 7379 0 7378 7380 0 7377 7380 0\n\t\t 7376 7381 0 7381 7377 0 7381 7380 0 7381 7382 0 7382 7380 0 7382 7383 0 7383 7380 0\n\t\t 7383 7379 0 7383 7384 0 7384 7379 0 7384 7358 0 7384 7357 0 7384 7385 0 7385 7357 0\n\t\t 7385 7356 0 7386 7385 0 7384 7386 0 7383 7386 0 7382 7387 0 7387 7383 0 7387 7386 0;\n\tsetAttr \".ed[24402:24567]\" 7387 7530 0 7530 7386 0 7530 7388 0 7388 7386 0 7388 7385 0\n\t\t 7388 7389 0 7389 7385 0 7389 7356 0 7389 7355 0 7389 7390 0 7390 7355 0 7390 7529 0\n\t\t 7529 7355 0 7388 7424 0 7424 7389 0 7424 7390 0 7391 7387 0 7382 7391 0 7391 7530 0\n\t\t 7382 7392 0 7392 7391 0 7393 7392 0 7382 7393 0 7394 7392 0 7393 7394 0 7393 7395 0\n\t\t 7395 7394 0 7393 7396 0 7396 7395 0 7376 7396 0 7393 7376 0 7397 7396 0 7376 7397 0\n\t\t 7398 7396 0 7397 7398 0 7398 7395 0 7397 7399 0 7399 7398 0 7397 7400 0 7400 7399 0\n\t\t 7370 7400 0 7397 7370 0 7401 7400 0 7370 7401 0 7402 7400 0 7401 7402 0 7402 7399 0\n\t\t 7401 7403 0 7403 7402 0 7401 7404 0 7404 7403 0 7369 7404 0 7401 7369 0 7401 7368 0\n\t\t 7404 7405 0 7405 7403 0 7397 7375 0 7404 7406 0 7406 7405 0 7406 7407 0 7407 7405 0\n\t\t 7406 7408 0 7408 7407 0 7409 7408 0 7406 7409 0 7410 7408 0 7409 7410 0 7411 7408 0\n\t\t 7410 7411 0 7411 7407 0 7410 7412 0 7412 7411 0 7410 7413 0 7413 7412 0 7414 7413 0\n\t\t 7410 7414 0 7415 7413 0 7414 7415 0 7416 7413 0 7415 7416 0 7416 7412 0 7415 7417 0\n\t\t 7417 7416 0 7415 7418 0 7418 7417 0 7419 7418 0 7415 7419 0 7420 7418 0 7419 7420 0\n\t\t 7421 7418 0 7420 7421 0 7421 7417 0 7420 7422 0 7422 7421 0 7419 7423 0 7423 7420 0\n\t\t 7424 7423 0 7419 7424 0 7419 7425 0 7425 7424 0 7425 7390 0 7425 7426 0 7426 7390 0\n\t\t 7426 7529 0 7426 7427 0 7427 7529 0 7428 7529 0 7427 7428 0 7427 7429 0 7429 7428 0\n\t\t 7429 7430 0 7429 7431 0 7431 7430 0 7431 7432 0 7431 7433 0 7433 7432 0 7433 7528 0\n\t\t 7433 7434 0 7434 7528 0 7435 7528 0 7434 7435 0 7434 7436 0 7436 7435 0 7436 7318 0\n\t\t 7436 7437 0 7437 7318 0 7437 7438 0 7437 7439 0 7439 7438 0 7439 7526 0 7439 7440 0\n\t\t 7440 7526 0 7527 7526 0 7440 7527 0 7440 7441 0 7441 7527 0 7441 7442 0 7441 10940 0\n\t\t 10940 7442 0 10940 7444 0 10940 7445 0 7445 7444 0 7445 7525 0 7445 7446 0 7446 7525 0\n\t\t 7245 7525 0 7446 7245 0 7446 7173 0 7446 7447 0 7447 7173 0 7447 7178 0 7448 7447 0\n\t\t 7446 7448 0 7446 10957 0 10957 7448 0 7449 7448 0 10957 7449 0 10957 7443 0 7443 7449 0\n\t\t 7450 7449 0 7443 7450 0 7443 7441 0 7441 7450 0 7450 7451 0 7451 7449 0 7451 7452 0;\n\tsetAttr \".ed[24568:24733]\" 7452 7449 0 7452 7448 0 7452 7453 0 7453 7448 0 7453 7447 0\n\t\t 7453 7454 0 7454 7447 0 7454 7178 0 7454 7179 0 7454 7455 0 7455 7179 0 7455 7188 0\n\t\t 7456 7455 0 7454 7456 0 7453 7456 0 7457 7456 0 7453 7457 0 7452 7457 0 7458 7457 0\n\t\t 7452 7458 0 7451 7458 0 7458 7459 0 7459 7457 0 7459 7460 0 7460 7457 0 7460 7456 0\n\t\t 7460 10500 0 10500 7456 0 7456 7461 0 7461 7455 0 7461 7462 0 7462 7455 0 7462 7188 0\n\t\t 7462 7189 0 7462 7463 0 7463 7189 0 7463 7198 0 7464 7463 0 7462 7464 0 7461 7464 0\n\t\t 7465 7464 0 7464 10500 0 10500 7465 0 7460 7465 0 7466 7465 0 7460 7466 0 7459 7466 0\n\t\t 7466 7260 0 7260 7465 0 7258 7465 0 7258 7464 0 7256 7464 0 7256 7463 0 7254 7463 0\n\t\t 7254 7198 0 7467 7459 0 7458 7467 0 7458 7468 0 7468 7467 0 7451 7468 0 7451 7469 0\n\t\t 7469 7468 0 7450 7469 0 7450 7470 0 7470 7469 0 7441 7470 0 7440 7470 0 7471 7470 0\n\t\t 7440 7471 0 7439 7471 0 7472 7471 0 7439 7472 0 7437 7472 0 7473 7472 0 7437 7473 0\n\t\t 7436 7473 0 7473 7474 0 7474 7472 0 7474 7475 0 7475 7472 0 7475 7471 0 7475 7476 0\n\t\t 7476 7471 0 7476 7470 0 7476 7469 0 7477 7468 0 7469 7477 0 7476 7477 0 7478 7477 0\n\t\t 7476 7478 0 7475 7478 0 7479 7478 0 7475 7479 0 7474 7479 0 7479 7480 0 7480 7478 0\n\t\t 7480 7481 0 7481 7478 0 7481 7477 0 7481 7482 0 7482 7477 0 7482 7468 0 7482 7467 0\n\t\t 7482 7483 0 7483 7467 0 7483 7484 0 7484 7467 0 7484 7459 0 7484 7466 0 7485 7483 0\n\t\t 7482 7485 0 7481 7485 0 7486 7485 0 7481 7486 0 7480 7486 0 7486 7296 0 7296 7485 0\n\t\t 7294 7485 0 7294 7483 0 7292 7483 0 7292 7484 0 7290 7484 0 7290 7466 0 7487 7480 0\n\t\t 7479 7487 0 7479 7488 0 7488 7487 0 7474 7488 0 7474 7489 0 7489 7488 0 7473 7489 0\n\t\t 7473 7490 0 7490 7489 0 7436 7490 0 7434 7490 0 7491 7490 0 7434 7491 0 7433 7491 0\n\t\t 7492 7491 0 7433 7492 0 7431 7492 0 7493 7492 0 7431 7493 0 7429 7493 0 7493 7494 0\n\t\t 7494 7492 0 7494 7495 0 7495 7492 0 7495 7491 0 7495 7496 0 7496 7491 0 7496 7490 0\n\t\t 7496 7489 0 7497 7488 0 7489 7497 0 7496 7497 0 7498 7497 0 7496 7498 0 7495 7498 0\n\t\t 7499 7498 0 7495 7499 0 7494 7499 0 7499 7500 0 7500 7498 0 7500 7501 0 7501 7498 0;\n\tsetAttr \".ed[24734:24899]\" 7501 7497 0 7501 7502 0 7502 7497 0 7502 7488 0 7502 7487 0\n\t\t 7502 7503 0 7503 7487 0 7503 7504 0 7504 7487 0 7504 7480 0 7504 7486 0 7505 7503 0\n\t\t 7502 7505 0 7501 7505 0 7506 7505 0 7501 7506 0 7500 7506 0 7506 7333 0 7333 7505 0\n\t\t 7331 7505 0 7331 7503 0 7329 7503 0 7329 7504 0 7327 7504 0 7327 7486 0 7507 7500 0\n\t\t 7499 7507 0 7499 7508 0 7508 7507 0 7494 7508 0 7494 7509 0 7509 7508 0 7493 7509 0\n\t\t 7493 7510 0 7510 7509 0 7429 7510 0 7427 7510 0 7511 7510 0 7427 7511 0 7426 7511 0\n\t\t 7512 7511 0 7426 7512 0 7425 7512 0 7513 7512 0 7425 7513 0 7419 7513 0 7513 7414 0\n\t\t 7414 7512 0 7414 7514 0 7514 7512 0 7514 7511 0 7514 7515 0 7515 7511 0 7515 7510 0\n\t\t 7515 7509 0 7516 7508 0 7509 7516 0 7515 7516 0 7517 7516 0 7515 7517 0 7514 7517 0\n\t\t 7414 7518 0 7518 7514 0 7518 7517 0 7518 7409 0 7409 7517 0 7409 7519 0 7519 7517 0\n\t\t 7519 7516 0 7519 7520 0 7520 7516 0 7520 7508 0 7520 7507 0 7520 7521 0 7521 7507 0\n\t\t 7521 7522 0 7522 7507 0 7522 7500 0 7522 7506 0 7523 7521 0 7520 7523 0 7519 7523 0\n\t\t 7409 7524 0 7524 7519 0 7524 7523 0 7524 7369 0 7369 7523 0 7367 7523 0 7367 7521 0\n\t\t 7365 7521 0 7365 7522 0 7363 7522 0 7363 7506 0 7518 7410 0 7524 7404 0 7524 7406 0\n\t\t 7513 7415 0 7239 7525 0 7279 7526 0 7315 7528 0 7352 7529 0 7530 7423 0 7423 7388 0\n\t\t 7393 7381 0 7531 7391 0 7392 7531 0 7394 7531 0 7531 7532 0 7532 7391 0 7532 7533 0\n\t\t 7533 7391 0 7533 7530 0 7533 7420 0 7420 7530 0 7532 7422 0 7422 7533 0 7112 7534 0\n\t\t 7534 7118 0 7534 7129 0 7534 7535 0 7535 7129 0 7534 7536 0 7536 7535 0 7536 7537 0\n\t\t 7537 7535 0 7114 7534 0 7114 7536 0 7543 7536 0 7543 7540 0 7540 7536 0 7540 7537 0\n\t\t 7540 7538 0 7538 7537 0 7540 7539 0 7539 7538 0 7539 7541 0 7541 7538 0 7539 7542 0\n\t\t 7542 7541 0 7141 7542 0 7539 7141 0 7539 7143 0 7540 7143 0 7542 7544 0 7544 7541 0\n\t\t 7542 7545 0 7545 7544 0 7545 7546 0 7546 7544 0 7139 7542 0 7139 7545 0 7137 7545 0\n\t\t 7137 7547 0 7547 7545 0 7547 7546 0 7547 7548 0 7548 7546 0 7547 7549 0 7549 7548 0\n\t\t 7549 7550 0 7550 7548 0 7135 7547 0 7135 7549 0 7133 7549 0 7133 7551 0 7551 7549 0;\n\tsetAttr \".ed[24900:25065]\" 7551 7550 0 7551 7552 0 7552 7550 0 7551 7130 0 7130 7552 0\n\t\t 7130 7553 0 7553 7552 0 7131 7551 0 7127 7553 0 7128 7553 0 7554 7091 0 7092 7554 0\n\t\t 7092 7555 0 7555 7554 0 7556 7554 0 7555 7556 0 7555 7557 0 7557 7556 0 7558 7556 0\n\t\t 7557 7558 0 7557 7559 0 7559 7558 0 7208 7558 0 7559 7208 0 7559 7207 0 7213 7558 0\n\t\t 7213 7560 0 7560 7558 0 7560 7556 0 7560 7561 0 7561 7556 0 7561 7554 0 7561 7562 0\n\t\t 7562 7554 0 7562 7091 0 7562 7093 0 7562 7563 0 7563 7093 0 7563 7100 0 7564 7563 0\n\t\t 7562 7564 0 7561 7564 0 7565 7564 0 7561 7565 0 7560 7565 0 7215 7565 0 7560 7215 0\n\t\t 7223 7565 0 7223 7566 0 7566 7565 0 7566 7564 0 7566 7567 0 7567 7564 0 7567 7563 0\n\t\t 7567 7568 0 7568 7563 0 7568 7100 0 7568 7101 0 7568 7569 0 7569 7101 0 7569 7108 0\n\t\t 7570 7569 0 7568 7570 0 7567 7570 0 7571 7570 0 7567 7571 0 7566 7571 0 7225 7571 0\n\t\t 7566 7225 0 7233 7571 0 7233 7572 0 7572 7571 0 7572 7570 0 7572 7573 0 7573 7570 0\n\t\t 7573 7569 0 7573 7574 0 7574 7569 0 7574 7108 0 7574 7109 0 7574 7575 0 7575 7109 0\n\t\t 7575 7116 0 7576 7575 0 7574 7576 0 7573 7576 0 7577 7576 0 7573 7577 0 7572 7577 0\n\t\t 7235 7577 0 7572 7235 0 7243 7577 0 7243 7578 0 7578 7577 0 7578 7576 0 7578 7579 0\n\t\t 7579 7576 0 7579 7575 0 7579 7580 0 7580 7575 0 7580 7116 0 7580 7117 0 7580 7581 0\n\t\t 7581 7117 0 7579 7165 0 7165 7580 0 7578 7583 0 7583 7579 0 7584 7578 0 7585 7162 0\n\t\t 7163 7585 0 7164 7585 0 7586 7585 0 7164 7586 0 7166 7586 0 7175 7586 0 7183 7586 0\n\t\t 7183 7587 0 7587 7586 0 7587 7585 0 7587 7588 0 7588 7585 0 7588 7162 0 7588 7161 0\n\t\t 7588 7589 0 7589 7161 0 7589 7160 0 7590 7589 0 7588 7590 0 7587 7590 0 7185 7590 0\n\t\t 7587 7185 0 7193 7590 0 7193 7591 0 7591 7590 0 7591 7589 0 7591 7592 0 7592 7589 0\n\t\t 7592 7160 0 7592 7593 0 7593 7160 0 7593 7155 0 7593 7156 0 7593 7594 0 7594 7156 0\n\t\t 7594 7159 0 7595 7594 0 7593 7595 0 7592 7595 0 7596 7595 0 7592 7596 0 7591 7596 0\n\t\t 7195 7596 0 7591 7195 0 7207 7596 0 7559 7596 0 7559 7595 0 7557 7595 0 7557 7594 0\n\t\t 7555 7594 0 7555 7159 0 7597 7599 0 7599 7598 0 7598 7597 0 7598 7600 0 7600 7597 0;\n\tsetAttr \".ed[25066:25231]\" 7599 7601 0 7601 7598 0 7601 7602 0 7602 7598 0 7601 7603 0\n\t\t 7603 7602 0 7603 7604 0 7604 7602 0 7605 7603 0 7601 7605 0 7601 7606 0 7606 7605 0\n\t\t 7599 7606 0 7599 7607 0 7607 7606 0 7597 7607 0 7597 7608 0 7608 7607 0 7609 7607 0\n\t\t 7608 7609 0 7608 7610 0 7610 7609 0 7609 7611 0 7611 7607 0 7611 7606 0 7611 7612 0\n\t\t 7612 7606 0 7612 7605 0 7613 7612 0 7611 7613 0 7611 7614 0 7614 7613 0 7609 7614 0\n\t\t 7609 7615 0 7615 7614 0 7610 7615 0 7610 7616 0 7616 7615 0 7617 7615 0 7616 7617 0\n\t\t 7616 7618 0 7618 7617 0 7617 7619 0 7619 7615 0 7619 7614 0 7619 7620 0 7620 7614 0\n\t\t 7620 7613 0 7621 7620 0 7619 7621 0 7619 7622 0 7622 7621 0 7617 7622 0 7617 7623 0\n\t\t 7623 7622 0 7618 7623 0 7618 7624 0 7624 7623 0 7625 7623 0 7624 7625 0 7624 7626 0\n\t\t 7626 7625 0 7625 7627 0 7627 7623 0 7627 7622 0 7627 7628 0 7628 7622 0 7628 7621 0\n\t\t 7882 7628 0 7627 7882 0 7627 7880 0 7880 7882 0 7625 7880 0 7625 7881 0 7881 7880 0\n\t\t 7626 7881 0 7626 8060 0 8060 7881 0 7621 7629 0 7629 7620 0 7629 7630 0 7630 7620 0\n\t\t 7630 7613 0 7630 7631 0 7631 7613 0 7631 7612 0 7631 7632 0 7632 7612 0 7632 7605 0\n\t\t 7632 7633 0 7633 7605 0 7633 7603 0 7633 7634 0 7634 7603 0 7634 7604 0 7634 7635 0\n\t\t 7635 7604 0 7634 7636 0 7636 7635 0 7636 7637 0 7637 7635 0 7636 7638 0 7638 7637 0\n\t\t 7638 7639 0 7639 7637 0 7638 7640 0 7640 7639 0 7640 7641 0 7641 7639 0 7642 7640 0\n\t\t 7638 7642 0 7638 7643 0 7643 7642 0 7636 7643 0 7636 7644 0 7644 7643 0 7634 7644 0\n\t\t 7633 7644 0 7632 7645 0 7645 7633 0 7645 7644 0 7645 7646 0 7646 7644 0 7646 7643 0\n\t\t 7646 7647 0 7647 7643 0 7647 7642 0 7648 7647 0 7646 7648 0 7646 7649 0 7649 7648 0\n\t\t 7645 7649 0 7645 7650 0 7650 7649 0 7632 7650 0 7631 7650 0 7651 7650 0 7631 7651 0\n\t\t 7630 7651 0 7651 7652 0 7652 7650 0 7652 7649 0 7652 7653 0 7653 7649 0 7653 7648 0\n\t\t 7654 7653 0 7652 7654 0 7652 7655 0 7655 7654 0 7651 7655 0 7651 7656 0 7656 7655 0\n\t\t 7630 7656 0 7629 7656 0 7657 7656 0 7629 7657 0 7629 7658 0 7658 7657 0 7621 7658 0\n\t\t 7628 7658 0 7657 7659 0 7659 7656 0 7659 7655 0 7659 7660 0 7660 7655 0 7660 7654 0;\n\tsetAttr \".ed[25232:25397]\" 7661 7660 0 7659 7661 0 7659 7662 0 7662 7661 0 7657 7662 0\n\t\t 7657 7663 0 7663 7662 0 7658 7663 0 7658 7664 0 7664 7663 0 7628 7664 0 7882 7664 0\n\t\t 7665 7664 0 7882 7665 0 7882 7877 0 7877 7665 0 7665 7666 0 7666 7664 0 7666 7663 0\n\t\t 7873 7662 0 7663 7873 0 7666 7873 0 7871 7661 0 7662 7871 0 7873 7871 0 7661 7667 0\n\t\t 7667 7660 0 7667 7668 0 7668 7660 0 7668 7654 0 7668 7669 0 7669 7654 0 7669 7653 0\n\t\t 7669 7670 0 7670 7653 0 7670 7648 0 7670 7671 0 7671 7648 0 7671 7647 0 7671 7672 0\n\t\t 7672 7647 0 7672 7642 0 7672 7673 0 7673 7642 0 7673 7640 0 7673 7674 0 7674 7640 0\n\t\t 7674 7641 0 7674 7675 0 7675 7641 0 7674 7676 0 7676 7675 0 7676 7677 0 7677 7675 0\n\t\t 7676 7678 0 7678 7677 0 7678 7679 0 7679 7677 0 7678 7680 0 7680 7679 0 7680 7681 0\n\t\t 7681 7679 0 7682 7680 0 7678 7682 0 7678 7683 0 7683 7682 0 7676 7683 0 7676 7684 0\n\t\t 7684 7683 0 7674 7684 0 7673 7684 0 7672 7685 0 7685 7673 0 7685 7684 0 7685 7686 0\n\t\t 7686 7684 0 7686 7683 0 7686 7687 0 7687 7683 0 7687 7682 0 7688 7687 0 7686 7688 0\n\t\t 7686 7689 0 7689 7688 0 7685 7689 0 7685 7690 0 7690 7689 0 7672 7690 0 7671 7690 0\n\t\t 7691 7690 0 7671 7691 0 7670 7691 0 7691 7692 0 7692 7690 0 7692 7689 0 7692 7693 0\n\t\t 7693 7689 0 7693 7688 0 7694 7693 0 7692 7694 0 7692 7695 0 7695 7694 0 7691 7695 0\n\t\t 7691 7696 0 7696 7695 0 7670 7696 0 7669 7696 0 7697 7696 0 7669 7697 0 7668 7697 0\n\t\t 7697 7698 0 7698 7696 0 7698 7695 0 7698 7699 0 7699 7695 0 7699 7694 0 7700 7699 0\n\t\t 7698 7700 0 7698 7701 0 7701 7700 0 7697 7701 0 7697 7702 0 7702 7701 0 7668 7702 0\n\t\t 7667 7702 0 7703 7702 0 7667 7703 0 7667 7869 0 7869 7703 0 7704 7701 0 7702 7704 0\n\t\t 7703 7704 0 7865 7700 0 7701 7865 0 7704 7865 0 7700 7705 0 7705 7699 0 7705 7706 0\n\t\t 7706 7699 0 7706 7694 0 7706 7707 0 7707 7694 0 7707 7693 0 7707 7708 0 7708 7693 0\n\t\t 7708 7688 0 7708 7709 0 7709 7688 0 7709 7687 0 7709 7710 0 7710 7687 0 7710 7682 0\n\t\t 7710 7711 0 7711 7682 0 7711 7680 0 7711 7712 0 7712 7680 0 7712 7681 0 7712 7713 0\n\t\t 7713 7681 0 7712 7714 0 7714 7713 0 7714 7715 0 7715 7713 0 7714 7716 0 7716 7715 0;\n\tsetAttr \".ed[25398:25563]\" 7716 7717 0 7717 7715 0 7716 7718 0 7718 7717 0 7718 7719 0\n\t\t 7719 7717 0 7720 7718 0 7716 7720 0 7716 7721 0 7721 7720 0 7714 7721 0 7714 7722 0\n\t\t 7722 7721 0 7712 7722 0 7711 7722 0 7710 7723 0 7723 7711 0 7723 7722 0 7723 7724 0\n\t\t 7724 7722 0 7724 7721 0 7724 7725 0 7725 7721 0 7725 7720 0 7726 7725 0 7724 7726 0\n\t\t 7724 7727 0 7727 7726 0 7723 7727 0 7723 7728 0 7728 7727 0 7710 7728 0 7709 7728 0\n\t\t 7729 7728 0 7709 7729 0 7708 7729 0 7729 7730 0 7730 7728 0 7730 7727 0 7730 7731 0\n\t\t 7731 7727 0 7731 7726 0 7732 7731 0 7730 7732 0 7730 7733 0 7733 7732 0 7729 7733 0\n\t\t 7729 7734 0 7734 7733 0 7708 7734 0 7707 7734 0 7735 7734 0 7707 7735 0 7706 7735 0\n\t\t 7735 7736 0 7736 7734 0 7736 7733 0 7736 7737 0 7737 7733 0 7737 7732 0 7738 7737 0\n\t\t 7736 7738 0 7736 7739 0 7739 7738 0 7735 7739 0 7735 7740 0 7740 7739 0 7706 7740 0\n\t\t 7705 7740 0 7741 7740 0 7705 7741 0 7705 7742 0 7742 7741 0 7861 7739 0 7740 7861 0\n\t\t 7741 7861 0 7743 7738 0 7739 7743 0 7861 7743 0 7738 7744 0 7744 7737 0 7744 7745 0\n\t\t 7745 7737 0 7745 7732 0 7745 7746 0 7746 7732 0 7746 7731 0 7746 7747 0 7747 7731 0\n\t\t 7747 7726 0 7747 7748 0 7748 7726 0 7748 7725 0 7748 7749 0 7749 7725 0 7749 7720 0\n\t\t 7749 7750 0 7750 7720 0 7750 7718 0 7750 7751 0 7751 7718 0 7751 7719 0 7751 7752 0\n\t\t 7752 7719 0 7751 7753 0 7753 7752 0 7753 7754 0 7754 7752 0 7753 7755 0 7755 7754 0\n\t\t 7755 7756 0 7756 7754 0 7755 7757 0 7757 7756 0 7757 7758 0 7758 7756 0 7759 7757 0\n\t\t 7755 7759 0 7755 7760 0 7760 7759 0 7753 7760 0 7753 7761 0 7761 7760 0 7751 7761 0\n\t\t 7750 7761 0 7749 7762 0 7762 7750 0 7762 7761 0 7762 7763 0 7763 7761 0 7763 7760 0\n\t\t 7763 7764 0 7764 7760 0 7764 7759 0 7765 7764 0 7763 7765 0 7763 7766 0 7766 7765 0\n\t\t 7762 7766 0 7762 7767 0 7767 7766 0 7749 7767 0 7748 7767 0 7768 7767 0 7748 7768 0\n\t\t 7747 7768 0 7768 7769 0 7769 7767 0 7769 7766 0 7769 7770 0 7770 7766 0 7770 7765 0\n\t\t 7771 7770 0 7769 7771 0 7769 7772 0 7772 7771 0 7768 7772 0 7768 7773 0 7773 7772 0\n\t\t 7747 7773 0 7746 7773 0 7774 7773 0 7746 7774 0 7745 7774 0 7774 7775 0 7775 7773 0;\n\tsetAttr \".ed[25564:25729]\" 7775 7772 0 7775 7776 0 7776 7772 0 7776 7771 0 7777 7776 0\n\t\t 7775 7777 0 7775 7778 0 7778 7777 0 7774 7778 0 7774 7779 0 7779 7778 0 7745 7779 0\n\t\t 7744 7779 0 7857 7779 0 7744 7857 0 7744 8008 0 8008 7857 0 7780 7778 0 7779 7780 0\n\t\t 7857 7780 0 7781 7777 0 7778 7781 0 7780 7781 0 7777 7782 0 7782 7776 0 7782 7783 0\n\t\t 7783 7776 0 7783 7771 0 7783 7784 0 7784 7771 0 7784 7770 0 7784 7785 0 7785 7770 0\n\t\t 7785 7765 0 7785 7786 0 7786 7765 0 7786 7764 0 7786 7787 0 7787 7764 0 7787 7759 0\n\t\t 7787 7788 0 7788 7759 0 7788 7757 0 7788 7789 0 7789 7757 0 7789 7758 0 7789 7790 0\n\t\t 7790 7758 0 7789 7791 0 7791 7790 0 7791 7792 0 7792 7790 0 7791 7793 0 7793 7792 0\n\t\t 7793 7794 0 7794 7792 0 7793 7795 0 7795 7794 0 7795 7796 0 7796 7794 0 7797 7795 0\n\t\t 7793 7797 0 7793 7798 0 7798 7797 0 7791 7798 0 7791 7799 0 7799 7798 0 7789 7799 0\n\t\t 7788 7799 0 7787 7800 0 7800 7788 0 7800 7799 0 7800 7801 0 7801 7799 0 7801 7798 0\n\t\t 7801 7802 0 7802 7798 0 7802 7797 0 7803 7802 0 7801 7803 0 7801 7804 0 7804 7803 0\n\t\t 7800 7804 0 7800 7805 0 7805 7804 0 7787 7805 0 7786 7805 0 7806 7805 0 7786 7806 0\n\t\t 7785 7806 0 7806 7807 0 7807 7805 0 7807 7804 0 7807 7808 0 7808 7804 0 7808 7803 0\n\t\t 7809 7808 0 7807 7809 0 7807 7810 0 7810 7809 0 7806 7810 0 7806 7811 0 7811 7810 0\n\t\t 7785 7811 0 7784 7811 0 7812 7811 0 7784 7812 0 7783 7812 0 7812 7813 0 7813 7811 0\n\t\t 7813 7810 0 7813 7814 0 7814 7810 0 7814 7809 0 8010 7814 0 7813 8010 0 7813 7815 0\n\t\t 7815 8010 0 7812 7815 0 7812 7816 0 7816 7815 0 7783 7816 0 7782 7816 0 7817 7816 0\n\t\t 7782 7817 0 7782 7853 0 7853 7817 0 8009 7815 0 7816 8009 0 7817 8009 0 7814 7818 0\n\t\t 7818 7809 0 8010 7818 0 8010 7819 0 7819 7818 0 7819 7820 0 7820 7818 0 7820 7821 0\n\t\t 7821 7818 0 7821 7822 0 7822 7818 0 7822 7823 0 7823 7818 0 7824 7823 0 7822 7824 0\n\t\t 7822 7825 0 7825 7824 0 7825 7826 0 7826 7824 0 7826 7827 0 7827 7824 0 7828 7827 0\n\t\t 7826 7828 0 7826 7829 0 7829 7828 0 7829 7830 0 7830 7828 0 7830 7831 0 7831 7828 0\n\t\t 7832 7831 0 7830 7832 0 7830 7833 0 7833 7832 0 7833 7834 0 7834 7832 0 7834 7835 0;\n\tsetAttr \".ed[25730:25895]\" 7835 7832 0 7835 7796 0 7796 7832 0 7795 7832 0 7797 7832 0\n\t\t 7797 7831 0 7797 7828 0 7802 7828 0 7803 7828 0 7803 7827 0 7803 7824 0 7808 7824 0\n\t\t 7809 7824 0 7809 7823 0 7836 7835 0 7834 7836 0 7834 7837 0 7837 7836 0 7837 7838 0\n\t\t 7838 7836 0 7838 7839 0 7839 7836 0 7840 7839 0 7838 7840 0 7838 7841 0 7841 7840 0\n\t\t 7841 7842 0 7842 7840 0 7842 7843 0 7843 7840 0 7844 7843 0 7842 7844 0 7842 7845 0\n\t\t 7845 7844 0 7845 7846 0 7846 7844 0 7846 7847 0 7847 7844 0 7848 7847 0 7846 7848 0\n\t\t 7846 8011 0 8011 7848 0 7849 7847 0 7848 7849 0 7849 7844 0 7848 7850 0 7850 7849 0\n\t\t 7850 8009 0 8009 7849 0 8009 7851 0 7851 7849 0 7817 7851 0 7817 7852 0 7852 7851 0\n\t\t 7853 7852 0 7853 7854 0 7854 7852 0 7853 7781 0 7781 7854 0 7781 7855 0 7855 7854 0\n\t\t 7780 7855 0 7780 7856 0 7856 7855 0 7857 7856 0 7857 7858 0 7858 7856 0 8008 7858 0\n\t\t 8008 7859 0 7859 7858 0 8008 7743 0 7743 7859 0 7743 7860 0 7860 7859 0 7861 7860 0\n\t\t 7861 7862 0 7862 7860 0 7741 7862 0 7741 7863 0 7863 7862 0 7742 7863 0 7742 7864 0\n\t\t 7864 7863 0 7742 7865 0 7865 7864 0 7865 7866 0 7866 7864 0 7704 7866 0 7704 7867 0\n\t\t 7867 7866 0 7703 7867 0 7703 7868 0 7868 7867 0 7869 7868 0 7869 7870 0 7870 7868 0\n\t\t 7869 7871 0 7871 7870 0 7871 7872 0 7872 7870 0 7873 7872 0 7873 7874 0 7874 7872 0\n\t\t 7666 7874 0 7666 7875 0 7875 7874 0 7665 7875 0 7665 7876 0 7876 7875 0 7877 7876 0\n\t\t 7877 7878 0 7878 7876 0 7877 7879 0 7879 7878 0 7880 7879 0 7877 7880 0 7881 7879 0\n\t\t 7881 8007 0 8007 7879 0 7879 7883 0 7883 7878 0 8007 7883 0 8007 7884 0 7884 7883 0\n\t\t 8007 7885 0 7885 7884 0 7885 7886 0 7886 7884 0 7887 7884 0 7886 7887 0 7886 7888 0\n\t\t 7888 7887 0 7887 7889 0 7889 7884 0 7889 7883 0 7889 7890 0 7890 7883 0 7890 7878 0\n\t\t 7891 7890 0 7889 7891 0 7889 7892 0 7892 7891 0 7887 7892 0 7887 7893 0 7893 7892 0\n\t\t 7888 7893 0 7888 7894 0 7894 7893 0 7895 7893 0 7894 7895 0 7894 7896 0 7896 7895 0\n\t\t 7895 7897 0 7897 7893 0 7897 7892 0 7897 7898 0 7898 7892 0 7898 7891 0 7899 7898 0\n\t\t 7897 7899 0 7897 7900 0 7900 7899 0 7895 7900 0 7895 7901 0 7901 7900 0 7896 7901 0;\n\tsetAttr \".ed[25896:26061]\" 7896 7902 0 7902 7901 0 7903 7901 0 7902 7903 0 7902 7904 0\n\t\t 7904 7903 0 7903 7905 0 7905 7901 0 7905 7900 0 7905 7906 0 7906 7900 0 7906 7899 0\n\t\t 7604 7906 0 7905 7604 0 7905 7602 0 7903 7602 0 7903 7598 0 7904 7598 0 7904 7600 0\n\t\t 7899 7907 0 7907 7898 0 7907 7908 0 7908 7898 0 7908 7891 0 7908 7909 0 7909 7891 0\n\t\t 7909 7890 0 7909 7910 0 7910 7890 0 7910 7878 0 7910 7876 0 7910 7911 0 7911 7876 0\n\t\t 7911 7875 0 7911 7912 0 7912 7875 0 7912 7874 0 7912 7913 0 7913 7874 0 7913 7872 0\n\t\t 7914 7913 0 7912 7914 0 7912 7915 0 7915 7914 0 7911 7915 0 7911 7916 0 7916 7915 0\n\t\t 7910 7916 0 7909 7916 0 7908 7917 0 7917 7909 0 7917 7916 0 7917 7918 0 7918 7916 0\n\t\t 7918 7915 0 7918 7919 0 7919 7915 0 7919 7914 0 7920 7919 0 7918 7920 0 7918 7921 0\n\t\t 7921 7920 0 7917 7921 0 7917 7922 0 7922 7921 0 7908 7922 0 7907 7922 0 7923 7922 0\n\t\t 7907 7923 0 7907 7924 0 7924 7923 0 7899 7924 0 7906 7924 0 7923 7925 0 7925 7922 0\n\t\t 7925 7921 0 7925 7926 0 7926 7921 0 7926 7920 0 7641 7926 0 7925 7641 0 7925 7639 0\n\t\t 7923 7639 0 7923 7637 0 7924 7637 0 7924 7635 0 7906 7635 0 7920 7927 0 7927 7919 0\n\t\t 7926 7928 0 7928 7920 0 7928 7927 0 7928 7929 0 7929 7927 0 7929 7930 0 7930 7927 0\n\t\t 7931 7927 0 7930 7931 0 7930 7932 0 7932 7931 0 7933 7931 0 7932 7933 0 7933 7914 0\n\t\t 7914 7931 0 7933 7913 0 7933 7934 0 7934 7913 0 7934 7872 0 7934 7870 0 7934 7935 0\n\t\t 7935 7870 0 7935 7868 0 7935 7936 0 7936 7868 0 7936 7867 0 7936 7937 0 7937 7867 0\n\t\t 7937 7866 0 7938 7937 0 7936 7938 0 7936 7939 0 7939 7938 0 7935 7939 0 7935 7940 0\n\t\t 7940 7939 0 7934 7940 0 7933 7940 0 7932 7940 0 7932 7941 0 7941 7940 0 7941 7939 0\n\t\t 7941 7942 0 7942 7939 0 7942 7938 0 7943 7942 0 7941 7943 0 7941 7944 0 7944 7943 0\n\t\t 7932 7944 0 7930 7944 0 7945 7944 0 7930 7945 0 7929 7945 0 7945 7946 0 7946 7944 0\n\t\t 7946 7943 0 7681 7946 0 7945 7681 0 7945 7679 0 7929 7679 0 7929 7677 0 7928 7677 0\n\t\t 7928 7675 0 7926 7675 0 7943 7947 0 7947 7942 0 7947 7948 0 7948 7942 0 7948 7938 0\n\t\t 7948 7949 0 7949 7938 0 7949 7937 0 7949 7950 0 7950 7937 0 7950 7866 0 7950 7864 0;\n\tsetAttr \".ed[26062:26227]\" 7950 7951 0 7951 7864 0 7951 7863 0 7951 7952 0 7952 7863 0\n\t\t 7952 7862 0 7952 7953 0 7953 7862 0 7953 7860 0 7954 7953 0 7952 7954 0 7952 7955 0\n\t\t 7955 7954 0 7951 7955 0 7951 7956 0 7956 7955 0 7950 7956 0 7949 7956 0 7957 7956 0\n\t\t 7949 7957 0 7948 7957 0 7957 7958 0 7958 7956 0 7958 7955 0 7958 7959 0 7959 7955 0\n\t\t 7959 7954 0 7960 7959 0 7958 7960 0 7958 7961 0 7961 7960 0 7957 7961 0 7957 7962 0\n\t\t 7962 7961 0 7948 7962 0 7947 7962 0 7963 7962 0 7947 7963 0 7947 7964 0 7964 7963 0\n\t\t 7943 7964 0 7946 7964 0 7963 7965 0 7965 7962 0 7965 7961 0 7965 7966 0 7966 7961 0\n\t\t 7966 7960 0 7719 7966 0 7965 7719 0 7965 7717 0 7963 7717 0 7963 7715 0 7964 7715 0\n\t\t 7964 7713 0 7946 7713 0 7960 7967 0 7967 7959 0 7966 7968 0 7968 7960 0 7968 7967 0\n\t\t 7968 7969 0 7969 7967 0 7969 7970 0 7970 7967 0 7971 7967 0 7970 7971 0 7970 7972 0\n\t\t 7972 7971 0 7973 7971 0 7972 7973 0 7973 7954 0 7954 7971 0 7973 7953 0 7973 7974 0\n\t\t 7974 7953 0 7974 7860 0 7974 7859 0 7974 7975 0 7975 7859 0 7975 7858 0 7975 7976 0\n\t\t 7976 7858 0 7976 7856 0 7976 7977 0 7977 7856 0 7977 7855 0 7978 7977 0 7976 7978 0\n\t\t 7976 7979 0 7979 7978 0 7975 7979 0 7975 7980 0 7980 7979 0 7974 7980 0 7973 7980 0\n\t\t 7972 7980 0 7972 7981 0 7981 7980 0 7981 7979 0 7981 7982 0 7982 7979 0 7982 7978 0\n\t\t 7983 7982 0 7981 7983 0 7981 7984 0 7984 7983 0 7972 7984 0 7970 7984 0 7985 7984 0\n\t\t 7970 7985 0 7969 7985 0 7985 7986 0 7986 7984 0 7986 7983 0 7758 7986 0 7985 7758 0\n\t\t 7985 7756 0 7969 7756 0 7969 7754 0 7968 7754 0 7968 7752 0 7966 7752 0 7983 7987 0\n\t\t 7987 7982 0 7987 7988 0 7988 7982 0 7988 7978 0 7988 7989 0 7989 7978 0 7989 7977 0\n\t\t 7989 7990 0 7990 7977 0 7990 7855 0 7990 7854 0 7990 7991 0 7991 7854 0 7991 7852 0\n\t\t 7991 7992 0 7992 7852 0 7992 7851 0 7992 7993 0 7993 7851 0 7993 7849 0 7994 7993 0\n\t\t 7992 7994 0 7992 7995 0 7995 7994 0 7991 7995 0 7991 7996 0 7996 7995 0 7990 7996 0\n\t\t 7989 7996 0 7997 7996 0 7989 7997 0 7988 7997 0 7997 7998 0 7998 7996 0 7998 7995 0\n\t\t 7998 7999 0 7999 7995 0 7999 7994 0 8000 7999 0 7998 8000 0 7998 8001 0 8001 8000 0;\n\tsetAttr \".ed[26228:26393]\" 7997 8001 0 7997 8002 0 8002 8001 0 7988 8002 0 7987 8002 0\n\t\t 8003 8002 0 7987 8003 0 7987 8004 0 8004 8003 0 7983 8004 0 7986 8004 0 8003 8005 0\n\t\t 8005 8002 0 8005 8001 0 8005 8006 0 8006 8001 0 8006 8000 0 7796 8006 0 8005 7796 0\n\t\t 8005 7794 0 8003 7794 0 8003 7792 0 8004 7792 0 8004 7790 0 7986 7790 0 7840 7999 0\n\t\t 8000 7840 0 7840 7994 0 7843 7994 0 7844 7994 0 7844 7993 0 7835 8006 0 7836 8006 0\n\t\t 7836 8000 0 8000 7839 0 8060 7885 0 8007 8060 0 7869 7661 0 7919 7931 0 7742 7700 0\n\t\t 8008 7738 0 7959 7971 0 7853 7777 0 7850 7815 0 7850 8010 0 7848 8010 0 7848 7819 0\n\t\t 7848 7820 0 8011 7820 0 8012 8014 0 8014 8013 0 8013 8012 0 8013 8015 0 8015 8012 0\n\t\t 8013 8016 0 8016 8015 0 8016 8017 0 8017 8015 0 7600 8017 0 8016 7600 0 8016 7597 0\n\t\t 8016 7608 0 8016 8018 0 8018 7608 0 8013 8018 0 8013 8019 0 8019 8018 0 8020 8019 0\n\t\t 8013 8020 0 8014 8020 0 8021 8019 0 8020 8021 0 8020 8022 0 8022 8021 0 8021 8023 0\n\t\t 8023 8019 0 8023 8018 0 8023 7610 0 7610 8018 0 8023 7616 0 8023 8024 0 8024 7616 0\n\t\t 8021 8024 0 8021 8025 0 8025 8024 0 8026 8025 0 8021 8026 0 8022 8026 0 8027 8025 0\n\t\t 8026 8027 0 8026 8028 0 8028 8027 0 8027 8029 0 8029 8025 0 8029 8024 0 8029 7618 0\n\t\t 7618 8024 0 8029 7624 0 8029 8030 0 8030 7624 0 8027 8030 0 8027 8031 0 8031 8030 0\n\t\t 8032 8031 0 8027 8032 0 8028 8032 0 8033 8031 0 8032 8033 0 8032 8034 0 8034 8033 0\n\t\t 8033 8035 0 8035 8031 0 8035 8030 0 8035 7626 0 7626 8030 0 8035 8060 0 8035 8043 0\n\t\t 8043 8060 0 8033 8043 0 8033 8039 0 8039 8043 0 8036 8039 0 8033 8036 0 8034 8036 0\n\t\t 8036 8038 0 8038 8037 0 8037 8036 0 8037 8039 0 8038 8040 0 8040 8037 0 8040 8041 0\n\t\t 8041 8037 0 8041 8042 0 8042 8037 0 8042 8059 0 8059 8037 0 8059 8039 0 8059 8043 0\n\t\t 8042 7886 0 7886 8059 0 7885 8059 0 8044 8041 0 8040 8044 0 8040 8045 0 8045 8044 0\n\t\t 8044 8046 0 8046 8041 0 8046 8042 0 8046 7888 0 7888 8042 0 8046 7894 0 8046 8047 0\n\t\t 8047 7894 0 8044 8047 0 8044 8048 0 8048 8047 0 8049 8048 0 8044 8049 0 8045 8049 0\n\t\t 8050 8048 0 8049 8050 0 8049 8051 0 8051 8050 0 8050 8052 0 8052 8048 0 8052 8047 0;\n\tsetAttr \".ed[26394:26559]\" 8052 7896 0 7896 8047 0 8052 7902 0 8052 8053 0 8053 7902 0\n\t\t 8050 8053 0 8050 8054 0 8054 8053 0 8055 8054 0 8050 8055 0 8051 8055 0 8056 8054 0\n\t\t 8055 8056 0 8055 8057 0 8057 8056 0 8056 8058 0 8058 8054 0 8058 8053 0 8058 7904 0\n\t\t 7904 8053 0 8058 7600 0 8058 8017 0 8056 8017 0 8056 8015 0 8056 8012 0 8057 8012 0\n\t\t 7885 8043 0 8061 8063 0 8063 8062 0 8062 8061 0 8062 8064 0 8064 8061 0 8063 8065 0\n\t\t 8065 8062 0 8065 8066 0 8066 8062 0 8065 8067 0 8067 8066 0 8067 8068 0 8068 8066 0\n\t\t 8069 8067 0 8065 8069 0 8065 8070 0 8070 8069 0 8063 8070 0 8063 8071 0 8071 8070 0\n\t\t 8061 8071 0 8061 8072 0 8072 8071 0 8073 8071 0 8072 8073 0 8072 8074 0 8074 8073 0\n\t\t 8073 8075 0 8075 8071 0 8075 8070 0 8075 8076 0 8076 8070 0 8076 8069 0 8077 8076 0\n\t\t 8075 8077 0 8075 8078 0 8078 8077 0 8073 8078 0 8073 8079 0 8079 8078 0 8074 8079 0\n\t\t 8074 8080 0 8080 8079 0 8081 8079 0 8080 8081 0 8080 8082 0 8082 8081 0 8081 8083 0\n\t\t 8083 8079 0 8083 8078 0 8083 8084 0 8084 8078 0 8084 8077 0 8085 8084 0 8083 8085 0\n\t\t 8083 8086 0 8086 8085 0 8081 8086 0 8081 8087 0 8087 8086 0 8082 8087 0 8082 8088 0\n\t\t 8088 8087 0 8089 8087 0 8088 8089 0 8088 8090 0 8090 8089 0 8089 8091 0 8091 8087 0\n\t\t 8091 8086 0 8091 8092 0 8092 8086 0 8092 8085 0 8126 8092 0 8091 8126 0 8091 8125 0\n\t\t 8125 8126 0 8089 8125 0 8089 8093 0 8093 8125 0 8090 8093 0 8090 8094 0 8094 8093 0\n\t\t 8082 8095 0 8095 8088 0 8096 8095 0 8082 8096 0 8096 8097 0 8097 8095 0 8098 8097 0\n\t\t 8096 8098 0 8096 8099 0 8099 8098 0 8100 8098 0 8099 8100 0 8099 8101 0 8101 8100 0\n\t\t 8102 8100 0 8101 8102 0 8101 8103 0 8103 8102 0 8103 8104 0 8104 8102 0 8104 8105 0\n\t\t 8105 8102 0 8064 8104 0 8103 8064 0 8103 8061 0 8103 8072 0 8101 8072 0 8099 8074 0\n\t\t 8074 8101 0 8099 8080 0 8096 8080 0 8106 8104 0 8064 8106 0 8064 8107 0 8107 8106 0\n\t\t 8062 8107 0 8062 8108 0 8108 8107 0 8109 8107 0 8108 8109 0 8108 8110 0 8110 8109 0\n\t\t 8111 8109 0 8110 8111 0 8110 8112 0 8112 8111 0 8113 8111 0 8112 8113 0 8112 8114 0\n\t\t 8114 8113 0 8115 8113 0 8114 8115 0 8114 8116 0 8116 8115 0 8117 8115 0 8116 8117 0;\n\tsetAttr \".ed[26560:26725]\" 8116 8118 0 8118 8117 0 8119 8117 0 8118 8119 0 8118 8120 0\n\t\t 8120 8119 0 8094 8119 0 8120 8094 0 8120 8093 0 8118 8121 0 8121 8120 0 8121 8122 0\n\t\t 8122 8120 0 8122 8093 0 8122 8125 0 8121 8123 0 8123 8122 0 8123 8124 0 8124 8122 0\n\t\t 8124 8125 0 8124 8126 0 8116 8127 0 8127 8118 0 8127 8121 0 8127 8128 0 8128 8121 0\n\t\t 8128 8123 0 8129 8128 0 8127 8129 0 8127 8130 0 8130 8129 0 8116 8130 0 8114 8130 0\n\t\t 8131 8130 0 8114 8131 0 8112 8131 0 8131 8132 0 8132 8130 0 8132 8129 0 8133 8132 0\n\t\t 8131 8133 0 8131 8134 0 8134 8133 0 8112 8134 0 8110 8134 0 8135 8134 0 8110 8135 0\n\t\t 8108 8135 0 8135 8136 0 8136 8134 0 8136 8133 0 8068 8136 0 8135 8068 0 8135 8066 0\n\t\t 8108 8066 0 8132 8137 0 8137 8129 0 8138 8137 0 8132 8138 0 8133 8138 0 8138 8139 0\n\t\t 8139 8137 0 8139 8140 0 8140 8137 0 8141 8137 0 8140 8141 0 8141 8129 0 8141 8128 0\n\t\t 8141 8142 0 8142 8128 0 8142 8123 0 8142 8143 0 8143 8123 0 8143 8124 0 8143 8562 0\n\t\t 8562 8124 0 8143 8144 0 8144 8562 0 8144 8561 0 8561 8562 0 8144 8145 0 8145 8561 0\n\t\t 8145 8563 0 8563 8561 0 8145 8146 0 8146 8563 0 8146 8222 0 8222 8563 0 8146 8147 0\n\t\t 8147 8222 0 8147 8148 0 8148 8222 0 8147 8149 0 8149 8148 0 8149 8224 0 8224 8148 0\n\t\t 8149 8150 0 8150 8224 0 8150 8223 0 8223 8224 0 8150 8151 0 8151 8223 0 8151 8225 0\n\t\t 8225 8223 0 8152 8147 0 8146 8152 0 8146 8153 0 8153 8152 0 8145 8153 0 8152 8154 0\n\t\t 8154 8147 0 8154 8149 0 8154 8155 0 8155 8149 0 8155 8150 0 8155 8156 0 8156 8150 0\n\t\t 8156 8151 0 8157 8156 0 8155 8157 0 8155 8158 0 8158 8157 0 8154 8158 0 8154 8159 0\n\t\t 8159 8158 0 8152 8159 0 8152 8160 0 8160 8159 0 8153 8160 0 8153 8161 0 8161 8160 0\n\t\t 8162 8160 0 8161 8162 0 8161 8163 0 8163 8162 0 8162 8164 0 8164 8160 0 8164 8159 0\n\t\t 8164 8165 0 8165 8159 0 8165 8158 0 8165 8166 0 8166 8158 0 8166 8157 0 8167 8166 0\n\t\t 8165 8167 0 8165 8168 0 8168 8167 0 8164 8168 0 8164 8169 0 8169 8168 0 8162 8169 0\n\t\t 8162 8170 0 8170 8169 0 8163 8170 0 8163 8171 0 8171 8170 0 8172 8170 0 8171 8172 0\n\t\t 8171 8173 0 8173 8172 0 8172 8174 0 8174 8170 0 8174 8169 0 8174 8175 0 8175 8169 0;\n\tsetAttr \".ed[26726:26891]\" 8175 8168 0 8175 8176 0 8176 8168 0 8176 8167 0 8177 8176 0\n\t\t 8175 8177 0 8175 8178 0 8178 8177 0 8174 8178 0 8179 8177 0 8178 8179 0 8178 8180 0\n\t\t 8180 8179 0 8178 8181 0 8181 8180 0 8174 8181 0 8172 8181 0 8181 8182 0 8182 8180 0\n\t\t 8181 8183 0 8183 8182 0 8172 8183 0 8173 8183 0 8183 8184 0 8184 8182 0 8183 8185 0\n\t\t 8185 8184 0 8173 8185 0 8185 8186 0 8186 8184 0 8187 8179 0 8180 8187 0 8180 8188 0\n\t\t 8188 8187 0 8182 8188 0 8182 8189 0 8189 8188 0 8184 8189 0 8184 8190 0 8190 8189 0\n\t\t 8186 8190 0 8186 8191 0 8191 8190 0 8192 8190 0 8191 8192 0 8191 8193 0 8193 8192 0\n\t\t 8192 8194 0 8194 8190 0 8194 8189 0 8194 8195 0 8195 8189 0 8195 8188 0 8195 8196 0\n\t\t 8196 8188 0 8196 8187 0 8197 8196 0 8195 8197 0 8195 8198 0 8198 8197 0 8194 8198 0\n\t\t 8194 8199 0 8199 8198 0 8192 8199 0 8192 8200 0 8200 8199 0 8193 8200 0 8193 8201 0\n\t\t 8201 8200 0 8202 8200 0 8201 8202 0 8201 8203 0 8203 8202 0 8202 8204 0 8204 8200 0\n\t\t 8204 8199 0 8204 8205 0 8205 8199 0 8205 8198 0 8205 8206 0 8206 8198 0 8206 8197 0\n\t\t 8207 8206 0 8205 8207 0 8205 8208 0 8208 8207 0 8204 8208 0 8204 8209 0 8209 8208 0\n\t\t 8202 8209 0 8202 8210 0 8210 8209 0 8203 8210 0 8203 8211 0 8211 8210 0 8212 8210 0\n\t\t 8211 8212 0 8211 8213 0 8213 8212 0 8212 8214 0 8214 8210 0 8214 8209 0 8214 8215 0\n\t\t 8215 8209 0 8215 8208 0 8215 8216 0 8216 8208 0 8216 8207 0 8217 8216 0 8215 8217 0\n\t\t 8215 8218 0 8218 8217 0 8214 8218 0 8214 8219 0 8219 8218 0 8212 8219 0 8212 8220 0\n\t\t 8220 8219 0 8213 8220 0 8213 8221 0 8221 8220 0 8148 8220 0 8221 8148 0 8221 8222 0\n\t\t 8224 8220 0 8224 8219 0 8223 8218 0 8219 8223 0 8225 8217 0 8218 8225 0 8217 8226 0\n\t\t 8226 8216 0 8226 8227 0 8227 8216 0 8227 8207 0 8227 8228 0 8228 8207 0 8228 8206 0\n\t\t 8228 8229 0 8229 8206 0 8229 8197 0 8229 8230 0 8230 8197 0 8230 8196 0 8230 8231 0\n\t\t 8231 8196 0 8231 8187 0 8231 8232 0 8232 8187 0 8232 8179 0 8232 8233 0 8233 8179 0\n\t\t 8233 8177 0 8233 8234 0 8234 8177 0 8233 8235 0 8235 8234 0 8235 8236 0 8236 8234 0\n\t\t 8235 8237 0 8237 8236 0 8237 8238 0 8238 8236 0 8237 8239 0 8239 8238 0 8239 8240 0;\n\tsetAttr \".ed[26892:27057]\" 8240 8238 0 8241 8239 0 8237 8241 0 8237 8242 0 8242 8241 0\n\t\t 8235 8242 0 8235 8243 0 8243 8242 0 8233 8243 0 8232 8243 0 8231 8244 0 8244 8232 0\n\t\t 8244 8243 0 8244 8245 0 8245 8243 0 8245 11039 0 11039 8243 0 8245 8246 0 8246 11039 0\n\t\t 8246 8241 0 8241 11039 0 8247 8246 0 8245 8247 0 8245 8248 0 8248 8247 0 8244 8248 0\n\t\t 8244 8249 0 8249 8248 0 8231 8249 0 8230 8249 0 8250 8249 0 8230 8250 0 8229 8250 0\n\t\t 8250 8251 0 8251 8249 0 8251 8248 0 8251 8252 0 8252 8248 0 8252 8247 0 8253 8252 0\n\t\t 8251 8253 0 8251 8254 0 8254 8253 0 8250 8254 0 8250 8255 0 8255 8254 0 8229 8255 0\n\t\t 8228 8255 0 8256 8255 0 8228 8256 0 8227 8256 0 8256 8257 0 8257 8255 0 8257 8254 0\n\t\t 8257 8258 0 8258 8254 0 8258 8253 0 8259 8258 0 8257 8259 0 8257 8260 0 8260 8259 0\n\t\t 8256 8260 0 8256 8261 0 8261 8260 0 8227 8261 0 8226 8261 0 8262 8261 0 8226 8262 0\n\t\t 8226 8507 0 8507 8262 0 8263 8260 0 8261 8263 0 8262 8263 0 8508 8259 0 8260 8508 0\n\t\t 8263 8508 0 8259 8264 0 8264 8258 0 8264 8265 0 8265 8258 0 8265 8253 0 8265 8266 0\n\t\t 8266 8253 0 8266 8252 0 8266 8267 0 8267 8252 0 8267 8247 0 8267 8268 0 8268 8247 0\n\t\t 8268 8246 0 8268 8269 0 8269 8246 0 8269 8241 0 8269 8270 0 8270 8241 0 8270 8239 0\n\t\t 8270 8271 0 8271 8239 0 8271 8240 0 8271 8272 0 8272 8240 0 8271 8273 0 8273 8272 0\n\t\t 8273 8274 0 8274 8272 0 8273 8275 0 8275 8274 0 8275 8276 0 8276 8274 0 8275 8277 0\n\t\t 8277 8276 0 8277 8278 0 8278 8276 0 8279 8277 0 8275 8279 0 8275 8280 0 8280 8279 0\n\t\t 8273 8280 0 8273 8281 0 8281 8280 0 8271 8281 0 8270 8281 0 8269 8282 0 8282 8270 0\n\t\t 8282 8281 0 8282 8283 0 8283 8281 0 8283 8280 0 8283 8284 0 8284 8280 0 8284 8279 0\n\t\t 8285 8284 0 8283 8285 0 8283 8286 0 8286 8285 0 8282 8286 0 8282 8287 0 8287 8286 0\n\t\t 8269 8287 0 8268 8287 0 8288 8287 0 8268 8288 0 8267 8288 0 8288 8289 0 8289 8287 0\n\t\t 8289 8286 0 8289 8290 0 8290 8286 0 8290 8285 0 8291 8290 0 8289 8291 0 8289 8292 0\n\t\t 8292 8291 0 8288 8292 0 8288 8293 0 8293 8292 0 8267 8293 0 8266 8293 0 8294 8293 0\n\t\t 8266 8294 0 8265 8294 0 8294 8295 0 8295 8293 0 8295 8292 0 8295 8296 0 8296 8292 0;\n\tsetAttr \".ed[27058:27223]\" 8296 8291 0 8297 8296 0 8295 8297 0 8295 8298 0 8298 8297 0\n\t\t 8294 8298 0 8294 8299 0 8299 8298 0 8265 8299 0 8264 8299 0 8420 8299 0 8264 8420 0\n\t\t 8264 8300 0 8300 8420 0 8301 8298 0 8299 8301 0 8420 8301 0 8417 8297 0 8298 8417 0\n\t\t 8301 8417 0 8297 8302 0 8302 8296 0 8302 8303 0 8303 8296 0 8303 8291 0 8303 8304 0\n\t\t 8304 8291 0 8304 8290 0 8304 8305 0 8305 8290 0 8305 8285 0 8305 8306 0 8306 8285 0\n\t\t 8306 8284 0 8306 8307 0 8307 8284 0 8307 8279 0 8307 8308 0 8308 8279 0 8308 8277 0\n\t\t 8308 8309 0 8309 8277 0 8309 8278 0 8309 8310 0 8310 8278 0 8309 8311 0 8311 8310 0\n\t\t 8311 8312 0 8312 8310 0 8311 8313 0 8313 8312 0 8313 8314 0 8314 8312 0 8313 8315 0\n\t\t 8315 8314 0 8315 8316 0 8316 8314 0 8317 8315 0 8313 8317 0 8313 8318 0 8318 8317 0\n\t\t 8311 8318 0 8311 8319 0 8319 8318 0 8309 8319 0 8308 8319 0 8307 8320 0 8320 8308 0\n\t\t 8320 8319 0 8320 8321 0 8321 8319 0 8321 8318 0 8321 8322 0 8322 8318 0 8322 8317 0\n\t\t 8323 8322 0 8321 8323 0 8321 8324 0 8324 8323 0 8320 8324 0 8320 8325 0 8325 8324 0\n\t\t 8307 8325 0 8306 8325 0 8326 8325 0 8306 8326 0 8305 8326 0 8326 8327 0 8327 8325 0\n\t\t 8327 8324 0 8327 8328 0 8328 8324 0 8328 8323 0 8329 8328 0 8327 8329 0 8327 8330 0\n\t\t 8330 8329 0 8326 8330 0 8326 8331 0 8331 8330 0 8305 8331 0 8304 8331 0 8332 8331 0\n\t\t 8304 8332 0 8303 8332 0 8332 8333 0 8333 8331 0 8333 8330 0 8333 8334 0 8334 8330 0\n\t\t 8334 8329 0 8335 8334 0 8333 8335 0 8333 8336 0 8336 8335 0 8332 8336 0 8332 8337 0\n\t\t 8337 8336 0 8303 8337 0 8302 8337 0 8339 8337 0 8302 8339 0 8302 8415 0 8415 8339 0\n\t\t 8338 8336 0 8337 8338 0 8339 8338 0 8510 8335 0 8336 8510 0 8338 8510 0 8335 8340 0\n\t\t 8340 8334 0 8340 8341 0 8341 8334 0 8341 8329 0 8341 8342 0 8342 8329 0 8342 8328 0\n\t\t 8342 8343 0 8343 8328 0 8343 8323 0 8343 8344 0 8344 8323 0 8344 8322 0 8344 8345 0\n\t\t 8345 8322 0 8345 8317 0 8345 8346 0 8346 8317 0 8346 8315 0 8346 8347 0 8347 8315 0\n\t\t 8347 8316 0 8347 8348 0 8348 8316 0 8347 8349 0 8349 8348 0 8349 8350 0 8350 8348 0\n\t\t 8349 8351 0 8351 8350 0 8351 8352 0 8352 8350 0 8351 8353 0 8353 8352 0 8353 8354 0;\n\tsetAttr \".ed[27224:27389]\" 8354 8352 0 8355 8353 0 8351 8355 0 8351 8356 0 8356 8355 0\n\t\t 8349 8356 0 8349 8357 0 8357 8356 0 8347 8357 0 8346 8357 0 8345 8358 0 8358 8346 0\n\t\t 8358 8357 0 8358 8359 0 8359 8357 0 8359 8356 0 8359 8360 0 8360 8356 0 8360 8355 0\n\t\t 8361 8360 0 8359 8361 0 8359 8362 0 8362 8361 0 8358 8362 0 8358 8363 0 8363 8362 0\n\t\t 8345 8363 0 8344 8363 0 8364 8363 0 8344 8364 0 8343 8364 0 8364 8365 0 8365 8363 0\n\t\t 8365 8362 0 8365 8366 0 8366 8362 0 8366 8361 0 8367 8366 0 8365 8367 0 8365 8368 0\n\t\t 8368 8367 0 8364 8368 0 8364 8369 0 8369 8368 0 8343 8369 0 8342 8369 0 8370 8369 0\n\t\t 8342 8370 0 8341 8370 0 8370 8371 0 8371 8369 0 8371 8368 0 8371 8372 0 8372 8368 0\n\t\t 8372 8367 0 8511 8372 0 8371 8511 0 8371 8373 0 8373 8511 0 8370 8373 0 8370 8374 0\n\t\t 8374 8373 0 8341 8374 0 8340 8374 0 8375 8374 0 8340 8375 0 8340 8509 0 8509 8375 0\n\t\t 8376 8373 0 8374 8376 0 8375 8376 0 8372 8377 0 8377 8367 0 8511 8377 0 8511 8378 0\n\t\t 8378 8377 0 8378 8379 0 8379 8377 0 8379 8380 0 8380 8377 0 8380 8381 0 8381 8377 0\n\t\t 8381 8382 0 8382 8377 0 8383 8382 0 8381 8383 0 8381 8384 0 8384 8383 0 8384 8385 0\n\t\t 8385 8383 0 8385 8386 0 8386 8383 0 8387 8386 0 8385 8387 0 8385 8388 0 8388 8387 0\n\t\t 8388 8389 0 8389 8387 0 8389 8390 0 8390 8387 0 8391 8390 0 8389 8391 0 8389 8392 0\n\t\t 8392 8391 0 8392 8393 0 8393 8391 0 8393 8394 0 8394 8391 0 8394 8354 0 8354 8391 0\n\t\t 8353 8391 0 8355 8391 0 8355 8390 0 8355 8387 0 8360 8387 0 8361 8387 0 8361 8386 0\n\t\t 8361 8383 0 8366 8383 0 8367 8383 0 8367 8382 0 8395 8394 0 8393 8395 0 8393 8396 0\n\t\t 8396 8395 0 8396 8397 0 8397 8395 0 8397 8398 0 8398 8395 0 8399 8398 0 8397 8399 0\n\t\t 8397 8400 0 8400 8399 0 8400 8401 0 8401 8399 0 8401 8402 0 8402 8399 0 8403 8402 0\n\t\t 8401 8403 0 8401 8404 0 8404 8403 0 8404 8405 0 8405 8403 0 8405 8406 0 8406 8403 0\n\t\t 8407 8406 0 8405 8407 0 8405 8513 0 8513 8407 0 8408 8406 0 8407 8408 0 8408 8403 0\n\t\t 8407 8512 0 8512 8408 0 8512 8376 0 8376 8408 0 8376 8409 0 8409 8408 0 8375 8409 0\n\t\t 8375 8410 0 8410 8409 0 8509 8410 0 8509 8411 0 8411 8410 0 8509 8510 0 8510 8411 0;\n\tsetAttr \".ed[27390:27555]\" 8510 8412 0 8412 8411 0 8338 8412 0 8338 8413 0 8413 8412 0\n\t\t 8339 8413 0 8339 8414 0 8414 8413 0 8415 8414 0 8415 8416 0 8416 8414 0 8415 8417 0\n\t\t 8417 8416 0 8417 8418 0 8418 8416 0 8301 8418 0 8301 8419 0 8419 8418 0 8420 8419 0\n\t\t 8420 8421 0 8421 8419 0 8300 8421 0 8300 8422 0 8422 8421 0 8300 8508 0 8508 8422 0\n\t\t 8508 8423 0 8423 8422 0 8263 8423 0 8263 10811 0 10811 8423 0 8262 10811 0 8262 8425 0\n\t\t 8425 10811 0 8507 8425 0 8507 8426 0 8426 8425 0 8507 8225 0 8225 8426 0 8151 8426 0\n\t\t 8427 8426 0 8151 8427 0 8156 8427 0 8427 8428 0 8428 8426 0 8428 10812 0 10812 8426 0\n\t\t 8428 8429 0 8429 10812 0 8429 8424 0 8424 10812 0 8429 8430 0 8430 8424 0 8430 8423 0\n\t\t 8423 8424 0 8431 8430 0 8429 8431 0 8429 8432 0 8432 8431 0 8428 8432 0 8428 8433 0\n\t\t 8433 8432 0 8427 8433 0 8427 8434 0 8434 8433 0 8156 8434 0 8157 8434 0 8435 8434 0\n\t\t 8157 8435 0 8166 8435 0 8435 8436 0 8436 8434 0 8436 8433 0 8436 8437 0 8437 8433 0\n\t\t 8437 8432 0 8437 8438 0 8438 8432 0 8438 8431 0 8439 8438 0 8437 8439 0 8437 8440 0\n\t\t 8440 8439 0 8436 8440 0 8436 9511 0 9511 8440 0 8441 8436 0 8435 8441 0 8435 8442 0\n\t\t 8442 8441 0 8166 8442 0 8167 8442 0 8443 8442 0 8167 8443 0 8176 8443 0 8443 8444 0\n\t\t 8444 8442 0 8444 8441 0 9511 8444 0 8444 8445 0 8445 9511 0 8445 8440 0 8445 8446 0\n\t\t 8446 8440 0 8446 8439 0 8240 8446 0 8445 8240 0 8445 8238 0 8444 8238 0 8444 8236 0\n\t\t 8443 8236 0 8443 8234 0 8176 8234 0 8439 8447 0 8447 8438 0 8446 8448 0 8448 8439 0\n\t\t 8448 8447 0 8448 8449 0 8449 8447 0 8449 8450 0 8450 8447 0 8451 8447 0 8450 8451 0\n\t\t 8450 8452 0 8452 8451 0 8453 8451 0 8452 8453 0 8453 8431 0 8431 8451 0 8453 8430 0\n\t\t 8453 8454 0 8454 8430 0 8454 8423 0 8454 8422 0 8454 8455 0 8455 8422 0 8455 8421 0\n\t\t 8455 8456 0 8456 8421 0 8456 8419 0 8456 8457 0 8457 8419 0 8457 8418 0 8458 8457 0\n\t\t 8456 8458 0 8456 8459 0 8459 8458 0 8455 8459 0 8455 8460 0 8460 8459 0 8454 8460 0\n\t\t 8453 8460 0 8452 8460 0 8452 8461 0 8461 8460 0 8461 8459 0 8461 8462 0 8462 8459 0\n\t\t 8462 8458 0 8463 8462 0 8461 8463 0 8461 8464 0 8464 8463 0 8452 8464 0 8450 8464 0;\n\tsetAttr \".ed[27556:27721]\" 8465 8464 0 8450 8465 0 8449 8465 0 8465 8466 0 8466 8464 0\n\t\t 8466 8463 0 8278 8466 0 8465 8278 0 8465 8276 0 8449 8276 0 8449 8274 0 8448 8274 0\n\t\t 8448 8272 0 8446 8272 0 8463 8467 0 8467 8462 0 8467 8468 0 8468 8462 0 8468 8458 0\n\t\t 8468 8469 0 8469 8458 0 8469 8457 0 8469 8470 0 8470 8457 0 8470 8418 0 8470 8416 0\n\t\t 8470 8471 0 8471 8416 0 8471 8414 0 8471 8472 0 8472 8414 0 8472 8413 0 8472 8473 0\n\t\t 8473 8413 0 8473 8412 0 8474 8473 0 8472 8474 0 8472 8475 0 8475 8474 0 8471 8475 0\n\t\t 8471 8476 0 8476 8475 0 8470 8476 0 8469 8476 0 8477 8476 0 8469 8477 0 8468 8477 0\n\t\t 8477 8478 0 8478 8476 0 8478 8475 0 8478 8479 0 8479 8475 0 8479 8474 0 8480 8479 0\n\t\t 8478 8480 0 8478 8481 0 8481 8480 0 8477 8481 0 8477 8482 0 8482 8481 0 8468 8482 0\n\t\t 8467 8482 0 8483 8482 0 8467 8483 0 8467 8484 0 8484 8483 0 8463 8484 0 8466 8484 0\n\t\t 8483 8485 0 8485 8482 0 8485 8481 0 8485 8486 0 8486 8481 0 8486 8480 0 8316 8486 0\n\t\t 8485 8316 0 8485 8314 0 8483 8314 0 8483 8312 0 8484 8312 0 8484 8310 0 8466 8310 0\n\t\t 8480 8487 0 8487 8479 0 8486 8488 0 8488 8480 0 8488 8487 0 8488 8489 0 8489 8487 0\n\t\t 8489 8490 0 8490 8487 0 8491 8487 0 8490 8491 0 8490 8492 0 8492 8491 0 8493 8491 0\n\t\t 8492 8493 0 8493 8474 0 8474 8491 0 8493 8473 0 8493 8494 0 8494 8473 0 8494 8412 0\n\t\t 8494 8411 0 8494 8495 0 8495 8411 0 8495 8410 0 8495 8496 0 8496 8410 0 8496 8409 0\n\t\t 8496 8497 0 8497 8409 0 8497 8408 0 8498 8497 0 8496 8498 0 8496 8499 0 8499 8498 0\n\t\t 8495 8499 0 8495 8500 0 8500 8499 0 8494 8500 0 8493 8500 0 8492 8500 0 8492 8501 0\n\t\t 8501 8500 0 8501 8499 0 8501 8502 0 8502 8499 0 8502 8498 0 8503 8502 0 8501 8503 0\n\t\t 8501 8504 0 8504 8503 0 8492 8504 0 8490 8504 0 8505 8504 0 8490 8505 0 8489 8505 0\n\t\t 8505 8506 0 8506 8504 0 8506 8503 0 8354 8506 0 8505 8354 0 8505 8352 0 8489 8352 0\n\t\t 8489 8350 0 8488 8350 0 8488 8348 0 8486 8348 0 8399 8502 0 8503 8399 0 8399 8498 0\n\t\t 8402 8498 0 8403 8498 0 8403 8497 0 8394 8506 0 8395 8506 0 8395 8503 0 8503 8398 0\n\t\t 8507 8217 0 8300 8259 0 8438 8451 0 8415 8297 0 8509 8335 0 8512 8373 0 8512 8511 0;\n\tsetAttr \".ed[27722:27887]\" 8479 8491 0 8407 8511 0 8407 8378 0 8407 8379 0 8513 8379 0\n\t\t 8097 8514 0 8514 8095 0 8515 8095 0 8514 8515 0 8515 8088 0 8514 8516 0 8516 8515 0\n\t\t 8517 8515 0 8516 8517 0 8516 8518 0 8518 8517 0 8517 8090 0 8090 8515 0 8517 8094 0\n\t\t 8517 8523 0 8523 8094 0 8518 8523 0 8518 8519 0 8519 8523 0 8519 8521 0 8521 8520 0\n\t\t 8520 8519 0 8520 8523 0 8522 8520 0 8521 8522 0 8522 8117 0 8117 8520 0 8119 8520 0\n\t\t 8119 8523 0 8521 8524 0 8524 8522 0 8525 8522 0 8524 8525 0 8524 8526 0 8526 8525 0\n\t\t 8525 8115 0 8115 8522 0 8525 8113 0 8525 8527 0 8527 8113 0 8526 8527 0 8526 8528 0\n\t\t 8528 8527 0 8529 8527 0 8528 8529 0 8528 8530 0 8530 8529 0 8529 8111 0 8111 8527 0\n\t\t 8529 8109 0 8529 8531 0 8531 8109 0 8530 8531 0 8530 8532 0 8532 8531 0 8106 8531 0\n\t\t 8532 8106 0 8532 8533 0 8533 8106 0 8107 8531 0 8533 8104 0 8533 8105 0 8067 8534 0\n\t\t 8534 8068 0 8534 8535 0 8535 8068 0 8534 8536 0 8536 8535 0 8536 8537 0 8537 8535 0\n\t\t 8536 8538 0 8538 8537 0 8538 8539 0 8539 8537 0 8538 8186 0 8186 8539 0 8185 8539 0\n\t\t 8538 8191 0 8538 8540 0 8540 8191 0 8536 8540 0 8536 8541 0 8541 8540 0 8534 8541 0\n\t\t 8534 8542 0 8542 8541 0 8067 8542 0 8069 8542 0 8543 8542 0 8069 8543 0 8076 8543 0\n\t\t 8543 8544 0 8544 8542 0 8544 8541 0 8544 8545 0 8545 8541 0 8545 8540 0 8545 8193 0\n\t\t 8193 8540 0 8545 8201 0 8545 8546 0 8546 8201 0 8544 8546 0 8544 8547 0 8547 8546 0\n\t\t 8543 8547 0 8543 8548 0 8548 8547 0 8076 8548 0 8077 8548 0 8549 8548 0 8077 8549 0\n\t\t 8084 8549 0 8549 8550 0 8550 8548 0 8550 8547 0 8550 8551 0 8551 8547 0 8551 8546 0\n\t\t 8551 8203 0 8203 8546 0 8551 8211 0 8551 8552 0 8552 8211 0 8550 8552 0 8550 8553 0\n\t\t 8553 8552 0 8549 8553 0 8549 8554 0 8554 8553 0 8084 8554 0 8085 8554 0 8555 8554 0\n\t\t 8085 8555 0 8092 8555 0 8555 8556 0 8556 8554 0 8556 8553 0 8556 8557 0 8557 8553 0\n\t\t 8557 8552 0 8557 8213 0 8213 8552 0 8557 8221 0 8557 8558 0 8558 8221 0 8556 8558 0\n\t\t 8556 8559 0 8559 8558 0 8555 8559 0 8555 8560 0 8560 8559 0 8092 8560 0 8126 8560 0\n\t\t 8562 8560 0 8126 8562 0 8561 8559 0 8560 8561 0 8563 8558 0 8559 8563 0 8558 8222 0;\n\tsetAttr \".ed[27888:28053]\" 8142 8564 0 8564 8143 0 8564 8144 0 8564 8565 0 8565 8144 0\n\t\t 8565 8145 0 8565 8153 0 8565 8161 0 8565 8566 0 8566 8161 0 8564 8566 0 8564 8567 0\n\t\t 8567 8566 0 8142 8567 0 8141 8567 0 8140 8567 0 8140 8568 0 8568 8567 0 8568 8566 0\n\t\t 8568 8163 0 8163 8566 0 8568 8171 0 8568 8569 0 8569 8171 0 8140 8569 0 8139 8569 0\n\t\t 8570 8569 0 8139 8570 0 8139 8571 0 8571 8570 0 8138 8571 0 8138 8572 0 8572 8571 0\n\t\t 8133 8572 0 8136 8572 0 8570 8173 0 8173 8569 0 8570 8185 0 8570 8539 0 8571 8539 0\n\t\t 8571 8537 0 8572 8537 0 8572 8535 0 8136 8535 0 8573 8575 0 8575 8574 0 8574 8573 0\n\t\t 8574 11877 0 11877 8573 0 8577 8573 0 11877 8577 0 11877 9374 0 9374 8577 0 8579 8577 0\n\t\t 9374 8579 0 9374 8580 0 8580 8579 0 8581 8579 0 8580 8581 0 8580 9172 0 9172 8581 0\n\t\t 8583 8581 0 9172 8583 0 9172 9175 0 9175 8583 0 9139 8583 0 9175 9139 0 9175 9140 0\n\t\t 9140 9139 0 8585 8586 0 8586 9158 0 9158 8585 0 9158 9160 0 9160 8585 0 8589 11876 0\n\t\t 11876 9099 0 9099 8589 0 9100 8873 0 8873 9156 0 9156 9100 0 9154 8590 0 8590 8591 0\n\t\t 8591 9154 0 8591 9157 0 9157 9154 0 9232 9155 0 9155 8592 0 8592 9232 0 8592 8594 0\n\t\t 8594 9232 0 9079 9233 0 9233 8661 0 8661 9079 0 8580 9081 0 9081 9172 0 8661 8596 0\n\t\t 8596 9079 0 9123 9080 0 9080 9082 0 9082 9123 0 9123 9173 0 9173 9080 0 9082 8598 0\n\t\t 8598 9123 0 9014 8597 0 8597 8711 0 8711 9014 0 8711 8600 0 8600 9014 0 9278 9015 0\n\t\t 9015 8777 0 8777 9278 0 8777 8602 0 8602 9278 0 8602 8603 0 8603 9278 0 8603 8604 0\n\t\t 8604 9278 0 8586 9278 0 8604 8586 0 8604 9158 0 8601 9140 0 9175 8601 0 9176 9015 0\n\t\t 9278 9176 0 8599 8584 0 8584 9174 0 9174 8599 0 8582 8597 0 9014 8582 0 8578 8593 0\n\t\t 8593 8595 0 8595 8578 0 8578 11875 0 11875 8593 0 8576 9155 0 9232 8576 0 8602 12016 0\n\t\t 12016 8603 0 8777 12016 0 12016 8771 0 8771 8603 0 8777 8690 0 8690 12016 0 8691 8600 0\n\t\t 8711 8691 0 8711 8608 0 8608 8691 0 8712 8598 0 9082 8712 0 9082 8753 0 8753 8712 0\n\t\t 8609 8596 0 8661 8609 0 8661 8662 0 8662 8609 0 8663 8594 0 8592 8663 0 8592 9767 0\n\t\t 9767 8663 0 9766 9157 0 8591 9766 0 8591 9769 0 9769 9766 0 8611 8612 0 8612 9805 0;\n\tsetAttr \".ed[28054:28219]\" 9805 8611 0 9807 9765 0 9765 9768 0 9768 9807 0 9767 9764 0\n\t\t 9764 8663 0 8615 9763 0 9763 9806 0 9806 8615 0 9806 9810 0 9810 8615 0 8615 8617 0\n\t\t 8617 9763 0 8617 8618 0 8618 9763 0 8614 8805 0 8805 8610 0 8610 8614 0 8752 8610 0\n\t\t 8805 8752 0 8617 8619 0 8619 8618 0 8619 8620 0 8620 8618 0 8620 8751 0 8751 8618 0\n\t\t 8619 8621 0 8621 8620 0 8621 8708 0 8708 8620 0 8621 8623 0 8623 8708 0 8623 8693 0\n\t\t 8693 8708 0 8623 8625 0 8625 8693 0 8625 8626 0 8626 8693 0 8772 9794 0 9794 9793 0\n\t\t 9793 8772 0 9793 10054 0 10054 8772 0 8708 8751 0 8707 8712 0 8753 8707 0 8772 8771 0\n\t\t 8771 9794 0 12016 9794 0 8626 8605 0 8605 8693 0 8690 8692 0 8692 12016 0 8608 8706 0\n\t\t 8706 8691 0 8622 8624 0 8624 8607 0 8607 8622 0 8627 8628 0 8628 8629 0 8629 8627 0\n\t\t 8606 8627 0 8629 8606 0 8629 8630 0 8630 8606 0 8810 8606 0 8630 8810 0 8630 8631 0\n\t\t 8631 8810 0 8991 8810 0 8631 8991 0 8631 11865 0 11865 8991 0 9159 8991 0 11865 9159 0\n\t\t 8632 8633 0 8633 8587 0 8587 8632 0 8633 8588 0 8588 8587 0 8634 11865 0 8631 8634 0\n\t\t 8631 8635 0 8635 8634 0 8630 8636 0 8636 8631 0 8636 8635 0 8637 8634 0 8635 8637 0\n\t\t 8635 8638 0 8638 8637 0 8639 8638 0 8635 8639 0 8636 8639 0 9374 9081 0 8640 9102 0\n\t\t 9102 9098 0 9098 8640 0 9098 11979 0 11979 8640 0 9100 9101 0 9101 8873 0 9101 8874 0\n\t\t 8874 8873 0 8590 8875 0 8875 8591 0 8875 9578 0 9578 8591 0 9578 9572 0 9572 8591 0\n\t\t 9572 9769 0 8612 9573 0 9573 9575 0 9575 8612 0 9575 9805 0 8613 9574 0 9574 8646 0\n\t\t 8646 8613 0 8646 8616 0 8616 8613 0 8640 9604 0 9604 9102 0 9604 9593 0 9593 9102 0\n\t\t 8643 8642 0 8642 9595 0 9595 8643 0 9593 8649 0 8649 9102 0 8642 8641 0 8641 9595 0\n\t\t 9595 8650 0 8650 8643 0 8651 8646 0 9574 8651 0 9574 8652 0 8652 8651 0 8650 9610 0\n\t\t 9610 8643 0 9610 8644 0 8644 8643 0 8645 8644 0 9610 8645 0 8653 8652 0 9574 8653 0\n\t\t 9619 9708 0 9708 9611 0 9611 9619 0 9610 8655 0 8655 8654 0 8654 9610 0 8650 8655 0\n\t\t 8648 8647 0 8647 8656 0 8656 8648 0 8656 8657 0 8657 8648 0 9595 8658 0 8658 8650 0\n\t\t 9595 9594 0 9594 8658 0 8657 9712 0 9712 8648 0 8658 8659 0 8659 8650 0 8659 8655 0;\n\tsetAttr \".ed[28220:28223]\" 9619 8660 0 8660 9708 0 8660 9714 0 9714 9708 0;\n\tsetAttr -s 46356 \".n\";\n\tsetAttr \".n[0:165]\" -type \"float3\"  0.91832101 -0.096836999 -0.383809 0.918697\n\t\t 0.064609997 -0.389642 0.88082302 0.162211 -0.44479099 0.88082302 0.162211 -0.44479099\n\t\t 0.86514997 0.056308001 -0.49834299 0.91832101 -0.096836999 -0.383809 0.86514997 0.056308001\n\t\t -0.49834299 0.88082302 0.162211 -0.44479099 0.66993302 0.50171 -0.54724503 0.66993302\n\t\t 0.50171 -0.54724503 0.63144398 0.42244801 -0.650244 0.86514997 0.056308001 -0.49834299\n\t\t 0.27568099 0.683146 -0.67624801 0.63144398 0.42244801 -0.650244 0.66993302 0.50171\n\t\t -0.54724503 0.66993302 0.50171 -0.54724503 0.20353299 0.82323003 -0.52996898 0.27568099\n\t\t 0.683146 -0.67624801 0.27568099 0.683146 -0.67624801 0.20353299 0.82323003 -0.52996898\n\t\t -0.112677 0.87626499 -0.46846899 -0.112677 0.87626499 -0.46846899 0.0064389999 0.76553202\n\t\t -0.64336598 0.27568099 0.683146 -0.67624801 -0.083591998 0.77070302 -0.631688 0.0064389999\n\t\t 0.76553202 -0.64336598 -0.112677 0.87626499 -0.46846899 -0.112677 0.87626499 -0.46846899\n\t\t -0.235818 0.86026001 -0.452043 -0.083591998 0.77070302 -0.631688 0.91273302 -0.133246\n\t\t -0.38621801 0.91832101 -0.096836999 -0.383809 0.86514997 0.056308001 -0.49834299\n\t\t 0.92425299 -0.38176799 0.00296 0.90530002 -0.42071101 0.058596998 0.88216197 -0.44735199\n\t\t 0.147195 0.88216197 -0.44735199 0.147195 0.93669599 -0.34929201 -0.024385 0.92425299\n\t\t -0.38176799 0.00296 0.85478801 -0.46435201 0.231764 0.88216197 -0.44735199 0.147195\n\t\t 0.90530002 -0.42071101 0.058596998 0.90530002 -0.42071101 0.058596998 0.89781803\n\t\t -0.42492101 0.115607 0.85478801 -0.46435201 0.231764 0.88216197 -0.44735199 0.147195\n\t\t 0.85478801 -0.46435201 0.231764 0.78340101 -0.50366002 0.36415699 0.78340101 -0.50366002\n\t\t 0.36415699 0.89912301 -0.393116 0.192453 0.88216197 -0.44735199 0.147195 0.93669599\n\t\t -0.34929201 -0.024385 0.88216197 -0.44735199 0.147195 0.89912301 -0.393116 0.192453\n\t\t 0.89912301 -0.393116 0.192453 0.94019002 -0.33588901 0.056765001 0.93669599 -0.34929201\n\t\t -0.024385 0.87029999 -0.394467 0.29491201 0.85478801 -0.46435201 0.231764 0.89781803\n\t\t -0.42492101 0.115607 0.78340101 -0.50366002 0.36415699 0.85478801 -0.46435201 0.231764\n\t\t 0.87029999 -0.394467 0.29491201 0.89781803 -0.42492101 0.115607 0.93133402 -0.33345601\n\t\t 0.14637201 0.87029999 -0.394467 0.29491201 0.87029999 -0.394467 0.29491201 0.67776501\n\t\t -0.48454899 0.55303401 0.78340101 -0.50366002 0.36415699 0.92946303 -0.123542 -0.34761399\n\t\t 0.91273302 -0.133246 -0.38621801 0.91194898 -0.14560799 -0.383598 0.91194898 -0.14560799\n\t\t -0.383598 0.92746902 -0.136022 -0.348281 0.92946303 -0.123542 -0.34761399 0.94479001\n\t\t -0.062899999 -0.321583 0.92946303 -0.123542 -0.34761399 0.92746902 -0.136022 -0.348281\n\t\t 0.86514997 0.056308001 -0.49834299 0.91194898 -0.14560799 -0.383598 0.91273302 -0.133246\n\t\t -0.38621801 0.66715902 0.236863 -0.70625401 0.69803399 0.223278 -0.68036401 0.566737\n\t\t 0.36048999 -0.740848 0.566737 0.36048999 -0.740848 0.53485101 0.340992 -0.77308398\n\t\t 0.66715902 0.236863 -0.70625401 0.69803399 0.223278 -0.68036401 0.86514997 0.056308001\n\t\t -0.49834299 0.63144398 0.42244801 -0.650244 0.63144398 0.42244801 -0.650244 0.566737\n\t\t 0.36048999 -0.740848 0.69803399 0.223278 -0.68036401 0.566737 0.36048999 -0.740848\n\t\t 0.63144398 0.42244801 -0.650244 0.27568099 0.683146 -0.67624801 0.27568099 0.683146\n\t\t -0.67624801 0.25928801 0.56798601 -0.781129 0.566737 0.36048999 -0.740848 0.53485101\n\t\t 0.340992 -0.77308398 0.566737 0.36048999 -0.740848 0.25928801 0.56798601 -0.781129\n\t\t 0.25928801 0.56798601 -0.781129 0.25541499 0.49230501 -0.83210498 0.53485101 0.340992\n\t\t -0.77308398 0.25541499 0.49230501 -0.83210498 0.25928801 0.56798601 -0.781129 0.039645001\n\t\t 0.63092798 -0.77482802 0.039645001 0.63092798 -0.77482802 0.083866999 0.54394698\n\t\t -0.83491802 0.25541499 0.49230501 -0.83210498 0.25928801 0.56798601 -0.781129 0.27568099\n\t\t 0.683146 -0.67624801 0.0064389999 0.76553202 -0.64336598 0.0064389999 0.76553202\n\t\t -0.64336598 0.039645001 0.63092798 -0.77482802 0.25928801 0.56798601 -0.781129 0.039645001\n\t\t 0.63092798 -0.77482802 0.0064389999 0.76553202 -0.64336598 -0.083591998 0.77070302\n\t\t -0.631688 -0.083591998 0.77070302 -0.631688 -0.0090030003 0.611206 -0.791421 0.039645001\n\t\t 0.63092798 -0.77482802 0.083866999 0.54394698 -0.83491802 0.039645001 0.63092798\n\t\t -0.77482802 -0.0090030003 0.611206 -0.791421 -0.0090030003 0.611206 -0.791421 0.044101\n\t\t 0.54038 -0.84026498 0.083866999 0.54394698 -0.83491802 0.67767501 0.220256 -0.70160103\n\t\t 0.66715902 0.236863 -0.70625401 0.53485101 0.340992 -0.77308398 0.92746902 -0.136022\n\t\t -0.348281 0.94477099 -0.069705002 -0.320234 0.94479001 -0.062899999 -0.321583 0.95624697\n\t\t -0.048432998 -0.28852499 0.94479001 -0.062899999 -0.321583 0.94477099 -0.069705002\n\t\t -0.320234 0.94477099 -0.069705002 -0.320234 0.95778102 -0.057039998 -0.28178301 0.95624697\n\t\t -0.048432998 -0.28852499 0.97570401 -0.033571001 -0.21650399 0.95624697 -0.048432998\n\t\t -0.28852499 0.95778102 -0.057039998 -0.28178301 0.95778102 -0.057039998 -0.28178301\n\t\t 0.976807 -0.035829999 -0.21110301 0.97570401 -0.033571001 -0.21650399 0.70752901\n\t\t 0.18821301 -0.68115997 0.68475002 0.18998 -0.70358002 0.543917 0.260483 -0.79768598\n\t\t 0.543917 0.260483 -0.79768598 0.55838501 0.252244 -0.79030299 0.70752901 0.18821301\n\t\t -0.68115997 0.23106299 0.34578499 -0.909419 0.55838501 0.252244 -0.79030299 0.543917\n\t\t 0.260483 -0.79768598 0.543917 0.260483 -0.79768598 0.240676 0.36974201 -0.89742202\n\t\t 0.23106299 0.34578499 -0.909419 0.23106299 0.34578499 -0.909419 0.240676 0.36974201\n\t\t -0.89742202 0.044649001 0.42363301 -0.904733 0.044649001 0.42363301 -0.904733 0.010712\n\t\t 0.385297 -0.92273003 0.23106299 0.34578499 -0.909419 -0.046755999 0.39501601 -0.91748297;\n\tsetAttr \".n[166:331]\" -type \"float3\"  0.010712 0.385297 -0.92273003 0.044649001\n\t\t 0.42363301 -0.904733 0.044649001 0.42363301 -0.904733 -0.0081489999 0.44292101 -0.89652401\n\t\t -0.046755999 0.39501601 -0.91748297 0.98661602 0.0029 -0.163032 0.97570401 -0.033571001\n\t\t -0.21650399 0.976807 -0.035829999 -0.21110301 0.895459 -0.255932 0.364214 0.88902301\n\t\t -0.206981 0.408407 0.80295599 -0.25599399 0.53826398 0.80295599 -0.25599399 0.53826398\n\t\t 0.81299597 -0.302809 0.497338 0.895459 -0.255932 0.364214 0.93535697 -0.275437 0.22190601\n\t\t 0.895459 -0.255932 0.364214 0.81299597 -0.302809 0.497338 0.57464999 -0.36962 0.73017699\n\t\t 0.81299597 -0.302809 0.497338 0.80295599 -0.25599399 0.53826398 0.80295599 -0.25599399\n\t\t 0.53826398 0.55035502 -0.33302701 0.76563799 0.57464999 -0.36962 0.73017699 0.976807\n\t\t -0.035829999 -0.21110301 0.98684603 0.0054939999 -0.16157 0.98661602 0.0029 -0.163032\n\t\t 0.71441603 0.220346 -0.66412097 0.70752901 0.18821301 -0.68115997 0.55838501 0.252244\n\t\t -0.79030299 0.98661602 0.0029 -0.163032 0.98684603 0.0054939999 -0.16157 0.99066103\n\t\t 0.021059001 -0.13471299 0.99066103 0.021059001 -0.13471299 0.991485 0.020815 -0.128548\n\t\t 0.98661602 0.0029 -0.163032 0.71548402 0.23481201 -0.65798599 0.71441603 0.220346\n\t\t -0.66412097 0.55768198 0.2791 -0.78172499 0.55838501 0.252244 -0.79030299 0.55768198\n\t\t 0.2791 -0.78172499 0.71441603 0.220346 -0.66412097 0.55768198 0.2791 -0.78172499\n\t\t 0.53905302 0.29453701 -0.78909397 0.71548402 0.23481201 -0.65798599 0.20341399 0.359339\n\t\t -0.91076797 0.53905302 0.29453701 -0.78909397 0.55768198 0.2791 -0.78172499 0.55768198\n\t\t 0.2791 -0.78172499 0.216196 0.35374501 -0.91001302 0.20341399 0.359339 -0.91076797\n\t\t 0.20341399 0.359339 -0.91076797 0.216196 0.35374501 -0.91001302 -0.016206 0.37852401\n\t\t -0.92545003 0.010712 0.385297 -0.92273003 -0.016206 0.37852401 -0.92545003 0.216196\n\t\t 0.35374501 -0.91001302 -0.016206 0.37852401 -0.92545003 -0.028414 0.377525 -0.92556298\n\t\t 0.20341399 0.359339 -0.91076797 -0.093327999 0.37908 -0.920645 -0.028414 0.377525\n\t\t -0.92556298 -0.016206 0.37852401 -0.92545003 -0.016206 0.37852401 -0.92545003 -0.077822998\n\t\t 0.383104 -0.920421 -0.093327999 0.37908 -0.920645 0.216196 0.35374501 -0.91001302\n\t\t 0.55768198 0.2791 -0.78172499 0.55838501 0.252244 -0.79030299 0.55838501 0.252244\n\t\t -0.79030299 0.23106299 0.34578499 -0.909419 0.216196 0.35374501 -0.91001302 0.216196\n\t\t 0.35374501 -0.91001302 0.23106299 0.34578499 -0.909419 0.010712 0.385297 -0.92273003\n\t\t -0.077822998 0.383104 -0.920421 -0.016206 0.37852401 -0.92545003 0.010712 0.385297\n\t\t -0.92273003 0.010712 0.385297 -0.92273003 -0.046755999 0.39501601 -0.91748297 -0.077822998\n\t\t 0.383104 -0.920421 0.28156799 -0.36790499 0.886208 0.55035502 -0.33302701 0.76563799\n\t\t 0.56170499 -0.31684899 0.76425999 0.56170499 -0.31684899 0.76425999 0.27537301 -0.35792601\n\t\t 0.89222097 0.28156799 -0.36790499 0.886208 0.28156799 -0.36790499 0.886208 0.27537301\n\t\t -0.35792601 0.89222097 0.15110099 -0.36439899 0.91890299 0.15110099 -0.36439899 0.91890299\n\t\t 0.17506 -0.366539 0.91378498 0.28156799 -0.36790499 0.886208 0.312978 -0.39684501\n\t\t 0.86287802 0.28156799 -0.36790499 0.886208 0.17506 -0.366539 0.91378498 0.17506 -0.366539\n\t\t 0.91378498 0.20295 -0.4012 0.893224 0.312978 -0.39684501 0.86287802 0.49536401 -0.425383\n\t\t 0.757406 0.312978 -0.39684501 0.86287802 0.20295 -0.4012 0.893224 0.20295 -0.4012\n\t\t 0.893224 0.631791 -0.47900799 0.60942 0.49536401 -0.425383 0.757406 0.49536401 -0.425383\n\t\t 0.757406 0.631791 -0.47900799 0.60942 0.377675 -0.52669901 0.76154399 0.377675 -0.52669901\n\t\t 0.76154399 0.45785201 -0.52191198 0.71970803 0.49536401 -0.425383 0.757406 0.66404599\n\t\t -0.41106799 0.62455302 0.49536401 -0.425383 0.757406 0.45785201 -0.52191198 0.71970803\n\t\t 0.45785201 -0.52191198 0.71970803 0.67776501 -0.48454899 0.55303401 0.66404599 -0.41106799\n\t\t 0.62455302 0.45785201 -0.52191198 0.71970803 0.377675 -0.52669901 0.76154399 0.46791899\n\t\t -0.55343401 0.68902999 0.67776501 -0.48454899 0.55303401 0.45785201 -0.52191198 0.71970803\n\t\t 0.46791899 -0.55343401 0.68902999 0.49536401 -0.425383 0.757406 0.66404599 -0.41106799\n\t\t 0.62455302 0.57464999 -0.36962 0.73017699 0.57464999 -0.36962 0.73017699 0.312978\n\t\t -0.39684501 0.86287802 0.49536401 -0.425383 0.757406 0.57464999 -0.36962 0.73017699\n\t\t 0.55035502 -0.33302701 0.76563799 0.28156799 -0.36790499 0.886208 0.28156799 -0.36790499\n\t\t 0.886208 0.312978 -0.39684501 0.86287802 0.57464999 -0.36962 0.73017699 0.56170499\n\t\t -0.31684899 0.76425999 0.55035502 -0.33302701 0.76563799 0.80295599 -0.25599399 0.53826398\n\t\t 0.80295599 -0.25599399 0.53826398 0.81143701 -0.235331 0.53496599 0.56170499 -0.31684899\n\t\t 0.76425999 0.81143701 -0.235331 0.53496599 0.80295599 -0.25599399 0.53826398 0.88902301\n\t\t -0.206981 0.408407 0.88902301 -0.206981 0.408407 0.88410503 -0.194833 0.42473301\n\t\t 0.81143701 -0.235331 0.53496599 0.57464999 -0.36962 0.73017699 0.66404599 -0.41106799\n\t\t 0.62455302 0.86847103 -0.32975399 0.37016201 0.86847103 -0.32975399 0.37016201 0.81299597\n\t\t -0.302809 0.497338 0.57464999 -0.36962 0.73017699 0.81299597 -0.302809 0.497338 0.86847103\n\t\t -0.32975399 0.37016201 0.93535697 -0.275437 0.22190601 0.93133402 -0.33345601 0.14637201\n\t\t 0.93535697 -0.275437 0.22190601 0.86847103 -0.32975399 0.37016201 0.86847103 -0.32975399\n\t\t 0.37016201 0.87029999 -0.394467 0.29491201 0.93133402 -0.33345601 0.14637201 0.66404599\n\t\t -0.41106799 0.62455302 0.67776501 -0.48454899 0.55303401 0.87029999 -0.394467 0.29491201\n\t\t 0.87029999 -0.394467 0.29491201 0.86847103 -0.32975399 0.37016201;\n\tsetAttr \".n[332:497]\" -type \"float3\"  0.66404599 -0.41106799 0.62455302 0.46791899\n\t\t -0.55343401 0.68902999 0.78340101 -0.50366002 0.36415699 0.67776501 -0.48454899 0.55303401\n\t\t 0.23139501 -0.94141603 0.245341 0.205791 -0.96538001 0.16028599 0.29572901 -0.94840598\n\t\t 0.114324 0.29572901 -0.94840598 0.114324 0.31410199 -0.92582399 0.210215 0.23139501\n\t\t -0.94141603 0.245341 0.56515402 -0.82218599 0.067905001 0.31410199 -0.92582399 0.210215\n\t\t 0.29572901 -0.94840598 0.114324 0.29572901 -0.94840598 0.114324 0.55663502 -0.82993102\n\t\t -0.037050001 0.56515402 -0.82218599 0.067905001 0.56515402 -0.82218599 0.067905001\n\t\t 0.55663502 -0.82993102 -0.037050001 0.80262399 -0.54775798 -0.236127 0.80262399 -0.54775798\n\t\t -0.236127 0.81372201 -0.56713003 -0.12735499 0.56515402 -0.82218599 0.067905001 0.92938799\n\t\t -0.196693 -0.31232899 0.81372201 -0.56713003 -0.12735499 0.80262399 -0.54775798 -0.236127\n\t\t 0.80262399 -0.54775798 -0.236127 0.90330702 -0.17167 -0.39314801 0.92938799 -0.196693\n\t\t -0.31232899 0.92938799 -0.196693 -0.31232899 0.90330702 -0.17167 -0.39314801 0.86389101\n\t\t 0.18421701 -0.46878299 0.86389101 0.18421701 -0.46878299 0.88758802 0.172739 -0.42702401\n\t\t 0.92938799 -0.196693 -0.31232899 0.707802 0.527861 -0.46944699 0.88758802 0.172739\n\t\t -0.42702401 0.86389101 0.18421701 -0.46878299 0.86389101 0.18421701 -0.46878299 0.71458203\n\t\t 0.50787401 -0.481078 0.707802 0.527861 -0.46944699 0.707802 0.527861 -0.46944699\n\t\t 0.71458203 0.50787401 -0.481078 0.577425 0.68500602 -0.44423899 0.577425 0.68500602\n\t\t -0.44423899 0.54788202 0.70862699 -0.44460499 0.707802 0.527861 -0.46944699 0.225935\n\t\t -0.89986199 0.373099 0.23139501 -0.94141603 0.245341 0.31410199 -0.92582399 0.210215\n\t\t 0.31410199 -0.92582399 0.210215 0.29872 -0.88837498 0.34864801 0.225935 -0.89986199\n\t\t 0.373099 0.31410199 -0.92582399 0.210215 0.56515402 -0.82218599 0.067905001 0.54018199\n\t\t -0.80798399 0.2353 0.54018199 -0.80798399 0.2353 0.56515402 -0.82218599 0.067905001\n\t\t 0.81372201 -0.56713003 -0.12735499 0.54018199 -0.80798399 0.2353 0.29872 -0.88837498\n\t\t 0.34864801 0.31410199 -0.92582399 0.210215 0.81372201 -0.56713003 -0.12735499 0.81687897\n\t\t -0.57537901 0.040591002 0.54018199 -0.80798399 0.2353 0.81372201 -0.56713003 -0.12735499\n\t\t 0.92938799 -0.196693 -0.31232899 0.96269798 -0.198863 -0.18348201 0.96269798 -0.198863\n\t\t -0.18348201 0.81687897 -0.57537901 0.040591002 0.81372201 -0.56713003 -0.12735499\n\t\t 0.96269798 -0.198863 -0.18348201 0.92938799 -0.196693 -0.31232899 0.88758802 0.172739\n\t\t -0.42702401 0.88758802 0.172739 -0.42702401 0.919662 0.174722 -0.351702 0.96269798\n\t\t -0.198863 -0.18348201 0.88758802 0.172739 -0.42702401 0.707802 0.527861 -0.46944699\n\t\t 0.73131001 0.50461102 -0.45886201 0.73131001 0.50461102 -0.45886201 0.919662 0.174722\n\t\t -0.351702 0.88758802 0.172739 -0.42702401 0.73131001 0.50461102 -0.45886201 0.707802\n\t\t 0.527861 -0.46944699 0.54788202 0.70862699 -0.44460499 0.54788202 0.70862699 -0.44460499\n\t\t 0.58142501 0.62650299 -0.51907498 0.73131001 0.50461102 -0.45886201 0.228986 -0.88117999\n\t\t 0.413627 0.225935 -0.89986199 0.373099 0.29872 -0.88837498 0.34864801 0.29872 -0.88837498\n\t\t 0.34864801 0.30656299 -0.867073 0.39268699 0.228986 -0.88117999 0.413627 0.30656299\n\t\t -0.867073 0.39268699 0.29872 -0.88837498 0.34864801 0.54018199 -0.80798399 0.2353\n\t\t 0.235517 -0.870897 0.43135899 0.228986 -0.88117999 0.413627 0.30656299 -0.867073\n\t\t 0.39268699 0.30656299 -0.867073 0.39268699 0.31841201 -0.85238498 0.41479301 0.235517\n\t\t -0.870897 0.43135899 0.24602 -0.85659897 0.45355499 0.235517 -0.870897 0.43135899\n\t\t 0.31841201 -0.85238498 0.41479301 0.31841201 -0.85238498 0.41479301 0.331806 -0.834885\n\t\t 0.439172 0.24602 -0.85659897 0.45355499 0.24602 -0.85659897 0.45355499 0.331806 -0.834885\n\t\t 0.439172 0.36003399 -0.80732203 0.46755299 0.36003399 -0.80732203 0.46755299 0.26732099\n\t\t -0.837304 0.47692901 0.24602 -0.85659897 0.45355499 0.331806 -0.834885 0.439172 0.31841201\n\t\t -0.85238498 0.41479301 0.57312101 -0.74711001 0.33668801 0.57312101 -0.74711001 0.33668801\n\t\t 0.594859 -0.71431202 0.36864701 0.331806 -0.834885 0.439172 0.36003399 -0.80732203\n\t\t 0.46755299 0.331806 -0.834885 0.439172 0.594859 -0.71431202 0.36864701 0.594859 -0.71431202\n\t\t 0.36864701 0.62793303 -0.66559398 0.40334201 0.36003399 -0.80732203 0.46755299 0.62793303\n\t\t -0.66559398 0.40334201 0.594859 -0.71431202 0.36864701 0.88144302 -0.42476001 0.20649\n\t\t 0.88144302 -0.42476001 0.20649 0.90523499 -0.35356599 0.235671 0.62793303 -0.66559398\n\t\t 0.40334201 0.594859 -0.71431202 0.36864701 0.57312101 -0.74711001 0.33668801 0.85707599\n\t\t -0.486112 0.170634 0.85707599 -0.486112 0.170634 0.88144302 -0.42476001 0.20649 0.594859\n\t\t -0.71431202 0.36864701 0.88144302 -0.42476001 0.20649 0.85707599 -0.486112 0.170634\n\t\t 0.99400997 -0.097324997 -0.049716 0.99400997 -0.097324997 -0.049716 0.999704 0.0061039999\n\t\t -0.023561001 0.88144302 -0.42476001 0.20649 0.90523499 -0.35356599 0.235671 0.88144302\n\t\t -0.42476001 0.20649 0.999704 0.0061039999 -0.023561001 0.999704 0.0061039999 -0.023561001\n\t\t 0.98039001 -0.15424199 0.122656 0.90523499 -0.35356599 0.235671 0.92469501 0.33925\n\t\t -0.172768 0.999704 0.0061039999 -0.023561001 0.90651602 0.36873499 -0.205578 0.90651602\n\t\t 0.36873499 -0.205578 0.87246001 0.430264 -0.231704 0.92469501 0.33925 -0.172768 0.999704\n\t\t 0.0061039999 -0.023561001 0.99400997 -0.097324997 -0.049716 0.93379903 0.27418599\n\t\t -0.229871 0.93379903 0.27418599 -0.229871 0.90651602 0.36873499 -0.205578 0.999704\n\t\t 0.0061039999 -0.023561001 0.90651602 0.36873499 -0.205578 0.93379903 0.27418599 -0.229871\n\t\t 0.77649701 0.51793998 -0.35887399;\n\tsetAttr \".n[498:663]\" -type \"float3\"  0.77649701 0.51793998 -0.35887399 0.77104402\n\t\t 0.55533302 -0.31160399 0.90651602 0.36873499 -0.205578 0.90651602 0.36873499 -0.205578\n\t\t 0.77104402 0.55533302 -0.31160399 0.87246001 0.430264 -0.231704 0.77104402 0.55533302\n\t\t -0.31160399 0.77893603 0.55245501 -0.296736 0.87246001 0.430264 -0.231704 0.77893603\n\t\t 0.55245501 -0.296736 0.81532902 0.50009298 -0.29179701 0.87246001 0.430264 -0.231704\n\t\t 0.83592302 -0.53506398 0.12223 0.85707599 -0.486112 0.170634 0.57312101 -0.74711001\n\t\t 0.33668801 0.57312101 -0.74711001 0.33668801 0.55176097 -0.77736002 0.30211201 0.83592302\n\t\t -0.53506398 0.12223 0.55176097 -0.77736002 0.30211201 0.57312101 -0.74711001 0.33668801\n\t\t 0.31841201 -0.85238498 0.41479301 0.31841201 -0.85238498 0.41479301 0.30656299 -0.867073\n\t\t 0.39268699 0.55176097 -0.77736002 0.30211201 0.54018199 -0.80798399 0.2353 0.55176097\n\t\t -0.77736002 0.30211201 0.30656299 -0.867073 0.39268699 0.55176097 -0.77736002 0.30211201\n\t\t 0.54018199 -0.80798399 0.2353 0.81687897 -0.57537901 0.040591002 0.81687897 -0.57537901\n\t\t 0.040591002 0.83592302 -0.53506398 0.12223 0.55176097 -0.77736002 0.30211201 0.83592302\n\t\t -0.53506398 0.12223 0.81687897 -0.57537901 0.040591002 0.96269798 -0.198863 -0.18348201\n\t\t 0.96269798 -0.198863 -0.18348201 0.98071897 -0.164343 -0.105747 0.83592302 -0.53506398\n\t\t 0.12223 0.85707599 -0.486112 0.170634 0.83592302 -0.53506398 0.12223 0.98071897 -0.164343\n\t\t -0.105747 0.98071897 -0.164343 -0.105747 0.99400997 -0.097324997 -0.049716 0.85707599\n\t\t -0.486112 0.170634 0.99400997 -0.097324997 -0.049716 0.98071897 -0.164343 -0.105747\n\t\t 0.93374598 0.205 -0.29341501 0.93374598 0.205 -0.29341501 0.93379903 0.27418599 -0.229871\n\t\t 0.99400997 -0.097324997 -0.049716 0.98071897 -0.164343 -0.105747 0.96269798 -0.198863\n\t\t -0.18348201 0.919662 0.174722 -0.351702 0.919662 0.174722 -0.351702 0.93374598 0.205\n\t\t -0.29341501 0.98071897 -0.164343 -0.105747 0.93374598 0.205 -0.29341501 0.919662\n\t\t 0.174722 -0.351702 0.73131001 0.50461102 -0.45886201 0.73131001 0.50461102 -0.45886201\n\t\t 0.75520903 0.49716601 -0.42718399 0.93374598 0.205 -0.29341501 0.93379903 0.27418599\n\t\t -0.229871 0.93374598 0.205 -0.29341501 0.75520903 0.49716601 -0.42718399 0.75520903\n\t\t 0.49716601 -0.42718399 0.77649701 0.51793998 -0.35887399 0.93379903 0.27418599 -0.229871\n\t\t 0.77649701 0.51793998 -0.35887399 0.75520903 0.49716601 -0.42718399 0.628905 0.57427698\n\t\t -0.52410299 0.628905 0.57427698 -0.52410299 0.66802502 0.58007002 -0.466113 0.77649701\n\t\t 0.51793998 -0.35887399 0.58142501 0.62650299 -0.51907498 0.628905 0.57427698 -0.52410299\n\t\t 0.75520903 0.49716601 -0.42718399 0.75520903 0.49716601 -0.42718399 0.73131001 0.50461102\n\t\t -0.45886201 0.58142501 0.62650299 -0.51907498 0.77649701 0.51793998 -0.35887399 0.66802502\n\t\t 0.58007002 -0.466113 0.68293101 0.618963 -0.38793099 0.68293101 0.618963 -0.38793099\n\t\t 0.77104402 0.55533302 -0.31160399 0.77649701 0.51793998 -0.35887399 0.77893603 0.55245501\n\t\t -0.296736 0.77104402 0.55533302 -0.31160399 0.68293101 0.618963 -0.38793099 0.13776401\n\t\t -0.99037898 0.013093 0.085637003 -0.99537998 -0.043428998 0.1609 -0.98193699 -0.099555001\n\t\t 0.1609 -0.98193699 -0.099555001 0.20835599 -0.97713798 -0.042300001 0.13776401 -0.99037898\n\t\t 0.013093 0.434008 -0.87775201 -0.20295 0.20835599 -0.97713798 -0.042300001 0.1609\n\t\t -0.98193699 -0.099555001 0.1609 -0.98193699 -0.099555001 0.39402699 -0.87905997 -0.26831999\n\t\t 0.434008 -0.87775201 -0.20295 0.434008 -0.87775201 -0.20295 0.39402699 -0.87905997\n\t\t -0.26831999 0.645971 -0.61401701 -0.453547 0.645971 -0.61401701 -0.453547 0.69235802\n\t\t -0.60968101 -0.38591501 0.434008 -0.87775201 -0.20295 0.836357 -0.23088001 -0.49719301\n\t\t 0.69235802 -0.60968101 -0.38591501 0.645971 -0.61401701 -0.453547 0.645971 -0.61401701\n\t\t -0.453547 0.79280102 -0.23762301 -0.56125098 0.836357 -0.23088001 -0.49719301 0.836357\n\t\t -0.23088001 -0.49719301 0.79280102 -0.23762301 -0.56125098 0.81347901 0.124242 -0.568169\n\t\t 0.81347901 0.124242 -0.568169 0.84072101 0.15024801 -0.52020502 0.836357 -0.23088001\n\t\t -0.49719301 0.738199 0.481105 -0.47286499 0.84072101 0.15024801 -0.52020502 0.81347901\n\t\t 0.124242 -0.568169 0.81347901 0.124242 -0.568169 0.71915197 0.488581 -0.49407399\n\t\t 0.738199 0.481105 -0.47286499 0.738199 0.481105 -0.47286499 0.71915197 0.488581 -0.49407399\n\t\t 0.60269803 0.680462 -0.416805 0.60269803 0.680462 -0.416805 0.64019901 0.64471602\n\t\t -0.41771501 0.738199 0.481105 -0.47286499 0.88700801 0.01407 -0.461541 0.84308702\n\t\t 0.166054 -0.51149797 0.84654599 0.137154 -0.51434302 0.84654599 0.137154 -0.51434302\n\t\t 0.87666202 -0.012207 -0.48095101 0.88700801 0.01407 -0.461541 0.70326 0.51510799\n\t\t -0.48999 0.62506402 0.59762698 -0.50213301 0.493256 0.74067801 -0.456175 0.493256\n\t\t 0.74067801 -0.456175 0.70783198 0.510831 -0.48787999 0.70326 0.51510799 -0.48999\n\t\t 0.17792401 0.94241703 -0.28318301 0.374075 0.84862101 -0.37404501 0.493256 0.74067801\n\t\t -0.456175 0.493256 0.74067801 -0.456175 0.328659 0.861431 -0.38719499 0.17792401\n\t\t 0.94241703 -0.28318301 0.76600403 -0.23918 -0.59668303 0.79280102 -0.23762301 -0.56125098\n\t\t 0.645971 -0.61401701 -0.453547 0.645971 -0.61401701 -0.453547 0.62052101 -0.61481303\n\t\t -0.48678401 0.76600403 -0.23918 -0.59668303 0.62052101 -0.61481303 -0.48678401 0.645971\n\t\t -0.61401701 -0.453547 0.39402699 -0.87905997 -0.26831999 0.39402699 -0.87905997 -0.26831999\n\t\t 0.37220901 -0.88022602 -0.29438499 0.62052101 -0.61481303 -0.48678401 0.37220901\n\t\t -0.88022602 -0.29438499 0.39402699 -0.87905997 -0.26831999 0.1609 -0.98193699 -0.099555001\n\t\t 0.1609 -0.98193699 -0.099555001;\n\tsetAttr \".n[664:829]\" -type \"float3\"  0.14380699 -0.98262697 -0.117316 0.37220901\n\t\t -0.88022602 -0.29438499 0.14380699 -0.98262697 -0.117316 0.1609 -0.98193699 -0.099555001\n\t\t 0.085637003 -0.99537998 -0.043428998 0.085637003 -0.99537998 -0.043428998 0.069307998\n\t\t -0.99585497 -0.058901001 0.14380699 -0.98262697 -0.117316 0.136788 -0.98303002 -0.12223\n\t\t 0.14380699 -0.98262697 -0.117316 0.069307998 -0.99585497 -0.058901001 0.069307998\n\t\t -0.99585497 -0.058901001 0.063602 -0.995929 -0.063876003 0.136788 -0.98303002 -0.12223\n\t\t 0.36204699 -0.88184601 -0.30210799 0.37220901 -0.88022602 -0.29438499 0.14380699\n\t\t -0.98262697 -0.117316 0.14380699 -0.98262697 -0.117316 0.136788 -0.98303002 -0.12223\n\t\t 0.36204699 -0.88184601 -0.30210799 0.37220901 -0.88022602 -0.29438499 0.36204699\n\t\t -0.88184601 -0.30210799 0.60952598 -0.61694199 -0.497857 0.60952598 -0.61694199 -0.497857\n\t\t 0.62052101 -0.61481303 -0.48678401 0.37220901 -0.88022602 -0.29438499 0.75531501\n\t\t -0.241863 -0.60909897 0.76600403 -0.23918 -0.59668303 0.62052101 -0.61481303 -0.48678401\n\t\t 0.62052101 -0.61481303 -0.48678401 0.60952598 -0.61694199 -0.497857 0.75531501 -0.241863\n\t\t -0.60909897 0.76600403 -0.23918 -0.59668303 0.75531501 -0.241863 -0.60909897 0.77061099\n\t\t 0.102362 -0.62903202 0.77061099 0.102362 -0.62903202 0.78868502 0.102943 -0.60611802\n\t\t 0.76600403 -0.23918 -0.59668303 0.79280102 -0.23762301 -0.56125098 0.76600403 -0.23918\n\t\t -0.59668303 0.78868502 0.102943 -0.60611802 0.78868502 0.102943 -0.60611802 0.81347901\n\t\t 0.124242 -0.568169 0.79280102 -0.23762301 -0.56125098 0.78868502 0.102943 -0.60611802\n\t\t 0.77061099 0.102362 -0.62903202 0.73377502 0.28721699 -0.61569601 0.73377502 0.28721699\n\t\t -0.61569601 0.71402502 0.45095 -0.53554899 0.78868502 0.102943 -0.60611802 0.81347901\n\t\t 0.124242 -0.568169 0.78868502 0.102943 -0.60611802 0.71402502 0.45095 -0.53554899\n\t\t 0.71402502 0.45095 -0.53554899 0.71915197 0.488581 -0.49407399 0.81347901 0.124242\n\t\t -0.568169 0.71915197 0.488581 -0.49407399 0.71402502 0.45095 -0.53554899 0.69906998\n\t\t 0.50863099 -0.50258797 0.69906998 0.50863099 -0.50258797 0.60269803 0.680462 -0.416805\n\t\t 0.71915197 0.488581 -0.49407399 0.84308702 0.166054 -0.51149797 0.69906998 0.50863099\n\t\t -0.50258797 0.707618 0.48162401 -0.51702601 0.707618 0.48162401 -0.51702601 0.84654599\n\t\t 0.137154 -0.51434302 0.84308702 0.166054 -0.51149797 0.623074 0.566248 -0.53957498\n\t\t 0.707618 0.48162401 -0.51702601 0.69906998 0.50863099 -0.50258797 0.69906998 0.50863099\n\t\t -0.50258797 0.64538503 0.48616701 -0.58916903 0.623074 0.566248 -0.53957498 0.64538503\n\t\t 0.48616701 -0.58916903 0.69906998 0.50863099 -0.50258797 0.71402502 0.45095 -0.53554899\n\t\t 0.71402502 0.45095 -0.53554899 0.73377502 0.28721699 -0.61569601 0.64538503 0.48616701\n\t\t -0.58916903 0.64538503 0.48616701 -0.58916903 0.73377502 0.28721699 -0.61569601 0.77061099\n\t\t 0.102362 -0.62903202 0.62506402 0.59762698 -0.50213301 0.707618 0.48162401 -0.51702601\n\t\t 0.43675801 0.78699601 -0.435752 0.43675801 0.78699601 -0.435752 0.493256 0.74067801\n\t\t -0.456175 0.62506402 0.59762698 -0.50213301 0.707618 0.48162401 -0.51702601 0.623074\n\t\t 0.566248 -0.53957498 0.373649 0.807697 -0.456083 0.373649 0.807697 -0.456083 0.43675801\n\t\t 0.78699601 -0.435752 0.707618 0.48162401 -0.51702601 0.43675801 0.78699601 -0.435752\n\t\t 0.373649 0.807697 -0.456083 0.092625998 0.95622897 -0.27757299 0.092625998 0.95622897\n\t\t -0.27757299 0.104648 0.95807201 -0.26673299 0.43675801 0.78699601 -0.435752 0.493256\n\t\t 0.74067801 -0.456175 0.43675801 0.78699601 -0.435752 0.104648 0.95807201 -0.26673299\n\t\t 0.104648 0.95807201 -0.26673299 0.328659 0.861431 -0.38719499 0.493256 0.74067801\n\t\t -0.456175 0.623074 0.566248 -0.53957498 0.64538503 0.48616701 -0.58916903 0.41197699\n\t\t 0.73157299 -0.54320902 0.41197699 0.73157299 -0.54320902 0.373649 0.807697 -0.456083\n\t\t 0.623074 0.566248 -0.53957498 0.092625998 0.95622897 -0.27757299 0.373649 0.807697\n\t\t -0.456083 0.41197699 0.73157299 -0.54320902 0.41197699 0.73157299 -0.54320902 0.119422\n\t\t 0.92125601 -0.37016901 0.092625998 0.95622897 -0.27757299 0.092625998 0.95622897\n\t\t -0.27757299 0.119422 0.92125601 -0.37016901 -0.159216 0.97684002 -0.142949 -0.159216\n\t\t 0.97684002 -0.142949 -0.154732 0.98338699 -0.094913997 0.092625998 0.95622897 -0.27757299\n\t\t 0.104648 0.95807201 -0.26673299 0.092625998 0.95622897 -0.27757299 -0.154732 0.98338699\n\t\t -0.094913997 -0.225839 0.97318202 -0.043733001 -0.154732 0.98338699 -0.094913997\n\t\t -0.159216 0.97684002 -0.142949 -0.159216 0.97684002 -0.142949 -0.26686001 0.96294099\n\t\t -0.039126001 -0.225839 0.97318202 -0.043733001 -0.087834001 0.98338801 -0.158852\n\t\t 0.104648 0.95807201 -0.26673299 -0.158576 0.98218399 -0.100834 -0.154732 0.98338699\n\t\t -0.094913997 -0.158576 0.98218399 -0.100834 0.104648 0.95807201 -0.26673299 -0.158576\n\t\t 0.98218399 -0.100834 -0.154732 0.98338699 -0.094913997 -0.225839 0.97318202 -0.043733001\n\t\t -0.158576 0.98218399 -0.100834 -0.159036 0.979087 -0.12686899 -0.087834001 0.98338801\n\t\t -0.158852 0.17792401 0.94241703 -0.28318301 -0.087834001 0.98338801 -0.158852 -0.159036\n\t\t 0.979087 -0.12686899 -0.159036 0.979087 -0.12686899 -0.099219002 0.983917 -0.14853799\n\t\t 0.17792401 0.94241703 -0.28318301 0.165841 0.95210803 -0.25687999 0.17792401 0.94241703\n\t\t -0.28318301 -0.099219002 0.983917 -0.14853799 0.374075 0.84862101 -0.37404501 0.17792401\n\t\t 0.94241703 -0.28318301 0.165841 0.95210803 -0.25687999 0.165841 0.95210803 -0.25687999\n\t\t 0.36418399 0.86451298 -0.34639099 0.374075 0.84862101 -0.37404501 0.70783198 0.510831\n\t\t -0.48787999 0.74123198 0.48315799 -0.46597499 0.73966402 0.486294 -0.46520501 0.73966402\n\t\t 0.486294 -0.46520501 0.70326 0.51510799 -0.48999;\n\tsetAttr \".n[830:995]\" -type \"float3\"  0.70783198 0.510831 -0.48787999 0.87666202\n\t\t -0.012207 -0.48095101 0.89944202 -0.037569001 -0.43542299 0.90029502 -0.026947999\n\t\t -0.43444499 0.90029502 -0.026947999 -0.43444499 0.88700801 0.01407 -0.461541 0.87666202\n\t\t -0.012207 -0.48095101 0.738199 0.481105 -0.47286499 0.64019901 0.64471602 -0.41771501\n\t\t 0.62741601 0.66315502 -0.408135 0.62741601 0.66315502 -0.408135 0.72547799 0.51693898\n\t\t -0.45437399 0.738199 0.481105 -0.47286499 0.84072101 0.15024801 -0.52020502 0.738199\n\t\t 0.481105 -0.47286499 0.72547799 0.51693898 -0.45437399 0.72547799 0.51693898 -0.45437399\n\t\t 0.84742898 0.205487 -0.48953 0.84072101 0.15024801 -0.52020502 0.84072101 0.15024801\n\t\t -0.52020502 0.84742898 0.205487 -0.48953 0.86914802 -0.15622599 -0.469228 0.86914802\n\t\t -0.15622599 -0.469228 0.836357 -0.23088001 -0.49719301 0.84072101 0.15024801 -0.52020502\n\t\t 0.69235802 -0.60968101 -0.38591501 0.836357 -0.23088001 -0.49719301 0.86914802 -0.15622599\n\t\t -0.469228 0.86914802 -0.15622599 -0.469228 0.76213998 -0.52988398 -0.371975 0.69235802\n\t\t -0.60968101 -0.38591501 0.69235802 -0.60968101 -0.38591501 0.76213998 -0.52988398\n\t\t -0.371975 0.50976503 -0.84126598 -0.180034 0.50976503 -0.84126598 -0.180034 0.434008\n\t\t -0.87775201 -0.20295 0.69235802 -0.60968101 -0.38591501 0.20835599 -0.97713798 -0.042300001\n\t\t 0.434008 -0.87775201 -0.20295 0.50976503 -0.84126598 -0.180034 0.50976503 -0.84126598\n\t\t -0.180034 0.253764 -0.96726298 -0.002258 0.20835599 -0.97713798 -0.042300001 0.13776401\n\t\t -0.99037898 0.013093 0.20835599 -0.97713798 -0.042300001 0.253764 -0.96726298 -0.002258\n\t\t 0.253764 -0.96726298 -0.002258 0.16395 -0.98418498 0.067080997 0.13776401 -0.99037898\n\t\t 0.013093 0.067447998 -0.98715299 -0.14484499 0.069247 -0.98654902 -0.148077 0.023164\n\t\t -0.99699098 -0.073977999 0.023164 -0.99699098 -0.073977999 0.024324 -0.99699301 -0.073581003\n\t\t 0.067447998 -0.98715299 -0.14484499 0.230939 -0.89638001 -0.37837699 0.069247 -0.98654902\n\t\t -0.148077 0.067447998 -0.98715299 -0.14484499 0.067447998 -0.98715299 -0.14484499\n\t\t 0.230204 -0.89707297 -0.37718299 0.230939 -0.89638001 -0.37837699 0.230939 -0.89638001\n\t\t -0.37837699 0.230204 -0.89707297 -0.37718299 0.42223799 -0.63746202 -0.64448202 0.42223799\n\t\t -0.63746202 -0.64448202 0.42028201 -0.64194399 -0.641303 0.230939 -0.89638001 -0.37837699\n\t\t 0.53653002 -0.26527399 -0.80110198 0.42028201 -0.64194399 -0.641303 0.42223799 -0.63746202\n\t\t -0.64448202 0.42223799 -0.63746202 -0.64448202 0.538028 -0.25279301 -0.80412799 0.53653002\n\t\t -0.26527399 -0.80110198 0.53653002 -0.26527399 -0.80110198 0.538028 -0.25279301 -0.80412799\n\t\t 0.55584902 0.159159 -0.81590497 0.55584902 0.159159 -0.81590497 0.55675602 0.144232\n\t\t -0.81805903 0.53653002 -0.26527399 -0.80110198 0.49218801 0.50073397 -0.71205097\n\t\t 0.55675602 0.144232 -0.81805903 0.55584902 0.159159 -0.81590497 0.55584902 0.159159\n\t\t -0.81590497 0.48736599 0.51425397 -0.70570302 0.49218801 0.50073397 -0.71205097 0.49218801\n\t\t 0.50073397 -0.71205097 0.48736599 0.51425397 -0.70570302 0.36651 0.77361101 -0.51691097\n\t\t 0.36651 0.77361101 -0.51691097 0.37163201 0.76612401 -0.524351 0.49218801 0.50073397\n\t\t -0.71205097 0.19409899 0.946446 -0.25800499 0.37163201 0.76612401 -0.524351 0.36651\n\t\t 0.77361101 -0.51691097 0.36651 0.77361101 -0.51691097 0.18873 0.949727 -0.2498 0.19409899\n\t\t 0.946446 -0.25800499 0.19409899 0.946446 -0.25800499 0.18873 0.949727 -0.2498 -0.0042730002\n\t\t 0.99939299 0.034577999 -0.0042730002 0.99939299 0.034577999 -0.003449 0.99946499\n\t\t 0.032533001 0.19409899 0.946446 -0.25800499 -0.077120997 0.986215 0.14639901 -0.003449\n\t\t 0.99946499 0.032533001 -0.0042730002 0.99939299 0.034577999 -0.0042730002 0.99939299\n\t\t 0.034577999 -0.074803002 0.98635697 0.14664599 -0.077120997 0.986215 0.14639901 0.918697\n\t\t 0.064609997 -0.389642 0.91216201 -0.024781 -0.40908101 0.86624098 0.22630399 -0.44543499\n\t\t 0.86624098 0.22630399 -0.44543499 0.88082302 0.162211 -0.44479099 0.918697 0.064609997\n\t\t -0.389642 0.88082302 0.162211 -0.44479099 0.86624098 0.22630399 -0.44543499 0.76340699\n\t\t 0.45165399 -0.46175599 0.76340699 0.45165399 -0.46175599 0.66993302 0.50171 -0.54724503\n\t\t 0.88082302 0.162211 -0.44479099 0.20353299 0.82323003 -0.52996898 0.66993302 0.50171\n\t\t -0.54724503 0.30214 0.81309301 -0.497585 0.30214 0.81309301 -0.497585 0.098181002\n\t\t 0.88664901 -0.45190099 0.20353299 0.82323003 -0.52996898 0.20353299 0.82323003 -0.52996898\n\t\t 0.098181002 0.88664901 -0.45190099 -0.195812 0.9052 -0.37718701 -0.195812 0.9052\n\t\t -0.37718701 -0.112677 0.87626499 -0.46846899 0.20353299 0.82323003 -0.52996898 -0.235818\n\t\t 0.86026001 -0.452043 -0.112677 0.87626499 -0.46846899 -0.195812 0.9052 -0.37718701\n\t\t -0.195812 0.9052 -0.37718701 -0.31104699 0.87539798 -0.37003899 -0.235818 0.86026001\n\t\t -0.452043 -0.099219002 0.983917 -0.14853799 -0.069034003 0.98765701 -0.14060099 0.165841\n\t\t 0.95210803 -0.25687999 -0.125862 0.98556203 -0.113257 -0.069034003 0.98765701 -0.14060099\n\t\t -0.099219002 0.983917 -0.14853799 -0.099219002 0.983917 -0.14853799 -0.173408 0.97828102\n\t\t -0.113561 -0.125862 0.98556203 -0.113257 -0.173408 0.97828102 -0.113561 -0.099219002\n\t\t 0.983917 -0.14853799 -0.159036 0.979087 -0.12686899 -0.159036 0.979087 -0.12686899\n\t\t -0.24879 0.96408898 -0.092929997 -0.173408 0.97828102 -0.113561 -0.22867601 0.97177398\n\t\t -0.057985 -0.24879 0.96408898 -0.092929997 -0.159036 0.979087 -0.12686899 -0.159036\n\t\t 0.979087 -0.12686899 -0.158576 0.98218399 -0.100834 -0.22867601 0.97177398 -0.057985\n\t\t -0.225839 0.97318202 -0.043733001 -0.22867601 0.97177398 -0.057985 -0.158576 0.98218399\n\t\t -0.100834 -0.130468 -0.97013801 -0.204477 -0.050020002 -0.98819399 -0.144811 0.002228\n\t\t -0.97534198 -0.220686;\n\tsetAttr \".n[996:1161]\" -type \"float3\"  0.002228 -0.97534198 -0.220686 -0.072361\n\t\t -0.95650202 -0.282608 -0.130468 -0.97013801 -0.204477 0.43633199 -0.87046599 0.227825\n\t\t 0.48501399 -0.86186701 0.148141 0.477837 -0.864604 0.155342 0.477837 -0.864604 0.155342\n\t\t 0.48501399 -0.86186701 0.148141 0.62833703 -0.77589899 -0.056338999 0.081334002 -0.862535\n\t\t -0.49941701 -0.072361 -0.95650202 -0.282608 0.002228 -0.97534198 -0.220686 0.002228\n\t\t -0.97534198 -0.220686 0.156501 -0.88068497 -0.44710299 0.081334002 -0.862535 -0.49941701\n\t\t 0.62833703 -0.77589899 -0.056338999 0.61761701 -0.78522801 -0.044344001 0.477837\n\t\t -0.864604 0.155342 0.75474101 -0.47506201 0.45241699 0.84355801 -0.42306101 0.33080101\n\t\t 0.83174801 -0.42925701 0.35204199 0.931831 -0.29615399 0.20972501 0.83174801 -0.42925701\n\t\t 0.35204199 0.84355801 -0.42306101 0.33080101 0.84355801 -0.42306101 0.33080101 0.93667603\n\t\t -0.28776899 0.19956701 0.931831 -0.29615399 0.20972501 0.78424197 -0.55327499 -0.28080401\n\t\t 0.61761701 -0.78522801 -0.044344001 0.62833703 -0.77589899 -0.056338999 0.986808\n\t\t -0.097203001 0.129463 0.931831 -0.29615399 0.20972501 0.93667603 -0.28776899 0.19956701\n\t\t 0.93667603 -0.28776899 0.19956701 0.98736101 -0.092869997 0.128425 0.986808 -0.097203001\n\t\t 0.129463 0.98641199 0.116431 0.115912 0.986808 -0.097203001 0.129463 0.98736101 -0.092869997\n\t\t 0.128425 0.98736101 -0.092869997 0.128425 0.98668599 0.112799 0.117163 0.98641199\n\t\t 0.116431 0.115912 0.94023401 0.297959 0.164864 0.98641199 0.116431 0.115912 0.98668599\n\t\t 0.112799 0.117163 0.98668599 0.112799 0.117163 0.94194502 0.29243499 0.164987 0.94023401\n\t\t 0.297959 0.164864 0.870148 0.42373601 0.25157401 0.94023401 0.297959 0.164864 0.94194502\n\t\t 0.29243499 0.164987 0.94194502 0.29243499 0.164987 0.870911 0.42077601 0.253894 0.870148\n\t\t 0.42373601 0.25157401 0.78267401 0.49093801 0.382624 0.870148 0.42373601 0.25157401\n\t\t 0.870911 0.42077601 0.253894 0.870911 0.42077601 0.253894 0.78621697 0.48401201 0.38418201\n\t\t 0.78267401 0.49093801 0.382624 0.69682503 0.50110298 0.51315802 0.78267401 0.49093801\n\t\t 0.382624 0.78621697 0.48401201 0.38418201 0.78621697 0.48401201 0.38418201 0.70771199\n\t\t 0.492704 0.50634599 0.69682503 0.50110298 0.51315802 0.67341 0.48620501 0.55688697\n\t\t 0.69682503 0.50110298 0.51315802 0.70771199 0.492704 0.50634599 0.70771199 0.492704\n\t\t 0.50634599 0.68136102 0.47899199 0.55345702 0.67341 0.48620501 0.55688697 0.34306899\n\t\t 0.86000901 0.37774 0.345781 0.856884 0.38234299 0.40255401 0.87167299 0.27952999\n\t\t 0.40255401 0.87167299 0.27952999 0.404589 0.87177402 0.27625701 0.34306899 0.86000901\n\t\t 0.37774 -0.22514001 0.97432202 -0.00296 -0.144814 0.98265702 -0.11582 -0.066379003\n\t\t 0.99645001 -0.051791001 -0.066379003 0.99645001 -0.051791001 -0.14469001 0.98762101\n\t\t 0.06058 -0.22514001 0.97432202 -0.00296 0.40255401 0.87167299 0.27952999 0.55257398\n\t\t 0.832371 0.042665001 0.54961902 0.83393598 0.049685001 0.54961902 0.83393598 0.049685001\n\t\t 0.404589 0.87177402 0.27625701 0.40255401 0.87167299 0.27952999 0.54961902 0.83393598\n\t\t 0.049685001 0.55257398 0.832371 0.042665001 0.69854701 0.691284 -0.18482199 -0.066379003\n\t\t 0.99645001 -0.051791001 -0.144814 0.98265702 -0.11582 0.042665001 0.92343998 -0.38136399\n\t\t 0.042665001 0.92343998 -0.38136399 0.119117 0.93822497 -0.32487801 -0.066379003 0.99645001\n\t\t -0.051791001 0.69854701 0.691284 -0.18482199 0.69458902 0.69642103 -0.1804 0.54961902\n\t\t 0.83393598 0.049685001 0.042665001 0.92343998 -0.38136399 0.216841 0.74739301 -0.62800002\n\t\t 0.288497 0.76264298 -0.57891798 0.288497 0.76264298 -0.57891798 0.119117 0.93822497\n\t\t -0.32487801 0.042665001 0.92343998 -0.38136399 0.288497 0.76264298 -0.57891798 0.216841\n\t\t 0.74739301 -0.62800002 0.33083099 0.485138 -0.809439 0.33083099 0.485138 -0.809439\n\t\t 0.40392399 0.50366098 -0.76365602 0.288497 0.76264298 -0.57891798 0.81367302 0.47289601\n\t\t -0.338092 0.69458902 0.69642103 -0.1804 0.69854701 0.691284 -0.18482199 0.69854701\n\t\t 0.691284 -0.18482199 0.815328 0.46853501 -0.34017 0.81367302 0.47289601 -0.338092\n\t\t 0.81367302 0.47289601 -0.338092 0.815328 0.46853501 -0.34017 0.88937098 0.15095 -0.43154699\n\t\t 0.88937098 0.15095 -0.43154699 0.88869298 0.15659501 -0.430933 0.81367302 0.47289601\n\t\t -0.338092 0.33083099 0.485138 -0.809439 0.38872001 0.130133 -0.91211998 0.46624699\n\t\t 0.145456 -0.87261498 0.46624699 0.145456 -0.87261498 0.40392399 0.50366098 -0.76365602\n\t\t 0.33083099 0.485138 -0.809439 0.885032 -0.20802 -0.41646799 0.88869298 0.15659501\n\t\t -0.430933 0.88937098 0.15095 -0.43154699 0.46624699 0.145456 -0.87261498 0.38872001\n\t\t 0.130133 -0.91211998 0.36372399 -0.26746801 -0.892281 0.36372399 -0.26746801 -0.892281\n\t\t 0.446587 -0.26252601 -0.85535997 0.46624699 0.145456 -0.87261498 0.88937098 0.15095\n\t\t -0.43154699 0.88326401 -0.218794 -0.414698 0.885032 -0.20802 -0.41646799 0.885032\n\t\t -0.20802 -0.41646799 0.88326401 -0.218794 -0.414698 0.78424197 -0.55327499 -0.28080401\n\t\t 0.78424197 -0.55327499 -0.28080401 0.78812099 -0.54372501 -0.288495 0.885032 -0.20802\n\t\t -0.41646799 0.36372399 -0.26746801 -0.892281 0.25672799 -0.61902201 -0.74222797 0.33397499\n\t\t -0.62845701 -0.70249701 0.33397499 -0.62845701 -0.70249701 0.446587 -0.26252601 -0.85535997\n\t\t 0.36372399 -0.26746801 -0.892281 0.62833703 -0.77589899 -0.056338999 0.78812099 -0.54372501\n\t\t -0.288495 0.78424197 -0.55327499 -0.28080401 0.33397499 -0.62845701 -0.70249701 0.25672799\n\t\t -0.61902201 -0.74222797 0.081334002 -0.862535 -0.49941701 0.081334002 -0.862535 -0.49941701\n\t\t 0.156501 -0.88068497 -0.44710299 0.33397499 -0.62845701 -0.70249701 -0.65562099 -0.468658\n\t\t -0.59204799;\n\tsetAttr \".n[1162:1327]\" -type \"float3\"  -0.58094501 -0.43023899 -0.69093901 -0.58063\n\t\t -0.42550099 -0.69413102 -0.58063 -0.42550099 -0.69413102 -0.65405202 -0.464652 -0.59692103\n\t\t -0.65562099 -0.468658 -0.59204799 -0.67863297 -0.47030699 -0.56415403 -0.65562099\n\t\t -0.468658 -0.59204799 -0.65405202 -0.464652 -0.59692103 -0.65405202 -0.464652 -0.59692103\n\t\t -0.67891997 -0.468402 -0.565391 -0.67863297 -0.47030699 -0.56415403 -0.49217999 -0.32206699\n\t\t -0.80872297 -0.58063 -0.42550099 -0.69413102 -0.58094501 -0.43023899 -0.69093901\n\t\t -0.58094501 -0.43023899 -0.69093901 -0.490136 -0.31871101 -0.81128901 -0.49217999\n\t\t -0.32206699 -0.80872297 -0.438472 -0.157084 -0.884911 -0.49217999 -0.32206699 -0.80872297\n\t\t -0.490136 -0.31871101 -0.81128901 -0.490136 -0.31871101 -0.81128901 -0.437215 -0.145973\n\t\t -0.88743198 -0.438472 -0.157084 -0.884911 -0.42098299 0.031709 -0.90651399 -0.438472\n\t\t -0.157084 -0.884911 -0.437215 -0.145973 -0.88743198 -0.437215 -0.145973 -0.88743198\n\t\t -0.420371 0.043733999 -0.90629798 -0.42098299 0.031709 -0.90651399 -0.443322 0.213146\n\t\t -0.87065202 -0.42098299 0.031709 -0.90651399 -0.420371 0.043733999 -0.90629798 -0.420371\n\t\t 0.043733999 -0.90629798 -0.44189399 0.220779 -0.86947501 -0.443322 0.213146 -0.87065202\n\t\t -0.49929699 0.361929 -0.78721702 -0.443322 0.213146 -0.87065202 -0.44189399 0.220779\n\t\t -0.86947501 -0.44189399 0.220779 -0.86947501 -0.49251601 0.36024699 -0.79224402 -0.49929699\n\t\t 0.361929 -0.78721702 -0.61273903 0.44790301 -0.65110201 -0.49929699 0.361929 -0.78721702\n\t\t -0.49251601 0.36024699 -0.79224402 -0.49251601 0.36024699 -0.79224402 -0.60254699\n\t\t 0.44311199 -0.66376901 -0.61273903 0.44790301 -0.65110201 -0.72806501 0.455529 -0.51226401\n\t\t -0.61273903 0.44790301 -0.65110201 -0.60254699 0.44311199 -0.66376901 -0.60254699\n\t\t 0.44311199 -0.66376901 -0.72849703 0.45046499 -0.51611298 -0.72806501 0.455529 -0.51226401\n\t\t -0.77397501 0.43590999 -0.459288 -0.72806501 0.455529 -0.51226401 -0.72849703 0.45046499\n\t\t -0.51611298 -0.72849703 0.45046499 -0.51611298 -0.77928603 0.42791399 -0.45782399\n\t\t -0.77397501 0.43590999 -0.459288 0.14997 -0.98005301 -0.13040701 0.137701 -0.98303902\n\t\t -0.121129 0.064427003 -0.99593598 -0.062931001 0.064427003 -0.99593598 -0.062931001\n\t\t 0.064487003 -0.99593401 -0.062899999 0.14997 -0.98005301 -0.13040701 0.36342701 -0.88192302\n\t\t -0.300221 0.137701 -0.98303902 -0.121129 0.14997 -0.98005301 -0.13040701 0.14997\n\t\t -0.98005301 -0.13040701 0.38741499 -0.86553198 -0.317433 0.36342701 -0.88192302 -0.300221\n\t\t 0.36342701 -0.88192302 -0.300221 0.38741499 -0.86553198 -0.317433 0.62467402 -0.59738898\n\t\t -0.50290102 0.62467402 -0.59738898 -0.50290102 0.61118102 -0.61780298 -0.49474901\n\t\t 0.36342701 -0.88192302 -0.300221 0.75643802 -0.244791 -0.60653001 0.61118102 -0.61780298\n\t\t -0.49474901 0.62467402 -0.59738898 -0.50290102 0.62467402 -0.59738898 -0.50290102\n\t\t 0.760755 -0.228986 -0.60730398 0.75643802 -0.244791 -0.60653001 0.75643802 -0.244791\n\t\t -0.60653001 0.760755 -0.228986 -0.60730398 0.769117 0.150399 -0.62115902 0.769117\n\t\t 0.150399 -0.62115902 0.773929 0.14563601 -0.61629897 0.75643802 -0.244791 -0.60653001\n\t\t 0.64538503 0.48616701 -0.58916903 0.773929 0.14563601 -0.61629897 0.769117 0.150399\n\t\t -0.62115902 0.769117 0.150399 -0.62115902 0.63647097 0.48793599 -0.59734601 0.64538503\n\t\t 0.48616701 -0.58916903 0.64538503 0.48616701 -0.58916903 0.63647097 0.48793599 -0.59734601\n\t\t 0.37379801 0.72684401 -0.57617098 0.37379801 0.72684401 -0.57617098 0.41197699 0.73157299\n\t\t -0.54320902 0.64538503 0.48616701 -0.58916903 0.119422 0.92125601 -0.37016901 0.41197699\n\t\t 0.73157299 -0.54320902 0.37379801 0.72684401 -0.57617098 0.37379801 0.72684401 -0.57617098\n\t\t 0.028322 0.91680098 -0.398339 0.119422 0.92125601 -0.37016901 0.119422 0.92125601\n\t\t -0.37016901 0.028322 0.91680098 -0.398339 -0.19559801 0.96913999 -0.150033 -0.19559801\n\t\t 0.96913999 -0.150033 -0.159216 0.97684002 -0.142949 0.119422 0.92125601 -0.37016901\n\t\t -0.26686001 0.96294099 -0.039126001 -0.159216 0.97684002 -0.142949 -0.19559801 0.96913999\n\t\t -0.150033 -0.19559801 0.96913999 -0.150033 -0.28922701 0.956186 -0.045350999 -0.26686001\n\t\t 0.96294099 -0.039126001 0.61118102 -0.61780298 -0.49474901 0.75643802 -0.244791 -0.60653001\n\t\t 0.75531501 -0.241863 -0.60909897 0.75531501 -0.241863 -0.60909897 0.75643802 -0.244791\n\t\t -0.60653001 0.773929 0.14563601 -0.61629897 0.75531501 -0.241863 -0.60909897 0.60952598\n\t\t -0.61694199 -0.497857 0.61118102 -0.61780298 -0.49474901 0.773929 0.14563601 -0.61629897\n\t\t 0.77061099 0.102362 -0.62903202 0.75531501 -0.241863 -0.60909897 0.77061099 0.102362\n\t\t -0.62903202 0.773929 0.14563601 -0.61629897 0.64538503 0.48616701 -0.58916903 0.61118102\n\t\t -0.61780298 -0.49474901 0.60952598 -0.61694199 -0.497857 0.36204699 -0.88184601 -0.30210799\n\t\t 0.36204699 -0.88184601 -0.30210799 0.36342701 -0.88192302 -0.300221 0.61118102 -0.61780298\n\t\t -0.49474901 0.137701 -0.98303902 -0.121129 0.36342701 -0.88192302 -0.300221 0.36204699\n\t\t -0.88184601 -0.30210799 0.36204699 -0.88184601 -0.30210799 0.136788 -0.98303002 -0.12223\n\t\t 0.137701 -0.98303902 -0.121129 0.137701 -0.98303902 -0.121129 0.136788 -0.98303002\n\t\t -0.12223 0.063602 -0.995929 -0.063876003 0.063602 -0.995929 -0.063876003 0.064427003\n\t\t -0.99593598 -0.062931001 0.137701 -0.98303902 -0.121129 0.072332002 -0.98337197 -0.166576\n\t\t 0.002228 -0.97534198 -0.220686 -0.050020002 -0.98819399 -0.144811 -0.050020002 -0.98819399\n\t\t -0.144811 0.02176 -0.99557602 -0.091403 0.072332002 -0.98337197 -0.166576 0.156501\n\t\t -0.88068497 -0.44710299 0.002228 -0.97534198 -0.220686 0.072332002 -0.98337197 -0.166576\n\t\t 0.072332002 -0.98337197 -0.166576 0.229812 -0.88787198 -0.39858401 0.156501 -0.88068497\n\t\t -0.44710299 0.156501 -0.88068497 -0.44710299 0.229812 -0.88787198 -0.39858401;\n\tsetAttr \".n[1328:1493]\" -type \"float3\"  0.40551299 -0.64802003 -0.64469302 0.40551299\n\t\t -0.64802003 -0.64469302 0.33397499 -0.62845701 -0.70249701 0.156501 -0.88068497 -0.44710299\n\t\t 0.446587 -0.26252601 -0.85535997 0.33397499 -0.62845701 -0.70249701 0.40551299 -0.64802003\n\t\t -0.64469302 0.40551299 -0.64802003 -0.64469302 0.50707299 -0.53731698 -0.67391998\n\t\t 0.446587 -0.26252601 -0.85535997 0.446587 -0.26252601 -0.85535997 0.58437502 0.15405899\n\t\t -0.79672498 0.55352402 0.232189 -0.79981202 0.55352402 0.232189 -0.79981202 0.46624699\n\t\t 0.145456 -0.87261498 0.446587 -0.26252601 -0.85535997 0.40392399 0.50366098 -0.76365602\n\t\t 0.46624699 0.145456 -0.87261498 0.55352402 0.232189 -0.79981202 0.55352402 0.232189\n\t\t -0.79981202 0.47640601 0.51565403 -0.71213698 0.40392399 0.50366098 -0.76365602 0.40392399\n\t\t 0.50366098 -0.76365602 0.47640601 0.51565403 -0.71213698 0.36000401 0.77122003 -0.52499199\n\t\t 0.36000401 0.77122003 -0.52499199 0.288497 0.76264298 -0.57891798 0.40392399 0.50366098\n\t\t -0.76365602 0.119117 0.93822497 -0.32487801 0.288497 0.76264298 -0.57891798 0.36000401\n\t\t 0.77122003 -0.52499199 0.36000401 0.77122003 -0.52499199 0.194074 0.94454998 -0.26487899\n\t\t 0.119117 0.93822497 -0.32487801 0.119117 0.93822497 -0.32487801 0.194074 0.94454998\n\t\t -0.26487899 0.014344 0.99982601 0.011902 0.014344 0.99982601 0.011902 -0.066379003\n\t\t 0.99645001 -0.051791001 0.119117 0.93822497 -0.32487801 -0.14469001 0.98762101 0.06058\n\t\t -0.066379003 0.99645001 -0.051791001 0.014344 0.99982601 0.011902 0.014344 0.99982601\n\t\t 0.011902 -0.05765 0.990879 0.1218 -0.14469001 0.98762101 0.06058 0.50707299 -0.53731698\n\t\t -0.67391998 0.40551299 -0.64802003 -0.64469302 0.42993101 -0.66456598 -0.61115599\n\t\t 0.42993101 -0.66456598 -0.61115599 0.59113401 -0.61237502 -0.52493602 0.50707299\n\t\t -0.53731698 -0.67391998 0.227643 -0.88337898 -0.409659 0.42993101 -0.66456598 -0.61115599\n\t\t 0.40551299 -0.64802003 -0.64469302 0.40551299 -0.64802003 -0.64469302 0.229812 -0.88787198\n\t\t -0.39858401 0.227643 -0.88337898 -0.409659 0.064792 -0.98262399 -0.17392799 0.227643\n\t\t -0.88337898 -0.409659 0.229812 -0.88787198 -0.39858401 0.229812 -0.88787198 -0.39858401\n\t\t 0.072332002 -0.98337197 -0.166576 0.064792 -0.98262399 -0.17392799 0.012513 -0.99520099\n\t\t -0.097051002 0.064792 -0.98262399 -0.17392799 0.072332002 -0.98337197 -0.166576 0.072332002\n\t\t -0.98337197 -0.166576 0.02176 -0.99557602 -0.091403 0.012513 -0.99520099 -0.097051002\n\t\t 0.83174801 -0.42925701 0.35204199 0.74824703 -0.47192299 0.466277 0.75474101 -0.47506201\n\t\t 0.45241699 0.72647601 -0.471001 0.50039101 0.75474101 -0.47506201 0.45241699 0.74824703\n\t\t -0.47192299 0.466277 0.74824703 -0.47192299 0.466277 0.72677702 -0.465657 0.50493503\n\t\t 0.72647601 -0.471001 0.50039101 0.477837 -0.864604 0.155342 0.43837401 -0.86856902\n\t\t 0.23112001 0.43633199 -0.87046599 0.227825 0.24168099 -0.96889198 0.053286999 0.243544\n\t\t -0.96859097 0.050174002 0.16654199 -0.97999299 0.108983 0.16654199 -0.97999299 0.108983\n\t\t 0.173014 -0.97841799 0.112982 0.24168099 -0.96889198 0.053286999 0.51928401 -0.84620398\n\t\t -0.119513 0.243544 -0.96859097 0.050174002 0.24168099 -0.96889198 0.053286999 0.24168099\n\t\t -0.96889198 0.053286999 0.51141399 -0.85167497 -0.114478 0.51928401 -0.84620398 -0.119513\n\t\t 0.51928401 -0.84620398 -0.119513 0.51141399 -0.85167497 -0.114478 0.78064603 -0.54610699\n\t\t -0.30390799 0.78064603 -0.54610699 -0.30390799 0.78807598 -0.53284103 -0.30824801\n\t\t 0.51928401 -0.84620398 -0.119513 0.89140999 -0.133461 -0.433101 0.78807598 -0.53284103\n\t\t -0.30824801 0.78064603 -0.54610699 -0.30390799 0.78064603 -0.54610699 -0.30390799\n\t\t 0.88970703 -0.15098 -0.43084499 0.89140999 -0.133461 -0.433101 0.89140999 -0.133461\n\t\t -0.433101 0.88970703 -0.15098 -0.43084499 0.85530502 0.20609801 -0.47536999 0.85530502\n\t\t 0.20609801 -0.47536999 0.85115802 0.219313 -0.47689801 0.89140999 -0.133461 -0.433101\n\t\t 0.715056 0.53072202 -0.45500499 0.85115802 0.219313 -0.47689801 0.85530502 0.20609801\n\t\t -0.47536999 0.85530502 0.20609801 -0.47536999 0.71909499 0.52139097 -0.45940599 0.715056\n\t\t 0.53072202 -0.45500499 0.715056 0.53072202 -0.45500499 0.71909499 0.52139097 -0.45940599\n\t\t 0.61731601 0.67567003 -0.402978 0.61731601 0.67567003 -0.402978 0.61868501 0.67722201\n\t\t -0.39824501 0.715056 0.53072202 -0.45500499 0.90889603 -0.048098002 -0.41423899 0.90682101\n\t\t -0.051729999 -0.418329 0.91196799 -0.042635001 -0.408039 0.91196799 -0.042635001\n\t\t -0.408039 0.91390198 -0.039126001 -0.404046 0.90889603 -0.048098002 -0.41423899 0.78127098\n\t\t 0.42562601 -0.45657301 0.77952802 0.44 -0.44579801 0.78085798 0.42921901 -0.453908\n\t\t 0.78085798 0.42921901 -0.453908 0.78240001 0.41476101 -0.464569 0.78127098 0.42562601\n\t\t -0.45657301 0.096165001 0.95734602 -0.27247199 0.318867 0.88057899 -0.350577 0.308947\n\t\t 0.88283199 -0.35378 0.308947 0.88283199 -0.35378 0.140081 0.94605601 -0.29215801\n\t\t 0.096165001 0.95734602 -0.27247199 0.096165001 0.95734602 -0.27247199 0.140081 0.94605601\n\t\t -0.29215801 -0.116368 0.975685 -0.185737 -0.116368 0.975685 -0.185737 -0.12705 0.97531998\n\t\t -0.18058001 0.096165001 0.95734602 -0.27247199 -0.17915 0.96966499 -0.166301 -0.12705\n\t\t 0.97531998 -0.18058001 -0.116368 0.975685 -0.185737 -0.116368 0.975685 -0.185737\n\t\t -0.18500499 0.96808398 -0.169074 -0.17915 0.96966499 -0.166301 -0.43469101 -0.116097\n\t\t -0.89306498 -0.44148999 -0.061923999 -0.895127 -0.439239 -0.075016998 -0.89523298\n\t\t -0.439239 -0.075016998 -0.89523298 -0.434995 -0.12583201 -0.89159697 -0.43469101\n\t\t -0.116097 -0.89306498 -0.43889901 -0.15659501 -0.88478601 -0.43469101 -0.116097 -0.89306498\n\t\t -0.434995 -0.12583201 -0.89159697 -0.434995 -0.12583201 -0.89159697 -0.439843 -0.165262\n\t\t -0.88273799 -0.43889901 -0.15659501 -0.88478601;\n\tsetAttr \".n[1494:1659]\" -type \"float3\"  -0.474848 -0.034029 -0.87941003 -0.439239\n\t\t -0.075016998 -0.89523298 -0.44148999 -0.061923999 -0.895127 -0.44148999 -0.061923999\n\t\t -0.895127 -0.48195499 -0.021791 -0.875925 -0.474848 -0.034029 -0.87941003 -0.52718198\n\t\t -0.036378998 -0.84897298 -0.474848 -0.034029 -0.87941003 -0.48195499 -0.021791 -0.875925\n\t\t -0.48195499 -0.021791 -0.875925 -0.53539002 -0.032106001 -0.84399498 -0.52718198\n\t\t -0.036378998 -0.84897298 -0.56033099 -0.081395 -0.82426 -0.52718198 -0.036378998\n\t\t -0.84897298 -0.53539002 -0.032106001 -0.84399498 -0.53539002 -0.032106001 -0.84399498\n\t\t -0.56415099 -0.083287999 -0.82146001 -0.56033099 -0.081395 -0.82426 -0.54986101 -0.14923801\n\t\t -0.82181603 -0.56033099 -0.081395 -0.82426 -0.56415099 -0.083287999 -0.82146001 -0.56415099\n\t\t -0.083287999 -0.82146001 -0.54736 -0.161294 -0.821208 -0.54986101 -0.14923801 -0.82181603\n\t\t -0.54986101 -0.14923801 -0.82181603 -0.54736 -0.161294 -0.821208 -0.50139701 -0.207591\n\t\t -0.83994502 -0.50139701 -0.207591 -0.83994502 -0.50093502 -0.204262 -0.84103602 -0.54986101\n\t\t -0.14923801 -0.82181603 -0.50093502 -0.204262 -0.84103602 -0.50139701 -0.207591 -0.83994502\n\t\t -0.50155002 -0.21198601 -0.83875501 -0.50155002 -0.21198601 -0.83875501 -0.50078398\n\t\t -0.206613 -0.84055102 -0.50093502 -0.204262 -0.84103602 -0.543455 -0.161569 -0.82374299\n\t\t -0.50078398 -0.206613 -0.84055102 -0.50155002 -0.21198601 -0.83875501 -0.50155002\n\t\t -0.21198601 -0.83875501 -0.55441898 -0.16389 -0.81594098 -0.543455 -0.161569 -0.82374299\n\t\t -0.59494001 -0.16755 -0.78611201 -0.543455 -0.161569 -0.82374299 -0.55441898 -0.16389\n\t\t -0.81594098 -0.55441898 -0.16389 -0.81594098 -0.60232699 -0.176401 -0.77851498 -0.59494001\n\t\t -0.16755 -0.78611201 -0.60799301 -0.20554399 -0.76687402 -0.59494001 -0.16755 -0.78611201\n\t\t -0.60232699 -0.176401 -0.77851498 -0.60232699 -0.176401 -0.77851498 -0.60855198 -0.212597\n\t\t -0.76450503 -0.60799301 -0.20554399 -0.76687402 -0.60693198 -0.236157 -0.758856 -0.60799301\n\t\t -0.20554399 -0.76687402 -0.60855198 -0.212597 -0.76450503 -0.60855198 -0.212597 -0.76450503\n\t\t -0.607301 -0.241987 -0.75672197 -0.60693198 -0.236157 -0.758856 0.435543 0.13425501\n\t\t 0.8901 0.434441 0.164041 0.88563597 0.43724501 0.158516 0.88526303 0.43724501 0.158516\n\t\t 0.88526303 0.43724799 0.126532 0.890396 0.435543 0.13425501 0.8901 0.42997599 0.085605003\n\t\t 0.89877301 0.435543 0.13425501 0.8901 0.43724799 0.126532 0.890396 0.43724799 0.126532\n\t\t 0.890396 0.43852699 0.077914998 0.89533401 0.42997599 0.085605003 0.89877301 0.46264601\n\t\t 0.038454998 0.88570899 0.42997599 0.085605003 0.89877301 0.43852699 0.077914998 0.89533401\n\t\t 0.43852699 0.077914998 0.89533401 0.47551599 0.035859998 0.87897599 0.46264601 0.038454998\n\t\t 0.88570899 0.52005303 0.038516 0.85326499 0.46264601 0.038454998 0.88570899 0.47551599\n\t\t 0.035859998 0.87897599 0.47551599 0.035859998 0.87897599 0.52905101 0.038821001 0.84770203\n\t\t 0.52005303 0.038516 0.85326499 0.55700701 0.086369999 0.82600403 0.52005303 0.038516\n\t\t 0.85326499 0.52905101 0.038821001 0.84770203 0.52905101 0.038821001 0.84770203 0.56115103\n\t\t 0.084995002 0.82333797 0.55700701 0.086369999 0.82600403 0.545865 0.162148 0.82203299\n\t\t 0.55700701 0.086369999 0.82600403 0.56115103 0.084995002 0.82333797 0.56115103 0.084995002\n\t\t 0.82333797 0.54974699 0.150095 0.82173598 0.545865 0.162148 0.82203299 0.50195402\n\t\t 0.20890599 0.83928603 0.545865 0.162148 0.82203299 0.54974699 0.150095 0.82173598\n\t\t 0.54974699 0.150095 0.82173598 0.50176102 0.20423201 0.84055102 0.50195402 0.20890599\n\t\t 0.83928603 0.50097603 0.20682999 0.84038299 0.50195402 0.20890599 0.83928603 0.50176102\n\t\t 0.20423201 0.84055102 0.50176102 0.20423201 0.84055102 0.50529701 0.204567 0.83834797\n\t\t 0.50097603 0.20682999 0.84038299 0.55325001 0.148109 0.81974298 0.50097603 0.20682999\n\t\t 0.84038299 0.50529701 0.204567 0.83834797 0.50529701 0.204567 0.83834797 0.550906\n\t\t 0.16691101 0.81770599 0.55325001 0.148109 0.81974298 0.59989297 0.162486 0.78340697\n\t\t 0.55325001 0.148109 0.81974298 0.550906 0.16691101 0.81770599 0.550906 0.16691101\n\t\t 0.81770599 0.59320199 0.178232 0.78507602 0.59989297 0.162486 0.78340697 0.61002302\n\t\t 0.203199 0.76588601 0.59989297 0.162486 0.78340697 0.59320199 0.178232 0.78507602\n\t\t 0.59320199 0.178232 0.78507602 0.60611397 0.211072 0.76686001 0.61002302 0.203199\n\t\t 0.76588601 0.60255003 0.235826 0.76244301 0.61002302 0.203199 0.76588601 0.60611397\n\t\t 0.211072 0.76686001 0.60611397 0.211072 0.76686001 0.600133 0.241744 0.76249599 0.60255003\n\t\t 0.235826 0.76244301 0.32292399 -0.71625602 0.61862499 0.301961 -0.78752601 0.53723598\n\t\t 0.395863 -0.75440001 0.523615 0.395863 -0.75440001 0.523615 0.414056 -0.68461001\n\t\t 0.59988898 0.32292399 -0.71625602 0.61862499 0.377159 -0.788468 0.48586899 0.395863\n\t\t -0.75440001 0.523615 0.301961 -0.78752601 0.53723598 0.301961 -0.78752601 0.53723598\n\t\t 0.281295 -0.82331502 0.49297601 0.377159 -0.788468 0.48586899 0.395863 -0.75440001\n\t\t 0.523615 0.377159 -0.788468 0.48586899 0.64172202 -0.63860899 0.42470199 0.64172202\n\t\t -0.63860899 0.42470199 0.65372699 -0.602759 0.457517 0.395863 -0.75440001 0.523615\n\t\t 0.414056 -0.68461001 0.59988898 0.395863 -0.75440001 0.523615 0.65372699 -0.602759\n\t\t 0.457517 0.65372699 -0.602759 0.457517 0.66362399 -0.53647798 0.52134001 0.414056\n\t\t -0.68461001 0.59988898 0.66362399 -0.53647798 0.52134001 0.65372699 -0.602759 0.457517\n\t\t 0.90434003 -0.309737 0.29365399 0.90434003 -0.309737 0.29365399 0.89980298 -0.270096\n\t\t 0.342641 0.66362399 -0.53647798 0.52134001 0.65372699 -0.602759 0.457517 0.64172202\n\t\t -0.63860899 0.42470199 0.90642399 -0.33137801 0.261886 0.90642399 -0.33137801 0.261886;\n\tsetAttr \".n[1660:1825]\" -type \"float3\"  0.90434003 -0.309737 0.29365399 0.65372699\n\t\t -0.602759 0.457517 0.90434003 -0.309737 0.29365399 0.90642399 -0.33137801 0.261886\n\t\t 0.97662598 -0.151224 0.15275 0.97662598 -0.151224 0.15275 0.97278798 -0.13928799\n\t\t 0.185158 0.90434003 -0.309737 0.29365399 0.89980298 -0.270096 0.342641 0.90434003\n\t\t -0.309737 0.29365399 0.97278798 -0.13928799 0.185158 0.97278798 -0.13928799 0.185158\n\t\t 0.995332 0.075199999 0.060490001 0.89980298 -0.270096 0.342641 0.995332 0.075199999\n\t\t 0.060490001 0.93855602 0.316118 -0.138496 0.89485103 0.39565 -0.206645 0.89485103\n\t\t 0.39565 -0.206645 0.90600502 0.36437401 -0.215377 0.995332 0.075199999 0.060490001\n\t\t 0.93855602 0.316118 -0.138496 0.92845601 0.33452201 -0.161447 0.882698 0.41496599\n\t\t -0.22056 0.882698 0.41496599 -0.22056 0.89485103 0.39565 -0.206645 0.93855602 0.316118\n\t\t -0.138496 0.89485103 0.39565 -0.206645 0.882698 0.41496599 -0.22056 0.82266802 0.49495599\n\t\t -0.279706 0.82266802 0.49495599 -0.279706 0.82938898 0.48427799 -0.278548 0.89485103\n\t\t 0.39565 -0.206645 0.90600502 0.36437401 -0.215377 0.89485103 0.39565 -0.206645 0.82938898\n\t\t 0.48427799 -0.278548 0.82938898 0.48427799 -0.278548 0.822707 0.47903001 -0.306077\n\t\t 0.90600502 0.36437401 -0.215377 0.66362399 -0.53647798 0.52134001 0.89980298 -0.270096\n\t\t 0.342641 0.894665 -0.242534 0.37516999 0.894665 -0.242534 0.37516999 0.66930997 -0.486013\n\t\t 0.561975 0.66362399 -0.53647798 0.52134001 0.414056 -0.68461001 0.59988898 0.66362399\n\t\t -0.53647798 0.52134001 0.66930997 -0.486013 0.561975 0.66930997 -0.486013 0.561975\n\t\t 0.422234 -0.62988597 0.65189099 0.414056 -0.68461001 0.59988898 0.32292399 -0.71625602\n\t\t 0.61862499 0.414056 -0.68461001 0.59988898 0.422234 -0.62988597 0.65189099 0.422234\n\t\t -0.62988597 0.65189099 0.33122599 -0.66361099 0.670753 0.32292399 -0.71625602 0.61862499\n\t\t 0.422234 -0.62988597 0.65189099 0.66930997 -0.486013 0.561975 0.67212701 -0.47018\n\t\t 0.57199299 0.67212701 -0.47018 0.57199299 0.42375699 -0.60864198 0.67080897 0.422234\n\t\t -0.62988597 0.65189099 0.33122599 -0.66361099 0.670753 0.422234 -0.62988597 0.65189099\n\t\t 0.42375699 -0.60864198 0.67080897 0.42375699 -0.60864198 0.67080897 0.332266 -0.64157999\n\t\t 0.69135702 0.33122599 -0.66361099 0.670753 0.89338398 -0.240887 0.37926 0.67212701\n\t\t -0.47018 0.57199299 0.66930997 -0.486013 0.561975 0.66930997 -0.486013 0.561975 0.894665\n\t\t -0.242534 0.37516999 0.89338398 -0.240887 0.37926 0.99272603 0.032228 0.116003 0.89338398\n\t\t -0.240887 0.37926 0.894665 -0.242534 0.37516999 0.894665 -0.242534 0.37516999 0.99338102\n\t\t 0.059266999 0.098392002 0.99272603 0.032228 0.116003 0.99338102 0.059266999 0.098392002\n\t\t 0.894665 -0.242534 0.37516999 0.89980298 -0.270096 0.342641 0.89980298 -0.270096\n\t\t 0.342641 0.995332 0.075199999 0.060490001 0.99338102 0.059266999 0.098392002 0.93580699\n\t\t 0.309037 -0.169595 0.99338102 0.059266999 0.098392002 0.995332 0.075199999 0.060490001\n\t\t 0.995332 0.075199999 0.060490001 0.90600502 0.36437401 -0.215377 0.93580699 0.309037\n\t\t -0.169595 0.882083 0.386655 -0.269124 0.93580699 0.309037 -0.169595 0.90600502 0.36437401\n\t\t -0.215377 0.90600502 0.36437401 -0.215377 0.822707 0.47903001 -0.306077 0.882083\n\t\t 0.386655 -0.269124 0.93580699 0.309037 -0.169595 0.882083 0.386655 -0.269124 0.910694\n\t\t 0.339618 -0.23515099 0.910694 0.339618 -0.23515099 0.95437098 0.26558 -0.136544 0.93580699\n\t\t 0.309037 -0.169595 0.95437098 0.26558 -0.136544 0.99272603 0.032228 0.116003 0.99338102\n\t\t 0.059266999 0.098392002 0.99338102 0.059266999 0.098392002 0.93580699 0.309037 -0.169595\n\t\t 0.95437098 0.26558 -0.136544 0.42134601 -0.60302502 0.677369 0.42375699 -0.60864198\n\t\t 0.67080897 0.67212701 -0.47018 0.57199299 0.332266 -0.64157999 0.69135702 0.42375699\n\t\t -0.60864198 0.67080897 0.42134601 -0.60302502 0.677369 0.67212701 -0.47018 0.57199299\n\t\t 0.679178 -0.46242899 0.56998003 0.42134601 -0.60302502 0.677369 0.679178 -0.46242899\n\t\t 0.56998003 0.67212701 -0.47018 0.57199299 0.89338398 -0.240887 0.37926 0.42134601\n\t\t -0.60302502 0.677369 0.332506 -0.63488901 0.69739199 0.332266 -0.64157999 0.69135702\n\t\t 0.90175599 -0.233198 0.36394399 0.89338398 -0.240887 0.37926 0.99272603 0.032228\n\t\t 0.116003 0.89338398 -0.240887 0.37926 0.90175599 -0.233198 0.36394399 0.679178 -0.46242899\n\t\t 0.56998003 0.99272603 0.032228 0.116003 0.99505401 0.032563999 0.093846999 0.90175599\n\t\t -0.233198 0.36394399 0.99505401 0.032563999 0.093846999 0.99272603 0.032228 0.116003\n\t\t 0.95437098 0.26558 -0.136544 0.95643699 0.251111 -0.148903 0.95437098 0.26558 -0.136544\n\t\t 0.910694 0.339618 -0.23515099 0.95437098 0.26558 -0.136544 0.95643699 0.251111 -0.148903\n\t\t 0.99505401 0.032563999 0.093846999 0.910694 0.339618 -0.23515099 0.92072499 0.31690899\n\t\t -0.227671 0.95643699 0.251111 -0.148903 0.68475002 0.18998 -0.70358002 0.67767501\n\t\t 0.220256 -0.70160103 0.54287899 0.30275199 -0.78334099 0.54287899 0.30275199 -0.78334099\n\t\t 0.543917 0.260483 -0.79768598 0.68475002 0.18998 -0.70358002 0.53485101 0.340992\n\t\t -0.77308398 0.54287899 0.30275199 -0.78334099 0.67767501 0.220256 -0.70160103 0.543917\n\t\t 0.260483 -0.79768598 0.54287899 0.30275199 -0.78334099 0.252514 0.42876101 -0.86741\n\t\t 0.252514 0.42876101 -0.86741 0.54287899 0.30275199 -0.78334099 0.53485101 0.340992\n\t\t -0.77308398 0.252514 0.42876101 -0.86741 0.240676 0.36974201 -0.89742202 0.543917\n\t\t 0.260483 -0.79768598 0.240676 0.36974201 -0.89742202 0.252514 0.42876101 -0.86741;\n\tsetAttr \".n[1826:1991]\" -type \"float3\"  0.067446999 0.48589399 -0.87141103 0.067446999\n\t\t 0.48589399 -0.87141103 0.044649001 0.42363301 -0.904733 0.240676 0.36974201 -0.89742202\n\t\t 0.083866999 0.54394698 -0.83491802 0.067446999 0.48589399 -0.87141103 0.252514 0.42876101\n\t\t -0.86741 0.252514 0.42876101 -0.86741 0.25541499 0.49230501 -0.83210498 0.083866999\n\t\t 0.54394698 -0.83491802 0.53485101 0.340992 -0.77308398 0.25541499 0.49230501 -0.83210498\n\t\t 0.252514 0.42876101 -0.86741 0.044649001 0.42363301 -0.904733 0.067446999 0.48589399\n\t\t -0.87141103 0.017395999 0.50445098 -0.86326498 0.017395999 0.50445098 -0.86326498\n\t\t 0.067446999 0.48589399 -0.87141103 0.083866999 0.54394698 -0.83491802 0.017395999\n\t\t 0.50445098 -0.86326498 -0.0081489999 0.44292101 -0.89652401 0.044649001 0.42363301\n\t\t -0.904733 0.083866999 0.54394698 -0.83491802 0.044101 0.54038 -0.84026498 0.017395999\n\t\t 0.50445098 -0.86326498 0.281295 -0.82331502 0.49297601 0.26732099 -0.837304 0.47692901\n\t\t 0.36003399 -0.80732203 0.46755299 0.36003399 -0.80732203 0.46755299 0.377159 -0.788468\n\t\t 0.48586899 0.281295 -0.82331502 0.49297601 0.377159 -0.788468 0.48586899 0.36003399\n\t\t -0.80732203 0.46755299 0.62793303 -0.66559398 0.40334201 0.62793303 -0.66559398 0.40334201\n\t\t 0.64172202 -0.63860899 0.42470199 0.377159 -0.788468 0.48586899 0.64172202 -0.63860899\n\t\t 0.42470199 0.62793303 -0.66559398 0.40334201 0.90523499 -0.35356599 0.235671 0.90523499\n\t\t -0.35356599 0.235671 0.90642399 -0.33137801 0.261886 0.64172202 -0.63860899 0.42470199\n\t\t 0.90642399 -0.33137801 0.261886 0.90523499 -0.35356599 0.235671 0.98039001 -0.15424199\n\t\t 0.122656 0.98039001 -0.15424199 0.122656 0.97662598 -0.151224 0.15275 0.90642399\n\t\t -0.33137801 0.261886 0.92845601 0.33452201 -0.161447 0.92469501 0.33925 -0.172768\n\t\t 0.87246001 0.430264 -0.231704 0.87246001 0.430264 -0.231704 0.882698 0.41496599 -0.22056\n\t\t 0.92845601 0.33452201 -0.161447 0.882698 0.41496599 -0.22056 0.87246001 0.430264\n\t\t -0.231704 0.81532902 0.50009298 -0.29179701 0.81532902 0.50009298 -0.29179701 0.82266802\n\t\t 0.49495599 -0.279706 0.882698 0.41496599 -0.22056 0.97812599 -0.138036 0.155615 0.97088498\n\t\t -0.21317799 0.10926 0.97077799 -0.117681 0.20914599 0.97077799 -0.117681 0.20914599\n\t\t 0.96901798 -0.122413 0.21452001 0.97812599 -0.138036 0.155615 0.975995 -0.13550401\n\t\t 0.170509 0.96901798 -0.122413 0.21452001 0.97077799 -0.117681 0.20914599 0.97077799\n\t\t -0.117681 0.20914599 0.97295099 -0.129554 0.191264 0.975995 -0.13550401 0.170509\n\t\t 0.98625499 -0.146735 0.075962 0.97088498 -0.21317799 0.10926 0.97812599 -0.138036\n\t\t 0.155615 0.97812599 -0.138036 0.155615 0.98378497 -0.13932 0.112951 0.98625499 -0.146735\n\t\t 0.075962 0.98625499 -0.146735 0.075962 0.98378497 -0.13932 0.112951 0.99629301 -0.077059999\n\t\t -0.038240001 0.99629301 -0.077059999 -0.038240001 0.98919702 -0.146005 -0.013093\n\t\t 0.98625499 -0.146735 0.075962 0.975995 -0.13550401 0.170509 0.97295099 -0.129554\n\t\t 0.191264 0.99935901 -0.014466 -0.032747 0.99935901 -0.014466 -0.032747 0.98704898\n\t\t -0.153267 -0.047366001 0.975995 -0.13550401 0.170509 0.98919702 -0.146005 -0.013093\n\t\t 0.99629301 -0.077059999 -0.038240001 0.98275101 -0.109594 -0.148964 0.98275101 -0.109594\n\t\t -0.148964 0.97303301 -0.22855499 -0.031129001 0.98919702 -0.146005 -0.013093 0.971017\n\t\t -0.045717001 -0.234598 0.97303301 -0.22855499 -0.031129001 0.98275101 -0.109594 -0.148964\n\t\t 0.98275101 -0.109594 -0.148964 0.966277 -0.051791001 -0.25224301 0.971017 -0.045717001\n\t\t -0.234598 0.98583001 0.028046999 -0.165383 0.971017 -0.045717001 -0.234598 0.966277\n\t\t -0.051791001 -0.25224301 0.966277 -0.051791001 -0.25224301 0.98869002 0.016297 -0.149085\n\t\t 0.98583001 0.028046999 -0.165383 0.99449301 -0.063814998 -0.083134003 0.98583001\n\t\t 0.028046999 -0.165383 0.98869002 0.016297 -0.149085 0.98869002 0.016297 -0.149085\n\t\t 0.99748802 -0.023133 -0.066959001 0.99449301 -0.063814998 -0.083134003 0.99683797\n\t\t -0.024567001 -0.075565003 0.99449301 -0.063814998 -0.083134003 0.99748802 -0.023133\n\t\t -0.066959001 0.98704898 -0.153267 -0.047366001 0.99935901 -0.014466 -0.032747 0.99683797\n\t\t -0.024567001 -0.075565003 0.99748802 -0.023133 -0.066959001 0.99401802 -0.016419001\n\t\t -0.107978 0.99683797 -0.024567001 -0.075565003 0.97765797 -0.066379003 -0.199444\n\t\t 0.966277 -0.051791001 -0.25224301 0.98275101 -0.109594 -0.148964 0.98275101 -0.109594\n\t\t -0.148964 0.98640501 -0.032838002 -0.161018 0.97765797 -0.066379003 -0.199444 0.98640501\n\t\t -0.032838002 -0.161018 0.98275101 -0.109594 -0.148964 0.99629301 -0.077059999 -0.038240001\n\t\t 0.98228502 -0.030579999 -0.184884 0.97765797 -0.066379003 -0.199444 0.98640501 -0.032838002\n\t\t -0.161018 0.98640501 -0.032838002 -0.161018 0.97834098 -0.048097 -0.201333 0.98228502\n\t\t -0.030579999 -0.184884 0.99370599 -0.103826 -0.042055 0.98228502 -0.030579999 -0.184884\n\t\t 0.97834098 -0.048097 -0.201333 0.97834098 -0.048097 -0.201333 0.95481998 -0.0081179999\n\t\t -0.29707301 0.99370599 -0.103826 -0.042055 0.947779 0.00082399999 -0.31892699 0.97834098\n\t\t -0.048097 -0.201333 0.98640501 -0.032838002 -0.161018 0.95481998 -0.0081179999 -0.29707301\n\t\t 0.97834098 -0.048097 -0.201333 0.947779 0.00082399999 -0.31892699 0.947779 0.00082399999\n\t\t -0.31892699 0.98640501 -0.032838002 -0.161018 0.97789901 0.032961 -0.20646299 0.98640501\n\t\t -0.032838002 -0.161018 0.99665499 0.012971 -0.080692001 0.97789901 0.032961 -0.20646299\n\t\t 0.947779 0.00082399999 -0.31892699 0.92308003 -0.0099489996 -0.38447899 0.95481998\n\t\t -0.0081179999 -0.29707301 0.99629301 -0.077059999 -0.038240001 0.99665499 0.012971\n\t\t -0.080692001 0.98640501 -0.032838002 -0.161018 0.99683797 -0.024567001 -0.075565003\n\t\t 0.99401802 -0.016419001 -0.107978 0.99287403 -0.033204 -0.114446;\n\tsetAttr \".n[1992:2157]\" -type \"float3\"  0.99287403 -0.033204 -0.114446 0.997437\n\t\t -0.048891999 -0.052248999 0.99683797 -0.024567001 -0.075565003 0.99683797 -0.024567001\n\t\t -0.075565003 0.997437 -0.048891999 -0.052248999 0.98704898 -0.153267 -0.047366001\n\t\t -0.91269499 0.033783998 -0.40724301 -0.92986602 -0.104194 -0.352835 -0.867791 0.072940998\n\t\t -0.49154699 -0.867791 0.072940998 -0.49154699 -0.86823899 0.16956399 -0.46627101\n\t\t -0.91269499 0.033783998 -0.40724301 -0.66993302 0.50171 -0.54724503 -0.86823899 0.16956399\n\t\t -0.46627101 -0.867791 0.072940998 -0.49154699 -0.867791 0.072940998 -0.49154699 -0.63144398\n\t\t 0.42244801 -0.650244 -0.66993302 0.50171 -0.54724503 -0.66993302 0.50171 -0.54724503\n\t\t -0.63144398 0.42244801 -0.650244 -0.275682 0.683146 -0.67624801 -0.275682 0.683146\n\t\t -0.67624801 -0.20353401 0.82322901 -0.52996898 -0.66993302 0.50171 -0.54724503 0.126104\n\t\t 0.87839901 -0.46099001 -0.20353401 0.82322901 -0.52996898 -0.275682 0.683146 -0.67624801\n\t\t -0.275682 0.683146 -0.67624801 0.0087890001 0.76004499 -0.64981103 0.126104 0.87839901\n\t\t -0.46099001 0.199838 0.86631298 -0.45778501 0.126104 0.87839901 -0.46099001 0.0087890001\n\t\t 0.76004499 -0.64981103 0.0087890001 0.76004499 -0.64981103 0.074709997 0.746948 -0.66067201\n\t\t 0.199838 0.86631298 -0.45778501 -0.867791 0.072940998 -0.49154699 -0.92986602 -0.104194\n\t\t -0.352835 -0.91273302 -0.133246 -0.38621801 -0.88216197 -0.44735301 0.147195 -0.90530002\n\t\t -0.42071199 0.058596998 -0.92425299 -0.381769 0.00296 -0.92425299 -0.381769 0.00296\n\t\t -0.93669599 -0.34929299 -0.024385 -0.88216197 -0.44735301 0.147195 -0.90530002 -0.42071199\n\t\t 0.058596998 -0.88216197 -0.44735301 0.147195 -0.85478699 -0.464353 0.231764 -0.85478699\n\t\t -0.464353 0.231764 -0.89781803 -0.42492101 0.115607 -0.90530002 -0.42071199 0.058596998\n\t\t -0.7834 -0.50366098 0.36415699 -0.85478699 -0.464353 0.231764 -0.88216197 -0.44735301\n\t\t 0.147195 -0.88216197 -0.44735301 0.147195 -0.89911199 -0.39314201 0.192451 -0.7834\n\t\t -0.50366098 0.36415699 -0.89911199 -0.39314201 0.192451 -0.88216197 -0.44735301 0.147195\n\t\t -0.93669599 -0.34929299 -0.024385 -0.93669599 -0.34929299 -0.024385 -0.94019002 -0.33588901\n\t\t 0.056765001 -0.89911199 -0.39314201 0.192451 -0.89781803 -0.42492101 0.115607 -0.85478699\n\t\t -0.464353 0.231764 -0.87029999 -0.39446801 0.29491201 -0.87029999 -0.39446801 0.29491201\n\t\t -0.85478699 -0.464353 0.231764 -0.7834 -0.50366098 0.36415699 -0.87029999 -0.39446801\n\t\t 0.29491201 -0.93133301 -0.33345699 0.14637201 -0.89781803 -0.42492101 0.115607 -0.7834\n\t\t -0.50366098 0.36415699 -0.67776501 -0.48455 0.55303401 -0.87029999 -0.39446801 0.29491201\n\t\t -0.91194898 -0.14560799 -0.383598 -0.91273302 -0.133246 -0.38621801 -0.92946303 -0.123542\n\t\t -0.34761399 -0.92946303 -0.123542 -0.34761399 -0.92746902 -0.136023 -0.348281 -0.91194898\n\t\t -0.14560799 -0.383598 -0.92746902 -0.136023 -0.348281 -0.92946303 -0.123542 -0.34761399\n\t\t -0.94479001 -0.062900998 -0.321583 -0.91273302 -0.133246 -0.38621801 -0.91194898\n\t\t -0.14560799 -0.383598 -0.867791 0.072940998 -0.49154699 -0.566737 0.36048999 -0.740848\n\t\t -0.69803399 0.223278 -0.68036401 -0.66715401 0.236891 -0.706249 -0.66715401 0.236891\n\t\t -0.706249 -0.53485101 0.340992 -0.77308398 -0.566737 0.36048999 -0.740848 -0.69803399\n\t\t 0.223278 -0.68036401 -0.566737 0.36048999 -0.740848 -0.63144398 0.42244801 -0.650244\n\t\t -0.63144398 0.42244801 -0.650244 -0.867791 0.072940998 -0.49154699 -0.69803399 0.223278\n\t\t -0.68036401 -0.275682 0.683146 -0.67624801 -0.63144398 0.42244801 -0.650244 -0.566737\n\t\t 0.36048999 -0.740848 -0.566737 0.36048999 -0.740848 -0.25928801 0.567985 -0.781129\n\t\t -0.275682 0.683146 -0.67624801 -0.25928801 0.567985 -0.781129 -0.566737 0.36048999\n\t\t -0.740848 -0.53485101 0.340992 -0.77308398 -0.53485101 0.340992 -0.77308398 -0.25541499\n\t\t 0.49230501 -0.83210498 -0.25928801 0.567985 -0.781129 -0.039645001 0.63092798 -0.77482802\n\t\t -0.25928801 0.567985 -0.781129 -0.25541499 0.49230501 -0.83210498 -0.25541499 0.49230501\n\t\t -0.83210498 -0.084508002 0.54272401 -0.83564901 -0.039645001 0.63092798 -0.77482802\n\t\t -0.25928801 0.567985 -0.781129 -0.039645001 0.63092798 -0.77482802 0.0087890001 0.76004499\n\t\t -0.64981103 0.0087890001 0.76004499 -0.64981103 -0.275682 0.683146 -0.67624801 -0.25928801\n\t\t 0.567985 -0.781129 0.074709997 0.746948 -0.66067201 0.0087890001 0.76004499 -0.64981103\n\t\t -0.039645001 0.63092798 -0.77482802 -0.039645001 0.63092798 -0.77482802 0.0090030003\n\t\t 0.611206 -0.791421 0.074709997 0.746948 -0.66067201 0.0090030003 0.611206 -0.791421\n\t\t -0.039645001 0.63092798 -0.77482802 -0.084508002 0.54272401 -0.83564901 -0.084508002\n\t\t 0.54272401 -0.83564901 -0.042300001 0.53909802 -0.84118003 0.0090030003 0.611206\n\t\t -0.791421 -0.53485101 0.340992 -0.77308398 -0.66715401 0.236891 -0.706249 -0.67767501\n\t\t 0.220255 -0.70160103 -0.94479001 -0.062900998 -0.321583 -0.94477099 -0.069705002\n\t\t -0.320234 -0.92746902 -0.136023 -0.348281 -0.94477099 -0.069705002 -0.320234 -0.94479001\n\t\t -0.062900998 -0.321583 -0.95624697 -0.048434 -0.28852499 -0.95624697 -0.048434 -0.28852499\n\t\t -0.95778102 -0.057041001 -0.28178301 -0.94477099 -0.069705002 -0.320234 -0.95778102\n\t\t -0.057041001 -0.28178301 -0.95624697 -0.048434 -0.28852499 -0.97570401 -0.033572\n\t\t -0.21650399 -0.97570401 -0.033572 -0.21650399 -0.976807 -0.035829999 -0.21110301\n\t\t -0.95778102 -0.057041001 -0.28178301 -0.543917 0.260483 -0.79768598 -0.68473399 0.189983\n\t\t -0.70359498 -0.70752901 0.18821201 -0.68115997 -0.70752901 0.18821201 -0.68115997\n\t\t -0.55838501 0.252244 -0.79030299 -0.543917 0.260483 -0.79768598 -0.543917 0.260483\n\t\t -0.79768598 -0.55838501 0.252244 -0.79030299 -0.23106299 0.34578499 -0.909419 -0.23106299\n\t\t 0.34578499 -0.909419 -0.240676 0.36974201 -0.89742202 -0.543917 0.260483 -0.79768598\n\t\t -0.045442998 0.42223099 -0.905348;\n\tsetAttr \".n[2158:2323]\" -type \"float3\"  -0.240676 0.36974201 -0.89742202 -0.23106299\n\t\t 0.34578499 -0.909419 -0.23106299 0.34578499 -0.909419 -0.012421 0.385149 -0.92277098\n\t\t -0.045442998 0.42223099 -0.905348 0.010163 0.44102699 -0.89743602 -0.045442998 0.42223099\n\t\t -0.905348 -0.012421 0.385149 -0.92277098 -0.012421 0.385149 -0.92277098 0.050143\n\t\t 0.39653799 -0.91664797 0.010163 0.44102699 -0.89743602 -0.976807 -0.035829999 -0.21110301\n\t\t -0.97570401 -0.033572 -0.21650399 -0.98661602 0.002899 -0.163032 -0.80295599 -0.25599399\n\t\t 0.53826398 -0.88902301 -0.206981 0.408407 -0.895459 -0.25593299 0.364214 -0.895459\n\t\t -0.25593299 0.364214 -0.81299502 -0.30281001 0.497338 -0.80295599 -0.25599399 0.53826398\n\t\t -0.81299502 -0.30281001 0.497338 -0.895459 -0.25593299 0.364214 -0.93535697 -0.275437\n\t\t 0.22190601 -0.80295599 -0.25599399 0.53826398 -0.81299502 -0.30281001 0.497338 -0.57464999\n\t\t -0.36962101 0.73017699 -0.57464999 -0.36962101 0.73017699 -0.55035502 -0.33302701\n\t\t 0.76563799 -0.80295599 -0.25599399 0.53826398 -0.98661602 0.002899 -0.163032 -0.98684603\n\t\t 0.0054930001 -0.16157 -0.976807 -0.035829999 -0.21110301 -0.55838501 0.252244 -0.79030299\n\t\t -0.70752901 0.18821201 -0.68115997 -0.71441603 0.220346 -0.66412097 -0.99066103 0.021058001\n\t\t -0.13471299 -0.98684603 0.0054930001 -0.16157 -0.98661602 0.002899 -0.163032 -0.98661602\n\t\t 0.002899 -0.163032 -0.991485 0.020814 -0.128548 -0.99066103 0.021058001 -0.13471299\n\t\t -0.55768198 0.2791 -0.78172499 -0.71441603 0.220346 -0.66412097 -0.71548402 0.23481201\n\t\t -0.65798599 -0.71441603 0.220346 -0.66412097 -0.55768198 0.2791 -0.78172499 -0.55838501\n\t\t 0.252244 -0.79030299 -0.71548402 0.23481201 -0.65798599 -0.53905398 0.29453701 -0.78909397\n\t\t -0.55768198 0.2791 -0.78172499 -0.55768198 0.2791 -0.78172499 -0.53905398 0.29453701\n\t\t -0.78909397 -0.20341399 0.359339 -0.91076797 -0.20341399 0.359339 -0.91076797 -0.216196\n\t\t 0.35374501 -0.91001302 -0.55768198 0.2791 -0.78172499 0.014802 0.37855801 -0.92545903\n\t\t -0.216196 0.35374501 -0.91001302 -0.20341399 0.359339 -0.91076797 -0.216196 0.35374501\n\t\t -0.91001302 0.014802 0.37855801 -0.92545903 -0.012421 0.385149 -0.92277098 0.050143\n\t\t 0.39653799 -0.91664797 -0.012421 0.385149 -0.92277098 0.014802 0.37855801 -0.92545903\n\t\t -0.20341399 0.359339 -0.91076797 0.027193001 0.379049 -0.924977 0.014802 0.37855801\n\t\t -0.92545903 0.080632001 0.38396299 -0.91982102 0.014802 0.37855801 -0.92545903 0.027193001\n\t\t 0.379049 -0.924977 0.014802 0.37855801 -0.92545903 0.080632001 0.38396299 -0.91982102\n\t\t 0.050143 0.39653799 -0.91664797 0.027193001 0.379049 -0.924977 0.095921002 0.38237199\n\t\t -0.919016 0.080632001 0.38396299 -0.91982102 -0.55838501 0.252244 -0.79030299 -0.55768198\n\t\t 0.2791 -0.78172499 -0.216196 0.35374501 -0.91001302 -0.216196 0.35374501 -0.91001302\n\t\t -0.23106299 0.34578499 -0.909419 -0.55838501 0.252244 -0.79030299 -0.012421 0.385149\n\t\t -0.92277098 -0.23106299 0.34578499 -0.909419 -0.216196 0.35374501 -0.91001302 -0.28156701\n\t\t -0.367906 0.886208 -0.55035502 -0.33302701 0.76563799 -0.57464999 -0.36962101 0.73017699\n\t\t -0.56170499 -0.31685001 0.76425999 -0.55035502 -0.33302701 0.76563799 -0.28156701\n\t\t -0.367906 0.886208 -0.28156701 -0.367906 0.886208 -0.275372 -0.35792601 0.89222097\n\t\t -0.56170499 -0.31685001 0.76425999 -0.15109999 -0.36439899 0.91890299 -0.275372 -0.35792601\n\t\t 0.89222097 -0.28156701 -0.367906 0.886208 -0.28156701 -0.367906 0.886208 -0.17506\n\t\t -0.366539 0.91378498 -0.15109999 -0.36439899 0.91890299 -0.17506 -0.366539 0.91378498\n\t\t -0.28156701 -0.367906 0.886208 -0.312978 -0.39684501 0.86287802 -0.57464999 -0.36962101\n\t\t 0.73017699 -0.312978 -0.39684501 0.86287802 -0.28156701 -0.367906 0.886208 -0.49536401\n\t\t -0.425383 0.757406 -0.312978 -0.39684501 0.86287802 -0.57464999 -0.36962101 0.73017699\n\t\t -0.202979 -0.401198 0.89321899 -0.312978 -0.39684501 0.86287802 -0.49536401 -0.425383\n\t\t 0.757406 -0.312978 -0.39684501 0.86287802 -0.202979 -0.401198 0.89321899 -0.17506\n\t\t -0.366539 0.91378498 -0.49536401 -0.425383 0.757406 -0.63178998 -0.47900799 0.60941899\n\t\t -0.202979 -0.401198 0.89321899 -0.37767401 -0.52669901 0.76154399 -0.63178998 -0.47900799\n\t\t 0.60941899 -0.49536401 -0.425383 0.757406 -0.49536401 -0.425383 0.757406 -0.45785201\n\t\t -0.52191198 0.71970803 -0.37767401 -0.52669901 0.76154399 -0.45785201 -0.52191198\n\t\t 0.71970803 -0.49536401 -0.425383 0.757406 -0.66404498 -0.41106901 0.62455302 -0.57464999\n\t\t -0.36962101 0.73017699 -0.66404498 -0.41106901 0.62455302 -0.49536401 -0.425383 0.757406\n\t\t -0.66404498 -0.41106901 0.62455302 -0.67776501 -0.48455 0.55303401 -0.45785201 -0.52191198\n\t\t 0.71970803 -0.45785201 -0.52191198 0.71970803 -0.46791899 -0.55343401 0.68902999\n\t\t -0.37767401 -0.52669901 0.76154399 -0.46791899 -0.55343401 0.68902999 -0.45785201\n\t\t -0.52191198 0.71970803 -0.67776501 -0.48455 0.55303401 -0.80295599 -0.25599399 0.53826398\n\t\t -0.55035502 -0.33302701 0.76563799 -0.56170499 -0.31685001 0.76425999 -0.56170499\n\t\t -0.31685001 0.76425999 -0.81143701 -0.235332 0.53496599 -0.80295599 -0.25599399 0.53826398\n\t\t -0.88902301 -0.206981 0.408407 -0.80295599 -0.25599399 0.53826398 -0.81143701 -0.235332\n\t\t 0.53496599 -0.81143701 -0.235332 0.53496599 -0.88410503 -0.19483399 0.42473301 -0.88902301\n\t\t -0.206981 0.408407 -0.87029999 -0.39446801 0.29491201 -0.67776501 -0.48455 0.55303401\n\t\t -0.66404498 -0.41106901 0.62455302 -0.66404498 -0.41106901 0.62455302 -0.86848003\n\t\t -0.32972801 0.37016499 -0.87029999 -0.39446801 0.29491201 -0.86848003 -0.32972801\n\t\t 0.37016499 -0.66404498 -0.41106901 0.62455302 -0.57464999 -0.36962101 0.73017699\n\t\t -0.57464999 -0.36962101 0.73017699 -0.81299502 -0.30281001 0.497338 -0.86848003 -0.32972801\n\t\t 0.37016499 -0.93535697 -0.275437 0.22190601 -0.86848003 -0.32972801 0.37016499;\n\tsetAttr \".n[2324:2489]\" -type \"float3\"  -0.81299502 -0.30281001 0.497338 -0.93133301\n\t\t -0.33345699 0.14637201 -0.87029999 -0.39446801 0.29491201 -0.86848003 -0.32972801\n\t\t 0.37016499 -0.86848003 -0.32972801 0.37016499 -0.93535697 -0.275437 0.22190601 -0.93133301\n\t\t -0.33345699 0.14637201 -0.67776501 -0.48455 0.55303401 -0.7834 -0.50366098 0.36415699\n\t\t -0.46791899 -0.55343401 0.68902999 -0.295728 -0.94840699 0.114324 -0.20579 -0.96538001\n\t\t 0.16028599 -0.23139399 -0.94141603 0.245341 -0.23139399 -0.94141603 0.245341 -0.31410101\n\t\t -0.92582399 0.210215 -0.295728 -0.94840699 0.114324 -0.295728 -0.94840699 0.114324\n\t\t -0.31410101 -0.92582399 0.210215 -0.56515402 -0.82218599 0.067905001 -0.56515402\n\t\t -0.82218599 0.067905001 -0.55663401 -0.82993102 -0.037050001 -0.295728 -0.94840699\n\t\t 0.114324 -0.80262399 -0.54775798 -0.236127 -0.55663401 -0.82993102 -0.037050001 -0.56515402\n\t\t -0.82218599 0.067905001 -0.56515402 -0.82218599 0.067905001 -0.81372201 -0.56713098\n\t\t -0.12735499 -0.80262399 -0.54775798 -0.236127 -0.80262399 -0.54775798 -0.236127 -0.81372201\n\t\t -0.56713098 -0.12735499 -0.92938799 -0.196694 -0.31232899 -0.92938799 -0.196694 -0.31232899\n\t\t -0.90330201 -0.1717 -0.39314601 -0.80262399 -0.54775798 -0.236127 -0.86389101 0.18421701\n\t\t -0.46878299 -0.90330201 -0.1717 -0.39314601 -0.92938799 -0.196694 -0.31232899 -0.92938799\n\t\t -0.196694 -0.31232899 -0.88758802 0.172738 -0.42702401 -0.86389101 0.18421701 -0.46878299\n\t\t -0.86389101 0.18421701 -0.46878299 -0.88758802 0.172738 -0.42702401 -0.707802 0.52785999\n\t\t -0.46944699 -0.707802 0.52785999 -0.46944699 -0.71458298 0.50787401 -0.481078 -0.86389101\n\t\t 0.18421701 -0.46878299 -0.577425 0.68500501 -0.44423899 -0.71458298 0.50787401 -0.481078\n\t\t -0.707802 0.52785999 -0.46944699 -0.707802 0.52785999 -0.46944699 -0.54788202 0.70862699\n\t\t -0.44460499 -0.577425 0.68500501 -0.44423899 -0.31410101 -0.92582399 0.210215 -0.23139399\n\t\t -0.94141603 0.245341 -0.225934 -0.89986199 0.373099 -0.225934 -0.89986199 0.373099\n\t\t -0.29871899 -0.888376 0.34864801 -0.31410101 -0.92582399 0.210215 -0.54018199 -0.80798399\n\t\t 0.2353 -0.56515402 -0.82218599 0.067905001 -0.31410101 -0.92582399 0.210215 -0.31410101\n\t\t -0.92582399 0.210215 -0.29871899 -0.888376 0.34864801 -0.54018199 -0.80798399 0.2353\n\t\t -0.81372201 -0.56713098 -0.12735499 -0.56515402 -0.82218599 0.067905001 -0.54018199\n\t\t -0.80798399 0.2353 -0.54018199 -0.80798399 0.2353 -0.81687802 -0.57538003 0.040591002\n\t\t -0.81372201 -0.56713098 -0.12735499 -0.96269798 -0.198864 -0.18348201 -0.92938799\n\t\t -0.196694 -0.31232899 -0.81372201 -0.56713098 -0.12735499 -0.81372201 -0.56713098\n\t\t -0.12735499 -0.81687802 -0.57538003 0.040591002 -0.96269798 -0.198864 -0.18348201\n\t\t -0.88758802 0.172738 -0.42702401 -0.92938799 -0.196694 -0.31232899 -0.96269798 -0.198864\n\t\t -0.18348201 -0.96269798 -0.198864 -0.18348201 -0.919662 0.174721 -0.351702 -0.88758802\n\t\t 0.172738 -0.42702401 -0.73131001 0.50461 -0.45886201 -0.707802 0.52785999 -0.46944699\n\t\t -0.88758802 0.172738 -0.42702401 -0.88758802 0.172738 -0.42702401 -0.919662 0.174721\n\t\t -0.351702 -0.73131001 0.50461 -0.45886201 -0.54788202 0.70862699 -0.44460499 -0.707802\n\t\t 0.52785999 -0.46944699 -0.73131001 0.50461 -0.45886201 -0.73131001 0.50461 -0.45886201\n\t\t -0.58142602 0.62650299 -0.51907498 -0.54788202 0.70862699 -0.44460499 -0.29871899\n\t\t -0.888376 0.34864801 -0.225934 -0.89986199 0.373099 -0.228985 -0.88117999 0.413627\n\t\t -0.228985 -0.88117999 0.413627 -0.30656201 -0.867073 0.39268699 -0.29871899 -0.888376\n\t\t 0.34864801 -0.54018199 -0.80798399 0.2353 -0.29871899 -0.888376 0.34864801 -0.30656201\n\t\t -0.867073 0.39268699 -0.30656201 -0.867073 0.39268699 -0.228985 -0.88117999 0.413627\n\t\t -0.235517 -0.870897 0.43135899 -0.235517 -0.870897 0.43135899 -0.31841201 -0.85238498\n\t\t 0.41479301 -0.30656201 -0.867073 0.39268699 -0.31841201 -0.85238498 0.41479301 -0.235517\n\t\t -0.870897 0.43135899 -0.24394201 -0.85821003 0.451628 -0.24394201 -0.85821003 0.451628\n\t\t -0.33244601 -0.83519101 0.438104 -0.31841201 -0.85238498 0.41479301 -0.33244601 -0.83519101\n\t\t 0.438104 -0.24394201 -0.85821003 0.451628 -0.265977 -0.83660001 0.478912 -0.265977\n\t\t -0.83660001 0.478912 -0.361045 -0.806355 0.46844301 -0.33244601 -0.83519101 0.438104\n\t\t -0.57312 -0.74711102 0.33668801 -0.31841201 -0.85238498 0.41479301 -0.33244601 -0.83519101\n\t\t 0.438104 -0.33244601 -0.83519101 0.438104 -0.59485799 -0.71431297 0.36864701 -0.57312\n\t\t -0.74711102 0.33668801 -0.59485799 -0.71431297 0.36864701 -0.33244601 -0.83519101\n\t\t 0.438104 -0.361045 -0.806355 0.46844301 -0.361045 -0.806355 0.46844301 -0.62793303\n\t\t -0.66559398 0.40334201 -0.59485799 -0.71431297 0.36864701 -0.88144201 -0.42476001\n\t\t 0.20649 -0.59485799 -0.71431297 0.36864701 -0.62793303 -0.66559398 0.40334201 -0.62793303\n\t\t -0.66559398 0.40334201 -0.90523499 -0.353567 0.235671 -0.88144201 -0.42476001 0.20649\n\t\t -0.59485799 -0.71431297 0.36864701 -0.88144201 -0.42476001 0.20649 -0.85707498 -0.48611301\n\t\t 0.170634 -0.85707498 -0.48611301 0.170634 -0.57312 -0.74711102 0.33668801 -0.59485799\n\t\t -0.71431297 0.36864701 -0.99400997 -0.097326003 -0.049716 -0.85707498 -0.48611301\n\t\t 0.170634 -0.88144201 -0.42476001 0.20649 -0.88144201 -0.42476001 0.20649 -0.999704\n\t\t 0.0061030001 -0.023561001 -0.99400997 -0.097326003 -0.049716 -0.999704 0.0061030001\n\t\t -0.023561001 -0.88144201 -0.42476001 0.20649 -0.90523499 -0.353567 0.235671 -0.90523499\n\t\t -0.353567 0.235671 -0.98039001 -0.15424301 0.122656 -0.999704 0.0061030001 -0.023561001\n\t\t -0.90651703 0.36873499 -0.205578 -0.999704 0.0061030001 -0.023561001 -0.92469501\n\t\t 0.33924901 -0.172768 -0.92469501 0.33924901 -0.172768 -0.87246001 0.43026301 -0.231704\n\t\t -0.90651703 0.36873499 -0.205578 -0.999704 0.0061030001 -0.023561001 -0.90651703\n\t\t 0.36873499 -0.205578 -0.93379998 0.274185 -0.229871;\n\tsetAttr \".n[2490:2655]\" -type \"float3\"  -0.93379998 0.274185 -0.229871 -0.99400997\n\t\t -0.097326003 -0.049716 -0.999704 0.0061030001 -0.023561001 -0.77649802 0.51793897\n\t\t -0.35887399 -0.93379998 0.274185 -0.229871 -0.90651703 0.36873499 -0.205578 -0.90651703\n\t\t 0.36873499 -0.205578 -0.77104402 0.55533201 -0.31160399 -0.77649802 0.51793897 -0.35887399\n\t\t -0.87246001 0.43026301 -0.231704 -0.77104402 0.55533201 -0.31160399 -0.90651703 0.36873499\n\t\t -0.205578 -0.87246001 0.43026301 -0.231704 -0.77893603 0.55245399 -0.296736 -0.77104402\n\t\t 0.55533201 -0.31160399 -0.87246001 0.43026301 -0.231704 -0.81532902 0.50009298 -0.29179701\n\t\t -0.77893603 0.55245399 -0.296736 -0.57312 -0.74711102 0.33668801 -0.85707498 -0.48611301\n\t\t 0.170634 -0.83592302 -0.53506398 0.12223 -0.98071802 -0.164344 -0.105747 -0.83592302\n\t\t -0.53506398 0.12223 -0.85707498 -0.48611301 0.170634 -0.85707498 -0.48611301 0.170634\n\t\t -0.99400997 -0.097326003 -0.049716 -0.98071802 -0.164344 -0.105747 -0.83592302 -0.53506398\n\t\t 0.12223 -0.98071802 -0.164344 -0.105747 -0.96269798 -0.198864 -0.18348201 -0.96269798\n\t\t -0.198864 -0.18348201 -0.81687802 -0.57538003 0.040591002 -0.83592302 -0.53506398\n\t\t 0.12223 -0.55176002 -0.77736002 0.30211201 -0.83592302 -0.53506398 0.12223 -0.81687802\n\t\t -0.57538003 0.040591002 -0.83592302 -0.53506398 0.12223 -0.55176002 -0.77736002 0.30211201\n\t\t -0.57312 -0.74711102 0.33668801 -0.31841201 -0.85238498 0.41479301 -0.57312 -0.74711102\n\t\t 0.33668801 -0.55176002 -0.77736002 0.30211201 -0.55176002 -0.77736002 0.30211201\n\t\t -0.30656201 -0.867073 0.39268699 -0.31841201 -0.85238498 0.41479301 -0.30656201 -0.867073\n\t\t 0.39268699 -0.55176002 -0.77736002 0.30211201 -0.54018199 -0.80798399 0.2353 -0.81687802\n\t\t -0.57538003 0.040591002 -0.54018199 -0.80798399 0.2353 -0.55176002 -0.77736002 0.30211201\n\t\t -0.919662 0.174721 -0.351702 -0.96269798 -0.198864 -0.18348201 -0.98071802 -0.164344\n\t\t -0.105747 -0.98071802 -0.164344 -0.105747 -0.93374699 0.205 -0.29341501 -0.919662\n\t\t 0.174721 -0.351702 -0.99400997 -0.097326003 -0.049716 -0.93379998 0.274185 -0.229871\n\t\t -0.93374699 0.205 -0.29341501 -0.93374699 0.205 -0.29341501 -0.98071802 -0.164344\n\t\t -0.105747 -0.99400997 -0.097326003 -0.049716 -0.73131001 0.50461 -0.45886201 -0.919662\n\t\t 0.174721 -0.351702 -0.93374699 0.205 -0.29341501 -0.93374699 0.205 -0.29341501 -0.75520903\n\t\t 0.49716499 -0.42718399 -0.73131001 0.50461 -0.45886201 -0.75520903 0.49716499 -0.42718399\n\t\t -0.93374699 0.205 -0.29341501 -0.93379998 0.274185 -0.229871 -0.93379998 0.274185\n\t\t -0.229871 -0.77649802 0.51793897 -0.35887399 -0.75520903 0.49716499 -0.42718399 -0.62890601\n\t\t 0.57427597 -0.52410299 -0.75520903 0.49716499 -0.42718399 -0.77649802 0.51793897\n\t\t -0.35887399 -0.77649802 0.51793897 -0.35887399 -0.66802502 0.58007002 -0.466113 -0.62890601\n\t\t 0.57427597 -0.52410299 -0.75520903 0.49716499 -0.42718399 -0.62890601 0.57427597\n\t\t -0.52410299 -0.58142602 0.62650299 -0.51907498 -0.58142602 0.62650299 -0.51907498\n\t\t -0.73131001 0.50461 -0.45886201 -0.75520903 0.49716499 -0.42718399 -0.68293101 0.61896199\n\t\t -0.38793099 -0.66802502 0.58007002 -0.466113 -0.77649802 0.51793897 -0.35887399 -0.77649802\n\t\t 0.51793897 -0.35887399 -0.77104402 0.55533201 -0.31160399 -0.68293101 0.61896199\n\t\t -0.38793099 -0.68293101 0.61896199 -0.38793099 -0.77104402 0.55533201 -0.31160399\n\t\t -0.77893603 0.55245399 -0.296736 -0.160899 -0.98193699 -0.099555001 -0.085635997\n\t\t -0.99537998 -0.043428998 -0.14069401 -0.98995697 0.013795 -0.14069401 -0.98995697\n\t\t 0.013795 -0.20841201 -0.97717702 -0.041108999 -0.160899 -0.98193699 -0.099555001\n\t\t -0.160899 -0.98193699 -0.099555001 -0.20841201 -0.97717702 -0.041108999 -0.434008\n\t\t -0.87775201 -0.20295 -0.434008 -0.87775201 -0.20295 -0.39402699 -0.87906098 -0.26831999\n\t\t -0.160899 -0.98193699 -0.099555001 -0.645971 -0.61401701 -0.453547 -0.39402699 -0.87906098\n\t\t -0.26831999 -0.434008 -0.87775201 -0.20295 -0.434008 -0.87775201 -0.20295 -0.692357\n\t\t -0.60968101 -0.38591501 -0.645971 -0.61401701 -0.453547 -0.645971 -0.61401701 -0.453547\n\t\t -0.692357 -0.60968101 -0.38591501 -0.836357 -0.23088001 -0.49719301 -0.836357 -0.23088001\n\t\t -0.49719301 -0.79280102 -0.237624 -0.56125098 -0.645971 -0.61401701 -0.453547 -0.81347901\n\t\t 0.124242 -0.568169 -0.79280102 -0.237624 -0.56125098 -0.836357 -0.23088001 -0.49719301\n\t\t -0.836357 -0.23088001 -0.49719301 -0.84072101 0.15024699 -0.52020502 -0.81347901\n\t\t 0.124242 -0.568169 -0.81347901 0.124242 -0.568169 -0.84072101 0.15024699 -0.52020502\n\t\t -0.738199 0.481105 -0.47286499 -0.738199 0.481105 -0.47286499 -0.71915299 0.48857999\n\t\t -0.49407399 -0.81347901 0.124242 -0.568169 -0.60269898 0.680462 -0.41680399 -0.71915299\n\t\t 0.48857999 -0.49407399 -0.738199 0.481105 -0.47286499 -0.738199 0.481105 -0.47286499\n\t\t -0.64020002 0.64471602 -0.41771501 -0.60269898 0.680462 -0.41680399 -0.84654599 0.137154\n\t\t -0.51434302 -0.84308702 0.166054 -0.51149797 -0.88700801 0.014069 -0.461541 -0.88700801\n\t\t 0.014069 -0.461541 -0.87666202 -0.012208 -0.48095101 -0.84654599 0.137154 -0.51434302\n\t\t -0.49327901 0.74066597 -0.456168 -0.62506402 0.59762698 -0.50213301 -0.70326 0.51510698\n\t\t -0.48999 -0.70326 0.51510698 -0.48999 -0.70783198 0.51082999 -0.48787999 -0.49327901\n\t\t 0.74066597 -0.456168 -0.49327901 0.74066597 -0.456168 -0.37407601 0.84862101 -0.37404501\n\t\t -0.17792401 0.94241703 -0.28318301 -0.17792401 0.94241703 -0.28318301 -0.32866001\n\t\t 0.861431 -0.38719499 -0.49327901 0.74066597 -0.456168 -0.645971 -0.61401701 -0.453547\n\t\t -0.79280102 -0.237624 -0.56125098 -0.76599902 -0.239209 -0.59667897 -0.79280102 -0.237624\n\t\t -0.56125098 -0.81347901 0.124242 -0.568169 -0.78868502 0.102942 -0.60611802 -0.78868502\n\t\t 0.102942 -0.60611802 -0.76599902 -0.239209 -0.59667897 -0.79280102 -0.237624 -0.56125098\n\t\t -0.76599902 -0.239209 -0.59667897;\n\tsetAttr \".n[2656:2821]\" -type \"float3\"  -0.78868502 0.102942 -0.60611802 -0.77061301\n\t\t 0.102331 -0.62903398 -0.77061301 0.102331 -0.62903398 -0.75530201 -0.241869 -0.60911298\n\t\t -0.76599902 -0.239209 -0.59667897 -0.62052 -0.61481398 -0.48678401 -0.76599902 -0.239209\n\t\t -0.59667897 -0.75530201 -0.241869 -0.60911298 -0.75530201 -0.241869 -0.60911298 -0.60952598\n\t\t -0.61694199 -0.497857 -0.62052 -0.61481398 -0.48678401 -0.372208 -0.88022602 -0.29438499\n\t\t -0.62052 -0.61481398 -0.48678401 -0.60952598 -0.61694199 -0.497857 -0.62052 -0.61481398\n\t\t -0.48678401 -0.372208 -0.88022602 -0.29438499 -0.39402699 -0.87906098 -0.26831999\n\t\t -0.160899 -0.98193699 -0.099555001 -0.39402699 -0.87906098 -0.26831999 -0.372208\n\t\t -0.88022602 -0.29438499 -0.372208 -0.88022602 -0.29438499 -0.143806 -0.98262799 -0.117316\n\t\t -0.160899 -0.98193699 -0.099555001 -0.085635997 -0.99537998 -0.043428998 -0.160899\n\t\t -0.98193699 -0.099555001 -0.143806 -0.98262799 -0.117316 -0.143806 -0.98262799 -0.117316\n\t\t -0.069307998 -0.995857 -0.058871001 -0.085635997 -0.99537998 -0.043428998 -0.069307998\n\t\t -0.995857 -0.058871001 -0.143806 -0.98262799 -0.117316 -0.136788 -0.98303002 -0.12223\n\t\t -0.136788 -0.98303002 -0.12223 -0.063601002 -0.995929 -0.063876003 -0.069307998 -0.995857\n\t\t -0.058871001 -0.36204699 -0.88184702 -0.30210799 -0.136788 -0.98303002 -0.12223 -0.143806\n\t\t -0.98262799 -0.117316 -0.143806 -0.98262799 -0.117316 -0.372208 -0.88022602 -0.29438499\n\t\t -0.36204699 -0.88184702 -0.30210799 -0.60952598 -0.61694199 -0.497857 -0.36204699\n\t\t -0.88184702 -0.30210799 -0.372208 -0.88022602 -0.29438499 -0.39402699 -0.87906098\n\t\t -0.26831999 -0.645971 -0.61401701 -0.453547 -0.62052 -0.61481398 -0.48678401 -0.76599902\n\t\t -0.239209 -0.59667897 -0.62052 -0.61481398 -0.48678401 -0.645971 -0.61401701 -0.453547\n\t\t -0.73376799 0.28724501 -0.61568999 -0.77061301 0.102331 -0.62903398 -0.78868502 0.102942\n\t\t -0.60611802 -0.78868502 0.102942 -0.60611802 -0.71402502 0.45095 -0.53554899 -0.73376799\n\t\t 0.28724501 -0.61568999 -0.64538503 0.48616701 -0.58916903 -0.73376799 0.28724501\n\t\t -0.61568999 -0.71402502 0.45095 -0.53554899 -0.71402502 0.45095 -0.53554899 -0.69907099\n\t\t 0.50863099 -0.50258797 -0.64538503 0.48616701 -0.58916903 -0.62307501 0.566248 -0.53957498\n\t\t -0.64538503 0.48616701 -0.58916903 -0.69907099 0.50863099 -0.50258797 -0.69907099\n\t\t 0.50863099 -0.50258797 -0.707618 0.48162299 -0.51702601 -0.62307501 0.566248 -0.53957498\n\t\t -0.707618 0.48162299 -0.51702601 -0.69907099 0.50863099 -0.50258797 -0.84308702 0.166054\n\t\t -0.51149797 -0.84308702 0.166054 -0.51149797 -0.84654599 0.137154 -0.51434302 -0.707618\n\t\t 0.48162299 -0.51702601 -0.436759 0.78699601 -0.435752 -0.707618 0.48162299 -0.51702601\n\t\t -0.62506402 0.59762698 -0.50213301 -0.62506402 0.59762698 -0.50213301 -0.49327901\n\t\t 0.74066597 -0.456168 -0.436759 0.78699601 -0.435752 -0.707618 0.48162299 -0.51702601\n\t\t -0.436759 0.78699601 -0.435752 -0.37365001 0.807697 -0.456083 -0.37365001 0.807697\n\t\t -0.456083 -0.62307501 0.566248 -0.53957498 -0.707618 0.48162299 -0.51702601 -0.092625998\n\t\t 0.95622897 -0.27757299 -0.37365001 0.807697 -0.456083 -0.436759 0.78699601 -0.435752\n\t\t -0.436759 0.78699601 -0.435752 -0.104652 0.95806998 -0.26674101 -0.092625998 0.95622897\n\t\t -0.27757299 -0.104652 0.95806998 -0.26674101 -0.436759 0.78699601 -0.435752 -0.49327901\n\t\t 0.74066597 -0.456168 -0.49327901 0.74066597 -0.456168 -0.32866001 0.861431 -0.38719499\n\t\t -0.104652 0.95806998 -0.26674101 -0.71915299 0.48857999 -0.49407399 -0.60269898 0.680462\n\t\t -0.41680399 -0.69907099 0.50863099 -0.50258797 -0.69907099 0.50863099 -0.50258797\n\t\t -0.71402502 0.45095 -0.53554899 -0.71915299 0.48857999 -0.49407399 -0.81347901 0.124242\n\t\t -0.568169 -0.71915299 0.48857999 -0.49407399 -0.71402502 0.45095 -0.53554899 -0.71402502\n\t\t 0.45095 -0.53554899 -0.78868502 0.102942 -0.60611802 -0.81347901 0.124242 -0.568169\n\t\t -0.411984 0.73158503 -0.54318798 -0.64538503 0.48616701 -0.58916903 -0.62307501 0.566248\n\t\t -0.53957498 -0.62307501 0.566248 -0.53957498 -0.37365001 0.807697 -0.456083 -0.411984\n\t\t 0.73158503 -0.54318798 -0.411984 0.73158503 -0.54318798 -0.37365001 0.807697 -0.456083\n\t\t -0.092625998 0.95622897 -0.27757299 -0.092625998 0.95622897 -0.27757299 -0.119422\n\t\t 0.92125601 -0.37016901 -0.411984 0.73158503 -0.54318798 0.159128 0.97713798 -0.140999\n\t\t -0.119422 0.92125601 -0.37016901 -0.092625998 0.95622897 -0.27757299 -0.092625998\n\t\t 0.95622897 -0.27757299 0.15784401 0.98283303 -0.095523998 0.159128 0.97713798 -0.140999\n\t\t 0.15784401 0.98283303 -0.095523998 -0.092625998 0.95622897 -0.27757299 -0.104652\n\t\t 0.95806998 -0.26674101 0.26069301 0.96467501 -0.037966002 0.159128 0.97713798 -0.140999\n\t\t 0.15784401 0.98283303 -0.095523998 0.15784401 0.98283303 -0.095523998 0.225963 0.972978\n\t\t -0.047488 0.26069301 0.96467501 -0.037966002 0.158575 0.98218501 -0.100834 -0.104652\n\t\t 0.95806998 -0.26674101 0.087834001 0.98338801 -0.158852 -0.104652 0.95806998 -0.26674101\n\t\t 0.158575 0.98218501 -0.100834 0.15784401 0.98283303 -0.095523998 0.225963 0.972978\n\t\t -0.047488 0.15784401 0.98283303 -0.095523998 0.158575 0.98218501 -0.100834 0.087834001\n\t\t 0.98338801 -0.158852 0.15915801 0.979577 -0.122871 0.158575 0.98218501 -0.100834\n\t\t 0.15915801 0.979577 -0.122871 0.087834001 0.98338801 -0.158852 -0.17792401 0.94241703\n\t\t -0.28318301 -0.17792401 0.94241703 -0.28318301 0.104497 0.98344898 -0.148018 0.15915801\n\t\t 0.979577 -0.122871 0.104497 0.98344898 -0.148018 -0.17792401 0.94241703 -0.28318301\n\t\t -0.165842 0.95210803 -0.25687999 -0.165842 0.95210803 -0.25687999 -0.17792401 0.94241703\n\t\t -0.28318301 -0.37407601 0.84862101 -0.37404501 -0.37407601 0.84862101 -0.37404501\n\t\t -0.36418399 0.86451298 -0.34639099 -0.165842 0.95210803 -0.25687999 -0.73966402 0.48629299\n\t\t -0.46520501 -0.74122202 0.483181 -0.46596801;\n\tsetAttr \".n[2822:2987]\" -type \"float3\"  -0.70783198 0.51082999 -0.48787999 -0.70783198\n\t\t 0.51082999 -0.48787999 -0.70326 0.51510698 -0.48999 -0.73966402 0.48629299 -0.46520501\n\t\t -0.90029502 -0.026949 -0.43444499 -0.89944202 -0.03757 -0.43542299 -0.87666202 -0.012208\n\t\t -0.48095101 -0.87666202 -0.012208 -0.48095101 -0.88700801 0.014069 -0.461541 -0.90029502\n\t\t -0.026949 -0.43444499 -0.62741703 0.66315502 -0.408135 -0.64020002 0.64471602 -0.41771501\n\t\t -0.738199 0.481105 -0.47286499 -0.738199 0.481105 -0.47286499 -0.72547799 0.51693898\n\t\t -0.45437399 -0.62741703 0.66315502 -0.408135 -0.72547799 0.51693898 -0.45437399 -0.738199\n\t\t 0.481105 -0.47286499 -0.84072101 0.15024699 -0.52020502 -0.84072101 0.15024699 -0.52020502\n\t\t -0.84742898 0.205486 -0.48953 -0.72547799 0.51693898 -0.45437399 -0.86914802 -0.15622699\n\t\t -0.469228 -0.84742898 0.205486 -0.48953 -0.84072101 0.15024699 -0.52020502 -0.84072101\n\t\t 0.15024699 -0.52020502 -0.836357 -0.23088001 -0.49719301 -0.86914802 -0.15622699\n\t\t -0.469228 -0.86914802 -0.15622699 -0.469228 -0.836357 -0.23088001 -0.49719301 -0.692357\n\t\t -0.60968101 -0.38591501 -0.692357 -0.60968101 -0.38591501 -0.76213998 -0.52988499\n\t\t -0.371975 -0.86914802 -0.15622699 -0.469228 -0.50976402 -0.84126598 -0.180034 -0.76213998\n\t\t -0.52988499 -0.371975 -0.692357 -0.60968101 -0.38591501 -0.692357 -0.60968101 -0.38591501\n\t\t -0.434008 -0.87775201 -0.20295 -0.50976402 -0.84126598 -0.180034 -0.50976402 -0.84126598\n\t\t -0.180034 -0.434008 -0.87775201 -0.20295 -0.20841201 -0.97717702 -0.041108999 -0.20841201\n\t\t -0.97717702 -0.041108999 -0.251385 -0.96788198 -0.003143 -0.50976402 -0.84126598\n\t\t -0.180034 -0.164497 -0.984514 0.060610998 -0.251385 -0.96788198 -0.003143 -0.20841201\n\t\t -0.97717702 -0.041108999 -0.20841201 -0.97717702 -0.041108999 -0.14069401 -0.98995697\n\t\t 0.013795 -0.164497 -0.984514 0.060610998 -0.067447998 -0.98715299 -0.14484499 -0.024323\n\t\t -0.99699301 -0.073581003 -0.023164 -0.99699098 -0.073977999 -0.023164 -0.99699098\n\t\t -0.073977999 -0.069247 -0.98654902 -0.148077 -0.067447998 -0.98715299 -0.14484499\n\t\t -0.067447998 -0.98715299 -0.14484499 -0.069247 -0.98654902 -0.148077 -0.230941 -0.89639097\n\t\t -0.378351 -0.230941 -0.89639097 -0.378351 -0.230204 -0.89707297 -0.37718299 -0.067447998\n\t\t -0.98715299 -0.14484499 -0.422263 -0.63745397 -0.64447302 -0.230204 -0.89707297 -0.37718299\n\t\t -0.230941 -0.89639097 -0.378351 -0.230941 -0.89639097 -0.378351 -0.42028201 -0.641945\n\t\t -0.641303 -0.422263 -0.63745397 -0.64447302 -0.422263 -0.63745397 -0.64447302 -0.42028201\n\t\t -0.641945 -0.641303 -0.53653002 -0.26527399 -0.80110198 -0.53653002 -0.26527399 -0.80110198\n\t\t -0.538028 -0.25279301 -0.80412799 -0.422263 -0.63745397 -0.64447302 -0.55581403 0.15915699\n\t\t -0.815929 -0.538028 -0.25279301 -0.80412799 -0.53653002 -0.26527399 -0.80110198 -0.53653002\n\t\t -0.26527399 -0.80110198 -0.55669999 0.144233 -0.818097 -0.55581403 0.15915699 -0.815929\n\t\t -0.55581403 0.15915699 -0.815929 -0.55669999 0.144233 -0.818097 -0.49217799 0.500723\n\t\t -0.71206599 -0.49217799 0.500723 -0.71206599 -0.48736599 0.51425397 -0.70570302 -0.55581403\n\t\t 0.15915699 -0.815929 -0.366537 0.77360201 -0.51690501 -0.48736599 0.51425397 -0.70570302\n\t\t -0.49217799 0.500723 -0.71206599 -0.49217799 0.500723 -0.71206599 -0.37163901 0.76613599\n\t\t -0.52432901 -0.366537 0.77360201 -0.51690501 -0.366537 0.77360201 -0.51690501 -0.37163901\n\t\t 0.76613599 -0.52432901 -0.19409899 0.94644499 -0.25800499 -0.19409899 0.94644499\n\t\t -0.25800499 -0.188731 0.949727 -0.2498 -0.366537 0.77360201 -0.51690501 0.0042719999\n\t\t 0.99939299 0.034577999 -0.188731 0.949727 -0.2498 -0.19409899 0.94644499 -0.25800499\n\t\t -0.19409899 0.94644499 -0.25800499 0.0034479999 0.99946499 0.032533001 0.0042719999\n\t\t 0.99939299 0.034577999 0.0042719999 0.99939299 0.034577999 0.0034479999 0.99946499\n\t\t 0.032533001 0.077120997 0.986215 0.14639901 0.077120997 0.986215 0.14639901 0.074803002\n\t\t 0.98635697 0.14664599 0.0042719999 0.99939299 0.034577999 -0.91269499 0.033783998\n\t\t -0.40724301 -0.86823899 0.16956399 -0.46627101 -0.86624098 0.226303 -0.44543499 -0.86624098\n\t\t 0.226303 -0.44543499 -0.91216099 -0.024782 -0.40908101 -0.91269499 0.033783998 -0.40724301\n\t\t -0.76340801 0.451653 -0.46175599 -0.86624098 0.226303 -0.44543499 -0.86823899 0.16956399\n\t\t -0.46627101 -0.86823899 0.16956399 -0.46627101 -0.66993302 0.50171 -0.54724503 -0.76340801\n\t\t 0.451653 -0.46175599 -0.30214101 0.81309301 -0.497585 -0.66993302 0.50171 -0.54724503\n\t\t -0.20353401 0.82322901 -0.52996898 -0.20353401 0.82322901 -0.52996898 -0.098181002\n\t\t 0.88664901 -0.45190099 -0.30214101 0.81309301 -0.497585 0.198525 0.91040999 -0.36296201\n\t\t -0.098181002 0.88664901 -0.45190099 -0.20353401 0.82322901 -0.52996898 -0.20353401\n\t\t 0.82322901 -0.52996898 0.126104 0.87839901 -0.46099001 0.198525 0.91040999 -0.36296201\n\t\t 0.27296001 0.89325601 -0.35719299 0.198525 0.91040999 -0.36296201 0.126104 0.87839901\n\t\t -0.46099001 0.126104 0.87839901 -0.46099001 0.199838 0.86631298 -0.45778501 0.27296001\n\t\t 0.89325601 -0.35719299 -0.165842 0.95210803 -0.25687999 0.075962 0.98677897 -0.14316601\n\t\t 0.104497 0.98344898 -0.148018 0.165629 0.97909701 -0.11805 0.104497 0.98344898 -0.148018\n\t\t 0.075962 0.98677897 -0.14316601 0.075962 0.98677897 -0.14316601 0.124822 0.98432302\n\t\t -0.124608 0.165629 0.97909701 -0.11805 0.104497 0.98344898 -0.148018 0.165629 0.97909701\n\t\t -0.11805 0.234231 0.96817702 -0.088137999 0.234231 0.96817702 -0.088137999 0.15915801\n\t\t 0.979577 -0.122871 0.104497 0.98344898 -0.148018 0.15915801 0.979577 -0.122871 0.234231\n\t\t 0.96817702 -0.088137999 0.22867601 0.97177398 -0.057985 0.22867601 0.97177398 -0.057985\n\t\t 0.158575 0.98218501 -0.100834 0.15915801 0.979577 -0.122871 0.158575 0.98218501 -0.100834\n\t\t 0.22867601 0.97177398 -0.057985 0.225963 0.972978 -0.047488;\n\tsetAttr \".n[2988:3153]\" -type \"float3\"  -0.002228 -0.97534198 -0.220686 0.050020002\n\t\t -0.98819399 -0.144811 0.13046899 -0.97013801 -0.204477 0.13046899 -0.97013801 -0.204477\n\t\t 0.072361 -0.95650202 -0.282608 -0.002228 -0.97534198 -0.220686 -0.48476699 -0.86146599\n\t\t 0.151253 -0.44252801 -0.86787403 0.225751 -0.43889901 -0.87007803 0.22434799 -0.43889901\n\t\t -0.87007803 0.22434799 -0.47448701 -0.86626601 0.156352 -0.48476699 -0.86146599 0.151253\n\t\t -0.74824703 -0.47192401 0.466277 -0.75474101 -0.475063 0.45241699 -0.72648603 -0.47097701\n\t\t 0.50039798 -0.75474101 -0.475063 0.45241699 -0.74824703 -0.47192401 0.466277 -0.83174801\n\t\t -0.42925701 0.35204199 -0.83174801 -0.42925701 0.35204199 -0.84355801 -0.42306101\n\t\t 0.33080101 -0.75474101 -0.475063 0.45241699 -0.84355801 -0.42306101 0.33080101 -0.83174801\n\t\t -0.42925701 0.35204199 -0.93182999 -0.29615501 0.20972501 -0.93182999 -0.29615501\n\t\t 0.20972501 -0.93667603 -0.28776899 0.19956701 -0.84355801 -0.42306101 0.33080101\n\t\t -0.93667603 -0.28776899 0.19956701 -0.93182999 -0.29615501 0.20972501 -0.986808 -0.097204\n\t\t 0.129463 -0.986808 -0.097204 0.129463 -0.98736101 -0.092871003 0.128425 -0.93667603\n\t\t -0.28776899 0.19956701 -0.98736101 -0.092871003 0.128425 -0.986808 -0.097204 0.129463\n\t\t -0.98641199 0.116431 0.115912 -0.98641199 0.116431 0.115912 -0.98668599 0.112799\n\t\t 0.117163 -0.98736101 -0.092871003 0.128425 -0.98668599 0.112799 0.117163 -0.98641199\n\t\t 0.116431 0.115912 -0.94024301 0.29793 0.164866 -0.94024301 0.29793 0.164866 -0.94194502\n\t\t 0.29243499 0.164987 -0.98668599 0.112799 0.117163 -0.94194502 0.29243499 0.164987\n\t\t -0.94024301 0.29793 0.164866 -0.87013298 0.42378899 0.25153899 -0.87013298 0.42378899\n\t\t 0.25153899 -0.87089598 0.420829 0.25385901 -0.94194502 0.29243499 0.164987 -0.87089598\n\t\t 0.420829 0.25385901 -0.87013298 0.42378899 0.25153899 -0.78267503 0.49093801 0.382624\n\t\t -0.78267503 0.49093801 0.382624 -0.78622901 0.484 0.38417199 -0.87089598 0.420829\n\t\t 0.25385901 -0.78622901 0.484 0.38417199 -0.78267503 0.49093801 0.382624 -0.69682503\n\t\t 0.50110197 0.51315802 -0.69682503 0.50110197 0.51315802 -0.70771301 0.492704 0.50634599\n\t\t -0.78622901 0.484 0.38417199 -0.70771301 0.492704 0.50634599 -0.69682503 0.50110197\n\t\t 0.51315802 -0.67341101 0.486204 0.55688697 -0.67341101 0.486204 0.55688697 -0.68136102\n\t\t 0.478991 0.55345702 -0.70771301 0.492704 0.50634599 -0.40255499 0.87167197 0.27952999\n\t\t -0.345781 0.856884 0.38234299 -0.34307 0.86000901 0.37774 -0.34307 0.86000901 0.37774\n\t\t -0.40459001 0.871773 0.27625701 -0.40255499 0.87167197 0.27952999 0.147802 0.98227698\n\t\t -0.115269 0.226082 0.97406501 -0.0091249999 0.14154699 0.98811197 0.059999999 0.14154699\n\t\t 0.98811197 0.059999999 0.066105001 0.99655402 -0.050113 0.147802 0.98227698 -0.115269\n\t\t -0.54961902 0.83393502 0.049716 -0.55257398 0.832371 0.042665001 -0.40255499 0.87167197\n\t\t 0.27952999 -0.40255499 0.87167197 0.27952999 -0.40459001 0.871773 0.27625701 -0.54961902\n\t\t 0.83393502 0.049716 -0.69854701 0.69128299 -0.18482199 -0.55257398 0.832371 0.042665001\n\t\t -0.54961902 0.83393502 0.049716 -0.042665999 0.92343998 -0.38136399 0.147802 0.98227698\n\t\t -0.115269 0.066105001 0.99655402 -0.050113 0.066105001 0.99655402 -0.050113 -0.119117\n\t\t 0.93822497 -0.32487801 -0.042665999 0.92343998 -0.38136399 -0.54961902 0.83393502\n\t\t 0.049716 -0.69458997 0.69642001 -0.1804 -0.69854701 0.69128299 -0.18482199 -0.28849801\n\t\t 0.76264298 -0.57891798 -0.216841 0.747392 -0.62800002 -0.042665999 0.92343998 -0.38136399\n\t\t -0.042665999 0.92343998 -0.38136399 -0.119117 0.93822497 -0.32487801 -0.28849801\n\t\t 0.76264298 -0.57891798 -0.330832 0.485138 -0.809439 -0.216841 0.747392 -0.62800002\n\t\t -0.28849801 0.76264298 -0.57891798 -0.28849801 0.76264298 -0.57891798 -0.40392399\n\t\t 0.50366098 -0.76365602 -0.330832 0.485138 -0.809439 -0.69854701 0.69128299 -0.18482199\n\t\t -0.69458997 0.69642001 -0.1804 -0.81367302 0.472895 -0.338092 -0.81367302 0.472895\n\t\t -0.338092 -0.815328 0.46853501 -0.34017 -0.69854701 0.69128299 -0.18482199 -0.88937098\n\t\t 0.15095 -0.43154699 -0.815328 0.46853501 -0.34017 -0.81367302 0.472895 -0.338092\n\t\t -0.81367302 0.472895 -0.338092 -0.88869298 0.15659399 -0.430933 -0.88937098 0.15095\n\t\t -0.43154699 -0.46624699 0.145456 -0.87261498 -0.38872001 0.130133 -0.91211998 -0.330832\n\t\t 0.485138 -0.809439 -0.330832 0.485138 -0.809439 -0.40392399 0.50366098 -0.76365602\n\t\t -0.46624699 0.145456 -0.87261498 -0.88937098 0.15095 -0.43154699 -0.88869298 0.15659399\n\t\t -0.430933 -0.885032 -0.208021 -0.41646799 -0.36373401 -0.26747501 -0.89227498 -0.38872001\n\t\t 0.130133 -0.91211998 -0.46624699 0.145456 -0.87261498 -0.46624699 0.145456 -0.87261498\n\t\t -0.446587 -0.26252601 -0.85535997 -0.36373401 -0.26747501 -0.89227498 -0.885032 -0.208021\n\t\t -0.41646799 -0.88326299 -0.218794 -0.414698 -0.88937098 0.15095 -0.43154699 -0.78424197\n\t\t -0.553276 -0.28080401 -0.88326299 -0.218794 -0.414698 -0.885032 -0.208021 -0.41646799\n\t\t -0.885032 -0.208021 -0.41646799 -0.78811997 -0.54372501 -0.288495 -0.78424197 -0.553276\n\t\t -0.28080401 -0.333974 -0.62845701 -0.70249701 -0.25672799 -0.61902201 -0.74222797\n\t\t -0.36373401 -0.26747501 -0.89227498 -0.36373401 -0.26747501 -0.89227498 -0.446587\n\t\t -0.26252601 -0.85535997 -0.333974 -0.62845701 -0.70249701 -0.78424197 -0.553276 -0.28080401\n\t\t -0.78811997 -0.54372501 -0.288495 -0.62833703 -0.77589899 -0.056338999 -0.081331998\n\t\t -0.86252201 -0.49944001 -0.25672799 -0.61902201 -0.74222797 -0.333974 -0.62845701\n\t\t -0.70249701 -0.333974 -0.62845701 -0.70249701 -0.156471 -0.88068998 -0.44710499 -0.081331998\n\t\t -0.86252201 -0.49944001 -0.62833703 -0.77589899 -0.056338999 -0.61761701 -0.78522801\n\t\t -0.044344001 -0.78424197 -0.553276 -0.28080401 -0.47448701 -0.86626601 0.156352;\n\tsetAttr \".n[3154:3319]\" -type \"float3\"  -0.61761701 -0.78522801 -0.044344001\n\t\t -0.62833703 -0.77589899 -0.056338999 -0.62833703 -0.77589899 -0.056338999 -0.48476699\n\t\t -0.86146599 0.151253 -0.47448701 -0.86626601 0.156352 -0.002228 -0.97534198 -0.220686\n\t\t 0.072361 -0.95650202 -0.282608 -0.081331998 -0.86252201 -0.49944001 -0.081331998\n\t\t -0.86252201 -0.49944001 -0.156471 -0.88068998 -0.44710499 -0.002228 -0.97534198 -0.220686\n\t\t 0.65562099 -0.468658 -0.59204799 0.65405202 -0.46465099 -0.59692103 0.58063 -0.42550001\n\t\t -0.69413102 0.58063 -0.42550001 -0.69413102 0.58094603 -0.43023801 -0.69093901 0.65562099\n\t\t -0.468658 -0.59204799 0.65405202 -0.46465099 -0.59692103 0.65562099 -0.468658 -0.59204799\n\t\t 0.67863297 -0.47030601 -0.56415403 0.67863297 -0.47030601 -0.56415403 0.67892098\n\t\t -0.468402 -0.565391 0.65405202 -0.46465099 -0.59692103 0.58094603 -0.43023801 -0.69093901\n\t\t 0.58063 -0.42550001 -0.69413102 0.49217999 -0.32206699 -0.80872297 0.49217999 -0.32206699\n\t\t -0.80872297 0.49013701 -0.31871101 -0.81128901 0.58094603 -0.43023801 -0.69093901\n\t\t 0.49013701 -0.31871101 -0.81128901 0.49217999 -0.32206699 -0.80872297 0.43847299\n\t\t -0.157083 -0.884911 0.43847299 -0.157083 -0.884911 0.437215 -0.145972 -0.88743198\n\t\t 0.49013701 -0.31871101 -0.81128901 0.437215 -0.145972 -0.88743198 0.43847299 -0.157083\n\t\t -0.884911 0.42100799 0.031709 -0.90650302 0.42100799 0.031709 -0.90650302 0.42040801\n\t\t 0.043735001 -0.90628099 0.437215 -0.145972 -0.88743198 0.42040801 0.043735001 -0.90628099\n\t\t 0.42100799 0.031709 -0.90650302 0.44334599 0.21314301 -0.87063998 0.44334599 0.21314301\n\t\t -0.87063998 0.44188201 0.220773 -0.86948198 0.42040801 0.043735001 -0.90628099 0.44188201\n\t\t 0.220773 -0.86948198 0.44334599 0.21314301 -0.87063998 0.49923301 0.361958 -0.78724402\n\t\t 0.49923301 0.361958 -0.78724402 0.49246499 0.360284 -0.79225898 0.44188201 0.220773\n\t\t -0.86948198 0.49246499 0.360284 -0.79225898 0.49923301 0.361958 -0.78724402 0.61273903\n\t\t 0.44790301 -0.65110201 0.61273903 0.44790301 -0.65110201 0.60254598 0.443113 -0.66376901\n\t\t 0.49246499 0.360284 -0.79225898 0.60254598 0.443113 -0.66376901 0.61273903 0.44790301\n\t\t -0.65110201 0.72806501 0.455529 -0.51226401 0.72806501 0.455529 -0.51226401 0.72849798\n\t\t 0.450497 -0.516083 0.60254598 0.443113 -0.66376901 0.72849798 0.450497 -0.516083\n\t\t 0.72806501 0.455529 -0.51226401 0.77397501 0.43594101 -0.45925799 0.77397501 0.43594101\n\t\t -0.45925799 0.77927601 0.42797101 -0.45778799 0.72849798 0.450497 -0.516083 -0.149969\n\t\t -0.98005301 -0.13040701 -0.064487003 -0.99593401 -0.062899999 -0.064425997 -0.99593598\n\t\t -0.062931001 -0.064425997 -0.99593598 -0.062931001 -0.13767 -0.98303998 -0.121159\n\t\t -0.149969 -0.98005301 -0.13040701 -0.149969 -0.98005301 -0.13040701 -0.13767 -0.98303998\n\t\t -0.121159 -0.363453 -0.88191402 -0.300217 -0.363453 -0.88191402 -0.300217 -0.38741401\n\t\t -0.86553299 -0.317433 -0.149969 -0.98005301 -0.13040701 -0.62467301 -0.59738898 -0.50290102\n\t\t -0.38741401 -0.86553299 -0.317433 -0.363453 -0.88191402 -0.300217 -0.363453 -0.88191402\n\t\t -0.300217 -0.61118102 -0.61780399 -0.49474901 -0.62467301 -0.59738898 -0.50290102\n\t\t -0.62467301 -0.59738898 -0.50290102 -0.61118102 -0.61780399 -0.49474901 -0.75643802\n\t\t -0.244791 -0.60653001 -0.75643802 -0.244791 -0.60653001 -0.76076698 -0.228981 -0.60728902\n\t\t -0.62467301 -0.59738898 -0.50290102 -0.769117 0.150399 -0.62115902 -0.76076698 -0.228981\n\t\t -0.60728902 -0.75643802 -0.244791 -0.60653001 -0.75643802 -0.244791 -0.60653001 -0.77391702\n\t\t 0.145639 -0.61631298 -0.769117 0.150399 -0.62115902 -0.769117 0.150399 -0.62115902\n\t\t -0.77391702 0.145639 -0.61631298 -0.64538503 0.48616701 -0.58916903 -0.64538503 0.48616701\n\t\t -0.58916903 -0.63647199 0.48793599 -0.59734601 -0.769117 0.150399 -0.62115902 -0.37382501\n\t\t 0.72683501 -0.57616401 -0.63647199 0.48793599 -0.59734601 -0.64538503 0.48616701\n\t\t -0.58916903 -0.64538503 0.48616701 -0.58916903 -0.411984 0.73158503 -0.54318798 -0.37382501\n\t\t 0.72683501 -0.57616401 -0.37382501 0.72683501 -0.57616401 -0.411984 0.73158503 -0.54318798\n\t\t -0.119422 0.92125601 -0.37016901 -0.119422 0.92125601 -0.37016901 -0.028322 0.91681701\n\t\t -0.39830199 -0.37382501 0.72683501 -0.57616401 0.19559801 0.96913999 -0.150033 -0.028322\n\t\t 0.91681701 -0.39830199 -0.119422 0.92125601 -0.37016901 -0.119422 0.92125601 -0.37016901\n\t\t 0.159128 0.97713798 -0.140999 0.19559801 0.96913999 -0.150033 0.19559801 0.96913999\n\t\t -0.150033 0.159128 0.97713798 -0.140999 0.26069301 0.96467501 -0.037966002 0.26069301\n\t\t 0.96467501 -0.037966002 0.28925499 0.956177 -0.045350999 0.19559801 0.96913999 -0.150033\n\t\t -0.75530201 -0.241869 -0.60911298 -0.75643802 -0.244791 -0.60653001 -0.61118102 -0.61780399\n\t\t -0.49474901 -0.77391702 0.145639 -0.61631298 -0.75643802 -0.244791 -0.60653001 -0.75530201\n\t\t -0.241869 -0.60911298 -0.61118102 -0.61780399 -0.49474901 -0.60952598 -0.61694199\n\t\t -0.497857 -0.75530201 -0.241869 -0.60911298 -0.75530201 -0.241869 -0.60911298 -0.77061301\n\t\t 0.102331 -0.62903398 -0.77391702 0.145639 -0.61631298 -0.64538503 0.48616701 -0.58916903\n\t\t -0.77391702 0.145639 -0.61631298 -0.77061301 0.102331 -0.62903398 -0.77061301 0.102331\n\t\t -0.62903398 -0.73376799 0.28724501 -0.61568999 -0.64538503 0.48616701 -0.58916903\n\t\t -0.36204699 -0.88184702 -0.30210799 -0.60952598 -0.61694199 -0.497857 -0.61118102\n\t\t -0.61780399 -0.49474901 -0.61118102 -0.61780399 -0.49474901 -0.363453 -0.88191402\n\t\t -0.300217 -0.36204699 -0.88184702 -0.30210799 -0.36204699 -0.88184702 -0.30210799\n\t\t -0.363453 -0.88191402 -0.300217 -0.13767 -0.98303998 -0.121159 -0.13767 -0.98303998\n\t\t -0.121159 -0.136788 -0.98303002 -0.12223 -0.36204699 -0.88184702 -0.30210799 -0.063601002\n\t\t -0.995929 -0.063876003 -0.136788 -0.98303002 -0.12223 -0.13767 -0.98303998 -0.121159\n\t\t -0.13767 -0.98303998 -0.121159 -0.064425997 -0.99593598 -0.062931001;\n\tsetAttr \".n[3320:3485]\" -type \"float3\"  -0.063601002 -0.995929 -0.063876003 -0.072330996\n\t\t -0.98337197 -0.166576 -0.021759 -0.99557602 -0.091403 0.050020002 -0.98819399 -0.144811\n\t\t 0.050020002 -0.98819399 -0.144811 -0.002228 -0.97534198 -0.220686 -0.072330996 -0.98337197\n\t\t -0.166576 -0.072330996 -0.98337197 -0.166576 -0.002228 -0.97534198 -0.220686 -0.156471\n\t\t -0.88068998 -0.44710499 -0.156471 -0.88068998 -0.44710499 -0.229811 -0.88787299 -0.39858401\n\t\t -0.072330996 -0.98337197 -0.166576 -0.40551201 -0.64802003 -0.64469302 -0.229811\n\t\t -0.88787299 -0.39858401 -0.156471 -0.88068998 -0.44710499 -0.156471 -0.88068998 -0.44710499\n\t\t -0.333974 -0.62845701 -0.70249701 -0.40551201 -0.64802003 -0.64469302 -0.40551201\n\t\t -0.64802003 -0.64469302 -0.333974 -0.62845701 -0.70249701 -0.446587 -0.26252601 -0.85535997\n\t\t -0.446587 -0.26252601 -0.85535997 -0.50708097 -0.53729498 -0.673931 -0.40551201 -0.64802003\n\t\t -0.64469302 -0.55353701 0.23219401 -0.79980099 -0.584373 0.154089 -0.79672199 -0.446587\n\t\t -0.26252601 -0.85535997 -0.446587 -0.26252601 -0.85535997 -0.46624699 0.145456 -0.87261498\n\t\t -0.55353701 0.23219401 -0.79980099 -0.55353701 0.23219401 -0.79980099 -0.46624699\n\t\t 0.145456 -0.87261498 -0.40392399 0.50366098 -0.76365602 -0.40392399 0.50366098 -0.76365602\n\t\t -0.47640601 0.51565301 -0.71213698 -0.55353701 0.23219401 -0.79980099 -0.36000499\n\t\t 0.77122003 -0.52499199 -0.47640601 0.51565301 -0.71213698 -0.40392399 0.50366098\n\t\t -0.76365602 -0.40392399 0.50366098 -0.76365602 -0.28849801 0.76264298 -0.57891798\n\t\t -0.36000499 0.77122003 -0.52499199 -0.36000499 0.77122003 -0.52499199 -0.28849801\n\t\t 0.76264298 -0.57891798 -0.119117 0.93822497 -0.32487801 -0.119117 0.93822497 -0.32487801\n\t\t -0.194074 0.94454998 -0.26487899 -0.36000499 0.77122003 -0.52499199 -0.014344 0.99982601\n\t\t 0.011902 -0.194074 0.94454998 -0.26487899 -0.119117 0.93822497 -0.32487801 -0.119117\n\t\t 0.93822497 -0.32487801 0.066105001 0.99655402 -0.050113 -0.014344 0.99982601 0.011902\n\t\t -0.014344 0.99982601 0.011902 0.066105001 0.99655402 -0.050113 0.14154699 0.98811197\n\t\t 0.059999999 0.14154699 0.98811197 0.059999999 0.057649001 0.990879 0.1218 -0.014344\n\t\t 0.99982601 0.011902 -0.42993 -0.66456598 -0.61115599 -0.40551201 -0.64802003 -0.64469302\n\t\t -0.50708097 -0.53729498 -0.673931 -0.50708097 -0.53729498 -0.673931 -0.59113503 -0.61234599\n\t\t -0.52496803 -0.42993 -0.66456598 -0.61115599 -0.40551201 -0.64802003 -0.64469302\n\t\t -0.42993 -0.66456598 -0.61115599 -0.227643 -0.88337898 -0.409659 -0.227643 -0.88337898\n\t\t -0.409659 -0.229811 -0.88787299 -0.39858401 -0.40551201 -0.64802003 -0.64469302 -0.229811\n\t\t -0.88787299 -0.39858401 -0.227643 -0.88337898 -0.409659 -0.064792 -0.98262501 -0.17392799\n\t\t -0.064792 -0.98262501 -0.17392799 -0.072330996 -0.98337197 -0.166576 -0.229811 -0.88787299\n\t\t -0.39858401 -0.072330996 -0.98337197 -0.166576 -0.064792 -0.98262501 -0.17392799\n\t\t -0.012513 -0.99520099 -0.097051002 -0.012513 -0.99520099 -0.097051002 -0.021759 -0.99557602\n\t\t -0.091403 -0.072330996 -0.98337197 -0.166576 -0.72648603 -0.47097701 0.50039798 -0.72679698\n\t\t -0.46561 0.50494897 -0.74824703 -0.47192401 0.466277 -0.24168099 -0.96889198 0.053286999\n\t\t -0.173014 -0.97841799 0.112982 -0.166541 -0.97999299 0.108983 -0.166541 -0.97999299\n\t\t 0.108983 -0.243544 -0.96859097 0.050174002 -0.24168099 -0.96889198 0.053286999 -0.24168099\n\t\t -0.96889198 0.053286999 -0.243544 -0.96859097 0.050174002 -0.51928502 -0.84620702\n\t\t -0.119483 -0.51928502 -0.84620702 -0.119483 -0.511401 -0.85168397 -0.114475 -0.24168099\n\t\t -0.96889198 0.053286999 -0.78064501 -0.54610699 -0.30390799 -0.511401 -0.85168397\n\t\t -0.114475 -0.51928502 -0.84620702 -0.119483 -0.51928502 -0.84620702 -0.119483 -0.78807598\n\t\t -0.53284103 -0.30824801 -0.78064501 -0.54610699 -0.30390799 -0.78064501 -0.54610699\n\t\t -0.30390799 -0.78807598 -0.53284103 -0.30824801 -0.89140999 -0.133462 -0.433101 -0.89140999\n\t\t -0.133462 -0.433101 -0.88970202 -0.15101001 -0.430843 -0.78064501 -0.54610699 -0.30390799\n\t\t -0.85530603 0.20609701 -0.47536999 -0.88970202 -0.15101001 -0.430843 -0.89140999\n\t\t -0.133462 -0.433101 -0.89140999 -0.133462 -0.433101 -0.85115802 0.219313 -0.47689801\n\t\t -0.85530603 0.20609701 -0.47536999 -0.85530603 0.20609701 -0.47536999 -0.85115802\n\t\t 0.219313 -0.47689801 -0.71506798 0.53070003 -0.45501199 -0.71506798 0.53070003 -0.45501199\n\t\t -0.71909499 0.52139097 -0.45940599 -0.85530603 0.20609701 -0.47536999 -0.61731601\n\t\t 0.67566901 -0.402978 -0.71909499 0.52139097 -0.45940599 -0.71506798 0.53070003 -0.45501199\n\t\t -0.71506798 0.53070003 -0.45501199 -0.61868602 0.677221 -0.39824501 -0.61731601 0.67566901\n\t\t -0.402978 -0.91196799 -0.042635001 -0.408039 -0.90682101 -0.051731002 -0.418329 -0.90889603\n\t\t -0.048099 -0.41423899 -0.90889603 -0.048099 -0.41423899 -0.91390198 -0.039126001\n\t\t -0.404046 -0.91196799 -0.042635001 -0.408039 -0.78085798 0.42921799 -0.453908 -0.77952898\n\t\t 0.43999901 -0.44579801 -0.78127098 0.42562601 -0.45657301 -0.78127098 0.42562601\n\t\t -0.45657301 -0.78240001 0.41476101 -0.464569 -0.78085798 0.42921799 -0.453908 -0.308947\n\t\t 0.88283199 -0.35378 -0.31886801 0.88057899 -0.350577 -0.096165001 0.95734602 -0.27247199\n\t\t -0.096165001 0.95734602 -0.27247199 -0.140082 0.94605601 -0.29215801 -0.308947 0.88283199\n\t\t -0.35378 0.116368 0.975685 -0.185737 -0.140082 0.94605601 -0.29215801 -0.096165001\n\t\t 0.95734602 -0.27247199 -0.096165001 0.95734602 -0.27247199 0.127049 0.97531998 -0.18058001\n\t\t 0.116368 0.975685 -0.185737 0.116368 0.975685 -0.185737 0.127049 0.97531998 -0.18058001\n\t\t 0.179149 0.96966499 -0.166301 0.179149 0.96966499 -0.166301 0.185004 0.96808499 -0.169074\n\t\t 0.116368 0.975685 -0.185737 0.43469101 -0.116097 -0.89306498 0.434995 -0.12583201\n\t\t -0.89159697 0.439239 -0.075016998 -0.89523298 0.439239 -0.075016998 -0.89523298 0.44148999\n\t\t -0.061923001 -0.895127 0.43469101 -0.116097 -0.89306498;\n\tsetAttr \".n[3486:3651]\" -type \"float3\"  0.434995 -0.12583201 -0.89159697 0.43469101\n\t\t -0.116097 -0.89306498 0.43889901 -0.15659501 -0.88478601 0.43889901 -0.15659501 -0.88478601\n\t\t 0.439843 -0.165262 -0.88273799 0.434995 -0.12583201 -0.89159697 0.44148999 -0.061923001\n\t\t -0.895127 0.439239 -0.075016998 -0.89523298 0.474848 -0.034029 -0.87941003 0.474848\n\t\t -0.034029 -0.87941003 0.48195499 -0.02179 -0.875925 0.44148999 -0.061923001 -0.895127\n\t\t 0.48195499 -0.02179 -0.875925 0.474848 -0.034029 -0.87941003 0.52718198 -0.036378\n\t\t -0.84897298 0.52718198 -0.036378 -0.84897298 0.53539002 -0.032106001 -0.84399498\n\t\t 0.48195499 -0.02179 -0.875925 0.53539002 -0.032106001 -0.84399498 0.52718198 -0.036378\n\t\t -0.84897298 0.56033099 -0.081394002 -0.82426 0.56033099 -0.081394002 -0.82426 0.56415099\n\t\t -0.083287001 -0.82146001 0.53539002 -0.032106001 -0.84399498 0.56415099 -0.083287001\n\t\t -0.82146001 0.56033099 -0.081394002 -0.82426 0.54986101 -0.14923801 -0.82181603 0.54986101\n\t\t -0.14923801 -0.82181603 0.54736 -0.161293 -0.82120699 0.56415099 -0.083287001 -0.82146001\n\t\t 0.50139701 -0.20759 -0.83994502 0.54736 -0.161293 -0.82120699 0.54986101 -0.14923801\n\t\t -0.82181603 0.54986101 -0.14923801 -0.82181603 0.500938 -0.20423301 -0.84104103 0.50139701\n\t\t -0.20759 -0.83994502 0.50155002 -0.21198501 -0.83875501 0.50139701 -0.20759 -0.83994502\n\t\t 0.500938 -0.20423301 -0.84104103 0.500938 -0.20423301 -0.84104103 0.50078398 -0.206613\n\t\t -0.84055102 0.50155002 -0.21198501 -0.83875501 0.50155002 -0.21198501 -0.83875501\n\t\t 0.50078398 -0.206613 -0.84055102 0.543455 -0.161568 -0.82374299 0.543455 -0.161568\n\t\t -0.82374299 0.55441898 -0.16389 -0.81594098 0.50155002 -0.21198501 -0.83875501 0.55441898\n\t\t -0.16389 -0.81594098 0.543455 -0.161568 -0.82374299 0.59494102 -0.16755 -0.78611201\n\t\t 0.59494102 -0.16755 -0.78611201 0.60232699 -0.176401 -0.77851498 0.55441898 -0.16389\n\t\t -0.81594098 0.60232699 -0.176401 -0.77851498 0.59494102 -0.16755 -0.78611201 0.60799402\n\t\t -0.205543 -0.76687402 0.60799402 -0.205543 -0.76687402 0.60855198 -0.212596 -0.76450503\n\t\t 0.60232699 -0.176401 -0.77851498 0.60855198 -0.212596 -0.76450503 0.60799402 -0.205543\n\t\t -0.76687402 0.606933 -0.236156 -0.758856 0.606933 -0.236156 -0.758856 0.607301 -0.24198601\n\t\t -0.75672197 0.60855198 -0.212596 -0.76450503 -0.435543 0.13425501 0.8901 -0.43724599\n\t\t 0.126562 0.89039201 -0.43722001 0.158517 0.88527399 -0.43722001 0.158517 0.88527399\n\t\t -0.434441 0.164041 0.88563597 -0.435543 0.13425501 0.8901 -0.43724599 0.126562 0.89039201\n\t\t -0.435543 0.13425501 0.8901 -0.42997599 0.085605003 0.89877301 -0.42997599 0.085605003\n\t\t 0.89877301 -0.43852699 0.077914998 0.89533401 -0.43724599 0.126562 0.89039201 -0.43852699\n\t\t 0.077914998 0.89533401 -0.42997599 0.085605003 0.89877301 -0.46264601 0.038454998\n\t\t 0.88570899 -0.46264601 0.038454998 0.88570899 -0.47551599 0.035859998 0.87897599\n\t\t -0.43852699 0.077914998 0.89533401 -0.47551599 0.035859998 0.87897599 -0.46264601\n\t\t 0.038454998 0.88570899 -0.52005303 0.038516 0.85326499 -0.52005303 0.038516 0.85326499\n\t\t -0.52902901 0.038821001 0.84771597 -0.47551599 0.035859998 0.87897599 -0.52902901\n\t\t 0.038821001 0.84771597 -0.52005303 0.038516 0.85326499 -0.55700701 0.086369 0.82600403\n\t\t -0.55700701 0.086369 0.82600403 -0.56115103 0.084995002 0.82333797 -0.52902901 0.038821001\n\t\t 0.84771597 -0.56115103 0.084995002 0.82333797 -0.55700701 0.086369 0.82600403 -0.54586601\n\t\t 0.162148 0.82203299 -0.54586601 0.162148 0.82203299 -0.54974699 0.150095 0.82173598\n\t\t -0.56115103 0.084995002 0.82333797 -0.54974699 0.150095 0.82173598 -0.54586601 0.162148\n\t\t 0.82203299 -0.50195402 0.20890599 0.83928603 -0.50195402 0.20890599 0.83928603 -0.50173801\n\t\t 0.204235 0.84056401 -0.54974699 0.150095 0.82173598 -0.50173801 0.204235 0.84056401\n\t\t -0.50195402 0.20890599 0.83928603 -0.50097698 0.20682999 0.84038299 -0.50097698 0.20682999\n\t\t 0.84038299 -0.50531101 0.20457201 0.83833897 -0.50173801 0.204235 0.84056401 -0.50531101\n\t\t 0.20457201 0.83833897 -0.50097698 0.20682999 0.84038299 -0.55325001 0.148109 0.81974298\n\t\t -0.55325001 0.148109 0.81974298 -0.550906 0.16691101 0.81770599 -0.50531101 0.20457201\n\t\t 0.83833897 -0.550906 0.16691101 0.81770599 -0.55325001 0.148109 0.81974298 -0.59989297\n\t\t 0.162486 0.78340697 -0.59989297 0.162486 0.78340697 -0.59320199 0.178232 0.78507602\n\t\t -0.550906 0.16691101 0.81770599 -0.59320199 0.178232 0.78507602 -0.59989297 0.162486\n\t\t 0.78340697 -0.61000901 0.20319401 0.765899 -0.61000901 0.20319401 0.765899 -0.60611397\n\t\t 0.211072 0.76686001 -0.59320199 0.178232 0.78507602 -0.60611397 0.211072 0.76686001\n\t\t -0.61000901 0.20319401 0.765899 -0.60257399 0.235792 0.76243401 -0.60257399 0.235792\n\t\t 0.76243401 -0.600133 0.241744 0.76249599 -0.60611397 0.211072 0.76686001 -0.32292399\n\t\t -0.71625602 0.61862499 -0.414056 -0.68461001 0.59988898 -0.39586201 -0.75440001 0.523615\n\t\t -0.39586201 -0.75440001 0.523615 -0.30195999 -0.78752601 0.53723598 -0.32292399 -0.71625602\n\t\t 0.61862499 -0.30195999 -0.78752601 0.53723598 -0.39586201 -0.75440001 0.523615 -0.37715799\n\t\t -0.78846902 0.48586899 -0.37715799 -0.78846902 0.48586899 -0.281295 -0.82331502 0.49297601\n\t\t -0.30195999 -0.78752601 0.53723598 -0.64172202 -0.63860899 0.42470199 -0.37715799\n\t\t -0.78846902 0.48586899 -0.39586201 -0.75440001 0.523615 -0.39586201 -0.75440001 0.523615\n\t\t -0.65372699 -0.60276002 0.457517 -0.64172202 -0.63860899 0.42470199 -0.65372699 -0.60276002\n\t\t 0.457517 -0.39586201 -0.75440001 0.523615 -0.414056 -0.68461001 0.59988898 -0.414056\n\t\t -0.68461001 0.59988898 -0.66362298 -0.53647798 0.52134001 -0.65372699 -0.60276002\n\t\t 0.457517 -0.90434003 -0.30973801 0.29365399 -0.65372699 -0.60276002 0.457517 -0.66362298\n\t\t -0.53647798 0.52134001 -0.66362298 -0.53647798 0.52134001;\n\tsetAttr \".n[3652:3817]\" -type \"float3\"  -0.89980298 -0.27009699 0.342641 -0.90434003\n\t\t -0.30973801 0.29365399 -0.65372699 -0.60276002 0.457517 -0.90434003 -0.30973801 0.29365399\n\t\t -0.90642399 -0.331379 0.261886 -0.90642399 -0.331379 0.261886 -0.64172202 -0.63860899\n\t\t 0.42470199 -0.65372699 -0.60276002 0.457517 -0.97662598 -0.151225 0.15275 -0.90642399\n\t\t -0.331379 0.261886 -0.90434003 -0.30973801 0.29365399 -0.90434003 -0.30973801 0.29365399\n\t\t -0.97278702 -0.13928799 0.185158 -0.97662598 -0.151225 0.15275 -0.97278702 -0.13928799\n\t\t 0.185158 -0.90434003 -0.30973801 0.29365399 -0.89980298 -0.27009699 0.342641 -0.89980298\n\t\t -0.27009699 0.342641 -0.995332 0.075199999 0.060490001 -0.97278702 -0.13928799 0.185158\n\t\t -0.89485103 0.39565 -0.206645 -0.93855703 0.31611699 -0.138496 -0.995332 0.075199999\n\t\t 0.060490001 -0.995332 0.075199999 0.060490001 -0.90600502 0.364373 -0.215377 -0.89485103\n\t\t 0.39565 -0.206645 -0.93855703 0.31611699 -0.138496 -0.89485103 0.39565 -0.206645\n\t\t -0.88269901 0.414965 -0.22056 -0.88269901 0.414965 -0.22056 -0.92845601 0.334521\n\t\t -0.161447 -0.93855703 0.31611699 -0.138496 -0.82266802 0.49495599 -0.279706 -0.88269901\n\t\t 0.414965 -0.22056 -0.89485103 0.39565 -0.206645 -0.89485103 0.39565 -0.206645 -0.82938898\n\t\t 0.48427799 -0.278548 -0.82266802 0.49495599 -0.279706 -0.82938898 0.48427799 -0.278548\n\t\t -0.89485103 0.39565 -0.206645 -0.90600502 0.364373 -0.215377 -0.90600502 0.364373\n\t\t -0.215377 -0.822707 0.47903001 -0.306077 -0.82938898 0.48427799 -0.278548 -0.89466399\n\t\t -0.242535 0.37516999 -0.89980298 -0.27009699 0.342641 -0.66362298 -0.53647798 0.52134001\n\t\t -0.66362298 -0.53647798 0.52134001 -0.66930997 -0.486013 0.561975 -0.89466399 -0.242535\n\t\t 0.37516999 -0.66930997 -0.486013 0.561975 -0.66362298 -0.53647798 0.52134001 -0.414056\n\t\t -0.68461001 0.59988898 -0.414056 -0.68461001 0.59988898 -0.42223299 -0.62988698 0.65189099\n\t\t -0.66930997 -0.486013 0.561975 -0.42223299 -0.62988698 0.65189099 -0.414056 -0.68461001\n\t\t 0.59988898 -0.32292399 -0.71625602 0.61862499 -0.32292399 -0.71625602 0.61862499\n\t\t -0.33122599 -0.66361099 0.670753 -0.42223299 -0.62988698 0.65189099 -0.67212701 -0.47018099\n\t\t 0.57199299 -0.66930997 -0.486013 0.561975 -0.42223299 -0.62988698 0.65189099 -0.42223299\n\t\t -0.62988698 0.65189099 -0.42375699 -0.60864198 0.67080897 -0.67212701 -0.47018099\n\t\t 0.57199299 -0.42375699 -0.60864198 0.67080897 -0.42223299 -0.62988698 0.65189099\n\t\t -0.33122599 -0.66361099 0.670753 -0.33122599 -0.66361099 0.670753 -0.33226499 -0.64157999\n\t\t 0.69135702 -0.42375699 -0.60864198 0.67080897 -0.89338398 -0.240887 0.37926 -0.89466399\n\t\t -0.242535 0.37516999 -0.66930997 -0.486013 0.561975 -0.66930997 -0.486013 0.561975\n\t\t -0.67212701 -0.47018099 0.57199299 -0.89338398 -0.240887 0.37926 -0.89466399 -0.242535\n\t\t 0.37516999 -0.89338398 -0.240887 0.37926 -0.99272603 0.032228 0.116003 -0.99272603\n\t\t 0.032228 0.116003 -0.99338102 0.059266999 0.098392002 -0.89466399 -0.242535 0.37516999\n\t\t -0.89980298 -0.27009699 0.342641 -0.89466399 -0.242535 0.37516999 -0.99338102 0.059266999\n\t\t 0.098392002 -0.99338102 0.059266999 0.098392002 -0.995332 0.075199999 0.060490001\n\t\t -0.89980298 -0.27009699 0.342641 -0.995332 0.075199999 0.060490001 -0.99338102 0.059266999\n\t\t 0.098392002 -0.93580699 0.30903599 -0.169595 -0.93580699 0.30903599 -0.169595 -0.90600502\n\t\t 0.364373 -0.215377 -0.995332 0.075199999 0.060490001 -0.90600502 0.364373 -0.215377\n\t\t -0.93580699 0.30903599 -0.169595 -0.88207299 0.38668099 -0.26912001 -0.88207299 0.38668099\n\t\t -0.26912001 -0.822707 0.47903001 -0.306077 -0.90600502 0.364373 -0.215377 -0.910694\n\t\t 0.339618 -0.23515099 -0.88207299 0.38668099 -0.26912001 -0.93580699 0.30903599 -0.169595\n\t\t -0.93580699 0.30903599 -0.169595 -0.95437098 0.26557899 -0.136544 -0.910694 0.339618\n\t\t -0.23515099 -0.95437098 0.26557899 -0.136544 -0.93580699 0.30903599 -0.169595 -0.99338102\n\t\t 0.059266999 0.098392002 -0.99338102 0.059266999 0.098392002 -0.99272603 0.032228\n\t\t 0.116003 -0.95437098 0.26557899 -0.136544 -0.67212701 -0.47018099 0.57199299 -0.42375699\n\t\t -0.60864198 0.67080897 -0.421345 -0.60302502 0.677369 -0.421345 -0.60302502 0.677369\n\t\t -0.679178 -0.46242899 0.56998003 -0.67212701 -0.47018099 0.57199299 -0.89338398 -0.240887\n\t\t 0.37926 -0.67212701 -0.47018099 0.57199299 -0.679178 -0.46242899 0.56998003 -0.42375699\n\t\t -0.60864198 0.67080897 -0.33226499 -0.64157999 0.69135702 -0.33250499 -0.63488901\n\t\t 0.69739199 -0.33250499 -0.63488901 0.69739199 -0.421345 -0.60302502 0.677369 -0.42375699\n\t\t -0.60864198 0.67080897 -0.99272603 0.032228 0.116003 -0.89338398 -0.240887 0.37926\n\t\t -0.90175599 -0.233199 0.36394399 -0.679178 -0.46242899 0.56998003 -0.90175599 -0.233199\n\t\t 0.36394399 -0.89338398 -0.240887 0.37926 -0.90175599 -0.233199 0.36394399 -0.99505401\n\t\t 0.032563999 0.093846999 -0.99272603 0.032228 0.116003 -0.95437098 0.26557899 -0.136544\n\t\t -0.99272603 0.032228 0.116003 -0.99505401 0.032563999 0.093846999 -0.910694 0.339618\n\t\t -0.23515099 -0.95437098 0.26557899 -0.136544 -0.95643699 0.251111 -0.148903 -0.99505401\n\t\t 0.032563999 0.093846999 -0.95643699 0.251111 -0.148903 -0.95437098 0.26557899 -0.136544\n\t\t -0.95643699 0.251111 -0.148903 -0.92072499 0.316908 -0.227671 -0.910694 0.339618\n\t\t -0.23515099 -0.68473399 0.189983 -0.70359498 -0.543917 0.260483 -0.79768598 -0.54287899\n\t\t 0.30275199 -0.78334099 -0.54287899 0.30275199 -0.78334099 -0.67767501 0.220255 -0.70160103\n\t\t -0.68473399 0.189983 -0.70359498 -0.67767501 0.220255 -0.70160103 -0.54287899 0.30275199\n\t\t -0.78334099 -0.53485101 0.340992 -0.77308398 -0.252514 0.42876101 -0.86741 -0.54287899\n\t\t 0.30275199 -0.78334099 -0.543917 0.260483 -0.79768598 -0.53485101 0.340992 -0.77308398\n\t\t -0.54287899 0.30275199 -0.78334099;\n\tsetAttr \".n[3818:3983]\" -type \"float3\"  -0.252514 0.42876101 -0.86741 -0.543917\n\t\t 0.260483 -0.79768598 -0.240676 0.36974201 -0.89742202 -0.252514 0.42876101 -0.86741\n\t\t -0.068333 0.486572 -0.87096399 -0.252514 0.42876101 -0.86741 -0.240676 0.36974201\n\t\t -0.89742202 -0.240676 0.36974201 -0.89742202 -0.045442998 0.42223099 -0.905348 -0.068333\n\t\t 0.486572 -0.87096399 -0.252514 0.42876101 -0.86741 -0.068333 0.486572 -0.87096399\n\t\t -0.084508002 0.54272401 -0.83564901 -0.084508002 0.54272401 -0.83564901 -0.25541499\n\t\t 0.49230501 -0.83210498 -0.252514 0.42876101 -0.86741 -0.252514 0.42876101 -0.86741\n\t\t -0.25541499 0.49230501 -0.83210498 -0.53485101 0.340992 -0.77308398 -0.016023001\n\t\t 0.50700998 -0.86179101 -0.068333 0.486572 -0.87096399 -0.045442998 0.42223099 -0.905348\n\t\t -0.045442998 0.42223099 -0.905348 0.010163 0.44102699 -0.89743602 -0.016023001 0.50700998\n\t\t -0.86179101 -0.068333 0.486572 -0.87096399 -0.016023001 0.50700998 -0.86179101 -0.042300001\n\t\t 0.53909802 -0.84118003 -0.042300001 0.53909802 -0.84118003 -0.084508002 0.54272401\n\t\t -0.83564901 -0.068333 0.486572 -0.87096399 -0.281295 -0.82331502 0.49297601 -0.37715799\n\t\t -0.78846902 0.48586899 -0.361045 -0.806355 0.46844301 -0.361045 -0.806355 0.46844301\n\t\t -0.265977 -0.83660001 0.478912 -0.281295 -0.82331502 0.49297601 -0.62793303 -0.66559398\n\t\t 0.40334201 -0.361045 -0.806355 0.46844301 -0.37715799 -0.78846902 0.48586899 -0.37715799\n\t\t -0.78846902 0.48586899 -0.64172202 -0.63860899 0.42470199 -0.62793303 -0.66559398\n\t\t 0.40334201 -0.90523499 -0.353567 0.235671 -0.62793303 -0.66559398 0.40334201 -0.64172202\n\t\t -0.63860899 0.42470199 -0.64172202 -0.63860899 0.42470199 -0.90642399 -0.331379 0.261886\n\t\t -0.90523499 -0.353567 0.235671 -0.98039001 -0.15424301 0.122656 -0.90523499 -0.353567\n\t\t 0.235671 -0.90642399 -0.331379 0.261886 -0.90642399 -0.331379 0.261886 -0.97662598\n\t\t -0.151225 0.15275 -0.98039001 -0.15424301 0.122656 -0.87246001 0.43026301 -0.231704\n\t\t -0.92469501 0.33924901 -0.172768 -0.92845601 0.334521 -0.161447 -0.92845601 0.334521\n\t\t -0.161447 -0.88269901 0.414965 -0.22056 -0.87246001 0.43026301 -0.231704 -0.81532902\n\t\t 0.50009298 -0.29179701 -0.87246001 0.43026301 -0.231704 -0.88269901 0.414965 -0.22056\n\t\t -0.88269901 0.414965 -0.22056 -0.82266802 0.49495599 -0.279706 -0.81532902 0.50009298\n\t\t -0.29179701 -0.97812599 -0.138037 0.155615 -0.96901798 -0.122413 0.21452001 -0.97077698\n\t\t -0.117681 0.20914599 -0.97077698 -0.117681 0.20914599 -0.97088498 -0.21317901 0.10926\n\t\t -0.97812599 -0.138037 0.155615 -0.97077698 -0.117681 0.20914599 -0.96901798 -0.122413\n\t\t 0.21452001 -0.97599399 -0.13550401 0.170509 -0.97599399 -0.13550401 0.170509 -0.97295099\n\t\t -0.129554 0.191264 -0.97077698 -0.117681 0.20914599 -0.97812599 -0.138037 0.155615\n\t\t -0.97088498 -0.21317901 0.10926 -0.98625499 -0.146736 0.075962 -0.98625499 -0.146736\n\t\t 0.075962 -0.98378402 -0.13932 0.112951 -0.97812599 -0.138037 0.155615 -0.99629301\n\t\t -0.077060997 -0.038240001 -0.98378402 -0.13932 0.112951 -0.98625499 -0.146736 0.075962\n\t\t -0.98625499 -0.146736 0.075962 -0.98919702 -0.146005 -0.013093 -0.99629301 -0.077060997\n\t\t -0.038240001 -0.99935901 -0.014436 -0.032747 -0.97295099 -0.129554 0.191264 -0.97599399\n\t\t -0.13550401 0.170509 -0.97599399 -0.13550401 0.170509 -0.98704898 -0.153267 -0.047366001\n\t\t -0.99935901 -0.014436 -0.032747 -0.98275 -0.109595 -0.148964 -0.99629301 -0.077060997\n\t\t -0.038240001 -0.98919702 -0.146005 -0.013093 -0.98919702 -0.146005 -0.013093 -0.97303301\n\t\t -0.22855601 -0.031129001 -0.98275 -0.109595 -0.148964 -0.98275 -0.109595 -0.148964\n\t\t -0.97303301 -0.22855601 -0.031129001 -0.971017 -0.045717001 -0.234598 -0.971017 -0.045717001\n\t\t -0.234598 -0.966277 -0.051791999 -0.25224301 -0.98275 -0.109595 -0.148964 -0.966277\n\t\t -0.051791999 -0.25224301 -0.971017 -0.045717001 -0.234598 -0.98583102 0.028046999\n\t\t -0.165383 -0.98583102 0.028046999 -0.165383 -0.98869002 0.016297 -0.149085 -0.966277\n\t\t -0.051791999 -0.25224301 -0.98869002 0.016297 -0.149085 -0.98583102 0.028046999 -0.165383\n\t\t -0.99449301 -0.063816004 -0.083134003 -0.99449301 -0.063816004 -0.083134003 -0.99748802\n\t\t -0.023134001 -0.066959001 -0.98869002 0.016297 -0.149085 -0.99748802 -0.023134001\n\t\t -0.066959001 -0.99449301 -0.063816004 -0.083134003 -0.99683899 -0.024537999 -0.075565003\n\t\t -0.99683899 -0.024537999 -0.075565003 -0.99935901 -0.014436 -0.032747 -0.98704898\n\t\t -0.153267 -0.047366001 -0.99683899 -0.024537999 -0.075565003 -0.99401802 -0.016419999\n\t\t -0.107978 -0.99748802 -0.023134001 -0.066959001 -0.98275 -0.109595 -0.148964 -0.966277\n\t\t -0.051791999 -0.25224301 -0.97765797 -0.066380002 -0.199444 -0.97765797 -0.066380002\n\t\t -0.199444 -0.98640501 -0.032839 -0.161018 -0.98275 -0.109595 -0.148964 -0.99629301\n\t\t -0.077060997 -0.038240001 -0.98275 -0.109595 -0.148964 -0.98640501 -0.032839 -0.161018\n\t\t -0.98640501 -0.032839 -0.161018 -0.97765797 -0.066380002 -0.199444 -0.98228502 -0.030579999\n\t\t -0.184884 -0.98228502 -0.030579999 -0.184884 -0.97834098 -0.048098002 -0.201333 -0.98640501\n\t\t -0.032839 -0.161018 -0.97834098 -0.048098002 -0.201333 -0.98228502 -0.030579999 -0.184884\n\t\t -0.99370903 -0.103797 -0.042056002 -0.99370903 -0.103797 -0.042056002 -0.95481998\n\t\t -0.0081179999 -0.29707301 -0.97834098 -0.048098002 -0.201333 -0.947779 0.00082399999\n\t\t -0.31892699 -0.98640501 -0.032839 -0.161018 -0.97834098 -0.048098002 -0.201333 -0.947779\n\t\t 0.00082399999 -0.31892699 -0.97834098 -0.048098002 -0.201333 -0.95481998 -0.0081179999\n\t\t -0.29707301 -0.947779 0.00082399999 -0.31892699 -0.97789901 0.032961 -0.20646299\n\t\t -0.98640501 -0.032839 -0.161018 -0.97789901 0.032961 -0.20646299 -0.99665499 0.01297\n\t\t -0.080692001 -0.98640501 -0.032839 -0.161018 -0.95481998 -0.0081179999 -0.29707301\n\t\t -0.92308003 -0.0099499999 -0.38447899 -0.947779 0.00082399999 -0.31892699;\n\tsetAttr \".n[3984:4149]\" -type \"float3\"  -0.98640501 -0.032839 -0.161018 -0.99665499\n\t\t 0.01297 -0.080692001 -0.99629301 -0.077060997 -0.038240001 -0.99287403 -0.033204999\n\t\t -0.114446 -0.99401802 -0.016419999 -0.107978 -0.99683899 -0.024537999 -0.075565003\n\t\t -0.99683899 -0.024537999 -0.075565003 -0.997437 -0.048891999 -0.052248999 -0.99287403\n\t\t -0.033204999 -0.114446 -0.98704898 -0.153267 -0.047366001 -0.997437 -0.048891999\n\t\t -0.052248999 -0.99683899 -0.024537999 -0.075565003 -0.59482598 0 0.80385399 -0.59482598\n\t\t 0 0.80385399 -0.59482598 0 0.80385399 -0.59482598 0 0.80385399 -0.59482598 0 0.80385399\n\t\t -0.59482598 0 0.80385399 -0.59482598 0 0.80385399 -0.59482598 0 0.80385399 -0.59481102\n\t\t 0 0.80386502 -0.59481102 0 0.80386502 -0.59481102 0 0.80386502 -0.59482598 0 0.80385399\n\t\t -0.59481102 0 0.80386502 -0.59482598 0 0.80385399 -0.59481102 0 0.80386502 -0.59482598\n\t\t 0 0.80385399 -0.59481102 0 0.80386502 -0.59481102 0 0.80386502 -0.59481102 0 0.80386502\n\t\t -0.59482598 0 0.80385399 -0.59482598 0 0.80385399 -0.59481102 0 0.80386502 -0.59481102\n\t\t 0 0.80386502 -0.59479201 0 0.80387998 -0.59479201 0 0.80387998 -0.59481102 0 0.80386502\n\t\t -0.59479201 0 0.80387998 -0.59479201 0 0.80387998 -0.59482598 0 0.80385399 -0.59482598\n\t\t 0 0.80385399 -0.59482598 0 0.80385399 -0.59481102 0 0.80386502 -0.59479201 0 0.80387998\n\t\t -0.59479201 0 0.80387998 -0.59479201 0 0.80387998 -0.59479201 0 0.80387998 -0.59479201\n\t\t 0 0.80387998 -0.59479201 0 0.80387998 -0.59479201 0 0.80387998 -0.59475702 0 0.80390501\n\t\t -0.59479201 0 0.80387998 -0.59479201 0 0.80387998 -0.59479201 0 0.80387998 -0.59481102\n\t\t 0 0.80386502 -0.59475702 0 0.80390501 -0.59479201 0 0.80387998 -0.59481102 0 0.80386502\n\t\t -0.59482598 0 0.80385399 -0.59481102 0 0.80386502 -0.59482598 0 0.80385399 -0.59481102\n\t\t 0 0.80386502 -0.59482598 0 0.80385399 -0.59482598 0 0.80385399 -0.59479201 0 0.80387998\n\t\t -0.59482598 0 0.80385399 -0.59481102 0 0.80386502 -0.59482598 0 0.80385399 -0.59482598\n\t\t 0 0.80385399 -0.59479201 0 0.80387998 -0.59482598 0 0.80385399 -0.59484601 0 0.80383998\n\t\t -0.59479201 0 0.80387998 -0.59479201 0 0.80387998 -0.59479201 0 0.80387998 -0.59487998\n\t\t 0 0.80381399 -0.59484601 0 0.80383998 -0.59482598 0 0.80385399 -0.59482598 0 0.80385399\n\t\t -0.59482598 0 0.80385399 -0.59482598 0 0.80385399 -0.59482598 0 0.80385399 -0.59482598\n\t\t 0 0.80385399 0.80386502 0 0.59481102 0.80386502 0 0.59481102 0.80386502 0 0.59481102\n\t\t 0.80386502 0 0.59481102 0.80386502 0 0.59481102 0.80386502 0 0.59481102 0.106999\n\t\t 0.99110198 0.079166003 0.106999 0.99110198 0.079166003 0.106999 0.99110198 0.079166003\n\t\t 0.106999 0.99110198 0.079166003 0.106999 0.99110198 0.079166003 0.106999 0.99110198\n\t\t 0.079166003 -0.80386502 0 -0.59481102 -0.80386502 0 -0.59481102 -0.80386502 0 -0.59481102\n\t\t -0.80386502 0 -0.59481102 -0.80386502 0 -0.59481102 -0.80386502 0 -0.59481102 -0.190805\n\t\t -0.97142202 -0.14118101 -0.190805 -0.97142202 -0.14118101 -0.190805 -0.97142202 -0.14118101\n\t\t -0.190805 -0.97142202 -0.14118101 -0.190805 -0.97142202 -0.14118101 -0.190805 -0.97142202\n\t\t -0.14118101 0.59482598 0 0.80385399 0.59482598 0 0.80385399 0.59482598 0 0.80385399\n\t\t 0.59482598 0 0.80385399 0.59482598 0 0.80385399 0.59482598 0 0.80385399 0.59481102\n\t\t 0 0.80386502 0.59482598 0 0.80385399 0.59482598 0 0.80385399 0.59482598 0 0.80385399\n\t\t 0.59481102 0 0.80386502 0.59481102 0 0.80386502 0.59481102 0 0.80386502 0.59482598\n\t\t 0 0.80385399 0.59481102 0 0.80386502 0.59481102 0 0.80386502 0.59481102 0 0.80386502\n\t\t 0.59482598 0 0.80385399 0.59482598 0 0.80385399 0.59482598 0 0.80385399 0.59481102\n\t\t 0 0.80386502 0.59479201 0 0.80387998 0.59481102 0 0.80386502 0.59481102 0 0.80386502\n\t\t 0.59479201 0 0.80387998 0.59481102 0 0.80386502 0.59479201 0 0.80387998 0.59482598\n\t\t 0 0.80385399 0.59482598 0 0.80385399 0.59479201 0 0.80387998 0.59479201 0 0.80387998\n\t\t 0.59481102 0 0.80386502 0.59482598 0 0.80385399 0.59479201 0 0.80387998 0.59479201\n\t\t 0 0.80387998 0.59479201 0 0.80387998 0.59479201 0 0.80387998 0.59479201 0 0.80387998\n\t\t 0.59479201 0 0.80387998 0.59475702 0 0.80390501 0.59481102 0 0.80386502 0.59479201\n\t\t 0 0.80387998 0.59479201 0 0.80387998 0.59479201 0 0.80387998 0.59475702 0 0.80390501\n\t\t 0.59482598 0 0.80385399 0.59481102 0 0.80386502 0.59479201 0 0.80387998 0.59481102\n\t\t 0 0.80386502 0.59482598 0 0.80385399 0.59481102 0 0.80386502 0.59479201 0 0.80387998\n\t\t 0.59482598 0 0.80385399 0.59482598 0 0.80385399 0.59482598 0 0.80385399 0.59479201\n\t\t 0 0.80387998 0.59482598 0 0.80385399 0.59482598 0 0.80385399;\n\tsetAttr \".n[4150:4315]\" -type \"float3\"  0.59481102 0 0.80386502 0.59482598 0\n\t\t 0.80385399 0.59479201 0 0.80387998 0.59479201 0 0.80387998 0.59484601 0 0.80383998\n\t\t 0.59484601 0 0.80383998 0.59486002 0 0.80382901 0.59479201 0 0.80387998 0.59482598\n\t\t 0 0.80385399 0.59482598 0 0.80385399 0.59482598 0 0.80385399 0.59482598 0 0.80385399\n\t\t 0.59482598 0 0.80385399 0.59482598 0 0.80385399 -0.80386502 0 0.59481102 -0.80386502\n\t\t 0 0.59481102 -0.80386502 0 0.59481102 -0.80386502 0 0.59481102 -0.80386502 0 0.59481102\n\t\t -0.80386502 0 0.59481102 -0.107 0.99110198 0.079166003 -0.107 0.99110198 0.079166003\n\t\t -0.107 0.99110198 0.079166003 -0.107 0.99110198 0.079166003 -0.107 0.99110198 0.079166003\n\t\t -0.107 0.99110198 0.079166003 0.80386502 0 -0.59481102 0.80386502 0 -0.59481102 0.80386502\n\t\t 0 -0.59481102 0.80386502 0 -0.59481102 0.80386502 0 -0.59481102 0.80386502 0 -0.59481102\n\t\t 0.190806 -0.97142202 -0.14118101 0.190806 -0.97142202 -0.14118101 0.190806 -0.97142202\n\t\t -0.14118101 0.190806 -0.97142202 -0.14118101 0.190806 -0.97142202 -0.14118101 0.190806\n\t\t -0.97142202 -0.14118101 0.16605601 -0.060093001 -0.98428398 0.175699 -0.060306001\n\t\t -0.98259503 0.175699 -0.060336001 -0.982593 0.175699 -0.060336001 -0.982593 0.16605601\n\t\t -0.060093001 -0.98428398 0.16605601 -0.060093001 -0.98428398 0.156901 -0.063052997\n\t\t -0.98559999 0.16605601 -0.060093001 -0.98428398 0.16605601 -0.060093001 -0.98428398\n\t\t 0.16605601 -0.060093001 -0.98428398 0.156896 -0.063051999 -0.98559999 0.156901 -0.063052997\n\t\t -0.98559999 0.149299 -0.069095001 -0.98637497 0.156901 -0.063052997 -0.98559999 0.156896\n\t\t -0.063051999 -0.98559999 0.156896 -0.063051999 -0.98559999 0.149269 -0.069095001\n\t\t -0.98637998 0.149299 -0.069095001 -0.98637497 0.14408199 -0.077366002 -0.98653698\n\t\t 0.149299 -0.069095001 -0.98637497 0.149269 -0.069095001 -0.98637998 0.149269 -0.069095001\n\t\t -0.98637998 0.14408199 -0.077366002 -0.98653698 0.14408199 -0.077366002 -0.98653698\n\t\t 0.14203601 -0.086857997 -0.98604298 0.14408199 -0.077366002 -0.98653698 0.14408199\n\t\t -0.077366002 -0.98653698 0.14408199 -0.077366002 -0.98653698 0.14203601 -0.086857997\n\t\t -0.98604298 0.14203601 -0.086857997 -0.98604298 0.143286 -0.096469998 -0.98496801\n\t\t 0.14203601 -0.086857997 -0.98604298 0.14203601 -0.086857997 -0.98604298 0.14203601\n\t\t -0.086857997 -0.98604298 0.143286 -0.096469998 -0.98496801 0.143286 -0.096469998\n\t\t -0.98496801 0.147651 -0.105047 -0.98344499 0.143286 -0.096469998 -0.98496801 0.143286\n\t\t -0.096469998 -0.98496801 0.143286 -0.096469998 -0.98496801 0.14762101 -0.105047 -0.98345\n\t\t 0.147651 -0.105047 -0.98344499 0.184581 -0.063906997 -0.98073697 0.175699 -0.060336001\n\t\t -0.982593 0.175699 -0.060306001 -0.98259503 0.175699 -0.060306001 -0.98259503 0.18458\n\t\t -0.063937999 -0.98073602 0.184581 -0.063906997 -0.98073697 0.191631 -0.070408002\n\t\t -0.97893798 0.184581 -0.063906997 -0.98073697 0.18458 -0.063937999 -0.98073602 0.18458\n\t\t -0.063937999 -0.98073602 0.191631 -0.070408002 -0.97893798 0.191631 -0.070408002\n\t\t -0.97893798 0.19608501 -0.078952998 -0.97740299 0.191631 -0.070408002 -0.97893798\n\t\t 0.191631 -0.070408002 -0.97893798 0.191631 -0.070408002 -0.97893798 0.196114 -0.078952\n\t\t -0.97739798 0.19608501 -0.078952998 -0.97740299 0.19739801 -0.087255001 -0.97643298\n\t\t 0.19608501 -0.078952998 -0.97740299 0.196114 -0.078952 -0.97739798 0.196114 -0.078952\n\t\t -0.97739798 0.197395 -0.087435998 -0.97641701 0.19739801 -0.087255001 -0.97643298\n\t\t 0.19636101 -0.094732001 -0.975945 0.19739801 -0.087255001 -0.97643298 0.197395 -0.087435998\n\t\t -0.97641701 0.197395 -0.087435998 -0.97641701 0.19638801 -0.094517 -0.97596002 0.19636101\n\t\t -0.094732001 -0.975945 0.193675 -0.101293 -0.97582299 0.19636101 -0.094732001 -0.975945\n\t\t 0.19638801 -0.094517 -0.97596002 0.19638801 -0.094517 -0.97596002 0.193554 -0.101477\n\t\t -0.97582698 0.193675 -0.101293 -0.97582299 0.18912899 -0.107306 -0.97607201 0.193675\n\t\t -0.101293 -0.97582299 0.193554 -0.101477 -0.97582698 0.193554 -0.101477 -0.97582698\n\t\t 0.18927801 -0.107182 -0.97605598 0.18912899 -0.107306 -0.97607201 0.18241499 -0.112403\n\t\t -0.976776 0.18912899 -0.107306 -0.97607201 0.18927801 -0.107182 -0.97605598 0.18927801\n\t\t -0.107182 -0.97605598 0.18241499 -0.112403 -0.976776 0.18241499 -0.112403 -0.976776\n\t\t 0.173226 -0.115362 -0.97810298 0.18241499 -0.112403 -0.976776 0.18241499 -0.112403\n\t\t -0.976776 0.18241499 -0.112403 -0.976776 0.173226 -0.115362 -0.97810298 0.173226\n\t\t -0.115362 -0.97810298 0.16361301 -0.115088 -0.97978801 0.173226 -0.115362 -0.97810298\n\t\t 0.173226 -0.115362 -0.97810298 0.173226 -0.115362 -0.97810298 0.16361301 -0.115118\n\t\t -0.97978503 0.16361301 -0.115088 -0.97978801 0.154671 -0.111578 -0.98164499 0.16361301\n\t\t -0.115088 -0.97978801 0.16361301 -0.115118 -0.97978503 0.16361301 -0.115118 -0.97978503\n\t\t 0.15467 -0.111608 -0.98164201 0.154671 -0.111578 -0.98164499 0.14762101 -0.105047\n\t\t -0.98345 0.154671 -0.111578 -0.98164499 0.15467 -0.111608 -0.98164201 0.15467 -0.111608\n\t\t -0.98164201 0.147651 -0.105047 -0.98344499 0.14762101 -0.105047 -0.98345 -0.40071401\n\t\t -0.479606 -0.78064501 -0.23136701 -0.63440698 -0.737562 -0.205548 -0.62515998 -0.75294399\n\t\t -0.205548 -0.62515998 -0.75294399 -0.35060701 -0.45025301 -0.82118601 -0.40071401\n\t\t -0.479606 -0.78064501 -0.23136701 -0.63440698 -0.737562 -0.018983001 -0.72053498\n\t\t -0.69315898 -0.014161 -0.70872802 -0.70534003 -0.014161 -0.70872802 -0.70534003 -0.205548\n\t\t -0.62515998 -0.75294399 -0.23136701 -0.63440698 -0.737562 -0.018983001 -0.72053498\n\t\t -0.69315898 0.210795 -0.72766501 -0.65274;\n\tsetAttr \".n[4316:4481]\" -type \"float3\"  0.211163 -0.71567601 -0.66574597 0.211163\n\t\t -0.71567601 -0.66574597 -0.014161 -0.70872802 -0.70534003 -0.018983001 -0.72053498\n\t\t -0.69315898 0.210795 -0.72766501 -0.65274 0.43038899 -0.65482998 -0.62125897 0.42641699\n\t\t -0.644265 -0.63489503 0.42641699 -0.644265 -0.63489503 0.211163 -0.71567601 -0.66574597\n\t\t 0.210795 -0.72766501 -0.65274 0.43038899 -0.65482998 -0.62125897 0.59180498 -0.53400099\n\t\t -0.60382998 0.58596498 -0.52477401 -0.61746001 0.58596498 -0.52477401 -0.61746001\n\t\t 0.42641699 -0.644265 -0.63489503 0.43038899 -0.65482998 -0.62125897 0.68555599 -0.38878599\n\t\t -0.61551398 0.58596498 -0.52477401 -0.61746001 0.59180498 -0.53400099 -0.60382998\n\t\t 0.59180498 -0.53400099 -0.60382998 0.69977701 -0.39073899 -0.59802598 0.68555599\n\t\t -0.38878599 -0.61551398 0.75330102 -0.22342999 -0.61856002 0.68555599 -0.38878599\n\t\t -0.61551398 0.69977701 -0.39073899 -0.59802598 0.69977701 -0.39073899 -0.59802598\n\t\t 0.76505899 -0.23145901 -0.60092598 0.75330102 -0.22342999 -0.61856002 0.77765298\n\t\t -0.056765001 -0.62612599 0.75330102 -0.22342999 -0.61856002 0.76505899 -0.23145901\n\t\t -0.60092598 0.76505899 -0.23145901 -0.60092598 0.78848201 -0.053865001 -0.61269403\n\t\t 0.77765298 -0.056765001 -0.62612599 0.74747598 0.139626 -0.64944899 0.77765298 -0.056765001\n\t\t -0.62612599 0.78848201 -0.053865001 -0.61269403 0.78848201 -0.053865001 -0.61269403\n\t\t 0.75791901 0.14475399 -0.63608599 0.74747598 0.139626 -0.64944899 0.64371198 0.34044299\n\t\t -0.68537098 0.74747598 0.139626 -0.64944899 0.75791901 0.14475399 -0.63608599 0.75791901\n\t\t 0.14475399 -0.63608599 0.65205199 0.34963301 -0.67274398 0.64371198 0.34044299 -0.68537098\n\t\t 0.47768801 0.492246 -0.72767299 0.64371198 0.34044299 -0.68537098 0.65205199 0.34963301\n\t\t -0.67274398 0.65205199 0.34963301 -0.67274398 0.48269099 0.50445098 -0.715918 0.47768801\n\t\t 0.492246 -0.72767299 0.269483 0.57671797 -0.77121598 0.47768801 0.492246 -0.72767299\n\t\t 0.48269099 0.50445098 -0.715918 0.48269099 0.50445098 -0.715918 0.27034 0.59060901\n\t\t -0.76032698 0.269483 0.57671797 -0.77121598 0.044160999 0.58364898 -0.81080401 0.269483\n\t\t 0.57671797 -0.77121598 0.27034 0.59060901 -0.76032698 0.27034 0.59060901 -0.76032698\n\t\t 0.040499002 0.59768999 -0.800704 0.044160999 0.58364898 -0.81080401 -0.17106 0.51220298\n\t\t -0.84165698 0.044160999 0.58364898 -0.81080401 0.040499002 0.59768999 -0.800704 0.040499002\n\t\t 0.59768999 -0.800704 -0.17902599 0.52477902 -0.83219999 -0.17106 0.51220298 -0.84165698\n\t\t -0.33278599 0.374933 -0.86526197 -0.17106 0.51220298 -0.84165698 -0.17902599 0.52477902\n\t\t -0.83219999 -0.17902599 0.52477902 -0.83219999 -0.361803 0.38087699 -0.85089999 -0.33278599\n\t\t 0.374933 -0.86526197 -0.42888701 0.159096 -0.889238 -0.33278599 0.374933 -0.86526197\n\t\t -0.361803 0.38087699 -0.85089999 -0.361803 0.38087699 -0.85089999 -0.48580199 0.183053\n\t\t -0.85468602 -0.42888701 0.159096 -0.889238 -0.475095 -0.050235 -0.87849998 -0.42888701\n\t\t 0.159096 -0.889238 -0.48580199 0.183053 -0.85468602 -0.48580199 0.183053 -0.85468602\n\t\t -0.53606701 -0.044589002 -0.84299701 -0.475095 -0.050235 -0.87849998 -0.44787401\n\t\t -0.261888 -0.854882 -0.475095 -0.050235 -0.87849998 -0.53606701 -0.044589002 -0.84299701\n\t\t -0.53606701 -0.044589002 -0.84299701 -0.50649601 -0.27473399 -0.817303 -0.44787401\n\t\t -0.261888 -0.854882 -0.35060701 -0.45025301 -0.82118601 -0.44787401 -0.261888 -0.854882\n\t\t -0.50649601 -0.27473399 -0.817303 -0.50649601 -0.27473399 -0.817303 -0.40071401 -0.479606\n\t\t -0.78064501 -0.35060701 -0.45025301 -0.82118601 0.017883999 0.67916697 -0.73376602\n\t\t 0.27360201 0.67126399 -0.68887299 0.269483 0.57671797 -0.77121598 0.269483 0.57671797\n\t\t -0.77121598 0.044160999 0.58364898 -0.81080401 0.017883999 0.67916697 -0.73376602\n\t\t -0.21424501 0.59671199 -0.77332699 0.017883999 0.67916697 -0.73376602 0.044160999\n\t\t 0.58364898 -0.81080401 0.044160999 0.58364898 -0.81080401 -0.17106 0.51220298 -0.84165698\n\t\t -0.21424501 0.59671199 -0.77332699 0.017883999 0.67916697 -0.73376602 -0.21424501\n\t\t 0.59671199 -0.77332699 -0.27769899 0.73866802 -0.614209 -0.27769899 0.73866802 -0.614209\n\t\t -0.027193001 0.81618202 -0.57715398 0.017883999 0.67916697 -0.73376602 0.27360201\n\t\t 0.67126399 -0.68887299 0.017883999 0.67916697 -0.73376602 -0.027193001 0.81618202\n\t\t -0.57715398 -0.027193001 0.81618202 -0.57715398 0.27076399 0.80701202 -0.524804 0.27360201\n\t\t 0.67126399 -0.68887299 -0.366873 0.45666099 -0.81047201 -0.21424501 0.59671199 -0.77332699\n\t\t -0.17106 0.51220298 -0.84165698 -0.17106 0.51220298 -0.84165698 -0.33278599 0.374933\n\t\t -0.86526197 -0.366873 0.45666099 -0.81047201 -0.21424501 0.59671199 -0.77332699 -0.366873\n\t\t 0.45666099 -0.81047201 -0.39556 0.633793 -0.66470897 -0.21424501 0.59671199 -0.77332699\n\t\t -0.39556 0.633793 -0.66470897 -0.27769899 0.73866802 -0.614209 -0.366873 0.45666099\n\t\t -0.81047201 -0.45147201 0.54757702 -0.70450801 -0.39556 0.633793 -0.66470897 -0.366873\n\t\t 0.45666099 -0.81047201 -0.33278599 0.374933 -0.86526197 -0.414911 0.23213001 -0.87975198\n\t\t -0.33278599 0.374933 -0.86526197 -0.42888701 0.159096 -0.889238 -0.414911 0.23213001\n\t\t -0.87975198 -0.366873 0.45666099 -0.81047201 -0.414911 0.23213001 -0.87975198 -0.50356799\n\t\t 0.33089 -0.79807901 0.47768801 0.492246 -0.72767299 0.269483 0.57671797 -0.77121598\n\t\t 0.27360201 0.67126399 -0.68887299 0.27360201 0.67126399 -0.68887299 0.50994998 0.575414\n\t\t -0.63941401 0.47768801 0.492246 -0.72767299 0.50994998 0.575414 -0.63941401 0.27360201\n\t\t 0.67126399 -0.68887299 0.27076399 0.80701202 -0.524804 0.64371198 0.34044299 -0.68537098\n\t\t 0.47768801 0.492246 -0.72767299 0.50994998 0.575414 -0.63941401 0.50994998 0.575414\n\t\t -0.63941401 0.69836998 0.40309799 -0.59143102 0.64371198 0.34044299 -0.68537098 0.74747598\n\t\t 0.139626 -0.64944899 0.64371198 0.34044299 -0.68537098 0.69836998 0.40309799 -0.59143102;\n\tsetAttr \".n[4482:4647]\" -type \"float3\"  0.69836998 0.40309799 -0.59143102 0.81612301\n\t\t 0.175152 -0.550695 0.74747598 0.139626 -0.64944899 0.77765298 -0.056765001 -0.62612599\n\t\t 0.74747598 0.139626 -0.64944899 0.81612301 0.175152 -0.550695 0.81612301 0.175152\n\t\t -0.550695 0.84880102 -0.048129 -0.52651799 0.77765298 -0.056765001 -0.62612599 0.75330102\n\t\t -0.22342999 -0.61856002 0.77765298 -0.056765001 -0.62612599 0.84880102 -0.048129\n\t\t -0.52651799 0.84880102 -0.048129 -0.52651799 0.82958001 -0.209546 -0.51757902 0.75330102\n\t\t -0.22342999 -0.61856002 0.79035401 -0.33323801 -0.51409501 0.75330102 -0.22342999\n\t\t -0.61856002 0.82958001 -0.209546 -0.51757902 0.79035401 -0.33323801 -0.51409501 0.68555599\n\t\t -0.38878599 -0.61551398 0.75330102 -0.22342999 -0.61856002 0.79035401 -0.33323801\n\t\t -0.51409501 0.731547 -0.44893801 -0.51312101 0.68555599 -0.38878599 -0.61551398 0.58596498\n\t\t -0.52477401 -0.61746001 0.68555599 -0.38878599 -0.61551398 0.731547 -0.44893801 -0.51312101\n\t\t 0.731547 -0.44893801 -0.51312101 0.63191098 -0.57767701 -0.51669902 0.58596498 -0.52477401\n\t\t -0.61746001 0.42641699 -0.644265 -0.63489503 0.58596498 -0.52477401 -0.61746001 0.63191098\n\t\t -0.57767701 -0.51669902 0.63191098 -0.57767701 -0.51669902 0.45170999 -0.71459901\n\t\t -0.534141 0.42641699 -0.644265 -0.63489503 0.211163 -0.71567601 -0.66574597 0.42641699\n\t\t -0.644265 -0.63489503 0.45170999 -0.71459901 -0.534141 0.45170999 -0.71459901 -0.534141\n\t\t 0.207408 -0.79566503 -0.569121 0.211163 -0.71567601 -0.66574597 -0.014161 -0.70872802\n\t\t -0.70534003 0.211163 -0.71567601 -0.66574597 0.207408 -0.79566503 -0.569121 0.207408\n\t\t -0.79566503 -0.569121 -0.048312001 -0.78776503 -0.614079 -0.014161 -0.70872802 -0.70534003\n\t\t -0.205548 -0.62515998 -0.75294399 -0.014161 -0.70872802 -0.70534003 -0.048312001\n\t\t -0.78776503 -0.614079 -0.048312001 -0.78776503 -0.614079 -0.25593501 -0.70765299\n\t\t -0.65857798 -0.205548 -0.62515998 -0.75294399 -0.33882499 -0.634588 -0.694619 -0.205548\n\t\t -0.62515998 -0.75294399 -0.25593501 -0.70765299 -0.65857798 -0.33882499 -0.634588\n\t\t -0.694619 -0.31255001 -0.51062202 -0.80098498 -0.205548 -0.62515998 -0.75294399 -0.33882499\n\t\t -0.634588 -0.694619 -0.42436299 -0.56352901 -0.708767 -0.31255001 -0.51062202 -0.80098498\n\t\t -0.31255001 -0.51062202 -0.80098498 -0.35060701 -0.45025301 -0.82118601 -0.205548\n\t\t -0.62515998 -0.75294399 -0.25593501 -0.70765299 -0.65857798 -0.048312001 -0.78776503\n\t\t -0.614079 -0.104345 -0.89305699 -0.43767801 -0.104345 -0.89305699 -0.43767801 -0.347184\n\t\t -0.80045301 -0.48860899 -0.25593501 -0.70765299 -0.65857798 -0.33882499 -0.634588\n\t\t -0.694619 -0.25593501 -0.70765299 -0.65857798 -0.347184 -0.80045301 -0.48860899 -0.347184\n\t\t -0.80045301 -0.48860899 -0.44023901 -0.73886901 -0.510158 -0.33882499 -0.634588 -0.694619\n\t\t -0.048312001 -0.78776503 -0.614079 0.207408 -0.79566503 -0.569121 0.193616 -0.90224701\n\t\t -0.385308 0.193616 -0.90224701 -0.385308 -0.104345 -0.89305699 -0.43767801 -0.048312001\n\t\t -0.78776503 -0.614079 0.207408 -0.79566503 -0.569121 0.45170999 -0.71459901 -0.534141\n\t\t 0.478295 -0.807809 -0.34449899 0.478295 -0.807809 -0.34449899 0.193616 -0.90224701\n\t\t -0.385308 0.207408 -0.79566503 -0.569121 0.68903399 -0.64877802 -0.32298499 0.478295\n\t\t -0.807809 -0.34449899 0.45170999 -0.71459901 -0.534141 0.45170999 -0.71459901 -0.534141\n\t\t 0.63191098 -0.57767701 -0.51669902 0.68903399 -0.64877802 -0.32298499 -0.44023901\n\t\t -0.73886901 -0.510158 -0.347184 -0.80045301 -0.48860899 -0.39412701 -0.83858198 -0.376091\n\t\t -0.39412701 -0.83858198 -0.376091 -0.493278 -0.77319902 -0.39854699 -0.44023901 -0.73886901\n\t\t -0.510158 -0.347184 -0.80045301 -0.48860899 -0.104345 -0.89305699 -0.43767801 -0.13565899\n\t\t -0.93679798 -0.32249999 -0.13565899 -0.93679798 -0.32249999 -0.39412701 -0.83858198\n\t\t -0.376091 -0.347184 -0.80045301 -0.48860899 -0.39412701 -0.83858198 -0.376091 -0.13565899\n\t\t -0.93679798 -0.32249999 -0.145301 -0.94771099 -0.28413299 -0.145301 -0.94771099 -0.28413299\n\t\t -0.40893301 -0.84750098 -0.338402 -0.39412701 -0.83858198 -0.376091 -0.493278 -0.77319902\n\t\t -0.39854699 -0.39412701 -0.83858198 -0.376091 -0.40893301 -0.84750098 -0.338402 -0.40893301\n\t\t -0.84750098 -0.338402 -0.50888097 -0.78163397 -0.360679 -0.493278 -0.77319902 -0.39854699\n\t\t -0.104345 -0.89305699 -0.43767801 0.193616 -0.90224701 -0.385308 0.181192 -0.946549\n\t\t -0.26685899 0.181192 -0.946549 -0.26685899 -0.13565899 -0.93679798 -0.32249999 -0.104345\n\t\t -0.89305699 -0.43767801 -0.13565899 -0.93679798 -0.32249999 0.181192 -0.946549 -0.26685899\n\t\t 0.176494 -0.95763803 -0.227553 0.176494 -0.95763803 -0.227553 -0.145301 -0.94771099\n\t\t -0.28413299 -0.13565899 -0.93679798 -0.32249999 0.193616 -0.90224701 -0.385308 0.478295\n\t\t -0.807809 -0.34449899 0.483859 -0.84612697 -0.22349501 0.483859 -0.84612697 -0.22349501\n\t\t 0.181192 -0.946549 -0.26685899 0.193616 -0.90224701 -0.385308 0.181192 -0.946549\n\t\t -0.26685899 0.483859 -0.84612697 -0.22349501 0.48400199 -0.85560203 -0.183542 0.48400199\n\t\t -0.85560203 -0.183542 0.176494 -0.95763803 -0.227553 0.181192 -0.946549 -0.26685899\n\t\t 0.478295 -0.807809 -0.34449899 0.68903399 -0.64877802 -0.32298499 0.70805597 -0.67726099\n\t\t -0.19993401 0.70805597 -0.67726099 -0.19993401 0.483859 -0.84612697 -0.22349501 0.478295\n\t\t -0.807809 -0.34449899 0.483859 -0.84612697 -0.22349501 0.70805597 -0.67726099 -0.19993401\n\t\t 0.712533 -0.68335599 -0.159127 0.712533 -0.68335599 -0.159127 0.48400199 -0.85560203\n\t\t -0.183542 0.483859 -0.84612697 -0.22349501 0.806077 -0.49941799 -0.317523 0.68903399\n\t\t -0.64877802 -0.32298499 0.63191098 -0.57767701 -0.51669902 0.63191098 -0.57767701\n\t\t -0.51669902 0.731547 -0.44893801 -0.51312101 0.806077 -0.49941799 -0.317523 0.84371001\n\t\t -0.432796 -0.31755501 0.806077 -0.49941799 -0.317523 0.731547 -0.44893801 -0.51312101\n\t\t 0.731547 -0.44893801 -0.51312101;\n\tsetAttr \".n[4648:4813]\" -type \"float3\"  0.79035401 -0.33323801 -0.51409501 0.84371001\n\t\t -0.432796 -0.31755501 0.85098702 -0.35567901 -0.38641199 0.84371001 -0.432796 -0.31755501\n\t\t 0.79035401 -0.33323801 -0.51409501 0.79035401 -0.33323801 -0.51409501 0.90070403\n\t\t -0.29346901 -0.320326 0.85098702 -0.35567901 -0.38641199 0.79188502 -0.59125 -0.15278\n\t\t 0.712533 -0.68335599 -0.159127 0.70805597 -0.67726099 -0.19993401 0.70805597 -0.67726099\n\t\t -0.19993401 0.78693497 -0.58575201 -0.193979 0.79188502 -0.59125 -0.15278 0.78579599\n\t\t -0.57146198 -0.23655 0.78693497 -0.58575201 -0.193979 0.70805597 -0.67726099 -0.19993401\n\t\t 0.78579599 -0.57146198 -0.23655 0.70805597 -0.67726099 -0.19993401 0.68903399 -0.64877802\n\t\t -0.32298499 0.68903399 -0.64877802 -0.32298499 0.82532197 -0.51299202 -0.235972 0.78579599\n\t\t -0.57146198 -0.23655 0.68903399 -0.64877802 -0.32298499 0.806077 -0.49941799 -0.317523\n\t\t 0.82532197 -0.51299202 -0.235972 0.82532197 -0.51299202 -0.235972 0.806077 -0.49941799\n\t\t -0.317523 0.84371001 -0.432796 -0.31755501 0.92064202 -0.219677 -0.32273999 0.90070403\n\t\t -0.29346901 -0.320326 0.79035401 -0.33323801 -0.51409501 0.79035401 -0.33323801 -0.51409501\n\t\t 0.82958001 -0.209546 -0.51757902 0.92064202 -0.219677 -0.32273999 0.94187802 -0.031342998\n\t\t -0.33448899 0.92064202 -0.219677 -0.32273999 0.82958001 -0.209546 -0.51757902 0.82958001\n\t\t -0.209546 -0.51757902 0.84880102 -0.048129 -0.52651799 0.94187802 -0.031342998 -0.33448899\n\t\t 0.90290201 0.22892299 -0.36381599 0.94187802 -0.031342998 -0.33448899 0.84880102\n\t\t -0.048129 -0.52651799 0.84880102 -0.048129 -0.52651799 0.81612301 0.175152 -0.550695\n\t\t 0.90290201 0.22892299 -0.36381599 0.76569498 0.494533 -0.41127601 0.90290201 0.22892299\n\t\t -0.36381599 0.81612301 0.175152 -0.550695 0.81612301 0.175152 -0.550695 0.69836998\n\t\t 0.40309799 -0.59143102 0.76569498 0.494533 -0.41127601 0.54617298 0.69529098 -0.46718901\n\t\t 0.76569498 0.494533 -0.41127601 0.69836998 0.40309799 -0.59143102 0.69836998 0.40309799\n\t\t -0.59143102 0.50994998 0.575414 -0.63941401 0.54617298 0.69529098 -0.46718901 0.27076399\n\t\t 0.80701202 -0.524804 0.54617298 0.69529098 -0.46718901 0.50994998 0.575414 -0.63941401\n\t\t 0.94187802 -0.031342998 -0.33448899 0.90290201 0.22892299 -0.36381599 0.93532598\n\t\t 0.25617999 -0.244002 0.93532598 0.25617999 -0.244002 0.97702497 -0.020508001 -0.212135\n\t\t 0.94187802 -0.031342998 -0.33448899 0.97702497 -0.020508001 -0.212135 0.93532598\n\t\t 0.25617999 -0.244002 0.94258702 0.26411399 -0.20438699 0.94258702 0.26411399 -0.20438699\n\t\t 0.985017 -0.018006001 -0.171514 0.97702497 -0.020508001 -0.212135 0.90290201 0.22892299\n\t\t -0.36381599 0.76569498 0.494533 -0.41127601 0.78942901 0.53859597 -0.294476 0.78942901\n\t\t 0.53859597 -0.294476 0.93532598 0.25617999 -0.244002 0.90290201 0.22892299 -0.36381599\n\t\t 0.93532598 0.25617999 -0.244002 0.78942901 0.53859597 -0.294476 0.79438299 0.55099303\n\t\t -0.25565901 0.79438299 0.55099303 -0.25565901 0.94258702 0.26411399 -0.20438699 0.93532598\n\t\t 0.25617999 -0.244002 0.76569498 0.494533 -0.41127601 0.54617298 0.69529098 -0.46718901\n\t\t 0.55600202 0.75205898 -0.35393301 0.55600202 0.75205898 -0.35393301 0.78942901 0.53859597\n\t\t -0.294476 0.76569498 0.494533 -0.41127601 0.78942901 0.53859597 -0.294476 0.55600202\n\t\t 0.75205898 -0.35393301 0.557275 0.76782501 -0.31605399 0.557275 0.76782501 -0.31605399\n\t\t 0.79438299 0.55099303 -0.25565901 0.78942901 0.53859597 -0.294476 0.54617298 0.69529098\n\t\t -0.46718901 0.27076399 0.80701202 -0.524804 0.26322901 0.87083697 -0.41515401 0.26322901\n\t\t 0.87083697 -0.41515401 0.55600202 0.75205898 -0.35393301 0.54617298 0.69529098 -0.46718901\n\t\t -0.053622 0.88058603 -0.470842 0.26322901 0.87083697 -0.41515401 0.27076399 0.80701202\n\t\t -0.524804 0.27076399 0.80701202 -0.524804 -0.027193001 0.81618202 -0.57715398 -0.053622\n\t\t 0.88058603 -0.470842 -0.32023701 0.79853302 -0.5097 -0.053622 0.88058603 -0.470842\n\t\t -0.027193001 0.81618202 -0.57715398 -0.027193001 0.81618202 -0.57715398 -0.27769899\n\t\t 0.73866802 -0.614209 -0.32023701 0.79853302 -0.5097 -0.053622 0.88058603 -0.470842\n\t\t -0.32023701 0.79853302 -0.5097 -0.333915 0.81471902 -0.47406 -0.333915 0.81471902\n\t\t -0.47406 -0.061985001 0.89840102 -0.43478 -0.053622 0.88058603 -0.470842 0.26322901\n\t\t 0.87083697 -0.41515401 -0.053622 0.88058603 -0.470842 -0.061985001 0.89840102 -0.43478\n\t\t -0.061985001 0.89840102 -0.43478 0.259846 0.888493 -0.378232 0.26322901 0.87083697\n\t\t -0.41515401 0.55600202 0.75205898 -0.35393301 0.26322901 0.87083697 -0.41515401 0.259846\n\t\t 0.888493 -0.378232 0.259846 0.888493 -0.378232 0.557275 0.76782501 -0.31605399 0.55600202\n\t\t 0.75205898 -0.35393301 -0.42500499 0.739501 -0.52202398 -0.32023701 0.79853302 -0.5097\n\t\t -0.27769899 0.73866802 -0.614209 -0.27769899 0.73866802 -0.614209 -0.39556 0.633793\n\t\t -0.66470897 -0.42500499 0.739501 -0.52202398 -0.43948099 0.75532699 -0.48614499 -0.333915\n\t\t 0.81471902 -0.47406 -0.32023701 0.79853302 -0.5097 -0.32023701 0.79853302 -0.5097\n\t\t -0.42500499 0.739501 -0.52202398 -0.43948099 0.75532699 -0.48614499 0.985017 -0.018006001\n\t\t -0.171514 0.97707802 -0.13907699 -0.161173 0.96916598 -0.140754 -0.20225 0.96916598\n\t\t -0.140754 -0.20225 0.97702497 -0.020508001 -0.212135 0.985017 -0.018006001 -0.171514\n\t\t 0.97702497 -0.020508001 -0.212135 0.96916598 -0.140754 -0.20225 0.95776701 -0.151555\n\t\t -0.244363 0.97702497 -0.020508001 -0.212135 0.95776701 -0.151555 -0.244363 0.94493502\n\t\t -0.220989 -0.241376 0.94493502 -0.220989 -0.241376 0.94187802 -0.031342998 -0.33448899\n\t\t 0.97702497 -0.020508001 -0.212135 0.92064202 -0.219677 -0.32273999 0.94187802 -0.031342998\n\t\t -0.33448899 0.94493502 -0.220989 -0.241376 0.94493502 -0.220989 -0.241376 0.95776701\n\t\t -0.151555 -0.244363;\n\tsetAttr \".n[4814:4979]\" -type \"float3\"  0.92470002 -0.29835501 -0.236462 0.90070403\n\t\t -0.29346901 -0.320326 0.92064202 -0.219677 -0.32273999 0.94493502 -0.220989 -0.241376\n\t\t 0.92471099 -0.29793099 -0.23695301 0.90070403 -0.29346901 -0.320326 0.94493502 -0.220989\n\t\t -0.241376 0.94493502 -0.220989 -0.241376 0.92470002 -0.29835501 -0.236462 0.92471099\n\t\t -0.29793099 -0.23695301 0.85098702 -0.35567901 -0.38641199 0.90070403 -0.29346901\n\t\t -0.320326 0.92471099 -0.29793099 -0.23695301 0.84371001 -0.432796 -0.31755501 0.85098702\n\t\t -0.35567901 -0.38641199 0.86520302 -0.44360399 -0.23375 0.82532197 -0.51299202 -0.235972\n\t\t 0.84371001 -0.432796 -0.31755501 0.86520302 -0.44360399 -0.23375 0.86520302 -0.44360399\n\t\t -0.23375 0.86515898 -0.443627 -0.233869 0.82532197 -0.51299202 -0.235972 0.78579599\n\t\t -0.57146198 -0.23655 0.82532197 -0.51299202 -0.235972 0.86515898 -0.443627 -0.233869\n\t\t -0.126684 0.985816 -0.110081 0.21521699 0.97528398 -0.050020002 0.21521699 0.97528398\n\t\t -0.050020002 0.21521699 0.97528398 -0.050020002 -0.126684 0.985816 -0.110081 -0.126684\n\t\t 0.985816 -0.110081 -0.41442201 0.89732999 -0.151834 -0.126684 0.985816 -0.110081\n\t\t -0.126684 0.985816 -0.110081 -0.126684 0.985816 -0.110081 -0.41442201 0.89732999\n\t\t -0.151834 -0.41442201 0.89732999 -0.151834 -0.527318 0.833368 -0.16563 -0.41442201\n\t\t 0.89732999 -0.151834 -0.41442201 0.89732999 -0.151834 -0.41442201 0.89732999 -0.151834\n\t\t -0.527318 0.833368 -0.16563 -0.527318 0.833368 -0.16563 0.531156 0.84712201 0.016053\n\t\t 0.21521699 0.97528398 -0.050020002 0.21521699 0.97528398 -0.050020002 0.21521699\n\t\t 0.97528398 -0.050020002 0.531156 0.84712201 0.016053 0.531156 0.84712201 0.016053\n\t\t 0.78303999 0.61677003 0.080265999 0.531156 0.84712201 0.016053 0.531156 0.84712201\n\t\t 0.016053 0.531156 0.84712201 0.016053 0.78302503 0.61678898 0.080265 0.78303999 0.61677003\n\t\t 0.080265999 0.94046301 0.312033 0.134775 0.78303999 0.61677003 0.080265999 0.78302503\n\t\t 0.61678898 0.080265 0.78302503 0.61678898 0.080265 0.94045401 0.31206101 0.134774\n\t\t 0.94046301 0.312033 0.134775 0.985475 0.013459 0.169286 0.94046301 0.312033 0.134775\n\t\t 0.94045401 0.31206101 0.134774 0.94045401 0.31206101 0.134774 0.98548001 0.013459\n\t\t 0.169257 0.985475 0.013459 0.169286 0.946886 -0.29734701 0.122443 0.985475 0.013459\n\t\t 0.169286 0.98548001 0.013459 0.169257 0.98548001 0.013459 0.169257 0.95149499 -0.244763\n\t\t 0.18641099 0.946886 -0.29734701 0.122443 0.88207603 -0.45565599 0.119667 0.946886\n\t\t -0.29734701 0.122443 0.95149499 -0.244763 0.18641099 0.95149499 -0.244763 0.18641099\n\t\t 0.852314 -0.486936 0.190929 0.88207603 -0.45565599 0.119667 0.69520801 -0.69526899\n\t\t 0.182447 0.88207603 -0.45565599 0.119667 0.852314 -0.486936 0.190929 0.852314 -0.486936\n\t\t 0.190929 0.69519001 -0.69528103 0.18247201 0.69520801 -0.69526899 0.182447 0.45330501\n\t\t -0.87743199 0.156931 0.69520801 -0.69526899 0.182447 0.69519001 -0.69528103 0.18247201\n\t\t 0.69519001 -0.69528103 0.18247201 0.45326799 -0.87745202 0.156929 0.45330501 -0.87743199\n\t\t 0.156931 0.126683 -0.98581302 0.110111 0.45330501 -0.87743199 0.156931 0.45326799\n\t\t -0.87745202 0.156929 0.45326799 -0.87745202 0.156929 0.126653 -0.98581702 0.110112\n\t\t 0.126683 -0.98581302 0.110111 -0.215188 -0.97529203 0.049989998 0.126683 -0.98581302\n\t\t 0.110111 0.126653 -0.98581702 0.110112 0.126653 -0.98581702 0.110112 -0.21521799\n\t\t -0.97528601 0.049989998 -0.215188 -0.97529203 0.049989998 -0.49416399 -0.869335 -0.0076600001\n\t\t -0.215188 -0.97529203 0.049989998 -0.21521799 -0.97528601 0.049989998 -0.21521799\n\t\t -0.97528601 0.049989998 -0.51671499 -0.856085 0.011139 -0.49416399 -0.869335 -0.0076600001\n\t\t -0.72718298 -0.66474098 0.171244 -0.49416399 -0.869335 -0.0076600001 -0.51671499\n\t\t -0.856085 0.011139 -0.765513 -0.64169699 -0.047061 -0.72718298 -0.66474098 0.171244\n\t\t -0.51671499 -0.856085 0.011139 -0.765513 -0.64169699 -0.047061 -0.51671499 -0.856085\n\t\t 0.011139 -0.75599402 -0.65055001 -0.072513998 -0.831873 -0.54679 -0.094916001 -0.765513\n\t\t -0.64169699 -0.047061 -0.75599402 -0.65055001 -0.072513998 -0.75599402 -0.65055001\n\t\t -0.072513998 -0.831873 -0.54679 -0.094916001 -0.831873 -0.54679 -0.094916001 0.0090330001\n\t\t 0.97447503 0.224315 0.204935 0.89414799 0.398121 0.184275 0.97234303 0.143501 0.184275\n\t\t 0.97234303 0.143501 -0.069614001 0.99711698 0.030183 0.0090330001 0.97447503 0.224315\n\t\t 0.486321 0.84751499 0.212626 0.184275 0.97234303 0.143501 0.204935 0.89414799 0.398121\n\t\t 0.204935 0.89414799 0.398121 0.387133 0.78745002 0.47963601 0.486321 0.84751499 0.212626\n\t\t 0.73307699 0.62186402 0.27546799 0.486321 0.84751499 0.212626 0.387133 0.78745002\n\t\t 0.47963601 0.387133 0.78745002 0.47963601 0.60891598 0.58465397 0.536098 0.73307699\n\t\t 0.62186402 0.27546799 0.88732201 0.323293 0.32884699 0.73307699 0.62186402 0.27546799\n\t\t 0.60891598 0.58465397 0.536098 0.60891598 0.58465397 0.536098 0.74752897 0.31632799\n\t\t 0.58407003 0.88732201 0.323293 0.32884699 0.93120098 0.030367 0.36323899 0.88732201\n\t\t 0.323293 0.32884699 0.74752897 0.31632799 0.58407003 0.74752897 0.31632799 0.58407003\n\t\t 0.78623998 0.053440001 0.61560601 0.93120098 0.030367 0.36323899 0.89800298 -0.22169299\n\t\t 0.38005799 0.93120098 0.030367 0.36323899 0.78623998 0.053440001 0.61560601 0.78623998\n\t\t 0.053440001 0.61560601 0.75633299 -0.17344201 0.63077599 0.89800298 -0.22169299 0.38005799\n\t\t 0.800502 -0.459732 0.38450399 0.89800298 -0.22169299 0.38005799 0.75633299 -0.17344201\n\t\t 0.63077599 0.75633299 -0.17344201 0.63077599 0.66898298 -0.38674 0.63474 0.800502\n\t\t -0.459732 0.38450399;\n\tsetAttr \".n[4980:5145]\" -type \"float3\"  0.64719301 -0.66306299 0.376151 0.800502\n\t\t -0.459732 0.38450399 0.66898298 -0.38674 0.63474 0.66898298 -0.38674 0.63474 0.53097898\n\t\t -0.56980002 0.62720698 0.64719301 -0.66306299 0.376151 0.410054 -0.84201998 0.35051101\n\t\t 0.64719301 -0.66306299 0.376151 0.53097898 -0.56980002 0.62720698 0.53097898 -0.56980002\n\t\t 0.62720698 0.31861901 -0.730901 0.60354501 0.410054 -0.84201998 0.35051101 0.090061001\n\t\t -0.94819099 0.30467001 0.410054 -0.84201998 0.35051101 0.31861901 -0.730901 0.60354501\n\t\t 0.31861901 -0.730901 0.60354501 0.031039 -0.82631499 0.562352 0.090061001 -0.94819099\n\t\t 0.30467001 -0.244882 -0.93787098 0.245828 0.090061001 -0.94819099 0.30467001 0.031039\n\t\t -0.82631499 0.562352 0.031039 -0.82631499 0.562352 -0.26994199 -0.81705898 0.50945598\n\t\t -0.244882 -0.93787098 0.245828 -0.55441499 -0.81230402 0.181072 -0.244882 -0.93787098\n\t\t 0.245828 -0.26994199 -0.81705898 0.50945598 -0.26994199 -0.81705898 0.50945598 -0.54812503\n\t\t -0.70420098 0.45128801 -0.55441499 -0.81230402 0.181072 -0.77495003 -0.61927098 0.12632\n\t\t -0.55441499 -0.81230402 0.181072 -0.54812503 -0.70420098 0.45128801 -0.54812503 -0.70420098\n\t\t 0.45128801 -0.74583501 -0.53045899 0.40291801 -0.77495003 -0.61927098 0.12632 -0.84898603\n\t\t -0.51794302 0.104681 -0.77495003 -0.61927098 0.12632 -0.74583501 -0.53045899 0.40291801\n\t\t -0.74583501 -0.53045899 0.40291801 -0.81235898 -0.43904901 0.383809 -0.84898603 -0.51794302\n\t\t 0.104681 -0.81235898 -0.43904901 0.383809 -0.74583501 -0.53045899 0.40291801 -0.70425802\n\t\t -0.467491 0.53429699 -0.70425802 -0.467491 0.53429699 -0.76645702 -0.38380799 0.51501\n\t\t -0.81235898 -0.43904901 0.383809 -0.74583501 -0.53045899 0.40291801 -0.54812503 -0.70420098\n\t\t 0.45128801 -0.52597398 -0.62260002 0.57941401 -0.52597398 -0.62260002 0.57941401\n\t\t -0.70425802 -0.467491 0.53429699 -0.74583501 -0.53045899 0.40291801 -0.54812503 -0.70420098\n\t\t 0.45128801 -0.26994199 -0.81705898 0.50945598 -0.274032 -0.72480202 0.63211501 -0.274032\n\t\t -0.72480202 0.63211501 -0.52597398 -0.62260002 0.57941401 -0.54812503 -0.70420098\n\t\t 0.45128801 -0.26994199 -0.81705898 0.50945598 0.031039 -0.82631499 0.562352 -0.001373\n\t\t -0.73320401 0.68000799 -0.001373 -0.73320401 0.68000799 -0.274032 -0.72480202 0.63211501\n\t\t -0.26994199 -0.81705898 0.50945598 0.031039 -0.82631499 0.562352 0.31861901 -0.730901\n\t\t 0.60354501 0.25910401 -0.64678299 0.71731198 0.25910401 -0.64678299 0.71731198 -0.001373\n\t\t -0.73320401 0.68000799 0.031039 -0.82631499 0.562352 0.450982 -0.50310898 0.73722202\n\t\t 0.25910401 -0.64678299 0.71731198 0.31861901 -0.730901 0.60354501 0.31861901 -0.730901\n\t\t 0.60354501 0.53097898 -0.56980002 0.62720698 0.450982 -0.50310898 0.73722202 0.57851797\n\t\t -0.33387801 0.74420601 0.450982 -0.50310898 0.73722202 0.53097898 -0.56980002 0.62720698\n\t\t 0.53097898 -0.56980002 0.62720698 0.66898298 -0.38674 0.63474 0.57851797 -0.33387801\n\t\t 0.74420601 0.65620399 -0.14417499 0.74068201 0.57851797 -0.33387801 0.74420601 0.66898298\n\t\t -0.38674 0.63474 0.66898298 -0.38674 0.63474 0.75633299 -0.17344201 0.63077599 0.65620399\n\t\t -0.14417499 0.74068201 0.683869 0.065523997 0.72665697 0.65620399 -0.14417499 0.74068201\n\t\t 0.75633299 -0.17344201 0.63077599 0.75633299 -0.17344201 0.63077599 0.78623998 0.053440001\n\t\t 0.61560601 0.683869 0.065523997 0.72665697 0.64759701 0.30180901 0.699664 0.683869\n\t\t 0.065523997 0.72665697 0.78623998 0.053440001 0.61560601 0.78623998 0.053440001 0.61560601\n\t\t 0.74752897 0.31632799 0.58407003 0.64759701 0.30180901 0.699664 0.522035 0.544833\n\t\t 0.65622902 0.64759701 0.30180901 0.699664 0.74752897 0.31632799 0.58407003 0.74752897\n\t\t 0.31632799 0.58407003 0.60891598 0.58465397 0.536098 0.522035 0.544833 0.65622902\n\t\t 0.356013 0.71043903 0.607068 0.522035 0.544833 0.65622902 0.60891598 0.58465397 0.536098\n\t\t 0.60891598 0.58465397 0.536098 0.387133 0.78745002 0.47963601 0.356013 0.71043903\n\t\t 0.607068 0.356013 0.71043903 0.607068 0.387133 0.78745002 0.47963601 0.204935 0.89414799\n\t\t 0.398121 0.204935 0.89414799 0.398121 0.27989399 0.791188 0.54376602 0.356013 0.71043903\n\t\t 0.607068 -0.414911 0.23213001 -0.87975198 -0.42888701 0.159096 -0.889238 -0.475095\n\t\t -0.050235 -0.87849998 -0.475095 -0.050235 -0.87849998 -0.42202201 -0.054781999 -0.90492898\n\t\t -0.414911 0.23213001 -0.87975198 -0.42202201 -0.054781999 -0.90492898 -0.475095 -0.050235\n\t\t -0.87849998 -0.44787401 -0.261888 -0.854882 -0.44787401 -0.261888 -0.854882 -0.396929\n\t\t -0.250072 -0.88312602 -0.42202201 -0.054781999 -0.90492898 -0.396929 -0.250072 -0.88312602\n\t\t -0.44787401 -0.261888 -0.854882 -0.35060701 -0.45025301 -0.82118601 -0.35060701 -0.45025301\n\t\t -0.82118601 -0.31255001 -0.51062202 -0.80098498 -0.396929 -0.250072 -0.88312602 -0.15155999\n\t\t -0.95403999 -0.258531 -0.15155999 -0.95403999 -0.258531 0.173289 -0.964046 -0.20145801\n\t\t 0.173289 -0.964046 -0.20145801 0.173289 -0.964046 -0.20145801 -0.15155999 -0.95403999\n\t\t -0.258531 0.173289 -0.964046 -0.20145801 0.48360401 -0.86109298 -0.15699001 0.48363799\n\t\t -0.86106801 -0.157021 0.48363799 -0.86106801 -0.157021 0.173289 -0.964046 -0.20145801\n\t\t 0.173289 -0.964046 -0.20145801 0.48360401 -0.86109298 -0.15699001 0.74201101 -0.65756398\n\t\t -0.1305 0.74202299 -0.65754402 -0.130532 0.74202299 -0.65754402 -0.130532 0.48363799\n\t\t -0.86106801 -0.157021 0.48360401 -0.86109298 -0.15699001 0.74201101 -0.65756398 -0.1305\n\t\t 0.91731101 -0.377978 -0.12518901 0.91731101 -0.377978 -0.12518901 0.91731101 -0.377978\n\t\t -0.12518901 0.74202299 -0.65754402 -0.130532 0.74201101 -0.65756398 -0.1305 0.91731101\n\t\t -0.377978 -0.12518901 0.988316 -0.056154002 -0.141698 0.98831999 -0.056154002 -0.14166801\n\t\t 0.98831999 -0.056154002 -0.14166801;\n\tsetAttr \".n[5146:5311]\" -type \"float3\"  0.91731101 -0.377978 -0.12518901 0.91731101\n\t\t -0.377978 -0.12518901 0.988316 -0.056154002 -0.141698 0.946513 0.26911601 -0.17801701\n\t\t 0.946513 0.26911601 -0.17801701 0.946513 0.26911601 -0.17801701 0.98831999 -0.056154002\n\t\t -0.14166801 0.988316 -0.056154002 -0.141698 0.946513 0.26911601 -0.17801701 0.79694599\n\t\t 0.558653 -0.229748 0.79691601 0.55868399 -0.22977901 0.79691601 0.55868399 -0.22977901\n\t\t 0.946513 0.26911601 -0.17801701 0.946513 0.26911601 -0.17801701 0.79694599 0.558653\n\t\t -0.229748 0.55761498 0.77753597 -0.29069501 0.557594 0.77754903 -0.29069999 0.557594\n\t\t 0.77754903 -0.29069999 0.79691601 0.55868399 -0.22977901 0.79694599 0.558653 -0.229748\n\t\t 0.55761498 0.77753597 -0.29069501 0.257402 0.89932001 -0.353508 0.257402 0.89932001\n\t\t -0.353508 0.257402 0.89932001 -0.353508 0.557594 0.77754903 -0.29069999 0.55761498\n\t\t 0.77753597 -0.29069501 0.257402 0.89932001 -0.353508 -0.067446999 0.909316 -0.410604\n\t\t -0.067446999 0.909316 -0.410604 -0.067446999 0.909316 -0.410604 0.257402 0.89932001\n\t\t -0.353508 0.257402 0.89932001 -0.353508 -0.067446999 0.909316 -0.410604 -0.377799\n\t\t 0.80635202 -0.455044 -0.377799 0.80635202 -0.455044 -0.377799 0.80635202 -0.455044\n\t\t -0.067446999 0.909316 -0.410604 -0.067446999 0.909316 -0.410604 -0.377799 0.80635202\n\t\t -0.455044 -0.60696501 0.634157 -0.47899801 -0.60846299 0.63260299 -0.47915199 -0.60846299\n\t\t 0.63260299 -0.47915199 -0.377799 0.80635202 -0.455044 -0.377799 0.80635202 -0.455044\n\t\t -0.756504 0.43623799 -0.48723501 -0.60846299 0.63260299 -0.47915199 -0.60696501 0.634157\n\t\t -0.47899801 -0.60696501 0.634157 -0.47899801 -0.75758499 0.434383 -0.48721299 -0.756504\n\t\t 0.43623799 -0.48723501 -0.756504 0.43623799 -0.48723501 -0.75758499 0.434383 -0.48721299\n\t\t -0.85099602 0.20627899 -0.48296499 -0.85099602 0.20627899 -0.48296499 -0.85152102\n\t\t 0.204235 -0.48290801 -0.756504 0.43623799 -0.48723501 -0.85152102 0.204235 -0.48290801\n\t\t -0.85099602 0.20627899 -0.48296499 -0.88359702 -0.041262001 -0.466427 -0.88359702\n\t\t -0.041262001 -0.466427 -0.883587 -0.039065 -0.466636 -0.85152102 0.204235 -0.48290801\n\t\t -0.88359702 -0.041262001 -0.466427 -0.84067702 -0.323838 -0.43404099 -0.84067702\n\t\t -0.323838 -0.43404099 -0.84067702 -0.323838 -0.43404099 -0.883587 -0.039065 -0.466636\n\t\t -0.88359702 -0.041262001 -0.466427 -0.84067702 -0.323838 -0.43404099 -0.69110298\n\t\t -0.61340201 -0.38225001 -0.69110298 -0.61340201 -0.38225001 -0.69110298 -0.61340201\n\t\t -0.38225001 -0.84067702 -0.323838 -0.43404099 -0.84067702 -0.323838 -0.43404099 -0.69110298\n\t\t -0.61340201 -0.38225001 -0.45174101 -0.83228201 -0.32130301 -0.45174101 -0.83228201\n\t\t -0.32130301 -0.45174101 -0.83228201 -0.32130301 -0.69110298 -0.61340201 -0.38225001\n\t\t -0.69110298 -0.61340201 -0.38225001 -0.45174101 -0.83228201 -0.32130301 -0.15155999\n\t\t -0.95403999 -0.258531 -0.15155999 -0.95403999 -0.258531 -0.15155999 -0.95403999 -0.258531\n\t\t -0.45174101 -0.83228201 -0.32130301 -0.45174101 -0.83228201 -0.32130301 0.169715\n\t\t -0.087771997 -0.98157698 0.169715 -0.087771997 -0.98157698 0.169715 -0.087771997\n\t\t -0.98157698 0.169716 -0.087742001 -0.98157901 0.169715 -0.087771997 -0.98157698 0.169715\n\t\t -0.087771997 -0.98157698 0.169715 -0.087771997 -0.98157698 0.169716 -0.087742001\n\t\t -0.98157901 0.169715 -0.087771997 -0.98157698 0.169745 -0.087771997 -0.98157197 0.169715\n\t\t -0.087771997 -0.98157698 0.169715 -0.087771997 -0.98157698 0.169715 -0.087771997\n\t\t -0.98157698 0.169745 -0.087771997 -0.98157197 0.169716 -0.087711997 -0.98158199 0.169686\n\t\t -0.087773003 -0.98158199 0.169715 -0.087771997 -0.98157698 0.169716 -0.087711997\n\t\t -0.98158199 0.169715 -0.087771997 -0.98157698 0.169686 -0.087773003 -0.98158199 0.169715\n\t\t -0.087771997 -0.98157698 0.169715 -0.087771997 -0.98157698 0.169715 -0.087771997\n\t\t -0.98157698 0.169715 -0.087771997 -0.98157698 0.169715 -0.087771997 -0.98157698 0.169808\n\t\t -0.087834001 -0.98155499 0.169715 -0.087771997 -0.98157698 0.169715 -0.087771997\n\t\t -0.98157698 0.169715 -0.087771997 -0.98157698 0.169715 -0.087771997 -0.98157698 0.169715\n\t\t -0.087771997 -0.98157698 0.169715 -0.087771997 -0.98157698 0.169715 -0.087771997\n\t\t -0.98157698 0.169715 -0.087771997 -0.98157698 0.169715 -0.087771997 -0.98157698 0.169716\n\t\t -0.087742001 -0.98157901 0.169715 -0.087771997 -0.98157698 0.169715 -0.087771997\n\t\t -0.98157698 0.169716 -0.087742001 -0.98157901 0.169715 -0.087771997 -0.98157698 0.169715\n\t\t -0.087771997 -0.98157698 0.169745 -0.087771997 -0.98157197 0.169715 -0.087771997\n\t\t -0.98157698 0.169715 -0.087771997 -0.98157698 0.169745 -0.087771997 -0.98157197 0.169715\n\t\t -0.087771997 -0.98157698 0.169715 -0.087771997 -0.98157698 0.169715 -0.087771997\n\t\t -0.98157698 0.169745 -0.087741002 -0.981574 0.169715 -0.087771997 -0.98157698 0.169715\n\t\t -0.087771997 -0.98157698 0.169715 -0.087771997 -0.98157698 0.169745 -0.087741002\n\t\t -0.981574 0.169716 -0.087742001 -0.98157901 0.169715 -0.087771997 -0.98157698 0.169715\n\t\t -0.087771997 -0.98157698 0.169716 -0.087742001 -0.98157901 -0.069614001 0.99711698\n\t\t 0.030183 0.184275 0.97234303 0.143501 0.205578 0.97863299 0.0038759999 0.205578 0.97863299\n\t\t 0.0038759999 -0.13577899 0.98914999 -0.056093998 -0.069614001 0.99711698 0.030183\n\t\t -0.069614001 0.99711698 0.030183 -0.13577899 0.98914999 -0.056093998 -0.40532401\n\t\t 0.90354699 -0.13898399 -0.40532401 0.90354699 -0.13898399 -0.34447199 0.92790997\n\t\t -0.142556 -0.069614001 0.99711698 0.030183 -0.34447199 0.92790997 -0.142556 -0.40532401\n\t\t 0.90354699 -0.13898399 -0.52727503 0.83337802 -0.16571701 0.52105302 0.85066098 0.069858\n\t\t 0.205578 0.97863299 0.0038759999 0.184275 0.97234303 0.143501 0.184275 0.97234303\n\t\t 0.143501 0.486321 0.84751499 0.212626 0.52105302 0.85066098 0.069858 0.77255601 0.620664\n\t\t 0.133917 0.52105302 0.85066098 0.069858;\n\tsetAttr \".n[5312:5477]\" -type \"float3\"  0.486321 0.84751499 0.212626 0.486321\n\t\t 0.84751499 0.212626 0.73307699 0.62186402 0.27546799 0.77255601 0.620664 0.133917\n\t\t 0.92974401 0.31639501 0.188335 0.77255601 0.620664 0.133917 0.73307699 0.62186402\n\t\t 0.27546799 0.73307699 0.62186402 0.27546799 0.88732201 0.323293 0.32884699 0.92974401\n\t\t 0.31639501 0.188335 0.97472101 0.018037001 0.222698 0.92974401 0.31639501 0.188335\n\t\t 0.88732201 0.323293 0.32884699 0.88732201 0.323293 0.32884699 0.93120098 0.030367\n\t\t 0.36323899 0.97472101 0.018037001 0.222698 0.94081599 -0.23942301 0.23988099 0.97472101\n\t\t 0.018037001 0.222698 0.93120098 0.030367 0.36323899 0.93120098 0.030367 0.36323899\n\t\t 0.89800298 -0.22169299 0.38005799 0.94081599 -0.23942301 0.23988099 0.84165603 -0.48156101\n\t\t 0.24436601 0.94081599 -0.23942301 0.23988099 0.89800298 -0.22169299 0.38005799 0.89800298\n\t\t -0.22169299 0.38005799 0.800502 -0.459732 0.38450399 0.84165603 -0.48156101 0.24436601\n\t\t 0.68502998 -0.68927097 0.235881 0.84165603 -0.48156101 0.24436601 0.800502 -0.459732\n\t\t 0.38450399 0.800502 -0.459732 0.38450399 0.64719301 -0.66306299 0.376151 0.68502998\n\t\t -0.68927097 0.235881 0.44332099 -0.87132001 0.210399 0.68502998 -0.68927097 0.235881\n\t\t 0.64719301 -0.66306299 0.376151 0.64719301 -0.66306299 0.376151 0.410054 -0.84201998\n\t\t 0.35051101 0.44332099 -0.87132001 0.210399 0.117192 -0.97952902 0.163672 0.44332099\n\t\t -0.87132001 0.210399 0.410054 -0.84201998 0.35051101 0.410054 -0.84201998 0.35051101\n\t\t 0.090061001 -0.94819099 0.30467001 0.117192 -0.97952902 0.163672 -0.22419199 -0.96900803\n\t\t 0.103734 0.117192 -0.97952902 0.163672 0.090061001 -0.94819099 0.30467001 0.090061001\n\t\t -0.94819099 0.30467001 -0.244882 -0.93787098 0.245828 -0.22419199 -0.96900803 0.103734\n\t\t -0.53964102 -0.84105003 0.037721999 -0.22419199 -0.96900803 0.103734 -0.244882 -0.93787098\n\t\t 0.245828 -0.244882 -0.93787098 0.245828 -0.55441499 -0.81230402 0.181072 -0.53964102\n\t\t -0.84105003 0.037721999 -0.76426601 -0.64463103 -0.018678 -0.53964102 -0.84105003\n\t\t 0.037721999 -0.55441499 -0.81230402 0.181072 -0.55441499 -0.81230402 0.181072 -0.77495003\n\t\t -0.61927098 0.12632 -0.76426601 -0.64463103 -0.018678 -0.83988798 -0.541197 -0.041170001\n\t\t -0.76426601 -0.64463103 -0.018678 -0.77495003 -0.61927098 0.12632 -0.77495003 -0.61927098\n\t\t 0.12632 -0.84898603 -0.51794302 0.104681 -0.83988798 -0.541197 -0.041170001 -0.169745\n\t\t 0.087771997 0.98157197 -0.169715 0.087771997 0.98157698 -0.169716 0.087742001 0.98157901\n\t\t -0.169716 0.087742001 0.98157901 -0.169716 0.087742001 0.98157901 -0.169745 0.087771997\n\t\t 0.98157197 -0.169716 0.087742001 0.98157901 -0.169716 0.087742001 0.98157901 -0.169716\n\t\t 0.087742001 0.98157901 -0.169716 0.087742001 0.98157901 -0.169716 0.087742001 0.98157901\n\t\t -0.169716 0.087742001 0.98157901 -0.169716 0.087742001 0.98157901 -0.169716 0.087742001\n\t\t 0.98157901 -0.169715 0.087771997 0.98157698 -0.169715 0.087771997 0.98157698 -0.169715\n\t\t 0.087771997 0.98157698 -0.169716 0.087742001 0.98157901 -0.169715 0.087771997 0.98157698\n\t\t -0.169715 0.087771997 0.98157698 -0.169686 0.087773003 0.98158199 -0.169686 0.087773003\n\t\t 0.98158199 -0.169686 0.087773003 0.98158199 -0.169715 0.087771997 0.98157698 -0.169686\n\t\t 0.087773003 0.98158199 -0.169686 0.087773003 0.98158199 -0.16978 0.087743998 0.98156798\n\t\t -0.16978 0.087743998 0.98156798 -0.16978 0.087743998 0.98156798 -0.169686 0.087773003\n\t\t 0.98158199 -0.16978 0.087743998 0.98156798 -0.16978 0.087743998 0.98156798 -0.169716\n\t\t 0.087742001 0.98157901 -0.169716 0.087742001 0.98157901 -0.169715 0.087771997 0.98157698\n\t\t -0.16978 0.087743998 0.98156798 -0.169715 0.087771997 0.98157698 -0.169745 0.087771997\n\t\t 0.98157197 -0.169744 0.087802 0.98156899 -0.169744 0.087802 0.98156899 -0.169715\n\t\t 0.087802 0.981574 -0.169715 0.087771997 0.98157698 -0.169715 0.087771997 0.98157698\n\t\t -0.169716 0.087742001 0.98157901 -0.169745 0.087771997 0.98157197 -0.169745 0.087771997\n\t\t 0.98157197 -0.16974901 0.087805003 0.98156798 -0.169715 0.087771997 0.98157698 -0.169716\n\t\t 0.087742001 0.98157901 -0.169715 0.087771997 0.98157698 -0.169716 0.087711997 0.98158199\n\t\t -0.169716 0.087711997 0.98158199 -0.169716 0.087711997 0.98158199 -0.169716 0.087742001\n\t\t 0.98157901 -0.169716 0.087711997 0.98158199 -0.169716 0.087711997 0.98158199 -0.169716\n\t\t 0.087742001 0.98157901 -0.169716 0.087742001 0.98157901 -0.169716 0.087742001 0.98157901\n\t\t -0.169716 0.087711997 0.98158199 -0.169716 0.087742001 0.98157901 -0.169716 0.087742001\n\t\t 0.98157901 -0.169715 0.087802 0.981574 -0.169715 0.087802 0.981574 -0.169715 0.087802\n\t\t 0.981574 -0.169716 0.087742001 0.98157901 -0.169715 0.087802 0.981574 -0.169715 0.087802\n\t\t 0.981574 -0.169715 0.087771997 0.98157698 -0.169715 0.087771997 0.98157698 -0.169715\n\t\t 0.087771997 0.98157698 -0.169715 0.087802 0.981574 -0.169745 0.087771997 0.98157197\n\t\t -0.169715 0.087771997 0.98157698 -0.169715 0.087771997 0.98157698 -0.169715 0.087771997\n\t\t 0.98157698 -0.169745 0.087771997 0.98157197 -0.169745 0.087771997 0.98157197 -0.169715\n\t\t 0.087771997 0.98157698 -0.169716 0.087742001 0.98157901 -0.169715 0.087771997 0.98157698\n\t\t -0.169715 0.087771997 0.98157698 -0.169715 0.087802 0.981574 -0.169715 0.087771997\n\t\t 0.98157698 0.169716 -0.087742001 -0.98157901 0.169716 -0.087742001 -0.98157901 0.169715\n\t\t -0.087802 -0.981574 0.169715 -0.087802 -0.981574 0.169715 -0.087802 -0.981574 0.169716\n\t\t -0.087742001 -0.98157901 0.169716 -0.087711997 -0.98158199 0.169715 -0.087802 -0.981574\n\t\t 0.169715 -0.087802 -0.981574 0.169715 -0.087802 -0.981574 0.169716 -0.087711997 -0.98158199\n\t\t 0.169716 -0.087711997 -0.98158199;\n\tsetAttr \".n[5478:5643]\" -type \"float3\"  0.169715 -0.087771997 -0.98157698 0.169716\n\t\t -0.087711997 -0.98158199 0.169716 -0.087711997 -0.98158199 0.169715 -0.087771997\n\t\t -0.98157698 0.169716 -0.087711997 -0.98158199 0.169744 -0.087802 -0.98156899 0.169715\n\t\t -0.087771997 -0.98157698 0.169744 -0.087802 -0.98156899 0.169715 -0.087771997 -0.98157698\n\t\t 0.169715 -0.087771997 -0.98157698 0.169715 -0.087771997 -0.98157698 0.169686 -0.087773003\n\t\t -0.98158199 0.169715 -0.087771997 -0.98157698 0.169716 -0.087742001 -0.98157901 0.169716\n\t\t -0.087742001 -0.98157901 0.169716 -0.087742001 -0.98157901 0.169715 -0.087771997\n\t\t -0.98157698 0.169715 -0.087771997 -0.98157698 0.16968501 -0.087802999 -0.98157901\n\t\t 0.169715 -0.087771997 -0.98157698 0.169715 -0.087771997 -0.98157698 0.169715 -0.087771997\n\t\t -0.98157698 0.169655 -0.087802999 -0.98158401 0.16968501 -0.087802999 -0.98157901\n\t\t 0.16965599 -0.087773003 -0.98158699 0.16968501 -0.087802999 -0.98157901 0.169655\n\t\t -0.087802999 -0.98158401 0.169655 -0.087802999 -0.98158401 0.16965599 -0.087773003\n\t\t -0.98158699 0.16965599 -0.087773003 -0.98158699 0.169715 -0.087771997 -0.98157698\n\t\t 0.16965599 -0.087773003 -0.98158699 0.16965599 -0.087773003 -0.98158699 0.16965599\n\t\t -0.087773003 -0.98158699 0.169715 -0.087771997 -0.98157698 0.169715 -0.087771997\n\t\t -0.98157698 0.169715 -0.087771997 -0.98157698 0.169715 -0.087771997 -0.98157698 0.169745\n\t\t -0.087771997 -0.98157197 0.169745 -0.087771997 -0.98157197 0.169745 -0.087771997\n\t\t -0.98157197 0.169715 -0.087771997 -0.98157698 0.169745 -0.087771997 -0.98157197 0.169745\n\t\t -0.087771997 -0.98157197 0.169715 -0.087771997 -0.98157698 0.169715 -0.087771997\n\t\t -0.98157698 0.169745 -0.087771997 -0.98157197 0.169745 -0.087771997 -0.98157197 0.169716\n\t\t -0.087742001 -0.98157901 0.169745 -0.087771997 -0.98157197 0.169715 -0.087771997\n\t\t -0.98157698 0.169715 -0.087771997 -0.98157698 0.169716 -0.087742001 -0.98157901 0.169716\n\t\t -0.087742001 -0.98157901 0.169715 -0.087771997 -0.98157698 0.169716 -0.087742001\n\t\t -0.98157901 0.169716 -0.087742001 -0.98157901 0.169716 -0.087742001 -0.98157901 0.169715\n\t\t -0.087771997 -0.98157698 0.169715 -0.087771997 -0.98157698 0.169715 -0.087802 -0.981574\n\t\t 0.169715 -0.087771997 -0.98157698 0.169715 -0.087771997 -0.98157698 0.169715 -0.087771997\n\t\t -0.98157698 0.169715 -0.087802 -0.981574 0.169715 -0.087802 -0.981574 0.169715 -0.087802\n\t\t -0.981574 0.169715 -0.087802 -0.981574 0.169715 -0.087802 -0.981574 0.169715 -0.087802\n\t\t -0.981574 0.169715 -0.087771997 -0.98157698 0.169715 -0.087802 -0.981574 0.169715\n\t\t -0.087771997 -0.98157698 0.169715 -0.087802 -0.981574 0.169715 -0.087771997 -0.98157698\n\t\t 0.169715 -0.087771997 -0.98157698 0.169715 -0.087771997 -0.98157698 0.169715 -0.087771997\n\t\t -0.98157698 0.169745 -0.087771997 -0.98157197 0.169715 -0.087771997 -0.98157698 0.169715\n\t\t -0.087771997 -0.98157698 0.169715 -0.087771997 -0.98157698 0.169745 -0.087741002\n\t\t -0.981574 0.169745 -0.087771997 -0.98157197 0.169745 -0.087771997 -0.98157197 0.169745\n\t\t -0.087741002 -0.981574 0.169715 -0.087771997 -0.98157698 0.169715 -0.087771997 -0.98157698\n\t\t 0.169715 -0.087771997 -0.98157698 0.169745 -0.087771997 -0.98157197 0.123602 -0.024812\n\t\t 0.99202198 -0.059512999 -0.10227 0.992975 0.035340998 -0.087679997 0.99552202 0.123602\n\t\t -0.024812 0.99202198 0.035340998 -0.087679997 0.99552202 0.141702 0.040681999 0.98907298\n\t\t 0.123602 -0.024812 0.99202198 0.141702 0.040681999 0.98907298 0.116735 0.11118 0.98692\n\t\t 0.53735298 0.49419901 0.68338799 0.55037802 0.494407 0.67278999 0.53455102 0.49414301\n\t\t 0.68562299 0.53455102 0.49414301 0.68562299 0.52291203 0.493828 0.69476402 0.53735298\n\t\t 0.49419901 0.68338799 0.65793103 0.74842101 0.083622001 0.714939 0.6832 0.14865801\n\t\t 0.663674 0.71265799 0.22727799 0.663674 0.71265799 0.22727799 0.61523998 0.76389998\n\t\t 0.194775 0.65793103 0.74842101 0.083622001 0.62134802 0.78352898 0.002991 0.65793103\n\t\t 0.74842101 0.083622001 0.61523998 0.76389998 0.194775 0.61523998 0.76389998 0.194775\n\t\t 0.58443099 0.80672902 0.087343998 0.62134802 0.78352898 0.002991 0.552894 0.83190602\n\t\t 0.047336001 0.62134802 0.78352898 0.002991 0.58443099 0.80672902 0.087343998 0.58443099\n\t\t 0.80672902 0.087343998 0.52095699 0.85068399 0.070285 0.552894 0.83190602 0.047336001\n\t\t -0.298112 -0.60345697 0.739573 -0.34056601 -0.60861897 0.716658 -0.30097601 -0.60384399\n\t\t 0.738096 -0.30097601 -0.60384399 0.738096 -0.26045299 -0.59778601 0.75816602 -0.298112\n\t\t -0.60345697 0.739573 -0.35084301 -0.92862302 0.120701 -0.41237101 -0.88886201 0.19968501\n\t\t -0.363359 -0.90070802 0.23810899 -0.363359 -0.90070802 0.23810899 -0.31743199 -0.93511403\n\t\t 0.15748 -0.35084301 -0.92862302 0.120701 -0.31770599 -0.948084 0.0141 -0.35084301\n\t\t -0.92862302 0.120701 -0.31743199 -0.93511403 0.15748 -0.31743199 -0.93511403 0.15748\n\t\t -0.28672799 -0.95720398 0.039338998 -0.31770599 -0.948084 0.0141 -0.240061 -0.97010201\n\t\t 0.035677001 -0.31770599 -0.948084 0.0141 -0.28672799 -0.95720398 0.039338998 -0.28672799\n\t\t -0.95720398 0.039338998 -0.215159 -0.975299 0.049989998 -0.240061 -0.97010201 0.035677001\n\t\t 0.946886 -0.29734701 0.122443 0.88207603 -0.45565599 0.119667 0.91580701 -0.40010101\n\t\t -0.034883 0.91580701 -0.40010101 -0.034883 0.91218799 -0.40975001 -0.0043029999 0.946886\n\t\t -0.29734701 0.122443 0.91218799 -0.40975001 -0.0043029999 0.91580701 -0.40010101\n\t\t -0.034883 0.90881997 -0.415483 -0.037691001 0.91580701 -0.40010101 -0.034883 0.88593501\n\t\t -0.45729601 -0.077457003 0.90881997 -0.415483 -0.037691001 0.91580701 -0.40010101\n\t\t -0.034883 0.88631302 -0.45660001 -0.077243999 0.88593501 -0.45729601 -0.077457003\n\t\t 0.91218799 -0.40975001 -0.0043029999 0.90881997 -0.415483 -0.037691001 0.90485698\n\t\t -0.42570901 -0.002594 0.90881997 -0.415483 -0.037691001;\n\tsetAttr \".n[5644:5809]\" -type \"float3\"  0.90435302 -0.42678401 0.001221 0.90485698\n\t\t -0.42570901 -0.002594 0.90881997 -0.415483 -0.037691001 0.903642 -0.428184 0.0094609996\n\t\t 0.90435302 -0.42678401 0.001221 -0.175699 -0.060336001 -0.982593 -0.175699 -0.060306001\n\t\t -0.98259503 -0.166086 -0.060093001 -0.98427898 -0.166086 -0.060093001 -0.98427898\n\t\t -0.166086 -0.060093001 -0.98427898 -0.175699 -0.060336001 -0.982593 -0.166086 -0.060093001\n\t\t -0.98427898 -0.166086 -0.060093001 -0.98427898 -0.156901 -0.063054003 -0.98559999\n\t\t -0.156901 -0.063054003 -0.98559999 -0.156896 -0.063051999 -0.98559999 -0.166086 -0.060093001\n\t\t -0.98427898 -0.156896 -0.063051999 -0.98559999 -0.156901 -0.063054003 -0.98559999\n\t\t -0.14927 -0.069064997 -0.98638201 -0.14927 -0.069064997 -0.98638201 -0.14927 -0.069064997\n\t\t -0.98638201 -0.156896 -0.063051999 -0.98559999 -0.14927 -0.069064997 -0.98638201\n\t\t -0.14927 -0.069064997 -0.98638201 -0.14408199 -0.077367 -0.98653698 -0.14408199 -0.077367\n\t\t -0.98653698 -0.14408199 -0.077367 -0.98653698 -0.14927 -0.069064997 -0.98638201 -0.14408199\n\t\t -0.077367 -0.98653698 -0.14408199 -0.077367 -0.98653698 -0.14203601 -0.086857997\n\t\t -0.98604298 -0.14203601 -0.086857997 -0.98604298 -0.14203601 -0.086888 -0.98604101\n\t\t -0.14408199 -0.077367 -0.98653698 -0.14203601 -0.086888 -0.98604101 -0.14203601 -0.086857997\n\t\t -0.98604298 -0.143286 -0.096469998 -0.98496801 -0.143286 -0.096469998 -0.98496801\n\t\t -0.143286 -0.096469998 -0.98496801 -0.14203601 -0.086888 -0.98604101 -0.143286 -0.096469998\n\t\t -0.98496801 -0.143286 -0.096469998 -0.98496801 -0.147651 -0.105047 -0.98344499 -0.147651\n\t\t -0.105047 -0.98344499 -0.14762101 -0.105047 -0.98345 -0.143286 -0.096469998 -0.98496801\n\t\t -0.175699 -0.060306001 -0.98259503 -0.175699 -0.060336001 -0.982593 -0.18460999 -0.063906997\n\t\t -0.98073202 -0.18460999 -0.063906997 -0.98073202 -0.18460999 -0.063906997 -0.98073202\n\t\t -0.175699 -0.060306001 -0.98259503 -0.18460999 -0.063906997 -0.98073202 -0.18460999\n\t\t -0.063906997 -0.98073202 -0.191631 -0.070408002 -0.97893798 -0.191631 -0.070408002\n\t\t -0.97893798 -0.191631 -0.070408002 -0.97893798 -0.18460999 -0.063906997 -0.98073202\n\t\t -0.191631 -0.070408002 -0.97893798 -0.191631 -0.070408002 -0.97893798 -0.19608501\n\t\t -0.078952998 -0.97740299 -0.19608501 -0.078952998 -0.97740299 -0.196114 -0.078952\n\t\t -0.97739798 -0.191631 -0.070408002 -0.97893798 -0.196114 -0.078952 -0.97739798 -0.19608501\n\t\t -0.078952998 -0.97740299 -0.19739801 -0.087255001 -0.97643298 -0.19739801 -0.087255001\n\t\t -0.97643298 -0.197366 -0.087436996 -0.97642303 -0.196114 -0.078952 -0.97739798 -0.197366\n\t\t -0.087436996 -0.97642303 -0.19739801 -0.087255001 -0.97643298 -0.19636101 -0.094732001\n\t\t -0.975945 -0.19636101 -0.094732001 -0.975945 -0.19638801 -0.094517 -0.97596002 -0.197366\n\t\t -0.087436996 -0.97642303 -0.19638801 -0.094517 -0.97596002 -0.19636101 -0.094732001\n\t\t -0.975945 -0.193675 -0.101294 -0.97582299 -0.193675 -0.101294 -0.97582299 -0.193554\n\t\t -0.101477 -0.97582698 -0.19638801 -0.094517 -0.97596002 -0.193554 -0.101477 -0.97582698\n\t\t -0.193675 -0.101294 -0.97582299 -0.18912899 -0.107306 -0.97607201 -0.18912899 -0.107306\n\t\t -0.97607201 -0.18927801 -0.107183 -0.97605598 -0.193554 -0.101477 -0.97582698 -0.18927801\n\t\t -0.107183 -0.97605598 -0.18912899 -0.107306 -0.97607201 -0.18241499 -0.112403 -0.976776\n\t\t -0.18241499 -0.112403 -0.976776 -0.18241499 -0.112403 -0.976776 -0.18927801 -0.107183\n\t\t -0.97605598 -0.18241499 -0.112403 -0.976776 -0.18241499 -0.112403 -0.976776 -0.173226\n\t\t -0.115362 -0.97810298 -0.173226 -0.115362 -0.97810298 -0.173226 -0.115362 -0.97810298\n\t\t -0.18241499 -0.112403 -0.976776 -0.173226 -0.115362 -0.97810298 -0.173226 -0.115362\n\t\t -0.97810298 -0.16361301 -0.115088 -0.97978801 -0.16361301 -0.115088 -0.97978801 -0.16361301\n\t\t -0.115118 -0.97978503 -0.173226 -0.115362 -0.97810298 -0.16361301 -0.115118 -0.97978503\n\t\t -0.16361301 -0.115088 -0.97978801 -0.1547 -0.111577 -0.98164099 -0.1547 -0.111577\n\t\t -0.98164099 -0.15467 -0.111608 -0.98164201 -0.16361301 -0.115118 -0.97978503 -0.15467\n\t\t -0.111608 -0.98164201 -0.1547 -0.111577 -0.98164099 -0.14762101 -0.105047 -0.98345\n\t\t -0.14762101 -0.105047 -0.98345 -0.147651 -0.105047 -0.98344499 -0.15467 -0.111608\n\t\t -0.98164201 0.205548 -0.62515998 -0.75294399 0.23136801 -0.63440597 -0.737562 0.40068901\n\t\t -0.47961199 -0.78065401 0.40068901 -0.47961199 -0.78065401 0.35057199 -0.45024699\n\t\t -0.82120502 0.205548 -0.62515998 -0.75294399 0.23136801 -0.63440597 -0.737562 0.205548\n\t\t -0.62515998 -0.75294399 0.014161 -0.70872802 -0.70534003 0.014161 -0.70872802 -0.70534003\n\t\t 0.018983001 -0.72052002 -0.69317502 0.23136801 -0.63440597 -0.737562 0.018983001\n\t\t -0.72052002 -0.69317502 0.014161 -0.70872802 -0.70534003 -0.211162 -0.71567601 -0.66574597\n\t\t -0.211162 -0.71567601 -0.66574597 -0.210795 -0.72766501 -0.65274 0.018983001 -0.72052002\n\t\t -0.69317502 -0.210795 -0.72766501 -0.65274 -0.211162 -0.71567601 -0.66574597 -0.42641699\n\t\t -0.644265 -0.63489503 -0.42641699 -0.644265 -0.63489503 -0.430388 -0.65483099 -0.62125897\n\t\t -0.210795 -0.72766501 -0.65274 -0.430388 -0.65483099 -0.62125897 -0.42641699 -0.644265\n\t\t -0.63489503 -0.58596498 -0.52477401 -0.61746001 -0.58596498 -0.52477401 -0.61746001\n\t\t -0.59180498 -0.53400099 -0.60382998 -0.430388 -0.65483099 -0.62125897 -0.59180498\n\t\t -0.53400099 -0.60382998 -0.58596498 -0.52477401 -0.61746001 -0.68555599 -0.38878599\n\t\t -0.61551398 -0.68555599 -0.38878599 -0.61551398 -0.69980597 -0.39073801 -0.59799403\n\t\t -0.59180498 -0.53400099 -0.60382998 -0.69980597 -0.39073801 -0.59799403 -0.68555599\n\t\t -0.38878599 -0.61551398 -0.75329602 -0.22345901 -0.61855602 -0.75329602 -0.22345901\n\t\t -0.61855602 -0.76504803 -0.231517 -0.60091698 -0.69980597 -0.39073801 -0.59799403\n\t\t -0.76504803 -0.231517 -0.60091698 -0.75329602 -0.22345901 -0.61855602 -0.77765101\n\t\t -0.056795999 -0.62612498 -0.77765101 -0.056795999 -0.62612498 -0.78847098 -0.053867001\n\t\t -0.61270899;\n\tsetAttr \".n[5810:5975]\" -type \"float3\"  -0.76504803 -0.231517 -0.60091698 -0.78847098\n\t\t -0.053867001 -0.61270899 -0.77765101 -0.056795999 -0.62612498 -0.747473 0.13965499\n\t\t -0.64944601 -0.747473 0.13965499 -0.64944601 -0.75791597 0.14478301 -0.63608301 -0.78847098\n\t\t -0.053867001 -0.61270899 -0.75791597 0.14478301 -0.63608301 -0.747473 0.13965499\n\t\t -0.64944601 -0.64371198 0.340442 -0.68537098 -0.64371198 0.340442 -0.68537098 -0.65205199\n\t\t 0.34963301 -0.67274398 -0.75791597 0.14478301 -0.63608301 -0.65205199 0.34963301\n\t\t -0.67274398 -0.64371198 0.340442 -0.68537098 -0.477689 0.492246 -0.72767299 -0.477689\n\t\t 0.492246 -0.72767299 -0.48269099 0.50445098 -0.715918 -0.65205199 0.34963301 -0.67274398\n\t\t -0.48269099 0.50445098 -0.715918 -0.477689 0.492246 -0.72767299 -0.269483 0.57671797\n\t\t -0.77121598 -0.269483 0.57671797 -0.77121598 -0.27030501 0.59060001 -0.760346 -0.48269099\n\t\t 0.50445098 -0.715918 -0.27030501 0.59060001 -0.760346 -0.269483 0.57671797 -0.77121598\n\t\t -0.044131 0.58364999 -0.81080502 -0.044131 0.58364999 -0.81080502 -0.040499002 0.59768999\n\t\t -0.800704 -0.27030501 0.59060001 -0.760346 -0.040499002 0.59768999 -0.800704 -0.044131\n\t\t 0.58364999 -0.81080502 0.17106 0.51220298 -0.84165698 0.17106 0.51220298 -0.84165698\n\t\t 0.17902599 0.52477902 -0.83219999 -0.040499002 0.59768999 -0.800704 0.17902599 0.52477902\n\t\t -0.83219999 0.17106 0.51220298 -0.84165698 0.34029299 0.375788 -0.861965 0.34029299\n\t\t 0.375788 -0.861965 0.361839 0.38088301 -0.85088301 0.17902599 0.52477902 -0.83219999\n\t\t 0.361839 0.38088301 -0.85088301 0.34029299 0.375788 -0.861965 0.428884 0.159126 -0.88923401\n\t\t 0.428884 0.159126 -0.88923401 0.48580199 0.183053 -0.85468602 0.361839 0.38088301\n\t\t -0.85088301 0.48580199 0.183053 -0.85468602 0.428884 0.159126 -0.88923401 0.47505799\n\t\t -0.050264999 -0.87851799 0.47505799 -0.050264999 -0.87851799 0.53606701 -0.044588\n\t\t -0.84299701 0.48580199 0.183053 -0.85468602 0.53606701 -0.044588 -0.84299701 0.47505799\n\t\t -0.050264999 -0.87851799 0.447878 -0.261859 -0.85488898 0.447878 -0.261859 -0.85488898\n\t\t 0.50649601 -0.27473301 -0.817303 0.53606701 -0.044588 -0.84299701 0.50649601 -0.27473301\n\t\t -0.817303 0.447878 -0.261859 -0.85488898 0.35057199 -0.45024699 -0.82120502 0.35057199\n\t\t -0.45024699 -0.82120502 0.40068901 -0.47961199 -0.78065401 0.50649601 -0.27473301\n\t\t -0.817303 -0.017883999 0.67916697 -0.73376602 -0.044131 0.58364999 -0.81080502 -0.269483\n\t\t 0.57671797 -0.77121598 -0.269483 0.57671797 -0.77121598 -0.27360201 0.67126399 -0.68887299\n\t\t -0.017883999 0.67916697 -0.73376602 -0.044131 0.58364999 -0.81080502 -0.017883999\n\t\t 0.67916697 -0.73376602 0.21424501 0.59671199 -0.77332699 0.21424501 0.59671199 -0.77332699\n\t\t 0.17106 0.51220298 -0.84165698 -0.044131 0.58364999 -0.81080502 0.27769801 0.73866802\n\t\t -0.614209 0.21424501 0.59671199 -0.77332699 -0.017883999 0.67916697 -0.73376602 -0.017883999\n\t\t 0.67916697 -0.73376602 0.027193001 0.81618202 -0.57715398 0.27769801 0.73866802 -0.614209\n\t\t 0.027193001 0.81618202 -0.57715398 -0.017883999 0.67916697 -0.73376602 -0.27360201\n\t\t 0.67126399 -0.68887299 -0.27360201 0.67126399 -0.68887299 -0.270771 0.80700099 -0.52481598\n\t\t 0.027193001 0.81618202 -0.57715398 0.17106 0.51220298 -0.84165698 0.21424501 0.59671199\n\t\t -0.77332699 0.367329 0.43810299 -0.82044798 0.367329 0.43810299 -0.82044798 0.34029299\n\t\t 0.375788 -0.861965 0.17106 0.51220298 -0.84165698 0.21424501 0.59671199 -0.77332699\n\t\t 0.27769801 0.73866802 -0.614209 0.39556 0.633793 -0.66470897 0.21424501 0.59671199\n\t\t -0.77332699 0.39556 0.633793 -0.66470897 0.367329 0.43810299 -0.82044798 0.39556\n\t\t 0.633793 -0.66470897 0.45147201 0.54757798 -0.70450801 0.367329 0.43810299 -0.82044798\n\t\t 0.40736899 0.36009499 -0.839275 0.34029299 0.375788 -0.861965 0.367329 0.43810299\n\t\t -0.82044798 0.40736899 0.36009499 -0.839275 0.39757401 0.345691 -0.84996003 0.34029299\n\t\t 0.375788 -0.861965 0.39757401 0.345691 -0.84996003 0.428884 0.159126 -0.88923401\n\t\t 0.34029299 0.375788 -0.861965 -0.27360201 0.67126399 -0.68887299 -0.269483 0.57671797\n\t\t -0.77121598 -0.477689 0.492246 -0.72767299 -0.477689 0.492246 -0.72767299 -0.50994998\n\t\t 0.575414 -0.63941401 -0.27360201 0.67126399 -0.68887299 -0.270771 0.80700099 -0.52481598\n\t\t -0.27360201 0.67126399 -0.68887299 -0.50994998 0.575414 -0.63941401 -0.50994998 0.575414\n\t\t -0.63941401 -0.477689 0.492246 -0.72767299 -0.64371198 0.340442 -0.68537098 -0.64371198\n\t\t 0.340442 -0.68537098 -0.69837099 0.403097 -0.59143102 -0.50994998 0.575414 -0.63941401\n\t\t -0.69837099 0.403097 -0.59143102 -0.64371198 0.340442 -0.68537098 -0.747473 0.13965499\n\t\t -0.64944601 -0.747473 0.13965499 -0.64944601 -0.81612301 0.17515101 -0.550695 -0.69837099\n\t\t 0.403097 -0.59143102 -0.81612301 0.17515101 -0.550695 -0.747473 0.13965499 -0.64944601\n\t\t -0.77765101 -0.056795999 -0.62612498 -0.77765101 -0.056795999 -0.62612498 -0.84880197\n\t\t -0.048099 -0.526519 -0.81612301 0.17515101 -0.550695 -0.84880197 -0.048099 -0.526519\n\t\t -0.77765101 -0.056795999 -0.62612498 -0.75329602 -0.22345901 -0.61855602 -0.75329602\n\t\t -0.22345901 -0.61855602 -0.82957399 -0.209576 -0.51757598 -0.84880197 -0.048099 -0.526519\n\t\t -0.79034603 -0.33326599 -0.51408899 -0.82957399 -0.209576 -0.51757598 -0.75329602\n\t\t -0.22345901 -0.61855602 -0.79034603 -0.33326599 -0.51408899 -0.75329602 -0.22345901\n\t\t -0.61855602 -0.68555599 -0.38878599 -0.61551398 -0.79034603 -0.33326599 -0.51408899\n\t\t -0.68555599 -0.38878599 -0.61551398 -0.731547 -0.448939 -0.51312101 -0.731547 -0.448939\n\t\t -0.51312101 -0.68555599 -0.38878599 -0.61551398 -0.58596498 -0.52477401 -0.61746001\n\t\t -0.58596498 -0.52477401 -0.61746001 -0.63190001 -0.57769799 -0.51669002 -0.731547\n\t\t -0.448939 -0.51312101 -0.63190001 -0.57769799 -0.51669002 -0.58596498 -0.52477401\n\t\t -0.61746001 -0.42641699 -0.644265 -0.63489503;\n\tsetAttr \".n[5976:6141]\" -type \"float3\"  -0.42641699 -0.644265 -0.63489503 -0.45171899\n\t\t -0.71458399 -0.53415298 -0.63190001 -0.57769799 -0.51669002 -0.45171899 -0.71458399\n\t\t -0.53415298 -0.42641699 -0.644265 -0.63489503 -0.211162 -0.71567601 -0.66574597 -0.211162\n\t\t -0.71567601 -0.66574597 -0.207408 -0.79566503 -0.569121 -0.45171899 -0.71458399 -0.53415298\n\t\t -0.207408 -0.79566503 -0.569121 -0.211162 -0.71567601 -0.66574597 0.014161 -0.70872802\n\t\t -0.70534003 0.014161 -0.70872802 -0.70534003 0.048312001 -0.78776503 -0.614079 -0.207408\n\t\t -0.79566503 -0.569121 0.048312001 -0.78776503 -0.614079 0.014161 -0.70872802 -0.70534003\n\t\t 0.205548 -0.62515998 -0.75294399 0.205548 -0.62515998 -0.75294399 0.255936 -0.70765299\n\t\t -0.65857798 0.048312001 -0.78776503 -0.614079 0.33882499 -0.634588 -0.694619 0.255936\n\t\t -0.70765299 -0.65857798 0.205548 -0.62515998 -0.75294399 0.33882499 -0.634588 -0.694619\n\t\t 0.205548 -0.62515998 -0.75294399 0.31255099 -0.51062202 -0.80098498 0.205548 -0.62515998\n\t\t -0.75294399 0.35057199 -0.45024699 -0.82120502 0.31255099 -0.51062202 -0.80098498\n\t\t 0.33882499 -0.634588 -0.694619 0.31255099 -0.51062202 -0.80098498 0.42438 -0.56352001\n\t\t -0.70876402 0.104346 -0.89305699 -0.43767801 0.048312001 -0.78776503 -0.614079 0.255936\n\t\t -0.70765299 -0.65857798 0.255936 -0.70765299 -0.65857798 0.347184 -0.80045199 -0.48860899\n\t\t 0.104346 -0.89305699 -0.43767801 0.347184 -0.80045199 -0.48860899 0.255936 -0.70765299\n\t\t -0.65857798 0.33882499 -0.634588 -0.694619 0.33882499 -0.634588 -0.694619 0.44023901\n\t\t -0.73886901 -0.51015902 0.347184 -0.80045199 -0.48860899 0.048312001 -0.78776503\n\t\t -0.614079 0.104346 -0.89305699 -0.43767801 -0.193645 -0.902242 -0.385306 -0.193645\n\t\t -0.902242 -0.385306 -0.207408 -0.79566503 -0.569121 0.048312001 -0.78776503 -0.614079\n\t\t -0.207408 -0.79566503 -0.569121 -0.193645 -0.902242 -0.385306 -0.47829399 -0.807809\n\t\t -0.34449899 -0.47829399 -0.807809 -0.34449899 -0.45171899 -0.71458399 -0.53415298\n\t\t -0.207408 -0.79566503 -0.569121 -0.45171899 -0.71458399 -0.53415298 -0.47829399 -0.807809\n\t\t -0.34449899 -0.689004 -0.64881003 -0.32298601 0.39412799 -0.83858198 -0.376091 0.347184\n\t\t -0.80045199 -0.48860899 0.44023901 -0.73886901 -0.51015902 0.44023901 -0.73886901\n\t\t -0.51015902 0.49327901 -0.77319801 -0.39854699 0.39412799 -0.83858198 -0.376091 0.13565999\n\t\t -0.93679798 -0.32249999 0.104346 -0.89305699 -0.43767801 0.347184 -0.80045199 -0.48860899\n\t\t 0.347184 -0.80045199 -0.48860899 0.39412799 -0.83858198 -0.376091 0.13565999 -0.93679798\n\t\t -0.32249999 0.145302 -0.94771099 -0.28413299 0.13565999 -0.93679798 -0.32249999 0.39412799\n\t\t -0.83858198 -0.376091 0.39412799 -0.83858198 -0.376091 0.408923 -0.84750903 -0.338393\n\t\t 0.145302 -0.94771099 -0.28413299 0.408923 -0.84750903 -0.338393 0.39412799 -0.83858198\n\t\t -0.376091 0.49327901 -0.77319801 -0.39854699 0.49327901 -0.77319801 -0.39854699 0.50888097\n\t\t -0.78163302 -0.360679 0.408923 -0.84750903 -0.338393 -0.181192 -0.94655001 -0.26685899\n\t\t -0.193645 -0.902242 -0.385306 0.104346 -0.89305699 -0.43767801 0.104346 -0.89305699\n\t\t -0.43767801 0.13565999 -0.93679798 -0.32249999 -0.181192 -0.94655001 -0.26685899\n\t\t 0.13565999 -0.93679798 -0.32249999 0.145302 -0.94771099 -0.28413299 -0.176522 -0.95762599\n\t\t -0.22758 -0.176522 -0.95762599 -0.22758 -0.181192 -0.94655001 -0.26685899 0.13565999\n\t\t -0.93679798 -0.32249999 -0.48385799 -0.84612697 -0.22349501 -0.47829399 -0.807809\n\t\t -0.34449899 -0.193645 -0.902242 -0.385306 -0.193645 -0.902242 -0.385306 -0.181192\n\t\t -0.94655001 -0.26685899 -0.48385799 -0.84612697 -0.22349501 -0.181192 -0.94655001\n\t\t -0.26685899 -0.176522 -0.95762599 -0.22758 -0.48399901 -0.85559702 -0.183571 -0.48399901\n\t\t -0.85559702 -0.183571 -0.48385799 -0.84612697 -0.22349501 -0.181192 -0.94655001 -0.26685899\n\t\t -0.70805597 -0.67726201 -0.19993401 -0.689004 -0.64881003 -0.32298601 -0.47829399\n\t\t -0.807809 -0.34449899 -0.47829399 -0.807809 -0.34449899 -0.48385799 -0.84612697 -0.22349501\n\t\t -0.70805597 -0.67726201 -0.19993401 -0.48385799 -0.84612697 -0.22349501 -0.48399901\n\t\t -0.85559702 -0.183571 -0.71253198 -0.683357 -0.159127 -0.71253198 -0.683357 -0.159127\n\t\t -0.70805597 -0.67726201 -0.19993401 -0.48385799 -0.84612697 -0.22349501 -0.70805597\n\t\t -0.67726201 -0.19993401 -0.71253198 -0.683357 -0.159127 -0.79188401 -0.59125102 -0.15278\n\t\t -0.79188401 -0.59125102 -0.15278 -0.78693402 -0.58575302 -0.193979 -0.70805597 -0.67726201\n\t\t -0.19993401 -0.785815 -0.571446 -0.236526 -0.70805597 -0.67726201 -0.19993401 -0.78693402\n\t\t -0.58575302 -0.193979 -0.689004 -0.64881003 -0.32298601 -0.70805597 -0.67726201 -0.19993401\n\t\t -0.785815 -0.571446 -0.236526 -0.785815 -0.571446 -0.236526 -0.82534099 -0.51297301\n\t\t -0.235947 -0.689004 -0.64881003 -0.32298601 -0.785815 -0.571446 -0.236526 -0.86513299\n\t\t -0.443661 -0.23390099 -0.82534099 -0.51297301 -0.235947 -0.82534099 -0.51297301 -0.235947\n\t\t -0.86513299 -0.443661 -0.23390099 -0.86518502 -0.44362599 -0.233776 -0.86518502 -0.44362599\n\t\t -0.233776 -0.84372997 -0.43276101 -0.31755099 -0.82534099 -0.51297301 -0.235947 -0.84372997\n\t\t -0.43276101 -0.31755099 -0.86518502 -0.44362599 -0.233776 -0.85097599 -0.35567501\n\t\t -0.38643801 -0.79034603 -0.33326599 -0.51408899 -0.84372997 -0.43276101 -0.31755099\n\t\t -0.85097599 -0.35567501 -0.38643801 -0.85097599 -0.35567501 -0.38643801 -0.90070301\n\t\t -0.29347 -0.320326 -0.79034603 -0.33326599 -0.51408899 -0.84372997 -0.43276101 -0.31755099\n\t\t -0.79034603 -0.33326599 -0.51408899 -0.731547 -0.448939 -0.51312101 -0.731547 -0.448939\n\t\t -0.51312101 -0.806108 -0.49938801 -0.31749299 -0.84372997 -0.43276101 -0.31755099\n\t\t -0.82534099 -0.51297301 -0.235947 -0.84372997 -0.43276101 -0.31755099 -0.806108 -0.49938801\n\t\t -0.31749299 -0.806108 -0.49938801 -0.31749299 -0.731547 -0.448939 -0.51312101 -0.63190001\n\t\t -0.57769799 -0.51669002 -0.63190001 -0.57769799 -0.51669002;\n\tsetAttr \".n[6142:6307]\" -type \"float3\"  -0.689004 -0.64881003 -0.32298601 -0.806108\n\t\t -0.49938801 -0.31749299 -0.689004 -0.64881003 -0.32298601 -0.82534099 -0.51297301\n\t\t -0.235947 -0.806108 -0.49938801 -0.31749299 -0.689004 -0.64881003 -0.32298601 -0.63190001\n\t\t -0.57769799 -0.51669002 -0.45171899 -0.71458399 -0.53415298 -0.79034603 -0.33326599\n\t\t -0.51408899 -0.90070301 -0.29347 -0.320326 -0.92065001 -0.21968 -0.32271299 -0.92065001\n\t\t -0.21968 -0.32271299 -0.82957399 -0.209576 -0.51757598 -0.79034603 -0.33326599 -0.51408899\n\t\t -0.82957399 -0.209576 -0.51757598 -0.92065001 -0.21968 -0.32271299 -0.94188797 -0.031344\n\t\t -0.33446199 -0.94188797 -0.031344 -0.33446199 -0.84880197 -0.048099 -0.526519 -0.82957399\n\t\t -0.209576 -0.51757598 -0.84880197 -0.048099 -0.526519 -0.94188797 -0.031344 -0.33446199\n\t\t -0.90291202 0.228925 -0.36379001 -0.90291202 0.228925 -0.36379001 -0.81612301 0.17515101\n\t\t -0.550695 -0.84880197 -0.048099 -0.526519 -0.81612301 0.17515101 -0.550695 -0.90291202\n\t\t 0.228925 -0.36379001 -0.76569599 0.49453199 -0.41127601 -0.76569599 0.49453199 -0.41127601\n\t\t -0.69837099 0.403097 -0.59143102 -0.81612301 0.17515101 -0.550695 -0.69837099 0.403097\n\t\t -0.59143102 -0.76569599 0.49453199 -0.41127601 -0.54617399 0.69529003 -0.46718901\n\t\t -0.54617399 0.69529003 -0.46718901 -0.50994998 0.575414 -0.63941401 -0.69837099 0.403097\n\t\t -0.59143102 -0.50994998 0.575414 -0.63941401 -0.54617399 0.69529003 -0.46718901 -0.270771\n\t\t 0.80700099 -0.52481598 -0.93532598 0.256179 -0.244002 -0.90291202 0.228925 -0.36379001\n\t\t -0.94188797 -0.031344 -0.33446199 -0.94188797 -0.031344 -0.33446199 -0.97702497 -0.020509001\n\t\t -0.212135 -0.93532598 0.256179 -0.244002 -0.94258702 0.26411301 -0.20438699 -0.93532598\n\t\t 0.256179 -0.244002 -0.97702497 -0.020509001 -0.212135 -0.97702497 -0.020509001 -0.212135\n\t\t -0.985017 -0.018006001 -0.171514 -0.94258702 0.26411301 -0.20438699 -0.78943002 0.53859502\n\t\t -0.294476 -0.76569599 0.49453199 -0.41127601 -0.90291202 0.228925 -0.36379001 -0.90291202\n\t\t 0.228925 -0.36379001 -0.93532598 0.256179 -0.244002 -0.78943002 0.53859502 -0.294476\n\t\t -0.93532598 0.256179 -0.244002 -0.94258702 0.26411301 -0.20438699 -0.794384 0.55099303\n\t\t -0.25565901 -0.794384 0.55099303 -0.25565901 -0.78943002 0.53859502 -0.294476 -0.93532598\n\t\t 0.256179 -0.244002 -0.55600297 0.75205898 -0.35393301 -0.54617399 0.69529003 -0.46718901\n\t\t -0.76569599 0.49453199 -0.41127601 -0.76569599 0.49453199 -0.41127601 -0.78943002\n\t\t 0.53859502 -0.294476 -0.55600297 0.75205898 -0.35393301 -0.78943002 0.53859502 -0.294476\n\t\t -0.794384 0.55099303 -0.25565901 -0.557275 0.76782399 -0.31605399 -0.557275 0.76782399\n\t\t -0.31605399 -0.55600297 0.75205898 -0.35393301 -0.78943002 0.53859502 -0.294476 -0.26322901\n\t\t 0.87083697 -0.41515401 -0.270771 0.80700099 -0.52481598 -0.54617399 0.69529003 -0.46718901\n\t\t -0.54617399 0.69529003 -0.46718901 -0.55600297 0.75205898 -0.35393301 -0.26322901\n\t\t 0.87083697 -0.41515401 -0.270771 0.80700099 -0.52481598 -0.26322901 0.87083697 -0.41515401\n\t\t 0.053621002 0.88058603 -0.470842 0.053621002 0.88058603 -0.470842 0.027193001 0.81618202\n\t\t -0.57715398 -0.270771 0.80700099 -0.52481598 0.027193001 0.81618202 -0.57715398 0.053621002\n\t\t 0.88058603 -0.470842 0.32023701 0.79853302 -0.5097 0.32023701 0.79853302 -0.5097\n\t\t 0.27769801 0.73866802 -0.614209 0.027193001 0.81618202 -0.57715398 0.33391401 0.81471997\n\t\t -0.47406 0.32023701 0.79853302 -0.5097 0.053621002 0.88058603 -0.470842 0.053621002\n\t\t 0.88058603 -0.470842 0.061985001 0.89840102 -0.43478 0.33391401 0.81471997 -0.47406\n\t\t 0.061985001 0.89840102 -0.43478 0.053621002 0.88058603 -0.470842 -0.26322901 0.87083697\n\t\t -0.41515401 -0.26322901 0.87083697 -0.41515401 -0.259846 0.888493 -0.378232 0.061985001\n\t\t 0.89840102 -0.43478 -0.55600297 0.75205898 -0.35393301 -0.557275 0.76782399 -0.31605399\n\t\t -0.259846 0.888493 -0.378232 -0.259846 0.888493 -0.378232 -0.26322901 0.87083697\n\t\t -0.41515401 -0.55600297 0.75205898 -0.35393301 0.27769801 0.73866802 -0.614209 0.32023701\n\t\t 0.79853302 -0.5097 0.42500499 0.739501 -0.52202398 0.42500499 0.739501 -0.52202398\n\t\t 0.39556 0.633793 -0.66470897 0.27769801 0.73866802 -0.614209 0.43948099 0.75532699\n\t\t -0.48614499 0.42500499 0.739501 -0.52202398 0.32023701 0.79853302 -0.5097 0.32023701\n\t\t 0.79853302 -0.5097 0.33391401 0.81471997 -0.47406 0.43948099 0.75532699 -0.48614499\n\t\t -0.985017 -0.018006001 -0.171514 -0.97702497 -0.020509001 -0.212135 -0.96916598 -0.140755\n\t\t -0.20225 -0.97702497 -0.020509001 -0.212135 -0.95776701 -0.151556 -0.244363 -0.96916598\n\t\t -0.140755 -0.20225 -0.94493502 -0.22099 -0.241376 -0.95776701 -0.151556 -0.244363\n\t\t -0.97702497 -0.020509001 -0.212135 -0.97702497 -0.020509001 -0.212135 -0.94188797\n\t\t -0.031344 -0.33446199 -0.94493502 -0.22099 -0.241376 -0.92065001 -0.21968 -0.32271299\n\t\t -0.94493502 -0.22099 -0.241376 -0.94188797 -0.031344 -0.33446199 -0.94493502 -0.22099\n\t\t -0.241376 -0.92470002 -0.298356 -0.236462 -0.95776701 -0.151556 -0.244363 -0.90070301\n\t\t -0.29347 -0.320326 -0.94493502 -0.22099 -0.241376 -0.92065001 -0.21968 -0.32271299\n\t\t -0.92473 -0.29789799 -0.23692 -0.92470002 -0.298356 -0.236462 -0.94493502 -0.22099\n\t\t -0.241376 -0.94493502 -0.22099 -0.241376 -0.90070301 -0.29347 -0.320326 -0.92473\n\t\t -0.29789799 -0.23692 -0.85097599 -0.35567501 -0.38643801 -0.92473 -0.29789799 -0.23692\n\t\t -0.90070301 -0.29347 -0.320326 -0.96916598 -0.140755 -0.20225 -0.97707802 -0.13907699\n\t\t -0.161173 -0.985017 -0.018006001 -0.171514 -0.21521799 0.97528398 -0.050020002 -0.21521799\n\t\t 0.97528398 -0.050020002 0.126683 0.985816 -0.110081 0.126683 0.985816 -0.110081 0.126683\n\t\t 0.985816 -0.110081 -0.21521799 0.97528398 -0.050020002 0.126683 0.985816 -0.110081\n\t\t 0.126683 0.985816 -0.110081;\n\tsetAttr \".n[6308:6473]\" -type \"float3\"  0.41442201 0.89732999 -0.151834 0.41442201\n\t\t 0.89732999 -0.151834 0.41442201 0.89732999 -0.151834 0.126683 0.985816 -0.110081\n\t\t 0.41442201 0.89732999 -0.151834 0.41442201 0.89732999 -0.151834 0.52731699 0.83336902\n\t\t -0.16563 0.52731699 0.83336902 -0.16563 0.52731699 0.83336902 -0.16563 0.41442201\n\t\t 0.89732999 -0.151834 -0.21521799 0.97528398 -0.050020002 -0.21521799 0.97528398 -0.050020002\n\t\t -0.53115702 0.84712201 0.016053 -0.53115702 0.84712201 0.016053 -0.53115702 0.84712201\n\t\t 0.016053 -0.21521799 0.97528398 -0.050020002 -0.53115702 0.84712201 0.016053 -0.53115702\n\t\t 0.84712201 0.016053 -0.78302997 0.61679202 0.080204003 -0.78302997 0.61679202 0.080204003\n\t\t -0.78302997 0.61679202 0.080204003 -0.53115702 0.84712201 0.016053 -0.78302997 0.61679202\n\t\t 0.080204003 -0.78302997 0.61679202 0.080204003 -0.940467 0.312024 0.134771 -0.940467\n\t\t 0.312024 0.134771 -0.94046301 0.312033 0.134775 -0.78302997 0.61679202 0.080204003\n\t\t -0.94046301 0.312033 0.134775 -0.940467 0.312024 0.134771 -0.98548001 0.013458 0.169257\n\t\t -0.98548001 0.013458 0.169257 -0.98548001 0.013458 0.169257 -0.94046301 0.312033\n\t\t 0.134775 -0.98548001 0.013458 0.169257 -0.98548001 0.013458 0.169257 -0.94688499\n\t\t -0.29734799 0.122443 -0.94688499 -0.29734799 0.122443 -0.95149499 -0.244764 0.18641099\n\t\t -0.98548001 0.013458 0.169257 -0.95149499 -0.244764 0.18641099 -0.94688499 -0.29734799\n\t\t 0.122443 -0.88207501 -0.45565701 0.119667 -0.88207501 -0.45565701 0.119667 -0.852314\n\t\t -0.48693699 0.190929 -0.95149499 -0.244764 0.18641099 -0.852314 -0.48693699 0.190929\n\t\t -0.88207501 -0.45565701 0.119667 -0.69520801 -0.69526899 0.182447 -0.69520801 -0.69526899\n\t\t 0.182447 -0.695189 -0.69528103 0.18247201 -0.852314 -0.48693699 0.190929 -0.695189\n\t\t -0.69528103 0.18247201 -0.69520801 -0.69526899 0.182447 -0.45330399 -0.877433 0.156931\n\t\t -0.45330399 -0.877433 0.156931 -0.45326799 -0.87745202 0.156929 -0.695189 -0.69528103\n\t\t 0.18247201 -0.45326799 -0.87745202 0.156929 -0.45330399 -0.877433 0.156931 -0.126683\n\t\t -0.98581302 0.110111 -0.126683 -0.98581302 0.110111 -0.126653 -0.98582 0.110082 -0.45326799\n\t\t -0.87745202 0.156929 -0.126653 -0.98582 0.110082 -0.126683 -0.98581302 0.110111 0.215189\n\t\t -0.97529203 0.049989998 0.215189 -0.97529203 0.049989998 0.21521799 -0.97528601 0.049989998\n\t\t -0.126653 -0.98582 0.110082 0.21521799 -0.97528601 0.049989998 0.215189 -0.97529203\n\t\t 0.049989998 0.494165 -0.869335 -0.0076600001 0.494165 -0.869335 -0.0076600001 0.51671499\n\t\t -0.856085 0.011139 0.21521799 -0.97528601 0.049989998 0.51671499 -0.856085 0.011139\n\t\t 0.494165 -0.869335 -0.0076600001 0.72718298 -0.66474098 0.171244 0.765513 -0.64169699\n\t\t -0.047061 0.51671499 -0.856085 0.011139 0.72718298 -0.66474098 0.171244 0.765513\n\t\t -0.64169699 -0.047061 0.75599402 -0.65055001 -0.072513998 0.51671499 -0.856085 0.011139\n\t\t 0.75599402 -0.65055001 -0.072513998 0.765513 -0.64169699 -0.047061 0.831873 -0.54678899\n\t\t -0.094916001 0.831873 -0.54678899 -0.094916001 0.831873 -0.54678899 -0.094916001\n\t\t 0.75599402 -0.65055001 -0.072513998 -0.0090340003 0.97447503 0.224315 0.067323998\n\t\t 0.99714601 0.034180999 -0.184275 0.97234201 0.143501 -0.184275 0.97234201 0.143501\n\t\t -0.199746 0.89951003 0.388565 -0.0090340003 0.97447503 0.224315 -0.199746 0.89951003\n\t\t 0.388565 -0.184275 0.97234201 0.143501 -0.48632199 0.84751499 0.212626 -0.48632199\n\t\t 0.84751499 0.212626 -0.39187101 0.78663999 0.47711101 -0.199746 0.89951003 0.388565\n\t\t -0.39187101 0.78663999 0.47711101 -0.48632199 0.84751499 0.212626 -0.733091 0.62185001\n\t\t 0.275462 -0.733091 0.62185001 0.275462 -0.608917 0.58465397 0.536098 -0.39187101\n\t\t 0.78663999 0.47711101 -0.608917 0.58465397 0.536098 -0.733091 0.62185001 0.275462\n\t\t -0.88732302 0.32329199 0.32884699 -0.88732302 0.32329199 0.32884699 -0.74752897 0.31632799\n\t\t 0.58407003 -0.608917 0.58465397 0.536098 -0.74752897 0.31632799 0.58407003 -0.88732302\n\t\t 0.32329199 0.32884699 -0.93120098 0.030366 0.36323899 -0.93120098 0.030366 0.36323899\n\t\t -0.78623998 0.053438999 0.61560601 -0.74752897 0.31632799 0.58407003 -0.78623998\n\t\t 0.053438999 0.61560601 -0.93120098 0.030366 0.36323899 -0.89800203 -0.22169299 0.38005799\n\t\t -0.89800203 -0.22169299 0.38005799 -0.75633299 -0.17344201 0.63077599 -0.78623998\n\t\t 0.053438999 0.61560601 -0.75633299 -0.17344201 0.63077599 -0.89800203 -0.22169299\n\t\t 0.38005799 -0.800511 -0.459737 0.384478 -0.800511 -0.459737 0.384478 -0.66898203\n\t\t -0.38674 0.63474 -0.75633299 -0.17344201 0.63077599 -0.66898203 -0.38674 0.63474\n\t\t -0.800511 -0.459737 0.384478 -0.64719301 -0.66306299 0.376151 -0.64719301 -0.66306299\n\t\t 0.376151 -0.53097898 -0.56980002 0.62720698 -0.66898203 -0.38674 0.63474 -0.53097898\n\t\t -0.56980002 0.62720698 -0.64719301 -0.66306299 0.376151 -0.410054 -0.84201998 0.35051101\n\t\t -0.410054 -0.84201998 0.35051101 -0.31861901 -0.730901 0.60354501 -0.53097898 -0.56980002\n\t\t 0.62720698 -0.31861901 -0.730901 0.60354501 -0.410054 -0.84201998 0.35051101 -0.090061001\n\t\t -0.94819099 0.30467001 -0.090061001 -0.94819099 0.30467001 -0.031037999 -0.82631499\n\t\t 0.562352 -0.31861901 -0.730901 0.60354501 -0.031037999 -0.82631499 0.562352 -0.090061001\n\t\t -0.94819099 0.30467001 0.244882 -0.93787098 0.245828 0.244882 -0.93787098 0.245828\n\t\t 0.26994199 -0.81705898 0.50945598 -0.031037999 -0.82631499 0.562352 0.26994199 -0.81705898\n\t\t 0.50945598 0.244882 -0.93787098 0.245828 0.55441499 -0.81230402 0.181072 0.55441499\n\t\t -0.81230402 0.181072 0.54812503 -0.70420003 0.45128801 0.26994199 -0.81705898 0.50945598\n\t\t 0.54812503 -0.70420003 0.45128801 0.55441499 -0.81230402 0.181072 0.77496201 -0.61925501\n\t\t 0.12631699;\n\tsetAttr \".n[6474:6639]\" -type \"float3\"  0.77496201 -0.61925501 0.12631699 0.74584901\n\t\t -0.53044701 0.40290901 0.54812503 -0.70420003 0.45128801 0.74584901 -0.53044701 0.40290901\n\t\t 0.77496201 -0.61925501 0.12631699 0.84898603 -0.51794302 0.104681 0.84898603 -0.51794302\n\t\t 0.104681 0.81235898 -0.43904799 0.383809 0.74584901 -0.53044701 0.40290901 0.70425802\n\t\t -0.467491 0.53429699 0.74584901 -0.53044701 0.40290901 0.81235898 -0.43904799 0.383809\n\t\t 0.81235898 -0.43904799 0.383809 0.766469 -0.38381401 0.51498801 0.70425802 -0.467491\n\t\t 0.53429699 0.74584901 -0.53044701 0.40290901 0.70425802 -0.467491 0.53429699 0.52597499\n\t\t -0.62259901 0.57941401 0.52597499 -0.62259901 0.57941401 0.54812503 -0.70420003 0.45128801\n\t\t 0.74584901 -0.53044701 0.40290901 0.54812503 -0.70420003 0.45128801 0.52597499 -0.62259901\n\t\t 0.57941401 0.27403301 -0.724801 0.63211501 0.27403301 -0.724801 0.63211501 0.26994199\n\t\t -0.81705898 0.50945598 0.54812503 -0.70420003 0.45128801 0.26994199 -0.81705898 0.50945598\n\t\t 0.27403301 -0.724801 0.63211501 0.001374 -0.73320401 0.68000799 0.001374 -0.73320401\n\t\t 0.68000799 -0.031037999 -0.82631499 0.562352 0.26994199 -0.81705898 0.50945598 -0.031037999\n\t\t -0.82631499 0.562352 0.001374 -0.73320401 0.68000799 -0.25910401 -0.64678299 0.71731198\n\t\t -0.25910401 -0.64678299 0.71731198 -0.31861901 -0.730901 0.60354501 -0.031037999\n\t\t -0.82631499 0.562352 -0.31861901 -0.730901 0.60354501 -0.25910401 -0.64678299 0.71731198\n\t\t -0.450982 -0.50310898 0.73722202 -0.450982 -0.50310898 0.73722202 -0.53097898 -0.56980002\n\t\t 0.62720698 -0.31861901 -0.730901 0.60354501 -0.53097898 -0.56980002 0.62720698 -0.450982\n\t\t -0.50310898 0.73722202 -0.57851797 -0.33387801 0.74420601 -0.57851797 -0.33387801\n\t\t 0.74420601 -0.66898203 -0.38674 0.63474 -0.53097898 -0.56980002 0.62720698 -0.66898203\n\t\t -0.38674 0.63474 -0.57851797 -0.33387801 0.74420601 -0.65620399 -0.14417499 0.74068201\n\t\t -0.65620399 -0.14417499 0.74068201 -0.75633299 -0.17344201 0.63077599 -0.66898203\n\t\t -0.38674 0.63474 -0.75633299 -0.17344201 0.63077599 -0.65620399 -0.14417499 0.74068201\n\t\t -0.683869 0.065523997 0.72665697 -0.683869 0.065523997 0.72665697 -0.78623998 0.053438999\n\t\t 0.61560601 -0.75633299 -0.17344201 0.63077599 -0.78623998 0.053438999 0.61560601\n\t\t -0.683869 0.065523997 0.72665697 -0.64759701 0.30180901 0.699664 -0.64759701 0.30180901\n\t\t 0.699664 -0.74752897 0.31632799 0.58407003 -0.78623998 0.053438999 0.61560601 -0.74752897\n\t\t 0.31632799 0.58407003 -0.64759701 0.30180901 0.699664 -0.522035 0.544833 0.65622902\n\t\t -0.522035 0.544833 0.65622902 -0.608917 0.58465397 0.536098 -0.74752897 0.31632799\n\t\t 0.58407003 -0.608917 0.58465397 0.536098 -0.522035 0.544833 0.65622902 -0.35658601\n\t\t 0.70529699 0.61270201 -0.35658601 0.70529699 0.61270201 -0.39187101 0.78663999 0.47711101\n\t\t -0.608917 0.58465397 0.536098 -0.39187101 0.78663999 0.47711101 -0.35658601 0.70529699\n\t\t 0.61270201 -0.222763 0.79815 0.55976099 -0.222763 0.79815 0.55976099 -0.199746 0.89951003\n\t\t 0.388565 -0.39187101 0.78663999 0.47711101 0.428884 0.159126 -0.88923401 0.39757401\n\t\t 0.345691 -0.84996003 0.42202201 -0.054781999 -0.90492898 0.42202201 -0.054781999\n\t\t -0.90492898 0.47505799 -0.050264999 -0.87851799 0.428884 0.159126 -0.88923401 0.47505799\n\t\t -0.050264999 -0.87851799 0.42202201 -0.054781999 -0.90492898 0.396929 -0.250072 -0.88312602\n\t\t 0.396929 -0.250072 -0.88312602 0.447878 -0.261859 -0.85488898 0.47505799 -0.050264999\n\t\t -0.87851799 0.447878 -0.261859 -0.85488898 0.396929 -0.250072 -0.88312602 0.31255099\n\t\t -0.51062202 -0.80098498 0.31255099 -0.51062202 -0.80098498 0.35057199 -0.45024699\n\t\t -0.82120502 0.447878 -0.261859 -0.85488898 -0.173289 -0.964046 -0.20145801 0.15155999\n\t\t -0.95403999 -0.258531 0.15155999 -0.95403999 -0.258531 0.15155999 -0.95403999 -0.258531\n\t\t -0.173288 -0.96404099 -0.201488 -0.173289 -0.964046 -0.20145801 -0.48363701 -0.86106902\n\t\t -0.157021 -0.483614 -0.861081 -0.157024 -0.173289 -0.964046 -0.20145801 -0.173289\n\t\t -0.964046 -0.20145801 -0.173288 -0.96404099 -0.201488 -0.48363701 -0.86106902 -0.157021\n\t\t -0.74202198 -0.65754402 -0.130532 -0.74200702 -0.65756202 -0.13053 -0.483614 -0.861081\n\t\t -0.157024 -0.483614 -0.861081 -0.157024 -0.48363701 -0.86106902 -0.157021 -0.74202198\n\t\t -0.65754402 -0.130532 -0.91731101 -0.37797901 -0.12518901 -0.91729599 -0.378016 -0.125191\n\t\t -0.74200702 -0.65756202 -0.13053 -0.74200702 -0.65756202 -0.13053 -0.74202198 -0.65754402\n\t\t -0.130532 -0.91731101 -0.37797901 -0.12518901 -0.98831999 -0.056155 -0.14166801 -0.988316\n\t\t -0.056155 -0.141698 -0.91729599 -0.378016 -0.125191 -0.91729599 -0.378016 -0.125191\n\t\t -0.91731101 -0.37797901 -0.12518901 -0.98831999 -0.056155 -0.14166801 -0.946513 0.269115\n\t\t -0.17801701 -0.946513 0.269115 -0.17801701 -0.988316 -0.056155 -0.141698 -0.988316\n\t\t -0.056155 -0.141698 -0.98831999 -0.056155 -0.14166801 -0.946513 0.269115 -0.17801701\n\t\t -0.79691601 0.55868298 -0.22977901 -0.79694599 0.55865198 -0.229748 -0.946513 0.269115\n\t\t -0.17801701 -0.946513 0.269115 -0.17801701 -0.946513 0.269115 -0.17801701 -0.79691601\n\t\t 0.55868298 -0.22977901 -0.557594 0.77754903 -0.29069999 -0.55761498 0.77753597 -0.29069501\n\t\t -0.79694599 0.55865198 -0.229748 -0.79694599 0.55865198 -0.229748 -0.79691601 0.55868298\n\t\t -0.22977901 -0.557594 0.77754903 -0.29069999 -0.257402 0.89932001 -0.353508 -0.257402\n\t\t 0.89932001 -0.353508 -0.55761498 0.77753597 -0.29069501 -0.55761498 0.77753597 -0.29069501\n\t\t -0.557594 0.77754903 -0.29069999 -0.257402 0.89932001 -0.353508 0.067446999 0.909316\n\t\t -0.410604 0.067446999 0.909316 -0.410604 -0.257402 0.89932001 -0.353508 -0.257402\n\t\t 0.89932001 -0.353508 -0.257402 0.89932001 -0.353508 0.067446999 0.909316 -0.410604\n\t\t 0.377799 0.80635202 -0.455044;\n\tsetAttr \".n[6640:6805]\" -type \"float3\"  0.377799 0.80635202 -0.455044 0.067446999\n\t\t 0.909316 -0.410604 0.067446999 0.909316 -0.410604 0.067446999 0.909316 -0.410604\n\t\t 0.377799 0.80635202 -0.455044 0.60846198 0.63260299 -0.47915199 0.60696399 0.634157\n\t\t -0.47899801 0.377799 0.80635202 -0.455044 0.377799 0.80635202 -0.455044 0.377799\n\t\t 0.80635202 -0.455044 0.60846198 0.63260299 -0.47915199 0.756504 0.43623799 -0.48723501\n\t\t 0.75758499 0.43438399 -0.48721299 0.60696399 0.634157 -0.47899801 0.60696399 0.634157\n\t\t -0.47899801 0.60846198 0.63260299 -0.47915199 0.756504 0.43623799 -0.48723501 0.756504\n\t\t 0.43623799 -0.48723501 0.85152102 0.204236 -0.48290801 0.85099602 0.20627899 -0.48296499\n\t\t 0.85099602 0.20627899 -0.48296499 0.75758499 0.43438399 -0.48721299 0.756504 0.43623799\n\t\t -0.48723501 0.85152102 0.204236 -0.48290801 0.883587 -0.039064001 -0.466636 0.88359803\n\t\t -0.041230999 -0.46642801 0.88359803 -0.041230999 -0.46642801 0.85099602 0.20627899\n\t\t -0.48296499 0.85152102 0.204236 -0.48290801 0.84068799 -0.32384101 -0.434017 0.84068799\n\t\t -0.32384101 -0.434017 0.88359803 -0.041230999 -0.46642801 0.88359803 -0.041230999\n\t\t -0.46642801 0.883587 -0.039064001 -0.466636 0.84068799 -0.32384101 -0.434017 0.69111103\n\t\t -0.61340803 -0.38222399 0.69108701 -0.61341399 -0.38225901 0.84068799 -0.32384101\n\t\t -0.434017 0.84068799 -0.32384101 -0.434017 0.84068799 -0.32384101 -0.434017 0.69111103\n\t\t -0.61340803 -0.38222399 0.45175299 -0.83227301 -0.32131201 0.45171699 -0.83229399\n\t\t -0.32130799 0.69108701 -0.61341399 -0.38225901 0.69108701 -0.61341399 -0.38225901\n\t\t 0.69111103 -0.61340803 -0.38222399 0.45175299 -0.83227301 -0.32131201 0.15155999\n\t\t -0.95403999 -0.258531 0.15155999 -0.95403999 -0.258531 0.45171699 -0.83229399 -0.32130799\n\t\t 0.45171699 -0.83229399 -0.32130799 0.45175299 -0.83227301 -0.32131201 0.15155999\n\t\t -0.95403999 -0.258531 -0.169715 -0.087771997 -0.98157698 -0.169715 -0.087771997 -0.98157698\n\t\t -0.169715 -0.087771997 -0.98157698 -0.169686 -0.087742001 -0.98158401 -0.169715 -0.087771997\n\t\t -0.98157698 -0.169715 -0.087771997 -0.98157698 -0.169715 -0.087771997 -0.98157698\n\t\t -0.169715 -0.087771997 -0.98157698 -0.169686 -0.087742001 -0.98158401 -0.169745 -0.087771997\n\t\t -0.98157197 -0.169715 -0.087771997 -0.98157698 -0.169715 -0.087771997 -0.98157698\n\t\t -0.169715 -0.087771997 -0.98157698 -0.169686 -0.087711997 -0.98158699 -0.169745 -0.087771997\n\t\t -0.98157197 -0.169715 -0.087771997 -0.98157698 -0.169686 -0.087711997 -0.98158699\n\t\t -0.169715 -0.087771997 -0.98157698 -0.169715 -0.087771997 -0.98157698 -0.169715 -0.087771997\n\t\t -0.98157698 -0.169715 -0.087771997 -0.98157698 -0.169715 -0.087771997 -0.98157698\n\t\t -0.169715 -0.087771997 -0.98157698 -0.169715 -0.087771997 -0.98157698 -0.169715 -0.087771997\n\t\t -0.98157698 -0.17002 -0.087894 -0.98151302 -0.169715 -0.087771997 -0.98157698 -0.169715\n\t\t -0.087771997 -0.98157698 -0.169715 -0.087771997 -0.98157698 -0.169715 -0.087771997\n\t\t -0.98157698 -0.169716 -0.087742001 -0.98157901 -0.169715 -0.087771997 -0.98157698\n\t\t -0.169715 -0.087771997 -0.98157698 -0.169715 -0.087771997 -0.98157698 -0.169686 -0.087742001\n\t\t -0.98158401 -0.169716 -0.087742001 -0.98157901 -0.169715 -0.087771997 -0.98157698\n\t\t -0.169686 -0.087742001 -0.98158401 -0.169715 -0.087771997 -0.98157698 -0.169715 -0.087771997\n\t\t -0.98157698 -0.169745 -0.087771997 -0.98157197 -0.169715 -0.087771997 -0.98157698\n\t\t -0.169715 -0.087771997 -0.98157698 -0.169745 -0.087771997 -0.98157197 -0.169715 -0.087771997\n\t\t -0.98157698 -0.169715 -0.087771997 -0.98157698 -0.169745 -0.087771997 -0.98157197\n\t\t -0.169715 -0.087771997 -0.98157698 -0.169745 -0.087741002 -0.981574 -0.169745 -0.087771997\n\t\t -0.98157197 -0.169715 -0.087771997 -0.98157698 -0.169715 -0.087771997 -0.98157698\n\t\t -0.169716 -0.087742001 -0.98157901 -0.169745 -0.087741002 -0.981574 -0.169715 -0.087771997\n\t\t -0.98157698 -0.169716 -0.087742001 -0.98157901 -0.169715 -0.087771997 -0.98157698\n\t\t -0.205579 0.97863299 0.0038759999 -0.184275 0.97234201 0.143501 0.067323998 0.99714601\n\t\t 0.034180999 0.067323998 0.99714601 0.034180999 0.127021 0.990013 -0.061161 -0.205579\n\t\t 0.97863299 0.0038759999 0.127021 0.990013 -0.061161 0.067323998 0.99714601 0.034180999\n\t\t 0.36894 0.92010802 -0.131475 0.36894 0.92010802 -0.131475 0.41439101 0.89732897 -0.151925\n\t\t 0.127021 0.990013 -0.061161 0.52727401 0.83337897 -0.16571701 0.41439101 0.89732897\n\t\t -0.151925 0.36894 0.92010802 -0.131475 -0.184275 0.97234201 0.143501 -0.205579 0.97863299\n\t\t 0.0038759999 -0.52105403 0.85066003 0.069858 -0.52105403 0.85066003 0.069858 -0.48632199\n\t\t 0.84751499 0.212626 -0.184275 0.97234201 0.143501 -0.48632199 0.84751499 0.212626\n\t\t -0.52105403 0.85066003 0.069858 -0.77255601 0.62066299 0.133917 -0.77255601 0.62066299\n\t\t 0.133917 -0.733091 0.62185001 0.275462 -0.48632199 0.84751499 0.212626 -0.733091\n\t\t 0.62185001 0.275462 -0.77255601 0.62066299 0.133917 -0.92974401 0.31639501 0.188335\n\t\t -0.92974401 0.31639501 0.188335 -0.88732302 0.32329199 0.32884699 -0.733091 0.62185001\n\t\t 0.275462 -0.88732302 0.32329199 0.32884699 -0.92974401 0.31639501 0.188335 -0.97472101\n\t\t 0.018037001 0.222698 -0.97472101 0.018037001 0.222698 -0.93120098 0.030366 0.36323899\n\t\t -0.88732302 0.32329199 0.32884699 -0.93120098 0.030366 0.36323899 -0.97472101 0.018037001\n\t\t 0.222698 -0.94081497 -0.23942301 0.23988099 -0.94081497 -0.23942301 0.23988099 -0.89800203\n\t\t -0.22169299 0.38005799 -0.93120098 0.030366 0.36323899 -0.89800203 -0.22169299 0.38005799\n\t\t -0.94081497 -0.23942301 0.23988099 -0.84165502 -0.48156101 0.24436601 -0.84165502\n\t\t -0.48156101 0.24436601 -0.800511 -0.459737 0.384478 -0.89800203 -0.22169299 0.38005799\n\t\t -0.800511 -0.459737 0.384478 -0.84165502 -0.48156101 0.24436601 -0.68502897 -0.68927199\n\t\t 0.235881 -0.68502897 -0.68927199 0.235881 -0.64719301 -0.66306299 0.376151;\n\tsetAttr \".n[6806:6971]\" -type \"float3\"  -0.800511 -0.459737 0.384478 -0.64719301\n\t\t -0.66306299 0.376151 -0.68502897 -0.68927199 0.235881 -0.44332001 -0.87132102 0.210399\n\t\t -0.44332001 -0.87132102 0.210399 -0.410054 -0.84201998 0.35051101 -0.64719301 -0.66306299\n\t\t 0.376151 -0.410054 -0.84201998 0.35051101 -0.44332001 -0.87132102 0.210399 -0.117162\n\t\t -0.97953302 0.163673 -0.117162 -0.97953302 0.163673 -0.090061001 -0.94819099 0.30467001\n\t\t -0.410054 -0.84201998 0.35051101 -0.090061001 -0.94819099 0.30467001 -0.117162 -0.97953302\n\t\t 0.163673 0.22419301 -0.96900803 0.103734 0.22419301 -0.96900803 0.103734 0.244882\n\t\t -0.93787098 0.245828 -0.090061001 -0.94819099 0.30467001 0.244882 -0.93787098 0.245828\n\t\t 0.22419301 -0.96900803 0.103734 0.53964198 -0.84104902 0.037721999 0.53964198 -0.84104902\n\t\t 0.037721999 0.55441499 -0.81230402 0.181072 0.244882 -0.93787098 0.245828 0.55441499\n\t\t -0.81230402 0.181072 0.53964198 -0.84104902 0.037721999 0.76426703 -0.64463001 -0.018678\n\t\t 0.76426703 -0.64463001 -0.018678 0.77496201 -0.61925501 0.12631699 0.55441499 -0.81230402\n\t\t 0.181072 0.77496201 -0.61925501 0.12631699 0.76426703 -0.64463001 -0.018678 0.83988798\n\t\t -0.54119599 -0.041170001 0.83988798 -0.54119599 -0.041170001 0.84898603 -0.51794302\n\t\t 0.104681 0.77496201 -0.61925501 0.12631699 0.169716 0.087742001 0.98157901 0.169715\n\t\t 0.087771997 0.98157698 0.169715 0.087771997 0.98157698 0.169715 0.087771997 0.98157698\n\t\t 0.169716 0.087711997 0.98158199 0.169716 0.087742001 0.98157901 0.169716 0.087742001\n\t\t 0.98157901 0.169716 0.087711997 0.98158199 0.169716 0.087742001 0.98157901 0.169716\n\t\t 0.087742001 0.98157901 0.169716 0.087742001 0.98157901 0.169716 0.087742001 0.98157901\n\t\t 0.169715 0.087771997 0.98157698 0.169716 0.087742001 0.98157901 0.169716 0.087742001\n\t\t 0.98157901 0.169716 0.087742001 0.98157901 0.169715 0.087771997 0.98157698 0.169715\n\t\t 0.087771997 0.98157698 0.16968501 0.087773003 0.98158199 0.169715 0.087771997 0.98157698\n\t\t 0.169715 0.087771997 0.98157698 0.169715 0.087771997 0.98157698 0.16968501 0.087773003\n\t\t 0.98158199 0.16968501 0.087773003 0.98158199 0.16981 0.087742999 0.98156297 0.16968501\n\t\t 0.087773003 0.98158199 0.16968501 0.087773003 0.98158199 0.16968501 0.087773003 0.98158199\n\t\t 0.16981 0.087742999 0.98156297 0.16981 0.087742999 0.98156297 0.169745 0.087741002\n\t\t 0.981574 0.16981 0.087742999 0.98156297 0.16981 0.087742999 0.98156297 0.16981 0.087742999\n\t\t 0.98156297 0.169716 0.087742001 0.98157901 0.169745 0.087741002 0.981574 0.169745\n\t\t 0.087771997 0.98157197 0.169715 0.087771997 0.98157698 0.169715 0.087771997 0.98157698\n\t\t 0.169715 0.087771997 0.98157698 0.169745 0.087771997 0.98157197 0.169745 0.087771997\n\t\t 0.98157197 0.169715 0.087771997 0.98157698 0.169745 0.087741002 0.981574 0.169716\n\t\t 0.087742001 0.98157901 0.169716 0.087742001 0.98157901 0.169715 0.087802999 0.981574\n\t\t 0.169715 0.087771997 0.98157698 0.169716 0.087711997 0.98158199 0.169715 0.087771997\n\t\t 0.98157698 0.169716 0.087742001 0.98157901 0.169716 0.087742001 0.98157901 0.169686\n\t\t 0.087711997 0.98158699 0.169716 0.087711997 0.98158199 0.169716 0.087742001 0.98157901\n\t\t 0.169716 0.087711997 0.98158199 0.169686 0.087711997 0.98158699 0.169686 0.087711997\n\t\t 0.98158699 0.169716 0.087742001 0.98157901 0.169716 0.087742001 0.98157901 0.169715\n\t\t 0.087802999 0.981574 0.169716 0.087742001 0.98157901 0.169716 0.087742001 0.98157901\n\t\t 0.169716 0.087742001 0.98157901 0.169715 0.087802999 0.981574 0.169715 0.087802999\n\t\t 0.981574 0.169715 0.087771997 0.98157698 0.169715 0.087802999 0.981574 0.169715 0.087802999\n\t\t 0.981574 0.169715 0.087802999 0.981574 0.169715 0.087771997 0.98157698 0.169715 0.087771997\n\t\t 0.98157698 0.169715 0.087771997 0.98157698 0.169715 0.087771997 0.98157698 0.169745\n\t\t 0.087771997 0.98157197 0.169745 0.087771997 0.98157197 0.169745 0.087741002 0.981574\n\t\t 0.169715 0.087771997 0.98157698 0.169715 0.087771997 0.98157698 0.169716 0.087742001\n\t\t 0.98157901 0.169715 0.087771997 0.98157698 0.169715 0.087771997 0.98157698 0.169744\n\t\t 0.087802 0.98156899 0.169715 0.087771997 0.98157698 -0.169715 -0.087802999 -0.981574\n\t\t -0.169716 -0.087742001 -0.98157901 -0.169716 -0.087742001 -0.98157901 -0.169716 -0.087742001\n\t\t -0.98157901 -0.169715 -0.087802999 -0.981574 -0.169715 -0.087802999 -0.981574 -0.169715\n\t\t -0.087802999 -0.981574 -0.169715 -0.087802999 -0.981574 -0.169716 -0.087711997 -0.98158199\n\t\t -0.169716 -0.087711997 -0.98158199 -0.169716 -0.087711997 -0.98158199 -0.169715 -0.087802999\n\t\t -0.981574 -0.169715 -0.087771997 -0.98157698 -0.169716 -0.087711997 -0.98158199 -0.169716\n\t\t -0.087711997 -0.98158199 -0.169715 -0.087771997 -0.98157698 -0.169715 -0.087771997\n\t\t -0.98157698 -0.169716 -0.087711997 -0.98158199 -0.169715 -0.087771997 -0.98157698\n\t\t -0.169715 -0.087771997 -0.98157698 -0.169715 -0.087771997 -0.98157698 -0.169715 -0.087771997\n\t\t -0.98157698 -0.16968501 -0.087773003 -0.98158199 -0.169715 -0.087771997 -0.98157698\n\t\t -0.169716 -0.087742001 -0.98157901 -0.169716 -0.087742001 -0.98157901 -0.169715 -0.087771997\n\t\t -0.98157698 -0.169715 -0.087771997 -0.98157698 -0.169715 -0.087771997 -0.98157698\n\t\t -0.169716 -0.087742001 -0.98157901 -0.169715 -0.087771997 -0.98157698 -0.169715 -0.087771997\n\t\t -0.98157698 -0.16968501 -0.087802999 -0.98157901 -0.16968501 -0.087802999 -0.98157901\n\t\t -0.169655 -0.087802999 -0.98158401 -0.169715 -0.087771997 -0.98157698 -0.169655 -0.087802999\n\t\t -0.98158401 -0.16968501 -0.087802999 -0.98157901 -0.169626 -0.087774001 -0.981592\n\t\t -0.169626 -0.087774001 -0.981592 -0.169626 -0.087774001 -0.981592 -0.169655 -0.087802999\n\t\t -0.98158401 -0.169626 -0.087774001 -0.981592 -0.169626 -0.087774001 -0.981592 -0.169715\n\t\t -0.087771997 -0.98157698;\n\tsetAttr \".n[6972:7137]\" -type \"float3\"  -0.169715 -0.087771997 -0.98157698 -0.169715\n\t\t -0.087771997 -0.98157698 -0.169626 -0.087774001 -0.981592 -0.169745 -0.087771997\n\t\t -0.98157197 -0.169715 -0.087771997 -0.98157698 -0.169715 -0.087771997 -0.98157698\n\t\t -0.169715 -0.087771997 -0.98157698 -0.169745 -0.087771997 -0.98157197 -0.169745 -0.087771997\n\t\t -0.98157197 -0.169745 -0.087771997 -0.98157197 -0.169745 -0.087771997 -0.98157197\n\t\t -0.169745 -0.087771997 -0.98157197 -0.169745 -0.087771997 -0.98157197 -0.16975001\n\t\t -0.087774001 -0.98157001 -0.169745 -0.087771997 -0.98157197 -0.169745 -0.087771997\n\t\t -0.98157197 -0.16975001 -0.087774001 -0.98157001 -0.169716 -0.087742001 -0.98157901\n\t\t -0.169716 -0.087742001 -0.98157901 -0.169716 -0.087742001 -0.98157901 -0.169745 -0.087771997\n\t\t -0.98157197 -0.169716 -0.087742001 -0.98157901 -0.169716 -0.087742001 -0.98157901\n\t\t -0.169716 -0.087742001 -0.98157901 -0.169716 -0.087742001 -0.98157901 -0.169715 -0.087771997\n\t\t -0.98157698 -0.169716 -0.087742001 -0.98157901 -0.169715 -0.087771997 -0.98157698\n\t\t -0.169716 -0.087742001 -0.98157901 -0.169715 -0.087802999 -0.981574 -0.169715 -0.087802999\n\t\t -0.981574 -0.169715 -0.087802999 -0.981574 -0.169715 -0.087771997 -0.98157698 -0.169715\n\t\t -0.087802999 -0.981574 -0.169715 -0.087802999 -0.981574 -0.169715 -0.087802999 -0.981574\n\t\t -0.169715 -0.087802999 -0.981574 -0.169715 -0.087771997 -0.98157698 -0.169715 -0.087802999\n\t\t -0.981574 -0.169715 -0.087771997 -0.98157698 -0.169715 -0.087802999 -0.981574 -0.169715\n\t\t -0.087771997 -0.98157698 -0.169715 -0.087771997 -0.98157698 -0.169715 -0.087771997\n\t\t -0.98157698 -0.169715 -0.087771997 -0.98157698 -0.169715 -0.087771997 -0.98157698\n\t\t -0.169715 -0.087771997 -0.98157698 -0.169745 -0.087771997 -0.98157197 -0.169745 -0.087771997\n\t\t -0.98157197 -0.169745 -0.087741002 -0.981574 -0.169715 -0.087771997 -0.98157698 -0.169745\n\t\t -0.087771997 -0.98157197 -0.169745 -0.087741002 -0.981574 -0.169745 -0.087771997\n\t\t -0.98157197 -0.169745 -0.087771997 -0.98157197 -0.169715 -0.087802999 -0.981574 -0.169745\n\t\t -0.087771997 -0.98157197 -0.123602 -0.024812 0.99202198 -0.116735 0.11118 0.98692\n\t\t -0.141702 0.040681999 0.98907298 -0.123602 -0.024812 0.99202198 -0.141702 0.040681999\n\t\t 0.98907298 -0.035340998 -0.087679997 0.99552202 -0.123602 -0.024812 0.99202198 -0.035340998\n\t\t -0.087679997 0.99552202 0.059512999 -0.10227 0.992975 -0.53455102 0.49414301 0.68562299\n\t\t -0.55037802 0.49440601 0.67278999 -0.53736502 0.49420899 0.68337202 -0.53736502 0.49420899\n\t\t 0.68337202 -0.52291203 0.49382699 0.69476402 -0.53455102 0.49414301 0.68562299 -0.663692\n\t\t 0.71264303 0.227273 -0.71494001 0.6832 0.14865801 -0.65793198 0.74842 0.083622001\n\t\t -0.65793198 0.74842 0.083622001 -0.61523998 0.76389998 0.194775 -0.663692 0.71264303\n\t\t 0.227273 -0.61523998 0.76389998 0.194775 -0.65793198 0.74842 0.083622001 -0.62134802\n\t\t 0.78352898 0.002991 -0.62134802 0.78352898 0.002991 -0.58444703 0.80672002 0.087315999\n\t\t -0.61523998 0.76389998 0.194775 -0.58444703 0.80672002 0.087315999 -0.62134802 0.78352898\n\t\t 0.002991 -0.55289501 0.83190501 0.047336001 -0.55289501 0.83190501 0.047336001 -0.52095801\n\t\t 0.85068399 0.070285 -0.58444703 0.80672002 0.087315999 0.300982 -0.60382402 0.73811001\n\t\t 0.340565 -0.60858601 0.71668601 0.29814601 -0.603432 0.73957998 0.29814601 -0.603432\n\t\t 0.73957998 0.26048201 -0.597781 0.75816 0.300982 -0.60382402 0.73811001 0.36338899\n\t\t -0.90070403 0.238078 0.41243601 -0.88883901 0.19965599 0.35084301 -0.92862302 0.120701\n\t\t 0.35084301 -0.92862302 0.120701 0.31743199 -0.93511301 0.15748 0.36338899 -0.90070403\n\t\t 0.238078 0.31743199 -0.93511301 0.15748 0.35084301 -0.92862302 0.120701 0.317707\n\t\t -0.948084 0.0141 0.317707 -0.948084 0.0141 0.28672799 -0.95720398 0.039338998 0.31743199\n\t\t -0.93511301 0.15748 0.28672799 -0.95720398 0.039338998 0.317707 -0.948084 0.0141\n\t\t 0.240061 -0.97010201 0.035677001 0.240061 -0.97010201 0.035677001 0.21516 -0.975299\n\t\t 0.049989998 0.28672799 -0.95720398 0.039338998 -0.94688499 -0.29734799 0.122443 -0.91218698\n\t\t -0.409751 -0.0043029999 -0.91580701 -0.40010101 -0.034883 -0.91580701 -0.40010101\n\t\t -0.034883 -0.88207501 -0.45565701 0.119667 -0.94688499 -0.29734799 0.122443 -0.90881401\n\t\t -0.41549501 -0.037691999 -0.91580701 -0.40010101 -0.034883 -0.91218698 -0.409751\n\t\t -0.0043029999 -0.90881401 -0.41549501 -0.037691999 -0.88591802 -0.45733401 -0.077427998\n\t\t -0.91580701 -0.40010101 -0.034883 -0.88591802 -0.45733401 -0.077427998 -0.88636202\n\t\t -0.456503 -0.077243 -0.91580701 -0.40010101 -0.034883 -0.90881401 -0.41549501 -0.037691999\n\t\t -0.91218698 -0.409751 -0.0043029999 -0.90483898 -0.42574599 -0.002564 -0.90881401\n\t\t -0.41549501 -0.037691999 -0.90483898 -0.42574599 -0.002564 -0.90434098 -0.42680901\n\t\t 0.001282 -0.90881401 -0.41549501 -0.037691999 -0.90434098 -0.42680901 0.001282 -0.90363199\n\t\t -0.42820999 0.0092470003 -0.55236501 -0.83249998 0.042849001 -0.45717201 -0.85370302\n\t\t 0.249369 -0.67499799 -0.62128401 0.39797401 -0.67499799 -0.62128401 0.39797401 -0.7881\n\t\t -0.58075202 0.20402201 -0.55236501 -0.83249998 0.042849001 -0.89624798 -0.25284901\n\t\t 0.36442599 -0.7881 -0.58075202 0.20402201 -0.67499799 -0.62128401 0.39797401 -0.67499799\n\t\t -0.62128401 0.39797401 -0.77473903 -0.31859401 0.546148 -0.89624798 -0.25284901 0.36442599\n\t\t -0.15518799 -0.98032498 0.121984 -0.45717201 -0.85370302 0.249369 -0.55236501 -0.83249998\n\t\t 0.042849001 -0.55236501 -0.83249998 0.042849001 -0.225017 -0.96971202 -0.095005997\n\t\t -0.15518799 -0.98032498 0.121984 -0.15518799 -0.98032498 0.121984 -0.225017 -0.96971202\n\t\t -0.095005997 0.14408 -0.97150898 -0.18818 0.14408 -0.97150898 -0.18818 0.185525 -0.98197901\n\t\t 0.036013 -0.15518799 -0.98032498 0.121984 -0.89624798 -0.25284901 0.36442599 -0.77473903\n\t\t -0.31859401 0.546148 -0.74182898 0.0084539996 0.67053598 -0.74182898 0.0084539996\n\t\t 0.67053598;\n\tsetAttr \".n[7138:7303]\" -type \"float3\"  -0.860488 0.101323 0.49929401 -0.89624798\n\t\t -0.25284901 0.36442599 -0.68610001 0.42787701 0.588377 -0.860488 0.101323 0.49929401\n\t\t -0.74182898 0.0084539996 0.67053598 -0.74182898 0.0084539996 0.67053598 -0.58084297\n\t\t 0.30980101 0.75275803 -0.68610001 0.42787701 0.588377 -0.68610001 0.42787701 0.588377\n\t\t -0.58084297 0.30980101 0.75275803 -0.31651899 0.539891 0.77995801 -0.31651899 0.539891\n\t\t 0.77995801 -0.39980701 0.67704701 0.61786902 -0.68610001 0.42787701 0.588377 -0.045047\n\t\t 0.810929 0.583408 -0.39980701 0.67704701 0.61786902 -0.31651899 0.539891 0.77995801\n\t\t -0.31651899 0.539891 0.77995801 0.010926 0.66343302 0.74815601 -0.045047 0.810929\n\t\t 0.583408 -0.045047 0.810929 0.583408 0.010926 0.66343302 0.74815601 0.35167599 0.66163301\n\t\t 0.66224301 0.35167599 0.66163301 0.66224301 0.32402501 0.80910301 0.49026501 -0.045047\n\t\t 0.810929 0.583408 0.65142602 0.67187399 0.35246301 0.32402501 0.80910301 0.49026501\n\t\t 0.35167599 0.66163301 0.66224301 0.35167599 0.66163301 0.66224301 0.653844 0.53491098\n\t\t 0.535124 0.65142602 0.67187399 0.35246301 0.65142602 0.67187399 0.35246301 0.653844\n\t\t 0.53491098 0.535124 0.87143803 0.30268699 0.38597301 0.87143803 0.30268699 0.38597301\n\t\t 0.88709801 0.420187 0.19104899 0.65142602 0.67187399 0.35246301 0.99526 0.092260003\n\t\t 0.030763 0.88709801 0.420187 0.19104899 0.87143803 0.30268699 0.38597301 0.87143803\n\t\t 0.30268699 0.38597301 0.97124499 -2.9999999e-05 0.23808099 0.99526 0.092260003 0.030763\n\t\t 0.99526 0.092260003 0.030763 0.97124499 -2.9999999e-05 0.23808099 0.93818998 -0.32698199\n\t\t 0.113501 0.93818998 -0.32698199 0.113501 0.95944899 -0.261942 -0.10413 0.99526 0.092260003\n\t\t 0.030763 0.78511202 -0.58844399 -0.19321799 0.95944899 -0.261942 -0.10413 0.93818998\n\t\t -0.32698199 0.113501 0.93818998 -0.32698199 0.113501 0.77729702 -0.62836301 0.031129999\n\t\t 0.78511202 -0.58844399 -0.19321799 0.78511202 -0.58844399 -0.19321799 0.77729702\n\t\t -0.62836301 0.031129999 0.51296097 -0.85840303 0.0040290002 0.51296097 -0.85840303\n\t\t 0.0040290002 0.498835 -0.83759701 -0.222698 0.78511202 -0.58844399 -0.19321799 0.14408\n\t\t -0.97150898 -0.18818 0.498835 -0.83759701 -0.222698 0.51296097 -0.85840303 0.0040290002\n\t\t 0.51296097 -0.85840303 0.0040290002 0.185525 -0.98197901 0.036013 0.14408 -0.97150898\n\t\t -0.18818 0.46133199 -0.77763498 -0.42715001 0.498835 -0.83759701 -0.222698 0.14408\n\t\t -0.97150898 -0.18818 0.78511202 -0.58844399 -0.19321799 0.498835 -0.83759701 -0.222698\n\t\t 0.46133199 -0.77763498 -0.42715001 0.14408 -0.97150898 -0.18818 0.097785003 -0.91482198\n\t\t -0.39184001 0.46133199 -0.77763498 -0.42715001 -0.28049901 -0.912974 -0.29630801\n\t\t 0.097785003 -0.91482198 -0.39184001 0.14408 -0.97150898 -0.18818 0.14408 -0.97150898\n\t\t -0.18818 -0.225017 -0.96971202 -0.095005997 -0.28049901 -0.912974 -0.29630801 0.46133199\n\t\t -0.77763498 -0.42715001 0.75480002 -0.52227402 -0.396871 0.78511202 -0.58844399 -0.19321799\n\t\t 0.78511202 -0.58844399 -0.19321799 0.75480002 -0.52227402 -0.396871 0.933474 -0.187573\n\t\t -0.30568501 0.933474 -0.187573 -0.30568501 0.95944899 -0.261942 -0.10413 0.78511202\n\t\t -0.58844399 -0.19321799 0.99526 0.092260003 0.030763 0.95944899 -0.261942 -0.10413\n\t\t 0.933474 -0.187573 -0.30568501 0.933474 -0.187573 -0.30568501 0.97015601 0.175396\n\t\t -0.16743 0.99526 0.092260003 0.030763 0.99526 0.092260003 0.030763 0.97015601 0.175396\n\t\t -0.16743 0.85930902 0.51144701 -0.003083 0.85930902 0.51144701 -0.003083 0.88709801\n\t\t 0.420187 0.19104899 0.99526 0.092260003 0.030763 0.65142602 0.67187399 0.35246301\n\t\t 0.88709801 0.420187 0.19104899 0.85930902 0.51144701 -0.003083 0.85930902 0.51144701\n\t\t -0.003083 0.61771297 0.76948601 0.162241 0.65142602 0.67187399 0.35246301 0.65142602\n\t\t 0.67187399 0.35246301 0.61771297 0.76948601 0.162241 0.28224501 0.91009402 0.303426\n\t\t 0.28224501 0.91009402 0.303426 0.32402501 0.80910301 0.49026501 0.65142602 0.67187399\n\t\t 0.35246301 -0.045047 0.810929 0.583408 0.32402501 0.80910301 0.49026501 0.28224501\n\t\t 0.91009402 0.303426 0.28224501 0.91009402 0.303426 -0.095954001 0.911924 0.39898199\n\t\t -0.045047 0.810929 0.583408 -0.045047 0.810929 0.583408 -0.095954001 0.911924 0.39898199\n\t\t -0.45953101 0.77470499 0.43435299 -0.45953101 0.77470499 0.43435299 -0.39980701 0.67704701\n\t\t 0.61786902 -0.045047 0.810929 0.583408 -0.68610001 0.42787701 0.588377 -0.39980701\n\t\t 0.67704701 0.61786902 -0.45953101 0.77470499 0.43435299 -0.45953101 0.77470499 0.43435299\n\t\t -0.75297898 0.51932102 0.40414 -0.68610001 0.42787701 0.588377 -0.68610001 0.42787701\n\t\t 0.588377 -0.75297898 0.51932102 0.40414 -0.93166602 0.18461201 0.31291601 -0.93166602\n\t\t 0.18461201 0.31291601 -0.860488 0.101323 0.49929401 -0.68610001 0.42787701 0.588377\n\t\t -0.860488 0.101323 0.49929401 -0.93166602 0.18461201 0.31291601 -0.96837902 -0.17826401\n\t\t 0.17454 -0.96837902 -0.17826401 0.17454 -0.89624798 -0.25284901 0.36442599 -0.860488\n\t\t 0.101323 0.49929401 -0.89624798 -0.25284901 0.36442599 -0.96837902 -0.17826401 0.17454\n\t\t -0.85751301 -0.51436102 0.010224 -0.85751301 -0.51436102 0.010224 -0.7881 -0.58075202\n\t\t 0.20402201 -0.89624798 -0.25284901 0.36442599 -0.55236501 -0.83249998 0.042849001\n\t\t -0.7881 -0.58075202 0.20402201 -0.85751301 -0.51436102 0.010224 -0.85751301 -0.51436102\n\t\t 0.010224 -0.615964 -0.77234298 -0.155158 -0.55236501 -0.83249998 0.042849001 -0.55236501\n\t\t -0.83249998 0.042849001 -0.615964 -0.77234298 -0.155158 -0.28049901 -0.912974 -0.29630801\n\t\t -0.28049901 -0.912974 -0.29630801 -0.225017 -0.96971202 -0.095005997 -0.55236501\n\t\t -0.83249998 0.042849001 0.226091 -0.366725 0.902439 0.22618 -0.36669099 0.90243;\n\tsetAttr \".n[7304:7469]\" -type \"float3\"  0.22618 -0.36669099 0.90243 0.22618 -0.36669099\n\t\t 0.90243 0.22608399 -0.36671501 0.90244401 0.226091 -0.366725 0.902439 0.22615001\n\t\t -0.366631 0.90246201 0.226091 -0.366725 0.902439 0.22608399 -0.36671501 0.90244401\n\t\t 0.22608399 -0.36671501 0.90244401 0.22615001 -0.366631 0.90246201 0.22615001 -0.366631\n\t\t 0.90246201 0.226146 -0.36674699 0.90241599 0.22615001 -0.366631 0.90246201 0.22615001\n\t\t -0.366631 0.90246201 0.22615001 -0.366631 0.90246201 0.22614799 -0.36671999 0.902426\n\t\t 0.226146 -0.36674699 0.90241599 0.226117 -0.366597 0.902484 0.226146 -0.36674699\n\t\t 0.90241599 0.22614799 -0.36671999 0.902426 0.22614799 -0.36671999 0.902426 0.22614899\n\t\t -0.366568 0.90248799 0.226117 -0.366597 0.902484 0.226117 -0.366597 0.902484 0.226117\n\t\t -0.366597 0.902484 0.22614899 -0.366568 0.90248799 0.22614899 -0.366568 0.90248799\n\t\t 0.226117 -0.366597 0.902484 0.226117 -0.366597 0.902484 0.22596399 -0.36662599 0.902511\n\t\t 0.226117 -0.366597 0.902484 0.226117 -0.366597 0.902484 0.226117 -0.366597 0.902484\n\t\t 0.22599301 -0.36662301 0.90250498 0.22596399 -0.36662599 0.902511 0.225996 -0.36666\n\t\t 0.90248901 0.22596399 -0.36662599 0.902511 0.22599301 -0.36662301 0.90250498 0.22599301\n\t\t -0.36662301 0.90250498 0.226054 -0.36665499 0.90247601 0.225996 -0.36666 0.90248901\n\t\t 0.226179 -0.36662799 0.90245599 0.225996 -0.36666 0.90248901 0.226054 -0.36665499\n\t\t 0.90247601 0.226054 -0.36665499 0.90247601 0.226179 -0.36662799 0.90245599 0.226179\n\t\t -0.36662799 0.90245599 0.226151 -0.366694 0.90243602 0.226179 -0.36662799 0.90245599\n\t\t 0.226179 -0.36662799 0.90245599 0.226179 -0.36662799 0.90245599 0.226145 -0.36668399\n\t\t 0.90244198 0.226151 -0.366694 0.90243602 0.22617599 -0.36665499 0.90244597 0.226151\n\t\t -0.366694 0.90243602 0.226145 -0.36668399 0.90244198 0.226145 -0.36668399 0.90244198\n\t\t 0.22617599 -0.36665499 0.90244597 0.22617599 -0.36665499 0.90244597 0.226115 -0.36662301\n\t\t 0.90247399 0.22617599 -0.36665499 0.90244597 0.22617599 -0.36665499 0.90244597 0.22617599\n\t\t -0.36665499 0.90244597 0.226147 -0.36665699 0.90245199 0.226115 -0.36662301 0.90247399\n\t\t 0.226087 -0.366689 0.90245402 0.226115 -0.36662301 0.90247399 0.226147 -0.36665699\n\t\t 0.90245199 0.226147 -0.36665699 0.90245199 0.226119 -0.366723 0.90243298 0.226087\n\t\t -0.366689 0.90245402 0.226114 -0.36677599 0.902412 0.226087 -0.366689 0.90245402\n\t\t 0.226119 -0.366723 0.90243298 0.226119 -0.366723 0.90243298 0.22615001 -0.36678299\n\t\t 0.90240002 0.226114 -0.36677599 0.902412 0.226179 -0.366781 0.902394 0.226114 -0.36677599\n\t\t 0.902412 0.22615001 -0.36678299 0.90240002 0.22615001 -0.36678299 0.90240002 0.226143\n\t\t -0.36677301 0.90240598 0.226179 -0.366781 0.902394 0.226116 -0.36668599 0.902448\n\t\t 0.226179 -0.366781 0.902394 0.226143 -0.36677301 0.90240598 0.226143 -0.36677301\n\t\t 0.90240598 0.226089 -0.366662 0.90246499 0.226116 -0.36668599 0.902448 0.22618 -0.36669099\n\t\t 0.90243 0.226116 -0.36668599 0.902448 0.226089 -0.366662 0.90246499 0.226089 -0.366662\n\t\t 0.90246499 0.22618 -0.36669099 0.90243 0.22618 -0.36669099 0.90243 0.98458898 0.146128\n\t\t -0.096074998 0.94804603 -0.215739 -0.233807 0.95638901 -0.29191801 -0.010193 0.95638901\n\t\t -0.29191801 -0.010193 0.99124098 0.052829001 0.12104 0.98458898 0.146128 -0.096074998\n\t\t 0.87410402 0.48101601 0.067570001 0.98458898 0.146128 -0.096074998 0.99124098 0.052829001\n\t\t 0.12104 0.99124098 0.052829001 0.12104 0.885984 0.371759 0.277179 0.87410402 0.48101601\n\t\t 0.067570001 0.633394 0.73810601 0.232403 0.87410402 0.48101601 0.067570001 0.885984\n\t\t 0.371759 0.277179 0.885984 0.371759 0.277179 0.65671402 0.61679602 0.43392301 0.633394\n\t\t 0.73810601 0.232403 0.29909199 0.87823302 0.37316301 0.633394 0.73810601 0.232403\n\t\t 0.65671402 0.61679602 0.43392301 0.65671402 0.61679602 0.43392301 0.33824399 0.75022399\n\t\t 0.568115 0.29909199 0.87823302 0.37316301 -0.078006998 0.88017499 0.468196 0.29909199\n\t\t 0.87823302 0.37316301 0.33824399 0.75022399 0.568115 0.33824399 0.75022399 0.568115\n\t\t -0.020966999 0.75193101 0.65890801 -0.078006998 0.88017499 0.468196 0.78676599 -0.60959899\n\t\t -0.096900001 0.95638901 -0.29191801 -0.010193 0.94804603 -0.215739 -0.233807 0.94804603\n\t\t -0.215739 -0.233807 0.770006 -0.54916698 -0.32481799 0.78676599 -0.60959899 -0.096900001\n\t\t 0.50814903 -0.852072 -0.125526 0.78676599 -0.60959899 -0.096900001 0.770006 -0.54916698\n\t\t -0.32481799 0.770006 -0.54916698 -0.32481799 0.47749999 -0.80365598 -0.355149 0.50814903\n\t\t -0.852072 -0.125526 0.162973 -0.98232502 -0.092077002 0.50814903 -0.852072 -0.125526\n\t\t 0.47749999 -0.80365598 -0.355149 0.47749999 -0.80365598 -0.355149 0.11512 -0.94036698\n\t\t -0.32008901 0.162973 -0.98232502 -0.092077002 -0.196174 -0.98056799 -0.001312 0.162973\n\t\t -0.98232502 -0.092077002 0.11512 -0.94036698 -0.32008901 0.11512 -0.94036698 -0.32008901\n\t\t -0.26185501 -0.93858898 -0.224683 -0.196174 -0.98056799 -0.001312 -0.51463699 -0.84707803\n\t\t 0.132695 -0.196174 -0.98056799 -0.001312 -0.26185501 -0.93858898 -0.224683 -0.26185501\n\t\t -0.93858898 -0.224683 -0.59619403 -0.79841602 -0.084172003 -0.51463699 -0.84707803\n\t\t 0.132695 -0.74397302 -0.60211903 0.28975201 -0.51463699 -0.84707803 0.132695 -0.59619403\n\t\t -0.79841602 -0.084172003 -0.59619403 -0.79841602 -0.084172003 -0.83695799 -0.54125798\n\t\t 0.080876 -0.74397302 -0.60211903 0.28975201 -0.84916002 -0.28309399 0.44585201 -0.74397302\n\t\t -0.60211903 0.28975201 -0.83695799 -0.54125798 0.080876 -0.83695799 -0.54125798 0.080876\n\t\t -0.947375 -0.20640101 0.244702 -0.84916002 -0.28309399 0.44585201;\n\tsetAttr \".n[7470:7635]\" -type \"float3\"  -0.814399 0.061648 0.57702202 -0.84916002\n\t\t -0.28309399 0.44585201 -0.947375 -0.20640101 0.244702 -0.947375 -0.20640101 0.244702\n\t\t -0.91084802 0.155312 0.382406 -0.814399 0.061648 0.57702202 -0.64477098 0.37934801\n\t\t 0.66360098 -0.814399 0.061648 0.57702202 -0.91084802 0.155312 0.382406 -0.91084802\n\t\t 0.155312 0.382406 -0.73274398 0.48895401 0.473297 -0.64477098 0.37934801 0.66360098\n\t\t -0.36616999 0.62173802 0.69235897 -0.64477098 0.37934801 0.66360098 -0.73274398 0.48895401\n\t\t 0.473297 -0.73274398 0.48895401 0.473297 -0.44030601 0.74345702 0.50339001 -0.36616999\n\t\t 0.62173802 0.69235897 -0.020966999 0.75193101 0.65890801 -0.36616999 0.62173802 0.69235897\n\t\t -0.44030601 0.74345702 0.50339001 -0.44030601 0.74345702 0.50339001 -0.078006998\n\t\t 0.88017499 0.468196 -0.020966999 0.75193101 0.65890801 0.95638901 -0.29191801 -0.010193\n\t\t 0.91655499 -0.347828 0.197338 0.94801801 -0.036226001 0.31614801 0.94801801 -0.036226001\n\t\t 0.31614801 0.99124098 0.052829001 0.12104 0.95638901 -0.29191801 -0.010193 0.885984\n\t\t 0.371759 0.277179 0.99124098 0.052829001 0.12104 0.94801801 -0.036226001 0.31614801\n\t\t 0.94801801 -0.036226001 0.31614801 0.85275197 0.25205401 0.45747399 0.885984 0.371759\n\t\t 0.277179 0.885984 0.371759 0.277179 0.85275197 0.25205401 0.45747399 0.64560801 0.473692\n\t\t 0.59900498 0.64560801 0.473692 0.59900498 0.65671402 0.61679602 0.43392301 0.885984\n\t\t 0.371759 0.277179 0.33824399 0.75022399 0.568115 0.65671402 0.61679602 0.43392301\n\t\t 0.64560801 0.473692 0.59900498 0.64560801 0.473692 0.59900498 0.35759401 0.59433103\n\t\t 0.72034502 0.33824399 0.75022399 0.568115 0.763179 -0.63514799 0.118936 0.91655499\n\t\t -0.347828 0.197338 0.95638901 -0.29191801 -0.010193 0.95638901 -0.29191801 -0.010193\n\t\t 0.78676599 -0.60959899 -0.096900001 0.763179 -0.63514799 0.118936 0.763179 -0.63514799\n\t\t 0.118936 0.78676599 -0.60959899 -0.096900001 0.50814903 -0.852072 -0.125526 0.50814903\n\t\t -0.852072 -0.125526 0.51128203 -0.85434401 0.093204997 0.763179 -0.63514799 0.118936\n\t\t 0.199166 -0.97214401 0.12357 0.51128203 -0.85434401 0.093204997 0.50814903 -0.852072\n\t\t -0.125526 0.50814903 -0.852072 -0.125526 0.162973 -0.98232502 -0.092077002 0.199166\n\t\t -0.97214401 0.12357 0.199166 -0.97214401 0.12357 0.162973 -0.98232502 -0.092077002\n\t\t -0.196174 -0.98056799 -0.001312 -0.196174 -0.98056799 -0.001312 -0.125523 -0.97058398\n\t\t 0.205452 0.199166 -0.97214401 0.12357 -0.41346899 -0.849828 0.326857 -0.125523 -0.97058398\n\t\t 0.205452 -0.196174 -0.98056799 -0.001312 -0.196174 -0.98056799 -0.001312 -0.51463699\n\t\t -0.84707803 0.132695 -0.41346899 -0.849828 0.326857 -0.41346899 -0.849828 0.326857\n\t\t -0.51463699 -0.84707803 0.132695 -0.74397302 -0.60211903 0.28975201 -0.74397302 -0.60211903\n\t\t 0.28975201 -0.62081999 -0.62844998 0.46865201 -0.41346899 -0.849828 0.326857 -0.71592999\n\t\t -0.339959 0.60981297 -0.62081999 -0.62844998 0.46865201 -0.74397302 -0.60211903 0.28975201\n\t\t -0.74397302 -0.60211903 0.28975201 -0.84916002 -0.28309399 0.44585201 -0.71592999\n\t\t -0.339959 0.60981297 -0.71592999 -0.339959 0.60981297 -0.84916002 -0.28309399 0.44585201\n\t\t -0.814399 0.061648 0.57702202 -0.814399 0.061648 0.57702202 -0.68466699 -0.028200001\n\t\t 0.72830999 -0.71592999 -0.339959 0.60981297 -0.53115499 0.25901601 0.80671197 -0.68466699\n\t\t -0.028200001 0.72830999 -0.814399 0.061648 0.57702202 -0.814399 0.061648 0.57702202\n\t\t -0.64477098 0.37934801 0.66360098 -0.53115499 0.25901601 0.80671197 -0.53115499 0.25901601\n\t\t 0.80671197 -0.64477098 0.37934801 0.66360098 -0.36616999 0.62173802 0.69235897 -0.36616999\n\t\t 0.62173802 0.69235897 -0.27925101 0.47796199 0.83280897 -0.53115499 0.25901601 0.80671197\n\t\t 0.032838002 0.59570402 0.80253202 -0.27925101 0.47796199 0.83280897 -0.36616999 0.62173802\n\t\t 0.69235897 -0.36616999 0.62173802 0.69235897 -0.020966999 0.75193101 0.65890801 0.032838002\n\t\t 0.59570402 0.80253202 0.032838002 0.59570402 0.80253202 -0.020966999 0.75193101 0.65890801\n\t\t 0.33824399 0.75022399 0.568115 0.33824399 0.75022399 0.568115 0.35759401 0.59433103\n\t\t 0.72034502 0.032838002 0.59570402 0.80253202 0.226087 -0.366689 0.90245402 0.225354\n\t\t -0.36699301 0.90251398 0.22615001 -0.366631 0.90246201 0.226087 -0.366689 0.90245402\n\t\t 0.22615001 -0.366631 0.90246201 0.226116 -0.36668599 0.902448 0.22615001 -0.366631\n\t\t 0.90246201 0.226088 -0.36705601 0.90230501 0.226116 -0.36668599 0.902448 0.226087\n\t\t -0.366689 0.90245402 0.226116 -0.36668599 0.902448 0.226087 -0.366689 0.90245402\n\t\t 0.226116 -0.36668599 0.902448 0.226023 -0.36668399 0.90247297 0.226087 -0.366689\n\t\t 0.90245402 0.226116 -0.36668599 0.902448 0.22599301 -0.36662301 0.90250498 0.226023\n\t\t -0.36668399 0.90247297 0.226023 -0.36668399 0.90247297 0.22593801 -0.36666501 0.90250099\n\t\t 0.226087 -0.366689 0.90245402 0.226087 -0.366689 0.90245402 0.226087 -0.366689 0.90245402\n\t\t 0.226089 -0.366662 0.90246499 0.226087 -0.366689 0.90245402 0.226055 -0.36671799\n\t\t 0.90245098 0.226089 -0.366662 0.90246499 0.226087 -0.366689 0.90245402 0.22608501\n\t\t -0.36677799 0.90241802 0.226055 -0.36671799 0.90245098 0.226055 -0.36671799 0.90245098\n\t\t 0.226117 -0.366597 0.902484 0.226089 -0.366662 0.90246499 0.226087 -0.366689 0.90245402\n\t\t 0.226089 -0.366662 0.90246499 0.226054 -0.36665499 0.90247601 0.226089 -0.366662\n\t\t 0.90246499 0.225961 -0.36649999 0.90256298 0.226054 -0.36665499 0.90247601 0.226393\n\t\t -0.36671999 0.90236503 0.226087 -0.366689 0.90245402 0.226054 -0.36665499 0.90247601\n\t\t 0.753793 0.574799 0.31843701 0.682441 0.61114901 0.400962 0.61114299 0.70318902 0.363359\n\t\t 0.61114299 0.70318902 0.363359;\n\tsetAttr \".n[7636:7801]\" -type \"float3\"  0.68421 0.67047697 0.28691101 0.753793\n\t\t 0.574799 0.31843701 0.78285098 0.55517697 0.28093001 0.753793 0.574799 0.31843701\n\t\t 0.68421 0.67047697 0.28691101 0.68421 0.67047697 0.28691101 0.71565199 0.65168399\n\t\t 0.25129801 0.78285098 0.55517697 0.28093001 0.753793 0.574799 0.31843701 0.78285098\n\t\t 0.55517697 0.28093001 0.75037098 0.614043 0.24473201 0.75037098 0.614043 0.24473201\n\t\t 0.72327799 0.63150698 0.279405 0.753793 0.574799 0.31843701 0.682441 0.61114901 0.400962\n\t\t 0.753793 0.574799 0.31843701 0.72327799 0.63150698 0.279405 0.72327799 0.63150698\n\t\t 0.279405 0.651326 0.67012697 0.35595399 0.682441 0.61114901 0.400962 0.54855102 0.72208297\n\t\t 0.42153001 0.61114299 0.70318902 0.363359 0.682441 0.61114901 0.400962 0.682441 0.61114901\n\t\t 0.400962 0.59494501 0.64585102 0.478452 0.54855102 0.72208297 0.42153001 0.59494501\n\t\t 0.64585102 0.478452 0.682441 0.61114901 0.400962 0.651326 0.67012697 0.35595399 0.651326\n\t\t 0.67012697 0.35595399 0.57559901 0.693771 0.432859 0.59494501 0.64585102 0.478452\n\t\t 0.57559901 0.693771 0.432859 0.651326 0.67012697 0.35595399 0.71195197 0.583009 0.39143899\n\t\t 0.71195197 0.583009 0.39143899 0.651326 0.67012697 0.35595399 0.72327799 0.63150698\n\t\t 0.279405 0.71195197 0.583009 0.39143899 0.64212602 0.60266501 0.473782 0.57559901\n\t\t 0.693771 0.432859 0.64212602 0.60266501 0.473782 0.70292503 0.57214898 0.42254201\n\t\t 0.57559901 0.693771 0.432859 0.64212602 0.60266501 0.473782 0.658741 0.58622599 0.47159299\n\t\t 0.70292503 0.57214898 0.42254201 0.64212602 0.60266501 0.473782 0.637389 0.58092898\n\t\t 0.50621802 0.658741 0.58622599 0.47159299 0.57559901 0.693771 0.432859 0.70292503\n\t\t 0.57214898 0.42254201 0.68438798 0.62579203 0.374163 0.68438798 0.62579203 0.374163\n\t\t 0.59494501 0.64585102 0.478452 0.57559901 0.693771 0.432859 0.68438798 0.62579203\n\t\t 0.374163 0.54855102 0.72208297 0.42153001 0.59494501 0.64585102 0.478452 0.77579999\n\t\t 0.547364 0.31389099 0.72327799 0.63150698 0.279405 0.75037098 0.614043 0.24473201\n\t\t 0.72327799 0.63150698 0.279405 0.77579999 0.547364 0.31389099 0.71195197 0.583009\n\t\t 0.39143899 0.75037098 0.614043 0.24473201 0.79933101 0.52249098 0.29677001 0.77579999\n\t\t 0.547364 0.31389099 0.68438798 0.62579203 0.374163 0.53066301 0.73611701 0.42015401\n\t\t 0.54855102 0.72208297 0.42153001 0.68438798 0.62579203 0.374163 0.60474098 0.68766302\n\t\t 0.401757 0.53066301 0.73611701 0.42015401 0.798374 0.51088601 0.318739 0.79933101\n\t\t 0.52249098 0.29677001 0.75037098 0.614043 0.24473201 0.75037098 0.614043 0.24473201\n\t\t 0.76233798 0.60382199 0.23289201 0.798374 0.51088601 0.318739 0.83538198 0.374872\n\t\t 0.402004 0.798374 0.51088601 0.318739 0.76233798 0.60382199 0.23289201 0.76233798\n\t\t 0.60382199 0.23289201 0.77162302 0.46670401 0.43218601 0.83538198 0.374872 0.402004\n\t\t 0.79533201 0.54608202 0.26313701 0.76233798 0.60382199 0.23289201 0.75037098 0.614043\n\t\t 0.24473201 0.75037098 0.614043 0.24473201 0.78285098 0.55517697 0.28093001 0.79533201\n\t\t 0.54608202 0.26313701 0.718799 0.65101498 0.24394301 0.79533201 0.54608202 0.26313701\n\t\t 0.78285098 0.55517697 0.28093001 0.78285098 0.55517697 0.28093001 0.71565199 0.65168399\n\t\t 0.25129801 0.718799 0.65101498 0.24394301 0.79533201 0.54608202 0.26313701 0.718799\n\t\t 0.65101498 0.24394301 0.63383102 0.74776101 0.197767 0.63383102 0.74776101 0.197767\n\t\t 0.65408498 0.68353701 0.32396001 0.79533201 0.54608202 0.26313701 0.65408498 0.68353701\n\t\t 0.32396001 0.77162302 0.46670401 0.43218601 0.76233798 0.60382199 0.23289201 0.76233798\n\t\t 0.60382199 0.23289201 0.79533201 0.54608202 0.26313701 0.65408498 0.68353701 0.32396001\n\t\t 0.46303999 -0.77445799 0.43105501 0.46081001 -0.77698803 0.428886 0.41310999 -0.73527098\n\t\t 0.537323 0.41310999 -0.73527098 0.537323 0.39000401 -0.715276 0.57989401 0.46303999\n\t\t -0.77445799 0.43105501 0.353131 -0.67485702 0.64797097 0.39000401 -0.715276 0.57989401\n\t\t 0.41310999 -0.73527098 0.537323 0.41310999 -0.73527098 0.537323 0.35366201 -0.669236\n\t\t 0.65348798 0.353131 -0.67485702 0.64797097 0.46081001 -0.77698803 0.428886 0.46303999\n\t\t -0.77445799 0.43105501 0.474365 -0.80461597 0.35716999 0.474365 -0.80461597 0.35716999\n\t\t 0.466858 -0.80827898 0.35878801 0.46081001 -0.77698803 0.428886 0.466858 -0.80827898\n\t\t 0.35878801 0.474365 -0.80461597 0.35716999 0.488307 -0.82392502 0.28758201 0.488307\n\t\t -0.82392502 0.28758201 0.482999 -0.82484502 0.29383999 0.466858 -0.80827898 0.35878801\n\t\t 0.52109301 -0.82717502 0.210342 0.482999 -0.82484502 0.29383999 0.488307 -0.82392502\n\t\t 0.28758201 0.488307 -0.82392502 0.28758201 0.52312303 -0.82812798 0.201363 0.52109301\n\t\t -0.82717502 0.210342 0.52109301 -0.82717502 0.210342 0.52312303 -0.82812798 0.201363\n\t\t 0.64344501 -0.76524901 -0.019288 0.64344501 -0.76524901 -0.019288 0.61273098 -0.78824598\n\t\t 0.056827001 0.52109301 -0.82717502 0.210342 0.69123101 -0.71314299 -0.116736 0.61273098\n\t\t -0.78824598 0.056827001 0.64344501 -0.76524901 -0.019288 0.64344501 -0.76524901 -0.019288\n\t\t 0.691845 -0.70618898 -0.150491 0.69123101 -0.71314299 -0.116736 0.71957803 -0.0039369999\n\t\t -0.69440001 0.71561801 -0.093236998 -0.69224101 0.71813798 -0.052645002 -0.69390601\n\t\t 0.71813798 -0.052645002 -0.69390601 0.71923703 0.048769001 -0.69305098 0.71957803\n\t\t -0.0039369999 -0.69440001 0.32414401 0.74344802 -0.58499199 0.38707101 0.63235199\n\t\t -0.67105001 0.27101299 0.78087199 -0.562841 0.27101299 0.78087199 -0.562841 0.20750099\n\t\t 0.84343398 -0.495543 0.32414401 0.74344802 -0.58499199 0.099978998 0.92539299 -0.365585\n\t\t 0.20750099 0.84343398 -0.495543;\n\tsetAttr \".n[7802:7967]\" -type \"float3\"  0.27101299 0.78087199 -0.562841 0.27101299\n\t\t 0.78087199 -0.562841 0.11335 0.92242497 -0.36916599 0.099978998 0.92539299 -0.365585\n\t\t 0.032777 0.969006 -0.244853 0.099978998 0.92539299 -0.365585 0.11335 0.92242497 -0.36916599\n\t\t 0.11335 0.92242497 -0.36916599 0.039308 0.96763402 -0.24927901 0.032777 0.969006\n\t\t -0.244853 -0.0043339999 0.98347199 -0.181008 0.032777 0.969006 -0.244853 0.039308\n\t\t 0.96763402 -0.24927901 0.039308 0.96763402 -0.24927901 -0.0034789999 0.98352098 -0.18076099\n\t\t -0.0043339999 0.98347199 -0.181008 -0.0043339999 0.98347199 -0.181008 -0.0034789999\n\t\t 0.98352098 -0.18076099 -0.019533001 0.98479003 -0.172647 -0.019533001 0.98479003\n\t\t -0.172647 -0.019898999 0.98471898 -0.173011 -0.0043339999 0.98347199 -0.181008 -0.019898999\n\t\t 0.98471898 -0.173011 -0.019533001 0.98479003 -0.172647 -0.050721999 0.99258697 -0.110447\n\t\t -0.050721999 0.99258697 -0.110447 -0.045290999 0.99034899 -0.130989 -0.019898999\n\t\t 0.98471898 -0.173011 -0.045290999 0.99034899 -0.130989 -0.050721999 0.99258697 -0.110447\n\t\t -0.15045699 0.98782498 0.039551999 -0.15045699 0.98782498 0.039551999 -0.122167 0.99237901\n\t\t -0.016114 -0.045290999 0.99034899 -0.130989 -0.22193401 0.956065 0.19153599 -0.122167\n\t\t 0.99237901 -0.016114 -0.15045699 0.98782498 0.039551999 -0.15045699 0.98782498 0.039551999\n\t\t -0.26689199 0.93370801 0.23866101 -0.22193401 0.956065 0.19153599 -0.345139 0.78565001\n\t\t 0.51345098 -0.22193401 0.956065 0.19153599 -0.26689199 0.93370801 0.23866101 -0.26689199\n\t\t 0.93370801 0.23866101 -0.366869 0.77747202 0.510827 -0.345139 0.78565001 0.51345098\n\t\t -0.345139 0.78565001 0.51345098 -0.366869 0.77747202 0.510827 -0.37386599 0.63108599\n\t\t 0.67967302 -0.37386599 0.63108599 0.67967302 -0.36507499 0.62986201 0.685561 -0.345139\n\t\t 0.78565001 0.51345098 -0.13587201 0.14225 0.980461 -0.170145 0.172648 0.97017699\n\t\t -0.063786 0.0089729996 0.99792302 -0.063786 0.0089729996 0.99792302 0.012299 -0.109991\n\t\t 0.99385601 -0.13587201 0.14225 0.980461 0.105779 -0.26603401 0.95814198 0.012299\n\t\t -0.109991 0.99385601 -0.063786 0.0089729996 0.99792302 -0.063786 0.0089729996 0.99792302\n\t\t 0.097842999 -0.23642799 0.96670997 0.105779 -0.26603401 0.95814198 0.78923398 0.497255\n\t\t 0.36034399 0.73191899 0.61460203 0.29420799 0.68438798 0.62579203 0.374163 0.68438798\n\t\t 0.62579203 0.374163 0.70292503 0.57214898 0.42254201 0.78923398 0.497255 0.36034399\n\t\t 0.75701499 0.46539801 0.45862201 0.78923398 0.497255 0.36034399 0.70292503 0.57214898\n\t\t 0.42254201 0.70292503 0.57214898 0.42254201 0.658741 0.58622599 0.47159299 0.75701499\n\t\t 0.46539801 0.45862201 0.60474098 0.68766302 0.401757 0.68438798 0.62579203 0.374163\n\t\t 0.73191899 0.61460203 0.29420799 0.73191899 0.61460203 0.29420799 0.64347202 0.70182502\n\t\t 0.30559099 0.60474098 0.68766302 0.401757 0.53066301 0.73611701 0.42015401 0.60474098\n\t\t 0.68766302 0.401757 0.64347202 0.70182502 0.30559099 0.64347202 0.70182502 0.30559099\n\t\t 0.55673099 0.76295 0.32857001 0.53066301 0.73611701 0.42015401 0.71550602 0.46002501\n\t\t 0.52576399 0.75701499 0.46539801 0.45862201 0.658741 0.58622599 0.47159299 0.658741\n\t\t 0.58622599 0.47159299 0.637389 0.58092898 0.50621802 0.71550602 0.46002501 0.52576399\n\t\t 0.69055402 0.47588399 0.54467303 0.71550602 0.46002501 0.52576399 0.637389 0.58092898\n\t\t 0.50621802 0.637389 0.58092898 0.50621802 0.64212602 0.60266501 0.473782 0.69055402\n\t\t 0.47588399 0.54467303 0.69055402 0.47588399 0.54467303 0.64212602 0.60266501 0.473782\n\t\t 0.71195197 0.583009 0.39143899 0.71195197 0.583009 0.39143899 0.756666 0.46603099\n\t\t 0.45855299 0.69055402 0.47588399 0.54467303 0.82368398 0.42992499 0.36974099 0.756666\n\t\t 0.46603099 0.45855299 0.71195197 0.583009 0.39143899 0.71195197 0.583009 0.39143899\n\t\t 0.77579999 0.547364 0.31389099 0.82368398 0.42992499 0.36974099 0.84007502 0.406335\n\t\t 0.35939601 0.82368398 0.42992499 0.36974099 0.77579999 0.547364 0.31389099 0.77579999\n\t\t 0.547364 0.31389099 0.79933101 0.52249098 0.29677001 0.84007502 0.406335 0.35939601\n\t\t 0.82528102 0.39877 0.39986801 0.84007502 0.406335 0.35939601 0.79933101 0.52249098\n\t\t 0.29677001 0.79933101 0.52249098 0.29677001 0.798374 0.51088601 0.318739 0.82528102\n\t\t 0.39877 0.39986801 0.80833203 0.36540699 0.46160299 0.82528102 0.39877 0.39986801\n\t\t 0.798374 0.51088601 0.318739 0.798374 0.51088601 0.318739 0.83538198 0.374872 0.402004\n\t\t 0.80833203 0.36540699 0.46160299 0.71533698 0.48684099 0.50127602 0.80833203 0.36540699\n\t\t 0.46160299 0.83538198 0.374872 0.402004 0.83538198 0.374872 0.402004 0.77162302 0.46670401\n\t\t 0.43218601 0.71533698 0.48684099 0.50127602 0.71533698 0.48684099 0.50127602 0.77162302\n\t\t 0.46670401 0.43218601 0.65408498 0.68353701 0.32396001 0.65408498 0.68353701 0.32396001\n\t\t 0.57976902 0.70663601 0.40562701 0.71533698 0.48684099 0.50127602 0.55154902 0.80257303\n\t\t 0.22731 0.57976902 0.70663601 0.40562701 0.65408498 0.68353701 0.32396001 0.65408498\n\t\t 0.68353701 0.32396001 0.63383102 0.74776101 0.197767 0.55154902 0.80257303 0.22731\n\t\t 0.61657703 0.76016998 0.20487501 0.55154902 0.80257303 0.22731 0.63383102 0.74776101\n\t\t 0.197767 0.63383102 0.74776101 0.197767 0.718799 0.65101498 0.24394301 0.61657703\n\t\t 0.76016998 0.20487501 0.62847102 0.75155401 0.200477 0.61657703 0.76016998 0.20487501\n\t\t 0.718799 0.65101498 0.24394301 0.718799 0.65101498 0.24394301 0.71565199 0.65168399\n\t\t 0.25129801 0.62847102 0.75155401 0.200477 0.60919702 0.76069498 0.224104 0.62847102\n\t\t 0.75155401 0.200477 0.71565199 0.65168399 0.25129801 0.71565199 0.65168399 0.25129801\n\t\t 0.68421 0.67047697 0.28691101 0.60919702 0.76069498 0.224104;\n\tsetAttr \".n[7968:8133]\" -type \"float3\"  0.60919702 0.76069498 0.224104 0.68421\n\t\t 0.67047697 0.28691101 0.61114299 0.70318902 0.363359 0.61114299 0.70318902 0.363359\n\t\t 0.545744 0.78696799 0.28782699 0.60919702 0.76069498 0.224104 0.545744 0.78696799\n\t\t 0.28782699 0.61114299 0.70318902 0.363359 0.54855102 0.72208297 0.42153001 0.54855102\n\t\t 0.72208297 0.42153001 0.49423599 0.79726601 0.346551 0.545744 0.78696799 0.28782699\n\t\t 0.55673099 0.76295 0.32857001 0.49423599 0.79726601 0.346551 0.54855102 0.72208297\n\t\t 0.42153001 0.54855102 0.72208297 0.42153001 0.53066301 0.73611701 0.42015401 0.55673099\n\t\t 0.76295 0.32857001 -0.470139 -0.83575302 0.283701 -0.292584 -0.856359 0.42549399\n\t\t -0.42146999 -0.62527698 0.65680403 -0.42146999 -0.62527698 0.65680403 -0.60977799\n\t\t -0.58545399 0.53424197 -0.470139 -0.83575302 0.283701 -0.63633198 -0.25813401 0.72694498\n\t\t -0.60977799 -0.58545399 0.53424197 -0.42146999 -0.62527698 0.65680403 -0.42146999\n\t\t -0.62527698 0.65680403 -0.44598299 -0.32320201 0.83464998 -0.63633198 -0.25813401\n\t\t 0.72694498 -0.0788 -0.98121399 0.176094 -0.292584 -0.856359 0.42549399 -0.470139\n\t\t -0.83575302 0.283701 -0.470139 -0.83575302 0.283701 -0.23856901 -0.97103202 0.013459\n\t\t -0.0788 -0.98121399 0.176094 -0.63633198 -0.25813401 0.72694498 -0.44598299 -0.32320201\n\t\t 0.83464998 -0.36235601 0.0039980002 0.93203098 -0.36235601 0.0039980002 0.93203098\n\t\t -0.54571998 0.096258998 0.832421 -0.63633198 -0.25813401 0.72694498 -0.35170001 0.42384699\n\t\t 0.83466202 -0.54571998 0.096258998 0.832421 -0.36235601 0.0039980002 0.93203098 -0.36235601\n\t\t 0.0039980002 0.93203098 -0.183268 0.306382 0.93409997 -0.35170001 0.42384699 0.83466202\n\t\t -0.35170001 0.42384699 0.83466202 -0.183268 0.306382 0.93409997 0.063968003 0.53793103\n\t\t 0.84055901 0.063968003 0.53793103 0.84055901 -0.083866 0.67467701 0.73333299 -0.35170001\n\t\t 0.42384699 0.83466202 0.217022 0.81065297 0.543823 -0.083866 0.67467701 0.73333299\n\t\t 0.063968003 0.53793103 0.84055901 0.063968003 0.53793103 0.84055901 0.34175599 0.66340101\n\t\t 0.66565901 0.217022 0.81065297 0.543823 0.217022 0.81065297 0.543823 0.34175599 0.66340101\n\t\t 0.66565901 0.60773802 0.66380298 0.43591201 0.60773802 0.66380298 0.43591201 0.50515699\n\t\t 0.81105399 0.29497001 0.217022 0.81065297 0.543823 0.73670697 0.67575997 0.024721\n\t\t 0.50515699 0.81105399 0.29497001 0.60773802 0.66380298 0.43591201 0.60773802 0.66380298\n\t\t 0.43591201 0.82145298 0.53893799 0.186441 0.73670697 0.67575997 0.024721 0.73670697\n\t\t 0.67575997 0.024721 0.82145298 0.53893799 0.186441 0.95039099 0.30781499 -0.044801999\n\t\t 0.95039099 0.30781499 -0.044801999 0.87638599 0.42540601 -0.22578 0.73670697 0.67575997\n\t\t 0.024721 0.90290803 0.09815 -0.41847801 0.87638599 0.42540601 -0.22578 0.95039099\n\t\t 0.30781499 -0.044801999 0.95039099 0.30781499 -0.044801999 0.97487098 0.0057680001\n\t\t -0.222698 0.90290803 0.09815 -0.41847801 0.90290803 0.09815 -0.41847801 0.97487098\n\t\t 0.0057680001 -0.222698 0.89121002 -0.32139301 -0.320081 0.89121002 -0.32139301 -0.320081\n\t\t 0.81227601 -0.25621101 -0.52398902 0.90290803 0.09815 -0.41847801 0.61828703 -0.58380002\n\t\t -0.52621102 0.81227601 -0.25621101 -0.52398902 0.89121002 -0.32139301 -0.320081 0.89121002\n\t\t -0.32139301 -0.320081 0.712161 -0.62377799 -0.32206699 0.61828703 -0.58380002 -0.52621102\n\t\t 0.61828703 -0.58380002 -0.52621102 0.712161 -0.62377799 -0.32206699 0.464872 -0.85536802\n\t\t -0.22856 0.464872 -0.85536802 -0.22856 0.350427 -0.83468097 -0.42486301 0.61828703\n\t\t -0.58380002 -0.52621102 0.049532 -0.97065198 -0.235331 0.350427 -0.83468097 -0.42486301\n\t\t 0.464872 -0.85536802 -0.22856 0.464872 -0.85536802 -0.22856 0.18711101 -0.98087299\n\t\t -0.053652 0.049532 -0.97065198 -0.235331 0.22496 -0.77489299 -0.590707 0.350427 -0.83468097\n\t\t -0.42486301 0.049532 -0.97065198 -0.235331 0.61828703 -0.58380002 -0.52621102 0.350427\n\t\t -0.83468097 -0.42486301 0.22496 -0.77489299 -0.590707 0.049532 -0.97065198 -0.235331\n\t\t -0.083377004 -0.91425401 -0.39647001 0.22496 -0.77489299 -0.590707 -0.37871599 -0.914639\n\t\t -0.141458 -0.083377004 -0.91425401 -0.39647001 0.049532 -0.97065198 -0.235331 0.049532\n\t\t -0.97065198 -0.235331 -0.23856901 -0.97103202 0.013459 -0.37871599 -0.914639 -0.141458\n\t\t 0.22496 -0.77489299 -0.590707 0.499477 -0.51775801 -0.69458598 0.61828703 -0.58380002\n\t\t -0.52621102 0.61828703 -0.58380002 -0.52621102 0.499477 -0.51775801 -0.69458598 0.698286\n\t\t -0.182079 -0.69227397 0.698286 -0.182079 -0.69227397 0.81227601 -0.25621101 -0.52398902\n\t\t 0.61828703 -0.58380002 -0.52621102 0.90290803 0.09815 -0.41847801 0.81227601 -0.25621101\n\t\t -0.52398902 0.698286 -0.182079 -0.69227397 0.698286 -0.182079 -0.69227397 0.791188\n\t\t 0.18110301 -0.58414298 0.90290803 0.09815 -0.41847801 0.90290803 0.09815 -0.41847801\n\t\t 0.791188 0.18110301 -0.58414298 0.76398402 0.516536 -0.386677 0.76398402 0.516536\n\t\t -0.386677 0.87638599 0.42540601 -0.22578 0.90290803 0.09815 -0.41847801 0.73670697\n\t\t 0.67575997 0.024721 0.87638599 0.42540601 -0.22578 0.76398402 0.516536 -0.386677\n\t\t 0.76398402 0.516536 -0.386677 0.62084198 0.77310097 -0.129888 0.73670697 0.67575997\n\t\t 0.024721 0.73670697 0.67575997 0.024721 0.62084198 0.77310097 -0.129888 0.38354 0.91174299\n\t\t 0.147043 0.38354 0.91174299 0.147043 0.50515699 0.81105399 0.29497001 0.73670697\n\t\t 0.67575997 0.024721 0.217022 0.81065297 0.543823 0.50515699 0.81105399 0.29497001\n\t\t 0.38354 0.91174299 0.147043 0.38354 0.91174299 0.147043 0.088229999 0.91135401 0.40205601\n\t\t 0.217022 0.81065297 0.543823 0.217022 0.81065297 0.543823 0.088229999 0.91135401\n\t\t 0.40205601 -0.220138 0.77199399 0.59629202 -0.220138 0.77199399 0.59629202;\n\tsetAttr \".n[8134:8299]\" -type \"float3\"  -0.083866 0.67467701 0.73333299 0.217022\n\t\t 0.81065297 0.543823 -0.35170001 0.42384699 0.83466202 -0.083866 0.67467701 0.73333299\n\t\t -0.220138 0.77199399 0.59629202 -0.220138 0.77199399 0.59629202 -0.49462399 0.51488799\n\t\t 0.70016998 -0.35170001 0.42384699 0.83466202 -0.35170001 0.42384699 0.83466202 -0.49462399\n\t\t 0.51488799 0.70016998 -0.69346201 0.179179 0.69785702 -0.69346201 0.179179 0.69785702\n\t\t -0.54571998 0.096258998 0.832421 -0.35170001 0.42384699 0.83466202 -0.54571998 0.096258998\n\t\t 0.832421 -0.69346201 0.179179 0.69785702 -0.78636301 -0.184002 0.58972597 -0.78636301\n\t\t -0.184002 0.58972597 -0.63633198 -0.25813401 0.72694498 -0.54571998 0.096258998 0.832421\n\t\t -0.63633198 -0.25813401 0.72694498 -0.78636301 -0.184002 0.58972597 -0.75915903 -0.51943302\n\t\t 0.39225999 -0.75915903 -0.51943302 0.39225999 -0.60977799 -0.58545399 0.53424197\n\t\t -0.63633198 -0.25813401 0.72694498 -0.470139 -0.83575302 0.283701 -0.60977799 -0.58545399\n\t\t 0.53424197 -0.75915903 -0.51943302 0.39225999 -0.75915903 -0.51943302 0.39225999\n\t\t -0.61601001 -0.77599502 0.135508 -0.470139 -0.83575302 0.283701 -0.470139 -0.83575302\n\t\t 0.283701 -0.61601001 -0.77599502 0.135508 -0.37871599 -0.914639 -0.141458 -0.37871599\n\t\t -0.914639 -0.141458 -0.23856901 -0.97103202 0.013459 -0.470139 -0.83575302 0.283701\n\t\t -0.0788 -0.98121399 0.176094 -0.23856901 -0.97103202 0.013459 0.049532 -0.97065198\n\t\t -0.235331 0.049532 -0.97065198 -0.235331 0.18711101 -0.98087299 -0.053652 -0.0788\n\t\t -0.98121399 0.176094 0.60867202 -0.36531299 0.704319 0.60865301 -0.36532 0.70433199\n\t\t 0.60865301 -0.36532 0.70433199 0.60865301 -0.36532 0.70433199 0.608679 -0.36528599\n\t\t 0.70432699 0.60867202 -0.36531299 0.704319 0.60867202 -0.36531299 0.704319 0.60867202\n\t\t -0.36531299 0.704319 0.608679 -0.36528599 0.70432699 0.608679 -0.36528599 0.70432699\n\t\t 0.60867202 -0.36531299 0.704319 0.60867202 -0.36531299 0.704319 0.60868597 -0.36526\n\t\t 0.70433402 0.60867202 -0.36531299 0.704319 0.60867202 -0.36531299 0.704319 0.60867202\n\t\t -0.36531299 0.704319 0.608679 -0.36528599 0.70432699 0.60868597 -0.36526 0.70433402\n\t\t 0.60867798 -0.365347 0.70429498 0.60868597 -0.36526 0.70433402 0.608679 -0.36528599\n\t\t 0.70432699 0.608679 -0.36528599 0.70432699 0.60864598 -0.36534601 0.70432401 0.60867798\n\t\t -0.365347 0.70429498 0.60864699 -0.36528501 0.704355 0.60867798 -0.365347 0.70429498\n\t\t 0.60864598 -0.36534601 0.70432401 0.60864598 -0.36534601 0.70432401 0.60865301 -0.36525899\n\t\t 0.70436299 0.60864699 -0.36528501 0.704355 0.60864699 -0.36528501 0.704355 0.60864699\n\t\t -0.36528501 0.704355 0.60865301 -0.36525899 0.70436299 0.60865301 -0.36525899 0.70436299\n\t\t 0.60865998 -0.365293 0.70433998 0.60864699 -0.36528501 0.704355 0.60864699 -0.36528501\n\t\t 0.704355 0.60864699 -0.36528501 0.704355 0.60865998 -0.365293 0.70433998 0.60865998\n\t\t -0.365293 0.70433998 0.60864699 -0.36528501 0.704355 0.60864699 -0.36528501 0.704355\n\t\t 0.60864699 -0.36528501 0.704355 0.60864699 -0.36528501 0.704355 0.60864699 -0.36528501\n\t\t 0.704355 0.60864699 -0.36528501 0.704355 0.60864699 -0.36528501 0.704355 0.60864699\n\t\t -0.36528501 0.704355 0.60864699 -0.36528501 0.704355 0.60864699 -0.36528501 0.704355\n\t\t 0.60864699 -0.36528501 0.704355 0.60864699 -0.36528501 0.704355 0.60864699 -0.36528501\n\t\t 0.704355 0.60864699 -0.36528501 0.704355 0.60867202 -0.36531299 0.704319 0.60864699\n\t\t -0.36528501 0.704355 0.60864699 -0.36528501 0.704355 0.60864699 -0.36528501 0.704355\n\t\t 0.60867202 -0.36531299 0.704319 0.60867202 -0.36531299 0.704319 0.608679 -0.36528599\n\t\t 0.70432699 0.60867202 -0.36531299 0.704319 0.60867202 -0.36531299 0.704319 0.60867202\n\t\t -0.36531299 0.704319 0.608679 -0.36528599 0.70432699 0.608679 -0.36528599 0.70432699\n\t\t 0.60867798 -0.365347 0.70429498 0.608679 -0.36528599 0.70432699 0.608679 -0.36528599\n\t\t 0.70432699 0.608679 -0.36528599 0.70432699 0.60866499 -0.36533901 0.70431101 0.60867798\n\t\t -0.365347 0.70429498 0.60864699 -0.36528501 0.704355 0.60867798 -0.365347 0.70429498\n\t\t 0.60866499 -0.36533901 0.70431101 0.60866499 -0.36533901 0.70431101 0.60864699 -0.36528501\n\t\t 0.704355 0.60864699 -0.36528501 0.704355 0.60865998 -0.365293 0.70433998 0.60864699\n\t\t -0.36528501 0.704355 0.60864699 -0.36528501 0.704355 0.60864699 -0.36528501 0.704355\n\t\t 0.60867202 -0.36531299 0.704319 0.60865998 -0.365293 0.70433998 0.608679 -0.36528599\n\t\t 0.70432699 0.60865998 -0.365293 0.70433998 0.60867202 -0.36531299 0.704319 0.60867202\n\t\t -0.36531299 0.704319 0.608679 -0.36528599 0.70432699 0.608679 -0.36528599 0.70432699\n\t\t 0.60865301 -0.36532 0.70433199 0.608679 -0.36528599 0.70432699 0.608679 -0.36528599\n\t\t 0.70432699 0.608679 -0.36528599 0.70432699 0.60865301 -0.36532 0.70433199 0.60865301\n\t\t -0.36532 0.70433199 0.83617401 0.151896 -0.52701098 0.743577 -0.210035 -0.63480598\n\t\t 0.85181701 -0.28620699 -0.438741 0.85181701 -0.28620699 -0.438741 0.94002903 0.058628\n\t\t -0.33601901 0.83617401 0.151896 -0.52701098 0.80906802 0.486173 -0.330219 0.83617401\n\t\t 0.151896 -0.52701098 0.94002903 0.058628 -0.33601901 0.94002903 0.058628 -0.33601901\n\t\t 0.914186 0.37707099 -0.1486 0.80906802 0.486173 -0.330219 0.666354 0.74191999 -0.074345\n\t\t 0.80906802 0.486173 -0.330219 0.914186 0.37707099 -0.1486 0.914186 0.37707099 -0.1486\n\t\t 0.77826899 0.62066901 0.09522 0.666354 0.74191999 -0.074345 0.42986599 0.88008898\n\t\t 0.20164201 0.666354 0.74191999 -0.074345 0.77826899 0.62066901 0.09522 0.77826899\n\t\t 0.62066901 0.09522 0.55300999 0.752271 0.35814399 0.42986599 0.88008898 0.20164201\n\t\t 0.66306299 -0.604954 -0.440882 0.85181701 -0.28620699 -0.438741;\n\tsetAttr \".n[8300:8465]\" -type \"float3\"  0.743577 -0.210035 -0.63480598 0.743577\n\t\t -0.210035 -0.63480598 0.54540801 -0.54458398 -0.63714898 0.66306299 -0.604954 -0.440882\n\t\t 0.40246201 -0.84905398 -0.342246 0.66306299 -0.604954 -0.440882 0.54540801 -0.54458398\n\t\t -0.63714898 0.54540801 -0.54458398 -0.63714898 0.271862 -0.80087602 -0.533562 0.40246201\n\t\t -0.84905398 -0.342246 0.109657 -0.98135102 -0.157877 0.40246201 -0.84905398 -0.342246\n\t\t 0.271862 -0.80087602 -0.533562 0.271862 -0.80087602 -0.533562 -0.035463002 -0.93976402\n\t\t -0.33997899 0.109657 -0.98135102 -0.157877 -0.17069501 -0.98171902 0.084202997 0.109657\n\t\t -0.98135102 -0.157877 -0.035463002 -0.93976402 -0.33997899 -0.035463002 -0.93976402\n\t\t -0.33997899 -0.329817 -0.94013298 -0.085849002 -0.17069501 -0.98171902 0.084202997\n\t\t -0.39595801 -0.85011703 0.34715801 -0.17069501 -0.98171902 0.084202997 -0.329817\n\t\t -0.94013298 -0.085849002 -0.329817 -0.94013298 -0.085849002 -0.56628197 -0.80198097\n\t\t 0.190134 -0.39595801 -0.85011703 0.34715801 -0.53188598 -0.60650599 0.59097201 -0.39595801\n\t\t -0.85011703 0.34715801 -0.56628197 -0.80198097 0.190134 -0.56628197 -0.80198097 0.190134\n\t\t -0.70892203 -0.546287 0.44609401 -0.53188598 -0.60650599 0.59097201 -0.557688 -0.288046\n\t\t 0.77846903 -0.53188598 -0.60650599 0.59097201 -0.70892203 -0.546287 0.44609401 -0.70892203\n\t\t -0.546287 0.44609401 -0.73603302 -0.212017 0.64288801 -0.557688 -0.288046 0.77846903\n\t\t -0.46953601 0.056765001 0.88108599 -0.557688 -0.288046 0.77846903 -0.73603302 -0.212017\n\t\t 0.64288801 -0.73603302 -0.212017 0.64288801 -0.64352697 0.14997099 0.750588 -0.46953601\n\t\t 0.056765001 0.88108599 -0.280779 0.37551099 0.88326401 -0.46953601 0.056765001 0.88108599\n\t\t -0.64352697 0.14997099 0.750588 -0.64352697 0.14997099 0.750588 -0.445315 0.48456299\n\t\t 0.75292301 -0.280779 0.37551099 0.88326401 -0.020174 0.619605 0.78465402 -0.280779\n\t\t 0.37551099 0.88326401 -0.445315 0.48456299 0.75292301 -0.445315 0.48456299 0.75292301\n\t\t -0.171794 0.74079603 0.649391 -0.020174 0.619605 0.78465402 0.27263001 0.751908 0.60025603\n\t\t -0.020174 0.619605 0.78465402 -0.171794 0.74079603 0.649391 -0.171794 0.74079603\n\t\t 0.649391 0.13559499 0.879677 0.45583099 0.27263001 0.751908 0.60025603 0.55300999\n\t\t 0.752271 0.35814399 0.27263001 0.751908 0.60025603 0.13559499 0.879677 0.45583099\n\t\t 0.13559499 0.879677 0.45583099 0.42986599 0.88008898 0.20164201 0.55300999 0.752271\n\t\t 0.35814399 0.85181701 -0.28620699 -0.438741 0.90958798 -0.34242299 -0.23536199 0.98931998\n\t\t -0.030672001 -0.142496 0.98931998 -0.030672001 -0.142496 0.94002903 0.058628 -0.33601901\n\t\t 0.85181701 -0.28620699 -0.438741 0.914186 0.37707099 -0.1486 0.94002903 0.058628\n\t\t -0.33601901 0.98931998 -0.030672001 -0.142496 0.98931998 -0.030672001 -0.142496 0.96596998\n\t\t 0.25724801 0.026949 0.914186 0.37707099 -0.1486 0.914186 0.37707099 -0.1486 0.96596998\n\t\t 0.25724801 0.026949 0.84312499 0.477413 0.24742 0.84312499 0.477413 0.24742 0.77826899\n\t\t 0.62066901 0.09522 0.914186 0.37707099 -0.1486 0.55300999 0.752271 0.35814399 0.77826899\n\t\t 0.62066901 0.09522 0.84312499 0.477413 0.24742 0.84312499 0.477413 0.24742 0.63941002\n\t\t 0.596439 0.48519599 0.55300999 0.752271 0.35814399 0.73892599 -0.63064498 -0.237224\n\t\t 0.90958798 -0.34242299 -0.23536199 0.85181701 -0.28620699 -0.438741 0.85181701 -0.28620699\n\t\t -0.438741 0.66306299 -0.604954 -0.440882 0.73892599 -0.63064498 -0.237224 0.73892599\n\t\t -0.63064498 -0.237224 0.66306299 -0.604954 -0.440882 0.40246201 -0.84905398 -0.342246\n\t\t 0.40246201 -0.84905398 -0.342246 0.50331599 -0.85132098 -0.148077 0.73892599 -0.63064498\n\t\t -0.237224 0.238535 -0.97095603 0.018586 0.50331599 -0.85132098 -0.148077 0.40246201\n\t\t -0.84905398 -0.342246 0.40246201 -0.84905398 -0.342246 0.109657 -0.98135102 -0.157877\n\t\t 0.238535 -0.97095603 0.018586 0.238535 -0.97095603 0.018586 0.109657 -0.98135102\n\t\t -0.157877 -0.17069501 -0.98171902 0.084202997 -0.17069501 -0.98171902 0.084202997\n\t\t -0.014863 -0.97128099 0.237472 0.238535 -0.97095603 0.018586 -0.218548 -0.85227901\n\t\t 0.475245 -0.014863 -0.97128099 0.237472 -0.17069501 -0.98171902 0.084202997 -0.17069501\n\t\t -0.98171902 0.084202997 -0.39595801 -0.85011703 0.34715801 -0.218548 -0.85227901\n\t\t 0.475245 -0.218548 -0.85227901 0.475245 -0.39595801 -0.85011703 0.34715801 -0.53188598\n\t\t -0.60650599 0.59097201 -0.53188598 -0.60650599 0.59097201 -0.341447 -0.63208002 0.69562101\n\t\t -0.218548 -0.85227901 0.475245 -0.36479899 -0.344107 0.86516601 -0.341447 -0.63208002\n\t\t 0.69562101 -0.53188598 -0.60650599 0.59097201 -0.53188598 -0.60650599 0.59097201\n\t\t -0.557688 -0.288046 0.77846903 -0.36479899 -0.344107 0.86516601 -0.36479899 -0.344107\n\t\t 0.86516601 -0.557688 -0.288046 0.77846903 -0.46953601 0.056765001 0.88108599 -0.46953601\n\t\t 0.056765001 0.88108599 -0.28502101 -0.032381002 0.95797402 -0.36479899 -0.344107\n\t\t 0.86516601 -0.114417 0.25584301 0.95992398 -0.28502101 -0.032381002 0.95797402 -0.46953601\n\t\t 0.056765001 0.88108599 -0.46953601 0.056765001 0.88108599 -0.280779 0.37551099 0.88326401\n\t\t -0.114417 0.25584301 0.95992398 -0.114417 0.25584301 0.95992398 -0.280779 0.37551099\n\t\t 0.88326401 -0.020174 0.619605 0.78465402 -0.020174 0.619605 0.78465402 0.121191 0.476464\n\t\t 0.87080097 -0.114417 0.25584301 0.95992398 0.38594401 0.596129 0.70404398 0.121191\n\t\t 0.476464 0.87080097 -0.020174 0.619605 0.78465402 -0.020174 0.619605 0.78465402 0.27263001\n\t\t 0.751908 0.60025603 0.38594401 0.596129 0.70404398 0.38594401 0.596129 0.70404398\n\t\t 0.27263001 0.751908 0.60025603 0.55300999 0.752271 0.35814399 0.55300999 0.752271\n\t\t 0.35814399 0.63941002 0.596439 0.48519599 0.38594401 0.596129 0.70404398;\n\tsetAttr \".n[8466:8631]\" -type \"float3\"  0.60867202 -0.36531299 0.704319 0.60873699\n\t\t -0.36525401 0.70429301 0.60867202 -0.36531299 0.704319 0.60867202 -0.36531299 0.704319\n\t\t 0.60867202 -0.36531299 0.704319 0.60867202 -0.36531299 0.704319 0.60867202 -0.36531299\n\t\t 0.704319 0.60867202 -0.36531299 0.704319 0.60867202 -0.36531299 0.704319 0.60867202\n\t\t -0.36531299 0.704319 0.60867202 -0.36531299 0.704319 0.60867202 -0.36531299 0.704319\n\t\t 0.60867202 -0.36531299 0.704319 0.60864699 -0.36528501 0.704355 0.60867202 -0.36531299\n\t\t 0.704319 0.60867202 -0.36531299 0.704319 0.60865301 -0.36532 0.70433199 0.60864699\n\t\t -0.36528501 0.704355 0.60864699 -0.36528501 0.704355 0.60864699 -0.36528501 0.704355\n\t\t 0.60867202 -0.36531299 0.704319 0.60867202 -0.36531299 0.704319 0.60867202 -0.36531299\n\t\t 0.704319 0.60867202 -0.36531299 0.704319 0.60867202 -0.36531299 0.704319 0.60867202\n\t\t -0.36531299 0.704319 0.60867202 -0.36531299 0.704319 0.60867202 -0.36531299 0.704319\n\t\t 0.60873699 -0.36525401 0.70429301 0.60867202 -0.36531299 0.704319 0.60867202 -0.36531299\n\t\t 0.704319 0.608679 -0.36528599 0.70432699 0.60867202 -0.36531299 0.704319 0.60867202\n\t\t -0.36531299 0.704319 0.60867202 -0.36531299 0.704319 0.60864699 -0.36528501 0.704355\n\t\t 0.60867202 -0.36531299 0.704319 0.60870302 -0.365435 0.70422798 0.60864699 -0.36528501\n\t\t 0.704355 0.60874301 -0.365289 0.70427001 0.60867202 -0.36531299 0.704319 0.60864699\n\t\t -0.36528501 0.704355 0.131906 -0.76170897 -0.63435 0.055576 -0.88823301 -0.45601901\n\t\t 0.063693002 -0.89630902 -0.438831 0.063693002 -0.89630902 -0.438831 0.13398001 -0.75532103\n\t\t -0.641514 0.131906 -0.76170897 -0.63435 0.024385 -0.94629902 -0.32237101 0.063693002\n\t\t -0.89630902 -0.438831 0.055576 -0.88823301 -0.45601901 0.055576 -0.88823301 -0.45601901\n\t\t 0.010255 -0.932338 -0.361442 0.024385 -0.94629902 -0.32237101 -0.101904 -0.93544698\n\t\t 0.33845901 -0.098361999 -0.93128699 0.35075501 -0.111852 -0.94633698 0.30320799 -0.111852\n\t\t -0.94633698 0.30320799 -0.11591 -0.95044899 0.28846401 -0.101904 -0.93544698 0.33845901\n\t\t 0.206156 -0.565943 -0.798253 0.131906 -0.76170897 -0.63435 0.13398001 -0.75532103\n\t\t -0.641514 0.13398001 -0.75532103 -0.641514 0.206954 -0.55585301 -0.805107 0.206156\n\t\t -0.565943 -0.798253 0.27968201 -0.30687499 -0.909729 0.206156 -0.565943 -0.798253\n\t\t 0.206954 -0.55585301 -0.805107 0.206954 -0.55585301 -0.805107 0.278887 -0.29759499\n\t\t -0.91305 0.27968201 -0.30687499 -0.909729 -0.099186003 -0.194374 0.97589999 -0.11573\n\t\t -0.30888799 0.944031 -0.108893 -0.29173401 0.95028102 -0.108893 -0.29173401 0.95028102\n\t\t -0.095190004 -0.174723 0.98000598 -0.099186003 -0.194374 0.97589999 -0.081638999\n\t\t -0.065646999 0.99449801 -0.099186003 -0.194374 0.97589999 -0.095190004 -0.174723\n\t\t 0.98000598 -0.095190004 -0.174723 0.98000598 -0.083103999 -0.068363003 0.99419302\n\t\t -0.081638999 -0.065646999 0.99449801 0.32771099 -0.077822998 -0.941567 0.27968201\n\t\t -0.30687499 -0.909729 0.278887 -0.29759499 -0.91305 0.278887 -0.29759499 -0.91305\n\t\t 0.32642999 -0.073092997 -0.94239098 0.32771099 -0.077822998 -0.941567 0.36071 0.126656\n\t\t -0.92403799 0.32771099 -0.077822998 -0.941567 0.32642999 -0.073092997 -0.94239098\n\t\t 0.32642999 -0.073092997 -0.94239098 0.35972601 0.117193 -0.92566901 0.36071 0.126656\n\t\t -0.92403799 0.38854 0.36549899 -0.84584099 0.36071 0.126656 -0.92403799 0.35972601\n\t\t 0.117193 -0.92566901 0.35972601 0.117193 -0.92566901 0.387474 0.34990501 -0.85289502\n\t\t 0.38854 0.36549899 -0.84584099 0.396873 0.62952203 -0.66797698 0.38854 0.36549899\n\t\t -0.84584099 0.387474 0.34990501 -0.85289502 0.387474 0.34990501 -0.85289502 0.397995\n\t\t 0.60851401 -0.68651998 0.396873 0.62952203 -0.66797698 0.38017601 0.80921298 -0.44792899\n\t\t 0.396873 0.62952203 -0.66797698 0.397995 0.60851401 -0.68651998 0.397995 0.60851401\n\t\t -0.68651998 0.38237599 0.796767 -0.467922 0.38017601 0.80921298 -0.44792899 0.34505001\n\t\t 0.91694999 -0.200359 0.38017601 0.80921298 -0.44792899 0.38237599 0.796767 -0.467922\n\t\t 0.38237599 0.796767 -0.467922 0.33861101 0.91811198 -0.205944 0.34505001 0.91694999\n\t\t -0.200359 0.31615201 0.94732898 -0.051151 0.34505001 0.91694999 -0.200359 0.33861101\n\t\t 0.91811198 -0.205944 0.33861101 0.91811198 -0.205944 0.29942599 0.95370299 -0.028170001\n\t\t 0.31615201 0.94732898 -0.051151 0.165445 0.80265999 0.57303202 0.169412 0.80528003\n\t\t 0.56817597 0.158152 0.79772198 0.58191699 0.158152 0.79772198 0.58191699 0.15464\n\t\t 0.79532999 0.58612102 0.165445 0.80265999 0.57303202 -0.068118997 0.035859998 0.997033\n\t\t -0.053226002 0.13529199 0.989375 -0.037324999 0.160804 0.98628002 -0.037324999 0.160804\n\t\t 0.98628002 -0.059512999 0.048190001 0.99706399 -0.068118997 0.035859998 0.997033\n\t\t -0.084202997 -0.067417003 0.994165 -0.068118997 0.035859998 0.997033 -0.059512999\n\t\t 0.048190001 0.99706399 -0.059512999 0.048190001 0.99706399 -0.082645997 -0.064792\n\t\t 0.99447101 -0.084202997 -0.067417003 0.994165 -0.083103999 -0.068363003 0.99419302\n\t\t -0.084202997 -0.067417003 0.994165 -0.082645997 -0.064792 0.99447101 -0.082645997\n\t\t -0.064792 0.99447101 -0.081638999 -0.065646999 0.99449801 -0.083103999 -0.068363003\n\t\t 0.99419302 0.97904003 0.057192001 -0.195472 0.98477501 0.13000999 -0.115391 0.99920601\n\t\t -0.030091999 -0.026125001 0.98477501 0.13000999 -0.115391 0.984671 0.17362399 -0.016663\n\t\t 0.99961603 -0.01181 0.025087001 0.99961603 -0.01181 0.025087001 0.99920601 -0.030091999\n\t\t -0.026125001 0.98477501 0.13000999 -0.115391 0.99418902 -0.010285 0.107152 0.99961603\n\t\t -0.01181 0.025087001 0.984671 0.17362399 -0.016663 0.984671 0.17362399 -0.016663\n\t\t 0.97474003 0.14902399 0.16635799 0.99418902 -0.010285 0.107152 0.95814502 -0.085635997\n\t\t 0.27317601;\n\tsetAttr \".n[8632:8797]\" -type \"float3\"  0.99418902 -0.010285 0.107152 0.97474003\n\t\t 0.14902399 0.16635799 0.97474003 0.14902399 0.16635799 0.92219502 -0.023591001 0.38600501\n\t\t 0.95814502 -0.085635997 0.27317601 0.935691 -0.220532 0.275406 0.95814502 -0.085635997\n\t\t 0.27317601 0.92219502 -0.023591001 0.38600501 0.92219502 -0.023591001 0.38600501\n\t\t 0.88130498 -0.194987 0.430444 0.935691 -0.220532 0.275406 0.93520498 -0.238142 0.26207\n\t\t 0.935691 -0.220532 0.275406 0.88130498 -0.194987 0.430444 0.88130498 -0.194987 0.430444\n\t\t 0.87371498 -0.23759501 0.42446601 0.93520498 -0.238142 0.26207 0.93520498 -0.238142\n\t\t 0.26207 0.87371498 -0.23759501 0.42446601 0.87386501 -0.23948599 0.42309201 0.87386501\n\t\t -0.23948599 0.42309201 0.87273699 -0.240677 0.424741 0.93520498 -0.238142 0.26207\n\t\t 0.99920601 -0.030091999 -0.026125001 0.99512398 -0.064791001 -0.074373998 0.97904003\n\t\t 0.057192001 -0.195472 0.96548098 -0.037447002 -0.25776699 0.97904003 0.057192001\n\t\t -0.195472 0.99512398 -0.064791001 -0.074373998 0.99512398 -0.064791001 -0.074373998\n\t\t 0.98658502 -0.123052 -0.107274 0.96548098 -0.037447002 -0.25776699 0.949305 -0.13358299\n\t\t -0.284563 0.96548098 -0.037447002 -0.25776699 0.98658502 -0.123052 -0.107274 0.98658502\n\t\t -0.123052 -0.107274 0.97816199 -0.17408 -0.113561 0.949305 -0.13358299 -0.284563\n\t\t 0.949305 -0.13358299 -0.284563 0.97816199 -0.17408 -0.113561 0.96829599 -0.224526\n\t\t -0.109501 0.96829599 -0.224526 -0.109501 0.933851 -0.207132 -0.29157901 0.949305\n\t\t -0.13358299 -0.284563 0.91519397 -0.29955 -0.269611 0.933851 -0.207132 -0.29157901\n\t\t 0.96829599 -0.224526 -0.109501 0.96829599 -0.224526 -0.109501 0.95883 -0.268388 -0.092809997\n\t\t 0.91519397 -0.29955 -0.269611 0.891927 -0.39757499 -0.215405 0.91519397 -0.29955\n\t\t -0.269611 0.95883 -0.268388 -0.092809997 0.95883 -0.268388 -0.092809997 0.94382697\n\t\t -0.32401901 -0.064822003 0.891927 -0.39757499 -0.215405 0.87178701 -0.468656 -0.142648\n\t\t 0.891927 -0.39757499 -0.215405 0.94382697 -0.32401901 -0.064822003 0.94382697 -0.32401901\n\t\t -0.064822003 0.93291301 -0.359395 -0.022554001 0.87178701 -0.468656 -0.142648 0.86449403\n\t\t -0.49884 -0.06171 0.87178701 -0.468656 -0.142648 0.93291301 -0.359395 -0.022554001\n\t\t 0.93291301 -0.359395 -0.022554001 0.92530203 -0.37901399 0.012879 0.86449403 -0.49884\n\t\t -0.06171 0.86137801 -0.49950999 0.092290998 0.86449403 -0.49884 -0.06171 0.92530203\n\t\t -0.37901399 0.012879 0.92530203 -0.37901399 0.012879 0.91136801 -0.40584499 0.068545997\n\t\t 0.86137801 -0.49950999 0.092290998 0.85896897 -0.41677299 0.29744199 0.86137801 -0.49950999\n\t\t 0.092290998 0.91136801 -0.40584499 0.068545997 0.91136801 -0.40584499 0.068545997\n\t\t 0.876697 -0.43770701 0.199535 0.85896897 -0.41677299 0.29744199 0.872446 -0.27113\n\t\t 0.40660399 0.85896897 -0.41677299 0.29744199 0.876697 -0.43770701 0.199535 0.876697\n\t\t -0.43770701 0.199535 0.92787701 -0.257918 0.26930201 0.872446 -0.27113 0.40660399\n\t\t 0.87386501 -0.23948599 0.42309201 0.872446 -0.27113 0.40660399 0.92787701 -0.257918\n\t\t 0.26930201 0.92787701 -0.257918 0.26930201 0.87273699 -0.240677 0.424741 0.87386501\n\t\t -0.23948599 0.42309201 0.92787701 -0.257918 0.26930201 0.876697 -0.43770701 0.199535\n\t\t 0.91136801 -0.40584499 0.068545997 0.92787701 -0.257918 0.26930201 0.91136801 -0.40584499\n\t\t 0.068545997 0.93291301 -0.359395 -0.022554001 0.91136801 -0.40584499 0.068545997\n\t\t 0.92530203 -0.37901399 0.012879 0.93291301 -0.359395 -0.022554001 0.92787701 -0.257918\n\t\t 0.26930201 0.93291301 -0.359395 -0.022554001 0.96829599 -0.224526 -0.109501 0.93291301\n\t\t -0.359395 -0.022554001 0.94382697 -0.32401901 -0.064822003 0.96829599 -0.224526 -0.109501\n\t\t 0.94382697 -0.32401901 -0.064822003 0.95883 -0.268388 -0.092809997 0.96829599 -0.224526\n\t\t -0.109501 0.92787701 -0.257918 0.26930201 0.96829599 -0.224526 -0.109501 0.93520498\n\t\t -0.238142 0.26207 0.96829599 -0.224526 -0.109501 0.99961603 -0.01181 0.025087001\n\t\t 0.93520498 -0.238142 0.26207 0.96829599 -0.224526 -0.109501 0.98658502 -0.123052\n\t\t -0.107274 0.99961603 -0.01181 0.025087001 0.96829599 -0.224526 -0.109501 0.97816199\n\t\t -0.17408 -0.113561 0.98658502 -0.123052 -0.107274 0.98658502 -0.123052 -0.107274\n\t\t 0.99512398 -0.064791001 -0.074373998 0.99961603 -0.01181 0.025087001 0.99512398 -0.064791001\n\t\t -0.074373998 0.99920601 -0.030091999 -0.026125001 0.99961603 -0.01181 0.025087001\n\t\t 0.99961603 -0.01181 0.025087001 0.935691 -0.220532 0.275406 0.93520498 -0.238142\n\t\t 0.26207 0.99961603 -0.01181 0.025087001 0.99418902 -0.010285 0.107152 0.935691 -0.220532\n\t\t 0.275406 0.99418902 -0.010285 0.107152 0.95814502 -0.085635997 0.27317601 0.935691\n\t\t -0.220532 0.275406 0.40425599 -0.019227 -0.91444403 0.40425599 -0.019227 -0.91444403\n\t\t 0.83884799 0.024355 0.54382002 0.96795398 0.202558 0.14844599 0.96433598 0.209268\n\t\t 0.162055 0.96971798 0.173472 0.17191499 0.96971798 0.173472 0.17191499 0.97069597\n\t\t 0.185771 0.15244401 0.96795398 0.202558 0.14844599 0.97394598 0.162269 0.15842301\n\t\t 0.97069597 0.185771 0.15244401 0.96971798 0.173472 0.17191499 0.96971798 0.173472\n\t\t 0.17191499 0.97292399 0.13755099 0.18573999 0.97394598 0.162269 0.15842301 0.97292399\n\t\t 0.13755099 0.18573999 0.96971798 0.173472 0.17191499 0.966555 0.174964 0.18750601\n\t\t 0.966555 0.174964 0.18750601 0.97207302 0.058109 0.22736999 0.97292399 0.13755099\n\t\t 0.18573999 0.93877101 0.297685 0.173471 0.966555 0.174964 0.18750601 0.96971798 0.173472\n\t\t 0.17191499 0.96971798 0.173472 0.17191499 0.96433598 0.209268 0.162055 0.93877101\n\t\t 0.297685 0.173471 0.93877101 0.297685 0.173471 0.96433598 0.209268 0.162055;\n\tsetAttr \".n[8798:8963]\" -type \"float3\"  0.94230002 0.24579901 0.227274 0.94230002\n\t\t 0.24579901 0.227274 0.93829602 0.25098601 0.237923 0.93877101 0.297685 0.173471 0.957838\n\t\t 0.143806 0.24873 0.97292399 0.13755099 0.18573999 0.97207302 0.058109 0.22736999\n\t\t 0.97207302 0.058109 0.22736999 0.95548898 0.144508 0.25721401 0.957838 0.143806 0.24873\n\t\t 0.88078499 0.26139799 0.39482701 0.886756 0.21171001 0.41090599 0.93046403 0.186258\n\t\t 0.31550601 0.93046403 0.186258 0.31550601 0.927405 0.22040699 0.30222699 0.88078499\n\t\t 0.26139799 0.39482701 0.927405 0.22040699 0.30222699 0.93046403 0.186258 0.31550601\n\t\t 0.955989 0.16425601 0.243117 0.955989 0.16425601 0.243117 0.95330501 0.190411 0.23442\n\t\t 0.927405 0.22040699 0.30222699 0.886756 0.21171001 0.41090599 0.88078499 0.26139799\n\t\t 0.39482701 0.82127303 0.29597601 0.48775899 0.82127303 0.29597601 0.48775899 0.82898498\n\t\t 0.23441599 0.50777298 0.886756 0.21171001 0.41090599 0.96120399 0.18275 0.206615\n\t\t 0.95330501 0.190411 0.23442 0.955989 0.16425601 0.243117 0.955989 0.16425601 0.243117\n\t\t 0.96391898 0.158029 0.214214 0.96120399 0.18275 0.206615 0.92262501 0.25395 0.29029801\n\t\t 0.927405 0.22040699 0.30222699 0.95330501 0.190411 0.23442 0.88078499 0.26139799\n\t\t 0.39482701 0.927405 0.22040699 0.30222699 0.92262501 0.25395 0.29029801 0.95330501\n\t\t 0.190411 0.23442 0.94871902 0.21726599 0.229626 0.92262501 0.25395 0.29029801 0.92262501\n\t\t 0.25395 0.29029801 0.87520701 0.30653799 0.37423 0.88078499 0.26139799 0.39482701\n\t\t 0.82127303 0.29597601 0.48775899 0.88078499 0.26139799 0.39482701 0.87520701 0.30653799\n\t\t 0.37423 0.87520701 0.30653799 0.37423 0.81662798 0.34675801 0.46138701 0.82127303\n\t\t 0.29597601 0.48775899 0.74532199 0.32234901 0.58359802 0.82127303 0.29597601 0.48775899\n\t\t 0.81662798 0.34675801 0.46138701 0.82898498 0.23441599 0.50777298 0.82127303 0.29597601\n\t\t 0.48775899 0.74532199 0.32234901 0.58359802 0.81662798 0.34675801 0.46138701 0.74509603\n\t\t 0.381612 0.546996 0.74532199 0.32234901 0.58359802 0.74532199 0.32234901 0.58359802\n\t\t 0.74509603 0.381612 0.546996 0.63334697 0.412873 0.65452802 0.63334697 0.412873 0.65452802\n\t\t 0.63020098 0.344751 0.695696 0.74532199 0.32234901 0.58359802 0.63020098 0.344751\n\t\t 0.695696 0.63334697 0.412873 0.65452802 0.54110402 0.41506001 0.73139 0.54110402\n\t\t 0.41506001 0.73139 0.54076499 0.358293 0.761051 0.63020098 0.344751 0.695696 0.74532199\n\t\t 0.32234901 0.58359802 0.63020098 0.344751 0.695696 0.63504601 0.28154099 0.71934098\n\t\t 0.63504601 0.28154099 0.71934098 0.63020098 0.344751 0.695696 0.54076499 0.358293\n\t\t 0.761051 0.63504601 0.28154099 0.71934098 0.749551 0.25816199 0.60952902 0.74532199\n\t\t 0.32234901 0.58359802 0.74532199 0.32234901 0.58359802 0.749551 0.25816199 0.60952902\n\t\t 0.82898498 0.23441599 0.50777298 0.54076499 0.358293 0.761051 0.56482798 0.30507499\n\t\t 0.76674598 0.63504601 0.28154099 0.71934098 0.56482798 0.30507499 0.76674598 0.54076499\n\t\t 0.358293 0.761051 0.55575597 0.30858099 0.771954 0.54076499 0.358293 0.761051 0.52628201\n\t\t 0.35311401 0.77352297 0.55575597 0.30858099 0.771954 0.52628201 0.35311401 0.77352297\n\t\t 0.57757401 0.314042 0.75351602 0.55575597 0.30858099 0.771954 0.531313 0.40984601\n\t\t 0.74144 0.52628201 0.35311401 0.77352297 0.54076499 0.358293 0.761051 0.54110402\n\t\t 0.41506001 0.73139 0.531313 0.40984601 0.74144 0.54076499 0.358293 0.761051 0.54110402\n\t\t 0.41506001 0.73139 0.53124398 0.41368601 0.73935401 0.531313 0.40984601 0.74144 0.54110402\n\t\t 0.41506001 0.73139 0.53166902 0.41298199 0.73944199 0.53124398 0.41368601 0.73935401\n\t\t 0.95735699 0.207348 0.20118301 0.94871902 0.21726599 0.229626 0.95330501 0.190411\n\t\t 0.23442 0.95330501 0.190411 0.23442 0.96120399 0.18275 0.206615 0.95735699 0.207348\n\t\t 0.20118301 0.50603199 -0.059237 -0.86047798 0.50631398 -0.059757002 -0.86027598 0.51104099\n\t\t -0.062105998 -0.85731 0.51104099 -0.062105998 -0.85731 0.510988 -0.061923999 -0.85735399\n\t\t 0.50603199 -0.059237 -0.86047798 0.515715 -0.065342002 -0.85426497 0.510988 -0.061923999\n\t\t -0.85735399 0.51104099 -0.062105998 -0.85731 0.51104099 -0.062105998 -0.85731 0.51513702\n\t\t -0.066653997 -0.85451198 0.515715 -0.065342002 -0.85426497 0.51513702 -0.066653997\n\t\t -0.85451198 0.51104099 -0.062105998 -0.85731 0.51091802 -0.062289 -0.85737002 0.51091802\n\t\t -0.062289 -0.85737002 0.513385 -0.068269998 -0.85543799 0.51513702 -0.066653997 -0.85451198\n\t\t 0.51611203 -0.069247998 -0.85371703 0.51513702 -0.066653997 -0.85451198 0.513385\n\t\t -0.068269998 -0.85543799 0.513385 -0.068269998 -0.85543799 0.51565099 -0.067844003\n\t\t -0.85410798 0.51611203 -0.069247998 -0.85371703 0.51242298 -0.068302996 -0.85601199\n\t\t 0.51611203 -0.069247998 -0.85371703 0.51565099 -0.067844003 -0.85410798 0.51565099\n\t\t -0.067844003 -0.85410798 0.512389 -0.068241 -0.85603702 0.51242298 -0.068302996 -0.85601199\n\t\t 0.50940001 -0.061496999 -0.858329 0.51242298 -0.068302996 -0.85601199 0.512389 -0.068241\n\t\t -0.85603702 0.512389 -0.068241 -0.85603702 0.50961202 -0.062351 -0.85814202 0.50940001\n\t\t -0.061496999 -0.858329 0.50631398 -0.059757002 -0.86027598 0.50940001 -0.061496999\n\t\t -0.858329 0.50961202 -0.062351 -0.85814202 0.50570297 -0.063510001 -0.860367 0.51091802\n\t\t -0.062289 -0.85737002 0.51104099 -0.062105998 -0.85731 0.51104099 -0.062105998 -0.85731\n\t\t 0.50631398 -0.059757002 -0.86027598 0.50570297 -0.063510001 -0.860367 0.50961202\n\t\t -0.062351 -0.85814202 0.50570297 -0.063510001 -0.860367 0.50631398 -0.059757002 -0.86027598\n\t\t 0.23533 0.95762002 -0.16608401 0.23228 0.95689398 -0.174355 0.2115 0.96029699 -0.181927;\n\tsetAttr \".n[8964:9129]\" -type \"float3\"  0.23753101 0.95741802 -0.164102 0.23533\n\t\t 0.95762002 -0.16608401 0.2115 0.96029699 -0.181927 0.195567 0.96272802 -0.186839\n\t\t 0.23753101 0.95741802 -0.164102 0.2115 0.96029699 -0.181927 0.23533 0.95762002 -0.16608401\n\t\t 0.23753101 0.95741802 -0.164102 0.22571699 0.96311098 -0.146521 0.22571699 0.96311098\n\t\t -0.146521 0.222267 0.963292 -0.15054899 0.23533 0.95762002 -0.16608401 0.222267 0.963292\n\t\t -0.15054899 0.22571699 0.96311098 -0.146521 0.196514 0.97173703 -0.130806 0.196514\n\t\t 0.97173703 -0.130806 0.199166 0.97099 -0.13233 0.222267 0.963292 -0.15054899 0.14725199\n\t\t 0.98334098 -0.106571 0.199166 0.97099 -0.13233 0.196514 0.97173703 -0.130806 0.196514\n\t\t 0.97173703 -0.130806 0.137612 0.98468 -0.107093 0.14725199 0.98334098 -0.106571 0.106662\n\t\t 0.99081898 -0.083071999 0.14725199 0.98334098 -0.106571 0.137612 0.98468 -0.107093\n\t\t 0.137612 0.98468 -0.107093 0.096896999 0.99182701 -0.083011001 0.106662 0.99081898\n\t\t -0.083071999 0.067873999 0.99556398 -0.065158002 0.106662 0.99081898 -0.083071999\n\t\t 0.096896999 0.99182701 -0.083011001 0.096896999 0.99182701 -0.083011001 0.059572\n\t\t 0.99601102 -0.066439003 0.067873999 0.99556398 -0.065158002 0.025697 0.99781197 -0.060915999\n\t\t 0.067873999 0.99556398 -0.065158002 0.059572 0.99601102 -0.066439003 0.059572 0.99601102\n\t\t -0.066439003 0.018159 0.99772799 -0.064884 0.025697 0.99781197 -0.060915999 -0.114936\n\t\t 0.99145001 0.061771002 0.025697 0.99781197 -0.060915999 0.018159 0.99772799 -0.064884\n\t\t 0.018159 0.99772799 -0.064884 -0.15165 0.98326498 0.100957 -0.114936 0.99145001 0.061771002\n\t\t -0.281021 0.91893297 0.276748 -0.114936 0.99145001 0.061771002 -0.15165 0.98326498\n\t\t 0.100957 -0.15165 0.98326498 0.100957 -0.29252499 0.909895 0.29414299 -0.281021 0.91893297\n\t\t 0.276748 -0.389117 0.804205 0.449269 -0.281021 0.91893297 0.276748 -0.29252499 0.909895\n\t\t 0.29414299 -0.29252499 0.909895 0.29414299 -0.400967 0.78505498 0.47213799 -0.389117\n\t\t 0.804205 0.449269 -0.389117 0.804205 0.449269 -0.400967 0.78505498 0.47213799 -0.50270498\n\t\t 0.56911302 0.65069002 -0.50270498 0.56911302 0.65069002 -0.51000702 0.56774902 0.64618403\n\t\t -0.389117 0.804205 0.449269 -0.51000702 0.56774902 0.64618403 -0.50270498 0.56911302\n\t\t 0.65069002 -0.55411202 0.29991499 0.77653801 -0.55411202 0.29991499 0.77653801 -0.55325198\n\t\t 0.32612801 0.76652002 -0.51000702 0.56774902 0.64618403 -0.48320401 0.017121 0.87533998\n\t\t -0.55325198 0.32612801 0.76652002 -0.55411202 0.29991499 0.77653801 -0.55411202 0.29991499\n\t\t 0.77653801 -0.46688399 -0.035769001 0.88359499 -0.48320401 0.017121 0.87533998 -0.381185\n\t\t -0.179331 0.90693903 -0.48320401 0.017121 0.87533998 -0.46688399 -0.035769001 0.88359499\n\t\t -0.46688399 -0.035769001 0.88359499 -0.38060501 -0.18055201 0.90693998 -0.381185\n\t\t -0.179331 0.90693903 -0.062655002 -0.579368 0.81265402 -0.045899998 -0.587668 0.80779898\n\t\t -0.048829999 -0.58624101 0.80866402 -0.048829999 -0.58624101 0.80866402 -0.066592\n\t\t -0.577384 0.813752 -0.062655002 -0.579368 0.81265402 0.33085799 -0.79471898 0.50887603\n\t\t 0.321365 -0.80112201 0.50490499 0.394463 -0.78041101 0.485136 0.394463 -0.78041101\n\t\t 0.485136 0.39824501 -0.77436298 0.491694 0.33085799 -0.79471898 0.50887603 0.45028201\n\t\t -0.788405 0.41912201 0.39824501 -0.77436298 0.491694 0.394463 -0.78041101 0.485136\n\t\t 0.394463 -0.78041101 0.485136 0.44850999 -0.79160601 0.414969 0.45028201 -0.788405\n\t\t 0.41912201 0.47463101 -0.799016 0.36918801 0.45028201 -0.788405 0.41912201 0.44850999\n\t\t -0.79160601 0.414969 0.44850999 -0.79160601 0.414969 0.473286 -0.80157697 0.36534101\n\t\t 0.47463101 -0.799016 0.36918801 0.48995599 -0.80903399 0.324664 0.47463101 -0.799016\n\t\t 0.36918801 0.473286 -0.80157697 0.36534101 0.473286 -0.80157697 0.36534101 0.488161\n\t\t -0.81151497 0.32115799 0.48995599 -0.80903399 0.324664 0.493714 -0.82442302 0.27671999\n\t\t 0.48995599 -0.80903399 0.324664 0.488161 -0.81151497 0.32115799 0.488161 -0.81151497\n\t\t 0.32115799 0.491108 -0.82669199 0.27457699 0.493714 -0.82442302 0.27671999 0.493256\n\t\t -0.836721 0.23789901 0.493714 -0.82442302 0.27671999 0.491108 -0.82669199 0.27457699\n\t\t 0.491108 -0.82669199 0.27457699 0.49217901 -0.83774501 0.236522 0.493256 -0.836721\n\t\t 0.23789901 0.493256 -0.836721 0.23789901 0.49217901 -0.83774501 0.236522 0.50079203\n\t\t -0.84153998 0.202526 0.50079203 -0.84153998 0.202526 0.499726 -0.84227598 0.20209999\n\t\t 0.493256 -0.836721 0.23789901 0.50079203 -0.84153998 0.202526 0.51012599 -0.84028101\n\t\t 0.18357199 0.499726 -0.84227598 0.20209999 0.50079203 -0.84153998 0.202526 0.51156098\n\t\t -0.83921403 0.184458 0.51012599 -0.84028101 0.18357199 -0.52017099 0.074375004 0.85081702\n\t\t -0.52017099 0.074375004 0.85081702 -0.52017099 0.074375004 0.85081702 0.91654903\n\t\t 0.271651 0.293502 0.93829602 0.25098601 0.237923 0.94230002 0.24579901 0.227274 0.94230002\n\t\t 0.24579901 0.227274 0.91654497 0.27186301 0.293318 0.91654903 0.271651 0.293502 0.86670297\n\t\t 0.32750899 0.37624899 0.91654903 0.271651 0.293502 0.91654497 0.27186301 0.293318\n\t\t 0.91654497 0.27186301 0.293318 0.86669302 0.32796299 0.37587801 0.86670297 0.32750899\n\t\t 0.37624899 0.80815297 0.36394399 0.46307001 0.86670297 0.32750899 0.37624899 0.86669302\n\t\t 0.32796299 0.37587801 0.86669302 0.32796299 0.37587801 0.80825001 0.36434299 0.46258599\n\t\t 0.80815297 0.36394399 0.46307001 0.73365903 0.395381 0.55264699 0.80815297 0.36394399\n\t\t 0.46307001 0.80825001 0.36434299 0.46258599 0.80825001 0.36434299 0.46258599 0.73386699\n\t\t 0.39568299 0.55215502 0.73365903 0.395381 0.55264699 0.62042701 0.428247 0.65701997;\n\tsetAttr \".n[9130:9295]\" -type \"float3\"  0.73365903 0.395381 0.55264699 0.73386699\n\t\t 0.39568299 0.55215502 0.73386699 0.39568299 0.55215502 0.62241697 0.42932001 0.654432\n\t\t 0.62042701 0.428247 0.65701997 0.487059 0.53595197 0.68958598 0.62042701 0.428247\n\t\t 0.65701997 0.62241697 0.42932001 0.654432 0.62241697 0.42932001 0.654432 0.48428699\n\t\t 0.53400397 0.69304198 0.487059 0.53595197 0.68958598 0.487059 0.53595197 0.68958598\n\t\t 0.48428699 0.53400397 0.69304198 0.43867901 0.53609502 0.721223 0.43867901 0.53609502\n\t\t 0.721223 0.43917301 0.536744 0.72043902 0.487059 0.53595197 0.68958598 0.38527599\n\t\t 0.53183103 0.754134 0.43917301 0.536744 0.72043902 0.43867901 0.53609502 0.721223\n\t\t 0.43867901 0.53609502 0.721223 0.39079499 0.53875202 0.746342 0.38527599 0.53183103\n\t\t 0.754134 0.26835701 0.4971 0.82515198 0.38527599 0.53183103 0.754134 0.39079499 0.53875202\n\t\t 0.746342 0.39079499 0.53875202 0.746342 0.31242099 0.52101803 0.79431301 0.26835701\n\t\t 0.4971 0.82515198 0.26835701 0.4971 0.82515198 0.31242099 0.52101803 0.79431301 0.084841996\n\t\t 0.40028599 0.91245401 0.084841996 0.40028599 0.91245401 -0.18555599 0.39104199 0.901474\n\t\t 0.26835701 0.4971 0.82515198 -0.18555599 0.39104199 0.901474 0.084841996 0.40028599\n\t\t 0.91245401 0.125615 0.15558501 0.97980303 0.125615 0.15558501 0.97980303 -0.168102\n\t\t 0.134836 0.97650498 -0.18555599 0.39104199 0.901474 0.28388599 0.046236001 0.95774299\n\t\t -0.168102 0.134836 0.97650498 0.125615 0.15558501 0.97980303 0.125615 0.15558501\n\t\t 0.97980303 0.30891499 0.034639001 0.950459 0.28388599 0.046236001 0.95774299 0.51141202\n\t\t -0.058871001 0.85731697 0.28388599 0.046236001 0.95774299 0.30891499 0.034639001\n\t\t 0.950459 0.30891499 0.034639001 0.950459 0.48394901 -0.031221 0.87453902 0.51141202\n\t\t -0.058871001 0.85731697 0.64462501 0.253553 0.721228 0.51141202 -0.058871001 0.85731697\n\t\t 0.48394901 -0.031221 0.87453902 0.48394901 -0.031221 0.87453902 0.64230698 0.257063\n\t\t 0.72205299 0.64462501 0.253553 0.721228 0.75861198 0.236157 0.60723799 0.64462501\n\t\t 0.253553 0.721228 0.64230698 0.257063 0.72205299 0.64230698 0.257063 0.72205299 0.75841397\n\t\t 0.23597801 0.60755497 0.75861198 0.236157 0.60723799 0.834122 0.21812101 0.50661999\n\t\t 0.75861198 0.236157 0.60723799 0.75841397 0.23597801 0.60755497 0.75841397 0.23597801\n\t\t 0.60755497 0.83402997 0.21790799 0.50686401 0.834122 0.21812101 0.50661999 0.89112598\n\t\t 0.19874001 0.40791801 0.834122 0.21812101 0.50661999 0.83402997 0.21790799 0.50686401\n\t\t 0.83402997 0.21790799 0.50686401 0.89110202 0.19852801 0.40807301 0.89112598 0.19874001\n\t\t 0.40791801 0.93449301 0.17023601 0.312637 0.89112598 0.19874001 0.40791801 0.89110202\n\t\t 0.19852801 0.40807301 0.89110202 0.19852801 0.40807301 0.934542 0.169903 0.31267399\n\t\t 0.93449301 0.17023601 0.312637 0.95548898 0.144508 0.25721401 0.93449301 0.17023601\n\t\t 0.312637 0.934542 0.169903 0.31267399 0.934542 0.169903 0.31267399 0.957838 0.143806\n\t\t 0.24873 0.95548898 0.144508 0.25721401 0.603127 -0.20277099 -0.771442 0.60358799\n\t\t -0.17634299 -0.77754998 0.603432 -0.176494 -0.777637 0.603432 -0.176494 -0.777637\n\t\t 0.60260397 -0.202831 -0.77183402 0.603127 -0.20277099 -0.771442 0.59960997 -0.150307\n\t\t -0.78605098 0.603432 -0.176494 -0.777637 0.60358799 -0.17634299 -0.77754998 0.60358799\n\t\t -0.17634299 -0.77754998 0.59952199 -0.150308 -0.78611702 0.59960997 -0.150307 -0.78605098\n\t\t 0.145757 0.97214597 -0.18354 0.139291 0.97360098 -0.18082801 0.13965601 0.973719\n\t\t -0.179911 0.13965601 0.973719 -0.179911 0.14643 0.97206199 -0.18345 0.145757 0.97214597\n\t\t -0.18354 0.111976 0.97903597 -0.170146 0.13965601 0.973719 -0.179911 0.139291 0.97360098\n\t\t -0.18082801 0.139291 0.97360098 -0.18082801 0.110691 0.97913498 -0.170417 0.111976\n\t\t 0.97903597 -0.170146 0.059450001 0.98542202 -0.1594 0.111976 0.97903597 -0.170146\n\t\t 0.110691 0.97913498 -0.170417 0.110691 0.97913498 -0.170417 0.058139 0.98537201 -0.16019499\n\t\t 0.059450001 0.98542202 -0.1594 0.024537001 0.98943001 -0.142921 0.059450001 0.98542202\n\t\t -0.1594 0.058139 0.98537201 -0.16019499 0.058139 0.98537201 -0.16019499 0.023255\n\t\t 0.98939902 -0.14334799 0.024537001 0.98943001 -0.142921 -0.0062870001 0.99131602\n\t\t -0.131354 0.024537001 0.98943001 -0.142921 0.023255 0.98939902 -0.14334799 0.023255\n\t\t 0.98939902 -0.14334799 -0.0067449999 0.99136102 -0.130989 -0.0062870001 0.99131602\n\t\t -0.131354 -0.0062870001 0.99131602 -0.131354 -0.0067449999 0.99136102 -0.130989 -0.033601001\n\t\t 0.99008602 -0.136388 -0.033601001 0.99008602 -0.136388 -0.033511002 0.99017602 -0.13575099\n\t\t -0.0062870001 0.99131602 -0.131354 -0.14878 0.988509 -0.026735 -0.033511002 0.99017602\n\t\t -0.13575099 -0.033601001 0.99008602 -0.136388 -0.033601001 0.99008602 -0.136388 -0.191173\n\t\t 0.98076802 0.039338998 -0.14878 0.988509 -0.026735 -0.14878 0.988509 -0.026735 -0.191173\n\t\t 0.98076802 0.039338998 -0.302598 0.916704 0.260939 -0.302598 0.916704 0.260939 -0.29124501\n\t\t 0.92778301 0.233228 -0.14878 0.988509 -0.026735 -0.364795 0.82776898 0.42629001 -0.29124501\n\t\t 0.92778301 0.233228 -0.302598 0.916704 0.260939 -0.302598 0.916704 0.260939 -0.37716299\n\t\t 0.80269903 0.46197701 -0.364795 0.82776898 0.42629001 -0.439937 0.612616 0.65662497\n\t\t -0.364795 0.82776898 0.42629001 -0.37716299 0.80269903 0.46197701 -0.37716299 0.80269903\n\t\t 0.46197701 -0.44097 0.60275102 0.66500902 -0.439937 0.612616 0.65662497 -0.439937\n\t\t 0.612616 0.65662497 -0.44097 0.60275102 0.66500902 -0.18555599 0.39104199 0.901474\n\t\t -0.18555599 0.39104199 0.901474 -0.470094 0.36147499 0.80519998;\n\tsetAttr \".n[9296:9461]\" -type \"float3\"  -0.439937 0.612616 0.65662497 -0.470094\n\t\t 0.36147499 0.80519998 -0.18555599 0.39104199 0.901474 -0.168102 0.134836 0.97650498\n\t\t -0.168102 0.134836 0.97650498 -0.399066 0.053041998 0.91538697 -0.470094 0.36147499\n\t\t 0.80519998 -0.153754 -0.35414201 0.92246598 -0.399066 0.053041998 0.91538697 -0.168102\n\t\t 0.134836 0.97650498 -0.168102 0.134836 0.97650498 -0.170756 -0.34590599 0.92259997\n\t\t -0.153754 -0.35414201 0.92246598 -0.024537999 -0.55041999 0.83452702 -0.153754 -0.35414201\n\t\t 0.92246598 -0.170756 -0.34590599 0.92259997 -0.170756 -0.34590599 0.92259997 -0.027497999\n\t\t -0.56543601 0.82433403 -0.024537999 -0.55041999 0.83452702 0.35067099 -0.827815 0.43789601\n\t\t 0.33690301 -0.806198 0.48635599 0.33586401 -0.80765998 0.48464501 0.33586401 -0.80765998\n\t\t 0.48464501 0.35301399 -0.828592 0.43452999 0.35067099 -0.827815 0.43789601 0.38616201\n\t\t -0.842457 0.37569401 0.35067099 -0.827815 0.43789601 0.35301399 -0.828592 0.43452999\n\t\t 0.35301399 -0.828592 0.43452999 0.38555101 -0.84291297 0.375296 0.38616201 -0.842457\n\t\t 0.37569401 0.40528801 -0.85113603 0.33363 0.38616201 -0.842457 0.37569401 0.38555101\n\t\t -0.84291297 0.375296 0.38555101 -0.84291297 0.375296 0.40495399 -0.85153401 0.33302099\n\t\t 0.40528801 -0.85113603 0.33363 0.415245 -0.85991001 0.29686099 0.40528801 -0.85113603\n\t\t 0.33363 0.40495399 -0.85153401 0.33302099 0.40495399 -0.85153401 0.33302099 0.41564599\n\t\t -0.85997897 0.29609999 0.415245 -0.85991001 0.29686099 0.415245 -0.85991001 0.29686099\n\t\t 0.41564599 -0.85997897 0.29609999 0.41314 -0.87352401 0.257431 0.41314 -0.87352401\n\t\t 0.257431 0.413082 -0.87356001 0.257402 0.415245 -0.85991001 0.29686099 0.412159 -0.88205802\n\t\t 0.228251 0.413082 -0.87356001 0.257402 0.41314 -0.87352401 0.257431 0.41314 -0.87352401\n\t\t 0.257431 0.41253099 -0.88231599 0.226576 0.412159 -0.88205802 0.228251 0.41554499\n\t\t -0.88312298 0.21775199 0.412159 -0.88205802 0.228251 0.41253099 -0.88231599 0.226576\n\t\t 0.41253099 -0.88231599 0.226576 0.41548601 -0.88315803 0.217723 0.41554499 -0.88312298\n\t\t 0.21775199 0.50627702 -0.062380001 -0.86011201 0.51339 -0.066196002 -0.85559899 0.50969899\n\t\t -0.064241998 -0.85795099 0.50969899 -0.064241998 -0.85795099 0.50320297 -0.060488999\n\t\t -0.86204898 0.50627702 -0.062380001 -0.86011201 0.51632398 -0.067295 -0.85374498\n\t\t 0.50969899 -0.064241998 -0.85795099 0.51339 -0.066196002 -0.85559899 0.51339 -0.066196002\n\t\t -0.85559899 0.52099597 -0.069462001 -0.85072798 0.51632398 -0.067295 -0.85374498\n\t\t -0.97349399 -0.183663 -0.136298 -0.97345102 -0.183911 -0.13627 -0.97099 -0.198434\n\t\t -0.13342901 -0.97099 -0.198434 -0.13342901 -0.97098798 -0.19846401 -0.133398 -0.97349399\n\t\t -0.183663 -0.136298 -0.97345102 -0.183911 -0.13627 -0.97349399 -0.183663 -0.136298\n\t\t -0.97573203 -0.169108 -0.139107 -0.97573203 -0.169108 -0.139107 -0.97573602 -0.169108\n\t\t -0.13907699 -0.97345102 -0.183911 -0.13627 -0.53542501 0.81372702 -0.226207 -0.53542501\n\t\t 0.81372702 -0.226207 -0.53542501 0.81372702 -0.226207 -0.53542501 0.81372702 -0.226207\n\t\t -0.53542501 0.81372702 -0.226207 -0.53542501 0.81372702 -0.226207 0.97359598 0.183055\n\t\t 0.136391 0.97350502 0.183605 0.136299 0.97648197 0.16391701 0.14005101 0.97648197\n\t\t 0.16391701 0.14005101 0.97648197 0.16391701 0.14005101 0.97359598 0.183055 0.136391\n\t\t 0.97350502 0.183605 0.136299 0.97359598 0.183055 0.136391 0.97022998 0.202677 0.13257501\n\t\t 0.97022998 0.202677 0.13257501 0.97022998 0.202677 0.13257501 0.97350502 0.183605\n\t\t 0.136299 -0.25175399 -0.96083999 0.11579 -0.25175399 -0.96084303 0.11576 -0.25175399\n\t\t -0.96084303 0.11576 -0.25175399 -0.96084303 0.11576 -0.25172499 -0.96084702 0.115791\n\t\t -0.25175399 -0.96083999 0.11579 0.67501497 -0.62127101 0.39796501 0.45718101 -0.853688\n\t\t 0.249404 0.55236602 -0.83249998 0.042849001 0.55236602 -0.83249998 0.042849001 0.78812599\n\t\t -0.58071798 0.20401999 0.67501497 -0.62127101 0.39796501 0.67501497 -0.62127101 0.39796501\n\t\t 0.78812599 -0.58071798 0.20401999 0.89623499 -0.252884 0.36443299 0.89623499 -0.252884\n\t\t 0.36443299 0.77473903 -0.318593 0.546148 0.67501497 -0.62127101 0.39796501 0.55236602\n\t\t -0.83249998 0.042849001 0.45718101 -0.853688 0.249404 0.15518799 -0.98032498 0.121984\n\t\t 0.15518799 -0.98032498 0.121984 0.225017 -0.96971202 -0.095005997 0.55236602 -0.83249998\n\t\t 0.042849001 -0.144109 -0.97150499 -0.188179 0.225017 -0.96971202 -0.095005997 0.15518799\n\t\t -0.98032498 0.121984 0.15518799 -0.98032498 0.121984 -0.185525 -0.98198098 0.035982002\n\t\t -0.144109 -0.97150499 -0.188179 0.74182898 0.0084539996 0.67053598 0.77473903 -0.318593\n\t\t 0.546148 0.89623499 -0.252884 0.36443299 0.89623499 -0.252884 0.36443299 0.86046702\n\t\t 0.101325 0.49933001 0.74182898 0.0084539996 0.67053598 0.74182898 0.0084539996 0.67053598\n\t\t 0.86046702 0.101325 0.49933001 0.68610001 0.42787799 0.588377 0.68610001 0.42787799\n\t\t 0.588377 0.58084297 0.30980101 0.75275803 0.74182898 0.0084539996 0.67053598 0.31654301\n\t\t 0.53994203 0.77991301 0.58084297 0.30980101 0.75275803 0.68610001 0.42787799 0.588377\n\t\t 0.68610001 0.42787799 0.588377 0.39977199 0.67710102 0.61783201 0.31654301 0.53994203\n\t\t 0.77991301 0.31654301 0.53994203 0.77991301 0.39977199 0.67710102 0.61783201 0.045045\n\t\t 0.81094003 0.58339298 0.045045 0.81094003 0.58339298 -0.010895 0.66341901 0.748169\n\t\t 0.31654301 0.53994203 0.77991301 -0.351677 0.66163301 0.66224301 -0.010895 0.66341901\n\t\t 0.748169 0.045045 0.81094003 0.58339298 0.045045 0.81094003 0.58339298 -0.324058\n\t\t 0.80910701 0.490237 -0.351677 0.66163301 0.66224301 -0.351677 0.66163301 0.66224301\n\t\t -0.324058 0.80910701 0.490237 -0.65142602 0.67187297 0.35246301;\n\tsetAttr \".n[9462:9627]\" -type \"float3\"  -0.65142602 0.67187297 0.35246301 -0.65385503\n\t\t 0.53491902 0.53510302 -0.351677 0.66163301 0.66224301 -0.87143898 0.30268699 0.38597301\n\t\t -0.65385503 0.53491902 0.53510302 -0.65142602 0.67187297 0.35246301 -0.65142602 0.67187297\n\t\t 0.35246301 -0.88709801 0.42018601 0.19104899 -0.87143898 0.30268699 0.38597301 -0.87143898\n\t\t 0.30268699 0.38597301 -0.88709801 0.42018601 0.19104899 -0.99526 0.092258997 0.030763\n\t\t -0.99526 0.092258997 0.030763 -0.97124499 -3.1e-05 0.23808099 -0.87143898 0.30268699\n\t\t 0.38597301 -0.93818998 -0.326983 0.113501 -0.97124499 -3.1e-05 0.23808099 -0.99526\n\t\t 0.092258997 0.030763 -0.99526 0.092258997 0.030763 -0.95944899 -0.26194301 -0.10413\n\t\t -0.93818998 -0.326983 0.113501 -0.93818998 -0.326983 0.113501 -0.95944899 -0.26194301\n\t\t -0.10413 -0.78511101 -0.58844501 -0.19321799 -0.78511101 -0.58844501 -0.19321799\n\t\t -0.77729702 -0.62836301 0.031129999 -0.93818998 -0.326983 0.113501 -0.51296002 -0.85840303\n\t\t 0.0040290002 -0.77729702 -0.62836301 0.031129999 -0.78511101 -0.58844501 -0.19321799\n\t\t -0.78511101 -0.58844501 -0.19321799 -0.498835 -0.83759803 -0.222698 -0.51296002 -0.85840303\n\t\t 0.0040290002 -0.51296002 -0.85840303 0.0040290002 -0.498835 -0.83759803 -0.222698\n\t\t -0.144109 -0.97150499 -0.188179 -0.144109 -0.97150499 -0.188179 -0.185525 -0.98198098\n\t\t 0.035982002 -0.51296002 -0.85840303 0.0040290002 -0.097814001 -0.91482002 -0.391839\n\t\t -0.144109 -0.97150499 -0.188179 -0.498835 -0.83759803 -0.222698 -0.144109 -0.97150499\n\t\t -0.188179 -0.097814001 -0.91482002 -0.391839 0.28049999 -0.912974 -0.29630801 0.28049999\n\t\t -0.912974 -0.29630801 0.225017 -0.96971202 -0.095005997 -0.144109 -0.97150499 -0.188179\n\t\t -0.498835 -0.83759803 -0.222698 -0.46133101 -0.77763498 -0.42715001 -0.097814001\n\t\t -0.91482002 -0.391839 -0.46133101 -0.77763498 -0.42715001 -0.498835 -0.83759803 -0.222698\n\t\t -0.78511101 -0.58844501 -0.19321799 -0.78511101 -0.58844501 -0.19321799 -0.75477701\n\t\t -0.52227998 -0.39690599 -0.46133101 -0.77763498 -0.42715001 -0.75477701 -0.52227998\n\t\t -0.39690599 -0.78511101 -0.58844501 -0.19321799 -0.95944899 -0.26194301 -0.10413\n\t\t -0.95944899 -0.26194301 -0.10413 -0.933465 -0.187572 -0.30571201 -0.75477701 -0.52227998\n\t\t -0.39690599 -0.933465 -0.187572 -0.30571201 -0.95944899 -0.26194301 -0.10413 -0.99526\n\t\t 0.092258997 0.030763 -0.99526 0.092258997 0.030763 -0.97016299 0.175391 -0.16739599\n\t\t -0.933465 -0.187572 -0.30571201 -0.88709801 0.42018601 0.19104899 -0.85933101 0.51141101\n\t\t -0.003052 -0.97016299 0.175391 -0.16739599 -0.97016299 0.175391 -0.16739599 -0.99526\n\t\t 0.092258997 0.030763 -0.88709801 0.42018601 0.19104899 -0.85933101 0.51141101 -0.003052\n\t\t -0.88709801 0.42018601 0.19104899 -0.65142602 0.67187297 0.35246301 -0.65142602 0.67187297\n\t\t 0.35246301 -0.61771601 0.76949 0.162211 -0.85933101 0.51141101 -0.003052 -0.61771601\n\t\t 0.76949 0.162211 -0.65142602 0.67187297 0.35246301 -0.324058 0.80910701 0.490237\n\t\t -0.324058 0.80910701 0.490237 -0.28224501 0.91009402 0.303426 -0.61771601 0.76949\n\t\t 0.162211 -0.28224501 0.91009402 0.303426 -0.324058 0.80910701 0.490237 0.045045 0.81094003\n\t\t 0.58339298 0.045045 0.81094003 0.58339298 0.095982 0.91191101 0.39900699 -0.28224501\n\t\t 0.91009402 0.303426 0.095982 0.91191101 0.39900699 0.045045 0.81094003 0.58339298\n\t\t 0.39977199 0.67710102 0.61783201 0.39977199 0.67710102 0.61783201 0.459501 0.77470601\n\t\t 0.43438399 0.095982 0.91191101 0.39900699 0.459501 0.77470601 0.43438399 0.39977199\n\t\t 0.67710102 0.61783201 0.68610001 0.42787799 0.588377 0.68610001 0.42787799 0.588377\n\t\t 0.75297898 0.51932102 0.40414 0.459501 0.77470601 0.43438399 0.75297898 0.51932102\n\t\t 0.40414 0.68610001 0.42787799 0.588377 0.86046702 0.101325 0.49933001 0.86046702\n\t\t 0.101325 0.49933001 0.93167001 0.184644 0.312886 0.75297898 0.51932102 0.40414 0.93167001\n\t\t 0.184644 0.312886 0.86046702 0.101325 0.49933001 0.89623499 -0.252884 0.36443299\n\t\t 0.89623499 -0.252884 0.36443299 0.96836901 -0.178322 0.174538 0.93167001 0.184644\n\t\t 0.312886 0.96836901 -0.178322 0.174538 0.89623499 -0.252884 0.36443299 0.78812599\n\t\t -0.58071798 0.20401999 0.78812599 -0.58071798 0.20401999 0.857526 -0.51433802 0.010254\n\t\t 0.96836901 -0.178322 0.174538 0.857526 -0.51433802 0.010254 0.78812599 -0.58071798\n\t\t 0.20401999 0.55236602 -0.83249998 0.042849001 0.55236602 -0.83249998 0.042849001\n\t\t 0.61596698 -0.77234697 -0.155129 0.857526 -0.51433802 0.010254 0.61596698 -0.77234697\n\t\t -0.155129 0.55236602 -0.83249998 0.042849001 0.225017 -0.96971202 -0.095005997 0.225017\n\t\t -0.96971202 -0.095005997 0.28049999 -0.912974 -0.29630801 0.61596698 -0.77234697\n\t\t -0.155129 -0.22618 -0.36669099 0.90243 -0.22618 -0.36669099 0.90243 -0.22608399 -0.36671501\n\t\t 0.90244401 -0.22608399 -0.36671501 0.90244401 -0.22608399 -0.36671501 0.90244401\n\t\t -0.22618 -0.36669099 0.90243 -0.22608399 -0.36671501 0.90244401 -0.22608399 -0.36671501\n\t\t 0.90244401 -0.22615001 -0.366631 0.90246201 -0.22615001 -0.366631 0.90246201 -0.22615001\n\t\t -0.366631 0.90246201 -0.22608399 -0.36671501 0.90244401 -0.22615001 -0.366631 0.90246201\n\t\t -0.22615001 -0.366631 0.90246201 -0.226146 -0.36674699 0.90241599 -0.226146 -0.36674699\n\t\t 0.90241599 -0.22614799 -0.36671999 0.902426 -0.22615001 -0.366631 0.90246201 -0.22614799\n\t\t -0.36671999 0.902426 -0.226146 -0.36674699 0.90241599 -0.226117 -0.366597 0.902484\n\t\t -0.226117 -0.366597 0.902484 -0.22614799 -0.366568 0.90248799 -0.22614799 -0.36671999\n\t\t 0.902426 -0.22614799 -0.366568 0.90248799 -0.226117 -0.366597 0.902484 -0.226117\n\t\t -0.366597 0.902484 -0.226117 -0.366597 0.902484 -0.226146 -0.366595 0.90247798 -0.22614799\n\t\t -0.366568 0.90248799 -0.226146 -0.366595 0.90247798;\n\tsetAttr \".n[9628:9793]\" -type \"float3\"  -0.226117 -0.366597 0.902484 -0.225963\n\t\t -0.36662599 0.902511 -0.225963 -0.36662599 0.902511 -0.22599199 -0.36662301 0.90250498\n\t\t -0.226146 -0.366595 0.90247798 -0.22599199 -0.36662301 0.90250498 -0.225963 -0.36662599\n\t\t 0.902511 -0.22599301 -0.36668599 0.90247899 -0.22599301 -0.36668599 0.90247899 -0.226054\n\t\t -0.36665499 0.90247601 -0.22599199 -0.36662301 0.90250498 -0.226054 -0.36665499 0.90247601\n\t\t -0.22599301 -0.36668599 0.90247899 -0.22617801 -0.36662799 0.90245599 -0.22617801\n\t\t -0.36662799 0.90245599 -0.22617801 -0.36662799 0.90245599 -0.226054 -0.36665499 0.90247601\n\t\t -0.22617801 -0.36662799 0.90245599 -0.22617801 -0.36662799 0.90245599 -0.226151 -0.366694\n\t\t 0.90243602 -0.226151 -0.366694 0.90243602 -0.226144 -0.36668399 0.90244198 -0.22617801\n\t\t -0.36662799 0.90245599 -0.226144 -0.36668399 0.90244198 -0.226151 -0.366694 0.90243602\n\t\t -0.22617599 -0.36665499 0.90244597 -0.22617599 -0.36665499 0.90244597 -0.22617599\n\t\t -0.36665499 0.90244597 -0.226144 -0.36668399 0.90244198 -0.22617599 -0.36665499 0.90244597\n\t\t -0.22617599 -0.36665499 0.90244597 -0.226114 -0.36662301 0.90247399 -0.226114 -0.36662301\n\t\t 0.90247399 -0.226147 -0.36665699 0.90245199 -0.22617599 -0.36665499 0.90244597 -0.226147\n\t\t -0.36665699 0.90245199 -0.226114 -0.36662301 0.90247399 -0.226087 -0.366689 0.90245402\n\t\t -0.226087 -0.366689 0.90245402 -0.226119 -0.366723 0.90243298 -0.226147 -0.36665699\n\t\t 0.90245199 -0.226119 -0.366723 0.90243298 -0.226087 -0.366689 0.90245402 -0.226114\n\t\t -0.36677599 0.902412 -0.226114 -0.36677599 0.902412 -0.22614899 -0.36678299 0.90240002\n\t\t -0.226119 -0.366723 0.90243298 -0.22614899 -0.36678299 0.90240002 -0.226114 -0.36677599\n\t\t 0.902412 -0.22617801 -0.366781 0.902394 -0.22617801 -0.366781 0.902394 -0.226143\n\t\t -0.36677301 0.90240598 -0.22614899 -0.36678299 0.90240002 -0.226143 -0.36677301 0.90240598\n\t\t -0.22617801 -0.366781 0.902394 -0.226116 -0.36668599 0.902448 -0.226116 -0.36668599\n\t\t 0.902448 -0.226118 -0.36666 0.90245801 -0.226143 -0.36677301 0.90240598 -0.226118\n\t\t -0.36666 0.90245801 -0.226116 -0.36668599 0.902448 -0.22618 -0.36669099 0.90243 -0.22618\n\t\t -0.36669099 0.90243 -0.22618 -0.36669099 0.90243 -0.226118 -0.36666 0.90245801 -0.95638901\n\t\t -0.29191899 -0.010193 -0.94804603 -0.21574 -0.233807 -0.98458999 0.146127 -0.096074998\n\t\t -0.98458999 0.146127 -0.096074998 -0.99124098 0.052829001 0.12104 -0.95638901 -0.29191899\n\t\t -0.010193 -0.99124098 0.052829001 0.12104 -0.98458999 0.146127 -0.096074998 -0.87411702\n\t\t 0.48099199 0.067570999 -0.87411702 0.48099199 0.067570999 -0.88599002 0.37174901\n\t\t 0.27717099 -0.99124098 0.052829001 0.12104 -0.88599002 0.37174901 0.27717099 -0.87411702\n\t\t 0.48099199 0.067570999 -0.63339502 0.73810601 0.232403 -0.63339502 0.73810601 0.232403\n\t\t -0.65671498 0.616795 0.43392399 -0.88599002 0.37174901 0.27717099 -0.65671498 0.616795\n\t\t 0.43392399 -0.63339502 0.73810601 0.232403 -0.29908499 0.87823999 0.373153 -0.29908499\n\t\t 0.87823999 0.373153 -0.338218 0.75023103 0.56812102 -0.65671498 0.616795 0.43392399\n\t\t -0.338218 0.75023103 0.56812102 -0.29908499 0.87823999 0.373153 0.078037001 0.88017303\n\t\t 0.46819401 0.078037001 0.88017303 0.46819401 0.021027001 0.75190198 0.65894002 -0.338218\n\t\t 0.75023103 0.56812102 -0.94804603 -0.21574 -0.233807 -0.95638901 -0.29191899 -0.010193\n\t\t -0.78676498 -0.60959899 -0.096900001 -0.78676498 -0.60959899 -0.096900001 -0.77001798\n\t\t -0.549146 -0.32482401 -0.94804603 -0.21574 -0.233807 -0.77001798 -0.549146 -0.32482401\n\t\t -0.78676498 -0.60959899 -0.096900001 -0.50814903 -0.85207301 -0.125526 -0.50814903\n\t\t -0.85207301 -0.125526 -0.47749999 -0.80365598 -0.355149 -0.77001798 -0.549146 -0.32482401\n\t\t -0.47749999 -0.80365598 -0.355149 -0.50814903 -0.85207301 -0.125526 -0.162973 -0.98232502\n\t\t -0.092077002 -0.162973 -0.98232502 -0.092077002 -0.115149 -0.940364 -0.320088 -0.47749999\n\t\t -0.80365598 -0.355149 -0.115149 -0.940364 -0.320088 -0.162973 -0.98232502 -0.092077002\n\t\t 0.19617499 -0.98056799 -0.001312 0.19617499 -0.98056799 -0.001312 0.26185501 -0.93858898\n\t\t -0.224683 -0.115149 -0.940364 -0.320088 0.26185501 -0.93858898 -0.224683 0.19617499\n\t\t -0.98056799 -0.001312 0.51463699 -0.84707803 0.132695 0.51463699 -0.84707803 0.132695\n\t\t 0.59619498 -0.79841501 -0.084172003 0.26185501 -0.93858898 -0.224683 0.59619498 -0.79841501\n\t\t -0.084172003 0.51463699 -0.84707803 0.132695 0.74397397 -0.60211903 0.28975201 0.74397397\n\t\t -0.60211903 0.28975201 0.83695799 -0.54125798 0.080876 0.59619498 -0.79841501 -0.084172003\n\t\t 0.83695799 -0.54125798 0.080876 0.74397397 -0.60211903 0.28975201 0.84916103 -0.28309399\n\t\t 0.44585201 0.84916103 -0.28309399 0.44585201 0.947375 -0.20640101 0.244702 0.83695799\n\t\t -0.54125798 0.080876 0.947375 -0.20640101 0.244702 0.84916103 -0.28309399 0.44585201\n\t\t 0.814399 0.061648998 0.57702202 0.814399 0.061648998 0.57702202 0.91083699 0.155311\n\t\t 0.382433 0.947375 -0.20640101 0.244702 0.91083699 0.155311 0.382433 0.814399 0.061648998\n\t\t 0.57702202 0.64477003 0.37934899 0.66360098 0.64477003 0.37934899 0.66360098 0.73274398\n\t\t 0.48895401 0.473297 0.91083699 0.155311 0.382433 0.73274398 0.48895401 0.473297 0.64477003\n\t\t 0.37934899 0.66360098 0.36617699 0.621719 0.69237298 0.36617699 0.621719 0.69237298\n\t\t 0.44033101 0.74344802 0.50338298 0.73274398 0.48895401 0.473297 0.44033101 0.74344802\n\t\t 0.50338298 0.36617699 0.621719 0.69237298 0.021027001 0.75190198 0.65894002 0.021027001\n\t\t 0.75190198 0.65894002 0.078037001 0.88017303 0.46819401 0.44033101 0.74344802 0.50338298\n\t\t -0.94802701 -0.036226999 0.31612101 -0.91655499 -0.34782901 0.197338 -0.95638901\n\t\t -0.29191899 -0.010193 -0.95638901 -0.29191899 -0.010193 -0.99124098 0.052829001 0.12104;\n\tsetAttr \".n[9794:9959]\" -type \"float3\"  -0.94802701 -0.036226999 0.31612101 -0.94802701\n\t\t -0.036226999 0.31612101 -0.99124098 0.052829001 0.12104 -0.88599002 0.37174901 0.27717099\n\t\t -0.88599002 0.37174901 0.27717099 -0.85277098 0.25202799 0.457454 -0.94802701 -0.036226999\n\t\t 0.31612101 -0.64560801 0.473692 0.59900498 -0.85277098 0.25202799 0.457454 -0.88599002\n\t\t 0.37174901 0.27717099 -0.88599002 0.37174901 0.27717099 -0.65671498 0.616795 0.43392399\n\t\t -0.64560801 0.473692 0.59900498 -0.64560801 0.473692 0.59900498 -0.65671498 0.616795\n\t\t 0.43392399 -0.338218 0.75023103 0.56812102 -0.338218 0.75023103 0.56812102 -0.35762799\n\t\t 0.594338 0.72032303 -0.64560801 0.473692 0.59900498 -0.95638901 -0.29191899 -0.010193\n\t\t -0.91655499 -0.34782901 0.197338 -0.76319098 -0.63513303 0.118933 -0.76319098 -0.63513303\n\t\t 0.118933 -0.78676498 -0.60959899 -0.096900001 -0.95638901 -0.29191899 -0.010193 -0.50814903\n\t\t -0.85207301 -0.125526 -0.78676498 -0.60959899 -0.096900001 -0.76319098 -0.63513303\n\t\t 0.118933 -0.76319098 -0.63513303 0.118933 -0.51125902 -0.854357 0.093206003 -0.50814903\n\t\t -0.85207301 -0.125526 -0.50814903 -0.85207301 -0.125526 -0.51125902 -0.854357 0.093206003\n\t\t -0.199165 -0.97214401 0.12357 -0.199165 -0.97214401 0.12357 -0.162973 -0.98232502\n\t\t -0.092077002 -0.50814903 -0.85207301 -0.125526 0.19617499 -0.98056799 -0.001312 -0.162973\n\t\t -0.98232502 -0.092077002 -0.199165 -0.97214401 0.12357 -0.199165 -0.97214401 0.12357\n\t\t 0.125523 -0.97058398 0.205452 0.19617499 -0.98056799 -0.001312 0.19617499 -0.98056799\n\t\t -0.001312 0.125523 -0.97058398 0.205452 0.41347 -0.849828 0.326857 0.41347 -0.849828\n\t\t 0.326857 0.51463699 -0.84707803 0.132695 0.19617499 -0.98056799 -0.001312 0.74397397\n\t\t -0.60211903 0.28975201 0.51463699 -0.84707803 0.132695 0.41347 -0.849828 0.326857\n\t\t 0.41347 -0.849828 0.326857 0.62081999 -0.62844902 0.46865201 0.74397397 -0.60211903\n\t\t 0.28975201 0.74397397 -0.60211903 0.28975201 0.62081999 -0.62844902 0.46865201 0.71591699\n\t\t -0.33995199 0.60983199 0.71591699 -0.33995199 0.60983199 0.84916103 -0.28309399 0.44585201\n\t\t 0.74397397 -0.60211903 0.28975201 0.814399 0.061648998 0.57702202 0.84916103 -0.28309399\n\t\t 0.44585201 0.71591699 -0.33995199 0.60983199 0.71591699 -0.33995199 0.60983199 0.68463701\n\t\t -0.028169001 0.72834003 0.814399 0.061648998 0.57702202 0.814399 0.061648998 0.57702202\n\t\t 0.68463701 -0.028169001 0.72834003 0.53115898 0.25898799 0.80671901 0.53115898 0.25898799\n\t\t 0.80671901 0.64477003 0.37934899 0.66360098 0.814399 0.061648998 0.57702202 0.36617699\n\t\t 0.621719 0.69237298 0.64477003 0.37934899 0.66360098 0.53115898 0.25898799 0.80671901\n\t\t 0.53115898 0.25898799 0.80671901 0.27925101 0.47796199 0.83280897 0.36617699 0.621719\n\t\t 0.69237298 0.36617699 0.621719 0.69237298 0.27925101 0.47796199 0.83280897 -0.032869\n\t\t 0.59570301 0.80253202 -0.032869 0.59570301 0.80253202 0.021027001 0.75190198 0.65894002\n\t\t 0.36617699 0.621719 0.69237298 -0.338218 0.75023103 0.56812102 0.021027001 0.75190198\n\t\t 0.65894002 -0.032869 0.59570301 0.80253202 -0.032869 0.59570301 0.80253202 -0.35762799\n\t\t 0.594338 0.72032303 -0.338218 0.75023103 0.56812102 -0.226147 -0.36665699 0.90245199\n\t\t -0.225354 -0.36699301 0.90251398 -0.226087 -0.366689 0.90245402 -0.226147 -0.36665699\n\t\t 0.90245199 -0.226087 -0.366689 0.90245402 -0.22611301 -0.36671299 0.90243798 -0.226087\n\t\t -0.366689 0.90245402 -0.226087 -0.366689 0.90245402 -0.22611301 -0.36671299 0.90243798\n\t\t -0.226087 -0.366689 0.90245402 -0.226087 -0.366689 0.90245402 -0.226087 -0.366689\n\t\t 0.90245402 -0.226087 -0.366689 0.90245402 -0.226054 -0.36665499 0.90247601 -0.226087\n\t\t -0.366689 0.90245402 -0.226087 -0.366689 0.90245402 -0.226392 -0.36671999 0.90236503\n\t\t -0.226054 -0.36665499 0.90247601 -0.226054 -0.36665499 0.90247601 -0.225932 -0.366503\n\t\t 0.902569 -0.226087 -0.366689 0.90245402 -0.226087 -0.366689 0.90245402 -0.226055\n\t\t -0.36671799 0.90245098 -0.226087 -0.366689 0.90245402 -0.226087 -0.366689 0.90245402\n\t\t -0.226117 -0.366597 0.902484 -0.226055 -0.36671799 0.90245098 -0.226055 -0.36671799\n\t\t 0.90245098 -0.22608501 -0.36677799 0.90241802 -0.226087 -0.366689 0.90245402 -0.226087\n\t\t -0.366689 0.90245402 -0.22605801 -0.36669099 0.90246099 -0.22611301 -0.36671299 0.90243798\n\t\t -0.226087 -0.366689 0.90245402 -0.22593801 -0.36666501 0.90250099 -0.22605801 -0.36669099\n\t\t 0.90246099 -0.22605801 -0.36669099 0.90246099 -0.22608399 -0.36671501 0.90244401\n\t\t -0.22611301 -0.36671299 0.90243798 -0.226147 -0.36665699 0.90245199 -0.22611301 -0.36671299\n\t\t 0.90243798 -0.22602201 -0.36714101 0.90228701 -0.75379401 0.57479799 0.31843701 -0.68421\n\t\t 0.67047602 0.28691101 -0.611157 0.70317298 0.36336699 -0.611157 0.70317298 0.36336699\n\t\t -0.68244201 0.611148 0.400962 -0.75379401 0.57479799 0.31843701 -0.68421 0.67047602\n\t\t 0.28691101 -0.75379401 0.57479799 0.31843701 -0.78285199 0.55517697 0.28093001 -0.78285199\n\t\t 0.55517697 0.28093001 -0.71565199 0.65168297 0.25129801 -0.68421 0.67047602 0.28691101\n\t\t -0.75037199 0.614043 0.24473201 -0.78285199 0.55517697 0.28093001 -0.75379401 0.57479799\n\t\t 0.31843701 -0.75379401 0.57479799 0.31843701 -0.723279 0.63150698 0.279405 -0.75037199\n\t\t 0.614043 0.24473201 -0.723279 0.63150698 0.279405 -0.75379401 0.57479799 0.31843701\n\t\t -0.68244201 0.611148 0.400962 -0.68244201 0.611148 0.400962 -0.65132701 0.67012697\n\t\t 0.35595399 -0.723279 0.63150698 0.279405 -0.68244201 0.611148 0.400962 -0.611157\n\t\t 0.70317298 0.36336699 -0.54855102 0.72208297 0.42153001 -0.54855102 0.72208297 0.42153001\n\t\t -0.59494501 0.64585102 0.478452 -0.68244201 0.611148 0.400962 -0.65132701 0.67012697\n\t\t 0.35595399 -0.68244201 0.611148 0.400962 -0.59494501 0.64585102 0.478452;\n\tsetAttr \".n[9960:10125]\" -type \"float3\"  -0.59494501 0.64585102 0.478452 -0.57562\n\t\t 0.69375902 0.432852 -0.65132701 0.67012697 0.35595399 -0.71195298 0.58300799 0.39144\n\t\t -0.65132701 0.67012697 0.35595399 -0.57562 0.69375902 0.432852 -0.723279 0.63150698\n\t\t 0.279405 -0.65132701 0.67012697 0.35595399 -0.71195298 0.58300799 0.39144 -0.57562\n\t\t 0.69375902 0.432852 -0.64212602 0.60266501 0.473782 -0.71195298 0.58300799 0.39144\n\t\t -0.64212602 0.60266501 0.473782 -0.57562 0.69375902 0.432852 -0.70289701 0.572182\n\t\t 0.422544 -0.64212602 0.60266501 0.473782 -0.70289701 0.572182 0.422544 -0.65872699\n\t\t 0.58627403 0.47155201 -0.64212602 0.60266501 0.473782 -0.65872699 0.58627403 0.47155201\n\t\t -0.637371 0.58094001 0.50622803 -0.57562 0.69375902 0.432852 -0.59494501 0.64585102\n\t\t 0.478452 -0.684394 0.62576598 0.37419599 -0.684394 0.62576598 0.37419599 -0.70289701\n\t\t 0.572182 0.422544 -0.57562 0.69375902 0.432852 -0.684394 0.62576598 0.37419599 -0.59494501\n\t\t 0.64585102 0.478452 -0.54855102 0.72208297 0.42153001 -0.75037199 0.614043 0.24473201\n\t\t -0.723279 0.63150698 0.279405 -0.77579999 0.54736298 0.31389099 -0.71195298 0.58300799\n\t\t 0.39144 -0.77579999 0.54736298 0.31389099 -0.723279 0.63150698 0.279405 -0.77579999\n\t\t 0.54736298 0.31389099 -0.79933202 0.52249098 0.29677001 -0.75037199 0.614043 0.24473201\n\t\t -0.684394 0.62576598 0.37419599 -0.54855102 0.72208297 0.42153001 -0.53067499 0.73610198\n\t\t 0.42016301 -0.684394 0.62576598 0.37419599 -0.53067499 0.73610198 0.42016301 -0.60478902\n\t\t 0.68755502 0.40187001 -0.75037199 0.614043 0.24473201 -0.79933202 0.52249098 0.29677001\n\t\t -0.79838198 0.51089102 0.318712 -0.762339 0.60382199 0.23289201 -0.79838198 0.51089102\n\t\t 0.318712 -0.835374 0.37492901 0.40196899 -0.835374 0.37492901 0.40196899 -0.77164602\n\t\t 0.466699 0.43215099 -0.762339 0.60382199 0.23289201 -0.762339 0.60382199 0.23289201\n\t\t -0.77164602 0.466699 0.43215099 -0.65409899 0.68352002 0.32396701 -0.65409899 0.68352002\n\t\t 0.32396701 -0.79535699 0.54604697 0.26313499 -0.762339 0.60382199 0.23289201 -0.75037199\n\t\t 0.614043 0.24473201 -0.762339 0.60382199 0.23289201 -0.79535699 0.54604697 0.26313499\n\t\t -0.79838198 0.51089102 0.318712 -0.762339 0.60382199 0.23289201 -0.75037199 0.614043\n\t\t 0.24473201 -0.79535699 0.54604697 0.26313499 -0.78285199 0.55517697 0.28093001 -0.75037199\n\t\t 0.614043 0.24473201 -0.78285199 0.55517697 0.28093001 -0.79535699 0.54604697 0.26313499\n\t\t -0.71878499 0.65103197 0.243939 -0.71878499 0.65103197 0.243939 -0.71565199 0.65168297\n\t\t 0.25129801 -0.78285199 0.55517697 0.28093001 -0.79535699 0.54604697 0.26313499 -0.65409899\n\t\t 0.68352002 0.32396701 -0.63383102 0.74776101 0.197767 -0.63383102 0.74776101 0.197767\n\t\t -0.71878499 0.65103197 0.243939 -0.79535699 0.54604697 0.26313499 -0.46175501 -0.77411997\n\t\t 0.43303701 -0.45876101 -0.77634197 0.43224001 -0.38927099 -0.71542901 0.58019799\n\t\t -0.38927099 -0.71542901 0.58019799 -0.41301599 -0.734231 0.53881598 -0.46175501 -0.77411997\n\t\t 0.43303701 -0.41301599 -0.734231 0.53881598 -0.38927099 -0.71542901 0.58019799 -0.353104\n\t\t -0.67486501 0.64797801 -0.353104 -0.67486501 0.64797801 -0.35368899 -0.66922897 0.65348101\n\t\t -0.41301599 -0.734231 0.53881598 -0.45876101 -0.77634197 0.43224001 -0.46175501 -0.77411997\n\t\t 0.43303701 -0.472101 -0.80402797 0.361469 -0.472101 -0.80402797 0.361469 -0.46859601\n\t\t -0.808676 0.35561299 -0.45876101 -0.77634197 0.43224001 -0.46859601 -0.808676 0.35561299\n\t\t -0.472101 -0.80402797 0.361469 -0.48803499 -0.82362598 0.28889599 -0.48803499 -0.82362598\n\t\t 0.28889599 -0.489252 -0.82548201 0.28144699 -0.46859601 -0.808676 0.35561299 -0.52501601\n\t\t -0.82675701 0.202066 -0.489252 -0.82548201 0.28144699 -0.48803499 -0.82362598 0.28889599\n\t\t -0.48803499 -0.82362598 0.28889599 -0.51876003 -0.82867998 0.21018399 -0.52501601\n\t\t -0.82675701 0.202066 -0.52501601 -0.82675701 0.202066 -0.51876003 -0.82867998 0.21018399\n\t\t -0.61114299 -0.78940499 0.057833999 -0.61114299 -0.78940499 0.057833999 -0.64370799\n\t\t -0.76505297 -0.018281 -0.52501601 -0.82675701 0.202066 -0.64370799 -0.76505297 -0.018281\n\t\t -0.61114299 -0.78940499 0.057833999 -0.69123 -0.71314299 -0.116736 -0.69123 -0.71314299\n\t\t -0.116736 -0.691845 -0.70618898 -0.150491 -0.64370799 -0.76505297 -0.018281 -0.72861803\n\t\t -0.04346 -0.683541 -0.678464 0.0045779999 -0.73461902 -0.70228201 -0.01761 -0.71168101\n\t\t -0.70228201 -0.01761 -0.71168101 -0.74561602 -0.060977999 -0.66358 -0.72861803 -0.04346\n\t\t -0.683541 -0.394337 0.67321998 -0.62551898 -0.250653 0.75583398 -0.60488701 -0.20378\n\t\t 0.82875901 -0.52118301 -0.20378 0.82875901 -0.52118301 -0.30363801 0.77620101 -0.55255401\n\t\t -0.394337 0.67321998 -0.62551898 -0.30363801 0.77620101 -0.55255401 -0.20378 0.82875901\n\t\t -0.52118301 -0.099979997 0.92539299 -0.365585 -0.099979997 0.92539299 -0.365585 -0.11335\n\t\t 0.92242497 -0.36916599 -0.30363801 0.77620101 -0.55255401 -0.11335 0.92242497 -0.36916599\n\t\t -0.099979997 0.92539299 -0.365585 -0.032777999 0.969006 -0.244853 -0.032777999 0.969006\n\t\t -0.244853 -0.039308999 0.96763402 -0.24927901 -0.11335 0.92242497 -0.36916599 -0.039308999\n\t\t 0.96763402 -0.24927901 -0.032777999 0.969006 -0.244853 0.002716 0.98335898 -0.18165\n\t\t 0.002716 0.98335898 -0.18165 0.0036919999 0.98322099 -0.18238001 -0.039308999 0.96763402\n\t\t -0.24927901 0.0036919999 0.98322099 -0.18238001 0.002716 0.98335898 -0.18165 0.020416999\n\t\t 0.98503298 -0.171151 0.020416999 0.98503298 -0.171151 0.021119 0.985008 -0.171213\n\t\t 0.0036919999 0.98322099 -0.18238001 0.021119 0.985008 -0.171213 0.020416999 0.98503298\n\t\t -0.171151 0.038056999 0.99033999 -0.13333701 0.038056999 0.99033999 -0.13333701 0.052216999\n\t\t 0.99124801 -0.121251 0.021119 0.985008 -0.171213 0.052216999 0.99124801 -0.121251;\n\tsetAttr \".n[10126:10291]\" -type \"float3\"  0.038056999 0.99033999 -0.13333701 0.119359\n\t\t 0.99284202 -0.0043339999 0.119359 0.99284202 -0.0043339999 0.156931 0.98675501 0.041079\n\t\t 0.052216999 0.99124801 -0.121251 0.156931 0.98675501 0.041079 0.119359 0.99284202\n\t\t -0.0043339999 0.22193301 0.956065 0.19153599 0.22193301 0.956065 0.19153599 0.266891\n\t\t 0.93370801 0.23866101 0.156931 0.98675501 0.041079 0.266891 0.93370801 0.23866101\n\t\t 0.22193301 0.956065 0.19153599 0.349904 0.78120399 0.51699799 0.349904 0.78120399\n\t\t 0.51699799 0.36378899 0.77656198 0.51440197 0.266891 0.93370801 0.23866101 0.36378899\n\t\t 0.77656198 0.51440197 0.349904 0.78120399 0.51699799 0.374861 0.63268298 0.67763698\n\t\t 0.374861 0.63268298 0.67763698 0.36867699 0.63932502 0.67478901 0.36378899 0.77656198\n\t\t 0.51440197 0.153146 0.17136601 0.97323197 0.144785 0.117806 0.98242497 0.14752901\n\t\t 0.13510799 0.97978598 0.14752901 0.13510799 0.97978598 0.15540101 0.186133 0.97015703\n\t\t 0.153146 0.17136601 0.97323197 -0.100225 -0.24531201 0.96425003 -0.108009 -0.274371\n\t\t 0.95553899 -0.105779 -0.26603401 0.95814198 -0.105779 -0.26603401 0.95814198 -0.097846001\n\t\t -0.236435 0.966708 -0.100225 -0.24531201 0.96425003 -0.684394 0.62576598 0.37419599\n\t\t -0.73191297 0.61459601 0.294236 -0.78920197 0.49728301 0.36037299 -0.78920197 0.49728301\n\t\t 0.36037299 -0.70289701 0.572182 0.422544 -0.684394 0.62576598 0.37419599 -0.70289701\n\t\t 0.572182 0.422544 -0.78920197 0.49728301 0.36037299 -0.75700402 0.46542099 0.45861501\n\t\t -0.75700402 0.46542099 0.45861501 -0.65872699 0.58627403 0.47155201 -0.70289701 0.572182\n\t\t 0.422544 -0.73191297 0.61459601 0.294236 -0.684394 0.62576598 0.37419599 -0.60478902\n\t\t 0.68755502 0.40187001 -0.60478902 0.68755502 0.40187001 -0.64347202 0.70182502 0.30559099\n\t\t -0.73191297 0.61459601 0.294236 -0.64347202 0.70182502 0.30559099 -0.60478902 0.68755502\n\t\t 0.40187001 -0.53067499 0.73610198 0.42016301 -0.53067499 0.73610198 0.42016301 -0.556732\n\t\t 0.76295 0.32857001 -0.64347202 0.70182502 0.30559099 -0.65872699 0.58627403 0.47155201\n\t\t -0.75700402 0.46542099 0.45861501 -0.71552098 0.460015 0.52575302 -0.71552098 0.460015\n\t\t 0.52575302 -0.637371 0.58094001 0.50622803 -0.65872699 0.58627403 0.47155201 -0.637371\n\t\t 0.58094001 0.50622803 -0.71552098 0.460015 0.52575302 -0.69055498 0.47588301 0.54467303\n\t\t -0.69055498 0.47588301 0.54467303 -0.64212602 0.60266501 0.473782 -0.637371 0.58094001\n\t\t 0.50622803 -0.71195298 0.58300799 0.39144 -0.64212602 0.60266501 0.473782 -0.69055498\n\t\t 0.47588301 0.54467303 -0.69055498 0.47588301 0.54467303 -0.75667799 0.465976 0.45859101\n\t\t -0.71195298 0.58300799 0.39144 -0.71195298 0.58300799 0.39144 -0.75667799 0.465976\n\t\t 0.45859101 -0.823695 0.42989999 0.369746 -0.823695 0.42989999 0.369746 -0.77579999\n\t\t 0.54736298 0.31389099 -0.71195298 0.58300799 0.39144 -0.77579999 0.54736298 0.31389099\n\t\t -0.823695 0.42989999 0.369746 -0.84008598 0.40630901 0.3594 -0.84008598 0.40630901\n\t\t 0.3594 -0.79933202 0.52249098 0.29677001 -0.77579999 0.54736298 0.31389099 -0.79933202\n\t\t 0.52249098 0.29677001 -0.84008598 0.40630901 0.3594 -0.82528102 0.39876899 0.39986801\n\t\t -0.82528102 0.39876899 0.39986801 -0.79838198 0.51089102 0.318712 -0.79933202 0.52249098\n\t\t 0.29677001 -0.79838198 0.51089102 0.318712 -0.82528102 0.39876899 0.39986801 -0.80834103\n\t\t 0.36537999 0.46160799 -0.80834103 0.36537999 0.46160799 -0.835374 0.37492901 0.40196899\n\t\t -0.79838198 0.51089102 0.318712 -0.835374 0.37492901 0.40196899 -0.80834103 0.36537999\n\t\t 0.46160799 -0.71534801 0.486817 0.501284 -0.71534801 0.486817 0.501284 -0.77164602\n\t\t 0.466699 0.43215099 -0.835374 0.37492901 0.40196899 -0.65409899 0.68352002 0.32396701\n\t\t -0.77164602 0.466699 0.43215099 -0.71534801 0.486817 0.501284 -0.71534801 0.486817\n\t\t 0.501284 -0.57976902 0.70663601 0.40562701 -0.65409899 0.68352002 0.32396701 -0.65409899\n\t\t 0.68352002 0.32396701 -0.57976902 0.70663601 0.40562701 -0.55154997 0.80257303 0.22731\n\t\t -0.55154997 0.80257303 0.22731 -0.63383102 0.74776101 0.197767 -0.65409899 0.68352002\n\t\t 0.32396701 -0.63383102 0.74776101 0.197767 -0.55154997 0.80257303 0.22731 -0.61658198\n\t\t 0.76017499 0.20484599 -0.61658198 0.76017499 0.20484599 -0.71878499 0.65103197 0.243939\n\t\t -0.63383102 0.74776101 0.197767 -0.71878499 0.65103197 0.243939 -0.61658198 0.76017499\n\t\t 0.20484599 -0.62845302 0.75156802 0.200481 -0.62845302 0.75156802 0.200481 -0.71565199\n\t\t 0.65168297 0.25129801 -0.71878499 0.65103197 0.243939 -0.71565199 0.65168297 0.25129801\n\t\t -0.62845302 0.75156802 0.200481 -0.60919702 0.76069498 0.224104 -0.60919702 0.76069498\n\t\t 0.224104 -0.68421 0.67047602 0.28691101 -0.71565199 0.65168297 0.25129801 -0.611157\n\t\t 0.70317298 0.36336699 -0.68421 0.67047602 0.28691101 -0.60919702 0.76069498 0.224104\n\t\t -0.60919702 0.76069498 0.224104 -0.54574502 0.78696799 0.28782699 -0.611157 0.70317298\n\t\t 0.36336699 -0.54855102 0.72208297 0.42153001 -0.611157 0.70317298 0.36336699 -0.54574502\n\t\t 0.78696799 0.28782699 -0.54574502 0.78696799 0.28782699 -0.49423599 0.79726601 0.346551\n\t\t -0.54855102 0.72208297 0.42153001 -0.54855102 0.72208297 0.42153001 -0.49423599 0.79726601\n\t\t 0.346551 -0.556732 0.76295 0.32857001 -0.556732 0.76295 0.32857001 -0.53067499 0.73610198\n\t\t 0.42016301 -0.54855102 0.72208297 0.42153001 0.42146999 -0.62527698 0.65680403 0.292584\n\t\t -0.85635799 0.42549399 0.47015199 -0.83574301 0.28370801 0.47015199 -0.83574301 0.28370801\n\t\t 0.60978901 -0.58543402 0.53425199 0.42146999 -0.62527698 0.65680403 0.42146999 -0.62527698\n\t\t 0.65680403 0.60978901 -0.58543402 0.53425199 0.63633198 -0.25813401 0.72694498 0.63633198\n\t\t -0.25813401 0.72694498 0.44598699 -0.32317501 0.83465803;\n\tsetAttr \".n[10292:10457]\" -type \"float3\"  0.42146999 -0.62527698 0.65680403 0.47015199\n\t\t -0.83574301 0.28370801 0.292584 -0.85635799 0.42549399 0.0788 -0.98121399 0.176094\n\t\t 0.0788 -0.98121399 0.176094 0.23857 -0.97103202 0.013459 0.47015199 -0.83574301 0.28370801\n\t\t 0.36232001 0.0039980002 0.93204498 0.44598699 -0.32317501 0.83465803 0.63633198 -0.25813401\n\t\t 0.72694498 0.63633198 -0.25813401 0.72694498 0.54570597 0.096256003 0.83243001 0.36232001\n\t\t 0.0039980002 0.93204498 0.36232001 0.0039980002 0.93204498 0.54570597 0.096256003\n\t\t 0.83243001 0.35170501 0.42382199 0.83467299 0.35170501 0.42382199 0.83467299 0.18329699\n\t\t 0.30638 0.93409503 0.36232001 0.0039980002 0.93204498 -0.063968003 0.53793103 0.84055901\n\t\t 0.18329699 0.30638 0.93409503 0.35170501 0.42382199 0.83467299 0.35170501 0.42382199\n\t\t 0.83467299 0.083866999 0.67469198 0.73331898 -0.063968003 0.53793103 0.84055901 -0.063968003\n\t\t 0.53793103 0.84055901 0.083866999 0.67469198 0.73331898 -0.217023 0.81065297 0.543823\n\t\t -0.217023 0.81065297 0.543823 -0.341757 0.66340101 0.66565901 -0.063968003 0.53793103\n\t\t 0.84055901 -0.60772598 0.66382003 0.435904 -0.341757 0.66340101 0.66565901 -0.217023\n\t\t 0.81065297 0.543823 -0.217023 0.81065297 0.543823 -0.50515801 0.81105399 0.29497001\n\t\t -0.60772598 0.66382003 0.435904 -0.60772598 0.66382003 0.435904 -0.50515801 0.81105399\n\t\t 0.29497001 -0.73670697 0.67575997 0.024721 -0.73670697 0.67575997 0.024721 -0.82143003\n\t\t 0.53897297 0.186443 -0.60772598 0.66382003 0.435904 -0.95039099 0.307814 -0.044801999\n\t\t -0.82143003 0.53897297 0.186443 -0.73670697 0.67575997 0.024721 -0.73670697 0.67575997\n\t\t 0.024721 -0.87637502 0.42543 -0.225777 -0.95039099 0.307814 -0.044801999 -0.95039099\n\t\t 0.307814 -0.044801999 -0.87637502 0.42543 -0.225777 -0.90290803 0.098149002 -0.41847801\n\t\t -0.90290803 0.098149002 -0.41847801 -0.97487098 0.0057680001 -0.222698 -0.95039099\n\t\t 0.307814 -0.044801999 -0.89120901 -0.321394 -0.320081 -0.97487098 0.0057680001 -0.222698\n\t\t -0.90290803 0.098149002 -0.41847801 -0.90290803 0.098149002 -0.41847801 -0.81227601\n\t\t -0.25621101 -0.52398902 -0.89120901 -0.321394 -0.320081 -0.89120901 -0.321394 -0.320081\n\t\t -0.81227601 -0.25621101 -0.52398902 -0.61828703 -0.58380097 -0.52621102 -0.61828703\n\t\t -0.58380097 -0.52621102 -0.712161 -0.62377799 -0.32206699 -0.89120901 -0.321394 -0.320081\n\t\t -0.464872 -0.85536802 -0.22856 -0.712161 -0.62377799 -0.32206699 -0.61828703 -0.58380097\n\t\t -0.52621102 -0.61828703 -0.58380097 -0.52621102 -0.35042599 -0.83468097 -0.42486399\n\t\t -0.464872 -0.85536802 -0.22856 -0.464872 -0.85536802 -0.22856 -0.35042599 -0.83468097\n\t\t -0.42486399 -0.049532 -0.97065198 -0.235331 -0.049532 -0.97065198 -0.235331 -0.18711001\n\t\t -0.98087299 -0.053652 -0.464872 -0.85536802 -0.22856 0.083378002 -0.914253 -0.39647001\n\t\t -0.049532 -0.97065198 -0.235331 -0.35042599 -0.83468097 -0.42486399 -0.049532 -0.97065198\n\t\t -0.235331 0.083378002 -0.914253 -0.39647001 0.37871701 -0.914639 -0.141458 0.37871701\n\t\t -0.914639 -0.141458 0.23857 -0.97103202 0.013459 -0.049532 -0.97065198 -0.235331\n\t\t -0.35042599 -0.83468097 -0.42486399 -0.22495399 -0.77490503 -0.590693 0.083378002\n\t\t -0.914253 -0.39647001 -0.22495399 -0.77490503 -0.590693 -0.35042599 -0.83468097 -0.42486399\n\t\t -0.61828703 -0.58380097 -0.52621102 -0.61828703 -0.58380097 -0.52621102 -0.499477\n\t\t -0.51775801 -0.69458598 -0.22495399 -0.77490503 -0.590693 -0.499477 -0.51775801 -0.69458598\n\t\t -0.61828703 -0.58380097 -0.52621102 -0.81227601 -0.25621101 -0.52398902 -0.81227601\n\t\t -0.25621101 -0.52398902 -0.69830197 -0.18207601 -0.69225901 -0.499477 -0.51775801\n\t\t -0.69458598 -0.69830197 -0.18207601 -0.69225901 -0.81227601 -0.25621101 -0.52398902\n\t\t -0.90290803 0.098149002 -0.41847801 -0.90290803 0.098149002 -0.41847801 -0.791188\n\t\t 0.18110301 -0.58414298 -0.69830197 -0.18207601 -0.69225901 -0.87637502 0.42543 -0.225777\n\t\t -0.76398498 0.51653498 -0.386677 -0.791188 0.18110301 -0.58414298 -0.791188 0.18110301\n\t\t -0.58414298 -0.90290803 0.098149002 -0.41847801 -0.87637502 0.42543 -0.225777 -0.76398498\n\t\t 0.51653498 -0.386677 -0.87637502 0.42543 -0.225777 -0.73670697 0.67575997 0.024721\n\t\t -0.73670697 0.67575997 0.024721 -0.62084299 0.77310002 -0.129888 -0.76398498 0.51653498\n\t\t -0.386677 -0.62084299 0.77310002 -0.129888 -0.73670697 0.67575997 0.024721 -0.50515801\n\t\t 0.81105399 0.29497001 -0.50515801 0.81105399 0.29497001 -0.38354 0.91174299 0.147043\n\t\t -0.62084299 0.77310002 -0.129888 -0.38354 0.91174299 0.147043 -0.50515801 0.81105399\n\t\t 0.29497001 -0.217023 0.81065297 0.543823 -0.217023 0.81065297 0.543823 -0.088229999\n\t\t 0.91135401 0.40205601 -0.38354 0.91174299 0.147043 -0.088229999 0.91135401 0.40205601\n\t\t -0.217023 0.81065297 0.543823 0.083866999 0.67469198 0.73331898 0.083866999 0.67469198\n\t\t 0.73331898 0.220109 0.771999 0.59629601 -0.088229999 0.91135401 0.40205601 0.220109\n\t\t 0.771999 0.59629601 0.083866999 0.67469198 0.73331898 0.35170501 0.42382199 0.83467299\n\t\t 0.35170501 0.42382199 0.83467299 0.49462301 0.51488799 0.70016998 0.220109 0.771999\n\t\t 0.59629601 0.49462301 0.51488799 0.70016998 0.35170501 0.42382199 0.83467299 0.54570597\n\t\t 0.096256003 0.83243001 0.54570597 0.096256003 0.83243001 0.69346201 0.17918 0.69785702\n\t\t 0.49462301 0.51488799 0.70016998 0.69346201 0.17918 0.69785702 0.54570597 0.096256003\n\t\t 0.83243001 0.63633198 -0.25813401 0.72694498 0.63633198 -0.25813401 0.72694498 0.78636301\n\t\t -0.184001 0.58972597 0.69346201 0.17918 0.69785702 0.78636301 -0.184001 0.58972597\n\t\t 0.63633198 -0.25813401 0.72694498 0.60978901 -0.58543402 0.53425199 0.60978901 -0.58543402\n\t\t 0.53425199 0.75916803 -0.51943803 0.392234 0.78636301 -0.184001 0.58972597 0.75916803\n\t\t -0.51943803 0.392234 0.60978901 -0.58543402 0.53425199 0.47015199 -0.83574301 0.28370801;\n\tsetAttr \".n[10458:10623]\" -type \"float3\"  0.47015199 -0.83574301 0.28370801 0.61601102\n\t\t -0.77599502 0.135508 0.75916803 -0.51943803 0.392234 0.61601102 -0.77599502 0.135508\n\t\t 0.47015199 -0.83574301 0.28370801 0.23857 -0.97103202 0.013459 0.23857 -0.97103202\n\t\t 0.013459 0.37871701 -0.914639 -0.141458 0.61601102 -0.77599502 0.135508 -0.049532\n\t\t -0.97065198 -0.235331 0.23857 -0.97103202 0.013459 0.0788 -0.98121399 0.176094 0.0788\n\t\t -0.98121399 0.176094 -0.18711001 -0.98087299 -0.053652 -0.049532 -0.97065198 -0.235331\n\t\t -0.60867202 -0.36531299 0.704319 -0.60867202 -0.36531299 0.704319 -0.60867202 -0.36531299\n\t\t 0.704319 -0.60867202 -0.36531299 0.704319 -0.60867202 -0.36531299 0.704319 -0.60867202\n\t\t -0.36531299 0.704319 -0.60867202 -0.36531299 0.704319 -0.60867202 -0.36531299 0.704319\n\t\t -0.60867202 -0.36531299 0.704319 -0.60867202 -0.36531299 0.704319 -0.60867202 -0.36531299\n\t\t 0.704319 -0.60867202 -0.36531299 0.704319 -0.60867202 -0.36531299 0.704319 -0.60867202\n\t\t -0.36531299 0.704319 -0.608679 -0.36528701 0.70432699 -0.608679 -0.36528701 0.70432699\n\t\t -0.608679 -0.36528701 0.70432699 -0.60867202 -0.36531299 0.704319 -0.608679 -0.36528701\n\t\t 0.70432699 -0.608679 -0.36528701 0.70432699 -0.60864598 -0.36534601 0.70432401 -0.60864598\n\t\t -0.36534601 0.70432401 -0.608639 -0.36537299 0.70431602 -0.608679 -0.36528701 0.70432699\n\t\t -0.608639 -0.36537299 0.70431602 -0.60864598 -0.36534601 0.70432401 -0.60867202 -0.36531299\n\t\t 0.704319 -0.60867202 -0.36531299 0.704319 -0.60864598 -0.36528599 0.704355 -0.608639\n\t\t -0.36537299 0.70431602 -0.60864598 -0.36528599 0.704355 -0.60867202 -0.36531299 0.704319\n\t\t -0.608679 -0.36528701 0.70432699 -0.608679 -0.36528701 0.70432699 -0.60864598 -0.36528599\n\t\t 0.704355 -0.60864598 -0.36528599 0.704355 -0.60864598 -0.36528599 0.704355 -0.608679\n\t\t -0.36528701 0.70432699 -0.60864598 -0.36528599 0.704355 -0.60864598 -0.36528599 0.704355\n\t\t -0.60864598 -0.36528599 0.704355 -0.60864598 -0.36528599 0.704355 -0.60864598 -0.36528599\n\t\t 0.704355 -0.60864598 -0.36528599 0.704355 -0.60864598 -0.36528599 0.704355 -0.60864598\n\t\t -0.36528599 0.704355 -0.60864598 -0.36528599 0.704355 -0.60864598 -0.36528599 0.704355\n\t\t -0.60864598 -0.36528599 0.704355 -0.60864598 -0.36528599 0.704355 -0.60864002 -0.36531201\n\t\t 0.70434701 -0.60864002 -0.36531201 0.70434701 -0.60864598 -0.36528599 0.704355 -0.60864598\n\t\t -0.36528599 0.704355 -0.60864598 -0.36528599 0.704355 -0.60864002 -0.36531201 0.70434701\n\t\t -0.60867202 -0.36531299 0.704319 -0.60867202 -0.36531299 0.704319 -0.60867202 -0.36531299\n\t\t 0.704319 -0.60864598 -0.36528599 0.704355 -0.60867202 -0.36531299 0.704319 -0.60867202\n\t\t -0.36531299 0.704319 -0.608679 -0.36528701 0.70432699 -0.608679 -0.36528701 0.70432699\n\t\t -0.608679 -0.36528701 0.70432699 -0.60867202 -0.36531299 0.704319 -0.608679 -0.36528701\n\t\t 0.70432699 -0.608679 -0.36528701 0.70432699 -0.60867798 -0.365347 0.70429498 -0.60867798\n\t\t -0.365347 0.70429498 -0.60866499 -0.36533999 0.70431101 -0.608679 -0.36528701 0.70432699\n\t\t -0.60866499 -0.36533999 0.70431101 -0.60867798 -0.365347 0.70429498 -0.60864598 -0.36528599\n\t\t 0.704355 -0.60864598 -0.36528599 0.704355 -0.60864598 -0.36528599 0.704355 -0.60866499\n\t\t -0.36533999 0.70431101 -0.60864598 -0.36528599 0.704355 -0.60864598 -0.36528599 0.704355\n\t\t -0.608679 -0.36528701 0.70432699 -0.608679 -0.36528701 0.70432699 -0.60867202 -0.36531299\n\t\t 0.704319 -0.60864598 -0.36528599 0.704355 -0.60867202 -0.36531299 0.704319 -0.608679\n\t\t -0.36528701 0.70432699 -0.60868502 -0.36532101 0.70430303 -0.60868502 -0.36532101\n\t\t 0.70430303 -0.60870397 -0.36531401 0.70428997 -0.60867202 -0.36531299 0.704319 -0.60870397\n\t\t -0.36531401 0.70428997 -0.60868502 -0.36532101 0.70430303 -0.60867202 -0.36531299\n\t\t 0.704319 -0.60867202 -0.36531299 0.704319 -0.60867202 -0.36531299 0.704319 -0.60870397\n\t\t -0.36531401 0.70428997 -0.85182798 -0.286212 -0.43871701 -0.74353898 -0.210003 -0.63486099\n\t\t -0.83616102 0.151893 -0.52703297 -0.83616102 0.151893 -0.52703297 -0.94002098 0.058596\n\t\t -0.33604699 -0.85182798 -0.286212 -0.43871701 -0.94002098 0.058596 -0.33604699 -0.83616102\n\t\t 0.151893 -0.52703297 -0.80905998 0.486168 -0.33024701 -0.80905998 0.486168 -0.33024701\n\t\t -0.91419101 0.37706 -0.148596 -0.94002098 0.058596 -0.33604699 -0.91419101 0.37706\n\t\t -0.148596 -0.80905998 0.486168 -0.33024701 -0.66635501 0.74191898 -0.074345 -0.66635501\n\t\t 0.74191898 -0.074345 -0.77827001 0.62066799 0.09522 -0.91419101 0.37706 -0.148596\n\t\t -0.77827001 0.62066799 0.09522 -0.66635501 0.74191898 -0.074345 -0.42986399 0.88008302\n\t\t 0.201671 -0.42986399 0.88008302 0.201671 -0.553011 0.752271 0.35814399 -0.77827001\n\t\t 0.62066799 0.09522 -0.74353898 -0.210003 -0.63486099 -0.85182798 -0.286212 -0.43871701\n\t\t -0.66306603 -0.604927 -0.44091499 -0.66306603 -0.604927 -0.44091499 -0.54539901 -0.54460597\n\t\t -0.63713801 -0.74353898 -0.210003 -0.63486099 -0.54539901 -0.54460597 -0.63713801\n\t\t -0.66306603 -0.604927 -0.44091499 -0.40246099 -0.84905398 -0.342246 -0.40246099 -0.84905398\n\t\t -0.342246 -0.271862 -0.80087698 -0.533562 -0.54539901 -0.54460597 -0.63713801 -0.271862\n\t\t -0.80087698 -0.533562 -0.40246099 -0.84905398 -0.342246 -0.109656 -0.98135102 -0.157877\n\t\t -0.109656 -0.98135102 -0.157877 0.035463002 -0.93976402 -0.33997899 -0.271862 -0.80087698\n\t\t -0.533562 0.035463002 -0.93976402 -0.33997899 -0.109656 -0.98135102 -0.157877 0.17069601\n\t\t -0.98171902 0.084202997 0.17069601 -0.98171902 0.084202997 0.329817 -0.94013101 -0.085879996\n\t\t 0.035463002 -0.93976402 -0.33997899 0.329817 -0.94013101 -0.085879996 0.17069601\n\t\t -0.98171902 0.084202997 0.39595899 -0.85011703 0.34715801 0.39595899 -0.85011703\n\t\t 0.34715801 0.56628197 -0.80198097 0.190134 0.329817 -0.94013101 -0.085879996 0.56628197\n\t\t -0.80198097 0.190134;\n\tsetAttr \".n[10624:10789]\" -type \"float3\"  0.39595899 -0.85011703 0.34715801 0.531865\n\t\t -0.60651499 0.59098101 0.531865 -0.60651499 0.59098101 0.70892203 -0.546287 0.44609401\n\t\t 0.56628197 -0.80198097 0.190134 0.70892203 -0.546287 0.44609401 0.531865 -0.60651499\n\t\t 0.59098101 0.55770898 -0.288041 0.77845502 0.55770898 -0.288041 0.77845502 0.73606598\n\t\t -0.211987 0.64286 0.70892203 -0.546287 0.44609401 0.73606598 -0.211987 0.64286 0.55770898\n\t\t -0.288041 0.77845502 0.46953601 0.056766 0.88108599 0.46953601 0.056766 0.88108599\n\t\t 0.64350599 0.150004 0.75059903 0.73606598 -0.211987 0.64286 0.64350599 0.150004 0.75059903\n\t\t 0.46953601 0.056766 0.88108599 0.280779 0.375512 0.88326401 0.280779 0.375512 0.88326401\n\t\t 0.44531399 0.48456299 0.75292301 0.64350599 0.150004 0.75059903 0.44531399 0.48456299\n\t\t 0.75292301 0.280779 0.375512 0.88326401 0.020173 0.619605 0.78465402 0.020173 0.619605\n\t\t 0.78465402 0.171793 0.74079603 0.649391 0.44531399 0.48456299 0.75292301 0.171793\n\t\t 0.74079603 0.649391 0.020173 0.619605 0.78465402 -0.272596 0.75192702 0.60024798\n\t\t -0.272596 0.75192702 0.60024798 -0.13559601 0.879677 0.45583099 0.171793 0.74079603\n\t\t 0.649391 -0.13559601 0.879677 0.45583099 -0.272596 0.75192702 0.60024798 -0.553011\n\t\t 0.752271 0.35814399 -0.553011 0.752271 0.35814399 -0.42986399 0.88008302 0.201671\n\t\t -0.13559601 0.879677 0.45583099 -0.98931903 -0.030703001 -0.14249501 -0.90960997\n\t\t -0.34245101 -0.235238 -0.85182798 -0.286212 -0.43871701 -0.85182798 -0.286212 -0.43871701\n\t\t -0.94002098 0.058596 -0.33604699 -0.98931903 -0.030703001 -0.14249501 -0.98931903\n\t\t -0.030703001 -0.14249501 -0.94002098 0.058596 -0.33604699 -0.91419101 0.37706 -0.148596\n\t\t -0.91419101 0.37706 -0.148596 -0.96596998 0.25724801 0.026949 -0.98931903 -0.030703001\n\t\t -0.14249501 -0.843126 0.477413 0.24742 -0.96596998 0.25724801 0.026949 -0.91419101\n\t\t 0.37706 -0.148596 -0.91419101 0.37706 -0.148596 -0.77827001 0.62066799 0.09522 -0.843126\n\t\t 0.477413 0.24742 -0.843126 0.477413 0.24742 -0.77827001 0.62066799 0.09522 -0.553011\n\t\t 0.752271 0.35814399 -0.553011 0.752271 0.35814399 -0.63941002 0.596439 0.48519599\n\t\t -0.843126 0.477413 0.24742 -0.85182798 -0.286212 -0.43871701 -0.90960997 -0.34245101\n\t\t -0.235238 -0.738931 -0.63064998 -0.237195 -0.738931 -0.63064998 -0.237195 -0.66306603\n\t\t -0.604927 -0.44091499 -0.85182798 -0.286212 -0.43871701 -0.40246099 -0.84905398 -0.342246\n\t\t -0.66306603 -0.604927 -0.44091499 -0.738931 -0.63064998 -0.237195 -0.738931 -0.63064998\n\t\t -0.237195 -0.503317 -0.85132498 -0.148047 -0.40246099 -0.84905398 -0.342246 -0.40246099\n\t\t -0.84905398 -0.342246 -0.503317 -0.85132498 -0.148047 -0.238535 -0.97095603 0.018586\n\t\t -0.238535 -0.97095603 0.018586 -0.109656 -0.98135102 -0.157877 -0.40246099 -0.84905398\n\t\t -0.342246 0.17069601 -0.98171902 0.084202997 -0.109656 -0.98135102 -0.157877 -0.238535\n\t\t -0.97095603 0.018586 -0.238535 -0.97095603 0.018586 0.014863 -0.97128099 0.237472\n\t\t 0.17069601 -0.98171902 0.084202997 0.17069601 -0.98171902 0.084202997 0.014863 -0.97128099\n\t\t 0.237472 0.218548 -0.85227901 0.475245 0.218548 -0.85227901 0.475245 0.39595899 -0.85011703\n\t\t 0.34715801 0.17069601 -0.98171902 0.084202997 0.531865 -0.60651499 0.59098101 0.39595899\n\t\t -0.85011703 0.34715801 0.218548 -0.85227901 0.475245 0.218548 -0.85227901 0.475245\n\t\t 0.341454 -0.63206202 0.69563401 0.531865 -0.60651499 0.59098101 0.531865 -0.60651499\n\t\t 0.59098101 0.341454 -0.63206202 0.69563401 0.36477301 -0.344111 0.86517602 0.36477301\n\t\t -0.344111 0.86517602 0.55770898 -0.288041 0.77845502 0.531865 -0.60651499 0.59098101\n\t\t 0.46953601 0.056766 0.88108599 0.55770898 -0.288041 0.77845502 0.36477301 -0.344111\n\t\t 0.86517602 0.36477301 -0.344111 0.86517602 0.28502101 -0.032381002 0.95797402 0.46953601\n\t\t 0.056766 0.88108599 0.46953601 0.056766 0.88108599 0.28502101 -0.032381002 0.95797402\n\t\t 0.114417 0.25584301 0.95992398 0.114417 0.25584301 0.95992398 0.280779 0.375512 0.88326401\n\t\t 0.46953601 0.056766 0.88108599 0.020173 0.619605 0.78465402 0.280779 0.375512 0.88326401\n\t\t 0.114417 0.25584301 0.95992398 0.114417 0.25584301 0.95992398 -0.121191 0.476464\n\t\t 0.87080097 0.020173 0.619605 0.78465402 0.020173 0.619605 0.78465402 -0.121191 0.476464\n\t\t 0.87080097 -0.38591099 0.59615499 0.70403898 -0.38591099 0.59615499 0.70403898 -0.272596\n\t\t 0.75192702 0.60024798 0.020173 0.619605 0.78465402 -0.553011 0.752271 0.35814399\n\t\t -0.272596 0.75192702 0.60024798 -0.38591099 0.59615499 0.70403898 -0.38591099 0.59615499\n\t\t 0.70403898 -0.63941002 0.596439 0.48519599 -0.553011 0.752271 0.35814399 -0.608679\n\t\t -0.36528701 0.70432699 -0.608769 -0.36525601 0.70426399 -0.60867202 -0.36531299 0.704319\n\t\t -0.608679 -0.36528701 0.70432699 -0.60867202 -0.36531299 0.704319 -0.608679 -0.36528701\n\t\t 0.70432699 -0.60867202 -0.36531299 0.704319 -0.608679 -0.36528701 0.70432699 -0.608679\n\t\t -0.36528701 0.70432699 -0.60867202 -0.36531299 0.704319 -0.60867202 -0.36531299 0.704319\n\t\t -0.608679 -0.36528701 0.70432699 -0.60867202 -0.36531299 0.704319 -0.60864002 -0.36531201\n\t\t 0.70434701 -0.60867202 -0.36531299 0.704319 -0.60867202 -0.36531299 0.704319 -0.60870397\n\t\t -0.36531401 0.70428997 -0.60864002 -0.36531201 0.70434701 -0.60864002 -0.36531201\n\t\t 0.70434701 -0.60870999 -0.36546999 0.70420498 -0.60867202 -0.36531299 0.704319 -0.60867202\n\t\t -0.36531299 0.704319 -0.608679 -0.36528701 0.70432699 -0.608679 -0.36528701 0.70432699\n\t\t -0.60867202 -0.36531299 0.704319 -0.608679 -0.36528701 0.70432699 -0.608679 -0.36528701\n\t\t 0.70432699 -0.608679 -0.36528701 0.70432699 -0.60880202 -0.36519599 0.70426702;\n\tsetAttr \".n[10790:10955]\" -type \"float3\"  -0.608679 -0.36528701 0.70432699 -0.608679\n\t\t -0.36528701 0.70432699 -0.60864002 -0.36531201 0.70434701 -0.608679 -0.36528701 0.70432699\n\t\t -0.608679 -0.36528701 0.70432699 -0.60870397 -0.36531401 0.70428997 -0.60864002 -0.36531201\n\t\t 0.70434701 -0.60864002 -0.36531201 0.70434701 -0.60867202 -0.36531299 0.704319 -0.608679\n\t\t -0.36528701 0.70432699 -0.608679 -0.36528701 0.70432699 -0.608679 -0.36528701 0.70432699\n\t\t -0.60873097 -0.36515999 0.70434701 -0.026399 -0.74928302 -0.66172302 -0.02878 -0.74400502\n\t\t -0.66755402 0.045931999 -0.88410801 -0.46502 0.045931999 -0.88410801 -0.46502 0.050754\n\t\t -0.89131898 -0.45052701 -0.026399 -0.74928302 -0.66172302 0.050754 -0.89131898 -0.45052701\n\t\t 0.045931999 -0.88410801 -0.46502 0.090855002 -0.94178301 -0.32371399 0.090855002\n\t\t -0.94178301 -0.32371399 0.090855002 -0.94178301 -0.32371399 0.050754 -0.89131898\n\t\t -0.45052701 0.24674501 -0.90759999 0.33967501 0.24675 -0.907619 0.33962101 0.246748\n\t\t -0.90760899 0.33964801 0.246748 -0.90760899 0.33964801 0.246749 -0.90758502 0.33971101\n\t\t 0.24674501 -0.90759999 0.33967501 -0.02878 -0.74400502 -0.66755402 -0.026399 -0.74928302\n\t\t -0.66172302 -0.104071 -0.54736298 -0.83039898 -0.104071 -0.54736298 -0.83039898 -0.105505\n\t\t -0.54308897 -0.83302099 -0.02878 -0.74400502 -0.66755402 -0.105505 -0.54308897 -0.83302099\n\t\t -0.104071 -0.54736298 -0.83039898 -0.180553 -0.277116 -0.94371998 -0.180553 -0.277116\n\t\t -0.94371998 -0.180062 -0.279127 -0.94322097 -0.105505 -0.54308897 -0.83302099 0.27409601\n\t\t -0.26902899 0.92330599 0.27403501 -0.268877 0.92336899 0.26072499 -0.154945 0.95289803\n\t\t 0.26072499 -0.154945 0.95289803 0.25904599 -0.141792 0.955401 0.27409601 -0.26902899\n\t\t 0.92330599 0.25904599 -0.141792 0.955401 0.26072499 -0.154945 0.95289803 0.24158899\n\t\t -0.025331 0.97004801 0.24158899 -0.025331 0.97004801 0.24164601 -0.025361 0.97003299\n\t\t 0.25904599 -0.141792 0.955401 -0.180062 -0.279127 -0.94322097 -0.180553 -0.277116\n\t\t -0.94371998 -0.22901601 -0.047152001 -0.97228003 -0.22901601 -0.047152001 -0.97228003\n\t\t -0.228067 -0.052308999 -0.97223902 -0.180062 -0.279127 -0.94322097 -0.228067 -0.052308999\n\t\t -0.97223902 -0.22901601 -0.047152001 -0.97228003 -0.26041901 0.15244301 -0.953385\n\t\t -0.26041901 0.15244301 -0.953385 -0.25923201 0.14344101 -0.95510399 -0.228067 -0.052308999\n\t\t -0.97223902 -0.25923201 0.14344101 -0.95510399 -0.26041901 0.15244301 -0.953385 -0.284924\n\t\t 0.39894199 -0.87158698 -0.284924 0.39894199 -0.87158698 -0.28370401 0.38069299 -0.88010502\n\t\t -0.25923201 0.14344101 -0.95510399 -0.28370401 0.38069299 -0.88010502 -0.284924 0.39894199\n\t\t -0.87158698 -0.28828201 0.66531301 -0.68866003 -0.28828201 0.66531301 -0.68866003\n\t\t -0.289233 0.64347202 -0.70872301 -0.28370401 0.38069299 -0.88010502 -0.289233 0.64347202\n\t\t -0.70872301 -0.28828201 0.66531301 -0.68866003 -0.26545301 0.846591 -0.46132201 -0.26545301\n\t\t 0.846591 -0.46132201 -0.26838201 0.83337599 -0.48317301 -0.289233 0.64347202 -0.70872301\n\t\t -0.26838201 0.83337599 -0.48317301 -0.26545301 0.846591 -0.46132201 -0.21818499 0.95810401\n\t\t -0.18556 -0.21818499 0.95810401 -0.18556 -0.224775 0.94951499 -0.218854 -0.26838201\n\t\t 0.83337599 -0.48317301 -0.224775 0.94951499 -0.218854 -0.21818499 0.95810401 -0.18556\n\t\t -0.186353 0.98175502 -0.037813999 -0.186353 0.98175502 -0.037813999 -0.186382 0.98174798\n\t\t -0.037843999 -0.224775 0.94951499 -0.218854 -0.012086 0.81942999 0.57305199 -0.0058599999\n\t\t 0.815727 0.57840699 -0.0087289996 0.81744099 0.57594699 -0.0087289996 0.81744099\n\t\t 0.57594699 -0.015016 0.821145 0.57052201 -0.012086 0.81942999 0.57305199 0.196849\n\t\t 0.206432 0.95845503 0.19691201 0.206313 0.95846802 0.22001199 0.094884001 0.97087198\n\t\t 0.22001199 0.094884001 0.97087198 0.22160099 0.086675003 0.97127801 0.196849 0.206432\n\t\t 0.95845503 0.22160099 0.086675003 0.97127801 0.22001199 0.094884001 0.97087198 0.241531\n\t\t -0.025392 0.970061 0.241531 -0.025392 0.970061 0.241588 -0.025421999 0.97004598 0.22160099\n\t\t 0.086675003 0.97127801 0.241588 -0.025421999 0.97004598 0.241531 -0.025392 0.970061\n\t\t 0.24164601 -0.025361 0.97003299 0.24164601 -0.025361 0.97003299 0.24158899 -0.025331\n\t\t 0.97004801 0.241588 -0.025421999 0.97004598 -0.91419899 0.33833399 -0.223094 -0.91420102\n\t\t 0.334703 -0.228497 -0.90462798 0.226485 -0.361045 -0.90462798 0.226485 -0.361045\n\t\t -0.90455401 0.234752 -0.35591301 -0.91419899 0.33833399 -0.223094 -0.90455401 0.234752\n\t\t -0.35591301 -0.90462798 0.226485 -0.361045 -0.88085002 0.076389998 -0.46719101 -0.88085002\n\t\t 0.076389998 -0.46719101 -0.88004202 0.080417 -0.46803701 -0.90455401 0.234752 -0.35591301\n\t\t -0.88004202 0.080417 -0.46803701 -0.88085002 0.076389998 -0.46719101 -0.85131001\n\t\t -0.065892003 -0.520509 -0.85131001 -0.065892003 -0.520509 -0.85191 -0.056278002 -0.52065599\n\t\t -0.88004202 0.080417 -0.46803701 -0.85191 -0.056278002 -0.52065599 -0.85131001 -0.065892003\n\t\t -0.520509 -0.82671303 -0.18250699 -0.53219998 -0.82671303 -0.18250699 -0.53219998\n\t\t -0.82573903 -0.19300599 -0.53000402 -0.85191 -0.056278002 -0.52065599 -0.82573903\n\t\t -0.19300599 -0.53000402 -0.82671303 -0.18250699 -0.53219998 -0.79274601 -0.329642\n\t\t -0.51272899 -0.79274601 -0.329642 -0.51272899 -0.79314202 -0.33525801 -0.50845599\n\t\t -0.82573903 -0.19300599 -0.53000402 -0.79314202 -0.33525801 -0.50845599 -0.79274601\n\t\t -0.329642 -0.51272899 -0.74731302 -0.494313 -0.44404799 -0.74731302 -0.494313 -0.44404799\n\t\t -0.745942 -0.50142503 -0.43834201 -0.79314202 -0.33525801 -0.50845599 -0.745942 -0.50142503\n\t\t -0.43834201 -0.74731302 -0.494313 -0.44404799 -0.70267498 -0.62592 -0.338337 -0.70267498\n\t\t -0.62592 -0.338337 -0.701581 -0.62918901 -0.33452299 -0.745942 -0.50142503 -0.43834201\n\t\t -0.701581 -0.62918901 -0.33452299 -0.70267498 -0.62592 -0.338337 -0.66007298 -0.72367603\n\t\t -0.201489;\n\tsetAttr \".n[10956:11121]\" -type \"float3\"  -0.66007298 -0.72367603 -0.201489 -0.65216398\n\t\t -0.71933699 -0.23924001 -0.701581 -0.62918901 -0.33452299 -0.65216398 -0.71933699\n\t\t -0.23924001 -0.66007298 -0.72367603 -0.201489 -0.65387398 -0.74988699 0.100591 -0.65387398\n\t\t -0.74988699 0.100591 -0.59795302 -0.80044502 -0.041719001 -0.65216398 -0.71933699\n\t\t -0.23924001 -0.59795302 -0.80044502 -0.041719001 -0.65387398 -0.74988699 0.100591\n\t\t -0.60027498 -0.76590198 0.23035599 -0.60027498 -0.76590198 0.23035599 -0.45047 -0.88784802\n\t\t 0.093818001 -0.59795302 -0.80044502 -0.041719001 -0.67426401 -0.35317001 0.64856702\n\t\t -0.66641599 -0.36674899 0.64914203 -0.68531901 -0.29555199 0.665573 -0.68531901 -0.29555199\n\t\t 0.665573 -0.69077098 -0.28028801 0.66653901 -0.67426401 -0.35317001 0.64856702 -0.69077098\n\t\t -0.28028801 0.66653901 -0.68531901 -0.29555199 0.665573 -0.69849598 -0.22154 0.68045902\n\t\t -0.69849598 -0.22154 0.68045902 -0.69858098 -0.221477 0.68039203 -0.69077098 -0.28028801\n\t\t 0.66653901 -0.91420102 0.334703 -0.228497 -0.91419899 0.33833399 -0.223094 -0.90987599\n\t\t 0.40435201 -0.092871003 -0.90987599 0.40435201 -0.092871003 -0.90599102 0.41847801\n\t\t -0.063693002 -0.91420102 0.334703 -0.228497 -0.90599102 0.41847801 -0.063693002 -0.90987599\n\t\t 0.40435201 -0.092871003 -0.90388298 0.399708 0.152412 -0.90388298 0.399708 0.152412\n\t\t -0.88306898 0.39711401 0.249981 -0.90599102 0.41847801 -0.063693002 -0.88306898 0.39711401\n\t\t 0.249981 -0.90388298 0.399708 0.152412 -0.85704499 0.33891699 0.38808399 -0.85704499\n\t\t 0.33891699 0.38808399 -0.82349998 0.341571 0.452966 -0.88306898 0.39711401 0.249981\n\t\t -0.73627001 -0.087863997 0.670959 -0.72488999 -0.098637998 0.68176597 -0.71761 -0.16053399\n\t\t 0.67769098 -0.71761 -0.16053399 0.67769098 -0.72437698 -0.14957599 0.67298198 -0.73627001\n\t\t -0.087863997 0.670959 -0.72437698 -0.14957599 0.67298198 -0.71761 -0.16053399 0.67769098\n\t\t -0.70103699 -0.221817 0.67774999 -0.70103699 -0.221817 0.67774999 -0.70105702 -0.221783\n\t\t 0.67773998 -0.72437698 -0.14957599 0.67298198 -0.70105702 -0.221783 0.67773998 -0.70103699\n\t\t -0.221817 0.67774999 -0.69858098 -0.221477 0.68039203 -0.69858098 -0.221477 0.68039203\n\t\t -0.69849598 -0.22154 0.68045902 -0.70105702 -0.221783 0.67773998 -0.96899098 -0.21763401\n\t\t 0.117011 -0.96881598 -0.219033 0.115849 -0.96685898 -0.233383 0.103522 -0.96899098\n\t\t -0.21763401 0.117011 -0.96685898 -0.233383 0.103522 -0.96851498 -0.227915 0.100163\n\t\t -0.96685898 -0.233383 0.103522 -0.96636802 -0.23579399 0.102637 -0.96851498 -0.227915\n\t\t 0.100163 -0.96685898 -0.233383 0.103522 -0.96571499 -0.238232 0.103154 -0.96636802\n\t\t -0.23579399 0.102637 -0.96571499 -0.238232 0.103154 -0.96583998 -0.237867 0.102819\n\t\t -0.96636802 -0.23579399 0.102637 -0.96636802 -0.23579399 0.102637 -0.96918201 -0.23093501\n\t\t 0.085758001 -0.96851498 -0.227915 0.100163 -0.96918201 -0.23093501 0.085758001 -0.97241902\n\t\t -0.219217 0.079654001 -0.96851498 -0.227915 0.100163 -0.96918201 -0.23093501 0.085758001\n\t\t -0.968445 -0.234878 0.083348997 -0.97241902 -0.219217 0.079654001 -0.968445 -0.234878\n\t\t 0.083348997 -0.96849799 -0.23469301 0.083256997 -0.97241902 -0.219217 0.079654001\n\t\t -0.968445 -0.234878 0.083348997 -0.96856499 -0.233657 0.085363001 -0.96849799 -0.23469301\n\t\t 0.083256997 -0.96849799 -0.23469301 0.083256997 -0.96973902 -0.230296 0.081058003\n\t\t -0.97241902 -0.219217 0.079654001 -0.97241902 -0.219217 0.079654001 -0.97066802 -0.22141799\n\t\t 0.093694001 -0.96851498 -0.227915 0.100163 -0.97241902 -0.219217 0.079654001 -0.97303599\n\t\t -0.217204 0.077610001 -0.97066802 -0.22141799 0.093694001 -0.97241902 -0.219217 0.079654001\n\t\t -0.97401297 -0.21403 0.074100003 -0.97303599 -0.217204 0.077610001 -0.97401297 -0.21403\n\t\t 0.074100003 -0.97347999 -0.215468 0.076879002 -0.97303599 -0.217204 0.077610001 -0.420102\n\t\t -0.024995999 -0.90713298 -0.420102 -0.024995999 -0.90713298 -0.420102 -0.024995999\n\t\t -0.90713298 -0.96795398 0.202557 0.14844599 -0.97069597 0.18577 0.15244401 -0.96971798\n\t\t 0.173471 0.17191499 -0.96971798 0.173471 0.17191499 -0.96433699 0.209268 0.162055\n\t\t -0.96795398 0.202557 0.14844599 -0.96971798 0.173471 0.17191499 -0.97069597 0.18577\n\t\t 0.15244401 -0.97394598 0.162268 0.15842301 -0.97394598 0.162268 0.15842301 -0.97292799\n\t\t 0.13752 0.18574101 -0.96971798 0.173471 0.17191499 -0.96656102 0.174964 0.18747699\n\t\t -0.96971798 0.173471 0.17191499 -0.97292799 0.13752 0.18574101 -0.97292799 0.13752\n\t\t 0.18574101 -0.97207302 0.058109 0.22736999 -0.96656102 0.174964 0.18747699 -0.96971798\n\t\t 0.173471 0.17191499 -0.96656102 0.174964 0.18747699 -0.938784 0.297627 0.17350399\n\t\t -0.938784 0.297627 0.17350399 -0.96433699 0.209268 0.162055 -0.96971798 0.173471\n\t\t 0.17191499 -0.94228899 0.245865 0.227248 -0.96433699 0.209268 0.162055 -0.938784\n\t\t 0.297627 0.17350399 -0.938784 0.297627 0.17350399 -0.93828499 0.25105101 0.23789801\n\t\t -0.94228899 0.245865 0.227248 -0.97207302 0.058109 0.22736999 -0.97292799 0.13752\n\t\t 0.18574101 -0.957838 0.143805 0.24873 -0.957838 0.143805 0.24873 -0.95548898 0.14450701\n\t\t 0.25721401 -0.97207302 0.058109 0.22736999 -0.93046498 0.186257 0.31550601 -0.886756\n\t\t 0.21170899 0.41090599 -0.88078499 0.261397 0.39482701 -0.88078499 0.261397 0.39482701\n\t\t -0.927405 0.220406 0.30222699 -0.93046498 0.186257 0.31550601 -0.955989 0.16425499\n\t\t 0.243117 -0.93046498 0.186257 0.31550601 -0.927405 0.220406 0.30222699 -0.927405\n\t\t 0.220406 0.30222699 -0.95330501 0.190411 0.23442 -0.955989 0.16425499 0.243117 -0.82127303\n\t\t 0.29597601 0.48775899 -0.88078499 0.261397 0.39482701 -0.886756 0.21170899 0.41090599\n\t\t -0.886756 0.21170899 0.41090599 -0.82898498 0.23441499 0.50777298 -0.82127303 0.29597601\n\t\t 0.48775899 -0.955989 0.16425499 0.243117;\n\tsetAttr \".n[11122:11287]\" -type \"float3\"  -0.95330501 0.190411 0.23442 -0.96120399\n\t\t 0.182749 0.206615 -0.96120399 0.182749 0.206615 -0.96391898 0.15802801 0.214214 -0.955989\n\t\t 0.16425499 0.243117 -0.95330501 0.190411 0.23442 -0.927405 0.220406 0.30222699 -0.92262501\n\t\t 0.25395 0.29029801 -0.92262501 0.25395 0.29029801 -0.927405 0.220406 0.30222699 -0.88078499\n\t\t 0.261397 0.39482701 -0.92262501 0.25395 0.29029801 -0.94871902 0.21726599 0.229626\n\t\t -0.95330501 0.190411 0.23442 -0.88078499 0.261397 0.39482701 -0.87520701 0.306537\n\t\t 0.37423 -0.92262501 0.25395 0.29029801 -0.87520701 0.306537 0.37423 -0.88078499 0.261397\n\t\t 0.39482701 -0.82127303 0.29597601 0.48775899 -0.82127303 0.29597601 0.48775899 -0.81662798\n\t\t 0.34675699 0.46138701 -0.87520701 0.306537 0.37423 -0.81662798 0.34675699 0.46138701\n\t\t -0.82127303 0.29597601 0.48775899 -0.74532199 0.32234901 0.58359802 -0.74532199 0.32234901\n\t\t 0.58359802 -0.82127303 0.29597601 0.48775899 -0.82898498 0.23441499 0.50777298 -0.74532199\n\t\t 0.32234901 0.58359802 -0.74509603 0.381612 0.546996 -0.81662798 0.34675699 0.46138701\n\t\t -0.63334799 0.41287199 0.65452802 -0.74509603 0.381612 0.546996 -0.74532199 0.32234901\n\t\t 0.58359802 -0.74532199 0.32234901 0.58359802 -0.63020098 0.34474999 0.695696 -0.63334799\n\t\t 0.41287199 0.65452802 -0.54110402 0.41506001 0.73139 -0.63334799 0.41287199 0.65452802\n\t\t -0.63020098 0.34474999 0.695696 -0.63020098 0.34474999 0.695696 -0.540766 0.35829201\n\t\t 0.761051 -0.54110402 0.41506001 0.73139 -0.635041 0.281569 0.71933502 -0.63020098\n\t\t 0.34474999 0.695696 -0.74532199 0.32234901 0.58359802 -0.540766 0.35829201 0.761051\n\t\t -0.63020098 0.34474999 0.695696 -0.635041 0.281569 0.71933502 -0.74532199 0.32234901\n\t\t 0.58359802 -0.749551 0.25816199 0.60952902 -0.635041 0.281569 0.71933502 -0.82898498\n\t\t 0.23441499 0.50777298 -0.749551 0.25816199 0.60952902 -0.74532199 0.32234901 0.58359802\n\t\t -0.635041 0.281569 0.71933502 -0.56484902 0.305069 0.76673299 -0.540766 0.35829201\n\t\t 0.761051 -0.56484902 0.305069 0.76673299 -0.55575597 0.30858001 0.771954 -0.540766\n\t\t 0.35829201 0.761051 -0.55575597 0.30858001 0.771954 -0.52626401 0.35313201 0.77352703\n\t\t -0.540766 0.35829201 0.761051 -0.55575597 0.30858001 0.771954 -0.57745999 0.31407601\n\t\t 0.75358802 -0.52626401 0.35313201 0.77352703 -0.540766 0.35829201 0.761051 -0.52626401\n\t\t 0.35313201 0.77352703 -0.53127903 0.409843 0.74146497 -0.54110402 0.41506001 0.73139\n\t\t -0.540766 0.35829201 0.761051 -0.53127903 0.409843 0.74146497 -0.54110402 0.41506001\n\t\t 0.73139 -0.53127903 0.409843 0.74146497 -0.53132999 0.413589 0.73934603 -0.54110402\n\t\t 0.41506001 0.73139 -0.53132999 0.413589 0.73934603 -0.53142798 0.41350201 0.73932397\n\t\t -0.95330501 0.190411 0.23442 -0.94871902 0.21726599 0.229626 -0.95735699 0.20734701\n\t\t 0.20118301 -0.95735699 0.20734701 0.20118301 -0.96120399 0.182749 0.206615 -0.95330501\n\t\t 0.190411 0.23442 -0.51092601 -0.062045999 -0.85738301 -0.51109701 -0.062167 -0.85727203\n\t\t -0.506338 -0.059726 -0.86026502 -0.506338 -0.059726 -0.86026502 -0.505885 -0.059055001\n\t\t -0.86057699 -0.51092601 -0.062045999 -0.85738301 -0.51109701 -0.062167 -0.85727203\n\t\t -0.51092601 -0.062045999 -0.85738301 -0.515715 -0.065342002 -0.85426497 -0.515715\n\t\t -0.065342002 -0.85426497 -0.51500797 -0.066623002 -0.85459298 -0.51109701 -0.062167\n\t\t -0.85727203 -0.51091802 -0.062289 -0.85737002 -0.51109701 -0.062167 -0.85727203 -0.51500797\n\t\t -0.066623002 -0.85459298 -0.51500797 -0.066623002 -0.85459298 -0.51303101 -0.067997001\n\t\t -0.85567302 -0.51091802 -0.062289 -0.85737002 -0.51303101 -0.067997001 -0.85567302\n\t\t -0.51500797 -0.066623002 -0.85459298 -0.51498699 -0.068883002 -0.85442603 -0.51498699\n\t\t -0.068883002 -0.85442603 -0.51443201 -0.067447998 -0.85487401 -0.51303101 -0.067997001\n\t\t -0.85567302 -0.51443201 -0.067447998 -0.85487401 -0.51498699 -0.068883002 -0.85442603\n\t\t -0.51086903 -0.068792 -0.856902 -0.51086903 -0.068792 -0.856902 -0.51082599 -0.068607002\n\t\t -0.856942 -0.51443201 -0.067447998 -0.85487401 -0.51082599 -0.068607002 -0.856942\n\t\t -0.51086903 -0.068792 -0.856902 -0.50844598 -0.062350001 -0.85883403 -0.50844598\n\t\t -0.062350001 -0.85883403 -0.50862497 -0.063082002 -0.85867399 -0.51082599 -0.068607002\n\t\t -0.856942 -0.50862497 -0.063082002 -0.85867399 -0.50844598 -0.062350001 -0.85883403\n\t\t -0.506338 -0.059726 -0.86026502 -0.51109701 -0.062167 -0.85727203 -0.51091802 -0.062289\n\t\t -0.85737002 -0.50570297 -0.063510999 -0.860367 -0.50570297 -0.063510999 -0.860367\n\t\t -0.506338 -0.059726 -0.86026502 -0.51109701 -0.062167 -0.85727203 -0.506338 -0.059726\n\t\t -0.86026502 -0.50570297 -0.063510999 -0.860367 -0.50862497 -0.063082002 -0.85867399\n\t\t -0.200086 0.96520799 -0.168345 -0.238904 0.95555502 -0.172739 -0.243817 0.95552099\n\t\t -0.165932 -0.202097 0.96470398 -0.16883101 -0.200086 0.96520799 -0.168345 -0.243817\n\t\t 0.95552099 -0.165932 -0.202097 0.96470398 -0.16883101 -0.243817 0.95552099 -0.165932\n\t\t -0.24274699 0.95591003 -0.165259 -0.24274699 0.95591003 -0.165259 -0.243817 0.95552099\n\t\t -0.165932 -0.232985 0.961178 -0.147836 -0.232985 0.961178 -0.147836 -0.22801 0.96254802\n\t\t -0.146676 -0.24274699 0.95591003 -0.165259 -0.22801 0.96254802 -0.146676 -0.232985\n\t\t 0.961178 -0.147836 -0.206614 0.97026199 -0.126105 -0.206614 0.97026199 -0.126105\n\t\t -0.199351 0.97175997 -0.126258 -0.22801 0.96254802 -0.146676 -0.199351 0.97175997\n\t\t -0.126258 -0.206614 0.97026199 -0.126105 -0.153329 0.98275101 -0.103399 -0.153329\n\t\t 0.98275101 -0.103399 -0.143685 0.98415202 -0.103918 -0.199351 0.97175997 -0.126258\n\t\t -0.143685 0.98415202 -0.103918 -0.153329 0.98275101 -0.103399 -0.112492 0.990484\n\t\t -0.079287998 -0.112492 0.990484 -0.079287998 -0.102696 0.99155301 -0.079227;\n\tsetAttr \".n[11288:11453]\" -type \"float3\"  -0.143685 0.98415202 -0.103918 -0.102696\n\t\t 0.99155301 -0.079227 -0.112492 0.990484 -0.079287998 -0.073244996 0.99546301 -0.060733002\n\t\t -0.073244996 0.99546301 -0.060733002 -0.064944997 0.99596 -0.062015001 -0.102696\n\t\t 0.99155301 -0.079227 -0.064944997 0.99596 -0.062015001 -0.073244996 0.99546301 -0.060733002\n\t\t -0.030336 0.99798697 -0.055695999 -0.030336 0.99798697 -0.055695999 -0.022737 0.99795598\n\t\t -0.059726998 -0.064944997 0.99596 -0.062015001 -0.022737 0.99795598 -0.059726998\n\t\t -0.030336 0.99798697 -0.055695999 0.111059 0.99157 0.066744998 0.111059 0.99157 0.066744998\n\t\t 0.147774 0.98335803 0.105688 -0.022737 0.99795598 -0.059726998 0.147774 0.98335803\n\t\t 0.105688 0.111059 0.99157 0.066744998 0.27702001 0.91895503 0.280682 0.27702001 0.91895503\n\t\t 0.280682 0.28859201 0.909908 0.29796201 0.147774 0.98335803 0.105688 0.28859201 0.909908\n\t\t 0.29796201 0.27702001 0.91895503 0.280682 0.38549 0.80418599 0.45241901 0.38549 0.80418599\n\t\t 0.45241901 0.39717901 0.78541702 0.474729 0.28859201 0.909908 0.29796201 0.49974599\n\t\t 0.56997001 0.65221798 0.39717901 0.78541702 0.474729 0.38549 0.80418599 0.45241901\n\t\t 0.38549 0.80418599 0.45241901 0.50735903 0.56784999 0.64817703 0.49974599 0.56997001\n\t\t 0.65221798 0.55261999 0.30083299 0.77724499 0.49974599 0.56997001 0.65221798 0.50735903\n\t\t 0.56784999 0.64817703 0.50735903 0.56784999 0.64817703 0.55163097 0.326157 0.76767498\n\t\t 0.55261999 0.30083299 0.77724499 0.55261999 0.30083299 0.77724499 0.55163097 0.326157\n\t\t 0.76767498 0.482838 0.016511001 0.87555403 0.482838 0.016511001 0.87555403 0.46731299\n\t\t -0.035372 0.88338399 0.55261999 0.30083299 0.77724499 0.46731299 -0.035372 0.88338399\n\t\t 0.482838 0.016511001 0.87555403 0.382016 -0.179792 0.90649801 0.382016 -0.179792\n\t\t 0.90649801 0.38146001 -0.18104 0.90648299 0.46731299 -0.035372 0.88338399 0.050905999\n\t\t -0.588534 0.80686897 0.047947001 -0.58997703 0.805996 0.064914003 -0.581541 0.81092298\n\t\t 0.064914003 -0.581541 0.81092298 0.068912998 -0.57949799 0.81205499 0.050905999 -0.588534\n\t\t 0.80686897 -0.33531401 -0.79890001 0.49932399 -0.33351901 -0.80849802 0.48486701\n\t\t -0.38503799 -0.78240597 0.48947701 -0.38503799 -0.78240597 0.48947701 -0.38826799\n\t\t -0.77968001 0.49127099 -0.33531401 -0.79890001 0.49932399 -0.38826799 -0.77968001\n\t\t 0.49127099 -0.38503799 -0.78240597 0.48947701 -0.44679999 -0.79178798 0.416464 -0.44679999\n\t\t -0.79178798 0.416464 -0.44499499 -0.79495603 0.412341 -0.38826799 -0.77968001 0.49127099\n\t\t -0.44499499 -0.79495603 0.412341 -0.44679999 -0.79178798 0.416464 -0.470696 -0.80234802\n\t\t 0.366992 -0.470696 -0.80234802 0.366992 -0.469329 -0.804892 0.363152 -0.44499499\n\t\t -0.79495603 0.412341 -0.469329 -0.804892 0.363152 -0.470696 -0.80234802 0.366992\n\t\t -0.48565501 -0.81230402 0.322956 -0.48565501 -0.81230402 0.322956 -0.48382601 -0.81478\n\t\t 0.31944799 -0.469329 -0.804892 0.363152 -0.48382601 -0.81478 0.31944799 -0.48565501\n\t\t -0.81230402 0.322956 -0.48907599 -0.8276 0.27546999 -0.48907599 -0.8276 0.27546999\n\t\t -0.486449 -0.82985401 0.273332 -0.48382601 -0.81478 0.31944799 -0.486449 -0.82985401\n\t\t 0.273332 -0.48907599 -0.8276 0.27546999 -0.48836899 -0.83986002 0.236921 -0.48836899\n\t\t -0.83986002 0.236921 -0.48730001 -0.84086603 0.23554701 -0.486449 -0.82985401 0.273332\n\t\t -0.495812 -0.84464502 0.20185301 -0.48730001 -0.84086603 0.23554701 -0.48836899 -0.83986002\n\t\t 0.236921 -0.48836899 -0.83986002 0.236921 -0.49477401 -0.84537703 0.201334 -0.495812\n\t\t -0.84464502 0.20185301 -0.495812 -0.84464502 0.20185301 -0.49477401 -0.84537703 0.201334\n\t\t -0.50609601 -0.84272099 0.183541 -0.495812 -0.84464502 0.20185301 -0.50609601 -0.84272099\n\t\t 0.183541 -0.49068099 -0.85208398 0.18216699 -0.495812 -0.84464502 0.20185301 -0.49068099\n\t\t -0.85208398 0.18216699 -0.47911501 -0.85898298 0.180549 -0.94228899 0.245865 0.227248\n\t\t -0.93828499 0.25105101 0.23789801 -0.916565 0.271624 0.293477 -0.916565 0.271624\n\t\t 0.293477 -0.91654497 0.27186301 0.293318 -0.94228899 0.245865 0.227248 -0.91654497\n\t\t 0.27186301 0.293318 -0.916565 0.271624 0.293477 -0.86666298 0.32765701 0.376214 -0.86666298\n\t\t 0.32765701 0.376214 -0.86666203 0.32811499 0.375817 -0.91654497 0.27186301 0.293318\n\t\t -0.86666203 0.32811499 0.375817 -0.86666298 0.32765701 0.376214 -0.80815297 0.36394301\n\t\t 0.46307001 -0.80815297 0.36394301 0.46307001 -0.80825102 0.36434299 0.46258599 -0.86666203\n\t\t 0.32811499 0.375817 -0.80825102 0.36434299 0.46258599 -0.80815297 0.36394301 0.46307001\n\t\t -0.73365003 0.39540601 0.55264097 -0.73365003 0.39540601 0.55264097 -0.73384398 0.395717\n\t\t 0.55216098 -0.80825102 0.36434299 0.46258599 -0.73384398 0.395717 0.55216098 -0.73365003\n\t\t 0.39540601 0.55264097 -0.62045002 0.42818001 0.65704203 -0.62045002 0.42818001 0.65704203\n\t\t -0.62244803 0.42922801 0.65446299 -0.73384398 0.395717 0.55216098 -0.62244803 0.42922801\n\t\t 0.65446299 -0.62045002 0.42818001 0.65704203 -0.487023 0.53603601 0.689547 -0.487023\n\t\t 0.53603601 0.689547 -0.484227 0.534096 0.693012 -0.62244803 0.42922801 0.65446299\n\t\t -0.43865401 0.536102 0.72123301 -0.484227 0.534096 0.693012 -0.487023 0.53603601\n\t\t 0.689547 -0.487023 0.53603601 0.689547 -0.43917099 0.53671002 0.72046602 -0.43865401\n\t\t 0.536102 0.72123301 -0.43865401 0.536102 0.72123301 -0.43917099 0.53671002 0.72046602\n\t\t -0.385335 0.53179598 0.75412798 -0.385335 0.53179598 0.75412798 -0.39088601 0.53868902\n\t\t 0.74633902 -0.43865401 0.536102 0.72123301 -0.39088601 0.53868902 0.74633902 -0.385335\n\t\t 0.53179598 0.75412798 -0.26829001 0.497118 0.82516301 -0.26829001 0.497118 0.82516301\n\t\t -0.312334 0.52105498 0.79432398 -0.39088601 0.53868902 0.74633902;\n\tsetAttr \".n[11454:11619]\" -type \"float3\"  -0.085606001 0.40031901 0.912368 -0.312334\n\t\t 0.52105498 0.79432398 -0.26829001 0.497118 0.82516301 -0.26829001 0.497118 0.82516301\n\t\t 0.185192 0.391047 0.90154701 -0.085606001 0.40031901 0.912368 -0.12564801 0.155618\n\t\t 0.97979403 -0.085606001 0.40031901 0.912368 0.185192 0.391047 0.90154701 0.185192\n\t\t 0.391047 0.90154701 0.168097 0.13483199 0.97650599 -0.12564801 0.155618 0.97979403\n\t\t -0.12564801 0.155618 0.97979403 0.168097 0.13483199 0.97650599 -0.28395 0.046266999\n\t\t 0.95772201 -0.28395 0.046266999 0.95772201 -0.308943 0.034639001 0.95045 -0.12564801\n\t\t 0.155618 0.97979403 -0.308943 0.034639001 0.95045 -0.28395 0.046266999 0.95772201\n\t\t -0.51141101 -0.058901999 0.857315 -0.51141101 -0.058901999 0.857315 -0.48394901 -0.031252\n\t\t 0.874538 -0.308943 0.034639001 0.95045 -0.48394901 -0.031252 0.874538 -0.51141101\n\t\t -0.058901999 0.857315 -0.64463001 0.25352401 0.72123301 -0.64463001 0.25352401 0.72123301\n\t\t -0.64230698 0.257063 0.72205299 -0.48394901 -0.031252 0.874538 -0.64230698 0.257063\n\t\t 0.72205299 -0.64463001 0.25352401 0.72123301 -0.75860697 0.236185 0.60723299 -0.75860697\n\t\t 0.236185 0.60723299 -0.75841397 0.23597801 0.60755497 -0.64230698 0.257063 0.72205299\n\t\t -0.75841397 0.23597801 0.60755497 -0.75860697 0.236185 0.60723299 -0.83411998 0.218059\n\t\t 0.50664902 -0.83411998 0.218059 0.50664902 -0.834023 0.217875 0.50689 -0.75841397\n\t\t 0.23597801 0.60755497 -0.834023 0.217875 0.50689 -0.83411998 0.218059 0.50664902\n\t\t -0.89112598 0.198679 0.40794799 -0.89112598 0.198679 0.40794799 -0.89111298 0.198469\n\t\t 0.40807801 -0.834023 0.217875 0.50689 -0.89111298 0.198469 0.40807801 -0.89112598\n\t\t 0.198679 0.40794799 -0.93448901 0.170265 0.31263599 -0.93448901 0.170265 0.31263599\n\t\t -0.93453199 0.169962 0.31266999 -0.89111298 0.198469 0.40807801 -0.93453199 0.169962\n\t\t 0.31266999 -0.93448901 0.170265 0.31263599 -0.95548898 0.14450701 0.25721401 -0.95548898\n\t\t 0.14450701 0.25721401 -0.957838 0.143805 0.24873 -0.93453199 0.169962 0.31266999\n\t\t -0.60312301 -0.202801 -0.77143699 -0.60260397 -0.202832 -0.77183402 -0.603432 -0.176495\n\t\t -0.777637 -0.603432 -0.176495 -0.777637 -0.60358799 -0.17634299 -0.77754998 -0.60312301\n\t\t -0.202801 -0.77143699 -0.60358799 -0.17634299 -0.77754998 -0.603432 -0.176495 -0.777637\n\t\t -0.59960997 -0.150307 -0.78605098 -0.59960997 -0.150307 -0.78605098 -0.59952199 -0.150308\n\t\t -0.78611702 -0.60358799 -0.17634299 -0.77754998 -0.145758 0.97214597 -0.18354 -0.146461\n\t\t 0.972058 -0.183449 -0.13965701 0.973719 -0.179911 -0.13965701 0.973719 -0.179911\n\t\t -0.139291 0.97360098 -0.18082801 -0.145758 0.97214597 -0.18354 -0.139291 0.97360098\n\t\t -0.18082801 -0.13965701 0.973719 -0.179911 -0.111882 0.97904199 -0.170173 -0.111882\n\t\t 0.97904199 -0.170173 -0.110601 0.97913998 -0.17044801 -0.139291 0.97360098 -0.18082801\n\t\t -0.110601 0.97913998 -0.17044801 -0.111882 0.97904199 -0.170173 -0.059450999 0.98541802\n\t\t -0.15943 -0.059450999 0.98541802 -0.15943 -0.058139 0.98537201 -0.16019499 -0.110601\n\t\t 0.97913998 -0.17044801 -0.058139 0.98537201 -0.16019499 -0.059450999 0.98541802 -0.15943\n\t\t -0.024445999 0.98942798 -0.142951 -0.024445999 0.98942798 -0.142951 -0.023164 0.98939198\n\t\t -0.143408 -0.058139 0.98537201 -0.16019499 -0.023164 0.98939198 -0.143408 -0.024445999\n\t\t 0.98942798 -0.142951 0.0062870001 0.99131602 -0.131354 0.0062870001 0.99131602 -0.131354\n\t\t 0.0067440001 0.99136102 -0.130989 -0.023164 0.98939198 -0.143408 0.033661999 0.99007499\n\t\t -0.136452 0.0067440001 0.99136102 -0.130989 0.0062870001 0.99131602 -0.131354 0.0062870001\n\t\t 0.99131602 -0.131354 0.033571001 0.99016201 -0.135841 0.033661999 0.99007499 -0.136452\n\t\t 0.033661999 0.99007499 -0.136452 0.033571001 0.99016201 -0.135841 0.14878 0.98851001\n\t\t -0.026704 0.14878 0.98851001 -0.026704 0.191173 0.98076802 0.039338998 0.033661999\n\t\t 0.99007499 -0.136452 0.30259499 0.91669703 0.26096699 0.191173 0.98076802 0.039338998\n\t\t 0.14878 0.98851001 -0.026704 0.14878 0.98851001 -0.026704 0.29121199 0.92777801 0.23328701\n\t\t 0.30259499 0.91669703 0.26096699 0.30259499 0.91669703 0.26096699 0.29121199 0.92777801\n\t\t 0.23328701 0.36482501 0.827739 0.426321 0.36482501 0.827739 0.426321 0.37718299 0.802679\n\t\t 0.46199599 0.30259499 0.91669703 0.26096699 0.37718299 0.802679 0.46199599 0.36482501\n\t\t 0.827739 0.426321 0.439904 0.61261201 0.65665102 0.439904 0.61261201 0.65665102 0.44093701\n\t\t 0.60277802 0.66500598 0.37718299 0.802679 0.46199599 0.185192 0.391047 0.90154701\n\t\t 0.44093701 0.60277802 0.66500598 0.439904 0.61261201 0.65665102 0.439904 0.61261201\n\t\t 0.65665102 0.47011799 0.36147001 0.80518901 0.185192 0.391047 0.90154701 0.168097\n\t\t 0.13483199 0.97650599 0.185192 0.391047 0.90154701 0.47011799 0.36147001 0.80518901\n\t\t 0.47011799 0.36147001 0.80518901 0.399041 0.053043 0.915398 0.168097 0.13483199 0.97650599\n\t\t 0.168097 0.13483199 0.97650599 0.399041 0.053043 0.915398 0.15375599 -0.35411501\n\t\t 0.92247599 0.15375599 -0.35411501 0.92247599 0.170726 -0.34590799 0.92260498 0.168097\n\t\t 0.13483199 0.97650599 0.170726 -0.34590799 0.92260498 0.15375599 -0.35411501 0.92247599\n\t\t 0.024537001 -0.55040598 0.83453602 0.024537001 -0.55040598 0.83453602 0.027497999\n\t\t -0.56543601 0.82433403 0.170726 -0.34590799 0.92260498 -0.33583599 -0.80766898 0.48464999\n\t\t -0.33690199 -0.806198 0.48635599 -0.350609 -0.827874 0.43783399 -0.350609 -0.827874\n\t\t 0.43783399 -0.352952 -0.82865101 0.434468 -0.33583599 -0.80766898 0.48464999 -0.352952\n\t\t -0.82865101 0.434468 -0.350609 -0.827874 0.43783399 -0.38621399 -0.84240901 0.375747\n\t\t -0.38621399 -0.84240901 0.375747;\n\tsetAttr \".n[11620:11785]\" -type \"float3\"  -0.38560399 -0.842866 0.37535 -0.352952\n\t\t -0.82865101 0.434468 -0.38560399 -0.842866 0.37535 -0.38621399 -0.84240901 0.375747\n\t\t -0.40528801 -0.85113603 0.33363 -0.40528801 -0.85113603 0.33363 -0.404953 -0.85153401\n\t\t 0.33302099 -0.38560399 -0.842866 0.37535 -0.404953 -0.85153401 0.33302099 -0.40528801\n\t\t -0.85113603 0.33363 -0.415187 -0.85994798 0.29683301 -0.415187 -0.85994798 0.29683301\n\t\t -0.41557601 -0.86002499 0.296065 -0.404953 -0.85153401 0.33302099 -0.41314 -0.87352401\n\t\t 0.257431 -0.41557601 -0.86002499 0.296065 -0.415187 -0.85994798 0.29683301 -0.415187\n\t\t -0.85994798 0.29683301 -0.413082 -0.87356102 0.257402 -0.41314 -0.87352401 0.257431\n\t\t -0.41314 -0.87352401 0.257431 -0.413082 -0.87356102 0.257402 -0.41215801 -0.88205898\n\t\t 0.228251 -0.41215801 -0.88205898 0.228251 -0.41253099 -0.88231599 0.226576 -0.41314\n\t\t -0.87352401 0.257431 -0.41253099 -0.88231599 0.226576 -0.41215801 -0.88205898 0.228251\n\t\t -0.41554701 -0.883129 0.217723 -0.41554701 -0.883129 0.217723 -0.41548499 -0.88315898\n\t\t 0.217723 -0.41253099 -0.88231599 0.226576 -0.50969899 -0.064242996 -0.85795099 -0.51339\n\t\t -0.066196002 -0.85559899 -0.50627702 -0.062380999 -0.86011201 -0.50627702 -0.062380999\n\t\t -0.86011201 -0.50320202 -0.060520001 -0.86204702 -0.50969899 -0.064242996 -0.85795099\n\t\t -0.51339 -0.066196002 -0.85559899 -0.50969899 -0.064242996 -0.85795099 -0.51632398\n\t\t -0.067295 -0.85374498 -0.51632398 -0.067295 -0.85374498 -0.52099597 -0.069462001\n\t\t -0.85072798 -0.51339 -0.066196002 -0.85559899 0.97099 -0.198434 -0.13342901 0.97345102\n\t\t -0.18391 -0.13627 0.97349399 -0.183663 -0.136298 0.97349399 -0.183663 -0.136298 0.97098798\n\t\t -0.19846401 -0.133398 0.97099 -0.198434 -0.13342901 0.97573203 -0.16910701 -0.139107\n\t\t 0.97349399 -0.183663 -0.136298 0.97345102 -0.18391 -0.13627 0.97345102 -0.18391 -0.13627\n\t\t 0.97573602 -0.169108 -0.13907699 0.97573203 -0.16910701 -0.139107 0.53542399 0.81372702\n\t\t -0.226207 0.53542399 0.81372702 -0.226207 0.53542399 0.81372702 -0.226207 0.53542399\n\t\t 0.81372702 -0.226207 0.53542399 0.81372702 -0.226207 0.53542399 0.81372702 -0.226207\n\t\t -0.97648197 0.16391701 0.14005101 -0.97350502 0.183604 0.136299 -0.97359598 0.183054\n\t\t 0.136391 -0.97359598 0.183054 0.136391 -0.97648197 0.16391701 0.14005101 -0.97648197\n\t\t 0.16391701 0.14005101 -0.97022998 0.202676 0.13257501 -0.97359598 0.183054 0.136391\n\t\t -0.97350502 0.183604 0.136299 -0.97350502 0.183604 0.136299 -0.97022998 0.202676\n\t\t 0.13257501 -0.97022998 0.202676 0.13257501 0.251755 -0.96084303 0.11576 0.251755\n\t\t -0.96084303 0.11576 0.25175399 -0.96083999 0.11579 0.25175399 -0.96083999 0.11579\n\t\t 0.251726 -0.96084702 0.115791 0.251755 -0.96084303 0.11576 0.86794502 -0.485291 -0.105659\n\t\t 0.93230999 -0.35243899 -0.081151001 0.92795002 -0.372217 0.019044001 0.92795002 -0.372217\n\t\t 0.019044001 0.85825402 -0.51320601 -0.0045170002 0.86794502 -0.485291 -0.105659 0.92795002\n\t\t -0.372217 0.019044001 0.93230999 -0.35243899 -0.081151001 0.97834802 -0.196237 -0.065768003\n\t\t 0.97834802 -0.196237 -0.065768003 0.973409 -0.226025 0.037264001 0.92795002 -0.372217\n\t\t 0.019044001 0.916004 -0.27805999 -0.28917 0.93230999 -0.35243899 -0.081151001 0.86794502\n\t\t -0.485291 -0.105659 0.97834802 -0.196237 -0.065768003 0.93230999 -0.35243899 -0.081151001\n\t\t 0.916004 -0.27805999 -0.28917 0.86794502 -0.485291 -0.105659 0.856094 -0.41234401\n\t\t -0.31156999 0.916004 -0.27805999 -0.28917 0.916004 -0.27805999 -0.28917 0.856094\n\t\t -0.41234401 -0.31156999 0.83807302 -0.37481299 -0.39642099 0.83807302 -0.37481299\n\t\t -0.39642099 0.87919199 -0.26139501 -0.39836499 0.916004 -0.27805999 -0.28917 0.916004\n\t\t -0.27805999 -0.28917 0.87919199 -0.26139501 -0.39836499 0.91333997 -0.066012003 -0.40181199\n\t\t 0.91333997 -0.066012003 -0.40181199 0.95130998 -0.112737 -0.286879 0.916004 -0.27805999\n\t\t -0.28917 0.916004 -0.27805999 -0.28917 0.95130998 -0.112737 -0.286879 0.97834802\n\t\t -0.196237 -0.065768003 0.95776403 -0.097235002 -0.27061701 0.95130998 -0.112737 -0.286879\n\t\t 0.91333997 -0.066012003 -0.40181199 0.97834802 -0.196237 -0.065768003 0.95130998\n\t\t -0.112737 -0.286879 0.95776403 -0.097235002 -0.27061701 0.91333997 -0.066012003 -0.40181199\n\t\t 0.91151798 -0.028961999 -0.41023901 0.95776403 -0.097235002 -0.27061701 0.97563797\n\t\t -0.214458 0.046236999 0.973409 -0.226025 0.037264001 0.97834802 -0.196237 -0.065768003\n\t\t 0.97834802 -0.196237 -0.065768003 0.98122102 -0.187906 -0.043551002 0.97563797 -0.214458\n\t\t 0.046236999 0.95776403 -0.097235002 -0.27061701 0.98122102 -0.187906 -0.043551002\n\t\t 0.97834802 -0.196237 -0.065768003 0.65638602 0.74098599 -0.141764 0.70437801 0.70071602\n\t\t -0.113348 0.58385801 0.77188599 -0.251598 0.58385801 0.77188599 -0.251598 0.48497701\n\t\t 0.82132602 -0.30036801 0.65638602 0.74098599 -0.141764 0.70437801 0.70071602 -0.113348\n\t\t 0.65638602 0.74098599 -0.141764 0.72844201 0.66126901 0.17915 0.72844201 0.66126901\n\t\t 0.17915 0.75764197 0.64987898 0.060306001 0.70437801 0.70071602 -0.113348 0.73026198\n\t\t 0.63217402 0.25898501 0.75764197 0.64987898 0.060306001 0.72844201 0.66126901 0.17915\n\t\t 0.72844201 0.66126901 0.17915 0.65918398 0.649692 0.37865099 0.73026198 0.63217402\n\t\t 0.25898501 -0.121343 0.34620699 -0.930278 -0.037996002 0.322584 -0.94577801 -0.068607002\n\t\t 0.33189699 -0.940817 -0.121343 0.34620699 -0.930278 -0.068607002 0.33189699 -0.940817\n\t\t -0.126076 0.346183 -0.92965698 -0.130133 0.34440601 -0.92975801 -0.121343 0.34620699\n\t\t -0.930278 -0.126076 0.346183 -0.92965698 0.112006 -0.37096301 0.92186803 0.11283\n\t\t -0.37117499 0.921682 0.078464001 -0.36137301 0.92911398 0.112006 -0.37096301 0.92186803\n\t\t 0.078464001 -0.36137301 0.92911398;\n\tsetAttr \".n[11786:11951]\" -type \"float3\"  0.099247001 -0.36747801 0.92472202 0.078464001\n\t\t -0.36137301 0.92911398 0.056430001 -0.354848 0.93321902 0.099247001 -0.36747801 0.92472202\n\t\t -0.187022 -0.34202999 -0.92088997 -0.187022 -0.34202999 -0.92088997 -0.187022 -0.34202999\n\t\t -0.92088997 -0.187022 -0.34202999 -0.92088997 -0.187022 -0.34202999 -0.92088997 -0.187022\n\t\t -0.34202999 -0.92088997 -0.187022 -0.34202999 -0.92088997 -0.187022 -0.34202999 -0.92088997\n\t\t -0.186993 -0.34203199 -0.92089498 -0.18705399 -0.34200099 -0.92089403 -0.187022 -0.34202999\n\t\t -0.92088997 -0.186993 -0.34203199 -0.92089498 -0.187022 -0.34202999 -0.92088997 -0.18705399\n\t\t -0.34200099 -0.92089403 -0.187052 -0.34202799 -0.92088503 -0.187052 -0.34202799 -0.92088503\n\t\t -0.187022 -0.34202999 -0.92088997 -0.187052 -0.34202799 -0.92088503 -0.187022 -0.34202999\n\t\t -0.92088997 -0.187052 -0.34202799 -0.92088503 -0.18701901 -0.34199399 -0.92090398\n\t\t -0.18705399 -0.34200099 -0.92089403 -0.187022 -0.34202999 -0.92088997 -0.18701901\n\t\t -0.34199399 -0.92090398 -0.187022 -0.34202999 -0.92088997 -0.18705399 -0.34200099\n\t\t -0.92089403 -0.18705399 -0.34200099 -0.92089403 -0.187022 -0.34202999 -0.92088997\n\t\t -0.187022 -0.34202999 -0.92088997 -0.18705399 -0.34200099 -0.92089403 -0.794541 0.26557899\n\t\t -0.54605198 -0.794554 0.26558301 -0.546031 -0.794541 0.26557899 -0.54605198 -0.794541\n\t\t 0.26557899 -0.54605198 -0.79451001 0.265609 -0.54608202 -0.794541 0.26557899 -0.54605198\n\t\t -0.91635799 -0.19175 -0.351455 -0.916363 -0.19172101 -0.351457 -0.91635799 -0.19175\n\t\t -0.351455 -0.91635799 -0.19175 -0.351455 -0.91635799 -0.19175 -0.351455 -0.91635799\n\t\t -0.19175 -0.351455 -0.40926301 0.54830903 -0.72928798 -0.40926301 0.54830903 -0.72928798\n\t\t -0.40926301 0.54830903 -0.72928798 -0.40926301 0.54830903 -0.72928798 -0.40925401\n\t\t 0.54829699 -0.72930199 -0.40926301 0.54830903 -0.72928798 0.092289999 0.54827702\n\t\t -0.83118898 0.092257999 0.54829901 -0.83117801 0.092289999 0.54827702 -0.83118898\n\t\t 0.092289999 0.54827702 -0.83118898 0.092289001 0.54824102 -0.831213 0.092289999 0.54827702\n\t\t -0.83118898 0.518525 0.26561099 -0.81276298 0.51852 0.26554701 -0.81278598 0.51851201\n\t\t 0.26560399 -0.81277299 0.51851201 0.26560399 -0.81277299 0.51849401 0.265672 -0.81276202\n\t\t 0.518525 0.26561099 -0.81276298 0.70665503 -0.191756 -0.68107897 0.70667398 -0.19172201\n\t\t -0.681068 0.70667398 -0.19172201 -0.681068 0.70667398 -0.19172201 -0.681068 0.70664001\n\t\t -0.191752 -0.68109602 0.70665503 -0.191756 -0.68107897 0.58477801 -0.64911199 -0.48650599\n\t\t 0.58477801 -0.64911199 -0.48650599 0.58477801 -0.64911199 -0.48650599 0.58477801\n\t\t -0.64911199 -0.48650599 0.58477801 -0.64911199 -0.48650599 0.58477801 -0.64911199\n\t\t -0.48650599 0.199536 -0.93178898 -0.30324101 0.199472 -0.931804 -0.30323601 0.199536\n\t\t -0.93178898 -0.30324101 0.199536 -0.93178898 -0.30324101 0.19956701 -0.93179202 -0.303211\n\t\t 0.199536 -0.93178898 -0.30324101 -0.302021 -0.93179101 -0.201368 -0.30195901 -0.93181801\n\t\t -0.201336 -0.302021 -0.93179101 -0.201368 -0.302021 -0.93179101 -0.201368 -0.30204499\n\t\t -0.93177098 -0.201424 -0.302021 -0.93179101 -0.201368 -0.72824198 -0.64910698 -0.21982799\n\t\t -0.72824198 -0.64910698 -0.21982799 -0.72824198 -0.64910698 -0.21982799 -0.72824198\n\t\t -0.64910698 -0.21982799 -0.72824198 -0.64910698 -0.21982799 -0.72824198 -0.64910698\n\t\t -0.21982799 -0.83284402 0.55233997 -0.035952002 -0.83284402 0.55233997 -0.035952002\n\t\t -0.83284402 0.55233997 -0.035952002 -0.83284402 0.55233997 -0.035952002 -0.83284402\n\t\t 0.55233997 -0.035952002 -0.83284402 0.55233997 -0.035952002 -0.97999102 0 0.199044\n\t\t -0.97999102 0 0.199044 -0.97999102 0 0.199044 -0.97999102 0 0.199044 -0.97999102\n\t\t 0 0.199044 -0.97999102 0 0.199044 -0.36756799 0.89371097 -0.25724301 -0.36756799\n\t\t 0.89371097 -0.25724301 -0.36756799 0.89371097 -0.25724301 -0.36756799 0.89371097\n\t\t -0.25724301 -0.36756799 0.89371097 -0.25724301 -0.36756799 0.89371097 -0.25724301\n\t\t 0.238048 0.893718 -0.38026601 0.238083 0.89370501 -0.380274 0.238083 0.89370501 -0.380274\n\t\t 0.238083 0.89370501 -0.380274 0.238048 0.893718 -0.38026601 0.238048 0.893718 -0.38026601\n\t\t 0.75283402 0.55231899 -0.35802901 0.75282103 0.55233997 -0.35802299 0.75282103 0.55233997\n\t\t -0.35802299 0.75282103 0.55233997 -0.35802299 0.75283402 0.55231899 -0.35802901 0.75283402\n\t\t 0.55231899 -0.35802901 0.97999102 0 -0.199044 0.97999102 0 -0.199044 0.97999102 0\n\t\t -0.199044 0.97999102 0 -0.199044 0.97999102 0 -0.199044 0.97999102 0 -0.199044 0.83284301\n\t\t -0.55233902 0.035982002 0.83285201 -0.55232501 0.035980999 0.83285201 -0.55232501\n\t\t 0.035980999 0.83285201 -0.55232501 0.035980999 0.83284301 -0.55233902 0.035982002\n\t\t 0.83284301 -0.55233902 0.035982002 0.36756799 -0.89371097 0.25724301 0.367605 -0.893695\n\t\t 0.257247 0.367578 -0.89370501 0.25725001 0.367578 -0.89370501 0.25725001 0.367542\n\t\t -0.89372098 0.25724599 0.36756799 -0.89371097 0.25724301 -0.238083 -0.89370501 0.380274\n\t\t -0.238112 -0.89369798 0.38027099 -0.238083 -0.89370501 0.380274 -0.238083 -0.89370501\n\t\t 0.380274 -0.238051 -0.89370102 0.380303 -0.238083 -0.89370501 0.380274 -0.75279999\n\t\t -0.552347 0.35805801 -0.75281298 -0.55233401 0.35804999 -0.75281298 -0.55233401 0.35804999\n\t\t -0.75281298 -0.55233401 0.35804999 -0.75277901 -0.55236202 0.358078 -0.75279999 -0.552347\n\t\t 0.35805801 -0.85792398 -0.51375997 -0.0042420002 -0.92801201 -0.372053 0.019257 -0.93237102\n\t\t -0.352256 -0.081243001 -0.93237102 -0.352256 -0.081243001 -0.86783898 -0.48543599\n\t\t -0.10587 -0.85792398 -0.51375997 -0.0042420002 -0.97834802 -0.196238 -0.065768003\n\t\t -0.93237102 -0.352256 -0.081243001 -0.92801201 -0.372053 0.019257 -0.92801201 -0.372053\n\t\t 0.019257 -0.97340798 -0.226025 0.037264001 -0.97834802 -0.196238 -0.065768003;\n\tsetAttr \".n[11952:12117]\" -type \"float3\"  -0.86783898 -0.48543599 -0.10587 -0.93237102\n\t\t -0.352256 -0.081243001 -0.916004 -0.278061 -0.28917 -0.916004 -0.278061 -0.28917\n\t\t -0.93237102 -0.352256 -0.081243001 -0.97834802 -0.196238 -0.065768003 -0.916004 -0.278061\n\t\t -0.28917 -0.85609299 -0.41234499 -0.31156999 -0.86783898 -0.48543599 -0.10587 -0.838072\n\t\t -0.37481299 -0.39642099 -0.85609299 -0.41234499 -0.31156999 -0.916004 -0.278061 -0.28917\n\t\t -0.916004 -0.278061 -0.28917 -0.87919199 -0.26139599 -0.39836499 -0.838072 -0.37481299\n\t\t -0.39642099 -0.91333997 -0.066013001 -0.40181199 -0.87919199 -0.26139599 -0.39836499\n\t\t -0.916004 -0.278061 -0.28917 -0.916004 -0.278061 -0.28917 -0.95130998 -0.112738 -0.286879\n\t\t -0.91333997 -0.066013001 -0.40181199 -0.97834802 -0.196238 -0.065768003 -0.95130998\n\t\t -0.112738 -0.286879 -0.916004 -0.278061 -0.28917 -0.91333997 -0.066013001 -0.40181199\n\t\t -0.95130998 -0.112738 -0.286879 -0.95776403 -0.097236 -0.27061701 -0.95776403 -0.097236\n\t\t -0.27061701 -0.95130998 -0.112738 -0.286879 -0.97834802 -0.196238 -0.065768003 -0.95776403\n\t\t -0.097236 -0.27061701 -0.91151798 -0.028963 -0.41023901 -0.91333997 -0.066013001\n\t\t -0.40181199 -0.97834802 -0.196238 -0.065768003 -0.97340798 -0.226025 0.037264001\n\t\t -0.97563797 -0.214459 0.046236999 -0.97563797 -0.214459 0.046236999 -0.98122102 -0.187907\n\t\t -0.043551002 -0.97834802 -0.196238 -0.065768003 -0.97834802 -0.196238 -0.065768003\n\t\t -0.98122102 -0.187907 -0.043551002 -0.95776403 -0.097236 -0.27061701 -0.65525103\n\t\t 0.74281102 -0.137398 -0.66849101 0.71439099 -0.206798 -0.57016402 0.77525401 -0.27183601\n\t\t -0.57016402 0.77525401 -0.27183601 -0.55356598 0.82168102 -0.13565999 -0.65525103\n\t\t 0.74281102 -0.137398 -0.66849101 0.71439099 -0.206798 -0.65525103 0.74281102 -0.137398\n\t\t -0.75670099 0.65107203 0.059238002 -0.75670099 0.65107203 0.059238002 -0.72885102\n\t\t 0.66106802 0.17823 -0.66849101 0.71439099 -0.206798 -0.72885102 0.66106802 0.17823\n\t\t -0.75670099 0.65107203 0.059238002 -0.73026198 0.632173 0.25898501 -0.73026198 0.632173\n\t\t 0.25898501 -0.65918398 0.649692 0.37865099 -0.72885102 0.66106802 0.17823 0.121343\n\t\t 0.34620699 -0.930278 0.130132 0.34440601 -0.92975801 0.126076 0.34618399 -0.92965698\n\t\t 0.121343 0.34620699 -0.930278 0.126076 0.34618399 -0.92965698 0.068607002 0.33189699\n\t\t -0.940817 0.121343 0.34620699 -0.930278 0.068607002 0.33189699 -0.940817 0.037996002\n\t\t 0.322584 -0.94577801 -0.112373 -0.367791 0.92309397 -0.114141 -0.369647 0.922135\n\t\t -0.119055 -0.36732799 0.92243999 -0.112373 -0.367791 0.92309397 -0.119055 -0.36732799\n\t\t 0.92243999 -0.079288997 -0.36537501 0.927477 -0.112373 -0.367791 0.92309397 -0.079288997\n\t\t -0.36537501 0.927477 -0.076938003 -0.36528 0.92771298 0.187022 -0.34202999 -0.92088997\n\t\t 0.187022 -0.34202999 -0.92088997 0.187022 -0.34202999 -0.92088997 0.186993 -0.34203199\n\t\t -0.92089498 0.187022 -0.34202999 -0.92088997 0.187022 -0.34202999 -0.92088997 0.187022\n\t\t -0.34202999 -0.92088997 0.186993 -0.34203199 -0.92089498 0.186993 -0.34203199 -0.92089498\n\t\t 0.18705399 -0.34200099 -0.92089403 0.186993 -0.34203199 -0.92089498 0.187022 -0.34202999\n\t\t -0.92088997 0.187022 -0.34202999 -0.92088997 0.187052 -0.34202799 -0.92088503 0.18705399\n\t\t -0.34200099 -0.92089403 0.187052 -0.34202799 -0.92088503 0.187052 -0.34202799 -0.92088503\n\t\t 0.187022 -0.34202999 -0.92088997 0.187022 -0.34202999 -0.92088997 0.18701901 -0.341993\n\t\t -0.92090398 0.187052 -0.34202799 -0.92088503 0.18705399 -0.34200099 -0.92089403 0.18701901\n\t\t -0.341993 -0.92090398 0.187022 -0.34202999 -0.92088997 0.187022 -0.34202999 -0.92088997\n\t\t 0.18705399 -0.34200099 -0.92089403 0.18705399 -0.34200099 -0.92089403 0.187022 -0.34202999\n\t\t -0.92088997 0.18705399 -0.34200099 -0.92089403 0.187022 -0.34202999 -0.92088997 0.794541\n\t\t 0.26558 -0.54605198 0.794554 0.26558399 -0.546031 0.794541 0.26558 -0.54605198 0.794541\n\t\t 0.26558 -0.54605198 0.79451001 0.26561001 -0.54608202 0.794541 0.26558 -0.54605198\n\t\t 0.91635799 -0.19174901 -0.351455 0.916363 -0.19171999 -0.351457 0.91635799 -0.19174901\n\t\t -0.351455 0.91635799 -0.19174901 -0.351455 0.91635299 -0.191755 -0.351464 0.91635799\n\t\t -0.19174901 -0.351455 0.40926301 0.54830903 -0.72928798 0.40926301 0.54830903 -0.72928798\n\t\t 0.40926301 0.54830903 -0.72928798 0.40926301 0.54830903 -0.72928798 0.40926999 0.54828799\n\t\t -0.72930002 0.40926301 0.54830903 -0.72928798 -0.092289999 0.54827601 -0.83118898\n\t\t -0.092257999 0.54829901 -0.83117801 -0.092289999 0.54827601 -0.83118898 -0.092289999\n\t\t 0.54827601 -0.83118898 -0.092289001 0.54824102 -0.831213 -0.092289999 0.54827601\n\t\t -0.83118898 -0.518525 0.26561001 -0.81276298 -0.518516 0.26557499 -0.81278002 -0.518525\n\t\t 0.26561001 -0.81276298 -0.518525 0.26561001 -0.81276298 -0.51849401 0.26567101 -0.81276202\n\t\t -0.518525 0.26561001 -0.81276298 -0.70666999 -0.191752 -0.68106401 -0.70667398 -0.19172201\n\t\t -0.681068 -0.70666999 -0.191752 -0.68106401 -0.70666999 -0.191752 -0.68106401 -0.70663601\n\t\t -0.191781 -0.68109202 -0.70666999 -0.191752 -0.68106401 -0.58477801 -0.64911199 -0.48650599\n\t\t -0.58477801 -0.64911199 -0.48650599 -0.58477801 -0.64911199 -0.48650599 -0.58477801\n\t\t -0.64911199 -0.48650599 -0.58477801 -0.64911199 -0.48650599 -0.58477801 -0.64911199\n\t\t -0.48650599 -0.199536 -0.93178898 -0.30324101 -0.199471 -0.931804 -0.30323601 -0.199536\n\t\t -0.93178898 -0.30324101 -0.199536 -0.93178898 -0.30324101 -0.19956701 -0.93179202\n\t\t -0.303211 -0.199536 -0.93178898 -0.30324101 0.302021 -0.93179101 -0.201368 0.30195901\n\t\t -0.93181801 -0.201336 0.302021 -0.93179101 -0.201368 0.302021 -0.93179101 -0.201368\n\t\t 0.30204499 -0.93177098 -0.201424 0.302021 -0.93179101 -0.201368 0.72824198 -0.64910603\n\t\t -0.21982799 0.72824198 -0.64910603 -0.21982799 0.72824198 -0.64910603 -0.21982799\n\t\t 0.72824198 -0.64910603 -0.21982799;\n\tsetAttr \".n[12118:12283]\" -type \"float3\"  0.72824198 -0.64910603 -0.21982799 0.72824198\n\t\t -0.64910603 -0.21982799 0.832829 0.55236101 -0.035951 0.83284301 0.55233997 -0.035952002\n\t\t 0.83284301 0.55233997 -0.035952002 0.83284301 0.55233997 -0.035952002 0.83282 0.55237502\n\t\t -0.035952002 0.832829 0.55236101 -0.035951 0.97999102 0 0.199044 0.97999102 0 0.199044\n\t\t 0.97999102 0 0.199044 0.97999102 0 0.199044 0.97999102 0 0.199044 0.97999102 0 0.199044\n\t\t 0.367578 0.89370501 -0.25725001 0.367571 0.89371902 -0.25721401 0.367571 0.89371902\n\t\t -0.25721401 0.367571 0.89371902 -0.25721401 0.36760399 0.893695 -0.257247 0.367578\n\t\t 0.89370501 -0.25725001 -0.238083 0.89370501 -0.380274 -0.238048 0.89371699 -0.38026601\n\t\t -0.238048 0.89371699 -0.38026601 -0.238048 0.89371699 -0.38026601 -0.238083 0.89370501\n\t\t -0.380274 -0.238083 0.89370501 -0.380274 -0.75284803 0.552306 -0.35802099 -0.75283498\n\t\t 0.55231798 -0.35802901 -0.75283498 0.55231798 -0.35802901 -0.75283498 0.55231798\n\t\t -0.35802901 -0.75284803 0.552306 -0.35802099 -0.75284803 0.552306 -0.35802099 -0.97999102\n\t\t 0 -0.199044 -0.97999102 0 -0.199044 -0.97999102 0 -0.199044 -0.97999102 0 -0.199044\n\t\t -0.97999102 0 -0.199044 -0.97999102 0 -0.199044 -0.83284301 -0.55233997 0.035952002\n\t\t -0.83284301 -0.55233997 0.035952002 -0.83284301 -0.55233997 0.035952002 -0.83284301\n\t\t -0.55233997 0.035952002 -0.83284301 -0.55233997 0.035952002 -0.83284301 -0.55233997\n\t\t 0.035952002 -0.367578 -0.89370501 0.25725001 -0.36754799 -0.89370799 0.25728101 -0.367578\n\t\t -0.89370501 0.25725001 -0.367578 -0.89370501 0.25725001 -0.367607 -0.89370197 0.257218\n\t\t -0.367578 -0.89370501 0.25725001 0.238083 -0.89370501 0.380274 0.238048 -0.89371699\n\t\t 0.38026601 0.238077 -0.89371097 0.38026401 0.238077 -0.89371097 0.38026401 0.23811001\n\t\t -0.89368802 0.38029701 0.238083 -0.89370501 0.380274 0.75281399 -0.55233401 0.35804999\n\t\t 0.75278801 -0.55236697 0.35805199 0.75278801 -0.55236697 0.35805199 0.75278801 -0.55236697\n\t\t 0.35805199 0.75281799 -0.552306 0.358082 0.75281399 -0.55233401 0.35804999 -0.276564\n\t\t -0.093785003 -0.95640802 -0.51485503 -0.082066 -0.85334003 -0.36824799 0.028596999\n\t\t -0.92928803 -0.36824799 0.028596999 -0.92928803 -0.144142 0.049837999 -0.98830098\n\t\t -0.276564 -0.093785003 -0.95640802 -0.038697999 -0.100864 -0.994147 -0.276564 -0.093785003\n\t\t -0.95640802 -0.144142 0.049837999 -0.98830098 -0.144142 0.049837999 -0.98830098 0.345842\n\t\t 0.068697996 -0.93577498 -0.038697999 -0.100864 -0.994147 -0.276564 -0.093785003 -0.95640802\n\t\t -0.038697999 -0.100864 -0.994147 0.32335001 -0.31211901 -0.89332402 0.32335001 -0.31211901\n\t\t -0.89332402 0.030060999 -0.270338 -0.96229601 -0.276564 -0.093785003 -0.95640802\n\t\t -0.51485503 -0.082066 -0.85334003 -0.276564 -0.093785003 -0.95640802 -0.53566599\n\t\t -0.20554399 -0.81903201 -0.53566599 -0.20554399 -0.81903201 -0.53057498 -0.19513901\n\t\t -0.82486999 -0.51485503 -0.082066 -0.85334003 0.14362299 -0.41676801 -0.89759499\n\t\t 0.030060999 -0.270338 -0.96229601 0.32335001 -0.31211901 -0.89332402 0.32335001 -0.31211901\n\t\t -0.89332402 0.30821601 -0.42684501 -0.85017997 0.14362299 -0.41676801 -0.89759499\n\t\t -0.77625 -0.220347 -0.59066403 -0.53057498 -0.19513901 -0.82486999 -0.53566599 -0.20554399\n\t\t -0.81903201 -0.53566599 -0.20554399 -0.81903201 -0.80306101 -0.29695499 -0.516635\n\t\t -0.77625 -0.220347 -0.59066403 -0.144142 0.049837999 -0.98830098 -0.36824799 0.028596999\n\t\t -0.92928803 -0.109776 0.218087 -0.96973598 -0.109776 0.218087 -0.96973598 0.058718\n\t\t 0.265513 -0.96231699 -0.144142 0.049837999 -0.98830098 0.345842 0.068697996 -0.93577498\n\t\t -0.144142 0.049837999 -0.98830098 0.058718 0.265513 -0.96231699 0.058718 0.265513\n\t\t -0.96231699 0.32921499 0.29506299 -0.89696997 0.345842 0.068697996 -0.93577498 0.13465101\n\t\t 0.37047499 -0.91903102 0.058718 0.265513 -0.96231699 -0.109776 0.218087 -0.96973598\n\t\t -0.109776 0.218087 -0.96973598 -0.15204699 0.339984 -0.92805898 0.13465101 0.37047499\n\t\t -0.91903102 0.316329 0.385272 -0.86689198 0.32921499 0.29506299 -0.89696997 0.058718\n\t\t 0.265513 -0.96231699 0.058718 0.265513 -0.96231699 0.13465101 0.37047499 -0.91903102\n\t\t 0.316329 0.385272 -0.86689198 0.596681 -0.27964699 -0.75217599 0.32335001 -0.31211901\n\t\t -0.89332402 0.66926801 -0.102455 -0.73592299 0.66926801 -0.102455 -0.73592299 0.66842699\n\t\t -0.095798999 -0.73758298 0.596681 -0.27964699 -0.75217599 0.66842699 -0.095798999\n\t\t -0.73758298 0.66926801 -0.102455 -0.73592299 0.345842 0.068697996 -0.93577498 0.93383002\n\t\t -0.209057 -0.29026899 0.93377101 -0.220258 -0.28206 0.94182801 -0.094732001 -0.32246801\n\t\t 0.94182801 -0.094732001 -0.32246801 0.940409 -0.090305001 -0.32783401 0.93383002\n\t\t -0.209057 -0.29026899 0.940409 -0.090305001 -0.32783401 0.94182801 -0.094732001 -0.32246801\n\t\t 0.879843 0.012696 -0.475095 0.345842 0.068697996 -0.93577498 0.583013 0.076787002\n\t\t -0.80882603 0.66842699 -0.095798999 -0.73758298 0.583013 0.076787002 -0.80882603\n\t\t 0.345842 0.068697996 -0.93577498 0.32921499 0.29506299 -0.89696997 0.879843 0.012696\n\t\t -0.475095 0.87084198 0.027681001 -0.49078301 0.940409 -0.090305001 -0.32783401 0.93377101\n\t\t -0.220258 -0.28206 0.93383002 -0.209057 -0.29026899 0.97068202 -0.23603199 0.045442998\n\t\t 0.97068202 -0.23603199 0.045442998 0.94185603 -0.317004 0.111426 0.93377101 -0.220258\n\t\t -0.28206 0.32335001 -0.31211901 -0.89332402 0.596681 -0.27964699 -0.75217599 0.46594\n\t\t -0.41958001 -0.77900702 0.46594 -0.41958001 -0.77900702 0.30821601 -0.42684501 -0.85017997\n\t\t 0.32335001 -0.31211901 -0.89332402 0.32921499 0.29506299 -0.89696997 0.57614499 0.24546701\n\t\t -0.77961701 0.583013 0.076787002 -0.80882603 0.87084198 0.027681001 -0.49078301 0.879843\n\t\t 0.012696 -0.475095;\n\tsetAttr \".n[12284:12449]\" -type \"float3\"  0.57614499 0.24546701 -0.77961701 0.57614499\n\t\t 0.24546701 -0.77961701 0.32921499 0.29506299 -0.89696997 0.316329 0.385272 -0.86689198\n\t\t 0.57614499 0.24546701 -0.77961701 0.69888401 0.189523 -0.689668 0.87084198 0.027681001\n\t\t -0.49078301 0.316329 0.385272 -0.86689198 0.49059501 0.36577201 -0.79090297 0.57614499\n\t\t 0.24546701 -0.77961701 0.69888401 0.189523 -0.689668 0.57614499 0.24546701 -0.77961701\n\t\t 0.49059501 0.36577201 -0.79090297 0.49059501 0.36577201 -0.79090297 0.71631402 0.32835501\n\t\t -0.61569202 0.69888401 0.189523 -0.689668 0.383838 0.887707 -0.25425401 0.37590599\n\t\t 0.88786697 -0.265304 0.388145 0.88753498 -0.248245 -0.134988 0.88783997 -0.43990701\n\t\t -0.140815 0.883066 -0.447622 -0.131384 0.89075601 -0.435078 -0.131384 0.89075601\n\t\t -0.435078 -0.125311 0.89554602 -0.42695901 -0.134988 0.88783997 -0.43990701 -0.72666901\n\t\t 0.44341701 -0.52472198 -0.61820602 0.61527598 -0.48913899 -0.62183201 0.60190302\n\t\t -0.501037 -0.62183201 0.60190302 -0.501037 -0.76929098 0.36177099 -0.526604 -0.72666901\n\t\t 0.44341701 -0.52472198 -0.85322499 0.084537998 -0.51464498 -0.72666901 0.44341701\n\t\t -0.52472198 -0.76929098 0.36177099 -0.526604 -0.76929098 0.36177099 -0.526604 -0.85968399\n\t\t 0.075351 -0.50523901 -0.85322499 0.084537998 -0.51464498 -0.877451 -0.031525999 -0.47862899\n\t\t -0.85322499 0.084537998 -0.51464498 -0.85968399 0.075351 -0.50523901 -0.85968399\n\t\t 0.075351 -0.50523901 -0.87999803 -0.03232 -0.473876 -0.877451 -0.031525999 -0.47862899\n\t\t -0.89641201 -0.056063998 -0.439661 -0.877451 -0.031525999 -0.47862899 -0.87999803\n\t\t -0.03232 -0.473876 -0.87999803 -0.03232 -0.473876 -0.89845598 -0.053805999 -0.435754\n\t\t -0.89641201 -0.056063998 -0.439661 -0.90957803 -0.089236997 -0.405837 -0.89641201\n\t\t -0.056063998 -0.439661 -0.89845598 -0.053805999 -0.435754 -0.89845598 -0.053805999\n\t\t -0.435754 -0.910909 -0.082128003 -0.40435001 -0.90957803 -0.089236997 -0.405837 0.388145\n\t\t 0.88753498 -0.248245 0.39613801 0.88709903 -0.23692 0.383838 0.887707 -0.25425401\n\t\t 0.92869699 0.36165199 0.082034998 0.81383801 0.57987398 0.037599999 0.80536598 0.59255701\n\t\t 0.016175 -0.86198199 -0.25724599 -0.43682 -0.90957803 -0.089236997 -0.405837 -0.910909\n\t\t -0.082128003 -0.40435001 -0.910909 -0.082128003 -0.40435001 -0.77625 -0.220347 -0.59066403\n\t\t -0.86198199 -0.25724599 -0.43682 -0.83717602 -0.31767601 -0.445216 -0.86198199 -0.25724599\n\t\t -0.43682 -0.77625 -0.220347 -0.59066403 -0.77625 -0.220347 -0.59066403 -0.80306101\n\t\t -0.29695499 -0.516635 -0.83717602 -0.31767601 -0.445216 -0.21519201 -0.85829902 -0.46584901\n\t\t -0.217603 -0.85765803 -0.46590999 -0.203594 -0.86125702 -0.46560299 -0.203594 -0.86125702\n\t\t -0.46560299 -0.201519 -0.86177701 -0.465543 -0.21519201 -0.85829902 -0.46584901 0.46206\n\t\t -0.85929602 -0.21934099 0.463588 -0.85859799 -0.218853 0.45146999 -0.864057 -0.22266699\n\t\t 0.45146999 -0.864057 -0.22266699 0.44991001 -0.86475301 -0.223124 0.46206 -0.85929602\n\t\t -0.21934099 0.93609297 -0.270311 0.225081 0.91946697 -0.33875701 0.199562 0.94185603\n\t\t -0.317004 0.111426 0.94185603 -0.317004 0.111426 0.97068202 -0.23603199 0.045442998\n\t\t 0.93609297 -0.270311 0.225081 0.95493698 -0.110905 0.27531099 0.93609297 -0.270311\n\t\t 0.225081 0.97068202 -0.23603199 0.045442998 0.97068202 -0.23603199 0.045442998 0.95626301\n\t\t -0.1052 0.272935 0.95493698 -0.110905 0.27531099 0.967691 -0.073794 0.241099 0.95493698\n\t\t -0.110905 0.27531099 0.95626301 -0.1052 0.272935 0.95626301 -0.1052 0.272935 0.96776801\n\t\t -0.072665997 0.241133 0.967691 -0.073794 0.241099 0.967691 -0.073794 0.241099 0.96776801\n\t\t -0.072665997 0.241133 0.97750503 -0.059085 0.202466 0.97750503 -0.059085 0.202466\n\t\t 0.97861499 -0.058474001 0.197212 0.967691 -0.073794 0.241099 0.97861499 -0.058474001\n\t\t 0.197212 0.97750503 -0.059085 0.202466 0.98666799 0.040132001 0.15772 0.98666799\n\t\t 0.040132001 0.15772 0.985618 0.046328001 0.162515 0.97861499 -0.058474001 0.197212\n\t\t 0.89749098 0.436813 0.060853999 0.985618 0.046328001 0.162515 0.98666799 0.040132001\n\t\t 0.15772 0.98666799 0.040132001 0.15772 0.92869699 0.36165199 0.082034998 0.89749098\n\t\t 0.436813 0.060853999 0.80536598 0.59255701 0.016175 0.89749098 0.436813 0.060853999\n\t\t 0.92869699 0.36165199 0.082034998 0.33360699 -0.087713003 -0.93862301 0.265973 -0.18934\n\t\t -0.94520301 0.29600799 -0.22386 -0.92858303 0.29600799 -0.22386 -0.92858303 0.34114701\n\t\t -0.091527998 -0.93554401 0.33360699 -0.087713003 -0.93862301 0.341878 0.053408999\n\t\t -0.93822598 0.33360699 -0.087713003 -0.93862301 0.34114701 -0.091527998 -0.93554401\n\t\t 0.34114701 -0.091527998 -0.93554401 0.33912799 0.051759999 -0.93931502 0.341878 0.053408999\n\t\t -0.93822598 0.30601099 0.156958 -0.93900001 0.341878 0.053408999 -0.93822598 0.33912799\n\t\t 0.051759999 -0.93931502 0.33912799 0.051759999 -0.93931502 0.30335799 0.178139 -0.936077\n\t\t 0.30601099 0.156958 -0.93900001 0.31208801 0.22465099 -0.92311102 0.30601099 0.156958\n\t\t -0.93900001 0.30335799 0.178139 -0.936077 0.30335799 0.178139 -0.936077 0.31114799\n\t\t 0.241868 -0.91906899 0.31208801 0.22465099 -0.92311102 0.318712 0.26130599 -0.91112101\n\t\t 0.31208801 0.22465099 -0.92311102 0.31114799 0.241868 -0.91906899 0.31114799 0.241868\n\t\t -0.91906899 0.321428 0.272903 -0.906757 0.318712 0.26130599 -0.91112101 0.332571\n\t\t 0.27916199 -0.900814 0.318712 0.26130599 -0.91112101 0.321428 0.272903 -0.906757\n\t\t 0.321428 0.272903 -0.906757 0.32982299 0.279771 -0.90163499 0.332571 0.27916199 -0.900814\n\t\t 0.351796 0.26561001 -0.89760298 0.332571 0.27916199 -0.900814 0.32982299 0.279771\n\t\t -0.90163499 0.32982299 0.279771 -0.90163499 0.33464599 0.266222 -0.90395701 0.351796\n\t\t 0.26561001 -0.89760298;\n\tsetAttr \".n[12450:12615]\" -type \"float3\"  0.36494499 0.226023 -0.90317702 0.351796\n\t\t 0.26561001 -0.89760298 0.33464599 0.266222 -0.90395701 0.33464599 0.266222 -0.90395701\n\t\t 0.34321699 0.23865899 -0.90842903 0.36494499 0.226023 -0.90317702 0.37800699 0.152869\n\t\t -0.913095 0.36494499 0.226023 -0.90317702 0.34321699 0.23865899 -0.90842903 0.34321699\n\t\t 0.23865899 -0.90842903 0.36037299 0.17844699 -0.91558099 0.37800699 0.152869 -0.913095\n\t\t 0.34425899 0.058719002 -0.93703699 0.37800699 0.152869 -0.913095 0.36037299 0.17844699\n\t\t -0.91558099 0.36037299 0.17844699 -0.91558099 0.341355 0.059298001 -0.93806201 0.34425899\n\t\t 0.058719002 -0.93703699 0.34102201 -0.080113001 -0.93663502 0.34425899 0.058719002\n\t\t -0.93703699 0.341355 0.059298001 -0.93806201 0.341355 0.059298001 -0.93806201 0.34813601\n\t\t -0.08286 -0.93377501 0.34102201 -0.080113001 -0.93663502 0.38703999 -0.196907 -0.90079302\n\t\t 0.34102201 -0.080113001 -0.93663502 0.34813601 -0.08286 -0.93377501 0.34813601 -0.08286\n\t\t -0.93377501 0.38423899 -0.224714 -0.89546901 0.38703999 -0.196907 -0.90079302 0.36925399\n\t\t -0.262344 -0.89153099 0.38703999 -0.196907 -0.90079302 0.38423899 -0.224714 -0.89546901\n\t\t 0.38423899 -0.224714 -0.89546901 0.36293301 -0.2852 -0.887097 0.36925399 -0.262344\n\t\t -0.89153099 0.349022 -0.296772 -0.88888198 0.36925399 -0.262344 -0.89153099 0.36293301\n\t\t -0.2852 -0.887097 0.36293301 -0.2852 -0.887097 0.336292 -0.312792 -0.88829499 0.349022\n\t\t -0.296772 -0.88888198 0.320025 -0.31843701 -0.89229 0.349022 -0.296772 -0.88888198\n\t\t 0.336292 -0.312792 -0.88829499 0.336292 -0.312792 -0.88829499 0.32295799 -0.31963101\n\t\t -0.89080501 0.320025 -0.31843701 -0.89229 0.285537 -0.30046099 -0.91004997 0.320025\n\t\t -0.31843701 -0.89229 0.32295799 -0.31963101 -0.89080501 0.32295799 -0.31963101 -0.89080501\n\t\t 0.315631 -0.30592501 -0.89821303 0.285537 -0.30046099 -0.91004997 0.26978901 -0.259718\n\t\t -0.92723298 0.285537 -0.30046099 -0.91004997 0.315631 -0.30592501 -0.89821303 0.315631\n\t\t -0.30592501 -0.89821303 0.304185 -0.27998301 -0.91053897 0.26978901 -0.259718 -0.92723298\n\t\t 0.265973 -0.18934 -0.94520301 0.26978901 -0.259718 -0.92723298 0.304185 -0.27998301\n\t\t -0.91053897 0.304185 -0.27998301 -0.91053897 0.29600799 -0.22386 -0.92858303 0.265973\n\t\t -0.18934 -0.94520301 0.94639999 -0.010376 -0.32283199 0.942909 -0.048218999 -0.32954201\n\t\t 0.94185102 -0.048128001 -0.33256701 0.94185102 -0.048128001 -0.33256701 0.94654799\n\t\t -0.0079960003 -0.32246399 0.94639999 -0.010376 -0.32283199 0.94466901 0.068364002\n\t\t -0.32082099 0.94639999 -0.010376 -0.32283199 0.94654799 -0.0079960003 -0.32246399\n\t\t 0.94654799 -0.0079960003 -0.32246399 0.94463801 0.065738998 -0.32146099 0.94466901\n\t\t 0.068364002 -0.32082099 0.930969 0.070744999 -0.35817799 0.94466901 0.068364002 -0.32082099\n\t\t 0.94463801 0.065738998 -0.32146099 0.94463801 0.065738998 -0.32146099 0.93013501\n\t\t 0.060306001 -0.36223301 0.930969 0.070744999 -0.35817799 0.88261497 -0.097843997\n\t\t -0.459802 0.930969 0.070744999 -0.35817799 0.93013501 0.060306001 -0.36223301 0.93013501\n\t\t 0.060306001 -0.36223301 0.85967201 -0.144998 -0.48983699 0.88261497 -0.097843997\n\t\t -0.459802 0.67838001 -0.33711499 -0.65280497 0.88261497 -0.097843997 -0.459802 0.85967201\n\t\t -0.144998 -0.48983699 0.85967201 -0.144998 -0.48983699 0.645051 -0.356859 -0.67569202\n\t\t 0.67838001 -0.33711499 -0.65280497 0.310716 -0.42674899 -0.84931803 0.67838001 -0.33711499\n\t\t -0.65280497 0.645051 -0.356859 -0.67569202 0.645051 -0.356859 -0.67569202 0.30711401\n\t\t -0.42674801 -0.85062802 0.310716 -0.42674899 -0.84931803 -0.101201 -0.32640001 -0.93979901\n\t\t 0.310716 -0.42674899 -0.84931803 0.30711401 -0.42674801 -0.85062802 0.30711401 -0.42674801\n\t\t -0.85062802 -0.062197998 -0.34526101 -0.93644398 -0.101201 -0.32640001 -0.93979901\n\t\t -0.38209999 -0.079075001 -0.92073202 -0.101201 -0.32640001 -0.93979901 -0.062197998\n\t\t -0.34526101 -0.93644398 -0.062197998 -0.34526101 -0.93644398 -0.34190199 -0.127569\n\t\t -0.93103701 -0.38209999 -0.079075001 -0.92073202 -0.48113 0.091190003 -0.87189299\n\t\t -0.38209999 -0.079075001 -0.92073202 -0.34190199 -0.127569 -0.93103701 -0.34190199\n\t\t -0.127569 -0.93103701 -0.47848001 0.080113001 -0.87443602 -0.48113 0.091190003 -0.87189299\n\t\t -0.51576698 0.090549 -0.85193098 -0.48113 0.091190003 -0.87189299 -0.47848001 0.080113001\n\t\t -0.87443602 -0.47848001 0.080113001 -0.87443602 -0.51653397 0.088382997 -0.85169297\n\t\t -0.51576698 0.090549 -0.85193098 -0.517941 0.0064389999 -0.85539198 -0.51576698 0.090549\n\t\t -0.85193098 -0.51653397 0.088382997 -0.85169297 -0.51653397 0.088382997 -0.85169297\n\t\t -0.51735502 0.0095220003 -0.85571802 -0.517941 0.0064389999 -0.85539198 -0.509085\n\t\t -0.039522 -0.85980803 -0.517941 0.0064389999 -0.85539198 -0.51735502 0.0095220003\n\t\t -0.85571802 -0.51735502 0.0095220003 -0.85571802 -0.51162499 -0.037629999 -0.85838503\n\t\t -0.509085 -0.039522 -0.85980803 -0.50481498 0.056155 -0.86139899 -0.509085 -0.039522\n\t\t -0.85980803 -0.51162499 -0.037629999 -0.85838503 -0.51162499 -0.037629999 -0.85838503\n\t\t -0.510432 0.078403004 -0.856336 -0.50481498 0.056155 -0.86139899 -0.495471 0.198616\n\t\t -0.84561199 -0.50481498 0.056155 -0.86139899 -0.510432 0.078403004 -0.856336 -0.510432\n\t\t 0.078403004 -0.856336 -0.50536698 0.217296 -0.83509701 -0.495471 0.198616 -0.84561199\n\t\t -0.081271999 0.53679699 -0.83978802 -0.082524002 0.53347498 -0.84178001 -0.081363998\n\t\t 0.53652799 -0.83995098 -0.081363998 0.53652799 -0.83995098 -0.080325998 0.53926897\n\t\t -0.83829403 -0.081271999 0.53679699 -0.83978802 0.60427302 0.532157 -0.59301198 0.60685199\n\t\t 0.533544 -0.58911997 0.60445797 0.532251 -0.59273899 0.60445797 0.532251 -0.59273899\n\t\t 0.602395 0.53113198 -0.59583402 0.60427302 0.532157 -0.59301198 0.94407898 0.054691002\n\t\t -0.325151 0.94321698 0.170662 -0.28498501 0.931768 0.17002 -0.32078299 0.931768 0.17002\n\t\t -0.32078299;\n\tsetAttr \".n[12616:12781]\" -type \"float3\"  0.93563002 0.066776998 -0.34660801 0.94407898\n\t\t 0.054691002 -0.325151 0.942909 -0.048218999 -0.32954201 0.94407898 0.054691002 -0.325151\n\t\t 0.93563002 0.066776998 -0.34660801 0.93563002 0.066776998 -0.34660801 0.94185102\n\t\t -0.048128001 -0.33256701 0.942909 -0.048218999 -0.32954201 0.343373 -0.076358996\n\t\t -0.93608999 0.35838601 -0.19401 -0.91319197 0.36037001 -0.182657 -0.91475099 0.35866201\n\t\t -0.238966 -0.90236199 0.36037001 -0.182657 -0.91475099 0.35838601 -0.19401 -0.91319197\n\t\t 0.35838601 -0.19401 -0.91319197 0.36015901 -0.245253 -0.90007597 0.35866201 -0.238966\n\t\t -0.90236199 0.35350499 -0.27201799 -0.89500898 0.35866201 -0.238966 -0.90236199 0.36015901\n\t\t -0.245253 -0.90007597 0.36015901 -0.245253 -0.90007597 0.34365001 -0.281055 -0.89605403\n\t\t 0.35350499 -0.27201799 -0.89500898 0.32603499 -0.28852701 -0.90025198 0.35350499\n\t\t -0.27201799 -0.89500898 0.34365001 -0.281055 -0.89605403 0.34365001 -0.281055 -0.89605403\n\t\t 0.32717001 -0.28862399 -0.899809 0.32603499 -0.28852701 -0.90025198 0.29191601 -0.26942301\n\t\t -0.91771197 0.32603499 -0.28852701 -0.90025198 0.32717001 -0.28862399 -0.899809 0.32717001\n\t\t -0.28862399 -0.899809 0.314587 -0.27683499 -0.90796298 0.29191601 -0.26942301 -0.91771197\n\t\t 0.30116799 -0.239732 -0.92294502 0.29191601 -0.26942301 -0.91771197 0.314587 -0.27683499\n\t\t -0.90796298 0.314587 -0.27683499 -0.90796298 0.31016701 -0.246382 -0.91820103 0.30116799\n\t\t -0.239732 -0.92294502 0.310101 -0.182044 -0.93311101 0.30116799 -0.239732 -0.92294502\n\t\t 0.31016701 -0.246382 -0.91820103 0.31016701 -0.246382 -0.91820103 0.315323 -0.194895\n\t\t -0.928756 0.310101 -0.182044 -0.93311101 0.33855301 -0.075718999 -0.93789601 0.310101\n\t\t -0.182044 -0.93311101 0.315323 -0.194895 -0.928756 0.315323 -0.194895 -0.928756 0.339647\n\t\t -0.078129001 -0.93730199 0.33855301 -0.075718999 -0.93789601 0.342758 0.051699001\n\t\t -0.93800002 0.33855301 -0.075718999 -0.93789601 0.339647 -0.078129001 -0.93730199\n\t\t 0.339647 -0.078129001 -0.93730199 0.342513 0.049440999 -0.93821102 0.342758 0.051699001\n\t\t -0.93800002 0.31630301 0.14628001 -0.93731201 0.342758 0.051699001 -0.93800002 0.342513\n\t\t 0.049440999 -0.93821102 0.342513 0.049440999 -0.93821102 0.317157 0.15857901 -0.93502098\n\t\t 0.31630301 0.14628001 -0.93731201 0.31931999 0.20688801 -0.92478698 0.31630301 0.14628001\n\t\t -0.93731201 0.317157 0.15857901 -0.93502098 0.317157 0.15857901 -0.93502098 0.31905001\n\t\t 0.21195801 -0.92373198 0.31931999 0.20688801 -0.92478698 0.32218999 0.235027 -0.91703701\n\t\t 0.31931999 0.20688801 -0.92478698 0.31905001 0.21195801 -0.92373198 0.31905001 0.21195801\n\t\t -0.92373198 0.32292399 0.238142 -0.91597402 0.32218999 0.235027 -0.91703701 0.33266401\n\t\t 0.24620201 -0.91034001 0.32218999 0.235027 -0.91703701 0.32292399 0.238142 -0.91597402\n\t\t 0.32292399 0.238142 -0.91597402 0.33211201 0.246078 -0.91057599 0.33266401 0.24620201\n\t\t -0.91034001 0.345779 0.235301 -0.90833402 0.33266401 0.24620201 -0.91034001 0.33211201\n\t\t 0.246078 -0.91057599 0.33211201 0.246078 -0.91057599 0.34083599 0.235424 -0.91016799\n\t\t 0.345779 0.235301 -0.90833402 0.35225499 0.20731799 -0.91265303 0.345779 0.235301\n\t\t -0.90833402 0.34083599 0.235424 -0.91016799 0.34083599 0.235424 -0.91016799 0.34633201\n\t\t 0.21149801 -0.91395998 0.35225499 0.20731799 -0.91265303 0.36192599 0.14505699 -0.92085201\n\t\t 0.35225499 0.20731799 -0.91265303 0.34633201 0.21149801 -0.91395998 0.34633201 0.21149801\n\t\t -0.91395998 0.35594901 0.15943401 -0.92080498 0.36192599 0.14505699 -0.92085201 0.34065601\n\t\t 0.052096002 -0.938743 0.36192599 0.14505699 -0.92085201 0.35594901 0.15943401 -0.92080498\n\t\t 0.35594901 0.15943401 -0.92080498 0.34019899 0.051791001 -0.93892598 0.34065601 0.052096002\n\t\t -0.938743 0.342455 -0.075718001 -0.93647802 0.34065601 0.052096002 -0.938743 0.34019899\n\t\t 0.051791001 -0.93892598 0.34019899 0.051791001 -0.93892598 0.343373 -0.076358996\n\t\t -0.93608999 0.342455 -0.075718001 -0.93647802 0.36037001 -0.182657 -0.91475099 0.342455\n\t\t -0.075718001 -0.93647802 0.343373 -0.076358996 -0.93608999 -0.93843001 -0.051761001\n\t\t -0.34156901 -0.93874699 -0.044711001 -0.34169501 -0.93874002 -0.044863999 -0.34169301\n\t\t -0.93874002 -0.044863999 -0.34169301 -0.93845999 -0.051210999 -0.34156901 -0.93843001\n\t\t -0.051761001 -0.34156901 -0.93843001 -0.051761001 -0.34156901 -0.93845999 -0.051210999\n\t\t -0.34156901 -0.93357599 -0.113897 -0.33979899 -0.93357599 -0.113897 -0.33979899 -0.93145299\n\t\t -0.13208801 -0.33904001 -0.93843001 -0.051761001 -0.34156901 -0.92263901 -0.18971001\n\t\t -0.33577701 -0.93145299 -0.13208801 -0.33904001 -0.93357599 -0.113897 -0.33979899\n\t\t -0.93357599 -0.113897 -0.33979899 -0.92264903 -0.189676 -0.33577001 -0.92263901 -0.18971001\n\t\t -0.33577701 -0.938025 0.059542 -0.341414 -0.93874002 -0.044863999 -0.34169301 -0.93874699\n\t\t -0.044711001 -0.34169501 -0.93874699 -0.044711001 -0.34169501 -0.93631101 0.084840998\n\t\t -0.34077099 -0.938025 0.059542 -0.341414 -0.92314303 0.186929 -0.33595499 -0.938025\n\t\t 0.059542 -0.341414 -0.93631101 0.084840998 -0.34077099 -0.93631101 0.084840998 -0.34077099\n\t\t -0.92315203 0.186931 -0.33592701 -0.92314303 0.186929 -0.33595499 -0.69391298 0.67431903\n\t\t -0.25254601 -0.69390398 0.67434102 -0.25251201 -0.69391298 0.67431903 -0.25254601\n\t\t -0.69391298 0.67431903 -0.25254601 -0.69390702 0.67431402 -0.252574 -0.69391298 0.67431903\n\t\t -0.25254601 -0.29530701 0.94933999 -0.107459 -0.295306 0.94933701 -0.107489 -0.29530701\n\t\t 0.94933999 -0.107459 -0.29530701 0.94933999 -0.107459 -0.29529899 0.94934303 -0.107456\n\t\t -0.29530701 0.94933999 -0.107459 0.29805401 0.94836599 0.108467 0.29804599 0.94836998\n\t\t 0.108463 0.29804599 0.94836998 0.108463 0.29804599 0.94836998 0.108463 0.29805401\n\t\t 0.94836599 0.108467 0.29805401 0.94836599 0.108467 0.70444101 0.66183603 0.25639099\n\t\t 0.70444101 0.66183603 0.25639099;\n\tsetAttr \".n[12782:12947]\" -type \"float3\"  0.70444101 0.66183603 0.25639099 0.70444101\n\t\t 0.66183603 0.25639099 0.70444101 0.66183603 0.25639099 0.70444101 0.66183603 0.25639099\n\t\t 0.93928099 0.030275 0.34181201 0.92777699 0.15879101 0.33766201 0.92777199 0.15882\n\t\t 0.33766001 0.92777199 0.15882 0.33766001 0.93824297 0.055819001 0.34144601 0.93928099\n\t\t 0.030275 0.34181201 0.93726802 -0.071780004 0.34114099 0.93928099 0.030275 0.34181201\n\t\t 0.93824297 0.055819001 0.34144601 0.93824297 0.055819001 0.34144601 0.93726403 -0.071841002\n\t\t 0.34113899 0.93726802 -0.071780004 0.34114099 0.93720597 -0.072725996 0.34110999\n\t\t 0.93726802 -0.071780004 0.34114099 0.93726403 -0.071841002 0.34113899 0.93726403\n\t\t -0.071841002 0.34113899 0.93719 -0.072911002 0.341115 0.93720597 -0.072725996 0.34110999\n\t\t 0.93145502 -0.132149 0.33901101 0.93720597 -0.072725996 0.34110999 0.93719 -0.072911002\n\t\t 0.341115 0.93719 -0.072911002 0.341115 0.92904103 -0.150186 0.33812401 0.93145502\n\t\t -0.132149 0.33901101 0.919236 -0.20756 0.33455101 0.93145502 -0.132149 0.33901101\n\t\t 0.92904103 -0.150186 0.33812401 0.92904103 -0.150186 0.33812401 0.919236 -0.20756\n\t\t 0.33455101 0.919236 -0.20756 0.33455101 0.700634 -0.66639102 0.25501999 0.70064998\n\t\t -0.66637701 0.25501499 0.700634 -0.66639102 0.25501999 0.700634 -0.66639102 0.25501999\n\t\t 0.700634 -0.66639102 0.25501999 0.700634 -0.66639102 0.25501999 -0.00033499999 -1\n\t\t -0.000122 0.191173 -0.979087 0.069583997 0.191173 -0.979087 0.069583997 0.191173\n\t\t -0.979087 0.069583997 -0.00030499999 -1 -9.1000002e-05 -0.00033499999 -1 -0.000122\n\t\t -0.191815 -0.97894597 -0.069798 -0.00033499999 -1 -0.000122 -0.00030499999 -1 -9.1000002e-05\n\t\t -0.00030499999 -1 -9.1000002e-05 -0.191815 -0.97894597 -0.069798 -0.191815 -0.97894597\n\t\t -0.069798 -0.707012 -0.65873098 -0.25730899 -0.70698297 -0.65876198 -0.25730899 -0.70703298\n\t\t -0.65872198 -0.25727499 -0.70703298 -0.65872198 -0.25727499 -0.70706201 -0.65868998\n\t\t -0.257274 -0.707012 -0.65873098 -0.25730899 0.276564 -0.093785003 -0.95640802 0.144142\n\t\t 0.049837999 -0.98830098 0.36824799 0.028596999 -0.92928803 0.36824799 0.028596999\n\t\t -0.92928803 0.51485503 -0.082065001 -0.85334003 0.276564 -0.093785003 -0.95640802\n\t\t 0.144142 0.049837999 -0.98830098 0.276564 -0.093785003 -0.95640802 0.038697999 -0.100864\n\t\t -0.994147 0.038697999 -0.100864 -0.994147 -0.345842 0.068697996 -0.93577498 0.144142\n\t\t 0.049837999 -0.98830098 -0.323349 -0.31211901 -0.89332402 0.038697999 -0.100864 -0.994147\n\t\t 0.276564 -0.093785003 -0.95640802 0.276564 -0.093785003 -0.95640802 -0.030060999\n\t\t -0.270338 -0.96229601 -0.323349 -0.31211901 -0.89332402 0.53566599 -0.20554399 -0.81903201\n\t\t 0.276564 -0.093785003 -0.95640802 0.51485503 -0.082065001 -0.85334003 0.51485503\n\t\t -0.082065001 -0.85334003 0.53057498 -0.19513901 -0.82486999 0.53566599 -0.20554399\n\t\t -0.81903201 -0.323349 -0.31211901 -0.89332402 -0.030060999 -0.270338 -0.96229601\n\t\t -0.143622 -0.41676801 -0.89759499 -0.143622 -0.41676801 -0.89759499 -0.30821601 -0.42684501\n\t\t -0.85017997 -0.323349 -0.31211901 -0.89332402 0.77625 -0.220347 -0.59066403 0.80306101\n\t\t -0.29695499 -0.516635 0.53566599 -0.20554399 -0.81903201 0.53566599 -0.20554399 -0.81903201\n\t\t 0.53057498 -0.19513901 -0.82486999 0.77625 -0.220347 -0.59066403 0.109776 0.218087\n\t\t -0.96973598 0.36824799 0.028596999 -0.92928803 0.144142 0.049837999 -0.98830098 0.144142\n\t\t 0.049837999 -0.98830098 -0.058718 0.265513 -0.962318 0.109776 0.218087 -0.96973598\n\t\t -0.058718 0.265513 -0.962318 0.144142 0.049837999 -0.98830098 -0.345842 0.068697996\n\t\t -0.93577498 -0.345842 0.068697996 -0.93577498 -0.32921499 0.29506299 -0.89696997\n\t\t -0.058718 0.265513 -0.962318 0.109776 0.218087 -0.96973598 -0.058718 0.265513 -0.962318\n\t\t -0.134652 0.37047499 -0.91903102 -0.134652 0.37047499 -0.91903102 0.15204699 0.339984\n\t\t -0.92805898 0.109776 0.218087 -0.96973598 -0.316329 0.385272 -0.86689198 -0.134652\n\t\t 0.37047499 -0.91903102 -0.058718 0.265513 -0.962318 -0.058718 0.265513 -0.962318\n\t\t -0.32921499 0.29506299 -0.89696997 -0.316329 0.385272 -0.86689198 -0.669285 -0.102453\n\t\t -0.73590797 -0.323349 -0.31211901 -0.89332402 -0.596681 -0.27964801 -0.75217599 -0.596681\n\t\t -0.27964801 -0.75217599 -0.66842699 -0.095798999 -0.73758298 -0.669285 -0.102453\n\t\t -0.73590797 -0.345842 0.068697996 -0.93577498 -0.669285 -0.102453 -0.73590797 -0.66842699\n\t\t -0.095798999 -0.73758298 -0.94182801 -0.094732001 -0.32246801 -0.93377101 -0.220259\n\t\t -0.28206 -0.93383002 -0.209058 -0.29026899 -0.93383002 -0.209058 -0.29026899 -0.940409\n\t\t -0.090305999 -0.32783401 -0.94182801 -0.094732001 -0.32246801 -0.87983 0.012696 -0.47511899\n\t\t -0.94182801 -0.094732001 -0.32246801 -0.940409 -0.090305999 -0.32783401 -0.66842699\n\t\t -0.095798999 -0.73758298 -0.58303303 0.076784998 -0.80881202 -0.345842 0.068697996\n\t\t -0.93577498 -0.32921499 0.29506299 -0.89696997 -0.345842 0.068697996 -0.93577498\n\t\t -0.58303303 0.076784998 -0.80881202 -0.940409 -0.090305999 -0.32783401 -0.87084198\n\t\t 0.027681001 -0.49078301 -0.87983 0.012696 -0.47511899 -0.97068202 -0.23603299 0.045442998\n\t\t -0.93383002 -0.209058 -0.29026899 -0.93377101 -0.220259 -0.28206 -0.93377101 -0.220259\n\t\t -0.28206 -0.94185603 -0.317004 0.111426 -0.97068202 -0.23603299 0.045442998 -0.46593899\n\t\t -0.419581 -0.77900702 -0.596681 -0.27964801 -0.75217599 -0.323349 -0.31211901 -0.89332402\n\t\t -0.323349 -0.31211901 -0.89332402 -0.30821601 -0.42684501 -0.85017997 -0.46593899\n\t\t -0.419581 -0.77900702 -0.58303303 0.076784998 -0.80881202 -0.57613999 0.245496 -0.77961099\n\t\t -0.32921499 0.29506299 -0.89696997 -0.57613999 0.245496 -0.77961099 -0.87983 0.012696\n\t\t -0.47511899 -0.87084198 0.027681001 -0.49078301 -0.316329 0.385272 -0.86689198 -0.32921499\n\t\t 0.29506299 -0.89696997 -0.57613999 0.245496 -0.77961099;\n\tsetAttr \".n[12948:13113]\" -type \"float3\"  -0.87084198 0.027681001 -0.49078301 -0.69889897\n\t\t 0.189527 -0.68965203 -0.57613999 0.245496 -0.77961099 -0.57613999 0.245496 -0.77961099\n\t\t -0.49059501 0.36577201 -0.79090297 -0.316329 0.385272 -0.86689198 -0.49059501 0.36577201\n\t\t -0.79090297 -0.57613999 0.245496 -0.77961099 -0.69889897 0.189527 -0.68965203 -0.69889897\n\t\t 0.189527 -0.68965203 -0.71631402 0.32835501 -0.61569202 -0.49059501 0.36577201 -0.79090297\n\t\t -0.38814601 0.88753402 -0.248245 -0.37590599 0.88786697 -0.265304 -0.383838 0.887707\n\t\t -0.25425401 0.131384 0.89075601 -0.435078 0.140784 0.88306999 -0.447624 0.134987\n\t\t 0.88783997 -0.43990701 0.134987 0.88783997 -0.43990701 0.12531 0.89554602 -0.42695901\n\t\t 0.131384 0.89075601 -0.435078 0.62183201 0.60190302 -0.501037 0.61819702 0.61526698\n\t\t -0.489162 0.72666901 0.443418 -0.52472198 0.72666901 0.443418 -0.52472198 0.76929098\n\t\t 0.361772 -0.526604 0.62183201 0.60190302 -0.501037 0.76929098 0.361772 -0.526604\n\t\t 0.72666901 0.443418 -0.52472198 0.85322499 0.084537998 -0.51464498 0.85322499 0.084537998\n\t\t -0.51464498 0.85968399 0.075351 -0.50523901 0.76929098 0.361772 -0.526604 0.85968399\n\t\t 0.075351 -0.50523901 0.85322499 0.084537998 -0.51464498 0.877451 -0.031525999 -0.47862899\n\t\t 0.877451 -0.031525999 -0.47862899 0.87998599 -0.032319002 -0.47389901 0.85968399\n\t\t 0.075351 -0.50523901 0.87998599 -0.032319002 -0.47389901 0.877451 -0.031525999 -0.47862899\n\t\t 0.89641201 -0.056063998 -0.439661 0.89641201 -0.056063998 -0.439661 0.89845598 -0.053805001\n\t\t -0.435754 0.87998599 -0.032319002 -0.47389901 0.89845598 -0.053805001 -0.435754 0.89641201\n\t\t -0.056063998 -0.439661 0.90957302 -0.089239001 -0.40584901 0.90957302 -0.089239001\n\t\t -0.40584901 0.910909 -0.082126997 -0.40435001 0.89845598 -0.053805001 -0.435754 -0.383838\n\t\t 0.887707 -0.25425401 -0.39613801 0.88709801 -0.23692 -0.38814601 0.88753402 -0.248245\n\t\t -0.80536598 0.59255701 0.016175 -0.81383801 0.57987398 0.037599999 -0.92869699 0.361651\n\t\t 0.082034998 0.910909 -0.082126997 -0.40435001 0.90957302 -0.089239001 -0.40584901\n\t\t 0.86198199 -0.257245 -0.43682 0.86198199 -0.257245 -0.43682 0.77625 -0.220347 -0.59066403\n\t\t 0.910909 -0.082126997 -0.40435001 0.77625 -0.220347 -0.59066403 0.86198199 -0.257245\n\t\t -0.43682 0.83717698 -0.31767601 -0.445216 0.83717698 -0.31767601 -0.445216 0.80306101\n\t\t -0.29695499 -0.516635 0.77625 -0.220347 -0.59066403 0.203595 -0.861256 -0.46560299\n\t\t 0.217604 -0.85765803 -0.46590999 0.215193 -0.85829902 -0.46584901 0.215193 -0.85829902\n\t\t -0.46584901 0.20152 -0.86177701 -0.465543 0.203595 -0.861256 -0.46560299 -0.451469\n\t\t -0.864057 -0.22266699 -0.46358699 -0.85859799 -0.218853 -0.462035 -0.85930902 -0.219344\n\t\t -0.462035 -0.85930902 -0.219344 -0.449909 -0.86475301 -0.223124 -0.451469 -0.864057\n\t\t -0.22266699 -0.94185603 -0.317004 0.111426 -0.91946602 -0.33875799 0.199562 -0.93609297\n\t\t -0.270311 0.225081 -0.93609297 -0.270311 0.225081 -0.97068202 -0.23603299 0.045442998\n\t\t -0.94185603 -0.317004 0.111426 -0.97068202 -0.23603299 0.045442998 -0.93609297 -0.270311\n\t\t 0.225081 -0.95493698 -0.110906 0.27531099 -0.95493698 -0.110906 0.27531099 -0.95626301\n\t\t -0.105201 0.272935 -0.97068202 -0.23603299 0.045442998 -0.95626301 -0.105201 0.272935\n\t\t -0.95493698 -0.110906 0.27531099 -0.967691 -0.073794998 0.241099 -0.967691 -0.073794998\n\t\t 0.241099 -0.96776801 -0.072667003 0.241133 -0.95626301 -0.105201 0.272935 -0.97750503\n\t\t -0.059085999 0.202466 -0.96776801 -0.072667003 0.241133 -0.967691 -0.073794998 0.241099\n\t\t -0.967691 -0.073794998 0.241099 -0.97861499 -0.058474001 0.197212 -0.97750503 -0.059085999\n\t\t 0.202466 -0.98666799 0.040132001 0.15772 -0.97750503 -0.059085999 0.202466 -0.97861499\n\t\t -0.058474001 0.197212 -0.97861499 -0.058474001 0.197212 -0.985618 0.046328001 0.162515\n\t\t -0.98666799 0.040132001 0.15772 -0.98666799 0.040132001 0.15772 -0.985618 0.046328001\n\t\t 0.162515 -0.89749199 0.436813 0.060853999 -0.89749199 0.436813 0.060853999 -0.92869699\n\t\t 0.361651 0.082034998 -0.98666799 0.040132001 0.15772 -0.92869699 0.361651 0.082034998\n\t\t -0.89749199 0.436813 0.060853999 -0.80536598 0.59255701 0.016175 -0.29600799 -0.22386\n\t\t -0.92858303 -0.265973 -0.18934 -0.94520301 -0.33360699 -0.087713003 -0.93862301 -0.33360699\n\t\t -0.087713003 -0.93862301 -0.34114701 -0.091527998 -0.93554401 -0.29600799 -0.22386\n\t\t -0.92858303 -0.34114701 -0.091527998 -0.93554401 -0.33360699 -0.087713003 -0.93862301\n\t\t -0.341878 0.053408999 -0.93822598 -0.341878 0.053408999 -0.93822598 -0.33912799 0.051759999\n\t\t -0.93931502 -0.34114701 -0.091527998 -0.93554401 -0.33912799 0.051759999 -0.93931502\n\t\t -0.341878 0.053408999 -0.93822598 -0.30601099 0.156958 -0.93900001 -0.30601099 0.156958\n\t\t -0.93900001 -0.30335799 0.178139 -0.936077 -0.33912799 0.051759999 -0.93931502 -0.30335799\n\t\t 0.178139 -0.936077 -0.30601099 0.156958 -0.93900001 -0.31208801 0.22465099 -0.92311102\n\t\t -0.31208801 0.22465099 -0.92311102 -0.31114799 0.241868 -0.91906899 -0.30335799 0.178139\n\t\t -0.936077 -0.31114799 0.241868 -0.91906899 -0.31208801 0.22465099 -0.92311102 -0.318712\n\t\t 0.26130599 -0.91112101 -0.318712 0.26130599 -0.91112101 -0.32142901 0.272903 -0.906757\n\t\t -0.31114799 0.241868 -0.91906899 -0.32142901 0.272903 -0.906757 -0.318712 0.26130599\n\t\t -0.91112101 -0.332571 0.27916199 -0.900814 -0.332571 0.27916199 -0.900814 -0.32982299\n\t\t 0.279771 -0.90163499 -0.32142901 0.272903 -0.906757 -0.32982299 0.279771 -0.90163499\n\t\t -0.332571 0.27916199 -0.900814 -0.351796 0.265609 -0.89760298 -0.351796 0.265609\n\t\t -0.89760298 -0.33464599 0.26622099 -0.90395701 -0.32982299 0.279771 -0.90163499 -0.33464599\n\t\t 0.26622099 -0.90395701 -0.351796 0.265609 -0.89760298 -0.36494499 0.226023 -0.90317702\n\t\t -0.36494499 0.226023 -0.90317702;\n\tsetAttr \".n[13114:13279]\" -type \"float3\"  -0.34319001 0.23866101 -0.90843898 -0.33464599\n\t\t 0.26622099 -0.90395701 -0.34319001 0.23866101 -0.90843898 -0.36494499 0.226023 -0.90317702\n\t\t -0.37798101 0.152871 -0.91310501 -0.37798101 0.152871 -0.91310501 -0.36034599 0.17844801\n\t\t -0.915591 -0.34319001 0.23866101 -0.90843898 -0.36034599 0.17844801 -0.915591 -0.37798101\n\t\t 0.152871 -0.91310501 -0.34425899 0.058719002 -0.93703699 -0.34425899 0.058719002\n\t\t -0.93703699 -0.341355 0.059298001 -0.93806201 -0.36034599 0.17844801 -0.915591 -0.341355\n\t\t 0.059298001 -0.93806201 -0.34425899 0.058719002 -0.93703699 -0.34102201 -0.080113001\n\t\t -0.93663502 -0.34102201 -0.080113001 -0.93663502 -0.34813601 -0.082860999 -0.93377501\n\t\t -0.341355 0.059298001 -0.93806201 -0.34813601 -0.082860999 -0.93377501 -0.34102201\n\t\t -0.080113001 -0.93663502 -0.38701299 -0.19690999 -0.90080398 -0.38701299 -0.19690999\n\t\t -0.90080398 -0.38423899 -0.224714 -0.89546901 -0.34813601 -0.082860999 -0.93377501\n\t\t -0.38423899 -0.224714 -0.89546901 -0.38701299 -0.19690999 -0.90080398 -0.36925301\n\t\t -0.262344 -0.89153099 -0.36925301 -0.262344 -0.89153099 -0.362932 -0.28520101 -0.887097\n\t\t -0.38423899 -0.224714 -0.89546901 -0.362932 -0.28520101 -0.887097 -0.36925301 -0.262344\n\t\t -0.89153099 -0.34902099 -0.296772 -0.88888198 -0.34902099 -0.296772 -0.88888198 -0.336292\n\t\t -0.31279299 -0.88829499 -0.362932 -0.28520101 -0.887097 -0.336292 -0.31279299 -0.88829499\n\t\t -0.34902099 -0.296772 -0.88888198 -0.32002801 -0.31841001 -0.892299 -0.32002801 -0.31841001\n\t\t -0.892299 -0.32295799 -0.31963199 -0.89080501 -0.336292 -0.31279299 -0.88829499 -0.32295799\n\t\t -0.31963199 -0.89080501 -0.32002801 -0.31841001 -0.892299 -0.285537 -0.30046099 -0.91004997\n\t\t -0.285537 -0.30046099 -0.91004997 -0.31562999 -0.305926 -0.89821303 -0.32295799 -0.31963199\n\t\t -0.89080501 -0.31562999 -0.305926 -0.89821303 -0.285537 -0.30046099 -0.91004997 -0.26978901\n\t\t -0.259718 -0.92723298 -0.26978901 -0.259718 -0.92723298 -0.30418399 -0.27998301 -0.91053897\n\t\t -0.31562999 -0.305926 -0.89821303 -0.30418399 -0.27998301 -0.91053897 -0.26978901\n\t\t -0.259718 -0.92723298 -0.265973 -0.18934 -0.94520301 -0.265973 -0.18934 -0.94520301\n\t\t -0.29600799 -0.22386 -0.92858303 -0.30418399 -0.27998301 -0.91053897 -0.94184101\n\t\t -0.048128001 -0.33259401 -0.942909 -0.048220001 -0.32954201 -0.94640899 -0.010377\n\t\t -0.322804 -0.94640899 -0.010377 -0.322804 -0.94655699 -0.0079960003 -0.32243699 -0.94184101\n\t\t -0.048128001 -0.33259401 -0.94655699 -0.0079960003 -0.32243699 -0.94640899 -0.010377\n\t\t -0.322804 -0.944673 0.068360999 -0.32081199 -0.944673 0.068360999 -0.32081199 -0.94465101\n\t\t 0.065737002 -0.32142499 -0.94655699 -0.0079960003 -0.32243699 -0.94465101 0.065737002\n\t\t -0.32142499 -0.944673 0.068360999 -0.32081199 -0.930969 0.070744 -0.35817799 -0.930969\n\t\t 0.070744 -0.35817799 -0.93013501 0.060306001 -0.36223301 -0.94465101 0.065737002\n\t\t -0.32142499 -0.93013501 0.060306001 -0.36223301 -0.930969 0.070744 -0.35817799 -0.88261497\n\t\t -0.097845003 -0.459802 -0.88261497 -0.097845003 -0.459802 -0.85965902 -0.144996 -0.48986\n\t\t -0.93013501 0.060306001 -0.36223301 -0.85965902 -0.144996 -0.48986 -0.88261497 -0.097845003\n\t\t -0.459802 -0.67838001 -0.33711499 -0.65280497 -0.67838001 -0.33711499 -0.65280497\n\t\t -0.645051 -0.35686001 -0.67569202 -0.85965902 -0.144996 -0.48986 -0.645051 -0.35686001\n\t\t -0.67569202 -0.67838001 -0.33711499 -0.65280497 -0.31071499 -0.42675 -0.84931803\n\t\t -0.31071499 -0.42675 -0.84931803 -0.30711299 -0.42674801 -0.85062802 -0.645051 -0.35686001\n\t\t -0.67569202 -0.30711299 -0.42674801 -0.85062802 -0.31071499 -0.42675 -0.84931803\n\t\t 0.101201 -0.32640001 -0.93979901 0.101201 -0.32640001 -0.93979901 0.062197998 -0.34526101\n\t\t -0.93644398 -0.30711299 -0.42674801 -0.85062802 0.062197998 -0.34526101 -0.93644398\n\t\t 0.101201 -0.32640001 -0.93979901 0.382074 -0.079076 -0.92074299 0.382074 -0.079076\n\t\t -0.92074299 0.341912 -0.127572 -0.93103302 0.062197998 -0.34526101 -0.93644398 0.341912\n\t\t -0.127572 -0.93103302 0.382074 -0.079076 -0.92074299 0.48119 0.091190003 -0.87186098\n\t\t 0.48119 0.091190003 -0.87186098 0.47856501 0.080081001 -0.87439299 0.341912 -0.127572\n\t\t -0.93103302 0.47856501 0.080081001 -0.87439299 0.48119 0.091190003 -0.87186098 0.51586097\n\t\t 0.090549998 -0.85187399 0.51586097 0.090549998 -0.85187399 0.51662803 0.088382997\n\t\t -0.85163599 0.47856501 0.080081001 -0.87439299 0.51662803 0.088382997 -0.85163599\n\t\t 0.51586097 0.090549998 -0.85187399 0.517941 0.0064400001 -0.85539198 0.517941 0.0064400001\n\t\t -0.85539198 0.51735502 0.0095220003 -0.85571802 0.51662803 0.088382997 -0.85163599\n\t\t 0.51735502 0.0095220003 -0.85571802 0.517941 0.0064400001 -0.85539198 0.509085 -0.039522\n\t\t -0.85980803 0.509085 -0.039522 -0.85980803 0.51162499 -0.037629999 -0.85838503 0.51735502\n\t\t 0.0095220003 -0.85571802 0.51162499 -0.037629999 -0.85838503 0.509085 -0.039522 -0.85980803\n\t\t 0.50481498 0.056155 -0.86139899 0.50481498 0.056155 -0.86139899 0.510432 0.078404002\n\t\t -0.856336 0.51162499 -0.037629999 -0.85838503 0.510432 0.078404002 -0.856336 0.50481498\n\t\t 0.056155 -0.86139899 0.49544799 0.19861899 -0.84562498 0.49544799 0.19861899 -0.84562498\n\t\t 0.50536698 0.217297 -0.83509701 0.510432 0.078404002 -0.856336 0.081394002 0.53652698\n\t\t -0.83994901 0.082524002 0.53347498 -0.84178001 0.081271999 0.53679699 -0.83978802\n\t\t 0.081271999 0.53679699 -0.83978802 0.080325998 0.53926897 -0.83829403 0.081394002\n\t\t 0.53652698 -0.83994901 -0.60445899 0.53224999 -0.59273899 -0.60685199 0.53354299\n\t\t -0.58911997 -0.60428399 0.532166 -0.59299201 -0.60428399 0.532166 -0.59299201 -0.60239601\n\t\t 0.53113198 -0.59583402 -0.60445899 0.53224999 -0.59273899 -0.931768 0.17002 -0.32078299\n\t\t -0.94321698 0.170661 -0.28498501 -0.94407898 0.05469 -0.325151 -0.94407898 0.05469\n\t\t -0.325151 -0.93563002 0.066776 -0.34660801 -0.931768 0.17002 -0.32078299 -0.93563002\n\t\t 0.066776 -0.34660801 -0.94407898 0.05469 -0.325151;\n\tsetAttr \".n[13280:13445]\" -type \"float3\"  -0.942909 -0.048220001 -0.32954201 -0.942909\n\t\t -0.048220001 -0.32954201 -0.94184101 -0.048128001 -0.33259401 -0.93563002 0.066776\n\t\t -0.34660801 -0.36037001 -0.182657 -0.91475099 -0.35838601 -0.19401 -0.91319197 -0.343373\n\t\t -0.076360002 -0.93608999 -0.343373 -0.076360002 -0.93608999 -0.342455 -0.075718001\n\t\t -0.93647802 -0.36037001 -0.182657 -0.91475099 -0.342455 -0.075718001 -0.93647802\n\t\t -0.343373 -0.076360002 -0.93608999 -0.34007099 0.051789999 -0.93897301 -0.34007099\n\t\t 0.051789999 -0.93897301 -0.34052899 0.052095 -0.93879002 -0.342455 -0.075718001 -0.93647802\n\t\t -0.34052899 0.052095 -0.93879002 -0.34007099 0.051789999 -0.93897301 -0.35582101\n\t\t 0.159462 -0.92084903 -0.35582101 0.159462 -0.92084903 -0.36183599 0.14505801 -0.92088699\n\t\t -0.34052899 0.052095 -0.93879002 -0.36183599 0.14505801 -0.92088699 -0.35582101 0.159462\n\t\t -0.92084903 -0.346306 0.2115 -0.91396898 -0.346306 0.2115 -0.91396898 -0.35225499\n\t\t 0.20731799 -0.91265303 -0.36183599 0.14505801 -0.92088699 -0.35225499 0.20731799\n\t\t -0.91265303 -0.346306 0.2115 -0.91396898 -0.34083599 0.235423 -0.91016799 -0.34083599\n\t\t 0.235423 -0.91016799 -0.345779 0.235301 -0.90833402 -0.35225499 0.20731799 -0.91265303\n\t\t -0.345779 0.235301 -0.90833402 -0.34083599 0.235423 -0.91016799 -0.33211201 0.246077\n\t\t -0.91057599 -0.33211201 0.246077 -0.91057599 -0.33266401 0.24620201 -0.91034001 -0.345779\n\t\t 0.235301 -0.90833402 -0.33266401 0.24620201 -0.91034001 -0.33211201 0.246077 -0.91057599\n\t\t -0.32292399 0.238141 -0.91597402 -0.32292399 0.238141 -0.91597402 -0.32218999 0.235027\n\t\t -0.91703701 -0.33266401 0.24620201 -0.91034001 -0.32218999 0.235027 -0.91703701 -0.32292399\n\t\t 0.238141 -0.91597402 -0.31905001 0.21195699 -0.92373198 -0.31905001 0.21195699 -0.92373198\n\t\t -0.31932101 0.20688801 -0.92478698 -0.32218999 0.235027 -0.91703701 -0.31932101 0.20688801\n\t\t -0.92478698 -0.31905001 0.21195699 -0.92373198 -0.317157 0.15857799 -0.93502098 -0.317157\n\t\t 0.15857799 -0.93502098 -0.31630301 0.14627901 -0.93731201 -0.31932101 0.20688801\n\t\t -0.92478698 -0.31630301 0.14627901 -0.93731201 -0.317157 0.15857799 -0.93502098 -0.342513\n\t\t 0.04944 -0.93821102 -0.342513 0.04944 -0.93821102 -0.342758 0.051699001 -0.93800002\n\t\t -0.31630301 0.14627901 -0.93731201 -0.342758 0.051699001 -0.93800002 -0.342513 0.04944\n\t\t -0.93821102 -0.339647 -0.078129001 -0.93730199 -0.339647 -0.078129001 -0.93730199\n\t\t -0.338543 -0.075717002 -0.93789899 -0.342758 0.051699001 -0.93800002 -0.338543 -0.075717002\n\t\t -0.93789899 -0.339647 -0.078129001 -0.93730199 -0.315323 -0.194895 -0.928756 -0.315323\n\t\t -0.194895 -0.928756 -0.310101 -0.182045 -0.93311203 -0.338543 -0.075717002 -0.93789899\n\t\t -0.310101 -0.182045 -0.93311203 -0.315323 -0.194895 -0.928756 -0.31016701 -0.246382\n\t\t -0.91820103 -0.31016701 -0.246382 -0.91820103 -0.30116799 -0.239732 -0.92294401 -0.310101\n\t\t -0.182045 -0.93311203 -0.30116799 -0.239732 -0.92294401 -0.31016701 -0.246382 -0.91820103\n\t\t -0.314587 -0.27683601 -0.90796298 -0.314587 -0.27683601 -0.90796298 -0.29191601 -0.26942399\n\t\t -0.91771197 -0.30116799 -0.239732 -0.92294401 -0.29191601 -0.26942399 -0.91771197\n\t\t -0.314587 -0.27683601 -0.90796298 -0.32717001 -0.28862399 -0.899809 -0.32717001 -0.28862399\n\t\t -0.899809 -0.32603499 -0.28852701 -0.90025198 -0.29191601 -0.26942399 -0.91771197\n\t\t -0.32603499 -0.28852701 -0.90025198 -0.32717001 -0.28862399 -0.899809 -0.34365001\n\t\t -0.281055 -0.89605403 -0.34365001 -0.281055 -0.89605403 -0.35350499 -0.272019 -0.89500898\n\t\t -0.32603499 -0.28852701 -0.90025198 -0.35350499 -0.272019 -0.89500898 -0.34365001\n\t\t -0.281055 -0.89605403 -0.360185 -0.245251 -0.90006602 -0.360185 -0.245251 -0.90006602\n\t\t -0.35866201 -0.238966 -0.90236199 -0.35350499 -0.272019 -0.89500898 -0.35866201 -0.238966\n\t\t -0.90236199 -0.360185 -0.245251 -0.90006602 -0.35838601 -0.19401 -0.91319197 -0.35838601\n\t\t -0.19401 -0.91319197 -0.36037001 -0.182657 -0.91475099 -0.35866201 -0.238966 -0.90236199\n\t\t 0.93874002 -0.044863001 -0.34169301 0.93874699 -0.044711001 -0.34169501 0.93843001\n\t\t -0.051759999 -0.34156901 0.93843001 -0.051759999 -0.34156901 0.93845999 -0.051210999\n\t\t -0.34156901 0.93874002 -0.044863001 -0.34169301 0.93845999 -0.051210999 -0.34156901\n\t\t 0.93843001 -0.051759999 -0.34156901 0.93145299 -0.13208801 -0.33904001 0.93145299\n\t\t -0.13208801 -0.33904001 0.93357301 -0.113927 -0.33979699 0.93845999 -0.051210999\n\t\t -0.34156901 0.93357301 -0.113927 -0.33979699 0.93145299 -0.13208801 -0.33904001 0.92262501\n\t\t -0.18973701 -0.33580199 0.92262501 -0.18973701 -0.33580199 0.92262501 -0.18973701\n\t\t -0.33580199 0.93357301 -0.113927 -0.33979699 0.93874699 -0.044711001 -0.34169501\n\t\t 0.93874002 -0.044863001 -0.34169301 0.938025 0.059542 -0.341414 0.938025 0.059542\n\t\t -0.341414 0.93630701 0.084844001 -0.34077999 0.93874699 -0.044711001 -0.34169501\n\t\t 0.93630701 0.084844001 -0.34077999 0.938025 0.059542 -0.341414 0.92314202 0.18693\n\t\t -0.33595499 0.92314202 0.18693 -0.33595499 0.92315203 0.186932 -0.33592701 0.93630701\n\t\t 0.084844001 -0.34077999 0.69391203 0.67431903 -0.25254601 0.69390303 0.67434102 -0.25251201\n\t\t 0.69391203 0.67431903 -0.25254601 0.69391203 0.67431903 -0.25254601 0.69390702 0.67431402\n\t\t -0.252574 0.69391203 0.67431903 -0.25254601 0.29530701 0.94933999 -0.107459 0.295306\n\t\t 0.94933701 -0.107489 0.29530701 0.94933999 -0.107459 0.29530701 0.94933999 -0.107459\n\t\t 0.29529801 0.94934303 -0.107456 0.29530701 0.94933999 -0.107459 -0.29804599 0.94836903\n\t\t 0.108463 -0.29804599 0.94836903 0.108463 -0.29804599 0.94836903 0.108463 -0.29804599\n\t\t 0.94836903 0.108463 -0.29805499 0.94836599 0.108467 -0.29804599 0.94836903 0.108463\n\t\t -0.70444101 0.66183603 0.25639099 -0.70444101 0.66183603 0.25639099 -0.70444101 0.66183603\n\t\t 0.25639099 -0.70444101 0.66183603 0.25639099 -0.70444101 0.66183603 0.25639099 -0.70444101\n\t\t 0.66183603 0.25639099;\n\tsetAttr \".n[13446:13611]\" -type \"float3\"  -0.927764 0.15885399 0.337668 -0.927764\n\t\t 0.15885399 0.337668 -0.93926698 0.030275 0.341849 -0.93926698 0.030275 0.341849 -0.93822902\n\t\t 0.055819999 0.34148201 -0.927764 0.15885399 0.337668 -0.93822902 0.055819999 0.34148201\n\t\t -0.93926698 0.030275 0.341849 -0.93726498 -0.071810998 0.34114 -0.93726498 -0.071810998\n\t\t 0.34114 -0.93726301 -0.071842 0.34113899 -0.93822902 0.055819999 0.34148201 -0.93726301\n\t\t -0.071842 0.34113899 -0.93726498 -0.071810998 0.34114 -0.93722498 -0.072728001 0.34105599\n\t\t -0.93722498 -0.072728001 0.34105599 -0.937213 -0.072911002 0.341052 -0.93726301 -0.071842\n\t\t 0.34113899 -0.937213 -0.072911002 0.341052 -0.93722498 -0.072728001 0.34105599 -0.93145502\n\t\t -0.13214999 0.33901101 -0.93145502 -0.13214999 0.33901101 -0.92904001 -0.150186 0.33812401\n\t\t -0.937213 -0.072911002 0.341052 -0.92904001 -0.150186 0.33812401 -0.93145502 -0.13214999\n\t\t 0.33901101 -0.919236 -0.207561 0.33455101 -0.919236 -0.207561 0.33455101 -0.919236\n\t\t -0.207561 0.33455101 -0.92904001 -0.150186 0.33812401 -0.700634 -0.66639102 0.25501999\n\t\t -0.70064902 -0.66637701 0.25501499 -0.700634 -0.66639102 0.25501999 -0.700634 -0.66639102\n\t\t 0.25501999 -0.700634 -0.66639102 0.25501999 -0.700634 -0.66639102 0.25501999 -0.191172\n\t\t -0.979087 0.069583997 -0.191172 -0.979087 0.069583997 0.000336 -1 -0.000122 0.000336\n\t\t -1 -0.000122 0.000306 -1 -9.1000002e-05 -0.191172 -0.979087 0.069583997 0.000306\n\t\t -1 -9.1000002e-05 0.000336 -1 -0.000122 0.191816 -0.97894597 -0.069798 0.191816 -0.97894597\n\t\t -0.069798 0.191816 -0.97894597 -0.069798 0.000306 -1 -9.1000002e-05 0.70704198 -0.65869898\n\t\t -0.25730899 0.707012 -0.65872997 -0.25730899 0.707012 -0.65872997 -0.25730899 0.707012\n\t\t -0.65872997 -0.25730899 0.70704198 -0.65869898 -0.25730899 0.70704198 -0.65869898\n\t\t -0.25730899 0.97115302 0.073491 0.22685 0.96709001 -0.086612999 0.23923901 0.882851\n\t\t -0.086764999 0.461568 0.882851 -0.086764999 0.461568 0.91823 -0.124976 0.37581301\n\t\t 0.97115302 0.073491 0.22685 0.96115202 -0.119148 0.248978 0.97115302 0.073491 0.22685\n\t\t 0.91823 -0.124976 0.37581301 0.91823 -0.124976 0.37581301 0.96955901 0.126929 0.209391\n\t\t 0.96115202 -0.119148 0.248978 0.96904701 -0.0057069999 0.24680901 0.96709001 -0.086612999\n\t\t 0.23923901 0.97115302 0.073491 0.22685 0.97115302 0.073491 0.22685 0.96612698 0.079930998\n\t\t 0.245377 0.96904701 -0.0057069999 0.24680901 0.96709001 -0.086612999 0.23923901 0.96904701\n\t\t -0.0057069999 0.24680901 0.94946897 -0.193702 0.246958 0.94946897 -0.193702 0.246958\n\t\t 0.93895799 -0.24857999 0.237837 0.96709001 -0.086612999 0.23923901 0.882851 -0.086764999\n\t\t 0.461568 0.96709001 -0.086612999 0.23923901 0.93895799 -0.24857999 0.237837 0.96717399\n\t\t -0.053346999 0.248454 0.93895799 -0.24857999 0.237837 0.94946897 -0.193702 0.246958\n\t\t 0.94946897 -0.193702 0.246958 0.96912903 -0.047242999 0.24198499 0.96717399 -0.053346999\n\t\t 0.248454 0.93895799 -0.24857999 0.237837 0.91811699 -0.073857002 0.38936701 0.882851\n\t\t -0.086764999 0.461568 0.91811699 -0.073857002 0.38936701 0.93895799 -0.24857999 0.237837\n\t\t 0.96717399 -0.053346999 0.248454 0.96297598 0.092596002 0.25318801 0.96904701 -0.0057069999\n\t\t 0.24680901 0.96612698 0.079930998 0.245377 0.96612698 0.079930998 0.245377 0.97620702\n\t\t -0.14469001 0.161506 0.96297598 0.092596002 0.25318801 0.960751 -0.15006401 0.233321\n\t\t 0.97620702 -0.14469001 0.161506 0.96612698 0.079930998 0.245377 0.96612698 0.079930998\n\t\t 0.245377 0.95932901 -0.126927 0.25214699 0.960751 -0.15006401 0.233321 0.95932901\n\t\t -0.126927 0.25214699 0.96612698 0.079930998 0.245377 0.97115302 0.073491 0.22685\n\t\t 0.97115302 0.073491 0.22685 0.96115202 -0.119148 0.248978 0.95932901 -0.126927 0.25214699\n\t\t 0.96717399 -0.053346999 0.248454 0.95060402 -0.062289 0.30409101 0.91811699 -0.073857002\n\t\t 0.38936701 -0.140544 0.74535298 -0.65168798 -0.17609601 0.660923 -0.7295 -0.28779501\n\t\t 0.525599 -0.80057502 -0.28779501 0.525599 -0.80057502 -0.31992999 0.50344002 -0.80261701\n\t\t -0.140544 0.74535298 -0.65168798 -0.093144998 0.90138799 -0.422876 -0.17609601 0.660923\n\t\t -0.7295 -0.140544 0.74535298 -0.65168798 -0.140544 0.74535298 -0.65168798 -0.089665003\n\t\t 0.91246003 -0.39921999 -0.093144998 0.90138799 -0.422876 -0.138008 0.97692001 -0.16303401\n\t\t -0.093144998 0.90138799 -0.422876 -0.089665003 0.91246003 -0.39921999 -0.089665003\n\t\t 0.91246003 -0.39921999 -0.124365 0.97486597 -0.184853 -0.138008 0.97692001 -0.16303401\n\t\t -0.18320701 0.98030502 -0.073734 -0.138008 0.97692001 -0.16303401 -0.124365 0.97486597\n\t\t -0.184853 -0.124365 0.97486597 -0.184853 -0.189771 0.97979802 -0.063114002 -0.18320701\n\t\t 0.98030502 -0.073734 -0.254316 0.96666199 -0.029817 -0.18320701 0.98030502 -0.073734\n\t\t -0.189771 0.97979802 -0.063114002 -0.189771 0.97979802 -0.063114002 -0.281324 0.95912099\n\t\t -0.030733 -0.254316 0.96666199 -0.029817 -0.65753198 0.70398098 0.26844499 -0.708179\n\t\t 0.65693599 0.25868499 -0.671673 0.69147998 0.26591599 -0.671673 0.69147998 0.26591599\n\t\t -0.612091 0.74115598 0.27574 -0.65753198 0.70398098 0.26844499 -0.28147799 -0.65405703\n\t\t -0.70212501 -0.43090001 -0.38701299 -0.81519699 -0.39394301 -0.424036 -0.81547701\n\t\t -0.39394301 -0.424036 -0.81547701 -0.27210799 -0.60244697 -0.75034302 -0.28147799\n\t\t -0.65405703 -0.70212501 -0.28080401 -0.84784502 -0.44978699 -0.28147799 -0.65405703\n\t\t -0.70212501 -0.27210799 -0.60244697 -0.75034302 -0.27210799 -0.60244697 -0.75034302\n\t\t -0.27665401 -0.85584301 -0.437031 -0.28080401 -0.84784502 -0.44978699 -0.380577 -0.907435\n\t\t -0.178111 -0.28080401 -0.84784502 -0.44978699 -0.27665401 -0.85584301 -0.437031 -0.27665401\n\t\t -0.85584301 -0.437031;\n\tsetAttr \".n[13612:13777]\" -type \"float3\"  -0.39439899 -0.90678501 -0.148964 -0.380577\n\t\t -0.907435 -0.178111 -0.423233 -0.90387303 -0.062350001 -0.380577 -0.907435 -0.178111\n\t\t -0.39439899 -0.90678501 -0.148964 -0.39439899 -0.90678501 -0.148964 -0.422719 -0.90412599\n\t\t -0.062167 -0.423233 -0.90387303 -0.062350001 0.71462601 0.62572497 -0.312695 0.90204901\n\t\t 0.29572901 -0.31440699 0.83536798 0.41036001 -0.36574 0.83536798 0.41036001 -0.36574\n\t\t 0.70792699 0.61005199 -0.35591701 0.71462601 0.62572497 -0.312695 0.59338802 0.79466403\n\t\t -0.128059 0.71462601 0.62572497 -0.312695 0.70792699 0.61005199 -0.35591701 0.70792699\n\t\t 0.61005199 -0.35591701 0.61862499 0.77048898 -0.153787 0.59338802 0.79466403 -0.128059\n\t\t 0.56658798 0.82331502 0.033631999 0.59338802 0.79466403 -0.128059 0.61862499 0.77048898\n\t\t -0.153787 0.61862499 0.77048898 -0.153787 0.57724899 0.81618798 0.024935 0.56658798\n\t\t 0.82331502 0.033631999 0.57120001 0.812823 0.114234 0.56658798 0.82331502 0.033631999\n\t\t 0.57724899 0.81618798 0.024935 0.57724899 0.81618798 0.024935 0.56695402 0.81425101\n\t\t 0.124732 0.57120001 0.812823 0.114234 0.55117899 0.78758198 0.275529 0.57120001 0.812823\n\t\t 0.114234 0.56695402 0.81425101 0.124732 0.56695402 0.81425101 0.124732 0.52736503\n\t\t 0.772035 0.35475099 0.55117899 0.78758198 0.275529 0.50509602 0.713911 0.48498401\n\t\t 0.55117899 0.78758198 0.275529 0.52736503 0.772035 0.35475099 0.52736503 0.772035\n\t\t 0.35475099 0.46786401 0.71214199 0.52340901 0.50509602 0.713911 0.48498401 0.411946\n\t\t -0.89960802 0.144935 0.41408199 -0.90842801 0.057406001 0.417954 -0.90533799 0.075351\n\t\t 0.417954 -0.90533799 0.075351 0.41317099 -0.89897698 0.145364 0.411946 -0.89960802\n\t\t 0.144935 0.47924501 -0.86635101 -0.140572 0.417954 -0.90533799 0.075351 0.41408199\n\t\t -0.90842801 0.057406001 0.41408199 -0.90842801 0.057406001 0.47848001 -0.861099 -0.17194501\n\t\t 0.47924501 -0.86635101 -0.140572 0.61488098 -0.69600201 -0.370814 0.47924501 -0.86635101\n\t\t -0.140572 0.47848001 -0.861099 -0.17194501 0.47848001 -0.861099 -0.17194501 0.65871799\n\t\t -0.66064101 -0.36006099 0.61488098 -0.69600201 -0.370814 0.74247098 -0.56219399 -0.36424601\n\t\t 0.61488098 -0.69600201 -0.370814 0.65871799 -0.66064101 -0.36006099 0.65871799 -0.66064101\n\t\t -0.36006099 0.75409198 -0.58394903 -0.30058101 0.74247098 -0.56219399 -0.36424601\n\t\t 0.84648299 -0.22861999 0.48083201 0.884592 -0.30860701 0.34965599 0.88505 -0.32667401\n\t\t 0.33161899 0.88505 -0.32667401 0.33161899 0.91823 -0.124976 0.37581301 0.84648299\n\t\t -0.22861999 0.48083201 0.83020598 -0.078922004 0.55184299 0.84648299 -0.22861999\n\t\t 0.48083201 0.91823 -0.124976 0.37581301 0.91823 -0.124976 0.37581301 0.882851 -0.086764999\n\t\t 0.461568 0.83020598 -0.078922004 0.55184299 0.96115202 -0.119148 0.248978 0.88505\n\t\t -0.32667401 0.33161899 0.884592 -0.30860701 0.34965599 0.884592 -0.30860701 0.34965599\n\t\t 0.90528297 -0.334914 0.261334 0.96115202 -0.119148 0.248978 0.96115202 -0.119148\n\t\t 0.248978 0.90528297 -0.334914 0.261334 0.90352899 -0.34938601 0.24812301 0.90352899\n\t\t -0.34938601 0.24812301 0.95932901 -0.126927 0.25214699 0.96115202 -0.119148 0.248978\n\t\t 0.960751 -0.15006401 0.233321 0.95932901 -0.126927 0.25214699 0.90352899 -0.34938601\n\t\t 0.24812301 0.90352899 -0.34938601 0.24812301 0.92472798 -0.35133499 0.146431 0.960751\n\t\t -0.15006401 0.233321 0.97620702 -0.14469001 0.161506 0.960751 -0.15006401 0.233321\n\t\t 0.92472798 -0.35133499 0.146431 0.92472798 -0.35133499 0.146431 0.93250698 -0.35933\n\t\t 0.036226001 0.97620702 -0.14469001 0.161506 0.83020598 -0.078922004 0.55184299 0.882851\n\t\t -0.086764999 0.461568 0.91811699 -0.073857002 0.38936701 0.91811699 -0.073857002\n\t\t 0.38936701 0.86162001 0.060764 0.50390399 0.83020598 -0.078922004 0.55184299 0.91742897\n\t\t 0.139685 0.37257501 0.86162001 0.060764 0.50390399 0.91811699 -0.073857002 0.38936701\n\t\t 0.91811699 -0.073857002 0.38936701 0.95060402 -0.062289 0.30409101 0.91742897 0.139685\n\t\t 0.37257501 0.95220602 0.17078701 0.25325 0.91742897 0.139685 0.37257501 0.95060402\n\t\t -0.062289 0.30409101 0.95060402 -0.062289 0.30409101 0.96717399 -0.053346999 0.248454\n\t\t 0.95220602 0.17078701 0.25325 0.95605499 0.185101 0.22736999 0.95220602 0.17078701\n\t\t 0.25325 0.96717399 -0.053346999 0.248454 0.96717399 -0.053346999 0.248454 0.96912903\n\t\t -0.047242999 0.24198499 0.95605499 0.185101 0.22736999 -0.97115499 0.073459998 0.22685\n\t\t -0.91823 -0.124976 0.37581301 -0.882851 -0.086765997 0.461568 -0.882851 -0.086765997\n\t\t 0.461568 -0.96708298 -0.086612999 0.239268 -0.97115499 0.073459998 0.22685 -0.91823\n\t\t -0.124976 0.37581301 -0.97115499 0.073459998 0.22685 -0.96115202 -0.119149 0.248979\n\t\t -0.96115202 -0.119149 0.248979 -0.96955901 0.126928 0.209391 -0.91823 -0.124976 0.37581301\n\t\t -0.97115499 0.073459998 0.22685 -0.96708298 -0.086612999 0.239268 -0.96904701 -0.0057379999\n\t\t 0.24680901 -0.96904701 -0.0057379999 0.24680901 -0.96612501 0.079961002 0.245377\n\t\t -0.97115499 0.073459998 0.22685 -0.94947499 -0.193673 0.246959 -0.96904701 -0.0057379999\n\t\t 0.24680901 -0.96708298 -0.086612999 0.239268 -0.96708298 -0.086612999 0.239268 -0.93895799\n\t\t -0.24857999 0.237837 -0.94947499 -0.193673 0.246959 -0.93895799 -0.24857999 0.237837\n\t\t -0.96708298 -0.086612999 0.239268 -0.882851 -0.086765997 0.461568 -0.94947499 -0.193673\n\t\t 0.246959 -0.93895799 -0.24857999 0.237837 -0.96717399 -0.053346999 0.248454 -0.96717399\n\t\t -0.053346999 0.248454 -0.96912903 -0.047244001 0.24198499 -0.94947499 -0.193673 0.246959\n\t\t -0.882851 -0.086765997 0.461568 -0.91811699 -0.073857002 0.38936701 -0.93895799 -0.24857999\n\t\t 0.237837 -0.96717399 -0.053346999 0.248454 -0.93895799 -0.24857999 0.237837;\n\tsetAttr \".n[13778:13943]\" -type \"float3\"  -0.91811699 -0.073857002 0.38936701 -0.96612501\n\t\t 0.079961002 0.245377 -0.96904701 -0.0057379999 0.24680901 -0.96296799 0.092595004\n\t\t 0.25321701 -0.96296799 0.092595004 0.25321701 -0.97619802 -0.144719 0.16153499 -0.96612501\n\t\t 0.079961002 0.245377 -0.96612501 0.079961002 0.245377 -0.97619802 -0.144719 0.16153499\n\t\t -0.960751 -0.15006401 0.233321 -0.960751 -0.15006401 0.233321 -0.95933598 -0.12686799\n\t\t 0.252148 -0.96612501 0.079961002 0.245377 -0.95933598 -0.12686799 0.252148 -0.96115202\n\t\t -0.119149 0.248979 -0.97115499 0.073459998 0.22685 -0.97115499 0.073459998 0.22685\n\t\t -0.96612501 0.079961002 0.245377 -0.95933598 -0.12686799 0.252148 -0.91811699 -0.073857002\n\t\t 0.38936701 -0.95060402 -0.062289 0.30409101 -0.96717399 -0.053346999 0.248454 0.287824\n\t\t 0.54128402 -0.79004401 0.30580801 0.54242802 -0.78246599 0.199717 0.63803202 -0.74365902\n\t\t 0.199717 0.63803202 -0.74365902 0.134224 0.74033803 -0.65869898 0.287824 0.54128402\n\t\t -0.79004401 0.134224 0.74033803 -0.65869898 0.199717 0.63803202 -0.74365902 0.093144998\n\t\t 0.90138799 -0.422876 0.093144998 0.90138799 -0.422876 0.089665003 0.91246003 -0.39921999\n\t\t 0.134224 0.74033803 -0.65869898 0.089665003 0.91246003 -0.39921999 0.093144998 0.90138799\n\t\t -0.422876 0.138008 0.97692102 -0.16303401 0.138008 0.97692102 -0.16303401 0.124364\n\t\t 0.97486597 -0.184853 0.089665003 0.91246003 -0.39921999 0.124364 0.97486597 -0.184853\n\t\t 0.138008 0.97692102 -0.16303401 0.18320601 0.98030502 -0.073734 0.18320601 0.98030502\n\t\t -0.073734 0.18977 0.97979802 -0.063114002 0.124364 0.97486597 -0.184853 0.18977 0.97979802\n\t\t -0.063114002 0.18320601 0.98030502 -0.073734 0.25431499 0.96666199 -0.029817 0.25431499\n\t\t 0.96666199 -0.029817 0.28135201 0.95911199 -0.030732 0.18977 0.97979802 -0.063114002\n\t\t 0.67168897 0.69146597 0.26591101 0.708179 0.65693599 0.25868499 0.65754002 0.70396\n\t\t 0.26847899 0.65754002 0.70396 0.26847899 0.61212403 0.74112898 0.27574101 0.67168897\n\t\t 0.69146597 0.26591101 0.393944 -0.424036 -0.81547701 0.43090501 -0.386987 -0.81520599\n\t\t 0.281479 -0.65405703 -0.70212501 0.281479 -0.65405703 -0.70212501 0.272109 -0.60244697\n\t\t -0.75034302 0.393944 -0.424036 -0.81547701 0.272109 -0.60244697 -0.75034302 0.281479\n\t\t -0.65405703 -0.70212501 0.28080401 -0.84784502 -0.44978699 0.28080401 -0.84784502\n\t\t -0.44978699 0.27665401 -0.85584199 -0.437031 0.272109 -0.60244697 -0.75034302 0.27665401\n\t\t -0.85584199 -0.437031 0.28080401 -0.84784502 -0.44978699 0.38057801 -0.90743399 -0.178111\n\t\t 0.38057801 -0.90743399 -0.178111 0.39439899 -0.90678501 -0.148964 0.27665401 -0.85584199\n\t\t -0.437031 0.39439899 -0.90678501 -0.148964 0.38057801 -0.90743399 -0.178111 0.42324501\n\t\t -0.90386701 -0.062351 0.42324501 -0.90386701 -0.062351 0.422719 -0.90412599 -0.062167\n\t\t 0.39439899 -0.90678501 -0.148964 -0.83536798 0.410359 -0.36574 -0.90204102 0.295726\n\t\t -0.31443399 -0.71462601 0.62572497 -0.312695 -0.71462601 0.62572497 -0.312695 -0.70792699\n\t\t 0.61005098 -0.35591701 -0.83536798 0.410359 -0.36574 -0.70792699 0.61005098 -0.35591701\n\t\t -0.71462601 0.62572497 -0.312695 -0.59338897 0.79466403 -0.128059 -0.59338897 0.79466403\n\t\t -0.128059 -0.61862499 0.77048898 -0.153787 -0.70792699 0.61005098 -0.35591701 -0.61862499\n\t\t 0.77048898 -0.153787 -0.59338897 0.79466403 -0.128059 -0.56658798 0.82331502 0.033631999\n\t\t -0.56658798 0.82331502 0.033631999 -0.57724899 0.81618702 0.024935 -0.61862499 0.77048898\n\t\t -0.153787 -0.57724899 0.81618702 0.024935 -0.56658798 0.82331502 0.033631999 -0.57120103\n\t\t 0.81282198 0.114234 -0.57120103 0.81282198 0.114234 -0.56693399 0.81426501 0.124734\n\t\t -0.57724899 0.81618702 0.024935 -0.56693399 0.81426501 0.124734 -0.57120103 0.81282198\n\t\t 0.114234 -0.551175 0.78757501 0.27555701 -0.551175 0.78757501 0.27555701 -0.52736598\n\t\t 0.772035 0.35475099 -0.56693399 0.81426501 0.124734 -0.52736598 0.772035 0.35475099\n\t\t -0.551175 0.78757501 0.27555701 -0.50509697 0.71390998 0.48498401 -0.50509697 0.71390998\n\t\t 0.48498401 -0.467888 0.71213198 0.52340198 -0.52736598 0.772035 0.35475099 -0.74247098\n\t\t -0.56219399 -0.36424601 -0.75409198 -0.58394903 -0.30058101 -0.65872502 -0.66064799\n\t\t -0.36003399 -0.65872502 -0.66064799 -0.36003399 -0.61488003 -0.69600201 -0.370814\n\t\t -0.74247098 -0.56219399 -0.36424601 -0.61488003 -0.69600201 -0.370814 -0.65872502\n\t\t -0.66064799 -0.36003399 -0.47848001 -0.861099 -0.17194501 -0.47848001 -0.861099 -0.17194501\n\t\t -0.47924399 -0.86635101 -0.140572 -0.61488003 -0.69600201 -0.370814 -0.47924399 -0.86635101\n\t\t -0.140572 -0.47848001 -0.861099 -0.17194501 -0.41408101 -0.90842801 0.057406001 -0.41408101\n\t\t -0.90842801 0.057406001 -0.417954 -0.90533799 0.075351 -0.47924399 -0.86635101 -0.140572\n\t\t -0.417954 -0.90533799 0.075351 -0.41408101 -0.90842801 0.057406001 -0.41192001 -0.89962\n\t\t 0.14493699 -0.41192001 -0.89962 0.14493699 -0.41317001 -0.89897698 0.145364 -0.417954\n\t\t -0.90533799 0.075351 -0.84648299 -0.22861999 0.48083201 -0.91823 -0.124976 0.37581301\n\t\t -0.88504899 -0.326675 0.33161899 -0.88504899 -0.326675 0.33161899 -0.884592 -0.308608\n\t\t 0.34965599 -0.84648299 -0.22861999 0.48083201 -0.91823 -0.124976 0.37581301 -0.84648299\n\t\t -0.22861999 0.48083201 -0.83020699 -0.078892 0.551844 -0.83020699 -0.078892 0.551844\n\t\t -0.882851 -0.086765997 0.461568 -0.91823 -0.124976 0.37581301 -0.884592 -0.308608\n\t\t 0.34965599 -0.88504899 -0.326675 0.33161899 -0.96115202 -0.119149 0.248979 -0.96115202\n\t\t -0.119149 0.248979 -0.90526801 -0.33495101 0.261338 -0.884592 -0.308608 0.34965599\n\t\t -0.90352899 -0.34938699 0.24812301 -0.90526801 -0.33495101 0.261338 -0.96115202 -0.119149\n\t\t 0.248979 -0.96115202 -0.119149 0.248979 -0.95933598 -0.12686799 0.252148 -0.90352899\n\t\t -0.34938699 0.24812301;\n\tsetAttr \".n[13944:14109]\" -type \"float3\"  -0.90352899 -0.34938699 0.24812301 -0.95933598\n\t\t -0.12686799 0.252148 -0.960751 -0.15006401 0.233321 -0.960751 -0.15006401 0.233321\n\t\t -0.92472798 -0.351336 0.146431 -0.90352899 -0.34938699 0.24812301 -0.92472798 -0.351336\n\t\t 0.146431 -0.960751 -0.15006401 0.233321 -0.97619802 -0.144719 0.16153499 -0.97619802\n\t\t -0.144719 0.16153499 -0.93250698 -0.35933101 0.036226001 -0.92472798 -0.351336 0.146431\n\t\t -0.91811699 -0.073857002 0.38936701 -0.882851 -0.086765997 0.461568 -0.83020699 -0.078892\n\t\t 0.551844 -0.83020699 -0.078892 0.551844 -0.861633 0.060764998 0.50388098 -0.91811699\n\t\t -0.073857002 0.38936701 -0.91811699 -0.073857002 0.38936701 -0.861633 0.060764998\n\t\t 0.50388098 -0.91742897 0.139685 0.37257501 -0.91742897 0.139685 0.37257501 -0.95060402\n\t\t -0.062289 0.30409101 -0.91811699 -0.073857002 0.38936701 -0.95060402 -0.062289 0.30409101\n\t\t -0.91742897 0.139685 0.37257501 -0.95220602 0.17078599 0.25325 -0.95220602 0.17078599\n\t\t 0.25325 -0.96717399 -0.053346999 0.248454 -0.95060402 -0.062289 0.30409101 -0.96717399\n\t\t -0.053346999 0.248454 -0.95220602 0.17078599 0.25325 -0.95604801 0.18509901 0.22739901\n\t\t -0.95604801 0.18509901 0.22739901 -0.96912903 -0.047244001 0.24198499 -0.96717399\n\t\t -0.053346999 0.248454 0.95975697 -0.24390601 -0.13919701 0.978643 -0.140691 -0.149877\n\t\t 0.99773997 -0.022737 -0.063235998 0.95975697 -0.24390601 -0.13919701 0.99773997 -0.022737\n\t\t -0.063235998 0.98656899 0.025971999 0.161264 0.95975697 -0.24390601 -0.13919701 0.98656899\n\t\t 0.025971999 0.161264 0.87746 -0.46618199 0.11286 0.95975697 -0.24390601 -0.13919701\n\t\t 0.87746 -0.46618199 0.11286 0.92536902 -0.371447 -0.075626001 0.74725902 -0.46511\n\t\t 0.47463301 0.87746 -0.46618199 0.11286 0.98656899 0.025971999 0.161264 0.98656899\n\t\t 0.025971999 0.161264 0.85923302 0.024843 0.51098001 0.74725902 -0.46511 0.47463301\n\t\t 0.85923302 0.024843 0.51098001 0.66845298 -0.1471 0.72906297 0.74725902 -0.46511\n\t\t 0.47463301 0.85923302 0.024843 0.51098001 0.73054099 -0.029541999 0.68222898 0.66845298\n\t\t -0.1471 0.72906297 0.66845298 -0.1471 0.72906297 0.66980398 -0.36342201 0.64752501\n\t\t 0.74725902 -0.46511 0.47463301 0.66845298 -0.1471 0.72906297 0.66232598 -0.237133\n\t\t 0.71069902 0.66980398 -0.36342201 0.64752501 0.63427401 0.164222 -0.75546497 0.57095098\n\t\t -0.24165 -0.78461498 0.56714499 -0.26976201 -0.77818698 0.56714499 -0.26976201 -0.77818698\n\t\t 0.64292401 0.192487 -0.74134898 0.63427401 0.164222 -0.75546497 0.95975697 -0.24390601\n\t\t -0.13919701 0.91543901 -0.27817801 -0.29084301 0.95872098 -0.055330999 -0.27891201\n\t\t 0.95872098 -0.055330999 -0.27891201 0.978643 -0.140691 -0.149877 0.95975697 -0.24390601\n\t\t -0.13919701 0.56714499 -0.26976201 -0.77818698 0.57095098 -0.24165 -0.78461498 0.454375\n\t\t -0.65711701 -0.60144901 0.87025303 -0.44002399 -0.22144701 0.91543901 -0.27817801\n\t\t -0.29084301 0.95975697 -0.24390601 -0.13919701 0.454375 -0.65711701 -0.60144901 0.46933201\n\t\t -0.62244999 -0.62632602 0.56714499 -0.26976201 -0.77818698 0.429746 -0.78493202 -0.446318\n\t\t 0.46933201 -0.62244999 -0.62632602 0.454375 -0.65711701 -0.60144901 0.454375 -0.65711701\n\t\t -0.60144901 0.43657601 -0.78367001 -0.44188601 0.429746 -0.78493202 -0.446318 0.78046399\n\t\t -0.62090999 0.073123999 0.87025303 -0.44002399 -0.22144701 0.92536902 -0.371447 -0.075626001\n\t\t 0.95975697 -0.24390601 -0.13919701 0.92536902 -0.371447 -0.075626001 0.87025303 -0.44002399\n\t\t -0.22144701 0.92536902 -0.371447 -0.075626001 0.87746 -0.46618199 0.11286 0.78046399\n\t\t -0.62090999 0.073123999 0.68943399 0.56024599 -0.459135 0.63427401 0.164222 -0.75546497\n\t\t 0.64292401 0.192487 -0.74134898 0.64292401 0.192487 -0.74134898 0.69673502 0.51969099\n\t\t -0.49445099 0.68943399 0.56024599 -0.459135 0.73161697 0.62116599 -0.28087199 0.68943399\n\t\t 0.56024599 -0.459135 0.69673502 0.51969099 -0.49445099 0.69673502 0.51969099 -0.49445099\n\t\t 0.73849899 0.613585 -0.279524 0.73161697 0.62116599 -0.28087199 0.98033899 0.089024998\n\t\t -0.17609601 0.96181601 0.23564 0.139229 0.98656899 0.025971999 0.161264 0.98656899\n\t\t 0.025971999 0.161264 0.99773997 -0.022737 -0.063235998 0.98033899 0.089024998 -0.17609601\n\t\t 0.65748101 0.714858 0.238113 0.65753901 0.71482402 0.238051 0.65747601 0.71485198\n\t\t 0.238142 0.65747601 0.71485198 0.238142 0.65740299 0.71490097 0.238198 0.65748101\n\t\t 0.714858 0.238113 0.237011 0.55416501 0.79795098 0.39708799 0.62125403 0.67554802\n\t\t 0.38838601 0.62805301 0.67431903 0.38838601 0.62805301 0.67431903 0.210676 0.52395898\n\t\t 0.82527697 0.237011 0.55416501 0.79795098 0.828897 0.232861 0.50863099 0.65380299\n\t\t 0.074496001 0.75298899 0.73054099 -0.029541999 0.68222898 0.73054099 -0.029541999\n\t\t 0.68222898 0.85923302 0.024843 0.51098001 0.828897 0.232861 0.50863099 0.96181601\n\t\t 0.23564 0.139229 0.828897 0.232861 0.50863099 0.85923302 0.024843 0.51098001 0.85923302\n\t\t 0.024843 0.51098001 0.98656899 0.025971999 0.161264 0.96181601 0.23564 0.139229 0.0049749999\n\t\t 0.17191499 0.98509902 0.237011 0.55416501 0.79795098 0.210676 0.52395898 0.82527697\n\t\t 0.210676 0.52395898 0.82527697 0.020143 0.198893 0.97981399 0.0049749999 0.17191499\n\t\t 0.98509902 -0.063357003 -0.229836 0.971165 0.0049749999 0.17191499 0.98509902 0.020143\n\t\t 0.198893 0.97981399 0.020143 0.198893 0.97981399 -0.059207998 -0.26097199 0.96352899\n\t\t -0.063357003 -0.229836 0.971165 0.57607901 -0.059909001 0.81519598 0.53732401 -0.27409399\n\t\t 0.797593 0.66232598 -0.237133 0.71069902 0.66232598 -0.237133 0.71069902 0.66845298\n\t\t -0.1471 0.72906297 0.57607901 -0.059909001 0.81519598 0.65380299 0.074496001 0.75298899\n\t\t 0.57607901 -0.059909001 0.81519598 0.66845298 -0.1471 0.72906297 0.66845298 -0.1471\n\t\t 0.72906297;\n\tsetAttr \".n[14110:14275]\" -type \"float3\"  0.73054099 -0.029541999 0.68222898 0.65380299\n\t\t 0.074496001 0.75298899 -0.038575999 -0.66580701 0.74512601 -0.063357003 -0.229836\n\t\t 0.971165 -0.059207998 -0.26097199 0.96352899 0.66232598 -0.237133 0.71069902 0.53732401\n\t\t -0.27409399 0.797593 0.54357803 -0.42977101 0.72098601 -0.059207998 -0.26097199 0.96352899\n\t\t -0.035645999 -0.62638003 0.77870202 -0.038575999 -0.66580701 0.74512601 0.040011\n\t\t -0.78510302 0.61807197 -0.038575999 -0.66580701 0.74512601 -0.035645999 -0.62638003\n\t\t 0.77870202 -0.035645999 -0.62638003 0.77870202 0.046236001 -0.78280997 0.62054098\n\t\t 0.040011 -0.78510302 0.61807197 0.54357803 -0.42977101 0.72098601 0.64755398 -0.623169\n\t\t 0.438559 0.74725902 -0.46511 0.47463301 0.74725902 -0.46511 0.47463301 0.66980398\n\t\t -0.36342201 0.64752501 0.54357803 -0.42977101 0.72098601 0.54357803 -0.42977101 0.72098601\n\t\t 0.66980398 -0.36342201 0.64752501 0.66232598 -0.237133 0.71069902 0.29661801 -0.949395\n\t\t 0.103278 0.29658401 -0.94941598 0.103185 0.29661599 -0.94938898 0.103338 0.29661599\n\t\t -0.94938898 0.103338 0.29664901 -0.94936597 0.103461 0.29661801 -0.949395 0.103278\n\t\t 0.95872098 -0.055330999 -0.27891201 0.98033899 0.089024998 -0.17609601 0.99773997\n\t\t -0.022737 -0.063235998 0.99773997 -0.022737 -0.063235998 0.978643 -0.140691 -0.149877\n\t\t 0.95872098 -0.055330999 -0.27891201 0.78046399 -0.62090999 0.073123999 0.87746 -0.46618199\n\t\t 0.11286 0.74725902 -0.46511 0.47463301 0.74725902 -0.46511 0.47463301 0.64755398\n\t\t -0.623169 0.438559 0.78046399 -0.62090999 0.073123999 -0.95975697 -0.243907 -0.13919701\n\t\t -0.92536902 -0.37144801 -0.075626001 -0.87746 -0.46618301 0.11286 -0.95975697 -0.243907\n\t\t -0.13919701 -0.87746 -0.46618301 0.11286 -0.98656899 0.025971999 0.161264 -0.95975697\n\t\t -0.243907 -0.13919701 -0.98656899 0.025971999 0.161264 -0.99773997 -0.022737 -0.063235998\n\t\t -0.97864801 -0.140692 -0.149848 -0.95975697 -0.243907 -0.13919701 -0.99773997 -0.022737\n\t\t -0.063235998 -0.98656899 0.025971999 0.161264 -0.87746 -0.46618301 0.11286 -0.74725902\n\t\t -0.46511099 0.47463199 -0.74725902 -0.46511099 0.47463199 -0.85923302 0.024842 0.51098001\n\t\t -0.98656899 0.025971999 0.161264 -0.85923302 0.024842 0.51098001 -0.74725902 -0.46511099\n\t\t 0.47463199 -0.66845 -0.14713 0.72905999 -0.74725902 -0.46511099 0.47463199 -0.66981101\n\t\t -0.36339599 0.64753199 -0.66845 -0.14713 0.72905999 -0.66981101 -0.36339599 0.64753199\n\t\t -0.66232598 -0.23713399 0.71069902 -0.66845 -0.14713 0.72905999 -0.73054099 -0.029542999\n\t\t 0.68222898 -0.85923302 0.024842 0.51098001 -0.66845 -0.14713 0.72905999 -0.63428903\n\t\t 0.164226 -0.75545198 -0.64292401 0.192486 -0.74134898 -0.565826 -0.26814201 -0.77970499\n\t\t -0.565826 -0.26814201 -0.77970499 -0.57254398 -0.240127 -0.783921 -0.63428903 0.164226\n\t\t -0.75545198 -0.95872098 -0.055330999 -0.27891201 -0.91543299 -0.27818599 -0.290851\n\t\t -0.95975697 -0.243907 -0.13919701 -0.95975697 -0.243907 -0.13919701 -0.97864801 -0.140692\n\t\t -0.149848 -0.95872098 -0.055330999 -0.27891201 -0.57254398 -0.240127 -0.783921 -0.565826\n\t\t -0.26814201 -0.77970499 -0.46710199 -0.623882 -0.62656701 -0.46710199 -0.623882 -0.62656701\n\t\t -0.45516899 -0.65815598 -0.59970999 -0.57254398 -0.240127 -0.783921 -0.95975697 -0.243907\n\t\t -0.13919701 -0.91543299 -0.27818599 -0.290851 -0.87025303 -0.440025 -0.22144701 -0.45516899\n\t\t -0.65815598 -0.59970999 -0.46710199 -0.623882 -0.62656701 -0.429746 -0.78493297 -0.446318\n\t\t -0.429746 -0.78493297 -0.446318 -0.43657601 -0.78367001 -0.44188601 -0.45516899 -0.65815598\n\t\t -0.59970999 -0.92536902 -0.37144801 -0.075626001 -0.87025303 -0.440025 -0.22144701\n\t\t -0.78046298 -0.62090999 0.073123999 -0.87025303 -0.440025 -0.22144701 -0.92536902\n\t\t -0.37144801 -0.075626001 -0.95975697 -0.243907 -0.13919701 -0.78046298 -0.62090999\n\t\t 0.073123999 -0.87746 -0.46618301 0.11286 -0.92536902 -0.37144801 -0.075626001 -0.64292401\n\t\t 0.192486 -0.74134898 -0.63428903 0.164226 -0.75545198 -0.68942302 0.56026602 -0.45912701\n\t\t -0.68942302 0.56026602 -0.45912701 -0.69673598 0.51968998 -0.49445099 -0.64292401\n\t\t 0.192486 -0.74134898 -0.69673598 0.51968998 -0.49445099 -0.68942302 0.56026602 -0.45912701\n\t\t -0.73161697 0.62116599 -0.28087199 -0.73161697 0.62116599 -0.28087199 -0.73851299\n\t\t 0.61356503 -0.27952901 -0.69673598 0.51968998 -0.49445099 -0.98656899 0.025971999\n\t\t 0.161264 -0.96181601 0.23563901 0.139229 -0.98034197 0.088993996 -0.17609701 -0.98034197\n\t\t 0.088993996 -0.17609701 -0.99773997 -0.022737 -0.063235998 -0.98656899 0.025971999\n\t\t 0.161264 -0.65744501 0.714881 0.238141 -0.65754002 0.71482402 0.238051 -0.65748101\n\t\t 0.71485698 0.238113 -0.65748101 0.71485698 0.238113 -0.657386 0.71491498 0.238203\n\t\t -0.65744501 0.714881 0.238141 -0.38838601 0.628052 0.67431903 -0.397089 0.62125403\n\t\t 0.67554802 -0.23701701 0.55417901 0.79794002 -0.23701701 0.55417901 0.79794002 -0.210676\n\t\t 0.52395898 0.82527697 -0.38838601 0.628052 0.67431903 -0.73054099 -0.029542999 0.68222898\n\t\t -0.65380102 0.074525997 0.75298703 -0.82889801 0.23286 0.50863099 -0.82889801 0.23286\n\t\t 0.50863099 -0.85923302 0.024842 0.51098001 -0.73054099 -0.029542999 0.68222898 -0.96181601\n\t\t 0.23563901 0.139229 -0.98656899 0.025971999 0.161264 -0.85923302 0.024842 0.51098001\n\t\t -0.85923302 0.024842 0.51098001 -0.82889801 0.23286 0.50863099 -0.96181601 0.23563901\n\t\t 0.139229 -0.210676 0.52395898 0.82527697 -0.23701701 0.55417901 0.79794002 -0.0049749999\n\t\t 0.17191499 0.98509902 -0.0049749999 0.17191499 0.98509902 -0.020112 0.198893 0.97981501\n\t\t -0.210676 0.52395898 0.82527697 -0.020112 0.198893 0.97981501 -0.0049749999 0.17191499\n\t\t 0.98509902 0.063357003 -0.229836 0.971165 0.063357003 -0.229836 0.971165 0.059207998\n\t\t -0.26097199 0.96352899 -0.020112 0.198893 0.97981501 -0.66232598 -0.23713399 0.71069902\n\t\t -0.53732401 -0.274095 0.797593;\n\tsetAttr \".n[14276:14441]\" -type \"float3\"  -0.57607901 -0.059909001 0.81519598 -0.57607901\n\t\t -0.059909001 0.81519598 -0.66845 -0.14713 0.72905999 -0.66232598 -0.23713399 0.71069902\n\t\t -0.65380102 0.074525997 0.75298703 -0.73054099 -0.029542999 0.68222898 -0.66845 -0.14713\n\t\t 0.72905999 -0.66845 -0.14713 0.72905999 -0.57607901 -0.059909001 0.81519598 -0.65380102\n\t\t 0.074525997 0.75298703 0.059207998 -0.26097199 0.96352899 0.063357003 -0.229836 0.971165\n\t\t 0.038575999 -0.66580701 0.74512601 -0.54357702 -0.42977101 0.72098601 -0.53732401\n\t\t -0.274095 0.797593 -0.66232598 -0.23713399 0.71069902 0.038575999 -0.66580701 0.74512601\n\t\t 0.035647001 -0.62638003 0.77870202 0.059207998 -0.26097199 0.96352899 0.035647001\n\t\t -0.62638003 0.77870202 0.038575999 -0.66580701 0.74512601 -0.040010002 -0.78510302\n\t\t 0.61807197 -0.040010002 -0.78510302 0.61807197 -0.046236001 -0.78280997 0.62054098\n\t\t 0.035647001 -0.62638003 0.77870202 -0.74725902 -0.46511099 0.47463199 -0.64755398\n\t\t -0.623169 0.438559 -0.54357702 -0.42977101 0.72098601 -0.54357702 -0.42977101 0.72098601\n\t\t -0.66981101 -0.36339599 0.64753199 -0.74725902 -0.46511099 0.47463199 -0.66232598\n\t\t -0.23713399 0.71069902 -0.66981101 -0.36339599 0.64753199 -0.54357702 -0.42977101\n\t\t 0.72098601 -0.296615 -0.94938999 0.103338 -0.29658401 -0.94941598 0.103185 -0.296617\n\t\t -0.94939601 0.103278 -0.296617 -0.94939601 0.103278 -0.29664901 -0.94936901 0.103431\n\t\t -0.296615 -0.94938999 0.103338 -0.95872098 -0.055330999 -0.27891201 -0.97864801 -0.140692\n\t\t -0.149848 -0.99773997 -0.022737 -0.063235998 -0.99773997 -0.022737 -0.063235998 -0.98034197\n\t\t 0.088993996 -0.17609701 -0.95872098 -0.055330999 -0.27891201 -0.78046298 -0.62090999\n\t\t 0.073123999 -0.64755398 -0.623169 0.438559 -0.74725902 -0.46511099 0.47463199 -0.74725902\n\t\t -0.46511099 0.47463199 -0.87746 -0.46618301 0.11286 -0.78046298 -0.62090999 0.073123999\n\t\t 0.97021198 -0.040346 -0.238875 0.89674699 -0.118933 -0.42626199 0.859945 0.030245\n\t\t -0.50949103 0.859945 0.030245 -0.50949103 0.97300702 0.021454999 -0.22977801 0.97021198\n\t\t -0.040346 -0.238875 0.96672302 0.049655002 -0.25095901 0.97300702 0.021454999 -0.22977801\n\t\t 0.859945 0.030245 -0.50949103 0.859945 0.030245 -0.50949103 0.86901098 0.259141 -0.42150399\n\t\t 0.96672302 0.049655002 -0.25095901 0.51202601 0.59998399 -0.614694 0.54578501 0.57557303\n\t\t -0.608962 0.37908101 0.666574 -0.64185399 0.37908101 0.666574 -0.64185399 0.42568499\n\t\t 0.64087802 -0.63880199 0.51202601 0.59998399 -0.614694 0.42568499 0.64087802 -0.63880199\n\t\t 0.37908101 0.666574 -0.64185399 0.109868 0.74521202 -0.65771401 0.109868 0.74521202\n\t\t -0.65771401 0.25620699 0.69464397 -0.67218202 0.42568499 0.64087802 -0.63880199 0.25620699\n\t\t 0.69464397 -0.67218202 0.109868 0.74521202 -0.65771401 0.012299 0.740596 -0.67183799\n\t\t 0.012299 0.740596 -0.67183799 0.098272003 0.72208399 -0.68479002 0.25620699 0.69464397\n\t\t -0.67218202 0 0.731704 -0.68162203 0.098272003 0.72208399 -0.68479002 0.012299 0.740596\n\t\t -0.67183799 0.012299 0.740596 -0.67183799 0 0.73026001 -0.68316901 0 0.731704 -0.68162203\n\t\t 0.140172 -0.28196201 -0.94913101 0.223068 -0.093176 -0.97034001 0.41859701 -0.097142003\n\t\t -0.90296203 0.41859701 -0.097142003 -0.90296203 0.16623899 -0.239455 -0.95657003\n\t\t 0.140172 -0.28196201 -0.94913101 0.223068 -0.093176 -0.97034001 0.140172 -0.28196201\n\t\t -0.94913101 0.042390998 -0.26997301 -0.96193397 0.042390998 -0.26997301 -0.96193397\n\t\t 0.053346999 -0.114323 -0.99201 0.223068 -0.093176 -0.97034001 0.24018499 0.070591003\n\t\t -0.96815699 0.223068 -0.093176 -0.97034001 0.053346999 -0.114323 -0.99201 0.053346999\n\t\t -0.114323 -0.99201 0.069035001 0.0069579999 -0.99759001 0.24018499 0.070591003 -0.96815699\n\t\t 0.223068 -0.093176 -0.97034001 0.24018499 0.070591003 -0.96815699 0.48428401 0.013215\n\t\t -0.87481099 0.48428401 0.013215 -0.87481099 0.41859701 -0.097142003 -0.90296203 0.223068\n\t\t -0.093176 -0.97034001 0.140172 -0.28196201 -0.94913101 0.16623899 -0.239455 -0.95657003\n\t\t 0.136482 -0.27351299 -0.95213598 0.136482 -0.27351299 -0.95213598 0.133948 -0.273938\n\t\t -0.95237398 0.140172 -0.28196201 -0.94913101 0.065830998 -0.272295 -0.95995897 0.042390998\n\t\t -0.26997301 -0.96193397 0.140172 -0.28196201 -0.94913101 0.140172 -0.28196201 -0.94913101\n\t\t 0.133948 -0.273938 -0.95237398 0.065830998 -0.272295 -0.95995897 0.41859701 -0.097142003\n\t\t -0.90296203 0.48428401 0.013215 -0.87481099 0.859945 0.030245 -0.50949103 0.859945\n\t\t 0.030245 -0.50949103 0.79940999 -0.105137 -0.591515 0.41859701 -0.097142003 -0.90296203\n\t\t 0.79940999 -0.105137 -0.591515 0.859945 0.030245 -0.50949103 0.89674699 -0.118933\n\t\t -0.42626199 0.89674699 -0.118933 -0.42626199 0.777255 -0.171028 -0.60549498 0.79940999\n\t\t -0.105137 -0.591515 0 -0.26527601 -0.96417302 0.042390998 -0.26997301 -0.96193397\n\t\t 0.065830998 -0.272295 -0.95995897 0.065830998 -0.272295 -0.95995897 0 -0.270006 -0.96285897\n\t\t 0 -0.26527601 -0.96417302 0 0.0069889999 -0.99997598 0.069035001 0.0069579999 -0.99759001\n\t\t 0.053346999 -0.114323 -0.99201 0.053346999 -0.114323 -0.99201 0 -0.127937 -0.99178201\n\t\t 0 0.0069889999 -0.99997598 0 -0.127937 -0.99178201 0.053346999 -0.114323 -0.99201\n\t\t 0.042390998 -0.26997301 -0.96193397 0.042390998 -0.26997301 -0.96193397 0 -0.26527601\n\t\t -0.96417302 0 -0.127937 -0.99178201 0 -0.26527601 -0.96417302 0 -0.270006 -0.96285897\n\t\t 0 -0.270006 -0.96285897 0 -0.270006 -0.96285897 0 -0.26527601 -0.96417302 0 -0.26527601\n\t\t -0.96417302 0 -0.127937 -0.99178201 0 -0.26527601 -0.96417302 0 -0.26527601 -0.96417302\n\t\t 0 0.0069889999 -0.99997598 0 -0.127937 -0.99178201 0 -0.127937 -0.99178201;\n\tsetAttr \".n[14442:14607]\" -type \"float3\"  0 -0.26527601 -0.96417302 0 -0.127937\n\t\t -0.99178201 0 -0.127937 -0.99178201 0 -0.127937 -0.99178201 0 0.0069889999 -0.99997598\n\t\t 0 0.0069889999 -0.99997598 0 -0.98261702 0.185646 0 -0.98261702 0.185646 0 -0.99564701\n\t\t 0.093204997 0 -0.99564701 0.093204997 0 -0.99216402 0.124944 0 -0.98261702 0.185646\n\t\t 0 -0.99564701 0.093204997 0 -0.98261702 0.185646 0 -0.98261702 0.185646 0 -0.98261702\n\t\t 0.185646 0 -0.99564397 0.093235001 0 -0.99564701 0.093204997 0 -0.99564397 0.093235001\n\t\t 0 -0.98261702 0.185646 0 -0.98261702 0.185646 0 -0.98261702 0.185646 0 -0.99564397\n\t\t 0.093235001 0 -0.99564397 0.093235001 0 -0.99564397 0.093235001 0 -0.98261702 0.185646\n\t\t 0 -0.62811702 0.77811903 0 -0.62811702 0.77811903 0 -0.99564397 0.093235001 0 -0.99564397\n\t\t 0.093235001 0 -0.99564397 0.093235001 0 -0.99564397 0.093235001 0 -1 0 0 -1 0 0 -1\n\t\t 0 0 -0.99564397 0.093235001 0 -0.99564397 0.093235001 0 -0.99564397 0.093235001 0\n\t\t -1 0 0 -1 0 0 -1 0 0 -0.99564397 0.093235001 0 -1 0 0 -0.99564701 0.093204997 0 -0.99564397\n\t\t 0.093235001 0 -0.99564397 0.093235001 0 -1 0 0 -1 0 0 -1 0 0 -0.99216402 0.124944\n\t\t 0 -0.99564701 0.093204997 0 -0.99564701 0.093204997 0 -1 0 0 -1 0 0 -0.62811702 0.77811903\n\t\t 0 0.025788 0.99966699 0 0.025788 0.99966699 0 0.025788 0.99966699 0 0.025788 0.99966699\n\t\t 0 -0.62811702 0.77811903 0.98772401 -0.154274 0.024506999 0.98614401 -0.16123401\n\t\t 0.039034002 0.98655301 -0.159766 0.034456 0.98655301 -0.159766 0.034456 0.98795599\n\t\t -0.154578 0.0069579999 0.98772401 -0.154274 0.024506999 0.99421602 -0.104314 0.025544001\n\t\t 0.98655301 -0.159766 0.034456 0.98614401 -0.16123401 0.039034002 0.98614401 -0.16123401\n\t\t 0.039034002 0.993361 -0.111211 0.02942 0.99421602 -0.104314 0.025544001 0.998348\n\t\t -0.049837999 0.028596999 0.99421602 -0.104314 0.025544001 0.993361 -0.111211 0.02942\n\t\t 0.993361 -0.111211 0.02942 0.99804598 -0.051516 0.035372 0.998348 -0.049837999 0.028596999\n\t\t 0.998348 -0.049837999 0.028596999 0.99804598 -0.051516 0.035372 0.99771398 -0.015045\n\t\t -0.065889999 0.99771398 -0.015045 -0.065889999 0.996979 -0.014405 -0.076329 0.998348\n\t\t -0.049837999 0.028596999 0.996979 -0.014405 -0.076329 0.99771398 -0.015045 -0.065889999\n\t\t 0.99830002 -0.024873 -0.052705999 0.99830002 -0.024873 -0.052705999 0.998546 -0.027314\n\t\t -0.04648 0.996979 -0.014405 -0.076329 0.99339801 -0.101628 0.053224999 0.998546 -0.027314\n\t\t -0.04648 0.99830002 -0.024873 -0.052705999 0.99830002 -0.024873 -0.052705999 0.99735999\n\t\t -0.072573997 -0.002625 0.99339801 -0.101628 0.053224999 0.998079 -0.054965001 -0.028596999\n\t\t 0.99339801 -0.101628 0.053224999 0.99735999 -0.072573997 -0.002625 0.99735999 -0.072573997\n\t\t -0.002625 0.998716 -0.047183 -0.018433999 0.998079 -0.054965001 -0.028596999 0.99666798\n\t\t -0.031525999 0.075230002 0.998079 -0.054965001 -0.028596999 0.998716 -0.047183 -0.018433999\n\t\t 0.998716 -0.047183 -0.018433999 0.994986 -0.046815999 0.088384002 0.99666798 -0.031525999\n\t\t 0.075230002 0.98456103 -0.162608 0.064792998 0.99666798 -0.031525999 0.075230002\n\t\t 0.994986 -0.046815999 0.088384002 0.994986 -0.046815999 0.088384002 0.98451501 -0.159889\n\t\t 0.071872003 0.98456103 -0.162608 0.064792998 0.985309 -0.170296 -0.012849 0.98456103\n\t\t -0.162608 0.064792998 0.98451501 -0.159889 0.071872003 0.98451501 -0.159889 0.071872003\n\t\t 0.98803598 -0.153909 0.0098580001 0.985309 -0.170296 -0.012849 0.98795599 -0.154578\n\t\t 0.0069579999 0.985309 -0.170296 -0.012849 0.98803598 -0.153909 0.0098580001 0.98803598\n\t\t -0.153909 0.0098580001 0.98772401 -0.154274 0.024506999 0.98795599 -0.154578 0.0069579999\n\t\t 0.063541003 -0.95536202 -0.28852499 0.052492999 -0.88722599 -0.45833901 0.055117\n\t\t -0.88782501 -0.45686799 0.055117 -0.88782501 -0.45686799 0.064121999 -0.94982499\n\t\t -0.30614001 0.063541003 -0.95536202 -0.28852499 0.054843001 -0.53139699 -0.84534597\n\t\t 0.059238002 -0.533871 -0.84348798 0.057223 -0.53274101 -0.84434098 0.057223 -0.53274101\n\t\t -0.84434098 0.052891001 -0.53030801 -0.84615397 0.054843001 -0.53139699 -0.84534597\n\t\t 0.070560999 -0.99737298 0.016388999 0.063541003 -0.95536202 -0.28852499 0.064121999\n\t\t -0.94982499 -0.30614001 0.064121999 -0.94982499 -0.30614001 0.067507997 -0.99771601\n\t\t 0.002472 0.070560999 -0.99737298 0.016388999 0.064365 -0.98692 0.14780299 0.070560999\n\t\t -0.99737298 0.016388999 0.067507997 -0.99771601 0.002472 0.067507997 -0.99771601\n\t\t 0.002472 0.060275 -0.98743701 0.146063 0.064365 -0.98692 0.14780299 0.075687997 0.34261\n\t\t -0.93642402 0.082218997 0.36873299 -0.925892 0.082889996 0.36766499 -0.92625701 0.082889996\n\t\t 0.36766499 -0.92625701 0.075381003 0.34263501 -0.93643999 0.075687997 0.34261 -0.93642402\n\t\t 0.058628 0.39727101 -0.91582698 0.082889996 0.36766499 -0.92625701 0.082218997 0.36873299\n\t\t -0.925892 0.082218997 0.36873299 -0.925892 0.057223 0.39744699 -0.91583902 0.058628\n\t\t 0.39727101 -0.91582698 0.11759 0.99275798 0.024568001 0.165628 0.97789901 0.127601\n\t\t 0.161478 0.97842002 0.128914 0.161478 0.97842002 0.128914;\n\tsetAttr \".n[14608:14773]\" -type \"float3\"  0.111548 0.993406 0.026490999 0.11759\n\t\t 0.99275798 0.024568001 0.173777 0.954373 0.242843 0.161478 0.97842002 0.128914 0.165628\n\t\t 0.97789901 0.127601 0.165628 0.97789901 0.127601 0.175484 0.95475698 0.24009299 0.173777\n\t\t 0.954373 0.242843 0.118812 0.036501002 0.99224597 0.103186 0.037508 0.99395502 0.103887\n\t\t 0.037447002 0.99388403 0.103887 0.037447002 0.99388403 0.11991 0.03644 0.99211597\n\t\t 0.118812 0.036501002 0.99224597 0.101814 -0.68293798 0.72334599 0.088353001 -0.64206201\n\t\t 0.761545 0.090640999 -0.63650101 0.76593101 0.090640999 -0.63650101 0.76593101 0.103612\n\t\t -0.68258703 0.72342199 0.101814 -0.68293798 0.72334599 0.075047001 -0.59512401 0.80012202\n\t\t 0.090640999 -0.63650101 0.76593101 0.088353001 -0.64206201 0.761545 0.088353001 -0.64206201\n\t\t 0.761545 0.072911002 -0.59555203 0.80000103 0.075047001 -0.59512401 0.80012202 0.144141\n\t\t 0.93586802 0.32151899 0.147012 0.91811699 0.36803401 0.14869 0.86873102 0.47243801\n\t\t 0.14869 0.86873102 0.47243801 0.13608301 0.883578 0.44807601 0.144141 0.93586802\n\t\t 0.32151899 0.138558 0.98119998 0.13434599 0.147012 0.91811699 0.36803401 0.144141\n\t\t 0.93586802 0.32151899 0.144141 0.93586802 0.32151899 0.144142 0.98360199 0.108404\n\t\t 0.138558 0.98119998 0.13434599 0.13642199 0.990632 -0.0060430001 0.138558 0.98119998\n\t\t 0.13434599 0.144142 0.98360199 0.108404 0.144142 0.98360199 0.108404 0.139443 0.99017\n\t\t -0.010926 0.13642199 0.990632 -0.0060430001 0.13642199 0.990632 -0.0060430001 0.139443\n\t\t 0.99017 -0.010926 0.13587201 0.98956299 -0.048007 0.13587201 0.98956299 -0.048007\n\t\t 0.13355 0.989694 -0.051667999 0.13642199 0.990632 -0.0060430001 0.060029998 0.62786502\n\t\t -0.77600402 0.053835001 0.63710999 -0.76889002 0.055087 0.63684398 -0.76902199 0.055087\n\t\t 0.63684398 -0.76902199 0.060396999 0.62609297 -0.77740598 0.060029998 0.62786502\n\t\t -0.77600402 0.058749001 0.61855602 -0.78354102 0.060029998 0.62786502 -0.77600402\n\t\t 0.060396999 0.62609297 -0.77740598 0.060396999 0.62609297 -0.77740598 0.058626998\n\t\t 0.61859399 -0.78351998 0.058749001 0.61855602 -0.78354102 -0.038454 -0.97400999 -0.223215\n\t\t -0.031129001 -0.998447 -0.046204999 -0.033204999 -0.99831498 -0.047579002 -0.033204999\n\t\t -0.99831498 -0.047579002 -0.040254001 -0.97191 -0.231884 -0.038454 -0.97400999 -0.223215\n\t\t -0.041903 -0.91662401 -0.39754799 -0.038454 -0.97400999 -0.223215 -0.040254001 -0.97191\n\t\t -0.231884 -0.040254001 -0.97191 -0.231884 -0.043154001 -0.91413999 -0.403097 -0.041903\n\t\t -0.91662401 -0.39754799 0.076297 -0.38908499 0.918037 0.083471 -0.38326401 0.91985899\n\t\t 0.082951002 -0.38304499 0.91999799 0.082951002 -0.38304499 0.91999799 0.075414002\n\t\t -0.38921401 0.918055 0.076297 -0.38908499 0.918037 0.082951002 -0.38304499 0.91999799\n\t\t 0.083471 -0.38326401 0.91985899 0.081334002 -0.377767 0.92232102 0.081334002 -0.377767\n\t\t 0.92232102 0.081028 -0.37770301 0.92237502 0.082951002 -0.38304499 0.91999799 -0.017457001\n\t\t -0.032715999 -0.99931198 -0.017852999 -0.032715999 -0.99930501 -0.014649 -0.032655999\n\t\t -0.99935901 -0.014649 -0.032655999 -0.99935901 -0.014283 -0.032655001 -0.99936497\n\t\t -0.017457001 -0.032715999 -0.99931198 0.91627002 -0.39976701 -0.025209 0.91627002\n\t\t -0.39976701 -0.025209 0.91627002 -0.39976701 -0.025209 0.99610502 0.082493 -0.031129001\n\t\t 0.99809998 -0.038545001 0.048067998 0.98684299 -0.10053 0.126625 0.99809998 -0.038545001\n\t\t 0.048067998 0.98957902 -0.143988 -0.00064099999 0.98684299 -0.10053 0.126625 0.99809998\n\t\t -0.038545001 0.048067998 0.995359 -0.078587003 0.055544998 0.98957902 -0.143988 -0.00064099999\n\t\t 0.99809998 -0.038545001 0.048067998 0.98348099 -0.17978799 0.020997001 0.995359 -0.078587003\n\t\t 0.055544998 0.171793 0.36855099 -0.91359597 0.171793 0.36855099 -0.91359597 0.171793\n\t\t 0.36855099 -0.91359597 0.98957902 -0.143988 -0.00064099999 0.98271197 -0.166572 -0.080813996\n\t\t 0.98684299 -0.10053 0.126625 0.98271197 -0.166572 -0.080813996 0.98231 -0.166785\n\t\t -0.085147999 0.98684299 -0.10053 0.126625 0.99610502 0.082493 -0.031129001 0.98684299\n\t\t -0.10053 0.126625 0.99237698 -0.036988001 0.117558 -0.97021198 -0.040346999 -0.238875\n\t\t -0.97300702 0.021454999 -0.22977801 -0.859945 0.030244 -0.50949103 -0.859945 0.030244\n\t\t -0.50949103 -0.89674699 -0.118934 -0.42626199 -0.97021198 -0.040346999 -0.238875\n\t\t -0.859945 0.030244 -0.50949103 -0.97300702 0.021454999 -0.22977801 -0.96672302 0.049654\n\t\t -0.25095901 -0.96672302 0.049654 -0.25095901 -0.86901098 0.25914001 -0.42150399 -0.859945\n\t\t 0.030244 -0.50949103 -0.37908199 0.666574 -0.64185399 -0.54578602 0.57557303 -0.608962\n\t\t -0.51202601 0.59998298 -0.614694 -0.51202601 0.59998298 -0.614694 -0.42568499 0.64087701\n\t\t -0.63880199 -0.37908199 0.666574 -0.64185399 -0.109868 0.74521202 -0.65771401 -0.37908199\n\t\t 0.666574 -0.64185399 -0.42568499 0.64087701 -0.63880199 -0.42568499 0.64087701 -0.63880199\n\t\t -0.25620699 0.69464397 -0.67218202 -0.109868 0.74521202 -0.65771401 -0.012299 0.740596\n\t\t -0.67183799 -0.109868 0.74521202 -0.65771401 -0.25620699 0.69464397 -0.67218202 -0.25620699\n\t\t 0.69464397 -0.67218202 -0.098272003 0.72208399 -0.68479002 -0.012299 0.740596 -0.67183799\n\t\t -0.012299 0.740596 -0.67183799 -0.098272003 0.72208399 -0.68479002 0 0.731704 -0.68162203\n\t\t 0 0.731704 -0.68162203 0 0.73026001 -0.68316901 -0.012299 0.740596 -0.67183799 -0.140172\n\t\t -0.28196201 -0.94913101 -0.16623899 -0.239455 -0.95657003 -0.41859701 -0.097142003\n\t\t -0.90296203 -0.41859701 -0.097142003 -0.90296203 -0.223068 -0.093176 -0.97034001\n\t\t -0.140172 -0.28196201 -0.94913101 -0.042390998 -0.26997301 -0.96193397 -0.140172\n\t\t -0.28196201 -0.94913101 -0.223068 -0.093176 -0.97034001 -0.223068 -0.093176 -0.97034001\n\t\t -0.053346999 -0.114323 -0.99201;\n\tsetAttr \".n[14774:14939]\" -type \"float3\"  -0.042390998 -0.26997301 -0.96193397\n\t\t -0.053346999 -0.114323 -0.99201 -0.223068 -0.093176 -0.97034001 -0.24018499 0.070591003\n\t\t -0.96815699 -0.24018499 0.070591003 -0.96815699 -0.069064997 0.0069579999 -0.99758798\n\t\t -0.053346999 -0.114323 -0.99201 -0.223068 -0.093176 -0.97034001 -0.41859701 -0.097142003\n\t\t -0.90296203 -0.48428401 0.013215 -0.87481099 -0.48428401 0.013215 -0.87481099 -0.24018499\n\t\t 0.070591003 -0.96815699 -0.223068 -0.093176 -0.97034001 -0.136482 -0.27351299 -0.95213598\n\t\t -0.16623899 -0.239455 -0.95657003 -0.140172 -0.28196201 -0.94913101 -0.140172 -0.28196201\n\t\t -0.94913101 -0.133948 -0.273938 -0.95237398 -0.136482 -0.27351299 -0.95213598 -0.06583\n\t\t -0.272295 -0.95995897 -0.133948 -0.273938 -0.95237398 -0.140172 -0.28196201 -0.94913101\n\t\t -0.140172 -0.28196201 -0.94913101 -0.042390998 -0.26997301 -0.96193397 -0.06583 -0.272295\n\t\t -0.95995897 -0.41859701 -0.097142003 -0.90296203 -0.79941201 -0.105107 -0.59151697\n\t\t -0.859945 0.030244 -0.50949103 -0.859945 0.030244 -0.50949103 -0.48428401 0.013215\n\t\t -0.87481099 -0.41859701 -0.097142003 -0.90296203 -0.79941201 -0.105107 -0.59151697\n\t\t -0.777255 -0.171028 -0.60549498 -0.89674699 -0.118934 -0.42626199 -0.89674699 -0.118934\n\t\t -0.42626199 -0.859945 0.030244 -0.50949103 -0.79941201 -0.105107 -0.59151697 -0.06583\n\t\t -0.272295 -0.95995897 -0.042390998 -0.26997301 -0.96193397 0 -0.26527601 -0.96417302\n\t\t 0 -0.26527601 -0.96417302 0 -0.270006 -0.96285897 -0.06583 -0.272295 -0.95995897\n\t\t -0.053346999 -0.114323 -0.99201 -0.069064997 0.0069579999 -0.99758798 0 0.0069889999\n\t\t -0.99997598 0 0.0069889999 -0.99997598 0 -0.127937 -0.99178201 -0.053346999 -0.114323\n\t\t -0.99201 0 -0.127937 -0.99178201 0 -0.26527601 -0.96417302 -0.042390998 -0.26997301\n\t\t -0.96193397 -0.042390998 -0.26997301 -0.96193397 -0.053346999 -0.114323 -0.99201\n\t\t 0 -0.127937 -0.99178201 0 -0.270006 -0.96285897 0 -0.270006 -0.96285897 0 -0.26527601\n\t\t -0.96417302 0 -0.26527601 -0.96417302 0 -0.26527601 -0.96417302 0 -0.270006 -0.96285897\n\t\t 0 -0.26527601 -0.96417302 0 -0.26527601 -0.96417302 0 -0.127937 -0.99178201 0 -0.127937\n\t\t -0.99178201 0 -0.127937 -0.99178201 0 0.0069889999 -0.99997598 0 -0.127937 -0.99178201\n\t\t 0 -0.127937 -0.99178201 0 -0.26527601 -0.96417302 0 0.0069889999 -0.99997598 0 0.0069889999\n\t\t -0.99997598 0 -0.127937 -0.99178201 0 -0.98261702 0.185646 0 -0.99216402 0.124944\n\t\t 0 -0.99564397 0.093235001 0 -0.99564397 0.093235001 0 -0.98261702 0.185646 0 -0.98261702\n\t\t 0.185646 0 -0.98261702 0.185646 0 -0.98261702 0.185646 0 -0.99564397 0.093235001\n\t\t 0 -0.99564397 0.093235001 0 -0.99564397 0.093235001 0 -0.98261702 0.185646 0 -0.98261702\n\t\t 0.185646 0 -0.98261702 0.185646 0 -0.99564397 0.093235001 0 -0.99564397 0.093235001\n\t\t 0 -0.99564397 0.093235001 0 -0.98261702 0.185646 0 -0.62811702 0.77811903 0 -0.98261702\n\t\t 0.185646 0 -0.99564397 0.093235001 0 -0.99564397 0.093235001 0 -0.99564397 0.093235001\n\t\t 0 -0.62811702 0.77811903 0 -1 0 0 -0.99564397 0.093235001 0 -0.99564397 0.093235001\n\t\t 0 -0.99564397 0.093235001 0 -1 0 0 -1 0 0 -1 0 0 -0.99564397 0.093235001 0 -0.99564397\n\t\t 0.093235001 0 -0.99564397 0.093235001 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.99564397 0.093235001\n\t\t 0 -0.99564397 0.093235001 0 -0.99564397 0.093235001 0 -1 0 0 -1 0 0 -1 0 0 -0.99564397\n\t\t 0.093235001 0 -0.99564397 0.093235001 0 -0.99216402 0.124944 0 -1 0 0 -0.62811702\n\t\t 0.77811903 0 0.025788 0.99966699 0 0.025788 0.99966699 0 0.025788 0.99966699 0 0.025788\n\t\t 0.99966699 0 -0.62811702 0.77811903 -0.98655301 -0.159767 0.034456 -0.98614901 -0.16120499\n\t\t 0.039035 -0.98772401 -0.154275 0.024506999 -0.98772401 -0.154275 0.024506999 -0.98795599\n\t\t -0.154578 0.0069579999 -0.98655301 -0.159767 0.034456 -0.98614901 -0.16120499 0.039035\n\t\t -0.98655301 -0.159767 0.034456 -0.99421602 -0.104314 0.025544001 -0.99421602 -0.104314\n\t\t 0.025544001 -0.993361 -0.111211 0.02942 -0.98614901 -0.16120499 0.039035 -0.993361\n\t\t -0.111211 0.02942 -0.99421602 -0.104314 0.025544001 -0.998348 -0.049837999 0.028596999\n\t\t -0.998348 -0.049837999 0.028596999 -0.99804598 -0.051516999 0.035372 -0.993361 -0.111211\n\t\t 0.02942 -0.99771398 -0.015046 -0.065889999 -0.99804598 -0.051516999 0.035372 -0.998348\n\t\t -0.049837999 0.028596999 -0.998348 -0.049837999 0.028596999 -0.996979 -0.014405 -0.076329\n\t\t -0.99771398 -0.015046 -0.065889999 -0.99830002 -0.024873 -0.052705999 -0.99771398\n\t\t -0.015046 -0.065889999 -0.996979 -0.014405 -0.076329 -0.996979 -0.014405 -0.076329\n\t\t -0.998546 -0.027315 -0.04648 -0.99830002 -0.024873 -0.052705999 -0.99830002 -0.024873\n\t\t -0.052705999 -0.998546 -0.027315 -0.04648 -0.99339801 -0.101629 0.053224999 -0.99339801\n\t\t -0.101629 0.053224999 -0.99735999 -0.072573997 -0.002625 -0.99830002 -0.024873 -0.052705999\n\t\t -0.99735999 -0.072573997 -0.002625 -0.99339801 -0.101629 0.053224999 -0.998079 -0.054965999\n\t\t -0.028596999;\n\tsetAttr \".n[14940:15105]\" -type \"float3\"  -0.998079 -0.054965999 -0.028596999 -0.99871802\n\t\t -0.047153 -0.018433999 -0.99735999 -0.072573997 -0.002625 -0.99871802 -0.047153 -0.018433999\n\t\t -0.998079 -0.054965999 -0.028596999 -0.99666798 -0.031527001 0.075230002 -0.99666798\n\t\t -0.031527001 0.075230002 -0.99498397 -0.046847001 0.088382997 -0.99871802 -0.047153\n\t\t -0.018433999 -0.99498397 -0.046847001 0.088382997 -0.99666798 -0.031527001 0.075230002\n\t\t -0.98456103 -0.162609 0.064792998 -0.98456103 -0.162609 0.064792998 -0.98451501 -0.15989\n\t\t 0.071872003 -0.99498397 -0.046847001 0.088382997 -0.98451501 -0.15989 0.071872003\n\t\t -0.98456103 -0.162609 0.064792998 -0.985309 -0.170297 -0.012849 -0.985309 -0.170297\n\t\t -0.012849 -0.98803598 -0.15391 0.0098580001 -0.98451501 -0.15989 0.071872003 -0.98803598\n\t\t -0.15391 0.0098580001 -0.985309 -0.170297 -0.012849 -0.98795599 -0.154578 0.0069579999\n\t\t -0.98795599 -0.154578 0.0069579999 -0.98772401 -0.154275 0.024506999 -0.98803598\n\t\t -0.15391 0.0098580001 -0.063539997 -0.95536202 -0.28852499 -0.064121 -0.94982499\n\t\t -0.30614001 -0.055117 -0.88782501 -0.45686799 -0.055117 -0.88782501 -0.45686799 -0.052492999\n\t\t -0.88722599 -0.45833901 -0.063539997 -0.95536202 -0.28852499 -0.057223 -0.53274101\n\t\t -0.84434098 -0.059237 -0.533871 -0.84348798 -0.054841999 -0.53139699 -0.84534597\n\t\t -0.054841999 -0.53139699 -0.84534597 -0.052889999 -0.53030801 -0.84615397 -0.057223\n\t\t -0.53274101 -0.84434098 -0.064121 -0.94982499 -0.30614001 -0.063539997 -0.95536202\n\t\t -0.28852499 -0.070560001 -0.99737298 0.016388999 -0.070560001 -0.99737298 0.016388999\n\t\t -0.067506999 -0.99771601 0.002472 -0.064121 -0.94982499 -0.30614001 -0.067506999\n\t\t -0.99771601 0.002472 -0.070560001 -0.99737298 0.016388999 -0.064364001 -0.98692 0.14780299\n\t\t -0.064364001 -0.98692 0.14780299 -0.060274001 -0.98743701 0.146063 -0.067506999 -0.99771601\n\t\t 0.002472 -0.075687997 0.34261 -0.93642402 -0.075382002 0.34263501 -0.93643999 -0.082889996\n\t\t 0.36766401 -0.92625701 -0.082889996 0.36766401 -0.92625701 -0.082218997 0.36873299\n\t\t -0.925892 -0.075687997 0.34261 -0.93642402 -0.082218997 0.36873299 -0.925892 -0.082889996\n\t\t 0.36766401 -0.92625701 -0.058628 0.39727101 -0.91582698 -0.058628 0.39727101 -0.91582698\n\t\t -0.057223 0.39744699 -0.91583902 -0.082218997 0.36873299 -0.925892 -0.117591 0.99275798\n\t\t 0.024568001 -0.111549 0.993406 0.026490999 -0.161478 0.97842002 0.128914 -0.161478\n\t\t 0.97842002 0.128914 -0.165628 0.977898 0.127601 -0.117591 0.99275798 0.024568001\n\t\t -0.165628 0.977898 0.127601 -0.161478 0.97842002 0.128914 -0.173778 0.954373 0.242843\n\t\t -0.173778 0.954373 0.242843 -0.175485 0.95475698 0.24009299 -0.165628 0.977898 0.127601\n\t\t -0.118812 0.036501002 0.99224597 -0.11991 0.03644 0.99211597 -0.103887 0.037447002\n\t\t 0.99388403 -0.103887 0.037447002 0.99388403 -0.103186 0.037508 0.99395502 -0.118812\n\t\t 0.036501002 0.99224597 -0.090640999 -0.63650101 0.76593101 -0.088353001 -0.64206201\n\t\t 0.761545 -0.101813 -0.68293798 0.72334599 -0.101813 -0.68293798 0.72334599 -0.103612\n\t\t -0.68258703 0.72342199 -0.090640999 -0.63650101 0.76593101 -0.088353001 -0.64206201\n\t\t 0.761545 -0.090640999 -0.63650101 0.76593101 -0.075047001 -0.59512401 0.80012202\n\t\t -0.075047001 -0.59512401 0.80012202 -0.072910003 -0.59555203 0.80000103 -0.088353001\n\t\t -0.64206201 0.761545 -0.144142 0.93586802 0.32151899 -0.13608301 0.883578 0.44807601\n\t\t -0.14869 0.86873102 0.47243801 -0.14869 0.86873102 0.47243801 -0.14701299 0.91811699\n\t\t 0.36803401 -0.144142 0.93586802 0.32151899 -0.144142 0.93586802 0.32151899 -0.14701299\n\t\t 0.91811699 0.36803401 -0.138559 0.98119998 0.13434599 -0.138559 0.98119998 0.13434599\n\t\t -0.144142 0.98360097 0.108404 -0.144142 0.93586802 0.32151899 -0.144142 0.98360097\n\t\t 0.108404 -0.138559 0.98119998 0.13434599 -0.13642199 0.990632 -0.0060430001 -0.13642199\n\t\t 0.990632 -0.0060430001 -0.139443 0.99017 -0.010926 -0.144142 0.98360097 0.108404\n\t\t -0.135873 0.98956198 -0.048007 -0.139443 0.99017 -0.010926 -0.13642199 0.990632 -0.0060430001\n\t\t -0.13642199 0.990632 -0.0060430001 -0.133551 0.989694 -0.051667999 -0.135873 0.98956198\n\t\t -0.048007 -0.055087 0.63684398 -0.76902199 -0.053837001 0.63712502 -0.76887798 -0.060031001\n\t\t 0.62786502 -0.77600402 -0.060031001 0.62786502 -0.77600402 -0.060396999 0.62609297\n\t\t -0.77740598 -0.055087 0.63684398 -0.76902199 -0.060396999 0.62609297 -0.77740598\n\t\t -0.060031001 0.62786502 -0.77600402 -0.058749001 0.61855602 -0.78354102 -0.058749001\n\t\t 0.61855602 -0.78354102 -0.058628 0.61859399 -0.78351998 -0.060396999 0.62609297 -0.77740598\n\t\t 0.038454 -0.97400999 -0.223215 0.040254999 -0.97191 -0.231884 0.033204999 -0.99831498\n\t\t -0.047579002 0.033204999 -0.99831498 -0.047579002 0.031129001 -0.998447 -0.046204999\n\t\t 0.038454 -0.97400999 -0.223215 0.040254999 -0.97191 -0.231884 0.038454 -0.97400999\n\t\t -0.223215 0.041903999 -0.91662401 -0.39754799 0.041903999 -0.91662401 -0.39754799\n\t\t 0.043154001 -0.91413897 -0.403097 0.040254999 -0.97191 -0.231884 -0.076297 -0.38908499\n\t\t 0.918037 -0.075413004 -0.38921401 0.918055 -0.082951002 -0.38304499 0.91999799 -0.082951002\n\t\t -0.38304499 0.91999799 -0.083471 -0.38326401 0.91985899 -0.076297 -0.38908499 0.918037\n\t\t -0.081303 -0.37776801 0.922324 -0.083471 -0.38326401 0.91985899 -0.082951002 -0.38304499\n\t\t 0.91999799 -0.082951002 -0.38304499 0.91999799 -0.081028 -0.37770301 0.92237502 -0.081303\n\t\t -0.37776801 0.922324 0.017457001 -0.032715999 -0.99931198 0.014283 -0.032655001 -0.99936497\n\t\t 0.014649 -0.032655999 -0.99935901 0.014649 -0.032655999 -0.99935901 0.017852999 -0.032715999\n\t\t -0.99930501 0.017457001 -0.032715999 -0.99931198 -0.171793 0.36855099 -0.91359597\n\t\t -0.171793 0.36855099 -0.91359597 -0.171793 0.36855099 -0.91359597 -0.98957902 -0.143989\n\t\t -0.00064099999 -0.995359 -0.078588001 0.055544998 -0.99809998 -0.038546 0.048067998\n\t\t -0.995359 -0.078588001 0.055544998;\n\tsetAttr \".n[15106:15271]\" -type \"float3\"  -0.98348099 -0.17978901 0.020997001 -0.99809998\n\t\t -0.038546 0.048067998 -0.98957902 -0.143989 -0.00064099999 -0.99809998 -0.038546\n\t\t 0.048067998 -0.98684299 -0.100531 0.126625 -0.99809998 -0.038546 0.048067998 -0.99610502\n\t\t 0.082492001 -0.031129001 -0.98684299 -0.100531 0.126625 -0.91627002 -0.39976799 -0.025209\n\t\t -0.91627002 -0.39976799 -0.025209 -0.91627002 -0.39976799 -0.025209 -0.99610502 0.082492001\n\t\t -0.031129001 -0.99237603 -0.037018999 0.117558 -0.98684299 -0.100531 0.126625 -0.98957902\n\t\t -0.143989 -0.00064099999 -0.98684299 -0.100531 0.126625 -0.98271197 -0.166573 -0.080813996\n\t\t -0.98684299 -0.100531 0.126625 -0.98231 -0.166786 -0.085147999 -0.98271197 -0.166573\n\t\t -0.080813996 0.96483803 -0.18357299 -0.18812101 0.96444303 -0.18290199 -0.190777\n\t\t 0.96457797 -0.182289 -0.19068199 0.96457797 -0.182289 -0.19068199 0.96456999 -0.18922099\n\t\t -0.18385001 0.96483803 -0.18357299 -0.18812101 0.96513999 -0.19181301 -0.17808001\n\t\t 0.96456999 -0.18922099 -0.18385001 0.96457797 -0.182289 -0.19068199 0.96457797 -0.182289\n\t\t -0.19068199 0.96259701 -0.19977599 -0.18302201 0.96513999 -0.19181301 -0.17808001\n\t\t 0.97240299 -0.144996 -0.18278 0.96483803 -0.18357299 -0.18812101 0.96456999 -0.18922099\n\t\t -0.18385001 0.96456999 -0.18922099 -0.18385001 0.96968198 -0.170662 -0.174905 0.97240299\n\t\t -0.144996 -0.18278 0.96968198 -0.170662 -0.174905 0.96456999 -0.18922099 -0.18385001\n\t\t 0.96513999 -0.19181301 -0.17808001 0.98069203 -0.18842299 -0.052340001 0.97240299\n\t\t -0.144996 -0.18278 0.96968198 -0.170662 -0.174905 0.96968198 -0.170662 -0.174905\n\t\t 0.98041999 -0.18595099 -0.064792 0.98069203 -0.18842299 -0.052340001 0.97582299 -0.16868\n\t\t -0.13898499 0.98041999 -0.18595099 -0.064792 0.96968198 -0.170662 -0.174905 0.96968198\n\t\t -0.170662 -0.174905 0.96772897 -0.178414 -0.177957 0.97582299 -0.16868 -0.13898499\n\t\t 0.96513999 -0.19181301 -0.17808001 0.96772897 -0.178414 -0.177957 0.96968198 -0.170662\n\t\t -0.174905 0.963862 -0.170206 -0.204937 0.96457797 -0.182289 -0.19068199 0.96444303\n\t\t -0.18290199 -0.190777 0.837933 0.22910701 -0.49535599 0.837933 0.22910701 -0.49535599\n\t\t 0.837933 0.22910701 -0.49535599 0.96457797 -0.182289 -0.19068199 0.963862 -0.170206\n\t\t -0.204937 0.95814002 -0.21445601 -0.189675 0.95814002 -0.21445601 -0.189675 0.96259701\n\t\t -0.19977599 -0.18302201 0.96457797 -0.182289 -0.19068199 0.96513999 -0.19181301 -0.17808001\n\t\t 0.96259701 -0.19977599 -0.18302201 0.95943499 -0.21110199 -0.18686999 0.95943499\n\t\t -0.21110199 -0.18686999 0.96259701 -0.19977599 -0.18302201 0.95814002 -0.21445601\n\t\t -0.189675 0.95943499 -0.21110199 -0.18686999 0.96823299 -0.183605 -0.16975001 0.96513999\n\t\t -0.19181301 -0.17808001 0.97582299 -0.16868 -0.13898499 0.96772897 -0.178414 -0.177957\n\t\t 0.96968102 -0.17307299 -0.17252401 0.96513999 -0.19181301 -0.17808001 0.96823299\n\t\t -0.183605 -0.16975001 0.96968102 -0.17307299 -0.17252401 0.96968102 -0.17307299 -0.17252401\n\t\t 0.96772897 -0.178414 -0.177957 0.96513999 -0.19181301 -0.17808001 0.96968102 -0.17307299\n\t\t -0.17252401 0.97074902 -0.167854 -0.17167 0.97582299 -0.16868 -0.13898499 0.95814002\n\t\t -0.21445601 -0.189675 0.93215603 -0.28636399 -0.221541 0.95943499 -0.21110199 -0.18686999\n\t\t 0.071262002 -0.99647999 0.044160999 0.059055001 -0.98822099 -0.141183 0.062107 -0.98836702\n\t\t -0.138832 0.062107 -0.98836702 -0.138832 0.071902998 -0.98893797 0.12973601 0.071262002\n\t\t -0.99647999 0.044160999 0.071262002 -0.99647999 0.044160999 0.071902998 -0.98893797\n\t\t 0.12973601 0.124335 -0.89728898 0.42357299 0.124335 -0.89728898 0.42357299 0.119849\n\t\t -0.916673 0.38124499 0.071262002 -0.99647999 0.044160999 0.67270499 -0.72489202 0.148323\n\t\t 0.65601999 -0.74708998 -0.107215 0.65570402 -0.75458598 -0.025544001 0.65570402 -0.75458598\n\t\t -0.025544001 0.682419 -0.70979398 0.174633 0.67270499 -0.72489202 0.148323 0.70797902\n\t\t -0.64050102 0.29752901 0.67270499 -0.72489202 0.148323 0.682419 -0.70979398 0.174633\n\t\t 0.682419 -0.70979398 0.174633 0.71158701 -0.62161601 0.327472 0.70797902 -0.64050102\n\t\t 0.29752901 0.018709 -0.433988 -0.90072399 0.031342998 -0.63915801 -0.76843601 0.030306\n\t\t -0.63824701 -0.76923501 0.64473897 -0.64809602 -0.40531901 0.585904 -0.457816 -0.66867101\n\t\t 0.57001698 -0.39266601 -0.72172999 0.57001698 -0.39266601 -0.72172999 0.64915502\n\t\t -0.64576697 -0.40197501 0.64473897 -0.64809602 -0.40531901 0.64915502 -0.64576697\n\t\t -0.40197501 0.65570402 -0.75458598 -0.025544001 0.65601999 -0.74708998 -0.107215\n\t\t 0.65601999 -0.74708998 -0.107215 0.64473897 -0.64809602 -0.40531901 0.64915502 -0.64576697\n\t\t -0.40197501 0.55053002 -0.16999 -0.817325 0.57001698 -0.39266601 -0.72172999 0.585904\n\t\t -0.457816 -0.66867101 0.585904 -0.457816 -0.66867101 0.55066502 -0.180004 -0.81508702\n\t\t 0.55053002 -0.16999 -0.817325 0.0068060001 -0.120429 -0.99269903 0.0068970001 -0.074496001\n\t\t -0.99719697 0.018709 -0.433988 -0.90072399 0.018709 -0.433988 -0.90072399 0.020874999\n\t\t -0.480492 -0.87675101 0.0068060001 -0.120429 -0.99269903 0.030306 -0.63824701 -0.76923501\n\t\t 0.020874999 -0.480492 -0.87675101 0.018709 -0.433988 -0.90072399 0.57223302 0.056308001\n\t\t -0.818156 0.55053002 -0.16999 -0.817325 0.55066502 -0.180004 -0.81508702 0.55066502\n\t\t -0.180004 -0.81508702 0.57233202 0.024294 -0.81966197 0.57223302 0.056308001 -0.818156\n\t\t 0.0082400003 0.216445 -0.97626001 0.0068970001 -0.074496001 -0.99719697 0.0068060001\n\t\t -0.120429 -0.99269903 0.539307 0.16157 -0.826464 0.57223302 0.056308001 -0.818156\n\t\t 0.57233202 0.024294 -0.81966197 0.57233202 0.024294 -0.81966197 0.538544 0.161936\n\t\t -0.82688999 0.539307 0.16157 -0.826464 -0.010651 0.33149499 -0.94339699 -0.011262\n\t\t 0.33159301 -0.94335502 0.0082400003 0.216445 -0.97626001 0.0082400003 0.216445 -0.97626001\n\t\t 0.0083010001 0.177104 -0.98415703;\n\tsetAttr \".n[15272:15437]\" -type \"float3\"  -0.010651 0.33149499 -0.94339699 0.0068060001\n\t\t -0.120429 -0.99269903 0.0083010001 0.177104 -0.98415703 0.0082400003 0.216445 -0.97626001\n\t\t 0.707524 -0.54562002 0.449119 0.70797902 -0.64050102 0.29752901 0.71158701 -0.62161601\n\t\t 0.327472 0.18217 -0.76286203 0.62036699 0.182537 -0.57874101 0.79482001 0.183847\n\t\t -0.607939 0.77240598 0.177377 -0.454795 0.87275398 0.183847 -0.607939 0.77240598\n\t\t 0.182537 -0.57874101 0.79482001 0.182537 -0.57874101 0.79482001 0.177349 -0.445281\n\t\t 0.87765199 0.177377 -0.454795 0.87275398 0.176433 -0.40368 0.89772701 0.177377 -0.454795\n\t\t 0.87275398 0.177349 -0.445281 0.87765199 0.177349 -0.445281 0.87765199 0.179425 -0.40111801\n\t\t 0.89828199 0.176433 -0.40368 0.89772701 0.176433 -0.40368 0.89772701 0.179425 -0.40111801\n\t\t 0.89828199 0.083043002 -0.37483901 0.92336297 0.083043002 -0.37483901 0.92336297\n\t\t 0.080571003 -0.37441 0.923756 0.176433 -0.40368 0.89772701 0.70256698 -0.37304401\n\t\t 0.60600197 0.72062302 -0.39833799 0.56747699 0.725128 -0.38999999 0.56752902 0.725128\n\t\t -0.38999999 0.56752902 0.70120502 -0.3734 0.60735899 0.70256698 -0.37304401 0.60600197\n\t\t 0.69800401 -0.459649 0.549101 0.707524 -0.54562002 0.449119 0.70313901 -0.52371401\n\t\t 0.480957 0.70313901 -0.52371401 0.480957 0.70268899 -0.451327 0.55002898 0.69800401\n\t\t -0.459649 0.549101 0.70268899 -0.451327 0.55002898 0.725128 -0.38999999 0.56752902\n\t\t 0.72062302 -0.39833799 0.56747699 0.72062302 -0.39833799 0.56747699 0.69800401 -0.459649\n\t\t 0.549101 0.70268899 -0.451327 0.55002898 0.71158701 -0.62161601 0.327472 0.70313901\n\t\t -0.52371401 0.480957 0.707524 -0.54562002 0.449119 0.183847 -0.607939 0.77240598\n\t\t 0.17353199 -0.78720999 0.591766 0.18217 -0.76286203 0.62036699 0.124335 -0.89728898\n\t\t 0.42357299 0.18217 -0.76286203 0.62036699 0.17353199 -0.78720999 0.591766 0.17353199\n\t\t -0.78720999 0.591766 0.119849 -0.916673 0.38124499 0.124335 -0.89728898 0.42357299\n\t\t 0.80522299 0.59289998 -0.0092470003 0.81276101 0.58255398 -0.0070810001 0.77047002\n\t\t 0.63587898 -0.045108002 0.77047002 0.63587898 -0.045108002 0.778476 0.627011 -0.02884\n\t\t 0.80522299 0.59289998 -0.0092470003 0.73782903 0.670596 -0.076877996 0.778476 0.627011\n\t\t -0.02884 0.77047002 0.63587898 -0.045108002 0.77047002 0.63587898 -0.045108002 0.73712802\n\t\t 0.67166501 -0.074222997 0.73782903 0.670596 -0.076877996 0.051516 0.99834198 0.025697\n\t\t 0.049715001 0.99845701 0.024751 0.054140002 0.99821699 0.025148001 0.054140002 0.99821699\n\t\t 0.025148001 0.056093 0.998088 0.025970999 0.051516 0.99834198 0.025697 0.056093 0.998088\n\t\t 0.025970999 0.054140002 0.99821699 0.025148001 0.071598001 0.997132 0.024537999 0.071598001\n\t\t 0.997132 0.024537999 0.071718 0.99710202 0.025361 0.056093 0.998088 0.025970999 0.73782903\n\t\t 0.670596 -0.076877996 0.73712802 0.67166501 -0.074222997 0.73309797 0.67279297 -0.099583998\n\t\t 0.73309797 0.67279297 -0.099583998 0.732831 0.67307502 -0.099646002 0.73782903 0.670596\n\t\t -0.076877996 0.082401 0.99641401 0.019227 0.071718 0.99710202 0.025361 0.071598001\n\t\t 0.997132 0.024537999 0.071598001 0.997132 0.024537999 0.085666001 0.99616802 0.01764\n\t\t 0.082401 0.99641401 0.019227 0.612275 0.170633 -0.77201301 0.610102 0.134497 -0.78082401\n\t\t 0.55697 -0.179298 -0.81094801 0.55697 -0.179298 -0.81094801 0.56668299 -0.141335\n\t\t -0.81172299 0.612275 0.170633 -0.77201301 0.51400799 -0.316273 -0.79734999 0.56668299\n\t\t -0.141335 -0.81172299 0.55697 -0.179298 -0.81094801 0.55697 -0.179298 -0.81094801\n\t\t 0.51398098 -0.31630501 -0.797355 0.51400799 -0.316273 -0.79734999 0.61291802 0.30143899\n\t\t -0.73038697 0.610102 0.134497 -0.78082401 0.612275 0.170633 -0.77201301 0.612275\n\t\t 0.170633 -0.77201301 0.61292201 0.30134901 -0.73042202 0.61291802 0.30143899 -0.73038697\n\t\t 0.24561501 0.96921599 -0.017121 0.328841 0.93378699 -0.14108901 0.323075 0.93708903\n\t\t -0.132239 0.323075 0.93708903 -0.132239 0.24561501 0.96921599 -0.017121 0.24561501\n\t\t 0.96921599 -0.017121 0.39925 0.88114601 -0.25333899 0.323075 0.93708903 -0.132239\n\t\t 0.328841 0.93378699 -0.14108901 0.328841 0.93378699 -0.14108901 0.39928299 0.88112199\n\t\t -0.253371 0.39925 0.88114601 -0.25333899 0.61010402 0.13446701 -0.78082699 0.55697\n\t\t -0.179298 -0.81094801 0.56194401 -0.160285 -0.81149697 0.56194401 -0.160285 -0.81149697\n\t\t 0.61129898 0.15253501 -0.77656102 0.61010402 0.13446701 -0.78082699 0.51398098 -0.31630501\n\t\t -0.797355 0.56194401 -0.160285 -0.81149697 0.55697 -0.179298 -0.81094801 0.55697\n\t\t -0.179298 -0.81094801 0.51396799 -0.31629699 -0.79736602 0.51398098 -0.31630501 -0.797355\n\t\t 0.61129898 0.15253501 -0.77656102 0.56194401 -0.160285 -0.81149697 0.56671602 -0.141183\n\t\t -0.81172699 0.56671602 -0.141183 -0.81172699 0.61227 0.17054 -0.77203703 0.61129898\n\t\t 0.15253501 -0.77656102 0.56194401 -0.160285 -0.81149697 0.51398098 -0.31630501 -0.797355\n\t\t 0.513973 -0.31626999 -0.79737401 0.513973 -0.31626999 -0.79737401 0.56671602 -0.141183\n\t\t -0.81172699 0.56194401 -0.160285 -0.81149697 0.61292201 0.30134901 -0.73042202 0.61010402\n\t\t 0.13446701 -0.78082699 0.61129898 0.15253501 -0.77656102 0.61129898 0.15253501 -0.77656102\n\t\t 0.61291599 0.301377 -0.73041499 0.61292201 0.30134901 -0.73042202 0.61291599 0.301377\n\t\t -0.73041499 0.61129898 0.15253501 -0.77656102 0.61227 0.17054 -0.77203703 0.61227\n\t\t 0.17054 -0.77203703 0.61291599 0.301377 -0.73041499 0.61291599 0.301377 -0.73041499\n\t\t 0.24561501 0.96921599 -0.017121 0.32881501 0.93379998 -0.14105999 0.326038 0.935417\n\t\t -0.13672701 0.326038 0.935417 -0.13672701 0.14411201 0.989407 -0.017488001 0.24561501\n\t\t 0.96921599 -0.017121;\n\tsetAttr \".n[15438:15603]\" -type \"float3\"  0.152077 0.98821402 -0.017457001 0.14411201\n\t\t 0.989407 -0.017488001 0.326038 0.935417 -0.13672701 0.326038 0.935417 -0.13672701\n\t\t 0.32368401 0.93674898 -0.133154 0.152077 0.98821402 -0.017457001 0.39928299 0.88112199\n\t\t -0.253371 0.326038 0.935417 -0.13672701 0.32881501 0.93379998 -0.14105999 0.32881501\n\t\t 0.93379998 -0.14105999 0.39925 0.88114601 -0.25333899 0.39928299 0.88112199 -0.253371\n\t\t -0.144113 0.989407 -0.017488001 0.14411201 0.989407 -0.017488001 0.152077 0.98821402\n\t\t -0.017457001 0.152077 0.98821402 -0.017457001 -0.152078 0.98821402 -0.017457001 -0.144113\n\t\t 0.989407 -0.017488001 0.399306 0.88110399 -0.25339699 0.32368401 0.93674898 -0.133154\n\t\t 0.326038 0.935417 -0.13672701 0.326038 0.935417 -0.13672701 0.39928299 0.88112199\n\t\t -0.253371 0.399306 0.88110399 -0.25339699 -0.152476 -0.98184502 -0.112831 -0.054414999\n\t\t -0.96895099 -0.241192 -0.058168001 -0.96991402 -0.236398 -0.058168001 -0.96991402\n\t\t -0.236398 -0.152476 -0.98184502 -0.112831 -0.152476 -0.98184502 -0.112831 0.041384999\n\t\t -0.93248999 -0.35881701 -0.058168001 -0.96991402 -0.236398 -0.054414999 -0.96895099\n\t\t -0.241192 -0.054414999 -0.96895099 -0.241192 0.041384999 -0.93248999 -0.35881701\n\t\t 0.041384999 -0.93248999 -0.35881701 0.61215198 0.168588 -0.77256 0.60998797 0.13282\n\t\t -0.78119999 0.55759001 -0.17701299 -0.81102401 0.55759001 -0.17701299 -0.81102401\n\t\t 0.56710303 -0.139532 -0.81174201 0.61215198 0.168588 -0.77256 0.613038 0.29777601\n\t\t -0.73178798 0.60998797 0.13282 -0.78119999 0.61215198 0.168588 -0.77256 0.61215198\n\t\t 0.168588 -0.77256 0.613038 0.29777601 -0.73178798 0.613038 0.29777601 -0.73178798\n\t\t 0.51540899 -0.31236401 -0.79798597 0.56710303 -0.139532 -0.81174201 0.55759001 -0.17701299\n\t\t -0.81102401 0.55759001 -0.17701299 -0.81102401 0.51540899 -0.31236401 -0.79798597\n\t\t 0.51540899 -0.31236401 -0.79798597 0.234139 0.97220302 -0.00070199999 0.32056901\n\t\t 0.938483 -0.12839299 0.31489599 0.94154501 -0.119726 0.31489599 0.94154501 -0.119726\n\t\t 0.234139 0.97220302 -0.00070199999 0.234139 0.97220302 -0.00070199999 0.39399999\n\t\t 0.88593698 -0.244702 0.31489599 0.94154501 -0.119726 0.32056901 0.938483 -0.12839299\n\t\t 0.32056901 0.938483 -0.12839299 0.39399999 0.88593698 -0.244702 0.39399999 0.88593698\n\t\t -0.244702 -0.16474099 -0.98164099 -0.096134 -0.064760998 -0.97147501 -0.228128 -0.068240002\n\t\t -0.97226602 -0.223702 -0.068240002 -0.97226602 -0.223702 -0.16474099 -0.98164397\n\t\t -0.096104003 -0.16474099 -0.98164099 -0.096134 0.033693999 -0.93627101 -0.349659\n\t\t -0.068240002 -0.97226602 -0.223702 -0.064760998 -0.97147501 -0.228128 -0.064760998\n\t\t -0.97147501 -0.228128 0.033693001 -0.93628502 -0.34962299 0.033693999 -0.93627101\n\t\t -0.349659 -0.47155601 0.083318003 -0.877891 -0.49910799 -0.088200003 -0.86203998\n\t\t -0.45576599 -0.037386 -0.889314 -0.45576599 -0.037386 -0.889314 -0.449359 0.045595001\n\t\t -0.892187 -0.47155601 0.083318003 -0.877891 -0.77326298 -0.27372599 -0.57195902 -0.71552998\n\t\t -0.40304101 -0.57059199 -0.70022601 -0.36787501 -0.61184299 -0.70022601 -0.36787501\n\t\t -0.61184299 -0.77396601 -0.27018601 -0.57269198 -0.77326298 -0.27372599 -0.57195902\n\t\t 0.97380698 -0.087834001 0.209728 0.974132 0.084385 0.20963401 0.98427403 0.039430998\n\t\t 0.172189 0.98427403 0.039430998 0.172189 0.98395097 -0.042939 0.17319299 0.97380698\n\t\t -0.087834001 0.209728 0.799173 0.27302399 0.535519 0.792651 0.39943901 0.46059999\n\t\t 0.818331 0.368332 0.44121 0.818331 0.368332 0.44121 0.79968899 0.26988 0.53634101\n\t\t 0.799173 0.27302399 0.535519 -0.561831 0.26322901 -0.78425598 -0.63782603 0.458859\n\t\t -0.618568 -0.62343901 0.422869 -0.65765101 -0.62343901 0.422869 -0.65765101 -0.55712801\n\t\t 0.25446901 -0.79047698 -0.561831 0.26322901 -0.78425598 -0.449359 0.045595001 -0.892187\n\t\t -0.561831 0.26322901 -0.78425598 -0.55712801 0.25446901 -0.79047698 -0.55712801 0.25446901\n\t\t -0.79047698 -0.47155601 0.083318003 -0.877891 -0.449359 0.045595001 -0.892187 -0.73883402\n\t\t 0.30409101 -0.601376 -0.62343901 0.422869 -0.65765101 -0.63782603 0.458859 -0.618568\n\t\t -0.63782603 0.458859 -0.618568 -0.74039102 0.29997101 -0.60153002 -0.73883402 0.30409101\n\t\t -0.601376 -0.61082202 -0.23359799 -0.75652403 -0.45576599 -0.037386 -0.889314 -0.49910799\n\t\t -0.088200003 -0.86203998 -0.49910799 -0.088200003 -0.86203998 -0.61704201 -0.241531\n\t\t -0.74894702 -0.61082202 -0.23359799 -0.75652403 0.89973402 -0.26542401 0.34645301\n\t\t 0.73584402 -0.463126 0.494012 0.77904099 -0.423915 0.461943 0.77904099 -0.423915\n\t\t 0.461943 0.90366101 -0.259287 0.34083399 0.89973402 -0.26542401 0.34645301 0.98395097\n\t\t -0.042939 0.17319299 0.89973402 -0.26542401 0.34645301 0.90366101 -0.259287 0.34083399\n\t\t 0.90366101 -0.259287 0.34083399 0.97380698 -0.087834001 0.209728 0.98395097 -0.042939\n\t\t 0.17319299 0.76209003 -0.30403 0.57165098 0.77904099 -0.423915 0.461943 0.73584402\n\t\t -0.463126 0.494012 0.73584402 -0.463126 0.494012 0.76298702 -0.30018899 0.57248402\n\t\t 0.76209003 -0.30403 0.57165098 0.915784 0.23108999 0.32853699 0.98427403 0.039430998\n\t\t 0.172189 0.974132 0.084385 0.20963401 0.974132 0.084385 0.20963401 0.91129303 0.23881\n\t\t 0.33543301 0.915784 0.23108999 0.32853699 -0.056276001 -0.96942699 -0.238839 0.041352998\n\t\t -0.93250602 -0.35878 0.041354001 -0.932491 -0.35881701 0.041354001 -0.932491 -0.35881701\n\t\t -0.058169998 -0.96991199 -0.236405 -0.056276001 -0.96942699 -0.238839 0.041352998\n\t\t -0.93250602 -0.35878 -0.056276001 -0.96942699 -0.238839 -0.053681999 -0.96875602\n\t\t -0.242136 -0.053681999 -0.96875602 -0.242136 0.041384 -0.93247998 -0.358843 0.041352998\n\t\t -0.93250602 -0.35878 -0.089479998 -0.98947603 -0.113712 -0.056276001 -0.96942699\n\t\t -0.238839 -0.058169998 -0.96991199 -0.236405 -0.058169998 -0.96991199 -0.236405;\n\tsetAttr \".n[15604:15769]\" -type \"float3\"  -0.152476 -0.98184502 -0.112831 -0.089479998\n\t\t -0.98947603 -0.113712 -0.094058998 -0.98905802 -0.113653 -0.053681999 -0.96875602\n\t\t -0.242136 -0.056276001 -0.96942699 -0.238839 -0.056276001 -0.96942699 -0.238839 -0.089479998\n\t\t -0.98947603 -0.113712 -0.094058998 -0.98905802 -0.113653 -0.094058998 -0.98905802\n\t\t -0.113653 -0.089479998 -0.98947603 -0.113712 0.089481004 -0.98947603 -0.113712 0.089481004\n\t\t -0.98947603 -0.113712 0.094059996 -0.98905802 -0.113652 -0.094058998 -0.98905802\n\t\t -0.113653 -0.71552998 -0.40304101 -0.57059199 -0.61082202 -0.23359799 -0.75652403\n\t\t -0.61704201 -0.241531 -0.74894702 -0.61704201 -0.241531 -0.74894702 -0.70022601 -0.36787501\n\t\t -0.61184299 -0.71552998 -0.40304101 -0.57059199 0.792651 0.39943901 0.46059999 0.915784\n\t\t 0.23108999 0.32853699 0.91129303 0.23881 0.33543301 0.91129303 0.23881 0.33543301\n\t\t 0.818331 0.368332 0.44121 0.792651 0.39943901 0.46059999 0.80385399 6.0999999e-05\n\t\t 0.59482598 0.80381399 -2.9999999e-05 0.59487998 0.80383998 0 0.59484601 0.80383998\n\t\t 0 0.59484601 0.80385399 0 0.59482598 0.80385399 6.0999999e-05 0.59482598 0.80386502\n\t\t 0 0.59481102 0.80385399 6.0999999e-05 0.59482598 0.80385399 0 0.59482598 0.80385399\n\t\t 0 0.59482598 0.80385399 0 0.59482598 0.80386502 0 0.59481102 0.80386502 -2.9999999e-05\n\t\t 0.59481102 0.80386502 0 0.59481102 0.80385399 0 0.59482598 0.80385399 0 0.59482598\n\t\t 0.80385399 0 0.59482598 0.80386502 -2.9999999e-05 0.59481102 0.80385399 0 0.59482598\n\t\t 0.80386502 -2.9999999e-05 0.59481102 0.80385399 0 0.59482598 0.80385399 0 0.59482598\n\t\t 0.80385399 0 0.59482598 0.80385399 0 0.59482598 0.80383998 0 0.59484601 0.80383998\n\t\t 0 0.59484601 0.80381399 -2.9999999e-05 0.59487998 0.80381399 -2.9999999e-05 0.59487998\n\t\t 0.80381399 -2.9999999e-05 0.59487998 0.80383998 0 0.59484601 0.80385399 0 0.59482598\n\t\t 0.80383998 0 0.59484601 0.80381399 -2.9999999e-05 0.59487998 0.80381399 -2.9999999e-05\n\t\t 0.59487998 0.80387998 0 0.59479201 0.80385399 0 0.59482598 0.80386502 0 0.59481102\n\t\t 0.80385399 0 0.59482598 0.80387998 0 0.59479201 0.80387998 0 0.59479201 0.80386502\n\t\t 0 0.59481102 0.80386502 0 0.59481102 0.56378502 -0.152963 -0.81163299 0.56725198\n\t\t -0.138952 -0.811737 0.61215198 0.167886 -0.77271301 0.61215198 0.167886 -0.77271301\n\t\t 0.611184 0.150767 -0.77699703 0.56378502 -0.152963 -0.81163299 0.611184 0.150767\n\t\t -0.77699703 0.61215198 0.167886 -0.77271301 0.61312801 0.296615 -0.73218399 0.61312801\n\t\t 0.296615 -0.73218399 0.61309499 0.296767 -0.73215002 0.611184 0.150767 -0.77699703\n\t\t 0.56725198 -0.138952 -0.811737 0.56378502 -0.152963 -0.81163299 0.515836 -0.311113\n\t\t -0.798199 0.515836 -0.311113 -0.798199 0.51586801 -0.31105301 -0.79820198 0.56725198\n\t\t -0.138952 -0.811737 0.392203 0.88756198 -0.24168199 0.392205 0.88753599 -0.24177501\n\t\t 0.31273001 0.94267899 -0.116431 0.31273001 0.94267899 -0.116431 0.316937 0.94046599\n\t\t -0.122777 0.392203 0.88756198 -0.24168199 0.316937 0.94046599 -0.122777 0.31273001\n\t\t 0.94267899 -0.116431 0.231611 0.97280401 0.003021 0.231611 0.97280401 0.003021 0.231611\n\t\t 0.97280401 0.003021 0.316937 0.94046599 -0.122777 -0.068086997 -0.972269 -0.22373401\n\t\t -0.067446001 -0.97211701 -0.22458801 0.031098999 -0.93750799 -0.34657201 0.031098999\n\t\t -0.93750799 -0.34657201 0.030916 -0.937594 -0.346356 -0.068086997 -0.972269 -0.22373401\n\t\t -0.067446001 -0.97211701 -0.22458801 -0.068086997 -0.972269 -0.22373401 -0.167549\n\t\t -0.98152298 -0.092412002 -0.167549 -0.98152298 -0.092412002 -0.167549 -0.98152298\n\t\t -0.092412002 -0.067446001 -0.97211701 -0.22458801 0.76605898 -0.207468 0.60836703\n\t\t 0.77110499 -0.26570201 0.578619 0.74912202 -0.21396901 0.62692398 0.76605898 -0.207468\n\t\t 0.60836703 0.74912202 -0.21396901 0.62692398 0.76783597 -0.202343 0.607853 0.74912202\n\t\t -0.21396901 0.62692398 0.75696898 -0.20334899 0.621005 0.76783597 -0.202343 0.607853\n\t\t 0.76605898 -0.207468 0.60836703 0.76783597 -0.202343 0.607853 0.79439801 -0.124093\n\t\t 0.59458601 0.76783597 -0.202343 0.607853 0.77491301 -0.182749 0.60507298 0.79439801\n\t\t -0.124093 0.59458601 0.76605898 -0.207468 0.60836703 0.79439801 -0.124093 0.59458601\n\t\t 0.79671001 -0.115424 0.59323698 -0.96457797 -0.182289 -0.19068199 -0.96444303 -0.18290301\n\t\t -0.190777 -0.96483701 -0.18357401 -0.18812101 -0.96483701 -0.18357401 -0.18812101\n\t\t -0.96456999 -0.18922099 -0.18385001 -0.96457797 -0.182289 -0.19068199 -0.96457797\n\t\t -0.182289 -0.19068199 -0.96456999 -0.18922099 -0.18385001 -0.96513999 -0.19181401\n\t\t -0.17808001 -0.96513999 -0.19181401 -0.17808001 -0.96259701 -0.19977701 -0.18302201\n\t\t -0.96457797 -0.182289 -0.19068199 -0.96456999 -0.18922099 -0.18385001 -0.96483701\n\t\t -0.18357401 -0.18812101 -0.97240299 -0.144997 -0.18278 -0.97240299 -0.144997 -0.18278\n\t\t -0.96968198 -0.170663 -0.174905 -0.96456999 -0.18922099 -0.18385001 -0.96513999 -0.19181401\n\t\t -0.17808001 -0.96456999 -0.18922099 -0.18385001 -0.96968198 -0.170663 -0.174905 -0.96968198\n\t\t -0.170663 -0.174905 -0.97240299 -0.144997 -0.18278 -0.98069203 -0.18842401 -0.052340001\n\t\t -0.98069203 -0.18842401 -0.052340001 -0.98041999 -0.18595199 -0.064792 -0.96968198\n\t\t -0.170663 -0.174905 -0.96968198 -0.170663 -0.174905 -0.98041999 -0.18595199 -0.064792\n\t\t -0.97582299 -0.16868 -0.13898499 -0.97582299 -0.16868 -0.13898499 -0.96772897 -0.178415\n\t\t -0.177957 -0.96968198 -0.170663 -0.174905 -0.96968198 -0.170663 -0.174905 -0.96772897\n\t\t -0.178415 -0.177957 -0.96513999 -0.19181401 -0.17808001 -0.96444303 -0.18290301 -0.190777\n\t\t -0.96457797 -0.182289 -0.19068199;\n\tsetAttr \".n[15770:15935]\" -type \"float3\"  -0.963862 -0.17020699 -0.204937 -0.837933\n\t\t 0.22910701 -0.49535599 -0.837933 0.22910701 -0.49535599 -0.837933 0.22910701 -0.49535599\n\t\t -0.96457797 -0.182289 -0.19068199 -0.96259701 -0.19977701 -0.18302201 -0.95814002\n\t\t -0.21445601 -0.189675 -0.95814002 -0.21445601 -0.189675 -0.963862 -0.17020699 -0.204937\n\t\t -0.96457797 -0.182289 -0.19068199 -0.95943499 -0.21110199 -0.18686999 -0.96259701\n\t\t -0.19977701 -0.18302201 -0.96513999 -0.19181401 -0.17808001 -0.95814002 -0.21445601\n\t\t -0.189675 -0.96259701 -0.19977701 -0.18302201 -0.95943499 -0.21110199 -0.18686999\n\t\t -0.96513999 -0.19181401 -0.17808001 -0.96822703 -0.183635 -0.16974901 -0.95943499\n\t\t -0.21110199 -0.18686999 -0.96968102 -0.17307401 -0.17252401 -0.96772897 -0.178415\n\t\t -0.177957 -0.97582299 -0.16868 -0.13898499 -0.96513999 -0.19181401 -0.17808001 -0.96772897\n\t\t -0.178415 -0.177957 -0.96968102 -0.17307401 -0.17252401 -0.96968102 -0.17307401 -0.17252401\n\t\t -0.96822703 -0.183635 -0.16974901 -0.96513999 -0.19181401 -0.17808001 -0.97582299\n\t\t -0.16868 -0.13898499 -0.97074902 -0.16785499 -0.17167 -0.96968102 -0.17307401 -0.17252401\n\t\t -0.95943499 -0.21110199 -0.18686999 -0.93215603 -0.286365 -0.221541 -0.95814002 -0.21445601\n\t\t -0.189675 -0.068301998 -0.99678802 0.041811001 -0.075227998 -0.98950303 0.123387\n\t\t -0.062105998 -0.98836702 -0.138832 -0.062105998 -0.98836702 -0.138832 -0.059055001\n\t\t -0.98822099 -0.141183 -0.068301998 -0.99678802 0.041811001 -0.075227998 -0.98950303\n\t\t 0.123387 -0.068301998 -0.99678802 0.041811001 -0.115239 -0.91333997 0.390551 -0.115239\n\t\t -0.91333997 0.390551 -0.12876099 -0.89500999 0.427057 -0.075227998 -0.98950303 0.123387\n\t\t -0.65570402 -0.75458598 -0.025544001 -0.65601897 -0.74708998 -0.107215 -0.67270398\n\t\t -0.72489297 0.148323 -0.67270398 -0.72489297 0.148323 -0.68241799 -0.709795 0.174633\n\t\t -0.65570402 -0.75458598 -0.025544001 -0.68241799 -0.709795 0.174633 -0.67270398 -0.72489297\n\t\t 0.148323 -0.70797902 -0.64050198 0.29752901 -0.70797902 -0.64050198 0.29752901 -0.71158701\n\t\t -0.62161601 0.327472 -0.68241799 -0.709795 0.174633 -0.030305 -0.63824701 -0.76923501\n\t\t -0.031342998 -0.63915801 -0.76843601 -0.018859999 -0.434221 -0.90060902 -0.57001603\n\t\t -0.392667 -0.72172999 -0.585904 -0.457816 -0.66867101 -0.64473897 -0.64809602 -0.40531901\n\t\t -0.64473897 -0.64809602 -0.40531901 -0.64915401 -0.64576697 -0.40197501 -0.57001603\n\t\t -0.392667 -0.72172999 -0.65601897 -0.74708998 -0.107215 -0.65570402 -0.75458598 -0.025544001\n\t\t -0.64915401 -0.64576697 -0.40197501 -0.64915401 -0.64576697 -0.40197501 -0.64473897\n\t\t -0.64809602 -0.40531901 -0.65601897 -0.74708998 -0.107215 -0.585904 -0.457816 -0.66867101\n\t\t -0.57001603 -0.392667 -0.72172999 -0.55052698 -0.17002 -0.817321 -0.55052698 -0.17002\n\t\t -0.817321 -0.55066502 -0.180005 -0.81508702 -0.585904 -0.457816 -0.66867101 -0.020722\n\t\t -0.48061299 -0.876688 -0.018859999 -0.434221 -0.90060902 -0.0070799999 -0.074284002\n\t\t -0.99721199 -0.018859999 -0.434221 -0.90060902 -0.020722 -0.48061299 -0.876688 -0.030305\n\t\t -0.63824701 -0.76923501 -0.0070799999 -0.074284002 -0.99721199 -0.0066229999 -0.120061\n\t\t -0.99274498 -0.020722 -0.48061299 -0.876688 -0.55066502 -0.180005 -0.81508702 -0.55052698\n\t\t -0.17002 -0.817321 -0.57223302 0.056306999 -0.818156 -0.57223302 0.056306999 -0.818156\n\t\t -0.57233202 0.024293 -0.81966197 -0.55066502 -0.180005 -0.81508702 -0.0066229999\n\t\t -0.120061 -0.99274498 -0.0070799999 -0.074284002 -0.99721199 -0.0082400003 0.216445\n\t\t -0.97626001 -0.57233202 0.024293 -0.81966197 -0.57223302 0.056306999 -0.818156 -0.53930998\n\t\t 0.16154 -0.82646799 -0.53930998 0.16154 -0.82646799 -0.538544 0.161935 -0.82688999\n\t\t -0.57233202 0.024293 -0.81966197 -0.0082400003 0.216445 -0.97626001 0.011262 0.33159301\n\t\t -0.94335502 0.010651 0.33149499 -0.94339699 0.010651 0.33149499 -0.94339699 -0.0083010001\n\t\t 0.177104 -0.98415703 -0.0082400003 0.216445 -0.97626001 -0.0082400003 0.216445 -0.97626001\n\t\t -0.0083010001 0.177104 -0.98415703 -0.0066229999 -0.120061 -0.99274498 -0.71158701\n\t\t -0.62161601 0.327472 -0.70797902 -0.64050198 0.29752901 -0.707524 -0.54562098 0.449119\n\t\t -0.183846 -0.607939 0.77240598 -0.182537 -0.57874203 0.79482001 -0.18217 -0.76286203\n\t\t 0.62036699 -0.18217 -0.76286203 0.62036699 -0.17353199 -0.78720999 0.591766 -0.183846\n\t\t -0.607939 0.77240598 -0.182537 -0.57874203 0.79482001 -0.183846 -0.607939 0.77240598\n\t\t -0.177377 -0.454795 0.87275398 -0.177377 -0.454795 0.87275398 -0.177347 -0.44530499\n\t\t 0.87764001 -0.182537 -0.57874203 0.79482001 -0.177347 -0.44530499 0.87764001 -0.177377\n\t\t -0.454795 0.87275398 -0.176432 -0.40368 0.89772701 -0.176432 -0.40368 0.89772701\n\t\t -0.179424 -0.40111899 0.89828199 -0.177347 -0.44530499 0.87764001 -0.083043002 -0.37483901\n\t\t 0.92336297 -0.179424 -0.40111899 0.89828199 -0.176432 -0.40368 0.89772701 -0.176432\n\t\t -0.40368 0.89772701 -0.080571003 -0.37441 0.923756 -0.083043002 -0.37483901 0.92336297\n\t\t -0.725128 -0.390001 0.56752902 -0.720622 -0.398339 0.56747699 -0.70256698 -0.37304401\n\t\t 0.60600197 -0.70256698 -0.37304401 0.60600197 -0.70120502 -0.3734 0.60735899 -0.725128\n\t\t -0.390001 0.56752902 -0.70313799 -0.52371502 0.480957 -0.707524 -0.54562098 0.449119\n\t\t -0.69800401 -0.45965001 0.549101 -0.69800401 -0.45965001 0.549101 -0.70268899 -0.45132801\n\t\t 0.55002898 -0.70313799 -0.52371502 0.480957 -0.720622 -0.398339 0.56747699 -0.725128\n\t\t -0.390001 0.56752902 -0.70268899 -0.45132801 0.55002898 -0.70268899 -0.45132801 0.55002898\n\t\t -0.69800401 -0.45965001 0.549101 -0.720622 -0.398339 0.56747699 -0.707524 -0.54562098\n\t\t 0.449119 -0.70313799 -0.52371502 0.480957 -0.71158701 -0.62161601 0.327472 -0.17353199\n\t\t -0.78720999 0.591766 -0.18217 -0.76286203 0.62036699 -0.12876099 -0.89500999 0.427057\n\t\t -0.12876099 -0.89500999 0.427057 -0.115239 -0.91333997 0.390551 -0.17353199 -0.78720999\n\t\t 0.591766;\n\tsetAttr \".n[15936:16101]\" -type \"float3\"  -0.77047002 0.63587803 -0.045108002 -0.81276202\n\t\t 0.58255398 -0.0070810001 -0.80522299 0.59289998 -0.0092470003 -0.80522299 0.59289998\n\t\t -0.0092470003 -0.77847701 0.627011 -0.02884 -0.77047002 0.63587803 -0.045108002 -0.77047002\n\t\t 0.63587803 -0.045108002 -0.77847701 0.627011 -0.02884 -0.73782903 0.67059499 -0.076877996\n\t\t -0.73782903 0.67059499 -0.076877996 -0.73714298 0.67164803 -0.074224003 -0.77047002\n\t\t 0.63587803 -0.045108002 -0.055300001 0.998119 0.026459999 -0.049716 0.99845701 0.024751\n\t\t -0.051516999 0.99834198 0.025697 -0.051516999 0.99834198 0.025697 -0.055240002 0.99809903\n\t\t 0.027315 -0.055300001 0.998119 0.026459999 -0.070256002 0.99725097 0.023561001 -0.07288\n\t\t 0.997087 0.022492001 -0.055300001 0.998119 0.026459999 -0.055300001 0.998119 0.026459999\n\t\t -0.055240002 0.99809903 0.027315 -0.070256002 0.99725097 0.023561001 -0.73309898\n\t\t 0.67279202 -0.099583998 -0.73714298 0.67164803 -0.074224003 -0.73782903 0.67059499\n\t\t -0.076877996 -0.73782903 0.67059499 -0.076877996 -0.732831 0.67307401 -0.099646002\n\t\t -0.73309898 0.67279202 -0.099583998 -0.082401998 0.99641401 0.019227 -0.085666999\n\t\t 0.99616802 0.01764 -0.07288 0.997087 0.022492001 -0.07288 0.997087 0.022492001 -0.070256002\n\t\t 0.99725097 0.023561001 -0.082401998 0.99641401 0.019227 -0.612275 0.170632 -0.77201301\n\t\t -0.56668299 -0.141335 -0.81172299 -0.55697 -0.179299 -0.81094801 -0.55697 -0.179299\n\t\t -0.81094801 -0.610102 0.134496 -0.78082401 -0.612275 0.170632 -0.77201301 -0.55697\n\t\t -0.179299 -0.81094801 -0.56668299 -0.141335 -0.81172299 -0.51400799 -0.316273 -0.79734999\n\t\t -0.51400799 -0.316273 -0.79734999 -0.51397598 -0.316333 -0.79734701 -0.55697 -0.179299\n\t\t -0.81094801 -0.612275 0.170632 -0.77201301 -0.610102 0.134496 -0.78082401 -0.61291301\n\t\t 0.30146599 -0.73038101 -0.61291301 0.30146599 -0.73038101 -0.61292201 0.30134901\n\t\t -0.73042202 -0.612275 0.170632 -0.77201301 -0.245616 0.96921599 -0.017121 -0.245616\n\t\t 0.96921599 -0.017121 -0.323075 0.93708903 -0.132239 -0.323075 0.93708903 -0.132239\n\t\t -0.328841 0.93378699 -0.14108901 -0.245616 0.96921599 -0.017121 -0.328841 0.93378699\n\t\t -0.14108901 -0.323075 0.93708903 -0.132239 -0.39925101 0.88114601 -0.25333899 -0.39925101\n\t\t 0.88114601 -0.25333899 -0.39928401 0.88112199 -0.253371 -0.328841 0.93378699 -0.14108901\n\t\t -0.61010402 0.13446601 -0.78082699 -0.61129898 0.15253501 -0.77656102 -0.56194401\n\t\t -0.160285 -0.81149697 -0.56194401 -0.160285 -0.81149697 -0.55697 -0.179299 -0.81094801\n\t\t -0.61010402 0.13446601 -0.78082699 -0.55697 -0.179299 -0.81094801 -0.56194401 -0.160285\n\t\t -0.81149697 -0.51397997 -0.31630501 -0.797355 -0.51397997 -0.31630501 -0.797355 -0.51397997\n\t\t -0.31630501 -0.797355 -0.55697 -0.179299 -0.81094801 -0.56671602 -0.141183 -0.81172699\n\t\t -0.56194401 -0.160285 -0.81149697 -0.61129898 0.15253501 -0.77656102 -0.61129898\n\t\t 0.15253501 -0.77656102 -0.61227101 0.17053901 -0.77203703 -0.56671602 -0.141183 -0.81172699\n\t\t -0.56194401 -0.160285 -0.81149697 -0.56671602 -0.141183 -0.81172699 -0.513973 -0.31626999\n\t\t -0.79737401 -0.513973 -0.31626999 -0.79737401 -0.51397997 -0.31630501 -0.797355 -0.56194401\n\t\t -0.160285 -0.81149697 -0.61129898 0.15253501 -0.77656102 -0.61010402 0.13446601 -0.78082699\n\t\t -0.61291599 0.30137599 -0.73041499 -0.61291599 0.30137599 -0.73041499 -0.61291599\n\t\t 0.30137599 -0.73041499 -0.61129898 0.15253501 -0.77656102 -0.61227101 0.17053901\n\t\t -0.77203703 -0.61129898 0.15253501 -0.77656102 -0.61291599 0.30137599 -0.73041499\n\t\t -0.61291599 0.30137599 -0.73041499 -0.61291599 0.30137599 -0.73041499 -0.61227101\n\t\t 0.17053901 -0.77203703 -0.245616 0.96921599 -0.017121 -0.144113 0.989407 -0.017488001\n\t\t -0.326038 0.935417 -0.13672701 -0.326038 0.935417 -0.13672701 -0.328816 0.93379998\n\t\t -0.14105999 -0.245616 0.96921599 -0.017121 -0.326038 0.935417 -0.13672701 -0.144113\n\t\t 0.989407 -0.017488001 -0.152078 0.98821402 -0.017457001 -0.152078 0.98821402 -0.017457001\n\t\t -0.32368401 0.93674898 -0.133154 -0.326038 0.935417 -0.13672701 -0.328816 0.93379998\n\t\t -0.14105999 -0.326038 0.935417 -0.13672701 -0.39928401 0.88112199 -0.253371 -0.39928401\n\t\t 0.88112199 -0.253371 -0.39925101 0.88114601 -0.25333899 -0.328816 0.93379998 -0.14105999\n\t\t -0.399281 0.88111502 -0.2534 -0.39928401 0.88112199 -0.253371 -0.326038 0.935417\n\t\t -0.13672701 -0.326038 0.935417 -0.13672701 -0.32368401 0.93674898 -0.133154 -0.399281\n\t\t 0.88111502 -0.2534 0.152476 -0.98184502 -0.112831 0.152476 -0.98184502 -0.112831\n\t\t 0.058169 -0.96991402 -0.236398 0.058169 -0.96991402 -0.236398 0.054416001 -0.96895099\n\t\t -0.241192 0.152476 -0.98184502 -0.112831 0.054416001 -0.96895099 -0.241192 0.058169\n\t\t -0.96991402 -0.236398 -0.041384 -0.93248999 -0.35881701 -0.041384 -0.93248999 -0.35881701\n\t\t -0.041384 -0.93248999 -0.35881701 0.054416001 -0.96895099 -0.241192 -0.61215198 0.168587\n\t\t -0.77256 -0.56710202 -0.139533 -0.81174201 -0.557576 -0.177009 -0.81103402 -0.557576\n\t\t -0.177009 -0.81103402 -0.60996801 0.13282201 -0.78121501 -0.61215198 0.168587 -0.77256\n\t\t -0.61215198 0.168587 -0.77256 -0.60996801 0.13282201 -0.78121501 -0.613038 0.297775\n\t\t -0.73178798 -0.613038 0.297775 -0.73178798 -0.613038 0.297775 -0.73178798 -0.61215198\n\t\t 0.168587 -0.77256 -0.557576 -0.177009 -0.81103402 -0.56710202 -0.139533 -0.81174201\n\t\t -0.51540899 -0.312365 -0.79798597 -0.51540899 -0.312365 -0.79798597 -0.51540899 -0.312365\n\t\t -0.79798597 -0.557576 -0.177009 -0.81103402 -0.23413999 0.97220302 -0.00070199999\n\t\t -0.23413999 0.97220302 -0.00070199999 -0.314895 0.94154102 -0.119757 -0.314895 0.94154102\n\t\t -0.119757 -0.32056999 0.938483 -0.12839299 -0.23413999 0.97220302 -0.00070199999\n\t\t -0.32056999 0.938483 -0.12839299 -0.314895 0.94154102 -0.119757 -0.393998 0.88593\n\t\t -0.24473 -0.393998 0.88593 -0.24473;\n\tsetAttr \".n[16102:16267]\" -type \"float3\"  -0.39397201 0.88594103 -0.24473301 -0.32056999\n\t\t 0.938483 -0.12839299 0.16474199 -0.98164397 -0.096104003 0.16474199 -0.98164397 -0.096104003\n\t\t 0.068240002 -0.97226602 -0.223702 0.068240002 -0.97226602 -0.223702 0.064760998 -0.97147501\n\t\t -0.228128 0.16474199 -0.98164397 -0.096104003 0.064760998 -0.97147501 -0.228128 0.068240002\n\t\t -0.97226602 -0.223702 -0.033663001 -0.93627203 -0.34966001 -0.033663001 -0.93627203\n\t\t -0.34966001 -0.033693001 -0.93629497 -0.34959599 0.064760998 -0.97147501 -0.228128\n\t\t 0.45576599 -0.037385002 -0.889314 0.49910799 -0.088200003 -0.86203998 0.47155601\n\t\t 0.083318003 -0.877891 0.47155601 0.083318003 -0.877891 0.449359 0.045595001 -0.892187\n\t\t 0.45576599 -0.037385002 -0.889314 0.77647001 -0.27366599 -0.56762701 0.69815803 -0.368642\n\t\t -0.61374199 0.71421599 -0.39623401 -0.57696998 0.71421599 -0.39623401 -0.57696998\n\t\t 0.77734101 -0.27018201 -0.56810498 0.77647001 -0.27366599 -0.56762701 -0.98427403\n\t\t 0.03943 0.172189 -0.974132 0.084384002 0.20963401 -0.97380698 -0.087834999 0.209728\n\t\t -0.97380698 -0.087834999 0.209728 -0.98395002 -0.042941 0.173198 -0.98427403 0.03943\n\t\t 0.172189 -0.79606199 0.27369601 0.539792 -0.81965703 0.36876401 0.43837899 -0.79729801\n\t\t 0.392728 0.45834601 -0.79729801 0.392728 0.45834601 -0.79649198 0.269943 0.54104602\n\t\t -0.79606199 0.27369601 0.539792 0.561831 0.26322901 -0.78425598 0.55712801 0.25446901\n\t\t -0.79047698 0.625916 0.42256701 -0.65548903 0.625916 0.42256701 -0.65548903 0.63800198\n\t\t 0.467583 -0.611817 0.561831 0.26322901 -0.78425598 0.55712801 0.25446901 -0.79047698\n\t\t 0.561831 0.26322901 -0.78425598 0.449359 0.045595001 -0.892187 0.449359 0.045595001\n\t\t -0.892187 0.47155601 0.083318003 -0.877891 0.55712801 0.25446901 -0.79047698 0.735268\n\t\t 0.30333099 -0.60611099 0.63800198 0.467583 -0.611817 0.625916 0.42256701 -0.65548903\n\t\t 0.625916 0.42256701 -0.65548903 0.73640198 0.29988399 -0.60645002 0.735268 0.30333099\n\t\t -0.60611099 0.61084199 -0.233594 -0.75651002 0.61706102 -0.24152599 -0.74893302 0.49910799\n\t\t -0.088200003 -0.86203998 0.49910799 -0.088200003 -0.86203998 0.45576599 -0.037385002\n\t\t -0.889314 0.61084199 -0.233594 -0.75651002 -0.89973301 -0.265425 0.34645301 -0.90366101\n\t\t -0.25928801 0.34083399 -0.77778798 -0.42321301 0.46468899 -0.77778798 -0.42321301\n\t\t 0.46468899 -0.72809601 -0.47185701 0.497219 -0.89973301 -0.265425 0.34645301 -0.90366101\n\t\t -0.25928801 0.34083399 -0.89973301 -0.265425 0.34645301 -0.98395002 -0.042941 0.173198\n\t\t -0.98395002 -0.042941 0.173198 -0.97380698 -0.087834999 0.209728 -0.90366101 -0.25928801\n\t\t 0.34083399 -0.76567298 -0.30409601 0.56680799 -0.72809601 -0.47185701 0.497219 -0.77778798\n\t\t -0.42321301 0.46468899 -0.77778798 -0.42321301 0.46468899 -0.76678401 -0.30021301\n\t\t 0.567375 -0.76567298 -0.30409601 0.56680799 -0.915784 0.23108999 0.32853699 -0.91129303\n\t\t 0.23881 0.33543301 -0.974132 0.084384002 0.20963401 -0.974132 0.084384002 0.20963401\n\t\t -0.98427403 0.03943 0.172189 -0.915784 0.23108999 0.32853699 0.056276999 -0.96942699\n\t\t -0.238839 0.058171 -0.96991199 -0.236405 -0.041354001 -0.932491 -0.35881701 -0.041354001\n\t\t -0.932491 -0.35881701 -0.041352 -0.932495 -0.358807 0.056276999 -0.96942699 -0.238839\n\t\t 0.053683002 -0.96875602 -0.242136 0.056276999 -0.96942699 -0.238839 -0.041352 -0.932495\n\t\t -0.358807 -0.041352 -0.932495 -0.358807 -0.041384 -0.93247998 -0.358843 0.053683002\n\t\t -0.96875602 -0.242136 0.058171 -0.96991199 -0.236405 0.056276999 -0.96942699 -0.238839\n\t\t 0.089481004 -0.98947603 -0.113712 0.089481004 -0.98947603 -0.113712 0.152476 -0.98184502\n\t\t -0.112831 0.058171 -0.96991199 -0.236405 0.094059996 -0.98905802 -0.113652 0.089481004\n\t\t -0.98947603 -0.113712 0.056276999 -0.96942699 -0.238839 0.056276999 -0.96942699 -0.238839\n\t\t 0.053683002 -0.96875602 -0.242136 0.094059996 -0.98905802 -0.113652 0.71421599 -0.39623401\n\t\t -0.57696998 0.69815803 -0.368642 -0.61374199 0.61706102 -0.24152599 -0.74893302 0.61706102\n\t\t -0.24152599 -0.74893302 0.61084199 -0.233594 -0.75651002 0.71421599 -0.39623401 -0.57696998\n\t\t -0.79729801 0.392728 0.45834601 -0.81965703 0.36876401 0.43837899 -0.91129303 0.23881\n\t\t 0.33543301 -0.91129303 0.23881 0.33543301 -0.915784 0.23108999 0.32853699 -0.79729801\n\t\t 0.392728 0.45834601 -0.80385399 6.0999999e-05 0.59482598 -0.80385399 0 0.59482598\n\t\t -0.80383998 0 0.59484601 -0.80383998 0 0.59484601 -0.80381399 -3.1e-05 0.59487998\n\t\t -0.80385399 6.0999999e-05 0.59482598 -0.80385399 0 0.59482598 -0.80385399 6.0999999e-05\n\t\t 0.59482598 -0.80386502 0 0.59481102 -0.80386502 0 0.59481102 -0.80385399 -3.1e-05\n\t\t 0.59482598 -0.80385399 0 0.59482598 -0.80385399 -3.1e-05 0.59482598 -0.80386502 0\n\t\t 0.59481102 -0.80386502 -3.1e-05 0.59481102 -0.80386502 -3.1e-05 0.59481102 -0.80385399\n\t\t 0 0.59482598 -0.80385399 -3.1e-05 0.59482598 -0.80385399 0 0.59482598 -0.80386502\n\t\t -3.1e-05 0.59481102 -0.80385399 0 0.59482598 -0.80385399 0 0.59482598 -0.80385399\n\t\t 0 0.59482598 -0.80385399 0 0.59482598 -0.80381399 -3.1e-05 0.59487998 -0.80383998\n\t\t 0 0.59484601 -0.80385399 2.9999999e-05 0.59482598 -0.80385399 2.9999999e-05 0.59482598\n\t\t -0.80381399 0 0.59487998 -0.80381399 -3.1e-05 0.59487998 -0.80381399 0 0.59487998\n\t\t -0.80385399 2.9999999e-05 0.59482598 -0.80386502 6.0999999e-05 0.59481102 -0.80386502\n\t\t 6.0999999e-05 0.59481102 -0.80387998 6.0999999e-05 0.59479201 -0.80381399 0 0.59487998\n\t\t -0.80387998 6.0999999e-05 0.59479201 -0.80386502 6.0999999e-05 0.59481102 -0.80385399\n\t\t 0 0.59482598 -0.80385399 0 0.59482598 -0.80385399 0 0.59482598 -0.80387998 6.0999999e-05\n\t\t 0.59479201 -0.56378502 -0.152964 -0.81163299 -0.611184 0.150766 -0.77699703;\n\tsetAttr \".n[16268:16433]\" -type \"float3\"  -0.61215198 0.16788501 -0.77271301 -0.61215198\n\t\t 0.16788501 -0.77271301 -0.56725198 -0.138952 -0.81173801 -0.56378502 -0.152964 -0.81163299\n\t\t -0.61313403 0.29658699 -0.73219001 -0.61215198 0.16788501 -0.77271301 -0.611184 0.150766\n\t\t -0.77699703 -0.611184 0.150766 -0.77699703 -0.61310399 0.296801 -0.73212898 -0.61313403\n\t\t 0.29658699 -0.73219001 -0.515836 -0.311113 -0.798199 -0.56378502 -0.152964 -0.81163299\n\t\t -0.56725198 -0.138952 -0.81173801 -0.56725198 -0.138952 -0.81173801 -0.51586801 -0.31105301\n\t\t -0.79820198 -0.515836 -0.311113 -0.798199 -0.39220399 0.88756198 -0.24168199 -0.31693801\n\t\t 0.94046599 -0.122777 -0.312731 0.94267899 -0.116431 -0.312731 0.94267899 -0.116431\n\t\t -0.39220601 0.88753599 -0.24177501 -0.39220399 0.88756198 -0.24168199 -0.231612 0.97280401\n\t\t 0.003021 -0.312731 0.94267899 -0.116431 -0.31693801 0.94046599 -0.122777 -0.31693801\n\t\t 0.94046599 -0.122777 -0.231612 0.97280401 0.003021 -0.231612 0.97280401 0.003021\n\t\t 0.068088003 -0.972269 -0.22373401 -0.030915 -0.93760401 -0.346329 -0.031098999 -0.937518\n\t\t -0.34654501 -0.031098999 -0.937518 -0.34654501 0.067446999 -0.97212398 -0.22455899\n\t\t 0.068088003 -0.972269 -0.22373401 0.16755 -0.98152298 -0.092412002 0.068088003 -0.972269\n\t\t -0.22373401 0.067446999 -0.97212398 -0.22455899 0.067446999 -0.97212398 -0.22455899\n\t\t 0.16755 -0.98152298 -0.092412002 0.16755 -0.98152298 -0.092412002 -0.79439801 -0.124093\n\t\t 0.59458601 -0.77490699 -0.182687 0.60509902 -0.76783597 -0.202343 0.607853 -0.79439801\n\t\t -0.124093 0.59458601 -0.76783597 -0.202343 0.607853 -0.76605898 -0.207469 0.60836703\n\t\t -0.76783597 -0.202343 0.607853 -0.74912202 -0.21397001 0.62692398 -0.76605898 -0.207469\n\t\t 0.60836703 -0.76783597 -0.202343 0.607853 -0.75698298 -0.203354 0.620987 -0.74912202\n\t\t -0.21397001 0.62692398 -0.74912202 -0.21397001 0.62692398 -0.77110499 -0.26570299\n\t\t 0.578619 -0.76605898 -0.207469 0.60836703 -0.79439801 -0.124093 0.59458601 -0.76605898\n\t\t -0.207469 0.60836703 -0.79671001 -0.115425 0.59323698 0.127538 0.89056897 -0.436602\n\t\t 0.11811 0.83190101 -0.54220998 0 0.83683598 -0.54745299 0 0.83683598 -0.54745299\n\t\t 0 0.89693397 -0.44216499 0.127538 0.89056897 -0.436602 0.139838 0.92673999 -0.34871\n\t\t 0.127538 0.89056897 -0.436602 0 0.89693397 -0.44216499 0 0.89693397 -0.44216499 0\n\t\t 0.93568701 -0.35283199 0.139838 0.92673999 -0.34871 0.15064099 0.95154703 -0.268078\n\t\t 0.139838 0.92673999 -0.34871 0 0.93568701 -0.35283199 0 0.93568701 -0.35283199 0\n\t\t 0.96289498 -0.26987699 0.15064099 0.95154703 -0.268078 0.163645 0.97573698 -0.145456\n\t\t 0.15064099 0.95154703 -0.268078 0 0.96289498 -0.26987699 0 0.96289498 -0.26987699\n\t\t 0 0.98974299 -0.14286099 0.163645 0.97573698 -0.145456 0.163645 0.97573698 -0.145456\n\t\t 0 0.98974299 -0.14286099 0 0.99262601 0.121221 0 0.99262601 0.121221 0.18821 0.97557002\n\t\t 0.113317 0.163645 0.97573698 -0.145456 0.163645 0.97573698 -0.145456 0.18821 0.97557002\n\t\t 0.113317 0.38539401 0.918652 0.086888 0.434508 0.83260602 0.34346801 0.38539401 0.918652\n\t\t 0.086888 0.18821 0.97557002 0.113317 0.38539401 0.918652 0.086888 0.434508 0.83260602\n\t\t 0.34346801 0.64942002 0.73316598 0.201794 0.667943 0.68839097 0.28279099 0.64942002\n\t\t 0.73316598 0.201794 0.434508 0.83260602 0.34346801 0.64942002 0.73316598 0.201794\n\t\t 0.667943 0.68839097 0.28279099 0.800735 0.58722198 0.118293 0.800735 0.58722198 0.118293\n\t\t 0.77601701 0.62747902 0.063785002 0.64942002 0.73316598 0.201794 0.76869601 0.63868302\n\t\t -0.034518 0.77601701 0.62747902 0.063785002 0.800735 0.58722198 0.118293 0.800735\n\t\t 0.58722198 0.118293 0.70102 0.70938301 -0.073123001 0.76869601 0.63868302 -0.034518\n\t\t 0.434508 0.83260602 0.34346801 0.442444 0.78121197 0.44039899 0.667943 0.68839097\n\t\t 0.28279099 0.442444 0.78121197 0.44039899 0.434508 0.83260602 0.34346801 0.21250699\n\t\t 0.89602101 0.38985601 0.18821 0.97557002 0.113317 0.21250699 0.89602101 0.38985601\n\t\t 0.434508 0.83260602 0.34346801 0.21250699 0.89602101 0.38985601 0.18821 0.97557002\n\t\t 0.113317 0 0.99262601 0.121221 0.21250699 0.89602101 0.38985601 0.21708301 0.84318501\n\t\t 0.49184799 0.442444 0.78121197 0.44039899 0.21708301 0.84318501 0.49184799 0.21250699\n\t\t 0.89602101 0.38985601 0 0.91587001 0.40147501 0 0.99262601 0.121221 0 0.91587001\n\t\t 0.40147501 0.21250699 0.89602101 0.38985601 0 0.91587001 0.40147501 0 0.86409599\n\t\t 0.503326 0.21708301 0.84318501 0.49184799 0.76869601 0.63868302 -0.034518 0.68378699\n\t\t 0.72614801 -0.071721002 0.77601701 0.62747902 0.063785002 0.76869601 0.63868302 -0.034518\n\t\t 0.760818 0.64353198 -0.083806001 0.68378699 0.72614801 -0.071721002 0.760818 0.64353198\n\t\t -0.083806001 0.72331101 0.67542702 -0.143594 0.68378699 0.72614801 -0.071721002 0.72331101\n\t\t 0.67542702 -0.143594 0.760818 0.64353198 -0.083806001 0.76868498 0.61694402 -0.168832\n\t\t 0.76868498 0.61694402 -0.168832 0.73484498 0.64768201 -0.20127501 0.72331101 0.67542702\n\t\t -0.143594 0.647407 0.73075598 -0.216474 0.72331101 0.67542702 -0.143594 0.73484498\n\t\t 0.64768201 -0.20127501 0.68378699 0.72614801 -0.071721002 0.72331101 0.67542702 -0.143594\n\t\t 0.647407 0.73075598 -0.216474 0.73484498 0.64768201 -0.20127501 0.64054197 0.72254801\n\t\t -0.26005599 0.647407 0.73075598 -0.216474 0.59146202 0.78068203 -0.201763 0.647407\n\t\t 0.73075598 -0.216474 0.64054197 0.72254801 -0.26005599 0.647407 0.73075598 -0.216474\n\t\t 0.59146202 0.78068203 -0.201763 0.68378699 0.72614801 -0.071721002;\n\tsetAttr \".n[16434:16599]\" -type \"float3\"  0.64054197 0.72254801 -0.26005599 0.54630101\n\t\t 0.79003203 -0.27821699 0.59146202 0.78068203 -0.201763 0.480398 0.858832 -0.177834\n\t\t 0.59146202 0.78068203 -0.201763 0.54630101 0.79003203 -0.27821699 0.68378699 0.72614801\n\t\t -0.071721002 0.59146202 0.78068203 -0.201763 0.480398 0.858832 -0.177834 0.54630101\n\t\t 0.79003203 -0.27821699 0.44253099 0.85445201 -0.272172 0.480398 0.858832 -0.177834\n\t\t 0.333296 0.93076402 -0.150305 0.480398 0.858832 -0.177834 0.44253099 0.85445201 -0.272172\n\t\t 0.44253099 0.85445201 -0.272172 0.30433699 0.91499698 -0.26487601 0.333296 0.93076402\n\t\t -0.150305 0.287341 0.89477098 -0.34178799 0.30433699 0.91499698 -0.26487601 0.44253099\n\t\t 0.85445201 -0.272172 0.44253099 0.85445201 -0.272172 0.42186499 0.84159499 -0.337266\n\t\t 0.287341 0.89477098 -0.34178799 0.42186499 0.84159499 -0.337266 0.44253099 0.85445201\n\t\t -0.272172 0.54630101 0.79003203 -0.27821699 0.269972 0.86521798 -0.42250699 0.287341\n\t\t 0.89477098 -0.34178799 0.42186499 0.84159499 -0.337266 0.42186499 0.84159499 -0.337266\n\t\t 0.40673599 0.82256699 -0.39742801 0.269972 0.86521798 -0.42250699 0.269972 0.86521798\n\t\t -0.42250699 0.40673599 0.82256699 -0.39742801 0.37755701 0.79133999 -0.480865 0.37755701\n\t\t 0.79133999 -0.480865 0.24992099 0.81260097 -0.52651602 0.269972 0.86521798 -0.42250699\n\t\t 0.54630101 0.79003203 -0.27821699 0.52618498 0.783494 -0.33055601 0.42186499 0.84159499\n\t\t -0.337266 0.52618498 0.783494 -0.33055601 0.54630101 0.79003203 -0.27821699 0.64054197\n\t\t 0.72254801 -0.26005599 0.64054197 0.72254801 -0.26005599 0.630835 0.71500802 -0.301348\n\t\t 0.52618498 0.783494 -0.33055601 0.52618498 0.783494 -0.33055601 0.630835 0.71500802\n\t\t -0.301348 0.62302101 0.706949 -0.334766 0.62302101 0.706949 -0.334766 0.514036 0.77174097\n\t\t -0.37441 0.52618498 0.783494 -0.33055601 0.42186499 0.84159499 -0.337266 0.52618498\n\t\t 0.783494 -0.33055601 0.514036 0.77174097 -0.37441 0.514036 0.77174097 -0.37441 0.40673599\n\t\t 0.82256699 -0.39742801 0.42186499 0.84159499 -0.337266 0.514036 0.77174097 -0.37441\n\t\t 0.62302101 0.706949 -0.334766 0.60572499 0.70231998 -0.37395799 0.60572499 0.70231998\n\t\t -0.37395799 0.49807599 0.75294399 -0.43011001 0.514036 0.77174097 -0.37441 0.49807599\n\t\t 0.75294399 -0.43011001 0.37755701 0.79133999 -0.480865 0.40673599 0.82256699 -0.39742801\n\t\t 0.40673599 0.82256699 -0.39742801 0.514036 0.77174097 -0.37441 0.49807599 0.75294399\n\t\t -0.43011001 0.46629801 0.73361403 -0.49434501 0.49807599 0.75294399 -0.43011001 0.60572499\n\t\t 0.70231998 -0.37395799 0.37755701 0.79133999 -0.480865 0.49807599 0.75294399 -0.43011001\n\t\t 0.46629801 0.73361403 -0.49434501 0.60572499 0.70231998 -0.37395799 0.56427097 0.70908499\n\t\t -0.42284501 0.46629801 0.73361403 -0.49434501 0.41661701 0.72193199 -0.55248898 0.46629801\n\t\t 0.73361403 -0.49434501 0.56427097 0.70908499 -0.42284501 0.56427097 0.70908499 -0.42284501\n\t\t 0.54073697 0.69195902 -0.47832599 0.41661701 0.72193199 -0.55248898 0.41661701 0.72193199\n\t\t -0.55248898 0.54073697 0.69195902 -0.47832599 0.52446997 0.64376998 -0.55721802 0.52446997\n\t\t 0.64376998 -0.55721802 0.389238 0.658445 -0.644162 0.41661701 0.72193199 -0.55248898\n\t\t 0.41661701 0.72193199 -0.55248898 0.389238 0.658445 -0.644162 0.27986601 0.651842\n\t\t -0.70482397 0.27986601 0.651842 -0.70482397 0.31673101 0.70881498 -0.630288 0.41661701\n\t\t 0.72193199 -0.55248898 0.46629801 0.73361403 -0.49434501 0.41661701 0.72193199 -0.55248898\n\t\t 0.31673101 0.70881498 -0.630288 0.31673101 0.70881498 -0.630288 0.34456101 0.751809\n\t\t -0.56219298 0.46629801 0.73361403 -0.49434501 0.46629801 0.73361403 -0.49434501 0.34456101\n\t\t 0.751809 -0.56219298 0.37755701 0.79133999 -0.480865 0.37755701 0.79133999 -0.480865\n\t\t 0.34456101 0.751809 -0.56219298 0.231794 0.75266898 -0.616247 0.231794 0.75266898\n\t\t -0.616247 0.24992099 0.81260097 -0.52651602 0.37755701 0.79133999 -0.480865 0.21879099\n\t\t 0.69131601 -0.688631 0.231794 0.75266898 -0.616247 0.34456101 0.751809 -0.56219298\n\t\t 0.34456101 0.751809 -0.56219298 0.31673101 0.70881498 -0.630288 0.21879099 0.69131601\n\t\t -0.688631 0.31673101 0.70881498 -0.630288 0.27986601 0.651842 -0.70482397 0.19922601\n\t\t 0.63472903 -0.746611 0.19922601 0.63472903 -0.746611 0.21879099 0.69131601 -0.688631\n\t\t 0.31673101 0.70881498 -0.630288 0.24992099 0.81260097 -0.52651602 0.231794 0.75266898\n\t\t -0.616247 0.113804 0.762326 -0.63710803 0.113804 0.762326 -0.63710803 0.11811 0.83190101\n\t\t -0.54220998 0.24992099 0.81260097 -0.52651602 0.115819 0.69561702 -0.70901501 0.113804\n\t\t 0.762326 -0.63710803 0.231794 0.75266898 -0.616247 0.231794 0.75266898 -0.616247\n\t\t 0.21879099 0.69131601 -0.688631 0.115819 0.69561702 -0.70901501 0.21879099 0.69131601\n\t\t -0.688631 0.19922601 0.63472903 -0.746611 0.121863 0.63391399 -0.76374298 0.121863\n\t\t 0.63391399 -0.76374298 0.115819 0.69561702 -0.70901501 0.21879099 0.69131601 -0.688631\n\t\t 0 0.69801497 -0.71608299 0.115819 0.69561702 -0.70901501 0.121863 0.63391399 -0.76374298\n\t\t 0.113804 0.762326 -0.63710803 0.115819 0.69561702 -0.70901501 0 0.69801497 -0.71608299\n\t\t 0.121863 0.63391399 -0.76374298 0 0.635598 -0.77201998 0 0.69801497 -0.71608299 0\n\t\t 0.635598 -0.77201998 0.121863 0.63391399 -0.76374298 0.137762 0.55937898 -0.817384\n\t\t 0.137762 0.55937898 -0.817384 0.121863 0.63391399 -0.76374298 0.19922601 0.63472903\n\t\t -0.746611 0.137762 0.55937898 -0.817384 0 0.55014199 -0.83507103 0 0.635598 -0.77201998\n\t\t 0 0.50802302 -0.86134398 0 0.55014199 -0.83507103 0.137762 0.55937898 -0.817384 0.137762\n\t\t 0.55937898 -0.817384;\n\tsetAttr \".n[16600:16765]\" -type \"float3\"  0.130317 0.524198 -0.84156698 0 0.50802302\n\t\t -0.86134398 0.24992099 0.81260097 -0.52651602 0.11811 0.83190101 -0.54220998 0.127538\n\t\t 0.89056897 -0.436602 0.127538 0.89056897 -0.436602 0.269972 0.86521798 -0.42250699\n\t\t 0.24992099 0.81260097 -0.52651602 0.269972 0.86521798 -0.42250699 0.127538 0.89056897\n\t\t -0.436602 0.139838 0.92673999 -0.34871 0.139838 0.92673999 -0.34871 0.287341 0.89477098\n\t\t -0.34178799 0.269972 0.86521798 -0.42250699 0.30433699 0.91499698 -0.26487601 0.287341\n\t\t 0.89477098 -0.34178799 0.139838 0.92673999 -0.34871 0.139838 0.92673999 -0.34871\n\t\t 0.15064099 0.95154703 -0.268078 0.30433699 0.91499698 -0.26487601 0.30433699 0.91499698\n\t\t -0.26487601 0.15064099 0.95154703 -0.268078 0.163645 0.97573698 -0.145456 0.163645\n\t\t 0.97573698 -0.145456 0.333296 0.93076402 -0.150305 0.30433699 0.91499698 -0.26487601\n\t\t 0.38539401 0.918652 0.086888 0.333296 0.93076402 -0.150305 0.163645 0.97573698 -0.145456\n\t\t 0.480398 0.858832 -0.177834 0.333296 0.93076402 -0.150305 0.38539401 0.918652 0.086888\n\t\t 0.38539401 0.918652 0.086888 0.56436402 0.82551903 0.003266 0.480398 0.858832 -0.177834\n\t\t 0.480398 0.858832 -0.177834 0.56436402 0.82551903 0.003266 0.68378699 0.72614801\n\t\t -0.071721002 0.77601701 0.62747902 0.063785002 0.68378699 0.72614801 -0.071721002\n\t\t 0.56436402 0.82551903 0.003266 0.56436402 0.82551903 0.003266 0.64942002 0.73316598\n\t\t 0.201794 0.77601701 0.62747902 0.063785002 0.64942002 0.73316598 0.201794 0.56436402\n\t\t 0.82551903 0.003266 0.38539401 0.918652 0.086888 0.23463 0.55767298 -0.79620999 0.22880501\n\t\t 0.51984 -0.82305199 0.130317 0.524198 -0.84156698 0.22880501 0.51984 -0.82305199\n\t\t 0.23463 0.55767298 -0.79620999 0.35646799 0.53476399 -0.766132 0.35646799 0.53476399\n\t\t -0.766132 0.40182099 0.45565701 -0.794303 0.22880501 0.51984 -0.82305199 0.40182099\n\t\t 0.45565701 -0.794303 0.35646799 0.53476399 -0.766132 0.51180398 0.51226199 -0.68966901\n\t\t 0.51180398 0.51226199 -0.68966901 0.57260698 0.41622499 -0.70631301 0.40182099 0.45565701\n\t\t -0.794303 0.67136502 0.392876 -0.62842399 0.57260698 0.41622499 -0.70631301 0.51180398\n\t\t 0.51226199 -0.68966901 0.51180398 0.51226199 -0.68966901 0.58779699 0.53438902 -0.60738999\n\t\t 0.67136502 0.392876 -0.62842399 0.35646799 0.53476399 -0.766132 0.23463 0.55767298\n\t\t -0.79620999 0.19922601 0.63472903 -0.746611 0.19922601 0.63472903 -0.746611 0.27986601\n\t\t 0.651842 -0.70482397 0.35646799 0.53476399 -0.766132 0.35646799 0.53476399 -0.766132\n\t\t 0.27986601 0.651842 -0.70482397 0.389238 0.658445 -0.644162 0.389238 0.658445 -0.644162\n\t\t 0.51180398 0.51226199 -0.68966901 0.35646799 0.53476399 -0.766132 0.52446997 0.64376998\n\t\t -0.55721802 0.58779699 0.53438902 -0.60738999 0.51180398 0.51226199 -0.68966901 0.51180398\n\t\t 0.51226199 -0.68966901 0.389238 0.658445 -0.644162 0.52446997 0.64376998 -0.55721802\n\t\t 0.58779699 0.53438902 -0.60738999 0.52446997 0.64376998 -0.55721802 0.54073697 0.69195902\n\t\t -0.47832599 0.54073697 0.69195902 -0.47832599 0.60813701 0.648637 -0.45764399 0.58779699\n\t\t 0.53438902 -0.60738999 0.60813701 0.648637 -0.45764399 0.54073697 0.69195902 -0.47832599\n\t\t 0.56427097 0.70908499 -0.42284501 0.56427097 0.70908499 -0.42284501 0.63898098 0.66870701\n\t\t -0.380178 0.60813701 0.648637 -0.45764399 0.63898098 0.66870701 -0.380178 0.56427097\n\t\t 0.70908499 -0.42284501 0.60572499 0.70231998 -0.37395799 0.60572499 0.70231998 -0.37395799\n\t\t 0.67794901 0.65756297 -0.32862899 0.63898098 0.66870701 -0.380178 0.67794901 0.65756297\n\t\t -0.32862899 0.60572499 0.70231998 -0.37395799 0.62302101 0.706949 -0.334766 0.62302101\n\t\t 0.706949 -0.334766 0.68347901 0.66239101 -0.30674899 0.67794901 0.65756297 -0.32862899\n\t\t 0.69733202 0.66467702 -0.26820201 0.68347901 0.66239101 -0.30674899 0.62302101 0.706949\n\t\t -0.334766 0.62302101 0.706949 -0.334766 0.630835 0.71500802 -0.301348 0.69733202\n\t\t 0.66467702 -0.26820201 0.69733202 0.66467702 -0.26820201 0.630835 0.71500802 -0.301348\n\t\t 0.64054197 0.72254801 -0.26005599 0.64054197 0.72254801 -0.26005599 0.73484498 0.64768201\n\t\t -0.20127501 0.69733202 0.66467702 -0.26820201 0.69733202 0.66467702 -0.26820201 0.73484498\n\t\t 0.64768201 -0.20127501 0.76868498 0.61694402 -0.168832 0.28373501 -0.067477003 -0.95652598\n\t\t 0.25465101 -0.32026699 -0.91245902 0.180246 -0.33177301 -0.92597997 0.180246 -0.33177301\n\t\t -0.92597997 0.205396 -0.073857002 -0.97588801 0.28373501 -0.067477003 -0.95652598\n\t\t 0.28566399 0.155375 -0.94565099 0.28373501 -0.067477003 -0.95652598 0.205396 -0.073857002\n\t\t -0.97588801 0.205396 -0.073857002 -0.97588801 0.20923699 0.150031 -0.96628702 0.28566399\n\t\t 0.155375 -0.94565099 0.20923699 0.150031 -0.96628702 0.205396 -0.073857002 -0.97588801\n\t\t 0 -0.085026003 -0.99637902 0 -0.085026003 -0.99637902 0.205396 -0.073857002 -0.97588801\n\t\t 0.180246 -0.33177301 -0.92597997 0 -0.085026003 -0.99637902 0 0.140571 -0.990071\n\t\t 0.20923699 0.150031 -0.96628702 0.180246 -0.33177301 -0.92597997 0 -0.34574601 -0.93832803\n\t\t 0 -0.085026003 -0.99637902 0 -0.34574601 -0.93832803 0.180246 -0.33177301 -0.92597997\n\t\t 0.151893 -0.46843699 -0.87034202 0.151893 -0.46843699 -0.87034202 0.180246 -0.33177301\n\t\t -0.92597997 0.25465101 -0.32026699 -0.91245902 0.151893 -0.46843699 -0.87034202 0.00232\n\t\t -0.48311299 -0.87555498 0 -0.34574601 -0.93832803 0.0053409999 -0.50691998 -0.86197698\n\t\t 0.00232 -0.48311299 -0.87555498 0.151893 -0.46843699 -0.87034202 0.151893 -0.46843699\n\t\t -0.87034202 0.13474201 -0.49239701 -0.859878 0.0053409999 -0.50691998 -0.86197698\n\t\t 0.20923699 0.150031 -0.96628702 0 0.140571 -0.990071;\n\tsetAttr \".n[16766:16931]\" -type \"float3\"  0 0.29133499 -0.95662099 0 0.29133499\n\t\t -0.95662099 0.212567 0.286423 -0.93422502 0.20923699 0.150031 -0.96628702 0.28566399\n\t\t 0.155375 -0.94565099 0.20923699 0.150031 -0.96628702 0.212567 0.286423 -0.93422502\n\t\t 0.19986799 0.356033 -0.91284901 0.212567 0.286423 -0.93422502 0 0.29133499 -0.95662099\n\t\t 0 0.29133499 -0.95662099 0 0.37603199 -0.92660701 0.19986799 0.356033 -0.91284901\n\t\t 0.16843501 0.38826501 -0.90602398 0.19986799 0.356033 -0.91284901 0 0.37603199 -0.92660701\n\t\t 0 0.37603199 -0.92660701 0 0.410689 -0.91177499 0.16843501 0.38826501 -0.90602398\n\t\t 0.28800601 0.28941 -0.91284901 0.212567 0.286423 -0.93422502 0.19986799 0.356033\n\t\t -0.91284901 0.212567 0.286423 -0.93422502 0.28800601 0.28941 -0.91284901 0.28566399\n\t\t 0.155375 -0.94565099 0.19986799 0.356033 -0.91284901 0.27882501 0.34563199 -0.89598799\n\t\t 0.28800601 0.28941 -0.91284901 0.236403 0.37410599 -0.89674902 0.27882501 0.34563199\n\t\t -0.89598799 0.19986799 0.356033 -0.91284901 0.19986799 0.356033 -0.91284901 0.16843501\n\t\t 0.38826501 -0.90602398 0.236403 0.37410599 -0.89674902 0.22160099 -0.49013999 -0.84300399\n\t\t 0.13474201 -0.49239701 -0.859878 0.151893 -0.46843699 -0.87034202 0.151893 -0.46843699\n\t\t -0.87034202 0.229504 -0.458244 -0.85868502 0.22160099 -0.49013999 -0.84300399 0.25465101\n\t\t -0.32026699 -0.91245902 0.229504 -0.458244 -0.85868502 0.151893 -0.46843699 -0.87034202\n\t\t 0.75276297 -0.24772599 -0.60990101 0.612064 -0.29503 -0.73371398 0.582479 -0.081546001\n\t\t -0.80874503 0.582479 -0.081546001 -0.80874503 0.733527 -0.088353001 -0.67389297 0.75276297\n\t\t -0.24772599 -0.60990101 0.67168599 0.100376 -0.73400497 0.733527 -0.088353001 -0.67389297\n\t\t 0.582479 -0.081546001 -0.80874503 0.582479 -0.081546001 -0.80874503 0.51095301 0.13492601\n\t\t -0.84895402 0.67168599 0.100376 -0.73400497 0.67168599 0.100376 -0.73400497 0.51095301\n\t\t 0.13492601 -0.84895402 0.434531 0.265883 -0.86051702 0.434531 0.265883 -0.86051702\n\t\t 0.604523 0.222332 -0.76493198 0.67168599 0.100376 -0.73400497 0.733527 -0.088353001\n\t\t -0.67389297 0.67168599 0.100376 -0.73400497 0.82118601 0.082464002 -0.56467098 0.82118601\n\t\t 0.082464002 -0.56467098 0.85962802 -0.062838003 -0.50704199 0.733527 -0.088353001\n\t\t -0.67389297 0.85962802 -0.062838003 -0.50704199 0.82118601 0.082464002 -0.56467098\n\t\t 0.91457099 0.071629003 -0.39803201 0.91457099 0.071629003 -0.39803201 0.93917799\n\t\t -0.021393999 -0.342765 0.85962802 -0.062838003 -0.50704199 0.85962802 -0.062838003\n\t\t -0.50704199 0.93917799 -0.021393999 -0.342765 0.936656 -0.073642001 -0.34242201 0.936656\n\t\t -0.073642001 -0.34242201 0.866678 -0.138556 -0.47924 0.85962802 -0.062838003 -0.50704199\n\t\t 0.866678 -0.138556 -0.47924 0.75276297 -0.24772599 -0.60990101 0.733527 -0.088353001\n\t\t -0.67389297 0.866678 -0.138556 -0.47924 0.733527 -0.088353001 -0.67389297 0.85962802\n\t\t -0.062838003 -0.50704199 0.67168599 0.100376 -0.73400497 0.604523 0.222332 -0.76493198\n\t\t 0.76719302 0.18748 -0.613406 0.76719302 0.18748 -0.613406 0.82118601 0.082464002\n\t\t -0.56467098 0.67168599 0.100376 -0.73400497 0.91457099 0.071629003 -0.39803201 0.82118601\n\t\t 0.082464002 -0.56467098 0.76719302 0.18748 -0.613406 0.93917799 -0.021393999 -0.342765\n\t\t 0.96109998 0.015443 -0.27576801 0.936656 -0.073642001 -0.34242201 0.96109998 0.015443\n\t\t -0.27576801 0.93917799 -0.021393999 -0.342765 0.91457099 0.071629003 -0.39803201\n\t\t 0.91457099 0.071629003 -0.39803201 0.95057303 0.068149 -0.30293101 0.96109998 0.015443\n\t\t -0.27576801 0.914545 0.17744 -0.36348599 0.95057303 0.068149 -0.30293101 0.91457099\n\t\t 0.071629003 -0.39803201 0.91457099 0.071629003 -0.39803201 0.87543499 0.166573 -0.45372501\n\t\t 0.914545 0.17744 -0.36348599 0.76719302 0.18748 -0.613406 0.87543499 0.166573 -0.45372501\n\t\t 0.91457099 0.071629003 -0.39803201 0.56296599 0.284688 -0.77590102 0.604523 0.222332\n\t\t -0.76493198 0.434531 0.265883 -0.86051702 0.434531 0.265883 -0.86051702 0.38494 0.32704499\n\t\t -0.86305499 0.56296599 0.284688 -0.77590102 0.54674202 0.30482101 -0.77984399 0.56296599\n\t\t 0.284688 -0.77590102 0.38494 0.32704499 -0.86305499 0.38494 0.32704499 -0.86305499\n\t\t 0.37658301 0.34356099 -0.86032099 0.54674202 0.30482101 -0.77984399 0.72267401 0.25047499\n\t\t -0.64420801 0.76719302 0.18748 -0.613406 0.604523 0.222332 -0.76493198 0.604523 0.222332\n\t\t -0.76493198 0.56296599 0.284688 -0.77590102 0.72267401 0.25047499 -0.64420801 0.56296599\n\t\t 0.284688 -0.77590102 0.54674202 0.30482101 -0.77984399 0.70893103 0.27247599 -0.650518\n\t\t 0.70893103 0.27247599 -0.650518 0.72267401 0.25047499 -0.64420801 0.56296599 0.284688\n\t\t -0.77590102 0.72267401 0.25047499 -0.64420801 0.70893103 0.27247599 -0.650518 0.82270902\n\t\t 0.26100099 -0.50500298 0.82270902 0.26100099 -0.50500298 0.845065 0.239878 -0.477833\n\t\t 0.72267401 0.25047499 -0.64420801 0.845065 0.239878 -0.477833 0.87543499 0.166573\n\t\t -0.45372501 0.76719302 0.18748 -0.613406 0.76719302 0.18748 -0.613406 0.72267401\n\t\t 0.25047499 -0.64420801 0.845065 0.239878 -0.477833 0.886527 0.244766 -0.39263201\n\t\t 0.914545 0.17744 -0.36348599 0.87543499 0.166573 -0.45372501 0.87543499 0.166573\n\t\t -0.45372501 0.845065 0.239878 -0.477833 0.886527 0.244766 -0.39263201 0.886527 0.244766\n\t\t -0.39263201 0.845065 0.239878 -0.477833 0.82270902 0.26100099 -0.50500298 0.37658301\n\t\t 0.34356099 -0.86032099 0.38494 0.32704499 -0.86305499 0.30125201 0.33326599 -0.89341003\n\t\t 0.30125201 0.33326599 -0.89341003 0.38494 0.32704499 -0.86305499 0.434531 0.265883\n\t\t -0.86051702 0.434531 0.265883 -0.86051702 0.34889901 0.26948699 -0.897578 0.30125201\n\t\t 0.33326599 -0.89341003;\n\tsetAttr \".n[16932:17097]\" -type \"float3\"  0.30125201 0.33326599 -0.89341003 0.254594\n\t\t 0.35576701 -0.89922899 0.37658301 0.34356099 -0.86032099 0.435718 0.123876 -0.891518\n\t\t 0.34889901 0.26948699 -0.897578 0.434531 0.265883 -0.86051702 0.434531 0.265883 -0.86051702\n\t\t 0.51095301 0.13492601 -0.84895402 0.435718 0.123876 -0.891518 0.51611102 -0.105566\n\t\t -0.84999102 0.435718 0.123876 -0.891518 0.51095301 0.13492601 -0.84895402 0.51095301\n\t\t 0.13492601 -0.84895402 0.582479 -0.081546001 -0.80874503 0.51611102 -0.105566 -0.84999102\n\t\t 0.51611102 -0.105566 -0.84999102 0.582479 -0.081546001 -0.80874503 0.612064 -0.29503\n\t\t -0.73371398 0.612064 -0.29503 -0.73371398 0.554968 -0.32048601 -0.76765901 0.51611102\n\t\t -0.105566 -0.84999102 0.554968 -0.32048601 -0.76765901 0.612064 -0.29503 -0.73371398\n\t\t 0.60454601 -0.41624501 -0.67916399 0.60454601 -0.41624501 -0.67916399 0.612064 -0.29503\n\t\t -0.73371398 0.68038702 -0.33341801 -0.65261501 0.593059 -0.44027701 -0.674119 0.60454601\n\t\t -0.41624501 -0.67916399 0.68038702 -0.33341801 -0.65261501 0.612064 -0.29503 -0.73371398\n\t\t 0.75276297 -0.24772599 -0.60990101 0.68038702 -0.33341801 -0.65261501 0.75276297\n\t\t -0.24772599 -0.60990101 0.75180602 -0.319168 -0.57699299 0.68038702 -0.33341801 -0.65261501\n\t\t 0.75180602 -0.319168 -0.57699299 0.75276297 -0.24772599 -0.60990101 0.79707003 -0.29448\n\t\t -0.527219 -0.019471001 0.91022599 -0.41365299 -0.019471001 0.91022599 -0.41365299\n\t\t -0.019471001 0.91022599 -0.41365299 0.60454601 -0.41624501 -0.67916399 0.55468601\n\t\t -0.42967901 -0.71253097 0.554968 -0.32048601 -0.76765901 0.55468601 -0.42967901 -0.71253097\n\t\t 0.60454601 -0.41624501 -0.67916399 0.593059 -0.44027701 -0.674119 0.593059 -0.44027701\n\t\t -0.674119 0.55056101 -0.45213699 -0.70175099 0.55468601 -0.42967901 -0.71253097 0.77732497\n\t\t 0.621158 0.099645004 0.76519001 0.63307101 0.117074 0.80456501 0.59029299 0.065035\n\t\t 0.76519001 0.63307101 0.117074 0.77732497 0.621158 0.099645004 0.65277302 0.72540897\n\t\t 0.218334 0.65277302 0.72540897 0.218334 0.61743301 0.74381399 0.25596401 0.76519001\n\t\t 0.63307101 0.117074 0.61743301 0.74381399 0.25596401 0.65277302 0.72540897 0.218334\n\t\t 0.42983299 0.82023698 0.37743199 0.61743301 0.74381399 0.25596401 0.42983299 0.82023698\n\t\t 0.37743199 0.38652501 0.82813901 0.405936 0.28288299 0.95885402 -0.023987999 0.28288299\n\t\t 0.95885402 -0.023987999 0.28288299 0.95885402 -0.023987999 0.38652501 0.82813901\n\t\t 0.405936 0.42983299 0.82023698 0.37743199 0.203256 0.86927301 0.45061299 0.203256\n\t\t 0.86927301 0.45061299 0.17618699 0.871382 0.45787799 0.38652501 0.82813901 0.405936\n\t\t 0 0.878582 0.47759199 0.17618699 0.871382 0.45787799 0.203256 0.86927301 0.45061299\n\t\t 0.203256 0.86927301 0.45061299 0 0.87361002 0.48662701 0 0.878582 0.47759199 0 0.85353899\n\t\t -0.521029 0.041841999 0.84468198 -0.53363001 0.043947 0.84504098 -0.532893 0.043947\n\t\t 0.84504098 -0.532893 0 0.85386097 -0.52050197 0 0.85353899 -0.521029 0.069186002\n\t\t 0.831397 -0.551355 0.018555 0.80423599 -0.59402102 0.01413 0.80732602 -0.58993697\n\t\t 0.01413 0.80732602 -0.58993697 0.074987002 0.83132899 -0.550699 0.069186002 0.831397\n\t\t -0.551355 0.041841999 0.84468198 -0.53363001 0.069186002 0.831397 -0.551355 0.074987002\n\t\t 0.83132899 -0.550699 0.074987002 0.83132899 -0.550699 0.043947 0.84504098 -0.532893\n\t\t 0.041841999 0.84468198 -0.53363001 0.018555 0.80423599 -0.59402102 -0.036745001 0.816266\n\t\t -0.57650697 -0.038759001 0.818088 -0.57378501 -0.038759001 0.818088 -0.57378501 0.01413\n\t\t 0.80732602 -0.58993697 0.018555 0.80423599 -0.59402102 -0.052492999 0.82350099 -0.56488103\n\t\t -0.038759001 0.818088 -0.57378501 -0.036745001 0.816266 -0.57650697 -0.036745001\n\t\t 0.816266 -0.57650697 -0.052767001 0.82342702 -0.564964 -0.052492999 0.82350099 -0.56488103\n\t\t 0.412489 0.85128599 -0.32429099 0.40666699 0.85895997 -0.311142 0.403772 0.86159497\n\t\t -0.30760601 0.403772 0.86159497 -0.30760601 0.412074 0.85140198 -0.324514 0.412489\n\t\t 0.85128599 -0.32429099 0.403772 0.86159497 -0.30760601 0.40666699 0.85895997 -0.311142\n\t\t 0.380698 0.89336199 -0.238692 0.380698 0.89336199 -0.238692 0.37351999 0.89832199\n\t\t -0.23130199 0.403772 0.86159497 -0.30760601 0.37351999 0.89832199 -0.23130199 0.380698\n\t\t 0.89336199 -0.238692 0.31943801 0.94555998 -0.062258001 0.31943801 0.94555998 -0.062258001\n\t\t 0.300374 0.95218098 -0.055911999 0.37351999 0.89832199 -0.23130199 0.300374 0.95218098\n\t\t -0.055911999 0.31943801 0.94555998 -0.062258001 0.159982 0.987086 -0.0082400003 0.159982\n\t\t 0.987086 -0.0082400003 0.152868 0.98822802 -0.0059819999 0.300374 0.95218098 -0.055911999\n\t\t 0.152868 0.98822802 -0.0059819999 0.159982 0.987086 -0.0082400003 0 0.99958098 0.028932\n\t\t 0 0.99958098 0.028932 0 0.99955499 0.029847 0.152868 0.98822802 -0.0059819999 0.17069399\n\t\t 0.74073201 -0.64975399 0.134133 0.75712502 -0.63935101 0.30241799 0.62201798 -0.72224402\n\t\t 0.30241799 0.62201798 -0.72224402 0.29216 0.61883801 -0.72916502 0.17069399 0.74073201\n\t\t -0.64975399 0.29216 0.61883801 -0.72916502 0.30241799 0.62201798 -0.72224402 0.37181699\n\t\t 0.67176199 -0.64069301 0.37181699 0.67176199 -0.64069301 0.34074599 0.66788101 -0.66168499\n\t\t 0.29216 0.61883801 -0.72916502 0.34074599 0.66788101 -0.66168499 0.37181699 0.67176199\n\t\t -0.64069301 0.460567 0.63739598 -0.617742 0.460567 0.63739598 -0.617742 0.46274 0.63563401\n\t\t -0.61793298 0.34074599 0.66788101 -0.66168499 0.17069399 0.74073201 -0.64975399 0.073458999\n\t\t 0.83264601 -0.54891199 0.134133 0.75712502 -0.63935101 0.134133 0.75712502 -0.63935101\n\t\t 0.073458999 0.83264601 -0.54891199 0.036409002 0.88190401 -0.47002101 0.036409002\n\t\t 0.88190401 -0.47002101;\n\tsetAttr \".n[17098:17263]\" -type \"float3\"  0.062105 0.79461199 -0.60393202 0.134133\n\t\t 0.75712502 -0.63935101 0.055941001 0.79679501 -0.60165501 0.062105 0.79461199 -0.60393202\n\t\t 0.036409002 0.88190401 -0.47002101 0 0.89498198 -0.44610199 0.012207 0.99558598 -0.093052\n\t\t 0.036409002 0.88190401 -0.47002101 -0.0066840001 0.99932098 0.036226001 -0.0061960001\n\t\t 0.99936497 0.035096001 -0.01468 0.99840701 0.054476999 -0.01468 0.99840701 0.054476999\n\t\t -0.016694 0.99811703 0.059023 -0.0066840001 0.99932098 0.036226001 0 0.90640002 -0.42242101\n\t\t 0 0.89498198 -0.44610199 0.036409002 0.88190401 -0.47002101 -0.091558002 0.89876401\n\t\t -0.42876601 -0.13367499 0.90733898 -0.39858201 -0.13565899 0.90706998 -0.39852399\n\t\t -0.13565899 0.90706998 -0.39852399 -0.089786999 0.898449 -0.42979899 -0.091558002\n\t\t 0.89876401 -0.42876601 -0.13565899 0.90706998 -0.39852399 -0.13367499 0.90733898\n\t\t -0.39858201 -0.196546 0.92254502 -0.33208299 -0.196546 0.92254502 -0.33208299 -0.20124701\n\t\t 0.92142099 -0.33239001 -0.13565899 0.90706998 -0.39852399 -0.196546 0.92254502 -0.33208299\n\t\t -0.27436799 0.93687898 -0.216748 -0.20124701 0.92142099 -0.33239001 -0.196546 0.92254502\n\t\t -0.33208299 -0.24119499 0.93648702 -0.25459301 -0.27436799 0.93687898 -0.216748 -0.27436799\n\t\t 0.93687898 -0.216748 -0.279497 0.93682402 -0.21033999 -0.20124701 0.92142099 -0.33239001\n\t\t 0.020051001 0.90205902 -0.431146 0.026063001 0.93950498 -0.34154099 0.036409002 0.88190401\n\t\t -0.47002101 0.036409002 0.88190401 -0.47002101 0.073458999 0.83264601 -0.54891199\n\t\t 0.020051001 0.90205902 -0.431146 0 0.90640002 -0.42242101 0.036409002 0.88190401\n\t\t -0.47002101 0.026063001 0.93950498 -0.34154099 0.026063001 0.93950498 -0.34154099\n\t\t 0 0.918782 -0.394766 0 0.90640002 -0.42242101 0.36930799 -0.64257199 0.67135203 0.39364001\n\t\t -0.65619898 0.64377803 0.39360699 -0.65622401 0.64377302 0.39360699 -0.65622401 0.64377302\n\t\t 0.36403 -0.63906699 0.67755097 0.36930799 -0.64257199 0.67135203 0.36930799 -0.64257199\n\t\t 0.67135203 0.36403 -0.63906699 0.67755097 0.241621 -0.59964299 0.76292098 0.241621\n\t\t -0.59964299 0.76292098 0.25835001 -0.60600001 0.752343 0.36930799 -0.64257199 0.67135203\n\t\t 0.093448997 -0.62429601 0.77557802 0.25835001 -0.60600001 0.752343 0.241621 -0.59964299\n\t\t 0.76292098 0.241621 -0.59964299 0.76292098 0.083408996 -0.62366003 0.777233 0.093448997\n\t\t -0.62429601 0.77557802 0.032869998 -0.63117099 0.77494699 0.093448997 -0.62429601\n\t\t 0.77557802 0.083408996 -0.62366003 0.777233 0.083408996 -0.62366003 0.777233 0.031587001\n\t\t -0.63125199 0.77493501 0.032869998 -0.63117099 0.77494699 0.032869998 -0.63117099\n\t\t 0.77494699 0.031587001 -0.63125199 0.77493501 0 -0.64078802 0.76771802 0 -0.64078802\n\t\t 0.76771802 0 -0.641087 0.76746798 0.032869998 -0.63117099 0.77494699 0.105016 -0.95738202\n\t\t -0.26905599 0.105137 -0.95999497 -0.25953099 0.052462 -0.90589303 -0.42024499 0 -0.88049197\n\t\t -0.474062 0.105016 -0.95738202 -0.26905599 0.052462 -0.90589303 -0.42024499 0 -0.876499\n\t\t -0.48140299 0 -0.88049197 -0.474062 0.052462 -0.90589303 -0.42024499 0.0092169996\n\t\t -0.99842697 -0.055300001 0.0096140001 -0.99821401 -0.058963001 0.0071109999 -0.99936199\n\t\t -0.035004999 0.0071109999 -0.99936199 -0.035004999 0.0054629999 -0.99979699 -0.019409999\n\t\t 0.0092169996 -0.99842697 -0.055300001 0.422658 -0.80502999 -0.41627899 0.105137 -0.95999497\n\t\t -0.25953099 0.105016 -0.95738202 -0.26905599 0.105016 -0.95738202 -0.26905599 0.42314899\n\t\t -0.801099 -0.42330199 0.422658 -0.80502999 -0.41627899 0.49086601 -0.87082601 -0.026673\n\t\t 0.422658 -0.80502999 -0.41627899 0.42314899 -0.801099 -0.42330199 0.42314899 -0.801099\n\t\t -0.42330199 0.48473501 -0.87421799 -0.027833 0.49086601 -0.87082601 -0.026673 0.52114397\n\t\t -0.84946698 0.082553998 0.49086601 -0.87082601 -0.026673 0.48473501 -0.87421799 -0.027833\n\t\t 0.48473501 -0.87421799 -0.027833 0.51702899 -0.85222203 0.079990998 0.52114397 -0.84946698\n\t\t 0.082553998 0.51678699 -0.84380299 0.14466301 0.52114397 -0.84946698 0.082553998\n\t\t 0.51702899 -0.85222203 0.079990998 0.51702899 -0.85222203 0.079990998 0.51593697\n\t\t -0.844208 0.145335 0.51678699 -0.84380299 0.14466301 0.89902502 -0.097659998 -0.42686799\n\t\t 0.89136302 -0.046326999 -0.45091599 0.89448297 -0.21775299 -0.39049101 0.89448297\n\t\t -0.21775299 -0.39049101 0.89387 -0.23688801 -0.38063201 0.89902502 -0.097659998 -0.42686799\n\t\t 0.89387 -0.23688801 -0.38063201 0.89448297 -0.21775299 -0.39049101 0.88214999 -0.30085501\n\t\t -0.362351 0.88214999 -0.30085501 -0.362351 0.88167101 -0.30250701 -0.36214101 0.89387\n\t\t -0.23688801 -0.38063201 0.88167101 -0.30250701 -0.36214101 0.88214999 -0.30085501\n\t\t -0.362351 0.87849897 -0.31184599 -0.361929 0.87849897 -0.31184599 -0.361929 0.878344\n\t\t -0.31199801 -0.36217201 0.88167101 -0.30250701 -0.36214101 0.847211 0.113837 -0.51891702\n\t\t 0.89136302 -0.046326999 -0.45091599 0.89902502 -0.097659998 -0.42686799 0.89902502\n\t\t -0.097659998 -0.42686799 0.86515599 0.061099999 -0.497767 0.847211 0.113837 -0.51891702\n\t\t 0.847211 0.113837 -0.51891702 0.86515599 0.061099999 -0.497767 0.81859601 0.18015701\n\t\t -0.545385 0.81859601 0.18015701 -0.545385 0.80063897 0.21934099 -0.55755401 0.847211\n\t\t 0.113837 -0.51891702 0.80063897 0.21934099 -0.55755401 0.81859601 0.18015701 -0.545385\n\t\t 0.802351 0.24479499 -0.54434198 0.802351 0.24479499 -0.54434198 0.799918 0.251237\n\t\t -0.54498798 0.80063897 0.21934099 -0.55755401 0.799918 0.251237 -0.54498798 0.802351\n\t\t 0.24479499 -0.54434198 0.79768199 0.25605699 -0.54601997 0.336725 0.31133199 -0.88864398\n\t\t 0.336725 0.31133199 -0.88864398 0.336725 0.31133199 -0.88864398 0.99711299 -0.057863999\n\t\t 0.049166001 0.99758297 -0.050753001 0.047456998 0.99319702 -0.094732001 0.067722999\n\t\t 0.99319702 -0.094732001 0.067722999 0.992971 -0.096470997 0.068576999;\n\tsetAttr \".n[17264:17429]\" -type \"float3\"  0.99711299 -0.057863999 0.049166001 0.99238098\n\t\t -0.101322 0.070101999 0.992971 -0.096470997 0.068576999 0.99319702 -0.094732001 0.067722999\n\t\t 0.99319702 -0.094732001 0.067722999 0.99234998 -0.101536 0.070224002 0.99238098 -0.101322\n\t\t 0.070101999 0.99953502 0.001648 0.030458 0.99758297 -0.050753001 0.047456998 0.99711299\n\t\t -0.057863999 0.049166001 0.99711299 -0.057863999 0.049166001 0.99950403 -0.0055539999\n\t\t 0.031008 0.99953502 0.001648 0.030458 0.99912 0.039124999 0.015137 0.99953502 0.001648\n\t\t 0.030458 0.99950403 -0.0055539999 0.031008 0.99950403 -0.0055539999 0.031008 0.99926603\n\t\t 0.035310999 0.014832 0.99912 0.039124999 0.015137 0.99912 0.039124999 0.015137 0.99926603\n\t\t 0.035310999 0.014832 0.99838197 0.055881001 0.01056 0.99838197 0.055881001 0.01056\n\t\t 0.99833 0.056398999 0.012482 0.99912 0.039124999 0.015137 0.99833 0.056398999 0.012482\n\t\t 0.99838197 0.055881001 0.01056 0.94958103 -0.045931 0.31013799 0.94958103 -0.045931\n\t\t 0.31013799 0.948291 -0.047304001 0.31385899 0.99833 0.056398999 0.012482 0.99238098\n\t\t -0.101322 0.070101999 0.99234998 -0.101536 0.070224002 0.993339 -0.094212003 0.066349\n\t\t 0.993339 -0.094212003 0.066349 0.99333698 -0.094212003 0.066379003 0.99238098 -0.101322\n\t\t 0.070101999 -0.92643303 0.071780004 -0.36955401 -0.92561501 0.075747997 -0.37080801\n\t\t -0.93315297 0.072177 -0.35216001 -0.93315297 0.072177 -0.35216001 -0.93344098 0.071443997\n\t\t -0.35154399 -0.92643303 0.071780004 -0.36955401 -0.93335003 0.072423004 -0.35158601\n\t\t -0.93344098 0.071443997 -0.35154399 -0.93315297 0.072177 -0.35216001 -0.63330001\n\t\t 0.20514899 -0.74622101 -0.63330001 0.20514899 -0.74622101 -0.63330001 0.20514899\n\t\t -0.74622101 -0.92561501 0.075747997 -0.37080801 -0.92643303 0.071780004 -0.36955401\n\t\t -0.91922897 0.059664 -0.38917699 -0.91922897 0.059664 -0.38917699 -0.91841203 0.065004997\n\t\t -0.390248 -0.92561501 0.075747997 -0.37080801 -0.92051601 0.034485999 -0.38917899\n\t\t -0.91841203 0.065004997 -0.390248 -0.91922897 0.059664 -0.38917699 -0.91922897 0.059664\n\t\t -0.38917699 -0.92104697 0.029939 -0.38829899 -0.92051601 0.034485999 -0.38917899\n\t\t -0.92587799 -0.0096439999 -0.3777 -0.92051601 0.034485999 -0.38917899 -0.92104697\n\t\t 0.029939 -0.38829899 -0.92104697 0.029939 -0.38829899 -0.92595398 -0.010468 -0.37749201\n\t\t -0.92587799 -0.0096439999 -0.3777 -0.92587799 -0.0096439999 -0.3777 -0.92595398 -0.010468\n\t\t -0.37749201 -0.93118101 -0.050266001 -0.361076 -0.93118101 -0.050266001 -0.361076\n\t\t -0.93137801 -0.052096002 -0.36030701 -0.92587799 -0.0096439999 -0.3777 -0.933218\n\t\t -0.068699002 -0.35268101 -0.93137801 -0.052096002 -0.36030701 -0.93118101 -0.050266001\n\t\t -0.361076 -0.93118101 -0.050266001 -0.361076 -0.93323398 -0.068668 -0.35264501 -0.933218\n\t\t -0.068699002 -0.35268101 0 0.83683598 -0.54745299 0.11811 0.83190101 -0.54220998\n\t\t 0.113804 0.762326 -0.63710803 0.113804 0.762326 -0.63710803 0 0.76524103 -0.64374399\n\t\t 0 0.83683598 -0.54745299 0 0.69801497 -0.71608299 0 0.76524103 -0.64374399 0.113804\n\t\t 0.762326 -0.63710803 0.130317 0.524198 -0.84156698 0.137762 0.55937898 -0.817384\n\t\t 0.23463 0.55767298 -0.79620999 0.19922601 0.63472903 -0.746611 0.23463 0.55767298\n\t\t -0.79620999 0.137762 0.55937898 -0.817384 0 0.83683598 -0.54745299 -0.118111 0.83190101\n\t\t -0.54220998 -0.127538 0.89056897 -0.436602 -0.127538 0.89056897 -0.436602 0 0.89693397\n\t\t -0.44216499 0 0.83683598 -0.54745299 0 0.89693397 -0.44216499 -0.127538 0.89056897\n\t\t -0.436602 -0.139838 0.92673999 -0.34871 -0.139838 0.92673999 -0.34871 0 0.93568701\n\t\t -0.35283199 0 0.89693397 -0.44216499 0 0.93568701 -0.35283199 -0.139838 0.92673999\n\t\t -0.34871 -0.15064099 0.95154703 -0.268078 -0.15064099 0.95154703 -0.268078 0 0.96289498\n\t\t -0.26987699 0 0.93568701 -0.35283199 0 0.96289498 -0.26987699 -0.15064099 0.95154703\n\t\t -0.268078 -0.163646 0.97573698 -0.145456 -0.163646 0.97573698 -0.145456 0 0.98974299\n\t\t -0.14286099 0 0.96289498 -0.26987699 0 0.99262601 0.121221 0 0.98974299 -0.14286099\n\t\t -0.163646 0.97573698 -0.145456 -0.163646 0.97573698 -0.145456 -0.18821099 0.97557002\n\t\t 0.113317 0 0.99262601 0.121221 -0.38539401 0.918652 0.086888 -0.18821099 0.97557002\n\t\t 0.113317 -0.163646 0.97573698 -0.145456 -0.18821099 0.97557002 0.113317 -0.38539401\n\t\t 0.918652 0.086888 -0.434508 0.83260602 0.34346801 -0.64942098 0.73316598 0.201794\n\t\t -0.434508 0.83260602 0.34346801 -0.38539401 0.918652 0.086888 -0.434508 0.83260602\n\t\t 0.34346801 -0.64942098 0.73316598 0.201794 -0.66793698 0.68838501 0.282819 -0.79697198\n\t\t 0.58825302 0.137091 -0.66793698 0.68838501 0.282819 -0.64942098 0.73316598 0.201794\n\t\t -0.64942098 0.73316598 0.201794 -0.76822799 0.63678199 0.06583 -0.79697198 0.58825302\n\t\t 0.137091 -0.78498101 0.61941397 -0.011475 -0.79697198 0.58825302 0.137091 -0.76822799\n\t\t 0.63678199 0.06583 -0.76822799 0.63678199 0.06583 -0.76947099 0.63762897 -0.036653001\n\t\t -0.78498101 0.61941397 -0.011475 -0.66793698 0.68838501 0.282819 -0.442444 0.78121197\n\t\t 0.44039899 -0.434508 0.83260602 0.34346801 -0.21250699 0.89602101 0.38985601 -0.434508\n\t\t 0.83260602 0.34346801 -0.442444 0.78121197 0.44039899 -0.434508 0.83260602 0.34346801\n\t\t -0.21250699 0.89602101 0.38985601 -0.18821099 0.97557002 0.113317 0 0.99262601 0.121221\n\t\t -0.18821099 0.97557002 0.113317 -0.21250699 0.89602101 0.38985601 -0.442444 0.78121197\n\t\t 0.44039899 -0.21708301 0.84318501 0.49184799 -0.21250699 0.89602101 0.38985601 0\n\t\t 0.91587001 0.40147501 -0.21250699 0.89602101 0.38985601 -0.21708301 0.84318501 0.49184799;\n\tsetAttr \".n[17430:17595]\" -type \"float3\"  -0.21250699 0.89602101 0.38985601 0 0.91587001\n\t\t 0.40147501 0 0.99262601 0.121221 -0.21708301 0.84318501 0.49184799 0 0.86409599 0.503326\n\t\t 0 0.91587001 0.40147501 -0.76947099 0.63762897 -0.036653001 -0.76822799 0.63678199\n\t\t 0.06583 -0.68380398 0.72613299 -0.071718998 -0.760818 0.64353102 -0.083806001 -0.76947099\n\t\t 0.63762897 -0.036653001 -0.68380398 0.72613299 -0.071718998 -0.72331202 0.67542601\n\t\t -0.143594 -0.760818 0.64353102 -0.083806001 -0.68380398 0.72613299 -0.071718998 -0.76868498\n\t\t 0.61694402 -0.168832 -0.760818 0.64353102 -0.083806001 -0.72331202 0.67542601 -0.143594\n\t\t -0.72331202 0.67542601 -0.143594 -0.73484498 0.647681 -0.20127501 -0.76868498 0.61694402\n\t\t -0.168832 -0.73484498 0.647681 -0.20127501 -0.72331202 0.67542601 -0.143594 -0.647425\n\t\t 0.73074102 -0.21647 -0.647425 0.73074102 -0.21647 -0.72331202 0.67542601 -0.143594\n\t\t -0.68380398 0.72613299 -0.071718998 -0.647425 0.73074102 -0.21647 -0.64054298 0.72254801\n\t\t -0.26005599 -0.73484498 0.647681 -0.20127501 -0.64054298 0.72254801 -0.26005599 -0.647425\n\t\t 0.73074102 -0.21647 -0.59146303 0.78068203 -0.201763 -0.68380398 0.72613299 -0.071718998\n\t\t -0.59146303 0.78068203 -0.201763 -0.647425 0.73074102 -0.21647 -0.59146303 0.78068203\n\t\t -0.201763 -0.54630202 0.79003102 -0.27821699 -0.64054298 0.72254801 -0.26005599 -0.54630202\n\t\t 0.79003102 -0.27821699 -0.59146303 0.78068203 -0.201763 -0.480398 0.858832 -0.177834\n\t\t -0.480398 0.858832 -0.177834 -0.59146303 0.78068203 -0.201763 -0.68380398 0.72613299\n\t\t -0.071718998 -0.480398 0.858832 -0.177834 -0.442532 0.85445201 -0.272172 -0.54630202\n\t\t 0.79003102 -0.27821699 -0.442532 0.85445201 -0.272172 -0.480398 0.858832 -0.177834\n\t\t -0.33329701 0.93076402 -0.150305 -0.33329701 0.93076402 -0.150305 -0.30433801 0.91499698\n\t\t -0.26487601 -0.442532 0.85445201 -0.272172 -0.442532 0.85445201 -0.272172 -0.30433801\n\t\t 0.91499698 -0.26487601 -0.28734201 0.89477098 -0.34178799 -0.28734201 0.89477098\n\t\t -0.34178799 -0.421866 0.84159398 -0.337266 -0.442532 0.85445201 -0.272172 -0.54630202\n\t\t 0.79003102 -0.27821699 -0.442532 0.85445201 -0.272172 -0.421866 0.84159398 -0.337266\n\t\t -0.421866 0.84159398 -0.337266 -0.28734201 0.89477098 -0.34178799 -0.26997301 0.86521798\n\t\t -0.42250699 -0.26997301 0.86521798 -0.42250699 -0.406762 0.82255697 -0.397423 -0.421866\n\t\t 0.84159398 -0.337266 -0.37755701 0.79133999 -0.480865 -0.406762 0.82255697 -0.397423\n\t\t -0.26997301 0.86521798 -0.42250699 -0.26997301 0.86521798 -0.42250699 -0.24992099\n\t\t 0.81260097 -0.52651602 -0.37755701 0.79133999 -0.480865 -0.421866 0.84159398 -0.337266\n\t\t -0.52618498 0.783494 -0.33055601 -0.54630202 0.79003102 -0.27821699 -0.64054298 0.72254801\n\t\t -0.26005599 -0.54630202 0.79003102 -0.27821699 -0.52618498 0.783494 -0.33055601 -0.52618498\n\t\t 0.783494 -0.33055601 -0.63083601 0.71500802 -0.301348 -0.64054298 0.72254801 -0.26005599\n\t\t -0.62302101 0.706949 -0.334766 -0.63083601 0.71500802 -0.301348 -0.52618498 0.783494\n\t\t -0.33055601 -0.52618498 0.783494 -0.33055601 -0.514036 0.77174097 -0.37441 -0.62302101\n\t\t 0.706949 -0.334766 -0.514036 0.77174097 -0.37441 -0.52618498 0.783494 -0.33055601\n\t\t -0.421866 0.84159398 -0.337266 -0.421866 0.84159398 -0.337266 -0.406762 0.82255697\n\t\t -0.397423 -0.514036 0.77174097 -0.37441 -0.60572499 0.70231998 -0.37395799 -0.62302101\n\t\t 0.706949 -0.334766 -0.514036 0.77174097 -0.37441 -0.514036 0.77174097 -0.37441 -0.49807701\n\t\t 0.75294399 -0.43011001 -0.60572499 0.70231998 -0.37395799 -0.406762 0.82255697 -0.397423\n\t\t -0.37755701 0.79133999 -0.480865 -0.49807701 0.75294399 -0.43011001 -0.49807701 0.75294399\n\t\t -0.43011001 -0.514036 0.77174097 -0.37441 -0.406762 0.82255697 -0.397423 -0.60572499\n\t\t 0.70231998 -0.37395799 -0.49807701 0.75294399 -0.43011001 -0.466299 0.73361301 -0.49434501\n\t\t -0.466299 0.73361301 -0.49434501 -0.49807701 0.75294399 -0.43011001 -0.37755701 0.79133999\n\t\t -0.480865 -0.466299 0.73361301 -0.49434501 -0.56427097 0.70908397 -0.42284501 -0.60572499\n\t\t 0.70231998 -0.37395799 -0.56427097 0.70908397 -0.42284501 -0.466299 0.73361301 -0.49434501\n\t\t -0.41661799 0.72193199 -0.55248898 -0.41661799 0.72193199 -0.55248898 -0.54000902\n\t\t 0.69309402 -0.477505 -0.56427097 0.70908397 -0.42284501 -0.52233201 0.64394999 -0.55901599\n\t\t -0.54000902 0.69309402 -0.477505 -0.41661799 0.72193199 -0.55248898 -0.41661799 0.72193199\n\t\t -0.55248898 -0.389238 0.658445 -0.644162 -0.52233201 0.64394999 -0.55901599 -0.27986699\n\t\t 0.651842 -0.70482397 -0.389238 0.658445 -0.644162 -0.41661799 0.72193199 -0.55248898\n\t\t -0.41661799 0.72193199 -0.55248898 -0.31673101 0.70881498 -0.630288 -0.27986699 0.651842\n\t\t -0.70482397 -0.31673101 0.70881498 -0.630288 -0.41661799 0.72193199 -0.55248898 -0.466299\n\t\t 0.73361301 -0.49434501 -0.466299 0.73361301 -0.49434501 -0.34456101 0.751809 -0.56219298\n\t\t -0.31673101 0.70881498 -0.630288 -0.37755701 0.79133999 -0.480865 -0.34456101 0.751809\n\t\t -0.56219298 -0.466299 0.73361301 -0.49434501 -0.231795 0.75266898 -0.616247 -0.34456101\n\t\t 0.751809 -0.56219298 -0.37755701 0.79133999 -0.480865 -0.37755701 0.79133999 -0.480865\n\t\t -0.24992099 0.81260097 -0.52651602 -0.231795 0.75266898 -0.616247 -0.34456101 0.751809\n\t\t -0.56219298 -0.231795 0.75266898 -0.616247 -0.21879099 0.69131601 -0.688631 -0.21879099\n\t\t 0.69131601 -0.688631 -0.31673101 0.70881498 -0.630288 -0.34456101 0.751809 -0.56219298\n\t\t -0.31673101 0.70881498 -0.630288 -0.21879099 0.69131601 -0.688631 -0.19922701 0.63472903\n\t\t -0.746611 -0.19922701 0.63472903 -0.746611 -0.27986699 0.651842 -0.70482397 -0.31673101\n\t\t 0.70881498 -0.630288 -0.113804 0.762326 -0.63710803 -0.231795 0.75266898 -0.616247\n\t\t -0.24992099 0.81260097 -0.52651602 -0.24992099 0.81260097 -0.52651602;\n\tsetAttr \".n[17596:17761]\" -type \"float3\"  -0.118111 0.83190101 -0.54220998 -0.113804\n\t\t 0.762326 -0.63710803 -0.231795 0.75266898 -0.616247 -0.113804 0.762326 -0.63710803\n\t\t -0.115819 0.69561702 -0.70901501 -0.115819 0.69561702 -0.70901501 -0.21879099 0.69131601\n\t\t -0.688631 -0.231795 0.75266898 -0.616247 -0.21879099 0.69131601 -0.688631 -0.115819\n\t\t 0.69561702 -0.70901501 -0.121863 0.63391399 -0.76374298 -0.121863 0.63391399 -0.76374298\n\t\t -0.19922701 0.63472903 -0.746611 -0.21879099 0.69131601 -0.688631 -0.121863 0.63391399\n\t\t -0.76374298 -0.115819 0.69561702 -0.70901501 0 0.69801497 -0.71608299 0 0.69801497\n\t\t -0.71608299 -0.115819 0.69561702 -0.70901501 -0.113804 0.762326 -0.63710803 0 0.69801497\n\t\t -0.71608299 0 0.635598 -0.77201998 -0.121863 0.63391399 -0.76374298 -0.137762 0.55937898\n\t\t -0.817384 -0.121863 0.63391399 -0.76374298 0 0.635598 -0.77201998 -0.19922701 0.63472903\n\t\t -0.746611 -0.121863 0.63391399 -0.76374298 -0.137762 0.55937898 -0.817384 0 0.635598\n\t\t -0.77201998 0 0.55014199 -0.83507103 -0.137762 0.55937898 -0.817384 -0.137762 0.55937898\n\t\t -0.817384 0 0.55014199 -0.83507103 0 0.50802302 -0.86134398 0 0.50802302 -0.86134398\n\t\t -0.130317 0.52419698 -0.84156698 -0.137762 0.55937898 -0.817384 -0.127538 0.89056897\n\t\t -0.436602 -0.118111 0.83190101 -0.54220998 -0.24992099 0.81260097 -0.52651602 -0.24992099\n\t\t 0.81260097 -0.52651602 -0.26997301 0.86521798 -0.42250699 -0.127538 0.89056897 -0.436602\n\t\t -0.139838 0.92673999 -0.34871 -0.127538 0.89056897 -0.436602 -0.26997301 0.86521798\n\t\t -0.42250699 -0.26997301 0.86521798 -0.42250699 -0.28734201 0.89477098 -0.34178799\n\t\t -0.139838 0.92673999 -0.34871 -0.139838 0.92673999 -0.34871 -0.28734201 0.89477098\n\t\t -0.34178799 -0.30433801 0.91499698 -0.26487601 -0.30433801 0.91499698 -0.26487601\n\t\t -0.15064099 0.95154703 -0.268078 -0.139838 0.92673999 -0.34871 -0.163646 0.97573698\n\t\t -0.145456 -0.15064099 0.95154703 -0.268078 -0.30433801 0.91499698 -0.26487601 -0.30433801\n\t\t 0.91499698 -0.26487601 -0.33329701 0.93076402 -0.150305 -0.163646 0.97573698 -0.145456\n\t\t -0.163646 0.97573698 -0.145456 -0.33329701 0.93076402 -0.150305 -0.38539401 0.918652\n\t\t 0.086888 -0.38539401 0.918652 0.086888 -0.33329701 0.93076402 -0.150305 -0.480398\n\t\t 0.858832 -0.177834 -0.480398 0.858832 -0.177834 -0.56436503 0.82551903 0.003266 -0.38539401\n\t\t 0.918652 0.086888 -0.68380398 0.72613299 -0.071718998 -0.56436503 0.82551903 0.003266\n\t\t -0.480398 0.858832 -0.177834 -0.56436503 0.82551903 0.003266 -0.68380398 0.72613299\n\t\t -0.071718998 -0.76822799 0.63678199 0.06583 -0.76822799 0.63678199 0.06583 -0.64942098\n\t\t 0.73316598 0.201794 -0.56436503 0.82551903 0.003266 -0.38539401 0.918652 0.086888\n\t\t -0.56436503 0.82551903 0.003266 -0.64942098 0.73316598 0.201794 -0.23463 0.55767298\n\t\t -0.79620999 -0.137762 0.55937898 -0.817384 -0.130317 0.52419698 -0.84156698 -0.137762\n\t\t 0.55937898 -0.817384 -0.23463 0.55767298 -0.79620999 -0.19922701 0.63472903 -0.746611\n\t\t -0.19922701 0.63472903 -0.746611 -0.23463 0.55767298 -0.79620999 -0.35646799 0.53476298\n\t\t -0.766132 -0.35646799 0.53476298 -0.766132 -0.23463 0.55767298 -0.79620999 -0.22880501\n\t\t 0.51984 -0.82305199 -0.22880501 0.51984 -0.82305199 -0.40182099 0.45565701 -0.794303\n\t\t -0.35646799 0.53476298 -0.766132 -0.50692803 0.51400799 -0.69196802 -0.35646799 0.53476298\n\t\t -0.766132 -0.40182099 0.45565701 -0.794303 -0.40182099 0.45565701 -0.794303 -0.57193398\n\t\t 0.41356799 -0.70841599 -0.50692803 0.51400799 -0.69196802 -0.58807099 0.53664601\n\t\t -0.60513097 -0.50692803 0.51400799 -0.69196802 -0.57193398 0.41356799 -0.70841599\n\t\t -0.57193398 0.41356799 -0.70841599 -0.68242699 0.388257 -0.61931401 -0.58807099 0.53664601\n\t\t -0.60513097 -0.35646799 0.53476298 -0.766132 -0.27986699 0.651842 -0.70482397 -0.19922701\n\t\t 0.63472903 -0.746611 -0.35646799 0.53476298 -0.766132 -0.50692803 0.51400799 -0.69196802\n\t\t -0.389238 0.658445 -0.644162 -0.389238 0.658445 -0.644162 -0.27986699 0.651842 -0.70482397\n\t\t -0.35646799 0.53476298 -0.766132 -0.52233201 0.64394999 -0.55901599 -0.389238 0.658445\n\t\t -0.644162 -0.50692803 0.51400799 -0.69196802 -0.50692803 0.51400799 -0.69196802 -0.58807099\n\t\t 0.53664601 -0.60513097 -0.52233201 0.64394999 -0.55901599 -0.52233201 0.64394999\n\t\t -0.55901599 -0.58807099 0.53664601 -0.60513097 -0.60952502 0.64895499 -0.45534301\n\t\t -0.60952502 0.64895499 -0.45534301 -0.54000902 0.69309402 -0.477505 -0.52233201 0.64394999\n\t\t -0.55901599 -0.56427097 0.70908397 -0.42284501 -0.54000902 0.69309402 -0.477505 -0.60952502\n\t\t 0.64895499 -0.45534301 -0.60952502 0.64895499 -0.45534301 -0.63898098 0.668706 -0.380178\n\t\t -0.56427097 0.70908397 -0.42284501 -0.60572499 0.70231998 -0.37395799 -0.56427097\n\t\t 0.70908397 -0.42284501 -0.63898098 0.668706 -0.380178 -0.63898098 0.668706 -0.380178\n\t\t -0.67794901 0.65756202 -0.32862899 -0.60572499 0.70231998 -0.37395799 -0.62302101\n\t\t 0.706949 -0.334766 -0.60572499 0.70231998 -0.37395799 -0.67794901 0.65756202 -0.32862899\n\t\t -0.67794901 0.65756202 -0.32862899 -0.68347901 0.66238999 -0.30674899 -0.62302101\n\t\t 0.706949 -0.334766 -0.62302101 0.706949 -0.334766 -0.68347901 0.66238999 -0.30674899\n\t\t -0.69733298 0.66467702 -0.26820201 -0.69733298 0.66467702 -0.26820201 -0.63083601\n\t\t 0.71500802 -0.301348 -0.62302101 0.706949 -0.334766 -0.64054298 0.72254801 -0.26005599\n\t\t -0.63083601 0.71500802 -0.301348 -0.69733298 0.66467702 -0.26820201 -0.69733298 0.66467702\n\t\t -0.26820201 -0.73484498 0.647681 -0.20127501 -0.64054298 0.72254801 -0.26005599 -0.69733298\n\t\t 0.66467702 -0.26820201 -0.76868498 0.61694402 -0.168832 -0.73484498 0.647681 -0.20127501\n\t\t -0.180246 -0.33177301 -0.92597997 -0.25465101 -0.32026699 -0.91245902;\n\tsetAttr \".n[17762:17927]\" -type \"float3\"  -0.28373501 -0.067478001 -0.95652598\n\t\t -0.28373501 -0.067478001 -0.95652598 -0.205366 -0.073858 -0.97589397 -0.180246 -0.33177301\n\t\t -0.92597997 -0.205366 -0.073858 -0.97589397 -0.28373501 -0.067478001 -0.95652598\n\t\t -0.28566399 0.155375 -0.94565099 -0.28566399 0.155375 -0.94565099 -0.20923699 0.15003\n\t\t -0.96628702 -0.205366 -0.073858 -0.97589397 0 -0.085026003 -0.99637902 -0.205366\n\t\t -0.073858 -0.97589397 -0.20923699 0.15003 -0.96628702 -0.180246 -0.33177301 -0.92597997\n\t\t -0.205366 -0.073858 -0.97589397 0 -0.085026003 -0.99637902 -0.20923699 0.15003 -0.96628702\n\t\t 0 0.140571 -0.990071 0 -0.085026003 -0.99637902 0 -0.085026003 -0.99637902 0 -0.34574601\n\t\t -0.93832803 -0.180246 -0.33177301 -0.92597997 -0.15439799 -0.46639901 -0.870996 -0.180246\n\t\t -0.33177301 -0.92597997 0 -0.34574601 -0.93832803 -0.25465101 -0.32026699 -0.91245902\n\t\t -0.180246 -0.33177301 -0.92597997 -0.15439799 -0.46639901 -0.870996 0 -0.34574601\n\t\t -0.93832803 0.00232 -0.48311299 -0.87555498 -0.15439799 -0.46639901 -0.870996 -0.139898\n\t\t -0.496755 -0.85654098 -0.15439799 -0.46639901 -0.870996 0.00232 -0.48311299 -0.87555498\n\t\t 0.00232 -0.48311299 -0.87555498 0.0053409999 -0.50691998 -0.86197698 -0.139898 -0.496755\n\t\t -0.85654098 0 0.29133499 -0.95662099 0 0.140571 -0.990071 -0.20923699 0.15003 -0.96628702\n\t\t -0.20923699 0.15003 -0.96628702 -0.212567 0.286423 -0.93422502 0 0.29133499 -0.95662099\n\t\t -0.212567 0.286423 -0.93422502 -0.20923699 0.15003 -0.96628702 -0.28566399 0.155375\n\t\t -0.94565099 0 0.29133499 -0.95662099 -0.212567 0.286423 -0.93422502 -0.19986799 0.356033\n\t\t -0.91284901 -0.19986799 0.356033 -0.91284901 0 0.37603199 -0.92660701 0 0.29133499\n\t\t -0.95662099 0 0.37603199 -0.92660701 -0.19986799 0.356033 -0.91284901 -0.16843601\n\t\t 0.38826501 -0.90602398 -0.16843601 0.38826501 -0.90602398 0 0.410689 -0.91177499\n\t\t 0 0.37603199 -0.92660701 -0.19986799 0.356033 -0.91284901 -0.212567 0.286423 -0.93422502\n\t\t -0.28800699 0.28941 -0.91284901 -0.28566399 0.155375 -0.94565099 -0.28800699 0.28941\n\t\t -0.91284901 -0.212567 0.286423 -0.93422502 -0.28800699 0.28941 -0.91284901 -0.27882501\n\t\t 0.34563199 -0.89598799 -0.19986799 0.356033 -0.91284901 -0.236403 0.37410599 -0.89674902\n\t\t -0.16843601 0.38826501 -0.90602398 -0.19986799 0.356033 -0.91284901 -0.19986799 0.356033\n\t\t -0.91284901 -0.27882501 0.34563199 -0.89598799 -0.236403 0.37410599 -0.89674902 -0.15439799\n\t\t -0.46639901 -0.870996 -0.139898 -0.496755 -0.85654098 -0.22160099 -0.49013999 -0.84300399\n\t\t -0.22160099 -0.49013999 -0.84300399 -0.22950301 -0.458244 -0.85868502 -0.15439799\n\t\t -0.46639901 -0.870996 -0.15439799 -0.46639901 -0.870996 -0.22950301 -0.458244 -0.85868502\n\t\t -0.25465101 -0.32026699 -0.91245902 -0.582479 -0.081546001 -0.80874503 -0.612064\n\t\t -0.29503 -0.73371398 -0.75276297 -0.24772701 -0.60990101 -0.75276297 -0.24772701\n\t\t -0.60990101 -0.733527 -0.088353001 -0.67389297 -0.582479 -0.081546001 -0.80874503\n\t\t -0.582479 -0.081546001 -0.80874503 -0.733527 -0.088353001 -0.67389297 -0.67168599\n\t\t 0.100376 -0.73400497 -0.67168599 0.100376 -0.73400497 -0.51097602 0.134923 -0.84894001\n\t\t -0.582479 -0.081546001 -0.80874503 -0.434531 0.26588199 -0.86051702 -0.51097602 0.134923\n\t\t -0.84894001 -0.67168599 0.100376 -0.73400497 -0.67168599 0.100376 -0.73400497 -0.604523\n\t\t 0.222332 -0.76493198 -0.434531 0.26588199 -0.86051702 -0.82118601 0.082463004 -0.56467098\n\t\t -0.67168599 0.100376 -0.73400497 -0.733527 -0.088353001 -0.67389297 -0.733527 -0.088353001\n\t\t -0.67389297 -0.85962802 -0.062839001 -0.50704199 -0.82118601 0.082463004 -0.56467098\n\t\t -0.91457099 0.071627997 -0.39803201 -0.82118601 0.082463004 -0.56467098 -0.85962802\n\t\t -0.062839001 -0.50704199 -0.85962802 -0.062839001 -0.50704199 -0.93917698 -0.021424999\n\t\t -0.342765 -0.91457099 0.071627997 -0.39803201 -0.936656 -0.073642001 -0.34242201\n\t\t -0.93917698 -0.021424999 -0.342765 -0.85962802 -0.062839001 -0.50704199 -0.85962802\n\t\t -0.062839001 -0.50704199 -0.866678 -0.138557 -0.47924 -0.936656 -0.073642001 -0.34242201\n\t\t -0.866678 -0.138557 -0.47924 -0.85962802 -0.062839001 -0.50704199 -0.733527 -0.088353001\n\t\t -0.67389297 -0.75276297 -0.24772701 -0.60990101 -0.866678 -0.138557 -0.47924 -0.733527\n\t\t -0.088353001 -0.67389297 -0.76719302 0.187479 -0.613406 -0.604523 0.222332 -0.76493198\n\t\t -0.67168599 0.100376 -0.73400497 -0.67168599 0.100376 -0.73400497 -0.82118601 0.082463004\n\t\t -0.56467098 -0.76719302 0.187479 -0.613406 -0.76719302 0.187479 -0.613406 -0.82118601\n\t\t 0.082463004 -0.56467098 -0.91457099 0.071627997 -0.39803201 -0.93917698 -0.021424999\n\t\t -0.342765 -0.936656 -0.073642001 -0.34242201 -0.96109998 0.015442 -0.27576801 -0.91457099\n\t\t 0.071627997 -0.39803201 -0.93917698 -0.021424999 -0.342765 -0.96109998 0.015442 -0.27576801\n\t\t -0.96109998 0.015442 -0.27576801 -0.95057303 0.068148002 -0.30293101 -0.91457099\n\t\t 0.071627997 -0.39803201 -0.91457099 0.071627997 -0.39803201 -0.95057303 0.068148002\n\t\t -0.30293101 -0.914545 0.17744 -0.36348599 -0.914545 0.17744 -0.36348599 -0.87543601\n\t\t 0.166572 -0.45372501 -0.91457099 0.071627997 -0.39803201 -0.91457099 0.071627997\n\t\t -0.39803201 -0.87543601 0.166572 -0.45372501 -0.76719302 0.187479 -0.613406 -0.434531\n\t\t 0.26588199 -0.86051702 -0.604523 0.222332 -0.76493198 -0.56296599 0.28468701 -0.77590102\n\t\t -0.56296599 0.28468701 -0.77590102 -0.384936 0.32707199 -0.86304599 -0.434531 0.26588199\n\t\t -0.86051702 -0.384936 0.32707199 -0.86304599 -0.56296599 0.28468701 -0.77590102 -0.54674298\n\t\t 0.30482101 -0.77984399 -0.54674298 0.30482101 -0.77984399 -0.37658301 0.34356001\n\t\t -0.86032099 -0.384936 0.32707199 -0.86304599 -0.604523 0.222332 -0.76493198 -0.76719302\n\t\t 0.187479 -0.613406 -0.72267401 0.25047401 -0.64420801;\n\tsetAttr \".n[17928:18093]\" -type \"float3\"  -0.72267401 0.25047401 -0.64420801 -0.56296599\n\t\t 0.28468701 -0.77590102 -0.604523 0.222332 -0.76493198 -0.56296599 0.28468701 -0.77590102\n\t\t -0.72267401 0.25047401 -0.64420801 -0.70894599 0.27248099 -0.6505 -0.70894599 0.27248099\n\t\t -0.6505 -0.54674298 0.30482101 -0.77984399 -0.56296599 0.28468701 -0.77590102 -0.82270902\n\t\t 0.26100099 -0.50500298 -0.70894599 0.27248099 -0.6505 -0.72267401 0.25047401 -0.64420801\n\t\t -0.72267401 0.25047401 -0.64420801 -0.845065 0.239877 -0.477833 -0.82270902 0.26100099\n\t\t -0.50500298 -0.845065 0.239877 -0.477833 -0.72267401 0.25047401 -0.64420801 -0.76719302\n\t\t 0.187479 -0.613406 -0.76719302 0.187479 -0.613406 -0.87543601 0.166572 -0.45372501\n\t\t -0.845065 0.239877 -0.477833 -0.87543601 0.166572 -0.45372501 -0.914545 0.17744 -0.36348599\n\t\t -0.886527 0.244765 -0.39263201 -0.886527 0.244765 -0.39263201 -0.845065 0.239877\n\t\t -0.477833 -0.87543601 0.166572 -0.45372501 -0.82270902 0.26100099 -0.50500298 -0.845065\n\t\t 0.239877 -0.477833 -0.886527 0.244765 -0.39263201 -0.30125201 0.33326599 -0.89341003\n\t\t -0.384936 0.32707199 -0.86304599 -0.37658301 0.34356001 -0.86032099 -0.434531 0.26588199\n\t\t -0.86051702 -0.384936 0.32707199 -0.86304599 -0.30125201 0.33326599 -0.89341003 -0.30125201\n\t\t 0.33326599 -0.89341003 -0.34888899 0.26947999 -0.89758402 -0.434531 0.26588199 -0.86051702\n\t\t -0.37658301 0.34356001 -0.86032099 -0.254623 0.355764 -0.89922202 -0.30125201 0.33326599\n\t\t -0.89341003 -0.434531 0.26588199 -0.86051702 -0.34888899 0.26947999 -0.89758402 -0.435718\n\t\t 0.123876 -0.891518 -0.435718 0.123876 -0.891518 -0.51097602 0.134923 -0.84894001\n\t\t -0.434531 0.26588199 -0.86051702 -0.51097602 0.134923 -0.84894001 -0.435718 0.123876\n\t\t -0.891518 -0.51611102 -0.105566 -0.84999102 -0.51611102 -0.105566 -0.84999102 -0.582479\n\t\t -0.081546001 -0.80874503 -0.51097602 0.134923 -0.84894001 -0.612064 -0.29503 -0.73371398\n\t\t -0.582479 -0.081546001 -0.80874503 -0.51611102 -0.105566 -0.84999102 -0.51611102\n\t\t -0.105566 -0.84999102 -0.554968 -0.32048601 -0.767658 -0.612064 -0.29503 -0.73371398\n\t\t -0.60454601 -0.41624501 -0.67916399 -0.612064 -0.29503 -0.73371398 -0.554968 -0.32048601\n\t\t -0.767658 -0.60454601 -0.41624501 -0.67916399 -0.68038702 -0.333419 -0.65261501 -0.612064\n\t\t -0.29503 -0.73371398 -0.68038702 -0.333419 -0.65261501 -0.60454601 -0.41624501 -0.67916399\n\t\t -0.59307897 -0.44027001 -0.67410702 -0.68038702 -0.333419 -0.65261501 -0.75276297\n\t\t -0.24772701 -0.60990101 -0.612064 -0.29503 -0.73371398 -0.68038702 -0.333419 -0.65261501\n\t\t -0.75180501 -0.319168 -0.57699299 -0.75276297 -0.24772701 -0.60990101 -0.75180501\n\t\t -0.319168 -0.57699299 -0.79707003 -0.29448 -0.52722001 -0.75276297 -0.24772701 -0.60990101\n\t\t 0.019471001 0.91022599 -0.41365299 0.019471001 0.91022599 -0.41365299 0.019471001\n\t\t 0.91022599 -0.41365299 -0.554968 -0.32048601 -0.767658 -0.554685 -0.42967901 -0.71253097\n\t\t -0.60454601 -0.41624501 -0.67916399 -0.59307897 -0.44027001 -0.67410702 -0.60454601\n\t\t -0.41624501 -0.67916399 -0.554685 -0.42967901 -0.71253097 -0.554685 -0.42967901 -0.71253097\n\t\t -0.55056101 -0.45213801 -0.70175099 -0.59307897 -0.44027001 -0.67410702 -0.776869\n\t\t 0.62125099 0.102575 -0.80456501 0.59029299 0.065035 -0.761917 0.63684797 0.117927\n\t\t -0.776869 0.62125099 0.102575 -0.761917 0.63684797 0.117927 -0.615246 0.75475103\n\t\t 0.22764599 -0.615246 0.75475103 0.22764599 -0.65451699 0.72382599 0.218365 -0.776869\n\t\t 0.62125099 0.102575 -0.615246 0.75475103 0.22764599 -0.40974799 0.83850902 0.35917801\n\t\t -0.65451699 0.72382599 0.218365 -0.615246 0.75475103 0.22764599 -0.48861501 0.820786\n\t\t 0.29591501 -0.40974799 0.83850902 0.35917801 -0.48861501 0.820786 0.29591501 -0.339802\n\t\t 0.843247 0.41649601 -0.40974799 0.83850902 0.35917801 -0.20325699 0.86927199 0.45061299\n\t\t -0.40974799 0.83850902 0.35917801 -0.339802 0.843247 0.41649601 -0.339802 0.843247\n\t\t 0.41649601 -0.17618699 0.871382 0.45787799 -0.20325699 0.86927199 0.45061299 -0.20325699\n\t\t 0.86927199 0.45061299 -0.17618699 0.871382 0.45787799 0 0.878582 0.47759199 0 0.878582\n\t\t 0.47759199 0 0.87361002 0.48662701 -0.20325699 0.86927199 0.45061299 -0.043947998\n\t\t 0.84504098 -0.532893 -0.041841999 0.84470499 -0.53359401 0 0.85353899 -0.521029 0\n\t\t 0.85353899 -0.521029 0 0.85386097 -0.52050197 -0.043947998 0.84504098 -0.532893 -0.01413\n\t\t 0.807311 -0.589957 -0.018556001 0.80423599 -0.59402102 -0.069187 0.831397 -0.551355\n\t\t -0.069187 0.831397 -0.551355 -0.074984998 0.83133799 -0.55068499 -0.01413 0.807311\n\t\t -0.589957 -0.074984998 0.83133799 -0.55068499 -0.069187 0.831397 -0.551355 -0.041841999\n\t\t 0.84470499 -0.53359401 -0.041841999 0.84470499 -0.53359401 -0.043947998 0.84504098\n\t\t -0.532893 -0.074984998 0.83133799 -0.55068499 0.038759001 0.81810302 -0.57376498\n\t\t 0.036745001 0.81626499 -0.57650697 -0.018556001 0.80423599 -0.59402102 -0.018556001\n\t\t 0.80423599 -0.59402102 -0.01413 0.807311 -0.589957 0.038759001 0.81810302 -0.57376498\n\t\t 0.052492999 0.82350099 -0.56488103 0.052767001 0.82342702 -0.564964 0.036745001 0.81626499\n\t\t -0.57650697 0.036745001 0.81626499 -0.57650697 0.038759001 0.81810302 -0.57376498\n\t\t 0.052492999 0.82350099 -0.56488103 -0.41249001 0.85128599 -0.32429099 -0.412074 0.85140198\n\t\t -0.324514 -0.40377301 0.86159497 -0.30760601 -0.40377301 0.86159497 -0.30760601 -0.40666699\n\t\t 0.85895997 -0.311142 -0.41249001 0.85128599 -0.32429099 -0.380667 0.89335901 -0.23875199\n\t\t -0.40666699 0.85895997 -0.311142 -0.40377301 0.86159497 -0.30760601 -0.40377301 0.86159497\n\t\t -0.30760601 -0.37349099 0.89832598 -0.231334 -0.380667 0.89335901 -0.23875199 -0.31941199\n\t\t 0.94556898 -0.062259 -0.380667 0.89335901 -0.23875199 -0.37349099 0.89832598 -0.231334\n\t\t -0.37349099 0.89832598 -0.231334;\n\tsetAttr \".n[18094:18259]\" -type \"float3\"  -0.300374 0.95218003 -0.055941999 -0.31941199\n\t\t 0.94556898 -0.062259 -0.159982 0.987086 -0.0082400003 -0.31941199 0.94556898 -0.062259\n\t\t -0.300374 0.95218003 -0.055941999 -0.300374 0.95218003 -0.055941999 -0.152869 0.98822802\n\t\t -0.0059819999 -0.159982 0.987086 -0.0082400003 0 0.99958098 0.028932 -0.159982 0.987086\n\t\t -0.0082400003 -0.152869 0.98822802 -0.0059819999 -0.152869 0.98822802 -0.0059819999\n\t\t 0 0.99955499 0.029847 0 0.99958098 0.028932 -0.17069399 0.74073201 -0.64975399 -0.29216099\n\t\t 0.61883801 -0.72916502 -0.30241799 0.62201798 -0.72224402 -0.30241799 0.62201798\n\t\t -0.72224402 -0.134133 0.75712502 -0.63935101 -0.17069399 0.74073201 -0.64975399 -0.37179101\n\t\t 0.67176902 -0.640701 -0.30241799 0.62201798 -0.72224402 -0.29216099 0.61883801 -0.72916502\n\t\t -0.29216099 0.61883801 -0.72916502 -0.34074599 0.66788101 -0.66168499 -0.37179101\n\t\t 0.67176902 -0.640701 -0.460567 0.63739598 -0.617742 -0.37179101 0.67176902 -0.640701\n\t\t -0.34074599 0.66788101 -0.66168499 -0.34074599 0.66788101 -0.66168499 -0.46274 0.63563401\n\t\t -0.61793298 -0.460567 0.63739598 -0.617742 -0.17069399 0.74073201 -0.64975399 -0.134133\n\t\t 0.75712502 -0.63935101 -0.073458999 0.83264601 -0.54891199 -0.036409002 0.88190401\n\t\t -0.47002101 -0.073458999 0.83264601 -0.54891199 -0.134133 0.75712502 -0.63935101\n\t\t -0.134133 0.75712502 -0.63935101 -0.062107 0.79462701 -0.60391301 -0.036409002 0.88190401\n\t\t -0.47002101 -0.036409002 0.88190401 -0.47002101 -0.062107 0.79462701 -0.60391301\n\t\t -0.055941999 0.79681998 -0.60162097 0 0.89498198 -0.44610199 -0.036409002 0.88190401\n\t\t -0.47002101 -0.012208 0.99558902 -0.093021996 0.014679 0.99840701 0.054476999 0.0061949999\n\t\t 0.99936497 0.035096001 0.0066829999 0.99932098 0.036226001 0.0066829999 0.99932098\n\t\t 0.036226001 0.016693 0.998119 0.058993001 0.014679 0.99840701 0.054476999 0 0.89498198\n\t\t -0.44610199 0 0.90640002 -0.42242101 -0.036409002 0.88190401 -0.47002101 0.089907996\n\t\t 0.90015203 -0.426195 0.138405 0.90636098 -0.39919201 0.13379499 0.90671802 -0.39995101\n\t\t 0.13379499 0.90671802 -0.39995101 0.087529004 0.89989197 -0.42724001 0.089907996\n\t\t 0.90015203 -0.426195 0.196546 0.92254603 -0.33208299 0.13379499 0.90671802 -0.39995101\n\t\t 0.138405 0.90636098 -0.39919201 0.138405 0.90636098 -0.39919201 0.20124701 0.92142099\n\t\t -0.33239001 0.196546 0.92254603 -0.33208299 0.20124701 0.92142099 -0.33239001 0.27433601\n\t\t 0.93687499 -0.21680801 0.196546 0.92254603 -0.33208299 0.20124701 0.92142099 -0.33239001\n\t\t 0.27946299 0.93681401 -0.210429 0.27433601 0.93687499 -0.21680801 0.27433601 0.93687499\n\t\t -0.21680801 0.241225 0.93648702 -0.25456199 0.196546 0.92254603 -0.33208299 -0.020051001\n\t\t 0.90205902 -0.431146 -0.073458999 0.83264601 -0.54891199 -0.036409002 0.88190401\n\t\t -0.47002101 -0.036409002 0.88190401 -0.47002101 -0.026063999 0.93950498 -0.34154099\n\t\t -0.020051001 0.90205902 -0.431146 -0.026063999 0.93950498 -0.34154099 -0.036409002\n\t\t 0.88190401 -0.47002101 0 0.90640002 -0.42242101 0 0.90640002 -0.42242101 0 0.918782\n\t\t -0.394766 -0.026063999 0.93950498 -0.34154099 -0.369288 -0.64259303 0.67134202 -0.36403701\n\t\t -0.63907999 0.677535 -0.39360601 -0.65622503 0.64377302 -0.39360601 -0.65622503 0.64377302\n\t\t -0.39364001 -0.65619898 0.64377803 -0.369288 -0.64259303 0.67134202 -0.241625 -0.59962302\n\t\t 0.76293498 -0.36403701 -0.63907999 0.677535 -0.369288 -0.64259303 0.67134202 -0.369288\n\t\t -0.64259303 0.67134202 -0.258378 -0.605995 0.75233698 -0.241625 -0.59962302 0.76293498\n\t\t -0.241625 -0.59962302 0.76293498 -0.258378 -0.605995 0.75233698 -0.093448997 -0.62429601\n\t\t 0.77557802 -0.093448997 -0.62429601 0.77557802 -0.083408996 -0.62366003 0.777233\n\t\t -0.241625 -0.59962302 0.76293498 -0.083408996 -0.62366003 0.777233 -0.093448997 -0.62429601\n\t\t 0.77557802 -0.032869 -0.63117099 0.77494699 -0.032869 -0.63117099 0.77494699 -0.031555999\n\t\t -0.63125199 0.77493501 -0.083408996 -0.62366003 0.777233 0 -0.64078802 0.76771802\n\t\t -0.031555999 -0.63125199 0.77493501 -0.032869 -0.63117099 0.77494699 -0.032869 -0.63117099\n\t\t 0.77494699 0 -0.641087 0.76746798 0 -0.64078802 0.76771802 -0.052462 -0.90589303\n\t\t -0.42024499 -0.105136 -0.95999497 -0.25953099 -0.105016 -0.95738202 -0.26905599 -0.052462\n\t\t -0.90589303 -0.42024499 -0.105016 -0.95738202 -0.26905599 0 -0.88049197 -0.474062\n\t\t -0.052462 -0.90589303 -0.42024499 0 -0.88049197 -0.474062 0 -0.876499 -0.48140299\n\t\t -0.0071109999 -0.99936199 -0.035004999 -0.0096129999 -0.99821401 -0.058963001 -0.0092470003\n\t\t -0.99842697 -0.055300001 -0.0092470003 -0.99842697 -0.055300001 -0.0054629999 -0.99979699\n\t\t -0.019378999 -0.0071109999 -0.99936199 -0.035004999 -0.105016 -0.95738202 -0.26905599\n\t\t -0.105136 -0.95999497 -0.25953099 -0.42265701 -0.80502999 -0.41627899 -0.42265701\n\t\t -0.80502999 -0.41627899 -0.42314899 -0.80110002 -0.42330199 -0.105016 -0.95738202\n\t\t -0.26905599 -0.42314899 -0.80110002 -0.42330199 -0.42265701 -0.80502999 -0.41627899\n\t\t -0.49086601 -0.87082702 -0.026673 -0.49086601 -0.87082702 -0.026673 -0.48471099 -0.87423199\n\t\t -0.027803 -0.42314899 -0.80110002 -0.42330199 -0.48471099 -0.87423199 -0.027803 -0.49086601\n\t\t -0.87082702 -0.026673 -0.52017403 -0.85009003 0.082249999 -0.52017403 -0.85009003\n\t\t 0.082249999 -0.51693302 -0.85236901 0.079044998 -0.48471099 -0.87423199 -0.027803\n\t\t -0.51760602 -0.84306401 0.146035 -0.51693302 -0.85236901 0.079044998 -0.52017403\n\t\t -0.85009003 0.082249999 -0.52017403 -0.85009003 0.082249999 -0.516761 -0.843445 0.14683101\n\t\t -0.51760602 -0.84306401 0.146035 -0.89448297 -0.21775401 -0.39049101 -0.89136302\n\t\t -0.046328001 -0.45091599 -0.89902502 -0.097661003 -0.42686799 -0.89902502 -0.097661003\n\t\t -0.42686799 -0.89387 -0.23688801 -0.38063201 -0.89448297 -0.21775401 -0.39049101\n\t\t -0.88214898 -0.30085599 -0.362351 -0.89448297 -0.21775401 -0.39049101;\n\tsetAttr \".n[18260:18425]\" -type \"float3\"  -0.89387 -0.23688801 -0.38063201 -0.89387\n\t\t -0.23688801 -0.38063201 -0.881661 -0.302504 -0.36216801 -0.88214898 -0.30085599 -0.362351\n\t\t -0.87849802 -0.311847 -0.361929 -0.88214898 -0.30085599 -0.362351 -0.881661 -0.302504\n\t\t -0.36216801 -0.881661 -0.302504 -0.36216801 -0.87835199 -0.31197101 -0.36217499 -0.87849802\n\t\t -0.311847 -0.361929 -0.89902502 -0.097661003 -0.42686799 -0.89136302 -0.046328001\n\t\t -0.45091599 -0.84722501 0.113838 -0.51889402 -0.84722501 0.113838 -0.51889402 -0.86515599\n\t\t 0.061099 -0.497767 -0.89902502 -0.097661003 -0.42686799 -0.81867099 0.180123 -0.54528201\n\t\t -0.86515599 0.061099 -0.497767 -0.84722501 0.113838 -0.51889402 -0.84722501 0.113838\n\t\t -0.51889402 -0.80070198 0.21934099 -0.557464 -0.81867099 0.180123 -0.54528201 -0.802351\n\t\t 0.24479499 -0.54434198 -0.81867099 0.180123 -0.54528201 -0.80070198 0.21934099 -0.557464\n\t\t -0.80070198 0.21934099 -0.557464 -0.79990399 0.25123301 -0.54500902 -0.802351 0.24479499\n\t\t -0.54434198 -0.79768199 0.25605601 -0.54601997 -0.802351 0.24479499 -0.54434198 -0.79990399\n\t\t 0.25123301 -0.54500902 -0.336716 0.311324 -0.88865101 -0.336716 0.311324 -0.88865101\n\t\t -0.336712 0.311351 -0.88864201 -0.99319601 -0.094733 0.067722999 -0.99758297 -0.050754\n\t\t 0.047456998 -0.99711299 -0.057863999 0.049166001 -0.99711299 -0.057863999 0.049166001\n\t\t -0.992971 -0.096470997 0.068576999 -0.99319601 -0.094733 0.067722999 -0.99319601\n\t\t -0.094733 0.067722999 -0.992971 -0.096470997 0.068576999 -0.99238402 -0.101293 0.070101999\n\t\t -0.99238402 -0.101293 0.070101999 -0.99234998 -0.101536 0.070224002 -0.99319601 -0.094733\n\t\t 0.067722999 -0.99711299 -0.057863999 0.049166001 -0.99758297 -0.050754 0.047456998\n\t\t -0.99953502 0.001648 0.030458 -0.99953502 0.001648 0.030458 -0.99950403 -0.0055550002\n\t\t 0.031008 -0.99711299 -0.057863999 0.049166001 -0.99950403 -0.0055550002 0.031008\n\t\t -0.99953502 0.001648 0.030458 -0.99912 0.039216001 0.014863 -0.99912 0.039216001\n\t\t 0.014863 -0.99926698 0.035402 0.014558 -0.99950403 -0.0055550002 0.031008 -0.99838001\n\t\t 0.055911001 0.01056 -0.99926698 0.035402 0.014558 -0.99912 0.039216001 0.014863 -0.99912\n\t\t 0.039216001 0.014863 -0.99832898 0.056428999 0.012482 -0.99838001 0.055911001 0.01056\n\t\t -0.94957203 -0.045931999 0.310166 -0.99838001 0.055911001 0.01056 -0.99832898 0.056428999\n\t\t 0.012482 -0.99832898 0.056428999 0.012482 -0.948291 -0.047304999 0.31385899 -0.94957203\n\t\t -0.045931999 0.310166 -0.99334103 -0.094334997 0.066134997 -0.99234998 -0.101536\n\t\t 0.070224002 -0.99238402 -0.101293 0.070101999 -0.99238402 -0.101293 0.070101999 -0.99334103\n\t\t -0.094334997 0.066134997 -0.99334103 -0.094334997 0.066134997 0.93315297 0.072177999\n\t\t -0.35216001 0.92561501 0.075749002 -0.37080801 0.92644298 0.071782 -0.36952701 0.92644298\n\t\t 0.071782 -0.36952701 0.93344098 0.071443997 -0.35154399 0.93315297 0.072177999 -0.35216001\n\t\t 0.93315297 0.072177999 -0.35216001 0.93344098 0.071443997 -0.35154399 0.933348 0.072453998\n\t\t -0.351585 0.63312501 0.205213 -0.74635202 0.63312501 0.205213 -0.74635202 0.63312501\n\t\t 0.205213 -0.74635202 0.91917598 0.059664998 -0.38930199 0.92644298 0.071782 -0.36952701\n\t\t 0.92561501 0.075749002 -0.37080801 0.92561501 0.075749002 -0.37080801 0.91835701\n\t\t 0.065036997 -0.39037299 0.91917598 0.059664998 -0.38930199 0.91917598 0.059664998\n\t\t -0.38930199 0.91835701 0.065036997 -0.39037299 0.92051601 0.034487002 -0.38917899\n\t\t 0.92051601 0.034487002 -0.38917899 0.92104697 0.02994 -0.38829899 0.91917598 0.059664998\n\t\t -0.38930199 0.92104697 0.02994 -0.38829899 0.92051601 0.034487002 -0.38917899 0.92587799\n\t\t -0.0096439999 -0.3777 0.92587799 -0.0096439999 -0.3777 0.92595398 -0.010468 -0.37749201\n\t\t 0.92104697 0.02994 -0.38829899 0.93118101 -0.050264999 -0.361076 0.92595398 -0.010468\n\t\t -0.37749201 0.92587799 -0.0096439999 -0.3777 0.92587799 -0.0096439999 -0.3777 0.93137801\n\t\t -0.052096002 -0.36030701 0.93118101 -0.050264999 -0.361076 0.93118101 -0.050264999\n\t\t -0.361076 0.93137801 -0.052096002 -0.36030701 0.93325698 -0.068637997 -0.35259199\n\t\t 0.93325698 -0.068637997 -0.35259199 0.933272 -0.068607002 -0.35255599 0.93118101\n\t\t -0.050264999 -0.361076 -0.113804 0.762326 -0.63710803 -0.118111 0.83190101 -0.54220998\n\t\t 0 0.83683598 -0.54745299 0 0.83683598 -0.54745299 0 0.76524103 -0.64374399 -0.113804\n\t\t 0.762326 -0.63710803 -0.113804 0.762326 -0.63710803 0 0.76524103 -0.64374399 0 0.69801497\n\t\t -0.71608299 -0.130317 0.52419698 -0.84156698 -0.22880501 0.51984 -0.82305199 -0.23463\n\t\t 0.55767298 -0.79620999 0.240307 -0.090092003 -0.96650702 0.14042 -0.049320001 -0.98886299\n\t\t 0.081151001 -0.10984 -0.99063098 0.081151001 -0.10984 -0.99063098 0.1218 -0.120854\n\t\t -0.98517001 0.240307 -0.090092003 -0.96650702 0.240307 -0.090092003 -0.96650702 0.1218\n\t\t -0.120854 -0.98517001 0.28925601 -0.100132 -0.95200002 0.28925601 -0.100132 -0.95200002\n\t\t 0.289653 -0.098972 -0.95200098 0.240307 -0.090092003 -0.96650702 0.045015 -0.203529\n\t\t -0.97803301 0.1218 -0.120854 -0.98517001 0.081151001 -0.10984 -0.99063098 0.081151001\n\t\t -0.10984 -0.99063098 0.045657001 -0.205668 -0.97755599 0.045015 -0.203529 -0.97803301\n\t\t 0.045626 -0.21112999 -0.97639298 0.045015 -0.203529 -0.97803301 0.045657001 -0.205668\n\t\t -0.97755599 0.045657001 -0.205668 -0.97755599 0.046176001 -0.21488599 -0.97554702\n\t\t 0.045626 -0.21112999 -0.97639298 0.045626 -0.21112999 -0.97639298 0.046176001 -0.21488599\n\t\t -0.97554702 0.046236001 -0.219157 -0.974594 0.046236001 -0.219157 -0.974594 0.046969\n\t\t -0.21586099 -0.97529399 0.045626 -0.21112999 -0.97639298 0.081151001 -0.10984 -0.99063098\n\t\t 0.14042 -0.049320001 -0.98886299 0.055025999 -0.019013001 -0.99830401 0.055025999\n\t\t -0.019013001 -0.99830401 0.042757001 -0.0074160001 -0.99905801 0.081151001 -0.10984\n\t\t -0.99063098;\n\tsetAttr \".n[18426:18591]\" -type \"float3\"  0.042757001 -0.0074160001 -0.99905801\n\t\t 0.055025999 -0.019013001 -0.99830401 0 -0.0057680001 -0.99998301 0 -0.0057680001\n\t\t -0.99998301 0 -0.002136 -0.99999797 0.042757001 -0.0074160001 -0.99905801 0.379475\n\t\t -0.015838999 -0.92506599 0.38789901 -0.025636001 -0.921345 0.40288299 -0.0253 -0.91490197\n\t\t 0.40288299 -0.0253 -0.91490197 0.376452 -0.015046 -0.926314 0.379475 -0.015838999\n\t\t -0.92506599 0.376452 -0.015046 -0.926314 0.40288299 -0.0253 -0.91490197 0.47296101\n\t\t -0.0090640001 -0.881037 0.47296101 -0.0090640001 -0.881037 0.35198 -0.0086369999\n\t\t -0.93596798 0.376452 -0.015046 -0.926314 0.376452 -0.015046 -0.926314 0.35198 -0.0086369999\n\t\t -0.93596798 0.259471 -0.0090640001 -0.96570802 0.259471 -0.0090640001 -0.96570802\n\t\t 0.234842 -0.0087280003 -0.97199398 0.376452 -0.015046 -0.926314 0.34825099 -0.0053099999\n\t\t -0.93738699 0.38789901 -0.025636001 -0.921345 0.379475 -0.015838999 -0.92506599 0.379475\n\t\t -0.015838999 -0.92506599 0.29792699 0.015992001 -0.95445502 0.34825099 -0.0053099999\n\t\t -0.93738699 0.24528299 0.020692 -0.96923101 0.34825099 -0.0053099999 -0.93738699\n\t\t 0.29792699 0.015992001 -0.95445502 0.29792699 0.015992001 -0.95445502 0.219495 0.030916\n\t\t -0.975124 0.24528299 0.020692 -0.96923101 0.24528299 0.020692 -0.96923101 0.219495\n\t\t 0.030916 -0.975124 0.15506899 0.040102001 -0.98708898 0.15506899 0.040102001 -0.98708898\n\t\t 0.150947 0.033968002 -0.98795801 0.24528299 0.020692 -0.96923101 0.150947 0.033968002\n\t\t -0.98795801 0.15506899 0.040102001 -0.98708898 0.073886 0.041963998 -0.99638301 0.073886\n\t\t 0.041963998 -0.99638301 0.070772998 0.040956002 -0.99665099 0.150947 0.033968002\n\t\t -0.98795801 0.070772998 0.040956002 -0.99665099 0.073886 0.041963998 -0.99638301\n\t\t 0 0.042635001 -0.99909103 0 0.042635001 -0.99909103 0 0.04236 -0.999102 0.070772998\n\t\t 0.040956002 -0.99665099 0.58039403 0.43771401 -0.68669403 0.55675799 0.45467299 -0.69519299\n\t\t 0.7924 0.026949 -0.60940701 0.7924 0.026949 -0.60940701 0.76860398 0.223281 -0.59949499\n\t\t 0.58039403 0.43771401 -0.68669403 0.34490001 0.589818 -0.73017699 0.55675799 0.45467299\n\t\t -0.69519299 0.58039403 0.43771401 -0.68669403 0.58039403 0.43771401 -0.68669403 0.36697\n\t\t 0.58326399 -0.72466302 0.34490001 0.589818 -0.73017699 0.34490001 0.589818 -0.73017699\n\t\t 0.36697 0.58326399 -0.72466302 0.15537301 0.64621401 -0.747172 0.15537301 0.64621401\n\t\t -0.747172 0.16379599 0.65069699 -0.74146098 0.34490001 0.589818 -0.73017699 0.76860398\n\t\t 0.223281 -0.59949499 0.7924 0.026949 -0.60940701 0.83979797 0.0048830002 -0.54287702\n\t\t 0.83979797 0.0048830002 -0.54287702 0.874107 0.035921998 -0.484404 0.76860398 0.223281\n\t\t -0.59949499 0 0.66409099 -0.74765199 0.16379599 0.65069699 -0.74146098 0.15537301\n\t\t 0.64621401 -0.747172 0.15537301 0.64621401 -0.747172 0 0.65807199 -0.75295502 0 0.66409099\n\t\t -0.74765199 -0.174418 0.084477 0.98104101 -0.244886 0.102392 0.96412998 -0.19218101\n\t\t 0.084783003 0.97768998 -0.19218101 0.084783003 0.97768998 -0.16056199 0.071934 0.98440099\n\t\t -0.174418 0.084477 0.98104101 -0.28330499 0.107029 0.95303899 -0.19218101 0.084783003\n\t\t 0.97768998 -0.244886 0.102392 0.96412998 -0.244886 0.102392 0.96412998 -0.28380099\n\t\t 0.103553 0.95327598 -0.28330499 0.107029 0.95303899 0.00091499998 0.99602097 -0.089116\n\t\t 0.001007 0.99602902 -0.089024998 0.00091499998 0.99602097 -0.089116 0.00091499998\n\t\t 0.99602097 -0.089116 0.00082399999 0.99601299 -0.089207001 0.00091499998 0.99602097\n\t\t -0.089116 0.99563903 -0.013214 -0.092349 0.99381298 0.062075 -0.092106 0.99311298\n\t\t 0.068178996 -0.095279999 0.99311298 0.068178996 -0.095279999 0.99490398 -0.033234999\n\t\t -0.095190004 0.99563903 -0.013214 -0.092349 0.99563903 -0.013214 -0.092349 0.99490398\n\t\t -0.033234999 -0.095190004 0.98951203 0.119604 -0.080996998 0.98951203 0.119604 -0.080996998\n\t\t 0.99387199 0.070009999 -0.085543998 0.99563903 -0.013214 -0.092349 0.75914502 0.64246899\n\t\t -0.10456 0.75739902 0.64438701 -0.105414 0.765118 0.635809 -0.10169 0.765118 0.635809\n\t\t -0.10169 0.76664001 0.63409603 -0.100927 0.75914502 0.64246899 -0.10456 -0.688721\n\t\t 0.71875101 -0.095188998 -0.68561298 0.72189999 -0.093785003 -0.69653398 0.71069503\n\t\t -0.098759003 -0.69653398 0.71069503 -0.098759003 -0.69923198 0.70786899 -0.099982001\n\t\t -0.688721 0.71875101 -0.095188998 -0.97727501 0.190163 -0.093662001 -0.946558 0.308337\n\t\t -0.094641 -0.94793802 0.30357799 -0.096198 -0.94793802 0.30357799 -0.096198 -0.97204202\n\t\t 0.21403199 -0.096562997 -0.97727501 0.190163 -0.093662001 -0.97727501 0.190163 -0.093662001\n\t\t -0.97204202 0.21403199 -0.096562997 -0.99096501 0.097112 -0.092504002 -0.99096501\n\t\t 0.097112 -0.092504002 -0.99168003 0.093356997 -0.088627003 -0.97727501 0.190163 -0.093662001\n\t\t 0.52545297 -0.823048 0.21562 0.52960402 -0.80333197 0.27235499 0.517268 -0.85221398\n\t\t 0.078525998 0.517268 -0.85221398 0.078525998 0.51452702 -0.85747403 -2.9999999e-05\n\t\t 0.52545297 -0.823048 0.21562 0.54162699 -0.79313701 0.27851999 0.52960402 -0.80333197\n\t\t 0.27235499 0.52545297 -0.823048 0.21562 -0.0048520002 -0.88821697 0.45939901 -0.002136\n\t\t -0.97910398 0.203347 -0.002655 -0.96754199 0.25269699 0 -1 0 -0.002655 -0.96754199\n\t\t 0.25269699 -0.002136 -0.97910398 0.203347 -0.002136 -0.97910398 0.203347 0 -1 0 0\n\t\t -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.987679 0.14487299 -0.059176002 0.99387199\n\t\t 0.070009999 -0.085543998 0.98951203 0.119604 -0.080996998 0.98951203 0.119604 -0.080996998;\n\tsetAttr \".n[18592:18757]\" -type \"float3\"  0.99616301 0.080204003 -0.035036001 0.987679\n\t\t 0.14487299 -0.059176002 -0.000214 0.99481302 -0.101718 -0.000214 0.99481302 -0.101718\n\t\t 0.141945 0.98473501 -0.100744 0.141945 0.98473501 -0.100744 0.139901 0.98507702 -0.100257\n\t\t -0.000214 0.99481302 -0.101718 0.139901 0.98507702 -0.100257 0.141945 0.98473501\n\t\t -0.100744 0.20637099 0.97365499 -0.096989997 0.20637099 0.97365499 -0.096989997 0.205238\n\t\t 0.97403598 -0.095554002 0.139901 0.98507702 -0.100257 0.94384098 0.061771002 -0.32457301\n\t\t 0.97507203 -0.069920003 -0.210585 0.91039801 -0.049747001 -0.410732 0.91039801 -0.049747001\n\t\t -0.410732 0.86726397 -0.0069889999 -0.49779901 0.94384098 0.061771002 -0.32457301\n\t\t 0.83979797 0.0048830002 -0.54287702 0.94384098 0.061771002 -0.32457301 0.86726397\n\t\t -0.0069889999 -0.49779901 0.86726397 -0.0069889999 -0.49779901 0.874107 0.035921998\n\t\t -0.484404 0.83979797 0.0048830002 -0.54287702 0.99174899 0.107489 -0.069858 0.99744499\n\t\t -0.071443997 0 0.97507203 -0.069920003 -0.210585 0.97507203 -0.069920003 -0.210585\n\t\t 0.94384098 0.061771002 -0.32457301 0.99174899 0.107489 -0.069858 0.99744499 -0.071443997\n\t\t 0 0.99744499 -0.071443997 0 0.99174899 0.107489 -0.069858 0.99174899 0.107489 -0.069858\n\t\t 0.99260598 0.121375 -0.001251 0.99744499 -0.071443997 0 0.97539401 0.219098 -0.024537001\n\t\t 0.99174899 0.107489 -0.069858 0.94384098 0.061771002 -0.32457301 0.99260598 0.121375\n\t\t -0.001251 0.99174899 0.107489 -0.069858 0.97539401 0.219098 -0.024537001 0.94384098\n\t\t 0.061771002 -0.32457301 0.98331302 0.181922 0 0.97539401 0.219098 -0.024537001 0.97539401\n\t\t 0.219098 -0.024537001 0.947523 0.31968701 0 0.99260598 0.121375 -0.001251 0.27879599\n\t\t 0.62317902 -0.730699 0.52926302 0.59213299 -0.60766703 0.43117699 0.597996 -0.67563802\n\t\t 0.43117699 0.597996 -0.67563802 0.24885599 0.61075699 -0.75169599 0.27879599 0.62317902\n\t\t -0.730699 0.697936 0.50795603 -0.504843 0.43117699 0.597996 -0.67563802 0.52926302\n\t\t 0.59213299 -0.60766703 0.52926302 0.59213299 -0.60766703 0.82127798 0.421626 -0.38436201\n\t\t 0.697936 0.50795603 -0.504843 0.104557 0.60903198 -0.78622401 0.27879599 0.62317902\n\t\t -0.730699 0.24885599 0.61075699 -0.75169599 0.24885599 0.61075699 -0.75169599 0.099036001\n\t\t 0.60145098 -0.79274797 0.104557 0.60903198 -0.78622401 0.871997 0.315447 -0.37431899\n\t\t 0.697936 0.50795603 -0.504843 0.82127798 0.421626 -0.38436201 0.82127798 0.421626\n\t\t -0.38436201 0.93823099 0.123543 -0.32320201 0.871997 0.315447 -0.37431899 0.93823099\n\t\t 0.123543 -0.32320201 0.94019902 0.0046999999 -0.340592 0.871997 0.315447 -0.37431899\n\t\t 0 0.60146898 -0.79889601 0.104557 0.60903198 -0.78622401 0.099036001 0.60145098 -0.79274797\n\t\t 0.099036001 0.60145098 -0.79274797 0 0.59902799 -0.80072802 0 0.60146898 -0.79889601\n\t\t 0.12592 0.00091599999 -0.99203998 0.17698 -0.002503 -0.98421103 0.17676701 -0.0043950002\n\t\t -0.98424298 0.17676701 -0.0043950002 -0.98424298 0.12693 -0.00057999999 -0.99191201\n\t\t 0.12592 0.00091599999 -0.99203998 0.40410301 -0.103612 -0.90882701 0.17676701 -0.0043950002\n\t\t -0.98424298 0.17698 -0.002503 -0.98421103 0.17698 -0.002503 -0.98421103 0.35124901\n\t\t -0.086828001 -0.93224698 0.40410301 -0.103612 -0.90882701 0.063722998 0.00045799999\n\t\t -0.99796802 0.12592 0.00091599999 -0.99203998 0.12693 -0.00057999999 -0.99191201\n\t\t 0.12693 -0.00057999999 -0.99191201 0.065861002 -3.1e-05 -0.99782902 0.063722998 0.00045799999\n\t\t -0.99796802 0.51937598 -0.19636101 -0.83168 0.40410301 -0.103612 -0.90882701 0.35124901\n\t\t -0.086828001 -0.93224698 0.35124901 -0.086828001 -0.93224698 0.494479 -0.207655 -0.84402001\n\t\t 0.51937598 -0.19636101 -0.83168 0 -0.000244 -1 0.063722998 0.00045799999 -0.99796802\n\t\t 0.065861002 -3.1e-05 -0.99782902 0.065861002 -3.1e-05 -0.99782902 0 -0.00042699999\n\t\t -1 0 -0.000244 -1 0.67996299 -0.47536299 -0.55828398 0.79731703 -0.39623201 -0.45528701\n\t\t 0.74646503 -0.434102 -0.504327 0.74646503 -0.434102 -0.504327 0.62454098 -0.50423503\n\t\t -0.59640199 0.67996299 -0.47536299 -0.55828398 -0.401537 -0.91584301 0 -0.42082399\n\t\t -0.90714198 -0.00045799999 -0.23310301 -0.97245198 0 -0.23310301 -0.97245198 0 -0.21852\n\t\t -0.975833 0 -0.401537 -0.91584301 0 -0.42082399 -0.90714198 -0.00045799999 -0.401537\n\t\t -0.91584301 0 -0.56764901 -0.82324302 -0.0067449999 -0.56764901 -0.82324302 -0.0067449999\n\t\t -0.62332398 -0.78196299 -0.001007 -0.42082399 -0.90714198 -0.00045799999 -0.21852\n\t\t -0.975833 0 -0.23310301 -0.97245198 0 -0.076448999 -0.99707401 0 -0.076448999 -0.99707401\n\t\t 0 -0.071719997 -0.99742502 0 -0.21852 -0.975833 0 -0.81615299 -0.57782602 -0.003327\n\t\t -0.62332398 -0.78196299 -0.001007 -0.56764901 -0.82324302 -0.0067449999 -0.56764901\n\t\t -0.82324302 -0.0067449999 -0.70792198 -0.70593899 -0.022279 -0.81615299 -0.57782602\n\t\t -0.003327 -0.97360998 -0.22822 -0.00042699999 -0.81615299 -0.57782602 -0.003327 -0.70792198\n\t\t -0.70593899 -0.022279 -0.70792198 -0.70593899 -0.022279 -0.95591199 -0.29365301 0\n\t\t -0.97360998 -0.22822 -0.00042699999 0 -1 0 -0.071719997 -0.99742502 0 -0.076448999\n\t\t -0.99707401 0 -0.076448999 -0.99707401 0 0 -1 0 0 -1 0 -0.99999899 -0.001313 0 -0.97360998\n\t\t -0.22822 -0.00042699999 -0.95591199 -0.29365301 0 -0.95591199 -0.29365301 0 -0.99999899\n\t\t -0.001313 0 -0.99999899 -0.001313 0 0.99616301 0.080204003 -0.035036001 0.99244899\n\t\t -0.122656 0 0.996898 -0.070742004 -0.034485999 0.987679 0.14487299 -0.059176002 0.99616301\n\t\t 0.080204003 -0.035036001;\n\tsetAttr \".n[18758:18923]\" -type \"float3\"  0.996898 -0.070742004 -0.034485999 0.76002598\n\t\t -0.162852 -0.62915802 0.83979797 0.0048830002 -0.54287702 0.7924 0.026949 -0.60940701\n\t\t 0.50588799 0.86259902 0 0.615785 0.78791398 0 0.587129 0.80949301 0 0.587129 0.80949301\n\t\t 0 0.50588799 0.86259902 0 0.50588799 0.86259902 0 0.587129 0.80949301 0 0.615785\n\t\t 0.78791398 0 0.68993503 0.72387201 0 0.68993503 0.72387201 0 0.68994999 0.72385699\n\t\t 0 0.587129 0.80949301 0 -0.240307 -0.090092003 -0.96650702 -0.1218 -0.120854 -0.98517001\n\t\t -0.081151001 -0.10984 -0.99063098 -0.081151001 -0.10984 -0.99063098 -0.14042 -0.049320001\n\t\t -0.98886299 -0.240307 -0.090092003 -0.96650702 -0.28925601 -0.100132 -0.95200002\n\t\t -0.1218 -0.120854 -0.98517001 -0.240307 -0.090092003 -0.96650702 -0.240307 -0.090092003\n\t\t -0.96650702 -0.28962499 -0.098972999 -0.95200902 -0.28925601 -0.100132 -0.95200002\n\t\t -0.081151001 -0.10984 -0.99063098 -0.1218 -0.120854 -0.98517001 -0.045015 -0.203529\n\t\t -0.97803301 -0.045015 -0.203529 -0.97803301 -0.045655999 -0.205668 -0.97755599 -0.081151001\n\t\t -0.10984 -0.99063098 -0.045655999 -0.205668 -0.97755599 -0.045015 -0.203529 -0.97803301\n\t\t -0.045626 -0.21112999 -0.97639298 -0.045626 -0.21112999 -0.97639298 -0.046176001\n\t\t -0.21488599 -0.97554702 -0.045655999 -0.205668 -0.97755599 -0.046236001 -0.219157\n\t\t -0.974594 -0.046176001 -0.21488599 -0.97554702 -0.045626 -0.21112999 -0.97639298\n\t\t -0.045626 -0.21112999 -0.97639298 -0.046969 -0.21586099 -0.97529399 -0.046236001\n\t\t -0.219157 -0.974594 -0.055055998 -0.019013001 -0.99830198 -0.14042 -0.049320001 -0.98886299\n\t\t -0.081151001 -0.10984 -0.99063098 -0.081151001 -0.10984 -0.99063098 -0.042787001\n\t\t -0.0074160001 -0.99905699 -0.055055998 -0.019013001 -0.99830198 0 -0.0057680001 -0.99998301\n\t\t -0.055055998 -0.019013001 -0.99830198 -0.042787001 -0.0074160001 -0.99905699 -0.042787001\n\t\t -0.0074160001 -0.99905699 0 -0.002136 -0.99999797 0 -0.0057680001 -0.99998301 -0.379475\n\t\t -0.01584 -0.92506599 -0.376479 -0.015046 -0.92630303 -0.40288299 -0.025301 -0.91490197\n\t\t -0.40288299 -0.025301 -0.91490197 -0.38789901 -0.025636001 -0.921345 -0.379475 -0.01584\n\t\t -0.92506599 -0.47294801 -0.0090340003 -0.88104397 -0.40288299 -0.025301 -0.91490197\n\t\t -0.376479 -0.015046 -0.92630303 -0.376479 -0.015046 -0.92630303 -0.35194299 -0.0086369999\n\t\t -0.93598199 -0.47294801 -0.0090340003 -0.88104397 -0.259471 -0.0090640001 -0.96570802\n\t\t -0.35194299 -0.0086369999 -0.93598199 -0.376479 -0.015046 -0.92630303 -0.376479 -0.015046\n\t\t -0.92630303 -0.234907 -0.0087289996 -0.97197902 -0.259471 -0.0090640001 -0.96570802\n\t\t -0.379475 -0.01584 -0.92506599 -0.38789901 -0.025636001 -0.921345 -0.34825099 -0.0053099999\n\t\t -0.93738699 -0.34825099 -0.0053099999 -0.93738699 -0.29792699 0.015992001 -0.95445502\n\t\t -0.379475 -0.01584 -0.92506599 -0.29792699 0.015992001 -0.95445502 -0.34825099 -0.0053099999\n\t\t -0.93738699 -0.24528299 0.020692 -0.96923101 -0.24528299 0.020692 -0.96923101 -0.219495\n\t\t 0.030916 -0.975124 -0.29792699 0.015992001 -0.95445502 -0.15506899 0.040102001 -0.98708898\n\t\t -0.219495 0.030916 -0.975124 -0.24528299 0.020692 -0.96923101 -0.24528299 0.020692\n\t\t -0.96923101 -0.150947 0.033967 -0.98795801 -0.15506899 0.040102001 -0.98708898 -0.073886\n\t\t 0.041963 -0.99638301 -0.15506899 0.040102001 -0.98708898 -0.150947 0.033967 -0.98795801\n\t\t -0.150947 0.033967 -0.98795801 -0.070772998 0.040956002 -0.99665099 -0.073886 0.041963\n\t\t -0.99638301 0 0.042635001 -0.99909103 -0.073886 0.041963 -0.99638301 -0.070772998\n\t\t 0.040956002 -0.99665099 -0.070772998 0.040956002 -0.99665099 0 0.04236 -0.999102\n\t\t 0 0.042635001 -0.99909103 -0.7924 0.026918 -0.60940701 -0.556759 0.45467201 -0.69519299\n\t\t -0.58039403 0.43771401 -0.68669403 -0.58039403 0.43771401 -0.68669403 -0.76860398\n\t\t 0.223281 -0.59949499 -0.7924 0.026918 -0.60940701 -0.58039403 0.43771401 -0.68669403\n\t\t -0.556759 0.45467201 -0.69519299 -0.34490001 0.589818 -0.73017699 -0.34490001 0.589818\n\t\t -0.73017699 -0.36697 0.58326399 -0.72466302 -0.58039403 0.43771401 -0.68669403 -0.15537401\n\t\t 0.64621401 -0.747172 -0.36697 0.58326399 -0.72466302 -0.34490001 0.589818 -0.73017699\n\t\t -0.34490001 0.589818 -0.73017699 -0.16379599 0.65069699 -0.74146098 -0.15537401 0.64621401\n\t\t -0.747172 -0.83981198 0.0048830002 -0.54285502 -0.7924 0.026918 -0.60940701 -0.76860398\n\t\t 0.223281 -0.59949499 -0.76860398 0.223281 -0.59949499 -0.874107 0.035921 -0.484404\n\t\t -0.83981198 0.0048830002 -0.54285502 -0.15537401 0.64621401 -0.747172 -0.16379599\n\t\t 0.65069699 -0.74146098 0 0.66409099 -0.74765199 0 0.66409099 -0.74765199 0 0.65807199\n\t\t -0.75295502 -0.15537401 0.64621401 -0.747172 0.174417 0.084477 0.98104101 0.16056199\n\t\t 0.071934 0.98440099 0.19218101 0.084783003 0.97768998 0.19218101 0.084783003 0.97768998\n\t\t 0.244914 0.102391 0.96412301 0.174417 0.084477 0.98104101 0.244914 0.102391 0.96412301\n\t\t 0.19218101 0.084783003 0.97768998 0.28330499 0.107029 0.95303899 0.28330499 0.107029\n\t\t 0.95303899 0.28380099 0.103553 0.95327598 0.244914 0.102391 0.96412301 -0.00091599999\n\t\t 0.99602097 -0.089116 -0.001007 0.99602902 -0.089024998 -0.00091599999 0.99602097\n\t\t -0.089116 -0.00091599999 0.99602097 -0.089116 -0.00082399999 0.99601299 -0.089207001\n\t\t -0.00091599999 0.99602097 -0.089116 -0.99311298 0.068178996 -0.095279999 -0.99381298\n\t\t 0.062075 -0.092106 -0.99552101 -0.011903 -0.093783997 -0.99552101 -0.011903 -0.093783997\n\t\t -0.99514103 -0.030825 -0.093511 -0.99311298 0.068178996 -0.095279999 -0.99514103\n\t\t -0.030825 -0.093511 -0.99552101 -0.011903 -0.093783997 -0.99388498 0.067598999 -0.087315001\n\t\t -0.99388498 0.067598999 -0.087315001 -0.98978001 0.11832 -0.079593003 -0.99514103\n\t\t -0.030825 -0.093511;\n\tsetAttr \".n[18924:19089]\" -type \"float3\"  -0.76511902 0.63580799 -0.10169 -0.75739998\n\t\t 0.64438599 -0.105414 -0.75914502 0.64246798 -0.10456 -0.75914502 0.64246798 -0.10456\n\t\t -0.76664001 0.63409501 -0.100927 -0.76511902 0.63580799 -0.10169 0.69653398 0.71069503\n\t\t -0.098759003 0.68561202 0.72189999 -0.093785003 0.68873501 0.71873701 -0.095191002\n\t\t 0.68873501 0.71873701 -0.095191002 0.69923198 0.70786899 -0.099982001 0.69653398\n\t\t 0.71069503 -0.098759003 0.94792902 0.303606 -0.096197002 0.946558 0.308337 -0.094641\n\t\t 0.97752202 0.187875 -0.095677003 0.97752202 0.187875 -0.095677003 0.972431 0.21293201\n\t\t -0.095067002 0.94792902 0.303606 -0.096197002 0.972431 0.21293201 -0.095067002 0.97752202\n\t\t 0.187875 -0.095677003 0.99106002 0.096106 -0.092534997 0.99106002 0.096106 -0.092534997\n\t\t 0.990861 0.100988 -0.089420997 0.972431 0.21293201 -0.095067002 -0.56518698 -0.81968802\n\t\t 0.093144998 -0.66277999 -0.74881399 -2.9999999e-05 -0.52038097 -0.821666 0.23252501\n\t\t -0.52038097 -0.821666 0.23252501 -0.460076 -0.85578799 0.236554 -0.56518698 -0.81968802\n\t\t 0.093144998 -0.460076 -0.85578799 0.236554 -0.52038097 -0.821666 0.23252501 -0.541601\n\t\t -0.79314399 0.27855301 0.002655 -0.96754199 0.25269699 0.002137 -0.97910398 0.203347\n\t\t 0.0048529999 -0.88821697 0.45939901 0.002137 -0.97910398 0.203347 0.002655 -0.96754199\n\t\t 0.25269699 0 -1 0 0 -1 0 0 -1 0 0.002137 -0.97910398 0.203347 0 -1 0 0 -1 0 0 -1\n\t\t 0 0 -1 0 0 -1 0 0 -1 0 -0.98978001 0.11832 -0.079593003 -0.99388498 0.067598999 -0.087315001\n\t\t -0.987679 0.14487199 -0.059176002 -0.987679 0.14487199 -0.059176002 -0.99616301 0.080202997\n\t\t -0.035036001 -0.98978001 0.11832 -0.079593003 -0.000214 0.99481302 -0.101718 -0.000214\n\t\t 0.99481302 -0.101718 -0.13889401 0.98516297 -0.100805 -0.13889401 0.98516297 -0.100805\n\t\t -0.140847 0.98494798 -0.100195 -0.000214 0.99481302 -0.101718 -0.140847 0.98494798\n\t\t -0.100195 -0.13889401 0.98516297 -0.100805 -0.20695201 0.97353798 -0.096929997 -0.20695201\n\t\t 0.97353798 -0.096929997 -0.20802 0.97347301 -0.095280997 -0.140847 0.98494798 -0.100195\n\t\t -0.94381899 0.061771002 -0.324637 -0.86725098 -0.0069889999 -0.49782199 -0.91038698\n\t\t -0.049747001 -0.41075701 -0.91038698 -0.049747001 -0.41075701 -0.97506499 -0.069920003\n\t\t -0.21061499 -0.94381899 0.061771002 -0.324637 -0.86725098 -0.0069889999 -0.49782199\n\t\t -0.94381899 0.061771002 -0.324637 -0.83981198 0.0048830002 -0.54285502 -0.83981198\n\t\t 0.0048830002 -0.54285502 -0.874107 0.035921 -0.484404 -0.86725098 -0.0069889999 -0.49782199\n\t\t -0.99174702 0.107488 -0.069889002 -0.94381899 0.061771002 -0.324637 -0.97506499 -0.069920003\n\t\t -0.21061499 -0.97506499 -0.069920003 -0.21061499 -0.99744499 -0.071445003 0 -0.99174702\n\t\t 0.107488 -0.069889002 -0.99174702 0.107488 -0.069889002 -0.99744499 -0.071445003\n\t\t 0 -0.99744499 -0.071445003 0 -0.99744499 -0.071445003 0 -0.99260598 0.121375 -0.001251\n\t\t -0.99174702 0.107488 -0.069889002 -0.94381899 0.061771002 -0.324637 -0.99174702 0.107488\n\t\t -0.069889002 -0.97538698 0.219126 -0.024568001 -0.97538698 0.219126 -0.024568001\n\t\t -0.99174702 0.107488 -0.069889002 -0.99260598 0.121375 -0.001251 -0.97538698 0.219126\n\t\t -0.024568001 -0.98331302 0.181922 0 -0.94381899 0.061771002 -0.324637 -0.99260598\n\t\t 0.121375 -0.001251 -0.94752401 0.319686 0 -0.97538698 0.219126 -0.024568001 -0.27879599\n\t\t 0.62317902 -0.730699 -0.24885599 0.61075699 -0.75169599 -0.431178 0.597996 -0.67563802\n\t\t -0.431178 0.597996 -0.67563802 -0.52926302 0.59213299 -0.60766703 -0.27879599 0.62317902\n\t\t -0.730699 -0.52926302 0.59213299 -0.60766703 -0.431178 0.597996 -0.67563802 -0.697936\n\t\t 0.50795603 -0.504843 -0.697936 0.50795603 -0.504843 -0.82127798 0.421626 -0.38436201\n\t\t -0.52926302 0.59213299 -0.60766703 -0.24885599 0.61075699 -0.75169599 -0.27879599\n\t\t 0.62317902 -0.730699 -0.104557 0.60903198 -0.78622401 -0.104557 0.60903198 -0.78622401\n\t\t -0.099036001 0.60145098 -0.79274797 -0.24885599 0.61075699 -0.75169599 -0.82127798\n\t\t 0.421626 -0.38436201 -0.697936 0.50795603 -0.504843 -0.87198699 0.31544301 -0.374345\n\t\t -0.87198699 0.31544301 -0.374345 -0.93823099 0.123543 -0.32320201 -0.82127798 0.421626\n\t\t -0.38436201 -0.93823099 0.123543 -0.32320201 -0.87198699 0.31544301 -0.374345 -0.94019902\n\t\t 0.0046999999 -0.340592 -0.099036001 0.60145098 -0.79274797 -0.104557 0.60903198 -0.78622401\n\t\t 0 0.60146898 -0.79889601 0 0.60146898 -0.79889601 0 0.59902799 -0.80072802 -0.099036001\n\t\t 0.60145098 -0.79274797 -0.12592 0.00091499998 -0.99203998 -0.12693 -0.00057999999\n\t\t -0.99191201 -0.17676701 -0.0043640002 -0.98424298 -0.17676701 -0.0043640002 -0.98424298\n\t\t -0.17701 -0.002503 -0.98420602 -0.12592 0.00091499998 -0.99203998 -0.17701 -0.002503\n\t\t -0.98420602 -0.17676701 -0.0043640002 -0.98424298 -0.40410301 -0.103612 -0.90882701\n\t\t -0.40410301 -0.103612 -0.90882701 -0.351248 -0.086857997 -0.93224502 -0.17701 -0.002503\n\t\t -0.98420602 -0.12693 -0.00057999999 -0.99191201 -0.12592 0.00091499998 -0.99203998\n\t\t -0.063722998 0.00045799999 -0.99796802 -0.063722998 0.00045799999 -0.99796802 -0.06583\n\t\t -3.1e-05 -0.99783099 -0.12693 -0.00057999999 -0.99191201 -0.351248 -0.086857997 -0.93224502\n\t\t -0.40410301 -0.103612 -0.90882701 -0.51937598 -0.19636101 -0.83168 -0.51937598 -0.19636101\n\t\t -0.83168 -0.494499 -0.207682 -0.84400201 -0.351248 -0.086857997 -0.93224502 -0.06583\n\t\t -3.1e-05 -0.99783099 -0.063722998 0.00045799999 -0.99796802 0 -0.000244 -1 0 -0.000244\n\t\t -1 0 -0.00042699999 -1 -0.06583 -3.1e-05 -0.99783099 -0.67997199 -0.47534001 -0.55829197;\n\tsetAttr \".n[19090:19255]\" -type \"float3\"  -0.62454998 -0.50421202 -0.596412 -0.74647403\n\t\t -0.43407801 -0.50433302 -0.74647403 -0.43407801 -0.50433302 -0.79730701 -0.396258\n\t\t -0.45528099 -0.67997199 -0.47534001 -0.55829197 0.21852 -0.97583199 0 0.23310301\n\t\t -0.97245198 0 0.421258 -0.906941 0 0.421258 -0.906941 0 0.401813 -0.91572201 -0.00036599999\n\t\t 0.21852 -0.97583199 0 0.401813 -0.91572201 -0.00036599999 0.421258 -0.906941 0 0.62312001\n\t\t -0.78212601 -0.00060999999 0.62312001 -0.78212601 -0.00060999999 0.567173 -0.82356602\n\t\t -0.0072940001 0.401813 -0.91572201 -0.00036599999 0.23310301 -0.97245198 0 0.21852\n\t\t -0.97583199 0 0.071719997 -0.99742502 0 0.071719997 -0.99742502 0 0.076448999 -0.99707401\n\t\t 0 0.23310301 -0.97245198 0 0.567173 -0.82356602 -0.0072940001 0.62312001 -0.78212601\n\t\t -0.00060999999 0.81615299 -0.57782602 -0.003327 0.81615299 -0.57782602 -0.003327\n\t\t 0.70795298 -0.705908 -0.022279 0.567173 -0.82356602 -0.0072940001 0.70795298 -0.705908\n\t\t -0.022279 0.81615299 -0.57782602 -0.003327 0.97360998 -0.228219 -0.00042699999 0.97360998\n\t\t -0.228219 -0.00042699999 0.95591199 -0.293652 0 0.70795298 -0.705908 -0.022279 0.076448999\n\t\t -0.99707401 0 0.071719997 -0.99742502 0 0 -1 0 0 -1 0 0 -1 0 0.076448999 -0.99707401\n\t\t 0 0.99999899 -0.001312 0 0.99999899 -0.001312 0 0.95591199 -0.293652 0 0.95591199\n\t\t -0.293652 0 0.97360998 -0.228219 -0.00042699999 0.99999899 -0.001312 0 -0.76005298\n\t\t -0.16285101 -0.629125 -0.7924 0.026918 -0.60940701 -0.83981198 0.0048830002 -0.54285502\n\t\t -0.987679 0.14487199 -0.059176002 -0.996898 -0.070743002 -0.034485999 -0.99616301\n\t\t 0.080202997 -0.035036001 -0.996898 -0.070743002 -0.034485999 -0.99244899 -0.122656\n\t\t 0 -0.99616301 0.080202997 -0.035036001 -0.505889 0.86259902 0 -0.505889 0.86259902\n\t\t 0 -0.58713001 0.80949301 0 -0.58713001 0.80949301 0 -0.61578602 0.78791398 0 -0.505889\n\t\t 0.86259902 0 -0.61578602 0.78791398 0 -0.58713001 0.80949301 0 -0.68994999 0.72385699\n\t\t 0 -0.68994999 0.72385699 0 -0.68994999 0.72385699 0 -0.61578602 0.78791398 0 0.93361902\n\t\t 0.35826799 0 0.933599 0.35832101 0 0.99965602 -0.026216 0 0.99965602 -0.026216 0\n\t\t 0.99965501 -0.026246 0 0.93361902 0.35826799 0 0.72540402 0.68832397 0 0.933599 0.35832101\n\t\t 0 0.93361902 0.35826799 0 0.93361902 0.35826799 0 0.72543299 0.68829203 0 0.72540402\n\t\t 0.68832397 0 0.72540402 0.68832397 0 0.72543299 0.68829203 0 0.40682301 0.91350698\n\t\t 0 0.40682301 0.91350698 0 0.40676099 0.913535 0 0.72540402 0.68832397 0 0.026216\n\t\t 0.99965602 0 0.40676099 0.913535 0 0.40682301 0.91350698 0 0.40682301 0.91350698\n\t\t 0 0.026246 0.99965501 0 0.026216 0.99965602 0 0.026216 0.99965602 0 0.026246 0.99965501\n\t\t 0 -0.35826799 0.93361902 0 -0.35826799 0.93361902 0 -0.35829401 0.93360901 0 0.026216\n\t\t 0.99965602 0 -0.68829203 0.72543299 0 -0.35829401 0.93360901 0 -0.35826799 0.93361902\n\t\t 0 -0.35826799 0.93361902 0 -0.68829203 0.72543299 0 -0.68829203 0.72543299 0 -0.68829203\n\t\t 0.72543299 0 -0.68829203 0.72543299 0 -0.91350698 0.40682301 0 -0.91350698 0.40682301\n\t\t 0 -0.91350698 0.40682301 0 -0.68829203 0.72543299 0 -0.99965501 0.026277 0 -0.91350698\n\t\t 0.40682301 0 -0.91350698 0.40682301 0 -0.91350698 0.40682301 0 -0.99965501 0.026246\n\t\t 0 -0.99965501 0.026277 0 -0.99965501 0.026277 0 -0.99965501 0.026246 0 -0.93361902\n\t\t -0.35826799 0 -0.93361902 -0.35826799 0 -0.93363303 -0.35823101 0 -0.99965501 0.026277\n\t\t 0 -0.72547799 -0.688245 0 -0.93363303 -0.35823101 0 -0.93361902 -0.35826799 0 -0.93361902\n\t\t -0.35826799 0 -0.72543299 -0.68829203 0 -0.72547799 -0.688245 0 -0.72547799 -0.688245\n\t\t 0 -0.72543299 -0.68829203 0 -0.40682301 -0.91350698 0 -0.40682301 -0.91350698 0 -0.406849\n\t\t -0.91349602 0 -0.72547799 -0.688245 0 -0.40682301 -0.91350698 0 -0.026277 -0.99965501\n\t\t 0 -0.026277 -0.99965501 0 -0.026277 -0.99965501 0 -0.406849 -0.91349602 0 -0.40682301\n\t\t -0.91350698 0 -0.026277 -0.99965501 0 -0.026277 -0.99965501 0 0.35826799 -0.93361902\n\t\t 0 0.35826799 -0.93361902 0 0.35826799 -0.93361902 0 -0.026277 -0.99965501 0 0.68829203\n\t\t -0.72543299 0 0.35826799 -0.93361902 0 0.35826799 -0.93361902 0 0.35826799 -0.93361902\n\t\t 0 0.68829203 -0.72543299 0 0.68829203 -0.72543299 0 0.68829203 -0.72543299 0 0.68829203\n\t\t -0.72543299 0 0.91350698 -0.40682301 0 0.91350698 -0.40682301 0 0.91352302 -0.40678701\n\t\t 0 0.68829203 -0.72543299 0 0.91352302 -0.40678701 0 0.91350698 -0.40682301 0 0.99965501\n\t\t -0.026246 0 0.99965501 -0.026246 0 0.99965602 -0.026216 0 0.91352302 -0.40678701\n\t\t 0 0.000153 -0.000214 1 0.000244 -0.000183 1;\n\tsetAttr \".n[19256:19421]\" -type \"float3\"  0.000244 -0.000214 1 0.000244 -0.000214\n\t\t 1 0.000122 -0.000275 1 0.000153 -0.000214 1 6.0999999e-05 -0.000183 1 0.000153 -0.000214\n\t\t 1 0.000122 -0.000275 1 0.000122 -0.000275 1 3.1e-05 -0.000214 1 6.0999999e-05 -0.000183\n\t\t 1 3.1e-05 -9.1000002e-05 1 6.0999999e-05 -0.000183 1 3.1e-05 -0.000214 1 3.1e-05\n\t\t -0.000214 1 0 -9.1000002e-05 1 3.1e-05 -9.1000002e-05 1 6.0999999e-05 0 1 3.1e-05\n\t\t -9.1000002e-05 1 0 -9.1000002e-05 1 0 -9.1000002e-05 1 6.0999999e-05 0 1 6.0999999e-05\n\t\t 0 1 0.000153 0 1 6.0999999e-05 0 1 6.0999999e-05 0 1 6.0999999e-05 0 1 0.000183 0\n\t\t 1 0.000153 0 1 0.000244 0 1 0.000153 0 1 0.000183 0 1 0.000183 0 1 0.000275 -2.9999999e-05\n\t\t 1 0.000244 0 1 0.00030499999 -9.1000002e-05 1 0.000244 0 1 0.000275 -2.9999999e-05\n\t\t 1 0.000275 -2.9999999e-05 1 0.00030499999 -0.000153 1 0.00030499999 -9.1000002e-05\n\t\t 1 0.00030499999 -0.000153 1 0.000244 -0.000214 1 0.000244 -0.000183 1 0.000244 -0.000183\n\t\t 1 0.00030499999 -9.1000002e-05 1 0.00030499999 -0.000153 1 0.000275 -2.9999999e-05\n\t\t 1 0.00030499999 -0.000153 1 0.00030499999 -9.1000002e-05 1 0.00030499999 -9.1000002e-05\n\t\t 1 0.000244 0 1 0.000275 -2.9999999e-05 1 0.000183 0 1 0.000275 -2.9999999e-05 1 0.000244\n\t\t 0 1 0.000244 0 1 0.000183 0 1 0.000183 0 1 6.0999999e-05 0 1 0.000183 0 1 0.000183\n\t\t 0 1 0.000183 0 1 6.0999999e-05 0 1 6.0999999e-05 0 1 0 -9.1000002e-05 1 6.0999999e-05\n\t\t 0 1 6.0999999e-05 0 1 6.0999999e-05 0 1 0 -9.1000002e-05 1 0 -9.1000002e-05 1 3.1e-05\n\t\t -0.000214 1 0 -9.1000002e-05 1 0 -9.1000002e-05 1 0 -9.1000002e-05 1 6.0999999e-05\n\t\t -0.000183 1 3.1e-05 -0.000214 1 0.000122 -0.000244 1 3.1e-05 -0.000214 1 6.0999999e-05\n\t\t -0.000183 1 6.0999999e-05 -0.000183 1 0.000153 -0.000214 1 0.000122 -0.000244 1 0.000214\n\t\t -0.000244 1 0.000122 -0.000244 1 0.000153 -0.000214 1 0.000153 -0.000214 1 0.000244\n\t\t -0.000214 1 0.000214 -0.000244 1 0.00030499999 -0.000153 1 0.000214 -0.000244 1 0.000244\n\t\t -0.000214 1 0.000244 -0.000214 1 0.00030499999 -9.1000002e-05 1 0.00030499999 -0.000153\n\t\t 1 0.53218699 0.50466001 0.67977601 0.53216797 0.50470102 0.67975998 0.68580198 0.263017\n\t\t 0.67860001 0.68580198 0.263017 0.67860001 0.68581802 0.26301101 0.67858499 0.53218699\n\t\t 0.50466001 0.67977601 0.73320299 -0.019379999 0.67973298 0.68581802 0.26301101 0.67858499\n\t\t 0.68580198 0.263017 0.67860001 0.68580198 0.263017 0.67860001 0.73320401 -0.019348999\n\t\t 0.67973399 0.73320299 -0.019379999 0.67973298 0.73320299 -0.019379999 0.67973298\n\t\t 0.73320401 -0.019348999 0.67973399 0.670968 -0.29884499 0.67859697 0.670968 -0.29884499\n\t\t 0.67859697 0.67096001 -0.29881099 0.67861998 0.73320299 -0.019379999 0.67973298 0.50487202\n\t\t -0.53206402 0.67971402 0.67096001 -0.29881099 0.67861998 0.670968 -0.29884499 0.67859697\n\t\t 0.670968 -0.29884499 0.67859697 0.50487202 -0.53206402 0.67971402 0.50487202 -0.53206402\n\t\t 0.67971402 0.50487202 -0.53206402 0.67971402 0.50487202 -0.53206402 0.67971402 0.26326001\n\t\t -0.68573999 0.67856801 0.26326001 -0.68573999 0.67856801 0.26326001 -0.68573999 0.67856801\n\t\t 0.50487202 -0.53206402 0.67971402 -0.019074 -0.73322201 0.67972201 0.26326001 -0.68573999\n\t\t 0.67856801 0.26326001 -0.68573999 0.67856801 0.26326001 -0.68573999 0.67856801 -0.019105\n\t\t -0.73322099 0.67972201 -0.019074 -0.73322201 0.67972201 -0.019074 -0.73322201 0.67972201\n\t\t -0.019105 -0.73322099 0.67972201 -0.29866001 -0.67102402 0.67862302 -0.29866001 -0.67102402\n\t\t 0.67862302 -0.298632 -0.67102998 0.67862898 -0.019074 -0.73322201 0.67972201 0.53216797\n\t\t 0.50470102 0.67975998 0.53218699 0.50466001 0.67977601 0.298996 0.67090303 0.67859399\n\t\t 0.298996 0.67090303 0.67859399 0.29896799 0.67091 0.67860001 0.53216797 0.50470102\n\t\t 0.67975998 0.29896799 0.67091 0.67860001 0.298996 0.67090303 0.67859399 0.019409999\n\t\t 0.73315901 0.67978102 0.019409999 0.73315901 0.67978102 0.019409999 0.73315901 0.67978102\n\t\t 0.29896799 0.67091 0.67860001 -0.26307899 0.68577498 0.67860299 0.019409999 0.73315901\n\t\t 0.67978102 0.019409999 0.73315901 0.67978102 0.019409999 0.73315901 0.67978102 -0.26304501\n\t\t 0.68579698 0.67859399 -0.26307899 0.68577498 0.67860299 -0.26307899 0.68577498 0.67860299\n\t\t -0.26304501 0.68579698 0.67859399 -0.504785 0.53210002 0.67975098 -0.504785 0.53210002\n\t\t 0.67975098 -0.50481898 0.532103 0.67972398 -0.26307899 0.68577498 0.67860299 -0.67095798\n\t\t 0.298749 0.67864901 -0.50481898 0.532103 0.67972398 -0.504785 0.53210002 0.67975098\n\t\t -0.504785 0.53210002 0.67975098 -0.670941 0.29875499 0.67866302 -0.67095798 0.298749\n\t\t 0.67864901;\n\tsetAttr \".n[19422:19587]\" -type \"float3\"  -0.67095798 0.298749 0.67864901 -0.670941\n\t\t 0.29875499 0.67866302 -0.73319203 0.019135 0.67975301 -0.73319203 0.019135 0.67975301\n\t\t -0.73322099 0.019135 0.679721 -0.67095798 0.298749 0.67864901 -0.68567401 -0.263289\n\t\t 0.67862397 -0.73322099 0.019135 0.679721 -0.73319203 0.019135 0.67975301 -0.73319203\n\t\t 0.019135 0.67975301 -0.68567401 -0.263289 0.67862397 -0.68567401 -0.263289 0.67862397\n\t\t -0.68567401 -0.263289 0.67862397 -0.68567401 -0.263289 0.67862397 -0.531919 -0.50497103\n\t\t 0.67975497 -0.531919 -0.50497103 0.67975497 -0.53196001 -0.504951 0.67973799 -0.68567401\n\t\t -0.263289 0.67862397 -0.29866001 -0.67102402 0.67862302 -0.53196001 -0.504951 0.67973799\n\t\t -0.531919 -0.50497103 0.67975497 -0.531919 -0.50497103 0.67975497 -0.298632 -0.67102998\n\t\t 0.67862898 -0.29866001 -0.67102402 0.67862302 0.93357402 0.358262 0.0094299996 0.93354899\n\t\t 0.358325 0.0094299996 0.99961197 -0.026215 0.0094609996 0.99961197 -0.026215 0.0094609996\n\t\t 0.99961102 -0.026246 0.0094609996 0.93357402 0.358262 0.0094299996 0.72535801 0.68830699\n\t\t 0.0094609996 0.93354899 0.358325 0.0094299996 0.93357402 0.358262 0.0094299996 0.93357402\n\t\t 0.358262 0.0094299996 0.72541702 0.688245 0.0094609996 0.72535801 0.68830699 0.0094609996\n\t\t 0.72535801 0.68830699 0.0094609996 0.72541702 0.688245 0.0094609996 0.406791 0.91347301\n\t\t 0.0094299996 0.406791 0.91347301 0.0094299996 0.40675399 0.91348898 0.0094299996\n\t\t 0.72535801 0.68830699 0.0094609996 0.026215 0.99961197 0.0094609996 0.40675399 0.91348898\n\t\t 0.0094299996 0.406791 0.91347301 0.0094299996 0.406791 0.91347301 0.0094299996 0.026246\n\t\t 0.99961102 0.0094609996 0.026215 0.99961197 0.0094609996 0.026215 0.99961197 0.0094609996\n\t\t 0.026246 0.99961102 0.0094609996 -0.358262 0.93357402 0.0094299996 -0.358262 0.93357402\n\t\t 0.0094299996 -0.35828799 0.93356299 0.0094299996 0.026215 0.99961197 0.0094609996\n\t\t -0.68826097 0.725402 0.0094609996 -0.35828799 0.93356299 0.0094299996 -0.358262 0.93357402\n\t\t 0.0094299996 -0.358262 0.93357402 0.0094299996 -0.68826097 0.725402 0.0094299996\n\t\t -0.68826097 0.725402 0.0094609996 -0.68826097 0.725402 0.0094609996 -0.68826097 0.725402\n\t\t 0.0094299996 -0.91347301 0.406791 0.0094299996 -0.91347301 0.406791 0.0094299996\n\t\t -0.91346103 0.40681699 0.0094299996 -0.68826097 0.725402 0.0094609996 -0.99961001\n\t\t 0.026276 0.0094609996 -0.91346103 0.40681699 0.0094299996 -0.91347301 0.406791 0.0094299996\n\t\t -0.91347301 0.406791 0.0094299996 -0.99961102 0.026246 0.0094609996 -0.99961001 0.026276\n\t\t 0.0094609996 -0.99961001 0.026276 0.0094609996 -0.99961102 0.026246 0.0094609996\n\t\t -0.93357402 -0.358262 0.0094299996 -0.93357402 -0.358262 0.0094299996 -0.93359399\n\t\t -0.35820901 0.0094309999 -0.99961001 0.026276 0.0094609996 -0.725447 -0.68821299\n\t\t 0.0094609996 -0.93359399 -0.35820901 0.0094309999 -0.93357402 -0.358262 0.0094299996\n\t\t -0.93357402 -0.358262 0.0094299996 -0.725402 -0.68826097 0.0094609996 -0.725447 -0.68821299\n\t\t 0.0094609996 -0.725447 -0.68821299 0.0094609996 -0.725402 -0.68826097 0.0094609996\n\t\t -0.40681699 -0.91346103 0.0094299996 -0.40681699 -0.91346103 0.0094299996 -0.40685299\n\t\t -0.913445 0.0094309999 -0.725447 -0.68821299 0.0094609996 -0.026276 -0.99961001 0.0094609996\n\t\t -0.40685299 -0.913445 0.0094309999 -0.40681699 -0.91346103 0.0094299996 -0.40681699\n\t\t -0.91346103 0.0094299996 -0.026246 -0.99961102 0.0094609996 -0.026276 -0.99961001\n\t\t 0.0094609996 -0.026276 -0.99961001 0.0094609996 -0.026246 -0.99961102 0.0094609996\n\t\t 0.358262 -0.93357402 0.0094299996 0.358262 -0.93357402 0.0094299996 0.358262 -0.93357402\n\t\t 0.0094299996 -0.026276 -0.99961001 0.0094609996 0.68826097 -0.725402 0.0094609996\n\t\t 0.358262 -0.93357402 0.0094299996 0.358262 -0.93357402 0.0094299996 0.358262 -0.93357402\n\t\t 0.0094299996 0.68826097 -0.725402 0.0094609996 0.68826097 -0.725402 0.0094609996\n\t\t 0.68826097 -0.725402 0.0094609996 0.68826097 -0.725402 0.0094609996 0.91347301 -0.406791\n\t\t 0.0094299996 0.91347301 -0.406791 0.0094299996 0.91347301 -0.406791 0.0094299996\n\t\t 0.68826097 -0.725402 0.0094609996 0.91347301 -0.406791 0.0094299996 0.91347301 -0.406791\n\t\t 0.0094299996 0.99961102 -0.026246 0.0094609996 0.99961102 -0.026246 0.0094609996\n\t\t 0.99961197 -0.026215 0.0094609996 0.91347301 -0.406791 0.0094299996 0 0 1 0 0 1 0\n\t\t 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1\n\t\t 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0\n\t\t 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0\n\t\t 0 1 0 0 1 0 0 1;\n\tsetAttr \".n[19588:19753]\" -type \"float3\"  0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0\n\t\t 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1\n\t\t 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0\n\t\t 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0\n\t\t 0 1 0 0 1 0 0 1 -0.44030401 -0.417842 0.79469502 -0.440359 -0.41780499 0.79468399\n\t\t -0.56726098 -0.217847 0.79420298 -0.247484 -0.55622101 0.79332799 -0.440359 -0.41780499\n\t\t 0.79468399 -0.44030401 -0.417842 0.79469502 -0.56726098 -0.217847 0.79420298 -0.56723702\n\t\t -0.217879 0.79421097 -0.44030401 -0.417842 0.79469502 -0.60584098 0.015869999 0.79542798\n\t\t -0.60580701 0.015900001 0.79545301 -0.55451298 0.246905 0.79470301 -0.56726098 -0.217847\n\t\t 0.79420298 -0.60580701 0.015900001 0.79545301 -0.60584098 0.015869999 0.79542798\n\t\t -0.60584098 0.015869999 0.79542798 -0.56723702 -0.217879 0.79421097 -0.56726098 -0.217847\n\t\t 0.79420298 -0.55451298 0.246905 0.79470301 -0.55450398 0.24687 0.79472101 -0.60584098\n\t\t 0.015869999 0.79542798 -0.44030401 -0.417842 0.79469502 -0.24745101 -0.55624598 0.79332101\n\t\t -0.247484 -0.55622101 0.79332799 -0.55451298 0.246905 0.79470301 -0.416924 0.43941599\n\t\t 0.79566801 -0.41691801 0.439441 0.79565698 -0.41691801 0.439441 0.79565698 -0.55450398\n\t\t 0.24687 0.79472101 -0.55451298 0.246905 0.79470301 -0.41691801 0.439441 0.79565698\n\t\t -0.416924 0.43941599 0.79566801 -0.217421 0.56690103 0.79457599 -0.217421 0.56690103\n\t\t 0.79457599 -0.217416 0.56688702 0.79458803 -0.41691801 0.439441 0.79565698 0.015992001\n\t\t 0.60617 0.795174 -0.217416 0.56688702 0.79458803 -0.217421 0.56690103 0.79457599\n\t\t -0.217421 0.56690103 0.79457599 0.015900001 0.60617101 0.79517603 0.015992001 0.60617\n\t\t 0.795174 0.015992001 0.60617 0.795174 0.015900001 0.60617101 0.79517603 0.24745201\n\t\t 0.55545598 0.79387403 0.24745201 0.55545598 0.79387403 0.24754401 0.555547 0.793782\n\t\t 0.015992001 0.60617 0.795174 0.24754401 0.555547 0.793782 0.24745201 0.55545598 0.79387403\n\t\t 0.44079101 0.41808501 0.79429698 0.44079101 0.41808501 0.79429698 0.440916 0.418118\n\t\t 0.79421002 0.24754401 0.555547 0.793782 0.440916 0.418118 0.79421002 0.44079101 0.41808501\n\t\t 0.79429698 0.568883 0.218153 0.79295701 0.568883 0.218153 0.79295701 0.568887 0.218124\n\t\t 0.79296303 0.440916 0.418118 0.79421002 0.60827899 -0.016022 0.793562 0.568887 0.218124\n\t\t 0.79296303 0.568883 0.218153 0.79295701 0.568883 0.218153 0.79295701 0.60831398 -0.015961001\n\t\t 0.79353601 0.60827899 -0.016022 0.793562 0.60827899 -0.016022 0.793562 0.60831398\n\t\t -0.015961001 0.79353601 0.55718899 -0.248182 0.792431 0.55718899 -0.248182 0.792431\n\t\t 0.55722302 -0.248184 0.79240602 0.60827899 -0.016022 0.793562 0.41905701 -0.441641\n\t\t 0.79331201 0.55722302 -0.248184 0.79240602 0.55718899 -0.248182 0.792431 0.55718899\n\t\t -0.248182 0.792431 0.41906199 -0.44167599 0.79329002 0.41905701 -0.441641 0.79331201\n\t\t 0.41905701 -0.441641 0.79331201 0.41906199 -0.44167599 0.79329002 0.218549 -0.56924701\n\t\t 0.79258698 0.218549 -0.56924701 0.79258698 0.218578 -0.56924301 0.79258198 0.41905701\n\t\t -0.441641 0.79331201 -0.015900001 -0.60793602 0.793827 0.218578 -0.56924301 0.79258198\n\t\t 0.218549 -0.56924701 0.79258698 0.218549 -0.56924701 0.79258698 -0.015961999 -0.60794997\n\t\t 0.79381502 -0.015900001 -0.60793602 0.793827 -0.015900001 -0.60793602 0.793827 -0.015961999\n\t\t -0.60794997 0.79381502 -0.247484 -0.55622101 0.79332799 -0.247484 -0.55622101 0.79332799\n\t\t -0.24745101 -0.55624598 0.79332101 -0.015900001 -0.60793602 0.793827 0.38268101 0.92387998\n\t\t 0 0.38268101 0.92387998 0 0 1 0 0 1 0 0 1 0 0.38268101 0.92387998 0 0.70710701 0.70710701\n\t\t 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0.70710701\n\t\t 0.70710701 0 0.70710701 0.70710701 0 0.70710701 0.70710701 0 0.70710701 0.70710701\n\t\t 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.70710701 0.70710701\n\t\t 0 1 0 0 0.92387998 0.382682 0;\n\tsetAttr \".n[19754:19919]\" -type \"float3\"  0.92387998 0.382682 0 0.92387998 0.382682\n\t\t 0 1 0 0 1 0 0 1 0 0 1 0 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101 0 0.92387998\n\t\t -0.38268101 0 1 0 0 0.70710701 -0.70710701 0 0.92387998 -0.38268101 0 0.92387998\n\t\t -0.38268101 0 0.92387998 -0.38268101 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701\n\t\t 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0 0.382682 -0.92387998 0 0.382682\n\t\t -0.92387998 0 0.382682 -0.92387998 0 0.70710701 -0.70710701 0 0 -1 0 0.382682 -0.92387998\n\t\t 0 0.382682 -0.92387998 0 0.382682 -0.92387998 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.38268101\n\t\t -0.92387998 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998 0 0 -1 0 -0.38268101\n\t\t -0.92387998 0 -0.70709097 -0.70712203 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701\n\t\t 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998 0 -0.70710701 -0.70710701 0 -0.70709097\n\t\t -0.70712203 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682\n\t\t 0 -0.70710701 -0.70710701 0 -1 0 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682\n\t\t 0 -0.92387998 -0.382682 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.92387998 0.38268101 0 -0.92387998\n\t\t 0.38268101 0 -0.92387998 0.38268101 0 -1 0 0 -0.70709199 0.70712203 0 -0.92387998\n\t\t 0.38268101 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101 0 -0.70710701 0.70710701\n\t\t 0 -0.70709199 0.70712203 0 -0.70709199 0.70712203 0 -0.70710701 0.70710701 0 -0.382682\n\t\t 0.92387998 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 -0.70709199 0.70712203\n\t\t 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 0 1 0 0 1 0 0 1 0 -0.382682 0.92387998\n\t\t 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\n\t\t 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1\n\t\t 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0\n\t\t 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0\n\t\t 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1\n\t\t 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0\n\t\t 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1;\n\tsetAttr \".n[19920:20085]\" -type \"float3\"  0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.38268101\n\t\t 0.92387998 2.9999999e-05 0.38268101 0.92387998 6.0999999e-05 0 1 0 0 1 0 0 1 0 0.38268101\n\t\t 0.92387998 2.9999999e-05 0.70709097 0.70712203 0 0.38268101 0.92387998 6.0999999e-05\n\t\t 0.38268101 0.92387998 2.9999999e-05 0.38268101 0.92387998 2.9999999e-05 0.70709097\n\t\t 0.70712203 0 0.70709097 0.70712203 0 0.70709097 0.70712203 0 0.70709097 0.70712203\n\t\t 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.70709097 0.70712203\n\t\t 0 1 0 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.92387998 0.382682 0 1 0 0 1\n\t\t 0 0 1 0 0 1 0 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101\n\t\t 0 1 0 0 0.70710701 -0.70710701 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101\n\t\t 0 0.92387998 -0.38268101 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0 0.70710701\n\t\t -0.70710701 0 0.70710701 -0.70710701 0 0.382682 -0.92387998 0 0.382682 -0.92387998\n\t\t 0 0.382682 -0.92387998 0 0.70710701 -0.70710701 0 0 -1 0 0.382682 -0.92387998 0 0.382682\n\t\t -0.92387998 0 0.382682 -0.92387998 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.38265499 -0.92389101\n\t\t 0 -0.38265499 -0.92389101 0 -0.382644 -0.92389601 0 0 -1 0 -0.38265499 -0.92389101\n\t\t 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701 0 -0.382644\n\t\t -0.92389601 0 -0.38265499 -0.92389101 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701\n\t\t 0 -0.92389101 -0.38265601 0 -0.92389101 -0.38265601 0 -0.92389101 -0.38265601 0 -0.70710701\n\t\t -0.70710701 0 -1 0 0 -0.92389101 -0.38265601 0 -0.92389101 -0.38265601 0 -0.92389101\n\t\t -0.38265601 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101\n\t\t 0 -0.92387998 0.38268101 0 -1 0 0 -0.70710701 0.70710701 0 -0.92387998 0.38268101\n\t\t 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101 0 -0.70709199 0.70712203 0 -0.70710701\n\t\t 0.70710701 0 -0.70710701 0.70710701 0 -0.70709199 0.70712203 0 -0.382682 0.92387998\n\t\t 6.0999999e-05 -0.382682 0.92387998 6.0999999e-05 -0.382682 0.92387998 6.0999999e-05\n\t\t -0.70710701 0.70710701 0 -0.382682 0.92387998 6.0999999e-05 -0.382682 0.92387998\n\t\t 6.0999999e-05 0 1 0 0 1 0 0 1 0 -0.382682 0.92387998 6.0999999e-05 0.38268101 0.92387998\n\t\t 0 0.38268101 0.92387998 0 0 1 0 0 1 0 0 1 0 0.38268101 0.92387998 0 0.70710701 0.70710701\n\t\t 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0.70710701\n\t\t 0.70710701 0 0.70710701 0.70710701 0 0.70710701 0.70710701 0 0.70710701 0.70710701\n\t\t 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.70710701 0.70710701\n\t\t 0 1 0 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.92387998 0.382682 0 1 0 0 1\n\t\t 0 0 1 0 0 1 0 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101\n\t\t 0 1 0 0 0.70710701 -0.70710701 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101\n\t\t 0 0.92387998 -0.38268101 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0 0.70710701\n\t\t -0.70710701 0 0.70710701 -0.70710701 0 0.382682 -0.92387998 0 0.382682 -0.92387998\n\t\t 0 0.382682 -0.92387998 0 0.70710701 -0.70710701 0 0 -1 0 0.382682 -0.92387998 0 0.382682\n\t\t -0.92387998 0 0.382682 -0.92387998 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.38268101 -0.92387998\n\t\t 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998 0 0 -1 0 -0.38268101 -0.92387998\n\t\t 0 -0.70712203 -0.70709199 0 -0.70709097 -0.70712203 0 -0.70709097 -0.70712203 0 -0.38268101\n\t\t -0.92387998 0 -0.38268101 -0.92387998 0 -0.70709097 -0.70712203 0 -0.70712203 -0.70709199\n\t\t 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682 0;\n\tsetAttr \".n[20086:20251]\" -type \"float3\"  -0.92387998 -0.382682 0 -0.70709097 -0.70712203\n\t\t 0 -1 0 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682 0\n\t\t -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101 0 -0.92387998\n\t\t 0.38268101 0 -1 0 0 -0.70710701 0.70710701 0 -0.92387998 0.38268101 0 -0.92387998\n\t\t 0.38268101 0 -0.92387998 0.38268101 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701\n\t\t 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701 0 -0.382682 0.92387998 0 -0.382682\n\t\t 0.92387998 0 -0.382682 0.92387998 0 -0.70710701 0.70710701 0 -0.382682 0.92387998\n\t\t 0 -0.382682 0.92387998 0 0 1 0 0 1 0 0 1 0 -0.382682 0.92387998 0 0.38268101 0.92387998\n\t\t 0 0.38268101 0.92387998 0 0 1 0 0 1 0 0 1 0 0.38268101 0.92387998 0 0.70710701 0.70710701\n\t\t 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0.70710701\n\t\t 0.70710701 0 0.70710701 0.70710701 0 0.70710701 0.70710701 0 0.70710701 0.70710701\n\t\t 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.70710701 0.70710701\n\t\t 0 1 0 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.92387998 0.382682 0 1 0 0 1\n\t\t 0 0 1 0 0 1 0 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101\n\t\t 0 1 0 0 0.70710701 -0.70710701 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101\n\t\t 0 0.92387998 -0.38268101 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0 0.70710701\n\t\t -0.70710701 0 0.70710701 -0.70710701 0 0.382682 -0.92387998 0 0.382682 -0.92387998\n\t\t 0 0.382682 -0.92387998 0 0.70710701 -0.70710701 0 0 -1 0 0.382682 -0.92387998 0 0.382682\n\t\t -0.92387998 0 0.382682 -0.92387998 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.38265499 -0.92389101\n\t\t 0 -0.38265499 -0.92389101 0 -0.38268101 -0.92387998 0 0 -1 0 -0.38265499 -0.92389101\n\t\t 0 -0.70710701 -0.70710701 0 -0.70709097 -0.70712203 0 -0.70709097 -0.70712203 0 -0.38268101\n\t\t -0.92387998 0 -0.38265499 -0.92389101 0 -0.70709097 -0.70712203 0 -0.70710701 -0.70710701\n\t\t 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682 0 -0.70709097\n\t\t -0.70712203 0 -1 0 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682 0 -0.92387998\n\t\t -0.382682 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101\n\t\t 0 -0.92387998 0.38268101 0 -1 0 0 -0.70710701 0.70710701 0 -0.92387998 0.38268101\n\t\t 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101 0 -0.70710701 0.70710701 0 -0.70710701\n\t\t 0.70710701 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701 0 -0.382682 0.92387998\n\t\t 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 -0.70710701 0.70710701 0 -0.382682\n\t\t 0.92387998 0 -0.382682 0.92387998 0 0 1 0 0 1 0 0 1 0 -0.382682 0.92387998 0 0 1\n\t\t 0 0 1 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0\n\t\t 1 0 0.70709097 0.70712203 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0.38268101\n\t\t 0.92387998 0 0.70709097 0.70712203 0 0.70709097 0.70712203 0 0.70709097 0.70712203\n\t\t 0 0.70709097 0.70712203 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.92387998\n\t\t 0.382682 0 0.70709097 0.70712203 0 1 0 0 0.92387998 0.382682 0 0.92387998 0.382682\n\t\t 0 0.92387998 0.382682 0 1 0 0 1 0 0 1 0 0 1 0 0 0.92389601 -0.382644 0 0.92389601\n\t\t -0.382644 0 0.92389601 -0.382644 0 1 0 0 0.70710701 -0.70710701 0 0.92389601 -0.382644\n\t\t 0 0.92389601 -0.382644 0 0.92389601 -0.382644 0 0.70710701 -0.70710701 0 0.70710701\n\t\t -0.70710701 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0;\n\tsetAttr \".n[20252:20417]\" -type \"float3\"  0.38265601 -0.92389101 0 0.38265601 -0.92389101\n\t\t 0 0.38265601 -0.92389101 0 0.70710701 -0.70710701 0 0 -1 -0.000244 0.38265601 -0.92389101\n\t\t 0 0.38265601 -0.92389101 0 0.38265601 -0.92389101 0 0 -1 -0.000244 0 -1 -0.000244\n\t\t 0 -1 -0.000244 0 -1 -0.000244 -0.38265499 -0.92389101 0 -0.38265499 -0.92389101 0\n\t\t -0.38265499 -0.92389101 0 0 -1 -0.000244 -0.38265499 -0.92389101 0 -0.70710701 -0.70710701\n\t\t 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701 0 -0.38265499 -0.92389101 0 -0.38265499\n\t\t -0.92389101 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701 0 -0.923895 -0.38264501\n\t\t -0.000214 -0.923895 -0.38264501 -0.000214 -0.92387998 -0.382682 -0.000244 -0.70710701\n\t\t -0.70710701 0 -1 -3.1e-05 0 -0.92387998 -0.382682 -0.000244 -0.923895 -0.38264501\n\t\t -0.000214 -0.923895 -0.38264501 -0.000214 -1 2.9999999e-05 0 -1 -3.1e-05 0 -1 -3.1e-05\n\t\t 0 -1 2.9999999e-05 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101 0 -0.92387998\n\t\t 0.38268101 0 -1 -3.1e-05 0 -0.70710701 0.70710701 0 -0.92387998 0.38268101 0 -0.92387998\n\t\t 0.38268101 0 -0.92387998 0.38268101 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701\n\t\t 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701 0 -0.382682 0.92387998 0 -0.382682\n\t\t 0.92387998 0 -0.382682 0.92387998 0 -0.70710701 0.70710701 0 -0.382682 0.92387998\n\t\t 0 -0.382682 0.92387998 0 0 1 0 0 1 0 0 1 0 -0.382682 0.92387998 0 0 0.50255698 0.86454397\n\t\t 0.192756 0.465442 0.86383402 0.192762 0.46545401 0.86382598 0.192762 0.46545401 0.86382598\n\t\t 0 0.50255698 0.86454397 0 0.50255698 0.86454397 0.355367 0.35533699 0.86455202 0.192762\n\t\t 0.46545401 0.86382598 0.192756 0.465442 0.86383402 0.192756 0.465442 0.86383402 0.355367\n\t\t 0.35533699 0.86455202 0.355367 0.35533699 0.86455202 0.465415 0.192789 0.863841 0.355367\n\t\t 0.35533699 0.86455202 0.355367 0.35533699 0.86455202 0.355367 0.35533699 0.86455202\n\t\t 0.46542501 0.19282299 0.863828 0.465415 0.192789 0.863841 0.50259298 0 0.86452299\n\t\t 0.465415 0.192789 0.863841 0.46542501 0.19282299 0.863828 0.46542501 0.19282299 0.863828\n\t\t 0.50259298 0 0.86452299 0.50259298 0 0.86452299 0.465451 -0.192791 0.86382103 0.50259298\n\t\t 0 0.86452299 0.50259298 0 0.86452299 0.50259298 0 0.86452299 0.465451 -0.192791 0.86382103\n\t\t 0.465451 -0.192791 0.86382103 0.355396 -0.35539499 0.86451602 0.465451 -0.192791\n\t\t 0.86382103 0.465451 -0.192791 0.86382103 0.465451 -0.192791 0.86382103 0.355396 -0.35539499\n\t\t 0.86451602 0.355396 -0.35539499 0.86451602 0.192762 -0.46539399 0.86385798 0.355396\n\t\t -0.35539499 0.86451602 0.355396 -0.35539499 0.86451602 0.355396 -0.35539499 0.86451602\n\t\t 0.192728 -0.46538401 0.86387098 0.192762 -0.46539399 0.86385798 0 -0.50252098 0.86456501\n\t\t 0.192762 -0.46539399 0.86385798 0.192728 -0.46538401 0.86387098 0.192728 -0.46538401\n\t\t 0.86387098 0 -0.50252098 0.86456501 0 -0.50252098 0.86456501 -0.192757 -0.46538201\n\t\t 0.86386597 0 -0.50252098 0.86456501 0 -0.50252098 0.86456501 0 -0.50252098 0.86456501\n\t\t -0.192762 -0.46539399 0.86385798 -0.192757 -0.46538201 0.86386597 -0.192762 -0.46539399\n\t\t 0.86385798 -0.35539201 -0.35542199 0.86450702 -0.35539499 -0.355396 0.86451602 -0.35539499\n\t\t -0.355396 0.86451602 -0.192757 -0.46538201 0.86386597 -0.192762 -0.46539399 0.86385798\n\t\t -0.465451 -0.192791 0.86382103 -0.35539499 -0.355396 0.86451602 -0.35539201 -0.35542199\n\t\t 0.86450702 -0.35539201 -0.35542199 0.86450702 -0.465451 -0.192791 0.86382103 -0.465451\n\t\t -0.192791 0.86382103 -0.50259298 0 0.86452299 -0.465451 -0.192791 0.86382103 -0.465451\n\t\t -0.192791 0.86382103 -0.465451 -0.192791 0.86382103 -0.50259298 0 0.86452299 -0.50259298\n\t\t 0 0.86452299 -0.465451 0.192791 0.86382103 -0.50259298 0 0.86452299 -0.50259298 0\n\t\t 0.86452299 -0.50259298 0 0.86452299 -0.465451 0.192791 0.86382103 -0.465451 0.192791\n\t\t 0.86382103 -0.35536301 0.35536301 0.86454201 -0.465451 0.192791 0.86382103 -0.465451\n\t\t 0.192791 0.86382103 -0.465451 0.192791 0.86382103 -0.35536301 0.35536301 0.86454201\n\t\t -0.35536301 0.35536301 0.86454201 -0.192794 0.46542701 0.86383301 -0.35536301 0.35536301\n\t\t 0.86454201 -0.35536301 0.35536301 0.86454201 -0.35536301 0.35536301 0.86454201 -0.192791\n\t\t 0.465451 0.86382103 -0.192794 0.46542701 0.86383301 0 0.50255698 0.86454397 -0.192794\n\t\t 0.46542701 0.86383301 -0.192791 0.465451 0.86382103 -0.192791 0.465451 0.86382103\n\t\t 0 0.50255698 0.86454397 0 0.50255698 0.86454397 0.35534 0.35534099 -0.86456102 0.192757\n\t\t 0.46538201 -0.86386597 0.192757 0.46538201 -0.86386597 0.192757 0.46538201 -0.86386597\n\t\t 0.35534 0.35534099 -0.86456102 0.35534 0.35534099 -0.86456102 0 0.50255698 -0.86454397\n\t\t 0.192757 0.46538201 -0.86386597 0.192757 0.46538201 -0.86386597 0.192757 0.46538201\n\t\t -0.86386597 0 0.50255698 -0.86454397 0 0.50255698 -0.86454397;\n\tsetAttr \".n[20418:20583]\" -type \"float3\"  -0.192757 0.46538201 -0.86386597 0 0.50255698\n\t\t -0.86454397 0 0.50255698 -0.86454397 0 0.50255698 -0.86454397 -0.192757 0.46538201\n\t\t -0.86386597 -0.192757 0.46538201 -0.86386597 -0.35536301 0.35536301 -0.86454302 -0.192757\n\t\t 0.46538201 -0.86386597 -0.192757 0.46538201 -0.86386597 -0.192757 0.46538201 -0.86386597\n\t\t -0.355367 0.35533699 -0.86455202 -0.35536301 0.35536301 -0.86454302 -0.46538201 0.192757\n\t\t -0.86386597 -0.35536301 0.35536301 -0.86454302 -0.355367 0.35533699 -0.86455202 -0.355367\n\t\t 0.35533699 -0.86455202 -0.46538201 0.192757 -0.86386597 -0.46538201 0.192757 -0.86386597\n\t\t -0.50252098 0 -0.86456501 -0.46538201 0.192757 -0.86386597 -0.46538201 0.192757 -0.86386597\n\t\t -0.46538201 0.192757 -0.86386597 -0.50252098 0 -0.86456501 -0.50252098 0 -0.86456501\n\t\t -0.46535799 -0.19276001 -0.86387801 -0.50252098 0 -0.86456501 -0.50252098 0 -0.86456501\n\t\t -0.50252098 0 -0.86456501 -0.46538401 -0.192728 -0.86387098 -0.46535799 -0.19276001\n\t\t -0.86387801 -0.35533699 -0.355367 -0.86455202 -0.46535799 -0.19276001 -0.86387801\n\t\t -0.46538401 -0.192728 -0.86387098 -0.46538401 -0.192728 -0.86387098 -0.35536301 -0.35536399\n\t\t -0.86454201 -0.35533699 -0.355367 -0.86455202 -0.192757 -0.46538201 -0.86386597 -0.35533699\n\t\t -0.355367 -0.86455202 -0.35536301 -0.35536399 -0.86454201 -0.35536301 -0.35536399\n\t\t -0.86454201 -0.192757 -0.46538201 -0.86386597 -0.192757 -0.46538201 -0.86386597 -0.192757\n\t\t -0.46538201 -0.86386597 0 -0.50252098 -0.86456501 0 -0.50252098 -0.86456501 0 -0.50252098\n\t\t -0.86456501 -0.192757 -0.46538201 -0.86386597 -0.192757 -0.46538201 -0.86386597 0.192757\n\t\t -0.46538201 -0.86386597 0 -0.50252098 -0.86456501 0 -0.50252098 -0.86456501 0 -0.50252098\n\t\t -0.86456501 0.192757 -0.46538201 -0.86386597 0.192757 -0.46538201 -0.86386597 0.35536301\n\t\t -0.35536301 -0.86454201 0.192757 -0.46538201 -0.86386597 0.192757 -0.46538201 -0.86386597\n\t\t 0.192757 -0.46538201 -0.86386597 0.35536301 -0.35536301 -0.86454201 0.35536301 -0.35536301\n\t\t -0.86454201 0.46538201 -0.192757 -0.86386597 0.35536301 -0.35536301 -0.86454201 0.35536301\n\t\t -0.35536301 -0.86454201 0.35536301 -0.35536301 -0.86454201 0.46538201 -0.192757 -0.86386597\n\t\t 0.46538201 -0.192757 -0.86386597 0.50252098 0 -0.86456501 0.46538201 -0.192757 -0.86386597\n\t\t 0.46538201 -0.192757 -0.86386597 0.46538201 -0.192757 -0.86386597 0.50252098 0 -0.86456501\n\t\t 0.50252098 0 -0.86456501 0.46538201 0.192757 -0.86386597 0.50252098 0 -0.86456501\n\t\t 0.50252098 0 -0.86456501 0.50252098 0 -0.86456501 0.46538201 0.192757 -0.86386597\n\t\t 0.46538201 0.192757 -0.86386597 0.35534 0.35534099 -0.86456102 0.46538201 0.192757\n\t\t -0.86386597 0.46538201 0.192757 -0.86386597 0.46538201 0.192757 -0.86386597 0.35534\n\t\t 0.35534099 -0.86456102 0.35534 0.35534099 -0.86456102 0 0.495994 0.86832601 0.190256\n\t\t 0.45937401 0.86762798 0.190256 0.45937401 0.86762798 0.190256 0.45937401 0.86762798\n\t\t 0 0.495994 0.86832601 0 0.495994 0.86832601 0.35069099 0.35069099 0.86835003 0.190256\n\t\t 0.45937401 0.86762798 0.190256 0.45937401 0.86762798 0.190256 0.45937401 0.86762798\n\t\t 0.35069099 0.35069099 0.86835003 0.35069099 0.35069099 0.86835003 0.45931599 0.190227\n\t\t 0.86766499 0.35069099 0.35069099 0.86835003 0.35069099 0.35069099 0.86835003 0.35069099\n\t\t 0.35069099 0.86835003 0.45931301 0.190257 0.86765999 0.45931599 0.190227 0.86766499\n\t\t 0.495994 0 0.86832601 0.45931599 0.190227 0.86766499 0.45931301 0.190257 0.86765999\n\t\t 0.45931301 0.190257 0.86765999 0.495994 0 0.86832601 0.495994 0 0.86832601 0.45931599\n\t\t -0.190227 0.86766499 0.495994 0 0.86832601 0.495994 0 0.86832601 0.495994 0 0.86832601\n\t\t 0.45931599 -0.190227 0.86766499 0.45931599 -0.190227 0.86766499 0.35069099 -0.35069099\n\t\t 0.86835003 0.45931599 -0.190227 0.86766499 0.45931599 -0.190227 0.86766499 0.45931599\n\t\t -0.190227 0.86766499 0.35066399 -0.35069501 0.86835903 0.35069099 -0.35069099 0.86835003\n\t\t 0.190257 -0.45931301 0.86765999 0.35069099 -0.35069099 0.86835003 0.35066399 -0.35069501\n\t\t 0.86835903 0.35066399 -0.35069501 0.86835903 0.190257 -0.45931301 0.86765999 0.190257\n\t\t -0.45931301 0.86765999 0 -0.49593499 0.86835998 0.190257 -0.45931301 0.86765999 0.190257\n\t\t -0.45931301 0.86765999 0.190257 -0.45931301 0.86765999 0 -0.49593499 0.86835998 0\n\t\t -0.49593499 0.86835998 -0.190227 -0.45931599 0.86766499 0 -0.49593499 0.86835998\n\t\t 0 -0.49593499 0.86835998 0 -0.49593499 0.86835998 -0.190227 -0.45931599 0.86766499\n\t\t -0.190227 -0.45931599 0.86766499 -0.190227 -0.45931599 0.86766499 -0.35066399 -0.35069501\n\t\t 0.86835903 -0.35069501 -0.35066399 0.86835903 -0.35069501 -0.35066399 0.86835903\n\t\t -0.190227 -0.45931599 0.86766499 -0.190227 -0.45931599 0.86766499 -0.45931599 -0.190227\n\t\t 0.86766499 -0.35069501 -0.35066399 0.86835903 -0.35066399 -0.35069501 0.86835903\n\t\t -0.35066399 -0.35069501 0.86835903 -0.45931301 -0.190257 0.86765999 -0.45931599 -0.190227\n\t\t 0.86766499 -0.495994 0 0.86832601 -0.45931599 -0.190227 0.86766499 -0.45931301 -0.190257\n\t\t 0.86765999 -0.45931301 -0.190257 0.86765999 -0.495994 0 0.86832601 -0.495994 0 0.86832601\n\t\t -0.45931599 0.190227 0.86766499 -0.495994 0 0.86832601 -0.495994 0 0.86832601 -0.495994\n\t\t 0 0.86832601 -0.45931599 0.190227 0.86766499 -0.45931599 0.190227 0.86766499 -0.35069701\n\t\t 0.35072699 0.86833298 -0.45931599 0.190227 0.86766499 -0.45931599 0.190227 0.86766499\n\t\t -0.45931599 0.190227 0.86766499;\n\tsetAttr \".n[20584:20749]\" -type \"float3\"  -0.350723 0.350723 0.86832398 -0.35069701\n\t\t 0.35072699 0.86833298 -0.190256 0.45937401 0.86762798 -0.35069701 0.35072699 0.86833298\n\t\t -0.350723 0.350723 0.86832398 -0.350723 0.350723 0.86832398 -0.190256 0.45937401\n\t\t 0.86762798 -0.190256 0.45937401 0.86762798 0 0.495994 0.86832601 -0.190256 0.45937401\n\t\t 0.86762798 -0.190256 0.45937401 0.86762798 -0.190256 0.45937401 0.86762798 0 0.495994\n\t\t 0.86832601 0 0.495994 0.86832601 0.35066399 0.35069501 -0.86835903 0.190285 0.459371\n\t\t -0.86762297 0.19028801 0.45934701 -0.86763501 0.19028801 0.45934701 -0.86763501 0.35069099\n\t\t 0.35069099 -0.86835003 0.35066399 0.35069501 -0.86835903 0 0.495994 -0.86832601 0.19028801\n\t\t 0.45934701 -0.86763501 0.190285 0.459371 -0.86762297 0.190285 0.459371 -0.86762297\n\t\t 0 0.495994 -0.86832601 0 0.495994 -0.86832601 -0.190256 0.45937401 -0.86762798 0\n\t\t 0.495994 -0.86832601 0 0.495994 -0.86832601 0 0.495994 -0.86832601 -0.190256 0.45937401\n\t\t -0.86762798 -0.190256 0.45937401 -0.86762798 -0.350723 0.350723 -0.86832398 -0.190256\n\t\t 0.45937401 -0.86762798 -0.190256 0.45937401 -0.86762798 -0.190256 0.45937401 -0.86762798\n\t\t -0.350723 0.350723 -0.86832398 -0.350723 0.350723 -0.86832398 -0.45931599 0.190227\n\t\t -0.86766499 -0.350723 0.350723 -0.86832398 -0.350723 0.350723 -0.86832398 -0.350723\n\t\t 0.350723 -0.86832398 -0.45931599 0.190227 -0.86766499 -0.45931599 0.190227 -0.86766499\n\t\t -0.495994 0 -0.86832601 -0.45931599 0.190227 -0.86766499 -0.45931599 0.190227 -0.86766499\n\t\t -0.45931599 0.190227 -0.86766499 -0.495994 0 -0.86832601 -0.495994 0 -0.86832601\n\t\t -0.45937401 -0.190256 -0.86762798 -0.495994 0 -0.86832601 -0.495994 0 -0.86832601\n\t\t -0.495994 0 -0.86832601 -0.45937401 -0.190256 -0.86762798 -0.45937401 -0.190256 -0.86762798\n\t\t -0.35069099 -0.35069099 -0.86835003 -0.45937401 -0.190256 -0.86762798 -0.45937401\n\t\t -0.190256 -0.86762798 -0.45937401 -0.190256 -0.86762798 -0.35066399 -0.35069501 -0.86835903\n\t\t -0.35069099 -0.35069099 -0.86835003 -0.190227 -0.45931599 -0.86766499 -0.35069099\n\t\t -0.35069099 -0.86835003 -0.35066399 -0.35069501 -0.86835903 -0.35066399 -0.35069501\n\t\t -0.86835903 -0.190227 -0.45931599 -0.86766499 -0.190227 -0.45931599 -0.86766499 -0.190227\n\t\t -0.45931599 -0.86766499 0 -0.49605399 -0.86829197 0 -0.49605399 -0.86829197 0 -0.49605399\n\t\t -0.86829197 -0.190227 -0.45931599 -0.86766499 -0.190227 -0.45931599 -0.86766499 0.190257\n\t\t -0.45931301 -0.86765999 0 -0.49605399 -0.86829197 0 -0.49605399 -0.86829197 0 -0.49605399\n\t\t -0.86829197 0.190257 -0.45931301 -0.86765999 0.190257 -0.45931301 -0.86765999 0.35069501\n\t\t -0.35066399 -0.86835903 0.190257 -0.45931301 -0.86765999 0.190257 -0.45931301 -0.86765999\n\t\t 0.190257 -0.45931301 -0.86765999 0.35069099 -0.35069099 -0.86835003 0.35069501 -0.35066399\n\t\t -0.86835903 0.45931599 -0.190227 -0.86766499 0.35069501 -0.35066399 -0.86835903 0.35069099\n\t\t -0.35069099 -0.86835003 0.35069099 -0.35069099 -0.86835003 0.45931599 -0.190227 -0.86766499\n\t\t 0.45931599 -0.190227 -0.86766499 0.495994 0 -0.86832601 0.45931599 -0.190227 -0.86766499\n\t\t 0.45931599 -0.190227 -0.86766499 0.45931599 -0.190227 -0.86766499 0.495994 0 -0.86832601\n\t\t 0.495994 0 -0.86832601 0.45931599 0.190227 -0.86766499 0.495994 0 -0.86832601 0.495994\n\t\t 0 -0.86832601 0.495994 0 -0.86832601 0.45931599 0.190227 -0.86766499 0.45931599 0.190227\n\t\t -0.86766499 0.35069099 0.35069099 -0.86835003 0.45931599 0.190227 -0.86766499 0.45931599\n\t\t 0.190227 -0.86766499 0.45931599 0.190227 -0.86766499 0.35066399 0.35069501 -0.86835903\n\t\t 0.35069099 0.35069099 -0.86835003 0 0.81566298 0.57852697 0 0.81567401 0.57851201\n\t\t 0.31245801 0.75437999 0.57730597 0.31245801 0.75437999 0.57730597 0.31245801 0.75437999\n\t\t 0.57730597 0 0.81566298 0.57852697 0.57675898 0.57675999 0.57853001 0.31245801 0.75437999\n\t\t 0.57730597 0.31245801 0.75437999 0.57730597 0.31245801 0.75437999 0.57730597 0.57675898\n\t\t 0.57675999 0.57853001 0.57675898 0.57675999 0.57853001 0.57675898 0.57675999 0.57853001\n\t\t 0.57675898 0.57675999 0.57853001 0.75435299 0.31246001 0.57733899 0.75435299 0.31246001\n\t\t 0.57733899 0.75435299 0.31246001 0.57733899 0.57675898 0.57675999 0.57853001 0.81564897\n\t\t 0 0.578547 0.75435299 0.31246001 0.57733899 0.75435299 0.31246001 0.57733899 0.75435299\n\t\t 0.31246001 0.57733899 0.81566298 0 0.57852697 0.81564897 0 0.578547 0.81564897 0\n\t\t 0.578547 0.81566298 0 0.57852697 0.75435299 -0.31245899 0.57733899 0.75435299 -0.31245899\n\t\t 0.57733899 0.75435299 -0.31245899 0.57733899 0.81564897 0 0.578547 0.57675999 -0.57675898\n\t\t 0.57853001 0.75435299 -0.31245899 0.57733899 0.75435299 -0.31245899 0.57733899 0.75435299\n\t\t -0.31245899 0.57733899 0.57675999 -0.57675898 0.57853001 0.57675999 -0.57675898 0.57853001\n\t\t 0.57675999 -0.57675898 0.57853001 0.57675999 -0.57675898 0.57853001 0.312453 -0.75436598\n\t\t 0.577326 0.312453 -0.75436598 0.577326 0.312453 -0.75436598 0.577326 0.57675999 -0.57675898\n\t\t 0.57853001 0 -0.81566298 0.57852697 0.312453 -0.75436598 0.577326 0.312453 -0.75436598\n\t\t 0.577326 0.312453 -0.75436598 0.577326 0 -0.81566298 0.57852697 0 -0.81566298 0.57852697\n\t\t 0 -0.81566298 0.57852697 0 -0.81566298 0.57852697 -0.31245199 -0.75436598 0.577326\n\t\t -0.31245199 -0.75436598 0.577326 -0.31242499 -0.75437301 0.57733202 0 -0.81566298\n\t\t 0.57852697 -0.31245199 -0.75436598 0.577326 -0.57675898 -0.57675999 0.57853001;\n\tsetAttr \".n[20750:20915]\" -type \"float3\"  -0.57675898 -0.57675999 0.57853001 -0.57675898\n\t\t -0.57675999 0.57853001 -0.31242499 -0.75437301 0.57733202 -0.31245199 -0.75436598\n\t\t 0.577326 -0.57675898 -0.57675999 0.57853001 -0.57675898 -0.57675999 0.57853001 -0.75436598\n\t\t -0.312453 0.577326 -0.75436598 -0.312453 0.577326 -0.75436598 -0.312453 0.577326\n\t\t -0.57675898 -0.57675999 0.57853001 -0.81564897 0 0.578547 -0.75436598 -0.312453 0.577326\n\t\t -0.75436598 -0.312453 0.577326 -0.75436598 -0.312453 0.577326 -0.81566298 0 0.57852697\n\t\t -0.81564897 0 0.578547 -0.81564897 0 0.578547 -0.81566298 0 0.57852697 -0.75435299\n\t\t 0.31245899 0.57733899 -0.75435299 0.31245899 0.57733899 -0.75435299 0.31245899 0.57733899\n\t\t -0.81564897 0 0.578547 -0.57675999 0.57675999 0.57853001 -0.75435299 0.31245899 0.57733899\n\t\t -0.75435299 0.31245899 0.57733899 -0.75435299 0.31245899 0.57733899 -0.57675999 0.57675999\n\t\t 0.57853001 -0.57675999 0.57675999 0.57853001 -0.57675999 0.57675999 0.57853001 -0.57675999\n\t\t 0.57675999 0.57853001 -0.31245801 0.75437897 0.57730597 -0.31245801 0.75437897 0.57730597\n\t\t -0.31245801 0.75437897 0.57730597 -0.57675999 0.57675999 0.57853001 -0.31245801 0.75437897\n\t\t 0.57730597 -0.31245801 0.75437897 0.57730597 0 0.81567401 0.57851201 0 0.81567401\n\t\t 0.57851201 0 0.81566298 0.57852697 -0.31245801 0.75437897 0.57730597 0 1 0 0 1 0\n\t\t 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0 1 0 0.38268101\n\t\t 0.92387998 0 0.38268101 0.92387998 0 0.70710701 0.70710701 0 0.70710701 0.70710701\n\t\t 0 0.70710701 0.70710701 0 0.38268101 0.92387998 0 0.70710701 0.70710701 0 0.70710701\n\t\t 0.70710701 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.70710701\n\t\t 0.70710701 0 0.92387998 0.382682 0 0.92387998 0.382682 0 1 0 0 1 0 0 1 0 0 0.92387998\n\t\t 0.382682 0 1 0 0 1 0 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101 0 0.92387998\n\t\t -0.38268101 0 1 0 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101 0 0.70710701\n\t\t -0.70710701 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0 0.92387998 -0.38268101\n\t\t 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0 0.382682 -0.92387998 0 0.382682\n\t\t -0.92387998 0 0.382682 -0.92387998 0 0.70710701 -0.70710701 0 0.382682 -0.92387998\n\t\t 0 0.382682 -0.92387998 0 0 -1 0 0 -1 0 0 -1 0 0.382682 -0.92387998 0 0 -1 0 0 -1\n\t\t 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998 0 0\n\t\t -1 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701 0 -0.38268101 -0.92387998\n\t\t 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998 0 -0.70710701 -0.70710701 0 -0.70710701\n\t\t -0.70710701 0 -0.70710701 -0.70710701 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682\n\t\t 0 -0.92387998 -0.382682 0 -0.70710701 -0.70710701 0 -0.92387998 -0.382682 0 -0.92387998\n\t\t -0.382682 0 -1 0 0 -1 0 0 -1 0 0 -0.92387998 -0.382682 0 -1 0 0 -1 0 0 -0.92387998\n\t\t 0.38268101 0 -0.92387998 0.38268101 0 -0.92389101 0.38265499 0 -1 0 0 -0.92389101\n\t\t 0.38265499 0 -0.92387998 0.38268101 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701\n\t\t 0 -0.70712203 0.70709097 0 -0.92389101 0.38265499 0 -0.70712203 0.70709097 0 -0.70710701\n\t\t 0.70710701 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0\n\t\t -0.70712203 0.70709097 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 0 1 0 0 1\n\t\t 0 0 1 0 -0.382682 0.92387998 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\n\t\t 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1\n\t\t 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1;\n\tsetAttr \".n[20916:21081]\" -type \"float3\"  0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0\n\t\t 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1\n\t\t 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0\n\t\t 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0\n\t\t 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1\n\t\t 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0.38268101 0.92387998 0 0.38268101 0.92387998\n\t\t 0 0.38268101 0.92387998 0 0 1 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0.70710701\n\t\t 0.70710701 0 0.70710701 0.70710701 0 0.70710701 0.70710701 0 0.38268101 0.92387998\n\t\t 0 0.70710701 0.70710701 0 0.70710701 0.70710701 0 0.92387998 0.382682 0 0.92387998\n\t\t 0.382682 0 0.92387998 0.382682 0 0.70710701 0.70710701 0 0.92387998 0.382682 0 0.92387998\n\t\t 0.382682 0 1 0 0 1 0 0 1 0 0 0.92387998 0.382682 0 1 0 0 1 0 0 0.92387998 -0.38268101\n\t\t 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101 0 1 0 0 0.92387998 -0.38268101\n\t\t 0 0.92387998 -0.38268101 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0 0.70710701\n\t\t -0.70710701 0 0.92387998 -0.38268101 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701\n\t\t 0 0.382682 -0.92387998 0 0.382682 -0.92387998 0 0.382682 -0.92387998 0 0.70710701\n\t\t -0.70710701 0 0.382682 -0.92387998 0 0.382682 -0.92387998 0 0 -1 0 0 -1 0 0 -1 0\n\t\t 0.382682 -0.92387998 0 0 -1 0 0 -1 0 -0.38268101 -0.92387998 3.1e-05 -0.38268101\n\t\t -0.92387998 3.1e-05 -0.38268101 -0.92387998 3.1e-05 0 -1 0 0.76001102 0.31477201\n\t\t 0.56859702 0.75999099 0.31480601 0.56860399 0.58137101 0.58137101 0.569224 0.58137101\n\t\t 0.58137101 0.569224 0.58137101 0.58137101 0.569224 0.76001102 0.31477201 0.56859702\n\t\t 0.58137101 0.58137101 0.569224 0.58137101 0.58137101 0.569224 0.314771 0.76001102\n\t\t 0.56859702 0.314771 0.76001102 0.56859702 0.314771 0.76001102 0.56859702 0.58137101\n\t\t 0.58137101 0.569224 0.314771 0.76001102 0.56859702 0.314771 0.76001102 0.56859702\n\t\t 0 0.82218897 0.569215 0 0.82218897 0.569215 0 0.82218897 0.569215 0.314771 0.76001102\n\t\t 0.56859702 0.314805 -0.76001698 0.56857097 0.314805 -0.76001698 0.56857097 0.58137101\n\t\t -0.58137101 0.569224 0.58137101 -0.58137101 0.569224 0.58137101 -0.58137101 0.569224\n\t\t 0.314805 -0.76001698 0.56857097 0.314805 -0.76001698 0.56857097 0.314805 -0.76001698\n\t\t 0.56857097 0 -0.82218897 0.569215 0 -0.82218897 0.569215 0 -0.82218897 0.569215 0.314805\n\t\t -0.76001698 0.56857097 0 -0.82218897 0.569215 0 -0.82218897 0.569215 -0.31480399\n\t\t -0.76001698 0.56857097 -0.31480399 -0.76001698 0.56857097 -0.31480399 -0.76001698\n\t\t 0.56857097 0 -0.82218897 0.569215 0 0.82218897 0.569215 0 0.82218897 0.569215 -0.31480601\n\t\t 0.75999099 0.56860399 -0.382682 0.92387998 0 -0.382682 0.92387998 0 0 1 0 -0.382682\n\t\t 0.92387998 0 -0.382682 0.92387998 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701\n\t\t 0;\n\tsetAttr \".n[21082:21247]\" -type \"float3\"  -0.70710701 0.70710701 0 -0.382682 0.92387998\n\t\t 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701 0 -0.92387998 0.38268101 0 -0.92387998\n\t\t 0.38268101 0 -0.92387998 0.38268101 0 -0.70710701 0.70710701 0 -0.92387998 0.38268101\n\t\t 0 -0.92387998 0.38268101 0 -1 0 0 -1 0 0 -1 0 0 -0.92387998 0.38268101 0 -1 0 0 -1\n\t\t 0 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682 0 -1 0\n\t\t 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682 0 -0.70712203 -0.70709199 0 -0.70712203\n\t\t -0.70709199 0 -0.70710701 -0.70710701 0 -0.92387998 -0.382682 0 -0.70710701 -0.70710701\n\t\t 0 -0.70712203 -0.70709199 0 -0.38268101 -0.92387998 3.1e-05 -0.38268101 -0.92387998\n\t\t 3.1e-05 -0.38268101 -0.92387998 3.1e-05 -0.70710701 -0.70710701 0 -0.58137101 -0.58137101\n\t\t 0.569224 -0.58137101 -0.58137101 0.569224 -0.31480399 -0.76001698 0.56857097 -0.31480399\n\t\t -0.76001698 0.56857097 -0.31480399 -0.76001698 0.56857097 -0.58137101 -0.58137101\n\t\t 0.569224 -0.58137101 -0.58137101 0.569224 -0.58137101 -0.58137101 0.569224 -0.76001698\n\t\t -0.314805 0.56857097 -0.76001698 -0.314805 0.56857097 -0.76001698 -0.314805 0.56857097\n\t\t -0.58137101 -0.58137101 0.569224 -0.76001698 -0.314805 0.56857097 -0.76001698 -0.314805\n\t\t 0.56857097 -0.82218897 0 0.569215 -0.82218897 0 0.569215 -0.82218897 0 0.569215 -0.76001698\n\t\t -0.314805 0.56857097 -0.82218897 0 0.569215 -0.82218897 0 0.569215 -0.76001698 0.31480399\n\t\t 0.56857097 -0.76001698 0.31480399 0.56857097 -0.76001698 0.31480399 0.56857097 -0.82218897\n\t\t 0 0.569215 -0.76001698 0.31480399 0.56857097 -0.76001698 0.31480399 0.56857097 -0.58137101\n\t\t 0.58137101 0.569224 -0.58137101 0.58137101 0.569224 -0.58137101 0.58137101 0.569224\n\t\t -0.76001698 0.31480399 0.56857097 -0.58137101 0.58137101 0.569224 -0.58137101 0.58137101\n\t\t 0.569224 -0.31480601 0.75999099 0.56860399 -0.31480601 0.75999099 0.56860399 -0.31480601\n\t\t 0.75999099 0.56860399 -0.58137101 0.58137101 0.569224 -0.31480601 0.75999099 0.56860399\n\t\t -0.31480601 0.75999099 0.56860399 0 0.82218897 0.569215 0 1 0 0 1 0 -0.382682 0.92387998\n\t\t 0 0 1 0 0 1 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0.38268101 0.92387998\n\t\t 0 0 1 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0.70710701 0.70710701 0 0.70710701\n\t\t 0.70710701 0 0.70710701 0.70710701 0 0.38268101 0.92387998 0 0.70710701 0.70710701\n\t\t 0 0.70710701 0.70710701 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.92387998\n\t\t 0.382682 0 0.70710701 0.70710701 0 0.92387998 0.382682 0 0.92387998 0.382682 0 1\n\t\t 0 0 1 0 0 1 0 0 0.92387998 0.382682 0 1 0 0 1 0 0 0.92387998 -0.38268101 0 0.92387998\n\t\t -0.38268101 0 0.92387998 -0.38268101 0 1 0 0 0.92387998 -0.38268101 0 0.92387998\n\t\t -0.38268101 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701\n\t\t 0 0.92387998 -0.38268101 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0 0.382682\n\t\t -0.92387998 0 0.382682 -0.92387998 0 0.382682 -0.92387998 0 0.70710701 -0.70710701\n\t\t 0 0.382682 -0.92387998 0 0.382682 -0.92387998 0 0 -1 0 0 -1 0 0 -1 0 0.382682 -0.92387998\n\t\t 0 0 -1 0 0 -1 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998\n\t\t 0 0 -1 0 -0.70712203 -0.70709199 0 -0.70709097 -0.70712203 0 -0.38268101 -0.92387998\n\t\t 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998 0 -0.70712203 -0.70709199 0 -0.70709097\n\t\t -0.70712203 0 -0.70712203 -0.70709199 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682\n\t\t 0 -0.92387998 -0.382682 0 -0.70709097 -0.70712203 0 -0.92387998 -0.382682 0 -0.92387998\n\t\t -0.382682 0 -1 0 0 -1 0 0 -1 0 0 -0.92387998 -0.382682 0 -1 0 0 -1 0 0 -0.92387998\n\t\t 0.38268101 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101 0 -1 0 0 -0.92387998\n\t\t 0.38268101 0 -0.92387998 0.38268101 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701\n\t\t 0 -0.70710701 0.70710701 0 -0.92387998 0.38268101 0 -0.70710701 0.70710701 0 -0.70710701\n\t\t 0.70710701 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0\n\t\t -0.70710701 0.70710701 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0;\n\tsetAttr \".n[21248:21413]\" -type \"float3\"  0 1 0 0 1 0 0 1 0 -0.382682 0.92387998\n\t\t 0 0 1 0 0 1 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0.38268101 0.92387998\n\t\t 0 0 1 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0.70710701 0.70710701 0 0.70710701\n\t\t 0.70710701 0 0.70710701 0.70710701 0 0.38268101 0.92387998 0 0.70710701 0.70710701\n\t\t 0 0.70710701 0.70710701 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.92387998\n\t\t 0.382682 0 0.70710701 0.70710701 0 0.92387998 0.382682 0 0.92387998 0.382682 0 1\n\t\t 0 0 1 0 0 1 0 0 0.92387998 0.382682 0 1 0 0 1 0 0 0.92387998 -0.38268101 0 0.92387998\n\t\t -0.38268101 0 0.92387998 -0.38268101 0 1 0 0 0.92387998 -0.38268101 0 0.92387998\n\t\t -0.38268101 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701\n\t\t 0 0.92387998 -0.38268101 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0 0.382682\n\t\t -0.92387998 0 0.382682 -0.92387998 0 0.382682 -0.92387998 0 0.70710701 -0.70710701\n\t\t 0 0.382682 -0.92387998 0 0.382682 -0.92387998 0 0 -1 0 0 -1 0 0 -1 0 0.382682 -0.92387998\n\t\t 0 0 -1 0 0 -1 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998\n\t\t 0 0 -1 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701 0 -0.38268101 -0.92387998\n\t\t 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998 0 -0.70710701 -0.70710701 0 -0.70710701\n\t\t -0.70710701 0 -0.70710701 -0.70710701 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682\n\t\t 0 -0.92387998 -0.382682 0 -0.70710701 -0.70710701 0 -0.92387998 -0.382682 0 -0.92387998\n\t\t -0.382682 0 -1 0 0 -1 0 0 -1 0 0 -0.92387998 -0.382682 0 -1 0 0 -1 0 0 -0.92387998\n\t\t 0.38268101 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101 0 -1 0 0 -0.92387998\n\t\t 0.38268101 0 -0.92387998 0.38268101 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701\n\t\t 0 -0.70710701 0.70710701 0 -0.92387998 0.38268101 0 -0.70710701 0.70710701 0 -0.70710701\n\t\t 0.70710701 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0\n\t\t -0.70710701 0.70710701 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 0 1 0 0 1\n\t\t 0 0 1 0 -0.382682 0.92387998 0 0 1 0 0 1 0 0.38268101 0.92387998 0 0.38268101 0.92387998\n\t\t 0 0.38268101 0.92387998 0 0 1 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0.70710701\n\t\t 0.70710701 0 0.70710701 0.70710701 0 0.70710701 0.70710701 0 0.38268101 0.92387998\n\t\t 0 0.70710701 0.70710701 0 0.70710701 0.70710701 0 0.92387998 0.382682 0 0.92387998\n\t\t 0.382682 0 0.92387998 0.382682 0 0.70710701 0.70710701 0 0.92387998 0.382682 0 0.92387998\n\t\t 0.382682 0 1 0 0 1 0 0 1 0 0 0.92387998 0.382682 0 1 0 0 1 0 0 0.92387998 -0.38268101\n\t\t 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101 0 1 0 0 0.92387998 -0.38268101\n\t\t 0 0.92387998 -0.38268101 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0 0.70710701\n\t\t -0.70710701 0 0.92387998 -0.38268101 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701\n\t\t 0 0.382682 -0.92387998 0 0.382682 -0.92387998 0 0.382682 -0.92387998 0 0.70710701\n\t\t -0.70710701 0 0.382682 -0.92387998 0 0.382682 -0.92387998 0 0 -1 0 0 -1 0 0 -1 0\n\t\t 0.382682 -0.92387998 0 0 -1 0 0 -1 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998\n\t\t 0 -0.38268101 -0.92387998 0 0 -1 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701\n\t\t 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998 0 -0.70710701\n\t\t -0.70710701 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701 0 -0.92387998 -0.382682\n\t\t 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682 0 -0.70710701 -0.70710701 0;\n\tsetAttr \".n[21414:21579]\" -type \"float3\"  -0.92387998 -0.382682 0 -0.92387998 -0.382682\n\t\t 0 -1 0 0 -1 0 0 -1 0 0 -0.92387998 -0.382682 0 -1 0 0 -1 0 0 -0.92387998 0.38268101\n\t\t 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101 0 -1 0 0 -0.92387998 0.38268101\n\t\t 0 -0.92387998 0.38268101 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701 0 -0.70710701\n\t\t 0.70710701 0 -0.92387998 0.38268101 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701\n\t\t 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 -0.70710701\n\t\t 0.70710701 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 0 1 0 0 1 0 0 1 0 -0.382682\n\t\t 0.92387998 0 0 0.510095 0.86011797 0.19541501 0.47183001 0.859761 0.195445 0.471827\n\t\t 0.85975599 0.195445 0.471827 0.85975599 0 0.510095 0.86011797 0 0.510095 0.86011797\n\t\t 0.36067799 0.360679 0.860129 0.195445 0.471827 0.85975599 0.19541501 0.47183001 0.859761\n\t\t 0.19541501 0.47183001 0.859761 0.36067799 0.360679 0.860129 0.36067799 0.360679 0.860129\n\t\t 0.471827 0.195445 0.85975599 0.36067799 0.360679 0.860129 0.36067799 0.360679 0.860129\n\t\t 0.36067799 0.360679 0.860129 0.47183001 0.195416 0.859761 0.471827 0.195445 0.85975599\n\t\t 0.51007301 0 0.86013103 0.471827 0.195445 0.85975599 0.47183001 0.195416 0.859761\n\t\t 0.47183001 0.195416 0.859761 0.51007301 0 0.86013103 0.51007301 0 0.86013103 0.471827\n\t\t -0.195445 0.85975599 0.51007301 0 0.86013103 0.51007301 0 0.86013103 0.51007301 0\n\t\t 0.86013103 0.471827 -0.195445 0.85975599 0.471827 -0.195445 0.85975599 0.360679 -0.36067799\n\t\t 0.860129 0.471827 -0.195445 0.85975599 0.471827 -0.195445 0.85975599 0.471827 -0.195445\n\t\t 0.85975599 0.360679 -0.36067799 0.860129 0.360679 -0.36067799 0.860129 0.195416 -0.471829\n\t\t 0.859761 0.360679 -0.36067799 0.860129 0.360679 -0.36067799 0.860129 0.360679 -0.36067799\n\t\t 0.860129 0.195419 -0.47180599 0.85977399 0.195416 -0.471829 0.859761 0 -0.51007301\n\t\t 0.86013103 0.195416 -0.471829 0.859761 0.195419 -0.47180599 0.85977399 0.195419 -0.47180599\n\t\t 0.85977399 0 -0.51007301 0.86013103 0 -0.51007301 0.86013103 -0.195445 -0.471827\n\t\t 0.85975599 0 -0.51007301 0.86013103 0 -0.51007301 0.86013103 0 -0.51007301 0.86013103\n\t\t -0.19541501 -0.47183001 0.859761 -0.195445 -0.471827 0.85975599 -0.19541501 -0.47183001\n\t\t 0.859761 -0.36067301 -0.360643 0.86014599 -0.36067301 -0.360643 0.86014599 -0.36067301\n\t\t -0.360643 0.86014599 -0.195445 -0.471827 0.85975599 -0.19541501 -0.47183001 0.859761\n\t\t -0.47183001 -0.195416 0.859761 -0.36067301 -0.360643 0.86014599 -0.36067301 -0.360643\n\t\t 0.86014599 -0.36067301 -0.360643 0.86014599 -0.471827 -0.195445 0.85975599 -0.47183001\n\t\t -0.195416 0.859761 -0.51007301 0 0.86013103 -0.47183001 -0.195416 0.859761 -0.471827\n\t\t -0.195445 0.85975599 -0.471827 -0.195445 0.85975599 -0.51007301 0 0.86013103 -0.51007301\n\t\t 0 0.86013103 -0.47180301 0.195448 0.85976899 -0.51007301 0 0.86013103 -0.51007301\n\t\t 0 0.86013103 -0.51007301 0 0.86013103 -0.47180301 0.195448 0.85976899 -0.47180301\n\t\t 0.195448 0.85976899 -0.360679 0.360679 0.860129 -0.47180301 0.195448 0.85976899 -0.47180301\n\t\t 0.195448 0.85976899 -0.47180301 0.195448 0.85976899 -0.360679 0.360679 0.860129 -0.360679\n\t\t 0.360679 0.860129 -0.195445 0.471827 0.85975599 -0.360679 0.360679 0.860129 -0.360679\n\t\t 0.360679 0.860129 -0.360679 0.360679 0.860129 -0.195445 0.471827 0.85975599 -0.195445\n\t\t 0.471827 0.85975599 0 0.510095 0.86011797 -0.195445 0.471827 0.85975599 -0.195445\n\t\t 0.471827 0.85975599 -0.195445 0.471827 0.85975599 0 0.510095 0.86011797 0 0.510095\n\t\t 0.86011797 0.36066899 0.36066899 -0.86013699 0.19541501 0.47183001 -0.859761 0.19541501\n\t\t 0.47183001 -0.859761 0.19541501 0.47183001 -0.859761 0.36066899 0.36066899 -0.86013699\n\t\t 0.36066899 0.36066899 -0.86013699 0 0.51007301 -0.86013103 0.19541501 0.47183001\n\t\t -0.859761 0.19541501 0.47183001 -0.859761 0.19541501 0.47183001 -0.859761 0 0.51007301\n\t\t -0.86013103 0 0.51007301 -0.86013103 -0.195416 0.471829 -0.859761 0 0.51007301 -0.86013103\n\t\t 0 0.51007301 -0.86013103 0 0.51007301 -0.86013103 -0.195416 0.471829 -0.859761 -0.195416\n\t\t 0.471829 -0.859761 -0.36066899 0.36066899 -0.86013699 -0.195416 0.471829 -0.859761\n\t\t -0.195416 0.471829 -0.859761 -0.195416 0.471829 -0.859761 -0.36066899 0.36066899\n\t\t -0.86013699 -0.36066899 0.36066899 -0.86013699 -0.47179401 0.19541299 -0.85978198\n\t\t -0.36066899 0.36066899 -0.86013699 -0.36066899 0.36066899 -0.86013699 -0.36066899\n\t\t 0.36066899 -0.86013699 -0.47179401 0.19541299 -0.85978198 -0.47179401 0.19541299\n\t\t -0.85978198 -0.510059 0 -0.86013901 -0.47179401 0.19541299 -0.85978198 -0.47179401\n\t\t 0.19541299 -0.85978198 -0.47179401 0.19541299 -0.85978198 -0.510059 0 -0.86013901\n\t\t -0.510059 0 -0.86013901 -0.471793 -0.19541299 -0.85978198 -0.510059 0 -0.86013901\n\t\t -0.510059 0 -0.86013901 -0.510059 0 -0.86013901;\n\tsetAttr \".n[21580:21745]\" -type \"float3\"  -0.471793 -0.19541299 -0.85978198 -0.471793\n\t\t -0.19541299 -0.85978198 -0.36064601 -0.36064699 -0.860156 -0.471793 -0.19541299 -0.85978198\n\t\t -0.471793 -0.19541299 -0.85978198 -0.471793 -0.19541299 -0.85978198 -0.36064601 -0.36064699\n\t\t -0.860156 -0.36064601 -0.36064699 -0.860156 -0.195418 -0.47180599 -0.85977399 -0.36064601\n\t\t -0.36064699 -0.860156 -0.36064601 -0.36064699 -0.860156 -0.36064601 -0.36064699 -0.860156\n\t\t -0.195418 -0.47180599 -0.85977399 -0.195418 -0.47180599 -0.85977399 -0.195418 -0.47180599\n\t\t -0.85977399 0 -0.510059 -0.86013901 0 -0.510059 -0.86013901 0 -0.510059 -0.86013901\n\t\t -0.195418 -0.47180599 -0.85977399 -0.195418 -0.47180599 -0.85977399 0.19541299 -0.471793\n\t\t -0.85978198 0 -0.510059 -0.86013901 0 -0.510059 -0.86013901 0 -0.510059 -0.86013901\n\t\t 0.19541299 -0.471793 -0.85978198 0.19541299 -0.471793 -0.85978198 0.360643 -0.36067301\n\t\t -0.86014599 0.19541299 -0.471793 -0.85978198 0.19541299 -0.471793 -0.85978198 0.19541299\n\t\t -0.471793 -0.85978198 0.360643 -0.36067301 -0.86014599 0.360643 -0.36067301 -0.86014599\n\t\t 0.47179401 -0.19541299 -0.85978198 0.360643 -0.36067301 -0.86014599 0.360643 -0.36067301\n\t\t -0.86014599 0.360643 -0.36067301 -0.86014599 0.47179401 -0.19541299 -0.85978198 0.47179401\n\t\t -0.19541299 -0.85978198 0.510059 0 -0.86013901 0.47179401 -0.19541299 -0.85978198\n\t\t 0.47179401 -0.19541299 -0.85978198 0.47179401 -0.19541299 -0.85978198 0.510059 0\n\t\t -0.86013901 0.510059 0 -0.86013901 0.471793 0.19541299 -0.85978198 0.510059 0 -0.86013901\n\t\t 0.510059 0 -0.86013901 0.510059 0 -0.86013901 0.471793 0.19541299 -0.85978198 0.471793\n\t\t 0.19541299 -0.85978198 0.36066899 0.36066899 -0.86013699 0.471793 0.19541299 -0.85978198\n\t\t 0.471793 0.19541299 -0.85978198 0.471793 0.19541299 -0.85978198 0.36066899 0.36066899\n\t\t -0.86013699 0.36066899 0.36066899 -0.86013699 0 0.51166099 0.85918701 0.196026 0.473295\n\t\t 0.85881603 0.196055 0.47329199 0.85881102 0.196055 0.47329199 0.85881102 0 0.511684\n\t\t 0.85917401 0 0.51166099 0.85918701 0.36180699 0.36180699 0.85918099 0.196055 0.47329199\n\t\t 0.85881102 0.196026 0.473295 0.85881603 0.196026 0.473295 0.85881603 0.36180699 0.36180699\n\t\t 0.85918099 0.36180699 0.36180699 0.85918099 0.473259 0.196024 0.85883701 0.36180699\n\t\t 0.36180699 0.85918099 0.36180699 0.36180699 0.85918099 0.36180699 0.36180699 0.85918099\n\t\t 0.473259 0.196024 0.85883701 0.473259 0.196024 0.85883701 0.51162499 0 0.859209 0.473259\n\t\t 0.196024 0.85883701 0.473259 0.196024 0.85883701 0.473259 0.196024 0.85883701 0.51162499\n\t\t 0 0.859209 0.51162499 0 0.859209 0.473259 -0.196024 0.85883701 0.51162499 0 0.859209\n\t\t 0.51162499 0 0.859209 0.51162499 0 0.859209 0.473259 -0.196024 0.85883701 0.473259\n\t\t -0.196024 0.85883701 0.36180699 -0.36180699 0.85918099 0.473259 -0.196024 0.85883701\n\t\t 0.473259 -0.196024 0.85883701 0.473259 -0.196024 0.85883701 0.36181101 -0.36177999\n\t\t 0.85918999 0.36180699 -0.36180699 0.85918099 0.196024 -0.473259 0.85883701 0.36180699\n\t\t -0.36180699 0.85918099 0.36181101 -0.36177999 0.85918999 0.36181101 -0.36177999 0.85918999\n\t\t 0.196024 -0.473259 0.85883701 0.196024 -0.473259 0.85883701 0 -0.51166099 0.85918802\n\t\t 0.196024 -0.473259 0.85883701 0.196024 -0.473259 0.85883701 0.196024 -0.473259 0.85883701\n\t\t 0 -0.51166099 0.85918802 0 -0.51166099 0.85918802 -0.196024 -0.473259 0.85883701\n\t\t 0 -0.51166099 0.85918802 0 -0.51166099 0.85918802 0 -0.51166099 0.85918802 -0.196024\n\t\t -0.473259 0.85883701 -0.196024 -0.473259 0.85883701 -0.196024 -0.473259 0.85883701\n\t\t -0.36180699 -0.36180699 0.85918099 -0.36180699 -0.36180699 0.85918099 -0.36180699\n\t\t -0.36180699 0.85918099 -0.196024 -0.473259 0.85883701 -0.196024 -0.473259 0.85883701\n\t\t -0.473259 -0.196024 0.85883701 -0.36180699 -0.36180699 0.85918099 -0.36180699 -0.36180699\n\t\t 0.85918099 -0.36180699 -0.36180699 0.85918099 -0.473259 -0.196024 0.85883701 -0.473259\n\t\t -0.196024 0.85883701 -0.51162499 0 0.859209 -0.473259 -0.196024 0.85883701 -0.473259\n\t\t -0.196024 0.85883701 -0.473259 -0.196024 0.85883701 -0.51162499 0 0.859209 -0.51162499\n\t\t 0 0.859209 -0.473223 0.19602101 0.85885698 -0.51162499 0 0.859209 -0.51162499 0 0.859209\n\t\t -0.51162499 0 0.859209 -0.473223 0.19602101 0.85885698 -0.473223 0.19602101 0.85885698\n\t\t -0.36177501 0.36177501 0.85920799 -0.473223 0.19602101 0.85885698 -0.473223 0.19602101\n\t\t 0.85885698 -0.473223 0.19602101 0.85885698 -0.36177501 0.36177501 0.85920799 -0.36177501\n\t\t 0.36177501 0.85920799 -0.19605599 0.47329199 0.85881102 -0.36177501 0.36177501 0.85920799\n\t\t -0.36177501 0.36177501 0.85920799 -0.36177501 0.36177501 0.85920799 -0.19605599 0.47329199\n\t\t 0.85881102 -0.19605599 0.47329199 0.85881102 0 0.511684 0.85917401 -0.19605599 0.47329199\n\t\t 0.85881102 -0.19605599 0.47329199 0.85881102 -0.19605599 0.47329199 0.85881102 0\n\t\t 0.51166099 0.85918701 0 0.511684 0.85917401 0.36180699 0.36180699 -0.85918099 0.196024\n\t\t 0.473259 -0.85883701 0.196024 0.473259 -0.85883701 0.196024 0.473259 -0.85883701\n\t\t 0.36180699 0.36180699 -0.85918099 0.36180699 0.36180699 -0.85918099 0 0.51162499\n\t\t -0.859209 0.196024 0.473259 -0.85883701 0.196024 0.473259 -0.85883701 0.196024 0.473259\n\t\t -0.85883701 0 0.51162499 -0.859209 0 0.51162499 -0.859209 -0.196026 0.473295 -0.85881603\n\t\t 0 0.51162499 -0.859209;\n\tsetAttr \".n[21746:21911]\" -type \"float3\"  0 0.51162499 -0.859209 0 0.51162499 -0.859209\n\t\t -0.196026 0.473295 -0.85881603 -0.196026 0.473295 -0.85881603 -0.36177501 0.36177501\n\t\t -0.85920799 -0.196026 0.473295 -0.85881603 -0.196026 0.473295 -0.85881603 -0.196026\n\t\t 0.473295 -0.85881603 -0.36177501 0.36177501 -0.85920799 -0.36177501 0.36177501 -0.85920799\n\t\t -0.47320199 0.195995 -0.85887498 -0.36177501 0.36177501 -0.85920799 -0.36177501 0.36177501\n\t\t -0.85920799 -0.36177501 0.36177501 -0.85920799 -0.47322601 0.19599199 -0.85886198\n\t\t -0.47320199 0.195995 -0.85887498 -0.511648 0 -0.85919499 -0.47320199 0.195995 -0.85887498\n\t\t -0.47322601 0.19599199 -0.85886198 -0.47322601 0.19599199 -0.85886198 -0.511648 0\n\t\t -0.85919499 -0.511648 0 -0.85919499 -0.473259 -0.196024 -0.85883701 -0.511648 0 -0.85919499\n\t\t -0.511648 0 -0.85919499 -0.511648 0 -0.85919499 -0.473259 -0.196024 -0.85883701 -0.473259\n\t\t -0.196024 -0.85883701 -0.361779 -0.36174899 -0.85921699 -0.473259 -0.196024 -0.85883701\n\t\t -0.473259 -0.196024 -0.85883701 -0.473259 -0.196024 -0.85883701 -0.36174801 -0.361779\n\t\t -0.85921699 -0.361779 -0.36174899 -0.85921699 -0.196026 -0.473295 -0.85881603 -0.361779\n\t\t -0.36174899 -0.85921699 -0.36174801 -0.361779 -0.85921699 -0.36174801 -0.361779 -0.85921699\n\t\t -0.196026 -0.473295 -0.85881603 -0.196026 -0.473295 -0.85881603 -0.196026 -0.473295\n\t\t -0.85881603 0 -0.51162499 -0.859209 0 -0.51162499 -0.859209 0 -0.51162499 -0.859209\n\t\t -0.196026 -0.473295 -0.85881603 -0.196026 -0.473295 -0.85881603 0.195995 -0.47320199\n\t\t -0.85887498 0 -0.51162499 -0.859209 0 -0.51162499 -0.859209 0 -0.51162499 -0.859209\n\t\t 0.195995 -0.47320199 -0.85887498 0.195995 -0.47320199 -0.85887498 0.36177501 -0.36177501\n\t\t -0.85920799 0.195995 -0.47320199 -0.85887498 0.195995 -0.47320199 -0.85887498 0.195995\n\t\t -0.47320199 -0.85887498 0.36177501 -0.36177501 -0.85920799 0.36177501 -0.36177501\n\t\t -0.85920799 0.473295 -0.196026 -0.85881603 0.36177501 -0.36177501 -0.85920799 0.36177501\n\t\t -0.36177501 -0.85920799 0.36177501 -0.36177501 -0.85920799 0.47329199 -0.196055 -0.85881102\n\t\t 0.473295 -0.196026 -0.85881603 0.51158899 0 -0.85922998 0.473295 -0.196026 -0.85881603\n\t\t 0.47329199 -0.196055 -0.85881102 0.47329199 -0.196055 -0.85881102 0.51158899 0 -0.85922998\n\t\t 0.51158899 0 -0.85922998 0.47323501 0.196027 -0.85884899 0.51158899 0 -0.85922998\n\t\t 0.51158899 0 -0.85922998 0.51158899 0 -0.85922998 0.47323501 0.196027 -0.85884899\n\t\t 0.47323501 0.196027 -0.85884899 0.36180699 0.36180699 -0.85918099 0.47323501 0.196027\n\t\t -0.85884899 0.47323501 0.196027 -0.85884899 0.47323501 0.196027 -0.85884899 0.36180699\n\t\t 0.36180699 -0.85918099 0.36180699 0.36180699 -0.85918099 0.75999099 0.31480601 0.56860399\n\t\t 0.76001102 0.31477201 0.56859702 0.82218897 0 0.569215 0.82218897 0 0.569215 0.82218897\n\t\t 0 0.569215 0.75999099 0.31480601 0.56860399 0.82218897 0 0.569215 0.82218897 0 0.569215\n\t\t 0.75999099 -0.31480601 0.56860399 0.75999099 -0.31480601 0.56860399 0.75999099 -0.31480601\n\t\t 0.56860399 0.82218897 0 0.569215 0.75999099 -0.31480601 0.56860399 0.75999099 -0.31480601\n\t\t 0.56860399 0.58137101 -0.58137101 0.569224 0.58137101 -0.58137101 0.569224 0.58137101\n\t\t -0.58137101 0.569224 0.75999099 -0.31480601 0.56860399 -0.93361902 0.35826701 0 -0.99965501\n\t\t -0.026247 0 -0.99965602 -0.026216 0 -0.99965602 -0.026216 0 -0.933599 0.35832 0 -0.93361902\n\t\t 0.35826701 0 -0.93361902 0.35826701 0 -0.933599 0.35832 0 -0.72540402 0.68832302\n\t\t 0 -0.72540402 0.68832302 0 -0.72544903 0.68827599 0 -0.93361902 0.35826701 0 -0.40682399\n\t\t 0.91350698 0 -0.72544903 0.68827599 0 -0.72540402 0.68832302 0 -0.72540402 0.68832302\n\t\t 0 -0.406762 0.91353399 0 -0.40682399 0.91350698 0 -0.40682399 0.91350698 0 -0.406762\n\t\t 0.91353399 0 -0.026216 0.99965602 0 -0.026216 0.99965602 0 -0.026247 0.99965501 0\n\t\t -0.40682399 0.91350698 0 0.35826701 0.93361902 0 -0.026247 0.99965501 0 -0.026216\n\t\t 0.99965602 0 -0.026216 0.99965602 0 0.35829401 0.93360901 0 0.35826701 0.93361902\n\t\t 0 0.35826701 0.93361902 0 0.35829401 0.93360901 0 0.68829203 0.72543401 0 0.68829203\n\t\t 0.72543401 0 0.68829203 0.72543401 0 0.35826701 0.93361902 0 0.91351199 0.406813\n\t\t 0 0.68829203 0.72543401 0 0.68829203 0.72543401 0 0.68829203 0.72543401 0 0.91350698\n\t\t 0.40682399 0 0.91351199 0.406813 0 0.91351199 0.406813 0 0.91350698 0.40682399 0\n\t\t 0.99965501 0.026277 0 0.99965501 0.026277 0 0.99965501 0.026247 0 0.91351199 0.406813\n\t\t 0 0.93361902 -0.35826701 0 0.99965501 0.026247 0 0.99965501 0.026277 0 0.99965501\n\t\t 0.026277 0 0.93363303 -0.35822999 0 0.93361902 -0.35826701 0 0.93361902 -0.35826701\n\t\t 0 0.93363303 -0.35822999 0 0.72547901 -0.688245 0 0.72547901 -0.688245 0 0.72543401\n\t\t -0.68829203 0 0.93361902 -0.35826701 0 0.40682399 -0.91350698 0 0.72543401 -0.68829203\n\t\t 0 0.72547901 -0.688245 0 0.72547901 -0.688245 0 0.406849 -0.913495 0 0.40682399 -0.91350698\n\t\t 0;\n\tsetAttr \".n[21912:22077]\" -type \"float3\"  0.40682399 -0.91350698 0 0.406849 -0.913495\n\t\t 0 0.026277 -0.99965501 0 0.026277 -0.99965501 0 0.026277 -0.99965501 0 0.40682399\n\t\t -0.91350698 0 -0.35826701 -0.93361902 0 0.026277 -0.99965501 0 0.026277 -0.99965501\n\t\t 0 0.026277 -0.99965501 0 -0.35826701 -0.93361902 0 -0.35826701 -0.93361902 0 -0.35826701\n\t\t -0.93361902 0 -0.35826701 -0.93361902 0 -0.68829203 -0.72543401 0 -0.68829203 -0.72543401\n\t\t 0 -0.68829203 -0.72543401 0 -0.35826701 -0.93361902 0 -0.91351199 -0.406813 0 -0.68829203\n\t\t -0.72543401 0 -0.68829203 -0.72543401 0 -0.68829203 -0.72543401 0 -0.91352302 -0.40678701\n\t\t 0 -0.91351199 -0.406813 0 -0.99965501 -0.026247 0 -0.91351199 -0.406813 0 -0.91352302\n\t\t -0.40678701 0 -0.91352302 -0.40678701 0 -0.99965602 -0.026216 0 -0.99965501 -0.026247\n\t\t 0 -0.000244 -0.000214 1 -0.000244 -0.000183 1 -0.000153 -0.000214 1 -0.000153 -0.000214\n\t\t 1 -0.000122 -0.000275 1 -0.000244 -0.000214 1 -0.000122 -0.000275 1 -0.000153 -0.000214\n\t\t 1 -6.0999999e-05 -0.000183 1 -6.0999999e-05 -0.000183 1 -3.1e-05 -0.000214 1 -0.000122\n\t\t -0.000275 1 -3.1e-05 -0.000214 1 -6.0999999e-05 -0.000183 1 0 -9.1000002e-05 1 0\n\t\t -9.1000002e-05 1 0 -9.1000002e-05 1 -3.1e-05 -0.000214 1 0 -9.1000002e-05 1 0 -9.1000002e-05\n\t\t 1 -6.0999999e-05 0 1 -6.0999999e-05 0 1 -6.0999999e-05 0 1 0 -9.1000002e-05 1 -6.0999999e-05\n\t\t 0 1 -6.0999999e-05 0 1 -0.000153 0 1 -0.000153 0 1 -0.000183 0 1 -6.0999999e-05 0\n\t\t 1 -0.000183 0 1 -0.000153 0 1 -0.000244 0 1 -0.000244 0 1 -0.000275 -2.9999999e-05\n\t\t 1 -0.000183 0 1 -0.000275 -2.9999999e-05 1 -0.000244 0 1 -0.00030499999 -9.1000002e-05\n\t\t 1 -0.00030499999 -9.1000002e-05 1 -0.00030499999 -0.000153 1 -0.000275 -2.9999999e-05\n\t\t 1 -0.000244 -0.000183 1 -0.000244 -0.000214 1 -0.00030499999 -0.000153 1 -0.00030499999\n\t\t -0.000153 1 -0.00030499999 -9.1000002e-05 1 -0.000244 -0.000183 1 -0.00030499999\n\t\t -9.1000002e-05 1 -0.00030499999 -0.000153 1 -0.000275 -2.9999999e-05 1 -0.000275\n\t\t -2.9999999e-05 1 -0.000244 0 1 -0.00030499999 -9.1000002e-05 1 -0.000244 0 1 -0.000275\n\t\t -2.9999999e-05 1 -0.000183 0 1 -0.000183 0 1 -0.000183 0 1 -0.000244 0 1 -0.000183\n\t\t 0 1 -0.000183 0 1 -6.0999999e-05 0 1 -6.0999999e-05 0 1 -6.0999999e-05 0 1 -0.000183\n\t\t 0 1 -6.0999999e-05 0 1 -6.0999999e-05 0 1 0 -9.1000002e-05 1 0 -9.1000002e-05 1 0\n\t\t -9.1000002e-05 1 -6.0999999e-05 0 1 0 -9.1000002e-05 1 0 -9.1000002e-05 1 -3.1e-05\n\t\t -0.000214 1 -3.1e-05 -0.000214 1 -6.0999999e-05 -0.000183 1 0 -9.1000002e-05 1 -6.0999999e-05\n\t\t -0.000183 1 -3.1e-05 -0.000214 1 -0.000122 -0.000244 1 -0.000122 -0.000244 1 -0.000153\n\t\t -0.000214 1 -6.0999999e-05 -0.000183 1 -0.000153 -0.000214 1 -0.000122 -0.000244\n\t\t 1 -0.000214 -0.000244 1 -0.000214 -0.000244 1 -0.000244 -0.000214 1 -0.000153 -0.000214\n\t\t 1 -0.000244 -0.000214 1 -0.000214 -0.000244 1 -0.00030499999 -0.000153 1 -0.00030499999\n\t\t -0.000153 1 -0.00030499999 -9.1000002e-05 1 -0.000244 -0.000214 1 -0.68580198 0.26301599\n\t\t 0.67860001 -0.53216797 0.50470102 0.67975998 -0.53219801 0.50467002 0.67975998 -0.53219801\n\t\t 0.50467002 0.67975998 -0.68581897 0.26301101 0.67858601 -0.68580198 0.26301599 0.67860001\n\t\t -0.68580198 0.26301599 0.67860001 -0.68581897 0.26301101 0.67858601 -0.73320299 -0.019379999\n\t\t 0.67973298 -0.73320299 -0.019379999 0.67973298 -0.73320401 -0.01935 0.67973399 -0.68580198\n\t\t 0.26301599 0.67860001 -0.67096698 -0.29884499 0.67859697 -0.73320401 -0.01935 0.67973399\n\t\t -0.73320299 -0.019379999 0.67973298 -0.73320299 -0.019379999 0.67973298 -0.670973\n\t\t -0.29881799 0.67860299 -0.67096698 -0.29884499 0.67859697 -0.67096698 -0.29884499\n\t\t 0.67859697 -0.670973 -0.29881799 0.67860299 -0.50488001 -0.53204298 0.67972499 -0.50488001\n\t\t -0.53204298 0.67972499 -0.50487202 -0.53206497 0.67971402 -0.67096698 -0.29884499\n\t\t 0.67859697 -0.26326001 -0.68573999 0.67856801 -0.50487202 -0.53206497 0.67971402\n\t\t -0.50488001 -0.53204298 0.67972499 -0.50488001 -0.53204298 0.67972499 -0.26326001\n\t\t -0.68573999 0.67856801 -0.26326001 -0.68573999 0.67856801 -0.26326001 -0.68573999\n\t\t 0.67856801 -0.26326001 -0.68573999 0.67856801 0.019075001 -0.73322201 0.67972201\n\t\t 0.019075001 -0.73322201 0.67972201 0.019105 -0.73322099 0.67972201 -0.26326001 -0.68573999\n\t\t 0.67856801 0.29866001 -0.67102402 0.67862302 0.019105 -0.73322099 0.67972201 0.019075001\n\t\t -0.73322201 0.67972201 0.019075001 -0.73322201 0.67972201;\n\tsetAttr \".n[22078:22243]\" -type \"float3\"  0.298632 -0.67102998 0.67862898 0.29866001\n\t\t -0.67102402 0.67862302 -0.29899701 0.67090303 0.67859399 -0.53219801 0.50467002 0.67975998\n\t\t -0.53216797 0.50470102 0.67975998 -0.53216797 0.50470102 0.67975998 -0.298969 0.67090899\n\t\t 0.67860001 -0.29899701 0.67090303 0.67859399 -0.019409999 0.73315901 0.67978102 -0.29899701\n\t\t 0.67090303 0.67859399 -0.298969 0.67090899 0.67860001 -0.298969 0.67090899 0.67860001\n\t\t -0.019409999 0.73315901 0.67978102 -0.019409999 0.73315901 0.67978102 -0.019409999\n\t\t 0.73315901 0.67978102 -0.019409999 0.73315901 0.67978102 0.26307899 0.68577498 0.67860299\n\t\t 0.26307899 0.68577498 0.67860299 0.26304501 0.68579698 0.67859399 -0.019409999 0.73315901\n\t\t 0.67978102 0.504785 0.53210002 0.67975098 0.26304501 0.68579698 0.67859399 0.26307899\n\t\t 0.68577498 0.67860299 0.26307899 0.68577498 0.67860299 0.50481802 0.532103 0.67972398\n\t\t 0.504785 0.53210002 0.67975098 0.504785 0.53210002 0.67975098 0.50481802 0.532103\n\t\t 0.67972398 0.67095798 0.29875001 0.67864901 0.67095798 0.29875001 0.67864901 0.670941\n\t\t 0.298756 0.67866302 0.504785 0.53210002 0.67975098 0.73316199 0.019136 0.679784 0.670941\n\t\t 0.298756 0.67866302 0.67095798 0.29875001 0.67864901 0.67095798 0.29875001 0.67864901\n\t\t 0.73316199 0.019136 0.679784 0.73316199 0.019136 0.679784 0.73316199 0.019136 0.679784\n\t\t 0.73316199 0.019136 0.679784 0.68567902 -0.26326001 0.67862898 0.68567902 -0.26326001\n\t\t 0.67862898 0.68567401 -0.26328799 0.67862397 0.73316199 0.019136 0.679784 0.53192002\n\t\t -0.50497103 0.67975497 0.68567401 -0.26328799 0.67862397 0.68567902 -0.26326001 0.67862898\n\t\t 0.68567902 -0.26326001 0.67862898 0.53195 -0.50493997 0.67975402 0.53192002 -0.50497103\n\t\t 0.67975497 0.53192002 -0.50497103 0.67975497 0.53195 -0.50493997 0.67975402 0.29866001\n\t\t -0.67102402 0.67862302 0.29866001 -0.67102402 0.67862302 0.298632 -0.67102998 0.67862898\n\t\t 0.53192002 -0.50497103 0.67975497 -0.99961102 -0.026216 0.0094609996 -0.93354899\n\t\t 0.358325 0.0094299996 -0.93357402 0.35826099 0.0094299996 -0.93357402 0.35826099\n\t\t 0.0094299996 -0.99961102 -0.026246 0.0094609996 -0.99961102 -0.026216 0.0094609996\n\t\t -0.93357402 0.35826099 0.0094299996 -0.93354899 0.358325 0.0094299996 -0.72535801\n\t\t 0.68830699 0.0094609996 -0.72535801 0.68830699 0.0094609996 -0.72541702 0.68824399\n\t\t 0.0094609996 -0.93357402 0.35826099 0.0094299996 -0.40679201 0.913472 0.0094299996\n\t\t -0.72541702 0.68824399 0.0094609996 -0.72535801 0.68830699 0.0094609996 -0.72535801\n\t\t 0.68830699 0.0094609996 -0.406755 0.91348898 0.0094299996 -0.40679201 0.913472 0.0094299996\n\t\t -0.40679201 0.913472 0.0094299996 -0.406755 0.91348898 0.0094299996 -0.026216 0.99961102\n\t\t 0.0094609996 -0.026216 0.99961102 0.0094609996 -0.026246 0.99961102 0.0094609996\n\t\t -0.40679201 0.913472 0.0094299996 0.35826099 0.93357402 0.0094299996 -0.026246 0.99961102\n\t\t 0.0094609996 -0.026216 0.99961102 0.0094609996 -0.026216 0.99961102 0.0094609996\n\t\t 0.35828799 0.93356401 0.0094299996 0.35826099 0.93357402 0.0094299996 0.35826099\n\t\t 0.93357402 0.0094299996 0.35828799 0.93356401 0.0094299996 0.68826002 0.725402 0.0094609996\n\t\t 0.68826002 0.725402 0.0094609996 0.68826002 0.725402 0.0094299996 0.35826099 0.93357402\n\t\t 0.0094299996 0.913472 0.40679201 0.0094299996 0.68826002 0.725402 0.0094299996 0.68826002\n\t\t 0.725402 0.0094609996 0.68826002 0.725402 0.0094609996 0.91346103 0.40681699 0.0094299996\n\t\t 0.913472 0.40679201 0.0094299996 0.913472 0.40679201 0.0094299996 0.91346103 0.40681699\n\t\t 0.0094299996 0.99961001 0.026277 0.0094609996 0.99961001 0.026277 0.0094609996 0.99961102\n\t\t 0.026246 0.0094609996 0.913472 0.40679201 0.0094299996 0.93357402 -0.35826099 0.0094299996\n\t\t 0.99961102 0.026246 0.0094609996 0.99961001 0.026277 0.0094609996 0.99961001 0.026277\n\t\t 0.0094609996 0.93359399 -0.358208 0.0094309999 0.93357402 -0.35826099 0.0094299996\n\t\t 0.93357402 -0.35826099 0.0094299996 0.93359399 -0.358208 0.0094309999 0.725447 -0.68821299\n\t\t 0.0094609996 0.725447 -0.68821299 0.0094609996 0.725402 -0.68826002 0.0094609996\n\t\t 0.93357402 -0.35826099 0.0094299996 0.40681699 -0.91346103 0.0094299996 0.725402\n\t\t -0.68826002 0.0094609996 0.725447 -0.68821299 0.0094609996 0.725447 -0.68821299 0.0094609996\n\t\t 0.406854 -0.913445 0.0094309999 0.40681699 -0.91346103 0.0094299996 0.40681699 -0.91346103\n\t\t 0.0094299996 0.406854 -0.913445 0.0094309999 0.026277 -0.99961001 0.0094609996 0.026277\n\t\t -0.99961001 0.0094609996 0.026246 -0.99961102 0.0094609996 0.40681699 -0.91346103\n\t\t 0.0094299996 -0.35826099 -0.93357402 0.0094299996 0.026246 -0.99961102 0.0094609996\n\t\t 0.026277 -0.99961001 0.0094609996 0.026277 -0.99961001 0.0094609996 -0.35826099 -0.93357402\n\t\t 0.0094299996 -0.35826099 -0.93357402 0.0094299996 -0.35826099 -0.93357402 0.0094299996\n\t\t -0.35826099 -0.93357402 0.0094299996 -0.68826002 -0.725402 0.0094609996 -0.68826002\n\t\t -0.725402 0.0094609996 -0.68826002 -0.725402 0.0094609996 -0.35826099 -0.93357402\n\t\t 0.0094299996 -0.913472 -0.40679201 0.0094299996 -0.68826002 -0.725402 0.0094609996\n\t\t -0.68826002 -0.725402 0.0094609996 -0.68826002 -0.725402 0.0094609996 -0.913472 -0.40679201\n\t\t 0.0094299996 -0.913472 -0.40679201 0.0094299996 -0.99961102 -0.026246 0.0094609996\n\t\t -0.913472 -0.40679201 0.0094299996 -0.913472 -0.40679201 0.0094299996 -0.913472 -0.40679201\n\t\t 0.0094299996 -0.99961102 -0.026216 0.0094609996 -0.99961102 -0.026246 0.0094609996\n\t\t 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0\n\t\t 1;\n\tsetAttr \".n[22244:22409]\" -type \"float3\"  0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0\n\t\t 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1\n\t\t 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0\n\t\t 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0\n\t\t 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1\n\t\t 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0\n\t\t 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.56726098 -0.21784601 0.79420298 0.440359\n\t\t -0.41780499 0.79468399 0.44029799 -0.41786599 0.79468501 0.44029799 -0.41786599 0.79468501\n\t\t 0.440359 -0.41780499 0.79468399 0.247484 -0.55622101 0.79332799 0.44029799 -0.41786599\n\t\t 0.79468501 0.56723702 -0.217879 0.79421097 0.56726098 -0.21784601 0.79420298 0.55453402\n\t\t 0.24690101 0.79469001 0.60580701 0.015900999 0.79545301 0.60582602 0.015869999 0.795439\n\t\t 0.60582602 0.015869999 0.795439 0.60580701 0.015900999 0.79545301 0.56726098 -0.21784601\n\t\t 0.79420298 0.56726098 -0.21784601 0.79420298 0.56723702 -0.217879 0.79421097 0.60582602\n\t\t 0.015869999 0.795439 0.60582602 0.015869999 0.795439 0.55450398 0.24687 0.79472101\n\t\t 0.55453402 0.24690101 0.79469001 0.247484 -0.55622101 0.79332799 0.24745101 -0.55624598\n\t\t 0.79332101 0.44029799 -0.41786599 0.79468501 0.41691801 0.439441 0.79565698 0.416924\n\t\t 0.439417 0.79566801 0.55453402 0.24690101 0.79469001 0.55453402 0.24690101 0.79469001\n\t\t 0.55450398 0.24687 0.79472101 0.41691801 0.439441 0.79565698 0.217421 0.56690103\n\t\t 0.79457599 0.416924 0.439417 0.79566801 0.41691801 0.439441 0.79565698 0.41691801\n\t\t 0.439441 0.79565698 0.217416 0.56688702 0.79458803 0.217421 0.56690103 0.79457599\n\t\t 0.217421 0.56690103 0.79457599 0.217416 0.56688702 0.79458803 -0.015992001 0.60617\n\t\t 0.795174 -0.015992001 0.60617 0.795174 -0.015900999 0.60617101 0.79517502 0.217421\n\t\t 0.56690103 0.79457599 -0.247453 0.55545598 0.79387403 -0.015900999 0.60617101 0.79517502\n\t\t -0.015992001 0.60617 0.795174 -0.015992001 0.60617 0.795174 -0.24754401 0.555547\n\t\t 0.793782 -0.247453 0.55545598 0.79387403 -0.44081599 0.41807899 0.79428703 -0.247453\n\t\t 0.55545598 0.79387403 -0.24754401 0.555547 0.793782 -0.24754401 0.555547 0.793782\n\t\t -0.440916 0.418118 0.79421002 -0.44081599 0.41807899 0.79428703 -0.568883 0.218153\n\t\t 0.79295701 -0.44081599 0.41807899 0.79428703 -0.440916 0.418118 0.79421002 -0.440916\n\t\t 0.418118 0.79421002 -0.568887 0.218124 0.79296201 -0.568883 0.218153 0.79295701 -0.568883\n\t\t 0.218153 0.79295701 -0.568887 0.218124 0.79296201 -0.60827899 -0.016023001 0.793562\n\t\t -0.60827899 -0.016023001 0.793562 -0.60831398 -0.015961999 0.79353601 -0.568883 0.218153\n\t\t 0.79295701 -0.55718899 -0.248182 0.792431 -0.60831398 -0.015961999 0.79353601 -0.60827899\n\t\t -0.016023001 0.793562 -0.60827899 -0.016023001 0.793562 -0.55722302 -0.248184 0.79240602\n\t\t -0.55718899 -0.248182 0.792431 -0.55718899 -0.248182 0.792431 -0.55722302 -0.248184\n\t\t 0.79240602 -0.419063 -0.44161701 0.79332298 -0.419063 -0.44161701 0.79332298 -0.41906101\n\t\t -0.44167599 0.79329002 -0.55718899 -0.248182 0.792431 -0.218578 -0.56924301 0.79258198\n\t\t -0.41906101 -0.44167599 0.79329002 -0.419063 -0.44161701 0.79332298 -0.419063 -0.44161701\n\t\t 0.79332298 -0.21857899 -0.56927699 0.792557 -0.218578 -0.56924301 0.79258198;\n\tsetAttr \".n[22410:22575]\" -type \"float3\"  -0.218578 -0.56924301 0.79258198 -0.21857899\n\t\t -0.56927699 0.792557 0.015900999 -0.60793602 0.793827 0.015900999 -0.60793602 0.793827\n\t\t 0.015961999 -0.60794997 0.79381502 -0.218578 -0.56924301 0.79258198 0.247484 -0.55622101\n\t\t 0.79332799 0.015961999 -0.60794997 0.79381502 0.015900999 -0.60793602 0.793827 0.015900999\n\t\t -0.60793602 0.793827 0.24745101 -0.55624598 0.79332101 0.247484 -0.55622101 0.79332799\n\t\t -0.382682 0.92387998 0 0 1 0 0 1 0 0 1 0 -0.382682 0.92387998 0 -0.382682 0.92387998\n\t\t 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 -0.70710701 0.70710701 0 -0.70710701\n\t\t 0.70710701 0 -0.70710701 0.70710701 0 -0.382682 0.92387998 0 -0.92387998 0.38268101\n\t\t 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701 0 -0.92387998\n\t\t 0.38268101 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101\n\t\t 0 -1 0 0 -1 0 0 -1 0 0 -0.92387998 0.38268101 0 -0.92389101 -0.38265601 0 -1 0 0\n\t\t -1 0 0 -1 0 0 -0.92389101 -0.38265601 0 -0.92389101 -0.38265601 0 -0.92389101 -0.38265601\n\t\t 0 -0.92389101 -0.38265601 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701 0 -0.70710701\n\t\t -0.70710701 0 -0.92389101 -0.38265601 0 -0.38268101 -0.92387998 0 -0.70710701 -0.70710701\n\t\t 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701 0 -0.38268101 -0.92387998 0 -0.38268101\n\t\t -0.92387998 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998 0 0 -1 0 0 -1 0 0\n\t\t -1 0 -0.38268101 -0.92387998 0 0.382682 -0.92387998 0 0 -1 0 0 -1 0 0 -1 0 0.382682\n\t\t -0.92387998 0 0.382682 -0.92387998 0 0.382682 -0.92387998 0 0.382682 -0.92387998\n\t\t 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0 0.70709199 -0.70712203 0 0.382682\n\t\t -0.92387998 0 0.92387998 -0.38268101 0 0.70709199 -0.70712203 0 0.70710701 -0.70710701\n\t\t 0 0.70710701 -0.70710701 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101 0 0.92387998\n\t\t -0.38268101 0 0.92387998 -0.38268101 0 1 0 0 1 0 0 1 0 0 0.92387998 -0.38268101 0\n\t\t 0.92387998 0.382682 0 1 0 0 1 0 0 1 0 0 0.92387998 0.382682 0 0.92387998 0.382682\n\t\t 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.70709097 0.70712203 0 0.70709097\n\t\t 0.70712203 0 0.70710701 0.70710701 0 0.92387998 0.382682 0 0.38268101 0.92387998\n\t\t 0 0.70710701 0.70710701 0 0.70709097 0.70712203 0 0.70709097 0.70712203 0 0.38268101\n\t\t 0.92387998 0 0.38268101 0.92387998 0 0 1 0 0.38268101 0.92387998 0 0.38268101 0.92387998\n\t\t 0 0.38268101 0.92387998 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\n\t\t 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1\n\t\t 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0\n\t\t 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0\n\t\t 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1;\n\tsetAttr \".n[22576:22741]\" -type \"float3\"  0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0\n\t\t 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1\n\t\t 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0\n\t\t 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.382682 0.92387998 2.9999999e-05 0 1 0 0 1 0 0 1 0 -0.382682\n\t\t 0.92387998 6.0999999e-05 -0.382682 0.92387998 2.9999999e-05 -0.382682 0.92387998\n\t\t 2.9999999e-05 -0.382682 0.92387998 6.0999999e-05 -0.70710701 0.70710701 0 -0.70710701\n\t\t 0.70710701 0 -0.70709199 0.70712203 0 -0.382682 0.92387998 2.9999999e-05 -0.92387998\n\t\t 0.38268101 0 -0.70709199 0.70712203 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701\n\t\t 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101 0 -0.92387998\n\t\t 0.38268101 0 -1 0 0 -1 0 0 -1 0 0 -0.92387998 0.38268101 0 -0.92387998 -0.382682\n\t\t 0 -1 0 0 -1 0 0 -1 0 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682 0 -0.92387998\n\t\t -0.382682 0 -0.92387998 -0.382682 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701\n\t\t 0 -0.70710701 -0.70710701 0 -0.92387998 -0.382682 0 -0.38268101 -0.92387998 0 -0.70710701\n\t\t -0.70710701 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701 0 -0.38268101 -0.92387998\n\t\t 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998 0 0\n\t\t -1 0 0 -1 0 0 -1 0 -0.38268101 -0.92387998 0 0.38265601 -0.92389101 0 0 -1 0 0 -1\n\t\t 0 0 -1 0 0.38264501 -0.923895 0 0.38265601 -0.92389101 0 0.38265601 -0.92389101 0\n\t\t 0.38264501 -0.923895 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0 0.70710701\n\t\t -0.70710701 0 0.38265601 -0.92389101 0 0.92389101 -0.38265499 0 0.70710701 -0.70710701\n\t\t 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0 0.92389101 -0.38265499 0 0.92389101\n\t\t -0.38265499 0 0.92389101 -0.38265499 0 0.92389101 -0.38265499 0 1 0 0 1 0 0 1 0 0\n\t\t 0.92389101 -0.38265499 0 0.92387998 0.382682 0 1 0 0 1 0 0 1 0 0 0.92387998 0.382682\n\t\t 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.70710701 0.70710701\n\t\t 0 0.70710701 0.70710701 0 0.70710701 0.70710701 0 0.92387998 0.382682 0 0.38268101\n\t\t 0.92387998 6.0999999e-05 0.70710701 0.70710701 0 0.70710701 0.70710701 0 0.70710701\n\t\t 0.70710701 0 0.38268101 0.92387998 6.0999999e-05 0.38268101 0.92387998 6.0999999e-05\n\t\t 0 1 0 0.38268101 0.92387998 6.0999999e-05 0.38268101 0.92387998 6.0999999e-05 0.38268101\n\t\t 0.92387998 6.0999999e-05 0 1 0 0 1 0 -0.382682 0.92387998 0 0 1 0 0 1 0 0 1 0 -0.382682\n\t\t 0.92387998 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0\n\t\t -0.70710701 0.70710701 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701 0 -0.382682\n\t\t 0.92387998 0 -0.92387998 0.38268101 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701\n\t\t 0 -0.70710701 0.70710701 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101 0 -0.92387998\n\t\t 0.38268101 0 -0.92387998 0.38268101 0 -1 0 0 -1 0 0 -1 0 0 -0.92387998 0.38268101\n\t\t 0 -0.92387998 -0.382682 0 -1 0 0 -1 0 0 -1 0 0 -0.92387998 -0.382682 0 -0.92387998\n\t\t -0.382682 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682 0;\n\tsetAttr \".n[22742:22907]\" -type \"float3\"  -0.70710701 -0.70710701 0 -0.70710701\n\t\t -0.70710701 0 -0.70710701 -0.70710701 0 -0.92387998 -0.382682 0 -0.38268101 -0.92387998\n\t\t 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701 0 -0.38268101\n\t\t -0.92387998 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998\n\t\t 0 0 -1 0 0 -1 0 0 -1 0 -0.38268101 -0.92387998 0 0.382682 -0.92387998 0 0 -1 0 0\n\t\t -1 0 0 -1 0 0.382682 -0.92387998 0 0.382682 -0.92387998 0 0.382682 -0.92387998 0\n\t\t 0.382682 -0.92387998 0 0.70709199 -0.70712203 0 0.70709199 -0.70712203 0 0.70712203\n\t\t -0.70709097 0 0.382682 -0.92387998 0 0.92387998 -0.38268101 0 0.70712203 -0.70709097\n\t\t 0 0.70709199 -0.70712203 0 0.70709199 -0.70712203 0 0.92387998 -0.38268101 0 0.92387998\n\t\t -0.38268101 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101 0 1 0 0 1 0 0 1 0 0\n\t\t 0.92387998 -0.38268101 0 0.92387998 0.382682 0 1 0 0 1 0 0 1 0 0 0.92387998 0.382682\n\t\t 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.70710701 0.70710701\n\t\t 0 0.70710701 0.70710701 0 0.70710701 0.70710701 0 0.92387998 0.382682 0 0.38268101\n\t\t 0.92387998 0 0.70710701 0.70710701 0 0.70710701 0.70710701 0 0.70710701 0.70710701\n\t\t 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0 1 0 0.38268101 0.92387998 0 0.38268101\n\t\t 0.92387998 0 0.38268101 0.92387998 0 0 1 0 0 1 0 -0.382682 0.92387998 0 0 1 0 0 1\n\t\t 0 0 1 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 -0.382682\n\t\t 0.92387998 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701\n\t\t 0 -0.382682 0.92387998 0 -0.92387998 0.38268101 0 -0.70710701 0.70710701 0 -0.70710701\n\t\t 0.70710701 0 -0.70710701 0.70710701 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101\n\t\t 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101 0 -1 0 0 -1 0 0 -1 0 0 -0.92387998\n\t\t 0.38268101 0 -0.92387998 -0.382682 0 -1 0 0 -1 0 0 -1 0 0 -0.92389101 -0.38265601\n\t\t 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682 0 -0.92389101 -0.38265601 0 -0.70710701\n\t\t -0.70710701 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701 0 -0.92387998 -0.382682\n\t\t 0 -0.38265499 -0.92389101 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701 0 -0.70710701\n\t\t -0.70710701 0 -0.38265499 -0.92389101 0 -0.38265499 -0.92389101 0 -0.38265499 -0.92389101\n\t\t 0 -0.38265499 -0.92389101 0 0 -1 0 0 -1 0 0 -1 0 -0.38265499 -0.92389101 0 0.382682\n\t\t -0.92387998 0 0 -1 0 0 -1 0 0 -1 0 0.382682 -0.92387998 0 0.382682 -0.92387998 0\n\t\t 0.382682 -0.92387998 0 0.382682 -0.92387998 0 0.70709199 -0.70712203 0 0.70709199\n\t\t -0.70712203 0 0.70710701 -0.70710701 0 0.382682 -0.92387998 0 0.92387998 -0.38268101\n\t\t 0 0.70710701 -0.70710701 0 0.70709199 -0.70712203 0 0.70709199 -0.70712203 0 0.92387998\n\t\t -0.38268101 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101\n\t\t 0 1 0 0 1 0 0 1 0 0 0.92387998 -0.38268101 0 0.92387998 0.382682 0 1 0 0 1 0 0 1\n\t\t 0 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.92387998\n\t\t 0.382682 0 0.70710701 0.70710701 0 0.70710701 0.70710701 0 0.70710701 0.70710701\n\t\t 0 0.92387998 0.382682 0 0.38268101 0.92387998 0 0.70710701 0.70710701 0 0.70710701\n\t\t 0.70710701 0 0.70710701 0.70710701 0 0.38268101 0.92387998 0 0.38268101 0.92387998\n\t\t 0 0 1 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0\n\t\t 1 0 0 1 0 -0.382682 0.92387998 0 0 1 0 0 1 0 0 1 0 -0.382682 0.92387998 0 -0.382682\n\t\t 0.92387998 0;\n\tsetAttr \".n[22908:23073]\" -type \"float3\"  -0.382682 0.92387998 0 -0.382682 0.92387998\n\t\t 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701 0 -0.382682\n\t\t 0.92387998 0 -0.92387998 0.38268101 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701\n\t\t 0 -0.70710701 0.70710701 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101 0 -0.92387998\n\t\t 0.38268101 0 -0.92387998 0.38268101 0 -1 0 0 -1 0 0 -1 0 0 -0.92387998 0.38268101\n\t\t 0 -0.923895 -0.38264501 0 -1 0 0 -1 0 0 -1 0 0 -0.923895 -0.38264501 0 -0.923895\n\t\t -0.38264501 0 -0.923895 -0.38264501 0 -0.923895 -0.38264501 0 -0.70710701 -0.70710701\n\t\t 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701 0 -0.923895 -0.38264501 0 -0.38265499\n\t\t -0.92389101 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701\n\t\t 0 -0.38265499 -0.92389101 0 -0.38265499 -0.92389101 0 -0.38265499 -0.92389101 0 -0.38265499\n\t\t -0.92389101 0 0 -1 -0.000214 0 -1 -0.000214 0 -1 -0.000244 -0.38265499 -0.92389101\n\t\t 0 0.382682 -0.92387998 0 0 -1 -0.000244 0 -1 -0.000214 0 -1 -0.000214 0.382682 -0.92387998\n\t\t 0 0.382682 -0.92387998 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0 0.382682\n\t\t -0.92387998 0 0.382682 -0.92387998 0 0.382682 -0.92387998 0 0.70710701 -0.70710701\n\t\t 0 0.92387998 -0.38268101 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0 0.70710701\n\t\t -0.70710701 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101\n\t\t 0 0.92387998 -0.38268101 0 1 -2.9999999e-05 0 1 -2.9999999e-05 0 1 0 0 0.92387998\n\t\t -0.38268101 0 0.923895 0.38264501 -0.000214 1 0 0 1 -2.9999999e-05 0 1 -2.9999999e-05\n\t\t 0 0.92387998 0.382682 -0.000214 0.923895 0.38264501 -0.000214 0.923895 0.38264501\n\t\t -0.000214 0.92387998 0.382682 -0.000214 0.70710701 0.70710701 0 0.70710701 0.70710701\n\t\t 0 0.70709097 0.70712203 0 0.923895 0.38264501 -0.000214 0.38268101 0.92387998 0 0.70709097\n\t\t 0.70712203 0 0.70710701 0.70710701 0 0.70710701 0.70710701 0 0.38268101 0.92387998\n\t\t 0 0.38268101 0.92387998 0 0 1 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0.38268101\n\t\t 0.92387998 0 0 1 0 0 1 0 0 0.50255698 0.86454397 0 0.50255698 0.86454397 -0.192762\n\t\t 0.46545401 0.86382598 -0.192762 0.46545401 0.86382598 -0.192762 0.46545401 0.86382598\n\t\t 0 0.50255698 0.86454397 -0.192762 0.46545401 0.86382598 -0.192762 0.46545401 0.86382598\n\t\t -0.35536301 0.35536301 0.86454201 -0.35536301 0.35536301 0.86454201 -0.355367 0.35533699\n\t\t 0.86455202 -0.192762 0.46545401 0.86382598 -0.355367 0.35533699 0.86455202 -0.35536301\n\t\t 0.35536301 0.86454201 -0.46542701 0.192794 0.86383301 -0.46542701 0.192794 0.86383301\n\t\t -0.465451 0.192791 0.86382103 -0.355367 0.35533699 0.86455202 -0.465451 0.192791\n\t\t 0.86382103 -0.46542701 0.192794 0.86383301 -0.50259298 0 0.86452299 -0.50259298 0\n\t\t 0.86452299 -0.50259298 0 0.86452299 -0.465451 0.192791 0.86382103 -0.50259298 0 0.86452299\n\t\t -0.50259298 0 0.86452299 -0.465451 -0.192791 0.86382103 -0.465451 -0.192791 0.86382103\n\t\t -0.465451 -0.192791 0.86382103 -0.50259298 0 0.86452299 -0.465451 -0.192791 0.86382103\n\t\t -0.465451 -0.192791 0.86382103 -0.35539499 -0.355396 0.86451602 -0.35539499 -0.355396\n\t\t 0.86451602 -0.35539499 -0.355396 0.86451602 -0.465451 -0.192791 0.86382103 -0.35539499\n\t\t -0.355396 0.86451602 -0.35539499 -0.355396 0.86451602 -0.192762 -0.46539399 0.86385798\n\t\t -0.192762 -0.46539399 0.86385798 -0.192727 -0.46538401 0.86387098 -0.35539499 -0.355396\n\t\t 0.86451602 -0.192727 -0.46538401 0.86387098 -0.192762 -0.46539399 0.86385798 0 -0.50252098\n\t\t 0.86456501 0 -0.50252098 0.86456501 0 -0.50252098 0.86456501 -0.192727 -0.46538401\n\t\t 0.86387098 0 -0.50252098 0.86456501 0 -0.50252098 0.86456501 0.192757 -0.46538201\n\t\t 0.86386597 0.192757 -0.46538201 0.86386597 0.192762 -0.46539399 0.86385798 0 -0.50252098\n\t\t 0.86456501 0.192762 -0.46539399 0.86385798 0.192757 -0.46538201 0.86386597 0.355396\n\t\t -0.35539499 0.86451602 0.355396 -0.35539499 0.86451602 0.35539201 -0.35542199 0.86450702\n\t\t 0.192762 -0.46539399 0.86385798 0.35539201 -0.35542199 0.86450702 0.355396 -0.35539499\n\t\t 0.86451602 0.465451 -0.192791 0.86382103 0.465451 -0.192791 0.86382103 0.465451 -0.192791\n\t\t 0.86382103 0.35539201 -0.35542199 0.86450702 0.465451 -0.192791 0.86382103 0.465451\n\t\t -0.192791 0.86382103 0.50259298 0 0.86452299 0.50259298 0 0.86452299 0.50259298 0\n\t\t 0.86452299 0.465451 -0.192791 0.86382103 0.50259298 0 0.86452299 0.50259298 0 0.86452299\n\t\t 0.465451 0.192791 0.86382103 0.465451 0.192791 0.86382103;\n\tsetAttr \".n[23074:23239]\" -type \"float3\"  0.465451 0.192791 0.86382103 0.50259298\n\t\t 0 0.86452299 0.465451 0.192791 0.86382103 0.465451 0.192791 0.86382103 0.35536301\n\t\t 0.35536399 0.86454201 0.35536301 0.35536399 0.86454201 0.35536301 0.35536399 0.86454201\n\t\t 0.465451 0.192791 0.86382103 0.35536301 0.35536399 0.86454201 0.35536301 0.35536399\n\t\t 0.86454201 0.192794 0.46542799 0.86383301 0.192794 0.46542799 0.86383301 0.192791\n\t\t 0.465451 0.86382103 0.35536301 0.35536399 0.86454201 0.192791 0.465451 0.86382103\n\t\t 0.192794 0.46542799 0.86383301 0 0.50255698 0.86454397 0 0.50255698 0.86454397 0\n\t\t 0.50255698 0.86454397 0.192791 0.465451 0.86382103 -0.355367 0.35533699 -0.86455202\n\t\t -0.35536301 0.35536301 -0.86454302 -0.192757 0.46538201 -0.86386597 -0.192757 0.46538201\n\t\t -0.86386597 -0.192757 0.46538201 -0.86386597 -0.355367 0.35533699 -0.86455202 -0.192757\n\t\t 0.46538201 -0.86386597 -0.192757 0.46538201 -0.86386597 0 0.50255698 -0.86454397\n\t\t 0 0.50255698 -0.86454397 0 0.50255698 -0.86454397 -0.192757 0.46538201 -0.86386597\n\t\t 0 0.50255698 -0.86454397 0 0.50255698 -0.86454397 0.192757 0.46538201 -0.86386597\n\t\t 0.192757 0.46538201 -0.86386597 0.192757 0.46538201 -0.86386597 0 0.50255698 -0.86454397\n\t\t 0.192757 0.46538201 -0.86386597 0.192757 0.46538201 -0.86386597 0.35534 0.35534099\n\t\t -0.86456102 0.35534 0.35534099 -0.86456102 0.35534 0.35534099 -0.86456102 0.192757\n\t\t 0.46538201 -0.86386597 0.35534 0.35534099 -0.86456102 0.35534 0.35534099 -0.86456102\n\t\t 0.46538201 0.192757 -0.86386597 0.46538201 0.192757 -0.86386597 0.46538201 0.192757\n\t\t -0.86386597 0.35534 0.35534099 -0.86456102 0.46538201 0.192757 -0.86386597 0.46538201\n\t\t 0.192757 -0.86386597 0.50252098 0 -0.86456501 0.50252098 0 -0.86456501 0.50252098\n\t\t 0 -0.86456501 0.46538201 0.192757 -0.86386597 0.50252098 0 -0.86456501 0.50252098\n\t\t 0 -0.86456501 0.46535799 -0.19276001 -0.86387801 0.46535799 -0.19276001 -0.86387801\n\t\t 0.46538499 -0.192727 -0.86387098 0.50252098 0 -0.86456501 0.46538499 -0.192727 -0.86387098\n\t\t 0.46535799 -0.19276001 -0.86387801 0.35534099 -0.35534099 -0.86456102 0.35534099\n\t\t -0.35534099 -0.86456102 0.35534099 -0.35534099 -0.86456102 0.46538499 -0.192727 -0.86387098\n\t\t 0.35534099 -0.35534099 -0.86456102 0.35534099 -0.35534099 -0.86456102 0.192757 -0.46538201\n\t\t -0.86386597 0.192757 -0.46538201 -0.86386597 0.192757 -0.46538201 -0.86386597 0.35534099\n\t\t -0.35534099 -0.86456102 0.192757 -0.46538201 -0.86386597 0.192757 -0.46538201 -0.86386597\n\t\t 0 -0.50252098 -0.86456501 0 -0.50252098 -0.86456501 0 -0.50252098 -0.86456501 0.192757\n\t\t -0.46538201 -0.86386597 0 -0.50252098 -0.86456501 0 -0.50252098 -0.86456501 -0.192757\n\t\t -0.46538201 -0.86386597 -0.192757 -0.46538201 -0.86386597 -0.192757 -0.46538201 -0.86386597\n\t\t 0 -0.50252098 -0.86456501 -0.192757 -0.46538201 -0.86386597 -0.192757 -0.46538201\n\t\t -0.86386597 -0.35536301 -0.35536399 -0.86454201 -0.35536301 -0.35536399 -0.86454201\n\t\t -0.35536301 -0.35536399 -0.86454201 -0.192757 -0.46538201 -0.86386597 -0.35536301\n\t\t -0.35536399 -0.86454201 -0.35536301 -0.35536399 -0.86454201 -0.46538201 -0.192757\n\t\t -0.86386597 -0.46538201 -0.192757 -0.86386597 -0.46538201 -0.192757 -0.86386597 -0.35536301\n\t\t -0.35536399 -0.86454201 -0.46538201 -0.192757 -0.86386597 -0.46538201 -0.192757 -0.86386597\n\t\t -0.50252098 0 -0.86456501 -0.50252098 0 -0.86456501 -0.50252098 0 -0.86456501 -0.46538201\n\t\t -0.192757 -0.86386597 -0.50252098 0 -0.86456501 -0.50252098 0 -0.86456501 -0.46538201\n\t\t 0.192757 -0.86386597 -0.46538201 0.192757 -0.86386597 -0.46538201 0.192757 -0.86386597\n\t\t -0.50252098 0 -0.86456501 -0.46538201 0.192757 -0.86386597 -0.46538201 0.192757 -0.86386597\n\t\t -0.35536301 0.35536301 -0.86454302 -0.35536301 0.35536301 -0.86454302 -0.355367 0.35533699\n\t\t -0.86455202 -0.46538201 0.192757 -0.86386597 0 0.495994 0.86832601 0 0.495994 0.86832601\n\t\t -0.19025899 0.45934999 0.86764002 -0.19025899 0.45934999 0.86764002 -0.19025899 0.45934999\n\t\t 0.86764002 0 0.495994 0.86832601 -0.19025899 0.45934999 0.86764002 -0.19025899 0.45934999\n\t\t 0.86764002 -0.350723 0.350723 0.86832398 -0.350723 0.350723 0.86832398 -0.350723\n\t\t 0.350723 0.86832398 -0.19025899 0.45934999 0.86764002 -0.350723 0.350723 0.86832398\n\t\t -0.350723 0.350723 0.86832398 -0.45931599 0.190227 0.86766499 -0.45931599 0.190227\n\t\t 0.86766499 -0.45931599 0.190227 0.86766499 -0.350723 0.350723 0.86832398 -0.45931599\n\t\t 0.190227 0.86766499 -0.45931599 0.190227 0.86766499 -0.495994 0 0.86832601 -0.495994\n\t\t 0 0.86832601 -0.495994 0 0.86832601 -0.45931599 0.190227 0.86766499 -0.495994 0 0.86832601\n\t\t -0.495994 0 0.86832601 -0.45931599 -0.190227 0.86766499 -0.45931599 -0.190227 0.86766499\n\t\t -0.45931599 -0.190227 0.86766499 -0.495994 0 0.86832601 -0.45931599 -0.190227 0.86766499\n\t\t -0.45931599 -0.190227 0.86766499 -0.350723 -0.350723 0.86832398 -0.350723 -0.350723\n\t\t 0.86832398 -0.350723 -0.350723 0.86832398 -0.45931599 -0.190227 0.86766499 -0.350723\n\t\t -0.350723 0.86832398 -0.350723 -0.350723 0.86832398 -0.190227 -0.45931599 0.86766499\n\t\t -0.190227 -0.45931599 0.86766499 -0.190227 -0.45931599 0.86766499 -0.350723 -0.350723\n\t\t 0.86832398 -0.190227 -0.45931599 0.86766499 -0.190227 -0.45931599 0.86766499 0 -0.49593499\n\t\t 0.86835998 0 -0.49593499 0.86835998 0 -0.49593499 0.86835998 -0.190227 -0.45931599\n\t\t 0.86766499 0 -0.49593499 0.86835998 0 -0.49593499 0.86835998;\n\tsetAttr \".n[23240:23405]\" -type \"float3\"  0.190227 -0.45931599 0.86766499 0.190227\n\t\t -0.45931599 0.86766499 0.190257 -0.45931301 0.86765999 0 -0.49593499 0.86835998 0.190257\n\t\t -0.45931301 0.86765999 0.190227 -0.45931599 0.86766499 0.350723 -0.350723 0.86832398\n\t\t 0.350723 -0.350723 0.86832398 0.350723 -0.350723 0.86832398 0.190257 -0.45931301\n\t\t 0.86765999 0.350723 -0.350723 0.86832398 0.350723 -0.350723 0.86832398 0.459371 -0.190285\n\t\t 0.86762297 0.459371 -0.190285 0.86762297 0.459371 -0.190285 0.86762297 0.350723 -0.350723\n\t\t 0.86832398 0.459371 -0.190285 0.86762297 0.459371 -0.190285 0.86762297 0.495994 0\n\t\t 0.86832601 0.495994 0 0.86832601 0.495994 0 0.86832601 0.459371 -0.190285 0.86762297\n\t\t 0.495994 0 0.86832601 0.495994 0 0.86832601 0.45931599 0.190227 0.86766499 0.45931599\n\t\t 0.190227 0.86766499 0.45931599 0.190227 0.86766499 0.495994 0 0.86832601 0.45931599\n\t\t 0.190227 0.86766499 0.45931599 0.190227 0.86766499 0.35069099 0.35069099 0.86835003\n\t\t 0.35069099 0.35069099 0.86835003 0.35066399 0.35069501 0.86835903 0.45931599 0.190227\n\t\t 0.86766499 0.35066399 0.35069501 0.86835903 0.35069099 0.35069099 0.86835003 0.19028801\n\t\t 0.45934701 0.86763501 0.19028801 0.45934701 0.86763501 0.190285 0.459371 0.86762297\n\t\t 0.35066399 0.35069501 0.86835903 0.190285 0.459371 0.86762297 0.19028801 0.45934701\n\t\t 0.86763501 0 0.495994 0.86832601 0 0.495994 0.86832601 0 0.495994 0.86832601 0.190285\n\t\t 0.459371 0.86762297 -0.350723 0.350723 -0.86832398 -0.350723 0.350723 -0.86832398\n\t\t -0.19025899 0.45934999 -0.86764002 -0.19025899 0.45934999 -0.86764002 -0.19025899\n\t\t 0.45934999 -0.86764002 -0.350723 0.350723 -0.86832398 -0.19025899 0.45934999 -0.86764002\n\t\t -0.19025899 0.45934999 -0.86764002 0 0.495994 -0.86832601 0 0.495994 -0.86832601\n\t\t 0 0.495994 -0.86832601 -0.19025899 0.45934999 -0.86764002 0 0.495994 -0.86832601\n\t\t 0 0.495994 -0.86832601 0.190256 0.45937401 -0.86762798 0.190256 0.45937401 -0.86762798\n\t\t 0.190256 0.45937401 -0.86762798 0 0.495994 -0.86832601 0.190256 0.45937401 -0.86762798\n\t\t 0.190256 0.45937401 -0.86762798 0.35069501 0.35066399 -0.86835903 0.35069501 0.35066399\n\t\t -0.86835903 0.35069099 0.35069099 -0.86835003 0.190256 0.45937401 -0.86762798 0.35069099\n\t\t 0.35069099 -0.86835003 0.35069501 0.35066399 -0.86835903 0.45934999 0.19025899 -0.86764002\n\t\t 0.45934999 0.19025899 -0.86764002 0.45934999 0.19025899 -0.86764002 0.35069099 0.35069099\n\t\t -0.86835003 0.45934999 0.19025899 -0.86764002 0.45934999 0.19025899 -0.86764002 0.495994\n\t\t 0 -0.86832601 0.495994 0 -0.86832601 0.495994 0 -0.86832601 0.45934999 0.19025899\n\t\t -0.86764002 0.495994 0 -0.86832601 0.495994 0 -0.86832601 0.45937401 -0.190256 -0.86762798\n\t\t 0.45937401 -0.190256 -0.86762798 0.45937401 -0.190256 -0.86762798 0.495994 0 -0.86832601\n\t\t 0.45937401 -0.190256 -0.86762798 0.45937401 -0.190256 -0.86762798 0.350723 -0.350723\n\t\t -0.86832398 0.350723 -0.350723 -0.86832398 0.350723 -0.350723 -0.86832398 0.45937401\n\t\t -0.190256 -0.86762798 0.350723 -0.350723 -0.86832398 0.350723 -0.350723 -0.86832398\n\t\t 0.190227 -0.45931599 -0.86766499 0.190227 -0.45931599 -0.86766499 0.190227 -0.45931599\n\t\t -0.86766499 0.350723 -0.350723 -0.86832398 0.190227 -0.45931599 -0.86766499 0.190227\n\t\t -0.45931599 -0.86766499 0 -0.49605399 -0.86829197 0 -0.49605399 -0.86829197 0 -0.49605399\n\t\t -0.86829197 0.190227 -0.45931599 -0.86766499 0 -0.49605399 -0.86829197 0 -0.49605399\n\t\t -0.86829197 -0.190256 -0.45931399 -0.86765999 -0.190256 -0.45931399 -0.86765999 -0.190256\n\t\t -0.45931399 -0.86765999 0 -0.49605399 -0.86829197 -0.190256 -0.45931399 -0.86765999\n\t\t -0.190256 -0.45931399 -0.86765999 -0.350723 -0.350723 -0.86832398 -0.350723 -0.350723\n\t\t -0.86832398 -0.350723 -0.350723 -0.86832398 -0.190256 -0.45931399 -0.86765999 -0.350723\n\t\t -0.350723 -0.86832398 -0.350723 -0.350723 -0.86832398 -0.45931599 -0.190227 -0.86766499\n\t\t -0.45931599 -0.190227 -0.86766499 -0.45931599 -0.190227 -0.86766499 -0.350723 -0.350723\n\t\t -0.86832398 -0.45931599 -0.190227 -0.86766499 -0.45931599 -0.190227 -0.86766499 -0.495994\n\t\t 0 -0.86832601 -0.495994 0 -0.86832601 -0.495994 0 -0.86832601 -0.45931599 -0.190227\n\t\t -0.86766499 -0.495994 0 -0.86832601 -0.495994 0 -0.86832601 -0.45931599 0.190227\n\t\t -0.86766499 -0.45931599 0.190227 -0.86766499 -0.45931399 0.190256 -0.86765999 -0.495994\n\t\t 0 -0.86832601 -0.45931399 0.190256 -0.86765999 -0.45931599 0.190227 -0.86766499 -0.350723\n\t\t 0.350723 -0.86832398 -0.350723 0.350723 -0.86832398 -0.350723 0.350723 -0.86832398\n\t\t -0.45931399 0.190256 -0.86765999 -0.31245801 0.75437897 0.57730597 0 0.81567401 0.57851201\n\t\t 0 0.81566298 0.57852697 0 0.81566298 0.57852697 -0.31245801 0.75437897 0.57730597\n\t\t -0.31245801 0.75437897 0.57730597 -0.31245801 0.75437897 0.57730597 -0.31245801 0.75437897\n\t\t 0.57730597 -0.57674998 0.57674903 0.57854998 -0.57674998 0.57674903 0.57854998 -0.57674998\n\t\t 0.57674903 0.57854998 -0.31245801 0.75437897 0.57730597 -0.75435299 0.31245899 0.57733899\n\t\t -0.57674998 0.57674903 0.57854998 -0.57674998 0.57674903 0.57854998 -0.57674998 0.57674903\n\t\t 0.57854998 -0.75435299 0.31245899 0.57733899 -0.75435299 0.31245899 0.57733899 -0.75435299\n\t\t 0.31245899 0.57733899 -0.75435299 0.31245899 0.57733899 -0.81564897 0 0.578547 -0.81564897\n\t\t 0 0.578547 -0.81566298 0 0.57852697 -0.75435299 0.31245899 0.57733899;\n\tsetAttr \".n[23406:23571]\" -type \"float3\"  -0.75435299 -0.31246001 0.57733899 -0.81566298\n\t\t 0 0.57852697 -0.81564897 0 0.578547 -0.81564897 0 0.578547 -0.75435299 -0.31246001\n\t\t 0.57733899 -0.75435299 -0.31246001 0.57733899 -0.75435299 -0.31246001 0.57733899\n\t\t -0.75435299 -0.31246001 0.57733899 -0.57675898 -0.57675999 0.57853001 -0.57675898\n\t\t -0.57675999 0.57853001 -0.57675898 -0.57675999 0.57853001 -0.75435299 -0.31246001\n\t\t 0.57733899 -0.31245199 -0.75436598 0.577326 -0.57675898 -0.57675999 0.57853001 -0.57675898\n\t\t -0.57675999 0.57853001 -0.57675898 -0.57675999 0.57853001 -0.31245199 -0.75436598\n\t\t 0.577326 -0.31245199 -0.75436598 0.577326 -0.31245199 -0.75436598 0.577326 -0.31245199\n\t\t -0.75436598 0.577326 0 -0.81566298 0.57852697 0 -0.81566298 0.57852697 0 -0.81566298\n\t\t 0.57852697 -0.31245199 -0.75436598 0.577326 0.312453 -0.75436598 0.577326 0 -0.81566298\n\t\t 0.57852697 0 -0.81566298 0.57852697 0 -0.81566298 0.57852697 0.312453 -0.75436598\n\t\t 0.577326 0.312453 -0.75436598 0.577326 0.57674998 -0.57674903 0.57854998 0.57674998\n\t\t -0.57674903 0.57854998 0.312453 -0.75436598 0.577326 0.312453 -0.75436598 0.577326\n\t\t 0.312453 -0.75436598 0.577326 0.57674998 -0.57674903 0.57854998 0.75435299 -0.31245899\n\t\t 0.57733899 0.57674998 -0.57674903 0.57854998 0.57674998 -0.57674903 0.57854998 0.57674998\n\t\t -0.57674903 0.57854998 0.75435299 -0.31245899 0.57733899 0.75435299 -0.31245899 0.57733899\n\t\t 0.75435299 -0.31245899 0.57733899 0.75435299 -0.31245899 0.57733899 0.81564897 0\n\t\t 0.578547 0.81564897 0 0.578547 0.81566298 0 0.57852697 0.75435299 -0.31245899 0.57733899\n\t\t 0.75435299 0.31246001 0.57733899 0.81566298 0 0.57852697 0.81564897 0 0.578547 0.81564897\n\t\t 0 0.578547 0.75435299 0.31246001 0.57733899 0.75435299 0.31246001 0.57733899 0.75435299\n\t\t 0.31246001 0.57733899 0.75435299 0.31246001 0.57733899 0.57675898 0.57675999 0.57853001\n\t\t 0.57675898 0.57675999 0.57853001 0.57674903 0.57674998 0.57854998 0.75435299 0.31246001\n\t\t 0.57733899 0.31245801 0.75437999 0.57730597 0.57674903 0.57674998 0.57854998 0.57675898\n\t\t 0.57675999 0.57853001 0.57675898 0.57675999 0.57853001 0.31245801 0.75437999 0.57730597\n\t\t 0.31245801 0.75437999 0.57730597 0 0.81567401 0.57851201 0.31245801 0.75437999 0.57730597\n\t\t 0.31245801 0.75437999 0.57730597 0.31245801 0.75437999 0.57730597 0 0.81566298 0.57852697\n\t\t 0 0.81567401 0.57851201 0 1 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 -0.382682\n\t\t 0.92387998 0 0 1 0 0 1 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 -0.70710701\n\t\t 0.70710701 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701 0 -0.382682 0.92387998\n\t\t 0 -0.92387998 0.38268101 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701 0 -0.70710701\n\t\t 0.70710701 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101\n\t\t 0 -0.92387998 0.38268101 0 -1 0 0 -1 0 0 -1 0 0 -0.92387998 0.38268101 0 -0.92387998\n\t\t -0.382682 0 -1 0 0 -1 0 0 -1 0 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682 0\n\t\t -0.92387998 -0.382682 0 -0.92387998 -0.382682 0 -0.70710701 -0.70710701 0 -0.70710701\n\t\t -0.70710701 0 -0.70710701 -0.70710701 0 -0.92387998 -0.382682 0 -0.38268101 -0.92387998\n\t\t 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701 0 -0.38268101\n\t\t -0.92387998 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998\n\t\t 0 0 -1 0 0 -1 0 0 -1 0 -0.38268101 -0.92387998 0 0.382682 -0.92387998 0 0 -1 0 0\n\t\t -1 0 0 -1 0 0.382682 -0.92387998 0 0.382682 -0.92387998 0 0.382682 -0.92387998 0\n\t\t 0.382682 -0.92387998 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0 0.70710701\n\t\t -0.70710701 0 0.382682 -0.92387998 0 0.92387998 -0.38268101 0 0.70710701 -0.70710701\n\t\t 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0 0.92387998 -0.38268101 0 0.92387998\n\t\t -0.38268101 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101 0 1 0 0 1 0 0 1 0 0\n\t\t 0.92387998 -0.38268101 0 0.92387998 0.382682 0 1 0 0 1 0 0 1 0 0 0.92389101 0.38265601\n\t\t 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.92389101 0.38265601 0 0.70712203\n\t\t 0.70709199 0 0.70712203 0.70709199 0 0.70710701 0.70710701 0 0.92387998 0.382682\n\t\t 0 0.38268101 0.92387998 0 0.70710701 0.70710701 0 0.70712203 0.70709199 0 0.70712203\n\t\t 0.70709199 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0.38268101 0.92387998\n\t\t 0 0.38268101 0.92387998 0 0 1 0 0 1 0;\n\tsetAttr \".n[23572:23737]\" -type \"float3\"  0 1 0 0.38268101 0.92387998 0 0 0 1 0\n\t\t 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1\n\t\t 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0\n\t\t 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0\n\t\t 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1\n\t\t 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0\n\t\t 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0\n\t\t 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 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 0\n\t\t -0.382682 0.92387998 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 0 1 0 0 1 0\n\t\t -0.70710701 0.70710701 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 -0.382682\n\t\t 0.92387998 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701 0 -0.92387998 0.38268101\n\t\t 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701 0 -0.92387998\n\t\t 0.38268101 0 -0.92387998 0.38268101 0 -1 0 0 -0.92387998 0.38268101 0 -0.92387998\n\t\t 0.38268101 0 -0.92387998 0.38268101 0 -1 0 0 -1 0 0 -0.92387998 -0.382682 0 -1 0\n\t\t 0 -1 0 0 -1 0 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682 0 -0.70710701 -0.70710701\n\t\t 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682 0 -0.70710701\n\t\t -0.70710701 0 -0.70710701 -0.70710701 0 -0.38268101 -0.92387998 0 -0.70710701 -0.70710701\n\t\t 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701 0 -0.38268101 -0.92387998 0 -0.38268101\n\t\t -0.92387998 0 0 -1 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998 0 -0.38268101\n\t\t -0.92387998 0 0 -1 0 0 -1 0 0.382682 -0.92387998 3.1e-05 0 -1 0 0 -1 0 0 -1 0 0.382682\n\t\t -0.92387998 3.1e-05 0.382682 -0.92387998 3.1e-05 -0.58137101 0.58137101 0.569224\n\t\t -0.75999802 0.31477901 0.56861001 -0.75999099 0.31480601 0.56860501 -0.82218897 0\n\t\t 0.569215 -0.75999099 0.31480601 0.56860501 -0.75999802 0.31477901 0.56861001 -0.75999802\n\t\t 0.31477901 0.56861001 -0.82218897 0 0.569215 -0.82218897 0 0.569215 -0.82218897 0\n\t\t 0.569215 -0.75999099 -0.31480601 0.56860501 -0.75999099 -0.31480601 0.56860501 -0.75999099\n\t\t -0.31480601 0.56860501 -0.82218897 0 0.569215;\n\tsetAttr \".n[23738:23903]\" -type \"float3\"  -0.82218897 0 0.569215 -0.58137101 -0.58137101\n\t\t 0.569224 -0.75999099 -0.31480601 0.56860501 -0.75999099 -0.31480601 0.56860501 -0.75999099\n\t\t -0.31480601 0.56860501 -0.58137101 -0.58137101 0.569224 -0.58137101 -0.58137101 0.569224\n\t\t -0.58137101 -0.58137101 0.569224 -0.31480399 -0.76001698 0.56857097 -0.31480399 -0.76001698\n\t\t 0.56857097 -0.31480399 -0.76001698 0.56857097 -0.58137101 -0.58137101 0.569224 -0.58137101\n\t\t -0.58137101 0.569224 0 -0.82218897 0.569215 -0.31480399 -0.76001698 0.56857097 -0.31480399\n\t\t -0.76001698 0.56857097 -0.31480399 -0.76001698 0.56857097 0 -0.82218897 0.569215\n\t\t 0 -0.82218897 0.569215 0 -0.82218897 0.569215 0.314805 -0.76001698 0.56857097 0.314805\n\t\t -0.76001698 0.56857097 0.314805 -0.76001698 0.56857097 0 -0.82218897 0.569215 0 -0.82218897\n\t\t 0.569215 -0.75999099 0.31480601 0.56860501 -0.58137101 0.58137101 0.569224 -0.58137101\n\t\t 0.58137101 0.569224 -0.31477201 0.76001102 0.56859702 -0.58137101 0.58137101 0.569224\n\t\t -0.58137101 0.58137101 0.569224 -0.58137101 0.58137101 0.569224 -0.31477901 0.75999802\n\t\t 0.56861001 -0.31477201 0.76001102 0.56859702 0 0.82218897 0.569215 -0.31477201 0.76001102\n\t\t 0.56859702 -0.31477901 0.75999802 0.56861001 -0.31477901 0.75999802 0.56861001 0\n\t\t 0.82218897 0.569215 0 0.82218897 0.569215 0.31480601 0.75999099 0.56860399 0 0.82218897\n\t\t 0.569215 0 0.82218897 0.569215 0 1 0 0.38268101 0.92387998 0 0.38268101 0.92387998\n\t\t 0 0.70710701 0.70710701 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0.38268101\n\t\t 0.92387998 0 0.70710701 0.70710701 0 0.70710701 0.70710701 0 0.92387998 0.382682\n\t\t 0 0.70710701 0.70710701 0 0.70710701 0.70710701 0 0.70710701 0.70710701 0 0.92387998\n\t\t 0.382682 0 0.92387998 0.382682 0 1 0 0 0.92387998 0.382682 0 0.92387998 0.382682\n\t\t 0 0.92387998 0.382682 0 1 0 0 1 0 0 0.92387998 -0.38268101 0 1 0 0 1 0 0 1 0 0 0.92387998\n\t\t -0.38268101 0 0.92387998 -0.38268101 0 0.70712203 -0.70709097 0 0.92387998 -0.38268101\n\t\t 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101 0 0.70710701 -0.70710701 0 0.70712203\n\t\t -0.70709097 0 0.382682 -0.92387998 3.1e-05 0.70712203 -0.70709097 0 0.70710701 -0.70710701\n\t\t 0 0.70710701 -0.70710701 0 0.382682 -0.92387998 3.1e-05 0.382682 -0.92387998 3.1e-05\n\t\t 0.38268101 0.92387998 0 0 1 0 0 1 0 0.314805 -0.76001698 0.56857097 0.58137101 -0.58137101\n\t\t 0.569224 0.58137101 -0.58137101 0.569224 0.58137101 -0.58137101 0.569224 0.314805\n\t\t -0.76001698 0.56857097 0.314805 -0.76001698 0.56857097 0.58137101 -0.58137101 0.569224\n\t\t 0.76001698 -0.31480399 0.56857097 0.76001698 -0.31480399 0.56857097 0.76001698 -0.31480399\n\t\t 0.56857097 0.58137101 -0.58137101 0.569224 0.58137101 -0.58137101 0.569224 0.82218897\n\t\t 0 0.569215 0.76001698 -0.31480399 0.56857097 0.76001698 -0.31480399 0.56857097 0.76001698\n\t\t -0.31480399 0.56857097 0.82218897 0 0.569215 0.82218897 0 0.569215 0.82218897 0 0.569215\n\t\t 0.76001698 0.314805 0.56857097 0.76001698 0.314805 0.56857097 0.76001698 0.314805\n\t\t 0.56857097 0.82218897 0 0.569215 0.82218897 0 0.569215 0.58137101 0.58137101 0.569224\n\t\t 0.76001698 0.314805 0.56857097 0.76001698 0.314805 0.56857097 0.76001698 0.314805\n\t\t 0.56857097 0.58137101 0.58137101 0.569224 0.58137101 0.58137101 0.569224 0.31480601\n\t\t 0.75999099 0.56860399 0.58137101 0.58137101 0.569224 0.58137101 0.58137101 0.569224\n\t\t 0.58137101 0.58137101 0.569224 0.31480601 0.75999099 0.56860399 0.31480601 0.75999099\n\t\t 0.56860399 0 0.82218897 0.569215 0.31480601 0.75999099 0.56860399 0.31480601 0.75999099\n\t\t 0.56860399 0 1 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 -0.382682 0.92387998\n\t\t 0 0 1 0 0 1 0 -0.70710701 0.70710701 0 -0.382682 0.92387998 0 -0.382682 0.92387998\n\t\t 0 -0.382682 0.92387998 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701 0 -0.92387998\n\t\t 0.38268101 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701\n\t\t 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101 0 -1 0 0 -0.92387998 0.38268101\n\t\t 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101 0 -1 0 0 -1 0 0 -0.92387998 -0.382682\n\t\t 0 -1 0 0 -1 0 0 -1 0 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682 0 -0.70710701\n\t\t -0.70710701 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682\n\t\t 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701 0 -0.38268101 -0.92387998 0 -0.70710701\n\t\t -0.70710701 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701 0 -0.38268101 -0.92387998\n\t\t 0 -0.38268101 -0.92387998 0;\n\tsetAttr \".n[23904:24069]\" -type \"float3\"  0 -1 0 -0.38268101 -0.92387998 0 -0.38268101\n\t\t -0.92387998 0 -0.38268101 -0.92387998 0 0 -1 0 0 -1 0 0.382682 -0.92387998 0 0 -1\n\t\t 0 0 -1 0 0 -1 0 0.382682 -0.92387998 0 0.382682 -0.92387998 0 0.70710701 -0.70710701\n\t\t 0 0.382682 -0.92387998 0 0.382682 -0.92387998 0 0.382682 -0.92387998 0 0.70709199\n\t\t -0.70712203 0 0.70710701 -0.70710701 0 0.92387998 -0.38268101 0 0.70710701 -0.70710701\n\t\t 0 0.70709199 -0.70712203 0 0.70709199 -0.70712203 0 0.92387998 -0.38268101 0 0.92387998\n\t\t -0.38268101 0 1 0 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101 0 0.92387998\n\t\t -0.38268101 0 1 0 0 1 0 0 0.92387998 0.382682 0 1 0 0 1 0 0 1 0 0 0.92387998 0.382682\n\t\t 0 0.92387998 0.382682 0 0.70710701 0.70710701 0 0.92387998 0.382682 0 0.92387998\n\t\t 0.382682 0 0.92387998 0.382682 0 0.70710701 0.70710701 0 0.70710701 0.70710701 0\n\t\t 0.38268101 0.92387998 0 0.70710701 0.70710701 0 0.70710701 0.70710701 0 0.70710701\n\t\t 0.70710701 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0 1 0 0.38268101 0.92387998\n\t\t 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0 1 0 0 1 0 0 1 0 -0.382682 0.92387998\n\t\t 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 0 1 0 0 1 0 -0.70710701 0.70710701\n\t\t 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 -0.70710701\n\t\t 0.70710701 0 -0.70710701 0.70710701 0 -0.92387998 0.38268101 0 -0.70710701 0.70710701\n\t\t 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701 0 -0.92387998 0.38268101 0 -0.92387998\n\t\t 0.38268101 0 -1 0 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101 0 -0.92387998\n\t\t 0.38268101 0 -1 0 0 -1 0 0 -0.92387998 -0.382682 0 -1 0 0 -1 0 0 -1 0 0 -0.92387998\n\t\t -0.382682 0 -0.92387998 -0.382682 0 -0.70710701 -0.70710701 0 -0.92387998 -0.382682\n\t\t 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682 0 -0.70710701 -0.70710701 0 -0.70710701\n\t\t -0.70710701 0 -0.38268101 -0.92387998 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701\n\t\t 0 -0.70710701 -0.70710701 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998 0 0\n\t\t -1 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998\n\t\t 0 0 -1 0 0 -1 0 0.382682 -0.92387998 0 0 -1 0 0 -1 0 0 -1 0 0.382682 -0.92387998\n\t\t 0 0.382682 -0.92387998 0 0.70710701 -0.70710701 0 0.382682 -0.92387998 0 0.382682\n\t\t -0.92387998 0 0.382682 -0.92387998 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701\n\t\t 0 0.92387998 -0.38268101 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0 0.70710701\n\t\t -0.70710701 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101 0 1 0 0 0.92387998\n\t\t -0.38268101 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101 0 1 0 0 1 0 0 0.92387998\n\t\t 0.382682 0 1 0 0 1 0 0 1 0 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.70710701\n\t\t 0.70710701 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.70710701\n\t\t 0.70710701 0 0.70710701 0.70710701 0 0.38268101 0.92387998 0 0.70710701 0.70710701\n\t\t 0 0.70710701 0.70710701 0 0.70710701 0.70710701 0 0.38268101 0.92387998 0 0.38268101\n\t\t 0.92387998 0 0 1 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0.38268101 0.92387998\n\t\t 0 0 1 0 0 1 0 0 1 0 -0.382682 0.92387998 0 -0.382682 0.92387998 0 -0.382682 0.92387998\n\t\t 0 0 1 0 0 1 0 -0.70710701 0.70710701 0 -0.382682 0.92387998 0 -0.382682 0.92387998\n\t\t 0 -0.382682 0.92387998 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701 0 -0.92387998\n\t\t 0.38268101 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701 0 -0.70710701 0.70710701\n\t\t 0;\n\tsetAttr \".n[24070:24235]\" -type \"float3\"  -0.92387998 0.38268101 0 -0.92387998\n\t\t 0.38268101 0 -1 0 0 -0.92387998 0.38268101 0 -0.92387998 0.38268101 0 -0.92387998\n\t\t 0.38268101 0 -1 0 0 -1 0 0 -0.92387998 -0.382682 0 -1 0 0 -1 0 0 -1 0 0 -0.92387998\n\t\t -0.382682 0 -0.92387998 -0.382682 0 -0.70710701 -0.70710701 0 -0.92387998 -0.382682\n\t\t 0 -0.92387998 -0.382682 0 -0.92387998 -0.382682 0 -0.70710701 -0.70710701 0 -0.70710701\n\t\t -0.70710701 0 -0.38268101 -0.92387998 0 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701\n\t\t 0 -0.70710701 -0.70710701 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998 0 0\n\t\t -1 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998 0 -0.38268101 -0.92387998\n\t\t 0 0 -1 0 0 -1 0 0.382682 -0.92387998 0 0 -1 0 0 -1 0 0 -1 0 0.382682 -0.92387998\n\t\t 0 0.382682 -0.92387998 0 0.70710701 -0.70710701 0 0.382682 -0.92387998 0 0.382682\n\t\t -0.92387998 0 0.382682 -0.92387998 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701\n\t\t 0 0.92387998 -0.38268101 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0 0.70710701\n\t\t -0.70710701 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101 0 1 0 0 0.92387998\n\t\t -0.38268101 0 0.92387998 -0.38268101 0 0.92387998 -0.38268101 0 1 0 0 1 0 0 0.92387998\n\t\t 0.382682 0 1 0 0 1 0 0 1 0 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.70710701\n\t\t 0.70710701 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.92387998 0.382682 0 0.70710701\n\t\t 0.70710701 0 0.70710701 0.70710701 0 0.38268101 0.92387998 0 0.70710701 0.70710701\n\t\t 0 0.70710701 0.70710701 0 0.70710701 0.70710701 0 0.38268101 0.92387998 0 0.38268101\n\t\t 0.92387998 0 0 1 0 0.38268101 0.92387998 0 0.38268101 0.92387998 0 0.38268101 0.92387998\n\t\t 0 0 1 0 0 1 0 0 0.510095 0.86011797 0 0.510095 0.86011797 -0.195445 0.471827 0.85975599\n\t\t -0.195445 0.471827 0.85975599 -0.195416 0.47183001 0.859761 0 0.510095 0.86011797\n\t\t -0.195416 0.47183001 0.859761 -0.195445 0.471827 0.85975599 -0.360679 0.360679 0.860129\n\t\t -0.360679 0.360679 0.860129 -0.360679 0.360679 0.860129 -0.195416 0.47183001 0.859761\n\t\t -0.360679 0.360679 0.860129 -0.360679 0.360679 0.860129 -0.471827 0.195445 0.85975599\n\t\t -0.471827 0.195445 0.85975599 -0.47183001 0.19541501 0.859761 -0.360679 0.360679\n\t\t 0.860129 -0.47183001 0.19541501 0.859761 -0.471827 0.195445 0.85975599 -0.51007301\n\t\t 0 0.86013103 -0.51007301 0 0.86013103 -0.51007301 0 0.86013103 -0.47183001 0.19541501\n\t\t 0.859761 -0.51007301 0 0.86013103 -0.51007301 0 0.86013103 -0.471827 -0.195445 0.85975599\n\t\t -0.471827 -0.195445 0.85975599 -0.47183001 -0.195416 0.859761 -0.51007301 0 0.86013103\n\t\t -0.47183001 -0.195416 0.859761 -0.471827 -0.195445 0.85975599 -0.36067799 -0.360679\n\t\t 0.860129 -0.36067799 -0.360679 0.860129 -0.36067799 -0.360679 0.860129 -0.47183001\n\t\t -0.195416 0.859761 -0.36067799 -0.360679 0.860129 -0.36067799 -0.360679 0.860129\n\t\t -0.19541299 -0.471793 0.85978198 -0.19541299 -0.471793 0.85978198 -0.19541299 -0.471793\n\t\t 0.85978198 -0.36067799 -0.360679 0.860129 -0.19541299 -0.471793 0.85978198 -0.19541299\n\t\t -0.471793 0.85978198 0 -0.51007301 0.86013103 0 -0.51007301 0.86013103 0 -0.51007301\n\t\t 0.86013103 -0.19541299 -0.471793 0.85978198 0 -0.51007301 0.86013103 0 -0.51007301\n\t\t 0.86013103 0.195445 -0.471827 0.85975599 0.195445 -0.471827 0.85975599 0.195416 -0.471829\n\t\t 0.859761 0 -0.51007301 0.86013103 0.195416 -0.471829 0.859761 0.195445 -0.471827\n\t\t 0.85975599 0.36067301 -0.36064199 0.86014599 0.36067301 -0.36064199 0.86014599 0.36067301\n\t\t -0.36064199 0.86014599 0.195416 -0.471829 0.859761 0.36067301 -0.36064199 0.86014599\n\t\t 0.36067301 -0.36064199 0.86014599 0.47183001 -0.19541501 0.859761 0.47183001 -0.19541501\n\t\t 0.859761 0.471827 -0.195445 0.85975599 0.36067301 -0.36064199 0.86014599 0.471827\n\t\t -0.195445 0.85975599 0.47183001 -0.19541501 0.859761 0.51007301 0 0.86013103 0.51007301\n\t\t 0 0.86013103 0.51007301 0 0.86013103 0.471827 -0.195445 0.85975599 0.51007301 0 0.86013103\n\t\t 0.51007301 0 0.86013103 0.47180301 0.195448 0.85976899 0.47180301 0.195448 0.85976899\n\t\t 0.47180301 0.195448 0.85976899 0.51007301 0 0.86013103 0.47180301 0.195448 0.85976899\n\t\t 0.47180301 0.195448 0.85976899 0.36067799 0.360679 0.860129 0.36067799 0.360679 0.860129\n\t\t 0.36067799 0.360679 0.860129 0.47180301 0.195448 0.85976899 0.36067799 0.360679 0.860129\n\t\t 0.36067799 0.360679 0.860129;\n\tsetAttr \".n[24236:24401]\" -type \"float3\"  0.195445 0.471827 0.85975599 0.195445\n\t\t 0.471827 0.85975599 0.195445 0.471827 0.85975599 0.36067799 0.360679 0.860129 0.195445\n\t\t 0.471827 0.85975599 0.195445 0.471827 0.85975599 0 0.510095 0.86011797 0 0.510095\n\t\t 0.86011797 0 0.510095 0.86011797 0.195445 0.471827 0.85975599 -0.36066899 0.36066899\n\t\t -0.86013699 -0.36066899 0.36066899 -0.86013699 -0.195416 0.471829 -0.859761 -0.195416\n\t\t 0.471829 -0.859761 -0.195416 0.471829 -0.859761 -0.36066899 0.36066899 -0.86013699\n\t\t -0.195416 0.471829 -0.859761 -0.195416 0.471829 -0.859761 0 0.51007301 -0.86013103\n\t\t 0 0.51007301 -0.86013103 0 0.51007301 -0.86013103 -0.195416 0.471829 -0.859761 0\n\t\t 0.51007301 -0.86013103 0 0.51007301 -0.86013103 0.19541501 0.47183001 -0.859761 0.19541501\n\t\t 0.47183001 -0.859761 0.19541501 0.47183001 -0.859761 0 0.51007301 -0.86013103 0.19541501\n\t\t 0.47183001 -0.859761 0.19541501 0.47183001 -0.859761 0.36066899 0.36066899 -0.86013699\n\t\t 0.36066899 0.36066899 -0.86013699 0.36066899 0.36066899 -0.86013699 0.19541501 0.47183001\n\t\t -0.859761 0.36066899 0.36066899 -0.86013699 0.36066899 0.36066899 -0.86013699 0.471793\n\t\t 0.19541299 -0.85978198 0.471793 0.19541299 -0.85978198 0.471793 0.19541299 -0.85978198\n\t\t 0.36066899 0.36066899 -0.86013699 0.471793 0.19541299 -0.85978198 0.471793 0.19541299\n\t\t -0.85978198 0.510059 0 -0.86013901 0.510059 0 -0.86013901 0.510059 0 -0.86013901\n\t\t 0.471793 0.19541299 -0.85978198 0.510059 0 -0.86013901 0.510059 0 -0.86013901 0.47179401\n\t\t -0.19541299 -0.85978198 0.47179401 -0.19541299 -0.85978198 0.47179401 -0.19541299\n\t\t -0.85978198 0.510059 0 -0.86013901 0.47179401 -0.19541299 -0.85978198 0.47179401\n\t\t -0.19541299 -0.85978198 0.36064699 -0.36064601 -0.860156 0.36064699 -0.36064601 -0.860156\n\t\t 0.36064699 -0.36064601 -0.860156 0.47179401 -0.19541299 -0.85978198 0.36064699 -0.36064601\n\t\t -0.860156 0.36064699 -0.36064601 -0.860156 0.195419 -0.47180599 -0.85977399 0.195419\n\t\t -0.47180599 -0.85977399 0.195448 -0.47180301 -0.85976899 0.36064699 -0.36064601 -0.860156\n\t\t 0.195448 -0.47180301 -0.85976899 0.195419 -0.47180599 -0.85977399 0 -0.510059 -0.86013901\n\t\t 0 -0.510059 -0.86013901 0 -0.510059 -0.86013901 0.195448 -0.47180301 -0.85976899\n\t\t 0 -0.510059 -0.86013901 0 -0.510059 -0.86013901 -0.19541299 -0.47179401 -0.85978198\n\t\t -0.19541299 -0.47179401 -0.85978198 -0.19541299 -0.47179401 -0.85978198 0 -0.510059\n\t\t -0.86013901 -0.19541299 -0.47179401 -0.85978198 -0.19541299 -0.47179401 -0.85978198\n\t\t -0.36064199 -0.36067301 -0.86014599 -0.36064199 -0.36067301 -0.86014599 -0.36064199\n\t\t -0.36067301 -0.86014599 -0.19541299 -0.47179401 -0.85978198 -0.36064199 -0.36067301\n\t\t -0.86014599 -0.36064199 -0.36067301 -0.86014599 -0.471793 -0.19541299 -0.85978198\n\t\t -0.471793 -0.19541299 -0.85978198 -0.471793 -0.19541299 -0.85978198 -0.36064199 -0.36067301\n\t\t -0.86014599 -0.471793 -0.19541299 -0.85978198 -0.471793 -0.19541299 -0.85978198 -0.510059\n\t\t 0 -0.86013901 -0.510059 0 -0.86013901 -0.510059 0 -0.86013901 -0.471793 -0.19541299\n\t\t -0.85978198 -0.510059 0 -0.86013901 -0.510059 0 -0.86013901 -0.47179401 0.19541299\n\t\t -0.85978198 -0.47179401 0.19541299 -0.85978198 -0.47180599 0.195418 -0.85977399 -0.510059\n\t\t 0 -0.86013901 -0.47180599 0.195418 -0.85977399 -0.47179401 0.19541299 -0.85978198\n\t\t -0.36066899 0.36066899 -0.86013699 -0.36066899 0.36066899 -0.86013699 -0.36066899\n\t\t 0.36066899 -0.86013699 -0.47180599 0.195418 -0.85977399 0 0.51166099 0.85918701 0\n\t\t 0.511684 0.85917401 -0.196026 0.473295 0.85881603 -0.196026 0.473295 0.85881603 -0.196026\n\t\t 0.473295 0.85881603 0 0.51166099 0.85918701 -0.196026 0.473295 0.85881603 -0.196026\n\t\t 0.473295 0.85881603 -0.36180699 0.36180699 0.85918099 -0.36180699 0.36180699 0.85918099\n\t\t -0.36180699 0.36180699 0.85918099 -0.196026 0.473295 0.85881603 -0.36180699 0.36180699\n\t\t 0.85918099 -0.36180699 0.36180699 0.85918099 -0.473259 0.196024 0.85883701 -0.473259\n\t\t 0.196024 0.85883701 -0.473259 0.196024 0.85883701 -0.36180699 0.36180699 0.85918099\n\t\t -0.473259 0.196024 0.85883701 -0.473259 0.196024 0.85883701 -0.51162499 0 0.859209\n\t\t -0.51162499 0 0.859209 -0.51162499 0 0.859209 -0.473259 0.196024 0.85883701 -0.51162499\n\t\t 0 0.859209 -0.51162499 0 0.859209 -0.473259 -0.196024 0.85883701 -0.473259 -0.196024\n\t\t 0.85883701 -0.473259 -0.196024 0.85883701 -0.51162499 0 0.859209 -0.473259 -0.196024\n\t\t 0.85883701 -0.473259 -0.196024 0.85883701 -0.36180699 -0.36180699 0.85918099 -0.36180699\n\t\t -0.36180699 0.85918099 -0.36181101 -0.36177999 0.85918999 -0.473259 -0.196024 0.85883701\n\t\t -0.36181101 -0.36177999 0.85918999 -0.36180699 -0.36180699 0.85918099 -0.196024 -0.473259\n\t\t 0.85883701 -0.196024 -0.473259 0.85883701 -0.196024 -0.473259 0.85883701 -0.36181101\n\t\t -0.36177999 0.85918999 -0.196024 -0.473259 0.85883701 -0.196024 -0.473259 0.85883701\n\t\t 0 -0.51166099 0.85918802 0 -0.51166099 0.85918802 0 -0.51166099 0.85918802 -0.196024\n\t\t -0.473259 0.85883701 0 -0.51166099 0.85918802 0 -0.51166099 0.85918802 0.196024 -0.473259\n\t\t 0.85883701 0.196024 -0.473259 0.85883701 0.196024 -0.473259 0.85883701 0 -0.51166099\n\t\t 0.85918802 0.196024 -0.473259 0.85883701 0.196024 -0.473259 0.85883701 0.36180699\n\t\t -0.36180699 0.85918099 0.36180699 -0.36180699 0.85918099 0.36180699 -0.36180699 0.85918099\n\t\t 0.196024 -0.473259 0.85883701;\n\tsetAttr \".n[24402:24567]\" -type \"float3\"  0.36180699 -0.36180699 0.85918099 0.36180699\n\t\t -0.36180699 0.85918099 0.473259 -0.196024 0.85883701 0.473259 -0.196024 0.85883701\n\t\t 0.473259 -0.196024 0.85883701 0.36180699 -0.36180699 0.85918099 0.473259 -0.196024\n\t\t 0.85883701 0.473259 -0.196024 0.85883701 0.51162499 0 0.859209 0.51162499 0 0.859209\n\t\t 0.51162499 0 0.859209 0.473259 -0.196024 0.85883701 0.51162499 0 0.859209 0.51162499\n\t\t 0 0.859209 0.473259 0.196024 0.85883701 0.473259 0.196024 0.85883701 0.473259 0.196024\n\t\t 0.85883701 0.51162499 0 0.859209 0.473259 0.196024 0.85883701 0.473259 0.196024 0.85883701\n\t\t 0.36177501 0.36177501 0.85920799 0.36177501 0.36177501 0.85920799 0.36177501 0.36177501\n\t\t 0.85920799 0.473259 0.196024 0.85883701 0.36177501 0.36177501 0.85920799 0.36177501\n\t\t 0.36177501 0.85920799 0.196055 0.47329199 0.85881102 0.196055 0.47329199 0.85881102\n\t\t 0.196055 0.47329199 0.85881102 0.36177501 0.36177501 0.85920799 0.196055 0.47329199\n\t\t 0.85881102 0.196055 0.47329199 0.85881102 0 0.511684 0.85917401 0 0.511684 0.85917401\n\t\t 0 0.51166099 0.85918701 0.196055 0.47329199 0.85881102 -0.36180699 0.36180699 -0.85918099\n\t\t -0.36180699 0.36180699 -0.85918099 -0.196024 0.473259 -0.85883701 -0.196024 0.473259\n\t\t -0.85883701 -0.196024 0.473259 -0.85883701 -0.36180699 0.36180699 -0.85918099 -0.196024\n\t\t 0.473259 -0.85883701 -0.196024 0.473259 -0.85883701 0 0.51162499 -0.859209 0 0.51162499\n\t\t -0.859209 0 0.51162499 -0.859209 -0.196024 0.473259 -0.85883701 0 0.51162499 -0.859209\n\t\t 0 0.51162499 -0.859209 0.196026 0.473295 -0.85881603 0.196026 0.473295 -0.85881603\n\t\t 0.196026 0.473295 -0.85881603 0 0.51162499 -0.859209 0.196026 0.473295 -0.85881603\n\t\t 0.196026 0.473295 -0.85881603 0.36177501 0.36177501 -0.85920799 0.36177501 0.36177501\n\t\t -0.85920799 0.36177501 0.36177501 -0.85920799 0.196026 0.473295 -0.85881603 0.36177501\n\t\t 0.36177501 -0.85920799 0.36177501 0.36177501 -0.85920799 0.473259 0.196024 -0.85883701\n\t\t 0.473259 0.196024 -0.85883701 0.473259 0.196024 -0.85883701 0.36177501 0.36177501\n\t\t -0.85920799 0.473259 0.196024 -0.85883701 0.473259 0.196024 -0.85883701 0.511648\n\t\t 0 -0.85919499 0.511648 0 -0.85919499 0.511648 0 -0.85919499 0.473259 0.196024 -0.85883701\n\t\t 0.511648 0 -0.85919499 0.511648 0 -0.85919499 0.473259 -0.196024 -0.85883701 0.473259\n\t\t -0.196024 -0.85883701 0.473259 -0.196024 -0.85883701 0.511648 0 -0.85919499 0.473259\n\t\t -0.196024 -0.85883701 0.473259 -0.196024 -0.85883701 0.361779 -0.36174801 -0.85921699\n\t\t 0.361779 -0.36174801 -0.85921699 0.36174801 -0.361779 -0.85921699 0.473259 -0.196024\n\t\t -0.85883701 0.36174801 -0.361779 -0.85921699 0.361779 -0.36174801 -0.85921699 0.196026\n\t\t -0.473295 -0.85881603 0.196026 -0.473295 -0.85881603 0.196026 -0.473295 -0.85881603\n\t\t 0.36174801 -0.361779 -0.85921699 0.196026 -0.473295 -0.85881603 0.196026 -0.473295\n\t\t -0.85881603 0 -0.51162499 -0.859209 0 -0.51162499 -0.859209 0 -0.51162499 -0.859209\n\t\t 0.196026 -0.473295 -0.85881603 0 -0.51162499 -0.859209 0 -0.51162499 -0.859209 -0.195995\n\t\t -0.47320199 -0.85887498 -0.195995 -0.47320199 -0.85887498 -0.195995 -0.47320199 -0.85887498\n\t\t 0 -0.51162499 -0.859209 -0.195995 -0.47320199 -0.85887498 -0.195995 -0.47320199 -0.85887498\n\t\t -0.36177501 -0.36177501 -0.85920799 -0.36177501 -0.36177501 -0.85920799 -0.36177501\n\t\t -0.36177501 -0.85920799 -0.195995 -0.47320199 -0.85887498 -0.36177501 -0.36177501\n\t\t -0.85920799 -0.36177501 -0.36177501 -0.85920799 -0.473295 -0.196026 -0.85881603 -0.473295\n\t\t -0.196026 -0.85881603 -0.47329199 -0.19605599 -0.85881102 -0.36177501 -0.36177501\n\t\t -0.85920799 -0.47329199 -0.19605599 -0.85881102 -0.473295 -0.196026 -0.85881603 -0.51158899\n\t\t 0 -0.85922998 -0.51158899 0 -0.85922998 -0.51158899 0 -0.85922998 -0.47329199 -0.19605599\n\t\t -0.85881102 -0.51158899 0 -0.85922998 -0.51158899 0 -0.85922998 -0.47323501 0.196027\n\t\t -0.85884899 -0.47323501 0.196027 -0.85884899 -0.47323501 0.196027 -0.85884899 -0.51158899\n\t\t 0 -0.85922998 -0.47323501 0.196027 -0.85884899 -0.47323501 0.196027 -0.85884899 -0.36180699\n\t\t 0.36180699 -0.85918099 -0.36180699 0.36180699 -0.85918099 -0.36180699 0.36180699\n\t\t -0.85918099 -0.47323501 0.196027 -0.85884899 0.40648001 -0.027558001 -0.91324401\n\t\t 0.39953101 -0.29332301 -0.86852503 0.39782 -0.292772 -0.86949599 0.39782 -0.292772\n\t\t -0.86949599 0.40374401 -0.093359999 -0.91009599 0.40648001 -0.027558001 -0.91324401\n\t\t 0.505036 0.41884899 -0.754655 0.49664599 0.422849 -0.757985 0.50069898 0.37273201\n\t\t -0.78126299 0.50069898 0.37273201 -0.78126299 0.51684803 0.38302001 -0.76561302 0.505036\n\t\t 0.41884899 -0.754655 0.47976401 0.35262001 -0.80342102 0.50069898 0.37273201 -0.78126299\n\t\t 0.49664599 0.422849 -0.757985 0.49664599 0.422849 -0.757985 0.48208401 0.37108499\n\t\t -0.793657 0.47976401 0.35262001 -0.80342102 0.46364501 0.326554 -0.82364798 0.47976401\n\t\t 0.35262001 -0.80342102 0.48208401 0.37108499 -0.793657 0.48208401 0.37108499 -0.793657\n\t\t 0.468409 0.33482599 -0.81760901 0.46364501 0.326554 -0.82364798 0.45177501 0.26228201\n\t\t -0.85270602 0.46364501 0.326554 -0.82364798 0.468409 0.33482599 -0.81760901 0.468409\n\t\t 0.33482599 -0.81760901 0.45949101 0.27195299 -0.845523 0.45177501 0.26228201 -0.85270602\n\t\t 0.42803299 0.238509 -0.871723 0.45177501 0.26228201 -0.85270602 0.45949101 0.27195299\n\t\t -0.845523 0.45949101 0.27195299 -0.845523;\n\tsetAttr \".n[24568:24733]\" -type \"float3\"  0.43258399 0.24336299 -0.868128 0.42803299\n\t\t 0.238509 -0.871723 0.42803299 0.238509 -0.871723 0.43258399 0.24336299 -0.868128\n\t\t 0.41469401 0.241376 -0.87736398 0.41469401 0.241376 -0.87736398 0.414206 0.241101\n\t\t -0.87766898 0.42803299 0.238509 -0.871723 0.408867 0.25782701 -0.87541598 0.414206\n\t\t 0.241101 -0.87766898 0.41469401 0.241376 -0.87736398 0.41469401 0.241376 -0.87736398\n\t\t 0.407682 0.261401 -0.87490797 0.408867 0.25782701 -0.87541598 0.617073 -0.25306699\n\t\t -0.74510199 0.61880702 -0.197795 -0.76023299 0.59826797 -0.183726 -0.77994901 0.59826797\n\t\t -0.183726 -0.77994901 0.604132 -0.249404 -0.75685 0.617073 -0.25306699 -0.74510199\n\t\t 0.64001602 -0.30464199 -0.70538801 0.617073 -0.25306699 -0.74510199 0.604132 -0.249404\n\t\t -0.75685 0.604132 -0.249404 -0.75685 0.63311899 -0.30378699 -0.71195 0.64001602 -0.30464199\n\t\t -0.70538801 0.617073 -0.25306699 -0.74510199 0.64001602 -0.30464199 -0.70538801 0.66325599\n\t\t -0.34160799 -0.66588002 0.66325599 -0.34160799 -0.66588002 0.64508897 -0.304492 -0.70081699\n\t\t 0.617073 -0.25306699 -0.74510199 0.61880702 -0.197795 -0.76023299 0.617073 -0.25306699\n\t\t -0.74510199 0.64508897 -0.304492 -0.70081699 0.64508897 -0.304492 -0.70081699 0.65316498\n\t\t -0.276196 -0.70504701 0.61880702 -0.197795 -0.76023299 0.687123 -0.347895 -0.637833\n\t\t 0.64001602 -0.30464199 -0.70538801 0.63311899 -0.30378699 -0.71195 0.63311899 -0.30378699\n\t\t -0.71195 0.69275802 -0.349751 -0.63068199 0.687123 -0.347895 -0.637833 0.74848998\n\t\t -0.39452499 -0.53302199 0.687123 -0.347895 -0.637833 0.69275802 -0.349751 -0.63068199\n\t\t 0.69275802 -0.349751 -0.63068199 0.74783301 -0.39631701 -0.53261399 0.74848998 -0.39452499\n\t\t -0.53302199 0.71060401 -0.384233 -0.58941299 0.687123 -0.347895 -0.637833 0.74848998\n\t\t -0.39452499 -0.53302199 0.71060401 -0.384233 -0.58941299 0.66325599 -0.34160799 -0.66588002\n\t\t 0.64001602 -0.30464199 -0.70538801 0.64001602 -0.30464199 -0.70538801 0.687123 -0.347895\n\t\t -0.637833 0.71060401 -0.384233 -0.58941299 0.74848998 -0.39452499 -0.53302199 0.76434898\n\t\t -0.447256 -0.46446899 0.71060401 -0.384233 -0.58941299 0.66325599 -0.34160799 -0.66588002\n\t\t 0.71060401 -0.384233 -0.58941299 0.72281998 -0.38613001 -0.57309198 0.72281998 -0.38613001\n\t\t -0.57309198 0.67661297 -0.35884601 -0.64298099 0.66325599 -0.34160799 -0.66588002\n\t\t 0.64508897 -0.304492 -0.70081699 0.66325599 -0.34160799 -0.66588002 0.67661297 -0.35884601\n\t\t -0.64298099 0.67661297 -0.35884601 -0.64298099 0.662597 -0.33332801 -0.67071497 0.64508897\n\t\t -0.304492 -0.70081699 0.65316498 -0.276196 -0.70504701 0.64508897 -0.304492 -0.70081699\n\t\t 0.662597 -0.33332801 -0.67071497 0.662597 -0.33332801 -0.67071497 0.67022699 -0.302717\n\t\t -0.67761201 0.65316498 -0.276196 -0.70504701 0.78029299 -0.44656199 -0.43786401 0.72281998\n\t\t -0.38613001 -0.57309198 0.71060401 -0.384233 -0.58941299 0.71060401 -0.384233 -0.58941299\n\t\t 0.76434898 -0.447256 -0.46446899 0.78029299 -0.44656199 -0.43786401 0.80248803 -0.43693501\n\t\t -0.40632501 0.74848998 -0.39452499 -0.53302199 0.74783301 -0.39631701 -0.53261399\n\t\t 0.76434898 -0.447256 -0.46446899 0.74848998 -0.39452499 -0.53302199 0.80248803 -0.43693501\n\t\t -0.40632501 0.74783301 -0.39631701 -0.53261399 0.78130603 -0.457674 -0.42437699 0.80248803\n\t\t -0.43693501 -0.40632501 0.845038 -0.44731501 -0.29295099 0.80248803 -0.43693501 -0.40632501\n\t\t 0.78130603 -0.457674 -0.42437699 0.78130603 -0.457674 -0.42437699 0.78930902 -0.53175998\n\t\t -0.30695799 0.845038 -0.44731501 -0.29295099 0.91989499 -0.30193099 -0.25026199 0.845038\n\t\t -0.44731501 -0.29295099 0.78930902 -0.53175998 -0.30695799 0.78930902 -0.53175998\n\t\t -0.30695799 0.87590802 -0.41781101 -0.24128699 0.91989499 -0.30193099 -0.25026199\n\t\t 0.96074802 -0.200573 -0.191661 0.91989499 -0.30193099 -0.25026199 0.87590802 -0.41781101\n\t\t -0.24128699 0.87590802 -0.41781101 -0.24128699 0.954638 -0.216289 -0.204661 0.96074802\n\t\t -0.200573 -0.191661 0.91989499 -0.30193099 -0.25026199 0.96074802 -0.200573 -0.191661\n\t\t 0.97174501 -0.182318 -0.14990801 0.97174501 -0.182318 -0.14990801 0.94898897 -0.24567799\n\t\t -0.197641 0.91989499 -0.30193099 -0.25026199 0.96521503 -0.20188101 -0.166144 0.954638\n\t\t -0.216289 -0.204661 0.87590802 -0.41781101 -0.24128699 0.87590802 -0.41781101 -0.24128699\n\t\t 0.959342 -0.25004399 -0.130927 0.96521503 -0.20188101 -0.166144 0.97729099 -0.17808001\n\t\t -0.114844 0.954638 -0.216289 -0.204661 0.96521503 -0.20188101 -0.166144 0.96074802\n\t\t -0.200573 -0.191661 0.954638 -0.216289 -0.204661 0.97729099 -0.17808001 -0.114844\n\t\t 0.96521503 -0.20188101 -0.166144 0.973768 -0.18995 -0.12527999 0.97729099 -0.17808001\n\t\t -0.114844 0.94898897 -0.24567799 -0.197641 0.97174501 -0.182318 -0.14990801 0.98201102\n\t\t -0.13870899 -0.12811901 0.98201102 -0.13870899 -0.12811901 0.96262097 -0.215316 -0.164318\n\t\t 0.94898897 -0.24567799 -0.197641 0.98409498 -0.167551 -0.059023999 0.97174501 -0.182318\n\t\t -0.14990801 0.96074802 -0.200573 -0.191661 0.96074802 -0.200573 -0.191661 0.98098898\n\t\t -0.17835601 -0.076481998 0.98409498 -0.167551 -0.059023999 0.97729099 -0.17808001\n\t\t -0.114844 0.98098898 -0.17835601 -0.076481998 0.96074802 -0.200573 -0.191661 0.987481\n\t\t -0.144264 -0.063785002 0.98201102 -0.13870899 -0.12811901 0.97174501 -0.182318 -0.14990801\n\t\t 0.97174501 -0.182318 -0.14990801 0.98409498 -0.167551 -0.059023999 0.987481 -0.144264\n\t\t -0.063785002 0.94898897 -0.24567799 -0.197641 0.923208 -0.32377899 -0.207012 0.91989499\n\t\t -0.30193099 -0.25026199 0.923208 -0.32377899 -0.207012 0.88845599 -0.40020299 -0.224685\n\t\t 0.91989499 -0.30193099 -0.25026199 0.94898897 -0.24567799 -0.197641 0.96262097 -0.215316\n\t\t -0.164318 0.92988598 -0.32042 -0.180673 0.92988598 -0.32042 -0.180673 0.923208 -0.32377899\n\t\t -0.207012;\n\tsetAttr \".n[24734:24899]\" -type \"float3\"  0.94898897 -0.24567799 -0.197641 0.88845599\n\t\t -0.40020299 -0.224685 0.923208 -0.32377899 -0.207012 0.92988598 -0.32042 -0.180673\n\t\t 0.92988598 -0.32042 -0.180673 0.89992201 -0.38912001 -0.196788 0.88845599 -0.40020299\n\t\t -0.224685 0.84401703 -0.47173899 -0.25514299 0.88845599 -0.40020299 -0.224685 0.89992201\n\t\t -0.38912001 -0.196788 0.88845599 -0.40020299 -0.224685 0.84401703 -0.47173899 -0.25514299\n\t\t 0.845038 -0.44731501 -0.29295099 0.80248803 -0.43693501 -0.40632501 0.845038 -0.44731501\n\t\t -0.29295099 0.84401703 -0.47173899 -0.25514299 0.84401703 -0.47173899 -0.25514299\n\t\t 0.80635601 -0.485138 -0.338278 0.80248803 -0.43693501 -0.40632501 0.80635601 -0.485138\n\t\t -0.338278 0.84401703 -0.47173899 -0.25514299 0.86234099 -0.45436499 -0.22342899 0.89992201\n\t\t -0.38912001 -0.196788 0.86234099 -0.45436499 -0.22342899 0.84401703 -0.47173899 -0.25514299\n\t\t 0.86234099 -0.45436499 -0.22342899 0.82122099 -0.48816001 -0.29545999 0.80635601\n\t\t -0.485138 -0.338278 0.845038 -0.44731501 -0.29295099 0.91989499 -0.30193099 -0.25026199\n\t\t 0.88845599 -0.40020299 -0.224685 0.80248803 -0.43693501 -0.40632501 0.80635601 -0.485138\n\t\t -0.338278 0.76434898 -0.447256 -0.46446899 0.76434898 -0.447256 -0.46446899 0.80635601\n\t\t -0.485138 -0.338278 0.82122099 -0.48816001 -0.29545999 0.82122099 -0.48816001 -0.29545999\n\t\t 0.78029299 -0.44656199 -0.43786401 0.76434898 -0.447256 -0.46446899 0.52633399 -0.809856\n\t\t -0.259047 0.54883802 -0.79836798 -0.24776 0.53970701 -0.80064899 -0.26014799 0.53970701\n\t\t -0.80064899 -0.26014799 0.52200598 -0.81630498 -0.247299 0.52633399 -0.809856 -0.259047\n\t\t 0.50872397 -0.828686 -0.23341 0.52633399 -0.809856 -0.259047 0.52200598 -0.81630498\n\t\t -0.247299 0.52200598 -0.81630498 -0.247299 0.50430202 -0.83214098 -0.23069599 0.50872397\n\t\t -0.828686 -0.23341 0.56607401 -0.79771602 -0.20786799 0.53970701 -0.80064899 -0.26014799\n\t\t 0.54883802 -0.79836798 -0.24776 0.54883802 -0.79836798 -0.24776 0.576388 -0.80140603\n\t\t -0.159768 0.56607401 -0.79771602 -0.20786799 0.55709898 -0.82823098 -0.060610998\n\t\t 0.56607401 -0.79771602 -0.20786799 0.576388 -0.80140603 -0.159768 0.576388 -0.80140603\n\t\t -0.159768 0.55734599 -0.82997602 -0.022461999 0.55709898 -0.82823098 -0.060610998\n\t\t 0.48521501 -0.86794698 0.105991 0.55709898 -0.82823098 -0.060610998 0.55734599 -0.82997602\n\t\t -0.022461999 0.55734599 -0.82997602 -0.022461999 0.47658601 -0.87095398 0.119604\n\t\t 0.48521501 -0.86794698 0.105991 0.362349 -0.90017998 0.24161699 0.48521501 -0.86794698\n\t\t 0.105991 0.47658601 -0.87095398 0.119604 0.47658601 -0.87095398 0.119604 0.35344201\n\t\t -0.90412802 0.240063 0.362349 -0.90017998 0.24161699 0.57095402 -0.81052899 0.130592\n\t\t 0.362349 -0.90017998 0.24161699 0.35344201 -0.90412802 0.240063 0.35344201 -0.90412802\n\t\t 0.240063 0.410478 -0.87558401 0.25467899 0.57095402 -0.81052899 0.130592 0.60110903\n\t\t -0.789047 0.12677699 0.57095402 -0.81052899 0.130592 0.410478 -0.87558401 0.25467899\n\t\t 0.410478 -0.87558401 0.25467899 0.58173001 -0.78517199 0.212354 0.60110903 -0.789047\n\t\t 0.12677699 0.71772498 -0.67771399 0.159922 0.60110903 -0.789047 0.12677699 0.58173001\n\t\t -0.78517199 0.212354 0.58173001 -0.78517199 0.212354 0.80229598 -0.55206603 0.227034\n\t\t 0.71772498 -0.67771399 0.159922 0.85597998 -0.40737399 -0.318349 0.84858698 -0.41258901\n\t\t -0.331164 0.78196299 -0.61993599 -0.064914003 0.78196299 -0.61993599 -0.064914003\n\t\t 0.79484099 -0.604707 -0.05057 0.85597998 -0.40737399 -0.318349 0.829171 -0.23612501\n\t\t -0.50667602 0.84858698 -0.41258901 -0.331164 0.85597998 -0.40737399 -0.318349 0.85597998\n\t\t -0.40737399 -0.318349 0.82857698 -0.224594 -0.51285201 0.829171 -0.23612501 -0.50667602\n\t\t 0.747446 -0.231824 -0.62256098 0.829171 -0.23612501 -0.50667602 0.82857698 -0.224594\n\t\t -0.51285201 0.82857698 -0.224594 -0.51285201 0.73883802 -0.23023599 -0.63333303 0.747446\n\t\t -0.231824 -0.62256098 0.677275 -0.23414101 -0.69747901 0.747446 -0.231824 -0.62256098\n\t\t 0.73883802 -0.23023599 -0.63333303 0.73883802 -0.23023599 -0.63333303 0.67487103\n\t\t -0.23249499 -0.70035398 0.677275 -0.23414101 -0.69747901 0.65304899 -0.23429599 -0.72016102\n\t\t 0.677275 -0.23414101 -0.69747901 0.67487103 -0.23249499 -0.70035398 0.67487103 -0.23249499\n\t\t -0.70035398 0.65311599 -0.23390099 -0.72022903 0.65304899 -0.23429599 -0.72016102\n\t\t 0.65262097 -0.23399 -0.72064799 0.65304899 -0.23429599 -0.72016102 0.65311599 -0.23390099\n\t\t -0.72022903 0.76240402 -0.64710099 0.00054899999 0.79484099 -0.604707 -0.05057 0.78196299\n\t\t -0.61993599 -0.064914003 0.78196299 -0.61993599 -0.064914003 0.57095402 -0.81052899\n\t\t 0.130592 0.76240402 -0.64710099 0.00054899999 0.72681201 -0.685458 0.04349 0.76240402\n\t\t -0.64710099 0.00054899999 0.57095402 -0.81052899 0.130592 0.57095402 -0.81052899\n\t\t 0.130592 0.60110903 -0.789047 0.12677699 0.72681201 -0.685458 0.04349 0.68608099\n\t\t -0.72490102 0.061740998 0.72681201 -0.685458 0.04349 0.60110903 -0.789047 0.12677699\n\t\t 0.60110903 -0.789047 0.12677699 0.71772498 -0.67771399 0.159922 0.68608099 -0.72490102\n\t\t 0.061740998 0.40648001 -0.027558001 -0.91324401 0.40374401 -0.093359999 -0.91009599\n\t\t 0.38750401 0.196758 -0.900626 0.38750401 0.196758 -0.900626 0.38524699 0.200574 -0.90075201\n\t\t 0.40648001 -0.027558001 -0.91324401 0.40517801 0.209975 -0.889799 0.38524699 0.200574\n\t\t -0.90075201 0.38750401 0.196758 -0.900626 0.38750401 0.196758 -0.900626 0.406151\n\t\t 0.209546 -0.88945597 0.40517801 0.209975 -0.889799 -0.96899498 0.234542 0.077702999\n\t\t -0.96905202 0.234602 0.076816998 -0.97334403 0.22932 0.0038149999 -0.97334403 0.22932\n\t\t 0.0038149999 -0.97298998 0.230849 0 -0.96899498 0.234542 0.077702999 -0.96219599\n\t\t 0.253306 0.100071 -0.96905202 0.234602 0.076816998 -0.96899498 0.234542 0.077702999;\n\tsetAttr \".n[24900:25065]\" -type \"float3\"  -0.96899498 0.234542 0.077702999 -0.96073502\n\t\t 0.25733501 0.103764 -0.96219599 0.253306 0.100071 -0.89603698 0.41450799 0.15906499\n\t\t -0.89986098 0.411522 0.14456999 -0.96219599 0.253306 0.100071 -0.96219599 0.253306\n\t\t 0.100071 -0.96073502 0.25733501 0.103764 -0.89603698 0.41450799 0.15906499 -0.78385401\n\t\t 0.57250899 0.24043 -0.89986098 0.411522 0.14456999 -0.89603698 0.41450799 0.15906499\n\t\t -0.89603698 0.41450799 0.15906499 -0.75895703 0.60004199 0.25285301 -0.78385401 0.57250899\n\t\t 0.24043 -0.78385401 0.57250899 0.24043 -0.75895703 0.60004199 0.25285301 -0.78056002\n\t\t 0.46523499 0.417472 -0.78056002 0.46523499 0.417472 -0.79188198 0.434807 0.42879501\n\t\t -0.78385401 0.57250899 0.24043 -0.79188198 0.434807 0.42879501 -0.78056002 0.46523499\n\t\t 0.417472 -0.74317402 0.323778 0.58554202 -0.74317402 0.323778 0.58554202 -0.73792797\n\t\t 0.31416601 0.59729499 -0.79188198 0.434807 0.42879501 -0.73792797 0.31416601 0.59729499\n\t\t -0.74317402 0.323778 0.58554202 -0.67600101 0.310655 0.66821897 -0.67600101 0.310655\n\t\t 0.66821897 -0.66811901 0.31174999 0.675596 -0.73792797 0.31416601 0.59729499 -0.66811901\n\t\t 0.31174999 0.675596 -0.67600101 0.310655 0.66821897 -0.61962497 0.32887101 0.712677\n\t\t -0.61962497 0.32887101 0.712677 -0.616494 0.32988501 0.71491998 -0.66811901 0.31174999\n\t\t 0.675596 -0.60181999 0.33461899 0.72514999 -0.616494 0.32988501 0.71491998 -0.61962497\n\t\t 0.32887101 0.712677 -0.61962497 0.32887101 0.712677 -0.60181999 0.33461899 0.72514999\n\t\t -0.60181999 0.33461899 0.72514999 -0.60183901 0.334613 0.725137 -0.60181999 0.33461899\n\t\t 0.72514999 -0.60181999 0.33461899 0.72514999 -0.60181999 0.33461899 0.72514999 -0.60183901\n\t\t 0.334613 0.725137 -0.60183901 0.334613 0.725137 2.9999999e-05 1 0 0.001709 0.99999797\n\t\t 0.001282 0.00122 0.99999702 0.001953 -0.039980002 0.99898499 0.020753 0.00122 0.99999702\n\t\t 0.001953 0.001709 0.99999797 0.001282 -0.039980002 0.99898499 0.020753 0.001709 0.99999797\n\t\t 0.001282 0.0037229999 0.99999201 0.001465 -0.039980002 0.99898499 0.020753 0.0037229999\n\t\t 0.99999201 0.001465 -0.060825001 0.99749601 0.036074001 -0.047366001 0.99861401 0.022949999\n\t\t -0.039980002 0.99898499 0.020753 -0.060825001 0.99749601 0.036074001 -0.060825001\n\t\t 0.99749601 0.036074001 -0.048831001 0.99854702 0.022798 -0.047366001 0.99861401 0.022949999\n\t\t -0.047366001 0.99861401 0.022949999 -0.048831001 0.99854702 0.022798 -0.024475999\n\t\t 0.99942601 0.023437999 -0.024475999 0.99942601 0.023437999 -0.021822 0.99948102 0.023714\n\t\t -0.047366001 0.99861401 0.022949999 -0.021822 0.99948102 0.023714 -0.024475999 0.99942601\n\t\t 0.023437999 -0.023592001 0.99944597 0.023468999 0.71772498 -0.67771399 0.159922 0.80229598\n\t\t -0.55206603 0.227034 0.82752401 -0.476585 0.296767 0.543006 -0.460877 0.70195198\n\t\t 0.54627198 -0.45166001 0.705401 0.51935101 -0.52960497 0.67066598 0.544487 -0.388078\n\t\t 0.74359202 0.54627198 -0.45166001 0.705401 0.543006 -0.460877 0.70195198 0.543006\n\t\t -0.460877 0.70195198 0.54366499 -0.38823199 0.74411303 0.544487 -0.388078 0.74359202\n\t\t -0.032747 -0.79021698 -0.61195099 -0.030397 -0.78984302 -0.61255598 0.016786 -0.64505202\n\t\t -0.76395398 0.016786 -0.64505202 -0.76395398 0.304984 -0.67305201 -0.67378497 -0.032747\n\t\t -0.79021698 -0.61195099 -0.281174 -0.95418501 -0.102331 -0.281174 -0.95418501 -0.102331\n\t\t -0.281174 -0.95418501 -0.102331 -0.281174 -0.95418501 -0.102331 -0.281174 -0.95418501\n\t\t -0.102331 -0.281174 -0.95418501 -0.102331 -0.433983 -0.787853 0.43697399 -0.43239999\n\t\t -0.78865302 0.43709999 -0.44268101 -0.61526799 0.65228802 -0.44268101 -0.61526799\n\t\t 0.65228802 -0.49416599 -0.65869498 0.56738102 -0.433983 -0.787853 0.43697399 0.546175\n\t\t -0.60190302 -0.58258498 0.61738199 -0.69148302 -0.37508601 0.61917102 -0.69147098\n\t\t -0.37215 0.61917102 -0.69147098 -0.37215 0.304984 -0.67305201 -0.67378497 0.546175\n\t\t -0.60190302 -0.58258498 0.234661 -0.69156098 0.68313801 0.23487499 -0.69028002 0.68435901\n\t\t 0.234603 -0.69187403 0.682841 0.234603 -0.69187403 0.682841 0.23432399 -0.693542\n\t\t 0.681243 0.234661 -0.69156098 0.68313801 -0.52108198 -0.233868 0.82084 -0.54971701\n\t\t -0.38262299 0.74256998 -0.45394301 -0.38280299 0.80461001 -0.45394301 -0.38280299\n\t\t 0.80461001 -0.51186502 -0.234661 0.82639498 -0.52108198 -0.233868 0.82084 -0.45394301\n\t\t -0.38280299 0.80461001 -0.54971701 -0.38262299 0.74256998 -0.49416599 -0.65869498\n\t\t 0.56738102 -0.49416599 -0.65869498 0.56738102 -0.44268101 -0.61526799 0.65228802\n\t\t -0.45394301 -0.38280299 0.80461001 0.024812 -0.57238001 0.81961298 -0.085942999 -0.60410398\n\t\t 0.79225701 -0.45394301 -0.38280299 0.80461001 -0.45394301 -0.38280299 0.80461001\n\t\t -0.44268101 -0.61526799 0.65228802 0.024812 -0.57238001 0.81961298 0.166481 -0.336472\n\t\t -0.92686099 0.099797003 -0.336656 -0.936324 0.090426996 -0.16922601 -0.98141998 0.090426996\n\t\t -0.16922601 -0.98141998 0.48040599 -0.457486 -0.74827498 0.166481 -0.336472 -0.92686099\n\t\t 0.016786 -0.64505202 -0.76395398 0.099797003 -0.336656 -0.936324 0.166481 -0.336472\n\t\t -0.92686099 0.166481 -0.336472 -0.92686099 0.304984 -0.67305201 -0.67378497 0.016786\n\t\t -0.64505202 -0.76395398 0.304984 -0.67305201 -0.67378497 0.166481 -0.336472 -0.92686099\n\t\t 0.48040599 -0.457486 -0.74827498 0.48040599 -0.457486 -0.74827498 0.546175 -0.60190302\n\t\t -0.58258498 0.304984 -0.67305201 -0.67378497 0.51388001 -0.837228 0.187021 0.51388001\n\t\t -0.837228 0.187021 0.51388001 -0.837228 0.187021 0.51388001 -0.837228 0.187021 0.51388001\n\t\t -0.837228 0.187021 0.51388001 -0.837228 0.187021 0.77228701 0.63525701 -0.0046080002\n\t\t 0.87328303 0.48666301 0.023164 0.92652899 0.272109 -0.25980899 0.92652899 0.272109\n\t\t -0.25980899;\n\tsetAttr \".n[25066:25231]\" -type \"float3\"  0.82545102 0.43505099 -0.35966799 0.77228701\n\t\t 0.63525701 -0.0046080002 0.81883001 0.50683302 0.26951501 0.87328303 0.48666301 0.023164\n\t\t 0.77228701 0.63525701 -0.0046080002 0.77228701 0.63525701 -0.0046080002 0.718485\n\t\t 0.65588999 0.231489 0.81883001 0.50683302 0.26951501 0.541161 0.27207601 0.79568797\n\t\t 0.54528898 0.444087 0.71094799 0.44008899 0.57239097 0.69187403 0.44008899 0.57239097\n\t\t 0.69187403 0.403523 0.429037 0.80814397 0.541161 0.27207601 0.79568797 0.82033098\n\t\t 0.096472003 -0.56369299 0.82545102 0.43505099 -0.35966799 0.92652899 0.272109 -0.25980899\n\t\t 0.92652899 0.272109 -0.25980899 0.87503499 -0.0056150001 -0.48402801 0.82033098 0.096472003\n\t\t -0.56369299 0.339284 -0.016023001 0.94054699 0.541161 0.27207601 0.79568797 0.403523\n\t\t 0.429037 0.80814397 0.403523 0.429037 0.80814397 0.26948601 0.089941002 0.95879501\n\t\t 0.339284 -0.016023001 0.94054699 -0.446652 -0.69697303 0.56100899 -0.085942999 -0.60410398\n\t\t 0.79225701 -0.308579 -0.58764702 0.74796402 -0.308579 -0.58764702 0.74796402 -0.42873299\n\t\t -0.73026299 0.53188801 -0.446652 -0.69697303 0.56100899 -0.42873299 -0.73026299 0.53188801\n\t\t -0.308579 -0.58764702 0.74796402 -0.37218401 -0.62921798 0.68232203 -0.37218401 -0.62921798\n\t\t 0.68232203 -0.399497 -0.56118798 0.72489297 -0.42873299 -0.73026299 0.53188801 0.93838799\n\t\t -0.25367099 0.234689 0.96478301 -0.19376799 0.177898 0.96157098 -0.205089 0.18253601\n\t\t 0.96157098 -0.205089 0.18253601 0.93894899 -0.274396 0.20756 0.93838799 -0.25367099\n\t\t 0.234689 0.94490701 -0.059817001 0.32182601 0.96157098 -0.205089 0.18253601 0.96478301\n\t\t -0.19376799 0.177898 0.96478301 -0.19376799 0.177898 0.95716202 -0.080356002 0.27817899\n\t\t 0.94490701 -0.059817001 0.32182601 0.93035197 -0.058382999 0.36199 0.94490701 -0.059817001\n\t\t 0.32182601 0.95716202 -0.080356002 0.27817899 0.95716202 -0.080356002 0.27817899\n\t\t 0.90096402 -0.094182998 0.423549 0.93035197 -0.058382999 0.36199 0.85266 -0.21147101\n\t\t 0.47775599 0.93035197 -0.058382999 0.36199 0.90096402 -0.094182998 0.423549 0.90096402\n\t\t -0.094182998 0.423549 0.85315001 -0.205184 0.479619 0.85266 -0.21147101 0.47775599\n\t\t 0.85327703 -0.27048799 0.44581899 0.85266 -0.21147101 0.47775599 0.85315001 -0.205184\n\t\t 0.479619 0.85315001 -0.205184 0.479619 0.887766 -0.23707099 0.39454901 0.85327703\n\t\t -0.27048799 0.44581899 0.93838799 -0.25367099 0.234689 0.93894899 -0.274396 0.20756\n\t\t 0.93522799 -0.30058199 0.18708199 0.93522799 -0.30058199 0.18708199 0.92003798 -0.347036\n\t\t 0.181926 0.93838799 -0.25367099 0.234689 0.88999403 -0.401263 0.216563 0.92003798\n\t\t -0.347036 0.181926 0.93522799 -0.30058199 0.18708199 0.93522799 -0.30058199 0.18708199\n\t\t 0.85071301 -0.44493401 0.27985799 0.88999403 -0.401263 0.216563 0.821347 -0.407377\n\t\t 0.39929 0.88999403 -0.401263 0.216563 0.85071301 -0.44493401 0.27985799 0.85071301\n\t\t -0.44493401 0.27985799 0.83241802 -0.44683501 0.327748 0.821347 -0.407377 0.39929\n\t\t 0.82124501 -0.34889701 0.451473 0.821347 -0.407377 0.39929 0.83241802 -0.44683501\n\t\t 0.327748 0.83241802 -0.44683501 0.327748 0.83662301 -0.30049199 0.458002 0.82124501\n\t\t -0.34889701 0.451473 0.83662301 -0.30049199 0.458002 0.85327703 -0.27048799 0.44581899\n\t\t 0.887766 -0.23707099 0.39454901 0.887766 -0.23707099 0.39454901 0.82124501 -0.34889701\n\t\t 0.451473 0.83662301 -0.30049199 0.458002 0.86095101 -0.140328 -0.48895001 0.82033098\n\t\t 0.096472003 -0.56369299 0.87503499 -0.0056150001 -0.48402801 0.87503499 -0.0056150001\n\t\t -0.48402801 0.92001098 -0.180126 -0.34804401 0.86095101 -0.140328 -0.48895001 0.446226\n\t\t 0.83412898 -0.324209 0.49871001 0.86231297 -0.087773003 0.77228701 0.63525701 -0.0046080002\n\t\t 0.77228701 0.63525701 -0.0046080002 0.82545102 0.43505099 -0.35966799 0.446226 0.83412898\n\t\t -0.324209 0.26948601 0.089941002 0.95879501 0.36382201 -0.127784 0.92266202 0.47948301\n\t\t -0.156562 0.86347198 0.47948301 -0.156562 0.86347198 0.339284 -0.016023001 0.94054699\n\t\t 0.26948601 0.089941002 0.95879501 0.332968 0.86712199 0.37044701 0.092444003 0.617809\n\t\t 0.78087503 0.403523 0.429037 0.80814397 0.403523 0.429037 0.80814397 0.44008899 0.57239097\n\t\t 0.69187403 0.332968 0.86712199 0.37044701 0.26948601 0.089941002 0.95879501 0.403523\n\t\t 0.429037 0.80814397 0.092444003 0.617809 0.78087503 0.092444003 0.617809 0.78087503\n\t\t -0.078281 0.193336 0.97800499 0.26948601 0.089941002 0.95879501 -0.043458 -0.720667\n\t\t -0.69191802 -0.032441001 -0.74053901 -0.67123002 -0.042330001 -0.70166498 -0.71124798\n\t\t -0.042330001 -0.70166498 -0.71124798 -0.038667999 -0.68503302 -0.727485 -0.043458\n\t\t -0.720667 -0.69191802 0.135932 -0.63800198 -0.75794202 -0.042330001 -0.70166498 -0.71124798\n\t\t -0.032441001 -0.74053901 -0.67123002 -0.032441001 -0.74053901 -0.67123002 0.14759099\n\t\t -0.58532703 -0.79725099 0.135932 -0.63800198 -0.75794202 0.82033098 0.096472003 -0.56369299\n\t\t 0.86095101 -0.140328 -0.48895001 0.56188601 -0.043122999 -0.82608998 0.56188601 -0.043122999\n\t\t -0.82608998 0.56882399 0.19489799 -0.79903299 0.82033098 0.096472003 -0.56369299\n\t\t 0.26948601 0.089941002 0.95879501 -0.078281 0.193336 0.97800499 -0.102575 -0.042268999\n\t\t 0.99382699 -0.102575 -0.042268999 0.99382699 0.36382201 -0.127784 0.92266202 0.26948601\n\t\t 0.089941002 0.95879501 0.77228701 0.63525701 -0.0046080002 0.49871001 0.86231297\n\t\t -0.087773003 0.332968 0.86712199 0.37044701 0.332968 0.86712199 0.37044701 0.718485\n\t\t 0.65588999 0.231489 0.77228701 0.63525701 -0.0046080002 0.34404799 0.0091859996 -0.93890703\n\t\t 0.56882399 0.19489799 -0.79903299 0.56188601 -0.043122999 -0.82608998 0.56188601\n\t\t -0.043122999 -0.82608998 0.34404799 0.0091859996 -0.93890703 0.34404799 0.0091859996\n\t\t -0.93890703 -0.339865 0.0093689999 0.94042802 -0.102575 -0.042268999 0.99382699;\n\tsetAttr \".n[25232:25397]\" -type \"float3\"  -0.078281 0.193336 0.97800499 -0.078281\n\t\t 0.193336 0.97800499 -0.339865 0.0093689999 0.94042802 -0.339865 0.0093689999 0.94042802\n\t\t 0.343523 0.88041699 -0.32689101 0.29292101 0.94523299 -0.143988 0.49871001 0.86231297\n\t\t -0.087773003 0.49871001 0.86231297 -0.087773003 0.446226 0.83412898 -0.324209 0.343523\n\t\t 0.88041699 -0.32689101 0.49871001 0.86231297 -0.087773003 0.29292101 0.94523299 -0.143988\n\t\t 0.14573 0.95290899 0.265946 0.14573 0.95290899 0.265946 0.332968 0.86712199 0.37044701\n\t\t 0.49871001 0.86231297 -0.087773003 0.092444003 0.617809 0.78087503 0.332968 0.86712199\n\t\t 0.37044701 0.14573 0.95290899 0.265946 0.14573 0.95290899 0.265946 0.053073 0.88045102\n\t\t 0.47115701 0.092444003 0.617809 0.78087503 0.40538701 0.52306998 -0.74970597 0.63471401\n\t\t 0.37563401 -0.67530501 0.56882399 0.19489799 -0.79903299 0.56882399 0.19489799 -0.79903299\n\t\t 0.40611401 0.52544302 -0.74765098 0.40538701 0.52306998 -0.74970597 0.092444003 0.617809\n\t\t 0.78087503 -0.17389999 0.52673501 0.83205098 -0.17438699 0.52401602 0.83366501 -0.17438699\n\t\t 0.52401602 0.83366501 -0.078281 0.193336 0.97800499 0.092444003 0.617809 0.78087503\n\t\t 0.56882399 0.19489799 -0.79903299 0.63471401 0.37563401 -0.67530501 0.82545102 0.43505099\n\t\t -0.35966799 0.82545102 0.43505099 -0.35966799 0.82033098 0.096472003 -0.56369299\n\t\t 0.56882399 0.19489799 -0.79903299 -0.130744 -0.49138999 0.86106998 -0.308579 -0.58764702\n\t\t 0.74796402 -0.085942999 -0.60410398 0.79225701 -0.085942999 -0.60410398 0.79225701\n\t\t 0.024812 -0.57238001 0.81961298 -0.130744 -0.49138999 0.86106998 -0.308579 -0.58764702\n\t\t 0.74796402 -0.130744 -0.49138999 0.86106998 -0.343674 -0.52172202 0.78082901 -0.343674\n\t\t -0.52172202 0.78082901 -0.37218401 -0.62921798 0.68232203 -0.308579 -0.58764702 0.74796402\n\t\t 0.546175 -0.60190302 -0.58258498 0.48040599 -0.457486 -0.74827498 0.40172499 -0.50698602\n\t\t -0.76261503 0.40172499 -0.50698602 -0.76261503 0.384451 -0.551085 -0.74061 0.546175\n\t\t -0.60190302 -0.58258498 0.384451 -0.551085 -0.74061 0.40172499 -0.50698602 -0.76261503\n\t\t 0.135932 -0.63800198 -0.75794202 0.135932 -0.63800198 -0.75794202 0.220778 -0.53497601\n\t\t -0.81551099 0.384451 -0.551085 -0.74061 -0.39760599 -0.46239799 0.79252601 -0.399497\n\t\t -0.56118798 0.72489297 -0.37218401 -0.62921798 0.68232203 -0.37218401 -0.62921798\n\t\t 0.68232203 -0.343674 -0.52172202 0.78082901 -0.39760599 -0.46239799 0.79252601 0.19605599\n\t\t -0.48122901 -0.85438901 0.220778 -0.53497601 -0.81551099 0.135932 -0.63800198 -0.75794202\n\t\t 0.135932 -0.63800198 -0.75794202 0.14759099 -0.58532703 -0.79725099 0.19605599 -0.48122901\n\t\t -0.85438901 -0.39782 -0.292772 -0.86949599 -0.39953101 -0.29332399 -0.86852503 -0.406479\n\t\t -0.027589001 -0.913243 -0.406479 -0.027589001 -0.913243 -0.40374401 -0.093359999\n\t\t -0.91009599 -0.39782 -0.292772 -0.86949599 -0.50072801 0.37270001 -0.78126001 -0.49663401\n\t\t 0.42283899 -0.75799799 -0.505036 0.41884899 -0.754655 -0.505036 0.41884899 -0.754655\n\t\t -0.51684201 0.383046 -0.76560402 -0.50072801 0.37270001 -0.78126001 -0.49663401 0.42283899\n\t\t -0.75799799 -0.50072801 0.37270001 -0.78126001 -0.47976401 0.35262001 -0.80342102\n\t\t -0.47976401 0.35262001 -0.80342102 -0.48208401 0.37108499 -0.793657 -0.49663401 0.42283899\n\t\t -0.75799799 -0.48208401 0.37108499 -0.793657 -0.47976401 0.35262001 -0.80342102 -0.46364501\n\t\t 0.326554 -0.82364798 -0.46364501 0.326554 -0.82364798 -0.468409 0.33482599 -0.81760901\n\t\t -0.48208401 0.37108499 -0.793657 -0.468409 0.33482599 -0.81760901 -0.46364501 0.326554\n\t\t -0.82364798 -0.45177501 0.26228201 -0.85270602 -0.45177501 0.26228201 -0.85270602\n\t\t -0.45949101 0.27195299 -0.845523 -0.468409 0.33482599 -0.81760901 -0.45949101 0.27195299\n\t\t -0.845523 -0.45177501 0.26228201 -0.85270602 -0.42803299 0.238508 -0.871723 -0.42803299\n\t\t 0.238508 -0.871723 -0.43258399 0.24336199 -0.868128 -0.45949101 0.27195299 -0.845523\n\t\t -0.41585699 0.241347 -0.87682098 -0.43258399 0.24336199 -0.868128 -0.42803299 0.238508\n\t\t -0.871723 -0.42803299 0.238508 -0.871723 -0.414855 0.244341 -0.87646598 -0.41585699\n\t\t 0.241347 -0.87682098 -0.406822 0.256392 -0.87678897 -0.41585699 0.241347 -0.87682098\n\t\t -0.414855 0.244341 -0.87646598 -0.414855 0.244341 -0.87646598 -0.40563199 0.25785699\n\t\t -0.87691098 -0.406822 0.256392 -0.87678897 -0.61707801 -0.253039 -0.74510801 -0.60413098\n\t\t -0.249405 -0.75685 -0.59826797 -0.183726 -0.77994901 -0.59826797 -0.183726 -0.77994901\n\t\t -0.618788 -0.197799 -0.76024801 -0.61707801 -0.253039 -0.74510801 -0.60413098 -0.249405\n\t\t -0.75685 -0.61707801 -0.253039 -0.74510801 -0.64001602 -0.30464199 -0.70538801 -0.64001602\n\t\t -0.30464199 -0.70538801 -0.63311899 -0.30378801 -0.71195 -0.60413098 -0.249405 -0.75685\n\t\t -0.66325498 -0.34160799 -0.66588002 -0.64001602 -0.30464199 -0.70538801 -0.61707801\n\t\t -0.253039 -0.74510801 -0.61707801 -0.253039 -0.74510801 -0.64697701 -0.30217099 -0.70008099\n\t\t -0.66325498 -0.34160799 -0.66588002 -0.64697701 -0.30217099 -0.70008099 -0.61707801\n\t\t -0.253039 -0.74510801 -0.618788 -0.197799 -0.76024801 -0.618788 -0.197799 -0.76024801\n\t\t -0.64196301 -0.26542199 -0.719329 -0.64697701 -0.30217099 -0.70008099 -0.63311899\n\t\t -0.30378801 -0.71195 -0.64001602 -0.30464199 -0.70538801 -0.687123 -0.347895 -0.637833\n\t\t -0.687123 -0.347895 -0.637833 -0.69275802 -0.34975201 -0.63068199 -0.63311899 -0.30378801\n\t\t -0.71195 -0.69275802 -0.34975201 -0.63068199 -0.687123 -0.347895 -0.637833 -0.74849898\n\t\t -0.39449999 -0.53302902 -0.74849898 -0.39449999 -0.53302902 -0.74783301 -0.39631799\n\t\t -0.53261399 -0.69275802 -0.34975201 -0.63068199 -0.74849898 -0.39449999 -0.53302902\n\t\t -0.687123 -0.347895 -0.637833 -0.710603 -0.38423401 -0.58941299 -0.710603 -0.38423401\n\t\t -0.58941299 -0.687123 -0.347895 -0.637833 -0.64001602 -0.30464199 -0.70538801;\n\tsetAttr \".n[25398:25563]\" -type \"float3\"  -0.64001602 -0.30464199 -0.70538801 -0.66325498\n\t\t -0.34160799 -0.66588002 -0.710603 -0.38423401 -0.58941299 -0.710603 -0.38423401 -0.58941299\n\t\t -0.76436001 -0.44723201 -0.46447599 -0.74849898 -0.39449999 -0.53302902 -0.72281998\n\t\t -0.38613099 -0.57309198 -0.710603 -0.38423401 -0.58941299 -0.66325498 -0.34160799\n\t\t -0.66588002 -0.66325498 -0.34160799 -0.66588002 -0.67661297 -0.35884601 -0.64298099\n\t\t -0.72281998 -0.38613099 -0.57309198 -0.67661297 -0.35884601 -0.64298099 -0.66325498\n\t\t -0.34160799 -0.66588002 -0.64697701 -0.30217099 -0.70008099 -0.64697701 -0.30217099\n\t\t -0.70008099 -0.67053503 -0.34221101 -0.65823603 -0.67661297 -0.35884601 -0.64298099\n\t\t -0.65711802 -0.318198 -0.68333501 -0.67053503 -0.34221101 -0.65823603 -0.64697701\n\t\t -0.30217099 -0.70008099 -0.64697701 -0.30217099 -0.70008099 -0.64196301 -0.26542199\n\t\t -0.719329 -0.65711802 -0.318198 -0.68333501 -0.78029299 -0.44656199 -0.43786401 -0.76436001\n\t\t -0.44723201 -0.46447599 -0.710603 -0.38423401 -0.58941299 -0.710603 -0.38423401 -0.58941299\n\t\t -0.72281998 -0.38613099 -0.57309198 -0.78029299 -0.44656199 -0.43786401 -0.74783301\n\t\t -0.39631799 -0.53261399 -0.74849898 -0.39449999 -0.53302902 -0.80248803 -0.43693599\n\t\t -0.40632501 -0.80248803 -0.43693599 -0.40632501 -0.74849898 -0.39449999 -0.53302902\n\t\t -0.76436001 -0.44723201 -0.46447599 -0.80248803 -0.43693599 -0.40632501 -0.78130502\n\t\t -0.457674 -0.42437699 -0.74783301 -0.39631799 -0.53261399 -0.78130502 -0.457674 -0.42437699\n\t\t -0.80248803 -0.43693599 -0.40632501 -0.845038 -0.44731599 -0.29295099 -0.845038 -0.44731599\n\t\t -0.29295099 -0.78930801 -0.53175998 -0.30695799 -0.78130502 -0.457674 -0.42437699\n\t\t -0.78930801 -0.53175998 -0.30695799 -0.845038 -0.44731599 -0.29295099 -0.91989499\n\t\t -0.30193201 -0.25026199 -0.91989499 -0.30193201 -0.25026199 -0.87590802 -0.41781101\n\t\t -0.24128699 -0.78930801 -0.53175998 -0.30695799 -0.87590802 -0.41781101 -0.24128699\n\t\t -0.91989499 -0.30193201 -0.25026199 -0.96074802 -0.200573 -0.191661 -0.96074802 -0.200573\n\t\t -0.191661 -0.954638 -0.216289 -0.204661 -0.87590802 -0.41781101 -0.24128699 -0.97174501\n\t\t -0.182319 -0.14990801 -0.96074802 -0.200573 -0.191661 -0.91989499 -0.30193201 -0.25026199\n\t\t -0.91989499 -0.30193201 -0.25026199 -0.94898897 -0.24567799 -0.197641 -0.97174501\n\t\t -0.182319 -0.14990801 -0.87590802 -0.41781101 -0.24128699 -0.954638 -0.216289 -0.204661\n\t\t -0.96521503 -0.201882 -0.166144 -0.96521503 -0.201882 -0.166144 -0.95934099 -0.25004399\n\t\t -0.130927 -0.87590802 -0.41781101 -0.24128699 -0.96521503 -0.201882 -0.166144 -0.954638\n\t\t -0.216289 -0.204661 -0.97729099 -0.17808101 -0.114844 -0.97729099 -0.17808101 -0.114844\n\t\t -0.954638 -0.216289 -0.204661 -0.96074802 -0.200573 -0.191661 -0.97729099 -0.17808101\n\t\t -0.114844 -0.973768 -0.18995 -0.12527999 -0.96521503 -0.201882 -0.166144 -0.98201102\n\t\t -0.13870899 -0.12811901 -0.97174501 -0.182319 -0.14990801 -0.94898897 -0.24567799\n\t\t -0.197641 -0.94898897 -0.24567799 -0.197641 -0.96262097 -0.215317 -0.164318 -0.98201102\n\t\t -0.13870899 -0.12811901 -0.96074802 -0.200573 -0.191661 -0.97174501 -0.182319 -0.14990801\n\t\t -0.98409498 -0.167551 -0.059023999 -0.98409498 -0.167551 -0.059023999 -0.98098898\n\t\t -0.17835601 -0.076481998 -0.96074802 -0.200573 -0.191661 -0.96074802 -0.200573 -0.191661\n\t\t -0.98098898 -0.17835601 -0.076481998 -0.97729099 -0.17808101 -0.114844 -0.987481\n\t\t -0.144265 -0.063785002 -0.98409498 -0.167551 -0.059023999 -0.97174501 -0.182319 -0.14990801\n\t\t -0.97174501 -0.182319 -0.14990801 -0.98201102 -0.13870899 -0.12811901 -0.987481 -0.144265\n\t\t -0.063785002 -0.94898897 -0.24567799 -0.197641 -0.91989499 -0.30193201 -0.25026199\n\t\t -0.923208 -0.32377899 -0.207012 -0.923208 -0.32377899 -0.207012 -0.91989499 -0.30193201\n\t\t -0.25026199 -0.88845599 -0.400204 -0.224685 -0.88845599 -0.400204 -0.224685 -0.91989499\n\t\t -0.30193201 -0.25026199 -0.845038 -0.44731599 -0.29295099 -0.845038 -0.44731599 -0.29295099\n\t\t -0.84401602 -0.47174001 -0.25514299 -0.88845599 -0.400204 -0.224685 -0.84401602 -0.47174001\n\t\t -0.25514299 -0.845038 -0.44731599 -0.29295099 -0.80248803 -0.43693599 -0.40632501\n\t\t -0.80248803 -0.43693599 -0.40632501 -0.806355 -0.485138 -0.338278 -0.84401602 -0.47174001\n\t\t -0.25514299 -0.86234099 -0.45436499 -0.22342899 -0.84401602 -0.47174001 -0.25514299\n\t\t -0.806355 -0.485138 -0.338278 -0.806355 -0.485138 -0.338278 -0.82121998 -0.488161\n\t\t -0.29545999 -0.86234099 -0.45436499 -0.22342899 -0.76436001 -0.44723201 -0.46447599\n\t\t -0.806355 -0.485138 -0.338278 -0.80248803 -0.43693599 -0.40632501 -0.82121998 -0.488161\n\t\t -0.29545999 -0.806355 -0.485138 -0.338278 -0.76436001 -0.44723201 -0.46447599 -0.76436001\n\t\t -0.44723201 -0.46447599 -0.78029299 -0.44656199 -0.43786401 -0.82121998 -0.488161\n\t\t -0.29545999 -0.84401602 -0.47174001 -0.25514299 -0.86234099 -0.45436499 -0.22342899\n\t\t -0.89992201 -0.389121 -0.196788 -0.89992201 -0.389121 -0.196788 -0.88845599 -0.400204\n\t\t -0.224685 -0.84401602 -0.47174001 -0.25514299 -0.88845599 -0.400204 -0.224685 -0.89992201\n\t\t -0.389121 -0.196788 -0.92988598 -0.32042 -0.180673 -0.92988598 -0.32042 -0.180673\n\t\t -0.923208 -0.32377899 -0.207012 -0.88845599 -0.400204 -0.224685 -0.94898897 -0.24567799\n\t\t -0.197641 -0.923208 -0.32377899 -0.207012 -0.92988598 -0.32042 -0.180673 -0.92988598\n\t\t -0.32042 -0.180673 -0.96262097 -0.215317 -0.164318 -0.94898897 -0.24567799 -0.197641\n\t\t -0.52632898 -0.80984998 -0.25907499 -0.52200502 -0.81630498 -0.247299 -0.539729 -0.80063599\n\t\t -0.260144 -0.539729 -0.80063599 -0.260144 -0.548859 -0.79835498 -0.247756 -0.52632898\n\t\t -0.80984998 -0.25907499 -0.52200502 -0.81630498 -0.247299 -0.52632898 -0.80984998\n\t\t -0.25907499 -0.50872302 -0.828686 -0.23341 -0.50872302 -0.828686 -0.23341 -0.50428897\n\t\t -0.832151 -0.23069 -0.52200502 -0.81630498 -0.247299 -0.548859 -0.79835498 -0.247756\n\t\t -0.539729 -0.80063599 -0.260144 -0.56607401 -0.79771602 -0.20786799 -0.56607401 -0.79771602\n\t\t -0.20786799;\n\tsetAttr \".n[25564:25729]\" -type \"float3\"  -0.57638699 -0.80140603 -0.159768 -0.548859\n\t\t -0.79835498 -0.247756 -0.57638699 -0.80140603 -0.159768 -0.56607401 -0.79771602 -0.20786799\n\t\t -0.55709898 -0.828233 -0.060580999 -0.55709898 -0.828233 -0.060580999 -0.557311 -0.82999998\n\t\t -0.022461999 -0.57638699 -0.80140603 -0.159768 -0.557311 -0.82999998 -0.022461999\n\t\t -0.55709898 -0.828233 -0.060580999 -0.71536303 -0.69058299 -0.106542 -0.71536303\n\t\t -0.69058299 -0.106542 -0.47658601 -0.87095398 0.119604 -0.557311 -0.82999998 -0.022461999\n\t\t -0.47658601 -0.87095398 0.119604 -0.71536303 -0.69058299 -0.106542 -0.579431 -0.80988002\n\t\t 0.091403998 -0.579431 -0.80988002 0.091403998 -0.35344201 -0.90412903 0.240063 -0.47658601\n\t\t -0.87095398 0.119604 -0.35344201 -0.90412903 0.240063 -0.579431 -0.80988002 0.091403998\n\t\t -0.57095301 -0.81053001 0.130592 -0.57095301 -0.81053001 0.130592 -0.41047701 -0.87558401\n\t\t 0.25467899 -0.35344201 -0.90412903 0.240063 -0.41047701 -0.87558401 0.25467899 -0.57095301\n\t\t -0.81053001 0.130592 -0.60110903 -0.789047 0.12677699 -0.60110903 -0.789047 0.12677699\n\t\t -0.58173001 -0.785173 0.212354 -0.41047701 -0.87558401 0.25467899 -0.58173001 -0.785173\n\t\t 0.212354 -0.60110903 -0.789047 0.12677699 -0.73143399 -0.65718001 0.181989 -0.73143399\n\t\t -0.65718001 0.181989 -0.81184298 -0.52722001 0.25089899 -0.58173001 -0.785173 0.212354\n\t\t -0.79230601 -0.606628 -0.065219 -0.579431 -0.80988002 0.091403998 -0.71536303 -0.69058299\n\t\t -0.106542 -0.71536303 -0.69058299 -0.106542 -0.87190199 -0.37959799 -0.309342 -0.79230601\n\t\t -0.606628 -0.065219 -0.87190199 -0.37959799 -0.309342 -0.71536303 -0.69058299 -0.106542\n\t\t -0.82916999 -0.23612601 -0.50667602 -0.82916999 -0.23612601 -0.50667602 -0.82857698\n\t\t -0.224594 -0.51285201 -0.87190199 -0.37959799 -0.309342 -0.82857698 -0.224594 -0.51285201\n\t\t -0.82916999 -0.23612601 -0.50667602 -0.74746001 -0.231829 -0.62254298 -0.74746001\n\t\t -0.231829 -0.62254298 -0.738837 -0.23023701 -0.63333303 -0.82857698 -0.224594 -0.51285201\n\t\t -0.738837 -0.23023701 -0.63333303 -0.74746001 -0.231829 -0.62254298 -0.67728502 -0.234175\n\t\t -0.69745803 -0.67728502 -0.234175 -0.69745803 -0.67487001 -0.23249499 -0.70035398\n\t\t -0.738837 -0.23023701 -0.63333303 -0.67487001 -0.23249499 -0.70035398 -0.67728502\n\t\t -0.234175 -0.69745803 -0.65304899 -0.23429599 -0.72016102 -0.65304899 -0.23429599\n\t\t -0.72016102 -0.65311599 -0.23390099 -0.72022903 -0.67487001 -0.23249499 -0.70035398\n\t\t -0.65262097 -0.233991 -0.72064799 -0.65311599 -0.23390099 -0.72022903 -0.65304899\n\t\t -0.23429599 -0.72016102 -0.579431 -0.80988002 0.091403998 -0.79230601 -0.606628 -0.065219\n\t\t -0.76240301 -0.647102 0.00054899999 -0.76240301 -0.647102 0.00054899999 -0.57095301\n\t\t -0.81053001 0.130592 -0.579431 -0.80988002 0.091403998 -0.57095301 -0.81053001 0.130592\n\t\t -0.76240301 -0.647102 0.00054899999 -0.72681201 -0.68545902 0.04349 -0.72681201 -0.68545902\n\t\t 0.04349 -0.60110903 -0.789047 0.12677699 -0.57095301 -0.81053001 0.130592 -0.60110903\n\t\t -0.789047 0.12677699 -0.72681201 -0.68545902 0.04349 -0.68607998 -0.72490102 0.061740998\n\t\t -0.68607998 -0.72490102 0.061740998 -0.73143399 -0.65718001 0.181989 -0.60110903\n\t\t -0.789047 0.12677699 -0.406479 -0.027589001 -0.913243 -0.38524801 0.200574 -0.90075201\n\t\t -0.38753 0.19675601 -0.90061498 -0.38753 0.19675601 -0.90061498 -0.40374401 -0.093359999\n\t\t -0.91009599 -0.406479 -0.027589001 -0.913243 -0.38753 0.19675601 -0.90061498 -0.38524801\n\t\t 0.200574 -0.90075201 -0.40517801 0.209975 -0.889799 -0.40517801 0.209975 -0.889799\n\t\t -0.40615201 0.209546 -0.88945597 -0.38753 0.19675601 -0.90061498 0.97438598 0.224866\n\t\t 0.002625 0.97424102 0.225508 0 0.96850902 0.237069 0.076082997 0.96850902 0.237069\n\t\t 0.076082997 0.96844798 0.2361 0.079778001 0.97438598 0.224866 0.002625 0.96844798\n\t\t 0.2361 0.079778001 0.96850902 0.237069 0.076082997 0.96219599 0.253306 0.100071 0.96219599\n\t\t 0.253306 0.100071 0.96073502 0.25733599 0.103764 0.96844798 0.2361 0.079778001 0.96219599\n\t\t 0.253306 0.100071 0.89986098 0.411522 0.14456999 0.89603603 0.414509 0.15906499 0.89603603\n\t\t 0.414509 0.15906499 0.96073502 0.25733599 0.103764 0.96219599 0.253306 0.100071 0.79048699\n\t\t 0.56952602 0.225326 0.78443903 0.56390703 0.258194 0.89603603 0.414509 0.15906499\n\t\t 0.89603603 0.414509 0.15906499 0.89986098 0.411522 0.14456999 0.79048699 0.56952602\n\t\t 0.225326 0.78443903 0.56390703 0.258194 0.79048699 0.56952602 0.225326 0.78175902\n\t\t 0.464692 0.41582999 0.78175902 0.464692 0.41582999 0.778741 0.44668701 0.44049099\n\t\t 0.78443903 0.56390703 0.258194 0.778741 0.44668701 0.44049099 0.78175902 0.464692\n\t\t 0.41582999 0.731098 0.329521 0.597422 0.731098 0.329521 0.597422 0.73120898 0.31767401\n\t\t 0.60366899 0.778741 0.44668701 0.44049099 0.73120898 0.31767401 0.60366899 0.731098\n\t\t 0.329521 0.597422 0.66641301 0.31419301 0.676148 0.66641301 0.31419301 0.676148 0.67327899\n\t\t 0.30979899 0.67135698 0.73120898 0.31767401 0.60366899 0.67327899 0.30979899 0.67135698\n\t\t 0.66641301 0.31419301 0.676148 0.61648798 0.32991299 0.71491301 0.61648798 0.32991299\n\t\t 0.71491301 0.61963803 0.328879 0.71266198 0.67327899 0.30979899 0.67135698 0.61963803\n\t\t 0.328879 0.71266198 0.61648798 0.32991299 0.71491301 0.60181999 0.33461899 0.72514999\n\t\t 0.60181999 0.33461899 0.72514999 0.60181999 0.33461899 0.72514999 0.61963803 0.328879\n\t\t 0.71266198 0.60181999 0.33461899 0.72514999 0.60181999 0.33461899 0.72514999 0.60183901\n\t\t 0.334613 0.725137 0.60183901 0.334613 0.725137 0.60183901 0.334613 0.725137 0.60181999\n\t\t 0.33461899 0.72514999 -0.001221 0.99999702 0.001953 -0.001923 0.99999601 0.002228\n\t\t -3.1e-05 1 0 0.040224001 0.99898303 0.020386999 -0.001923 0.99999601 0.002228;\n\tsetAttr \".n[25730:25895]\" -type \"float3\"  -0.001221 0.99999702 0.001953 0.040224001\n\t\t 0.99898303 0.020386999 0.046725001 0.99859101 0.025148001 -0.001923 0.99999601 0.002228\n\t\t 0.046725001 0.99859101 0.025148001 -0.035188999 0.99938101 0 -0.001923 0.99999601\n\t\t 0.002228 0.046725001 0.99859101 0.025148001 0.040224001 0.99898303 0.020386999 0.047364999\n\t\t 0.99861401 0.022949999 0.047364999 0.99861401 0.022949999 0.048829999 0.99854702\n\t\t 0.022798 0.046725001 0.99859101 0.025148001 0.024475999 0.99942601 0.023437999 0.048829999\n\t\t 0.99854702 0.022798 0.047364999 0.99861401 0.022949999 0.047364999 0.99861401 0.022949999\n\t\t 0.021821 0.99948102 0.023714 0.024475999 0.99942601 0.023437999 0.023591001 0.99944597\n\t\t 0.023468999 0.024475999 0.99942601 0.023437999 0.021821 0.99948102 0.023714 -0.53543198\n\t\t -0.485075 0.69138598 -0.524441 -0.51507199 0.677984 -0.48260301 -0.61542398 0.62317598\n\t\t -0.81184298 -0.52722001 0.25089899 -0.73143399 -0.65718001 0.181989 -0.84120798 -0.411219\n\t\t 0.351096 -0.524441 -0.51507199 0.677984 -0.53543198 -0.485075 0.69138598 -0.544487\n\t\t -0.388078 0.74359202 -0.544487 -0.388078 0.74359202 -0.54366499 -0.38823199 0.74411303\n\t\t -0.524441 -0.51507199 0.677984 -0.30552599 -0.67260897 -0.67398202 -0.016083 -0.64410001\n\t\t -0.764772 0.033114001 -0.79075301 -0.61123902 0.033114001 -0.79075301 -0.61123902\n\t\t 0.031831998 -0.79154003 -0.61028802 -0.30552599 -0.67260897 -0.67398202 0.281174\n\t\t -0.95418501 -0.102331 0.281174 -0.95418501 -0.102331 0.281174 -0.95418501 -0.102331\n\t\t 0.281174 -0.95418501 -0.102331 0.281174 -0.95418501 -0.102331 0.281174 -0.95418501\n\t\t -0.102331 0.43417501 -0.787319 0.437745 0.43282199 -0.786964 0.43971899 0.49322501\n\t\t -0.65970898 0.56702101 0.49322501 -0.65970898 0.56702101 0.44299001 -0.61588198 0.65149802\n\t\t 0.43417501 -0.787319 0.437745 -0.546175 -0.60190398 -0.58258498 -0.30552599 -0.67260897\n\t\t -0.67398202 -0.61917102 -0.69147098 -0.37215 -0.61917102 -0.69147098 -0.37215 -0.61738199\n\t\t -0.69148397 -0.37508601 -0.546175 -0.60190398 -0.58258498 -0.234661 -0.69156098 0.68313801\n\t\t -0.23432399 -0.693542 0.681243 -0.234602 -0.69187403 0.682841 -0.234602 -0.69187403\n\t\t 0.682841 -0.234874 -0.69028002 0.68435901 -0.234661 -0.69156098 0.68313801 0.52108198\n\t\t -0.233867 0.82084 0.51186502 -0.234661 0.82639498 0.45381799 -0.38270801 0.804726\n\t\t 0.45381799 -0.38270801 0.804726 0.54995197 -0.38237199 0.74252599 0.52108198 -0.233867\n\t\t 0.82084 0.54995197 -0.38237199 0.74252599 0.45381799 -0.38270801 0.804726 0.44299001\n\t\t -0.61588198 0.65149802 0.44299001 -0.61588198 0.65149802 0.49322501 -0.65970898 0.56702101\n\t\t 0.54995197 -0.38237199 0.74252599 -0.024812 -0.57238001 0.81961298 0.44299001 -0.61588198\n\t\t 0.65149802 0.45381799 -0.38270801 0.804726 0.45381799 -0.38270801 0.804726 0.085942999\n\t\t -0.60410398 0.79225802 -0.024812 -0.57238001 0.81961298 -0.090426996 -0.16922601\n\t\t -0.98141998 -0.099797003 -0.336656 -0.936324 -0.166481 -0.336472 -0.92686099 -0.166481\n\t\t -0.336472 -0.92686099 -0.48040599 -0.45748699 -0.74827498 -0.090426996 -0.16922601\n\t\t -0.98141998 -0.166481 -0.336472 -0.92686099 -0.099797003 -0.336656 -0.936324 -0.016083\n\t\t -0.64410001 -0.764772 -0.016083 -0.64410001 -0.764772 -0.30552599 -0.67260897 -0.67398202\n\t\t -0.166481 -0.336472 -0.92686099 -0.48040599 -0.45748699 -0.74827498 -0.166481 -0.336472\n\t\t -0.92686099 -0.30552599 -0.67260897 -0.67398202 -0.30552599 -0.67260897 -0.67398202\n\t\t -0.546175 -0.60190398 -0.58258498 -0.48040599 -0.45748699 -0.74827498 -0.51387602\n\t\t -0.83722401 0.18705 -0.51387602 -0.83722401 0.18705 -0.513879 -0.83722901 0.187021\n\t\t -0.513879 -0.83722901 0.187021 -0.513879 -0.83722901 0.187021 -0.51387602 -0.83722401\n\t\t 0.18705 -0.772273 0.63527399 -0.0046080002 -0.82545102 0.43505001 -0.35966799 -0.92652899\n\t\t 0.27210799 -0.25980899 -0.92652899 0.27210799 -0.25980899 -0.87326998 0.48668599\n\t\t 0.023164 -0.772273 0.63527399 -0.0046080002 -0.772273 0.63527399 -0.0046080002 -0.87326998\n\t\t 0.48668599 0.023164 -0.81883699 0.506836 0.26948699 -0.81883699 0.506836 0.26948699\n\t\t -0.718485 0.65588999 0.231489 -0.772273 0.63527399 -0.0046080002 -0.44009 0.57239097\n\t\t 0.69187403 -0.54528898 0.444087 0.71094799 -0.541161 0.27207601 0.79568797 -0.541161\n\t\t 0.27207601 0.79568797 -0.403523 0.429037 0.80814397 -0.44009 0.57239097 0.69187403\n\t\t -0.92652899 0.27210799 -0.25980899 -0.82545102 0.43505001 -0.35966799 -0.82033098\n\t\t 0.096472003 -0.56369299 -0.82033098 0.096472003 -0.56369299 -0.87503499 -0.0056159999\n\t\t -0.48402801 -0.92652899 0.27210799 -0.25980899 -0.403523 0.429037 0.80814397 -0.541161\n\t\t 0.27207601 0.79568797 -0.339284 -0.016023001 0.94054699 -0.339284 -0.016023001 0.94054699\n\t\t -0.26948601 0.089910001 0.95879799 -0.403523 0.429037 0.80814397 0.446652 -0.69697303\n\t\t 0.56100899 0.42873299 -0.73026198 0.53188801 0.308552 -0.58765203 0.747971 0.308552\n\t\t -0.58765203 0.747971 0.085942999 -0.60410398 0.79225802 0.446652 -0.69697303 0.56100899\n\t\t 0.37218401 -0.62921798 0.68232203 0.308552 -0.58765203 0.747971 0.42873299 -0.73026198\n\t\t 0.53188801 0.42873299 -0.73026198 0.53188801 0.399497 -0.56118798 0.72489297 0.37218401\n\t\t -0.62921798 0.68232203 -0.93830401 -0.25400901 0.23466 -0.93935299 -0.27455199 0.20551699\n\t\t -0.96156597 -0.205089 0.182565 -0.96156597 -0.205089 0.182565 -0.96478301 -0.19376899\n\t\t 0.177898 -0.93830401 -0.25400901 0.23466 -0.96478301 -0.19376899 0.177898 -0.96156597\n\t\t -0.205089 0.182565 -0.94489998 -0.059787001 0.321854 -0.94489998 -0.059787001 0.321854\n\t\t -0.95716202 -0.080356002 0.27817899 -0.96478301 -0.19376899 0.177898 -0.95716202\n\t\t -0.080356002 0.27817899 -0.94489998 -0.059787001 0.321854 -0.93034202 -0.058382999\n\t\t 0.36201701 -0.93034202 -0.058382999 0.36201701 -0.90096098 -0.094213001 0.423547\n\t\t -0.95716202 -0.080356002 0.27817899;\n\tsetAttr \".n[25896:26061]\" -type \"float3\"  -0.90096098 -0.094213001 0.423547 -0.93034202\n\t\t -0.058382999 0.36201701 -0.85264802 -0.211468 0.477779 -0.85264802 -0.211468 0.477779\n\t\t -0.85315001 -0.205185 0.479619 -0.90096098 -0.094213001 0.423547 -0.85315001 -0.205185\n\t\t 0.479619 -0.85264802 -0.211468 0.477779 -0.85328799 -0.27049199 0.445795 -0.85328799\n\t\t -0.27049199 0.445795 -0.88777602 -0.237074 0.39452299 -0.85315001 -0.205185 0.479619\n\t\t -0.93935299 -0.27455199 0.20551699 -0.93830401 -0.25400901 0.23466 -0.92003 -0.346912\n\t\t 0.182199 -0.92003 -0.346912 0.182199 -0.936059 -0.29848 0.18629 -0.93935299 -0.27455199\n\t\t 0.20551699 -0.936059 -0.29848 0.18629 -0.92003 -0.346912 0.182199 -0.89000398 -0.40123799\n\t\t 0.216565 -0.89000398 -0.40123799 0.216565 -0.85071301 -0.44493499 0.27985799 -0.936059\n\t\t -0.29848 0.18629 -0.85071301 -0.44493499 0.27985799 -0.89000398 -0.40123799 0.216565\n\t\t -0.821347 -0.40737799 0.39929 -0.821347 -0.40737799 0.39929 -0.83241802 -0.44683501\n\t\t 0.327748 -0.85071301 -0.44493499 0.27985799 -0.83241802 -0.44683501 0.327748 -0.821347\n\t\t -0.40737799 0.39929 -0.82124501 -0.34889701 0.451473 -0.82124501 -0.34889701 0.451473\n\t\t -0.83662301 -0.300493 0.458002 -0.83241802 -0.44683501 0.327748 -0.83662301 -0.300493\n\t\t 0.458002 -0.82124501 -0.34889701 0.451473 -0.88777602 -0.237074 0.39452299 -0.88777602\n\t\t -0.237074 0.39452299 -0.85328799 -0.27049199 0.445795 -0.83662301 -0.300493 0.458002\n\t\t -0.86094999 -0.140328 -0.48895001 -0.92001098 -0.180126 -0.34804499 -0.87503499 -0.0056159999\n\t\t -0.48402801 -0.87503499 -0.0056159999 -0.48402801 -0.82033098 0.096472003 -0.56369299\n\t\t -0.86094999 -0.140328 -0.48895001 -0.772273 0.63527399 -0.0046080002 -0.498218 0.86260998\n\t\t -0.087650001 -0.446226 0.83412898 -0.324209 -0.446226 0.83412898 -0.324209 -0.82545102\n\t\t 0.43505001 -0.35966799 -0.772273 0.63527399 -0.0046080002 -0.26948601 0.089910001\n\t\t 0.95879799 -0.339284 -0.016023001 0.94054699 -0.47948301 -0.156562 0.86347198 -0.47948301\n\t\t -0.156562 0.86347198 -0.36382201 -0.127785 0.92266202 -0.26948601 0.089910001 0.95879799\n\t\t -0.403523 0.429037 0.80814397 -0.091315001 0.61774701 0.781057 -0.33268899 0.867414\n\t\t 0.37001401 -0.33268899 0.867414 0.37001401 -0.44009 0.57239097 0.69187403 -0.403523\n\t\t 0.429037 0.80814397 -0.26948601 0.089910001 0.95879799 0.079135001 0.194832 0.97763902\n\t\t -0.091315001 0.61774701 0.781057 -0.091315001 0.61774701 0.781057 -0.403523 0.429037\n\t\t 0.80814397 -0.26948601 0.089910001 0.95879799 0.043458998 -0.720667 -0.69191802 0.038667999\n\t\t -0.68503302 -0.727485 0.042300001 -0.701666 -0.71124899 0.042300001 -0.701666 -0.71124899\n\t\t 0.032442 -0.74053901 -0.67123002 0.043458998 -0.720667 -0.69191802 0.032442 -0.74053901\n\t\t -0.67123002 0.042300001 -0.701666 -0.71124899 -0.137064 -0.63966101 -0.756338 -0.137064\n\t\t -0.63966101 -0.756338 -0.140907 -0.588045 -0.79645997 0.032442 -0.74053901 -0.67123002\n\t\t -0.82033098 0.096472003 -0.56369299 -0.569709 0.193433 -0.79875898 -0.56188601 -0.043124001\n\t\t -0.82608998 -0.56188601 -0.043124001 -0.82608998 -0.86094999 -0.140328 -0.48895001\n\t\t -0.82033098 0.096472003 -0.56369299 0.102575 -0.042268999 0.99382699 0.079135001\n\t\t 0.194832 0.97763902 -0.26948601 0.089910001 0.95879799 -0.26948601 0.089910001 0.95879799\n\t\t -0.36382201 -0.127785 0.92266202 0.102575 -0.042268999 0.99382699 -0.33268899 0.867414\n\t\t 0.37001401 -0.498218 0.86260998 -0.087650001 -0.772273 0.63527399 -0.0046080002 -0.772273\n\t\t 0.63527399 -0.0046080002 -0.718485 0.65588999 0.231489 -0.33268899 0.867414 0.37001401\n\t\t -0.34404799 0.0091859996 -0.93890703 -0.34404799 0.0091859996 -0.93890703 -0.56188601\n\t\t -0.043124001 -0.82608998 -0.56188601 -0.043124001 -0.82608998 -0.569709 0.193433\n\t\t -0.79875898 -0.34404799 0.0091859996 -0.93890703 0.339865 0.0093700001 0.94042802\n\t\t 0.339865 0.0093700001 0.94042802 0.079135001 0.194832 0.97763902 0.079135001 0.194832\n\t\t 0.97763902 0.102575 -0.042268999 0.99382699 0.339865 0.0093700001 0.94042802 -0.34352401\n\t\t 0.88041699 -0.32689101 -0.446226 0.83412898 -0.324209 -0.498218 0.86260998 -0.087650001\n\t\t -0.498218 0.86260998 -0.087650001 -0.29365399 0.945144 -0.14307299 -0.34352401 0.88041699\n\t\t -0.32689101 -0.29365399 0.945144 -0.14307299 -0.498218 0.86260998 -0.087650001 -0.33268899\n\t\t 0.867414 0.37001401 -0.33268899 0.867414 0.37001401 -0.146888 0.95280099 0.26569799\n\t\t -0.29365399 0.945144 -0.14307299 -0.146888 0.95280099 0.26569799 -0.33268899 0.867414\n\t\t 0.37001401 -0.091315001 0.61774701 0.781057 -0.091315001 0.61774701 0.781057 -0.053073\n\t\t 0.88045102 0.47115701 -0.146888 0.95280099 0.26569799 -0.63611197 0.37596601 -0.67380297\n\t\t -0.40158001 0.52658898 -0.74929202 -0.40224701 0.52386701 -0.75084001 -0.40224701\n\t\t 0.52386701 -0.75084001 -0.569709 0.193433 -0.79875898 -0.63611197 0.37596601 -0.67380297\n\t\t 0.171242 0.52321798 0.83481699 -0.091315001 0.61774701 0.781057 0.079135001 0.194832\n\t\t 0.97763902 0.079135001 0.194832 0.97763902 0.169348 0.52559298 0.83371001 0.171242\n\t\t 0.52321798 0.83481699 -0.82545102 0.43505001 -0.35966799 -0.63611197 0.37596601 -0.67380297\n\t\t -0.569709 0.193433 -0.79875898 -0.569709 0.193433 -0.79875898 -0.82033098 0.096472003\n\t\t -0.56369299 -0.82545102 0.43505001 -0.35966799 0.085942999 -0.60410398 0.79225802\n\t\t 0.308552 -0.58765203 0.747971 0.13074499 -0.49138999 0.86106998 0.13074499 -0.49138999\n\t\t 0.86106998 -0.024812 -0.57238001 0.81961298 0.085942999 -0.60410398 0.79225802 -0.546175\n\t\t -0.60190398 -0.58258498 -0.38444999 -0.55108601 -0.74061 -0.40172499 -0.50698602\n\t\t -0.76261503 -0.40172499 -0.50698602 -0.76261503 -0.48040599 -0.45748699 -0.74827498\n\t\t -0.546175 -0.60190398 -0.58258498 0.308552 -0.58765203 0.747971 0.37218401 -0.62921798\n\t\t 0.68232203 0.34367499 -0.52172202 0.78082901 0.34367499 -0.52172202 0.78082901;\n\tsetAttr \".n[26062:26227]\" -type \"float3\"  0.13074499 -0.49138999 0.86106998 0.308552\n\t\t -0.58765203 0.747971 0.37218401 -0.62921798 0.68232203 0.399497 -0.56118798 0.72489297\n\t\t 0.39760599 -0.46239799 0.79252601 0.39760599 -0.46239799 0.79252601 0.34367499 -0.52172202\n\t\t 0.78082901 0.37218401 -0.62921798 0.68232203 -0.38444999 -0.55108601 -0.74061 -0.22477099\n\t\t -0.533988 -0.81506699 -0.137064 -0.63966101 -0.756338 -0.137064 -0.63966101 -0.756338\n\t\t -0.40172499 -0.50698602 -0.76261503 -0.38444999 -0.55108601 -0.74061 -0.140907 -0.588045\n\t\t -0.79645997 -0.137064 -0.63966101 -0.756338 -0.22477099 -0.533988 -0.81506699 -0.22477099\n\t\t -0.533988 -0.81506699 -0.190804 -0.476493 -0.85822397 -0.140907 -0.588045 -0.79645997\n\t\t 0.27748099 -0.102728 0.95522302 0.41146201 -0.13221 0.90178698 0.508053 0.150033\n\t\t 0.848158 0.508053 0.150033 0.848158 0.296462 -0.114172 0.94819599 0.27748099 -0.102728\n\t\t 0.95522302 -0.343095 0.049348999 0.938003 -0.343095 0.049348999 0.938003 -0.343095\n\t\t 0.049348999 0.938003 -0.343095 0.049348999 0.938003 -0.343095 0.049348999 0.938003\n\t\t -0.343095 0.049348999 0.938003 0.508053 0.150033 0.848158 0.41146201 -0.13221 0.90178698\n\t\t 0.68878299 -0.205118 0.69534498 0.68878299 -0.205118 0.69534498 0.69562203 -0.067325003\n\t\t 0.71524602 0.508053 0.150033 0.848158 -0.211347 -0.81294501 0.54263502 -0.121955\n\t\t -0.81462502 0.56702101 -0.209942 -0.81007302 0.54745501 -0.209942 -0.81007302 0.54745501\n\t\t -0.30061099 -0.80737901 0.50771302 -0.211347 -0.81294501 0.54263502 -0.211347 -0.81294501\n\t\t 0.54263502 -0.30061099 -0.80737901 0.50771302 -0.33274901 -0.804573 0.49187499 -0.33274901\n\t\t -0.804573 0.49187499 -0.29069701 -0.80546701 0.51644802 -0.211347 -0.81294501 0.54263502\n\t\t 0.408382 -0.63376898 0.65693301 0.410301 -0.63269401 0.65677398 0.33263299 -0.67368799\n\t\t 0.65992397 0.33263299 -0.67368799 0.65992397 0.32967001 -0.67511803 0.65995002 0.408382\n\t\t -0.63376898 0.65693301 0.116157 -0.807482 -0.57834202 0.200847 -0.81507599 -0.54342502\n\t\t 0.26881701 -0.804802 -0.52917999 0.26881701 -0.804802 -0.52917999 0.20051201 -0.80833298\n\t\t -0.55352801 0.116157 -0.807482 -0.57834202 0.116157 -0.807482 -0.57834202 0.20051201\n\t\t -0.80833298 -0.55352801 0.115025 -0.80752301 -0.578511 0.115025 -0.80752301 -0.578511\n\t\t 0.071658 -0.80209202 -0.59288597 0.116157 -0.807482 -0.57834202 0.67972398 -0.67227697\n\t\t -0.29328999 0.67796201 -0.67350602 -0.29454499 0.74469697 -0.62158298 -0.24302401\n\t\t 0.74469697 -0.62158298 -0.24302401 0.74937701 -0.61747098 -0.23909 0.67972398 -0.67227697\n\t\t -0.29328999 0.83582997 -0.116583 -0.53646702 0.93510598 0.14634 -0.32273999 0.89985698\n\t\t -0.14459901 -0.41152 0.89985698 -0.14459901 -0.41152 0.836308 -0.116551 -0.53572798\n\t\t 0.83582997 -0.116583 -0.53646702 0.35820201 0.041444998 -0.932724 0.35820201 0.041444998\n\t\t -0.932724 0.35820201 0.041444998 -0.932724 0.35820201 0.041444998 -0.932724 0.35820201\n\t\t 0.041444998 -0.932724 0.35820201 0.041444998 -0.932724 0.89985698 -0.14459901 -0.41152\n\t\t 0.93510598 0.14634 -0.32273999 0.99244398 -0.072481997 -0.099003002 0.99244398 -0.072481997\n\t\t -0.099003002 0.97262299 -0.212079 -0.095007002 0.89985698 -0.14459901 -0.41152 0.56481701\n\t\t 0.41243601 0.71475798 0.49828899 0.50128102 0.70740801 0.49880299 0.50039101 0.70767599\n\t\t 0.49880299 0.50039101 0.70767599 0.508053 0.150033 0.848158 0.56481701 0.41243601\n\t\t 0.71475798 -0.021454999 0.869654 0.49319601 -0.021454999 0.869654 0.49319601 -0.021454999\n\t\t 0.869654 0.49319601 -0.021454999 0.869654 0.49319601 -0.021454999 0.869654 0.49319601\n\t\t -0.021454999 0.869654 0.49319601 0.72153598 0.107397 0.68399698 0.56481701 0.41243601\n\t\t 0.71475798 0.508053 0.150033 0.848158 0.508053 0.150033 0.848158 0.69562203 -0.067325003\n\t\t 0.71524602 0.72153598 0.107397 0.68399698 0.93510598 0.14634 -0.32273999 0.83707303\n\t\t 0.50029701 -0.221384 0.83689499 0.50051397 -0.221569 0.83689499 0.50051397 -0.221569\n\t\t 0.89221901 0.41218799 -0.184517 0.93510598 0.14634 -0.32273999 0.30994999 0.86686099\n\t\t -0.39049 0.309986 0.86684501 -0.390497 0.309986 0.86684501 -0.390497 0.309986 0.86684501\n\t\t -0.390497 0.30994999 0.86686099 -0.39049 0.30994999 0.86686099 -0.39049 0.93510598\n\t\t 0.14634 -0.32273999 0.89221901 0.41218799 -0.184517 0.99242502 0.106635 -0.061007999\n\t\t 0.99242502 0.106635 -0.061007999 0.99244398 -0.072481997 -0.099003002 0.93510598\n\t\t 0.14634 -0.32273999 0.96870798 -0.23969699 0.064425997 0.97262299 -0.212079 -0.095007002\n\t\t 0.99244398 -0.072481997 -0.099003002 0.99244398 -0.072481997 -0.099003002 0.974994\n\t\t -0.211863 0.067080997 0.96870798 -0.23969699 0.064425997 0.974994 -0.211863 0.067080997\n\t\t 0.99244398 -0.072481997 -0.099003002 0.99242502 0.106635 -0.061007999 0.99242502\n\t\t 0.106635 -0.061007999 0.97891599 -0.19553301 0.059083998 0.974994 -0.211863 0.067080997\n\t\t 0.78991801 -0.19617499 0.58098602 0.72153598 0.107397 0.68399698 0.69562203 -0.067325003\n\t\t 0.71524602 0.69562203 -0.067325003 0.71524602 0.78776801 -0.208204 0.57971698 0.78991801\n\t\t -0.19617499 0.58098602 0.78776801 -0.208204 0.57971698 0.69562203 -0.067325003 0.71524602\n\t\t 0.68878299 -0.205118 0.69534498 0.68878299 -0.205118 0.69534498 0.793064 -0.236765\n\t\t 0.56124198 0.78776801 -0.208204 0.57971698 0.793064 -0.236765 0.56124198 0.68878299\n\t\t -0.205118 0.69534498 0.77085501 -0.28614801 0.56912303 0.77085501 -0.28614801 0.56912303\n\t\t 0.76700997 -0.290665 0.57202202 0.793064 -0.236765 0.56124198 0.95570099 -0.28794599\n\t\t 0.061007001 0.955266 -0.289592 0.060029998 0.97262299 -0.212079 -0.095007002 0.97262299\n\t\t -0.212079 -0.095007002 0.96870798 -0.23969699 0.064425997 0.95570099 -0.28794599\n\t\t 0.061007001 -0.27748099 -0.102728 0.95522302 -0.296462 -0.114172 0.94819599;\n\tsetAttr \".n[26228:26393]\" -type \"float3\"  -0.508053 0.150032 0.848158 -0.508053\n\t\t 0.150032 0.848158 -0.41146201 -0.13221 0.90178698 -0.27748099 -0.102728 0.95522302\n\t\t 0.343068 0.049350001 0.93801302 0.343068 0.049350001 0.93801302 0.343095 0.049348999\n\t\t 0.938003 0.343095 0.049348999 0.938003 0.343095 0.049348999 0.938003 0.343068 0.049350001\n\t\t 0.93801302 -0.68878299 -0.205118 0.69534498 -0.41146201 -0.13221 0.90178698 -0.508053\n\t\t 0.150032 0.848158 -0.508053 0.150032 0.848158 -0.69562203 -0.067325003 0.71524602\n\t\t -0.68878299 -0.205118 0.69534498 0.211347 -0.81294501 0.54263502 0.30058399 -0.80738598\n\t\t 0.50771803 0.209942 -0.81007302 0.54745501 0.209942 -0.81007302 0.54745501 0.121956\n\t\t -0.81462502 0.56702101 0.211347 -0.81294501 0.54263502 0.33272201 -0.80458099 0.49188\n\t\t 0.30058399 -0.80738598 0.50771803 0.211347 -0.81294501 0.54263502 0.211347 -0.81294501\n\t\t 0.54263502 0.29069701 -0.805466 0.51644802 0.33272201 -0.80458099 0.49188 -0.33263201\n\t\t -0.67368799 0.65992397 -0.410292 -0.63268101 0.65679097 -0.408382 -0.63376898 0.65693301\n\t\t -0.408382 -0.63376898 0.65693301 -0.32967001 -0.67511803 0.65995002 -0.33263201 -0.67368799\n\t\t 0.65992397 -0.116157 -0.807482 -0.57834202 -0.20051099 -0.80833298 -0.55352801 -0.26881701\n\t\t -0.804802 -0.52917999 -0.26881701 -0.804802 -0.52917999 -0.200847 -0.81507701 -0.54342502\n\t\t -0.116157 -0.807482 -0.57834202 -0.115025 -0.80752301 -0.578511 -0.20051099 -0.80833298\n\t\t -0.55352801 -0.116157 -0.807482 -0.57834202 -0.116157 -0.807482 -0.57834202 -0.071658\n\t\t -0.80209202 -0.59288597 -0.115025 -0.80752301 -0.578511 -0.74466401 -0.62161201 -0.243053\n\t\t -0.67796201 -0.67350698 -0.29454499 -0.67972398 -0.67227697 -0.29328999 -0.67972398\n\t\t -0.67227697 -0.29328999 -0.74935699 -0.617486 -0.239114 -0.74466401 -0.62161201 -0.243053\n\t\t -0.83582997 -0.116584 -0.53646702 -0.83632201 -0.116554 -0.53570598 -0.899845 -0.14459801\n\t\t -0.41154501 -0.899845 -0.14459801 -0.41154501 -0.93510598 0.146339 -0.32273999 -0.83582997\n\t\t -0.116584 -0.53646702 -0.35820201 0.041444998 -0.932724 -0.35820201 0.041444998 -0.932724\n\t\t -0.35820201 0.041444998 -0.932724 -0.35820201 0.041444998 -0.932724 -0.35820201 0.041444998\n\t\t -0.932724 -0.35820201 0.041444998 -0.932724 -0.99244398 -0.072483003 -0.099003002\n\t\t -0.93510598 0.146339 -0.32273999 -0.899845 -0.14459801 -0.41154501 -0.899845 -0.14459801\n\t\t -0.41154501 -0.97262001 -0.212079 -0.095036998 -0.99244398 -0.072483003 -0.099003002\n\t\t -0.56481701 0.412435 0.71475798 -0.508053 0.150032 0.848158 -0.498804 0.50038999\n\t\t 0.70767599 -0.498804 0.50038999 0.70767599 -0.49828899 0.50128001 0.70740801 -0.56481701\n\t\t 0.412435 0.71475798 0.021454999 0.869654 0.493195 0.021454999 0.869654 0.493195 0.021454999\n\t\t 0.869654 0.493195 0.021454999 0.869654 0.493195 0.021454999 0.869654 0.493195 0.021454999\n\t\t 0.869654 0.493195 -0.508053 0.150032 0.848158 -0.56481701 0.412435 0.71475798 -0.72153598\n\t\t 0.107397 0.68399698 -0.72153598 0.107397 0.68399698 -0.69562203 -0.067325003 0.71524602\n\t\t -0.508053 0.150032 0.848158 -0.93510598 0.146339 -0.32273999 -0.89221901 0.41218701\n\t\t -0.184517 -0.83689499 0.50051302 -0.221569 -0.83689499 0.50051302 -0.221569 -0.83707398\n\t\t 0.50029701 -0.221384 -0.93510598 0.146339 -0.32273999 -0.30998701 0.86684501 -0.390497\n\t\t -0.30998701 0.86684501 -0.390497 -0.30995101 0.86686099 -0.39049 -0.30995101 0.86686099\n\t\t -0.39049 -0.30995101 0.86686099 -0.39049 -0.30998701 0.86684501 -0.390497 -0.99242198\n\t\t 0.106664 -0.061007999 -0.89221901 0.41218701 -0.184517 -0.93510598 0.146339 -0.32273999\n\t\t -0.93510598 0.146339 -0.32273999 -0.99244398 -0.072483003 -0.099003002 -0.99242198\n\t\t 0.106664 -0.061007999 -0.96870798 -0.23969799 0.064425997 -0.974994 -0.21186399 0.067080997\n\t\t -0.99244398 -0.072483003 -0.099003002 -0.99244398 -0.072483003 -0.099003002 -0.97262001\n\t\t -0.212079 -0.095036998 -0.96870798 -0.23969799 0.064425997 -0.974994 -0.21186399\n\t\t 0.067080997 -0.97891599 -0.19553301 0.059083998 -0.99242198 0.106664 -0.061007999\n\t\t -0.99242198 0.106664 -0.061007999 -0.99244398 -0.072483003 -0.099003002 -0.974994\n\t\t -0.21186399 0.067080997 -0.78991801 -0.19617499 0.58098602 -0.78776801 -0.208204\n\t\t 0.57971698 -0.69562203 -0.067325003 0.71524602 -0.69562203 -0.067325003 0.71524602\n\t\t -0.72153598 0.107397 0.68399698 -0.78991801 -0.19617499 0.58098602 -0.78776801 -0.208204\n\t\t 0.57971698 -0.79306298 -0.236766 0.56124198 -0.68878299 -0.205118 0.69534498 -0.68878299\n\t\t -0.205118 0.69534498 -0.69562203 -0.067325003 0.71524602 -0.78776801 -0.208204 0.57971698\n\t\t -0.79306298 -0.236766 0.56124198 -0.76700997 -0.29066601 0.57202202 -0.77085501 -0.286149\n\t\t 0.56912303 -0.77085501 -0.286149 0.56912303 -0.68878299 -0.205118 0.69534498 -0.79306298\n\t\t -0.236766 0.56124198 -0.95570099 -0.287947 0.061007001 -0.96870798 -0.23969799 0.064425997\n\t\t -0.97262001 -0.212079 -0.095036998 -0.97262001 -0.212079 -0.095036998 -0.95527399\n\t\t -0.28956401 0.060031001 -0.95570099 -0.287947 0.061007001 0.96139199 -0.261002 -0.087194003\n\t\t 0.86863798 -0.42263001 -0.25855899 0.85059702 -0.35234201 -0.39030799 0.85059702\n\t\t -0.35234201 -0.39030799 0.9077 -0.23612601 -0.34687999 0.96139199 -0.261002 -0.087194003\n\t\t 0.96139199 -0.261002 -0.087194003 0.9077 -0.23612601 -0.34687999 0.95639098 -0.194745\n\t\t -0.217696 0.95639098 -0.194745 -0.217696 0.96574599 -0.25623801 -0.040957 0.96139199\n\t\t -0.261002 -0.087194003 0.1041 -0.26081499 -0.95976001 0.101019 -0.26109201 -0.96001399\n\t\t 0.114722 -0.25990301 -0.95879602 0.114722 -0.25990301 -0.95879602 0.117682 -0.259626\n\t\t -0.95851201 0.1041 -0.26081499 -0.95976001 0.85059702 -0.35234201 -0.39030799 0.716344\n\t\t -0.2581 -0.648256 0.82814199 -0.194896 -0.52554297 0.82814199 -0.194896 -0.52554297\n\t\t 0.9077 -0.23612601 -0.34687999 0.85059702 -0.35234201 -0.39030799;\n\tsetAttr \".n[26394:26559]\" -type \"float3\"  0.85059702 -0.35234201 -0.39030799 0.86863798\n\t\t -0.42263001 -0.25855899 0.77370203 -0.488893 -0.40294999 0.77370203 -0.488893 -0.40294999\n\t\t 0.75715899 -0.32332399 -0.56760198 0.85059702 -0.35234201 -0.39030799 0.69534898\n\t\t -0.14334901 -0.70423001 0.75715899 -0.32332399 -0.56760198 0.77370203 -0.488893 -0.40294999\n\t\t 0.77370203 -0.488893 -0.40294999 0.758775 -0.337942 -0.55682701 0.69534898 -0.14334901\n\t\t -0.70423001 0.71716797 -0.298446 -0.62976199 0.69534898 -0.14334901 -0.70423001 0.758775\n\t\t -0.337942 -0.55682701 0.758775 -0.337942 -0.55682701 0.71604002 -0.30406201 -0.62835801\n\t\t 0.71716797 -0.298446 -0.62976199 0.68045002 -0.198007 -0.70553601 0.71716797 -0.298446\n\t\t -0.62976199 0.71604002 -0.30406201 -0.62835801 0.71604002 -0.30406201 -0.62835801\n\t\t 0.69550401 -0.231214 -0.680305 0.68045002 -0.198007 -0.70553601 0.618931 -0.163827\n\t\t -0.76817 0.68045002 -0.198007 -0.70553601 0.69550401 -0.231214 -0.680305 0.69550401\n\t\t -0.231214 -0.680305 0.65989298 -0.26008701 -0.70490903 0.618931 -0.163827 -0.76817\n\t\t 0.618931 -0.163827 -0.76817 0.65989298 -0.26008701 -0.70490903 0.62146002 -0.28724599\n\t\t -0.72888798 0.62146002 -0.28724599 -0.72888798 0.58881801 -0.130106 -0.79772598 0.618931\n\t\t -0.163827 -0.76817 0.59873301 -0.232071 -0.76659101 0.58881801 -0.130106 -0.79772598\n\t\t 0.62146002 -0.28724599 -0.72888798 0.62146002 -0.28724599 -0.72888798 0.614604 -0.44192401\n\t\t -0.65342498 0.59873301 -0.232071 -0.76659101 0.71716797 -0.298446 -0.62976199 0.68045002\n\t\t -0.198007 -0.70553601 0.59952599 0.025513999 -0.79994798 0.59952599 0.025513999 -0.79994798\n\t\t 0.639952 -0.097691 -0.76217997 0.71716797 -0.298446 -0.62976199 0.58263999 -0.024629001\n\t\t -0.81235701 0.59952599 0.025513999 -0.79994798 0.68045002 -0.198007 -0.70553601 0.68045002\n\t\t -0.198007 -0.70553601 0.618931 -0.163827 -0.76817 0.58263999 -0.024629001 -0.81235701\n\t\t 0.143043 0.649903 -0.74643499 0.131539 0.64710701 -0.75096601 0.14682899 0.640634\n\t\t -0.75367802 0.14682899 0.640634 -0.75367802 0.158243 0.62522101 -0.76423699 0.143043\n\t\t 0.649903 -0.74643499 0.75715899 -0.32332399 -0.56760198 0.69967902 -0.122778 -0.70382899\n\t\t 0.716344 -0.2581 -0.648256 0.716344 -0.2581 -0.648256 0.85059702 -0.35234201 -0.39030799\n\t\t 0.75715899 -0.32332399 -0.56760198 0.69967902 -0.122778 -0.70382899 0.75715899 -0.32332399\n\t\t -0.56760198 0.69534898 -0.14334901 -0.70423001 0.69534898 -0.14334901 -0.70423001\n\t\t 0.57385701 0.076024003 -0.81541902 0.69967902 -0.122778 -0.70382899 0.158243 0.62522101\n\t\t -0.76423699 0.14682899 0.640634 -0.75367802 0.176888 0.605528 -0.77591598 0.50511998\n\t\t 0.24216799 -0.82837701 0.57385701 0.076024003 -0.81541902 0.69534898 -0.14334901\n\t\t -0.70423001 0.69534898 -0.14334901 -0.70423001 0.49041399 0.27394101 -0.82731599\n\t\t 0.50511998 0.24216799 -0.82837701 0.176888 0.605528 -0.77591598 0.177101 0.61550498\n\t\t -0.767977 0.158243 0.62522101 -0.76423699 0.176888 0.605528 -0.77591598 0.201919\n\t\t 0.57102603 -0.79571301 0.189647 0.59485298 -0.78114301 0.189647 0.59485298 -0.78114301\n\t\t 0.177101 0.61550498 -0.767977 0.176888 0.605528 -0.77591598 0.17325599 0.272199 -0.94651502\n\t\t 0.176093 0.271678 -0.946141 0.14261401 0.27781299 -0.94998997 0.14261401 0.27781299\n\t\t -0.94998997 0.140111 0.27826899 -0.95022899 0.17325599 0.272199 -0.94651502 0.9077\n\t\t -0.23612601 -0.34687999 0.82814199 -0.194896 -0.52554297 0.89425302 -0.104804 -0.43511701\n\t\t 0.89425302 -0.104804 -0.43511701 0.95639098 -0.194745 -0.217696 0.9077 -0.23612601\n\t\t -0.34687999 0.59873301 -0.232071 -0.76659101 0.549797 -0.015838999 -0.83514798 0.53753\n\t\t 0.017914999 -0.84305501 0.53753 0.017914999 -0.84305501 0.58881801 -0.130106 -0.79772598\n\t\t 0.59873301 -0.232071 -0.76659101 0.129796 0.66564602 -0.73489302 0.079075001 0.72437698\n\t\t -0.68485397 0.088749997 0.71140701 -0.69715399 0.088749997 0.71140701 -0.69715399\n\t\t 0.123205 0.65890402 -0.74206901 0.129796 0.66564602 -0.73489302 0.129796 0.66564602\n\t\t -0.73489302 0.123205 0.65890402 -0.74206901 0.12799799 0.65683901 -0.74308699 0.12799799\n\t\t 0.65683901 -0.74308699 0.14063101 0.66516 -0.73333901 0.129796 0.66564602 -0.73489302\n\t\t 0.53753 0.017914999 -0.84305501 0.426779 0.0048830002 -0.90434301 0.618931 -0.163827\n\t\t -0.76817 0.618931 -0.163827 -0.76817 0.58881801 -0.130106 -0.79772598 0.53753 0.017914999\n\t\t -0.84305501 0.162668 0.68973899 -0.70554799 0.148904 0.62253499 -0.768296 0.162609\n\t\t 0.59147203 -0.78975898 0.162609 0.59147203 -0.78975898 0.175273 0.58945101 -0.78855997\n\t\t 0.162668 0.68973899 -0.70554799 0.174844 0.69220501 -0.70020097 0.162668 0.68973899\n\t\t -0.70554799 0.175273 0.58945101 -0.78855997 0.175273 0.58945101 -0.78855997 0.190071\n\t\t 0.66115999 -0.72576898 0.174844 0.69220501 -0.70020097 0.51223499 0.19065399 -0.83741701\n\t\t 0.49447 0.290297 -0.81928402 0.639952 -0.097691 -0.76217997 0.639952 -0.097691 -0.76217997\n\t\t 0.59952599 0.025513999 -0.79994798 0.51223499 0.19065399 -0.83741701 0.39519101 0.020051001\n\t\t -0.91838002 0.51223499 0.19065399 -0.83741701 0.59952599 0.025513999 -0.79994798\n\t\t 0.59952599 0.025513999 -0.79994798 0.58263999 -0.024629001 -0.81235701 0.39519101\n\t\t 0.020051001 -0.91838002 0.39519101 0.020051001 -0.91838002 0.58263999 -0.024629001\n\t\t -0.81235701 0.618931 -0.163827 -0.76817 0.618931 -0.163827 -0.76817 0.426779 0.0048830002\n\t\t -0.90434301 0.39519101 0.020051001 -0.91838002 0.131566 0.057069998 -0.989663 0.39519101\n\t\t 0.020051001 -0.91838002 0.426779 0.0048830002 -0.90434301 0.426779 0.0048830002 -0.90434301\n\t\t 0.129005 0.052432001 -0.99025702 0.131566 0.057069998 -0.989663 0.038515002 0.99303001\n\t\t 0.111395 0.040192999 0.992535 0.115148 0.039643999 0.99270099 0.113898 0.039643999\n\t\t 0.99270099 0.113898;\n\tsetAttr \".n[26560:26725]\" -type \"float3\"  0.037935 0.99318802 0.110174 0.038515002\n\t\t 0.99303001 0.111395 0.56563503 0.68465799 -0.459674 0.562778 0.68824399 -0.457822\n\t\t 0.59055299 0.65183699 -0.47576901 0.59055299 0.65183699 -0.47576901 0.593081 0.64835203\n\t\t -0.47738299 0.56563503 0.68465799 -0.459674 0.174022 -0.24906901 -0.95272303 0.173013\n\t\t -0.24897601 -0.95293099 0.190317 -0.25047001 -0.94923401 0.190317 -0.25047001 -0.94923401\n\t\t 0.191386 -0.250563 -0.94899398 0.174022 -0.24906901 -0.95272303 0.185527 0.668405\n\t\t -0.72028798 0.185892 0.67676198 -0.71234697 0.18516099 0.65741903 -0.73042202 0.18516099\n\t\t 0.65741903 -0.73042202 0.18467499 0.65025401 -0.73693001 0.185527 0.668405 -0.72028798\n\t\t 0.18699101 0.69504601 -0.69422197 0.185892 0.67676198 -0.71234697 0.185527 0.668405\n\t\t -0.72028798 0.185527 0.668405 -0.72028798 0.187539 0.68691999 -0.70211798 0.18699101\n\t\t 0.69504601 -0.69422197 0.18467499 0.65025401 -0.73693001 0.18516099 0.65741903 -0.73042202\n\t\t 0.18638 0.640993 -0.74457401 0.18638 0.640993 -0.74457401 0.186198 0.636114 -0.74879199\n\t\t 0.18467499 0.65025401 -0.73693001 0.186198 0.636114 -0.74879199 0.18638 0.640993\n\t\t -0.74457401 0.187907 0.62521899 -0.75748998 0.187907 0.62521899 -0.75748998 0.18684199\n\t\t 0.61320299 -0.76751101 0.186198 0.636114 -0.74879199 0.18699101 0.69504601 -0.69422197\n\t\t 0.187539 0.68691999 -0.70211798 0.18687201 0.70036501 -0.68888903 0.18687201 0.70036501\n\t\t -0.68888903 0.186901 0.70036101 -0.68888497 0.18699101 0.69504601 -0.69422197 0.18684199\n\t\t 0.61320299 -0.76751101 0.187907 0.62521899 -0.75748998 0.18805601 0.60176897 -0.776214\n\t\t 0.18805601 0.60176897 -0.776214 0.187328 0.595465 -0.78123599 0.18684199 0.61320299\n\t\t -0.76751101 0.191568 0.58630103 -0.787117 0.187328 0.595465 -0.78123599 0.18805601\n\t\t 0.60176897 -0.776214 0.18805601 0.60176897 -0.776214 0.19190601 0.58585 -0.78737003\n\t\t 0.191568 0.58630103 -0.787117 0.224654 0.258775 -0.93945003 0.226209 0.25831601 -0.93920302\n\t\t 0.21433701 0.27375799 -0.937612 0.21433701 0.27375799 -0.937612 0.180704 0.272322\n\t\t -0.945086 0.224654 0.258775 -0.93945003 0.180704 0.272322 -0.945086 0.21433701 0.27375799\n\t\t -0.937612 0.20902599 0.27137601 -0.939502 0.20902599 0.27137601 -0.939502 0.22022299\n\t\t 0.27341801 -0.93634599 0.180704 0.272322 -0.945086 0.22022299 0.27341801 -0.93634599\n\t\t 0.20902599 0.27137601 -0.939502 0.212079 0.26423699 -0.94085097 0.212079 0.26423699\n\t\t -0.94085097 0.21393999 0.26664701 -0.939749 0.22022299 0.27341801 -0.93634599 0.21393999\n\t\t 0.26664701 -0.939749 0.212079 0.26423699 -0.94085097 0.186318 0.26713201 -0.94547701\n\t\t 0.186318 0.26713201 -0.94547701 0.206921 0.25578299 -0.94432998 0.21393999 0.26664701\n\t\t -0.939749 0.041322 0.33125201 -0.94263703 0.206921 0.25578299 -0.94432998 0.186318\n\t\t 0.26713201 -0.94547701 0.186318 0.26713201 -0.94547701 0.000275 0.34892499 -0.93715101\n\t\t 0.041322 0.33125201 -0.94263703 3.1e-05 -0.221265 -0.975214 0 -0.221265 -0.975214\n\t\t 0 -0.221265 -0.975214 0 -0.221265 -0.975214 3.1e-05 -0.221265 -0.975214 3.1e-05 -0.221265\n\t\t -0.975214 0.00015199999 0.77783102 -0.62847298 0.00015199999 0.77784598 -0.62845403\n\t\t 9.1000002e-05 0.77784598 -0.62845403 9.1000002e-05 0.77784598 -0.62845403 9.1000002e-05\n\t\t 0.77784598 -0.62845403 0.00015199999 0.77783102 -0.62847298 0.000183 0.78085101 -0.624717\n\t\t 0.00015199999 0.77784598 -0.62845403 0.00015199999 0.77783102 -0.62847298 0.00015199999\n\t\t 0.77783102 -0.62847298 0.000183 0.7791 -0.62690002 0.000183 0.78085101 -0.624717\n\t\t 9.1000002e-05 0.77784598 -0.62845403 9.1000002e-05 0.77784598 -0.62845403 2.9999999e-05\n\t\t 0.77789998 -0.62838799 2.9999999e-05 0.77789998 -0.62838799 2.9999999e-05 0.777969\n\t\t -0.62830198 9.1000002e-05 0.77784598 -0.62845403 2.9999999e-05 0.777969 -0.62830198\n\t\t 2.9999999e-05 0.77789998 -0.62838799 -9.2000002e-05 0.778337 -0.627846 -9.2000002e-05\n\t\t 0.778337 -0.627846 -0.000122 0.77897799 -0.62705201 2.9999999e-05 0.777969 -0.62830198\n\t\t 0.000183 0.78085101 -0.624717 0.000183 0.7791 -0.62690002 0.000122 0.782085 -0.62317199\n\t\t 0.000122 0.782085 -0.62317199 9.1000002e-05 0.78210002 -0.62315297 0.000183 0.78085101\n\t\t -0.624717 -0.000122 0.77897799 -0.62705201 -9.2000002e-05 0.778337 -0.627846 -0.000122\n\t\t 0.77939898 -0.62652802 -0.000122 0.77939898 -0.62652802 -0.000122 0.779724 -0.62612301\n\t\t -0.000122 0.77897799 -0.62705201 -9.2000002e-05 0.77982002 -0.62600398 -0.000122\n\t\t 0.779724 -0.62612301 -0.000122 0.77939898 -0.62652802 -0.000122 0.77939898 -0.62652802\n\t\t -9.2000002e-05 0.77982002 -0.62600398 -9.2000002e-05 0.77982002 -0.62600398 -0.000183\n\t\t 0.327075 -0.94499803 -0.025697 0.34956199 -0.93656099 -0.0052800002 0.33070701 -0.94371903\n\t\t -0.0052800002 0.33070701 -0.94371903 0 0.32701099 -0.94502097 -0.000183 0.327075\n\t\t -0.94499803 -0.0052800002 0.33070701 -0.94371903 -0.025697 0.34956199 -0.93656099\n\t\t -0.080631003 0.34501499 -0.93512702 -0.080631003 0.34501499 -0.93512702 -0.021608001\n\t\t 0.33110201 -0.94334698 -0.0052800002 0.33070701 -0.94371903 -0.003357 0.321394 -0.94694\n\t\t -0.021608001 0.33110201 -0.94334698 -0.080631003 0.34501499 -0.93512702 -0.080631003\n\t\t 0.34501499 -0.93512702 -0.070377998 0.33904001 -0.93813598 -0.003357 0.321394 -0.94694\n\t\t -0.070377998 0.33904001 -0.93813598 -0.080631003 0.34501499 -0.93512702 -0.185131\n\t\t 0.403649 -0.89598799 -0.185131 0.403649 -0.89598799 -0.270524 0.43285599 -0.859914\n\t\t -0.070377998 0.33904001 -0.93813598 -0.13028499 0.392656 -0.91040999 -0.185131 0.403649\n\t\t -0.89598799 -0.080631003 0.34501499 -0.93512702 -0.080631003 0.34501499 -0.93512702\n\t\t -0.025697 0.34956199 -0.93656099 -0.13028499 0.392656 -0.91040999 -0.003357 0.321394\n\t\t -0.94694 -0.070377998 0.33904001 -0.93813598;\n\tsetAttr \".n[26726:26891]\" -type \"float3\"  -6.0999999e-05 0.32289401 -0.94643497\n\t\t -6.0999999e-05 0.32289401 -0.94643497 6.0999999e-05 0.32289401 -0.94643497 -0.003357\n\t\t 0.321394 -0.94694 0 0.32267499 -0.94651002 6.0999999e-05 0.32289401 -0.94643497 -6.0999999e-05\n\t\t 0.32289401 -0.94643497 -6.0999999e-05 0.32289401 -0.94643497 0 0.32267499 -0.94651002\n\t\t 0 0.32267499 -0.94651002 0.000275 0.418991 0.90799099 0.000275 0.418991 0.90799099\n\t\t 0.00030499999 0.41896501 0.90800202 0.00030499999 0.41896501 0.90800202 0.00030499999\n\t\t 0.41896501 0.90800202 0.000275 0.418991 0.90799099 0.60907298 -0.27919 -0.74234998\n\t\t 0.59548497 -0.286237 -0.75064403 0.59547299 -0.28612301 -0.75069702 0.59547299 -0.28612301\n\t\t -0.75069702 0.61050701 -0.27848801 -0.74143499 0.60907298 -0.27919 -0.74234998 0.653938\n\t\t -0.259018 -0.71082699 0.60907298 -0.27919 -0.74234998 0.61050701 -0.27848801 -0.74143499\n\t\t 0.61050701 -0.27848801 -0.74143499 0.65765899 -0.25712401 -0.708076 0.653938 -0.259018\n\t\t -0.71082699 0.69693899 -0.237288 -0.67673498 0.653938 -0.259018 -0.71082699 0.65765899\n\t\t -0.25712401 -0.708076 0.65765899 -0.25712401 -0.708076 0.69840199 -0.238721 -0.67471898\n\t\t 0.69693899 -0.237288 -0.67673498 0.72785401 -0.24482501 -0.64053798 0.69693899 -0.237288\n\t\t -0.67673498 0.69840199 -0.238721 -0.67471898 0.69840199 -0.238721 -0.67471898 0.72949302\n\t\t -0.25349 -0.63528103 0.72785401 -0.24482501 -0.64053798 0.77546 -0.28367499 -0.56408399\n\t\t 0.72785401 -0.24482501 -0.64053798 0.72949302 -0.25349 -0.63528103 0.72949302 -0.25349\n\t\t -0.63528103 0.773821 -0.304645 -0.55533201 0.77546 -0.28367499 -0.56408399 0.81830901\n\t\t -0.43266901 -0.37837601 0.77546 -0.28367499 -0.56408399 0.773821 -0.304645 -0.55533201\n\t\t 0.773821 -0.304645 -0.55533201 0.79663599 -0.47612599 -0.372392 0.81830901 -0.43266901\n\t\t -0.37837601 0.885077 -0.39509699 -0.246043 0.81830901 -0.43266901 -0.37837601 0.79663599\n\t\t -0.47612599 -0.372392 0.79663599 -0.47612599 -0.372392 0.87844098 -0.41591799 -0.235274\n\t\t 0.885077 -0.39509699 -0.246043 0.95489401 -0.24516299 -0.16755199 0.885077 -0.39509699\n\t\t -0.246043 0.87844098 -0.41591799 -0.235274 0.87844098 -0.41591799 -0.235274 0.95731902\n\t\t -0.23725399 -0.165077 0.95489401 -0.24516299 -0.16755199 0.96618301 -0.19739901 -0.165903\n\t\t 0.95489401 -0.24516299 -0.16755199 0.95731902 -0.23725399 -0.165077 0.95731902 -0.23725399\n\t\t -0.165077 0.96755397 -0.192973 -0.163095 0.96618301 -0.19739901 -0.165903 0.97639698\n\t\t -0.161476 -0.14343999 0.96618301 -0.19739901 -0.165903 0.96755397 -0.192973 -0.163095\n\t\t 0.96755397 -0.192973 -0.163095 0.97749603 -0.157051 -0.140846 0.97639698 -0.161476\n\t\t -0.14343999 0.98379999 -0.12769 -0.125828 0.97639698 -0.161476 -0.14343999 0.97749603\n\t\t -0.157051 -0.140846 0.97749603 -0.157051 -0.140846 0.98356801 -0.127905 -0.127417\n\t\t 0.98379999 -0.12769 -0.125828 0.98379999 -0.12769 -0.125828 0.98356801 -0.127905\n\t\t -0.127417 0.98948097 -0.105137 -0.099368997 0.98948097 -0.105137 -0.099368997 0.99015701\n\t\t -0.085574999 -0.110753 0.98379999 -0.12769 -0.125828 0.99135703 -0.126746 -0.033876002\n\t\t 0.99015701 -0.085574999 -0.110753 0.98948097 -0.105137 -0.099368997 0.98948097 -0.105137\n\t\t -0.099368997 0.98754698 -0.157327 0 0.99135703 -0.126746 -0.033876002 0.76197898\n\t\t -0.322712 -0.56146598 0.733778 -0.38072899 -0.56268603 0.725582 -0.392257 -0.56538898\n\t\t 0.725582 -0.392257 -0.56538898 0.73293102 -0.385739 -0.56037301 0.76197898 -0.322712\n\t\t -0.56146598 0.69379097 -0.42043099 -0.58471501 0.73293102 -0.385739 -0.56037301 0.725582\n\t\t -0.392257 -0.56538898 0.725582 -0.392257 -0.56538898 0.68705398 -0.42608199 -0.58856702\n\t\t 0.69379097 -0.42043099 -0.58471501 0.69379097 -0.42043099 -0.58471501 0.68705398\n\t\t -0.42608199 -0.58856702 0.65646499 -0.44777501 -0.60708499 0.65646499 -0.44777501\n\t\t -0.60708499 0.65547198 -0.43875101 -0.61469799 0.69379097 -0.42043099 -0.58471501\n\t\t 0.65547198 -0.43875101 -0.61469799 0.65646499 -0.44777501 -0.60708499 0.64474797\n\t\t -0.46212101 -0.60888797 0.64474797 -0.46212101 -0.60888797 0.64038998 -0.42577699\n\t\t -0.63923001 0.65547198 -0.43875101 -0.61469799 0.64430398 -0.43054301 -0.632065 0.64038998\n\t\t -0.42577699 -0.63923001 0.64474797 -0.46212101 -0.60888797 0.64474797 -0.46212101\n\t\t -0.60888797 0.63647997 -0.47988501 -0.60382402 0.64430398 -0.43054301 -0.632065 0.65547198\n\t\t -0.43875101 -0.61469799 0.64038998 -0.42577699 -0.63923001 0.59231901 -0.46462601\n\t\t -0.65824097 0.59231901 -0.46462601 -0.65824097 0.60303402 -0.48196301 -0.63565898\n\t\t 0.65547198 -0.43875101 -0.61469799 0.56940699 -0.45440799 -0.68504602 0.59231901\n\t\t -0.46462601 -0.65824097 0.64038998 -0.42577699 -0.63923001 0.64038998 -0.42577699\n\t\t -0.63923001 0.64430398 -0.43054301 -0.632065 0.56940699 -0.45440799 -0.68504602 0.733778\n\t\t -0.38072899 -0.56268603 0.76197898 -0.322712 -0.56146598 0.78040302 -0.29820201 -0.54958701\n\t\t 0.79189998 -0.22800501 -0.56648803 0.78040302 -0.29820201 -0.54958701 0.76197898\n\t\t -0.322712 -0.56146598 0.76197898 -0.322712 -0.56146598 0.768143 -0.236403 -0.59503698\n\t\t 0.79189998 -0.22800501 -0.56648803 0.82611901 -0.226604 -0.51592398 0.78040302 -0.29820201\n\t\t -0.54958701 0.79189998 -0.22800501 -0.56648803 0.79189998 -0.22800501 -0.56648803\n\t\t 0.82798398 -0.18165 -0.530514 0.82611901 -0.226604 -0.51592398 0.78040302 -0.29820201\n\t\t -0.54958701 0.82611901 -0.226604 -0.51592398 0.83547699 -0.23903 -0.49481601 0.83547699\n\t\t -0.23903 -0.49481601 0.75111502 -0.35454401 -0.556889 0.78040302 -0.29820201 -0.54958701\n\t\t 0.78040302 -0.29820201 -0.54958701 0.75111502 -0.35454401 -0.556889 0.733778 -0.38072899\n\t\t -0.56268603 0.866373 -0.175484 -0.46755099 0.82611901 -0.226604 -0.51592398 0.82798398\n\t\t -0.18165 -0.530514 0.82798398 -0.18165 -0.530514 0.856942 -0.150123 -0.493065 0.866373\n\t\t -0.175484 -0.46755099;\n\tsetAttr \".n[26892:27057]\" -type \"float3\"  0.89933002 -0.13059001 -0.41731501 0.866373\n\t\t -0.175484 -0.46755099 0.856942 -0.150123 -0.493065 0.856942 -0.150123 -0.493065 0.88843298\n\t\t -0.105686 -0.44667301 0.89933002 -0.13059001 -0.41731501 0.866373 -0.175484 -0.46755099\n\t\t 0.89933002 -0.13059001 -0.41731501 0.90876698 -0.13617601 -0.39445901 0.90876698\n\t\t -0.13617601 -0.39445901 0.88315499 -0.161292 -0.44047901 0.866373 -0.175484 -0.46755099\n\t\t 0.82611901 -0.226604 -0.51592398 0.866373 -0.175484 -0.46755099 0.88315499 -0.161292\n\t\t -0.44047901 0.88315499 -0.161292 -0.44047901 0.83547699 -0.23903 -0.49481601 0.82611901\n\t\t -0.226604 -0.51592398 0.91050297 -0.079074003 -0.40587199 0.89933002 -0.13059001\n\t\t -0.41731501 0.88843298 -0.105686 -0.44667301 0.88843298 -0.105686 -0.44667301 0.90360498\n\t\t -0.027070001 -0.42750999 0.91050297 -0.079074003 -0.40587199 0.89954799 -0.023133\n\t\t -0.43620801 0.91050297 -0.079074003 -0.40587199 0.90360498 -0.027070001 -0.42750999\n\t\t 0.90360498 -0.027070001 -0.42750999 0.89363801 0.025118001 -0.44808501 0.89954799\n\t\t -0.023133 -0.43620801 0.91050297 -0.079074003 -0.40587199 0.89954799 -0.023133 -0.43620801\n\t\t 0.90711802 -0.055544 -0.41719499 0.90659499 -0.027558001 -0.42109999 0.90711802 -0.055544\n\t\t -0.41719499 0.89954799 -0.023133 -0.43620801 0.89954799 -0.023133 -0.43620801 0.89632499\n\t\t -0.003235 -0.44338599 0.90659499 -0.027558001 -0.42109999 0.89632499 -0.003235 -0.44338599\n\t\t 0.89954799 -0.023133 -0.43620801 0.89363801 0.025118001 -0.44808501 0.90775698 -0.029237\n\t\t -0.41847599 0.90659499 -0.027558001 -0.42109999 0.89632499 -0.003235 -0.44338599\n\t\t 0.89632499 -0.003235 -0.44338599 0.90344501 -0.023560001 -0.42805499 0.90775698 -0.029237\n\t\t -0.41847599 0.90711802 -0.055544 -0.41719499 0.91411602 -0.13483401 -0.382377 0.91050297\n\t\t -0.079074003 -0.40587199 0.89933002 -0.13059001 -0.41731501 0.91050297 -0.079074003\n\t\t -0.40587199 0.91411602 -0.13483401 -0.382377 0.91411602 -0.13483401 -0.382377 0.90876698\n\t\t -0.13617601 -0.39445901 0.89933002 -0.13059001 -0.41731501 0.89363801 0.025118001\n\t\t -0.44808501 0.88532197 0.055452999 -0.46165901 0.89632499 -0.003235 -0.44338599 0.89632499\n\t\t -0.003235 -0.44338599 0.88532197 0.055452999 -0.46165901 0.88463902 0.051913999 -0.46337801\n\t\t 0.88463902 0.051913999 -0.46337801 0.90344501 -0.023560001 -0.42805499 0.89632499\n\t\t -0.003235 -0.44338599 0.69776499 0.64154899 -0.31865299 0.69617701 0.64307398 -0.31905001\n\t\t 0.68919098 0.63926202 -0.34111601 0.68919098 0.63926202 -0.34111601 0.69203001 0.63679099\n\t\t -0.33998799 0.69776499 0.64154899 -0.31865299 0.69203001 0.63679099 -0.33998799 0.68919098\n\t\t 0.63926202 -0.34111601 0.63143998 0.590056 -0.50310701 0.63143998 0.590056 -0.50310701\n\t\t 0.62989402 0.58737999 -0.50815099 0.69203001 0.63679099 -0.33998799 0.138465 0.98833102\n\t\t -0.063479997 0.139992 0.98812699 -0.063297004 0.13517 0.98858202 -0.066592999 0.13517\n\t\t 0.98858202 -0.066592999 0.134773 0.98861599 -0.066899002 0.138465 0.98833102 -0.063479997\n\t\t 0.134773 0.98861599 -0.066899002 0.13517 0.98858202 -0.066592999 0.13517 0.98836702\n\t\t -0.069706 0.13517 0.98836702 -0.069706 0.13605499 0.98824799 -0.069675997 0.134773\n\t\t 0.98861599 -0.066899002 0.17124 0.218483 -0.96069902 -0.029541999 0.40269399 -0.91485798\n\t\t 0.018647 0.36027601 -0.93265897 0.018647 0.36027601 -0.93265897 0.23658501 0.166879\n\t\t -0.95717299 0.17124 0.218483 -0.96069902 0.23658501 0.166879 -0.95717299 0.018647\n\t\t 0.36027601 -0.93265897 0.340803 0.083286002 -0.93643802 0.340803 0.083286002 -0.93643802\n\t\t 0.34377101 0.086584002 -0.935054 0.23658501 0.166879 -0.95717299 0.367688 -0.058138002\n\t\t -0.92812997 0.34377101 0.086584002 -0.935054 0.340803 0.083286002 -0.93643802 0.340803\n\t\t 0.083286002 -0.93643802 0.37553301 -0.028627001 -0.92636698 0.367688 -0.058138002\n\t\t -0.92812997 -0.24644201 0.51989198 -0.81791103 0.018647 0.36027601 -0.93265897 -0.197735\n\t\t 0.53848302 -0.81910801 -0.197735 0.53848302 -0.81910801 -0.24604601 0.53558201 -0.807845\n\t\t -0.24644201 0.51989198 -0.81791103 -0.261305 0.51818502 -0.81437302 -0.24644201 0.51989198\n\t\t -0.81791103 -0.24604601 0.53558201 -0.807845 -0.17048 0.52126598 -0.83619303 -0.197735\n\t\t 0.53848302 -0.81910801 0.018647 0.36027601 -0.93265897 0.018647 0.36027601 -0.93265897\n\t\t -0.029541999 0.40269399 -0.91485798 -0.17048 0.52126598 -0.83619303 -0.24604601 0.53558201\n\t\t -0.807845 -0.26469499 0.52194297 -0.81087101 -0.261305 0.51818502 -0.81437302 0.36497599\n\t\t -0.121099 -0.92310703 0.36644799 -0.120949 -0.922544 0.367688 -0.058138002 -0.92812997\n\t\t 0.367688 -0.058138002 -0.92812997 0.37553301 -0.028627001 -0.92636698 0.36497599\n\t\t -0.121099 -0.92310703 -0.258158 0.053194001 -0.96463698 -0.24223 0.05469 -0.96867597\n\t\t -0.305406 0.048617002 -0.95098001 -0.305406 0.048617002 -0.95098001 -0.321338 0.047061\n\t\t -0.94579399 -0.258158 0.053194001 -0.96463698 0.61374801 0.484925 -0.62302601 0.619111\n\t\t 0.47289401 -0.62695497 0.536502 0.62796903 -0.56375599 0.536502 0.62796903 -0.56375599\n\t\t 0.53298801 0.63342798 -0.56097502 0.61374801 0.484925 -0.62302601 0.105716 0.98785597\n\t\t -0.113865 0.085941002 0.99250197 -0.086917996 0.087862998 0.9921 -0.089542001 0.087862998\n\t\t 0.9921 -0.089542001 0.108831 0.98702198 -0.118079 0.105716 0.98785597 -0.113865 0.62989402\n\t\t 0.58737999 -0.50815099 0.63143998 0.590056 -0.50310701 0.554079 0.53546298 -0.637398\n\t\t 0.554079 0.53546298 -0.637398 0.55365199 0.53466898 -0.63843501 0.62989402 0.58737999\n\t\t -0.50815099 0.55069202 0.53833199 -0.63791698 0.55365199 0.53466898 -0.63843501 0.554079\n\t\t 0.53546298 -0.637398 0.554079 0.53546298 -0.637398 0.549375 0.54000598 -0.63763702\n\t\t 0.55069202 0.53833199 -0.63791698 -0.073092997 0.83698398 -0.54232299 -0.072148003\n\t\t 0.83668703 -0.54290801 -0.072664998 0.837282 -0.54192102 -0.072664998 0.837282 -0.54192102;\n\tsetAttr \".n[27058:27223]\" -type \"float3\"  -0.073458999 0.83762401 -0.54128498 -0.073092997\n\t\t 0.83698398 -0.54232299 -0.070439003 0.83681202 -0.54294002 -0.072664998 0.837282\n\t\t -0.54192102 -0.072148003 0.83668703 -0.54290801 -0.072148003 0.83668703 -0.54290801\n\t\t -0.069734998 0.83636397 -0.54372102 -0.070439003 0.83681202 -0.54294002 0.54158998\n\t\t 0.54446 -0.64050299 0.55069202 0.53833199 -0.63791698 0.549375 0.54000598 -0.63763702\n\t\t 0.549375 0.54000598 -0.63763702 0.54022598 0.54565799 -0.64063501 0.54158998 0.54446\n\t\t -0.64050299 0.52144402 0.53542203 -0.66439402 0.54158998 0.54446 -0.64050299 0.54022598\n\t\t 0.54565799 -0.64063501 0.54022598 0.54565799 -0.64063501 0.52126998 0.53656 -0.66361201\n\t\t 0.52144402 0.53542203 -0.66439402 0.50103498 0.50860399 -0.70020401 0.52144402 0.53542203\n\t\t -0.66439402 0.52126998 0.53656 -0.66361201 0.52126998 0.53656 -0.66361201 0.50272\n\t\t 0.51099098 -0.69725198 0.50103498 0.50860399 -0.70020401 0.49234501 0.48511201 -0.72267801\n\t\t 0.50103498 0.50860399 -0.70020401 0.50272 0.51099098 -0.69725198 0.50272 0.51099098\n\t\t -0.69725198 0.494317 0.487481 -0.71973097 0.49234501 0.48511201 -0.72267801 0.48873699\n\t\t 0.44463599 -0.75062299 0.49234501 0.48511201 -0.72267801 0.494317 0.487481 -0.71973097\n\t\t 0.494317 0.487481 -0.71973097 0.48998699 0.45846099 -0.741436 0.48873699 0.44463599\n\t\t -0.75062299 0.48873699 0.44463599 -0.75062299 0.48998699 0.45846099 -0.741436 0.49093199\n\t\t 0.42803201 -0.75879902 0.49093199 0.42803201 -0.75879902 0.49460301 0.42669699 -0.757164\n\t\t 0.48873699 0.44463599 -0.75062299 -0.061404999 0.84391302 -0.53295398 -0.061558001\n\t\t 0.84883797 -0.52505702 -0.060520001 0.84919798 -0.52459502 -0.060520001 0.84919798\n\t\t -0.52459502 -0.060702998 0.84415698 -0.53264898 -0.061404999 0.84391302 -0.53295398\n\t\t -0.061221998 0.84013599 -0.53890997 -0.061404999 0.84391302 -0.53295398 -0.060702998\n\t\t 0.84415698 -0.53264898 -0.061221998 0.85234702 -0.51937997 -0.060520001 0.84919798\n\t\t -0.52459502 -0.061558001 0.84883797 -0.52505702 -0.061558001 0.84883797 -0.52505702\n\t\t -0.062135998 0.85327297 -0.51775002 -0.061221998 0.85234702 -0.51937997 -0.062503003\n\t\t 0.83689201 -0.54378802 -0.061221998 0.84013599 -0.53890997 -0.060825001 0.84040201\n\t\t -0.53853899 -0.060702998 0.84415698 -0.53264898 -0.060825001 0.84040201 -0.53853899\n\t\t -0.061221998 0.84013599 -0.53890997 -0.060825001 0.84040201 -0.53853899 -0.062535003\n\t\t 0.83724099 -0.54324698 -0.062503003 0.83689201 -0.54378802 -0.065922 0.83577198 -0.54510599\n\t\t -0.062503003 0.83689201 -0.54378802 -0.062535003 0.83724099 -0.54324698 -0.062535003\n\t\t 0.83724099 -0.54324698 -0.066532001 0.83606601 -0.54457998 -0.065922 0.83577198 -0.54510599\n\t\t -0.069734998 0.83636397 -0.54372102 -0.065922 0.83577198 -0.54510599 -0.066532001\n\t\t 0.83606601 -0.54457998 -0.066532001 0.83606601 -0.54457998 -0.070439003 0.83681202\n\t\t -0.54294002 -0.069734998 0.83636397 -0.54372102 -0.074314997 0.97273803 0.219677\n\t\t -0.15296 0.97257102 0.175239 -0.028261 0.97809201 0.20624501 -0.028261 0.97809201\n\t\t 0.20624501 -3.1e-05 0.98017597 0.198129 -0.074314997 0.97273803 0.219677 -3.1e-05\n\t\t 0.98017597 0.198129 -0.028261 0.97809201 0.20624501 0 0.98576498 0.168129 0 0.98576498\n\t\t 0.168129 -9.2000002e-05 0.98584801 0.16764 -3.1e-05 0.98017597 0.198129 -9.2000002e-05\n\t\t 0.98584801 0.16764 0 0.98576498 0.168129 -9.2000002e-05 0.985879 0.167457 0.36962199\n\t\t 0.92388898 -0.099036001 0.36962101 0.923886 -0.099065997 0.61513799 0.67641997 -0.40504599\n\t\t 0.61513799 0.67641997 -0.40504599 0.68301499 0.70709503 -0.183053 0.36962199 0.92388898\n\t\t -0.099036001 0 1 0 0.36962101 0.923886 -0.099065997 0.36962199 0.92388898 -0.099036001\n\t\t 0.36962199 0.92388898 -0.099036001 0 1 0 0 1 0 0.68301499 0.70709503 -0.183053 0.61513799\n\t\t 0.67641997 -0.40504599 0.83708102 0.360829 -0.41121599 0.83708102 0.360829 -0.41121599\n\t\t 0.89239001 0.38268399 -0.239151 0.68301499 0.70709503 -0.183053 0.89239001 0.38268399\n\t\t -0.239151 0.83708102 0.360829 -0.41121599 0.91149199 0.0056159999 -0.41127899 0.91149199\n\t\t 0.0056159999 -0.41127899 0.96591502 0 -0.25885901 0.89239001 0.38268399 -0.239151\n\t\t 0.96591502 0 -0.25885901 0.91149199 0.0056159999 -0.41127899 0.863814 -0.28764299\n\t\t -0.41362599 0.863814 -0.28764299 -0.41362599 0.89597499 -0.335403 -0.29109001 0.96591502\n\t\t 0 -0.25885901 0.89597499 -0.335403 -0.29109001 0.863814 -0.28764299 -0.41362599 0.810866\n\t\t -0.31129599 -0.49557099 0.810866 -0.31129599 -0.49557099 0.737831 -0.537503 -0.40828499\n\t\t 0.89597499 -0.335403 -0.29109001 0.41832301 -0.88147801 -0.21909501 0.31294501 -0.90663701\n\t\t -0.28297499 0.39940101 -0.90329802 -0.15662301 0.39940101 -0.90329802 -0.15662301\n\t\t 0.45196 -0.88377601 -0.121131 0.41832301 -0.88147801 -0.21909501 0.45196 -0.88377601\n\t\t -0.121131 0.39940101 -0.90329802 -0.15662301 0.36962301 -0.92388898 -0.099036001\n\t\t 0.36962301 -0.92388898 -0.099036001 0.36964899 -0.92387903 -0.099035002 0.45196 -0.88377601\n\t\t -0.121131 0 1 0 0 1 0 -0.28400999 0.95579499 0.076113999 -0.28400999 0.95579499 0.076113999\n\t\t -0.28400999 0.95579499 0.076113999 0 1 0 -0.36964801 0.92387599 0.099064998 -0.28400999\n\t\t 0.95579499 0.076113999 -0.28400999 0.95579499 0.076113999 -0.28400999 0.95579499\n\t\t 0.076113999 -0.36964801 0.92387599 0.099064998 -0.36964801 0.92387599 0.099064998\n\t\t 0.32915199 0.91241002 -0.24324 0.32435399 0.91443598 -0.24207599 0.63766301 0.70141703\n\t\t -0.31843501 0.63766301 0.70141703 -0.31843501 0.640724 0.69828498 -0.31917199 0.32915199\n\t\t 0.91241002 -0.24324 -0.044192001 0.98719198 -0.15329599 0.32435399 0.91443598 -0.24207599\n\t\t 0.32915199 0.91241002 -0.24324 0.32915199 0.91241002 -0.24324 -0.038118999 0.98721099\n\t\t -0.15479399;\n\tsetAttr \".n[27224:27389]\" -type \"float3\"  -0.044192001 0.98719198 -0.15329599 0.640724\n\t\t 0.69828498 -0.31917199 0.63766301 0.70141703 -0.31843501 0.848212 0.380052 -0.36891299\n\t\t 0.848212 0.380052 -0.36891299 0.849033 0.37803701 -0.369095 0.640724 0.69828498 -0.31917199\n\t\t 0.849033 0.37803701 -0.369095 0.848212 0.380052 -0.36891299 0.92197299 0 -0.38725299\n\t\t 0.92197299 0 -0.38725299 0.92197299 0 -0.38725299 0.849033 0.37803701 -0.369095 0.92197299\n\t\t 0 -0.38725299 0.92197299 0 -0.38725299 0.84822202 -0.38005599 -0.36888599 0.84822202\n\t\t -0.38005599 -0.36888599 0.849033 -0.37803599 -0.36909401 0.92197299 0 -0.38725299\n\t\t 0.849033 -0.37803599 -0.36909401 0.84822202 -0.38005599 -0.36888599 0.63766301 -0.70141703\n\t\t -0.31843501 0.63766301 -0.70141703 -0.31843501 0.64072502 -0.69828397 -0.31917199\n\t\t 0.849033 -0.37803599 -0.36909401 0.64072502 -0.69828397 -0.31917199 0.63766301 -0.70141703\n\t\t -0.31843501 0.32435501 -0.91443598 -0.242075 0.32435501 -0.91443598 -0.242075 0.329153\n\t\t -0.91241002 -0.24324 0.64072502 -0.69828397 -0.31917199 0.329153 -0.91241002 -0.24324\n\t\t 0.32435501 -0.91443598 -0.242075 -0.044190999 -0.98719198 -0.15329599 -0.044190999\n\t\t -0.98719198 -0.15329599 -0.038118001 -0.98721099 -0.15479399 0.329153 -0.91241002\n\t\t -0.24324 -0.044192001 0.98719198 -0.15329599 -0.038118999 0.98721099 -0.15479399\n\t\t -0.320761 0.94332999 -0.085088998 -0.320761 0.94332999 -0.085088998 -0.32496899 0.94197398\n\t\t -0.084141001 -0.044192001 0.98719198 -0.15329599 -0.407882 0.91073698 -0.064730003\n\t\t -0.32496899 0.94197398 -0.084141001 -0.320761 0.94332999 -0.085088998 -0.320761 0.94332999\n\t\t -0.085088998 -0.407893 0.91073197 -0.064732 -0.407882 0.91073698 -0.064730003 -0.320761\n\t\t -0.943331 -0.085088998 -0.038118001 -0.98721099 -0.15479399 -0.044190999 -0.98719198\n\t\t -0.15329599 -0.044190999 -0.98719198 -0.15329599 -0.32496801 -0.941975 -0.084141001\n\t\t -0.320761 -0.943331 -0.085088998 -0.40791801 -0.910721 -0.064731002 -0.320761 -0.943331\n\t\t -0.085088998 -0.32496801 -0.941975 -0.084141001 -0.32496801 -0.941975 -0.084141001\n\t\t -0.407893 -0.91073197 -0.064732 -0.40791801 -0.910721 -0.064731002 0.25877401 0 0.96593797\n\t\t 0.258802 0 0.96592999 0.258802 0 0.96592999 0.258802 0 0.96592999 0.25877401 0 0.96593797\n\t\t 0.25877401 0 0.96593797 0.258802 -2.9999999e-05 0.96592999 0.25877401 0 0.96593797\n\t\t 0.25877401 0 0.96593797 0.25877401 0 0.96593797 0.258802 -2.9999999e-05 0.96592999\n\t\t 0.258802 -2.9999999e-05 0.96592999 0.25877401 -2.9999999e-05 0.96593797 0.258802\n\t\t -2.9999999e-05 0.96592999 0.258802 -2.9999999e-05 0.96592999 0.258802 -2.9999999e-05\n\t\t 0.96592999 0.25877401 0 0.96593797 0.25877401 -2.9999999e-05 0.96593797 0.258802\n\t\t 0 0.96592999 0.25877401 -2.9999999e-05 0.96593797 0.25877401 0 0.96593797 0.25877401\n\t\t 0 0.96593797 0.258802 0 0.96592999 0.258802 0 0.96592999 0.25877401 0 0.96593797\n\t\t 0.258802 0 0.96592999 0.258802 0 0.96592999 0.258802 0 0.96592999 0.25877401 0 0.96593797\n\t\t 0.25877401 0 0.96593797 0.25877401 3.1e-05 0.96593797 0.25877401 0 0.96593797 0.25877401\n\t\t 0 0.96593797 0.25877401 0 0.96593797 0.258802 3.1e-05 0.96592999 0.25877401 3.1e-05\n\t\t 0.96593797 0.25877401 0 0.96593797 0.25877401 3.1e-05 0.96593797 0.258802 3.1e-05\n\t\t 0.96592999 0.258802 3.1e-05 0.96592999 0.25877401 0 0.96593797 0.25877401 0 0.96593797\n\t\t 0.258802 0 0.96592999 0.25877401 0 0.96593797 0.25877401 0 0.96593797 0.25877401\n\t\t 0 0.96593797 0.258802 0 0.96592999 0.258802 0 0.96592999 0.258802 0 0.96592999 0.258802\n\t\t 0 0.96592999 0.25883099 0 0.96592301 0.25883099 0 0.96592301 0.25883099 0 0.96592301\n\t\t 0.258802 0 0.96592999 0.25883099 0 0.96592301 0.25883099 0 0.96592301 0.25883099\n\t\t 3.1e-05 0.96592301 0.25883099 3.1e-05 0.96592301 0.258867 6.0999999e-05 0.965913\n\t\t 0.25883099 0 0.96592301 0.25883099 0 0.96592301 0.25883099 0 0.96592301 0.258802\n\t\t 0 0.96592999 0.258802 0 0.96592999 0.258802 0 0.96592999 0.25883099 0 0.96592301\n\t\t 0.25883099 -2.9999999e-05 0.96592301 0.25883099 0 0.96592301 0.25883099 0 0.96592301\n\t\t 0.25883099 0 0.96592301 0.25885901 -2.9999999e-05 0.96591502 0.25883099 -2.9999999e-05\n\t\t 0.96592301 -0.25883099 0 -0.96592301 -0.258802 0 -0.96592999 -0.258802 0 -0.96592999\n\t\t -0.258802 0 -0.96592999 -0.258802 0 -0.96592999 -0.25883099 0 -0.96592301 -0.258802\n\t\t 0 -0.96592999 -0.258802 0 -0.96592999 -0.258802 0 -0.96592999 -0.258802 0 -0.96592999\n\t\t -0.258802 0 -0.96592999 -0.258802 0 -0.96592999 -0.258802 0 -0.96592999 -0.258802\n\t\t 0 -0.96592999 -0.258802 0 -0.96592999 -0.258802 0 -0.96592999 -0.258802 0 -0.96592999\n\t\t -0.258802 0 -0.96592999 -0.258802 0 -0.96592999 -0.258802 0 -0.96592999 -0.258802\n\t\t 0 -0.96592999 -0.258802 0 -0.96592999 -0.25883099 0 -0.96592301 -0.258802 0 -0.96592999\n\t\t -0.258802 0 -0.96592999 -0.258802 0 -0.96592999 -0.258802 0 -0.96592999 -0.258802\n\t\t 0 -0.96592999 -0.258802 0 -0.96592999 -0.258802 0 -0.96592999 -0.25883099 2.9999999e-05\n\t\t -0.96592301 -0.258802 0 -0.96592999 -0.258802 0 -0.96592999;\n\tsetAttr \".n[27390:27555]\" -type \"float3\"  -0.258802 0 -0.96592999 -0.25877401 0\n\t\t -0.96593797 -0.25883099 2.9999999e-05 -0.96592301 -0.258802 0 -0.96592999 -0.25883099\n\t\t 2.9999999e-05 -0.96592301 -0.25883099 0 -0.96592301 -0.25883099 0 -0.96592301 -0.25883099\n\t\t -3.1e-05 -0.96592301 -0.258802 0 -0.96592999 -0.258802 0 -0.96592999 -0.258802 0\n\t\t -0.96592999 -0.25883099 -3.1e-05 -0.96592301 -0.25883099 -3.1e-05 -0.96592301 -0.258802\n\t\t 6.0999999e-05 -0.96592999 -0.258802 0 -0.96592999 0.202402 0.799752 -0.56518197 0.185619\n\t\t 0.80571097 -0.56247199 0.50748301 0.61588901 -0.60261297 0.50748301 0.61588901 -0.60261297\n\t\t 0.61513799 0.67641997 -0.40504599 0.202402 0.799752 -0.56518197 -0.047579002 0.96791101\n\t\t -0.246747 0.185619 0.80571097 -0.56247199 0.202402 0.799752 -0.56518197 0.202402\n\t\t 0.799752 -0.56518197 -0.131385 0.86158299 -0.49031901 -0.047579002 0.96791101 -0.246747\n\t\t 0.61513799 0.67641997 -0.40504599 0.50748301 0.61588901 -0.60261297 0.74741501 0.33787799\n\t\t -0.57202202 0.74741501 0.33787799 -0.57202202 0.83708102 0.360829 -0.41121599 0.61513799\n\t\t 0.67641997 -0.40504599 0.83708102 0.360829 -0.41121599 0.74741501 0.33787799 -0.57202202\n\t\t 0.83885998 0.14295401 -0.52524102 0.83885998 0.14295401 -0.52524102 0.91149199 0.0056159999\n\t\t -0.41127899 0.83708102 0.360829 -0.41121599 -0.047579002 0.96791101 -0.246747 -0.131385\n\t\t 0.86158299 -0.49031901 -0.37685499 0.82771897 -0.41576701 -0.37685499 0.82771897\n\t\t -0.41576701 -0.33649901 0.91787899 -0.21039601 -0.047579002 0.96791101 -0.246747\n\t\t -0.42568001 0.88596898 -0.184 -0.33649901 0.91787899 -0.21039601 -0.37685499 0.82771897\n\t\t -0.41576701 -0.37685499 0.82771897 -0.41576701 -0.44929901 0.80255502 -0.39247301\n\t\t -0.42568001 0.88596898 -0.184 0.91149199 0.0056159999 -0.41127899 0.83885998 0.14295401\n\t\t -0.52524102 0.83043301 0.0093090003 -0.55703998 0.83043301 0.0093090003 -0.55703998\n\t\t 0.863814 -0.28764299 -0.41362599 0.91149199 0.0056159999 -0.41127899 0.810866 -0.31129599\n\t\t -0.49557099 0.863814 -0.28764299 -0.41362599 0.83043301 0.0093090003 -0.55703998\n\t\t 0.83043301 0.0093090003 -0.55703998 0.78245503 0.086034 -0.61673498 0.810866 -0.31129599\n\t\t -0.49557099 -0.224502 -0.68983501 -0.68827802 -0.18769 -0.68850201 -0.700526 -0.206801\n\t\t -0.68373299 -0.69981599 -0.206801 -0.68373299 -0.69981599 -0.241836 -0.674236 -0.697797\n\t\t -0.224502 -0.68983501 -0.68827802 -0.204052 -0.69522899 -0.68921697 -0.18769 -0.68850201\n\t\t -0.700526 -0.224502 -0.68983501 -0.68827802 -0.224502 -0.68983501 -0.68827802 -0.231886\n\t\t -0.70606399 -0.66910499 -0.204052 -0.69522899 -0.68921697 -0.019409999 -0.49651599\n\t\t -0.86781102 0.148202 -0.37938601 -0.91329199 0.148047 -0.37956199 -0.91324401 0.148047\n\t\t -0.37956199 -0.91324401 -0.019654 -0.49660799 -0.86775202 -0.019409999 -0.49651599\n\t\t -0.86781102 -0.218335 -0.53588903 -0.81556898 -0.019409999 -0.49651599 -0.86781102\n\t\t -0.019654 -0.49660799 -0.86775202 -0.019654 -0.49660799 -0.86775202 -0.218637 -0.53588003\n\t\t -0.815494 -0.218335 -0.53588903 -0.81556898 -0.36840099 -0.51565802 -0.77354801 -0.218335\n\t\t -0.53588903 -0.81556898 -0.218637 -0.53588003 -0.815494 -0.218637 -0.53588003 -0.815494\n\t\t -0.373245 -0.51375401 -0.772493 -0.36840099 -0.51565802 -0.77354801 -0.41677201 -0.49581701\n\t\t -0.76188397 -0.36840099 -0.51565802 -0.77354801 -0.373245 -0.51375401 -0.772493 -0.373245\n\t\t -0.51375401 -0.772493 -0.41677201 -0.49581701 -0.76188397 -0.41677201 -0.49581701\n\t\t -0.76188397 0.26191601 -0.205944 -0.94286102 0.148047 -0.37956199 -0.91324401 0.148202\n\t\t -0.37938601 -0.91329199 0.148202 -0.37938601 -0.91329199 0.26198 -0.205824 -0.94287002\n\t\t 0.26191601 -0.205944 -0.94286102 0.30033499 -2.9999999e-05 -0.953834 0.26191601 -0.205944\n\t\t -0.94286102 0.26198 -0.205824 -0.94287002 0.26198 -0.205824 -0.94287002 0.30033499\n\t\t -2.9999999e-05 -0.953834 0.30033499 -2.9999999e-05 -0.953834 0.261886 0.205975 -0.94286299\n\t\t 0.30033499 -2.9999999e-05 -0.953834 0.30033499 -2.9999999e-05 -0.953834 0.30033499\n\t\t -2.9999999e-05 -0.953834 0.26191801 0.205915 -0.94286698 0.261886 0.205975 -0.94286299\n\t\t 0.148048 0.379536 -0.91325498 0.261886 0.205975 -0.94286299 0.26191801 0.205915 -0.94286698\n\t\t 0.26191801 0.205915 -0.94286698 0.148233 0.37935799 -0.91329801 0.148048 0.379536\n\t\t -0.91325498 -0.019655 0.49660799 -0.86775202 0.148048 0.379536 -0.91325498 0.148233\n\t\t 0.37935799 -0.91329801 0.148233 0.37935799 -0.91329801 -0.019409999 0.49651501 -0.86781102\n\t\t -0.019655 0.49660799 -0.86775202 -0.218637 0.53588003 -0.815494 -0.019655 0.49660799\n\t\t -0.86775202 -0.019409999 0.49651501 -0.86781102 -0.019409999 0.49651501 -0.86781102\n\t\t -0.218307 0.53589302 -0.81557399 -0.218637 0.53588003 -0.815494 -0.37324801 0.51378798\n\t\t -0.77246797 -0.218637 0.53588003 -0.815494 -0.218307 0.53589302 -0.81557399 -0.218307\n\t\t 0.53589302 -0.81557399 -0.368431 0.51568699 -0.77351499 -0.37324801 0.51378798 -0.77246797\n\t\t -0.41677201 0.49581599 -0.76188397 -0.37324801 0.51378798 -0.77246797 -0.368431 0.51568699\n\t\t -0.77351499 -0.368431 0.51568699 -0.77351499 -0.41677201 0.49581599 -0.76188397 -0.41677201\n\t\t 0.49581599 -0.76188397 0.39449 0.91890001 0 0.566127 0.82431799 0 0.56616199 0.82429397\n\t\t 0 0.56616199 0.82429397 0 0.42238399 0.90641701 0 0.39449 0.91890001 0 0 1 0 0.39449\n\t\t 0.91890001 0 0.42238399 0.90641701 0 0.42238399 0.90641701 0 -0.047579002 0.96791101\n\t\t -0.246747 0 1 0 0.95072299 0.31004101 0 0.89906001 0.43782601 -3.1e-05 0.89908999\n\t\t 0.437765 0 0.89908999 0.437765 0 0.94819099 0.317702 0 0.95072299 0.31004101 0 0.98132497\n\t\t 0.192359 0;\n\tsetAttr \".n[27556:27721]\" -type \"float3\"  0.95072299 0.31004101 0 0.94819099 0.317702\n\t\t 0 0.94819099 0.317702 0 0.98132998 0.192329 0 0.98132497 0.192359 0 -0.30067599 0.95372599\n\t\t 0 0 1 0 -0.047579002 0.96791101 -0.246747 -0.047579002 0.96791101 -0.246747 -0.33649901\n\t\t 0.91787899 -0.21039601 -0.30067599 0.95372599 0 -0.39085701 0.920452 0 -0.30067599\n\t\t 0.95372599 0 -0.33649901 0.91787899 -0.21039601 -0.33649901 0.91787899 -0.21039601\n\t\t -0.42568001 0.88596898 -0.184 -0.39085701 0.920452 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1\n\t\t 0 0 1 0 0 1 0 0 1 0 0.0037229999 0.99999201 0.001465 0.0037229999 0.99999201 0.001465\n\t\t 0.001709 0.99999797 0.001282 0 1 0 -0.96139199 -0.261002 -0.087194003 -0.9077 -0.236127\n\t\t -0.34687999 -0.85059601 -0.35234299 -0.39030799 -0.85059601 -0.35234299 -0.39030799\n\t\t -0.86863798 -0.42263001 -0.25855899 -0.96139199 -0.261002 -0.087194003 -0.95639098\n\t\t -0.194745 -0.217696 -0.9077 -0.236127 -0.34687999 -0.96139199 -0.261002 -0.087194003\n\t\t -0.96139199 -0.261002 -0.087194003 -0.96574599 -0.25623801 -0.040957 -0.95639098\n\t\t -0.194745 -0.217696 -0.104772 -0.25770301 -0.960527 -0.101507 -0.25590399 -0.96135801\n\t\t -0.114111 -0.26289099 -0.95805401 -0.114111 -0.26289099 -0.95805401 -0.117284 -0.26462901\n\t\t -0.957192 -0.104772 -0.25770301 -0.960527 -0.82814199 -0.194897 -0.52554297 -0.716344\n\t\t -0.2581 -0.648256 -0.85059601 -0.35234299 -0.39030799 -0.85059601 -0.35234299 -0.39030799\n\t\t -0.9077 -0.236127 -0.34687999 -0.82814199 -0.194897 -0.52554297 -0.85059601 -0.35234299\n\t\t -0.39030799 -0.75715899 -0.32332399 -0.56760198 -0.77369201 -0.488888 -0.40297601\n\t\t -0.77369201 -0.488888 -0.40297601 -0.86863798 -0.42263001 -0.25855899 -0.85059601\n\t\t -0.35234299 -0.39030799 -0.77369201 -0.488888 -0.40297601 -0.75715899 -0.32332399\n\t\t -0.56760198 -0.695337 -0.143316 -0.70424902 -0.695337 -0.143316 -0.70424902 -0.75876898\n\t\t -0.33790901 -0.55685401 -0.77369201 -0.488888 -0.40297601 -0.75876898 -0.33790901\n\t\t -0.55685401 -0.695337 -0.143316 -0.70424902 -0.71715301 -0.298453 -0.62977499 -0.71715301\n\t\t -0.298453 -0.62977499 -0.71601099 -0.30406299 -0.62839001 -0.75876898 -0.33790901\n\t\t -0.55685401 -0.71601099 -0.30406299 -0.62839001 -0.71715301 -0.298453 -0.62977499\n\t\t -0.68045402 -0.197978 -0.70554101 -0.68045402 -0.197978 -0.70554101 -0.69550401 -0.231214\n\t\t -0.680305 -0.71601099 -0.30406299 -0.62839001 -0.69550401 -0.231214 -0.680305 -0.68045402\n\t\t -0.197978 -0.70554101 -0.61892802 -0.163857 -0.76816601 -0.61892802 -0.163857 -0.76816601\n\t\t -0.65989298 -0.26008701 -0.70490903 -0.69550401 -0.231214 -0.680305 -0.62146002 -0.28724599\n\t\t -0.72888798 -0.65989298 -0.26008701 -0.70490903 -0.61892802 -0.163857 -0.76816601\n\t\t -0.61892802 -0.163857 -0.76816601 -0.58881801 -0.130106 -0.79772598 -0.62146002 -0.28724599\n\t\t -0.72888798 -0.62146002 -0.28724599 -0.72888798 -0.58881801 -0.130106 -0.79772598\n\t\t -0.59873301 -0.232071 -0.76659101 -0.59873301 -0.232071 -0.76659101 -0.61462301 -0.44191599\n\t\t -0.653413 -0.62146002 -0.28724599 -0.72888798 -0.59951198 0.025513001 -0.799959 -0.68045402\n\t\t -0.197978 -0.70554101 -0.71715301 -0.298453 -0.62977499 -0.71715301 -0.298453 -0.62977499\n\t\t -0.639952 -0.097691 -0.76217997 -0.59951198 0.025513001 -0.799959 -0.68045402 -0.197978\n\t\t -0.70554101 -0.59951198 0.025513001 -0.799959 -0.58263999 -0.024629001 -0.81235701\n\t\t -0.58263999 -0.024629001 -0.81235701 -0.61892802 -0.163857 -0.76816601 -0.68045402\n\t\t -0.197978 -0.70554101 -0.14682899 0.64063299 -0.75367802 -0.13153701 0.64712501 -0.75095099\n\t\t -0.143043 0.649903 -0.74643499 -0.143043 0.649903 -0.74643499 -0.158243 0.62522101\n\t\t -0.76423699 -0.14682899 0.64063299 -0.75367802 -0.716344 -0.2581 -0.648256 -0.69967902\n\t\t -0.122778 -0.70382899 -0.75715899 -0.32332399 -0.56760198 -0.75715899 -0.32332399\n\t\t -0.56760198 -0.85059601 -0.35234299 -0.39030799 -0.716344 -0.2581 -0.648256 -0.695337\n\t\t -0.143316 -0.70424902 -0.75715899 -0.32332399 -0.56760198 -0.69967902 -0.122778 -0.70382899\n\t\t -0.69967902 -0.122778 -0.70382899 -0.573856 0.076053999 -0.81541699 -0.695337 -0.143316\n\t\t -0.70424902 -0.176889 0.605528 -0.77591598 -0.14682899 0.64063299 -0.75367802 -0.158243\n\t\t 0.62522101 -0.76423699 -0.695337 -0.143316 -0.70424902 -0.573856 0.076053999 -0.81541699\n\t\t -0.50511998 0.24216799 -0.82837701 -0.50511998 0.24216799 -0.82837701 -0.49041799\n\t\t 0.27391201 -0.82732201 -0.695337 -0.143316 -0.70424902 -0.158243 0.62522101 -0.76423699\n\t\t -0.177101 0.61550498 -0.767977 -0.176889 0.605528 -0.77591598 -0.189647 0.59485298\n\t\t -0.78114301 -0.201949 0.57102197 -0.795708 -0.176889 0.605528 -0.77591598 -0.176889\n\t\t 0.605528 -0.77591598 -0.177101 0.61550498 -0.767977 -0.189647 0.59485298 -0.78114301\n\t\t -0.17325599 0.27219799 -0.94651502 -0.140111 0.27826899 -0.95022899 -0.14261501 0.27781299\n\t\t -0.94998997 -0.14261501 0.27781299 -0.94998997 -0.176093 0.27167699 -0.946141 -0.17325599\n\t\t 0.27219799 -0.94651502 -0.89425302 -0.104804 -0.43511701 -0.82814199 -0.194897 -0.52554297\n\t\t -0.9077 -0.236127 -0.34687999 -0.9077 -0.236127 -0.34687999 -0.95639098 -0.194745\n\t\t -0.217696 -0.89425302 -0.104804 -0.43511701 -0.59873301 -0.232071 -0.76659101 -0.58881801\n\t\t -0.130106 -0.79772598 -0.53753 0.017914001 -0.84305501 -0.53753 0.017914001 -0.84305501\n\t\t -0.549797 -0.01584 -0.83514798 -0.59873301 -0.232071 -0.76659101 -0.088751003 0.71140701\n\t\t -0.69715399 -0.079076 0.72437698 -0.68485397 -0.129797 0.66564602 -0.73489302 -0.129797\n\t\t 0.66564602 -0.73489302 -0.123205 0.65890402 -0.74206901;\n\tsetAttr \".n[27722:27887]\" -type \"float3\"  -0.088751003 0.71140701 -0.69715399 -0.12799899\n\t\t 0.65683901 -0.74308699 -0.123205 0.65890402 -0.74206901 -0.129797 0.66564602 -0.73489302\n\t\t -0.129797 0.66564602 -0.73489302 -0.140661 0.66515702 -0.73333597 -0.12799899 0.65683901\n\t\t -0.74308699 -0.53753 0.017914001 -0.84305501 -0.58881801 -0.130106 -0.79772598 -0.61892802\n\t\t -0.163857 -0.76816601 -0.61892802 -0.163857 -0.76816601 -0.426779 0.0048830002 -0.90434301\n\t\t -0.53753 0.017914001 -0.84305501 -0.162609 0.59147203 -0.78975898 -0.148904 0.62253499\n\t\t -0.768296 -0.162669 0.68973899 -0.70554799 -0.162669 0.68973899 -0.70554799 -0.175273\n\t\t 0.58945101 -0.78855997 -0.162609 0.59147203 -0.78975898 -0.175273 0.58945101 -0.78855997\n\t\t -0.162669 0.68973899 -0.70554799 -0.174845 0.69220501 -0.70020097 -0.174845 0.69220501\n\t\t -0.70020097 -0.190072 0.66115999 -0.72576898 -0.175273 0.58945101 -0.78855997 -0.639952\n\t\t -0.097691 -0.76217997 -0.49444699 0.29030201 -0.81929702 -0.51223499 0.190653 -0.83741701\n\t\t -0.51223499 0.190653 -0.83741701 -0.59951198 0.025513001 -0.799959 -0.639952 -0.097691\n\t\t -0.76217997 -0.59951198 0.025513001 -0.799959 -0.51223499 0.190653 -0.83741701 -0.39519101\n\t\t 0.020051001 -0.91838002 -0.39519101 0.020051001 -0.91838002 -0.58263999 -0.024629001\n\t\t -0.81235701 -0.59951198 0.025513001 -0.799959 -0.61892802 -0.163857 -0.76816601 -0.58263999\n\t\t -0.024629001 -0.81235701 -0.39519101 0.020051001 -0.91838002 -0.39519101 0.020051001\n\t\t -0.91838002 -0.426779 0.0048830002 -0.90434301 -0.61892802 -0.163857 -0.76816601\n\t\t -0.426779 0.0048830002 -0.90434301 -0.39519101 0.020051001 -0.91838002 -0.131567\n\t\t 0.057069998 -0.989663 -0.131567 0.057069998 -0.989663 -0.129005 0.052432001 -0.99025702\n\t\t -0.426779 0.0048830002 -0.90434301 -0.039645001 0.99270099 0.113898 -0.040194001\n\t\t 0.99253798 0.115118 -0.038515002 0.99303001 0.111395 -0.038515002 0.99303001 0.111395\n\t\t -0.037935998 0.993191 0.110144 -0.039645001 0.99270099 0.113898 -0.59055299 0.65183598\n\t\t -0.47576901 -0.56277901 0.68824399 -0.457822 -0.56564301 0.684668 -0.45965001 -0.56564301\n\t\t 0.684668 -0.45965001 -0.59308201 0.64835203 -0.47738299 -0.59055299 0.65183598 -0.47576901\n\t\t -0.17402101 -0.24906901 -0.95272303 -0.191386 -0.250563 -0.94899398 -0.190317 -0.25047001\n\t\t -0.94923401 -0.190317 -0.25047001 -0.94923401 -0.173013 -0.24897601 -0.95293099 -0.17402101\n\t\t -0.24906901 -0.95272303 -0.185528 0.668405 -0.72028798 -0.18467499 0.65025401 -0.73693001\n\t\t -0.18516199 0.65741903 -0.73042202 -0.18516199 0.65741903 -0.73042202 -0.185892 0.67676097\n\t\t -0.71234697 -0.185528 0.668405 -0.72028798 -0.185528 0.668405 -0.72028798 -0.185892\n\t\t 0.67676097 -0.71234697 -0.186992 0.69504601 -0.69422197 -0.186992 0.69504601 -0.69422197\n\t\t -0.187539 0.68691999 -0.70211798 -0.185528 0.668405 -0.72028798 -0.18638 0.64099199\n\t\t -0.74457401 -0.18516199 0.65741903 -0.73042202 -0.18467499 0.65025401 -0.73693001\n\t\t -0.18467499 0.65025401 -0.73693001 -0.18619899 0.636114 -0.74879199 -0.18638 0.64099199\n\t\t -0.74457401 -0.18790799 0.62521899 -0.75748998 -0.18638 0.64099199 -0.74457401 -0.18619899\n\t\t 0.636114 -0.74879199 -0.18619899 0.636114 -0.74879199 -0.186838 0.61318803 -0.76752299\n\t\t -0.18790799 0.62521899 -0.75748998 -0.18687201 0.70036501 -0.68888903 -0.187539 0.68691999\n\t\t -0.70211798 -0.186992 0.69504601 -0.69422197 -0.186992 0.69504601 -0.69422197 -0.186901\n\t\t 0.70036101 -0.68888497 -0.18687201 0.70036501 -0.68888903 -0.18805701 0.60176897\n\t\t -0.776214 -0.18790799 0.62521899 -0.75748998 -0.186838 0.61318803 -0.76752299 -0.186838\n\t\t 0.61318803 -0.76752299 -0.187324 0.59544998 -0.78124797 -0.18805701 0.60176897 -0.776214\n\t\t -0.18805701 0.60176897 -0.776214 -0.187324 0.59544998 -0.78124797 -0.191568 0.58630103\n\t\t -0.787117 -0.191568 0.58630103 -0.787117 -0.19190601 0.58585 -0.78737003 -0.18805701\n\t\t 0.60176897 -0.776214 -0.224654 0.25877401 -0.93945003 -0.180704 0.272322 -0.945086\n\t\t -0.21433701 0.27375701 -0.937612 -0.21433701 0.27375701 -0.937612 -0.22621 0.25831601\n\t\t -0.93920302 -0.224654 0.25877401 -0.93945003 -0.20902599 0.27137601 -0.939502 -0.21433701\n\t\t 0.27375701 -0.937612 -0.180704 0.272322 -0.945086 -0.180704 0.272322 -0.945086 -0.22022399\n\t\t 0.27341801 -0.93634599 -0.20902599 0.27137601 -0.939502 -0.212079 0.26423699 -0.94085097\n\t\t -0.20902599 0.27137601 -0.939502 -0.22022399 0.27341801 -0.93634599 -0.22022399 0.27341801\n\t\t -0.93634599 -0.21393999 0.26664701 -0.939749 -0.212079 0.26423699 -0.94085097 -0.186318\n\t\t 0.26713201 -0.94547701 -0.212079 0.26423699 -0.94085097 -0.21393999 0.26664701 -0.939749\n\t\t -0.21393999 0.26664701 -0.939749 -0.206921 0.25578299 -0.94432998 -0.186318 0.26713201\n\t\t -0.94547701 -0.186318 0.26713201 -0.94547701 -0.206921 0.25578299 -0.94432998 -0.041322999\n\t\t 0.33125201 -0.94263703 -0.041322999 0.33125201 -0.94263703 -0.000275 0.34892499 -0.93715101\n\t\t -0.186318 0.26713201 -0.94547701 0 -0.221265 -0.975214 0 -0.221265 -0.975214 -2.9999999e-05\n\t\t -0.221265 -0.975214 -2.9999999e-05 -0.221265 -0.975214 -2.9999999e-05 -0.221265 -0.975214\n\t\t 0 -0.221265 -0.975214 -0.000153 0.77783102 -0.62847298 -9.2000002e-05 0.77784598\n\t\t -0.62845403 -9.2000002e-05 0.77784598 -0.62845403 -9.2000002e-05 0.77784598 -0.62845403\n\t\t -0.000153 0.77784598 -0.62845403 -0.000153 0.77783102 -0.62847298 -0.000153 0.77783102\n\t\t -0.62847298 -0.000153 0.77784598 -0.62845403 -0.000183 0.78085101 -0.624717 -0.000183\n\t\t 0.78085101 -0.624717 -0.000183 0.7791 -0.62690002 -0.000153 0.77783102 -0.62847298\n\t\t -3.1e-05 0.77789998 -0.62838799 -9.2000002e-05 0.77784598 -0.62845403 -9.2000002e-05\n\t\t 0.77784598 -0.62845403 -9.2000002e-05 0.77784598 -0.62845403 -3.1e-05 0.777969 -0.62830198\n\t\t -3.1e-05 0.77789998 -0.62838799 9.1000002e-05 0.778337 -0.627846 -3.1e-05 0.77789998\n\t\t -0.62838799 -3.1e-05 0.777969 -0.62830198;\n\tsetAttr \".n[27888:28053]\" -type \"float3\"  -3.1e-05 0.777969 -0.62830198 0.000122\n\t\t 0.77897799 -0.62705201 9.1000002e-05 0.778337 -0.627846 -9.2000002e-05 0.782085 -0.62317199\n\t\t -0.000183 0.7791 -0.62690002 -0.000183 0.78085101 -0.624717 -0.000183 0.78085101\n\t\t -0.624717 -9.2000002e-05 0.78210002 -0.62315297 -9.2000002e-05 0.782085 -0.62317199\n\t\t 0.000122 0.77939898 -0.62652802 9.1000002e-05 0.778337 -0.627846 0.000122 0.77897799\n\t\t -0.62705201 0.000122 0.77897799 -0.62705201 0.000122 0.779724 -0.62612301 0.000122\n\t\t 0.77939898 -0.62652802 0.000122 0.77939898 -0.62652802 0.000122 0.779724 -0.62612301\n\t\t 9.1000002e-05 0.77983499 -0.62598598 9.1000002e-05 0.77983499 -0.62598598 9.1000002e-05\n\t\t 0.77982002 -0.62600398 0.000122 0.77939898 -0.62652802 0.0052800002 0.33070701 -0.94371903\n\t\t 0.025697 0.34956199 -0.93656099 0.000183 0.327075 -0.94499803 0.000183 0.327075 -0.94499803\n\t\t 0 0.32701099 -0.94502097 0.0052800002 0.33070701 -0.94371903 0.080631003 0.34501499\n\t\t -0.93512702 0.025697 0.34956199 -0.93656099 0.0052800002 0.33070701 -0.94371903 0.0052800002\n\t\t 0.33070701 -0.94371903 0.021607 0.33110201 -0.94334698 0.080631003 0.34501499 -0.93512702\n\t\t 0.080631003 0.34501499 -0.93512702 0.021607 0.33110201 -0.94334698 0.003357 0.321394\n\t\t -0.94694 0.003357 0.321394 -0.94694 0.070377998 0.33904001 -0.93813598 0.080631003\n\t\t 0.34501499 -0.93512702 0.18513 0.403649 -0.89598799 0.080631003 0.34501499 -0.93512702\n\t\t 0.070377998 0.33904001 -0.93813598 0.070377998 0.33904001 -0.93813598 0.270524 0.43285599\n\t\t -0.859914 0.18513 0.403649 -0.89598799 0.130255 0.392658 -0.91041398 0.025697 0.34956199\n\t\t -0.93656099 0.080631003 0.34501499 -0.93512702 0.080631003 0.34501499 -0.93512702\n\t\t 0.18513 0.403649 -0.89598799 0.130255 0.392658 -0.91041398 6.0999999e-05 0.32289401\n\t\t -0.94643497 0.070377998 0.33904001 -0.93813598 0.003357 0.321394 -0.94694 0.003357\n\t\t 0.321394 -0.94694 -6.0999999e-05 0.32289401 -0.94643497 6.0999999e-05 0.32289401\n\t\t -0.94643497 6.0999999e-05 0.32289401 -0.94643497 -6.0999999e-05 0.32289401 -0.94643497\n\t\t 0 0.32267499 -0.94651002 0 0.32267499 -0.94651002 0 0.32267499 -0.94651002 6.0999999e-05\n\t\t 0.32289401 -0.94643497 -0.000275 0.418991 0.90799099 -0.00030499999 0.41896501 0.90800202\n\t\t -0.00030499999 0.41896501 0.90800202 -0.00030499999 0.41896501 0.90800202 -0.000275\n\t\t 0.418991 0.90799099 -0.000275 0.418991 0.90799099 -0.60906702 -0.27921799 -0.74234402\n\t\t -0.61050701 -0.27848801 -0.74143499 -0.59548199 -0.28617501 -0.75067002 -0.59548199\n\t\t -0.28617501 -0.75067002 -0.59549397 -0.28627199 -0.750624 -0.60906702 -0.27921799\n\t\t -0.74234402 -0.61050701 -0.27848801 -0.74143499 -0.60906702 -0.27921799 -0.74234402\n\t\t -0.653938 -0.259018 -0.71082699 -0.653938 -0.259018 -0.71082699 -0.65765899 -0.25712499\n\t\t -0.708076 -0.61050701 -0.27848801 -0.74143499 -0.65765899 -0.25712499 -0.708076 -0.653938\n\t\t -0.259018 -0.71082699 -0.69693899 -0.237288 -0.67673498 -0.69693899 -0.237288 -0.67673498\n\t\t -0.69840199 -0.238722 -0.67471898 -0.65765899 -0.25712499 -0.708076 -0.69840199 -0.238722\n\t\t -0.67471898 -0.69693899 -0.237288 -0.67673498 -0.72785401 -0.244826 -0.64053798 -0.72785401\n\t\t -0.244826 -0.64053798 -0.72949302 -0.25349 -0.63528103 -0.69840199 -0.238722 -0.67471898\n\t\t -0.72949302 -0.25349 -0.63528103 -0.72785401 -0.244826 -0.64053798 -0.77545899 -0.28367499\n\t\t -0.56408399 -0.77545899 -0.28367499 -0.56408399 -0.77381998 -0.304645 -0.55533201\n\t\t -0.72949302 -0.25349 -0.63528103 -0.77381998 -0.304645 -0.55533201 -0.77545899 -0.28367499\n\t\t -0.56408399 -0.81830901 -0.43267 -0.37837601 -0.81830901 -0.43267 -0.37837601 -0.79663599\n\t\t -0.47612599 -0.372392 -0.77381998 -0.304645 -0.55533201 -0.79663599 -0.47612599 -0.372392\n\t\t -0.81830901 -0.43267 -0.37837601 -0.885077 -0.39509699 -0.246043 -0.885077 -0.39509699\n\t\t -0.246043 -0.87844002 -0.41591901 -0.235274 -0.79663599 -0.47612599 -0.372392 -0.87844002\n\t\t -0.41591901 -0.235274 -0.885077 -0.39509699 -0.246043 -0.95489299 -0.24516299 -0.16755199\n\t\t -0.95489299 -0.24516299 -0.16755199 -0.95731902 -0.23725501 -0.165077 -0.87844002\n\t\t -0.41591901 -0.235274 -0.95731902 -0.23725501 -0.165077 -0.95489299 -0.24516299 -0.16755199\n\t\t -0.96618301 -0.1974 -0.165903 -0.96618301 -0.1974 -0.165903 -0.96755397 -0.192974\n\t\t -0.163095 -0.95731902 -0.23725501 -0.165077 -0.96755397 -0.192974 -0.163095 -0.96618301\n\t\t -0.1974 -0.165903 -0.97639698 -0.161477 -0.14343999 -0.97639698 -0.161477 -0.14343999\n\t\t -0.97749501 -0.157051 -0.140846 -0.96755397 -0.192974 -0.163095 -0.97749501 -0.157051\n\t\t -0.140846 -0.97639698 -0.161477 -0.14343999 -0.98379898 -0.127694 -0.12583201 -0.98379898\n\t\t -0.127694 -0.12583201 -0.98356801 -0.12790599 -0.127417 -0.97749501 -0.157051 -0.140846\n\t\t -0.98948097 -0.105138 -0.099368997 -0.98356801 -0.12790599 -0.127417 -0.98379898\n\t\t -0.127694 -0.12583201 -0.98379898 -0.127694 -0.12583201 -0.99015701 -0.085574999\n\t\t -0.110753 -0.98948097 -0.105138 -0.099368997 -0.98948097 -0.105138 -0.099368997 -0.99015701\n\t\t -0.085574999 -0.110753 -0.99135602 -0.126747 -0.033876002 -0.99135602 -0.126747 -0.033876002\n\t\t -0.98754698 -0.15732799 0 -0.98948097 -0.105138 -0.099368997 -0.725582 -0.392257\n\t\t -0.56538898 -0.733778 -0.38073 -0.56268603 -0.76197898 -0.32271299 -0.56146598 -0.76197898\n\t\t -0.32271299 -0.56146598 -0.73294502 -0.38573 -0.56036001 -0.725582 -0.392257 -0.56538898\n\t\t -0.725582 -0.392257 -0.56538898 -0.73294502 -0.38573 -0.56036001 -0.69379097 -0.42043099\n\t\t -0.58471501 -0.69379097 -0.42043099 -0.58471501 -0.68705398 -0.42608199 -0.58856702\n\t\t -0.725582 -0.392257 -0.56538898 -0.65646398 -0.44777599 -0.60708499 -0.68705398 -0.42608199\n\t\t -0.58856702 -0.69379097 -0.42043099 -0.58471501 -0.69379097 -0.42043099 -0.58471501\n\t\t -0.65547198 -0.438752 -0.61469799 -0.65646398 -0.44777599 -0.60708499 -0.64131498\n\t\t -0.460821 -0.61348099;\n\tsetAttr \".n[28054:28219]\" -type \"float3\"  -0.65646398 -0.44777599 -0.60708499 -0.65547198\n\t\t -0.438752 -0.61469799 -0.65547198 -0.438752 -0.61469799 -0.63904399 -0.429254 -0.63824999\n\t\t -0.64131498 -0.460821 -0.61348099 -0.643897 -0.46542001 -0.607274 -0.64131498 -0.460821\n\t\t -0.61348099 -0.63904399 -0.429254 -0.63824999 -0.63904399 -0.429254 -0.63824999 -0.65087903\n\t\t -0.43242401 -0.62399203 -0.643897 -0.46542001 -0.607274 -0.59230697 -0.46461701 -0.65825802\n\t\t -0.63904399 -0.429254 -0.63824999 -0.65547198 -0.438752 -0.61469799 -0.65547198 -0.438752\n\t\t -0.61469799 -0.60303301 -0.48196301 -0.63565898 -0.59230697 -0.46461701 -0.65825802\n\t\t -0.569399 -0.45443299 -0.68503702 -0.65087903 -0.43242401 -0.62399203 -0.63904399\n\t\t -0.429254 -0.63824999 -0.63904399 -0.429254 -0.63824999 -0.59230697 -0.46461701 -0.65825802\n\t\t -0.569399 -0.45443299 -0.68503702 -0.78040302 -0.29820201 -0.54958701 -0.76197898\n\t\t -0.32271299 -0.56146598 -0.733778 -0.38073 -0.56268603 -0.76197898 -0.32271299 -0.56146598\n\t\t -0.78040302 -0.29820201 -0.54958701 -0.79189903 -0.22800601 -0.56648803 -0.79189903\n\t\t -0.22800601 -0.56648803 -0.768143 -0.236404 -0.59503698 -0.76197898 -0.32271299 -0.56146598\n\t\t -0.79189903 -0.22800601 -0.56648803 -0.78040302 -0.29820201 -0.54958701 -0.82611901\n\t\t -0.226604 -0.51592398 -0.82611901 -0.226604 -0.51592398 -0.82798398 -0.18165 -0.530514\n\t\t -0.79189903 -0.22800601 -0.56648803 -0.83547699 -0.239031 -0.49481601 -0.82611901\n\t\t -0.226604 -0.51592398 -0.78040302 -0.29820201 -0.54958701 -0.78040302 -0.29820201\n\t\t -0.54958701 -0.75111401 -0.354545 -0.556889 -0.83547699 -0.239031 -0.49481601 -0.733778\n\t\t -0.38073 -0.56268603 -0.75111401 -0.354545 -0.556889 -0.78040302 -0.29820201 -0.54958701\n\t\t -0.82798398 -0.18165 -0.530514 -0.82611901 -0.226604 -0.51592398 -0.866373 -0.175484\n\t\t -0.46755099 -0.866373 -0.175484 -0.46755099 -0.856942 -0.150123 -0.493065 -0.82798398\n\t\t -0.18165 -0.530514 -0.856942 -0.150123 -0.493065 -0.866373 -0.175484 -0.46755099\n\t\t -0.89933002 -0.13059101 -0.41731501 -0.89933002 -0.13059101 -0.41731501 -0.88843298\n\t\t -0.105687 -0.44667301 -0.856942 -0.150123 -0.493065 -0.90876698 -0.136177 -0.39445901\n\t\t -0.89933002 -0.13059101 -0.41731501 -0.866373 -0.175484 -0.46755099 -0.866373 -0.175484\n\t\t -0.46755099 -0.88315499 -0.161293 -0.44047901 -0.90876698 -0.136177 -0.39445901 -0.88315499\n\t\t -0.161293 -0.44047901 -0.866373 -0.175484 -0.46755099 -0.82611901 -0.226604 -0.51592398\n\t\t -0.82611901 -0.226604 -0.51592398 -0.83547699 -0.239031 -0.49481601 -0.88315499 -0.161293\n\t\t -0.44047901 -0.88843298 -0.105687 -0.44667301 -0.89933002 -0.13059101 -0.41731501\n\t\t -0.91050297 -0.079075001 -0.40587199 -0.91050297 -0.079075001 -0.40587199 -0.90360498\n\t\t -0.027070999 -0.42750999 -0.88843298 -0.105687 -0.44667301 -0.90360498 -0.027070999\n\t\t -0.42750999 -0.91050297 -0.079075001 -0.40587199 -0.89954799 -0.023134001 -0.43620801\n\t\t -0.89954799 -0.023134001 -0.43620801 -0.89365703 0.025086001 -0.44804901 -0.90360498\n\t\t -0.027070999 -0.42750999 -0.90711802 -0.055544998 -0.41719499 -0.89954799 -0.023134001\n\t\t -0.43620801 -0.91050297 -0.079075001 -0.40587199 -0.89954799 -0.023134001 -0.43620801\n\t\t -0.90711802 -0.055544998 -0.41719499 -0.90659499 -0.027558999 -0.42109999 -0.90659499\n\t\t -0.027558999 -0.42109999 -0.89632499 -0.003235 -0.44338599 -0.89954799 -0.023134001\n\t\t -0.43620801 -0.89365703 0.025086001 -0.44804901 -0.89954799 -0.023134001 -0.43620801\n\t\t -0.89632499 -0.003235 -0.44338599 -0.89632499 -0.003235 -0.44338599 -0.90659499 -0.027558999\n\t\t -0.42109999 -0.90775698 -0.029238001 -0.41847599 -0.90775698 -0.029238001 -0.41847599\n\t\t -0.90344501 -0.023561001 -0.42805499 -0.89632499 -0.003235 -0.44338599 -0.91050297\n\t\t -0.079075001 -0.40587199 -0.91411602 -0.134835 -0.382377 -0.90711802 -0.055544998\n\t\t -0.41719499 -0.91411602 -0.134835 -0.382377 -0.91050297 -0.079075001 -0.40587199\n\t\t -0.89933002 -0.13059101 -0.41731501 -0.89933002 -0.13059101 -0.41731501 -0.90876698\n\t\t -0.136177 -0.39445901 -0.91411602 -0.134835 -0.382377 -0.89632499 -0.003235 -0.44338599\n\t\t -0.88532299 0.055452999 -0.46165901 -0.89365703 0.025086001 -0.44804901 -0.89632499\n\t\t -0.003235 -0.44338599 -0.90344501 -0.023561001 -0.42805499 -0.88463902 0.051913001\n\t\t -0.46337801 -0.88463902 0.051913001 -0.46337801 -0.88532299 0.055452999 -0.46165901\n\t\t -0.89632499 -0.003235 -0.44338599 -0.69776499 0.64154798 -0.31865299 -0.69203103\n\t\t 0.63678998 -0.33998799 -0.68919098 0.63926101 -0.34111601 -0.68919098 0.63926101\n\t\t -0.34111601 -0.69617802 0.64307398 -0.31905001 -0.69776499 0.64154798 -0.31865299\n\t\t -0.63143998 0.590056 -0.50310701 -0.68919098 0.63926101 -0.34111601 -0.69203103 0.63678998\n\t\t -0.33998799 -0.69203103 0.63678998 -0.33998799 -0.62989402 0.58737999 -0.50815099\n\t\t -0.63143998 0.590056 -0.50310701 -0.135629 0.98852497 -0.066501997 -0.134863 0.98869097\n\t\t -0.065585002 -0.13816001 0.98833001 -0.064150997 -0.13517 0.98836702 -0.069706 -0.134863\n\t\t 0.98869097 -0.065585002 -0.135629 0.98852497 -0.066501997 -0.13816001 0.98833001\n\t\t -0.064150997 -0.139075 0.988114 -0.065494001 -0.135629 0.98852497 -0.066501997 -0.135629\n\t\t 0.98852497 -0.066501997 -0.13605601 0.98824799 -0.069675997 -0.13517 0.98836702 -0.069706\n\t\t -0.018647 0.36030301 -0.93264902 0.029541999 0.40269399 -0.91485798 -0.171241 0.218483\n\t\t -0.96069902 -0.171241 0.218483 -0.96069902 -0.23658501 0.166879 -0.95717299 -0.018647\n\t\t 0.36030301 -0.93264902 -0.34080201 0.083315998 -0.936436 -0.018647 0.36030301 -0.93264902\n\t\t -0.23658501 0.166879 -0.95717299 -0.23658501 0.166879 -0.95717299 -0.34377 0.086613998\n\t\t -0.93505102 -0.34080201 0.083315998 -0.936436 -0.34080201 0.083315998 -0.936436 -0.34377\n\t\t 0.086613998 -0.93505102 -0.367661 -0.058139 -0.928141 -0.367661 -0.058139 -0.928141\n\t\t -0.37553301 -0.028627001 -0.92636698 -0.34080201 0.083315998 -0.936436 0.19776399\n\t\t 0.53847897 -0.819103 -0.018647 0.36030301 -0.93264902 0.24644101 0.51989198 -0.81791103\n\t\t 0.24644101 0.51989198 -0.81791103 0.24604601 0.53558201 -0.807845;\n\tsetAttr \".n[28220:28385]\" -type \"float3\"  0.19776399 0.53847897 -0.819103 0.24604601\n\t\t 0.53558201 -0.807845 0.24644101 0.51989198 -0.81791103 0.261305 0.51818502 -0.81437302\n\t\t 0.17048 0.52126598 -0.83619303 0.029541999 0.40269399 -0.91485798 -0.018647 0.36030301\n\t\t -0.93264902 -0.018647 0.36030301 -0.93264902 0.19776399 0.53847897 -0.819103 0.17048\n\t\t 0.52126598 -0.83619303 0.261305 0.51818502 -0.81437302 0.26469499 0.52194297 -0.81087101\n\t\t 0.24604601 0.53558201 -0.807845 -0.36497599 -0.121099 -0.92310703 -0.37553301 -0.028627001\n\t\t -0.92636698 -0.367661 -0.058139 -0.928141 -0.367661 -0.058139 -0.928141 -0.36644799\n\t\t -0.120949 -0.922544 -0.36497599 -0.121099 -0.92310703 0.305406 0.048617002 -0.95098001\n\t\t 0.24223 0.05469 -0.96867597 0.25813001 0.053195 -0.96464503 0.25813001 0.053195 -0.96464503\n\t\t 0.32133901 0.047029998 -0.94579601 0.305406 0.048617002 -0.95098001 -0.61374801 0.484925\n\t\t -0.62302601 -0.53298903 0.63342702 -0.56097502 -0.536502 0.62796903 -0.56375599 -0.536502\n\t\t 0.62796903 -0.56375599 -0.61911201 0.47289401 -0.62695497 -0.61374801 0.484925 -0.62302601\n\t\t -0.087862998 0.9921 -0.089542001 -0.085941002 0.99250197 -0.086917996 -0.105717 0.98785597\n\t\t -0.113865 -0.105717 0.98785597 -0.113865 -0.108832 0.98702198 -0.118079 -0.087862998\n\t\t 0.9921 -0.089542001 -0.55408001 0.53546202 -0.637398 -0.63143998 0.590056 -0.50310701\n\t\t -0.62989402 0.58737999 -0.50815099 -0.62989402 0.58737999 -0.50815099 -0.55365199\n\t\t 0.53466898 -0.63843501 -0.55408001 0.53546202 -0.637398 -0.55408001 0.53546202 -0.637398\n\t\t -0.55365199 0.53466898 -0.63843501 -0.55069202 0.53833097 -0.63791698 -0.55069202\n\t\t 0.53833097 -0.63791698 -0.549375 0.54000598 -0.63763702 -0.55408001 0.53546202 -0.637398\n\t\t 0.072664998 0.837282 -0.54192102 0.072146997 0.83668703 -0.54290801 0.073092997 0.83698398\n\t\t -0.54232299 0.073092997 0.83698398 -0.54232299 0.073458999 0.83762401 -0.54128498\n\t\t 0.072664998 0.837282 -0.54192102 0.070439003 0.83681202 -0.54294002 0.069734998 0.83636397\n\t\t -0.54372102 0.072146997 0.83668703 -0.54290801 0.072146997 0.83668703 -0.54290801\n\t\t 0.072664998 0.837282 -0.54192102 0.070439003 0.83681202 -0.54294002 -0.549375 0.54000598\n\t\t -0.63763702 -0.55069202 0.53833097 -0.63791698 -0.54159999 0.544438 -0.640513 -0.54159999\n\t\t 0.544438 -0.640513 -0.54022598 0.54565799 -0.64063501 -0.549375 0.54000598 -0.63763702\n\t\t -0.54022598 0.54565799 -0.64063501 -0.54159999 0.544438 -0.640513 -0.52144402 0.53542203\n\t\t -0.66439402 -0.52144402 0.53542203 -0.66439402 -0.52126998 0.53656 -0.66361201 -0.54022598\n\t\t 0.54565799 -0.64063501 -0.52126998 0.53656 -0.66361201 -0.52144402 0.53542203 -0.66439402\n\t\t -0.50103498 0.50860399 -0.70020401 -0.50103498 0.50860399 -0.70020401 -0.50272 0.51099098\n\t\t -0.69725198 -0.52126998 0.53656 -0.66361201 -0.50272 0.51099098 -0.69725198 -0.50103498\n\t\t 0.50860399 -0.70020401 -0.49234501 0.48511201 -0.72267801 -0.49234501 0.48511201\n\t\t -0.72267801 -0.494317 0.487481 -0.71973097 -0.50272 0.51099098 -0.69725198 -0.494317\n\t\t 0.487481 -0.71973097 -0.49234501 0.48511201 -0.72267801 -0.48874301 0.444612 -0.750633\n\t\t -0.48874301 0.444612 -0.750633 -0.48998699 0.45846 -0.741436 -0.494317 0.487481 -0.71973097\n\t\t -0.49093199 0.428031 -0.75879902 -0.48998699 0.45846 -0.741436 -0.48874301 0.444612\n\t\t -0.750633 -0.48874301 0.444612 -0.750633 -0.49460301 0.426696 -0.757164 -0.49093199\n\t\t 0.428031 -0.75879902 0.060518999 0.84919798 -0.52459502 0.061558001 0.84883797 -0.52505702\n\t\t 0.061404001 0.84391302 -0.53295398 0.061404001 0.84391302 -0.53295398 0.060702 0.84415698\n\t\t -0.53264898 0.060518999 0.84919798 -0.52459502 0.060702 0.84415698 -0.53264898 0.061404001\n\t\t 0.84391302 -0.53295398 0.061221 0.84013599 -0.53890997 0.061221998 0.85234702 -0.51937997\n\t\t 0.062135998 0.85327297 -0.51775002 0.061558001 0.84883797 -0.52505702 0.061558001\n\t\t 0.84883797 -0.52505702 0.060518999 0.84919798 -0.52459502 0.061221998 0.85234702\n\t\t -0.51937997 0.060823999 0.84040201 -0.53853899 0.061221 0.84013599 -0.53890997 0.062503003\n\t\t 0.83689201 -0.54378802 0.061221 0.84013599 -0.53890997 0.060823999 0.84040201 -0.53853899\n\t\t 0.060702 0.84415698 -0.53264898 0.062503003 0.83689201 -0.54378802 0.062533997 0.83724099\n\t\t -0.54324698 0.060823999 0.84040201 -0.53853899 0.062533997 0.83724099 -0.54324698\n\t\t 0.062503003 0.83689201 -0.54378802 0.065921001 0.83577198 -0.54510599 0.065921001\n\t\t 0.83577198 -0.54510599 0.066531003 0.83606601 -0.54457998 0.062533997 0.83724099\n\t\t -0.54324698 0.066531003 0.83606601 -0.54457998 0.065921001 0.83577198 -0.54510599\n\t\t 0.069734998 0.83636397 -0.54372102 0.069734998 0.83636397 -0.54372102 0.070439003\n\t\t 0.83681202 -0.54294002 0.066531003 0.83606601 -0.54457998 0.074313998 0.97273803\n\t\t 0.219677 2.9999999e-05 0.98017597 0.198129 0.02826 0.97809201 0.20624501 0.02826\n\t\t 0.97809201 0.20624501 0.15296 0.97257102 0.175239 0.074313998 0.97273803 0.219677\n\t\t 0 0.98576498 0.168129 0.02826 0.97809201 0.20624501 2.9999999e-05 0.98017597 0.198129\n\t\t 2.9999999e-05 0.98017597 0.198129 9.1000002e-05 0.98584801 0.16764 0 0.98576498 0.168129\n\t\t 9.1000002e-05 0.98584801 0.16764 9.1000002e-05 0.985879 0.167457 0 0.98576498 0.168129\n\t\t -0.36962301 0.92388898 -0.099036001 -0.68301499 0.70709401 -0.183053 -0.61513799\n\t\t 0.67641902 -0.40504599 -0.61513799 0.67641902 -0.40504599 -0.36962199 0.923886 -0.099065997\n\t\t -0.36962301 0.92388898 -0.099036001 -0.36962301 0.92388898 -0.099036001 -0.36962199\n\t\t 0.923886 -0.099065997 0 1 0 0 1 0 0 1 0 -0.36962301 0.92388898 -0.099036001 -0.83708102\n\t\t 0.36082801 -0.41121599 -0.61513799 0.67641902 -0.40504599 -0.68301499 0.70709401\n\t\t -0.183053 -0.68301499 0.70709401 -0.183053 -0.89239001 0.38268399 -0.239151 -0.83708102\n\t\t 0.36082801 -0.41121599;\n\tsetAttr \".n[28386:28551]\" -type \"float3\"  -0.91149199 0.0056150001 -0.41127899\n\t\t -0.83708102 0.36082801 -0.41121599 -0.89239001 0.38268399 -0.239151 -0.89239001 0.38268399\n\t\t -0.239151 -0.96591502 0 -0.25885901 -0.91149199 0.0056150001 -0.41127899 -0.863814\n\t\t -0.28764299 -0.41362599 -0.91149199 0.0056150001 -0.41127899 -0.96591502 0 -0.25885901\n\t\t -0.96591502 0 -0.25885901 -0.89597499 -0.33540401 -0.29109001 -0.863814 -0.28764299\n\t\t -0.41362599 -0.81085801 -0.311324 -0.49556699 -0.863814 -0.28764299 -0.41362599 -0.89597499\n\t\t -0.33540401 -0.29109001 -0.89597499 -0.33540401 -0.29109001 -0.73782998 -0.537503\n\t\t -0.40828499 -0.81085801 -0.311324 -0.49556699 -0.39940101 -0.90329897 -0.15662301\n\t\t -0.31294501 -0.90663701 -0.28297499 -0.41832301 -0.88147801 -0.21909501 -0.41832301\n\t\t -0.88147801 -0.21909501 -0.45195901 -0.88377601 -0.121131 -0.39940101 -0.90329897\n\t\t -0.15662301 -0.36964899 -0.92387903 -0.099035002 -0.39940101 -0.90329897 -0.15662301\n\t\t -0.45195901 -0.88377601 -0.121131 -0.45195901 -0.88377601 -0.121131 -0.36964899 -0.92387903\n\t\t -0.099035002 -0.36964899 -0.92387903 -0.099035002 0.28400999 0.95579499 0.076113999\n\t\t 0 1 0 0 1 0 0 1 0 0.28400999 0.95579499 0.076113999 0.28400999 0.95579499 0.076113999\n\t\t 0.28400999 0.95579499 0.076113999 0.28400999 0.95579499 0.076113999 0.36964801 0.92387599\n\t\t 0.099064998 0.36964801 0.92387599 0.099064998 0.36964801 0.92387599 0.099064998 0.28400999\n\t\t 0.95579499 0.076113999 -0.329153 0.91241002 -0.24324 -0.64072502 0.69828397 -0.31917199\n\t\t -0.63766301 0.70141703 -0.31843501 -0.63766301 0.70141703 -0.31843501 -0.32435501\n\t\t 0.91443598 -0.24207599 -0.329153 0.91241002 -0.24324 -0.329153 0.91241002 -0.24324\n\t\t -0.32435501 0.91443598 -0.24207599 0.044190999 0.98719198 -0.15329599 0.044190999\n\t\t 0.98719198 -0.15329599 0.038118001 0.98721099 -0.15479399 -0.329153 0.91241002 -0.24324\n\t\t -0.84822202 0.38005599 -0.36888599 -0.63766301 0.70141703 -0.31843501 -0.64072502\n\t\t 0.69828397 -0.31917199 -0.64072502 0.69828397 -0.31917199 -0.84904301 0.37801 -0.36909899\n\t\t -0.84822202 0.38005599 -0.36888599 -0.92197299 0 -0.38725299 -0.84822202 0.38005599\n\t\t -0.36888599 -0.84904301 0.37801 -0.36909899 -0.84904301 0.37801 -0.36909899 -0.92197299\n\t\t 0 -0.38725299 -0.92197299 0 -0.38725299 -0.84822202 -0.38005701 -0.36888599 -0.92197299\n\t\t 0 -0.38725299 -0.92197299 0 -0.38725299 -0.92197299 0 -0.38725299 -0.84904301 -0.37801099\n\t\t -0.36909899 -0.84822202 -0.38005701 -0.36888599 -0.63766301 -0.70141703 -0.31843501\n\t\t -0.84822202 -0.38005701 -0.36888599 -0.84904301 -0.37801099 -0.36909899 -0.84904301\n\t\t -0.37801099 -0.36909899 -0.64072502 -0.69828498 -0.31917199 -0.63766301 -0.70141703\n\t\t -0.31843501 -0.32435399 -0.91443598 -0.242075 -0.63766301 -0.70141703 -0.31843501\n\t\t -0.64072502 -0.69828498 -0.31917199 -0.64072502 -0.69828498 -0.31917199 -0.32915199\n\t\t -0.91241097 -0.24324 -0.32435399 -0.91443598 -0.242075 0.044192001 -0.98719198 -0.15329599\n\t\t -0.32435399 -0.91443598 -0.242075 -0.32915199 -0.91241097 -0.24324 -0.32915199 -0.91241097\n\t\t -0.24324 0.038118999 -0.98721099 -0.15479399 0.044192001 -0.98719198 -0.15329599\n\t\t 0.320761 0.943331 -0.085088998 0.038118001 0.98721099 -0.15479399 0.044190999 0.98719198\n\t\t -0.15329599 0.044190999 0.98719198 -0.15329599 0.32496801 0.941975 -0.084141001 0.320761\n\t\t 0.943331 -0.085088998 0.320761 0.943331 -0.085088998 0.32496801 0.941975 -0.084141001\n\t\t 0.40788099 0.91073799 -0.064730003 0.40788099 0.91073799 -0.064730003 0.407893 0.91073197\n\t\t -0.064732 0.320761 0.943331 -0.085088998 0.044192001 -0.98719198 -0.15329599 0.038118999\n\t\t -0.98721099 -0.15479399 0.320761 -0.94332999 -0.085088998 0.320761 -0.94332999 -0.085088998\n\t\t 0.32499599 -0.94196498 -0.084140003 0.044192001 -0.98719198 -0.15329599 0.32499599\n\t\t -0.94196498 -0.084140003 0.320761 -0.94332999 -0.085088998 0.407893 -0.91073197 -0.064732\n\t\t 0.407893 -0.91073197 -0.064732 0.407893 -0.91073197 -0.064732 0.32499599 -0.94196498\n\t\t -0.084140003 -0.25877401 0 0.96593797 -0.25877401 0 0.96593797 -0.258802 0 0.96592999\n\t\t -0.258802 0 0.96592999 -0.258802 0 0.96592999 -0.25877401 0 0.96593797 -0.25877401\n\t\t 0 0.96593797 -0.25877401 0 0.96593797 -0.258802 -3.1e-05 0.96592999 -0.258802 -3.1e-05\n\t\t 0.96592999 -0.258802 -3.1e-05 0.96592999 -0.25877401 0 0.96593797 -0.258802 -3.1e-05\n\t\t 0.96592999 -0.258802 -3.1e-05 0.96592999 -0.25877401 -3.1e-05 0.96593797 -0.25877401\n\t\t -3.1e-05 0.96593797 -0.25877401 0 0.96593797 -0.258802 -3.1e-05 0.96592999 -0.25877401\n\t\t 0 0.96593797 -0.25877401 -3.1e-05 0.96593797 -0.258802 0 0.96592999 -0.258802 0 0.96592999\n\t\t -0.258802 0 0.96592999 -0.25877401 0 0.96593797 -0.258802 0 0.96592999 -0.258802\n\t\t 0 0.96592999 -0.25877401 0 0.96593797 -0.25877401 0 0.96593797 -0.25877401 0 0.96593797\n\t\t -0.258802 0 0.96592999 -0.25877401 0 0.96593797 -0.25877401 0 0.96593797 -0.25877401\n\t\t 3.1e-05 0.96593797 -0.25877401 3.1e-05 0.96593797 -0.258802 3.1e-05 0.96592999 -0.25877401\n\t\t 0 0.96593797 -0.258802 3.1e-05 0.96592999 -0.25877401 3.1e-05 0.96593797 -0.25877401\n\t\t 0 0.96593797 -0.25877401 0 0.96593797 -0.258802 0 0.96592999 -0.258802 3.1e-05 0.96592999\n\t\t -0.258802 0 0.96592999 -0.25877401 0 0.96593797 -0.258802 0 0.96592999 -0.258802\n\t\t 0 0.96592999 -0.258802 0 0.96592999 -0.258802 0 0.96592999 -0.258802 0 0.96592999\n\t\t -0.258802 0 0.96592999 -0.258802 0 0.96592999 -0.258802 0 0.96592999;\n\tsetAttr \".n[28552:28717]\" -type \"float3\"  -0.25883099 0 0.96592301 -0.258802 0\n\t\t 0.96592999 -0.25883099 3.1e-05 0.96592301 -0.258802 0 0.96592999 -0.25883099 0 0.96592301\n\t\t -0.25883099 0 0.96592301 -0.258867 6.0999999e-05 0.965913 -0.25883099 3.1e-05 0.96592301\n\t\t -0.25883099 0 0.96592301 -0.258802 0 0.96592999 -0.258802 0 0.96592999 -0.258802\n\t\t 0 0.96592999 -0.25883099 0 0.96592301 -0.25883099 0 0.96592301 -0.25883099 0 0.96592301\n\t\t -0.25883099 0 0.96592301 -0.25883099 -3.1e-05 0.96592301 -0.25883099 -3.1e-05 0.96592301\n\t\t -0.25883099 -3.1e-05 0.96592301 -0.25883099 0 0.96592301 0.25883099 0 -0.96592301\n\t\t 0.258802 0 -0.96592999 0.258802 0 -0.96592999 0.258802 0 -0.96592999 0.258802 0 -0.96592999\n\t\t 0.25883099 0 -0.96592301 0.258802 0 -0.96592999 0.258802 0 -0.96592999 0.258802 0\n\t\t -0.96592999 0.258802 0 -0.96592999 0.258802 0 -0.96592999 0.258802 0 -0.96592999\n\t\t 0.258802 0 -0.96592999 0.258802 0 -0.96592999 0.258802 0 -0.96592999 0.258802 0 -0.96592999\n\t\t 0.258802 0 -0.96592999 0.258802 0 -0.96592999 0.258802 0 -0.96592999 0.258802 0 -0.96592999\n\t\t 0.258802 0 -0.96592999 0.258802 0 -0.96592999 0.25883099 3.1e-05 -0.96592301 0.258802\n\t\t 0 -0.96592999 0.258802 0 -0.96592999 0.258802 0 -0.96592999 0.258802 0 -0.96592999\n\t\t 0.258802 0 -0.96592999 0.25883099 0 -0.96592301 0.258802 0 -0.96592999 0.25883099\n\t\t 0 -0.96592301 0.258802 0 -0.96592999 0.25883099 3.1e-05 -0.96592301 0.25883099 3.1e-05\n\t\t -0.96592301 0.25883099 0 -0.96592301 0.25883099 0 -0.96592301 0.25883099 0 -0.96592301\n\t\t 0.25883099 3.1e-05 -0.96592301 0.258802 0 -0.96592999 0.258802 0 -0.96592999 0.25883099\n\t\t -3.1e-05 -0.96592301 0.25883099 0 -0.96592301 0.25883099 -3.1e-05 -0.96592301 0.258802\n\t\t 0 -0.96592999 0.258802 0 -0.96592999 0.258802 0 -0.96592999 0.25889501 9.2000002e-05\n\t\t -0.96590501 0.25883099 -3.1e-05 -0.96592301 -0.20240299 0.79975098 -0.56518197 -0.61513799\n\t\t 0.67641902 -0.40504599 -0.50748301 0.61588901 -0.60261297 -0.50748301 0.61588901\n\t\t -0.60261297 -0.185619 0.80571097 -0.56247199 -0.20240299 0.79975098 -0.56518197 -0.20240299\n\t\t 0.79975098 -0.56518197 -0.185619 0.80571097 -0.56247199 0.047579002 0.96791101 -0.246747\n\t\t 0.047579002 0.96791101 -0.246747 0.131384 0.86158299 -0.49031901 -0.20240299 0.79975098\n\t\t -0.56518197 -0.74741602 0.33787799 -0.57202202 -0.50748301 0.61588901 -0.60261297\n\t\t -0.61513799 0.67641902 -0.40504599 -0.61513799 0.67641902 -0.40504599 -0.83708102\n\t\t 0.36082801 -0.41121599 -0.74741602 0.33787799 -0.57202202 -0.83885998 0.14295299\n\t\t -0.52524102 -0.74741602 0.33787799 -0.57202202 -0.83708102 0.36082801 -0.41121599\n\t\t -0.83708102 0.36082801 -0.41121599 -0.91149199 0.0056150001 -0.41127899 -0.83885998\n\t\t 0.14295299 -0.52524102 0.376854 0.82771897 -0.41576701 0.131384 0.86158299 -0.49031901\n\t\t 0.047579002 0.96791101 -0.246747 0.047579002 0.96791101 -0.246747 0.33649799 0.91787899\n\t\t -0.21039601 0.376854 0.82771897 -0.41576701 0.376854 0.82771897 -0.41576701 0.33649799\n\t\t 0.91787899 -0.21039601 0.42568001 0.88596898 -0.184 0.42568001 0.88596898 -0.184\n\t\t 0.44929901 0.80255598 -0.39247301 0.376854 0.82771897 -0.41576701 -0.83043301 0.0093080001\n\t\t -0.55703998 -0.83885998 0.14295299 -0.52524102 -0.91149199 0.0056150001 -0.41127899\n\t\t -0.91149199 0.0056150001 -0.41127899 -0.863814 -0.28764299 -0.41362599 -0.83043301\n\t\t 0.0093080001 -0.55703998 -0.83043301 0.0093080001 -0.55703998 -0.863814 -0.28764299\n\t\t -0.41362599 -0.81085801 -0.311324 -0.49556699 -0.81085801 -0.311324 -0.49556699 -0.78245503\n\t\t 0.086034 -0.61673498 -0.83043301 0.0093080001 -0.55703998 0.224502 -0.68983501 -0.68827802\n\t\t 0.241831 -0.67422199 -0.69781297 0.206802 -0.68373299 -0.69981599 0.206802 -0.68373299\n\t\t -0.69981599 0.187694 -0.68851697 -0.70051098 0.224502 -0.68983501 -0.68827802 0.224502\n\t\t -0.68983501 -0.68827802 0.187694 -0.68851697 -0.70051098 0.204052 -0.69522899 -0.68921697\n\t\t 0.204052 -0.69522899 -0.68921697 0.231886 -0.70606399 -0.66910499 0.224502 -0.68983501\n\t\t -0.68827802 0.019409999 -0.49651599 -0.86781102 0.019655 -0.49660799 -0.86775202\n\t\t -0.148048 -0.379536 -0.91325498 -0.148048 -0.379536 -0.91325498 -0.148202 -0.37938601\n\t\t -0.91329199 0.019409999 -0.49651599 -0.86781102 0.019655 -0.49660799 -0.86775202\n\t\t 0.019409999 -0.49651599 -0.86781102 0.218336 -0.53588903 -0.81556898 0.218336 -0.53588903\n\t\t -0.81556898 0.218637 -0.53588003 -0.815494 0.019655 -0.49660799 -0.86775202 0.218637\n\t\t -0.53588003 -0.815494 0.218336 -0.53588903 -0.81556898 0.368402 -0.51565802 -0.77354801\n\t\t 0.368402 -0.51565802 -0.77354801 0.37325099 -0.513731 -0.77250499 0.218637 -0.53588003\n\t\t -0.815494 0.37325099 -0.513731 -0.77250499 0.368402 -0.51565802 -0.77354801 0.41674301\n\t\t -0.49578801 -0.76191801 0.41674301 -0.49578801 -0.76191801 0.41677201 -0.49581701\n\t\t -0.76188397 0.37325099 -0.513731 -0.77250499 -0.148202 -0.37938601 -0.91329199 -0.148048\n\t\t -0.379536 -0.91325498 -0.261944 -0.205942 -0.94285399 -0.261944 -0.205942 -0.94285399\n\t\t -0.26200601 -0.205851 -0.94285601 -0.148202 -0.37938601 -0.91329199 -0.26200601 -0.205851\n\t\t -0.94285601 -0.261944 -0.205942 -0.94285399 -0.300372 -3.1e-05 -0.95382202 -0.300372\n\t\t -3.1e-05 -0.95382202 -0.30033499 -3.1e-05 -0.953834 -0.26200601 -0.205851 -0.94285601\n\t\t -0.30033499 -3.1e-05 -0.953834 -0.300372 -3.1e-05 -0.95382202;\n\tsetAttr \".n[28718:28883]\" -type \"float3\"  -0.26191401 0.205973 -0.942855 -0.26191401\n\t\t 0.205973 -0.942855 -0.26191801 0.20591401 -0.94286698 -0.30033499 -3.1e-05 -0.953834\n\t\t -0.26191801 0.20591401 -0.94286698 -0.26191401 0.205973 -0.942855 -0.148048 0.379536\n\t\t -0.91325498 -0.148048 0.379536 -0.91325498 -0.14823399 0.37935799 -0.91329801 -0.26191801\n\t\t 0.20591401 -0.94286698 -0.14823399 0.37935799 -0.91329801 -0.148048 0.379536 -0.91325498\n\t\t 0.019654 0.496631 -0.86773902 0.019654 0.496631 -0.86773902 0.019409999 0.49651501\n\t\t -0.86781102 -0.14823399 0.37935799 -0.91329801 0.019409999 0.49651501 -0.86781102\n\t\t 0.019654 0.496631 -0.86773902 0.218637 0.53588003 -0.815494 0.218637 0.53588003 -0.815494\n\t\t 0.21830601 0.53589302 -0.81557399 0.019409999 0.49651501 -0.86781102 0.21830601 0.53589302\n\t\t -0.81557399 0.218637 0.53588003 -0.815494 0.37324801 0.513789 -0.77246797 0.37324801\n\t\t 0.513789 -0.77246797 0.368431 0.51568699 -0.77351499 0.21830601 0.53589302 -0.81557399\n\t\t 0.368431 0.51568699 -0.77351499 0.37324801 0.513789 -0.77246797 0.41677201 0.49581701\n\t\t -0.76188397 0.41677201 0.49581701 -0.76188397 0.416778 0.495794 -0.76189601 0.368431\n\t\t 0.51568699 -0.77351499 -0.39449 0.91890001 0 -0.42238399 0.90641701 0 -0.56616199\n\t\t 0.82429397 0 -0.56616199 0.82429397 0 -0.566127 0.82431799 0 -0.39449 0.91890001\n\t\t 0 -0.42238399 0.90641701 0 -0.39449 0.91890001 0 0 1 0 0 1 0 0.047579002 0.96791101\n\t\t -0.246747 -0.42238399 0.90641701 0 -0.89908999 0.43776399 0 -0.89906001 0.43782601\n\t\t -3.1e-05 -0.95072299 0.31004101 0 -0.95072299 0.31004101 0 -0.94819099 0.31770101\n\t\t 0 -0.89908999 0.43776399 0 -0.94819099 0.31770101 0 -0.95072299 0.31004101 0 -0.98133099\n\t\t 0.192329 0 -0.98133099 0.192329 0 -0.98133099 0.192329 0 -0.94819099 0.31770101 0\n\t\t 0.047579002 0.96791101 -0.246747 0 1 0 0.300675 0.95372701 0 0.300675 0.95372701\n\t\t 0 0.33649799 0.91787899 -0.21039601 0.047579002 0.96791101 -0.246747 0.33649799 0.91787899\n\t\t -0.21039601 0.300675 0.95372701 0 0.390856 0.920452 0 0.390856 0.920452 0 0.42568001\n\t\t 0.88596898 -0.184 0.33649799 0.91787899 -0.21039601 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0\n\t\t 0 1 0 -0.035188999 0.99938101 0 0 1 0 0 1 0 0 1 0 -0.001923 0.99999601 0.002228 -0.035188999\n\t\t 0.99938101 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.99936301 -0.035401002 0.0045170002\n\t\t 0.99975598 -0.021423999 0.0054629999 0.99991798 -0.012451 0.002869 0.99936301 -0.035401002\n\t\t 0.0045170002 0.99991798 -0.012451 0.002869 0.99984002 -0.017792 0.001984 0.99991798\n\t\t -0.012451 0.002869 1 0 0 0.99984002 -0.017792 0.001984 1 0 0 0.99991798 -0.012451\n\t\t 0.002869 1 0 0 1 0 0 1 0 0 1 0 0 0.079654999 -0.97144598 0.22349 0.017366 -0.97781402\n\t\t 0.208753 0.057895001 -0.97508901 0.214123 0.057895001 -0.97508901 0.214123 0.178846\n\t\t -0.95389301 0.241045 0.079654999 -0.97144598 0.22349 0 -0.97796202 0.208783 0.017366\n\t\t -0.97781402 0.208753 0.079654999 -0.97144598 0.22349 0.079654999 -0.97144598 0.22349\n\t\t 0 -0.97796202 0.208783 0 -0.97796202 0.208783 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0\n\t\t 0 -1 0 -0.99924302 0.038208999 -0.0073239999 -0.99943101 0.031587001 -0.011811 -0.99916101\n\t\t 0.040559001 -0.0057069999 -0.99916101 0.040559001 -0.0057069999 -0.99879998 0.048983\n\t\t 0 -0.99924302 0.038208999 -0.0073239999 -0.042787999 0.94810098 -0.31507701 -0.040591002\n\t\t 0.948713 -0.31352201 -0.043825999 0.94780803 -0.31581399 -0.043825999 0.94780803\n\t\t -0.31581399 -0.046053998 0.94719303 -0.317339 -0.042787999 0.94810098 -0.31507701\n\t\t 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0\n\t\t -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0\n\t\t 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1;\n\tsetAttr \".n[28884:29049]\" -type \"float3\"  0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0\n\t\t 1 0 0 1 0 0 1 0 0 1 0 0.68924701 0.724527 0 0.68924701 0.724527 0 0.68924701 0.724527\n\t\t 0 0.68924701 0.724527 0 0.68924701 0.724527 0 0.68924701 0.724527 0 0 -1 0 0 -1 0\n\t\t 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.999861 -0.016206 0.0038149999 -1 0 0 -0.999933 -0.011476\n\t\t 0.001282 -0.999861 -0.016206 0.0038149999 -0.999933 -0.011476 0.001282 -0.99971801\n\t\t -0.023499999 0.003296 -0.999861 -0.016206 0.0038149999 -0.99971801 -0.023499999 0.003296\n\t\t -0.99921602 -0.038362 0.0097660003 -1 0 0 -0.999933 -0.011476 0.001282 -1 0 0 -1\n\t\t 0 0 -1 0 0 -1 0 0 -0.079654001 -0.97144598 0.22349 -0.178845 -0.95389301 0.241045\n\t\t -0.057895001 -0.97508901 0.214123 -0.057895001 -0.97508901 0.214123 -0.017364999\n\t\t -0.97781402 0.208753 -0.079654001 -0.97144598 0.22349 -0.079654001 -0.97144598 0.22349\n\t\t -0.017364999 -0.97781402 0.208753 0 -0.97796202 0.208783 0 -0.97796202 0.208783 0\n\t\t -0.97796202 0.208783 -0.079654001 -0.97144598 0.22349 0 -1 0 0 -1 0 0 -1 0 0 -1 0\n\t\t 0 -1 0 0 -1 0 0.99924999 0.038148999 -0.0065919999 0.99950099 0.031587999 0 0.99915302\n\t\t 0.040224001 -0.0087280003 0.99915302 0.040224001 -0.0087280003 0.99864501 0.048983\n\t\t -0.017579 0.99924999 0.038148999 -0.0065919999 0.042787001 0.94810098 -0.31507701\n\t\t 0.046053 0.94719303 -0.317339 0.043825001 0.94780803 -0.31581399 0.043825001 0.94780803\n\t\t -0.31581399 0.040589999 0.948713 -0.31352201 0.042787001 0.94810098 -0.31507701 -1\n\t\t 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1\n\t\t 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0\n\t\t -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0\n\t\t 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.68924701 0.724527 0 0.68924701 0.724527\n\t\t 0 0.68924701 0.724527 0 0.68924701 0.724527 0 0.68924701 0.724527 0 0.68924701 0.724527\n\t\t 0.15701801 0.984896 -0.072970003 0.158821 0.98457301 -0.073429003 0.124947 0.98462099\n\t\t -0.122109 0.124947 0.98462099 -0.122109 0.120976 0.98447198 -0.127202 0.15701801\n\t\t 0.984896 -0.072970003 0.120976 0.98447198 -0.127202 0.124947 0.98462099 -0.122109\n\t\t 0.048524 0.95291603 -0.29932699 0.048524 0.95291603 -0.29932699 0.043031 0.94962901\n\t\t -0.31040901 0.120976 0.98447198 -0.127202 0.043031 0.94962901 -0.31040901 0.048524\n\t\t 0.95291603 -0.29932699 -0.032015 0.87307101 -0.48654199 -0.032015 0.87307101 -0.48654199\n\t\t -0.032869 0.871198 -0.489831 0.043031 0.94962901 -0.31040901 -0.032869 0.871198 -0.489831\n\t\t -0.032015 0.87307101 -0.48654199 -0.050815001 0.83318001 -0.55066198 -0.050815001\n\t\t 0.83318001 -0.55066198 -0.049839001 0.83315599 -0.55078799 -0.032869 0.871198 -0.489831\n\t\t -0.049839001 0.83315599 -0.55078799 -0.050815001 0.83318001 -0.55066198 -0.043428998\n\t\t 0.83375901 -0.55041701 -0.043428998 0.83375901 -0.55041701 -0.04346 0.83442402 -0.54940599\n\t\t -0.049839001 0.83315599 -0.55078799 -0.038180001 0.83274698 -0.55233598 -0.04346\n\t\t 0.83442402 -0.54940599 -0.043428998 0.83375901 -0.55041701 -0.043428998 0.83375901\n\t\t -0.55041701 -0.038058002 0.832385 -0.55288899 -0.038180001 0.83274698 -0.55233598\n\t\t -0.038180001 0.83274698 -0.55233598 -0.038058002 0.832385 -0.55288899 -0.036561999\n\t\t 0.83274102 -0.55245501 -0.036561999 0.83274102 -0.55245501 -0.035737999 0.832555\n\t\t -0.55278802 -0.038180001 0.83274698 -0.55233598 -0.040041 0.836025 -0.54722798 -0.035737999\n\t\t 0.832555 -0.55278802 -0.036561999 0.83274102 -0.55245501 -0.036561999 0.83274102\n\t\t -0.55245501 -0.039857998 0.83578998 -0.54759997 -0.040041 0.836025 -0.54722798 -0.040041\n\t\t 0.836025 -0.54722798 -0.039857998 0.83578998 -0.54759997 -0.047488999 0.83947098\n\t\t -0.54132599 -0.047488999 0.83947098 -0.54132599;\n\tsetAttr \".n[29050:29215]\" -type \"float3\"  -0.047823999 0.84010398 -0.54031301 -0.040041\n\t\t 0.836025 -0.54722798 -0.054049 0.83225399 -0.551754 -0.047823999 0.84010398 -0.54031301\n\t\t -0.047488999 0.83947098 -0.54132599 -0.047488999 0.83947098 -0.54132599 -0.053895999\n\t\t 0.83652002 -0.54527903 -0.054049 0.83225399 -0.551754 -0.054049 0.83225399 -0.551754\n\t\t -0.053895999 0.83652002 -0.54527903 -0.05057 0.82450199 -0.563595 -0.05057 0.82450199\n\t\t -0.563595 -0.048496 0.82432902 -0.56402898 -0.054049 0.83225399 -0.551754 -0.14048199\n\t\t 0.43792501 -0.88796699 -0.14997 0.43437499 -0.88815999 -0.13984001 0.41500199 -0.89900899\n\t\t -0.13984001 0.41500199 -0.89900899 -0.132911 0.395924 -0.90861398 -0.14048199 0.43792501\n\t\t -0.88796699 -0.132911 0.395924 -0.90861398 -0.13984001 0.41500199 -0.89900899 -0.118535\n\t\t 0.36653 -0.92282498 -0.118535 0.36653 -0.92282498 -0.113593 0.36037299 -0.92586601\n\t\t -0.132911 0.395924 -0.90861398 -0.113593 0.36037299 -0.92586601 -0.118535 0.36653\n\t\t -0.92282498 -0.093693003 0.348221 -0.93271899 -0.093693003 0.348221 -0.93271899 -0.092656001\n\t\t 0.34849599 -0.93272001 -0.113593 0.36037299 -0.92586601 -0.092656001 0.34849599 -0.93272001\n\t\t -0.093693003 0.348221 -0.93271899 -0.096134998 0.372394 -0.92308199 -0.096134998\n\t\t 0.372394 -0.92308199 -0.087682001 0.396016 -0.91404802 -0.092656001 0.34849599 -0.93272001\n\t\t -0.087682001 0.396016 -0.91404802 -0.096134998 0.372394 -0.92308199 -0.042420998\n\t\t 0.40236101 -0.91449797 -0.042420998 0.40236101 -0.91449797 -0.031984001 0.39851499\n\t\t -0.91660398 -0.087682001 0.396016 -0.91404802 0.2624 0.91861498 -0.295452 0.230235\n\t\t 0.924483 -0.303848 0.21815 0.91258103 -0.345842 0.21815 0.91258103 -0.345842 0.264083\n\t\t 0.91741103 -0.29768601 0.2624 0.91861498 -0.295452 0.208139 0.89936399 -0.384478\n\t\t 0.21815 0.91258103 -0.345842 0.230235 0.924483 -0.303848 0.230235 0.924483 -0.303848\n\t\t 0.20915 0.89785397 -0.38744599 0.208139 0.89936399 -0.384478 0.90524501 0.023499999\n\t\t -0.42423999 0.89695102 0.0074470001 -0.442067 0.90195602 0.015869999 -0.431537 0.90195602\n\t\t 0.015869999 -0.431537 0.907067 0.030428 -0.41988599 0.90524501 0.023499999 -0.42423999\n\t\t 0.89902103 0.0044249999 -0.43788299 0.90195602 0.015869999 -0.431537 0.89695102 0.0074470001\n\t\t -0.442067 0.89695102 0.0074470001 -0.442067 0.89528197 -0.003052 -0.44548899 0.89902103\n\t\t 0.0044249999 -0.43788299 0.90489399 -0.0036319999 -0.425621 0.89902103 0.0044249999\n\t\t -0.43788299 0.89528197 -0.003052 -0.44548899 0.89528197 -0.003052 -0.44548899 0.90712899\n\t\t -0.013123 -0.42064899 0.90489399 -0.0036319999 -0.425621 0.90969098 -0.054873999\n\t\t -0.411645 0.90489399 -0.0036319999 -0.425621 0.90712899 -0.013123 -0.42064899 0.90712899\n\t\t -0.013123 -0.42064899 0.90645498 -0.062870003 -0.41759601 0.90969098 -0.054873999\n\t\t -0.411645 0.89295501 -0.068088003 -0.444967 0.90969098 -0.054873999 -0.411645 0.90645498\n\t\t -0.062870003 -0.41759601 0.90645498 -0.062870003 -0.41759601 0.87465602 -0.064700998\n\t\t -0.48040599 0.89295501 -0.068088003 -0.444967 0.89295501 -0.068088003 -0.444967 0.87465602\n\t\t -0.064700998 -0.48040599 0.87060499 -0.093326002 -0.48304901 0.87060499 -0.093326002\n\t\t -0.48304901 0.877051 -0.086948 -0.47246301 0.89295501 -0.068088003 -0.444967 0.85938102\n\t\t -0.113469 -0.49858701 0.877051 -0.086948 -0.47246301 0.87060499 -0.093326002 -0.48304901\n\t\t 0.87060499 -0.093326002 -0.48304901 0.85301 -0.116644 -0.50869298 0.85938102 -0.113469\n\t\t -0.49858701 0.828866 -0.11524 -0.54745001 0.85938102 -0.113469 -0.49858701 0.85301\n\t\t -0.116644 -0.50869298 0.85301 -0.116644 -0.50869298 0.83303499 -0.09223 -0.54547799\n\t\t 0.828866 -0.11524 -0.54745001 0.80796599 -0.083714001 -0.58325303 0.828866 -0.11524\n\t\t -0.54745001 0.83303499 -0.09223 -0.54547799 0.83303499 -0.09223 -0.54547799 0.81204802\n\t\t -0.073977999 -0.57888299 0.80796599 -0.083714001 -0.58325303 0.80086398 -0.120552\n\t\t -0.586586 0.80796599 -0.083714001 -0.58325303 0.81204802 -0.073977999 -0.57888299\n\t\t 0.81204802 -0.073977999 -0.57888299 0.793661 -0.158732 -0.58728802 0.80086398 -0.120552\n\t\t -0.586586 0.76887703 -0.247665 -0.58948302 0.80086398 -0.120552 -0.586586 0.793661\n\t\t -0.158732 -0.58728802 0.793661 -0.158732 -0.58728802 0.77058101 -0.25401199 -0.58453602\n\t\t 0.76887703 -0.247665 -0.58948302 0.74713999 -0.292465 -0.59686399 0.76887703 -0.247665\n\t\t -0.58948302 0.77058101 -0.25401199 -0.58453602 0.77058101 -0.25401199 -0.58453602\n\t\t 0.75309199 -0.26661599 -0.60147202 0.74713999 -0.292465 -0.59686399 0.72846001 -0.316605\n\t\t -0.60754299 0.74713999 -0.292465 -0.59686399 0.75309199 -0.26661599 -0.60147202 0.75309199\n\t\t -0.26661599 -0.60147202 0.73408598 -0.28804299 -0.61493802 0.72846001 -0.316605 -0.60754299\n\t\t 0.697483 -0.35859901 -0.62042201 0.72846001 -0.316605 -0.60754299 0.73408598 -0.28804299\n\t\t -0.61493802 0.73408598 -0.28804299 -0.61493802 0.70813698 -0.33006501 -0.62417901\n\t\t 0.697483 -0.35859901 -0.62042201 0.697483 -0.35859901 -0.62042201 0.70813698 -0.33006501\n\t\t -0.62417901 0.66430902 -0.37532401 -0.64639401 0.66430902 -0.37532401 -0.64639401\n\t\t 0.65558201 -0.38823399 -0.64767802 0.697483 -0.35859901 -0.62042201 0.63925701 -0.364705\n\t\t -0.67700899 0.65558201 -0.38823399 -0.64767802 0.66430902 -0.37532401 -0.64639401\n\t\t 0.66430902 -0.37532401 -0.64639401 0.65512699 -0.333942 -0.67771101 0.63925701 -0.364705\n\t\t -0.67700899 0.68610001 -0.26154801 -0.67886698 0.63925701 -0.364705 -0.67700899 0.65512699\n\t\t -0.333942 -0.67771101 0.65512699 -0.333942 -0.67771101 0.68984801 -0.26548299 -0.67352003\n\t\t 0.68610001 -0.26154801 -0.67886698 0.68610001 -0.26154801 -0.67886698 0.68984801\n\t\t -0.26548299 -0.67352003 0.68287402 0.0056159999 -0.730515 0.68287402 0.0056159999\n\t\t -0.730515 0.67723203 0.041324001 -0.73460901 0.68610001 -0.26154801 -0.67886698 -0.157019\n\t\t 0.984896 -0.072970003 -0.120976 0.98447198 -0.127202;\n\tsetAttr \".n[29216:29381]\" -type \"float3\"  -0.124947 0.98462099 -0.122109 -0.124947\n\t\t 0.98462099 -0.122109 -0.158851 0.984568 -0.073427998 -0.157019 0.984896 -0.072970003\n\t\t -0.048525002 0.95291603 -0.29932699 -0.124947 0.98462099 -0.122109 -0.120976 0.98447198\n\t\t -0.127202 -0.120976 0.98447198 -0.127202 -0.043032002 0.94962901 -0.31040901 -0.048525002\n\t\t 0.95291603 -0.29932699 0.032015 0.87307101 -0.48654199 -0.048525002 0.95291603 -0.29932699\n\t\t -0.043032002 0.94962901 -0.31040901 -0.043032002 0.94962901 -0.31040901 0.032869\n\t\t 0.871198 -0.489831 0.032015 0.87307101 -0.48654199 0.050815001 0.83318001 -0.55066198\n\t\t 0.032015 0.87307101 -0.48654199 0.032869 0.871198 -0.489831 0.032869 0.871198 -0.489831\n\t\t 0.049837999 0.83315599 -0.55078799 0.050815001 0.83318001 -0.55066198 0.043428998\n\t\t 0.83375901 -0.55041701 0.050815001 0.83318001 -0.55066198 0.049837999 0.83315599\n\t\t -0.55078799 0.049837999 0.83315599 -0.55078799 0.043458998 0.83442402 -0.54940599\n\t\t 0.043428998 0.83375901 -0.55041701 0.043428998 0.83375901 -0.55041701 0.043458998\n\t\t 0.83442402 -0.54940599 0.038178999 0.83274698 -0.55233598 0.038178999 0.83274698\n\t\t -0.55233598 0.038056999 0.832385 -0.55288899 0.043428998 0.83375901 -0.55041701 0.036561001\n\t\t 0.83274102 -0.55245501 0.038056999 0.832385 -0.55288899 0.038178999 0.83274698 -0.55233598\n\t\t 0.038178999 0.83274698 -0.55233598 0.035737 0.832555 -0.55278802 0.036561001 0.83274102\n\t\t -0.55245501 0.036561001 0.83274102 -0.55245501 0.035737 0.832555 -0.55278802 0.040041\n\t\t 0.836016 -0.54724199 0.040041 0.836016 -0.54724199 0.039857 0.83578998 -0.54759997\n\t\t 0.036561001 0.83274102 -0.55245501 0.047488 0.83947098 -0.54132599 0.039857 0.83578998\n\t\t -0.54759997 0.040041 0.836016 -0.54724199 0.040041 0.836016 -0.54724199 0.047823001\n\t\t 0.84010398 -0.54031301 0.047488 0.83947098 -0.54132599 0.047488 0.83947098 -0.54132599\n\t\t 0.047823001 0.84010398 -0.54031301 0.054049 0.83225399 -0.551754 0.054049 0.83225399\n\t\t -0.551754 0.053895999 0.83652002 -0.54527903 0.047488 0.83947098 -0.54132599 0.05057\n\t\t 0.82450199 -0.563595 0.053895999 0.83652002 -0.54527903 0.054049 0.83225399 -0.551754\n\t\t 0.054049 0.83225399 -0.551754 0.048494998 0.82432902 -0.56402898 0.05057 0.82450199\n\t\t -0.563595 0.13984001 0.41500199 -0.89900899 0.149974 0.434387 -0.88815302 0.14048199\n\t\t 0.43792501 -0.88796699 0.14048199 0.43792501 -0.88796699 0.13293999 0.39592201 -0.90860999\n\t\t 0.13984001 0.41500199 -0.89900899 0.116917 0.36750701 -0.92264301 0.13984001 0.41500199\n\t\t -0.89900899 0.13293999 0.39592201 -0.90860999 0.13293999 0.39592201 -0.90860999 0.114903\n\t\t 0.36552399 -0.92368299 0.116917 0.36750701 -0.92264301 0.116917 0.36750701 -0.92264301\n\t\t 0.114903 0.36552399 -0.92368299 0.093450002 0.34645399 -0.93340099 0.093450002 0.34645399\n\t\t -0.93340099 0.092869997 0.34380001 -0.934439 0.116917 0.36750701 -0.92264301 0.092869997\n\t\t 0.34380001 -0.934439 0.093450002 0.34645399 -0.93340099 0.091252998 0.41344899 -0.90594298\n\t\t 0.091252998 0.41344899 -0.90594298 0.092046998 0.37603101 -0.92202401 0.092869997\n\t\t 0.34380001 -0.934439 0.092046998 0.37603101 -0.92202401 0.091252998 0.41344899 -0.90594298\n\t\t 0.050448 0.39180699 -0.91866302 0.050448 0.39180699 -0.91866302 0.039857998 0.377464\n\t\t -0.92516601 0.092046998 0.37603101 -0.92202401 -0.26497 0.91869599 -0.29289499 -0.217051\n\t\t 0.91267002 -0.34629899 -0.230269 0.92324102 -0.307574 -0.230269 0.92324102 -0.307574\n\t\t -0.26658699 0.91777998 -0.29429901 -0.26497 0.91869599 -0.29289499 -0.230269 0.92324102\n\t\t -0.307574 -0.217051 0.91267002 -0.34629899 -0.20814 0.89936298 -0.384478 -0.20814\n\t\t 0.89936298 -0.384478 -0.209151 0.89785397 -0.38744599 -0.230269 0.92324102 -0.307574\n\t\t -0.90524501 0.023499001 -0.42423999 -0.907067 0.030428 -0.41988599 -0.90195602 0.015869999\n\t\t -0.431537 -0.90195602 0.015869999 -0.431537 -0.89695102 0.0074459999 -0.442067 -0.90524501\n\t\t 0.023499001 -0.42423999 -0.89695102 0.0074459999 -0.442067 -0.90195602 0.015869999\n\t\t -0.431537 -0.89902103 0.0044249999 -0.43788299 -0.89902103 0.0044249999 -0.43788299\n\t\t -0.89528197 -0.003052 -0.44548899 -0.89695102 0.0074459999 -0.442067 -0.89528197\n\t\t -0.003052 -0.44548899 -0.89902103 0.0044249999 -0.43788299 -0.90489399 -0.0036319999\n\t\t -0.425621 -0.90489399 -0.0036319999 -0.425621 -0.90712899 -0.013124 -0.42064899 -0.89528197\n\t\t -0.003052 -0.44548899 -0.90712899 -0.013124 -0.42064899 -0.90489399 -0.0036319999\n\t\t -0.425621 -0.90969098 -0.054873999 -0.411645 -0.90969098 -0.054873999 -0.411645 -0.90645498\n\t\t -0.062870003 -0.41759601 -0.90712899 -0.013124 -0.42064899 -0.90645498 -0.062870003\n\t\t -0.41759601 -0.90969098 -0.054873999 -0.411645 -0.892937 -0.068089001 -0.445003 -0.892937\n\t\t -0.068089001 -0.445003 -0.87465602 -0.064700998 -0.48040599 -0.90645498 -0.062870003\n\t\t -0.41759601 -0.87060499 -0.093326002 -0.48304901 -0.87465602 -0.064700998 -0.48040599\n\t\t -0.892937 -0.068089001 -0.445003 -0.892937 -0.068089001 -0.445003 -0.877051 -0.086948998\n\t\t -0.47246301 -0.87060499 -0.093326002 -0.48304901 -0.87060499 -0.093326002 -0.48304901\n\t\t -0.877051 -0.086948998 -0.47246301 -0.85938102 -0.11347 -0.49858701 -0.85938102 -0.11347\n\t\t -0.49858701 -0.85301 -0.116644 -0.50869298 -0.87060499 -0.093326002 -0.48304901 -0.85301\n\t\t -0.116644 -0.50869298 -0.85938102 -0.11347 -0.49858701 -0.82886899 -0.11521 -0.54745197\n\t\t -0.82886899 -0.11521 -0.54745197 -0.83303499 -0.092230998 -0.54547799 -0.85301 -0.116644\n\t\t -0.50869298 -0.83303499 -0.092230998 -0.54547799 -0.82886899 -0.11521 -0.54745197\n\t\t -0.80796599 -0.083714001 -0.58325303 -0.80796599 -0.083714001 -0.58325303 -0.81204802\n\t\t -0.073977999 -0.57888299 -0.83303499 -0.092230998 -0.54547799 -0.81204802 -0.073977999\n\t\t -0.57888299 -0.80796599 -0.083714001 -0.58325303 -0.80086398 -0.120553 -0.586586\n\t\t -0.80086398 -0.120553 -0.586586 -0.793661 -0.158732 -0.58728802 -0.81204802 -0.073977999\n\t\t -0.57888299;\n\tsetAttr \".n[29382:29547]\" -type \"float3\"  -0.793661 -0.158732 -0.58728802 -0.80086398\n\t\t -0.120553 -0.586586 -0.76887703 -0.247666 -0.58948302 -0.76887703 -0.247666 -0.58948302\n\t\t -0.77058101 -0.25401199 -0.58453602 -0.793661 -0.158732 -0.58728802 -0.77058101 -0.25401199\n\t\t -0.58453602 -0.76887703 -0.247666 -0.58948302 -0.74713999 -0.29246601 -0.59686399\n\t\t -0.74713999 -0.29246601 -0.59686399 -0.75309199 -0.26661599 -0.60147202 -0.77058101\n\t\t -0.25401199 -0.58453602 -0.75309199 -0.26661599 -0.60147202 -0.74713999 -0.29246601\n\t\t -0.59686399 -0.728459 -0.316605 -0.60754299 -0.728459 -0.316605 -0.60754299 -0.73408598\n\t\t -0.28804401 -0.61493802 -0.75309199 -0.26661599 -0.60147202 -0.73408598 -0.28804401\n\t\t -0.61493802 -0.728459 -0.316605 -0.60754299 -0.69668198 -0.37409899 -0.61211503 -0.69668198\n\t\t -0.37409899 -0.61211503 -0.70537603 -0.33178201 -0.62639099 -0.73408598 -0.28804401\n\t\t -0.61493802 -0.70537603 -0.33178201 -0.62639099 -0.69668198 -0.37409899 -0.61211503\n\t\t -0.66147298 -0.38564101 -0.64322197 -0.66147298 -0.38564101 -0.64322197 -0.666821\n\t\t -0.36141199 -0.65171403 -0.70537603 -0.33178201 -0.62639099 -0.666821 -0.36141199\n\t\t -0.65171403 -0.66147298 -0.38564101 -0.64322197 -0.63926399 -0.36467901 -0.67701602\n\t\t -0.63926399 -0.36467901 -0.67701602 -0.65513301 -0.333915 -0.67771798 -0.666821 -0.36141199\n\t\t -0.65171403 -0.65513301 -0.333915 -0.67771798 -0.63926399 -0.36467901 -0.67701602\n\t\t -0.68610501 -0.26152 -0.67887199 -0.68610501 -0.26152 -0.67887199 -0.68985301 -0.26545501\n\t\t -0.67352498 -0.65513301 -0.333915 -0.67771798 -0.68287402 0.0056150001 -0.730515\n\t\t -0.68985301 -0.26545501 -0.67352498 -0.68610501 -0.26152 -0.67887199 -0.68610501\n\t\t -0.26152 -0.67887199 -0.67723203 0.041322999 -0.73460901 -0.68287402 0.0056150001\n\t\t -0.730515 0.17365301 -0.085818999 -0.98106098 0.112373 0.19227301 -0.974886 0.220744\n\t\t 0.193948 -0.955854 0.17365301 -0.085818999 -0.98106098 0.220744 0.193948 -0.955854\n\t\t 0.32087901 0.153542 -0.934591 0.17365301 -0.085818999 -0.98106098 0.32087901 0.153542\n\t\t -0.934591 0.39745599 0.077215001 -0.91436702 0.17365301 -0.085818999 -0.98106098\n\t\t 0.39745599 0.077215001 -0.91436702 0.43893099 -0.023347 -0.89821798 0.17365301 -0.085818999\n\t\t -0.98106098 0.43893099 -0.023347 -0.89821798 0.43892801 -0.132972 -0.88862902 0.17365301\n\t\t -0.085818999 -0.98106098 0.43892801 -0.132972 -0.88862902 0.39744899 -0.234843 -0.88706398\n\t\t 0.17365301 -0.085818999 -0.98106098 0.39744899 -0.234843 -0.88706398 0.32088101 -0.31349599\n\t\t -0.893731 0.17365301 -0.085818999 -0.98106098 0.32088101 -0.31349599 -0.893731 0.220777\n\t\t -0.356985 -0.90764499 0.17365301 -0.085818999 -0.98106098 0.220777 -0.356985 -0.90764499\n\t\t 0.112433 -0.35863101 -0.92668402 0.17365301 -0.085818999 -0.98106098 0.112433 -0.35863101\n\t\t -0.92668402 0.01233 -0.31825399 -0.94792497 0.17365301 -0.085818999 -0.98106098 0.01233\n\t\t -0.31825399 -0.94792497 -0.064242996 -0.241927 -0.96816498 0.17365301 -0.085818999\n\t\t -0.98106098 -0.064242996 -0.241927 -0.96816498 -0.105718 -0.141334 -0.98430097 0.17365301\n\t\t -0.085818999 -0.98106098 -0.105718 -0.141334 -0.98430097 -0.105688 -0.031739999 -0.99389303\n\t\t 0.17365301 -0.085818999 -0.98106098 -0.105688 -0.031739999 -0.99389303 -0.064212002\n\t\t 0.070133001 -0.99546897 0.17365301 -0.085818999 -0.98106098 -0.064212002 0.070133001\n\t\t -0.99546897 0.01236 0.148811 -0.98878801 0.17365301 -0.085818999 -0.98106098 0.01236\n\t\t 0.148811 -0.98878801 0.112373 0.19227301 -0.974886 0.62124997 0.26280099 -0.73822999\n\t\t 0.39745599 0.077215001 -0.91436702 0.32087901 0.153542 -0.934591 0.32087901 0.153542\n\t\t -0.934591 0.46176201 0.42162901 -0.780388 0.62124997 0.26280099 -0.73822999 0.39745599\n\t\t 0.077215001 -0.91436702 0.62124997 0.26280099 -0.73822999 0.70754999 0.053286001\n\t\t -0.704651 0.70754999 0.053286001 -0.704651 0.43893099 -0.023347 -0.89821798 0.39745599\n\t\t 0.077215001 -0.91436702 0.43893099 -0.023347 -0.89821798 0.70754999 0.053286001 -0.704651\n\t\t 0.70754999 -0.174843 -0.68469203 0.70754999 -0.174843 -0.68469203 0.43892801 -0.132972\n\t\t -0.88862902 0.43893099 -0.023347 -0.89821798 0.43892801 -0.132972 -0.88862902 0.70754999\n\t\t -0.174843 -0.68469203 0.621252 -0.38695401 -0.68140501 0.621252 -0.38695401 -0.68140501\n\t\t 0.39744899 -0.234843 -0.88706398 0.43892801 -0.132972 -0.88862902 0.39744899 -0.234843\n\t\t -0.88706398 0.621252 -0.38695401 -0.68140501 0.46175501 -0.55077899 -0.69528699 0.46175501\n\t\t -0.55077899 -0.69528699 0.32088101 -0.31349599 -0.893731 0.39744899 -0.234843 -0.88706398\n\t\t 0.32088101 -0.31349599 -0.893731 0.46175501 -0.55077899 -0.69528699 0.25336999 -0.64129901\n\t\t -0.72425002 0.25336999 -0.64129901 -0.72425002 0.220777 -0.356985 -0.90764499 0.32088101\n\t\t -0.31349599 -0.893731 0.220777 -0.356985 -0.90764499 0.25336999 -0.64129901 -0.72425002\n\t\t 0.027803 -0.64474499 -0.76389199 0.027803 -0.64474499 -0.76389199 0.112433 -0.35863101\n\t\t -0.92668402 0.220777 -0.356985 -0.90764499 0.112433 -0.35863101 -0.92668402 0.027803\n\t\t -0.64474499 -0.76389199 -0.180554 -0.56064701 -0.80813098 -0.180554 -0.56064701 -0.80813098\n\t\t 0.01233 -0.31825399 -0.94792497 0.112433 -0.35863101 -0.92668402 0.01233 -0.31825399\n\t\t -0.94792497 -0.180554 -0.56064701 -0.80813098 -0.34011 -0.401759 -0.85024399 -0.34011\n\t\t -0.401759 -0.85024399 -0.064242996 -0.241927 -0.96816498 0.01233 -0.31825399 -0.94792497\n\t\t -0.064242996 -0.241927 -0.96816498 -0.34011 -0.401759 -0.85024399 -0.426386 -0.19227199\n\t\t -0.88387001 -0.426386 -0.19227199 -0.88387001 -0.105718 -0.141334 -0.98430097 -0.064242996\n\t\t -0.241927 -0.96816498 -0.105718 -0.141334 -0.98430097 -0.426386 -0.19227199 -0.88387001\n\t\t -0.426386 0.035859998 -0.90382999 -0.426386 0.035859998 -0.90382999 -0.105688 -0.031739999\n\t\t -0.99389303 -0.105718 -0.141334 -0.98430097 -0.105688 -0.031739999 -0.99389303 -0.426386\n\t\t 0.035859998 -0.90382999 -0.34007099 0.247996 -0.90711099 -0.34007099 0.247996 -0.90711099;\n\tsetAttr \".n[29548:29713]\" -type \"float3\"  -0.064212002 0.070133001 -0.99546897\n\t\t -0.105688 -0.031739999 -0.99389303 -0.064212002 0.070133001 -0.99546897 -0.34007099\n\t\t 0.247996 -0.90711099 -0.18054999 0.41176099 -0.89322698 -0.18054999 0.41176099 -0.89322698\n\t\t 0.01236 0.148811 -0.98878801 -0.064212002 0.070133001 -0.99546897 0.01236 0.148811\n\t\t -0.98878801 -0.18054999 0.41176099 -0.89322698 0.027834 0.50229001 -0.86425102 0.027834\n\t\t 0.50229001 -0.86425102 0.112373 0.19227301 -0.974886 0.01236 0.148811 -0.98878801\n\t\t 0.112373 0.19227301 -0.974886 0.027834 0.50229001 -0.86425102 0.25337201 0.50579798\n\t\t -0.82460397 0.25337201 0.50579798 -0.82460397 0.220744 0.193948 -0.955854 0.112373\n\t\t 0.19227301 -0.974886 0.220744 0.193948 -0.955854 0.25337201 0.50579798 -0.82460397\n\t\t 0.46176201 0.42162901 -0.780388 0.46176201 0.42162901 -0.780388 0.32087901 0.153542\n\t\t -0.934591 0.220744 0.193948 -0.955854 0.25883499 0.64832401 -0.71601701 0.25337201\n\t\t 0.50579798 -0.82460397 0.027834 0.50229001 -0.86425102 0.027834 0.50229001 -0.86425102\n\t\t -0.018556001 0.64400399 -0.76479697 0.25883499 0.64832401 -0.71601701 -0.018556001\n\t\t 0.64400399 -0.76479697 0.027834 0.50229001 -0.86425102 -0.18054999 0.41176099 -0.89322698\n\t\t 0.25337201 0.50579798 -0.82460397 0.25883499 0.64832401 -0.71601701 0.51519799 0.54477203\n\t\t -0.66166103 0.51519799 0.54477203 -0.66166103 0.46176201 0.42162901 -0.780388 0.25337201\n\t\t 0.50579798 -0.82460397 0.46176201 0.42162901 -0.780388 0.51519799 0.54477203 -0.66166103\n\t\t 0.71143597 0.34938499 -0.60974503 0.71143597 0.34938499 -0.60974503 0.62124997 0.26280099\n\t\t -0.73822999 0.46176201 0.42162901 -0.780388 0.62124997 0.26280099 -0.73822999 0.71143597\n\t\t 0.34938499 -0.60974503 0.817599 0.091678999 -0.568443 0.817599 0.091678999 -0.568443\n\t\t 0.70754999 0.053286001 -0.704651 0.62124997 0.26280099 -0.73822999 0.70754999 0.053286001\n\t\t -0.704651 0.817599 0.091678999 -0.568443 0.81758398 -0.188976 -0.54391599 0.81758398\n\t\t -0.188976 -0.54391599 0.70754999 -0.174843 -0.68469203 0.70754999 0.053286001 -0.704651\n\t\t 0.70754999 -0.174843 -0.68469203 0.81758398 -0.188976 -0.54391599 0.71140802 -0.44994801\n\t\t -0.53985798 0.71140802 -0.44994801 -0.53985798 0.621252 -0.38695401 -0.68140501 0.70754999\n\t\t -0.174843 -0.68469203 0.621252 -0.38695401 -0.68140501 0.71140802 -0.44994801 -0.53985798\n\t\t 0.51522303 -0.651429 -0.55694199 0.51522303 -0.651429 -0.55694199 0.46175501 -0.55077899\n\t\t -0.69528699 0.621252 -0.38695401 -0.68140501 0.46175501 -0.55077899 -0.69528699 0.51522303\n\t\t -0.651429 -0.55694199 0.258863 -0.762824 -0.59252799 0.258863 -0.762824 -0.59252799\n\t\t 0.25336999 -0.64129901 -0.72425002 0.46175501 -0.55077899 -0.69528699 0.25336999\n\t\t -0.64129901 -0.72425002 0.258863 -0.762824 -0.59252799 -0.018586 -0.76704001 -0.64133102\n\t\t -0.018586 -0.76704001 -0.64133102 0.027803 -0.64474499 -0.76389199 0.25336999 -0.64129901\n\t\t -0.72425002 0.027803 -0.64474499 -0.76389199 -0.018586 -0.76704001 -0.64133102 -0.27495301\n\t\t -0.66356301 -0.69576198 -0.27495301 -0.66356301 -0.69576198 -0.180554 -0.56064701\n\t\t -0.80813098 0.027803 -0.64474499 -0.76389199 -0.180554 -0.56064701 -0.80813098 -0.27495301\n\t\t -0.66356301 -0.69576198 -0.471219 -0.46816701 -0.74751103 -0.471219 -0.46816701 -0.74751103\n\t\t -0.34011 -0.401759 -0.85024399 -0.180554 -0.56064701 -0.80813098 -0.34011 -0.401759\n\t\t -0.85024399 -0.471219 -0.46816701 -0.74751103 -0.57738602 -0.210458 -0.788881 -0.57738602\n\t\t -0.210458 -0.788881 -0.426386 -0.19227199 -0.88387001 -0.34011 -0.401759 -0.85024399\n\t\t -0.426386 -0.19227199 -0.88387001 -0.57738602 -0.210458 -0.788881 -0.57736403 0.070225\n\t\t -0.81346101 -0.57736403 0.070225 -0.81346101 -0.426386 0.035859998 -0.90382999 -0.426386\n\t\t -0.19227199 -0.88387001 -0.426386 0.035859998 -0.90382999 -0.57736403 0.070225 -0.81346101\n\t\t -0.47115299 0.33119199 -0.81751299 -0.47115299 0.33119199 -0.81751299 -0.34007099\n\t\t 0.247996 -0.90711099 -0.426386 0.035859998 -0.90382999 -0.34007099 0.247996 -0.90711099\n\t\t -0.47115299 0.33119199 -0.81751299 -0.274948 0.53265202 -0.80042797 -0.274948 0.53265202\n\t\t -0.80042797 -0.18054999 0.41176099 -0.89322698 -0.34007099 0.247996 -0.90711099 -0.18054999\n\t\t 0.41176099 -0.89322698 -0.274948 0.53265202 -0.80042797 -0.018556001 0.64400399 -0.76479697\n\t\t -0.17365301 -0.085818999 -0.98106098 -0.220744 0.193948 -0.955854 -0.112373 0.19227301\n\t\t -0.974886 -0.17365301 -0.085818999 -0.98106098 -0.32088 0.153542 -0.934591 -0.220744\n\t\t 0.193948 -0.955854 -0.17365301 -0.085818999 -0.98106098 -0.39745599 0.077244997 -0.91436398\n\t\t -0.32088 0.153542 -0.934591 -0.17365301 -0.085818999 -0.98106098 -0.43893099 -0.023348\n\t\t -0.89821798 -0.39745599 0.077244997 -0.91436398 -0.17365301 -0.085818999 -0.98106098\n\t\t -0.43892801 -0.132973 -0.88862902 -0.43893099 -0.023348 -0.89821798 -0.17365301 -0.085818999\n\t\t -0.98106098 -0.39744899 -0.234844 -0.88706398 -0.43892801 -0.132973 -0.88862902 -0.17365301\n\t\t -0.085818999 -0.98106098 -0.32088101 -0.31349599 -0.893731 -0.39744899 -0.234844\n\t\t -0.88706398 -0.17365301 -0.085818999 -0.98106098 -0.22074801 -0.356987 -0.90765101\n\t\t -0.32088101 -0.31349599 -0.893731 -0.17365301 -0.085818999 -0.98106098 -0.112431\n\t\t -0.358657 -0.92667401 -0.22074801 -0.356987 -0.90765101 -0.17365301 -0.085818999\n\t\t -0.98106098 -0.01233 -0.31822699 -0.94793499 -0.112431 -0.358657 -0.92667401 -0.17365301\n\t\t -0.085818999 -0.98106098 0.064242996 -0.241927 -0.96816498 -0.01233 -0.31822699 -0.94793499\n\t\t -0.17365301 -0.085818999 -0.98106098 0.105718 -0.141334 -0.98430097 0.064242996 -0.241927\n\t\t -0.96816498 -0.17365301 -0.085818999 -0.98106098 0.105719 -0.031739999 -0.99388897\n\t\t 0.105718 -0.141334 -0.98430097 -0.17365301 -0.085818999 -0.98106098 0.064212002 0.070133001\n\t\t -0.99546897 0.105719 -0.031739999 -0.99388897 -0.17365301 -0.085818999 -0.98106098\n\t\t -0.01236 0.148811 -0.98878801;\n\tsetAttr \".n[29714:29879]\" -type \"float3\"  0.064212002 0.070133001 -0.99546897 -0.17365301\n\t\t -0.085818999 -0.98106098 -0.112373 0.19227301 -0.974886 -0.01236 0.148811 -0.98878801\n\t\t -0.32088 0.153542 -0.934591 -0.39745599 0.077244997 -0.91436398 -0.62125498 0.26277301\n\t\t -0.73823601 -0.39745599 0.077244997 -0.91436398 -0.43893099 -0.023348 -0.89821798\n\t\t -0.70754999 0.053286001 -0.704651 -0.70754999 0.053286001 -0.704651 -0.62125498 0.26277301\n\t\t -0.73823601 -0.39745599 0.077244997 -0.91436398 -0.43892801 -0.132973 -0.88862902\n\t\t -0.39744899 -0.234844 -0.88706398 -0.62125099 -0.38695499 -0.68140501 -0.39744899\n\t\t -0.234844 -0.88706398 -0.32088101 -0.31349599 -0.893731 -0.46176201 -0.550758 -0.69529903\n\t\t -0.46176201 -0.550758 -0.69529903 -0.62125099 -0.38695499 -0.68140501 -0.39744899\n\t\t -0.234844 -0.88706398 -0.22074801 -0.356987 -0.90765101 -0.112431 -0.358657 -0.92667401\n\t\t -0.027803 -0.64474499 -0.76389199 -0.112431 -0.358657 -0.92667401 -0.01233 -0.31822699\n\t\t -0.94793499 0.18054999 -0.560633 -0.80814099 0.18054999 -0.560633 -0.80814099 -0.027803\n\t\t -0.64474499 -0.76389199 -0.112431 -0.358657 -0.92667401 0.064242996 -0.241927 -0.96816498\n\t\t 0.105718 -0.141334 -0.98430097 0.426411 -0.192269 -0.88385898 0.105718 -0.141334\n\t\t -0.98430097 0.105719 -0.031739999 -0.99388897 0.426386 0.035829999 -0.90383101 0.426386\n\t\t 0.035829999 -0.90383101 0.426411 -0.192269 -0.88385898 0.105718 -0.141334 -0.98430097\n\t\t 0.064212002 0.070133001 -0.99546897 -0.01236 0.148811 -0.98878801 0.18054999 0.41176099\n\t\t -0.89322698 -0.01236 0.148811 -0.98878801 -0.112373 0.19227301 -0.974886 -0.027803\n\t\t 0.50231302 -0.86423898 -0.25340101 0.50579399 -0.824597 -0.027803 0.50231302 -0.86423898\n\t\t -0.112373 0.19227301 -0.974886 -0.112373 0.19227301 -0.974886 -0.220744 0.193948\n\t\t -0.955854 -0.25340101 0.50579399 -0.824597 -0.461721 0.42164999 -0.78039998 -0.25340101\n\t\t 0.50579399 -0.824597 -0.220744 0.193948 -0.955854 -0.220744 0.193948 -0.955854 -0.32088\n\t\t 0.153542 -0.934591 -0.461721 0.42164999 -0.78039998 -0.62125498 0.26277301 -0.73823601\n\t\t -0.461721 0.42164999 -0.78039998 -0.32088 0.153542 -0.934591 -0.027803 0.50231302\n\t\t -0.86423898 0.18054999 0.41176099 -0.89322698 -0.01236 0.148811 -0.98878801 -0.027803\n\t\t 0.50231302 -0.86423898 -0.25340101 0.50579399 -0.824597 -0.25886399 0.64831901 -0.71601099\n\t\t -0.25886399 0.64831901 -0.71601099 -0.25340101 0.50579399 -0.824597 -0.461721 0.42164999\n\t\t -0.78039998 -0.25886399 0.64831901 -0.71601099 0.018586 0.64407003 -0.764741 -0.027803\n\t\t 0.50231302 -0.86423898 -0.461721 0.42164999 -0.78039998 -0.515167 0.544801 -0.66166002\n\t\t -0.25886399 0.64831901 -0.71601099 -0.515167 0.544801 -0.66166002 -0.461721 0.42164999\n\t\t -0.78039998 -0.62125498 0.26277301 -0.73823601 -0.62125498 0.26277301 -0.73823601\n\t\t -0.71147197 0.34935701 -0.60971898 -0.515167 0.544801 -0.66166002 -0.71147197 0.34935701\n\t\t -0.60971898 -0.62125498 0.26277301 -0.73823601 -0.70754999 0.053286001 -0.704651\n\t\t -0.70754999 0.053286001 -0.704651 -0.817599 0.091678001 -0.568443 -0.71147197 0.34935701\n\t\t -0.60971898 -0.817599 0.091678001 -0.568443 -0.70754999 0.053286001 -0.704651 -0.70754999\n\t\t -0.174843 -0.68469203 -0.70754999 -0.174843 -0.68469203 -0.70754999 0.053286001 -0.704651\n\t\t -0.43893099 -0.023348 -0.89821798 -0.43893099 -0.023348 -0.89821798 -0.43892801 -0.132973\n\t\t -0.88862902 -0.70754999 -0.174843 -0.68469203 -0.62125099 -0.38695499 -0.68140501\n\t\t -0.70754999 -0.174843 -0.68469203 -0.43892801 -0.132973 -0.88862902 -0.70754999 -0.174843\n\t\t -0.68469203 -0.81758398 -0.188976 -0.54391599 -0.817599 0.091678001 -0.568443 -0.81758398\n\t\t -0.188976 -0.54391599 -0.70754999 -0.174843 -0.68469203 -0.62125099 -0.38695499 -0.68140501\n\t\t -0.62125099 -0.38695499 -0.68140501 -0.71140701 -0.44994801 -0.53985798 -0.81758398\n\t\t -0.188976 -0.54391599 -0.71140701 -0.44994801 -0.53985798 -0.62125099 -0.38695499\n\t\t -0.68140501 -0.46176201 -0.550758 -0.69529903 -0.46176201 -0.550758 -0.69529903 -0.51523101\n\t\t -0.65144098 -0.55692101 -0.71140701 -0.44994801 -0.53985798 -0.51523101 -0.65144098\n\t\t -0.55692101 -0.46176201 -0.550758 -0.69529903 -0.25334099 -0.64130402 -0.72425598\n\t\t -0.25334099 -0.64130402 -0.72425598 -0.46176201 -0.550758 -0.69529903 -0.32088101\n\t\t -0.31349599 -0.893731 -0.32088101 -0.31349599 -0.893731 -0.22074801 -0.356987 -0.90765101\n\t\t -0.25334099 -0.64130402 -0.72425598 -0.027803 -0.64474499 -0.76389199 -0.25334099\n\t\t -0.64130402 -0.72425598 -0.22074801 -0.356987 -0.90765101 -0.25334099 -0.64130402\n\t\t -0.72425598 -0.258834 -0.76283002 -0.59253198 -0.51523101 -0.65144098 -0.55692101\n\t\t -0.258834 -0.76283002 -0.59253198 -0.25334099 -0.64130402 -0.72425598 -0.027803 -0.64474499\n\t\t -0.76389199 -0.027803 -0.64474499 -0.76389199 0.018586 -0.767039 -0.64133102 -0.258834\n\t\t -0.76283002 -0.59253198 0.018586 -0.767039 -0.64133102 -0.027803 -0.64474499 -0.76389199\n\t\t 0.18054999 -0.560633 -0.80814099 0.18054999 -0.560633 -0.80814099 0.27498201 -0.663589\n\t\t -0.69572598 0.018586 -0.767039 -0.64133102 0.27498201 -0.663589 -0.69572598 0.18054999\n\t\t -0.560633 -0.80814099 0.34011 -0.401759 -0.85024399 0.34011 -0.401759 -0.85024399\n\t\t 0.18054999 -0.560633 -0.80814099 -0.01233 -0.31822699 -0.94793499 -0.01233 -0.31822699\n\t\t -0.94793499 0.064242996 -0.241927 -0.96816498 0.34011 -0.401759 -0.85024399 0.426411\n\t\t -0.192269 -0.88385898 0.34011 -0.401759 -0.85024399 0.064242996 -0.241927 -0.96816498\n\t\t 0.34011 -0.401759 -0.85024399 0.47125 -0.46813601 -0.74751103 0.27498201 -0.663589\n\t\t -0.69572598 0.47125 -0.46813601 -0.74751103 0.34011 -0.401759 -0.85024399 0.426411\n\t\t -0.192269 -0.88385898 0.426411 -0.192269 -0.88385898 0.57736498 -0.21046101 -0.78889501\n\t\t 0.47125 -0.46813601 -0.74751103 0.57736498 -0.21046101 -0.78889501 0.426411 -0.192269\n\t\t -0.88385898 0.426386 0.035829999 -0.90383101;\n\tsetAttr \".n[29880:30045]\" -type \"float3\"  0.426386 0.035829999 -0.90383101 0.57736403\n\t\t 0.070225 -0.81346101 0.57736498 -0.21046101 -0.78889501 0.57736403 0.070225 -0.81346101\n\t\t 0.426386 0.035829999 -0.90383101 0.34007099 0.247996 -0.90711099 0.34007099 0.247996\n\t\t -0.90711099 0.426386 0.035829999 -0.90383101 0.105719 -0.031739999 -0.99388897 0.105719\n\t\t -0.031739999 -0.99388897 0.064212002 0.070133001 -0.99546897 0.34007099 0.247996\n\t\t -0.90711099 0.18054999 0.41176099 -0.89322698 0.34007099 0.247996 -0.90711099 0.064212002\n\t\t 0.070133001 -0.99546897 0.34007099 0.247996 -0.90711099 0.47115201 0.33119199 -0.81751299\n\t\t 0.57736403 0.070225 -0.81346101 0.47115201 0.33119199 -0.81751299 0.34007099 0.247996\n\t\t -0.90711099 0.18054999 0.41176099 -0.89322698 0.18054999 0.41176099 -0.89322698 0.274948\n\t\t 0.53265202 -0.80042797 0.47115201 0.33119199 -0.81751299 0.274948 0.53265202 -0.80042797\n\t\t 0.18054999 0.41176099 -0.89322698 -0.027803 0.50231302 -0.86423898 -0.027803 0.50231302\n\t\t -0.86423898 0.018586 0.64407003 -0.764741 0.274948 0.53265202 -0.80042797 -0.59481102\n\t\t 0 0.80386502 -0.59484601 0 0.80383998 -0.59482598 0 0.80385399 -0.59482598 0 0.80385399\n\t\t -0.59481102 0 0.80386502 -0.59481102 0 0.80386502 -0.59482598 0 0.80385399 -0.59484601\n\t\t 0 0.80383998 -0.59487998 0 0.80381399 -0.59487998 0 0.80381399 -0.59484601 0 0.80383998\n\t\t -0.59484601 0 0.80383998 -0.59484601 0 0.80383998 -0.59484601 0 0.80383998 -0.59487998\n\t\t 0 0.80381399 -0.59487998 0 0.80381399 -0.59484601 0 0.80383998 -0.59484601 0 0.80383998\n\t\t -0.59484601 0 0.80383998 -0.59484601 0 0.80383998 -0.59487998 0 0.80381399 -0.59482598\n\t\t 0 0.80385399 -0.59484601 0 0.80383998 -0.59484601 0 0.80383998 -0.59484601 0 0.80383998\n\t\t -0.59482598 0 0.80385399 -0.59482598 0 0.80385399 -0.59487998 0 0.80381399 -0.59487998\n\t\t 0 0.80381399 -0.59487998 0 0.80381399 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0\n\t\t 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.59481102 0 0.80386502\n\t\t -0.59482598 0 0.80385399 -0.59482598 0 0.80385399 -0.59481102 0 0.80386502 -0.59482598\n\t\t 0 0.80385399 -0.59482598 0 0.80385399 -0.59482598 0 0.80385399 -0.59484601 0 0.80383998\n\t\t -0.59481102 0 0.80386502 -0.59481102 0 0.80386502 -0.59481102 0 0.80386502 -0.59484601\n\t\t 0 0.80383998 -0.59484601 0 0.80383998 -0.59484601 0 0.80383998 -0.59481102 0 0.80386502\n\t\t -0.59481102 0 0.80386502 -0.59481102 0 0.80386502 -0.59484601 0 0.80383998 -0.59482598\n\t\t 0 0.80385399 -0.59481102 0 0.80386502 -0.59481102 0 0.80386502 -0.59484601 0 0.80383998\n\t\t -0.59481102 0 0.80386502 -0.59481102 0 0.80386502 -0.59482598 0 0.80385399 -0.59482598\n\t\t 0 0.80385399 -0.59482598 0 0.80385399 -0.59482598 0 0.80385399 -0.59482598 0 0.80385399\n\t\t -0.59482598 0 0.80385399 0.80386502 0 0.59481102 0.80386502 0 0.59481102 0.80386502\n\t\t 0 0.59481102 0.80386502 0 0.59481102 0.80386502 0 0.59481102 0.80386502 0 0.59481102\n\t\t 0.152505 0.98184103 0.11283 0.15250599 0.981848 0.11277 0.15250599 0.98184401 0.1128\n\t\t 0.15250599 0.98184401 0.1128 0.152505 0.98184103 0.11283 0.152505 0.98184103 0.11283\n\t\t -0.80386502 0 -0.59481102 -0.80386502 0 -0.59481102 -0.80386502 0 -0.59481102 -0.80386502\n\t\t 0 -0.59481102 -0.80386502 0 -0.59481102 -0.80386502 0 -0.59481102 -0.152505 -0.98184103\n\t\t -0.11283 -0.152505 -0.98184103 -0.11283 -0.152505 -0.98184103 -0.11283 -0.152505\n\t\t -0.98184103 -0.11283 -0.152505 -0.98184103 -0.11283 -0.152505 -0.98184103 -0.11283\n\t\t 0.59482598 0 0.80385399 0.59482598 0 0.80385399 0.59482598 0 0.80385399 0.59482598\n\t\t 0 0.80385399 0.59484601 0 0.80383998 0.59482598 0 0.80385399 0.59486002 0 0.80382901\n\t\t 0.59484601 0 0.80383998 0.59482598 0 0.80385399 0.59484601 0 0.80383998 0.59484601\n\t\t 0 0.80383998 0.59486002 0 0.80382901 0.59486002 0 0.80382901 0.59484601 0 0.80383998\n\t\t 0.59484601 0 0.80383998 0.59484601 0 0.80383998 0.59484601 0 0.80383998 0.59487998\n\t\t 0 0.80381399 0.59487998 0 0.80381399 0.59484601 0 0.80383998 0.59484601 0 0.80383998\n\t\t 0.59484601 0 0.80383998 0.59484601 0 0.80383998 0.59482598 0 0.80385399 0.59482598\n\t\t 0 0.80385399 0.59481102 0 0.80386502 0.59484601 0 0.80383998 0.59487998 0 0.80381399\n\t\t 0.59487998 0 0.80381399 0.59487998 0 0.80381399 0.59481102 0 0.80386502 0.59481102\n\t\t 0 0.80386502 0.59482598 0 0.80385399 0.59482598 0 0.80385399;\n\tsetAttr \".n[30046:30211]\" -type \"float3\"  0.59481102 0 0.80386502 0.59481102 0\n\t\t 0.80386502 0.59481102 0 0.80386502 0.59482598 0 0.80385399 0.59484601 0 0.80383998\n\t\t 0.59481102 0 0.80386502 0.59484601 0 0.80383998 0.59481102 0 0.80386502 0.59481102\n\t\t 0 0.80386502 0.59481102 0 0.80386502 0.59481102 0 0.80386502 0.59481102 0 0.80386502\n\t\t 0.59484601 0 0.80383998 0.59484601 0 0.80383998 0.59484601 0 0.80383998 0.59481102\n\t\t 0 0.80386502 0.59481102 0 0.80386502 0.59484601 0 0.80383998 0.59481102 0 0.80386502\n\t\t 0.59481102 0 0.80386502 0.59482598 0 0.80385399 0.59482598 0 0.80385399 0.59482598\n\t\t 0 0.80385399 0.59482598 0 0.80385399 0.59482598 0 0.80385399 0.59482598 0 0.80385399\n\t\t -0.80386502 0 0.59481102 -0.80386502 0 0.59481102 -0.80386502 0 0.59481102 -0.80386502\n\t\t 0 0.59481102 -0.80386502 0 0.59481102 -0.80386502 0 0.59481102 -0.15250599 0.98184103\n\t\t 0.11283 -0.15250599 0.98184103 0.11283 -0.15250599 0.98184401 0.1128 -0.15250599\n\t\t 0.98184401 0.1128 -0.152537 0.98184299 0.112769 -0.15250599 0.98184103 0.11283 0.80385399\n\t\t 0 -0.59482598 0.80385399 0 -0.59482598 0.80385399 0 -0.59482598 0.80385399 0 -0.59482598\n\t\t 0.80385399 0 -0.59482598 0.80385399 0 -0.59482598 0.15250599 -0.98184103 -0.11283\n\t\t 0.15250599 -0.98184103 -0.11283 0.15250599 -0.98184103 -0.11283 0.15250599 -0.98184103\n\t\t -0.11283 0.15250599 -0.98184103 -0.11283 0.15250599 -0.98184103 -0.11283 0.403864\n\t\t -0.18714499 -0.89547199 0.37627599 -0.16047201 -0.91250497 0.37248299 -0.163673 -0.91349202\n\t\t 0.37248299 -0.163673 -0.91349202 0.38716701 -0.15299299 -0.90922803 0.403864 -0.18714499\n\t\t -0.89547199 0.42519701 -0.187389 -0.88549 0.37627599 -0.16047201 -0.91250497 0.403864\n\t\t -0.18714499 -0.89547199 0.403864 -0.18714499 -0.89547199 0.44015101 -0.190594 -0.87746298\n\t\t 0.42519701 -0.187389 -0.88549 0.43084401 -0.168956 -0.88646901 0.42519701 -0.187389\n\t\t -0.88549 0.44015101 -0.190594 -0.87746298 0.44015101 -0.190594 -0.87746298 0.425589\n\t\t -0.166604 -0.88944799 0.43084401 -0.168956 -0.88646901 0.41972801 -0.17676599 -0.89027101\n\t\t 0.43084401 -0.168956 -0.88646901 0.425589 -0.166604 -0.88944799 0.425589 -0.166604\n\t\t -0.88944799 0.41146299 -0.17502899 -0.894463 0.41972801 -0.17676599 -0.89027101 0.40160501\n\t\t -0.17096999 -0.89971298 0.41972801 -0.17676599 -0.89027101 0.41146299 -0.17502899\n\t\t -0.894463 0.41146299 -0.17502899 -0.894463 0.396348 -0.151618 -0.90549397 0.40160501\n\t\t -0.17096999 -0.89971298 0.387436 -0.141424 -0.91098499 0.40160501 -0.17096999 -0.89971298\n\t\t 0.396348 -0.151618 -0.90549397 0.396348 -0.151618 -0.90549397 0.38282999 -0.123632\n\t\t -0.91550899 0.387436 -0.141424 -0.91098499 0.374805 -0.118658 -0.91947901 0.387436\n\t\t -0.141424 -0.91098499 0.38282999 -0.123632 -0.91550899 0.38282999 -0.123632 -0.91550899\n\t\t 0.39769399 -0.094457 -0.91264302 0.374805 -0.118658 -0.91947901 0.45970801 -0.140387\n\t\t -0.876903 0.38716701 -0.15299299 -0.90922803 0.37248299 -0.163673 -0.91349202 0.37248299\n\t\t -0.163673 -0.91349202 0.38628301 -0.204052 -0.89952701 0.45970801 -0.140387 -0.876903\n\t\t 0.48711199 -0.129705 -0.86365402 0.45970801 -0.140387 -0.876903 0.38628301 -0.204052\n\t\t -0.89952701 0.48711199 -0.129705 -0.86365402 0.48342699 -0.12772299 -0.86601698 0.45970801\n\t\t -0.140387 -0.876903 0.48711199 -0.129705 -0.86365402 0.38628301 -0.204052 -0.89952701\n\t\t 0.492183 -0.136482 -0.85972601 0.48711199 -0.129705 -0.86365402 0.492183 -0.136482\n\t\t -0.85972601 0.49335 -0.081609003 -0.86599398 0.49335 -0.081609003 -0.86599398 0.374805\n\t\t -0.118658 -0.91947901 0.39769399 -0.094457 -0.91264302 0.48711199 -0.129705 -0.86365402\n\t\t 0.49335 -0.081609003 -0.86599398 0.46505299 -0.077122003 -0.881917 0.39769399 -0.094457\n\t\t -0.91264302 0.43584499 -0.081882998 -0.89628899 0.49335 -0.081609003 -0.86599398\n\t\t 0.49335 -0.081609003 -0.86599398 0.43584499 -0.081882998 -0.89628899 0.46505299 -0.077122003\n\t\t -0.881917 0.37959 0.923311 0.058382001 0.267104 0.95683998 0.114508 0.29887199 0.915021\n\t\t 0.27094799 0.29887199 0.915021 0.27094799 0.41774699 0.88331801 0.212688 0.37959\n\t\t 0.923311 0.058382001 0.176276 0.958534 -0.22391599 0.37959 0.923311 0.058382001 0.41774699\n\t\t 0.88331801 0.212688 0.41774699 0.88331801 0.212688 0.267225 0.96162498 -0.062197998\n\t\t 0.176276 0.958534 -0.22391599 0.29887199 0.915021 0.27094799 0.267104 0.95683998\n\t\t 0.114508 0.091495998 0.98665202 0.134711 0.091495998 0.98665202 0.134711 0.14991\n\t\t 0.93324602 0.326464 0.29887199 0.915021 0.27094799 -0.081394002 0.81494898 -0.57378799\n\t\t -0.047793999 0.871086 -0.48879999 -0.058536001 0.91558099 -0.39785099 -0.058536001\n\t\t 0.91558099 -0.39785099 -0.121437 0.85548598 -0.50338501 -0.081394002 0.81494898 -0.57378799\n\t\t -0.123388 0.71740901 -0.68563902 -0.081394002 0.81494898 -0.57378799 -0.121437 0.85548598\n\t\t -0.50338501 -0.121437 0.85548598 -0.50338501 -0.247967 0.72714502 -0.64013499 -0.123388\n\t\t 0.71740901 -0.68563902 -0.12043 0.85673898 -0.50149399 -0.033938002 0.911484 -0.409933\n\t\t 0.176276 0.958534 -0.22391599 -0.12043 0.85673898 -0.50149399 -0.121437 0.85548598\n\t\t -0.50338501 -0.058536001 0.91558099 -0.39785099 -0.058536001 0.91558099 -0.39785099\n\t\t -0.033938002 0.911484 -0.409933 -0.12043 0.85673898 -0.50149399 0.176276 0.958534\n\t\t -0.22391599 -0.096134998 0.899275 -0.426687 -0.12043 0.85673898 -0.50149399 -0.12043\n\t\t 0.85673898 -0.50149399 -0.096134998 0.899275 -0.426687;\n\tsetAttr \".n[30212:30377]\" -type \"float3\"  -0.19224 0.86402798 -0.46529499 -0.19791999\n\t\t 0.89437503 -0.401149 -0.19224 0.86402798 -0.46529499 -0.096134998 0.899275 -0.426687\n\t\t -0.096134998 0.899275 -0.426687 -0.109839 0.92222798 -0.37071601 -0.19791999 0.89437503\n\t\t -0.401149 -0.109839 0.92222798 -0.37071601 -0.096134998 0.899275 -0.426687 0.176276\n\t\t 0.958534 -0.22391599 -0.19791999 0.89437503 -0.401149 -0.109839 0.92222798 -0.37071601\n\t\t -0.074804001 0.94863802 -0.30739301 -0.074804001 0.94863802 -0.30739301 -0.206154\n\t\t 0.91617101 -0.34370199 -0.19791999 0.89437503 -0.401149 -0.206154 0.91617101 -0.34370199\n\t\t -0.074804001 0.94863802 -0.30739301 -0.055148002 0.99592501 -0.071353003 0.032166999\n\t\t 0.99061 -0.132879 -0.055148002 0.99592501 -0.071353003 -0.074804001 0.94863802 -0.30739301\n\t\t -0.074804001 0.94863802 -0.30739301 0.110539 0.96546698 -0.235912 0.032166999 0.99061\n\t\t -0.132879 0.110539 0.96546698 -0.235912 -0.074804001 0.94863802 -0.30739301 -0.109839\n\t\t 0.92222798 -0.37071601 -0.055148002 0.99592501 -0.071353003 -0.31709701 0.93782997\n\t\t -0.14115199 -0.206154 0.91617101 -0.34370199 -0.109839 0.92222798 -0.37071601 0.15403201\n\t\t 0.959503 -0.235855 0.110539 0.96546698 -0.235912 0.110539 0.96546698 -0.235912 0.15403201\n\t\t 0.959503 -0.235855 0.25547299 0.95902401 -0.122503 0.25547299 0.95902401 -0.122503\n\t\t 0.45000699 0.891195 -0.057131998 0.110539 0.96546698 -0.235912 0.032166999 0.99061\n\t\t -0.132879 0.110539 0.96546698 -0.235912 0.45000699 0.891195 -0.057131998 0.45000699\n\t\t 0.891195 -0.057131998 0.545443 0.832174 -0.099890001 0.032166999 0.99061 -0.132879\n\t\t 0.87309903 0.47531 -0.108527 0.79050201 0.58981001 -0.165016 0.76457399 0.61899698\n\t\t -0.179638 0.31834599 0.91261798 -0.256484 0.56627798 0.787175 -0.244304 0.40767401\n\t\t 0.84922498 -0.33558801 0.48693401 0.78995901 -0.37264001 0.40767401 0.84922498 -0.33558801\n\t\t 0.56627798 0.787175 -0.244304 0.56627798 0.787175 -0.244304 0.523251 0.77997899 -0.34327999\n\t\t 0.48693401 0.78995901 -0.37264001 0.176276 0.958534 -0.22391599 0.15403201 0.959503\n\t\t -0.235855 -0.109839 0.92222798 -0.37071601 0.34014201 0.83556801 -0.431427 0.48693401\n\t\t 0.78995901 -0.37264001 0.523251 0.77997899 -0.34327999 0.523251 0.77997899 -0.34327999\n\t\t 0.38008201 0.82529098 -0.417651 0.34014201 0.83556801 -0.431427 0.34349799 0.79634798\n\t\t -0.49783501 0.34014201 0.83556801 -0.431427 0.38008201 0.82529098 -0.417651 0.38008201\n\t\t 0.82529098 -0.417651 0.400415 0.78221399 -0.477294 0.34349799 0.79634798 -0.49783501\n\t\t 0.34349799 0.79634798 -0.49783501 0.400415 0.78221399 -0.477294 0.76064003 0.450317\n\t\t -0.46759099 0.15403201 0.959503 -0.235855 0.176276 0.958534 -0.22391599 0.267225\n\t\t 0.96162498 -0.062197998 0.267225 0.96162498 -0.062197998 0.25547299 0.95902401 -0.122503\n\t\t 0.15403201 0.959503 -0.235855 -0.49645001 0.78161699 -0.37764001 -0.206154 0.91617101\n\t\t -0.34370199 -0.31709701 0.93782997 -0.14115199 -0.31709701 0.93782997 -0.14115199\n\t\t -0.71900302 0.64740402 -0.25279099 -0.49645001 0.78161699 -0.37764001 -0.71965498\n\t\t 0.54242599 -0.43344101 -0.49645001 0.78161699 -0.37764001 -0.71900302 0.64740402\n\t\t -0.25279099 -0.71900302 0.64740402 -0.25279099 -0.85647798 0.459856 -0.234475 -0.71965498\n\t\t 0.54242599 -0.43344101 -0.49645001 0.78161699 -0.37764001 -0.71965498 0.54242599\n\t\t -0.43344101 -0.72651601 0.52987897 -0.43749699 -0.49645001 0.78161699 -0.37764001\n\t\t -0.254713 0.88508499 -0.38954601 -0.206154 0.91617101 -0.34370199 -0.254713 0.88508499\n\t\t -0.38954601 -0.19791999 0.89437503 -0.401149 -0.206154 0.91617101 -0.34370199 -0.19791999\n\t\t 0.89437503 -0.401149 -0.254713 0.88508499 -0.38954601 -0.205733 0.866023 -0.45571801\n\t\t -0.205733 0.866023 -0.45571801 -0.19224 0.86402798 -0.46529499 -0.19791999 0.89437503\n\t\t -0.401149 -0.19224 0.86402798 -0.46529499 -0.205733 0.866023 -0.45571801 -0.290539\n\t\t 0.754089 -0.58901298 -0.290539 0.754089 -0.58901298 -0.276288 0.75714397 -0.59194499\n\t\t -0.19224 0.86402798 -0.46529499 -0.19224 0.86402798 -0.46529499 -0.276288 0.75714397\n\t\t -0.59194499 -0.12043 0.85673898 -0.50149399 -0.121437 0.85548598 -0.50338501 -0.12043\n\t\t 0.85673898 -0.50149399 -0.276288 0.75714397 -0.59194499 -0.276288 0.75714397 -0.59194499\n\t\t -0.247967 0.72714502 -0.64013499 -0.121437 0.85548598 -0.50338501 -0.25804201 0.71998399\n\t\t -0.64423501 -0.247967 0.72714502 -0.64013499 -0.276288 0.75714397 -0.59194499 -0.276288\n\t\t 0.75714397 -0.59194499 -0.290539 0.754089 -0.58901298 -0.25804201 0.71998399 -0.64423501\n\t\t -0.247967 0.72714502 -0.64013499 -0.25804201 0.71998399 -0.64423501 -0.132578 0.70842302\n\t\t -0.69322401 0.15174 -0.98838198 -0.0086979996 0 -0.99993801 -0.011109 0.003663 -0.99997801\n\t\t -0.0055539999 0.15174 -0.98838198 -0.0086979996 0.003663 -0.99997801 -0.0055539999\n\t\t 0.037142001 -0.99928302 0.0073859999 0.15174 -0.98838198 -0.0086979996 0.037142001\n\t\t -0.99928302 0.0073859999 0.13181201 -0.99104398 0.021393999 0 -1 0.000336 0.037142001\n\t\t -0.99928302 0.0073859999 0.003663 -0.99997801 -0.0055539999 0.037142001 -0.99928302\n\t\t 0.0073859999 0 -1 0.000336 0 -1 0.000122 0 -1 0.000122 0 -1 0.000122 0 -1 0.000336\n\t\t 0 -1 0.000336 0 -1 0.000336 0 -1 0.000122 0 -1 0.000122 0 -1 0.000336 0 -1 0.000336\n\t\t 0 -1 0.000336 0 -1 9.2000002e-05 0 -1 0.000122 0 -1 0.000336 0 -1 0.000336 0 -1 0.000397\n\t\t 0.003663 -0.99997801 -0.0055539999 0 -1 0.000397 0 -1 0.000336;\n\tsetAttr \".n[30378:30543]\" -type \"float3\"  0 -1 0.000397 0 -1 0.000397 0 -1 0.000336\n\t\t 0 -1 0.000336 0 -1 0.000336 0 -1 0.000397 0 -1 0.000397 0 -1 0.000397 0 -1 0.000336\n\t\t 0 -1 0.000122 0 -1 0.000122 0 -1 0 0 -1 0 0 -1 0 0 -1 0.000122 0 -1 0 0 -1 0 0 -1\n\t\t 0.000122 0 -1 0.000122 0 -1 9.2000002e-05 0 -1 0 0 -1 0.000122 -2.9999999e-05 -1\n\t\t 0.000122 0.037142001 -0.99928302 0.0073859999 -2.9999999e-05 -1 0.000122 0 -1 0.000122\n\t\t 0 -1 0 0 -1 0 0 -1 0 -2.9999999e-05 -1 0.000122 -2.9999999e-05 -1 0.000122 0 -1 0\n\t\t 0 -1 0 0 -1 0 0.11579 -0.99327397 0.00042699999 -2.9999999e-05 -1 0.000122 0.11579\n\t\t -0.99327397 0.00042699999 0.037142001 -0.99928302 0.0073859999 -2.9999999e-05 -1\n\t\t 0.000122 0.11579 -0.99327397 0.00042699999 0.13181201 -0.99104398 0.021393999 0.037142001\n\t\t -0.99928302 0.0073859999 0.35661599 -0.933824 -0.028261 0.15174 -0.98838198 -0.0086979996\n\t\t 0.13181201 -0.99104398 0.021393999 0.13181201 -0.99104398 0.021393999 0.11579 -0.99327397\n\t\t 0.00042699999 0.35661599 -0.933824 -0.028261 0.86907101 -0.48028401 -0.118507 0.90324903\n\t\t -0.40895799 -0.12998199 0.85134101 -0.40517601 -0.333242 0.85134101 -0.40517601 -0.333242\n\t\t 0.87602001 -0.46151 -0.139991 0.86907101 -0.48028401 -0.118507 0.90896499 -0.38475999\n\t\t -0.16044199 0.87602001 -0.46151 -0.139991 0.85134101 -0.40517601 -0.333242 0.85134101\n\t\t -0.40517601 -0.333242 0.84452498 -0.37089801 -0.38628 0.90896499 -0.38475999 -0.16044199\n\t\t 0.91282898 -0.377552 -0.15555599 0.90896499 -0.38475999 -0.16044199 0.84452498 -0.37089801\n\t\t -0.38628 0.84452498 -0.37089801 -0.38628 0.89793903 -0.41942599 -0.133369 0.91282898\n\t\t -0.377552 -0.15555599 0.95680797 0.27272001 -0.100713 0.95686501 0.273909 -0.096868001\n\t\t 0.96340001 0.23176301 -0.134712 0.96340001 0.23176301 -0.134712 0.96608102 0.22239301\n\t\t -0.131262 0.95680797 0.27272001 -0.100713 0.97179902 0.163432 -0.169993 0.96608102\n\t\t 0.22239301 -0.131262 0.96340001 0.23176301 -0.134712 0.96340001 0.23176301 -0.134712\n\t\t 0.96977103 0.168221 -0.17676599 0.97179902 0.163432 -0.169993 0.968431 0.113043 -0.222179\n\t\t 0.97179902 0.163432 -0.169993 0.96977103 0.168221 -0.17676599 0.96977103 0.168221\n\t\t -0.17676599 0.96675098 0.114569 -0.228618 0.968431 0.113043 -0.222179 0.94965798\n\t\t -0.127691 -0.28608501 0.968431 0.113043 -0.222179 0.96675098 0.114569 -0.228618 0.96675098\n\t\t 0.114569 -0.228618 0.95285702 -0.087160997 -0.29063001 0.94965798 -0.127691 -0.28608501\n\t\t 0.55342603 0.73284602 -0.39579701 0.55502599 0.72953701 -0.399652 0.59484899 0.72879797\n\t\t -0.339129 0.59484899 0.72879797 -0.339129 0.57949603 0.74002701 -0.34138599 0.55342603\n\t\t 0.73284602 -0.39579701 0.57949603 0.74002701 -0.34138599 0.59484899 0.72879797 -0.339129\n\t\t 0.63377202 0.70549399 -0.31719199 0.63377202 0.70549399 -0.31719199 0.63362497 0.70592701\n\t\t -0.31652299 0.57949603 0.74002701 -0.34138599 0.86962402 -0.41466901 -0.26796201\n\t\t 0.86945599 -0.415241 -0.26762101 0.85213202 -0.44100499 -0.281755 0.85213202 -0.44100499\n\t\t -0.281755 0.85202497 -0.440844 -0.28233001 0.86962402 -0.41466901 -0.26796201 0.90101898\n\t\t -0.34169301 -0.26722601 0.86945599 -0.415241 -0.26762101 0.86962402 -0.41466901 -0.26796201\n\t\t 0.86962402 -0.41466901 -0.26796201 0.89653099 -0.35353401 -0.26692101 0.90101898\n\t\t -0.34169301 -0.26722601 0.90101898 -0.34169301 -0.26722601 0.89653099 -0.35353401\n\t\t -0.26692101 0.94965798 -0.127691 -0.28608501 0.94965798 -0.127691 -0.28608501 0.95285702\n\t\t -0.087160997 -0.29063001 0.90101898 -0.34169301 -0.26722601 0.95361 0.28993499 0.081028998\n\t\t 0.95480698 0.28126001 0.096102998 0.961272 0.252702 0.109992 0.961272 0.252702 0.109992\n\t\t 0.96199 0.256116 0.094761997 0.95361 0.28993499 0.081028998 0.954247 0.248794 0.16587199\n\t\t 0.961272 0.252702 0.109992 0.95480698 0.28126001 0.096102998 0.95480698 0.28126001\n\t\t 0.096102998 0.948502 0.27342099 0.15995 0.954247 0.248794 0.16587199 0.961272 0.252702\n\t\t 0.109992 0.954247 0.248794 0.16587199 0.966694 0.177072 0.184793 0.966694 0.177072\n\t\t 0.184793 0.97443998 0.182199 0.13141499 0.961272 0.252702 0.109992 0.975124 0.186565\n\t\t 0.119697 0.96199 0.256116 0.094761997 0.961272 0.252702 0.109992 0.961272 0.252702\n\t\t 0.109992 0.97443998 0.182199 0.13141499 0.975124 0.186565 0.119697 0.954247 0.248794\n\t\t 0.16587199 0.948502 0.27342099 0.15995 0.92201298 0.30494699 0.238537 0.92201298\n\t\t 0.30494699 0.238537 0.93047899 0.27934501 0.237014 0.954247 0.248794 0.16587199 0.93047899\n\t\t 0.27934501 0.237014 0.92201298 0.30494699 0.238537 0.78675801 0.57742602 0.218152\n\t\t 0.78675801 0.57742602 0.218152 0.89118898 0.33937299 0.30101001 0.93047899 0.27934501\n\t\t 0.237014 0.89118898 0.33937299 0.30101001 0.78675801 0.57742602 0.218152 0.73414099\n\t\t 0.59692699 0.323596 0.73414099 0.59692699 0.323596 0.81145 0.42678401 0.39925501\n\t\t 0.89118898 0.33937299 0.30101001 0.68524897 0.49621299 0.53311002 0.81145 0.42678401\n\t\t 0.39925501 0.73414099 0.59692699 0.323596 0.73414099 0.59692699 0.323596;\n\tsetAttr \".n[30544:30709]\" -type \"float3\"  0.60425198 0.65790498 0.449489 0.68524897\n\t\t 0.49621299 0.53311002 0.575378 0.515836 0.63470799 0.68524897 0.49621299 0.53311002\n\t\t 0.60425198 0.65790498 0.449489 0.60425198 0.65790498 0.449489 0.52362299 0.66672999\n\t\t 0.53036797 0.575378 0.515836 0.63470799 0.68524897 0.49621299 0.53311002 0.575378\n\t\t 0.515836 0.63470799 0.59810799 0.361038 0.71548402 0.59810799 0.361038 0.71548402\n\t\t 0.71143699 0.36913201 0.597996 0.68524897 0.49621299 0.53311002 0.81145 0.42678401\n\t\t 0.39925501 0.68524897 0.49621299 0.53311002 0.71143699 0.36913201 0.597996 0.71143699\n\t\t 0.36913201 0.597996 0.84360999 0.329027 0.42433801 0.81145 0.42678401 0.39925501\n\t\t 0.98119098 0.120673 0.150673 0.97443998 0.182199 0.13141499 0.966694 0.177072 0.184793\n\t\t 0.966694 0.177072 0.184793 0.97360402 0.106022 0.202125 0.98119098 0.120673 0.150673\n\t\t 0.98119098 0.120673 0.150673 0.97360402 0.106022 0.202125 0.97537202 -0.041506 0.216627\n\t\t 0.96142298 -0.029237 0.27351499 0.97537202 -0.041506 0.216627 0.97360402 0.106022\n\t\t 0.202125 0.97360402 0.106022 0.202125 0.958987 0.117314 0.258035 0.96142298 -0.029237\n\t\t 0.27351499 0.96142298 -0.029237 0.27351499 0.958987 0.117314 0.258035 0.93840498\n\t\t 0.13312501 0.318865 0.93840498 0.13312501 0.318865 0.941203 -0.029359 0.33656299\n\t\t 0.96142298 -0.029237 0.27351499 0.91982502 0.24336199 0.30772701 0.93840498 0.13312501\n\t\t 0.318865 0.958987 0.117314 0.258035 0.93840498 0.13312501 0.318865 0.91982502 0.24336199\n\t\t 0.30772701 0.84360999 0.329027 0.42433801 0.958987 0.117314 0.258035 0.94908798 0.19636101\n\t\t 0.24632099 0.91982502 0.24336199 0.30772701 0.94908798 0.19636101 0.24632099 0.958987\n\t\t 0.117314 0.258035 0.97360402 0.106022 0.202125 0.97360402 0.106022 0.202125 0.966694\n\t\t 0.177072 0.184793 0.94908798 0.19636101 0.24632099 0.84360999 0.329027 0.42433801\n\t\t 0.87349403 0.15641201 0.461025 0.93840498 0.13312501 0.318865 0.941203 -0.029359\n\t\t 0.33656299 0.93840498 0.13312501 0.318865 0.87349403 0.15641201 0.461025 0.87349403\n\t\t 0.15641201 0.461025 0.876508 -0.035248999 0.48009601 0.941203 -0.029359 0.33656299\n\t\t 0.97537202 -0.041506 0.216627 0.97966701 -0.117224 0.16282 0.98119098 0.120673 0.150673\n\t\t 0.876508 -0.035248999 0.48009601 0.87349403 0.15641201 0.461025 0.74725598 0.18189301\n\t\t 0.63915801 0.74725598 0.18189301 0.63915801 0.87349403 0.15641201 0.461025 0.84360999\n\t\t 0.329027 0.42433801 0.74725598 0.18189301 0.63915801 0.75626099 -0.041475002 0.65295398\n\t\t 0.876508 -0.035248999 0.48009601 0.64578402 -0.043032002 0.76230597 0.75626099 -0.041475002\n\t\t 0.65295398 0.74725598 0.18189301 0.63915801 0.74725598 0.18189301 0.63915801 0.62751299\n\t\t 0.207838 0.75035399 0.64578402 -0.043032002 0.76230597 0.89118898 0.33937299 0.30101001\n\t\t 0.91982502 0.24336199 0.30772701 0.94908798 0.19636101 0.24632099 0.94908798 0.19636101\n\t\t 0.24632099 0.93047899 0.27934501 0.237014 0.89118898 0.33937299 0.30101001 0.91982502\n\t\t 0.24336199 0.30772701 0.89118898 0.33937299 0.30101001 0.81145 0.42678401 0.39925501\n\t\t 0.81145 0.42678401 0.39925501 0.84360999 0.329027 0.42433801 0.91982502 0.24336199\n\t\t 0.30772701 0.64578402 -0.043032002 0.76230597 0.62751299 0.207838 0.75035399 0.47595701\n\t\t 0.230272 0.84878701 0.455006 0.37492499 0.80771297 0.47595701 0.230272 0.84878701\n\t\t 0.62751299 0.207838 0.75035399 0.47595701 0.230272 0.84878701 0.455006 0.37492499\n\t\t 0.80771297 0.223002 0.38624901 0.89503199 0.223002 0.38624901 0.89503199 0.229507\n\t\t 0.242448 0.94262701 0.47595701 0.230272 0.84878701 0.48769701 -0.040224001 0.87208599\n\t\t 0.47595701 0.230272 0.84878701 0.229507 0.242448 0.94262701 0.47595701 0.230272 0.84878701\n\t\t 0.48769701 -0.040224001 0.87208599 0.64578402 -0.043032002 0.76230597 0.229507 0.242448\n\t\t 0.94262701 0.23548301 -0.036378 0.97119802 0.48769701 -0.040224001 0.87208599 0.216409\n\t\t 0.54372299 0.810884 0.223002 0.38624901 0.89503199 0.455006 0.37492499 0.80771297\n\t\t 0.455006 0.37492499 0.80771297 0.44240299 0.53393 0.72055399 0.216409 0.54372299\n\t\t 0.810884 0.210979 0.70905101 0.67285502 0.216409 0.54372299 0.810884 0.44240299 0.53393\n\t\t 0.72055399 0.44240299 0.53393 0.72055399 0.409504 0.68713599 0.60012603 0.210979\n\t\t 0.70905101 0.67285502 0.62751299 0.207838 0.75035399 0.59810799 0.361038 0.71548402\n\t\t 0.455006 0.37492499 0.80771297 0.59810799 0.361038 0.71548402 0.62751299 0.207838\n\t\t 0.75035399 0.74725598 0.18189301 0.63915801 0.74725598 0.18189301 0.63915801 0.71143699\n\t\t 0.36913201 0.597996 0.59810799 0.361038 0.71548402 0.84360999 0.329027 0.42433801\n\t\t 0.71143699 0.36913201 0.597996 0.74725598 0.18189301 0.63915801 0.52362299 0.66672999\n\t\t 0.53036797 0.409504 0.68713599 0.60012603 0.44240299 0.53393 0.72055399 0.44240299\n\t\t 0.53393 0.72055399 0.575378 0.515836 0.63470799 0.52362299 0.66672999 0.53036797\n\t\t 0.455006 0.37492499 0.80771297 0.59810799 0.361038 0.71548402 0.575378 0.515836 0.63470799\n\t\t 0.575378 0.515836 0.63470799 0.44240299 0.53393 0.72055399 0.455006 0.37492499 0.80771297\n\t\t 0 0.24512701 0.969491 0.229507 0.242448 0.94262701 0.223002 0.38624901 0.89503199\n\t\t 0.23548301 -0.036378 0.97119802 0.229507 0.242448 0.94262701 0 0.24512701 0.969491\n\t\t 0.223002 0.38624901 0.89503199 0 0.38780701 0.92174 0 0.24512701 0.969491 0 0.38780701\n\t\t 0.92174 0.223002 0.38624901 0.89503199 0.216409 0.54372299 0.810884 0 0.24512701\n\t\t 0.969491 0 -0.035248999 0.99937898;\n\tsetAttr \".n[30710:30875]\" -type \"float3\"  0.23548301 -0.036378 0.97119802 0 0.53997201\n\t\t 0.84168297 0.216409 0.54372299 0.810884 0.210979 0.70905101 0.67285502 0.216409 0.54372299\n\t\t 0.810884 0 0.53997201 0.84168297 0 0.38780701 0.92174 0.210979 0.70905101 0.67285502\n\t\t 0 0.71045601 0.70374203 0 0.53997201 0.84168297 0.523251 0.77997899 -0.34327999 0.62841898\n\t\t 0.74686402 -0.21744899 0.599756 0.75299197 -0.270733 0.599756 0.75299197 -0.270733\n\t\t 0.38008201 0.82529098 -0.417651 0.523251 0.77997899 -0.34327999 0.6825 0.72449499\n\t\t -0.096441001 0.62841898 0.74686402 -0.21744899 0.523251 0.77997899 -0.34327999 0.523251\n\t\t 0.77997899 -0.34327999 0.56627798 0.787175 -0.244304 0.6825 0.72449499 -0.096441001\n\t\t 0.67407203 0.73865098 0.0046689999 0.6825 0.72449499 -0.096441001 0.56627798 0.787175\n\t\t -0.244304 0.56627798 0.787175 -0.244304 0.545443 0.832174 -0.099890001 0.67407203\n\t\t 0.73865098 0.0046689999 0.68436402 0.71460903 -0.14484499 0.62841898 0.74686402 -0.21744899\n\t\t 0.6825 0.72449499 -0.096441001 0.599756 0.75299197 -0.270733 0.62841898 0.74686402\n\t\t -0.21744899 0.68436402 0.71460903 -0.14484499 0.6825 0.72449499 -0.096441001 0.713561\n\t\t 0.69998097 -0.029268 0.68436402 0.71460903 -0.14484499 0.713561 0.69998097 -0.029268\n\t\t 0.6825 0.72449499 -0.096441001 0.67407203 0.73865098 0.0046689999 0.68436402 0.71460903\n\t\t -0.14484499 0.59823602 0.78882802 -0.140937 0.599756 0.75299197 -0.270733 0.67407203\n\t\t 0.73865098 0.0046689999 0.545443 0.832174 -0.099890001 0.45000699 0.891195 -0.057131998\n\t\t 0.45000699 0.891195 -0.057131998 0.642456 0.76059598 0.093510002 0.67407203 0.73865098\n\t\t 0.0046689999 0.68619102 0.72504199 0.05878 0.67407203 0.73865098 0.0046689999 0.642456\n\t\t 0.76059598 0.093510002 0.67407203 0.73865098 0.0046689999 0.68619102 0.72504199 0.05878\n\t\t 0.713561 0.69998097 -0.029268 0.642456 0.76059598 0.093510002 0.78675801 0.57742602\n\t\t 0.218152 0.68619102 0.72504199 0.05878 0.73414099 0.59692699 0.323596 0.78675801\n\t\t 0.57742602 0.218152 0.642456 0.76059598 0.093510002 0.642456 0.76059598 0.093510002\n\t\t 0.61251599 0.77148998 0.17212699 0.73414099 0.59692699 0.323596 0.61251599 0.77148998\n\t\t 0.17212699 0.642456 0.76059598 0.093510002 0.45000699 0.891195 -0.057131998 0.45000699\n\t\t 0.891195 -0.057131998 0.63858497 0.75935 0.124885 0.61251599 0.77148998 0.17212699\n\t\t 0.51943898 0.80272001 0.29295501 0.61251599 0.77148998 0.17212699 0.63858497 0.75935\n\t\t 0.124885 0.73414099 0.59692699 0.323596 0.61251599 0.77148998 0.17212699 0.51943898\n\t\t 0.80272001 0.29295501 0.63858497 0.75935 0.124885 0.57784802 0.78275299 0.23106 0.51943898\n\t\t 0.80272001 0.29295501 0.49727601 0.770697 0.398426 0.51943898 0.80272001 0.29295501\n\t\t 0.57784802 0.78275299 0.23106 0.57784802 0.78275299 0.23106 0.41774699 0.88331801\n\t\t 0.212688 0.49727601 0.770697 0.398426 0.51943898 0.80272001 0.29295501 0.49727601\n\t\t 0.770697 0.398426 0.52362299 0.66672999 0.53036797 0.52362299 0.66672999 0.53036797\n\t\t 0.49727601 0.770697 0.398426 0.356859 0.81089097 0.46379799 0.356859 0.81089097 0.46379799\n\t\t 0.409504 0.68713599 0.60012603 0.52362299 0.66672999 0.53036797 0.210979 0.70905101\n\t\t 0.67285502 0.409504 0.68713599 0.60012603 0.356859 0.81089097 0.46379799 0.356859\n\t\t 0.81089097 0.46379799 0.177743 0.83295703 0.52401298 0.210979 0.70905101 0.67285502\n\t\t 0.177743 0.83295703 0.52401298 0.356859 0.81089097 0.46379799 0.29887199 0.915021\n\t\t 0.27094799 0.49727601 0.770697 0.398426 0.41774699 0.88331801 0.212688 0.29887199\n\t\t 0.915021 0.27094799 0.29887199 0.915021 0.27094799 0.356859 0.81089097 0.46379799\n\t\t 0.49727601 0.770697 0.398426 0.29887199 0.915021 0.27094799 0.14991 0.93324602 0.326464\n\t\t 0.177743 0.83295703 0.52401298 0.52362299 0.66672999 0.53036797 0.60425198 0.65790498\n\t\t 0.449489 0.51943898 0.80272001 0.29295501 0.51943898 0.80272001 0.29295501 0.60425198\n\t\t 0.65790498 0.449489 0.73414099 0.59692699 0.323596 0 0.71045601 0.70374203 0.210979\n\t\t 0.70905101 0.67285502 0.177743 0.83295703 0.52401298 0.177743 0.83295703 0.52401298\n\t\t 0 0.84508097 0.53463799 0 0.71045601 0.70374203 0 0.84508097 0.53463799 0.177743\n\t\t 0.83295703 0.52401298 0.14991 0.93324602 0.326464 0.14991 0.93324602 0.326464 0 0.94475502\n\t\t 0.327777 0 0.84508097 0.53463799 0.98207599 -0.18763199 0.017914999 0.98800898 -0.153605\n\t\t 0.015596 0.985865 -0.16672701 0.016511001 0.985865 -0.16672701 0.016511001 0.97947299\n\t\t -0.200692 0.018829999 0.98207599 -0.18763199 0.017914999 0.20793 -0.60355401 -0.769732\n\t\t 0.0054629999 -0.677953 -0.73508501 0.022919999 -0.692572 -0.720985 0.022919999 -0.692572\n\t\t -0.720985 0.217298 -0.59237999 -0.775801 0.20793 -0.60355401 -0.769732 0.014222 -0.435177\n\t\t -0.90023297 0.022919999 -0.692572 -0.720985 0.0054629999 -0.677953 -0.73508501 0.0054629999\n\t\t -0.677953 -0.73508501 0.01352 -0.258165 -0.96600598 0.014222 -0.435177 -0.90023297\n\t\t -0.0050050002 -0.115544 -0.99329001 0.014222 -0.435177 -0.90023297 0.01352 -0.258165\n\t\t -0.96600598 0.01352 -0.258165 -0.96600598 -0.0063479999 -0.109532 -0.993963 -0.0050050002\n\t\t -0.115544 -0.99329001 -0.0080869999 -0.080233999 -0.99674302 -0.0050050002 -0.115544\n\t\t -0.99329001 -0.0063479999 -0.109532 -0.993963 -0.0063479999 -0.109532 -0.993963 -0.0083320001\n\t\t -0.077 -0.99699599 -0.0080869999 -0.080233999 -0.99674302 -0.010041 -0.051150002\n\t\t -0.99864101 -0.0080869999 -0.080233999 -0.99674302 -0.0083320001 -0.077 -0.99699599\n\t\t -0.0083320001 -0.077 -0.99699599 -0.010254 -0.048859999 -0.99875301 -0.010041 -0.051150002\n\t\t -0.99864101;\n\tsetAttr \".n[30876:31041]\" -type \"float3\"  -0.013154 0.145881 -0.98921502 -0.010041\n\t\t -0.051150002 -0.99864101 -0.010254 -0.048859999 -0.99875301 -0.010254 -0.048859999\n\t\t -0.99875301 -0.01291 0.112037 -0.99361998 -0.013154 0.145881 -0.98921502 -0.011506\n\t\t 0.30574101 -0.95204502 -0.013154 0.145881 -0.98921502 -0.01291 0.112037 -0.99361998\n\t\t -0.01291 0.112037 -0.99361998 -0.011506 0.30088499 -0.95359099 -0.011506 0.30574101\n\t\t -0.95204502 -0.011506 0.30574101 -0.95204502 -0.011506 0.30088499 -0.95359099 -0.0048219999\n\t\t 0.31452999 -0.94923502 -0.0048219999 0.31452999 -0.94923502 -0.0047920002 0.31983799\n\t\t -0.94746 -0.011506 0.30574101 -0.95204502 -0.00054899999 0.32225499 -0.94665301 -0.0047920002\n\t\t 0.31983799 -0.94746 -0.0048219999 0.31452999 -0.94923502 -0.0048219999 0.31452999\n\t\t -0.94923502 0 0.32182601 -0.94679898 -0.00054899999 0.32225499 -0.94665301 0.01233\n\t\t -0.31578201 0.94875199 0.0088809999 -0.32152101 0.94686103 0.0090340003 -0.32157499\n\t\t 0.946841 0.0090340003 -0.32157499 0.946841 0.013032 -0.31376401 0.94941199 0.01233\n\t\t -0.31578201 0.94875199 0.014924 -0.30052099 0.953659 0.01233 -0.31578201 0.94875199\n\t\t 0.013032 -0.31376401 0.94941199 0.013032 -0.31376401 0.94941199 0.015077 -0.29658601\n\t\t 0.95488697 0.014924 -0.30052099 0.953659 0.013489 -0.14383499 0.98951 0.014924 -0.30052099\n\t\t 0.953659 0.015077 -0.29658601 0.95488697 0.015077 -0.29658601 0.95488697 0.013093\n\t\t -0.110693 0.99376798 0.013489 -0.14383499 0.98951 0.010346 0.048037 0.99879199 0.013489\n\t\t -0.14383499 0.98951 0.013093 -0.110693 0.99376798 0.013093 -0.110693 0.99376798 0.010163\n\t\t 0.045839999 0.99889702 0.010346 0.048037 0.99879199 0.0084229996 0.077457003 0.99695998\n\t\t 0.010346 0.048037 0.99879199 0.010163 0.045839999 0.99889702 0.010163 0.045839999\n\t\t 0.99889702 0.0082400003 0.074192002 0.99721003 0.0084229996 0.077457003 0.99695998\n\t\t 0.0063780001 0.115606 0.99327499 0.0084229996 0.077457003 0.99695998 0.0082400003\n\t\t 0.074192002 0.99721003 0.0082400003 0.074192002 0.99721003 0.0051879999 0.108373\n\t\t 0.99409699 0.0063780001 0.115606 0.99327499 -0.015168 0.42323601 0.90589201 0.0063780001\n\t\t 0.115606 0.99327499 0.0051879999 0.108373 0.99409699 0.0051879999 0.108373 0.99409699\n\t\t -0.013306 0.25266901 0.96746099 -0.015168 0.42323601 0.90589201 -0.028779 0.69894302\n\t\t 0.71459901 -0.015168 0.42323601 0.90589201 -0.013306 0.25266901 0.96746099 -0.013306\n\t\t 0.25266901 0.96746099 -0.0096749999 0.682284 0.73102301 -0.028779 0.69894302 0.71459901\n\t\t -0.183146 0.61069101 0.77039802 -0.028779 0.69894302 0.71459901 -0.0096749999 0.682284\n\t\t 0.73102301 -0.0096749999 0.682284 0.73102301 -0.187114 0.60470998 0.77415401 -0.183146\n\t\t 0.61069101 0.77039802 0.59267801 0.68991202 -0.415638 0.52053601 0.703071 -0.48449299\n\t\t 0.495511 0.606022 -0.62225801 0.495511 0.606022 -0.62225801 0.58685398 0.67053801\n\t\t -0.45385101 0.59267801 0.68991202 -0.415638 0.58685398 0.67053801 -0.45385101 0.495511\n\t\t 0.606022 -0.62225801 0.76064003 0.450317 -0.46759099 0.76064003 0.450317 -0.46759099\n\t\t 0.400415 0.78221399 -0.477294 0.58685398 0.67053801 -0.45385101 0.97956902 0.114996\n\t\t -0.164986 0.98281598 0.091008998 -0.160593 0.89873999 -0.068668999 -0.433072 0.89873999\n\t\t -0.068668999 -0.433072 0.919833 0.048769001 -0.38926601 0.97956902 0.114996 -0.164986\n\t\t 0.97129601 0.16321599 -0.173043 0.97956902 0.114996 -0.164986 0.919833 0.048769001\n\t\t -0.38926601 0.919833 0.048769001 -0.38926601 0.91740203 0.068882003 -0.391956 0.97129601\n\t\t 0.16321599 -0.173043 0.95994401 0.219188 -0.174538 0.97129601 0.16321599 -0.173043\n\t\t 0.91740203 0.068882003 -0.391956 0.91740203 0.068882003 -0.391956 0.96457398 0.20475\n\t\t -0.166357 0.95994401 0.219188 -0.174538 0.95036298 0.25501701 -0.178262 0.95994401\n\t\t 0.219188 -0.174538 0.96457398 0.20475 -0.166357 0.96457398 0.20475 -0.166357 0.94780302\n\t\t 0.26118299 -0.182901 0.95036298 0.25501701 -0.178262 0.22379801 -0.46786001 0.85499799\n\t\t 0.22340199 -0.55398899 0.80198997 0.42085701 -0.58172202 0.69604599 0.42085701 -0.58172202\n\t\t 0.69604599 0.44146001 -0.47942501 0.75846201 0.22379801 -0.46786001 0.85499799 0.226454\n\t\t -0.38185799 0.89604902 0.22379801 -0.46786001 0.85499799 0.44146001 -0.47942501 0.75846201\n\t\t 0.44146001 -0.47942501 0.75846201 0.456049 -0.389456 0.80021501 0.226454 -0.38185799\n\t\t 0.89604902 0.229534 -0.28980899 0.92915303 0.226454 -0.38185799 0.89604902 0.456049\n\t\t -0.389456 0.80021501 0.456049 -0.389456 0.80021501 0.47087699 -0.29044899 0.83301502\n\t\t 0.229534 -0.28980899 0.92915303 0.23548301 -0.036378 0.97119802 0.229534 -0.28980899\n\t\t 0.92915303 0.47087699 -0.29044899 0.83301502 0.47087699 -0.29044899 0.83301502 0.48769701\n\t\t -0.040224001 0.87208599 0.23548301 -0.036378 0.97119802 0.456049 -0.389456 0.80021501\n\t\t 0.44146001 -0.47942501 0.75846201 0.57202601 -0.473692 0.66962802 0.57202601 -0.473692\n\t\t 0.66962802 0.59888202 -0.38091201 0.70444798 0.456049 -0.389456 0.80021501 0.44146001\n\t\t -0.47942501 0.75846201 0.42085701 -0.58172202 0.69604599 0.52960098 -0.59189099 0.60760802\n\t\t 0.52960098 -0.59189099 0.60760802 0.57202601 -0.473692 0.66962802 0.44146001 -0.47942501\n\t\t 0.75846201 0.67333698 -0.46254301 0.57677603 0.57202601 -0.473692 0.66962802 0.52960098\n\t\t -0.59189099 0.60760802 0.59888202 -0.38091201 0.70444798 0.57202601 -0.473692 0.66962802\n\t\t 0.67333698 -0.46254301 0.57677603 0.52960098 -0.59189099 0.60760802 0.590918 -0.58804899\n\t\t 0.55228102 0.67333698 -0.46254301 0.57677603 0.67333698 -0.46254301 0.57677603 0.70651698\n\t\t -0.36217001 0.60800201 0.59888202 -0.38091201 0.70444798 0.59888202 -0.38091201 0.70444798\n\t\t 0.70651698 -0.36217001 0.60800201 0.733904 -0.25169501 0.63090003 0.733904 -0.25169501\n\t\t 0.63090003;\n\tsetAttr \".n[31042:31207]\" -type \"float3\"  0.62320298 -0.277237 0.73127198 0.59888202\n\t\t -0.38091201 0.70444798 0.456049 -0.389456 0.80021501 0.59888202 -0.38091201 0.70444798\n\t\t 0.62320298 -0.277237 0.73127198 0.62320298 -0.277237 0.73127198 0.47087699 -0.29044899\n\t\t 0.83301502 0.456049 -0.389456 0.80021501 0.62320298 -0.277237 0.73127198 0.733904\n\t\t -0.25169501 0.63090003 0.75626099 -0.041475002 0.65295398 0.876508 -0.035248999 0.48009601\n\t\t 0.75626099 -0.041475002 0.65295398 0.733904 -0.25169501 0.63090003 0.733904 -0.25169501\n\t\t 0.63090003 0.85811597 -0.22047199 0.46371299 0.876508 -0.035248999 0.48009601 0.85811597\n\t\t -0.22047199 0.46371299 0.733904 -0.25169501 0.63090003 0.70651698 -0.36217001 0.60800201\n\t\t 0.75626099 -0.041475002 0.65295398 0.64578402 -0.043032002 0.76230597 0.62320298\n\t\t -0.277237 0.73127198 0.64578402 -0.043032002 0.76230597 0.48769701 -0.040224001 0.87208599\n\t\t 0.47087699 -0.29044899 0.83301502 0.47087699 -0.29044899 0.83301502 0.62320298 -0.277237\n\t\t 0.73127198 0.64578402 -0.043032002 0.76230597 0.70651698 -0.36217001 0.60800201 0.81545103\n\t\t -0.32192001 0.481049 0.85811597 -0.22047199 0.46371299 0.81545103 -0.32192001 0.481049\n\t\t 0.70651698 -0.36217001 0.60800201 0.67333698 -0.46254301 0.57677603 0.876508 -0.035248999\n\t\t 0.48009601 0.85811597 -0.22047199 0.46371299 0.931835 -0.158454 0.32646099 0.85811597\n\t\t -0.22047199 0.46371299 0.81545103 -0.32192001 0.481049 0.931835 -0.158454 0.32646099\n\t\t 0.931835 -0.158454 0.32646099 0.941203 -0.029359 0.33656299 0.876508 -0.035248999\n\t\t 0.48009601 0.941203 -0.029359 0.33656299 0.931835 -0.158454 0.32646099 0.95321703\n\t\t -0.148294 0.263414 0.95321703 -0.148294 0.263414 0.96142298 -0.029237 0.27351499\n\t\t 0.941203 -0.029359 0.33656299 0.97537202 -0.041506 0.216627 0.96142298 -0.029237\n\t\t 0.27351499 0.95321703 -0.148294 0.263414 0.95321703 -0.148294 0.263414 0.96141303\n\t\t -0.204356 0.184183 0.97537202 -0.041506 0.216627 0.97966701 -0.117224 0.16282 0.97537202\n\t\t -0.041506 0.216627 0.96141303 -0.204356 0.184183 0.96141303 -0.204356 0.184183 0.92439801\n\t\t -0.360585 0.124366 0.97966701 -0.117224 0.16282 0.92439801 -0.360585 0.124366 0.96141303\n\t\t -0.204356 0.184183 0.94897002 -0.30733001 0.070744 0.94897002 -0.30733001 0.070744\n\t\t 0.89217103 -0.44530699 0.075718001 0.92439801 -0.360585 0.124366 0.89168203 -0.45266199\n\t\t -0.00042699999 0.89217103 -0.44530699 0.075718001 0.94897002 -0.30733001 0.070744\n\t\t 0.88224602 -0.47078699 0.00073199999 0.89217103 -0.44530699 0.075718001 0.89168203\n\t\t -0.45266199 -0.00042699999 0.86742401 -0.497192 -0.019409999 0.88224602 -0.47078699\n\t\t 0.00073199999 0.89168203 -0.45266199 -0.00042699999 0.86742401 -0.497192 -0.019409999\n\t\t 0.88740802 -0.46077901 -0.013764 0.88224602 -0.47078699 0.00073199999 0.86742401\n\t\t -0.497192 -0.019409999 0.89168203 -0.45266199 -0.00042699999 0.844522 -0.533014 -0.051759999\n\t\t 0.88740802 -0.46077901 -0.013764 0.86742401 -0.497192 -0.019409999 0.87757099 -0.47481301\n\t\t 0.066500999 0.86742401 -0.497192 -0.019409999 0.88205397 -0.46138299 0.095431998\n\t\t 0.87757099 -0.47481301 0.066500999 0.88205397 -0.46138299 0.095431998 0.88826197\n\t\t -0.44622099 0.108984 0.87757099 -0.47481301 0.066500999 0.89168203 -0.45266199 -0.00042699999\n\t\t 0.94897002 -0.30733001 0.070744 0.97763199 -0.207862 -0.032074999 0.94897002 -0.30733001\n\t\t 0.070744 0.94841897 -0.31501999 0.035555001 0.97763199 -0.207862 -0.032074999 0.88826197\n\t\t -0.44622099 0.108984 0.88205397 -0.46138299 0.095431998 0.97312802 -0.180153 0.143409\n\t\t 0.97966701 -0.117224 0.16282 0.92439801 -0.360585 0.124366 0.97312802 -0.180153 0.143409\n\t\t 0.89077699 -0.44201601 0.105537 0.88826197 -0.44622099 0.108984 0.97312802 -0.180153\n\t\t 0.143409 0.92439801 -0.360585 0.124366 0.89077699 -0.44201601 0.105537 0.97312802\n\t\t -0.180153 0.143409 0.92439801 -0.360585 0.124366 0.89217103 -0.44530699 0.075718001\n\t\t 0.85512298 -0.439509 0.27494901 0.85512298 -0.439509 0.27494901 0.91637999 -0.361992\n\t\t 0.170909 0.92439801 -0.360585 0.124366 0.91637999 -0.361992 0.170909 0.85512298 -0.439509\n\t\t 0.27494901 0.86918801 -0.445306 0.21497799 0.86918801 -0.445306 0.21497799 0.83225298\n\t\t -0.47432601 0.28700101 0.91637999 -0.361992 0.170909 -0.026125001 0.87774098 -0.47842401\n\t\t 0.000244 0.87135297 -0.490657 0.186838 0.86671603 -0.462488 0.186838 0.86671603 -0.462488\n\t\t 0.17572799 0.871988 -0.45689899 -0.026125001 0.87774098 -0.47842401 -0.031679001\n\t\t 0.880256 -0.47343999 -0.026125001 0.87774098 -0.47842401 0.17572799 0.871988 -0.45689899\n\t\t 0.17572799 0.871988 -0.45689899 0.167307 0.87001401 -0.463772 -0.031679001 0.880256\n\t\t -0.47343999 -0.026125001 0.87774098 -0.47842401 -0.031679001 0.880256 -0.47343999\n\t\t -0.237473 0.85567701 -0.45980799 -0.237473 0.85567701 -0.45980799 -0.23444501 0.849581\n\t\t -0.472491 -0.026125001 0.87774098 -0.47842401 0.000244 0.87135297 -0.490657 -0.026125001\n\t\t 0.87774098 -0.47842401 -0.23444501 0.849581 -0.472491 -0.23444501 0.849581 -0.472491\n\t\t -0.22407401 0.84142298 -0.49173 0.000244 0.87135297 -0.490657 0.65451401 0.67902201\n\t\t -0.33247599 0.70365202 0.645208 -0.29762399 0.803078 0.560269 -0.20289101 0.803078\n\t\t 0.560269 -0.20289101 0.79770499 0.54998302 -0.247356 0.65451401 0.67902201 -0.33247599\n\t\t 0.89600801 0.42601499 -0.12522 0.803078 0.560269 -0.20289101 0.70365202 0.645208\n\t\t -0.29762399 0.70365202 0.645208 -0.29762399 0.73937601 0.60930598 -0.286479 0.89600801\n\t\t 0.42601499 -0.12522 0.803078 0.560269 -0.20289101 0.89600801 0.42601499 -0.12522\n\t\t 0.79050201 0.58981001 -0.165016 0.79050201 0.58981001 -0.165016 0.87309903 0.47531\n\t\t -0.108527 0.803078 0.560269 -0.20289101 0.79770499 0.54998302 -0.247356 0.803078\n\t\t 0.560269 -0.20289101;\n\tsetAttr \".n[31208:31373]\" -type \"float3\"  0.87309903 0.47531 -0.108527 0.87309903\n\t\t 0.47531 -0.108527 0.90532702 0.394768 -0.156656 0.79770499 0.54998302 -0.247356 -0.031679001\n\t\t 0.880256 -0.47343999 0.167307 0.87001401 -0.463772 0.15973599 0.86417502 -0.477164\n\t\t 0.15973599 0.86417502 -0.477164 -0.037447002 0.877882 -0.47740999 -0.031679001 0.880256\n\t\t -0.47343999 -0.237473 0.85567701 -0.45980799 -0.031679001 0.880256 -0.47343999 -0.037447002\n\t\t 0.877882 -0.47740999 -0.03348 0.87044799 -0.49112099 -0.037447002 0.877882 -0.47740999\n\t\t 0.15973599 0.86417502 -0.477164 0.15973599 0.86417502 -0.477164 0.15641101 0.85670799\n\t\t -0.491514 -0.03348 0.87044799 -0.49112099 -0.044893 0.85327703 -0.51952302 -0.03348\n\t\t 0.87044799 -0.49112099 0.15641101 0.85670799 -0.491514 0.15641101 0.85670799 -0.491514\n\t\t 0.158548 0.832753 -0.53045797 -0.044893 0.85327703 -0.51952302 -0.044558 0.84379202\n\t\t -0.53481698 -0.044893 0.85327703 -0.51952302 0.158548 0.832753 -0.53045797 0.158548\n\t\t 0.832753 -0.53045797 0.17240199 0.80957901 -0.56112301 -0.044558 0.84379202 -0.53481698\n\t\t -0.25477701 0.83614397 -0.48574901 -0.044893 0.85327703 -0.51952302 -0.044558 0.84379202\n\t\t -0.53481698 -0.044558 0.84379202 -0.53481698 -0.25786 0.83339798 -0.488832 -0.25477701\n\t\t 0.83614397 -0.48574901 -0.069339998 0.84495097 -0.53033 -0.044558 0.84379202 -0.53481698\n\t\t 0.17240199 0.80957901 -0.56112301 -0.25786 0.83339798 -0.488832 -0.044558 0.84379202\n\t\t -0.53481698 -0.069339998 0.84495097 -0.53033 0.17240199 0.80957901 -0.56112301 0.17991\n\t\t 0.80146301 -0.570342 -0.069339998 0.84495097 -0.53033 -0.069339998 0.84495097 -0.53033\n\t\t -0.25855899 0.835127 -0.48550001 -0.25786 0.83339798 -0.488832 0.69435698 0.56043601\n\t\t -0.451419 0.63306701 0.65205002 -0.417202 0.78535801 0.51556599 -0.34264299 0.78535801\n\t\t 0.51556599 -0.34264299 0.83218998 0.40364301 -0.38017401 0.69435698 0.56043601 -0.451419\n\t\t 0.70911098 0.51147002 -0.48534501 0.69435698 0.56043601 -0.451419 0.83218998 0.40364301\n\t\t -0.38017401 0.83218998 0.40364301 -0.38017401 0.78535801 0.51556599 -0.34264299 0.89064199\n\t\t 0.38310799 -0.24491701 0.89064199 0.38310799 -0.24491701 0.76064003 0.450317 -0.46759099\n\t\t 0.83218998 0.40364301 -0.38017401 0.83218998 0.40364301 -0.38017401 0.84711498 0.331772\n\t\t -0.41511899 0.70911098 0.51147002 -0.48534501 0.711308 0.492089 -0.50188601 0.70911098\n\t\t 0.51147002 -0.48534501 0.84711498 0.331772 -0.41511899 0.93556601 0.13767201 -0.325212\n\t\t 0.84711498 0.331772 -0.41511899 0.83218998 0.40364301 -0.38017401 0.87848902 0.27729601\n\t\t -0.389056 0.93556601 0.13767201 -0.325212 0.83218998 0.40364301 -0.38017401 -0.044893\n\t\t 0.85327703 -0.51952302 -0.25477701 0.83614397 -0.48574901 -0.231552 0.85262603 -0.46841499\n\t\t 0.885086 0.40956801 -0.221081 0.89064199 0.38310799 -0.24491701 0.78535801 0.51556599\n\t\t -0.34264299 0.78535801 0.51556599 -0.34264299 0.77507699 0.55506098 -0.30193099 0.885086\n\t\t 0.40956801 -0.221081 0.77507699 0.55506098 -0.30193099 0.78535801 0.51556599 -0.34264299\n\t\t 0.63306701 0.65205002 -0.417202 0.63306701 0.65205002 -0.417202 0.62414402 0.68097103\n\t\t -0.383044 0.77507699 0.55506098 -0.30193099 0.84711498 0.331772 -0.41511899 0.85908502\n\t\t 0.28465301 -0.42537701 0.711308 0.492089 -0.50188601 0.84711498 0.331772 -0.41511899\n\t\t 0.93556601 0.13767201 -0.325212 0.93559903 0.122901 -0.330982 0.93559903 0.122901\n\t\t -0.330982 0.85908502 0.28465301 -0.42537701 0.84711498 0.331772 -0.41511899 0.935112\n\t\t 0.108222 -0.33742201 0.93559903 0.122901 -0.330982 0.93556601 0.13767201 -0.325212\n\t\t 0.93556601 0.13767201 -0.325212 0.93313003 0.127266 -0.33626199 0.935112 0.108222\n\t\t -0.33742201 0.93313003 0.127266 -0.33626199 0.93556601 0.13767201 -0.325212 0.87848902\n\t\t 0.27729601 -0.389056 0.87848902 0.27729601 -0.389056 0.92957401 0.15717199 -0.33344901\n\t\t 0.93313003 0.127266 -0.33626199 0.93313003 0.127266 -0.33626199 0.92957401 0.15717199\n\t\t -0.33344901 0.95836598 0.25132599 -0.135536 0.95836598 0.25132599 -0.135536 0.95884901\n\t\t 0.257368 -0.119879 0.93313003 0.127266 -0.33626199 0.90532702 0.394768 -0.156656\n\t\t 0.885086 0.40956801 -0.221081 0.77507699 0.55506098 -0.30193099 0.77507699 0.55506098\n\t\t -0.30193099 0.79770499 0.54998302 -0.247356 0.90532702 0.394768 -0.156656 0.77507699\n\t\t 0.55506098 -0.30193099 0.62414402 0.68097103 -0.383044 0.65451401 0.67902201 -0.33247599\n\t\t 0.65451401 0.67902201 -0.33247599 0.79770499 0.54998302 -0.247356 0.77507699 0.55506098\n\t\t -0.30193099 -0.231552 0.85262603 -0.46841499 -0.03348 0.87044799 -0.49112099 -0.044893\n\t\t 0.85327703 -0.51952302 -0.23335201 0.85762799 -0.45828101 -0.037447002 0.877882 -0.47740999\n\t\t -0.03348 0.87044799 -0.49112099 -0.03348 0.87044799 -0.49112099 -0.231552 0.85262603\n\t\t -0.46841499 -0.23335201 0.85762799 -0.45828101 -0.037447002 0.877882 -0.47740999\n\t\t -0.23335201 0.85762799 -0.45828101 -0.237473 0.85567701 -0.45980799 -0.75220603 0.59399402\n\t\t -0.28523201 -0.75289798 0.59529901 -0.28064999 -0.87497801 0.44633901 -0.1876 -0.88485003\n\t\t 0.43691599 -0.16169199 -0.87497801 0.44633901 -0.1876 -0.75289798 0.59529901 -0.28064999\n\t\t -0.75289798 0.59529901 -0.28064999 -0.758555 0.59307897 -0.269912 -0.88485003 0.43691599\n\t\t -0.16169199 -0.88857597 0.43554401 -0.14399099 -0.88485003 0.43691599 -0.16169199\n\t\t -0.758555 0.59307897 -0.269912 -0.758555 0.59307897 -0.269912 -0.76189399 0.59269202\n\t\t -0.26121801 -0.88857597 0.43554401 -0.14399099 -0.96741199 0.25138199 -0.030366 -0.88485003\n\t\t 0.43691599 -0.16169199 -0.88857597 0.43554401 -0.14399099 -0.88857597 0.43554401\n\t\t -0.14399099 -0.96622503 0.25709 -0.017701 -0.96741199 0.25138199 -0.030366 -0.88485003\n\t\t 0.43691599 -0.16169199 -0.96741199 0.25138199 -0.030366 -0.96068501 0.267409 -0.074680999;\n\tsetAttr \".n[31374:31539]\" -type \"float3\"  -0.96068501 0.267409 -0.074680999 -0.87497801\n\t\t 0.44633901 -0.1876 -0.88485003 0.43691599 -0.16169199 -0.87497801 0.44633901 -0.1876\n\t\t -0.87226999 0.446832 -0.19871099 -0.75220603 0.59399402 -0.28523201 -0.75064301 0.58669502\n\t\t -0.303846 -0.75220603 0.59399402 -0.28523201 -0.87226999 0.446832 -0.19871099 -0.87497801\n\t\t 0.44633901 -0.1876 -0.96068501 0.267409 -0.074680999 -0.95568502 0.276292 -0.10163\n\t\t -0.95568502 0.276292 -0.10163 -0.87226999 0.446832 -0.19871099 -0.87497801 0.44633901\n\t\t -0.1876 -0.87226999 0.446832 -0.19871099 -0.86655802 0.44725701 -0.22144599 -0.75064301\n\t\t 0.58669502 -0.303846 -0.75064301 0.58669502 -0.303846 -0.86655802 0.44725701 -0.22144599\n\t\t -0.86971402 0.44552299 -0.212385 -0.86971402 0.44552299 -0.212385 -0.74782199 0.57892603\n\t\t -0.32497299 -0.75064301 0.58669502 -0.303846 -0.95025599 0.284747 -0.126229 -0.86655802\n\t\t 0.44725701 -0.22144599 -0.87226999 0.446832 -0.19871099 -0.87226999 0.446832 -0.19871099\n\t\t -0.95568502 0.276292 -0.10163 -0.95025599 0.284747 -0.126229 -0.86971402 0.44552299\n\t\t -0.212385 -0.86655802 0.44725701 -0.22144599 -0.95025599 0.284747 -0.126229 -0.95025599\n\t\t 0.284747 -0.126229 -0.94500202 0.28947601 -0.15223099 -0.86971402 0.44552299 -0.212385\n\t\t -0.913149 0.391628 -0.113075 -0.88857597 0.43554401 -0.14399099 -0.76189399 0.59269202\n\t\t -0.26121801 -0.96622503 0.25709 -0.017701 -0.88857597 0.43554401 -0.14399099 -0.913149\n\t\t 0.391628 -0.113075 -0.76189399 0.59269202 -0.26121801 -0.76376599 0.59270698 -0.25565699\n\t\t -0.913149 0.391628 -0.113075 -0.913149 0.391628 -0.113075 -0.966061 0.257644 -0.018617\n\t\t -0.96622503 0.25709 -0.017701 -0.78399998 0.60811901 -0.124639 -0.74782199 0.57892603\n\t\t -0.32497299 -0.86971402 0.44552299 -0.212385 -0.86971402 0.44552299 -0.212385 -0.88082302\n\t\t 0.45055899 -0.14542501 -0.78399998 0.60811901 -0.124639 -0.88082302 0.45055899 -0.14542501\n\t\t -0.86971402 0.44552299 -0.212385 -0.94500202 0.28947601 -0.15223099 -0.94500202 0.28947601\n\t\t -0.15223099 -0.93545401 0.305592 -0.17759299 -0.88082302 0.45055899 -0.14542501 -0.88082302\n\t\t 0.45055899 -0.14542501 -0.93545401 0.305592 -0.17759299 -0.92016202 0.35155299 -0.172374\n\t\t -0.92016202 0.35155299 -0.172374 -0.841555 0.52919501 -0.108342 -0.88082302 0.45055899\n\t\t -0.14542501 -0.78399998 0.60811901 -0.124639 -0.88082302 0.45055899 -0.14542501 -0.841555\n\t\t 0.52919501 -0.108342 -0.841555 0.52919501 -0.108342 -0.72052598 0.69339401 0.0069280001\n\t\t -0.78399998 0.60811901 -0.124639 -0.841555 0.52919501 -0.108342 -0.92016202 0.35155299\n\t\t -0.172374 -0.85647798 0.459856 -0.234475 -0.85647798 0.459856 -0.234475 -0.71900302\n\t\t 0.64740402 -0.25279099 -0.841555 0.52919501 -0.108342 -0.72052598 0.69339401 0.0069280001\n\t\t -0.841555 0.52919501 -0.108342 -0.71900302 0.64740402 -0.25279099 -0.71900302 0.64740402\n\t\t -0.25279099 -0.31709701 0.93782997 -0.14115199 -0.72052598 0.69339401 0.0069280001\n\t\t -0.074984998 0.99280798 0.093326002 -0.106053 0.98880899 0.104924 -0.118538 0.98904097\n\t\t 0.088018 -0.118538 0.98904097 0.088018 -0.062716998 0.99528998 0.073917001 -0.074984998\n\t\t 0.99280798 0.093326002 -0.055148002 0.99592501 -0.071353003 -0.074984998 0.99280798\n\t\t 0.093326002 -0.062716998 0.99528998 0.073917001 -0.062716998 0.99528998 0.073917001\n\t\t -0.31709701 0.93782997 -0.14115199 -0.055148002 0.99592501 -0.071353003 -0.074984998\n\t\t 0.99280798 0.093326002 -0.055148002 0.99592501 -0.071353003 0.032166999 0.99061 -0.132879\n\t\t 0.032166999 0.99061 -0.132879 -0.052370999 0.99622601 0.069216996 -0.074984998 0.99280798\n\t\t 0.093326002 -0.106053 0.98880899 0.104924 -0.074984998 0.99280798 0.093326002 -0.052370999\n\t\t 0.99622601 0.069216996 -0.052370999 0.99622601 0.069216996 -0.020845 0.997033 0.074101001\n\t\t -0.106053 0.98880899 0.104924 0.87848902 0.27729601 -0.389056 0.83218998 0.40364301\n\t\t -0.38017401 0.76064003 0.450317 -0.46759099 0.184793 0.817913 -0.54485798 0.185405\n\t\t 0.81654799 -0.54669499 -0.082828999 0.85615498 -0.510037 -0.082828999 0.85615498\n\t\t -0.510037 -0.019777 0.85542601 -0.51754701 0.184793 0.817913 -0.54485798 -0.29255399\n\t\t 0.82883102 -0.47691801 -0.019777 0.85542601 -0.51754701 -0.082828999 0.85615498 -0.510037\n\t\t -0.082828999 0.85615498 -0.510037 -0.293625 0.82572597 -0.48162299 -0.29255399 0.82883102\n\t\t -0.47691801 0.74070501 0.46532899 -0.48458701 0.74155802 0.47094399 -0.47781101 0.83580297\n\t\t 0.322956 -0.44399601 0.83580297 0.322956 -0.44399601 0.86867201 0.26750201 -0.41695499\n\t\t 0.74070501 0.46532899 -0.48458701 0.940929 0.139807 -0.30839401 0.86867201 0.26750201\n\t\t -0.41695499 0.83580297 0.322956 -0.44399601 0.83580297 0.322956 -0.44399601 0.94072801\n\t\t 0.137826 -0.309894 0.940929 0.139807 -0.30839401 0.940929 0.139807 -0.30839401 0.94072801\n\t\t 0.137826 -0.309894 0.95811802 0.18839499 -0.215679 0.95811802 0.18839499 -0.215679\n\t\t 0.95903403 0.192241 -0.20807999 0.940929 0.139807 -0.30839401 -0.78546 0.56227601\n\t\t -0.25864601 -0.78685802 0.56287402 -0.25303799 -0.91533399 0.373739 -0.149941 -0.91533399\n\t\t 0.373739 -0.149941 -0.86537498 0.45485899 -0.210308 -0.78546 0.56227601 -0.25864601\n\t\t -0.96590298 0.250227 -0.066471003 -0.86537498 0.45485899 -0.210308 -0.91533399 0.373739\n\t\t -0.149941 -0.91533399 0.373739 -0.149941 -0.96590298 0.250227 -0.066471003 -0.96590298\n\t\t 0.250227 -0.066471003 0.105353 -0.98773098 0.115272 0.105565 -0.98771203 0.115239\n\t\t 0.10474 -0.98801202 0.113408 0.10474 -0.98801202 0.113408 0.104496 -0.98810399 0.112828\n\t\t 0.105353 -0.98773098 0.115272 0.104955 -0.98753703 0.117285 0.105565 -0.98771203\n\t\t 0.115239 0.105353 -0.98773098 0.115272 0.105353 -0.98773098 0.115272 0.104742 -0.98747897\n\t\t 0.117957 0.104955 -0.98753703 0.117285 0.17857 0.88042903 -0.43926901;\n\tsetAttr \".n[31540:31705]\" -type \"float3\"  0.14511999 0.82445598 -0.54700297 -0.070621997\n\t\t 0.83064401 -0.55230802 -0.070621997 0.83064401 -0.55230802 -0.010957 0.90028101 -0.43517101\n\t\t 0.17857 0.88042903 -0.43926901 -0.293163 0.86569399 -0.40574601 -0.010957 0.90028101\n\t\t -0.43517101 -0.070621997 0.83064401 -0.55230802 -0.070621997 0.83064401 -0.55230802\n\t\t -0.311663 0.77177 -0.55429 -0.293163 0.86569399 -0.40574601 -0.781995 0.58828902\n\t\t -0.20591301 -0.78773803 0.58792698 -0.18388 -0.876185 0.34502301 -0.336539 -0.876185\n\t\t 0.34502301 -0.336539 -0.857472 0.48012999 -0.18497799 -0.781995 0.58828902 -0.20591301\n\t\t -0.97103 0.226788 -0.075291 -0.857472 0.48012999 -0.18497799 -0.876185 0.34502301\n\t\t -0.336539 -0.876185 0.34502301 -0.336539 -0.91108203 0.098361999 -0.40031701 -0.97103\n\t\t 0.226788 -0.075291 0.72814697 0.46358001 -0.50487202 0.76439297 0.52017599 -0.38094601\n\t\t 0.87473398 0.34575 -0.33955401 0.87473398 0.34575 -0.33955401 0.83808702 0.28840601\n\t\t -0.46306801 0.72814697 0.46358001 -0.50487202 0.90851098 0.10294 -0.40498301 0.83808702\n\t\t 0.28840601 -0.46306801 0.87473398 0.34575 -0.33955401 0.87473398 0.34575 -0.33955401\n\t\t 0.94906503 0.14673799 -0.278826 0.90851098 0.10294 -0.40498301 0.90851098 0.10294\n\t\t -0.40498301 0.94906503 0.14673799 -0.278826 0.95022601 0.139017 -0.27882701 0.95022601\n\t\t 0.139017 -0.27882701 0.92031598 0.109687 -0.37548199 0.90851098 0.10294 -0.40498301\n\t\t 0.781627 0.21461099 -0.58566302 0.83808702 0.28840601 -0.46306801 0.90851098 0.10294\n\t\t -0.40498301 0.90851098 0.10294 -0.40498301 0.84911799 0.059452999 -0.52484697 0.781627\n\t\t 0.21461099 -0.58566302 0.84911799 0.059452999 -0.52484697 0.90851098 0.10294 -0.40498301\n\t\t 0.92031598 0.109687 -0.37548199 0.66559899 0.3901 -0.63623899 0.72814697 0.46358001\n\t\t -0.50487202 0.83808702 0.28840601 -0.46306801 0.83808702 0.28840601 -0.46306801 0.781627\n\t\t 0.21461099 -0.58566302 0.66559899 0.3901 -0.63623899 0.14511999 0.82445598 -0.54700297\n\t\t 0.10993 0.738258 -0.66549999 -0.105903 0.73012 -0.67506301 -0.105903 0.73012 -0.67506301\n\t\t -0.070621997 0.83064401 -0.55230802 0.14511999 0.82445598 -0.54700297 -0.311663 0.77177\n\t\t -0.55429 -0.070621997 0.83064401 -0.55230802 -0.105903 0.73012 -0.67506301 -0.105903\n\t\t 0.73012 -0.67506301 -0.31663799 0.670632 -0.67081499 -0.311663 0.77177 -0.55429 0.92031598\n\t\t 0.109687 -0.37548199 0.85648298 0.064425997 -0.51213801 0.84911799 0.059452999 -0.52484697\n\t\t -0.75579703 0.41404799 -0.50728297 -0.77027899 0.423334 -0.476926 -0.71719402 0.127782\n\t\t -0.685058 -0.71719402 0.127782 -0.685058 -0.876185 0.34502301 -0.336539 -0.75579703\n\t\t 0.41404799 -0.50728297 -0.91108203 0.098361999 -0.40031701 -0.876185 0.34502301 -0.336539\n\t\t -0.71719402 0.127782 -0.685058 -0.71719402 0.127782 -0.685058 -0.75138801 -0.010987\n\t\t -0.659769 -0.91108203 0.098361999 -0.40031701 0.096653998 -0.14969601 -0.98399597\n\t\t 0.24024899 -0.068089001 -0.96832001 0.28587699 -0.149882 -0.94647199 0.28587699 -0.149882\n\t\t -0.94647199 0.090885997 -0.199411 -0.97569197 0.096653998 -0.14969601 -0.98399597\n\t\t 0.090885997 -0.199411 -0.97569197 0.28587699 -0.149882 -0.94647199 0.29493299 -0.150396\n\t\t -0.94360799 0.001831 -0.029634001 -0.99955899 0.081730999 0.071171001 -0.99410999\n\t\t 0.24024899 -0.068089001 -0.96832001 0.24024899 -0.068089001 -0.96832001 0.096653998\n\t\t -0.14969601 -0.98399597 0.001831 -0.029634001 -0.99955899 0.081730999 0.071171001\n\t\t -0.99410999 0.001831 -0.029634001 -0.99955899 -0.11753 -0.025971999 -0.99273002 -0.11753\n\t\t -0.025971999 -0.99273002 -0.111732 0.106574 -0.98800701 0.081730999 0.071171001 -0.99410999\n\t\t -0.31269899 0.101201 -0.94444603 -0.111732 0.106574 -0.98800701 -0.11753 -0.025971999\n\t\t -0.99273002 -0.11753 -0.025971999 -0.99273002 -0.32027 0.097296 -0.94231701 -0.31269899\n\t\t 0.101201 -0.94444603 0.29493299 -0.150396 -0.94360799 0.069095001 -0.32234001 -0.94409901\n\t\t 0.090885997 -0.199411 -0.97569197 -0.31269899 0.101201 -0.94444603 -0.32027 0.097296\n\t\t -0.94231701 -0.57998401 -0.019197 -0.81440097 -0.57998401 -0.019197 -0.81440097 -0.71719402\n\t\t 0.127782 -0.685058 -0.31269899 0.101201 -0.94444603 -0.75138801 -0.010987 -0.659769\n\t\t -0.71719402 0.127782 -0.685058 -0.57998401 -0.019197 -0.81440097 -0.57998401 -0.019197\n\t\t -0.81440097 -0.722992 -0.001129 -0.69085598 -0.75138801 -0.010987 -0.659769 0.12455\n\t\t -0.98864698 0.084050998 0.113805 -0.99204302 -0.053835001 0.108832 -0.993159 -0.042330001\n\t\t 0.108832 -0.993159 -0.042330001 0.118596 -0.98965901 0.080691002 0.12455 -0.98864698\n\t\t 0.084050998 0.123268 -0.98958701 0.074313998 0.118596 -0.98965901 0.080691002 0.108832\n\t\t -0.993159 -0.042330001 0.108832 -0.993159 -0.042330001 0.115088 -0.99273098 -0.035218999\n\t\t 0.123268 -0.98958701 0.074313998 0.093633004 -0.98201001 -0.16397899 0.108832 -0.993159\n\t\t -0.042330001 0.113805 -0.99204302 -0.053835001 0.115088 -0.99273098 -0.035218999\n\t\t 0.108832 -0.993159 -0.042330001 0.093633004 -0.98201001 -0.16397899 0.113805 -0.99204302\n\t\t -0.053835001 0.103307 -0.98368502 -0.147284 0.093633004 -0.98201001 -0.16397899 0.093633004\n\t\t -0.98201001 -0.16397899 0.095709004 -0.97762901 -0.187298 0.115088 -0.99273098 -0.035218999\n\t\t -0.096441001 -0.41194999 -0.90608799 -0.071414001 -0.54494601 -0.83542502 -0.067140996\n\t\t -0.54958302 -0.83273703 -0.070500001 -0.53720099 -0.84050298 -0.071414001 -0.54494601\n\t\t -0.83542502 -0.096441001 -0.41194999 -0.90608799 -0.067140996 -0.54958302 -0.83273703\n\t\t -0.104008 -0.37907499 -0.91950202 -0.096441001 -0.41194999 -0.90608799 -0.096441001\n\t\t -0.41194999 -0.90608799 0.069095001 -0.32234001 -0.94409901 -0.070500001 -0.53720099\n\t\t -0.84050298 0.002014 -0.261397 -0.96522897 -0.019074 -0.30134499 -0.95332402 -0.023407999\n\t\t -0.28987199 -0.956779 -0.023407999 -0.28987199 -0.956779 0.0060729999 -0.26124299\n\t\t -0.96525401;\n\tsetAttr \".n[31706:31871]\" -type \"float3\"  0.002014 -0.261397 -0.96522897 0.02997\n\t\t -0.292283 -0.95586199 0.002014 -0.261397 -0.96522897 0.0060729999 -0.26124299 -0.96525401\n\t\t 0.0060729999 -0.26124299 -0.96525401 0.031221 -0.299822 -0.953484 0.02997 -0.292283\n\t\t -0.95586199 -0.018769 -0.340377 -0.94010198 0.02997 -0.292283 -0.95586199 0.031221\n\t\t -0.299822 -0.953484 0.031221 -0.299822 -0.953484 -0.020509001 -0.346333 -0.93788803\n\t\t -0.018769 -0.340377 -0.94010198 -0.022888999 -0.38179299 -0.92396402 -0.018769 -0.340377\n\t\t -0.94010198 -0.020509001 -0.346333 -0.93788803 -0.020509001 -0.346333 -0.93788803\n\t\t -0.023987999 -0.38621601 -0.92209601 -0.022888999 -0.38179299 -0.92396402 -0.022706\n\t\t -0.407893 -0.91274703 -0.022888999 -0.38179299 -0.92396402 -0.023987999 -0.38621601\n\t\t -0.92209601 -0.023987999 -0.38621601 -0.92209601 -0.023042001 -0.41088101 -0.91139799\n\t\t -0.022706 -0.407893 -0.91274703 0.028749 -0.33421299 -0.94205898 -0.023407999 -0.28987199\n\t\t -0.956779 -0.019074 -0.30134499 -0.95332402 -0.019074 -0.30134499 -0.95332402 0.031342998\n\t\t -0.33397001 -0.94206202 0.028749 -0.33421299 -0.94205898 0.096928 -0.277601 -0.95579398\n\t\t 0.028749 -0.33421299 -0.94205898 0.031342998 -0.33397001 -0.94206202 0.031342998\n\t\t -0.33397001 -0.94206202 0.089727998 -0.28151199 -0.95535302 0.096928 -0.277601 -0.95579398\n\t\t 0.121954 -0.218638 -0.96815503 0.096928 -0.277601 -0.95579398 0.089727998 -0.28151199\n\t\t -0.95535302 0.089727998 -0.28151199 -0.95535302 0.125985 -0.21156199 -0.96921098\n\t\t 0.121954 -0.218638 -0.96815503 0.143838 -0.187969 -0.97158498 0.121954 -0.218638\n\t\t -0.96815503 0.125985 -0.21156199 -0.96921098 0.125985 -0.21156199 -0.96921098 0.143838\n\t\t -0.187969 -0.97158498 0.143838 -0.187969 -0.97158498 0.020723 0.26954699 0.96276402\n\t\t 0.0073859999 0.29234201 0.956285 0.0061949999 0.299602 0.95404398 0.0061949999 0.299602\n\t\t 0.95404398 0.023347 0.27362999 0.96155202 0.020723 0.26954699 0.96276402 0.040438\n\t\t 0.333731 0.94180101 0.020723 0.26954699 0.96276402 0.023347 0.27362999 0.96155202\n\t\t 0.023347 0.27362999 0.96155202 0.052462 0.323044 0.944929 0.040438 0.333731 0.94180101\n\t\t -0.035737999 0.41494301 0.909145 0.040438 0.333731 0.94180101 0.052462 0.323044 0.944929\n\t\t 0.052462 0.323044 0.944929 -0.024414999 0.41499701 0.909495 -0.035737999 0.41494301\n\t\t 0.909145 -0.120886 0.35493499 0.92704302 -0.035737999 0.41494301 0.909145 -0.024414999\n\t\t 0.41499701 0.909495 -0.024414999 0.41499701 0.909495 -0.136207 0.33851901 0.93104899\n\t\t -0.120886 0.35493499 0.92704302 0.081913002 0.293807 0.95234799 0.0061949999 0.299602\n\t\t 0.95404398 0.0073859999 0.29234201 0.956285 0.0073859999 0.29234201 0.956285 0.094884999\n\t\t 0.305529 0.94744301 0.081913002 0.293807 0.95234799 0.034120001 0.28220701 0.95874703\n\t\t 0.081913002 0.293807 0.95234799 0.094884999 0.305529 0.94744301 0.094884999 0.305529\n\t\t 0.94744301 0.032136001 0.28776199 0.95716298 0.034120001 0.28220701 0.95874703 0.026459999\n\t\t 0.318131 0.94767803 0.034120001 0.28220701 0.95874703 0.032136001 0.28776199 0.95716298\n\t\t 0.032136001 0.28776199 0.95716298 0.023347 0.32707101 0.94471103 0.026459999 0.318131\n\t\t 0.94767803 -0.120886 0.35493499 0.92704302 -0.136207 0.33851901 0.93104899 -0.177101\n\t\t 0.246012 0.95295 -0.177101 0.246012 0.95295 -0.17987999 0.23924001 0.954153 -0.120886\n\t\t 0.35493499 0.92704302 -0.203749 0.20204 0.95794898 -0.17987999 0.23924001 0.954153\n\t\t -0.177101 0.246012 0.95295 -0.177101 0.246012 0.95295 -0.203749 0.20204 0.95794898\n\t\t -0.203749 0.20204 0.95794898 0.48146701 -0.089665003 -0.87186599 0.74232697 0.044925001\n\t\t -0.66852999 0.64126903 -0.016938001 -0.76713002 0.64126903 -0.016938001 -0.76713002\n\t\t 0.47232199 -0.097327001 -0.87603599 0.48146701 -0.089665003 -0.87186599 0.113409\n\t\t -0.226726 -0.96733302 0.48146701 -0.089665003 -0.87186599 0.47232199 -0.097327001\n\t\t -0.87603599 0.47232199 -0.097327001 -0.87603599 0.109807 -0.229289 -0.96714503 0.113409\n\t\t -0.226726 -0.96733302 0.0065620001 -0.25715199 -0.96634901 0.113409 -0.226726 -0.96733302\n\t\t 0.109807 -0.229289 -0.96714503 0.109807 -0.229289 -0.96714503 0.019105 -0.25349101\n\t\t -0.96714902 0.0065620001 -0.25715199 -0.96634901 -0.002167 -0.258773 -0.96593601\n\t\t 0.0065620001 -0.25715199 -0.96634901 0.019105 -0.25349101 -0.96714902 0.019105 -0.25349101\n\t\t -0.96714902 0.012543 -0.25428301 -0.967049 -0.002167 -0.258773 -0.96593601 -0.86639303\n\t\t 0.47909799 -0.140818 -0.86639303 0.47909799 -0.140818 -0.86639303 0.47909799 -0.140818\n\t\t -0.81595802 0.566006 -0.117682 -0.82026201 0.559506 -0.118841 -0.81732798 0.56420398\n\t\t -0.116827 -0.81732798 0.56420398 -0.116827 -0.81281698 0.57116598 -0.114447 -0.81595802\n\t\t 0.566006 -0.117682 -0.81128502 0.57427502 -0.109655 -0.81595802 0.566006 -0.117682\n\t\t -0.81281698 0.57116598 -0.114447 -0.81281698 0.57116598 -0.114447 -0.80904502 0.57819402\n\t\t -0.105537 -0.81128502 0.57427502 -0.109655 -0.99409902 -0.105474 0.025331 -0.99917102\n\t\t -0.039186999 0.011017 -0.99917001 -0.039218001 0.011017 -0.99917001 -0.039218001\n\t\t 0.011017 -0.99444199 -0.102362 0.024660001 -0.99409902 -0.105474 0.025331 -0.98498702\n\t\t -0.168193 0.038881999 -0.99409902 -0.105474 0.025331 -0.99444199 -0.102362 0.024660001\n\t\t -0.99444199 -0.102362 0.024660001 -0.98498797 -0.16818801 0.038881 -0.98498702 -0.168193\n\t\t 0.038881999 -0.93805897 -0.33814999 0.075503998 -0.98498702 -0.168193 0.038881999\n\t\t -0.98498797 -0.16818801 0.038881 -0.98498797 -0.16818801 0.038881 -0.949543 -0.305619\n\t\t 0.070468999 -0.93805897 -0.33814999 0.075503998 -0.720496 -0.67520601 0.158059 -0.93805897\n\t\t -0.33814999 0.075503998 -0.949543 -0.305619 0.070468999 -0.949543 -0.305619 0.070468999\n\t\t -0.76741803 -0.62437201 0.14570101 -0.720496 -0.67520601 0.158059;\n\tsetAttr \".n[31872:32037]\" -type \"float3\"  -0.81133002 0.57501698 -0.105353 -0.81128502\n\t\t 0.57427502 -0.109655 -0.80904502 0.57819402 -0.105537 -0.80904502 0.57819402 -0.105537\n\t\t -0.80776 0.58057201 -0.102271 -0.81133002 0.57501698 -0.105353 0.98017699 0.19324601\n\t\t -0.043703001 0.97903198 0.200147 -0.037905 0.97900999 0.20008101 -0.038819999 0.97900999\n\t\t 0.20008101 -0.038819999 0.98027003 0.19266701 -0.044160999 0.98017699 0.19324601\n\t\t -0.043703001 0.98159999 0.186103 -0.042757001 0.98017699 0.19324601 -0.043703001\n\t\t 0.98027003 0.19266701 -0.044160999 0.98027003 0.19266701 -0.044160999 0.98159999\n\t\t 0.186103 -0.042757001 0.98159999 0.186103 -0.042757001 -0.27625999 -0.93923098 0.203777\n\t\t -0.39604801 -0.89680803 0.19718499 -0.45034301 -0.87245601 0.189769 -0.45034301 -0.87245601\n\t\t 0.189769 -0.27628699 -0.93921697 0.203805 -0.27625999 -0.93923098 0.203777 -0.76741803\n\t\t -0.62437201 0.14570101 -0.45034301 -0.87245601 0.189769 -0.39604801 -0.89680803 0.19718499\n\t\t -0.39604801 -0.89680803 0.19718499 -0.720496 -0.67520601 0.158059 -0.76741803 -0.62437201\n\t\t 0.14570101 0.94908798 0.19636101 0.24632099 0.966694 0.177072 0.184793 0.954247 0.248794\n\t\t 0.16587199 0.954247 0.248794 0.16587199 0.93047899 0.27934501 0.237014 0.94908798\n\t\t 0.19636101 0.24632099 0.97966701 -0.117224 0.16282 0.97312802 -0.180153 0.143409\n\t\t 0.98075002 0.134161 0.141882 0.98075002 0.134161 0.141882 0.98119098 0.120673 0.150673\n\t\t 0.97966701 -0.117224 0.16282 0.98119098 0.120673 0.150673 0.98075002 0.134161 0.141882\n\t\t 0.975124 0.186565 0.119697 0.975124 0.186565 0.119697 0.97443998 0.182199 0.13141499\n\t\t 0.98119098 0.120673 0.150673 0 -0.99957699 -0.029084001 0 -0.99957699 -0.029084001\n\t\t 0 -0.99957699 -0.029084001 0 -0.99957699 -0.029084001 0 -0.99957699 -0.029084001\n\t\t 0 -0.99957699 -0.029084001 0 -0.99957699 -0.029084001 0 -0.99957699 -0.029084001\n\t\t 0 -0.99957699 -0.029084001 0.121285 -0.98803699 0.095251001 0.119847 -0.98841101\n\t\t 0.093174003 0.119726 -0.988388 0.093571 0.119726 -0.988388 0.093571 0.121529 -0.98782301\n\t\t 0.097143002 0.121285 -0.98803699 0.095251001 0.129492 -0.98511899 0.113012 0.121285\n\t\t -0.98803699 0.095251001 0.121529 -0.98782301 0.097143002 0.121529 -0.98782301 0.097143002\n\t\t 0.138037 -0.98252201 0.124883 0.129492 -0.98511899 0.113012 0.129492 -0.98511899\n\t\t 0.113012 0.138037 -0.98252201 0.124883 0.14750101 -0.97964698 0.13614801 -0.14884\n\t\t 0.97980201 -0.13355 -0.14884 0.97980201 -0.13355 -0.14884 0.97980201 -0.13355 -0.103641\n\t\t -0.245859 -0.96374899 -0.098334 -0.230819 -0.96801502 -0.105535 -0.22465099 -0.96870798\n\t\t -0.105535 -0.22465099 -0.96870798 -0.102819 -0.243146 -0.96452498 -0.103641 -0.245859\n\t\t -0.96374899 -0.11753 -0.025971999 -0.99273002 -0.105535 -0.22465099 -0.96870798 -0.098334\n\t\t -0.230819 -0.96801502 -0.098334 -0.230819 -0.96801502 -0.037843999 -0.297225 -0.95405698\n\t\t -0.11753 -0.025971999 -0.99273002 -0.105535 -0.22465099 -0.96870798 -0.11753 -0.025971999\n\t\t -0.99273002 0.001831 -0.029634001 -0.99955899 0.001831 -0.029634001 -0.99955899 0.096653998\n\t\t -0.14969601 -0.98399597 -0.105535 -0.22465099 -0.96870798 -0.102819 -0.243146 -0.96452498\n\t\t -0.105535 -0.22465099 -0.96870798 0.096653998 -0.14969601 -0.98399597 0.096653998\n\t\t -0.14969601 -0.98399597 0.090885997 -0.199411 -0.97569197 -0.102819 -0.243146 -0.96452498\n\t\t -0.102819 -0.243146 -0.96452498 0.090885997 -0.199411 -0.97569197 0.069095001 -0.32234001\n\t\t -0.94409901 0.069095001 -0.32234001 -0.94409901 -0.096441001 -0.41194999 -0.90608799\n\t\t -0.102819 -0.243146 -0.96452498 -0.103641 -0.245859 -0.96374899 -0.102819 -0.243146\n\t\t -0.96452498 -0.096441001 -0.41194999 -0.90608799 -0.096441001 -0.41194999 -0.90608799\n\t\t -0.104008 -0.37907499 -0.91950202 -0.103641 -0.245859 -0.96374899 0.49569899 -0.71269202\n\t\t 0.49633899 0.495821 -0.72612101 0.47635001 0.497123 -0.72210801 0.48107001 0.497123\n\t\t -0.72210801 0.48107001 0.590918 -0.58804899 0.55228102 0.49569899 -0.71269202 0.49633899\n\t\t 0.48345301 -0.683231 0.54723799 0.49569899 -0.71269202 0.49633899 0.590918 -0.58804899\n\t\t 0.55228102 0.590918 -0.58804899 0.55228102 0.52960098 -0.59189099 0.60760802 0.48345301\n\t\t -0.683231 0.54723799 0.164407 -0.97298402 0.16208801 0.16413499 -0.97299403 0.162303\n\t\t 0.16688 -0.96864998 0.18403099 0.162971 -0.97474003 0.152716 0.16413499 -0.97299403\n\t\t 0.162303 0.164407 -0.97298402 0.16208801 0.16688 -0.96864998 0.18403099 0.16947301\n\t\t -0.96794403 0.18537299 0.164407 -0.97298402 0.16208801 0.16947301 -0.96794403 0.18537299\n\t\t 0.16688 -0.96864998 0.18403099 0.145028 -0.96496099 0.21867099 0.386619 -0.65985799\n\t\t 0.64429301 0.48345301 -0.683231 0.54723799 0.52960098 -0.59189099 0.60760802 0.145028\n\t\t -0.96496099 0.21867099 0.14396 -0.96514201 0.21857899 0.16947301 -0.96794403 0.18537299\n\t\t 0.52960098 -0.59189099 0.60760802 0.42085701 -0.58172202 0.69604599 0.386619 -0.65985799\n\t\t 0.64429301 0.386619 -0.65985799 0.64429301 0.42085701 -0.58172202 0.69604599 0.22340199\n\t\t -0.55398899 0.80198997 0.22340199 -0.55398899 0.80198997 0.211281 -0.61574501 0.75909102\n\t\t 0.386619 -0.65985799 0.64429301 0.164407 -0.97298402 0.16208801 0.161937 -0.97524899\n\t\t 0.150553 0.162971 -0.97474003 0.152716 0 -0.60355401 0.79732198 0.211281 -0.61574501\n\t\t 0.75909102 0.22340199 -0.55398899 0.80198997 0.077793002 -0.95661598 0.280774 0.082493\n\t\t -0.95609701 0.281201 0.000489 -0.95314699 0.30250701 0.077793002 -0.95661598 0.280774\n\t\t 0.14396 -0.96514201 0.21857899 0.145028 -0.96496099 0.21867099 0.145028 -0.96496099\n\t\t 0.21867099 0.082493 -0.95609701 0.281201 0.077793002 -0.95661598 0.280774 0.000489\n\t\t -0.95314699 0.30250701;\n\tsetAttr \".n[32038:32203]\" -type \"float3\"  0.000611 -0.95313799 0.302535 0.077793002\n\t\t -0.95661598 0.280774 0.22340199 -0.55398899 0.80198997 0 -0.543459 0.83943599 0 -0.60355401\n\t\t 0.79732198 0.590918 -0.58804899 0.55228102 0.69903398 -0.18842299 0.68981701 0.73447198\n\t\t -0.35862899 0.57613897 0.73447198 -0.35862899 0.57613897 0.67333698 -0.46254301 0.57677603\n\t\t 0.590918 -0.58804899 0.55228102 0.67333698 -0.46254301 0.57677603 0.73447198 -0.35862899\n\t\t 0.57613897 0.81545103 -0.32192001 0.481049 0.14991 0.93324602 0.326464 0.091495998\n\t\t 0.98665202 0.134711 0 0.991319 0.131476 0 0.991319 0.131476 0 0.94475502 0.327777\n\t\t 0.14991 0.93324602 0.326464 0 0.87202299 -0.48946601 -0.047793999 0.871086 -0.48879999\n\t\t -0.081394002 0.81494898 -0.57378799 -0.081394002 0.81494898 -0.57378799 0 0.80536902\n\t\t -0.59277302 0 0.87202299 -0.48946601 0 0.80536902 -0.59277302 -0.081394002 0.81494898\n\t\t -0.57378799 -0.123388 0.71740901 -0.68563902 -0.123388 0.71740901 -0.68563902 0 0.71478599\n\t\t -0.69934303 0 0.80536902 -0.59277302 2.9999999e-05 0.70724398 -0.70696902 0 0.71478599\n\t\t -0.69934303 -0.123388 0.71740901 -0.68563902 0.226454 -0.38185799 0.89604902 0 -0.37819001\n\t\t 0.92572802 0 -0.46254101 0.88659799 0 -0.46254101 0.88659799 0.22379801 -0.46786001\n\t\t 0.85499799 0.226454 -0.38185799 0.89604902 0.22340199 -0.55398899 0.80198997 0.22379801\n\t\t -0.46786001 0.85499799 0 -0.46254101 0.88659799 0 -0.46254101 0.88659799 0 -0.543459\n\t\t 0.83943599 0.22340199 -0.55398899 0.80198997 0 -0.37819001 0.92572802 0.226454 -0.38185799\n\t\t 0.89604902 0.229534 -0.28980899 0.92915303 0.229534 -0.28980899 0.92915303 0 -0.288831\n\t\t 0.95738 0 -0.37819001 0.92572802 0 -0.288831 0.95738 0.229534 -0.28980899 0.92915303\n\t\t 0.23548301 -0.036378 0.97119802 0.23548301 -0.036378 0.97119802 0 -0.035248999 0.99937898\n\t\t 0 -0.288831 0.95738 0.34566501 -0.19911 -0.91698998 0.340628 -0.19709501 -0.91930801\n\t\t 0.34480199 -0.200142 -0.91709 0.34566501 -0.19911 -0.91698998 0.34480199 -0.200142\n\t\t -0.91709 0.348075 -0.19801 -0.91631699 0.34480199 -0.200142 -0.91709 0.34477499 -0.20014399\n\t\t -0.91710001 0.348075 -0.19801 -0.91631699 0.34566501 -0.19911 -0.91698998 0.348075\n\t\t -0.19801 -0.91631699 0.35064 -0.20161299 -0.91455102 0.348075 -0.19801 -0.91631699\n\t\t 0.333056 -0.21140601 -0.91890198 0.35064 -0.20161299 -0.91455102 0.348075 -0.19801\n\t\t -0.91631699 0.35066599 -0.198406 -0.91524202 0.333056 -0.21140601 -0.91890198 0.333056\n\t\t -0.21140601 -0.91890198 0.25047499 -0.282368 -0.92602903 0.35064 -0.20161299 -0.91455102\n\t\t 0.25047499 -0.282368 -0.92602903 0.56014597 -0.129462 -0.81821501 0.35064 -0.20161299\n\t\t -0.91455102 0.34566501 -0.19911 -0.91698998 0.35064 -0.20161299 -0.91455102 0.341418\n\t\t -0.19776399 -0.91887099 0.88573402 -0.46331501 0.028535999 0.89032799 -0.44569799\n\t\t -0.093112998 0.89074498 -0.44494501 -0.092719004 0.88573402 -0.46331501 0.028535999\n\t\t 0.89074498 -0.44494501 -0.092719004 0.89796197 -0.43211901 -0.083286002 0.88573402\n\t\t -0.46331501 0.028535999 0.89796197 -0.43211901 -0.083286002 0.91295803 -0.407709\n\t\t -0.016786 0.88573402 -0.46331501 0.028535999 0.91295803 -0.407709 -0.016786 0.84593499\n\t\t -0.478176 0.23609699 0.91295803 -0.407709 -0.016786 0.90208697 -0.43108401 0.020143\n\t\t 0.84593499 -0.478176 0.23609699 0.91295803 -0.407709 -0.016786 0.90202498 -0.431205\n\t\t 0.020326 0.90208697 -0.43108401 0.020143 0.88573402 -0.46331501 0.028535999 0.84593499\n\t\t -0.478176 0.23609699 0.83225298 -0.47432601 0.28700101 0.83912098 -0.484947 0.24638\n\t\t 0.85512298 -0.439509 0.27494901 0.89217103 -0.44530699 0.075718001 0.39628801 -0.88657397\n\t\t -0.238627 0.47189301 -0.80870599 -0.35115799 0.44759899 -0.844078 -0.29527599 0.85512298\n\t\t -0.439509 0.27494901 0.83912098 -0.484947 0.24638 0.83978897 -0.48363301 0.246684\n\t\t 0.83978897 -0.48363301 0.246684 0.86918801 -0.445306 0.21497799 0.85512298 -0.439509\n\t\t 0.27494901 0.58496398 -0.62848502 -0.51266402 0.44759899 -0.844078 -0.29527599 0.47189301\n\t\t -0.80870599 -0.35115799 0.47189301 -0.80870599 -0.35115799 0.58674502 -0.58164799\n\t\t -0.56339699 0.58496398 -0.62848502 -0.51266402 0.83912098 -0.484947 0.24638 0.799824\n\t\t -0.54010302 0.261857 0.80421698 -0.53360099 0.26173401 0.80421698 -0.53360099 0.26173401\n\t\t 0.83978897 -0.48363301 0.246684 0.83912098 -0.484947 0.24638 0.65165198 -0.250076\n\t\t -0.71610898 0.58496398 -0.62848502 -0.51266402 0.58674502 -0.58164799 -0.56339699\n\t\t 0.58674502 -0.58164799 -0.56339699 0.63894898 -0.23023599 -0.73398602 0.65165198\n\t\t -0.250076 -0.71610898 0.614097 0.033693001 -0.78851098 0.65165198 -0.250076 -0.71610898\n\t\t 0.63894898 -0.23023599 -0.73398602 0.63894898 -0.23023599 -0.73398602 0.60095203\n\t\t 0.016603 -0.79911298 0.614097 0.033693001 -0.78851098 0.80310702 -0.53814101 0.25578001\n\t\t 0.84311402 -0.464039 0.27171001 0.84300703 -0.46609199 0.26851001 0.84300703 -0.46609199\n\t\t 0.26851001 0.82164299 -0.51306099 0.248336 0.80310702 -0.53814101 0.25578001 0.799824\n\t\t -0.54010302 0.261857 0.80310702 -0.53814101 0.25578001 0.82164299 -0.51306099 0.248336\n\t\t 0.82164299 -0.51306099 0.248336 0.80421698 -0.53360099 0.26173401 0.799824 -0.54010302\n\t\t 0.261857 0.61871201 0.110937 -0.77774602 0.614097 0.033693001 -0.78851098 0.60095203\n\t\t 0.016603 -0.79911298 0.60095203 0.016603 -0.79911298 0.61899298 0.106207 -0.77818203\n\t\t 0.61871201 0.110937 -0.77774602 0.84311402 -0.464039 0.27171001 0.84557003 -0.44955\n\t\t 0.28795001 0.845698 -0.45101801 0.285267 0.845698 -0.45101801 0.285267 0.84300703\n\t\t -0.46609199 0.26851001;\n\tsetAttr \".n[32204:32369]\" -type \"float3\"  0.84311402 -0.464039 0.27171001 0.53326702\n\t\t 0.78404599 -0.31764701 0.590711 0.648821 -0.47968 0.61136401 0.618963 -0.49307099\n\t\t 0.61136401 0.618963 -0.49307099 0.587286 0.69678998 -0.41179901 0.53326702 0.78404599\n\t\t -0.31764701 0.47404701 0.85718 -0.20130201 0.53326702 0.78404599 -0.31764701 0.587286\n\t\t 0.69678998 -0.41179901 0.89077699 -0.44201601 0.105537 0.92439801 -0.360585 0.124366\n\t\t 0.91637999 -0.361992 0.170909 0.84347099 -0.44076401 0.30705801 0.91637999 -0.361992\n\t\t 0.170909 0.83225298 -0.47432601 0.28700101 0.83225298 -0.47432601 0.28700101 0.845186\n\t\t -0.43507501 0.31043699 0.84347099 -0.44076401 0.30705801 0.84557003 -0.44955 0.28795001\n\t\t 0.84347099 -0.44076401 0.30705801 0.845186 -0.43507501 0.31043699 0.845186 -0.43507501\n\t\t 0.31043699 0.845698 -0.45101801 0.285267 0.84557003 -0.44955 0.28795001 0.83225298\n\t\t -0.47432601 0.28700101 0.86918801 -0.445306 0.21497799 0.88573402 -0.46331501 0.028535999\n\t\t 0.89032799 -0.44569799 -0.093112998 0.88573402 -0.46331501 0.028535999 0.86918801\n\t\t -0.445306 0.21497799 0.045046002 0.90800703 0.41652599 0.059634 0.77598 0.62793201\n\t\t 0.056214999 0.83609003 0.54570502 0.067936003 0.700481 0.71043003 0.056214999 0.83609003\n\t\t 0.54570502 0.059634 0.77598 0.62793201 0.059634 0.77598 0.62793201 0.063358001 0.69541901\n\t\t 0.71580601 0.067936003 0.700481 0.71043003 0.047029998 -0.058322001 0.99718899 0.054567002\n\t\t 0.043489002 0.997563 0.051242001 0.033236001 0.998133 0.051242001 0.033236001 0.998133\n\t\t 0.039613999 -0.13987 0.98937702 0.047029998 -0.058322001 0.99718899 0.034029 -0.30030799\n\t\t 0.95323497 0.047029998 -0.058322001 0.99718899 0.039613999 -0.13987 0.98937702 0.039613999\n\t\t -0.13987 0.98937702 0.034944002 -0.356188 0.933761 0.034029 -0.30030799 0.95323497\n\t\t 0.035707001 -0.431321 0.901492 0.034029 -0.30030799 0.95323497 0.034944002 -0.356188\n\t\t 0.933761 0.034944002 -0.356188 0.933761 0.036288001 -0.429315 0.902426 0.035707001\n\t\t -0.431321 0.901492 0.040591002 -0.81083602 0.58386397 0.037356 -0.80707699 0.58926302\n\t\t 0.038577002 -0.87996203 0.47347599 0.038577002 -0.87996203 0.47347599 0.040561002\n\t\t -0.878932 0.47521999 0.040591002 -0.81083602 0.58386397 0.037416998 -0.94228297 0.33272099\n\t\t 0.040561002 -0.878932 0.47521999 0.038577002 -0.87996203 0.47347599 0.845186 -0.43507501\n\t\t 0.31043699 0.83225298 -0.47432601 0.28700101 0.84593499 -0.478176 0.23609699 -0.132578\n\t\t 0.70842302 -0.69322401 -0.123388 0.71740901 -0.68563902 -0.247967 0.72714502 -0.64013499\n\t\t -0.123388 0.71740901 -0.68563902 -0.132578 0.70842302 -0.69322401 2.9999999e-05 0.70724398\n\t\t -0.70696902 0.55475599 0.51178402 -0.65599 0.87848902 0.27729601 -0.389056 0.76064003\n\t\t 0.450317 -0.46759099 0.55475599 0.51178402 -0.65599 0.76064003 0.450317 -0.46759099\n\t\t 0.495511 0.606022 -0.62225801 0.495511 0.606022 -0.62225801 0.497832 0.38237801 -0.77842802\n\t\t 0.55475599 0.51178402 -0.65599 0.533355 0.51379299 -0.671974 0.497832 0.38237801\n\t\t -0.77842802 0.495511 0.606022 -0.62225801 0.495511 0.606022 -0.62225801 0.52053601\n\t\t 0.703071 -0.48449299 0.533355 0.51379299 -0.671974 0.80390698 0.031221 -0.59393501\n\t\t 0.80448198 0.032136999 -0.59310699 0.80449802 0.0070810001 -0.59391302 0.80449802\n\t\t 0.0070810001 -0.59391302 0.80414701 0.0091859996 -0.59435898 0.80390698 0.031221\n\t\t -0.59393501 0.80152899 -0.011628 -0.59784299 0.80414701 0.0091859996 -0.59435898\n\t\t 0.80449802 0.0070810001 -0.59391302 0.80449802 0.0070810001 -0.59391302 0.91740203\n\t\t 0.068882003 -0.391956 0.80152899 -0.011628 -0.59784299 0.80399197 -0.021119 -0.59426498\n\t\t 0.80152899 -0.011628 -0.59784299 0.91740203 0.068882003 -0.391956 0.91740203 0.068882003\n\t\t -0.391956 0.919833 0.048769001 -0.38926601 0.80399197 -0.021119 -0.59426498 0.80399197\n\t\t -0.021119 -0.59426498 0.919833 0.048769001 -0.38926601 0.89873999 -0.068668999 -0.433072\n\t\t 0.89873999 -0.068668999 -0.433072 0.78086102 -0.17392799 -0.60000497 0.80399197 -0.021119\n\t\t -0.59426498 0.78086102 -0.17392799 -0.60000497 0.89873999 -0.068668999 -0.433072\n\t\t 0.84452498 -0.37089801 -0.38628 0.84452498 -0.37089801 -0.38628 0.73828399 -0.306685\n\t\t -0.60073501 0.78086102 -0.17392799 -0.60000497 0.78842998 -0.34300399 -0.51061499\n\t\t 0.73828399 -0.306685 -0.60073501 0.84452498 -0.37089801 -0.38628 0.84452498 -0.37089801\n\t\t -0.38628 0.85134101 -0.40517601 -0.333242 0.78842998 -0.34300399 -0.51061499 0.78842998\n\t\t -0.34300399 -0.51061499 0.85134101 -0.40517601 -0.333242 0.90324903 -0.40895799 -0.12998199\n\t\t 0.90324903 -0.40895799 -0.12998199 0.91490901 -0.380454 -0.134895 0.78842998 -0.34300399\n\t\t -0.51061499 -0.40603101 -0.185955 -0.89473999 -0.38716599 -0.15299299 -0.90922803\n\t\t -0.37267199 -0.162485 -0.91362703 -0.37267199 -0.162485 -0.91362703 -0.379421 -0.15504\n\t\t -0.91214198 -0.40603101 -0.185955 -0.89473999 -0.40603101 -0.185955 -0.89473999 -0.379421\n\t\t -0.15504 -0.91214198 -0.42686999 -0.188242 -0.88450402 -0.42686999 -0.188242 -0.88450402\n\t\t -0.44015101 -0.190594 -0.87746298 -0.40603101 -0.185955 -0.89473999 -0.44015101 -0.190594\n\t\t -0.87746298 -0.42686999 -0.188242 -0.88450402 -0.43084401 -0.168956 -0.88646901 -0.43084401\n\t\t -0.168956 -0.88646901 -0.42558801 -0.166604 -0.88944799 -0.44015101 -0.190594 -0.87746298\n\t\t -0.42558801 -0.166604 -0.88944799 -0.43084401 -0.168956 -0.88646901 -0.41972801 -0.17676599\n\t\t -0.89027101 -0.41972801 -0.17676599 -0.89027101 -0.41146299 -0.17502899 -0.894463\n\t\t -0.42558801 -0.166604 -0.88944799 -0.41146299 -0.17502899 -0.894463 -0.41972801 -0.17676599\n\t\t -0.89027101 -0.40160501 -0.17096999 -0.89971298 -0.40160501 -0.17096999 -0.89971298\n\t\t -0.396348 -0.151618 -0.90549397 -0.41146299 -0.17502899 -0.894463 -0.396348 -0.151618\n\t\t -0.90549397 -0.40160501 -0.17096999 -0.89971298 -0.38743499 -0.141424 -0.91098499;\n\tsetAttr \".n[32370:32535]\" -type \"float3\"  -0.38743499 -0.141424 -0.91098499 -0.38282999\n\t\t -0.123633 -0.91550899 -0.396348 -0.151618 -0.90549397 -0.38282999 -0.123633 -0.91550899\n\t\t -0.38743499 -0.141424 -0.91098499 -0.37483099 -0.118657 -0.91946799 -0.37483099 -0.118657\n\t\t -0.91946799 -0.39769399 -0.094457 -0.91264302 -0.38282999 -0.123633 -0.91550899 -0.37267199\n\t\t -0.162485 -0.91362703 -0.38716599 -0.15299299 -0.90922803 -0.45970801 -0.140388 -0.876903\n\t\t -0.45970801 -0.140388 -0.876903 -0.38628301 -0.204052 -0.89952701 -0.37267199 -0.162485\n\t\t -0.91362703 -0.48711199 -0.129706 -0.86365402 -0.38628301 -0.204052 -0.89952701 -0.45970801\n\t\t -0.140388 -0.876903 -0.48711199 -0.129706 -0.86365402 -0.492185 -0.136452 -0.85972899\n\t\t -0.38628301 -0.204052 -0.89952701 -0.48711199 -0.129706 -0.86365402 -0.45970801 -0.140388\n\t\t -0.876903 -0.483426 -0.12772401 -0.86601698 -0.49335 -0.081610002 -0.86599398 -0.492185\n\t\t -0.136452 -0.85972899 -0.48711199 -0.129706 -0.86365402 -0.39769399 -0.094457 -0.91264302\n\t\t -0.37483099 -0.118657 -0.91946799 -0.49335 -0.081610002 -0.86599398 -0.49335 -0.081610002\n\t\t -0.86599398 -0.48711199 -0.129706 -0.86365402 -0.46505299 -0.077123001 -0.881917\n\t\t -0.49335 -0.081610002 -0.86599398 -0.43584499 -0.081882998 -0.89628899 -0.39769399\n\t\t -0.094457 -0.91264302 -0.49335 -0.081610002 -0.86599398 -0.46505299 -0.077123001\n\t\t -0.881917 -0.43584499 -0.081882998 -0.89628899 -0.29887301 0.915021 0.27094799 -0.26710501\n\t\t 0.95683998 0.114508 -0.37959099 0.923311 0.058382001 -0.37959099 0.923311 0.058382001\n\t\t -0.41774699 0.88331801 0.212688 -0.29887301 0.915021 0.27094799 -0.41774699 0.88331801\n\t\t 0.212688 -0.37959099 0.923311 0.058382001 -0.176277 0.958534 -0.22391701 -0.176277\n\t\t 0.958534 -0.22391701 -0.267225 0.96162498 -0.062197998 -0.41774699 0.88331801 0.212688\n\t\t -0.091496997 0.98665202 0.134711 -0.26710501 0.95683998 0.114508 -0.29887301 0.915021\n\t\t 0.27094799 -0.29887301 0.915021 0.27094799 -0.149911 0.93324602 0.326464 -0.091496997\n\t\t 0.98665202 0.134711 0.058536001 0.91558099 -0.39785099 0.047793001 0.871086 -0.48879999\n\t\t 0.081394002 0.81494898 -0.57378799 0.081394002 0.81494898 -0.57378799 0.121436 0.85548598\n\t\t -0.50338501 0.058536001 0.91558099 -0.39785099 0.121436 0.85548598 -0.50338501 0.081394002\n\t\t 0.81494898 -0.57378799 0.123603 0.71756899 -0.68543202 0.123603 0.71756899 -0.68543202\n\t\t 0.24757101 0.72730201 -0.640109 0.121436 0.85548598 -0.50338501 -0.176277 0.958534\n\t\t -0.22391701 0.033937 0.911484 -0.409933 0.120429 0.85673898 -0.50149399 0.058536001\n\t\t 0.91558099 -0.39785099 0.121436 0.85548598 -0.50338501 0.120429 0.85673898 -0.50149399\n\t\t 0.120429 0.85673898 -0.50149399 0.033937 0.911484 -0.409933 0.058536001 0.91558099\n\t\t -0.39785099 0.120429 0.85673898 -0.50149399 0.096134998 0.899275 -0.426687 -0.176277\n\t\t 0.958534 -0.22391701 0.190226 0.86424297 -0.46572301 0.096134998 0.899275 -0.426687\n\t\t 0.120429 0.85673898 -0.50149399 0.096134998 0.899275 -0.426687 0.190226 0.86424297\n\t\t -0.46572301 0.197919 0.89437598 -0.401149 0.197919 0.89437598 -0.401149 0.109838\n\t\t 0.92222798 -0.37071601 0.096134998 0.899275 -0.426687 -0.176277 0.958534 -0.22391701\n\t\t 0.096134998 0.899275 -0.426687 0.109838 0.92222798 -0.37071601 0.074803002 0.94863802\n\t\t -0.30739301 0.109838 0.92222798 -0.37071601 0.197919 0.89437598 -0.401149 0.197919\n\t\t 0.89437598 -0.401149 0.206154 0.91617101 -0.34370199 0.074803002 0.94863802 -0.30739301\n\t\t 0.055147 0.99592501 -0.071353003 0.074803002 0.94863802 -0.30739301 0.206154 0.91617101\n\t\t -0.34370199 0.074803002 0.94863802 -0.30739301 0.055147 0.99592501 -0.071353003 -0.032166999\n\t\t 0.99061 -0.132879 -0.032166999 0.99061 -0.132879 -0.11054 0.96546698 -0.235912 0.074803002\n\t\t 0.94863802 -0.30739301 0.109838 0.92222798 -0.37071601 0.074803002 0.94863802 -0.30739301\n\t\t -0.11054 0.96546698 -0.235912 0.206154 0.91617101 -0.34370199 0.31709599 0.93783098\n\t\t -0.14115199 0.055147 0.99592501 -0.071353003 -0.11054 0.96546698 -0.235912 -0.15403201\n\t\t 0.959503 -0.235855 0.109838 0.92222798 -0.37071601 -0.25547299 0.95902401 -0.122503\n\t\t -0.15403201 0.959503 -0.235855 -0.11054 0.96546698 -0.235912 -0.11054 0.96546698\n\t\t -0.235912 -0.450008 0.891195 -0.057131998 -0.25547299 0.95902401 -0.122503 -0.450008\n\t\t 0.891195 -0.057131998 -0.11054 0.96546698 -0.235912 -0.032166999 0.99061 -0.132879\n\t\t -0.032166999 0.99061 -0.132879 -0.54544401 0.832174 -0.099890001 -0.450008 0.891195\n\t\t -0.057131998 -0.76457399 0.61899602 -0.179638 -0.79050303 0.58981001 -0.165016 -0.87309998\n\t\t 0.47530901 -0.108527 -0.40767401 0.84922397 -0.33558801 -0.56627899 0.787175 -0.244304\n\t\t -0.31834701 0.91261798 -0.256484 -0.56627899 0.787175 -0.244304 -0.40767401 0.84922397\n\t\t -0.33558801 -0.48693401 0.78995901 -0.37264001 -0.48693401 0.78995901 -0.37264001\n\t\t -0.52325201 0.77997899 -0.34327999 -0.56627899 0.787175 -0.244304 0.109838 0.92222798\n\t\t -0.37071601 -0.15403201 0.959503 -0.235855 -0.176277 0.958534 -0.22391701 -0.52325201\n\t\t 0.77997899 -0.34327999 -0.48693401 0.78995901 -0.37264001 -0.34014201 0.83556801\n\t\t -0.431427 -0.34014201 0.83556801 -0.431427 -0.38008201 0.82529098 -0.417651 -0.52325201\n\t\t 0.77997899 -0.34327999 -0.38008201 0.82529098 -0.417651 -0.34014201 0.83556801 -0.431427\n\t\t -0.34349799 0.79634702 -0.49783501 -0.34349799 0.79634702 -0.49783501 -0.40041599\n\t\t 0.78221399 -0.477294 -0.38008201 0.82529098 -0.417651 -0.40041599 0.78221399 -0.477294\n\t\t -0.34349799 0.79634702 -0.49783501 -0.76064003 0.450317 -0.46759099 -0.267225 0.96162498\n\t\t -0.062197998 -0.176277 0.958534 -0.22391701 -0.15403201 0.959503 -0.235855 -0.15403201\n\t\t 0.959503 -0.235855 -0.25547299 0.95902401 -0.122503 -0.267225 0.96162498 -0.062197998\n\t\t 0.496461 0.78160602 -0.37764901;\n\tsetAttr \".n[32536:32701]\" -type \"float3\"  0.71900201 0.64740503 -0.25279099 0.31709599\n\t\t 0.93783098 -0.14115199 0.31709599 0.93783098 -0.14115199 0.206154 0.91617101 -0.34370199\n\t\t 0.496461 0.78160602 -0.37764901 0.71900201 0.64740503 -0.25279099 0.496461 0.78160602\n\t\t -0.37764901 0.71965402 0.542427 -0.43344101 0.71965402 0.542427 -0.43344101 0.85646898\n\t\t 0.45986801 -0.23448101 0.71900201 0.64740503 -0.25279099 0.496461 0.78160602 -0.37764901\n\t\t 0.206154 0.91617101 -0.34370199 0.25471199 0.88508499 -0.38954601 0.496461 0.78160602\n\t\t -0.37764901 0.72651601 0.52987897 -0.43749699 0.71965402 0.542427 -0.43344101 0.206154\n\t\t 0.91617101 -0.34370199 0.197919 0.89437598 -0.401149 0.25471199 0.88508499 -0.38954601\n\t\t 0.205 0.86492401 -0.45812899 0.25471199 0.88508499 -0.38954601 0.197919 0.89437598\n\t\t -0.401149 0.197919 0.89437598 -0.401149 0.190226 0.86424297 -0.46572301 0.205 0.86492401\n\t\t -0.45812899 0.205 0.86492401 -0.45812899 0.190226 0.86424297 -0.46572301 0.27674901\n\t\t 0.75773299 -0.59097499 0.120429 0.85673898 -0.50149399 0.27674901 0.75773299 -0.59097499\n\t\t 0.190226 0.86424297 -0.46572301 0.27674901 0.75773299 -0.59097499 0.120429 0.85673898\n\t\t -0.50149399 0.121436 0.85548598 -0.50338501 0.121436 0.85548598 -0.50338501 0.24757101\n\t\t 0.72730201 -0.640109 0.27674901 0.75773299 -0.59097499 0.27674901 0.75773299 -0.59097499\n\t\t 0.29606399 0.75262803 -0.58813101 0.205 0.86492401 -0.45812899 0.25764501 0.71977001\n\t\t -0.64463198 0.29606399 0.75262803 -0.58813101 0.27674901 0.75773299 -0.59097499 0.27674901\n\t\t 0.75773299 -0.59097499 0.24757101 0.72730201 -0.640109 0.25764501 0.71977001 -0.64463198\n\t\t 0.25764501 0.71977001 -0.64463198 0.24757101 0.72730201 -0.640109 0.123603 0.71756899\n\t\t -0.68543202 0.123603 0.71756899 -0.68543202 0.081394002 0.81494898 -0.57378799 0\n\t\t 0.80536902 -0.59277302 0 0.80536902 -0.59277302 0 0.71478599 -0.69934303 0.123603\n\t\t 0.71756899 -0.68543202 0 0.87202299 -0.48946601 0 0.80536902 -0.59277302 0.081394002\n\t\t 0.81494898 -0.57378799 0.081394002 0.81494898 -0.57378799 0.047793001 0.871086 -0.48879999\n\t\t 0 0.87202299 -0.48946601 0 0.991319 0.131476 -0.091496997 0.98665202 0.134711 -0.149911\n\t\t 0.93324602 0.326464 -0.149911 0.93324602 0.326464 0 0.94475502 0.327777 0 0.991319\n\t\t 0.131476 0 0.71478599 -0.69934303 2.9999999e-05 0.70724398 -0.70696902 0.13330901\n\t\t 0.708112 -0.69340199 -0.0036619999 -0.99997801 -0.0055539999 0 -0.99993801 -0.011109\n\t\t -0.151739 -0.98838198 -0.0086979996 -0.0036619999 -0.99997801 -0.0055539999 -0.151739\n\t\t -0.98838198 -0.0086979996 -0.037140999 -0.99928302 0.0073859999 -0.151739 -0.98838198\n\t\t -0.0086979996 -0.13181099 -0.99104398 0.021393999 -0.037140999 -0.99928302 0.0073859999\n\t\t -0.0036619999 -0.99997801 -0.0055539999 -0.037140999 -0.99928302 0.0073859999 0 -1\n\t\t 0.000336 0 -1 0.000122 0 -1 0.000336 -0.037140999 -0.99928302 0.0073859999 0 -1 0.000336\n\t\t 0 -1 0.000122 0 -1 0.000122 0 -1 0.000122 0 -1 0.000336 0 -1 0.000336 0 -1 0.000336\n\t\t 0 -1 0.000336 0 -1 0.000122 0 -1 0.000122 0 -1 9.2000002e-05 0 -1 0.000336 0 -1 0.000397\n\t\t 0 -1 0.000336 0 -1 0.000336 0 -1 0.000336 0 -1 0.000397 -0.0036619999 -0.99997801\n\t\t -0.0055539999 0 -1 0.000336 0 -1 0.000397 0 -1 0.000397 0 -1 0.000397 0 -1 0.000397\n\t\t 0 -1 0.000336 0 -1 0.000336 0 -1 0.000336 0 -1 0.000397 0 -1 0 0 -1 0.000122 0 -1\n\t\t 0.000122 0 -1 9.2000002e-05 0 -1 0.000122 0 -1 0 0 -1 0.000122 0 -1 0 0 -1 0 0 -1\n\t\t 0 0 -1 0 0 -1 9.2000002e-05 -0.037140999 -0.99928302 0.0073859999 3.1e-05 -1 0.000122\n\t\t 0 -1 0.000122 0 -1 0 0 -1 0.000122 3.1e-05 -1 0.000122 3.1e-05 -1 0.000122 0 -1 0\n\t\t 0 -1 0 0 -1 0 0 -1 0 3.1e-05 -1 0.000122 3.1e-05 -1 0.000122 -0.115789 -0.99327397\n\t\t 0.00042699999 0 -1 0 -0.115789 -0.99327397 0.00042699999 3.1e-05 -1 0.000122 -0.037140999\n\t\t -0.99928302 0.0073859999 -0.115789 -0.99327397 0.00042699999 -0.037140999 -0.99928302\n\t\t 0.0073859999 -0.13181099 -0.99104398 0.021393999 -0.35661501 -0.933824 -0.028261\n\t\t -0.115789 -0.99327397 0.00042699999 -0.13181099 -0.99104398 0.021393999 -0.13181099\n\t\t -0.99104398 0.021393999 -0.151739 -0.98838198 -0.0086979996 -0.35661501 -0.933824\n\t\t -0.028261 -0.85134101 -0.405177 -0.333242 -0.90324801 -0.408959 -0.12998199 -0.86906999\n\t\t -0.48028401 -0.118507 -0.86906999 -0.48028401 -0.118507 -0.87602001 -0.46151 -0.139991\n\t\t -0.85134101 -0.405177 -0.333242 -0.85134101 -0.405177 -0.333242 -0.87602001 -0.46151\n\t\t -0.139991 -0.90896499 -0.38476101 -0.16044199 -0.90896499 -0.38476101 -0.16044199\n\t\t -0.84452403 -0.37089899 -0.38628 -0.85134101 -0.405177 -0.333242 -0.84452403 -0.37089899\n\t\t -0.38628 -0.90896499 -0.38476101 -0.16044199;\n\tsetAttr \".n[32702:32867]\" -type \"float3\"  -0.91282898 -0.37755299 -0.15555599 -0.91282898\n\t\t -0.37755299 -0.15555599 -0.89793903 -0.41942701 -0.133369 -0.84452403 -0.37089899\n\t\t -0.38628 -0.96340001 0.23176201 -0.134712 -0.95686501 0.273909 -0.096868001 -0.95680797\n\t\t 0.272719 -0.100713 -0.95680797 0.272719 -0.100713 -0.96608102 0.22239199 -0.131262\n\t\t -0.96340001 0.23176201 -0.134712 -0.96340001 0.23176201 -0.134712 -0.96608102 0.22239199\n\t\t -0.131262 -0.97179902 0.163431 -0.169993 -0.97179902 0.163431 -0.169993 -0.96977103\n\t\t 0.16822 -0.17676599 -0.96340001 0.23176201 -0.134712 -0.96977103 0.16822 -0.17676599\n\t\t -0.97179902 0.163431 -0.169993 -0.968431 0.113042 -0.222179 -0.968431 0.113042 -0.222179\n\t\t -0.96675098 0.114568 -0.228618 -0.96977103 0.16822 -0.17676599 -0.96675098 0.114568\n\t\t -0.228618 -0.968431 0.113042 -0.222179 -0.94965798 -0.127692 -0.28608501 -0.94965798\n\t\t -0.127692 -0.28608501 -0.95285702 -0.087162003 -0.29063001 -0.96675098 0.114568 -0.228618\n\t\t -0.553433 0.73285502 -0.39577201 -0.57949698 0.740026 -0.34138599 -0.59484899 0.72879797\n\t\t -0.339129 -0.59484899 0.72879797 -0.339129 -0.55502701 0.72953701 -0.399652 -0.553433\n\t\t 0.73285502 -0.39577201 -0.63377303 0.70549399 -0.31719199 -0.59484899 0.72879797\n\t\t -0.339129 -0.57949698 0.740026 -0.34138599 -0.57949698 0.740026 -0.34138599 -0.63362497\n\t\t 0.70592701 -0.31652299 -0.63377303 0.70549399 -0.31719199 -0.86962402 -0.41466901\n\t\t -0.26796201 -0.85202497 -0.44084501 -0.28233001 -0.85213202 -0.44100499 -0.281755\n\t\t -0.85213202 -0.44100499 -0.281755 -0.86945599 -0.41524199 -0.26762101 -0.86962402\n\t\t -0.41466901 -0.26796201 -0.86962402 -0.41466901 -0.26796201 -0.86945599 -0.41524199\n\t\t -0.26762101 -0.90100998 -0.341721 -0.26722401 -0.90100998 -0.341721 -0.26722401 -0.89653099\n\t\t -0.35353401 -0.26692101 -0.86962402 -0.41466901 -0.26796201 -0.94965798 -0.127692\n\t\t -0.28608501 -0.89653099 -0.35353401 -0.26692101 -0.90100998 -0.341721 -0.26722401\n\t\t -0.90100998 -0.341721 -0.26722401 -0.95285702 -0.087162003 -0.29063001 -0.94965798\n\t\t -0.127692 -0.28608501 -0.961272 0.25270101 0.109992 -0.95480698 0.28126001 0.096102998\n\t\t -0.95361 0.28993401 0.081028998 -0.95361 0.28993401 0.081028998 -0.96199 0.25611499\n\t\t 0.094761997 -0.961272 0.25270101 0.109992 -0.95480698 0.28126001 0.096102998 -0.961272\n\t\t 0.25270101 0.109992 -0.95424801 0.24879301 0.16587199 -0.95424801 0.24879301 0.16587199\n\t\t -0.94850302 0.27342001 0.15995 -0.95480698 0.28126001 0.096102998 -0.966694 0.177072\n\t\t 0.184793 -0.95424801 0.24879301 0.16587199 -0.961272 0.25270101 0.109992 -0.961272\n\t\t 0.25270101 0.109992 -0.97443998 0.182198 0.13141499 -0.966694 0.177072 0.184793 -0.961272\n\t\t 0.25270101 0.109992 -0.96199 0.25611499 0.094761997 -0.975124 0.186565 0.119697 -0.975124\n\t\t 0.186565 0.119697 -0.97443998 0.182198 0.13141499 -0.961272 0.25270101 0.109992 -0.92201298\n\t\t 0.30494699 0.238537 -0.94850302 0.27342001 0.15995 -0.95424801 0.24879301 0.16587199\n\t\t -0.95424801 0.24879301 0.16587199 -0.93047899 0.27934501 0.237014 -0.92201298 0.30494699\n\t\t 0.238537 -0.78675801 0.57742602 0.218152 -0.92201298 0.30494699 0.238537 -0.93047899\n\t\t 0.27934501 0.237014 -0.93047899 0.27934501 0.237014 -0.89118999 0.33937299 0.30101001\n\t\t -0.78675801 0.57742602 0.218152 -0.73414201 0.59692699 0.323596 -0.78675801 0.57742602\n\t\t 0.218152 -0.89118999 0.33937299 0.30101001 -0.89118999 0.33937299 0.30101001 -0.81145\n\t\t 0.426783 0.39925501 -0.73414201 0.59692699 0.323596 -0.73414201 0.59692699 0.323596\n\t\t -0.81145 0.426783 0.39925501 -0.68524897 0.49621299 0.53311002 -0.68524897 0.49621299\n\t\t 0.53311002 -0.60425198 0.65790498 0.449489 -0.73414201 0.59692699 0.323596 -0.60425198\n\t\t 0.65790498 0.449489 -0.68524897 0.49621299 0.53311002 -0.575378 0.51583499 0.63470799\n\t\t -0.575378 0.51583499 0.63470799 -0.523624 0.66672897 0.53036797 -0.60425198 0.65790498\n\t\t 0.449489 -0.59810901 0.361038 0.71548402 -0.575378 0.51583499 0.63470799 -0.68524897\n\t\t 0.49621299 0.53311002 -0.68524897 0.49621299 0.53311002 -0.71143699 0.369131 0.597996\n\t\t -0.59810901 0.361038 0.71548402 -0.71143699 0.369131 0.597996 -0.68524897 0.49621299\n\t\t 0.53311002 -0.81145 0.426783 0.39925501 -0.81145 0.426783 0.39925501 -0.84360999\n\t\t 0.329027 0.42433801 -0.71143699 0.369131 0.597996 -0.966694 0.177072 0.184793 -0.97443998\n\t\t 0.182198 0.13141499 -0.98119098 0.120672 0.150673 -0.98119098 0.120672 0.150673 -0.97443998\n\t\t 0.182198 0.13141499 -0.975124 0.186565 0.119697 -0.89118999 0.33937299 0.30101001\n\t\t -0.93047899 0.27934501 0.237014 -0.94908798 0.19636101 0.24632099 -0.94908798 0.19636101\n\t\t 0.24632099 -0.91982502 0.24336199 0.30772701 -0.89118999 0.33937299 0.30101001 -0.81145\n\t\t 0.426783 0.39925501 -0.89118999 0.33937299 0.30101001 -0.91982502 0.24336199 0.30772701\n\t\t -0.91982502 0.24336199 0.30772701 -0.84360999 0.329027 0.42433801 -0.81145 0.426783\n\t\t 0.39925501 -0.91982502 0.24336199 0.30772701 -0.94908798 0.19636101 0.24632099 -0.958987\n\t\t 0.117313 0.258035 -0.958987 0.117313 0.258035 -0.93840498 0.13312501 0.318865 -0.91982502\n\t\t 0.24336199 0.30772701 -0.84360999 0.329027 0.42433801 -0.91982502 0.24336199 0.30772701\n\t\t -0.93840498 0.13312501 0.318865 -0.93840498 0.13312501 0.318865 -0.958987 0.117313\n\t\t 0.258035 -0.96142298 -0.029238001 0.27351499 -0.96142298 -0.029238001 0.27351499\n\t\t -0.941203 -0.029359 0.33656299 -0.93840498 0.13312501 0.318865 -0.93840498 0.13312501\n\t\t 0.318865 -0.87349403 0.15641101 0.461025 -0.84360999 0.329027 0.42433801 -0.87349403\n\t\t 0.15641101 0.461025 -0.93840498 0.13312501 0.318865 -0.941203 -0.029359 0.33656299\n\t\t -0.941203 -0.029359 0.33656299 -0.876508 -0.035250001 0.48009601 -0.87349403 0.15641101\n\t\t 0.461025;\n\tsetAttr \".n[32868:33033]\" -type \"float3\"  -0.96142298 -0.029238001 0.27351499 -0.958987\n\t\t 0.117313 0.258035 -0.97360402 0.106021 0.202125 -0.97360402 0.106021 0.202125 -0.958987\n\t\t 0.117313 0.258035 -0.94908798 0.19636101 0.24632099 -0.97360402 0.106021 0.202125\n\t\t -0.97537202 -0.041506998 0.216627 -0.96142298 -0.029238001 0.27351499 -0.97537202\n\t\t -0.041506998 0.216627 -0.97360402 0.106021 0.202125 -0.98119098 0.120672 0.150673\n\t\t -0.98119098 0.120672 0.150673 -0.97966701 -0.117225 0.16282 -0.97537202 -0.041506998\n\t\t 0.216627 -0.74725598 0.18189301 0.63915801 -0.87349403 0.15641101 0.461025 -0.876508\n\t\t -0.035250001 0.48009601 -0.59810901 0.361038 0.71548402 -0.71143699 0.369131 0.597996\n\t\t -0.74725598 0.18189301 0.63915801 -0.84360999 0.329027 0.42433801 -0.87349403 0.15641101\n\t\t 0.461025 -0.74725598 0.18189301 0.63915801 -0.74725598 0.18189301 0.63915801 -0.71143699\n\t\t 0.369131 0.597996 -0.84360999 0.329027 0.42433801 -0.876508 -0.035250001 0.48009601\n\t\t -0.75626099 -0.041476 0.65295398 -0.74725598 0.18189301 0.63915801 -0.74725598 0.18189301\n\t\t 0.63915801 -0.75626099 -0.041476 0.65295398 -0.64578402 -0.043032002 0.76230597 -0.64578402\n\t\t -0.043032002 0.76230597 -0.62751299 0.207838 0.75035399 -0.74725598 0.18189301 0.63915801\n\t\t -0.94908798 0.19636101 0.24632099 -0.966694 0.177072 0.184793 -0.97360402 0.106021\n\t\t 0.202125 -0.98119098 0.120672 0.150673 -0.97360402 0.106021 0.202125 -0.966694 0.177072\n\t\t 0.184793 -0.47595701 0.230272 0.84878701 -0.62751299 0.207838 0.75035399 -0.64578402\n\t\t -0.043032002 0.76230597 -0.62751299 0.207838 0.75035399 -0.47595701 0.230272 0.84878701\n\t\t -0.455006 0.37492499 0.80771297 -0.223003 0.38624901 0.89503199 -0.455006 0.37492499\n\t\t 0.80771297 -0.47595701 0.230272 0.84878701 -0.47595701 0.230272 0.84878701 -0.229507\n\t\t 0.242447 0.94262701 -0.223003 0.38624901 0.89503199 -0.229507 0.242447 0.94262701\n\t\t -0.47595701 0.230272 0.84878701 -0.48769701 -0.040224001 0.87208599 -0.64578402 -0.043032002\n\t\t 0.76230597 -0.48769701 -0.040224001 0.87208599 -0.47595701 0.230272 0.84878701 -0.48769701\n\t\t -0.040224001 0.87208599 -0.23548301 -0.036378 0.97119802 -0.229507 0.242447 0.94262701\n\t\t -0.455006 0.37492499 0.80771297 -0.223003 0.38624901 0.89503199 -0.216409 0.54372299\n\t\t 0.810884 -0.216409 0.54372299 0.810884 -0.442404 0.53393 0.72055399 -0.455006 0.37492499\n\t\t 0.80771297 -0.442404 0.53393 0.72055399 -0.216409 0.54372299 0.810884 -0.210979 0.70905101\n\t\t 0.67285502 -0.210979 0.70905101 0.67285502 -0.409504 0.68713599 0.60012603 -0.442404\n\t\t 0.53393 0.72055399 -0.455006 0.37492499 0.80771297 -0.59810901 0.361038 0.71548402\n\t\t -0.62751299 0.207838 0.75035399 -0.74725598 0.18189301 0.63915801 -0.62751299 0.207838\n\t\t 0.75035399 -0.59810901 0.361038 0.71548402 -0.442404 0.53393 0.72055399 -0.409504\n\t\t 0.68713599 0.60012603 -0.523624 0.66672897 0.53036797 -0.523624 0.66672897 0.53036797\n\t\t -0.575378 0.51583499 0.63470799 -0.442404 0.53393 0.72055399 -0.455006 0.37492499\n\t\t 0.80771297 -0.442404 0.53393 0.72055399 -0.575378 0.51583499 0.63470799 -0.575378\n\t\t 0.51583499 0.63470799 -0.59810901 0.361038 0.71548402 -0.455006 0.37492499 0.80771297\n\t\t -0.223003 0.38624901 0.89503199 -0.229507 0.242447 0.94262701 0 0.24512701 0.969491\n\t\t 0 0.24512701 0.969491 -0.229507 0.242447 0.94262701 -0.23548301 -0.036378 0.97119802\n\t\t 0 0.24512701 0.969491 0 0.38780701 0.92174 -0.223003 0.38624901 0.89503199 -0.216409\n\t\t 0.54372299 0.810884 -0.223003 0.38624901 0.89503199 0 0.38780701 0.92174 -0.23548301\n\t\t -0.036378 0.97119802 0 -0.035248999 0.99937898 0 0.24512701 0.969491 -0.210979 0.70905101\n\t\t 0.67285502 -0.216409 0.54372299 0.810884 0 0.53997201 0.84168297 0 0.38780701 0.92174\n\t\t 0 0.53997201 0.84168297 -0.216409 0.54372299 0.810884 0 0.53997201 0.84168297 0 0.71045601\n\t\t 0.70374203 -0.210979 0.70905101 0.67285502 -0.59975702 0.75299102 -0.270733 -0.62841898\n\t\t 0.74686402 -0.21744899 -0.52325201 0.77997899 -0.34327999 -0.52325201 0.77997899\n\t\t -0.34327999 -0.38008201 0.82529098 -0.417651 -0.59975702 0.75299102 -0.270733 -0.52325201\n\t\t 0.77997899 -0.34327999 -0.62841898 0.74686402 -0.21744899 -0.68250102 0.72449499\n\t\t -0.096441001 -0.68250102 0.72449499 -0.096441001 -0.56627899 0.787175 -0.244304 -0.52325201\n\t\t 0.77997899 -0.34327999 -0.56627899 0.787175 -0.244304 -0.68250102 0.72449499 -0.096441001\n\t\t -0.67407298 0.73865002 0.0046689999 -0.67407298 0.73865002 0.0046689999 -0.54544401\n\t\t 0.832174 -0.099890001 -0.56627899 0.787175 -0.244304 -0.68250102 0.72449499 -0.096441001\n\t\t -0.62841898 0.74686402 -0.21744899 -0.68436402 0.71460903 -0.14484499 -0.68436402\n\t\t 0.71460903 -0.14484499 -0.62841898 0.74686402 -0.21744899 -0.59975702 0.75299102\n\t\t -0.270733 -0.68436402 0.71460903 -0.14484499 -0.71356201 0.69998097 -0.029268 -0.68250102\n\t\t 0.72449499 -0.096441001 -0.67407298 0.73865002 0.0046689999 -0.68250102 0.72449499\n\t\t -0.096441001 -0.71356201 0.69998097 -0.029268 -0.59975702 0.75299102 -0.270733 -0.59823602\n\t\t 0.78882802 -0.140937 -0.68436402 0.71460903 -0.14484499 -0.450008 0.891195 -0.057131998\n\t\t -0.54544401 0.832174 -0.099890001 -0.67407298 0.73865002 0.0046689999 -0.67407298\n\t\t 0.73865002 0.0046689999 -0.64245701 0.76059502 0.093510002 -0.450008 0.891195 -0.057131998\n\t\t -0.64245701 0.76059502 0.093510002 -0.67407298 0.73865002 0.0046689999 -0.68619198\n\t\t 0.72504199 0.05878 -0.71356201 0.69998097 -0.029268 -0.68619198 0.72504199 0.05878\n\t\t -0.67407298 0.73865002 0.0046689999 -0.68619198 0.72504199 0.05878 -0.78675801 0.57742602\n\t\t 0.218152 -0.64245701 0.76059502 0.093510002 -0.64245701 0.76059502 0.093510002;\n\tsetAttr \".n[33034:33199]\" -type \"float3\"  -0.78675801 0.57742602 0.218152 -0.73414201\n\t\t 0.59692699 0.323596 -0.73414201 0.59692699 0.323596 -0.61251599 0.77148902 0.17212699\n\t\t -0.64245701 0.76059502 0.093510002 -0.450008 0.891195 -0.057131998 -0.64245701 0.76059502\n\t\t 0.093510002 -0.61251599 0.77148902 0.17212699 -0.61251599 0.77148902 0.17212699 -0.63858598\n\t\t 0.75935 0.124885 -0.450008 0.891195 -0.057131998 -0.63858598 0.75935 0.124885 -0.61251599\n\t\t 0.77148902 0.17212699 -0.51944 0.80272001 0.29295501 -0.51944 0.80272001 0.29295501\n\t\t -0.61251599 0.77148902 0.17212699 -0.73414201 0.59692699 0.323596 -0.51944 0.80272001\n\t\t 0.29295501 -0.57784802 0.78275299 0.23106 -0.63858598 0.75935 0.124885 -0.57784802\n\t\t 0.78275299 0.23106 -0.51944 0.80272001 0.29295501 -0.49727699 0.77069598 0.398426\n\t\t -0.49727699 0.77069598 0.398426 -0.41774699 0.88331801 0.212688 -0.57784802 0.78275299\n\t\t 0.23106 -0.523624 0.66672897 0.53036797 -0.49727699 0.77069598 0.398426 -0.51944\n\t\t 0.80272001 0.29295501 -0.356859 0.81089002 0.46379799 -0.49727699 0.77069598 0.398426\n\t\t -0.523624 0.66672897 0.53036797 -0.523624 0.66672897 0.53036797 -0.409504 0.68713599\n\t\t 0.60012603 -0.356859 0.81089002 0.46379799 -0.356859 0.81089002 0.46379799 -0.409504\n\t\t 0.68713599 0.60012603 -0.210979 0.70905101 0.67285502 -0.210979 0.70905101 0.67285502\n\t\t -0.177743 0.83295703 0.52401298 -0.356859 0.81089002 0.46379799 -0.29887301 0.915021\n\t\t 0.27094799 -0.356859 0.81089002 0.46379799 -0.177743 0.83295703 0.52401298 -0.29887301\n\t\t 0.915021 0.27094799 -0.41774699 0.88331801 0.212688 -0.49727699 0.77069598 0.398426\n\t\t -0.49727699 0.77069598 0.398426 -0.356859 0.81089002 0.46379799 -0.29887301 0.915021\n\t\t 0.27094799 -0.177743 0.83295703 0.52401298 -0.149911 0.93324602 0.326464 -0.29887301\n\t\t 0.915021 0.27094799 -0.51944 0.80272001 0.29295501 -0.60425198 0.65790498 0.449489\n\t\t -0.523624 0.66672897 0.53036797 -0.73414201 0.59692699 0.323596 -0.60425198 0.65790498\n\t\t 0.449489 -0.51944 0.80272001 0.29295501 -0.177743 0.83295703 0.52401298 -0.210979\n\t\t 0.70905101 0.67285502 0 0.71045601 0.70374203 0 0.71045601 0.70374203 0 0.84508097\n\t\t 0.53463799 -0.177743 0.83295703 0.52401298 -0.149911 0.93324602 0.326464 -0.177743\n\t\t 0.83295703 0.52401298 0 0.84508097 0.53463799 0 0.84508097 0.53463799 0 0.94475502\n\t\t 0.327777 -0.149911 0.93324602 0.326464 -0.98207599 -0.18763199 0.017914999 -0.97947299\n\t\t -0.200693 0.018829999 -0.985865 -0.16672701 0.016511001 -0.985865 -0.16672701 0.016511001\n\t\t -0.98800898 -0.153605 0.015596 -0.98207599 -0.18763199 0.017914999 -0.207929 -0.60355401\n\t\t -0.769732 -0.217297 -0.59237999 -0.775801 -0.022919999 -0.692572 -0.720985 -0.022919999\n\t\t -0.692572 -0.720985 -0.0054629999 -0.677953 -0.73508501 -0.207929 -0.60355401 -0.769732\n\t\t -0.0054629999 -0.677953 -0.73508501 -0.022919999 -0.692572 -0.720985 -0.014222 -0.435177\n\t\t -0.90023297 -0.014222 -0.435177 -0.90023297 -0.01352 -0.258165 -0.96600598 -0.0054629999\n\t\t -0.677953 -0.73508501 -0.01352 -0.258165 -0.96600598 -0.014222 -0.435177 -0.90023297\n\t\t 0.0050050002 -0.115544 -0.99329001 0.0050050002 -0.115544 -0.99329001 0.0063479999\n\t\t -0.109532 -0.993963 -0.01352 -0.258165 -0.96600598 0.0063479999 -0.109532 -0.993963\n\t\t 0.0050050002 -0.115544 -0.99329001 0.0080880001 -0.080233999 -0.99674302 0.0080880001\n\t\t -0.080233999 -0.99674302 0.0083320001 -0.077 -0.99699599 0.0063479999 -0.109532 -0.993963\n\t\t 0.0083320001 -0.077 -0.99699599 0.0080880001 -0.080233999 -0.99674302 0.010041 -0.051150002\n\t\t -0.99864101 0.010041 -0.051150002 -0.99864101 0.010254 -0.048859999 -0.99875301 0.0083320001\n\t\t -0.077 -0.99699599 0.010254 -0.048859999 -0.99875301 0.010041 -0.051150002 -0.99864101\n\t\t 0.013154 0.145881 -0.98921502 0.013154 0.145881 -0.98921502 0.01291 0.112037 -0.99361998\n\t\t 0.010254 -0.048859999 -0.99875301 0.01291 0.112037 -0.99361998 0.013154 0.145881\n\t\t -0.98921502 0.011506 0.30574101 -0.95204502 0.011506 0.30574101 -0.95204502 0.011506\n\t\t 0.30088499 -0.95359099 0.01291 0.112037 -0.99361998 0.0048219999 0.31452999 -0.94923502\n\t\t 0.011506 0.30088499 -0.95359099 0.011506 0.30574101 -0.95204502 0.011506 0.30574101\n\t\t -0.95204502 0.0047909999 0.31983799 -0.94746 0.0048219999 0.31452999 -0.94923502\n\t\t 0.0048219999 0.31452999 -0.94923502 0.0047909999 0.31983799 -0.94746 0.00054899999\n\t\t 0.32225499 -0.94665301 0.00054899999 0.32225499 -0.94665301 0 0.32185301 -0.94678998\n\t\t 0.0048219999 0.31452999 -0.94923502 -0.01233 -0.31575501 0.94876099 -0.013031 -0.31376401\n\t\t 0.94941199 -0.0090330001 -0.32157499 0.946841 -0.0090330001 -0.32157499 0.946841\n\t\t -0.0088809999 -0.32152101 0.94686103 -0.01233 -0.31575501 0.94876099 -0.013031 -0.31376401\n\t\t 0.94941199 -0.01233 -0.31575501 0.94876099 -0.014924 -0.30052099 0.953659 -0.014924\n\t\t -0.30052099 0.953659 -0.015076 -0.29658601 0.95488697 -0.013031 -0.31376401 0.94941199\n\t\t -0.015076 -0.29658601 0.95488697 -0.014924 -0.30052099 0.953659 -0.013489 -0.14383499\n\t\t 0.98951 -0.013489 -0.14383499 0.98951 -0.013093 -0.110693 0.99376798 -0.015076 -0.29658601\n\t\t 0.95488697 -0.013093 -0.110693 0.99376798 -0.013489 -0.14383499 0.98951 -0.010346\n\t\t 0.048037 0.99879199 -0.010346 0.048037 0.99879199 -0.010163 0.045839999 0.99889702\n\t\t -0.013093 -0.110693 0.99376798 -0.010163 0.045839999 0.99889702 -0.010346 0.048037\n\t\t 0.99879199 -0.0084229996 0.077457003 0.99695998 -0.0084229996 0.077457003 0.99695998\n\t\t -0.0082400003 0.074192002 0.99721003 -0.010163 0.045839999 0.99889702 -0.0082400003\n\t\t 0.074192002 0.99721003 -0.0084229996 0.077457003 0.99695998 -0.0063789999 0.115606\n\t\t 0.99327499 -0.0063789999 0.115606 0.99327499 -0.0051879999 0.108373 0.99409699;\n\tsetAttr \".n[33200:33365]\" -type \"float3\"  -0.0082400003 0.074192002 0.99721003\n\t\t -0.0051879999 0.108373 0.99409699 -0.0063789999 0.115606 0.99327499 0.015168 0.42323601\n\t\t 0.90589201 0.015168 0.42323601 0.90589201 0.013306 0.25266901 0.96746099 -0.0051879999\n\t\t 0.108373 0.99409699 0.013306 0.25266901 0.96746099 0.015168 0.42323601 0.90589201\n\t\t 0.02878 0.69895798 0.71458399 0.02878 0.69895798 0.71458399 0.0096739996 0.682284\n\t\t 0.73102301 0.013306 0.25266901 0.96746099 0.0096739996 0.682284 0.73102301 0.02878\n\t\t 0.69895798 0.71458399 0.183146 0.61069101 0.77039802 0.183146 0.61069101 0.77039802\n\t\t 0.187114 0.60470998 0.77415401 0.0096739996 0.682284 0.73102301 -0.59267801 0.68991101\n\t\t -0.415638 -0.58685398 0.67053801 -0.45385101 -0.49551201 0.606022 -0.62225801 -0.49551201\n\t\t 0.606022 -0.62225801 -0.52053601 0.703071 -0.48449299 -0.59267801 0.68991101 -0.415638\n\t\t -0.76064003 0.450317 -0.46759099 -0.49551201 0.606022 -0.62225801 -0.58685398 0.67053801\n\t\t -0.45385101 -0.58685398 0.67053801 -0.45385101 -0.40041599 0.78221399 -0.477294 -0.76064003\n\t\t 0.450317 -0.46759099 -0.89873999 -0.068668999 -0.433072 -0.98281598 0.091008998 -0.160593\n\t\t -0.97956902 0.114995 -0.164986 -0.97956902 0.114995 -0.164986 -0.919833 0.048769001\n\t\t -0.38926601 -0.89873999 -0.068668999 -0.433072 -0.919833 0.048769001 -0.38926601\n\t\t -0.97956902 0.114995 -0.164986 -0.97129703 0.163215 -0.173043 -0.97129703 0.163215\n\t\t -0.173043 -0.91740203 0.068880998 -0.391956 -0.919833 0.048769001 -0.38926601 -0.91740203\n\t\t 0.068880998 -0.391956 -0.97129703 0.163215 -0.173043 -0.95994502 0.21918701 -0.174538\n\t\t -0.95994502 0.21918701 -0.174538 -0.96457398 0.20475 -0.166357 -0.91740203 0.068880998\n\t\t -0.391956 -0.96457398 0.20475 -0.166357 -0.95994502 0.21918701 -0.174538 -0.95036298\n\t\t 0.25501701 -0.178262 -0.95036298 0.25501701 -0.178262 -0.94780302 0.26118299 -0.182901\n\t\t -0.96457398 0.20475 -0.166357 -0.420856 -0.58172202 0.69604599 -0.22340199 -0.55398899\n\t\t 0.80198997 -0.22379801 -0.467861 0.85499799 -0.22379801 -0.467861 0.85499799 -0.441459\n\t\t -0.479426 0.75846201 -0.420856 -0.58172202 0.69604599 -0.441459 -0.479426 0.75846201\n\t\t -0.22379801 -0.467861 0.85499799 -0.226454 -0.38185799 0.89604902 -0.226454 -0.38185799\n\t\t 0.89604902 -0.456049 -0.389456 0.80021501 -0.441459 -0.479426 0.75846201 -0.456049\n\t\t -0.389456 0.80021501 -0.226454 -0.38185799 0.89604902 -0.229534 -0.28980899 0.92915303\n\t\t -0.229534 -0.28980899 0.92915303 -0.47087699 -0.29044899 0.83301502 -0.456049 -0.389456\n\t\t 0.80021501 -0.47087699 -0.29044899 0.83301502 -0.229534 -0.28980899 0.92915303 -0.23548301\n\t\t -0.036378 0.97119802 -0.23548301 -0.036378 0.97119802 -0.48769701 -0.040224001 0.87208599\n\t\t -0.47087699 -0.29044899 0.83301502 -0.57202601 -0.47369301 0.66962802 -0.441459 -0.479426\n\t\t 0.75846201 -0.456049 -0.389456 0.80021501 -0.456049 -0.389456 0.80021501 -0.59888101\n\t\t -0.38091201 0.70444798 -0.57202601 -0.47369301 0.66962802 -0.441459 -0.479426 0.75846201\n\t\t -0.57202601 -0.47369301 0.66962802 -0.52960098 -0.59189099 0.60760802 -0.52960098\n\t\t -0.59189099 0.60760802 -0.420856 -0.58172202 0.69604599 -0.441459 -0.479426 0.75846201\n\t\t -0.52960098 -0.59189099 0.60760802 -0.57202601 -0.47369301 0.66962802 -0.67333698\n\t\t -0.46254399 0.57677603 -0.67333698 -0.46254399 0.57677603 -0.57202601 -0.47369301\n\t\t 0.66962802 -0.59888101 -0.38091201 0.70444798 -0.67333698 -0.46254399 0.57677603\n\t\t -0.590918 -0.58804899 0.55228102 -0.52960098 -0.59189099 0.60760802 -0.59888101 -0.38091201\n\t\t 0.70444798 -0.70651698 -0.36217001 0.60800201 -0.67333698 -0.46254399 0.57677603\n\t\t -0.733904 -0.25169501 0.63090003 -0.70651698 -0.36217001 0.60800201 -0.59888101 -0.38091201\n\t\t 0.70444798 -0.59888101 -0.38091201 0.70444798 -0.62320298 -0.277237 0.73127198 -0.733904\n\t\t -0.25169501 0.63090003 -0.456049 -0.389456 0.80021501 -0.47087699 -0.29044899 0.83301502\n\t\t -0.62320298 -0.277237 0.73127198 -0.62320298 -0.277237 0.73127198 -0.59888101 -0.38091201\n\t\t 0.70444798 -0.456049 -0.389456 0.80021501 -0.75626099 -0.041476 0.65295398 -0.733904\n\t\t -0.25169501 0.63090003 -0.62320298 -0.277237 0.73127198 -0.733904 -0.25169501 0.63090003\n\t\t -0.75626099 -0.041476 0.65295398 -0.876508 -0.035250001 0.48009601 -0.876508 -0.035250001\n\t\t 0.48009601 -0.85811597 -0.22047301 0.46371299 -0.733904 -0.25169501 0.63090003 -0.70651698\n\t\t -0.36217001 0.60800201 -0.733904 -0.25169501 0.63090003 -0.85811597 -0.22047301 0.46371299\n\t\t -0.62320298 -0.277237 0.73127198 -0.64578402 -0.043032002 0.76230597 -0.75626099\n\t\t -0.041476 0.65295398 -0.64578402 -0.043032002 0.76230597 -0.62320298 -0.277237 0.73127198\n\t\t -0.47087699 -0.29044899 0.83301502 -0.47087699 -0.29044899 0.83301502 -0.48769701\n\t\t -0.040224001 0.87208599 -0.64578402 -0.043032002 0.76230597 -0.85811597 -0.22047301\n\t\t 0.46371299 -0.81545103 -0.32192001 0.481049 -0.70651698 -0.36217001 0.60800201 -0.67333698\n\t\t -0.46254399 0.57677603 -0.70651698 -0.36217001 0.60800201 -0.81545103 -0.32192001\n\t\t 0.481049 -0.93183398 -0.158455 0.32646099 -0.85811597 -0.22047301 0.46371299 -0.876508\n\t\t -0.035250001 0.48009601 -0.85811597 -0.22047301 0.46371299 -0.93183398 -0.158455\n\t\t 0.32646099 -0.81545103 -0.32192001 0.481049 -0.876508 -0.035250001 0.48009601 -0.941203\n\t\t -0.029359 0.33656299 -0.93183398 -0.158455 0.32646099 -0.95321602 -0.148295 0.263414\n\t\t -0.93183398 -0.158455 0.32646099 -0.941203 -0.029359 0.33656299 -0.941203 -0.029359\n\t\t 0.33656299 -0.96142298 -0.029238001 0.27351499 -0.95321602 -0.148295 0.263414 -0.95321602\n\t\t -0.148295 0.263414 -0.96142298 -0.029238001 0.27351499 -0.97537202 -0.041506998 0.216627\n\t\t -0.97537202 -0.041506998 0.216627 -0.96141303 -0.204356 0.184183 -0.95321602 -0.148295\n\t\t 0.263414 -0.96141303 -0.204356 0.184183 -0.97537202 -0.041506998 0.216627 -0.97966701\n\t\t -0.117225 0.16282;\n\tsetAttr \".n[33366:33531]\" -type \"float3\"  -0.97966701 -0.117225 0.16282 -0.92445099\n\t\t -0.36046001 0.124334 -0.96141303 -0.204356 0.184183 -0.94897002 -0.307331 0.070744\n\t\t -0.96141303 -0.204356 0.184183 -0.92445099 -0.36046001 0.124334 -0.92445099 -0.36046001\n\t\t 0.124334 -0.89319003 -0.44365001 0.073397003 -0.94897002 -0.307331 0.070744 -0.89168203\n\t\t -0.45266199 -0.00042699999 -0.94897002 -0.307331 0.070744 -0.89319003 -0.44365001\n\t\t 0.073397003 -0.89168203 -0.45266199 -0.00042699999 -0.89319003 -0.44365001 0.073397003\n\t\t -0.88224602 -0.470788 0.00073199999 -0.867423 -0.497192 -0.019409999 -0.89168203\n\t\t -0.45266199 -0.00042699999 -0.88224602 -0.470788 0.00073199999 -0.867423 -0.497192\n\t\t -0.019409999 -0.84452099 -0.53301501 -0.051759999 -0.89168203 -0.45266199 -0.00042699999\n\t\t -0.88740802 -0.46077999 -0.013764 -0.867423 -0.497192 -0.019409999 -0.88224602 -0.470788\n\t\t 0.00073199999 -0.88740802 -0.46077999 -0.013764 -0.87757099 -0.47481301 0.066500999\n\t\t -0.867423 -0.497192 -0.019409999 -0.87757099 -0.47481301 0.066500999 -0.88205397\n\t\t -0.46138299 0.095431998 -0.867423 -0.497192 -0.019409999 -0.87757099 -0.47481301\n\t\t 0.066500999 -0.88826197 -0.44622201 0.108984 -0.88205397 -0.46138299 0.095431998\n\t\t -0.89168203 -0.45266199 -0.00042699999 -0.97763199 -0.207862 -0.032074999 -0.94897002\n\t\t -0.307331 0.070744 -0.97763199 -0.207862 -0.032074999 -0.94841897 -0.31502101 0.035555001\n\t\t -0.94897002 -0.307331 0.070744 -0.92445099 -0.36046001 0.124334 -0.97966701 -0.117225\n\t\t 0.16282 -0.97312802 -0.180154 0.143409 -0.88826197 -0.44622201 0.108984 -0.97312802\n\t\t -0.180154 0.143409 -0.88205397 -0.46138299 0.095431998 -0.89227599 -0.439165 0.104771\n\t\t -0.92445099 -0.36046001 0.124334 -0.97312802 -0.180154 0.143409 -0.88826197 -0.44622201\n\t\t 0.108984 -0.89227599 -0.439165 0.104771 -0.97312802 -0.180154 0.143409 -0.86656499\n\t\t -0.44921401 0.21742 -0.89319003 -0.44365001 0.073397003 -0.92445099 -0.36046001 0.124334\n\t\t -0.92445099 -0.36046001 0.124334 -0.912866 -0.36974299 0.173106 -0.86656499 -0.44921401\n\t\t 0.21742 -0.186836 0.86670297 -0.46251199 -0.000244 0.87135297 -0.490657 0.026124001\n\t\t 0.87774098 -0.47842401 0.026124001 0.87774098 -0.47842401 -0.405485 0.817469 -0.40905499\n\t\t -0.186836 0.86670297 -0.46251199 -0.405485 0.817469 -0.40905499 0.026124001 0.87774098\n\t\t -0.47842401 0.031677999 0.880256 -0.47343999 0.031677999 0.880256 -0.47343999 -0.38951701\n\t\t 0.81437403 -0.430199 -0.405485 0.817469 -0.40905499 0.237473 0.85567701 -0.45980799\n\t\t 0.031677999 0.880256 -0.47343999 0.026124001 0.87774098 -0.47842401 0.026124001 0.87774098\n\t\t -0.47842401 0.234448 0.84959298 -0.47246799 0.237473 0.85567701 -0.45980799 0.234448\n\t\t 0.84959298 -0.47246799 0.026124001 0.87774098 -0.47842401 -0.000244 0.87135297 -0.490657\n\t\t -0.000244 0.87135297 -0.490657 0.22407401 0.84142298 -0.49173 0.234448 0.84959298\n\t\t -0.47246799 -0.36970901 0.81312197 -0.449608 -0.38951701 0.81437403 -0.430199 0.031677999\n\t\t 0.880256 -0.47343999 0.031677999 0.880256 -0.47343999 0.037447002 0.877882 -0.47740999\n\t\t -0.36970901 0.81312197 -0.449608 0.037447002 0.877882 -0.47740999 0.031677999 0.880256\n\t\t -0.47343999 0.237473 0.85567701 -0.45980799 -0.36970901 0.81312197 -0.449608 0.037447002\n\t\t 0.877882 -0.47740999 0.03348 0.87044799 -0.49112099 0.03348 0.87044799 -0.49112099\n\t\t -0.36455601 0.80077201 -0.47525099 -0.36970901 0.81312197 -0.449608 -0.36455601 0.80077201\n\t\t -0.47525099 0.03348 0.87044799 -0.49112099 0.044893 0.85327703 -0.51952302 0.044893\n\t\t 0.85327703 -0.51952302 -0.400473 0.753824 -0.52093202 -0.36455601 0.80077201 -0.47525099\n\t\t -0.400473 0.753824 -0.52093202 0.044893 0.85327703 -0.51952302 0.044558 0.84379202\n\t\t -0.53481698 0.044558 0.84379202 -0.53481698 -0.17240199 0.80957901 -0.56112301 -0.400473\n\t\t 0.753824 -0.52093202 0.044558 0.84379202 -0.53481698 0.044893 0.85327703 -0.51952302\n\t\t 0.25477701 0.83614397 -0.48574901 0.25477701 0.83614397 -0.48574901 0.25786 0.83339798\n\t\t -0.488832 0.044558 0.84379202 -0.53481698 -0.17240199 0.80957901 -0.56112301 0.044558\n\t\t 0.84379202 -0.53481698 0.069339998 0.84496498 -0.53030801 0.069339998 0.84496498\n\t\t -0.53030801 0.044558 0.84379202 -0.53481698 0.25786 0.83339798 -0.488832 0.069339998\n\t\t 0.84496498 -0.53030801 -0.179911 0.80146301 -0.570342 -0.17240199 0.80957901 -0.56112301\n\t\t 0.25786 0.83339798 -0.488832 0.25855801 0.835127 -0.48550001 0.069339998 0.84496498\n\t\t -0.53030801 0.044893 0.85327703 -0.51952302 0.03348 0.87044799 -0.49112099 0.231552\n\t\t 0.85262603 -0.46841499 0.231552 0.85262603 -0.46841499 0.25477701 0.83614397 -0.48574901\n\t\t 0.044893 0.85327703 -0.51952302 0.23335201 0.85762799 -0.45828101 0.231552 0.85262603\n\t\t -0.46841499 0.03348 0.87044799 -0.49112099 0.03348 0.87044799 -0.49112099 0.037447002\n\t\t 0.877882 -0.47740999 0.23335201 0.85762799 -0.45828101 0.237473 0.85567701 -0.45980799\n\t\t 0.23335201 0.85762799 -0.45828101 0.037447002 0.877882 -0.47740999 0.88820398 0.43599999\n\t\t -0.144906 0.76189297 0.59269202 -0.26121801 0.75855398 0.59307998 -0.269912 0.75855398\n\t\t 0.59307998 -0.269912 0.88563102 0.436575 -0.15830199 0.88820398 0.43599999 -0.144906\n\t\t 0.88563102 0.436575 -0.15830199 0.75855398 0.59307998 -0.269912 0.75289702 0.59529901\n\t\t -0.28064999 0.96656001 0.25587001 -0.017121 0.88820398 0.43599999 -0.144906 0.88563102\n\t\t 0.436575 -0.15830199 0.88563102 0.436575 -0.15830199 0.96707201 0.253068 -0.026978999\n\t\t 0.96656001 0.25587001 -0.017121 0.75289702 0.59529901 -0.28064999 0.87539297 0.445189\n\t\t -0.18839701 0.88563102 0.436575 -0.15830199 0.96707201 0.253068 -0.026978999 0.88563102\n\t\t 0.436575 -0.15830199 0.87539297 0.445189 -0.18839701 0.87539297 0.445189 -0.18839701\n\t\t 0.75289702 0.59529901 -0.28064999 0.75220501 0.59399498 -0.28523201 0.87539297 0.445189\n\t\t -0.18839701;\n\tsetAttr \".n[33532:33697]\" -type \"float3\"  0.959714 0.26905999 -0.080968 0.96707201\n\t\t 0.253068 -0.026978999 0.75220501 0.59399498 -0.28523201 0.87226999 0.446832 -0.19871099\n\t\t 0.87539297 0.445189 -0.18839701 0.87226999 0.446832 -0.19871099 0.75220501 0.59399498\n\t\t -0.28523201 0.75064301 0.58669603 -0.303846 0.87539297 0.445189 -0.18839701 0.87226999\n\t\t 0.446832 -0.19871099 0.95568502 0.27629301 -0.10163 0.95568502 0.27629301 -0.10163\n\t\t 0.959714 0.26905999 -0.080968 0.87539297 0.445189 -0.18839701 0.75064301 0.58669603\n\t\t -0.303846 0.86655802 0.44725701 -0.22144599 0.87226999 0.446832 -0.19871099 0.869726\n\t\t 0.44551501 -0.21235 0.86655802 0.44725701 -0.22144599 0.75064301 0.58669603 -0.303846\n\t\t 0.75064301 0.58669603 -0.303846 0.74782199 0.57892603 -0.32497299 0.869726 0.44551501\n\t\t -0.21235 0.87226999 0.446832 -0.19871099 0.86655802 0.44725701 -0.22144599 0.95025498\n\t\t 0.284747 -0.126229 0.95025498 0.284747 -0.126229 0.95568502 0.27629301 -0.10163 0.87226999\n\t\t 0.446832 -0.19871099 0.95025498 0.284747 -0.126229 0.86655802 0.44725701 -0.22144599\n\t\t 0.869726 0.44551501 -0.21235 0.869726 0.44551501 -0.21235 0.94499397 0.289505 -0.152229\n\t\t 0.95025498 0.284747 -0.126229 0.88820398 0.43599999 -0.144906 0.96656001 0.25587001\n\t\t -0.017121 0.96632898 0.25660601 -0.019013001 0.96632898 0.25660601 -0.019013001 0.91281801\n\t\t 0.39213601 -0.113988 0.88820398 0.43599999 -0.144906 0.76189297 0.59269202 -0.26121801\n\t\t 0.88820398 0.43599999 -0.144906 0.91281801 0.39213601 -0.113988 0.91281801 0.39213601\n\t\t -0.113988 0.76376498 0.59270698 -0.25565699 0.76189297 0.59269202 -0.26121801 0.869726\n\t\t 0.44551501 -0.21235 0.74782199 0.57892603 -0.32497299 0.78401399 0.60810101 -0.124642\n\t\t 0.78401399 0.60810101 -0.124642 0.880822 0.45055899 -0.14542501 0.869726 0.44551501\n\t\t -0.21235 0.94499397 0.289505 -0.152229 0.869726 0.44551501 -0.21235 0.880822 0.45055899\n\t\t -0.14542501 0.880822 0.45055899 -0.14542501 0.93544 0.30561799 -0.17762101 0.94499397\n\t\t 0.289505 -0.152229 0.92016101 0.35155401 -0.172374 0.93544 0.30561799 -0.17762101\n\t\t 0.880822 0.45055899 -0.14542501 0.880822 0.45055899 -0.14542501 0.84155202 0.529194\n\t\t -0.108372 0.92016101 0.35155401 -0.172374 0.84155202 0.529194 -0.108372 0.880822\n\t\t 0.45055899 -0.14542501 0.78401399 0.60810101 -0.124642 0.78401399 0.60810101 -0.124642\n\t\t 0.72052503 0.69339401 0.0069280001 0.84155202 0.529194 -0.108372 0.85646898 0.45986801\n\t\t -0.23448101 0.92016101 0.35155401 -0.172374 0.84155202 0.529194 -0.108372 0.84155202\n\t\t 0.529194 -0.108372 0.71900201 0.64740503 -0.25279099 0.85646898 0.45986801 -0.23448101\n\t\t 0.71900201 0.64740503 -0.25279099 0.84155202 0.529194 -0.108372 0.72052503 0.69339401\n\t\t 0.0069280001 0.72052503 0.69339401 0.0069280001 0.31709599 0.93783098 -0.14115199\n\t\t 0.71900201 0.64740503 -0.25279099 0.118537 0.98904097 0.088018 0.106053 0.98880899\n\t\t 0.104924 0.074983999 0.99280798 0.093326002 0.074983999 0.99280798 0.093326002 0.062716998\n\t\t 0.99528998 0.073917001 0.118537 0.98904097 0.088018 0.062716998 0.99528998 0.073917001\n\t\t 0.074983999 0.99280798 0.093326002 0.055147 0.99592501 -0.071353003 0.055147 0.99592501\n\t\t -0.071353003 0.31709599 0.93783098 -0.14115199 0.062716998 0.99528998 0.073917001\n\t\t -0.032166999 0.99061 -0.132879 0.055147 0.99592501 -0.071353003 0.074983999 0.99280798\n\t\t 0.093326002 0.074983999 0.99280798 0.093326002 0.052370001 0.99622601 0.069216996\n\t\t -0.032166999 0.99061 -0.132879 0.052370001 0.99622601 0.069216996 0.074983999 0.99280798\n\t\t 0.093326002 0.106053 0.98880899 0.104924 0.052370001 0.99622601 0.069216996 0.106053\n\t\t 0.98880899 0.104924 0.020843999 0.997033 0.074101001 -0.89676601 0.42729399 -0.115026\n\t\t -0.63757902 0.71247298 -0.293046 -0.60320997 0.76853198 -0.21329799 -0.80679899 0.491752\n\t\t -0.327499 -0.63238901 0.65286601 -0.416953 -0.69593602 0.559636 -0.44997901 -0.69593602\n\t\t 0.559636 -0.44997901 -0.85944903 0.36345199 -0.35951501 -0.80679899 0.491752 -0.327499\n\t\t -0.890643 0.38310799 -0.24491701 -0.80679899 0.491752 -0.327499 -0.85944903 0.36345199\n\t\t -0.35951501 -0.85944903 0.36345199 -0.35951501 -0.76064003 0.450317 -0.46759099 -0.890643\n\t\t 0.38310799 -0.24491701 -0.85944903 0.36345199 -0.35951501 -0.69593602 0.559636 -0.44997901\n\t\t -0.70204598 0.51486802 -0.49197799 -0.70204598 0.51486802 -0.49197799 -0.87169302\n\t\t 0.29271099 -0.39302799 -0.85944903 0.36345199 -0.35951501 -0.87169302 0.29271099\n\t\t -0.39302799 -0.93556601 0.13767201 -0.325212 -0.85944903 0.36345199 -0.35951501 -0.93556601\n\t\t 0.13767201 -0.325212 -0.87848902 0.27729499 -0.389056 -0.85944903 0.36345199 -0.35951501\n\t\t -0.63238901 0.65286601 -0.416953 -0.80679899 0.491752 -0.327499 -0.802342 0.52446699\n\t\t -0.284924 -0.802342 0.52446699 -0.284924 -0.62997001 0.67858601 -0.37770101 -0.63238901\n\t\t 0.65286601 -0.416953 -0.80679899 0.491752 -0.327499 -0.890643 0.38310799 -0.24491701\n\t\t -0.88508701 0.409567 -0.221081 -0.88508701 0.409567 -0.221081 -0.802342 0.52446699\n\t\t -0.284924 -0.80679899 0.491752 -0.327499 -0.87169302 0.29271099 -0.39302799 -0.70204598\n\t\t 0.51486802 -0.49197799 -0.70915198 0.486817 -0.51001197 -0.70915198 0.486817 -0.51001197\n\t\t -0.87999499 0.249861 -0.403954 -0.87169302 0.29271099 -0.39302799 -0.93560499 0.122932\n\t\t -0.330953 -0.93556601 0.13767201 -0.325212 -0.87169302 0.29271099 -0.39302799 -0.87169302\n\t\t 0.29271099 -0.39302799 -0.87999499 0.249861 -0.403954 -0.93560499 0.122932 -0.330953\n\t\t -0.93556601 0.13767201 -0.325212 -0.93560499 0.122932 -0.330953 -0.935112 0.108221\n\t\t -0.33742201 -0.935112 0.108221 -0.33742201 -0.93313003 0.12726501 -0.33626199 -0.93556601\n\t\t 0.13767201 -0.325212 -0.87848902 0.27729499 -0.389056 -0.93556601 0.13767201 -0.325212;\n\tsetAttr \".n[33698:33863]\" -type \"float3\"  -0.93313003 0.12726501 -0.33626199 -0.93313003\n\t\t 0.12726501 -0.33626199 -0.92957401 0.15717199 -0.33344901 -0.87848902 0.27729499\n\t\t -0.389056 -0.95836598 0.25132599 -0.135536 -0.92957401 0.15717199 -0.33344901 -0.93313003\n\t\t 0.12726501 -0.33626199 -0.93313003 0.12726501 -0.33626199 -0.95884901 0.25736701\n\t\t -0.119879 -0.95836598 0.25132599 -0.135536 -0.802342 0.52446699 -0.284924 -0.88508701\n\t\t 0.409567 -0.221081 -0.90532702 0.394768 -0.156656 -0.90532702 0.394768 -0.156656\n\t\t -0.82607102 0.51559597 -0.227523 -0.802342 0.52446699 -0.284924 -0.82607102 0.51559597\n\t\t -0.227523 -0.90532702 0.394768 -0.156656 -0.87309998 0.47530901 -0.108527 -0.87309998\n\t\t 0.47530901 -0.108527 -0.83292103 0.52358198 -0.179176 -0.82607102 0.51559597 -0.227523\n\t\t -0.65939403 0.67413402 -0.33277899 -0.82607102 0.51559597 -0.227523 -0.83292103 0.52358198\n\t\t -0.179176 -0.802342 0.52446699 -0.284924 -0.82607102 0.51559597 -0.227523 -0.65939403\n\t\t 0.67413402 -0.33277899 -0.65939403 0.67413402 -0.33277899 -0.62997001 0.67858601\n\t\t -0.37770101 -0.802342 0.52446699 -0.284924 -0.83292103 0.52358198 -0.179176 -0.693299\n\t\t 0.66314602 -0.282087 -0.65939403 0.67413402 -0.33277899 -0.693299 0.66314602 -0.282087\n\t\t -0.83292103 0.52358198 -0.179176 -0.89676601 0.42729399 -0.115026 -0.89676601 0.42729399\n\t\t -0.115026 -0.60320997 0.76853198 -0.21329799 -0.693299 0.66314602 -0.282087 -0.79050303\n\t\t 0.58981001 -0.165016 -0.89676601 0.42729399 -0.115026 -0.83292103 0.52358198 -0.179176\n\t\t -0.83292103 0.52358198 -0.179176 -0.87309998 0.47530901 -0.108527 -0.79050303 0.58981001\n\t\t -0.165016 -0.693299 0.66314602 -0.282087 -0.60320997 0.76853198 -0.21329799 -0.63757902\n\t\t 0.71247298 -0.293046 -0.63757902 0.71247298 -0.293046 -0.405485 0.817469 -0.40905499\n\t\t -0.693299 0.66314602 -0.282087 -0.65939403 0.67413402 -0.33277899 -0.693299 0.66314602\n\t\t -0.282087 -0.405485 0.817469 -0.40905499 -0.405485 0.817469 -0.40905499 -0.38951701\n\t\t 0.81437403 -0.430199 -0.65939403 0.67413402 -0.33277899 -0.65939403 0.67413402 -0.33277899\n\t\t -0.38951701 0.81437403 -0.430199 -0.36970901 0.81312197 -0.449608 -0.36970901 0.81312197\n\t\t -0.449608 -0.62997001 0.67858601 -0.37770101 -0.65939403 0.67413402 -0.33277899 -0.63238901\n\t\t 0.65286601 -0.416953 -0.62997001 0.67858601 -0.37770101 -0.36970901 0.81312197 -0.449608\n\t\t -0.36970901 0.81312197 -0.449608 -0.36455601 0.80077201 -0.47525099 -0.63238901 0.65286601\n\t\t -0.416953 -0.63238901 0.65286601 -0.416953 -0.36455601 0.80077201 -0.47525099 -0.400473\n\t\t 0.753824 -0.52093202 -0.400473 0.753824 -0.52093202 -0.69593602 0.559636 -0.44997901\n\t\t -0.63238901 0.65286601 -0.416953 -0.69593602 0.559636 -0.44997901 -0.400473 0.753824\n\t\t -0.52093202 -0.61521399 0.59598601 -0.51605499 -0.61521399 0.59598601 -0.51605499\n\t\t -0.70204598 0.51486802 -0.49197799 -0.69593602 0.559636 -0.44997901 -0.70204598 0.51486802\n\t\t -0.49197799 -0.61521399 0.59598601 -0.51605499 -0.61871201 0.57818198 -0.53188503\n\t\t -0.61871201 0.57818198 -0.53188503 -0.70915198 0.486817 -0.51001197 -0.70204598 0.51486802\n\t\t -0.49197799 -0.87848902 0.27729499 -0.389056 -0.76064003 0.450317 -0.46759099 -0.85944903\n\t\t 0.36345199 -0.35951501 -0.18479399 0.817913 -0.54485798 0.019807 0.85542601 -0.51754701\n\t\t 0.082828999 0.85615498 -0.510037 0.082828999 0.85615498 -0.510037 -0.185406 0.81654698\n\t\t -0.54669499 -0.18479399 0.817913 -0.54485798 0.082828999 0.85615498 -0.510037 0.019807\n\t\t 0.85542601 -0.51754701 0.29255399 0.82883102 -0.47691801 0.29255399 0.82883102 -0.47691801\n\t\t 0.293625 0.82572597 -0.48162299 0.082828999 0.85615498 -0.510037 0.91533399 0.373739\n\t\t -0.149941 0.78686899 0.56286001 -0.253032 0.78546 0.56227702 -0.25864601 0.78546\n\t\t 0.56227702 -0.25864601 0.86536902 0.45485699 -0.210338 0.91533399 0.373739 -0.149941\n\t\t 0.91533399 0.373739 -0.149941 0.86536902 0.45485699 -0.210338 0.96589702 0.250256\n\t\t -0.066440001 0.96589702 0.250256 -0.066440001 0.96590298 0.250227 -0.066471003 0.91533399\n\t\t 0.373739 -0.149941 -0.65006 0.55896002 -0.514768 -0.65393698 0.55935699 -0.50939798\n\t\t -0.73531401 0.46512201 -0.49292499 -0.73531401 0.46512201 -0.49292499 -0.72434098\n\t\t 0.47814301 -0.49669901 -0.65006 0.55896002 -0.514768 -0.86645198 0.27608001 -0.41598201\n\t\t -0.72434098 0.47814301 -0.49669901 -0.73531401 0.46512201 -0.49292499 -0.73531401\n\t\t 0.46512201 -0.49292499 -0.88977802 0.23102701 -0.39360201 -0.86645198 0.27608001\n\t\t -0.41598201 -0.86645198 0.27608001 -0.41598201 -0.88977802 0.23102701 -0.39360201\n\t\t -0.940929 0.139807 -0.30839401 -0.940929 0.139807 -0.30839401 -0.94072902 0.137825\n\t\t -0.309894 -0.86645198 0.27608001 -0.41598201 -0.95811802 0.188394 -0.215679 -0.94072902\n\t\t 0.137825 -0.309894 -0.940929 0.139807 -0.30839401 -0.940929 0.139807 -0.30839401\n\t\t -0.95903403 0.19224 -0.20807999 -0.95811802 0.188394 -0.215679 -0.105353 -0.98773098\n\t\t 0.115272 -0.104495 -0.98810101 0.112858 -0.104773 -0.98800498 0.113441 -0.104773\n\t\t -0.98800498 0.113441 -0.105564 -0.98771298 0.115239 -0.105353 -0.98773098 0.115272\n\t\t -0.105353 -0.98773098 0.115272 -0.105564 -0.98771298 0.115239 -0.104955 -0.98753703\n\t\t 0.117285 -0.104955 -0.98753703 0.117285 -0.104742 -0.98747897 0.117957 -0.105353\n\t\t -0.98773098 0.115272 -0.17856801 0.88041699 -0.439293 0.010926 0.90028101 -0.43517101\n\t\t 0.070620999 0.83064401 -0.55230802 0.070620999 0.83064401 -0.55230802 -0.14512099\n\t\t 0.82445598 -0.54700297 -0.17856801 0.88041699 -0.439293 0.070620999 0.83064401 -0.55230802\n\t\t 0.010926 0.90028101 -0.43517101 0.29316601 0.86570501 -0.40572101 0.29316601 0.86570501\n\t\t -0.40572101 0.31169 0.77176303 -0.55428499 0.070620999 0.83064401 -0.55230802 0.77121598\n\t\t 0.58819401 -0.24342 0.78773701 0.58792698 -0.18388 0.78199399 0.58828902 -0.20591301;\n\tsetAttr \".n[33864:34029]\" -type \"float3\"  0.78199399 0.58828902 -0.20591301 0.76239198\n\t\t 0.58754998 -0.271191 0.77121598 0.58819401 -0.24342 0.96667999 0.24286801 -0.080904998\n\t\t 0.97086501 0.239512 -0.0074160001 0.97032303 0.24045999 -0.025544001 0.97032303 0.24045999\n\t\t -0.025544001 0.96404701 0.243728 -0.105872 0.96667999 0.24286801 -0.080904998 -0.14512099\n\t\t 0.82445598 -0.54700297 0.070620999 0.83064401 -0.55230802 0.105903 0.73012 -0.67506301\n\t\t 0.105903 0.73012 -0.67506301 0.070620999 0.83064401 -0.55230802 0.31169 0.77176303\n\t\t -0.55428499 0.105903 0.73012 -0.67506301 -0.10993 0.738258 -0.66549999 -0.14512099\n\t\t 0.82445598 -0.54700297 0.31169 0.77176303 -0.55428499 0.31663799 0.670632 -0.67081499\n\t\t 0.105903 0.73012 -0.67506301 0.72996002 0.12641101 -0.67169899 0.77027899 0.42333499\n\t\t -0.476926 0.755808 0.41405401 -0.50726002 0.755808 0.41405401 -0.50726002 0.78751898\n\t\t 0.25160101 -0.56259203 0.72996002 0.12641101 -0.67169899 0.78751898 0.25160101 -0.56259203\n\t\t 0.78242397 0.042238999 -0.62131202 0.769036 -0.00048799999 -0.63920498 0.769036 -0.00048799999\n\t\t -0.63920498 0.72996002 0.12641101 -0.67169899 0.78751898 0.25160101 -0.56259203 -0.061129\n\t\t 0.086001001 -0.99441803 0.111732 0.106574 -0.98800701 0.11753 -0.025971999 -0.99273002\n\t\t 0.11753 -0.025971999 -0.99273002 0.111732 0.106574 -0.98800701 0.31269899 0.101202\n\t\t -0.94444603 0.11753 -0.025971999 -0.99273002 0.019836999 -0.025758 -0.99947101 -0.061129\n\t\t 0.086001001 -0.99441803 0.31269899 0.101202 -0.94444603 0.32027 0.097296 -0.94231701\n\t\t 0.11753 -0.025971999 -0.99273002 0.55639499 -0.0073859999 -0.83088499 0.32027 0.097296\n\t\t -0.94231701 0.31269899 0.101202 -0.94444603 0.31269899 0.101202 -0.94444603 0.72996002\n\t\t 0.12641101 -0.67169899 0.55639499 -0.0073859999 -0.83088499 0.72996002 0.12641101\n\t\t -0.67169899 0.769036 -0.00048799999 -0.63920498 0.71500802 -0.042971 -0.69779497\n\t\t 0.71500802 -0.042971 -0.69779497 0.55639499 -0.0073859999 -0.83088499 0.72996002\n\t\t 0.12641101 -0.67169899 -0.185341 -0.000397 -0.982674 -0.061129 0.086001001 -0.99441803\n\t\t 0.019836999 -0.025758 -0.99947101 -0.56063801 0.488673 -0.66849297 -0.6609 0.39412799\n\t\t -0.63865101 -0.70768398 0.47878799 -0.51956201 -0.70768398 0.47878799 -0.51956201\n\t\t -0.6609 0.39412799 -0.63865101 -0.80343503 0.17612299 -0.56874597 -0.80343503 0.17612299\n\t\t -0.56874597 -0.85962898 0.24436501 -0.44869101 -0.70768398 0.47878799 -0.51956201\n\t\t -0.70768398 0.47878799 -0.51956201 -0.85962898 0.24436501 -0.44869101 -0.89759898\n\t\t 0.300522 -0.322496 -0.89759898 0.300522 -0.322496 -0.749951 0.53723103 -0.38594699\n\t\t -0.70768398 0.47878799 -0.51956201 -0.89759898 0.300522 -0.322496 -0.85962898 0.24436501\n\t\t -0.44869101 -0.90851098 0.102939 -0.40498301 -0.90851098 0.102939 -0.40498301 -0.85962898\n\t\t 0.24436501 -0.44869101 -0.80343503 0.17612299 -0.56874597 -0.90851098 0.102939 -0.40498301\n\t\t -0.94906503 0.14673699 -0.278826 -0.89759898 0.300522 -0.322496 -0.95022601 0.139016\n\t\t -0.27882701 -0.94906503 0.14673699 -0.278826 -0.90851098 0.102939 -0.40498301 -0.90851098\n\t\t 0.102939 -0.40498301 -0.92031598 0.109687 -0.37548199 -0.95022601 0.139016 -0.27882701\n\t\t -0.80343503 0.17612299 -0.56874597 -0.84910399 0.059450999 -0.52486902 -0.90851098\n\t\t 0.102939 -0.40498301 -0.92031598 0.109687 -0.37548199 -0.90851098 0.102939 -0.40498301\n\t\t -0.84910399 0.059450999 -0.52486902 -0.84910399 0.059450999 -0.52486902 -0.85648298\n\t\t 0.064424999 -0.51213801 -0.92031598 0.109687 -0.37548199 -0.28590599 -0.14985099\n\t\t -0.946468 -0.250747 -0.085607 -0.96425998 -0.096989997 -0.16217899 -0.98198301 -0.096989997\n\t\t -0.16217899 -0.98198301 -0.250747 -0.085607 -0.96425998 -0.185341 -0.000397 -0.982674\n\t\t -0.096989997 -0.16217899 -0.98198301 -0.090884998 -0.199411 -0.97569197 -0.28590599\n\t\t -0.14985099 -0.946468 -0.29493299 -0.150396 -0.94360799 -0.28590599 -0.14985099 -0.946468\n\t\t -0.090884998 -0.199411 -0.97569197 -0.185341 -0.000397 -0.982674 -0.065036997 -0.113868\n\t\t -0.99136502 -0.096989997 -0.16217899 -0.98198301 -0.090884998 -0.199411 -0.97569197\n\t\t -0.069094002 -0.32234001 -0.94409901 -0.29493299 -0.150396 -0.94360799 -0.62137997\n\t\t 0.56977099 -0.537817 -0.70768398 0.47878799 -0.51956201 -0.749951 0.53723103 -0.38594699\n\t\t -0.749951 0.53723103 -0.38594699 -0.66275197 0.62768501 -0.40837601 -0.62137997 0.56977099\n\t\t -0.537817 -0.70768398 0.47878799 -0.51956201 -0.62137997 0.56977099 -0.537817 -0.56063801\n\t\t 0.488673 -0.66849297 0.019836999 -0.025758 -0.99947101 -0.065036997 -0.113868 -0.99136502\n\t\t -0.185341 -0.000397 -0.982674 -0.108831 -0.993159 -0.042330001 -0.113774 -0.99204701\n\t\t -0.053835001 -0.12455 -0.98864698 0.084050998 -0.12455 -0.98864698 0.084050998 -0.118595\n\t\t -0.98965901 0.080691002 -0.108831 -0.993159 -0.042330001 -0.108831 -0.993159 -0.042330001\n\t\t -0.118595 -0.98965901 0.080691002 -0.123267 -0.98958701 0.074313998 -0.123267 -0.98958701\n\t\t 0.074313998 -0.115088 -0.99273098 -0.035218999 -0.108831 -0.993159 -0.042330001 -0.113774\n\t\t -0.99204701 -0.053835001 -0.108831 -0.993159 -0.042330001 -0.093631998 -0.982005\n\t\t -0.16400801 -0.093631998 -0.982005 -0.16400801 -0.108831 -0.993159 -0.042330001 -0.115088\n\t\t -0.99273098 -0.035218999 -0.093631998 -0.982005 -0.16400801 -0.103306 -0.98368502\n\t\t -0.147284 -0.113774 -0.99204701 -0.053835001 -0.115088 -0.99273098 -0.035218999 -0.095709004\n\t\t -0.97762901 -0.187298 -0.093631998 -0.982005 -0.16400801 0.067142002 -0.54958302\n\t\t -0.83273703 0.071414001 -0.54494601 -0.83542502 0.096441001 -0.41194999 -0.90608799\n\t\t 0.096441001 -0.41194999 -0.90608799 0.071414001 -0.54494601 -0.83542502 0.070500001\n\t\t -0.53720099 -0.84050298 0.096441001 -0.41194999 -0.90608799 0.104008 -0.37907499\n\t\t -0.91950202 0.067142002 -0.54958302 -0.83273703 0.070500001 -0.53720099 -0.84050298\n\t\t -0.069094002 -0.32234001 -0.94409901 0.096441001 -0.41194999 -0.90608799 -0.001709\n\t\t -0.26106101 -0.965321;\n\tsetAttr \".n[34030:34195]\" -type \"float3\"  -0.0059210001 -0.26100001 -0.965321 0.015656\n\t\t -0.26738 -0.96346402 0.015656 -0.26738 -0.96346402 0.020295 -0.26927099 -0.96285099\n\t\t -0.001709 -0.26106101 -0.965321 -0.0059210001 -0.26100001 -0.965321 -0.001709 -0.26106101\n\t\t -0.965321 -0.029999999 -0.29228199 -0.95586097 -0.029999999 -0.29228199 -0.95586097\n\t\t -0.031221 -0.299822 -0.953484 -0.0059210001 -0.26100001 -0.965321 -0.031221 -0.299822\n\t\t -0.953484 -0.029999999 -0.29228199 -0.95586097 0.018769 -0.340377 -0.94010198 0.018769\n\t\t -0.340377 -0.94010198 0.020478999 -0.346333 -0.93788803 -0.031221 -0.299822 -0.953484\n\t\t 0.020478999 -0.346333 -0.93788803 0.018769 -0.340377 -0.94010198 0.022888999 -0.38179299\n\t\t -0.92396402 0.022888999 -0.38179299 -0.92396402 0.023987999 -0.38621601 -0.92209601\n\t\t 0.020478999 -0.346333 -0.93788803 0.023987999 -0.38621601 -0.92209601 0.022888999\n\t\t -0.38179299 -0.92396402 0.022707 -0.407893 -0.91274703 0.022707 -0.407893 -0.91274703\n\t\t 0.023073001 -0.41088101 -0.91139698 0.023987999 -0.38621601 -0.92209601 0.020295\n\t\t -0.26927099 -0.96285099 0.015656 -0.26738 -0.96346402 0.021241 -0.292954 -0.95589101\n\t\t 0.021241 -0.292954 -0.95589101 0.016602 -0.30436701 -0.95240998 0.020295 -0.26927099\n\t\t -0.96285099 0.016602 -0.30436701 -0.95240998 0.021241 -0.292954 -0.95589101 -0.028749\n\t\t -0.33425 -0.94204599 -0.028749 -0.33425 -0.94204599 -0.031344 -0.33400699 -0.94204903\n\t\t 0.016602 -0.30436701 -0.95240998 -0.031344 -0.33400699 -0.94204903 -0.028749 -0.33425\n\t\t -0.94204599 -0.096928 -0.277601 -0.95579398 -0.096928 -0.277601 -0.95579398 -0.089757003\n\t\t -0.28154001 -0.95534199 -0.031344 -0.33400699 -0.94204903 -0.089757003 -0.28154001\n\t\t -0.95534199 -0.096928 -0.277601 -0.95579398 -0.121954 -0.218638 -0.96815503 -0.121954\n\t\t -0.218638 -0.96815503 -0.125985 -0.21156199 -0.96921098 -0.089757003 -0.28154001\n\t\t -0.95534199 -0.125985 -0.21156199 -0.96921098 -0.121954 -0.218638 -0.96815503 -0.143838\n\t\t -0.187969 -0.97158498 -0.143838 -0.187969 -0.97158498 -0.143838 -0.187969 -0.97158498\n\t\t -0.125985 -0.21156199 -0.96921098 -0.020814 0.26908299 0.962892 -0.023317 0.272719\n\t\t 0.96181101 -0.0061949999 0.299602 0.95404398 -0.0061949999 0.299602 0.95404398 -0.0073859999\n\t\t 0.29234201 0.956285 -0.020814 0.26908299 0.962892 -0.023317 0.272719 0.96181101 -0.020814\n\t\t 0.26908299 0.962892 -0.041292999 0.28367701 0.958031 -0.041292999 0.28367701 0.958031\n\t\t -0.04465 0.288497 0.95643902 -0.023317 0.272719 0.96181101 -0.0073859999 0.29234201\n\t\t 0.956285 -0.0061949999 0.299602 0.95404398 -0.081913002 0.293807 0.95234799 -0.081913002\n\t\t 0.293807 0.95234799 -0.094855003 0.30553001 0.94744599 -0.0073859999 0.29234201 0.956285\n\t\t -0.094855003 0.30553001 0.94744599 -0.081913002 0.293807 0.95234799 -0.034120001\n\t\t 0.28220701 0.95874703 -0.034120001 0.28220701 0.95874703 -0.032136999 0.287734 0.95717102\n\t\t -0.094855003 0.30553001 0.94744599 -0.032136999 0.287734 0.95717102 -0.034120001\n\t\t 0.28220701 0.95874703 -0.026490999 0.31810299 0.94768602 -0.026490999 0.31810299\n\t\t 0.94768602 -0.023347 0.32707101 0.94471103 -0.032136999 0.287734 0.95717102 -0.04465\n\t\t 0.288497 0.95643902 -0.041292999 0.28367701 0.958031 -0.038027 0.337479 0.94056499\n\t\t -0.038027 0.337479 0.94056499 -0.048769999 0.32854 0.94322997 -0.04465 0.288497 0.95643902\n\t\t -0.048769999 0.32854 0.94322997 -0.038027 0.337479 0.94056499 0.035737999 0.41494301\n\t\t 0.909145 0.035737999 0.41494301 0.909145 0.024385 0.41499701 0.90949601 -0.048769999\n\t\t 0.32854 0.94322997 0.024385 0.41499701 0.90949601 0.035737999 0.41494301 0.909145\n\t\t 0.120885 0.35493499 0.92704302 0.120885 0.35493499 0.92704302 0.136206 0.33854601\n\t\t 0.93103999 0.024385 0.41499701 0.90949601 0.17707101 0.246014 0.95295501 0.136206\n\t\t 0.33854601 0.93103999 0.120885 0.35493499 0.92704302 0.120885 0.35493499 0.92704302\n\t\t 0.17987999 0.23924001 0.954153 0.17707101 0.246014 0.95295501 0.17707101 0.246014\n\t\t 0.95295501 0.17987999 0.23924001 0.954153 0.203749 0.20204 0.95794898 0.203749 0.20204\n\t\t 0.95794898 0.203743 0.202034 0.95795202 0.17707101 0.246014 0.95295501 -0.48146701\n\t\t -0.089665003 -0.87186599 -0.47232199 -0.097327001 -0.87603599 -0.64126903 -0.016938001\n\t\t -0.76713002 -0.64126903 -0.016938001 -0.76713002 -0.74232697 0.044923998 -0.66852999\n\t\t -0.48146701 -0.089665003 -0.87186599 -0.47232199 -0.097327001 -0.87603599 -0.48146701\n\t\t -0.089665003 -0.87186599 -0.113409 -0.226726 -0.96733302 -0.113409 -0.226726 -0.96733302\n\t\t -0.109807 -0.229289 -0.96714503 -0.47232199 -0.097327001 -0.87603599 -0.109807 -0.229289\n\t\t -0.96714503 -0.113409 -0.226726 -0.96733302 -0.0065609999 -0.25715199 -0.96634901\n\t\t -0.0065609999 -0.25715199 -0.96634901 -0.019105 -0.25349101 -0.96714902 -0.109807\n\t\t -0.229289 -0.96714503 -0.019105 -0.25349101 -0.96714902 -0.0065609999 -0.25715199\n\t\t -0.96634901 0.002167 -0.258773 -0.96593601 0.002167 -0.258773 -0.96593601 -0.012543\n\t\t -0.25428301 -0.967049 -0.019105 -0.25349101 -0.96714902 0.8664 0.479085 -0.14081401\n\t\t 0.8664 0.479085 -0.14081401 0.8664 0.479085 -0.14081401 0.81595802 0.56600702 -0.117682\n\t\t 0.81281698 0.57116598 -0.114447 0.81732798 0.56420398 -0.116827 0.81732798 0.56420398\n\t\t -0.116827 0.82026201 0.55950701 -0.118841 0.81595802 0.56600702 -0.117682 0.81281698\n\t\t 0.57116598 -0.114447 0.81595802 0.56600702 -0.117682 0.81128502 0.57427502 -0.109655\n\t\t 0.81128502 0.57427502 -0.109655 0.809044 0.57819402 -0.105537 0.81281698 0.57116598\n\t\t -0.114447 0.99917001 -0.039216999 0.011017 0.99917102 -0.039186001 0.011017 0.99409902\n\t\t -0.105474 0.025331 0.99409902 -0.105474 0.025331 0.99444199 -0.102361 0.024660001\n\t\t 0.99917001 -0.039216999 0.011017 0.99444199 -0.102361 0.024660001 0.99409902 -0.105474\n\t\t 0.025331;\n\tsetAttr \".n[34196:34361]\" -type \"float3\"  0.98498702 -0.168193 0.038881999 0.98498702\n\t\t -0.168193 0.038881999 0.98498797 -0.16818801 0.038881 0.99444199 -0.102361 0.024660001\n\t\t 0.98498797 -0.16818801 0.038881 0.98498702 -0.168193 0.038881999 0.93809199 -0.33805799\n\t\t 0.075503998 0.93809199 -0.33805799 0.075503998 0.94957602 -0.305558 0.070285998 0.98498797\n\t\t -0.16818801 0.038881 0.94957602 -0.305558 0.070285998 0.93809199 -0.33805799 0.075503998\n\t\t 0.71980399 -0.67610002 0.157389 0.71980399 -0.67610002 0.157389 0.76725799 -0.62473202\n\t\t 0.144998 0.94957602 -0.305558 0.070285998 0.809044 0.57819402 -0.105537 0.81128502\n\t\t 0.57427502 -0.109655 0.81132901 0.57501799 -0.105353 0.81132901 0.57501799 -0.105353\n\t\t 0.80776 0.58057302 -0.102271 0.809044 0.57819402 -0.105537 -0.98017699 0.19324601\n\t\t -0.043703001 -0.98027003 0.19266599 -0.044160999 -0.97900999 0.20008001 -0.038819999\n\t\t -0.97900999 0.20008001 -0.038819999 -0.97903299 0.200146 -0.037905 -0.98017699 0.19324601\n\t\t -0.043703001 -0.98027003 0.19266599 -0.044160999 -0.98017699 0.19324601 -0.043703001\n\t\t -0.98159999 0.186102 -0.042757001 -0.98159999 0.186102 -0.042757001 -0.98159999 0.186102\n\t\t -0.042757001 -0.98027003 0.19266599 -0.044160999 0.276261 -0.93923098 0.203777 0.27628699\n\t\t -0.93921697 0.203805 0.45034301 -0.87245601 0.189769 0.45034301 -0.87245601 0.189769\n\t\t 0.39611399 -0.89681798 0.19700401 0.276261 -0.93923098 0.203777 0.39611399 -0.89681798\n\t\t 0.19700401 0.45034301 -0.87245601 0.189769 0.76725799 -0.62473202 0.144998 0.76725799\n\t\t -0.62473202 0.144998 0.71980399 -0.67610002 0.157389 0.39611399 -0.89681798 0.19700401\n\t\t -0.94908798 0.19636101 0.24632099 -0.93047899 0.27934501 0.237014 -0.95424801 0.24879301\n\t\t 0.16587199 -0.95424801 0.24879301 0.16587199 -0.966694 0.177072 0.184793 -0.94908798\n\t\t 0.19636101 0.24632099 -0.97966701 -0.117225 0.16282 -0.98119098 0.120672 0.150673\n\t\t -0.98075002 0.13416 0.141882 -0.98075002 0.13416 0.141882 -0.97312802 -0.180154 0.143409\n\t\t -0.97966701 -0.117225 0.16282 -0.975124 0.186565 0.119697 -0.98075002 0.13416 0.141882\n\t\t -0.98119098 0.120672 0.150673 0 -0.99957699 -0.029084001 0 -0.99957699 -0.029084001\n\t\t 0 -0.99957699 -0.029084001 0 -0.99957699 -0.029084001 0 -0.99957699 -0.029084001\n\t\t 0 -0.99957699 -0.029084001 0 -0.99957699 -0.029084001 0 -0.99957699 -0.029084001\n\t\t 0 -0.99957699 -0.029084001 -0.121284 -0.98803699 0.095251001 -0.121528 -0.98782301\n\t\t 0.097143002 -0.119726 -0.988388 0.093571 -0.119726 -0.988388 0.093571 -0.119847 -0.98841101\n\t\t 0.093174003 -0.121284 -0.98803699 0.095251001 -0.121528 -0.98782301 0.097143002 -0.121284\n\t\t -0.98803699 0.095251001 -0.129491 -0.98511899 0.113012 -0.129491 -0.98511899 0.113012\n\t\t -0.138036 -0.98252201 0.124883 -0.121528 -0.98782301 0.097143002 -0.14750101 -0.97964698\n\t\t 0.13614801 -0.138036 -0.98252201 0.124883 -0.129491 -0.98511899 0.113012 0.148839\n\t\t 0.97980201 -0.13355 0.148839 0.97980201 -0.13355 0.148839 0.97980201 -0.13355 0.103641\n\t\t -0.245858 -0.96374899 0.102789 -0.243146 -0.96452802 0.105535 -0.22465099 -0.96870798\n\t\t 0.105535 -0.22465099 -0.96870798 0.098334 -0.230818 -0.96801502 0.103641 -0.245858\n\t\t -0.96374899 0.098334 -0.230818 -0.96801502 0.105535 -0.22465099 -0.96870798 0.11753\n\t\t -0.025971999 -0.99273002 0.11753 -0.025971999 -0.99273002 0.037843999 -0.297225 -0.95405698\n\t\t 0.098334 -0.230818 -0.96801502 0.105535 -0.22465099 -0.96870798 0.019836999 -0.025758\n\t\t -0.99947101 0.11753 -0.025971999 -0.99273002 0.105535 -0.22465099 -0.96870798 -0.065036997\n\t\t -0.113868 -0.99136502 0.019836999 -0.025758 -0.99947101 0.105535 -0.22465099 -0.96870798\n\t\t -0.096989997 -0.16217899 -0.98198301 -0.065036997 -0.113868 -0.99136502 -0.096989997\n\t\t -0.16217899 -0.98198301 0.105535 -0.22465099 -0.96870798 0.102789 -0.243146 -0.96452802\n\t\t 0.102789 -0.243146 -0.96452802 -0.090884998 -0.199411 -0.97569197 -0.096989997 -0.16217899\n\t\t -0.98198301 -0.069094002 -0.32234001 -0.94409901 -0.090884998 -0.199411 -0.97569197\n\t\t 0.102789 -0.243146 -0.96452802 0.102789 -0.243146 -0.96452802 0.096441001 -0.41194999\n\t\t -0.90608799 -0.069094002 -0.32234001 -0.94409901 0.096441001 -0.41194999 -0.90608799\n\t\t 0.102789 -0.243146 -0.96452802 0.103641 -0.245858 -0.96374899 0.103641 -0.245858\n\t\t -0.96374899 0.104008 -0.37907499 -0.91950202 0.096441001 -0.41194999 -0.90608799\n\t\t -0.497134 -0.722094 0.48108101 -0.495821 -0.72612202 0.47635001 -0.495698 -0.71269202\n\t\t 0.49633899 -0.495698 -0.71269202 0.49633899 -0.590918 -0.58804899 0.55228102 -0.497134\n\t\t -0.722094 0.48108101 -0.590918 -0.58804899 0.55228102 -0.495698 -0.71269202 0.49633899\n\t\t -0.48345301 -0.683231 0.54723799 -0.48345301 -0.683231 0.54723799 -0.52960098 -0.59189099\n\t\t 0.60760802 -0.590918 -0.58804899 0.55228102 -0.167336 -0.96825099 0.185709 -0.16645101\n\t\t -0.96833998 0.18604399 -0.16608401 -0.97303802 0.160042 -0.145028 -0.96496099 0.21867099\n\t\t -0.16645101 -0.96833998 0.18604399 -0.167336 -0.96825099 0.185709 -0.52960098 -0.59189099\n\t\t 0.60760802 -0.48345301 -0.683231 0.54723799 -0.38661799 -0.65985799 0.64429301 -0.167336\n\t\t -0.96825099 0.185709 -0.143959 -0.96514201 0.21857899 -0.145028 -0.96496099 0.21867099\n\t\t -0.16608401 -0.97303802 0.160042 -0.166389 -0.97303599 0.15973599 -0.167336 -0.96825099\n\t\t 0.185709 -0.38661799 -0.65985799 0.64429301 -0.420856 -0.58172202 0.69604599 -0.52960098\n\t\t -0.59189099 0.60760802 -0.22340199 -0.55398899 0.80198997 -0.420856 -0.58172202 0.69604599\n\t\t -0.38661799 -0.65985799 0.64429301 -0.38661799 -0.65985799 0.64429301 -0.211281 -0.61574501\n\t\t 0.75909102 -0.22340199 -0.55398899 0.80198997 -0.16172101 -0.97472203 0.154153 -0.166389\n\t\t -0.97303599 0.15973599 -0.16608401 -0.97303802 0.160042;\n\tsetAttr \".n[34362:34527]\" -type \"float3\"  -0.16608401 -0.97303802 0.160042 -0.15973599\n\t\t -0.97517502 0.153358 -0.16172101 -0.97472203 0.154153 -0.22340199 -0.55398899 0.80198997\n\t\t -0.211281 -0.61574501 0.75909102 0 -0.60355401 0.79732198 0.000611 -0.95313799 0.302535\n\t\t 0.000489 -0.95314699 0.30250701 -0.083012 -0.95597899 0.28144699 -0.083012 -0.95597899\n\t\t 0.28144699 -0.078312002 -0.95675099 0.280168 0.000611 -0.95313799 0.302535 -0.078312002\n\t\t -0.95675099 0.280168 -0.083012 -0.95597899 0.28144699 -0.145028 -0.96496099 0.21867099\n\t\t -0.145028 -0.96496099 0.21867099 -0.143959 -0.96514201 0.21857899 -0.078312002 -0.95675099\n\t\t 0.280168 0 -0.60355401 0.79732198 0 -0.543459 0.83943599 -0.22340199 -0.55398899\n\t\t 0.80198997 -0.590918 -0.58804899 0.55228102 -0.67333698 -0.46254399 0.57677603 -0.73447198\n\t\t -0.35863 0.57613897 -0.73447198 -0.35863 0.57613897 -0.69903398 -0.18842299 0.68981701\n\t\t -0.590918 -0.58804899 0.55228102 -0.81545103 -0.32192001 0.481049 -0.73447198 -0.35863\n\t\t 0.57613897 -0.67333698 -0.46254399 0.57677603 0 -0.46254101 0.88659799 0 -0.37819001\n\t\t 0.92572802 -0.226454 -0.38185799 0.89604902 -0.226454 -0.38185799 0.89604902 -0.22379801\n\t\t -0.467861 0.85499799 0 -0.46254101 0.88659799 0 -0.46254101 0.88659799 -0.22379801\n\t\t -0.467861 0.85499799 -0.22340199 -0.55398899 0.80198997 -0.22340199 -0.55398899 0.80198997\n\t\t 0 -0.543459 0.83943599 0 -0.46254101 0.88659799 -0.229534 -0.28980899 0.92915303\n\t\t -0.226454 -0.38185799 0.89604902 0 -0.37819001 0.92572802 0 -0.37819001 0.92572802\n\t\t 0 -0.288831 0.95738 -0.229534 -0.28980899 0.92915303 -0.23548301 -0.036378 0.97119802\n\t\t -0.229534 -0.28980899 0.92915303 0 -0.288831 0.95738 0 -0.288831 0.95738 0 -0.035248999\n\t\t 0.99937898 -0.23548301 -0.036378 0.97119802 -0.333056 -0.21140701 -0.91890198 -0.35066599\n\t\t -0.198406 -0.91524202 -0.34807399 -0.198011 -0.91631699 -0.333056 -0.21140701 -0.91890198\n\t\t -0.34807399 -0.198011 -0.91631699 -0.35064 -0.20161299 -0.91455102 -0.34807399 -0.198011\n\t\t -0.91631699 -0.34566399 -0.19911 -0.91698998 -0.35064 -0.20161299 -0.91455102 -0.34807399\n\t\t -0.198011 -0.91631699 -0.34480199 -0.20014299 -0.91709 -0.34566399 -0.19911 -0.91698998\n\t\t -0.34807399 -0.198011 -0.91631699 -0.34477499 -0.20014501 -0.91710001 -0.34480199\n\t\t -0.20014299 -0.91709 -0.34480199 -0.20014299 -0.91709 -0.340626 -0.197124 -0.91930199\n\t\t -0.34566399 -0.19911 -0.91698998 -0.34566399 -0.19911 -0.91698998 -0.341418 -0.19776399\n\t\t -0.91887099 -0.35064 -0.20161299 -0.91455102 -0.25047499 -0.28236899 -0.92602903\n\t\t -0.333056 -0.21140701 -0.91890198 -0.35064 -0.20161299 -0.91455102 -0.25047499 -0.28236899\n\t\t -0.92602903 -0.35064 -0.20161299 -0.91455102 -0.56014597 -0.129462 -0.81821501 -0.90208697\n\t\t -0.43108401 0.020143 -0.902013 -0.43123099 0.020326 -0.91295803 -0.407709 -0.016786\n\t\t -0.84591299 -0.47821301 0.2361 -0.90208697 -0.43108401 0.020143 -0.91295803 -0.407709\n\t\t -0.016786 -0.88575298 -0.46327901 0.028534999 -0.84591299 -0.47821301 0.2361 -0.91295803\n\t\t -0.407709 -0.016786 -0.88575298 -0.46327901 0.028534999 -0.91295803 -0.407709 -0.016786\n\t\t -0.89796197 -0.43212 -0.083286002 -0.88575298 -0.46327901 0.028534999 -0.89796197\n\t\t -0.43212 -0.083286002 -0.89074498 -0.44494599 -0.092719004 -0.89032799 -0.44569799\n\t\t -0.093112998 -0.88575298 -0.46327901 0.028534999 -0.89074498 -0.44494599 -0.092719004\n\t\t -0.912866 -0.36974299 0.173106 -0.84591299 -0.47821301 0.2361 -0.88575298 -0.46327901\n\t\t 0.028534999 -0.89319003 -0.44365001 0.073397003 -0.86656499 -0.44921401 0.21742 -0.85649002\n\t\t -0.42797101 0.28855899 -0.546749 -0.80802298 -0.21946301 -0.57949901 -0.76380497\n\t\t -0.28422499 -0.51901197 -0.83241498 -0.194195 -0.57949901 -0.76380497 -0.28422499\n\t\t -0.546749 -0.80802298 -0.21946301 -0.64915198 -0.66505301 -0.369196 -0.64915198 -0.66505301\n\t\t -0.369196 -0.67813498 -0.57781899 -0.454155 -0.57949901 -0.76380497 -0.28422499 -0.67813498\n\t\t -0.57781899 -0.454155 -0.64915198 -0.66505301 -0.369196 -0.74161601 -0.337603 -0.57968098\n\t\t -0.74161601 -0.337603 -0.57968098 -0.73547202 -0.30021301 -0.60741502 -0.67813498\n\t\t -0.57781899 -0.454155 -0.73547202 -0.30021301 -0.60741502 -0.74161601 -0.337603 -0.57968098\n\t\t -0.74456698 -0.083866 -0.66225803 -0.74456698 -0.083866 -0.66225803 -0.73505998 -0.087651998\n\t\t -0.67231202 -0.73547202 -0.30021301 -0.60741502 -0.73505998 -0.087651998 -0.67231202\n\t\t -0.74456698 -0.083866 -0.66225803 -0.76095998 -0.0086369999 -0.64874202 -0.76095998\n\t\t -0.0086369999 -0.64874202 -0.75975299 -0.019685 -0.64991301 -0.73505998 -0.087651998\n\t\t -0.67231202 -0.81542999 0.42308101 -0.39506501 -0.78794599 0.487544 -0.37608799 -0.74623799\n\t\t 0.62751597 -0.22215299 -0.74623799 0.62751597 -0.22215299 -0.80717301 0.49062699\n\t\t -0.32826501 -0.81542999 0.42308101 -0.39506501 -0.80717301 0.49062699 -0.32826501\n\t\t -0.74623799 0.62751597 -0.22215299 -0.69180799 0.71222502 -0.118903 -0.912866 -0.36974299\n\t\t 0.173106 -0.92445099 -0.36046001 0.124334 -0.89227599 -0.439165 0.104771 -0.88575298\n\t\t -0.46327901 0.028534999 -0.86656499 -0.44921401 0.21742 -0.912866 -0.36974299 0.173106\n\t\t -0.056216002 0.83609003 0.54570502 -0.059634998 0.77598 0.62793201 -0.045047 0.90800703\n\t\t 0.41652599 -0.059634998 0.77598 0.62793201 -0.056216002 0.83609003 0.54570502 -0.067936003\n\t\t 0.700481 0.71043003 -0.067936003 0.700481 0.71043003 -0.063359 0.69541901 0.71580601\n\t\t -0.059634998 0.77598 0.62793201 -0.051242001 0.033236001 0.998133 -0.054567002 0.043489002\n\t\t 0.997563 -0.047029998 -0.058322001 0.99718899 -0.047029998 -0.058322001 0.99718899\n\t\t -0.039613999 -0.13987 0.98937702 -0.051242001 0.033236001 0.998133 -0.039613999 -0.13987\n\t\t 0.98937702 -0.047029998 -0.058322001 0.99718899 -0.034029 -0.30030799 0.95323497\n\t\t -0.034029 -0.30030799 0.95323497;\n\tsetAttr \".n[34528:34693]\" -type \"float3\"  -0.034944002 -0.356188 0.933761 -0.039613999\n\t\t -0.13987 0.98937702 -0.034944002 -0.356188 0.933761 -0.034029 -0.30030799 0.95323497\n\t\t -0.035707001 -0.431321 0.901492 -0.035707001 -0.431321 0.901492 -0.036286999 -0.429315\n\t\t 0.902426 -0.034944002 -0.356188 0.933761 -0.038575999 -0.87996203 0.47347599 -0.037354998\n\t\t -0.807078 0.58926302 -0.040589999 -0.81083602 0.58386397 -0.040589999 -0.81083602\n\t\t 0.58386397 -0.04056 -0.878932 0.47521999 -0.038575999 -0.87996203 0.47347599 -0.038575999\n\t\t -0.87996203 0.47347599 -0.04056 -0.878932 0.47521999 -0.037416 -0.94228297 0.33272099\n\t\t -0.84591299 -0.47821301 0.2361 -0.912866 -0.36974299 0.173106 -0.76498997 -0.54516202\n\t\t 0.34291199 -0.86656499 -0.44921401 0.21742 -0.88575298 -0.46327901 0.028534999 -0.89032799\n\t\t -0.44569799 -0.093112998 0.123603 0.71756899 -0.68543202 0.13330901 0.708112 -0.69340199\n\t\t 0.25764501 0.71977001 -0.64463198 0.13330901 0.708112 -0.69340199 0.123603 0.71756899\n\t\t -0.68543202 0 0.71478599 -0.69934303 -0.55475599 0.51178402 -0.65599 -0.76064003\n\t\t 0.450317 -0.46759099 -0.87848902 0.27729499 -0.389056 -0.49551201 0.606022 -0.62225801\n\t\t -0.76064003 0.450317 -0.46759099 -0.55475599 0.51178402 -0.65599 -0.55475599 0.51178402\n\t\t -0.65599 -0.49783301 0.382377 -0.77842802 -0.49551201 0.606022 -0.62225801 -0.49551201\n\t\t 0.606022 -0.62225801 -0.49783301 0.382377 -0.77842802 -0.53335601 0.51379198 -0.671974\n\t\t -0.53335601 0.51379198 -0.671974 -0.52053601 0.703071 -0.48449299 -0.49551201 0.606022\n\t\t -0.62225801 -0.80449802 0.0070799999 -0.59391302 -0.80448198 0.032136001 -0.59310699\n\t\t -0.80390698 0.031221 -0.59393501 -0.80390698 0.031221 -0.59393501 -0.80414701 0.0091859996\n\t\t -0.59435898 -0.80449802 0.0070799999 -0.59391302 -0.80449802 0.0070799999 -0.59391302\n\t\t -0.80414701 0.0091859996 -0.59435898 -0.80152899 -0.011628 -0.59784299 -0.80152899\n\t\t -0.011628 -0.59784299 -0.91740203 0.068880998 -0.391956 -0.80449802 0.0070799999\n\t\t -0.59391302 -0.91740203 0.068880998 -0.391956 -0.80152899 -0.011628 -0.59784299 -0.80399197\n\t\t -0.021119 -0.59426498 -0.80399197 -0.021119 -0.59426498 -0.919833 0.048769001 -0.38926601\n\t\t -0.91740203 0.068880998 -0.391956 -0.89873999 -0.068668999 -0.433072 -0.919833 0.048769001\n\t\t -0.38926601 -0.80399197 -0.021119 -0.59426498 -0.80399197 -0.021119 -0.59426498 -0.78086102\n\t\t -0.17392799 -0.60000497 -0.89873999 -0.068668999 -0.433072 -0.84452403 -0.37089899\n\t\t -0.38628 -0.89873999 -0.068668999 -0.433072 -0.78086102 -0.17392799 -0.60000497 -0.78086102\n\t\t -0.17392799 -0.60000497 -0.73828298 -0.306685 -0.60073501 -0.84452403 -0.37089899\n\t\t -0.38628 -0.84452403 -0.37089899 -0.38628 -0.73828298 -0.306685 -0.60073501 -0.78842902\n\t\t -0.34300399 -0.51061398 -0.78842902 -0.34300399 -0.51061398 -0.85134101 -0.405177\n\t\t -0.333242 -0.84452403 -0.37089899 -0.38628 -0.90324801 -0.408959 -0.12998199 -0.85134101\n\t\t -0.405177 -0.333242 -0.78842902 -0.34300399 -0.51061398 -0.78842902 -0.34300399 -0.51061398\n\t\t -0.91490901 -0.380454 -0.134895 -0.90324801 -0.408959 -0.12998199 0.27165201 0.90318698\n\t\t -0.33235499 -0.050783999 0.99080902 -0.12537301 -0.046266999 0.99344802 -0.104496\n\t\t -0.046266999 0.99344802 -0.104496 0.25715199 0.905312 -0.33805799 0.27165201 0.90318698\n\t\t -0.33235499 0.301011 0.91283 -0.275924 0.25715199 0.905312 -0.33805799 -0.046266999\n\t\t 0.99344802 -0.104496 -0.046266999 0.99344802 -0.104496 -0.001831 0.99934298 -0.036196001\n\t\t 0.301011 0.91283 -0.275924 0.371481 0.91011697 -0.183543 0.301011 0.91283 -0.275924\n\t\t -0.001831 0.99934298 -0.036196001 -0.001831 0.99934298 -0.036196001 0.070164002 0.99585003\n\t\t 0.057955999 0.371481 0.91011697 -0.183543 0.301011 0.91283 -0.275924 0.371481 0.91011697\n\t\t -0.183543 0.60848701 0.68707299 -0.397082 0.60848701 0.68707299 -0.397082 0.55178797\n\t\t 0.68570697 -0.47469601 0.301011 0.91283 -0.275924 0.25715199 0.905312 -0.33805799\n\t\t 0.301011 0.91283 -0.275924 0.55178797 0.68570697 -0.47469601 0.55178797 0.68570697\n\t\t -0.47469601 0.518839 0.67623103 -0.52298999 0.25715199 0.905312 -0.33805799 0.27165201\n\t\t 0.90318698 -0.33235499 0.25715199 0.905312 -0.33805799 0.518839 0.67623103 -0.52298999\n\t\t 0.518839 0.67623103 -0.52298999 0.55242699 0.66855198 -0.497859 0.27165201 0.90318698\n\t\t -0.33235499 0.55242699 0.66855198 -0.497859 0.518839 0.67623103 -0.52298999 0.69472402\n\t\t 0.346645 -0.63023502 0.69472402 0.346645 -0.63023502 0.740798 0.33507299 -0.58218902\n\t\t 0.55242699 0.66855198 -0.497859 0.71131998 0.35814801 -0.60477602 0.69472402 0.346645\n\t\t -0.63023502 0.518839 0.67623103 -0.52298999 0.518839 0.67623103 -0.52298999 0.55178797\n\t\t 0.68570697 -0.47469601 0.71131998 0.35814801 -0.60477602 0.74663001 0.36663201 -0.55509001\n\t\t 0.71131998 0.35814801 -0.60477602 0.55178797 0.68570697 -0.47469601 0.55178797 0.68570697\n\t\t -0.47469601 0.60848701 0.68707299 -0.397082 0.74663001 0.36663201 -0.55509001 0.71131998\n\t\t 0.35814801 -0.60477602 0.74663001 0.36663201 -0.55509001 0.77091497 -0.001587 -0.63693601\n\t\t 0.77091497 -0.001587 -0.63693601 0.76066202 -0.016755 -0.64893103 0.71131998 0.35814801\n\t\t -0.60477602 0.69472402 0.346645 -0.63023502 0.71131998 0.35814801 -0.60477602 0.76066202\n\t\t -0.016755 -0.64893103 0.76066202 -0.016755 -0.64893103 0.76455498 -0.030122001 -0.64385402\n\t\t 0.69472402 0.346645 -0.63023502 0.740798 0.33507299 -0.58218902 0.69472402 0.346645\n\t\t -0.63023502 0.76455498 -0.030122001 -0.64385402 0.76455498 -0.030122001 -0.64385402\n\t\t 0.81965798 -0.04349 -0.57120001 0.740798 0.33507299 -0.58218902 0.81965798 -0.04349\n\t\t -0.57120001 0.76455498 -0.030122001 -0.64385402 0.723239 -0.40236199 -0.56127501\n\t\t 0.723239 -0.40236199 -0.56127501 0.77994603 -0.41609699 -0.467491 0.81965798 -0.04349\n\t\t -0.57120001 0.69912601 -0.38877901 -0.600061 0.723239 -0.40236199 -0.56127501;\n\tsetAttr \".n[34694:34859]\" -type \"float3\"  0.76455498 -0.030122001 -0.64385402 0.76455498\n\t\t -0.030122001 -0.64385402 0.76066202 -0.016755 -0.64893103 0.69912601 -0.38877901\n\t\t -0.600061 0.68278402 -0.37081301 -0.62952697 0.69912601 -0.38877901 -0.600061 0.76066202\n\t\t -0.016755 -0.64893103 0.76066202 -0.016755 -0.64893103 0.77091497 -0.001587 -0.63693601\n\t\t 0.68278402 -0.37081301 -0.62952697 0.69912601 -0.38877901 -0.600061 0.68278402 -0.37081301\n\t\t -0.62952697 0.49444199 -0.69208401 -0.525877 0.49444199 -0.69208401 -0.525877 0.53628898\n\t\t -0.70838797 -0.458891 0.69912601 -0.38877901 -0.600061 0.723239 -0.40236199 -0.56127501\n\t\t 0.69912601 -0.38877901 -0.600061 0.53628898 -0.70838797 -0.458891 0.53628898 -0.70838797\n\t\t -0.458891 0.575109 -0.71839702 -0.39135101 0.723239 -0.40236199 -0.56127501 0.77994603\n\t\t -0.41609699 -0.467491 0.723239 -0.40236199 -0.56127501 0.575109 -0.71839702 -0.39135101\n\t\t 0.575109 -0.71839702 -0.39135101 0.61832201 -0.72980899 -0.29164299 0.77994603 -0.41609699\n\t\t -0.467491 0.61832201 -0.72980899 -0.29164299 0.575109 -0.71839702 -0.39135101 0.33635601\n\t\t -0.92855698 -0.156992 0.33635601 -0.92855698 -0.156992 0.353782 -0.93188298 -0.080205001\n\t\t 0.61832201 -0.72980899 -0.29164299 0.291058 -0.92664099 -0.237955 0.33635601 -0.92855698\n\t\t -0.156992 0.575109 -0.71839702 -0.39135101 0.575109 -0.71839702 -0.39135101 0.53628898\n\t\t -0.70838797 -0.458891 0.291058 -0.92664099 -0.237955 0.228709 -0.91569 -0.330459\n\t\t 0.291058 -0.92664099 -0.237955 0.53628898 -0.70838797 -0.458891 0.53628898 -0.70838797\n\t\t -0.458891 0.49444199 -0.69208401 -0.525877 0.228709 -0.91569 -0.330459 0.291058 -0.92664099\n\t\t -0.237955 0.228709 -0.91569 -0.330459 -0.075320996 -0.99464899 -0.070712999 -0.075320996\n\t\t -0.99464899 -0.070712999 -0.002533 -0.99957502 0.029022999 0.291058 -0.92664099 -0.237955\n\t\t 0.33635601 -0.92855698 -0.156992 0.291058 -0.92664099 -0.237955 -0.002533 -0.99957502\n\t\t 0.029022999 -0.002533 -0.99957502 0.029022999 0.040346999 -0.99389702 0.102668 0.33635601\n\t\t -0.92855698 -0.156992 0.353782 -0.93188298 -0.080205001 0.33635601 -0.92855698 -0.156992\n\t\t 0.040346999 -0.99389702 0.102668 0.040346999 -0.99389702 0.102668 0.027101001 -0.99120599\n\t\t 0.12952401 0.353782 -0.93188298 -0.080205001 0.473382 -0.68051499 -0.55929297 0.49444199\n\t\t -0.69208401 -0.525877 0.68278402 -0.37081301 -0.62952697 0.68278402 -0.37081301 -0.62952697\n\t\t 0.68952698 -0.36290699 -0.62677902 0.473382 -0.68051499 -0.55929297 0.68952698 -0.36290699\n\t\t -0.62677902 0.68278402 -0.37081301 -0.62952697 0.77091497 -0.001587 -0.63693601 0.77091497\n\t\t -0.001587 -0.63693601 0.80063498 0.002289 -0.59914798 0.68952698 -0.36290699 -0.62677902\n\t\t 0.80063498 0.002289 -0.59914798 0.77091497 -0.001587 -0.63693601 0.74663001 0.36663201\n\t\t -0.55509001 0.74663001 0.36663201 -0.55509001 0.79371899 0.36382201 -0.48748699 0.80063498\n\t\t 0.002289 -0.59914798 0.79371899 0.36382201 -0.48748699 0.74663001 0.36663201 -0.55509001\n\t\t 0.60848701 0.68707299 -0.397082 0.60848701 0.68707299 -0.397082 0.66960299 0.67534101\n\t\t -0.309104 0.79371899 0.36382201 -0.48748699 0.66960299 0.67534101 -0.309104 0.60848701\n\t\t 0.68707299 -0.397082 0.371481 0.91011697 -0.183543 0.371481 0.91011697 -0.183543\n\t\t 0.442067 0.892802 -0.086491004 0.66960299 0.67534101 -0.309104 0.442067 0.892802\n\t\t -0.086491004 0.371481 0.91011697 -0.183543 0.070164002 0.99585003 0.057955999 0.070164002\n\t\t 0.99585003 0.057955999 0.14097001 0.97824401 0.152201 0.442067 0.892802 -0.086491004\n\t\t 0.481989 0.87605298 -0.014741 0.442067 0.892802 -0.086491004 0.14097001 0.97824401\n\t\t 0.152201 0.14097001 0.97824401 0.152201 0.17334899 0.96260798 0.20817199 0.481989\n\t\t 0.87605298 -0.014741 0.494688 0.86861199 0.02823 0.481989 0.87605298 -0.014741 0.17334899\n\t\t 0.96260798 0.20817199 0.17334899 0.96260798 0.20817199 0.168037 0.96189702 0.21567801\n\t\t 0.494688 0.86861199 0.02823 0.48870301 0.87190098 0.030946 0.494688 0.86861199 0.02823\n\t\t 0.168037 0.96189702 0.21567801 0.168037 0.96189702 0.21567801 0.13697 0.97914702\n\t\t 0.150032 0.48870301 0.87190098 0.030946 0.494688 0.86861199 0.02823 0.48870301 0.87190098\n\t\t 0.030946 0.767263 0.63670099 -0.07694 0.767263 0.63670099 -0.07694 0.74693298 0.64771497\n\t\t -0.150186 0.494688 0.86861199 0.02823 0.481989 0.87605298 -0.014741 0.494688 0.86861199\n\t\t 0.02823 0.74693298 0.64771497 -0.150186 0.74693298 0.64771497 -0.150186 0.71491897\n\t\t 0.66114402 -0.227553 0.481989 0.87605298 -0.014741 0.442067 0.892802 -0.086491004\n\t\t 0.481989 0.87605298 -0.014741 0.71491897 0.66114402 -0.227553 0.71491897 0.66114402\n\t\t -0.227553 0.66960299 0.67534101 -0.309104 0.442067 0.892802 -0.086491004 0.84419101\n\t\t 0.35362601 -0.40285301 0.79371899 0.36382201 -0.48748699 0.66960299 0.67534101 -0.309104\n\t\t 0.66960299 0.67534101 -0.309104 0.71491897 0.66114402 -0.227553 0.84419101 0.35362601\n\t\t -0.40285301 0.894876 0.33454901 -0.295423 0.84419101 0.35362601 -0.40285301 0.71491897\n\t\t 0.66114402 -0.227553 0.71491897 0.66114402 -0.227553 0.74693298 0.64771497 -0.150186\n\t\t 0.894876 0.33454901 -0.295423 0.93739003 0.31016499 -0.158424 0.894876 0.33454901\n\t\t -0.295423 0.74693298 0.64771497 -0.150186 0.74693298 0.64771497 -0.150186 0.767263\n\t\t 0.63670099 -0.07694 0.93739003 0.31016499 -0.158424 0.894876 0.33454901 -0.295423\n\t\t 0.93739003 0.31016499 -0.158424 0.97580999 -0.067446001 -0.207956 0.97580999 -0.067446001\n\t\t -0.207956 0.91896701 -0.032442 -0.392997 0.894876 0.33454901 -0.295423 0.84419101\n\t\t 0.35362601 -0.40285301 0.894876 0.33454901 -0.295423 0.91896701 -0.032442 -0.392997\n\t\t 0.91896701 -0.032442 -0.392997 0.85385501 -0.0066829999 -0.520468 0.84419101 0.35362601\n\t\t -0.40285301;\n\tsetAttr \".n[34860:35025]\" -type \"float3\"  0.79371899 0.36382201 -0.48748699 0.84419101\n\t\t 0.35362601 -0.40285301 0.85385501 -0.0066829999 -0.520468 0.85385501 -0.0066829999\n\t\t -0.520468 0.80063498 0.002289 -0.59914798 0.79371899 0.36382201 -0.48748699 0.80063498\n\t\t 0.002289 -0.59914798 0.85385501 -0.0066829999 -0.520468 0.737046 -0.37279499 -0.56372601\n\t\t 0.737046 -0.37279499 -0.56372601 0.68952698 -0.36290699 -0.62677902 0.80063498 0.002289\n\t\t -0.59914798 0.80671799 -0.40334401 -0.43187901 0.737046 -0.37279499 -0.56372601 0.85385501\n\t\t -0.0066829999 -0.520468 0.85385501 -0.0066829999 -0.520468 0.91896701 -0.032442 -0.392997\n\t\t 0.80671799 -0.40334401 -0.43187901 0.86885399 -0.44170499 -0.223584 0.80671799 -0.40334401\n\t\t -0.43187901 0.91896701 -0.032442 -0.392997 0.91896701 -0.032442 -0.392997 0.97580999\n\t\t -0.067446001 -0.207956 0.86885399 -0.44170499 -0.223584 0.80671799 -0.40334401 -0.43187901\n\t\t 0.86885399 -0.44170499 -0.223584 0.62516302 -0.75248998 -0.207197 0.62516302 -0.75248998\n\t\t -0.207197 0.56466299 -0.71826398 -0.40651301 0.80671799 -0.40334401 -0.43187901 0.737046\n\t\t -0.37279499 -0.56372601 0.80671799 -0.40334401 -0.43187901 0.56466299 -0.71826398\n\t\t -0.40651301 0.56466299 -0.71826398 -0.40651301 0.50326598 -0.68876302 -0.52185202\n\t\t 0.737046 -0.37279499 -0.56372601 0.68952698 -0.36290699 -0.62677902 0.737046 -0.37279499\n\t\t -0.56372601 0.50326598 -0.68876302 -0.52185202 0.50326598 -0.68876302 -0.52185202\n\t\t 0.473382 -0.68051499 -0.55929297 0.68952698 -0.36290699 -0.62677902 0.473382 -0.68051499\n\t\t -0.55929297 0.50326598 -0.68876302 -0.52185202 0.186257 -0.89865798 -0.39714199 0.186257\n\t\t -0.89865798 -0.39714199 0.18128601 -0.899104 -0.39843199 0.473382 -0.68051499 -0.55929297\n\t\t 0.49444199 -0.69208401 -0.525877 0.473382 -0.68051499 -0.55929297 0.18128601 -0.899104\n\t\t -0.39843199 0.18128601 -0.899104 -0.39843199 0.228709 -0.91569 -0.330459 0.49444199\n\t\t -0.69208401 -0.525877 0.22923 -0.91881198 -0.32130599 0.186257 -0.89865798 -0.39714199\n\t\t 0.50326598 -0.68876302 -0.52185202 0.50326598 -0.68876302 -0.52185202 0.56466299\n\t\t -0.71826398 -0.40651301 0.22923 -0.91881198 -0.32130599 0.28227001 -0.94511098 -0.164589\n\t\t 0.22923 -0.91881198 -0.32130599 0.56466299 -0.71826398 -0.40651301 0.56466299 -0.71826398\n\t\t -0.40651301 0.62516302 -0.75248998 -0.207197 0.28227001 -0.94511098 -0.164589 0.22923\n\t\t -0.91881198 -0.32130599 0.28227001 -0.94511098 -0.164589 -0.09928 -0.989685 -0.103278\n\t\t -0.09928 -0.989685 -0.103278 -0.13761 -0.97191101 -0.190927 0.22923 -0.91881198 -0.32130599\n\t\t 0.186257 -0.89865798 -0.39714199 0.22923 -0.91881198 -0.32130599 -0.13761 -0.97191101\n\t\t -0.190927 -0.13761 -0.97191101 -0.190927 -0.15784299 -0.965128 -0.20884 0.186257\n\t\t -0.89865798 -0.39714199 0.18128601 -0.899104 -0.39843199 0.186257 -0.89865798 -0.39714199\n\t\t -0.15784299 -0.965128 -0.20884 -0.15784299 -0.965128 -0.20884 -0.139562 -0.97613901\n\t\t -0.166357 0.18128601 -0.899104 -0.39843199 0.228709 -0.91569 -0.330459 0.18128601\n\t\t -0.899104 -0.39843199 -0.139562 -0.97613901 -0.166357 -0.139562 -0.97613901 -0.166357\n\t\t -0.075320996 -0.99464899 -0.070712999 0.228709 -0.91569 -0.330459 -0.075320996 -0.99464899\n\t\t -0.070712999 -0.139562 -0.97613901 -0.166357 -0.434477 -0.89565802 0.095008001 -0.434477\n\t\t -0.89565802 0.095008001 -0.365372 -0.90869898 0.201913 -0.075320996 -0.99464899 -0.070712999\n\t\t -0.47148499 -0.88178003 0.01291 -0.434477 -0.89565802 0.095008001 -0.139562 -0.97613901\n\t\t -0.166357 -0.139562 -0.97613901 -0.166357 -0.15784299 -0.965128 -0.20884 -0.47148499\n\t\t -0.88178003 0.01291 -0.15784299 -0.965128 -0.20884 -0.13761 -0.97191101 -0.190927\n\t\t -0.47659099 -0.878501 -0.033112999 -0.47659099 -0.878501 -0.033112999 -0.47148499\n\t\t -0.88178003 0.01291 -0.15784299 -0.965128 -0.20884 -0.13761 -0.97191101 -0.190927\n\t\t -0.09928 -0.989685 -0.103278 -0.460807 -0.88703698 -0.028688001 -0.460807 -0.88703698\n\t\t -0.028688001 -0.47659099 -0.878501 -0.033112999 -0.13761 -0.97191101 -0.190927 -0.074130997\n\t\t -0.99700397 0.022066001 -0.09928 -0.989685 -0.103278 0.28227001 -0.94511098 -0.164589\n\t\t 0.28227001 -0.94511098 -0.164589 0.31035101 -0.95028001 0.025513999 -0.074130997\n\t\t -0.99700397 0.022066001 0.31035101 -0.95028001 0.025513999 0.28227001 -0.94511098\n\t\t -0.164589 0.62516302 -0.75248998 -0.207197 0.62516302 -0.75248998 -0.207197 0.64911097\n\t\t -0.760414 0.020631 0.31035101 -0.95028001 0.025513999 0.64911097 -0.760414 0.020631\n\t\t 0.62516302 -0.75248998 -0.207197 0.86885399 -0.44170499 -0.223584 0.86885399 -0.44170499\n\t\t -0.223584 0.88962001 -0.45662001 0.0086669996 0.64911097 -0.760414 0.020631 0.88962001\n\t\t -0.45662001 0.0086669996 0.86885399 -0.44170499 -0.223584 0.97580999 -0.067446001\n\t\t -0.207956 0.97580999 -0.067446001 -0.207956 0.99631 -0.085634999 -0.0056759999 0.88962001\n\t\t -0.45662001 0.0086669996 0.99631 -0.085634999 -0.0056759999 0.97580999 -0.067446001\n\t\t -0.207956 0.93739003 0.31016499 -0.158424 0.93739003 0.31016499 -0.158424 0.954579\n\t\t 0.29753199 -0.015930999 0.99631 -0.085634999 -0.0056759999 0.954579 0.29753199 -0.015930999\n\t\t 0.93739003 0.31016499 -0.158424 0.767263 0.63670099 -0.07694 0.767263 0.63670099\n\t\t -0.07694 0.771972 0.63546199 -0.015748 0.954579 0.29753199 -0.015930999 0.771972\n\t\t 0.63546199 -0.015748 0.767263 0.63670099 -0.07694 0.48870301 0.87190098 0.030946\n\t\t 0.48870301 0.87190098 0.030946 0.473351 0.88087302 -0.001434 0.771972 0.63546199\n\t\t -0.015748 0.473351 0.88087302 -0.001434 0.48870301 0.87190098 0.030946 0.13697 0.97914702\n\t\t 0.150032 0.13697 0.97914702 0.150032 0.101963 0.99448299 0.024629001 0.473351 0.88087302\n\t\t -0.001434 0.46605501 0.882945 -0.056582 0.473351 0.88087302 -0.001434 0.101963 0.99448299\n\t\t 0.024629001 0.101963 0.99448299 0.024629001;\n\tsetAttr \".n[35026:35191]\" -type \"float3\"  0.092073999 0.98800898 -0.123936 0.46605501\n\t\t 0.882945 -0.056582 0.47547999 0.87036097 -0.12802599 0.46605501 0.882945 -0.056582\n\t\t 0.092073999 0.98800898 -0.123936 0.092073999 0.98800898 -0.123936 0.116856 0.95325202\n\t\t -0.27866599 0.47547999 0.87036097 -0.12802599 0.50494403 0.83818603 -0.20609801 0.47547999\n\t\t 0.87036097 -0.12802599 0.116856 0.95325202 -0.27866599 0.116856 0.95325202 -0.27866599\n\t\t 0.17392901 0.88984799 -0.42180601 0.50494403 0.83818603 -0.20609801 0.47547999 0.87036097\n\t\t -0.12802599 0.50494403 0.83818603 -0.20609801 0.75905299 0.65006799 0.035372 0.75905299\n\t\t 0.65006799 0.035372 0.76081097 0.64785999 0.037996002 0.47547999 0.87036097 -0.12802599\n\t\t 0.46605501 0.882945 -0.056582 0.47547999 0.87036097 -0.12802599 0.76081097 0.64785999\n\t\t 0.037996002 0.76081097 0.64785999 0.037996002 0.76744401 0.64072698 0.02234 0.46605501\n\t\t 0.882945 -0.056582 0.473351 0.88087302 -0.001434 0.46605501 0.882945 -0.056582 0.76744401\n\t\t 0.64072698 0.02234 0.76744401 0.64072698 0.02234 0.771972 0.63546199 -0.015748 0.473351\n\t\t 0.88087302 -0.001434 0.947523 0.30323699 0.101231 0.954579 0.29753199 -0.015930999\n\t\t 0.771972 0.63546199 -0.015748 0.771972 0.63546199 -0.015748 0.76744401 0.64072698\n\t\t 0.02234 0.947523 0.30323699 0.101231 0.92511898 0.32676601 0.19333699 0.947523 0.30323699\n\t\t 0.101231 0.76744401 0.64072698 0.02234 0.76744401 0.64072698 0.02234 0.76081097 0.64785999\n\t\t 0.037996002 0.92511898 0.32676601 0.19333699 0.89448601 0.36143899 0.26316699 0.92511898\n\t\t 0.32676601 0.19333699 0.76081097 0.64785999 0.037996002 0.76081097 0.64785999 0.037996002\n\t\t 0.75905299 0.65006799 0.035372 0.89448601 0.36143899 0.26316699 0.92511898 0.32676601\n\t\t 0.19333699 0.89448601 0.36143899 0.26316699 0.89439797 0.02115 0.44677201 0.89439797\n\t\t 0.02115 0.44677201 0.94755399 -0.039186001 0.317184 0.92511898 0.32676601 0.19333699\n\t\t 0.947523 0.30323699 0.101231 0.92511898 0.32676601 0.19333699 0.94755399 -0.039186001\n\t\t 0.317184 0.94755399 -0.039186001 0.317184 0.98283201 -0.076328002 0.16797601 0.947523\n\t\t 0.30323699 0.101231 0.954579 0.29753199 -0.015930999 0.947523 0.30323699 0.101231\n\t\t 0.98283201 -0.076328002 0.16797601 0.98283201 -0.076328002 0.16797601 0.99631 -0.085634999\n\t\t -0.0056759999 0.954579 0.29753199 -0.015930999 0.99631 -0.085634999 -0.0056759999\n\t\t 0.98283201 -0.076328002 0.16797601 0.87276697 -0.439908 0.21156099 0.87276697 -0.439908\n\t\t 0.21156099 0.88962001 -0.45662001 0.0086669996 0.99631 -0.085634999 -0.0056759999\n\t\t 0.83065802 -0.393217 0.39419401 0.87276697 -0.439908 0.21156099 0.98283201 -0.076328002\n\t\t 0.16797601 0.98283201 -0.076328002 0.16797601 0.94755399 -0.039186001 0.317184 0.83065802\n\t\t -0.393217 0.39419401 0.76296502 -0.31713101 0.56330401 0.83065802 -0.393217 0.39419401\n\t\t 0.94755399 -0.039186001 0.317184 0.94755399 -0.039186001 0.317184 0.89439797 0.02115\n\t\t 0.44677201 0.76296502 -0.31713101 0.56330401 0.83065802 -0.393217 0.39419401 0.76296502\n\t\t -0.31713101 0.56330401 0.52047998 -0.60755199 0.59998399 0.52047998 -0.60755199 0.59998399\n\t\t 0.59432697 -0.68832499 0.41591299 0.83065802 -0.393217 0.39419401 0.87276697 -0.439908\n\t\t 0.21156099 0.83065802 -0.393217 0.39419401 0.59432697 -0.68832499 0.41591299 0.59432697\n\t\t -0.68832499 0.41591299 0.63626701 -0.737988 0.224806 0.87276697 -0.439908 0.21156099\n\t\t 0.88962001 -0.45662001 0.0086669996 0.87276697 -0.439908 0.21156099 0.63626701 -0.737988\n\t\t 0.224806 0.63626701 -0.737988 0.224806 0.64911097 -0.760414 0.020631 0.88962001 -0.45662001\n\t\t 0.0086669996 0.64911097 -0.760414 0.020631 0.63626701 -0.737988 0.224806 0.30625799\n\t\t -0.92978901 0.204202 0.30625799 -0.92978901 0.204202 0.31035101 -0.95028001 0.025513999\n\t\t 0.64911097 -0.760414 0.020631 0.27048999 -0.88508099 0.37877101 0.30625799 -0.92978901\n\t\t 0.204202 0.63626701 -0.737988 0.224806 0.63626701 -0.737988 0.224806 0.59432697 -0.68832499\n\t\t 0.41591299 0.27048999 -0.88508099 0.37877101 0.20020799 -0.80986398 0.551395 0.27048999\n\t\t -0.88508099 0.37877101 0.59432697 -0.68832499 0.41591299 0.59432697 -0.68832499 0.41591299\n\t\t 0.52047998 -0.60755199 0.59998399 0.20020799 -0.80986398 0.551395 0.27048999 -0.88508099\n\t\t 0.37877101 0.20020799 -0.80986398 0.551395 -0.15326799 -0.894068 0.420894 -0.15326799\n\t\t -0.894068 0.420894 -0.097356997 -0.953646 0.28474799 0.27048999 -0.88508099 0.37877101\n\t\t 0.30625799 -0.92978901 0.204202 0.27048999 -0.88508099 0.37877101 -0.097356997 -0.953646\n\t\t 0.28474799 -0.097356997 -0.953646 0.28474799 -0.071842 -0.98592299 0.150979 0.30625799\n\t\t -0.92978901 0.204202 0.31035101 -0.95028001 0.025513999 0.30625799 -0.92978901 0.204202\n\t\t -0.071842 -0.98592299 0.150979 -0.071842 -0.98592299 0.150979 -0.074130997 -0.99700397\n\t\t 0.022066001 0.31035101 -0.95028001 0.025513999 -0.074130997 -0.99700397 0.022066001\n\t\t -0.071842 -0.98592299 0.150979 -0.44371501 -0.893291 0.07175 -0.44371501 -0.893291\n\t\t 0.07175 -0.44762501 -0.89412099 0.013398 -0.074130997 -0.99700397 0.022066001 -0.071842\n\t\t -0.98592299 0.150979 -0.097356997 -0.953646 0.28474799 -0.455713 -0.878528 0.143227\n\t\t -0.455713 -0.878528 0.143227 -0.44371501 -0.893291 0.07175 -0.071842 -0.98592299\n\t\t 0.150979 -0.097356997 -0.953646 0.28474799 -0.15326799 -0.894068 0.420894 -0.48720601\n\t\t -0.84446299 0.222515 -0.48720601 -0.84446299 0.222515 -0.455713 -0.878528 0.143227\n\t\t -0.097356997 -0.953646 0.28474799 -0.227825 -0.81232703 0.53686202 -0.15326799 -0.894068\n\t\t 0.420894 0.20020799 -0.80986398 0.551395 0.20020799 -0.80986398 0.551395 0.106604\n\t\t -0.70844299 0.69766998 -0.227825 -0.81232703 0.53686202 0.106604 -0.70844299 0.69766998\n\t\t 0.20020799 -0.80986398 0.551395;\n\tsetAttr \".n[35192:35357]\" -type \"float3\"  0.52047998 -0.60755199 0.59998399 0.52047998\n\t\t -0.60755199 0.59998399 0.42238301 -0.50118297 0.75525397 0.106604 -0.70844299 0.69766998\n\t\t 0.42238301 -0.50118297 0.75525397 0.52047998 -0.60755199 0.59998399 0.76296502 -0.31713101\n\t\t 0.56330401 0.76296502 -0.31713101 0.56330401 0.67495799 -0.22022501 0.704225 0.42238301\n\t\t -0.50118297 0.75525397 0.67495799 -0.22022501 0.704225 0.76296502 -0.31713101 0.56330401\n\t\t 0.89439797 0.02115 0.44677201 0.89439797 0.02115 0.44677201 0.82889402 0.095279999\n\t\t 0.55123299 0.67495799 -0.22022501 0.704225 0.82889402 0.095279999 0.55123299 0.89439797\n\t\t 0.02115 0.44677201 0.89448601 0.36143899 0.26316699 0.89448601 0.36143899 0.26316699\n\t\t 0.86060798 0.40096 0.313981 0.82889402 0.095279999 0.55123299 0.86060798 0.40096\n\t\t 0.313981 0.89448601 0.36143899 0.26316699 0.75905299 0.65006799 0.035372 0.75905299\n\t\t 0.65006799 0.035372 0.76188201 0.64725202 0.024506999 0.86060798 0.40096 0.313981\n\t\t 0.76188201 0.64725202 0.024506999 0.75905299 0.65006799 0.035372 0.50494403 0.83818603\n\t\t -0.20609801 0.50494403 0.83818603 -0.20609801 0.54515898 0.79178298 -0.275464 0.76188201\n\t\t 0.64725202 0.024506999 0.54515898 0.79178298 -0.275464 0.50494403 0.83818603 -0.20609801\n\t\t 0.17392901 0.88984799 -0.42180601 0.17392901 0.88984799 -0.42180601 0.246198 0.80765802\n\t\t -0.53579402 0.54515898 0.79178298 -0.275464 0.58764702 0.74042702 -0.32624999 0.54515898\n\t\t 0.79178298 -0.275464 0.246198 0.80765802 -0.53579402 0.246198 0.80765802 -0.53579402\n\t\t 0.319143 0.72017002 -0.61603802 0.58764702 0.74042702 -0.32624999 0.62982601 0.68796599\n\t\t -0.360585 0.58764702 0.74042702 -0.32624999 0.319143 0.72017002 -0.61603802 0.319143\n\t\t 0.72017002 -0.61603802 0.389063 0.63273102 -0.66953802 0.62982601 0.68796599 -0.360585\n\t\t 0.671184 0.636576 -0.37984601 0.62982601 0.68796599 -0.360585 0.389063 0.63273102\n\t\t -0.66953802 0.389063 0.63273102 -0.66953802 0.45659599 0.54815298 -0.70074898 0.671184\n\t\t 0.636576 -0.37984601 0.62982601 0.68796599 -0.360585 0.671184 0.636576 -0.37984601\n\t\t 0.78119498 0.62426698 0.0050969999 0.78119498 0.62426698 0.0050969999 0.77363199\n\t\t 0.63358003 0.0083619999 0.62982601 0.68796599 -0.360585 0.58764702 0.74042702 -0.32624999\n\t\t 0.62982601 0.68796599 -0.360585 0.77363199 0.63358003 0.0083619999 0.77363199 0.63358003\n\t\t 0.0083619999 0.76698399 0.64148802 0.015138 0.58764702 0.74042702 -0.32624999 0.54515898\n\t\t 0.79178298 -0.275464 0.58764702 0.74042702 -0.32624999 0.76698399 0.64148802 0.015138\n\t\t 0.76698399 0.64148802 0.015138 0.76188201 0.64725202 0.024506999 0.54515898 0.79178298\n\t\t -0.275464 0.82679999 0.44051701 0.34978199 0.86060798 0.40096 0.313981 0.76188201\n\t\t 0.64725202 0.024506999 0.76188201 0.64725202 0.024506999 0.76698399 0.64148802 0.015138\n\t\t 0.82679999 0.44051701 0.34978199 0.79532999 0.47777799 0.37306699 0.82679999 0.44051701\n\t\t 0.34978199 0.76698399 0.64148802 0.015138 0.76698399 0.64148802 0.015138 0.77363199\n\t\t 0.63358003 0.0083619999 0.79532999 0.47777799 0.37306699 0.76700997 0.51196098 0.38677099\n\t\t 0.79532999 0.47777799 0.37306699 0.77363199 0.63358003 0.0083619999 0.77363199 0.63358003\n\t\t 0.0083619999 0.78119498 0.62426698 0.0050969999 0.76700997 0.51196098 0.38677099\n\t\t 0.79532999 0.47777799 0.37306699 0.76700997 0.51196098 0.38677099 0.635162 0.32106099\n\t\t 0.70248801 0.635162 0.32106099 0.70248801 0.69492197 0.249006 0.67459601 0.79532999\n\t\t 0.47777799 0.37306699 0.82679999 0.44051701 0.34978199 0.79532999 0.47777799 0.37306699\n\t\t 0.69492197 0.249006 0.67459601 0.69492197 0.249006 0.67459601 0.76041502 0.17286099\n\t\t 0.62600899 0.82679999 0.44051701 0.34978199 0.86060798 0.40096 0.313981 0.82679999\n\t\t 0.44051701 0.34978199 0.76041502 0.17286099 0.62600899 0.76041502 0.17286099 0.62600899\n\t\t 0.82889402 0.095279999 0.55123299 0.86060798 0.40096 0.313981 0.82889402 0.095279999\n\t\t 0.55123299 0.76041502 0.17286099 0.62600899 0.58221602 -0.116522 0.80464101 0.58221602\n\t\t -0.116522 0.80464101 0.67495799 -0.22022501 0.704225 0.82889402 0.095279999 0.55123299\n\t\t 0.49361601 -0.013123 0.86958098 0.58221602 -0.116522 0.80464101 0.76041502 0.17286099\n\t\t 0.62600899 0.76041502 0.17286099 0.62600899 0.69492197 0.249006 0.67459601 0.49361601\n\t\t -0.013123 0.86958098 0.412379 0.085638002 0.90697801 0.49361601 -0.013123 0.86958098\n\t\t 0.69492197 0.249006 0.67459601 0.69492197 0.249006 0.67459601 0.635162 0.32106099\n\t\t 0.70248801 0.412379 0.085638002 0.90697801 0.49361601 -0.013123 0.86958098 0.412379\n\t\t 0.085638002 0.90697801 0.13321599 -0.159523 0.97816497 0.13321599 -0.159523 0.97816497\n\t\t 0.22319099 -0.270374 0.93652803 0.49361601 -0.013123 0.86958098 0.58221602 -0.116522\n\t\t 0.80464101 0.49361601 -0.013123 0.86958098 0.22319099 -0.270374 0.93652803 0.22319099\n\t\t -0.270374 0.93652803 0.32017499 -0.386004 0.86515301 0.58221602 -0.116522 0.80464101\n\t\t 0.67495799 -0.22022501 0.704225 0.58221602 -0.116522 0.80464101 0.32017499 -0.386004\n\t\t 0.86515301 0.32017499 -0.386004 0.86515301 0.42238301 -0.50118297 0.75525397 0.67495799\n\t\t -0.22022501 0.704225 0.42238301 -0.50118297 0.75525397 0.32017499 -0.386004 0.86515301\n\t\t 0.010957 -0.59858102 0.80098701 0.010957 -0.59858102 0.80098701 0.106604 -0.70844299\n\t\t 0.69766998 0.42238301 -0.50118297 0.75525397 -0.079654001 -0.48820901 0.869084 0.010957\n\t\t -0.59858102 0.80098701 0.32017499 -0.386004 0.86515301 0.32017499 -0.386004 0.86515301\n\t\t 0.22319099 -0.270374 0.93652803 -0.079654001 -0.48820901 0.869084 -0.16526 -0.38182199\n\t\t 0.90934098 -0.079654001 -0.48820901 0.869084 0.22319099 -0.270374 0.93652803 0.22319099\n\t\t -0.270374 0.93652803 0.13321599 -0.159523 0.97816497 -0.16526 -0.38182199 0.90934098;\n\tsetAttr \".n[35358:35523]\" -type \"float3\"  -0.079654001 -0.48820901 0.869084 -0.16526\n\t\t -0.38182199 0.90934098 -0.44411901 -0.55078501 0.70667797 -0.44411901 -0.55078501\n\t\t 0.70667797 -0.37483999 -0.636545 0.67402202 -0.079654001 -0.48820901 0.869084 0.010957\n\t\t -0.59858102 0.80098701 -0.079654001 -0.48820901 0.869084 -0.37483999 -0.636545 0.67402202\n\t\t -0.37483999 -0.636545 0.67402202 -0.30302501 -0.72458702 0.61899102 0.010957 -0.59858102\n\t\t 0.80098701 0.106604 -0.70844299 0.69766998 0.010957 -0.59858102 0.80098701 -0.30302501\n\t\t -0.72458702 0.61899102 -0.30302501 -0.72458702 0.61899102 -0.227825 -0.81232703 0.53686202\n\t\t 0.106604 -0.70844299 0.69766998 -0.227825 -0.81232703 0.53686202 -0.30302501 -0.72458702\n\t\t 0.61899102 -0.57570797 -0.74343997 0.340377 -0.57570797 -0.74343997 0.340377 -0.531187\n\t\t -0.79554498 0.29145899 -0.227825 -0.81232703 0.53686202 -0.30302501 -0.72458702 0.61899102\n\t\t -0.37483999 -0.636545 0.67402202 -0.61902303 -0.69092703 0.373404 -0.61902303 -0.69092703\n\t\t 0.373404 -0.57570797 -0.74343997 0.340377 -0.30302501 -0.72458702 0.61899102 -0.37483999\n\t\t -0.636545 0.67402202 -0.44411901 -0.55078501 0.70667797 -0.66166401 -0.63883603 0.39254299\n\t\t -0.66166401 -0.63883603 0.39254299 -0.61902303 -0.69092703 0.373404 -0.37483999 -0.636545\n\t\t 0.67402202 -0.51391101 -0.46715599 0.71948701 -0.44411901 -0.55078501 0.70667797\n\t\t -0.16526 -0.38182199 0.90934098 -0.16526 -0.38182199 0.90934098 -0.25324699 -0.27628899\n\t\t 0.927109 -0.51391101 -0.46715599 0.71948701 -0.25324699 -0.27628899 0.927109 -0.16526\n\t\t -0.38182199 0.90934098 0.13321599 -0.159523 0.97816497 0.13321599 -0.159523 0.97816497\n\t\t 0.040833998 -0.047212001 0.99804997 -0.25324699 -0.27628899 0.927109 0.040833998\n\t\t -0.047212001 0.99804997 0.13321599 -0.159523 0.97816497 0.412379 0.085638002 0.90697801\n\t\t 0.412379 0.085638002 0.90697801 0.32902601 0.188547 0.92530698 0.040833998 -0.047212001\n\t\t 0.99804997 0.32902601 0.188547 0.92530698 0.412379 0.085638002 0.90697801 0.635162\n\t\t 0.32106099 0.70248801 0.635162 0.32106099 0.70248801 0.57253999 0.39891601 0.71628499\n\t\t 0.32902601 0.188547 0.92530698 0.57253999 0.39891601 0.71628499 0.635162 0.32106099\n\t\t 0.70248801 0.76700997 0.51196098 0.38677099 0.76700997 0.51196098 0.38677099 0.73438197\n\t\t 0.55206102 0.39485699 0.57253999 0.39891601 0.71628499 0.73438197 0.55206102 0.39485699\n\t\t 0.76700997 0.51196098 0.38677099 0.78119498 0.62426698 0.0050969999 0.78119498 0.62426698\n\t\t 0.0050969999 0.78433198 0.62029397 0.0076600001 0.73438197 0.55206102 0.39485699\n\t\t 0.78433198 0.62029397 0.0076600001 0.78119498 0.62426698 0.0050969999 0.671184 0.636576\n\t\t -0.37984601 0.671184 0.636576 -0.37984601 0.71076 0.59005702 -0.382954 0.78433198\n\t\t 0.62029397 0.0076600001 0.71076 0.59005702 -0.382954 0.671184 0.636576 -0.37984601\n\t\t 0.45659599 0.54815298 -0.70074898 0.45659599 0.54815298 -0.70074898 0.52651399 0.46746001\n\t\t -0.71011603 0.71076 0.59005702 -0.382954 0.746898 0.55004901 -0.37361699 0.71076\n\t\t 0.59005702 -0.382954 0.52651399 0.46746001 -0.71011603 0.52651399 0.46746001 -0.71011603\n\t\t 0.60165298 0.38679901 -0.698856 0.746898 0.55004901 -0.37361699 0.78069001 0.51443797\n\t\t -0.35479 0.746898 0.55004901 -0.37361699 0.60165298 0.38679901 -0.698856 0.60165298\n\t\t 0.38679901 -0.698856 0.68414402 0.302077 -0.663849 0.78069001 0.51443797 -0.35479\n\t\t 0.811809 0.482355 -0.329088 0.78069001 0.51443797 -0.35479 0.68414402 0.302077 -0.663849\n\t\t 0.68414402 0.302077 -0.663849 0.77070999 0.21299601 -0.60053301 0.811809 0.482355\n\t\t -0.329088 0.78069001 0.51443797 -0.35479 0.811809 0.482355 -0.329088 0.73346198 0.67968798\n\t\t -0.0075690001 0.73346198 0.67968798 -0.0075690001 0.76055098 0.649216 0.0090030003\n\t\t 0.78069001 0.51443797 -0.35479 0.746898 0.55004901 -0.37361699 0.78069001 0.51443797\n\t\t -0.35479 0.76055098 0.649216 0.0090030003 0.76055098 0.649216 0.0090030003 0.77759397\n\t\t 0.62866199 0.011475 0.746898 0.55004901 -0.37361699 0.71076 0.59005702 -0.382954\n\t\t 0.746898 0.55004901 -0.37361699 0.77759397 0.62866199 0.011475 0.77759397 0.62866199\n\t\t 0.011475 0.78433198 0.62029397 0.0076600001 0.71076 0.59005702 -0.382954 0.68824202\n\t\t 0.609442 0.39357799 0.73438197 0.55206102 0.39485699 0.78433198 0.62029397 0.0076600001\n\t\t 0.78433198 0.62029397 0.0076600001 0.77759397 0.62866199 0.011475 0.68824202 0.609442\n\t\t 0.39357799 0.625763 0.68561101 0.371966 0.68824202 0.609442 0.39357799 0.77759397\n\t\t 0.62866199 0.011475 0.77759397 0.62866199 0.011475 0.76055098 0.649216 0.0090030003\n\t\t 0.625763 0.68561101 0.371966 0.546166 0.77551699 0.31666401 0.625763 0.68561101 0.371966\n\t\t 0.76055098 0.649216 0.0090030003 0.76055098 0.649216 0.0090030003 0.73346198 0.67968798\n\t\t -0.0075690001 0.546166 0.77551699 0.31666401 0.625763 0.68561101 0.371966 0.546166\n\t\t 0.77551699 0.31666401 0.27409101 0.754246 0.59664601 0.27409101 0.754246 0.59664601\n\t\t 0.39504001 0.61749399 0.68018001 0.625763 0.68561101 0.371966 0.68824202 0.609442\n\t\t 0.39357799 0.625763 0.68561101 0.371966 0.39504001 0.61749399 0.68018001 0.39504001\n\t\t 0.61749399 0.68018001 0.49429101 0.496611 0.71348101 0.68824202 0.609442 0.39357799\n\t\t 0.73438197 0.55206102 0.39485699 0.68824202 0.609442 0.39357799 0.49429101 0.496611\n\t\t 0.71348101 0.49429101 0.496611 0.71348101 0.57253999 0.39891601 0.71628499 0.73438197\n\t\t 0.55206102 0.39485699 0.57253999 0.39891601 0.71628499 0.49429101 0.496611 0.71348101\n\t\t 0.228742 0.310168 0.92275298 0.228742 0.310168 0.92275298 0.32902601 0.188547 0.92530698\n\t\t 0.57253999 0.39891601 0.71628499 0.105077 0.45555699 0.88398302 0.228742 0.310168\n\t\t 0.92275298 0.49429101 0.496611 0.71348101 0.49429101 0.496611 0.71348101;\n\tsetAttr \".n[35524:35689]\" -type \"float3\"  0.39504001 0.61749399 0.68018001 0.105077\n\t\t 0.45555699 0.88398302 -0.040316001 0.61761898 0.78544402 0.105077 0.45555699 0.88398302\n\t\t 0.39504001 0.61749399 0.68018001 0.39504001 0.61749399 0.68018001 0.27409101 0.754246\n\t\t 0.59664601 -0.040316001 0.61761898 0.78544402 0.105077 0.45555699 0.88398302 -0.040316001\n\t\t 0.61761898 0.78544402 -0.34746799 0.38802901 0.85363901 -0.34746799 0.38802901 0.85363901\n\t\t -0.198984 0.22584 0.95362598 0.105077 0.45555699 0.88398302 0.228742 0.310168 0.92275298\n\t\t 0.105077 0.45555699 0.88398302 -0.198984 0.22584 0.95362598 -0.198984 0.22584 0.95362598\n\t\t -0.068026997 0.079259001 0.99453002 0.228742 0.310168 0.92275298 0.32902601 0.188547\n\t\t 0.92530698 0.228742 0.310168 0.92275298 -0.068026997 0.079259001 0.99453002 -0.068026997\n\t\t 0.079259001 0.99453002 0.040833998 -0.047212001 0.99804997 0.32902601 0.188547 0.92530698\n\t\t 0.040833998 -0.047212001 0.99804997 -0.068026997 0.079259001 0.99453002 -0.35401899\n\t\t -0.16275699 0.92096698 -0.35401899 -0.16275699 0.92096698 -0.25324699 -0.27628899\n\t\t 0.927109 0.040833998 -0.047212001 0.99804997 -0.47122401 -0.035799999 0.88128698\n\t\t -0.35401899 -0.16275699 0.92096698 -0.068026997 0.079259001 0.99453002 -0.068026997\n\t\t 0.079259001 0.99453002 -0.198984 0.22584 0.95362598 -0.47122401 -0.035799999 0.88128698\n\t\t -0.59990901 0.103093 0.79339802 -0.47122401 -0.035799999 0.88128698 -0.198984 0.22584\n\t\t 0.95362598 -0.198984 0.22584 0.95362598 -0.34746799 0.38802901 0.85363901 -0.59990901\n\t\t 0.103093 0.79339802 -0.47122401 -0.035799999 0.88128698 -0.59990901 0.103093 0.79339802\n\t\t -0.76181501 -0.193491 0.61822301 -0.76181501 -0.193491 0.61822301 -0.67278999 -0.29063201\n\t\t 0.68035799 -0.47122401 -0.035799999 0.88128698 -0.35401899 -0.16275699 0.92096698\n\t\t -0.47122401 -0.035799999 0.88128698 -0.67278999 -0.29063201 0.68035799 -0.67278999\n\t\t -0.29063201 0.68035799 -0.58936101 -0.381798 0.71195799 -0.35401899 -0.16275699 0.92096698\n\t\t -0.25324699 -0.27628899 0.927109 -0.35401899 -0.16275699 0.92096698 -0.58936101 -0.381798\n\t\t 0.71195799 -0.58936101 -0.381798 0.71195799 -0.51391101 -0.46715599 0.71948701 -0.25324699\n\t\t -0.27628899 0.927109 -0.51391101 -0.46715599 0.71948701 -0.58936101 -0.381798 0.71195799\n\t\t -0.73947698 -0.54607803 0.393666 -0.73947698 -0.54607803 0.393666 -0.70184398 -0.59017599\n\t\t 0.39888299 -0.51391101 -0.46715599 0.71948701 -0.58936101 -0.381798 0.71195799 -0.67278999\n\t\t -0.29063201 0.68035799 -0.77631599 -0.50396401 0.37862101 -0.77631599 -0.50396401\n\t\t 0.37862101 -0.73947698 -0.54607803 0.393666 -0.58936101 -0.381798 0.71195799 -0.67278999\n\t\t -0.29063201 0.68035799 -0.76181501 -0.193491 0.61822301 -0.81290901 -0.46276301 0.35359499\n\t\t -0.81290901 -0.46276301 0.35359499 -0.77631599 -0.50396401 0.37862101 -0.67278999\n\t\t -0.29063201 0.68035799 -0.83766001 -0.113074 0.53435999 -0.76181501 -0.193491 0.61822301\n\t\t -0.59990901 0.103093 0.79339802 -0.59990901 0.103093 0.79339802 -0.70740402 0.21888299\n\t\t 0.67206299 -0.83766001 -0.113074 0.53435999 -0.70740402 0.21888299 0.67206299 -0.59990901\n\t\t 0.103093 0.79339802 -0.34746799 0.38802901 0.85363901 -0.34746799 0.38802901 0.85363901\n\t\t -0.47212899 0.52050102 0.71145803 -0.70740402 0.21888299 0.67206299 -0.47212899 0.52050102\n\t\t 0.71145803 -0.34746799 0.38802901 0.85363901 -0.040316001 0.61761898 0.78544402 -0.040316001\n\t\t 0.61761898 0.78544402 -0.164984 0.74691403 0.64412701 -0.47212899 0.52050102 0.71145803\n\t\t -0.164984 0.74691403 0.64412701 -0.040316001 0.61761898 0.78544402 0.27409101 0.754246\n\t\t 0.59664601 0.27409101 0.754246 0.59664601 0.16852599 0.86198002 0.478111 -0.164984\n\t\t 0.74691403 0.64412701 0.16852599 0.86198002 0.478111 0.27409101 0.754246 0.59664601\n\t\t 0.546166 0.77551699 0.31666401 0.546166 0.77551699 0.31666401 0.47723201 0.84587699\n\t\t 0.238204 0.16852599 0.86198002 0.478111 0.47723201 0.84587699 0.238204 0.546166 0.77551699\n\t\t 0.31666401 0.73346198 0.67968798 -0.0075690001 0.73346198 0.67968798 -0.0075690001\n\t\t 0.71236902 0.70086402 -0.036316998 0.47723201 0.84587699 0.238204 0.71236902 0.70086402\n\t\t -0.036316998 0.73346198 0.67968798 -0.0075690001 0.811809 0.482355 -0.329088 0.811809\n\t\t 0.482355 -0.329088 0.84025902 0.44900101 -0.30391201 0.71236902 0.70086402 -0.036316998\n\t\t 0.84025902 0.44900101 -0.30391201 0.811809 0.482355 -0.329088 0.77070999 0.21299601\n\t\t -0.60053301 0.77070999 0.21299601 -0.60053301 0.84206498 0.12952501 -0.52359301 0.84025902\n\t\t 0.44900101 -0.30391201 0.86540997 0.420955 -0.27177599 0.84025902 0.44900101 -0.30391201\n\t\t 0.84206498 0.12952501 -0.52359301 0.84206498 0.12952501 -0.52359301 0.89341497 0.070377\n\t\t -0.44368601 0.86540997 0.420955 -0.27177599 0.89266002 0.39650699 -0.21433701 0.86540997\n\t\t 0.420955 -0.27177599 0.89341497 0.070377 -0.44368601 0.89341497 0.070377 -0.44368601\n\t\t 0.94166201 0.023499999 -0.33573899 0.89266002 0.39650699 -0.21433701 0.91908503 0.378041\n\t\t -0.111212 0.89266002 0.39650699 -0.21433701 0.94166201 0.023499999 -0.33573899 0.94166201\n\t\t 0.023499999 -0.33573899 0.98539501 -0.0068970001 -0.17014299 0.91908503 0.378041\n\t\t -0.111212 0.89266002 0.39650699 -0.21433701 0.91908503 0.378041 -0.111212 0.71089703\n\t\t 0.70253497 -0.032717001 0.71089703 0.70253497 -0.032717001 0.70471698 0.70725101\n\t\t -0.056308001 0.89266002 0.39650699 -0.21433701 0.86540997 0.420955 -0.27177599 0.89266002\n\t\t 0.39650699 -0.21433701 0.70471698 0.70725101 -0.056308001 0.70471698 0.70725101 -0.056308001\n\t\t 0.70477903 0.70725101 -0.055514 0.86540997 0.420955 -0.27177599 0.84025902 0.44900101\n\t\t -0.30391201 0.86540997 0.420955 -0.27177599 0.70477903 0.70725101 -0.055514 0.70477903\n\t\t 0.70725101 -0.055514 0.71236902 0.70086402 -0.036316998 0.84025902 0.44900101 -0.30391201\n\t\t 0.43703899 0.88317299 0.17029899 0.47723201 0.84587699 0.238204;\n\tsetAttr \".n[35690:35855]\" -type \"float3\"  0.71236902 0.70086402 -0.036316998 0.71236902\n\t\t 0.70086402 -0.036316998 0.70477903 0.70725101 -0.055514 0.43703899 0.88317299 0.17029899\n\t\t 0.41044801 0.90500599 0.11179 0.43703899 0.88317299 0.17029899 0.70477903 0.70725101\n\t\t -0.055514 0.70477903 0.70725101 -0.055514 0.70471698 0.70725101 -0.056308001 0.41044801\n\t\t 0.90500599 0.11179 0.70471698 0.70725101 -0.056308001 0.71089703 0.70253497 -0.032717001\n\t\t 0.397515 0.91610199 0.052340999 0.397515 0.91610199 0.052340999 0.41044801 0.90500599\n\t\t 0.11179 0.70471698 0.70725101 -0.056308001 0.41044801 0.90500599 0.11179 0.397515\n\t\t 0.91610199 0.052340999 0.026551999 0.991 0.131203 0.026551999 0.991 0.131203 0.056857001\n\t\t 0.96313101 0.26295501 0.41044801 0.90500599 0.11179 0.43703899 0.88317299 0.17029899\n\t\t 0.41044801 0.90500599 0.11179 0.056857001 0.96313101 0.26295501 0.056857001 0.96313101\n\t\t 0.26295501 0.103735 0.923154 0.37017101 0.43703899 0.88317299 0.17029899 0.47723201\n\t\t 0.84587699 0.238204 0.43703899 0.88317299 0.17029899 0.103735 0.923154 0.37017101\n\t\t 0.103735 0.923154 0.37017101 0.16852599 0.86198002 0.478111 0.47723201 0.84587699\n\t\t 0.238204 0.16852599 0.86198002 0.478111 0.103735 0.923154 0.37017101 -0.242505 0.82380301\n\t\t 0.51238602 -0.242505 0.82380301 0.51238602 -0.164984 0.74691403 0.64412701 0.16852599\n\t\t 0.86198002 0.478111 -0.301011 0.87757897 0.37315801 -0.242505 0.82380301 0.51238602\n\t\t 0.103735 0.923154 0.37017101 0.103735 0.923154 0.37017101 0.056857001 0.96313101\n\t\t 0.26295501 -0.301011 0.87757897 0.37315801 0.056857001 0.96313101 0.26295501 0.026551999\n\t\t 0.991 0.131203 -0.34633401 0.918571 0.19047099 -0.34633401 0.918571 0.19047099 -0.301011\n\t\t 0.87757897 0.37315801 0.056857001 0.96313101 0.26295501 -0.301011 0.87757897 0.37315801\n\t\t -0.34633401 0.918571 0.19047099 -0.66845399 0.71032602 0.220468 -0.66845399 0.71032602\n\t\t 0.220468 -0.61345798 0.66430199 0.42704901 -0.301011 0.87757897 0.37315801 -0.242505\n\t\t 0.82380301 0.51238602 -0.301011 0.87757897 0.37315801 -0.61345798 0.66430199 0.42704901\n\t\t -0.61345798 0.66430199 0.42704901 -0.55096602 0.60306299 0.576846 -0.242505 0.82380301\n\t\t 0.51238602 -0.164984 0.74691403 0.64412701 -0.242505 0.82380301 0.51238602 -0.55096602\n\t\t 0.60306299 0.576846 -0.55096602 0.60306299 0.576846 -0.47212899 0.52050102 0.71145803\n\t\t -0.164984 0.74691403 0.64412701 -0.47212899 0.52050102 0.71145803 -0.55096602 0.60306299\n\t\t 0.576846 -0.77775699 0.294451 0.55533099 -0.77775699 0.294451 0.55533099 -0.70740402\n\t\t 0.21888299 0.67206299 -0.47212899 0.52050102 0.71145803 -0.836918 0.354323 0.417162\n\t\t -0.77775699 0.294451 0.55533099 -0.55096602 0.60306299 0.576846 -0.55096602 0.60306299\n\t\t 0.576846 -0.61345798 0.66430199 0.42704901 -0.836918 0.354323 0.417162 -0.61345798\n\t\t 0.66430199 0.42704901 -0.66845399 0.71032602 0.220468 -0.891891 0.39681 0.216961\n\t\t -0.891891 0.39681 0.216961 -0.836918 0.354323 0.417162 -0.61345798 0.66430199 0.42704901\n\t\t -0.836918 0.354323 0.417162 -0.891891 0.39681 0.216961 -0.98334599 0.023041001 0.18027499\n\t\t -0.98334599 0.023041001 0.18027499 -0.93849897 -0.0097660003 0.34514299 -0.836918\n\t\t 0.354323 0.417162 -0.77775699 0.294451 0.55533099 -0.836918 0.354323 0.417162 -0.93849897\n\t\t -0.0097660003 0.34514299 -0.93849897 -0.0097660003 0.34514299 -0.89028198 -0.058109\n\t\t 0.45168701 -0.77775699 0.294451 0.55533099 -0.70740402 0.21888299 0.67206299 -0.77775699\n\t\t 0.294451 0.55533099 -0.89028198 -0.058109 0.45168701 -0.89028198 -0.058109 0.45168701\n\t\t -0.83766001 -0.113074 0.53435999 -0.70740402 0.21888299 0.67206299 -0.83766001 -0.113074\n\t\t 0.53435999 -0.89028198 -0.058109 0.45168701 -0.87005901 -0.40559399 0.28016201 -0.87005901\n\t\t -0.40559399 0.28016201 -0.84470803 -0.43053299 0.31797901 -0.83766001 -0.113074 0.53435999\n\t\t -0.89028198 -0.058109 0.45168701 -0.93849897 -0.0097660003 0.34514299 -0.89942402\n\t\t -0.37696999 0.221201 -0.89942402 -0.37696999 0.221201 -0.87005901 -0.40559399 0.28016201\n\t\t -0.89028198 -0.058109 0.45168701 -0.91198701 0.40728399 0.048983999 -0.891891 0.39681\n\t\t 0.216961 -0.66845399 0.71032602 0.220468 -0.98334599 0.023041001 0.18027499 -0.891891\n\t\t 0.39681 0.216961 -0.91198701 0.40728399 0.048983999 -0.66845399 0.71032602 0.220468\n\t\t -0.68772602 0.724226 0.050296001 -0.91198701 0.40728399 0.048983999 -0.35960299 0.93210399\n\t\t 0.043214999 -0.68772602 0.724226 0.050296001 -0.66845399 0.71032602 0.220468 -0.68827599\n\t\t 0.72544903 0 -0.68772602 0.724226 0.050296001 -0.35960299 0.93210399 0.043214999\n\t\t -0.35960299 0.93210399 0.043214999 -0.35826799 0.93361902 0 -0.68827599 0.72544903\n\t\t 0 -0.35826799 0.93361902 0 -0.35960299 0.93210399 0.043214999 0.022706 0.99930602\n\t\t 0.029541999 0.026551999 0.991 0.131203 0.022706 0.99930602 0.029541999 -0.35960299\n\t\t 0.93210399 0.043214999 0.40190801 0.915609 0.011445 0.022706 0.99930602 0.029541999\n\t\t 0.026551999 0.991 0.131203 0.026307 0.999654 0 0.022706 0.99930602 0.029541999 0.40190801\n\t\t 0.915609 0.011445 0.022706 0.99930602 0.029541999 0.026307 0.999654 0 -0.35826799\n\t\t 0.93361902 0 0.40190801 0.915609 0.011445 0.406849 0.91349602 0 0.026307 0.999654\n\t\t 0 0.406849 0.91349602 0 0.40190801 0.915609 0.011445 0.720864 0.69303101 -0.0079049999\n\t\t 0.71089703 0.70253497 -0.032717001 0.720864 0.69303101 -0.0079049999 0.40190801 0.915609\n\t\t 0.011445 0.93120098 0.36366701 -0.024721 0.720864 0.69303101 -0.0079049999 0.71089703\n\t\t 0.70253497 -0.032717001 0.72547799 0.688245 0 0.720864 0.69303101 -0.0079049999 0.93120098\n\t\t 0.36366701 -0.024721;\n\tsetAttr \".n[35856:36021]\" -type \"float3\"  0.720864 0.69303101 -0.0079049999 0.72547799\n\t\t 0.688245 0 0.406849 0.91349602 0 0.93120098 0.36366701 -0.024721 0.93363303 0.35823101\n\t\t 0 0.72547799 0.688245 0 0.93363303 0.35823101 0 0.93120098 0.36366701 -0.024721 0.99909002\n\t\t -0.02176 -0.036683001 0.98539501 -0.0068970001 -0.17014299 0.99909002 -0.02176 -0.036683001\n\t\t 0.93120098 0.36366701 -0.024721 0.93120098 0.36366701 -0.024721 0.91908503 0.378041\n\t\t -0.111212 0.98539501 -0.0068970001 -0.17014299 0.71089703 0.70253497 -0.032717001\n\t\t 0.91908503 0.378041 -0.111212 0.93120098 0.36366701 -0.024721 0.99909002 -0.02176\n\t\t -0.036683001 0.99965501 -0.026277 0 0.93363303 0.35823101 0 0.40190801 0.915609 0.011445\n\t\t 0.397515 0.91610199 0.052340999 0.71089703 0.70253497 -0.032717001 0.026551999 0.991\n\t\t 0.131203 0.397515 0.91610199 0.052340999 0.40190801 0.915609 0.011445 0.99965501\n\t\t -0.026277 0 0.99909002 -0.02176 -0.036683001 0.91332698 -0.40496299 -0.042879999\n\t\t 0.91332698 -0.40496299 -0.042879999 0.91350698 -0.40682301 0 0.99965501 -0.026277\n\t\t 0 0.91350698 -0.40682301 0 0.91332698 -0.40496299 -0.042879999 0.68657798 -0.72579402\n\t\t -0.042817999 0.66794199 -0.71643603 -0.201426 0.68657798 -0.72579402 -0.042817999\n\t\t 0.91332698 -0.40496299 -0.042879999 0.35427099 -0.934416 -0.036867999 0.68657798\n\t\t -0.72579402 -0.042817999 0.66794199 -0.71643603 -0.201426 0.68829203 -0.72543299\n\t\t 0 0.68657798 -0.72579402 -0.042817999 0.35427099 -0.934416 -0.036867999 0.68657798\n\t\t -0.72579402 -0.042817999 0.68829203 -0.72543299 0 0.91350698 -0.40682301 0 0.35427099\n\t\t -0.934416 -0.036867999 0.35829401 -0.93360901 0 0.68829203 -0.72543299 0 0.35829401\n\t\t -0.93360901 0 0.35427099 -0.934416 -0.036867999 -0.032288998 -0.99915802 -0.025331\n\t\t -0.04941 -0.99182898 -0.117619 -0.032288998 -0.99915802 -0.025331 0.35427099 -0.934416\n\t\t -0.036867999 -0.412074 -0.911098 -0.0097970003 -0.032288998 -0.99915802 -0.025331\n\t\t -0.04941 -0.99182898 -0.117619 -0.026216 -0.99965602 0 -0.032288998 -0.99915802 -0.025331\n\t\t -0.412074 -0.911098 -0.0097970003 -0.032288998 -0.99915802 -0.025331 -0.026216 -0.99965602\n\t\t 0 0.35829401 -0.93360901 0 -0.412074 -0.911098 -0.0097970003 -0.40676099 -0.913535\n\t\t 0 -0.026216 -0.99965602 0 -0.40676099 -0.913535 0 -0.412074 -0.911098 -0.0097970003\n\t\t -0.72907197 -0.68439198 0.0078130001 -0.73151398 -0.68076098 0.038088001 -0.72907197\n\t\t -0.68439198 0.0078130001 -0.412074 -0.911098 -0.0097970003 -0.93466502 -0.354597\n\t\t 0.025727 -0.72907197 -0.68439198 0.0078130001 -0.73151398 -0.68076098 0.038088001\n\t\t -0.72540402 -0.68832397 0 -0.72907197 -0.68439198 0.0078130001 -0.93466502 -0.354597\n\t\t 0.025727 -0.72907197 -0.68439198 0.0078130001 -0.72540402 -0.68832397 0 -0.40676099\n\t\t -0.913535 0 -0.93466502 -0.354597 0.025727 -0.933599 -0.35832101 0 -0.72540402 -0.68832397\n\t\t 0 -0.73151398 -0.68076098 0.038088001 -0.927486 -0.35512501 0.116859 -0.93466502\n\t\t -0.354597 0.025727 -0.89942402 -0.37696999 0.221201 -0.927486 -0.35512501 0.116859\n\t\t -0.73151398 -0.68076098 0.038088001 -0.73151398 -0.68076098 0.038088001 -0.72129798\n\t\t -0.68958801 0.064792998 -0.89942402 -0.37696999 0.221201 -0.87005901 -0.40559399\n\t\t 0.28016201 -0.89942402 -0.37696999 0.221201 -0.72129798 -0.68958801 0.064792998 -0.72129798\n\t\t -0.68958801 0.064792998 -0.716317 -0.69464898 0.065982997 -0.87005901 -0.40559399\n\t\t 0.28016201 -0.84470803 -0.43053299 0.31797901 -0.87005901 -0.40559399 0.28016201\n\t\t -0.716317 -0.69464898 0.065982997 -0.716317 -0.69464898 0.065982997 -0.72479099 -0.68688703\n\t\t 0.05353 -0.84470803 -0.43053299 0.31797901 -0.81290901 -0.46276301 0.35359499 -0.84470803\n\t\t -0.43053299 0.31797901 -0.72479099 -0.68688703 0.05353 -0.72479099 -0.68688703 0.05353\n\t\t -0.74445498 -0.66669202 0.036164999 -0.81290901 -0.46276301 0.35359499 -0.77631599\n\t\t -0.50396401 0.37862101 -0.81290901 -0.46276301 0.35359499 -0.74445498 -0.66669202\n\t\t 0.036164999 -0.74445498 -0.66669202 0.036164999 -0.76463002 -0.64420199 0.018556001\n\t\t -0.77631599 -0.50396401 0.37862101 -0.73947698 -0.54607803 0.393666 -0.77631599 -0.50396401\n\t\t 0.37862101 -0.76463002 -0.64420199 0.018556001 -0.76463002 -0.64420199 0.018556001\n\t\t -0.77782297 -0.62836897 0.011964 -0.73947698 -0.54607803 0.393666 -0.70184398 -0.59017599\n\t\t 0.39888299 -0.73947698 -0.54607803 0.393666 -0.77782297 -0.62836897 0.011964 -0.77782297\n\t\t -0.62836897 0.011964 -0.78267002 -0.62232101 0.011994 -0.70184398 -0.59017599 0.39888299\n\t\t -0.66166401 -0.63883603 0.39254299 -0.70184398 -0.59017599 0.39888299 -0.78267002\n\t\t -0.62232101 0.011994 -0.78267002 -0.62232101 0.011994 -0.77847099 -0.62755603 0.012513\n\t\t -0.66166401 -0.63883603 0.39254299 -0.61902303 -0.69092703 0.373404 -0.66166401 -0.63883603\n\t\t 0.39254299 -0.77847099 -0.62755603 0.012513 -0.77847099 -0.62755603 0.012513 -0.76950902\n\t\t -0.63855201 0.010346 -0.61902303 -0.69092703 0.373404 -0.57570797 -0.74343997 0.340377\n\t\t -0.61902303 -0.69092703 0.373404 -0.76950902 -0.63855201 0.010346 -0.76950902 -0.63855201\n\t\t 0.010346 -0.760809 -0.64895701 0.0049439999 -0.57570797 -0.74343997 0.340377 -0.531187\n\t\t -0.79554498 0.29145899 -0.57570797 -0.74343997 0.340377 -0.760809 -0.64895701 0.0049439999\n\t\t -0.760809 -0.64895701 0.0049439999 -0.752509 -0.65857202 -0.0036319999 -0.531187\n\t\t -0.79554498 0.29145899 -0.48720601 -0.84446299 0.222515 -0.531187 -0.79554498 0.29145899\n\t\t -0.752509 -0.65857202 -0.0036319999 -0.752509 -0.65857202 -0.0036319999 -0.74524701\n\t\t -0.66659898 -0.015900001 -0.48720601 -0.84446299 0.222515 -0.455713 -0.878528 0.143227\n\t\t -0.48720601 -0.84446299 0.222515 -0.74524701 -0.66659898 -0.015900001 -0.74524701\n\t\t -0.66659898 -0.015900001;\n\tsetAttr \".n[36022:36187]\" -type \"float3\"  -0.74420798 -0.66745299 -0.025728 -0.455713\n\t\t -0.878528 0.143227 -0.44371501 -0.893291 0.07175 -0.455713 -0.878528 0.143227 -0.74420798\n\t\t -0.66745299 -0.025728 -0.74420798 -0.66745299 -0.025728 -0.74884999 -0.66245103 -0.019563001\n\t\t -0.44371501 -0.893291 0.07175 -0.44762501 -0.89412099 0.013398 -0.44371501 -0.893291\n\t\t 0.07175 -0.74884999 -0.66245103 -0.019563001 -0.74884999 -0.66245103 -0.019563001\n\t\t -0.75312299 -0.65784198 0.0070810001 -0.44762501 -0.89412099 0.013398 -0.460807 -0.88703698\n\t\t -0.028688001 -0.44762501 -0.89412099 0.013398 -0.75312299 -0.65784198 0.0070810001\n\t\t -0.75312299 -0.65784198 0.0070810001 -0.750368 -0.65856802 0.056887001 -0.460807\n\t\t -0.88703698 -0.028688001 -0.47659099 -0.878501 -0.033112999 -0.460807 -0.88703698\n\t\t -0.028688001 -0.750368 -0.65856802 0.056887001 -0.750368 -0.65856802 0.056887001\n\t\t -0.73860401 -0.660505 0.13489699 -0.47659099 -0.878501 -0.033112999 -0.47148499 -0.88178003\n\t\t 0.01291 -0.47659099 -0.878501 -0.033112999 -0.73860401 -0.660505 0.13489699 -0.73860401\n\t\t -0.660505 0.13489699 -0.706743 -0.66795301 0.23313899 -0.47148499 -0.88178003 0.01291\n\t\t -0.434477 -0.89565802 0.095008001 -0.47148499 -0.88178003 0.01291 -0.706743 -0.66795301\n\t\t 0.23313899 -0.706743 -0.66795301 0.23313899 -0.656075 -0.67618799 0.33516401 -0.434477\n\t\t -0.89565802 0.095008001 -0.365372 -0.90869898 0.201913 -0.434477 -0.89565802 0.095008001\n\t\t -0.656075 -0.67618799 0.33516401 -0.656075 -0.67618799 0.33516401 -0.59363598 -0.67912102\n\t\t 0.43173 -0.365372 -0.90869898 0.201913 -0.29615799 -0.90983802 0.290665 -0.365372\n\t\t -0.90869898 0.201913 -0.59363598 -0.67912102 0.43173 -0.365372 -0.90869898 0.201913\n\t\t -0.29615799 -0.90983802 0.290665 -0.002533 -0.99957502 0.029022999 0.040346999 -0.99389702\n\t\t 0.102668 -0.002533 -0.99957502 0.029022999 -0.29615799 -0.90983802 0.290665 -0.29615799\n\t\t -0.90983802 0.290665 -0.264599 -0.90186501 0.34150699 0.040346999 -0.99389702 0.102668\n\t\t -0.002533 -0.99957502 0.029022999 -0.075320996 -0.99464899 -0.070712999 -0.365372\n\t\t -0.90869898 0.201913 -0.59363598 -0.67912102 0.43173 -0.54156601 -0.67771298 0.49740499\n\t\t -0.29615799 -0.90983802 0.290665 -0.264599 -0.90186501 0.34150699 -0.29615799 -0.90983802\n\t\t 0.290665 -0.54156601 -0.67771298 0.49740499 -0.54156601 -0.67771298 0.49740499 -0.52883899\n\t\t -0.67011303 0.52084303 -0.264599 -0.90186501 0.34150699 -0.30744699 -0.900612 0.30720299\n\t\t -0.264599 -0.90186501 0.34150699 -0.52883899 -0.67011303 0.52084303 -0.52883899 -0.67011303\n\t\t 0.52084303 -0.59833002 -0.67328602 0.43438101 -0.30744699 -0.900612 0.30720299 -0.59833002\n\t\t -0.67328602 0.43438101 -0.52883899 -0.67011303 0.52084303 -0.71093601 -0.339187 0.61605299\n\t\t -0.71093601 -0.339187 0.61605299 -0.79624701 -0.34413499 0.49755499 -0.59833002 -0.67328602\n\t\t 0.43438101 -0.70440698 -0.34791601 0.61868 -0.71093601 -0.339187 0.61605299 -0.52883899\n\t\t -0.67011303 0.52084303 -0.52883899 -0.67011303 0.52084303 -0.54156601 -0.67771298\n\t\t 0.49740499 -0.70440698 -0.34791601 0.61868 -0.73187 -0.353468 0.58260298 -0.70440698\n\t\t -0.34791601 0.61868 -0.54156601 -0.67771298 0.49740499 -0.54156601 -0.67771298 0.49740499\n\t\t -0.59363598 -0.67912102 0.43173 -0.73187 -0.353468 0.58260298 -0.70440698 -0.34791601\n\t\t 0.61868 -0.73187 -0.353468 0.58260298 -0.76717103 0.019197 0.641155 -0.76717103 0.019197\n\t\t 0.641155 -0.76480103 0.029053999 0.64361101 -0.70440698 -0.34791601 0.61868 -0.71093601\n\t\t -0.339187 0.61605299 -0.70440698 -0.34791601 0.61868 -0.76480103 0.029053999 0.64361101\n\t\t -0.76480103 0.029053999 0.64361101 -0.785227 0.039430998 0.61795098 -0.71093601 -0.339187\n\t\t 0.61605299 -0.79624701 -0.34413499 0.49755499 -0.71093601 -0.339187 0.61605299 -0.785227\n\t\t 0.039430998 0.61795098 -0.785227 0.039430998 0.61795098 -0.87066501 0.035188001 0.49061701\n\t\t -0.79624701 -0.34413499 0.49755499 -0.87066501 0.035188001 0.49061701 -0.785227 0.039430998\n\t\t 0.61795098 -0.74221098 0.41033801 0.529854 -0.74221098 0.41033801 0.529854 -0.81397003\n\t\t 0.40623701 0.41523999 -0.87066501 0.035188001 0.49061701 -0.713579 0.401333 0.57422698\n\t\t -0.74221098 0.41033801 0.529854 -0.785227 0.039430998 0.61795098 -0.785227 0.039430998\n\t\t 0.61795098 -0.76480103 0.029053999 0.64361101 -0.713579 0.401333 0.57422698 -0.69301498\n\t\t 0.39021 0.60619003 -0.713579 0.401333 0.57422698 -0.76480103 0.029053999 0.64361101\n\t\t -0.76480103 0.029053999 0.64361101 -0.76717103 0.019197 0.641155 -0.69301498 0.39021\n\t\t 0.60619003 -0.713579 0.401333 0.57422698 -0.69301498 0.39021 0.60619003 -0.51125997\n\t\t 0.71003199 0.48421901 -0.51125997 0.71003199 0.48421901 -0.55346 0.71807897 0.42195401\n\t\t -0.713579 0.401333 0.57422698 -0.74221098 0.41033801 0.529854 -0.713579 0.401333\n\t\t 0.57422698 -0.55346 0.71807897 0.42195401 -0.55346 0.71807897 0.42195401 -0.58835101\n\t\t 0.72175002 0.36458299 -0.74221098 0.41033801 0.529854 -0.81397003 0.40623701 0.41523999\n\t\t -0.74221098 0.41033801 0.529854 -0.58835101 0.72175002 0.36458299 -0.58835101 0.72175002\n\t\t 0.36458299 -0.64005202 0.71601403 0.27867201 -0.81397003 0.40623701 0.41523999 -0.64005202\n\t\t 0.71601403 0.27867201 -0.58835101 0.72175002 0.36458299 -0.344598 0.92767501 0.143778\n\t\t -0.344598 0.92767501 0.143778 -0.37392199 0.92284203 0.092442997 -0.64005202 0.71601403\n\t\t 0.27867201 -0.30385 0.92961699 0.208538 -0.344598 0.92767501 0.143778 -0.58835101\n\t\t 0.72175002 0.36458299 -0.58835101 0.72175002 0.36458299 -0.55346 0.71807897 0.42195401\n\t\t -0.30385 0.92961699 0.208538 -0.242869 0.924932 0.292431 -0.30385 0.92961699 0.208538\n\t\t -0.55346 0.71807897 0.42195401 -0.55346 0.71807897 0.42195401 -0.51125997 0.71003199\n\t\t 0.48421901 -0.242869 0.924932 0.292431 -0.30385 0.92961699 0.208538 -0.242869 0.924932\n\t\t 0.292431;\n\tsetAttr \".n[36188:36353]\" -type \"float3\"  0.070164002 0.99585003 0.057955999 0.070164002\n\t\t 0.99585003 0.057955999 -0.001831 0.99934298 -0.036196001 -0.30385 0.92961699 0.208538\n\t\t -0.344598 0.92767501 0.143778 -0.30385 0.92961699 0.208538 -0.001831 0.99934298 -0.036196001\n\t\t -0.001831 0.99934298 -0.036196001 -0.046266999 0.99344802 -0.104496 -0.344598 0.92767501\n\t\t 0.143778 -0.37392199 0.92284203 0.092442997 -0.344598 0.92767501 0.143778 -0.046266999\n\t\t 0.99344802 -0.104496 -0.046266999 0.99344802 -0.104496 -0.050783999 0.99080902 -0.12537301\n\t\t -0.37392199 0.92284203 0.092442997 -0.47741699 0.69544798 0.53705198 -0.51125997\n\t\t 0.71003199 0.48421901 -0.69301498 0.39021 0.60619003 -0.69301498 0.39021 0.60619003\n\t\t -0.68766397 0.375664 0.62128401 -0.47741699 0.69544798 0.53705198 -0.68766397 0.375664\n\t\t 0.62128401 -0.69301498 0.39021 0.60619003 -0.76717103 0.019197 0.641155 -0.76717103\n\t\t 0.019197 0.641155 -0.789554 0.0068359999 0.61364299 -0.68766397 0.375664 0.62128401\n\t\t -0.789554 0.0068359999 0.61364299 -0.76717103 0.019197 0.641155 -0.73187 -0.353468\n\t\t 0.58260298 -0.73187 -0.353468 0.58260298 -0.77799499 -0.359669 0.51513302 -0.789554\n\t\t 0.0068359999 0.61364299 -0.77799499 -0.359669 0.51513302 -0.73187 -0.353468 0.58260298\n\t\t -0.59363598 -0.67912102 0.43173 -0.59363598 -0.67912102 0.43173 -0.656075 -0.67618799\n\t\t 0.33516401 -0.77799499 -0.359669 0.51513302 -0.83393502 -0.35743999 0.42046201 -0.77799499\n\t\t -0.359669 0.51513302 -0.656075 -0.67618799 0.33516401 -0.656075 -0.67618799 0.33516401\n\t\t -0.706743 -0.66795301 0.23313899 -0.83393502 -0.35743999 0.42046201 -0.889691 -0.34669599\n\t\t 0.29707199 -0.83393502 -0.35743999 0.42046201 -0.706743 -0.66795301 0.23313899 -0.706743\n\t\t -0.66795301 0.23313899 -0.73860401 -0.660505 0.13489699 -0.889691 -0.34669599 0.29707199\n\t\t -0.93067598 -0.33281001 0.151923 -0.889691 -0.34669599 0.29707199 -0.73860401 -0.660505\n\t\t 0.13489699 -0.73860401 -0.660505 0.13489699 -0.750368 -0.65856802 0.056887001 -0.93067598\n\t\t -0.33281001 0.151923 -0.889691 -0.34669599 0.29707199 -0.93067598 -0.33281001 0.151923\n\t\t -0.96850902 0.048617002 0.244187 -0.96850902 0.048617002 0.244187 -0.90355599 0.022430999\n\t\t 0.42788199 -0.889691 -0.34669599 0.29707199 -0.83393502 -0.35743999 0.42046201 -0.889691\n\t\t -0.34669599 0.29707199 -0.90355599 0.022430999 0.42788199 -0.90355599 0.022430999\n\t\t 0.42788199 -0.83715701 0.0064090001 0.54692501 -0.83393502 -0.35743999 0.42046201\n\t\t -0.77799499 -0.359669 0.51513302 -0.83393502 -0.35743999 0.42046201 -0.83715701 0.0064090001\n\t\t 0.54692501 -0.83715701 0.0064090001 0.54692501 -0.789554 0.0068359999 0.61364299\n\t\t -0.77799499 -0.359669 0.51513302 -0.71491802 0.37368 0.59097898 -0.68766397 0.375664\n\t\t 0.62128401 -0.789554 0.0068359999 0.61364299 -0.789554 0.0068359999 0.61364299 -0.83715701\n\t\t 0.0064090001 0.54692501 -0.71491802 0.37368 0.59097898 -0.77412301 0.39315 0.496153\n\t\t -0.71491802 0.37368 0.59097898 -0.83715701 0.0064090001 0.54692501 -0.83715701 0.0064090001\n\t\t 0.54692501 -0.90355599 0.022430999 0.42788199 -0.77412301 0.39315 0.496153 -0.84914303\n\t\t 0.42956099 0.3073 -0.77412301 0.39315 0.496153 -0.90355599 0.022430999 0.42788199\n\t\t -0.90355599 0.022430999 0.42788199 -0.96850902 0.048617002 0.244187 -0.84914303 0.42956099\n\t\t 0.3073 -0.77412301 0.39315 0.496153 -0.84914303 0.42956099 0.3073 -0.59124899 0.74314302\n\t\t 0.31331 -0.59124899 0.74314302 0.31331 -0.52194399 0.705244 0.47979701 -0.77412301\n\t\t 0.39315 0.496153 -0.71491802 0.37368 0.59097898 -0.77412301 0.39315 0.496153 -0.52194399\n\t\t 0.705244 0.47979701 -0.52194399 0.705244 0.47979701 -0.48006999 0.68964601 0.54214603\n\t\t -0.71491802 0.37368 0.59097898 -0.68766397 0.375664 0.62128401 -0.71491802 0.37368\n\t\t 0.59097898 -0.48006999 0.68964601 0.54214603 -0.48006999 0.68964601 0.54214603 -0.47741699\n\t\t 0.69544798 0.53705198 -0.68766397 0.375664 0.62128401 -0.47741699 0.69544798 0.53705198\n\t\t -0.48006999 0.68964601 0.54214603 -0.166693 0.89843702 0.40623301 -0.166693 0.89843702\n\t\t 0.40623301 -0.185157 0.90951902 0.372145 -0.47741699 0.69544798 0.53705198 -0.51125997\n\t\t 0.71003199 0.48421901 -0.47741699 0.69544798 0.53705198 -0.185157 0.90951902 0.372145\n\t\t -0.185157 0.90951902 0.372145 -0.242869 0.924932 0.292431 -0.51125997 0.71003199\n\t\t 0.48421901 -0.189888 0.90591699 0.37849301 -0.166693 0.89843702 0.40623301 -0.48006999\n\t\t 0.68964601 0.54214603 -0.48006999 0.68964601 0.54214603 -0.52194399 0.705244 0.47979701\n\t\t -0.189888 0.90591699 0.37849301 -0.242964 0.936055 0.2545 -0.189888 0.90591699 0.37849301\n\t\t -0.52194399 0.705244 0.47979701 -0.52194399 0.705244 0.47979701 -0.59124899 0.74314302\n\t\t 0.31331 -0.242964 0.936055 0.2545 -0.189888 0.90591699 0.37849301 -0.242964 0.936055\n\t\t 0.2545 0.13697 0.97914702 0.150032 0.13697 0.97914702 0.150032 0.168037 0.96189702\n\t\t 0.21567801 -0.189888 0.90591699 0.37849301 -0.166693 0.89843702 0.40623301 -0.189888\n\t\t 0.90591699 0.37849301 0.168037 0.96189702 0.21567801 0.168037 0.96189702 0.21567801\n\t\t 0.17334899 0.96260798 0.20817199 -0.166693 0.89843702 0.40623301 -0.185157 0.90951902\n\t\t 0.372145 -0.166693 0.89843702 0.40623301 0.17334899 0.96260798 0.20817199 0.17334899\n\t\t 0.96260798 0.20817199 0.14097001 0.97824401 0.152201 -0.185157 0.90951902 0.372145\n\t\t -0.242869 0.924932 0.292431 -0.185157 0.90951902 0.372145 0.14097001 0.97824401 0.152201\n\t\t 0.14097001 0.97824401 0.152201 0.070164002 0.99585003 0.057955999 -0.242869 0.924932\n\t\t 0.292431 -0.64014 0.76566398 0.063083 -0.59124899 0.74314302 0.31331 -0.84914303\n\t\t 0.42956099 0.3073 -0.84914303 0.42956099 0.3073 -0.89011198 0.45271599 0.052430999\n\t\t -0.64014 0.76566398 0.063083;\n\tsetAttr \".n[36354:36519]\" -type \"float3\"  -0.89011198 0.45271599 0.052430999 -0.84914303\n\t\t 0.42956099 0.3073 -0.96850902 0.048617002 0.244187 -0.96850902 0.048617002 0.244187\n\t\t -0.99718899 0.068882003 0.029482 -0.89011198 0.45271599 0.052430999 -0.99718899 0.068882003\n\t\t 0.029482 -0.96850902 0.048617002 0.244187 -0.93067598 -0.33281001 0.151923 -0.93067598\n\t\t -0.33281001 0.151923 -0.94716501 -0.320544 0.011414 -0.99718899 0.068882003 0.029482\n\t\t -0.94716501 -0.320544 0.011414 -0.93067598 -0.33281001 0.151923 -0.750368 -0.65856802\n\t\t 0.056887001 -0.750368 -0.65856802 0.056887001 -0.75312299 -0.65784198 0.0070810001\n\t\t -0.94716501 -0.320544 0.011414 -0.93895602 -0.32738101 -0.105749 -0.94716501 -0.320544\n\t\t 0.011414 -0.75312299 -0.65784198 0.0070810001 -0.75312299 -0.65784198 0.0070810001\n\t\t -0.74884999 -0.66245103 -0.019563001 -0.93895602 -0.32738101 -0.105749 -0.91501802\n\t\t -0.35273799 -0.195748 -0.93895602 -0.32738101 -0.105749 -0.74884999 -0.66245103 -0.019563001\n\t\t -0.74884999 -0.66245103 -0.019563001 -0.74420798 -0.66745299 -0.025728 -0.91501802\n\t\t -0.35273799 -0.195748 -0.88475102 -0.387624 -0.25877199 -0.91501802 -0.35273799 -0.195748\n\t\t -0.74420798 -0.66745299 -0.025728 -0.74420798 -0.66745299 -0.025728 -0.74524701 -0.66659898\n\t\t -0.015900001 -0.88475102 -0.387624 -0.25877199 -0.91501802 -0.35273799 -0.195748\n\t\t -0.88475102 -0.387624 -0.25877199 -0.883959 -0.053957999 -0.464441 -0.883959 -0.053957999\n\t\t -0.464441 -0.94164997 0.012085 -0.33637601 -0.91501802 -0.35273799 -0.195748 -0.93895602\n\t\t -0.32738101 -0.105749 -0.91501802 -0.35273799 -0.195748 -0.94164997 0.012085 -0.33637601\n\t\t -0.94164997 0.012085 -0.33637601 -0.983886 0.057163 -0.169413 -0.93895602 -0.32738101\n\t\t -0.105749 -0.94716501 -0.320544 0.011414 -0.93895602 -0.32738101 -0.105749 -0.983886\n\t\t 0.057163 -0.169413 -0.983886 0.057163 -0.169413 -0.99718899 0.068882003 0.029482\n\t\t -0.94716501 -0.320544 0.011414 -0.87817401 0.43399 -0.20115501 -0.89011198 0.45271599\n\t\t 0.052430999 -0.99718899 0.068882003 0.029482 -0.99718899 0.068882003 0.029482 -0.983886\n\t\t 0.057163 -0.169413 -0.87817401 0.43399 -0.20115501 -0.82532799 0.373492 -0.42348301\n\t\t -0.87817401 0.43399 -0.20115501 -0.983886 0.057163 -0.169413 -0.983886 0.057163 -0.169413\n\t\t -0.94164997 0.012085 -0.33637601 -0.82532799 0.373492 -0.42348301 -0.74824601 0.28599799\n\t\t -0.59860897 -0.82532799 0.373492 -0.42348301 -0.94164997 0.012085 -0.33637601 -0.94164997\n\t\t 0.012085 -0.33637601 -0.883959 -0.053957999 -0.464441 -0.74824601 0.28599799 -0.59860897\n\t\t -0.82532799 0.373492 -0.42348301 -0.74824601 0.28599799 -0.59860897 -0.50209701 0.584131\n\t\t -0.63772202 -0.50209701 0.584131 -0.63772202 -0.585998 0.679142 -0.442009 -0.82532799\n\t\t 0.373492 -0.42348301 -0.87817401 0.43399 -0.20115501 -0.82532799 0.373492 -0.42348301\n\t\t -0.585998 0.679142 -0.442009 -0.585998 0.679142 -0.442009 -0.63717699 0.74414599\n\t\t -0.20063201 -0.87817401 0.43399 -0.20115501 -0.89011198 0.45271599 0.052430999 -0.87817401\n\t\t 0.43399 -0.20115501 -0.63717699 0.74414599 -0.20063201 -0.63717699 0.74414599 -0.20063201\n\t\t -0.64014 0.76566398 0.063083 -0.89011198 0.45271599 0.052430999 -0.64014 0.76566398\n\t\t 0.063083 -0.63717699 0.74414599 -0.20063201 -0.296523 0.93916202 -0.17334799 -0.296523\n\t\t 0.93916202 -0.17334799 -0.29008001 0.95563 0.051240999 -0.64014 0.76566398 0.063083\n\t\t -0.59124899 0.74314302 0.31331 -0.64014 0.76566398 0.063083 -0.29008001 0.95563 0.051240999\n\t\t -0.29008001 0.95563 0.051240999 -0.242964 0.936055 0.2545 -0.59124899 0.74314302\n\t\t 0.31331 -0.25675899 0.88426399 -0.390066 -0.296523 0.93916202 -0.17334799 -0.63717699\n\t\t 0.74414599 -0.20063201 -0.63717699 0.74414599 -0.20063201 -0.585998 0.679142 -0.442009\n\t\t -0.25675899 0.88426399 -0.390066 -0.180187 0.79805303 -0.57501698 -0.25675899 0.88426399\n\t\t -0.390066 -0.585998 0.679142 -0.442009 -0.585998 0.679142 -0.442009 -0.50209701 0.584131\n\t\t -0.63772202 -0.180187 0.79805303 -0.57501698 -0.25675899 0.88426399 -0.390066 -0.180187\n\t\t 0.79805303 -0.57501698 0.17392901 0.88984799 -0.42180601 0.17392901 0.88984799 -0.42180601\n\t\t 0.116856 0.95325202 -0.27866599 -0.25675899 0.88426399 -0.390066 -0.296523 0.93916202\n\t\t -0.17334799 -0.25675899 0.88426399 -0.390066 0.116856 0.95325202 -0.27866599 0.116856\n\t\t 0.95325202 -0.27866599 0.092073999 0.98800898 -0.123936 -0.296523 0.93916202 -0.17334799\n\t\t -0.29008001 0.95563 0.051240999 -0.296523 0.93916202 -0.17334799 0.092073999 0.98800898\n\t\t -0.123936 0.092073999 0.98800898 -0.123936 0.101963 0.99448299 0.024629001 -0.29008001\n\t\t 0.95563 0.051240999 -0.242964 0.936055 0.2545 -0.29008001 0.95563 0.051240999 0.101963\n\t\t 0.99448299 0.024629001 0.101963 0.99448299 0.024629001 0.13697 0.97914702 0.150032\n\t\t -0.242964 0.936055 0.2545 -0.40379801 0.47740901 -0.780402 -0.50209701 0.584131 -0.63772202\n\t\t -0.74824601 0.28599799 -0.59860897 -0.74824601 0.28599799 -0.59860897 -0.66076797\n\t\t 0.191293 -0.72580397 -0.40379801 0.47740901 -0.780402 -0.66076797 0.191293 -0.72580397\n\t\t -0.74824601 0.28599799 -0.59860897 -0.883959 -0.053957999 -0.464441 -0.883959 -0.053957999\n\t\t -0.464441 -0.82056397 -0.123419 -0.55807 -0.66076797 0.191293 -0.72580397 -0.82056397\n\t\t -0.123419 -0.55807 -0.883959 -0.053957999 -0.464441 -0.88475102 -0.387624 -0.25877199\n\t\t -0.88475102 -0.387624 -0.25877199 -0.85441798 -0.42150199 -0.303819 -0.82056397 -0.123419\n\t\t -0.55807 -0.85441798 -0.42150199 -0.303819 -0.88475102 -0.387624 -0.25877199 -0.74524701\n\t\t -0.66659898 -0.015900001 -0.74524701 -0.66659898 -0.015900001 -0.752509 -0.65857202\n\t\t -0.0036319999 -0.85441798 -0.42150199 -0.303819 -0.82542998 -0.454191 -0.335226 -0.85441798\n\t\t -0.42150199 -0.303819 -0.752509 -0.65857202 -0.0036319999 -0.752509 -0.65857202 -0.0036319999;\n\tsetAttr \".n[36520:36685]\" -type \"float3\"  -0.760809 -0.64895701 0.0049439999 -0.82542998\n\t\t -0.454191 -0.335226 -0.797921 -0.485681 -0.35698199 -0.82542998 -0.454191 -0.335226\n\t\t -0.760809 -0.64895701 0.0049439999 -0.760809 -0.64895701 0.0049439999 -0.76950902\n\t\t -0.63855201 0.010346 -0.797921 -0.485681 -0.35698199 -0.771478 -0.51670003 -0.37127301\n\t\t -0.797921 -0.485681 -0.35698199 -0.76950902 -0.63855201 0.010346 -0.76950902 -0.63855201\n\t\t 0.010346 -0.77847099 -0.62755603 0.012513 -0.771478 -0.51670003 -0.37127301 -0.797921\n\t\t -0.485681 -0.35698199 -0.771478 -0.51670003 -0.37127301 -0.64273101 -0.327225 -0.69269103\n\t\t -0.64273101 -0.327225 -0.69269103 -0.69967699 -0.25962499 -0.665618 -0.797921 -0.485681\n\t\t -0.35698199 -0.82542998 -0.454191 -0.335226 -0.797921 -0.485681 -0.35698199 -0.69967699\n\t\t -0.25962499 -0.665618 -0.69967699 -0.25962499 -0.665618 -0.758784 -0.192031 -0.62239099\n\t\t -0.82542998 -0.454191 -0.335226 -0.85441798 -0.42150199 -0.303819 -0.82542998 -0.454191\n\t\t -0.335226 -0.758784 -0.192031 -0.62239099 -0.758784 -0.192031 -0.62239099 -0.82056397\n\t\t -0.123419 -0.55807 -0.85441798 -0.42150199 -0.303819 -0.57542902 0.096561 -0.81213099\n\t\t -0.66076797 0.191293 -0.72580397 -0.82056397 -0.123419 -0.55807 -0.82056397 -0.123419\n\t\t -0.55807 -0.758784 -0.192031 -0.62239099 -0.57542902 0.096561 -0.81213099 -0.494378\n\t\t 0.00235 -0.86924398 -0.57542902 0.096561 -0.81213099 -0.758784 -0.192031 -0.62239099\n\t\t -0.758784 -0.192031 -0.62239099 -0.69967699 -0.25962499 -0.665618 -0.494378 0.00235\n\t\t -0.86924398 -0.416648 -0.091649003 -0.90443599 -0.494378 0.00235 -0.86924398 -0.69967699\n\t\t -0.25962499 -0.665618 -0.69967699 -0.25962499 -0.665618 -0.64273101 -0.327225 -0.69269103\n\t\t -0.416648 -0.091649003 -0.90443599 -0.494378 0.00235 -0.86924398 -0.416648 -0.091649003\n\t\t -0.90443599 -0.130712 0.15405899 -0.97937799 -0.130712 0.15405899 -0.97937799 -0.21726599\n\t\t 0.260786 -0.94063097 -0.494378 0.00235 -0.86924398 -0.57542902 0.096561 -0.81213099\n\t\t -0.494378 0.00235 -0.86924398 -0.21726599 0.260786 -0.94063097 -0.21726599 0.260786\n\t\t -0.94063097 -0.30772099 0.368911 -0.87704802 -0.57542902 0.096561 -0.81213099 -0.66076797\n\t\t 0.191293 -0.72580397 -0.57542902 0.096561 -0.81213099 -0.30772099 0.368911 -0.87704802\n\t\t -0.30772099 0.368911 -0.87704802 -0.40379801 0.47740901 -0.780402 -0.66076797 0.191293\n\t\t -0.72580397 -0.40379801 0.47740901 -0.780402 -0.30772099 0.368911 -0.87704802 0.0047909999\n\t\t 0.58791798 -0.80890602 0.0047909999 0.58791798 -0.80890602 -0.087102003 0.69492602\n\t\t -0.71378702 -0.40379801 0.47740901 -0.780402 -0.50209701 0.584131 -0.63772202 -0.40379801\n\t\t 0.47740901 -0.780402 -0.087102003 0.69492602 -0.71378702 -0.087102003 0.69492602\n\t\t -0.71378702 -0.180187 0.79805303 -0.57501698 -0.50209701 0.584131 -0.63772202 0.091435\n\t\t 0.48140699 -0.87171501 0.0047909999 0.58791798 -0.80890602 -0.30772099 0.368911 -0.87704802\n\t\t -0.30772099 0.368911 -0.87704802 -0.21726599 0.260786 -0.94063097 0.091435 0.48140699\n\t\t -0.87171501 0.17450801 0.377673 -0.90934598 0.091435 0.48140699 -0.87171501 -0.21726599\n\t\t 0.260786 -0.94063097 -0.21726599 0.260786 -0.94063097 -0.130712 0.15405899 -0.97937799\n\t\t 0.17450801 0.377673 -0.90934598 0.091435 0.48140699 -0.87171501 0.17450801 0.377673\n\t\t -0.90934598 0.45659599 0.54815298 -0.70074898 0.45659599 0.54815298 -0.70074898 0.389063\n\t\t 0.63273102 -0.66953802 0.091435 0.48140699 -0.87171501 0.0047909999 0.58791798 -0.80890602\n\t\t 0.091435 0.48140699 -0.87171501 0.389063 0.63273102 -0.66953802 0.389063 0.63273102\n\t\t -0.66953802 0.319143 0.72017002 -0.61603802 0.0047909999 0.58791798 -0.80890602 -0.087102003\n\t\t 0.69492602 -0.71378702 0.0047909999 0.58791798 -0.80890602 0.319143 0.72017002 -0.61603802\n\t\t 0.319143 0.72017002 -0.61603802 0.246198 0.80765802 -0.53579402 -0.087102003 0.69492602\n\t\t -0.71378702 -0.180187 0.79805303 -0.57501698 -0.087102003 0.69492602 -0.71378702\n\t\t 0.246198 0.80765802 -0.53579402 0.246198 0.80765802 -0.53579402 0.17392901 0.88984799\n\t\t -0.42180601 -0.180187 0.79805303 -0.57501698 -0.037477002 0.043733999 -0.99834001\n\t\t -0.130712 0.15405899 -0.97937799 -0.416648 -0.091649003 -0.90443599 -0.416648 -0.091649003\n\t\t -0.90443599 -0.33278301 -0.193646 -0.92290699 -0.037477002 0.043733999 -0.99834001\n\t\t -0.33278301 -0.193646 -0.92290699 -0.416648 -0.091649003 -0.90443599 -0.64273101\n\t\t -0.327225 -0.69269103 -0.64273101 -0.327225 -0.69269103 -0.58023399 -0.40462601 -0.706828\n\t\t -0.33278301 -0.193646 -0.92290699 -0.58023399 -0.40462601 -0.706828 -0.64273101 -0.327225\n\t\t -0.69269103 -0.771478 -0.51670003 -0.37127301 -0.771478 -0.51670003 -0.37127301 -0.73958302\n\t\t -0.55628198 -0.37890199 -0.58023399 -0.40462601 -0.706828 -0.73958302 -0.55628198\n\t\t -0.37890199 -0.771478 -0.51670003 -0.37127301 -0.77847099 -0.62755603 0.012513 -0.77847099\n\t\t -0.62755603 0.012513 -0.78267002 -0.62232101 0.011994 -0.73958302 -0.55628198 -0.37890199\n\t\t -0.69465601 -0.61371797 -0.375238 -0.73958302 -0.55628198 -0.37890199 -0.78267002\n\t\t -0.62232101 0.011994 -0.78267002 -0.62232101 0.011994 -0.77782297 -0.62836897 0.011964\n\t\t -0.69465601 -0.61371797 -0.375238 -0.63496399 -0.68870902 -0.35000101 -0.69465601\n\t\t -0.61371797 -0.375238 -0.77782297 -0.62836897 0.011964 -0.77782297 -0.62836897 0.011964\n\t\t -0.76463002 -0.64420199 0.018556001 -0.63496399 -0.68870902 -0.35000101 -0.56057799\n\t\t -0.77460998 -0.29280201 -0.63496399 -0.68870902 -0.35000101 -0.76463002 -0.64420199\n\t\t 0.018556001 -0.76463002 -0.64420199 0.018556001 -0.74445498 -0.66669202 0.036164999\n\t\t -0.56057799 -0.77460998 -0.29280201 -0.63496399 -0.68870902 -0.35000101 -0.56057799\n\t\t -0.77460998 -0.29280201 -0.28474799 -0.76274598 -0.58063501 -0.28474799 -0.76274598\n\t\t -0.58063501 -0.403593 -0.62623501 -0.66703999 -0.63496399 -0.68870902 -0.35000101\n\t\t -0.69465601 -0.61371797 -0.375238 -0.63496399 -0.68870902 -0.35000101;\n\tsetAttr \".n[36686:36851]\" -type \"float3\"  -0.403593 -0.62623501 -0.66703999 -0.403593\n\t\t -0.62623501 -0.66703999 -0.50204802 -0.50369698 -0.70301998 -0.69465601 -0.61371797\n\t\t -0.375238 -0.73958302 -0.55628198 -0.37890199 -0.69465601 -0.61371797 -0.375238 -0.50204802\n\t\t -0.50369698 -0.70301998 -0.50204802 -0.50369698 -0.70301998 -0.58023399 -0.40462601\n\t\t -0.706828 -0.73958302 -0.55628198 -0.37890199 -0.231337 -0.31624299 -0.92004001 -0.33278301\n\t\t -0.193646 -0.92290699 -0.58023399 -0.40462601 -0.706828 -0.58023399 -0.40462601 -0.706828\n\t\t -0.50204802 -0.50369698 -0.70301998 -0.231337 -0.31624299 -0.92004001 -0.106025 -0.46362299\n\t\t -0.87966597 -0.231337 -0.31624299 -0.92004001 -0.50204802 -0.50369698 -0.70301998\n\t\t -0.50204802 -0.50369698 -0.70301998 -0.403593 -0.62623501 -0.66703999 -0.106025 -0.46362299\n\t\t -0.87966597 0.040589999 -0.626975 -0.77798098 -0.106025 -0.46362299 -0.87966597 -0.403593\n\t\t -0.62623501 -0.66703999 -0.403593 -0.62623501 -0.66703999 -0.28474799 -0.76274598\n\t\t -0.58063501 0.040589999 -0.626975 -0.77798098 -0.106025 -0.46362299 -0.87966597 0.040589999\n\t\t -0.626975 -0.77798098 0.357743 -0.38939101 -0.84876102 0.357743 -0.38939101 -0.84876102\n\t\t 0.206644 -0.22770201 -0.95155102 -0.106025 -0.46362299 -0.87966597 -0.231337 -0.31624299\n\t\t -0.92004001 -0.106025 -0.46362299 -0.87966597 0.206644 -0.22770201 -0.95155102 0.206644\n\t\t -0.22770201 -0.95155102 0.073032998 -0.081609003 -0.993985 -0.231337 -0.31624299\n\t\t -0.92004001 -0.33278301 -0.193646 -0.92290699 -0.231337 -0.31624299 -0.92004001 0.073032998\n\t\t -0.081609003 -0.993985 0.073032998 -0.081609003 -0.993985 -0.037477002 0.043733999\n\t\t -0.99834001 -0.33278301 -0.193646 -0.92290699 -0.037477002 0.043733999 -0.99834001\n\t\t 0.073032998 -0.081609003 -0.993985 0.364885 0.16474099 -0.91636199 0.364885 0.16474099\n\t\t -0.91636199 0.26316401 0.274914 -0.924752 -0.037477002 0.043733999 -0.99834001 -0.130712\n\t\t 0.15405899 -0.97937799 -0.037477002 0.043733999 -0.99834001 0.26316401 0.274914 -0.924752\n\t\t 0.26316401 0.274914 -0.924752 0.17450801 0.377673 -0.90934598 -0.130712 0.15405899\n\t\t -0.97937799 0.483576 0.041627999 -0.87431198 0.364885 0.16474099 -0.91636199 0.073032998\n\t\t -0.081609003 -0.993985 0.073032998 -0.081609003 -0.993985 0.206644 -0.22770201 -0.95155102\n\t\t 0.483576 0.041627999 -0.87431198 0.61319298 -0.093023002 -0.784437 0.483576 0.041627999\n\t\t -0.87431198 0.206644 -0.22770201 -0.95155102 0.206644 -0.22770201 -0.95155102 0.357743\n\t\t -0.38939101 -0.84876102 0.61319298 -0.093023002 -0.784437 0.483576 0.041627999 -0.87431198\n\t\t 0.61319298 -0.093023002 -0.784437 0.77070999 0.21299601 -0.60053301 0.77070999 0.21299601\n\t\t -0.60053301 0.68414402 0.302077 -0.663849 0.483576 0.041627999 -0.87431198 0.364885\n\t\t 0.16474099 -0.91636199 0.483576 0.041627999 -0.87431198 0.68414402 0.302077 -0.663849\n\t\t 0.68414402 0.302077 -0.663849 0.60165298 0.38679901 -0.698856 0.364885 0.16474099\n\t\t -0.91636199 0.26316401 0.274914 -0.924752 0.364885 0.16474099 -0.91636199 0.60165298\n\t\t 0.38679901 -0.698856 0.60165298 0.38679901 -0.698856 0.52651399 0.46746001 -0.71011603\n\t\t 0.26316401 0.274914 -0.924752 0.17450801 0.377673 -0.90934598 0.26316401 0.274914\n\t\t -0.924752 0.52651399 0.46746001 -0.71011603 0.52651399 0.46746001 -0.71011603 0.45659599\n\t\t 0.54815298 -0.70074898 0.17450801 0.377673 -0.90934598 0.48016 -0.523467 -0.70386702\n\t\t 0.357743 -0.38939101 -0.84876102 0.040589999 -0.626975 -0.77798098 0.040589999 -0.626975\n\t\t -0.77798098 0.16565999 -0.75514197 -0.63428497 0.48016 -0.523467 -0.70386702 0.16565999\n\t\t -0.75514197 -0.63428497 0.040589999 -0.626975 -0.77798098 -0.28474799 -0.76274598\n\t\t -0.58063501 -0.28474799 -0.76274598 -0.58063501 -0.17725401 -0.86771798 -0.464378\n\t\t 0.16565999 -0.75514197 -0.63428497 -0.17725401 -0.86771798 -0.464378 -0.28474799\n\t\t -0.76274598 -0.58063501 -0.56057799 -0.77460998 -0.29280201 -0.56057799 -0.77460998\n\t\t -0.29280201 -0.49077299 -0.84253299 -0.221994 -0.17725401 -0.86771798 -0.464378 -0.49077299\n\t\t -0.84253299 -0.221994 -0.56057799 -0.77460998 -0.29280201 -0.74445498 -0.66669202\n\t\t 0.036164999 -0.74445498 -0.66669202 0.036164999 -0.72479099 -0.68688703 0.05353 -0.49077299\n\t\t -0.84253299 -0.221994 -0.449117 -0.87928301 -0.15860701 -0.49077299 -0.84253299 -0.221994\n\t\t -0.72479099 -0.68688703 0.05353 -0.72479099 -0.68688703 0.05353 -0.716317 -0.69464898\n\t\t 0.065982997 -0.449117 -0.87928301 -0.15860701 -0.42882299 -0.89787 -0.099706002 -0.449117\n\t\t -0.87928301 -0.15860701 -0.716317 -0.69464898 0.065982997 -0.716317 -0.69464898 0.065982997\n\t\t -0.72129798 -0.68958801 0.064792998 -0.42882299 -0.89787 -0.099706002 -0.42284399\n\t\t -0.90510899 -0.044496998 -0.42882299 -0.89787 -0.099706002 -0.72129798 -0.68958801\n\t\t 0.064792998 -0.72129798 -0.68958801 0.064792998 -0.73151398 -0.68076098 0.038088001\n\t\t -0.42284399 -0.90510899 -0.044496998 -0.42882299 -0.89787 -0.099706002 -0.42284399\n\t\t -0.90510899 -0.044496998 -0.04941 -0.99182898 -0.117619 -0.04941 -0.99182898 -0.117619\n\t\t -0.070499003 -0.96672201 -0.245923 -0.42882299 -0.89787 -0.099706002 -0.449117 -0.87928301\n\t\t -0.15860701 -0.42882299 -0.89787 -0.099706002 -0.070499003 -0.96672201 -0.245923\n\t\t -0.070499003 -0.96672201 -0.245923 -0.111363 -0.92734498 -0.35725299 -0.449117 -0.87928301\n\t\t -0.15860701 -0.49077299 -0.84253299 -0.221994 -0.449117 -0.87928301 -0.15860701 -0.111363\n\t\t -0.92734498 -0.35725299 -0.111363 -0.92734498 -0.35725299 -0.17725401 -0.86771798\n\t\t -0.464378 -0.49077299 -0.84253299 -0.221994 0.242963 -0.831249 -0.49999401 0.16565999\n\t\t -0.75514197 -0.63428497 -0.17725401 -0.86771798 -0.464378 -0.17725401 -0.86771798\n\t\t -0.464378 -0.111363 -0.92734498 -0.35725299 0.242963 -0.831249 -0.49999401 0.297683\n\t\t -0.88673103 -0.35368499 0.242963 -0.831249 -0.49999401 -0.111363 -0.92734498 -0.35725299\n\t\t -0.111363 -0.92734498 -0.35725299 -0.070499003 -0.96672201 -0.245923 0.297683 -0.88673103\n\t\t -0.35368499;\n\tsetAttr \".n[36852:37017]\" -type \"float3\"  -0.070499003 -0.96672201 -0.245923 -0.04941\n\t\t -0.99182898 -0.117619 0.33494899 -0.92638099 -0.17212801 0.33494899 -0.92638099 -0.17212801\n\t\t 0.297683 -0.88673103 -0.35368499 -0.070499003 -0.96672201 -0.245923 0.297683 -0.88673103\n\t\t -0.35368499 0.33494899 -0.92638099 -0.17212801 0.66794199 -0.71643603 -0.201426 0.66794199\n\t\t -0.71643603 -0.201426 0.61838299 -0.67136401 -0.408501 0.297683 -0.88673103 -0.35368499\n\t\t 0.242963 -0.831249 -0.49999401 0.297683 -0.88673103 -0.35368499 0.61838299 -0.67136401\n\t\t -0.408501 0.61838299 -0.67136401 -0.408501 0.55744499 -0.607436 -0.565929 0.242963\n\t\t -0.831249 -0.49999401 0.16565999 -0.75514197 -0.63428497 0.242963 -0.831249 -0.49999401\n\t\t 0.55744499 -0.607436 -0.565929 0.55744499 -0.607436 -0.565929 0.48016 -0.523467 -0.70386702\n\t\t 0.16565999 -0.75514197 -0.63428497 0.48016 -0.523467 -0.70386702 0.55744499 -0.607436\n\t\t -0.565929 0.78529698 -0.291033 -0.54645097 0.78529698 -0.291033 -0.54645097 0.71670699\n\t\t -0.212106 -0.66433603 0.48016 -0.523467 -0.70386702 0.357743 -0.38939101 -0.84876102\n\t\t 0.48016 -0.523467 -0.70386702 0.71670699 -0.212106 -0.66433603 0.71670699 -0.212106\n\t\t -0.66433603 0.61319298 -0.093023002 -0.784437 0.357743 -0.38939101 -0.84876102 0.84464198\n\t\t -0.352341 -0.40303299 0.78529698 -0.291033 -0.54645097 0.55744499 -0.607436 -0.565929\n\t\t 0.55744499 -0.607436 -0.565929 0.61838299 -0.67136401 -0.408501 0.84464198 -0.352341\n\t\t -0.40303299 0.61838299 -0.67136401 -0.408501 0.66794199 -0.71643603 -0.201426 0.89727902\n\t\t -0.392941 -0.201216 0.89727902 -0.392941 -0.201216 0.84464198 -0.352341 -0.40303299\n\t\t 0.61838299 -0.67136401 -0.408501 0.84464198 -0.352341 -0.40303299 0.89727902 -0.392941\n\t\t -0.201216 0.98539501 -0.0068970001 -0.17014299 0.98539501 -0.0068970001 -0.17014299\n\t\t 0.94166201 0.023499999 -0.33573899 0.84464198 -0.352341 -0.40303299 0.78529698 -0.291033\n\t\t -0.54645097 0.84464198 -0.352341 -0.40303299 0.94166201 0.023499999 -0.33573899 0.94166201\n\t\t 0.023499999 -0.33573899 0.89341497 0.070377 -0.44368601 0.78529698 -0.291033 -0.54645097\n\t\t 0.71670699 -0.212106 -0.66433603 0.78529698 -0.291033 -0.54645097 0.89341497 0.070377\n\t\t -0.44368601 0.89341497 0.070377 -0.44368601 0.84206498 0.12952501 -0.52359301 0.71670699\n\t\t -0.212106 -0.66433603 0.61319298 -0.093023002 -0.784437 0.71670699 -0.212106 -0.66433603\n\t\t 0.84206498 0.12952501 -0.52359301 0.84206498 0.12952501 -0.52359301 0.77070999 0.21299601\n\t\t -0.60053301 0.61319298 -0.093023002 -0.784437 0.66794199 -0.71643603 -0.201426 0.33494899\n\t\t -0.92638099 -0.17212801 0.35427099 -0.934416 -0.036867999 0.35427099 -0.934416 -0.036867999\n\t\t 0.33494899 -0.92638099 -0.17212801 -0.04941 -0.99182898 -0.117619 0.99909002 -0.02176\n\t\t -0.036683001 0.98539501 -0.0068970001 -0.17014299 0.89727902 -0.392941 -0.201216\n\t\t 0.89727902 -0.392941 -0.201216 0.91332698 -0.40496299 -0.042879999 0.99909002 -0.02176\n\t\t -0.036683001 0.91332698 -0.40496299 -0.042879999 0.89727902 -0.392941 -0.201216 0.66794199\n\t\t -0.71643603 -0.201426 -0.04941 -0.99182898 -0.117619 -0.42284399 -0.90510899 -0.044496998\n\t\t -0.412074 -0.911098 -0.0097970003 -0.412074 -0.911098 -0.0097970003 -0.42284399 -0.90510899\n\t\t -0.044496998 -0.73151398 -0.68076098 0.038088001 0.027101001 -0.99120599 0.12952401\n\t\t 0.040346999 -0.99389702 0.102668 -0.264599 -0.90186501 0.34150699 -0.264599 -0.90186501\n\t\t 0.34150699 -0.30744699 -0.900612 0.30720299 0.027101001 -0.99120599 0.12952401 -0.44762501\n\t\t -0.89412099 0.013398 -0.460807 -0.88703698 -0.028688001 -0.09928 -0.989685 -0.103278\n\t\t -0.09928 -0.989685 -0.103278 -0.074130997 -0.99700397 0.022066001 -0.44762501 -0.89412099\n\t\t 0.013398 -0.531187 -0.79554498 0.29145899 -0.48720601 -0.84446299 0.222515 -0.15326799\n\t\t -0.894068 0.420894 -0.15326799 -0.894068 0.420894 -0.227825 -0.81232703 0.53686202\n\t\t -0.531187 -0.79554498 0.29145899 -0.70184398 -0.59017599 0.39888299 -0.66166401 -0.63883603\n\t\t 0.39254299 -0.44411901 -0.55078501 0.70667797 -0.44411901 -0.55078501 0.70667797\n\t\t -0.51391101 -0.46715599 0.71948701 -0.70184398 -0.59017599 0.39888299 -0.84470803\n\t\t -0.43053299 0.31797901 -0.81290901 -0.46276301 0.35359499 -0.76181501 -0.193491 0.61822301\n\t\t -0.76181501 -0.193491 0.61822301 -0.83766001 -0.113074 0.53435999 -0.84470803 -0.43053299\n\t\t 0.31797901 -0.93849897 -0.0097660003 0.34514299 -0.98334599 0.023041001 0.18027499\n\t\t -0.927486 -0.35512501 0.116859 -0.927486 -0.35512501 0.116859 -0.89942402 -0.37696999\n\t\t 0.221201 -0.93849897 -0.0097660003 0.34514299 -0.35960299 0.93210399 0.043214999\n\t\t -0.34633401 0.918571 0.19047099 0.026551999 0.991 0.131203 -0.66845399 0.71032602\n\t\t 0.220468 -0.34633401 0.918571 0.19047099 -0.35960299 0.93210399 0.043214999 -0.91351199\n\t\t 0.40681201 0 -0.91198701 0.40728399 0.048983999 -0.68772602 0.724226 0.050296001\n\t\t -0.68772602 0.724226 0.050296001 -0.68827599 0.72544903 0 -0.91351199 0.40681201\n\t\t 0 -0.91198701 0.40728399 0.048983999 -0.91351199 0.40681201 0 -0.99965602 0.026216\n\t\t 0 -0.99965602 0.026216 0 -0.99879003 0.028291 0.040224001 -0.91198701 0.40728399\n\t\t 0.048983999 -0.91198701 0.40728399 0.048983999 -0.99879003 0.028291 0.040224001 -0.98334599\n\t\t 0.023041001 0.18027499 -0.98334599 0.023041001 0.18027499 -0.99879003 0.028291 0.040224001\n\t\t -0.93466502 -0.354597 0.025727 -0.93466502 -0.354597 0.025727 -0.927486 -0.35512501\n\t\t 0.116859 -0.98334599 0.023041001 0.18027499 -0.99879003 0.028291 0.040224001 -0.99965602\n\t\t 0.026216 0 -0.933599 -0.35832101 0 -0.933599 -0.35832101 0 -0.93466502 -0.354597\n\t\t 0.025727 -0.99879003 0.028291 0.040224001 0.36995 0.92750102 -0.053652 0.38268101\n\t\t 0.92387998 0 0 1 0 0 1 0;\n\tsetAttr \".n[37018:37183]\" -type \"float3\"  -0.012086 0.99972302 -0.020204 0.36995\n\t\t 0.92750102 -0.053652 0.33018401 0.92237401 -0.20051 0.36995 0.92750102 -0.053652\n\t\t -0.012086 0.99972302 -0.020204 -0.012086 0.99972302 -0.020204 -0.032534 0.99675798\n\t\t -0.073582001 0.33018401 0.92237401 -0.20051 0.33018401 0.92237401 -0.20051 -0.032534\n\t\t 0.99675798 -0.073582001 -0.050783999 0.99080902 -0.12537301 -0.050783999 0.99080902\n\t\t -0.12537301 0.27165201 0.90318698 -0.33235499 0.33018401 0.92237401 -0.20051 0.33018401\n\t\t 0.92237401 -0.20051 0.27165201 0.90318698 -0.33235499 0.55242699 0.66855198 -0.497859\n\t\t 0.55242699 0.66855198 -0.497859 0.644831 0.69747603 -0.31260401 0.33018401 0.92237401\n\t\t -0.20051 0.36995 0.92750102 -0.053652 0.33018401 0.92237401 -0.20051 0.644831 0.69747603\n\t\t -0.31260401 0.644831 0.69747603 -0.31260401 0.69755 0.71171099 -0.083012998 0.36995\n\t\t 0.92750102 -0.053652 0.38268101 0.92387998 0 0.36995 0.92750102 -0.053652 0.69755\n\t\t 0.71171099 -0.083012998 0.69755 0.71171099 -0.083012998 0.70710701 0.70710701 0 0.38268101\n\t\t 0.92387998 0 0.70710701 0.70710701 0 0.69755 0.71171099 -0.083012998 0.918787 0.382561\n\t\t -0.097356997 0.918787 0.382561 -0.097356997 0.92387998 0.382682 0 0.70710701 0.70710701\n\t\t 0 0.85696501 0.36344701 -0.36539999 0.918787 0.382561 -0.097356997 0.69755 0.71171099\n\t\t -0.083012998 0.69755 0.71171099 -0.083012998 0.644831 0.69747603 -0.31260401 0.85696501\n\t\t 0.36344701 -0.36539999 0.644831 0.69747603 -0.31260401 0.55242699 0.66855198 -0.497859\n\t\t 0.740798 0.33507299 -0.58218902 0.740798 0.33507299 -0.58218902 0.85696501 0.36344701\n\t\t -0.36539999 0.644831 0.69747603 -0.31260401 0.85696501 0.36344701 -0.36539999 0.740798\n\t\t 0.33507299 -0.58218902 0.81965798 -0.04349 -0.57120001 0.81965798 -0.04349 -0.57120001\n\t\t 0.93751299 -0.025697 -0.34700099 0.85696501 0.36344701 -0.36539999 0.918787 0.382561\n\t\t -0.097356997 0.85696501 0.36344701 -0.36539999 0.93751299 -0.025697 -0.34700099 0.93751299\n\t\t -0.025697 -0.34700099 0.99588799 -0.0068970001 -0.090334997 0.918787 0.382561 -0.097356997\n\t\t 0.92387998 0.382682 0 0.918787 0.382561 -0.097356997 0.99588799 -0.0068970001 -0.090334997\n\t\t 0.99588799 -0.0068970001 -0.090334997 1 0 0 0.92387998 0.382682 0 1 0 0 0.99588799\n\t\t -0.0068970001 -0.090334997 0.9174 -0.392382 -0.066440001 0.9174 -0.392382 -0.066440001\n\t\t 0.92387998 -0.38268101 0 1 0 0 0.87288302 -0.40914199 -0.265854 0.9174 -0.392382\n\t\t -0.066440001 0.99588799 -0.0068970001 -0.090334997 0.99588799 -0.0068970001 -0.090334997\n\t\t 0.93751299 -0.025697 -0.34700099 0.87288302 -0.40914199 -0.265854 0.93751299 -0.025697\n\t\t -0.34700099 0.81965798 -0.04349 -0.57120001 0.77994603 -0.41609699 -0.467491 0.77994603\n\t\t -0.41609699 -0.467491 0.87288302 -0.40914199 -0.265854 0.93751299 -0.025697 -0.34700099\n\t\t 0.87288302 -0.40914199 -0.265854 0.77994603 -0.41609699 -0.467491 0.61832201 -0.72980899\n\t\t -0.29164299 0.61832201 -0.72980899 -0.29164299 0.66888303 -0.727754 -0.151557 0.87288302\n\t\t -0.40914199 -0.265854 0.9174 -0.392382 -0.066440001 0.87288302 -0.40914199 -0.265854\n\t\t 0.66888303 -0.727754 -0.151557 0.66888303 -0.727754 -0.151557 0.69824702 -0.71490997\n\t\t -0.036805999 0.9174 -0.392382 -0.066440001 0.92387998 -0.38268101 0 0.9174 -0.392382\n\t\t -0.066440001 0.69824702 -0.71490997 -0.036805999 0.69824702 -0.71490997 -0.036805999\n\t\t 0.70710701 -0.70710701 0 0.92387998 -0.38268101 0 0.70710701 -0.70710701 0 0.69824702\n\t\t -0.71490997 -0.036805999 0.37459499 -0.92714697 -0.0088200001 0.37459499 -0.92714697\n\t\t -0.0088200001 0.382682 -0.92387998 0 0.70710701 -0.70710701 0 0.36043301 -0.932181\n\t\t -0.033571001 0.37459499 -0.92714697 -0.0088200001 0.69824702 -0.71490997 -0.036805999\n\t\t 0.69824702 -0.71490997 -0.036805999 0.66888303 -0.727754 -0.151557 0.36043301 -0.932181\n\t\t -0.033571001 0.66888303 -0.727754 -0.151557 0.61832201 -0.72980899 -0.29164299 0.353782\n\t\t -0.93188298 -0.080205001 0.353782 -0.93188298 -0.080205001 0.36043301 -0.932181 -0.033571001\n\t\t 0.66888303 -0.727754 -0.151557 0.36043301 -0.932181 -0.033571001 0.353782 -0.93188298\n\t\t -0.080205001 0.027101001 -0.99120599 0.12952401 0.027101001 -0.99120599 0.12952401\n\t\t -0.0054930001 -0.99737 0.072269998 0.36043301 -0.932181 -0.033571001 0.37459499 -0.92714697\n\t\t -0.0088200001 0.36043301 -0.932181 -0.033571001 -0.0054930001 -0.99737 0.072269998\n\t\t -0.0054930001 -0.99737 0.072269998 -0.0057680001 -0.999874 0.014771 0.37459499 -0.92714697\n\t\t -0.0088200001 0.382682 -0.92387998 0 0.37459499 -0.92714697 -0.0088200001 -0.0057680001\n\t\t -0.999874 0.014771 -0.0057680001 -0.999874 0.014771 0 -1 0 0.382682 -0.92387998 0\n\t\t -0.38514701 -0.92224699 0.03351 -0.38268101 -0.92387998 0 0 -1 0 0 -1 0 -0.0057680001\n\t\t -0.999874 0.014771 -0.38514701 -0.92224699 0.03351 -0.38268101 -0.92387998 0 -0.38514701\n\t\t -0.92224699 0.03351 -0.70745099 -0.705194 0.047060002 -0.68480301 -0.69524097 0.21836901\n\t\t -0.70745099 -0.705194 0.047060002 -0.38514701 -0.92224699 0.03351 -0.38514701 -0.92224699\n\t\t 0.03351 -0.37153399 -0.91495103 0.15756799 -0.68480301 -0.69524097 0.21836901 -0.37153399\n\t\t -0.91495103 0.15756799 -0.38514701 -0.92224699 0.03351 -0.0057680001 -0.999874 0.014771\n\t\t -0.0057680001 -0.999874 0.014771 -0.0054930001 -0.99737 0.072269998 -0.37153399 -0.91495103\n\t\t 0.15756799 -0.59833002 -0.67328602 0.43438101 -0.68480301 -0.69524097 0.21836901\n\t\t -0.37153399 -0.91495103 0.15756799 -0.37153399 -0.91495103 0.15756799 -0.30744699\n\t\t -0.900612 0.30720299;\n\tsetAttr \".n[37184:37349]\" -type \"float3\"  -0.59833002 -0.67328602 0.43438101 -0.70745099\n\t\t -0.705194 0.047060002 -0.70710701 -0.70710701 0 -0.38268101 -0.92387998 0 -0.70710701\n\t\t -0.70710701 0 -0.70745099 -0.705194 0.047060002 -0.92281902 -0.38134199 0.05463 -0.92281902\n\t\t -0.38134199 0.05463 -0.92387998 -0.382682 0 -0.70710701 -0.70710701 0 -0.89443499\n\t\t -0.37078199 0.250016 -0.92281902 -0.38134199 0.05463 -0.70745099 -0.705194 0.047060002\n\t\t -0.70745099 -0.705194 0.047060002 -0.68480301 -0.69524097 0.21836901 -0.89443499\n\t\t -0.37078199 0.250016 -0.68480301 -0.69524097 0.21836901 -0.59833002 -0.67328602 0.43438101\n\t\t -0.79624701 -0.34413499 0.49755499 -0.79624701 -0.34413499 0.49755499 -0.89443499\n\t\t -0.37078199 0.250016 -0.68480301 -0.69524097 0.21836901 -0.89443499 -0.37078199 0.250016\n\t\t -0.79624701 -0.34413499 0.49755499 -0.87066501 0.035188001 0.49061701 -0.87066501\n\t\t 0.035188001 0.49061701 -0.96846801 0.0090330001 0.24897601 -0.89443499 -0.37078199\n\t\t 0.250016 -0.92281902 -0.38134199 0.05463 -0.89443499 -0.37078199 0.250016 -0.96846801\n\t\t 0.0090330001 0.24897601 -0.96846801 0.0090330001 0.24897601 -0.99847102 0.000244\n\t\t 0.055271 -0.92281902 -0.38134199 0.05463 -0.92387998 -0.382682 0 -0.92281902 -0.38134199\n\t\t 0.05463 -0.99847102 0.000244 0.055271 -0.99847102 0.000244 0.055271 -1 0 0 -0.92387998\n\t\t -0.382682 0 -1 0 0 -0.99847102 0.000244 0.055271 -0.92319399 0.381302 0.048188999\n\t\t -0.92319399 0.381302 0.048188999 -0.92387998 0.38268101 0 -1 0 0 -0.89740598 0.38569701\n\t\t 0.214242 -0.92319399 0.381302 0.048188999 -0.99847102 0.000244 0.055271 -0.99847102\n\t\t 0.000244 0.055271 -0.96846801 0.0090330001 0.24897601 -0.89740598 0.38569701 0.214242\n\t\t -0.96846801 0.0090330001 0.24897601 -0.87066501 0.035188001 0.49061701 -0.81397003\n\t\t 0.40623701 0.41523999 -0.81397003 0.40623701 0.41523999 -0.89740598 0.38569701 0.214242\n\t\t -0.96846801 0.0090330001 0.24897601 -0.89740598 0.38569701 0.214242 -0.81397003 0.40623701\n\t\t 0.41523999 -0.64005202 0.71601403 0.27867201 -0.64005202 0.71601403 0.27867201 -0.69602501\n\t\t 0.70295298 0.14631 -0.89740598 0.38569701 0.214242 -0.92319399 0.381302 0.048188999\n\t\t -0.89740598 0.38569701 0.214242 -0.69602501 0.70295298 0.14631 -0.69602501 0.70295298\n\t\t 0.14631 -0.70960099 0.70383197 0.032961 -0.92319399 0.381302 0.048188999 -0.92387998\n\t\t 0.38268101 0 -0.92319399 0.381302 0.048188999 -0.70960099 0.70383197 0.032961 -0.70960099\n\t\t 0.70383197 0.032961 -0.70710701 0.70710701 0 -0.92387998 0.38268101 0 -0.70710701\n\t\t 0.70710701 0 -0.70960099 0.70383197 0.032961 -0.389853 0.920825 0.0097660003 -0.389853\n\t\t 0.920825 0.0097660003 -0.382682 0.92387998 0 -0.70710701 0.70710701 0 -0.39376 0.91798902\n\t\t 0.047426999 -0.389853 0.920825 0.0097660003 -0.70960099 0.70383197 0.032961 -0.70960099\n\t\t 0.70383197 0.032961 -0.69602501 0.70295298 0.14631 -0.39376 0.91798902 0.047426999\n\t\t -0.69602501 0.70295298 0.14631 -0.64005202 0.71601403 0.27867201 -0.37392199 0.92284203\n\t\t 0.092442997 -0.37392199 0.92284203 0.092442997 -0.39376 0.91798902 0.047426999 -0.69602501\n\t\t 0.70295298 0.14631 -0.39376 0.91798902 0.047426999 -0.37392199 0.92284203 0.092442997\n\t\t -0.050783999 0.99080902 -0.12537301 -0.050783999 0.99080902 -0.12537301 -0.032534\n\t\t 0.99675798 -0.073582001 -0.39376 0.91798902 0.047426999 -0.389853 0.920825 0.0097660003\n\t\t -0.39376 0.91798902 0.047426999 -0.032534 0.99675798 -0.073582001 -0.032534 0.99675798\n\t\t -0.073582001 -0.012086 0.99972302 -0.020204 -0.389853 0.920825 0.0097660003 -0.382682\n\t\t 0.92387998 0 -0.389853 0.920825 0.0097660003 -0.012086 0.99972302 -0.020204 -0.012086\n\t\t 0.99972302 -0.020204 0 1 0 -0.382682 0.92387998 0 -0.0054930001 -0.99737 0.072269998\n\t\t 0.027101001 -0.99120599 0.12952401 -0.30744699 -0.900612 0.30720299 -0.30744699 -0.900612\n\t\t 0.30720299 -0.37153399 -0.91495103 0.15756799 -0.0054930001 -0.99737 0.072269998\n\t\t 0.386338 0.922342 -0.0053409999 0.022034001 0.99689299 0.075625002 0.076695003 0.98177803\n\t\t 0.173869 0.076695003 0.98177803 0.173869 0.41869101 0.90696502 0.045961998 0.386338\n\t\t 0.922342 -0.0053409999 0.45799801 0.88181502 0.112432 0.41869101 0.90696502 0.045961998\n\t\t 0.076695003 0.98177803 0.173869 0.076695003 0.98177803 0.173869 0.13471 0.95389801\n\t\t 0.26820001 0.45799801 0.88181502 0.112432 0.498532 0.85222101 0.1587 0.45799801 0.88181502\n\t\t 0.112432 0.13471 0.95389801 0.26820001 0.13471 0.95389801 0.26820001 0.18460999 0.92454797\n\t\t 0.333361 0.498532 0.85222101 0.1587 0.45799801 0.88181502 0.112432 0.498532 0.85222101\n\t\t 0.1587 0.75884497 0.64967602 -0.045566 0.75884497 0.64967602 -0.045566 0.73291701\n\t\t 0.677342 -0.063570999 0.45799801 0.88181502 0.112432 0.41869101 0.90696502 0.045961998\n\t\t 0.45799801 0.88181502 0.112432 0.73291701 0.677342 -0.063570999 0.73291701 0.677342\n\t\t -0.063570999 0.70887202 0.69947302 -0.090764999 0.41869101 0.90696502 0.045961998\n\t\t 0.386338 0.922342 -0.0053409999 0.41869101 0.90696502 0.045961998 0.70887202 0.69947302\n\t\t -0.090764999 0.70887202 0.69947302 -0.090764999 0.69544101 0.71314198 -0.088261999\n\t\t 0.386338 0.922342 -0.0053409999 0.69544101 0.71314198 -0.088261999 0.70887202 0.69947302\n\t\t -0.090764999 0.90192997 0.36998299 -0.222789 0.90192997 0.36998299 -0.222789 0.90858102\n\t\t 0.383746 -0.164986 0.69544101 0.71314198 -0.088261999 0.90355802 0.351096 -0.24559\n\t\t 0.90192997 0.36998299 -0.222789 0.70887202 0.69947302 -0.090764999 0.70887202 0.69947302\n\t\t -0.090764999 0.73291701 0.677342 -0.063570999 0.90355802 0.351096 -0.24559;\n\tsetAttr \".n[37350:37515]\" -type \"float3\"  0.907332 0.32856899 -0.262281 0.90355802\n\t\t 0.351096 -0.24559 0.73291701 0.677342 -0.063570999 0.73291701 0.677342 -0.063570999\n\t\t 0.75884497 0.64967602 -0.045566 0.907332 0.32856899 -0.262281 0.90355802 0.351096\n\t\t -0.24559 0.907332 0.32856899 -0.262281 0.888699 -0.056338999 -0.45501599 0.888699\n\t\t -0.056338999 -0.45501599 0.91373003 -0.043611001 -0.40397599 0.90355802 0.351096\n\t\t -0.24559 0.90192997 0.36998299 -0.222789 0.90355802 0.351096 -0.24559 0.91373003\n\t\t -0.043611001 -0.40397599 0.91373003 -0.043611001 -0.40397599 0.94363099 -0.02823\n\t\t -0.32979301 0.90192997 0.36998299 -0.222789 0.90858102 0.383746 -0.164986 0.90192997\n\t\t 0.36998299 -0.222789 0.94363099 -0.02823 -0.32979301 0.94363099 -0.02823 -0.32979301\n\t\t 0.97627097 -0.01239 -0.216196 0.90858102 0.383746 -0.164986 0.97627097 -0.01239 -0.216196\n\t\t 0.94363099 -0.02823 -0.32979301 0.82221502 -0.41530401 -0.38920999 0.82221502 -0.41530401\n\t\t -0.38920999 0.88515902 -0.403072 -0.232437 0.97627097 -0.01239 -0.216196 0.75670099\n\t\t -0.41860601 -0.502168 0.82221502 -0.41530401 -0.38920999 0.94363099 -0.02823 -0.32979301\n\t\t 0.94363099 -0.02823 -0.32979301 0.91373003 -0.043611001 -0.40397599 0.75670099 -0.41860601\n\t\t -0.502168 0.70257902 -0.41487601 -0.57815301 0.75670099 -0.41860601 -0.502168 0.91373003\n\t\t -0.043611001 -0.40397599 0.91373003 -0.043611001 -0.40397599 0.888699 -0.056338999\n\t\t -0.45501599 0.70257902 -0.41487601 -0.57815301 0.75670099 -0.41860601 -0.502168 0.70257902\n\t\t -0.41487601 -0.57815301 0.41567701 -0.67622203 -0.60822397 0.41567701 -0.67622203\n\t\t -0.60822397 0.48748001 -0.70114303 -0.52034801 0.75670099 -0.41860601 -0.502168 0.82221502\n\t\t -0.41530401 -0.38920999 0.75670099 -0.41860601 -0.502168 0.48748001 -0.70114303 -0.52034801\n\t\t 0.48748001 -0.70114303 -0.52034801 0.57499099 -0.72032499 -0.38796601 0.82221502\n\t\t -0.41530401 -0.38920999 0.88515902 -0.403072 -0.232437 0.82221502 -0.41530401 -0.38920999\n\t\t 0.57499099 -0.72032499 -0.38796601 0.57499099 -0.72032499 -0.38796601 0.65778899\n\t\t -0.72245902 -0.21299601 0.88515902 -0.403072 -0.232437 0.65778899 -0.72245902 -0.21299601\n\t\t 0.57499099 -0.72032499 -0.38796601 0.25977501 -0.908539 -0.32722101 0.25977501 -0.908539\n\t\t -0.32722101 0.33946899 -0.926175 -0.164195 0.65778899 -0.72245902 -0.21299601 0.17472599\n\t\t -0.869964 -0.46112201 0.25977501 -0.908539 -0.32722101 0.57499099 -0.72032499 -0.38796601\n\t\t 0.57499099 -0.72032499 -0.38796601 0.48748001 -0.70114303 -0.52034801 0.17472599\n\t\t -0.869964 -0.46112201 0.101323 -0.828439 -0.55083799 0.17472599 -0.869964 -0.46112201\n\t\t 0.48748001 -0.70114303 -0.52034801 0.48748001 -0.70114303 -0.52034801 0.41567701\n\t\t -0.67622203 -0.60822397 0.101323 -0.828439 -0.55083799 0.17472599 -0.869964 -0.46112201\n\t\t 0.101323 -0.828439 -0.55083799 -0.20789699 -0.88457298 -0.417505 -0.20789699 -0.88457298\n\t\t -0.417505 -0.14533199 -0.93116999 -0.33436799 0.17472599 -0.869964 -0.46112201 0.25977501\n\t\t -0.908539 -0.32722101 0.17472599 -0.869964 -0.46112201 -0.14533199 -0.93116999 -0.33436799\n\t\t -0.14533199 -0.93116999 -0.33436799 -0.081303 -0.97298598 -0.216077 0.25977501 -0.908539\n\t\t -0.32722101 0.33946899 -0.926175 -0.164195 0.25977501 -0.908539 -0.32722101 -0.081303\n\t\t -0.97298598 -0.216077 -0.081303 -0.97298598 -0.216077 -0.024567001 -0.99521101 -0.094608001\n\t\t 0.33946899 -0.926175 -0.164195 0.917651 -0.387288 -0.089024 0.88515902 -0.403072\n\t\t -0.232437 0.65778899 -0.72245902 -0.21299601 0.88515902 -0.403072 -0.232437 0.917651\n\t\t -0.387288 -0.089024 0.99538499 -0.001404 -0.095951997 0.99900597 -0.002197 -0.044527002\n\t\t 0.99538499 -0.001404 -0.095951997 0.917651 -0.387288 -0.089024 0.99538499 -0.001404\n\t\t -0.095951997 0.99900597 -0.002197 -0.044527002 0.922225 0.38396001 -0.045565002 0.922225\n\t\t 0.38396001 -0.045565002 0.91851097 0.386406 -0.083837003 0.99538499 -0.001404 -0.095951997\n\t\t 0.91851097 0.386406 -0.083837003 0.922225 0.38396001 -0.045565002 0.70227897 0.71122098\n\t\t -0.031129999 0.70227897 0.71122098 -0.031129999 0.69922698 0.71302199 -0.051791001\n\t\t 0.91851097 0.386406 -0.083837003 0.69922698 0.71302199 -0.051791001 0.70227897 0.71122098\n\t\t -0.031129999 0.37788701 0.92576599 -0.012574 0.37788701 0.92576599 -0.012574 0.37916899\n\t\t 0.92521697 -0.014314 0.69922698 0.71302199 -0.051791001 0.001404 0.99981302 0.019288\n\t\t 0.37916899 0.92521697 -0.014314 0.37788701 0.92576599 -0.012574 0.37788701 0.92576599\n\t\t -0.012574 -0.0051270002 0.99998301 0.002808 0.001404 0.99981302 0.019288 0.37916899\n\t\t 0.92521697 -0.014314 0.001404 0.99981302 0.019288 0.022034001 0.99689299 0.075625002\n\t\t 0.022034001 0.99689299 0.075625002 0.386338 0.922342 -0.0053409999 0.37916899 0.92521697\n\t\t -0.014314 0.69544101 0.71314198 -0.088261999 0.69922698 0.71302199 -0.051791001 0.37916899\n\t\t 0.92521697 -0.014314 0.37916899 0.92521697 -0.014314 0.386338 0.922342 -0.0053409999\n\t\t 0.69544101 0.71314198 -0.088261999 0.69922698 0.71302199 -0.051791001 0.69544101\n\t\t 0.71314198 -0.088261999 0.90858102 0.383746 -0.164986 0.90858102 0.383746 -0.164986\n\t\t 0.91851097 0.386406 -0.083837003 0.69922698 0.71302199 -0.051791001 0.97627097 -0.01239\n\t\t -0.216196 0.99538499 -0.001404 -0.095951997 0.91851097 0.386406 -0.083837003 0.91851097\n\t\t 0.386406 -0.083837003 0.90858102 0.383746 -0.164986 0.97627097 -0.01239 -0.216196\n\t\t 0.917651 -0.387288 -0.089024 0.92173499 -0.38637 -0.03351 0.99900597 -0.002197 -0.044527002\n\t\t 0.99538499 -0.001404 -0.095951997 0.97627097 -0.01239 -0.216196 0.88515902 -0.403072\n\t\t -0.232437 0.022034001 0.99689299 0.075625002 0.001404 0.99981302 0.019288 -0.37206\n\t\t 0.92720401 0.043184999 -0.37206 0.92720401 0.043184999 -0.33528101 0.93128502 0.142462\n\t\t 0.022034001 0.99689299 0.075625002 0.076695003 0.98177803 0.173869;\n\tsetAttr \".n[37516:37681]\" -type \"float3\"  0.022034001 0.99689299 0.075625002 -0.33528101\n\t\t 0.93128502 0.142462 -0.33528101 0.93128502 0.142462 -0.26359299 0.92320102 0.27967599\n\t\t 0.076695003 0.98177803 0.173869 -0.26359299 0.92320102 0.27967599 -0.33528101 0.93128502\n\t\t 0.142462 -0.65336102 0.73295498 0.189465 -0.65336102 0.73295498 0.189465 -0.57275701\n\t\t 0.737836 0.35713801 -0.26359299 0.92320102 0.27967599 -0.57275701 0.737836 0.35713801\n\t\t -0.65336102 0.73295498 0.189465 -0.88316 0.419301 0.21027599 -0.88316 0.419301 0.21027599\n\t\t -0.81104702 0.43657601 0.38936299 -0.57275701 0.737836 0.35713801 -0.81104702 0.43657601\n\t\t 0.38936299 -0.88316 0.419301 0.21027599 -0.97981602 0.029756 0.19767199 -0.97981602\n\t\t 0.029756 0.19767199 -0.93204898 0.050173 0.35884199 -0.81104702 0.43657601 0.38936299\n\t\t -0.93204898 0.050173 0.35884199 -0.97981602 0.029756 0.19767199 -0.916668 -0.370592\n\t\t 0.14960399 -0.916668 -0.370592 0.14960399 -0.897901 -0.35676801 0.25785601 -0.93204898\n\t\t 0.050173 0.35884199 -0.897901 -0.35676801 0.25785601 -0.916668 -0.370592 0.14960399\n\t\t -0.704898 -0.705356 0.074772 -0.704898 -0.705356 0.074772 -0.71082997 -0.69563103\n\t\t 0.104011 -0.897901 -0.35676801 0.25785601 -0.71082997 -0.69563103 0.104011 -0.704898\n\t\t -0.705356 0.074772 -0.388659 -0.92130798 -0.011628 -0.388659 -0.92130798 -0.011628\n\t\t -0.41835201 -0.90589201 -0.065889999 -0.71082997 -0.69563103 0.104011 -0.41835201\n\t\t -0.90589201 -0.065889999 -0.388659 -0.92130798 -0.011628 -0.024567001 -0.99521101\n\t\t -0.094608001 -0.024567001 -0.99521101 -0.094608001 -0.081303 -0.97298598 -0.216077\n\t\t -0.41835201 -0.90589201 -0.065889999 -0.72678602 -0.68225801 0.079411 -0.71082997\n\t\t -0.69563103 0.104011 -0.41835201 -0.90589201 -0.065889999 -0.41835201 -0.90589201\n\t\t -0.065889999 -0.457275 -0.87695098 -0.147837 -0.72678602 -0.68225801 0.079411 -0.457275\n\t\t -0.87695098 -0.147837 -0.41835201 -0.90589201 -0.065889999 -0.081303 -0.97298598\n\t\t -0.216077 -0.081303 -0.97298598 -0.216077 -0.14533199 -0.93116999 -0.33436799 -0.457275\n\t\t -0.87695098 -0.147837 -0.50341898 -0.83745599 -0.21269 -0.457275 -0.87695098 -0.147837\n\t\t -0.14533199 -0.93116999 -0.33436799 -0.14533199 -0.93116999 -0.33436799 -0.20789699\n\t\t -0.88457298 -0.417505 -0.50341898 -0.83745599 -0.21269 -0.457275 -0.87695098 -0.147837\n\t\t -0.50341898 -0.83745599 -0.21269 -0.75361699 -0.65558898 0.04758 -0.75361699 -0.65558898\n\t\t 0.04758 -0.72678602 -0.68225801 0.079411 -0.457275 -0.87695098 -0.147837 -0.88823098\n\t\t -0.34987301 0.29771501 -0.897901 -0.35676801 0.25785601 -0.71082997 -0.69563103 0.104011\n\t\t -0.71082997 -0.69563103 0.104011 -0.72678602 -0.68225801 0.079411 -0.88823098 -0.34987301\n\t\t 0.29771501 -0.89091402 -0.33507001 0.306595 -0.88823098 -0.34987301 0.29771501 -0.72678602\n\t\t -0.68225801 0.079411 -0.72678602 -0.68225801 0.079411 -0.75361699 -0.65558898 0.04758\n\t\t -0.89091402 -0.33507001 0.306595 -0.88823098 -0.34987301 0.29771501 -0.89091402 -0.33507001\n\t\t 0.306595 -0.86820799 0.058322001 0.492762 -0.86820799 0.058322001 0.492762 -0.89192402\n\t\t 0.054598998 0.44887701 -0.88823098 -0.34987301 0.29771501 -0.897901 -0.35676801 0.25785601\n\t\t -0.88823098 -0.34987301 0.29771501 -0.89192402 0.054598998 0.44887701 -0.89192402\n\t\t 0.054598998 0.44887701 -0.93204898 0.050173 0.35884199 -0.897901 -0.35676801 0.25785601\n\t\t -0.93204898 0.050173 0.35884199 -0.89192402 0.054598998 0.44887701 -0.74611402 0.43337899\n\t\t 0.505467 -0.74611402 0.43337899 0.505467 -0.81104702 0.43657601 0.38936299 -0.93204898\n\t\t 0.050173 0.35884199 -0.702245 0.425161 0.57104301 -0.74611402 0.43337899 0.505467\n\t\t -0.89192402 0.054598998 0.44887701 -0.89192402 0.054598998 0.44887701 -0.86820799\n\t\t 0.058322001 0.492762 -0.702245 0.425161 0.57104301 -0.74611402 0.43337899 0.505467\n\t\t -0.702245 0.425161 0.57104301 -0.44499701 0.70343 0.554223 -0.44499701 0.70343 0.554223\n\t\t -0.49837399 0.72250402 0.479177 -0.74611402 0.43337899 0.505467 -0.81104702 0.43657601\n\t\t 0.38936299 -0.74611402 0.43337899 0.505467 -0.49837399 0.72250402 0.479177 -0.49837399\n\t\t 0.72250402 0.479177 -0.57275701 0.737836 0.35713801 -0.81104702 0.43657601 0.38936299\n\t\t -0.57275701 0.737836 0.35713801 -0.49837399 0.72250402 0.479177 -0.193978 0.89838201\n\t\t 0.394059 -0.193978 0.89838201 0.394059 -0.26359299 0.92320102 0.27967599 -0.57275701\n\t\t 0.737836 0.35713801 -0.139533 0.872262 0.46871001 -0.193978 0.89838201 0.394059 -0.49837399\n\t\t 0.72250402 0.479177 -0.49837399 0.72250402 0.479177 -0.44499701 0.70343 0.554223\n\t\t -0.139533 0.872262 0.46871001 -0.193978 0.89838201 0.394059 -0.139533 0.872262 0.46871001\n\t\t 0.18460999 0.92454797 0.333361 0.18460999 0.92454797 0.333361 0.13471 0.95389801\n\t\t 0.26820001 -0.193978 0.89838201 0.394059 -0.26359299 0.92320102 0.27967599 -0.193978\n\t\t 0.89838201 0.394059 0.13471 0.95389801 0.26820001 0.13471 0.95389801 0.26820001 0.076695003\n\t\t 0.98177803 0.173869 -0.26359299 0.92320102 0.27967599 -0.65655601 0.40980899 0.63323897\n\t\t -0.702245 0.425161 0.57104301 -0.86820799 0.058322001 0.492762 -0.86820799 0.058322001\n\t\t 0.492762 -0.83891398 0.059939999 0.54095399 -0.65655601 0.40980899 0.63323897 -0.83891398\n\t\t 0.059939999 0.54095399 -0.86820799 0.058322001 0.492762 -0.89091402 -0.33507001 0.306595\n\t\t -0.89091402 -0.33507001 0.306595 -0.88881099 -0.31517199 0.33269 -0.83891398 0.059939999\n\t\t 0.54095399 -0.88881099 -0.31517199 0.33269 -0.89091402 -0.33507001 0.306595 -0.75361699\n\t\t -0.65558898 0.04758 -0.75361699 -0.65558898 0.04758 -0.78171301 -0.62203801 0.044649001\n\t\t -0.88881099 -0.31517199 0.33269 -0.78171301 -0.62203801 0.044649001 -0.75361699 -0.65558898\n\t\t 0.04758 -0.50341898 -0.83745599 -0.21269 -0.50341898 -0.83745599 -0.21269 -0.55429\n\t\t -0.79521 -0.24577101;\n\tsetAttr \".n[37682:37847]\" -type \"float3\"  -0.78171301 -0.62203801 0.044649001 -0.79640198\n\t\t -0.59991902 0.076421 -0.78171301 -0.62203801 0.044649001 -0.55429 -0.79521 -0.24577101\n\t\t -0.55429 -0.79521 -0.24577101 -0.594603 -0.76563299 -0.245465 -0.79640198 -0.59991902\n\t\t 0.076421 -0.79527998 -0.59461403 0.118172 -0.79640198 -0.59991902 0.076421 -0.594603\n\t\t -0.76563299 -0.245465 -0.594603 -0.76563299 -0.245465 -0.61914802 -0.75126702 -0.228591\n\t\t -0.79527998 -0.59461403 0.118172 -0.78102797 -0.60694498 0.14701299 -0.79527998 -0.59461403\n\t\t 0.118172 -0.61914802 -0.75126702 -0.228591 -0.61914802 -0.75126702 -0.228591 -0.62551701\n\t\t -0.74991298 -0.21531101 -0.78102797 -0.60694498 0.14701299 -0.76188302 -0.63309199\n\t\t 0.136849 -0.78102797 -0.60694498 0.14701299 -0.62551701 -0.74991298 -0.21531101 -0.62551701\n\t\t -0.74991298 -0.21531101 -0.61016297 -0.76016402 -0.223276 -0.76188302 -0.63309199\n\t\t 0.136849 -0.74486202 -0.658553 0.107185 -0.76188302 -0.63309199 0.136849 -0.61016297\n\t\t -0.76016402 -0.223276 -0.61016297 -0.76016402 -0.223276 -0.57859302 -0.78118402 -0.234483\n\t\t -0.74486202 -0.658553 0.107185 -0.72579998 -0.68319601 0.080356002 -0.74486202 -0.658553\n\t\t 0.107185 -0.57859302 -0.78118402 -0.234483 -0.57859302 -0.78118402 -0.234483 -0.52782202\n\t\t -0.81726199 -0.231271 -0.72579998 -0.68319601 0.080356002 -0.70263797 -0.70755202\n\t\t 0.075290002 -0.72579998 -0.68319601 0.080356002 -0.52782202 -0.81726199 -0.231271\n\t\t -0.52782202 -0.81726199 -0.231271 -0.45068499 -0.87521499 -0.175733 -0.70263797 -0.70755202\n\t\t 0.075290002 -0.78102797 -0.60694498 0.14701299 -0.76188302 -0.63309199 0.136849 -0.78900498\n\t\t -0.39732599 0.46861801 -0.78900498 -0.39732599 0.46861801 -0.80632299 -0.35219401\n\t\t 0.475187 -0.78102797 -0.60694498 0.14701299 -0.79527998 -0.59461403 0.118172 -0.78102797\n\t\t -0.60694498 0.14701299 -0.80632299 -0.35219401 0.475187 -0.79140198 -0.43059999 0.43389601\n\t\t -0.78900498 -0.39732599 0.46861801 -0.76188302 -0.63309199 0.136849 -0.76188302 -0.63309199\n\t\t 0.136849 -0.74486202 -0.658553 0.107185 -0.79140198 -0.43059999 0.43389601 -0.80480099\n\t\t -0.44531101 0.39242101 -0.79140198 -0.43059999 0.43389601 -0.74486202 -0.658553 0.107185\n\t\t -0.74486202 -0.658553 0.107185 -0.72579998 -0.68319601 0.080356002 -0.80480099 -0.44531101\n\t\t 0.39242101 -0.834849 -0.43215001 0.34099001 -0.80480099 -0.44531101 0.39242101 -0.72579998\n\t\t -0.68319601 0.080356002 -0.72579998 -0.68319601 0.080356002 -0.70263797 -0.70755202\n\t\t 0.075290002 -0.834849 -0.43215001 0.34099001 -0.80480099 -0.44531101 0.39242101 -0.834849\n\t\t -0.43215001 0.34099001 -0.82084 -0.100805 0.56219202 -0.82084 -0.100805 0.56219202\n\t\t -0.750462 -0.144752 0.644867 -0.80480099 -0.44531101 0.39242101 -0.79140198 -0.43059999\n\t\t 0.43389601 -0.80480099 -0.44531101 0.39242101 -0.750462 -0.144752 0.644867 -0.750462\n\t\t -0.144752 0.644867 -0.71241301 -0.13965701 0.68772298 -0.79140198 -0.43059999 0.43389601\n\t\t -0.78900498 -0.39732599 0.46861801 -0.79140198 -0.43059999 0.43389601 -0.71241301\n\t\t -0.13965701 0.68772298 -0.71241301 -0.13965701 0.68772298 -0.69333303 -0.103124 0.71320099\n\t\t -0.78900498 -0.39732599 0.46861801 -0.80632299 -0.35219401 0.475187 -0.78900498 -0.39732599\n\t\t 0.46861801 -0.69333303 -0.103124 0.71320099 -0.69333303 -0.103124 0.71320099 -0.70554602\n\t\t -0.044192001 0.70728499 -0.80632299 -0.35219401 0.475187 -0.70554602 -0.044192001\n\t\t 0.70728499 -0.69333303 -0.103124 0.71320099 -0.49867901 0.19770101 0.84393901 -0.49867901\n\t\t 0.19770101 0.84393901 -0.508169 0.25883001 0.82144499 -0.70554602 -0.044192001 0.70728499\n\t\t -0.525989 0.16675401 0.83398402 -0.49867901 0.19770101 0.84393901 -0.69333303 -0.103124\n\t\t 0.71320099 -0.69333303 -0.103124 0.71320099 -0.71241301 -0.13965701 0.68772298 -0.525989\n\t\t 0.16675401 0.83398402 -0.579355 0.172161 0.79668599 -0.525989 0.16675401 0.83398402\n\t\t -0.71241301 -0.13965701 0.68772298 -0.71241301 -0.13965701 0.68772298 -0.750462 -0.144752\n\t\t 0.644867 -0.579355 0.172161 0.79668599 -0.67844099 0.23743901 0.69522703 -0.579355\n\t\t 0.172161 0.79668599 -0.750462 -0.144752 0.644867 -0.750462 -0.144752 0.644867 -0.82084\n\t\t -0.100805 0.56219202 -0.67844099 0.23743901 0.69522703 -0.579355 0.172161 0.79668599\n\t\t -0.67844099 0.23743901 0.69522703 -0.448576 0.53369403 0.71690297 -0.448576 0.53369403\n\t\t 0.71690297 -0.330466 0.45556501 0.82659101 -0.579355 0.172161 0.79668599 -0.525989\n\t\t 0.16675401 0.83398402 -0.579355 0.172161 0.79668599 -0.330466 0.45556501 0.82659101\n\t\t -0.330466 0.45556501 0.82659101 -0.26771399 0.440422 0.856947 -0.525989 0.16675401\n\t\t 0.83398402 -0.49867901 0.19770101 0.84393901 -0.525989 0.16675401 0.83398402 -0.26771399\n\t\t 0.440422 0.856947 -0.26771399 0.440422 0.856947 -0.238296 0.46114799 0.85472703 -0.49867901\n\t\t 0.19770101 0.84393901 -0.508169 0.25883001 0.82144499 -0.49867901 0.19770101 0.84393901\n\t\t -0.238296 0.46114799 0.85472703 -0.238296 0.46114799 0.85472703 -0.24723899 0.515535\n\t\t 0.82042497 -0.508169 0.25883001 0.82144499 -0.24723899 0.515535 0.82042497 -0.238296\n\t\t 0.46114799 0.85472703 0.056644 0.658885 0.750108 0.056644 0.658885 0.750108 0.049837999\n\t\t 0.69977498 0.712623 -0.24723899 0.515535 0.82042497 0.026124001 0.64994103 0.75953603\n\t\t 0.056644 0.658885 0.750108 -0.238296 0.46114799 0.85472703 -0.238296 0.46114799 0.85472703\n\t\t -0.26771399 0.440422 0.856947 0.026124001 0.64994103 0.75953603 -0.041414 0.67458898\n\t\t 0.73703098 0.026124001 0.64994103 0.75953603 -0.26771399 0.440422 0.856947 -0.26771399\n\t\t 0.440422 0.856947 -0.330466 0.45556501 0.82659101 -0.041414 0.67458898 0.73703098\n\t\t -0.16443799 0.759839 0.62897199 -0.041414 0.67458898 0.73703098 -0.330466 0.45556501\n\t\t 0.82659101 -0.330466 0.45556501 0.82659101 -0.448576 0.53369403 0.71690297 -0.16443799\n\t\t 0.759839 0.62897199;\n\tsetAttr \".n[37848:38013]\" -type \"float3\"  -0.041414 0.67458898 0.73703098 -0.16443799\n\t\t 0.759839 0.62897199 0.15213899 0.88317102 0.44369099 0.15213899 0.88317102 0.44369099\n\t\t 0.25865 0.80277699 0.53726 -0.041414 0.67458898 0.73703098 0.026124001 0.64994103\n\t\t 0.75953603 -0.041414 0.67458898 0.73703098 0.25865 0.80277699 0.53726 0.25865 0.80277699\n\t\t 0.53726 0.15213899 0.88317102 0.44369099 0.45782 0.86742002 0.194896 0.45782 0.86742002\n\t\t 0.194896 0.52789003 0.81077302 0.25294301 0.25865 0.80277699 0.53726 0.32231599 0.77055597\n\t\t 0.549869 0.25865 0.80277699 0.53726 0.52789003 0.81077302 0.25294301 0.25865 0.80277699\n\t\t 0.53726 0.32231599 0.77055597 0.549869 0.026124001 0.64994103 0.75953603 0.056644\n\t\t 0.658885 0.750108 0.026124001 0.64994103 0.75953603 0.32231599 0.77055597 0.549869\n\t\t 0.52789003 0.81077302 0.25294301 0.576814 0.77778298 0.249678 0.32231599 0.77055597\n\t\t 0.549869 0.353475 0.76686001 0.53570598 0.32231599 0.77055597 0.549869 0.576814 0.77778298\n\t\t 0.249678 0.32231599 0.77055597 0.549869 0.353475 0.76686001 0.53570598 0.056644 0.658885\n\t\t 0.750108 0.049837999 0.69977498 0.712623 0.056644 0.658885 0.750108 0.353475 0.76686001\n\t\t 0.53570598 0.576814 0.77778298 0.249678 0.60639 0.76170301 0.22825401 0.353475 0.76686001\n\t\t 0.53570598 0.35225099 0.78861302 0.50399202 0.353475 0.76686001 0.53570598 0.60639\n\t\t 0.76170301 0.22825401 0.353475 0.76686001 0.53570598 0.35225099 0.78861302 0.50399202\n\t\t 0.049837999 0.69977498 0.712623 0.60639 0.76170301 0.22825401 0.61529797 0.76056999\n\t\t 0.20722499 0.35225099 0.78861302 0.50399202 0.52789003 0.81077302 0.25294301 0.45782\n\t\t 0.86742002 0.194896 0.70880502 0.70166397 -0.072544001 0.70880502 0.70166397 -0.072544001\n\t\t 0.72526401 0.68461198 -0.072788998 0.52789003 0.81077302 0.25294301 0.576814 0.77778298\n\t\t 0.249678 0.52789003 0.81077302 0.25294301 0.72526401 0.68461198 -0.072788998 0.72526401\n\t\t 0.68461198 -0.072788998 0.74513698 0.659347 -0.100166 0.576814 0.77778298 0.249678\n\t\t 0.60639 0.76170301 0.22825401 0.576814 0.77778298 0.249678 0.74513698 0.659347 -0.100166\n\t\t 0.74513698 0.659347 -0.100166 0.76360601 0.63188797 -0.13275599 0.60639 0.76170301\n\t\t 0.22825401 0.61529797 0.76056999 0.20722499 0.60639 0.76170301 0.22825401 0.76360601\n\t\t 0.63188797 -0.13275599 0.76360601 0.63188797 -0.13275599 0.782116 0.60632598 -0.143746\n\t\t 0.61529797 0.76056999 0.20722499 0.782116 0.60632598 -0.143746 0.76360601 0.63188797\n\t\t -0.13275599 0.78527898 0.39534101 -0.47648999 0.78527898 0.39534101 -0.47648999 0.804344\n\t\t 0.34777099 -0.48175201 0.782116 0.60632598 -0.143746 0.79169101 0.42964599 -0.434315\n\t\t 0.78527898 0.39534101 -0.47648999 0.76360601 0.63188797 -0.13275599 0.76360601 0.63188797\n\t\t -0.13275599 0.74513698 0.659347 -0.100166 0.79169101 0.42964599 -0.434315 0.81371599\n\t\t 0.44003299 -0.379787 0.79169101 0.42964599 -0.434315 0.74513698 0.659347 -0.100166\n\t\t 0.74513698 0.659347 -0.100166 0.72526401 0.68461198 -0.072788998 0.81371599 0.44003299\n\t\t -0.379787 0.85744202 0.41158399 -0.30885601 0.81371599 0.44003299 -0.379787 0.72526401\n\t\t 0.68461198 -0.072788998 0.72526401 0.68461198 -0.072788998 0.70880502 0.70166397\n\t\t -0.072544001 0.85744202 0.41158399 -0.30885601 0.81371599 0.44003299 -0.379787 0.85744202\n\t\t 0.41158399 -0.30885601 0.87447798 0.049686 -0.48251501 0.87447798 0.049686 -0.48251501\n\t\t 0.77739298 0.120583 -0.61734903 0.81371599 0.44003299 -0.379787 0.79169101 0.42964599\n\t\t -0.434315 0.81371599 0.44003299 -0.379787 0.77739298 0.120583 -0.61734903 0.77739298\n\t\t 0.120583 -0.61734903 0.71094298 0.13285001 -0.69058698 0.79169101 0.42964599 -0.434315\n\t\t 0.78527898 0.39534101 -0.47648999 0.79169101 0.42964599 -0.434315 0.71094298 0.13285001\n\t\t -0.69058698 0.71094298 0.13285001 -0.69058698 0.67344803 0.103706 -0.731924 0.78527898\n\t\t 0.39534101 -0.47648999 0.804344 0.34777099 -0.48175201 0.78527898 0.39534101 -0.47648999\n\t\t 0.67344803 0.103706 -0.731924 0.67344803 0.103706 -0.731924 0.68095797 0.044833999\n\t\t -0.73094898 0.804344 0.34777099 -0.48175201 0.68095797 0.044833999 -0.73094898 0.67344803\n\t\t 0.103706 -0.731924 0.46584401 -0.188547 -0.864546 0.46584401 -0.188547 -0.864546\n\t\t 0.459104 -0.241989 -0.85478902 0.68095797 0.044833999 -0.73094898 0.52426302 -0.177959\n\t\t -0.83275402 0.46584401 -0.188547 -0.864546 0.67344803 0.103706 -0.731924 0.67344803\n\t\t 0.103706 -0.731924 0.71094298 0.13285001 -0.69058698 0.52426302 -0.177959 -0.83275402\n\t\t 0.621099 -0.216565 -0.75321698 0.52426302 -0.177959 -0.83275402 0.71094298 0.13285001\n\t\t -0.69058698 0.71094298 0.13285001 -0.69058698 0.77739298 0.120583 -0.61734903 0.621099\n\t\t -0.216565 -0.75321698 0.75380999 -0.31560501 -0.57633698 0.621099 -0.216565 -0.75321698\n\t\t 0.77739298 0.120583 -0.61734903 0.77739298 0.120583 -0.61734903 0.87447798 0.049686\n\t\t -0.48251501 0.75380999 -0.31560501 -0.57633698 0.621099 -0.216565 -0.75321698 0.75380999\n\t\t -0.31560501 -0.57633698 0.51823902 -0.62267399 -0.58626503 0.51823902 -0.62267399\n\t\t -0.58626503 0.36995801 -0.51403999 -0.77388299 0.621099 -0.216565 -0.75321698 0.52426302\n\t\t -0.177959 -0.83275402 0.621099 -0.216565 -0.75321698 0.36995801 -0.51403999 -0.77388299\n\t\t 0.36995801 -0.51403999 -0.77388299 0.26518399 -0.456083 -0.849509 0.52426302 -0.177959\n\t\t -0.83275402 0.46584401 -0.188547 -0.864546 0.52426302 -0.177959 -0.83275402 0.26518399\n\t\t -0.456083 -0.849509 0.26518399 -0.456083 -0.849509 0.20392799 -0.444785 -0.87211198\n\t\t 0.46584401 -0.188547 -0.864546 0.459104 -0.241989 -0.85478902 0.46584401 -0.188547\n\t\t -0.864546 0.20392799 -0.444785 -0.87211198 0.20392799 -0.444785 -0.87211198;\n\tsetAttr \".n[38014:38179]\" -type \"float3\"  0.190166 -0.48000899 -0.85640401 0.459104\n\t\t -0.241989 -0.85478902 0.190166 -0.48000899 -0.85640401 0.20392799 -0.444785 -0.87211198\n\t\t -0.083591998 -0.64316398 -0.76115203 -0.083591998 -0.64316398 -0.76115203 -0.096531004\n\t\t -0.65838701 -0.74646401 0.190166 -0.48000899 -0.85640401 -0.031342998 -0.666421 -0.74491698\n\t\t -0.083591998 -0.64316398 -0.76115203 0.20392799 -0.444785 -0.87211198 0.20392799\n\t\t -0.444785 -0.87211198 0.26518399 -0.456083 -0.849509 -0.031342998 -0.666421 -0.74491698\n\t\t 0.063816004 -0.72751898 -0.68311298 -0.031342998 -0.666421 -0.74491698 0.26518399\n\t\t -0.456083 -0.849509 0.26518399 -0.456083 -0.849509 0.36995801 -0.51403999 -0.77388299\n\t\t 0.063816004 -0.72751898 -0.68311298 0.208169 -0.82983798 -0.517721 0.063816004 -0.72751898\n\t\t -0.68311298 0.36995801 -0.51403999 -0.77388299 0.36995801 -0.51403999 -0.77388299\n\t\t 0.51823902 -0.62267399 -0.58626503 0.208169 -0.82983798 -0.517721 0.063816004 -0.72751898\n\t\t -0.68311298 0.208169 -0.82983798 -0.517721 -0.13016599 -0.916502 -0.378259 -0.13016599\n\t\t -0.916502 -0.378259 -0.25037599 -0.83188301 -0.49526 0.063816004 -0.72751898 -0.68311298\n\t\t -0.031342998 -0.666421 -0.74491698 0.063816004 -0.72751898 -0.68311298 -0.25037599\n\t\t -0.83188301 -0.49526 -0.25037599 -0.83188301 -0.49526 -0.32667899 -0.78138798 -0.53170902\n\t\t -0.031342998 -0.666421 -0.74491698 -0.083591998 -0.64316398 -0.76115203 -0.031342998\n\t\t -0.666421 -0.74491698 -0.32667899 -0.78138798 -0.53170902 -0.32667899 -0.78138798\n\t\t -0.53170902 -0.36830899 -0.75807399 -0.538212 -0.083591998 -0.64316398 -0.76115203\n\t\t -0.096531004 -0.65838701 -0.74646401 -0.083591998 -0.64316398 -0.76115203 -0.36830899\n\t\t -0.75807399 -0.538212 -0.36830899 -0.75807399 -0.538212 -0.380146 -0.75904202 -0.52853\n\t\t -0.096531004 -0.65838701 -0.74646401 -0.380146 -0.75904202 -0.52853 -0.36830899 -0.75807399\n\t\t -0.538212 -0.61016297 -0.76016402 -0.223276 -0.61016297 -0.76016402 -0.223276 -0.62551701\n\t\t -0.74991298 -0.21531101 -0.380146 -0.75904202 -0.52853 -0.57859302 -0.78118402 -0.234483\n\t\t -0.61016297 -0.76016402 -0.223276 -0.36830899 -0.75807399 -0.538212 -0.36830899 -0.75807399\n\t\t -0.538212 -0.32667899 -0.78138798 -0.53170902 -0.57859302 -0.78118402 -0.234483 -0.32667899\n\t\t -0.78138798 -0.53170902 -0.25037599 -0.83188301 -0.49526 -0.52782202 -0.81726199\n\t\t -0.231271 -0.52782202 -0.81726199 -0.231271 -0.57859302 -0.78118402 -0.234483 -0.32667899\n\t\t -0.78138798 -0.53170902 -0.25037599 -0.83188301 -0.49526 -0.13016599 -0.916502 -0.378259\n\t\t -0.45068499 -0.87521499 -0.175733 -0.45068499 -0.87521499 -0.175733 -0.52782202 -0.81726199\n\t\t -0.231271 -0.25037599 -0.83188301 -0.49526 -0.018921999 -0.98705697 -0.15925001 -0.13016599\n\t\t -0.916502 -0.378259 0.208169 -0.82983798 -0.517721 0.208169 -0.82983798 -0.517721\n\t\t 0.33378699 -0.91169602 -0.239575 -0.018921999 -0.98705697 -0.15925001 0.33378699\n\t\t -0.91169602 -0.239575 0.208169 -0.82983798 -0.517721 0.51823902 -0.62267399 -0.58626503\n\t\t 0.51823902 -0.62267399 -0.58626503 0.63590002 -0.71677601 -0.286118 0.33378699 -0.91169602\n\t\t -0.239575 0.63590002 -0.71677601 -0.286118 0.51823902 -0.62267399 -0.58626503 0.75380999\n\t\t -0.31560501 -0.57633698 0.75380999 -0.31560501 -0.57633698 0.85655499 -0.420068 -0.299761\n\t\t 0.63590002 -0.71677601 -0.286118 0.85655499 -0.420068 -0.299761 0.75380999 -0.31560501\n\t\t -0.57633698 0.87447798 0.049686 -0.48251501 0.87447798 0.049686 -0.48251501 0.96010703\n\t\t -0.045747999 -0.27586401 0.85655499 -0.420068 -0.299761 0.96010703 -0.045747999 -0.27586401\n\t\t 0.87447798 0.049686 -0.48251501 0.85744202 0.41158399 -0.30885601 0.85744202 0.41158399\n\t\t -0.30885601 0.91138399 0.354904 -0.20838299 0.96010703 -0.045747999 -0.27586401 0.91138399\n\t\t 0.354904 -0.20838299 0.85744202 0.41158399 -0.30885601 0.70880502 0.70166397 -0.072544001\n\t\t 0.70880502 0.70166397 -0.072544001 0.70648998 0.70117998 -0.096014 0.91138399 0.354904\n\t\t -0.20838299 0.70648998 0.70117998 -0.096014 0.70880502 0.70166397 -0.072544001 0.45782\n\t\t 0.86742002 0.194896 0.45782 0.86742002 0.194896 0.38875201 0.91987699 0.051943 0.70648998\n\t\t 0.70117998 -0.096014 0.38875201 0.91987699 0.051943 0.45782 0.86742002 0.194896 0.15213899\n\t\t 0.88317102 0.44369099 0.15213899 0.88317102 0.44369099 0.031769998 0.97695398 0.211072\n\t\t 0.38875201 0.91987699 0.051943 0.37526801 0.91665399 -0.13755199 0.38875201 0.91987699\n\t\t 0.051943 0.031769998 0.97695398 0.211072 0.031769998 0.97695398 0.211072 -0.0084229996\n\t\t 0.99158502 -0.129186 0.37526801 0.91665399 -0.13755199 0.432946 0.85447901 -0.28709501\n\t\t 0.37526801 0.91665399 -0.13755199 -0.0084229996 0.99158502 -0.129186 -0.0084229996\n\t\t 0.99158502 -0.129186 0.070712999 0.90276498 -0.424281 0.432946 0.85447901 -0.28709501\n\t\t 0.51421702 0.78336602 -0.34917 0.432946 0.85447901 -0.28709501 0.070712999 0.90276498\n\t\t -0.424281 0.070712999 0.90276498 -0.424281 0.195751 0.794909 -0.57428402 0.51421702\n\t\t 0.78336602 -0.34917 0.432946 0.85447901 -0.28709501 0.51421702 0.78336602 -0.34917\n\t\t 0.776434 0.62646401 -0.068515003 0.776434 0.62646401 -0.068515003 0.57315499 0.79203999\n\t\t -0.21015701 0.432946 0.85447901 -0.28709501 0.37526801 0.91665399 -0.13755199 0.432946\n\t\t 0.85447901 -0.28709501 0.57315499 0.79203999 -0.21015701 0.57315499 0.79203999 -0.21015701\n\t\t 0.72668803 0.67703402 -0.1164 0.37526801 0.91665399 -0.13755199 0.38875201 0.91987699\n\t\t 0.051943 0.37526801 0.91665399 -0.13755199 0.72668803 0.67703402 -0.1164 0.72668803\n\t\t 0.67703402 -0.1164 0.70648998 0.70117998 -0.096014 0.38875201 0.91987699 0.051943\n\t\t 0.94849199 0.30741599 -0.076540999 0.91138399 0.354904 -0.20838299 0.70648998 0.70117998\n\t\t -0.096014 0.70648998 0.70117998 -0.096014 0.72668803 0.67703402 -0.1164 0.94849199\n\t\t 0.30741599 -0.076540999 0.95028299 0.302966 0.071934 0.94849199 0.30741599 -0.076540999;\n\tsetAttr \".n[38180:38345]\" -type \"float3\"  0.72668803 0.67703402 -0.1164 0.72668803\n\t\t 0.67703402 -0.1164 0.86956102 0.49353099 -0.017091 0.95028299 0.302966 0.071934 0.91623801\n\t\t 0.345047 0.203592 0.95028299 0.302966 0.071934 0.86956102 0.49353099 -0.017091 0.86956102\n\t\t 0.49353099 -0.017091 0.776434 0.62646401 -0.068515003 0.91623801 0.345047 0.203592\n\t\t 0.95028299 0.302966 0.071934 0.91623801 0.345047 0.203592 0.90870601 0.0048529999\n\t\t 0.417409 0.90870601 0.0048529999 0.417409 0.97411799 -0.080968 0.211042 0.95028299\n\t\t 0.302966 0.071934 0.94849199 0.30741599 -0.076540999 0.95028299 0.302966 0.071934\n\t\t 0.97411799 -0.080968 0.211042 0.97411799 -0.080968 0.211042 0.994398 -0.10056 -0.032563999\n\t\t 0.94849199 0.30741599 -0.076540999 0.91138399 0.354904 -0.20838299 0.94849199 0.30741599\n\t\t -0.076540999 0.994398 -0.10056 -0.032563999 0.994398 -0.10056 -0.032563999 0.96010703\n\t\t -0.045747999 -0.27586401 0.91138399 0.354904 -0.20838299 0.96010703 -0.045747999\n\t\t -0.27586401 0.994398 -0.10056 -0.032563999 0.88625002 -0.46316099 0.0065009999 0.88625002\n\t\t -0.46316099 0.0065009999 0.85655499 -0.420068 -0.299761 0.96010703 -0.045747999 -0.27586401\n\t\t 0.85224497 -0.428426 0.30021599 0.88625002 -0.46316099 0.0065009999 0.994398 -0.10056\n\t\t -0.032563999 0.994398 -0.10056 -0.032563999 0.97411799 -0.080968 0.211042 0.85224497\n\t\t -0.428426 0.30021599 0.76746899 -0.32554901 0.55227703 0.85224497 -0.428426 0.30021599\n\t\t 0.97411799 -0.080968 0.211042 0.97411799 -0.080968 0.211042 0.90870601 0.0048529999\n\t\t 0.417409 0.76746899 -0.32554901 0.55227703 0.85224497 -0.428426 0.30021599 0.76746899\n\t\t -0.32554901 0.55227703 0.522461 -0.59888202 0.60693902 0.522461 -0.59888202 0.60693902\n\t\t 0.62484598 -0.70028901 0.3452 0.85224497 -0.428426 0.30021599 0.88625002 -0.46316099\n\t\t 0.0065009999 0.85224497 -0.428426 0.30021599 0.62484598 -0.70028901 0.3452 0.62484598\n\t\t -0.70028901 0.3452 0.66894001 -0.74227601 0.039308 0.88625002 -0.46316099 0.0065009999\n\t\t 0.85655499 -0.420068 -0.299761 0.88625002 -0.46316099 0.0065009999 0.66894001 -0.74227601\n\t\t 0.039308 0.66894001 -0.74227601 0.039308 0.63590002 -0.71677601 -0.286118 0.85655499\n\t\t -0.420068 -0.299761 0.63590002 -0.71677601 -0.286118 0.66894001 -0.74227601 0.039308\n\t\t 0.37242299 -0.925578 0.067873999 0.37242299 -0.925578 0.067873999 0.33378699 -0.91169602\n\t\t -0.239575 0.63590002 -0.71677601 -0.286118 0.31935799 -0.87966901 0.352411 0.37242299\n\t\t -0.925578 0.067873999 0.66894001 -0.74227601 0.039308 0.66894001 -0.74227601 0.039308\n\t\t 0.62484598 -0.70028901 0.3452 0.31935799 -0.87966901 0.352411 0.20393001 -0.78513998\n\t\t 0.58478099 0.31935799 -0.87966901 0.352411 0.62484598 -0.70028901 0.3452 0.62484598\n\t\t -0.70028901 0.3452 0.522461 -0.59888202 0.60693902 0.20393001 -0.78513998 0.58478099\n\t\t 0.31935799 -0.87966901 0.352411 0.20393001 -0.78513998 0.58478099 -0.154185 -0.86056298\n\t\t 0.48544601 -0.154185 -0.86056298 0.48544601 -0.04355 -0.94623399 0.32053801 0.31935799\n\t\t -0.87966901 0.352411 0.37242299 -0.925578 0.067873999 0.31935799 -0.87966901 0.352411\n\t\t -0.04355 -0.94623399 0.32053801 -0.04355 -0.94623399 0.32053801 0.014741 -0.99545199\n\t\t 0.094122 0.37242299 -0.925578 0.067873999 0.33378699 -0.91169602 -0.239575 0.37242299\n\t\t -0.925578 0.067873999 0.014741 -0.99545199 0.094122 0.014741 -0.99545199 0.094122\n\t\t -0.018921999 -0.98705697 -0.15925001 0.33378699 -0.91169602 -0.239575 -0.018921999\n\t\t -0.98705697 -0.15925001 0.014741 -0.99545199 0.094122 -0.37139201 -0.92101902 0.117439\n\t\t -0.37139201 -0.92101902 0.117439 -0.382624 -0.922943 -0.042146999 -0.018921999 -0.98705697\n\t\t -0.15925001 0.014741 -0.99545199 0.094122 -0.04355 -0.94623399 0.32053801 -0.42571399\n\t\t -0.87166202 0.242842 -0.42571399 -0.87166202 0.242842 -0.37139201 -0.92101902 0.117439\n\t\t 0.014741 -0.99545199 0.094122 -0.04355 -0.94623399 0.32053801 -0.154185 -0.86056298\n\t\t 0.48544601 -0.50369197 -0.80659801 0.30934501 -0.50369197 -0.80659801 0.30934501\n\t\t -0.42571399 -0.87166202 0.242842 -0.04355 -0.94623399 0.32053801 -0.26210201 -0.76625502\n\t\t 0.58664799 -0.154185 -0.86056298 0.48544601 0.20393001 -0.78513998 0.58478099 0.20393001\n\t\t -0.78513998 0.58478099 0.076237001 -0.66641402 0.74167401 -0.26210201 -0.76625502\n\t\t 0.58664799 0.076237001 -0.66641402 0.74167401 0.20393001 -0.78513998 0.58478099 0.522461\n\t\t -0.59888202 0.60693902 0.522461 -0.59888202 0.60693902 0.397304 -0.46700999 0.78996903\n\t\t 0.076237001 -0.66641402 0.74167401 0.397304 -0.46700999 0.78996903 0.522461 -0.59888202\n\t\t 0.60693902 0.76746899 -0.32554901 0.55227703 0.76746899 -0.32554901 0.55227703 0.65815002\n\t\t -0.19492701 0.72721499 0.397304 -0.46700999 0.78996903 0.65815002 -0.19492701 0.72721499\n\t\t 0.76746899 -0.32554901 0.55227703 0.90870601 0.0048529999 0.417409 0.90870601 0.0048529999\n\t\t 0.417409 0.82377499 0.112097 0.55572402 0.65815002 -0.19492701 0.72721499 0.82377499\n\t\t 0.112097 0.55572402 0.90870601 0.0048529999 0.417409 0.91623801 0.345047 0.203592\n\t\t 0.91623801 0.345047 0.203592 0.86720002 0.40480599 0.28999299 0.82377499 0.112097\n\t\t 0.55572402 0.86720002 0.40480599 0.28999299 0.91623801 0.345047 0.203592 0.776434\n\t\t 0.62646401 -0.068515003 0.776434 0.62646401 -0.068515003 0.77786797 0.62740999 -0.035737999\n\t\t 0.86720002 0.40480599 0.28999299 0.77786797 0.62740999 -0.035737999 0.776434 0.62646401\n\t\t -0.068515003 0.51421702 0.78336602 -0.34917 0.51421702 0.78336602 -0.34917 0.57122898\n\t\t 0.73493499 -0.36546901 0.77786797 0.62740999 -0.035737999 0.57122898 0.73493499 -0.36546901\n\t\t 0.51421702 0.78336602 -0.34917 0.195751 0.794909 -0.57428402 0.195751 0.794909 -0.57428402\n\t\t 0.29142499 0.71594298 -0.63442701 0.57122898 0.73493499 -0.36546901;\n\tsetAttr \".n[38346:38511]\" -type \"float3\"  0.61038101 0.69845998 -0.373615 0.57122898\n\t\t 0.73493499 -0.36546901 0.29142499 0.71594298 -0.63442701 0.29142499 0.71594298 -0.63442701\n\t\t 0.35973299 0.65357602 -0.66590601 0.61038101 0.69845998 -0.373615 0.64151901 0.66437799\n\t\t -0.383477 0.61038101 0.69845998 -0.373615 0.35973299 0.65357602 -0.66590601 0.35973299\n\t\t 0.65357602 -0.66590601 0.413322 0.59482002 -0.68945998 0.64151901 0.66437799 -0.383477\n\t\t 0.67294598 0.62631297 -0.39354399 0.64151901 0.66437799 -0.383477 0.413322 0.59482002\n\t\t -0.68945998 0.413322 0.59482002 -0.68945998 0.465049 0.531703 -0.70782799 0.67294598\n\t\t 0.62631297 -0.39354399 0.64151901 0.66437799 -0.383477 0.67294598 0.62631297 -0.39354399\n\t\t 0.78087002 0.62454998 -0.013398 0.78087002 0.62454998 -0.013398 0.77622497 0.63031298\n\t\t -0.013428 0.64151901 0.66437799 -0.383477 0.61038101 0.69845998 -0.373615 0.64151901\n\t\t 0.66437799 -0.383477 0.77622497 0.63031298 -0.013428 0.77622497 0.63031298 -0.013428\n\t\t 0.77598298 0.630467 -0.019014001 0.61038101 0.69845998 -0.373615 0.57122898 0.73493499\n\t\t -0.36546901 0.61038101 0.69845998 -0.373615 0.77598298 0.630467 -0.019014001 0.77598298\n\t\t 0.630467 -0.019014001 0.77786797 0.62740999 -0.035737999 0.57122898 0.73493499 -0.36546901\n\t\t 0.82471102 0.45534199 0.33543301 0.86720002 0.40480599 0.28999299 0.77786797 0.62740999\n\t\t -0.035737999 0.77786797 0.62740999 -0.035737999 0.77598298 0.630467 -0.019014001\n\t\t 0.82471102 0.45534199 0.33543301 0.79209101 0.494073 0.358446 0.82471102 0.45534199\n\t\t 0.33543301 0.77598298 0.630467 -0.019014001 0.77598298 0.630467 -0.019014001 0.77622497\n\t\t 0.63031298 -0.013428 0.79209101 0.494073 0.358446 0.76777202 0.52340502 0.36955699\n\t\t 0.79209101 0.494073 0.358446 0.77622497 0.63031298 -0.013428 0.77622497 0.63031298\n\t\t -0.013428 0.78087002 0.62454998 -0.013398 0.76777202 0.52340502 0.36955699 0.79209101\n\t\t 0.494073 0.358446 0.76777202 0.52340502 0.36955699 0.636172 0.339984 0.69260198 0.636172\n\t\t 0.339984 0.69260198 0.68667901 0.27876201 0.67138898 0.79209101 0.494073 0.358446\n\t\t 0.82471102 0.45534199 0.33543301 0.79209101 0.494073 0.358446 0.68667901 0.27876201\n\t\t 0.67138898 0.68667901 0.27876201 0.67138898 0.74824101 0.204541 0.631109 0.82471102\n\t\t 0.45534199 0.33543301 0.86720002 0.40480599 0.28999299 0.82471102 0.45534199 0.33543301\n\t\t 0.74824101 0.204541 0.631109 0.74824101 0.204541 0.631109 0.82377499 0.112097 0.55572402\n\t\t 0.86720002 0.40480599 0.28999299 0.82377499 0.112097 0.55572402 0.74824101 0.204541\n\t\t 0.631109 0.55965799 -0.077274002 0.825113 0.55965799 -0.077274002 0.825113 0.65815002\n\t\t -0.19492701 0.72721499 0.82377499 0.112097 0.55572402 0.47792399 0.021119 0.87814701\n\t\t 0.55965799 -0.077274002 0.825113 0.74824101 0.204541 0.631109 0.74824101 0.204541\n\t\t 0.631109 0.68667901 0.27876201 0.67138898 0.47792399 0.021119 0.87814701 0.40871599\n\t\t 0.105201 0.906578 0.47792399 0.021119 0.87814701 0.68667901 0.27876201 0.67138898\n\t\t 0.68667901 0.27876201 0.67138898 0.636172 0.339984 0.69260198 0.40871599 0.105201\n\t\t 0.906578 0.47792399 0.021119 0.87814701 0.40871599 0.105201 0.906578 0.120947 -0.143958\n\t\t 0.98216498 0.120947 -0.143958 0.98216498 0.198162 -0.237776 0.95089102 0.47792399\n\t\t 0.021119 0.87814701 0.55965799 -0.077274002 0.825113 0.47792399 0.021119 0.87814701\n\t\t 0.198162 -0.237776 0.95089102 0.198162 -0.237776 0.95089102 0.28779399 -0.34431499\n\t\t 0.89365703 0.55965799 -0.077274002 0.825113 0.65815002 -0.19492701 0.72721499 0.55965799\n\t\t -0.077274002 0.825113 0.28779399 -0.34431499 0.89365703 0.28779399 -0.34431499 0.89365703\n\t\t 0.397304 -0.46700999 0.78996903 0.65815002 -0.19492701 0.72721499 0.397304 -0.46700999\n\t\t 0.78996903 0.28779399 -0.34431499 0.89365703 -0.028779 -0.556813 0.83013898 -0.028779\n\t\t -0.556813 0.83013898 0.076237001 -0.66641402 0.74167401 0.397304 -0.46700999 0.78996903\n\t\t -0.112464 -0.45965499 0.88094801 -0.028779 -0.556813 0.83013898 0.28779399 -0.34431499\n\t\t 0.89365703 0.28779399 -0.34431499 0.89365703 0.198162 -0.237776 0.95089102 -0.112464\n\t\t -0.45965499 0.88094801 -0.185554 -0.37104699 0.90988702 -0.112464 -0.45965499 0.88094801\n\t\t 0.198162 -0.237776 0.95089102 0.198162 -0.237776 0.95089102 0.120947 -0.143958 0.98216498\n\t\t -0.185554 -0.37104699 0.90988702 -0.112464 -0.45965499 0.88094801 -0.185554 -0.37104699\n\t\t 0.90988702 -0.46645799 -0.542696 0.698497 -0.46645799 -0.542696 0.698497 -0.40892699\n\t\t -0.61188 0.67703903 -0.112464 -0.45965499 0.88094801 -0.028779 -0.556813 0.83013898\n\t\t -0.112464 -0.45965499 0.88094801 -0.40892699 -0.61188 0.67703903 -0.40892699 -0.61188\n\t\t 0.67703903 -0.344657 -0.684461 0.64243603 -0.028779 -0.556813 0.83013898 0.076237001\n\t\t -0.66641402 0.74167401 -0.028779 -0.556813 0.83013898 -0.344657 -0.684461 0.64243603\n\t\t -0.344657 -0.684461 0.64243603 -0.26210201 -0.76625502 0.58664799 0.076237001 -0.66641402\n\t\t 0.74167401 -0.26210201 -0.76625502 0.58664799 -0.344657 -0.684461 0.64243603 -0.61069202\n\t\t -0.70841497 0.35384101 -0.61069202 -0.70841497 0.35384101 -0.56685901 -0.75101 0.338608\n\t\t -0.26210201 -0.76625502 0.58664799 -0.344657 -0.684461 0.64243603 -0.40892699 -0.61188\n\t\t 0.67703903 -0.64468801 -0.67069101 0.36681101 -0.64468801 -0.67069101 0.36681101\n\t\t -0.61069202 -0.70841497 0.35384101 -0.344657 -0.684461 0.64243603 -0.40892699 -0.61188\n\t\t 0.67703903 -0.46645799 -0.542696 0.698497 -0.67743999 -0.63141698 0.377343 -0.67743999\n\t\t -0.63141698 0.377343 -0.64468801 -0.67069101 0.36681101 -0.40892699 -0.61188 0.67703903\n\t\t -0.52789497 -0.47137299 0.70649499 -0.46645799 -0.542696 0.698497 -0.185554 -0.37104699\n\t\t 0.90988702 -0.185554 -0.37104699 0.90988702;\n\tsetAttr \".n[38512:38677]\" -type \"float3\"  -0.26450899 -0.279616 0.922957 -0.52789497\n\t\t -0.47137299 0.70649499 -0.26450899 -0.279616 0.922957 -0.185554 -0.37104699 0.90988702\n\t\t 0.120947 -0.143958 0.98216498 0.120947 -0.143958 0.98216498 0.038026001 -0.045625001\n\t\t 0.99823499 -0.26450899 -0.279616 0.922957 0.038026001 -0.045625001 0.99823499 0.120947\n\t\t -0.143958 0.98216498 0.40871599 0.105201 0.906578 0.40871599 0.105201 0.906578 0.334979\n\t\t 0.19568899 0.92168099 0.038026001 -0.045625001 0.99823499 0.334979 0.19568899 0.92168099\n\t\t 0.40871599 0.105201 0.906578 0.636172 0.339984 0.69260198 0.636172 0.339984 0.69260198\n\t\t 0.58187598 0.40801001 0.70352501 0.334979 0.19568899 0.92168099 0.58187598 0.40801001\n\t\t 0.70352501 0.636172 0.339984 0.69260198 0.76777202 0.52340502 0.36955699 0.76777202\n\t\t 0.52340502 0.36955699 0.74022299 0.55768597 0.37557501 0.58187598 0.40801001 0.70352501\n\t\t 0.74022299 0.55768597 0.37557501 0.76777202 0.52340502 0.36955699 0.78087002 0.62454998\n\t\t -0.013398 0.78087002 0.62454998 -0.013398 0.78440398 0.62015003 -0.01114 0.74022299\n\t\t 0.55768597 0.37557501 0.78440398 0.62015003 -0.01114 0.78087002 0.62454998 -0.013398\n\t\t 0.67294598 0.62631297 -0.39354399 0.67294598 0.62631297 -0.39354399 0.70794398 0.58568603\n\t\t -0.39469901 0.78440398 0.62015003 -0.01114 0.70794398 0.58568603 -0.39469901 0.67294598\n\t\t 0.62631297 -0.39354399 0.465049 0.531703 -0.70782799 0.465049 0.531703 -0.70782799\n\t\t 0.52639502 0.46230501 -0.71357 0.70794398 0.58568603 -0.39469901 0.74342197 0.546359\n\t\t -0.385766 0.70794398 0.58568603 -0.39469901 0.52639502 0.46230501 -0.71357 0.52639502\n\t\t 0.46230501 -0.71357 0.59889001 0.38525099 -0.70207697 0.74342197 0.546359 -0.385766\n\t\t 0.77885598 0.50866699 -0.36693501 0.74342197 0.546359 -0.385766 0.59889001 0.38525099\n\t\t -0.70207697 0.59889001 0.38525099 -0.70207697 0.68211001 0.300129 -0.66681999 0.77885598\n\t\t 0.50866699 -0.36693501 0.812406 0.473667 -0.34005201 0.77885598 0.50866699 -0.36693501\n\t\t 0.68211001 0.300129 -0.66681999 0.68211001 0.300129 -0.66681999 0.76953697 0.21000101\n\t\t -0.60308599 0.812406 0.473667 -0.34005201 0.77885598 0.50866699 -0.36693501 0.812406\n\t\t 0.473667 -0.34005201 0.74113101 0.67081499 -0.027070999 0.74113101 0.67081499 -0.027070999\n\t\t 0.76489902 0.64404398 -0.011719 0.77885598 0.50866699 -0.36693501 0.74342197 0.546359\n\t\t -0.385766 0.77885598 0.50866699 -0.36693501 0.76489902 0.64404398 -0.011719 0.76489902\n\t\t 0.64404398 -0.011719 0.77937299 0.62650198 -0.0086070001 0.74342197 0.546359 -0.385766\n\t\t 0.70794398 0.58568603 -0.39469901 0.74342197 0.546359 -0.385766 0.77937299 0.62650198\n\t\t -0.0086070001 0.77937299 0.62650198 -0.0086070001 0.78440398 0.62015003 -0.01114\n\t\t 0.70794398 0.58568603 -0.39469901 0.69781101 0.61153501 0.37293899 0.74022299 0.55768597\n\t\t 0.37557501 0.78440398 0.62015003 -0.01114 0.78440398 0.62015003 -0.01114 0.77937299\n\t\t 0.62650198 -0.0086070001 0.69781101 0.61153501 0.37293899 0.63811803 0.68557501 0.35041699\n\t\t 0.69781101 0.61153501 0.37293899 0.77937299 0.62650198 -0.0086070001 0.77937299 0.62650198\n\t\t -0.0086070001 0.76489902 0.64404398 -0.011719 0.63811803 0.68557501 0.35041699 0.56131101\n\t\t 0.77296299 0.29573199 0.63811803 0.68557501 0.35041699 0.76489902 0.64404398 -0.011719\n\t\t 0.76489902 0.64404398 -0.011719 0.74113101 0.67081499 -0.027070999 0.56131101 0.77296299\n\t\t 0.29573199 0.63811803 0.68557501 0.35041699 0.56131101 0.77296299 0.29573199 0.29042199\n\t\t 0.759018 0.58270699 0.29042199 0.759018 0.58270699 0.41048101 0.62228298 0.66653502\n\t\t 0.63811803 0.68557501 0.35041699 0.69781101 0.61153501 0.37293899 0.63811803 0.68557501\n\t\t 0.35041699 0.41048101 0.62228298 0.66653502 0.41048101 0.62228298 0.66653502 0.50804901\n\t\t 0.50160998 0.70019603 0.69781101 0.61153501 0.37293899 0.74022299 0.55768597 0.37557501\n\t\t 0.69781101 0.61153501 0.37293899 0.50804901 0.50160998 0.70019603 0.50804901 0.50160998\n\t\t 0.70019603 0.58187598 0.40801001 0.70352501 0.74022299 0.55768597 0.37557501 0.58187598\n\t\t 0.40801001 0.70352501 0.50804901 0.50160998 0.70019603 0.23823 0.31257501 0.91953403\n\t\t 0.23823 0.31257501 0.91953403 0.334979 0.19568899 0.92168099 0.58187598 0.40801001\n\t\t 0.70352501 0.11402 0.458765 0.881212 0.23823 0.31257501 0.91953403 0.50804901 0.50160998\n\t\t 0.70019603 0.50804901 0.50160998 0.70019603 0.41048101 0.62228298 0.66653502 0.11402\n\t\t 0.458765 0.881212 -0.032747 0.62273997 0.78174299 0.11402 0.458765 0.881212 0.41048101\n\t\t 0.62228298 0.66653502 0.41048101 0.62228298 0.66653502 0.29042199 0.759018 0.58270699\n\t\t -0.032747 0.62273997 0.78174299 0.11402 0.458765 0.881212 -0.032747 0.62273997 0.78174299\n\t\t -0.35182899 0.38463801 0.853387 -0.35182899 0.38463801 0.853387 -0.20124499 0.221021\n\t\t 0.95428002 0.11402 0.458765 0.881212 0.23823 0.31257501 0.91953403 0.11402 0.458765\n\t\t 0.881212 -0.20124499 0.221021 0.95428002 -0.20124499 0.221021 0.95428002 -0.068392001\n\t\t 0.074862003 0.99484599 0.23823 0.31257501 0.91953403 0.334979 0.19568899 0.92168099\n\t\t 0.23823 0.31257501 0.91953403 -0.068392001 0.074862003 0.99484599 -0.068392001 0.074862003\n\t\t 0.99484599 0.038026001 -0.045625001 0.99823499 0.334979 0.19568899 0.92168099 0.038026001\n\t\t -0.045625001 0.99823499 -0.068392001 0.074862003 0.99484599 -0.362692 -0.173198 0.91567302\n\t\t -0.362692 -0.173198 0.91567302 -0.26450899 -0.279616 0.922957 0.038026001 -0.045625001\n\t\t 0.99823499 -0.48085701 -0.048861001 0.87543702 -0.362692 -0.173198 0.91567302 -0.068392001\n\t\t 0.074862003 0.99484599 -0.068392001 0.074862003 0.99484599 -0.20124499 0.221021 0.95428002\n\t\t -0.48085701 -0.048861001 0.87543702 -0.610053 0.089056 0.78733999 -0.48085701 -0.048861001\n\t\t 0.87543702;\n\tsetAttr \".n[38678:38843]\" -type \"float3\"  -0.20124499 0.221021 0.95428002 -0.20124499\n\t\t 0.221021 0.95428002 -0.35182899 0.38463801 0.853387 -0.610053 0.089056 0.78733999\n\t\t -0.48085701 -0.048861001 0.87543702 -0.610053 0.089056 0.78733999 -0.76872402 -0.21241499\n\t\t 0.60327798 -0.76872402 -0.21241499 0.60327798 -0.681678 -0.30613899 0.66452599 -0.48085701\n\t\t -0.048861001 0.87543702 -0.362692 -0.173198 0.91567302 -0.48085701 -0.048861001 0.87543702\n\t\t -0.681678 -0.30613899 0.66452599 -0.681678 -0.30613899 0.66452599 -0.59968001 -0.39309299\n\t\t 0.69703799 -0.362692 -0.173198 0.91567302 -0.26450899 -0.279616 0.922957 -0.362692\n\t\t -0.173198 0.91567302 -0.59968001 -0.39309299 0.69703799 -0.59968001 -0.39309299 0.69703799\n\t\t -0.52789497 -0.47137299 0.70649499 -0.26450899 -0.279616 0.922957 -0.52789497 -0.47137299\n\t\t 0.70649499 -0.59968001 -0.39309299 0.69703799 -0.74483299 -0.55252898 0.37408 -0.74483299\n\t\t -0.55252898 0.37408 -0.71105999 -0.59127402 0.38051 -0.52789497 -0.47137299 0.70649499\n\t\t -0.59968001 -0.39309299 0.69703799 -0.681678 -0.30613899 0.66452599 -0.77876198 -0.51452601\n\t\t 0.358877 -0.77876198 -0.51452601 0.358877 -0.74483299 -0.55252898 0.37408 -0.59968001\n\t\t -0.39309299 0.69703799 -0.681678 -0.30613899 0.66452599 -0.76872402 -0.21241499 0.60327798\n\t\t -0.81211901 -0.47741401 0.33546799 -0.81211901 -0.47741401 0.33546799 -0.77876198\n\t\t -0.51452601 0.358877 -0.681678 -0.30613899 0.66452599 -0.84189999 -0.13352101 0.52285397\n\t\t -0.76872402 -0.21241499 0.60327798 -0.610053 0.089056 0.78733999 -0.610053 0.089056\n\t\t 0.78733999 -0.71608198 0.205244 0.66715902 -0.84189999 -0.13352101 0.52285397 -0.71608198\n\t\t 0.205244 0.66715902 -0.610053 0.089056 0.78733999 -0.35182899 0.38463801 0.853387\n\t\t -0.35182899 0.38463801 0.853387 -0.47631001 0.51839602 0.710208 -0.71608198 0.205244\n\t\t 0.66715902 -0.47631001 0.51839602 0.710208 -0.35182899 0.38463801 0.853387 -0.032747\n\t\t 0.62273997 0.78174299 -0.032747 0.62273997 0.78174299 -0.157691 0.75250298 0.639431\n\t\t -0.47631001 0.51839602 0.710208 -0.157691 0.75250298 0.639431 -0.032747 0.62273997\n\t\t 0.78174299 0.29042199 0.759018 0.58270699 0.29042199 0.759018 0.58270699 0.18543699\n\t\t 0.865444 0.465424 -0.157691 0.75250298 0.639431 0.18543699 0.865444 0.465424 0.29042199\n\t\t 0.759018 0.58270699 0.56131101 0.77296299 0.29573199 0.56131101 0.77296299 0.29573199\n\t\t 0.49431801 0.84080201 0.22068401 0.18543699 0.865444 0.465424 0.49431801 0.84080201\n\t\t 0.22068401 0.56131101 0.77296299 0.29573199 0.74113101 0.67081499 -0.027070999 0.74113101\n\t\t 0.67081499 -0.027070999 0.72254598 0.68937099 -0.051913001 0.49431801 0.84080201\n\t\t 0.22068401 0.72254598 0.68937099 -0.051913001 0.74113101 0.67081499 -0.027070999\n\t\t 0.812406 0.473667 -0.34005201 0.812406 0.473667 -0.34005201 0.84249002 0.43884 -0.31245801\n\t\t 0.72254598 0.68937099 -0.051913001 0.84249002 0.43884 -0.31245801 0.812406 0.473667\n\t\t -0.34005201 0.76953697 0.21000101 -0.60308599 0.76953697 0.21000101 -0.60308599 0.84089601\n\t\t 0.12659401 -0.526182 0.84249002 0.43884 -0.31245801 0.86813802 0.410936 -0.278332\n\t\t 0.84249002 0.43884 -0.31245801 0.84089601 0.12659401 -0.526182 0.84089601 0.12659401\n\t\t -0.526182 0.89189202 0.067814 -0.44713601 0.86813802 0.410936 -0.278332 0.89537102\n\t\t 0.38734901 -0.219707 0.86813802 0.410936 -0.278332 0.89189202 0.067814 -0.44713601\n\t\t 0.89189202 0.067814 -0.44713601 0.93983698 0.021272 -0.34096 0.89537102 0.38734901\n\t\t -0.219707 0.921013 0.37248901 -0.113959 0.89537102 0.38734901 -0.219707 0.93983698\n\t\t 0.021272 -0.34096 0.93983698 0.021272 -0.34096 0.98445803 -0.0082700001 -0.17542399\n\t\t 0.921013 0.37248901 -0.113959 0.89537102 0.38734901 -0.219707 0.921013 0.37248901\n\t\t -0.113959 0.71705401 0.69614899 -0.034791999 0.71705401 0.69614899 -0.034791999 0.71481401\n\t\t 0.69641101 -0.063662 0.89537102 0.38734901 -0.219707 0.86813802 0.410936 -0.278332\n\t\t 0.89537102 0.38734901 -0.219707 0.71481401 0.69641101 -0.063662 0.71481401 0.69641101\n\t\t -0.063662 0.71546298 0.69544297 -0.066868 0.86813802 0.410936 -0.278332 0.84249002\n\t\t 0.43884 -0.31245801 0.86813802 0.410936 -0.278332 0.71546298 0.69544297 -0.066868\n\t\t 0.71546298 0.69544297 -0.066868 0.72254598 0.68937099 -0.051913001 0.84249002 0.43884\n\t\t -0.31245801 0.454007 0.87703699 0.157114 0.49431801 0.84080201 0.22068401 0.72254598\n\t\t 0.68937099 -0.051913001 0.72254598 0.68937099 -0.051913001 0.71546298 0.69544297\n\t\t -0.066868 0.454007 0.87703699 0.157114 0.42607901 0.89876097 0.103369 0.454007 0.87703699\n\t\t 0.157114 0.71546298 0.69544297 -0.066868 0.71546298 0.69544297 -0.066868 0.71481401\n\t\t 0.69641101 -0.063662 0.42607901 0.89876097 0.103369 0.71481401 0.69641101 -0.063662\n\t\t 0.71705401 0.69614899 -0.034791999 0.40779799 0.91170102 0.050021 0.40779799 0.91170102\n\t\t 0.050021 0.42607901 0.89876097 0.103369 0.71481401 0.69641101 -0.063662 0.42607901\n\t\t 0.89876097 0.103369 0.40779799 0.91170102 0.050021 0.036713999 0.99102002 0.12857699\n\t\t 0.036713999 0.99102002 0.12857699 0.072177999 0.96402001 0.25584501 0.42607901 0.89876097\n\t\t 0.103369 0.454007 0.87703699 0.157114 0.42607901 0.89876097 0.103369 0.072177999\n\t\t 0.96402001 0.25584501 0.072177999 0.96402001 0.25584501 0.120215 0.92527997 0.35972899\n\t\t 0.454007 0.87703699 0.157114 0.49431801 0.84080201 0.22068401 0.454007 0.87703699\n\t\t 0.157114 0.120215 0.92527997 0.35972899 0.120215 0.92527997 0.35972899 0.18543699\n\t\t 0.865444 0.465424 0.49431801 0.84080201 0.22068401 0.18543699 0.865444 0.465424 0.120215\n\t\t 0.92527997 0.35972899 -0.23490401 0.82901502 0.50749803 -0.23490401 0.82901502 0.50749803\n\t\t -0.157691 0.75250298 0.639431 0.18543699 0.865444 0.465424;\n\tsetAttr \".n[38844:39009]\" -type \"float3\"  -0.29292199 0.881908 0.36937201 -0.23490401\n\t\t 0.82901502 0.50749803 0.120215 0.92527997 0.35972899 0.120215 0.92527997 0.35972899\n\t\t 0.072177999 0.96402001 0.25584501 -0.29292199 0.881908 0.36937201 0.072177999 0.96402001\n\t\t 0.25584501 0.036713999 0.99102002 0.12857699 -0.33985901 0.921489 0.18802699 -0.33985901\n\t\t 0.921489 0.18802699 -0.29292199 0.881908 0.36937201 0.072177999 0.96402001 0.25584501\n\t\t -0.29292199 0.881908 0.36937201 -0.33985901 0.921489 0.18802699 -0.66748899 0.71174097\n\t\t 0.218824 -0.66748899 0.71174097 0.218824 -0.61399299 0.66462398 0.425778 -0.29292199\n\t\t 0.881908 0.36937201 -0.23490401 0.82901502 0.50749803 -0.29292199 0.881908 0.36937201\n\t\t -0.61399299 0.66462398 0.425778 -0.61399299 0.66462398 0.425778 -0.55358797 0.60226601\n\t\t 0.57516497 -0.23490401 0.82901502 0.50749803 -0.157691 0.75250298 0.639431 -0.23490401\n\t\t 0.82901502 0.50749803 -0.55358797 0.60226601 0.57516497 -0.55358797 0.60226601 0.57516497\n\t\t -0.47631001 0.51839602 0.710208 -0.157691 0.75250298 0.639431 -0.47631001 0.51839602\n\t\t 0.710208 -0.55358797 0.60226601 0.57516497 -0.784316 0.28285301 0.55212498 -0.784316\n\t\t 0.28285301 0.55212498 -0.71608198 0.205244 0.66715902 -0.47631001 0.51839602 0.710208\n\t\t -0.84117401 0.34560099 0.41591701 -0.784316 0.28285301 0.55212498 -0.55358797 0.60226601\n\t\t 0.57516497 -0.55358797 0.60226601 0.57516497 -0.61399299 0.66462398 0.425778 -0.84117401\n\t\t 0.34560099 0.41591701 -0.61399299 0.66462398 0.425778 -0.66748899 0.71174097 0.218824\n\t\t -0.89390498 0.39302501 0.21555699 -0.89390498 0.39302501 0.21555699 -0.84117401 0.34560099\n\t\t 0.41591701 -0.61399299 0.66462398 0.425778 -0.84117401 0.34560099 0.41591701 -0.89390498\n\t\t 0.39302501 0.21555699 -0.98373401 0.014313 0.179058 -0.98373401 0.014313 0.179058\n\t\t -0.93938297 -0.026063999 0.34187701 -0.84117401 0.34560099 0.41591701 -0.784316 0.28285301\n\t\t 0.55212498 -0.84117401 0.34560099 0.41591701 -0.93938297 -0.026063999 0.34187701\n\t\t -0.93938297 -0.026063999 0.34187701 -0.89254898 -0.077395998 0.44426 -0.784316 0.28285301\n\t\t 0.55212498 -0.71608198 0.205244 0.66715902 -0.784316 0.28285301 0.55212498 -0.89254898\n\t\t -0.077395998 0.44426 -0.89254898 -0.077395998 0.44426 -0.84189999 -0.13352101 0.52285397\n\t\t -0.71608198 0.205244 0.66715902 -0.84189999 -0.13352101 0.52285397 -0.89254898 -0.077395998\n\t\t 0.44426 -0.86473697 -0.42333499 0.270219 -0.86473697 -0.42333499 0.270219 -0.84093601\n\t\t -0.44787499 0.3037 -0.84189999 -0.13352101 0.52285397 -0.89254898 -0.077395998 0.44426\n\t\t -0.93938297 -0.026063999 0.34187701 -0.89359301 -0.39344999 0.216074 -0.89359301\n\t\t -0.39344999 0.216074 -0.86473697 -0.42333499 0.270219 -0.89254898 -0.077395998 0.44426\n\t\t -0.91261899 0.40608999 0.047091 -0.89390498 0.39302501 0.21555699 -0.66748899 0.71174097\n\t\t 0.218824 -0.98373401 0.014313 0.179058 -0.89390498 0.39302501 0.21555699 -0.91261899\n\t\t 0.40608999 0.047091 -0.66748899 0.71174097 0.218824 -0.68720102 0.72489202 0.047823999\n\t\t -0.91261899 0.40608999 0.047091 -0.35701501 0.93318802 0.041230999 -0.68720102 0.72489202\n\t\t 0.047823999 -0.66748899 0.71174097 0.218824 -0.68811899 0.72559601 -0.001862 -0.68720102\n\t\t 0.72489202 0.047823999 -0.35701501 0.93318802 0.041230999 -0.35701501 0.93318802\n\t\t 0.041230999 -0.357961 0.93373603 -0.00094599999 -0.68811899 0.72559601 -0.001862\n\t\t -0.357961 0.93373603 -0.00094599999 -0.35701501 0.93318802 0.041230999 0.026277 0.999255\n\t\t 0.028261 0.036713999 0.99102002 0.12857699 0.026277 0.999255 0.028261 -0.35701501\n\t\t 0.93318802 0.041230999 0.405635 0.91396999 0.010926 0.026277 0.999255 0.028261 0.036713999\n\t\t 0.99102002 0.12857699 0.026551001 0.99964702 0.000122 0.026277 0.999255 0.028261\n\t\t 0.405635 0.91396999 0.010926 0.026277 0.999255 0.028261 0.026551001 0.99964702 0.000122\n\t\t -0.357961 0.93373603 -0.00094599999 0.405635 0.91396999 0.010926 0.40682301 0.91350698\n\t\t 0.00076299999 0.026551001 0.99964702 0.000122 0.40682301 0.91350698 0.00076299999\n\t\t 0.405635 0.91396999 0.010926 0.72278899 0.691019 -0.0083320001 0.71705401 0.69614899\n\t\t -0.034791999 0.72278899 0.691019 -0.0083320001 0.405635 0.91396999 0.010926 0.93185401\n\t\t 0.361871 -0.02643 0.72278899 0.691019 -0.0083320001 0.71705401 0.69614899 -0.034791999\n\t\t 0.72516602 0.68857402 0.000336 0.72278899 0.691019 -0.0083320001 0.93185401 0.361871\n\t\t -0.02643 0.72278899 0.691019 -0.0083320001 0.72516602 0.68857402 0.000336 0.40682301\n\t\t 0.91350698 0.00076299999 0.93185401 0.361871 -0.02643 0.93338698 0.35887101 -0.001007\n\t\t 0.72516602 0.68857402 0.000336 0.93338698 0.35887101 -0.001007 0.93185401 0.361871\n\t\t -0.02643 0.998945 -0.022156 -0.040224001 0.98445803 -0.0082700001 -0.17542399 0.998945\n\t\t -0.022156 -0.040224001 0.93185401 0.361871 -0.02643 0.93185401 0.361871 -0.02643\n\t\t 0.921013 0.37248901 -0.113959 0.98445803 -0.0082700001 -0.17542399 0.71705401 0.69614899\n\t\t -0.034791999 0.921013 0.37248901 -0.113959 0.93185401 0.361871 -0.02643 0.998945\n\t\t -0.022156 -0.040224001 0.99966902 -0.025544001 -0.00293 0.93338698 0.35887101 -0.001007\n\t\t 0.405635 0.91396999 0.010926 0.40779799 0.91170102 0.050021 0.71705401 0.69614899\n\t\t -0.034791999 0.036713999 0.99102002 0.12857699 0.40779799 0.91170102 0.050021 0.405635\n\t\t 0.91396999 0.010926 0.99966902 -0.025544001 -0.00293 0.998945 -0.022156 -0.040224001\n\t\t 0.91308701 -0.40489 -0.048340999 0.91308701 -0.40489 -0.048340999 0.91359299 -0.406607\n\t\t -0.0043640002 0.99966902 -0.025544001 -0.00293 0.91359299 -0.406607 -0.0043640002\n\t\t 0.91308701 -0.40489 -0.048340999 0.68656301 -0.72544402 -0.048617002 0.66680402 -0.71456498\n\t\t -0.211586 0.68656301 -0.72544402 -0.048617002 0.91308701 -0.40489 -0.048340999 0.35493499\n\t\t -0.93396997 -0.041475002;\n\tsetAttr \".n[39010:39175]\" -type \"float3\"  0.68656301 -0.72544402 -0.048617002 0.66680402\n\t\t -0.71456498 -0.211586 0.68817598 -0.72553098 -0.0044249999 0.68656301 -0.72544402\n\t\t -0.048617002 0.35493499 -0.93396997 -0.041475002 0.68656301 -0.72544402 -0.048617002\n\t\t 0.68817598 -0.72553098 -0.0044249999 0.91359299 -0.406607 -0.0043640002 0.35493499\n\t\t -0.93396997 -0.041475002 0.35783201 -0.93378001 -0.003449 0.68817598 -0.72553098\n\t\t -0.0044249999 0.35783201 -0.93378001 -0.003449 0.35493499 -0.93396997 -0.041475002\n\t\t -0.030794 -0.999143 -0.027650001 -0.046510998 -0.99126798 -0.12339 -0.030794 -0.999143\n\t\t -0.027650001 0.35493499 -0.93396997 -0.041475002 -0.40932 -0.91233301 -0.010315 -0.030794\n\t\t -0.999143 -0.027650001 -0.046510998 -0.99126798 -0.12339 -0.026765 -0.99963999 -0.001831\n\t\t -0.030794 -0.999143 -0.027650001 -0.40932 -0.91233301 -0.010315 -0.030794 -0.999143\n\t\t -0.027650001 -0.026765 -0.99963999 -0.001831 0.35783201 -0.93378001 -0.003449 -0.40932\n\t\t -0.91233301 -0.010315 -0.40703601 -0.91341197 -0.00064099999 -0.026765 -0.99963999\n\t\t -0.001831 -0.40703601 -0.91341197 -0.00064099999 -0.40932 -0.91233301 -0.010315 -0.72659701\n\t\t -0.687015 0.0082099997 -0.72470403 -0.68811202 0.036134999 -0.72659701 -0.687015\n\t\t 0.0082099997 -0.40932 -0.91233301 -0.010315 -0.93318498 -0.35847899 0.025667001 -0.72659701\n\t\t -0.687015 0.0082099997 -0.72470403 -0.68811202 0.036134999 -0.72543299 -0.68829203\n\t\t -0.000397 -0.72659701 -0.687015 0.0082099997 -0.93318498 -0.35847899 0.025667001\n\t\t -0.72659701 -0.687015 0.0082099997 -0.72543299 -0.68829203 -0.000397 -0.40703601\n\t\t -0.91341197 -0.00064099999 -0.93318498 -0.35847899 0.025667001 -0.93353897 -0.35847399\n\t\t -0.00085399998 -0.72543299 -0.68829203 -0.000397 -0.72470403 -0.68811202 0.036134999\n\t\t -0.92356199 -0.36564699 0.115483 -0.93318498 -0.35847899 0.025667001 -0.89359301\n\t\t -0.39344999 0.216074 -0.92356199 -0.36564699 0.115483 -0.72470403 -0.68811202 0.036134999\n\t\t -0.72470403 -0.68811202 0.036134999 -0.71156698 -0.70015299 0.058812 -0.89359301\n\t\t -0.39344999 0.216074 -0.86473697 -0.42333499 0.270219 -0.89359301 -0.39344999 0.216074\n\t\t -0.71156698 -0.70015299 0.058812 -0.71156698 -0.70015299 0.058812 -0.70714802 -0.70479798\n\t\t 0.056582 -0.86473697 -0.42333499 0.270219 -0.84093601 -0.44787499 0.3037 -0.86473697\n\t\t -0.42333499 0.270219 -0.70714802 -0.70479798 0.056582 -0.70714802 -0.70479798 0.056582\n\t\t -0.71697497 -0.69585699 0.041597001 -0.84093601 -0.44787499 0.3037 -0.81211901 -0.47741401\n\t\t 0.33546799 -0.84093601 -0.44787499 0.3037 -0.71697497 -0.69585699 0.041597001 -0.71697497\n\t\t -0.69585699 0.041597001 -0.73889601 -0.673464 0.021881999 -0.81211901 -0.47741401\n\t\t 0.33546799 -0.77876198 -0.51452601 0.358877 -0.81211901 -0.47741401 0.33546799 -0.73889601\n\t\t -0.673464 0.021881999 -0.73889601 -0.673464 0.021881999 -0.76167202 -0.64795703 0.002808\n\t\t -0.77876198 -0.51452601 0.358877 -0.74483299 -0.55252898 0.37408 -0.77876198 -0.51452601\n\t\t 0.358877 -0.76167202 -0.64795703 0.002808 -0.76167202 -0.64795703 0.002808 -0.777197\n\t\t -0.62924099 -0.0046390002 -0.74483299 -0.55252898 0.37408 -0.71105999 -0.59127402\n\t\t 0.38051 -0.74483299 -0.55252898 0.37408 -0.777197 -0.62924099 -0.0046390002 -0.777197\n\t\t -0.62924099 -0.0046390002 -0.78418201 -0.62050998 -0.0050360002 -0.71105999 -0.59127402\n\t\t 0.38051 -0.67743999 -0.63141698 0.377343 -0.71105999 -0.59127402 0.38051 -0.78418201\n\t\t -0.62050998 -0.0050360002 -0.78418201 -0.62050998 -0.0050360002 -0.782727 -0.62234902\n\t\t -0.0045469999 -0.67743999 -0.63141698 0.377343 -0.64468801 -0.67069101 0.36681101\n\t\t -0.67743999 -0.63141698 0.377343 -0.782727 -0.62234902 -0.0045469999 -0.782727 -0.62234902\n\t\t -0.0045469999 -0.779504 -0.626387 -0.0034179999 -0.64468801 -0.67069101 0.36681101\n\t\t -0.61069202 -0.70841497 0.35384101 -0.64468801 -0.67069101 0.36681101 -0.779504 -0.626387\n\t\t -0.0034179999 -0.779504 -0.626387 -0.0034179999 -0.78049201 -0.62515098 0.0042119999\n\t\t -0.61069202 -0.70841497 0.35384101 -0.56685901 -0.75101 0.338608 -0.61069202 -0.70841497\n\t\t 0.35384101 -0.78049201 -0.62515098 0.0042119999 -0.78049201 -0.62515098 0.0042119999\n\t\t -0.78272098 -0.62185502 0.025392 -0.56685901 -0.75101 0.338608 -0.50369197 -0.80659801\n\t\t 0.30934501 -0.56685901 -0.75101 0.338608 -0.78272098 -0.62185502 0.025392 -0.78272098\n\t\t -0.62185502 0.025392 -0.77872998 -0.62384498 0.066317998 -0.50369197 -0.80659801\n\t\t 0.30934501 -0.42571399 -0.87166202 0.242842 -0.50369197 -0.80659801 0.30934501 -0.77872998\n\t\t -0.62384498 0.066317998 -0.77872998 -0.62384498 0.066317998 -0.61081702 -0.76939601\n\t\t 0.186901 -0.42571399 -0.87166202 0.242842 -0.37139201 -0.92101902 0.117439 -0.42571399\n\t\t -0.87166202 0.242842 -0.61081702 -0.76939601 0.186901 -0.61081702 -0.76939601 0.186901\n\t\t -0.564421 -0.81522799 0.129737 -0.37139201 -0.92101902 0.117439 -0.382624 -0.922943\n\t\t -0.042146999 -0.37139201 -0.92101902 0.117439 -0.564421 -0.81522799 0.129737 -0.564421\n\t\t -0.81522799 0.129737 -0.695683 -0.71036297 0.106817 -0.382624 -0.922943 -0.042146999\n\t\t -0.45068499 -0.87521499 -0.175733 -0.382624 -0.922943 -0.042146999 -0.695683 -0.71036297\n\t\t 0.106817 -0.695683 -0.71036297 0.106817 -0.70263797 -0.70755202 0.075290002 -0.45068499\n\t\t -0.87521499 -0.175733 -0.70263797 -0.70755202 0.075290002 -0.695683 -0.71036297 0.106817\n\t\t -0.88762999 -0.376764 0.26487899 -0.88762999 -0.376764 0.26487899 -0.834849 -0.43215001\n\t\t 0.34099001 -0.70263797 -0.70755202 0.075290002 -0.940211 -0.31682199 0.125007 -0.88762999\n\t\t -0.376764 0.26487899 -0.695683 -0.71036297 0.106817 -0.695683 -0.71036297 0.106817\n\t\t -0.87202799 -0.47310999 0.125434 -0.940211 -0.31682199 0.125007 -0.95149499 -0.30198699\n\t\t -0.058841001 -0.940211 -0.31682199 0.125007 -0.87202799 -0.47310999 0.125434 -0.87202799\n\t\t -0.47310999 0.125434 -0.89173597 -0.45226201 0.016297 -0.95149499 -0.30198699 -0.058841001\n\t\t -0.91473103 -0.34310099 -0.213423 -0.95149499 -0.30198699 -0.058841001;\n\tsetAttr \".n[39176:39341]\" -type \"float3\"  -0.89173597 -0.45226201 0.016297 -0.89173597\n\t\t -0.45226201 0.016297 -0.77872998 -0.62384498 0.066317998 -0.91473103 -0.34310099\n\t\t -0.213423 -0.95149499 -0.30198699 -0.058841001 -0.91473103 -0.34310099 -0.213423\n\t\t -0.880849 -0.026521999 -0.472653 -0.880849 -0.026521999 -0.472653 -0.96791899 0.069889002\n\t\t -0.241347 -0.95149499 -0.30198699 -0.058841001 -0.940211 -0.31682199 0.125007 -0.95149499\n\t\t -0.30198699 -0.058841001 -0.96791899 0.069889002 -0.241347 -0.96791899 0.069889002\n\t\t -0.241347 -0.99202299 0.084507003 0.093540996 -0.940211 -0.31682199 0.125007 -0.88762999\n\t\t -0.376764 0.26487899 -0.940211 -0.31682199 0.125007 -0.99202299 0.084507003 0.093540996\n\t\t -0.99202299 0.084507003 0.093540996 -0.92015201 0.00054899999 0.391561 -0.88762999\n\t\t -0.376764 0.26487899 -0.834849 -0.43215001 0.34099001 -0.88762999 -0.376764 0.26487899\n\t\t -0.92015201 0.00054899999 0.391561 -0.92015201 0.00054899999 0.391561 -0.82084 -0.100805\n\t\t 0.56219202 -0.834849 -0.43215001 0.34099001 -0.82084 -0.100805 0.56219202 -0.92015201\n\t\t 0.00054899999 0.391561 -0.81232899 0.364582 0.455194 -0.81232899 0.364582 0.455194\n\t\t -0.67844099 0.23743901 0.69522703 -0.82084 -0.100805 0.56219202 -0.88996398 0.45448801\n\t\t 0.037477002 -0.81232899 0.364582 0.455194 -0.92015201 0.00054899999 0.391561 -0.92015201\n\t\t 0.00054899999 0.391561 -0.99202299 0.084507003 0.093540996 -0.88996398 0.45448801\n\t\t 0.037477002 -0.82454801 0.404506 -0.39559501 -0.88996398 0.45448801 0.037477002 -0.99202299\n\t\t 0.084507003 0.093540996 -0.99202299 0.084507003 0.093540996 -0.96791899 0.069889002\n\t\t -0.241347 -0.82454801 0.404506 -0.39559501 -0.70100099 0.27208 -0.65921998 -0.82454801\n\t\t 0.404506 -0.39559501 -0.96791899 0.069889002 -0.241347 -0.96791899 0.069889002 -0.241347\n\t\t -0.880849 -0.026521999 -0.472653 -0.70100099 0.27208 -0.65921998 -0.82454801 0.404506\n\t\t -0.39559501 -0.70100099 0.27208 -0.65921998 -0.435967 0.51363802 -0.73899198 -0.435967\n\t\t 0.51363802 -0.73899198 -0.57832003 0.65669399 -0.48404399 -0.82454801 0.404506 -0.39559501\n\t\t -0.88996398 0.45448801 0.037477002 -0.82454801 0.404506 -0.39559501 -0.57832003 0.65669399\n\t\t -0.48404399 -0.57832003 0.65669399 -0.48404399 -0.65817499 0.69717801 -0.284163 -0.88996398\n\t\t 0.45448801 0.037477002 -0.81232899 0.364582 0.455194 -0.88996398 0.45448801 0.037477002\n\t\t -0.63834101 0.73447597 0.230359 -0.63834101 0.73447597 0.230359 -0.60097998 0.66717499\n\t\t 0.44011399 -0.81232899 0.364582 0.455194 -0.67844099 0.23743901 0.69522703 -0.81232899\n\t\t 0.364582 0.455194 -0.60097998 0.66717499 0.44011399 -0.60097998 0.66717499 0.44011399\n\t\t -0.448576 0.53369403 0.71690297 -0.67844099 0.23743901 0.69522703 -0.448576 0.53369403\n\t\t 0.71690297 -0.60097998 0.66717499 0.44011399 -0.31337601 0.88198799 0.35198301 -0.31337601\n\t\t 0.88198799 0.35198301 -0.16443799 0.759839 0.62897199 -0.448576 0.53369403 0.71690297\n\t\t -0.37013501 0.92463499 -0.089726001 -0.31337601 0.88198799 0.35198301 -0.60097998\n\t\t 0.66717499 0.44011399 -0.60097998 0.66717499 0.44011399 -0.63834101 0.73447597 0.230359\n\t\t -0.37013501 0.92463499 -0.089726001 -0.27546301 0.825014 -0.49342799 -0.37013501\n\t\t 0.92463499 -0.089726001 -0.65817499 0.69717801 -0.284163 -0.65817499 0.69717801 -0.284163\n\t\t -0.57832003 0.65669399 -0.48404399 -0.27546301 0.825014 -0.49342799 -0.131384 0.69253403\n\t\t -0.70932001 -0.27546301 0.825014 -0.49342799 -0.57832003 0.65669399 -0.48404399 -0.57832003\n\t\t 0.65669399 -0.48404399 -0.435967 0.51363802 -0.73899198 -0.131384 0.69253403 -0.70932001\n\t\t -0.27546301 0.825014 -0.49342799 -0.131384 0.69253403 -0.70932001 0.195751 0.794909\n\t\t -0.57428402 0.195751 0.794909 -0.57428402 0.070712999 0.90276498 -0.424281 -0.27546301\n\t\t 0.825014 -0.49342799 -0.37013501 0.92463499 -0.089726001 -0.27546301 0.825014 -0.49342799\n\t\t 0.070712999 0.90276498 -0.424281 0.070712999 0.90276498 -0.424281 -0.0084229996 0.99158502\n\t\t -0.129186 -0.37013501 0.92463499 -0.089726001 -0.31337601 0.88198799 0.35198301 -0.37013501\n\t\t 0.92463499 -0.089726001 -0.0084229996 0.99158502 -0.129186 -0.0084229996 0.99158502\n\t\t -0.129186 0.031769998 0.97695398 0.211072 -0.31337601 0.88198799 0.35198301 -0.16443799\n\t\t 0.759839 0.62897199 -0.31337601 0.88198799 0.35198301 0.031769998 0.97695398 0.211072\n\t\t 0.031769998 0.97695398 0.211072 0.15213899 0.88317102 0.44369099 -0.16443799 0.759839\n\t\t 0.62897199 -0.32774201 0.39601299 -0.85776401 -0.435967 0.51363802 -0.73899198 -0.70100099\n\t\t 0.27208 -0.65921998 -0.70100099 0.27208 -0.65921998 -0.59945703 0.148994 -0.78641701\n\t\t -0.32774201 0.39601299 -0.85776401 -0.59945703 0.148994 -0.78641701 -0.70100099 0.27208\n\t\t -0.65921998 -0.880849 -0.026521999 -0.472653 -0.880849 -0.026521999 -0.472653 -0.79469001\n\t\t -0.129463 -0.59304899 -0.59945703 0.148994 -0.78641701 -0.79469001 -0.129463 -0.59304899\n\t\t -0.880849 -0.026521999 -0.472653 -0.91473103 -0.34310099 -0.213423 -0.91473103 -0.34310099\n\t\t -0.213423 -0.863675 -0.40035701 -0.306234 -0.79469001 -0.129463 -0.59304899 -0.863675\n\t\t -0.40035701 -0.306234 -0.91473103 -0.34310099 -0.213423 -0.77872998 -0.62384498 0.066317998\n\t\t -0.77872998 -0.62384498 0.066317998 -0.78272098 -0.62185502 0.025392 -0.863675 -0.40035701\n\t\t -0.306234 -0.82157803 -0.448847 -0.35148999 -0.863675 -0.40035701 -0.306234 -0.78272098\n\t\t -0.62185502 0.025392 -0.78272098 -0.62185502 0.025392 -0.78049201 -0.62515098 0.0042119999\n\t\t -0.82157803 -0.448847 -0.35148999 -0.78939199 -0.48691201 -0.37386701 -0.82157803\n\t\t -0.448847 -0.35148999 -0.78049201 -0.62515098 0.0042119999 -0.78049201 -0.62515098\n\t\t 0.0042119999 -0.779504 -0.626387 -0.0034179999 -0.78939199 -0.48691201 -0.37386701\n\t\t -0.76426101 -0.51760501 -0.38469401 -0.78939199 -0.48691201 -0.37386701 -0.779504\n\t\t -0.626387 -0.0034179999 -0.779504 -0.626387 -0.0034179999 -0.782727 -0.62234902 -0.0045469999\n\t\t -0.76426101 -0.51760501 -0.38469401;\n\tsetAttr \".n[39342:39507]\" -type \"float3\"  -0.78939199 -0.48691201 -0.37386701 -0.76426101\n\t\t -0.51760501 -0.38469401 -0.62857801 -0.337515 -0.70069498 -0.62857801 -0.337515 -0.70069498\n\t\t -0.675677 -0.27803501 -0.68275702 -0.78939199 -0.48691201 -0.37386701 -0.82157803\n\t\t -0.448847 -0.35148999 -0.78939199 -0.48691201 -0.37386701 -0.675677 -0.27803501 -0.68275702\n\t\t -0.675677 -0.27803501 -0.68275702 -0.72873503 -0.211528 -0.651308 -0.82157803 -0.448847\n\t\t -0.35148999 -0.863675 -0.40035701 -0.306234 -0.82157803 -0.448847 -0.35148999 -0.72873503\n\t\t -0.211528 -0.651308 -0.72873503 -0.211528 -0.651308 -0.79469001 -0.129463 -0.59304899\n\t\t -0.863675 -0.40035701 -0.306234 -0.52334499 0.051851999 -0.85054201 -0.59945703 0.148994\n\t\t -0.78641701 -0.79469001 -0.129463 -0.59304899 -0.79469001 -0.129463 -0.59304899 -0.72873503\n\t\t -0.211528 -0.651308 -0.52334499 0.051851999 -0.85054201 -0.45958599 -0.030336 -0.88761503\n\t\t -0.52334499 0.051851999 -0.85054201 -0.72873503 -0.211528 -0.651308 -0.72873503 -0.211528\n\t\t -0.651308 -0.675677 -0.27803501 -0.68275702 -0.45958599 -0.030336 -0.88761503 -0.398518\n\t\t -0.108496 -0.910721 -0.45958599 -0.030336 -0.88761503 -0.675677 -0.27803501 -0.68275702\n\t\t -0.675677 -0.27803501 -0.68275702 -0.62857801 -0.337515 -0.70069498 -0.398518 -0.108496\n\t\t -0.910721 -0.45958599 -0.030336 -0.88761503 -0.398518 -0.108496 -0.910721 -0.112705\n\t\t 0.13416 -0.98452997 -0.112705 0.13416 -0.98452997 -0.17936 0.21851499 -0.95920902\n\t\t -0.45958599 -0.030336 -0.88761503 -0.52334499 0.051851999 -0.85054201 -0.45958599\n\t\t -0.030336 -0.88761503 -0.17936 0.21851499 -0.95920902 -0.17936 0.21851499 -0.95920902\n\t\t -0.24708 0.30241001 -0.92059797 -0.52334499 0.051851999 -0.85054201 -0.59945703 0.148994\n\t\t -0.78641701 -0.52334499 0.051851999 -0.85054201 -0.24708 0.30241001 -0.92059797 -0.24708\n\t\t 0.30241001 -0.92059797 -0.32774201 0.39601299 -0.85776401 -0.59945703 0.148994 -0.78641701\n\t\t -0.32774201 0.39601299 -0.85776401 -0.24708 0.30241001 -0.92059797 0.059604 0.51220202\n\t\t -0.856794 0.059604 0.51220202 -0.856794 -0.021211 0.592417 -0.80535197 -0.32774201\n\t\t 0.39601299 -0.85776401 -0.435967 0.51363802 -0.73899198 -0.32774201 0.39601299 -0.85776401\n\t\t -0.021211 0.592417 -0.80535197 -0.021211 0.592417 -0.80535197 -0.131384 0.69253403\n\t\t -0.70932001 -0.435967 0.51363802 -0.73899198 0.125066 0.43700001 -0.890724 0.059604\n\t\t 0.51220202 -0.856794 -0.24708 0.30241001 -0.92059797 -0.24708 0.30241001 -0.92059797\n\t\t -0.17936 0.21851499 -0.95920902 0.125066 0.43700001 -0.890724 0.188728 0.35795599\n\t\t -0.91446698 0.125066 0.43700001 -0.890724 -0.17936 0.21851499 -0.95920902 -0.17936\n\t\t 0.21851499 -0.95920902 -0.112705 0.13416 -0.98452997 0.188728 0.35795599 -0.91446698\n\t\t 0.125066 0.43700001 -0.890724 0.188728 0.35795599 -0.91446698 0.465049 0.531703 -0.70782799\n\t\t 0.465049 0.531703 -0.70782799 0.413322 0.59482002 -0.68945998 0.125066 0.43700001\n\t\t -0.890724 0.059604 0.51220202 -0.856794 0.125066 0.43700001 -0.890724 0.413322 0.59482002\n\t\t -0.68945998 0.413322 0.59482002 -0.68945998 0.35973299 0.65357602 -0.66590601 0.059604\n\t\t 0.51220202 -0.856794 -0.021211 0.592417 -0.80535197 0.059604 0.51220202 -0.856794\n\t\t 0.35973299 0.65357602 -0.66590601 0.35973299 0.65357602 -0.66590601 0.29142499 0.71594298\n\t\t -0.63442701 -0.021211 0.592417 -0.80535197 -0.131384 0.69253403 -0.70932001 -0.021211\n\t\t 0.592417 -0.80535197 0.29142499 0.71594298 -0.63442701 0.29142499 0.71594298 -0.63442701\n\t\t 0.195751 0.794909 -0.57428402 -0.131384 0.69253403 -0.70932001 -0.031312 0.038056999\n\t\t -0.99878502 -0.112705 0.13416 -0.98452997 -0.398518 -0.108496 -0.910721 -0.398518\n\t\t -0.108496 -0.910721 -0.32600999 -0.198957 -0.92419302 -0.031312 0.038056999 -0.99878502\n\t\t -0.32600999 -0.198957 -0.92419302 -0.398518 -0.108496 -0.910721 -0.62857801 -0.337515\n\t\t -0.70069498 -0.62857801 -0.337515 -0.70069498 -0.57450402 -0.407592 -0.70979798 -0.32600999\n\t\t -0.198957 -0.92419302 -0.57450402 -0.407592 -0.70979798 -0.62857801 -0.337515 -0.70069498\n\t\t -0.76426101 -0.51760501 -0.38469401 -0.76426101 -0.51760501 -0.38469401 -0.73523098\n\t\t -0.55495602 -0.38917699 -0.57450402 -0.407592 -0.70979798 -0.73523098 -0.55495602\n\t\t -0.38917699 -0.76426101 -0.51760501 -0.38469401 -0.782727 -0.62234902 -0.0045469999\n\t\t -0.782727 -0.62234902 -0.0045469999 -0.78418201 -0.62050998 -0.0050360002 -0.73523098\n\t\t -0.55495602 -0.38917699 -0.69132602 -0.61209798 -0.38393399 -0.73523098 -0.55495602\n\t\t -0.38917699 -0.78418201 -0.62050998 -0.0050360002 -0.78418201 -0.62050998 -0.0050360002\n\t\t -0.777197 -0.62924099 -0.0046390002 -0.69132602 -0.61209798 -0.38393399 -0.63119298\n\t\t -0.68835598 -0.357438 -0.69132602 -0.61209798 -0.38393399 -0.777197 -0.62924099 -0.0046390002\n\t\t -0.777197 -0.62924099 -0.0046390002 -0.76167202 -0.64795703 0.002808 -0.63119298\n\t\t -0.68835598 -0.357438 -0.55599999 -0.77528203 -0.299669 -0.63119298 -0.68835598 -0.357438\n\t\t -0.76167202 -0.64795703 0.002808 -0.76167202 -0.64795703 0.002808 -0.73889601 -0.673464\n\t\t 0.021881999 -0.55599999 -0.77528203 -0.299669 -0.63119298 -0.68835598 -0.357438 -0.55599999\n\t\t -0.77528203 -0.299669 -0.285752 -0.76209599 -0.58099502 -0.285752 -0.76209599 -0.58099502\n\t\t -0.40351999 -0.626369 -0.66695899 -0.63119298 -0.68835598 -0.357438 -0.69132602 -0.61209798\n\t\t -0.38393399 -0.63119298 -0.68835598 -0.357438 -0.40351999 -0.626369 -0.66695899 -0.40351999\n\t\t -0.626369 -0.66695899 -0.50051498 -0.50387299 -0.703987 -0.69132602 -0.61209798 -0.38393399\n\t\t -0.73523098 -0.55495602 -0.38917699 -0.69132602 -0.61209798 -0.38393399 -0.50051498\n\t\t -0.50387299 -0.703987 -0.50051498 -0.50387299 -0.703987 -0.57450402 -0.407592 -0.70979798\n\t\t -0.73523098 -0.55495602 -0.38917699 -0.229507 -0.316946 -0.92025602 -0.32600999 -0.198957\n\t\t -0.92419302 -0.57450402 -0.407592 -0.70979798 -0.57450402 -0.407592 -0.70979798;\n\tsetAttr \".n[39508:39673]\" -type \"float3\"  -0.50051498 -0.50387299 -0.703987 -0.229507\n\t\t -0.316946 -0.92025602 -0.105414 -0.46377301 -0.87966102 -0.229507 -0.316946 -0.92025602\n\t\t -0.50051498 -0.50387299 -0.703987 -0.50051498 -0.50387299 -0.703987 -0.40351999 -0.626369\n\t\t -0.66695899 -0.105414 -0.46377301 -0.87966102 0.039889 -0.62594599 -0.77884603 -0.105414\n\t\t -0.46377301 -0.87966102 -0.40351999 -0.626369 -0.66695899 -0.40351999 -0.626369 -0.66695899\n\t\t -0.285752 -0.76209599 -0.58099502 0.039889 -0.62594599 -0.77884603 -0.105414 -0.46377301\n\t\t -0.87966102 0.039889 -0.62594599 -0.77884603 0.35820499 -0.38747299 -0.84944302 0.35820499\n\t\t -0.38747299 -0.84944302 0.20798901 -0.22681899 -0.951469 -0.105414 -0.46377301 -0.87966102\n\t\t -0.229507 -0.316946 -0.92025602 -0.105414 -0.46377301 -0.87966102 0.20798901 -0.22681899\n\t\t -0.951469 0.20798901 -0.22681899 -0.951469 0.074711002 -0.081609003 -0.99386001 -0.229507\n\t\t -0.316946 -0.92025602 -0.32600999 -0.198957 -0.92419302 -0.229507 -0.316946 -0.92025602\n\t\t 0.074711002 -0.081609003 -0.99386001 0.074711002 -0.081609003 -0.99386001 -0.031312\n\t\t 0.038056999 -0.99878502 -0.32600999 -0.198957 -0.92419302 -0.031312 0.038056999 -0.99878502\n\t\t 0.074711002 -0.081609003 -0.99386001 0.36415601 0.16425499 -0.91673899 0.36415601\n\t\t 0.16425499 -0.91673899 0.266341 0.269301 -0.92549402 -0.031312 0.038056999 -0.99878502\n\t\t -0.112705 0.13416 -0.98452997 -0.031312 0.038056999 -0.99878502 0.266341 0.269301\n\t\t -0.92549402 0.266341 0.269301 -0.92549402 0.188728 0.35795599 -0.91446698 -0.112705\n\t\t 0.13416 -0.98452997 0.48296899 0.041476 -0.87465501 0.36415601 0.16425499 -0.91673899\n\t\t 0.074711002 -0.081609003 -0.99386001 0.074711002 -0.081609003 -0.99386001 0.20798901\n\t\t -0.22681899 -0.951469 0.48296899 0.041476 -0.87465501 0.61248899 -0.093052998 -0.78498298\n\t\t 0.48296899 0.041476 -0.87465501 0.20798901 -0.22681899 -0.951469 0.20798901 -0.22681899\n\t\t -0.951469 0.35820499 -0.38747299 -0.84944302 0.61248899 -0.093052998 -0.78498298\n\t\t 0.48296899 0.041476 -0.87465501 0.61248899 -0.093052998 -0.78498298 0.76953697 0.21000101\n\t\t -0.60308599 0.76953697 0.21000101 -0.60308599 0.68211001 0.300129 -0.66681999 0.48296899\n\t\t 0.041476 -0.87465501 0.36415601 0.16425499 -0.91673899 0.48296899 0.041476 -0.87465501\n\t\t 0.68211001 0.300129 -0.66681999 0.68211001 0.300129 -0.66681999 0.59889001 0.38525099\n\t\t -0.70207697 0.36415601 0.16425499 -0.91673899 0.266341 0.269301 -0.92549402 0.36415601\n\t\t 0.16425499 -0.91673899 0.59889001 0.38525099 -0.70207697 0.59889001 0.38525099 -0.70207697\n\t\t 0.52639502 0.46230501 -0.71357 0.266341 0.269301 -0.92549402 0.188728 0.35795599\n\t\t -0.91446698 0.266341 0.269301 -0.92549402 0.52639502 0.46230501 -0.71357 0.52639502\n\t\t 0.46230501 -0.71357 0.465049 0.531703 -0.70782799 0.188728 0.35795599 -0.91446698\n\t\t 0.47887799 -0.51977402 -0.70746797 0.35820499 -0.38747299 -0.84944302 0.039889 -0.62594599\n\t\t -0.77884603 0.039889 -0.62594599 -0.77884603 0.163339 -0.75232899 -0.63821799 0.47887799\n\t\t -0.51977402 -0.70746797 0.163339 -0.75232899 -0.63821799 0.039889 -0.62594599 -0.77884603\n\t\t -0.285752 -0.76209599 -0.58099502 -0.285752 -0.76209599 -0.58099502 -0.178966 -0.86583698\n\t\t -0.46722201 0.163339 -0.75232899 -0.63821799 -0.178966 -0.86583698 -0.46722201 -0.285752\n\t\t -0.76209599 -0.58099502 -0.55599999 -0.77528203 -0.299669 -0.55599999 -0.77528203\n\t\t -0.299669 -0.48540899 -0.84376699 -0.228986 -0.178966 -0.86583698 -0.46722201 -0.48540899\n\t\t -0.84376699 -0.228986 -0.55599999 -0.77528203 -0.299669 -0.73889601 -0.673464 0.021881999\n\t\t -0.73889601 -0.673464 0.021881999 -0.71697497 -0.69585699 0.041597001 -0.48540899\n\t\t -0.84376699 -0.228986 -0.442653 -0.88124698 -0.16572 -0.48540899 -0.84376699 -0.228986\n\t\t -0.71697497 -0.69585699 0.041597001 -0.71697497 -0.69585699 0.041597001 -0.70714802\n\t\t -0.70479798 0.056582 -0.442653 -0.88124698 -0.16572 -0.42110899 -0.90078503 -0.106086\n\t\t -0.442653 -0.88124698 -0.16572 -0.70714802 -0.70479798 0.056582 -0.70714802 -0.70479798\n\t\t 0.056582 -0.71156698 -0.70015299 0.058812 -0.42110899 -0.90078503 -0.106086 -0.41606301\n\t\t -0.90808702 -0.04764 -0.42110899 -0.90078503 -0.106086 -0.71156698 -0.70015299 0.058812\n\t\t -0.71156698 -0.70015299 0.058812 -0.72470403 -0.68811202 0.036134999 -0.41606301\n\t\t -0.90808702 -0.04764 -0.42110899 -0.90078503 -0.106086 -0.41606301 -0.90808702 -0.04764\n\t\t -0.046510998 -0.99126798 -0.12339 -0.046510998 -0.99126798 -0.12339 -0.069614999\n\t\t -0.964845 -0.253434 -0.42110899 -0.90078503 -0.106086 -0.442653 -0.88124698 -0.16572\n\t\t -0.42110899 -0.90078503 -0.106086 -0.069614999 -0.964845 -0.253434 -0.069614999 -0.964845\n\t\t -0.253434 -0.11228 -0.92509699 -0.36275101 -0.442653 -0.88124698 -0.16572 -0.48540899\n\t\t -0.84376699 -0.228986 -0.442653 -0.88124698 -0.16572 -0.11228 -0.92509699 -0.36275101\n\t\t -0.11228 -0.92509699 -0.36275101 -0.178966 -0.86583698 -0.46722201 -0.48540899 -0.84376699\n\t\t -0.228986 0.240308 -0.827649 -0.50719798 0.163339 -0.75232899 -0.63821799 -0.178966\n\t\t -0.86583698 -0.46722201 -0.178966 -0.86583698 -0.46722201 -0.11228 -0.92509699 -0.36275101\n\t\t 0.240308 -0.827649 -0.50719798 0.295728 -0.88321698 -0.36396801 0.240308 -0.827649\n\t\t -0.50719798 -0.11228 -0.92509699 -0.36275101 -0.11228 -0.92509699 -0.36275101 -0.069614999\n\t\t -0.964845 -0.253434 0.295728 -0.88321698 -0.36396801 -0.069614999 -0.964845 -0.253434\n\t\t -0.046510998 -0.99126798 -0.12339 0.33544001 -0.924496 -0.181072 0.33544001 -0.924496\n\t\t -0.181072 0.295728 -0.88321698 -0.36396801 -0.069614999 -0.964845 -0.253434 0.295728\n\t\t -0.88321698 -0.36396801 0.33544001 -0.924496 -0.181072 0.66680402 -0.71456498 -0.211586\n\t\t 0.66680402 -0.71456498 -0.211586 0.61566103 -0.66732901 -0.41908699 0.295728 -0.88321698\n\t\t -0.36396801 0.240308 -0.827649 -0.50719798 0.295728 -0.88321698 -0.36396801;\n\tsetAttr \".n[39674:39839]\" -type \"float3\"  0.61566103 -0.66732901 -0.41908699 0.61566103\n\t\t -0.66732901 -0.41908699 0.55505598 -0.60312301 -0.57284802 0.240308 -0.827649 -0.50719798\n\t\t 0.163339 -0.75232899 -0.63821799 0.240308 -0.827649 -0.50719798 0.55505598 -0.60312301\n\t\t -0.57284802 0.55505598 -0.60312301 -0.57284802 0.47887799 -0.51977402 -0.70746797\n\t\t 0.163339 -0.75232899 -0.63821799 0.47887799 -0.51977402 -0.70746797 0.55505598 -0.60312301\n\t\t -0.57284802 0.78261602 -0.289204 -0.55124599 0.78261602 -0.289204 -0.55124599 0.71491802\n\t\t -0.21092001 -0.666637 0.47887799 -0.51977402 -0.70746797 0.35820499 -0.38747299 -0.84944302\n\t\t 0.47887799 -0.51977402 -0.70746797 0.71491802 -0.21092001 -0.666637 0.71491802 -0.21092001\n\t\t -0.666637 0.61248899 -0.093052998 -0.78498298 0.35820499 -0.38747299 -0.84944302\n\t\t 0.841573 -0.35036299 -0.41109699 0.78261602 -0.289204 -0.55124599 0.55505598 -0.60312301\n\t\t -0.57284802 0.55505598 -0.60312301 -0.57284802 0.61566103 -0.66732901 -0.41908699\n\t\t 0.841573 -0.35036299 -0.41109699 0.61566103 -0.66732901 -0.41908699 0.66680402 -0.71456498\n\t\t -0.211586 0.89566702 -0.392167 -0.20972601 0.89566702 -0.392167 -0.20972601 0.841573\n\t\t -0.35036299 -0.41109699 0.61566103 -0.66732901 -0.41908699 0.841573 -0.35036299 -0.41109699\n\t\t 0.89566702 -0.392167 -0.20972601 0.98445803 -0.0082700001 -0.17542399 0.98445803\n\t\t -0.0082700001 -0.17542399 0.93983698 0.021272 -0.34096 0.841573 -0.35036299 -0.41109699\n\t\t 0.78261602 -0.289204 -0.55124599 0.841573 -0.35036299 -0.41109699 0.93983698 0.021272\n\t\t -0.34096 0.93983698 0.021272 -0.34096 0.89189202 0.067814 -0.44713601 0.78261602\n\t\t -0.289204 -0.55124599 0.71491802 -0.21092001 -0.666637 0.78261602 -0.289204 -0.55124599\n\t\t 0.89189202 0.067814 -0.44713601 0.89189202 0.067814 -0.44713601 0.84089601 0.12659401\n\t\t -0.526182 0.71491802 -0.21092001 -0.666637 0.61248899 -0.093052998 -0.78498298 0.71491802\n\t\t -0.21092001 -0.666637 0.84089601 0.12659401 -0.526182 0.84089601 0.12659401 -0.526182\n\t\t 0.76953697 0.21000101 -0.60308599 0.61248899 -0.093052998 -0.78498298 0.66680402\n\t\t -0.71456498 -0.211586 0.33544001 -0.924496 -0.181072 0.35493499 -0.93396997 -0.041475002\n\t\t 0.35493499 -0.93396997 -0.041475002 0.33544001 -0.924496 -0.181072 -0.046510998 -0.99126798\n\t\t -0.12339 0.998945 -0.022156 -0.040224001 0.98445803 -0.0082700001 -0.17542399 0.89566702\n\t\t -0.392167 -0.20972601 0.89566702 -0.392167 -0.20972601 0.91308701 -0.40489 -0.048340999\n\t\t 0.998945 -0.022156 -0.040224001 0.91308701 -0.40489 -0.048340999 0.89566702 -0.392167\n\t\t -0.20972601 0.66680402 -0.71456498 -0.211586 -0.046510998 -0.99126798 -0.12339 -0.41606301\n\t\t -0.90808702 -0.04764 -0.40932 -0.91233301 -0.010315 -0.40932 -0.91233301 -0.010315\n\t\t -0.41606301 -0.90808702 -0.04764 -0.72470403 -0.68811202 0.036134999 -0.382624 -0.922943\n\t\t -0.042146999 -0.45068499 -0.87521499 -0.175733 -0.13016599 -0.916502 -0.378259 -0.13016599\n\t\t -0.916502 -0.378259 -0.018921999 -0.98705697 -0.15925001 -0.382624 -0.922943 -0.042146999\n\t\t -0.56685901 -0.75101 0.338608 -0.50369197 -0.80659801 0.30934501 -0.154185 -0.86056298\n\t\t 0.48544601 -0.154185 -0.86056298 0.48544601 -0.26210201 -0.76625502 0.58664799 -0.56685901\n\t\t -0.75101 0.338608 -0.71105999 -0.59127402 0.38051 -0.67743999 -0.63141698 0.377343\n\t\t -0.46645799 -0.542696 0.698497 -0.46645799 -0.542696 0.698497 -0.52789497 -0.47137299\n\t\t 0.70649499 -0.71105999 -0.59127402 0.38051 -0.84093601 -0.44787499 0.3037 -0.81211901\n\t\t -0.47741401 0.33546799 -0.76872402 -0.21241499 0.60327798 -0.76872402 -0.21241499\n\t\t 0.60327798 -0.84189999 -0.13352101 0.52285397 -0.84093601 -0.44787499 0.3037 -0.93938297\n\t\t -0.026063999 0.34187701 -0.98373401 0.014313 0.179058 -0.92356199 -0.36564699 0.115483\n\t\t -0.92356199 -0.36564699 0.115483 -0.89359301 -0.39344999 0.216074 -0.93938297 -0.026063999\n\t\t 0.34187701 -0.35701501 0.93318802 0.041230999 -0.33985901 0.921489 0.18802699 0.036713999\n\t\t 0.99102002 0.12857699 -0.66748899 0.71174097 0.218824 -0.33985901 0.921489 0.18802699\n\t\t -0.35701501 0.93318802 0.041230999 -0.91350502 0.406822 -0.002106 -0.91261899 0.40608999\n\t\t 0.047091 -0.68720102 0.72489202 0.047823999 -0.68720102 0.72489202 0.047823999 -0.68811899\n\t\t 0.72559601 -0.001862 -0.91350502 0.406822 -0.002106 -0.91261899 0.40608999 0.047091\n\t\t -0.91350502 0.406822 -0.002106 -0.999659 0.026063001 -0.001648 -0.999659 0.026063001\n\t\t -0.001648 -0.99890703 0.025513001 0.039154999 -0.91261899 0.40608999 0.047091 -0.91261899\n\t\t 0.40608999 0.047091 -0.99890703 0.025513001 0.039154999 -0.98373401 0.014313 0.179058\n\t\t -0.98373401 0.014313 0.179058 -0.99890703 0.025513001 0.039154999 -0.93318498 -0.35847899\n\t\t 0.025667001 -0.93318498 -0.35847899 0.025667001 -0.92356199 -0.36564699 0.115483\n\t\t -0.98373401 0.014313 0.179058 -0.99890703 0.025513001 0.039154999 -0.999659 0.026063001\n\t\t -0.001648 -0.93353897 -0.35847399 -0.00085399998 -0.93353897 -0.35847399 -0.00085399998\n\t\t -0.93318498 -0.35847899 0.025667001 -0.99890703 0.025513001 0.039154999 0.65778899\n\t\t -0.72245902 -0.21299601 0.69998801 -0.71073002 -0.069858 0.917651 -0.387288 -0.089024\n\t\t 0.92173499 -0.38637 -0.03351 0.917651 -0.387288 -0.089024 0.69998801 -0.71073002\n\t\t -0.069858 0.69998801 -0.71073002 -0.069858 0.70410901 -0.70981598 -0.019776 0.92173499\n\t\t -0.38637 -0.03351 0.70410901 -0.70981598 -0.019776 0.69998801 -0.71073002 -0.069858\n\t\t 0.37870899 -0.924326 -0.046907999 0.37870899 -0.924326 -0.046907999 0.38084999 -0.92457998\n\t\t -0.010285 0.70410901 -0.70981598 -0.019776 0.69998801 -0.71073002 -0.069858 0.65778899\n\t\t -0.72245902 -0.21299601 0.33946899 -0.926175 -0.164195 0.33946899 -0.926175 -0.164195\n\t\t 0.37870899 -0.924326 -0.046907999 0.69998801 -0.71073002 -0.069858 0.37870899 -0.924326\n\t\t -0.046907999 0.33946899 -0.926175 -0.164195 -0.024567001 -0.99521101 -0.094608001;\n\tsetAttr \".n[39840:40005]\" -type \"float3\"  -0.024567001 -0.99521101 -0.094608001\n\t\t 0.000122 -0.99968898 -0.024933999 0.37870899 -0.924326 -0.046907999 0.38084999 -0.92457998\n\t\t -0.010285 0.37870899 -0.924326 -0.046907999 0.000122 -0.99968898 -0.024933999 0.000122\n\t\t -0.99968898 -0.024933999 -0.00082399999 -0.99997801 -0.0066220001 0.38084999 -0.92457998\n\t\t -0.010285 -0.00082399999 -0.99997801 -0.0066220001 0.000122 -0.99968898 -0.024933999\n\t\t -0.38014901 -0.92491901 -0.003449 -0.38014901 -0.92491901 -0.003449 -0.38282701 -0.92380202\n\t\t -0.0057680001 -0.00082399999 -0.99997801 -0.0066220001 -0.38282701 -0.92380202 -0.0057680001\n\t\t -0.38014901 -0.92491901 -0.003449 -0.705935 -0.70807201 0.01706 -0.704898 -0.705356\n\t\t 0.074772 -0.705935 -0.70807201 0.01706 -0.38014901 -0.92491901 -0.003449 -0.38014901\n\t\t -0.92491901 -0.003449 -0.388659 -0.92130798 -0.011628 -0.704898 -0.705356 0.074772\n\t\t -0.388659 -0.92130798 -0.011628 -0.38014901 -0.92491901 -0.003449 0.000122 -0.99968898\n\t\t -0.024933999 0.000122 -0.99968898 -0.024933999 -0.024567001 -0.99521101 -0.094608001\n\t\t -0.388659 -0.92130798 -0.011628 -0.705935 -0.70807201 0.01706 -0.70743197 -0.706761\n\t\t -0.0054629999 -0.38282701 -0.92380202 -0.0057680001 -0.70743197 -0.706761 -0.0054629999\n\t\t -0.705935 -0.70807201 0.01706 -0.92438799 -0.379778 0.035707001 -0.92438799 -0.379778\n\t\t 0.035707001 -0.92429298 -0.38166901 -0.0034789999 -0.70743197 -0.706761 -0.0054629999\n\t\t -0.705935 -0.70807201 0.01706 -0.704898 -0.705356 0.074772 -0.916668 -0.370592 0.14960399\n\t\t -0.916668 -0.370592 0.14960399 -0.92438799 -0.379778 0.035707001 -0.705935 -0.70807201\n\t\t 0.01706 -0.92438799 -0.379778 0.035707001 -0.916668 -0.370592 0.14960399 -0.97981602\n\t\t 0.029756 0.19767199 -0.97981602 0.029756 0.19767199 -0.99870503 0.0093080001 0.050021\n\t\t -0.92438799 -0.379778 0.035707001 -0.92429298 -0.38166901 -0.0034789999 -0.92438799\n\t\t -0.379778 0.035707001 -0.99870503 0.0093080001 0.050021 -0.99870503 0.0093080001\n\t\t 0.050021 -0.99999797 0.001678 0.00064099999 -0.92429298 -0.38166901 -0.0034789999\n\t\t -0.99999797 0.001678 0.00064099999 -0.99870503 0.0093080001 0.050021 -0.91682601\n\t\t 0.39516199 0.057254001 -0.91682601 0.39516199 0.057254001 -0.92321301 0.38423899\n\t\t 0.0061039999 -0.99999797 0.001678 0.00064099999 -0.99870503 0.0093080001 0.050021\n\t\t -0.97981602 0.029756 0.19767199 -0.88316 0.419301 0.21027599 -0.88316 0.419301 0.21027599\n\t\t -0.91682601 0.39516199 0.057254001 -0.99870503 0.0093080001 0.050021 -0.91682601\n\t\t 0.39516199 0.057254001 -0.88316 0.419301 0.21027599 -0.65336102 0.73295498 0.189465\n\t\t -0.65336102 0.73295498 0.189465 -0.69510603 0.71677399 0.055330999 -0.91682601 0.39516199\n\t\t 0.057254001 -0.92321301 0.38423899 0.0061039999 -0.91682601 0.39516199 0.057254001\n\t\t -0.69510603 0.71677399 0.055330999 -0.69510603 0.71677399 0.055330999 -0.70642602\n\t\t 0.70770699 0.01059 -0.92321301 0.38423899 0.0061039999 -0.70642602 0.70770699 0.01059\n\t\t -0.69510603 0.71677399 0.055330999 -0.37206 0.92720401 0.043184999 -0.37206 0.92720401\n\t\t 0.043184999 -0.38384199 0.92333299 0.011048 -0.70642602 0.70770699 0.01059 -0.69510603\n\t\t 0.71677399 0.055330999 -0.65336102 0.73295498 0.189465 -0.33528101 0.93128502 0.142462\n\t\t -0.33528101 0.93128502 0.142462 -0.37206 0.92720401 0.043184999 -0.69510603 0.71677399\n\t\t 0.055330999 -0.38384199 0.92333299 0.011048 -0.37206 0.92720401 0.043184999 0.001404\n\t\t 0.99981302 0.019288 0.001404 0.99981302 0.019288 -0.0051270002 0.99998301 0.002808\n\t\t -0.38384199 0.92333299 0.011048 0.54027998 0.820903 0.184976 0.498532 0.85222101\n\t\t 0.1587 0.18460999 0.92454797 0.333361 0.18460999 0.92454797 0.333361 0.23517901 0.89283198\n\t\t 0.384112 0.54027998 0.820903 0.184976 0.57785398 0.79292399 0.193279 0.54027998 0.820903\n\t\t 0.184976 0.23517901 0.89283198 0.384112 0.23517901 0.89283198 0.384112 0.284897 0.85841399\n\t\t 0.42656699 0.57785398 0.79292399 0.193279 0.60433698 0.772223 0.19608501 0.57785398\n\t\t 0.79292399 0.193279 0.284897 0.85841399 0.42656699 0.284897 0.85841399 0.42656699\n\t\t 0.32588699 0.82347798 0.46441501 0.60433698 0.772223 0.19608501 0.61529797 0.76056999\n\t\t 0.20722499 0.60433698 0.772223 0.19608501 0.32588699 0.82347798 0.46441501 0.32588699\n\t\t 0.82347798 0.46441501 0.35225099 0.78861302 0.50399202 0.61529797 0.76056999 0.20722499\n\t\t 0.60433698 0.772223 0.19608501 0.61529797 0.76056999 0.20722499 0.782116 0.60632598\n\t\t -0.143746 0.782116 0.60632598 -0.143746 0.79537702 0.593436 -0.123326 0.60433698\n\t\t 0.772223 0.19608501 0.57785398 0.79292399 0.193279 0.60433698 0.772223 0.19608501\n\t\t 0.79537702 0.593436 -0.123326 0.79537702 0.593436 -0.123326 0.79604602 0.599011 -0.086585\n\t\t 0.57785398 0.79292399 0.193279 0.54027998 0.820903 0.184976 0.57785398 0.79292399\n\t\t 0.193279 0.79604602 0.599011 -0.086585 0.79604602 0.599011 -0.086585 0.78275001 0.620085\n\t\t -0.052889001 0.54027998 0.820903 0.184976 0.498532 0.85222101 0.1587 0.54027998 0.820903\n\t\t 0.184976 0.78275001 0.620085 -0.052889001 0.78275001 0.620085 -0.052889001 0.75884497\n\t\t 0.64967602 -0.045566 0.498532 0.85222101 0.1587 0.75884497 0.64967602 -0.045566 0.78275001\n\t\t 0.620085 -0.052889001 0.901914 0.30498201 -0.30583701 0.901914 0.30498201 -0.30583701\n\t\t 0.907332 0.32856899 -0.262281 0.75884497 0.64967602 -0.045566 0.87812501 0.29572999\n\t\t -0.376086 0.901914 0.30498201 -0.30583701 0.78275001 0.620085 -0.052889001 0.78275001\n\t\t 0.620085 -0.052889001 0.79604602 0.599011 -0.086585 0.87812501 0.29572999 -0.376086\n\t\t 0.84251797 0.30971101 -0.44073001 0.87812501 0.29572999 -0.376086 0.79604602 0.599011\n\t\t -0.086585 0.79604602 0.599011 -0.086585 0.79537702 0.593436 -0.123326 0.84251797\n\t\t 0.30971101 -0.44073001 0.804344 0.34777099 -0.48175201;\n\tsetAttr \".n[40006:40171]\" -type \"float3\"  0.84251797 0.30971101 -0.44073001 0.79537702\n\t\t 0.593436 -0.123326 0.79537702 0.593436 -0.123326 0.782116 0.60632598 -0.143746 0.804344\n\t\t 0.34777099 -0.48175201 0.84251797 0.30971101 -0.44073001 0.804344 0.34777099 -0.48175201\n\t\t 0.68095797 0.044833999 -0.73094898 0.68095797 0.044833999 -0.73094898 0.72901201\n\t\t -0.015168 -0.68433201 0.84251797 0.30971101 -0.44073001 0.87812501 0.29572999 -0.376086\n\t\t 0.84251797 0.30971101 -0.44073001 0.72901201 -0.015168 -0.68433201 0.72901201 -0.015168\n\t\t -0.68433201 0.78829402 -0.053529002 -0.61296499 0.87812501 0.29572999 -0.376086 0.901914\n\t\t 0.30498201 -0.30583701 0.87812501 0.29572999 -0.376086 0.78829402 -0.053529002 -0.61296499\n\t\t 0.78829402 -0.053529002 -0.61296499 0.84781802 -0.065646 -0.526209 0.901914 0.30498201\n\t\t -0.30583701 0.907332 0.32856899 -0.262281 0.901914 0.30498201 -0.30583701 0.84781802\n\t\t -0.065646 -0.526209 0.84781802 -0.065646 -0.526209 0.888699 -0.056338999 -0.45501599\n\t\t 0.907332 0.32856899 -0.262281 0.888699 -0.056338999 -0.45501599 0.84781802 -0.065646\n\t\t -0.526209 0.634161 -0.40212199 -0.66040701 0.634161 -0.40212199 -0.66040701 0.70257902\n\t\t -0.41487601 -0.57815301 0.888699 -0.056338999 -0.45501599 0.55930299 -0.36599201\n\t\t -0.74379402 0.634161 -0.40212199 -0.66040701 0.84781802 -0.065646 -0.526209 0.84781802\n\t\t -0.065646 -0.526209 0.78829402 -0.053529002 -0.61296499 0.55930299 -0.36599201 -0.74379402\n\t\t 0.499264 -0.31031901 -0.80897301 0.55930299 -0.36599201 -0.74379402 0.78829402 -0.053529002\n\t\t -0.61296499 0.78829402 -0.053529002 -0.61296499 0.72901201 -0.015168 -0.68433201\n\t\t 0.499264 -0.31031901 -0.80897301 0.459104 -0.241989 -0.85478902 0.499264 -0.31031901\n\t\t -0.80897301 0.72901201 -0.015168 -0.68433201 0.72901201 -0.015168 -0.68433201 0.68095797\n\t\t 0.044833999 -0.73094898 0.459104 -0.241989 -0.85478902 0.499264 -0.31031901 -0.80897301\n\t\t 0.459104 -0.241989 -0.85478902 0.190166 -0.48000899 -0.85640401 0.190166 -0.48000899\n\t\t -0.85640401 0.217843 -0.53810602 -0.81423998 0.499264 -0.31031901 -0.80897301 0.55930299\n\t\t -0.36599201 -0.74379402 0.499264 -0.31031901 -0.80897301 0.217843 -0.53810602 -0.81423998\n\t\t 0.217843 -0.53810602 -0.81423998 0.266734 -0.59343702 -0.75939798 0.55930299 -0.36599201\n\t\t -0.74379402 0.634161 -0.40212199 -0.66040701 0.55930299 -0.36599201 -0.74379402 0.266734\n\t\t -0.59343702 -0.75939798 0.266734 -0.59343702 -0.75939798 0.33720899 -0.64221901 -0.68836403\n\t\t 0.634161 -0.40212199 -0.66040701 0.70257902 -0.41487601 -0.57815301 0.634161 -0.40212199\n\t\t -0.66040701 0.33720899 -0.64221901 -0.68836403 0.33720899 -0.64221901 -0.68836403\n\t\t 0.41567701 -0.67622203 -0.60822397 0.70257902 -0.41487601 -0.57815301 0.41567701\n\t\t -0.67622203 -0.60822397 0.33720899 -0.64221901 -0.68836403 0.026155001 -0.78269398\n\t\t -0.621858 0.026155001 -0.78269398 -0.621858 0.101323 -0.828439 -0.55083799 0.41567701\n\t\t -0.67622203 -0.60822397 -0.035004999 -0.73596299 -0.67611599 0.026155001 -0.78269398\n\t\t -0.621858 0.33720899 -0.64221901 -0.68836403 0.33720899 -0.64221901 -0.68836403 0.266734\n\t\t -0.59343702 -0.75939798 -0.035004999 -0.73596299 -0.67611599 -0.075595997 -0.69486302\n\t\t -0.71515799 -0.035004999 -0.73596299 -0.67611599 0.266734 -0.59343702 -0.75939798\n\t\t 0.266734 -0.59343702 -0.75939798 0.217843 -0.53810602 -0.81423998 -0.075595997 -0.69486302\n\t\t -0.71515799 -0.096531004 -0.65838701 -0.74646401 -0.075595997 -0.69486302 -0.71515799\n\t\t 0.217843 -0.53810602 -0.81423998 0.217843 -0.53810602 -0.81423998 0.190166 -0.48000899\n\t\t -0.85640401 -0.096531004 -0.65838701 -0.74646401 -0.075595997 -0.69486302 -0.71515799\n\t\t -0.096531004 -0.65838701 -0.74646401 -0.380146 -0.75904202 -0.52853 -0.380146 -0.75904202\n\t\t -0.52853 -0.36287501 -0.77455097 -0.51806599 -0.075595997 -0.69486302 -0.71515799\n\t\t -0.035004999 -0.73596299 -0.67611599 -0.075595997 -0.69486302 -0.71515799 -0.36287501\n\t\t -0.77455097 -0.51806599 -0.36287501 -0.77455097 -0.51806599 -0.32680199 -0.79939598\n\t\t -0.50414997 -0.035004999 -0.73596299 -0.67611599 0.026155001 -0.78269398 -0.621858\n\t\t -0.035004999 -0.73596299 -0.67611599 -0.32680199 -0.79939598 -0.50414997 -0.32680199\n\t\t -0.79939598 -0.50414997 -0.27363899 -0.83718503 -0.47354299 0.026155001 -0.78269398\n\t\t -0.621858 0.101323 -0.828439 -0.55083799 0.026155001 -0.78269398 -0.621858 -0.27363899\n\t\t -0.83718503 -0.47354299 -0.27363899 -0.83718503 -0.47354299 -0.20789699 -0.88457298\n\t\t -0.417505 0.101323 -0.828439 -0.55083799 -0.20789699 -0.88457298 -0.417505 -0.27363899\n\t\t -0.83718503 -0.47354299 -0.55429 -0.79521 -0.24577101 -0.55429 -0.79521 -0.24577101\n\t\t -0.50341898 -0.83745599 -0.21269 -0.20789699 -0.88457298 -0.417505 -0.27363899 -0.83718503\n\t\t -0.47354299 -0.32680199 -0.79939598 -0.50414997 -0.594603 -0.76563299 -0.245465 -0.594603\n\t\t -0.76563299 -0.245465 -0.55429 -0.79521 -0.24577101 -0.27363899 -0.83718503 -0.47354299\n\t\t -0.32680199 -0.79939598 -0.50414997 -0.36287501 -0.77455097 -0.51806599 -0.61914802\n\t\t -0.75126702 -0.228591 -0.61914802 -0.75126702 -0.228591 -0.594603 -0.76563299 -0.245465\n\t\t -0.32680199 -0.79939598 -0.50414997 -0.36287501 -0.77455097 -0.51806599 -0.380146\n\t\t -0.75904202 -0.52853 -0.62551701 -0.74991298 -0.21531101 -0.62551701 -0.74991298\n\t\t -0.21531101 -0.61914802 -0.75126702 -0.228591 -0.36287501 -0.77455097 -0.51806599\n\t\t -0.86971402 -0.307484 0.38607201 -0.88881099 -0.31517199 0.33269 -0.78171301 -0.62203801\n\t\t 0.044649001 -0.78171301 -0.62203801 0.044649001 -0.79640198 -0.59991902 0.076421\n\t\t -0.86971402 -0.307484 0.38607201 -0.83930498 -0.319626 0.43978 -0.86971402 -0.307484\n\t\t 0.38607201 -0.79640198 -0.59991902 0.076421 -0.79640198 -0.59991902 0.076421 -0.79527998\n\t\t -0.59461403 0.118172 -0.83930498 -0.319626 0.43978 -0.80632299 -0.35219401 0.475187\n\t\t -0.83930498 -0.319626 0.43978 -0.79527998 -0.59461403 0.118172 -0.83930498 -0.319626\n\t\t 0.43978 -0.80632299 -0.35219401 0.475187;\n\tsetAttr \".n[40172:40337]\" -type \"float3\"  -0.70554602 -0.044192001 0.70728499 -0.70554602\n\t\t -0.044192001 0.70728499 -0.74643803 0.010041 0.66537899 -0.83930498 -0.319626 0.43978\n\t\t -0.86971402 -0.307484 0.38607201 -0.83930498 -0.319626 0.43978 -0.74643803 0.010041\n\t\t 0.66537899 -0.74643803 0.010041 0.66537899 -0.794164 0.045687001 0.60598397 -0.86971402\n\t\t -0.307484 0.38607201 -0.88881099 -0.31517199 0.33269 -0.86971402 -0.307484 0.38607201\n\t\t -0.794164 0.045687001 0.60598397 -0.794164 0.045687001 0.60598397 -0.83891398 0.059939999\n\t\t 0.54095399 -0.88881099 -0.31517199 0.33269 -0.83891398 0.059939999 0.54095399 -0.794164\n\t\t 0.045687001 0.60598397 -0.600995 0.37704101 0.70473099 -0.600995 0.37704101 0.70473099\n\t\t -0.65655601 0.40980899 0.63323897 -0.83891398 0.059939999 0.54095399 -0.54910499\n\t\t 0.32521501 0.76988202 -0.600995 0.37704101 0.70473099 -0.794164 0.045687001 0.60598397\n\t\t -0.794164 0.045687001 0.60598397 -0.74643803 0.010041 0.66537899 -0.54910499 0.32521501\n\t\t 0.76988202 -0.508169 0.25883001 0.82144499 -0.54910499 0.32521501 0.76988202 -0.74643803\n\t\t 0.010041 0.66537899 -0.74643803 0.010041 0.66537899 -0.70554602 -0.044192001 0.70728499\n\t\t -0.508169 0.25883001 0.82144499 -0.54910499 0.32521501 0.76988202 -0.508169 0.25883001\n\t\t 0.82144499 -0.24723899 0.515535 0.82042497 -0.24723899 0.515535 0.82042497 -0.28547701\n\t\t 0.58133101 0.76194298 -0.54910499 0.32521501 0.76988202 -0.600995 0.37704101 0.70473099\n\t\t -0.54910499 0.32521501 0.76988202 -0.28547701 0.58133101 0.76194298 -0.28547701 0.58133101\n\t\t 0.76194298 -0.33571601 0.63639599 0.694475 -0.600995 0.37704101 0.70473099 -0.65655601\n\t\t 0.40980899 0.63323897 -0.600995 0.37704101 0.70473099 -0.33571601 0.63639599 0.694475\n\t\t -0.33571601 0.63639599 0.694475 -0.392663 0.67731798 0.62213898 -0.65655601 0.40980899\n\t\t 0.63323897 -0.702245 0.425161 0.57104301 -0.65655601 0.40980899 0.63323897 -0.392663\n\t\t 0.67731798 0.62213898 -0.392663 0.67731798 0.62213898 -0.44499701 0.70343 0.554223\n\t\t -0.702245 0.425161 0.57104301 -0.44499701 0.70343 0.554223 -0.392663 0.67731798 0.62213898\n\t\t -0.085974 0.84160602 0.53320599 -0.085974 0.84160602 0.53320599 -0.139533 0.872262\n\t\t 0.46871001 -0.44499701 0.70343 0.554223 -0.031129999 0.801673 0.59695202 -0.085974\n\t\t 0.84160602 0.53320599 -0.392663 0.67731798 0.62213898 -0.392663 0.67731798 0.62213898\n\t\t -0.33571601 0.63639599 0.694475 -0.031129999 0.801673 0.59695202 0.015869999 0.75394702\n\t\t 0.65674299 -0.031129999 0.801673 0.59695202 -0.33571601 0.63639599 0.694475 -0.33571601\n\t\t 0.63639599 0.694475 -0.28547701 0.58133101 0.76194298 0.015869999 0.75394702 0.65674299\n\t\t 0.049837999 0.69977498 0.712623 0.015869999 0.75394702 0.65674299 -0.28547701 0.58133101\n\t\t 0.76194298 -0.28547701 0.58133101 0.76194298 -0.24723899 0.515535 0.82042497 0.049837999\n\t\t 0.69977498 0.712623 0.015869999 0.75394702 0.65674299 0.049837999 0.69977498 0.712623\n\t\t 0.35225099 0.78861302 0.50399202 0.35225099 0.78861302 0.50399202 0.32588699 0.82347798\n\t\t 0.46441501 0.015869999 0.75394702 0.65674299 -0.031129999 0.801673 0.59695202 0.015869999\n\t\t 0.75394702 0.65674299 0.32588699 0.82347798 0.46441501 0.32588699 0.82347798 0.46441501\n\t\t 0.284897 0.85841399 0.42656699 -0.031129999 0.801673 0.59695202 -0.085974 0.84160602\n\t\t 0.53320599 -0.031129999 0.801673 0.59695202 0.284897 0.85841399 0.42656699 0.284897\n\t\t 0.85841399 0.42656699 0.23517901 0.89283198 0.384112 -0.085974 0.84160602 0.53320599\n\t\t -0.139533 0.872262 0.46871001 -0.085974 0.84160602 0.53320599 0.23517901 0.89283198\n\t\t 0.384112 0.23517901 0.89283198 0.384112 0.18460999 0.92454797 0.333361 -0.139533\n\t\t 0.872262 0.46871001 -0.27165201 0.90318602 -0.33235499 -0.25715199 0.905312 -0.33805799\n\t\t 0.046266001 0.99344802 -0.104496 0.046266001 0.99344802 -0.104496 0.050783999 0.99080902\n\t\t -0.12537301 -0.27165201 0.90318602 -0.33235499 0.046266001 0.99344802 -0.104496 -0.25715199\n\t\t 0.905312 -0.33805799 -0.301011 0.91283 -0.275924 -0.301011 0.91283 -0.275924 0.001831\n\t\t 0.99934298 -0.036196001 0.046266001 0.99344802 -0.104496 0.001831 0.99934298 -0.036196001\n\t\t -0.301011 0.91283 -0.275924 -0.37148201 0.91011697 -0.183543 -0.37148201 0.91011697\n\t\t -0.183543 -0.070165001 0.99585199 0.057925999 0.001831 0.99934298 -0.036196001 -0.608468\n\t\t 0.68708599 -0.39708999 -0.37148201 0.91011697 -0.183543 -0.301011 0.91283 -0.275924\n\t\t -0.301011 0.91283 -0.275924 -0.55178797 0.68570602 -0.47469601 -0.608468 0.68708599\n\t\t -0.39708999 -0.55178797 0.68570602 -0.47469601 -0.301011 0.91283 -0.275924 -0.25715199\n\t\t 0.905312 -0.33805799 -0.25715199 0.905312 -0.33805799 -0.51886201 0.67622 -0.522982\n\t\t -0.55178797 0.68570602 -0.47469601 -0.51886201 0.67622 -0.522982 -0.25715199 0.905312\n\t\t -0.33805799 -0.27165201 0.90318602 -0.33235499 -0.27165201 0.90318602 -0.33235499\n\t\t -0.55242699 0.66855198 -0.497859 -0.51886201 0.67622 -0.522982 -0.69472402 0.34664401\n\t\t -0.63023502 -0.51886201 0.67622 -0.522982 -0.55242699 0.66855198 -0.497859 -0.55242699\n\t\t 0.66855198 -0.497859 -0.74079901 0.33507299 -0.58218902 -0.69472402 0.34664401 -0.63023502\n\t\t -0.51886201 0.67622 -0.522982 -0.69472402 0.34664401 -0.63023502 -0.71131998 0.358147\n\t\t -0.60477602 -0.71131998 0.358147 -0.60477602 -0.55178797 0.68570602 -0.47469601 -0.51886201\n\t\t 0.67622 -0.522982 -0.55178797 0.68570602 -0.47469601 -0.71131998 0.358147 -0.60477602\n\t\t -0.74663001 0.366631 -0.55509001 -0.74663001 0.366631 -0.55509001 -0.608468 0.68708599\n\t\t -0.39708999 -0.55178797 0.68570602 -0.47469601 -0.77091497 -0.001587 -0.63693601\n\t\t -0.74663001 0.366631 -0.55509001 -0.71131998 0.358147 -0.60477602 -0.71131998 0.358147\n\t\t -0.60477602 -0.76066202 -0.016755 -0.64893103 -0.77091497 -0.001587 -0.63693601;\n\tsetAttr \".n[40338:40503]\" -type \"float3\"  -0.76066202 -0.016755 -0.64893103 -0.71131998\n\t\t 0.358147 -0.60477602 -0.69472402 0.34664401 -0.63023502 -0.69472402 0.34664401 -0.63023502\n\t\t -0.76455498 -0.030122001 -0.64385402 -0.76066202 -0.016755 -0.64893103 -0.76455498\n\t\t -0.030122001 -0.64385402 -0.69472402 0.34664401 -0.63023502 -0.74079901 0.33507299\n\t\t -0.58218902 -0.74079901 0.33507299 -0.58218902 -0.81965798 -0.04349 -0.57120001 -0.76455498\n\t\t -0.030122001 -0.64385402 -0.723239 -0.402363 -0.56127501 -0.76455498 -0.030122001\n\t\t -0.64385402 -0.81965798 -0.04349 -0.57120001 -0.81965798 -0.04349 -0.57120001 -0.77994502\n\t\t -0.41609699 -0.467491 -0.723239 -0.402363 -0.56127501 -0.76455498 -0.030122001 -0.64385402\n\t\t -0.723239 -0.402363 -0.56127501 -0.69912601 -0.38878 -0.600061 -0.69912601 -0.38878\n\t\t -0.600061 -0.76066202 -0.016755 -0.64893103 -0.76455498 -0.030122001 -0.64385402\n\t\t -0.76066202 -0.016755 -0.64893103 -0.69912601 -0.38878 -0.600061 -0.68278402 -0.37081301\n\t\t -0.62952697 -0.68278402 -0.37081301 -0.62952697 -0.77091497 -0.001587 -0.63693601\n\t\t -0.76066202 -0.016755 -0.64893103 -0.49444199 -0.69208503 -0.525877 -0.68278402 -0.37081301\n\t\t -0.62952697 -0.69912601 -0.38878 -0.600061 -0.69912601 -0.38878 -0.600061 -0.53628802\n\t\t -0.70838797 -0.458891 -0.49444199 -0.69208503 -0.525877 -0.53628802 -0.70838797 -0.458891\n\t\t -0.69912601 -0.38878 -0.600061 -0.723239 -0.402363 -0.56127501 -0.723239 -0.402363\n\t\t -0.56127501 -0.57510799 -0.71839797 -0.39135101 -0.53628802 -0.70838797 -0.458891\n\t\t -0.57510799 -0.71839797 -0.39135101 -0.723239 -0.402363 -0.56127501 -0.77994502 -0.41609699\n\t\t -0.467491 -0.77994502 -0.41609699 -0.467491 -0.61832201 -0.72981 -0.29164299 -0.57510799\n\t\t -0.71839797 -0.39135101 -0.33635601 -0.92855698 -0.156992 -0.57510799 -0.71839797\n\t\t -0.39135101 -0.61832201 -0.72981 -0.29164299 -0.61832201 -0.72981 -0.29164299 -0.353782\n\t\t -0.93188298 -0.080205001 -0.33635601 -0.92855698 -0.156992 -0.57510799 -0.71839797\n\t\t -0.39135101 -0.33635601 -0.92855698 -0.156992 -0.29105699 -0.92664099 -0.237955 -0.29105699\n\t\t -0.92664099 -0.237955 -0.53628802 -0.70838797 -0.458891 -0.57510799 -0.71839797 -0.39135101\n\t\t -0.53628802 -0.70838797 -0.458891 -0.29105699 -0.92664099 -0.237955 -0.228709 -0.91569102\n\t\t -0.330459 -0.228709 -0.91569102 -0.330459 -0.49444199 -0.69208503 -0.525877 -0.53628802\n\t\t -0.70838797 -0.458891 0.075322002 -0.99464899 -0.070712999 -0.228709 -0.91569102\n\t\t -0.330459 -0.29105699 -0.92664099 -0.237955 -0.29105699 -0.92664099 -0.237955 0.002533\n\t\t -0.99957502 0.029022999 0.075322002 -0.99464899 -0.070712999 0.002533 -0.99957502\n\t\t 0.029022999 -0.29105699 -0.92664099 -0.237955 -0.33635601 -0.92855698 -0.156992 -0.33635601\n\t\t -0.92855698 -0.156992 -0.040346 -0.99389702 0.102668 0.002533 -0.99957502 0.029022999\n\t\t -0.040346 -0.99389702 0.102668 -0.33635601 -0.92855698 -0.156992 -0.353782 -0.93188298\n\t\t -0.080205001 -0.353782 -0.93188298 -0.080205001 -0.027101001 -0.99120599 0.12952401\n\t\t -0.040346 -0.99389702 0.102668 -0.68278402 -0.37081301 -0.62952697 -0.49444199 -0.69208503\n\t\t -0.525877 -0.473382 -0.68051499 -0.55929297 -0.473382 -0.68051499 -0.55929297 -0.68952602\n\t\t -0.36290699 -0.62677902 -0.68278402 -0.37081301 -0.62952697 -0.77091497 -0.001587\n\t\t -0.63693601 -0.68278402 -0.37081301 -0.62952697 -0.68952602 -0.36290699 -0.62677902\n\t\t -0.68952602 -0.36290699 -0.62677902 -0.80063498 0.002289 -0.59914798 -0.77091497\n\t\t -0.001587 -0.63693601 -0.74663001 0.366631 -0.55509001 -0.77091497 -0.001587 -0.63693601\n\t\t -0.80063498 0.002289 -0.59914798 -0.80063498 0.002289 -0.59914798 -0.79371899 0.36382201\n\t\t -0.48748699 -0.74663001 0.366631 -0.55509001 -0.608468 0.68708599 -0.39708999 -0.74663001\n\t\t 0.366631 -0.55509001 -0.79371899 0.36382201 -0.48748699 -0.79371899 0.36382201 -0.48748699\n\t\t -0.66959 0.675358 -0.30909801 -0.608468 0.68708599 -0.39708999 -0.37148201 0.91011697\n\t\t -0.183543 -0.608468 0.68708599 -0.39708999 -0.66959 0.675358 -0.30909801 -0.66959\n\t\t 0.675358 -0.30909801 -0.44206801 0.892802 -0.086491004 -0.37148201 0.91011697 -0.183543\n\t\t -0.070165001 0.99585199 0.057925999 -0.37148201 0.91011697 -0.183543 -0.44206801\n\t\t 0.892802 -0.086491004 -0.44206801 0.892802 -0.086491004 -0.14097001 0.97824401 0.152201\n\t\t -0.070165001 0.99585199 0.057925999 -0.14097001 0.97824401 0.152201 -0.44206801 0.892802\n\t\t -0.086491004 -0.48199001 0.87605298 -0.014741 -0.48199001 0.87605298 -0.014741 -0.17335001\n\t\t 0.96260798 0.20817199 -0.14097001 0.97824401 0.152201 -0.17335001 0.96260798 0.20817199\n\t\t -0.48199001 0.87605298 -0.014741 -0.49468899 0.86861199 0.02823 -0.49468899 0.86861199\n\t\t 0.02823 -0.168038 0.96189702 0.21567801 -0.17335001 0.96260798 0.20817199 -0.168038\n\t\t 0.96189702 0.21567801 -0.49468899 0.86861199 0.02823 -0.48870301 0.87190098 0.030946\n\t\t -0.48870301 0.87190098 0.030946 -0.13697 0.97914702 0.150032 -0.168038 0.96189702\n\t\t 0.21567801 -0.767263 0.63669997 -0.07694 -0.48870301 0.87190098 0.030946 -0.49468899\n\t\t 0.86861199 0.02823 -0.49468899 0.86861199 0.02823 -0.746934 0.64771497 -0.150186\n\t\t -0.767263 0.63669997 -0.07694 -0.746934 0.64771497 -0.150186 -0.49468899 0.86861199\n\t\t 0.02823 -0.48199001 0.87605298 -0.014741 -0.48199001 0.87605298 -0.014741 -0.71491897\n\t\t 0.661143 -0.227553 -0.746934 0.64771497 -0.150186 -0.71491897 0.661143 -0.227553\n\t\t -0.48199001 0.87605298 -0.014741 -0.44206801 0.892802 -0.086491004 -0.44206801 0.892802\n\t\t -0.086491004 -0.66959 0.675358 -0.30909801 -0.71491897 0.661143 -0.227553 -0.66959\n\t\t 0.675358 -0.30909801 -0.79371899 0.36382201 -0.48748699 -0.84419101 0.353625 -0.40285301\n\t\t -0.84419101 0.353625 -0.40285301 -0.71491897 0.661143 -0.227553 -0.66959 0.675358\n\t\t -0.30909801 -0.71491897 0.661143 -0.227553 -0.84419101 0.353625 -0.40285301 -0.894876\n\t\t 0.334548 -0.295423 -0.894876 0.334548 -0.295423;\n\tsetAttr \".n[40504:40669]\" -type \"float3\"  -0.746934 0.64771497 -0.150186 -0.71491897\n\t\t 0.661143 -0.227553 -0.746934 0.64771497 -0.150186 -0.894876 0.334548 -0.295423 -0.93739003\n\t\t 0.310164 -0.158424 -0.93739003 0.310164 -0.158424 -0.767263 0.63669997 -0.07694 -0.746934\n\t\t 0.64771497 -0.150186 -0.97580999 -0.067446999 -0.207956 -0.93739003 0.310164 -0.158424\n\t\t -0.894876 0.334548 -0.295423 -0.894876 0.334548 -0.295423 -0.91896701 -0.032442 -0.392997\n\t\t -0.97580999 -0.067446999 -0.207956 -0.91896701 -0.032442 -0.392997 -0.894876 0.334548\n\t\t -0.295423 -0.84419101 0.353625 -0.40285301 -0.84419101 0.353625 -0.40285301 -0.85385501\n\t\t -0.0066840001 -0.520468 -0.91896701 -0.032442 -0.392997 -0.85385501 -0.0066840001\n\t\t -0.520468 -0.84419101 0.353625 -0.40285301 -0.79371899 0.36382201 -0.48748699 -0.79371899\n\t\t 0.36382201 -0.48748699 -0.80063498 0.002289 -0.59914798 -0.85385501 -0.0066840001\n\t\t -0.520468 -0.737046 -0.372796 -0.56372601 -0.85385501 -0.0066840001 -0.520468 -0.80063498\n\t\t 0.002289 -0.59914798 -0.80063498 0.002289 -0.59914798 -0.68952602 -0.36290699 -0.62677902\n\t\t -0.737046 -0.372796 -0.56372601 -0.85385501 -0.0066840001 -0.520468 -0.737046 -0.372796\n\t\t -0.56372601 -0.80671799 -0.40334401 -0.43187901 -0.80671799 -0.40334401 -0.43187901\n\t\t -0.91896701 -0.032442 -0.392997 -0.85385501 -0.0066840001 -0.520468 -0.91896701 -0.032442\n\t\t -0.392997 -0.80671799 -0.40334401 -0.43187901 -0.86885297 -0.441706 -0.223584 -0.86885297\n\t\t -0.441706 -0.223584 -0.97580999 -0.067446999 -0.207956 -0.91896701 -0.032442 -0.392997\n\t\t -0.62516201 -0.75248998 -0.207197 -0.86885297 -0.441706 -0.223584 -0.80671799 -0.40334401\n\t\t -0.43187901 -0.80671799 -0.40334401 -0.43187901 -0.56466198 -0.718265 -0.40651301\n\t\t -0.62516201 -0.75248998 -0.207197 -0.56466198 -0.718265 -0.40651301 -0.80671799 -0.40334401\n\t\t -0.43187901 -0.737046 -0.372796 -0.56372601 -0.737046 -0.372796 -0.56372601 -0.50326502\n\t\t -0.68876302 -0.52185202 -0.56466198 -0.718265 -0.40651301 -0.50326502 -0.68876302\n\t\t -0.52185202 -0.737046 -0.372796 -0.56372601 -0.68952602 -0.36290699 -0.62677902 -0.68952602\n\t\t -0.36290699 -0.62677902 -0.473382 -0.68051499 -0.55929297 -0.50326502 -0.68876302\n\t\t -0.52185202 -0.18625601 -0.89865798 -0.39714199 -0.50326502 -0.68876302 -0.52185202\n\t\t -0.473382 -0.68051499 -0.55929297 -0.473382 -0.68051499 -0.55929297 -0.18128499 -0.899104\n\t\t -0.39843199 -0.18625601 -0.89865798 -0.39714199 -0.18128499 -0.899104 -0.39843199\n\t\t -0.473382 -0.68051499 -0.55929297 -0.49444199 -0.69208503 -0.525877 -0.49444199 -0.69208503\n\t\t -0.525877 -0.228709 -0.91569102 -0.330459 -0.18128499 -0.899104 -0.39843199 -0.50326502\n\t\t -0.68876302 -0.52185202 -0.18625601 -0.89865798 -0.39714199 -0.22923 -0.91881198\n\t\t -0.32130599 -0.22923 -0.91881198 -0.32130599 -0.56466198 -0.718265 -0.40651301 -0.50326502\n\t\t -0.68876302 -0.52185202 -0.56466198 -0.718265 -0.40651301 -0.22923 -0.91881198 -0.32130599\n\t\t -0.282271 -0.94511598 -0.16455901 -0.282271 -0.94511598 -0.16455901 -0.62516201 -0.75248998\n\t\t -0.207197 -0.56466198 -0.718265 -0.40651301 0.09928 -0.989685 -0.103278 -0.282271\n\t\t -0.94511598 -0.16455901 -0.22923 -0.91881198 -0.32130599 -0.22923 -0.91881198 -0.32130599\n\t\t 0.137611 -0.97191 -0.190927 0.09928 -0.989685 -0.103278 0.137611 -0.97191 -0.190927\n\t\t -0.22923 -0.91881198 -0.32130599 -0.18625601 -0.89865798 -0.39714199 -0.18625601\n\t\t -0.89865798 -0.39714199 0.15784401 -0.965128 -0.20884 0.137611 -0.97191 -0.190927\n\t\t 0.15784401 -0.965128 -0.20884 -0.18625601 -0.89865798 -0.39714199 -0.18128499 -0.899104\n\t\t -0.39843199 -0.18128499 -0.899104 -0.39843199 0.139562 -0.97613901 -0.166357 0.15784401\n\t\t -0.965128 -0.20884 0.139562 -0.97613901 -0.166357 -0.18128499 -0.899104 -0.39843199\n\t\t -0.228709 -0.91569102 -0.330459 -0.228709 -0.91569102 -0.330459 0.075322002 -0.99464899\n\t\t -0.070712999 0.139562 -0.97613901 -0.166357 0.43446499 -0.89566398 0.095004998 0.139562\n\t\t -0.97613901 -0.166357 0.075322002 -0.99464899 -0.070712999 0.075322002 -0.99464899\n\t\t -0.070712999 0.365372 -0.90869898 0.201913 0.43446499 -0.89566398 0.095004998 0.139562\n\t\t -0.97613901 -0.166357 0.43446499 -0.89566398 0.095004998 0.47148499 -0.88177902 0.01291\n\t\t 0.47148499 -0.88177902 0.01291 0.15784401 -0.965128 -0.20884 0.139562 -0.97613901\n\t\t -0.166357 0.47659099 -0.878501 -0.033112999 0.137611 -0.97191 -0.190927 0.15784401\n\t\t -0.965128 -0.20884 0.15784401 -0.965128 -0.20884 0.47148499 -0.88177902 0.01291 0.47659099\n\t\t -0.878501 -0.033112999 0.46080801 -0.88703603 -0.028688001 0.09928 -0.989685 -0.103278\n\t\t 0.137611 -0.97191 -0.190927 0.137611 -0.97191 -0.190927 0.47659099 -0.878501 -0.033112999\n\t\t 0.46080801 -0.88703603 -0.028688001 -0.282271 -0.94511598 -0.16455901 0.09928 -0.989685\n\t\t -0.103278 0.074132003 -0.99700397 0.022066001 0.074132003 -0.99700397 0.022066001\n\t\t -0.31035101 -0.95028001 0.025513999 -0.282271 -0.94511598 -0.16455901 -0.62516201\n\t\t -0.75248998 -0.207197 -0.282271 -0.94511598 -0.16455901 -0.31035101 -0.95028001 0.025513999\n\t\t -0.31035101 -0.95028001 0.025513999 -0.64911097 -0.760414 0.020631 -0.62516201 -0.75248998\n\t\t -0.207197 -0.86885297 -0.441706 -0.223584 -0.62516201 -0.75248998 -0.207197 -0.64911097\n\t\t -0.760414 0.020631 -0.64911097 -0.760414 0.020631 -0.88961899 -0.45662099 0.0086669996\n\t\t -0.86885297 -0.441706 -0.223584 -0.97580999 -0.067446999 -0.207956 -0.86885297 -0.441706\n\t\t -0.223584 -0.88961899 -0.45662099 0.0086669996 -0.88961899 -0.45662099 0.0086669996\n\t\t -0.99631 -0.085635997 -0.0056759999 -0.97580999 -0.067446999 -0.207956 -0.93739003\n\t\t 0.310164 -0.158424 -0.97580999 -0.067446999 -0.207956 -0.99631 -0.085635997 -0.0056759999\n\t\t -0.99631 -0.085635997 -0.0056759999 -0.954579 0.29753101 -0.015930999 -0.93739003\n\t\t 0.310164 -0.158424 -0.767263 0.63669997 -0.07694 -0.93739003 0.310164 -0.158424;\n\tsetAttr \".n[40670:40835]\" -type \"float3\"  -0.954579 0.29753101 -0.015930999 -0.954579\n\t\t 0.29753101 -0.015930999 -0.771972 0.63546097 -0.015748 -0.767263 0.63669997 -0.07694\n\t\t -0.48870301 0.87190098 0.030946 -0.767263 0.63669997 -0.07694 -0.771972 0.63546097\n\t\t -0.015748 -0.771972 0.63546097 -0.015748 -0.473351 0.88087302 -0.001434 -0.48870301\n\t\t 0.87190098 0.030946 -0.13697 0.97914702 0.150032 -0.48870301 0.87190098 0.030946\n\t\t -0.473351 0.88087302 -0.001434 -0.473351 0.88087302 -0.001434 -0.101963 0.99448299\n\t\t 0.024629001 -0.13697 0.97914702 0.150032 -0.101963 0.99448299 0.024629001 -0.473351\n\t\t 0.88087302 -0.001434 -0.46605599 0.88294399 -0.056582 -0.46605599 0.88294399 -0.056582\n\t\t -0.092074998 0.98800898 -0.123936 -0.101963 0.99448299 0.024629001 -0.092074998 0.98800898\n\t\t -0.123936 -0.46605599 0.88294399 -0.056582 -0.47549301 0.87035298 -0.128029 -0.47549301\n\t\t 0.87035298 -0.128029 -0.116857 0.95326 -0.27863801 -0.092074998 0.98800898 -0.123936\n\t\t -0.116857 0.95326 -0.27863801 -0.47549301 0.87035298 -0.128029 -0.50494403 0.83818603\n\t\t -0.20609801 -0.50494403 0.83818603 -0.20609801 -0.17392901 0.88984799 -0.42180601\n\t\t -0.116857 0.95326 -0.27863801 -0.75905299 0.65006697 0.035372 -0.50494403 0.83818603\n\t\t -0.20609801 -0.47549301 0.87035298 -0.128029 -0.47549301 0.87035298 -0.128029 -0.76081097\n\t\t 0.64785999 0.037996002 -0.75905299 0.65006697 0.035372 -0.76081097 0.64785999 0.037996002\n\t\t -0.47549301 0.87035298 -0.128029 -0.46605599 0.88294399 -0.056582 -0.46605599 0.88294399\n\t\t -0.056582 -0.76744401 0.64072698 0.02234 -0.76081097 0.64785999 0.037996002 -0.76744401\n\t\t 0.64072698 0.02234 -0.46605599 0.88294399 -0.056582 -0.473351 0.88087302 -0.001434\n\t\t -0.473351 0.88087302 -0.001434 -0.771972 0.63546097 -0.015748 -0.76744401 0.64072698\n\t\t 0.02234 -0.771972 0.63546097 -0.015748 -0.954579 0.29753101 -0.015930999 -0.947532\n\t\t 0.30320901 0.101232 -0.947532 0.30320901 0.101232 -0.76744401 0.64072698 0.02234\n\t\t -0.771972 0.63546097 -0.015748 -0.76744401 0.64072698 0.02234 -0.947532 0.30320901\n\t\t 0.101232 -0.92511898 0.326765 0.19333699 -0.92511898 0.326765 0.19333699 -0.76081097\n\t\t 0.64785999 0.037996002 -0.76744401 0.64072698 0.02234 -0.76081097 0.64785999 0.037996002\n\t\t -0.92511898 0.326765 0.19333699 -0.89448601 0.36143801 0.26316699 -0.89448601 0.36143801\n\t\t 0.26316699 -0.75905299 0.65006697 0.035372 -0.76081097 0.64785999 0.037996002 -0.89439797\n\t\t 0.02115 0.44677201 -0.89448601 0.36143801 0.26316699 -0.92511898 0.326765 0.19333699\n\t\t -0.92511898 0.326765 0.19333699 -0.94755399 -0.039186999 0.317184 -0.89439797 0.02115\n\t\t 0.44677201 -0.94755399 -0.039186999 0.317184 -0.92511898 0.326765 0.19333699 -0.947532\n\t\t 0.30320901 0.101232 -0.947532 0.30320901 0.101232 -0.98283201 -0.076328002 0.16797601\n\t\t -0.94755399 -0.039186999 0.317184 -0.98283201 -0.076328002 0.16797601 -0.947532 0.30320901\n\t\t 0.101232 -0.954579 0.29753101 -0.015930999 -0.954579 0.29753101 -0.015930999 -0.99631\n\t\t -0.085635997 -0.0056759999 -0.98283201 -0.076328002 0.16797601 -0.87276697 -0.43990901\n\t\t 0.21156099 -0.98283201 -0.076328002 0.16797601 -0.99631 -0.085635997 -0.0056759999\n\t\t -0.99631 -0.085635997 -0.0056759999 -0.88961899 -0.45662099 0.0086669996 -0.87276697\n\t\t -0.43990901 0.21156099 -0.98283201 -0.076328002 0.16797601 -0.87276697 -0.43990901\n\t\t 0.21156099 -0.83065701 -0.393217 0.39419401 -0.83065701 -0.393217 0.39419401 -0.94755399\n\t\t -0.039186999 0.317184 -0.98283201 -0.076328002 0.16797601 -0.94755399 -0.039186999\n\t\t 0.317184 -0.83065701 -0.393217 0.39419401 -0.76296502 -0.317132 0.56330401 -0.76296502\n\t\t -0.317132 0.56330401 -0.89439797 0.02115 0.44677201 -0.94755399 -0.039186999 0.317184\n\t\t -0.52047998 -0.60755301 0.59998399 -0.76296502 -0.317132 0.56330401 -0.83065701 -0.393217\n\t\t 0.39419401 -0.83065701 -0.393217 0.39419401 -0.59430701 -0.68833798 0.415921 -0.52047998\n\t\t -0.60755301 0.59998399 -0.59430701 -0.68833798 0.415921 -0.83065701 -0.393217 0.39419401\n\t\t -0.87276697 -0.43990901 0.21156099 -0.87276697 -0.43990901 0.21156099 -0.63626701\n\t\t -0.737988 0.224806 -0.59430701 -0.68833798 0.415921 -0.63626701 -0.737988 0.224806\n\t\t -0.87276697 -0.43990901 0.21156099 -0.88961899 -0.45662099 0.0086669996 -0.88961899\n\t\t -0.45662099 0.0086669996 -0.64911097 -0.760414 0.020631 -0.63626701 -0.737988 0.224806\n\t\t -0.30625701 -0.92978901 0.204202 -0.63626701 -0.737988 0.224806 -0.64911097 -0.760414\n\t\t 0.020631 -0.64911097 -0.760414 0.020631 -0.31035101 -0.95028001 0.025513999 -0.30625701\n\t\t -0.92978901 0.204202 -0.63626701 -0.737988 0.224806 -0.30625701 -0.92978901 0.204202\n\t\t -0.27048901 -0.88508099 0.37877101 -0.27048901 -0.88508099 0.37877101 -0.59430701\n\t\t -0.68833798 0.415921 -0.63626701 -0.737988 0.224806 -0.59430701 -0.68833798 0.415921\n\t\t -0.27048901 -0.88508099 0.37877101 -0.200207 -0.80986398 0.551395 -0.200207 -0.80986398\n\t\t 0.551395 -0.52047998 -0.60755301 0.59998399 -0.59430701 -0.68833798 0.415921 0.15326899\n\t\t -0.894068 0.420894 -0.200207 -0.80986398 0.551395 -0.27048901 -0.88508099 0.37877101\n\t\t -0.27048901 -0.88508099 0.37877101 0.097358003 -0.953646 0.28474799 0.15326899 -0.894068\n\t\t 0.420894 0.097358003 -0.953646 0.28474799 -0.27048901 -0.88508099 0.37877101 -0.30625701\n\t\t -0.92978901 0.204202 -0.30625701 -0.92978901 0.204202 0.071811996 -0.98592502 0.150979\n\t\t 0.097358003 -0.953646 0.28474799 0.071811996 -0.98592502 0.150979 -0.30625701 -0.92978901\n\t\t 0.204202 -0.31035101 -0.95028001 0.025513999 -0.31035101 -0.95028001 0.025513999\n\t\t 0.074132003 -0.99700397 0.022066001 0.071811996 -0.98592502 0.150979 0.44371599 -0.893291\n\t\t 0.07175 0.071811996 -0.98592502 0.150979 0.074132003 -0.99700397 0.022066001 0.074132003\n\t\t -0.99700397 0.022066001 0.44762501 -0.89412099 0.013398 0.44371599 -0.893291 0.07175;\n\tsetAttr \".n[40836:41001]\" -type \"float3\"  0.45571399 -0.878528 0.143227 0.097358003\n\t\t -0.953646 0.28474799 0.071811996 -0.98592502 0.150979 0.071811996 -0.98592502 0.150979\n\t\t 0.44371599 -0.893291 0.07175 0.45571399 -0.878528 0.143227 0.487207 -0.84446299 0.222515\n\t\t 0.15326899 -0.894068 0.420894 0.097358003 -0.953646 0.28474799 0.097358003 -0.953646\n\t\t 0.28474799 0.45571399 -0.878528 0.143227 0.487207 -0.84446299 0.222515 -0.200207\n\t\t -0.80986398 0.551395 0.15326899 -0.894068 0.420894 0.227825 -0.81232703 0.53686202\n\t\t 0.227825 -0.81232703 0.53686202 -0.106634 -0.70844102 0.69766802 -0.200207 -0.80986398\n\t\t 0.551395 -0.52047998 -0.60755301 0.59998399 -0.200207 -0.80986398 0.551395 -0.106634\n\t\t -0.70844102 0.69766802 -0.106634 -0.70844102 0.69766802 -0.422389 -0.50116003 0.755265\n\t\t -0.52047998 -0.60755301 0.59998399 -0.76296502 -0.317132 0.56330401 -0.52047998 -0.60755301\n\t\t 0.59998399 -0.422389 -0.50116003 0.755265 -0.422389 -0.50116003 0.755265 -0.67496198\n\t\t -0.22019599 0.70423001 -0.76296502 -0.317132 0.56330401 -0.89439797 0.02115 0.44677201\n\t\t -0.76296502 -0.317132 0.56330401 -0.67496198 -0.22019599 0.70423001 -0.67496198 -0.22019599\n\t\t 0.70423001 -0.82889402 0.095279999 0.55123299 -0.89439797 0.02115 0.44677201 -0.89448601\n\t\t 0.36143801 0.26316699 -0.89439797 0.02115 0.44677201 -0.82889402 0.095279999 0.55123299\n\t\t -0.82889402 0.095279999 0.55123299 -0.86060899 0.40096 0.313981 -0.89448601 0.36143801\n\t\t 0.26316699 -0.75905299 0.65006697 0.035372 -0.89448601 0.36143801 0.26316699 -0.86060899\n\t\t 0.40096 0.313981 -0.86060899 0.40096 0.313981 -0.76188201 0.64725202 0.024506999\n\t\t -0.75905299 0.65006697 0.035372 -0.50494403 0.83818603 -0.20609801 -0.75905299 0.65006697\n\t\t 0.035372 -0.76188201 0.64725202 0.024506999 -0.76188201 0.64725202 0.024506999 -0.54516\n\t\t 0.79178298 -0.275464 -0.50494403 0.83818603 -0.20609801 -0.17392901 0.88984799 -0.42180601\n\t\t -0.50494403 0.83818603 -0.20609801 -0.54516 0.79178298 -0.275464 -0.54516 0.79178298\n\t\t -0.275464 -0.246198 0.80765802 -0.53579402 -0.17392901 0.88984799 -0.42180601 -0.246198\n\t\t 0.80765802 -0.53579402 -0.54516 0.79178298 -0.275464 -0.58764797 0.740426 -0.32624999\n\t\t -0.58764797 0.740426 -0.32624999 -0.319143 0.72017002 -0.61603802 -0.246198 0.80765802\n\t\t -0.53579402 -0.319143 0.72017002 -0.61603802 -0.58764797 0.740426 -0.32624999 -0.62982702\n\t\t 0.68796599 -0.360585 -0.62982702 0.68796599 -0.360585 -0.389063 0.63273102 -0.66953802\n\t\t -0.319143 0.72017002 -0.61603802 -0.389063 0.63273102 -0.66953802 -0.62982702 0.68796599\n\t\t -0.360585 -0.67117703 0.63656801 -0.37987199 -0.67117703 0.63656801 -0.37987199 -0.45659599\n\t\t 0.54815298 -0.70074898 -0.389063 0.63273102 -0.66953802 -0.78119498 0.62426603 0.0050969999\n\t\t -0.67117703 0.63656801 -0.37987199 -0.62982702 0.68796599 -0.360585 -0.62982702 0.68796599\n\t\t -0.360585 -0.773633 0.63357902 0.0083619999 -0.78119498 0.62426603 0.0050969999 -0.773633\n\t\t 0.63357902 0.0083619999 -0.62982702 0.68796599 -0.360585 -0.58764797 0.740426 -0.32624999\n\t\t -0.58764797 0.740426 -0.32624999 -0.76698399 0.64148802 0.015138 -0.773633 0.63357902\n\t\t 0.0083619999 -0.76698399 0.64148802 0.015138 -0.58764797 0.740426 -0.32624999 -0.54516\n\t\t 0.79178298 -0.275464 -0.54516 0.79178298 -0.275464 -0.76188201 0.64725202 0.024506999\n\t\t -0.76698399 0.64148802 0.015138 -0.76188201 0.64725202 0.024506999 -0.86060899 0.40096\n\t\t 0.313981 -0.82679999 0.440516 0.34978199 -0.82679999 0.440516 0.34978199 -0.76698399\n\t\t 0.64148802 0.015138 -0.76188201 0.64725202 0.024506999 -0.76698399 0.64148802 0.015138\n\t\t -0.82679999 0.440516 0.34978199 -0.79532999 0.47777799 0.37306699 -0.79532999 0.47777799\n\t\t 0.37306699 -0.773633 0.63357902 0.0083619999 -0.76698399 0.64148802 0.015138 -0.773633\n\t\t 0.63357902 0.0083619999 -0.79532999 0.47777799 0.37306699 -0.76701099 0.51196098\n\t\t 0.38677099 -0.76701099 0.51196098 0.38677099 -0.78119498 0.62426603 0.0050969999\n\t\t -0.773633 0.63357902 0.0083619999 -0.63516301 0.32106 0.70248801 -0.76701099 0.51196098\n\t\t 0.38677099 -0.79532999 0.47777799 0.37306699 -0.79532999 0.47777799 0.37306699 -0.69492197\n\t\t 0.249006 0.67459601 -0.63516301 0.32106 0.70248801 -0.69492197 0.249006 0.67459601\n\t\t -0.79532999 0.47777799 0.37306699 -0.82679999 0.440516 0.34978199 -0.82679999 0.440516\n\t\t 0.34978199 -0.76041597 0.17286 0.62600899 -0.69492197 0.249006 0.67459601 -0.76041597\n\t\t 0.17286 0.62600899 -0.82679999 0.440516 0.34978199 -0.86060899 0.40096 0.313981 -0.86060899\n\t\t 0.40096 0.313981 -0.82889402 0.095279999 0.55123299 -0.76041597 0.17286 0.62600899\n\t\t -0.58221602 -0.116523 0.80464101 -0.76041597 0.17286 0.62600899 -0.82889402 0.095279999\n\t\t 0.55123299 -0.82889402 0.095279999 0.55123299 -0.67496198 -0.22019599 0.70423001\n\t\t -0.58221602 -0.116523 0.80464101 -0.76041597 0.17286 0.62600899 -0.58221602 -0.116523\n\t\t 0.80464101 -0.49361601 -0.013123 0.86958098 -0.49361601 -0.013123 0.86958098 -0.69492197\n\t\t 0.249006 0.67459601 -0.76041597 0.17286 0.62600899 -0.69492197 0.249006 0.67459601\n\t\t -0.49361601 -0.013123 0.86958098 -0.412379 0.085638002 0.90697801 -0.412379 0.085638002\n\t\t 0.90697801 -0.63516301 0.32106 0.70248801 -0.69492197 0.249006 0.67459601 -0.133215\n\t\t -0.159523 0.97816497 -0.412379 0.085638002 0.90697801 -0.49361601 -0.013123 0.86958098\n\t\t -0.49361601 -0.013123 0.86958098 -0.223189 -0.27040201 0.93651998 -0.133215 -0.159523\n\t\t 0.97816497 -0.223189 -0.27040201 0.93651998 -0.49361601 -0.013123 0.86958098 -0.58221602\n\t\t -0.116523 0.80464101 -0.58221602 -0.116523 0.80464101 -0.32017499 -0.386004 0.86515301\n\t\t -0.223189 -0.27040201 0.93651998 -0.32017499 -0.386004 0.86515301 -0.58221602 -0.116523\n\t\t 0.80464101 -0.67496198 -0.22019599 0.70423001 -0.67496198 -0.22019599 0.70423001;\n\tsetAttr \".n[41002:41167]\" -type \"float3\"  -0.422389 -0.50116003 0.755265 -0.32017499\n\t\t -0.386004 0.86515301 -0.010956 -0.59858102 0.80098701 -0.32017499 -0.386004 0.86515301\n\t\t -0.422389 -0.50116003 0.755265 -0.422389 -0.50116003 0.755265 -0.106634 -0.70844102\n\t\t 0.69766802 -0.010956 -0.59858102 0.80098701 -0.32017499 -0.386004 0.86515301 -0.010956\n\t\t -0.59858102 0.80098701 0.079654001 -0.48820901 0.869084 0.079654001 -0.48820901 0.869084\n\t\t -0.223189 -0.27040201 0.93651998 -0.32017499 -0.386004 0.86515301 -0.223189 -0.27040201\n\t\t 0.93651998 0.079654001 -0.48820901 0.869084 0.16526 -0.38182199 0.90934098 0.16526\n\t\t -0.38182199 0.90934098 -0.133215 -0.159523 0.97816497 -0.223189 -0.27040201 0.93651998\n\t\t 0.44411901 -0.55078501 0.70667797 0.16526 -0.38182199 0.90934098 0.079654001 -0.48820901\n\t\t 0.869084 0.079654001 -0.48820901 0.869084 0.37483999 -0.63654399 0.67402202 0.44411901\n\t\t -0.55078501 0.70667797 0.37483999 -0.63654399 0.67402202 0.079654001 -0.48820901\n\t\t 0.869084 -0.010956 -0.59858102 0.80098701 -0.010956 -0.59858102 0.80098701 0.30302501\n\t\t -0.72458702 0.61899102 0.37483999 -0.63654399 0.67402202 0.30302501 -0.72458702 0.61899102\n\t\t -0.010956 -0.59858102 0.80098701 -0.106634 -0.70844102 0.69766802 -0.106634 -0.70844102\n\t\t 0.69766802 0.227825 -0.81232703 0.53686202 0.30302501 -0.72458702 0.61899102 0.57570899\n\t\t -0.74343997 0.340377 0.30302501 -0.72458702 0.61899102 0.227825 -0.81232703 0.53686202\n\t\t 0.227825 -0.81232703 0.53686202 0.53118801 -0.79554498 0.29145899 0.57570899 -0.74343997\n\t\t 0.340377 0.61902398 -0.69092703 0.373404 0.37483999 -0.63654399 0.67402202 0.30302501\n\t\t -0.72458702 0.61899102 0.30302501 -0.72458702 0.61899102 0.57570899 -0.74343997 0.340377\n\t\t 0.61902398 -0.69092703 0.373404 0.66166401 -0.63883501 0.39254299 0.44411901 -0.55078501\n\t\t 0.70667797 0.37483999 -0.63654399 0.67402202 0.37483999 -0.63654399 0.67402202 0.61902398\n\t\t -0.69092703 0.373404 0.66166401 -0.63883501 0.39254299 0.16526 -0.38182199 0.90934098\n\t\t 0.44411901 -0.55078501 0.70667797 0.51391101 -0.46715501 0.71948701 0.51391101 -0.46715501\n\t\t 0.71948701 0.25324699 -0.27628899 0.927109 0.16526 -0.38182199 0.90934098 -0.133215\n\t\t -0.159523 0.97816497 0.16526 -0.38182199 0.90934098 0.25324699 -0.27628899 0.927109\n\t\t 0.25324699 -0.27628899 0.927109 -0.040833998 -0.047212001 0.99804997 -0.133215 -0.159523\n\t\t 0.97816497 -0.412379 0.085638002 0.90697801 -0.133215 -0.159523 0.97816497 -0.040833998\n\t\t -0.047212001 0.99804997 -0.040833998 -0.047212001 0.99804997 -0.32902601 0.188547\n\t\t 0.92530698 -0.412379 0.085638002 0.90697801 -0.63516301 0.32106 0.70248801 -0.412379\n\t\t 0.085638002 0.90697801 -0.32902601 0.188547 0.92530698 -0.32902601 0.188547 0.92530698\n\t\t -0.57253999 0.39891601 0.71628499 -0.63516301 0.32106 0.70248801 -0.76701099 0.51196098\n\t\t 0.38677099 -0.63516301 0.32106 0.70248801 -0.57253999 0.39891601 0.71628499 -0.57253999\n\t\t 0.39891601 0.71628499 -0.73438197 0.55206102 0.39485699 -0.76701099 0.51196098 0.38677099\n\t\t -0.78119498 0.62426603 0.0050969999 -0.76701099 0.51196098 0.38677099 -0.73438197\n\t\t 0.55206102 0.39485699 -0.73438197 0.55206102 0.39485699 -0.78433198 0.62029397 0.0076600001\n\t\t -0.78119498 0.62426603 0.0050969999 -0.67117703 0.63656801 -0.37987199 -0.78119498\n\t\t 0.62426603 0.0050969999 -0.78433198 0.62029397 0.0076600001 -0.78433198 0.62029397\n\t\t 0.0076600001 -0.71076 0.590056 -0.382954 -0.67117703 0.63656801 -0.37987199 -0.45659599\n\t\t 0.54815298 -0.70074898 -0.67117703 0.63656801 -0.37987199 -0.71076 0.590056 -0.382954\n\t\t -0.71076 0.590056 -0.382954 -0.52651399 0.46745899 -0.71011603 -0.45659599 0.54815298\n\t\t -0.70074898 -0.52651399 0.46745899 -0.71011603 -0.71076 0.590056 -0.382954 -0.74688601\n\t\t 0.55006999 -0.373611 -0.74688601 0.55006999 -0.373611 -0.60163403 0.38680601 -0.69886899\n\t\t -0.52651399 0.46745899 -0.71011603 -0.60163403 0.38680601 -0.69886899 -0.74688601\n\t\t 0.55006999 -0.373611 -0.78069103 0.51443797 -0.35479 -0.78069103 0.51443797 -0.35479\n\t\t -0.68414497 0.302077 -0.663849 -0.60163403 0.38680601 -0.69886899 -0.68414497 0.302077\n\t\t -0.663849 -0.78069103 0.51443797 -0.35479 -0.81181002 0.482355 -0.329088 -0.81181002\n\t\t 0.482355 -0.329088 -0.77070999 0.21299499 -0.60053301 -0.68414497 0.302077 -0.663849\n\t\t -0.73346299 0.67968798 -0.0075690001 -0.81181002 0.482355 -0.329088 -0.78069103 0.51443797\n\t\t -0.35479 -0.78069103 0.51443797 -0.35479 -0.76056403 0.64920002 0.0090030003 -0.73346299\n\t\t 0.67968798 -0.0075690001 -0.76056403 0.64920002 0.0090030003 -0.78069103 0.51443797\n\t\t -0.35479 -0.74688601 0.55006999 -0.373611 -0.74688601 0.55006999 -0.373611 -0.77759498\n\t\t 0.62866098 0.011475 -0.76056403 0.64920002 0.0090030003 -0.77759498 0.62866098 0.011475\n\t\t -0.74688601 0.55006999 -0.373611 -0.71076 0.590056 -0.382954 -0.71076 0.590056 -0.382954\n\t\t -0.78433198 0.62029397 0.0076600001 -0.77759498 0.62866098 0.011475 -0.78433198 0.62029397\n\t\t 0.0076600001 -0.73438197 0.55206102 0.39485699 -0.68824297 0.60944098 0.39357799\n\t\t -0.68824297 0.60944098 0.39357799 -0.77759498 0.62866098 0.011475 -0.78433198 0.62029397\n\t\t 0.0076600001 -0.77759498 0.62866098 0.011475 -0.68824297 0.60944098 0.39357799 -0.625763\n\t\t 0.68561101 0.371966 -0.625763 0.68561101 0.371966 -0.76056403 0.64920002 0.0090030003\n\t\t -0.77759498 0.62866098 0.011475 -0.76056403 0.64920002 0.0090030003 -0.625763 0.68561101\n\t\t 0.371966 -0.54616702 0.77551597 0.31666401 -0.54616702 0.77551597 0.31666401 -0.73346299\n\t\t 0.67968798 -0.0075690001 -0.76056403 0.64920002 0.0090030003 -0.27409101 0.754246\n\t\t 0.59664601 -0.54616702 0.77551597 0.31666401 -0.625763 0.68561101 0.371966 -0.625763\n\t\t 0.68561101 0.371966 -0.39504001 0.61749399 0.68018001 -0.27409101 0.754246 0.59664601\n\t\t -0.39504001 0.61749399 0.68018001 -0.625763 0.68561101 0.371966;\n\tsetAttr \".n[41168:41333]\" -type \"float3\"  -0.68824297 0.60944098 0.39357799 -0.68824297\n\t\t 0.60944098 0.39357799 -0.49429101 0.49660999 0.71348101 -0.39504001 0.61749399 0.68018001\n\t\t -0.49429101 0.49660999 0.71348101 -0.68824297 0.60944098 0.39357799 -0.73438197 0.55206102\n\t\t 0.39485699 -0.73438197 0.55206102 0.39485699 -0.57253999 0.39891601 0.71628499 -0.49429101\n\t\t 0.49660999 0.71348101 -0.228743 0.310168 0.92275298 -0.49429101 0.49660999 0.71348101\n\t\t -0.57253999 0.39891601 0.71628499 -0.57253999 0.39891601 0.71628499 -0.32902601 0.188547\n\t\t 0.92530698 -0.228743 0.310168 0.92275298 -0.49429101 0.49660999 0.71348101 -0.228743\n\t\t 0.310168 0.92275298 -0.105047 0.45555899 0.883986 -0.105047 0.45555899 0.883986 -0.39504001\n\t\t 0.61749399 0.68018001 -0.49429101 0.49660999 0.71348101 -0.39504001 0.61749399 0.68018001\n\t\t -0.105047 0.45555899 0.883986 0.040316001 0.61761898 0.78544402 0.040316001 0.61761898\n\t\t 0.78544402 -0.27409101 0.754246 0.59664601 -0.39504001 0.61749399 0.68018001 0.34746799\n\t\t 0.38802901 0.85363901 0.040316001 0.61761898 0.78544402 -0.105047 0.45555899 0.883986\n\t\t -0.105047 0.45555899 0.883986 0.198983 0.22584 0.95362598 0.34746799 0.38802901 0.85363901\n\t\t 0.198983 0.22584 0.95362598 -0.105047 0.45555899 0.883986 -0.228743 0.310168 0.92275298\n\t\t -0.228743 0.310168 0.92275298 0.068026997 0.079259001 0.99453002 0.198983 0.22584\n\t\t 0.95362598 0.068026997 0.079259001 0.99453002 -0.228743 0.310168 0.92275298 -0.32902601\n\t\t 0.188547 0.92530698 -0.32902601 0.188547 0.92530698 -0.040833998 -0.047212001 0.99804997\n\t\t 0.068026997 0.079259001 0.99453002 0.35401899 -0.16275699 0.92096698 0.068026997\n\t\t 0.079259001 0.99453002 -0.040833998 -0.047212001 0.99804997 -0.040833998 -0.047212001\n\t\t 0.99804997 0.25324699 -0.27628899 0.927109 0.35401899 -0.16275699 0.92096698 0.068026997\n\t\t 0.079259001 0.99453002 0.35401899 -0.16275699 0.92096698 0.47121099 -0.035797998\n\t\t 0.88129401 0.47121099 -0.035797998 0.88129401 0.198983 0.22584 0.95362598 0.068026997\n\t\t 0.079259001 0.99453002 0.198983 0.22584 0.95362598 0.47121099 -0.035797998 0.88129401\n\t\t 0.59990901 0.103093 0.79339802 0.59990901 0.103093 0.79339802 0.34746799 0.38802901\n\t\t 0.85363901 0.198983 0.22584 0.95362598 0.76181501 -0.19349 0.61822301 0.59990901\n\t\t 0.103093 0.79339802 0.47121099 -0.035797998 0.88129401 0.47121099 -0.035797998 0.88129401\n\t\t 0.67278999 -0.290631 0.68035799 0.76181501 -0.19349 0.61822301 0.67278999 -0.290631\n\t\t 0.68035799 0.47121099 -0.035797998 0.88129401 0.35401899 -0.16275699 0.92096698 0.35401899\n\t\t -0.16275699 0.92096698 0.58936101 -0.381798 0.71195799 0.67278999 -0.290631 0.68035799\n\t\t 0.58936101 -0.381798 0.71195799 0.35401899 -0.16275699 0.92096698 0.25324699 -0.27628899\n\t\t 0.927109 0.25324699 -0.27628899 0.927109 0.51391101 -0.46715501 0.71948701 0.58936101\n\t\t -0.381798 0.71195799 0.73947698 -0.54607803 0.393666 0.58936101 -0.381798 0.71195799\n\t\t 0.51391101 -0.46715501 0.71948701 0.51391101 -0.46715501 0.71948701 0.70184499 -0.59017497\n\t\t 0.39888299 0.73947698 -0.54607803 0.393666 0.776317 -0.50396299 0.37862101 0.67278999\n\t\t -0.290631 0.68035799 0.58936101 -0.381798 0.71195799 0.58936101 -0.381798 0.71195799\n\t\t 0.73947698 -0.54607803 0.393666 0.776317 -0.50396299 0.37862101 0.81290901 -0.462762\n\t\t 0.35359499 0.76181501 -0.19349 0.61822301 0.67278999 -0.290631 0.68035799 0.67278999\n\t\t -0.290631 0.68035799 0.776317 -0.50396299 0.37862101 0.81290901 -0.462762 0.35359499\n\t\t 0.59990901 0.103093 0.79339802 0.76181501 -0.19349 0.61822301 0.83766001 -0.113073\n\t\t 0.53435999 0.83766001 -0.113073 0.53435999 0.70740402 0.21888401 0.67206299 0.59990901\n\t\t 0.103093 0.79339802 0.34746799 0.38802901 0.85363901 0.59990901 0.103093 0.79339802\n\t\t 0.70740402 0.21888401 0.67206299 0.70740402 0.21888401 0.67206299 0.47212899 0.52050102\n\t\t 0.71145803 0.34746799 0.38802901 0.85363901 0.040316001 0.61761898 0.78544402 0.34746799\n\t\t 0.38802901 0.85363901 0.47212899 0.52050102 0.71145803 0.47212899 0.52050102 0.71145803\n\t\t 0.164984 0.74691403 0.64412701 0.040316001 0.61761898 0.78544402 -0.27409101 0.754246\n\t\t 0.59664601 0.040316001 0.61761898 0.78544402 0.164984 0.74691403 0.64412701 0.164984\n\t\t 0.74691403 0.64412701 -0.16852599 0.86198002 0.478111 -0.27409101 0.754246 0.59664601\n\t\t -0.54616702 0.77551597 0.31666401 -0.27409101 0.754246 0.59664601 -0.16852599 0.86198002\n\t\t 0.478111 -0.16852599 0.86198002 0.478111 -0.477236 0.84588301 0.238175 -0.54616702\n\t\t 0.77551597 0.31666401 -0.73346299 0.67968798 -0.0075690001 -0.54616702 0.77551597\n\t\t 0.31666401 -0.477236 0.84588301 0.238175 -0.477236 0.84588301 0.238175 -0.71238399\n\t\t 0.70084798 -0.036348999 -0.73346299 0.67968798 -0.0075690001 -0.81181002 0.482355\n\t\t -0.329088 -0.73346299 0.67968798 -0.0075690001 -0.71238399 0.70084798 -0.036348999\n\t\t -0.71238399 0.70084798 -0.036348999 -0.84025902 0.44900101 -0.30391201 -0.81181002\n\t\t 0.482355 -0.329088 -0.77070999 0.21299499 -0.60053301 -0.81181002 0.482355 -0.329088\n\t\t -0.84025902 0.44900101 -0.30391201 -0.84025902 0.44900101 -0.30391201 -0.84206498\n\t\t 0.12952501 -0.52359301 -0.77070999 0.21299499 -0.60053301 -0.84206498 0.12952501\n\t\t -0.52359301 -0.84025902 0.44900101 -0.30391201 -0.86540997 0.420955 -0.27177599 -0.86540997\n\t\t 0.420955 -0.27177599 -0.89341497 0.070377 -0.44368601 -0.84206498 0.12952501 -0.52359301\n\t\t -0.89341497 0.070377 -0.44368601 -0.86540997 0.420955 -0.27177599 -0.89266002 0.39650699\n\t\t -0.21433701 -0.89266002 0.39650699 -0.21433701 -0.94166201 0.023499001 -0.33573899\n\t\t -0.89341497 0.070377 -0.44368601 -0.94166201 0.023499001 -0.33573899 -0.89266002\n\t\t 0.39650699 -0.21433701 -0.91908503 0.378041 -0.111212 -0.91908503 0.378041 -0.111212\n\t\t -0.98539501 -0.0068979999 -0.17014299 -0.94166201 0.023499001 -0.33573899;\n\tsetAttr \".n[41334:41499]\" -type \"float3\"  -0.71089703 0.70253402 -0.032717001 -0.91908503\n\t\t 0.378041 -0.111212 -0.89266002 0.39650699 -0.21433701 -0.89266002 0.39650699 -0.21433701\n\t\t -0.70471799 0.70725 -0.056308001 -0.71089703 0.70253402 -0.032717001 -0.70471799\n\t\t 0.70725 -0.056308001 -0.89266002 0.39650699 -0.21433701 -0.86540997 0.420955 -0.27177599\n\t\t -0.86540997 0.420955 -0.27177599 -0.70477998 0.70725101 -0.055514 -0.70471799 0.70725\n\t\t -0.056308001 -0.70477998 0.70725101 -0.055514 -0.86540997 0.420955 -0.27177599 -0.84025902\n\t\t 0.44900101 -0.30391201 -0.84025902 0.44900101 -0.30391201 -0.71238399 0.70084798\n\t\t -0.036348999 -0.70477998 0.70725101 -0.055514 -0.71238399 0.70084798 -0.036348999\n\t\t -0.477236 0.84588301 0.238175 -0.43704 0.88317299 0.17029899 -0.43704 0.88317299\n\t\t 0.17029899 -0.70477998 0.70725101 -0.055514 -0.71238399 0.70084798 -0.036348999 -0.70477998\n\t\t 0.70725101 -0.055514 -0.43704 0.88317299 0.17029899 -0.41044801 0.90500599 0.11179\n\t\t -0.41044801 0.90500599 0.11179 -0.70471799 0.70725 -0.056308001 -0.70477998 0.70725101\n\t\t -0.055514 -0.70471799 0.70725 -0.056308001 -0.41044801 0.90500599 0.11179 -0.39751601\n\t\t 0.91610098 0.052340999 -0.39751601 0.91610098 0.052340999 -0.71089703 0.70253402\n\t\t -0.032717001 -0.70471799 0.70725 -0.056308001 -0.026551999 0.991 0.131203 -0.39751601\n\t\t 0.91610098 0.052340999 -0.41044801 0.90500599 0.11179 -0.41044801 0.90500599 0.11179\n\t\t -0.056857999 0.96313101 0.26295501 -0.026551999 0.991 0.131203 -0.056857999 0.96313101\n\t\t 0.26295501 -0.41044801 0.90500599 0.11179 -0.43704 0.88317299 0.17029899 -0.43704\n\t\t 0.88317299 0.17029899 -0.103736 0.923154 0.37017101 -0.056857999 0.96313101 0.26295501\n\t\t -0.103736 0.923154 0.37017101 -0.43704 0.88317299 0.17029899 -0.477236 0.84588301\n\t\t 0.238175 -0.477236 0.84588301 0.238175 -0.16852599 0.86198002 0.478111 -0.103736\n\t\t 0.923154 0.37017101 0.242505 0.82380301 0.51238602 -0.103736 0.923154 0.37017101\n\t\t -0.16852599 0.86198002 0.478111 -0.16852599 0.86198002 0.478111 0.164984 0.74691403\n\t\t 0.64412701 0.242505 0.82380301 0.51238602 -0.103736 0.923154 0.37017101 0.242505\n\t\t 0.82380301 0.51238602 0.301011 0.87757999 0.37315801 0.301011 0.87757999 0.37315801\n\t\t -0.056857999 0.96313101 0.26295501 -0.103736 0.923154 0.37017101 -0.056857999 0.96313101\n\t\t 0.26295501 0.301011 0.87757999 0.37315801 0.346333 0.91857201 0.19047099 0.346333\n\t\t 0.91857201 0.19047099 -0.026551999 0.991 0.131203 -0.056857999 0.96313101 0.26295501\n\t\t 0.668464 0.71030599 0.220502 0.346333 0.91857201 0.19047099 0.301011 0.87757999 0.37315801\n\t\t 0.301011 0.87757999 0.37315801 0.61345798 0.664303 0.42704901 0.668464 0.71030599\n\t\t 0.220502 0.61345798 0.664303 0.42704901 0.301011 0.87757999 0.37315801 0.242505 0.82380301\n\t\t 0.51238602 0.242505 0.82380301 0.51238602 0.55096602 0.60306299 0.576846 0.61345798\n\t\t 0.664303 0.42704901 0.55096602 0.60306299 0.576846 0.242505 0.82380301 0.51238602\n\t\t 0.164984 0.74691403 0.64412701 0.164984 0.74691403 0.64412701 0.47212899 0.52050102\n\t\t 0.71145803 0.55096602 0.60306299 0.576846 0.77775699 0.29445201 0.55533099 0.55096602\n\t\t 0.60306299 0.576846 0.47212899 0.52050102 0.71145803 0.47212899 0.52050102 0.71145803\n\t\t 0.70740402 0.21888401 0.67206299 0.77775699 0.29445201 0.55533099 0.55096602 0.60306299\n\t\t 0.576846 0.77775699 0.29445201 0.55533099 0.836918 0.35432401 0.417162 0.836918 0.35432401\n\t\t 0.417162 0.61345798 0.664303 0.42704901 0.55096602 0.60306299 0.576846 0.61345798\n\t\t 0.664303 0.42704901 0.836918 0.35432401 0.417162 0.891891 0.39681 0.216961 0.891891\n\t\t 0.39681 0.216961 0.668464 0.71030599 0.220502 0.61345798 0.664303 0.42704901 0.98334599\n\t\t 0.023042001 0.18027499 0.891891 0.39681 0.216961 0.836918 0.35432401 0.417162 0.836918\n\t\t 0.35432401 0.417162 0.93849897 -0.0097660003 0.34514299 0.98334599 0.023042001 0.18027499\n\t\t 0.93849897 -0.0097660003 0.34514299 0.836918 0.35432401 0.417162 0.77775699 0.29445201\n\t\t 0.55533099 0.77775699 0.29445201 0.55533099 0.89028198 -0.058109 0.45168701 0.93849897\n\t\t -0.0097660003 0.34514299 0.89028198 -0.058109 0.45168701 0.77775699 0.29445201 0.55533099\n\t\t 0.70740402 0.21888401 0.67206299 0.70740402 0.21888401 0.67206299 0.83766001 -0.113073\n\t\t 0.53435999 0.89028198 -0.058109 0.45168701 0.87005901 -0.40559399 0.28016201 0.89028198\n\t\t -0.058109 0.45168701 0.83766001 -0.113073 0.53435999 0.83766001 -0.113073 0.53435999\n\t\t 0.84470803 -0.43053299 0.31797901 0.87005901 -0.40559399 0.28016201 0.89942402 -0.37696999\n\t\t 0.221201 0.93849897 -0.0097660003 0.34514299 0.89028198 -0.058109 0.45168701 0.89028198\n\t\t -0.058109 0.45168701 0.87005901 -0.40559399 0.28016201 0.89942402 -0.37696999 0.221201\n\t\t 0.668464 0.71030599 0.220502 0.891891 0.39681 0.216961 0.91198701 0.40728399 0.048983999\n\t\t 0.91198701 0.40728399 0.048983999 0.891891 0.39681 0.216961 0.98334599 0.023042001\n\t\t 0.18027499 0.98334599 0.023042001 0.18027499 0.99879003 0.028291 0.040224001 0.91198701\n\t\t 0.40728399 0.048983999 0.91198701 0.40728399 0.048983999 0.99879003 0.028291 0.040224001\n\t\t 0.99965602 0.026216 0 0.99965602 0.026216 0 0.91351199 0.406813 0 0.91198701 0.40728399\n\t\t 0.048983999 0.91198701 0.40728399 0.048983999 0.91351199 0.406813 0 0.68827599 0.72544903\n\t\t 0 0.68827599 0.72544903 0 0.68772501 0.72422701 0.050296001 0.91198701 0.40728399\n\t\t 0.048983999 0.359602 0.93210399 0.043214999 0.68772501 0.72422701 0.050296001 0.68827599\n\t\t 0.72544903 0 0.68827599 0.72544903 0 0.35826701 0.93361902 0 0.359602 0.93210399\n\t\t 0.043214999 0.359602 0.93210399 0.043214999;\n\tsetAttr \".n[41500:41665]\" -type \"float3\"  0.35826701 0.93361902 0 -0.026308 0.999654\n\t\t 0 -0.026308 0.999654 0 -0.022706 0.99930602 0.029541999 0.359602 0.93210399 0.043214999\n\t\t -0.40190801 0.91560799 0.011445 -0.022706 0.99930602 0.029541999 -0.026308 0.999654\n\t\t 0 -0.026308 0.999654 0 -0.406849 0.913495 0 -0.40190801 0.91560799 0.011445 -0.40190801\n\t\t 0.91560799 0.011445 -0.406849 0.913495 0 -0.72547901 0.688245 0 -0.72547901 0.688245\n\t\t 0 -0.72086501 0.69303101 -0.0079049999 -0.40190801 0.91560799 0.011445 -0.93120098\n\t\t 0.363666 -0.024721 -0.72086501 0.69303101 -0.0079049999 -0.72547901 0.688245 0 -0.72547901\n\t\t 0.688245 0 -0.93363303 0.35822999 0 -0.93120098 0.363666 -0.024721 -0.93120098 0.363666\n\t\t -0.024721 -0.93363303 0.35822999 0 -0.99965501 -0.026277 0 -0.99965501 -0.026277\n\t\t 0 -0.99909002 -0.02176 -0.036683001 -0.93120098 0.363666 -0.024721 -0.93120098 0.363666\n\t\t -0.024721 -0.99909002 -0.02176 -0.036683001 -0.98539501 -0.0068979999 -0.17014299\n\t\t -0.98539501 -0.0068979999 -0.17014299 -0.91908503 0.378041 -0.111212 -0.93120098\n\t\t 0.363666 -0.024721 -0.93120098 0.363666 -0.024721 -0.91908503 0.378041 -0.111212\n\t\t -0.71089703 0.70253402 -0.032717001 -0.71089703 0.70253402 -0.032717001 -0.72086501\n\t\t 0.69303101 -0.0079049999 -0.93120098 0.363666 -0.024721 -0.40190801 0.91560799 0.011445\n\t\t -0.72086501 0.69303101 -0.0079049999 -0.71089703 0.70253402 -0.032717001 -0.71089703\n\t\t 0.70253402 -0.032717001 -0.39751601 0.91610098 0.052340999 -0.40190801 0.91560799\n\t\t 0.011445 -0.40190801 0.91560799 0.011445 -0.39751601 0.91610098 0.052340999 -0.026551999\n\t\t 0.991 0.131203 -0.026551999 0.991 0.131203 -0.022706 0.99930602 0.029541999 -0.40190801\n\t\t 0.91560799 0.011445 0.359602 0.93210399 0.043214999 -0.022706 0.99930602 0.029541999\n\t\t -0.026551999 0.991 0.131203 -0.026551999 0.991 0.131203 0.346333 0.91857201 0.19047099\n\t\t 0.359602 0.93210399 0.043214999 0.359602 0.93210399 0.043214999 0.346333 0.91857201\n\t\t 0.19047099 0.668464 0.71030599 0.220502 0.668464 0.71030599 0.220502 0.68772501 0.72422701\n\t\t 0.050296001 0.359602 0.93210399 0.043214999 0.91198701 0.40728399 0.048983999 0.68772501\n\t\t 0.72422701 0.050296001 0.668464 0.71030599 0.220502 -0.91332698 -0.404964 -0.042879999\n\t\t -0.99909002 -0.02176 -0.036683001 -0.99965501 -0.026277 0 -0.99965501 -0.026277 0\n\t\t -0.91350698 -0.40682399 0 -0.91332698 -0.404964 -0.042879999 -0.91332698 -0.404964\n\t\t -0.042879999 -0.91350698 -0.40682399 0 -0.68829203 -0.72543401 0 -0.68829203 -0.72543401\n\t\t 0 -0.686593 -0.72578001 -0.042819001 -0.91332698 -0.404964 -0.042879999 -0.35427001\n\t\t -0.934416 -0.036867999 -0.686593 -0.72578001 -0.042819001 -0.68829203 -0.72543401\n\t\t 0 -0.68829203 -0.72543401 0 -0.35829401 -0.93360901 0 -0.35427001 -0.934416 -0.036867999\n\t\t -0.35427001 -0.934416 -0.036867999 -0.35829401 -0.93360901 0 0.026216 -0.99965602\n\t\t 0 0.026216 -0.99965602 0 0.032288998 -0.99915802 -0.025331 -0.35427001 -0.934416\n\t\t -0.036867999 0.412074 -0.911098 -0.0097970003 0.032288998 -0.99915802 -0.025331 0.026216\n\t\t -0.99965602 0 0.026216 -0.99965602 0 0.406762 -0.91353399 0 0.412074 -0.911098 -0.0097970003\n\t\t 0.412074 -0.911098 -0.0097970003 0.406762 -0.91353399 0 0.72540402 -0.68832302 0\n\t\t 0.72540402 -0.68832302 0 0.72907197 -0.68439198 0.0078130001 0.412074 -0.911098 -0.0097970003\n\t\t 0.93466598 -0.35459599 0.025727 0.72907197 -0.68439198 0.0078130001 0.72540402 -0.68832302\n\t\t 0 0.72540402 -0.68832302 0 0.933599 -0.35832 0 0.93466598 -0.35459599 0.025727 0.73151499\n\t\t -0.68076098 0.038088001 0.72907197 -0.68439198 0.0078130001 0.93466598 -0.35459599\n\t\t 0.025727 0.412074 -0.911098 -0.0097970003 0.72907197 -0.68439198 0.0078130001 0.73151499\n\t\t -0.68076098 0.038088001 0.93466598 -0.35459599 0.025727 0.927486 -0.355124 0.116859\n\t\t 0.73151499 -0.68076098 0.038088001 0.73151499 -0.68076098 0.038088001 0.927486 -0.355124\n\t\t 0.116859 0.89942402 -0.37696999 0.221201 0.89942402 -0.37696999 0.221201 0.72129798\n\t\t -0.68958801 0.064792998 0.73151499 -0.68076098 0.038088001 0.72129798 -0.68958801\n\t\t 0.064792998 0.89942402 -0.37696999 0.221201 0.87005901 -0.40559399 0.28016201 0.87005901\n\t\t -0.40559399 0.28016201 0.716317 -0.69464803 0.065982997 0.72129798 -0.68958801 0.064792998\n\t\t 0.716317 -0.69464803 0.065982997 0.87005901 -0.40559399 0.28016201 0.84470803 -0.43053299\n\t\t 0.31797901 0.84470803 -0.43053299 0.31797901 0.72479099 -0.68688601 0.05353 0.716317\n\t\t -0.69464803 0.065982997 0.72479099 -0.68688601 0.05353 0.84470803 -0.43053299 0.31797901\n\t\t 0.81290901 -0.462762 0.35359499 0.81290901 -0.462762 0.35359499 0.74445498 -0.66669202\n\t\t 0.036164999 0.72479099 -0.68688601 0.05353 0.74445498 -0.66669202 0.036164999 0.81290901\n\t\t -0.462762 0.35359499 0.776317 -0.50396299 0.37862101 0.776317 -0.50396299 0.37862101\n\t\t 0.76463097 -0.64420098 0.018556001 0.74445498 -0.66669202 0.036164999 0.76463097\n\t\t -0.64420098 0.018556001 0.776317 -0.50396299 0.37862101 0.73947698 -0.54607803 0.393666\n\t\t 0.73947698 -0.54607803 0.393666 0.77780902 -0.62838697 0.011964 0.76463097 -0.64420098\n\t\t 0.018556001 0.77780902 -0.62838697 0.011964 0.73947698 -0.54607803 0.393666 0.70184499\n\t\t -0.59017497 0.39888299 0.70184499 -0.59017497 0.39888299 0.78267002 -0.62232101 0.011994\n\t\t 0.77780902 -0.62838697 0.011964 0.78267002 -0.62232101 0.011994 0.70184499 -0.59017497\n\t\t 0.39888299 0.66166401 -0.63883501 0.39254299 0.66166401 -0.63883501 0.39254299 0.77847099\n\t\t -0.62755603 0.012513;\n\tsetAttr \".n[41666:41831]\" -type \"float3\"  0.78267002 -0.62232101 0.011994 0.77847099\n\t\t -0.62755603 0.012513 0.66166401 -0.63883501 0.39254299 0.61902398 -0.69092703 0.373404\n\t\t 0.61902398 -0.69092703 0.373404 0.76950997 -0.63855201 0.010346 0.77847099 -0.62755603\n\t\t 0.012513 0.76950997 -0.63855201 0.010346 0.61902398 -0.69092703 0.373404 0.57570899\n\t\t -0.74343997 0.340377 0.57570899 -0.74343997 0.340377 0.760809 -0.64895701 0.0049749999\n\t\t 0.76950997 -0.63855201 0.010346 0.760809 -0.64895701 0.0049749999 0.57570899 -0.74343997\n\t\t 0.340377 0.53118801 -0.79554498 0.29145899 0.53118801 -0.79554498 0.29145899 0.75251001\n\t\t -0.658571 -0.0036319999 0.760809 -0.64895701 0.0049749999 0.75251001 -0.658571 -0.0036319999\n\t\t 0.53118801 -0.79554498 0.29145899 0.487207 -0.84446299 0.222515 0.487207 -0.84446299\n\t\t 0.222515 0.74524701 -0.66659898 -0.015900001 0.75251001 -0.658571 -0.0036319999 0.74524701\n\t\t -0.66659898 -0.015900001 0.487207 -0.84446299 0.222515 0.45571399 -0.878528 0.143227\n\t\t 0.45571399 -0.878528 0.143227 0.74420798 -0.66745198 -0.025728 0.74524701 -0.66659898\n\t\t -0.015900001 0.74420798 -0.66745198 -0.025728 0.45571399 -0.878528 0.143227 0.44371599\n\t\t -0.893291 0.07175 0.44371599 -0.893291 0.07175 0.748864 -0.662435 -0.019562 0.74420798\n\t\t -0.66745198 -0.025728 0.748864 -0.662435 -0.019562 0.44371599 -0.893291 0.07175 0.44762501\n\t\t -0.89412099 0.013398 0.44762501 -0.89412099 0.013398 0.75312299 -0.65784198 0.0070810001\n\t\t 0.748864 -0.662435 -0.019562 0.75312299 -0.65784198 0.0070810001 0.44762501 -0.89412099\n\t\t 0.013398 0.46080801 -0.88703603 -0.028688001 0.46080801 -0.88703603 -0.028688001\n\t\t 0.75036901 -0.65856701 0.056887001 0.75312299 -0.65784198 0.0070810001 0.75036901\n\t\t -0.65856701 0.056887001 0.46080801 -0.88703603 -0.028688001 0.47659099 -0.878501\n\t\t -0.033112999 0.47659099 -0.878501 -0.033112999 0.73860502 -0.660505 0.13489699 0.75036901\n\t\t -0.65856701 0.056887001 0.73860502 -0.660505 0.13489699 0.47659099 -0.878501 -0.033112999\n\t\t 0.47148499 -0.88177902 0.01291 0.47148499 -0.88177902 0.01291 0.706743 -0.667952\n\t\t 0.23313899 0.73860502 -0.660505 0.13489699 0.706743 -0.667952 0.23313899 0.47148499\n\t\t -0.88177902 0.01291 0.43446499 -0.89566398 0.095004998 0.43446499 -0.89566398 0.095004998\n\t\t 0.65607601 -0.67618799 0.33516401 0.706743 -0.667952 0.23313899 0.65607601 -0.67618799\n\t\t 0.33516401 0.43446499 -0.89566398 0.095004998 0.365372 -0.90869898 0.201913 0.365372\n\t\t -0.90869898 0.201913 0.59363598 -0.67912102 0.43173 0.65607601 -0.67618799 0.33516401\n\t\t 0.59363598 -0.67912102 0.43173 0.365372 -0.90869898 0.201913 0.29615799 -0.90983802\n\t\t 0.290665 0.002533 -0.99957502 0.029022999 0.29615799 -0.90983802 0.290665 0.365372\n\t\t -0.90869898 0.201913 0.29615799 -0.90983802 0.290665 0.002533 -0.99957502 0.029022999\n\t\t -0.040346 -0.99389702 0.102668 -0.040346 -0.99389702 0.102668 0.264599 -0.90186501\n\t\t 0.34150699 0.29615799 -0.90983802 0.290665 0.365372 -0.90869898 0.201913 0.075322002\n\t\t -0.99464899 -0.070712999 0.002533 -0.99957502 0.029022999 0.29615799 -0.90983802\n\t\t 0.290665 0.54156601 -0.67771298 0.49740499 0.59363598 -0.67912102 0.43173 0.54156601\n\t\t -0.67771298 0.49740499 0.29615799 -0.90983802 0.290665 0.264599 -0.90186501 0.34150699\n\t\t 0.264599 -0.90186501 0.34150699 0.52883899 -0.67011303 0.52084303 0.54156601 -0.67771298\n\t\t 0.49740499 0.52883899 -0.67011303 0.52084303 0.264599 -0.90186501 0.34150699 0.307448\n\t\t -0.900612 0.30720299 0.307448 -0.900612 0.30720299 0.59833097 -0.67328602 0.43438101\n\t\t 0.52883899 -0.67011303 0.52084303 0.710922 -0.339194 0.61606699 0.52883899 -0.67011303\n\t\t 0.52084303 0.59833097 -0.67328602 0.43438101 0.59833097 -0.67328602 0.43438101 0.79624701\n\t\t -0.34413499 0.49755499 0.710922 -0.339194 0.61606699 0.52883899 -0.67011303 0.52084303\n\t\t 0.710922 -0.339194 0.61606699 0.70441502 -0.34788901 0.61868602 0.70441502 -0.34788901\n\t\t 0.61868602 0.54156601 -0.67771298 0.49740499 0.52883899 -0.67011303 0.52084303 0.54156601\n\t\t -0.67771298 0.49740499 0.70441502 -0.34788901 0.61868602 0.73187798 -0.353441 0.582609\n\t\t 0.73187798 -0.353441 0.582609 0.59363598 -0.67912102 0.43173 0.54156601 -0.67771298\n\t\t 0.49740499 0.76717103 0.019197 0.641155 0.73187798 -0.353441 0.582609 0.70441502\n\t\t -0.34788901 0.61868602 0.70441502 -0.34788901 0.61868602 0.76480103 0.029053999 0.64361101\n\t\t 0.76717103 0.019197 0.641155 0.76480103 0.029053999 0.64361101 0.70441502 -0.34788901\n\t\t 0.61868602 0.710922 -0.339194 0.61606699 0.710922 -0.339194 0.61606699 0.785227 0.039430998\n\t\t 0.61795098 0.76480103 0.029053999 0.64361101 0.785227 0.039430998 0.61795098 0.710922\n\t\t -0.339194 0.61606699 0.79624701 -0.34413499 0.49755499 0.79624701 -0.34413499 0.49755499\n\t\t 0.87066501 0.035188001 0.49061701 0.785227 0.039430998 0.61795098 0.74221098 0.410339\n\t\t 0.529854 0.785227 0.039430998 0.61795098 0.87066501 0.035188001 0.49061701 0.87066501\n\t\t 0.035188001 0.49061701 0.81397003 0.40623701 0.41523999 0.74221098 0.410339 0.529854\n\t\t 0.785227 0.039430998 0.61795098 0.74221098 0.410339 0.529854 0.71357 0.40135899 0.57422\n\t\t 0.71357 0.40135899 0.57422 0.76480103 0.029053999 0.64361101 0.785227 0.039430998\n\t\t 0.61795098 0.76480103 0.029053999 0.64361101 0.71357 0.40135899 0.57422 0.69301498\n\t\t 0.39021 0.60619003 0.69301498 0.39021 0.60619003 0.76717103 0.019197 0.641155 0.76480103\n\t\t 0.029053999 0.64361101 0.51125902 0.71003199 0.48421901 0.69301498 0.39021 0.60619003\n\t\t 0.71357 0.40135899 0.57422 0.71357 0.40135899 0.57422 0.55346 0.71807897 0.42195401\n\t\t 0.51125902 0.71003199 0.48421901 0.55346 0.71807897 0.42195401 0.71357 0.40135899\n\t\t 0.57422 0.74221098 0.410339 0.529854;\n\tsetAttr \".n[41832:41997]\" -type \"float3\"  0.74221098 0.410339 0.529854 0.58835\n\t\t 0.72175002 0.36458299 0.55346 0.71807897 0.42195401 0.58835 0.72175002 0.36458299\n\t\t 0.74221098 0.410339 0.529854 0.81397003 0.40623701 0.41523999 0.81397003 0.40623701\n\t\t 0.41523999 0.64005101 0.71601403 0.27867201 0.58835 0.72175002 0.36458299 0.34459701\n\t\t 0.92767501 0.143778 0.58835 0.72175002 0.36458299 0.64005101 0.71601403 0.27867201\n\t\t 0.64005101 0.71601403 0.27867201 0.37392199 0.92284203 0.092442997 0.34459701 0.92767501\n\t\t 0.143778 0.58835 0.72175002 0.36458299 0.34459701 0.92767501 0.143778 0.30384901\n\t\t 0.92961699 0.208538 0.30384901 0.92961699 0.208538 0.55346 0.71807897 0.42195401\n\t\t 0.58835 0.72175002 0.36458299 0.55346 0.71807897 0.42195401 0.30384901 0.92961699\n\t\t 0.208538 0.24287499 0.92492801 0.29243901 0.24287499 0.92492801 0.29243901 0.51125902\n\t\t 0.71003199 0.48421901 0.55346 0.71807897 0.42195401 -0.070165001 0.99585199 0.057925999\n\t\t 0.24287499 0.92492801 0.29243901 0.30384901 0.92961699 0.208538 0.30384901 0.92961699\n\t\t 0.208538 0.001831 0.99934298 -0.036196001 -0.070165001 0.99585199 0.057925999 0.001831\n\t\t 0.99934298 -0.036196001 0.30384901 0.92961699 0.208538 0.34459701 0.92767501 0.143778\n\t\t 0.34459701 0.92767501 0.143778 0.046266001 0.99344802 -0.104496 0.001831 0.99934298\n\t\t -0.036196001 0.046266001 0.99344802 -0.104496 0.34459701 0.92767501 0.143778 0.37392199\n\t\t 0.92284203 0.092442997 0.37392199 0.92284203 0.092442997 0.050783999 0.99080902 -0.12537301\n\t\t 0.046266001 0.99344802 -0.104496 0.69301498 0.39021 0.60619003 0.51125902 0.71003199\n\t\t 0.48421901 0.47741699 0.69544899 0.53705198 0.47741699 0.69544899 0.53705198 0.68766397\n\t\t 0.375664 0.62128401 0.69301498 0.39021 0.60619003 0.76717103 0.019197 0.641155 0.69301498\n\t\t 0.39021 0.60619003 0.68766397 0.375664 0.62128401 0.68766397 0.375664 0.62128401\n\t\t 0.789554 0.0068370001 0.61364299 0.76717103 0.019197 0.641155 0.73187798 -0.353441\n\t\t 0.582609 0.76717103 0.019197 0.641155 0.789554 0.0068370001 0.61364299 0.789554 0.0068370001\n\t\t 0.61364299 0.77799499 -0.35966799 0.51513302 0.73187798 -0.353441 0.582609 0.59363598\n\t\t -0.67912102 0.43173 0.73187798 -0.353441 0.582609 0.77799499 -0.35966799 0.51513302\n\t\t 0.77799499 -0.35966799 0.51513302 0.65607601 -0.67618799 0.33516401 0.59363598 -0.67912102\n\t\t 0.43173 0.65607601 -0.67618799 0.33516401 0.77799499 -0.35966799 0.51513302 0.83393502\n\t\t -0.35743999 0.42046201 0.83393502 -0.35743999 0.42046201 0.706743 -0.667952 0.23313899\n\t\t 0.65607601 -0.67618799 0.33516401 0.706743 -0.667952 0.23313899 0.83393502 -0.35743999\n\t\t 0.42046201 0.889691 -0.34669599 0.29707199 0.889691 -0.34669599 0.29707199 0.73860502\n\t\t -0.660505 0.13489699 0.706743 -0.667952 0.23313899 0.73860502 -0.660505 0.13489699\n\t\t 0.889691 -0.34669599 0.29707199 0.93067598 -0.332809 0.151923 0.93067598 -0.332809\n\t\t 0.151923 0.75036901 -0.65856701 0.056887001 0.73860502 -0.660505 0.13489699 0.96850902\n\t\t 0.048618 0.244187 0.93067598 -0.332809 0.151923 0.889691 -0.34669599 0.29707199 0.889691\n\t\t -0.34669599 0.29707199 0.90355599 0.022431999 0.42788199 0.96850902 0.048618 0.244187\n\t\t 0.90355599 0.022431999 0.42788199 0.889691 -0.34669599 0.29707199 0.83393502 -0.35743999\n\t\t 0.42046201 0.83393502 -0.35743999 0.42046201 0.83715701 0.0064090001 0.54692501 0.90355599\n\t\t 0.022431999 0.42788199 0.83715701 0.0064090001 0.54692501 0.83393502 -0.35743999\n\t\t 0.42046201 0.77799499 -0.35966799 0.51513302 0.77799499 -0.35966799 0.51513302 0.789554\n\t\t 0.0068370001 0.61364299 0.83715701 0.0064090001 0.54692501 0.789554 0.0068370001\n\t\t 0.61364299 0.68766397 0.375664 0.62128401 0.71491802 0.37368 0.59097898 0.71491802\n\t\t 0.37368 0.59097898 0.83715701 0.0064090001 0.54692501 0.789554 0.0068370001 0.61364299\n\t\t 0.83715701 0.0064090001 0.54692501 0.71491802 0.37368 0.59097898 0.77412301 0.39315\n\t\t 0.496153 0.77412301 0.39315 0.496153 0.90355599 0.022431999 0.42788199 0.83715701\n\t\t 0.0064090001 0.54692501 0.90355599 0.022431999 0.42788199 0.77412301 0.39315 0.496153\n\t\t 0.84914303 0.429562 0.3073 0.84914303 0.429562 0.3073 0.96850902 0.048618 0.244187\n\t\t 0.90355599 0.022431999 0.42788199 0.59124899 0.74314302 0.31331 0.84914303 0.429562\n\t\t 0.3073 0.77412301 0.39315 0.496153 0.77412301 0.39315 0.496153 0.52194399 0.705244\n\t\t 0.47979701 0.59124899 0.74314302 0.31331 0.52194399 0.705244 0.47979701 0.77412301\n\t\t 0.39315 0.496153 0.71491802 0.37368 0.59097898 0.71491802 0.37368 0.59097898 0.48006901\n\t\t 0.68964601 0.54214603 0.52194399 0.705244 0.47979701 0.48006901 0.68964601 0.54214603\n\t\t 0.71491802 0.37368 0.59097898 0.68766397 0.375664 0.62128401 0.68766397 0.375664\n\t\t 0.62128401 0.47741699 0.69544899 0.53705198 0.48006901 0.68964601 0.54214603 0.166692\n\t\t 0.89843702 0.40623301 0.48006901 0.68964601 0.54214603 0.47741699 0.69544899 0.53705198\n\t\t 0.47741699 0.69544899 0.53705198 0.185157 0.90951902 0.372145 0.166692 0.89843702\n\t\t 0.40623301 0.185157 0.90951902 0.372145 0.47741699 0.69544899 0.53705198 0.51125902\n\t\t 0.71003199 0.48421901 0.51125902 0.71003199 0.48421901 0.24287499 0.92492801 0.29243901\n\t\t 0.185157 0.90951902 0.372145 0.48006901 0.68964601 0.54214603 0.166692 0.89843702\n\t\t 0.40623301 0.189887 0.90591699 0.37849301 0.189887 0.90591699 0.37849301 0.52194399\n\t\t 0.705244 0.47979701 0.48006901 0.68964601 0.54214603 0.52194399 0.705244 0.47979701\n\t\t 0.189887 0.90591699 0.37849301 0.242963 0.936055 0.2545 0.242963 0.936055 0.2545\n\t\t 0.59124899 0.74314302 0.31331 0.52194399 0.705244 0.47979701 -0.13697 0.97914702\n\t\t 0.150032;\n\tsetAttr \".n[41998:42163]\" -type \"float3\"  0.242963 0.936055 0.2545 0.189887 0.90591699\n\t\t 0.37849301 0.189887 0.90591699 0.37849301 -0.168038 0.96189702 0.21567801 -0.13697\n\t\t 0.97914702 0.150032 -0.168038 0.96189702 0.21567801 0.189887 0.90591699 0.37849301\n\t\t 0.166692 0.89843702 0.40623301 0.166692 0.89843702 0.40623301 -0.17335001 0.96260798\n\t\t 0.20817199 -0.168038 0.96189702 0.21567801 -0.17335001 0.96260798 0.20817199 0.166692\n\t\t 0.89843702 0.40623301 0.185157 0.90951902 0.372145 0.185157 0.90951902 0.372145 -0.14097001\n\t\t 0.97824401 0.152201 -0.17335001 0.96260798 0.20817199 -0.14097001 0.97824401 0.152201\n\t\t 0.185157 0.90951902 0.372145 0.24287499 0.92492801 0.29243901 0.24287499 0.92492801\n\t\t 0.29243901 -0.070165001 0.99585199 0.057925999 -0.14097001 0.97824401 0.152201 0.84914303\n\t\t 0.429562 0.3073 0.59124899 0.74314302 0.31331 0.64013898 0.76566499 0.063083 0.59124899\n\t\t 0.74314302 0.31331 0.242963 0.936055 0.2545 0.290079 0.95563 0.051240999 0.290079\n\t\t 0.95563 0.051240999 0.64013898 0.76566499 0.063083 0.59124899 0.74314302 0.31331\n\t\t 0.64013898 0.76566499 0.063083 0.290079 0.95563 0.051240999 0.29652199 0.93916202\n\t\t -0.17334799 0.29652199 0.93916202 -0.17334799 0.63717598 0.74414599 -0.20063201 0.64013898\n\t\t 0.76566499 0.063083 0.89011198 0.45271599 0.052430999 0.64013898 0.76566499 0.063083\n\t\t 0.63717598 0.74414599 -0.20063201 0.63717598 0.74414599 -0.20063201 0.87816203 0.43401501\n\t\t -0.201153 0.89011198 0.45271599 0.052430999 0.99718899 0.068882003 0.029482 0.89011198\n\t\t 0.45271599 0.052430999 0.87816203 0.43401501 -0.201153 0.89011198 0.45271599 0.052430999\n\t\t 0.99718899 0.068882003 0.029482 0.96850902 0.048618 0.244187 0.93067598 -0.332809\n\t\t 0.151923 0.96850902 0.048618 0.244187 0.99718899 0.068882003 0.029482 0.99718899\n\t\t 0.068882003 0.029482 0.94716501 -0.32054299 0.011414 0.93067598 -0.332809 0.151923\n\t\t 0.75036901 -0.65856701 0.056887001 0.93067598 -0.332809 0.151923 0.94716501 -0.32054299\n\t\t 0.011414 0.94716501 -0.32054299 0.011414 0.75312299 -0.65784198 0.0070810001 0.75036901\n\t\t -0.65856701 0.056887001 0.75312299 -0.65784198 0.0070810001 0.94716501 -0.32054299\n\t\t 0.011414 0.93895698 -0.32738 -0.105749 0.93895698 -0.32738 -0.105749 0.748864 -0.662435\n\t\t -0.019562 0.75312299 -0.65784198 0.0070810001 0.748864 -0.662435 -0.019562 0.93895698\n\t\t -0.32738 -0.105749 0.91501898 -0.35273701 -0.195748 0.91501898 -0.35273701 -0.195748\n\t\t 0.74420798 -0.66745198 -0.025728 0.748864 -0.662435 -0.019562 0.74420798 -0.66745198\n\t\t -0.025728 0.91501898 -0.35273701 -0.195748 0.88475102 -0.387624 -0.25877199 0.88475102\n\t\t -0.387624 -0.25877199 0.74524701 -0.66659898 -0.015900001 0.74420798 -0.66745198\n\t\t -0.025728 0.883959 -0.053957999 -0.464441 0.88475102 -0.387624 -0.25877199 0.91501898\n\t\t -0.35273701 -0.195748 0.91501898 -0.35273701 -0.195748 0.94165999 0.012086 -0.33634901\n\t\t 0.883959 -0.053957999 -0.464441 0.94165999 0.012086 -0.33634901 0.91501898 -0.35273701\n\t\t -0.195748 0.93895698 -0.32738 -0.105749 0.93895698 -0.32738 -0.105749 0.983886 0.057163\n\t\t -0.169413 0.94165999 0.012086 -0.33634901 0.983886 0.057163 -0.169413 0.93895698\n\t\t -0.32738 -0.105749 0.94716501 -0.32054299 0.011414 0.94716501 -0.32054299 0.011414\n\t\t 0.99718899 0.068882003 0.029482 0.983886 0.057163 -0.169413 0.87816203 0.43401501\n\t\t -0.201153 0.983886 0.057163 -0.169413 0.99718899 0.068882003 0.029482 0.983886 0.057163\n\t\t -0.169413 0.87816203 0.43401501 -0.201153 0.82532799 0.37349299 -0.42348301 0.82532799\n\t\t 0.37349299 -0.42348301 0.94165999 0.012086 -0.33634901 0.983886 0.057163 -0.169413\n\t\t 0.94165999 0.012086 -0.33634901 0.82532799 0.37349299 -0.42348301 0.74824601 0.28599799\n\t\t -0.59860897 0.74824601 0.28599799 -0.59860897 0.883959 -0.053957999 -0.464441 0.94165999\n\t\t 0.012086 -0.33634901 0.502096 0.584131 -0.63772202 0.74824601 0.28599799 -0.59860897\n\t\t 0.82532799 0.37349299 -0.42348301 0.82532799 0.37349299 -0.42348301 0.585998 0.67914301\n\t\t -0.442009 0.502096 0.584131 -0.63772202 0.585998 0.67914301 -0.442009 0.82532799\n\t\t 0.37349299 -0.42348301 0.87816203 0.43401501 -0.201153 0.87816203 0.43401501 -0.201153\n\t\t 0.63717598 0.74414599 -0.20063201 0.585998 0.67914301 -0.442009 0.256758 0.88426399\n\t\t -0.390066 0.585998 0.67914301 -0.442009 0.63717598 0.74414599 -0.20063201 0.63717598\n\t\t 0.74414599 -0.20063201 0.29652199 0.93916202 -0.17334799 0.256758 0.88426399 -0.390066\n\t\t 0.585998 0.67914301 -0.442009 0.256758 0.88426399 -0.390066 0.180187 0.79805303 -0.57501698\n\t\t 0.180187 0.79805303 -0.57501698 0.502096 0.584131 -0.63772202 0.585998 0.67914301\n\t\t -0.442009 -0.17392901 0.88984799 -0.42180601 0.180187 0.79805303 -0.57501698 0.256758\n\t\t 0.88426399 -0.390066 0.256758 0.88426399 -0.390066 -0.116857 0.95326 -0.27863801\n\t\t -0.17392901 0.88984799 -0.42180601 -0.116857 0.95326 -0.27863801 0.256758 0.88426399\n\t\t -0.390066 0.29652199 0.93916202 -0.17334799 0.29652199 0.93916202 -0.17334799 -0.092074998\n\t\t 0.98800898 -0.123936 -0.116857 0.95326 -0.27863801 -0.092074998 0.98800898 -0.123936\n\t\t 0.29652199 0.93916202 -0.17334799 0.290079 0.95563 0.051240999 0.290079 0.95563 0.051240999\n\t\t -0.101963 0.99448299 0.024629001 -0.092074998 0.98800898 -0.123936 -0.101963 0.99448299\n\t\t 0.024629001 0.290079 0.95563 0.051240999 0.242963 0.936055 0.2545 0.242963 0.936055\n\t\t 0.2545 -0.13697 0.97914702 0.150032 -0.101963 0.99448299 0.024629001 0.74824601 0.28599799\n\t\t -0.59860897 0.502096 0.584131 -0.63772202 0.403797 0.47740901 -0.780402 0.403797\n\t\t 0.47740901 -0.780402 0.66076797 0.191294 -0.72580397;\n\tsetAttr \".n[42164:42329]\" -type \"float3\"  0.74824601 0.28599799 -0.59860897 0.883959\n\t\t -0.053957999 -0.464441 0.74824601 0.28599799 -0.59860897 0.66076797 0.191294 -0.72580397\n\t\t 0.66076797 0.191294 -0.72580397 0.82056397 -0.123419 -0.55807 0.883959 -0.053957999\n\t\t -0.464441 0.88475102 -0.387624 -0.25877199 0.883959 -0.053957999 -0.464441 0.82056397\n\t\t -0.123419 -0.55807 0.82056397 -0.123419 -0.55807 0.85441798 -0.42150199 -0.303819\n\t\t 0.88475102 -0.387624 -0.25877199 0.74524701 -0.66659898 -0.015900001 0.88475102 -0.387624\n\t\t -0.25877199 0.85441798 -0.42150199 -0.303819 0.85441798 -0.42150199 -0.303819 0.75251001\n\t\t -0.658571 -0.0036319999 0.74524701 -0.66659898 -0.015900001 0.75251001 -0.658571\n\t\t -0.0036319999 0.85441798 -0.42150199 -0.303819 0.82542998 -0.454191 -0.335226 0.82542998\n\t\t -0.454191 -0.335226 0.760809 -0.64895701 0.0049749999 0.75251001 -0.658571 -0.0036319999\n\t\t 0.760809 -0.64895701 0.0049749999 0.82542998 -0.454191 -0.335226 0.797921 -0.48568001\n\t\t -0.35698199 0.797921 -0.48568001 -0.35698199 0.76950997 -0.63855201 0.010346 0.760809\n\t\t -0.64895701 0.0049749999 0.76950997 -0.63855201 0.010346 0.797921 -0.48568001 -0.35698199\n\t\t 0.771478 -0.51669902 -0.37127301 0.771478 -0.51669902 -0.37127301 0.77847099 -0.62755603\n\t\t 0.012513 0.76950997 -0.63855201 0.010346 0.64273101 -0.327225 -0.69269103 0.771478\n\t\t -0.51669902 -0.37127301 0.797921 -0.48568001 -0.35698199 0.797921 -0.48568001 -0.35698199\n\t\t 0.69967699 -0.259624 -0.665618 0.64273101 -0.327225 -0.69269103 0.69967699 -0.259624\n\t\t -0.665618 0.797921 -0.48568001 -0.35698199 0.82542998 -0.454191 -0.335226 0.82542998\n\t\t -0.454191 -0.335226 0.758784 -0.192031 -0.62239099 0.69967699 -0.259624 -0.665618\n\t\t 0.758784 -0.192031 -0.62239099 0.82542998 -0.454191 -0.335226 0.85441798 -0.42150199\n\t\t -0.303819 0.85441798 -0.42150199 -0.303819 0.82056397 -0.123419 -0.55807 0.758784\n\t\t -0.192031 -0.62239099 0.57542902 0.096561 -0.812132 0.758784 -0.192031 -0.62239099\n\t\t 0.82056397 -0.123419 -0.55807 0.82056397 -0.123419 -0.55807 0.66076797 0.191294 -0.72580397\n\t\t 0.57542902 0.096561 -0.812132 0.758784 -0.192031 -0.62239099 0.57542902 0.096561\n\t\t -0.812132 0.494378 0.00235 -0.86924398 0.494378 0.00235 -0.86924398 0.69967699 -0.259624\n\t\t -0.665618 0.758784 -0.192031 -0.62239099 0.69967699 -0.259624 -0.665618 0.494378\n\t\t 0.00235 -0.86924398 0.416648 -0.091649003 -0.90443599 0.416648 -0.091649003 -0.90443599\n\t\t 0.64273101 -0.327225 -0.69269103 0.69967699 -0.259624 -0.665618 0.130712 0.15405899\n\t\t -0.97937799 0.416648 -0.091649003 -0.90443599 0.494378 0.00235 -0.86924398 0.494378\n\t\t 0.00235 -0.86924398 0.21726599 0.260786 -0.94063097 0.130712 0.15405899 -0.97937799\n\t\t 0.21726599 0.260786 -0.94063097 0.494378 0.00235 -0.86924398 0.57542902 0.096561\n\t\t -0.812132 0.57542902 0.096561 -0.812132 0.30772901 0.36892101 -0.87704098 0.21726599\n\t\t 0.260786 -0.94063097 0.30772901 0.36892101 -0.87704098 0.57542902 0.096561 -0.812132\n\t\t 0.66076797 0.191294 -0.72580397 0.66076797 0.191294 -0.72580397 0.403797 0.47740901\n\t\t -0.780402 0.30772901 0.36892101 -0.87704098 -0.0047920002 0.58791798 -0.80890602\n\t\t 0.30772901 0.36892101 -0.87704098 0.403797 0.47740901 -0.780402 0.403797 0.47740901\n\t\t -0.780402 0.087102003 0.69492602 -0.71378702 -0.0047920002 0.58791798 -0.80890602\n\t\t 0.087102003 0.69492602 -0.71378702 0.403797 0.47740901 -0.780402 0.502096 0.584131\n\t\t -0.63772202 0.502096 0.584131 -0.63772202 0.180187 0.79805303 -0.57501698 0.087102003\n\t\t 0.69492602 -0.71378702 0.30772901 0.36892101 -0.87704098 -0.0047920002 0.58791798\n\t\t -0.80890602 -0.091435 0.48140699 -0.87171501 -0.091435 0.48140699 -0.87171501 0.21726599\n\t\t 0.260786 -0.94063097 0.30772901 0.36892101 -0.87704098 0.21726599 0.260786 -0.94063097\n\t\t -0.091435 0.48140699 -0.87171501 -0.17450801 0.377673 -0.90934598 -0.17450801 0.377673\n\t\t -0.90934598 0.130712 0.15405899 -0.97937799 0.21726599 0.260786 -0.94063097 -0.45659599\n\t\t 0.54815298 -0.70074898 -0.17450801 0.377673 -0.90934598 -0.091435 0.48140699 -0.87171501\n\t\t -0.091435 0.48140699 -0.87171501 -0.389063 0.63273102 -0.66953802 -0.45659599 0.54815298\n\t\t -0.70074898 -0.389063 0.63273102 -0.66953802 -0.091435 0.48140699 -0.87171501 -0.0047920002\n\t\t 0.58791798 -0.80890602 -0.0047920002 0.58791798 -0.80890602 -0.319143 0.72017002\n\t\t -0.61603802 -0.389063 0.63273102 -0.66953802 -0.319143 0.72017002 -0.61603802 -0.0047920002\n\t\t 0.58791798 -0.80890602 0.087102003 0.69492602 -0.71378702 0.087102003 0.69492602\n\t\t -0.71378702 -0.246198 0.80765802 -0.53579402 -0.319143 0.72017002 -0.61603802 -0.246198\n\t\t 0.80765802 -0.53579402 0.087102003 0.69492602 -0.71378702 0.180187 0.79805303 -0.57501698\n\t\t 0.180187 0.79805303 -0.57501698 -0.17392901 0.88984799 -0.42180601 -0.246198 0.80765802\n\t\t -0.53579402 0.416648 -0.091649003 -0.90443599 0.130712 0.15405899 -0.97937799 0.037477002\n\t\t 0.043733999 -0.99834001 0.130712 0.15405899 -0.97937799 -0.17450801 0.377673 -0.90934598\n\t\t -0.26316401 0.274914 -0.924752 -0.26316401 0.274914 -0.924752 0.037477002 0.043733999\n\t\t -0.99834001 0.130712 0.15405899 -0.97937799 0.037477002 0.043733999 -0.99834001 -0.26316401\n\t\t 0.274914 -0.924752 -0.364885 0.16474099 -0.91636199 -0.364885 0.16474099 -0.91636199\n\t\t -0.073032998 -0.081609003 -0.993985 0.037477002 0.043733999 -0.99834001 0.332784\n\t\t -0.193646 -0.92290699 0.037477002 0.043733999 -0.99834001 -0.073032998 -0.081609003\n\t\t -0.993985 -0.073032998 -0.081609003 -0.993985 0.23133799 -0.31624299 -0.92004001\n\t\t 0.332784 -0.193646 -0.92290699 0.58023399 -0.40462601 -0.706828 0.332784 -0.193646\n\t\t -0.92290699 0.23133799 -0.31624299 -0.92004001 0.332784 -0.193646 -0.92290699 0.58023399\n\t\t -0.40462601 -0.706828 0.64273101 -0.327225 -0.69269103;\n\tsetAttr \".n[42330:42495]\" -type \"float3\"  0.771478 -0.51669902 -0.37127301 0.64273101\n\t\t -0.327225 -0.69269103 0.58023399 -0.40462601 -0.706828 0.58023399 -0.40462601 -0.706828\n\t\t 0.73959702 -0.55626899 -0.37889299 0.771478 -0.51669902 -0.37127301 0.77847099 -0.62755603\n\t\t 0.012513 0.771478 -0.51669902 -0.37127301 0.73959702 -0.55626899 -0.37889299 0.73959702\n\t\t -0.55626899 -0.37889299 0.78267002 -0.62232101 0.011994 0.77847099 -0.62755603 0.012513\n\t\t 0.78267002 -0.62232101 0.011994 0.73959702 -0.55626899 -0.37889299 0.69465601 -0.61371797\n\t\t -0.375238 0.69465601 -0.61371797 -0.375238 0.77780902 -0.62838697 0.011964 0.78267002\n\t\t -0.62232101 0.011994 0.77780902 -0.62838697 0.011964 0.69465601 -0.61371797 -0.375238\n\t\t 0.634951 -0.68872499 -0.34999299 0.634951 -0.68872499 -0.34999299 0.76463097 -0.64420098\n\t\t 0.018556001 0.77780902 -0.62838697 0.011964 0.76463097 -0.64420098 0.018556001 0.634951\n\t\t -0.68872499 -0.34999299 0.56057799 -0.77460903 -0.29280201 0.56057799 -0.77460903\n\t\t -0.29280201 0.74445498 -0.66669202 0.036164999 0.76463097 -0.64420098 0.018556001\n\t\t 0.28474799 -0.76274598 -0.58063501 0.56057799 -0.77460903 -0.29280201 0.634951 -0.68872499\n\t\t -0.34999299 0.634951 -0.68872499 -0.34999299 0.403593 -0.62623501 -0.66703999 0.28474799\n\t\t -0.76274598 -0.58063501 0.403593 -0.62623501 -0.66703999 0.634951 -0.68872499 -0.34999299\n\t\t 0.69465601 -0.61371797 -0.375238 0.69465601 -0.61371797 -0.375238 0.50207102 -0.50368899\n\t\t -0.70300901 0.403593 -0.62623501 -0.66703999 0.50207102 -0.50368899 -0.70300901 0.69465601\n\t\t -0.61371797 -0.375238 0.73959702 -0.55626899 -0.37889299 0.73959702 -0.55626899 -0.37889299\n\t\t 0.58023399 -0.40462601 -0.706828 0.50207102 -0.50368899 -0.70300901 0.23133799 -0.31624299\n\t\t -0.92004001 0.50207102 -0.50368899 -0.70300901 0.58023399 -0.40462601 -0.706828 0.50207102\n\t\t -0.50368899 -0.70300901 0.23133799 -0.31624299 -0.92004001 0.106025 -0.46362299 -0.87966597\n\t\t 0.106025 -0.46362299 -0.87966597 0.403593 -0.62623501 -0.66703999 0.50207102 -0.50368899\n\t\t -0.70300901 0.403593 -0.62623501 -0.66703999 0.106025 -0.46362299 -0.87966597 -0.040589999\n\t\t -0.626975 -0.77798098 -0.040589999 -0.626975 -0.77798098 0.28474799 -0.76274598 -0.58063501\n\t\t 0.403593 -0.62623501 -0.66703999 -0.35774201 -0.38939101 -0.84876102 -0.040589999\n\t\t -0.626975 -0.77798098 0.106025 -0.46362299 -0.87966597 0.106025 -0.46362299 -0.87966597\n\t\t -0.206644 -0.22770201 -0.95155102 -0.35774201 -0.38939101 -0.84876102 -0.206644 -0.22770201\n\t\t -0.95155102 0.106025 -0.46362299 -0.87966597 0.23133799 -0.31624299 -0.92004001 0.23133799\n\t\t -0.31624299 -0.92004001 -0.073032998 -0.081609003 -0.993985 -0.206644 -0.22770201\n\t\t -0.95155102 -0.483576 0.041627999 -0.87431198 -0.206644 -0.22770201 -0.95155102 -0.073032998\n\t\t -0.081609003 -0.993985 -0.073032998 -0.081609003 -0.993985 -0.364885 0.16474099 -0.91636199\n\t\t -0.483576 0.041627999 -0.87431198 -0.206644 -0.22770201 -0.95155102 -0.483576 0.041627999\n\t\t -0.87431198 -0.61319298 -0.093023002 -0.784437 -0.61319298 -0.093023002 -0.784437\n\t\t -0.35774201 -0.38939101 -0.84876102 -0.206644 -0.22770201 -0.95155102 -0.77070999\n\t\t 0.21299499 -0.60053301 -0.61319298 -0.093023002 -0.784437 -0.483576 0.041627999 -0.87431198\n\t\t -0.483576 0.041627999 -0.87431198 -0.68414497 0.302077 -0.663849 -0.77070999 0.21299499\n\t\t -0.60053301 -0.68414497 0.302077 -0.663849 -0.483576 0.041627999 -0.87431198 -0.364885\n\t\t 0.16474099 -0.91636199 -0.364885 0.16474099 -0.91636199 -0.60163403 0.38680601 -0.69886899\n\t\t -0.68414497 0.302077 -0.663849 -0.60163403 0.38680601 -0.69886899 -0.364885 0.16474099\n\t\t -0.91636199 -0.26316401 0.274914 -0.924752 -0.26316401 0.274914 -0.924752 -0.52651399\n\t\t 0.46745899 -0.71011603 -0.60163403 0.38680601 -0.69886899 -0.52651399 0.46745899\n\t\t -0.71011603 -0.26316401 0.274914 -0.924752 -0.17450801 0.377673 -0.90934598 -0.17450801\n\t\t 0.377673 -0.90934598 -0.45659599 0.54815298 -0.70074898 -0.52651399 0.46745899 -0.71011603\n\t\t -0.040589999 -0.626975 -0.77798098 -0.35774201 -0.38939101 -0.84876102 -0.48016 -0.523467\n\t\t -0.70386702 -0.48016 -0.523467 -0.70386702 -0.165659 -0.75514197 -0.63428497 -0.040589999\n\t\t -0.626975 -0.77798098 0.28474799 -0.76274598 -0.58063501 -0.040589999 -0.626975 -0.77798098\n\t\t -0.165659 -0.75514197 -0.63428497 -0.165659 -0.75514197 -0.63428497 0.177255 -0.86771798\n\t\t -0.464378 0.28474799 -0.76274598 -0.58063501 0.56057799 -0.77460903 -0.29280201 0.28474799\n\t\t -0.76274598 -0.58063501 0.177255 -0.86771798 -0.464378 0.177255 -0.86771798 -0.464378\n\t\t 0.49077299 -0.84253198 -0.221994 0.56057799 -0.77460903 -0.29280201 0.74445498 -0.66669202\n\t\t 0.036164999 0.56057799 -0.77460903 -0.29280201 0.49077299 -0.84253198 -0.221994 0.49077299\n\t\t -0.84253198 -0.221994 0.72479099 -0.68688601 0.05353 0.74445498 -0.66669202 0.036164999\n\t\t 0.72479099 -0.68688601 0.05353 0.49077299 -0.84253198 -0.221994 0.44911799 -0.879282\n\t\t -0.15860701 0.44911799 -0.879282 -0.15860701 0.716317 -0.69464803 0.065982997 0.72479099\n\t\t -0.68688601 0.05353 0.716317 -0.69464803 0.065982997 0.44911799 -0.879282 -0.15860701\n\t\t 0.42882299 -0.89787 -0.099706002 0.42882299 -0.89787 -0.099706002 0.72129798 -0.68958801\n\t\t 0.064792998 0.716317 -0.69464803 0.065982997 0.72129798 -0.68958801 0.064792998 0.42882299\n\t\t -0.89787 -0.099706002 0.42284399 -0.90510899 -0.044496998 0.42284399 -0.90510899\n\t\t -0.044496998 0.73151499 -0.68076098 0.038088001 0.72129798 -0.68958801 0.064792998\n\t\t 0.04941 -0.99182898 -0.117619 0.42284399 -0.90510899 -0.044496998 0.42882299 -0.89787\n\t\t -0.099706002 0.42882299 -0.89787 -0.099706002 0.070499003 -0.96672201 -0.245923 0.04941\n\t\t -0.99182898 -0.117619 0.070499003 -0.96672201 -0.245923 0.42882299 -0.89787 -0.099706002\n\t\t 0.44911799 -0.879282 -0.15860701 0.44911799 -0.879282 -0.15860701 0.111363 -0.92734498\n\t\t -0.35725299 0.070499003 -0.96672201 -0.245923 0.111363 -0.92734498 -0.35725299;\n\tsetAttr \".n[42496:42661]\" -type \"float3\"  0.44911799 -0.879282 -0.15860701 0.49077299\n\t\t -0.84253198 -0.221994 0.49077299 -0.84253198 -0.221994 0.177255 -0.86771798 -0.464378\n\t\t 0.111363 -0.92734498 -0.35725299 -0.242962 -0.831249 -0.49999401 0.111363 -0.92734498\n\t\t -0.35725299 0.177255 -0.86771798 -0.464378 0.177255 -0.86771798 -0.464378 -0.165659\n\t\t -0.75514197 -0.63428497 -0.242962 -0.831249 -0.49999401 0.111363 -0.92734498 -0.35725299\n\t\t -0.242962 -0.831249 -0.49999401 -0.297683 -0.88673103 -0.35368499 -0.297683 -0.88673103\n\t\t -0.35368499 0.070499003 -0.96672201 -0.245923 0.111363 -0.92734498 -0.35725299 0.070499003\n\t\t -0.96672201 -0.245923 -0.297683 -0.88673103 -0.35368499 -0.334948 -0.92638099 -0.17212801\n\t\t -0.334948 -0.92638099 -0.17212801 0.04941 -0.99182898 -0.117619 0.070499003 -0.96672201\n\t\t -0.245923 -0.66794097 -0.71643698 -0.201426 -0.334948 -0.92638099 -0.17212801 -0.297683\n\t\t -0.88673103 -0.35368499 -0.297683 -0.88673103 -0.35368499 -0.61838198 -0.67136401\n\t\t -0.408501 -0.66794097 -0.71643698 -0.201426 -0.61838198 -0.67136401 -0.408501 -0.297683\n\t\t -0.88673103 -0.35368499 -0.242962 -0.831249 -0.49999401 -0.242962 -0.831249 -0.49999401\n\t\t -0.55744499 -0.60743701 -0.565929 -0.61838198 -0.67136401 -0.408501 -0.55744499 -0.60743701\n\t\t -0.565929 -0.242962 -0.831249 -0.49999401 -0.165659 -0.75514197 -0.63428497 -0.165659\n\t\t -0.75514197 -0.63428497 -0.48016 -0.523467 -0.70386702 -0.55744499 -0.60743701 -0.565929\n\t\t -0.78529602 -0.29103401 -0.54645097 -0.55744499 -0.60743701 -0.565929 -0.48016 -0.523467\n\t\t -0.70386702 -0.48016 -0.523467 -0.70386702 -0.71670699 -0.212107 -0.66433603 -0.78529602\n\t\t -0.29103401 -0.54645097 -0.71670699 -0.212107 -0.66433603 -0.48016 -0.523467 -0.70386702\n\t\t -0.35774201 -0.38939101 -0.84876102 -0.35774201 -0.38939101 -0.84876102 -0.61319298\n\t\t -0.093023002 -0.784437 -0.71670699 -0.212107 -0.66433603 -0.55744499 -0.60743701\n\t\t -0.565929 -0.78529602 -0.29103401 -0.54645097 -0.84464198 -0.352341 -0.40303299 -0.84464198\n\t\t -0.352341 -0.40303299 -0.61838198 -0.67136401 -0.408501 -0.55744499 -0.60743701 -0.565929\n\t\t -0.61838198 -0.67136401 -0.408501 -0.84464198 -0.352341 -0.40303299 -0.89727902 -0.392941\n\t\t -0.201216 -0.89727902 -0.392941 -0.201216 -0.66794097 -0.71643698 -0.201426 -0.61838198\n\t\t -0.67136401 -0.408501 -0.98539501 -0.0068979999 -0.17014299 -0.89727902 -0.392941\n\t\t -0.201216 -0.84464198 -0.352341 -0.40303299 -0.84464198 -0.352341 -0.40303299 -0.94166201\n\t\t 0.023499001 -0.33573899 -0.98539501 -0.0068979999 -0.17014299 -0.94166201 0.023499001\n\t\t -0.33573899 -0.84464198 -0.352341 -0.40303299 -0.78529602 -0.29103401 -0.54645097\n\t\t -0.78529602 -0.29103401 -0.54645097 -0.89341497 0.070377 -0.44368601 -0.94166201\n\t\t 0.023499001 -0.33573899 -0.89341497 0.070377 -0.44368601 -0.78529602 -0.29103401\n\t\t -0.54645097 -0.71670699 -0.212107 -0.66433603 -0.71670699 -0.212107 -0.66433603 -0.84206498\n\t\t 0.12952501 -0.52359301 -0.89341497 0.070377 -0.44368601 -0.84206498 0.12952501 -0.52359301\n\t\t -0.71670699 -0.212107 -0.66433603 -0.61319298 -0.093023002 -0.784437 -0.61319298\n\t\t -0.093023002 -0.784437 -0.77070999 0.21299499 -0.60053301 -0.84206498 0.12952501\n\t\t -0.52359301 -0.35427001 -0.934416 -0.036867999 -0.334948 -0.92638099 -0.17212801\n\t\t -0.66794097 -0.71643698 -0.201426 0.04941 -0.99182898 -0.117619 -0.334948 -0.92638099\n\t\t -0.17212801 -0.35427001 -0.934416 -0.036867999 -0.35427001 -0.934416 -0.036867999\n\t\t 0.032288998 -0.99915802 -0.025331 0.04941 -0.99182898 -0.117619 0.04941 -0.99182898\n\t\t -0.117619 0.032288998 -0.99915802 -0.025331 0.412074 -0.911098 -0.0097970003 0.412074\n\t\t -0.911098 -0.0097970003 0.42284399 -0.90510899 -0.044496998 0.04941 -0.99182898 -0.117619\n\t\t 0.73151499 -0.68076098 0.038088001 0.42284399 -0.90510899 -0.044496998 0.412074 -0.911098\n\t\t -0.0097970003 -0.89727902 -0.392941 -0.201216 -0.98539501 -0.0068979999 -0.17014299\n\t\t -0.99909002 -0.02176 -0.036683001 -0.99909002 -0.02176 -0.036683001 -0.91332698 -0.404964\n\t\t -0.042879999 -0.89727902 -0.392941 -0.201216 -0.66794097 -0.71643698 -0.201426 -0.89727902\n\t\t -0.392941 -0.201216 -0.91332698 -0.404964 -0.042879999 -0.66794097 -0.71643698 -0.201426\n\t\t -0.686593 -0.72578001 -0.042819001 -0.35427001 -0.934416 -0.036867999 -0.91332698\n\t\t -0.404964 -0.042879999 -0.686593 -0.72578001 -0.042819001 -0.66794097 -0.71643698\n\t\t -0.201426 -0.027101001 -0.99120599 0.12952401 0.307448 -0.900612 0.30720299 0.264599\n\t\t -0.90186501 0.34150699 0.264599 -0.90186501 0.34150699 -0.040346 -0.99389702 0.102668\n\t\t -0.027101001 -0.99120599 0.12952401 0.09928 -0.989685 -0.103278 0.46080801 -0.88703603\n\t\t -0.028688001 0.44762501 -0.89412099 0.013398 0.44762501 -0.89412099 0.013398 0.074132003\n\t\t -0.99700397 0.022066001 0.09928 -0.989685 -0.103278 0.96850902 0.048618 0.244187\n\t\t 0.84914303 0.429562 0.3073 0.89011198 0.45271599 0.052430999 0.64013898 0.76566499\n\t\t 0.063083 0.89011198 0.45271599 0.052430999 0.84914303 0.429562 0.3073 0.15326899\n\t\t -0.894068 0.420894 0.487207 -0.84446299 0.222515 0.53118801 -0.79554498 0.29145899\n\t\t 0.53118801 -0.79554498 0.29145899 0.227825 -0.81232703 0.53686202 0.15326899 -0.894068\n\t\t 0.420894 0.44411901 -0.55078501 0.70667797 0.66166401 -0.63883501 0.39254299 0.70184499\n\t\t -0.59017497 0.39888299 0.70184499 -0.59017497 0.39888299 0.51391101 -0.46715501 0.71948701\n\t\t 0.44411901 -0.55078501 0.70667797 0.64273101 -0.327225 -0.69269103 0.416648 -0.091649003\n\t\t -0.90443599 0.332784 -0.193646 -0.92290699 0.037477002 0.043733999 -0.99834001 0.332784\n\t\t -0.193646 -0.92290699 0.416648 -0.091649003 -0.90443599 0.76181501 -0.19349 0.61822301\n\t\t 0.81290901 -0.462762 0.35359499 0.84470803 -0.43053299 0.31797901 0.84470803 -0.43053299\n\t\t 0.31797901 0.83766001 -0.113073 0.53435999 0.76181501 -0.19349 0.61822301 0.93849897\n\t\t -0.0097660003 0.34514299 0.89942402 -0.37696999 0.221201;\n\tsetAttr \".n[42662:42827]\" -type \"float3\"  0.927486 -0.355124 0.116859 0.927486\n\t\t -0.355124 0.116859 0.98334599 0.023042001 0.18027499 0.93849897 -0.0097660003 0.34514299\n\t\t 0.98334599 0.023042001 0.18027499 0.927486 -0.355124 0.116859 0.93466598 -0.35459599\n\t\t 0.025727 0.93466598 -0.35459599 0.025727 0.99879003 0.028291 0.040224001 0.98334599\n\t\t 0.023042001 0.18027499 0.99965602 0.026216 0 0.99879003 0.028291 0.040224001 0.93466598\n\t\t -0.35459599 0.025727 0.93466598 -0.35459599 0.025727 0.933599 -0.35832 0 0.99965602\n\t\t 0.026216 0 0 1 0 -0.382682 0.92387998 0 -0.36995101 0.92750102 -0.053652 -0.36995101\n\t\t 0.92750102 -0.053652 0.012085 0.99972302 -0.020204 0 1 0 0.012085 0.99972302 -0.020204\n\t\t -0.36995101 0.92750102 -0.053652 -0.330185 0.92237401 -0.20051 -0.330185 0.92237401\n\t\t -0.20051 0.032533001 0.99675798 -0.073582001 0.012085 0.99972302 -0.020204 0.050783999\n\t\t 0.99080902 -0.12537301 0.032533001 0.99675798 -0.073582001 -0.330185 0.92237401 -0.20051\n\t\t -0.330185 0.92237401 -0.20051 -0.27165201 0.90318602 -0.33235499 0.050783999 0.99080902\n\t\t -0.12537301 -0.55242699 0.66855198 -0.497859 -0.27165201 0.90318602 -0.33235499 -0.330185\n\t\t 0.92237401 -0.20051 -0.330185 0.92237401 -0.20051 -0.644831 0.69747502 -0.31260401\n\t\t -0.55242699 0.66855198 -0.497859 -0.644831 0.69747502 -0.31260401 -0.330185 0.92237401\n\t\t -0.20051 -0.36995101 0.92750102 -0.053652 -0.36995101 0.92750102 -0.053652 -0.69755\n\t\t 0.71171099 -0.083012998 -0.644831 0.69747502 -0.31260401 -0.70710701 0.70710701 0\n\t\t -0.69755 0.71171099 -0.083012998 -0.36995101 0.92750102 -0.053652 -0.36995101 0.92750102\n\t\t -0.053652 -0.382682 0.92387998 0 -0.70710701 0.70710701 0 -0.918787 0.38256001 -0.097356997\n\t\t -0.69755 0.71171099 -0.083012998 -0.70710701 0.70710701 0 -0.70710701 0.70710701\n\t\t 0 -0.92387998 0.38268101 0 -0.918787 0.38256001 -0.097356997 -0.69755 0.71171099\n\t\t -0.083012998 -0.918787 0.38256001 -0.097356997 -0.85695702 0.36345601 -0.36541 -0.85695702\n\t\t 0.36345601 -0.36541 -0.644831 0.69747502 -0.31260401 -0.69755 0.71171099 -0.083012998\n\t\t -0.644831 0.69747502 -0.31260401 -0.85695702 0.36345601 -0.36541 -0.74079901 0.33507299\n\t\t -0.58218902 -0.74079901 0.33507299 -0.58218902 -0.55242699 0.66855198 -0.497859 -0.644831\n\t\t 0.69747502 -0.31260401 -0.81965798 -0.04349 -0.57120001 -0.74079901 0.33507299 -0.58218902\n\t\t -0.85695702 0.36345601 -0.36541 -0.85695702 0.36345601 -0.36541 -0.93751299 -0.025697\n\t\t -0.34700099 -0.81965798 -0.04349 -0.57120001 -0.93751299 -0.025697 -0.34700099 -0.85695702\n\t\t 0.36345601 -0.36541 -0.918787 0.38256001 -0.097356997 -0.918787 0.38256001 -0.097356997\n\t\t -0.99588799 -0.0068979999 -0.090334997 -0.93751299 -0.025697 -0.34700099 -1 0 0 -0.99588799\n\t\t -0.0068979999 -0.090334997 -0.918787 0.38256001 -0.097356997 -0.918787 0.38256001\n\t\t -0.097356997 -0.92387998 0.38268101 0 -1 0 0 -0.9174 -0.392382 -0.066440001 -0.99588799\n\t\t -0.0068979999 -0.090334997 -1 0 0 -1 0 0 -0.92387998 -0.382682 0 -0.9174 -0.392382\n\t\t -0.066440001 -0.99588799 -0.0068979999 -0.090334997 -0.9174 -0.392382 -0.066440001\n\t\t -0.87288302 -0.40914199 -0.265854 -0.87288302 -0.40914199 -0.265854 -0.93751299 -0.025697\n\t\t -0.34700099 -0.99588799 -0.0068979999 -0.090334997 -0.93751299 -0.025697 -0.34700099\n\t\t -0.87288302 -0.40914199 -0.265854 -0.77994502 -0.41609699 -0.467491 -0.77994502 -0.41609699\n\t\t -0.467491 -0.81965798 -0.04349 -0.57120001 -0.93751299 -0.025697 -0.34700099 -0.61832201\n\t\t -0.72981 -0.29164299 -0.77994502 -0.41609699 -0.467491 -0.87288302 -0.40914199 -0.265854\n\t\t -0.87288302 -0.40914199 -0.265854 -0.66888303 -0.727754 -0.151557 -0.61832201 -0.72981\n\t\t -0.29164299 -0.66888303 -0.727754 -0.151557 -0.87288302 -0.40914199 -0.265854 -0.9174\n\t\t -0.392382 -0.066440001 -0.9174 -0.392382 -0.066440001 -0.69824702 -0.71491098 -0.036805999\n\t\t -0.66888303 -0.727754 -0.151557 -0.70710701 -0.70710701 0 -0.69824702 -0.71491098\n\t\t -0.036805999 -0.9174 -0.392382 -0.066440001 -0.9174 -0.392382 -0.066440001 -0.92387998\n\t\t -0.382682 0 -0.70710701 -0.70710701 0 -0.374594 -0.92714697 -0.0088200001 -0.69824702\n\t\t -0.71491098 -0.036805999 -0.70710701 -0.70710701 0 -0.70710701 -0.70710701 0 -0.38268101\n\t\t -0.92387998 0 -0.374594 -0.92714697 -0.0088200001 -0.69824702 -0.71491098 -0.036805999\n\t\t -0.374594 -0.92714697 -0.0088200001 -0.360432 -0.932181 -0.033571001 -0.360432 -0.932181\n\t\t -0.033571001 -0.66888303 -0.727754 -0.151557 -0.69824702 -0.71491098 -0.036805999\n\t\t -0.66888303 -0.727754 -0.151557 -0.360432 -0.932181 -0.033571001 -0.353782 -0.93188298\n\t\t -0.080205001 -0.353782 -0.93188298 -0.080205001 -0.61832201 -0.72981 -0.29164299\n\t\t -0.66888303 -0.727754 -0.151557 -0.027101001 -0.99120599 0.12952401 -0.353782 -0.93188298\n\t\t -0.080205001 -0.360432 -0.932181 -0.033571001 -0.360432 -0.932181 -0.033571001 0.0054939999\n\t\t -0.99737 0.072269998 -0.027101001 -0.99120599 0.12952401 0.0054939999 -0.99737 0.072269998\n\t\t -0.360432 -0.932181 -0.033571001 -0.374594 -0.92714697 -0.0088200001 -0.374594 -0.92714697\n\t\t -0.0088200001 0.0057680001 -0.999874 0.014771 0.0054939999 -0.99737 0.072269998 0\n\t\t -1 0 0.0057680001 -0.999874 0.014771 -0.374594 -0.92714697 -0.0088200001 -0.374594\n\t\t -0.92714697 -0.0088200001 -0.38268101 -0.92387998 0 0 -1 0 0 -1 0 0.382682 -0.92387998\n\t\t 0 0.38514701 -0.92224699 0.03351 0.38514701 -0.92224699 0.03351 0.0057680001 -0.999874\n\t\t 0.014771 0 -1 0;\n\tsetAttr \".n[42828:42993]\" -type \"float3\"  0.38514701 -0.92224699 0.03351 0.382682\n\t\t -0.92387998 0 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0 0.707452 -0.70519298\n\t\t 0.047060002 0.38514701 -0.92224699 0.03351 0.38514701 -0.92224699 0.03351 0.707452\n\t\t -0.70519298 0.047060002 0.68480301 -0.69524097 0.21836901 0.68480301 -0.69524097\n\t\t 0.21836901 0.371535 -0.91495001 0.15756799 0.38514701 -0.92224699 0.03351 0.0057680001\n\t\t -0.999874 0.014771 0.38514701 -0.92224699 0.03351 0.371535 -0.91495001 0.15756799\n\t\t 0.371535 -0.91495001 0.15756799 0.0054939999 -0.99737 0.072269998 0.0057680001 -0.999874\n\t\t 0.014771 0.371535 -0.91495001 0.15756799 0.68480301 -0.69524097 0.21836901 0.59833097\n\t\t -0.67328602 0.43438101 0.59833097 -0.67328602 0.43438101 0.307448 -0.900612 0.30720299\n\t\t 0.371535 -0.91495001 0.15756799 0.92281902 -0.38134101 0.05463 0.707452 -0.70519298\n\t\t 0.047060002 0.70710701 -0.70710701 0 0.70710701 -0.70710701 0 0.92387998 -0.38268101\n\t\t 0 0.92281902 -0.38134101 0.05463 0.707452 -0.70519298 0.047060002 0.92281902 -0.38134101\n\t\t 0.05463 0.89443499 -0.370781 0.250016 0.89443499 -0.370781 0.250016 0.68480301 -0.69524097\n\t\t 0.21836901 0.707452 -0.70519298 0.047060002 0.68480301 -0.69524097 0.21836901 0.89443499\n\t\t -0.370781 0.250016 0.79624701 -0.34413499 0.49755499 0.79624701 -0.34413499 0.49755499\n\t\t 0.59833097 -0.67328602 0.43438101 0.68480301 -0.69524097 0.21836901 0.87066501 0.035188001\n\t\t 0.49061701 0.79624701 -0.34413499 0.49755499 0.89443499 -0.370781 0.250016 0.89443499\n\t\t -0.370781 0.250016 0.96846801 0.0090340003 0.24897601 0.87066501 0.035188001 0.49061701\n\t\t 0.96846801 0.0090340003 0.24897601 0.89443499 -0.370781 0.250016 0.92281902 -0.38134101\n\t\t 0.05463 0.92281902 -0.38134101 0.05463 0.99847102 0.000244 0.055271 0.96846801 0.0090340003\n\t\t 0.24897601 1 0 0 0.99847102 0.000244 0.055271 0.92281902 -0.38134101 0.05463 0.92281902\n\t\t -0.38134101 0.05463 0.92387998 -0.38268101 0 1 0 0 0.92319399 0.381302 0.048188999\n\t\t 0.99847102 0.000244 0.055271 1 0 0 1 0 0 0.92387998 0.382682 0 0.92319399 0.381302\n\t\t 0.048188999 0.99847102 0.000244 0.055271 0.92319399 0.381302 0.048188999 0.89740598\n\t\t 0.38569701 0.214242 0.89740598 0.38569701 0.214242 0.96846801 0.0090340003 0.24897601\n\t\t 0.99847102 0.000244 0.055271 0.96846801 0.0090340003 0.24897601 0.89740598 0.38569701\n\t\t 0.214242 0.81397003 0.40623701 0.41523999 0.81397003 0.40623701 0.41523999 0.87066501\n\t\t 0.035188001 0.49061701 0.96846801 0.0090340003 0.24897601 0.64005101 0.71601403 0.27867201\n\t\t 0.81397003 0.40623701 0.41523999 0.89740598 0.38569701 0.214242 0.89740598 0.38569701\n\t\t 0.214242 0.69602501 0.70295298 0.14631 0.64005101 0.71601403 0.27867201 0.69602501\n\t\t 0.70295298 0.14631 0.89740598 0.38569701 0.214242 0.92319399 0.381302 0.048188999\n\t\t 0.92319399 0.381302 0.048188999 0.70960099 0.70383298 0.032961 0.69602501 0.70295298\n\t\t 0.14631 0.70710701 0.70710701 0 0.70960099 0.70383298 0.032961 0.92319399 0.381302\n\t\t 0.048188999 0.92319399 0.381302 0.048188999 0.92387998 0.382682 0 0.70710701 0.70710701\n\t\t 0 0.38985199 0.92082602 0.0097660003 0.70960099 0.70383298 0.032961 0.70710701 0.70710701\n\t\t 0 0.70710701 0.70710701 0 0.38268101 0.92387998 0 0.38985199 0.92082602 0.0097660003\n\t\t 0.70960099 0.70383298 0.032961 0.38985199 0.92082602 0.0097660003 0.39375901 0.91798902\n\t\t 0.047426999 0.39375901 0.91798902 0.047426999 0.69602501 0.70295298 0.14631 0.70960099\n\t\t 0.70383298 0.032961 0.69602501 0.70295298 0.14631 0.39375901 0.91798902 0.047426999\n\t\t 0.37392199 0.92284203 0.092442997 0.37392199 0.92284203 0.092442997 0.64005101 0.71601403\n\t\t 0.27867201 0.69602501 0.70295298 0.14631 0.050783999 0.99080902 -0.12537301 0.37392199\n\t\t 0.92284203 0.092442997 0.39375901 0.91798902 0.047426999 0.39375901 0.91798902 0.047426999\n\t\t 0.032533001 0.99675798 -0.073582001 0.050783999 0.99080902 -0.12537301 0.032533001\n\t\t 0.99675798 -0.073582001 0.39375901 0.91798902 0.047426999 0.38985199 0.92082602 0.0097660003\n\t\t 0.38985199 0.92082602 0.0097660003 0.012085 0.99972302 -0.020204 0.032533001 0.99675798\n\t\t -0.073582001 0 1 0 0.012085 0.99972302 -0.020204 0.38985199 0.92082602 0.0097660003\n\t\t 0.38985199 0.92082602 0.0097660003 0.38268101 0.92387998 0 0 1 0 0.0054939999 -0.99737\n\t\t 0.072269998 0.371535 -0.91495001 0.15756799 0.307448 -0.900612 0.30720299 0.307448\n\t\t -0.900612 0.30720299 -0.027101001 -0.99120599 0.12952401 0.0054939999 -0.99737 0.072269998\n\t\t -0.38633901 0.92234099 -0.0053409999 -0.41869199 0.90696597 0.045931 -0.076695003\n\t\t 0.98177803 0.173869 -0.076695003 0.98177803 0.173869 -0.022035001 0.99689299 0.075625002\n\t\t -0.38633901 0.92234099 -0.0053409999 -0.076695003 0.98177803 0.173869 -0.41869199\n\t\t 0.90696597 0.045931 -0.45803499 0.88179499 0.112433 -0.45803499 0.88179499 0.112433\n\t\t -0.13471 0.95389003 0.26822799 -0.076695003 0.98177803 0.173869 -0.13471 0.95389003\n\t\t 0.26822799 -0.45803499 0.88179499 0.112433 -0.49853 0.85221601 0.15873 -0.49853 0.85221601\n\t\t 0.15873 -0.18461099 0.92454797 0.333361 -0.13471 0.95389003 0.26822799 -0.75885803\n\t\t 0.64965999 -0.045565002 -0.49853 0.85221601 0.15873 -0.45803499 0.88179499 0.112433\n\t\t -0.45803499 0.88179499 0.112433 -0.73294598 0.67730999 -0.063570999 -0.75885803 0.64965999\n\t\t -0.045565002 -0.73294598 0.67730999 -0.063570999 -0.45803499 0.88179499 0.112433\n\t\t -0.41869199 0.90696597 0.045931 -0.41869199 0.90696597 0.045931;\n\tsetAttr \".n[42994:43159]\" -type \"float3\"  -0.70887297 0.69947201 -0.090764999 -0.73294598\n\t\t 0.67730999 -0.063570999 -0.70887297 0.69947201 -0.090764999 -0.41869199 0.90696597\n\t\t 0.045931 -0.38633901 0.92234099 -0.0053409999 -0.38633901 0.92234099 -0.0053409999\n\t\t -0.69544101 0.71314198 -0.088261999 -0.70887297 0.69947201 -0.090764999 -0.90192997\n\t\t 0.369982 -0.222789 -0.70887297 0.69947201 -0.090764999 -0.69544101 0.71314198 -0.088261999\n\t\t -0.69544101 0.71314198 -0.088261999 -0.90858102 0.38374501 -0.164986 -0.90192997\n\t\t 0.369982 -0.222789 -0.70887297 0.69947201 -0.090764999 -0.90192997 0.369982 -0.222789\n\t\t -0.90355802 0.35109499 -0.24559 -0.90355802 0.35109499 -0.24559 -0.73294598 0.67730999\n\t\t -0.063570999 -0.70887297 0.69947201 -0.090764999 -0.73294598 0.67730999 -0.063570999\n\t\t -0.90355802 0.35109499 -0.24559 -0.907332 0.32856801 -0.262281 -0.907332 0.32856801\n\t\t -0.262281 -0.75885803 0.64965999 -0.045565002 -0.73294598 0.67730999 -0.063570999\n\t\t -0.888699 -0.056338999 -0.45501599 -0.907332 0.32856801 -0.262281 -0.90355802 0.35109499\n\t\t -0.24559 -0.90355802 0.35109499 -0.24559 -0.91372901 -0.043612 -0.40397599 -0.888699\n\t\t -0.056338999 -0.45501599 -0.91372901 -0.043612 -0.40397599 -0.90355802 0.35109499\n\t\t -0.24559 -0.90192997 0.369982 -0.222789 -0.90192997 0.369982 -0.222789 -0.94363099\n\t\t -0.028231001 -0.32979301 -0.91372901 -0.043612 -0.40397599 -0.94363099 -0.028231001\n\t\t -0.32979301 -0.90192997 0.369982 -0.222789 -0.90858102 0.38374501 -0.164986 -0.90858102\n\t\t 0.38374501 -0.164986 -0.97627097 -0.012391 -0.216196 -0.94363099 -0.028231001 -0.32979301\n\t\t -0.82221502 -0.41530401 -0.38920999 -0.94363099 -0.028231001 -0.32979301 -0.97627097\n\t\t -0.012391 -0.216196 -0.97627097 -0.012391 -0.216196 -0.88515902 -0.403072 -0.232437\n\t\t -0.82221502 -0.41530401 -0.38920999 -0.94363099 -0.028231001 -0.32979301 -0.82221502\n\t\t -0.41530401 -0.38920999 -0.75670099 -0.41860601 -0.502168 -0.75670099 -0.41860601\n\t\t -0.502168 -0.91372901 -0.043612 -0.40397599 -0.94363099 -0.028231001 -0.32979301\n\t\t -0.91372901 -0.043612 -0.40397599 -0.75670099 -0.41860601 -0.502168 -0.70257902 -0.41487601\n\t\t -0.57815301 -0.70257902 -0.41487601 -0.57815301 -0.888699 -0.056338999 -0.45501599\n\t\t -0.91372901 -0.043612 -0.40397599 -0.415676 -0.67622203 -0.60822397 -0.70257902 -0.41487601\n\t\t -0.57815301 -0.75670099 -0.41860601 -0.502168 -0.75670099 -0.41860601 -0.502168 -0.487479\n\t\t -0.70114303 -0.52034801 -0.415676 -0.67622203 -0.60822397 -0.487479 -0.70114303 -0.52034801\n\t\t -0.75670099 -0.41860601 -0.502168 -0.82221502 -0.41530401 -0.38920999 -0.82221502\n\t\t -0.41530401 -0.38920999 -0.57498997 -0.72032499 -0.38796601 -0.487479 -0.70114303\n\t\t -0.52034801 -0.57498997 -0.72032499 -0.38796601 -0.82221502 -0.41530401 -0.38920999\n\t\t -0.88515902 -0.403072 -0.232437 -0.88515902 -0.403072 -0.232437 -0.65778798 -0.72245902\n\t\t -0.21299601 -0.57498997 -0.72032499 -0.38796601 -0.259781 -0.90853399 -0.32723001\n\t\t -0.57498997 -0.72032499 -0.38796601 -0.65778798 -0.72245902 -0.21299601 -0.65778798\n\t\t -0.72245902 -0.21299601 -0.339468 -0.92617601 -0.164195 -0.259781 -0.90853399 -0.32723001\n\t\t -0.57498997 -0.72032499 -0.38796601 -0.259781 -0.90853399 -0.32723001 -0.174725 -0.869964\n\t\t -0.46112201 -0.174725 -0.869964 -0.46112201 -0.487479 -0.70114303 -0.52034801 -0.57498997\n\t\t -0.72032499 -0.38796601 -0.487479 -0.70114303 -0.52034801 -0.174725 -0.869964 -0.46112201\n\t\t -0.101323 -0.828439 -0.55083799 -0.101323 -0.828439 -0.55083799 -0.415676 -0.67622203\n\t\t -0.60822397 -0.487479 -0.70114303 -0.52034801 0.20789801 -0.88457298 -0.417505 -0.101323\n\t\t -0.828439 -0.55083799 -0.174725 -0.869964 -0.46112201 -0.174725 -0.869964 -0.46112201\n\t\t 0.14533199 -0.93116999 -0.33436799 0.20789801 -0.88457298 -0.417505 0.14533199 -0.93116999\n\t\t -0.33436799 -0.174725 -0.869964 -0.46112201 -0.259781 -0.90853399 -0.32723001 -0.259781\n\t\t -0.90853399 -0.32723001 0.081303999 -0.97298598 -0.216077 0.14533199 -0.93116999\n\t\t -0.33436799 0.081303999 -0.97298598 -0.216077 -0.259781 -0.90853399 -0.32723001 -0.339468\n\t\t -0.92617601 -0.164195 -0.339468 -0.92617601 -0.164195 0.024568001 -0.99521101 -0.094608001\n\t\t 0.081303999 -0.97298598 -0.216077 -0.65778798 -0.72245902 -0.21299601 -0.88515902\n\t\t -0.403072 -0.232437 -0.91764998 -0.38728899 -0.089024 -0.99538499 -0.001404 -0.095951997\n\t\t -0.91764998 -0.38728899 -0.089024 -0.88515902 -0.403072 -0.232437 -0.91764998 -0.38728899\n\t\t -0.089024 -0.99538499 -0.001404 -0.095951997 -0.99900597 -0.002198 -0.044527002 -0.922225\n\t\t 0.38396001 -0.045565002 -0.99900597 -0.002198 -0.044527002 -0.99538499 -0.001404\n\t\t -0.095951997 -0.99538499 -0.001404 -0.095951997 -0.91851097 0.38640499 -0.083837003\n\t\t -0.922225 0.38396001 -0.045565002 -0.70227897 0.71122098 -0.031129999 -0.922225 0.38396001\n\t\t -0.045565002 -0.91851097 0.38640499 -0.083837003 -0.91851097 0.38640499 -0.083837003\n\t\t -0.69922698 0.71302098 -0.051791001 -0.70227897 0.71122098 -0.031129999 -0.37788799\n\t\t 0.92576599 -0.012574 -0.70227897 0.71122098 -0.031129999 -0.69922698 0.71302098 -0.051791001\n\t\t -0.69922698 0.71302098 -0.051791001 -0.37916899 0.92521697 -0.014314 -0.37788799\n\t\t 0.92576599 -0.012574 -0.37788799 0.92576599 -0.012574 -0.37916899 0.92521697 -0.014314\n\t\t -0.001404 0.99981302 0.019288 -0.001404 0.99981302 0.019288 0.0051270002 0.99998301\n\t\t 0.002808 -0.37788799 0.92576599 -0.012574 -0.022035001 0.99689299 0.075625002 -0.001404\n\t\t 0.99981302 0.019288 -0.37916899 0.92521697 -0.014314 -0.37916899 0.92521697 -0.014314\n\t\t -0.38633901 0.92234099 -0.0053409999 -0.022035001 0.99689299 0.075625002 -0.69544101\n\t\t 0.71314198 -0.088261999 -0.38633901 0.92234099 -0.0053409999 -0.37916899 0.92521697\n\t\t -0.014314 -0.37916899 0.92521697 -0.014314 -0.69922698 0.71302098 -0.051791001 -0.69544101\n\t\t 0.71314198 -0.088261999 -0.69922698 0.71302098 -0.051791001 -0.91851097 0.38640499\n\t\t -0.083837003 -0.90858102 0.38374501 -0.164986 -0.90858102 0.38374501 -0.164986 -0.69544101\n\t\t 0.71314198 -0.088261999;\n\tsetAttr \".n[43160:43325]\" -type \"float3\"  -0.69922698 0.71302098 -0.051791001 -0.97627097\n\t\t -0.012391 -0.216196 -0.90858102 0.38374501 -0.164986 -0.91851097 0.38640499 -0.083837003\n\t\t -0.91851097 0.38640499 -0.083837003 -0.99538499 -0.001404 -0.095951997 -0.97627097\n\t\t -0.012391 -0.216196 -0.88515902 -0.403072 -0.232437 -0.97627097 -0.012391 -0.216196\n\t\t -0.99538499 -0.001404 -0.095951997 0.37205899 0.92720401 0.043184999 -0.001404 0.99981302\n\t\t 0.019288 -0.022035001 0.99689299 0.075625002 -0.022035001 0.99689299 0.075625002\n\t\t 0.33531699 0.93127102 0.142465 0.37205899 0.92720401 0.043184999 0.33531699 0.93127102\n\t\t 0.142465 -0.022035001 0.99689299 0.075625002 -0.076695003 0.98177803 0.173869 -0.076695003\n\t\t 0.98177803 0.173869 0.26359299 0.92320102 0.27967599 0.33531699 0.93127102 0.142465\n\t\t 0.653346 0.73297 0.18945999 0.33531699 0.93127102 0.142465 0.26359299 0.92320102\n\t\t 0.27967599 0.26359299 0.92320102 0.27967599 0.57275701 0.737836 0.35713801 0.653346\n\t\t 0.73297 0.18945999 0.88315898 0.419301 0.21027599 0.653346 0.73297 0.18945999 0.57275701\n\t\t 0.737836 0.35713801 0.57275701 0.737836 0.35713801 0.81104702 0.43657699 0.38936299\n\t\t 0.88315898 0.419301 0.21027599 0.97981602 0.029756 0.19767199 0.88315898 0.419301\n\t\t 0.21027599 0.81104702 0.43657699 0.38936299 0.81104702 0.43657699 0.38936299 0.93204898\n\t\t 0.050173 0.35884199 0.97981602 0.029756 0.19767199 0.916668 -0.370592 0.14960399\n\t\t 0.97981602 0.029756 0.19767199 0.93204898 0.050173 0.35884199 0.93204898 0.050173\n\t\t 0.35884199 0.89790201 -0.35676801 0.25785601 0.916668 -0.370592 0.14960399 0.70489901\n\t\t -0.705356 0.074772 0.916668 -0.370592 0.14960399 0.89790201 -0.35676801 0.25785601\n\t\t 0.89790201 -0.35676801 0.25785601 0.71082997 -0.69563103 0.104011 0.70489901 -0.705356\n\t\t 0.074772 0.38866001 -0.92130798 -0.011628 0.70489901 -0.705356 0.074772 0.71082997\n\t\t -0.69563103 0.104011 0.71082997 -0.69563103 0.104011 0.41835299 -0.905891 -0.065889999\n\t\t 0.38866001 -0.92130798 -0.011628 0.024568001 -0.99521101 -0.094608001 0.38866001\n\t\t -0.92130798 -0.011628 0.41835299 -0.905891 -0.065889999 0.41835299 -0.905891 -0.065889999\n\t\t 0.081303999 -0.97298598 -0.216077 0.024568001 -0.99521101 -0.094608001 0.41835299\n\t\t -0.905891 -0.065889999 0.71082997 -0.69563103 0.104011 0.72678602 -0.68225801 0.079411\n\t\t 0.72678602 -0.68225801 0.079411 0.45727599 -0.87695098 -0.147837 0.41835299 -0.905891\n\t\t -0.065889999 0.081303999 -0.97298598 -0.216077 0.41835299 -0.905891 -0.065889999\n\t\t 0.45727599 -0.87695098 -0.147837 0.45727599 -0.87695098 -0.147837 0.14533199 -0.93116999\n\t\t -0.33436799 0.081303999 -0.97298598 -0.216077 0.45727599 -0.87695098 -0.147837 0.72678602\n\t\t -0.68225801 0.079411 0.753618 -0.65558898 0.04758 0.753618 -0.65558898 0.04758 0.50342\n\t\t -0.83745497 -0.21269 0.45727599 -0.87695098 -0.147837 0.14533199 -0.93116999 -0.33436799\n\t\t 0.45727599 -0.87695098 -0.147837 0.50342 -0.83745497 -0.21269 0.50342 -0.83745497\n\t\t -0.21269 0.20789801 -0.88457298 -0.417505 0.14533199 -0.93116999 -0.33436799 0.71082997\n\t\t -0.69563103 0.104011 0.89790201 -0.35676801 0.25785601 0.88823199 -0.34987199 0.29771501\n\t\t 0.88823199 -0.34987199 0.29771501 0.72678602 -0.68225801 0.079411 0.71082997 -0.69563103\n\t\t 0.104011 0.72678602 -0.68225801 0.079411 0.88823199 -0.34987199 0.29771501 0.89091402\n\t\t -0.335069 0.306595 0.89091402 -0.335069 0.306595 0.753618 -0.65558898 0.04758 0.72678602\n\t\t -0.68225801 0.079411 0.86820799 0.058322001 0.492762 0.89091402 -0.335069 0.306595\n\t\t 0.88823199 -0.34987199 0.29771501 0.88823199 -0.34987199 0.29771501 0.89192402 0.054598998\n\t\t 0.44887701 0.86820799 0.058322001 0.492762 0.89192402 0.054598998 0.44887701 0.88823199\n\t\t -0.34987199 0.29771501 0.89790201 -0.35676801 0.25785601 0.89790201 -0.35676801 0.25785601\n\t\t 0.93204898 0.050173 0.35884199 0.89192402 0.054598998 0.44887701 0.746104 0.433404\n\t\t 0.50546002 0.89192402 0.054598998 0.44887701 0.93204898 0.050173 0.35884199 0.93204898\n\t\t 0.050173 0.35884199 0.81104702 0.43657699 0.38936299 0.746104 0.433404 0.50546002\n\t\t 0.89192402 0.054598998 0.44887701 0.746104 0.433404 0.50546002 0.702245 0.42516199\n\t\t 0.57104301 0.702245 0.42516199 0.57104301 0.86820799 0.058322001 0.492762 0.89192402\n\t\t 0.054598998 0.44887701 0.44500399 0.70344299 0.55420202 0.702245 0.42516199 0.57104301\n\t\t 0.746104 0.433404 0.50546002 0.746104 0.433404 0.50546002 0.498373 0.72250497 0.479177\n\t\t 0.44500399 0.70344299 0.55420202 0.498373 0.72250497 0.479177 0.746104 0.433404 0.50546002\n\t\t 0.81104702 0.43657699 0.38936299 0.81104702 0.43657699 0.38936299 0.57275701 0.737836\n\t\t 0.35713801 0.498373 0.72250497 0.479177 0.193977 0.89838201 0.394059 0.498373 0.72250497\n\t\t 0.479177 0.57275701 0.737836 0.35713801 0.57275701 0.737836 0.35713801 0.26359299\n\t\t 0.92320102 0.27967599 0.193977 0.89838201 0.394059 0.498373 0.72250497 0.479177 0.193977\n\t\t 0.89838201 0.394059 0.139532 0.872262 0.46871001 0.139532 0.872262 0.46871001 0.44500399\n\t\t 0.70344299 0.55420202 0.498373 0.72250497 0.479177 -0.18461099 0.92454797 0.333361\n\t\t 0.139532 0.872262 0.46871001 0.193977 0.89838201 0.394059 0.193977 0.89838201 0.394059\n\t\t -0.13471 0.95389003 0.26822799 -0.18461099 0.92454797 0.333361 -0.13471 0.95389003\n\t\t 0.26822799 0.193977 0.89838201 0.394059 0.26359299 0.92320102 0.27967599 0.26359299\n\t\t 0.92320102 0.27967599 -0.076695003 0.98177803 0.173869 -0.13471 0.95389003 0.26822799\n\t\t 0.86820799 0.058322001 0.492762 0.702245 0.42516199 0.57104301 0.656555 0.40981001\n\t\t 0.63323897 0.392663 0.67731798 0.62213898 0.656555 0.40981001 0.63323897 0.702245\n\t\t 0.42516199 0.57104301;\n\tsetAttr \".n[43326:43491]\" -type \"float3\"  0.702245 0.42516199 0.57104301 0.44500399\n\t\t 0.70344299 0.55420202 0.392663 0.67731798 0.62213898 0.656555 0.40981001 0.63323897\n\t\t 0.392663 0.67731798 0.62213898 0.33571601 0.63639599 0.694475 0.33571601 0.63639599\n\t\t 0.694475 0.60099399 0.37704101 0.70473099 0.656555 0.40981001 0.63323897 0.83891398\n\t\t 0.059939999 0.54095399 0.656555 0.40981001 0.63323897 0.60099399 0.37704101 0.70473099\n\t\t 0.656555 0.40981001 0.63323897 0.83891398 0.059939999 0.54095399 0.86820799 0.058322001\n\t\t 0.492762 0.89091402 -0.335069 0.306595 0.86820799 0.058322001 0.492762 0.83891398\n\t\t 0.059939999 0.54095399 0.83891398 0.059939999 0.54095399 0.88881099 -0.315171 0.33269\n\t\t 0.89091402 -0.335069 0.306595 0.753618 -0.65558898 0.04758 0.89091402 -0.335069 0.306595\n\t\t 0.88881099 -0.315171 0.33269 0.88881099 -0.315171 0.33269 0.78171301 -0.62203801\n\t\t 0.044649001 0.753618 -0.65558898 0.04758 0.50342 -0.83745497 -0.21269 0.753618 -0.65558898\n\t\t 0.04758 0.78171301 -0.62203801 0.044649001 0.78171301 -0.62203801 0.044649001 0.55429101\n\t\t -0.79520899 -0.24577101 0.50342 -0.83745497 -0.21269 0.55429101 -0.79520899 -0.24577101\n\t\t 0.78171301 -0.62203801 0.044649001 0.79640299 -0.59991902 0.076421 0.79640299 -0.59991902\n\t\t 0.076421 0.59460402 -0.76563299 -0.245465 0.55429101 -0.79520899 -0.24577101 0.59460402\n\t\t -0.76563299 -0.245465 0.79640299 -0.59991902 0.076421 0.79527998 -0.59461302 0.118172\n\t\t 0.79527998 -0.59461302 0.118172 0.61914802 -0.75126702 -0.228591 0.59460402 -0.76563299\n\t\t -0.245465 0.61914802 -0.75126702 -0.228591 0.79527998 -0.59461302 0.118172 0.78102899\n\t\t -0.60694402 0.14701299 0.78102899 -0.60694402 0.14701299 0.62551802 -0.74991298 -0.21531101\n\t\t 0.61914802 -0.75126702 -0.228591 0.62551802 -0.74991298 -0.21531101 0.78102899 -0.60694402\n\t\t 0.14701299 0.76188701 -0.63309503 0.13681901 0.76188701 -0.63309503 0.13681901 0.61016399\n\t\t -0.76016301 -0.223276 0.62551802 -0.74991298 -0.21531101 0.61016399 -0.76016301 -0.223276\n\t\t 0.76188701 -0.63309503 0.13681901 0.74486202 -0.65855199 0.107185 0.74486202 -0.65855199\n\t\t 0.107185 0.57859403 -0.781183 -0.234483 0.61016399 -0.76016301 -0.223276 0.57859403\n\t\t -0.781183 -0.234483 0.74486202 -0.65855199 0.107185 0.72578597 -0.68321103 0.080357999\n\t\t 0.72578597 -0.68321103 0.080357999 0.52780002 -0.81727499 -0.23127501 0.57859403\n\t\t -0.781183 -0.234483 0.52780002 -0.81727499 -0.23127501 0.72578597 -0.68321103 0.080357999\n\t\t 0.70263898 -0.70755202 0.075290002 0.70263898 -0.70755202 0.075290002 0.45071 -0.87520301\n\t\t -0.17573 0.52780002 -0.81727499 -0.23127501 0.78901702 -0.397331 0.46859401 0.76188701\n\t\t -0.63309503 0.13681901 0.78102899 -0.60694402 0.14701299 0.78102899 -0.60694402 0.14701299\n\t\t 0.80632299 -0.35219401 0.475187 0.78901702 -0.397331 0.46859401 0.80632299 -0.35219401\n\t\t 0.475187 0.78102899 -0.60694402 0.14701299 0.79527998 -0.59461302 0.118172 0.76188701\n\t\t -0.63309503 0.13681901 0.78901702 -0.397331 0.46859401 0.79140198 -0.43059999 0.43389601\n\t\t 0.79140198 -0.43059999 0.43389601 0.74486202 -0.65855199 0.107185 0.76188701 -0.63309503\n\t\t 0.13681901 0.74486202 -0.65855199 0.107185 0.79140198 -0.43059999 0.43389601 0.80480099\n\t\t -0.44531101 0.39242101 0.80480099 -0.44531101 0.39242101 0.72578597 -0.68321103 0.080357999\n\t\t 0.74486202 -0.65855199 0.107185 0.72578597 -0.68321103 0.080357999 0.80480099 -0.44531101\n\t\t 0.39242101 0.83486003 -0.432125 0.340994 0.83486003 -0.432125 0.340994 0.70263898\n\t\t -0.70755202 0.075290002 0.72578597 -0.68321103 0.080357999 0.82084298 -0.100774 0.56219298\n\t\t 0.83486003 -0.432125 0.340994 0.80480099 -0.44531101 0.39242101 0.80480099 -0.44531101\n\t\t 0.39242101 0.75046301 -0.144751 0.644867 0.82084298 -0.100774 0.56219298 0.75046301\n\t\t -0.144751 0.644867 0.80480099 -0.44531101 0.39242101 0.79140198 -0.43059999 0.43389601\n\t\t 0.79140198 -0.43059999 0.43389601 0.71241301 -0.13965601 0.68772298 0.75046301 -0.144751\n\t\t 0.644867 0.71241301 -0.13965601 0.68772298 0.79140198 -0.43059999 0.43389601 0.78901702\n\t\t -0.397331 0.46859401 0.78901702 -0.397331 0.46859401 0.69333303 -0.103124 0.71320099\n\t\t 0.71241301 -0.13965601 0.68772298 0.69333303 -0.103124 0.71320099 0.78901702 -0.397331\n\t\t 0.46859401 0.80632299 -0.35219401 0.475187 0.80632299 -0.35219401 0.475187 0.70554602\n\t\t -0.044192001 0.70728499 0.69333303 -0.103124 0.71320099 0.49867901 0.19770201 0.84393901\n\t\t 0.69333303 -0.103124 0.71320099 0.70554602 -0.044192001 0.70728499 0.70554602 -0.044192001\n\t\t 0.70728499 0.508169 0.25883001 0.82144499 0.49867901 0.19770201 0.84393901 0.69333303\n\t\t -0.103124 0.71320099 0.49867901 0.19770201 0.84393901 0.525989 0.16675401 0.83398402\n\t\t 0.525989 0.16675401 0.83398402 0.71241301 -0.13965601 0.68772298 0.69333303 -0.103124\n\t\t 0.71320099 0.71241301 -0.13965601 0.68772298 0.525989 0.16675401 0.83398402 0.579355\n\t\t 0.172162 0.79668599 0.579355 0.172162 0.79668599 0.75046301 -0.144751 0.644867 0.71241301\n\t\t -0.13965601 0.68772298 0.75046301 -0.144751 0.644867 0.579355 0.172162 0.79668599\n\t\t 0.67844599 0.23741101 0.69523197 0.67844599 0.23741101 0.69523197 0.82084298 -0.100774\n\t\t 0.56219298 0.75046301 -0.144751 0.644867 0.448576 0.53369498 0.71690297 0.67844599\n\t\t 0.23741101 0.69523197 0.579355 0.172162 0.79668599 0.579355 0.172162 0.79668599 0.33046499\n\t\t 0.45556501 0.82659101 0.448576 0.53369498 0.71690297 0.33046499 0.45556501 0.82659101\n\t\t 0.579355 0.172162 0.79668599 0.525989 0.16675401 0.83398402 0.525989 0.16675401 0.83398402\n\t\t 0.267685 0.44042501 0.85695398 0.33046499 0.45556501 0.82659101 0.267685 0.44042501\n\t\t 0.85695398 0.525989 0.16675401 0.83398402 0.49867901 0.19770201 0.84393901 0.49867901\n\t\t 0.19770201 0.84393901;\n\tsetAttr \".n[43492:43657]\" -type \"float3\"  0.238295 0.46114799 0.85472703 0.267685\n\t\t 0.44042501 0.85695398 0.238295 0.46114799 0.85472703 0.49867901 0.19770201 0.84393901\n\t\t 0.508169 0.25883001 0.82144499 0.508169 0.25883001 0.82144499 0.247238 0.515535 0.82042497\n\t\t 0.238295 0.46114799 0.85472703 -0.056644 0.658885 0.750108 0.238295 0.46114799 0.85472703\n\t\t 0.247238 0.515535 0.82042497 0.247238 0.515535 0.82042497 -0.049837999 0.69977498\n\t\t 0.712623 -0.056644 0.658885 0.750108 0.238295 0.46114799 0.85472703 -0.056644 0.658885\n\t\t 0.750108 -0.026125001 0.64994103 0.75953603 -0.026125001 0.64994103 0.75953603 0.267685\n\t\t 0.44042501 0.85695398 0.238295 0.46114799 0.85472703 0.267685 0.44042501 0.85695398\n\t\t -0.026125001 0.64994103 0.75953603 0.041414 0.67458898 0.73703098 0.041414 0.67458898\n\t\t 0.73703098 0.33046499 0.45556501 0.82659101 0.267685 0.44042501 0.85695398 0.33046499\n\t\t 0.45556501 0.82659101 0.041414 0.67458898 0.73703098 0.16443799 0.759839 0.62897199\n\t\t 0.16443799 0.759839 0.62897199 0.448576 0.53369498 0.71690297 0.33046499 0.45556501\n\t\t 0.82659101 -0.15214001 0.88317102 0.44369099 0.16443799 0.759839 0.62897199 0.041414\n\t\t 0.67458898 0.73703098 0.041414 0.67458898 0.73703098 -0.25865099 0.80277699 0.53726\n\t\t -0.15214001 0.88317102 0.44369099 -0.25865099 0.80277699 0.53726 0.041414 0.67458898\n\t\t 0.73703098 -0.026125001 0.64994103 0.75953603 -0.45782 0.867419 0.194896 -0.15214001\n\t\t 0.88317102 0.44369099 -0.25865099 0.80277699 0.53726 -0.25865099 0.80277699 0.53726\n\t\t -0.52789003 0.810772 0.25294301 -0.45782 0.867419 0.194896 -0.52789003 0.810772 0.25294301\n\t\t -0.25865099 0.80277699 0.53726 -0.32231599 0.77055597 0.549869 -0.026125001 0.64994103\n\t\t 0.75953603 -0.32231599 0.77055597 0.549869 -0.25865099 0.80277699 0.53726 -0.32231599\n\t\t 0.77055597 0.549869 -0.026125001 0.64994103 0.75953603 -0.056644 0.658885 0.750108\n\t\t -0.32231599 0.77055597 0.549869 -0.576814 0.77778298 0.249678 -0.52789003 0.810772\n\t\t 0.25294301 -0.576814 0.77778298 0.249678 -0.32231599 0.77055597 0.549869 -0.353475\n\t\t 0.76686001 0.53570598 -0.056644 0.658885 0.750108 -0.353475 0.76686001 0.53570598\n\t\t -0.32231599 0.77055597 0.549869 -0.353475 0.76686001 0.53570598 -0.056644 0.658885\n\t\t 0.750108 -0.049837999 0.69977498 0.712623 -0.353475 0.76686001 0.53570598 -0.60638601\n\t\t 0.76169699 0.228283 -0.576814 0.77778298 0.249678 -0.60638601 0.76169699 0.228283\n\t\t -0.353475 0.76686001 0.53570598 -0.35225201 0.78861302 0.50399202 -0.049837999 0.69977498\n\t\t 0.712623 -0.35225201 0.78861302 0.50399202 -0.353475 0.76686001 0.53570598 -0.35225201\n\t\t 0.78861302 0.50399202 -0.61529797 0.76056898 0.20722499 -0.60638601 0.76169699 0.228283\n\t\t -0.70880598 0.70166397 -0.072544001 -0.45782 0.867419 0.194896 -0.52789003 0.810772\n\t\t 0.25294301 -0.52789003 0.810772 0.25294301 -0.72526401 0.68461198 -0.072788998 -0.70880598\n\t\t 0.70166397 -0.072544001 -0.72526401 0.68461198 -0.072788998 -0.52789003 0.810772\n\t\t 0.25294301 -0.576814 0.77778298 0.249678 -0.576814 0.77778298 0.249678 -0.74513698\n\t\t 0.65934598 -0.100166 -0.72526401 0.68461198 -0.072788998 -0.74513698 0.65934598 -0.100166\n\t\t -0.576814 0.77778298 0.249678 -0.60638601 0.76169699 0.228283 -0.60638601 0.76169699\n\t\t 0.228283 -0.76359302 0.63190198 -0.132759 -0.74513698 0.65934598 -0.100166 -0.76359302\n\t\t 0.63190198 -0.132759 -0.60638601 0.76169699 0.228283 -0.61529797 0.76056898 0.20722499\n\t\t -0.61529797 0.76056898 0.20722499 -0.78211999 0.60632801 -0.14371599 -0.76359302\n\t\t 0.63190198 -0.132759 -0.78528899 0.39531401 -0.47649601 -0.76359302 0.63190198 -0.132759\n\t\t -0.78211999 0.60632801 -0.14371599 -0.78211999 0.60632801 -0.14371599 -0.80433601\n\t\t 0.34779799 -0.481747 -0.78528899 0.39531401 -0.47649601 -0.76359302 0.63190198 -0.132759\n\t\t -0.78528899 0.39531401 -0.47649601 -0.79169202 0.429645 -0.434315 -0.79169202 0.429645\n\t\t -0.434315 -0.74513698 0.65934598 -0.100166 -0.76359302 0.63190198 -0.132759 -0.74513698\n\t\t 0.65934598 -0.100166 -0.79169202 0.429645 -0.434315 -0.81371599 0.44003201 -0.379787\n\t\t -0.81371599 0.44003201 -0.379787 -0.72526401 0.68461198 -0.072788998 -0.74513698\n\t\t 0.65934598 -0.100166 -0.72526401 0.68461198 -0.072788998 -0.81371599 0.44003201 -0.379787\n\t\t -0.85744202 0.41158399 -0.30885601 -0.85744202 0.41158399 -0.30885601 -0.70880598\n\t\t 0.70166397 -0.072544001 -0.72526401 0.68461198 -0.072788998 -0.87447798 0.049686\n\t\t -0.48251501 -0.85744202 0.41158399 -0.30885601 -0.81371599 0.44003201 -0.379787 -0.81371599\n\t\t 0.44003201 -0.379787 -0.77739298 0.120582 -0.61734903 -0.87447798 0.049686 -0.48251501\n\t\t -0.77739298 0.120582 -0.61734903 -0.81371599 0.44003201 -0.379787 -0.79169202 0.429645\n\t\t -0.434315 -0.79169202 0.429645 -0.434315 -0.71094298 0.13285001 -0.69058698 -0.77739298\n\t\t 0.120582 -0.61734903 -0.71094298 0.13285001 -0.69058698 -0.79169202 0.429645 -0.434315\n\t\t -0.78528899 0.39531401 -0.47649601 -0.78528899 0.39531401 -0.47649601 -0.67346501\n\t\t 0.103704 -0.73190898 -0.71094298 0.13285001 -0.69058698 -0.67346501 0.103704 -0.73190898\n\t\t -0.78528899 0.39531401 -0.47649601 -0.80433601 0.34779799 -0.481747 -0.80433601 0.34779799\n\t\t -0.481747 -0.68095797 0.044833001 -0.73094898 -0.67346501 0.103704 -0.73190898 -0.46584401\n\t\t -0.188547 -0.864546 -0.67346501 0.103704 -0.73190898 -0.68095797 0.044833001 -0.73094898\n\t\t -0.68095797 0.044833001 -0.73094898 -0.459104 -0.241989 -0.85478902 -0.46584401 -0.188547\n\t\t -0.864546 -0.67346501 0.103704 -0.73190898 -0.46584401 -0.188547 -0.864546 -0.52426302\n\t\t -0.177959 -0.83275402 -0.52426302 -0.177959 -0.83275402 -0.71094298 0.13285001 -0.69058698\n\t\t -0.67346501 0.103704 -0.73190898 -0.71094298 0.13285001 -0.69058698 -0.52426302 -0.177959\n\t\t -0.83275402;\n\tsetAttr \".n[43658:43823]\" -type \"float3\"  -0.621099 -0.216565 -0.75321698 -0.621099\n\t\t -0.216565 -0.75321698 -0.77739298 0.120582 -0.61734903 -0.71094298 0.13285001 -0.69058698\n\t\t -0.77739298 0.120582 -0.61734903 -0.621099 -0.216565 -0.75321698 -0.753802 -0.315633\n\t\t -0.57633102 -0.753802 -0.315633 -0.57633102 -0.87447798 0.049686 -0.48251501 -0.77739298\n\t\t 0.120582 -0.61734903 -0.51824802 -0.62268502 -0.586245 -0.753802 -0.315633 -0.57633102\n\t\t -0.621099 -0.216565 -0.75321698 -0.621099 -0.216565 -0.75321698 -0.369957 -0.51403999\n\t\t -0.77388299 -0.51824802 -0.62268502 -0.586245 -0.369957 -0.51403999 -0.77388299 -0.621099\n\t\t -0.216565 -0.75321698 -0.52426302 -0.177959 -0.83275402 -0.52426302 -0.177959 -0.83275402\n\t\t -0.26518399 -0.456083 -0.849509 -0.369957 -0.51403999 -0.77388299 -0.26518399 -0.456083\n\t\t -0.849509 -0.52426302 -0.177959 -0.83275402 -0.46584401 -0.188547 -0.864546 -0.46584401\n\t\t -0.188547 -0.864546 -0.20392799 -0.444785 -0.87211198 -0.26518399 -0.456083 -0.849509\n\t\t -0.20392799 -0.444785 -0.87211198 -0.46584401 -0.188547 -0.864546 -0.459104 -0.241989\n\t\t -0.85478902 -0.459104 -0.241989 -0.85478902 -0.190166 -0.48000899 -0.85640401 -0.20392799\n\t\t -0.444785 -0.87211198 0.083593003 -0.64316398 -0.76115203 -0.20392799 -0.444785 -0.87211198\n\t\t -0.190166 -0.48000899 -0.85640401 -0.190166 -0.48000899 -0.85640401 0.096532002 -0.65838599\n\t\t -0.74646401 0.083593003 -0.64316398 -0.76115203 -0.20392799 -0.444785 -0.87211198\n\t\t 0.083593003 -0.64316398 -0.76115203 0.031344 -0.666421 -0.74491698 0.031344 -0.666421\n\t\t -0.74491698 -0.26518399 -0.456083 -0.849509 -0.20392799 -0.444785 -0.87211198 -0.26518399\n\t\t -0.456083 -0.849509 0.031344 -0.666421 -0.74491698 -0.063816004 -0.72751898 -0.68311298\n\t\t -0.063816004 -0.72751898 -0.68311298 -0.369957 -0.51403999 -0.77388299 -0.26518399\n\t\t -0.456083 -0.849509 -0.369957 -0.51403999 -0.77388299 -0.063816004 -0.72751898 -0.68311298\n\t\t -0.208169 -0.82983798 -0.517721 -0.208169 -0.82983798 -0.517721 -0.51824802 -0.62268502\n\t\t -0.586245 -0.369957 -0.51403999 -0.77388299 0.13016599 -0.916502 -0.378259 -0.208169\n\t\t -0.82983798 -0.517721 -0.063816004 -0.72751898 -0.68311298 -0.063816004 -0.72751898\n\t\t -0.68311298 0.250377 -0.83188301 -0.49526 0.13016599 -0.916502 -0.378259 0.250377\n\t\t -0.83188301 -0.49526 -0.063816004 -0.72751898 -0.68311298 0.031344 -0.666421 -0.74491698\n\t\t 0.031344 -0.666421 -0.74491698 0.32668 -0.78138798 -0.53170902 0.250377 -0.83188301\n\t\t -0.49526 0.32668 -0.78138798 -0.53170902 0.031344 -0.666421 -0.74491698 0.083593003\n\t\t -0.64316398 -0.76115203 0.083593003 -0.64316398 -0.76115203 0.36831 -0.75807399 -0.538212\n\t\t 0.32668 -0.78138798 -0.53170902 0.36831 -0.75807399 -0.538212 0.083593003 -0.64316398\n\t\t -0.76115203 0.096532002 -0.65838599 -0.74646401 0.096532002 -0.65838599 -0.74646401\n\t\t 0.38014701 -0.75904202 -0.52853 0.36831 -0.75807399 -0.538212 0.61016399 -0.76016301\n\t\t -0.223276 0.36831 -0.75807399 -0.538212 0.38014701 -0.75904202 -0.52853 0.38014701\n\t\t -0.75904202 -0.52853 0.62551802 -0.74991298 -0.21531101 0.61016399 -0.76016301 -0.223276\n\t\t 0.36831 -0.75807399 -0.538212 0.61016399 -0.76016301 -0.223276 0.57859403 -0.781183\n\t\t -0.234483 0.57859403 -0.781183 -0.234483 0.32668 -0.78138798 -0.53170902 0.36831\n\t\t -0.75807399 -0.538212 0.52780002 -0.81727499 -0.23127501 0.250377 -0.83188301 -0.49526\n\t\t 0.32668 -0.78138798 -0.53170902 0.32668 -0.78138798 -0.53170902 0.57859403 -0.781183\n\t\t -0.234483 0.52780002 -0.81727499 -0.23127501 0.45071 -0.87520301 -0.17573 0.13016599\n\t\t -0.916502 -0.378259 0.250377 -0.83188301 -0.49526 0.250377 -0.83188301 -0.49526 0.52780002\n\t\t -0.81727499 -0.23127501 0.45071 -0.87520301 -0.17573 -0.208169 -0.82983798 -0.517721\n\t\t 0.13016599 -0.916502 -0.378259 0.018921999 -0.98705697 -0.15925001 0.018921999 -0.98705697\n\t\t -0.15925001 -0.33378699 -0.91169602 -0.239575 -0.208169 -0.82983798 -0.517721 -0.51824802\n\t\t -0.62268502 -0.586245 -0.208169 -0.82983798 -0.517721 -0.33378699 -0.91169602 -0.239575\n\t\t -0.33378699 -0.91169602 -0.239575 -0.63590002 -0.71677601 -0.286118 -0.51824802 -0.62268502\n\t\t -0.586245 -0.753802 -0.315633 -0.57633102 -0.51824802 -0.62268502 -0.586245 -0.63590002\n\t\t -0.71677601 -0.286118 -0.63590002 -0.71677601 -0.286118 -0.85655499 -0.420068 -0.299761\n\t\t -0.753802 -0.315633 -0.57633102 -0.87447798 0.049686 -0.48251501 -0.753802 -0.315633\n\t\t -0.57633102 -0.85655499 -0.420068 -0.299761 -0.85655499 -0.420068 -0.299761 -0.96010703\n\t\t -0.045749001 -0.27586401 -0.87447798 0.049686 -0.48251501 -0.85744202 0.41158399\n\t\t -0.30885601 -0.87447798 0.049686 -0.48251501 -0.96010703 -0.045749001 -0.27586401\n\t\t -0.96010703 -0.045749001 -0.27586401 -0.911394 0.35487601 -0.20838501 -0.85744202\n\t\t 0.41158399 -0.30885601 -0.70880598 0.70166397 -0.072544001 -0.85744202 0.41158399\n\t\t -0.30885601 -0.911394 0.35487601 -0.20838501 -0.911394 0.35487601 -0.20838501 -0.70648998\n\t\t 0.70117998 -0.096014 -0.70880598 0.70166397 -0.072544001 -0.45782 0.867419 0.194896\n\t\t -0.70880598 0.70166397 -0.072544001 -0.70648998 0.70117998 -0.096014 -0.70648998\n\t\t 0.70117998 -0.096014 -0.388753 0.91987699 0.051943 -0.45782 0.867419 0.194896 -0.15214001\n\t\t 0.88317102 0.44369099 -0.45782 0.867419 0.194896 -0.388753 0.91987699 0.051943 -0.388753\n\t\t 0.91987699 0.051943 -0.031771 0.97695398 0.211072 -0.15214001 0.88317102 0.44369099\n\t\t -0.031771 0.97695398 0.211072 -0.388753 0.91987699 0.051943 -0.37526801 0.91665298\n\t\t -0.13755199 -0.37526801 0.91665298 -0.13755199 0.0084229996 0.99158502 -0.129186\n\t\t -0.031771 0.97695398 0.211072 0.0084229996 0.99158502 -0.129186 -0.37526801 0.91665298\n\t\t -0.13755199 -0.43294701 0.85447901 -0.28709501 -0.43294701 0.85447901 -0.28709501\n\t\t -0.070713997 0.90276498 -0.424281 0.0084229996 0.99158502 -0.129186;\n\tsetAttr \".n[43824:43989]\" -type \"float3\"  -0.070713997 0.90276498 -0.424281 -0.43294701\n\t\t 0.85447901 -0.28709501 -0.51421702 0.78336501 -0.34917 -0.51421702 0.78336501 -0.34917\n\t\t -0.19578101 0.79490399 -0.57428002 -0.070713997 0.90276498 -0.424281 -0.77642202\n\t\t 0.62647802 -0.068516999 -0.51421702 0.78336501 -0.34917 -0.43294701 0.85447901 -0.28709501\n\t\t -0.43294701 0.85447901 -0.28709501 -0.57315499 0.79203999 -0.21015701 -0.77642202\n\t\t 0.62647802 -0.068516999 -0.57315499 0.79203999 -0.21015701 -0.43294701 0.85447901\n\t\t -0.28709501 -0.37526801 0.91665298 -0.13755199 -0.37526801 0.91665298 -0.13755199\n\t\t -0.72668898 0.67703402 -0.1164 -0.57315499 0.79203999 -0.21015701 -0.72668898 0.67703402\n\t\t -0.1164 -0.37526801 0.91665298 -0.13755199 -0.388753 0.91987699 0.051943 -0.388753\n\t\t 0.91987699 0.051943 -0.70648998 0.70117998 -0.096014 -0.72668898 0.67703402 -0.1164\n\t\t -0.70648998 0.70117998 -0.096014 -0.911394 0.35487601 -0.20838501 -0.94850099 0.30738699\n\t\t -0.076541997 -0.94850099 0.30738699 -0.076541997 -0.72668898 0.67703402 -0.1164 -0.70648998\n\t\t 0.70117998 -0.096014 -0.72668898 0.67703402 -0.1164 -0.94850099 0.30738699 -0.076541997\n\t\t -0.95027399 0.30299401 0.071934 -0.95027399 0.30299401 0.071934 -0.86956102 0.49353001\n\t\t -0.017091 -0.72668898 0.67703402 -0.1164 -0.86956102 0.49353001 -0.017091 -0.95027399\n\t\t 0.30299401 0.071934 -0.91623902 0.34504601 0.203592 -0.91623902 0.34504601 0.203592\n\t\t -0.77642202 0.62647802 -0.068516999 -0.86956102 0.49353001 -0.017091 -0.90870601\n\t\t 0.0048520002 0.417409 -0.91623902 0.34504601 0.203592 -0.95027399 0.30299401 0.071934\n\t\t -0.95027399 0.30299401 0.071934 -0.97411799 -0.080968 0.211042 -0.90870601 0.0048520002\n\t\t 0.417409 -0.97411799 -0.080968 0.211042 -0.95027399 0.30299401 0.071934 -0.94850099\n\t\t 0.30738699 -0.076541997 -0.94850099 0.30738699 -0.076541997 -0.994398 -0.10056 -0.032563999\n\t\t -0.97411799 -0.080968 0.211042 -0.994398 -0.10056 -0.032563999 -0.94850099 0.30738699\n\t\t -0.076541997 -0.911394 0.35487601 -0.20838501 -0.911394 0.35487601 -0.20838501 -0.96010703\n\t\t -0.045749001 -0.27586401 -0.994398 -0.10056 -0.032563999 -0.88625002 -0.46316099\n\t\t 0.0065009999 -0.994398 -0.10056 -0.032563999 -0.96010703 -0.045749001 -0.27586401\n\t\t -0.96010703 -0.045749001 -0.27586401 -0.85655499 -0.420068 -0.299761 -0.88625002\n\t\t -0.46316099 0.0065009999 -0.994398 -0.10056 -0.032563999 -0.88625002 -0.46316099\n\t\t 0.0065009999 -0.85224497 -0.42842701 0.30021599 -0.85224497 -0.42842701 0.30021599\n\t\t -0.97411799 -0.080968 0.211042 -0.994398 -0.10056 -0.032563999 -0.97411799 -0.080968\n\t\t 0.211042 -0.85224497 -0.42842701 0.30021599 -0.76746798 -0.32554901 0.55227703 -0.76746798\n\t\t -0.32554901 0.55227703 -0.90870601 0.0048520002 0.417409 -0.97411799 -0.080968 0.211042\n\t\t -0.522461 -0.59888202 0.60693902 -0.76746798 -0.32554901 0.55227703 -0.85224497 -0.42842701\n\t\t 0.30021599 -0.85224497 -0.42842701 0.30021599 -0.62484598 -0.70028901 0.3452 -0.522461\n\t\t -0.59888202 0.60693902 -0.62484598 -0.70028901 0.3452 -0.85224497 -0.42842701 0.30021599\n\t\t -0.88625002 -0.46316099 0.0065009999 -0.88625002 -0.46316099 0.0065009999 -0.66895503\n\t\t -0.74226302 0.039308999 -0.62484598 -0.70028901 0.3452 -0.66895503 -0.74226302 0.039308999\n\t\t -0.88625002 -0.46316099 0.0065009999 -0.85655499 -0.420068 -0.299761 -0.85655499\n\t\t -0.420068 -0.299761 -0.63590002 -0.71677601 -0.286118 -0.66895503 -0.74226302 0.039308999\n\t\t -0.37242201 -0.925578 0.067873999 -0.66895503 -0.74226302 0.039308999 -0.63590002\n\t\t -0.71677601 -0.286118 -0.63590002 -0.71677601 -0.286118 -0.33378699 -0.91169602 -0.239575\n\t\t -0.37242201 -0.925578 0.067873999 -0.66895503 -0.74226302 0.039308999 -0.37242201\n\t\t -0.925578 0.067873999 -0.31935799 -0.87966901 0.352411 -0.31935799 -0.87966901 0.352411\n\t\t -0.62484598 -0.70028901 0.3452 -0.66895503 -0.74226302 0.039308999 -0.62484598 -0.70028901\n\t\t 0.3452 -0.31935799 -0.87966901 0.352411 -0.203933 -0.78515399 0.58476001 -0.203933\n\t\t -0.78515399 0.58476001 -0.522461 -0.59888202 0.60693902 -0.62484598 -0.70028901 0.3452\n\t\t 0.154186 -0.86056298 0.48544601 -0.203933 -0.78515399 0.58476001 -0.31935799 -0.87966901\n\t\t 0.352411 -0.31935799 -0.87966901 0.352411 0.043551002 -0.94623399 0.32053801 0.154186\n\t\t -0.86056298 0.48544601 0.043551002 -0.94623399 0.32053801 -0.31935799 -0.87966901\n\t\t 0.352411 -0.37242201 -0.925578 0.067873999 -0.37242201 -0.925578 0.067873999 -0.014741\n\t\t -0.99545199 0.094122 0.043551002 -0.94623399 0.32053801 -0.014741 -0.99545199 0.094122\n\t\t -0.37242201 -0.925578 0.067873999 -0.33378699 -0.91169602 -0.239575 -0.33378699 -0.91169602\n\t\t -0.239575 0.018921999 -0.98705697 -0.15925001 -0.014741 -0.99545199 0.094122 0.371393\n\t\t -0.92101902 0.117439 -0.014741 -0.99545199 0.094122 0.018921999 -0.98705697 -0.15925001\n\t\t 0.018921999 -0.98705697 -0.15925001 0.382624 -0.92294198 -0.042146999 0.371393 -0.92101902\n\t\t 0.117439 0.42571399 -0.87166202 0.242842 0.043551002 -0.94623399 0.32053801 -0.014741\n\t\t -0.99545199 0.094122 -0.014741 -0.99545199 0.094122 0.371393 -0.92101902 0.117439\n\t\t 0.42571399 -0.87166202 0.242842 0.50369298 -0.80659699 0.30934501 0.154186 -0.86056298\n\t\t 0.48544601 0.043551002 -0.94623399 0.32053801 0.043551002 -0.94623399 0.32053801\n\t\t 0.42571399 -0.87166202 0.242842 0.50369298 -0.80659699 0.30934501 -0.203933 -0.78515399\n\t\t 0.58476001 0.154186 -0.86056298 0.48544601 0.26210201 -0.76625502 0.58664799 0.26210201\n\t\t -0.76625502 0.58664799 -0.076266997 -0.666412 0.74167198 -0.203933 -0.78515399 0.58476001\n\t\t -0.522461 -0.59888202 0.60693902 -0.203933 -0.78515399 0.58476001 -0.076266997 -0.666412\n\t\t 0.74167198 -0.076266997 -0.666412 0.74167198 -0.397304 -0.467011 0.78996903 -0.522461\n\t\t -0.59888202 0.60693902 -0.76746798 -0.32554901 0.55227703 -0.522461 -0.59888202 0.60693902\n\t\t -0.397304 -0.467011 0.78996903 -0.397304 -0.467011 0.78996903;\n\tsetAttr \".n[43990:44155]\" -type \"float3\"  -0.65815002 -0.19492701 0.72721499 -0.76746798\n\t\t -0.32554901 0.55227703 -0.90870601 0.0048520002 0.417409 -0.76746798 -0.32554901\n\t\t 0.55227703 -0.65815002 -0.19492701 0.72721499 -0.65815002 -0.19492701 0.72721499\n\t\t -0.82377499 0.112097 0.55572402 -0.90870601 0.0048520002 0.417409 -0.91623902 0.34504601\n\t\t 0.203592 -0.90870601 0.0048520002 0.417409 -0.82377499 0.112097 0.55572402 -0.82377499\n\t\t 0.112097 0.55572402 -0.86720097 0.404805 0.28999299 -0.91623902 0.34504601 0.203592\n\t\t -0.77642202 0.62647802 -0.068516999 -0.91623902 0.34504601 0.203592 -0.86720097 0.404805\n\t\t 0.28999299 -0.86720097 0.404805 0.28999299 -0.77786899 0.62740999 -0.035737999 -0.77642202\n\t\t 0.62647802 -0.068516999 -0.51421702 0.78336501 -0.34917 -0.77642202 0.62647802 -0.068516999\n\t\t -0.77786899 0.62740999 -0.035737999 -0.77786899 0.62740999 -0.035737999 -0.57122999\n\t\t 0.73493499 -0.36546901 -0.51421702 0.78336501 -0.34917 -0.19578101 0.79490399 -0.57428002\n\t\t -0.51421702 0.78336501 -0.34917 -0.57122999 0.73493499 -0.36546901 -0.57122999 0.73493499\n\t\t -0.36546901 -0.29142499 0.71594298 -0.63442701 -0.19578101 0.79490399 -0.57428002\n\t\t -0.29142499 0.71594298 -0.63442701 -0.57122999 0.73493499 -0.36546901 -0.61038202\n\t\t 0.69845998 -0.373615 -0.61038202 0.69845998 -0.373615 -0.359734 0.65357602 -0.66590601\n\t\t -0.29142499 0.71594298 -0.63442701 -0.359734 0.65357602 -0.66590601 -0.61038202 0.69845998\n\t\t -0.373615 -0.64151901 0.66437799 -0.383477 -0.64151901 0.66437799 -0.383477 -0.413322\n\t\t 0.59481901 -0.68945998 -0.359734 0.65357602 -0.66590601 -0.413322 0.59481901 -0.68945998\n\t\t -0.64151901 0.66437799 -0.383477 -0.67294598 0.62631202 -0.39354399 -0.67294598 0.62631202\n\t\t -0.39354399 -0.46505001 0.531703 -0.70782799 -0.413322 0.59481901 -0.68945998 -0.78087002\n\t\t 0.62454897 -0.013398 -0.67294598 0.62631202 -0.39354399 -0.64151901 0.66437799 -0.383477\n\t\t -0.64151901 0.66437799 -0.383477 -0.77621001 0.63033098 -0.013428 -0.78087002 0.62454897\n\t\t -0.013398 -0.77621001 0.63033098 -0.013428 -0.64151901 0.66437799 -0.383477 -0.61038202\n\t\t 0.69845998 -0.373615 -0.61038202 0.69845998 -0.373615 -0.77598298 0.630467 -0.019044001\n\t\t -0.77621001 0.63033098 -0.013428 -0.77598298 0.630467 -0.019044001 -0.61038202 0.69845998\n\t\t -0.373615 -0.57122999 0.73493499 -0.36546901 -0.57122999 0.73493499 -0.36546901 -0.77786899\n\t\t 0.62740999 -0.035737999 -0.77598298 0.630467 -0.019044001 -0.77786899 0.62740999\n\t\t -0.035737999 -0.86720097 0.404805 0.28999299 -0.82471198 0.45534101 0.33543301 -0.82471198\n\t\t 0.45534101 0.33543301 -0.77598298 0.630467 -0.019044001 -0.77786899 0.62740999 -0.035737999\n\t\t -0.77598298 0.630467 -0.019044001 -0.82471198 0.45534101 0.33543301 -0.79207999 0.49408501\n\t\t 0.358455 -0.79207999 0.49408501 0.358455 -0.77621001 0.63033098 -0.013428 -0.77598298\n\t\t 0.630467 -0.019044001 -0.77621001 0.63033098 -0.013428 -0.79207999 0.49408501 0.358455\n\t\t -0.76778102 0.52341098 0.36953101 -0.76778102 0.52341098 0.36953101 -0.78087002 0.62454897\n\t\t -0.013398 -0.77621001 0.63033098 -0.013428 -0.636172 0.33998299 0.69260198 -0.76778102\n\t\t 0.52341098 0.36953101 -0.79207999 0.49408501 0.358455 -0.79207999 0.49408501 0.358455\n\t\t -0.68667901 0.278761 0.67138898 -0.636172 0.33998299 0.69260198 -0.68667901 0.278761\n\t\t 0.67138898 -0.79207999 0.49408501 0.358455 -0.82471198 0.45534101 0.33543301 -0.82471198\n\t\t 0.45534101 0.33543301 -0.74824202 0.20454 0.631109 -0.68667901 0.278761 0.67138898\n\t\t -0.74824202 0.20454 0.631109 -0.82471198 0.45534101 0.33543301 -0.86720097 0.404805\n\t\t 0.28999299 -0.86720097 0.404805 0.28999299 -0.82377499 0.112097 0.55572402 -0.74824202\n\t\t 0.20454 0.631109 -0.55965799 -0.077274002 0.825113 -0.74824202 0.20454 0.631109 -0.82377499\n\t\t 0.112097 0.55572402 -0.82377499 0.112097 0.55572402 -0.65815002 -0.19492701 0.72721499\n\t\t -0.55965799 -0.077274002 0.825113 -0.74824202 0.20454 0.631109 -0.55965799 -0.077274002\n\t\t 0.825113 -0.47792399 0.021119 0.87814701 -0.47792399 0.021119 0.87814701 -0.68667901\n\t\t 0.278761 0.67138898 -0.74824202 0.20454 0.631109 -0.68667901 0.278761 0.67138898\n\t\t -0.47792399 0.021119 0.87814701 -0.40871599 0.1052 0.906578 -0.40871599 0.1052 0.906578\n\t\t -0.636172 0.33998299 0.69260198 -0.68667901 0.278761 0.67138898 -0.120947 -0.143958\n\t\t 0.98216498 -0.40871599 0.1052 0.906578 -0.47792399 0.021119 0.87814701 -0.47792399\n\t\t 0.021119 0.87814701 -0.198162 -0.237776 0.95089102 -0.120947 -0.143958 0.98216498\n\t\t -0.198162 -0.237776 0.95089102 -0.47792399 0.021119 0.87814701 -0.55965799 -0.077274002\n\t\t 0.825113 -0.55965799 -0.077274002 0.825113 -0.28779399 -0.34431499 0.89365703 -0.198162\n\t\t -0.237776 0.95089102 -0.28779399 -0.34431499 0.89365703 -0.55965799 -0.077274002\n\t\t 0.825113 -0.65815002 -0.19492701 0.72721499 -0.65815002 -0.19492701 0.72721499 -0.397304\n\t\t -0.467011 0.78996903 -0.28779399 -0.34431499 0.89365703 0.02881 -0.556813 0.83013803\n\t\t -0.28779399 -0.34431499 0.89365703 -0.397304 -0.467011 0.78996903 -0.397304 -0.467011\n\t\t 0.78996903 -0.076266997 -0.666412 0.74167198 0.02881 -0.556813 0.83013803 -0.28779399\n\t\t -0.34431499 0.89365703 0.02881 -0.556813 0.83013803 0.112465 -0.45965499 0.88094801\n\t\t 0.112465 -0.45965499 0.88094801 -0.198162 -0.237776 0.95089102 -0.28779399 -0.34431499\n\t\t 0.89365703 -0.198162 -0.237776 0.95089102 0.112465 -0.45965499 0.88094801 0.185554\n\t\t -0.37104699 0.90988702 0.185554 -0.37104699 0.90988702 -0.120947 -0.143958 0.98216498\n\t\t -0.198162 -0.237776 0.95089102 0.46645799 -0.54269499 0.698497 0.185554 -0.37104699\n\t\t 0.90988702 0.112465 -0.45965499 0.88094801 0.112465 -0.45965499 0.88094801 0.40892699\n\t\t -0.61188 0.67703903 0.46645799 -0.54269499 0.698497 0.40892699 -0.61188 0.67703903\n\t\t 0.112465 -0.45965499 0.88094801;\n\tsetAttr \".n[44156:44321]\" -type \"float3\"  0.02881 -0.556813 0.83013803 0.02881\n\t\t -0.556813 0.83013803 0.344657 -0.684461 0.64243603 0.40892699 -0.61188 0.67703903\n\t\t 0.344657 -0.684461 0.64243603 0.02881 -0.556813 0.83013803 -0.076266997 -0.666412\n\t\t 0.74167198 -0.076266997 -0.666412 0.74167198 0.26210201 -0.76625502 0.58664799 0.344657\n\t\t -0.684461 0.64243603 0.61069202 -0.70841497 0.35384101 0.344657 -0.684461 0.64243603\n\t\t 0.26210201 -0.76625502 0.58664799 0.26210201 -0.76625502 0.58664799 0.56685901 -0.75101\n\t\t 0.338608 0.61069202 -0.70841497 0.35384101 0.64468902 -0.67069101 0.36681101 0.40892699\n\t\t -0.61188 0.67703903 0.344657 -0.684461 0.64243603 0.344657 -0.684461 0.64243603 0.61069202\n\t\t -0.70841497 0.35384101 0.64468902 -0.67069101 0.36681101 0.67743999 -0.63141698 0.377343\n\t\t 0.46645799 -0.54269499 0.698497 0.40892699 -0.61188 0.67703903 0.40892699 -0.61188\n\t\t 0.67703903 0.64468902 -0.67069101 0.36681101 0.67743999 -0.63141698 0.377343 0.185554\n\t\t -0.37104699 0.90988702 0.46645799 -0.54269499 0.698497 0.52786201 -0.47137001 0.70652097\n\t\t 0.52786201 -0.47137001 0.70652097 0.26450899 -0.27961501 0.922957 0.185554 -0.37104699\n\t\t 0.90988702 -0.120947 -0.143958 0.98216498 0.185554 -0.37104699 0.90988702 0.26450899\n\t\t -0.27961501 0.922957 0.26450899 -0.27961501 0.922957 -0.038026001 -0.045625001 0.99823499\n\t\t -0.120947 -0.143958 0.98216498 -0.40871599 0.1052 0.906578 -0.120947 -0.143958 0.98216498\n\t\t -0.038026001 -0.045625001 0.99823499 -0.038026001 -0.045625001 0.99823499 -0.334979\n\t\t 0.19568899 0.92168099 -0.40871599 0.1052 0.906578 -0.636172 0.33998299 0.69260198\n\t\t -0.40871599 0.1052 0.906578 -0.334979 0.19568899 0.92168099 -0.334979 0.19568899\n\t\t 0.92168099 -0.58188897 0.40801799 0.70350999 -0.636172 0.33998299 0.69260198 -0.76778102\n\t\t 0.52341098 0.36953101 -0.636172 0.33998299 0.69260198 -0.58188897 0.40801799 0.70350999\n\t\t -0.58188897 0.40801799 0.70350999 -0.740224 0.55768502 0.37557501 -0.76778102 0.52341098\n\t\t 0.36953101 -0.78087002 0.62454897 -0.013398 -0.76778102 0.52341098 0.36953101 -0.740224\n\t\t 0.55768502 0.37557501 -0.740224 0.55768502 0.37557501 -0.78440398 0.62015003 -0.01114\n\t\t -0.78087002 0.62454897 -0.013398 -0.67294598 0.62631202 -0.39354399 -0.78087002 0.62454897\n\t\t -0.013398 -0.78440398 0.62015003 -0.01114 -0.78440398 0.62015003 -0.01114 -0.70794201\n\t\t 0.58567798 -0.39471501 -0.67294598 0.62631202 -0.39354399 -0.46505001 0.531703 -0.70782799\n\t\t -0.67294598 0.62631202 -0.39354399 -0.70794201 0.58567798 -0.39471501 -0.70794201\n\t\t 0.58567798 -0.39471501 -0.52639598 0.46230501 -0.71357 -0.46505001 0.531703 -0.70782799\n\t\t -0.52639598 0.46230501 -0.71357 -0.70794201 0.58567798 -0.39471501 -0.74342299 0.54635799\n\t\t -0.385766 -0.74342299 0.54635799 -0.385766 -0.59889001 0.38525099 -0.70207697 -0.52639598\n\t\t 0.46230501 -0.71357 -0.59889001 0.38525099 -0.70207697 -0.74342299 0.54635799 -0.385766\n\t\t -0.77885598 0.50866699 -0.36693501 -0.77885598 0.50866699 -0.36693501 -0.68211001\n\t\t 0.30012801 -0.66681999 -0.59889001 0.38525099 -0.70207697 -0.68211001 0.30012801\n\t\t -0.66681999 -0.77885598 0.50866699 -0.36693501 -0.81240702 0.473667 -0.34005201 -0.81240702\n\t\t 0.473667 -0.34005201 -0.76953697 0.21000101 -0.60308599 -0.68211001 0.30012801 -0.66681999\n\t\t -0.74113101 0.67081398 -0.027070999 -0.81240702 0.473667 -0.34005201 -0.77885598\n\t\t 0.50866699 -0.36693501 -0.77885598 0.50866699 -0.36693501 -0.76489902 0.64404303\n\t\t -0.011719 -0.74113101 0.67081398 -0.027070999 -0.76489902 0.64404303 -0.011719 -0.77885598\n\t\t 0.50866699 -0.36693501 -0.74342299 0.54635799 -0.385766 -0.74342299 0.54635799 -0.385766\n\t\t -0.77937299 0.62650102 -0.0086070001 -0.76489902 0.64404303 -0.011719 -0.77937299\n\t\t 0.62650102 -0.0086070001 -0.74342299 0.54635799 -0.385766 -0.70794201 0.58567798\n\t\t -0.39471501 -0.70794201 0.58567798 -0.39471501 -0.78440398 0.62015003 -0.01114 -0.77937299\n\t\t 0.62650102 -0.0086070001 -0.78440398 0.62015003 -0.01114 -0.740224 0.55768502 0.37557501\n\t\t -0.69779599 0.61154801 0.37294701 -0.69779599 0.61154801 0.37294701 -0.77937299 0.62650102\n\t\t -0.0086070001 -0.78440398 0.62015003 -0.01114 -0.77937299 0.62650102 -0.0086070001\n\t\t -0.69779599 0.61154801 0.37294701 -0.63810003 0.685588 0.35042399 -0.63810003 0.685588\n\t\t 0.35042399 -0.76489902 0.64404303 -0.011719 -0.77937299 0.62650102 -0.0086070001\n\t\t -0.76489902 0.64404303 -0.011719 -0.63810003 0.685588 0.35042399 -0.56131202 0.77296299\n\t\t 0.29573199 -0.56131202 0.77296299 0.29573199 -0.74113101 0.67081398 -0.027070999\n\t\t -0.76489902 0.64404303 -0.011719 -0.29042301 0.75901699 0.58270699 -0.56131202 0.77296299\n\t\t 0.29573199 -0.63810003 0.685588 0.35042399 -0.63810003 0.685588 0.35042399 -0.41048101\n\t\t 0.62228298 0.66653502 -0.29042301 0.75901699 0.58270699 -0.41048101 0.62228298 0.66653502\n\t\t -0.63810003 0.685588 0.35042399 -0.69779599 0.61154801 0.37294701 -0.69779599 0.61154801\n\t\t 0.37294701 -0.508026 0.50161701 0.700207 -0.41048101 0.62228298 0.66653502 -0.508026\n\t\t 0.50161701 0.700207 -0.69779599 0.61154801 0.37294701 -0.740224 0.55768502 0.37557501\n\t\t -0.740224 0.55768502 0.37557501 -0.58188897 0.40801799 0.70350999 -0.508026 0.50161701\n\t\t 0.700207 -0.238231 0.31257501 0.91953403 -0.508026 0.50161701 0.700207 -0.58188897\n\t\t 0.40801799 0.70350999 -0.58188897 0.40801799 0.70350999 -0.334979 0.19568899 0.92168099\n\t\t -0.238231 0.31257501 0.91953403 -0.508026 0.50161701 0.700207 -0.238231 0.31257501\n\t\t 0.91953403 -0.11402 0.458765 0.881212 -0.11402 0.458765 0.881212 -0.41048101 0.62228298\n\t\t 0.66653502 -0.508026 0.50161701 0.700207 -0.41048101 0.62228298 0.66653502 -0.11402\n\t\t 0.458765 0.881212 0.032747 0.62273997 0.78174299 0.032747 0.62273997 0.78174299 -0.29042301\n\t\t 0.75901699 0.58270699 -0.41048101 0.62228298 0.66653502;\n\tsetAttr \".n[44322:44487]\" -type \"float3\"  0.351825 0.384664 0.85337698 0.032747\n\t\t 0.62273997 0.78174299 -0.11402 0.458765 0.881212 -0.11402 0.458765 0.881212 0.20124499\n\t\t 0.221021 0.95428002 0.351825 0.384664 0.85337698 0.20124499 0.221021 0.95428002 -0.11402\n\t\t 0.458765 0.881212 -0.238231 0.31257501 0.91953403 -0.238231 0.31257501 0.91953403\n\t\t 0.068361998 0.074862003 0.99484801 0.20124499 0.221021 0.95428002 0.068361998 0.074862003\n\t\t 0.99484801 -0.238231 0.31257501 0.91953403 -0.334979 0.19568899 0.92168099 -0.334979\n\t\t 0.19568899 0.92168099 -0.038026001 -0.045625001 0.99823499 0.068361998 0.074862003\n\t\t 0.99484801 0.362692 -0.173197 0.91567302 0.068361998 0.074862003 0.99484801 -0.038026001\n\t\t -0.045625001 0.99823499 -0.038026001 -0.045625001 0.99823499 0.26450899 -0.27961501\n\t\t 0.922957 0.362692 -0.173197 0.91567302 0.068361998 0.074862003 0.99484801 0.362692\n\t\t -0.173197 0.91567302 0.48085701 -0.048861001 0.87543702 0.48085701 -0.048861001 0.87543702\n\t\t 0.20124499 0.221021 0.95428002 0.068361998 0.074862003 0.99484801 0.20124499 0.221021\n\t\t 0.95428002 0.48085701 -0.048861001 0.87543702 0.610053 0.089056 0.78733999 0.610053\n\t\t 0.089056 0.78733999 0.351825 0.384664 0.85337698 0.20124499 0.221021 0.95428002 0.76872402\n\t\t -0.21241499 0.60327798 0.610053 0.089056 0.78733999 0.48085701 -0.048861001 0.87543702\n\t\t 0.48085701 -0.048861001 0.87543702 0.681678 -0.30613801 0.66452599 0.76872402 -0.21241499\n\t\t 0.60327798 0.681678 -0.30613801 0.66452599 0.48085701 -0.048861001 0.87543702 0.362692\n\t\t -0.173197 0.91567302 0.362692 -0.173197 0.91567302 0.59968001 -0.39309299 0.69703799\n\t\t 0.681678 -0.30613801 0.66452599 0.59968001 -0.39309299 0.69703799 0.362692 -0.173197\n\t\t 0.91567302 0.26450899 -0.27961501 0.922957 0.26450899 -0.27961501 0.922957 0.52786201\n\t\t -0.47137001 0.70652097 0.59968001 -0.39309299 0.69703799 0.74483299 -0.55252802 0.37408\n\t\t 0.59968001 -0.39309299 0.69703799 0.52786201 -0.47137001 0.70652097 0.52786201 -0.47137001\n\t\t 0.70652097 0.711061 -0.59127402 0.38051 0.74483299 -0.55252802 0.37408 0.77876198\n\t\t -0.514525 0.358877 0.681678 -0.30613801 0.66452599 0.59968001 -0.39309299 0.69703799\n\t\t 0.59968001 -0.39309299 0.69703799 0.74483299 -0.55252802 0.37408 0.77876198 -0.514525\n\t\t 0.358877 0.81211102 -0.47740901 0.335495 0.76872402 -0.21241499 0.60327798 0.681678\n\t\t -0.30613801 0.66452599 0.681678 -0.30613801 0.66452599 0.77876198 -0.514525 0.358877\n\t\t 0.81211102 -0.47740901 0.335495 0.610053 0.089056 0.78733999 0.76872402 -0.21241499\n\t\t 0.60327798 0.84189999 -0.13352101 0.52285397 0.84189999 -0.13352101 0.52285397 0.71608198\n\t\t 0.205245 0.66715902 0.610053 0.089056 0.78733999 0.351825 0.384664 0.85337698 0.610053\n\t\t 0.089056 0.78733999 0.71608198 0.205245 0.66715902 0.71608198 0.205245 0.66715902\n\t\t 0.47628599 0.51840299 0.71021801 0.351825 0.384664 0.85337698 0.032747 0.62273997\n\t\t 0.78174299 0.351825 0.384664 0.85337698 0.47628599 0.51840299 0.71021801 0.47628599\n\t\t 0.51840299 0.71021801 0.157691 0.75250399 0.639431 0.032747 0.62273997 0.78174299\n\t\t -0.29042301 0.75901699 0.58270699 0.032747 0.62273997 0.78174299 0.157691 0.75250399\n\t\t 0.639431 0.157691 0.75250399 0.639431 -0.18543699 0.865444 0.465424 -0.29042301 0.75901699\n\t\t 0.58270699 -0.56131202 0.77296299 0.29573199 -0.29042301 0.75901699 0.58270699 -0.18543699\n\t\t 0.865444 0.465424 -0.18543699 0.865444 0.465424 -0.49431899 0.84080201 0.22068401\n\t\t -0.56131202 0.77296299 0.29573199 -0.74113101 0.67081398 -0.027070999 -0.56131202\n\t\t 0.77296299 0.29573199 -0.49431899 0.84080201 0.22068401 -0.49431899 0.84080201 0.22068401\n\t\t -0.72254598 0.68937099 -0.051913001 -0.74113101 0.67081398 -0.027070999 -0.81240702\n\t\t 0.473667 -0.34005201 -0.74113101 0.67081398 -0.027070999 -0.72254598 0.68937099 -0.051913001\n\t\t -0.72254598 0.68937099 -0.051913001 -0.84249002 0.43883899 -0.31245801 -0.81240702\n\t\t 0.473667 -0.34005201 -0.76953697 0.21000101 -0.60308599 -0.81240702 0.473667 -0.34005201\n\t\t -0.84249002 0.43883899 -0.31245801 -0.84249002 0.43883899 -0.31245801 -0.84089601\n\t\t 0.12659299 -0.526182 -0.76953697 0.21000101 -0.60308599 -0.84089601 0.12659299 -0.526182\n\t\t -0.84249002 0.43883899 -0.31245801 -0.86814898 0.41091001 -0.27833501 -0.86814898\n\t\t 0.41091001 -0.27833501 -0.89189202 0.067813002 -0.44713601 -0.84089601 0.12659299\n\t\t -0.526182 -0.89189202 0.067813002 -0.44713601 -0.86814898 0.41091001 -0.27833501\n\t\t -0.89537102 0.38734901 -0.219707 -0.89537102 0.38734901 -0.219707 -0.93983698 0.021272\n\t\t -0.34096 -0.89189202 0.067813002 -0.44713601 -0.93983698 0.021272 -0.34096 -0.89537102\n\t\t 0.38734901 -0.219707 -0.921013 0.37248799 -0.113959 -0.921013 0.37248799 -0.113959\n\t\t -0.98445803 -0.0082710003 -0.17542399 -0.93983698 0.021272 -0.34096 -0.71705502 0.69614798\n\t\t -0.034791999 -0.921013 0.37248799 -0.113959 -0.89537102 0.38734901 -0.219707 -0.89537102\n\t\t 0.38734901 -0.219707 -0.71481401 0.69641101 -0.063662 -0.71705502 0.69614798 -0.034791999\n\t\t -0.71481401 0.69641101 -0.063662 -0.89537102 0.38734901 -0.219707 -0.86814898 0.41091001\n\t\t -0.27833501 -0.86814898 0.41091001 -0.27833501 -0.71547902 0.695427 -0.066866003\n\t\t -0.71481401 0.69641101 -0.063662 -0.71547902 0.695427 -0.066866003 -0.86814898 0.41091001\n\t\t -0.27833501 -0.84249002 0.43883899 -0.31245801 -0.84249002 0.43883899 -0.31245801\n\t\t -0.72254598 0.68937099 -0.051913001 -0.71547902 0.695427 -0.066866003 -0.72254598\n\t\t 0.68937099 -0.051913001 -0.49431899 0.84080201 0.22068401 -0.454007 0.87703598 0.157114\n\t\t -0.454007 0.87703598 0.157114 -0.71547902 0.695427 -0.066866003 -0.72254598 0.68937099\n\t\t -0.051913001 -0.71547902 0.695427 -0.066866003 -0.454007 0.87703598 0.157114 -0.426081\n\t\t 0.89876401 0.103338 -0.426081 0.89876401 0.103338;\n\tsetAttr \".n[44488:44653]\" -type \"float3\"  -0.71481401 0.69641101 -0.063662 -0.71547902\n\t\t 0.695427 -0.066866003 -0.71481401 0.69641101 -0.063662 -0.426081 0.89876401 0.103338\n\t\t -0.40779799 0.91170102 0.050021 -0.40779799 0.91170102 0.050021 -0.71705502 0.69614798\n\t\t -0.034791999 -0.71481401 0.69641101 -0.063662 -0.036715001 0.99102002 0.12857699\n\t\t -0.40779799 0.91170102 0.050021 -0.426081 0.89876401 0.103338 -0.426081 0.89876401\n\t\t 0.103338 -0.072178997 0.96402001 0.25584501 -0.036715001 0.99102002 0.12857699 -0.072178997\n\t\t 0.96402001 0.25584501 -0.426081 0.89876401 0.103338 -0.454007 0.87703598 0.157114\n\t\t -0.454007 0.87703598 0.157114 -0.120215 0.92527997 0.35972899 -0.072178997 0.96402001\n\t\t 0.25584501 -0.120215 0.92527997 0.35972899 -0.454007 0.87703598 0.157114 -0.49431899\n\t\t 0.84080201 0.22068401 -0.49431899 0.84080201 0.22068401 -0.18543699 0.865444 0.465424\n\t\t -0.120215 0.92527997 0.35972899 0.23487499 0.82902098 0.50750202 -0.120215 0.92527997\n\t\t 0.35972899 -0.18543699 0.865444 0.465424 -0.18543699 0.865444 0.465424 0.157691 0.75250399\n\t\t 0.639431 0.23487499 0.82902098 0.50750202 -0.120215 0.92527997 0.35972899 0.23487499\n\t\t 0.82902098 0.50750202 0.29292101 0.881908 0.36937201 0.29292101 0.881908 0.36937201\n\t\t -0.072178997 0.96402001 0.25584501 -0.120215 0.92527997 0.35972899 -0.072178997 0.96402001\n\t\t 0.25584501 0.29292101 0.881908 0.36937201 0.33985901 0.921489 0.18802699 0.33985901\n\t\t 0.921489 0.18802699 -0.036715001 0.99102002 0.12857699 -0.072178997 0.96402001 0.25584501\n\t\t 0.66748798 0.71174198 0.218824 0.33985901 0.921489 0.18802699 0.29292101 0.881908\n\t\t 0.36937201 0.29292101 0.881908 0.36937201 0.61399198 0.66462499 0.425778 0.66748798\n\t\t 0.71174198 0.218824 0.61399198 0.66462499 0.425778 0.29292101 0.881908 0.36937201\n\t\t 0.23487499 0.82902098 0.50750202 0.23487499 0.82902098 0.50750202 0.55357802 0.60228598\n\t\t 0.57515502 0.61399198 0.66462499 0.425778 0.55357802 0.60228598 0.57515502 0.23487499\n\t\t 0.82902098 0.50750202 0.157691 0.75250399 0.639431 0.157691 0.75250399 0.639431 0.47628599\n\t\t 0.51840299 0.71021801 0.55357802 0.60228598 0.57515502 0.784316 0.28285301 0.55212498\n\t\t 0.55357802 0.60228598 0.57515502 0.47628599 0.51840299 0.71021801 0.47628599 0.51840299\n\t\t 0.71021801 0.71608198 0.205245 0.66715902 0.784316 0.28285301 0.55212498 0.55357802\n\t\t 0.60228598 0.57515502 0.784316 0.28285301 0.55212498 0.84117401 0.34560099 0.41591701\n\t\t 0.84117401 0.34560099 0.41591701 0.61399198 0.66462499 0.425778 0.55357802 0.60228598\n\t\t 0.57515502 0.61399198 0.66462499 0.425778 0.84117401 0.34560099 0.41591701 0.89391601\n\t\t 0.39300001 0.21555901 0.89391601 0.39300001 0.21555901 0.66748798 0.71174198 0.218824\n\t\t 0.61399198 0.66462499 0.425778 0.98373401 0.014314 0.179058 0.89391601 0.39300001\n\t\t 0.21555901 0.84117401 0.34560099 0.41591701 0.84117401 0.34560099 0.41591701 0.93938297\n\t\t -0.026063001 0.34187701 0.98373401 0.014314 0.179058 0.93938297 -0.026063001 0.34187701\n\t\t 0.84117401 0.34560099 0.41591701 0.784316 0.28285301 0.55212498 0.784316 0.28285301\n\t\t 0.55212498 0.89254898 -0.077395 0.44426 0.93938297 -0.026063001 0.34187701 0.89254898\n\t\t -0.077395 0.44426 0.784316 0.28285301 0.55212498 0.71608198 0.205245 0.66715902 0.71608198\n\t\t 0.205245 0.66715902 0.84189999 -0.13352101 0.52285397 0.89254898 -0.077395 0.44426\n\t\t 0.86473697 -0.423334 0.270219 0.89254898 -0.077395 0.44426 0.84189999 -0.13352101\n\t\t 0.52285397 0.84189999 -0.13352101 0.52285397 0.84093702 -0.44787499 0.3037 0.86473697\n\t\t -0.423334 0.270219 0.89359403 -0.39344901 0.216074 0.93938297 -0.026063001 0.34187701\n\t\t 0.89254898 -0.077395 0.44426 0.89254898 -0.077395 0.44426 0.86473697 -0.423334 0.270219\n\t\t 0.89359403 -0.39344901 0.216074 0.66748798 0.71174198 0.218824 0.89391601 0.39300001\n\t\t 0.21555901 0.91262001 0.406091 0.047061 0.91262001 0.406091 0.047061 0.89391601 0.39300001\n\t\t 0.21555901 0.98373401 0.014314 0.179058 0.98373401 0.014314 0.179058 0.998923 0.025301\n\t\t 0.038881 0.91262001 0.406091 0.047061 0.91262001 0.406091 0.047061 0.998923 0.025301\n\t\t 0.038881 0.99967098 0.025636001 -0.001099 0.99967098 0.025636001 -0.001099 0.91350502\n\t\t 0.40682301 -0.002075 0.91262001 0.406091 0.047061 0.91262001 0.406091 0.047061 0.91350502\n\t\t 0.40682301 -0.002075 0.68813401 0.72558099 -0.001801 0.68813401 0.72558099 -0.001801\n\t\t 0.68720001 0.72489202 0.047823999 0.91262001 0.406091 0.047061 0.357164 0.93312001\n\t\t 0.041475002 0.68720001 0.72489202 0.047823999 0.68813401 0.72558099 -0.001801 0.68813401\n\t\t 0.72558099 -0.001801 0.35833001 0.93359399 -0.001434 0.357164 0.93312001 0.041475002\n\t\t 0.357164 0.93312001 0.041475002 0.35833001 0.93359399 -0.001434 -0.026947999 0.99963701\n\t\t -0.00036599999 -0.026947999 0.99963701 -0.00036599999 -0.026489999 0.99924201 0.028534999\n\t\t 0.357164 0.93312001 0.041475002 -0.40547299 0.91403902 0.01117 -0.026489999 0.99924201\n\t\t 0.028534999 -0.026947999 0.99963701 -0.00036599999 -0.026947999 0.99963701 -0.00036599999\n\t\t -0.40645 0.91367298 0.000244 -0.40547299 0.91403902 0.01117 -0.40547299 0.91403902\n\t\t 0.01117 -0.40645 0.91367298 0.000244 -0.72546399 0.68826097 -0.000183 -0.72546399\n\t\t 0.68826097 -0.000183 -0.72297001 0.69083297 -0.0080570001 -0.40547299 0.91403902\n\t\t 0.01117 -0.93182498 0.36195099 -0.026338 -0.72297001 0.69083297 -0.0080570001 -0.72546399\n\t\t 0.68826097 -0.000183 -0.72546399 0.68826097 -0.000183 -0.93332797 0.35902399 -0.00119\n\t\t -0.93182498 0.36195099 -0.026338 -0.93182498 0.36195099 -0.026338 -0.93332797 0.35902399\n\t\t -0.00119 -0.99966401 -0.025728 -0.003143 -0.99966401 -0.025728 -0.003143 -0.99894702\n\t\t -0.022249 -0.040132001;\n\tsetAttr \".n[44654:44819]\" -type \"float3\"  -0.93182498 0.36195099 -0.026338 -0.93182498\n\t\t 0.36195099 -0.026338 -0.99894702 -0.022249 -0.040132001 -0.98445803 -0.0082710003\n\t\t -0.17542399 -0.98445803 -0.0082710003 -0.17542399 -0.921013 0.37248799 -0.113959\n\t\t -0.93182498 0.36195099 -0.026338 -0.93182498 0.36195099 -0.026338 -0.921013 0.37248799\n\t\t -0.113959 -0.71705502 0.69614798 -0.034791999 -0.71705502 0.69614798 -0.034791999\n\t\t -0.72297001 0.69083297 -0.0080570001 -0.93182498 0.36195099 -0.026338 -0.40547299\n\t\t 0.91403902 0.01117 -0.72297001 0.69083297 -0.0080570001 -0.71705502 0.69614798 -0.034791999\n\t\t -0.71705502 0.69614798 -0.034791999 -0.40779799 0.91170102 0.050021 -0.40547299 0.91403902\n\t\t 0.01117 -0.40547299 0.91403902 0.01117 -0.40779799 0.91170102 0.050021 -0.036715001\n\t\t 0.99102002 0.12857699 -0.036715001 0.99102002 0.12857699 -0.026489999 0.99924201\n\t\t 0.028534999 -0.40547299 0.91403902 0.01117 0.357164 0.93312001 0.041475002 -0.026489999\n\t\t 0.99924201 0.028534999 -0.036715001 0.99102002 0.12857699 -0.036715001 0.99102002\n\t\t 0.12857699 0.33985901 0.921489 0.18802699 0.357164 0.93312001 0.041475002 0.357164\n\t\t 0.93312001 0.041475002 0.33985901 0.921489 0.18802699 0.66748798 0.71174198 0.218824\n\t\t 0.66748798 0.71174198 0.218824 0.68720001 0.72489202 0.047823999 0.357164 0.93312001\n\t\t 0.041475002 0.91262001 0.406091 0.047061 0.68720001 0.72489202 0.047823999 0.66748798\n\t\t 0.71174198 0.218824 -0.91309899 -0.40486601 -0.048312001 -0.99894702 -0.022249 -0.040132001\n\t\t -0.99966401 -0.025728 -0.003143 -0.99966401 -0.025728 -0.003143 -0.91362 -0.40654501\n\t\t -0.0044249999 -0.91309899 -0.40486601 -0.048312001 -0.91309899 -0.40486601 -0.048312001\n\t\t -0.91362 -0.40654501 -0.0044249999 -0.68814403 -0.72556102 -0.0044860002 -0.68814403\n\t\t -0.72556102 -0.0044860002 -0.68654799 -0.72545999 -0.048586 -0.91309899 -0.40486601\n\t\t -0.048312001 -0.35488001 -0.93398702 -0.041567001 -0.68654799 -0.72545999 -0.048586\n\t\t -0.68814403 -0.72556102 -0.0044860002 -0.68814403 -0.72556102 -0.0044860002 -0.35771501\n\t\t -0.93382502 -0.003296 -0.35488001 -0.93398702 -0.041567001 -0.35488001 -0.93398702\n\t\t -0.041567001 -0.35771501 -0.93382502 -0.003296 0.026643001 -0.99964398 -0.001678\n\t\t 0.026643001 -0.99964398 -0.001678 0.030733 -0.999143 -0.027712001 -0.35488001 -0.93398702\n\t\t -0.041567001 0.40956801 -0.91221797 -0.010621 0.030733 -0.999143 -0.027712001 0.026643001\n\t\t -0.99964398 -0.001678 0.026643001 -0.99964398 -0.001678 0.407435 -0.913234 -6.0999999e-05\n\t\t 0.40956801 -0.91221797 -0.010621 0.40956801 -0.91221797 -0.010621 0.407435 -0.913234\n\t\t -6.0999999e-05 0.72512197 -0.68862098 0.000153 0.72512197 -0.68862098 0.000153 0.72648102\n\t\t -0.687141 0.0079659997 0.40956801 -0.91221797 -0.010621 0.93327498 -0.358264 0.025392\n\t\t 0.72648102 -0.687141 0.0079659997 0.72512197 -0.68862098 0.000153 0.72512197 -0.68862098\n\t\t 0.000153 0.93370199 -0.35804999 -0.00030499999 0.93327498 -0.358264 0.025392 0.72470498\n\t\t -0.68811202 0.036134999 0.72648102 -0.687141 0.0079659997 0.93327498 -0.358264 0.025392\n\t\t 0.40956801 -0.91221797 -0.010621 0.72648102 -0.687141 0.0079659997 0.72470498 -0.68811202\n\t\t 0.036134999 0.93327498 -0.358264 0.025392 0.92356199 -0.365646 0.115483 0.72470498\n\t\t -0.68811202 0.036134999 0.72470498 -0.68811202 0.036134999 0.92356199 -0.365646 0.115483\n\t\t 0.89359403 -0.39344901 0.216074 0.89359403 -0.39344901 0.216074 0.71158201 -0.70013702\n\t\t 0.058809999 0.72470498 -0.68811202 0.036134999 0.71158201 -0.70013702 0.058809999\n\t\t 0.89359403 -0.39344901 0.216074 0.86473697 -0.423334 0.270219 0.86473697 -0.423334\n\t\t 0.270219 0.70714802 -0.70479798 0.056582 0.71158201 -0.70013702 0.058809999 0.70714802\n\t\t -0.70479798 0.056582 0.86473697 -0.423334 0.270219 0.84093702 -0.44787499 0.3037\n\t\t 0.84093702 -0.44787499 0.3037 0.71697599 -0.69585598 0.041597001 0.70714802 -0.70479798\n\t\t 0.056582 0.71697599 -0.69585598 0.041597001 0.84093702 -0.44787499 0.3037 0.81211102\n\t\t -0.47740901 0.335495 0.81211102 -0.47740901 0.335495 0.73889703 -0.67346299 0.021881999\n\t\t 0.71697599 -0.69585598 0.041597001 0.73889703 -0.67346299 0.021881999 0.81211102\n\t\t -0.47740901 0.335495 0.77876198 -0.514525 0.358877 0.77876198 -0.514525 0.358877\n\t\t 0.76167202 -0.64795703 0.002808 0.73889703 -0.67346299 0.021881999 0.76167202 -0.64795703\n\t\t 0.002808 0.77876198 -0.514525 0.358877 0.74483299 -0.55252802 0.37408 0.74483299\n\t\t -0.55252802 0.37408 0.777197 -0.62923998 -0.0046390002 0.76167202 -0.64795703 0.002808\n\t\t 0.777197 -0.62923998 -0.0046390002 0.74483299 -0.55252802 0.37408 0.711061 -0.59127402\n\t\t 0.38051 0.711061 -0.59127402 0.38051 0.78418303 -0.62050998 -0.0050360002 0.777197\n\t\t -0.62923998 -0.0046390002 0.78418303 -0.62050998 -0.0050360002 0.711061 -0.59127402\n\t\t 0.38051 0.67743999 -0.63141698 0.377343 0.67743999 -0.63141698 0.377343 0.782727\n\t\t -0.62234801 -0.0045469999 0.78418303 -0.62050998 -0.0050360002 0.782727 -0.62234801\n\t\t -0.0045469999 0.67743999 -0.63141698 0.377343 0.64468902 -0.67069101 0.36681101 0.64468902\n\t\t -0.67069101 0.36681101 0.77948999 -0.626405 -0.0034179999 0.782727 -0.62234801 -0.0045469999\n\t\t 0.77948999 -0.626405 -0.0034179999 0.64468902 -0.67069101 0.36681101 0.61069202 -0.70841497\n\t\t 0.35384101 0.61069202 -0.70841497 0.35384101 0.78049302 -0.62515098 0.0042119999\n\t\t 0.77948999 -0.626405 -0.0034179999 0.78049302 -0.62515098 0.0042119999 0.61069202\n\t\t -0.70841497 0.35384101 0.56685901 -0.75101 0.338608 0.56685901 -0.75101 0.338608\n\t\t 0.78272098 -0.62185502 0.025392 0.78049302 -0.62515098 0.0042119999 0.78272098 -0.62185502\n\t\t 0.025392 0.56685901 -0.75101 0.338608 0.50369298 -0.80659699 0.30934501 0.50369298\n\t\t -0.80659699 0.30934501 0.77872998 -0.62384403 0.066317998 0.78272098 -0.62185502\n\t\t 0.025392 0.77872998 -0.62384403 0.066317998 0.50369298 -0.80659699 0.30934501 0.42571399\n\t\t -0.87166202 0.242842;\n\tsetAttr \".n[44820:44985]\" -type \"float3\"  0.42571399 -0.87166202 0.242842 0.61081702\n\t\t -0.76939601 0.186901 0.77872998 -0.62384403 0.066317998 0.61081702 -0.76939601 0.186901\n\t\t 0.42571399 -0.87166202 0.242842 0.371393 -0.92101902 0.117439 0.371393 -0.92101902\n\t\t 0.117439 0.56442201 -0.81522799 0.129737 0.61081702 -0.76939601 0.186901 0.56442201\n\t\t -0.81522799 0.129737 0.371393 -0.92101902 0.117439 0.382624 -0.92294198 -0.042146999\n\t\t 0.382624 -0.92294198 -0.042146999 0.695683 -0.71036297 0.106817 0.56442201 -0.81522799\n\t\t 0.129737 0.695683 -0.71036297 0.106817 0.382624 -0.92294198 -0.042146999 0.45071\n\t\t -0.87520301 -0.17573 0.45071 -0.87520301 -0.17573 0.70263898 -0.70755202 0.075290002\n\t\t 0.695683 -0.71036297 0.106817 0.887631 -0.376764 0.26487899 0.695683 -0.71036297\n\t\t 0.106817 0.70263898 -0.70755202 0.075290002 0.70263898 -0.70755202 0.075290002 0.83486003\n\t\t -0.432125 0.340994 0.887631 -0.376764 0.26487899 0.695683 -0.71036297 0.106817 0.887631\n\t\t -0.376764 0.26487899 0.940202 -0.31684899 0.12500601 0.940202 -0.31684899 0.12500601\n\t\t 0.87201601 -0.47313401 0.125433 0.695683 -0.71036297 0.106817 0.87201601 -0.47313401\n\t\t 0.125433 0.940202 -0.31684899 0.12500601 0.95149499 -0.30198601 -0.058841001 0.95149499\n\t\t -0.30198601 -0.058841001 0.89173597 -0.45226201 0.016297 0.87201601 -0.47313401 0.125433\n\t\t 0.89173597 -0.45226201 0.016297 0.95149499 -0.30198601 -0.058841001 0.91473103 -0.34310001\n\t\t -0.213423 0.91473103 -0.34310001 -0.213423 0.77872998 -0.62384403 0.066317998 0.89173597\n\t\t -0.45226201 0.016297 0.880849 -0.026520999 -0.472653 0.91473103 -0.34310001 -0.213423\n\t\t 0.95149499 -0.30198601 -0.058841001 0.95149499 -0.30198601 -0.058841001 0.96791899\n\t\t 0.069889002 -0.241346 0.880849 -0.026520999 -0.472653 0.96791899 0.069889002 -0.241346\n\t\t 0.95149499 -0.30198601 -0.058841001 0.940202 -0.31684899 0.12500601 0.940202 -0.31684899\n\t\t 0.12500601 0.99202299 0.084508002 0.093540996 0.96791899 0.069889002 -0.241346 0.99202299\n\t\t 0.084508002 0.093540996 0.940202 -0.31684899 0.12500601 0.887631 -0.376764 0.26487899\n\t\t 0.887631 -0.376764 0.26487899 0.92015201 0.00055 0.391561 0.99202299 0.084508002\n\t\t 0.093540996 0.92015201 0.00055 0.391561 0.887631 -0.376764 0.26487899 0.83486003\n\t\t -0.432125 0.340994 0.83486003 -0.432125 0.340994 0.82084298 -0.100774 0.56219298\n\t\t 0.92015201 0.00055 0.391561 0.81232899 0.364582 0.455194 0.92015201 0.00055 0.391561\n\t\t 0.82084298 -0.100774 0.56219298 0.82084298 -0.100774 0.56219298 0.67844599 0.23741101\n\t\t 0.69523197 0.81232899 0.364582 0.455194 0.92015201 0.00055 0.391561 0.81232899 0.364582\n\t\t 0.455194 0.88996398 0.45448899 0.037477002 0.88996398 0.45448899 0.037477002 0.99202299\n\t\t 0.084508002 0.093540996 0.92015201 0.00055 0.391561 0.99202299 0.084508002 0.093540996\n\t\t 0.88996398 0.45448899 0.037477002 0.82454801 0.40450701 -0.39559501 0.82454801 0.40450701\n\t\t -0.39559501 0.96791899 0.069889002 -0.241346 0.99202299 0.084508002 0.093540996 0.96791899\n\t\t 0.069889002 -0.241346 0.82454801 0.40450701 -0.39559501 0.70100099 0.27208099 -0.65921998\n\t\t 0.70100099 0.27208099 -0.65921998 0.880849 -0.026520999 -0.472653 0.96791899 0.069889002\n\t\t -0.241346 0.435967 0.51363802 -0.73899198 0.70100099 0.27208099 -0.65921998 0.82454801\n\t\t 0.40450701 -0.39559501 0.82454801 0.40450701 -0.39559501 0.57832003 0.65669501 -0.48404399\n\t\t 0.435967 0.51363802 -0.73899198 0.57832003 0.65669501 -0.48404399 0.82454801 0.40450701\n\t\t -0.39559501 0.88996398 0.45448899 0.037477002 0.88996398 0.45448899 0.037477002 0.65817499\n\t\t 0.69717801 -0.284163 0.57832003 0.65669501 -0.48404399 0.638336 0.73447102 0.230388\n\t\t 0.88996398 0.45448899 0.037477002 0.81232899 0.364582 0.455194 0.81232899 0.364582\n\t\t 0.455194 0.60097998 0.66717601 0.44011399 0.638336 0.73447102 0.230388 0.60097998\n\t\t 0.66717601 0.44011399 0.81232899 0.364582 0.455194 0.67844599 0.23741101 0.69523197\n\t\t 0.67844599 0.23741101 0.69523197 0.448576 0.53369498 0.71690297 0.60097998 0.66717601\n\t\t 0.44011399 0.31337601 0.88198799 0.35198301 0.60097998 0.66717601 0.44011399 0.448576\n\t\t 0.53369498 0.71690297 0.448576 0.53369498 0.71690297 0.16443799 0.759839 0.62897199\n\t\t 0.31337601 0.88198799 0.35198301 0.60097998 0.66717601 0.44011399 0.31337601 0.88198799\n\t\t 0.35198301 0.370134 0.92463499 -0.089726001 0.370134 0.92463499 -0.089726001 0.638336\n\t\t 0.73447102 0.230388 0.60097998 0.66717601 0.44011399 0.65817499 0.69717801 -0.284163\n\t\t 0.370134 0.92463499 -0.089726001 0.275462 0.82501501 -0.49342799 0.275462 0.82501501\n\t\t -0.49342799 0.57832003 0.65669501 -0.48404399 0.65817499 0.69717801 -0.284163 0.57832003\n\t\t 0.65669501 -0.48404399 0.275462 0.82501501 -0.49342799 0.131384 0.69253403 -0.70932001\n\t\t 0.131384 0.69253403 -0.70932001 0.435967 0.51363802 -0.73899198 0.57832003 0.65669501\n\t\t -0.48404399 -0.19578101 0.79490399 -0.57428002 0.131384 0.69253403 -0.70932001 0.275462\n\t\t 0.82501501 -0.49342799 0.275462 0.82501501 -0.49342799 -0.070713997 0.90276498 -0.424281\n\t\t -0.19578101 0.79490399 -0.57428002 -0.070713997 0.90276498 -0.424281 0.275462 0.82501501\n\t\t -0.49342799 0.370134 0.92463499 -0.089726001 0.370134 0.92463499 -0.089726001 0.0084229996\n\t\t 0.99158502 -0.129186 -0.070713997 0.90276498 -0.424281 0.0084229996 0.99158502 -0.129186\n\t\t 0.370134 0.92463499 -0.089726001 0.31337601 0.88198799 0.35198301 0.31337601 0.88198799\n\t\t 0.35198301 -0.031771 0.97695398 0.211072 0.0084229996 0.99158502 -0.129186 -0.031771\n\t\t 0.97695398 0.211072 0.31337601 0.88198799 0.35198301 0.16443799 0.759839 0.62897199\n\t\t 0.16443799 0.759839 0.62897199 -0.15214001 0.88317102 0.44369099 -0.031771 0.97695398\n\t\t 0.211072 0.70100099 0.27208099 -0.65921998;\n\tsetAttr \".n[44986:45151]\" -type \"float3\"  0.435967 0.51363802 -0.73899198 0.32774201\n\t\t 0.39601299 -0.85776401 0.435967 0.51363802 -0.73899198 0.131384 0.69253403 -0.70932001\n\t\t 0.021211 0.592417 -0.80535197 0.021211 0.592417 -0.80535197 0.32774201 0.39601299\n\t\t -0.85776401 0.435967 0.51363802 -0.73899198 0.32774201 0.39601299 -0.85776401 0.021211\n\t\t 0.592417 -0.80535197 -0.059604 0.51220202 -0.856794 -0.059604 0.51220202 -0.856794\n\t\t 0.24708 0.30241001 -0.92059797 0.32774201 0.39601299 -0.85776401 0.59945703 0.148995\n\t\t -0.78641701 0.32774201 0.39601299 -0.85776401 0.24708 0.30241001 -0.92059797 0.24708\n\t\t 0.30241001 -0.92059797 0.52334499 0.051851999 -0.85054201 0.59945703 0.148995 -0.78641701\n\t\t 0.79469001 -0.129462 -0.59304899 0.59945703 0.148995 -0.78641701 0.52334499 0.051851999\n\t\t -0.85054201 0.59945703 0.148995 -0.78641701 0.79469001 -0.129462 -0.59304899 0.880849\n\t\t -0.026520999 -0.472653 0.91473103 -0.34310001 -0.213423 0.880849 -0.026520999 -0.472653\n\t\t 0.79469001 -0.129462 -0.59304899 0.79469001 -0.129462 -0.59304899 0.86367601 -0.40035599\n\t\t -0.306234 0.91473103 -0.34310001 -0.213423 0.77872998 -0.62384403 0.066317998 0.91473103\n\t\t -0.34310001 -0.213423 0.86367601 -0.40035599 -0.306234 0.86367601 -0.40035599 -0.306234\n\t\t 0.78272098 -0.62185502 0.025392 0.77872998 -0.62384403 0.066317998 0.78272098 -0.62185502\n\t\t 0.025392 0.86367601 -0.40035599 -0.306234 0.82157898 -0.448847 -0.35148999 0.82157898\n\t\t -0.448847 -0.35148999 0.78049302 -0.62515098 0.0042119999 0.78272098 -0.62185502\n\t\t 0.025392 0.78049302 -0.62515098 0.0042119999 0.82157898 -0.448847 -0.35148999 0.78940201\n\t\t -0.486929 -0.373826 0.78940201 -0.486929 -0.373826 0.77948999 -0.626405 -0.0034179999\n\t\t 0.78049302 -0.62515098 0.0042119999 0.77948999 -0.626405 -0.0034179999 0.78940201\n\t\t -0.486929 -0.373826 0.76426101 -0.51760501 -0.38469401 0.76426101 -0.51760501 -0.38469401\n\t\t 0.782727 -0.62234801 -0.0045469999 0.77948999 -0.626405 -0.0034179999 0.62857801\n\t\t -0.33751401 -0.70069498 0.76426101 -0.51760501 -0.38469401 0.78940201 -0.486929 -0.373826\n\t\t 0.78940201 -0.486929 -0.373826 0.675677 -0.27803501 -0.68275702 0.62857801 -0.33751401\n\t\t -0.70069498 0.675677 -0.27803501 -0.68275702 0.78940201 -0.486929 -0.373826 0.82157898\n\t\t -0.448847 -0.35148999 0.82157898 -0.448847 -0.35148999 0.72873503 -0.211528 -0.651308\n\t\t 0.675677 -0.27803501 -0.68275702 0.72873503 -0.211528 -0.651308 0.82157898 -0.448847\n\t\t -0.35148999 0.86367601 -0.40035599 -0.306234 0.86367601 -0.40035599 -0.306234 0.79469001\n\t\t -0.129462 -0.59304899 0.72873503 -0.211528 -0.651308 0.52334499 0.051851999 -0.85054201\n\t\t 0.72873503 -0.211528 -0.651308 0.79469001 -0.129462 -0.59304899 0.72873503 -0.211528\n\t\t -0.651308 0.52334499 0.051851999 -0.85054201 0.45958599 -0.030336 -0.88761503 0.45958599\n\t\t -0.030336 -0.88761503 0.675677 -0.27803501 -0.68275702 0.72873503 -0.211528 -0.651308\n\t\t 0.675677 -0.27803501 -0.68275702 0.45958599 -0.030336 -0.88761503 0.398518 -0.108495\n\t\t -0.910721 0.398518 -0.108495 -0.910721 0.62857801 -0.33751401 -0.70069498 0.675677\n\t\t -0.27803501 -0.68275702 0.112705 0.13416 -0.98452997 0.398518 -0.108495 -0.910721\n\t\t 0.45958599 -0.030336 -0.88761503 0.45958599 -0.030336 -0.88761503 0.179359 0.21851499\n\t\t -0.95920902 0.112705 0.13416 -0.98452997 0.179359 0.21851499 -0.95920902 0.45958599\n\t\t -0.030336 -0.88761503 0.52334499 0.051851999 -0.85054201 0.52334499 0.051851999 -0.85054201\n\t\t 0.24708 0.30241001 -0.92059797 0.179359 0.21851499 -0.95920902 -0.125067 0.43700001\n\t\t -0.890724 0.179359 0.21851499 -0.95920902 0.24708 0.30241001 -0.92059797 0.24708\n\t\t 0.30241001 -0.92059797 -0.059604 0.51220202 -0.856794 -0.125067 0.43700001 -0.890724\n\t\t 0.179359 0.21851499 -0.95920902 -0.125067 0.43700001 -0.890724 -0.188729 0.35795501\n\t\t -0.91446698 -0.188729 0.35795501 -0.91446698 0.112705 0.13416 -0.98452997 0.179359\n\t\t 0.21851499 -0.95920902 -0.46505001 0.531703 -0.70782799 -0.188729 0.35795501 -0.91446698\n\t\t -0.125067 0.43700001 -0.890724 -0.125067 0.43700001 -0.890724 -0.413322 0.59481901\n\t\t -0.68945998 -0.46505001 0.531703 -0.70782799 -0.413322 0.59481901 -0.68945998 -0.125067\n\t\t 0.43700001 -0.890724 -0.059604 0.51220202 -0.856794 -0.059604 0.51220202 -0.856794\n\t\t -0.359734 0.65357602 -0.66590601 -0.413322 0.59481901 -0.68945998 -0.359734 0.65357602\n\t\t -0.66590601 -0.059604 0.51220202 -0.856794 0.021211 0.592417 -0.80535197 0.021211\n\t\t 0.592417 -0.80535197 -0.29142499 0.71594298 -0.63442701 -0.359734 0.65357602 -0.66590601\n\t\t -0.29142499 0.71594298 -0.63442701 0.021211 0.592417 -0.80535197 0.131384 0.69253403\n\t\t -0.70932001 0.131384 0.69253403 -0.70932001 -0.19578101 0.79490399 -0.57428002 -0.29142499\n\t\t 0.71594298 -0.63442701 0.398518 -0.108495 -0.910721 0.112705 0.13416 -0.98452997\n\t\t 0.031342998 0.038056999 -0.99878401 0.031342998 0.038056999 -0.99878401 0.32600999\n\t\t -0.198957 -0.92419302 0.398518 -0.108495 -0.910721 0.62857801 -0.33751401 -0.70069498\n\t\t 0.398518 -0.108495 -0.910721 0.32600999 -0.198957 -0.92419302 0.32600999 -0.198957\n\t\t -0.92419302 0.57450402 -0.407592 -0.70979798 0.62857801 -0.33751401 -0.70069498 0.76426101\n\t\t -0.51760501 -0.38469401 0.62857801 -0.33751401 -0.70069498 0.57450402 -0.407592 -0.70979798\n\t\t 0.57450402 -0.407592 -0.70979798 0.73523098 -0.55495602 -0.38917699 0.76426101 -0.51760501\n\t\t -0.38469401 0.782727 -0.62234801 -0.0045469999 0.76426101 -0.51760501 -0.38469401\n\t\t 0.73523098 -0.55495602 -0.38917699 0.73523098 -0.55495602 -0.38917699 0.78418303\n\t\t -0.62050998 -0.0050360002 0.782727 -0.62234801 -0.0045469999 0.78418303 -0.62050998\n\t\t -0.0050360002 0.73523098 -0.55495602 -0.38917699 0.69132602 -0.61209702 -0.38393399\n\t\t 0.69132602 -0.61209702 -0.38393399 0.777197 -0.62923998 -0.0046390002;\n\tsetAttr \".n[45152:45317]\" -type \"float3\"  0.78418303 -0.62050998 -0.0050360002\n\t\t 0.777197 -0.62923998 -0.0046390002 0.69132602 -0.61209702 -0.38393399 0.631194 -0.68835503\n\t\t -0.357438 0.631194 -0.68835503 -0.357438 0.76167202 -0.64795703 0.002808 0.777197\n\t\t -0.62923998 -0.0046390002 0.76167202 -0.64795703 0.002808 0.631194 -0.68835503 -0.357438\n\t\t 0.55600101 -0.77528203 -0.299669 0.55600101 -0.77528203 -0.299669 0.73889703 -0.67346299\n\t\t 0.021881999 0.76167202 -0.64795703 0.002808 0.28572401 -0.76210302 -0.58099997 0.55600101\n\t\t -0.77528203 -0.299669 0.631194 -0.68835503 -0.357438 0.631194 -0.68835503 -0.357438\n\t\t 0.40351999 -0.626369 -0.66695899 0.28572401 -0.76210302 -0.58099997 0.40351999 -0.626369\n\t\t -0.66695899 0.631194 -0.68835503 -0.357438 0.69132602 -0.61209702 -0.38393399 0.69132602\n\t\t -0.61209702 -0.38393399 0.50051498 -0.50387198 -0.703987 0.40351999 -0.626369 -0.66695899\n\t\t 0.50051498 -0.50387198 -0.703987 0.69132602 -0.61209702 -0.38393399 0.73523098 -0.55495602\n\t\t -0.38917699 0.73523098 -0.55495602 -0.38917699 0.57450402 -0.407592 -0.70979798 0.50051498\n\t\t -0.50387198 -0.703987 0.229507 -0.316946 -0.92025602 0.50051498 -0.50387198 -0.703987\n\t\t 0.57450402 -0.407592 -0.70979798 0.57450402 -0.407592 -0.70979798 0.32600999 -0.198957\n\t\t -0.92419302 0.229507 -0.316946 -0.92025602 0.50051498 -0.50387198 -0.703987 0.229507\n\t\t -0.316946 -0.92025602 0.105444 -0.46377099 -0.87965798 0.105444 -0.46377099 -0.87965798\n\t\t 0.40351999 -0.626369 -0.66695899 0.50051498 -0.50387198 -0.703987 0.40351999 -0.626369\n\t\t -0.66695899 0.105444 -0.46377099 -0.87965798 -0.039887998 -0.62594599 -0.77884603\n\t\t -0.039887998 -0.62594599 -0.77884603 0.28572401 -0.76210302 -0.58099997 0.40351999\n\t\t -0.626369 -0.66695899 -0.35820499 -0.38747299 -0.84944302 -0.039887998 -0.62594599\n\t\t -0.77884603 0.105444 -0.46377099 -0.87965798 0.105444 -0.46377099 -0.87965798 -0.20798901\n\t\t -0.22681899 -0.951469 -0.35820499 -0.38747299 -0.84944302 -0.20798901 -0.22681899\n\t\t -0.951469 0.105444 -0.46377099 -0.87965798 0.229507 -0.316946 -0.92025602 0.229507\n\t\t -0.316946 -0.92025602 -0.074711002 -0.081609003 -0.99386001 -0.20798901 -0.22681899\n\t\t -0.951469 -0.074711002 -0.081609003 -0.99386001 0.229507 -0.316946 -0.92025602 0.32600999\n\t\t -0.198957 -0.92419302 0.32600999 -0.198957 -0.92419302 0.031342998 0.038056999 -0.99878401\n\t\t -0.074711002 -0.081609003 -0.99386001 -0.36415601 0.16425499 -0.91673899 -0.074711002\n\t\t -0.081609003 -0.99386001 0.031342998 0.038056999 -0.99878401 0.031342998 0.038056999\n\t\t -0.99878401 -0.266341 0.269301 -0.92549402 -0.36415601 0.16425499 -0.91673899 -0.266341\n\t\t 0.269301 -0.92549402 0.031342998 0.038056999 -0.99878401 0.112705 0.13416 -0.98452997\n\t\t 0.112705 0.13416 -0.98452997 -0.188729 0.35795501 -0.91446698 -0.266341 0.269301\n\t\t -0.92549402 -0.074711002 -0.081609003 -0.99386001 -0.36415601 0.16425499 -0.91673899\n\t\t -0.48299199 0.041475002 -0.87464201 -0.48299199 0.041475002 -0.87464201 -0.20798901\n\t\t -0.22681899 -0.951469 -0.074711002 -0.081609003 -0.99386001 -0.20798901 -0.22681899\n\t\t -0.951469 -0.48299199 0.041475002 -0.87464201 -0.61248899 -0.093052998 -0.78498298\n\t\t -0.61248899 -0.093052998 -0.78498298 -0.35820499 -0.38747299 -0.84944302 -0.20798901\n\t\t -0.22681899 -0.951469 -0.76953697 0.21000101 -0.60308599 -0.61248899 -0.093052998\n\t\t -0.78498298 -0.48299199 0.041475002 -0.87464201 -0.48299199 0.041475002 -0.87464201\n\t\t -0.68211001 0.30012801 -0.66681999 -0.76953697 0.21000101 -0.60308599 -0.68211001\n\t\t 0.30012801 -0.66681999 -0.48299199 0.041475002 -0.87464201 -0.36415601 0.16425499\n\t\t -0.91673899 -0.36415601 0.16425499 -0.91673899 -0.59889001 0.38525099 -0.70207697\n\t\t -0.68211001 0.30012801 -0.66681999 -0.59889001 0.38525099 -0.70207697 -0.36415601\n\t\t 0.16425499 -0.91673899 -0.266341 0.269301 -0.92549402 -0.266341 0.269301 -0.92549402\n\t\t -0.52639598 0.46230501 -0.71357 -0.59889001 0.38525099 -0.70207697 -0.52639598 0.46230501\n\t\t -0.71357 -0.266341 0.269301 -0.92549402 -0.188729 0.35795501 -0.91446698 -0.188729\n\t\t 0.35795501 -0.91446698 -0.46505001 0.531703 -0.70782799 -0.52639598 0.46230501 -0.71357\n\t\t -0.039887998 -0.62594599 -0.77884603 -0.35820499 -0.38747299 -0.84944302 -0.47887799\n\t\t -0.51977402 -0.70746797 -0.35820499 -0.38747299 -0.84944302 -0.61248899 -0.093052998\n\t\t -0.78498298 -0.71491802 -0.21092001 -0.666637 -0.71491802 -0.21092001 -0.666637 -0.47887799\n\t\t -0.51977402 -0.70746797 -0.35820499 -0.38747299 -0.84944302 -0.47887799 -0.51977402\n\t\t -0.70746797 -0.71491802 -0.21092001 -0.666637 -0.78261602 -0.28920501 -0.55124599\n\t\t -0.78261602 -0.28920501 -0.55124599 -0.55505502 -0.60312402 -0.57284802 -0.47887799\n\t\t -0.51977402 -0.70746797 -0.163339 -0.75232899 -0.63821799 -0.47887799 -0.51977402\n\t\t -0.70746797 -0.55505502 -0.60312402 -0.57284802 -0.55505502 -0.60312402 -0.57284802\n\t\t -0.240308 -0.827649 -0.50719798 -0.163339 -0.75232899 -0.63821799 0.178966 -0.86583698\n\t\t -0.46722201 -0.163339 -0.75232899 -0.63821799 -0.240308 -0.827649 -0.50719798 -0.163339\n\t\t -0.75232899 -0.63821799 0.178966 -0.86583698 -0.46722201 0.28572401 -0.76210302 -0.58099997\n\t\t 0.55600101 -0.77528203 -0.299669 0.28572401 -0.76210302 -0.58099997 0.178966 -0.86583698\n\t\t -0.46722201 0.178966 -0.86583698 -0.46722201 0.48541 -0.84376699 -0.228986 0.55600101\n\t\t -0.77528203 -0.299669 0.73889703 -0.67346299 0.021881999 0.55600101 -0.77528203 -0.299669\n\t\t 0.48541 -0.84376699 -0.228986 0.48541 -0.84376699 -0.228986 0.71697599 -0.69585598\n\t\t 0.041597001 0.73889703 -0.67346299 0.021881999 0.71697599 -0.69585598 0.041597001\n\t\t 0.48541 -0.84376699 -0.228986 0.442653 -0.88124597 -0.16572 0.442653 -0.88124597\n\t\t -0.16572 0.70714802 -0.70479798 0.056582 0.71697599 -0.69585598 0.041597001 0.70714802\n\t\t -0.70479798 0.056582 0.442653 -0.88124597 -0.16572 0.42110899 -0.90078503 -0.106086\n\t\t 0.42110899 -0.90078503 -0.106086 0.71158201 -0.70013702 0.058809999 0.70714802 -0.70479798\n\t\t 0.056582;\n\tsetAttr \".n[45318:45483]\" -type \"float3\"  0.71158201 -0.70013702 0.058809999 0.42110899\n\t\t -0.90078503 -0.106086 0.41606301 -0.90808702 -0.04764 0.41606301 -0.90808702 -0.04764\n\t\t 0.72470498 -0.68811202 0.036134999 0.71158201 -0.70013702 0.058809999 0.046512 -0.99126798\n\t\t -0.12339 0.41606301 -0.90808702 -0.04764 0.42110899 -0.90078503 -0.106086 0.42110899\n\t\t -0.90078503 -0.106086 0.069614999 -0.96484399 -0.253434 0.046512 -0.99126798 -0.12339\n\t\t 0.069614999 -0.96484399 -0.253434 0.42110899 -0.90078503 -0.106086 0.442653 -0.88124597\n\t\t -0.16572 0.442653 -0.88124597 -0.16572 0.11228 -0.92509699 -0.36275101 0.069614999\n\t\t -0.96484399 -0.253434 0.11228 -0.92509699 -0.36275101 0.442653 -0.88124597 -0.16572\n\t\t 0.48541 -0.84376699 -0.228986 0.48541 -0.84376699 -0.228986 0.178966 -0.86583698\n\t\t -0.46722201 0.11228 -0.92509699 -0.36275101 -0.240308 -0.827649 -0.50719798 0.11228\n\t\t -0.92509699 -0.36275101 0.178966 -0.86583698 -0.46722201 0.11228 -0.92509699 -0.36275101\n\t\t -0.240308 -0.827649 -0.50719798 -0.295728 -0.88321698 -0.36396801 -0.295728 -0.88321698\n\t\t -0.36396801 0.069614999 -0.96484399 -0.253434 0.11228 -0.92509699 -0.36275101 0.069614999\n\t\t -0.96484399 -0.253434 -0.295728 -0.88321698 -0.36396801 -0.335439 -0.924496 -0.181072\n\t\t -0.335439 -0.924496 -0.181072 0.046512 -0.99126798 -0.12339 0.069614999 -0.96484399\n\t\t -0.253434 -0.66680402 -0.71456599 -0.211586 -0.335439 -0.924496 -0.181072 -0.295728\n\t\t -0.88321698 -0.36396801 -0.295728 -0.88321698 -0.36396801 -0.61566001 -0.66732901\n\t\t -0.41908699 -0.66680402 -0.71456599 -0.211586 -0.61566001 -0.66732901 -0.41908699\n\t\t -0.295728 -0.88321698 -0.36396801 -0.240308 -0.827649 -0.50719798 -0.240308 -0.827649\n\t\t -0.50719798 -0.55505502 -0.60312402 -0.57284802 -0.61566001 -0.66732901 -0.41908699\n\t\t -0.841573 -0.35036299 -0.41109699 -0.61566001 -0.66732901 -0.41908699 -0.55505502\n\t\t -0.60312402 -0.57284802 -0.55505502 -0.60312402 -0.57284802 -0.78261602 -0.28920501\n\t\t -0.55124599 -0.841573 -0.35036299 -0.41109699 -0.61566001 -0.66732901 -0.41908699\n\t\t -0.841573 -0.35036299 -0.41109699 -0.89566702 -0.39216799 -0.20972601 -0.89566702\n\t\t -0.39216799 -0.20972601 -0.66680402 -0.71456599 -0.211586 -0.61566001 -0.66732901\n\t\t -0.41908699 -0.98445803 -0.0082710003 -0.17542399 -0.89566702 -0.39216799 -0.20972601\n\t\t -0.841573 -0.35036299 -0.41109699 -0.841573 -0.35036299 -0.41109699 -0.93983698 0.021272\n\t\t -0.34096 -0.98445803 -0.0082710003 -0.17542399 -0.93983698 0.021272 -0.34096 -0.841573\n\t\t -0.35036299 -0.41109699 -0.78261602 -0.28920501 -0.55124599 -0.78261602 -0.28920501\n\t\t -0.55124599 -0.89189202 0.067813002 -0.44713601 -0.93983698 0.021272 -0.34096 -0.89189202\n\t\t 0.067813002 -0.44713601 -0.78261602 -0.28920501 -0.55124599 -0.71491802 -0.21092001\n\t\t -0.666637 -0.71491802 -0.21092001 -0.666637 -0.84089601 0.12659299 -0.526182 -0.89189202\n\t\t 0.067813002 -0.44713601 -0.84089601 0.12659299 -0.526182 -0.71491802 -0.21092001\n\t\t -0.666637 -0.61248899 -0.093052998 -0.78498298 -0.61248899 -0.093052998 -0.78498298\n\t\t -0.76953697 0.21000101 -0.60308599 -0.84089601 0.12659299 -0.526182 -0.35488001 -0.93398702\n\t\t -0.041567001 -0.335439 -0.924496 -0.181072 -0.66680402 -0.71456599 -0.211586 0.046512\n\t\t -0.99126798 -0.12339 -0.335439 -0.924496 -0.181072 -0.35488001 -0.93398702 -0.041567001\n\t\t -0.35488001 -0.93398702 -0.041567001 0.030733 -0.999143 -0.027712001 0.046512 -0.99126798\n\t\t -0.12339 0.046512 -0.99126798 -0.12339 0.030733 -0.999143 -0.027712001 0.40956801\n\t\t -0.91221797 -0.010621 0.40956801 -0.91221797 -0.010621 0.41606301 -0.90808702 -0.04764\n\t\t 0.046512 -0.99126798 -0.12339 0.72470498 -0.68811202 0.036134999 0.41606301 -0.90808702\n\t\t -0.04764 0.40956801 -0.91221797 -0.010621 -0.89566702 -0.39216799 -0.20972601 -0.98445803\n\t\t -0.0082710003 -0.17542399 -0.99894702 -0.022249 -0.040132001 -0.99894702 -0.022249\n\t\t -0.040132001 -0.91309899 -0.40486601 -0.048312001 -0.89566702 -0.39216799 -0.20972601\n\t\t -0.66680402 -0.71456599 -0.211586 -0.89566702 -0.39216799 -0.20972601 -0.91309899\n\t\t -0.40486601 -0.048312001 -0.66680402 -0.71456599 -0.211586 -0.68654799 -0.72545999\n\t\t -0.048586 -0.35488001 -0.93398702 -0.041567001 -0.91309899 -0.40486601 -0.048312001\n\t\t -0.68654799 -0.72545999 -0.048586 -0.66680402 -0.71456599 -0.211586 0.13016599 -0.916502\n\t\t -0.378259 0.45071 -0.87520301 -0.17573 0.382624 -0.92294198 -0.042146999 0.382624\n\t\t -0.92294198 -0.042146999 0.018921999 -0.98705697 -0.15925001 0.13016599 -0.916502\n\t\t -0.378259 0.154186 -0.86056298 0.48544601 0.50369298 -0.80659699 0.30934501 0.56685901\n\t\t -0.75101 0.338608 0.56685901 -0.75101 0.338608 0.26210201 -0.76625502 0.58664799\n\t\t 0.154186 -0.86056298 0.48544601 0.880849 -0.026520999 -0.472653 0.70100099 0.27208099\n\t\t -0.65921998 0.59945703 0.148995 -0.78641701 0.32774201 0.39601299 -0.85776401 0.59945703\n\t\t 0.148995 -0.78641701 0.70100099 0.27208099 -0.65921998 0.46645799 -0.54269499 0.698497\n\t\t 0.67743999 -0.63141698 0.377343 0.711061 -0.59127402 0.38051 0.711061 -0.59127402\n\t\t 0.38051 0.52786201 -0.47137001 0.70652097 0.46645799 -0.54269499 0.698497 0.76872402\n\t\t -0.21241499 0.60327798 0.81211102 -0.47740901 0.335495 0.84093702 -0.44787499 0.3037\n\t\t 0.84093702 -0.44787499 0.3037 0.84189999 -0.13352101 0.52285397 0.76872402 -0.21241499\n\t\t 0.60327798 0.93938297 -0.026063001 0.34187701 0.89359403 -0.39344901 0.216074 0.92356199\n\t\t -0.365646 0.115483 0.92356199 -0.365646 0.115483 0.98373401 0.014314 0.179058 0.93938297\n\t\t -0.026063001 0.34187701 0.28572401 -0.76210302 -0.58099997 -0.039887998 -0.62594599\n\t\t -0.77884603 -0.163339 -0.75232899 -0.63821799 -0.47887799 -0.51977402 -0.70746797\n\t\t -0.163339 -0.75232899 -0.63821799 -0.039887998 -0.62594599 -0.77884603 0.98373401\n\t\t 0.014314 0.179058 0.92356199 -0.365646 0.115483 0.93327498 -0.358264 0.025392 0.93327498\n\t\t -0.358264 0.025392;\n\tsetAttr \".n[45484:45649]\" -type \"float3\"  0.998923 0.025301 0.038881 0.98373401\n\t\t 0.014314 0.179058 0.99967098 0.025636001 -0.001099 0.998923 0.025301 0.038881 0.93327498\n\t\t -0.358264 0.025392 0.93327498 -0.358264 0.025392 0.93370199 -0.35804999 -0.00030499999\n\t\t 0.99967098 0.025636001 -0.001099 -0.99900597 -0.002198 -0.044527002 -0.92173499 -0.38637099\n\t\t -0.03351 -0.91764998 -0.38728899 -0.089024 -0.69998699 -0.71073002 -0.069858 -0.91764998\n\t\t -0.38728899 -0.089024 -0.92173499 -0.38637099 -0.03351 -0.91764998 -0.38728899 -0.089024\n\t\t -0.69998699 -0.71073002 -0.069858 -0.65778798 -0.72245902 -0.21299601 -0.92173499\n\t\t -0.38637099 -0.03351 -0.70410901 -0.70981699 -0.019776 -0.69998699 -0.71073002 -0.069858\n\t\t -0.378746 -0.92431098 -0.046907999 -0.69998699 -0.71073002 -0.069858 -0.70410901\n\t\t -0.70981699 -0.019776 -0.70410901 -0.70981699 -0.019776 -0.380849 -0.92457998 -0.010285\n\t\t -0.378746 -0.92431098 -0.046907999 -0.69998699 -0.71073002 -0.069858 -0.378746 -0.92431098\n\t\t -0.046907999 -0.339468 -0.92617601 -0.164195 -0.339468 -0.92617601 -0.164195 -0.65778798\n\t\t -0.72245902 -0.21299601 -0.69998699 -0.71073002 -0.069858 0.024568001 -0.99521101\n\t\t -0.094608001 -0.339468 -0.92617601 -0.164195 -0.378746 -0.92431098 -0.046907999 -0.378746\n\t\t -0.92431098 -0.046907999 -0.000122 -0.99969 -0.024904 0.024568001 -0.99521101 -0.094608001\n\t\t -0.000122 -0.99969 -0.024904 -0.378746 -0.92431098 -0.046907999 -0.380849 -0.92457998\n\t\t -0.010285 -0.380849 -0.92457998 -0.010285 0.00082399999 -0.99997801 -0.0066220001\n\t\t -0.000122 -0.99969 -0.024904 0.00082399999 -0.99997801 -0.0066220001 0.38282701 -0.92380202\n\t\t -0.0057680001 0.38014901 -0.92491901 -0.003449 0.38014901 -0.92491901 -0.003449 -0.000122\n\t\t -0.99969 -0.024904 0.00082399999 -0.99997801 -0.0066220001 0.705935 -0.70807099 0.01706\n\t\t 0.38014901 -0.92491901 -0.003449 0.38282701 -0.92380202 -0.0057680001 0.38014901\n\t\t -0.92491901 -0.003449 0.705935 -0.70807099 0.01706 0.70489901 -0.705356 0.074772\n\t\t 0.70489901 -0.705356 0.074772 0.38866001 -0.92130798 -0.011628 0.38014901 -0.92491901\n\t\t -0.003449 -0.000122 -0.99969 -0.024904 0.38014901 -0.92491901 -0.003449 0.38866001\n\t\t -0.92130798 -0.011628 0.38866001 -0.92130798 -0.011628 0.024568001 -0.99521101 -0.094608001\n\t\t -0.000122 -0.99969 -0.024904 0.38282701 -0.92380202 -0.0057680001 0.70743197 -0.70675999\n\t\t -0.0054629999 0.705935 -0.70807099 0.01706 0.92438799 -0.37977701 0.035707001 0.705935\n\t\t -0.70807099 0.01706 0.70743197 -0.70675999 -0.0054629999 0.70743197 -0.70675999 -0.0054629999\n\t\t 0.92429298 -0.381668 -0.0034789999 0.92438799 -0.37977701 0.035707001 0.705935 -0.70807099\n\t\t 0.01706 0.92438799 -0.37977701 0.035707001 0.916668 -0.370592 0.14960399 0.916668\n\t\t -0.370592 0.14960399 0.70489901 -0.705356 0.074772 0.705935 -0.70807099 0.01706 0.97981602\n\t\t 0.029756 0.19767199 0.916668 -0.370592 0.14960399 0.92438799 -0.37977701 0.035707001\n\t\t 0.92438799 -0.37977701 0.035707001 0.99870503 0.0093090003 0.050021 0.97981602 0.029756\n\t\t 0.19767199 0.99870503 0.0093090003 0.050021 0.92438799 -0.37977701 0.035707001 0.92429298\n\t\t -0.381668 -0.0034789999 0.92429298 -0.381668 -0.0034789999 0.99999797 0.001679 0.00064099999\n\t\t 0.99870503 0.0093090003 0.050021 0.916825 0.39516199 0.057254001 0.99870503 0.0093090003\n\t\t 0.050021 0.99999797 0.001679 0.00064099999 0.99999797 0.001679 0.00064099999 0.92321301\n\t\t 0.38424 0.0061039999 0.916825 0.39516199 0.057254001 0.99870503 0.0093090003 0.050021\n\t\t 0.916825 0.39516199 0.057254001 0.88315898 0.419301 0.21027599 0.88315898 0.419301\n\t\t 0.21027599 0.97981602 0.029756 0.19767199 0.99870503 0.0093090003 0.050021 0.653346\n\t\t 0.73297 0.18945999 0.88315898 0.419301 0.21027599 0.916825 0.39516199 0.057254001\n\t\t 0.916825 0.39516199 0.057254001 0.69510603 0.716775 0.055330999 0.653346 0.73297\n\t\t 0.18945999 0.69510603 0.716775 0.055330999 0.916825 0.39516199 0.057254001 0.92321301\n\t\t 0.38424 0.0061039999 0.92321301 0.38424 0.0061039999 0.70642602 0.707708 0.01059\n\t\t 0.69510603 0.716775 0.055330999 0.37205899 0.92720401 0.043184999 0.69510603 0.716775\n\t\t 0.055330999 0.70642602 0.707708 0.01059 0.70642602 0.707708 0.01059 0.38384199 0.92333299\n\t\t 0.011048 0.37205899 0.92720401 0.043184999 0.69510603 0.716775 0.055330999 0.37205899\n\t\t 0.92720401 0.043184999 0.33531699 0.93127102 0.142465 0.33531699 0.93127102 0.142465\n\t\t 0.653346 0.73297 0.18945999 0.69510603 0.716775 0.055330999 -0.001404 0.99981302\n\t\t 0.019288 0.37205899 0.92720401 0.043184999 0.38384199 0.92333299 0.011048 0.38384199\n\t\t 0.92333299 0.011048 0.0051270002 0.99998301 0.002808 -0.001404 0.99981302 0.019288\n\t\t -0.18461099 0.92454797 0.333361 -0.49853 0.85221601 0.15873 -0.54027998 0.820903\n\t\t 0.184976 -0.54027998 0.820903 0.184976 -0.23517901 0.89283198 0.384112 -0.18461099\n\t\t 0.92454797 0.333361 -0.23517901 0.89283198 0.384112 -0.54027998 0.820903 0.184976\n\t\t -0.57785398 0.79292399 0.193279 -0.57785398 0.79292399 0.193279 -0.284897 0.85841399\n\t\t 0.42656699 -0.23517901 0.89283198 0.384112 -0.284897 0.85841399 0.42656699 -0.57785398\n\t\t 0.79292399 0.193279 -0.60433799 0.77222198 0.19608501 -0.60433799 0.77222198 0.19608501\n\t\t -0.32588801 0.82347798 0.46441501 -0.284897 0.85841399 0.42656699 -0.32588801 0.82347798\n\t\t 0.46441501 -0.60433799 0.77222198 0.19608501 -0.61529797 0.76056898 0.20722499 -0.61529797\n\t\t 0.76056898 0.20722499 -0.35225201 0.78861302 0.50399202 -0.32588801 0.82347798 0.46441501\n\t\t -0.78211999 0.60632801 -0.14371599 -0.61529797 0.76056898 0.20722499 -0.60433799\n\t\t 0.77222198 0.19608501 -0.60433799 0.77222198 0.19608501 -0.79537803 0.59343499 -0.123326\n\t\t -0.78211999 0.60632801 -0.14371599 -0.79537803 0.59343499 -0.123326 -0.60433799 0.77222198\n\t\t 0.19608501;\n\tsetAttr \".n[45650:45815]\" -type \"float3\"  -0.57785398 0.79292399 0.193279 -0.57785398\n\t\t 0.79292399 0.193279 -0.79604602 0.59900999 -0.086585 -0.79537803 0.59343499 -0.123326\n\t\t -0.79604602 0.59900999 -0.086585 -0.57785398 0.79292399 0.193279 -0.54027998 0.820903\n\t\t 0.184976 -0.54027998 0.820903 0.184976 -0.78275102 0.62008399 -0.052889001 -0.79604602\n\t\t 0.59900999 -0.086585 -0.78275102 0.62008399 -0.052889001 -0.54027998 0.820903 0.184976\n\t\t -0.49853 0.85221601 0.15873 -0.49853 0.85221601 0.15873 -0.75885803 0.64965999 -0.045565002\n\t\t -0.78275102 0.62008399 -0.052889001 -0.90191501 0.30498201 -0.30583701 -0.78275102\n\t\t 0.62008399 -0.052889001 -0.75885803 0.64965999 -0.045565002 -0.75885803 0.64965999\n\t\t -0.045565002 -0.907332 0.32856801 -0.262281 -0.90191501 0.30498201 -0.30583701 -0.78275102\n\t\t 0.62008399 -0.052889001 -0.90191501 0.30498201 -0.30583701 -0.87812501 0.29572901\n\t\t -0.376086 -0.87812501 0.29572901 -0.376086 -0.79604602 0.59900999 -0.086585 -0.78275102\n\t\t 0.62008399 -0.052889001 -0.79604602 0.59900999 -0.086585 -0.87812501 0.29572901 -0.376086\n\t\t -0.84251797 0.30971 -0.44073001 -0.84251797 0.30971 -0.44073001 -0.79537803 0.59343499\n\t\t -0.123326 -0.79604602 0.59900999 -0.086585 -0.79537803 0.59343499 -0.123326 -0.84251797\n\t\t 0.30971 -0.44073001 -0.80433601 0.34779799 -0.481747 -0.80433601 0.34779799 -0.481747\n\t\t -0.78211999 0.60632801 -0.14371599 -0.79537803 0.59343499 -0.123326 -0.68095797 0.044833001\n\t\t -0.73094898 -0.80433601 0.34779799 -0.481747 -0.84251797 0.30971 -0.44073001 -0.84251797\n\t\t 0.30971 -0.44073001 -0.72898299 -0.015168 -0.68436402 -0.68095797 0.044833001 -0.73094898\n\t\t -0.72898299 -0.015168 -0.68436402 -0.84251797 0.30971 -0.44073001 -0.87812501 0.29572901\n\t\t -0.376086 -0.87812501 0.29572901 -0.376086 -0.78830898 -0.053530999 -0.61294597 -0.72898299\n\t\t -0.015168 -0.68436402 -0.78830898 -0.053530999 -0.61294597 -0.87812501 0.29572901\n\t\t -0.376086 -0.90191501 0.30498201 -0.30583701 -0.90191501 0.30498201 -0.30583701 -0.84781802\n\t\t -0.065646999 -0.526209 -0.78830898 -0.053530999 -0.61294597 -0.84781802 -0.065646999\n\t\t -0.526209 -0.90191501 0.30498201 -0.30583701 -0.907332 0.32856801 -0.262281 -0.907332\n\t\t 0.32856801 -0.262281 -0.888699 -0.056338999 -0.45501599 -0.84781802 -0.065646999\n\t\t -0.526209 -0.634161 -0.402123 -0.66040701 -0.84781802 -0.065646999 -0.526209 -0.888699\n\t\t -0.056338999 -0.45501599 -0.888699 -0.056338999 -0.45501599 -0.70257902 -0.41487601\n\t\t -0.57815301 -0.634161 -0.402123 -0.66040701 -0.84781802 -0.065646999 -0.526209 -0.634161\n\t\t -0.402123 -0.66040701 -0.55930299 -0.36599201 -0.74379402 -0.55930299 -0.36599201\n\t\t -0.74379402 -0.78830898 -0.053530999 -0.61294597 -0.84781802 -0.065646999 -0.526209\n\t\t -0.78830898 -0.053530999 -0.61294597 -0.55930299 -0.36599201 -0.74379402 -0.499264\n\t\t -0.31031999 -0.80897301 -0.499264 -0.31031999 -0.80897301 -0.72898299 -0.015168 -0.68436402\n\t\t -0.78830898 -0.053530999 -0.61294597 -0.72898299 -0.015168 -0.68436402 -0.499264\n\t\t -0.31031999 -0.80897301 -0.459104 -0.241989 -0.85478902 -0.459104 -0.241989 -0.85478902\n\t\t -0.68095797 0.044833001 -0.73094898 -0.72898299 -0.015168 -0.68436402 -0.190166 -0.48000899\n\t\t -0.85640401 -0.459104 -0.241989 -0.85478902 -0.499264 -0.31031999 -0.80897301 -0.499264\n\t\t -0.31031999 -0.80897301 -0.217843 -0.53810602 -0.81423998 -0.190166 -0.48000899 -0.85640401\n\t\t -0.217843 -0.53810602 -0.81423998 -0.499264 -0.31031999 -0.80897301 -0.55930299 -0.36599201\n\t\t -0.74379402 -0.55930299 -0.36599201 -0.74379402 -0.266734 -0.59343702 -0.75939798\n\t\t -0.217843 -0.53810602 -0.81423998 -0.266734 -0.59343702 -0.75939798 -0.55930299 -0.36599201\n\t\t -0.74379402 -0.634161 -0.402123 -0.66040701 -0.634161 -0.402123 -0.66040701 -0.337208\n\t\t -0.64221901 -0.68836403 -0.266734 -0.59343702 -0.75939798 -0.337208 -0.64221901 -0.68836403\n\t\t -0.634161 -0.402123 -0.66040701 -0.70257902 -0.41487601 -0.57815301 -0.70257902 -0.41487601\n\t\t -0.57815301 -0.415676 -0.67622203 -0.60822397 -0.337208 -0.64221901 -0.68836403 -0.026155001\n\t\t -0.78269398 -0.621858 -0.337208 -0.64221901 -0.68836403 -0.415676 -0.67622203 -0.60822397\n\t\t -0.415676 -0.67622203 -0.60822397 -0.101323 -0.828439 -0.55083799 -0.026155001 -0.78269398\n\t\t -0.621858 -0.337208 -0.64221901 -0.68836403 -0.026155001 -0.78269398 -0.621858 0.035004999\n\t\t -0.73596299 -0.67611599 0.035004999 -0.73596299 -0.67611599 -0.266734 -0.59343702\n\t\t -0.75939798 -0.337208 -0.64221901 -0.68836403 -0.266734 -0.59343702 -0.75939798 0.035004999\n\t\t -0.73596299 -0.67611599 0.075595997 -0.69486302 -0.71515799 0.075595997 -0.69486302\n\t\t -0.71515799 -0.217843 -0.53810602 -0.81423998 -0.266734 -0.59343702 -0.75939798 -0.217843\n\t\t -0.53810602 -0.81423998 0.075595997 -0.69486302 -0.71515799 0.096532002 -0.65838599\n\t\t -0.74646401 0.096532002 -0.65838599 -0.74646401 -0.190166 -0.48000899 -0.85640401\n\t\t -0.217843 -0.53810602 -0.81423998 0.38014701 -0.75904202 -0.52853 0.096532002 -0.65838599\n\t\t -0.74646401 0.075595997 -0.69486302 -0.71515799 0.075595997 -0.69486302 -0.71515799\n\t\t 0.36287501 -0.77455097 -0.51806599 0.38014701 -0.75904202 -0.52853 0.36287501 -0.77455097\n\t\t -0.51806599 0.075595997 -0.69486302 -0.71515799 0.035004999 -0.73596299 -0.67611599\n\t\t 0.035004999 -0.73596299 -0.67611599 0.32680199 -0.79939502 -0.50414997 0.36287501\n\t\t -0.77455097 -0.51806599 0.32680199 -0.79939502 -0.50414997 0.035004999 -0.73596299\n\t\t -0.67611599 -0.026155001 -0.78269398 -0.621858 -0.026155001 -0.78269398 -0.621858\n\t\t 0.27364001 -0.83718503 -0.47354299 0.32680199 -0.79939502 -0.50414997 0.27364001\n\t\t -0.83718503 -0.47354299 -0.026155001 -0.78269398 -0.621858 -0.101323 -0.828439 -0.55083799\n\t\t -0.101323 -0.828439 -0.55083799 0.20789801 -0.88457298 -0.417505 0.27364001 -0.83718503\n\t\t -0.47354299 0.55429101 -0.79520899 -0.24577101 0.27364001 -0.83718503 -0.47354299\n\t\t 0.20789801 -0.88457298 -0.417505 0.20789801 -0.88457298 -0.417505 0.50342 -0.83745497\n\t\t -0.21269 0.55429101 -0.79520899 -0.24577101;\n\tsetAttr \".n[45816:45981]\" -type \"float3\"  0.59460402 -0.76563299 -0.245465 0.32680199\n\t\t -0.79939502 -0.50414997 0.27364001 -0.83718503 -0.47354299 0.27364001 -0.83718503\n\t\t -0.47354299 0.55429101 -0.79520899 -0.24577101 0.59460402 -0.76563299 -0.245465 0.61914802\n\t\t -0.75126702 -0.228591 0.36287501 -0.77455097 -0.51806599 0.32680199 -0.79939502 -0.50414997\n\t\t 0.32680199 -0.79939502 -0.50414997 0.59460402 -0.76563299 -0.245465 0.61914802 -0.75126702\n\t\t -0.228591 0.62551802 -0.74991298 -0.21531101 0.38014701 -0.75904202 -0.52853 0.36287501\n\t\t -0.77455097 -0.51806599 0.36287501 -0.77455097 -0.51806599 0.61914802 -0.75126702\n\t\t -0.228591 0.62551802 -0.74991298 -0.21531101 0.78171301 -0.62203801 0.044649001 0.88881099\n\t\t -0.315171 0.33269 0.86971402 -0.307484 0.38607201 0.86971402 -0.307484 0.38607201\n\t\t 0.79640299 -0.59991902 0.076421 0.78171301 -0.62203801 0.044649001 0.79640299 -0.59991902\n\t\t 0.076421 0.86971402 -0.307484 0.38607201 0.83930498 -0.319626 0.43978 0.83930498\n\t\t -0.319626 0.43978 0.79527998 -0.59461302 0.118172 0.79640299 -0.59991902 0.076421\n\t\t 0.79527998 -0.59461302 0.118172 0.83930498 -0.319626 0.43978 0.80632299 -0.35219401\n\t\t 0.475187 0.70554602 -0.044192001 0.70728499 0.80632299 -0.35219401 0.475187 0.83930498\n\t\t -0.319626 0.43978 0.83930498 -0.319626 0.43978 0.74643803 0.010041 0.66537899 0.70554602\n\t\t -0.044192001 0.70728499 0.74643803 0.010041 0.66537899 0.83930498 -0.319626 0.43978\n\t\t 0.86971402 -0.307484 0.38607201 0.86971402 -0.307484 0.38607201 0.794164 0.045687001\n\t\t 0.60598397 0.74643803 0.010041 0.66537899 0.794164 0.045687001 0.60598397 0.86971402\n\t\t -0.307484 0.38607201 0.88881099 -0.315171 0.33269 0.88881099 -0.315171 0.33269 0.83891398\n\t\t 0.059939999 0.54095399 0.794164 0.045687001 0.60598397 0.60099399 0.37704101 0.70473099\n\t\t 0.794164 0.045687001 0.60598397 0.83891398 0.059939999 0.54095399 0.794164 0.045687001\n\t\t 0.60598397 0.60099399 0.37704101 0.70473099 0.54910499 0.32521501 0.76988202 0.54910499\n\t\t 0.32521501 0.76988202 0.74643803 0.010041 0.66537899 0.794164 0.045687001 0.60598397\n\t\t 0.74643803 0.010041 0.66537899 0.54910499 0.32521501 0.76988202 0.508169 0.25883001\n\t\t 0.82144499 0.508169 0.25883001 0.82144499 0.70554602 -0.044192001 0.70728499 0.74643803\n\t\t 0.010041 0.66537899 0.247238 0.515535 0.82042497 0.508169 0.25883001 0.82144499 0.54910499\n\t\t 0.32521501 0.76988202 0.54910499 0.32521501 0.76988202 0.28547701 0.58133101 0.76194298\n\t\t 0.247238 0.515535 0.82042497 0.28547701 0.58133101 0.76194298 0.54910499 0.32521501\n\t\t 0.76988202 0.60099399 0.37704101 0.70473099 0.60099399 0.37704101 0.70473099 0.33571601\n\t\t 0.63639599 0.694475 0.28547701 0.58133101 0.76194298 -0.015869999 0.75394702 0.65674299\n\t\t 0.28547701 0.58133101 0.76194298 0.33571601 0.63639599 0.694475 0.33571601 0.63639599\n\t\t 0.694475 0.031129001 0.801673 0.59695202 -0.015869999 0.75394702 0.65674299 0.031129001\n\t\t 0.801673 0.59695202 0.33571601 0.63639599 0.694475 0.392663 0.67731798 0.62213898\n\t\t 0.392663 0.67731798 0.62213898 0.085973002 0.84160602 0.53320599 0.031129001 0.801673\n\t\t 0.59695202 0.085973002 0.84160602 0.53320599 0.392663 0.67731798 0.62213898 0.44500399\n\t\t 0.70344299 0.55420202 0.44500399 0.70344299 0.55420202 0.139532 0.872262 0.46871001\n\t\t 0.085973002 0.84160602 0.53320599 0.28547701 0.58133101 0.76194298 -0.015869999 0.75394702\n\t\t 0.65674299 -0.049837999 0.69977498 0.712623 -0.049837999 0.69977498 0.712623 0.247238\n\t\t 0.515535 0.82042497 0.28547701 0.58133101 0.76194298 -0.35225201 0.78861302 0.50399202\n\t\t -0.049837999 0.69977498 0.712623 -0.015869999 0.75394702 0.65674299 -0.015869999\n\t\t 0.75394702 0.65674299 -0.32588801 0.82347798 0.46441501 -0.35225201 0.78861302 0.50399202\n\t\t -0.32588801 0.82347798 0.46441501 -0.015869999 0.75394702 0.65674299 0.031129001\n\t\t 0.801673 0.59695202 0.031129001 0.801673 0.59695202 -0.284897 0.85841399 0.42656699\n\t\t -0.32588801 0.82347798 0.46441501 -0.284897 0.85841399 0.42656699 0.031129001 0.801673\n\t\t 0.59695202 0.085973002 0.84160602 0.53320599 0.085973002 0.84160602 0.53320599 -0.23517901\n\t\t 0.89283198 0.384112 -0.284897 0.85841399 0.42656699 -0.23517901 0.89283198 0.384112\n\t\t 0.085973002 0.84160602 0.53320599 0.139532 0.872262 0.46871001 0.139532 0.872262\n\t\t 0.46871001 -0.18461099 0.92454797 0.333361 -0.23517901 0.89283198 0.384112 -0.015625\n\t\t -0.73626697 0.67651099 -0.10639 -0.72727603 0.67804903 -0.079471 -0.72277999 0.68649298\n\t\t -0.079471 -0.72277999 0.68649298 0 -0.73584199 0.677154 -0.015625 -0.73626697 0.67651099\n\t\t 0 -0.83228499 0.55434799 -0.015625 -0.73626697 0.67651099 0 -0.73584199 0.677154\n\t\t 0 -0.73584199 0.677154 -0.090977997 -0.84175599 0.53213698 0 -0.83228499 0.55434799\n\t\t 0 -0.95448399 0.29826301 0 -0.83228499 0.55434799 -0.090977997 -0.84175599 0.53213698\n\t\t -0.090977997 -0.84175599 0.53213698 -0.200359 -0.92775702 0.31483799 0 -0.95448399\n\t\t 0.29826301 0 -0.96160901 0.274423 0 -0.95448399 0.29826301 -0.200359 -0.92775702\n\t\t 0.31483799 -0.200359 -0.92775702 0.31483799 -0.099215999 -0.960302 0.26072201 0 -0.96160901\n\t\t 0.274423 0 -0.92896599 0.37016401 0 -0.96160901 0.274423 -0.099215999 -0.960302 0.26072201\n\t\t -0.099215999 -0.960302 0.26072201 0 -0.94780999 0.318836 0 -0.92896599 0.37016401\n\t\t 0 -0.96601301 0.258495 0 -0.92896599 0.37016401 0 -0.94780999 0.318836 0 -0.94780999\n\t\t 0.318836 0 -0.96601301 0.258495 0 -0.96601301 0.258495 0 -0.44435501 0.89585102 0\n\t\t -0.44435501 0.89585102 0 -0.44435501 0.89585102 0 -0.44435501 0.89585102;\n\tsetAttr \".n[45982:46147]\" -type \"float3\"  0 -0.44435501 0.89585102 0 -0.44435501\n\t\t 0.89585102 -0.62447798 -0.48848599 0.609433 -0.62447798 -0.48848599 0.609433 -0.62447798\n\t\t -0.48848599 0.609433 -0.815018 -0.069706 0.57522798 -0.820512 0.034975 0.57055902\n\t\t -0.81428301 0.081578001 0.57470697 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0072940001\n\t\t -0.99965698 0.025148001 -0.015961001 -0.999551 0.025361 0 -0.99968803 0.024964999\n\t\t 0 -0.99968803 0.024964999 0 -0.99968803 0.024964999 -0.0072940001 -0.99965698 0.025148001\n\t\t 0 -0.54964697 0.83539701 0 -0.54964697 0.83539701 0 -0.54964697 0.83539701 -0.099215999\n\t\t -0.960302 0.26072201 -0.200359 -0.92775702 0.31483799 -0.35810599 -0.90118599 0.24417999\n\t\t 0 -0.54964697 0.83539701 0 -0.54964697 0.83539701 0 -0.54964697 0.83539701 0 0 1\n\t\t 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.99930799 0.037202001 0 -0.99930799\n\t\t 0.037202001 0 -0.99930799 0.037202001 0 -0.99930799 0.037202001 0 -0.99930799 0.037202001\n\t\t 0 -0.99930799 0.037202001 -0.076297998 -0.214734 0.97368801 -0.20145699 0.053256001\n\t\t 0.97804898 0 0 1 0 0 1 0 -0.22819 0.97361702 -0.076297998 -0.214734 0.97368801 -0.076297998\n\t\t -0.214734 0.97368801 0 -0.22819 0.97361702 0 -0.44435501 0.89585102 0 -0.44435501\n\t\t 0.89585102 0 -0.44435501 0.89585102 -0.076297998 -0.214734 0.97368801 0 -0.44435501\n\t\t 0.89585102 -0.076297998 -0.214734 0.97368801 0 -0.44435501 0.89585102 0 -0.44435501\n\t\t 0.89585102 0 -0.44435501 0.89585102 0 -0.44435501 0.89585102 0 -0.96601301 0.258495\n\t\t 0 -0.96601301 0.258495 0 -0.94780999 0.318836 -0.36741701 0.097172 0.92496598 -0.20145699\n\t\t 0.053256001 0.97804898 -0.076297998 -0.214734 0.97368801 -0.45329899 -0.71753299\n\t\t 0.52883399 -0.45329899 -0.71753299 0.52883399 -0.45329899 -0.71753299 0.52883399\n\t\t 0 -0.99930799 0.037202001 0 -0.99930799 0.037202001 0 -0.99930799 0.037202001 -0.671543\n\t\t -0.53390199 0.51379001 -0.700809 -0.40630099 0.58633298 -0.70450902 -0.381614 0.59836298\n\t\t -0.700809 -0.40630099 0.58633298 -0.671543 -0.53390199 0.51379001 -0.66501498 -0.55456603\n\t\t 0.500211 -0.026277 -0.99932599 0.025636001 -0.015961001 -0.999551 0.025361 -0.0072940001\n\t\t -0.99965698 0.025148001 0 -0.44435501 0.89585102 0 -0.22819 0.97361702 0.076297998\n\t\t -0.214734 0.97368801 0.076297998 -0.214734 0.97368801 0 -0.22819 0.97361702 0 0 1\n\t\t 0.076297998 -0.214734 0.97368801 0 -0.44435501 0.89585102 0 -0.44435501 0.89585102\n\t\t 0 0 1 0.20145699 0.053286999 0.97804701 0.076297998 -0.214734 0.97368801 0 -0.99930799\n\t\t 0.037202001 0 -0.99930799 0.037202001 0 -0.99930799 0.037202001 0 -0.99930799 0.037202001\n\t\t 0 -0.99930799 0.037202001 0 -0.99930799 0.037202001 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1\n\t\t 0 0 1 0 -0.54964697 0.83539701 0 -0.54964697 0.83539701 0 -0.54964697 0.83539701\n\t\t 0 -0.54964697 0.83539701 0 -0.54964697 0.83539701 0 -0.54964697 0.83539701 0.0072940001\n\t\t -0.99965698 0.025148001 0 -0.99968803 0.024964999 0 -0.99968803 0.024964999 0 -0.99968803\n\t\t 0.024964999 0.015961999 -0.999551 0.025361 0.0072940001 -0.99965698 0.025148001 0\n\t\t 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.81428301 0.081578001 0.57470697 0.82051098 0.035006002\n\t\t 0.57055801 0.815018 -0.069706 0.57522798 0.624479 -0.48848599 0.609433 0.624479 -0.48848599\n\t\t 0.609433 0.624479 -0.48848599 0.609433 0.0072940001 -0.99965698 0.025148001 0.015961999\n\t\t -0.999551 0.025361 0.026277 -0.99932599 0.025636001 0.015626 -0.73626697 0.67651099\n\t\t 0 -0.73584199 0.677154 0.079471998 -0.72277999 0.68649298 0.079471998 -0.72277999\n\t\t 0.68649298 0.106391 -0.72727603 0.67804903 0.015626 -0.73626697 0.67651099 0 -0.73584199\n\t\t 0.677154 0.015626 -0.73626697 0.67651099 0 -0.83228499 0.55434799 0 -0.83228499 0.55434799\n\t\t 0.090979002 -0.84175599 0.53213698 0 -0.73584199 0.677154 0.665016 -0.55456603 0.500211\n\t\t 0.671543 -0.53390098 0.513789 0.70081002 -0.40630001 0.58633298 0.70450902 -0.381614\n\t\t 0.59836298 0.70081002 -0.40630001 0.58633298 0.671543 -0.53390098 0.513789 0.090979002\n\t\t -0.84175599 0.53213698 0 -0.83228499 0.55434799 0 -0.95448399 0.29826301 0 -0.95448399\n\t\t 0.29826301 0.20036 -0.92775702 0.31483799 0.090979002 -0.84175599 0.53213698 0.090979002\n\t\t -0.84175599 0.53213698 0.20036 -0.92775702 0.31483799 0.35810599 -0.90118599 0.24417999\n\t\t 0.20036 -0.92775702 0.31483799 0 -0.95448399 0.29826301 0 -0.96160901 0.274423 0\n\t\t -0.96160901 0.274423 0.099216998 -0.960302 0.26072201;\n\tsetAttr \".n[46148:46313]\" -type \"float3\"  0.20036 -0.92775702 0.31483799 0.099216998\n\t\t -0.960302 0.26072201 0 -0.96160901 0.274423 0 -0.92896599 0.37016401 0 -0.92896599\n\t\t 0.37016401 0 -0.94780999 0.318836 0.099216998 -0.960302 0.26072201 0 -0.94780999\n\t\t 0.318836 0 -0.92896599 0.37016401 0 -0.96601301 0.258495 0 -0.96601301 0.258495 0\n\t\t -0.96601301 0.258495 0 -0.94780999 0.318836 0 -0.44435501 0.89585102 0 -0.44435501\n\t\t 0.89585102 0 -0.44435501 0.89585102 0 -0.44435501 0.89585102 0 -0.44435501 0.89585102\n\t\t 0 -0.44435501 0.89585102 0.35810599 -0.90118599 0.24417999 0.20036 -0.92775702 0.31483799\n\t\t 0.099216998 -0.960302 0.26072201 0 0 1 0 0 1 0 0 1 0 -0.44435501 0.89585102 0 -0.44435501\n\t\t 0.89585102 0 -0.44435501 0.89585102 0 -0.44435501 0.89585102 0.076297998 -0.214734\n\t\t 0.97368801 0 -0.44435501 0.89585102 0 -0.94780999 0.318836 0 -0.96601301 0.258495\n\t\t 0 -0.96601301 0.258495 0.076297998 -0.214734 0.97368801 0.20145699 0.053286999 0.97804701\n\t\t 0.36741701 0.097172 0.92496598 0 -0.99930799 0.037202001 0 -0.99930799 0.037202001\n\t\t 0 -0.99930799 0.037202001 0.453307 -0.71754497 0.52881199 0.453307 -0.71754497 0.52881199\n\t\t 0.453307 -0.71754497 0.52881199 0 -0.86134398 0.50802302 0 -0.86134398 0.50802302\n\t\t 0.05649 -0.91772801 0.393172 0.059787001 -0.97255403 0.224865 0 -0.86134398 0.50802302\n\t\t 0.05649 -0.91772801 0.393172 0.05649 -0.91772801 0.393172 -0.0070500001 -0.99098003\n\t\t 0.133826 0.059787001 -0.97255403 0.224865 -0.013031 -0.978136 0.20756 0.059787001\n\t\t -0.97255403 0.224865 -0.0070500001 -0.99098003 0.133826 -0.0070500001 -0.99098003\n\t\t 0.133826 -0.0057979999 -0.99612403 0.087774001 -0.013031 -0.978136 0.20756 0.012696\n\t\t -0.982274 0.18701901 -0.013031 -0.978136 0.20756 -0.0057979999 -0.99612403 0.087774001\n\t\t -0.0057979999 -0.99612403 0.087774001 0.063876003 -0.99201298 0.108769 0.012696 -0.982274\n\t\t 0.18701901 0 -0.98467201 0.174417 0.012696 -0.982274 0.18701901 0.063876003 -0.99201298\n\t\t 0.108769 -0.37571999 -0.798226 0.47081801 -0.298078 -0.82217902 0.484945 -0.12702\n\t\t -0.85435301 0.503932 -0.12702 -0.85435301 0.503932 -0.298078 -0.82217902 0.484945\n\t\t 0 -0.86134398 0.50802302 0.107579 -0.99268597 -0.054781001 0.063876003 -0.99201298\n\t\t 0.108769 -0.0057979999 -0.99612403 0.087774001 -0.0057979999 -0.99612403 0.087774001\n\t\t 0 -0.999946 -0.010407 0.107579 -0.99268597 -0.054781001 -0.0057979999 -0.99612403\n\t\t 0.087774001 -0.0070500001 -0.99098003 0.133826 -0.107579 -0.99268597 -0.054781001\n\t\t -0.107579 -0.99268597 -0.054781001 0 -0.999946 -0.010407 -0.0057979999 -0.99612403\n\t\t 0.087774001 0.13712101 -0.99036402 -0.019440001 0.107579 -0.99268597 -0.054781001\n\t\t 0 -0.999946 -0.010407 0 -0.999946 -0.010407 0 -1 0 0.13712101 -0.99036402 -0.019440001\n\t\t -0.13711999 -0.99036402 -0.019440001 0 -1 0 0 -0.999946 -0.010407 0 -0.999946 -0.010407\n\t\t -0.107579 -0.99268597 -0.054781001 -0.13711999 -0.99036402 -0.019440001 -0.35810599\n\t\t -0.90118599 0.24417999 -0.200359 -0.92775702 0.31483799 -0.090977997 -0.84175599\n\t\t 0.53213698 -0.038118001 -0.170967 0.98453897 0.026399 -0.22077601 0.974967 -0.080692999\n\t\t -0.071965002 0.994138 -0.080692999 -0.071965002 0.994138 -0.155008 -0.001312 0.987912\n\t\t -0.038118001 -0.170967 0.98453897 -0.820512 0.034975 0.57055902 -0.815018 -0.069706\n\t\t 0.57522798 -0.815494 -0.080477998 0.57314402 -0.815494 -0.080477998 0.57314402 -0.82615\n\t\t -0.003174 0.56344199 -0.820512 0.034975 0.57055902 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1\n\t\t 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.82051098 0.035006002 0.57055801 0.82615\n\t\t -0.003174 0.56344199 0.815494 -0.080477998 0.57314402 0.815494 -0.080477998 0.57314402\n\t\t 0.815018 -0.069706 0.57522798 0.82051098 0.035006002 0.57055801 0.080692999 -0.071965002\n\t\t 0.994138 -0.026399 -0.22077601 0.974967 0.038118001 -0.170967 0.98453897 0.038118001\n\t\t -0.170967 0.98453897 0.155008 -0.001312 0.987912 0.080692999 -0.071965002 0.994138\n\t\t 0.026399 -0.22077601 0.974967 -0.038118001 -0.170967 0.98453897 0 -0.264447 0.96439999\n\t\t 0 -0.264447 0.96439999 0.055392999 -0.26350299 0.963067 0.026399 -0.22077601 0.974967\n\t\t 0 -0.96262902 0.270825 -0.113714 -0.95369297 0.27845699 -0.121009 -0.98913097 0.083531\n\t\t 0.026399 -0.22077601 0.974967 0.055392999 -0.26350299 0.963067 0.104253 -0.26197499\n\t\t 0.959427 -0.121009 -0.98913097 0.083531 -0.113714 -0.95369297 0.27845699 -0.37975299\n\t\t -0.88808602 0.25901899 -0.121009 -0.98913097 0.083531 0 -0.99760598 0.069155999 0\n\t\t -0.96262902 0.270825 0 -0.264447 0.96439999 0.038118001 -0.170967 0.98453897 -0.026399\n\t\t -0.22077601 0.974967 -0.026399 -0.22077601 0.974967 -0.055392001 -0.263504 0.963067\n\t\t 0 -0.264447 0.96439999 0 -0.96262902 0.270825 0 -0.99760598 0.069155999 0.097510003\n\t\t -0.991512 0.086003996 0.097510003 -0.991512 0.086003996 0.113715 -0.95369297 0.27845699\n\t\t 0 -0.96262902 0.270825;\n\tsetAttr \".n[46314:46355]\" -type \"float3\"  0.37975401 -0.88808602 0.25901899 0.113715\n\t\t -0.95369297 0.27845699 0.097510003 -0.991512 0.086003996 -0.104253 -0.26197499 0.959427\n\t\t -0.055392001 -0.263504 0.963067 -0.026399 -0.22077601 0.974967 0.016603 -0.80182999\n\t\t 0.59732097 0.014711 -0.80183899 0.597359 0.032044999 -0.80167902 0.59689498 0.097510003\n\t\t -0.991512 0.086003996 0.040651001 -0.99558598 -0.084597997 0.080632001 -0.99248201\n\t\t -0.092076004 0.040651001 -0.99558598 -0.084597997 0.097510003 -0.991512 0.086003996\n\t\t 0 -0.99760598 0.069155999 0.176981 -0.78733498 0.59057701 0 -0.80177301 0.59762901\n\t\t 0 -0.80177301 0.59762901 0 -0.80177301 0.59762901 0.279313 -0.76704198 0.57760799\n\t\t 0.176981 -0.78733498 0.59057701 0 -0.99760598 0.069155999 -0.121009 -0.98913097 0.083531\n\t\t -0.063906997 -0.99438399 -0.084356003 -0.063906997 -0.99438399 -0.084356003 -0.121009\n\t\t -0.98913097 0.083531 -0.16278701 -0.98242998 -0.091282003 0.176981 -0.78733498 0.59057701\n\t\t 0.279313 -0.76704198 0.57760799 0.46801901 -0.70378298 0.53446001 -0.063906997 -0.99438399\n\t\t -0.084356003 0 -0.997612 -0.069064997 0 -0.99760598 0.069155999 0 -0.99760598 0.069155999\n\t\t 0 -0.997612 -0.069064997 0.040651001 -0.99558598 -0.084597997 0.014711 -0.80183899\n\t\t 0.597359 0.016603 -0.80182999 0.59732097 0 -0.80177301 0.59762901 0 -0.80177301 0.59762901\n\t\t 0 -0.80177301 0.59762901 0.014711 -0.80183899 0.597359;\n\tsetAttr -s 15452 -ch 46356 \".fc\";\n\tsetAttr \".fc[0:499]\" -type \"polyFaces\" \n\t\tf 3 0 1 2\n\t\tmu 0 3 0 1 2\n\t\tf 3 3 4 -3\n\t\tmu 0 3 2 3 0\n\t\tf 3 -4 5 6\n\t\tmu 0 3 3 2 4\n\t\tf 3 7 8 -7\n\t\tmu 0 3 4 5 3\n\t\tf 3 9 -8 10\n\t\tmu 0 3 6 5 4\n\t\tf 3 11 12 -11\n\t\tmu 0 3 4 7 6\n\t\tf 3 -13 13 14\n\t\tmu 0 3 6 7 8\n\t\tf 3 15 16 -15\n\t\tmu 0 3 8 9 6\n\t\tf 3 17 -16 18\n\t\tmu 0 3 10 9 8\n\t\tf 3 19 20 -19\n\t\tmu 0 3 8 11 10\n\t\tf 3 21 -5 22\n\t\tmu 0 3 12 0 3\n\t\tf 3 23 24 25\n\t\tmu 0 3 13 14 15\n\t\tf 3 26 27 -26\n\t\tmu 0 3 15 16 17\n\t\tf 3 28 -25 29\n\t\tmu 0 3 18 15 19\n\t\tf 3 30 31 -30\n\t\tmu 0 3 20 21 18\n\t\tf 3 -29 32 33\n\t\tmu 0 3 15 18 22\n\t\tf 3 34 35 -34\n\t\tmu 0 3 22 23 15\n\t\tf 3 -27 -36 36\n\t\tmu 0 3 16 15 23\n\t\tf 3 37 38 -37\n\t\tmu 0 3 23 24 16\n\t\tf 3 39 -32 40\n\t\tmu 0 3 25 18 21\n\t\tf 3 -33 -40 41\n\t\tmu 0 3 22 18 25\n\t\tf 3 42 43 -41\n\t\tmu 0 3 21 26 25\n\t\tf 3 44 45 -42\n\t\tmu 0 3 25 27 22\n\t\tf 3 46 47 48\n\t\tmu 0 3 28 12 29\n\t\tf 3 49 50 -49\n\t\tmu 0 3 29 30 31\n\t\tf 3 51 -51 52\n\t\tmu 0 3 32 33 30\n\t\tf 3 53 -48 -23\n\t\tmu 0 3 3 29 12\n\t\tf 3 54 55 56\n\t\tmu 0 3 34 35 36\n\t\tf 3 57 58 -57\n\t\tmu 0 3 36 37 38\n\t\tf 3 59 -9 60\n\t\tmu 0 3 39 3 5\n\t\tf 3 61 -56 -61\n\t\tmu 0 3 5 36 40\n\t\tf 3 -62 -10 62\n\t\tmu 0 3 36 5 6\n\t\tf 3 63 64 -63\n\t\tmu 0 3 6 41 36\n\t\tf 3 -58 -65 65\n\t\tmu 0 3 37 36 41\n\t\tf 3 66 67 -66\n\t\tmu 0 3 41 42 37\n\t\tf 3 -67 68 69\n\t\tmu 0 3 42 41 43\n\t\tf 3 70 71 -70\n\t\tmu 0 3 43 44 42\n\t\tf 3 -64 -17 72\n\t\tmu 0 3 41 6 9\n\t\tf 3 73 -69 -73\n\t\tmu 0 3 9 43 41\n\t\tf 3 -74 -18 74\n\t\tmu 0 3 43 9 10\n\t\tf 3 75 76 -75\n\t\tmu 0 3 10 45 43\n\t\tf 3 -71 -77 77\n\t\tmu 0 3 44 43 45\n\t\tf 3 78 79 -78\n\t\tmu 0 3 45 46 44\n\t\tf 3 80 -59 81\n\t\tmu 0 3 47 48 37\n\t\tf 3 82 83 -53\n\t\tmu 0 3 30 49 50\n\t\tf 3 84 -84 85\n\t\tmu 0 3 51 52 53\n\t\tf 3 86 87 -86\n\t\tmu 0 3 54 55 51\n\t\tf 3 88 -88 89\n\t\tmu 0 3 56 51 55\n\t\tf 3 90 91 -90\n\t\tmu 0 3 55 57 56\n\t\tf 3 92 93 94\n\t\tmu 0 3 58 59 60\n\t\tf 3 95 96 -95\n\t\tmu 0 3 60 61 62\n\t\tf 3 97 -96 98\n\t\tmu 0 3 63 61 60\n\t\tf 3 99 100 -99\n\t\tmu 0 3 60 64 63\n\t\tf 3 -101 101 102\n\t\tmu 0 3 63 64 65\n\t\tf 3 103 104 -103\n\t\tmu 0 3 65 66 63\n\t\tf 3 105 -104 106\n\t\tmu 0 3 67 66 65\n\t\tf 3 107 108 -107\n\t\tmu 0 3 65 68 67\n\t\tf 3 109 -92 110\n\t\tmu 0 3 69 56 57\n\t\tf 3 111 112 113\n\t\tmu 0 3 70 71 72\n\t\tf 3 114 115 -114\n\t\tmu 0 3 72 73 74\n\t\tf 3 116 -116 117\n\t\tmu 0 3 75 76 73\n\t\tf 3 118 -115 119\n\t\tmu 0 3 77 73 72\n\t\tf 3 120 121 -120\n\t\tmu 0 3 72 78 77\n\t\tf 3 122 123 -111\n\t\tmu 0 3 57 79 69\n\t\tf 3 124 -97 125\n\t\tmu 0 3 80 81 61\n\t\tf 3 -124 126 127\n\t\tmu 0 3 69 79 82\n\t\tf 3 128 129 -128\n\t\tmu 0 3 82 83 69\n\t\tf 3 130 131 132\n\t\tmu 0 3 84 85 86\n\t\tf 3 133 -132 -126\n\t\tmu 0 3 61 86 87\n\t\tf 3 134 135 -133\n\t\tmu 0 3 86 88 89\n\t\tf 3 136 -135 137\n\t\tmu 0 3 90 88 86\n\t\tf 3 138 139 -138\n\t\tmu 0 3 86 91 90\n\t\tf 3 -140 140 141\n\t\tmu 0 3 90 91 92\n\t\tf 3 142 -141 143\n\t\tmu 0 3 66 92 91\n\t\tf 3 144 145 -142\n\t\tmu 0 3 92 93 90\n\t\tf 3 146 -145 147\n\t\tmu 0 3 94 93 92\n\t\tf 3 148 149 -148\n\t\tmu 0 3 92 95 94\n\t\tf 3 -139 -134 150\n\t\tmu 0 3 91 86 61\n\t\tf 3 -98 151 -151\n\t\tmu 0 3 61 63 91\n\t\tf 3 -152 -105 -144\n\t\tmu 0 3 91 63 66\n\t\tf 3 -149 -143 152\n\t\tmu 0 3 95 92 66\n\t\tf 3 -106 153 -153\n\t\tmu 0 3 66 67 95\n\t\tf 3 154 155 156\n\t\tmu 0 3 96 78 97\n\t\tf 3 157 158 -157\n\t\tmu 0 3 97 98 96\n\t\tf 3 -159 159 160\n\t\tmu 0 3 96 98 99\n\t\tf 3 161 162 -161\n\t\tmu 0 3 99 100 96\n\t\tf 3 163 -163 164\n\t\tmu 0 3 101 96 100\n\t\tf 3 165 166 -165\n\t\tmu 0 3 100 102 101\n\t\tf 3 167 -167 168\n\t\tmu 0 3 103 101 102\n\t\tf 3 169 170 -169\n\t\tmu 0 3 102 104 103\n\t\tf 3 -171 171 172\n\t\tmu 0 3 103 104 105\n\t\tf 3 173 174 -173\n\t\tmu 0 3 105 106 103\n\t\tf 3 175 -175 176\n\t\tmu 0 3 107 103 106\n\t\tf 3 177 178 -177\n\t\tmu 0 3 106 27 107\n\t\tf 3 -174 179 180\n\t\tmu 0 3 106 105 108\n\t\tf 3 -178 -181 181\n\t\tmu 0 3 27 106 108\n\t\tf 3 -176 182 183\n\t\tmu 0 3 103 107 77\n\t\tf 3 184 -168 -184\n\t\tmu 0 3 77 101 103\n\t\tf 3 -122 -155 185\n\t\tmu 0 3 77 78 96\n\t\tf 3 -164 -185 -186\n\t\tmu 0 3 96 101 77\n\t\tf 3 -156 -121 186\n\t\tmu 0 3 97 78 72\n\t\tf 3 187 188 -187\n\t\tmu 0 3 72 109 97\n\t\tf 3 -188 -113 189\n\t\tmu 0 3 109 72 110\n\t\tf 3 190 191 -190\n\t\tmu 0 3 111 112 109\n\t\tf 3 -183 192 193\n\t\tmu 0 3 77 107 113\n\t\tf 3 194 -119 -194\n\t\tmu 0 3 113 73 77\n\t\tf 3 -195 195 -118\n\t\tmu 0 3 73 113 114\n\t\tf 3 196 -196 197\n\t\tmu 0 3 26 115 113\n\t\tf 3 198 -44 -198\n\t\tmu 0 3 113 25 26\n\t\tf 3 -179 -45 199\n\t\tmu 0 3 107 27 25\n\t\tf 3 -199 -193 -200\n\t\tmu 0 3 25 113 107\n\t\tf 3 200 -46 -182\n\t\tmu 0 3 108 22 27\n\t\tf 3 201 202 203\n\t\tmu 0 3 116 117 118\n\t\tf 3 204 205 -204\n\t\tmu 0 3 118 119 116\n\t\tf 3 206 -205 207\n\t\tmu 0 3 120 119 118\n\t\tf 3 208 209 -208\n\t\tmu 0 3 118 121 120\n\t\tf 3 -210 210 211\n\t\tmu 0 3 120 121 122\n\t\tf 3 212 213 -212\n\t\tmu 0 3 122 123 120\n\t\tf 3 214 -213 215\n\t\tmu 0 3 124 123 122\n\t\tf 3 216 217 -216\n\t\tmu 0 3 122 125 124\n\t\tf 3 -218 218 219\n\t\tmu 0 3 124 125 126\n\t\tf 3 220 221 -220\n\t\tmu 0 3 126 127 124\n\t\tf 3 222 -221 223\n\t\tmu 0 3 128 127 126\n\t\tf 3 224 225 -224\n\t\tmu 0 3 126 129 128\n\t\tf 3 -226 226 227\n\t\tmu 0 3 128 129 130\n\t\tf 3 228 229 -228\n\t\tmu 0 3 130 131 128\n\t\tf 3 230 -206 231\n\t\tmu 0 3 132 116 119\n\t\tf 3 232 233 -232\n\t\tmu 0 3 119 133 132\n\t\tf 3 -207 234 235\n\t\tmu 0 3 119 120 134\n\t\tf 3 -235 -214 236\n\t\tmu 0 3 134 120 123\n\t\tf 3 237 -233 -236\n\t\tmu 0 3 134 133 119\n\t\tf 3 238 239 -237\n\t\tmu 0 3 123 135 134\n\t\tf 3 -215 240 241\n\t\tmu 0 3 123 124 136\n\t\tf 3 242 -239 -242\n\t\tmu 0 3 136 135 123\n\t\tf 3 -241 -222 243\n\t\tmu 0 3 136 124 127\n\t\tf 3 244 245 -244\n\t\tmu 0 3 127 137 136\n\t\tf 3 -223 246 247\n\t\tmu 0 3 127 128 138\n\t\tf 3 248 -245 -248\n\t\tmu 0 3 138 137 127\n\t\tf 3 -247 -230 249\n\t\tmu 0 3 138 128 139\n\t\tf 3 250 251 -250\n\t\tmu 0 3 140 141 138\n\t\tf 3 252 -234 253\n\t\tmu 0 3 142 132 133\n\t\tf 3 254 255 -254\n\t\tmu 0 3 133 143 142\n\t\tf 3 -255 -238 256\n\t\tmu 0 3 143 133 134\n\t\tf 3 257 -256 258\n\t\tmu 0 3 144 142 143\n\t\tf 3 259 260 -259\n\t\tmu 0 3 143 145 144\n\t\tf 3 261 -261 262\n\t\tmu 0 3 146 144 145\n\t\tf 3 263 264 -263\n\t\tmu 0 3 145 147 146\n\t\tf 3 -265 265 266\n\t\tmu 0 3 146 147 148\n\t\tf 3 267 268 -267\n\t\tmu 0 3 148 149 146\n\t\tf 3 -264 269 270\n\t\tmu 0 3 147 145 150\n\t\tf 3 271 272 -271\n\t\tmu 0 3 150 151 147\n\t\tf 3 -266 -273 273\n\t\tmu 0 3 148 147 151\n\t\tf 3 274 275 -274\n\t\tmu 0 3 151 152 148\n\t\tf 3 -275 276 277\n\t\tmu 0 3 152 151 153\n\t\tf 3 278 279 -278\n\t\tmu 0 3 153 154 152\n\t\tf 3 -272 280 281\n\t\tmu 0 3 151 150 155\n\t\tf 3 282 -277 -282\n\t\tmu 0 3 155 153 151\n\t\tf 3 -283 283 284\n\t\tmu 0 3 153 155 156\n\t\tf 3 285 286 -285\n\t\tmu 0 3 156 157 153\n\t\tf 3 -279 -287 287\n\t\tmu 0 3 154 153 157\n\t\tf 3 288 289 -288\n\t\tmu 0 3 157 158 154\n\t\tf 3 290 291 292\n\t\tmu 0 3 159 157 160\n\t\tf 3 293 294 -293\n\t\tmu 0 3 160 161 162\n\t\tf 3 -286 295 296\n\t\tmu 0 3 157 156 163\n\t\tf 3 297 -292 -297\n\t\tmu 0 3 163 160 157\n\t\tf 3 -298 298 299\n\t\tmu 0 3 160 163 164\n\t\tf 3 300 301 -300\n\t\tmu 0 3 164 165 160\n\t\tf 3 -302 302 -294\n\t\tmu 0 3 160 165 161\n\t\tf 3 303 304 -303\n\t\tmu 0 3 165 166 161\n\t\tf 3 305 306 -305\n\t\tmu 0 3 166 167 161\n\t\tf 3 307 -281 308\n\t\tmu 0 3 168 155 150\n\t\tf 3 309 310 -309\n\t\tmu 0 3 150 169 168\n\t\tf 3 -310 -270 311\n\t\tmu 0 3 169 150 145\n\t\tf 3 -260 312 -312\n\t\tmu 0 3 145 143 169\n\t\tf 3 313 -313 -257\n\t\tmu 0 3 134 169 143\n\t\tf 3 -314 -240 314\n\t\tmu 0 3 169 134 135\n\t\tf 3 315 -311 -315\n\t\tmu 0 3 135 168 169\n\t\tf 3 -316 -243 316\n\t\tmu 0 3 168 135 136\n\t\tf 3 317 318 -317\n\t\tmu 0 3 136 170 168\n\t\tf 3 -308 -319 319\n\t\tmu 0 3 155 168 170\n\t\tf 3 320 -284 -320\n\t\tmu 0 3 170 156 155\n\t\tf 3 -321 321 322\n\t\tmu 0 3 156 170 171\n\t\tf 3 323 -296 -323\n\t\tmu 0 3 171 163 156\n\t\tf 3 -318 -246 324\n\t\tmu 0 3 170 136 137\n\t\tf 3 325 -322 -325\n\t\tmu 0 3 137 171 170\n\t\tf 3 -326 -249 326\n\t\tmu 0 3 171 137 138\n\t\tf 3 327 328 -327\n\t\tmu 0 3 138 172 171\n\t\tf 3 -324 -329 329\n\t\tmu 0 3 163 171 172\n\t\tf 3 330 -299 -330\n\t\tmu 0 3 172 164 163\n\t\tf 3 -331 331 332\n\t\tmu 0 3 164 172 173\n\t\tf 3 333 334 -333\n\t\tmu 0 3 174 175 164\n\t\tf 3 335 -332 336\n\t\tmu 0 3 176 177 172\n\t\tf 3 -328 -252 -337\n\t\tmu 0 3 172 138 178\n\t\tf 3 -335 337 338\n\t\tmu 0 3 164 179 180\n\t\tf 3 339 -301 -339\n\t\tmu 0 3 180 165 164\n\t\tf 3 -304 -340 340\n\t\tmu 0 3 166 165 180\n\t\tf 3 341 342 343\n\t\tmu 0 3 181 182 183\n\t\tf 3 344 345 -344\n\t\tmu 0 3 183 184 181\n\t\tf 3 346 -345 347\n\t\tmu 0 3 185 184 183\n\t\tf 3 348 349 -348\n\t\tmu 0 3 183 186 185\n\t\tf 3 -350 350 351\n\t\tmu 0 3 185 186 187\n\t\tf 3 352 353 -352\n\t\tmu 0 3 187 188 185\n\t\tf 3 354 -353 355\n\t\tmu 0 3 189 188 187\n\t\tf 3 356 357 -356\n\t\tmu 0 3 187 190 189\n\t\tf 3 -358 358 359\n\t\tmu 0 3 189 190 191\n\t\tf 3 360 361 -360\n\t\tmu 0 3 191 192 189\n\t\tf 3 362 -361 363\n\t\tmu 0 3 193 192 191\n\t\tf 3 364 365 -364\n\t\tmu 0 3 191 194 193\n\t\tf 3 -366 366 367\n\t\tmu 0 3 193 194 195\n\t\tf 3 368 369 -368\n\t\tmu 0 3 195 196 193\n\t\tf 3 370 371 372\n\t\tmu 0 3 197 198 199\n\t\tf 3 373 374 -373\n\t\tmu 0 3 199 200 201\n\t\tf 3 375 376 377\n\t\tmu 0 3 202 203 204\n\t\tf 3 378 379 -378\n\t\tmu 0 3 204 205 206\n\t\tf 3 380 381 382\n\t\tmu 0 3 207 208 204\n\t\tf 3 383 384 -383\n\t\tmu 0 3 204 209 207\n\t\tf 3 385 -357 386\n\t\tmu 0 3 210 190 187\n\t\tf 3 387 388 -387\n\t\tmu 0 3 187 211 210\n\t\tf 3 -388 -351 389\n\t\tmu 0 3 211 187 186\n\t\tf 3 390 391 -390\n\t\tmu 0 3 186 212 211\n\t\tf 3 -391 -349 392\n\t\tmu 0 3 212 186 183\n\t\tf 3 393 394 -393\n\t\tmu 0 3 183 213 212\n\t\tf 3 -394 -343 395\n\t\tmu 0 3 213 183 182\n\t\tf 3 396 397 -396\n\t\tmu 0 3 182 214 213\n\t\tf 3 398 -398 399\n\t\tmu 0 3 215 213 214\n\t\tf 3 400 401 -400\n\t\tmu 0 3 214 216 215\n\t\tf 3 402 -395 403\n\t\tmu 0 3 217 212 213\n\t\tf 3 -399 404 -404\n\t\tmu 0 3 213 215 217\n\t\tf 3 -403 405 406\n\t\tmu 0 3 212 217 218\n\t\tf 3 407 -392 -407\n\t\tmu 0 3 218 211 212\n\t\tf 3 408 -389 409\n\t\tmu 0 3 219 210 211\n\t\tf 3 -408 410 -410\n\t\tmu 0 3 211 218 219\n\t\tf 3 -409 411 412\n\t\tmu 0 3 210 219 220\n\t\tf 3 413 414 -413\n\t\tmu 0 3 220 221 210\n\t\tf 3 -386 -415 415\n\t\tmu 0 3 190 210 221\n\t\tf 3 416 -359 -416\n\t\tmu 0 3 221 191 190\n\t\tf 3 -414 417 418\n\t\tmu 0 3 221 220 222\n\t\tf 3 419 420 -419\n\t\tmu 0 3 222 223 221\n\t\tf 3 -417 -421 421\n\t\tmu 0 3 191 221 223\n\t\tf 3 422 -365 -422\n\t\tmu 0 3 223 194 191\n\t\tf 3 -423 423 424\n\t\tmu 0 3 194 223 224\n\t\tf 3 425 -367 -425\n\t\tmu 0 3 224 195 194\n\t\tf 3 426 427 428\n\t\tmu 0 3 225 224 226\n\t\tf 3 429 -372 -429\n\t\tmu 0 3 226 199 227\n\t\tf 3 430 -428 431\n\t\tmu 0 3 228 226 224\n\t\tf 3 432 433 -432\n\t\tmu 0 3 224 229 228\n\t\tf 3 -433 -424 434\n\t\tmu 0 3 229 224 223\n\t\tf 3 -420 435 -435\n\t\tmu 0 3 223 222 229\n\t\tf 3 -436 -418 436\n\t\tmu 0 3 229 222 220\n\t\tf 3 437 438 439\n\t\tmu 0 3 230 226 231\n\t\tf 3 440 -377 -440\n\t\tmu 0 3 231 204 232\n\t\tf 3 -431 441 442\n\t\tmu 0 3 226 228 233\n\t\tf 3 443 -439 -443\n\t\tmu 0 3 233 231 226\n\t\tf 3 -444 444 445\n\t\tmu 0 3 231 233 234\n\t\tf 3 446 447 -446\n\t\tmu 0 3 234 235 231\n\t\tf 3 -441 -448 448\n\t\tmu 0 3 204 231 235\n\t\tf 3 449 -384 -449\n\t\tmu 0 3 235 209 204\n\t\tf 3 -434 450 451\n\t\tmu 0 3 228 229 236\n\t\tf 3 452 -442 -452\n\t\tmu 0 3 236 233 228\n\t\tf 3 -445 -453 453\n\t\tmu 0 3 234 233 236\n\t\tf 3 454 455 -454\n\t\tmu 0 3 236 237 234\n\t\tf 3 -456 456 457\n\t\tmu 0 3 234 237 238\n\t\tf 3 458 459 -458\n\t\tmu 0 3 238 239 234\n\t\tf 3 -447 -460 460\n\t\tmu 0 3 235 234 239\n\t\tf 3 461 -459 462\n\t\tmu 0 3 240 239 238\n\t\tf 3 463 464 -463\n\t\tmu 0 3 238 241 240\n\t\tf 3 465 466 467\n\t\tmu 0 3 242 235 243\n\t\tf 3 468 -467 -461\n\t\tmu 0 3 239 243 235\n\t\tf 3 -469 -462 469\n\t\tmu 0 3 243 239 240\n\t\tf 3 470 471 -468\n\t\tmu 0 3 243 244 245\n\t\tf 3 472 -472 473\n\t\tmu 0 3 207 246 244\n\t\tf 3 474 475 -474\n\t\tmu 0 3 244 247 207\n\t\tf 3 476 -476 477\n\t\tmu 0 3 248 207 247\n\t\tf 3 -381 -477 478\n\t\tmu 0 3 249 207 248\n\t\tf 3 479 480 -479\n\t\tmu 0 3 248 250 251\n\t\tf 3 481 482 483\n\t\tmu 0 3 205 252 253\n\t\tf 3 484 -380 -484\n\t\tmu 0 3 253 254 205\n\t\tf 3 485 486 487\n\t\tmu 0 3 200 255 256\n\t\tf 3 488 -375 -488\n\t\tmu 0 3 256 257 200\n\t\tf 3 -370 489 490\n\t\tmu 0 3 193 196 258\n\t\tf 3 491 492 -491\n\t\tmu 0 3 259 260 193\n\t\tf 3 -363 -493 493\n\t\tmu 0 3 192 193 260\n\t\tf 3 494 495 -494\n\t\tmu 0 3 260 261 192\n\t\tf 3 -496 496 497\n\t\tmu 0 3 192 261 262\n\t\tf 3 498 -362 -498\n\t\tmu 0 3 262 189 192\n\t\tf 3 -355 -499 499\n\t\tmu 0 3 188 189 262\n\t\tf 3 500 501 -500\n\t\tmu 0 3 262 263 188\n\t\tf 3 -502 502 503\n\t\tmu 0 3 188 263 264\n\t\tf 3 504 -354 -504\n\t\tmu 0 3 264 185 188\n\t\tf 3 -347 -505 505\n\t\tmu 0 3 184 185 264\n\t\tf 3 506 507 -506\n\t\tmu 0 3 264 265 184\n\t\tf 3 -346 -508 508\n\t\tmu 0 3 181 184 265\n\t\tf 3 509 510 -509\n\t\tmu 0 3 265 266 181\n\t\tf 3 511 512 513\n\t\tmu 0 3 267 268 269\n\t\tf 3 514 515 -514\n\t\tmu 0 3 269 270 267\n\t\tf 3 516 -512 517\n\t\tmu 0 3 271 268 267\n\t\tf 3 518 519 -518\n\t\tmu 0 3 267 272 271\n\t\tf 3 -520 520 521\n\t\tmu 0 3 271 272 273\n\t\tf 3 522 523 -522\n\t\tmu 0 3 273 274 271\n\t\tf 3 524 -523 525\n\t\tmu 0 3 275 274 273\n\t\tf 3 526 527 -526\n\t\tmu 0 3 273 276 275\n\t\tf 3 -528 528 529\n\t\tmu 0 3 275 276 277\n\t\tf 3 530 531 -530\n\t\tmu 0 3 277 278 275\n\t\tf 3 532 -531 533\n\t\tmu 0 3 279 278 277\n\t\tf 3 534 535 -534\n\t\tmu 0 3 277 280 279\n\t\tf 3 -536 536 537\n\t\tmu 0 3 279 280 281\n\t\tf 3 538 539 -538\n\t\tmu 0 3 281 282 279\n\t\tf 3 540 -539 541\n\t\tmu 0 3 283 282 281\n\t\tf 3 542 543 -542\n\t\tmu 0 3 281 284 283\n\t\tf 3 -544 544 545\n\t\tmu 0 3 283 284 285\n\t\tf 3 546 547 -546\n\t\tmu 0 3 285 286 283\n\t\tf 3 548 -547 549\n\t\tmu 0 3 287 286 285\n\t\tf 3 550 551 -550\n\t\tmu 0 3 285 288 287\n\t\tf 3 552 553 554\n\t\tmu 0 3 289 290 291\n\t\tf 3 555 -2 -555\n\t\tmu 0 3 291 2 289\n\t\tf 3 -556 556 557\n\t\tmu 0 3 2 291 292\n\t\tf 3 558 -6 -558\n\t\tmu 0 3 292 4 2\n\t\tf 3 -12 559 560\n\t\tmu 0 3 7 4 293\n\t\tf 3 561 562 -561\n\t\tmu 0 3 294 295 7\n\t\tf 3 -563 563 564\n\t\tmu 0 3 7 295 296\n\t\tf 3 565 -14 -565\n\t\tmu 0 3 296 8 7\n\t\tf 3 -20 -566 566\n\t\tmu 0 3 11 8 296\n\t\tf 3 567 568 -567\n\t\tmu 0 3 296 297 11\n\t\tf 3 569 570 -478\n\t\tmu 0 3 247 298 248\n\t\tf 3 571 -570 572\n\t\tmu 0 3 299 298 247\n\t\tf 3 573 574 -573\n\t\tmu 0 3 247 300 299\n\t\tf 3 -574 -475 575\n\t\tmu 0 3 300 247 244\n\t\tf 3 576 577 -576\n\t\tmu 0 3 244 301 300\n\t\tf 3 578 -577 579\n\t\tmu 0 3 302 301 244\n\t\tf 3 -471 580 -580\n\t\tmu 0 3 244 243 302\n\t\tf 3 581 -581 -470\n\t\tmu 0 3 240 302 243\n\t\tf 3 582 583 584\n\t\tmu 0 3 303 304 305\n\t\tf 3 585 586 -585\n\t\tmu 0 3 305 306 303\n\t\tf 3 587 588 589\n\t\tmu 0 3 307 308 309\n\t\tf 3 -589 590 591\n\t\tmu 0 3 309 310 311\n\t\tf 3 592 -586 593\n\t\tmu 0 3 312 306 313\n\t\tf 3 594 595 -594\n\t\tmu 0 3 313 314 315\n\t\tf 3 596 597 -592\n\t\tmu 0 3 311 316 309\n\t\tf 3 598 599 600\n\t\tmu 0 3 317 318 319\n\t\tf 3 601 -600 602\n\t\tmu 0 3 320 319 321\n\t\tf 3 603 604 -603\n\t\tmu 0 3 322 323 320\n\t\tf 3 605 -597 606\n\t\tmu 0 3 324 316 311\n\t\tf 3 607 -605 608\n\t\tmu 0 3 325 320 323\n\t\tf 3 609 610 -609\n\t\tmu 0 3 323 326 325\n\t\tf 3 611 -611 612\n\t\tmu 0 3 327 325 326\n\t\tf 3 613 614 -613\n\t\tmu 0 3 326 328 327\n\t\tf 3 615 -615 616\n\t\tmu 0 3 329 327 328\n\t\tf 3 617 618 -617\n\t\tmu 0 3 328 330 329\n\t\tf 3 619 -619 620\n\t\tmu 0 3 331 329 330\n\t\tf 3 621 622 -621\n\t\tmu 0 3 330 332 331\n\t\tf 3 623 -623 624\n\t\tmu 0 3 333 331 332\n\t\tf 3 625 626 -625\n\t\tmu 0 3 332 334 333\n\t\tf 3 627 -627 628\n\t\tmu 0 3 335 333 334\n\t\tf 3 629 630 -629\n\t\tmu 0 3 334 336 335\n\t\tf 3 631 -631 632\n\t\tmu 0 3 337 335 336\n\t\tf 3 633 634 -633\n\t\tmu 0 3 336 338 337\n\t\tf 3 635 636 637\n\t\tmu 0 3 339 340 341\n\t\tf 3 638 639 -638\n\t\tmu 0 3 342 343 339\n\t\tf 3 640 641 642\n\t\tmu 0 3 344 345 346\n\t\tf 3 643 644 -643\n\t\tmu 0 3 346 347 348\n\t\tf 3 645 646 647\n\t\tmu 0 3 349 350 351\n\t\tf 3 648 -639 -648\n\t\tmu 0 3 351 343 352\n\t\tf 3 -647 649 650\n\t\tmu 0 3 351 353 354\n\t\tf 3 -642 651 652\n\t\tmu 0 3 355 356 357\n\t\tf 3 653 654 -653\n\t\tmu 0 3 358 359 355\n\t\tf 3 655 656 -651\n\t\tmu 0 3 360 361 351\n\t\tf 3 657 658 659\n\t\tmu 0 3 362 363 364\n\t\tf 3 660 -654 -660\n\t\tmu 0 3 364 365 366\n\t\tf 3 -659 661 662\n\t\tmu 0 3 367 368 369\n\t\tf 3 663 664 -663\n\t\tmu 0 3 369 370 367\n\t\tf 3 665 -656 666\n\t\tmu 0 3 371 361 372\n\t\tf 3 667 668 -667\n\t\tmu 0 3 373 374 375\n\t\tf 3 -669 669 670\n\t\tmu 0 3 376 377 378\n\t\tf 3 671 672 -671\n\t\tmu 0 3 379 380 381\n\t\tf 3 673 674 675\n\t\tmu 0 3 369 382 383\n\t\tf 3 676 -664 -676\n\t\tmu 0 3 383 384 369\n\t\tf 3 677 -672 678\n\t\tmu 0 3 385 380 386\n\t\tf 3 -675 679 680\n\t\tmu 0 3 387 388 389\n\t\tf 3 681 682 -681\n\t\tmu 0 3 390 391 387\n\t\tf 3 683 684 -679\n\t\tmu 0 3 392 393 385\n\t\tf 3 -685 685 686\n\t\tmu 0 3 385 394 395\n\t\tf 3 687 688 -687\n\t\tmu 0 3 396 397 385\n\t\tf 3 689 690 691\n\t\tmu 0 3 398 399 400\n\t\tf 3 692 -682 -692\n\t\tmu 0 3 400 401 402\n\t\tf 3 693 -688 -607\n\t\tmu 0 3 311 397 403\n\t\tf 3 -691 694 695\n\t\tmu 0 3 404 405 406\n\t\tf 3 -596 696 -696\n\t\tmu 0 3 407 408 404\n\t\tf 3 697 698 699\n\t\tmu 0 3 409 410 411\n\t\tf 3 700 701 -700\n\t\tmu 0 3 411 412 409\n\t\tf 3 702 -702 703\n\t\tmu 0 3 413 409 412\n\t\tf 3 704 705 -704\n\t\tmu 0 3 412 414 413\n\t\tf 3 706 -699 707\n\t\tmu 0 3 415 411 410\n\t\tf 3 708 709 -708\n\t\tmu 0 3 410 416 415\n\t\tf 3 710 -710 711\n\t\tmu 0 3 417 415 416\n\t\tf 3 712 713 -712\n\t\tmu 0 3 416 418 417\n\t\tf 3 714 -714 715\n\t\tmu 0 3 419 417 418\n\t\tf 3 716 717 -716\n\t\tmu 0 3 418 420 419\n\t\tf 3 718 -718 719\n\t\tmu 0 3 421 419 420\n\t\tf 3 720 721 -720\n\t\tmu 0 3 420 422 421\n\t\tf 3 722 -722 723\n\t\tmu 0 3 423 421 422\n\t\tf 3 724 725 -724\n\t\tmu 0 3 422 424 423\n\t\tf 3 726 -726 727\n\t\tmu 0 3 425 423 424\n\t\tf 3 728 729 -728\n\t\tmu 0 3 424 426 425\n\t\tf 3 730 -730 731\n\t\tmu 0 3 427 425 426\n\t\tf 3 732 733 -732\n\t\tmu 0 3 426 428 427\n\t\tf 3 734 -734 735\n\t\tmu 0 3 429 427 428\n\t\tf 3 736 737 -736\n\t\tmu 0 3 428 430 429\n\t\tf 3 738 739 740\n\t\tmu 0 3 431 432 433\n\t\tf 3 741 742 -741\n\t\tmu 0 3 433 434 431\n\t\tf 3 743 -739 744\n\t\tmu 0 3 435 432 431\n\t\tf 3 745 746 -745\n\t\tmu 0 3 431 436 435\n\t\tf 3 -747 747 748\n\t\tmu 0 3 435 436 437\n\t\tf 3 749 750 -749\n\t\tmu 0 3 437 438 435\n\t\tf 3 751 -750 752\n\t\tmu 0 3 439 438 437\n\t\tf 3 753 754 -753\n\t\tmu 0 3 437 440 439\n\t\tf 3 -755 755 756\n\t\tmu 0 3 439 440 441\n\t\tf 3 757 758 -757\n\t\tmu 0 3 441 442 439\n\t\tf 3 759 -758 760\n\t\tmu 0 3 229 442 441\n\t\tf 3 761 762 -761\n\t\tmu 0 3 441 443 229\n\t\tf 3 -763 763 764\n\t\tmu 0 3 229 443 444\n\t\tf 3 765 -451 -765\n\t\tmu 0 3 444 236 229\n\t\tf 3 -455 -766 766\n\t\tmu 0 3 237 236 444\n\t\tf 3 767 768 -767\n\t\tmu 0 3 444 445 237\n\t\tf 3 -769 769 770\n\t\tmu 0 3 237 445 446\n\t\tf 3 771 -457 -771\n\t\tmu 0 3 446 238 237\n\t\tf 3 -464 -772 772\n\t\tmu 0 3 241 238 446\n\t\tf 3 773 774 -773\n\t\tmu 0 3 446 447 241\n\t\tf 3 -752 775 776\n\t\tmu 0 3 438 439 219\n\t\tf 3 -776 -759 777\n\t\tmu 0 3 219 439 442\n\t\tf 3 -411 778 -777\n\t\tmu 0 3 219 218 438\n\t\tf 3 779 -412 -778\n\t\tmu 0 3 442 220 219\n\t\tf 3 -780 -760 -437\n\t\tmu 0 3 220 442 229\n\t\tf 3 -779 -406 780\n\t\tmu 0 3 438 218 217\n\t\tf 3 781 -751 -781\n\t\tmu 0 3 217 435 438\n\t\tf 3 -744 -782 782\n\t\tmu 0 3 432 435 217\n\t\tf 3 -405 783 -783\n\t\tmu 0 3 217 215 432\n\t\tf 3 -784 -402 784\n\t\tmu 0 3 432 215 216\n\t\tf 3 785 -740 -785\n\t\tmu 0 3 216 433 432\n\t\tf 3 786 -584 787\n\t\tmu 0 3 448 449 450\n\t\tf 3 788 789 -788\n\t\tmu 0 3 450 451 448\n\t\tf 3 -595 -787 790\n\t\tmu 0 3 452 449 448\n\t\tf 3 791 792 -791\n\t\tmu 0 3 448 453 452\n\t\tf 3 -793 793 794\n\t\tmu 0 3 452 453 454\n\t\tf 3 795 -697 -795\n\t\tmu 0 3 454 455 452\n\t\tf 3 -693 -796 796\n\t\tmu 0 3 456 455 454\n\t\tf 3 797 798 -797\n\t\tmu 0 3 454 457 456\n\t\tf 3 799 800 801\n\t\tmu 0 3 456 458 459\n\t\tf 3 802 -683 -802\n\t\tmu 0 3 459 460 456\n\t\tf 3 -677 -803 803\n\t\tmu 0 3 461 460 459\n\t\tf 3 804 805 -804\n\t\tmu 0 3 459 462 461\n\t\tf 3 -806 806 807\n\t\tmu 0 3 461 462 463\n\t\tf 3 808 -665 -808\n\t\tmu 0 3 463 464 461\n\t\tf 3 -661 -809 809\n\t\tmu 0 3 465 464 463\n\t\tf 3 810 811 -810\n\t\tmu 0 3 463 466 465\n\t\tf 3 -812 812 813\n\t\tmu 0 3 465 466 467\n\t\tf 3 814 -655 -814\n\t\tmu 0 3 467 468 465\n\t\tf 3 -644 -815 815\n\t\tmu 0 3 469 468 467\n\t\tf 3 816 817 -816\n\t\tmu 0 3 467 470 469\n\t\tf 3 -798 818 819\n\t\tmu 0 3 457 454 471\n\t\tf 3 820 821 -820\n\t\tmu 0 3 471 472 457\n\t\tf 3 822 -819 823\n\t\tmu 0 3 473 471 454\n\t\tf 3 -794 824 -824\n\t\tmu 0 3 454 453 473\n\t\tf 3 825 -825 826\n\t\tmu 0 3 474 473 453\n\t\tf 3 -792 827 -827\n\t\tmu 0 3 453 448 474\n\t\tf 3 828 -828 829\n\t\tmu 0 3 475 474 448\n\t\tf 3 -790 830 -830\n\t\tmu 0 3 448 451 475\n\t\tf 3 831 832 -601\n\t\tmu 0 3 319 476 477\n\t\tf 3 833 -833 834\n\t\tmu 0 3 478 479 476\n\t\tf 3 835 836 -835\n\t\tmu 0 3 476 480 478\n\t\tf 3 837 838 -590\n\t\tmu 0 3 309 481 482\n\t\tf 3 839 840 841\n\t\tmu 0 3 483 484 485\n\t\tf 3 842 843 -842\n\t\tmu 0 3 485 486 483\n\t\tf 3 844 -840 845\n\t\tmu 0 3 487 484 483\n\t\tf 3 846 847 -846\n\t\tmu 0 3 483 488 487\n\t\tf 3 -848 848 849\n\t\tmu 0 3 487 488 489\n\t\tf 3 850 851 -850\n\t\tmu 0 3 489 490 487\n\t\tf 3 852 -851 853\n\t\tmu 0 3 491 490 489\n\t\tf 3 854 855 -854\n\t\tmu 0 3 489 492 491\n\t\tf 3 -856 856 857\n\t\tmu 0 3 491 492 493\n\t\tf 3 858 859 -858\n\t\tmu 0 3 493 494 491\n\t\tf 3 860 -859 861\n\t\tmu 0 3 495 494 493\n\t\tf 3 862 863 -862\n\t\tmu 0 3 493 496 495\n\t\tf 3 -864 864 865\n\t\tmu 0 3 495 496 497\n\t\tf 3 866 867 -866\n\t\tmu 0 3 497 498 495\n\t\tf 3 868 869 870\n\t\tmu 0 3 499 500 501\n\t\tf 3 871 872 -871\n\t\tmu 0 3 501 502 503\n\t\tf 3 873 874 875\n\t\tmu 0 3 504 505 506\n\t\tf 3 876 877 -876\n\t\tmu 0 3 506 507 508\n\t\tf 3 878 879 880\n\t\tmu 0 3 509 510 511\n\t\tf 3 881 882 -881\n\t\tmu 0 3 512 513 509\n\t\tf 3 -883 883 884\n\t\tmu 0 3 509 513 514\n\t\tf 3 885 886 -885\n\t\tmu 0 3 514 515 509\n\t\tf 3 887 -886 888\n\t\tmu 0 3 516 515 514\n\t\tf 3 889 890 -889\n\t\tmu 0 3 514 517 516\n\t\tf 3 891 892 893\n\t\tmu 0 3 518 519 520\n\t\tf 3 894 895 -894\n\t\tmu 0 3 520 521 522\n\t\tf 3 896 -896 897\n\t\tmu 0 3 523 524 521\n\t\tf 3 898 899 -898\n\t\tmu 0 3 521 525 526\n\t\tf 3 900 -893 901\n\t\tmu 0 3 527 520 528\n\t\tf 3 902 903 -902\n\t\tmu 0 3 529 530 527;\n\tsetAttr \".fc[500:999]\"\n\t\tf 3 904 -904 905\n\t\tmu 0 3 531 527 532\n\t\tf 3 906 907 -906\n\t\tmu 0 3 533 534 531\n\t\tf 3 908 -908 909\n\t\tmu 0 3 535 531 536\n\t\tf 3 910 911 -910\n\t\tmu 0 3 537 538 535\n\t\tf 3 912 -912 913\n\t\tmu 0 3 539 535 540\n\t\tf 3 914 915 -914\n\t\tmu 0 3 541 542 539\n\t\tf 3 -916 916 917\n\t\tmu 0 3 539 543 544\n\t\tf 3 918 919 -918\n\t\tmu 0 3 545 546 539\n\t\tf 3 -919 920 921\n\t\tmu 0 3 546 547 548\n\t\tf 3 922 923 -922\n\t\tmu 0 3 549 550 546\n\t\tf 3 924 -923 925\n\t\tmu 0 3 551 550 552\n\t\tf 3 926 927 -926\n\t\tmu 0 3 553 554 551\n\t\tf 3 928 -928 929\n\t\tmu 0 3 555 551 556\n\t\tf 3 930 931 -930\n\t\tmu 0 3 557 558 555\n\t\tf 3 932 -932 933\n\t\tmu 0 3 559 555 560\n\t\tf 3 934 935 -934\n\t\tmu 0 3 561 562 559\n\t\tf 3 936 -936 937\n\t\tmu 0 3 563 559 564\n\t\tf 3 938 939 -938\n\t\tmu 0 3 565 566 563\n\t\tf 3 940 941 942\n\t\tmu 0 3 567 568 569\n\t\tf 3 943 944 -943\n\t\tmu 0 3 569 570 571\n\t\tf 3 945 -945 946\n\t\tmu 0 3 572 573 570\n\t\tf 3 947 948 -947\n\t\tmu 0 3 570 574 575\n\t\tf 3 949 -949 950\n\t\tmu 0 3 576 577 574\n\t\tf 3 951 952 -951\n\t\tmu 0 3 574 578 579\n\t\tf 3 953 -953 954\n\t\tmu 0 3 580 581 578\n\t\tf 3 955 956 -955\n\t\tmu 0 3 578 582 583\n\t\tf 3 957 -957 958\n\t\tmu 0 3 584 585 582\n\t\tf 3 959 960 -959\n\t\tmu 0 3 582 586 587\n\t\tf 3 961 -961 962\n\t\tmu 0 3 588 589 586\n\t\tf 3 963 964 -963\n\t\tmu 0 3 586 590 591\n\t\tf 3 965 -965 966\n\t\tmu 0 3 592 593 590\n\t\tf 3 967 968 -967\n\t\tmu 0 3 590 594 595\n\t\tf 3 969 -969 970\n\t\tmu 0 3 596 597 594\n\t\tf 3 971 972 -971\n\t\tmu 0 3 594 598 599\n\t\tf 3 973 -973 974\n\t\tmu 0 3 600 601 598\n\t\tf 3 975 976 -975\n\t\tmu 0 3 598 602 603\n\t\tf 3 977 -977 978\n\t\tmu 0 3 604 605 602\n\t\tf 3 979 980 -979\n\t\tmu 0 3 602 606 607\n\t\tf 3 981 -981 982\n\t\tmu 0 3 608 609 606\n\t\tf 3 983 984 -983\n\t\tmu 0 3 606 610 611\n\t\tf 3 985 -985 986\n\t\tmu 0 3 612 613 610\n\t\tf 3 987 988 -987\n\t\tmu 0 3 610 614 615\n\t\tf 3 989 990 991\n\t\tmu 0 3 616 617 618\n\t\tf 3 992 993 -992\n\t\tmu 0 3 618 619 616\n\t\tf 3 994 -991 995\n\t\tmu 0 3 620 618 617\n\t\tf 3 996 997 -996\n\t\tmu 0 3 617 621 620\n\t\tf 3 -995 998 999\n\t\tmu 0 3 618 620 622\n\t\tf 3 1000 1001 -1000\n\t\tmu 0 3 622 623 618\n\t\tf 3 -993 -1002 1002\n\t\tmu 0 3 619 618 623\n\t\tf 3 1003 1004 -1003\n\t\tmu 0 3 623 624 619\n\t\tf 3 -1004 1005 1006\n\t\tmu 0 3 624 623 625\n\t\tf 3 1007 1008 -1007\n\t\tmu 0 3 625 626 624\n\t\tf 3 -1001 1009 1010\n\t\tmu 0 3 623 622 627\n\t\tf 3 1011 -1006 -1011\n\t\tmu 0 3 627 625 623\n\t\tf 3 -1012 1012 1013\n\t\tmu 0 3 625 627 628\n\t\tf 3 1014 1015 -1014\n\t\tmu 0 3 628 629 625\n\t\tf 3 -1008 -1016 1016\n\t\tmu 0 3 626 625 629\n\t\tf 3 1017 1018 -1017\n\t\tmu 0 3 629 630 626\n\t\tf 3 1019 1020 1021\n\t\tmu 0 3 630 631 632\n\t\tf 3 1022 1023 -1022\n\t\tmu 0 3 632 633 630\n\t\tf 3 1024 1025 1026\n\t\tmu 0 3 634 635 636\n\t\tf 3 1027 -1021 -1027\n\t\tmu 0 3 636 632 637\n\t\tf 3 -1028 1028 1029\n\t\tmu 0 3 632 636 638\n\t\tf 3 1030 1031 -1030\n\t\tmu 0 3 638 639 632\n\t\tf 3 -1023 -1032 1032\n\t\tmu 0 3 633 632 639\n\t\tf 3 1033 1034 -1033\n\t\tmu 0 3 639 640 633\n\t\tf 3 -1009 1035 1036\n\t\tmu 0 3 624 626 641\n\t\tf 3 1037 1038 -1037\n\t\tmu 0 3 641 642 624\n\t\tf 3 -1005 -1039 1039\n\t\tmu 0 3 619 624 642\n\t\tf 3 1040 1041 -1040\n\t\tmu 0 3 642 643 619\n\t\tf 3 -994 -1042 1042\n\t\tmu 0 3 616 619 643\n\t\tf 3 1043 1044 -1043\n\t\tmu 0 3 643 644 616\n\t\tf 3 -1041 1045 1046\n\t\tmu 0 3 643 642 645\n\t\tf 3 1047 1048 -1047\n\t\tmu 0 3 645 646 643\n\t\tf 3 -1044 -1049 1049\n\t\tmu 0 3 644 643 646\n\t\tf 3 1050 1051 -1050\n\t\tmu 0 3 646 647 644\n\t\tf 3 1052 -1046 1053\n\t\tmu 0 3 648 645 642\n\t\tf 3 -1038 1054 -1054\n\t\tmu 0 3 642 641 648\n\t\tf 3 1055 -1055 1056\n\t\tmu 0 3 649 648 641\n\t\tf 3 1057 1058 -1057\n\t\tmu 0 3 641 650 649\n\t\tf 3 -1058 -1036 1059\n\t\tmu 0 3 650 641 626\n\t\tf 3 -1019 1060 -1060\n\t\tmu 0 3 626 630 650\n\t\tf 3 1061 -1061 1062\n\t\tmu 0 3 651 650 630\n\t\tf 3 -1024 1063 -1063\n\t\tmu 0 3 630 633 651\n\t\tf 3 1064 -1064 1065\n\t\tmu 0 3 652 651 633\n\t\tf 3 -1035 1066 -1066\n\t\tmu 0 3 633 640 652\n\t\tf 3 -1065 1067 1068\n\t\tmu 0 3 651 652 653\n\t\tf 3 1069 1070 -1069\n\t\tmu 0 3 653 654 651\n\t\tf 3 1071 -1059 1072\n\t\tmu 0 3 654 649 650\n\t\tf 3 -1062 -1071 -1073\n\t\tmu 0 3 650 651 654\n\t\tf 3 1073 -1048 1074\n\t\tmu 0 3 655 646 645\n\t\tf 3 -1051 -1074 1075\n\t\tmu 0 3 647 646 655\n\t\tf 3 1076 1077 -1075\n\t\tmu 0 3 645 656 655\n\t\tf 3 -1077 -1053 1078\n\t\tmu 0 3 656 645 648\n\t\tf 3 1079 1080 -1076\n\t\tmu 0 3 655 657 647\n\t\tf 3 1081 -1056 1082\n\t\tmu 0 3 658 648 649\n\t\tf 3 -1082 1083 -1079\n\t\tmu 0 3 648 658 656\n\t\tf 3 1084 1085 -1083\n\t\tmu 0 3 649 659 658\n\t\tf 3 -1085 -1072 1086\n\t\tmu 0 3 659 649 654\n\t\tf 3 1087 -1070 1088\n\t\tmu 0 3 660 654 653\n\t\tf 3 -1088 1089 -1087\n\t\tmu 0 3 654 660 659\n\t\tf 3 1090 1091 -1089\n\t\tmu 0 3 653 661 660\n\t\tf 3 1092 1093 1094\n\t\tmu 0 3 662 47 663\n\t\tf 3 1095 -94 -1095\n\t\tmu 0 3 663 60 664\n\t\tf 3 1096 -1094 -82\n\t\tmu 0 3 37 663 47\n\t\tf 3 -1096 1097 1098\n\t\tmu 0 3 60 663 665\n\t\tf 3 -1098 -1097 1099\n\t\tmu 0 3 665 663 37\n\t\tf 3 1100 -100 -1099\n\t\tmu 0 3 665 64 60\n\t\tf 3 -1101 1101 1102\n\t\tmu 0 3 64 665 666\n\t\tf 3 1103 -102 -1103\n\t\tmu 0 3 666 65 64\n\t\tf 3 1104 -1102 1105\n\t\tmu 0 3 44 666 665\n\t\tf 3 1106 -72 -1106\n\t\tmu 0 3 665 42 44\n\t\tf 3 -68 -1107 -1100\n\t\tmu 0 3 37 42 665\n\t\tf 3 -1104 1107 1108\n\t\tmu 0 3 65 666 667\n\t\tf 3 -1108 -1105 1109\n\t\tmu 0 3 667 666 44\n\t\tf 3 1110 -108 -1109\n\t\tmu 0 3 667 68 65\n\t\tf 3 -80 1111 -1110\n\t\tmu 0 3 44 46 667\n\t\tf 3 1112 -268 1113\n\t\tmu 0 3 621 149 148\n\t\tf 3 1114 -998 -1114\n\t\tmu 0 3 148 620 621\n\t\tf 3 -1115 -276 1115\n\t\tmu 0 3 620 148 152\n\t\tf 3 1116 -999 -1116\n\t\tmu 0 3 152 622 620\n\t\tf 3 -1117 -280 1117\n\t\tmu 0 3 622 152 154\n\t\tf 3 1118 -1010 -1118\n\t\tmu 0 3 154 627 622\n\t\tf 3 -1119 -290 1119\n\t\tmu 0 3 627 154 158\n\t\tf 3 1120 -1013 -1120\n\t\tmu 0 3 158 628 627\n\t\tf 3 1121 -295 1122\n\t\tmu 0 3 668 669 161\n\t\tf 3 1123 -1026 -1123\n\t\tmu 0 3 161 636 670\n\t\tf 3 -1124 -307 1124\n\t\tmu 0 3 636 161 167\n\t\tf 3 1125 -1029 -1125\n\t\tmu 0 3 167 638 636\n\t\tf 3 1126 1127 1128\n\t\tmu 0 3 671 672 673\n\t\tf 3 1129 1130 -1129\n\t\tmu 0 3 673 674 671\n\t\tf 3 1131 -1130 1132\n\t\tmu 0 3 675 674 673\n\t\tf 3 1133 1134 -1133\n\t\tmu 0 3 673 676 675\n\t\tf 3 1135 -1127 1136\n\t\tmu 0 3 677 672 671\n\t\tf 3 1137 1138 -1137\n\t\tmu 0 3 671 678 677\n\t\tf 3 -1139 1139 1140\n\t\tmu 0 3 677 678 679\n\t\tf 3 1141 1142 -1141\n\t\tmu 0 3 679 680 677\n\t\tf 3 -1135 1143 1144\n\t\tmu 0 3 675 676 681\n\t\tf 3 1145 1146 -1145\n\t\tmu 0 3 681 682 675\n\t\tf 3 -1142 1147 1148\n\t\tmu 0 3 680 679 683\n\t\tf 3 1149 1150 -1149\n\t\tmu 0 3 683 684 680\n\t\tf 3 1151 -1150 1152\n\t\tmu 0 3 685 684 683\n\t\tf 3 1153 1154 -1153\n\t\tmu 0 3 683 686 685\n\t\tf 3 1155 -1155 1156\n\t\tmu 0 3 687 685 686\n\t\tf 3 1157 1158 -1157\n\t\tmu 0 3 686 688 687\n\t\tf 3 1159 -1159 1160\n\t\tmu 0 3 689 687 688\n\t\tf 3 1161 1162 -1161\n\t\tmu 0 3 688 690 689\n\t\tf 3 1163 -1163 1164\n\t\tmu 0 3 691 689 690\n\t\tf 3 -1146 1165 1166\n\t\tmu 0 3 682 681 691\n\t\tf 3 1167 1168 -1165\n\t\tmu 0 3 690 692 691\n\t\tf 3 1169 -1154 1170\n\t\tmu 0 3 693 686 683\n\t\tf 3 1171 1172 -1171\n\t\tmu 0 3 683 694 693\n\t\tf 3 -1172 -1148 1173\n\t\tmu 0 3 694 683 679\n\t\tf 3 1174 -1173 1175\n\t\tmu 0 3 695 693 694\n\t\tf 3 1176 1177 -1176\n\t\tmu 0 3 694 696 695\n\t\tf 3 1178 -1178 1179\n\t\tmu 0 3 697 695 696\n\t\tf 3 1180 1181 -1180\n\t\tmu 0 3 696 698 697\n\t\tf 3 1182 -1177 1183\n\t\tmu 0 3 699 696 694\n\t\tf 3 -1181 -1183 1184\n\t\tmu 0 3 698 696 699\n\t\tf 3 -1184 1185 1186\n\t\tmu 0 3 699 694 700\n\t\tf 3 1187 1188 -1186\n\t\tmu 0 3 694 701 700\n\t\tf 3 1189 1190 -1185\n\t\tmu 0 3 699 702 698\n\t\tf 3 1191 -1188 -1174\n\t\tmu 0 3 679 701 694\n\t\tf 3 -1169 1192 1193\n\t\tmu 0 3 691 692 703\n\t\tf 3 1194 1195 -1194\n\t\tmu 0 3 703 704 691\n\t\tf 3 -1196 1196 -1167\n\t\tmu 0 3 691 704 682\n\t\tf 3 1197 1198 1199\n\t\tmu 0 3 705 706 707\n\t\tf 3 1200 1201 -1200\n\t\tmu 0 3 708 709 710\n\t\tf 3 1202 -1201 1203\n\t\tmu 0 3 711 712 713\n\t\tf 3 1204 1205 -1204\n\t\tmu 0 3 714 715 716\n\t\tf 3 -1206 1206 1207\n\t\tmu 0 3 717 718 719\n\t\tf 3 1208 1209 -1208\n\t\tmu 0 3 720 721 722\n\t\tf 3 1210 -1209 1211\n\t\tmu 0 3 723 724 725\n\t\tf 3 1212 1213 -1212\n\t\tmu 0 3 726 727 728\n\t\tf 3 1214 -1214 1215\n\t\tmu 0 3 729 730 731\n\t\tf 3 1216 1217 -1216\n\t\tmu 0 3 732 733 734\n\t\tf 3 -1199 1218 1219\n\t\tmu 0 3 735 736 737\n\t\tf 3 1220 1221 1222\n\t\tmu 0 3 738 739 740\n\t\tf 3 1223 1224 -1223\n\t\tmu 0 3 741 742 743\n\t\tf 3 -1221 1225 1226\n\t\tmu 0 3 744 745 746\n\t\tf 3 1227 1228 -1227\n\t\tmu 0 3 747 748 749\n\t\tf 3 1229 -1226 1230\n\t\tmu 0 3 750 751 752\n\t\tf 3 1231 1232 -1231\n\t\tmu 0 3 753 754 755\n\t\tf 3 -1232 -1225 1233\n\t\tmu 0 3 756 757 758\n\t\tf 3 1234 1235 -1234\n\t\tmu 0 3 759 760 761\n\t\tf 3 -1228 1236 1237\n\t\tmu 0 3 762 763 764\n\t\tf 3 -1237 -1230 1238\n\t\tmu 0 3 765 766 767\n\t\tf 3 1239 1240 -1238\n\t\tmu 0 3 768 769 770\n\t\tf 3 1241 1242 -1239\n\t\tmu 0 3 771 772 773\n\t\tf 3 1243 1244 1245\n\t\tmu 0 3 774 775 776\n\t\tf 3 1246 1247 -1246\n\t\tmu 0 3 777 778 779\n\t\tf 3 -1247 1248 1249\n\t\tmu 0 3 780 781 782\n\t\tf 3 -1244 1250 -1220\n\t\tmu 0 3 783 784 785\n\t\tf 3 1251 1252 1253\n\t\tmu 0 3 786 787 788\n\t\tf 3 1254 1255 -1254\n\t\tmu 0 3 789 790 791\n\t\tf 3 -1252 1256 1257\n\t\tmu 0 3 792 793 794\n\t\tf 3 -1205 1258 -1258\n\t\tmu 0 3 795 796 797\n\t\tf 3 -1207 -1257 1259\n\t\tmu 0 3 798 799 800\n\t\tf 3 1260 1261 -1260\n\t\tmu 0 3 801 802 803\n\t\tf 3 -1261 -1256 1262\n\t\tmu 0 3 804 805 806\n\t\tf 3 1263 1264 -1263\n\t\tmu 0 3 807 808 809\n\t\tf 3 1265 -1265 1266\n\t\tmu 0 3 810 811 812\n\t\tf 3 1267 1268 -1267\n\t\tmu 0 3 813 814 815\n\t\tf 3 -1266 1269 1270\n\t\tmu 0 3 816 817 818\n\t\tf 3 -1213 -1262 -1271\n\t\tmu 0 3 819 820 821\n\t\tf 3 -1217 -1270 1271\n\t\tmu 0 3 822 823 824\n\t\tf 3 1272 1273 -1272\n\t\tmu 0 3 825 826 827\n\t\tf 3 -1273 -1269 1274\n\t\tmu 0 3 828 829 830\n\t\tf 3 1275 1276 -1275\n\t\tmu 0 3 831 832 833\n\t\tf 3 -1255 1277 1278\n\t\tmu 0 3 834 835 836\n\t\tf 3 1279 1280 -1250\n\t\tmu 0 3 837 838 839\n\t\tf 3 -1280 1281 1282\n\t\tmu 0 3 840 841 842\n\t\tf 3 1283 1284 -1283\n\t\tmu 0 3 843 844 845\n\t\tf 3 -1284 1285 1286\n\t\tmu 0 3 846 847 848\n\t\tf 3 1287 1288 -1287\n\t\tmu 0 3 849 850 851\n\t\tf 3 1289 1290 1291\n\t\tmu 0 3 852 853 854\n\t\tf 3 1292 1293 -1292\n\t\tmu 0 3 855 856 857\n\t\tf 3 -1294 1294 1295\n\t\tmu 0 3 858 859 860\n\t\tf 3 1296 1297 -1296\n\t\tmu 0 3 861 862 863\n\t\tf 3 1298 -1297 1299\n\t\tmu 0 3 864 865 866\n\t\tf 3 1300 1301 -1300\n\t\tmu 0 3 867 868 869\n\t\tf 3 1302 -1302 1303\n\t\tmu 0 3 870 871 872\n\t\tf 3 1304 1305 -1304\n\t\tmu 0 3 873 874 875\n\t\tf 3 -1288 1306 1307\n\t\tmu 0 3 876 877 878\n\t\tf 3 1308 1309 1310\n\t\tmu 0 3 879 880 881\n\t\tf 3 1311 1312 -1311\n\t\tmu 0 3 882 883 884\n\t\tf 3 -1312 1313 1314\n\t\tmu 0 3 885 886 887\n\t\tf 3 -1313 1315 1316\n\t\tmu 0 3 888 889 890\n\t\tf 3 1317 1318 -1317\n\t\tmu 0 3 891 892 893\n\t\tf 3 1319 1320 -1308\n\t\tmu 0 3 894 895 896\n\t\tf 3 -1293 1321 1322\n\t\tmu 0 3 897 898 899\n\t\tf 3 1323 -1320 1324\n\t\tmu 0 3 900 901 902\n\t\tf 3 1325 1326 -1325\n\t\tmu 0 3 903 904 905\n\t\tf 3 1327 1328 1329\n\t\tmu 0 3 906 907 908\n\t\tf 3 -1328 1330 -1323\n\t\tmu 0 3 909 910 911\n\t\tf 3 1331 1332 -1330\n\t\tmu 0 3 912 913 914\n\t\tf 3 -1333 1333 1334\n\t\tmu 0 3 915 916 917\n\t\tf 3 1335 1336 -1335\n\t\tmu 0 3 918 919 920\n\t\tf 3 1337 -1336 1338\n\t\tmu 0 3 921 922 923\n\t\tf 3 -1338 1339 1340\n\t\tmu 0 3 924 925 926\n\t\tf 3 -1305 -1340 1341\n\t\tmu 0 3 927 928 929\n\t\tf 3 1342 1343 -1339\n\t\tmu 0 3 930 931 932\n\t\tf 3 1344 -1344 1345\n\t\tmu 0 3 933 934 935\n\t\tf 3 -1345 1346 -1342\n\t\tmu 0 3 936 937 938\n\t\tf 3 1347 1348 -1346\n\t\tmu 0 3 939 940 941\n\t\tf 3 -1331 -1337 1349\n\t\tmu 0 3 942 943 944\n\t\tf 3 1350 -1295 -1350\n\t\tmu 0 3 945 946 947\n\t\tf 3 -1301 -1351 -1341\n\t\tmu 0 3 948 949 950\n\t\tf 3 1351 -1318 1352\n\t\tmu 0 3 951 952 953\n\t\tf 3 1353 -1352 1354\n\t\tmu 0 3 954 955 956\n\t\tf 3 1355 1356 -1355\n\t\tmu 0 3 957 958 959\n\t\tf 3 1357 -1356 1358\n\t\tmu 0 3 960 961 962\n\t\tf 3 1359 1360 -1359\n\t\tmu 0 3 963 964 965\n\t\tf 3 -1360 1361 1362\n\t\tmu 0 3 966 967 968\n\t\tf 3 1363 -1362 -1353\n\t\tmu 0 3 969 970 971\n\t\tf 3 1364 -1364 1365\n\t\tmu 0 3 972 973 974\n\t\tf 3 1366 -1365 1367\n\t\tmu 0 3 975 976 977\n\t\tf 3 -1367 1368 -1363\n\t\tmu 0 3 978 979 980\n\t\tf 3 1369 1370 -1368\n\t\tmu 0 3 981 982 983\n\t\tf 3 1371 -1370 1372\n\t\tmu 0 3 984 985 986\n\t\tf 3 1373 1374 -1373\n\t\tmu 0 3 987 988 989\n\t\tf 3 -1374 1375 1376\n\t\tmu 0 3 990 991 992\n\t\tf 3 1377 -1376 -1366\n\t\tmu 0 3 993 994 995\n\t\tf 3 1378 1379 -1377\n\t\tmu 0 3 996 997 998\n\t\tf 3 1380 1381 -1375\n\t\tmu 0 3 999 1000 1001\n\t\tf 3 -1381 -1380 1382\n\t\tmu 0 3 1002 1003 1004\n\t\tf 3 -1319 -1354 1383\n\t\tmu 0 3 1005 1006 1007\n\t\tf 3 1384 1385 -1384\n\t\tmu 0 3 1008 1009 1010\n\t\tf 3 -1309 -1386 1386\n\t\tmu 0 3 1011 1012 1013\n\t\tf 3 1387 1388 -1387\n\t\tmu 0 3 1014 1015 1016\n\t\tf 3 -1243 -1379 1389\n\t\tmu 0 3 1017 1018 1019\n\t\tf 3 1390 1391 -1390\n\t\tmu 0 3 1020 1021 1022\n\t\tf 3 -1391 -1378 1392\n\t\tmu 0 3 1023 1024 1025\n\t\tf 3 -1316 1393 -1393\n\t\tmu 0 3 1026 1027 1028\n\t\tf 3 1394 -1394 -1315\n\t\tmu 0 3 1029 1030 1031\n\t\tf 3 -1240 -1392 1395\n\t\tmu 0 3 1032 1033 1034\n\t\tf 3 -1395 1396 -1396\n\t\tmu 0 3 1035 1036 1037\n\t\tf 3 -1242 1397 -1383\n\t\tmu 0 3 1038 1039 1040\n\t\tf 3 1398 1399 1400\n\t\tmu 0 3 1041 1042 1043\n\t\tf 3 1401 1402 -1401\n\t\tmu 0 3 1044 1045 1046\n\t\tf 3 -1403 1403 1404\n\t\tmu 0 3 1047 1048 1049\n\t\tf 3 1405 1406 -1405\n\t\tmu 0 3 1050 1051 1052\n\t\tf 3 1407 -1406 1408\n\t\tmu 0 3 1053 1054 1055\n\t\tf 3 1409 1410 -1409\n\t\tmu 0 3 1056 1057 1058\n\t\tf 3 -1411 1411 1412\n\t\tmu 0 3 1059 1060 1061\n\t\tf 3 1413 1414 -1413\n\t\tmu 0 3 1062 1063 1064\n\t\tf 3 1415 -1414 1416\n\t\tmu 0 3 1065 1066 1067\n\t\tf 3 1417 1418 -1417\n\t\tmu 0 3 1068 1069 1070\n\t\tf 3 -1419 1419 1420\n\t\tmu 0 3 1071 1072 1073\n\t\tf 3 1421 1422 -1421\n\t\tmu 0 3 1074 1075 1076\n\t\tf 3 1423 -1422 1424\n\t\tmu 0 3 1077 1078 1079\n\t\tf 3 1425 1426 -1425\n\t\tmu 0 3 1080 1081 1082\n\t\tf 3 -1402 1427 1428\n\t\tmu 0 3 1083 1084 1085\n\t\tf 3 1429 1430 -1429\n\t\tmu 0 3 1086 1087 1088\n\t\tf 3 1431 -1404 1432\n\t\tmu 0 3 1089 1090 1091\n\t\tf 3 -1431 1433 -1433\n\t\tmu 0 3 1092 1093 1094\n\t\tf 3 -1410 -1432 1434\n\t\tmu 0 3 1095 1096 1097\n\t\tf 3 1435 1436 -1435\n\t\tmu 0 3 1098 1099 1100\n\t\tf 3 1437 -1412 1438\n\t\tmu 0 3 1101 1102 1103\n\t\tf 3 -1437 1439 -1439\n\t\tmu 0 3 1104 1105 1106\n\t\tf 3 -1418 -1438 1440\n\t\tmu 0 3 1107 1108 1109\n\t\tf 3 1441 1442 -1441\n\t\tmu 0 3 1110 1111 1112\n\t\tf 3 1443 -1420 1444\n\t\tmu 0 3 1113 1114 1115\n\t\tf 3 -1443 1445 -1445\n\t\tmu 0 3 1116 1117 1118\n\t\tf 3 -1426 -1444 1446\n\t\tmu 0 3 1119 1120 1121\n\t\tf 3 1447 1448 -1447\n\t\tmu 0 3 1122 1123 1124\n\t\tf 3 -1430 1449 1450\n\t\tmu 0 3 1125 1126 1127\n\t\tf 3 1451 1452 -1451\n\t\tmu 0 3 1128 1129 1130\n\t\tf 3 -1434 -1453 1453\n\t\tmu 0 3 1131 1132 1133\n\t\tf 3 -1452 1454 1455\n\t\tmu 0 3 1134 1135 1136\n\t\tf 3 1456 1457 -1456\n\t\tmu 0 3 1137 1138 1139\n\t\tf 3 -1457 1458 1459\n\t\tmu 0 3 1140 1141 1142\n\t\tf 3 1460 1461 -1460\n\t\tmu 0 3 1143 1144 1145\n\t\tf 3 -1461 1462 1463\n\t\tmu 0 3 1146 1147 1148\n\t\tf 3 1464 1465 -1464\n\t\tmu 0 3 1149 1150 1151\n\t\tf 3 1466 -1462 1467\n\t\tmu 0 3 1152 1153 1154\n\t\tf 3 1468 1469 -1468\n\t\tmu 0 3 1155 1156 1157\n\t\tf 3 -1469 -1466 1470\n\t\tmu 0 3 1158 1159 1160\n\t\tf 3 1471 1472 -1471\n\t\tmu 0 3 1161 1162 1163\n\t\tf 3 1473 -1473 1474\n\t\tmu 0 3 1164 1165 1166\n\t\tf 3 1475 1476 -1475\n\t\tmu 0 3 1167 1168 1169\n\t\tf 3 -1474 1477 1478\n\t\tmu 0 3 1170 1171 1172\n\t\tf 3 1479 -1470 -1479\n\t\tmu 0 3 1173 1174 1175\n\t\tf 3 1480 -1478 1481\n\t\tmu 0 3 1176 1177 1178\n\t\tf 3 1482 1483 -1482\n\t\tmu 0 3 1179 1180 1181\n\t\tf 3 -1483 -1477 1484\n\t\tmu 0 3 1182 1183 1184\n\t\tf 3 1485 1486 -1485\n\t\tmu 0 3 1185 1186 1187\n\t\tf 3 1487 1488 1489\n\t\tmu 0 3 1188 1189 1190\n\t\tf 3 1490 1491 -1490\n\t\tmu 0 3 1191 1192 1193\n\t\tf 3 -1488 1492 1493\n\t\tmu 0 3 1194 1195 1196\n\t\tf 3 1494 -1484 -1494\n\t\tmu 0 3 1197 1198 1199\n\t\tf 3 1495 -1493 1496\n\t\tmu 0 3 1200 1201 1202\n\t\tf 3 1497 1498 -1497\n\t\tmu 0 3 1203 1204 1205\n\t\tf 3 1499 -1498 -1492\n\t\tmu 0 3 1206 1207 1208\n\t\tf 3 1500 1501 -1500\n\t\tmu 0 3 1209 1210 1211\n\t\tf 3 1502 1503 -1501\n\t\tmu 0 3 1212 1213 1214\n\t\tf 3 -1480 1504 1505\n\t\tmu 0 3 1215 1216 1217\n\t\tf 3 1506 -1505 1507\n\t\tmu 0 3 1218 1219 1220\n\t\tf 3 -1481 1508 -1508\n\t\tmu 0 3 1221 1222 1223\n\t\tf 3 -1507 1509 1510\n\t\tmu 0 3 1224 1225 1226\n\t\tf 3 -1440 1511 -1511\n\t\tmu 0 3 1227 1228 1229\n\t\tf 3 1512 -1512 1513\n\t\tmu 0 3 1230 1231 1232\n\t\tf 3 -1513 1514 -1506\n\t\tmu 0 3 1233 1234 1235\n\t\tf 3 -1467 -1515 1515\n\t\tmu 0 3 1236 1237 1238\n\t\tf 3 1516 -1458 -1516\n\t\tmu 0 3 1239 1240 1241\n\t\tf 3 -1517 1517 -1454\n\t\tmu 0 3 1242 1243 1244\n\t\tf 3 -1436 -1518 -1514\n\t\tmu 0 3 1245 1246 1247\n\t\tf 3 -1442 -1510 1518\n\t\tmu 0 3 1248 1249 1250\n\t\tf 3 1519 1520 -1519\n\t\tmu 0 3 1251 1252 1253\n\t\tf 3 -1495 1521 1522\n\t\tmu 0 3 1254 1255 1256\n\t\tf 3 -1520 -1509 -1523\n\t\tmu 0 3 1257 1258 1259\n\t\tf 3 -1446 -1521 1523\n\t\tmu 0 3 1260 1261 1262\n\t\tf 3 1524 1525 -1524\n\t\tmu 0 3 1263 1264 1265\n\t\tf 3 -1525 -1522 1526\n\t\tmu 0 3 1266 1267 1268\n\t\tf 3 -1496 1527 -1527\n\t\tmu 0 3 1269 1270 1271\n\t\tf 3 1528 -1528 1529\n\t\tmu 0 3 1272 1273 1274\n\t\tf 3 1530 1531 -1530\n\t\tmu 0 3 1275 1276 1277\n\t\tf 3 -1529 1532 1533\n\t\tmu 0 3 1278 1279 1280\n\t\tf 3 -1448 -1526 -1534\n\t\tmu 0 3 1281 1282 1283\n\t\tf 3 1534 -1531 1535\n\t\tmu 0 3 1284 1285 1286\n\t\tf 3 -1499 1536 -1536\n\t\tmu 0 3 1287 1288 1289\n\t\tf 3 -1537 -1502 1537\n\t\tmu 0 3 1290 1291 1292\n\t\tf 3 1538 1539 1540\n\t\tmu 0 3 1293 1294 1295\n\t\tf 3 1541 1542 -1541\n\t\tmu 0 3 1296 1297 1298\n\t\tf 3 -1543 1543 1544\n\t\tmu 0 3 1299 1300 1301\n\t\tf 3 1545 1546 -1545\n\t\tmu 0 3 1302 1303 1304\n\t\tf 3 1547 -1546 1548\n\t\tmu 0 3 1305 1306 1307\n\t\tf 3 1549 1550 -1549\n\t\tmu 0 3 1308 1309 1310\n\t\tf 3 -1551 1551 1552\n\t\tmu 0 3 1311 1312 1313\n\t\tf 3 1553 1554 -1553\n\t\tmu 0 3 1314 1315 1316\n\t\tf 3 1555 -1554 1556\n\t\tmu 0 3 1317 1318 1319\n\t\tf 3 1557 1558 -1557\n\t\tmu 0 3 1320 1321 1322\n\t\tf 3 -1559 1559 1560\n\t\tmu 0 3 1323 1324 1325\n\t\tf 3 1561 1562 -1561\n\t\tmu 0 3 1326 1327 1328\n\t\tf 3 1563 -1562 1564\n\t\tmu 0 3 1329 1330 1331\n\t\tf 3 1565 1566 -1565\n\t\tmu 0 3 1332 1333 1334\n\t\tf 3 1567 1568 1569\n\t\tmu 0 3 1335 1336 1337\n\t\tf 3 1570 1571 -1570\n\t\tmu 0 3 1338 1339 1340\n\t\tf 3 1572 1573 1574\n\t\tmu 0 3 1341 1342 1343\n\t\tf 3 1575 1576 -1575\n\t\tmu 0 3 1344 1345 1346\n\t\tf 3 1577 1578 1579\n\t\tmu 0 3 1347 1348 1349\n\t\tf 3 1580 1581 -1580\n\t\tmu 0 3 1350 1351 1352\n\t\tf 3 -1555 1582 1583\n\t\tmu 0 3 1353 1354 1355\n\t\tf 3 -1556 1584 1585\n\t\tmu 0 3 1356 1357 1358\n\t\tf 3 1586 -1583 -1586\n\t\tmu 0 3 1359 1360 1361\n\t\tf 3 -1587 1587 1588\n\t\tmu 0 3 1362 1363 1364\n\t\tf 3 1589 1590 -1589\n\t\tmu 0 3 1365 1366 1367\n\t\tf 3 1591 -1591 1592\n\t\tmu 0 3 1368 1369 1370\n\t\tf 3 1593 1594 -1593\n\t\tmu 0 3 1371 1372 1373\n\t\tf 3 1595 -1595 1596\n\t\tmu 0 3 1374 1375 1376\n\t\tf 3 -1596 1597 1598\n\t\tmu 0 3 1377 1378 1379\n\t\tf 3 -1547 -1598 1599\n\t\tmu 0 3 1380 1381 1382\n\t\tf 3 1600 1601 -1600\n\t\tmu 0 3 1383 1384 1385\n\t\tf 3 -1539 -1602 1602\n\t\tmu 0 3 1386 1387 1388\n\t\tf 3 1603 1604 -1603\n\t\tmu 0 3 1389 1390 1391\n\t\tf 3 -1604 1605 1606\n\t\tmu 0 3 1392 1393 1394\n\t\tf 3 1607 1608 -1607\n\t\tmu 0 3 1395 1396 1397\n\t\tf 3 1609 -1606 1610\n\t\tmu 0 3 1398 1399 1400\n\t\tf 3 -1601 1611 -1611\n\t\tmu 0 3 1401 1402 1403\n\t\tf 3 1612 -1612 -1597\n\t\tmu 0 3 1404 1405 1406\n\t\tf 3 -1548 1613 -1599\n\t\tmu 0 3 1407 1408 1409\n\t\tf 3 -1592 -1614 -1584\n\t\tmu 0 3 1410 1411 1412\n\t\tf 3 1614 -1588 1615\n\t\tmu 0 3 1413 1414 1415\n\t\tf 3 1616 1617 -1616\n\t\tmu 0 3 1416 1417 1418\n\t\tf 3 1618 -1618 1619\n\t\tmu 0 3 1419 1420 1421\n\t\tf 3 1620 1621 -1620\n\t\tmu 0 3 1422 1423 1424\n\t\tf 3 1622 -1622 1623\n\t\tmu 0 3 1425 1426 1427\n\t\tf 3 1624 1625 -1624\n\t\tmu 0 3 1428 1429 1430\n\t\tf 3 -1625 1626 1627\n\t\tmu 0 3 1431 1432 1433\n\t\tf 3 -1568 1628 -1628\n\t\tmu 0 3 1434 1435 1436\n\t\tf 3 1629 1630 1631\n\t\tmu 0 3 1437 1438 1439\n\t\tf 3 -1573 1632 -1632\n\t\tmu 0 3 1440 1441 1442\n\t\tf 3 -1630 1633 1634\n\t\tmu 0 3 1443 1444 1445\n\t\tf 3 1635 -1626 -1635\n\t\tmu 0 3 1446 1447 1448\n\t\tf 3 1636 -1634 1637\n\t\tmu 0 3 1449 1450 1451\n\t\tf 3 1638 1639 -1638\n\t\tmu 0 3 1452 1453 1454\n\t\tf 3 -1639 -1633 1640\n\t\tmu 0 3 1455 1456 1457\n\t\tf 3 -1582 1641 -1641\n\t\tmu 0 3 1458 1459 1460\n\t\tf 3 -1564 1642 1643\n\t\tmu 0 3 1461 1462 1463\n\t\tf 3 -1621 1644 -1644\n\t\tmu 0 3 1464 1465 1466\n\t\tf 3 -1563 -1645 1645\n\t\tmu 0 3 1467 1468 1469\n\t\tf 3 -1617 -1585 -1646\n\t\tmu 0 3 1470 1471 1472\n\t\tf 3 1646 -1623 1647\n\t\tmu 0 3 1473 1474 1475\n\t\tf 3 -1636 1648 -1648\n\t\tmu 0 3 1476 1477 1478\n\t\tf 3 -1649 -1637 1649\n\t\tmu 0 3 1479 1480 1481\n\t\tf 3 1650 1651 -1650\n\t\tmu 0 3 1482 1483 1484\n\t\tf 3 1652 -1651 1653\n\t\tmu 0 3 1485 1486 1487\n\t\tf 3 1654 1655 -1654\n\t\tmu 0 3 1488 1489 1490\n\t\tf 3 -1655 -1640 1656\n\t\tmu 0 3 1491 1492 1493\n\t\tf 3 1657 -1656 1658\n\t\tmu 0 3 1494 1495 1496\n\t\tf 3 1659 1660 -1659\n\t\tmu 0 3 1497 1498 1499\n\t\tf 3 1661 1662 1663\n\t\tmu 0 3 1500 1501 1502\n\t\tf 3 -1662 1664 -1657\n\t\tmu 0 3 1503 1504 1505\n\t\tf 3 -1660 -1665 1665\n\t\tmu 0 3 1506 1507 1508\n\t\tf 3 1666 1667 -1664\n\t\tmu 0 3 1509 1510 1511\n\t\tf 3 -1667 1668 1669\n\t\tmu 0 3 1512 1513 1514\n\t\tf 3 1670 1671 -1670\n\t\tmu 0 3 1515 1516 1517\n\t\tf 3 -1671 1672 1673\n\t\tmu 0 3 1518 1519 1520\n\t\tf 3 -1673 -1579 1674\n\t\tmu 0 3 1521 1522 1523\n\t\tf 3 1675 1676 -1675\n\t\tmu 0 3 1524 1525 1526\n\t\tf 3 1677 1678 1679\n\t\tmu 0 3 1527 1528 1529\n\t\tf 3 -1576 1680 -1680\n\t\tmu 0 3 1530 1531 1532\n\t\tf 3 1681 1682 1683\n\t\tmu 0 3 1533 1534 1535\n\t\tf 3 -1571 1684 -1684\n\t\tmu 0 3 1536 1537 1538\n\t\tf 3 1685 -1566 1686\n\t\tmu 0 3 1539 1540 1541\n\t\tf 3 1687 1688 -1687\n\t\tmu 0 3 1542 1543 1544\n\t\tf 3 -1688 -1560 1689\n\t\tmu 0 3 1545 1546 1547\n\t\tf 3 1690 1691 -1690\n\t\tmu 0 3 1548 1549 1550\n\t\tf 3 1692 -1691 1693\n\t\tmu 0 3 1551 1552 1553\n\t\tf 3 -1558 1694 -1694\n\t\tmu 0 3 1554 1555 1556\n\t\tf 3 -1695 -1552 1695\n\t\tmu 0 3 1557 1558 1559\n\t\tf 3 1696 1697 -1696\n\t\tmu 0 3 1560 1561 1562\n\t\tf 3 1698 -1697 1699\n\t\tmu 0 3 1563 1564 1565\n\t\tf 3 -1550 1700 -1700\n\t\tmu 0 3 1566 1567 1568\n\t\tf 3 -1701 -1544 1701\n\t\tmu 0 3 1569 1570 1571\n\t\tf 3 1702 1703 -1702\n\t\tmu 0 3 1572 1573 1574\n\t\tf 3 1704 -1703 1705\n\t\tmu 0 3 1575 1576 1577\n\t\tf 3 -1542 1706 -1706\n\t\tmu 0 3 1578 1579 1580\n\t\tf 3 1707 1708 1709\n\t\tmu 0 3 1581 1582 1583\n\t\tf 3 1710 1711 -1710\n\t\tmu 0 3 1584 1585 1586\n\t\tf 3 -1712 1712 1713\n\t\tmu 0 3 1587 1588 1589\n\t\tf 3 1714 1715 -1714\n\t\tmu 0 3 1590 1591 1592\n\t\tf 3 1716 -1715 1717\n\t\tmu 0 3 1593 1594 1595\n\t\tf 3 1718 1719 -1718\n\t\tmu 0 3 1596 1597 1598\n\t\tf 3 -1720 1720 1721\n\t\tmu 0 3 1599 1600 1601\n\t\tf 3 1722 1723 -1722\n\t\tmu 0 3 1602 1603 1604\n\t\tf 3 1724 -1723 1725\n\t\tmu 0 3 1605 1606 1607\n\t\tf 3 1726 1727 -1726\n\t\tmu 0 3 1608 1609 1610\n\t\tf 3 -1728 1728 1729\n\t\tmu 0 3 1611 1612 1613\n\t\tf 3 1730 1731 -1730\n\t\tmu 0 3 1614 1615 1616\n\t\tf 3 1732 -1731 1733\n\t\tmu 0 3 1617 1618 1619\n\t\tf 3 1734 1735 -1734\n\t\tmu 0 3 1620 1621 1622\n\t\tf 3 -1736 1736 1737\n\t\tmu 0 3 1623 1624 1625\n\t\tf 3 1738 1739 -1738\n\t\tmu 0 3 1626 1627 1628\n\t\tf 3 1740 -1739 1741\n\t\tmu 0 3 1629 1630 1631\n\t\tf 3 1742 1743 -1742\n\t\tmu 0 3 1632 1633 1634\n\t\tf 3 -1744 1744 1745\n\t\tmu 0 3 1635 1636 1637\n\t\tf 3 1746 1747 -1746\n\t\tmu 0 3 1638 1639 1640\n\t\tf 3 -1202 1748 1749\n\t\tmu 0 3 1641 1642 1643\n\t\tf 3 1750 1751 -1750\n\t\tmu 0 3 1644 1645 1646\n\t\tf 3 1752 -1749 1753\n\t\tmu 0 3 1647 1648 1649\n\t\tf 3 -1203 1754 -1754\n\t\tmu 0 3 1650 1651 1652\n\t\tf 3 1755 -1210 1756\n\t\tmu 0 3 1653 1654 1655\n\t\tf 3 1757 1758 -1757\n\t\tmu 0 3 1656 1657 1658\n\t\tf 3 1759 -1758 1760\n\t\tmu 0 3 1659 1660 1661\n\t\tf 3 -1211 1761 -1761\n\t\tmu 0 3 1662 1663 1664\n\t\tf 3 1762 -1762 1763\n\t\tmu 0 3 1665 1666 1667\n\t\tf 3 -1215 1764 -1764\n\t\tmu 0 3 1668 1669 1665\n\t\tf 3 1765 1766 -1674\n\t\tmu 0 3 1670 1671 1672\n\t\tf 3 1767 -1767 1768\n\t\tmu 0 3 1673 1674 1675\n\t\tf 3 1769 1770 -1769\n\t\tmu 0 3 1676 1677 1678\n\t\tf 3 -1768 1771 1772\n\t\tmu 0 3 1679 1680 1681\n\t\tf 3 1773 -1672 -1773\n\t\tmu 0 3 1682 1683 1684\n\t\tf 3 -1774 1774 1775\n\t\tmu 0 3 1685 1686 1687\n\t\tf 3 1776 -1668 -1776\n\t\tmu 0 3 1688 1689 1690\n\t\tf 3 -1777 1777 -1666\n\t\tmu 0 3 1691 1692 1693\n\t\tf 3 1778 1779 1780\n\t\tmu 0 3 1694 1695 1696\n\t\tf 3 1781 1782 -1781\n\t\tmu 0 3 1697 1698 1699\n\t\tf 3 1783 1784 1785\n\t\tmu 0 3 1700 1701 1702\n\t\tf 3 1786 1787 -1786\n\t\tmu 0 3 1703 1704 1705;\n\tsetAttr \".fc[1000:1499]\"\n\t\tf 3 1788 1789 1790\n\t\tmu 0 3 1706 1707 1708\n\t\tf 3 -1789 1791 1792\n\t\tmu 0 3 1709 1710 1711\n\t\tf 3 1793 1794 -1793\n\t\tmu 0 3 1712 1713 1714\n\t\tf 3 -1794 1795 1796\n\t\tmu 0 3 1715 1716 1717\n\t\tf 3 1797 1798 -1797\n\t\tmu 0 3 1718 1719 1720\n\t\tf 3 -1798 1799 1800\n\t\tmu 0 3 1721 1722 1723\n\t\tf 3 1801 1802 -1801\n\t\tmu 0 3 1724 1725 1726\n\t\tf 3 -1802 1803 1804\n\t\tmu 0 3 1727 1728 1729\n\t\tf 3 1805 1806 -1805\n\t\tmu 0 3 1730 1731 1732\n\t\tf 3 -1806 1807 1808\n\t\tmu 0 3 1733 1734 1735\n\t\tf 3 1809 1810 -1809\n\t\tmu 0 3 1736 1737 1738\n\t\tf 3 -1810 1811 1812\n\t\tmu 0 3 1739 1740 1741\n\t\tf 3 1813 1814 -1813\n\t\tmu 0 3 1742 1743 1744\n\t\tf 3 -1814 1815 1816\n\t\tmu 0 3 1745 1746 1747\n\t\tf 3 1817 1818 -1817\n\t\tmu 0 3 1748 1749 1750\n\t\tf 3 -1818 1819 1820\n\t\tmu 0 3 1751 1752 1753\n\t\tf 3 1821 1822 -1821\n\t\tmu 0 3 1754 1755 1756\n\t\tf 3 -1822 1823 1824\n\t\tmu 0 3 1757 1758 1759\n\t\tf 3 1825 1826 -1825\n\t\tmu 0 3 1760 1761 1762\n\t\tf 3 1827 1828 1829\n\t\tmu 0 3 1763 1764 1765\n\t\tf 3 1830 1831 -1830\n\t\tmu 0 3 1766 1767 1768\n\t\tf 3 1832 1833 1834\n\t\tmu 0 3 1769 1770 1771\n\t\tf 3 1835 1836 -1835\n\t\tmu 0 3 1771 1772 1773\n\t\tf 3 1837 1838 1839\n\t\tmu 0 3 1774 1775 1776\n\t\tf 3 -1832 1840 -1840\n\t\tmu 0 3 1777 1778 1779\n\t\tf 3 1841 -1838 1842\n\t\tmu 0 3 1780 1781 1782\n\t\tf 3 1843 -1837 1844\n\t\tmu 0 3 1783 1784 1785\n\t\tf 3 1845 1846 -1845\n\t\tmu 0 3 1786 1787 1788\n\t\tf 3 1847 1848 -1843\n\t\tmu 0 3 1789 1790 1791\n\t\tf 3 1849 1850 1851\n\t\tmu 0 3 1792 1793 1794\n\t\tf 3 -1847 1852 -1852\n\t\tmu 0 3 1795 1796 1797\n\t\tf 3 1853 -1850 1854\n\t\tmu 0 3 1798 1799 1800\n\t\tf 3 1855 1856 -1855\n\t\tmu 0 3 1801 1802 1803\n\t\tf 3 -1849 1857 1858\n\t\tmu 0 3 1804 1805 1806\n\t\tf 3 1859 1860 -1859\n\t\tmu 0 3 1807 1808 1809\n\t\tf 3 1861 -1860 1862\n\t\tmu 0 3 1810 1811 1812\n\t\tf 3 1863 1864 -1863\n\t\tmu 0 3 1813 1814 1815\n\t\tf 3 1865 1866 1867\n\t\tmu 0 3 1816 1817 1818\n\t\tf 3 -1857 1868 -1868\n\t\tmu 0 3 1819 1820 1821\n\t\tf 3 -1865 1869 1870\n\t\tmu 0 3 1822 1823 1824\n\t\tf 3 1871 -1866 1872\n\t\tmu 0 3 1825 1826 1827\n\t\tf 3 1873 1874 -1873\n\t\tmu 0 3 1828 1829 1830\n\t\tf 3 1875 1876 -1871\n\t\tmu 0 3 1831 1832 1833\n\t\tf 3 1877 -1876 1878\n\t\tmu 0 3 1834 1835 1836\n\t\tf 3 1879 1880 -1879\n\t\tmu 0 3 1837 1838 1839\n\t\tf 3 1881 1882 1883\n\t\tmu 0 3 1840 1841 1842\n\t\tf 3 -1875 1884 -1884\n\t\tmu 0 3 1843 1844 1845\n\t\tf 3 -1881 1885 1886\n\t\tmu 0 3 1846 1847 1848\n\t\tf 3 1887 -1882 1888\n\t\tmu 0 3 1849 1850 1851\n\t\tf 3 1889 1890 -1889\n\t\tmu 0 3 1852 1853 1854\n\t\tf 3 1891 1892 -1887\n\t\tmu 0 3 1855 1856 1857\n\t\tf 3 1893 -1892 1894\n\t\tmu 0 3 1858 1859 1860\n\t\tf 3 1895 -1788 -1895\n\t\tmu 0 3 1861 1862 1863\n\t\tf 3 -1783 1896 1897\n\t\tmu 0 3 1864 1865 1866\n\t\tf 3 -1891 1898 -1898\n\t\tmu 0 3 1867 1868 1869\n\t\tf 3 1899 1900 1901\n\t\tmu 0 3 1870 1871 1872\n\t\tf 3 1902 1903 -1902\n\t\tmu 0 3 1873 1874 1875\n\t\tf 3 -1900 1904 1905\n\t\tmu 0 3 1876 1877 1878\n\t\tf 3 1906 1907 -1906\n\t\tmu 0 3 1879 1880 1881\n\t\tf 3 -1903 1908 1909\n\t\tmu 0 3 1882 1883 1884\n\t\tf 3 1910 1911 -1910\n\t\tmu 0 3 1885 1886 1887\n\t\tf 3 -1911 1912 1913\n\t\tmu 0 3 1888 1889 1890\n\t\tf 3 1914 1915 -1914\n\t\tmu 0 3 1891 1892 1893\n\t\tf 3 -1915 1916 1917\n\t\tmu 0 3 1894 1895 1896\n\t\tf 3 1918 1919 -1918\n\t\tmu 0 3 1897 1898 1899\n\t\tf 3 -1919 1920 1921\n\t\tmu 0 3 1900 1901 1902\n\t\tf 3 1922 1923 -1922\n\t\tmu 0 3 1903 1904 1905\n\t\tf 3 -1923 1924 1925\n\t\tmu 0 3 1906 1907 1908\n\t\tf 3 1926 1927 -1926\n\t\tmu 0 3 1909 1910 1911\n\t\tf 3 -1927 1928 1929\n\t\tmu 0 3 1912 1913 1914\n\t\tf 3 1930 1931 -1930\n\t\tmu 0 3 1915 1916 1917\n\t\tf 3 -1931 1932 1933\n\t\tmu 0 3 1918 1919 1920\n\t\tf 3 1934 1935 -1934\n\t\tmu 0 3 1921 1922 1923\n\t\tf 3 -1935 1936 1937\n\t\tmu 0 3 1924 1925 1926\n\t\tf 3 1938 1939 -1938\n\t\tmu 0 3 1927 1928 1929\n\t\tf 3 1940 1941 1942\n\t\tmu 0 3 1930 1931 1932\n\t\tf 3 1943 1944 -1943\n\t\tmu 0 3 1933 1934 1935\n\t\tf 3 -1945 1945 1946\n\t\tmu 0 3 1936 1937 1938\n\t\tf 3 1947 1948 -1947\n\t\tmu 0 3 1939 1940 1941\n\t\tf 3 1949 -1948 1950\n\t\tmu 0 3 1942 1943 1944\n\t\tf 3 1951 1952 -1951\n\t\tmu 0 3 1945 1946 1947\n\t\tf 3 -1953 1953 1954\n\t\tmu 0 3 1948 1949 1950\n\t\tf 3 1955 1956 -1955\n\t\tmu 0 3 1951 1952 1953\n\t\tf 3 1957 -1956 1958\n\t\tmu 0 3 1954 1955 1956\n\t\tf 3 1959 1960 -1959\n\t\tmu 0 3 1957 1958 1959\n\t\tf 3 -1961 1961 1962\n\t\tmu 0 3 1960 1961 1962\n\t\tf 3 1963 1964 -1963\n\t\tmu 0 3 1963 1964 1965\n\t\tf 3 1965 -1964 1966\n\t\tmu 0 3 1966 1967 1968\n\t\tf 3 -1647 1967 -1967\n\t\tmu 0 3 1969 1970 1971\n\t\tf 3 -1968 -1652 1968\n\t\tmu 0 3 1972 1973 1974\n\t\tf 3 1969 1970 -1969\n\t\tmu 0 3 1975 1976 1977\n\t\tf 3 1971 -1970 1972\n\t\tmu 0 3 1978 1979 1980\n\t\tf 3 -1653 1973 -1973\n\t\tmu 0 3 1981 1982 1983\n\t\tf 3 -1974 -1658 1974\n\t\tmu 0 3 1984 1985 1986\n\t\tf 3 1975 1976 -1975\n\t\tmu 0 3 1987 1988 1989\n\t\tf 3 1977 -1954 1978\n\t\tmu 0 3 1990 1991 1992\n\t\tf 3 -1960 -1978 1979\n\t\tmu 0 3 1993 1994 1995\n\t\tf 3 1980 -1594 -1979\n\t\tmu 0 3 1996 1997 1998\n\t\tf 3 -1590 1981 -1980\n\t\tmu 0 3 1999 2000 2001\n\t\tf 3 -1962 -1982 1982\n\t\tmu 0 3 2002 2003 2004\n\t\tf 3 -1615 -1619 -1983\n\t\tmu 0 3 2005 2006 2007\n\t\tf 3 -1613 -1981 1983\n\t\tmu 0 3 2008 2009 2010\n\t\tf 3 -1952 1984 -1984\n\t\tmu 0 3 2011 2012 2013\n\t\tf 3 -1985 -1946 1985\n\t\tmu 0 3 2014 2015 2016\n\t\tf 3 1986 -1610 -1986\n\t\tmu 0 3 2017 2018 2019\n\t\tf 3 -1608 -1987 1987\n\t\tmu 0 3 2020 2021 2022\n\t\tf 3 -1944 1988 -1988\n\t\tmu 0 3 2023 2024 2025\n\t\tf 3 1989 1990 1991\n\t\tmu 0 3 2026 2027 2028\n\t\tf 3 -1779 1992 -1992\n\t\tmu 0 3 2029 2030 2031\n\t\tf 3 -1993 -1899 1993\n\t\tmu 0 3 2032 2033 2034\n\t\tf 3 1994 1995 -1994\n\t\tmu 0 3 2035 2036 2037\n\t\tf 3 1996 -1995 1997\n\t\tmu 0 3 2038 2039 2040\n\t\tf 3 -1890 1998 -1998\n\t\tmu 0 3 2041 2042 2043\n\t\tf 3 -1999 -1885 1999\n\t\tmu 0 3 2044 2045 2046\n\t\tf 3 2000 2001 -2000\n\t\tmu 0 3 2047 2048 2049\n\t\tf 3 2002 2003 2004\n\t\tmu 0 3 2050 2051 2052\n\t\tf 3 -1874 2005 -2005\n\t\tmu 0 3 2053 2054 2055\n\t\tf 3 -2006 -1869 2006\n\t\tmu 0 3 2056 2057 2058\n\t\tf 3 2007 2008 -2007\n\t\tmu 0 3 2059 2060 2061\n\t\tf 3 2009 -2008 2010\n\t\tmu 0 3 2062 2063 2064\n\t\tf 3 -1856 2011 -2011\n\t\tmu 0 3 2065 2066 2067\n\t\tf 3 -2012 -1853 2012\n\t\tmu 0 3 2068 2069 2070\n\t\tf 3 2013 2014 -2013\n\t\tmu 0 3 2071 2072 2073\n\t\tf 3 2015 -2014 2016\n\t\tmu 0 3 2074 2075 2076\n\t\tf 3 -1846 2017 -2017\n\t\tmu 0 3 2077 2078 2079\n\t\tf 3 -2018 -1836 2018\n\t\tmu 0 3 2080 2081 2082\n\t\tf 3 2019 2020 -2019\n\t\tmu 0 3 2083 2084 2085\n\t\tf 3 2021 -2002 2022\n\t\tmu 0 3 2086 2087 2088\n\t\tf 3 2023 2024 -2023\n\t\tmu 0 3 2089 2090 2091\n\t\tf 3 -2022 2025 2026\n\t\tmu 0 3 2092 2093 2094\n\t\tf 3 2027 -1997 -2027\n\t\tmu 0 3 2095 2096 2097\n\t\tf 3 -2028 2028 2029\n\t\tmu 0 3 2098 2099 2100\n\t\tf 3 2030 -1996 -2030\n\t\tmu 0 3 2101 2102 2103\n\t\tf 3 -2031 2031 2032\n\t\tmu 0 3 2104 2105 2106\n\t\tf 3 2033 -1990 -2033\n\t\tmu 0 3 2107 2108 2109\n\t\tf 3 2034 2035 -1791\n\t\tmu 0 3 2110 2111 2112\n\t\tf 3 2036 2037 2038\n\t\tmu 0 3 2113 2114 2115\n\t\tf 3 2039 2040 -2039\n\t\tmu 0 3 2116 2117 2118\n\t\tf 3 -2041 2041 2042\n\t\tmu 0 3 2119 2120 2121\n\t\tf 3 2043 2044 -2043\n\t\tmu 0 3 2122 2123 2124\n\t\tf 3 2045 -2044 2046\n\t\tmu 0 3 2125 2126 2127\n\t\tf 3 2047 2048 -2047\n\t\tmu 0 3 2128 2129 2130\n\t\tf 3 -2049 2049 2050\n\t\tmu 0 3 2131 2132 2133\n\t\tf 3 2051 2052 -2051\n\t\tmu 0 3 2134 2135 2136\n\t\tf 3 2053 -2052 2054\n\t\tmu 0 3 2137 2138 2139\n\t\tf 3 2055 2056 -2055\n\t\tmu 0 3 2140 2141 2142\n\t\tf 3 -2057 2057 2058\n\t\tmu 0 3 2143 2144 2145\n\t\tf 3 2059 2060 -2059\n\t\tmu 0 3 2146 2147 2148\n\t\tf 3 2061 -2060 2062\n\t\tmu 0 3 2149 2150 2151\n\t\tf 3 2063 2064 -2063\n\t\tmu 0 3 2152 2153 2154\n\t\tf 3 2065 2066 2067\n\t\tmu 0 3 2155 2156 2157\n\t\tf 3 2068 2069 -2068\n\t\tmu 0 3 2158 2159 2160\n\t\tf 3 2070 2071 2072\n\t\tmu 0 3 2161 2162 2163\n\t\tf 3 2073 2074 -2073\n\t\tmu 0 3 2164 2165 2166\n\t\tf 3 2075 2076 2077\n\t\tmu 0 3 2167 2168 2169\n\t\tf 3 2078 2079 -2078\n\t\tmu 0 3 2170 2171 2172\n\t\tf 3 2080 -2079 2081\n\t\tmu 0 3 2173 2174 2175\n\t\tf 3 2082 2083 -2082\n\t\tmu 0 3 2176 2177 2178\n\t\tf 3 -2084 2084 2085\n\t\tmu 0 3 2179 2180 2181\n\t\tf 3 2086 2087 -2086\n\t\tmu 0 3 2182 2183 2184\n\t\tf 3 2088 2089 2090\n\t\tmu 0 3 2185 2186 2187\n\t\tf 3 2091 2092 -2091\n\t\tmu 0 3 2188 2189 2190\n\t\tf 3 -2089 2093 2094\n\t\tmu 0 3 2191 2192 2193\n\t\tf 3 2095 2096 -2095\n\t\tmu 0 3 2194 2195 2196\n\t\tf 3 -2092 2097 2098\n\t\tmu 0 3 2197 2198 2199\n\t\tf 3 2099 2100 -2099\n\t\tmu 0 3 2200 2201 2202\n\t\tf 3 -2100 2101 2102\n\t\tmu 0 3 2203 2204 2205\n\t\tf 3 2103 2104 -2103\n\t\tmu 0 3 2206 2207 2208\n\t\tf 3 -2104 2105 2106\n\t\tmu 0 3 2209 2210 2211\n\t\tf 3 2107 2108 -2107\n\t\tmu 0 3 2212 2213 2214\n\t\tf 3 -2108 2109 2110\n\t\tmu 0 3 2215 2216 2217\n\t\tf 3 2111 2112 -2111\n\t\tmu 0 3 2218 2219 2220\n\t\tf 3 2113 -2112 2114\n\t\tmu 0 3 2221 2222 2223\n\t\tf 3 2115 2116 -2115\n\t\tmu 0 3 2224 2225 2226\n\t\tf 3 2117 -2117 2118\n\t\tmu 0 3 2227 2228 2229\n\t\tf 3 2119 2120 -2119\n\t\tmu 0 3 2230 2231 2232\n\t\tf 3 -2121 2121 2122\n\t\tmu 0 3 2233 2234 2235\n\t\tf 3 2123 2124 -2123\n\t\tmu 0 3 2236 2237 2238\n\t\tf 3 -2124 2125 2126\n\t\tmu 0 3 2239 2240 2241\n\t\tf 3 2127 2128 -2127\n\t\tmu 0 3 2242 2243 2244\n\t\tf 3 -2128 2129 2130\n\t\tmu 0 3 2245 2246 2247\n\t\tf 3 2131 2132 -2131\n\t\tmu 0 3 2248 2249 2250\n\t\tf 3 -2132 2133 2134\n\t\tmu 0 3 2251 2252 2253\n\t\tf 3 2135 2136 -2135\n\t\tmu 0 3 2254 2255 2256\n\t\tf 3 2137 2138 2139\n\t\tmu 0 3 2257 2258 2259\n\t\tf 3 2140 2141 -2140\n\t\tmu 0 3 2260 2261 2262\n\t\tf 3 -2138 2142 2143\n\t\tmu 0 3 2263 2264 2265\n\t\tf 3 2144 2145 -2144\n\t\tmu 0 3 2266 2267 2268\n\t\tf 3 -2145 2146 2147\n\t\tmu 0 3 2269 2270 2271\n\t\tf 3 2148 2149 -2148\n\t\tmu 0 3 2272 2273 2274\n\t\tf 3 -2149 2150 2151\n\t\tmu 0 3 2275 2276 2277\n\t\tf 3 2152 2153 -2152\n\t\tmu 0 3 2278 2279 2280\n\t\tf 3 -2153 2154 2155\n\t\tmu 0 3 2281 2282 2283\n\t\tf 3 2156 2157 -2156\n\t\tmu 0 3 2284 2285 2286\n\t\tf 3 -2157 2158 2159\n\t\tmu 0 3 2287 2288 2289\n\t\tf 3 2160 2161 -2160\n\t\tmu 0 3 2290 2291 2292\n\t\tf 3 -2161 2162 2163\n\t\tmu 0 3 2293 2294 2295\n\t\tf 3 2164 2165 -2164\n\t\tmu 0 3 2296 2297 2298\n\t\tf 3 -2165 2166 2167\n\t\tmu 0 3 2299 2300 2301\n\t\tf 3 2168 2169 -2168\n\t\tmu 0 3 2302 2303 2304\n\t\tf 3 -2169 2170 2171\n\t\tmu 0 3 2305 2306 2307\n\t\tf 3 2172 2173 -2172\n\t\tmu 0 3 2308 2309 2310\n\t\tf 3 -2173 2174 2175\n\t\tmu 0 3 2311 2312 2313\n\t\tf 3 2176 2177 -2176\n\t\tmu 0 3 2314 2315 2316\n\t\tf 3 -2177 2178 2179\n\t\tmu 0 3 2317 2318 2319\n\t\tf 3 2180 2181 -2180\n\t\tmu 0 3 2320 2321 2322\n\t\tf 3 -2181 2182 2183\n\t\tmu 0 3 2323 2324 2325\n\t\tf 3 2184 2185 -2184\n\t\tmu 0 3 2326 2327 2328\n\t\tf 3 2186 2187 2188\n\t\tmu 0 3 2329 2330 2331\n\t\tf 3 2189 2190 -2189\n\t\tmu 0 3 2332 2333 2334\n\t\tf 3 -2190 2191 2192\n\t\tmu 0 3 2335 2336 2337\n\t\tf 3 2193 2194 -2193\n\t\tmu 0 3 2338 2339 2340\n\t\tf 3 2195 -2192 2196\n\t\tmu 0 3 2341 2342 2343\n\t\tf 3 2197 2198 -2197\n\t\tmu 0 3 2344 2345 2346\n\t\tf 3 -2198 -2188 2199\n\t\tmu 0 3 2347 2348 2349\n\t\tf 3 2200 2201 -2200\n\t\tmu 0 3 2350 2351 2352\n\t\tf 3 2202 -2202 2203\n\t\tmu 0 3 2353 2354 2355\n\t\tf 3 2204 2205 -2204\n\t\tmu 0 3 2356 2357 2358\n\t\tf 3 -2203 2206 2207\n\t\tmu 0 3 2359 2360 2361\n\t\tf 3 2208 -2199 -2208\n\t\tmu 0 3 2362 2363 2364\n\t\tf 3 2209 -2207 2210\n\t\tmu 0 3 2365 2366 2367\n\t\tf 3 2211 2212 -2211\n\t\tmu 0 3 2368 2369 2370\n\t\tf 3 -2212 -2206 2213\n\t\tmu 0 3 2371 2372 2373\n\t\tf 3 2214 2215 -2214\n\t\tmu 0 3 2374 2375 2376\n\t\tf 3 2216 2217 2218\n\t\tmu 0 3 2377 2378 2379\n\t\tf 3 2219 2220 -2219\n\t\tmu 0 3 2380 2381 2382\n\t\tf 3 -2217 2221 2222\n\t\tmu 0 3 2383 2384 2385\n\t\tf 3 2223 2224 -2223\n\t\tmu 0 3 2386 2387 2388\n\t\tf 3 2225 -2222 2226\n\t\tmu 0 3 2389 2390 2391\n\t\tf 3 2227 2228 -2227\n\t\tmu 0 3 2392 2393 2394\n\t\tf 3 -2228 -2221 2229\n\t\tmu 0 3 2395 2396 2397\n\t\tf 3 2230 2231 -2230\n\t\tmu 0 3 2398 2399 2400\n\t\tf 3 2232 -2205 2233\n\t\tmu 0 3 2401 2402 2403\n\t\tf 3 2234 2235 -2234\n\t\tmu 0 3 2404 2405 2406\n\t\tf 3 -2235 -2201 2236\n\t\tmu 0 3 2407 2408 2409\n\t\tf 3 2237 2238 -2237\n\t\tmu 0 3 2410 2411 2412\n\t\tf 3 -2238 -2187 2239\n\t\tmu 0 3 2413 2414 2415\n\t\tf 3 2240 2241 -2240\n\t\tmu 0 3 2416 2417 2418\n\t\tf 3 2242 -2239 2243\n\t\tmu 0 3 2419 2420 2421\n\t\tf 3 2244 2245 -2244\n\t\tmu 0 3 2422 2423 2424\n\t\tf 3 -2245 -2242 2246\n\t\tmu 0 3 2425 2426 2427\n\t\tf 3 2247 2248 -2247\n\t\tmu 0 3 2428 2429 2430\n\t\tf 3 2249 -2236 2250\n\t\tmu 0 3 2431 2432 2433\n\t\tf 3 -2243 2251 -2251\n\t\tmu 0 3 2434 2435 2436\n\t\tf 3 -2250 2252 2253\n\t\tmu 0 3 2437 2438 2439\n\t\tf 3 2254 2255 -2254\n\t\tmu 0 3 2440 2441 2442\n\t\tf 3 -2233 -2256 2256\n\t\tmu 0 3 2443 2444 2445\n\t\tf 3 2257 -2215 -2257\n\t\tmu 0 3 2446 2447 2448\n\t\tf 3 -2258 2258 2259\n\t\tmu 0 3 2449 2450 2451\n\t\tf 3 2260 -2220 -2260\n\t\tmu 0 3 2452 2453 2454\n\t\tf 3 -2261 2261 2262\n\t\tmu 0 3 2455 2456 2457\n\t\tf 3 2263 -2231 -2263\n\t\tmu 0 3 2458 2459 2460\n\t\tf 3 2264 -2262 2265\n\t\tmu 0 3 2461 2462 2463\n\t\tf 3 2266 2267 -2266\n\t\tmu 0 3 2464 2465 2466\n\t\tf 3 -2267 -2259 2268\n\t\tmu 0 3 2467 2468 2469\n\t\tf 3 -2255 2269 -2269\n\t\tmu 0 3 2470 2471 2472\n\t\tf 3 -2246 2270 2271\n\t\tmu 0 3 2473 2474 2475\n\t\tf 3 2272 2273 -2272\n\t\tmu 0 3 2476 2477 2478\n\t\tf 3 -2252 -2274 2274\n\t\tmu 0 3 2479 2480 2481\n\t\tf 3 -2249 2275 2276\n\t\tmu 0 3 2482 2483 2484\n\t\tf 3 2277 -2271 -2277\n\t\tmu 0 3 2485 2486 2487\n\t\tf 3 -2253 2278 2279\n\t\tmu 0 3 2488 2489 2490\n\t\tf 3 2280 -2279 -2275\n\t\tmu 0 3 2491 2492 2493\n\t\tf 3 2281 2282 -2280\n\t\tmu 0 3 2494 2495 2496\n\t\tf 3 -2270 -2283 2283\n\t\tmu 0 3 2497 2498 2499\n\t\tf 3 -2268 2284 2285\n\t\tmu 0 3 2500 2501 2502\n\t\tf 3 2286 -2285 -2284\n\t\tmu 0 3 2503 2504 2505\n\t\tf 3 2287 2288 -2286\n\t\tmu 0 3 2506 2507 2508\n\t\tf 3 -1290 2289 2290\n\t\tmu 0 3 2509 2510 2511\n\t\tf 3 2291 2292 -2291\n\t\tmu 0 3 2512 2513 2514\n\t\tf 3 -2292 2293 -1279\n\t\tmu 0 3 2515 2516 2517\n\t\tf 3 2294 -2290 2295\n\t\tmu 0 3 2518 2519 2520\n\t\tf 3 -2294 -2295 2296\n\t\tmu 0 3 2521 2522 2523\n\t\tf 3 -1298 2297 -2296\n\t\tmu 0 3 2524 2525 2526\n\t\tf 3 2298 -2298 2299\n\t\tmu 0 3 2527 2528 2529\n\t\tf 3 -1299 2300 -2300\n\t\tmu 0 3 2530 2531 2532\n\t\tf 3 -2299 2301 2302\n\t\tmu 0 3 2533 2534 2535\n\t\tf 3 -1268 2303 -2303\n\t\tmu 0 3 2536 2537 2538\n\t\tf 3 -2304 -1264 -2297\n\t\tmu 0 3 2539 2540 2541\n\t\tf 3 2304 -2301 2305\n\t\tmu 0 3 2542 2543 2544\n\t\tf 3 -1303 2306 -2306\n\t\tmu 0 3 2545 2546 2547\n\t\tf 3 -2305 2307 2308\n\t\tmu 0 3 2548 2549 2550\n\t\tf 3 -1276 -2302 -2309\n\t\tmu 0 3 2551 2552 2553\n\t\tf 3 -2194 2309 2310\n\t\tmu 0 3 2554 2555 2556\n\t\tf 3 -1465 2311 -2311\n\t\tmu 0 3 2557 2558 2559\n\t\tf 3 -1472 -2310 2312\n\t\tmu 0 3 2560 2561 2562\n\t\tf 3 -2196 2313 -2313\n\t\tmu 0 3 2563 2564 2565\n\t\tf 3 -1476 -2314 2314\n\t\tmu 0 3 2566 2567 2568\n\t\tf 3 -2209 2315 -2315\n\t\tmu 0 3 2569 2570 2571\n\t\tf 3 -1486 -2316 2316\n\t\tmu 0 3 2572 2573 2574\n\t\tf 3 -2210 2317 -2317\n\t\tmu 0 3 2575 2576 2577\n\t\tf 3 -1491 2318 2319\n\t\tmu 0 3 2578 2579 2580\n\t\tf 3 -2224 2320 -2320\n\t\tmu 0 3 2581 2582 2583\n\t\tf 3 -1503 -2321 2321\n\t\tmu 0 3 2584 2585 2586\n\t\tf 3 -2226 2322 -2322\n\t\tmu 0 3 2587 2588 2589\n\t\tf 3 2323 2324 2325\n\t\tmu 0 3 2590 2591 2592\n\t\tf 3 2326 2327 -2326\n\t\tmu 0 3 2593 2594 2595\n\t\tf 3 -2325 2328 2329\n\t\tmu 0 3 2596 2597 2598\n\t\tf 3 2330 2331 -2330\n\t\tmu 0 3 2599 2600 2601\n\t\tf 3 -2328 2332 2333\n\t\tmu 0 3 2602 2603 2604\n\t\tf 3 2334 2335 -2334\n\t\tmu 0 3 2605 2606 2607\n\t\tf 3 2336 -2335 2337\n\t\tmu 0 3 2608 2609 2610\n\t\tf 3 2338 2339 -2338\n\t\tmu 0 3 2611 2612 2613\n\t\tf 3 2340 -2331 2341\n\t\tmu 0 3 2614 2615 2616\n\t\tf 3 2342 2343 -2342\n\t\tmu 0 3 2617 2618 2619\n\t\tf 3 2344 -2340 2345\n\t\tmu 0 3 2620 2621 2622\n\t\tf 3 2346 2347 -2346\n\t\tmu 0 3 2623 2624 2625\n\t\tf 3 -2348 2348 2349\n\t\tmu 0 3 2626 2627 2628\n\t\tf 3 2350 2351 -2350\n\t\tmu 0 3 2629 2630 2631\n\t\tf 3 -2351 2352 2353\n\t\tmu 0 3 2632 2633 2634\n\t\tf 3 2354 2355 -2354\n\t\tmu 0 3 2635 2636 2637\n\t\tf 3 -2355 2356 2357\n\t\tmu 0 3 2638 2639 2640\n\t\tf 3 2358 2359 -2358\n\t\tmu 0 3 2641 2642 2643\n\t\tf 3 -2359 2360 2361\n\t\tmu 0 3 2644 2645 2646\n\t\tf 3 2362 -2344 2363\n\t\tmu 0 3 2647 2648 2649\n\t\tf 3 2364 2365 -2362\n\t\tmu 0 3 2650 2651 2652\n\t\tf 3 -2352 2366 2367\n\t\tmu 0 3 2653 2654 2655\n\t\tf 3 2368 2369 -2368\n\t\tmu 0 3 2656 2657 2658\n\t\tf 3 -2345 -2370 2370\n\t\tmu 0 3 2659 2660 2661\n\t\tf 3 -2369 2371 2372\n\t\tmu 0 3 2662 2663 2664\n\t\tf 3 2373 2374 -2373\n\t\tmu 0 3 2665 2666 2667\n\t\tf 3 -2374 2375 2376\n\t\tmu 0 3 2668 2669 2670\n\t\tf 3 2377 2378 -2377\n\t\tmu 0 3 2671 2672 2673\n\t\tf 3 2379 -2375 2380\n\t\tmu 0 3 2674 2675 2676\n\t\tf 3 -2381 -2379 2381\n\t\tmu 0 3 2677 2678 2679\n\t\tf 3 2382 2383 -2380\n\t\tmu 0 3 2680 2681 2682\n\t\tf 3 2384 2385 -2384\n\t\tmu 0 3 2683 2684 2685\n\t\tf 3 2386 2387 -2382\n\t\tmu 0 3 2686 2687 2688\n\t\tf 3 -2386 2388 -2371\n\t\tmu 0 3 2689 2690 2691\n\t\tf 3 2389 -2365 2390\n\t\tmu 0 3 2692 2693 2694\n\t\tf 3 2391 2392 -2391\n\t\tmu 0 3 2695 2696 2697\n\t\tf 3 2393 -2392 -2364\n\t\tmu 0 3 2698 2699 2700\n\t\tf 3 2394 2395 2396\n\t\tmu 0 3 2701 2702 2703\n\t\tf 3 2397 2398 -2397\n\t\tmu 0 3 2703 2704 2701\n\t\tf 3 -2396 2399 2400\n\t\tmu 0 3 2703 2702 2705\n\t\tf 3 2401 2402 -2401\n\t\tmu 0 3 2705 2706 2703\n\t\tf 3 2403 -2403 2404\n\t\tmu 0 3 2707 2703 2706\n\t\tf 3 -2404 2405 2406\n\t\tmu 0 3 2703 2707 2708\n\t\tf 3 2407 2408 -2407\n\t\tmu 0 3 2708 2709 2703\n\t\tf 3 -2406 2409 2410\n\t\tmu 0 3 2708 2707 2710\n\t\tf 3 -2410 2411 2412\n\t\tmu 0 3 2710 2707 2711\n\t\tf 3 2413 2414 2415\n\t\tmu 0 3 2711 2702 2712\n\t\tf 3 2416 2417 -2416\n\t\tmu 0 3 2712 2713 2711\n\t\tf 3 2418 2419 -2413\n\t\tmu 0 3 2711 2714 2710\n\t\tf 3 2420 2421 2422\n\t\tmu 0 3 2715 2716 2717\n\t\tf 3 2423 -2419 2424\n\t\tmu 0 3 2718 2714 2711\n\t\tf 3 -2418 2425 -2425\n\t\tmu 0 3 2711 2713 2718\n\t\tf 3 -2412 2426 2427\n\t\tmu 0 3 2711 2707 2719\n\t\tf 3 2428 -2427 -2405\n\t\tmu 0 3 2706 2719 2707\n\t\tf 3 2429 2430 -2428\n\t\tmu 0 3 2719 2720 2711\n\t\tf 3 2431 -2400 2432\n\t\tmu 0 3 2720 2705 2702\n\t\tf 3 -2414 -2431 -2433\n\t\tmu 0 3 2702 2711 2720\n\t\tf 3 2433 -2420 2434\n\t\tmu 0 3 2721 2710 2714\n\t\tf 3 2435 2436 -2435\n\t\tmu 0 3 2714 2722 2721\n\t\tf 3 2437 2438 2439\n\t\tmu 0 3 2723 2724 2725\n\t\tf 3 2440 2441 -2440\n\t\tmu 0 3 2725 2726 2723\n\t\tf 3 2442 2443 2444\n\t\tmu 0 3 2727 2728 2729\n\t\tf 3 2445 2446 -2445\n\t\tmu 0 3 2729 2730 2727\n\t\tf 3 2447 2448 2449\n\t\tmu 0 3 2731 2732 2733\n\t\tf 3 2450 2451 -2450\n\t\tmu 0 3 2733 2734 2731\n\t\tf 3 2452 2453 2454\n\t\tmu 0 3 2735 2736 2737\n\t\tf 3 2455 2456 -2455\n\t\tmu 0 3 2737 2738 2735\n\t\tf 3 2457 2458 2459\n\t\tmu 0 3 2739 2740 2741\n\t\tf 3 2460 2461 -2460\n\t\tmu 0 3 2741 2742 2739\n\t\tf 3 2462 2463 2464\n\t\tmu 0 3 2743 2744 2745\n\t\tf 3 2465 2466 -2465\n\t\tmu 0 3 2746 2747 2748\n\t\tf 3 2467 -2466 2468\n\t\tmu 0 3 2749 2750 2751\n\t\tf 3 2469 2470 -2469\n\t\tmu 0 3 2752 2753 2754\n\t\tf 3 -2470 2471 2472\n\t\tmu 0 3 2755 2756 2757\n\t\tf 3 2473 -2472 2474\n\t\tmu 0 3 2758 2759 2760\n\t\tf 3 2475 2476 -2475\n\t\tmu 0 3 2761 2762 2763\n\t\tf 3 2477 -2474 2478\n\t\tmu 0 3 2764 2765 2766\n\t\tf 3 2479 -2478 2480\n\t\tmu 0 3 2767 2768 2769\n\t\tf 3 2481 2482 2483\n\t\tmu 0 3 2770 2771 2772\n\t\tf 3 2484 2485 -2484\n\t\tmu 0 3 2773 2774 2775\n\t\tf 3 2486 2487 -2481\n\t\tmu 0 3 2776 2777 2778\n\t\tf 3 2488 2489 2490\n\t\tmu 0 3 2779 2780 2781\n\t\tf 3 2491 -2485 2492\n\t\tmu 0 3 2782 2783 2784\n\t\tf 3 -2488 2493 -2493\n\t\tmu 0 3 2785 2786 2787\n\t\tf 3 2494 -2480 2495\n\t\tmu 0 3 2788 2789 2790\n\t\tf 3 -2495 2496 -2473\n\t\tmu 0 3 2791 2792 2793\n\t\tf 3 2497 2498 -2496\n\t\tmu 0 3 2794 2795 2796\n\t\tf 3 -2498 -2483 2499\n\t\tmu 0 3 2797 2798 2799\n\t\tf 3 -2468 2500 -2500\n\t\tmu 0 3 2800 2801 2802\n\t\tf 3 -2487 2501 2502\n\t\tmu 0 3 2803 2804 2805\n\t\tf 3 2503 2504 -2503\n\t\tmu 0 3 2806 2807 2808\n\t\tf 3 2505 2506 2507\n\t\tmu 0 3 2809 2810 2811\n\t\tf 3 2508 2509 -2508\n\t\tmu 0 3 2812 2813 2814\n\t\tf 3 2510 2511 2512\n\t\tmu 0 3 2815 2816 2817\n\t\tf 3 2513 2514 -2513\n\t\tmu 0 3 2818 2819 2820\n\t\tf 3 2515 2516 2517\n\t\tmu 0 3 2821 2822 2823\n\t\tf 3 2518 2519 -2518\n\t\tmu 0 3 2824 2825 2826\n\t\tf 3 2520 2521 2522\n\t\tmu 0 3 2827 2828 2829\n\t\tf 3 2523 2524 -2523\n\t\tmu 0 3 2830 2831 2832\n\t\tf 3 2525 2526 2527\n\t\tmu 0 3 2833 2834 2835\n\t\tf 3 2528 2529 -2528\n\t\tmu 0 3 2836 2837 2838\n\t\tf 3 2530 2531 2532\n\t\tmu 0 3 2839 2840 2841\n\t\tf 3 2533 2534 -2533\n\t\tmu 0 3 2841 2842 2839\n\t\tf 3 2535 -2535 2536\n\t\tmu 0 3 2843 2839 2842\n\t\tf 3 2537 2538 -2537\n\t\tmu 0 3 2842 2844 2843\n\t\tf 3 2539 -2539 2540\n\t\tmu 0 3 2845 2843 2844\n\t\tf 3 2541 2542 -2541\n\t\tmu 0 3 2844 2846 2845\n\t\tf 3 2543 -2543 2544\n\t\tmu 0 3 2847 2845 2846\n\t\tf 3 2545 2546 -2545\n\t\tmu 0 3 2846 2848 2847\n\t\tf 3 2547 -2547 2548\n\t\tmu 0 3 2849 2847 2848\n\t\tf 3 2549 2550 -2549\n\t\tmu 0 3 2848 2850 2849\n\t\tf 3 2551 -2551 2552\n\t\tmu 0 3 2851 2849 2850\n\t\tf 3 2553 2554 -2553\n\t\tmu 0 3 2850 2852 2851\n\t\tf 3 2555 -2555 2556\n\t\tmu 0 3 2853 2851 2852\n\t\tf 3 2557 2558 -2557\n\t\tmu 0 3 2852 2854 2853\n\t\tf 3 2559 -2532 2560\n\t\tmu 0 3 2855 2841 2840\n\t\tf 3 2561 2562 -2561\n\t\tmu 0 3 2840 2856 2855\n\t\tf 3 2563 -2563 2564\n\t\tmu 0 3 2857 2855 2856\n\t\tf 3 2565 2566 -2565\n\t\tmu 0 3 2856 2858 2857\n\t\tf 3 2567 -2567 2568\n\t\tmu 0 3 2859 2857 2858\n\t\tf 3 2569 2570 -2569\n\t\tmu 0 3 2858 2860 2859\n\t\tf 3 2571 -2571 2572\n\t\tmu 0 3 2861 2859 2860\n\t\tf 3 2573 2574 -2573\n\t\tmu 0 3 2860 2862 2861\n\t\tf 3 2575 -2575 2576\n\t\tmu 0 3 2863 2861 2862\n\t\tf 3 2577 2578 -2577\n\t\tmu 0 3 2862 2864 2863\n\t\tf 3 2579 -2579 2580\n\t\tmu 0 3 2865 2863 2864\n\t\tf 3 2581 2582 -2581\n\t\tmu 0 3 2864 2866 2865\n\t\tf 3 2583 -2583 2584\n\t\tmu 0 3 2867 2865 2866\n\t\tf 3 2585 2586 -2585\n\t\tmu 0 3 2866 2868 2867\n\t\tf 3 2587 -2587 2588\n\t\tmu 0 3 2869 2867 2868\n\t\tf 3 2589 2590 -2589\n\t\tmu 0 3 2868 2870 2869\n\t\tf 3 2591 -2591 2592\n\t\tmu 0 3 2871 2869 2870\n\t\tf 3 2593 2594 -2593\n\t\tmu 0 3 2870 2872 2871\n\t\tf 3 2595 -2595 2596\n\t\tmu 0 3 2873 2871 2872\n\t\tf 3 2597 2598 -2597\n\t\tmu 0 3 2872 2874 2873\n\t\tf 3 2599 -2599 2600\n\t\tmu 0 3 2875 2873 2874\n\t\tf 3 2601 2602 -2601\n\t\tmu 0 3 2874 2876 2875\n\t\tf 3 2603 -2603 2604\n\t\tmu 0 3 2877 2875 2876\n\t\tf 3 2605 -2559 -2605\n\t\tmu 0 3 2876 2878 2877\n\t\tf 3 2606 2607 2608\n\t\tmu 0 3 2879 2880 2881\n\t\tf 3 2609 2610 -2609\n\t\tmu 0 3 2881 2882 2883\n\t\tf 3 2611 2612 2613\n\t\tmu 0 3 2884 2885 2886\n\t\tf 3 2614 -2608 -2614\n\t\tmu 0 3 2886 2881 2887\n\t\tf 3 2615 2616 2617\n\t\tmu 0 3 2888 2889 2890\n\t\tf 3 2618 -2613 -2618\n\t\tmu 0 3 2890 2886 2891\n\t\tf 3 2619 2620 2621\n\t\tmu 0 3 2892 2893 2894\n\t\tf 3 2622 -2617 -2622\n\t\tmu 0 3 2894 2890 2895\n\t\tf 3 2623 2624 2625\n\t\tmu 0 3 2896 2897 2898\n\t\tf 3 2626 -2621 -2626\n\t\tmu 0 3 2898 2894 2899\n\t\tf 3 2627 -2625 2628\n\t\tmu 0 3 2900 2898 2901\n\t\tf 3 2629 2630 -2629\n\t\tmu 0 3 2902 2903 2900\n\t\tf 3 2631 -2631 2632\n\t\tmu 0 3 2904 2900 2905\n\t\tf 3 2633 2634 -2633\n\t\tmu 0 3 2906 2907 2904\n\t\tf 3 2635 -2635 2636\n\t\tmu 0 3 2908 2904 2909\n\t\tf 3 2637 2638 -2637\n\t\tmu 0 3 2910 2911 2908\n\t\tf 3 2639 -2639 2640\n\t\tmu 0 3 2912 2908 2913\n\t\tf 3 2641 2642 -2641\n\t\tmu 0 3 2914 2915 2912\n\t\tf 3 2643 -2643 2644\n\t\tmu 0 3 2916 2912 2917\n\t\tf 3 2645 2646 -2645\n\t\tmu 0 3 2918 2919 2916\n\t\tf 3 2647 -2647 2648\n\t\tmu 0 3 2920 2916 2921\n\t\tf 3 2649 2650 -2649\n\t\tmu 0 3 2922 2923 2920\n\t\tf 3 2651 -2651 2652\n\t\tmu 0 3 2924 2920 2925\n\t\tf 3 2653 2654 -2653\n\t\tmu 0 3 2926 2927 2924\n\t\tf 3 2655 -2655 2656\n\t\tmu 0 3 2928 2924 2929\n\t\tf 3 2657 2658 -2657\n\t\tmu 0 3 2930 2931 2928\n\t\tf 3 2659 -2659 2660\n\t\tmu 0 3 2932 2928 2933\n\t\tf 3 2661 2662 -2661\n\t\tmu 0 3 2934 2935 2932\n\t\tf 3 2663 -2663 2664\n\t\tmu 0 3 2936 2932 2937\n\t\tf 3 2665 2666 -2665\n\t\tmu 0 3 2938 2939 2936\n\t\tf 3 2667 -2667 2668\n\t\tmu 0 3 2940 2936 2941\n\t\tf 3 2669 2670 -2669\n\t\tmu 0 3 2942 2943 2940\n\t\tf 3 2671 -2671 2672\n\t\tmu 0 3 2944 2940 2945\n\t\tf 3 2673 2674 -2673\n\t\tmu 0 3 2946 2947 2944\n\t\tf 3 2675 -2675 2676\n\t\tmu 0 3 2948 2944 2949\n\t\tf 3 2677 2678 -2677\n\t\tmu 0 3 2950 2951 2948\n\t\tf 3 2679 -2679 2680\n\t\tmu 0 3 2952 2948 2953\n\t\tf 3 2681 -2611 -2681\n\t\tmu 0 3 2954 2955 2952\n\t\tf 3 2682 2683 2684\n\t\tmu 0 3 2956 2957 2958\n\t\tf 3 -2656 2685 -2685\n\t\tmu 0 3 2958 2959 2956\n\t\tf 3 2686 -2686 2687\n\t\tmu 0 3 2960 2956 2959\n\t\tf 3 -2660 2688 -2688\n\t\tmu 0 3 2959 2961 2960\n\t\tf 3 -2687 2689 2690\n\t\tmu 0 3 2956 2960 2962\n\t\tf 3 2691 2692 -2691\n\t\tmu 0 3 2962 2963 2956\n\t\tf 3 -2683 -2693 2693\n\t\tmu 0 3 2957 2956 2963\n\t\tf 3 2694 2695 -2694\n\t\tmu 0 3 2963 2964 2957\n\t\tf 3 2696 -2689 2697\n\t\tmu 0 3 2965 2960 2961\n\t\tf 3 -2664 2698 -2698\n\t\tmu 0 3 2961 2966 2965\n\t\tf 3 -2697 2699 2700\n\t\tmu 0 3 2960 2965 2967\n\t\tf 3 -2701 2701 -2690\n\t\tmu 0 3 2960 2967 2962\n\t\tf 3 2702 2703 -2700\n\t\tmu 0 3 2965 2968 2967\n\t\tf 3 -2699 2704 2705\n\t\tmu 0 3 2965 2966 2969\n\t\tf 3 -2668 2706 -2705\n\t\tmu 0 3 2966 2970 2969\n\t\tf 3 -2706 2707 2708\n\t\tmu 0 3 2965 2969 2971\n\t\tf 3 -2652 -2684 2709\n\t\tmu 0 3 2972 2958 2957\n\t\tf 3 2710 2711 -2710\n\t\tmu 0 3 2957 2973 2972\n\t\tf 3 -2711 -2696 2712\n\t\tmu 0 3 2973 2957 2964\n\t\tf 3 -2648 -2712 2713\n\t\tmu 0 3 2974 2972 2973\n\t\tf 3 2714 2715 -2714\n\t\tmu 0 3 2973 2975 2974\n\t\tf 3 -2644 -2716 2716\n\t\tmu 0 3 2976 2974 2975\n\t\tf 3 2717 2718 -2717\n\t\tmu 0 3 2975 2977 2976\n\t\tf 3 -2640 -2719 2719\n\t\tmu 0 3 2978 2976 2977\n\t\tf 3 2720 2721 -2720\n\t\tmu 0 3 2977 2979 2978\n\t\tf 3 -2636 -2722 2722\n\t\tmu 0 3 2980 2978 2979\n\t\tf 3 2723 2724 -2723\n\t\tmu 0 3 2979 2981 2980\n\t\tf 3 2725 -2725 2726\n\t\tmu 0 3 2982 2980 2981;\n\tsetAttr \".fc[1500:1999]\"\n\t\tf 3 2727 -2632 -2726\n\t\tmu 0 3 2982 2983 2980\n\t\tf 3 2728 2729 -2728\n\t\tmu 0 3 2982 2984 2983\n\t\tf 3 -2628 -2730 2730\n\t\tmu 0 3 2985 2983 2984\n\t\tf 3 2731 2732 -2731\n\t\tmu 0 3 2984 2986 2985\n\t\tf 3 -2627 -2733 2733\n\t\tmu 0 3 2987 2985 2986\n\t\tf 3 2734 2735 -2734\n\t\tmu 0 3 2986 2988 2987\n\t\tf 3 -2623 -2736 2736\n\t\tmu 0 3 2989 2987 2988\n\t\tf 3 2737 2738 -2737\n\t\tmu 0 3 2988 2990 2989\n\t\tf 3 -2619 -2739 2739\n\t\tmu 0 3 2991 2989 2990\n\t\tf 3 2740 2741 -2740\n\t\tmu 0 3 2990 2992 2991\n\t\tf 3 -2615 -2742 2742\n\t\tmu 0 3 2993 2991 2992\n\t\tf 3 2743 2744 -2743\n\t\tmu 0 3 2992 2994 2993\n\t\tf 3 2745 -2745 2746\n\t\tmu 0 3 2995 2993 2994\n\t\tf 3 2747 2748 -2746\n\t\tmu 0 3 2995 2996 2993\n\t\tf 3 2749 2750 -2748\n\t\tmu 0 3 2995 2997 2996\n\t\tf 3 2751 -2610 -2749\n\t\tmu 0 3 2996 2998 2993\n\t\tf 3 -2744 2752 2753\n\t\tmu 0 3 2994 2992 2999\n\t\tf 3 2754 2755 -2754\n\t\tmu 0 3 2999 3000 2994\n\t\tf 3 -2747 -2756 2756\n\t\tmu 0 3 2995 2994 3000\n\t\tf 3 2757 2758 -2757\n\t\tmu 0 3 3000 3001 2995\n\t\tf 3 -2741 2759 2760\n\t\tmu 0 3 2992 2990 3002\n\t\tf 3 2761 -2753 -2761\n\t\tmu 0 3 3002 2999 2992\n\t\tf 3 -2738 2762 2763\n\t\tmu 0 3 2990 2988 3003\n\t\tf 3 2764 -2760 -2764\n\t\tmu 0 3 3003 3002 2990\n\t\tf 3 2765 -2763 2766\n\t\tmu 0 3 3004 3003 2988\n\t\tf 3 -2735 2767 -2767\n\t\tmu 0 3 2988 2986 3004\n\t\tf 3 -2758 2768 2769\n\t\tmu 0 3 3001 3000 3005\n\t\tf 3 2770 2771 -2770\n\t\tmu 0 3 3005 3006 3001\n\t\tf 3 -2755 2772 2773\n\t\tmu 0 3 3000 2999 3007\n\t\tf 3 2774 -2769 -2774\n\t\tmu 0 3 3007 3005 3000\n\t\tf 3 -2775 2775 2776\n\t\tmu 0 3 3005 3007 3008\n\t\tf 3 2777 2778 -2777\n\t\tmu 0 3 3008 3009 3005\n\t\tf 3 -2771 -2779 2779\n\t\tmu 0 3 3006 3005 3009\n\t\tf 3 2780 2781 -2780\n\t\tmu 0 3 3009 3010 3006\n\t\tf 3 -2762 2782 2783\n\t\tmu 0 3 2999 3002 3011\n\t\tf 3 2784 -2773 -2784\n\t\tmu 0 3 3011 3007 2999\n\t\tf 3 -2785 2785 2786\n\t\tmu 0 3 3007 3011 3012\n\t\tf 3 2787 -2776 -2787\n\t\tmu 0 3 3012 3008 3007\n\t\tf 3 -2765 2788 2789\n\t\tmu 0 3 3002 3003 3013\n\t\tf 3 2790 -2783 -2790\n\t\tmu 0 3 3013 3011 3002\n\t\tf 3 -2791 2791 2792\n\t\tmu 0 3 3011 3013 3014\n\t\tf 3 2793 -2786 -2793\n\t\tmu 0 3 3014 3012 3011\n\t\tf 3 -2766 2794 2795\n\t\tmu 0 3 3003 3004 3015\n\t\tf 3 2796 -2789 -2796\n\t\tmu 0 3 3015 3013 3003\n\t\tf 3 -2797 2797 2798\n\t\tmu 0 3 3013 3015 3016\n\t\tf 3 2799 -2792 -2799\n\t\tmu 0 3 3016 3014 3013\n\t\tf 3 2800 -2768 2801\n\t\tmu 0 3 3017 3004 2986\n\t\tf 3 -2732 2802 -2802\n\t\tmu 0 3 2986 2984 3017\n\t\tf 3 2803 -2803 2804\n\t\tmu 0 3 3018 3017 2984\n\t\tf 3 -2729 2805 -2805\n\t\tmu 0 3 2984 2982 3018\n\t\tf 3 2806 -2806 2807\n\t\tmu 0 3 3019 3018 2982\n\t\tf 3 2808 2809 -2808\n\t\tmu 0 3 2982 3020 3019\n\t\tf 3 2810 -2798 2811\n\t\tmu 0 3 3021 3016 3015\n\t\tf 3 2812 2813 -2812\n\t\tmu 0 3 3015 3022 3021\n\t\tf 3 2814 -2813 2815\n\t\tmu 0 3 3023 3022 3015\n\t\tf 3 -2816 -2795 2816\n\t\tmu 0 3 3023 3015 3004\n\t\tf 3 2817 2818 -2817\n\t\tmu 0 3 3004 3024 3023\n\t\tf 3 -2801 2819 -2818\n\t\tmu 0 3 3004 3017 3024\n\t\tf 3 -2820 -2804 2820\n\t\tmu 0 3 3024 3017 3018\n\t\tf 3 2821 -2809 2822\n\t\tmu 0 3 3025 3020 2982\n\t\tf 3 -2727 2823 -2823\n\t\tmu 0 3 2982 2981 3025\n\t\tf 3 2824 -2824 2825\n\t\tmu 0 3 3026 3025 2981\n\t\tf 3 -2724 2826 -2826\n\t\tmu 0 3 2981 2979 3026\n\t\tf 3 2827 -2827 2828\n\t\tmu 0 3 3027 3026 2979\n\t\tf 3 -2721 2829 -2829\n\t\tmu 0 3 2979 2977 3027\n\t\tf 3 2830 -2830 2831\n\t\tmu 0 3 3028 3027 2977\n\t\tf 3 -2718 2832 -2832\n\t\tmu 0 3 2977 2975 3028\n\t\tf 3 2833 -2833 2834\n\t\tmu 0 3 3029 3028 2975\n\t\tf 3 -2715 2835 -2835\n\t\tmu 0 3 2975 2973 3029\n\t\tf 3 2836 -2836 -2713\n\t\tmu 0 3 2964 3029 2973\n\t\tf 3 -2828 2837 2838\n\t\tmu 0 3 3026 3027 3030\n\t\tf 3 2839 2840 -2839\n\t\tmu 0 3 3030 3031 3026\n\t\tf 3 -2840 2841 2842\n\t\tmu 0 3 3031 3030 3032\n\t\tf 3 2843 2844 -2843\n\t\tmu 0 3 3032 3033 3031\n\t\tf 3 -2831 2845 2846\n\t\tmu 0 3 3027 3028 3034\n\t\tf 3 2847 -2838 -2847\n\t\tmu 0 3 3034 3030 3027\n\t\tf 3 -2848 2848 2849\n\t\tmu 0 3 3030 3034 3035\n\t\tf 3 2850 -2842 -2850\n\t\tmu 0 3 3035 3032 3030\n\t\tf 3 -2834 2851 2852\n\t\tmu 0 3 3028 3029 3036\n\t\tf 3 2853 -2846 -2853\n\t\tmu 0 3 3036 3034 3028\n\t\tf 3 -2854 2854 2855\n\t\tmu 0 3 3034 3036 3037\n\t\tf 3 2856 -2849 -2856\n\t\tmu 0 3 3037 3035 3034\n\t\tf 3 -2837 2857 2858\n\t\tmu 0 3 3029 2964 3038\n\t\tf 3 2859 -2852 -2859\n\t\tmu 0 3 3038 3036 3029\n\t\tf 3 2860 -2858 2861\n\t\tmu 0 3 3039 3038 2964\n\t\tf 3 -2695 2862 -2862\n\t\tmu 0 3 2964 2963 3039\n\t\tf 3 2863 -2863 2864\n\t\tmu 0 3 3040 3039 2963\n\t\tf 3 -2692 2865 -2865\n\t\tmu 0 3 2963 2962 3040\n\t\tf 3 -2864 2866 2867\n\t\tmu 0 3 3039 3040 3041\n\t\tf 3 2868 2869 -2868\n\t\tmu 0 3 3041 3042 3039\n\t\tf 3 -2861 -2870 2870\n\t\tmu 0 3 3038 3039 3042\n\t\tf 3 2871 2872 -2871\n\t\tmu 0 3 3042 3043 3038\n\t\tf 3 -2860 -2873 2873\n\t\tmu 0 3 3036 3038 3043\n\t\tf 3 2874 -2855 -2874\n\t\tmu 0 3 3043 3037 3036\n\t\tf 3 2875 -2866 2876\n\t\tmu 0 3 3044 3040 2962\n\t\tf 3 -2702 2877 -2877\n\t\tmu 0 3 2962 2967 3044\n\t\tf 3 2878 -2867 2879\n\t\tmu 0 3 3045 3041 3040\n\t\tf 3 -2876 2880 -2880\n\t\tmu 0 3 3040 3044 3045\n\t\tf 3 2881 2882 2883\n\t\tmu 0 3 3033 3046 3047\n\t\tf 3 2884 -2845 -2884\n\t\tmu 0 3 3047 3031 3033\n\t\tf 3 -2885 2885 2886\n\t\tmu 0 3 3031 3047 3048\n\t\tf 3 -2887 2887 2888\n\t\tmu 0 3 3031 3048 3049\n\t\tf 3 2889 -2841 -2889\n\t\tmu 0 3 3049 3026 3031\n\t\tf 3 -2825 -2890 2890\n\t\tmu 0 3 3025 3026 3049\n\t\tf 3 -2888 2891 2892\n\t\tmu 0 3 3049 3048 3050\n\t\tf 3 -2822 -2891 2893\n\t\tmu 0 3 3020 3025 3049\n\t\tf 3 2894 -2894 2895\n\t\tmu 0 3 3051 3020 3049\n\t\tf 3 -2893 2896 -2896\n\t\tmu 0 3 3049 3050 3051\n\t\tf 3 -2810 -2895 2897\n\t\tmu 0 3 3019 3020 3051\n\t\tf 3 -2807 2898 2899\n\t\tmu 0 3 3018 3019 3052\n\t\tf 3 -2821 -2900 2900\n\t\tmu 0 3 3024 3018 3052\n\t\tf 3 2901 2902 -2901\n\t\tmu 0 3 3052 3053 3024\n\t\tf 3 -2819 -2903 2903\n\t\tmu 0 3 3023 3024 3053\n\t\tf 3 2904 2905 2906\n\t\tmu 0 3 3054 3055 3056\n\t\tf 3 2907 2908 -2907\n\t\tmu 0 3 3056 3057 3054\n\t\tf 3 2909 -2909 2910\n\t\tmu 0 3 3058 3054 3057\n\t\tf 3 2911 2912 -2911\n\t\tmu 0 3 3057 3059 3058\n\t\tf 3 2913 -2913 2914\n\t\tmu 0 3 3060 3058 3059\n\t\tf 3 2915 2916 -2915\n\t\tmu 0 3 3059 3061 3060\n\t\tf 3 2917 -2906 2918\n\t\tmu 0 3 3062 3056 3055\n\t\tf 3 2919 2920 -2919\n\t\tmu 0 3 3055 3063 3062\n\t\tf 3 2921 -2921 2922\n\t\tmu 0 3 3064 3062 3063\n\t\tf 3 2923 2924 -2923\n\t\tmu 0 3 3063 3065 3064\n\t\tf 3 2925 -2925 2926\n\t\tmu 0 3 3066 3064 3065\n\t\tf 3 2927 2928 -2927\n\t\tmu 0 3 3065 3067 3066\n\t\tf 3 2929 -2929 2930\n\t\tmu 0 3 3068 3066 3067\n\t\tf 3 2931 2932 -2931\n\t\tmu 0 3 3067 3069 3068\n\t\tf 3 2933 -2933 2934\n\t\tmu 0 3 3070 3068 3069\n\t\tf 3 2935 2936 -2935\n\t\tmu 0 3 3069 3071 3070\n\t\tf 3 2937 -2937 2938\n\t\tmu 0 3 3072 3070 3071\n\t\tf 3 2939 2940 -2939\n\t\tmu 0 3 3071 3073 3072\n\t\tf 3 2941 -2941 2942\n\t\tmu 0 3 3074 3072 3073\n\t\tf 3 2943 2944 -2943\n\t\tmu 0 3 3073 3075 3074\n\t\tf 3 2945 -2945 2946\n\t\tmu 0 3 3076 3074 3075\n\t\tf 3 2947 2948 -2947\n\t\tmu 0 3 3075 3077 3076\n\t\tf 3 2949 -2949 2950\n\t\tmu 0 3 3078 3076 3077\n\t\tf 3 2951 2952 -2951\n\t\tmu 0 3 3077 3079 3078\n\t\tf 3 2953 -2953 2954\n\t\tmu 0 3 3080 3078 3079\n\t\tf 3 2955 2956 -2955\n\t\tmu 0 3 3079 3081 3080\n\t\tf 3 2957 -2957 2958\n\t\tmu 0 3 3082 3080 3081\n\t\tf 3 2959 2960 -2959\n\t\tmu 0 3 3081 3083 3082\n\t\tf 3 2961 -2961 2962\n\t\tmu 0 3 3084 3082 3083\n\t\tf 3 2963 -2963 2964\n\t\tmu 0 3 3085 3084 3083\n\t\tf 3 -2965 2965 2966\n\t\tmu 0 3 3085 3083 3086\n\t\tf 3 2967 -2967 2968\n\t\tmu 0 3 3087 3085 3086\n\t\tf 3 2969 2970 -2969\n\t\tmu 0 3 3086 3088 3087\n\t\tf 3 2971 2972 2973\n\t\tmu 0 3 3089 3090 3091\n\t\tf 3 2974 2975 -2974\n\t\tmu 0 3 3091 3092 3089\n\t\tf 3 2976 -2973 2977\n\t\tmu 0 3 3093 3091 3090\n\t\tf 3 2978 2979 -2978\n\t\tmu 0 3 3090 3094 3093\n\t\tf 3 2980 -2980 2981\n\t\tmu 0 3 3095 3093 3094\n\t\tf 3 2982 2983 -2982\n\t\tmu 0 3 3094 3096 3095\n\t\tf 3 2984 -2984 2985\n\t\tmu 0 3 3097 3095 3096\n\t\tf 3 2986 2987 -2986\n\t\tmu 0 3 3096 3098 3097\n\t\tf 3 2988 -2988 2989\n\t\tmu 0 3 3099 3097 3098\n\t\tf 3 2990 2991 -2990\n\t\tmu 0 3 3098 3100 3099\n\t\tf 3 2992 -2992 2993\n\t\tmu 0 3 3101 3099 3100\n\t\tf 3 2994 2995 -2994\n\t\tmu 0 3 3100 3102 3101\n\t\tf 3 2996 -2996 2997\n\t\tmu 0 3 3103 3101 3102\n\t\tf 3 2998 2999 -2998\n\t\tmu 0 3 3102 3104 3103\n\t\tf 3 3000 -3000 3001\n\t\tmu 0 3 3105 3103 3104\n\t\tf 3 3002 3003 -3002\n\t\tmu 0 3 3104 3106 3105\n\t\tf 3 3004 -3004 3005\n\t\tmu 0 3 3107 3105 3106\n\t\tf 3 3006 3007 -3006\n\t\tmu 0 3 3106 3108 3107\n\t\tf 3 3008 -3008 3009\n\t\tmu 0 3 3109 3107 3108\n\t\tf 3 3010 3011 -3010\n\t\tmu 0 3 3108 3110 3109\n\t\tf 3 3012 -3012 3013\n\t\tmu 0 3 3111 3109 3110\n\t\tf 3 3014 3015 -3014\n\t\tmu 0 3 3110 3112 3111\n\t\tf 3 3016 -3016 3017\n\t\tmu 0 3 3113 3111 3112\n\t\tf 3 3018 3019 -3018\n\t\tmu 0 3 3112 3114 3113\n\t\tf 3 3020 -3020 3021\n\t\tmu 0 3 3115 3113 3114\n\t\tf 3 3022 3023 -3022\n\t\tmu 0 3 3114 3116 3115\n\t\tf 3 3024 -3024 3025\n\t\tmu 0 3 3117 3115 3116\n\t\tf 3 3026 3027 -3026\n\t\tmu 0 3 3116 3118 3117\n\t\tf 3 -3027 3028 3029\n\t\tmu 0 3 3118 3116 3119\n\t\tf 3 3030 3031 -3030\n\t\tmu 0 3 3119 3120 3118\n\t\tf 3 -3023 3032 3033\n\t\tmu 0 3 3116 3114 3121\n\t\tf 3 3034 -3029 -3034\n\t\tmu 0 3 3121 3119 3116\n\t\tf 3 -3019 3035 3036\n\t\tmu 0 3 3114 3112 3122\n\t\tf 3 3037 -3033 -3037\n\t\tmu 0 3 3122 3121 3114\n\t\tf 3 -3015 3038 3039\n\t\tmu 0 3 3112 3110 3123\n\t\tf 3 3040 -3036 -3040\n\t\tmu 0 3 3123 3122 3112\n\t\tf 3 -3011 3041 3042\n\t\tmu 0 3 3110 3108 3124\n\t\tf 3 3043 -3039 -3043\n\t\tmu 0 3 3124 3123 3110\n\t\tf 3 3044 -3042 3045\n\t\tmu 0 3 3125 3124 3108\n\t\tf 3 -3007 3046 -3046\n\t\tmu 0 3 3108 3106 3125\n\t\tf 3 3047 -3047 3048\n\t\tmu 0 3 3126 3125 3106\n\t\tf 3 -3003 3049 -3049\n\t\tmu 0 3 3106 3104 3126\n\t\tf 3 3050 -3050 3051\n\t\tmu 0 3 3127 3126 3104\n\t\tf 3 -2999 3052 -3052\n\t\tmu 0 3 3104 3102 3127\n\t\tf 3 3053 -3053 3054\n\t\tmu 0 3 3128 3127 3102\n\t\tf 3 -2995 3055 -3055\n\t\tmu 0 3 3102 3100 3128\n\t\tf 3 3056 -3056 3057\n\t\tmu 0 3 3129 3128 3100\n\t\tf 3 -2991 3058 -3058\n\t\tmu 0 3 3100 3098 3129\n\t\tf 3 3059 -3059 3060\n\t\tmu 0 3 3130 3129 3098\n\t\tf 3 -2987 3061 -3061\n\t\tmu 0 3 3098 3096 3130\n\t\tf 3 3062 -3062 3063\n\t\tmu 0 3 3131 3130 3096\n\t\tf 3 -2983 3064 -3064\n\t\tmu 0 3 3096 3094 3131\n\t\tf 3 -3065 -2979 3065\n\t\tmu 0 3 3131 3094 3090\n\t\tf 3 3066 3067 -3066\n\t\tmu 0 3 3090 3132 3131\n\t\tf 3 -2707 -2672 3068\n\t\tmu 0 3 2969 2970 3133\n\t\tf 3 3069 3070 -3069\n\t\tmu 0 3 3133 3134 2969\n\t\tf 3 -3070 -2676 3071\n\t\tmu 0 3 3134 3133 3135\n\t\tf 3 3072 3073 -3072\n\t\tmu 0 3 3135 3136 3134\n\t\tf 3 -3073 -2680 3074\n\t\tmu 0 3 3136 3135 3137\n\t\tf 3 -2752 3075 -3075\n\t\tmu 0 3 3137 3138 3136\n\t\tf 3 3076 3077 3078\n\t\tmu 0 3 3139 3140 3141\n\t\tf 3 3079 3080 -3079\n\t\tmu 0 3 3141 3142 3139\n\t\tf 3 3081 3082 3083\n\t\tmu 0 3 3141 3143 3144\n\t\tf 3 3084 -3080 -3084\n\t\tmu 0 3 3144 3145 3141\n\t\tf 3 3085 3086 3087\n\t\tmu 0 3 3143 3146 3147\n\t\tf 3 3088 -3083 -3088\n\t\tmu 0 3 3147 3148 3143\n\t\tf 3 3089 3090 3091\n\t\tmu 0 3 3146 3149 3150\n\t\tf 3 3092 -3087 -3092\n\t\tmu 0 3 3150 3151 3146\n\t\tf 3 3093 3094 3095\n\t\tmu 0 3 3149 3152 3153\n\t\tf 3 3096 -3091 -3096\n\t\tmu 0 3 3153 3154 3149\n\t\tf 3 3097 3098 3099\n\t\tmu 0 3 3152 3155 3156\n\t\tf 3 3100 -3095 -3100\n\t\tmu 0 3 3156 3157 3152\n\t\tf 3 3101 3102 3103\n\t\tmu 0 3 3155 3158 3159\n\t\tf 3 3104 -3099 -3104\n\t\tmu 0 3 3159 3160 3155\n\t\tf 3 3105 3106 3107\n\t\tmu 0 3 3161 3162 3163\n\t\tf 3 3108 -3103 -3108\n\t\tmu 0 3 3163 3164 3161\n\t\tf 3 3109 3110 3111\n\t\tmu 0 3 3162 3165 3166\n\t\tf 3 3112 -3107 -3112\n\t\tmu 0 3 3166 3167 3162\n\t\tf 3 3113 3114 3115\n\t\tmu 0 3 3165 3168 3169\n\t\tf 3 3116 -3111 -3116\n\t\tmu 0 3 3169 3170 3165\n\t\tf 3 3117 3118 3119\n\t\tmu 0 3 3168 3171 3172\n\t\tf 3 3120 -3115 -3120\n\t\tmu 0 3 3172 3173 3168\n\t\tf 3 3121 3122 3123\n\t\tmu 0 3 3171 3174 3175\n\t\tf 3 3124 -3119 -3124\n\t\tmu 0 3 3175 3176 3171\n\t\tf 3 3125 -3123 3126\n\t\tmu 0 3 3177 3178 3174\n\t\tf 3 3127 3128 -3127\n\t\tmu 0 3 3174 3179 3177\n\t\tf 3 -3129 3129 3130\n\t\tmu 0 3 3180 3179 3181\n\t\tf 3 3131 3132 -3131\n\t\tmu 0 3 3181 3182 3180\n\t\tf 3 -3132 3133 3134\n\t\tmu 0 3 3183 3181 3184\n\t\tf 3 3135 3136 -3135\n\t\tmu 0 3 3184 3185 3183\n\t\tf 3 3137 3138 3139\n\t\tmu 0 3 3184 3186 3187\n\t\tf 3 3140 -3136 -3140\n\t\tmu 0 3 3187 3188 3184\n\t\tf 3 3141 3142 3143\n\t\tmu 0 3 3186 3189 3190\n\t\tf 3 3144 -3139 -3144\n\t\tmu 0 3 3190 3191 3186\n\t\tf 3 3145 3146 3147\n\t\tmu 0 3 3189 3192 3193\n\t\tf 3 3148 -3143 -3148\n\t\tmu 0 3 3193 3194 3189\n\t\tf 3 3149 -3077 3150\n\t\tmu 0 3 3192 3140 3195\n\t\tf 3 3151 -3147 -3151\n\t\tmu 0 3 3195 3196 3192\n\t\tf 3 3152 3153 3154\n\t\tmu 0 3 3197 3198 3199\n\t\tf 3 3155 -3155 3156\n\t\tmu 0 3 3200 3197 3199\n\t\tf 3 -3156 3157 3158\n\t\tmu 0 3 3197 3200 3201\n\t\tf 3 3159 -3159 3160\n\t\tmu 0 3 3202 3197 3201\n\t\tf 3 -3160 3161 3162\n\t\tmu 0 3 3197 3202 3203\n\t\tf 3 3163 -3163 3164\n\t\tmu 0 3 3204 3197 3203\n\t\tf 3 -3164 3165 3166\n\t\tmu 0 3 3197 3204 3205\n\t\tf 3 -3167 3167 3168\n\t\tmu 0 3 3197 3205 3206\n\t\tf 3 3169 3170 -3168\n\t\tmu 0 3 3205 3207 3206\n\t\tf 3 -3169 3171 3172\n\t\tmu 0 3 3197 3206 3208\n\t\tf 3 3173 -3173 3174\n\t\tmu 0 3 3209 3197 3208\n\t\tf 3 -3174 3175 3176\n\t\tmu 0 3 3197 3209 3210\n\t\tf 3 3177 -3177 3178\n\t\tmu 0 3 3211 3197 3210\n\t\tf 3 -3178 3179 3180\n\t\tmu 0 3 3197 3211 3212\n\t\tf 3 3181 -3181 3182\n\t\tmu 0 3 3213 3197 3212\n\t\tf 3 -3182 3183 3184\n\t\tmu 0 3 3197 3213 3214\n\t\tf 3 3185 -3185 3186\n\t\tmu 0 3 3215 3197 3214\n\t\tf 3 -3186 3187 3188\n\t\tmu 0 3 3197 3215 3216\n\t\tf 3 -3153 -3189 3189\n\t\tmu 0 3 3198 3197 3216\n\t\tf 3 -2975 3190 3191\n\t\tmu 0 3 3092 3091 3217\n\t\tf 3 3192 3193 -3192\n\t\tmu 0 3 3217 3218 3092\n\t\tf 3 -3194 3194 3195\n\t\tmu 0 3 3092 3218 3219\n\t\tf 3 3196 3197 -3196\n\t\tmu 0 3 3219 3220 3092\n\t\tf 3 -3197 3198 3199\n\t\tmu 0 3 3220 3219 3221\n\t\tf 3 3200 -3191 3201\n\t\tmu 0 3 3222 3217 3091\n\t\tf 3 -2977 3202 -3202\n\t\tmu 0 3 3091 3093 3222\n\t\tf 3 3203 -3203 3204\n\t\tmu 0 3 3223 3222 3093\n\t\tf 3 -2981 3205 -3205\n\t\tmu 0 3 3093 3095 3223\n\t\tf 3 3206 -3206 3207\n\t\tmu 0 3 3224 3223 3095\n\t\tf 3 -2985 3208 -3208\n\t\tmu 0 3 3095 3097 3224\n\t\tf 3 3209 -3209 3210\n\t\tmu 0 3 3225 3224 3097\n\t\tf 3 -2989 3211 -3211\n\t\tmu 0 3 3097 3099 3225\n\t\tf 3 3212 -3212 3213\n\t\tmu 0 3 3226 3225 3099\n\t\tf 3 -2993 3214 -3214\n\t\tmu 0 3 3099 3101 3226\n\t\tf 3 3215 -3215 3216\n\t\tmu 0 3 3227 3226 3101\n\t\tf 3 -2997 3217 -3217\n\t\tmu 0 3 3101 3103 3227\n\t\tf 3 3218 -3218 3219\n\t\tmu 0 3 3228 3227 3103\n\t\tf 3 -3001 3220 -3220\n\t\tmu 0 3 3103 3105 3228\n\t\tf 3 3221 -3221 3222\n\t\tmu 0 3 3229 3228 3105\n\t\tf 3 -3005 3223 -3223\n\t\tmu 0 3 3105 3107 3229\n\t\tf 3 3224 -3224 3225\n\t\tmu 0 3 3230 3229 3107\n\t\tf 3 -3009 3226 -3226\n\t\tmu 0 3 3107 3109 3230\n\t\tf 3 3227 -3227 3228\n\t\tmu 0 3 3231 3230 3109\n\t\tf 3 -3013 3229 -3229\n\t\tmu 0 3 3109 3111 3231\n\t\tf 3 3230 -3230 3231\n\t\tmu 0 3 3232 3231 3111\n\t\tf 3 -3017 3232 -3232\n\t\tmu 0 3 3111 3113 3232\n\t\tf 3 3233 -3233 3234\n\t\tmu 0 3 3233 3232 3113\n\t\tf 3 -3021 3235 -3235\n\t\tmu 0 3 3113 3115 3233\n\t\tf 3 3236 -3236 3237\n\t\tmu 0 3 3234 3233 3115\n\t\tf 3 -3025 3238 -3238\n\t\tmu 0 3 3115 3117 3234\n\t\tf 3 3239 3240 3241\n\t\tmu 0 3 3235 3236 3237\n\t\tf 3 3242 3243 -3242\n\t\tmu 0 3 3237 3238 3235\n\t\tf 3 3244 -3243 3245\n\t\tmu 0 3 3239 3238 3237\n\t\tf 3 3246 3247 -3246\n\t\tmu 0 3 3237 3240 3239\n\t\tf 3 -3248 3248 3249\n\t\tmu 0 3 3239 3240 3241\n\t\tf 3 3250 3251 -3250\n\t\tmu 0 3 3241 3242 3239\n\t\tf 3 -3251 3252 3253\n\t\tmu 0 3 3242 3241 3243\n\t\tf 3 3254 3255 -3254\n\t\tmu 0 3 3243 3244 3242\n\t\tf 3 -3255 3256 3257\n\t\tmu 0 3 3244 3243 3245\n\t\tf 3 3258 3259 -3258\n\t\tmu 0 3 3245 3246 3244\n\t\tf 3 -3259 3260 3261\n\t\tmu 0 3 3246 3245 3247\n\t\tf 3 3262 3263 -3262\n\t\tmu 0 3 3247 3248 3246\n\t\tf 3 -3240 3264 3265\n\t\tmu 0 3 3236 3235 3249\n\t\tf 3 3266 3267 -3266\n\t\tmu 0 3 3249 3250 3236\n\t\tf 3 -3263 3268 3269\n\t\tmu 0 3 3248 3247 3251\n\t\tf 3 3270 3271 -3270\n\t\tmu 0 3 3251 3252 3248\n\t\tf 3 3272 3273 3274\n\t\tmu 0 3 3253 3254 3255\n\t\tf 3 3275 3276 -3275\n\t\tmu 0 3 3255 3256 3253\n\t\tf 3 -3276 3277 3278\n\t\tmu 0 3 3256 3255 3257\n\t\tf 3 3279 3280 -3279\n\t\tmu 0 3 3257 3258 3256\n\t\tf 3 -3280 3281 3282\n\t\tmu 0 3 3258 3257 3259\n\t\tf 3 3283 3284 -3283\n\t\tmu 0 3 3259 3260 3258\n\t\tf 3 -3284 3285 3286\n\t\tmu 0 3 3260 3259 3261\n\t\tf 3 3287 3288 -3287\n\t\tmu 0 3 3261 3262 3260\n\t\tf 3 3289 -3288 3290\n\t\tmu 0 3 3263 3262 3261\n\t\tf 3 3291 3292 -3291\n\t\tmu 0 3 3261 3264 3263\n\t\tf 3 -3273 3293 3294\n\t\tmu 0 3 3254 3253 3265\n\t\tf 3 3295 3296 -3295\n\t\tmu 0 3 3265 3266 3254\n\t\tf 3 3297 3298 3299\n\t\tmu 0 3 3267 3268 3269\n\t\tf 3 3300 3301 -3300\n\t\tmu 0 3 3269 3270 3267\n\t\tf 3 3302 -3301 3303\n\t\tmu 0 3 3271 3270 3269\n\t\tf 3 3304 3305 -3304\n\t\tmu 0 3 3269 3272 3271\n\t\tf 3 3306 -3306 3307\n\t\tmu 0 3 3273 3271 3272\n\t\tf 3 -3308 3308 3309\n\t\tmu 0 3 3273 3272 3274\n\t\tf 3 -3310 3310 3311\n\t\tmu 0 3 3273 3274 3275\n\t\tf 3 -3312 3312 3313\n\t\tmu 0 3 3273 3275 3276\n\t\tf 3 3314 -3298 3315\n\t\tmu 0 3 3277 3268 3267\n\t\tf 3 3316 3317 -3316\n\t\tmu 0 3 3267 3278 3277\n\t\tf 3 3318 -3318 3319\n\t\tmu 0 3 3279 3277 3278\n\t\tf 3 3320 3321 -3320\n\t\tmu 0 3 3278 3280 3279\n\t\tf 3 3322 -3322 3323\n\t\tmu 0 3 3281 3279 3280\n\t\tf 3 3324 3325 -3324\n\t\tmu 0 3 3280 3282 3281\n\t\tf 3 3326 -3326 3327\n\t\tmu 0 3 3283 3281 3282\n\t\tf 3 3328 3329 -3328\n\t\tmu 0 3 3282 3284 3283\n\t\tf 3 -3330 3330 3331\n\t\tmu 0 3 3283 3284 3285\n\t\tf 3 3332 3333 -3332\n\t\tmu 0 3 3285 3286 3283\n\t\tf 3 -3333 3334 3335\n\t\tmu 0 3 3286 3285 3287\n\t\tf 3 3336 3337 -3336\n\t\tmu 0 3 3287 3288 3286\n\t\tf 3 3338 -3337 3339\n\t\tmu 0 3 3289 3288 3287\n\t\tf 3 3340 3341 -3340\n\t\tmu 0 3 3287 3290 3289\n\t\tf 3 3342 -3342 3343\n\t\tmu 0 3 3291 3289 3290\n\t\tf 3 3344 3345 -3344\n\t\tmu 0 3 3290 3292 3291\n\t\tf 3 3346 -3346 3347\n\t\tmu 0 3 3293 3291 3292\n\t\tf 3 3348 3349 -3348\n\t\tmu 0 3 3292 3294 3293\n\t\tf 3 3350 -3350 3351\n\t\tmu 0 3 3295 3293 3294\n\t\tf 3 3352 3353 -3352\n\t\tmu 0 3 3294 3296 3295\n\t\tf 3 3354 -3354 3355\n\t\tmu 0 3 3297 3295 3296\n\t\tf 3 3356 3357 -3356\n\t\tmu 0 3 3296 3298 3297\n\t\tf 3 3358 -3358 3359\n\t\tmu 0 3 3299 3297 3298\n\t\tf 3 3360 3361 -3360\n\t\tmu 0 3 3298 3300 3299\n\t\tf 3 -3362 3362 3363\n\t\tmu 0 3 3299 3300 3301\n\t\tf 3 3364 3365 -3364\n\t\tmu 0 3 3301 3302 3299\n\t\tf 3 3366 3367 3368\n\t\tmu 0 3 3303 3304 3305\n\t\tf 3 -3369 3369 3370\n\t\tmu 0 3 3303 3305 3306\n\t\tf 3 -3371 3371 3372\n\t\tmu 0 3 3303 3306 3307\n\t\tf 3 3373 3374 3375\n\t\tmu 0 3 3308 3309 3310\n\t\tf 3 3376 3377 -3376\n\t\tmu 0 3 3311 3312 3308\n\t\tf 3 3378 3379 3380\n\t\tmu 0 3 3313 3314 3315\n\t\tf 3 3381 3382 -3381\n\t\tmu 0 3 3316 3317 3313\n\t\tf 3 3383 -3383 3384\n\t\tmu 0 3 3318 3313 3317\n\t\tf 3 3385 3386 -3385\n\t\tmu 0 3 3317 3319 3318\n\t\tf 3 3387 -3387 3388\n\t\tmu 0 3 3320 3318 3319\n\t\tf 3 3389 3390 -3389\n\t\tmu 0 3 3319 3321 3322\n\t\tf 3 3391 3392 3393\n\t\tmu 0 3 3323 3324 3325\n\t\tf 3 3394 3395 -3394\n\t\tmu 0 3 3326 3327 3323\n\t\tf 3 3396 3397 3398\n\t\tmu 0 3 3328 3329 3330\n\t\tf 3 3399 3400 -3399\n\t\tmu 0 3 3331 3332 3328\n\t\tf 3 3401 -3401 3402\n\t\tmu 0 3 3333 3328 3332\n\t\tf 3 3403 3404 -3403\n\t\tmu 0 3 3332 3334 3333\n\t\tf 3 3405 -3405 3406\n\t\tmu 0 3 3335 3333 3334\n\t\tf 3 3407 3408 -3407\n\t\tmu 0 3 3334 3336 3337\n\t\tf 3 -2938 3409 3410\n\t\tmu 0 3 3070 3072 3338\n\t\tf 3 3411 3412 -3411\n\t\tmu 0 3 3338 3339 3070\n\t\tf 3 -3412 3413 3414\n\t\tmu 0 3 3339 3338 3340\n\t\tf 3 3415 3416 -3414\n\t\tmu 0 3 3338 3341 3340\n\t\tf 3 3417 3418 -3416\n\t\tmu 0 3 3338 3342 3341\n\t\tf 3 -3415 3419 3420\n\t\tmu 0 3 3339 3340 3343\n\t\tf 3 3421 3422 -3420\n\t\tmu 0 3 3340 3344 3343\n\t\tf 3 3423 3424 -3422\n\t\tmu 0 3 3340 3345 3344\n\t\tf 3 3425 3426 3427\n\t\tmu 0 3 3346 3347 3348\n\t\tf 3 3428 3429 -3428\n\t\tmu 0 3 3349 3350 3351\n\t\tf 3 -3429 3430 3431\n\t\tmu 0 3 3352 3353 3354\n\t\tf 3 3432 3433 -3432\n\t\tmu 0 3 3355 3356 3357\n\t\tf 3 -3433 3434 3435\n\t\tmu 0 3 3358 3359 3360\n\t\tf 3 3436 3437 -3436\n\t\tmu 0 3 3361 3362 3363\n\t\tf 3 -3437 3438 3439\n\t\tmu 0 3 3364 3365 3366\n\t\tf 3 3440 3441 -3440\n\t\tmu 0 3 3367 3368 3369\n\t\tf 3 -3441 3442 3443\n\t\tmu 0 3 3370 3371 3372\n\t\tf 3 3444 3445 -3444\n\t\tmu 0 3 3373 3374 3375\n\t\tf 3 -3445 3446 3447\n\t\tmu 0 3 3376 3377 3378\n\t\tf 3 3448 3449 -3448\n\t\tmu 0 3 3379 3380 3381\n\t\tf 3 -3449 3450 3451\n\t\tmu 0 3 3382 3383 3384\n\t\tf 3 3452 3453 -3452\n\t\tmu 0 3 3385 3386 3387\n\t\tf 3 -3426 3454 3455\n\t\tmu 0 3 3388 3389 3390\n\t\tf 3 3456 3457 -3456\n\t\tmu 0 3 3391 3392 3393\n\t\tf 3 -3457 3458 3459\n\t\tmu 0 3 3394 3395 3396\n\t\tf 3 3460 3461 -3460\n\t\tmu 0 3 3397 3398 3399\n\t\tf 3 -3461 3462 3463\n\t\tmu 0 3 3400 3401 3402\n\t\tf 3 3464 3465 -3464\n\t\tmu 0 3 3403 3404 3405\n\t\tf 3 -3465 3466 3467\n\t\tmu 0 3 3406 3407 3408\n\t\tf 3 3468 3469 -3468\n\t\tmu 0 3 3409 3410 3411\n\t\tf 3 -3469 3470 3471\n\t\tmu 0 3 3412 3413 3414\n\t\tf 3 3472 3473 -3472\n\t\tmu 0 3 3415 3416 3417\n\t\tf 3 -3473 3474 3475\n\t\tmu 0 3 3418 3419 3420\n\t\tf 3 3476 3477 -3476\n\t\tmu 0 3 3421 3422 3423\n\t\tf 3 -3477 3478 3479\n\t\tmu 0 3 3424 3425 3426\n\t\tf 3 3480 3481 -3480\n\t\tmu 0 3 3427 3428 3429\n\t\tf 3 -3481 3482 3483\n\t\tmu 0 3 3430 3431 3432\n\t\tf 3 3484 3485 -3484\n\t\tmu 0 3 3433 3434 3435\n\t\tf 3 -3485 3486 3487\n\t\tmu 0 3 3436 3437 3438\n\t\tf 3 3488 3489 -3488\n\t\tmu 0 3 3439 3440 3441\n\t\tf 3 -3489 3490 3491\n\t\tmu 0 3 3442 3443 3444\n\t\tf 3 3492 3493 -3492\n\t\tmu 0 3 3445 3446 3447\n\t\tf 3 -3493 3494 3495\n\t\tmu 0 3 3448 3449 3450\n\t\tf 3 3496 3497 -3496\n\t\tmu 0 3 3451 3452 3453\n\t\tf 3 -3497 3498 3499\n\t\tmu 0 3 3454 3455 3456\n\t\tf 3 -3453 3500 -3500\n\t\tmu 0 3 3457 3458 3459\n\t\tf 3 3501 3502 3503\n\t\tmu 0 3 3460 3461 3462\n\t\tf 3 3504 3505 -3504\n\t\tmu 0 3 3463 3464 3465\n\t\tf 3 -3502 3506 3507\n\t\tmu 0 3 3466 3467 3468\n\t\tf 3 3508 3509 -3508\n\t\tmu 0 3 3469 3470 3471\n\t\tf 3 -3509 3510 3511\n\t\tmu 0 3 3472 3473 3474\n\t\tf 3 3512 3513 -3512\n\t\tmu 0 3 3475 3476 3477\n\t\tf 3 -3513 3514 3515\n\t\tmu 0 3 3478 3479 3480\n\t\tf 3 3516 3517 -3516\n\t\tmu 0 3 3481 3482 3483\n\t\tf 3 -3517 3518 3519\n\t\tmu 0 3 3484 3485 3486\n\t\tf 3 3520 3521 -3520\n\t\tmu 0 3 3487 3488 3489\n\t\tf 3 -3521 3522 3523\n\t\tmu 0 3 3490 3491 3492\n\t\tf 3 3524 3525 -3524\n\t\tmu 0 3 3493 3494 3495\n\t\tf 3 -3525 3526 3527\n\t\tmu 0 3 3496 3497 3498\n\t\tf 3 3528 3529 -3528\n\t\tmu 0 3 3499 3500 3501\n\t\tf 3 -3529 3530 3531\n\t\tmu 0 3 3502 3503 3504\n\t\tf 3 3532 3533 -3532\n\t\tmu 0 3 3505 3506 3507\n\t\tf 3 -3533 3534 3535\n\t\tmu 0 3 3508 3509 3510\n\t\tf 3 3536 3537 -3536\n\t\tmu 0 3 3511 3512 3513\n\t\tf 3 -3537 3538 3539\n\t\tmu 0 3 3514 3515 3516\n\t\tf 3 3540 3541 -3540\n\t\tmu 0 3 3517 3518 3519\n\t\tf 3 -3541 3542 3543\n\t\tmu 0 3 3520 3521 3522\n\t\tf 3 3544 3545 -3544\n\t\tmu 0 3 3523 3524 3525\n\t\tf 3 -3545 3546 3547\n\t\tmu 0 3 3526 3527 3528\n\t\tf 3 3548 3549 -3548\n\t\tmu 0 3 3529 3530 3531\n\t\tf 3 -3549 3550 3551\n\t\tmu 0 3 3532 3533 3534\n\t\tf 3 3552 3553 -3552\n\t\tmu 0 3 3535 3536 3537\n\t\tf 3 -3553 3554 3555\n\t\tmu 0 3 3538 3539 3540\n\t\tf 3 3556 3557 -3556\n\t\tmu 0 3 3541 3542 3543\n\t\tf 3 -3557 3558 3559\n\t\tmu 0 3 3544 3545 3546\n\t\tf 3 3560 3561 -3560\n\t\tmu 0 3 3547 3548 3549\n\t\tf 3 -3561 3562 3563\n\t\tmu 0 3 3550 3551 3552\n\t\tf 3 3564 3565 -3564\n\t\tmu 0 3 3553 3554 3555\n\t\tf 3 -3565 3566 3567\n\t\tmu 0 3 3556 3557 3558\n\t\tf 3 3568 3569 -3568\n\t\tmu 0 3 3559 3560 3561\n\t\tf 3 -3569 3570 3571\n\t\tmu 0 3 3562 3563 3564\n\t\tf 3 3572 3573 -3572\n\t\tmu 0 3 3565 3566 3567\n\t\tf 3 -3573 3574 3575\n\t\tmu 0 3 3568 3569 3570\n\t\tf 3 -3505 3576 -3576\n\t\tmu 0 3 3571 3572 3573\n\t\tf 3 3577 -3551 3578\n\t\tmu 0 3 3574 3575 3576\n\t\tf 3 3579 3580 -3579\n\t\tmu 0 3 3577 3578 3579\n\t\tf 3 -3578 3581 3582\n\t\tmu 0 3 3580 3581 3582\n\t\tf 3 3583 -3555 -3583\n\t\tmu 0 3 3583 3584 3585\n\t\tf 3 3584 -3582 3585\n\t\tmu 0 3 3586 3587 3588\n\t\tf 3 3586 3587 -3586\n\t\tmu 0 3 3589 3590 3591\n\t\tf 3 -3587 -3581 3588\n\t\tmu 0 3 3592 3593 3594\n\t\tf 3 3589 3590 -3589\n\t\tmu 0 3 3595 3596 3597\n\t\tf 3 -3584 3591 3592\n\t\tmu 0 3 3598 3599 3600\n\t\tf 3 3593 -3559 -3593\n\t\tmu 0 3 3601 3602 3603\n\t\tf 3 -3585 3594 3595\n\t\tmu 0 3 3604 3605 3606\n\t\tf 3 -3596 3596 -3592\n\t\tmu 0 3 3607 3608 3609\n\t\tf 3 3597 3598 -3597\n\t\tmu 0 3 3610 3611 3612\n\t\tf 3 3599 -3594 3600\n\t\tmu 0 3 3613 3614 3615\n\t\tf 3 3601 3602 -3600\n\t\tmu 0 3 3616 3617 3618\n\t\tf 3 3603 -3563 -3603\n\t\tmu 0 3 3619 3620 3621\n\t\tf 3 -3580 -3547 3604\n\t\tmu 0 3 3622 3623 3624\n\t\tf 3 3605 3606 -3605\n\t\tmu 0 3 3625 3626 3627\n\t\tf 3 -3590 -3607 3607\n\t\tmu 0 3 3628 3629 3630\n\t\tf 3 -3606 -3543 3608\n\t\tmu 0 3 3631 3632 3633\n\t\tf 3 3609 3610 -3609\n\t\tmu 0 3 3634 3635 3636\n\t\tf 3 -3610 -3539 3611\n\t\tmu 0 3 3637 3638 3639\n\t\tf 3 3612 3613 -3612\n\t\tmu 0 3 3640 3641 3642\n\t\tf 3 -3613 -3535 3614\n\t\tmu 0 3 3643 3644 3645\n\t\tf 3 3615 3616 -3615\n\t\tmu 0 3 3646 3647 3648\n\t\tf 3 -3616 -3531 3617\n\t\tmu 0 3 3649 3650 3651\n\t\tf 3 3618 3619 -3618\n\t\tmu 0 3 3652 3653 3654\n\t\tf 3 3620 -3619 3621\n\t\tmu 0 3 3655 3656 3657\n\t\tf 3 -3622 -3527 3622\n\t\tmu 0 3 3658 3659 3660\n\t\tf 3 -3623 3623 3624\n\t\tmu 0 3 3661 3662 3663\n\t\tf 3 -3624 -3523 3625\n\t\tmu 0 3 3664 3665 3666\n\t\tf 3 3626 3627 -3626\n\t\tmu 0 3 3667 3668 3669\n\t\tf 3 -3627 -3519 3628\n\t\tmu 0 3 3670 3671 3672\n\t\tf 3 3629 3630 -3629\n\t\tmu 0 3 3673 3674 3675\n\t\tf 3 -3630 -3515 3631\n\t\tmu 0 3 3676 3677 3678\n\t\tf 3 3632 3633 -3632\n\t\tmu 0 3 3679 3680 3681\n\t\tf 3 -3633 -3511 3634\n\t\tmu 0 3 3682 3683 3684\n\t\tf 3 3635 3636 -3635\n\t\tmu 0 3 3685 3686 3687\n\t\tf 3 -3636 -3507 3637\n\t\tmu 0 3 3688 3689 3690\n\t\tf 3 3638 3639 -3638\n\t\tmu 0 3 3691 3692 3693\n\t\tf 3 3640 -3639 3641\n\t\tmu 0 3 3694 3695 3696;\n\tsetAttr \".fc[2000:2499]\"\n\t\tf 3 -3642 3642 3643\n\t\tmu 0 3 3697 3698 3699\n\t\tf 3 -3506 3644 -3643\n\t\tmu 0 3 3700 3701 3702\n\t\tf 3 -3644 3645 3646\n\t\tmu 0 3 3703 3704 3705\n\t\tf 3 3647 -3640 3648\n\t\tmu 0 3 3706 3707 3708\n\t\tf 3 3649 3650 -3649\n\t\tmu 0 3 3709 3710 3711\n\t\tf 3 -3650 -3641 3651\n\t\tmu 0 3 3712 3713 3714\n\t\tf 3 3652 3653 -3652\n\t\tmu 0 3 3715 3716 3717\n\t\tf 3 -3648 3654 3655\n\t\tmu 0 3 3718 3719 3720\n\t\tf 3 3656 -3637 -3656\n\t\tmu 0 3 3721 3722 3723\n\t\tf 3 -3657 3657 3658\n\t\tmu 0 3 3724 3725 3726\n\t\tf 3 3659 -3634 -3659\n\t\tmu 0 3 3727 3728 3729\n\t\tf 3 -3660 3660 3661\n\t\tmu 0 3 3730 3731 3732\n\t\tf 3 3662 -3654 3663\n\t\tmu 0 3 3733 3734 3735\n\t\tf 3 3664 3665 -3664\n\t\tmu 0 3 3736 3737 3738\n\t\tf 3 3666 -3651 3667\n\t\tmu 0 3 3739 3740 3741\n\t\tf 3 -3663 3668 -3668\n\t\tmu 0 3 3742 3743 3744\n\t\tf 3 3669 -3669 3670\n\t\tmu 0 3 3745 3746 3747\n\t\tf 3 3671 3672 -3671\n\t\tmu 0 3 3748 3749 3750\n\t\tf 3 -3672 -3666 3673\n\t\tmu 0 3 3751 3752 3753\n\t\tf 3 3674 3675 -3674\n\t\tmu 0 3 3754 3755 3756\n\t\tf 3 3676 -3655 3677\n\t\tmu 0 3 3757 3758 3759\n\t\tf 3 -3667 3678 -3678\n\t\tmu 0 3 3760 3761 3762\n\t\tf 3 -3670 3679 3680\n\t\tmu 0 3 3763 3764 3765\n\t\tf 3 3681 -3679 -3681\n\t\tmu 0 3 3766 3767 3768\n\t\tf 3 3682 -3658 3683\n\t\tmu 0 3 3769 3770 3771\n\t\tf 3 -3677 3684 -3684\n\t\tmu 0 3 3772 3773 3774\n\t\tf 3 -3682 3685 3686\n\t\tmu 0 3 3775 3776 3777\n\t\tf 3 3687 -3685 -3687\n\t\tmu 0 3 3778 3779 3780\n\t\tf 3 3688 -3661 3689\n\t\tmu 0 3 3781 3782 3783\n\t\tf 3 -3683 3690 -3690\n\t\tmu 0 3 3784 3785 3786\n\t\tf 3 -3688 3691 3692\n\t\tmu 0 3 3787 3788 3789\n\t\tf 3 3693 -3691 -3693\n\t\tmu 0 3 3790 3791 3792\n\t\tf 3 -3694 3694 3695\n\t\tmu 0 3 3793 3794 3795\n\t\tf 3 3696 3697 -3696\n\t\tmu 0 3 3796 3797 3798\n\t\tf 3 3698 -3698 3699\n\t\tmu 0 3 3799 3800 3801\n\t\tf 3 -3689 -3699 3700\n\t\tmu 0 3 3802 3803 3804\n\t\tf 3 3701 3702 -3701\n\t\tmu 0 3 3805 3806 3807\n\t\tf 3 3703 3704 -3702\n\t\tmu 0 3 3808 3809 3810\n\t\tf 3 -3705 3705 3706\n\t\tmu 0 3 3811 3812 3813\n\t\tf 3 3707 3708 -3707\n\t\tmu 0 3 3814 3815 3816\n\t\tf 3 -3708 3709 3710\n\t\tmu 0 3 3817 3818 3819\n\t\tf 3 3711 -3711 3712\n\t\tmu 0 3 3820 3821 3822\n\t\tf 3 3713 3714 -3713\n\t\tmu 0 3 3823 3824 3825\n\t\tf 3 -3712 -3625 3715\n\t\tmu 0 3 3826 3827 3828\n\t\tf 3 3716 3717 -3716\n\t\tmu 0 3 3829 3830 3831\n\t\tf 3 -3709 -3718 3718\n\t\tmu 0 3 3832 3833 3834\n\t\tf 3 -3717 -3628 3719\n\t\tmu 0 3 3835 3836 3837\n\t\tf 3 3720 3721 -3720\n\t\tmu 0 3 3838 3839 3840\n\t\tf 3 -3703 -3719 -3722\n\t\tmu 0 3 3841 3842 3843\n\t\tf 3 -3721 -3631 -3662\n\t\tmu 0 3 3844 3845 3846\n\t\tf 3 -3715 3722 3723\n\t\tmu 0 3 3847 3848 3849\n\t\tf 3 3724 -3621 -3724\n\t\tmu 0 3 3850 3851 3852\n\t\tf 3 -3725 3725 3726\n\t\tmu 0 3 3853 3854 3855\n\t\tf 3 3727 -3620 -3727\n\t\tmu 0 3 3856 3857 3858\n\t\tf 3 -3728 3728 3729\n\t\tmu 0 3 3859 3860 3861\n\t\tf 3 3730 -3617 -3730\n\t\tmu 0 3 3862 3863 3864\n\t\tf 3 -3731 3731 3732\n\t\tmu 0 3 3865 3866 3867\n\t\tf 3 3733 -3614 -3733\n\t\tmu 0 3 3868 3869 3870\n\t\tf 3 -3734 3734 3735\n\t\tmu 0 3 3871 3872 3873\n\t\tf 3 3736 -3611 -3736\n\t\tmu 0 3 3874 3875 3876\n\t\tf 3 -3737 3737 -3608\n\t\tmu 0 3 3877 3878 3879\n\t\tf 3 3738 -3729 3739\n\t\tmu 0 3 3880 3881 3882\n\t\tf 3 3740 3741 -3740\n\t\tmu 0 3 3883 3884 3885\n\t\tf 3 3742 -3742 3743\n\t\tmu 0 3 3886 3887 3888\n\t\tf 3 3744 3745 -3744\n\t\tmu 0 3 3889 3890 3891\n\t\tf 3 3746 -3732 3747\n\t\tmu 0 3 3892 3893 3894\n\t\tf 3 -3739 3748 -3748\n\t\tmu 0 3 3895 3896 3897\n\t\tf 3 -3743 3749 3750\n\t\tmu 0 3 3898 3899 3900\n\t\tf 3 3751 -3749 -3751\n\t\tmu 0 3 3901 3902 3903\n\t\tf 3 3752 -3735 3753\n\t\tmu 0 3 3904 3905 3906\n\t\tf 3 -3747 3754 -3754\n\t\tmu 0 3 3907 3908 3909\n\t\tf 3 -3752 3755 3756\n\t\tmu 0 3 3910 3911 3912\n\t\tf 3 3757 -3755 -3757\n\t\tmu 0 3 3913 3914 3915\n\t\tf 3 3758 -3738 3759\n\t\tmu 0 3 3916 3917 3918\n\t\tf 3 -3753 3760 -3760\n\t\tmu 0 3 3919 3920 3921\n\t\tf 3 -3759 3761 3762\n\t\tmu 0 3 3922 3923 3924\n\t\tf 3 3763 -3591 -3763\n\t\tmu 0 3 3925 3926 3927\n\t\tf 3 -3764 3764 3765\n\t\tmu 0 3 3928 3929 3930\n\t\tf 3 3766 -3588 -3766\n\t\tmu 0 3 3931 3932 3933\n\t\tf 3 3767 -3765 3768\n\t\tmu 0 3 3934 3935 3936\n\t\tf 3 3769 3770 -3769\n\t\tmu 0 3 3937 3938 3939\n\t\tf 3 -3770 -3762 3771\n\t\tmu 0 3 3940 3941 3942\n\t\tf 3 3772 3773 -3772\n\t\tmu 0 3 3943 3944 3945\n\t\tf 3 -3758 3774 3775\n\t\tmu 0 3 3946 3947 3948\n\t\tf 3 -3773 -3761 -3776\n\t\tmu 0 3 3949 3950 3951\n\t\tf 3 -3767 3776 3777\n\t\tmu 0 3 3952 3953 3954\n\t\tf 3 3778 -3595 -3778\n\t\tmu 0 3 3955 3956 3957\n\t\tf 3 3779 -3777 3780\n\t\tmu 0 3 3958 3959 3960\n\t\tf 3 -3768 3781 -3781\n\t\tmu 0 3 3961 3962 3963\n\t\tf 3 -3745 3782 3783\n\t\tmu 0 3 3964 3965 3966\n\t\tf 3 3784 3785 -3783\n\t\tmu 0 3 3967 3968 3969\n\t\tf 3 3786 -3785 3787\n\t\tmu 0 3 3970 3971 3972\n\t\tf 3 -3741 3788 -3788\n\t\tmu 0 3 3973 3974 3975\n\t\tf 3 3789 -3789 -3726\n\t\tmu 0 3 3976 3977 3978\n\t\tf 3 3790 3791 -3787\n\t\tmu 0 3 3979 3980 3981\n\t\tf 3 3792 -3790 -3723\n\t\tmu 0 3 3982 3983 3984\n\t\tf 3 3793 -3791 3794\n\t\tmu 0 3 3985 3986 3987\n\t\tf 3 -3793 3795 -3795\n\t\tmu 0 3 3988 3989 3990\n\t\tf 3 3796 -3796 -3714\n\t\tmu 0 3 3991 3992 3993\n\t\tf 3 3797 3798 -3784\n\t\tmu 0 3 3994 3995 3996\n\t\tf 3 3799 3800 3801\n\t\tmu 0 3 3997 3998 3999\n\t\tf 3 3802 3803 -3802\n\t\tmu 0 3 4000 4001 4002\n\t\tf 3 -3803 3804 3805\n\t\tmu 0 3 4003 4004 4005\n\t\tf 3 3806 3807 -3806\n\t\tmu 0 3 4006 4007 4008\n\t\tf 3 -3807 3808 3809\n\t\tmu 0 3 4009 4010 4011\n\t\tf 3 3810 3811 -3810\n\t\tmu 0 3 4012 4013 4014\n\t\tf 3 -3800 3812 3813\n\t\tmu 0 3 4015 4016 4017\n\t\tf 3 3814 3815 -3814\n\t\tmu 0 3 4018 4019 4020\n\t\tf 3 -3815 3816 3817\n\t\tmu 0 3 4021 4022 4023\n\t\tf 3 3818 3819 -3818\n\t\tmu 0 3 4024 4025 4026\n\t\tf 3 -3819 3820 3821\n\t\tmu 0 3 4027 4028 4029\n\t\tf 3 3822 3823 -3822\n\t\tmu 0 3 4030 4031 4032\n\t\tf 3 -3823 3824 3825\n\t\tmu 0 3 4033 4034 4035\n\t\tf 3 3826 3827 -3826\n\t\tmu 0 3 4036 4037 4038\n\t\tf 3 -3827 3828 3829\n\t\tmu 0 3 4039 4040 4041\n\t\tf 3 3830 3831 -3830\n\t\tmu 0 3 4042 4043 4044\n\t\tf 3 -3831 3832 3833\n\t\tmu 0 3 4045 4046 4047\n\t\tf 3 3834 3835 -3834\n\t\tmu 0 3 4048 4049 4050\n\t\tf 3 -3835 3836 3837\n\t\tmu 0 3 4051 4052 4053\n\t\tf 3 3838 3839 -3838\n\t\tmu 0 3 4054 4055 4056\n\t\tf 3 -3839 3840 3841\n\t\tmu 0 3 4057 4058 4059\n\t\tf 3 3842 3843 -3842\n\t\tmu 0 3 4060 4061 4062\n\t\tf 3 -3843 3844 3845\n\t\tmu 0 3 4063 4064 4065\n\t\tf 3 3846 3847 -3846\n\t\tmu 0 3 4066 4067 4068\n\t\tf 3 -3847 3848 3849\n\t\tmu 0 3 4069 4070 4071\n\t\tf 3 3850 3851 -3850\n\t\tmu 0 3 4072 4073 4074\n\t\tf 3 -3851 3852 3853\n\t\tmu 0 3 4075 4076 4077\n\t\tf 3 3854 3855 -3854\n\t\tmu 0 3 4078 4079 4080\n\t\tf 3 -3855 3856 3857\n\t\tmu 0 3 4081 4082 4083\n\t\tf 3 3858 -3858 3859\n\t\tmu 0 3 4084 4085 4086\n\t\tf 3 3860 3861 -3859\n\t\tmu 0 3 4087 4088 4089\n\t\tf 3 -3861 3862 3863\n\t\tmu 0 3 4090 4091 4092\n\t\tf 3 3864 3865 -3864\n\t\tmu 0 3 4093 4094 4095\n\t\tf 3 3866 3867 3868\n\t\tmu 0 3 4096 4097 4098\n\t\tf 3 3869 3870 -3869\n\t\tmu 0 3 4099 4100 4101\n\t\tf 3 -3870 3871 3872\n\t\tmu 0 3 4102 4103 4104\n\t\tf 3 3873 3874 -3873\n\t\tmu 0 3 4105 4106 4107\n\t\tf 3 -3874 3875 3876\n\t\tmu 0 3 4108 4109 4110\n\t\tf 3 3877 3878 -3877\n\t\tmu 0 3 4111 4112 4113\n\t\tf 3 -3878 3879 3880\n\t\tmu 0 3 4114 4115 4116\n\t\tf 3 3881 3882 -3881\n\t\tmu 0 3 4117 4118 4119\n\t\tf 3 -3882 3883 3884\n\t\tmu 0 3 4120 4121 4122\n\t\tf 3 3885 3886 -3885\n\t\tmu 0 3 4123 4124 4125\n\t\tf 3 -3886 3887 3888\n\t\tmu 0 3 4126 4127 4128\n\t\tf 3 3889 3890 -3889\n\t\tmu 0 3 4129 4130 4131\n\t\tf 3 -3890 3891 3892\n\t\tmu 0 3 4132 4133 4134\n\t\tf 3 3893 3894 -3893\n\t\tmu 0 3 4135 4136 4137\n\t\tf 3 -3894 3895 3896\n\t\tmu 0 3 4138 4139 4140\n\t\tf 3 3897 3898 -3897\n\t\tmu 0 3 4141 4142 4143\n\t\tf 3 -3898 3899 3900\n\t\tmu 0 3 4144 4145 4146\n\t\tf 3 3901 3902 -3901\n\t\tmu 0 3 4147 4148 4149\n\t\tf 3 -3902 3903 3904\n\t\tmu 0 3 4150 4151 4152\n\t\tf 3 3905 3906 -3905\n\t\tmu 0 3 4153 4154 4155\n\t\tf 3 -3906 3907 3908\n\t\tmu 0 3 4156 4157 4158\n\t\tf 3 3909 3910 -3909\n\t\tmu 0 3 4159 4160 4161\n\t\tf 3 -3910 3911 3912\n\t\tmu 0 3 4162 4163 4164\n\t\tf 3 3913 3914 -3913\n\t\tmu 0 3 4165 4166 4167\n\t\tf 3 -3914 3915 3916\n\t\tmu 0 3 4168 4169 4170\n\t\tf 3 3917 3918 -3917\n\t\tmu 0 3 4171 4172 4173\n\t\tf 3 -3918 3919 3920\n\t\tmu 0 3 4174 4175 4176\n\t\tf 3 3921 3922 -3921\n\t\tmu 0 3 4177 4178 4179\n\t\tf 3 3923 -3923 3924\n\t\tmu 0 3 4180 4181 4182\n\t\tf 3 3925 3926 -3925\n\t\tmu 0 3 4183 4184 4185\n\t\tf 3 -3924 3927 3928\n\t\tmu 0 3 4186 4187 4188\n\t\tf 3 3929 -3919 -3929\n\t\tmu 0 3 4189 4190 4191\n\t\tf 3 -3930 3930 3931\n\t\tmu 0 3 4192 4193 4194\n\t\tf 3 3932 -3915 -3932\n\t\tmu 0 3 4195 4196 4197\n\t\tf 3 -3933 3933 3934\n\t\tmu 0 3 4198 4199 4200\n\t\tf 3 3935 -3911 -3935\n\t\tmu 0 3 4201 4202 4203\n\t\tf 3 -3936 3936 3937\n\t\tmu 0 3 4204 4205 4206\n\t\tf 3 3938 -3907 -3938\n\t\tmu 0 3 4207 4208 4209\n\t\tf 3 -3939 3939 3940\n\t\tmu 0 3 4210 4211 4212\n\t\tf 3 3941 -3903 -3941\n\t\tmu 0 3 4213 4214 4215\n\t\tf 3 -3942 3942 3943\n\t\tmu 0 3 4216 4217 4218\n\t\tf 3 3944 -3899 -3944\n\t\tmu 0 3 4219 4220 4221\n\t\tf 3 -3945 3945 3946\n\t\tmu 0 3 4222 4223 4224\n\t\tf 3 3947 -3895 -3947\n\t\tmu 0 3 4225 4226 4227\n\t\tf 3 -3948 3948 3949\n\t\tmu 0 3 4228 4229 4230\n\t\tf 3 3950 -3891 -3950\n\t\tmu 0 3 4231 4232 4233\n\t\tf 3 -3951 3951 3952\n\t\tmu 0 3 4234 4235 4236\n\t\tf 3 3953 -3887 -3953\n\t\tmu 0 3 4237 4238 4239\n\t\tf 3 -3954 3954 3955\n\t\tmu 0 3 4240 4241 4242\n\t\tf 3 3956 -3883 -3956\n\t\tmu 0 3 4243 4244 4245\n\t\tf 3 -3957 3957 3958\n\t\tmu 0 3 4246 4247 4248\n\t\tf 3 3959 -3879 -3959\n\t\tmu 0 3 4249 4250 4251\n\t\tf 3 -3960 3960 3961\n\t\tmu 0 3 4252 4253 4254\n\t\tf 3 3962 -3875 -3962\n\t\tmu 0 3 4255 4256 4257\n\t\tf 3 -3604 3963 3964\n\t\tmu 0 3 4258 4259 4260\n\t\tf 3 3965 -3567 -3965\n\t\tmu 0 3 4261 4262 4263\n\t\tf 3 -3966 3966 3967\n\t\tmu 0 3 4264 4265 4266\n\t\tf 3 3968 -3571 -3968\n\t\tmu 0 3 4267 4268 4269\n\t\tf 3 -3969 3969 3970\n\t\tmu 0 3 4270 4271 4272\n\t\tf 3 -3645 -3575 -3971\n\t\tmu 0 3 4273 4274 4275\n\t\tf 3 3971 3972 3973\n\t\tmu 0 3 4276 4277 4278\n\t\tf 3 3974 3975 -3974\n\t\tmu 0 3 4279 4280 4281\n\t\tf 3 3976 3977 3978\n\t\tmu 0 3 4282 4283 4284\n\t\tf 3 -3976 3979 -3979\n\t\tmu 0 3 4285 4286 4287\n\t\tf 3 3980 3981 3982\n\t\tmu 0 3 4288 4289 4290\n\t\tf 3 -3977 3983 -3983\n\t\tmu 0 3 4291 4292 4293\n\t\tf 3 3984 3985 3986\n\t\tmu 0 3 4294 4295 4296\n\t\tf 3 -3981 3987 -3987\n\t\tmu 0 3 4297 4298 4299\n\t\tf 3 3988 3989 3990\n\t\tmu 0 3 4300 4301 4302\n\t\tf 3 -3985 3991 -3991\n\t\tmu 0 3 4303 4304 4305\n\t\tf 3 3992 3993 3994\n\t\tmu 0 3 4306 4307 4308\n\t\tf 3 -3989 3995 -3995\n\t\tmu 0 3 4309 4310 4311\n\t\tf 3 3996 3997 3998\n\t\tmu 0 3 4312 4313 4314\n\t\tf 3 -3993 3999 -3999\n\t\tmu 0 3 4315 4316 4317\n\t\tf 3 4000 4001 4002\n\t\tmu 0 3 4318 4319 4320\n\t\tf 3 -3997 4003 -4003\n\t\tmu 0 3 4321 4322 4323\n\t\tf 3 4004 4005 4006\n\t\tmu 0 3 4324 4325 4326\n\t\tf 3 -4001 4007 -4007\n\t\tmu 0 3 4327 4328 4329\n\t\tf 3 4008 4009 4010\n\t\tmu 0 3 4330 4331 4332\n\t\tf 3 -4005 4011 -4011\n\t\tmu 0 3 4333 4334 4335\n\t\tf 3 4012 4013 4014\n\t\tmu 0 3 4336 4337 4338\n\t\tf 3 -4009 4015 -4015\n\t\tmu 0 3 4339 4340 4341\n\t\tf 3 4016 4017 4018\n\t\tmu 0 3 4342 4343 4344\n\t\tf 3 -4013 4019 -4019\n\t\tmu 0 3 4345 4346 4347\n\t\tf 3 4020 4021 4022\n\t\tmu 0 3 4348 4349 4350\n\t\tf 3 -4017 4023 -4023\n\t\tmu 0 3 4351 4352 4353\n\t\tf 3 4024 4025 4026\n\t\tmu 0 3 4354 4355 4356\n\t\tf 3 4027 -4021 -4027\n\t\tmu 0 3 4357 4358 4359\n\t\tf 3 4028 4029 4030\n\t\tmu 0 3 4360 4361 4362\n\t\tf 3 4031 -4026 -4031\n\t\tmu 0 3 4363 4364 4365\n\t\tf 3 4032 4033 4034\n\t\tmu 0 3 4366 4367 4368\n\t\tf 3 -4030 4035 -4035\n\t\tmu 0 3 4369 4370 4371\n\t\tf 3 4036 4037 4038\n\t\tmu 0 3 4372 4373 4374\n\t\tf 3 -4033 4039 -4039\n\t\tmu 0 3 4375 4376 4377\n\t\tf 3 4040 4041 4042\n\t\tmu 0 3 4378 4379 4380\n\t\tf 3 -4037 4043 -4043\n\t\tmu 0 3 4381 4382 4383\n\t\tf 3 -3973 4044 4045\n\t\tmu 0 3 4384 4385 4386\n\t\tf 3 -4041 4046 -4046\n\t\tmu 0 3 4387 4388 4389\n\t\tf 3 4047 4048 4049\n\t\tmu 0 3 4390 4391 4392\n\t\tf 3 4050 -4048 4051\n\t\tmu 0 3 4393 4394 4395\n\t\tf 3 4052 4053 -4052\n\t\tmu 0 3 4396 4397 4398\n\t\tf 3 4054 -4053 4055\n\t\tmu 0 3 4399 4400 4401\n\t\tf 3 4056 4057 -4056\n\t\tmu 0 3 4402 4403 4404\n\t\tf 3 4058 -4057 4059\n\t\tmu 0 3 4405 4406 4407\n\t\tf 3 4060 4061 -4060\n\t\tmu 0 3 4408 4409 4410\n\t\tf 3 4062 4063 -4061\n\t\tmu 0 3 4411 4412 4413\n\t\tf 3 4064 4065 -4064\n\t\tmu 0 3 4414 4415 4416\n\t\tf 3 4066 4067 -4063\n\t\tmu 0 3 4417 4418 4419\n\t\tf 3 4068 -4067 4069\n\t\tmu 0 3 4420 4421 4422\n\t\tf 3 4070 4071 -4070\n\t\tmu 0 3 4423 4424 4425\n\t\tf 3 4072 -4071 4073\n\t\tmu 0 3 4426 4427 4428\n\t\tf 3 4074 4075 -4074\n\t\tmu 0 3 4429 4430 4431\n\t\tf 3 4076 -4075 4077\n\t\tmu 0 3 4432 4433 4434\n\t\tf 3 4078 4079 -4078\n\t\tmu 0 3 4435 4436 4437\n\t\tf 3 4080 -4079 4081\n\t\tmu 0 3 4438 4439 4440\n\t\tf 3 4082 4083 -4082\n\t\tmu 0 3 4441 4442 4443\n\t\tf 3 4084 -4083 -4050\n\t\tmu 0 3 4444 4445 4446\n\t\tf 3 4085 -3868 4086\n\t\tmu 0 3 4447 4448 4449\n\t\tf 3 4087 4088 -4087\n\t\tmu 0 3 4450 4451 4452\n\t\tf 3 -4088 4089 4090\n\t\tmu 0 3 4453 4454 4455\n\t\tf 3 4091 4092 -4091\n\t\tmu 0 3 4456 4457 4458\n\t\tf 3 4093 -4092 4094\n\t\tmu 0 3 4459 4460 4461\n\t\tf 3 -4086 4095 4096\n\t\tmu 0 3 4462 4463 4464\n\t\tf 3 4097 -3872 -4097\n\t\tmu 0 3 4465 4466 4467\n\t\tf 3 -4098 4098 4099\n\t\tmu 0 3 4468 4469 4470\n\t\tf 3 4100 -3876 -4100\n\t\tmu 0 3 4471 4472 4473\n\t\tf 3 -4101 4101 4102\n\t\tmu 0 3 4474 4475 4476\n\t\tf 3 4103 -3880 -4103\n\t\tmu 0 3 4477 4478 4479\n\t\tf 3 -4104 4104 4105\n\t\tmu 0 3 4480 4481 4482\n\t\tf 3 4106 -3884 -4106\n\t\tmu 0 3 4483 4484 4485\n\t\tf 3 -4107 4107 4108\n\t\tmu 0 3 4486 4487 4488\n\t\tf 3 4109 -3888 -4109\n\t\tmu 0 3 4489 4490 4491\n\t\tf 3 -4110 4110 4111\n\t\tmu 0 3 4492 4493 4494\n\t\tf 3 4112 -3892 -4112\n\t\tmu 0 3 4495 4496 4497\n\t\tf 3 -4113 4113 4114\n\t\tmu 0 3 4498 4499 4500\n\t\tf 3 4115 -3896 -4115\n\t\tmu 0 3 4501 4502 4503\n\t\tf 3 -4116 4116 4117\n\t\tmu 0 3 4504 4505 4506\n\t\tf 3 4118 -3900 -4118\n\t\tmu 0 3 4507 4508 4509\n\t\tf 3 -4119 4119 4120\n\t\tmu 0 3 4510 4511 4512\n\t\tf 3 4121 -3904 -4121\n\t\tmu 0 3 4513 4514 4515\n\t\tf 3 -4122 4122 4123\n\t\tmu 0 3 4516 4517 4518\n\t\tf 3 4124 -3908 -4124\n\t\tmu 0 3 4519 4520 4521\n\t\tf 3 -4125 4125 4126\n\t\tmu 0 3 4522 4523 4524\n\t\tf 3 4127 -3912 -4127\n\t\tmu 0 3 4525 4526 4527\n\t\tf 3 -4128 4128 4129\n\t\tmu 0 3 4528 4529 4530\n\t\tf 3 4130 -3916 -4130\n\t\tmu 0 3 4531 4532 4533\n\t\tf 3 -4131 4131 4132\n\t\tmu 0 3 4534 4535 4536\n\t\tf 3 4133 -3920 -4133\n\t\tmu 0 3 4537 4538 4539\n\t\tf 3 4134 4135 4136\n\t\tmu 0 3 4540 4541 4542\n\t\tf 3 4137 4138 -4137\n\t\tmu 0 3 4543 4544 4545\n\t\tf 3 -4139 4139 4140\n\t\tmu 0 3 4546 4547 4548\n\t\tf 3 4141 4142 -4141\n\t\tmu 0 3 4549 4550 4551\n\t\tf 3 4143 -4142 4144\n\t\tmu 0 3 4552 4553 4554\n\t\tf 3 4145 4146 -4145\n\t\tmu 0 3 4555 4556 4557\n\t\tf 3 4147 -4147 4148\n\t\tmu 0 3 4558 4559 4560\n\t\tf 3 4149 4150 -4149\n\t\tmu 0 3 4561 4562 4563\n\t\tf 3 4151 -4151 4152\n\t\tmu 0 3 4564 4565 4566\n\t\tf 3 4153 4154 -4153\n\t\tmu 0 3 4567 4568 4569\n\t\tf 3 4155 -4155 4156\n\t\tmu 0 3 4570 4571 4572\n\t\tf 3 4157 4158 -4157\n\t\tmu 0 3 4573 4574 4575\n\t\tf 3 4159 -4136 4160\n\t\tmu 0 3 4576 4577 4578\n\t\tf 3 4161 4162 -4161\n\t\tmu 0 3 4579 4580 4581\n\t\tf 3 4163 -4159 4164\n\t\tmu 0 3 4582 4583 4584\n\t\tf 3 4165 4166 -4165\n\t\tmu 0 3 4585 4586 4587\n\t\tf 3 4167 4168 4169\n\t\tmu 0 3 4588 4589 4590\n\t\tf 3 4170 4171 -4170\n\t\tmu 0 3 4591 4592 4593\n\t\tf 3 4172 -4172 4173\n\t\tmu 0 3 4594 4595 4596\n\t\tf 3 4174 4175 -4174\n\t\tmu 0 3 4597 4598 4599\n\t\tf 3 4176 -4176 4177\n\t\tmu 0 3 4600 4601 4602\n\t\tf 3 4178 4179 -4178\n\t\tmu 0 3 4603 4604 4605\n\t\tf 3 4180 -4180 4181\n\t\tmu 0 3 4606 4607 4608\n\t\tf 3 4182 4183 -4182\n\t\tmu 0 3 4609 4610 4611\n\t\tf 3 -4184 4184 4185\n\t\tmu 0 3 4612 4613 4614\n\t\tf 3 4186 4187 -4186\n\t\tmu 0 3 4615 4616 4617\n\t\tf 3 4188 -4169 4189\n\t\tmu 0 3 4618 4619 4620\n\t\tf 3 4190 4191 -4190\n\t\tmu 0 3 4621 4622 4623\n\t\tf 3 4192 4193 4194\n\t\tmu 0 3 4624 4625 4626\n\t\tf 3 4195 4196 -4195\n\t\tmu 0 3 4627 4628 4629\n\t\tf 3 -4197 4197 4198\n\t\tmu 0 3 4630 4631 4632\n\t\tf 3 4199 4200 -4199\n\t\tmu 0 3 4633 4634 4635\n\t\tf 3 4201 -4200 4202\n\t\tmu 0 3 4636 4637 4638\n\t\tf 3 4203 4204 -4202\n\t\tmu 0 3 4639 4640 4641\n\t\tf 3 4205 4206 -4204\n\t\tmu 0 3 4642 4643 4644\n\t\tf 3 4207 4208 -4206\n\t\tmu 0 3 4645 4646 4647\n\t\tf 3 -4194 4209 4210\n\t\tmu 0 3 4648 4649 4650\n\t\tf 3 4211 4212 -4211\n\t\tmu 0 3 4651 4652 4653\n\t\tf 3 -4212 4213 4214\n\t\tmu 0 3 4654 4655 4656\n\t\tf 3 4215 4216 -4215\n\t\tmu 0 3 4657 4658 4659\n\t\tf 3 -4216 4217 4218\n\t\tmu 0 3 4660 4661 4662\n\t\tf 3 4219 4220 -4219\n\t\tmu 0 3 4663 4664 4665\n\t\tf 3 -4220 4221 4222\n\t\tmu 0 3 4666 4667 4668\n\t\tf 3 4223 4224 -4223\n\t\tmu 0 3 4669 4670 4671\n\t\tf 3 4225 -4224 4226\n\t\tmu 0 3 4672 4673 4674\n\t\tf 3 4227 4228 -4227\n\t\tmu 0 3 4675 4676 4677\n\t\tf 3 4229 -4229 4230\n\t\tmu 0 3 4678 4679 4680\n\t\tf 3 4231 4232 -4231\n\t\tmu 0 3 4681 4682 4683\n\t\tf 3 -4233 4233 4234\n\t\tmu 0 3 4684 4685 4686\n\t\tf 3 4235 4236 -4235\n\t\tmu 0 3 4687 4688 4689\n\t\tf 3 -4236 4237 4238\n\t\tmu 0 3 4690 4691 4692\n\t\tf 3 4239 4240 -4239\n\t\tmu 0 3 4693 4694 4695\n\t\tf 3 -4240 4241 4242\n\t\tmu 0 3 4696 4697 4698\n\t\tf 3 4243 4244 -4243\n\t\tmu 0 3 4699 4700 4701\n\t\tf 3 -4244 4245 4246\n\t\tmu 0 3 4702 4703 4704\n\t\tf 3 4247 4248 -4247\n\t\tmu 0 3 4705 4706 4707\n\t\tf 3 -4248 4249 4250\n\t\tmu 0 3 4708 4709 4710\n\t\tf 3 4251 4252 -4251\n\t\tmu 0 3 4711 4712 4713\n\t\tf 3 -4252 4253 4254\n\t\tmu 0 3 4714 4715 4716\n\t\tf 3 4255 4256 -4255\n\t\tmu 0 3 4717 4718 4719\n\t\tf 3 4257 -4256 4258\n\t\tmu 0 3 4720 4721 4722\n\t\tf 3 4259 4260 -4259\n\t\tmu 0 3 4723 4724 4725\n\t\tf 3 4261 4262 4263\n\t\tmu 0 3 4726 4727 4728\n\t\tf 3 -4264 4264 4265\n\t\tmu 0 3 4729 4730 4731\n\t\tf 3 -4266 4266 4267\n\t\tmu 0 3 4732 4733 4734\n\t\tf 3 4268 4269 4270\n\t\tmu 0 3 4735 4736 4737\n\t\tf 3 4271 4272 -4271\n\t\tmu 0 3 4738 4739 4740\n\t\tf 3 4273 4274 4275\n\t\tmu 0 3 4741 4742 4743\n\t\tf 3 4276 4277 -4276\n\t\tmu 0 3 4744 4745 4746\n\t\tf 3 -4277 4278 4279\n\t\tmu 0 3 4747 4748 4749\n\t\tf 3 4280 4281 -4280\n\t\tmu 0 3 4750 4751 4752\n\t\tf 3 -4281 4282 4283\n\t\tmu 0 3 4753 4754 4755\n\t\tf 3 4284 4285 -4284\n\t\tmu 0 3 4756 4757 4758\n\t\tf 3 4286 4287 4288\n\t\tmu 0 3 4759 4760 4761\n\t\tf 3 4289 4290 -4289\n\t\tmu 0 3 4762 4763 4764\n\t\tf 3 4291 4292 4293\n\t\tmu 0 3 4765 4766 4767\n\t\tf 3 4294 4295 -4294\n\t\tmu 0 3 4768 4769 4770\n\t\tf 3 -4295 4296 4297\n\t\tmu 0 3 4771 4772 4773\n\t\tf 3 4298 4299 -4298\n\t\tmu 0 3 4774 4775 4776\n\t\tf 3 -4299 4300 4301\n\t\tmu 0 3 4777 4778 4779\n\t\tf 3 4302 4303 -4302\n\t\tmu 0 3 4780 4781 4782\n\t\tf 3 4304 4305 4306\n\t\tmu 0 3 4783 4784 4785\n\t\tf 3 4307 -3833 -4307\n\t\tmu 0 3 4786 4787 4788\n\t\tf 3 4308 -4306 4309\n\t\tmu 0 3 4789 4790 4791\n\t\tf 3 4310 4311 -4309\n\t\tmu 0 3 4792 4793 4794\n\t\tf 3 4312 4313 -4312\n\t\tmu 0 3 4795 4796 4797\n\t\tf 3 -4310 4314 4315\n\t\tmu 0 3 4798 4799 4800\n\t\tf 3 -4316 4316 4317\n\t\tmu 0 3 4801 4802 4803\n\t\tf 3 -4318 4318 4319\n\t\tmu 0 3 4804 4805 4806\n\t\tf 3 4320 4321 4322\n\t\tmu 0 3 4807 4808 4809\n\t\tf 3 4323 4324 -4323\n\t\tmu 0 3 4809 4810 4807\n\t\tf 3 4325 -4324 4326\n\t\tmu 0 3 4811 4810 4809\n\t\tf 3 4327 4328 -4327\n\t\tmu 0 3 4809 4812 4811\n\t\tf 3 4329 -4321 4330\n\t\tmu 0 3 4813 4808 4807\n\t\tf 3 4331 4332 -4331\n\t\tmu 0 3 4807 4814 4813\n\t\tf 3 -4333 4333 4334\n\t\tmu 0 3 4813 4814 4815\n\t\tf 3 4335 4336 -4335\n\t\tmu 0 3 4815 4816 4813\n\t\tf 3 -4329 4337 4338\n\t\tmu 0 3 4811 4812 4817\n\t\tf 3 4339 4340 -4339\n\t\tmu 0 3 4817 4818 4811\n\t\tf 3 4341 -4340 4342\n\t\tmu 0 3 4819 4818 4817\n\t\tf 3 4343 4344 -4343\n\t\tmu 0 3 4817 4820 4819\n\t\tf 3 -4345 4345 4346\n\t\tmu 0 3 4819 4820 4821\n\t\tf 3 4347 4348 -4347\n\t\tmu 0 3 4821 4822 4819\n\t\tf 3 4349 -4348 4350\n\t\tmu 0 3 4823 4822 4821\n\t\tf 3 4351 4352 -4351\n\t\tmu 0 3 4821 4824 4823\n\t\tf 3 -4353 4353 4354\n\t\tmu 0 3 4823 4824 4825\n\t\tf 3 4355 4356 -4355\n\t\tmu 0 3 4825 4826 4823\n\t\tf 3 4357 -4356 4358\n\t\tmu 0 3 4827 4826 4825\n\t\tf 3 4359 4360 -4359\n\t\tmu 0 3 4825 4828 4827\n\t\tf 3 -4361 4361 4362\n\t\tmu 0 3 4827 4828 4829\n\t\tf 3 4363 4364 -4363\n\t\tmu 0 3 4829 4830 4827\n\t\tf 3 4365 -4364 4366\n\t\tmu 0 3 4831 4830 4829\n\t\tf 3 4367 4368 -4367\n\t\tmu 0 3 4829 4832 4831\n\t\tf 3 -4369 4369 4370\n\t\tmu 0 3 4831 4832 4833\n\t\tf 3 4371 4372 -4371\n\t\tmu 0 3 4833 4834 4831\n\t\tf 3 4373 -4372 4374\n\t\tmu 0 3 4835 4834 4833\n\t\tf 3 4375 4376 -4375\n\t\tmu 0 3 4833 4836 4835\n\t\tf 3 -4377 4377 4378\n\t\tmu 0 3 4835 4836 4837\n\t\tf 3 4379 4380 -4379\n\t\tmu 0 3 4837 4838 4835\n\t\tf 3 4381 -4380 4382\n\t\tmu 0 3 4839 4838 4837\n\t\tf 3 4383 -4336 -4383\n\t\tmu 0 3 4837 4840 4839\n\t\tf 3 4384 -4382 4385\n\t\tmu 0 3 4841 4838 4839\n\t\tf 3 -4381 -4385 4386\n\t\tmu 0 3 4835 4838 4841\n\t\tf 3 4387 4388 -4386\n\t\tmu 0 3 4839 4842 4841\n\t\tf 3 4389 -4388 4390\n\t\tmu 0 3 4843 4842 4839\n\t\tf 3 -4334 4391 -4391\n\t\tmu 0 3 4839 4844 4843\n\t\tf 3 4392 4393 -4387\n\t\tmu 0 3 4841 4845 4835\n\t\tf 3 -4394 4394 4395\n\t\tmu 0 3 4835 4845 4846\n\t\tf 3 4396 -4374 -4396\n\t\tmu 0 3 4846 4834 4835\n\t\tf 3 -4373 -4397 4397\n\t\tmu 0 3 4831 4834 4846\n\t\tf 3 4398 4399 -4398\n\t\tmu 0 3 4846 4847 4831\n\t\tf 3 -4400 4400 4401\n\t\tmu 0 3 4831 4847 4848\n\t\tf 3 4402 -4366 -4402\n\t\tmu 0 3 4848 4830 4831\n\t\tf 3 -4365 -4403 4403\n\t\tmu 0 3 4827 4830 4848\n\t\tf 3 4404 4405 -4404\n\t\tmu 0 3 4848 4849 4827\n\t\tf 3 -4406 4406 4407\n\t\tmu 0 3 4827 4849 4850\n\t\tf 3 4408 -4358 -4408\n\t\tmu 0 3 4850 4826 4827\n\t\tf 3 -4357 -4409 4409\n\t\tmu 0 3 4823 4826 4850\n\t\tf 3 4410 4411 -4410\n\t\tmu 0 3 4850 4851 4823\n\t\tf 3 -4412 4412 4413\n\t\tmu 0 3 4823 4851 4852\n\t\tf 3 4414 -4350 -4414\n\t\tmu 0 3 4852 4822 4823\n\t\tf 3 -4349 -4415 4415\n\t\tmu 0 3 4819 4822 4852\n\t\tf 3 4416 4417 -4416\n\t\tmu 0 3 4852 4853 4819\n\t\tf 3 -4418 4418 4419\n\t\tmu 0 3 4819 4853 4854\n\t\tf 3 4420 -4342 -4420\n\t\tmu 0 3 4854 4818 4819\n\t\tf 3 -4421 4421 4422\n\t\tmu 0 3 4818 4854 4855\n\t\tf 3 4423 -4341 -4423\n\t\tmu 0 3 4855 4811 4818\n\t\tf 3 -4424 4424 4425\n\t\tmu 0 3 4811 4855 4856\n\t\tf 3 4426 -4326 -4426\n\t\tmu 0 3 4856 4810 4811\n\t\tf 3 -4325 -4427 4427\n\t\tmu 0 3 4807 4810 4856\n\t\tf 3 4428 4429 -4428\n\t\tmu 0 3 4856 4857 4807\n\t\tf 3 -4430 4430 4431\n\t\tmu 0 3 4807 4857 4858\n\t\tf 3 -4392 -4332 -4432\n\t\tmu 0 3 4858 4814 4807\n\t\tf 3 4432 4433 4434\n\t\tmu 0 3 4859 4860 4861\n\t\tf 3 4435 4436 -4435\n\t\tmu 0 3 4861 4862 4859\n\t\tf 3 4437 -4437 4438\n\t\tmu 0 3 4863 4859 4862\n\t\tf 3 4439 4440 -4439\n\t\tmu 0 3 4862 4864 4863\n\t\tf 3 4441 -4441 4442\n\t\tmu 0 3 4865 4863 4864\n\t\tf 3 4443 4444 -4443\n\t\tmu 0 3 4864 4866 4865\n\t\tf 3 4445 -4445 4446\n\t\tmu 0 3 4867 4865 4866\n\t\tf 3 4447 4448 -4447\n\t\tmu 0 3 4866 4868 4867\n\t\tf 3 4449 -4449 4450\n\t\tmu 0 3 4869 4867 4868\n\t\tf 3 4451 4452 -4451\n\t\tmu 0 3 4868 4870 4869\n\t\tf 3 4453 -4453 4454\n\t\tmu 0 3 4871 4869 4870\n\t\tf 3 4455 4456 -4455\n\t\tmu 0 3 4870 4872 4871\n\t\tf 3 4457 -4457 4458\n\t\tmu 0 3 4873 4871 4872\n\t\tf 3 4459 4460 -4459\n\t\tmu 0 3 4872 4874 4873\n\t\tf 3 4461 -4461 4462\n\t\tmu 0 3 4875 4873 4874\n\t\tf 3 4463 4464 -4463\n\t\tmu 0 3 4874 4876 4875\n\t\tf 3 4465 -4465 4466\n\t\tmu 0 3 4877 4875 4876\n\t\tf 3 4467 4468 -4467\n\t\tmu 0 3 4876 4878 4877\n\t\tf 3 4469 -4469 4470\n\t\tmu 0 3 4879 4877 4878\n\t\tf 3 4471 4472 -4471\n\t\tmu 0 3 4878 4880 4879\n\t\tf 3 4473 -4473 4474\n\t\tmu 0 3 4881 4879 4880\n\t\tf 3 4475 4476 -4475\n\t\tmu 0 3 4880 4882 4881\n\t\tf 3 4477 -4477 4478\n\t\tmu 0 3 4883 4881 4882\n\t\tf 3 4479 4480 -4479\n\t\tmu 0 3 4882 4884 4883\n\t\tf 3 4481 -4481 4482\n\t\tmu 0 3 4885 4883 4884\n\t\tf 3 4483 4484 -4483\n\t\tmu 0 3 4884 4886 4885\n\t\tf 3 4485 -4485 4486\n\t\tmu 0 3 4887 4885 4886\n\t\tf 3 4487 4488 -4487\n\t\tmu 0 3 4886 4888 4887\n\t\tf 3 4489 -4489 4490\n\t\tmu 0 3 4889 4887 4888\n\t\tf 3 4491 4492 -4491\n\t\tmu 0 3 4888 4890 4889\n\t\tf 3 4493 -4493 4494\n\t\tmu 0 3 4860 4889 4890\n\t\tf 3 4495 -4434 -4495\n\t\tmu 0 3 4890 4861 4860\n\t\tf 3 4496 4497 4498\n\t\tmu 0 3 4891 4892 4893\n\t\tf 3 4499 4500 -4499\n\t\tmu 0 3 4893 4894 4891\n\t\tf 3 4501 -4501 4502\n\t\tmu 0 3 4895 4891 4894\n\t\tf 3 4503 4504 -4503\n\t\tmu 0 3 4894 4896 4895\n\t\tf 3 4505 -4505 4506\n\t\tmu 0 3 4897 4895 4896\n\t\tf 3 4507 4508 -4507\n\t\tmu 0 3 4896 4898 4897\n\t\tf 3 4509 -4509 4510\n\t\tmu 0 3 4899 4897 4898\n\t\tf 3 4511 4512 -4511\n\t\tmu 0 3 4898 4900 4899\n\t\tf 3 4513 -4513 4514\n\t\tmu 0 3 4901 4899 4900\n\t\tf 3 4515 4516 -4515\n\t\tmu 0 3 4900 4902 4901\n\t\tf 3 4517 -4498 4518\n\t\tmu 0 3 4903 4893 4892\n\t\tf 3 4519 4520 -4519\n\t\tmu 0 3 4892 4904 4903\n\t\tf 3 4521 -4521 4522\n\t\tmu 0 3 4905 4903 4904\n\t\tf 3 4523 4524 -4523\n\t\tmu 0 3 4904 4906 4905\n\t\tf 3 4525 -4525 4526\n\t\tmu 0 3 4907 4905 4906\n\t\tf 3 4527 4528 -4527\n\t\tmu 0 3 4906 4908 4907\n\t\tf 3 4529 -4529 4530\n\t\tmu 0 3 4909 4907 4908\n\t\tf 3 4531 4532 -4531\n\t\tmu 0 3 4908 4910 4909\n\t\tf 3 4533 -4533 4534\n\t\tmu 0 3 4911 4909 4910\n\t\tf 3 4535 4536 -4535\n\t\tmu 0 3 4910 4912 4911\n\t\tf 3 4537 -4537 4538\n\t\tmu 0 3 4913 4911 4912\n\t\tf 3 4539 4540 -4539\n\t\tmu 0 3 4912 4914 4913\n\t\tf 3 4541 -4541 4542\n\t\tmu 0 3 4915 4913 4914\n\t\tf 3 4543 4544 -4543\n\t\tmu 0 3 4914 4916 4915\n\t\tf 3 4545 -4545 4546\n\t\tmu 0 3 4917 4915 4916\n\t\tf 3 4547 4548 -4547\n\t\tmu 0 3 4916 4918 4917\n\t\tf 3 4549 -4549 4550\n\t\tmu 0 3 4919 4917 4918\n\t\tf 3 4551 4552 -4551\n\t\tmu 0 3 4918 4920 4919\n\t\tf 3 4553 -4553 4554\n\t\tmu 0 3 4921 4919 4920\n\t\tf 3 4555 4556 -4555\n\t\tmu 0 3 4920 4922 4921\n\t\tf 3 4557 -4557 4558\n\t\tmu 0 3 4923 4921 4922\n\t\tf 3 4559 -4517 -4559\n\t\tmu 0 3 4922 4924 4923\n\t\tf 3 4560 4561 4562\n\t\tmu 0 3 4925 4926 4927\n\t\tf 3 4563 -4500 -4563\n\t\tmu 0 3 4927 4928 4925;\n\tsetAttr \".fc[2500:2999]\"\n\t\tf 3 -4504 -4564 4564\n\t\tmu 0 3 4929 4928 4927\n\t\tf 3 4565 4566 -4565\n\t\tmu 0 3 4927 4930 4929\n\t\tf 3 -4567 4567 4568\n\t\tmu 0 3 4929 4930 4931\n\t\tf 3 4569 -4508 -4569\n\t\tmu 0 3 4931 4932 4929\n\t\tf 3 -4512 -4570 4570\n\t\tmu 0 3 4933 4932 4931\n\t\tf 3 4571 4572 -4571\n\t\tmu 0 3 4931 4934 4933\n\t\tf 3 4573 -4561 4574\n\t\tmu 0 3 4935 4926 4925\n\t\tf 3 -4518 4575 -4575\n\t\tmu 0 3 4925 4936 4935\n\t\tf 3 -4576 -4522 4576\n\t\tmu 0 3 4935 4936 4937\n\t\tf 3 4577 4578 -4577\n\t\tmu 0 3 4937 4938 4935\n\t\tf 3 4579 -4578 4580\n\t\tmu 0 3 4939 4938 4937\n\t\tf 3 -4526 4581 -4581\n\t\tmu 0 3 4937 4940 4939\n\t\tf 3 -4582 -4530 4582\n\t\tmu 0 3 4939 4940 4941\n\t\tf 3 4583 4584 -4583\n\t\tmu 0 3 4941 4942 4939\n\t\tf 3 4585 -4584 4586\n\t\tmu 0 3 4943 4942 4941\n\t\tf 3 -4534 4587 -4587\n\t\tmu 0 3 4941 4944 4943\n\t\tf 3 -4588 -4538 4588\n\t\tmu 0 3 4943 4944 4945\n\t\tf 3 4589 4590 -4589\n\t\tmu 0 3 4945 4946 4943\n\t\tf 3 4591 -4590 4592\n\t\tmu 0 3 4947 4946 4945\n\t\tf 3 -4542 4593 -4593\n\t\tmu 0 3 4945 4948 4947\n\t\tf 3 -4594 -4546 4594\n\t\tmu 0 3 4947 4948 4949\n\t\tf 3 4595 4596 -4595\n\t\tmu 0 3 4949 4950 4947\n\t\tf 3 4597 -4596 4598\n\t\tmu 0 3 4951 4950 4949\n\t\tf 3 -4550 4599 -4599\n\t\tmu 0 3 4949 4952 4951\n\t\tf 3 -4600 -4554 4600\n\t\tmu 0 3 4951 4952 4953\n\t\tf 3 4601 4602 -4601\n\t\tmu 0 3 4953 4954 4951\n\t\tf 3 4603 -4602 4604\n\t\tmu 0 3 4955 4954 4953\n\t\tf 3 -4558 4605 -4605\n\t\tmu 0 3 4953 4956 4955\n\t\tf 3 -4606 -4516 4606\n\t\tmu 0 3 4957 4956 4958\n\t\tf 3 -4573 4607 -4607\n\t\tmu 0 3 4958 4959 4957\n\t\tf 3 4608 4609 4610\n\t\tmu 0 3 4960 4961 4962\n\t\tf 3 -4611 4611 4612\n\t\tmu 0 3 4960 4962 4963\n\t\tf 3 4613 4614 -4612\n\t\tmu 0 3 4962 4964 4963\n\t\tf 3 -4613 4615 4616\n\t\tmu 0 3 4960 4963 4965\n\t\tf 3 4617 4618 -4616\n\t\tmu 0 3 4963 4966 4965\n\t\tf 3 4619 4620 -4618\n\t\tmu 0 3 4963 4967 4966\n\t\tf 3 4621 4622 -4619\n\t\tmu 0 3 4966 4968 4965\n\t\tf 3 -4617 4623 4624\n\t\tmu 0 3 4960 4965 4969\n\t\tf 3 4625 4626 -4624\n\t\tmu 0 3 4965 4970 4969\n\t\tf 3 4627 4628 -4626\n\t\tmu 0 3 4965 4971 4970\n\t\tf 3 4629 4630 -4627\n\t\tmu 0 3 4970 4972 4969\n\t\tf 3 -4625 4631 4632\n\t\tmu 0 3 4960 4969 4973\n\t\tf 3 4633 4634 -4632\n\t\tmu 0 3 4969 4974 4973\n\t\tf 3 4635 -4633 4636\n\t\tmu 0 3 4975 4960 4973\n\t\tf 3 4637 4638 4639\n\t\tmu 0 3 4976 4977 4978\n\t\tf 3 4640 4641 -4640\n\t\tmu 0 3 4978 4979 4976\n\t\tf 3 4642 -4642 4643\n\t\tmu 0 3 4980 4976 4979\n\t\tf 3 4644 4645 -4644\n\t\tmu 0 3 4979 4981 4980\n\t\tf 3 -4643 4646 4647\n\t\tmu 0 3 4976 4980 4982\n\t\tf 3 4648 4649 -4648\n\t\tmu 0 3 4982 4983 4976\n\t\tf 3 -4638 -4650 4650\n\t\tmu 0 3 4977 4976 4983\n\t\tf 3 4651 4652 -4651\n\t\tmu 0 3 4983 4984 4977\n\t\tf 3 4653 -4639 4654\n\t\tmu 0 3 4985 4978 4977\n\t\tf 3 4655 4656 -4655\n\t\tmu 0 3 4977 4986 4985\n\t\tf 3 -4656 -4653 4657\n\t\tmu 0 3 4986 4977 4984\n\t\tf 3 4658 4659 -4658\n\t\tmu 0 3 4984 4987 4986\n\t\tf 3 -4659 4660 4661\n\t\tmu 0 3 4987 4984 4988\n\t\tf 3 -4661 -4652 4662\n\t\tmu 0 3 4988 4984 4983\n\t\tf 3 4663 4664 -4662\n\t\tmu 0 3 4988 4989 4987\n\t\tf 3 4665 4666 -4665\n\t\tmu 0 3 4989 4990 4987\n\t\tf 3 4667 4668 -4666\n\t\tmu 0 3 4989 4991 4990\n\t\tf 3 4669 4670 -4668\n\t\tmu 0 3 4989 4992 4991\n\t\tf 3 -4667 4671 4672\n\t\tmu 0 3 4987 4990 4993\n\t\tf 3 4673 -4660 -4673\n\t\tmu 0 3 4993 4986 4987\n\t\tf 3 4674 -4657 -4674\n\t\tmu 0 3 4993 4985 4986\n\t\tf 3 4675 -4649 4676\n\t\tmu 0 3 4994 4983 4982\n\t\tf 3 -4676 4677 -4663\n\t\tmu 0 3 4983 4994 4988\n\t\tf 3 4678 4679 -4677\n\t\tmu 0 3 4982 4995 4994\n\t\tf 3 4680 4681 -4675\n\t\tmu 0 3 4993 4996 4985\n\t\tf 3 4682 4683 -4681\n\t\tmu 0 3 4993 4997 4996\n\t\tf 3 4684 -4679 4685\n\t\tmu 0 3 4998 4995 4982\n\t\tf 3 4686 4687 -4686\n\t\tmu 0 3 4982 4999 4998\n\t\tf 3 4688 -4688 4689\n\t\tmu 0 3 5000 4998 4999\n\t\tf 3 4690 4691 -4690\n\t\tmu 0 3 4999 5001 5000\n\t\tf 3 4692 -4687 4693\n\t\tmu 0 3 5002 4999 4982\n\t\tf 3 -4647 4694 -4694\n\t\tmu 0 3 4982 4980 5002\n\t\tf 3 4695 -4695 4696\n\t\tmu 0 3 5003 5002 4980\n\t\tf 3 -4646 4697 -4697\n\t\tmu 0 3 4980 4981 5003\n\t\tf 3 -4696 4698 4699\n\t\tmu 0 3 5002 5003 5004\n\t\tf 3 4700 4701 -4700\n\t\tmu 0 3 5004 5005 5002\n\t\tf 3 4702 -4691 4703\n\t\tmu 0 3 5005 5001 4999\n\t\tf 3 -4693 -4702 -4704\n\t\tmu 0 3 4999 5002 5005\n\t\tf 3 4704 4705 4706\n\t\tmu 0 3 5006 5007 5008\n\t\tf 3 4707 4708 -4707\n\t\tmu 0 3 5008 5009 5006\n\t\tf 3 4709 -4708 4710\n\t\tmu 0 3 5010 5009 5008\n\t\tf 3 4711 4712 -4711\n\t\tmu 0 3 5008 5011 5010\n\t\tf 3 -4705 4713 4714\n\t\tmu 0 3 5007 5006 5012\n\t\tf 3 4715 4716 -4715\n\t\tmu 0 3 5012 5013 5007\n\t\tf 3 -4716 4717 4718\n\t\tmu 0 3 5013 5012 5014\n\t\tf 3 4719 4720 -4719\n\t\tmu 0 3 5014 5015 5013\n\t\tf 3 4721 -4720 4722\n\t\tmu 0 3 5016 5015 5014\n\t\tf 3 4723 4724 -4723\n\t\tmu 0 3 5014 5017 5016\n\t\tf 3 -4725 4725 4726\n\t\tmu 0 3 5016 5017 5018\n\t\tf 3 4727 4728 -4727\n\t\tmu 0 3 5018 5019 5016\n\t\tf 3 4729 -4728 4730\n\t\tmu 0 3 5020 5019 5018\n\t\tf 3 4731 4732 -4731\n\t\tmu 0 3 5018 5021 5020\n\t\tf 3 4733 4734 4735\n\t\tmu 0 3 5022 5023 5024\n\t\tf 3 4736 4737 -4736\n\t\tmu 0 3 5024 5025 5026\n\t\tf 3 4738 4739 4740\n\t\tmu 0 3 5027 5028 5029\n\t\tf 3 4741 4742 -4741\n\t\tmu 0 3 5029 5030 5031\n\t\tf 3 4743 -4742 4744\n\t\tmu 0 3 5032 5030 5029\n\t\tf 3 4745 4746 -4745\n\t\tmu 0 3 5029 5033 5032\n\t\tf 3 4747 -4747 4748\n\t\tmu 0 3 5034 5032 5033\n\t\tf 3 4749 4750 -4749\n\t\tmu 0 3 5033 5035 5034\n\t\tf 3 4751 -4751 4752\n\t\tmu 0 3 5036 5034 5035\n\t\tf 3 4753 4754 -4753\n\t\tmu 0 3 5035 5037 5036\n\t\tf 3 -4755 4755 4756\n\t\tmu 0 3 5036 5037 5038\n\t\tf 3 4757 4758 -4757\n\t\tmu 0 3 5038 5039 5036\n\t\tf 3 -4758 4759 4760\n\t\tmu 0 3 5039 5038 5040\n\t\tf 3 4761 4762 -4761\n\t\tmu 0 3 5040 5041 5039\n\t\tf 3 -4762 4763 4764\n\t\tmu 0 3 5041 5040 5042\n\t\tf 3 4765 4766 -4765\n\t\tmu 0 3 5042 5043 5041\n\t\tf 3 4767 -4766 4768\n\t\tmu 0 3 5044 5043 5042\n\t\tf 3 4769 4770 -4769\n\t\tmu 0 3 5042 5045 5044\n\t\tf 3 4771 -4771 4772\n\t\tmu 0 3 5046 5044 5045\n\t\tf 3 4773 4774 -4773\n\t\tmu 0 3 5045 5047 5046\n\t\tf 3 -4775 4775 4776\n\t\tmu 0 3 5046 5047 5048\n\t\tf 3 4777 4778 -4777\n\t\tmu 0 3 5048 5049 5046\n\t\tf 3 4779 4780 4781\n\t\tmu 0 3 5050 5051 5052\n\t\tf 3 4782 4783 -4782\n\t\tmu 0 3 5052 5053 5054\n\t\tf 3 4784 -4783 4785\n\t\tmu 0 3 5055 5053 5052\n\t\tf 3 4786 4787 -4786\n\t\tmu 0 3 5052 5056 5055\n\t\tf 3 4788 4789 4790\n\t\tmu 0 3 5057 5058 5059\n\t\tf 3 -4672 4791 -4791\n\t\tmu 0 3 5059 5060 5061\n\t\tf 3 4792 -4792 4793\n\t\tmu 0 3 5062 5063 5060\n\t\tf 3 -4669 4794 -4794\n\t\tmu 0 3 5060 5064 5065\n\t\tf 3 -4683 -4790 4795\n\t\tmu 0 3 5066 5059 5067\n\t\tf 3 4796 4797 -4796\n\t\tmu 0 3 5068 5069 5066\n\t\tf 3 -4684 -4798 4798\n\t\tmu 0 3 5070 5066 5071\n\t\tf 3 4799 4800 -4799\n\t\tmu 0 3 5072 5073 5070\n\t\tf 3 4801 -4795 4802\n\t\tmu 0 3 5074 5075 5064\n\t\tf 3 -4671 4803 -4803\n\t\tmu 0 3 5064 5076 5077\n\t\tf 3 4804 -4804 4805\n\t\tmu 0 3 5078 5079 5076\n\t\tf 3 -4670 4806 -4806\n\t\tmu 0 3 5076 5080 5081\n\t\tf 3 -4807 -4664 4807\n\t\tmu 0 3 5082 5080 5083\n\t\tf 3 4808 4809 -4808\n\t\tmu 0 3 5083 5084 5085\n\t\tf 3 4810 -4809 4811\n\t\tmu 0 3 5086 5087 5083\n\t\tf 3 -4678 4812 -4812\n\t\tmu 0 3 5083 5088 5089\n\t\tf 3 4813 -4813 4814\n\t\tmu 0 3 5090 5091 5088\n\t\tf 3 -4680 4815 -4815\n\t\tmu 0 3 5088 5092 5093\n\t\tf 3 4816 -4816 4817\n\t\tmu 0 3 5094 5095 5092\n\t\tf 3 -4685 4818 -4818\n\t\tmu 0 3 5092 5096 5097\n\t\tf 3 4819 -4819 4820\n\t\tmu 0 3 5098 5099 5096\n\t\tf 3 -4689 4821 -4821\n\t\tmu 0 3 5096 5100 5101\n\t\tf 3 4822 -4822 4823\n\t\tmu 0 3 5102 5103 5100\n\t\tf 3 -4692 4824 -4824\n\t\tmu 0 3 5100 5104 5105\n\t\tf 3 -4825 -4703 4825\n\t\tmu 0 3 5106 5104 5107\n\t\tf 3 4826 4827 -4826\n\t\tmu 0 3 5107 5108 5109\n\t\tf 3 4828 -4827 4829\n\t\tmu 0 3 5110 5111 5107\n\t\tf 3 -4701 4830 -4830\n\t\tmu 0 3 5107 5112 5113\n\t\tf 3 4831 -4831 4832\n\t\tmu 0 3 5114 5115 5112\n\t\tf 3 -4699 4833 -4833\n\t\tmu 0 3 5112 5116 5117\n\t\tf 3 4834 -4834 4835\n\t\tmu 0 3 5118 5119 5116\n\t\tf 3 -4698 4836 -4836\n\t\tmu 0 3 5116 5120 5121\n\t\tf 3 4837 -4837 4838\n\t\tmu 0 3 5122 5123 5120\n\t\tf 3 -4645 4839 -4839\n\t\tmu 0 3 5120 5124 5125\n\t\tf 3 -4840 -4641 4840\n\t\tmu 0 3 5126 5124 5127\n\t\tf 3 4841 4842 -4841\n\t\tmu 0 3 5127 5128 5129\n\t\tf 3 -4842 -4654 4843\n\t\tmu 0 3 5130 5127 5131\n\t\tf 3 4844 4845 -4844\n\t\tmu 0 3 5131 5132 5133\n\t\tf 3 4846 -4845 4847\n\t\tmu 0 3 5134 5135 5131\n\t\tf 3 -4682 -4801 -4848\n\t\tmu 0 3 5131 5136 5137\n\t\tf 3 4848 4849 4850\n\t\tmu 0 3 5138 5139 5140\n\t\tf 3 4851 4852 -4851\n\t\tmu 0 3 5140 5141 5138\n\t\tf 3 4853 -4852 4854\n\t\tmu 0 3 5142 5141 5140\n\t\tf 3 4855 4856 -4855\n\t\tmu 0 3 5140 5143 5142\n\t\tf 3 4857 -4849 4858\n\t\tmu 0 3 5144 5139 5138\n\t\tf 3 4859 4860 -4859\n\t\tmu 0 3 5138 5145 5144\n\t\tf 3 -4857 4861 4862\n\t\tmu 0 3 5142 5143 5146\n\t\tf 3 4863 4864 -4863\n\t\tmu 0 3 5146 5147 5142\n\t\tf 3 4865 -4864 4866\n\t\tmu 0 3 5148 5147 5146\n\t\tf 3 4867 4868 -4867\n\t\tmu 0 3 5146 5149 5148\n\t\tf 3 -4869 4869 4870\n\t\tmu 0 3 5148 5149 5150\n\t\tf 3 4871 4872 -4871\n\t\tmu 0 3 5150 5151 5148\n\t\tf 3 4873 -4872 4874\n\t\tmu 0 3 5152 5151 5150\n\t\tf 3 4875 4876 -4875\n\t\tmu 0 3 5150 5153 5152\n\t\tf 3 -4877 4877 4878\n\t\tmu 0 3 5152 5153 5154\n\t\tf 3 4879 4880 -4879\n\t\tmu 0 3 5154 5155 5152\n\t\tf 3 4881 -4880 4882\n\t\tmu 0 3 5156 5155 5154\n\t\tf 3 4883 4884 -4883\n\t\tmu 0 3 5154 5157 5156\n\t\tf 3 -4885 4885 4886\n\t\tmu 0 3 5156 5157 5158\n\t\tf 3 4887 4888 -4887\n\t\tmu 0 3 5158 5159 5156\n\t\tf 3 4889 -4888 4890\n\t\tmu 0 3 5160 5159 5158\n\t\tf 3 4891 4892 -4891\n\t\tmu 0 3 5158 5161 5160\n\t\tf 3 -4893 4893 4894\n\t\tmu 0 3 5160 5161 5162\n\t\tf 3 4895 4896 -4895\n\t\tmu 0 3 5162 5163 5160\n\t\tf 3 4897 -4896 4898\n\t\tmu 0 3 5164 5163 5162\n\t\tf 3 4899 4900 -4899\n\t\tmu 0 3 5162 5165 5164\n\t\tf 3 -4901 4901 4902\n\t\tmu 0 3 5164 5165 5166\n\t\tf 3 4903 4904 -4903\n\t\tmu 0 3 5166 5167 5164\n\t\tf 3 4905 -4904 4906\n\t\tmu 0 3 5168 5167 5166\n\t\tf 3 4907 4908 -4907\n\t\tmu 0 3 5166 5169 5168\n\t\tf 3 4909 -4906 4910\n\t\tmu 0 3 5170 5167 5168\n\t\tf 3 -4905 -4910 4911\n\t\tmu 0 3 5164 5167 5170\n\t\tf 3 4912 4913 -4911\n\t\tmu 0 3 5168 5171 5170\n\t\tf 3 4914 -4913 4915\n\t\tmu 0 3 5172 5171 5168\n\t\tf 3 4916 4917 -4916\n\t\tmu 0 3 5168 5173 5172\n\t\tf 3 4918 4919 -4912\n\t\tmu 0 3 5170 5174 5164\n\t\tf 3 -4920 4920 4921\n\t\tmu 0 3 5164 5174 5175\n\t\tf 3 4922 -4898 -4922\n\t\tmu 0 3 5175 5163 5164\n\t\tf 3 -4897 -4923 4923\n\t\tmu 0 3 5160 5163 5175\n\t\tf 3 4924 4925 -4924\n\t\tmu 0 3 5175 5176 5160\n\t\tf 3 -4926 4926 4927\n\t\tmu 0 3 5160 5176 5177\n\t\tf 3 4928 -4890 -4928\n\t\tmu 0 3 5177 5159 5160\n\t\tf 3 -4889 -4929 4929\n\t\tmu 0 3 5156 5159 5177\n\t\tf 3 4930 4931 -4930\n\t\tmu 0 3 5177 5178 5156\n\t\tf 3 -4932 4932 4933\n\t\tmu 0 3 5156 5178 5179\n\t\tf 3 4934 -4882 -4934\n\t\tmu 0 3 5179 5155 5156\n\t\tf 3 -4881 -4935 4935\n\t\tmu 0 3 5152 5155 5179\n\t\tf 3 4936 4937 -4936\n\t\tmu 0 3 5179 5180 5152\n\t\tf 3 -4938 4938 4939\n\t\tmu 0 3 5152 5180 5181\n\t\tf 3 4940 -4874 -4940\n\t\tmu 0 3 5181 5151 5152\n\t\tf 3 -4873 -4941 4941\n\t\tmu 0 3 5148 5151 5181\n\t\tf 3 4942 4943 -4942\n\t\tmu 0 3 5181 5182 5148\n\t\tf 3 -4944 4944 4945\n\t\tmu 0 3 5148 5182 5183\n\t\tf 3 4946 -4866 -4946\n\t\tmu 0 3 5183 5147 5148\n\t\tf 3 -4947 4947 4948\n\t\tmu 0 3 5147 5183 5184\n\t\tf 3 4949 -4865 -4949\n\t\tmu 0 3 5184 5142 5147\n\t\tf 3 -4950 4950 4951\n\t\tmu 0 3 5142 5184 5185\n\t\tf 3 4952 -4854 -4952\n\t\tmu 0 3 5185 5141 5142\n\t\tf 3 -4853 -4953 4953\n\t\tmu 0 3 5138 5141 5185\n\t\tf 3 4954 4955 -4954\n\t\tmu 0 3 5185 5186 5138\n\t\tf 3 -4956 4956 4957\n\t\tmu 0 3 5138 5186 5187\n\t\tf 3 -4918 -4860 -4958\n\t\tmu 0 3 5187 5145 5138\n\t\tf 3 -4861 -4917 4958\n\t\tmu 0 3 5144 5145 5188\n\t\tf 3 -4909 4959 -4959\n\t\tmu 0 3 5188 5189 5144\n\t\tf 3 4960 4961 4962\n\t\tmu 0 3 5190 5191 5192\n\t\tf 3 4963 4964 -4963\n\t\tmu 0 3 5192 5193 5190\n\t\tf 3 4965 -4965 4966\n\t\tmu 0 3 5194 5190 5193\n\t\tf 3 4967 4968 -4967\n\t\tmu 0 3 5193 5195 5194\n\t\tf 3 4969 -4969 4970\n\t\tmu 0 3 5196 5194 5195\n\t\tf 3 4971 4972 -4971\n\t\tmu 0 3 5195 5197 5196\n\t\tf 3 4973 -4973 4974\n\t\tmu 0 3 5198 5196 5197\n\t\tf 3 4975 4976 -4975\n\t\tmu 0 3 5197 5199 5198\n\t\tf 3 4977 -4977 4978\n\t\tmu 0 3 5200 5198 5199\n\t\tf 3 4979 4980 -4979\n\t\tmu 0 3 5199 5201 5200\n\t\tf 3 4981 -4981 4982\n\t\tmu 0 3 5202 5200 5201\n\t\tf 3 4983 4984 -4983\n\t\tmu 0 3 5201 5203 5202\n\t\tf 3 4985 -4985 4986\n\t\tmu 0 3 5204 5202 5203\n\t\tf 3 4987 4988 -4987\n\t\tmu 0 3 5203 5205 5204\n\t\tf 3 4989 -4989 4990\n\t\tmu 0 3 5206 5204 5205\n\t\tf 3 4991 4992 -4991\n\t\tmu 0 3 5205 5207 5206\n\t\tf 3 4993 -4993 4994\n\t\tmu 0 3 5208 5206 5207\n\t\tf 3 4995 4996 -4995\n\t\tmu 0 3 5207 5209 5208\n\t\tf 3 4997 -4997 4998\n\t\tmu 0 3 5210 5208 5209\n\t\tf 3 4999 5000 -4999\n\t\tmu 0 3 5209 5211 5210\n\t\tf 3 5001 -5001 5002\n\t\tmu 0 3 5212 5210 5211\n\t\tf 3 5003 5004 -5003\n\t\tmu 0 3 5211 5213 5212\n\t\tf 3 5005 -5005 5006\n\t\tmu 0 3 5214 5212 5213\n\t\tf 3 5007 5008 -5007\n\t\tmu 0 3 5213 5215 5214\n\t\tf 3 5009 -5009 5010\n\t\tmu 0 3 5216 5214 5215\n\t\tf 3 5011 5012 -5011\n\t\tmu 0 3 5215 5217 5216\n\t\tf 3 5013 -5013 5014\n\t\tmu 0 3 5218 5216 5217\n\t\tf 3 5015 5016 -5015\n\t\tmu 0 3 5217 5219 5218\n\t\tf 3 5017 -5017 5018\n\t\tmu 0 3 5220 5218 5219\n\t\tf 3 5019 5020 -5019\n\t\tmu 0 3 5219 5221 5220\n\t\tf 3 5021 -5021 5022\n\t\tmu 0 3 5191 5220 5221\n\t\tf 3 5023 -4962 -5023\n\t\tmu 0 3 5221 5192 5191\n\t\tf 3 5024 5025 5026\n\t\tmu 0 3 5222 5223 5224\n\t\tf 3 5027 5028 -5027\n\t\tmu 0 3 5224 5225 5222\n\t\tf 3 5029 -5029 5030\n\t\tmu 0 3 5226 5222 5225\n\t\tf 3 5031 5032 -5031\n\t\tmu 0 3 5225 5227 5226\n\t\tf 3 5033 -5033 5034\n\t\tmu 0 3 5228 5226 5227\n\t\tf 3 5035 5036 -5035\n\t\tmu 0 3 5227 5229 5228\n\t\tf 3 5037 -5037 5038\n\t\tmu 0 3 5230 5228 5229\n\t\tf 3 5039 5040 -5039\n\t\tmu 0 3 5229 5231 5230\n\t\tf 3 5041 -5026 5042\n\t\tmu 0 3 5232 5224 5223\n\t\tf 3 5043 5044 -5043\n\t\tmu 0 3 5223 5233 5232\n\t\tf 3 5045 -5045 5046\n\t\tmu 0 3 5234 5232 5233\n\t\tf 3 5047 5048 -5047\n\t\tmu 0 3 5233 5235 5234\n\t\tf 3 5049 -5049 5050\n\t\tmu 0 3 5236 5234 5235\n\t\tf 3 5051 5052 -5051\n\t\tmu 0 3 5235 5237 5236\n\t\tf 3 5053 -5053 5054\n\t\tmu 0 3 5238 5236 5237\n\t\tf 3 5055 5056 -5055\n\t\tmu 0 3 5237 5239 5238\n\t\tf 3 5057 -5057 5058\n\t\tmu 0 3 5240 5238 5239\n\t\tf 3 5059 5060 -5059\n\t\tmu 0 3 5239 5241 5240\n\t\tf 3 5061 -5061 5062\n\t\tmu 0 3 5242 5240 5241\n\t\tf 3 5063 5064 -5063\n\t\tmu 0 3 5241 5243 5242\n\t\tf 3 5065 -5065 5066\n\t\tmu 0 3 5244 5242 5243\n\t\tf 3 5067 5068 -5067\n\t\tmu 0 3 5243 5245 5244\n\t\tf 3 5069 -5069 5070\n\t\tmu 0 3 5246 5244 5245\n\t\tf 3 5071 5072 -5071\n\t\tmu 0 3 5245 5247 5246\n\t\tf 3 5073 -5073 5074\n\t\tmu 0 3 5248 5246 5247\n\t\tf 3 5075 5076 -5075\n\t\tmu 0 3 5247 5249 5248\n\t\tf 3 5077 -5077 5078\n\t\tmu 0 3 5250 5248 5249\n\t\tf 3 5079 5080 -5079\n\t\tmu 0 3 5249 5251 5250\n\t\tf 3 5081 -5081 5082\n\t\tmu 0 3 5252 5250 5251\n\t\tf 3 5083 5084 -5083\n\t\tmu 0 3 5251 5253 5252\n\t\tf 3 5085 -5085 5086\n\t\tmu 0 3 5254 5252 5253\n\t\tf 3 5087 -5041 -5087\n\t\tmu 0 3 5253 5255 5254\n\t\tf 3 5088 5089 5090\n\t\tmu 0 3 5256 5257 5258\n\t\tf 3 5091 -5028 -5091\n\t\tmu 0 3 5258 5259 5256\n\t\tf 3 -5032 -5092 5092\n\t\tmu 0 3 5260 5259 5258\n\t\tf 3 5093 5094 -5093\n\t\tmu 0 3 5258 5261 5260\n\t\tf 3 -5095 5095 5096\n\t\tmu 0 3 5260 5261 5262\n\t\tf 3 5097 -5036 -5097\n\t\tmu 0 3 5262 5263 5260\n\t\tf 3 -5040 -5098 5098\n\t\tmu 0 3 5264 5263 5262\n\t\tf 3 5099 5100 -5099\n\t\tmu 0 3 5262 5265 5264\n\t\tf 3 5101 -5089 5102\n\t\tmu 0 3 5266 5257 5256\n\t\tf 3 -5042 5103 -5103\n\t\tmu 0 3 5256 5267 5266\n\t\tf 3 -5104 -5046 5104\n\t\tmu 0 3 5266 5267 5268\n\t\tf 3 5105 5106 -5105\n\t\tmu 0 3 5268 5269 5266\n\t\tf 3 5107 -5106 5108\n\t\tmu 0 3 5270 5269 5268\n\t\tf 3 -5050 5109 -5109\n\t\tmu 0 3 5268 5271 5270\n\t\tf 3 -5110 -5054 5110\n\t\tmu 0 3 5270 5271 5272\n\t\tf 3 5111 5112 -5111\n\t\tmu 0 3 5272 5273 5270\n\t\tf 3 5113 -5112 5114\n\t\tmu 0 3 5274 5273 5272\n\t\tf 3 -5058 5115 -5115\n\t\tmu 0 3 5272 5275 5274\n\t\tf 3 -5116 -5062 5116\n\t\tmu 0 3 5274 5275 5276\n\t\tf 3 5117 5118 -5117\n\t\tmu 0 3 5276 5277 5274\n\t\tf 3 5119 -5118 5120\n\t\tmu 0 3 5278 5277 5276\n\t\tf 3 -5066 5121 -5121\n\t\tmu 0 3 5276 5279 5278\n\t\tf 3 -5122 -5070 5122\n\t\tmu 0 3 5278 5279 5280\n\t\tf 3 5123 5124 -5123\n\t\tmu 0 3 5280 5281 5278\n\t\tf 3 5125 -5124 5126\n\t\tmu 0 3 5282 5281 5280\n\t\tf 3 -5074 5127 -5127\n\t\tmu 0 3 5280 5283 5282\n\t\tf 3 -5128 -5078 5128\n\t\tmu 0 3 5282 5283 5284\n\t\tf 3 5129 5130 -5129\n\t\tmu 0 3 5284 5285 5282\n\t\tf 3 5131 -5130 5132\n\t\tmu 0 3 5286 5285 5284\n\t\tf 3 -5082 5133 -5133\n\t\tmu 0 3 5284 5287 5286\n\t\tf 3 -5134 -5086 5134\n\t\tmu 0 3 5288 5289 5264\n\t\tf 3 -5101 5135 -5135\n\t\tmu 0 3 5264 5290 5288\n\t\tf 3 5136 5137 5138\n\t\tmu 0 3 5291 5292 5293\n\t\tf 3 -5139 5139 5140\n\t\tmu 0 3 5291 5293 5294\n\t\tf 3 5141 5142 -5140\n\t\tmu 0 3 5293 5295 5294\n\t\tf 3 -5141 5143 5144\n\t\tmu 0 3 5291 5294 5296\n\t\tf 3 5145 5146 -5144\n\t\tmu 0 3 5294 5297 5296\n\t\tf 3 5147 5148 -5146\n\t\tmu 0 3 5294 5298 5297\n\t\tf 3 5149 5150 -5147\n\t\tmu 0 3 5297 5299 5296\n\t\tf 3 -5145 5151 5152\n\t\tmu 0 3 5291 5296 5300\n\t\tf 3 5153 5154 -5152\n\t\tmu 0 3 5296 5301 5300\n\t\tf 3 5155 5156 -5154\n\t\tmu 0 3 5296 5302 5301\n\t\tf 3 5157 5158 -5155\n\t\tmu 0 3 5301 5303 5300\n\t\tf 3 -5153 5159 5160\n\t\tmu 0 3 5291 5300 5304\n\t\tf 3 5161 5162 -5160\n\t\tmu 0 3 5300 5305 5304\n\t\tf 3 5163 -5161 5164\n\t\tmu 0 3 5306 5291 5304\n\t\tf 3 5165 5166 5167\n\t\tmu 0 3 5307 5308 5309\n\t\tf 3 5168 5169 -5168\n\t\tmu 0 3 5309 5310 5307\n\t\tf 3 5170 -5167 5171\n\t\tmu 0 3 5311 5309 5308\n\t\tf 3 5172 5173 -5172\n\t\tmu 0 3 5308 5312 5311\n\t\tf 3 5174 5175 5176\n\t\tmu 0 3 5313 5314 5315\n\t\tf 3 5177 5178 -5177\n\t\tmu 0 3 5316 5317 5313\n\t\tf 3 5179 -5170 5180\n\t\tmu 0 3 5318 5307 5310\n\t\tf 3 5181 5182 -5181\n\t\tmu 0 3 5310 5319 5318\n\t\tf 3 5183 -5183 5184\n\t\tmu 0 3 5320 5318 5319\n\t\tf 3 5185 5186 -5185\n\t\tmu 0 3 5319 5321 5320\n\t\tf 3 5187 5188 5189\n\t\tmu 0 3 5322 5323 5324\n\t\tf 3 5190 5191 -5190\n\t\tmu 0 3 5325 5326 5322\n\t\tf 3 5192 -5192 5193\n\t\tmu 0 3 5327 5322 5326\n\t\tf 3 5194 5195 -5194\n\t\tmu 0 3 5326 5328 5327\n\t\tf 3 5196 -5187 5197\n\t\tmu 0 3 5329 5320 5321\n\t\tf 3 5198 5199 -5198\n\t\tmu 0 3 5321 5330 5329\n\t\tf 3 5200 -5200 5201\n\t\tmu 0 3 5331 5329 5330\n\t\tf 3 5202 5203 -5202\n\t\tmu 0 3 5330 5332 5331\n\t\tf 3 5204 -5204 5205\n\t\tmu 0 3 5333 5331 5332\n\t\tf 3 5206 5207 -5206\n\t\tmu 0 3 5332 5334 5333\n\t\tf 3 5208 -5208 5209\n\t\tmu 0 3 5335 5333 5334\n\t\tf 3 5210 5211 -5210\n\t\tmu 0 3 5334 5336 5335\n\t\tf 3 5212 -5212 5213\n\t\tmu 0 3 5337 5335 5336\n\t\tf 3 5214 5215 -5214\n\t\tmu 0 3 5336 5338 5337\n\t\tf 3 5216 -5216 5217\n\t\tmu 0 3 5339 5337 5338\n\t\tf 3 5218 5219 -5218\n\t\tmu 0 3 5338 5340 5339\n\t\tf 3 5220 -5220 5221\n\t\tmu 0 3 5341 5339 5340\n\t\tf 3 5222 5223 -5222\n\t\tmu 0 3 5340 5342 5341\n\t\tf 3 5224 5225 5226\n\t\tmu 0 3 5343 5344 5345\n\t\tf 3 5227 5228 -5227\n\t\tmu 0 3 5346 5347 5343\n\t\tf 3 5229 5230 5231\n\t\tmu 0 3 5348 5349 5350\n\t\tf 3 5232 5233 -5232\n\t\tmu 0 3 5351 5352 5348\n\t\tf 3 5234 -5234 5235\n\t\tmu 0 3 5353 5348 5352\n\t\tf 3 5236 5237 -5236\n\t\tmu 0 3 5352 5354 5353\n\t\tf 3 5238 -5238 5239\n\t\tmu 0 3 5355 5353 5354\n\t\tf 3 5240 -5196 -5240\n\t\tmu 0 3 5354 5356 5355\n\t\tf 3 5241 5242 5243\n\t\tmu 0 3 5357 5358 5359\n\t\tf 3 5244 5245 5246\n\t\tmu 0 3 5360 5361 5362\n\t\tf 3 5247 -5243 -5247\n\t\tmu 0 3 5362 5359 5363\n\t\tf 3 5248 -5246 5249\n\t\tmu 0 3 5364 5362 5365\n\t\tf 3 5250 5251 -5250\n\t\tmu 0 3 5366 5367 5364\n\t\tf 3 5252 -5252 5253\n\t\tmu 0 3 5368 5364 5369\n\t\tf 3 5254 5255 -5254\n\t\tmu 0 3 5370 5371 5368\n\t\tf 3 5256 -5256 5257\n\t\tmu 0 3 5372 5368 5373\n\t\tf 3 5258 5259 -5258\n\t\tmu 0 3 5374 5375 5372\n\t\tf 3 5260 -5260 5261\n\t\tmu 0 3 5376 5372 5377\n\t\tf 3 5262 5263 -5262\n\t\tmu 0 3 5378 5379 5376\n\t\tf 3 -5264 5264 5265\n\t\tmu 0 3 5376 5380 5381\n\t\tf 3 5266 5267 -5266\n\t\tmu 0 3 5382 5383 5376\n\t\tf 3 5268 5269 -5244\n\t\tmu 0 3 5359 5384 5385\n\t\tf 3 5270 -5270 5271\n\t\tmu 0 3 5386 5387 5384\n\t\tf 3 5272 5273 -5272\n\t\tmu 0 3 5384 5388 5389\n\t\tf 3 5274 -5274 5275\n\t\tmu 0 3 5390 5391 5388\n\t\tf 3 5276 5277 -5276\n\t\tmu 0 3 5388 5392 5393\n\t\tf 3 -5278 5278 5279\n\t\tmu 0 3 5394 5392 5395\n\t\tf 3 5280 5281 -5280\n\t\tmu 0 3 5395 5396 5397\n\t\tf 3 5282 -5281 5283\n\t\tmu 0 3 5398 5399 5395\n\t\tf 3 5284 5285 -5284\n\t\tmu 0 3 5395 5400 5401\n\t\tf 3 5286 -5286 5287\n\t\tmu 0 3 5402 5403 5400\n\t\tf 3 5288 5289 -5288\n\t\tmu 0 3 5400 5404 5405\n\t\tf 3 5290 -5290 5291\n\t\tmu 0 3 5406 5407 5404\n\t\tf 3 5292 5293 -5292\n\t\tmu 0 3 5404 5408 5409\n\t\tf 3 5294 -5294 5295\n\t\tmu 0 3 5410 5411 5408\n\t\tf 3 5296 5297 -5296\n\t\tmu 0 3 5408 5412 5413\n\t\tf 3 5298 -5298 5299\n\t\tmu 0 3 5414 5415 5412\n\t\tf 3 5300 5301 -5300\n\t\tmu 0 3 5412 5416 5417\n\t\tf 3 5302 -5302 5303\n\t\tmu 0 3 5418 5419 5416\n\t\tf 3 5304 5305 -5304\n\t\tmu 0 3 5416 5420 5421\n\t\tf 3 5306 -5306 5307\n\t\tmu 0 3 5422 5423 5420\n\t\tf 3 5308 5309 -5308\n\t\tmu 0 3 5420 5424 5425\n\t\tf 3 5310 -5310 5311\n\t\tmu 0 3 5426 5427 5424\n\t\tf 3 5312 -5267 -5312\n\t\tmu 0 3 5424 5428 5429\n\t\tf 3 -5309 -5305 5313\n\t\tmu 0 3 5430 5431 5432\n\t\tf 3 -5314 5314 5315\n\t\tmu 0 3 5430 5432 5433\n\t\tf 3 -5301 -5297 -5315\n\t\tmu 0 3 5432 5434 5433\n\t\tf 3 -5316 5316 5317\n\t\tmu 0 3 5430 5433 5435\n\t\tf 3 -5293 5318 -5317\n\t\tmu 0 3 5433 5436 5435\n\t\tf 3 -5289 -5285 -5319\n\t\tmu 0 3 5436 5437 5435\n\t\tf 3 -5318 5319 5320\n\t\tmu 0 3 5430 5435 5438\n\t\tf 3 5321 5322 -5320\n\t\tmu 0 3 5435 5439 5438\n\t\tf 3 5323 5324 -5322\n\t\tmu 0 3 5435 5440 5439\n\t\tf 3 -5279 -5277 -5324\n\t\tmu 0 3 5435 5441 5440\n\t\tf 3 -5273 5325 -5325\n\t\tmu 0 3 5440 5442 5439\n\t\tf 3 -5269 -5248 -5326\n\t\tmu 0 3 5442 5443 5439\n\t\tf 3 5326 -5261 -5323\n\t\tmu 0 3 5439 5444 5438\n\t\tf 3 -5249 5327 -5327\n\t\tmu 0 3 5439 5445 5444\n\t\tf 3 -5253 -5257 -5328\n\t\tmu 0 3 5445 5446 5444\n\t\tf 3 5328 5329 5330\n\t\tmu 0 3 5447 5448 5449\n\t\tf 3 5331 5332 5333\n\t\tmu 0 3 5450 5451 5452\n\t\tf 3 5334 5335 -5334\n\t\tmu 0 3 5452 5453 5450\n\t\tf 3 5336 -5335 5337\n\t\tmu 0 3 5454 5453 5452\n\t\tf 3 5338 5339 -5338\n\t\tmu 0 3 5452 5455 5454\n\t\tf 3 -5339 5340 5341\n\t\tmu 0 3 5455 5452 5456\n\t\tf 3 5342 5343 -5342\n\t\tmu 0 3 5456 5457 5455\n\t\tf 3 5344 -5341 5345\n\t\tmu 0 3 5458 5456 5452\n\t\tf 3 -5333 5346 -5346\n\t\tmu 0 3 5452 5451 5458\n\t\tf 3 -5347 5347 5348\n\t\tmu 0 3 5458 5451 5459\n\t\tf 3 5349 5350 -5349\n\t\tmu 0 3 5459 5460 5458\n\t\tf 3 5351 -5344 5352\n\t\tmu 0 3 5461 5455 5457\n\t\tf 3 5353 5354 -5353\n\t\tmu 0 3 5457 5462 5461\n\t\tf 3 5355 5356 5357\n\t\tmu 0 3 5463 5464 5465\n\t\tf 3 5358 5359 -5358\n\t\tmu 0 3 5465 5466 5463\n\t\tf 3 -5359 5360 5361\n\t\tmu 0 3 5466 5465 5467\n\t\tf 3 5362 5363 -5362\n\t\tmu 0 3 5467 5468 5466\n\t\tf 3 -5356 5364 5365\n\t\tmu 0 3 5464 5463 5469\n\t\tf 3 5366 5367 -5366\n\t\tmu 0 3 5469 5470 5464\n\t\tf 3 5368 -5363 5369\n\t\tmu 0 3 5471 5468 5467\n\t\tf 3 5370 5371 -5370\n\t\tmu 0 3 5467 5472 5471\n\t\tf 3 5372 -5364 5373\n\t\tmu 0 3 5473 5466 5468\n\t\tf 3 -5360 -5373 5374\n\t\tmu 0 3 5463 5466 5473\n\t\tf 3 5375 5376 -5374\n\t\tmu 0 3 5468 5474 5473\n\t\tf 3 5377 5378 -5375\n\t\tmu 0 3 5473 5475 5463\n\t\tf 3 -5365 -5379 5379\n\t\tmu 0 3 5469 5463 5475\n\t\tf 3 5380 5381 -5380\n\t\tmu 0 3 5475 5476 5469\n\t\tf 3 5382 -5382 5383\n\t\tmu 0 3 5477 5469 5476\n\t\tf 3 -5367 -5383 5384\n\t\tmu 0 3 5470 5469 5477\n\t\tf 3 5385 5386 -5384\n\t\tmu 0 3 5476 5478 5477\n\t\tf 3 -5387 5387 5388\n\t\tmu 0 3 5477 5478 5479\n\t\tf 3 5389 5390 -5389\n\t\tmu 0 3 5479 5480 5477\n\t\tf 3 -5390 5391 5392\n\t\tmu 0 3 5480 5479 5481\n\t\tf 3 5393 5394 -5393\n\t\tmu 0 3 5481 5482 5480\n\t\tf 3 -5391 5395 5396\n\t\tmu 0 3 5477 5480 5483\n\t\tf 3 -5396 -5395 5397\n\t\tmu 0 3 5483 5480 5482\n\t\tf 3 5398 5399 -5397\n\t\tmu 0 3 5483 5484 5477\n\t\tf 3 -5400 5400 -5385\n\t\tmu 0 3 5477 5484 5470\n\t\tf 3 5401 5402 -5398\n\t\tmu 0 3 5482 5485 5483\n\t\tf 3 -5402 5403 5404\n\t\tmu 0 3 5485 5482 5486\n\t\tf 3 5405 5406 -5404\n\t\tmu 0 3 5482 5487 5486\n\t\tf 3 5407 5408 -5407\n\t\tmu 0 3 5487 5488 5486\n\t\tf 3 5409 -5406 5410\n\t\tmu 0 3 5489 5487 5482\n\t\tf 3 5411 -5411 -5394\n\t\tmu 0 3 5481 5489 5482\n\t\tf 3 5412 5413 -5412\n\t\tmu 0 3 5481 5490 5489\n\t\tf 3 5414 5415 -5413\n\t\tmu 0 3 5481 5491 5490\n\t\tf 3 5416 -5376 5417\n\t\tmu 0 3 5492 5474 5468\n\t\tf 3 -5369 5418 -5418\n\t\tmu 0 3 5468 5471 5492\n\t\tf 3 5419 5420 5421\n\t\tmu 0 3 5493 5494 5495\n\t\tf 3 5422 5423 -5422\n\t\tmu 0 3 5495 5496 5493\n\t\tf 3 5424 -5423 5425\n\t\tmu 0 3 5497 5496 5495\n\t\tf 3 5426 5427 -5426\n\t\tmu 0 3 5495 5498 5497\n\t\tf 3 -5427 5428 5429\n\t\tmu 0 3 5498 5495 5499\n\t\tf 3 5430 5431 -5430\n\t\tmu 0 3 5499 5500 5498\n\t\tf 3 5432 -5432 5433\n\t\tmu 0 3 5501 5498 5500\n\t\tf 3 5434 5435 -5434\n\t\tmu 0 3 5500 5502 5501\n\t\tf 3 5436 -5436 5437\n\t\tmu 0 3 5503 5501 5502\n\t\tf 3 5438 5439 -5438\n\t\tmu 0 3 5502 5504 5503\n\t\tf 3 5440 -5440 5441\n\t\tmu 0 3 5505 5503 5504\n\t\tf 3 5442 5443 -5442\n\t\tmu 0 3 5504 5506 5505\n\t\tf 3 5444 -5444 5445\n\t\tmu 0 3 5494 5505 5506\n\t\tf 3 5446 -5429 5447\n\t\tmu 0 3 5507 5499 5495\n\t\tf 3 -5421 5448 -5448\n\t\tmu 0 3 5495 5494 5507\n\t\tf 3 5449 -5449 -5446\n\t\tmu 0 3 5506 5507 5494\n\t\tf 3 5450 5451 5452\n\t\tmu 0 3 5508 5509 5510\n\t\tf 3 5453 -5453 5454\n\t\tmu 0 3 5511 5508 5510\n\t\tf 3 5455 -5455 5456\n\t\tmu 0 3 5512 5511 5510\n\t\tf 3 -5454 5457 5458\n\t\tmu 0 3 5508 5511 5513\n\t\tf 3 5459 5460 -5459\n\t\tmu 0 3 5513 5514 5508\n\t\tf 3 -5460 5461 5462\n\t\tmu 0 3 5514 5513 5515\n\t\tf 3 5463 5464 -5463\n\t\tmu 0 3 5515 5516 5514\n\t\tf 3 5465 -5464 5466\n\t\tmu 0 3 5517 5516 5515\n\t\tf 3 5467 5468 -5467\n\t\tmu 0 3 5515 5518 5517\n\t\tf 3 5469 -5469 5470\n\t\tmu 0 3 5519 5517 5518\n\t\tf 3 5471 5472 -5471\n\t\tmu 0 3 5518 5520 5519\n\t\tf 3 5473 -5473 5474\n\t\tmu 0 3 5521 5519 5520\n\t\tf 3 5475 5476 -5475\n\t\tmu 0 3 5520 5522 5521;\n\tsetAttr \".fc[3000:3499]\"\n\t\tf 3 5477 -5477 5478\n\t\tmu 0 3 5523 5521 5522\n\t\tf 3 5479 5480 -5479\n\t\tmu 0 3 5522 5524 5523\n\t\tf 3 5481 -5481 5482\n\t\tmu 0 3 5525 5523 5524\n\t\tf 3 5483 5484 -5483\n\t\tmu 0 3 5524 5526 5525\n\t\tf 3 5485 -5485 5486\n\t\tmu 0 3 5527 5525 5526\n\t\tf 3 5487 5488 -5487\n\t\tmu 0 3 5526 5528 5527\n\t\tf 3 5489 -5489 5490\n\t\tmu 0 3 5529 5527 5528\n\t\tf 3 5491 5492 -5491\n\t\tmu 0 3 5528 5530 5529\n\t\tf 3 -5493 5493 5494\n\t\tmu 0 3 5529 5530 5531\n\t\tf 3 5495 5496 -5495\n\t\tmu 0 3 5531 5532 5529\n\t\tf 3 -5496 5497 5498\n\t\tmu 0 3 5532 5531 5533\n\t\tf 3 5499 5500 -5499\n\t\tmu 0 3 5533 5534 5532\n\t\tf 3 5501 -5500 5502\n\t\tmu 0 3 5535 5534 5533\n\t\tf 3 5503 5504 -5503\n\t\tmu 0 3 5533 5536 5535\n\t\tf 3 5505 -5505 5506\n\t\tmu 0 3 5537 5535 5536\n\t\tf 3 5507 5508 -5507\n\t\tmu 0 3 5536 5538 5537\n\t\tf 3 5509 5510 5511\n\t\tmu 0 3 5539 5540 5541\n\t\tf 3 5512 5513 -5512\n\t\tmu 0 3 5541 5542 5543\n\t\tf 3 5514 5515 5516\n\t\tmu 0 3 5544 5545 5546\n\t\tf 3 5517 5518 -5517\n\t\tmu 0 3 5546 5547 5548\n\t\tf 3 5519 -5518 5520\n\t\tmu 0 3 5549 5547 5546\n\t\tf 3 5521 5522 -5521\n\t\tmu 0 3 5546 5550 5549\n\t\tf 3 5523 -5523 5524\n\t\tmu 0 3 5551 5549 5550\n\t\tf 3 5525 5526 -5525\n\t\tmu 0 3 5550 5552 5551\n\t\tf 3 5527 -5527 5528\n\t\tmu 0 3 5553 5551 5552\n\t\tf 3 5529 5530 -5529\n\t\tmu 0 3 5552 5554 5553\n\t\tf 3 5531 -5531 5532\n\t\tmu 0 3 5555 5553 5554\n\t\tf 3 5533 5534 -5533\n\t\tmu 0 3 5554 5556 5555\n\t\tf 3 5535 -5535 5536\n\t\tmu 0 3 5557 5555 5556\n\t\tf 3 5537 5538 -5537\n\t\tmu 0 3 5556 5558 5557\n\t\tf 3 -5539 5539 5540\n\t\tmu 0 3 5557 5558 5559\n\t\tf 3 5541 5542 -5541\n\t\tmu 0 3 5559 5560 5557\n\t\tf 3 5543 5544 -5542\n\t\tmu 0 3 5559 5561 5560\n\t\tf 3 5545 5546 -5544\n\t\tmu 0 3 5559 5562 5561\n\t\tf 3 5547 5548 5549\n\t\tmu 0 3 5563 5564 5565\n\t\tf 3 5550 -5350 5551\n\t\tmu 0 3 5566 5567 5568\n\t\tf 3 5552 5553 -5552\n\t\tmu 0 3 5568 5569 5566\n\t\tf 3 5554 -5554 5555\n\t\tmu 0 3 5570 5566 5569\n\t\tf 3 5556 5557 -5556\n\t\tmu 0 3 5569 5571 5570\n\t\tf 3 5558 -5558 5559\n\t\tmu 0 3 5572 5570 5571\n\t\tf 3 5560 5561 -5560\n\t\tmu 0 3 5571 5573 5572\n\t\tf 3 5562 -5562 5563\n\t\tmu 0 3 5574 5572 5573\n\t\tf 3 5564 5565 -5564\n\t\tmu 0 3 5573 5575 5574\n\t\tf 3 5566 -5566 5567\n\t\tmu 0 3 5576 5574 5575\n\t\tf 3 5568 5569 -5568\n\t\tmu 0 3 5575 5577 5576\n\t\tf 3 5570 -5570 5571\n\t\tmu 0 3 5578 5576 5577\n\t\tf 3 5572 5573 -5572\n\t\tmu 0 3 5577 5579 5578\n\t\tf 3 -5574 5574 5575\n\t\tmu 0 3 5578 5579 5580\n\t\tf 3 5576 5577 -5576\n\t\tmu 0 3 5580 5581 5578\n\t\tf 3 5578 -5577 5579\n\t\tmu 0 3 5582 5581 5580\n\t\tf 3 5580 5581 -5580\n\t\tmu 0 3 5580 5583 5582\n\t\tf 3 5582 -5582 5583\n\t\tmu 0 3 5584 5582 5583\n\t\tf 3 5584 5585 -5584\n\t\tmu 0 3 5583 5585 5584\n\t\tf 3 -5586 5586 5587\n\t\tmu 0 3 5584 5585 5586\n\t\tf 3 5588 5589 -5588\n\t\tmu 0 3 5586 5587 5584\n\t\tf 3 -5589 5590 5591\n\t\tmu 0 3 5587 5586 5588\n\t\tf 3 5592 5593 -5592\n\t\tmu 0 3 5588 5589 5587\n\t\tf 3 5594 -5593 5595\n\t\tmu 0 3 5590 5589 5588\n\t\tf 3 5596 5597 -5596\n\t\tmu 0 3 5588 5591 5590\n\t\tf 3 5598 -5598 5599\n\t\tmu 0 3 5592 5590 5591\n\t\tf 3 5600 5601 -5600\n\t\tmu 0 3 5591 5593 5592\n\t\tf 3 5602 -5602 5603\n\t\tmu 0 3 5594 5592 5593\n\t\tf 3 5604 5605 -5604\n\t\tmu 0 3 5593 5595 5594\n\t\tf 3 5606 -5606 5607\n\t\tmu 0 3 5596 5594 5595\n\t\tf 3 5608 5609 -5608\n\t\tmu 0 3 5595 5597 5596\n\t\tf 3 5610 -5610 5611\n\t\tmu 0 3 5598 5596 5597\n\t\tf 3 5612 5613 -5612\n\t\tmu 0 3 5597 5599 5598\n\t\tf 3 5614 -5614 5615\n\t\tmu 0 3 5600 5598 5599\n\t\tf 3 5616 5617 -5616\n\t\tmu 0 3 5599 5601 5600\n\t\tf 3 5618 -5618 5619\n\t\tmu 0 3 5602 5600 5601\n\t\tf 3 5620 5621 -5620\n\t\tmu 0 3 5601 5603 5602\n\t\tf 3 5622 -5622 5623\n\t\tmu 0 3 5604 5602 5603\n\t\tf 3 5624 -5355 -5624\n\t\tmu 0 3 5603 5605 5604\n\t\tf 3 5625 5626 5627\n\t\tmu 0 3 5606 5607 5608\n\t\tf 3 5628 5629 -5628\n\t\tmu 0 3 5609 5610 5606\n\t\tf 3 5630 -5627 5631\n\t\tmu 0 3 5611 5612 5607\n\t\tf 3 5632 5633 -5632\n\t\tmu 0 3 5607 5613 5614\n\t\tf 3 5634 5635 5636\n\t\tmu 0 3 5615 5616 5617\n\t\tf 3 5637 5638 -5637\n\t\tmu 0 3 5617 5618 5615\n\t\tf 3 5639 -5636 5640\n\t\tmu 0 3 5619 5617 5616\n\t\tf 3 5641 5642 -5641\n\t\tmu 0 3 5616 5620 5619\n\t\tf 3 5643 -5643 5644\n\t\tmu 0 3 5621 5619 5620\n\t\tf 3 5645 5646 -5645\n\t\tmu 0 3 5620 5622 5621\n\t\tf 3 5647 -5647 5648\n\t\tmu 0 3 5623 5621 5622\n\t\tf 3 5649 5650 -5649\n\t\tmu 0 3 5622 5624 5623\n\t\tf 3 5651 -5651 5652\n\t\tmu 0 3 5625 5623 5624\n\t\tf 3 5653 5654 -5653\n\t\tmu 0 3 5624 5626 5625\n\t\tf 3 -5655 5655 5656\n\t\tmu 0 3 5625 5626 5627\n\t\tf 3 5657 5658 -5657\n\t\tmu 0 3 5627 5628 5625\n\t\tf 3 5659 -5658 5660\n\t\tmu 0 3 5629 5628 5627\n\t\tf 3 5661 5662 -5661\n\t\tmu 0 3 5627 5630 5629\n\t\tf 3 -5663 5663 5664\n\t\tmu 0 3 5629 5630 5631\n\t\tf 3 5665 5666 -5665\n\t\tmu 0 3 5631 5632 5629\n\t\tf 3 5667 -5666 5668\n\t\tmu 0 3 5633 5632 5631\n\t\tf 3 5669 5670 -5669\n\t\tmu 0 3 5631 5634 5633\n\t\tf 3 5671 -5671 5672\n\t\tmu 0 3 5635 5633 5634\n\t\tf 3 5673 5674 -5673\n\t\tmu 0 3 5634 5636 5635\n\t\tf 3 -5675 5675 5676\n\t\tmu 0 3 5635 5636 5637\n\t\tf 3 5677 5678 -5677\n\t\tmu 0 3 5637 5638 5635\n\t\tf 3 -5678 -5594 5679\n\t\tmu 0 3 5638 5637 5639\n\t\tf 3 5680 5681 -5680\n\t\tmu 0 3 5639 5640 5638\n\t\tf 3 5682 -5681 5683\n\t\tmu 0 3 5641 5640 5639\n\t\tf 3 5684 5685 -5684\n\t\tmu 0 3 5639 5642 5641\n\t\tf 3 5686 -5686 5687\n\t\tmu 0 3 5643 5641 5642\n\t\tf 3 5688 5689 -5688\n\t\tmu 0 3 5642 5644 5643\n\t\tf 3 5690 5691 5692\n\t\tmu 0 3 5645 5646 5647\n\t\tf 3 5693 5694 -5693\n\t\tmu 0 3 5648 5649 5645\n\t\tf 3 5695 -5695 5696\n\t\tmu 0 3 5650 5645 5649\n\t\tf 3 5697 5698 -5697\n\t\tmu 0 3 5649 5651 5650\n\t\tf 3 5699 -5699 5700\n\t\tmu 0 3 5652 5650 5651\n\t\tf 3 5701 5702 -5701\n\t\tmu 0 3 5651 5653 5652\n\t\tf 3 5703 -5703 5704\n\t\tmu 0 3 5654 5652 5653\n\t\tf 3 5705 5706 -5705\n\t\tmu 0 3 5653 5655 5654\n\t\tf 3 -5707 5707 5708\n\t\tmu 0 3 5654 5655 5656\n\t\tf 3 5709 5710 -5709\n\t\tmu 0 3 5656 5657 5654\n\t\tf 3 5711 -5710 5712\n\t\tmu 0 3 5658 5657 5656\n\t\tf 3 5713 5714 -5713\n\t\tmu 0 3 5656 5659 5658\n\t\tf 3 5715 -5715 5716\n\t\tmu 0 3 5660 5658 5659\n\t\tf 3 5717 5718 -5717\n\t\tmu 0 3 5659 5661 5660\n\t\tf 3 5719 5720 5721\n\t\tmu 0 3 5662 5663 5664\n\t\tf 3 5722 5723 -5722\n\t\tmu 0 3 5664 5665 5662\n\t\tf 3 5724 -5721 5725\n\t\tmu 0 3 5666 5664 5663\n\t\tf 3 5726 5727 -5726\n\t\tmu 0 3 5663 5667 5666\n\t\tf 3 5728 5729 5730\n\t\tmu 0 3 5668 5669 5670\n\t\tf 3 5731 5732 -5731\n\t\tmu 0 3 5670 5671 5668\n\t\tf 3 -5729 5733 5734\n\t\tmu 0 3 5669 5668 5672\n\t\tf 3 5735 5736 -5735\n\t\tmu 0 3 5672 5673 5669\n\t\tf 3 5737 5738 5739\n\t\tmu 0 3 5674 5675 5676\n\t\tf 3 5740 5741 -5740\n\t\tmu 0 3 5676 5677 5674\n\t\tf 3 5742 5743 5744\n\t\tmu 0 3 5678 5679 5680\n\t\tf 3 5745 5746 -5745\n\t\tmu 0 3 5680 5681 5678\n\t\tf 3 -5743 5747 5748\n\t\tmu 0 3 5679 5678 5682\n\t\tf 3 5749 5750 -5749\n\t\tmu 0 3 5682 5683 5679\n\t\tf 3 5751 5752 5753\n\t\tmu 0 3 5684 5685 5686\n\t\tf 3 5754 5755 -5754\n\t\tmu 0 3 5686 5687 5684\n\t\tf 3 5756 5757 5758\n\t\tmu 0 3 5688 5689 5690\n\t\tf 3 5759 5760 -5759\n\t\tmu 0 3 5691 5692 5693\n\t\tf 3 -5761 5761 5762\n\t\tmu 0 3 5694 5695 5696\n\t\tf 3 5763 5764 -5763\n\t\tmu 0 3 5697 5698 5699\n\t\tf 3 -5758 5765 5766\n\t\tmu 0 3 5700 5701 5702\n\t\tf 3 5767 5768 -5767\n\t\tmu 0 3 5703 5704 5705\n\t\tf 3 5769 -5768 5770\n\t\tmu 0 3 5706 5707 5708\n\t\tf 3 5771 5772 -5771\n\t\tmu 0 3 5709 5710 5711\n\t\tf 3 5773 -5764 5774\n\t\tmu 0 3 5712 5713 5714\n\t\tf 3 5775 5776 -5775\n\t\tmu 0 3 5715 5716 5717\n\t\tf 3 -5777 5777 5778\n\t\tmu 0 3 5718 5719 5720\n\t\tf 3 5779 5780 -5779\n\t\tmu 0 3 5721 5722 5723\n\t\tf 3 5781 -5780 5782\n\t\tmu 0 3 5724 5725 5726\n\t\tf 3 5783 5784 -5783\n\t\tmu 0 3 5727 5728 5729\n\t\tf 3 -5785 5785 5786\n\t\tmu 0 3 5730 5731 5732\n\t\tf 3 5787 5788 -5787\n\t\tmu 0 3 5733 5734 5735\n\t\tf 3 5789 -5788 5790\n\t\tmu 0 3 5736 5737 5738\n\t\tf 3 5791 5792 -5791\n\t\tmu 0 3 5739 5740 5741\n\t\tf 3 -5793 5793 5794\n\t\tmu 0 3 5742 5743 5744\n\t\tf 3 5795 5796 -5795\n\t\tmu 0 3 5745 5746 5747\n\t\tf 3 5797 -5796 5798\n\t\tmu 0 3 5748 5749 5750\n\t\tf 3 5799 5800 -5799\n\t\tmu 0 3 5751 5752 5753\n\t\tf 3 -5801 5801 5802\n\t\tmu 0 3 5754 5755 5756\n\t\tf 3 5803 5804 -5803\n\t\tmu 0 3 5757 5758 5759\n\t\tf 3 5805 -5804 5806\n\t\tmu 0 3 5760 5761 5762\n\t\tf 3 5807 5808 -5807\n\t\tmu 0 3 5763 5764 5765\n\t\tf 3 -5809 5809 5810\n\t\tmu 0 3 5766 5767 5768\n\t\tf 3 5811 5812 -5811\n\t\tmu 0 3 5769 5770 5771\n\t\tf 3 5813 -5812 5814\n\t\tmu 0 3 5772 5773 5774\n\t\tf 3 5815 5816 -5815\n\t\tmu 0 3 5775 5776 5777\n\t\tf 3 -5817 5817 5818\n\t\tmu 0 3 5778 5779 5780\n\t\tf 3 -5773 5819 -5819\n\t\tmu 0 3 5781 5782 5783\n\t\tf 3 5820 -5818 5821\n\t\tmu 0 3 5784 5785 5786\n\t\tf 3 -5821 5822 5823\n\t\tmu 0 3 5787 5788 5789\n\t\tf 3 5824 -5770 -5824\n\t\tmu 0 3 5790 5791 5792\n\t\tf 3 5825 5826 -5822\n\t\tmu 0 3 5793 5794 5795\n\t\tf 3 -5826 -5816 5827\n\t\tmu 0 3 5796 5797 5798\n\t\tf 3 5828 5829 -5828\n\t\tmu 0 3 5799 5800 5801\n\t\tf 3 -5829 -5810 5830\n\t\tmu 0 3 5802 5803 5804\n\t\tf 3 5831 5832 -5831\n\t\tmu 0 3 5805 5806 5807\n\t\tf 3 -5832 -5808 5833\n\t\tmu 0 3 5808 5809 5810\n\t\tf 3 5834 5835 -5834\n\t\tmu 0 3 5811 5812 5813\n\t\tf 3 5836 5837 5838\n\t\tmu 0 3 5814 5815 5816\n\t\tf 3 -5835 -5802 -5839\n\t\tmu 0 3 5817 5818 5819\n\t\tf 3 -5837 -5800 5839\n\t\tmu 0 3 5820 5821 5822\n\t\tf 3 5840 5841 -5840\n\t\tmu 0 3 5823 5824 5825\n\t\tf 3 -5841 -5794 5842\n\t\tmu 0 3 5826 5827 5828\n\t\tf 3 5843 5844 -5843\n\t\tmu 0 3 5829 5830 5831\n\t\tf 3 -5844 -5792 5845\n\t\tmu 0 3 5832 5833 5834\n\t\tf 3 5846 5847 -5846\n\t\tmu 0 3 5835 5836 5837\n\t\tf 3 -5847 -5786 5848\n\t\tmu 0 3 5838 5839 5840\n\t\tf 3 5849 5850 -5849\n\t\tmu 0 3 5841 5842 5843\n\t\tf 3 -5850 -5784 5851\n\t\tmu 0 3 5844 5845 5846\n\t\tf 3 5852 5853 -5852\n\t\tmu 0 3 5847 5848 5849\n\t\tf 3 -5853 -5778 5854\n\t\tmu 0 3 5850 5851 5852\n\t\tf 3 5855 5856 -5855\n\t\tmu 0 3 5853 5854 5855\n\t\tf 3 -5856 -5776 5857\n\t\tmu 0 3 5856 5857 5858\n\t\tf 3 5858 5859 -5858\n\t\tmu 0 3 5859 5860 5861\n\t\tf 3 -5859 -5762 5860\n\t\tmu 0 3 5862 5863 5864\n\t\tf 3 5861 5862 -5861\n\t\tmu 0 3 5865 5866 5867\n\t\tf 3 -5862 -5760 5863\n\t\tmu 0 3 5868 5869 5870\n\t\tf 3 5864 5865 -5864\n\t\tmu 0 3 5871 5872 5873\n\t\tf 3 -5865 -5769 5866\n\t\tmu 0 3 5874 5875 5876\n\t\tf 3 -5825 5867 -5867\n\t\tmu 0 3 5877 5878 5879\n\t\tf 3 5868 5869 5870\n\t\tmu 0 3 5880 5881 5882\n\t\tf 3 5871 5872 -5871\n\t\tmu 0 3 5883 5884 5885\n\t\tf 3 -5872 5873 5874\n\t\tmu 0 3 5886 5887 5888\n\t\tf 3 5875 5876 -5875\n\t\tmu 0 3 5889 5890 5891\n\t\tf 3 -5876 5877 5878\n\t\tmu 0 3 5892 5893 5894\n\t\tf 3 5879 5880 -5879\n\t\tmu 0 3 5895 5896 5897\n\t\tf 3 -5880 5881 5882\n\t\tmu 0 3 5898 5899 5900\n\t\tf 3 5883 5884 -5883\n\t\tmu 0 3 5901 5902 5903\n\t\tf 3 -5884 5885 5886\n\t\tmu 0 3 5904 5905 5906\n\t\tf 3 5887 5888 -5887\n\t\tmu 0 3 5907 5908 5909\n\t\tf 3 -5888 5889 5890\n\t\tmu 0 3 5910 5911 5912\n\t\tf 3 5891 5892 -5891\n\t\tmu 0 3 5913 5914 5915\n\t\tf 3 -5892 5893 5894\n\t\tmu 0 3 5916 5917 5918\n\t\tf 3 5895 5896 -5895\n\t\tmu 0 3 5919 5920 5921\n\t\tf 3 -5896 5897 5898\n\t\tmu 0 3 5922 5923 5924\n\t\tf 3 5899 5900 -5899\n\t\tmu 0 3 5925 5926 5927\n\t\tf 3 -5900 5901 5902\n\t\tmu 0 3 5928 5929 5930\n\t\tf 3 5903 5904 -5903\n\t\tmu 0 3 5931 5932 5933\n\t\tf 3 -5904 5905 5906\n\t\tmu 0 3 5934 5935 5936\n\t\tf 3 5907 5908 -5907\n\t\tmu 0 3 5937 5938 5939\n\t\tf 3 -5908 5909 5910\n\t\tmu 0 3 5940 5941 5942\n\t\tf 3 5911 5912 -5911\n\t\tmu 0 3 5943 5944 5945\n\t\tf 3 -5912 5913 5914\n\t\tmu 0 3 5946 5947 5948\n\t\tf 3 5915 5916 -5915\n\t\tmu 0 3 5949 5950 5951\n\t\tf 3 -5916 5917 5918\n\t\tmu 0 3 5952 5953 5954\n\t\tf 3 5919 5920 -5919\n\t\tmu 0 3 5955 5956 5957\n\t\tf 3 -5920 5921 5922\n\t\tmu 0 3 5958 5959 5960\n\t\tf 3 5923 5924 -5923\n\t\tmu 0 3 5961 5962 5963\n\t\tf 3 -5924 5925 5926\n\t\tmu 0 3 5964 5965 5966\n\t\tf 3 5927 5928 -5927\n\t\tmu 0 3 5967 5968 5969\n\t\tf 3 -5928 5929 5930\n\t\tmu 0 3 5970 5971 5972\n\t\tf 3 -5869 5931 -5931\n\t\tmu 0 3 5973 5974 5975\n\t\tf 3 5932 5933 5934\n\t\tmu 0 3 5976 5977 5978\n\t\tf 3 5935 5936 -5935\n\t\tmu 0 3 5979 5980 5981\n\t\tf 3 -5936 5937 5938\n\t\tmu 0 3 5982 5983 5984\n\t\tf 3 5939 5940 -5939\n\t\tmu 0 3 5985 5986 5987\n\t\tf 3 -5940 5941 5942\n\t\tmu 0 3 5988 5989 5990\n\t\tf 3 5943 5944 -5943\n\t\tmu 0 3 5991 5992 5993\n\t\tf 3 -5944 5945 5946\n\t\tmu 0 3 5994 5995 5996\n\t\tf 3 5947 5948 -5947\n\t\tmu 0 3 5997 5998 5999\n\t\tf 3 -5948 5949 5950\n\t\tmu 0 3 6000 6001 6002\n\t\tf 3 5951 5952 -5951\n\t\tmu 0 3 6003 6004 6005\n\t\tf 3 -5933 5953 5954\n\t\tmu 0 3 6006 6007 6008\n\t\tf 3 5955 5956 -5955\n\t\tmu 0 3 6009 6010 6011\n\t\tf 3 -5956 5957 5958\n\t\tmu 0 3 6012 6013 6014\n\t\tf 3 5959 5960 -5959\n\t\tmu 0 3 6015 6016 6017\n\t\tf 3 -5960 5961 5962\n\t\tmu 0 3 6018 6019 6020\n\t\tf 3 5963 5964 -5963\n\t\tmu 0 3 6021 6022 6023\n\t\tf 3 -5964 5965 5966\n\t\tmu 0 3 6024 6025 6026\n\t\tf 3 5967 5968 -5967\n\t\tmu 0 3 6027 6028 6029\n\t\tf 3 -5968 5969 5970\n\t\tmu 0 3 6030 6031 6032\n\t\tf 3 5971 5972 -5971\n\t\tmu 0 3 6033 6034 6035\n\t\tf 3 -5972 5973 5974\n\t\tmu 0 3 6036 6037 6038\n\t\tf 3 5975 5976 -5975\n\t\tmu 0 3 6039 6040 6041\n\t\tf 3 -5976 5977 5978\n\t\tmu 0 3 6042 6043 6044\n\t\tf 3 5979 5980 -5979\n\t\tmu 0 3 6045 6046 6047\n\t\tf 3 -5980 5981 5982\n\t\tmu 0 3 6048 6049 6050\n\t\tf 3 5983 5984 -5983\n\t\tmu 0 3 6051 6052 6053\n\t\tf 3 -5984 5985 5986\n\t\tmu 0 3 6054 6055 6056\n\t\tf 3 5987 5988 -5987\n\t\tmu 0 3 6057 6058 6059\n\t\tf 3 -5988 5989 5990\n\t\tmu 0 3 6060 6061 6062\n\t\tf 3 5991 5992 -5991\n\t\tmu 0 3 6063 6064 6065\n\t\tf 3 -5992 5993 5994\n\t\tmu 0 3 6066 6067 6068\n\t\tf 3 -5952 5995 -5995\n\t\tmu 0 3 6069 6070 6071\n\t\tf 3 5996 5997 5998\n\t\tmu 0 3 6072 6073 6074\n\t\tf 3 -5937 5999 -5999\n\t\tmu 0 3 6075 6076 6077\n\t\tf 3 -6000 -5941 6000\n\t\tmu 0 3 6078 6079 6080\n\t\tf 3 6001 6002 -6001\n\t\tmu 0 3 6081 6082 6083\n\t\tf 3 6003 -6002 6004\n\t\tmu 0 3 6084 6085 6086\n\t\tf 3 -5945 6005 -6005\n\t\tmu 0 3 6087 6088 6089\n\t\tf 3 -6006 -5949 6006\n\t\tmu 0 3 6090 6091 6092\n\t\tf 3 6007 6008 -6007\n\t\tmu 0 3 6093 6094 6095\n\t\tf 3 -5998 6009 6010\n\t\tmu 0 3 6096 6097 6098\n\t\tf 3 6011 -5954 -6011\n\t\tmu 0 3 6099 6100 6101\n\t\tf 3 -5958 -6012 6012\n\t\tmu 0 3 6102 6103 6104\n\t\tf 3 6013 6014 -6013\n\t\tmu 0 3 6105 6106 6107\n\t\tf 3 -6015 6015 6016\n\t\tmu 0 3 6108 6109 6110\n\t\tf 3 6017 -5962 -6017\n\t\tmu 0 3 6111 6112 6113\n\t\tf 3 -5966 -6018 6018\n\t\tmu 0 3 6114 6115 6116\n\t\tf 3 6019 6020 -6019\n\t\tmu 0 3 6117 6118 6119\n\t\tf 3 -6021 6021 6022\n\t\tmu 0 3 6120 6121 6122\n\t\tf 3 6023 -5970 -6023\n\t\tmu 0 3 6123 6124 6125\n\t\tf 3 -5974 -6024 6024\n\t\tmu 0 3 6126 6127 6128\n\t\tf 3 6025 6026 -6025\n\t\tmu 0 3 6129 6130 6131\n\t\tf 3 -6027 6027 6028\n\t\tmu 0 3 6132 6133 6134\n\t\tf 3 6029 -5978 -6029\n\t\tmu 0 3 6135 6136 6137\n\t\tf 3 -5982 -6030 6030\n\t\tmu 0 3 6138 6139 6140\n\t\tf 3 6031 6032 -6031\n\t\tmu 0 3 6141 6142 6143\n\t\tf 3 -6033 6033 6034\n\t\tmu 0 3 6144 6145 6146\n\t\tf 3 6035 -5986 -6035\n\t\tmu 0 3 6147 6148 6149\n\t\tf 3 -5990 -6036 6036\n\t\tmu 0 3 6150 6151 6152\n\t\tf 3 6037 6038 -6037\n\t\tmu 0 3 6153 6154 6155\n\t\tf 3 -6039 6039 6040\n\t\tmu 0 3 6156 6157 6158\n\t\tf 3 6041 -5994 -6041\n\t\tmu 0 3 6159 6160 6161\n\t\tf 3 -5953 -6042 6042\n\t\tmu 0 3 6162 6163 6164\n\t\tf 3 6043 -6008 -6043\n\t\tmu 0 3 6165 6166 6167\n\t\tf 3 6044 6045 6046\n\t\tmu 0 3 6168 6169 6170\n\t\tf 3 -6047 6047 6048\n\t\tmu 0 3 6171 6172 6173\n\t\tf 3 6049 6050 -6048\n\t\tmu 0 3 6174 6175 6176\n\t\tf 3 6051 6052 -6050\n\t\tmu 0 3 6177 6178 6179\n\t\tf 3 6053 6054 -6052\n\t\tmu 0 3 6180 6181 6182\n\t\tf 3 6055 6056 -6054\n\t\tmu 0 3 6183 6184 6185\n\t\tf 3 6057 6058 -6055\n\t\tmu 0 3 6186 6187 6188\n\t\tf 3 6059 6060 -6053\n\t\tmu 0 3 6189 6190 6191\n\t\tf 3 6061 6062 -6060\n\t\tmu 0 3 6192 6193 6194\n\t\tf 3 6063 6064 -6061\n\t\tmu 0 3 6195 6196 6197\n\t\tf 3 6065 6066 -6051\n\t\tmu 0 3 6198 6199 6200\n\t\tf 3 6067 6068 -6066\n\t\tmu 0 3 6201 6202 6203\n\t\tf 3 6069 6070 -6067\n\t\tmu 0 3 6204 6205 6206\n\t\tf 3 -6049 6071 6072\n\t\tmu 0 3 6207 6208 6209\n\t\tf 3 6073 6074 6075\n\t\tmu 0 3 6210 6211 6212\n\t\tf 3 6076 6077 -6076\n\t\tmu 0 3 6213 6214 6215\n\t\tf 3 -6074 6078 6079\n\t\tmu 0 3 6216 6217 6218\n\t\tf 3 6080 6081 -6080\n\t\tmu 0 3 6219 6220 6221\n\t\tf 3 6082 -6079 6083\n\t\tmu 0 3 6222 6223 6224\n\t\tf 3 6084 6085 -6084\n\t\tmu 0 3 6225 6226 6227\n\t\tf 3 -6085 -6078 6086\n\t\tmu 0 3 6228 6229 6230\n\t\tf 3 6087 6088 -6087\n\t\tmu 0 3 6231 6232 6233\n\t\tf 3 -6077 6089 6090\n\t\tmu 0 3 6234 6235 6236\n\t\tf 3 6091 6092 -6091\n\t\tmu 0 3 6237 6238 6239\n\t\tf 3 -6088 -6093 6093\n\t\tmu 0 3 6240 6241 6242\n\t\tf 3 6094 6095 -6094\n\t\tmu 0 3 6243 6244 6245\n\t\tf 3 6096 -6096 6097\n\t\tmu 0 3 6246 6247 6248\n\t\tf 3 -6089 -6097 6098\n\t\tmu 0 3 6249 6250 6251\n\t\tf 3 6099 6100 -6098\n\t\tmu 0 3 6252 6253 6254\n\t\tf 3 -6100 6101 6102\n\t\tmu 0 3 6255 6256 6257\n\t\tf 3 -6103 6103 6104\n\t\tmu 0 3 6258 6259 6260\n\t\tf 3 -6105 6105 6106\n\t\tmu 0 3 6261 6262 6263\n\t\tf 3 -6095 6107 6108\n\t\tmu 0 3 6264 6265 6266\n\t\tf 3 6109 -6102 -6109\n\t\tmu 0 3 6267 6268 6269\n\t\tf 3 -6108 -6092 6110\n\t\tmu 0 3 6270 6271 6272\n\t\tf 3 -6086 6111 6112\n\t\tmu 0 3 6273 6274 6275\n\t\tf 3 6113 -6112 -6099\n\t\tmu 0 3 6276 6277 6278\n\t\tf 3 6114 6115 -6113\n\t\tmu 0 3 6279 6280 6281\n\t\tf 3 -6111 6116 6117\n\t\tmu 0 3 6282 6283 6284\n\t\tf 3 -6118 6118 6119\n\t\tmu 0 3 6285 6286 6287\n\t\tf 3 -6116 6120 6121\n\t\tmu 0 3 6288 6289 6290\n\t\tf 3 6122 6123 6124\n\t\tmu 0 3 6291 6292 6293\n\t\tf 3 6125 6126 -6125\n\t\tmu 0 3 6294 6295 6296\n\t\tf 3 -6127 6127 6128\n\t\tmu 0 3 6297 6298 6299\n\t\tf 3 6129 6130 -6129\n\t\tmu 0 3 6300 6301 6302\n\t\tf 3 6131 -6131 6132\n\t\tmu 0 3 6303 6304 6305\n\t\tf 3 -6123 -6132 -6122\n\t\tmu 0 3 6306 6307 6308\n\t\tf 3 6133 -6083 -6133\n\t\tmu 0 3 6309 6310 6311\n\t\tf 3 -6134 6134 6135\n\t\tmu 0 3 6312 6313 6314\n\t\tf 3 6136 -6081 -6136\n\t\tmu 0 3 6315 6316 6317\n\t\tf 3 -6130 6137 6138\n\t\tmu 0 3 6318 6319 6320\n\t\tf 3 6139 -6135 -6139\n\t\tmu 0 3 6321 6322 6323\n\t\tf 3 6140 6141 6142\n\t\tmu 0 3 6324 6325 6326\n\t\tf 3 6143 6144 -6143\n\t\tmu 0 3 6327 6328 6329\n\t\tf 3 -6144 6145 6146\n\t\tmu 0 3 6330 6331 6332\n\t\tf 3 6147 6148 -6147\n\t\tmu 0 3 6333 6334 6335\n\t\tf 3 -6141 6149 6150\n\t\tmu 0 3 6336 6337 6338\n\t\tf 3 6151 6152 -6151\n\t\tmu 0 3 6339 6340 6341\n\t\tf 3 -6152 6153 6154\n\t\tmu 0 3 6342 6343 6344\n\t\tf 3 6155 6156 -6155\n\t\tmu 0 3 6345 6346 6347\n\t\tf 3 6157 -6156 6158\n\t\tmu 0 3 6348 6349 6350\n\t\tf 3 6159 6160 -6159\n\t\tmu 0 3 6351 6352 6353\n\t\tf 3 -6161 6161 6162\n\t\tmu 0 3 6354 6355 6356\n\t\tf 3 6163 6164 -6163\n\t\tmu 0 3 6357 6358 6359\n\t\tf 3 -6164 6165 6166\n\t\tmu 0 3 6360 6361 6362\n\t\tf 3 6167 6168 -6167\n\t\tmu 0 3 6363 6364 6365\n\t\tf 3 6169 6170 6171\n\t\tmu 0 3 6366 6367 6368\n\t\tf 3 6172 6173 -6172\n\t\tmu 0 3 6369 6370 6371\n\t\tf 3 6174 6175 6176\n\t\tmu 0 3 6372 6373 6374\n\t\tf 3 6177 6178 -6177\n\t\tmu 0 3 6375 6376 6377\n\t\tf 3 -6178 6179 6180\n\t\tmu 0 3 6378 6379 6380\n\t\tf 3 6181 6182 -6181\n\t\tmu 0 3 6381 6382 6383\n\t\tf 3 -6182 6183 6184\n\t\tmu 0 3 6384 6385 6386\n\t\tf 3 6185 6186 -6185\n\t\tmu 0 3 6387 6388 6389\n\t\tf 3 -6186 6187 6188\n\t\tmu 0 3 6390 6391 6392\n\t\tf 3 6189 6190 -6189\n\t\tmu 0 3 6393 6394 6395\n\t\tf 3 -6190 6191 6192\n\t\tmu 0 3 6396 6397 6398\n\t\tf 3 6193 6194 -6193\n\t\tmu 0 3 6399 6400 6401\n\t\tf 3 -6194 6195 6196\n\t\tmu 0 3 6402 6403 6404\n\t\tf 3 6197 6198 -6197\n\t\tmu 0 3 6405 6406 6407\n\t\tf 3 -6198 6199 6200\n\t\tmu 0 3 6408 6409 6410\n\t\tf 3 6201 6202 -6201\n\t\tmu 0 3 6411 6412 6413\n\t\tf 3 -6202 6203 6204\n\t\tmu 0 3 6414 6415 6416\n\t\tf 3 6205 6206 -6205\n\t\tmu 0 3 6417 6418 6419\n\t\tf 3 -6206 6207 6208\n\t\tmu 0 3 6420 6421 6422\n\t\tf 3 6209 6210 -6209\n\t\tmu 0 3 6423 6424 6425\n\t\tf 3 -6210 6211 6212\n\t\tmu 0 3 6426 6427 6428\n\t\tf 3 6213 6214 -6213\n\t\tmu 0 3 6429 6430 6431\n\t\tf 3 6215 6216 6217\n\t\tmu 0 3 6432 6433 6434\n\t\tf 3 6218 6219 -6218\n\t\tmu 0 3 6435 6436 6437\n\t\tf 3 6220 6221 6222\n\t\tmu 0 3 6438 6439 6440\n\t\tf 3 6223 6224 -6223\n\t\tmu 0 3 6441 6442 6443\n\t\tf 3 6225 6226 6227\n\t\tmu 0 3 6444 6445 6446\n\t\tf 3 6228 -6110 -6228\n\t\tmu 0 3 6447 6448 6449\n\t\tf 3 -6229 6229 6230\n\t\tmu 0 3 6450 6451 6452\n\t\tf 3 6231 -6104 -6231\n\t\tmu 0 3 6453 6454 6455\n\t\tf 3 -6226 -6120 6232\n\t\tmu 0 3 6456 6457 6458\n\t\tf 3 6233 6234 -6233\n\t\tmu 0 3 6459 6460 6461\n\t\tf 3 -6234 -6119 6235\n\t\tmu 0 3 6462 6463 6464\n\t\tf 3 6236 6237 -6236\n\t\tmu 0 3 6465 6466 6467\n\t\tf 3 -6232 6238 6239\n\t\tmu 0 3 6468 6469 6470\n\t\tf 3 6240 -6106 -6240\n\t\tmu 0 3 6471 6472 6473\n\t\tf 3 -6241 6241 6242\n\t\tmu 0 3 6474 6475 6476\n\t\tf 3 6243 -6107 -6243\n\t\tmu 0 3 6477 6478 6479\n\t\tf 3 -6101 -6244 6244\n\t\tmu 0 3 6480 6481 6482\n\t\tf 3 6245 6246 -6245\n\t\tmu 0 3 6483 6484 6485\n\t\tf 3 -6247 6247 6248\n\t\tmu 0 3 6486 6487 6488\n\t\tf 3 6249 -6114 -6249\n\t\tmu 0 3 6489 6490 6491\n\t\tf 3 -6250 6250 6251\n\t\tmu 0 3 6492 6493 6494\n\t\tf 3 6252 -6115 -6252\n\t\tmu 0 3 6495 6496 6497\n\t\tf 3 -6253 6253 6254\n\t\tmu 0 3 6498 6499 6500\n\t\tf 3 6255 -6121 -6255\n\t\tmu 0 3 6501 6502 6503\n\t\tf 3 -6256 6256 6257\n\t\tmu 0 3 6504 6505 6506\n\t\tf 3 6258 -6124 -6258\n\t\tmu 0 3 6507 6508 6509\n\t\tf 3 -6259 6259 6260\n\t\tmu 0 3 6510 6511 6512\n\t\tf 3 6261 -6126 -6261\n\t\tmu 0 3 6513 6514 6515\n\t\tf 3 -6128 -6262 6262\n\t\tmu 0 3 6516 6517 6518\n\t\tf 3 6263 6264 -6263\n\t\tmu 0 3 6519 6520 6521\n\t\tf 3 -6265 6265 6266\n\t\tmu 0 3 6522 6523 6524\n\t\tf 3 6267 -6138 -6267\n\t\tmu 0 3 6525 6526 6527\n\t\tf 3 -6268 6268 6269\n\t\tmu 0 3 6528 6529 6530\n\t\tf 3 6270 -6140 -6270\n\t\tmu 0 3 6531 6532 6533\n\t\tf 3 -6271 6271 6272\n\t\tmu 0 3 6534 6535 6536\n\t\tf 3 6273 -6137 -6273\n\t\tmu 0 3 6537 6538 6539\n\t\tf 3 -6274 6274 6275\n\t\tmu 0 3 6540 6541 6542\n\t\tf 3 6276 -6082 -6276\n\t\tmu 0 3 6543 6544 6545\n\t\tf 3 -6075 -6277 6277\n\t\tmu 0 3 6546 6547 6548\n\t\tf 3 6278 6279 -6278\n\t\tmu 0 3 6549 6550 6551\n\t\tf 3 -6090 -6280 6280\n\t\tmu 0 3 6552 6553 6554\n\t\tf 3 6281 6282 -6281\n\t\tmu 0 3 6555 6556 6557\n\t\tf 3 -6283 6283 6284\n\t\tmu 0 3 6558 6559 6560\n\t\tf 3 -6237 -6117 -6285\n\t\tmu 0 3 6561 6562 6563\n\t\tf 3 6285 6286 6287\n\t\tmu 0 3 6564 6565 6566\n\t\tf 3 6288 6289 -6288\n\t\tmu 0 3 6567 6568 6569\n\t\tf 3 -6290 6290 6291\n\t\tmu 0 3 6570 6571 6572\n\t\tf 3 6292 6293 -6292\n\t\tmu 0 3 6573 6574 6575\n\t\tf 3 -6287 6294 6295\n\t\tmu 0 3 6576 6577 6578\n\t\tf 3 6296 6297 -6296\n\t\tmu 0 3 6579 6580 6581\n\t\tf 3 6298 -6293 6299\n\t\tmu 0 3 6582 6583 6584\n\t\tf 3 6300 6301 -6300\n\t\tmu 0 3 6585 6586 6587\n\t\tf 3 -6302 6302 6303\n\t\tmu 0 3 6588 6589 6590\n\t\tf 3 6304 6305 -6304\n\t\tmu 0 3 6591 6592 6593\n\t\tf 3 6306 -6305 6307\n\t\tmu 0 3 6594 6595 6596\n\t\tf 3 6308 6309 -6308\n\t\tmu 0 3 6597 6598 6599\n\t\tf 3 -6310 6310 6311\n\t\tmu 0 3 6600 6601 6602\n\t\tf 3 6312 6313 -6312\n\t\tmu 0 3 6603 6604 6605\n\t\tf 3 6314 -6313 6315\n\t\tmu 0 3 6606 6607 6608\n\t\tf 3 6316 6317 -6316\n\t\tmu 0 3 6609 6610 6611\n\t\tf 3 -6318 6318 6319\n\t\tmu 0 3 6612 6613 6614\n\t\tf 3 6320 6321 -6320\n\t\tmu 0 3 6615 6616 6617\n\t\tf 3 6322 -6321 6323\n\t\tmu 0 3 6618 6619 6620\n\t\tf 3 6324 6325 -6324\n\t\tmu 0 3 6621 6622 6623\n\t\tf 3 -6326 6326 6327\n\t\tmu 0 3 6624 6625 6626\n\t\tf 3 6328 6329 -6328\n\t\tmu 0 3 6627 6628 6629\n\t\tf 3 6330 -6329 6331\n\t\tmu 0 3 6630 6631 6632\n\t\tf 3 6332 6333 -6332\n\t\tmu 0 3 6633 6634 6635\n\t\tf 3 -6334 6334 6335\n\t\tmu 0 3 6636 6637 6638\n\t\tf 3 6336 6337 -6336\n\t\tmu 0 3 6639 6640 6641\n\t\tf 3 6338 -6337 6339\n\t\tmu 0 3 6642 6643 6644\n\t\tf 3 6340 6341 -6340\n\t\tmu 0 3 6645 6646 6647\n\t\tf 3 -6342 6342 6343\n\t\tmu 0 3 6648 6649 6650\n\t\tf 3 6344 6345 -6344\n\t\tmu 0 3 6651 6652 6653\n\t\tf 3 6346 -6343 6347\n\t\tmu 0 3 6654 6655 6656\n\t\tf 3 -6347 6348 6349\n\t\tmu 0 3 6657 6658 6659\n\t\tf 3 6350 6351 -6350\n\t\tmu 0 3 6660 6661 6662\n\t\tf 3 6352 6353 -6348\n\t\tmu 0 3 6663 6664 6665\n\t\tf 3 -6353 -6341 6354\n\t\tmu 0 3 6666 6667 6668\n\t\tf 3 6355 6356 -6355\n\t\tmu 0 3 6669 6670 6671\n\t\tf 3 -6356 -6335 6357\n\t\tmu 0 3 6672 6673 6674\n\t\tf 3 6358 6359 -6358\n\t\tmu 0 3 6675 6676 6677\n\t\tf 3 -6359 -6333 6360\n\t\tmu 0 3 6678 6679 6680\n\t\tf 3 6361 6362 -6361\n\t\tmu 0 3 6681 6682 6683\n\t\tf 3 6363 6364 6365\n\t\tmu 0 3 6684 6685 6686\n\t\tf 3 -6362 -6327 -6366\n\t\tmu 0 3 6687 6688 6689\n\t\tf 3 -6364 -6325 6366\n\t\tmu 0 3 6690 6691 6692\n\t\tf 3 6367 6368 -6367\n\t\tmu 0 3 6693 6694 6695\n\t\tf 3 -6368 -6319 6369\n\t\tmu 0 3 6696 6697 6698\n\t\tf 3 6370 6371 -6370\n\t\tmu 0 3 6699 6700 6701\n\t\tf 3 -6371 -6317 6372\n\t\tmu 0 3 6702 6703 6704\n\t\tf 3 6373 6374 -6373\n\t\tmu 0 3 6705 6706 6707\n\t\tf 3 -6374 -6311 6375\n\t\tmu 0 3 6708 6709 6710\n\t\tf 3 6376 6377 -6376\n\t\tmu 0 3 6711 6712 6713\n\t\tf 3 -6377 -6309 6378\n\t\tmu 0 3 6714 6715 6716\n\t\tf 3 6379 6380 -6379\n\t\tmu 0 3 6717 6718 6719\n\t\tf 3 -6380 -6303 6381\n\t\tmu 0 3 6720 6721 6722\n\t\tf 3 6382 6383 -6382\n\t\tmu 0 3 6723 6724 6725\n\t\tf 3 -6383 -6301 6384\n\t\tmu 0 3 6726 6727 6728\n\t\tf 3 6385 6386 -6385\n\t\tmu 0 3 6729 6730 6731\n\t\tf 3 -6386 -6291 6387\n\t\tmu 0 3 6732 6733 6734\n\t\tf 3 6388 6389 -6388\n\t\tmu 0 3 6735 6736 6737\n\t\tf 3 -6389 -6289 6390\n\t\tmu 0 3 6738 6739 6740\n\t\tf 3 6391 6392 -6391\n\t\tmu 0 3 6741 6742 6743\n\t\tf 3 -6392 -6298 6393\n\t\tmu 0 3 6744 6745 6746\n\t\tf 3 -6351 6394 -6394\n\t\tmu 0 3 6747 6748 6749\n\t\tf 3 -6352 -6297 6395\n\t\tmu 0 3 6750 6751 6752\n\t\tf 3 6396 -6345 -6396\n\t\tmu 0 3 6753 6754 6755\n\t\tf 3 6397 6398 6399\n\t\tmu 0 3 6756 6757 6758\n\t\tf 3 6400 6401 -6400\n\t\tmu 0 3 6759 6760 6761\n\t\tf 3 -6401 6402 6403\n\t\tmu 0 3 6762 6763 6764\n\t\tf 3 6404 6405 -6404\n\t\tmu 0 3 6765 6766 6767\n\t\tf 3 -6405 6406 6407\n\t\tmu 0 3 6768 6769 6770\n\t\tf 3 6408 6409 -6408\n\t\tmu 0 3 6771 6772 6773\n\t\tf 3 -6409 6410 6411\n\t\tmu 0 3 6774 6775 6776\n\t\tf 3 6412 6413 -6412\n\t\tmu 0 3 6777 6778 6779\n\t\tf 3 -6413 6414 6415\n\t\tmu 0 3 6780 6781 6782;\n\tsetAttr \".fc[3500:3999]\"\n\t\tf 3 6416 6417 -6416\n\t\tmu 0 3 6783 6784 6785\n\t\tf 3 -6417 6418 6419\n\t\tmu 0 3 6786 6787 6788\n\t\tf 3 6420 6421 -6420\n\t\tmu 0 3 6789 6790 6791\n\t\tf 3 -6421 6422 6423\n\t\tmu 0 3 6792 6793 6794\n\t\tf 3 6424 6425 -6424\n\t\tmu 0 3 6795 6796 6797\n\t\tf 3 -6425 6426 6427\n\t\tmu 0 3 6798 6799 6800\n\t\tf 3 6428 6429 -6428\n\t\tmu 0 3 6801 6802 6803\n\t\tf 3 -6429 6430 6431\n\t\tmu 0 3 6804 6805 6806\n\t\tf 3 6432 6433 -6432\n\t\tmu 0 3 6807 6808 6809\n\t\tf 3 -6433 6434 6435\n\t\tmu 0 3 6810 6811 6812\n\t\tf 3 6436 6437 -6436\n\t\tmu 0 3 6813 6814 6815\n\t\tf 3 -6437 6438 6439\n\t\tmu 0 3 6816 6817 6818\n\t\tf 3 6440 6441 -6440\n\t\tmu 0 3 6819 6820 6821\n\t\tf 3 -6441 6442 6443\n\t\tmu 0 3 6822 6823 6824\n\t\tf 3 6444 6445 -6444\n\t\tmu 0 3 6825 6826 6827\n\t\tf 3 -6445 6446 6447\n\t\tmu 0 3 6828 6829 6830\n\t\tf 3 6448 6449 -6448\n\t\tmu 0 3 6831 6832 6833\n\t\tf 3 -6449 6450 6451\n\t\tmu 0 3 6834 6835 6836\n\t\tf 3 6452 6453 -6452\n\t\tmu 0 3 6837 6838 6839\n\t\tf 3 -6453 6454 6455\n\t\tmu 0 3 6840 6841 6842\n\t\tf 3 6456 6457 -6456\n\t\tmu 0 3 6843 6844 6845\n\t\tf 3 -6457 6458 6459\n\t\tmu 0 3 6846 6847 6848\n\t\tf 3 -6398 6460 -6460\n\t\tmu 0 3 6849 6850 6851\n\t\tf 3 6461 6462 6463\n\t\tmu 0 3 6852 6853 6854\n\t\tf 3 6464 6465 -6464\n\t\tmu 0 3 6855 6856 6857\n\t\tf 3 -6465 6466 6467\n\t\tmu 0 3 6858 6859 6860\n\t\tf 3 6468 6469 -6468\n\t\tmu 0 3 6861 6862 6863\n\t\tf 3 -6469 6470 6471\n\t\tmu 0 3 6864 6865 6866\n\t\tf 3 6472 6473 -6472\n\t\tmu 0 3 6867 6868 6869\n\t\tf 3 -6473 6474 6475\n\t\tmu 0 3 6870 6871 6872\n\t\tf 3 6476 6477 -6476\n\t\tmu 0 3 6873 6874 6875\n\t\tf 3 -6462 6478 6479\n\t\tmu 0 3 6876 6877 6878\n\t\tf 3 6480 6481 -6480\n\t\tmu 0 3 6879 6880 6881\n\t\tf 3 -6481 6482 6483\n\t\tmu 0 3 6882 6883 6884\n\t\tf 3 6484 6485 -6484\n\t\tmu 0 3 6885 6886 6887\n\t\tf 3 -6485 6486 6487\n\t\tmu 0 3 6888 6889 6890\n\t\tf 3 6488 6489 -6488\n\t\tmu 0 3 6891 6892 6893\n\t\tf 3 -6489 6490 6491\n\t\tmu 0 3 6894 6895 6896\n\t\tf 3 6492 6493 -6492\n\t\tmu 0 3 6897 6898 6899\n\t\tf 3 -6493 6494 6495\n\t\tmu 0 3 6900 6901 6902\n\t\tf 3 6496 6497 -6496\n\t\tmu 0 3 6903 6904 6905\n\t\tf 3 -6497 6498 6499\n\t\tmu 0 3 6906 6907 6908\n\t\tf 3 6500 6501 -6500\n\t\tmu 0 3 6909 6910 6911\n\t\tf 3 -6501 6502 6503\n\t\tmu 0 3 6912 6913 6914\n\t\tf 3 6504 6505 -6504\n\t\tmu 0 3 6915 6916 6917\n\t\tf 3 -6505 6506 6507\n\t\tmu 0 3 6918 6919 6920\n\t\tf 3 6508 6509 -6508\n\t\tmu 0 3 6921 6922 6923\n\t\tf 3 -6509 6510 6511\n\t\tmu 0 3 6924 6925 6926\n\t\tf 3 6512 6513 -6512\n\t\tmu 0 3 6927 6928 6929\n\t\tf 3 -6513 6514 6515\n\t\tmu 0 3 6930 6931 6932\n\t\tf 3 6516 6517 -6516\n\t\tmu 0 3 6933 6934 6935\n\t\tf 3 -6517 6518 6519\n\t\tmu 0 3 6936 6937 6938\n\t\tf 3 6520 6521 -6520\n\t\tmu 0 3 6939 6940 6941\n\t\tf 3 -6521 6522 6523\n\t\tmu 0 3 6942 6943 6944\n\t\tf 3 -6477 6524 -6524\n\t\tmu 0 3 6945 6946 6947\n\t\tf 3 6525 6526 6527\n\t\tmu 0 3 6948 6949 6950\n\t\tf 3 -6466 6528 -6528\n\t\tmu 0 3 6951 6952 6953\n\t\tf 3 -6529 -6470 6529\n\t\tmu 0 3 6954 6955 6956\n\t\tf 3 6530 6531 -6530\n\t\tmu 0 3 6957 6958 6959\n\t\tf 3 6532 -6531 6533\n\t\tmu 0 3 6960 6961 6962\n\t\tf 3 -6474 6534 -6534\n\t\tmu 0 3 6963 6964 6965\n\t\tf 3 -6535 -6478 6535\n\t\tmu 0 3 6966 6967 6968\n\t\tf 3 6536 6537 -6536\n\t\tmu 0 3 6969 6970 6971\n\t\tf 3 -6527 6538 6539\n\t\tmu 0 3 6972 6973 6974\n\t\tf 3 6540 -6479 -6540\n\t\tmu 0 3 6975 6976 6977\n\t\tf 3 -6483 -6541 6541\n\t\tmu 0 3 6978 6979 6980\n\t\tf 3 6542 6543 -6542\n\t\tmu 0 3 6981 6982 6983\n\t\tf 3 -6544 6544 6545\n\t\tmu 0 3 6984 6985 6986\n\t\tf 3 6546 -6487 -6546\n\t\tmu 0 3 6987 6988 6989\n\t\tf 3 -6491 -6547 6547\n\t\tmu 0 3 6990 6991 6992\n\t\tf 3 6548 6549 -6548\n\t\tmu 0 3 6993 6994 6995\n\t\tf 3 -6550 6550 6551\n\t\tmu 0 3 6996 6997 6998\n\t\tf 3 6552 -6495 -6552\n\t\tmu 0 3 6999 7000 7001\n\t\tf 3 -6499 -6553 6553\n\t\tmu 0 3 7002 7003 7004\n\t\tf 3 6554 6555 -6554\n\t\tmu 0 3 7005 7006 7007\n\t\tf 3 -6556 6556 6557\n\t\tmu 0 3 7008 7009 7010\n\t\tf 3 6558 -6503 -6558\n\t\tmu 0 3 7011 7012 7013\n\t\tf 3 -6507 -6559 6559\n\t\tmu 0 3 7014 7015 7016\n\t\tf 3 6560 6561 -6560\n\t\tmu 0 3 7017 7018 7019\n\t\tf 3 -6562 6562 6563\n\t\tmu 0 3 7020 7021 7022\n\t\tf 3 6564 -6511 -6564\n\t\tmu 0 3 7023 7024 7025\n\t\tf 3 -6515 -6565 6565\n\t\tmu 0 3 7026 7027 7028\n\t\tf 3 6566 6567 -6566\n\t\tmu 0 3 7029 7030 7031\n\t\tf 3 -6568 6568 6569\n\t\tmu 0 3 7032 7033 7034\n\t\tf 3 6570 -6519 -6570\n\t\tmu 0 3 7035 7036 7037\n\t\tf 3 -6523 -6571 6571\n\t\tmu 0 3 7038 7039 7040\n\t\tf 3 6572 -6537 -6572\n\t\tmu 0 3 7041 7042 7043\n\t\tf 3 6573 6574 6575\n\t\tmu 0 3 7044 7045 7046\n\t\tf 3 -6576 6576 6577\n\t\tmu 0 3 7047 7048 7049\n\t\tf 3 6578 6579 -6577\n\t\tmu 0 3 7050 7051 7052\n\t\tf 3 6580 6581 -6579\n\t\tmu 0 3 7053 7054 7055\n\t\tf 3 6582 6583 -6581\n\t\tmu 0 3 7056 7057 7058\n\t\tf 3 6584 6585 -6583\n\t\tmu 0 3 7059 7060 7061\n\t\tf 3 6586 6587 -6584\n\t\tmu 0 3 7062 7063 7064\n\t\tf 3 6588 6589 -6582\n\t\tmu 0 3 7065 7066 7067\n\t\tf 3 6590 6591 -6589\n\t\tmu 0 3 7068 7069 7070\n\t\tf 3 6592 6593 -6590\n\t\tmu 0 3 7071 7072 7073\n\t\tf 3 6594 6595 -6580\n\t\tmu 0 3 7074 7075 7076\n\t\tf 3 6596 6597 -6595\n\t\tmu 0 3 7077 7078 7079\n\t\tf 3 6598 6599 -6596\n\t\tmu 0 3 7080 7081 7082\n\t\tf 3 -6578 6600 6601\n\t\tmu 0 3 7083 7084 7085\n\t\tf 3 6602 6603 6604\n\t\tmu 0 3 7086 7087 7088\n\t\tf 3 6605 6606 -6605\n\t\tmu 0 3 7089 7090 7086\n\t\tf 3 -6606 6607 6608\n\t\tmu 0 3 7090 7091 7092\n\t\tf 3 6609 6610 -6609\n\t\tmu 0 3 7093 7094 7090\n\t\tf 3 6611 6612 6613\n\t\tmu 0 3 7095 7096 7097\n\t\tf 3 6614 6615 -6614\n\t\tmu 0 3 7098 7099 7100\n\t\tf 3 -6603 6616 6617\n\t\tmu 0 3 7101 7086 7102\n\t\tf 3 6618 6619 -6618\n\t\tmu 0 3 7102 7103 7104\n\t\tf 3 -6619 6620 6621\n\t\tmu 0 3 7105 7102 7106\n\t\tf 3 6622 6623 -6622\n\t\tmu 0 3 7106 7107 7108\n\t\tf 3 6624 6625 6626\n\t\tmu 0 3 7109 7110 7111\n\t\tf 3 6627 6628 -6627\n\t\tmu 0 3 7112 7113 7114\n\t\tf 3 -6628 6629 6630\n\t\tmu 0 3 7113 7115 7116\n\t\tf 3 6631 6632 -6631\n\t\tmu 0 3 7117 7118 7113\n\t\tf 3 -6623 6633 6634\n\t\tmu 0 3 7119 7106 7120\n\t\tf 3 6635 6636 -6635\n\t\tmu 0 3 7120 7121 7122\n\t\tf 3 -6636 6637 6638\n\t\tmu 0 3 7123 7120 7124\n\t\tf 3 6639 6640 -6639\n\t\tmu 0 3 7124 7125 7126\n\t\tf 3 -6640 6641 6642\n\t\tmu 0 3 7127 7124 7128\n\t\tf 3 6643 6644 -6643\n\t\tmu 0 3 7128 7129 7130\n\t\tf 3 -6644 6645 6646\n\t\tmu 0 3 7131 7128 7132\n\t\tf 3 6647 6648 -6647\n\t\tmu 0 3 7132 7133 7134\n\t\tf 3 -6648 6649 6650\n\t\tmu 0 3 7135 7132 7136\n\t\tf 3 6651 6652 -6651\n\t\tmu 0 3 7136 7137 7138\n\t\tf 3 -6652 6653 6654\n\t\tmu 0 3 7139 7136 7140\n\t\tf 3 6655 6656 -6655\n\t\tmu 0 3 7140 7141 7142\n\t\tf 3 -6656 6657 6658\n\t\tmu 0 3 7143 7140 7144\n\t\tf 3 6659 6660 -6659\n\t\tmu 0 3 7144 7145 7146\n\t\tf 3 6661 6662 6663\n\t\tmu 0 3 7147 7148 7149\n\t\tf 3 6664 6665 -6664\n\t\tmu 0 3 7149 7150 7151\n\t\tf 3 6666 6667 6668\n\t\tmu 0 3 7152 7153 7154\n\t\tf 3 6669 6670 -6669\n\t\tmu 0 3 7154 7155 7156\n\t\tf 3 -6670 6671 6672\n\t\tmu 0 3 7157 7154 7158\n\t\tf 3 6673 6674 -6673\n\t\tmu 0 3 7158 7159 7160\n\t\tf 3 -6674 6675 6676\n\t\tmu 0 3 7161 7158 7162\n\t\tf 3 -6632 6677 -6677\n\t\tmu 0 3 7162 7163 7164\n\t\tf 3 6678 6679 6680\n\t\tmu 0 3 7165 7166 7167\n\t\tf 3 6681 6682 -6681\n\t\tmu 0 3 7168 7169 7170\n\t\tf 3 -6682 6683 6684\n\t\tmu 0 3 7171 7172 7173\n\t\tf 3 6685 6686 -6685\n\t\tmu 0 3 7174 7175 7176\n\t\tf 3 -6686 6687 6688\n\t\tmu 0 3 7177 7178 7179\n\t\tf 3 6689 6690 -6689\n\t\tmu 0 3 7180 7181 7182\n\t\tf 3 -6690 6691 6692\n\t\tmu 0 3 7183 7184 7185\n\t\tf 3 6693 6694 -6693\n\t\tmu 0 3 7186 7187 7188\n\t\tf 3 -6694 6695 6696\n\t\tmu 0 3 7189 7190 7191\n\t\tf 3 6697 6698 -6697\n\t\tmu 0 3 7192 7193 7194\n\t\tf 3 -6698 6699 6700\n\t\tmu 0 3 7195 7196 7197\n\t\tf 3 6701 6702 -6701\n\t\tmu 0 3 7198 7199 7200\n\t\tf 3 -6702 6703 6704\n\t\tmu 0 3 7201 7202 7203\n\t\tf 3 6705 6706 -6705\n\t\tmu 0 3 7204 7205 7206\n\t\tf 3 -6706 6707 6708\n\t\tmu 0 3 7207 7208 7209\n\t\tf 3 6709 6710 -6709\n\t\tmu 0 3 7210 7211 7212\n\t\tf 3 -6710 6711 6712\n\t\tmu 0 3 7213 7214 7215\n\t\tf 3 6713 6714 -6713\n\t\tmu 0 3 7216 7217 7218\n\t\tf 3 -6714 6715 6716\n\t\tmu 0 3 7219 7220 7221\n\t\tf 3 6717 6718 -6717\n\t\tmu 0 3 7222 7223 7224\n\t\tf 3 6719 6720 6721\n\t\tmu 0 3 7225 7226 7227\n\t\tf 3 6722 6723 -6722\n\t\tmu 0 3 7228 7229 7230\n\t\tf 3 -6723 6724 6725\n\t\tmu 0 3 7231 7232 7233\n\t\tf 3 6726 6727 -6726\n\t\tmu 0 3 7234 7235 7236\n\t\tf 3 -6679 6728 6729\n\t\tmu 0 3 7237 7238 7239\n\t\tf 3 6730 6731 -6730\n\t\tmu 0 3 7240 7241 7242\n\t\tf 3 -6731 6732 6733\n\t\tmu 0 3 7243 7244 7245\n\t\tf 3 6734 6735 -6734\n\t\tmu 0 3 7246 7247 7248\n\t\tf 3 -6735 6736 6737\n\t\tmu 0 3 7249 7250 7251\n\t\tf 3 6738 6739 -6738\n\t\tmu 0 3 7252 7253 7254\n\t\tf 3 6740 6741 6742\n\t\tmu 0 3 7255 7256 7257\n\t\tf 3 6743 6744 -6743\n\t\tmu 0 3 7258 7259 7260\n\t\tf 3 -6744 6745 6746\n\t\tmu 0 3 7261 7262 7263\n\t\tf 3 6747 6748 -6747\n\t\tmu 0 3 7264 7265 7266\n\t\tf 3 -6748 6749 6750\n\t\tmu 0 3 7267 7268 7269\n\t\tf 3 -6727 6751 -6751\n\t\tmu 0 3 7270 7271 7272\n\t\tf 3 6752 6753 6754\n\t\tmu 0 3 7273 7274 7275\n\t\tf 3 -6755 6755 6756\n\t\tmu 0 3 7276 7277 7278\n\t\tf 3 6757 6758 -6756\n\t\tmu 0 3 7279 7280 7281\n\t\tf 3 6759 6760 -6758\n\t\tmu 0 3 7282 7283 7284\n\t\tf 3 6761 6762 -6761\n\t\tmu 0 3 7285 7286 7287\n\t\tf 3 6763 6764 -6759\n\t\tmu 0 3 7288 7289 7290\n\t\tf 3 6765 6766 -6765\n\t\tmu 0 3 7291 7292 7293\n\t\tf 3 6767 6768 -6766\n\t\tmu 0 3 7294 7295 7296\n\t\tf 3 6769 6770 -6769\n\t\tmu 0 3 7297 7298 7299\n\t\tf 3 6771 6772 -6770\n\t\tmu 0 3 7300 7301 7302\n\t\tf 3 6773 6774 -6771\n\t\tmu 0 3 7303 7304 7305\n\t\tf 3 6775 6776 -6767\n\t\tmu 0 3 7306 7307 7308\n\t\tf 3 6777 6778 -6776\n\t\tmu 0 3 7309 7310 7311\n\t\tf 3 6779 6780 -6778\n\t\tmu 0 3 7312 7313 7314\n\t\tf 3 6781 6782 -6781\n\t\tmu 0 3 7315 7316 7317\n\t\tf 3 6783 6784 6785\n\t\tmu 0 3 7318 7319 7320\n\t\tf 3 6786 6787 6788\n\t\tmu 0 3 7321 7322 7323\n\t\tf 3 6789 6790 -6789\n\t\tmu 0 3 7323 7324 7321\n\t\tf 3 -6788 6791 6792\n\t\tmu 0 3 7323 7322 7325\n\t\tf 3 6793 6794 -6793\n\t\tmu 0 3 7325 7326 7323\n\t\tf 3 6795 -6795 6796\n\t\tmu 0 3 7327 7323 7326\n\t\tf 3 6797 6798 -6797\n\t\tmu 0 3 7326 7328 7327\n\t\tf 3 -6796 6799 6800\n\t\tmu 0 3 7323 7327 7329\n\t\tf 3 6801 -6790 -6801\n\t\tmu 0 3 7329 7324 7323\n\t\tf 3 6802 -6802 6803\n\t\tmu 0 3 7330 7324 7329\n\t\tf 3 6804 6805 -6804\n\t\tmu 0 3 7329 7331 7330\n\t\tf 3 -6798 6806 6807\n\t\tmu 0 3 7328 7326 7332\n\t\tf 3 6808 6809 -6808\n\t\tmu 0 3 7332 7333 7328\n\t\tf 3 6810 6811 6812\n\t\tmu 0 3 7334 7335 7336\n\t\tf 3 6813 6814 -6813\n\t\tmu 0 3 7336 7337 7334\n\t\tf 3 6815 -6815 6816\n\t\tmu 0 3 7338 7334 7337\n\t\tf 3 6817 6818 -6817\n\t\tmu 0 3 7337 7339 7338\n\t\tf 3 6819 -6812 6820\n\t\tmu 0 3 7340 7336 7335\n\t\tf 3 6821 6822 -6821\n\t\tmu 0 3 7335 7341 7340\n\t\tf 3 -6819 6823 6824\n\t\tmu 0 3 7338 7339 7342\n\t\tf 3 6825 6826 -6825\n\t\tmu 0 3 7342 7343 7338\n\t\tf 3 -6818 6827 6828\n\t\tmu 0 3 7339 7337 7344\n\t\tf 3 -6828 -6814 6829\n\t\tmu 0 3 7344 7337 7336\n\t\tf 3 6830 6831 -6829\n\t\tmu 0 3 7344 7345 7339\n\t\tf 3 6832 6833 -6830\n\t\tmu 0 3 7336 7346 7344\n\t\tf 3 -6833 -6820 6834\n\t\tmu 0 3 7346 7336 7340\n\t\tf 3 6835 6836 -6835\n\t\tmu 0 3 7340 7347 7346\n\t\tf 3 -6836 6837 6838\n\t\tmu 0 3 7347 7340 7348\n\t\tf 3 -6838 -6823 6839\n\t\tmu 0 3 7348 7340 7341\n\t\tf 3 6840 6841 -6839\n\t\tmu 0 3 7348 7349 7347\n\t\tf 3 6842 -6841 6843\n\t\tmu 0 3 7350 7349 7348\n\t\tf 3 6844 6845 -6844\n\t\tmu 0 3 7348 7351 7350\n\t\tf 3 6846 -6846 6847\n\t\tmu 0 3 7352 7350 7351\n\t\tf 3 6848 6849 -6848\n\t\tmu 0 3 7351 7353 7352\n\t\tf 3 6850 -6845 6851\n\t\tmu 0 3 7354 7351 7348\n\t\tf 3 -6849 -6851 6852\n\t\tmu 0 3 7353 7351 7354\n\t\tf 3 6853 6854 -6852\n\t\tmu 0 3 7348 7355 7354\n\t\tf 3 6855 -6854 -6840\n\t\tmu 0 3 7341 7355 7348\n\t\tf 3 6856 6857 -6853\n\t\tmu 0 3 7354 7356 7353\n\t\tf 3 6858 6859 -6858\n\t\tmu 0 3 7356 7357 7353\n\t\tf 3 6860 6861 -6860\n\t\tmu 0 3 7357 7358 7353\n\t\tf 3 6862 6863 -6861\n\t\tmu 0 3 7357 7359 7358\n\t\tf 3 -6862 6864 6865\n\t\tmu 0 3 7353 7358 7360\n\t\tf 3 -6850 -6866 6866\n\t\tmu 0 3 7352 7353 7360\n\t\tf 3 -6867 6867 6868\n\t\tmu 0 3 7352 7360 7361\n\t\tf 3 -6869 6869 6870\n\t\tmu 0 3 7352 7361 7362\n\t\tf 3 -6832 6871 6872\n\t\tmu 0 3 7339 7345 7363\n\t\tf 3 6873 -6824 -6873\n\t\tmu 0 3 7363 7342 7339\n\t\tf 3 6874 6875 6876\n\t\tmu 0 3 7364 7365 7366\n\t\tf 3 6877 6878 -6877\n\t\tmu 0 3 7367 7368 7369\n\t\tf 3 -6875 6879 6880\n\t\tmu 0 3 7370 7371 7372\n\t\tf 3 6881 6882 -6881\n\t\tmu 0 3 7373 7374 7375\n\t\tf 3 6883 -6883 6884\n\t\tmu 0 3 7376 7377 7378\n\t\tf 3 6885 6886 -6885\n\t\tmu 0 3 7379 7380 7381\n\t\tf 3 -6886 6887 6888\n\t\tmu 0 3 7382 7383 7384\n\t\tf 3 6889 6890 -6889\n\t\tmu 0 3 7384 7385 7386\n\t\tf 3 -6890 6891 6892\n\t\tmu 0 3 7387 7384 7388\n\t\tf 3 6893 6894 -6893\n\t\tmu 0 3 7388 7389 7390\n\t\tf 3 -6894 6895 6896\n\t\tmu 0 3 7391 7388 7392\n\t\tf 3 6897 6898 -6897\n\t\tmu 0 3 7392 7393 7394\n\t\tf 3 -6898 6899 6900\n\t\tmu 0 3 7395 7392 7396\n\t\tf 3 -6884 6901 6902\n\t\tmu 0 3 7397 7398 7399\n\t\tf 3 6903 -6876 -6903\n\t\tmu 0 3 7400 7401 7402\n\t\tf 3 -6904 6904 -6901\n\t\tmu 0 3 7403 7404 7405\n\t\tf 3 6905 6906 6907\n\t\tmu 0 3 7406 7407 7408\n\t\tf 3 6908 -6908 6909\n\t\tmu 0 3 7409 7410 7408\n\t\tf 3 -6910 6910 6911\n\t\tmu 0 3 7411 7408 7412\n\t\tf 3 -6911 6912 6913\n\t\tmu 0 3 7413 7408 7414\n\t\tf 3 6914 6915 -6914\n\t\tmu 0 3 7414 7415 7416\n\t\tf 3 -6915 6916 6917\n\t\tmu 0 3 7417 7414 7418\n\t\tf 3 6918 6919 -6918\n\t\tmu 0 3 7418 7419 7420\n\t\tf 3 -6919 6920 6921\n\t\tmu 0 3 7421 7418 7422\n\t\tf 3 6922 6923 -6922\n\t\tmu 0 3 7422 7423 7424\n\t\tf 3 -6923 6924 6925\n\t\tmu 0 3 7425 7422 7426\n\t\tf 3 6926 6927 -6926\n\t\tmu 0 3 7426 7427 7428\n\t\tf 3 -6927 6928 6929\n\t\tmu 0 3 7429 7426 7430\n\t\tf 3 6930 6931 -6930\n\t\tmu 0 3 7430 7431 7432\n\t\tf 3 -6931 6932 6933\n\t\tmu 0 3 7433 7430 7434\n\t\tf 3 6934 6935 -6934\n\t\tmu 0 3 7434 7435 7436\n\t\tf 3 -6935 6936 6937\n\t\tmu 0 3 7437 7434 7438\n\t\tf 3 6938 6939 -6938\n\t\tmu 0 3 7438 7439 7440\n\t\tf 3 -6939 6940 6941\n\t\tmu 0 3 7441 7438 7442\n\t\tf 3 6942 6943 -6942\n\t\tmu 0 3 7442 7443 7444\n\t\tf 3 -6943 6944 6945\n\t\tmu 0 3 7445 7442 7446\n\t\tf 3 6946 6947 -6946\n\t\tmu 0 3 7446 7447 7448\n\t\tf 3 6948 -6947 6949\n\t\tmu 0 3 7449 7450 7446\n\t\tf 3 6950 6951 -6950\n\t\tmu 0 3 7446 7451 7452\n\t\tf 3 6952 -6952 6953\n\t\tmu 0 3 7453 7454 7451\n\t\tf 3 6954 6955 -6954\n\t\tmu 0 3 7451 7455 7456\n\t\tf 3 -6956 6956 6957\n\t\tmu 0 3 7457 7455 7458\n\t\tf 3 6958 6959 -6958\n\t\tmu 0 3 7458 7459 7460\n\t\tf 3 -6959 6960 6961\n\t\tmu 0 3 7461 7458 7462\n\t\tf 3 6962 6963 -6962\n\t\tmu 0 3 7462 7463 7464\n\t\tf 3 6964 6965 6966\n\t\tmu 0 3 7465 7466 7467\n\t\tf 3 6967 6968 -6967\n\t\tmu 0 3 7468 7469 7470\n\t\tf 3 6969 6970 6971\n\t\tmu 0 3 7471 7472 7473\n\t\tf 3 6972 6973 -6972\n\t\tmu 0 3 7473 7474 7475\n\t\tf 3 -6973 6974 6975\n\t\tmu 0 3 7476 7473 7477\n\t\tf 3 6976 6977 -6976\n\t\tmu 0 3 7477 7478 7479\n\t\tf 3 -6977 6978 6979\n\t\tmu 0 3 7480 7477 7481\n\t\tf 3 6980 6981 -6980\n\t\tmu 0 3 7481 7482 7483\n\t\tf 3 -6981 6982 6983\n\t\tmu 0 3 7484 7481 7485\n\t\tf 3 6984 6985 -6984\n\t\tmu 0 3 7485 7486 7487\n\t\tf 3 -6985 6986 6987\n\t\tmu 0 3 7488 7485 7489\n\t\tf 3 6988 6989 -6988\n\t\tmu 0 3 7489 7490 7491\n\t\tf 3 -6989 6990 6991\n\t\tmu 0 3 7492 7489 7493\n\t\tf 3 6992 6993 -6992\n\t\tmu 0 3 7493 7494 7495\n\t\tf 3 6994 -6993 6995\n\t\tmu 0 3 7496 7497 7493\n\t\tf 3 6996 6997 -6996\n\t\tmu 0 3 7493 7498 7499\n\t\tf 3 -6998 6998 6999\n\t\tmu 0 3 7500 7498 7501\n\t\tf 3 -7000 7000 7001\n\t\tmu 0 3 7502 7501 7503\n\t\tf 3 -7002 7002 7003\n\t\tmu 0 3 7504 7505 7506\n\t\tf 3 -6806 7004 7005\n\t\tmu 0 3 7507 7508 7509\n\t\tf 3 7006 7007 -7006\n\t\tmu 0 3 7509 7510 7507\n\t\tf 3 -7007 7008 7009\n\t\tmu 0 3 7510 7509 7511\n\t\tf 3 7010 7011 -7010\n\t\tmu 0 3 7511 7512 7510\n\t\tf 3 -7011 7012 7013\n\t\tmu 0 3 7512 7511 7513\n\t\tf 3 7014 7015 -7014\n\t\tmu 0 3 7513 7514 7512\n\t\tf 3 -7015 7016 7017\n\t\tmu 0 3 7514 7513 7515\n\t\tf 3 7018 7019 -7018\n\t\tmu 0 3 7515 7516 7514\n\t\tf 3 -7019 7020 7021\n\t\tmu 0 3 7516 7515 7517\n\t\tf 3 7022 7023 -7022\n\t\tmu 0 3 7517 7518 7516\n\t\tf 3 -7023 7024 7025\n\t\tmu 0 3 7518 7517 7519\n\t\tf 3 7026 7027 -7026\n\t\tmu 0 3 7519 7520 7518\n\t\tf 3 7028 -7027 7029\n\t\tmu 0 3 7521 7520 7519\n\t\tf 3 7030 7031 -7030\n\t\tmu 0 3 7519 7522 7521\n\t\tf 3 -7032 7032 7033\n\t\tmu 0 3 7521 7522 7523\n\t\tf 3 7034 7035 -7034\n\t\tmu 0 3 7523 7524 7521\n\t\tf 3 -7035 7036 7037\n\t\tmu 0 3 7524 7523 7525\n\t\tf 3 7038 7039 -7038\n\t\tmu 0 3 7525 7526 7524\n\t\tf 3 7040 -7039 7041\n\t\tmu 0 3 7527 7526 7525\n\t\tf 3 7042 7043 -7042\n\t\tmu 0 3 7525 7528 7527\n\t\tf 3 7044 -7044 7045\n\t\tmu 0 3 7529 7527 7528\n\t\tf 3 7046 7047 -7046\n\t\tmu 0 3 7528 7530 7529\n\t\tf 3 -7048 7048 7049\n\t\tmu 0 3 7529 7530 7531\n\t\tf 3 7050 7051 -7050\n\t\tmu 0 3 7531 7532 7529\n\t\tf 3 -7051 7052 7053\n\t\tmu 0 3 7532 7531 7533\n\t\tf 3 7054 7055 -7054\n\t\tmu 0 3 7533 7534 7532\n\t\tf 3 -7055 7056 7057\n\t\tmu 0 3 7534 7533 7535\n\t\tf 3 7058 7059 -7058\n\t\tmu 0 3 7535 7536 7534\n\t\tf 3 -7059 7060 7061\n\t\tmu 0 3 7536 7535 7537\n\t\tf 3 7062 7063 -7062\n\t\tmu 0 3 7537 7538 7536\n\t\tf 3 -7063 7064 7065\n\t\tmu 0 3 7538 7537 7539\n\t\tf 3 7066 7067 -7066\n\t\tmu 0 3 7539 7540 7538\n\t\tf 3 -7067 7068 7069\n\t\tmu 0 3 7540 7539 7541\n\t\tf 3 7070 7071 -7070\n\t\tmu 0 3 7541 7542 7540\n\t\tf 3 -7071 7072 7073\n\t\tmu 0 3 7542 7541 7543\n\t\tf 3 7074 7075 -7074\n\t\tmu 0 3 7543 7544 7542\n\t\tf 3 -7075 7076 7077\n\t\tmu 0 3 7544 7543 7545\n\t\tf 3 -6809 7078 -7078\n\t\tmu 0 3 7545 7546 7544\n\t\tf 3 7079 7080 7081\n\t\tmu 0 3 7547 7548 7549\n\t\tf 3 7082 7083 -7082\n\t\tmu 0 3 7550 7551 7547\n\t\tf 3 -7083 7084 7085\n\t\tmu 0 3 7551 7552 7553\n\t\tf 3 7086 7087 -7086\n\t\tmu 0 3 7554 7555 7551\n\t\tf 3 7088 7089 7090\n\t\tmu 0 3 7556 7557 7558\n\t\tf 3 7091 7092 -7091\n\t\tmu 0 3 7558 7559 7556\n\t\tf 3 -7092 7093 7094\n\t\tmu 0 3 7559 7558 7560\n\t\tf 3 7095 7096 -7095\n\t\tmu 0 3 7560 7561 7559\n\t\tf 3 -7096 7097 7098\n\t\tmu 0 3 7561 7560 7562\n\t\tf 3 7099 7100 -7099\n\t\tmu 0 3 7562 7563 7561\n\t\tf 3 -7100 7101 7102\n\t\tmu 0 3 7563 7562 7564\n\t\tf 3 7103 7104 -7103\n\t\tmu 0 3 7564 7565 7563\n\t\tf 3 -7104 7105 7106\n\t\tmu 0 3 7565 7564 7566\n\t\tf 3 7107 7108 -7107\n\t\tmu 0 3 7566 7567 7565\n\t\tf 3 7109 -7108 7110\n\t\tmu 0 3 7568 7567 7566\n\t\tf 3 7111 7112 -7111\n\t\tmu 0 3 7566 7569 7568\n\t\tf 3 -7113 7113 7114\n\t\tmu 0 3 7568 7569 7570\n\t\tf 3 7115 7116 -7115\n\t\tmu 0 3 7570 7571 7568\n\t\tf 3 7117 -7116 7118\n\t\tmu 0 3 7572 7571 7570\n\t\tf 3 7119 7120 -7119\n\t\tmu 0 3 7570 7573 7572\n\t\tf 3 -7121 7121 7122\n\t\tmu 0 3 7572 7573 7574\n\t\tf 3 7123 7124 -7123\n\t\tmu 0 3 7574 7575 7572\n\t\tf 3 -7124 7125 7126\n\t\tmu 0 3 7575 7574 7576\n\t\tf 3 7127 7128 -7127\n\t\tmu 0 3 7576 7577 7575\n\t\tf 3 7129 -7128 7130\n\t\tmu 0 3 7578 7577 7576\n\t\tf 3 7131 7132 -7131\n\t\tmu 0 3 7576 7579 7578\n\t\tf 3 -7047 -7133 7133\n\t\tmu 0 3 7580 7578 7579\n\t\tf 3 7134 7135 -7134\n\t\tmu 0 3 7579 7581 7580\n\t\tf 3 -7136 7136 7137\n\t\tmu 0 3 7580 7581 7582\n\t\tf 3 7138 7139 -7138\n\t\tmu 0 3 7582 7583 7580\n\t\tf 3 -7139 7140 7141\n\t\tmu 0 3 7583 7582 7584\n\t\tf 3 7142 7143 -7142\n\t\tmu 0 3 7584 7585 7583\n\t\tf 3 7144 7145 7146\n\t\tmu 0 3 7586 7587 7588\n\t\tf 3 7147 7148 -7147\n\t\tmu 0 3 7588 7589 7590\n\t\tf 3 -7148 7149 7150\n\t\tmu 0 3 7589 7588 7591\n\t\tf 3 7151 7152 -7151\n\t\tmu 0 3 7591 7592 7589\n\t\tf 3 -7152 7153 7154\n\t\tmu 0 3 7592 7591 7593\n\t\tf 3 7155 7156 -7155\n\t\tmu 0 3 7593 7594 7592\n\t\tf 3 -7156 7157 7158\n\t\tmu 0 3 7594 7593 7595\n\t\tf 3 7159 7160 -7159\n\t\tmu 0 3 7595 7596 7594\n\t\tf 3 7161 -7160 7162\n\t\tmu 0 3 7597 7596 7595\n\t\tf 3 7163 7164 -7163\n\t\tmu 0 3 7595 7598 7597\n\t\tf 3 -7165 7165 7166\n\t\tmu 0 3 7597 7598 7599\n\t\tf 3 7167 7168 -7167\n\t\tmu 0 3 7599 7600 7597\n\t\tf 3 -7168 7169 7170\n\t\tmu 0 3 7600 7599 7601\n\t\tf 3 7171 7172 -7171\n\t\tmu 0 3 7601 7602 7600\n\t\tf 3 7173 7174 7175\n\t\tmu 0 3 7603 7604 7605\n\t\tf 3 7176 7177 -7176\n\t\tmu 0 3 7606 7607 7608\n\t\tf 3 -7174 7178 7179\n\t\tmu 0 3 7609 7610 7611\n\t\tf 3 7180 7181 -7180\n\t\tmu 0 3 7612 7613 7614\n\t\tf 3 7182 7183 7184\n\t\tmu 0 3 7615 7616 7617\n\t\tf 3 7185 7186 -7185\n\t\tmu 0 3 7618 7619 7620\n\t\tf 3 7187 -7184 7188\n\t\tmu 0 3 7621 7622 7623\n\t\tf 3 7189 7190 -7189\n\t\tmu 0 3 7624 7625 7626\n\t\tf 3 7191 7192 7193\n\t\tmu 0 3 7627 7628 7629\n\t\tf 3 7194 7195 -7194\n\t\tmu 0 3 7630 7631 7632\n\t\tf 3 7196 7197 7198\n\t\tmu 0 3 7633 7634 7635\n\t\tf 3 7199 7200 -7199\n\t\tmu 0 3 7636 7637 7638\n\t\tf 3 7201 -7198 7202\n\t\tmu 0 3 7639 7640 7641\n\t\tf 3 7203 7204 -7203\n\t\tmu 0 3 7642 7643 7644\n\t\tf 3 7205 7206 7207\n\t\tmu 0 3 7645 7646 7647\n\t\tf 3 7208 7209 -7208\n\t\tmu 0 3 7648 7649 7650\n\t\tf 3 7210 7211 7212\n\t\tmu 0 3 7651 7652 7653\n\t\tf 3 7213 7214 -7213\n\t\tmu 0 3 7653 7654 7651\n\t\tf 3 -7212 7215 7216\n\t\tmu 0 3 7653 7652 7655\n\t\tf 3 7217 7218 -7217\n\t\tmu 0 3 7655 7656 7653\n\t\tf 3 7219 -7211 7220\n\t\tmu 0 3 7657 7652 7651\n\t\tf 3 -7216 -7220 7221\n\t\tmu 0 3 7655 7652 7657\n\t\tf 3 7222 7223 -7221\n\t\tmu 0 3 7651 7658 7657\n\t\tf 3 -7224 7224 7225\n\t\tmu 0 3 7657 7658 7659\n\t\tf 3 7226 7227 -7226\n\t\tmu 0 3 7659 7660 7657\n\t\tf 3 -7228 7228 7229\n\t\tmu 0 3 7657 7660 7661\n\t\tf 3 7230 7231 -7230\n\t\tmu 0 3 7661 7662 7657\n\t\tf 3 -7232 7232 -7222\n\t\tmu 0 3 7657 7662 7655\n\t\tf 3 7233 -7231 7234\n\t\tmu 0 3 7663 7662 7661\n\t\tf 3 -7233 -7234 7235\n\t\tmu 0 3 7655 7662 7663\n\t\tf 3 7236 7237 -7235\n\t\tmu 0 3 7661 7664 7663\n\t\tf 3 7238 -7218 7239\n\t\tmu 0 3 7665 7656 7655\n\t\tf 3 7240 7241 -7240\n\t\tmu 0 3 7655 7666 7665\n\t\tf 3 7242 -7241 -7236\n\t\tmu 0 3 7663 7666 7655\n\t\tf 3 7243 7244 7245\n\t\tmu 0 3 7667 7668 7669\n\t\tf 3 7246 7247 -7246\n\t\tmu 0 3 7670 7671 7667\n\t\tf 3 -7244 7248 7249\n\t\tmu 0 3 7672 7667 7673\n\t\tf 3 7250 7251 -7250\n\t\tmu 0 3 7673 7674 7675\n\t\tf 3 7252 -7251 7253\n\t\tmu 0 3 7676 7677 7673\n\t\tf 3 7254 7255 -7254\n\t\tmu 0 3 7673 7678 7679\n\t\tf 3 7256 7257 7258\n\t\tmu 0 3 7680 7681 7682\n\t\tf 3 -7259 7259 7260\n\t\tmu 0 3 7680 7682 7683\n\t\tf 3 7261 -7261 7262\n\t\tmu 0 3 7684 7680 7683\n\t\tf 3 7263 7264 7265\n\t\tmu 0 3 7685 7686 7687\n\t\tf 3 -7266 7266 7267\n\t\tmu 0 3 7685 7687 7688\n\t\tf 3 7268 7269 -7267\n\t\tmu 0 3 7687 7689 7688\n\t\tf 3 7270 7271 7272\n\t\tmu 0 3 7690 7691 7692\n\t\tf 3 7273 -7273 7274\n\t\tmu 0 3 7693 7690 7692\n\t\tf 3 -7274 7275 7276\n\t\tmu 0 3 7690 7693 7694\n\t\tf 3 7277 -7277 7278\n\t\tmu 0 3 7695 7690 7694\n\t\tf 3 -7278 7279 7280\n\t\tmu 0 3 7690 7695 7696\n\t\tf 3 7281 -7281 7282\n\t\tmu 0 3 7697 7690 7696\n\t\tf 3 -7282 7283 7284\n\t\tmu 0 3 7690 7697 7698\n\t\tf 3 7285 -7285 7286\n\t\tmu 0 3 7699 7690 7698\n\t\tf 3 -7286 7287 7288\n\t\tmu 0 3 7690 7699 7700\n\t\tf 3 -7271 -7289 7289\n\t\tmu 0 3 7691 7690 7700\n\t\tf 3 7290 7291 7292\n\t\tmu 0 3 7701 7702 7703\n\t\tf 3 7293 7294 -7293\n\t\tmu 0 3 7703 7704 7701\n\t\tf 3 7295 7296 7297\n\t\tmu 0 3 7705 7706 7707\n\t\tf 3 7298 7299 -7298\n\t\tmu 0 3 7708 7709 7705\n\t\tf 3 7300 7301 7302\n\t\tmu 0 3 7710 7711 7712\n\t\tf 3 7303 7304 -7303\n\t\tmu 0 3 7712 7713 7714\n\t\tf 3 7305 7306 7307\n\t\tmu 0 3 7715 7716 7717\n\t\tf 3 7308 7309 -7308\n\t\tmu 0 3 7717 7718 7719\n\t\tf 3 7310 7311 7312\n\t\tmu 0 3 7720 7721 7722\n\t\tf 3 7313 7314 -7313\n\t\tmu 0 3 7722 7723 7724\n\t\tf 3 7315 7316 7317\n\t\tmu 0 3 7725 7726 7727\n\t\tf 3 7318 7319 -7318\n\t\tmu 0 3 7727 7728 7729\n\t\tf 3 7320 7321 7322\n\t\tmu 0 3 7730 7731 7732\n\t\tf 3 7323 7324 -7323\n\t\tmu 0 3 7732 7733 7734\n\t\tf 3 7325 7326 7327\n\t\tmu 0 3 7735 7736 7737\n\t\tf 3 7328 7329 -7328\n\t\tmu 0 3 7737 7738 7739\n\t\tf 3 7330 7331 7332\n\t\tmu 0 3 7740 7741 7742\n\t\tf 3 7333 7334 -7333\n\t\tmu 0 3 7742 7743 7744\n\t\tf 3 7335 7336 7337\n\t\tmu 0 3 7745 7746 7747\n\t\tf 3 7338 7339 -7338\n\t\tmu 0 3 7747 7748 7749\n\t\tf 3 7340 7341 7342\n\t\tmu 0 3 7750 7751 7752\n\t\tf 3 7343 7344 -7343\n\t\tmu 0 3 7752 7753 7750\n\t\tf 3 7345 7346 7347\n\t\tmu 0 3 7754 7755 7756\n\t\tf 3 7348 7349 -7348\n\t\tmu 0 3 7756 7757 7758\n\t\tf 3 7350 7351 7352\n\t\tmu 0 3 7759 7760 7761\n\t\tf 3 7353 7354 -7353\n\t\tmu 0 3 7761 7762 7763\n\t\tf 3 7355 7356 7357\n\t\tmu 0 3 7764 7765 7766\n\t\tf 3 7358 7359 -7358\n\t\tmu 0 3 7766 7767 7768\n\t\tf 3 7360 7361 7362\n\t\tmu 0 3 7769 7770 7771\n\t\tf 3 7363 7364 -7363\n\t\tmu 0 3 7771 7772 7773\n\t\tf 3 7365 7366 7367\n\t\tmu 0 3 7774 7775 7776\n\t\tf 3 7368 7369 -7368\n\t\tmu 0 3 7776 7777 7778\n\t\tf 3 7370 7371 7372\n\t\tmu 0 3 7779 7780 7781\n\t\tf 3 7373 7374 -7373\n\t\tmu 0 3 7781 7782 7783\n\t\tf 3 7375 7376 7377\n\t\tmu 0 3 7784 7785 7786\n\t\tf 3 7378 7379 -7378\n\t\tmu 0 3 7786 7787 7788\n\t\tf 3 7380 7381 7382\n\t\tmu 0 3 7789 7790 7791\n\t\tf 3 7383 7384 -7383\n\t\tmu 0 3 7791 7792 7793\n\t\tf 3 7385 7386 7387\n\t\tmu 0 3 7794 7795 7796\n\t\tf 3 7388 7389 -7388\n\t\tmu 0 3 7796 7797 7798\n\t\tf 3 7390 7391 7392\n\t\tmu 0 3 7799 7800 7801\n\t\tf 3 7393 7394 -7393\n\t\tmu 0 3 7802 7803 7804\n\t\tf 3 7395 -7392 7396\n\t\tmu 0 3 7805 7806 7807\n\t\tf 3 7397 7398 -7397\n\t\tmu 0 3 7808 7809 7810\n\t\tf 3 -7394 7399 7400\n\t\tmu 0 3 7811 7812 7813\n\t\tf 3 -7400 -7396 7401\n\t\tmu 0 3 7814 7815 7816\n\t\tf 3 7402 7403 -7401\n\t\tmu 0 3 7817 7818 7819\n\t\tf 3 7404 -7403 7405\n\t\tmu 0 3 7820 7821 7822\n\t\tf 3 7406 7407 -7406\n\t\tmu 0 3 7823 7824 7825\n\t\tf 3 7408 -7407 7409\n\t\tmu 0 3 7826 7827 7828\n\t\tf 3 7410 7411 -7410\n\t\tmu 0 3 7829 7830 7831\n\t\tf 3 7412 -7411 -7402\n\t\tmu 0 3 7832 7833 7834\n\t\tf 3 -7412 7413 7414\n\t\tmu 0 3 7835 7836 7837\n\t\tf 3 -7414 -7413 7415\n\t\tmu 0 3 7838 7839 7840\n\t\tf 3 7416 7417 -7415\n\t\tmu 0 3 7841 7842 7843\n\t\tf 3 -7399 7418 7419\n\t\tmu 0 3 7844 7845 7846\n\t\tf 3 7420 7421 -7420\n\t\tmu 0 3 7847 7848 7849\n\t\tf 3 -7422 7422 -7416\n\t\tmu 0 3 7850 7851 7852\n\t\tf 3 7423 7424 7425\n\t\tmu 0 3 7853 7854 7855\n\t\tf 3 7426 7427 -7426\n\t\tmu 0 3 7856 7857 7858;\n\tsetAttr \".fc[4000:4499]\"\n\t\tf 3 -7424 7428 7429\n\t\tmu 0 3 7859 7860 7861\n\t\tf 3 7430 7431 -7430\n\t\tmu 0 3 7862 7863 7864\n\t\tf 3 -7431 7432 7433\n\t\tmu 0 3 7865 7866 7867\n\t\tf 3 7434 7435 -7434\n\t\tmu 0 3 7868 7869 7870\n\t\tf 3 7436 7437 7438\n\t\tmu 0 3 7871 7872 7873\n\t\tf 3 -7439 7439 7440\n\t\tmu 0 3 7874 7875 7876\n\t\tf 3 -7441 7441 7442\n\t\tmu 0 3 7877 7878 7879\n\t\tf 3 7443 7444 7445\n\t\tmu 0 3 7880 7881 7882\n\t\tf 3 -7446 7446 7447\n\t\tmu 0 3 7883 7884 7885\n\t\tf 3 -7448 7448 7449\n\t\tmu 0 3 7886 7887 7888\n\t\tf 3 7450 7451 7452\n\t\tmu 0 3 7889 7890 7891\n\t\tf 3 7453 -7451 7454\n\t\tmu 0 3 7892 7893 7894\n\t\tf 3 7455 7456 -7455\n\t\tmu 0 3 7895 7896 7897\n\t\tf 3 7457 -7456 7458\n\t\tmu 0 3 7898 7899 7900\n\t\tf 3 7459 7460 -7459\n\t\tmu 0 3 7901 7902 7903\n\t\tf 3 7461 -7460 7462\n\t\tmu 0 3 7904 7905 7906\n\t\tf 3 7463 7464 -7463\n\t\tmu 0 3 7907 7908 7909\n\t\tf 3 7465 -7464 7466\n\t\tmu 0 3 7910 7911 7912\n\t\tf 3 7467 7468 -7467\n\t\tmu 0 3 7913 7914 7915\n\t\tf 3 7469 -7468 -7453\n\t\tmu 0 3 7916 7917 7918\n\t\tf 3 7470 7471 7472\n\t\tmu 0 3 7919 7920 7921\n\t\tf 3 7473 7474 -7473\n\t\tmu 0 3 7922 7923 7924\n\t\tf 3 7475 7476 7477\n\t\tmu 0 3 7925 7926 7927\n\t\tf 3 7478 7479 -7478\n\t\tmu 0 3 7928 7929 7930\n\t\tf 3 7480 7481 7482\n\t\tmu 0 3 7931 7932 7933\n\t\tf 3 7483 7484 -7483\n\t\tmu 0 3 7934 7935 7936\n\t\tf 3 7485 7486 7487\n\t\tmu 0 3 7937 7938 7939\n\t\tf 3 7488 7489 -7488\n\t\tmu 0 3 7940 7941 7942\n\t\tf 3 7490 7491 7492\n\t\tmu 0 3 7943 7944 7945\n\t\tf 3 7493 7494 -7493\n\t\tmu 0 3 7946 7947 7948\n\t\tf 3 7495 7496 7497\n\t\tmu 0 3 7949 7950 7951\n\t\tf 3 7498 7499 -7498\n\t\tmu 0 3 7952 7953 7954\n\t\tf 3 7500 7501 7502\n\t\tmu 0 3 7955 7956 7957\n\t\tf 3 7503 7504 -7503\n\t\tmu 0 3 7958 7959 7960\n\t\tf 3 7505 7506 7507\n\t\tmu 0 3 7961 7962 7963\n\t\tf 3 7508 7509 -7508\n\t\tmu 0 3 7964 7965 7966\n\t\tf 3 7510 7511 7512\n\t\tmu 0 3 7967 7968 7969\n\t\tf 3 7513 7514 -7513\n\t\tmu 0 3 7970 7971 7972\n\t\tf 3 7515 7516 7517\n\t\tmu 0 3 7973 7974 7975\n\t\tf 3 7518 7519 -7518\n\t\tmu 0 3 7976 7977 7978\n\t\tf 3 7520 7521 7522\n\t\tmu 0 3 7979 7980 7981\n\t\tf 3 7523 7524 -7523\n\t\tmu 0 3 7982 7983 7984\n\t\tf 3 7525 7526 7527\n\t\tmu 0 3 7985 7986 7987\n\t\tf 3 7528 7529 -7528\n\t\tmu 0 3 7988 7989 7990\n\t\tf 3 7530 7531 7532\n\t\tmu 0 3 7991 7992 7993\n\t\tf 3 7533 7534 -7533\n\t\tmu 0 3 7994 7995 7996\n\t\tf 3 7535 7536 7537\n\t\tmu 0 3 7997 7998 7999\n\t\tf 3 7538 7539 -7538\n\t\tmu 0 3 8000 8001 8002\n\t\tf 3 7540 7541 7542\n\t\tmu 0 3 8003 8004 8005\n\t\tf 3 7543 7544 -7543\n\t\tmu 0 3 8006 8007 8008\n\t\tf 3 7545 7546 7547\n\t\tmu 0 3 8009 8010 8011\n\t\tf 3 7548 7549 -7548\n\t\tmu 0 3 8012 8013 8014\n\t\tf 3 7550 7551 7552\n\t\tmu 0 3 8015 8016 8017\n\t\tf 3 7553 7554 -7553\n\t\tmu 0 3 8018 8019 8020\n\t\tf 3 7555 7556 7557\n\t\tmu 0 3 8021 8022 8023\n\t\tf 3 7558 7559 -7558\n\t\tmu 0 3 8024 8025 8026\n\t\tf 3 7560 7561 7562\n\t\tmu 0 3 8027 8028 8029\n\t\tf 3 7563 7564 -7563\n\t\tmu 0 3 8030 8031 8032\n\t\tf 3 7565 7566 7567\n\t\tmu 0 3 8033 8034 8035\n\t\tf 3 7568 7569 -7568\n\t\tmu 0 3 8036 8037 8038\n\t\tf 3 7570 7571 7572\n\t\tmu 0 3 8039 8040 8041\n\t\tf 3 7573 7574 -7573\n\t\tmu 0 3 8041 8042 8039\n\t\tf 3 7575 -7575 7576\n\t\tmu 0 3 8043 8039 8042\n\t\tf 3 7577 7578 -7577\n\t\tmu 0 3 8042 8044 8043\n\t\tf 3 -7576 7579 7580\n\t\tmu 0 3 8039 8043 8045\n\t\tf 3 7581 7582 -7581\n\t\tmu 0 3 8045 8046 8039\n\t\tf 3 -7571 7583 7584\n\t\tmu 0 3 8040 8039 8047\n\t\tf 3 7585 7586 -7585\n\t\tmu 0 3 8048 8049 8040\n\t\tf 3 7587 -7582 7588\n\t\tmu 0 3 8050 8046 8045\n\t\tf 3 7589 7590 -7589\n\t\tmu 0 3 8045 8051 8050\n\t\tf 3 7591 -7586 7592\n\t\tmu 0 3 8052 8049 8053\n\t\tf 3 7593 7594 -7593\n\t\tmu 0 3 8054 8055 8052\n\t\tf 3 -7574 7595 7596\n\t\tmu 0 3 8042 8041 8056\n\t\tf 3 7597 7598 -7597\n\t\tmu 0 3 8056 8057 8042\n\t\tf 3 -7578 -7599 7599\n\t\tmu 0 3 8044 8042 8057\n\t\tf 3 7600 7601 -7600\n\t\tmu 0 3 8057 8058 8044\n\t\tf 3 7602 -7598 7603\n\t\tmu 0 3 8059 8057 8056\n\t\tf 3 7604 7605 -7604\n\t\tmu 0 3 8056 8060 8059\n\t\tf 3 7606 -7601 7607\n\t\tmu 0 3 8061 8058 8057\n\t\tf 3 -7603 7608 -7608\n\t\tmu 0 3 8057 8059 8061\n\t\tf 3 7609 7610 7611\n\t\tmu 0 3 8062 8045 8063\n\t\tf 3 7612 7613 -7612\n\t\tmu 0 3 8064 8065 8062\n\t\tf 3 -7613 7614 7615\n\t\tmu 0 3 8065 8066 8044\n\t\tf 3 7616 7617 7618\n\t\tmu 0 3 8067 8068 8069\n\t\tf 3 7619 7620 -7619\n\t\tmu 0 3 8070 8071 8067\n\t\tf 3 -7620 7621 7622\n\t\tmu 0 3 8071 8072 8073\n\t\tf 3 7623 7624 -7616\n\t\tmu 0 3 8044 8074 8065\n\t\tf 3 -7624 -7602 7625\n\t\tmu 0 3 8075 8044 8058\n\t\tf 3 7626 7627 -7623\n\t\tmu 0 3 8073 8076 8071\n\t\tf 3 -7617 7628 7629\n\t\tmu 0 3 8077 8067 8078\n\t\tf 3 7630 7631 -7630\n\t\tmu 0 3 8078 8079 8080\n\t\tf 3 -7610 7632 7633\n\t\tmu 0 3 8045 8062 8081\n\t\tf 3 7634 -7590 -7634\n\t\tmu 0 3 8082 8051 8045\n\t\tf 3 7635 7636 -7626\n\t\tmu 0 3 8058 8083 8084\n\t\tf 3 -7627 7637 7638\n\t\tmu 0 3 8076 8073 8083\n\t\tf 3 -7636 -7607 7639\n\t\tmu 0 3 8083 8058 8061\n\t\tf 3 7640 7641 -7639\n\t\tmu 0 3 8083 8085 8076\n\t\tf 3 7642 7643 -7640\n\t\tmu 0 3 8061 8086 8083\n\t\tf 3 -7641 -7644 7644\n\t\tmu 0 3 8085 8083 8086\n\t\tf 3 7645 7646 -7645\n\t\tmu 0 3 8086 8087 8085\n\t\tf 3 7647 7648 7649\n\t\tmu 0 3 8088 8089 8090\n\t\tf 3 7650 7651 7652\n\t\tmu 0 3 8091 8092 8093\n\t\tf 3 7653 7654 -7653\n\t\tmu 0 3 8094 8095 8091\n\t\tf 3 7655 7656 7657\n\t\tmu 0 3 8096 8097 8098\n\t\tf 3 7658 7659 -7658\n\t\tmu 0 3 8099 8100 8096\n\t\tf 3 7660 -7660 7661\n\t\tmu 0 3 8101 8096 8102\n\t\tf 3 7662 7663 -7662\n\t\tmu 0 3 8103 8104 8101\n\t\tf 3 7664 -7664 7665\n\t\tmu 0 3 8105 8101 8106\n\t\tf 3 7666 7667 -7666\n\t\tmu 0 3 8107 8108 8105\n\t\tf 3 7668 -7668 7669\n\t\tmu 0 3 8109 8105 8110\n\t\tf 3 7670 7671 -7670\n\t\tmu 0 3 8111 8112 8109\n\t\tf 3 7672 -7672 7673\n\t\tmu 0 3 8113 8109 8114\n\t\tf 3 7674 7675 -7674\n\t\tmu 0 3 8115 8116 8113\n\t\tf 3 7676 7677 -7650\n\t\tmu 0 3 8090 8117 8118\n\t\tf 3 7678 7679 7680\n\t\tmu 0 3 8119 8120 8121\n\t\tf 3 7681 -7676 7682\n\t\tmu 0 3 8122 8113 8123\n\t\tf 3 7683 7684 -7683\n\t\tmu 0 3 8124 8052 8122\n\t\tf 3 7685 -7685 7686\n\t\tmu 0 3 8125 8122 8052\n\t\tf 3 -7595 7687 -7687\n\t\tmu 0 3 8052 8126 8125\n\t\tf 3 7688 7689 7690\n\t\tmu 0 3 8127 8128 8129\n\t\tf 3 7691 7692 -7691\n\t\tmu 0 3 8130 8131 8127\n\t\tf 3 7693 7694 7695\n\t\tmu 0 3 8132 8133 8134\n\t\tf 3 7696 7697 -7696\n\t\tmu 0 3 8135 8136 8132\n\t\tf 3 7698 7699 7700\n\t\tmu 0 3 8137 8138 8079\n\t\tf 3 -7631 7701 -7701\n\t\tmu 0 3 8079 8078 8137\n\t\tf 3 7702 -7702 7703\n\t\tmu 0 3 8139 8137 8078\n\t\tf 3 7704 7705 -7704\n\t\tmu 0 3 8078 8140 8139\n\t\tf 3 7706 -7706 7707\n\t\tmu 0 3 8141 8139 8142\n\t\tf 3 7708 7709 -7708\n\t\tmu 0 3 8143 8144 8141\n\t\tf 3 -7710 7710 7711\n\t\tmu 0 3 8141 8145 8146\n\t\tf 3 7712 7713 -7712\n\t\tmu 0 3 8147 8148 8141\n\t\tf 3 -7713 7714 7715\n\t\tmu 0 3 8148 8149 8150\n\t\tf 3 7716 7717 -7716\n\t\tmu 0 3 8151 8152 8148\n\t\tf 3 7718 -7717 7719\n\t\tmu 0 3 8153 8152 8154\n\t\tf 3 7720 7721 -7720\n\t\tmu 0 3 8155 8156 8153\n\t\tf 3 7722 -7722 -7681\n\t\tmu 0 3 8157 8153 8158\n\t\tf 3 7723 7724 7725\n\t\tmu 0 3 8159 8160 8161\n\t\tf 3 7726 7727 -7726\n\t\tmu 0 3 8161 8162 8159\n\t\tf 3 7728 -7728 7729\n\t\tmu 0 3 8163 8159 8162\n\t\tf 3 7730 7731 -7730\n\t\tmu 0 3 8162 8164 8163\n\t\tf 3 7732 -7732 7733\n\t\tmu 0 3 8165 8163 8164\n\t\tf 3 7734 7735 -7734\n\t\tmu 0 3 8164 8166 8165\n\t\tf 3 7736 -7736 7737\n\t\tmu 0 3 8167 8165 8166\n\t\tf 3 7738 7739 -7738\n\t\tmu 0 3 8166 8168 8167\n\t\tf 3 7740 -7740 7741\n\t\tmu 0 3 8169 8167 8168\n\t\tf 3 7742 7743 -7742\n\t\tmu 0 3 8168 8170 8169\n\t\tf 3 7744 -7744 7745\n\t\tmu 0 3 8171 8169 8170\n\t\tf 3 7746 7747 -7746\n\t\tmu 0 3 8170 8172 8171\n\t\tf 3 7748 -7748 7749\n\t\tmu 0 3 8173 8171 8172\n\t\tf 3 7750 7751 -7750\n\t\tmu 0 3 8172 8174 8173\n\t\tf 3 7752 -7752 7753\n\t\tmu 0 3 8175 8173 8174\n\t\tf 3 7754 7755 -7754\n\t\tmu 0 3 8174 8176 8175\n\t\tf 3 7756 -7756 7757\n\t\tmu 0 3 8177 8175 8176\n\t\tf 3 7758 7759 -7758\n\t\tmu 0 3 8176 8178 8177\n\t\tf 3 7760 -7760 7761\n\t\tmu 0 3 8179 8177 8178\n\t\tf 3 7762 7763 -7762\n\t\tmu 0 3 8178 8180 8179\n\t\tf 3 7764 -7764 7765\n\t\tmu 0 3 8181 8179 8180\n\t\tf 3 7766 7767 -7766\n\t\tmu 0 3 8180 8182 8181\n\t\tf 3 7768 -7768 7769\n\t\tmu 0 3 8183 8181 8182\n\t\tf 3 7770 7771 -7770\n\t\tmu 0 3 8182 8184 8183\n\t\tf 3 7772 -7772 7773\n\t\tmu 0 3 8185 8183 8184\n\t\tf 3 7774 7775 -7774\n\t\tmu 0 3 8184 8186 8185\n\t\tf 3 7776 -7776 7777\n\t\tmu 0 3 8187 8185 8186\n\t\tf 3 7778 7779 -7778\n\t\tmu 0 3 8186 8188 8187\n\t\tf 3 7780 -7780 7781\n\t\tmu 0 3 8189 8187 8188\n\t\tf 3 7782 7783 -7782\n\t\tmu 0 3 8188 8190 8189\n\t\tf 3 7784 -7784 7785\n\t\tmu 0 3 8191 8189 8190\n\t\tf 3 7786 7787 -7786\n\t\tmu 0 3 8190 8192 8191\n\t\tf 3 7788 -7788 7789\n\t\tmu 0 3 8193 8191 8192\n\t\tf 3 7790 7791 -7790\n\t\tmu 0 3 8192 8194 8193\n\t\tf 3 7792 -7792 7793\n\t\tmu 0 3 8160 8193 8194\n\t\tf 3 7794 -7725 -7794\n\t\tmu 0 3 8194 8161 8160\n\t\tf 3 7795 7796 7797\n\t\tmu 0 3 8195 8196 8197\n\t\tf 3 7798 7799 -7798\n\t\tmu 0 3 8197 8198 8195\n\t\tf 3 7800 -7800 7801\n\t\tmu 0 3 8199 8195 8198\n\t\tf 3 7802 7803 -7802\n\t\tmu 0 3 8198 8200 8199\n\t\tf 3 7804 -7804 7805\n\t\tmu 0 3 8201 8199 8200\n\t\tf 3 7806 7807 -7806\n\t\tmu 0 3 8200 8202 8201\n\t\tf 3 7808 -7808 7809\n\t\tmu 0 3 8203 8201 8202\n\t\tf 3 7810 7811 -7810\n\t\tmu 0 3 8202 8204 8203\n\t\tf 3 7812 -7812 7813\n\t\tmu 0 3 8205 8203 8204\n\t\tf 3 7814 7815 -7814\n\t\tmu 0 3 8204 8206 8205\n\t\tf 3 7816 -7816 7817\n\t\tmu 0 3 8207 8205 8206\n\t\tf 3 7818 7819 -7818\n\t\tmu 0 3 8206 8208 8207\n\t\tf 3 7820 -7820 7821\n\t\tmu 0 3 8209 8207 8208\n\t\tf 3 7822 7823 -7822\n\t\tmu 0 3 8208 8210 8209\n\t\tf 3 7824 -7824 7825\n\t\tmu 0 3 8211 8209 8210\n\t\tf 3 7826 7827 -7826\n\t\tmu 0 3 8210 8212 8211\n\t\tf 3 7828 -7828 7829\n\t\tmu 0 3 8213 8211 8212\n\t\tf 3 7830 7831 -7830\n\t\tmu 0 3 8212 8214 8213\n\t\tf 3 7832 -7832 7833\n\t\tmu 0 3 8215 8213 8214\n\t\tf 3 7834 7835 -7834\n\t\tmu 0 3 8214 8216 8215\n\t\tf 3 7836 -7836 7837\n\t\tmu 0 3 8217 8215 8216\n\t\tf 3 7838 7839 -7838\n\t\tmu 0 3 8216 8218 8217\n\t\tf 3 7840 -7840 7841\n\t\tmu 0 3 8219 8217 8218\n\t\tf 3 7842 7843 -7842\n\t\tmu 0 3 8218 8220 8219\n\t\tf 3 7844 -7844 7845\n\t\tmu 0 3 8221 8219 8220\n\t\tf 3 7846 7847 -7846\n\t\tmu 0 3 8220 8222 8221\n\t\tf 3 7848 -7848 7849\n\t\tmu 0 3 8223 8221 8222\n\t\tf 3 7850 7851 -7850\n\t\tmu 0 3 8222 8224 8223\n\t\tf 3 7852 7853 7854\n\t\tmu 0 3 8225 8226 8227\n\t\tf 3 7855 7856 -7855\n\t\tmu 0 3 8228 8229 8225\n\t\tf 3 7857 7858 7859\n\t\tmu 0 3 8230 8231 8232\n\t\tf 3 7860 7861 -7860\n\t\tmu 0 3 8233 8234 8230\n\t\tf 3 7862 7863 7864\n\t\tmu 0 3 8235 8236 8237\n\t\tf 3 7865 7866 -7865\n\t\tmu 0 3 8238 8239 8235\n\t\tf 3 7867 -7867 7868\n\t\tmu 0 3 8196 8235 8239\n\t\tf 3 7869 -7797 -7869\n\t\tmu 0 3 8239 8197 8196\n\t\tf 3 7870 7871 7872\n\t\tmu 0 3 8240 8241 8242\n\t\tf 3 7873 -7872 7874\n\t\tmu 0 3 8243 8242 8244\n\t\tf 3 7875 7876 -7875\n\t\tmu 0 3 8245 8246 8243\n\t\tf 3 7877 -7877 7878\n\t\tmu 0 3 8247 8243 8248\n\t\tf 3 7879 7880 -7879\n\t\tmu 0 3 8249 8250 8247\n\t\tf 3 7881 -7881 7882\n\t\tmu 0 3 8251 8247 8252\n\t\tf 3 7883 7884 -7883\n\t\tmu 0 3 8253 8254 8251\n\t\tf 3 7885 -7885 7886\n\t\tmu 0 3 8255 8251 8256\n\t\tf 3 7887 7888 -7887\n\t\tmu 0 3 8257 8258 8255\n\t\tf 3 7889 -7889 7890\n\t\tmu 0 3 8259 8255 8260\n\t\tf 3 7891 7892 -7891\n\t\tmu 0 3 8261 8262 8259\n\t\tf 3 7893 -7893 7894\n\t\tmu 0 3 8263 8259 8264\n\t\tf 3 7895 7896 -7895\n\t\tmu 0 3 8265 8266 8263\n\t\tf 3 7897 -7897 7898\n\t\tmu 0 3 8267 8263 8268\n\t\tf 3 7899 7900 -7899\n\t\tmu 0 3 8269 8270 8267\n\t\tf 3 7901 -7901 7902\n\t\tmu 0 3 8271 8267 8272\n\t\tf 3 7903 7904 -7903\n\t\tmu 0 3 8273 8274 8271\n\t\tf 3 7905 -7905 7906\n\t\tmu 0 3 8275 8271 8276\n\t\tf 3 7907 7908 -7907\n\t\tmu 0 3 8277 8278 8275\n\t\tf 3 7909 -7909 7910\n\t\tmu 0 3 8279 8275 8280\n\t\tf 3 7911 7912 -7911\n\t\tmu 0 3 8281 8282 8279\n\t\tf 3 7913 -7913 7914\n\t\tmu 0 3 8283 8279 8284\n\t\tf 3 7915 7916 -7915\n\t\tmu 0 3 8285 8286 8283\n\t\tf 3 7917 -7917 7918\n\t\tmu 0 3 8287 8283 8288\n\t\tf 3 7919 7920 -7919\n\t\tmu 0 3 8289 8290 8287\n\t\tf 3 7921 -7921 7922\n\t\tmu 0 3 8291 8287 8292\n\t\tf 3 7923 7924 -7923\n\t\tmu 0 3 8293 8294 8291\n\t\tf 3 7925 -7925 7926\n\t\tmu 0 3 8295 8291 8296\n\t\tf 3 7927 7928 -7927\n\t\tmu 0 3 8297 8298 8295\n\t\tf 3 7929 -7929 7930\n\t\tmu 0 3 8299 8295 8300\n\t\tf 3 7931 7932 -7931\n\t\tmu 0 3 8301 8302 8299\n\t\tf 3 7933 -7933 7934\n\t\tmu 0 3 8303 8299 8304\n\t\tf 3 7935 7936 -7935\n\t\tmu 0 3 8305 8306 8303\n\t\tf 3 7937 -7937 7938\n\t\tmu 0 3 8307 8303 8308\n\t\tf 3 7939 7940 -7939\n\t\tmu 0 3 8309 8310 8307\n\t\tf 3 7941 -7941 -7873\n\t\tmu 0 3 8242 8307 8311\n\t\tf 3 7942 7943 7944\n\t\tmu 0 3 8312 8313 8314\n\t\tf 3 7945 7946 -7945\n\t\tmu 0 3 8314 8315 8312\n\t\tf 3 -7947 7947 7948\n\t\tmu 0 3 8312 8315 8316\n\t\tf 3 7949 7950 -7949\n\t\tmu 0 3 8316 8317 8312\n\t\tf 3 7951 -7950 7952\n\t\tmu 0 3 8318 8317 8316\n\t\tf 3 7953 7954 -7953\n\t\tmu 0 3 8316 8319 8318\n\t\tf 3 7955 -7944 7956\n\t\tmu 0 3 8320 8314 8313\n\t\tf 3 7957 7958 -7957\n\t\tmu 0 3 8313 8321 8320\n\t\tf 3 7959 -7959 7960\n\t\tmu 0 3 8322 8320 8321\n\t\tf 3 7961 7962 -7961\n\t\tmu 0 3 8321 8323 8322\n\t\tf 3 7963 7964 7965\n\t\tmu 0 3 8324 8325 8326\n\t\tf 3 7966 7967 -7966\n\t\tmu 0 3 8327 8328 8324\n\t\tf 3 7968 7969 7970\n\t\tmu 0 3 8329 8330 8331\n\t\tf 3 7971 7972 -7971\n\t\tmu 0 3 8332 8333 8329\n\t\tf 3 7973 7974 7975\n\t\tmu 0 3 8334 8335 8336\n\t\tf 3 7976 7977 -7976\n\t\tmu 0 3 8337 8338 8334\n\t\tf 3 7978 7979 7980\n\t\tmu 0 3 8339 8340 8341\n\t\tf 3 7981 7982 -7981\n\t\tmu 0 3 8342 8343 8339\n\t\tf 3 7983 7984 7985\n\t\tmu 0 3 8344 8345 8346\n\t\tf 3 7986 7987 -7986\n\t\tmu 0 3 8347 8348 8344\n\t\tf 3 7988 -7988 7989\n\t\tmu 0 3 8349 8344 8348\n\t\tf 3 7990 7991 -7990\n\t\tmu 0 3 8348 8350 8349\n\t\tf 3 7992 -7992 7993\n\t\tmu 0 3 8351 8349 8350\n\t\tf 3 7994 7995 -7994\n\t\tmu 0 3 8350 8352 8351\n\t\tf 3 7996 -7996 7997\n\t\tmu 0 3 8353 8351 8352\n\t\tf 3 7998 7999 -7998\n\t\tmu 0 3 8352 8354 8353\n\t\tf 3 8000 -8000 8001\n\t\tmu 0 3 8355 8353 8354\n\t\tf 3 8002 8003 -8002\n\t\tmu 0 3 8354 8356 8355\n\t\tf 3 8004 8005 8006\n\t\tmu 0 3 8357 8358 8359\n\t\tf 3 8007 8008 -8007\n\t\tmu 0 3 8360 8361 8357\n\t\tf 3 8009 8010 8011\n\t\tmu 0 3 8362 8363 8364\n\t\tf 3 8012 8013 -8012\n\t\tmu 0 3 8365 8366 8362\n\t\tf 3 8014 -8014 8015\n\t\tmu 0 3 8367 8362 8366\n\t\tf 3 8016 8017 -8016\n\t\tmu 0 3 8366 8368 8367\n\t\tf 3 8018 8019 8020\n\t\tmu 0 3 8369 8370 8371\n\t\tf 3 8021 8022 -8021\n\t\tmu 0 3 8372 8373 8369\n\t\tf 3 8023 8024 8025\n\t\tmu 0 3 8374 8375 8376\n\t\tf 3 8026 8027 -8026\n\t\tmu 0 3 8377 8378 8379\n\t\tf 3 -8024 8028 8029\n\t\tmu 0 3 8380 8381 8382\n\t\tf 3 8030 8031 -8030\n\t\tmu 0 3 8383 8384 8385\n\t\tf 3 8032 -8029 8033\n\t\tmu 0 3 8386 8387 8388\n\t\tf 3 8034 8035 -8034\n\t\tmu 0 3 8389 8390 8391\n\t\tf 3 8036 -8028 8037\n\t\tmu 0 3 8392 8393 8394\n\t\tf 3 8038 8039 -8038\n\t\tmu 0 3 8395 8396 8397\n\t\tf 3 -8036 8040 8041\n\t\tmu 0 3 8398 8399 8400\n\t\tf 3 8042 8043 -8042\n\t\tmu 0 3 8401 8402 8403\n\t\tf 3 8044 8045 8046\n\t\tmu 0 3 8404 8405 8406\n\t\tf 3 -8040 8047 -8047\n\t\tmu 0 3 8407 8408 8409\n\t\tf 3 8048 -8025 8049\n\t\tmu 0 3 8410 8411 8412\n\t\tf 3 8050 8051 -8050\n\t\tmu 0 3 8413 8414 8415\n\t\tf 3 -8051 -8032 8052\n\t\tmu 0 3 8416 8417 8418\n\t\tf 3 8053 8054 -8053\n\t\tmu 0 3 8419 8420 8421\n\t\tf 3 -8052 8055 8056\n\t\tmu 0 3 8422 8423 8424\n\t\tf 3 8057 8058 -8057\n\t\tmu 0 3 8425 8426 8427\n\t\tf 3 8059 -8056 8060\n\t\tmu 0 3 8428 8429 8430\n\t\tf 3 -8055 8061 -8061\n\t\tmu 0 3 8431 8432 8433\n\t\tf 3 8062 8063 8064\n\t\tmu 0 3 8434 8435 8436\n\t\tf 3 8065 8066 -8065\n\t\tmu 0 3 8437 8438 8439\n\t\tf 3 8067 -8067 8068\n\t\tmu 0 3 8440 8441 8442\n\t\tf 3 8069 8070 8071\n\t\tmu 0 3 8443 8444 8445\n\t\tf 3 8072 8073 -8072\n\t\tmu 0 3 8446 8447 8448\n\t\tf 3 8074 -8074 8075\n\t\tmu 0 3 8449 8450 8451\n\t\tf 3 8076 8077 -8069\n\t\tmu 0 3 8452 8453 8454\n\t\tf 3 -8054 -8078 8078\n\t\tmu 0 3 8455 8456 8457\n\t\tf 3 8079 8080 -8076\n\t\tmu 0 3 8458 8459 8460\n\t\tf 3 8081 -8071 8082\n\t\tmu 0 3 8461 8462 8463\n\t\tf 3 8083 8084 -8083\n\t\tmu 0 3 8464 8465 8466\n\t\tf 3 8085 -8064 8086\n\t\tmu 0 3 8467 8468 8469\n\t\tf 3 -8044 8087 -8087\n\t\tmu 0 3 8470 8471 8472\n\t\tf 3 8088 8089 -8079\n\t\tmu 0 3 8473 8474 8475\n\t\tf 3 8090 -8081 8091\n\t\tmu 0 3 8476 8477 8478\n\t\tf 3 -8062 -8090 8092\n\t\tmu 0 3 8479 8480 8481\n\t\tf 3 8093 8094 -8092\n\t\tmu 0 3 8482 8483 8484\n\t\tf 3 8095 8096 -8093\n\t\tmu 0 3 8485 8486 8487\n\t\tf 3 -8096 -8095 8097\n\t\tmu 0 3 8488 8489 8490\n\t\tf 3 8098 8099 -8098\n\t\tmu 0 3 8491 8492 8493\n\t\tf 3 8100 8101 8102\n\t\tmu 0 3 8494 8495 8496\n\t\tf 3 8103 8104 8105\n\t\tmu 0 3 8497 8498 8499\n\t\tf 3 8106 8107 -8106\n\t\tmu 0 3 8500 8501 8502\n\t\tf 3 8108 8109 8110\n\t\tmu 0 3 8503 8504 8505\n\t\tf 3 8111 8112 -8111\n\t\tmu 0 3 8506 8507 8508\n\t\tf 3 -8112 8113 8114\n\t\tmu 0 3 8509 8510 8511\n\t\tf 3 8115 8116 -8115\n\t\tmu 0 3 8512 8513 8514\n\t\tf 3 -8116 8117 8118\n\t\tmu 0 3 8515 8516 8517\n\t\tf 3 8119 8120 -8119\n\t\tmu 0 3 8518 8519 8520\n\t\tf 3 -8120 8121 8122\n\t\tmu 0 3 8521 8522 8523\n\t\tf 3 8123 8124 -8123\n\t\tmu 0 3 8524 8525 8526\n\t\tf 3 -8124 8125 8126\n\t\tmu 0 3 8527 8528 8529\n\t\tf 3 8127 8128 -8127\n\t\tmu 0 3 8530 8531 8532\n\t\tf 3 8129 8130 -8103\n\t\tmu 0 3 8533 8534 8535\n\t\tf 3 8131 8132 8133\n\t\tmu 0 3 8536 8537 8538\n\t\tf 3 -8128 8134 8135\n\t\tmu 0 3 8539 8540 8541\n\t\tf 3 8136 8137 -8136\n\t\tmu 0 3 8542 8543 8544\n\t\tf 3 -8137 8138 8139\n\t\tmu 0 3 8545 8546 8547\n\t\tf 3 8140 -8045 -8140\n\t\tmu 0 3 8548 8549 8550\n\t\tf 3 8141 8142 8143\n\t\tmu 0 3 8551 8552 8553\n\t\tf 3 8144 8145 -8144\n\t\tmu 0 3 8554 8555 8556\n\t\tf 3 8146 8147 8148\n\t\tmu 0 3 8557 8558 8559\n\t\tf 3 8149 8150 -8149\n\t\tmu 0 3 8560 8561 8562\n\t\tf 3 8151 8152 8153\n\t\tmu 0 3 8563 8564 8565\n\t\tf 3 8154 -8085 -8154\n\t\tmu 0 3 8566 8567 8568\n\t\tf 3 -8155 8155 8156\n\t\tmu 0 3 8569 8570 8571\n\t\tf 3 8157 8158 -8157\n\t\tmu 0 3 8572 8573 8574\n\t\tf 3 -8158 8159 8160\n\t\tmu 0 3 8575 8576 8577\n\t\tf 3 8161 8162 -8161\n\t\tmu 0 3 8578 8579 8580\n\t\tf 3 8163 -8162 8164\n\t\tmu 0 3 8581 8582 8583\n\t\tf 3 8165 8166 -8165\n\t\tmu 0 3 8584 8585 8586\n\t\tf 3 8167 -8167 8168\n\t\tmu 0 3 8587 8588 8589\n\t\tf 3 8169 8170 -8169\n\t\tmu 0 3 8590 8591 8592\n\t\tf 3 -8171 8171 8172\n\t\tmu 0 3 8593 8594 8595\n\t\tf 3 8173 8174 -8173\n\t\tmu 0 3 8596 8597 8598\n\t\tf 3 -8174 8175 -8134\n\t\tmu 0 3 8599 8600 8601\n\t\tf 3 8176 8177 8178\n\t\tmu 0 3 8602 8603 8604\n\t\tf 3 8179 8180 -8179\n\t\tmu 0 3 8605 8606 8607\n\t\tf 3 -8180 8181 8182\n\t\tmu 0 3 8608 8609 8610\n\t\tf 3 8183 8184 -8183\n\t\tmu 0 3 8611 8612 8613\n\t\tf 3 -8184 8185 8186\n\t\tmu 0 3 8614 8615 8616\n\t\tf 3 8187 8188 -8187\n\t\tmu 0 3 8617 8618 8619\n\t\tf 3 -8188 8189 8190\n\t\tmu 0 3 8620 8621 8622\n\t\tf 3 8191 8192 -8191\n\t\tmu 0 3 8623 8624 8625\n\t\tf 3 -8192 8193 8194\n\t\tmu 0 3 8626 8627 8628\n\t\tf 3 8195 8196 -8195\n\t\tmu 0 3 8629 8630 8631\n\t\tf 3 -8196 8197 8198\n\t\tmu 0 3 8632 8633 8634\n\t\tf 3 8199 8200 -8199\n\t\tmu 0 3 8635 8636 8637\n\t\tf 3 -8200 8201 8202\n\t\tmu 0 3 8638 8639 8640\n\t\tf 3 8203 8204 -8203\n\t\tmu 0 3 8641 8642 8643\n\t\tf 3 -8204 8205 8206\n\t\tmu 0 3 8644 8645 8646\n\t\tf 3 8207 8208 -8207\n\t\tmu 0 3 8647 8648 8649\n\t\tf 3 -8208 8209 8210\n\t\tmu 0 3 8650 8651 8652\n\t\tf 3 8211 8212 -8211\n\t\tmu 0 3 8653 8654 8655\n\t\tf 3 -8212 8213 8214\n\t\tmu 0 3 8656 8657 8658\n\t\tf 3 8215 8216 -8215\n\t\tmu 0 3 8659 8660 8661\n\t\tf 3 -8216 8217 8218\n\t\tmu 0 3 8662 8663 8664\n\t\tf 3 8219 8220 -8219\n\t\tmu 0 3 8665 8666 8667\n\t\tf 3 -8220 8221 8222\n\t\tmu 0 3 8668 8669 8670\n\t\tf 3 8223 8224 -8223\n\t\tmu 0 3 8671 8672 8673\n\t\tf 3 -8224 8225 8226\n\t\tmu 0 3 8674 8675 8676\n\t\tf 3 8227 8228 -8227\n\t\tmu 0 3 8677 8678 8679\n\t\tf 3 -8228 8229 8230\n\t\tmu 0 3 8680 8681 8682\n\t\tf 3 8231 8232 -8231\n\t\tmu 0 3 8683 8684 8685\n\t\tf 3 -8232 8233 8234\n\t\tmu 0 3 8686 8687 8688\n\t\tf 3 8235 8236 -8235\n\t\tmu 0 3 8689 8690 8691\n\t\tf 3 -8236 8237 8238\n\t\tmu 0 3 8692 8693 8694\n\t\tf 3 8239 8240 -8239\n\t\tmu 0 3 8695 8696 8697\n\t\tf 3 -8240 8241 8242\n\t\tmu 0 3 8698 8699 8700\n\t\tf 3 8243 8244 -8243\n\t\tmu 0 3 8701 8702 8703\n\t\tf 3 -8244 8245 8246\n\t\tmu 0 3 8704 8705 8706\n\t\tf 3 -8177 8247 -8247\n\t\tmu 0 3 8707 8708 8709\n\t\tf 3 8248 8249 8250\n\t\tmu 0 3 8710 8711 8712\n\t\tf 3 8251 8252 -8251\n\t\tmu 0 3 8713 8714 8715\n\t\tf 3 -8252 8253 8254\n\t\tmu 0 3 8716 8717 8718\n\t\tf 3 8255 8256 -8255\n\t\tmu 0 3 8719 8720 8721\n\t\tf 3 -8256 8257 8258\n\t\tmu 0 3 8722 8723 8724\n\t\tf 3 8259 8260 -8259\n\t\tmu 0 3 8725 8726 8727\n\t\tf 3 -8260 8261 8262\n\t\tmu 0 3 8728 8729 8730\n\t\tf 3 8263 8264 -8263\n\t\tmu 0 3 8731 8732 8733\n\t\tf 3 -8264 8265 8266\n\t\tmu 0 3 8734 8735 8736\n\t\tf 3 8267 8268 -8267\n\t\tmu 0 3 8737 8738 8739\n\t\tf 3 -8268 8269 8270\n\t\tmu 0 3 8740 8741 8742\n\t\tf 3 8271 8272 -8271\n\t\tmu 0 3 8743 8744 8745\n\t\tf 3 -8272 8273 8274\n\t\tmu 0 3 8746 8747 8748\n\t\tf 3 8275 8276 -8275\n\t\tmu 0 3 8749 8750 8751\n\t\tf 3 -8276 8277 8278\n\t\tmu 0 3 8752 8753 8754\n\t\tf 3 8279 8280 -8279\n\t\tmu 0 3 8755 8756 8757\n\t\tf 3 -8280 8281 8282\n\t\tmu 0 3 8758 8759 8760\n\t\tf 3 8283 8284 -8283\n\t\tmu 0 3 8761 8762 8763\n\t\tf 3 -8284 8285 8286\n\t\tmu 0 3 8764 8765 8766\n\t\tf 3 8287 8288 -8287\n\t\tmu 0 3 8767 8768 8769\n\t\tf 3 -8288 8289 8290\n\t\tmu 0 3 8770 8771 8772\n\t\tf 3 8291 8292 -8291\n\t\tmu 0 3 8773 8774 8775\n\t\tf 3 -8292 8293 8294\n\t\tmu 0 3 8776 8777 8778\n\t\tf 3 8295 8296 -8295\n\t\tmu 0 3 8779 8780 8781\n\t\tf 3 -8296 8297 8298\n\t\tmu 0 3 8782 8783 8784\n\t\tf 3 8299 8300 -8299\n\t\tmu 0 3 8785 8786 8787\n\t\tf 3 -8300 8301 8302\n\t\tmu 0 3 8788 8789 8790\n\t\tf 3 8303 8304 -8303\n\t\tmu 0 3 8791 8792 8793\n\t\tf 3 8305 8306 8307\n\t\tmu 0 3 8794 8795 8796\n\t\tf 3 8308 8309 -8308\n\t\tmu 0 3 8797 8798 8799\n\t\tf 3 8310 8311 8312\n\t\tmu 0 3 8800 8801 8802\n\t\tf 3 8313 8314 -8313\n\t\tmu 0 3 8803 8804 8805\n\t\tf 3 8315 8316 8317\n\t\tmu 0 3 8806 8807 8808\n\t\tf 3 8318 8319 -8318\n\t\tmu 0 3 8809 8810 8811\n\t\tf 3 -8319 8320 8321\n\t\tmu 0 3 8812 8813 8814\n\t\tf 3 -8249 8322 -8322\n\t\tmu 0 3 8815 8816 8817\n\t\tf 3 8323 8324 8325\n\t\tmu 0 3 8818 8819 8820\n\t\tf 3 8326 8327 -8326\n\t\tmu 0 3 8821 8822 8823\n\t\tf 3 -8327 8328 8329\n\t\tmu 0 3 8824 8825 8826\n\t\tf 3 8330 8331 -8330\n\t\tmu 0 3 8827 8828 8829\n\t\tf 3 -8331 8332 8333\n\t\tmu 0 3 8830 8831 8832\n\t\tf 3 8334 8335 -8334\n\t\tmu 0 3 8833 8834 8835\n\t\tf 3 -8335 8336 8337\n\t\tmu 0 3 8836 8837 8838\n\t\tf 3 8338 8339 -8338\n\t\tmu 0 3 8839 8840 8841\n\t\tf 3 -8339 8340 8341\n\t\tmu 0 3 8842 8843 8844\n\t\tf 3 8342 8343 -8342\n\t\tmu 0 3 8845 8846 8847\n\t\tf 3 -8343 8344 8345\n\t\tmu 0 3 8848 8849 8850\n\t\tf 3 8346 8347 -8346\n\t\tmu 0 3 8851 8852 8853\n\t\tf 3 -8347 8348 8349\n\t\tmu 0 3 8854 8855 8856\n\t\tf 3 8350 8351 -8350\n\t\tmu 0 3 8857 8858 8859\n\t\tf 3 -8351 8352 8353\n\t\tmu 0 3 8860 8861 8862\n\t\tf 3 8354 8355 -8354\n\t\tmu 0 3 8863 8864 8865\n\t\tf 3 -8355 8356 8357\n\t\tmu 0 3 8866 8867 8868\n\t\tf 3 8358 8359 -8358\n\t\tmu 0 3 8869 8870 8871\n\t\tf 3 -8359 8360 8361\n\t\tmu 0 3 8872 8873 8874\n\t\tf 3 8362 8363 -8362\n\t\tmu 0 3 8875 8876 8877\n\t\tf 3 -8363 8364 8365\n\t\tmu 0 3 8878 8879 8880\n\t\tf 3 8366 8367 -8366\n\t\tmu 0 3 8881 8882 8883\n\t\tf 3 -8367 8368 8369\n\t\tmu 0 3 8884 8885 8886\n\t\tf 3 8370 8371 -8370\n\t\tmu 0 3 8887 8888 8889\n\t\tf 3 -8371 8372 8373\n\t\tmu 0 3 8890 8891 8892\n\t\tf 3 8374 8375 -8374\n\t\tmu 0 3 8893 8894 8895\n\t\tf 3 -8375 8376 8377\n\t\tmu 0 3 8896 8897 8898\n\t\tf 3 8378 8379 -8378\n\t\tmu 0 3 8899 8900 8901\n\t\tf 3 -8379 8380 8381\n\t\tmu 0 3 8902 8903 8904\n\t\tf 3 8382 8383 -8382\n\t\tmu 0 3 8905 8906 8907\n\t\tf 3 -8383 8384 8385\n\t\tmu 0 3 8908 8909 8910\n\t\tf 3 8386 8387 -8386\n\t\tmu 0 3 8911 8912 8913\n\t\tf 3 -8387 8388 8389\n\t\tmu 0 3 8914 8915 8916\n\t\tf 3 8390 8391 -8390\n\t\tmu 0 3 8917 8918 8919\n\t\tf 3 -8391 8392 8393\n\t\tmu 0 3 8920 8921 8922\n\t\tf 3 -8324 8394 -8394\n\t\tmu 0 3 8923 8924 8925\n\t\tf 3 8395 8396 8397\n\t\tmu 0 3 8926 8927 8928\n\t\tf 3 8398 8399 -8398\n\t\tmu 0 3 8929 8930 8931\n\t\tf 3 -8399 8400 8401\n\t\tmu 0 3 8932 8933 8934\n\t\tf 3 8402 8403 -8402\n\t\tmu 0 3 8935 8936 8937\n\t\tf 3 -8403 8404 8405\n\t\tmu 0 3 8938 8939 8940\n\t\tf 3 8406 8407 -8406\n\t\tmu 0 3 8941 8942 8943\n\t\tf 3 -8396 8408 8409\n\t\tmu 0 3 8944 8945 8946\n\t\tf 3 8410 8411 -8410\n\t\tmu 0 3 8947 8948 8949\n\t\tf 3 -8411 8412 8413\n\t\tmu 0 3 8950 8951 8952\n\t\tf 3 8414 8415 -8414\n\t\tmu 0 3 8953 8954 8955\n\t\tf 3 8416 8417 8418\n\t\tmu 0 3 8956 8957 8958\n\t\tf 3 8419 8420 -8419\n\t\tmu 0 3 8959 8960 8961\n\t\tf 3 8421 8422 8423\n\t\tmu 0 3 8962 8963 8964\n\t\tf 3 8424 8425 -8424\n\t\tmu 0 3 8965 8966 8967\n\t\tf 3 8426 8427 8428\n\t\tmu 0 3 8968 8969 8970\n\t\tf 3 8429 8430 -8429\n\t\tmu 0 3 8971 8972 8973\n\t\tf 3 8431 8432 8433\n\t\tmu 0 3 8974 8975 8976\n\t\tf 3 8434 8435 -8434\n\t\tmu 0 3 8977 8978 8979\n\t\tf 3 8436 8437 8438\n\t\tmu 0 3 8980 8981 8982\n\t\tf 3 8439 8440 -8439\n\t\tmu 0 3 8983 8984 8985\n\t\tf 3 -8440 8441 8442\n\t\tmu 0 3 8986 8987 8988\n\t\tf 3 8443 8444 -8443\n\t\tmu 0 3 8989 8990 8991\n\t\tf 3 -8444 8445 8446\n\t\tmu 0 3 8992 8993 8994\n\t\tf 3 8447 8448 -8447\n\t\tmu 0 3 8995 8996 8997\n\t\tf 3 -8448 8449 8450\n\t\tmu 0 3 8998 8999 9000\n\t\tf 3 8451 8452 -8451\n\t\tmu 0 3 9001 9002 9003\n\t\tf 3 -8452 8453 8454\n\t\tmu 0 3 9004 9005 9006\n\t\tf 3 8455 8456 -8455\n\t\tmu 0 3 9007 9008 9009\n\t\tf 3 8457 8458 8459\n\t\tmu 0 3 9010 9011 9012\n\t\tf 3 8460 8461 -8460\n\t\tmu 0 3 9013 9014 9015\n\t\tf 3 8462 8463 8464\n\t\tmu 0 3 9016 9017 9018\n\t\tf 3 8465 8466 -8465\n\t\tmu 0 3 9019 9020 9021\n\t\tf 3 -8466 8467 8468\n\t\tmu 0 3 9022 9023 9024\n\t\tf 3 8469 8470 -8469\n\t\tmu 0 3 9025 9026 9027\n\t\tf 3 8471 8472 8473\n\t\tmu 0 3 9028 9029 9030\n\t\tf 3 8474 8475 -8474\n\t\tmu 0 3 9031 9032 9033;\n\tsetAttr \".fc[4500:4999]\"\n\t\tf 3 8476 8477 8478\n\t\tmu 0 3 9034 9035 9036\n\t\tf 3 8479 8480 -8479\n\t\tmu 0 3 9036 9037 9034\n\t\tf 3 8481 -8481 8482\n\t\tmu 0 3 9038 9034 9037\n\t\tf 3 8483 8484 -8483\n\t\tmu 0 3 9037 9039 9038\n\t\tf 3 8485 -8477 8486\n\t\tmu 0 3 9040 9035 9034\n\t\tf 3 8487 8488 -8487\n\t\tmu 0 3 9034 9041 9040\n\t\tf 3 -8486 8489 8490\n\t\tmu 0 3 9035 9040 9042\n\t\tf 3 8491 8492 -8491\n\t\tmu 0 3 9042 9043 9035\n\t\tf 3 -8478 -8493 8493\n\t\tmu 0 3 9036 9035 9043\n\t\tf 3 8494 -8492 8495\n\t\tmu 0 3 9044 9043 9042\n\t\tf 3 8496 8497 -8496\n\t\tmu 0 3 9042 9045 9044\n\t\tf 3 8498 8499 -8494\n\t\tmu 0 3 9043 9046 9036\n\t\tf 3 -8499 -8495 8500\n\t\tmu 0 3 9046 9043 9044\n\t\tf 3 8501 -8489 8502\n\t\tmu 0 3 9047 9040 9041\n\t\tf 3 8503 8504 -8503\n\t\tmu 0 3 9041 9048 9047\n\t\tf 3 8505 -8504 8506\n\t\tmu 0 3 9049 9048 9041\n\t\tf 3 8507 8508 -8507\n\t\tmu 0 3 9041 9050 9049\n\t\tf 3 -8508 -8488 8509\n\t\tmu 0 3 9050 9041 9034\n\t\tf 3 -8482 8510 -8510\n\t\tmu 0 3 9034 9038 9050\n\t\tf 3 8511 8512 -8501\n\t\tmu 0 3 9044 9051 9046\n\t\tf 3 8513 8514 8515\n\t\tmu 0 3 9052 9053 9054\n\t\tf 3 8516 8517 -8516\n\t\tmu 0 3 9054 9055 9052\n\t\tf 3 8518 -8514 8519\n\t\tmu 0 3 9056 9053 9052\n\t\tf 3 8520 8521 -8520\n\t\tmu 0 3 9052 9057 9056\n\t\tf 3 8522 -8522 8523\n\t\tmu 0 3 9058 9056 9057\n\t\tf 3 8524 8525 -8524\n\t\tmu 0 3 9057 9059 9058\n\t\tf 3 8526 -8526 8527\n\t\tmu 0 3 9060 9058 9059\n\t\tf 3 8528 8529 -8528\n\t\tmu 0 3 9059 9061 9060\n\t\tf 3 8530 -8530 8531\n\t\tmu 0 3 9062 9060 9061\n\t\tf 3 8532 8533 -8532\n\t\tmu 0 3 9061 9063 9062\n\t\tf 3 8534 8535 8536\n\t\tmu 0 3 9064 9065 9066\n\t\tf 3 8537 8538 -8537\n\t\tmu 0 3 9067 9068 9064\n\t\tf 3 8539 8540 8541\n\t\tmu 0 3 9069 9070 9071\n\t\tf 3 8542 8543 -8542\n\t\tmu 0 3 9072 9073 9069\n\t\tf 3 8544 -8544 8545\n\t\tmu 0 3 9074 9069 9073\n\t\tf 3 8546 8547 -8546\n\t\tmu 0 3 9073 9075 9074\n\t\tf 3 8548 -8548 8549\n\t\tmu 0 3 9076 9074 9075\n\t\tf 3 8550 8551 -8550\n\t\tmu 0 3 9075 9077 9076\n\t\tf 3 8552 -8552 8553\n\t\tmu 0 3 9078 9076 9077\n\t\tf 3 8554 8555 -8554\n\t\tmu 0 3 9077 9079 9078\n\t\tf 3 8556 8557 8558\n\t\tmu 0 3 9080 9081 9082\n\t\tf 3 8559 8560 -8559\n\t\tmu 0 3 9083 9084 9080\n\t\tf 3 8561 -8561 8562\n\t\tmu 0 3 9085 9080 9086\n\t\tf 3 8563 8564 -8563\n\t\tmu 0 3 9087 9088 9085\n\t\tf 3 8565 -8565 8566\n\t\tmu 0 3 9089 9085 9090\n\t\tf 3 8567 8568 -8567\n\t\tmu 0 3 9091 9092 9089\n\t\tf 3 8569 -8569 8570\n\t\tmu 0 3 9093 9089 9094\n\t\tf 3 8571 8572 -8571\n\t\tmu 0 3 9095 9096 9093\n\t\tf 3 8573 -8573 8574\n\t\tmu 0 3 9097 9093 9098\n\t\tf 3 8575 8576 -8575\n\t\tmu 0 3 9099 9100 9097\n\t\tf 3 8577 -8577 8578\n\t\tmu 0 3 9101 9097 9102\n\t\tf 3 8579 8580 -8579\n\t\tmu 0 3 9103 9104 9101\n\t\tf 3 8581 8582 8583\n\t\tmu 0 3 9105 9106 9107\n\t\tf 3 8584 8585 -8584\n\t\tmu 0 3 9107 9108 9109\n\t\tf 3 8586 -8583 8587\n\t\tmu 0 3 9110 9107 9111\n\t\tf 3 8588 8589 -8588\n\t\tmu 0 3 9112 9113 9110\n\t\tf 3 8590 -8590 8591\n\t\tmu 0 3 9114 9110 9115\n\t\tf 3 8592 8593 -8592\n\t\tmu 0 3 9116 9117 9114\n\t\tf 3 8594 -8594 8595\n\t\tmu 0 3 9118 9114 9119\n\t\tf 3 8596 8597 -8596\n\t\tmu 0 3 9120 9121 9122\n\t\tf 3 8598 8599 8600\n\t\tmu 0 3 9123 9124 9125\n\t\tf 3 8601 8602 -8601\n\t\tmu 0 3 9125 9126 9127\n\t\tf 3 8603 -8603 8604\n\t\tmu 0 3 9128 9129 9126\n\t\tf 3 -8480 8605 -8605\n\t\tmu 0 3 9126 9130 9131\n\t\tf 3 8606 -8600 8607\n\t\tmu 0 3 9132 9125 9133\n\t\tf 3 8608 8609 -8608\n\t\tmu 0 3 9134 9135 9132\n\t\tf 3 -8610 8610 8611\n\t\tmu 0 3 9132 9136 9137\n\t\tf 3 8612 -8511 -8612\n\t\tmu 0 3 9138 9139 9132\n\t\tf 3 -8509 -8613 8613\n\t\tmu 0 3 9140 9139 9141\n\t\tf 3 8614 8615 -8614\n\t\tmu 0 3 9142 9143 9140\n\t\tf 3 -8506 -8616 8616\n\t\tmu 0 3 9144 9140 9145\n\t\tf 3 8617 8618 -8617\n\t\tmu 0 3 9146 9147 9144\n\t\tf 3 -8606 -8500 8619\n\t\tmu 0 3 9148 9130 9149\n\t\tf 3 8620 8621 -8620\n\t\tmu 0 3 9149 9150 9151\n\t\tf 3 8622 -8621 8623\n\t\tmu 0 3 9152 9153 9149\n\t\tf 3 -8513 8624 -8624\n\t\tmu 0 3 9149 9154 9155\n\t\tf 3 8625 -8625 8626\n\t\tmu 0 3 9156 9157 9154\n\t\tf 3 -8512 8627 -8627\n\t\tmu 0 3 9154 9158 9159\n\t\tf 3 8628 -8628 8629\n\t\tmu 0 3 9160 9161 9158\n\t\tf 3 -8498 8630 -8630\n\t\tmu 0 3 9158 9162 9163\n\t\tf 3 8631 8632 8633\n\t\tmu 0 3 9164 9165 9166\n\t\tf 3 8634 8635 -8634\n\t\tmu 0 3 9167 9168 9169\n\t\tf 3 -8632 8636 8637\n\t\tmu 0 3 9170 9171 9172\n\t\tf 3 8638 8639 -8638\n\t\tmu 0 3 9173 9174 9175\n\t\tf 3 -8636 8640 8641\n\t\tmu 0 3 9176 9177 9178\n\t\tf 3 8642 8643 -8642\n\t\tmu 0 3 9179 9180 9181\n\t\tf 3 8644 -8641 8645\n\t\tmu 0 3 9182 9183 9184\n\t\tf 3 8646 8647 -8646\n\t\tmu 0 3 9185 9186 9187\n\t\tf 3 -8647 -8635 8648\n\t\tmu 0 3 9188 9189 9190\n\t\tf 3 -8648 8649 8650\n\t\tmu 0 3 9191 9192 9193\n\t\tf 3 8651 8652 -8651\n\t\tmu 0 3 9194 9195 9196\n\t\tf 3 8653 8654 -8649\n\t\tmu 0 3 9197 9198 9199\n\t\tf 3 -8650 -8655 8655\n\t\tmu 0 3 9200 9201 9202\n\t\tf 3 -8643 8656 8657\n\t\tmu 0 3 9203 9204 9205\n\t\tf 3 8658 8659 -8658\n\t\tmu 0 3 9206 9207 9208\n\t\tf 3 -8660 8660 8661\n\t\tmu 0 3 9209 9210 9211\n\t\tf 3 8662 8663 -8662\n\t\tmu 0 3 9212 9213 9214\n\t\tf 3 8664 -8637 8665\n\t\tmu 0 3 9215 9216 9217\n\t\tf 3 -8644 -8664 -8666\n\t\tmu 0 3 9218 9219 9220\n\t\tf 3 8666 8667 -8656\n\t\tmu 0 3 9221 9222 9223\n\t\tf 3 8668 8669 8670\n\t\tmu 0 3 9224 9225 9226\n\t\tf 3 8671 8672 -8671\n\t\tmu 0 3 9227 9228 9229\n\t\tf 3 -8672 8673 8674\n\t\tmu 0 3 9230 9231 9232\n\t\tf 3 8675 8676 -8675\n\t\tmu 0 3 9233 9234 9235\n\t\tf 3 -8676 8677 8678\n\t\tmu 0 3 9236 9237 9238\n\t\tf 3 8679 8680 -8679\n\t\tmu 0 3 9239 9240 9241\n\t\tf 3 -8680 8681 8682\n\t\tmu 0 3 9242 9243 9244\n\t\tf 3 8683 8684 -8683\n\t\tmu 0 3 9245 9246 9247\n\t\tf 3 -8684 8685 8686\n\t\tmu 0 3 9248 9249 9250\n\t\tf 3 8687 8688 -8687\n\t\tmu 0 3 9251 9252 9253\n\t\tf 3 8689 8690 8691\n\t\tmu 0 3 9254 9255 9256\n\t\tf 3 8692 8693 -8692\n\t\tmu 0 3 9257 9258 9259\n\t\tf 3 8694 8695 8696\n\t\tmu 0 3 9260 9261 9262\n\t\tf 3 8697 8698 -8697\n\t\tmu 0 3 9263 9264 9265\n\t\tf 3 -8698 8699 8700\n\t\tmu 0 3 9266 9267 9268\n\t\tf 3 8701 8702 -8701\n\t\tmu 0 3 9269 9270 9271\n\t\tf 3 -8702 8703 8704\n\t\tmu 0 3 9272 9273 9274\n\t\tf 3 8705 8706 -8705\n\t\tmu 0 3 9275 9276 9277\n\t\tf 3 -8706 8707 8708\n\t\tmu 0 3 9278 9279 9280\n\t\tf 3 8709 8710 -8709\n\t\tmu 0 3 9281 9282 9283\n\t\tf 3 8711 8712 8713\n\t\tmu 0 3 9284 9285 9286\n\t\tf 3 8714 8715 -8714\n\t\tmu 0 3 9287 9288 9289\n\t\tf 3 -8715 8716 8717\n\t\tmu 0 3 9290 9291 9292\n\t\tf 3 8718 8719 -8718\n\t\tmu 0 3 9293 9294 9295\n\t\tf 3 -8719 8720 8721\n\t\tmu 0 3 9296 9297 9298\n\t\tf 3 8722 8723 -8722\n\t\tmu 0 3 9299 9300 9301\n\t\tf 3 -8723 8724 8725\n\t\tmu 0 3 9302 9303 9304\n\t\tf 3 8726 8727 -8726\n\t\tmu 0 3 9305 9306 9307\n\t\tf 3 -8727 8728 8729\n\t\tmu 0 3 9308 9309 9310\n\t\tf 3 8730 8731 -8730\n\t\tmu 0 3 9311 9312 9313\n\t\tf 3 -8731 8732 8733\n\t\tmu 0 3 9314 9315 9316\n\t\tf 3 8734 8735 -8734\n\t\tmu 0 3 9317 9318 9319\n\t\tf 3 8736 8737 8738\n\t\tmu 0 3 9320 9321 9322\n\t\tf 3 8739 8740 -8739\n\t\tmu 0 3 9323 9324 9325\n\t\tf 3 -8740 8741 8742\n\t\tmu 0 3 9326 9327 9328\n\t\tf 3 8743 8744 -8743\n\t\tmu 0 3 9329 9330 9331\n\t\tf 3 -8744 8745 8746\n\t\tmu 0 3 9332 9333 9334\n\t\tf 3 8747 8748 -8747\n\t\tmu 0 3 9335 9336 9337\n\t\tf 3 -8748 8749 8750\n\t\tmu 0 3 9338 9339 9340\n\t\tf 3 8751 8752 -8751\n\t\tmu 0 3 9341 9342 9343\n\t\tf 3 8753 8754 8755\n\t\tmu 0 3 9344 9345 9346\n\t\tf 3 8756 8757 -8756\n\t\tmu 0 3 9347 9348 9349\n\t\tf 3 -8754 8758 8759\n\t\tmu 0 3 9350 9351 9352\n\t\tf 3 8760 -8633 -8760\n\t\tmu 0 3 9353 9354 9355\n\t\tf 3 -8757 8761 8762\n\t\tmu 0 3 9356 9357 9358\n\t\tf 3 8763 8764 -8763\n\t\tmu 0 3 9359 9360 9361\n\t\tf 3 8765 -8764 8766\n\t\tmu 0 3 9362 9363 9364\n\t\tf 3 -8665 8767 -8767\n\t\tmu 0 3 9365 9366 9367\n\t\tf 3 -8768 -8663 8768\n\t\tmu 0 3 9368 9369 9370\n\t\tf 3 8769 8770 -8769\n\t\tmu 0 3 9371 9372 9373\n\t\tf 3 -8770 -8661 8771\n\t\tmu 0 3 9374 9375 9376\n\t\tf 3 8772 8773 -8772\n\t\tmu 0 3 9377 9378 9379\n\t\tf 3 -8654 -8761 8774\n\t\tmu 0 3 9380 9381 9382\n\t\tf 3 8775 8776 -8775\n\t\tmu 0 3 9383 9384 9385\n\t\tf 3 -8777 8777 8778\n\t\tmu 0 3 9386 9387 9388\n\t\tf 3 8779 -8667 -8779\n\t\tmu 0 3 9389 9390 9391\n\t\tf 3 -8780 8780 8781\n\t\tmu 0 3 9392 9393 9394\n\t\tf 3 8782 -8668 -8782\n\t\tmu 0 3 9395 9396 9397\n\t\tf 3 -8783 8783 8784\n\t\tmu 0 3 9398 9399 9400\n\t\tf 3 8785 -8652 -8785\n\t\tmu 0 3 9401 9402 9403\n\t\tf 3 8786 8787 8788\n\t\tmu 0 3 9404 9405 9406\n\t\tf 3 -8789 8789 8790\n\t\tmu 0 3 9404 9406 9407\n\t\tf 3 -8791 8791 8792\n\t\tmu 0 3 9404 9407 9408\n\t\tf 3 -8793 8793 8794\n\t\tmu 0 3 9404 9408 9409\n\t\tf 3 8795 -8792 8796\n\t\tmu 0 3 9410 9408 9407\n\t\tf 3 8797 8798 -8797\n\t\tmu 0 3 9407 9411 9410\n\t\tf 3 8799 8800 -8799\n\t\tmu 0 3 9411 9412 9410\n\t\tf 3 8801 8802 -8800\n\t\tmu 0 3 9411 9413 9412\n\t\tf 3 8803 8804 -8801\n\t\tmu 0 3 9412 9414 9410\n\t\tf 3 8805 8806 -8804\n\t\tmu 0 3 9412 9415 9414\n\t\tf 3 8807 8808 8809\n\t\tmu 0 3 9416 9417 9418\n\t\tf 3 8810 8811 -8810\n\t\tmu 0 3 9418 9419 9416\n\t\tf 3 8812 8813 8814\n\t\tmu 0 3 9420 9421 9422\n\t\tf 3 8815 -8787 -8815\n\t\tmu 0 3 9423 9424 9420\n\t\tf 3 -8809 8816 8817\n\t\tmu 0 3 9418 9417 9425\n\t\tf 3 8818 -8813 8819\n\t\tmu 0 3 9426 9427 9420\n\t\tf 3 8820 8821 -8818\n\t\tmu 0 3 9425 9428 9418\n\t\tf 3 8822 -8821 8823\n\t\tmu 0 3 9429 9428 9425\n\t\tf 3 8824 8825 -8824\n\t\tmu 0 3 9425 9430 9429\n\t\tf 3 8826 8827 8828\n\t\tmu 0 3 9431 9432 9433\n\t\tf 3 -8795 -8828 -8820\n\t\tmu 0 3 9420 9433 9434\n\t\tf 3 -8794 8829 -8829\n\t\tmu 0 3 9433 9435 9436\n\t\tf 3 8830 -8812 8831\n\t\tmu 0 3 9437 9416 9419\n\t\tf 3 8832 8833 -8832\n\t\tmu 0 3 9419 9438 9437\n\t\tf 3 8834 -8834 8835\n\t\tmu 0 3 9439 9437 9438\n\t\tf 3 8836 8837 -8836\n\t\tmu 0 3 9438 9440 9439\n\t\tf 3 8838 8839 8840\n\t\tmu 0 3 9441 9442 9443\n\t\tf 3 -8790 8841 -8841\n\t\tmu 0 3 9443 9444 9445\n\t\tf 3 8842 8843 8844\n\t\tmu 0 3 9446 9447 9448\n\t\tf 3 8845 8846 -8845\n\t\tmu 0 3 9449 9450 9446\n\t\tf 3 8847 8848 8849\n\t\tmu 0 3 9451 9452 9453\n\t\tf 3 8850 8851 -8850\n\t\tmu 0 3 9454 9455 9451\n\t\tf 3 8852 8853 8854\n\t\tmu 0 3 9456 9457 9458\n\t\tf 3 -8802 8855 -8855\n\t\tmu 0 3 9458 9459 9460\n\t\tf 3 8856 -8856 8857\n\t\tmu 0 3 9461 9462 9459\n\t\tf 3 -8798 -8840 -8858\n\t\tmu 0 3 9459 9443 9463\n\t\tf 3 8858 -8852 8859\n\t\tmu 0 3 9464 9451 9455\n\t\tf 3 8860 8861 -8860\n\t\tmu 0 3 9455 9465 9464\n\t\tf 3 8862 -8862 8863\n\t\tmu 0 3 9466 9464 9465\n\t\tf 3 8864 8865 -8864\n\t\tmu 0 3 9465 9467 9466\n\t\tf 3 8866 8867 8868\n\t\tmu 0 3 9468 9469 9470\n\t\tf 3 -8806 8869 -8869\n\t\tmu 0 3 9470 9471 9472\n\t\tf 3 8870 -8870 8871\n\t\tmu 0 3 9473 9474 9471\n\t\tf 3 -8803 -8854 -8872\n\t\tmu 0 3 9471 9458 9475\n\t\tf 3 8872 -8866 8873\n\t\tmu 0 3 9476 9466 9467\n\t\tf 3 -8868 8874 8875\n\t\tmu 0 3 9470 9477 9478\n\t\tf 3 8876 8877 -8874\n\t\tmu 0 3 9467 9479 9476\n\t\tf 3 8878 -8878 8879\n\t\tmu 0 3 9480 9476 9479\n\t\tf 3 8880 8881 -8880\n\t\tmu 0 3 9479 9481 9480\n\t\tf 3 8882 8883 8884\n\t\tmu 0 3 9482 9483 9484\n\t\tf 3 -8805 8885 -8885\n\t\tmu 0 3 9484 9485 9486\n\t\tf 3 -8886 -8807 -8876\n\t\tmu 0 3 9487 9485 9470\n\t\tf 3 8886 8887 8888\n\t\tmu 0 3 9488 9489 9490\n\t\tf 3 8889 8890 -8889\n\t\tmu 0 3 9491 9492 9488\n\t\tf 3 8891 -8842 8892\n\t\tmu 0 3 9493 9494 9444\n\t\tf 3 -8788 -8816 -8893\n\t\tmu 0 3 9444 9424 9495\n\t\tf 3 -8830 -8796 8893\n\t\tmu 0 3 9496 9497 9484\n\t\tf 3 -8884 8894 -8894\n\t\tmu 0 3 9484 9498 9496\n\t\tf 3 8895 8896 8897\n\t\tmu 0 3 9499 9500 9501\n\t\tf 3 -8898 8898 8899\n\t\tmu 0 3 9502 9503 9504\n\t\tf 3 -8900 8900 8901\n\t\tmu 0 3 9505 9506 9507\n\t\tf 3 8902 -8902 8903\n\t\tmu 0 3 9508 9509 9510\n\t\tf 3 -8899 8904 8905\n\t\tmu 0 3 9511 9512 9513\n\t\tf 3 8906 8907 -8906\n\t\tmu 0 3 9514 9515 9516\n\t\tf 3 -8907 8908 8909\n\t\tmu 0 3 9517 9518 9519\n\t\tf 3 8910 8911 -8909\n\t\tmu 0 3 9520 9521 9522\n\t\tf 3 8912 8913 -8912\n\t\tmu 0 3 9523 9524 9525\n\t\tf 3 8914 -8910 8915\n\t\tmu 0 3 9526 9527 9528\n\t\tf 3 8916 8917 8918\n\t\tmu 0 3 9529 9530 9531\n\t\tf 3 8919 8920 -8919\n\t\tmu 0 3 9532 9533 9534\n\t\tf 3 8921 8922 8923\n\t\tmu 0 3 9535 9536 9537\n\t\tf 3 -8903 8924 -8924\n\t\tmu 0 3 9538 9539 9540\n\t\tf 3 -8920 8925 8926\n\t\tmu 0 3 9541 9542 9543\n\t\tf 3 8927 8928 -8927\n\t\tmu 0 3 9544 9545 9546\n\t\tf 3 -8923 8929 8930\n\t\tmu 0 3 9547 9548 9549\n\t\tf 3 -8928 8931 8932\n\t\tmu 0 3 9550 9551 9552\n\t\tf 3 8933 8934 -8933\n\t\tmu 0 3 9553 9554 9555\n\t\tf 3 8935 8936 8937\n\t\tmu 0 3 9556 9557 9558\n\t\tf 3 -8936 -8896 -8931\n\t\tmu 0 3 9559 9560 9561\n\t\tf 3 8938 -8897 -8938\n\t\tmu 0 3 9562 9563 9564\n\t\tf 3 -8917 8939 8940\n\t\tmu 0 3 9565 9566 9567\n\t\tf 3 8941 8942 -8941\n\t\tmu 0 3 9568 9569 9570\n\t\tf 3 -8942 8943 8944\n\t\tmu 0 3 9571 9572 9573\n\t\tf 3 8945 8946 -8945\n\t\tmu 0 3 9574 9575 9576\n\t\tf 3 8947 8948 8949\n\t\tmu 0 3 9577 9578 9579\n\t\tf 3 8950 -8901 -8950\n\t\tmu 0 3 9580 9581 9582\n\t\tf 3 8951 8952 8953\n\t\tmu 0 3 9583 9584 9585\n\t\tf 3 8954 8955 -8954\n\t\tmu 0 3 9586 9587 9588\n\t\tf 3 8956 8957 8958\n\t\tmu 0 3 9589 9590 9591\n\t\tf 3 8959 8960 -8959\n\t\tmu 0 3 9592 9593 9594\n\t\tf 3 8961 8962 8963\n\t\tmu 0 3 9595 9596 9597\n\t\tf 3 8964 -8915 -8964\n\t\tmu 0 3 9598 9599 9600\n\t\tf 3 -8948 -8908 8965\n\t\tmu 0 3 9601 9602 9603\n\t\tf 3 -8965 8966 -8966\n\t\tmu 0 3 9604 9605 9606\n\t\tf 3 -8960 8967 8968\n\t\tmu 0 3 9607 9608 9609\n\t\tf 3 8969 8970 -8969\n\t\tmu 0 3 9610 9611 9612\n\t\tf 3 -8970 8971 8972\n\t\tmu 0 3 9613 9614 9615\n\t\tf 3 8973 8974 -8973\n\t\tmu 0 3 9616 9617 9618\n\t\tf 3 8975 8976 8977\n\t\tmu 0 3 9619 9620 9621\n\t\tf 3 8978 -8914 -8978\n\t\tmu 0 3 9622 9623 9624\n\t\tf 3 -8962 -8916 8979\n\t\tmu 0 3 9625 9626 9627\n\t\tf 3 -8979 8980 -8980\n\t\tmu 0 3 9628 9629 9630\n\t\tf 3 -8974 8981 8982\n\t\tmu 0 3 9631 9632 9633\n\t\tf 3 8983 -8976 8984\n\t\tmu 0 3 9634 9635 9636\n\t\tf 3 8985 8986 -8983\n\t\tmu 0 3 9637 9638 9639\n\t\tf 3 -8986 8987 8988\n\t\tmu 0 3 9640 9641 9642\n\t\tf 3 8989 8990 -8989\n\t\tmu 0 3 9643 9644 9645\n\t\tf 3 8991 8992 8993\n\t\tmu 0 3 9646 9647 9648\n\t\tf 3 8994 -8911 -8994\n\t\tmu 0 3 9649 9650 9651\n\t\tf 3 -8913 -8995 -8985\n\t\tmu 0 3 9652 9653 9654\n\t\tf 3 8995 8996 8997\n\t\tmu 0 3 9655 9656 9657\n\t\tf 3 8998 8999 -8998\n\t\tmu 0 3 9658 9659 9660\n\t\tf 3 -8925 -8904 9000\n\t\tmu 0 3 9661 9662 9663\n\t\tf 3 -8951 9001 -9001\n\t\tmu 0 3 9664 9665 9666\n\t\tf 3 9002 -8992 9003\n\t\tmu 0 3 9667 9668 9669\n\t\tf 3 -8905 -8939 -9004\n\t\tmu 0 3 9670 9671 9672\n\t\tf 3 9004 9005 9006\n\t\tmu 0 3 9673 9674 9675\n\t\tf 3 9007 9008 -9007\n\t\tmu 0 3 9675 9676 9673\n\t\tf 3 9009 -9008 9010\n\t\tmu 0 3 9677 9676 9675\n\t\tf 3 9011 9012 -9011\n\t\tmu 0 3 9675 9678 9677\n\t\tf 3 9013 9014 9015\n\t\tmu 0 3 9679 9680 9681\n\t\tf 3 9016 9017 -9016\n\t\tmu 0 3 9681 9682 9683\n\t\tf 3 -9017 9018 9019\n\t\tmu 0 3 9682 9681 9684\n\t\tf 3 9020 9021 -9020\n\t\tmu 0 3 9684 9685 9682\n\t\tf 3 -9021 9022 9023\n\t\tmu 0 3 9685 9684 9686\n\t\tf 3 9024 9025 -9024\n\t\tmu 0 3 9686 9687 9685\n\t\tf 3 9026 -9025 9027\n\t\tmu 0 3 9688 9687 9686\n\t\tf 3 9028 9029 -9028\n\t\tmu 0 3 9686 9689 9688\n\t\tf 3 9030 9031 9032\n\t\tmu 0 3 9690 9691 9692\n\t\tf 3 9033 9034 -9033\n\t\tmu 0 3 9692 9693 9690\n\t\tf 3 -9031 9035 9036\n\t\tmu 0 3 9691 9690 9694\n\t\tf 3 9037 9038 -9037\n\t\tmu 0 3 9694 9695 9691\n\t\tf 3 9039 -9039 9040\n\t\tmu 0 3 9696 9691 9695\n\t\tf 3 9041 9042 -9041\n\t\tmu 0 3 9695 9697 9696\n\t\tf 3 -9040 9043 9044\n\t\tmu 0 3 9691 9696 9698\n\t\tf 3 9045 -9032 -9045\n\t\tmu 0 3 9698 9692 9691\n\t\tf 3 -9035 9046 9047\n\t\tmu 0 3 9690 9693 9699\n\t\tf 3 9048 9049 -9048\n\t\tmu 0 3 9699 9700 9690\n\t\tf 3 9050 -9036 9051\n\t\tmu 0 3 9701 9694 9690\n\t\tf 3 -9050 9052 -9052\n\t\tmu 0 3 9690 9700 9701\n\t\tf 3 -9046 9053 9054\n\t\tmu 0 3 9692 9698 9702\n\t\tf 3 9055 9056 -9055\n\t\tmu 0 3 9702 9703 9692\n\t\tf 3 -9056 -9006 9057\n\t\tmu 0 3 9704 9702 9705\n\t\tf 3 9058 9059 -9058\n\t\tmu 0 3 9705 9706 9707\n\t\tf 3 9060 -9051 9061\n\t\tmu 0 3 9708 9694 9701\n\t\tf 3 9062 9063 -9062\n\t\tmu 0 3 9701 9709 9708\n\t\tf 3 9064 -9042 9065\n\t\tmu 0 3 9710 9697 9695\n\t\tf 3 9066 9067 -9066\n\t\tmu 0 3 9695 9711 9710\n\t\tf 3 -9067 -9038 9068\n\t\tmu 0 3 9711 9695 9694\n\t\tf 3 -9061 9069 -9069\n\t\tmu 0 3 9694 9708 9711\n\t\tf 3 -9064 9070 9071\n\t\tmu 0 3 9708 9709 9712\n\t\tf 3 9072 9073 -9072\n\t\tmu 0 3 9712 9713 9708\n\t\tf 3 -9070 -9074 9074\n\t\tmu 0 3 9711 9708 9713\n\t\tf 3 -9068 9075 9076\n\t\tmu 0 3 9710 9711 9714\n\t\tf 3 9077 -9076 -9075\n\t\tmu 0 3 9713 9714 9711\n\t\tf 3 9078 9079 -9077\n\t\tmu 0 3 9714 9715 9710\n\t\tf 3 9080 9081 9082\n\t\tmu 0 3 9716 9717 9718\n\t\tf 3 9083 9084 -9083\n\t\tmu 0 3 9718 9719 9716\n\t\tf 3 -9082 9085 9086\n\t\tmu 0 3 9718 9717 9720\n\t\tf 3 9087 9088 -9087\n\t\tmu 0 3 9720 9721 9718\n\t\tf 3 -9088 9089 9090\n\t\tmu 0 3 9721 9720 9722\n\t\tf 3 9091 9092 -9091\n\t\tmu 0 3 9722 9723 9721\n\t\tf 3 -9092 9093 9094\n\t\tmu 0 3 9723 9722 9724\n\t\tf 3 9095 9096 -9095\n\t\tmu 0 3 9724 9725 9723\n\t\tf 3 -9097 9097 9098\n\t\tmu 0 3 9723 9725 9726\n\t\tf 3 9099 9100 -9099\n\t\tmu 0 3 9726 9727 9723\n\t\tf 3 -9093 -9101 9101\n\t\tmu 0 3 9721 9723 9727\n\t\tf 3 9102 9103 -9102\n\t\tmu 0 3 9727 9728 9721\n\t\tf 3 9104 -9089 9105\n\t\tmu 0 3 9729 9718 9721\n\t\tf 3 -9104 9106 -9106\n\t\tmu 0 3 9721 9728 9729\n\t\tf 3 9107 -9084 9108\n\t\tmu 0 3 9730 9719 9718\n\t\tf 3 -9105 9109 -9109\n\t\tmu 0 3 9718 9729 9730\n\t\tf 3 9110 9111 9112\n\t\tmu 0 3 9731 9732 9733\n\t\tf 3 9113 9114 -9113\n\t\tmu 0 3 9733 9734 9731\n\t\tf 3 9115 9116 9117\n\t\tmu 0 3 9735 9736 9737\n\t\tf 3 9118 9119 -9118\n\t\tmu 0 3 9737 9738 9735\n\t\tf 3 9120 -9117 9121\n\t\tmu 0 3 9739 9737 9736\n\t\tf 3 9122 9123 -9122\n\t\tmu 0 3 9736 9740 9739\n\t\tf 3 9124 -9124 9125\n\t\tmu 0 3 9741 9739 9740\n\t\tf 3 9126 9127 -9126\n\t\tmu 0 3 9740 9742 9741\n\t\tf 3 -9128 9128 9129\n\t\tmu 0 3 9741 9742 9743\n\t\tf 3 9130 9131 -9130\n\t\tmu 0 3 9743 9744 9741\n\t\tf 3 -9131 9132 9133\n\t\tmu 0 3 9744 9743 9745\n\t\tf 3 9134 9135 -9134\n\t\tmu 0 3 9745 9746 9744\n\t\tf 3 9136 -9135 9137\n\t\tmu 0 3 9747 9746 9745\n\t\tf 3 9138 9139 -9138\n\t\tmu 0 3 9745 9748 9747\n\t\tf 3 9140 -9140 9141\n\t\tmu 0 3 9749 9747 9748\n\t\tf 3 9142 9143 -9142\n\t\tmu 0 3 9748 9750 9749\n\t\tf 3 9144 -9144 9145\n\t\tmu 0 3 9751 9749 9750\n\t\tf 3 9146 9147 -9146\n\t\tmu 0 3 9750 9752 9751\n\t\tf 3 9148 -9148 9149\n\t\tmu 0 3 9753 9751 9752\n\t\tf 3 9150 9151 -9150\n\t\tmu 0 3 9752 9754 9753\n\t\tf 3 9152 -9152 9153\n\t\tmu 0 3 9755 9753 9754\n\t\tf 3 9154 9155 -9154\n\t\tmu 0 3 9754 9756 9755\n\t\tf 3 9156 -9156 9157\n\t\tmu 0 3 9738 9755 9756\n\t\tf 3 9158 -9120 -9158\n\t\tmu 0 3 9756 9735 9738\n\t\tf 3 9159 9160 9161\n\t\tmu 0 3 9757 9758 9759\n\t\tf 3 9162 9163 -9162\n\t\tmu 0 3 9759 9760 9757\n\t\tf 3 9164 9165 9166\n\t\tmu 0 3 9761 9762 9763\n\t\tf 3 9167 9168 -9167\n\t\tmu 0 3 9764 9765 9761\n\t\tf 3 9169 -9164 9170\n\t\tmu 0 3 9766 9757 9760\n\t\tf 3 9171 9172 -9171\n\t\tmu 0 3 9760 9767 9766\n\t\tf 3 9173 -9173 9174\n\t\tmu 0 3 9768 9766 9767\n\t\tf 3 9175 9176 -9175\n\t\tmu 0 3 9767 9769 9768\n\t\tf 3 9177 9178 9179\n\t\tmu 0 3 9770 9771 9772\n\t\tf 3 9180 9181 -9180\n\t\tmu 0 3 9772 9773 9774\n\t\tf 3 9182 -9179 9183\n\t\tmu 0 3 9775 9772 9771\n\t\tf 3 9184 9185 -9184\n\t\tmu 0 3 9771 9776 9775\n\t\tf 3 9186 9187 9188\n\t\tmu 0 3 9777 9778 9779\n\t\tf 3 9189 9190 -9189\n\t\tmu 0 3 9779 9780 9777\n\t\tf 3 9191 -9188 9192\n\t\tmu 0 3 9781 9779 9778\n\t\tf 3 9193 9194 -9193\n\t\tmu 0 3 9778 9782 9781\n\t\tf 3 9195 9196 9197\n\t\tmu 0 3 9783 9784 9785\n\t\tf 3 9198 9199 -9198\n\t\tmu 0 3 9785 9786 9783\n\t\tf 3 9200 9201 9202\n\t\tmu 0 3 9787 9788 9789\n\t\tf 3 9203 9204 -9203\n\t\tmu 0 3 9789 9790 9787\n\t\tf 3 9205 -9202 9206\n\t\tmu 0 3 9791 9789 9788\n\t\tf 3 9207 9208 -9207\n\t\tmu 0 3 9788 9792 9791\n\t\tf 3 9209 9210 9211\n\t\tmu 0 3 9793 9794 9795\n\t\tf 3 9212 9213 -9212\n\t\tmu 0 3 9795 9796 9793\n\t\tf 3 9214 -9210 9215\n\t\tmu 0 3 9797 9794 9793\n\t\tf 3 9216 9217 -9216\n\t\tmu 0 3 9793 9798 9797\n\t\tf 3 9218 -9218 9219\n\t\tmu 0 3 9799 9797 9798\n\t\tf 3 9220 9221 -9220\n\t\tmu 0 3 9798 9800 9799\n\t\tf 3 -9222 9222 9223\n\t\tmu 0 3 9799 9800 9801\n\t\tf 3 9224 9225 -9224\n\t\tmu 0 3 9801 9802 9799\n\t\tf 3 9226 9227 9228\n\t\tmu 0 3 9803 9804 9805\n\t\tf 3 9229 9230 -9229\n\t\tmu 0 3 9805 9806 9803\n\t\tf 3 9231 -9231 9232\n\t\tmu 0 3 9807 9803 9806\n\t\tf 3 9233 9234 -9233\n\t\tmu 0 3 9806 9808 9807\n\t\tf 3 9235 9236 9237\n\t\tmu 0 3 9809 9810 9811\n\t\tf 3 9238 9239 -9238\n\t\tmu 0 3 9811 9812 9809\n\t\tf 3 9240 -9240 9241\n\t\tmu 0 3 9813 9809 9812\n\t\tf 3 9242 9243 -9242\n\t\tmu 0 3 9812 9814 9813\n\t\tf 3 9244 9245 9246\n\t\tmu 0 3 9815 9816 9817\n\t\tf 3 9247 9248 -9247\n\t\tmu 0 3 9817 9818 9815\n\t\tf 3 -9246 9249 9250\n\t\tmu 0 3 9817 9816 9819\n\t\tf 3 9251 9252 -9251\n\t\tmu 0 3 9819 9820 9817\n\t\tf 3 9253 9254 9255\n\t\tmu 0 3 9821 9822 9823\n\t\tf 3 9256 9257 -9256\n\t\tmu 0 3 9823 9824 9821\n\t\tf 3 9258 9259 9260\n\t\tmu 0 3 9825 9826 9827\n\t\tf 3 9261 9262 9263\n\t\tmu 0 3 9828 9829 9830\n\t\tf 3 9264 9265 -9263\n\t\tmu 0 3 9831 9832 9830\n\t\tf 3 9266 9267 -9265\n\t\tmu 0 3 9833 9834 9832\n\t\tf 3 9268 9269 -9267\n\t\tmu 0 3 9835 9836 9834\n\t\tf 3 9270 9271 9272\n\t\tmu 0 3 9837 9838 9839\n\t\tf 3 9273 9274 -9266\n\t\tmu 0 3 9832 9840 9830\n\t\tf 3 9275 9276 -9275\n\t\tmu 0 3 9840 9841 9830\n\t\tf 3 -9264 9277 9278\n\t\tmu 0 3 9842 9830 9843\n\t\tf 3 9279 9280 9281\n\t\tmu 0 3 9844 9845 9846\n\t\tf 3 9282 9283 -9282\n\t\tmu 0 3 9847 9848 9849\n\t\tf 3 -9281 9284 9285\n\t\tmu 0 3 9850 9851 9852\n\t\tf 3 9286 9287 -9286\n\t\tmu 0 3 9853 9854 9855\n\t\tf 3 9288 9289 9290\n\t\tmu 0 3 9856 9857 9858\n\t\tf 3 9291 9292 -9291\n\t\tmu 0 3 9859 9860 9861\n\t\tf 3 9293 -9293 9294\n\t\tmu 0 3 9862 9863 9864\n\t\tf 3 9295 9296 -9295\n\t\tmu 0 3 9865 9866 9867\n\t\tf 3 9297 -9297 9298\n\t\tmu 0 3 9868 9869 9870\n\t\tf 3 9299 9300 -9299\n\t\tmu 0 3 9871 9872 9873\n\t\tf 3 -9301 9301 9302\n\t\tmu 0 3 9874 9875 9688\n\t\tf 3 -9030 9303 -9303\n\t\tmu 0 3 9688 9689 9876\n\t\tf 3 9304 9305 9306\n\t\tmu 0 3 9877 9878 9879\n\t\tf 3 9307 9308 -9307\n\t\tmu 0 3 9880 9881 9882\n\t\tf 3 9309 -9309 9310\n\t\tmu 0 3 9883 9884 9885\n\t\tf 3 9311 9312 -9311\n\t\tmu 0 3 9886 9887 9888\n\t\tf 3 -9312 9313 9314\n\t\tmu 0 3 9889 9890 9891\n\t\tf 3 9315 9316 -9315\n\t\tmu 0 3 9892 9893 9894\n\t\tf 3 -9308 9317 9318\n\t\tmu 0 3 9895 9896 9897\n\t\tf 3 9319 -9314 -9319\n\t\tmu 0 3 9898 9899 9900\n\t\tf 3 9320 -9305 9321\n\t\tmu 0 3 9901 9902 9903\n\t\tf 3 9322 9323 -9322\n\t\tmu 0 3 9904 9905 9906\n\t\tf 3 9324 -9323 9325\n\t\tmu 0 3 9907 9908 9909\n\t\tf 3 -9310 9326 -9326\n\t\tmu 0 3 9910 9911 9912\n\t\tf 3 9327 9328 9329\n\t\tmu 0 3 9913 9914 9915\n\t\tf 3 9330 -9318 -9330\n\t\tmu 0 3 9916 9917 9918\n\t\tf 3 9331 9332 9333\n\t\tmu 0 3 9919 9920 9921\n\t\tf 3 -9283 -9329 -9334\n\t\tmu 0 3 9922 9923 9924\n\t\tf 3 -9327 9334 9335\n\t\tmu 0 3 9925 9926 9927\n\t\tf 3 9336 9337 -9336\n\t\tmu 0 3 9928 9929 9930\n\t\tf 3 -9317 9338 9339\n\t\tmu 0 3 9931 9932 9933\n\t\tf 3 9340 9341 -9340\n\t\tmu 0 3 9934 9935 9936\n\t\tf 3 9342 -9335 9343\n\t\tmu 0 3 9937 9938 9939\n\t\tf 3 -9313 -9342 -9344\n\t\tmu 0 3 9940 9941 9942\n\t\tf 3 9344 -9337 9345\n\t\tmu 0 3 9712 9943 9944\n\t\tf 3 9346 -9073 -9346\n\t\tmu 0 3 9945 9713 9712\n\t\tf 3 -9347 -9343 9347\n\t\tmu 0 3 9713 9946 9947\n\t\tf 3 9348 -9341 9349\n\t\tmu 0 3 9714 9948 9949\n\t\tf 3 -9349 -9078 -9348\n\t\tmu 0 3 9950 9714 9713\n\t\tf 3 9350 -9079 -9350\n\t\tmu 0 3 9951 9715 9714\n\t\tf 3 9351 9352 9353\n\t\tmu 0 3 9952 9953 9954\n\t\tf 3 9354 9355 -9354\n\t\tmu 0 3 9955 9956 9957\n\t\tf 3 9356 -9355 9357\n\t\tmu 0 3 9958 9959 9960\n\t\tf 3 9358 9359 -9358\n\t\tmu 0 3 9961 9962 9963\n\t\tf 3 9360 -9360 9361\n\t\tmu 0 3 9964 9965 9966\n\t\tf 3 9362 9363 -9362\n\t\tmu 0 3 9967 9968 9969\n\t\tf 3 9364 -9364 9365\n\t\tmu 0 3 9724 9970 9971\n\t\tf 3 9366 -9096 -9366\n\t\tmu 0 3 9972 9725 9724\n\t\tf 3 -9098 -9367 9367\n\t\tmu 0 3 9726 9725 9973\n\t\tf 3 9368 9369 -9368\n\t\tmu 0 3 9974 9975 9726\n\t\tf 3 -9369 -9363 9370\n\t\tmu 0 3 9976 9977 9978\n\t\tf 3 9371 9372 -9371\n\t\tmu 0 3 9979 9980 9981\n\t\tf 3 9373 -9372 9374\n\t\tmu 0 3 9982 9983 9984\n\t\tf 3 -9359 9375 -9375\n\t\tmu 0 3 9985 9986 9987\n\t\tf 3 9376 -9376 9377\n\t\tmu 0 3 9988 9989 9990\n\t\tf 3 -9353 9378 -9378\n\t\tmu 0 3 9991 9992 9993\n\t\tf 3 -9115 9379 9380\n\t\tmu 0 3 9731 9734 9994\n\t\tf 3 9381 9382 -9381\n\t\tmu 0 3 9995 9996 9731\n\t\tf 3 9383 9384 9385\n\t\tmu 0 3 9997 9998 9999\n\t\tf 3 9386 9387 -9386\n\t\tmu 0 3 10000 10001 10002\n\t\tf 3 -9384 9388 9389\n\t\tmu 0 3 10003 10004 10005\n\t\tf 3 9390 9391 -9390\n\t\tmu 0 3 10006 10007 10008\n\t\tf 3 -9391 9392 9393\n\t\tmu 0 3 10009 10010 10011\n\t\tf 3 9394 9395 -9394\n\t\tmu 0 3 10012 10013 10014\n\t\tf 3 9396 -9395 9397\n\t\tmu 0 3 10015 10016 10017\n\t\tf 3 9398 9399 -9398\n\t\tmu 0 3 10018 10019 10020\n\t\tf 3 9400 -9400 9401\n\t\tmu 0 3 10021 10022 10023\n\t\tf 3 9402 9403 -9402\n\t\tmu 0 3 10024 10025 10026\n\t\tf 3 -9404 9404 9405\n\t\tmu 0 3 10027 10028 10029\n\t\tf 3 9406 9407 -9406\n\t\tmu 0 3 10030 10031 10032\n\t\tf 3 -9407 9408 9409\n\t\tmu 0 3 10033 10034 10035\n\t\tf 3 9410 9411 -9410\n\t\tmu 0 3 10036 10037 10038\n\t\tf 3 -9411 9412 9413\n\t\tmu 0 3 10039 10040 10041\n\t\tf 3 9414 9415 -9414\n\t\tmu 0 3 10042 10043 10044\n\t\tf 3 -9415 9416 9417\n\t\tmu 0 3 10045 10046 10047\n\t\tf 3 9418 9419 -9418\n\t\tmu 0 3 10048 10049 10050\n\t\tf 3 -9419 9420 9421\n\t\tmu 0 3 10051 10052 10053\n\t\tf 3 9422 9423 -9422\n\t\tmu 0 3 10054 10055 10056\n\t\tf 3 -9423 9424 9425\n\t\tmu 0 3 10057 10058 10059\n\t\tf 3 -9387 9426 -9426\n\t\tmu 0 3 10060 10061 10062\n\t\tf 3 9427 9428 9429\n\t\tmu 0 3 10063 10064 10065\n\t\tf 3 9430 9431 -9430\n\t\tmu 0 3 10066 10067 10068\n\t\tf 3 9432 9433 9434\n\t\tmu 0 3 10069 10070 10071\n\t\tf 3 9435 9436 -9435\n\t\tmu 0 3 10072 10073 10074\n\t\tf 3 -9428 9437 9438\n\t\tmu 0 3 10075 10076 10077\n\t\tf 3 9439 9440 -9439\n\t\tmu 0 3 10078 10079 10080\n\t\tf 3 -9440 9441 9442\n\t\tmu 0 3 10081 10082 10083\n\t\tf 3 9443 9444 -9443\n\t\tmu 0 3 10084 10085 10086\n\t\tf 3 9445 9446 9447\n\t\tmu 0 3 10087 10088 10089\n\t\tf 3 9448 9449 -9448\n\t\tmu 0 3 10090 10091 10092\n\t\tf 3 -9449 9450 9451\n\t\tmu 0 3 10093 10094 10095;\n\tsetAttr \".fc[5000:5499]\"\n\t\tf 3 9452 9453 -9452\n\t\tmu 0 3 10096 10097 10098\n\t\tf 3 9454 9455 9456\n\t\tmu 0 3 10099 10100 10101\n\t\tf 3 9457 9458 -9457\n\t\tmu 0 3 10102 10103 10104\n\t\tf 3 -9458 9459 9460\n\t\tmu 0 3 10105 10106 10107\n\t\tf 3 9461 9462 -9461\n\t\tmu 0 3 10108 10109 10110\n\t\tf 3 9463 9464 9465\n\t\tmu 0 3 10111 10112 10113\n\t\tf 3 9466 9467 -9466\n\t\tmu 0 3 10114 10115 10116\n\t\tf 3 9468 9469 9470\n\t\tmu 0 3 10117 10118 10119\n\t\tf 3 9471 9472 -9471\n\t\tmu 0 3 10120 10121 10122\n\t\tf 3 -9469 9473 9474\n\t\tmu 0 3 10123 10124 10125\n\t\tf 3 9475 9476 -9475\n\t\tmu 0 3 10126 10127 10128\n\t\tf 3 9477 9478 9479\n\t\tmu 0 3 10129 10130 10131\n\t\tf 3 9480 9481 -9480\n\t\tmu 0 3 10132 10133 10134\n\t\tf 3 -9482 9482 9483\n\t\tmu 0 3 10135 10136 10137\n\t\tf 3 9484 9485 -9484\n\t\tmu 0 3 10138 10139 10140\n\t\tf 3 -9485 9486 9487\n\t\tmu 0 3 10141 10142 10143\n\t\tf 3 9488 9489 -9488\n\t\tmu 0 3 10144 10145 10146\n\t\tf 3 9490 -9489 9491\n\t\tmu 0 3 10147 10148 10149\n\t\tf 3 9492 9493 -9492\n\t\tmu 0 3 10150 10151 10152\n\t\tf 3 9494 9495 9496\n\t\tmu 0 3 10153 10154 10155\n\t\tf 3 9497 9498 -9497\n\t\tmu 0 3 10156 10157 10158\n\t\tf 3 -9498 9499 9500\n\t\tmu 0 3 10159 10160 10161\n\t\tf 3 9501 9502 -9501\n\t\tmu 0 3 10162 10163 10164\n\t\tf 3 9503 9504 9505\n\t\tmu 0 3 10165 10166 10167\n\t\tf 3 9506 9507 -9506\n\t\tmu 0 3 10168 10169 10170\n\t\tf 3 -9504 9508 9509\n\t\tmu 0 3 10171 10172 10173\n\t\tf 3 9510 9511 -9510\n\t\tmu 0 3 10174 10175 10176\n\t\tf 3 9512 9513 9514\n\t\tmu 0 3 10177 10178 10179\n\t\tf 3 9515 9516 -9515\n\t\tmu 0 3 10180 10181 10182\n\t\tf 3 9517 -9516 9518\n\t\tmu 0 3 10183 10184 10185\n\t\tf 3 9519 9520 -9519\n\t\tmu 0 3 10186 10187 10188\n\t\tf 3 9521 9522 9523\n\t\tmu 0 3 10189 10190 10191\n\t\tf 3 9524 9525 -9524\n\t\tmu 0 3 10192 10193 10194\n\t\tf 3 9526 9527 9528\n\t\tmu 0 3 10195 10196 10197\n\t\tf 3 9529 9530 9531\n\t\tmu 0 3 10198 10199 10200\n\t\tf 3 9532 9533 -9531\n\t\tmu 0 3 10201 10202 10203\n\t\tf 3 -9532 9534 9535\n\t\tmu 0 3 10204 10205 10206\n\t\tf 3 9536 9537 -9535\n\t\tmu 0 3 10207 10208 10209\n\t\tf 3 9538 9539 9540\n\t\tmu 0 3 10210 10211 10212\n\t\tf 3 9541 9542 -9538\n\t\tmu 0 3 10213 10214 10215\n\t\tf 3 -9536 9543 9544\n\t\tmu 0 3 10216 10217 10218\n\t\tf 3 9545 9546 -9544\n\t\tmu 0 3 10219 10220 10221\n\t\tf 3 9547 9548 9549\n\t\tmu 0 3 10222 10223 10224\n\t\tf 3 9550 9551 -9550\n\t\tmu 0 3 10224 10225 10222\n\t\tf 3 9552 -9551 9553\n\t\tmu 0 3 10226 10225 10224\n\t\tf 3 9554 9555 -9554\n\t\tmu 0 3 10224 10227 10226\n\t\tf 3 9556 -9552 9557\n\t\tmu 0 3 10228 10222 10225\n\t\tf 3 9558 9559 -9558\n\t\tmu 0 3 10225 10229 10228\n\t\tf 3 -9559 -9553 9560\n\t\tmu 0 3 10229 10225 10226\n\t\tf 3 9561 -9560 9562\n\t\tmu 0 3 10230 10228 10229\n\t\tf 3 9563 9564 -9563\n\t\tmu 0 3 10229 10231 10230\n\t\tf 3 9565 -9564 9566\n\t\tmu 0 3 10232 10231 10229\n\t\tf 3 9567 9568 -9567\n\t\tmu 0 3 10229 10233 10232\n\t\tf 3 9569 -9568 -9561\n\t\tmu 0 3 10226 10233 10229\n\t\tf 3 9570 -9549 9571\n\t\tmu 0 3 10234 10224 10223\n\t\tf 3 9572 9573 9574\n\t\tmu 0 3 10235 10236 10237\n\t\tf 3 -9571 9575 9576\n\t\tmu 0 3 10224 10234 10238\n\t\tf 3 9577 -9555 -9577\n\t\tmu 0 3 10238 10227 10224\n\t\tf 3 -9556 9578 9579\n\t\tmu 0 3 10226 10227 10239\n\t\tf 3 -9579 -9578 9580\n\t\tmu 0 3 10239 10227 10238\n\t\tf 3 9581 9582 -9580\n\t\tmu 0 3 10239 10240 10226\n\t\tf 3 -9569 9583 9584\n\t\tmu 0 3 10232 10233 10241\n\t\tf 3 -9583 9585 9586\n\t\tmu 0 3 10226 10240 10241\n\t\tf 3 -9584 -9570 -9587\n\t\tmu 0 3 10241 10233 10226\n\t\tf 3 9587 9588 -9585\n\t\tmu 0 3 10241 10242 10232\n\t\tf 3 9589 9590 -9581\n\t\tmu 0 3 10238 10243 10239\n\t\tf 3 9591 9592 9593\n\t\tmu 0 3 10244 10245 10246\n\t\tf 3 9594 9595 -9594\n\t\tmu 0 3 10246 10247 10244\n\t\tf 3 -9596 9596 9597\n\t\tmu 0 3 10244 10247 10248\n\t\tf 3 9598 9599 -9598\n\t\tmu 0 3 10248 10249 10244\n\t\tf 3 9600 9601 9602\n\t\tmu 0 3 10250 10251 10252\n\t\tf 3 9603 9604 -9603\n\t\tmu 0 3 10252 10253 10254\n\t\tf 3 9605 -9605 9606\n\t\tmu 0 3 10255 10256 10253\n\t\tf 3 9607 9608 -9607\n\t\tmu 0 3 10253 10257 10255\n\t\tf 3 9609 9610 9611\n\t\tmu 0 3 10258 10259 10260\n\t\tf 3 9612 9613 9614\n\t\tmu 0 3 10261 10262 10263\n\t\tf 3 9615 9616 -9615\n\t\tmu 0 3 10263 10264 10265\n\t\tf 3 9617 -9602 9618\n\t\tmu 0 3 10264 10252 10266\n\t\tf 3 9619 -9617 -9619\n\t\tmu 0 3 10267 10268 10264\n\t\tf 3 9620 -9614 9621\n\t\tmu 0 3 10269 10263 10270\n\t\tf 3 9622 9623 -9622\n\t\tmu 0 3 10271 10272 10269\n\t\tf 3 9624 9625 9626\n\t\tmu 0 3 10273 10274 10258\n\t\tf 3 9627 9628 -9627\n\t\tmu 0 3 10258 10275 10273\n\t\tf 3 9629 -9628 -9612\n\t\tmu 0 3 10276 10275 10258\n\t\tf 3 9630 -9624 9631\n\t\tmu 0 3 10277 10269 10272\n\t\tf 3 9632 9633 -9632\n\t\tmu 0 3 10272 10278 10277\n\t\tf 3 9634 -9625 9635\n\t\tmu 0 3 10279 10280 10273\n\t\tf 3 9636 -9634 9637\n\t\tmu 0 3 10281 10277 10278\n\t\tf 3 9638 9639 -9638\n\t\tmu 0 3 10278 10282 10281\n\t\tf 3 9640 9641 9642\n\t\tmu 0 3 10283 10284 10285\n\t\tf 3 9643 9644 -9643\n\t\tmu 0 3 10286 10287 10283\n\t\tf 3 9645 -9644 -9636\n\t\tmu 0 3 10273 10287 10288\n\t\tf 3 9646 -9609 9647\n\t\tmu 0 3 10289 10255 10257\n\t\tf 3 9648 9649 9650\n\t\tmu 0 3 10290 10291 10292\n\t\tf 3 9651 -9650 9652\n\t\tmu 0 3 10293 10292 10294\n\t\tf 3 9653 9654 -9653\n\t\tmu 0 3 10295 10296 10293\n\t\tf 3 9655 -9655 9656\n\t\tmu 0 3 10297 10293 10296\n\t\tf 3 9657 9658 -9657\n\t\tmu 0 3 10296 10298 10297\n\t\tf 3 -9659 9659 9660\n\t\tmu 0 3 10297 10298 10299\n\t\tf 3 9661 9662 -9661\n\t\tmu 0 3 10299 10300 10297\n\t\tf 3 9663 9664 9665\n\t\tmu 0 3 10301 10302 10303\n\t\tf 3 9666 9667 -9666\n\t\tmu 0 3 10303 10304 10305\n\t\tf 3 9668 9669 9670\n\t\tmu 0 3 10306 10289 10307\n\t\tf 3 9671 9672 -9671\n\t\tmu 0 3 10307 10308 10309\n\t\tf 3 9673 -9665 9674\n\t\tmu 0 3 10308 10303 10310\n\t\tf 3 9675 -9673 -9675\n\t\tmu 0 3 10311 10312 10308\n\t\tf 3 9676 -9670 -9648\n\t\tmu 0 3 10257 10307 10289\n\t\tf 3 9677 9678 -9651\n\t\tmu 0 3 10292 10313 10314\n\t\tf 3 9679 -9679 9680\n\t\tmu 0 3 10248 10315 10313\n\t\tf 3 9681 -9599 -9681\n\t\tmu 0 3 10313 10249 10248\n\t\tf 3 9682 9683 9684\n\t\tmu 0 3 10316 10317 10318\n\t\tf 3 9685 9686 -9685\n\t\tmu 0 3 10318 10319 10316\n\t\tf 3 9687 -9686 9688\n\t\tmu 0 3 10320 10319 10318\n\t\tf 3 9689 9690 -9689\n\t\tmu 0 3 10318 10321 10320\n\t\tf 3 9691 9692 9693\n\t\tmu 0 3 10322 10323 10324\n\t\tf 3 9694 9695 -9694\n\t\tmu 0 3 10325 10326 10322\n\t\tf 3 -9695 9696 9697\n\t\tmu 0 3 10326 10327 10328\n\t\tf 3 9698 9699 -9698\n\t\tmu 0 3 10329 10330 10326\n\t\tf 3 -9691 9700 9701\n\t\tmu 0 3 10320 10321 10331\n\t\tf 3 9702 9703 -9702\n\t\tmu 0 3 10331 10332 10320\n\t\tf 3 9704 -9699 9705\n\t\tmu 0 3 10333 10330 10334\n\t\tf 3 9706 9707 -9706\n\t\tmu 0 3 10335 10336 10333\n\t\tf 3 9708 9709 9710\n\t\tmu 0 3 10337 10338 10339\n\t\tf 3 9711 9712 -9711\n\t\tmu 0 3 10339 10340 10337\n\t\tf 3 9713 -9712 9714\n\t\tmu 0 3 10341 10340 10339\n\t\tf 3 9715 9716 -9715\n\t\tmu 0 3 10339 10342 10341\n\t\tf 3 9717 -9709 9718\n\t\tmu 0 3 10343 10338 10337\n\t\tf 3 9719 9720 -9719\n\t\tmu 0 3 10337 10344 10343\n\t\tf 3 9721 9722 9723\n\t\tmu 0 3 10345 10346 10347\n\t\tf 3 9724 9725 -9724\n\t\tmu 0 3 10347 10348 10345\n\t\tf 3 9726 -9723 9727\n\t\tmu 0 3 10349 10347 10346\n\t\tf 3 9728 9729 -9728\n\t\tmu 0 3 10346 10350 10351\n\t\tf 3 9730 9731 9732\n\t\tmu 0 3 10352 10353 10354\n\t\tf 3 9733 9734 -9733\n\t\tmu 0 3 10354 10355 10352\n\t\tf 3 9735 -9732 9736\n\t\tmu 0 3 10356 10354 10353\n\t\tf 3 9737 9738 -9737\n\t\tmu 0 3 10353 10357 10356\n\t\tf 3 -9734 9739 9740\n\t\tmu 0 3 10355 10354 10358\n\t\tf 3 9741 9742 -9741\n\t\tmu 0 3 10358 10359 10355\n\t\tf 3 -9736 9743 9744\n\t\tmu 0 3 10354 10356 10360\n\t\tf 3 9745 -9740 -9745\n\t\tmu 0 3 10360 10358 10354\n\t\tf 3 9746 -9735 9747\n\t\tmu 0 3 10361 10352 10355\n\t\tf 3 9748 9749 -9748\n\t\tmu 0 3 10355 10362 10361\n\t\tf 3 -9749 -9743 9750\n\t\tmu 0 3 10362 10355 10359\n\t\tf 3 9751 9752 -9751\n\t\tmu 0 3 10359 10363 10362\n\t\tf 3 9753 9754 9755\n\t\tmu 0 3 10364 10365 10366\n\t\tf 3 9756 9757 -9756\n\t\tmu 0 3 10366 10367 10364\n\t\tf 3 9758 -9757 9759\n\t\tmu 0 3 10368 10367 10366\n\t\tf 3 9760 9761 -9760\n\t\tmu 0 3 10366 10369 10368\n\t\tf 3 9762 -9755 9763\n\t\tmu 0 3 10370 10366 10365\n\t\tf 3 9764 9765 -9764\n\t\tmu 0 3 10365 10371 10372\n\t\tf 3 9766 -9759 9767\n\t\tmu 0 3 10373 10367 10368\n\t\tf 3 9768 9769 -9768\n\t\tmu 0 3 10368 10374 10375\n\t\tf 3 9770 -9761 9771\n\t\tmu 0 3 10376 10369 10366\n\t\tf 3 -9763 9772 -9772\n\t\tmu 0 3 10366 10377 10378\n\t\tf 3 9773 9774 9775\n\t\tmu 0 3 10379 10380 10381\n\t\tf 3 9776 9777 -9776\n\t\tmu 0 3 10381 10382 10379\n\t\tf 3 9778 -9775 9779\n\t\tmu 0 3 10383 10381 10380\n\t\tf 3 9780 9781 -9780\n\t\tmu 0 3 10380 10384 10385\n\t\tf 3 9782 9783 9784\n\t\tmu 0 3 10386 10387 10388\n\t\tf 3 9785 9786 -9785\n\t\tmu 0 3 10388 10389 10386\n\t\tf 3 9787 -9783 9788\n\t\tmu 0 3 10390 10387 10386\n\t\tf 3 9789 9790 -9789\n\t\tmu 0 3 10386 10391 10390\n\t\tf 3 9791 -9786 9792\n\t\tmu 0 3 10392 10389 10388\n\t\tf 3 9793 9794 -9793\n\t\tmu 0 3 10388 10393 10392\n\t\tf 3 9795 9796 9797\n\t\tmu 0 3 10394 10395 10396\n\t\tf 3 9798 9799 -9798\n\t\tmu 0 3 10396 10397 10394\n\t\tf 3 9800 -9797 9801\n\t\tmu 0 3 10398 10396 10395\n\t\tf 3 9802 9803 -9802\n\t\tmu 0 3 10395 10399 10400\n\t\tf 3 9804 9805 9806\n\t\tmu 0 3 10401 10402 10403\n\t\tf 3 9807 9808 -9807\n\t\tmu 0 3 10403 10404 10401\n\t\tf 3 9809 -9806 9810\n\t\tmu 0 3 10405 10403 10402\n\t\tf 3 9811 9812 -9811\n\t\tmu 0 3 10402 10406 10407\n\t\tf 3 9813 9814 9815\n\t\tmu 0 3 10408 10409 10410\n\t\tf 3 9816 9817 -9816\n\t\tmu 0 3 10410 10411 10412\n\t\tf 3 9818 9819 9820\n\t\tmu 0 3 10413 10414 10415\n\t\tf 3 9821 9822 -9821\n\t\tmu 0 3 10415 10416 10413\n\t\tf 3 9823 9824 9825\n\t\tmu 0 3 10417 10418 10419\n\t\tf 3 9826 9827 -9826\n\t\tmu 0 3 10419 10420 10421\n\t\tf 3 9828 9829 9830\n\t\tmu 0 3 10422 10423 10424\n\t\tf 3 9831 9832 -9831\n\t\tmu 0 3 10424 10425 10422\n\t\tf 3 9833 9834 9835\n\t\tmu 0 3 10426 10427 10428\n\t\tf 3 9836 9837 -9836\n\t\tmu 0 3 10428 10429 10426\n\t\tf 3 9838 -9838 9839\n\t\tmu 0 3 10430 10426 10429\n\t\tf 3 9840 -9818 -9840\n\t\tmu 0 3 10429 10431 10430\n\t\tf 3 9841 -9835 9842\n\t\tmu 0 3 10432 10428 10427\n\t\tf 3 9843 9844 -9843\n\t\tmu 0 3 10427 10433 10432\n\t\tf 3 9845 -9815 9846\n\t\tmu 0 3 10434 10435 10436\n\t\tf 3 9847 9848 -9847\n\t\tmu 0 3 10436 10437 10434\n\t\tf 3 9849 9850 9851\n\t\tmu 0 3 10438 10439 10440\n\t\tf 3 9852 9853 -9852\n\t\tmu 0 3 10440 10441 10438\n\t\tf 3 9854 -9854 9855\n\t\tmu 0 3 10442 10438 10441\n\t\tf 3 9856 -9828 -9856\n\t\tmu 0 3 10441 10443 10442\n\t\tf 3 9857 -9851 9858\n\t\tmu 0 3 10444 10440 10439\n\t\tf 3 9859 9860 -9859\n\t\tmu 0 3 10439 10445 10444\n\t\tf 3 9861 -9825 9862\n\t\tmu 0 3 10446 10447 10448\n\t\tf 3 9863 9864 -9863\n\t\tmu 0 3 10448 10449 10446\n\t\tf 3 9865 9866 9867\n\t\tmu 0 3 10450 10451 10452\n\t\tf 3 9868 9869 -9868\n\t\tmu 0 3 10453 10454 10450\n\t\tf 3 -9866 9870 9871\n\t\tmu 0 3 10455 10450 10456\n\t\tf 3 9872 9873 -9872\n\t\tmu 0 3 10456 10457 10458\n\t\tf 3 9874 -9870 9875\n\t\tmu 0 3 10459 10450 10454\n\t\tf 3 9876 9877 -9876\n\t\tmu 0 3 10454 10460 10459\n\t\tf 3 9878 -9871 9879\n\t\tmu 0 3 10461 10456 10450\n\t\tf 3 -9875 9880 -9880\n\t\tmu 0 3 10450 10459 10461\n\t\tf 3 -9881 9881 9882\n\t\tmu 0 3 10461 10459 10462\n\t\tf 3 9883 9884 -9883\n\t\tmu 0 3 10463 10464 10461\n\t\tf 3 9885 -9849 9886\n\t\tmu 0 3 10465 10466 10467\n\t\tf 3 9887 -9820 -9887\n\t\tmu 0 3 10468 10469 10465\n\t\tf 3 9888 -9865 9889\n\t\tmu 0 3 10470 10471 10472\n\t\tf 3 9890 -9830 -9890\n\t\tmu 0 3 10473 10474 10470\n\t\tf 3 9891 9892 9893\n\t\tmu 0 3 10475 10476 10477\n\t\tf 3 9894 9895 -9894\n\t\tmu 0 3 10477 10478 10475\n\t\tf 3 9896 -9896 9897\n\t\tmu 0 3 10479 10475 10478\n\t\tf 3 9898 9899 -9898\n\t\tmu 0 3 10478 10480 10479\n\t\tf 3 9900 -9900 9901\n\t\tmu 0 3 10481 10479 10480\n\t\tf 3 9902 9903 -9902\n\t\tmu 0 3 10480 10482 10481\n\t\tf 3 9904 -9904 9905\n\t\tmu 0 3 10483 10481 10482\n\t\tf 3 9906 9907 -9906\n\t\tmu 0 3 10482 10484 10483\n\t\tf 3 9908 -9893 9909\n\t\tmu 0 3 10485 10477 10476\n\t\tf 3 9910 9911 -9910\n\t\tmu 0 3 10476 10486 10485\n\t\tf 3 9912 -9912 9913\n\t\tmu 0 3 10487 10485 10486\n\t\tf 3 9914 9915 -9914\n\t\tmu 0 3 10486 10488 10487\n\t\tf 3 9916 -9916 9917\n\t\tmu 0 3 10489 10487 10488\n\t\tf 3 9918 9919 -9918\n\t\tmu 0 3 10488 10490 10489\n\t\tf 3 9920 9921 9922\n\t\tmu 0 3 10491 10492 10493\n\t\tf 3 9923 9924 -9923\n\t\tmu 0 3 10493 10494 10491\n\t\tf 3 -9924 9925 9926\n\t\tmu 0 3 10494 10493 10495\n\t\tf 3 9927 9928 -9927\n\t\tmu 0 3 10495 10496 10494\n\t\tf 3 -9921 9929 9930\n\t\tmu 0 3 10492 10491 10497\n\t\tf 3 9931 9932 -9931\n\t\tmu 0 3 10497 10498 10492\n\t\tf 3 9933 9934 9935\n\t\tmu 0 3 10499 10500 10501\n\t\tf 3 9936 9937 -9936\n\t\tmu 0 3 10501 10502 10503\n\t\tf 3 -9937 9938 9939\n\t\tmu 0 3 10502 10501 10504\n\t\tf 3 9940 9941 -9940\n\t\tmu 0 3 10504 10505 10502\n\t\tf 3 9942 9943 9944\n\t\tmu 0 3 10506 10507 10508\n\t\tf 3 9945 9946 -9945\n\t\tmu 0 3 10509 10510 10506\n\t\tf 3 -9943 9947 9948\n\t\tmu 0 3 10507 10506 10511\n\t\tf 3 9949 9950 -9949\n\t\tmu 0 3 10511 10512 10507\n\t\tf 3 9951 9952 9953\n\t\tmu 0 3 10513 10514 10515\n\t\tf 3 -9954 9954 9955\n\t\tmu 0 3 10513 10515 10516\n\t\tf 3 9956 9957 -9955\n\t\tmu 0 3 10515 10517 10516\n\t\tf 3 -9956 9958 9959\n\t\tmu 0 3 10513 10516 10518\n\t\tf 3 9960 9961 -9959\n\t\tmu 0 3 10516 10519 10518\n\t\tf 3 -9960 9962 9963\n\t\tmu 0 3 10513 10518 10520\n\t\tf 3 9964 9965 9966\n\t\tmu 0 3 10521 10522 10523\n\t\tf 3 9967 9968 -9967\n\t\tmu 0 3 10524 10525 10526\n\t\tf 3 -9969 9969 9970\n\t\tmu 0 3 10527 10528 10529\n\t\tf 3 9971 9972 -9971\n\t\tmu 0 3 10530 10531 10532\n\t\tf 3 -9968 9973 9974\n\t\tmu 0 3 10533 10534 10535\n\t\tf 3 9975 9976 -9975\n\t\tmu 0 3 10536 10537 10538\n\t\tf 3 -9970 -9977 9977\n\t\tmu 0 3 10539 10540 10541\n\t\tf 3 -9976 9978 9979\n\t\tmu 0 3 10542 10543 10544\n\t\tf 3 9980 9981 -9980\n\t\tmu 0 3 10545 10546 10547\n\t\tf 3 -9982 9982 9983\n\t\tmu 0 3 10548 10549 10550\n\t\tf 3 9984 9985 -9984\n\t\tmu 0 3 10551 10552 10553\n\t\tf 3 -9986 9986 -9978\n\t\tmu 0 3 10554 10555 10556\n\t\tf 3 -9965 9987 9988\n\t\tmu 0 3 10557 10558 10559\n\t\tf 3 9989 9990 9991\n\t\tmu 0 3 10560 10561 10562\n\t\tf 3 -9973 9992 9993\n\t\tmu 0 3 10563 10564 10565\n\t\tf 3 9994 -9988 -9994\n\t\tmu 0 3 10566 10567 10568\n\t\tf 3 9995 -9972 9996\n\t\tmu 0 3 10569 10570 10571\n\t\tf 3 -9993 -9996 9997\n\t\tmu 0 3 10572 10573 10574\n\t\tf 3 9998 9999 -9997\n\t\tmu 0 3 10575 10576 10577\n\t\tf 3 10000 -9985 10001\n\t\tmu 0 3 10578 10579 10580\n\t\tf 3 -9987 -10001 10002\n\t\tmu 0 3 10581 10582 10583\n\t\tf 3 10003 -9999 -10003\n\t\tmu 0 3 10584 10585 10586\n\t\tf 3 10004 10005 -10002\n\t\tmu 0 3 10587 10588 10589\n\t\tf 3 10006 10007 -9998\n\t\tmu 0 3 10590 10591 10592\n\t\tf 3 10008 10009 10010\n\t\tmu 0 3 10593 10594 10595\n\t\tf 3 10011 10012 -10011\n\t\tmu 0 3 10596 10597 10598\n\t\tf 3 -10009 10013 10014\n\t\tmu 0 3 10599 10600 10601\n\t\tf 3 10015 10016 -10015\n\t\tmu 0 3 10602 10603 10604\n\t\tf 3 10017 10018 10019\n\t\tmu 0 3 10605 10606 10607\n\t\tf 3 10020 10021 -10020\n\t\tmu 0 3 10608 10609 10610\n\t\tf 3 -10021 10022 10023\n\t\tmu 0 3 10611 10612 10613\n\t\tf 3 10024 10025 -10024\n\t\tmu 0 3 10614 10615 10616\n\t\tf 3 10026 10027 10028\n\t\tmu 0 3 10617 10618 10619\n\t\tf 3 10029 10030 10031\n\t\tmu 0 3 10620 10621 10622\n\t\tf 3 10032 10033 -10032\n\t\tmu 0 3 10623 10624 10625\n\t\tf 3 -10018 10034 10035\n\t\tmu 0 3 10626 10627 10628\n\t\tf 3 -10033 10036 -10036\n\t\tmu 0 3 10629 10630 10631\n\t\tf 3 -10030 10037 10038\n\t\tmu 0 3 10632 10633 10634\n\t\tf 3 10039 10040 -10039\n\t\tmu 0 3 10635 10636 10637\n\t\tf 3 10041 10042 10043\n\t\tmu 0 3 10638 10639 10640\n\t\tf 3 -10042 10044 -10029\n\t\tmu 0 3 10641 10642 10643\n\t\tf 3 10045 10046 -10044\n\t\tmu 0 3 10644 10645 10646\n\t\tf 3 -10040 10047 10048\n\t\tmu 0 3 10647 10648 10649\n\t\tf 3 10049 10050 -10049\n\t\tmu 0 3 10650 10651 10652\n\t\tf 3 -10046 10051 10052\n\t\tmu 0 3 10653 10654 10655\n\t\tf 3 -10050 10053 10054\n\t\tmu 0 3 10656 10657 10658\n\t\tf 3 10055 10056 -10055\n\t\tmu 0 3 10659 10660 10661\n\t\tf 3 10057 10058 10059\n\t\tmu 0 3 10662 10663 10664\n\t\tf 3 10060 10061 -10060\n\t\tmu 0 3 10665 10666 10667\n\t\tf 3 -10062 10062 -10053\n\t\tmu 0 3 10668 10669 10670\n\t\tf 3 -10025 10063 10064\n\t\tmu 0 3 10671 10672 10673\n\t\tf 3 10065 10066 10067\n\t\tmu 0 3 10674 10675 10676\n\t\tf 3 10068 10069 -10068\n\t\tmu 0 3 10677 10678 10679\n\t\tf 3 -10066 10070 10071\n\t\tmu 0 3 10680 10681 10682\n\t\tf 3 10072 10073 -10072\n\t\tmu 0 3 10683 10684 10685\n\t\tf 3 -10073 10074 10075\n\t\tmu 0 3 10686 10687 10688\n\t\tf 3 10076 10077 -10076\n\t\tmu 0 3 10689 10690 10691\n\t\tf 3 10078 -10077 10079\n\t\tmu 0 3 10692 10693 10694\n\t\tf 3 10080 10081 -10080\n\t\tmu 0 3 10695 10696 10697\n\t\tf 3 10082 10083 10084\n\t\tmu 0 3 10698 10699 10700\n\t\tf 3 10085 10086 -10085\n\t\tmu 0 3 10701 10702 10703\n\t\tf 3 10087 10088 10089\n\t\tmu 0 3 10704 10705 10706\n\t\tf 3 10090 10091 -10090\n\t\tmu 0 3 10707 10708 10709\n\t\tf 3 -10083 10092 10093\n\t\tmu 0 3 10710 10711 10712\n\t\tf 3 -10091 10094 -10094\n\t\tmu 0 3 10713 10714 10715\n\t\tf 3 -10088 10095 -10065\n\t\tmu 0 3 10716 10717 10718\n\t\tf 3 -10069 10096 10097\n\t\tmu 0 3 10719 10720 10721\n\t\tf 3 -10016 10098 -10098\n\t\tmu 0 3 10722 10723 10724\n\t\tf 3 10099 10100 10101\n\t\tmu 0 3 10725 10726 10727\n\t\tf 3 10102 10103 -10102\n\t\tmu 0 3 10728 10729 10730\n\t\tf 3 -10104 10104 10105\n\t\tmu 0 3 10731 10732 10733\n\t\tf 3 10106 10107 -10106\n\t\tmu 0 3 10734 10735 10736\n\t\tf 3 10108 10109 10110\n\t\tmu 0 3 10737 10738 10739\n\t\tf 3 10111 10112 -10111\n\t\tmu 0 3 10740 10741 10742\n\t\tf 3 10113 10114 10115\n\t\tmu 0 3 10743 10744 10745\n\t\tf 3 -10113 10116 -10116\n\t\tmu 0 3 10746 10747 10748\n\t\tf 3 10117 -10107 10118\n\t\tmu 0 3 10749 10750 10751\n\t\tf 3 10119 10120 -10119\n\t\tmu 0 3 10752 10753 10754\n\t\tf 3 10121 10122 10123\n\t\tmu 0 3 10755 10756 10757\n\t\tf 3 -10114 10124 -10124\n\t\tmu 0 3 10758 10759 10760\n\t\tf 3 10125 10126 10127\n\t\tmu 0 3 10761 10762 10763\n\t\tf 3 10128 10129 -10128\n\t\tmu 0 3 10764 10765 10766\n\t\tf 3 -10127 10130 10131\n\t\tmu 0 3 10767 10768 10769\n\t\tf 3 10132 10133 -10132\n\t\tmu 0 3 10770 10771 10772\n\t\tf 3 -10130 10134 10135\n\t\tmu 0 3 10773 10774 10775\n\t\tf 3 10136 10137 -10136\n\t\tmu 0 3 10776 10777 10778\n\t\tf 3 10138 10139 10140\n\t\tmu 0 3 10779 10780 10781\n\t\tf 3 10141 10142 -10141\n\t\tmu 0 3 10782 10783 10784\n\t\tf 3 -10142 10143 10144\n\t\tmu 0 3 10785 10786 10787\n\t\tf 3 10145 10146 -10145\n\t\tmu 0 3 10788 10789 10790\n\t\tf 3 10147 10148 10149\n\t\tmu 0 3 10791 10792 10793\n\t\tf 3 10150 10151 -10150\n\t\tmu 0 3 10794 10795 10796\n\t\tf 3 -10151 10152 10153\n\t\tmu 0 3 10797 10798 10799\n\t\tf 3 10154 10155 -10154\n\t\tmu 0 3 10800 10801 10802\n\t\tf 3 10156 -10149 10157\n\t\tmu 0 3 10803 10804 10805\n\t\tf 3 10158 10159 -10158\n\t\tmu 0 3 10806 10807 10808\n\t\tf 3 -10157 10160 10161\n\t\tmu 0 3 10809 10810 10811\n\t\tf 3 10162 -10153 -10162\n\t\tmu 0 3 10812 10813 10814\n\t\tf 3 -10148 10163 10164\n\t\tmu 0 3 10815 10816 10817\n\t\tf 3 10165 10166 -10165\n\t\tmu 0 3 10818 10819 10820\n\t\tf 3 -10159 -10167 10167\n\t\tmu 0 3 10821 10822 10823\n\t\tf 3 10168 10169 -10168\n\t\tmu 0 3 10824 10825 10826\n\t\tf 3 10170 10171 10172\n\t\tmu 0 3 10827 10828 10829\n\t\tf 3 10173 10174 -10173\n\t\tmu 0 3 10830 10831 10832\n\t\tf 3 -10172 -9770 10175\n\t\tmu 0 3 10833 10834 10835\n\t\tf 3 10176 10177 -10176\n\t\tmu 0 3 10836 10837 10838\n\t\tf 3 -10174 10178 10179\n\t\tmu 0 3 10839 10840 10841\n\t\tf 3 10180 10181 -10180\n\t\tmu 0 3 10842 10843 10844\n\t\tf 3 10182 -10179 10183\n\t\tmu 0 3 10845 10846 10847\n\t\tf 3 -10178 10184 -10184\n\t\tmu 0 3 10848 10849 10850\n\t\tf 3 10185 10186 10187\n\t\tmu 0 3 10851 10852 10853\n\t\tf 3 10188 10189 -10188\n\t\tmu 0 3 10854 10855 10856\n\t\tf 3 -10189 10190 10191\n\t\tmu 0 3 10857 10858 10859\n\t\tf 3 10192 10193 -10192\n\t\tmu 0 3 10860 10861 10862\n\t\tf 3 10194 10195 10196\n\t\tmu 0 3 10863 10864 10865\n\t\tf 3 10197 10198 -10197\n\t\tmu 0 3 10866 10867 10868\n\t\tf 3 -10199 10199 10200\n\t\tmu 0 3 10869 10870 10871\n\t\tf 3 10201 10202 -10201\n\t\tmu 0 3 10872 10873 10874\n\t\tf 3 -10196 10203 10204\n\t\tmu 0 3 10875 10876 10877\n\t\tf 3 10205 10206 -10205\n\t\tmu 0 3 10878 10879 10880\n\t\tf 3 10207 10208 10209\n\t\tmu 0 3 10881 10882 10883\n\t\tf 3 10210 10211 -10210\n\t\tmu 0 3 10884 10885 10886\n\t\tf 3 -10211 10212 10213\n\t\tmu 0 3 10887 10888 10889\n\t\tf 3 10214 10215 -10214\n\t\tmu 0 3 10890 10891 10892\n\t\tf 3 10216 10217 10218\n\t\tmu 0 3 10893 10894 10895\n\t\tf 3 10219 10220 -10219\n\t\tmu 0 3 10896 10897 10898\n\t\tf 3 -10220 10221 10222\n\t\tmu 0 3 10899 10900 10901\n\t\tf 3 10223 10224 -10223\n\t\tmu 0 3 10902 10903 10904\n\t\tf 3 10225 10226 10227\n\t\tmu 0 3 10905 10906 10907\n\t\tf 3 10228 10229 -10228\n\t\tmu 0 3 10908 10909 10910\n\t\tf 3 10230 10231 10232\n\t\tmu 0 3 10911 10912 10913\n\t\tf 3 10233 10234 -10233\n\t\tmu 0 3 10914 10915 10916\n\t\tf 3 10235 10236 10237\n\t\tmu 0 3 10917 10918 10919\n\t\tf 3 10238 10239 -10238\n\t\tmu 0 3 10920 10921 10922\n\t\tf 3 10240 10241 10242\n\t\tmu 0 3 10923 10924 10925\n\t\tf 3 10243 10244 -10243\n\t\tmu 0 3 10926 10927 10928\n\t\tf 3 10245 10246 10247\n\t\tmu 0 3 10929 10930 10931\n\t\tf 3 10248 10249 -10248\n\t\tmu 0 3 10932 10933 10934\n\t\tf 3 -10246 10250 10251\n\t\tmu 0 3 10935 10936 10937\n\t\tf 3 -10229 10252 -10252\n\t\tmu 0 3 10938 10939 10940\n\t\tf 3 10253 -10249 10254\n\t\tmu 0 3 10941 10942 10943\n\t\tf 3 10255 10256 -10255\n\t\tmu 0 3 10944 10945 10946\n\t\tf 3 10257 10258 10259\n\t\tmu 0 3 10947 10948 10949\n\t\tf 3 -10226 10260 -10260\n\t\tmu 0 3 10950 10951 10952\n\t\tf 3 10261 10262 10263\n\t\tmu 0 3 10953 10954 10955\n\t\tf 3 10264 10265 -10264\n\t\tmu 0 3 10956 10957 10958\n\t\tf 3 -10262 10266 10267\n\t\tmu 0 3 10959 10960 10961\n\t\tf 3 -10239 10268 -10268\n\t\tmu 0 3 10962 10963 10964\n\t\tf 3 10269 -10265 10270\n\t\tmu 0 3 10965 10966 10967\n\t\tf 3 10271 10272 -10271\n\t\tmu 0 3 10968 10969 10970\n\t\tf 3 10273 10274 10275\n\t\tmu 0 3 10971 10972 10973\n\t\tf 3 -10236 10276 -10276\n\t\tmu 0 3 10974 10975 10976\n\t\tf 3 10277 10278 10279\n\t\tmu 0 3 10977 10978 10979\n\t\tf 3 10280 10281 -10280\n\t\tmu 0 3 10980 10981 10982\n\t\tf 3 10282 -10282 10283\n\t\tmu 0 3 10983 10984 10985\n\t\tf 3 10284 10285 -10284\n\t\tmu 0 3 10986 10987 10988\n\t\tf 3 -10278 10286 10287\n\t\tmu 0 3 10989 10990 10991\n\t\tf 3 10288 10289 -10288\n\t\tmu 0 3 10992 10993 10994\n\t\tf 3 -9884 -10287 10290\n\t\tmu 0 3 10995 10996 10997\n\t\tf 3 -10283 10291 -10291\n\t\tmu 0 3 10998 10999 11000\n\t\tf 3 -10232 10292 10293\n\t\tmu 0 3 11001 11002 11003\n\t\tf 3 -10258 10294 -10294\n\t\tmu 0 3 11004 11005 11006\n\t\tf 3 -10242 10295 10296\n\t\tmu 0 3 11007 11008 11009\n\t\tf 3 -10274 10297 -10297\n\t\tmu 0 3 11010 11011 11012\n\t\tf 3 10298 10299 10300\n\t\tmu 0 3 11013 11014 11015\n\t\tf 3 10301 10302 -10301\n\t\tmu 0 3 11016 11017 11018\n\t\tf 3 -10299 10303 10304\n\t\tmu 0 3 11019 11020 11021\n\t\tf 3 10305 10306 -10305\n\t\tmu 0 3 11022 11023 11024\n\t\tf 3 -10306 10307 10308\n\t\tmu 0 3 11025 11026 11027\n\t\tf 3 10309 10310 -10309\n\t\tmu 0 3 11028 11029 11030\n\t\tf 3 -10310 10311 10312\n\t\tmu 0 3 11031 11032 11033\n\t\tf 3 10313 10314 -10313\n\t\tmu 0 3 11034 11035 11036\n\t\tf 3 -10302 10315 10316\n\t\tmu 0 3 11037 11038 11039\n\t\tf 3 10317 10318 -10317\n\t\tmu 0 3 11040 11041 11042\n\t\tf 3 -10318 10319 10320\n\t\tmu 0 3 11043 11044 11045\n\t\tf 3 10321 10322 -10321\n\t\tmu 0 3 11046 11047 11048\n\t\tf 3 -10322 10323 10324\n\t\tmu 0 3 11049 11050 11051\n\t\tf 3 10325 10326 -10325\n\t\tmu 0 3 11052 11053 11054\n\t\tf 3 10327 10328 10329\n\t\tmu 0 3 11055 11056 11057\n\t\tf 3 10330 10331 -10330\n\t\tmu 0 3 11058 11059 11060\n\t\tf 3 10332 -10329 10333\n\t\tmu 0 3 11061 11062 11063\n\t\tf 3 10334 10335 -10334\n\t\tmu 0 3 11064 11065 11066\n\t\tf 3 10336 -10332 10337\n\t\tmu 0 3 11067 11068 11069\n\t\tf 3 10338 10339 -10338\n\t\tmu 0 3 11070 11071 11072\n\t\tf 3 10340 10341 10342\n\t\tmu 0 3 11073 11074 11075\n\t\tf 3 10343 10344 -10343\n\t\tmu 0 3 11076 11077 11078\n\t\tf 3 10345 -10342 10346\n\t\tmu 0 3 11079 11080 11081\n\t\tf 3 10347 10348 -10347\n\t\tmu 0 3 11082 11083 11084\n\t\tf 3 10349 10350 10351\n\t\tmu 0 3 11085 11086 11087\n\t\tf 3 10352 10353 -10352\n\t\tmu 0 3 11088 11089 11090\n\t\tf 3 10354 -10354 10355\n\t\tmu 0 3 11091 11092 11093\n\t\tf 3 10356 10357 -10356\n\t\tmu 0 3 11094 11095 11096\n\t\tf 3 10358 10359 10360\n\t\tmu 0 3 11097 11098 11099\n\t\tf 3 -10361 10361 10362\n\t\tmu 0 3 11100 11101 11102\n\t\tf 3 10363 10364 -10362\n\t\tmu 0 3 11103 11104 11105\n\t\tf 3 10365 10366 -10364\n\t\tmu 0 3 11106 11107 11108\n\t\tf 3 10367 10368 -10365\n\t\tmu 0 3 11109 11110 11111\n\t\tf 3 -10363 10369 10370\n\t\tmu 0 3 11112 11113 11114\n\t\tf 3 10371 10372 10373\n\t\tmu 0 3 11115 11116 11117\n\t\tf 3 10374 10375 -10374\n\t\tmu 0 3 11117 11118 11115\n\t\tf 3 10376 -10376 10377\n\t\tmu 0 3 11119 11115 11118\n\t\tf 3 10378 10379 -10378\n\t\tmu 0 3 11118 11120 11119\n\t\tf 3 10380 -10380 10381\n\t\tmu 0 3 11121 11119 11120\n\t\tf 3 10382 10383 -10382\n\t\tmu 0 3 11120 11122 11121\n\t\tf 3 10384 -10384 10385\n\t\tmu 0 3 11123 11121 11122\n\t\tf 3 10386 10387 -10386\n\t\tmu 0 3 11122 11124 11123\n\t\tf 3 -10388 10388 10389\n\t\tmu 0 3 11123 11124 11125\n\t\tf 3 10390 10391 -10390\n\t\tmu 0 3 11125 11126 11123\n\t\tf 3 -10392 10392 10393\n\t\tmu 0 3 11123 11126 11127\n\t\tf 3 10394 -10393 10395\n\t\tmu 0 3 11128 11127 11126\n\t\tf 3 -10395 10396 10397\n\t\tmu 0 3 11127 11128 11129\n\t\tf 3 10398 -10397 10399\n\t\tmu 0 3 11130 11129 11128\n\t\tf 3 -10399 10400 10401\n\t\tmu 0 3 11129 11130 11131\n\t\tf 3 10402 10403 -10402\n\t\tmu 0 3 11131 11132 11129\n\t\tf 3 10404 -10403 10405\n\t\tmu 0 3 11133 11132 11131\n\t\tf 3 10406 10407 -10406\n\t\tmu 0 3 11131 11134 11133\n\t\tf 3 10408 10409 -10400\n\t\tmu 0 3 11128 11135 11130\n\t\tf 3 -10409 10410 10411\n\t\tmu 0 3 11135 11128 11136\n\t\tf 3 10412 -10411 -10396\n\t\tmu 0 3 11126 11136 11128\n\t\tf 3 -10413 -10391 10413\n\t\tmu 0 3 11136 11126 11125\n\t\tf 3 10414 10415 -10412\n\t\tmu 0 3 11136 11137 11135\n\t\tf 3 -10415 10416 10417\n\t\tmu 0 3 11137 11136 11138\n\t\tf 3 10418 -10417 -10414\n\t\tmu 0 3 11125 11138 11136\n\t\tf 3 10419 10420 -10418\n\t\tmu 0 3 11138 11139 11137\n\t\tf 3 10421 10422 -10405\n\t\tmu 0 3 11133 11140 11132\n\t\tf 3 10423 10424 -10422\n\t\tmu 0 3 11133 11141 11140\n\t\tf 3 10425 10426 -10425\n\t\tmu 0 3 11141 11142 11140\n\t\tf 3 -10426 10427 10428\n\t\tmu 0 3 11142 11141 11143\n\t\tf 3 10429 10430 -10429\n\t\tmu 0 3 11143 11144 11142\n\t\tf 3 10431 -10431 10432\n\t\tmu 0 3 11145 11142 11144\n\t\tf 3 -10427 -10432 10433\n\t\tmu 0 3 11140 11142 11145\n\t\tf 3 10434 10435 -10433\n\t\tmu 0 3 11144 11146 11145\n\t\tf 3 10436 -10436 10437\n\t\tmu 0 3 11147 11145 11146\n\t\tf 3 -10437 10438 -10434\n\t\tmu 0 3 11145 11147 11140\n\t\tf 3 10439 10440 -10438\n\t\tmu 0 3 11146 11148 11147\n\t\tf 3 10441 -10441 10442\n\t\tmu 0 3 11149 11147 11148\n\t\tf 3 -10439 -10442 10443\n\t\tmu 0 3 11140 11147 11149\n\t\tf 3 10444 10445 -10443\n\t\tmu 0 3 11148 11150 11149\n\t\tf 3 10446 -10446 10447\n\t\tmu 0 3 11151 11149 11150\n\t\tf 3 10448 10449 -10448\n\t\tmu 0 3 11150 11152 11151\n\t\tf 3 10450 -10449 10451\n\t\tmu 0 3 11153 11152 11150\n\t\tf 3 10452 10453 -10452\n\t\tmu 0 3 11150 11154 11153\n\t\tf 3 -10453 -10445 10454\n\t\tmu 0 3 11154 11150 11148\n\t\tf 3 10455 -10454 10456\n\t\tmu 0 3 11155 11153 11154\n\t\tf 3 10457 10458 -10457\n\t\tmu 0 3 11154 11156 11155\n\t\tf 3 -10459 10459 10460\n\t\tmu 0 3 11155 11156 11157\n\t\tf 3 10461 10462 -10461\n\t\tmu 0 3 11157 11158 11155\n\t\tf 3 10463 10464 -10455\n\t\tmu 0 3 11148 11159 11154\n\t\tf 3 -10464 -10440 10465\n\t\tmu 0 3 11159 11148 11146\n\t\tf 3 10466 10467 -10466\n\t\tmu 0 3 11146 11160 11159\n\t\tf 3 -10468 10468 10469\n\t\tmu 0 3 11159 11160 11161\n\t\tf 3 10470 10471 -10470\n\t\tmu 0 3 11161 11162 11159\n\t\tf 3 -10465 -10472 10472\n\t\tmu 0 3 11154 11159 11162\n\t\tf 3 10473 -10458 -10473\n\t\tmu 0 3 11162 11156 11154\n\t\tf 3 -10471 10474 10475\n\t\tmu 0 3 11162 11161 11163\n\t\tf 3 10476 10477 -10476\n\t\tmu 0 3 11163 11164 11162;\n\tsetAttr \".fc[5500:5999]\"\n\t\tf 3 10478 -10460 10479\n\t\tmu 0 3 11164 11157 11156\n\t\tf 3 -10474 -10478 -10480\n\t\tmu 0 3 11156 11162 11164\n\t\tf 3 10480 -10477 10481\n\t\tmu 0 3 11165 11164 11163\n\t\tf 3 -10479 -10481 10482\n\t\tmu 0 3 11157 11164 11165\n\t\tf 3 10483 10484 -10482\n\t\tmu 0 3 11163 11166 11165\n\t\tf 3 10485 -10485 10486\n\t\tmu 0 3 11167 11165 11166\n\t\tf 3 10487 10488 -10487\n\t\tmu 0 3 11166 11168 11167\n\t\tf 3 -10489 10489 10490\n\t\tmu 0 3 11167 11168 11169\n\t\tf 3 10491 10492 -10491\n\t\tmu 0 3 11169 11170 11167\n\t\tf 3 -10493 10493 10494\n\t\tmu 0 3 11167 11170 11171\n\t\tf 3 10495 10496 -10495\n\t\tmu 0 3 11171 11172 11167\n\t\tf 3 -10486 -10497 10497\n\t\tmu 0 3 11165 11167 11172\n\t\tf 3 10498 10499 -10498\n\t\tmu 0 3 11172 11173 11165\n\t\tf 3 -10500 10500 -10483\n\t\tmu 0 3 11165 11173 11157\n\t\tf 3 -10501 10501 10502\n\t\tmu 0 3 11157 11173 11174\n\t\tf 3 10503 -10462 -10503\n\t\tmu 0 3 11174 11158 11157\n\t\tf 3 10504 -10502 10505\n\t\tmu 0 3 11175 11174 11173\n\t\tf 3 -10499 10506 -10506\n\t\tmu 0 3 11173 11172 11175\n\t\tf 3 -10496 10507 10508\n\t\tmu 0 3 11172 11171 11176\n\t\tf 3 10509 -10507 -10509\n\t\tmu 0 3 11176 11175 11172\n\t\tf 3 -10504 10510 10511\n\t\tmu 0 3 11158 11174 11177\n\t\tf 3 10512 10513 -10512\n\t\tmu 0 3 11177 11116 11158\n\t\tf 3 10514 -10511 10515\n\t\tmu 0 3 11178 11177 11174\n\t\tf 3 -10505 10516 -10516\n\t\tmu 0 3 11174 11175 11178\n\t\tf 3 -10510 10517 10518\n\t\tmu 0 3 11175 11176 11179\n\t\tf 3 10519 -10517 -10519\n\t\tmu 0 3 11179 11178 11175\n\t\tf 3 10520 -10520 10521\n\t\tmu 0 3 11180 11178 11179\n\t\tf 3 -10515 -10521 10522\n\t\tmu 0 3 11177 11178 11180\n\t\tf 3 10523 10524 -10522\n\t\tmu 0 3 11179 11181 11180\n\t\tf 3 -10524 10525 10526\n\t\tmu 0 3 11181 11179 11182\n\t\tf 3 -10526 -10518 10527\n\t\tmu 0 3 11182 11179 11176\n\t\tf 3 10528 10529 -10527\n\t\tmu 0 3 11182 11183 11181\n\t\tf 3 10530 -10529 10531\n\t\tmu 0 3 11184 11183 11182\n\t\tf 3 10532 10533 -10532\n\t\tmu 0 3 11182 11185 11184\n\t\tf 3 -10514 -10372 10534\n\t\tmu 0 3 11158 11116 11115\n\t\tf 3 10535 -10463 -10535\n\t\tmu 0 3 11115 11155 11158\n\t\tf 3 -10536 -10377 10536\n\t\tmu 0 3 11155 11115 11119\n\t\tf 3 10537 -10456 -10537\n\t\tmu 0 3 11119 11153 11155\n\t\tf 3 -10451 -10538 10538\n\t\tmu 0 3 11152 11153 11119\n\t\tf 3 -10381 10539 -10539\n\t\tmu 0 3 11119 11121 11152\n\t\tf 3 -10540 -10385 10540\n\t\tmu 0 3 11152 11121 11123\n\t\tf 3 10541 -10450 -10541\n\t\tmu 0 3 11123 11151 11152\n\t\tf 3 10542 -10542 -10394\n\t\tmu 0 3 11127 11151 11123\n\t\tf 3 -10447 -10543 10543\n\t\tmu 0 3 11149 11151 11127\n\t\tf 3 10544 10545 -10544\n\t\tmu 0 3 11127 11186 11149\n\t\tf 3 -10546 10546 -10444\n\t\tmu 0 3 11149 11186 11140\n\t\tf 3 -10423 -10547 10547\n\t\tmu 0 3 11132 11140 11186\n\t\tf 3 10548 -10404 -10548\n\t\tmu 0 3 11186 11129 11132\n\t\tf 3 -10549 -10545 -10398\n\t\tmu 0 3 11129 11186 11127\n\t\tf 3 10549 10550 10551\n\t\tmu 0 3 11187 11188 11185\n\t\tf 3 -10550 10552 10553\n\t\tmu 0 3 11188 11187 11189\n\t\tf 3 10554 10555 -10554\n\t\tmu 0 3 11189 11190 11188\n\t\tf 3 -10555 10556 10557\n\t\tmu 0 3 11190 11189 11191\n\t\tf 3 10558 10559 -10558\n\t\tmu 0 3 11191 11192 11190\n\t\tf 3 10560 -10559 10561\n\t\tmu 0 3 11193 11192 11191\n\t\tf 3 10562 10563 -10562\n\t\tmu 0 3 11191 11194 11193\n\t\tf 3 -10553 10564 10565\n\t\tmu 0 3 11189 11187 11176\n\t\tf 3 -10508 10566 -10566\n\t\tmu 0 3 11176 11171 11189\n\t\tf 3 -10567 -10494 10567\n\t\tmu 0 3 11189 11171 11170\n\t\tf 3 10568 -10557 -10568\n\t\tmu 0 3 11170 11191 11189\n\t\tf 3 10569 -10563 10570\n\t\tmu 0 3 11169 11194 11191\n\t\tf 3 -10569 -10492 -10571\n\t\tmu 0 3 11191 11170 11169\n\t\tf 3 -10570 -10490 10571\n\t\tmu 0 3 11194 11169 11168\n\t\tf 3 10572 10573 -10572\n\t\tmu 0 3 11168 11195 11194\n\t\tf 3 -10573 -10488 10574\n\t\tmu 0 3 11195 11168 11166\n\t\tf 3 10575 10576 -10575\n\t\tmu 0 3 11166 11196 11195\n\t\tf 3 -10576 -10484 10577\n\t\tmu 0 3 11196 11166 11163\n\t\tf 3 10578 10579 -10578\n\t\tmu 0 3 11163 11197 11196\n\t\tf 3 -10579 -10475 10580\n\t\tmu 0 3 11197 11163 11161\n\t\tf 3 10581 10582 -10581\n\t\tmu 0 3 11161 11198 11197\n\t\tf 3 10583 -10582 10584\n\t\tmu 0 3 11199 11198 11161\n\t\tf 3 -10469 10585 -10585\n\t\tmu 0 3 11161 11160 11199\n\t\tf 3 -10586 -10467 10586\n\t\tmu 0 3 11199 11160 11146\n\t\tf 3 -10435 10587 -10587\n\t\tmu 0 3 11146 11144 11199\n\t\tf 3 -10588 -10430 10588\n\t\tmu 0 3 11199 11144 11143\n\t\tf 3 10589 10590 10591\n\t\tmu 0 3 11200 11201 11202\n\t\tf 3 10592 10593 -10592\n\t\tmu 0 3 11202 11203 11200\n\t\tf 3 10594 -10594 10595\n\t\tmu 0 3 11204 11200 11203\n\t\tf 3 10596 10597 -10596\n\t\tmu 0 3 11203 11205 11204\n\t\tf 3 -10597 10598 10599\n\t\tmu 0 3 11205 11203 11206\n\t\tf 3 -10599 -10593 10600\n\t\tmu 0 3 11206 11203 11202\n\t\tf 3 10601 10602 -10600\n\t\tmu 0 3 11206 11207 11205\n\t\tf 3 10603 10604 -10601\n\t\tmu 0 3 11202 11208 11206\n\t\tf 3 -10604 10605 10606\n\t\tmu 0 3 11208 11202 11209\n\t\tf 3 -10606 -10591 10607\n\t\tmu 0 3 11209 11202 11201\n\t\tf 3 10608 10609 -10607\n\t\tmu 0 3 11209 11210 11208\n\t\tf 3 10610 -10609 10611\n\t\tmu 0 3 11211 11210 11209\n\t\tf 3 10612 10613 -10612\n\t\tmu 0 3 11209 11212 11211\n\t\tf 3 -10603 10614 10615\n\t\tmu 0 3 11205 11207 11213\n\t\tf 3 10616 10617 -10616\n\t\tmu 0 3 11213 11214 11205\n\t\tf 3 -10598 -10618 10618\n\t\tmu 0 3 11204 11205 11214\n\t\tf 3 10619 -10617 10620\n\t\tmu 0 3 11215 11214 11213\n\t\tf 3 10621 10622 -10621\n\t\tmu 0 3 11213 11216 11215\n\t\tf 3 10623 -10623 10624\n\t\tmu 0 3 11217 11215 11216\n\t\tf 3 10625 10626 -10625\n\t\tmu 0 3 11216 11218 11217\n\t\tf 3 10627 -10620 10628\n\t\tmu 0 3 11219 11214 11215\n\t\tf 3 -10628 10629 -10619\n\t\tmu 0 3 11214 11219 11204\n\t\tf 3 10630 10631 -10629\n\t\tmu 0 3 11215 11220 11219\n\t\tf 3 10632 -10631 10633\n\t\tmu 0 3 11221 11220 11215\n\t\tf 3 -10624 10634 -10634\n\t\tmu 0 3 11215 11217 11221\n\t\tf 3 10635 -10613 10636\n\t\tmu 0 3 11222 11212 11209\n\t\tf 3 10637 10638 -10637\n\t\tmu 0 3 11209 11223 11222\n\t\tf 3 10639 -10638 -10608\n\t\tmu 0 3 11201 11223 11209\n\t\tf 3 10640 10641 10642\n\t\tmu 0 3 11224 11225 11226\n\t\tf 3 10643 10644 -10643\n\t\tmu 0 3 11226 11227 11224\n\t\tf 3 10645 -10644 10646\n\t\tmu 0 3 11228 11227 11226\n\t\tf 3 10647 10648 -10647\n\t\tmu 0 3 11226 11229 11228\n\t\tf 3 -10649 10649 10650\n\t\tmu 0 3 11228 11229 11230\n\t\tf 3 10651 10652 -10651\n\t\tmu 0 3 11230 11231 11228\n\t\tf 3 -10646 10653 10654\n\t\tmu 0 3 11227 11228 11232\n\t\tf 3 10655 10656 -10655\n\t\tmu 0 3 11232 11233 11227\n\t\tf 3 -10656 10657 10658\n\t\tmu 0 3 11233 11232 11234\n\t\tf 3 10659 10660 -10659\n\t\tmu 0 3 11234 11235 11233\n\t\tf 3 -10661 10661 10662\n\t\tmu 0 3 11233 11235 11236\n\t\tf 3 10663 10664 -10663\n\t\tmu 0 3 11236 11237 11233\n\t\tf 3 10665 -10645 10666\n\t\tmu 0 3 11237 11224 11227\n\t\tf 3 -10667 -10657 -10665\n\t\tmu 0 3 11237 11227 11233\n\t\tf 3 -10653 10667 10668\n\t\tmu 0 3 11228 11231 11238\n\t\tf 3 10669 -10654 -10669\n\t\tmu 0 3 11238 11232 11228\n\t\tf 3 -10658 -10670 10670\n\t\tmu 0 3 11234 11232 11238\n\t\tf 3 10671 10672 -10662\n\t\tmu 0 3 11235 11239 11236\n\t\tf 3 -10672 -10660 10673\n\t\tmu 0 3 11239 11235 11234\n\t\tf 3 10674 10675 -10674\n\t\tmu 0 3 11234 11240 11239\n\t\tf 3 10676 -10675 10677\n\t\tmu 0 3 11241 11240 11234\n\t\tf 3 10678 10679 -10678\n\t\tmu 0 3 11234 11242 11241\n\t\tf 3 10680 -10679 -10671\n\t\tmu 0 3 11238 11242 11234\n\t\tf 3 10681 -10652 10682\n\t\tmu 0 3 11243 11231 11230\n\t\tf 3 10683 10684 -10683\n\t\tmu 0 3 11230 11244 11243\n\t\tf 3 10685 -10685 10686\n\t\tmu 0 3 11245 11243 11244\n\t\tf 3 10687 10688 -10687\n\t\tmu 0 3 11244 11246 11245\n\t\tf 3 10689 -10668 10690\n\t\tmu 0 3 11247 11238 11231\n\t\tf 3 -10682 10691 -10691\n\t\tmu 0 3 11231 11243 11247\n\t\tf 3 -10686 10692 10693\n\t\tmu 0 3 11243 11245 11248\n\t\tf 3 10694 -10692 -10694\n\t\tmu 0 3 11248 11247 11243\n\t\tf 3 -10695 10695 10696\n\t\tmu 0 3 11247 11248 11249\n\t\tf 3 10697 10698 -10697\n\t\tmu 0 3 11249 11250 11247\n\t\tf 3 10699 -10681 10700\n\t\tmu 0 3 11250 11242 11238\n\t\tf 3 -10690 -10699 -10701\n\t\tmu 0 3 11238 11247 11250\n\t\tf 3 10701 -10680 10702\n\t\tmu 0 3 11251 11241 11242\n\t\tf 3 -10700 10703 -10703\n\t\tmu 0 3 11242 11250 11251\n\t\tf 3 -10704 -10698 10704\n\t\tmu 0 3 11251 11250 11249\n\t\tf 3 -10688 10705 10706\n\t\tmu 0 3 11246 11244 11252\n\t\tf 3 -10706 -10684 10707\n\t\tmu 0 3 11252 11244 11230\n\t\tf 3 10708 10709 -10708\n\t\tmu 0 3 11230 11253 11252\n\t\tf 3 10710 10711 -10707\n\t\tmu 0 3 11252 11254 11246\n\t\tf 3 10712 -10709 10713\n\t\tmu 0 3 11255 11253 11230\n\t\tf 3 -10650 10714 -10714\n\t\tmu 0 3 11230 11229 11255\n\t\tf 3 10715 -10715 10716\n\t\tmu 0 3 11256 11255 11229\n\t\tf 3 -10648 10717 -10717\n\t\tmu 0 3 11229 11226 11256\n\t\tf 3 -10718 -10642 10718\n\t\tmu 0 3 11256 11226 11225\n\t\tf 3 10719 10720 -10719\n\t\tmu 0 3 11225 11257 11256\n\t\tf 3 -10720 10721 10722\n\t\tmu 0 3 11257 11225 11258\n\t\tf 3 -10722 10723 10724\n\t\tmu 0 3 11258 11225 11259\n\t\tf 3 10725 -10725 10726\n\t\tmu 0 3 11260 11258 11259\n\t\tf 3 -10641 10727 -10724\n\t\tmu 0 3 11225 11224 11259\n\t\tf 3 10728 10729 -10728\n\t\tmu 0 3 11224 11261 11259\n\t\tf 3 -10729 10730 10731\n\t\tmu 0 3 11261 11224 11262\n\t\tf 3 10732 10733 10734\n\t\tmu 0 3 11263 11264 11265\n\t\tf 3 10735 10736 -10723\n\t\tmu 0 3 11258 11266 11257\n\t\tf 3 -10736 -10726 10737\n\t\tmu 0 3 11266 11258 11260\n\t\tf 3 10738 10739 -10738\n\t\tmu 0 3 11260 11267 11266\n\t\tf 3 10740 10741 10742\n\t\tmu 0 3 11268 11269 11270\n\t\tf 3 -10741 10743 10744\n\t\tmu 0 3 11269 11268 11271\n\t\tf 3 10745 10746 -10745\n\t\tmu 0 3 11271 11272 11269\n\t\tf 3 -10746 10747 10748\n\t\tmu 0 3 11272 11271 11273\n\t\tf 3 -10749 10749 10750\n\t\tmu 0 3 11272 11273 11274\n\t\tf 3 10751 10752 10753\n\t\tmu 0 3 11275 11276 11277\n\t\tf 3 -10750 10754 10755\n\t\tmu 0 3 11274 11273 11278\n\t\tf 3 10756 10757 -10756\n\t\tmu 0 3 11278 11279 11274\n\t\tf 3 10758 -10757 10759\n\t\tmu 0 3 11280 11279 11278\n\t\tf 3 10760 10761 -10760\n\t\tmu 0 3 11278 11281 11280\n\t\tf 3 10762 10763 10764\n\t\tmu 0 3 11282 11283 11284\n\t\tf 3 10765 10766 -10765\n\t\tmu 0 3 11284 11285 11286\n\t\tf 3 10767 10768 10769\n\t\tmu 0 3 11287 11288 11289\n\t\tf 3 10770 10771 -10770\n\t\tmu 0 3 11289 11290 11291\n\t\tf 3 10772 -10772 10773\n\t\tmu 0 3 11292 11293 11290\n\t\tf 3 10774 -10764 -10774\n\t\tmu 0 3 11290 11284 11294\n\t\tf 3 10775 10776 10777\n\t\tmu 0 3 11295 11296 11297\n\t\tf 3 10778 -10769 -10778\n\t\tmu 0 3 11297 11289 11298\n\t\tf 3 10779 -10777 10780\n\t\tmu 0 3 11299 11297 11300\n\t\tf 3 10781 10782 -10781\n\t\tmu 0 3 11301 11302 11299\n\t\tf 3 10783 10784 10785\n\t\tmu 0 3 11303 11304 11305\n\t\tf 3 10786 10787 -10786\n\t\tmu 0 3 11305 11306 11303\n\t\tf 3 -10785 10788 10789\n\t\tmu 0 3 11305 11304 11307\n\t\tf 3 10790 10791 -10790\n\t\tmu 0 3 11307 11308 11305\n\t\tf 3 -10791 10792 10793\n\t\tmu 0 3 11308 11307 11309\n\t\tf 3 10794 10795 -10794\n\t\tmu 0 3 11309 11310 11308\n\t\tf 3 -10795 10796 10797\n\t\tmu 0 3 11310 11309 11311\n\t\tf 3 10798 10799 -10798\n\t\tmu 0 3 11311 11312 11310\n\t\tf 3 -10799 10800 10801\n\t\tmu 0 3 11312 11311 11313\n\t\tf 3 10802 10803 -10802\n\t\tmu 0 3 11313 11314 11312\n\t\tf 3 10804 10805 10806\n\t\tmu 0 3 11315 11316 11317\n\t\tf 3 10807 10808 -10807\n\t\tmu 0 3 11317 11318 11315\n\t\tf 3 -10808 10809 10810\n\t\tmu 0 3 11318 11317 11319\n\t\tf 3 10811 10812 -10811\n\t\tmu 0 3 11319 11320 11318\n\t\tf 3 -10812 10813 10814\n\t\tmu 0 3 11320 11319 11321\n\t\tf 3 10815 10816 -10815\n\t\tmu 0 3 11321 11322 11320\n\t\tf 3 10817 10818 -10805\n\t\tmu 0 3 11315 11323 11316\n\t\tf 3 -10819 10819 10820\n\t\tmu 0 3 11316 11323 11324\n\t\tf 3 10821 10822 -10821\n\t\tmu 0 3 11324 11325 11316\n\t\tf 3 10823 -10822 10824\n\t\tmu 0 3 11326 11325 11324\n\t\tf 3 10825 10826 10827\n\t\tmu 0 3 11327 11328 11324\n\t\tf 3 10828 10829 10830\n\t\tmu 0 3 11329 11330 11331\n\t\tf 3 10831 10832 -10831\n\t\tmu 0 3 11332 11333 11329\n\t\tf 3 10833 -10828 10834\n\t\tmu 0 3 11334 11327 11324\n\t\tf 3 10835 10836 10837\n\t\tmu 0 3 11335 11336 11337\n\t\tf 3 10838 10839 -10838\n\t\tmu 0 3 11337 11338 11339\n\t\tf 3 -10837 10840 10841\n\t\tmu 0 3 11337 11340 11341\n\t\tf 3 10842 10843 -10842\n\t\tmu 0 3 11342 11343 11337\n\t\tf 3 10844 10845 -10843\n\t\tmu 0 3 11344 11345 11343\n\t\tf 3 10846 10847 -10845\n\t\tmu 0 3 11346 11347 11348\n\t\tf 3 10848 10849 -10846\n\t\tmu 0 3 11349 11350 11343\n\t\tf 3 10850 10851 10852\n\t\tmu 0 3 11351 11352 11353\n\t\tf 3 -10820 10853 -10853\n\t\tmu 0 3 11353 11354 11351\n\t\tf 3 -10835 -10852 10854\n\t\tmu 0 3 11355 11353 11356\n\t\tf 3 10855 10856 -10855\n\t\tmu 0 3 11357 11358 11355\n\t\tf 3 10857 10858 10859\n\t\tmu 0 3 11359 11360 11361\n\t\tf 3 10860 10861 -10860\n\t\tmu 0 3 11362 11363 11359\n\t\tf 3 -10862 10862 10863\n\t\tmu 0 3 11359 11364 11365\n\t\tf 3 10864 10865 -10864\n\t\tmu 0 3 11366 11367 11359\n\t\tf 3 10866 -10865 10867\n\t\tmu 0 3 11368 11367 11369\n\t\tf 3 10868 10869 -10868\n\t\tmu 0 3 11370 11371 11368\n\t\tf 3 10870 -10870 10871\n\t\tmu 0 3 11372 11368 11373\n\t\tf 3 10872 10873 -10872\n\t\tmu 0 3 11374 11375 11372\n\t\tf 3 -10874 10874 10875\n\t\tmu 0 3 11372 11376 11377\n\t\tf 3 10876 10877 -10876\n\t\tmu 0 3 11378 11379 11372\n\t\tf 3 10878 10879 10880\n\t\tmu 0 3 11380 11381 11382\n\t\tf 3 10881 -10881 10882\n\t\tmu 0 3 11383 11384 11382\n\t\tf 3 10883 -10883 10884\n\t\tmu 0 3 11385 11386 11382\n\t\tf 3 10885 10886 10887\n\t\tmu 0 3 11387 11388 11389\n\t\tf 3 10888 10889 -10888\n\t\tmu 0 3 11390 11391 11387\n\t\tf 3 10890 -10879 10891\n\t\tmu 0 3 11392 11381 11393\n\t\tf 3 10892 10893 -10892\n\t\tmu 0 3 11394 11395 11392\n\t\tf 3 10894 -10894 10895\n\t\tmu 0 3 11396 11392 11397\n\t\tf 3 10896 10897 -10896\n\t\tmu 0 3 11398 11399 11396\n\t\tf 3 10898 -10898 10899\n\t\tmu 0 3 11400 11396 11401\n\t\tf 3 10900 10901 -10900\n\t\tmu 0 3 11402 11403 11400\n\t\tf 3 10902 -10902 10903\n\t\tmu 0 3 11404 11400 11405\n\t\tf 3 10904 10905 -10904\n\t\tmu 0 3 11406 11407 11404\n\t\tf 3 10906 10907 10908\n\t\tmu 0 3 11408 11409 11410\n\t\tf 3 10909 10910 -10909\n\t\tmu 0 3 11410 11411 11408\n\t\tf 3 -10910 10911 10912\n\t\tmu 0 3 11411 11410 11412\n\t\tf 3 10913 10914 -10913\n\t\tmu 0 3 11412 11413 11411\n\t\tf 3 -10914 10915 10916\n\t\tmu 0 3 11413 11412 11414\n\t\tf 3 10917 10918 -10917\n\t\tmu 0 3 11414 11415 11413\n\t\tf 3 10919 -10907 10920\n\t\tmu 0 3 11416 11409 11408\n\t\tf 3 10921 10922 -10921\n\t\tmu 0 3 11408 11417 11416\n\t\tf 3 -10923 10923 10924\n\t\tmu 0 3 11416 11417 11418\n\t\tf 3 10925 10926 -10925\n\t\tmu 0 3 11418 11419 11416\n\t\tf 3 -10926 10927 10928\n\t\tmu 0 3 11419 11418 11420\n\t\tf 3 10929 10930 -10929\n\t\tmu 0 3 11420 11421 11419\n\t\tf 3 -10930 10931 10932\n\t\tmu 0 3 11421 11420 11422\n\t\tf 3 10933 10934 10935\n\t\tmu 0 3 11423 11424 11425\n\t\tf 3 10936 10937 10938\n\t\tmu 0 3 11426 11427 11428\n\t\tf 3 10939 10940 -10939\n\t\tmu 0 3 11428 11429 11430\n\t\tf 3 10941 -10940 10942\n\t\tmu 0 3 11431 11432 11428\n\t\tf 3 10943 10944 -10943\n\t\tmu 0 3 11428 11433 11434\n\t\tf 3 10945 -10937 10946\n\t\tmu 0 3 11435 11427 11436\n\t\tf 3 10947 10948 -10947\n\t\tmu 0 3 11437 11438 11435\n\t\tf 3 10949 -10949 10950\n\t\tmu 0 3 11439 11435 11440\n\t\tf 3 10951 10952 -10951\n\t\tmu 0 3 11441 11442 11439\n\t\tf 3 -10953 10953 10954\n\t\tmu 0 3 11439 11443 11444\n\t\tf 3 10955 10956 -10955\n\t\tmu 0 3 11445 11446 11439\n\t\tf 3 -10956 10957 10958\n\t\tmu 0 3 11446 11447 11448\n\t\tf 3 10959 10960 -10959\n\t\tmu 0 3 11449 11450 11446\n\t\tf 3 -10945 10961 10962\n\t\tmu 0 3 11451 11433 11452\n\t\tf 3 10963 10964 -10963\n\t\tmu 0 3 11452 11453 11454\n\t\tf 3 10965 10966 10967\n\t\tmu 0 3 11455 11456 11457\n\t\tf 3 10968 10969 -10968\n\t\tmu 0 3 11457 11458 11459\n\t\tf 3 10970 -10969 10971\n\t\tmu 0 3 11460 11461 11457\n\t\tf 3 10972 10973 10974\n\t\tmu 0 3 11462 11463 11464\n\t\tf 3 -10966 10975 10976\n\t\tmu 0 3 11456 11465 11466\n\t\tf 3 10977 10978 -10977\n\t\tmu 0 3 11467 11468 11456\n\t\tf 3 10979 -10978 10980\n\t\tmu 0 3 11469 11468 11470\n\t\tf 3 10981 10982 -10981\n\t\tmu 0 3 11471 11472 11469\n\t\tf 3 10983 -10983 10984\n\t\tmu 0 3 11473 11469 11474\n\t\tf 3 10985 10986 -10985\n\t\tmu 0 3 11475 11476 11473\n\t\tf 3 -10987 10987 10988\n\t\tmu 0 3 11473 11477 11478\n\t\tf 3 10989 10990 -10989\n\t\tmu 0 3 11479 11480 11473\n\t\tf 3 10991 -10990 10992\n\t\tmu 0 3 11481 11480 11482\n\t\tf 3 10993 10994 -10993\n\t\tmu 0 3 11483 11484 11481\n\t\tf 3 -10373 -10513 10995\n\t\tmu 0 3 11117 11116 11177\n\t\tf 3 10996 10997 -10996\n\t\tmu 0 3 11177 11485 11117\n\t\tf 3 10998 -10997 -10523\n\t\tmu 0 3 11180 11485 11177\n\t\tf 3 -10533 10999 -10552\n\t\tmu 0 3 11185 11182 11187\n\t\tf 3 -10565 -11000 -10528\n\t\tmu 0 3 11176 11187 11182\n\t\tf 3 11000 11001 11002\n\t\tmu 0 3 11117 11486 11487\n\t\tf 3 11003 -10375 -11003\n\t\tmu 0 3 11488 11118 11117\n\t\tf 3 -11004 11004 11005\n\t\tmu 0 3 11118 11489 11490\n\t\tf 3 11006 -10379 -11006\n\t\tmu 0 3 11491 11120 11118\n\t\tf 3 -11007 11007 11008\n\t\tmu 0 3 11120 11492 11493\n\t\tf 3 11009 -10383 -11009\n\t\tmu 0 3 11494 11122 11120\n\t\tf 3 -11010 11010 11011\n\t\tmu 0 3 11122 11495 11496\n\t\tf 3 11012 -10387 -11012\n\t\tmu 0 3 11497 11124 11122\n\t\tf 3 -10389 -11013 11013\n\t\tmu 0 3 11125 11124 11498\n\t\tf 3 11014 11015 -11014\n\t\tmu 0 3 11499 11500 11125\n\t\tf 3 11016 -11015 11017\n\t\tmu 0 3 11501 11502 11503\n\t\tf 3 -11017 11018 11019\n\t\tmu 0 3 11504 11505 11506\n\t\tf 3 11020 -11019 11021\n\t\tmu 0 3 11507 11508 11509\n\t\tf 3 -11021 11022 11023\n\t\tmu 0 3 11510 11511 11512\n\t\tf 3 11024 -11023 11025\n\t\tmu 0 3 11513 11514 11515\n\t\tf 3 11026 11027 -11026\n\t\tmu 0 3 11516 11517 11518\n\t\tf 3 11028 -11028 11029\n\t\tmu 0 3 11519 11520 11521\n\t\tf 3 11030 11031 -11030\n\t\tmu 0 3 11522 11523 11524\n\t\tf 3 11032 11033 -11024\n\t\tmu 0 3 11525 11526 11527\n\t\tf 3 11034 -11034 11035\n\t\tmu 0 3 11528 11529 11530\n\t\tf 3 -11035 11036 -11020\n\t\tmu 0 3 11531 11532 11533\n\t\tf 3 -11016 -11037 11037\n\t\tmu 0 3 11125 11534 11535\n\t\tf 3 11038 11039 -11036\n\t\tmu 0 3 11536 11537 11538\n\t\tf 3 11040 -11040 11041\n\t\tmu 0 3 11138 11539 11540\n\t\tf 3 -11041 -10419 -11038\n\t\tmu 0 3 11541 11138 11125\n\t\tf 3 11042 -10420 -11042\n\t\tmu 0 3 11542 11139 11138\n\t\tf 3 -11031 11043 11044\n\t\tmu 0 3 11543 11544 11545\n\t\tf 3 11045 -11045 11046\n\t\tmu 0 3 11546 11547 11548\n\t\tf 3 11047 -11047 11048\n\t\tmu 0 3 11549 11550 11551\n\t\tf 3 11049 -11048 11050\n\t\tmu 0 3 11552 11553 11554\n\t\tf 3 11051 11052 -11051\n\t\tmu 0 3 11555 11556 11557\n\t\tf 3 -11052 11053 11054\n\t\tmu 0 3 11558 11559 11560\n\t\tf 3 -11054 -11049 11055\n\t\tmu 0 3 11561 11562 11563\n\t\tf 3 11056 11057 -11055\n\t\tmu 0 3 11564 11565 11566\n\t\tf 3 -11057 11058 11059\n\t\tmu 0 3 11567 11568 11569\n\t\tf 3 11060 -11059 -11056\n\t\tmu 0 3 11570 11571 11572\n\t\tf 3 11061 11062 -11060\n\t\tmu 0 3 11573 11574 11575\n\t\tf 3 -11062 11063 11064\n\t\tmu 0 3 11576 11577 11578\n\t\tf 3 -11064 -11061 11065\n\t\tmu 0 3 11579 11580 11581\n\t\tf 3 11066 11067 -11065\n\t\tmu 0 3 11582 11583 11584\n\t\tf 3 -11067 11068 11069\n\t\tmu 0 3 11585 11586 11587\n\t\tf 3 11070 11071 -11070\n\t\tmu 0 3 11588 11589 11590\n\t\tf 3 -11072 11072 11073\n\t\tmu 0 3 11591 11592 11593\n\t\tf 3 11074 11075 -11074\n\t\tmu 0 3 11594 11595 11596\n\t\tf 3 -11068 -11076 11076\n\t\tmu 0 3 11597 11598 11599\n\t\tf 3 -11075 11077 11078\n\t\tmu 0 3 11600 11601 11602\n\t\tf 3 11079 11080 -11079\n\t\tmu 0 3 11603 11604 11605\n\t\tf 3 11081 -11080 11082\n\t\tmu 0 3 11606 11607 11608\n\t\tf 3 11083 11084 -11083\n\t\tmu 0 3 11609 11610 11611\n\t\tf 3 11085 11086 -11077\n\t\tmu 0 3 11612 11613 11614\n\t\tf 3 -11063 -11087 11087\n\t\tmu 0 3 11615 11616 11617\n\t\tf 3 11088 11089 -11088\n\t\tmu 0 3 11618 11619 11620\n\t\tf 3 11090 -11089 11091\n\t\tmu 0 3 11621 11622 11623\n\t\tf 3 11092 11093 -11092\n\t\tmu 0 3 11624 11625 11626\n\t\tf 3 -11093 -11086 11094\n\t\tmu 0 3 11627 11628 11629\n\t\tf 3 -11081 11095 -11095\n\t\tmu 0 3 11630 11631 11632\n\t\tf 3 11096 -11094 11097\n\t\tmu 0 3 11633 11634 11635\n\t\tf 3 11098 11099 -11098\n\t\tmu 0 3 11636 11637 11638\n\t\tf 3 -11082 11100 11101\n\t\tmu 0 3 11639 11640 11641\n\t\tf 3 -11099 -11096 -11102\n\t\tmu 0 3 11642 11643 11644\n\t\tf 3 -11100 11102 11103\n\t\tmu 0 3 11645 11646 11647\n\t\tf 3 -11103 -11101 11104\n\t\tmu 0 3 11648 11649 11650\n\t\tf 3 11105 11106 -11104\n\t\tmu 0 3 11651 11652 11653\n\t\tf 3 -11106 11107 11108\n\t\tmu 0 3 11654 11655 11656\n\t\tf 3 11109 11110 -11109\n\t\tmu 0 3 11657 11658 11659\n\t\tf 3 11111 -11110 11112\n\t\tmu 0 3 11660 11661 11662\n\t\tf 3 11113 11114 -11113\n\t\tmu 0 3 11663 11664 11665\n\t\tf 3 11115 -11114 11116\n\t\tmu 0 3 11666 11667 11668\n\t\tf 3 11117 11118 -11117\n\t\tmu 0 3 11669 11670 11671\n\t\tf 3 -11118 -11108 11119\n\t\tmu 0 3 11672 11673 11674\n\t\tf 3 11120 11121 -11120\n\t\tmu 0 3 11675 11676 11677\n\t\tf 3 11122 -11121 -11105\n\t\tmu 0 3 11678 11679 11680\n\t\tf 3 11123 -11123 11124\n\t\tmu 0 3 11681 11682 11683\n\t\tf 3 -11085 11125 -11125\n\t\tmu 0 3 11684 11685 11686\n\t\tf 3 -11124 11126 11127\n\t\tmu 0 3 11687 11688 11689\n\t\tf 3 11128 -11122 -11128\n\t\tmu 0 3 11690 11691 11692\n\t\tf 3 -11129 11129 11130\n\t\tmu 0 3 11693 11694 11695\n\t\tf 3 11131 -11119 -11131\n\t\tmu 0 3 11696 11697 11698\n\t\tf 3 11132 -11126 11133\n\t\tmu 0 3 11699 11700 11701\n\t\tf 3 11134 11135 -11134\n\t\tmu 0 3 11702 11703 11704\n\t\tf 3 -11133 11136 11137\n\t\tmu 0 3 11705 11706 11707\n\t\tf 3 11138 -11127 -11138\n\t\tmu 0 3 11708 11709 11710\n\t\tf 3 -11139 11139 11140\n\t\tmu 0 3 11711 11712 11713\n\t\tf 3 11141 -11130 -11141\n\t\tmu 0 3 11714 11715 11716\n\t\tf 3 -11140 11142 11143\n\t\tmu 0 3 11717 11718 11180\n\t\tf 3 -11143 -11137 11144\n\t\tmu 0 3 11180 11719 11720\n\t\tf 3 -10525 11145 -11144\n\t\tmu 0 3 11180 11181 11721\n\t\tf 3 11146 -11146 11147\n\t\tmu 0 3 11722 11723 11181\n\t\tf 3 -11142 -11147 11148\n\t\tmu 0 3 11724 11725 11726\n\t\tf 3 -10530 11149 -11148\n\t\tmu 0 3 11181 11183 11727\n\t\tf 3 -11150 -10531 11150\n\t\tmu 0 3 11728 11183 11184\n\t\tf 3 11151 11152 -11151\n\t\tmu 0 3 11184 11729 11730\n\t\tf 3 -11002 -11135 11153\n\t\tmu 0 3 11731 11732 11733\n\t\tf 3 -11084 11154 -11154\n\t\tmu 0 3 11734 11735 11736\n\t\tf 3 -11005 -11155 11155\n\t\tmu 0 3 11737 11738 11739\n\t\tf 3 -11078 11156 -11156\n\t\tmu 0 3 11740 11741 11742\n\t\tf 3 -11157 -11073 11157\n\t\tmu 0 3 11743 11744 11745\n\t\tf 3 11158 -11008 -11158\n\t\tmu 0 3 11746 11747 11748\n\t\tf 3 -11011 -11159 11159\n\t\tmu 0 3 11749 11750 11751\n\t\tf 3 -11071 11160 -11160\n\t\tmu 0 3 11752 11753 11754\n\t\tf 3 -11161 11161 -11018\n\t\tmu 0 3 11755 11756 11757\n\t\tf 3 -11162 -11069 11162\n\t\tmu 0 3 11758 11759 11760\n\t\tf 3 11163 11164 -11163\n\t\tmu 0 3 11761 11762 11763\n\t\tf 3 11165 -11164 -11066\n\t\tmu 0 3 11764 11765 11766\n\t\tf 3 -11166 -11044 11166\n\t\tmu 0 3 11767 11768 11769\n\t\tf 3 -11027 11167 -11167\n\t\tmu 0 3 11770 11771 11772\n\t\tf 3 -11165 -11168 -11022\n\t\tmu 0 3 11773 11774 11775\n\t\tf 3 11168 -11153 11169\n\t\tmu 0 3 11776 11777 11778\n\t\tf 3 -11169 11170 -11149\n\t\tmu 0 3 11779 11780 11781\n\t\tf 3 -11171 11171 11172\n\t\tmu 0 3 11782 11783 11784\n\t\tf 3 -11172 11173 11174\n\t\tmu 0 3 11785 11786 11787\n\t\tf 3 11175 11176 -11175\n\t\tmu 0 3 11788 11789 11790\n\t\tf 3 11177 -11177 11178\n\t\tmu 0 3 11791 11792 11793\n\t\tf 3 11179 11180 -11179\n\t\tmu 0 3 11794 11795 11796\n\t\tf 3 11181 -11181 11182\n\t\tmu 0 3 11797 11798 11799\n\t\tf 3 11183 11184 -11183\n\t\tmu 0 3 11800 11801 11802\n\t\tf 3 11185 -11132 -11173\n\t\tmu 0 3 11803 11804 11805\n\t\tf 3 -11178 11186 11187\n\t\tmu 0 3 11806 11807 11808\n\t\tf 3 -11116 -11186 -11188\n\t\tmu 0 3 11809 11810 11811\n\t\tf 3 -11115 -11187 11188\n\t\tmu 0 3 11812 11813 11814\n\t\tf 3 -11182 11189 -11189\n\t\tmu 0 3 11815 11816 11817\n\t\tf 3 -11190 11190 11191\n\t\tmu 0 3 11818 11819 11820\n\t\tf 3 11192 -11112 -11192\n\t\tmu 0 3 11821 11822 11823\n\t\tf 3 -11111 -11193 11193\n\t\tmu 0 3 11824 11825 11826\n\t\tf 3 11194 11195 -11194\n\t\tmu 0 3 11827 11828 11829\n\t\tf 3 -11107 -11196 11196\n\t\tmu 0 3 11830 11831 11832\n\t\tf 3 11197 11198 -11197\n\t\tmu 0 3 11833 11834 11835\n\t\tf 3 -11097 -11199 11199\n\t\tmu 0 3 11836 11837 11838\n\t\tf 3 11200 11201 -11200\n\t\tmu 0 3 11839 11840 11841\n\t\tf 3 -11202 11202 11203\n\t\tmu 0 3 11842 11843 11844\n\t\tf 3 11204 -11091 -11204\n\t\tmu 0 3 11845 11846 11847\n\t\tf 3 -11090 -11205 11205\n\t\tmu 0 3 11848 11849 11850\n\t\tf 3 11206 -11058 -11206\n\t\tmu 0 3 11851 11852 11853\n\t\tf 3 11207 -11053 -11207\n\t\tmu 0 3 11854 11855 11856\n\t\tf 3 11208 11209 11210\n\t\tmu 0 3 11857 11858 11859\n\t\tf 3 11211 11212 -11211\n\t\tmu 0 3 11860 11861 11862\n\t\tf 3 -11212 11213 11214\n\t\tmu 0 3 11863 11864 11865\n\t\tf 3 11215 11216 -11215\n\t\tmu 0 3 11866 11867 11868\n\t\tf 3 11217 -11217 11218\n\t\tmu 0 3 11206 11869 11870\n\t\tf 3 -11213 -11218 11219\n\t\tmu 0 3 11871 11872 11206\n\t\tf 3 11220 -10602 -11219\n\t\tmu 0 3 11873 11207 11206\n\t\tf 3 -10605 11221 -11220\n\t\tmu 0 3 11206 11208 11874\n\t\tf 3 11222 -11222 11223\n\t\tmu 0 3 11875 11876 11208\n\t\tf 3 -11209 -11223 11224\n\t\tmu 0 3 11877 11878 11879\n\t\tf 3 -10610 11225 -11224\n\t\tmu 0 3 11208 11210 11880\n\t\tf 3 11226 -11226 11227\n\t\tmu 0 3 11881 11882 11210\n\t\tf 3 -10611 11228 -11228\n\t\tmu 0 3 11210 11211 11883\n\t\tf 3 -10615 -11221 11229\n\t\tmu 0 3 11213 11207 11884\n\t\tf 3 11230 11231 -11230\n\t\tmu 0 3 11885 11886 11213\n\t\tf 3 -11231 -11216 11232\n\t\tmu 0 3 11887 11888 11889\n\t\tf 3 -11232 11233 11234\n\t\tmu 0 3 11213 11890 11891\n\t\tf 3 11235 -10622 -11235\n\t\tmu 0 3 11892 11216 11213\n\t\tf 3 -11236 11236 11237\n\t\tmu 0 3 11216 11893 11894\n\t\tf 3 11238 -10626 -11238\n\t\tmu 0 3 11895 11218 11216\n\t\tf 3 -11234 11239 11240\n\t\tmu 0 3 11896 11897 11898\n\t\tf 3 11241 -11240 -11233\n\t\tmu 0 3 11899 11900 11901\n\t\tf 3 11242 11243 -11241\n\t\tmu 0 3 11902 11903 11904\n\t\tf 3 11244 -11237 11245\n\t\tmu 0 3 11905 11906 11907\n\t\tf 3 -11244 11246 -11246\n\t\tmu 0 3 11908 11909 11910\n\t\tf 3 -11227 11247 11248\n\t\tmu 0 3 11911 11912 11913\n\t\tf 3 11249 11250 -11249\n\t\tmu 0 3 11914 11915 11916\n\t\tf 3 -11251 11251 -11225\n\t\tmu 0 3 11917 11918 11919\n\t\tf 3 11252 11253 11254\n\t\tmu 0 3 11920 11921 11922\n\t\tf 3 11255 11256 -11255\n\t\tmu 0 3 11923 11924 11925\n\t\tf 3 -11257 11257 11258\n\t\tmu 0 3 11926 11927 11928\n\t\tf 3 11259 11260 -11259\n\t\tmu 0 3 11929 11930 11931\n\t\tf 3 11261 -11260 11262\n\t\tmu 0 3 11932 11933 11934\n\t\tf 3 11263 11264 -11263\n\t\tmu 0 3 11935 11936 11937\n\t\tf 3 11265 -11258 11266\n\t\tmu 0 3 11938 11939 11940\n\t\tf 3 11267 11268 -11267\n\t\tmu 0 3 11941 11942 11943\n\t\tf 3 11269 -11269 11270\n\t\tmu 0 3 11944 11945 11946\n\t\tf 3 11271 11272 -11271\n\t\tmu 0 3 11947 11948 11949\n\t\tf 3 11273 -11272 11274\n\t\tmu 0 3 11950 11951 11952\n\t\tf 3 11275 11276 -11275\n\t\tmu 0 3 11953 11954 11955\n\t\tf 3 -11276 -11268 11277\n\t\tmu 0 3 11956 11957 11958\n\t\tf 3 11278 -11278 -11256\n\t\tmu 0 3 11959 11960 11961\n\t\tf 3 11279 -11264 11280\n\t\tmu 0 3 11962 11963 11964\n\t\tf 3 -11266 11281 -11281\n\t\tmu 0 3 11965 11966 11967\n\t\tf 3 -11282 -11270 11282\n\t\tmu 0 3 11968 11969 11970\n\t\tf 3 -11274 11283 11284\n\t\tmu 0 3 11971 11972 11973\n\t\tf 3 -11273 -11285 11285\n\t\tmu 0 3 11974 11975 11976\n\t\tf 3 11286 11287 -11286\n\t\tmu 0 3 11977 11978 11979\n\t\tf 3 -11288 11288 11289\n\t\tmu 0 3 11980 11981 11982\n\t\tf 3 11290 11291 -11290\n\t\tmu 0 3 11983 11984 11985\n\t\tf 3 -11292 11292 -11283\n\t\tmu 0 3 11986 11987 11988\n\t\tf 3 -11265 11293 11294\n\t\tmu 0 3 11989 11990 11991\n\t\tf 3 11295 11296 -11295\n\t\tmu 0 3 11992 11993 11994\n\t\tf 3 -11296 11297 11298\n\t\tmu 0 3 11995 11996 11997\n\t\tf 3 11299 11300 -11299\n\t\tmu 0 3 11998 11999 12000\n\t\tf 3 -11280 11301 11302\n\t\tmu 0 3 12001 12002 12003\n\t\tf 3 11303 -11294 -11303\n\t\tmu 0 3 12004 12005 12006\n\t\tf 3 -11304 11304 11305\n\t\tmu 0 3 12007 12008 12009\n\t\tf 3 11306 -11298 -11306\n\t\tmu 0 3 12010 12011 12012\n\t\tf 3 11307 -11305 11308\n\t\tmu 0 3 12013 12014 12015\n\t\tf 3 11309 11310 -11309\n\t\tmu 0 3 12016 12017 12018\n\t\tf 3 -11310 -11302 11311\n\t\tmu 0 3 12019 12020 12021\n\t\tf 3 -11293 11312 -11312\n\t\tmu 0 3 12022 12023 12024\n\t\tf 3 -11291 11313 11314\n\t\tmu 0 3 12025 12026 12027\n\t\tf 3 11315 -11313 -11315\n\t\tmu 0 3 12028 12029 12030\n\t\tf 3 -11311 -11316 11316\n\t\tmu 0 3 12031 12032 12033\n\t\tf 3 11317 -11301 11318\n\t\tmu 0 3 12034 12035 12036\n\t\tf 3 -11297 -11318 11319\n\t\tmu 0 3 12037 12038 12039\n\t\tf 3 11320 11321 -11320\n\t\tmu 0 3 12040 12041 12042\n\t\tf 3 11322 11323 -11319\n\t\tmu 0 3 12043 12044 12045\n\t\tf 3 -11322 11324 11325\n\t\tmu 0 3 12046 12047 12048\n\t\tf 3 11326 -11262 -11326\n\t\tmu 0 3 12049 12050 12051\n\t\tf 3 -11327 11327 11328\n\t\tmu 0 3 12052 12053 12054\n\t\tf 3 11329 -11261 -11329\n\t\tmu 0 3 12055 12056 12057\n\t\tf 3 -11253 -11330 11330\n\t\tmu 0 3 12058 12059 12060\n\t\tf 3 11331 11332 -11331\n\t\tmu 0 3 12061 12062 12063\n\t\tf 3 11333 -11333 11334\n\t\tmu 0 3 12064 12065 12066\n\t\tf 3 11335 11336 -11334\n\t\tmu 0 3 12067 12068 12069\n\t\tf 3 -11336 11337 11338\n\t\tmu 0 3 12070 12071 12072\n\t\tf 3 11339 -11254 -11337\n\t\tmu 0 3 12073 12074 12075;\n\tsetAttr \".fc[6000:6499]\"\n\t\tf 3 11340 11341 -11340\n\t\tmu 0 3 12076 12077 12078\n\t\tf 3 11342 11343 -11342\n\t\tmu 0 3 12079 12080 12081\n\t\tf 3 11344 11345 11346\n\t\tmu 0 3 12082 12083 12084\n\t\tf 3 11347 11348 -11335\n\t\tmu 0 3 12085 12086 12087\n\t\tf 3 -11338 -11349 11349\n\t\tmu 0 3 12088 12089 12090\n\t\tf 3 11350 11351 -11350\n\t\tmu 0 3 12091 12092 12093\n\t\tf 3 11352 11353 11354\n\t\tmu 0 3 12094 12095 12096\n\t\tf 3 -11355 11355 11356\n\t\tmu 0 3 12097 12098 12099\n\t\tf 3 11357 11358 -11357\n\t\tmu 0 3 12100 12101 12102\n\t\tf 3 11359 11360 -11358\n\t\tmu 0 3 12103 12104 12105\n\t\tf 3 11361 11362 -11360\n\t\tmu 0 3 12106 12107 12108\n\t\tf 3 11363 11364 -11363\n\t\tmu 0 3 12109 12110 12111\n\t\tf 3 11365 -11365 11366\n\t\tmu 0 3 12112 12113 12114\n\t\tf 3 11367 11368 -11367\n\t\tmu 0 3 12115 12116 12117\n\t\tf 3 -11369 11369 11370\n\t\tmu 0 3 12118 12119 11280\n\t\tf 3 -10762 11371 -11371\n\t\tmu 0 3 11280 11281 12120\n\t\tf 3 11372 11373 11374\n\t\tmu 0 3 12121 12122 12123\n\t\tf 3 -10767 11375 -11375\n\t\tmu 0 3 12124 11285 12125\n\t\tf 3 11376 11377 11378\n\t\tmu 0 3 12126 12127 12128\n\t\tf 3 11379 11380 -11379\n\t\tmu 0 3 12129 12130 12131\n\t\tf 3 -11380 11381 11382\n\t\tmu 0 3 12132 12133 12134\n\t\tf 3 -11373 11383 -11383\n\t\tmu 0 3 12135 12136 12137\n\t\tf 3 11384 11385 11386\n\t\tmu 0 3 12138 12139 12140\n\t\tf 3 -11377 11387 -11387\n\t\tmu 0 3 12141 12142 12143\n\t\tf 3 11388 11389 11390\n\t\tmu 0 3 12144 12145 12146\n\t\tf 3 -11385 11391 -11391\n\t\tmu 0 3 12147 12148 12149\n\t\tf 3 11392 11393 11394\n\t\tmu 0 3 12150 12151 12152\n\t\tf 3 11395 11396 -11395\n\t\tmu 0 3 12153 12154 12155\n\t\tf 3 11397 -11396 11398\n\t\tmu 0 3 12156 12157 12158\n\t\tf 3 11399 11400 -11399\n\t\tmu 0 3 12159 12160 12161\n\t\tf 3 11401 -11401 11402\n\t\tmu 0 3 12162 12163 12164\n\t\tf 3 11403 11404 -11403\n\t\tmu 0 3 12165 12166 12167\n\t\tf 3 11405 -11405 11406\n\t\tmu 0 3 12168 12169 12170\n\t\tf 3 11407 11408 -11407\n\t\tmu 0 3 12171 12172 12173\n\t\tf 3 11409 -11409 11410\n\t\tmu 0 3 11313 12174 12175\n\t\tf 3 11411 -10803 -11411\n\t\tmu 0 3 12176 11314 11313\n\t\tf 3 11412 11413 11414\n\t\tmu 0 3 12177 12178 12179\n\t\tf 3 11415 11416 -11415\n\t\tmu 0 3 12180 12181 12182\n\t\tf 3 11417 -11414 11418\n\t\tmu 0 3 12183 12184 12185\n\t\tf 3 11419 11420 -11419\n\t\tmu 0 3 12186 12187 12188\n\t\tf 3 11421 -11421 11422\n\t\tmu 0 3 12189 12190 12191\n\t\tf 3 11423 11424 -11423\n\t\tmu 0 3 12192 12193 12194\n\t\tf 3 -11417 11425 11426\n\t\tmu 0 3 12195 12196 12197\n\t\tf 3 11427 -11426 11428\n\t\tmu 0 3 12198 12199 12200\n\t\tf 3 11429 11430 -11429\n\t\tmu 0 3 12201 12202 12203\n\t\tf 3 -11431 11431 11432\n\t\tmu 0 3 12204 12205 12206\n\t\tf 3 11433 11434 11435\n\t\tmu 0 3 11327 12207 12208\n\t\tf 3 11436 11437 11438\n\t\tmu 0 3 12209 12210 12211\n\t\tf 3 11439 11440 -11439\n\t\tmu 0 3 12212 12213 12214\n\t\tf 3 -10834 11441 -11434\n\t\tmu 0 3 11327 11334 12215\n\t\tf 3 11442 11443 11444\n\t\tmu 0 3 12216 12217 12218\n\t\tf 3 11445 11446 -11445\n\t\tmu 0 3 12219 12220 12221\n\t\tf 3 11447 -11444 11448\n\t\tmu 0 3 12222 12223 12224\n\t\tf 3 11449 11450 -11449\n\t\tmu 0 3 12225 12226 12227\n\t\tf 3 11451 11452 -11451\n\t\tmu 0 3 12228 12229 12230\n\t\tf 3 11453 11454 -11452\n\t\tmu 0 3 12231 12232 12233\n\t\tf 3 11455 11456 -11453\n\t\tmu 0 3 12234 12235 12236\n\t\tf 3 11457 -11428 11458\n\t\tmu 0 3 12237 12238 12239\n\t\tf 3 11459 11460 -11459\n\t\tmu 0 3 12240 12241 12242\n\t\tf 3 -11460 -11442 11461\n\t\tmu 0 3 12243 12244 11355\n\t\tf 3 -10857 11462 -11462\n\t\tmu 0 3 11355 12245 12246\n\t\tf 3 11463 11464 11465\n\t\tmu 0 3 12247 12248 12249\n\t\tf 3 11466 11467 -11466\n\t\tmu 0 3 12250 12251 12252\n\t\tf 3 11468 -11464 11469\n\t\tmu 0 3 12253 12254 12255\n\t\tf 3 11470 11471 -11470\n\t\tmu 0 3 12256 12257 12258\n\t\tf 3 -11472 11472 11473\n\t\tmu 0 3 12259 12260 12261\n\t\tf 3 11474 11475 -11474\n\t\tmu 0 3 12262 12263 12264\n\t\tf 3 -11475 11476 11477\n\t\tmu 0 3 12265 12266 12267\n\t\tf 3 11478 11479 -11478\n\t\tmu 0 3 12268 12269 12270\n\t\tf 3 11480 -11479 11481\n\t\tmu 0 3 12271 12272 12273\n\t\tf 3 11482 -10877 -11482\n\t\tmu 0 3 12274 11379 12275\n\t\tf 3 11483 11484 11485\n\t\tmu 0 3 12276 12277 12278\n\t\tf 3 -11486 11486 11487\n\t\tmu 0 3 12279 12280 12281\n\t\tf 3 -11488 -10884 11488\n\t\tmu 0 3 12282 12283 11385\n\t\tf 3 11489 11490 11491\n\t\tmu 0 3 12284 12285 12286\n\t\tf 3 11492 11493 -11492\n\t\tmu 0 3 12287 12288 12289\n\t\tf 3 -11485 11494 11495\n\t\tmu 0 3 12290 12291 12292\n\t\tf 3 11496 11497 -11496\n\t\tmu 0 3 12293 12294 12295\n\t\tf 3 -11497 11498 11499\n\t\tmu 0 3 12296 12297 12298\n\t\tf 3 11500 11501 -11500\n\t\tmu 0 3 12299 12300 12301\n\t\tf 3 -11501 11502 11503\n\t\tmu 0 3 12302 12303 12304\n\t\tf 3 11504 11505 -11504\n\t\tmu 0 3 12305 12306 12307\n\t\tf 3 11506 -11505 11507\n\t\tmu 0 3 12308 12309 12310\n\t\tf 3 11508 11509 -11508\n\t\tmu 0 3 12311 12312 12313\n\t\tf 3 11510 11511 11512\n\t\tmu 0 3 12314 12315 12316\n\t\tf 3 11513 11514 -11513\n\t\tmu 0 3 12317 12318 12319\n\t\tf 3 11515 -11515 11516\n\t\tmu 0 3 12320 12321 12322\n\t\tf 3 11517 11518 -11517\n\t\tmu 0 3 12323 12324 12325\n\t\tf 3 11519 -11519 11520\n\t\tmu 0 3 12326 12327 12328\n\t\tf 3 11521 11522 -11521\n\t\tmu 0 3 12329 12330 12331\n\t\tf 3 -11512 11523 11524\n\t\tmu 0 3 12332 12333 12334\n\t\tf 3 11525 11526 -11525\n\t\tmu 0 3 12335 12336 12337\n\t\tf 3 11527 -11526 11528\n\t\tmu 0 3 12338 12339 12340\n\t\tf 3 11529 11530 -11529\n\t\tmu 0 3 12341 12342 12343\n\t\tf 3 11531 -11531 11532\n\t\tmu 0 3 12344 12345 12346\n\t\tf 3 11533 11534 -11533\n\t\tmu 0 3 12347 12348 12349\n\t\tf 3 11535 -11535 11536\n\t\tmu 0 3 12350 12351 12352\n\t\tf 3 11537 11538 11539\n\t\tmu 0 3 12353 12354 12355\n\t\tf 3 11540 11541 11542\n\t\tmu 0 3 12356 12357 12358\n\t\tf 3 11543 11544 -11543\n\t\tmu 0 3 12359 12360 12361\n\t\tf 3 -11545 11545 11546\n\t\tmu 0 3 12362 12363 12364\n\t\tf 3 11547 11548 -11547\n\t\tmu 0 3 12365 12366 12367\n\t\tf 3 -11542 11549 11550\n\t\tmu 0 3 12368 12369 12370\n\t\tf 3 11551 11552 -11551\n\t\tmu 0 3 12371 12372 12373\n\t\tf 3 -11552 11553 11554\n\t\tmu 0 3 12374 12375 12376\n\t\tf 3 11555 11556 -11555\n\t\tmu 0 3 12377 12378 12379\n\t\tf 3 11557 -11556 11558\n\t\tmu 0 3 12380 12381 12382\n\t\tf 3 11559 11560 -11559\n\t\tmu 0 3 12383 12384 12385\n\t\tf 3 11561 -11561 11562\n\t\tmu 0 3 12386 12387 12388\n\t\tf 3 11563 11564 -11563\n\t\tmu 0 3 12389 12390 12391\n\t\tf 3 11565 -11548 11566\n\t\tmu 0 3 12392 12393 12394\n\t\tf 3 11567 11568 -11567\n\t\tmu 0 3 12395 12396 12397\n\t\tf 3 11569 11570 11571\n\t\tmu 0 3 12398 12399 12400\n\t\tf 3 11572 11573 -11572\n\t\tmu 0 3 12401 12402 12403\n\t\tf 3 -11574 11574 11575\n\t\tmu 0 3 12404 12405 12406\n\t\tf 3 11576 11577 11578\n\t\tmu 0 3 12407 12408 12409\n\t\tf 3 11579 -11571 11580\n\t\tmu 0 3 12410 12411 12412\n\t\tf 3 11581 11582 -11581\n\t\tmu 0 3 12413 12414 12415\n\t\tf 3 -11583 11583 11584\n\t\tmu 0 3 12416 12417 12418\n\t\tf 3 11585 11586 -11585\n\t\tmu 0 3 12419 12420 12421\n\t\tf 3 -11586 11587 11588\n\t\tmu 0 3 12422 12423 12424\n\t\tf 3 11589 11590 -11589\n\t\tmu 0 3 12425 12426 12427\n\t\tf 3 11591 -11590 11592\n\t\tmu 0 3 12428 12429 12430\n\t\tf 3 11593 11594 -11593\n\t\tmu 0 3 12431 12432 12433\n\t\tf 3 -11595 11595 11596\n\t\tmu 0 3 12434 12435 12436\n\t\tf 3 11597 11598 -11597\n\t\tmu 0 3 12437 12438 12439\n\t\tf 3 -11136 -11001 11599\n\t\tmu 0 3 12440 12441 11117\n\t\tf 3 -10998 11600 -11600\n\t\tmu 0 3 11117 11485 12442\n\t\tf 3 -11601 -10999 -11145\n\t\tmu 0 3 12443 11485 11180\n\t\tf 3 11601 -11174 -11170\n\t\tmu 0 3 12444 12445 12446\n\t\tf 3 11602 11603 11604\n\t\tmu 0 3 12447 12448 12449\n\t\tf 3 11605 11606 -11605\n\t\tmu 0 3 12449 12450 12447\n\t\tf 3 -11607 11607 11608\n\t\tmu 0 3 12447 12450 12451\n\t\tf 3 11609 11610 -11609\n\t\tmu 0 3 12451 12452 12447\n\t\tf 3 11611 -11606 11612\n\t\tmu 0 3 12453 12450 12449\n\t\tf 3 11613 11614 -11613\n\t\tmu 0 3 12449 12454 12453\n\t\tf 3 11615 -11615 11616\n\t\tmu 0 3 12455 12453 12454\n\t\tf 3 11617 11618 -11617\n\t\tmu 0 3 12454 12456 12455\n\t\tf 3 -11619 11619 11620\n\t\tmu 0 3 12455 12456 12457\n\t\tf 3 11621 11622 -11621\n\t\tmu 0 3 12457 12458 12455\n\t\tf 3 -11604 11623 11624\n\t\tmu 0 3 12449 12448 12459\n\t\tf 3 11625 11626 -11625\n\t\tmu 0 3 12459 12460 12449\n\t\tf 3 -11626 11627 11628\n\t\tmu 0 3 12460 12459 12461\n\t\tf 3 11629 11630 -11629\n\t\tmu 0 3 12461 12462 12460\n\t\tf 3 11631 11632 11633\n\t\tmu 0 3 12463 12464 12465\n\t\tf 3 11634 11635 -11634\n\t\tmu 0 3 12465 12466 12463\n\t\tf 3 -11635 11636 11637\n\t\tmu 0 3 12466 12465 12467\n\t\tf 3 11638 11639 -11638\n\t\tmu 0 3 12467 12468 12466\n\t\tf 3 -11640 11640 11641\n\t\tmu 0 3 12466 12468 12469\n\t\tf 3 11642 11643 -11642\n\t\tmu 0 3 12469 12470 12466\n\t\tf 3 11644 -11632 11645\n\t\tmu 0 3 12471 12464 12463\n\t\tf 3 11646 11647 -11646\n\t\tmu 0 3 12463 12472 12471\n\t\tf 3 11648 -11648 11649\n\t\tmu 0 3 12473 12471 12472\n\t\tf 3 11650 11651 -11650\n\t\tmu 0 3 12472 12474 12473\n\t\tf 3 -11652 11652 11653\n\t\tmu 0 3 12473 12474 12475\n\t\tf 3 11654 11655 -11654\n\t\tmu 0 3 12475 12476 12473\n\t\tf 3 -11655 11656 11657\n\t\tmu 0 3 12476 12475 12477\n\t\tf 3 11658 11659 -11658\n\t\tmu 0 3 12477 12478 12476\n\t\tf 3 -11659 11660 11661\n\t\tmu 0 3 12478 12477 12479\n\t\tf 3 11662 11663 -11662\n\t\tmu 0 3 12479 12480 12478\n\t\tf 3 11664 11665 11666\n\t\tmu 0 3 12481 12482 12483\n\t\tf 3 11667 11668 -11667\n\t\tmu 0 3 12483 12484 12481\n\t\tf 3 11669 -11665 11670\n\t\tmu 0 3 12485 12482 12481\n\t\tf 3 11671 11672 -11671\n\t\tmu 0 3 12481 12486 12485\n\t\tf 3 -11673 11673 11674\n\t\tmu 0 3 12485 12486 12487\n\t\tf 3 11675 11676 -11675\n\t\tmu 0 3 12487 12488 12485\n\t\tf 3 -11668 11677 11678\n\t\tmu 0 3 12484 12483 12489\n\t\tf 3 11679 11680 -11679\n\t\tmu 0 3 12489 12490 12484\n\t\tf 3 11681 -11676 11682\n\t\tmu 0 3 12491 12488 12487\n\t\tf 3 11683 11684 -11683\n\t\tmu 0 3 12487 12492 12491\n\t\tf 3 11685 11686 11687\n\t\tmu 0 3 12493 12494 12495\n\t\tf 3 11688 11689 -11688\n\t\tmu 0 3 12495 12496 12493\n\t\tf 3 11690 -11687 11691\n\t\tmu 0 3 12497 12495 12494\n\t\tf 3 11692 11693 -11692\n\t\tmu 0 3 12494 12498 12497\n\t\tf 3 11694 11695 11696\n\t\tmu 0 3 12499 12500 12501\n\t\tf 3 11697 11698 -11697\n\t\tmu 0 3 12501 12502 12499\n\t\tf 3 11699 11700 11701\n\t\tmu 0 3 12503 12504 12505\n\t\tf 3 11702 11703 -11702\n\t\tmu 0 3 12505 12506 12503\n\t\tf 3 -11704 11704 11705\n\t\tmu 0 3 12503 12506 12507\n\t\tf 3 11706 11707 -11706\n\t\tmu 0 3 12507 12508 12503\n\t\tf 3 11708 11709 11710\n\t\tmu 0 3 12509 12510 12511\n\t\tf 3 11711 11712 -11711\n\t\tmu 0 3 12511 12512 12509\n\t\tf 3 11713 11714 11715\n\t\tmu 0 3 12513 12514 12515\n\t\tf 3 11716 11717 -11716\n\t\tmu 0 3 12515 12516 12513\n\t\tf 3 11718 11719 11720\n\t\tmu 0 3 12517 12518 12519\n\t\tf 3 11721 11722 -11721\n\t\tmu 0 3 12520 12521 12517\n\t\tf 3 -11723 11723 11724\n\t\tmu 0 3 12517 12521 12522\n\t\tf 3 11725 11726 -11725\n\t\tmu 0 3 12522 12523 12517\n\t\tf 3 11727 11728 11729\n\t\tmu 0 3 12524 12525 12526\n\t\tf 3 11730 11731 -11730\n\t\tmu 0 3 12526 12527 12524\n\t\tf 3 11732 -11728 11733\n\t\tmu 0 3 12528 12525 12524\n\t\tf 3 11734 11735 11736\n\t\tmu 0 3 12529 12530 12531\n\t\tf 3 11737 -11736 11738\n\t\tmu 0 3 12532 12533 12530\n\t\tf 3 11739 11740 -11739\n\t\tmu 0 3 12530 12534 12532\n\t\tf 3 -11741 11741 11742\n\t\tmu 0 3 12532 12534 12535\n\t\tf 3 11743 11744 -11743\n\t\tmu 0 3 12535 12536 12532\n\t\tf 3 11745 -11707 11746\n\t\tmu 0 3 12537 12538 12507\n\t\tf 3 11747 11748 -11747\n\t\tmu 0 3 12507 12539 12537\n\t\tf 3 11749 11750 11751\n\t\tmu 0 3 12540 12541 12542\n\t\tf 3 11752 11753 -11752\n\t\tmu 0 3 12542 12543 12540\n\t\tf 3 -11753 11754 11755\n\t\tmu 0 3 12543 12542 12544\n\t\tf 3 11756 11757 -11756\n\t\tmu 0 3 12544 12545 12543\n\t\tf 3 11758 11759 11760\n\t\tmu 0 3 12546 12547 12548\n\t\tf 3 11761 11762 -11761\n\t\tmu 0 3 12548 12549 12546\n\t\tf 3 11763 -11763 11764\n\t\tmu 0 3 12489 12546 12549\n\t\tf 3 11765 -11680 -11765\n\t\tmu 0 3 12549 12490 12489\n\t\tf 3 11766 11767 11768\n\t\tmu 0 3 12550 12551 12547\n\t\tf 3 -11759 11769 -11769\n\t\tmu 0 3 12547 12546 12550\n\t\tf 3 11770 -11767 11771\n\t\tmu 0 3 12552 12551 12550\n\t\tf 3 11772 11773 -11772\n\t\tmu 0 3 12550 12553 12552\n\t\tf 3 11774 -11770 11775\n\t\tmu 0 3 12554 12550 12546\n\t\tf 3 -11773 -11775 11776\n\t\tmu 0 3 12553 12550 12554\n\t\tf 3 11777 11778 -11776\n\t\tmu 0 3 12546 12555 12554\n\t\tf 3 11779 11780 -11777\n\t\tmu 0 3 12554 12556 12553\n\t\tf 3 11781 11782 11783\n\t\tmu 0 3 12557 12558 12559\n\t\tf 3 11784 11785 -11784\n\t\tmu 0 3 12559 12560 12557\n\t\tf 3 11786 -11783 11787\n\t\tmu 0 3 12561 12559 12558\n\t\tf 3 11788 11789 -11788\n\t\tmu 0 3 12558 12562 12561\n\t\tf 3 11790 -11786 11791\n\t\tmu 0 3 12563 12557 12560\n\t\tf 3 11792 11793 -11792\n\t\tmu 0 3 12560 12564 12563\n\t\tf 3 11794 -11790 11795\n\t\tmu 0 3 12565 12561 12562\n\t\tf 3 11796 11797 -11796\n\t\tmu 0 3 12562 12566 12565\n\t\tf 3 11798 11799 -11798\n\t\tmu 0 3 12566 12567 12565\n\t\tf 3 11800 -11794 11801\n\t\tmu 0 3 12568 12563 12564\n\t\tf 3 11802 11803 -11802\n\t\tmu 0 3 12564 12569 12568\n\t\tf 3 11804 11805 11806\n\t\tmu 0 3 12570 12571 12572\n\t\tf 3 11807 11808 -11807\n\t\tmu 0 3 12572 12573 12570\n\t\tf 3 11809 -11806 11810\n\t\tmu 0 3 12574 12572 12571\n\t\tf 3 11811 11812 -11811\n\t\tmu 0 3 12571 12575 12574\n\t\tf 3 11813 -11809 11814\n\t\tmu 0 3 12576 12570 12573\n\t\tf 3 11815 11816 -11815\n\t\tmu 0 3 12573 12577 12576\n\t\tf 3 11817 -11813 11818\n\t\tmu 0 3 12578 12574 12575\n\t\tf 3 11819 11820 -11819\n\t\tmu 0 3 12575 12579 12578\n\t\tf 3 11821 -11817 11822\n\t\tmu 0 3 12580 12576 12577\n\t\tf 3 11823 11824 -11823\n\t\tmu 0 3 12577 12581 12580\n\t\tf 3 11825 11826 11827\n\t\tmu 0 3 12582 12583 12584\n\t\tf 3 11828 11829 -11828\n\t\tmu 0 3 12585 12586 12582\n\t\tf 3 11830 11831 11832\n\t\tmu 0 3 12587 12588 12589\n\t\tf 3 11833 11834 -11833\n\t\tmu 0 3 12589 12590 12587\n\t\tf 3 -11831 11835 11836\n\t\tmu 0 3 12588 12587 12591\n\t\tf 3 11837 11838 -11837\n\t\tmu 0 3 12591 12592 12588\n\t\tf 3 -11834 11839 11840\n\t\tmu 0 3 12590 12589 12593\n\t\tf 3 11841 11842 -11841\n\t\tmu 0 3 12593 12594 12590\n\t\tf 3 11843 -11838 11844\n\t\tmu 0 3 12595 12592 12591\n\t\tf 3 11845 11846 -11845\n\t\tmu 0 3 12591 12596 12595\n\t\tf 3 11847 -11847 11848\n\t\tmu 0 3 12597 12595 12596\n\t\tf 3 11849 11850 -11849\n\t\tmu 0 3 12596 12598 12597\n\t\tf 3 11851 -11842 11852\n\t\tmu 0 3 12599 12594 12593\n\t\tf 3 11853 11854 -11853\n\t\tmu 0 3 12593 12600 12599\n\t\tf 3 11855 -11851 11856\n\t\tmu 0 3 12601 12602 12603\n\t\tf 3 11857 11858 -11857\n\t\tmu 0 3 12603 12604 12601\n\t\tf 3 11859 11860 11861\n\t\tmu 0 3 12605 12606 12607\n\t\tf 3 -11749 -11862 11862\n\t\tmu 0 3 12608 12605 12607\n\t\tf 3 11863 -11678 11864\n\t\tmu 0 3 12609 12610 12611\n\t\tf 3 11865 11866 11867\n\t\tmu 0 3 12612 12613 12614\n\t\tf 3 11868 11869 -11868\n\t\tmu 0 3 12614 12615 12612\n\t\tf 3 -11867 11870 11871\n\t\tmu 0 3 12614 12613 12616\n\t\tf 3 11872 11873 -11872\n\t\tmu 0 3 12616 12617 12614\n\t\tf 3 11874 11875 11876\n\t\tmu 0 3 12618 12619 12620\n\t\tf 3 11877 11878 -11877\n\t\tmu 0 3 12621 12622 12623\n\t\tf 3 11879 -11875 11880\n\t\tmu 0 3 12624 12625 12626\n\t\tf 3 11881 11882 -11881\n\t\tmu 0 3 12627 12628 12629\n\t\tf 3 -11876 11883 11884\n\t\tmu 0 3 12630 12631 12632\n\t\tf 3 11885 11886 -11885\n\t\tmu 0 3 12633 12634 12635\n\t\tf 3 -11886 11887 11888\n\t\tmu 0 3 12636 12637 12638\n\t\tf 3 11889 11890 -11889\n\t\tmu 0 3 12639 12640 12641\n\t\tf 3 11891 -11890 11892\n\t\tmu 0 3 12642 12643 12644\n\t\tf 3 11893 11894 -11893\n\t\tmu 0 3 12645 12646 12647\n\t\tf 3 11895 -11878 11896\n\t\tmu 0 3 12648 12649 12650\n\t\tf 3 11897 11898 -11897\n\t\tmu 0 3 12651 12652 12653\n\t\tf 3 11899 -11899 11900\n\t\tmu 0 3 12461 12654 12655\n\t\tf 3 11901 -11630 -11901\n\t\tmu 0 3 12656 12462 12461\n\t\tf 3 11902 11903 11904\n\t\tmu 0 3 12657 12658 12659\n\t\tf 3 11905 11906 -11905\n\t\tmu 0 3 12660 12661 12662\n\t\tf 3 11907 -11904 11908\n\t\tmu 0 3 12663 12664 12665\n\t\tf 3 11909 11910 -11909\n\t\tmu 0 3 12666 12667 12668\n\t\tf 3 11911 -11910 11912\n\t\tmu 0 3 12669 12670 12671\n\t\tf 3 11913 11914 -11913\n\t\tmu 0 3 12672 12673 12674\n\t\tf 3 -11907 11915 11916\n\t\tmu 0 3 12675 12676 12677\n\t\tf 3 11917 11918 -11917\n\t\tmu 0 3 12678 12679 12680\n\t\tf 3 -11918 11919 11920\n\t\tmu 0 3 12681 12682 12683\n\t\tf 3 11921 11922 -11921\n\t\tmu 0 3 12684 12685 12686\n\t\tf 3 11923 -11922 11924\n\t\tmu 0 3 12687 12688 12689\n\t\tf 3 11925 11926 -11925\n\t\tmu 0 3 12690 12691 12692\n\t\tf 3 11927 -11927 11928\n\t\tmu 0 3 12693 12694 12695\n\t\tf 3 11929 11930 -11929\n\t\tmu 0 3 12696 12697 12698\n\t\tf 3 11931 -11931 11932\n\t\tmu 0 3 12479 12699 12700\n\t\tf 3 11933 -11663 -11933\n\t\tmu 0 3 12701 12480 12479\n\t\tf 3 11934 11935 11936\n\t\tmu 0 3 12702 12703 12704\n\t\tf 3 11937 11938 -11937\n\t\tmu 0 3 12705 12706 12707\n\t\tf 3 -11936 11939 11940\n\t\tmu 0 3 12708 12709 12710\n\t\tf 3 11941 11942 -11941\n\t\tmu 0 3 12711 12712 12713\n\t\tf 3 11943 -11942 11944\n\t\tmu 0 3 12714 12715 12716\n\t\tf 3 11945 11946 -11945\n\t\tmu 0 3 12717 12718 12719\n\t\tf 3 11947 -11939 11948\n\t\tmu 0 3 12720 12721 12722\n\t\tf 3 11949 11950 -11949\n\t\tmu 0 3 12723 12724 12725\n\t\tf 3 -11947 11951 11952\n\t\tmu 0 3 12726 12727 12491\n\t\tf 3 -11685 11953 -11953\n\t\tmu 0 3 12491 12492 12728\n\t\tf 3 11954 11955 11956\n\t\tmu 0 3 12729 12730 12731\n\t\tf 3 11957 11958 -11957\n\t\tmu 0 3 12732 12733 12734\n\t\tf 3 -11958 11959 11960\n\t\tmu 0 3 12735 12736 12737\n\t\tf 3 11961 11962 -11961\n\t\tmu 0 3 12738 12739 12740\n\t\tf 3 11963 11964 11965\n\t\tmu 0 3 12741 12742 12743\n\t\tf 3 11966 11967 -11966\n\t\tmu 0 3 12744 12745 12746\n\t\tf 3 11968 11969 11970\n\t\tmu 0 3 12747 12748 12749\n\t\tf 3 11971 11972 -11971\n\t\tmu 0 3 12750 12751 12752\n\t\tf 3 -11972 11973 11974\n\t\tmu 0 3 12753 12754 12755\n\t\tf 3 11975 11976 -11975\n\t\tmu 0 3 12755 12756 12757\n\t\tf 3 11977 11978 11979\n\t\tmu 0 3 12758 12759 12760\n\t\tf 3 11980 11981 -11980\n\t\tmu 0 3 12761 12762 12763\n\t\tf 3 11982 11983 11984\n\t\tmu 0 3 12764 12765 12766\n\t\tf 3 11985 11986 -11985\n\t\tmu 0 3 12767 12768 12769\n\t\tf 3 11987 11988 11989\n\t\tmu 0 3 12770 12771 12772\n\t\tf 3 11990 11991 -11990\n\t\tmu 0 3 12773 12774 12775\n\t\tf 3 -11991 11992 11993\n\t\tmu 0 3 12776 12777 12778\n\t\tf 3 11994 11995 -11994\n\t\tmu 0 3 12779 12780 12781\n\t\tf 3 11996 11997 11998\n\t\tmu 0 3 12782 12783 12784\n\t\tf 3 11999 12000 -11999\n\t\tmu 0 3 12785 12786 12787\n\t\tf 3 -12000 12001 12002\n\t\tmu 0 3 12788 12789 12790\n\t\tf 3 12003 12004 12005\n\t\tmu 0 3 12791 12792 12793\n\t\tf 3 -12004 12006 12007\n\t\tmu 0 3 12794 12795 12796\n\t\tf 3 12008 12009 -12008\n\t\tmu 0 3 12797 12798 12799\n\t\tf 3 -12009 12010 12011\n\t\tmu 0 3 12800 12801 12802\n\t\tf 3 12012 12013 -12012\n\t\tmu 0 3 12803 12804 12805\n\t\tf 3 -11976 12014 12015\n\t\tmu 0 3 12806 12807 12808\n\t\tf 3 12016 12017 -12016\n\t\tmu 0 3 12809 12810 12811\n\t\tf 3 -11750 12018 12019\n\t\tmu 0 3 12541 12540 12812\n\t\tf 3 12020 12021 -12020\n\t\tmu 0 3 12813 12814 12541\n\t\tf 3 -12021 12022 12023\n\t\tmu 0 3 12815 12816 12817\n\t\tf 3 12024 12025 -12024\n\t\tmu 0 3 12817 12818 12819\n\t\tf 3 12026 12027 12028\n\t\tmu 0 3 12820 12821 12822\n\t\tf 3 12029 12030 -12029\n\t\tmu 0 3 12823 12824 12825\n\t\tf 3 -12027 12031 12032\n\t\tmu 0 3 12826 12827 12828\n\t\tf 3 -11951 12033 -12033\n\t\tmu 0 3 12829 12830 12831\n\t\tf 3 12034 -12031 12035\n\t\tmu 0 3 12832 12833 12834\n\t\tf 3 12036 12037 -12036\n\t\tmu 0 3 12835 12836 12837\n\t\tf 3 -12038 12038 12039\n\t\tmu 0 3 12838 12839 12840\n\t\tf 3 12040 12041 -12040\n\t\tmu 0 3 12841 12842 12843\n\t\tf 3 -12035 12042 12043\n\t\tmu 0 3 12844 12845 12846\n\t\tf 3 -12043 -12042 12044\n\t\tmu 0 3 12847 12848 12849\n\t\tf 3 12045 12046 -12044\n\t\tmu 0 3 12850 12851 12852\n\t\tf 3 12047 12048 -12045\n\t\tmu 0 3 12853 12854 12855\n\t\tf 3 12049 12050 12051\n\t\tmu 0 3 12856 12857 12858\n\t\tf 3 12052 12053 -12052\n\t\tmu 0 3 12859 12860 12861\n\t\tf 3 -12053 12054 12055\n\t\tmu 0 3 12862 12863 12864\n\t\tf 3 12056 12057 -12056\n\t\tmu 0 3 12865 12866 12867\n\t\tf 3 -12050 12058 12059\n\t\tmu 0 3 12868 12869 12870\n\t\tf 3 12060 12061 -12060\n\t\tmu 0 3 12871 12872 12873\n\t\tf 3 -12057 12062 12063\n\t\tmu 0 3 12874 12875 12876\n\t\tf 3 12064 12065 -12064\n\t\tmu 0 3 12877 12878 12879\n\t\tf 3 -12065 12066 12067\n\t\tmu 0 3 12880 12881 12882\n\t\tf 3 -12061 12068 12069\n\t\tmu 0 3 12883 12884 12568\n\t\tf 3 -11804 12070 -12070\n\t\tmu 0 3 12568 12569 12885\n\t\tf 3 12071 12072 12073\n\t\tmu 0 3 12886 12887 12888\n\t\tf 3 12074 12075 -12074\n\t\tmu 0 3 12889 12890 12891\n\t\tf 3 -12075 12076 12077\n\t\tmu 0 3 12892 12893 12894\n\t\tf 3 12078 12079 -12078\n\t\tmu 0 3 12895 12896 12897\n\t\tf 3 -12072 12080 12081\n\t\tmu 0 3 12898 12899 12900\n\t\tf 3 12082 12083 -12082\n\t\tmu 0 3 12901 12902 12903\n\t\tf 3 -12079 12084 12085\n\t\tmu 0 3 12904 12905 12906\n\t\tf 3 12086 12087 -12086\n\t\tmu 0 3 12907 12908 12909\n\t\tf 3 -12083 12088 12089\n\t\tmu 0 3 12910 12911 12580\n\t\tf 3 -11825 12090 -12090\n\t\tmu 0 3 12580 12581 12912\n\t\tf 3 12091 12092 12093\n\t\tmu 0 3 12913 12914 12915\n\t\tf 3 12094 12095 -12094\n\t\tmu 0 3 12916 12917 12918\n\t\tf 3 12096 12097 12098\n\t\tmu 0 3 12919 12920 12921\n\t\tf 3 12099 12100 -12099\n\t\tmu 0 3 12922 12923 12924\n\t\tf 3 -12100 12101 12102\n\t\tmu 0 3 12925 12926 12927\n\t\tf 3 12103 12104 -12103\n\t\tmu 0 3 12928 12929 12930\n\t\tf 3 -12097 12105 12106\n\t\tmu 0 3 12931 12932 12933\n\t\tf 3 12107 12108 -12107\n\t\tmu 0 3 12934 12935 12936\n\t\tf 3 -12104 12109 12110\n\t\tmu 0 3 12937 12938 12939\n\t\tf 3 12111 12112 -12111\n\t\tmu 0 3 12940 12941 12942\n\t\tf 3 -12112 12113 12114\n\t\tmu 0 3 12943 12944 12945\n\t\tf 3 12115 12116 -12115\n\t\tmu 0 3 12946 12947 12948\n\t\tf 3 -12108 12117 12118\n\t\tmu 0 3 12949 12950 12599\n\t\tf 3 -11855 12119 -12119\n\t\tmu 0 3 12599 12600 12951\n\t\tf 3 12120 12121 12122\n\t\tmu 0 3 12952 12953 12954\n\t\tf 3 -12116 12123 -12123\n\t\tmu 0 3 12955 12956 12957\n\t\tf 3 12124 -11948 12125\n\t\tmu 0 3 12958 12959 12960\n\t\tf 3 12126 12127 -12017\n\t\tmu 0 3 12961 12962 12963\n\t\tf 3 12128 12129 -12128\n\t\tmu 0 3 12964 12965 12966\n\t\tf 3 12130 12131 12132\n\t\tmu 0 3 12967 12968 12969\n\t\tf 3 12133 12134 -12133\n\t\tmu 0 3 12970 12971 12972\n\t\tf 3 -12134 12135 12136\n\t\tmu 0 3 12973 12974 12975\n\t\tf 3 12137 12138 -12137\n\t\tmu 0 3 12976 12977 12978\n\t\tf 3 12139 12140 12141\n\t\tmu 0 3 12979 12980 12981\n\t\tf 3 12142 12143 -12142\n\t\tmu 0 3 12981 12982 12979\n\t\tf 3 12144 -12140 12145\n\t\tmu 0 3 12983 12980 12979\n\t\tf 3 12146 12147 -12146\n\t\tmu 0 3 12979 12984 12983\n\t\tf 3 -12148 12148 12149\n\t\tmu 0 3 12983 12984 12985\n\t\tf 3 12150 12151 -12150\n\t\tmu 0 3 12985 12986 12983\n\t\tf 3 12152 -12151 12153\n\t\tmu 0 3 12987 12986 12985\n\t\tf 3 12154 12155 -12154\n\t\tmu 0 3 12985 12988 12987\n\t\tf 3 -12156 12156 12157\n\t\tmu 0 3 12987 12988 12989\n\t\tf 3 12158 12159 -12158\n\t\tmu 0 3 12989 12990 12987\n\t\tf 3 12160 -12159 12161\n\t\tmu 0 3 12991 12990 12989\n\t\tf 3 12162 12163 -12162\n\t\tmu 0 3 12989 12992 12991\n\t\tf 3 -12164 12164 12165\n\t\tmu 0 3 12991 12992 12993\n\t\tf 3 12166 12167 -12166\n\t\tmu 0 3 12993 12994 12991\n\t\tf 3 12168 -12167 12169\n\t\tmu 0 3 12995 12994 12993\n\t\tf 3 12170 12171 -12170\n\t\tmu 0 3 12993 12996 12995\n\t\tf 3 -12172 12172 12173\n\t\tmu 0 3 12995 12996 12997\n\t\tf 3 12174 12175 -12174\n\t\tmu 0 3 12997 12998 12995\n\t\tf 3 12176 -12175 12177\n\t\tmu 0 3 12999 12998 12997\n\t\tf 3 12178 12179 -12178\n\t\tmu 0 3 12997 13000 12999\n\t\tf 3 -12180 12180 12181\n\t\tmu 0 3 12999 13000 13001\n\t\tf 3 12182 12183 -12182\n\t\tmu 0 3 13001 13002 12999\n\t\tf 3 12184 12185 12186\n\t\tmu 0 3 13003 13004 13005\n\t\tf 3 12187 -12183 -12187\n\t\tmu 0 3 13005 13006 13003\n\t\tf 3 -12186 12188 12189\n\t\tmu 0 3 13005 13004 13007\n\t\tf 3 12190 12191 -12190\n\t\tmu 0 3 13007 13008 13005\n\t\tf 3 12192 -12191 12193\n\t\tmu 0 3 13009 13008 13007\n\t\tf 3 12194 12195 -12194\n\t\tmu 0 3 13007 13010 13009\n\t\tf 3 -12196 12196 12197\n\t\tmu 0 3 13009 13010 13011\n\t\tf 3 12198 12199 -12198\n\t\tmu 0 3 13011 13012 13009\n\t\tf 3 -12199 12200 12201\n\t\tmu 0 3 13012 13011 12982\n\t\tf 3 -12143 12202 -12202\n\t\tmu 0 3 12982 12981 13012\n\t\tf 3 12203 12204 12205\n\t\tmu 0 3 13013 13014 13015\n\t\tf 3 12206 12207 -12206\n\t\tmu 0 3 13015 13016 13013\n\t\tf 3 12208 -12208 12209\n\t\tmu 0 3 13017 13013 13016\n\t\tf 3 12210 12211 -12210\n\t\tmu 0 3 13016 13018 13017\n\t\tf 3 12212 -12212 12213\n\t\tmu 0 3 13019 13017 13018\n\t\tf 3 12214 12215 -12214\n\t\tmu 0 3 13018 13020 13019\n\t\tf 3 12216 -12216 12217\n\t\tmu 0 3 13021 13019 13020\n\t\tf 3 12218 12219 -12218\n\t\tmu 0 3 13020 13022 13021\n\t\tf 3 12220 -12220 12221\n\t\tmu 0 3 13023 13021 13022\n\t\tf 3 12222 12223 -12222\n\t\tmu 0 3 13022 13024 13023\n\t\tf 3 12224 -12224 12225\n\t\tmu 0 3 13025 13023 13024\n\t\tf 3 12226 12227 -12226\n\t\tmu 0 3 13024 13026 13025\n\t\tf 3 12228 -12228 12229\n\t\tmu 0 3 13027 13025 13026\n\t\tf 3 12230 12231 -12230\n\t\tmu 0 3 13026 13028 13027\n\t\tf 3 12232 -12205 12233\n\t\tmu 0 3 13029 13015 13014\n\t\tf 3 12234 12235 -12234\n\t\tmu 0 3 13014 13030 13029\n\t\tf 3 12236 -12236 12237\n\t\tmu 0 3 13031 13029 13030\n\t\tf 3 12238 12239 -12238\n\t\tmu 0 3 13030 13032 13031\n\t\tf 3 12240 -12240 12241\n\t\tmu 0 3 13033 13031 13032\n\t\tf 3 12242 12243 -12242\n\t\tmu 0 3 13032 13034 13033\n\t\tf 3 12244 -12244 12245\n\t\tmu 0 3 13035 13033 13034\n\t\tf 3 12246 12247 -12246\n\t\tmu 0 3 13034 13036 13035\n\t\tf 3 12248 -12248 12249\n\t\tmu 0 3 13037 13035 13036\n\t\tf 3 12250 12251 -12250\n\t\tmu 0 3 13036 13038 13037\n\t\tf 3 12252 -12252 12253\n\t\tmu 0 3 13039 13037 13038\n\t\tf 3 12254 12255 -12254\n\t\tmu 0 3 13038 13040 13039\n\t\tf 3 12256 -12256 12257\n\t\tmu 0 3 13041 13039 13040\n\t\tf 3 12258 12259 -12258\n\t\tmu 0 3 13040 13042 13041\n\t\tf 3 12260 -12260 12261\n\t\tmu 0 3 13043 13041 13042\n\t\tf 3 12262 12263 -12262\n\t\tmu 0 3 13042 13044 13043\n\t\tf 3 12264 -12264 12265\n\t\tmu 0 3 13045 13043 13044\n\t\tf 3 12266 -12232 -12266\n\t\tmu 0 3 13044 13046 13045\n\t\tf 3 12267 12268 12269\n\t\tmu 0 3 13047 13048 13049\n\t\tf 3 12270 12271 -12270\n\t\tmu 0 3 13050 13051 13047\n\t\tf 3 12272 -12271 12273\n\t\tmu 0 3 13052 13051 13053\n\t\tf 3 12274 12275 -12274\n\t\tmu 0 3 13054 13055 13052\n\t\tf 3 -12276 12276 12277\n\t\tmu 0 3 13052 13056 13057\n\t\tf 3 12278 12279 -12278\n\t\tmu 0 3 13058 13059 13052\n\t\tf 3 12280 -12279 12281\n\t\tmu 0 3 13060 13059 13061\n\t\tf 3 12282 12283 -12282\n\t\tmu 0 3 13062 13063 13060\n\t\tf 3 -12284 12284 12285\n\t\tmu 0 3 13060 13064 13065\n\t\tf 3 12286 12287 -12286\n\t\tmu 0 3 13066 13067 13060\n\t\tf 3 12288 -12287 12289\n\t\tmu 0 3 13068 13067 13069\n\t\tf 3 12290 12291 -12290\n\t\tmu 0 3 13070 13071 13068\n\t\tf 3 -12292 12292 12293\n\t\tmu 0 3 13068 13072 13073\n\t\tf 3 12294 12295 -12294\n\t\tmu 0 3 13074 13075 13068\n\t\tf 3 -12268 12296 12297\n\t\tmu 0 3 13076 13047 13077\n\t\tf 3 12298 12299 -12298\n\t\tmu 0 3 13077 13078 13079\n\t\tf 3 -12299 12300 12301\n\t\tmu 0 3 13080 13077 13081\n\t\tf 3 12302 12303 -12302\n\t\tmu 0 3 13081 13082 13083\n\t\tf 3 12304 -12303 12305\n\t\tmu 0 3 13084 13085 13081\n\t\tf 3 12306 12307 -12306\n\t\tmu 0 3 13081 13086 13087\n\t\tf 3 -12308 12308 12309\n\t\tmu 0 3 13088 13086 13089\n\t\tf 3 12310 12311 -12310\n\t\tmu 0 3 13089 13090 13091\n\t\tf 3 12312 -12311 12313\n\t\tmu 0 3 13092 13093 13089\n\t\tf 3 12314 12315 -12314\n\t\tmu 0 3 13089 13094 13095\n\t\tf 3 -12316 12316 12317\n\t\tmu 0 3 13096 13094 13097\n\t\tf 3 12318 12319 -12318\n\t\tmu 0 3 13097 13098 13099\n\t\tf 3 12320 -12319 12321\n\t\tmu 0 3 13100 13101 13097\n\t\tf 3 12322 12323 -12322\n\t\tmu 0 3 13097 13102 13103\n\t\tf 3 -12324 12324 12325\n\t\tmu 0 3 13104 13102 13105\n\t\tf 3 12326 12327 -12326\n\t\tmu 0 3 13105 13106 13107\n\t\tf 3 12328 -12327 12329\n\t\tmu 0 3 13108 13109 13105\n\t\tf 3 12330 -12295 -12330\n\t\tmu 0 3 13105 13110 13111\n\t\tf 3 12331 12332 12333\n\t\tmu 0 3 13112 13113 13114\n\t\tf 3 12334 12335 -12334\n\t\tmu 0 3 13114 13115 13112\n\t\tf 3 12336 -12332 12337\n\t\tmu 0 3 13116 13113 13112\n\t\tf 3 12338 12339 -12338\n\t\tmu 0 3 13112 13117 13116\n\t\tf 3 -12340 12340 12341\n\t\tmu 0 3 13116 13117 13118\n\t\tf 3 12342 12343 -12342\n\t\tmu 0 3 13118 13119 13116\n\t\tf 3 12344 -12343 12345\n\t\tmu 0 3 13120 13119 13118\n\t\tf 3 12346 12347 -12346\n\t\tmu 0 3 13118 13121 13120\n\t\tf 3 -12348 12348 12349\n\t\tmu 0 3 13120 13121 13122\n\t\tf 3 12350 12351 -12350\n\t\tmu 0 3 13122 13123 13120\n\t\tf 3 12352 -12351 12353\n\t\tmu 0 3 13124 13123 13122\n\t\tf 3 12354 12355 -12354\n\t\tmu 0 3 13122 13125 13124\n\t\tf 3 -12356 12356 12357\n\t\tmu 0 3 13124 13125 13126\n\t\tf 3 12358 12359 -12358\n\t\tmu 0 3 13126 13127 13124\n\t\tf 3 12360 -12359 12361\n\t\tmu 0 3 13128 13127 13126\n\t\tf 3 12362 12363 -12362\n\t\tmu 0 3 13126 13129 13128\n\t\tf 3 -12364 12364 12365\n\t\tmu 0 3 13128 13129 13130\n\t\tf 3 12366 12367 -12366\n\t\tmu 0 3 13130 13131 13128;\n\tsetAttr \".fc[6500:6999]\"\n\t\tf 3 12368 -12367 12369\n\t\tmu 0 3 13132 13131 13130\n\t\tf 3 12370 12371 -12370\n\t\tmu 0 3 13130 13133 13132\n\t\tf 3 -12372 12372 12373\n\t\tmu 0 3 13132 13133 13134\n\t\tf 3 12374 12375 -12374\n\t\tmu 0 3 13134 13135 13132\n\t\tf 3 12376 -12375 12377\n\t\tmu 0 3 13136 13137 13138\n\t\tf 3 12378 12379 -12378\n\t\tmu 0 3 13138 13139 13136\n\t\tf 3 -12380 12380 12381\n\t\tmu 0 3 13136 13139 13140\n\t\tf 3 12382 12383 -12382\n\t\tmu 0 3 13140 13141 13136\n\t\tf 3 12384 -12383 12385\n\t\tmu 0 3 13142 13141 13140\n\t\tf 3 12386 12387 -12386\n\t\tmu 0 3 13140 13143 13142\n\t\tf 3 -12388 12388 12389\n\t\tmu 0 3 13142 13143 13144\n\t\tf 3 12390 12391 -12390\n\t\tmu 0 3 13144 13145 13142\n\t\tf 3 -12391 12392 12393\n\t\tmu 0 3 13145 13144 13115\n\t\tf 3 -12335 12394 -12394\n\t\tmu 0 3 13115 13114 13145\n\t\tf 3 12395 12396 12397\n\t\tmu 0 3 13146 13147 13148\n\t\tf 3 12398 12399 -12398\n\t\tmu 0 3 13148 13149 13146\n\t\tf 3 12400 -12400 12401\n\t\tmu 0 3 13150 13146 13149\n\t\tf 3 12402 12403 -12402\n\t\tmu 0 3 13149 13151 13150\n\t\tf 3 12404 -12404 12405\n\t\tmu 0 3 13152 13150 13151\n\t\tf 3 12406 12407 -12406\n\t\tmu 0 3 13151 13153 13152\n\t\tf 3 12408 -12408 12409\n\t\tmu 0 3 13154 13152 13153\n\t\tf 3 12410 12411 -12410\n\t\tmu 0 3 13153 13155 13154\n\t\tf 3 12412 -12412 12413\n\t\tmu 0 3 13156 13154 13155\n\t\tf 3 12414 12415 -12414\n\t\tmu 0 3 13155 13157 13156\n\t\tf 3 12416 -12416 12417\n\t\tmu 0 3 13158 13156 13157\n\t\tf 3 12418 12419 -12418\n\t\tmu 0 3 13157 13159 13158\n\t\tf 3 12420 -12420 12421\n\t\tmu 0 3 13160 13158 13159\n\t\tf 3 12422 12423 -12422\n\t\tmu 0 3 13159 13161 13160\n\t\tf 3 12424 -12397 12425\n\t\tmu 0 3 13162 13148 13147\n\t\tf 3 12426 12427 -12426\n\t\tmu 0 3 13147 13163 13162\n\t\tf 3 12428 -12428 12429\n\t\tmu 0 3 13164 13162 13163\n\t\tf 3 12430 12431 -12430\n\t\tmu 0 3 13163 13165 13164\n\t\tf 3 12432 -12432 12433\n\t\tmu 0 3 13166 13164 13165\n\t\tf 3 12434 12435 -12434\n\t\tmu 0 3 13165 13167 13166\n\t\tf 3 12436 -12436 12437\n\t\tmu 0 3 13168 13166 13167\n\t\tf 3 12438 12439 -12438\n\t\tmu 0 3 13167 13169 13168\n\t\tf 3 12440 -12440 12441\n\t\tmu 0 3 13170 13168 13169\n\t\tf 3 12442 12443 -12442\n\t\tmu 0 3 13169 13171 13170\n\t\tf 3 12444 -12444 12445\n\t\tmu 0 3 13172 13170 13171\n\t\tf 3 12446 12447 -12446\n\t\tmu 0 3 13171 13173 13172\n\t\tf 3 12448 -12448 12449\n\t\tmu 0 3 13174 13172 13173\n\t\tf 3 12450 12451 -12450\n\t\tmu 0 3 13173 13175 13174\n\t\tf 3 12452 -12452 12453\n\t\tmu 0 3 13176 13174 13175\n\t\tf 3 12454 12455 -12454\n\t\tmu 0 3 13175 13177 13176\n\t\tf 3 12456 -12456 12457\n\t\tmu 0 3 13178 13176 13177\n\t\tf 3 12458 -12424 -12458\n\t\tmu 0 3 13177 13179 13178\n\t\tf 3 12459 12460 12461\n\t\tmu 0 3 13180 13181 13182\n\t\tf 3 12462 -12460 12463\n\t\tmu 0 3 13183 13184 13180\n\t\tf 3 12464 12465 -12462\n\t\tmu 0 3 13185 13186 13180\n\t\tf 3 12466 12467 12468\n\t\tmu 0 3 13187 13188 13189\n\t\tf 3 12469 -12467 12470\n\t\tmu 0 3 13190 13191 13187\n\t\tf 3 12471 -12465 -12471\n\t\tmu 0 3 13187 13186 13192\n\t\tf 3 12472 12473 -12469\n\t\tmu 0 3 13193 13194 13187\n\t\tf 3 12474 12475 -12464\n\t\tmu 0 3 13180 13195 13196\n\t\tf 3 12476 12477 12478\n\t\tmu 0 3 13197 13198 13199\n\t\tf 3 12479 -12473 -12479\n\t\tmu 0 3 13199 13194 13200\n\t\tf 3 -12478 12480 12481\n\t\tmu 0 3 13199 13201 13202\n\t\tf 3 12482 12483 -12482\n\t\tmu 0 3 13203 13204 13199\n\t\tf 3 12484 -12483 12485\n\t\tmu 0 3 13205 13204 13206\n\t\tf 3 12486 12487 -12486\n\t\tmu 0 3 13207 13208 13205\n\t\tf 3 -12488 12488 12489\n\t\tmu 0 3 13205 13209 13210\n\t\tf 3 12490 12491 -12490\n\t\tmu 0 3 13211 13212 13205\n\t\tf 3 -12491 12492 12493\n\t\tmu 0 3 13212 13213 13214\n\t\tf 3 12494 12495 -12494\n\t\tmu 0 3 13215 13216 13212\n\t\tf 3 -12495 12496 12497\n\t\tmu 0 3 13216 13217 13218\n\t\tf 3 12498 12499 -12498\n\t\tmu 0 3 13219 13220 13216\n\t\tf 3 12500 -12499 12501\n\t\tmu 0 3 13221 13220 13222\n\t\tf 3 12502 12503 -12502\n\t\tmu 0 3 13223 13224 13221\n\t\tf 3 -12504 12504 12505\n\t\tmu 0 3 13221 13225 13226\n\t\tf 3 12506 12507 -12506\n\t\tmu 0 3 13227 13228 13221\n\t\tf 3 12508 -12507 12509\n\t\tmu 0 3 13229 13228 13230\n\t\tf 3 12510 12511 -12510\n\t\tmu 0 3 13231 13232 13229\n\t\tf 3 -12512 12512 12513\n\t\tmu 0 3 13229 13233 13234\n\t\tf 3 12514 12515 -12514\n\t\tmu 0 3 13235 13236 13229\n\t\tf 3 12516 -12515 12517\n\t\tmu 0 3 13237 13236 13238\n\t\tf 3 12518 12519 -12518\n\t\tmu 0 3 13239 13240 13237\n\t\tf 3 -12520 12520 12521\n\t\tmu 0 3 13237 13241 13242\n\t\tf 3 -12476 12522 -12522\n\t\tmu 0 3 13243 13244 13237\n\t\tf 3 12523 12524 12525\n\t\tmu 0 3 13245 13246 13247\n\t\tf 3 12526 12527 -12526\n\t\tmu 0 3 13247 13248 13245\n\t\tf 3 12528 -12524 12529\n\t\tmu 0 3 13249 13246 13245\n\t\tf 3 12530 12531 -12530\n\t\tmu 0 3 13245 13250 13249\n\t\tf 3 -12532 12532 12533\n\t\tmu 0 3 13249 13250 13251\n\t\tf 3 12534 12535 -12534\n\t\tmu 0 3 13251 13252 13249\n\t\tf 3 12536 -12535 12537\n\t\tmu 0 3 13253 13252 13251\n\t\tf 3 12538 12539 -12538\n\t\tmu 0 3 13251 13254 13253\n\t\tf 3 -12540 12540 12541\n\t\tmu 0 3 13253 13254 13255\n\t\tf 3 12542 12543 -12542\n\t\tmu 0 3 13255 13256 13253\n\t\tf 3 12544 -12543 12545\n\t\tmu 0 3 13257 13256 13255\n\t\tf 3 12546 12547 -12546\n\t\tmu 0 3 13255 13258 13257\n\t\tf 3 -12548 12548 12549\n\t\tmu 0 3 13257 13258 13259\n\t\tf 3 12550 12551 -12550\n\t\tmu 0 3 13259 13260 13257\n\t\tf 3 12552 -12551 12553\n\t\tmu 0 3 13261 13260 13259\n\t\tf 3 12554 12555 -12554\n\t\tmu 0 3 13259 13262 13261\n\t\tf 3 -12556 12556 12557\n\t\tmu 0 3 13261 13262 13263\n\t\tf 3 12558 12559 -12558\n\t\tmu 0 3 13263 13264 13261\n\t\tf 3 12560 12561 12562\n\t\tmu 0 3 13265 13266 13267\n\t\tf 3 12563 -12559 -12563\n\t\tmu 0 3 13267 13268 13265\n\t\tf 3 -12562 12564 12565\n\t\tmu 0 3 13267 13266 13269\n\t\tf 3 12566 12567 -12566\n\t\tmu 0 3 13269 13270 13267\n\t\tf 3 12568 -12567 12569\n\t\tmu 0 3 13271 13270 13269\n\t\tf 3 12570 12571 -12570\n\t\tmu 0 3 13269 13272 13271\n\t\tf 3 -12572 12572 12573\n\t\tmu 0 3 13271 13272 13273\n\t\tf 3 12574 12575 -12574\n\t\tmu 0 3 13273 13274 13271\n\t\tf 3 12576 -12575 12577\n\t\tmu 0 3 13275 13274 13273\n\t\tf 3 12578 12579 -12578\n\t\tmu 0 3 13273 13276 13275\n\t\tf 3 -12580 12580 12581\n\t\tmu 0 3 13275 13276 13277\n\t\tf 3 12582 12583 -12582\n\t\tmu 0 3 13277 13278 13275\n\t\tf 3 -12583 12584 12585\n\t\tmu 0 3 13278 13277 13248\n\t\tf 3 -12527 12586 -12586\n\t\tmu 0 3 13248 13247 13278\n\t\tf 3 12587 12588 12589\n\t\tmu 0 3 13279 13280 13281\n\t\tf 3 12590 12591 -12590\n\t\tmu 0 3 13281 13282 13279\n\t\tf 3 12592 -12592 12593\n\t\tmu 0 3 13283 13279 13282\n\t\tf 3 12594 12595 -12594\n\t\tmu 0 3 13282 13284 13283\n\t\tf 3 12596 -12596 12597\n\t\tmu 0 3 13285 13283 13284\n\t\tf 3 12598 12599 -12598\n\t\tmu 0 3 13284 13286 13285\n\t\tf 3 12600 -12600 12601\n\t\tmu 0 3 13287 13285 13286\n\t\tf 3 12602 12603 -12602\n\t\tmu 0 3 13286 13288 13287\n\t\tf 3 12604 -12604 12605\n\t\tmu 0 3 13289 13287 13288\n\t\tf 3 12606 12607 -12606\n\t\tmu 0 3 13288 13290 13289\n\t\tf 3 12608 -12608 12609\n\t\tmu 0 3 13291 13289 13290\n\t\tf 3 12610 12611 -12610\n\t\tmu 0 3 13290 13292 13291\n\t\tf 3 12612 -12612 12613\n\t\tmu 0 3 13293 13291 13292\n\t\tf 3 12614 12615 -12614\n\t\tmu 0 3 13292 13294 13293\n\t\tf 3 12616 -12616 12617\n\t\tmu 0 3 13295 13293 13294\n\t\tf 3 12618 12619 -12618\n\t\tmu 0 3 13294 13296 13295\n\t\tf 3 12620 -12620 12621\n\t\tmu 0 3 13297 13295 13296\n\t\tf 3 12622 12623 -12622\n\t\tmu 0 3 13296 13298 13297\n\t\tf 3 12624 -12624 12625\n\t\tmu 0 3 13299 13297 13298\n\t\tf 3 12626 12627 -12626\n\t\tmu 0 3 13298 13300 13299\n\t\tf 3 12628 -12628 12629\n\t\tmu 0 3 13301 13299 13300\n\t\tf 3 12630 12631 -12630\n\t\tmu 0 3 13300 13302 13301\n\t\tf 3 12632 -12632 12633\n\t\tmu 0 3 13303 13301 13302\n\t\tf 3 12634 12635 -12634\n\t\tmu 0 3 13302 13304 13303\n\t\tf 3 12636 -12636 12637\n\t\tmu 0 3 13305 13303 13304\n\t\tf 3 12638 12639 -12638\n\t\tmu 0 3 13304 13306 13305\n\t\tf 3 12640 -12640 12641\n\t\tmu 0 3 13307 13305 13306\n\t\tf 3 12642 12643 -12642\n\t\tmu 0 3 13306 13308 13307\n\t\tf 3 12644 -12644 12645\n\t\tmu 0 3 13309 13307 13308\n\t\tf 3 12646 12647 -12646\n\t\tmu 0 3 13308 13310 13309\n\t\tf 3 12648 -12648 12649\n\t\tmu 0 3 13280 13309 13310\n\t\tf 3 12650 -12589 -12650\n\t\tmu 0 3 13310 13281 13280\n\t\tf 3 12651 12652 12653\n\t\tmu 0 3 13311 13312 13313\n\t\tf 3 12654 12655 -12654\n\t\tmu 0 3 13313 13314 13311\n\t\tf 3 12656 -12652 12657\n\t\tmu 0 3 13315 13312 13311\n\t\tf 3 12658 12659 -12658\n\t\tmu 0 3 13311 13316 13315\n\t\tf 3 -12660 12660 12661\n\t\tmu 0 3 13315 13316 13317\n\t\tf 3 12662 12663 -12662\n\t\tmu 0 3 13317 13318 13315\n\t\tf 3 12664 -12663 12665\n\t\tmu 0 3 13319 13318 13317\n\t\tf 3 12666 12667 -12666\n\t\tmu 0 3 13317 13320 13319\n\t\tf 3 -12668 12668 12669\n\t\tmu 0 3 13319 13320 13321\n\t\tf 3 12670 12671 -12670\n\t\tmu 0 3 13321 13322 13319\n\t\tf 3 12672 -12671 12673\n\t\tmu 0 3 13323 13322 13321\n\t\tf 3 12674 12675 -12674\n\t\tmu 0 3 13321 13324 13323\n\t\tf 3 -12676 12676 12677\n\t\tmu 0 3 13323 13324 13325\n\t\tf 3 12678 12679 -12678\n\t\tmu 0 3 13325 13326 13323\n\t\tf 3 12680 -12679 12681\n\t\tmu 0 3 13327 13326 13325\n\t\tf 3 12682 12683 -12682\n\t\tmu 0 3 13325 13328 13327\n\t\tf 3 -12684 12684 12685\n\t\tmu 0 3 13327 13328 13329\n\t\tf 3 12686 12687 -12686\n\t\tmu 0 3 13329 13330 13327\n\t\tf 3 12688 12689 12690\n\t\tmu 0 3 13331 13332 13333\n\t\tf 3 12691 -12687 -12691\n\t\tmu 0 3 13333 13334 13331\n\t\tf 3 -12690 12692 12693\n\t\tmu 0 3 13333 13332 13335\n\t\tf 3 12694 12695 -12694\n\t\tmu 0 3 13335 13336 13333\n\t\tf 3 12696 -12695 12697\n\t\tmu 0 3 13337 13336 13335\n\t\tf 3 12698 12699 -12698\n\t\tmu 0 3 13335 13338 13337\n\t\tf 3 -12700 12700 12701\n\t\tmu 0 3 13337 13338 13339\n\t\tf 3 12702 12703 -12702\n\t\tmu 0 3 13339 13340 13337\n\t\tf 3 12704 -12703 12705\n\t\tmu 0 3 13341 13340 13339\n\t\tf 3 12706 12707 -12706\n\t\tmu 0 3 13339 13342 13341\n\t\tf 3 -12708 12708 12709\n\t\tmu 0 3 13341 13342 13343\n\t\tf 3 12710 12711 -12710\n\t\tmu 0 3 13343 13344 13341\n\t\tf 3 -12711 12712 12713\n\t\tmu 0 3 13344 13343 13314\n\t\tf 3 -12655 12714 -12714\n\t\tmu 0 3 13314 13313 13344\n\t\tf 3 12715 12716 12717\n\t\tmu 0 3 13345 13346 13347\n\t\tf 3 12718 12719 -12718\n\t\tmu 0 3 13347 13348 13345\n\t\tf 3 12720 -12716 12721\n\t\tmu 0 3 13349 13346 13345\n\t\tf 3 12722 12723 -12722\n\t\tmu 0 3 13345 13350 13349\n\t\tf 3 -12724 12724 12725\n\t\tmu 0 3 13349 13350 13351\n\t\tf 3 12726 12727 -12726\n\t\tmu 0 3 13351 13352 13349\n\t\tf 3 12728 -12727 12729\n\t\tmu 0 3 13353 13352 13351\n\t\tf 3 12730 12731 -12730\n\t\tmu 0 3 13351 13354 13353\n\t\tf 3 -12732 12732 12733\n\t\tmu 0 3 13353 13354 13355\n\t\tf 3 12734 12735 -12734\n\t\tmu 0 3 13355 13356 13353\n\t\tf 3 12736 -12735 12737\n\t\tmu 0 3 13357 13356 13355\n\t\tf 3 12738 12739 -12738\n\t\tmu 0 3 13355 13358 13357\n\t\tf 3 -12740 12740 12741\n\t\tmu 0 3 13357 13358 13359\n\t\tf 3 12742 12743 -12742\n\t\tmu 0 3 13359 13360 13357\n\t\tf 3 12744 -12743 12745\n\t\tmu 0 3 13361 13360 13359\n\t\tf 3 12746 12747 -12746\n\t\tmu 0 3 13359 13362 13361\n\t\tf 3 -12748 12748 12749\n\t\tmu 0 3 13361 13362 13363\n\t\tf 3 12750 12751 -12750\n\t\tmu 0 3 13363 13364 13361\n\t\tf 3 12752 12753 12754\n\t\tmu 0 3 13365 13366 13367\n\t\tf 3 12755 -12751 -12755\n\t\tmu 0 3 13367 13368 13365\n\t\tf 3 -12754 12756 12757\n\t\tmu 0 3 13367 13366 13369\n\t\tf 3 12758 12759 -12758\n\t\tmu 0 3 13369 13370 13367\n\t\tf 3 12760 -12759 12761\n\t\tmu 0 3 13371 13370 13369\n\t\tf 3 12762 12763 -12762\n\t\tmu 0 3 13369 13372 13371\n\t\tf 3 -12764 12764 12765\n\t\tmu 0 3 13371 13372 13373\n\t\tf 3 12766 12767 -12766\n\t\tmu 0 3 13373 13374 13371\n\t\tf 3 12768 -12767 12769\n\t\tmu 0 3 13375 13374 13373\n\t\tf 3 12770 12771 -12770\n\t\tmu 0 3 13373 13376 13375\n\t\tf 3 -12772 12772 12773\n\t\tmu 0 3 13375 13376 13377\n\t\tf 3 12774 12775 -12774\n\t\tmu 0 3 13377 13378 13375\n\t\tf 3 -12775 12776 12777\n\t\tmu 0 3 13378 13377 13348\n\t\tf 3 -12719 12778 -12778\n\t\tmu 0 3 13348 13347 13378\n\t\tf 3 12779 12780 12781\n\t\tmu 0 3 13379 13380 13381\n\t\tf 3 12782 12783 -12782\n\t\tmu 0 3 13381 13382 13379\n\t\tf 3 12784 -12780 12785\n\t\tmu 0 3 13383 13380 13379\n\t\tf 3 12786 12787 -12786\n\t\tmu 0 3 13379 13384 13383\n\t\tf 3 -12788 12788 12789\n\t\tmu 0 3 13383 13384 13385\n\t\tf 3 12790 12791 -12790\n\t\tmu 0 3 13385 13386 13383\n\t\tf 3 12792 -12791 12793\n\t\tmu 0 3 13387 13386 13385\n\t\tf 3 12794 12795 -12794\n\t\tmu 0 3 13385 13388 13387\n\t\tf 3 -12796 12796 12797\n\t\tmu 0 3 13387 13388 13389\n\t\tf 3 12798 12799 -12798\n\t\tmu 0 3 13389 13390 13387\n\t\tf 3 12800 -12799 12801\n\t\tmu 0 3 13391 13390 13389\n\t\tf 3 12802 12803 -12802\n\t\tmu 0 3 13389 13392 13391\n\t\tf 3 -12804 12804 12805\n\t\tmu 0 3 13391 13392 13393\n\t\tf 3 12806 12807 -12806\n\t\tmu 0 3 13393 13394 13391\n\t\tf 3 12808 -12807 12809\n\t\tmu 0 3 13395 13394 13393\n\t\tf 3 12810 12811 -12810\n\t\tmu 0 3 13393 13396 13395\n\t\tf 3 -12812 12812 12813\n\t\tmu 0 3 13395 13396 13397\n\t\tf 3 12814 12815 -12814\n\t\tmu 0 3 13397 13398 13395\n\t\tf 3 12816 12817 12818\n\t\tmu 0 3 13399 13400 13401\n\t\tf 3 12819 -12815 -12819\n\t\tmu 0 3 13401 13402 13399\n\t\tf 3 -12818 12820 12821\n\t\tmu 0 3 13401 13400 13403\n\t\tf 3 12822 12823 -12822\n\t\tmu 0 3 13403 13404 13401\n\t\tf 3 12824 -12823 12825\n\t\tmu 0 3 13405 13404 13403\n\t\tf 3 12826 12827 -12826\n\t\tmu 0 3 13403 13406 13405\n\t\tf 3 -12828 12828 12829\n\t\tmu 0 3 13405 13406 13407\n\t\tf 3 12830 12831 -12830\n\t\tmu 0 3 13407 13408 13405\n\t\tf 3 12832 -12831 12833\n\t\tmu 0 3 13409 13408 13407\n\t\tf 3 12834 12835 -12834\n\t\tmu 0 3 13407 13410 13409\n\t\tf 3 -12836 12836 12837\n\t\tmu 0 3 13409 13410 13411\n\t\tf 3 12838 12839 -12838\n\t\tmu 0 3 13411 13412 13409\n\t\tf 3 -12839 12840 12841\n\t\tmu 0 3 13412 13411 13382\n\t\tf 3 -12783 12842 -12842\n\t\tmu 0 3 13382 13381 13412\n\t\tf 3 12843 12844 12845\n\t\tmu 0 3 13413 13414 13415\n\t\tf 3 12846 12847 -12846\n\t\tmu 0 3 13415 13416 13413\n\t\tf 3 12848 -12847 12849\n\t\tmu 0 3 13417 13416 13415\n\t\tf 3 12850 12851 -12850\n\t\tmu 0 3 13415 13418 13417\n\t\tf 3 -12852 12852 12853\n\t\tmu 0 3 13417 13418 13419\n\t\tf 3 12854 12855 -12854\n\t\tmu 0 3 13419 13420 13417\n\t\tf 3 12856 -12855 12857\n\t\tmu 0 3 13421 13420 13419\n\t\tf 3 12858 12859 -12858\n\t\tmu 0 3 13419 13422 13421\n\t\tf 3 -12860 12860 12861\n\t\tmu 0 3 13421 13422 13423\n\t\tf 3 12862 12863 -12862\n\t\tmu 0 3 13423 13424 13421\n\t\tf 3 12864 -12863 12865\n\t\tmu 0 3 13425 13424 13423\n\t\tf 3 12866 12867 -12866\n\t\tmu 0 3 13423 13426 13425\n\t\tf 3 -12868 12868 12869\n\t\tmu 0 3 13425 13426 13427\n\t\tf 3 12870 12871 -12870\n\t\tmu 0 3 13427 13428 13425\n\t\tf 3 12872 -12871 12873\n\t\tmu 0 3 13429 13428 13427\n\t\tf 3 12874 12875 -12874\n\t\tmu 0 3 13427 13430 13429\n\t\tf 3 -12876 12876 12877\n\t\tmu 0 3 13429 13430 13431\n\t\tf 3 12878 12879 -12878\n\t\tmu 0 3 13431 13432 13429\n\t\tf 3 12880 12881 12882\n\t\tmu 0 3 13433 13434 13435\n\t\tf 3 12883 -12879 -12883\n\t\tmu 0 3 13435 13436 13433\n\t\tf 3 -12882 12884 12885\n\t\tmu 0 3 13435 13434 13437\n\t\tf 3 12886 12887 -12886\n\t\tmu 0 3 13437 13438 13435\n\t\tf 3 12888 -12887 12889\n\t\tmu 0 3 13439 13438 13437\n\t\tf 3 12890 12891 -12890\n\t\tmu 0 3 13437 13440 13439\n\t\tf 3 -12892 12892 12893\n\t\tmu 0 3 13439 13440 13441\n\t\tf 3 12894 12895 -12894\n\t\tmu 0 3 13441 13442 13439\n\t\tf 3 12896 -12895 12897\n\t\tmu 0 3 13443 13442 13441\n\t\tf 3 12898 12899 -12898\n\t\tmu 0 3 13441 13444 13443\n\t\tf 3 -12900 12900 12901\n\t\tmu 0 3 13443 13444 13445\n\t\tf 3 12902 12903 -12902\n\t\tmu 0 3 13445 13446 13443\n\t\tf 3 -12903 12904 12905\n\t\tmu 0 3 13446 13445 13414\n\t\tf 3 -12844 12906 -12906\n\t\tmu 0 3 13414 13413 13446\n\t\tf 3 12907 12908 12909\n\t\tmu 0 3 13447 13448 13449\n\t\tf 3 12910 12911 -12910\n\t\tmu 0 3 13450 13451 13447\n\t\tf 3 12912 -12909 12913\n\t\tmu 0 3 13452 13453 13448\n\t\tf 3 12914 12915 -12914\n\t\tmu 0 3 13448 13454 13455\n\t\tf 3 12916 -12916 12917\n\t\tmu 0 3 13456 13457 13454\n\t\tf 3 12918 12919 -12918\n\t\tmu 0 3 13454 13458 13459\n\t\tf 3 12920 -12920 12921\n\t\tmu 0 3 13460 13461 13458\n\t\tf 3 12922 12923 -12922\n\t\tmu 0 3 13458 13462 13463\n\t\tf 3 12924 -12924 12925\n\t\tmu 0 3 13464 13465 13462\n\t\tf 3 12926 12927 -12926\n\t\tmu 0 3 13462 13466 13467\n\t\tf 3 12928 -12928 12929\n\t\tmu 0 3 13468 13469 13466\n\t\tf 3 12930 12931 -12930\n\t\tmu 0 3 13466 13470 13471\n\t\tf 3 12932 -12932 12933\n\t\tmu 0 3 13472 13473 13470\n\t\tf 3 12934 12935 -12934\n\t\tmu 0 3 13470 13474 13475\n\t\tf 3 12936 -12936 12937\n\t\tmu 0 3 13476 13477 13474\n\t\tf 3 12938 12939 -12938\n\t\tmu 0 3 13474 13478 13479\n\t\tf 3 12940 -12940 12941\n\t\tmu 0 3 13480 13481 13478\n\t\tf 3 12942 12943 -12942\n\t\tmu 0 3 13478 13482 13483\n\t\tf 3 12944 12945 12946\n\t\tmu 0 3 13484 13485 13486\n\t\tf 3 12947 -12944 -12947\n\t\tmu 0 3 13487 13488 13484\n\t\tf 3 12948 -12946 12949\n\t\tmu 0 3 13489 13490 13485\n\t\tf 3 12950 12951 -12950\n\t\tmu 0 3 13485 13491 13492\n\t\tf 3 12952 -12952 12953\n\t\tmu 0 3 13493 13494 13491\n\t\tf 3 12954 12955 -12954\n\t\tmu 0 3 13491 13495 13496\n\t\tf 3 12956 -12956 12957\n\t\tmu 0 3 13497 13498 13495\n\t\tf 3 12958 12959 -12958\n\t\tmu 0 3 13495 13499 13500\n\t\tf 3 12960 -12960 12961\n\t\tmu 0 3 13501 13502 13499\n\t\tf 3 12962 12963 -12962\n\t\tmu 0 3 13499 13503 13504\n\t\tf 3 12964 -12964 12965\n\t\tmu 0 3 13505 13506 13503\n\t\tf 3 12966 12967 -12966\n\t\tmu 0 3 13503 13507 13508\n\t\tf 3 12968 -12968 12969\n\t\tmu 0 3 13509 13510 13507\n\t\tf 3 12970 -12912 -12970\n\t\tmu 0 3 13507 13447 13511\n\t\tf 3 12971 12972 12973\n\t\tmu 0 3 13512 13513 13514\n\t\tf 3 12974 12975 -12974\n\t\tmu 0 3 13515 13516 13512\n\t\tf 3 12976 -12973 12977\n\t\tmu 0 3 13517 13518 13513\n\t\tf 3 12978 12979 -12978\n\t\tmu 0 3 13513 13519 13520\n\t\tf 3 12980 -12980 12981\n\t\tmu 0 3 13521 13522 13519\n\t\tf 3 12982 12983 -12982\n\t\tmu 0 3 13519 13523 13524\n\t\tf 3 12984 -12984 12985\n\t\tmu 0 3 13525 13526 13523\n\t\tf 3 12986 12987 -12986\n\t\tmu 0 3 13523 13527 13528\n\t\tf 3 12988 -12988 12989\n\t\tmu 0 3 13529 13530 13527\n\t\tf 3 12990 12991 -12990\n\t\tmu 0 3 13527 13531 13532\n\t\tf 3 12992 -12992 12993\n\t\tmu 0 3 13533 13534 13531\n\t\tf 3 12994 12995 -12994\n\t\tmu 0 3 13531 13535 13536\n\t\tf 3 12996 -12996 12997\n\t\tmu 0 3 13537 13538 13535\n\t\tf 3 12998 12999 -12998\n\t\tmu 0 3 13535 13539 13540\n\t\tf 3 13000 -13000 13001\n\t\tmu 0 3 13541 13542 13539\n\t\tf 3 13002 13003 -13002\n\t\tmu 0 3 13539 13543 13544\n\t\tf 3 13004 -13004 13005\n\t\tmu 0 3 13545 13546 13543\n\t\tf 3 13006 13007 -13006\n\t\tmu 0 3 13543 13547 13548\n\t\tf 3 13008 13009 13010\n\t\tmu 0 3 13549 13550 13551\n\t\tf 3 13011 -13008 -13011\n\t\tmu 0 3 13552 13553 13549\n\t\tf 3 13012 -13010 13013\n\t\tmu 0 3 13554 13555 13550\n\t\tf 3 13014 13015 -13014\n\t\tmu 0 3 13550 13556 13557\n\t\tf 3 13016 -13016 13017\n\t\tmu 0 3 13558 13559 13556\n\t\tf 3 13018 13019 -13018\n\t\tmu 0 3 13556 13560 13561\n\t\tf 3 13020 -13020 13021\n\t\tmu 0 3 13562 13563 13560\n\t\tf 3 13022 13023 -13022\n\t\tmu 0 3 13560 13564 13565\n\t\tf 3 13024 -13024 13025\n\t\tmu 0 3 13566 13567 13564\n\t\tf 3 13026 13027 -13026\n\t\tmu 0 3 13564 13568 13569\n\t\tf 3 13028 -13028 13029\n\t\tmu 0 3 13570 13571 13568\n\t\tf 3 13030 13031 -13030\n\t\tmu 0 3 13568 13572 13573\n\t\tf 3 13032 -13032 13033\n\t\tmu 0 3 13574 13575 13572\n\t\tf 3 13034 -12976 -13034\n\t\tmu 0 3 13572 13512 13576\n\t\tf 3 13035 13036 13037\n\t\tmu 0 3 13577 13578 13579\n\t\tf 3 13038 13039 -13038\n\t\tmu 0 3 13580 13581 13577\n\t\tf 3 13040 -13037 13041\n\t\tmu 0 3 13582 13583 13578\n\t\tf 3 13042 13043 -13042\n\t\tmu 0 3 13578 13584 13585\n\t\tf 3 13044 -13044 13045\n\t\tmu 0 3 13586 13587 13584\n\t\tf 3 13046 13047 -13046\n\t\tmu 0 3 13584 13588 13589\n\t\tf 3 13048 -13048 13049\n\t\tmu 0 3 13590 13591 13588\n\t\tf 3 13050 13051 -13050\n\t\tmu 0 3 13588 13592 13593\n\t\tf 3 13052 -13052 13053\n\t\tmu 0 3 13594 13595 13592\n\t\tf 3 13054 13055 -13054\n\t\tmu 0 3 13592 13596 13597\n\t\tf 3 13056 -13056 13057\n\t\tmu 0 3 13598 13599 13596\n\t\tf 3 13058 13059 -13058\n\t\tmu 0 3 13596 13600 13601\n\t\tf 3 13060 -13060 13061\n\t\tmu 0 3 13602 13603 13600\n\t\tf 3 13062 13063 -13062\n\t\tmu 0 3 13600 13604 13605\n\t\tf 3 13064 -13064 13065\n\t\tmu 0 3 13606 13607 13604\n\t\tf 3 13066 13067 -13066\n\t\tmu 0 3 13604 13608 13609\n\t\tf 3 13068 -13068 13069\n\t\tmu 0 3 13610 13611 13608\n\t\tf 3 13070 13071 -13070\n\t\tmu 0 3 13608 13612 13613\n\t\tf 3 13072 13073 13074\n\t\tmu 0 3 13614 13615 13616\n\t\tf 3 13075 -13072 -13075\n\t\tmu 0 3 13617 13618 13614\n\t\tf 3 13076 -13074 13077\n\t\tmu 0 3 13619 13620 13615\n\t\tf 3 13078 13079 -13078\n\t\tmu 0 3 13615 13621 13622\n\t\tf 3 13080 -13080 13081\n\t\tmu 0 3 13623 13624 13621\n\t\tf 3 13082 13083 -13082\n\t\tmu 0 3 13621 13625 13626\n\t\tf 3 13084 -13084 13085\n\t\tmu 0 3 13627 13628 13625\n\t\tf 3 13086 13087 -13086\n\t\tmu 0 3 13625 13629 13630\n\t\tf 3 13088 -13088 13089\n\t\tmu 0 3 13631 13632 13629\n\t\tf 3 13090 13091 -13090\n\t\tmu 0 3 13629 13633 13634\n\t\tf 3 13092 -13092 13093\n\t\tmu 0 3 13635 13636 13633\n\t\tf 3 13094 13095 -13094\n\t\tmu 0 3 13633 13637 13638\n\t\tf 3 13096 -13096 13097\n\t\tmu 0 3 13639 13640 13637\n\t\tf 3 13098 -13040 -13098\n\t\tmu 0 3 13637 13577 13641\n\t\tf 3 13099 13100 13101\n\t\tmu 0 3 13642 13643 13644\n\t\tf 3 13102 13103 -13102\n\t\tmu 0 3 13645 13646 13642\n\t\tf 3 13104 -13101 13105\n\t\tmu 0 3 13647 13648 13643\n\t\tf 3 13106 13107 -13106\n\t\tmu 0 3 13643 13649 13650\n\t\tf 3 13108 -13108 13109\n\t\tmu 0 3 13651 13652 13649\n\t\tf 3 13110 13111 -13110\n\t\tmu 0 3 13649 13653 13654\n\t\tf 3 13112 -13112 13113\n\t\tmu 0 3 13655 13656 13653\n\t\tf 3 13114 13115 -13114\n\t\tmu 0 3 13653 13657 13658\n\t\tf 3 13116 -13116 13117\n\t\tmu 0 3 13659 13660 13657\n\t\tf 3 13118 13119 -13118\n\t\tmu 0 3 13657 13661 13662\n\t\tf 3 13120 -13120 13121\n\t\tmu 0 3 13663 13664 13661\n\t\tf 3 13122 13123 -13122\n\t\tmu 0 3 13661 13665 13666\n\t\tf 3 13124 -13124 13125\n\t\tmu 0 3 13667 13668 13665\n\t\tf 3 13126 13127 -13126\n\t\tmu 0 3 13665 13669 13670\n\t\tf 3 13128 -13128 13129\n\t\tmu 0 3 13671 13672 13669\n\t\tf 3 13130 13131 -13130\n\t\tmu 0 3 13669 13673 13674\n\t\tf 3 13132 -13132 13133\n\t\tmu 0 3 13675 13676 13673\n\t\tf 3 13134 13135 -13134\n\t\tmu 0 3 13673 13677 13678\n\t\tf 3 13136 13137 13138\n\t\tmu 0 3 13679 13680 13681\n\t\tf 3 13139 -13136 -13139\n\t\tmu 0 3 13682 13683 13679\n\t\tf 3 13140 -13138 13141\n\t\tmu 0 3 13684 13685 13680\n\t\tf 3 13142 13143 -13142\n\t\tmu 0 3 13680 13686 13687\n\t\tf 3 13144 -13144 13145\n\t\tmu 0 3 13688 13689 13686\n\t\tf 3 13146 13147 -13146\n\t\tmu 0 3 13686 13690 13691\n\t\tf 3 13148 -13148 13149\n\t\tmu 0 3 13692 13693 13690\n\t\tf 3 13150 13151 -13150\n\t\tmu 0 3 13690 13694 13695\n\t\tf 3 13152 -13152 13153\n\t\tmu 0 3 13696 13697 13694\n\t\tf 3 13154 13155 -13154\n\t\tmu 0 3 13694 13698 13699\n\t\tf 3 13156 -13156 13157\n\t\tmu 0 3 13700 13701 13698\n\t\tf 3 13158 13159 -13158\n\t\tmu 0 3 13698 13702 13703\n\t\tf 3 13160 -13160 13161\n\t\tmu 0 3 13704 13705 13702\n\t\tf 3 13162 -13104 -13162\n\t\tmu 0 3 13702 13642 13706\n\t\tf 3 13163 13164 13165\n\t\tmu 0 3 13707 13708 13709\n\t\tf 3 13166 13167 -13166\n\t\tmu 0 3 13709 13710 13707\n\t\tf 3 13168 -13167 13169\n\t\tmu 0 3 13711 13710 13709\n\t\tf 3 13170 13171 -13170\n\t\tmu 0 3 13709 13712 13711\n\t\tf 3 -13172 13172 13173\n\t\tmu 0 3 13711 13712 13713\n\t\tf 3 13174 13175 -13174\n\t\tmu 0 3 13713 13714 13711\n\t\tf 3 13176 -13175 13177\n\t\tmu 0 3 13715 13714 13713\n\t\tf 3 13178 13179 -13178\n\t\tmu 0 3 13713 13716 13715\n\t\tf 3 -13180 13180 13181\n\t\tmu 0 3 13715 13716 13717\n\t\tf 3 13182 13183 -13182\n\t\tmu 0 3 13717 13718 13715\n\t\tf 3 13184 -13183 13185\n\t\tmu 0 3 13719 13718 13717\n\t\tf 3 13186 13187 -13186\n\t\tmu 0 3 13717 13720 13719\n\t\tf 3 -13188 13188 13189\n\t\tmu 0 3 13719 13720 13721\n\t\tf 3 13190 13191 -13190\n\t\tmu 0 3 13721 13722 13719\n\t\tf 3 13192 -13191 13193\n\t\tmu 0 3 13723 13722 13721\n\t\tf 3 13194 13195 -13194\n\t\tmu 0 3 13721 13724 13723\n\t\tf 3 -13196 13196 13197\n\t\tmu 0 3 13723 13724 13725\n\t\tf 3 13198 13199 -13198\n\t\tmu 0 3 13725 13726 13723\n\t\tf 3 13200 13201 13202\n\t\tmu 0 3 13727 13728 13729\n\t\tf 3 13203 -13199 -13203\n\t\tmu 0 3 13729 13730 13727\n\t\tf 3 -13202 13204 13205\n\t\tmu 0 3 13729 13728 13731\n\t\tf 3 13206 13207 -13206\n\t\tmu 0 3 13731 13732 13729\n\t\tf 3 13208 -13207 13209\n\t\tmu 0 3 13733 13732 13731\n\t\tf 3 13210 13211 -13210\n\t\tmu 0 3 13731 13734 13733\n\t\tf 3 -13212 13212 13213\n\t\tmu 0 3 13733 13734 13735\n\t\tf 3 13214 13215 -13214\n\t\tmu 0 3 13735 13736 13733\n\t\tf 3 13216 -13215 13217\n\t\tmu 0 3 13737 13736 13735\n\t\tf 3 13218 13219 -13218\n\t\tmu 0 3 13735 13738 13737\n\t\tf 3 -13220 13220 13221\n\t\tmu 0 3 13737 13738 13739\n\t\tf 3 13222 13223 -13222\n\t\tmu 0 3 13739 13740 13737\n\t\tf 3 -13223 13224 13225\n\t\tmu 0 3 13740 13739 13708\n\t\tf 3 -13164 13226 -13226\n\t\tmu 0 3 13708 13707 13740\n\t\tf 3 13227 13228 13229\n\t\tmu 0 3 13741 13742 13743\n\t\tf 3 13230 13231 -13230\n\t\tmu 0 3 13743 13744 13741\n\t\tf 3 -13231 13232 13233\n\t\tmu 0 3 13744 13743 13745\n\t\tf 3 13234 13235 -13234\n\t\tmu 0 3 13745 13746 13744\n\t\tf 3 -13235 13236 13237\n\t\tmu 0 3 13746 13745 13747\n\t\tf 3 13238 13239 -13238\n\t\tmu 0 3 13747 13748 13746\n\t\tf 3 -13239 13240 13241\n\t\tmu 0 3 13748 13747 13749\n\t\tf 3 13242 13243 -13242\n\t\tmu 0 3 13749 13750 13748\n\t\tf 3 -13243 13244 13245\n\t\tmu 0 3 13750 13749 13751\n\t\tf 3 13246 13247 -13246\n\t\tmu 0 3 13751 13752 13750\n\t\tf 3 -13247 13248 13249\n\t\tmu 0 3 13752 13751 13753\n\t\tf 3 13250 13251 -13250\n\t\tmu 0 3 13753 13754 13752\n\t\tf 3 -13251 13252 13253\n\t\tmu 0 3 13754 13753 13755\n\t\tf 3 13254 13255 -13254\n\t\tmu 0 3 13755 13756 13754\n\t\tf 3 -13255 13256 13257\n\t\tmu 0 3 13756 13755 13757\n\t\tf 3 13258 13259 -13258\n\t\tmu 0 3 13757 13758 13756\n\t\tf 3 -13259 13260 13261\n\t\tmu 0 3 13758 13757 13759\n\t\tf 3 13262 13263 -13262\n\t\tmu 0 3 13759 13760 13758\n\t\tf 3 13264 13265 13266\n\t\tmu 0 3 13761 13762 13763\n\t\tf 3 -13263 13267 -13267\n\t\tmu 0 3 13763 13764 13761\n\t\tf 3 -13265 13268 13269\n\t\tmu 0 3 13762 13761 13765\n\t\tf 3 13270 13271 -13270\n\t\tmu 0 3 13765 13766 13762\n\t\tf 3 -13271 13272 13273\n\t\tmu 0 3 13766 13765 13767\n\t\tf 3 13274 13275 -13274\n\t\tmu 0 3 13767 13768 13766\n\t\tf 3 -13275 13276 13277\n\t\tmu 0 3 13768 13767 13769\n\t\tf 3 13278 13279 -13278\n\t\tmu 0 3 13769 13770 13768\n\t\tf 3 -13279 13280 13281\n\t\tmu 0 3 13770 13769 13771\n\t\tf 3 13282 13283 -13282\n\t\tmu 0 3 13771 13772 13770\n\t\tf 3 -13283 13284 13285\n\t\tmu 0 3 13772 13771 13773\n\t\tf 3 13286 13287 -13286\n\t\tmu 0 3 13773 13774 13772\n\t\tf 3 -13287 13288 13289\n\t\tmu 0 3 13774 13773 13742\n\t\tf 3 -13228 13290 -13290\n\t\tmu 0 3 13742 13741 13774\n\t\tf 3 13291 13292 13293\n\t\tmu 0 3 13775 13776 13777\n\t\tf 3 13294 13295 -13294\n\t\tmu 0 3 13777 13778 13775\n\t\tf 3 13296 -13293 13297\n\t\tmu 0 3 13779 13777 13776\n\t\tf 3 13298 13299 -13298\n\t\tmu 0 3 13776 13780 13779\n\t\tf 3 13300 -13300 13301\n\t\tmu 0 3 13781 13779 13780\n\t\tf 3 13302 13303 -13302\n\t\tmu 0 3 13780 13782 13781\n\t\tf 3 13304 -13304 13305\n\t\tmu 0 3 13783 13781 13782\n\t\tf 3 13306 13307 -13306\n\t\tmu 0 3 13782 13784 13783\n\t\tf 3 13308 -13308 13309\n\t\tmu 0 3 13785 13783 13784\n\t\tf 3 13310 13311 -13310\n\t\tmu 0 3 13784 13786 13785\n\t\tf 3 13312 -13312 13313\n\t\tmu 0 3 13787 13785 13786\n\t\tf 3 13314 13315 -13314\n\t\tmu 0 3 13786 13788 13787\n\t\tf 3 13316 -13316 13317\n\t\tmu 0 3 13789 13787 13788\n\t\tf 3 13318 13319 -13318\n\t\tmu 0 3 13788 13790 13789\n\t\tf 3 13320 -13320 13321\n\t\tmu 0 3 13791 13789 13790\n\t\tf 3 13322 13323 -13322\n\t\tmu 0 3 13790 13792 13791\n\t\tf 3 13324 -13324 13325\n\t\tmu 0 3 13793 13791 13792\n\t\tf 3 13326 13327 -13326\n\t\tmu 0 3 13792 13794 13793\n\t\tf 3 13328 -13328 13329\n\t\tmu 0 3 13795 13793 13794\n\t\tf 3 13330 13331 -13330\n\t\tmu 0 3 13794 13796 13795\n\t\tf 3 13332 -13332 13333\n\t\tmu 0 3 13797 13795 13796\n\t\tf 3 13334 13335 -13334\n\t\tmu 0 3 13796 13798 13797\n\t\tf 3 13336 -13336 13337\n\t\tmu 0 3 13799 13797 13798\n\t\tf 3 13338 13339 -13338\n\t\tmu 0 3 13798 13800 13799\n\t\tf 3 13340 -13340 13341\n\t\tmu 0 3 13801 13799 13800\n\t\tf 3 13342 13343 -13342\n\t\tmu 0 3 13800 13802 13801\n\t\tf 3 13344 -13344 13345\n\t\tmu 0 3 13803 13801 13802\n\t\tf 3 13346 13347 -13346\n\t\tmu 0 3 13802 13804 13803\n\t\tf 3 13348 -13348 13349\n\t\tmu 0 3 13805 13803 13804\n\t\tf 3 13350 13351 -13350\n\t\tmu 0 3 13804 13806 13805\n\t\tf 3 13352 -13352 13353\n\t\tmu 0 3 13778 13805 13806\n\t\tf 3 13354 -13296 -13354\n\t\tmu 0 3 13806 13775 13778\n\t\tf 3 13355 13356 13357\n\t\tmu 0 3 13807 13808 13809\n\t\tf 3 13358 13359 -13358\n\t\tmu 0 3 13809 13810 13807\n\t\tf 3 -13359 13360 13361\n\t\tmu 0 3 13810 13809 13811\n\t\tf 3 13362 13363 -13362\n\t\tmu 0 3 13811 13812 13810\n\t\tf 3 -13363 13364 13365\n\t\tmu 0 3 13812 13811 13813\n\t\tf 3 13366 13367 -13366\n\t\tmu 0 3 13813 13814 13812;\n\tsetAttr \".fc[7000:7499]\"\n\t\tf 3 -13367 13368 13369\n\t\tmu 0 3 13814 13813 13815\n\t\tf 3 13370 13371 -13370\n\t\tmu 0 3 13815 13816 13814\n\t\tf 3 -13371 13372 13373\n\t\tmu 0 3 13816 13815 13817\n\t\tf 3 13374 13375 -13374\n\t\tmu 0 3 13817 13818 13816\n\t\tf 3 -13375 13376 13377\n\t\tmu 0 3 13818 13817 13819\n\t\tf 3 13378 13379 -13378\n\t\tmu 0 3 13819 13820 13818\n\t\tf 3 -13379 13380 13381\n\t\tmu 0 3 13820 13819 13821\n\t\tf 3 13382 13383 -13382\n\t\tmu 0 3 13821 13822 13820\n\t\tf 3 -13383 13384 13385\n\t\tmu 0 3 13822 13821 13823\n\t\tf 3 13386 13387 -13386\n\t\tmu 0 3 13823 13824 13822\n\t\tf 3 -13387 13388 13389\n\t\tmu 0 3 13824 13823 13825\n\t\tf 3 13390 13391 -13390\n\t\tmu 0 3 13825 13826 13824\n\t\tf 3 13392 13393 13394\n\t\tmu 0 3 13827 13828 13829\n\t\tf 3 13395 13396 -13395\n\t\tmu 0 3 13830 13831 13827\n\t\tf 3 -13396 13397 13398\n\t\tmu 0 3 13831 13832 13833\n\t\tf 3 13399 13400 -13399\n\t\tmu 0 3 13834 13835 13831\n\t\tf 3 -13400 13401 13402\n\t\tmu 0 3 13835 13836 13837\n\t\tf 3 13403 13404 -13403\n\t\tmu 0 3 13838 13839 13835\n\t\tf 3 13405 13406 13407\n\t\tmu 0 3 13840 13841 13842\n\t\tf 3 13408 13409 -13408\n\t\tmu 0 3 13843 13844 13840\n\t\tf 3 -13406 13410 13411\n\t\tmu 0 3 13845 13840 13846\n\t\tf 3 13412 13413 -13412\n\t\tmu 0 3 13846 13847 13848\n\t\tf 3 -13413 13414 13415\n\t\tmu 0 3 13849 13846 13850\n\t\tf 3 13416 13417 -13416\n\t\tmu 0 3 13850 13851 13852\n\t\tf 3 -13404 13418 13419\n\t\tmu 0 3 13839 13853 13854\n\t\tf 3 13420 13421 13422\n\t\tmu 0 3 13855 13856 13808\n\t\tf 3 -13421 13423 13424\n\t\tmu 0 3 13857 13855 13858\n\t\tf 3 13425 13426 -13425\n\t\tmu 0 3 13858 13859 13860\n\t\tf 3 -13426 13427 13428\n\t\tmu 0 3 13859 13858 13861\n\t\tf 3 13429 13430 -13429\n\t\tmu 0 3 13861 13862 13859\n\t\tf 3 -13430 13431 13432\n\t\tmu 0 3 13862 13861 13863\n\t\tf 3 13433 13434 -13433\n\t\tmu 0 3 13863 13864 13862\n\t\tf 3 -13434 13435 13436\n\t\tmu 0 3 13864 13863 13865\n\t\tf 3 13437 13438 -13437\n\t\tmu 0 3 13865 13866 13864\n\t\tf 3 -13438 13439 13440\n\t\tmu 0 3 13866 13865 13867\n\t\tf 3 13441 13442 -13441\n\t\tmu 0 3 13867 13868 13866\n\t\tf 3 -13442 13443 13444\n\t\tmu 0 3 13868 13867 13869\n\t\tf 3 -13391 13445 -13445\n\t\tmu 0 3 13869 13870 13868\n\t\tf 3 13446 13447 13448\n\t\tmu 0 3 13871 13872 13873\n\t\tf 3 -13417 13449 -13449\n\t\tmu 0 3 13874 13875 13871\n\t\tf 3 -13447 13450 13451\n\t\tmu 0 3 13876 13871 13877\n\t\tf 3 13452 13453 -13452\n\t\tmu 0 3 13877 13878 13879\n\t\tf 3 -13453 13454 13455\n\t\tmu 0 3 13880 13877 13881\n\t\tf 3 13456 13457 -13456\n\t\tmu 0 3 13881 13882 13883\n\t\tf 3 -13457 13458 13459\n\t\tmu 0 3 13884 13881 13885\n\t\tf 3 13460 13461 -13460\n\t\tmu 0 3 13885 13886 13887\n\t\tf 3 -13461 13462 13463\n\t\tmu 0 3 13888 13885 13889\n\t\tf 3 13464 13465 -13464\n\t\tmu 0 3 13889 13890 13891\n\t\tf 3 -13465 13466 13467\n\t\tmu 0 3 13892 13889 13893\n\t\tf 3 13468 13469 -13468\n\t\tmu 0 3 13893 13854 13894\n\t\tf 3 -13469 13470 -13420\n\t\tmu 0 3 13854 13893 13839\n\t\tf 3 -13356 13471 -13423\n\t\tmu 0 3 13808 13807 13855\n\t\tf 3 13472 13473 13474\n\t\tmu 0 3 13895 13896 13897\n\t\tf 3 13475 13476 -13475\n\t\tmu 0 3 13897 13898 13895\n\t\tf 3 -13476 13477 13478\n\t\tmu 0 3 13898 13897 13899\n\t\tf 3 13479 13480 -13479\n\t\tmu 0 3 13899 13900 13898\n\t\tf 3 -13480 13481 13482\n\t\tmu 0 3 13900 13899 13901\n\t\tf 3 13483 13484 -13483\n\t\tmu 0 3 13901 13902 13900\n\t\tf 3 -13484 13485 13486\n\t\tmu 0 3 13902 13901 13903\n\t\tf 3 13487 13488 -13487\n\t\tmu 0 3 13903 13904 13902\n\t\tf 3 -13488 13489 13490\n\t\tmu 0 3 13904 13903 13905\n\t\tf 3 13491 13492 -13491\n\t\tmu 0 3 13905 13906 13904\n\t\tf 3 -13492 13493 13494\n\t\tmu 0 3 13906 13905 13907\n\t\tf 3 13495 13496 -13495\n\t\tmu 0 3 13907 13908 13906\n\t\tf 3 -13496 13497 13498\n\t\tmu 0 3 13908 13907 13909\n\t\tf 3 13499 13500 -13499\n\t\tmu 0 3 13909 13910 13908\n\t\tf 3 -13500 13501 13502\n\t\tmu 0 3 13910 13909 13911\n\t\tf 3 13503 13504 -13503\n\t\tmu 0 3 13911 13912 13910\n\t\tf 3 -13504 13505 13506\n\t\tmu 0 3 13912 13911 13913\n\t\tf 3 13507 13508 -13507\n\t\tmu 0 3 13913 13914 13912\n\t\tf 3 13509 13510 13511\n\t\tmu 0 3 13915 13916 13917\n\t\tf 3 -13508 13512 -13512\n\t\tmu 0 3 13917 13918 13915\n\t\tf 3 -13510 13513 13514\n\t\tmu 0 3 13916 13915 13919\n\t\tf 3 13515 13516 -13515\n\t\tmu 0 3 13919 13920 13916\n\t\tf 3 -13516 13517 13518\n\t\tmu 0 3 13920 13919 13921\n\t\tf 3 13519 13520 -13519\n\t\tmu 0 3 13921 13922 13920\n\t\tf 3 -13520 13521 13522\n\t\tmu 0 3 13922 13921 13923\n\t\tf 3 13523 13524 -13523\n\t\tmu 0 3 13923 13924 13922\n\t\tf 3 -13524 13525 13526\n\t\tmu 0 3 13924 13923 13925\n\t\tf 3 13527 13528 -13527\n\t\tmu 0 3 13925 13926 13924\n\t\tf 3 -13528 13529 13530\n\t\tmu 0 3 13926 13925 13927\n\t\tf 3 13531 13532 -13531\n\t\tmu 0 3 13927 13928 13926\n\t\tf 3 -13532 13533 13534\n\t\tmu 0 3 13928 13927 13896\n\t\tf 3 -13473 13535 -13535\n\t\tmu 0 3 13896 13895 13928\n\t\tf 3 13536 13537 13538\n\t\tmu 0 3 13929 13930 13931\n\t\tf 3 13539 13540 -13539\n\t\tmu 0 3 13931 13932 13929\n\t\tf 3 -13540 13541 13542\n\t\tmu 0 3 13932 13931 13933\n\t\tf 3 13543 13544 -13543\n\t\tmu 0 3 13933 13934 13932\n\t\tf 3 -13544 13545 13546\n\t\tmu 0 3 13934 13933 13935\n\t\tf 3 13547 13548 -13547\n\t\tmu 0 3 13935 13936 13934\n\t\tf 3 -13548 13549 13550\n\t\tmu 0 3 13936 13935 13937\n\t\tf 3 13551 13552 -13551\n\t\tmu 0 3 13937 13938 13936\n\t\tf 3 -13552 13553 13554\n\t\tmu 0 3 13938 13937 13939\n\t\tf 3 13555 13556 -13555\n\t\tmu 0 3 13939 13940 13938\n\t\tf 3 -13556 13557 13558\n\t\tmu 0 3 13940 13939 13941\n\t\tf 3 13559 13560 -13559\n\t\tmu 0 3 13941 13942 13940\n\t\tf 3 -13560 13561 13562\n\t\tmu 0 3 13942 13941 13943\n\t\tf 3 13563 13564 -13563\n\t\tmu 0 3 13943 13944 13942\n\t\tf 3 -13564 13565 13566\n\t\tmu 0 3 13944 13943 13945\n\t\tf 3 13567 13568 -13567\n\t\tmu 0 3 13945 13946 13944\n\t\tf 3 -13568 13569 13570\n\t\tmu 0 3 13946 13945 13947\n\t\tf 3 13571 13572 -13571\n\t\tmu 0 3 13947 13948 13946\n\t\tf 3 13573 13574 13575\n\t\tmu 0 3 13949 13950 13951\n\t\tf 3 -13572 13576 -13576\n\t\tmu 0 3 13951 13952 13949\n\t\tf 3 -13574 13577 13578\n\t\tmu 0 3 13950 13949 13953\n\t\tf 3 13579 13580 -13579\n\t\tmu 0 3 13953 13954 13950\n\t\tf 3 -13580 13581 13582\n\t\tmu 0 3 13954 13953 13955\n\t\tf 3 13583 13584 -13583\n\t\tmu 0 3 13955 13956 13954\n\t\tf 3 -13584 13585 13586\n\t\tmu 0 3 13956 13955 13957\n\t\tf 3 13587 13588 -13587\n\t\tmu 0 3 13957 13958 13956\n\t\tf 3 -13588 13589 13590\n\t\tmu 0 3 13958 13957 13959\n\t\tf 3 13591 13592 -13591\n\t\tmu 0 3 13959 13960 13958\n\t\tf 3 -13592 13593 13594\n\t\tmu 0 3 13960 13959 13961\n\t\tf 3 13595 13596 -13595\n\t\tmu 0 3 13961 13962 13960\n\t\tf 3 -13596 13597 13598\n\t\tmu 0 3 13962 13961 13930\n\t\tf 3 -13537 13599 -13599\n\t\tmu 0 3 13930 13929 13962\n\t\tf 3 13600 13601 13602\n\t\tmu 0 3 13963 13964 13965\n\t\tf 3 13603 13604 -13603\n\t\tmu 0 3 13965 13966 13963\n\t\tf 3 -13604 13605 13606\n\t\tmu 0 3 13966 13965 13967\n\t\tf 3 13607 13608 -13607\n\t\tmu 0 3 13967 13968 13966\n\t\tf 3 -13608 13609 13610\n\t\tmu 0 3 13968 13967 13969\n\t\tf 3 13611 13612 -13611\n\t\tmu 0 3 13969 13970 13968\n\t\tf 3 -13612 13613 13614\n\t\tmu 0 3 13970 13969 13971\n\t\tf 3 13615 13616 -13615\n\t\tmu 0 3 13971 13972 13970\n\t\tf 3 -13616 13617 13618\n\t\tmu 0 3 13972 13971 13973\n\t\tf 3 13619 13620 -13619\n\t\tmu 0 3 13973 13974 13972\n\t\tf 3 -13620 13621 13622\n\t\tmu 0 3 13974 13973 13975\n\t\tf 3 13623 13624 -13623\n\t\tmu 0 3 13975 13976 13974\n\t\tf 3 -13624 13625 13626\n\t\tmu 0 3 13976 13975 13977\n\t\tf 3 13627 13628 -13627\n\t\tmu 0 3 13977 13978 13976\n\t\tf 3 -13628 13629 13630\n\t\tmu 0 3 13978 13977 13979\n\t\tf 3 13631 13632 -13631\n\t\tmu 0 3 13979 13980 13978\n\t\tf 3 -13632 13633 13634\n\t\tmu 0 3 13980 13979 13981\n\t\tf 3 13635 13636 -13635\n\t\tmu 0 3 13981 13982 13980\n\t\tf 3 13637 13638 13639\n\t\tmu 0 3 13983 13984 13985\n\t\tf 3 -13636 13640 -13640\n\t\tmu 0 3 13985 13986 13983\n\t\tf 3 -13638 13641 13642\n\t\tmu 0 3 13984 13983 13987\n\t\tf 3 13643 13644 -13643\n\t\tmu 0 3 13987 13988 13984\n\t\tf 3 -13644 13645 13646\n\t\tmu 0 3 13988 13987 13989\n\t\tf 3 13647 13648 -13647\n\t\tmu 0 3 13989 13990 13988\n\t\tf 3 -13648 13649 13650\n\t\tmu 0 3 13990 13989 13991\n\t\tf 3 13651 13652 -13651\n\t\tmu 0 3 13991 13992 13990\n\t\tf 3 -13652 13653 13654\n\t\tmu 0 3 13992 13991 13993\n\t\tf 3 13655 13656 -13655\n\t\tmu 0 3 13993 13994 13992\n\t\tf 3 -13656 13657 13658\n\t\tmu 0 3 13994 13993 13995\n\t\tf 3 13659 13660 -13659\n\t\tmu 0 3 13995 13996 13994\n\t\tf 3 -13660 13661 13662\n\t\tmu 0 3 13996 13995 13964\n\t\tf 3 -13601 13663 -13663\n\t\tmu 0 3 13964 13963 13996\n\t\tf 3 13664 13665 13666\n\t\tmu 0 3 13997 13998 13999\n\t\tf 3 13667 13668 -13667\n\t\tmu 0 3 14000 14001 13997\n\t\tf 3 13669 -13666 13670\n\t\tmu 0 3 14002 14003 13998\n\t\tf 3 13671 13672 -13671\n\t\tmu 0 3 13998 14004 14005\n\t\tf 3 13673 -13673 13674\n\t\tmu 0 3 14006 14007 14004\n\t\tf 3 13675 13676 -13675\n\t\tmu 0 3 14004 14008 14009\n\t\tf 3 13677 -13677 13678\n\t\tmu 0 3 14010 14011 14008\n\t\tf 3 13679 13680 -13679\n\t\tmu 0 3 14008 14012 14013\n\t\tf 3 13681 -13681 13682\n\t\tmu 0 3 14014 14015 14012\n\t\tf 3 13683 13684 -13683\n\t\tmu 0 3 14012 14016 14017\n\t\tf 3 13685 -13685 13686\n\t\tmu 0 3 14018 14019 14016\n\t\tf 3 13687 13688 -13687\n\t\tmu 0 3 14016 14020 14021\n\t\tf 3 13689 -13689 13690\n\t\tmu 0 3 14022 14023 14020\n\t\tf 3 13691 13692 -13691\n\t\tmu 0 3 14020 14024 14025\n\t\tf 3 13693 -13693 13694\n\t\tmu 0 3 14026 14027 14024\n\t\tf 3 13695 13696 -13695\n\t\tmu 0 3 14024 14028 14029\n\t\tf 3 13697 -13697 13698\n\t\tmu 0 3 14030 14031 14028\n\t\tf 3 13699 13700 -13699\n\t\tmu 0 3 14028 14032 14033\n\t\tf 3 13701 13702 13703\n\t\tmu 0 3 14034 14035 14036\n\t\tf 3 13704 -13701 -13704\n\t\tmu 0 3 14037 14038 14034\n\t\tf 3 13705 -13703 13706\n\t\tmu 0 3 14039 14040 14035\n\t\tf 3 13707 13708 -13707\n\t\tmu 0 3 14035 14041 14042\n\t\tf 3 13709 -13709 13710\n\t\tmu 0 3 14043 14044 14041\n\t\tf 3 13711 13712 -13711\n\t\tmu 0 3 14041 14045 14046\n\t\tf 3 13713 -13713 13714\n\t\tmu 0 3 14047 14048 14045\n\t\tf 3 13715 13716 -13715\n\t\tmu 0 3 14045 14049 14050\n\t\tf 3 13717 -13717 13718\n\t\tmu 0 3 14051 14052 14049\n\t\tf 3 13719 13720 -13719\n\t\tmu 0 3 14049 14053 14054\n\t\tf 3 13721 -13721 13722\n\t\tmu 0 3 14055 14056 14053\n\t\tf 3 13723 13724 -13723\n\t\tmu 0 3 14053 14057 14058\n\t\tf 3 13725 -13725 13726\n\t\tmu 0 3 14059 14060 14057\n\t\tf 3 13727 -13669 -13727\n\t\tmu 0 3 14057 13997 14061\n\t\tf 3 13728 13729 13730\n\t\tmu 0 3 14062 14063 14064\n\t\tf 3 13731 13732 -13731\n\t\tmu 0 3 14065 14066 14062\n\t\tf 3 13733 -13730 13734\n\t\tmu 0 3 14067 14068 14063\n\t\tf 3 13735 13736 -13735\n\t\tmu 0 3 14063 14069 14070\n\t\tf 3 13737 -13737 13738\n\t\tmu 0 3 14071 14072 14069\n\t\tf 3 13739 13740 -13739\n\t\tmu 0 3 14069 14073 14074\n\t\tf 3 13741 -13741 13742\n\t\tmu 0 3 14075 14076 14073\n\t\tf 3 13743 13744 -13743\n\t\tmu 0 3 14073 14077 14078\n\t\tf 3 13745 -13745 13746\n\t\tmu 0 3 14079 14080 14077\n\t\tf 3 13747 13748 -13747\n\t\tmu 0 3 14077 14081 14082\n\t\tf 3 13749 -13749 13750\n\t\tmu 0 3 14083 14084 14081\n\t\tf 3 13751 13752 -13751\n\t\tmu 0 3 14081 14085 14086\n\t\tf 3 13753 -13753 13754\n\t\tmu 0 3 14087 14088 14085\n\t\tf 3 13755 13756 -13755\n\t\tmu 0 3 14085 14089 14090\n\t\tf 3 13757 -13757 13758\n\t\tmu 0 3 14091 14092 14089\n\t\tf 3 13759 13760 -13759\n\t\tmu 0 3 14089 14093 14094\n\t\tf 3 13761 -13761 13762\n\t\tmu 0 3 14095 14096 14093\n\t\tf 3 13763 13764 -13763\n\t\tmu 0 3 14093 14097 14098\n\t\tf 3 13765 13766 13767\n\t\tmu 0 3 14099 14100 14101\n\t\tf 3 13768 -13765 -13768\n\t\tmu 0 3 14102 14103 14099\n\t\tf 3 13769 -13767 13770\n\t\tmu 0 3 14104 14105 14100\n\t\tf 3 13771 13772 -13771\n\t\tmu 0 3 14100 14106 14107\n\t\tf 3 13773 -13773 13774\n\t\tmu 0 3 14108 14109 14106\n\t\tf 3 13775 13776 -13775\n\t\tmu 0 3 14106 14110 14111\n\t\tf 3 13777 -13777 13778\n\t\tmu 0 3 14112 14113 14110\n\t\tf 3 13779 13780 -13779\n\t\tmu 0 3 14110 14114 14115\n\t\tf 3 13781 -13781 13782\n\t\tmu 0 3 14116 14117 14114\n\t\tf 3 13783 13784 -13783\n\t\tmu 0 3 14114 14118 14119\n\t\tf 3 13785 -13785 13786\n\t\tmu 0 3 14120 14121 14118\n\t\tf 3 13787 13788 -13787\n\t\tmu 0 3 14118 14122 14123\n\t\tf 3 13789 -13789 13790\n\t\tmu 0 3 14124 14125 14122\n\t\tf 3 13791 -13733 -13791\n\t\tmu 0 3 14122 14062 14126\n\t\tf 3 13792 13793 13794\n\t\tmu 0 3 14127 14128 14129\n\t\tf 3 13795 13796 -13795\n\t\tmu 0 3 14130 14131 14127\n\t\tf 3 13797 -13794 13798\n\t\tmu 0 3 14132 14133 14128\n\t\tf 3 13799 13800 -13799\n\t\tmu 0 3 14128 14134 14135\n\t\tf 3 13801 -13801 13802\n\t\tmu 0 3 14136 14137 14134\n\t\tf 3 13803 13804 -13803\n\t\tmu 0 3 14134 14138 14139\n\t\tf 3 13805 -13805 13806\n\t\tmu 0 3 14140 14141 14138\n\t\tf 3 13807 13808 -13807\n\t\tmu 0 3 14138 14142 14143\n\t\tf 3 13809 -13809 13810\n\t\tmu 0 3 14144 14145 14142\n\t\tf 3 13811 13812 -13811\n\t\tmu 0 3 14142 14146 14147\n\t\tf 3 13813 -13813 13814\n\t\tmu 0 3 14148 14149 14146\n\t\tf 3 13815 13816 -13815\n\t\tmu 0 3 14146 14150 14151\n\t\tf 3 13817 -13817 13818\n\t\tmu 0 3 14152 14153 14150\n\t\tf 3 13819 13820 -13819\n\t\tmu 0 3 14150 14154 14155\n\t\tf 3 13821 -13821 13822\n\t\tmu 0 3 14156 14157 14154\n\t\tf 3 13823 13824 -13823\n\t\tmu 0 3 14154 14158 14159\n\t\tf 3 13825 -13825 13826\n\t\tmu 0 3 14160 14161 14158\n\t\tf 3 13827 13828 -13827\n\t\tmu 0 3 14158 14162 14163\n\t\tf 3 13829 13830 13831\n\t\tmu 0 3 14164 14165 14166\n\t\tf 3 13832 -13829 -13832\n\t\tmu 0 3 14167 14168 14164\n\t\tf 3 13833 -13831 13834\n\t\tmu 0 3 14169 14170 14165\n\t\tf 3 13835 13836 -13835\n\t\tmu 0 3 14165 14171 14172\n\t\tf 3 13837 -13837 13838\n\t\tmu 0 3 14173 14174 14171\n\t\tf 3 13839 13840 -13839\n\t\tmu 0 3 14171 14175 14176\n\t\tf 3 13841 -13841 13842\n\t\tmu 0 3 14177 14178 14175\n\t\tf 3 13843 13844 -13843\n\t\tmu 0 3 14175 14179 14180\n\t\tf 3 13845 -13845 13846\n\t\tmu 0 3 14181 14182 14179\n\t\tf 3 13847 13848 -13847\n\t\tmu 0 3 14179 14183 14184\n\t\tf 3 13849 -13849 13850\n\t\tmu 0 3 14185 14186 14183\n\t\tf 3 13851 13852 -13851\n\t\tmu 0 3 14183 14187 14188\n\t\tf 3 13853 -13853 13854\n\t\tmu 0 3 14189 14190 14187\n\t\tf 3 13855 -13797 -13855\n\t\tmu 0 3 14187 14127 14191\n\t\tf 3 13856 13857 13858\n\t\tmu 0 3 14192 14193 14194\n\t\tf 3 13859 13860 -13859\n\t\tmu 0 3 14195 14196 14192\n\t\tf 3 13861 -13858 13862\n\t\tmu 0 3 14197 14198 14193\n\t\tf 3 13863 13864 -13863\n\t\tmu 0 3 14193 14199 14200\n\t\tf 3 13865 -13865 13866\n\t\tmu 0 3 14201 14202 14199\n\t\tf 3 13867 13868 -13867\n\t\tmu 0 3 14199 14203 14204\n\t\tf 3 13869 -13869 13870\n\t\tmu 0 3 14205 14206 14203\n\t\tf 3 13871 13872 -13871\n\t\tmu 0 3 14203 14207 14208\n\t\tf 3 13873 -13873 13874\n\t\tmu 0 3 14209 14210 14207\n\t\tf 3 13875 13876 -13875\n\t\tmu 0 3 14207 14211 14212\n\t\tf 3 13877 -13877 13878\n\t\tmu 0 3 14213 14214 14211\n\t\tf 3 13879 13880 -13879\n\t\tmu 0 3 14211 14215 14216\n\t\tf 3 13881 -13881 13882\n\t\tmu 0 3 14217 14218 14215\n\t\tf 3 13883 13884 -13883\n\t\tmu 0 3 14215 14219 14220\n\t\tf 3 13885 -13885 13886\n\t\tmu 0 3 14221 14222 14219\n\t\tf 3 13887 13888 -13887\n\t\tmu 0 3 14219 14223 14224\n\t\tf 3 13889 -13889 13890\n\t\tmu 0 3 14225 14226 14223\n\t\tf 3 13891 13892 -13891\n\t\tmu 0 3 14223 14227 14228\n\t\tf 3 13893 13894 13895\n\t\tmu 0 3 14229 14230 14231\n\t\tf 3 13896 -13893 -13896\n\t\tmu 0 3 14232 14233 14229\n\t\tf 3 13897 -13895 13898\n\t\tmu 0 3 14234 14235 14230\n\t\tf 3 13899 13900 -13899\n\t\tmu 0 3 14230 14236 14237\n\t\tf 3 13901 -13901 13902\n\t\tmu 0 3 14238 14239 14236\n\t\tf 3 13903 13904 -13903\n\t\tmu 0 3 14236 14240 14241\n\t\tf 3 13905 -13905 13906\n\t\tmu 0 3 14242 14243 14240\n\t\tf 3 13907 13908 -13907\n\t\tmu 0 3 14240 14244 14245\n\t\tf 3 13909 -13909 13910\n\t\tmu 0 3 14246 14247 14244\n\t\tf 3 13911 13912 -13911\n\t\tmu 0 3 14244 14248 14249\n\t\tf 3 13913 -13913 13914\n\t\tmu 0 3 14250 14251 14248\n\t\tf 3 13915 13916 -13915\n\t\tmu 0 3 14248 14252 14253\n\t\tf 3 13917 -13917 13918\n\t\tmu 0 3 14254 14255 14252\n\t\tf 3 13919 -13861 -13919\n\t\tmu 0 3 14252 14192 14256\n\t\tf 3 -13393 13920 13921\n\t\tmu 0 3 14257 13827 14258\n\t\tf 3 13922 13923 -13922\n\t\tmu 0 3 14258 14259 14260\n\t\tf 3 -13923 13924 13925\n\t\tmu 0 3 14261 14258 14262\n\t\tf 3 13926 13927 -13926\n\t\tmu 0 3 14262 14263 14264\n\t\tf 3 -13927 13928 13929\n\t\tmu 0 3 14265 14262 13844\n\t\tf 3 -13409 13930 -13930\n\t\tmu 0 3 13844 14266 14267\n\t\tf 3 13931 13932 13933\n\t\tmu 0 3 14268 14269 14270\n\t\tf 3 13934 13935 -13934\n\t\tmu 0 3 14271 14272 14273\n\t\tf 3 -13936 13936 13937\n\t\tmu 0 3 14274 14275 14276\n\t\tf 3 13938 13939 -13938\n\t\tmu 0 3 14277 14278 14279\n\t\tf 3 13940 -13939 13941\n\t\tmu 0 3 14280 14281 14282\n\t\tf 3 13942 13943 -13942\n\t\tmu 0 3 14283 14284 14285\n\t\tf 3 -13944 13944 13945\n\t\tmu 0 3 14286 14287 14288\n\t\tf 3 13946 13947 -13946\n\t\tmu 0 3 14289 14290 14291\n\t\tf 3 13948 -13947 13949\n\t\tmu 0 3 14292 14293 14294\n\t\tf 3 13950 13951 -13950\n\t\tmu 0 3 14295 14296 14297\n\t\tf 3 -13952 13952 13953\n\t\tmu 0 3 14298 14299 14300\n\t\tf 3 13954 13955 -13954\n\t\tmu 0 3 14301 14302 14303\n\t\tf 3 13956 -13955 13957\n\t\tmu 0 3 14304 14305 14306\n\t\tf 3 13958 13959 -13958\n\t\tmu 0 3 14307 14308 14309\n\t\tf 3 -13960 13960 13961\n\t\tmu 0 3 14310 14311 14312\n\t\tf 3 13962 13963 -13962\n\t\tmu 0 3 14313 14314 14315\n\t\tf 3 13964 -13963 13965\n\t\tmu 0 3 14316 14317 14318\n\t\tf 3 13966 13967 -13966\n\t\tmu 0 3 14319 14320 14321\n\t\tf 3 -13968 13968 13969\n\t\tmu 0 3 14322 14323 14324\n\t\tf 3 13970 13971 -13970\n\t\tmu 0 3 14325 14326 14327\n\t\tf 3 13972 -13971 13973\n\t\tmu 0 3 14328 14329 14330\n\t\tf 3 13974 13975 -13974\n\t\tmu 0 3 14331 14332 14333\n\t\tf 3 -13976 13976 13977\n\t\tmu 0 3 14334 14335 14336\n\t\tf 3 13978 13979 -13978\n\t\tmu 0 3 14337 14338 14339\n\t\tf 3 13980 -13979 13981\n\t\tmu 0 3 14340 14341 14342\n\t\tf 3 13982 13983 -13982\n\t\tmu 0 3 14343 14344 14345\n\t\tf 3 -13984 13984 13985\n\t\tmu 0 3 14346 14347 14348\n\t\tf 3 13986 13987 -13986\n\t\tmu 0 3 14349 14350 14351\n\t\tf 3 13988 -13987 13989\n\t\tmu 0 3 14352 14353 14354\n\t\tf 3 13990 13991 -13990\n\t\tmu 0 3 14355 14356 14357\n\t\tf 3 13992 -13992 13993\n\t\tmu 0 3 14358 14359 14360\n\t\tf 3 13994 -13933 -13994\n\t\tmu 0 3 14361 14362 14363\n\t\tf 3 13995 13996 13997\n\t\tmu 0 3 14364 14365 14366\n\t\tf 3 13998 13999 -13998\n\t\tmu 0 3 14367 14368 14369\n\t\tf 3 -13999 14000 14001\n\t\tmu 0 3 14370 14371 14372\n\t\tf 3 14002 14003 -14002\n\t\tmu 0 3 14373 14374 14375\n\t\tf 3 -14003 14004 14005\n\t\tmu 0 3 14376 14377 14378\n\t\tf 3 14006 14007 -14006\n\t\tmu 0 3 14379 14380 14381\n\t\tf 3 -14007 14008 14009\n\t\tmu 0 3 14382 14383 14384\n\t\tf 3 14010 14011 -14010\n\t\tmu 0 3 14385 14386 14387\n\t\tf 3 -14011 14012 14013\n\t\tmu 0 3 14388 14389 14390\n\t\tf 3 14014 14015 -14014\n\t\tmu 0 3 14391 14392 14393\n\t\tf 3 -14015 14016 14017\n\t\tmu 0 3 14394 14395 14396\n\t\tf 3 14018 14019 -14018\n\t\tmu 0 3 14397 14398 14399\n\t\tf 3 -14019 14020 14021\n\t\tmu 0 3 14400 14401 14402\n\t\tf 3 14022 14023 -14022\n\t\tmu 0 3 14403 14404 14405\n\t\tf 3 -13996 14024 14025\n\t\tmu 0 3 14406 14407 14408\n\t\tf 3 14026 14027 -14026\n\t\tmu 0 3 14409 14410 14411\n\t\tf 3 -14027 14028 14029\n\t\tmu 0 3 14412 14413 14414\n\t\tf 3 14030 14031 -14030\n\t\tmu 0 3 14415 14416 14417\n\t\tf 3 -14031 14032 14033\n\t\tmu 0 3 14418 14419 14420\n\t\tf 3 14034 14035 -14034\n\t\tmu 0 3 14421 14422 14423\n\t\tf 3 -14035 14036 14037\n\t\tmu 0 3 14424 14425 14426\n\t\tf 3 14038 14039 -14038\n\t\tmu 0 3 14427 14428 14429\n\t\tf 3 -14039 14040 14041\n\t\tmu 0 3 14430 14431 14432\n\t\tf 3 14042 14043 -14042\n\t\tmu 0 3 14433 14434 14435\n\t\tf 3 -14043 14044 14045\n\t\tmu 0 3 14436 14437 14438\n\t\tf 3 14046 14047 -14046\n\t\tmu 0 3 14439 14440 14441\n\t\tf 3 -14047 14048 14049\n\t\tmu 0 3 14442 14443 14444\n\t\tf 3 14050 14051 -14050\n\t\tmu 0 3 14445 14446 14447\n\t\tf 3 -14051 14052 14053\n\t\tmu 0 3 14448 14449 14450\n\t\tf 3 14054 14055 -14054\n\t\tmu 0 3 14451 14452 14453\n\t\tf 3 -14055 14056 14057\n\t\tmu 0 3 14454 14455 14456\n\t\tf 3 -14023 14058 -14058\n\t\tmu 0 3 14457 14458 14459\n\t\tf 3 14059 14060 14061\n\t\tmu 0 3 14460 14461 14462\n\t\tf 3 14062 14063 -14062\n\t\tmu 0 3 14463 14464 14465\n\t\tf 3 -14064 14064 14065\n\t\tmu 0 3 14466 14467 14468\n\t\tf 3 14066 14067 -14066\n\t\tmu 0 3 14469 14470 14471\n\t\tf 3 14068 -14067 14069\n\t\tmu 0 3 14472 14473 14474\n\t\tf 3 14070 14071 -14070\n\t\tmu 0 3 14475 14476 14477\n\t\tf 3 -14072 14072 14073\n\t\tmu 0 3 14478 14479 14480\n\t\tf 3 14074 14075 -14074\n\t\tmu 0 3 14481 14482 14483\n\t\tf 3 14076 -14075 14077\n\t\tmu 0 3 14484 14485 14486\n\t\tf 3 14078 14079 -14078\n\t\tmu 0 3 14487 14488 14489\n\t\tf 3 -14080 14080 14081\n\t\tmu 0 3 14490 14491 14492\n\t\tf 3 14082 14083 -14082\n\t\tmu 0 3 14493 14494 14495\n\t\tf 3 14084 -14083 14085\n\t\tmu 0 3 14496 14497 14498\n\t\tf 3 14086 14087 -14086\n\t\tmu 0 3 14499 14500 14501\n\t\tf 3 14088 -14061 14089\n\t\tmu 0 3 14502 14503 14504\n\t\tf 3 14090 14091 -14090\n\t\tmu 0 3 14505 14506 14507\n\t\tf 3 14092 -14092 14093\n\t\tmu 0 3 14508 14509 14510\n\t\tf 3 14094 14095 -14094\n\t\tmu 0 3 14511 14512 14513\n\t\tf 3 -14096 14096 14097\n\t\tmu 0 3 14514 14515 14516\n\t\tf 3 14098 14099 -14098\n\t\tmu 0 3 14517 14518 14519\n\t\tf 3 14100 -14099 14101\n\t\tmu 0 3 14520 14521 14522\n\t\tf 3 14102 14103 -14102\n\t\tmu 0 3 14523 14524 14525\n\t\tf 3 -14104 14104 14105\n\t\tmu 0 3 14526 14527 14528\n\t\tf 3 14106 14107 -14106\n\t\tmu 0 3 14529 14530 14531\n\t\tf 3 14108 -14107 14109\n\t\tmu 0 3 14532 14533 14534\n\t\tf 3 14110 14111 -14110\n\t\tmu 0 3 14535 14536 14537\n\t\tf 3 -14112 14112 14113\n\t\tmu 0 3 14538 14539 14540\n\t\tf 3 14114 14115 -14114\n\t\tmu 0 3 14541 14542 14543\n\t\tf 3 14116 -14115 14117\n\t\tmu 0 3 14544 14545 14546\n\t\tf 3 14118 14119 -14118\n\t\tmu 0 3 14547 14548 14549\n\t\tf 3 -14120 14120 14121\n\t\tmu 0 3 14550 14551 14552\n\t\tf 3 -14088 14122 -14122\n\t\tmu 0 3 14553 14554 14555\n\t\tf 3 14123 14124 14125\n\t\tmu 0 3 14556 14557 14558\n\t\tf 3 14126 14127 -14126\n\t\tmu 0 3 14559 14560 14561\n\t\tf 3 -14125 14128 14129\n\t\tmu 0 3 14562 14563 14564\n\t\tf 3 14130 14131 -14130\n\t\tmu 0 3 14565 14566 14567\n\t\tf 3 14132 -14131 14133\n\t\tmu 0 3 14568 14569 14570\n\t\tf 3 14134 14135 -14134\n\t\tmu 0 3 14571 14572 14573\n\t\tf 3 -14136 14136 14137\n\t\tmu 0 3 14574 14575 14576\n\t\tf 3 14138 14139 -14138\n\t\tmu 0 3 14577 14578 14579\n\t\tf 3 14140 -14139 14141\n\t\tmu 0 3 14580 14581 14582\n\t\tf 3 14142 14143 -14142\n\t\tmu 0 3 14583 14584 14585\n\t\tf 3 -14144 14144 14145\n\t\tmu 0 3 14586 14587 14588\n\t\tf 3 14146 14147 -14146\n\t\tmu 0 3 14589 14590 14591\n\t\tf 3 14148 -14147 14149\n\t\tmu 0 3 14592 14593 14594\n\t\tf 3 14150 14151 -14150\n\t\tmu 0 3 14595 14596 14597\n\t\tf 3 -14152 14152 14153\n\t\tmu 0 3 14598 14599 14600\n\t\tf 3 14154 14155 -14154\n\t\tmu 0 3 14601 14602 14603\n\t\tf 3 14156 -14155 14157\n\t\tmu 0 3 14604 14605 14606\n\t\tf 3 14158 14159 -14158\n\t\tmu 0 3 14607 14608 14609\n\t\tf 3 -14160 14160 14161\n\t\tmu 0 3 14610 14611 14612\n\t\tf 3 14162 14163 -14162\n\t\tmu 0 3 14613 14614 14615\n\t\tf 3 14164 -14163 14165\n\t\tmu 0 3 14616 14617 14618\n\t\tf 3 14166 14167 -14166\n\t\tmu 0 3 14619 14620 14621\n\t\tf 3 -14168 14168 14169\n\t\tmu 0 3 14622 14623 14624\n\t\tf 3 14170 14171 -14170\n\t\tmu 0 3 14625 14626 14627\n\t\tf 3 14172 -14171 14173\n\t\tmu 0 3 14628 14629 14630\n\t\tf 3 14174 14175 -14174\n\t\tmu 0 3 14631 14632 14633\n\t\tf 3 -14176 14176 14177\n\t\tmu 0 3 14634 14635 14636\n\t\tf 3 14178 14179 -14178\n\t\tmu 0 3 14637 14638 14639\n\t\tf 3 14180 -14179 14181\n\t\tmu 0 3 14640 14641 14642\n\t\tf 3 14182 14183 -14182\n\t\tmu 0 3 14643 14644 14645\n\t\tf 3 14184 -14184 14185\n\t\tmu 0 3 14646 14647 14648\n\t\tf 3 14186 -14128 -14186\n\t\tmu 0 3 14649 14650 14651\n\t\tf 3 14187 14188 14189\n\t\tmu 0 3 14652 14653 14654\n\t\tf 3 14190 14191 -14190\n\t\tmu 0 3 14655 14656 14657\n\t\tf 3 -14188 14192 14193\n\t\tmu 0 3 14658 14659 14660\n\t\tf 3 14194 14195 -14194\n\t\tmu 0 3 14661 14662 14663\n\t\tf 3 -14195 14196 14197\n\t\tmu 0 3 14664 14665 14666\n\t\tf 3 14198 14199 -14198\n\t\tmu 0 3 14667 14668 14669\n\t\tf 3 -14199 14200 14201\n\t\tmu 0 3 14670 14671 14672\n\t\tf 3 14202 14203 -14202\n\t\tmu 0 3 14673 14674 14675\n\t\tf 3 -14203 14204 14205\n\t\tmu 0 3 14676 14677 14678\n\t\tf 3 14206 14207 -14206\n\t\tmu 0 3 14679 14680 14681\n\t\tf 3 -14207 14208 14209\n\t\tmu 0 3 14682 14683 14684\n\t\tf 3 14210 14211 -14210\n\t\tmu 0 3 14685 14686 14687\n\t\tf 3 -14211 14212 14213\n\t\tmu 0 3 14688 14689 14690\n\t\tf 3 14214 14215 -14214\n\t\tmu 0 3 14691 14692 14693\n\t\tf 3 -14191 14216 14217\n\t\tmu 0 3 14694 14695 14696\n\t\tf 3 14218 14219 -14218\n\t\tmu 0 3 14697 14698 14699\n\t\tf 3 -14219 14220 14221\n\t\tmu 0 3 14700 14701 14702\n\t\tf 3 14222 14223 -14222\n\t\tmu 0 3 14703 14704 14705\n\t\tf 3 -14223 14224 14225\n\t\tmu 0 3 14706 14707 14708\n\t\tf 3 14226 14227 -14226\n\t\tmu 0 3 14709 14710 14711\n\t\tf 3 -14227 14228 14229\n\t\tmu 0 3 14712 14713 14714\n\t\tf 3 14230 14231 -14230\n\t\tmu 0 3 14715 14716 14717\n\t\tf 3 -14231 14232 14233\n\t\tmu 0 3 14718 14719 14720\n\t\tf 3 14234 14235 -14234\n\t\tmu 0 3 14721 14722 14723\n\t\tf 3 -14235 14236 14237\n\t\tmu 0 3 14724 14725 14726\n\t\tf 3 14238 14239 -14238\n\t\tmu 0 3 14727 14728 14729\n\t\tf 3 -14239 14240 14241\n\t\tmu 0 3 14730 14731 14732\n\t\tf 3 14242 14243 -14242\n\t\tmu 0 3 14733 14734 14735\n\t\tf 3 -14243 14244 14245\n\t\tmu 0 3 14736 14737 14738\n\t\tf 3 14246 14247 -14246\n\t\tmu 0 3 14739 14740 14741\n\t\tf 3 -14247 14248 14249\n\t\tmu 0 3 14742 14743 14744\n\t\tf 3 -14215 14250 -14250\n\t\tmu 0 3 14745 14746 14747\n\t\tf 3 14251 14252 14253\n\t\tmu 0 3 14748 14749 14750\n\t\tf 3 -14253 14254 14255\n\t\tmu 0 3 14751 14752 14753\n\t\tf 3 14256 14257 -14254\n\t\tmu 0 3 14754 14755 14756\n\t\tf 3 14258 14259 14260\n\t\tmu 0 3 14757 14758 14759\n\t\tf 3 -14260 14261 14262\n\t\tmu 0 3 14760 14761 14762\n\t\tf 3 -14258 14263 -14263\n\t\tmu 0 3 14763 14764 14765\n\t\tf 3 14264 14265 -14261\n\t\tmu 0 3 14766 14767 14768\n\t\tf 3 14266 14267 -14256\n\t\tmu 0 3 14769 14770 14771\n\t\tf 3 14268 14269 14270\n\t\tmu 0 3 14772 14773 14774\n\t\tf 3 -14266 14271 -14271\n\t\tmu 0 3 14775 14776 14777\n\t\tf 3 14272 -14269 14273\n\t\tmu 0 3 14778 14779 14780\n\t\tf 3 14274 14275 -14274\n\t\tmu 0 3 14781 14782 14783\n\t\tf 3 -14276 14276 14277\n\t\tmu 0 3 14784 14785 14786\n\t\tf 3 14278 14279 -14278\n\t\tmu 0 3 14787 14788 14789\n\t\tf 3 14280 -14279 14281\n\t\tmu 0 3 14790 14791 14792\n\t\tf 3 14282 14283 -14282\n\t\tmu 0 3 14793 14794 14795\n\t\tf 3 14284 -14284 14285\n\t\tmu 0 3 14796 14797 14798\n\t\tf 3 14286 14287 -14286\n\t\tmu 0 3 14799 14800 14801\n\t\tf 3 14288 -14288 14289\n\t\tmu 0 3 14802 14803 14804\n\t\tf 3 14290 14291 -14290\n\t\tmu 0 3 14805 14806 14807\n\t\tf 3 -14292 14292 14293\n\t\tmu 0 3 14808 14809 14810\n\t\tf 3 14294 14295 -14294\n\t\tmu 0 3 14811 14812 14813\n\t\tf 3 14296 -14295 14297\n\t\tmu 0 3 14814 14815 14816\n\t\tf 3 14298 14299 -14298\n\t\tmu 0 3 14817 14818 14819\n\t\tf 3 -14300 14300 14301\n\t\tmu 0 3 14820 14821 14822\n\t\tf 3 14302 14303 -14302\n\t\tmu 0 3 14823 14824 14825\n\t\tf 3 14304 -14303 14305\n\t\tmu 0 3 14826 14827 14828\n\t\tf 3 14306 14307 -14306\n\t\tmu 0 3 14829 14830 14831\n\t\tf 3 -14308 14308 14309\n\t\tmu 0 3 14832 14833 14834\n\t\tf 3 14310 14311 -14310\n\t\tmu 0 3 14835 14836 14837\n\t\tf 3 14312 -14311 14313\n\t\tmu 0 3 14838 14839 14840\n\t\tf 3 14314 -14267 -14314\n\t\tmu 0 3 14841 14842 14843\n\t\tf 3 14315 14316 14317\n\t\tmu 0 3 14844 14845 14846\n\t\tf 3 14318 14319 -14318\n\t\tmu 0 3 14847 14848 14849\n\t\tf 3 -14320 14320 14321\n\t\tmu 0 3 14850 14851 14852\n\t\tf 3 14322 14323 -14322\n\t\tmu 0 3 14853 14854 14855\n\t\tf 3 14324 -14323 14325\n\t\tmu 0 3 14856 14857 14858\n\t\tf 3 14326 14327 -14326\n\t\tmu 0 3 14859 14860 14861\n\t\tf 3 -14328 14328 14329\n\t\tmu 0 3 14862 14863 14864\n\t\tf 3 14330 14331 -14330\n\t\tmu 0 3 14865 14866 14867\n\t\tf 3 14332 -14331 14333\n\t\tmu 0 3 14868 14869 14870\n\t\tf 3 14334 14335 -14334\n\t\tmu 0 3 14871 14872 14873\n\t\tf 3 -14336 14336 14337\n\t\tmu 0 3 14874 14875 14876\n\t\tf 3 14338 14339 -14338\n\t\tmu 0 3 14877 14878 14879\n\t\tf 3 14340 -14339 14341\n\t\tmu 0 3 14880 14881 14882\n\t\tf 3 14342 14343 -14342\n\t\tmu 0 3 14883 14884 14885\n\t\tf 3 -14344 14344 14345\n\t\tmu 0 3 14886 14887 14888\n\t\tf 3 14346 14347 -14346\n\t\tmu 0 3 14889 14890 14891\n\t\tf 3 14348 -14347 14349\n\t\tmu 0 3 14892 14893 14894\n\t\tf 3 14350 14351 -14350\n\t\tmu 0 3 14895 14896 14897\n\t\tf 3 -14352 14352 14353\n\t\tmu 0 3 14898 14899 14900\n\t\tf 3 14354 14355 -14354\n\t\tmu 0 3 14901 14902 14903\n\t\tf 3 14356 -14355 14357\n\t\tmu 0 3 14904 14905 14906\n\t\tf 3 14358 14359 -14358\n\t\tmu 0 3 14907 14908 14909\n\t\tf 3 -14360 14360 14361\n\t\tmu 0 3 14910 14911 14912\n\t\tf 3 14362 14363 -14362\n\t\tmu 0 3 14913 14914 14915\n\t\tf 3 14364 -14363 14365\n\t\tmu 0 3 14916 14917 14918\n\t\tf 3 14366 14367 -14366\n\t\tmu 0 3 14919 14920 14921;\n\tsetAttr \".fc[7500:7999]\"\n\t\tf 3 -14368 14368 14369\n\t\tmu 0 3 14922 14923 14924\n\t\tf 3 14370 14371 -14370\n\t\tmu 0 3 14925 14926 14927\n\t\tf 3 14372 -14371 14373\n\t\tmu 0 3 14928 14929 14930\n\t\tf 3 14374 14375 -14374\n\t\tmu 0 3 14931 14932 14933\n\t\tf 3 14376 -14376 14377\n\t\tmu 0 3 14934 14935 14936\n\t\tf 3 14378 -14317 -14378\n\t\tmu 0 3 14937 14938 14939\n\t\tf 3 14379 14380 14381\n\t\tmu 0 3 14940 14941 14942\n\t\tf 3 14382 14383 -14382\n\t\tmu 0 3 14943 14944 14945\n\t\tf 3 -14380 14384 14385\n\t\tmu 0 3 14946 14947 14948\n\t\tf 3 14386 14387 -14386\n\t\tmu 0 3 14949 14950 14951\n\t\tf 3 -14387 14388 14389\n\t\tmu 0 3 14952 14953 14954\n\t\tf 3 14390 14391 -14390\n\t\tmu 0 3 14955 14956 14957\n\t\tf 3 -14391 14392 14393\n\t\tmu 0 3 14958 14959 14960\n\t\tf 3 14394 14395 -14394\n\t\tmu 0 3 14961 14962 14963\n\t\tf 3 -14395 14396 14397\n\t\tmu 0 3 14964 14965 14966\n\t\tf 3 14398 14399 -14398\n\t\tmu 0 3 14967 14968 14969\n\t\tf 3 -14399 14400 14401\n\t\tmu 0 3 14970 14971 14972\n\t\tf 3 14402 14403 -14402\n\t\tmu 0 3 14973 14974 14975\n\t\tf 3 -14403 14404 14405\n\t\tmu 0 3 14976 14977 14978\n\t\tf 3 14406 14407 -14406\n\t\tmu 0 3 14979 14980 14981\n\t\tf 3 -14407 14408 14409\n\t\tmu 0 3 14982 14983 14984\n\t\tf 3 14410 14411 -14410\n\t\tmu 0 3 14985 14986 14987\n\t\tf 3 -14411 14412 14413\n\t\tmu 0 3 14988 14989 14990\n\t\tf 3 14414 14415 -14414\n\t\tmu 0 3 14991 14992 14993\n\t\tf 3 -14415 14416 14417\n\t\tmu 0 3 14994 14995 14996\n\t\tf 3 14418 14419 -14418\n\t\tmu 0 3 14997 14998 14999\n\t\tf 3 -14419 14420 14421\n\t\tmu 0 3 15000 15001 15002\n\t\tf 3 14422 14423 -14422\n\t\tmu 0 3 15003 15004 15005\n\t\tf 3 -14423 14424 14425\n\t\tmu 0 3 15006 15007 15008\n\t\tf 3 14426 14427 -14426\n\t\tmu 0 3 15009 15010 15011\n\t\tf 3 -14427 14428 14429\n\t\tmu 0 3 15012 15013 15014\n\t\tf 3 14430 14431 -14430\n\t\tmu 0 3 15015 15016 15017\n\t\tf 3 -14431 14432 14433\n\t\tmu 0 3 15018 15019 15020\n\t\tf 3 14434 14435 -14434\n\t\tmu 0 3 15021 15022 15023\n\t\tf 3 -14435 14436 14437\n\t\tmu 0 3 15024 15025 15026\n\t\tf 3 14438 14439 -14438\n\t\tmu 0 3 15027 15028 15029\n\t\tf 3 -14439 14440 14441\n\t\tmu 0 3 15030 15031 15032\n\t\tf 3 -14383 14442 -14442\n\t\tmu 0 3 15033 15034 15035\n\t\tf 3 14443 14444 14445\n\t\tmu 0 3 15036 15037 15038\n\t\tf 3 14446 14447 -14446\n\t\tmu 0 3 15039 15040 15041\n\t\tf 3 -14448 14448 14449\n\t\tmu 0 3 15042 15043 15044\n\t\tf 3 14450 14451 -14450\n\t\tmu 0 3 15045 15046 15047\n\t\tf 3 14452 -14451 14453\n\t\tmu 0 3 15048 15049 15050\n\t\tf 3 14454 14455 -14454\n\t\tmu 0 3 15051 15052 15053\n\t\tf 3 -14456 14456 14457\n\t\tmu 0 3 15054 15055 15056\n\t\tf 3 14458 14459 -14458\n\t\tmu 0 3 15057 15058 15059\n\t\tf 3 14460 -14459 14461\n\t\tmu 0 3 15060 15061 15062\n\t\tf 3 14462 14463 -14462\n\t\tmu 0 3 15063 15064 15065\n\t\tf 3 -14464 14464 14465\n\t\tmu 0 3 15066 15067 15068\n\t\tf 3 14466 14467 -14466\n\t\tmu 0 3 15069 15070 15071\n\t\tf 3 14468 -14467 14469\n\t\tmu 0 3 15072 15073 15074\n\t\tf 3 14470 14471 -14470\n\t\tmu 0 3 15075 15076 15077\n\t\tf 3 -14472 14472 14473\n\t\tmu 0 3 15078 15079 15080\n\t\tf 3 14474 14475 -14474\n\t\tmu 0 3 15081 15082 15083\n\t\tf 3 14476 -14475 14477\n\t\tmu 0 3 15084 15085 15086\n\t\tf 3 14478 14479 -14478\n\t\tmu 0 3 15087 15088 15089\n\t\tf 3 -14480 14480 14481\n\t\tmu 0 3 15090 15091 15092\n\t\tf 3 14482 14483 -14482\n\t\tmu 0 3 15093 15094 15095\n\t\tf 3 14484 -14483 14485\n\t\tmu 0 3 15096 15097 15098\n\t\tf 3 14486 14487 -14486\n\t\tmu 0 3 15099 15100 15101\n\t\tf 3 -14488 14488 14489\n\t\tmu 0 3 15102 15103 15104\n\t\tf 3 14490 14491 -14490\n\t\tmu 0 3 15105 15106 15107\n\t\tf 3 14492 -14491 14493\n\t\tmu 0 3 15108 15109 15110\n\t\tf 3 14494 14495 -14494\n\t\tmu 0 3 15111 15112 15113\n\t\tf 3 -14496 14496 14497\n\t\tmu 0 3 15114 15115 15116\n\t\tf 3 14498 14499 -14498\n\t\tmu 0 3 15117 15118 15119\n\t\tf 3 14500 -14499 14501\n\t\tmu 0 3 15120 15121 15122\n\t\tf 3 14502 14503 -14502\n\t\tmu 0 3 15123 15124 15125\n\t\tf 3 14504 -14504 14505\n\t\tmu 0 3 15126 15127 15128\n\t\tf 3 14506 -14445 -14506\n\t\tmu 0 3 15129 15130 15131\n\t\tf 3 14507 14508 14509\n\t\tmu 0 3 15132 15133 15134\n\t\tf 3 14510 14511 -14510\n\t\tmu 0 3 15135 15136 15137\n\t\tf 3 -14512 14512 14513\n\t\tmu 0 3 15138 15139 15140\n\t\tf 3 14514 14515 -14514\n\t\tmu 0 3 15141 15142 15143\n\t\tf 3 14516 -14515 14517\n\t\tmu 0 3 15144 15145 15146\n\t\tf 3 14518 14519 -14518\n\t\tmu 0 3 15147 15148 15149\n\t\tf 3 -14520 14520 14521\n\t\tmu 0 3 15150 15151 15152\n\t\tf 3 14522 14523 -14522\n\t\tmu 0 3 15153 15154 15155\n\t\tf 3 14524 -14523 14525\n\t\tmu 0 3 15156 15157 15158\n\t\tf 3 14526 14527 -14526\n\t\tmu 0 3 15159 15160 15161\n\t\tf 3 -14528 14528 14529\n\t\tmu 0 3 15162 15163 15164\n\t\tf 3 14530 14531 -14530\n\t\tmu 0 3 15165 15166 15167\n\t\tf 3 14532 -14531 14533\n\t\tmu 0 3 15168 15169 15170\n\t\tf 3 14534 14535 -14534\n\t\tmu 0 3 15171 15172 15173\n\t\tf 3 -14536 14536 14537\n\t\tmu 0 3 15174 15175 15176\n\t\tf 3 14538 14539 -14538\n\t\tmu 0 3 15177 15178 15179\n\t\tf 3 14540 -14539 14541\n\t\tmu 0 3 15180 15181 15182\n\t\tf 3 14542 14543 -14542\n\t\tmu 0 3 15183 15184 15185\n\t\tf 3 -14544 14544 14545\n\t\tmu 0 3 15186 15187 15188\n\t\tf 3 14546 14547 -14546\n\t\tmu 0 3 15189 15190 15191\n\t\tf 3 14548 -14547 14549\n\t\tmu 0 3 15192 15193 15194\n\t\tf 3 14550 14551 -14550\n\t\tmu 0 3 15195 15196 15197\n\t\tf 3 -14552 14552 14553\n\t\tmu 0 3 15198 15199 15200\n\t\tf 3 14554 14555 -14554\n\t\tmu 0 3 15201 15202 15203\n\t\tf 3 14556 -14555 14557\n\t\tmu 0 3 15204 15205 15206\n\t\tf 3 14558 14559 -14558\n\t\tmu 0 3 15207 15208 15209\n\t\tf 3 -14560 14560 14561\n\t\tmu 0 3 15210 15211 15212\n\t\tf 3 14562 14563 -14562\n\t\tmu 0 3 15213 15214 15215\n\t\tf 3 14564 -14563 14565\n\t\tmu 0 3 15216 15217 15218\n\t\tf 3 14566 14567 -14566\n\t\tmu 0 3 15219 15220 15221\n\t\tf 3 14568 -14568 14569\n\t\tmu 0 3 15222 15223 15224\n\t\tf 3 14570 -14509 -14570\n\t\tmu 0 3 15225 15226 15227\n\t\tf 3 14571 14572 14573\n\t\tmu 0 3 15228 15229 15230\n\t\tf 3 14574 14575 -14574\n\t\tmu 0 3 15231 15232 15233\n\t\tf 3 -14576 14576 14577\n\t\tmu 0 3 15234 15235 15236\n\t\tf 3 14578 14579 -14578\n\t\tmu 0 3 15237 15238 15239\n\t\tf 3 14580 -14579 14581\n\t\tmu 0 3 15240 15241 15242\n\t\tf 3 14582 14583 -14582\n\t\tmu 0 3 15243 15244 15245\n\t\tf 3 -14584 14584 14585\n\t\tmu 0 3 15246 15247 15248\n\t\tf 3 14586 14587 -14586\n\t\tmu 0 3 15249 15250 15251\n\t\tf 3 14588 -14587 14589\n\t\tmu 0 3 15252 15253 15254\n\t\tf 3 14590 14591 -14590\n\t\tmu 0 3 15255 15256 15257\n\t\tf 3 -14592 14592 14593\n\t\tmu 0 3 15258 15259 15260\n\t\tf 3 14594 14595 -14594\n\t\tmu 0 3 15261 15262 15263\n\t\tf 3 14596 -14595 14597\n\t\tmu 0 3 15264 15265 15266\n\t\tf 3 14598 14599 -14598\n\t\tmu 0 3 15267 15268 15269\n\t\tf 3 -14600 14600 14601\n\t\tmu 0 3 15270 15271 15272\n\t\tf 3 14602 14603 -14602\n\t\tmu 0 3 15273 15274 15275\n\t\tf 3 14604 -14603 14605\n\t\tmu 0 3 15276 15277 15278\n\t\tf 3 14606 14607 -14606\n\t\tmu 0 3 15279 15280 15281\n\t\tf 3 -14608 14608 14609\n\t\tmu 0 3 15282 15283 15284\n\t\tf 3 14610 14611 -14610\n\t\tmu 0 3 15285 15286 15287\n\t\tf 3 14612 -14611 14613\n\t\tmu 0 3 15288 15289 15290\n\t\tf 3 14614 14615 -14614\n\t\tmu 0 3 15291 15292 15293\n\t\tf 3 -14616 14616 14617\n\t\tmu 0 3 15294 15295 15296\n\t\tf 3 14618 14619 -14618\n\t\tmu 0 3 15297 15298 15299\n\t\tf 3 14620 -14619 14621\n\t\tmu 0 3 15300 15301 15302\n\t\tf 3 14622 14623 -14622\n\t\tmu 0 3 15303 15304 15305\n\t\tf 3 -14624 14624 14625\n\t\tmu 0 3 15306 15307 15308\n\t\tf 3 14626 14627 -14626\n\t\tmu 0 3 15309 15310 15311\n\t\tf 3 14628 -14627 14629\n\t\tmu 0 3 15312 15313 15314\n\t\tf 3 14630 14631 -14630\n\t\tmu 0 3 15315 15316 15317\n\t\tf 3 14632 -14632 14633\n\t\tmu 0 3 15318 15319 15320\n\t\tf 3 14634 -14573 -14634\n\t\tmu 0 3 15321 15322 15323\n\t\tf 3 14635 14636 14637\n\t\tmu 0 3 15324 15325 15326\n\t\tf 3 14638 14639 -14638\n\t\tmu 0 3 15327 15328 15329\n\t\tf 3 -14640 14640 14641\n\t\tmu 0 3 15330 15331 15332\n\t\tf 3 14642 14643 -14642\n\t\tmu 0 3 15333 15334 15335\n\t\tf 3 14644 -14643 14645\n\t\tmu 0 3 15336 15337 15338\n\t\tf 3 14646 14647 -14646\n\t\tmu 0 3 15339 15340 15341\n\t\tf 3 -14648 14648 14649\n\t\tmu 0 3 15342 15343 15344\n\t\tf 3 14650 14651 -14650\n\t\tmu 0 3 15345 15346 15347\n\t\tf 3 14652 -14651 14653\n\t\tmu 0 3 15348 15349 15350\n\t\tf 3 14654 14655 -14654\n\t\tmu 0 3 15351 15352 15353\n\t\tf 3 -14656 14656 14657\n\t\tmu 0 3 15354 15355 15356\n\t\tf 3 14658 14659 -14658\n\t\tmu 0 3 15357 15358 15359\n\t\tf 3 14660 -14659 14661\n\t\tmu 0 3 15360 15361 15362\n\t\tf 3 14662 14663 -14662\n\t\tmu 0 3 15363 15364 15365\n\t\tf 3 -14664 14664 14665\n\t\tmu 0 3 15366 15367 15368\n\t\tf 3 14666 14667 -14666\n\t\tmu 0 3 15369 15370 15371\n\t\tf 3 14668 -14667 14669\n\t\tmu 0 3 15372 15373 15374\n\t\tf 3 14670 14671 -14670\n\t\tmu 0 3 15375 15376 15377\n\t\tf 3 14672 14673 14674\n\t\tmu 0 3 15378 15379 15380\n\t\tf 3 -14672 14675 -14675\n\t\tmu 0 3 15381 15382 15383\n\t\tf 3 14676 -14673 14677\n\t\tmu 0 3 15384 15385 15386\n\t\tf 3 14678 14679 -14678\n\t\tmu 0 3 15387 15388 15389\n\t\tf 3 -14680 14680 14681\n\t\tmu 0 3 15390 15391 15392\n\t\tf 3 14682 14683 -14682\n\t\tmu 0 3 15393 15394 15395\n\t\tf 3 14684 -14683 14685\n\t\tmu 0 3 15396 15397 15398\n\t\tf 3 14686 14687 -14686\n\t\tmu 0 3 15399 15400 15401\n\t\tf 3 -14688 14688 14689\n\t\tmu 0 3 15402 15403 15404\n\t\tf 3 14690 14691 -14690\n\t\tmu 0 3 15405 15406 15407\n\t\tf 3 14692 -14691 14693\n\t\tmu 0 3 15408 15409 15410\n\t\tf 3 14694 14695 -14694\n\t\tmu 0 3 15411 15412 15413\n\t\tf 3 14696 -14696 14697\n\t\tmu 0 3 15414 15415 15416\n\t\tf 3 14698 -14637 -14698\n\t\tmu 0 3 15417 15418 15419\n\t\tf 3 14699 14700 14701\n\t\tmu 0 3 15420 15421 15422\n\t\tf 3 14702 14703 -14702\n\t\tmu 0 3 15423 15424 15425\n\t\tf 3 -14703 14704 14705\n\t\tmu 0 3 15426 15427 15428\n\t\tf 3 14706 14707 -14706\n\t\tmu 0 3 15429 15430 15431\n\t\tf 3 -14707 14708 14709\n\t\tmu 0 3 15432 15433 15434\n\t\tf 3 14710 14711 -14710\n\t\tmu 0 3 15435 15436 15437\n\t\tf 3 -14711 14712 14713\n\t\tmu 0 3 15438 15439 15440\n\t\tf 3 14714 14715 -14714\n\t\tmu 0 3 15441 15442 15443\n\t\tf 3 -14715 14716 14717\n\t\tmu 0 3 15444 15445 15446\n\t\tf 3 14718 14719 -14718\n\t\tmu 0 3 15447 15448 15449\n\t\tf 3 -14719 14720 14721\n\t\tmu 0 3 15450 15451 15452\n\t\tf 3 14722 14723 -14722\n\t\tmu 0 3 15453 15454 15455\n\t\tf 3 -14723 14724 14725\n\t\tmu 0 3 15456 15457 15458\n\t\tf 3 14726 14727 -14726\n\t\tmu 0 3 15459 15460 15461\n\t\tf 3 -14727 14728 14729\n\t\tmu 0 3 15462 15463 15464\n\t\tf 3 14730 14731 -14730\n\t\tmu 0 3 15465 15466 15467\n\t\tf 3 -14731 14732 14733\n\t\tmu 0 3 15468 15469 15470\n\t\tf 3 14734 14735 -14734\n\t\tmu 0 3 15471 15472 15473\n\t\tf 3 -14735 14736 14737\n\t\tmu 0 3 15474 15475 15476\n\t\tf 3 14738 14739 -14738\n\t\tmu 0 3 15477 15478 15479\n\t\tf 3 -14739 14740 14741\n\t\tmu 0 3 15480 15481 15482\n\t\tf 3 14742 14743 -14742\n\t\tmu 0 3 15483 15484 15485\n\t\tf 3 -14743 14744 14745\n\t\tmu 0 3 15486 15487 15488\n\t\tf 3 14746 14747 -14746\n\t\tmu 0 3 15489 15490 15491\n\t\tf 3 -14747 14748 14749\n\t\tmu 0 3 15492 15493 15494\n\t\tf 3 14750 14751 -14750\n\t\tmu 0 3 15495 15496 15497\n\t\tf 3 -14751 14752 14753\n\t\tmu 0 3 15498 15499 15500\n\t\tf 3 14754 14755 -14754\n\t\tmu 0 3 15501 15502 15503\n\t\tf 3 -14755 14756 14757\n\t\tmu 0 3 15504 15505 15506\n\t\tf 3 14758 14759 -14758\n\t\tmu 0 3 15507 15508 15509\n\t\tf 3 -14759 14760 14761\n\t\tmu 0 3 15510 15511 15512\n\t\tf 3 -14700 14762 -14762\n\t\tmu 0 3 15513 15514 15515\n\t\tf 3 14763 14764 14765\n\t\tmu 0 3 15516 15517 15518\n\t\tf 3 14766 14767 -14766\n\t\tmu 0 3 15519 15520 15521\n\t\tf 3 -14767 14768 14769\n\t\tmu 0 3 15522 15523 15524\n\t\tf 3 14770 14771 -14770\n\t\tmu 0 3 15525 15526 15527\n\t\tf 3 -14771 14772 14773\n\t\tmu 0 3 15528 15529 15530\n\t\tf 3 14774 14775 -14774\n\t\tmu 0 3 15531 15532 15533\n\t\tf 3 -14775 14776 14777\n\t\tmu 0 3 15534 15535 15536\n\t\tf 3 14778 14779 -14778\n\t\tmu 0 3 15537 15538 15539\n\t\tf 3 -14779 14780 14781\n\t\tmu 0 3 15540 15541 15542\n\t\tf 3 14782 14783 -14782\n\t\tmu 0 3 15543 15544 15545\n\t\tf 3 -14783 14784 14785\n\t\tmu 0 3 15546 15547 15548\n\t\tf 3 14786 14787 -14786\n\t\tmu 0 3 15549 15550 15551\n\t\tf 3 -14787 14788 14789\n\t\tmu 0 3 15552 15553 15554\n\t\tf 3 14790 14791 -14790\n\t\tmu 0 3 15555 15556 15557\n\t\tf 3 -14791 14792 14793\n\t\tmu 0 3 15558 15559 15560\n\t\tf 3 14794 14795 -14794\n\t\tmu 0 3 15561 15562 15563\n\t\tf 3 -14795 14796 14797\n\t\tmu 0 3 15564 15565 15566\n\t\tf 3 14798 14799 -14798\n\t\tmu 0 3 15567 15568 15569\n\t\tf 3 -14799 14800 14801\n\t\tmu 0 3 15570 15571 15572\n\t\tf 3 14802 14803 -14802\n\t\tmu 0 3 15573 15574 15575\n\t\tf 3 -14803 14804 14805\n\t\tmu 0 3 15576 15577 15578\n\t\tf 3 14806 14807 -14806\n\t\tmu 0 3 15579 15580 15581\n\t\tf 3 -14807 14808 14809\n\t\tmu 0 3 15582 15583 15584\n\t\tf 3 14810 14811 -14810\n\t\tmu 0 3 15585 15586 15587\n\t\tf 3 -14811 14812 14813\n\t\tmu 0 3 15588 15589 15590\n\t\tf 3 14814 14815 -14814\n\t\tmu 0 3 15591 15592 15593\n\t\tf 3 -14815 14816 14817\n\t\tmu 0 3 15594 15595 15596\n\t\tf 3 14818 14819 -14818\n\t\tmu 0 3 15597 15598 15599\n\t\tf 3 -14819 14820 14821\n\t\tmu 0 3 15600 15601 15602\n\t\tf 3 14822 14823 -14822\n\t\tmu 0 3 15603 15604 15605\n\t\tf 3 -14823 14824 14825\n\t\tmu 0 3 15606 15607 15608\n\t\tf 3 -14764 14826 -14826\n\t\tmu 0 3 15609 15610 15611\n\t\tf 3 14827 14828 14829\n\t\tmu 0 3 15612 15613 15614\n\t\tf 3 14830 14831 -14830\n\t\tmu 0 3 15615 15616 15617\n\t\tf 3 -14831 14832 14833\n\t\tmu 0 3 15618 15619 15620\n\t\tf 3 14834 14835 -14834\n\t\tmu 0 3 15621 15622 15623\n\t\tf 3 -14835 14836 14837\n\t\tmu 0 3 15624 15625 15626\n\t\tf 3 14838 14839 -14838\n\t\tmu 0 3 15627 15628 15629\n\t\tf 3 -14839 14840 14841\n\t\tmu 0 3 15630 15631 15632\n\t\tf 3 14842 14843 -14842\n\t\tmu 0 3 15633 15634 15635\n\t\tf 3 -14843 14844 14845\n\t\tmu 0 3 15636 15637 15638\n\t\tf 3 14846 14847 -14846\n\t\tmu 0 3 15639 15640 15641\n\t\tf 3 -14847 14848 14849\n\t\tmu 0 3 15642 15643 15644\n\t\tf 3 14850 14851 -14850\n\t\tmu 0 3 15645 15646 15647\n\t\tf 3 -14851 14852 14853\n\t\tmu 0 3 15648 15649 15650\n\t\tf 3 14854 14855 -14854\n\t\tmu 0 3 15651 15652 15653\n\t\tf 3 -14855 14856 14857\n\t\tmu 0 3 15654 15655 15656\n\t\tf 3 14858 14859 -14858\n\t\tmu 0 3 15657 15658 15659\n\t\tf 3 -14859 14860 14861\n\t\tmu 0 3 15660 15661 15662\n\t\tf 3 14862 14863 -14862\n\t\tmu 0 3 15663 15664 15665\n\t\tf 3 -14863 14864 14865\n\t\tmu 0 3 15666 15667 15668\n\t\tf 3 14866 14867 -14866\n\t\tmu 0 3 15669 15670 15671\n\t\tf 3 -14867 14868 14869\n\t\tmu 0 3 15672 15673 15674\n\t\tf 3 14870 14871 -14870\n\t\tmu 0 3 15675 15676 15677\n\t\tf 3 -14871 14872 14873\n\t\tmu 0 3 15678 15679 15680\n\t\tf 3 14874 14875 -14874\n\t\tmu 0 3 15681 15682 15683\n\t\tf 3 -14875 14876 14877\n\t\tmu 0 3 15684 15685 15686\n\t\tf 3 14878 14879 -14878\n\t\tmu 0 3 15687 15688 15689\n\t\tf 3 -14879 14880 14881\n\t\tmu 0 3 15690 15691 15692\n\t\tf 3 14882 14883 -14882\n\t\tmu 0 3 15693 15694 15695\n\t\tf 3 -14883 14884 14885\n\t\tmu 0 3 15696 15697 15698\n\t\tf 3 14886 14887 -14886\n\t\tmu 0 3 15699 15700 15701\n\t\tf 3 -14887 14888 14889\n\t\tmu 0 3 15702 15703 15704\n\t\tf 3 -14828 14890 -14890\n\t\tmu 0 3 15705 15706 15707\n\t\tf 3 14891 14892 14893\n\t\tmu 0 3 15708 15709 15710\n\t\tf 3 14894 14895 -14894\n\t\tmu 0 3 15711 15712 15713\n\t\tf 3 -14895 14896 14897\n\t\tmu 0 3 15714 15715 15716\n\t\tf 3 14898 14899 -14898\n\t\tmu 0 3 15717 15718 15719\n\t\tf 3 -14899 14900 14901\n\t\tmu 0 3 15720 15721 15722\n\t\tf 3 14902 14903 -14902\n\t\tmu 0 3 15723 15724 15725\n\t\tf 3 -14903 14904 14905\n\t\tmu 0 3 15726 15727 15728\n\t\tf 3 14906 14907 -14906\n\t\tmu 0 3 15729 15730 15731\n\t\tf 3 -14907 14908 14909\n\t\tmu 0 3 15732 15733 15734\n\t\tf 3 14910 14911 -14910\n\t\tmu 0 3 15735 15736 15737\n\t\tf 3 -14911 14912 14913\n\t\tmu 0 3 15738 15739 15740\n\t\tf 3 14914 14915 -14914\n\t\tmu 0 3 15741 15742 15743\n\t\tf 3 -14915 14916 14917\n\t\tmu 0 3 15744 15745 15746\n\t\tf 3 14918 14919 -14918\n\t\tmu 0 3 15747 15748 15749\n\t\tf 3 -14919 14920 14921\n\t\tmu 0 3 15750 15751 15752\n\t\tf 3 14922 14923 -14922\n\t\tmu 0 3 15753 15754 15755\n\t\tf 3 -14923 14924 14925\n\t\tmu 0 3 15756 15757 15758\n\t\tf 3 14926 14927 -14926\n\t\tmu 0 3 15759 15760 15761\n\t\tf 3 -14927 14928 14929\n\t\tmu 0 3 15762 15763 15764\n\t\tf 3 14930 14931 -14930\n\t\tmu 0 3 15765 15766 15767\n\t\tf 3 -14931 14932 14933\n\t\tmu 0 3 15768 15769 15770\n\t\tf 3 14934 14935 -14934\n\t\tmu 0 3 15771 15772 15773\n\t\tf 3 -14935 14936 14937\n\t\tmu 0 3 15774 15775 15776\n\t\tf 3 14938 14939 -14938\n\t\tmu 0 3 15777 15778 15779\n\t\tf 3 -14939 14940 14941\n\t\tmu 0 3 15780 15781 15782\n\t\tf 3 14942 14943 -14942\n\t\tmu 0 3 15783 15784 15785\n\t\tf 3 -14943 14944 14945\n\t\tmu 0 3 15786 15787 15788\n\t\tf 3 14946 14947 -14946\n\t\tmu 0 3 15789 15790 15791\n\t\tf 3 -14947 14948 14949\n\t\tmu 0 3 15792 15793 15794\n\t\tf 3 14950 14951 -14950\n\t\tmu 0 3 15795 15796 15797\n\t\tf 3 -14951 14952 14953\n\t\tmu 0 3 15798 15799 15800\n\t\tf 3 -14892 14954 -14954\n\t\tmu 0 3 15801 15802 15803\n\t\tf 3 14955 14956 14957\n\t\tmu 0 3 15804 15805 15806\n\t\tf 3 14958 14959 -14958\n\t\tmu 0 3 15807 15808 15809\n\t\tf 3 -14960 14960 14961\n\t\tmu 0 3 15810 15811 15812\n\t\tf 3 14962 14963 -14962\n\t\tmu 0 3 15813 15814 15815\n\t\tf 3 14964 -14963 14965\n\t\tmu 0 3 15816 15817 15818\n\t\tf 3 14966 14967 -14966\n\t\tmu 0 3 15819 15820 15821\n\t\tf 3 -14968 14968 14969\n\t\tmu 0 3 15822 15823 15824\n\t\tf 3 14970 14971 -14970\n\t\tmu 0 3 15825 15826 15827\n\t\tf 3 14972 -14971 14973\n\t\tmu 0 3 15828 15829 15830\n\t\tf 3 14974 14975 -14974\n\t\tmu 0 3 15831 15832 15833\n\t\tf 3 -14976 14976 14977\n\t\tmu 0 3 15834 15835 15836\n\t\tf 3 14978 14979 -14978\n\t\tmu 0 3 15837 15838 15839\n\t\tf 3 14980 -14979 14981\n\t\tmu 0 3 15840 15841 15842\n\t\tf 3 14982 14983 -14982\n\t\tmu 0 3 15843 15844 15845\n\t\tf 3 -14984 14984 14985\n\t\tmu 0 3 15846 15847 15848\n\t\tf 3 14986 14987 -14986\n\t\tmu 0 3 15849 15850 15851\n\t\tf 3 14988 -14987 14989\n\t\tmu 0 3 15852 15853 15854\n\t\tf 3 14990 14991 -14990\n\t\tmu 0 3 15855 15856 15857\n\t\tf 3 14992 14993 14994\n\t\tmu 0 3 15858 15859 15860\n\t\tf 3 -14992 14995 -14995\n\t\tmu 0 3 15861 15862 15863\n\t\tf 3 14996 -14993 14997\n\t\tmu 0 3 15864 15865 15866\n\t\tf 3 14998 14999 -14998\n\t\tmu 0 3 15867 15868 15869\n\t\tf 3 -15000 15000 15001\n\t\tmu 0 3 15870 15871 15872\n\t\tf 3 15002 15003 -15002\n\t\tmu 0 3 15873 15874 15875\n\t\tf 3 15004 -15003 15005\n\t\tmu 0 3 15876 15877 15878\n\t\tf 3 15006 15007 -15006\n\t\tmu 0 3 15879 15880 15881\n\t\tf 3 -15008 15008 15009\n\t\tmu 0 3 15882 15883 15884\n\t\tf 3 15010 15011 -15010\n\t\tmu 0 3 15885 15886 15887\n\t\tf 3 15012 -15011 15013\n\t\tmu 0 3 15888 15889 15890\n\t\tf 3 15014 15015 -15014\n\t\tmu 0 3 15891 15892 15893\n\t\tf 3 15016 -15016 15017\n\t\tmu 0 3 15894 15895 15896\n\t\tf 3 15018 -14957 -15018\n\t\tmu 0 3 15897 15898 15899\n\t\tf 3 15019 15020 15021\n\t\tmu 0 3 15900 15901 15902\n\t\tf 3 15022 15023 -15022\n\t\tmu 0 3 15903 15904 15905\n\t\tf 3 -15021 15024 15025\n\t\tmu 0 3 15906 15907 15908\n\t\tf 3 15026 15027 -15026\n\t\tmu 0 3 15909 15910 15911\n\t\tf 3 15028 -15027 15029\n\t\tmu 0 3 15912 15913 15914\n\t\tf 3 15030 15031 -15030\n\t\tmu 0 3 15915 15916 15917\n\t\tf 3 -15032 15032 15033\n\t\tmu 0 3 15918 15919 15920\n\t\tf 3 15034 15035 -15034\n\t\tmu 0 3 15921 15922 15923\n\t\tf 3 15036 -15035 15037\n\t\tmu 0 3 15924 15925 15926\n\t\tf 3 15038 15039 -15038\n\t\tmu 0 3 15927 15928 15929\n\t\tf 3 -15040 15040 15041\n\t\tmu 0 3 15930 15931 15932\n\t\tf 3 15042 15043 -15042\n\t\tmu 0 3 15933 15934 15935\n\t\tf 3 15044 -15043 15045\n\t\tmu 0 3 15936 15937 15938\n\t\tf 3 15046 15047 -15046\n\t\tmu 0 3 15939 15940 15941\n\t\tf 3 -15048 15048 15049\n\t\tmu 0 3 15942 15943 15944\n\t\tf 3 15050 15051 -15050\n\t\tmu 0 3 15945 15946 15947\n\t\tf 3 15052 -15051 15053\n\t\tmu 0 3 15948 15949 15950\n\t\tf 3 15054 15055 -15054\n\t\tmu 0 3 15951 15952 15953\n\t\tf 3 -15056 15056 15057\n\t\tmu 0 3 15954 15955 15956\n\t\tf 3 15058 15059 -15058\n\t\tmu 0 3 15957 15958 15959\n\t\tf 3 15060 -15059 15061\n\t\tmu 0 3 15960 15961 15962\n\t\tf 3 15062 15063 -15062\n\t\tmu 0 3 15963 15964 15965\n\t\tf 3 -15064 15064 15065\n\t\tmu 0 3 15966 15967 15968\n\t\tf 3 15066 15067 -15066\n\t\tmu 0 3 15969 15970 15971\n\t\tf 3 15068 -15067 15069\n\t\tmu 0 3 15972 15973 15974\n\t\tf 3 15070 15071 -15070\n\t\tmu 0 3 15975 15976 15977\n\t\tf 3 -15072 15072 15073\n\t\tmu 0 3 15978 15979 15980\n\t\tf 3 15074 15075 -15074\n\t\tmu 0 3 15981 15982 15983\n\t\tf 3 15076 -15075 15077\n\t\tmu 0 3 15984 15985 15986\n\t\tf 3 15078 15079 -15078\n\t\tmu 0 3 15987 15988 15989\n\t\tf 3 -15080 15080 15081\n\t\tmu 0 3 15990 15991 15992\n\t\tf 3 -15024 15082 -15082\n\t\tmu 0 3 15993 15994 15995\n\t\tf 3 15083 15084 15085\n\t\tmu 0 3 15996 15997 15998\n\t\tf 3 15086 15087 -15086\n\t\tmu 0 3 15999 16000 16001\n\t\tf 3 -15087 15088 15089\n\t\tmu 0 3 16002 16003 16004\n\t\tf 3 15090 15091 -15090\n\t\tmu 0 3 16005 16006 16007\n\t\tf 3 -15091 15092 15093\n\t\tmu 0 3 16008 16009 16010\n\t\tf 3 15094 15095 -15094\n\t\tmu 0 3 16011 16012 16013\n\t\tf 3 -15095 15096 15097\n\t\tmu 0 3 16014 16015 16016\n\t\tf 3 15098 15099 -15098\n\t\tmu 0 3 16017 16018 16019\n\t\tf 3 -15099 15100 15101\n\t\tmu 0 3 16020 16021 16022\n\t\tf 3 15102 15103 -15102\n\t\tmu 0 3 16023 16024 16025\n\t\tf 3 -15103 15104 15105\n\t\tmu 0 3 16026 16027 16028\n\t\tf 3 15106 15107 -15106\n\t\tmu 0 3 16029 16030 16031\n\t\tf 3 -15107 15108 15109\n\t\tmu 0 3 16032 16033 16034\n\t\tf 3 15110 15111 -15110\n\t\tmu 0 3 16035 16036 16037\n\t\tf 3 -15111 15112 15113\n\t\tmu 0 3 16038 16039 16040\n\t\tf 3 15114 15115 -15114\n\t\tmu 0 3 16041 16042 16043\n\t\tf 3 -15115 15116 15117\n\t\tmu 0 3 16044 16045 16046\n\t\tf 3 15118 15119 -15118\n\t\tmu 0 3 16047 16048 16049\n\t\tf 3 -15119 15120 15121\n\t\tmu 0 3 16050 16051 16052\n\t\tf 3 15122 15123 -15122\n\t\tmu 0 3 16053 16054 16055\n\t\tf 3 -15123 15124 15125\n\t\tmu 0 3 16056 16057 16058\n\t\tf 3 15126 15127 -15126\n\t\tmu 0 3 16059 16060 16061\n\t\tf 3 -15127 15128 15129\n\t\tmu 0 3 16062 16063 16064\n\t\tf 3 15130 15131 -15130\n\t\tmu 0 3 16065 16066 16067\n\t\tf 3 -15131 15132 15133\n\t\tmu 0 3 16068 16069 16070\n\t\tf 3 15134 15135 -15134\n\t\tmu 0 3 16071 16072 16073\n\t\tf 3 -15135 15136 15137\n\t\tmu 0 3 16074 16075 16076\n\t\tf 3 15138 15139 -15138\n\t\tmu 0 3 16077 16078 16079\n\t\tf 3 -15139 15140 15141\n\t\tmu 0 3 16080 16081 16082\n\t\tf 3 15142 15143 -15142\n\t\tmu 0 3 16083 16084 16085\n\t\tf 3 -15143 15144 15145\n\t\tmu 0 3 16086 16087 16088\n\t\tf 3 -15084 15146 -15146\n\t\tmu 0 3 16089 16090 16091\n\t\tf 3 15147 15148 15149\n\t\tmu 0 3 16092 16093 16094\n\t\tf 3 15150 15151 -15150\n\t\tmu 0 3 16095 16096 16097\n\t\tf 3 15152 -15149 15153\n\t\tmu 0 3 16098 16099 16100\n\t\tf 3 15154 15155 -15154\n\t\tmu 0 3 16101 16102 16103\n\t\tf 3 15156 -15156 15157\n\t\tmu 0 3 16104 16105 16106\n\t\tf 3 15158 15159 -15158\n\t\tmu 0 3 16107 16108 16109\n\t\tf 3 15160 -15160 15161\n\t\tmu 0 3 16110 16111 16112\n\t\tf 3 15162 15163 -15162\n\t\tmu 0 3 16113 16114 16115\n\t\tf 3 15164 -15164 15165\n\t\tmu 0 3 16116 16117 16118\n\t\tf 3 15166 15167 -15166\n\t\tmu 0 3 16119 16120 16121\n\t\tf 3 15168 -15168 15169\n\t\tmu 0 3 16122 16123 16124\n\t\tf 3 15170 15171 -15170\n\t\tmu 0 3 16125 16126 16127\n\t\tf 3 15172 -15172 15173\n\t\tmu 0 3 16128 16129 16130\n\t\tf 3 15174 15175 -15174\n\t\tmu 0 3 16131 16132 16133\n\t\tf 3 15176 -15176 15177\n\t\tmu 0 3 16134 16135 16136\n\t\tf 3 15178 15179 -15178\n\t\tmu 0 3 16137 16138 16139\n\t\tf 3 15180 -15180 15181\n\t\tmu 0 3 16140 16141 16142\n\t\tf 3 15182 15183 -15182\n\t\tmu 0 3 16143 16144 16145\n\t\tf 3 15184 15185 15186\n\t\tmu 0 3 16146 16147 16148\n\t\tf 3 15187 -15186 15188\n\t\tmu 0 3 16149 16150 16151\n\t\tf 3 15189 15190 -15189\n\t\tmu 0 3 16152 16153 16154\n\t\tf 3 15191 15192 15193\n\t\tmu 0 3 16155 16156 16157\n\t\tf 3 15194 -15191 -15194\n\t\tmu 0 3 16158 16159 16160\n\t\tf 3 15195 -15193 15196\n\t\tmu 0 3 16161 16162 16163\n\t\tf 3 15197 15198 -15197\n\t\tmu 0 3 16164 16165 16166\n\t\tf 3 15199 15200 15201\n\t\tmu 0 3 16167 16168 16169\n\t\tf 3 15202 -15199 -15202\n\t\tmu 0 3 16170 16171 16172\n\t\tf 3 15203 -15201 15204\n\t\tmu 0 3 16173 16174 16175\n\t\tf 3 15205 15206 -15205\n\t\tmu 0 3 16176 16177 16178\n\t\tf 3 15207 15208 15209\n\t\tmu 0 3 16179 16180 16181\n\t\tf 3 15210 -15207 -15210\n\t\tmu 0 3 16182 16183 16184\n\t\tf 3 15211 15212 -15187\n\t\tmu 0 3 16185 16186 16187\n\t\tf 3 15213 -15213 15214\n\t\tmu 0 3 16188 16189 16190\n\t\tf 3 15215 15216 -15215\n\t\tmu 0 3 16191 16192 16193\n\t\tf 3 15217 -15217 15218\n\t\tmu 0 3 16194 16195 16196\n\t\tf 3 15219 15220 -15219\n\t\tmu 0 3 16197 16198 16199\n\t\tf 3 15221 -15221 15222\n\t\tmu 0 3 16200 16201 16202\n\t\tf 3 15223 15224 15225\n\t\tmu 0 3 16203 16204 16205\n\t\tf 3 15226 -15225 15227\n\t\tmu 0 3 16206 16207 16208\n\t\tf 3 15228 15229 -15228\n\t\tmu 0 3 16209 16210 16211\n\t\tf 3 15230 -15230 15231\n\t\tmu 0 3 16212 16213 16214\n\t\tf 3 15232 15233 -15232\n\t\tmu 0 3 16215 16216 16217\n\t\tf 3 15234 -15234 15235\n\t\tmu 0 3 16218 16219 16220\n\t\tf 3 15236 15237 -15236\n\t\tmu 0 3 16221 16222 16223\n\t\tf 3 15238 -15238 15239\n\t\tmu 0 3 16224 16225 16226\n\t\tf 3 15240 15241 -15240\n\t\tmu 0 3 16227 16228 16229\n\t\tf 3 15242 -15242 15243\n\t\tmu 0 3 16230 16231 16232\n\t\tf 3 15244 15245 -15244\n\t\tmu 0 3 16233 16234 16235\n\t\tf 3 15246 -15246 15247\n\t\tmu 0 3 16236 16237 16238\n\t\tf 3 15248 -15184 -15248\n\t\tmu 0 3 16239 16240 16241\n\t\tf 3 15249 -15152 -15226\n\t\tmu 0 3 16242 16243 16244\n\t\tf 3 15250 15251 15252\n\t\tmu 0 3 16245 16246 16247\n\t\tf 3 15253 -15209 -15253\n\t\tmu 0 3 16248 16249 16250\n\t\tf 3 15254 15255 15256\n\t\tmu 0 3 16251 16252 16253\n\t\tf 3 15257 -15252 -15257\n\t\tmu 0 3 16254 16255 16256\n\t\tf 3 15258 -15256 15259\n\t\tmu 0 3 16257 16258 16259\n\t\tf 3 15260 15261 -15260\n\t\tmu 0 3 16260 16261 16262\n\t\tf 3 15262 15263 15264\n\t\tmu 0 3 16263 16264 16265\n\t\tf 3 15265 -15262 -15265\n\t\tmu 0 3 16266 16267 16268\n\t\tf 3 15266 -15264 15267\n\t\tmu 0 3 16269 16270 16271\n\t\tf 3 15268 15269 -15268\n\t\tmu 0 3 16272 16273 16274\n\t\tf 3 15270 -15270 15271\n\t\tmu 0 3 16275 16276 16277\n\t\tf 3 15272 15273 -15272\n\t\tmu 0 3 16278 16279 16280\n\t\tf 3 15274 -15274 -15223\n\t\tmu 0 3 16281 16282 16283\n\t\tf 3 15275 15276 15277\n\t\tmu 0 3 16284 16285 16286\n\t\tf 3 15278 15279 -15278\n\t\tmu 0 3 16287 16288 16289\n\t\tf 3 15280 -15277 15281\n\t\tmu 0 3 16290 16291 16292\n\t\tf 3 15282 15283 -15282\n\t\tmu 0 3 16293 16294 16295\n\t\tf 3 15284 -15284 15285\n\t\tmu 0 3 16296 16297 16298\n\t\tf 3 15286 15287 -15286\n\t\tmu 0 3 16299 16300 16301\n\t\tf 3 15288 -15288 15289\n\t\tmu 0 3 16302 16303 16304\n\t\tf 3 15290 15291 -15290\n\t\tmu 0 3 16305 16306 16307\n\t\tf 3 15292 -15292 15293\n\t\tmu 0 3 16308 16309 16310\n\t\tf 3 15294 15295 -15294\n\t\tmu 0 3 16311 16312 16313\n\t\tf 3 15296 -15296 15297\n\t\tmu 0 3 16314 16315 16316\n\t\tf 3 15298 15299 -15298\n\t\tmu 0 3 16317 16318 16319\n\t\tf 3 15300 -15300 15301\n\t\tmu 0 3 16320 16321 16322\n\t\tf 3 15302 15303 -15302\n\t\tmu 0 3 16323 16324 16325\n\t\tf 3 15304 -15304 15305\n\t\tmu 0 3 16326 16327 16328\n\t\tf 3 15306 15307 -15306\n\t\tmu 0 3 16329 16330 16331\n\t\tf 3 15308 -15308 15309\n\t\tmu 0 3 16332 16333 16334\n\t\tf 3 15310 15311 -15310\n\t\tmu 0 3 16335 16336 16337\n\t\tf 3 15312 -15312 15313\n\t\tmu 0 3 16338 16339 16340\n\t\tf 3 15314 15315 -15314\n\t\tmu 0 3 16341 16342 16343\n\t\tf 3 15316 -15316 15317\n\t\tmu 0 3 16344 16345 16346\n\t\tf 3 15318 15319 -15318\n\t\tmu 0 3 16347 16348 16349\n\t\tf 3 15320 -15320 15321\n\t\tmu 0 3 16350 16351 16352\n\t\tf 3 15322 15323 -15322\n\t\tmu 0 3 16353 16354 16355\n\t\tf 3 15324 -15324 15325\n\t\tmu 0 3 16356 16357 16358\n\t\tf 3 15326 15327 -15326\n\t\tmu 0 3 16359 16360 16361\n\t\tf 3 15328 -15328 15329\n\t\tmu 0 3 16362 16363 16364\n\t\tf 3 15330 15331 -15330\n\t\tmu 0 3 16365 16366 16367\n\t\tf 3 15332 -15332 15333\n\t\tmu 0 3 16368 16369 16370\n\t\tf 3 15334 15335 -15334\n\t\tmu 0 3 16371 16372 16373\n\t\tf 3 15336 -15336 15337\n\t\tmu 0 3 16374 16375 16376\n\t\tf 3 15338 -15280 -15338\n\t\tmu 0 3 16377 16378 16379\n\t\tf 3 15339 15340 15341\n\t\tmu 0 3 16380 16381 16382\n\t\tf 3 15342 15343 -15342\n\t\tmu 0 3 16383 16384 16385\n\t\tf 3 15344 -15341 15345\n\t\tmu 0 3 16386 16387 16388\n\t\tf 3 15346 15347 -15346\n\t\tmu 0 3 16389 16390 16391\n\t\tf 3 15348 -15348 15349\n\t\tmu 0 3 16392 16393 16394\n\t\tf 3 15350 15351 -15350\n\t\tmu 0 3 16395 16396 16397\n\t\tf 3 15352 -15352 15353\n\t\tmu 0 3 16398 16399 16400\n\t\tf 3 15354 15355 -15354\n\t\tmu 0 3 16401 16402 16403\n\t\tf 3 15356 -15356 15357\n\t\tmu 0 3 16404 16405 16406\n\t\tf 3 15358 15359 -15358\n\t\tmu 0 3 16407 16408 16409\n\t\tf 3 15360 -15360 15361\n\t\tmu 0 3 16410 16411 16412\n\t\tf 3 15362 15363 -15362\n\t\tmu 0 3 16413 16414 16415\n\t\tf 3 15364 -15364 15365\n\t\tmu 0 3 16416 16417 16418\n\t\tf 3 15366 15367 -15366\n\t\tmu 0 3 16419 16420 16421;\n\tsetAttr \".fc[8000:8499]\"\n\t\tf 3 15368 -15368 15369\n\t\tmu 0 3 16422 16423 16424\n\t\tf 3 15370 15371 -15370\n\t\tmu 0 3 16425 16426 16427\n\t\tf 3 15372 -15372 15373\n\t\tmu 0 3 16428 16429 16430\n\t\tf 3 15374 15375 -15374\n\t\tmu 0 3 16431 16432 16433\n\t\tf 3 15376 -15376 15377\n\t\tmu 0 3 16434 16435 16436\n\t\tf 3 15378 15379 -15378\n\t\tmu 0 3 16437 16438 16439\n\t\tf 3 15380 -15380 15381\n\t\tmu 0 3 16440 16441 16442\n\t\tf 3 15382 15383 -15382\n\t\tmu 0 3 16443 16444 16445\n\t\tf 3 15384 -15384 15385\n\t\tmu 0 3 16446 16447 16448\n\t\tf 3 15386 15387 -15386\n\t\tmu 0 3 16449 16450 16451\n\t\tf 3 15388 -15388 15389\n\t\tmu 0 3 16452 16453 16454\n\t\tf 3 15390 15391 -15390\n\t\tmu 0 3 16455 16456 16457\n\t\tf 3 15392 -15392 15393\n\t\tmu 0 3 16458 16459 16460\n\t\tf 3 15394 15395 -15394\n\t\tmu 0 3 16461 16462 16463\n\t\tf 3 15396 -15396 15397\n\t\tmu 0 3 16464 16465 16466\n\t\tf 3 15398 15399 -15398\n\t\tmu 0 3 16467 16468 16469\n\t\tf 3 15400 -15400 15401\n\t\tmu 0 3 16470 16471 16472\n\t\tf 3 15402 -15344 -15402\n\t\tmu 0 3 16473 16474 16475\n\t\tf 3 15403 15404 15405\n\t\tmu 0 3 16476 16477 16478\n\t\tf 3 15406 15407 -15406\n\t\tmu 0 3 16479 16480 16481\n\t\tf 3 15408 -15405 15409\n\t\tmu 0 3 16482 16483 16484\n\t\tf 3 15410 15411 -15410\n\t\tmu 0 3 16485 16486 16487\n\t\tf 3 15412 -15412 15413\n\t\tmu 0 3 16488 16489 16490\n\t\tf 3 15414 15415 -15414\n\t\tmu 0 3 16491 16492 16493\n\t\tf 3 15416 -15416 15417\n\t\tmu 0 3 16494 16495 16496\n\t\tf 3 15418 15419 -15418\n\t\tmu 0 3 16497 16498 16499\n\t\tf 3 15420 -15420 15421\n\t\tmu 0 3 16500 16501 16502\n\t\tf 3 15422 15423 -15422\n\t\tmu 0 3 16503 16504 16505\n\t\tf 3 15424 -15424 15425\n\t\tmu 0 3 16506 16507 16508\n\t\tf 3 15426 15427 -15426\n\t\tmu 0 3 16509 16510 16511\n\t\tf 3 15428 -15428 15429\n\t\tmu 0 3 16512 16513 16514\n\t\tf 3 15430 15431 -15430\n\t\tmu 0 3 16515 16516 16517\n\t\tf 3 15432 -15432 15433\n\t\tmu 0 3 16518 16519 16520\n\t\tf 3 15434 15435 -15434\n\t\tmu 0 3 16521 16522 16523\n\t\tf 3 15436 -15436 15437\n\t\tmu 0 3 16524 16525 16526\n\t\tf 3 15438 15439 -15438\n\t\tmu 0 3 16527 16528 16529\n\t\tf 3 15440 -15440 15441\n\t\tmu 0 3 16530 16531 16532\n\t\tf 3 15442 15443 -15442\n\t\tmu 0 3 16533 16534 16535\n\t\tf 3 15444 -15444 15445\n\t\tmu 0 3 16536 16537 16538\n\t\tf 3 15446 15447 -15446\n\t\tmu 0 3 16539 16540 16541\n\t\tf 3 15448 -15448 15449\n\t\tmu 0 3 16542 16543 16544\n\t\tf 3 15450 15451 -15450\n\t\tmu 0 3 16545 16546 16547\n\t\tf 3 15452 -15452 15453\n\t\tmu 0 3 16548 16549 16550\n\t\tf 3 15454 15455 -15454\n\t\tmu 0 3 16551 16552 16553\n\t\tf 3 15456 -15456 15457\n\t\tmu 0 3 16554 16555 16556\n\t\tf 3 15458 15459 -15458\n\t\tmu 0 3 16557 16558 16559\n\t\tf 3 15460 -15460 15461\n\t\tmu 0 3 16560 16561 16562\n\t\tf 3 15462 15463 -15462\n\t\tmu 0 3 16563 16564 16565\n\t\tf 3 15464 -15464 15465\n\t\tmu 0 3 16566 16567 16568\n\t\tf 3 15466 -15408 -15466\n\t\tmu 0 3 16569 16570 16571\n\t\tf 3 15467 15468 15469\n\t\tmu 0 3 16572 16573 16574\n\t\tf 3 15470 15471 -15470\n\t\tmu 0 3 16575 16576 16577\n\t\tf 3 -15471 15472 15473\n\t\tmu 0 3 16578 16579 16580\n\t\tf 3 15474 15475 -15474\n\t\tmu 0 3 16581 16582 16583\n\t\tf 3 -15475 15476 15477\n\t\tmu 0 3 16584 16585 16586\n\t\tf 3 15478 15479 -15478\n\t\tmu 0 3 16587 16588 16589\n\t\tf 3 -15479 15480 15481\n\t\tmu 0 3 16590 16591 16592\n\t\tf 3 15482 15483 -15482\n\t\tmu 0 3 16593 16594 16595\n\t\tf 3 -15483 15484 15485\n\t\tmu 0 3 16596 16597 16598\n\t\tf 3 15486 15487 -15486\n\t\tmu 0 3 16599 16600 16601\n\t\tf 3 -15487 15488 15489\n\t\tmu 0 3 16602 16603 16604\n\t\tf 3 15490 15491 -15490\n\t\tmu 0 3 16605 16606 16607\n\t\tf 3 -15491 15492 15493\n\t\tmu 0 3 16608 16609 16610\n\t\tf 3 15494 15495 -15494\n\t\tmu 0 3 16611 16612 16613\n\t\tf 3 -15495 15496 15497\n\t\tmu 0 3 16614 16615 16616\n\t\tf 3 15498 15499 -15498\n\t\tmu 0 3 16617 16618 16619\n\t\tf 3 -15499 15500 15501\n\t\tmu 0 3 16620 16621 16622\n\t\tf 3 15502 15503 -15502\n\t\tmu 0 3 16623 16624 16625\n\t\tf 3 -15503 15504 15505\n\t\tmu 0 3 16626 16627 16628\n\t\tf 3 15506 15507 -15506\n\t\tmu 0 3 16629 16630 16631\n\t\tf 3 -15507 15508 15509\n\t\tmu 0 3 16632 16633 16634\n\t\tf 3 15510 15511 -15510\n\t\tmu 0 3 16635 16636 16637\n\t\tf 3 -15511 15512 15513\n\t\tmu 0 3 16638 16639 16640\n\t\tf 3 15514 15515 -15514\n\t\tmu 0 3 16641 16642 16643\n\t\tf 3 -15515 15516 15517\n\t\tmu 0 3 16644 16645 16646\n\t\tf 3 15518 15519 -15518\n\t\tmu 0 3 16647 16648 16649\n\t\tf 3 -15519 15520 15521\n\t\tmu 0 3 16650 16651 16652\n\t\tf 3 15522 15523 -15522\n\t\tmu 0 3 16653 16654 16655\n\t\tf 3 -15523 15524 15525\n\t\tmu 0 3 16656 16657 16658\n\t\tf 3 15526 15527 -15526\n\t\tmu 0 3 16659 16660 16661\n\t\tf 3 -15527 15528 15529\n\t\tmu 0 3 16662 16663 16664\n\t\tf 3 -15468 15530 -15530\n\t\tmu 0 3 16665 16666 16667\n\t\tf 3 15531 15532 15533\n\t\tmu 0 3 16668 16669 16670\n\t\tf 3 15534 15535 -15534\n\t\tmu 0 3 16671 16672 16673\n\t\tf 3 -15535 15536 15537\n\t\tmu 0 3 16674 16675 16676\n\t\tf 3 15538 15539 -15538\n\t\tmu 0 3 16677 16678 16679\n\t\tf 3 -15539 15540 15541\n\t\tmu 0 3 16680 16681 16682\n\t\tf 3 15542 15543 -15542\n\t\tmu 0 3 16683 16684 16685\n\t\tf 3 -15543 15544 15545\n\t\tmu 0 3 16686 16687 16688\n\t\tf 3 15546 15547 -15546\n\t\tmu 0 3 16689 16690 16691\n\t\tf 3 -15547 15548 15549\n\t\tmu 0 3 16692 16693 16694\n\t\tf 3 15550 15551 -15550\n\t\tmu 0 3 16695 16696 16697\n\t\tf 3 -15551 15552 15553\n\t\tmu 0 3 16698 16699 16700\n\t\tf 3 15554 15555 -15554\n\t\tmu 0 3 16701 16702 16703\n\t\tf 3 -15555 15556 15557\n\t\tmu 0 3 16704 16705 16706\n\t\tf 3 15558 15559 -15558\n\t\tmu 0 3 16707 16708 16709\n\t\tf 3 -15559 15560 15561\n\t\tmu 0 3 16710 16711 16712\n\t\tf 3 15562 15563 -15562\n\t\tmu 0 3 16713 16714 16715\n\t\tf 3 -15563 15564 15565\n\t\tmu 0 3 16716 16717 16718\n\t\tf 3 15566 15567 -15566\n\t\tmu 0 3 16719 16720 16721\n\t\tf 3 -15567 15568 15569\n\t\tmu 0 3 16722 16723 16724\n\t\tf 3 15570 15571 -15570\n\t\tmu 0 3 16725 16726 16727\n\t\tf 3 -15571 15572 15573\n\t\tmu 0 3 16728 16729 16730\n\t\tf 3 15574 15575 -15574\n\t\tmu 0 3 16731 16732 16733\n\t\tf 3 -15575 15576 15577\n\t\tmu 0 3 16734 16735 16736\n\t\tf 3 15578 15579 -15578\n\t\tmu 0 3 16737 16738 16739\n\t\tf 3 -15579 15580 15581\n\t\tmu 0 3 16740 16741 16742\n\t\tf 3 15582 15583 -15582\n\t\tmu 0 3 16743 16744 16745\n\t\tf 3 -15583 15584 15585\n\t\tmu 0 3 16746 16747 16748\n\t\tf 3 15586 15587 -15586\n\t\tmu 0 3 16749 16750 16751\n\t\tf 3 -15587 15588 15589\n\t\tmu 0 3 16752 16753 16754\n\t\tf 3 15590 15591 -15590\n\t\tmu 0 3 16755 16756 16757\n\t\tf 3 -15591 15592 15593\n\t\tmu 0 3 16758 16759 16760\n\t\tf 3 -15532 15594 -15594\n\t\tmu 0 3 16761 16762 16763\n\t\tf 3 15595 15596 15597\n\t\tmu 0 3 16764 16765 16766\n\t\tf 3 15598 15599 -15598\n\t\tmu 0 3 16767 16768 16769\n\t\tf 3 -15599 15600 15601\n\t\tmu 0 3 16770 16771 16772\n\t\tf 3 15602 15603 -15602\n\t\tmu 0 3 16773 16774 16775\n\t\tf 3 -15603 15604 15605\n\t\tmu 0 3 16776 16777 16778\n\t\tf 3 15606 15607 -15606\n\t\tmu 0 3 16779 16780 16781\n\t\tf 3 -15607 15608 15609\n\t\tmu 0 3 16782 16783 16784\n\t\tf 3 15610 15611 -15610\n\t\tmu 0 3 16785 16786 16787\n\t\tf 3 -15611 15612 15613\n\t\tmu 0 3 16788 16789 16790\n\t\tf 3 15614 15615 -15614\n\t\tmu 0 3 16791 16792 16793\n\t\tf 3 -15615 15616 15617\n\t\tmu 0 3 16794 16795 16796\n\t\tf 3 15618 15619 -15618\n\t\tmu 0 3 16797 16798 16799\n\t\tf 3 -15619 15620 15621\n\t\tmu 0 3 16800 16801 16802\n\t\tf 3 15622 15623 -15622\n\t\tmu 0 3 16803 16804 16805\n\t\tf 3 -15623 15624 15625\n\t\tmu 0 3 16806 16807 16808\n\t\tf 3 15626 15627 -15626\n\t\tmu 0 3 16809 16810 16811\n\t\tf 3 -15627 15628 15629\n\t\tmu 0 3 16812 16813 16814\n\t\tf 3 15630 15631 -15630\n\t\tmu 0 3 16815 16816 16817\n\t\tf 3 -15631 15632 15633\n\t\tmu 0 3 16818 16819 16820\n\t\tf 3 15634 15635 -15634\n\t\tmu 0 3 16821 16822 16823\n\t\tf 3 -15635 15636 15637\n\t\tmu 0 3 16824 16825 16826\n\t\tf 3 15638 15639 -15638\n\t\tmu 0 3 16827 16828 16829\n\t\tf 3 -15639 15640 15641\n\t\tmu 0 3 16830 16831 16832\n\t\tf 3 15642 15643 -15642\n\t\tmu 0 3 16833 16834 16835\n\t\tf 3 -15643 15644 15645\n\t\tmu 0 3 16836 16837 16838\n\t\tf 3 15646 15647 -15646\n\t\tmu 0 3 16839 16840 16841\n\t\tf 3 -15647 15648 15649\n\t\tmu 0 3 16842 16843 16844\n\t\tf 3 15650 15651 -15650\n\t\tmu 0 3 16845 16846 16847\n\t\tf 3 -15651 15652 15653\n\t\tmu 0 3 16848 16849 16850\n\t\tf 3 15654 15655 -15654\n\t\tmu 0 3 16851 16852 16853\n\t\tf 3 -15655 15656 15657\n\t\tmu 0 3 16854 16855 16856\n\t\tf 3 -15596 15658 -15658\n\t\tmu 0 3 16857 16858 16859\n\t\tf 3 15659 15660 15661\n\t\tmu 0 3 16860 16861 16862\n\t\tf 3 15662 15663 -15662\n\t\tmu 0 3 16863 16864 16865\n\t\tf 3 -15663 15664 15665\n\t\tmu 0 3 16866 16867 16868\n\t\tf 3 15666 15667 -15666\n\t\tmu 0 3 16869 16870 16871\n\t\tf 3 -15667 15668 15669\n\t\tmu 0 3 16872 16873 16874\n\t\tf 3 15670 15671 -15670\n\t\tmu 0 3 16875 16876 16877\n\t\tf 3 -15671 15672 15673\n\t\tmu 0 3 16878 16879 16880\n\t\tf 3 15674 15675 -15674\n\t\tmu 0 3 16881 16882 16883\n\t\tf 3 -15675 15676 15677\n\t\tmu 0 3 16884 16885 16886\n\t\tf 3 15678 15679 -15678\n\t\tmu 0 3 16887 16888 16889\n\t\tf 3 -15679 15680 15681\n\t\tmu 0 3 16890 16891 16892\n\t\tf 3 15682 15683 -15682\n\t\tmu 0 3 16893 16894 16895\n\t\tf 3 -15683 15684 15685\n\t\tmu 0 3 16896 16897 16898\n\t\tf 3 15686 15687 -15686\n\t\tmu 0 3 16899 16900 16901\n\t\tf 3 -15687 15688 15689\n\t\tmu 0 3 16902 16903 16904\n\t\tf 3 15690 15691 -15690\n\t\tmu 0 3 16905 16906 16907\n\t\tf 3 -15691 15692 15693\n\t\tmu 0 3 16908 16909 16910\n\t\tf 3 15694 15695 -15694\n\t\tmu 0 3 16911 16912 16913\n\t\tf 3 -15695 15696 15697\n\t\tmu 0 3 16914 16915 16916\n\t\tf 3 15698 15699 -15698\n\t\tmu 0 3 16917 16918 16919\n\t\tf 3 -15699 15700 15701\n\t\tmu 0 3 16920 16921 16922\n\t\tf 3 15702 15703 -15702\n\t\tmu 0 3 16923 16924 16925\n\t\tf 3 -15703 15704 15705\n\t\tmu 0 3 16926 16927 16928\n\t\tf 3 15706 15707 -15706\n\t\tmu 0 3 16929 16930 16931\n\t\tf 3 -15707 15708 15709\n\t\tmu 0 3 16932 16933 16934\n\t\tf 3 15710 15711 -15710\n\t\tmu 0 3 16935 16936 16937\n\t\tf 3 -15711 15712 15713\n\t\tmu 0 3 16938 16939 16940\n\t\tf 3 15714 15715 -15714\n\t\tmu 0 3 16941 16942 16943\n\t\tf 3 -15715 15716 15717\n\t\tmu 0 3 16944 16945 16946\n\t\tf 3 15718 15719 -15718\n\t\tmu 0 3 16947 16948 16949\n\t\tf 3 -15719 15720 15721\n\t\tmu 0 3 16950 16951 16952\n\t\tf 3 -15660 15722 -15722\n\t\tmu 0 3 16953 16954 16955\n\t\tf 3 15723 15724 15725\n\t\tmu 0 3 16956 16957 16958\n\t\tf 3 15726 15727 -15726\n\t\tmu 0 3 16958 16959 16956\n\t\tf 3 15728 15729 15730\n\t\tmu 0 3 16960 16961 16962\n\t\tf 3 15731 15732 -15731\n\t\tmu 0 3 16962 16963 16960\n\t\tf 3 15733 -15730 15734\n\t\tmu 0 3 16964 16962 16961\n\t\tf 3 15735 15736 -15735\n\t\tmu 0 3 16961 16965 16964\n\t\tf 3 15737 -15737 15738\n\t\tmu 0 3 16966 16964 16965\n\t\tf 3 15739 15740 -15739\n\t\tmu 0 3 16965 16967 16966\n\t\tf 3 15741 -15741 15742\n\t\tmu 0 3 16968 16966 16967\n\t\tf 3 15743 15744 -15743\n\t\tmu 0 3 16967 16969 16968\n\t\tf 3 15745 -15745 15746\n\t\tmu 0 3 16970 16968 16969\n\t\tf 3 15747 15748 -15747\n\t\tmu 0 3 16969 16971 16970\n\t\tf 3 -15749 15749 15750\n\t\tmu 0 3 16970 16971 16972\n\t\tf 3 15751 15752 -15751\n\t\tmu 0 3 16972 16973 16970\n\t\tf 3 15753 -15752 15754\n\t\tmu 0 3 16974 16973 16972\n\t\tf 3 15755 15756 -15755\n\t\tmu 0 3 16972 16975 16974\n\t\tf 3 15757 15758 15759\n\t\tmu 0 3 16976 16977 16978\n\t\tf 3 15760 15761 -15760\n\t\tmu 0 3 16978 16979 16976\n\t\tf 3 15762 -15762 15763\n\t\tmu 0 3 16980 16976 16979\n\t\tf 3 15764 15765 -15764\n\t\tmu 0 3 16979 16981 16980\n\t\tf 3 -15763 15766 15767\n\t\tmu 0 3 16976 16980 16982\n\t\tf 3 15768 15769 -15768\n\t\tmu 0 3 16982 16983 16976\n\t\tf 3 -15758 -15770 15770\n\t\tmu 0 3 16977 16976 16983\n\t\tf 3 15771 15772 -15771\n\t\tmu 0 3 16983 16984 16977\n\t\tf 3 15773 -15766 15774\n\t\tmu 0 3 16985 16980 16981\n\t\tf 3 15775 15776 -15775\n\t\tmu 0 3 16981 16986 16985\n\t\tf 3 15777 -15777 15778\n\t\tmu 0 3 16987 16985 16986\n\t\tf 3 15779 15780 -15779\n\t\tmu 0 3 16986 16988 16987\n\t\tf 3 15781 -15778 15782\n\t\tmu 0 3 16989 16985 16987\n\t\tf 3 15783 -15767 15784\n\t\tmu 0 3 16989 16982 16980\n\t\tf 3 -15774 -15782 -15785\n\t\tmu 0 3 16980 16985 16989\n\t\tf 3 15785 15786 -15783\n\t\tmu 0 3 16987 16990 16989\n\t\tf 3 -15784 15787 15788\n\t\tmu 0 3 16982 16989 16991\n\t\tf 3 15789 15790 -15789\n\t\tmu 0 3 16991 16992 16982\n\t\tf 3 -15769 -15791 15791\n\t\tmu 0 3 16983 16982 16992\n\t\tf 3 15792 15793 -15792\n\t\tmu 0 3 16992 16993 16983\n\t\tf 3 -15772 -15794 15794\n\t\tmu 0 3 16984 16983 16993\n\t\tf 3 15795 15796 -15795\n\t\tmu 0 3 16993 16994 16984\n\t\tf 3 15797 -15788 15798\n\t\tmu 0 3 16995 16991 16989\n\t\tf 3 -15787 15799 -15799\n\t\tmu 0 3 16989 16990 16995\n\t\tf 3 15800 -15781 15801\n\t\tmu 0 3 16996 16987 16988\n\t\tf 3 -15786 -15801 15802\n\t\tmu 0 3 16990 16987 16996\n\t\tf 3 15803 15804 -15802\n\t\tmu 0 3 16988 16997 16996\n\t\tf 3 15805 -15805 15806\n\t\tmu 0 3 16998 16996 16997\n\t\tf 3 15807 15808 -15807\n\t\tmu 0 3 16997 16999 16998\n\t\tf 3 15809 -15809 15810\n\t\tmu 0 3 17000 16998 16999\n\t\tf 3 15811 15812 -15811\n\t\tmu 0 3 16999 17001 17000\n\t\tf 3 15813 -15813 15814\n\t\tmu 0 3 17002 17000 17001\n\t\tf 3 15815 15816 -15815\n\t\tmu 0 3 17001 17003 17002\n\t\tf 3 -15814 15817 15818\n\t\tmu 0 3 17000 17002 17004\n\t\tf 3 15819 15820 -15819\n\t\tmu 0 3 17004 17005 17000\n\t\tf 3 15821 -15816 15822\n\t\tmu 0 3 17006 17003 17001\n\t\tf 3 15823 15824 -15823\n\t\tmu 0 3 17001 17007 17006\n\t\tf 3 15825 -15822 15826\n\t\tmu 0 3 17008 17003 17006\n\t\tf 3 -15817 -15826 15827\n\t\tmu 0 3 17002 17003 17008\n\t\tf 3 15828 15829 -15827\n\t\tmu 0 3 17006 17009 17008\n\t\tf 3 -15820 15830 15831\n\t\tmu 0 3 17005 17004 17010\n\t\tf 3 15832 15833 -15832\n\t\tmu 0 3 17010 17011 17005\n\t\tf 3 15834 -15818 15835\n\t\tmu 0 3 17012 17004 17002\n\t\tf 3 15836 15837 -15836\n\t\tmu 0 3 17002 17013 17012\n\t\tf 3 15838 -15837 -15828\n\t\tmu 0 3 17008 17013 17002\n\t\tf 3 15839 -15831 15840\n\t\tmu 0 3 17014 17010 17004\n\t\tf 3 -15835 15841 -15841\n\t\tmu 0 3 17004 17012 17014\n\t\tf 3 15842 15843 -15821\n\t\tmu 0 3 17005 17015 17000\n\t\tf 3 15844 15845 -15844\n\t\tmu 0 3 17015 17016 17000\n\t\tf 3 -15834 15846 15847\n\t\tmu 0 3 17005 17011 17017\n\t\tf 3 15848 -15843 -15848\n\t\tmu 0 3 17017 17015 17005\n\t\tf 3 -15845 -15849 15849\n\t\tmu 0 3 17016 17015 17017\n\t\tf 3 15850 15851 -15850\n\t\tmu 0 3 17017 17018 17016\n\t\tf 3 15852 -15852 15853\n\t\tmu 0 3 17019 17016 17018\n\t\tf 3 -15853 15854 15855\n\t\tmu 0 3 17016 17019 16998\n\t\tf 3 -15806 -15855 15856\n\t\tmu 0 3 16996 16998 17019\n\t\tf 3 15857 15858 -15857\n\t\tmu 0 3 17019 17020 16996\n\t\tf 3 -15858 15859 15860\n\t\tmu 0 3 17020 17019 17021\n\t\tf 3 15861 -15860 -15854\n\t\tmu 0 3 17018 17021 17019\n\t\tf 3 15862 15863 -15861\n\t\tmu 0 3 17021 17022 17020\n\t\tf 3 -15810 -15846 -15856\n\t\tmu 0 3 16998 17000 17016\n\t\tf 3 -15859 15864 -15803\n\t\tmu 0 3 16996 17020 16990\n\t\tf 3 -15865 -15864 15865\n\t\tmu 0 3 16990 17020 17022\n\t\tf 3 15866 -15800 -15866\n\t\tmu 0 3 17022 16995 16990\n\t\tf 3 15867 15868 15869\n\t\tmu 0 3 17023 17024 17025\n\t\tf 3 15870 15871 -15870\n\t\tmu 0 3 17025 17026 17023\n\t\tf 3 15872 -15872 15873\n\t\tmu 0 3 17027 17023 17026\n\t\tf 3 15874 15875 -15874\n\t\tmu 0 3 17026 17028 17027\n\t\tf 3 15876 -15869 15877\n\t\tmu 0 3 17029 17025 17024\n\t\tf 3 15878 15879 -15878\n\t\tmu 0 3 17024 17030 17029\n\t\tf 3 15880 -15880 15881\n\t\tmu 0 3 17031 17029 17030\n\t\tf 3 15882 15883 -15882\n\t\tmu 0 3 17030 17032 17031\n\t\tf 3 15884 -15884 15885\n\t\tmu 0 3 17033 17031 17032\n\t\tf 3 15886 15887 -15886\n\t\tmu 0 3 17032 17034 17033\n\t\tf 3 15888 -15888 15889\n\t\tmu 0 3 17035 17033 17034\n\t\tf 3 15890 15891 -15890\n\t\tmu 0 3 17034 17036 17035\n\t\tf 3 15892 -15892 15893\n\t\tmu 0 3 17037 17035 17036\n\t\tf 3 15894 15895 -15894\n\t\tmu 0 3 17036 17038 17037\n\t\tf 3 15896 -15896 15897\n\t\tmu 0 3 17039 17037 17038\n\t\tf 3 15898 15899 -15898\n\t\tmu 0 3 17038 17040 17039\n\t\tf 3 15900 -15900 15901\n\t\tmu 0 3 17041 17039 17040\n\t\tf 3 15902 15903 -15902\n\t\tmu 0 3 17040 17042 17041\n\t\tf 3 15904 15905 15906\n\t\tmu 0 3 17043 17044 17045\n\t\tf 3 15907 15908 -15907\n\t\tmu 0 3 17045 17046 17043\n\t\tf 3 15909 -15905 15910\n\t\tmu 0 3 17047 17044 17043\n\t\tf 3 15911 15912 -15911\n\t\tmu 0 3 17043 17048 17047\n\t\tf 3 15913 -15913 15914\n\t\tmu 0 3 17049 17047 17048\n\t\tf 3 15915 15916 -15915\n\t\tmu 0 3 17048 17050 17049\n\t\tf 3 15917 -15917 15918\n\t\tmu 0 3 17051 17049 17050\n\t\tf 3 15919 15920 -15919\n\t\tmu 0 3 17050 17052 17051\n\t\tf 3 15921 -15921 15922\n\t\tmu 0 3 17053 17051 17052\n\t\tf 3 15923 15924 -15923\n\t\tmu 0 3 17052 17054 17053\n\t\tf 3 15925 -15925 15926\n\t\tmu 0 3 17055 17053 17054\n\t\tf 3 15927 -15908 15928\n\t\tmu 0 3 17056 17046 17045\n\t\tf 3 15929 15930 -15929\n\t\tmu 0 3 17045 17057 17056\n\t\tf 3 15931 -15931 15932\n\t\tmu 0 3 17058 17056 17057\n\t\tf 3 -15897 15933 -15933\n\t\tmu 0 3 17057 17059 17058\n\t\tf 3 15934 -15934 15935\n\t\tmu 0 3 17060 17058 17059\n\t\tf 3 -15901 15936 -15936\n\t\tmu 0 3 17059 17061 17060\n\t\tf 3 -15728 15937 15938\n\t\tmu 0 3 17062 17063 17064\n\t\tf 3 15939 15940 -15939\n\t\tmu 0 3 17064 17065 17062\n\t\tf 3 15941 -15940 15942\n\t\tmu 0 3 17066 17065 17064\n\t\tf 3 15943 15944 -15943\n\t\tmu 0 3 17064 17067 17066\n\t\tf 3 15945 15946 15947\n\t\tmu 0 3 17068 17069 17070\n\t\tf 3 15948 15949 -15948\n\t\tmu 0 3 17070 17071 17068\n\t\tf 3 15950 -15946 15951\n\t\tmu 0 3 17072 17069 17068\n\t\tf 3 15952 15953 -15952\n\t\tmu 0 3 17068 17073 17072\n\t\tf 3 15954 15955 15956\n\t\tmu 0 3 17074 17075 17076\n\t\tf 3 -15954 15957 -15957\n\t\tmu 0 3 17076 17077 17074\n\t\tf 3 15958 -15955 15959\n\t\tmu 0 3 17078 17079 17080\n\t\tf 3 15960 15961 -15960\n\t\tmu 0 3 17080 17081 17078\n\t\tf 3 -15962 15962 15963\n\t\tmu 0 3 17078 17081 17082\n\t\tf 3 15964 15965 -15964\n\t\tmu 0 3 17082 17083 17078\n\t\tf 3 -15965 15966 15967\n\t\tmu 0 3 17083 17082 17084\n\t\tf 3 15968 15969 -15968\n\t\tmu 0 3 17084 17085 17083\n\t\tf 3 -15969 15970 15971\n\t\tmu 0 3 17085 17084 17086\n\t\tf 3 15972 15973 -15972\n\t\tmu 0 3 17086 17087 17085\n\t\tf 3 -15973 15974 15975\n\t\tmu 0 3 17087 17086 17088\n\t\tf 3 15976 15977 -15976\n\t\tmu 0 3 17088 17089 17087\n\t\tf 3 15978 -15977 15979\n\t\tmu 0 3 17090 17089 17088\n\t\tf 3 15980 15981 -15980\n\t\tmu 0 3 17088 17091 17090\n\t\tf 3 15982 -15982 15983\n\t\tmu 0 3 17092 17090 17091\n\t\tf 3 15984 15985 -15984\n\t\tmu 0 3 17091 17093 17092\n\t\tf 3 15986 15987 15988\n\t\tmu 0 3 17094 17095 17096\n\t\tf 3 15989 -15988 15990\n\t\tmu 0 3 17097 17096 17095\n\t\tf 3 -15991 15991 15992\n\t\tmu 0 3 17097 17095 17098\n\t\tf 3 -15993 15993 15994\n\t\tmu 0 3 17097 17098 17099\n\t\tf 3 15995 -15995 15996\n\t\tmu 0 3 17100 17097 17099\n\t\tf 3 15997 15998 -15997\n\t\tmu 0 3 17099 17101 17100\n\t\tf 3 -15999 15999 16000\n\t\tmu 0 3 17100 17101 17102\n\t\tf 3 16001 16002 -16001\n\t\tmu 0 3 17102 17103 17100\n\t\tf 3 -16002 16003 16004\n\t\tmu 0 3 17103 17102 17104\n\t\tf 3 -15904 16005 16006\n\t\tmu 0 3 17041 17042 17105\n\t\tf 3 16007 16008 16009\n\t\tmu 0 3 17106 17107 17108\n\t\tf 3 16010 -16008 16011\n\t\tmu 0 3 17109 17107 17110\n\t\tf 3 16012 16013 -16012\n\t\tmu 0 3 17111 17112 17109\n\t\tf 3 16014 16015 16016\n\t\tmu 0 3 17113 17114 17115\n\t\tf 3 16017 16018 -16017\n\t\tmu 0 3 17115 17116 17113\n\t\tf 3 16019 16020 16021\n\t\tmu 0 3 17117 17118 17119\n\t\tf 3 16022 16023 -16022\n\t\tmu 0 3 17119 17120 17121\n\t\tf 3 16024 16025 16026\n\t\tmu 0 3 17122 17123 17124\n\t\tf 3 16027 16028 -16027\n\t\tmu 0 3 17124 17125 17126\n\t\tf 3 16029 16030 16031\n\t\tmu 0 3 17127 17128 17129\n\t\tf 3 16032 16033 -16032\n\t\tmu 0 3 17129 17130 17127\n\t\tf 3 16034 16035 16036\n\t\tmu 0 3 17131 17132 17133\n\t\tf 3 16037 16038 -16037\n\t\tmu 0 3 17133 17134 17131\n\t\tf 3 16039 16040 16041\n\t\tmu 0 3 17135 17136 17137\n\t\tf 3 16042 16043 -16042\n\t\tmu 0 3 17137 17138 17135\n\t\tf 3 -16041 16044 16045\n\t\tmu 0 3 17137 17136 17139\n\t\tf 3 -16028 16046 -16046\n\t\tmu 0 3 17139 17140 17137\n\t\tf 3 16047 16048 16049\n\t\tmu 0 3 17141 17142 17137\n\t\tf 3 -16047 16050 -16050\n\t\tmu 0 3 17137 17140 17141\n\t\tf 3 16051 16052 16053\n\t\tmu 0 3 17143 17144 17145\n\t\tf 3 16054 16055 -16054\n\t\tmu 0 3 17145 17146 17143\n\t\tf 3 16056 -16052 16057\n\t\tmu 0 3 17147 17144 17143\n\t\tf 3 16058 -16018 -16058\n\t\tmu 0 3 17143 17148 17147\n\t\tf 3 -16059 -16056 16059\n\t\tmu 0 3 17148 17143 17146\n\t\tf 3 16060 -16034 -16060\n\t\tmu 0 3 17146 17149 17148\n\t\tf 3 16061 16062 16063\n\t\tmu 0 3 17150 17151 17152\n\t\tf 3 16064 16065 -16064\n\t\tmu 0 3 17153 17154 17155\n\t\tf 3 16066 16067 16068\n\t\tmu 0 3 17156 17157 17158\n\t\tf 3 16069 16070 -16069\n\t\tmu 0 3 17158 17159 17156\n\t\tf 3 16071 -16067 16072\n\t\tmu 0 3 17160 17157 17156\n\t\tf 3 16073 16074 -16073\n\t\tmu 0 3 17156 17161 17160\n\t\tf 3 16075 16076 16077\n\t\tmu 0 3 17162 17163 17164\n\t\tf 3 16078 16079 -16078\n\t\tmu 0 3 17165 17166 17162\n\t\tf 3 16080 -16070 16081\n\t\tmu 0 3 17167 17159 17158\n\t\tf 3 16082 16083 -16082\n\t\tmu 0 3 17158 17168 17167\n\t\tf 3 16084 -16080 16085\n\t\tmu 0 3 17169 17162 17166\n\t\tf 3 16086 16087 -16086\n\t\tmu 0 3 17166 17170 17169\n\t\tf 3 16088 16089 16090\n\t\tmu 0 3 17171 17172 17173\n\t\tf 3 16091 16092 -16091\n\t\tmu 0 3 17173 17174 17175\n\t\tf 3 -16092 16093 16094\n\t\tmu 0 3 17174 17173 17176\n\t\tf 3 16095 16096 -16095\n\t\tmu 0 3 17176 17177 17174\n\t\tf 3 16097 16098 16099\n\t\tmu 0 3 17178 17179 17180\n\t\tf 3 16100 16101 -16100\n\t\tmu 0 3 17180 17181 17178\n\t\tf 3 16102 -16099 16103\n\t\tmu 0 3 17182 17180 17179\n\t\tf 3 16104 16105 -16104\n\t\tmu 0 3 17179 17183 17182\n\t\tf 3 16106 -16106 16107\n\t\tmu 0 3 17184 17182 17183\n\t\tf 3 16108 16109 -16108\n\t\tmu 0 3 17183 17185 17184\n\t\tf 3 16110 -16110 16111\n\t\tmu 0 3 17186 17184 17185\n\t\tf 3 16112 16113 -16112\n\t\tmu 0 3 17185 17187 17186\n\t\tf 3 16114 -16114 16115\n\t\tmu 0 3 17188 17186 17187\n\t\tf 3 16116 16117 -16116\n\t\tmu 0 3 17187 17189 17188\n\t\tf 3 -16102 16118 16119\n\t\tmu 0 3 17178 17181 17190\n\t\tf 3 16120 16121 -16120\n\t\tmu 0 3 17190 17191 17178\n\t\tf 3 16122 -16121 16123\n\t\tmu 0 3 17192 17191 17190\n\t\tf 3 16124 16125 -16124\n\t\tmu 0 3 17190 17193 17192\n\t\tf 3 16126 -16126 16127\n\t\tmu 0 3 17194 17192 17193\n\t\tf 3 16128 16129 -16128\n\t\tmu 0 3 17193 17195 17194\n\t\tf 3 16130 -16130 16131\n\t\tmu 0 3 17196 17194 17195\n\t\tf 3 16132 16133 -16132\n\t\tmu 0 3 17195 17197 17196\n\t\tf 3 16134 -16118 16135\n\t\tmu 0 3 17197 17188 17189\n\t\tf 3 16136 -16134 -16136\n\t\tmu 0 3 17189 17196 17197\n\t\tf 3 16137 -16084 16138\n\t\tmu 0 3 17198 17167 17168\n\t\tf 3 16139 16140 -16139\n\t\tmu 0 3 17168 17199 17198\n\t\tf 3 16141 16142 16143\n\t\tmu 0 3 17200 17201 17156\n\t\tf 3 -16071 16144 -16144\n\t\tmu 0 3 17156 17159 17200\n\t\tf 3 16145 16146 16147\n\t\tmu 0 3 17170 17202 17203\n\t\tf 3 16148 -16088 -16148\n\t\tmu 0 3 17203 17169 17170\n\t\tf 3 16149 16150 16151\n\t\tmu 0 3 17204 17205 17166\n\t\tf 3 -16079 16152 -16152\n\t\tmu 0 3 17166 17206 17204\n\t\tf 3 -16087 -16151 16153\n\t\tmu 0 3 17170 17166 17205\n\t\tf 3 16154 16155 -16154\n\t\tmu 0 3 17205 17207 17170\n\t\tf 3 16156 16157 16158\n\t\tmu 0 3 17208 17209 17210\n\t\tf 3 16159 16160 -16159\n\t\tmu 0 3 17210 17211 17212\n\t\tf 3 16161 -16158 16162\n\t\tmu 0 3 17213 17210 17209\n\t\tf 3 16163 16164 -16163\n\t\tmu 0 3 17209 17214 17213\n\t\tf 3 -16138 16165 16166\n\t\tmu 0 3 17167 17198 17215\n\t\tf 3 16167 16168 -16167\n\t\tmu 0 3 17215 17216 17167\n\t\tf 3 -16156 16169 16170\n\t\tmu 0 3 17170 17217 17218\n\t\tf 3 16171 -16146 -16171\n\t\tmu 0 3 17218 17202 17170\n\t\tf 3 -16143 16172 16173\n\t\tmu 0 3 17156 17219 17220\n\t\tf 3 16174 -16074 -16174\n\t\tmu 0 3 17220 17161 17156\n\t\tf 3 16175 -16168 16176\n\t\tmu 0 3 17221 17222 17223\n\t\tf 3 16177 16178 -16177\n\t\tmu 0 3 17223 17224 17221\n\t\tf 3 16179 -16170 16180\n\t\tmu 0 3 17225 17226 17227\n\t\tf 3 16181 16182 -16181\n\t\tmu 0 3 17227 17228 17225\n\t\tf 3 16183 16184 16185\n\t\tmu 0 3 17229 17230 17231\n\t\tf 3 -16142 16186 -16186\n\t\tmu 0 3 17231 17232 17229\n\t\tf 3 -16185 16187 16188\n\t\tmu 0 3 17231 17230 17233\n\t\tf 3 16189 -16173 -16189\n\t\tmu 0 3 17233 17234 17231\n\t\tf 3 -16150 -16190 16190\n\t\tmu 0 3 17235 17234 17233\n\t\tf 3 16191 16192 -16191\n\t\tmu 0 3 17233 17236 17235\n\t\tf 3 16193 16194 16195\n\t\tmu 0 3 17237 17238 17222\n\t\tf 3 16196 16197 -16196\n\t\tmu 0 3 17222 17239 17240\n\t\tf 3 16198 16199 16200\n\t\tmu 0 3 17235 17241 17242\n\t\tf 3 16201 -16155 -16201\n\t\tmu 0 3 17243 17227 17235\n\t\tf 3 -16195 16202 16203\n\t\tmu 0 3 17244 17245 17159\n\t\tf 3 -16081 -16169 -16204\n\t\tmu 0 3 17159 17167 17244\n\t\tf 3 16204 -16090 16205\n\t\tmu 0 3 17246 17247 17248\n\t\tf 3 -16048 16206 -16206\n\t\tmu 0 3 17248 17249 17250\n\t\tf 3 -16205 16207 16208\n\t\tmu 0 3 17247 17251 17252\n\t\tf 3 16209 -16094 -16209\n\t\tmu 0 3 17252 17253 17247\n\t\tf 3 -16061 16210 16211\n\t\tmu 0 3 17254 17255 17256\n\t\tf 3 16212 16213 -16212\n\t\tmu 0 3 17256 17257 17258\n\t\tf 3 -16213 16214 16215\n\t\tmu 0 3 17259 17256 17260\n\t\tf 3 16216 16217 -16216\n\t\tmu 0 3 17260 17261 17262\n\t\tf 3 16218 -16096 16219\n\t\tmu 0 3 17263 17264 17265\n\t\tf 3 -16210 16220 -16220\n\t\tmu 0 3 17265 17266 17267\n\t\tf 3 16221 -16217 16222\n\t\tmu 0 3 17268 17269 17270\n\t\tf 3 -16165 16223 -16223\n\t\tmu 0 3 17270 17271 17272\n\t\tf 3 16224 16225 16226\n\t\tmu 0 3 17273 17274 17275\n\t\tf 3 16227 16228 -16227\n\t\tmu 0 3 17276 17277 17278\n\t\tf 3 16229 16230 16231\n\t\tmu 0 3 17279 17280 17281\n\t\tf 3 16232 16233 -16232\n\t\tmu 0 3 17282 17283 17284\n\t\tf 3 -16230 16234 16235\n\t\tmu 0 3 17285 17286 17287\n\t\tf 3 16236 16237 -16236\n\t\tmu 0 3 17288 17289 17290\n\t\tf 3 -16237 16238 16239\n\t\tmu 0 3 17291 17292 17293\n\t\tf 3 16240 16241 -16240\n\t\tmu 0 3 17294 17295 17296\n\t\tf 3 -16241 16242 16243\n\t\tmu 0 3 17297 17298 17299\n\t\tf 3 16244 16245 -16244\n\t\tmu 0 3 17300 17301 17302\n\t\tf 3 -16245 16246 16247\n\t\tmu 0 3 17303 17304 17305\n\t\tf 3 16248 16249 -16248\n\t\tmu 0 3 17306 17307 17308\n\t\tf 3 16250 -16249 16251\n\t\tmu 0 3 17309 17310 17311\n\t\tf 3 16252 16253 -16252\n\t\tmu 0 3 17312 17313 17314\n\t\tf 3 16254 -16254 16255\n\t\tmu 0 3 17315 17316 17317\n\t\tf 3 16256 16257 -16256\n\t\tmu 0 3 17318 17319 17320\n\t\tf 3 16258 16259 16260\n\t\tmu 0 3 17321 17322 17323\n\t\tf 3 16261 16262 -16261\n\t\tmu 0 3 17324 17325 17326\n\t\tf 3 -16259 16263 16264\n\t\tmu 0 3 17327 17328 17329\n\t\tf 3 16265 16266 -16265\n\t\tmu 0 3 17330 17331 17332\n\t\tf 3 16267 -16264 16268\n\t\tmu 0 3 17333 17334 17335\n\t\tf 3 16269 16270 -16269\n\t\tmu 0 3 17336 17337 17338\n\t\tf 3 -16270 -16263 16271\n\t\tmu 0 3 17339 17340 17341\n\t\tf 3 16272 16273 -16272\n\t\tmu 0 3 17342 17343 17344\n\t\tf 3 -16266 16274 16275\n\t\tmu 0 3 17345 17346 17347\n\t\tf 3 16276 16277 -16276\n\t\tmu 0 3 17348 17349 17350\n\t\tf 3 -16277 16278 16279\n\t\tmu 0 3 17351 17352 17353\n\t\tf 3 16280 16281 -16280\n\t\tmu 0 3 17354 17355 17356\n\t\tf 3 -16279 16282 16283\n\t\tmu 0 3 17357 17358 17359\n\t\tf 3 -16283 -16275 16284\n\t\tmu 0 3 17360 17361 17362\n\t\tf 3 -16268 16285 -16285\n\t\tmu 0 3 17363 17364 17365\n\t\tf 3 16286 16287 -16284\n\t\tmu 0 3 17366 17367 17368\n\t\tf 3 16288 -16286 16289\n\t\tmu 0 3 17369 17370 17371\n\t\tf 3 16290 16291 -16290\n\t\tmu 0 3 17372 17373 17374\n\t\tf 3 -16291 -16271 16292\n\t\tmu 0 3 17375 17376 17377\n\t\tf 3 16293 16294 -16293\n\t\tmu 0 3 17378 17379 17380\n\t\tf 3 16295 -16294 16296\n\t\tmu 0 3 17381 17382 17383\n\t\tf 3 -16274 16297 -16297\n\t\tmu 0 3 17384 17385 17386\n\t\tf 3 16298 -16287 16299\n\t\tmu 0 3 17387 17388 17389\n\t\tf 3 -16289 16300 -16300\n\t\tmu 0 3 17390 17391 17392\n\t\tf 3 -16281 16301 16302\n\t\tmu 0 3 17393 17394 17395\n\t\tf 3 -16302 -16288 16303\n\t\tmu 0 3 17396 17397 17398\n\t\tf 3 16304 16305 -16303\n\t\tmu 0 3 17399 17400 17401\n\t\tf 3 -16305 16306 16307\n\t\tmu 0 3 17402 17403 17404\n\t\tf 3 16308 16309 -16308\n\t\tmu 0 3 17405 17406 17407\n\t\tf 3 -16309 16310 16311\n\t\tmu 0 3 17408 17409 17410\n\t\tf 3 16312 16313 -16312\n\t\tmu 0 3 17411 17412 17413\n\t\tf 3 -16313 16314 16315\n\t\tmu 0 3 17414 17415 17416\n\t\tf 3 16316 16317 -16316\n\t\tmu 0 3 17417 17418 17419\n\t\tf 3 16318 -16315 16319\n\t\tmu 0 3 17420 17421 17422\n\t\tf 3 16320 16321 -16320\n\t\tmu 0 3 17423 17424 17425\n\t\tf 3 -16318 16322 16323\n\t\tmu 0 3 17426 17427 17428\n\t\tf 3 16324 16325 -16324\n\t\tmu 0 3 17429 17430 17431\n\t\tf 3 -16323 16326 16327\n\t\tmu 0 3 17432 17433 17434\n\t\tf 3 -16327 -16317 16328\n\t\tmu 0 3 17435 17436 17437\n\t\tf 3 16329 16330 -16328\n\t\tmu 0 3 17438 17439 17440\n\t\tf 3 16331 -16322 16332\n\t\tmu 0 3 17441 17442 17443\n\t\tf 3 16333 16334 -16333\n\t\tmu 0 3 17444 17445 17446\n\t\tf 3 -16319 16335 16336\n\t\tmu 0 3 17447 17448 17449\n\t\tf 3 16337 16338 -16337\n\t\tmu 0 3 17450 17451 17452\n\t\tf 3 -16339 16339 -16329\n\t\tmu 0 3 17453 17454 17455\n\t\tf 3 16340 -16336 16341\n\t\tmu 0 3 17456 17457 17458\n\t\tf 3 -16332 16342 -16342\n\t\tmu 0 3 17459 17460 17461\n\t\tf 3 -16321 16343 16344\n\t\tmu 0 3 17462 17463 17464;\n\tsetAttr \".fc[8500:8999]\"\n\t\tf 3 -16344 16345 16346\n\t\tmu 0 3 17465 17466 17467\n\t\tf 3 -16346 -16311 16347\n\t\tmu 0 3 17468 17469 17470\n\t\tf 3 16348 16349 -16348\n\t\tmu 0 3 17471 17472 17473\n\t\tf 3 -16349 -16307 16350\n\t\tmu 0 3 17474 17475 17476\n\t\tf 3 16351 16352 -16351\n\t\tmu 0 3 17477 17478 17479\n\t\tf 3 16353 -16353 16354\n\t\tmu 0 3 17480 17481 17482\n\t\tf 3 16355 16356 -16355\n\t\tmu 0 3 17483 17484 17485\n\t\tf 3 16357 -16352 -16304\n\t\tmu 0 3 17486 17487 17488\n\t\tf 3 -16356 -16358 16358\n\t\tmu 0 3 17489 17490 17491\n\t\tf 3 -16299 16359 -16359\n\t\tmu 0 3 17492 17493 17494\n\t\tf 3 -16354 16360 16361\n\t\tmu 0 3 17495 17496 17497\n\t\tf 3 16362 -16350 -16362\n\t\tmu 0 3 17498 17499 17500\n\t\tf 3 -16363 16363 16364\n\t\tmu 0 3 17501 17502 17503\n\t\tf 3 16365 -16347 -16365\n\t\tmu 0 3 17504 17505 17506\n\t\tf 3 -16345 -16366 16366\n\t\tmu 0 3 17507 17508 17509\n\t\tf 3 16367 -16334 -16367\n\t\tmu 0 3 17510 17511 17512\n\t\tf 3 16368 16369 16370\n\t\tmu 0 3 17513 17514 17515\n\t\tf 3 16371 16372 -16371\n\t\tmu 0 3 17516 17517 17518\n\t\tf 3 -16369 16373 16374\n\t\tmu 0 3 17519 17520 17521\n\t\tf 3 16375 16376 -16375\n\t\tmu 0 3 17522 17523 17524\n\t\tf 3 -16372 16377 16378\n\t\tmu 0 3 17525 17526 17527\n\t\tf 3 16379 16380 -16379\n\t\tmu 0 3 17528 17529 17530\n\t\tf 3 -16380 16381 16382\n\t\tmu 0 3 17531 17532 17533\n\t\tf 3 16383 16384 -16383\n\t\tmu 0 3 17534 17535 17536\n\t\tf 3 -16384 16385 16386\n\t\tmu 0 3 17537 17538 17539\n\t\tf 3 16387 16388 -16387\n\t\tmu 0 3 17540 17541 17542\n\t\tf 3 -16388 16389 16390\n\t\tmu 0 3 17543 17544 17545\n\t\tf 3 16391 16392 -16391\n\t\tmu 0 3 17546 17547 17548\n\t\tf 3 -16392 16393 16394\n\t\tmu 0 3 17549 17550 17551\n\t\tf 3 16395 16396 -16395\n\t\tmu 0 3 17552 17553 17554\n\t\tf 3 -16396 16397 16398\n\t\tmu 0 3 17555 17556 17557\n\t\tf 3 16399 16400 -16399\n\t\tmu 0 3 17558 17559 17560\n\t\tf 3 -16400 16401 16402\n\t\tmu 0 3 17561 17562 17563\n\t\tf 3 16403 16404 -16403\n\t\tmu 0 3 17564 17565 17566\n\t\tf 3 16405 -16390 16406\n\t\tmu 0 3 17567 17568 17569\n\t\tf 3 16407 16408 -16407\n\t\tmu 0 3 17570 17571 17572\n\t\tf 3 -16408 16409 16410\n\t\tmu 0 3 17573 17574 17575\n\t\tf 3 16411 16412 -16411\n\t\tmu 0 3 17576 17577 17578\n\t\tf 3 -16412 16413 16414\n\t\tmu 0 3 17579 17580 17581\n\t\tf 3 16415 16416 -16415\n\t\tmu 0 3 17582 17583 17584\n\t\tf 3 -16416 16417 16418\n\t\tmu 0 3 17585 17586 17587\n\t\tf 3 16419 16420 -16419\n\t\tmu 0 3 17588 17589 17590\n\t\tf 3 -16420 16421 16422\n\t\tmu 0 3 17591 17592 17593\n\t\tf 3 16423 16424 -16423\n\t\tmu 0 3 17594 17595 17596\n\t\tf 3 16425 -16424 16426\n\t\tmu 0 3 17597 17598 17599\n\t\tf 3 -16406 16427 16428\n\t\tmu 0 3 17600 17601 17602\n\t\tf 3 16429 -16394 -16429\n\t\tmu 0 3 17603 17604 17605\n\t\tf 3 -16430 16430 16431\n\t\tmu 0 3 17606 17607 17608\n\t\tf 3 16432 -16398 -16432\n\t\tmu 0 3 17609 17610 17611\n\t\tf 3 -16433 16433 16434\n\t\tmu 0 3 17612 17613 17614\n\t\tf 3 16435 -16402 -16435\n\t\tmu 0 3 17615 17616 17617\n\t\tf 3 16436 16437 16438\n\t\tmu 0 3 17618 17619 17620\n\t\tf 3 16439 -16228 -16439\n\t\tmu 0 3 17621 17622 17623\n\t\tf 3 -16438 16440 16441\n\t\tmu 0 3 17624 17625 17626\n\t\tf 3 16442 16443 -16442\n\t\tmu 0 3 17627 17628 17629\n\t\tf 3 16444 16445 16446\n\t\tmu 0 3 17630 17631 17632\n\t\tf 3 16447 16448 -16447\n\t\tmu 0 3 17633 17634 17635\n\t\tf 3 -16448 16449 16450\n\t\tmu 0 3 17636 17637 17638\n\t\tf 3 16451 16452 -16451\n\t\tmu 0 3 17639 17640 17641\n\t\tf 3 16453 16454 16455\n\t\tmu 0 3 17642 17643 17644\n\t\tf 3 16456 -16452 -16456\n\t\tmu 0 3 17645 17646 17647\n\t\tf 3 16457 16458 16459\n\t\tmu 0 3 17648 17649 17650\n\t\tf 3 -16455 16460 -16460\n\t\tmu 0 3 17651 17652 17653\n\t\tf 3 -16458 16461 16462\n\t\tmu 0 3 17654 17655 17656\n\t\tf 3 16463 16464 -16463\n\t\tmu 0 3 17657 17658 17659\n\t\tf 3 -16464 16465 16466\n\t\tmu 0 3 17660 17661 17662\n\t\tf 3 16467 16468 -16467\n\t\tmu 0 3 17663 17664 17665\n\t\tf 3 -16468 16469 16470\n\t\tmu 0 3 17666 17667 17668\n\t\tf 3 16471 16472 -16471\n\t\tmu 0 3 17669 17670 17671\n\t\tf 3 -16472 16473 16474\n\t\tmu 0 3 17672 17673 17674\n\t\tf 3 16475 16476 -16475\n\t\tmu 0 3 17675 17676 17677\n\t\tf 3 -16476 16477 16478\n\t\tmu 0 3 17678 17679 17680\n\t\tf 3 16479 16480 -16479\n\t\tmu 0 3 17681 17682 17683\n\t\tf 3 -16480 16481 16482\n\t\tmu 0 3 17684 17685 17686\n\t\tf 3 16483 16484 -16483\n\t\tmu 0 3 17687 17688 17689\n\t\tf 3 16485 16486 16487\n\t\tmu 0 3 17690 17691 17692\n\t\tf 3 16488 -16486 16489\n\t\tmu 0 3 17693 17694 17695\n\t\tf 3 16490 16491 -16489\n\t\tmu 0 3 17696 17697 17698\n\t\tf 3 16492 16493 -16492\n\t\tmu 0 3 17699 17700 17701\n\t\tf 3 -16491 16494 16495\n\t\tmu 0 3 17702 17703 17704\n\t\tf 3 16496 16497 -16496\n\t\tmu 0 3 17705 17706 17707\n\t\tf 3 16498 -16497 16499\n\t\tmu 0 3 17708 17709 17710\n\t\tf 3 16500 16501 -16500\n\t\tmu 0 3 17711 17712 17713\n\t\tf 3 16502 -16502 16503\n\t\tmu 0 3 17714 17715 17716\n\t\tf 3 16504 16505 16506\n\t\tmu 0 3 17717 17718 17719\n\t\tf 3 -16404 16507 16508\n\t\tmu 0 3 17720 17721 17722\n\t\tf 3 -16505 16509 16510\n\t\tmu 0 3 17723 17724 17725\n\t\tf 3 16511 16512 -16511\n\t\tmu 0 3 17726 17727 17728\n\t\tf 3 16513 16514 16515\n\t\tmu 0 3 17729 17730 17731\n\t\tf 3 16516 16517 -16516\n\t\tmu 0 3 17732 17733 17734\n\t\tf 3 16518 16519 16520\n\t\tmu 0 3 17735 17736 17737\n\t\tf 3 16521 16522 -16521\n\t\tmu 0 3 17738 17739 17740\n\t\tf 3 16523 16524 16525\n\t\tmu 0 3 17741 17742 17743\n\t\tf 3 16526 16527 -16526\n\t\tmu 0 3 17744 17745 17746\n\t\tf 3 16528 16529 16530\n\t\tmu 0 3 17747 17748 17749\n\t\tf 3 16531 16532 -16531\n\t\tmu 0 3 17750 17751 17752\n\t\tf 3 16533 16534 16535\n\t\tmu 0 3 17753 17754 17755\n\t\tf 3 16536 16537 -16536\n\t\tmu 0 3 17756 17757 17758\n\t\tf 3 16538 16539 16540\n\t\tmu 0 3 17759 17760 17761\n\t\tf 3 16541 16542 -16541\n\t\tmu 0 3 17762 17763 17764\n\t\tf 3 -16542 16543 16544\n\t\tmu 0 3 17765 17766 17767\n\t\tf 3 -16527 16545 -16545\n\t\tmu 0 3 17768 17769 17770\n\t\tf 3 16546 -16544 16547\n\t\tmu 0 3 17771 17772 17773\n\t\tf 3 16548 16549 -16548\n\t\tmu 0 3 17774 17775 17776\n\t\tf 3 16550 16551 16552\n\t\tmu 0 3 17777 17778 17779\n\t\tf 3 16553 16554 -16553\n\t\tmu 0 3 17780 17781 17782\n\t\tf 3 -16552 16555 16556\n\t\tmu 0 3 17783 17784 17785\n\t\tf 3 -16514 16557 -16557\n\t\tmu 0 3 17786 17787 17788\n\t\tf 3 -16554 -16558 16558\n\t\tmu 0 3 17789 17790 17791\n\t\tf 3 -16529 16559 -16559\n\t\tmu 0 3 17792 17793 17794\n\t\tf 3 16560 16561 16562\n\t\tmu 0 3 17795 17796 17797\n\t\tf 3 16563 16564 -16563\n\t\tmu 0 3 17798 17799 17800\n\t\tf 3 16565 16566 16567\n\t\tmu 0 3 17801 17802 17803\n\t\tf 3 16568 16569 -16568\n\t\tmu 0 3 17804 17805 17806\n\t\tf 3 -16570 16570 16571\n\t\tmu 0 3 17807 17808 17809\n\t\tf 3 16572 16573 -16572\n\t\tmu 0 3 17810 17811 17812\n\t\tf 3 16574 16575 16576\n\t\tmu 0 3 17813 17814 17815\n\t\tf 3 16577 16578 -16577\n\t\tmu 0 3 17816 17817 17818\n\t\tf 3 -16567 16579 16580\n\t\tmu 0 3 17819 17820 17821\n\t\tf 3 16581 16582 -16581\n\t\tmu 0 3 17822 17823 17824\n\t\tf 3 -16578 16583 16584\n\t\tmu 0 3 17825 17826 17827\n\t\tf 3 16585 16586 -16585\n\t\tmu 0 3 17828 17829 17830\n\t\tf 3 16587 16588 16589\n\t\tmu 0 3 17831 17832 17833\n\t\tf 3 16590 16591 -16590\n\t\tmu 0 3 17834 17835 17836\n\t\tf 3 16592 -16589 16593\n\t\tmu 0 3 17837 17838 17839\n\t\tf 3 16594 16595 -16594\n\t\tmu 0 3 17840 17841 17842\n\t\tf 3 16596 16597 16598\n\t\tmu 0 3 17843 17844 17845\n\t\tf 3 16599 16600 -16599\n\t\tmu 0 3 17846 17847 17848\n\t\tf 3 -16600 16601 16602\n\t\tmu 0 3 17849 17850 17851\n\t\tf 3 16603 16604 -16603\n\t\tmu 0 3 17852 17853 17854\n\t\tf 3 -16604 16605 16606\n\t\tmu 0 3 17855 17856 17857\n\t\tf 3 16607 16608 -16607\n\t\tmu 0 3 17858 17859 17860\n\t\tf 3 -16608 16609 16610\n\t\tmu 0 3 17861 17862 17863\n\t\tf 3 16611 16612 -16611\n\t\tmu 0 3 17864 17865 17866\n\t\tf 3 -16612 16613 16614\n\t\tmu 0 3 17867 17868 17869\n\t\tf 3 16615 16616 -16615\n\t\tmu 0 3 17870 17871 17872\n\t\tf 3 -16597 16617 16618\n\t\tmu 0 3 17873 17874 17875\n\t\tf 3 16619 16620 -16619\n\t\tmu 0 3 17876 17877 17878\n\t\tf 3 -16620 16621 16622\n\t\tmu 0 3 17879 17880 17881\n\t\tf 3 16623 16624 -16623\n\t\tmu 0 3 17882 17883 17884\n\t\tf 3 -16624 16625 16626\n\t\tmu 0 3 17885 17886 17887\n\t\tf 3 16627 16628 -16627\n\t\tmu 0 3 17888 17889 17890\n\t\tf 3 -16628 16629 16630\n\t\tmu 0 3 17891 17892 17893\n\t\tf 3 16631 16632 -16631\n\t\tmu 0 3 17894 17895 17896\n\t\tf 3 -16632 16633 16634\n\t\tmu 0 3 17897 17898 17899\n\t\tf 3 -16616 16635 -16635\n\t\tmu 0 3 17900 17901 17902\n\t\tf 3 16636 16637 16638\n\t\tmu 0 3 17903 17904 17905\n\t\tf 3 -16582 16639 -16639\n\t\tmu 0 3 17906 17907 17908\n\t\tf 3 16640 16641 16642\n\t\tmu 0 3 17909 17910 17911\n\t\tf 3 16643 -16566 -16643\n\t\tmu 0 3 17912 17913 17914\n\t\tf 3 -16586 16644 16645\n\t\tmu 0 3 17915 17916 17917\n\t\tf 3 16646 16647 -16646\n\t\tmu 0 3 17918 17919 17920\n\t\tf 3 16648 16649 16650\n\t\tmu 0 3 17921 17922 17923\n\t\tf 3 16651 -16579 -16651\n\t\tmu 0 3 17924 17925 17926\n\t\tf 3 16652 16653 16654\n\t\tmu 0 3 17927 17928 17929\n\t\tf 3 -16649 -16587 -16655\n\t\tmu 0 3 17930 17931 17932\n\t\tf 3 16655 16656 16657\n\t\tmu 0 3 17933 17934 17935\n\t\tf 3 16658 16659 -16658\n\t\tmu 0 3 17936 17937 17938\n\t\tf 3 -16659 16660 16661\n\t\tmu 0 3 17939 17940 17941\n\t\tf 3 16662 16663 -16662\n\t\tmu 0 3 17942 17943 17944\n\t\tf 3 16664 16665 16666\n\t\tmu 0 3 17945 17946 17947\n\t\tf 3 16667 -16640 -16667\n\t\tmu 0 3 17948 17949 17950\n\t\tf 3 16668 -16653 16669\n\t\tmu 0 3 17951 17952 17953\n\t\tf 3 -16648 16670 -16670\n\t\tmu 0 3 17954 17955 17956\n\t\tf 3 16671 -16641 16672\n\t\tmu 0 3 17957 17958 17959\n\t\tf 3 -16574 16673 -16673\n\t\tmu 0 3 17960 17961 17962\n\t\tf 3 16674 16675 16676\n\t\tmu 0 3 17963 17964 17965\n\t\tf 3 -16666 16677 -16677\n\t\tmu 0 3 17966 17967 17968\n\t\tf 3 16678 16679 16680\n\t\tmu 0 3 17969 17970 17971\n\t\tf 3 -16669 16681 -16681\n\t\tmu 0 3 17972 17973 17974\n\t\tf 3 16682 -16642 16683\n\t\tmu 0 3 17975 17976 17977\n\t\tf 3 16684 16685 -16684\n\t\tmu 0 3 17978 17979 17980\n\t\tf 3 -16685 -16672 16686\n\t\tmu 0 3 17981 17982 17983\n\t\tf 3 16687 16688 -16687\n\t\tmu 0 3 17984 17985 17986\n\t\tf 3 -16688 -16650 16689\n\t\tmu 0 3 17987 17988 17989\n\t\tf 3 16690 16691 -16690\n\t\tmu 0 3 17990 17991 17992\n\t\tf 3 16692 16693 16694\n\t\tmu 0 3 17993 17994 17995\n\t\tf 3 16695 16696 -16695\n\t\tmu 0 3 17996 17997 17998\n\t\tf 3 16697 -16654 16698\n\t\tmu 0 3 17999 18000 18001\n\t\tf 3 16699 16700 -16699\n\t\tmu 0 3 18002 18003 18004\n\t\tf 3 16701 -16697 16702\n\t\tmu 0 3 18005 18006 18007\n\t\tf 3 -16665 -16580 -16703\n\t\tmu 0 3 18008 18009 18010\n\t\tf 3 -16591 16703 16704\n\t\tmu 0 3 18011 18012 18013\n\t\tf 3 16705 -16550 -16705\n\t\tmu 0 3 18014 18015 18016\n\t\tf 3 16706 16707 16708\n\t\tmu 0 3 18017 18018 18019\n\t\tf 3 16709 -16560 -16709\n\t\tmu 0 3 18020 18021 18022\n\t\tf 3 -16593 16710 16711\n\t\tmu 0 3 18023 18024 18025\n\t\tf 3 16712 -16704 -16712\n\t\tmu 0 3 18026 18027 18028\n\t\tf 3 -16596 16713 16714\n\t\tmu 0 3 18029 18030 18031\n\t\tf 3 16715 -16711 -16715\n\t\tmu 0 3 18032 18033 18034\n\t\tf 3 16716 16717 16718\n\t\tmu 0 3 18035 18036 18037\n\t\tf 3 16719 -16708 -16719\n\t\tmu 0 3 18038 18039 18040\n\t\tf 3 -16663 -16718 16720\n\t\tmu 0 3 18041 18042 18043\n\t\tf 3 16721 16722 -16721\n\t\tmu 0 3 18044 18045 18046\n\t\tf 3 16723 16724 16725\n\t\tmu 0 3 18047 18048 18049\n\t\tf 3 16726 16727 -16726\n\t\tmu 0 3 18049 18050 18047\n\t\tf 3 16728 16729 16730\n\t\tmu 0 3 18051 18052 18053\n\t\tf 3 16731 16732 -16731\n\t\tmu 0 3 18053 18054 18055\n\t\tf 3 -16725 16733 16734\n\t\tmu 0 3 18049 18048 18056\n\t\tf 3 16735 16736 -16735\n\t\tmu 0 3 18056 18057 18049\n\t\tf 3 16737 16738 16739\n\t\tmu 0 3 18058 18059 18060\n\t\tf 3 16740 16741 -16740\n\t\tmu 0 3 18060 18061 18058\n\t\tf 3 -16742 16742 16743\n\t\tmu 0 3 18058 18061 18062\n\t\tf 3 16744 16745 -16744\n\t\tmu 0 3 18062 18063 18058\n\t\tf 3 16746 16747 16748\n\t\tmu 0 3 18064 18065 18066\n\t\tf 3 16749 16750 -16749\n\t\tmu 0 3 18067 18068 18064\n\t\tf 3 16751 16752 16753\n\t\tmu 0 3 18069 18070 18071\n\t\tf 3 16754 16755 -16754\n\t\tmu 0 3 18071 18072 18069\n\t\tf 3 -16756 16756 16757\n\t\tmu 0 3 18069 18072 18073\n\t\tf 3 16758 16759 -16758\n\t\tmu 0 3 18073 18074 18069\n\t\tf 3 16760 16761 16762\n\t\tmu 0 3 18075 18076 18077\n\t\tf 3 16763 16764 -16763\n\t\tmu 0 3 18078 18079 18075\n\t\tf 3 16765 16766 16767\n\t\tmu 0 3 18080 18081 18082\n\t\tf 3 16768 16769 -16768\n\t\tmu 0 3 18082 18083 18080\n\t\tf 3 16770 16771 16772\n\t\tmu 0 3 18084 18085 18086\n\t\tf 3 16773 16774 -16773\n\t\tmu 0 3 18086 18087 18088\n\t\tf 3 -16767 16775 16776\n\t\tmu 0 3 18082 18081 18089\n\t\tf 3 16777 16778 -16777\n\t\tmu 0 3 18089 18090 18082\n\t\tf 3 16779 16780 16781\n\t\tmu 0 3 18091 18092 18093\n\t\tf 3 16782 16783 -16782\n\t\tmu 0 3 18093 18094 18091\n\t\tf 3 16784 16785 16786\n\t\tmu 0 3 18095 18096 18097\n\t\tf 3 16787 16788 -16787\n\t\tmu 0 3 18097 18098 18099\n\t\tf 3 16789 -16784 16790\n\t\tmu 0 3 18100 18091 18094\n\t\tf 3 -16737 16791 -16791\n\t\tmu 0 3 18094 18101 18100\n\t\tf 3 16792 16793 16794\n\t\tmu 0 3 18102 18103 18104\n\t\tf 3 16795 16796 -16795\n\t\tmu 0 3 18104 18105 18102\n\t\tf 3 16797 16798 16799\n\t\tmu 0 3 18106 18107 18108\n\t\tf 3 16800 16801 -16800\n\t\tmu 0 3 18108 18109 18110\n\t\tf 3 -16797 16802 16803\n\t\tmu 0 3 18102 18105 18111\n\t\tf 3 16804 -16776 -16804\n\t\tmu 0 3 18111 18112 18102\n\t\tf 3 16805 -16778 16806\n\t\tmu 0 3 18113 18090 18089\n\t\tf 3 16807 16808 -16807\n\t\tmu 0 3 18089 18114 18113\n\t\tf 3 -16808 -16805 16809\n\t\tmu 0 3 18115 18112 18111\n\t\tf 3 16810 16811 -16810\n\t\tmu 0 3 18111 18116 18115\n\t\tf 3 16812 -16792 16813\n\t\tmu 0 3 18117 18100 18101\n\t\tf 3 16814 16815 -16814\n\t\tmu 0 3 18101 18118 18117\n\t\tf 3 -16815 -16736 16816\n\t\tmu 0 3 18119 18057 18056\n\t\tf 3 16817 16818 -16817\n\t\tmu 0 3 18056 18120 18119\n\t\tf 3 -16818 16819 16820\n\t\tmu 0 3 18121 18122 18123\n\t\tf 3 16821 16822 -16821\n\t\tmu 0 3 18124 18125 18121\n\t\tf 3 16823 16824 16825\n\t\tmu 0 3 18126 18127 18128\n\t\tf 3 -16806 16826 -16826\n\t\tmu 0 3 18129 18130 18126\n\t\tf 3 16827 16828 16829\n\t\tmu 0 3 18131 18132 18133\n\t\tf 3 16830 16831 -16830\n\t\tmu 0 3 18134 18135 18136\n\t\tf 3 16832 16833 16834\n\t\tmu 0 3 18137 18138 18139\n\t\tf 3 16835 16836 -16835\n\t\tmu 0 3 18140 18141 18142\n\t\tf 3 16837 -16831 16838\n\t\tmu 0 3 18143 18144 18145\n\t\tf 3 16839 16840 -16839\n\t\tmu 0 3 18146 18147 18148\n\t\tf 3 16841 16842 16843\n\t\tmu 0 3 18149 18150 18151\n\t\tf 3 16844 16845 -16844\n\t\tmu 0 3 18152 18153 18154\n\t\tf 3 16846 -16842 16847\n\t\tmu 0 3 18155 18156 18157\n\t\tf 3 16848 16849 -16848\n\t\tmu 0 3 18158 18159 18160\n\t\tf 3 16850 16851 16852\n\t\tmu 0 3 18161 18162 18163\n\t\tf 3 16853 16854 -16853\n\t\tmu 0 3 18164 18165 18166\n\t\tf 3 16855 16856 16857\n\t\tmu 0 3 18167 18168 18169\n\t\tf 3 16858 16859 -16858\n\t\tmu 0 3 18170 18171 18172\n\t\tf 3 16860 -16856 16861\n\t\tmu 0 3 18173 18174 18175\n\t\tf 3 16862 16863 -16862\n\t\tmu 0 3 18176 18177 18178\n\t\tf 3 16864 16865 16866\n\t\tmu 0 3 18179 18180 18181\n\t\tf 3 16867 16868 -16867\n\t\tmu 0 3 18182 18183 18184\n\t\tf 3 16869 16870 16871\n\t\tmu 0 3 18185 18186 18187\n\t\tf 3 16872 16873 -16872\n\t\tmu 0 3 18188 18189 18190\n\t\tf 3 16874 16875 16876\n\t\tmu 0 3 18191 18192 18193\n\t\tf 3 16877 16878 -16877\n\t\tmu 0 3 18194 18195 18196\n\t\tf 3 16879 -16873 16880\n\t\tmu 0 3 18197 18198 18199\n\t\tf 3 16881 16882 -16881\n\t\tmu 0 3 18200 18201 18202\n\t\tf 3 16883 16884 16885\n\t\tmu 0 3 18203 18204 18205\n\t\tf 3 16886 16887 -16886\n\t\tmu 0 3 18206 18207 18208\n\t\tf 3 16888 16889 16890\n\t\tmu 0 3 18209 18210 18211\n\t\tf 3 16891 16892 -16891\n\t\tmu 0 3 18212 18213 18214\n\t\tf 3 -16884 16893 16894\n\t\tmu 0 3 18215 18216 18217\n\t\tf 3 16895 -16840 -16895\n\t\tmu 0 3 18218 18219 18220\n\t\tf 3 16896 16897 16898\n\t\tmu 0 3 18221 18222 18223\n\t\tf 3 16899 16900 -16899\n\t\tmu 0 3 18224 18225 18226\n\t\tf 3 16901 16902 16903\n\t\tmu 0 3 18227 18228 18229\n\t\tf 3 16904 16905 -16904\n\t\tmu 0 3 18230 18231 18232\n\t\tf 3 16906 -16897 16907\n\t\tmu 0 3 18233 18234 18235\n\t\tf 3 -16880 16908 -16908\n\t\tmu 0 3 18236 18237 18238\n\t\tf 3 16909 16910 16911\n\t\tmu 0 3 18239 18240 18241\n\t\tf 3 -16883 16912 -16912\n\t\tmu 0 3 18242 18243 18244\n\t\tf 3 16913 16914 16915\n\t\tmu 0 3 18245 18246 18247\n\t\tf 3 -16909 -16911 -16916\n\t\tmu 0 3 18248 18249 18250\n\t\tf 3 16916 16917 16918\n\t\tmu 0 3 18251 18252 18253\n\t\tf 3 -16896 16919 -16919\n\t\tmu 0 3 18254 18255 18256\n\t\tf 3 16920 16921 16922\n\t\tmu 0 3 18257 18258 18259\n\t\tf 3 -16841 -16918 -16923\n\t\tmu 0 3 18260 18261 18262\n\t\tf 3 16923 16924 16925\n\t\tmu 0 3 18263 18264 18265\n\t\tf 3 16926 -16922 -16926\n\t\tmu 0 3 18266 18267 18268\n\t\tf 3 16927 -16913 16928\n\t\tmu 0 3 18269 18270 18271\n\t\tf 3 16929 16930 -16929\n\t\tmu 0 3 18272 18273 18274\n\t\tf 3 16931 16932 16933\n\t\tmu 0 3 18275 18276 18277\n\t\tf 3 16934 16935 -16934\n\t\tmu 0 3 18277 18278 18275\n\t\tf 3 -16936 16936 16937\n\t\tmu 0 3 18275 18278 18279\n\t\tf 3 16938 16939 -16938\n\t\tmu 0 3 18279 18280 18275\n\t\tf 3 16940 16941 16942\n\t\tmu 0 3 18281 18282 18283\n\t\tf 3 16943 16944 -16943\n\t\tmu 0 3 18283 18284 18281\n\t\tf 3 16945 16946 16947\n\t\tmu 0 3 18285 18286 18287\n\t\tf 3 16948 -16935 -16948\n\t\tmu 0 3 18288 18289 18285\n\t\tf 3 -16933 16949 16950\n\t\tmu 0 3 18290 18291 18292\n\t\tf 3 16951 16952 -16951\n\t\tmu 0 3 18292 18293 18290\n\t\tf 3 16953 -16952 16954\n\t\tmu 0 3 18294 18293 18292\n\t\tf 3 16955 16956 -16955\n\t\tmu 0 3 18292 18295 18294\n\t\tf 3 16957 -16957 16958\n\t\tmu 0 3 18296 18294 18295\n\t\tf 3 16959 16960 -16959\n\t\tmu 0 3 18295 18297 18296\n\t\tf 3 16961 -16961 16962\n\t\tmu 0 3 18298 18296 18297\n\t\tf 3 16963 16964 -16963\n\t\tmu 0 3 18297 18299 18298\n\t\tf 3 16965 -16965 16966\n\t\tmu 0 3 18300 18298 18299\n\t\tf 3 16967 16968 -16967\n\t\tmu 0 3 18299 18301 18300\n\t\tf 3 -16969 16969 16970\n\t\tmu 0 3 18300 18301 18302\n\t\tf 3 16971 16972 -16971\n\t\tmu 0 3 18302 18303 18300\n\t\tf 3 16973 -16972 16974\n\t\tmu 0 3 18304 18303 18302\n\t\tf 3 16975 16976 -16975\n\t\tmu 0 3 18302 18305 18304\n\t\tf 3 -16962 16977 16978\n\t\tmu 0 3 18296 18298 18306\n\t\tf 3 16979 16980 -16979\n\t\tmu 0 3 18306 18307 18296\n\t\tf 3 16981 -16978 16982\n\t\tmu 0 3 18308 18306 18298\n\t\tf 3 -16966 16983 -16983\n\t\tmu 0 3 18298 18300 18308\n\t\tf 3 16984 16985 16986\n\t\tmu 0 3 18309 18310 18311\n\t\tf 3 16987 16988 -16987\n\t\tmu 0 3 18311 18312 18309\n\t\tf 3 16989 16990 16991\n\t\tmu 0 3 18313 18314 18315\n\t\tf 3 -16946 -16953 -16992\n\t\tmu 0 3 18316 18317 18313\n\t\tf 3 -16990 -16954 16992\n\t\tmu 0 3 18318 18313 18319\n\t\tf 3 16993 16994 -16993\n\t\tmu 0 3 18319 18320 18321\n\t\tf 3 -16988 16995 16996\n\t\tmu 0 3 18312 18311 18322\n\t\tf 3 16997 -16994 16998\n\t\tmu 0 3 18323 18320 18319\n\t\tf 3 16999 17000 -16999\n\t\tmu 0 3 18319 18324 18323\n\t\tf 3 17001 17002 -16997\n\t\tmu 0 3 18325 18326 18312\n\t\tf 3 17003 17004 17005\n\t\tmu 0 3 18327 18328 18329\n\t\tf 3 17006 -17002 -17006\n\t\tmu 0 3 18329 18326 18330\n\t\tf 3 17007 17008 17009\n\t\tmu 0 3 18331 18332 18333\n\t\tf 3 17010 17011 -17010\n\t\tmu 0 3 18333 18334 18331\n\t\tf 3 -16949 17012 17013\n\t\tmu 0 3 18335 18336 18337\n\t\tf 3 17014 -16937 -17014\n\t\tmu 0 3 18338 18339 18335\n\t\tf 3 17015 17016 17017\n\t\tmu 0 3 18340 18341 18342\n\t\tf 3 17018 -16974 -17018\n\t\tmu 0 3 18342 18343 18340\n\t\tf 3 17019 17020 17021\n\t\tmu 0 3 18344 18345 18346\n\t\tf 3 17022 17023 -17022\n\t\tmu 0 3 18346 18347 18348\n\t\tf 3 -17024 17024 17025\n\t\tmu 0 3 18349 18347 18350\n\t\tf 3 17026 17027 -17026\n\t\tmu 0 3 18350 18351 18352\n\t\tf 3 17028 17029 17030\n\t\tmu 0 3 18342 18353 18354\n\t\tf 3 -16973 -17019 -17031\n\t\tmu 0 3 18354 18343 18342\n\t\tf 3 17031 17032 17033\n\t\tmu 0 3 18355 18356 18357\n\t\tf 3 17034 17035 -17034\n\t\tmu 0 3 18357 18358 18355\n\t\tf 3 17036 -17036 17037\n\t\tmu 0 3 18359 18355 18358\n\t\tf 3 17038 17039 -17038\n\t\tmu 0 3 18358 18360 18359\n\t\tf 3 17040 17041 17042\n\t\tmu 0 3 18361 18362 18363\n\t\tf 3 -16980 17043 -17043\n\t\tmu 0 3 18363 18364 18365\n\t\tf 3 17044 -17044 17045\n\t\tmu 0 3 18366 18367 18364\n\t\tf 3 -16982 17046 -17046\n\t\tmu 0 3 18364 18368 18369\n\t\tf 3 -17047 -16984 17047\n\t\tmu 0 3 18370 18368 18371\n\t\tf 3 -17030 17048 -17048\n\t\tmu 0 3 18371 18372 18373\n\t\tf 3 17049 -17049 17050\n\t\tmu 0 3 18374 18375 18372\n\t\tf 3 17051 17052 -17051\n\t\tmu 0 3 18372 18376 18377\n\t\tf 3 17053 17054 17055\n\t\tmu 0 3 18378 18379 18380\n\t\tf 3 17056 17057 -17056\n\t\tmu 0 3 18380 18381 18382\n\t\tf 3 17058 17059 17060\n\t\tmu 0 3 18383 18384 18385\n\t\tf 3 17061 17062 -17061\n\t\tmu 0 3 18386 18387 18388\n\t\tf 3 17063 17064 17065\n\t\tmu 0 3 18389 18390 18391\n\t\tf 3 17066 17067 -17066\n\t\tmu 0 3 18391 18392 18389\n\t\tf 3 17068 17069 17070\n\t\tmu 0 3 18393 18394 18395\n\t\tf 3 17071 17072 -17071\n\t\tmu 0 3 18395 18396 18393\n\t\tf 3 17073 -17069 17074\n\t\tmu 0 3 18397 18394 18393\n\t\tf 3 17075 17076 -17075\n\t\tmu 0 3 18393 18398 18397\n\t\tf 3 -17072 17077 17078\n\t\tmu 0 3 18396 18395 18399\n\t\tf 3 17079 17080 -17079\n\t\tmu 0 3 18399 18400 18396\n\t\tf 3 -17080 17081 17082\n\t\tmu 0 3 18400 18399 18401\n\t\tf 3 17083 17084 -17083\n\t\tmu 0 3 18401 18402 18400\n\t\tf 3 -17077 17085 17086\n\t\tmu 0 3 18397 18398 18403\n\t\tf 3 17087 17088 -17087\n\t\tmu 0 3 18403 18404 18397\n\t\tf 3 -17084 17089 17090\n\t\tmu 0 3 18402 18401 18405\n\t\tf 3 17091 17092 -17091\n\t\tmu 0 3 18405 18406 18402\n\t\tf 3 17093 -17092 17094\n\t\tmu 0 3 18407 18406 18405\n\t\tf 3 17095 17096 -17095\n\t\tmu 0 3 18405 18408 18407\n\t\tf 3 17097 17098 17099\n\t\tmu 0 3 18409 18410 18411\n\t\tf 3 17100 17101 -17100\n\t\tmu 0 3 18411 18412 18409\n\t\tf 3 -17101 17102 17103\n\t\tmu 0 3 18412 18411 18413\n\t\tf 3 17104 17105 -17104\n\t\tmu 0 3 18413 18414 18412\n\t\tf 3 -17105 17106 17107\n\t\tmu 0 3 18414 18413 18415\n\t\tf 3 17108 17109 -17108\n\t\tmu 0 3 18415 18416 18414\n\t\tf 3 -17109 17110 17111\n\t\tmu 0 3 18416 18415 18417\n\t\tf 3 17112 17113 -17112\n\t\tmu 0 3 18417 18418 18416\n\t\tf 3 17114 -17113 17115\n\t\tmu 0 3 18419 18418 18417\n\t\tf 3 17116 17117 -17116\n\t\tmu 0 3 18417 18420 18419\n\t\tf 3 17118 17119 17120\n\t\tmu 0 3 18421 18422 18423\n\t\tf 3 17121 17122 -17121\n\t\tmu 0 3 18423 18424 18421\n\t\tf 3 17123 17124 17125\n\t\tmu 0 3 18425 18426 18427\n\t\tf 3 17126 17127 -17126\n\t\tmu 0 3 18427 18428 18425\n\t\tf 3 17128 -17124 17129\n\t\tmu 0 3 18429 18426 18425\n\t\tf 3 17130 17131 -17130\n\t\tmu 0 3 18425 18430 18429\n\t\tf 3 -17127 17132 17133\n\t\tmu 0 3 18428 18427 18431\n\t\tf 3 17134 17135 -17134\n\t\tmu 0 3 18431 18432 18428\n\t\tf 3 -17135 17136 17137\n\t\tmu 0 3 18432 18431 18433\n\t\tf 3 17138 17139 -17138\n\t\tmu 0 3 18433 18434 18432\n\t\tf 3 -17132 17140 17141\n\t\tmu 0 3 18429 18430 18435\n\t\tf 3 17142 17143 -17142\n\t\tmu 0 3 18435 18436 18429\n\t\tf 3 -17139 17144 17145\n\t\tmu 0 3 18434 18433 18437\n\t\tf 3 17146 17147 -17146\n\t\tmu 0 3 18437 18438 18434\n\t\tf 3 17148 -17147 17149\n\t\tmu 0 3 18439 18438 18437\n\t\tf 3 17150 17151 -17150\n\t\tmu 0 3 18437 18440 18439\n\t\tf 3 17152 17153 17154\n\t\tmu 0 3 18441 18442 18443\n\t\tf 3 17155 17156 -17155\n\t\tmu 0 3 18443 18444 18441\n\t\tf 3 -17154 17157 17158\n\t\tmu 0 3 18443 18442 18445\n\t\tf 3 17159 17160 -17159\n\t\tmu 0 3 18445 18446 18443\n\t\tf 3 17161 -17160 17162\n\t\tmu 0 3 18447 18446 18445\n\t\tf 3 17163 17164 -17163\n\t\tmu 0 3 18445 18448 18447\n\t\tf 3 -17164 17165 17166\n\t\tmu 0 3 18448 18445 18449\n\t\tf 3 17167 17168 -17167\n\t\tmu 0 3 18449 18450 18448\n\t\tf 3 17169 -17166 17170\n\t\tmu 0 3 18451 18449 18445\n\t\tf 3 -17158 17171 -17171\n\t\tmu 0 3 18445 18442 18451\n\t\tf 3 -17165 17172 17173\n\t\tmu 0 3 18447 18448 18452\n\t\tf 3 17174 17175 -17174\n\t\tmu 0 3 18452 18453 18447\n\t\tf 3 17176 -17175 17177\n\t\tmu 0 3 18454 18453 18452\n\t\tf 3 17178 17179 -17178\n\t\tmu 0 3 18452 18455 18454\n\t\tf 3 17180 17181 17182\n\t\tmu 0 3 18456 18457 18458\n\t\tf 3 17183 17184 -17183\n\t\tmu 0 3 18458 18459 18456\n\t\tf 3 17185 17186 17187\n\t\tmu 0 3 18460 18461 18462\n\t\tf 3 17188 17189 -17188\n\t\tmu 0 3 18462 18463 18460\n\t\tf 3 17190 -17190 17191\n\t\tmu 0 3 18464 18460 18463\n\t\tf 3 17192 17193 -17192\n\t\tmu 0 3 18463 18465 18464\n\t\tf 3 17194 -17194 17195\n\t\tmu 0 3 18466 18464 18465\n\t\tf 3 17196 17197 -17196\n\t\tmu 0 3 18465 18467 18466\n\t\tf 3 17198 -17198 17199\n\t\tmu 0 3 18468 18466 18467\n\t\tf 3 17200 17201 -17200\n\t\tmu 0 3 18467 18469 18468\n\t\tf 3 17202 -17202 17203\n\t\tmu 0 3 18470 18468 18469\n\t\tf 3 17204 17205 -17204\n\t\tmu 0 3 18469 18471 18470\n\t\tf 3 17206 -17206 17207\n\t\tmu 0 3 18472 18470 18471\n\t\tf 3 17208 17209 -17208\n\t\tmu 0 3 18471 18473 18472\n\t\tf 3 17210 -17210 17211\n\t\tmu 0 3 18474 18472 18473\n\t\tf 3 17212 17213 -17212\n\t\tmu 0 3 18473 18475 18474\n\t\tf 3 17214 -17214 17215\n\t\tmu 0 3 18476 18474 18475\n\t\tf 3 17216 17217 -17216\n\t\tmu 0 3 18475 18477 18476\n\t\tf 3 17218 -17218 17219\n\t\tmu 0 3 18478 18476 18477\n\t\tf 3 17220 17221 -17220\n\t\tmu 0 3 18477 18479 18478\n\t\tf 3 17222 -17222 17223\n\t\tmu 0 3 18480 18478 18479\n\t\tf 3 17224 17225 -17224\n\t\tmu 0 3 18479 18481 18480\n\t\tf 3 17226 -17226 17227\n\t\tmu 0 3 18482 18480 18481\n\t\tf 3 17228 17229 -17228\n\t\tmu 0 3 18481 18483 18482\n\t\tf 3 -17230 17230 17231\n\t\tmu 0 3 18482 18483 18484\n\t\tf 3 17232 17233 -17232\n\t\tmu 0 3 18484 18485 18482\n\t\tf 3 17234 -17233 17235\n\t\tmu 0 3 18486 18485 18484\n\t\tf 3 17236 17237 -17236\n\t\tmu 0 3 18484 18487 18486\n\t\tf 3 17238 17239 17240\n\t\tmu 0 3 18488 18489 18490\n\t\tf 3 17241 17242 -17241\n\t\tmu 0 3 18490 18491 18488\n\t\tf 3 17243 -17242 17244\n\t\tmu 0 3 18492 18491 18490\n\t\tf 3 17245 17246 -17245\n\t\tmu 0 3 18490 18493 18492\n\t\tf 3 -17247 17247 17248\n\t\tmu 0 3 18492 18493 18494\n\t\tf 3 17249 17250 -17249\n\t\tmu 0 3 18494 18495 18492\n\t\tf 3 -17250 17251 17252\n\t\tmu 0 3 18495 18494 18496\n\t\tf 3 17253 17254 -17253\n\t\tmu 0 3 18496 18497 18495\n\t\tf 3 17255 -17254 17256\n\t\tmu 0 3 18498 18497 18496\n\t\tf 3 17257 17258 -17257\n\t\tmu 0 3 18496 18499 18498\n\t\tf 3 -17255 17259 17260\n\t\tmu 0 3 18495 18497 18500\n\t\tf 3 17261 17262 -17261\n\t\tmu 0 3 18500 18501 18495\n\t\tf 3 17263 -17260 17264\n\t\tmu 0 3 18502 18500 18497\n\t\tf 3 -17256 17265 -17265\n\t\tmu 0 3 18497 18498 18502\n\t\tf 3 -17239 17266 17267\n\t\tmu 0 3 18489 18488 18503\n\t\tf 3 17268 -17267 17269\n\t\tmu 0 3 18504 18503 18488\n\t\tf 3 17270 17271 -17270\n\t\tmu 0 3 18488 18505 18504\n\t\tf 3 17272 -17269 17273\n\t\tmu 0 3 18506 18503 18504\n\t\tf 3 17274 17275 -17274\n\t\tmu 0 3 18504 18507 18506\n\t\tf 3 -17273 17276 17277\n\t\tmu 0 3 18503 18506 18508\n\t\tf 3 17278 17279 -17278\n\t\tmu 0 3 18508 18509 18503\n\t\tf 3 -17280 17280 -17268\n\t\tmu 0 3 18503 18509 18489\n\t\tf 3 17281 -17276 17282\n\t\tmu 0 3 18510 18506 18507\n\t\tf 3 17283 17284 -17283\n\t\tmu 0 3 18507 18511 18510\n\t\tf 3 17285 -17285 17286\n\t\tmu 0 3 18512 18510 18511\n\t\tf 3 17287 17288 -17287\n\t\tmu 0 3 18511 18513 18512\n\t\tf 3 -17286 17289 17290\n\t\tmu 0 3 18510 18512 18514\n\t\tf 3 17291 17292 -17291\n\t\tmu 0 3 18514 18515 18510\n\t\tf 3 -17282 -17293 17293\n\t\tmu 0 3 18506 18510 18515\n\t\tf 3 17294 -17277 -17294\n\t\tmu 0 3 18515 18508 18506\n\t\tf 3 17295 -17289 17296\n\t\tmu 0 3 18516 18512 18513\n\t\tf 3 17297 17298 -17297\n\t\tmu 0 3 18513 18517 18516\n\t\tf 3 17299 -17299 17300\n\t\tmu 0 3 18518 18516 18517\n\t\tf 3 17301 17302 -17301\n\t\tmu 0 3 18517 18519 18518\n\t\tf 3 -17300 17303 17304\n\t\tmu 0 3 18516 18518 18520\n\t\tf 3 17305 -17304 17306\n\t\tmu 0 3 18521 18520 18518\n\t\tf 3 17307 17308 -17307\n\t\tmu 0 3 18518 18522 18521\n\t\tf 3 -17308 -17303 17309\n\t\tmu 0 3 18522 18518 18519\n\t\tf 3 17310 -17309 17311\n\t\tmu 0 3 18523 18521 18522\n\t\tf 3 17312 17313 -17312\n\t\tmu 0 3 18522 18524 18523\n\t\tf 3 17314 17315 -17305\n\t\tmu 0 3 18520 18525 18516\n\t\tf 3 -17296 -17316 17316\n\t\tmu 0 3 18512 18516 18525\n\t\tf 3 17317 -17290 -17317\n\t\tmu 0 3 18525 18514 18512\n\t\tf 3 17318 17319 -17310\n\t\tmu 0 3 18519 18526 18522\n\t\tf 3 -17320 17320 17321\n\t\tmu 0 3 18522 18526 18527\n\t\tf 3 17322 -17313 -17322\n\t\tmu 0 3 18527 18524 18522\n\t\tf 3 17323 17324 17325\n\t\tmu 0 3 18528 18529 18530\n\t\tf 3 17326 17327 -17326\n\t\tmu 0 3 18530 18531 18528\n\t\tf 3 -17327 17328 17329\n\t\tmu 0 3 18531 18530 18532\n\t\tf 3 17330 17331 -17330\n\t\tmu 0 3 18532 18533 18531\n\t\tf 3 17332 17333 17334\n\t\tmu 0 3 18534 18535 18536\n\t\tf 3 17335 17336 -17335\n\t\tmu 0 3 18537 18538 18534\n\t\tf 3 -17336 17337 17338\n\t\tmu 0 3 18538 18539 18540\n\t\tf 3 17339 17340 -17339\n\t\tmu 0 3 18541 18542 18538\n\t\tf 3 17341 17342 17343\n\t\tmu 0 3 18543 18544 18545\n\t\tf 3 17344 17345 -17344\n\t\tmu 0 3 18545 18546 18543\n\t\tf 3 -17345 17346 17347\n\t\tmu 0 3 18546 18545 18547\n\t\tf 3 17348 17349 -17348\n\t\tmu 0 3 18547 18548 18546\n\t\tf 3 17350 -17349 17351\n\t\tmu 0 3 18549 18548 18547\n\t\tf 3 17352 17353 -17352\n\t\tmu 0 3 18547 18550 18549;\n\tsetAttr \".fc[9000:9499]\"\n\t\tf 3 17354 17355 17356\n\t\tmu 0 3 18551 18545 18552\n\t\tf 3 17357 17358 -17357\n\t\tmu 0 3 18552 18553 18554\n\t\tf 3 17359 -17359 17360\n\t\tmu 0 3 18555 18556 18553\n\t\tf 3 17361 -17356 17362\n\t\tmu 0 3 18557 18552 18545\n\t\tf 3 -17343 17363 -17363\n\t\tmu 0 3 18545 18544 18557\n\t\tf 3 17364 17365 -17361\n\t\tmu 0 3 18553 18558 18559\n\t\tf 3 17366 17367 17368\n\t\tmu 0 3 18560 18561 18562\n\t\tf 3 -17354 17369 -17369\n\t\tmu 0 3 18562 18563 18560\n\t\tf 3 17370 17371 17372\n\t\tmu 0 3 18564 18565 18566\n\t\tf 3 17373 17374 -17373\n\t\tmu 0 3 18567 18568 18564\n\t\tf 3 17375 17376 17377\n\t\tmu 0 3 18569 18570 18571\n\t\tf 3 17378 17379 -17378\n\t\tmu 0 3 18571 18572 18569\n\t\tf 3 17380 17381 17382\n\t\tmu 0 3 18573 18574 18575\n\t\tf 3 17383 17384 -17383\n\t\tmu 0 3 18575 18576 18577\n\t\tf 3 -17331 17385 17386\n\t\tmu 0 3 18578 18579 18580\n\t\tf 3 17387 17388 -17387\n\t\tmu 0 3 18580 18581 18578\n\t\tf 3 17389 -17388 17390\n\t\tmu 0 3 18582 18581 18580\n\t\tf 3 17391 17392 -17391\n\t\tmu 0 3 18580 18583 18582\n\t\tf 3 17393 17394 17395\n\t\tmu 0 3 18584 18585 18586\n\t\tf 3 17396 17397 -17396\n\t\tmu 0 3 18586 18587 18588\n\t\tf 3 17398 -17395 17399\n\t\tmu 0 3 18589 18586 18590\n\t\tf 3 17400 17401 -17400\n\t\tmu 0 3 18591 18592 18589\n\t\tf 3 17402 -17393 17403\n\t\tmu 0 3 18593 18582 18583\n\t\tf 3 17404 17405 -17404\n\t\tmu 0 3 18583 18594 18593\n\t\tf 3 17406 -17406 17407\n\t\tmu 0 3 18595 18593 18594\n\t\tf 3 17408 17409 -17408\n\t\tmu 0 3 18594 18596 18595\n\t\tf 3 17410 -17410 17411\n\t\tmu 0 3 18597 18595 18596\n\t\tf 3 17412 17413 -17412\n\t\tmu 0 3 18596 18598 18597\n\t\tf 3 17414 -17414 17415\n\t\tmu 0 3 18599 18597 18598\n\t\tf 3 17416 17417 -17416\n\t\tmu 0 3 18598 18600 18599\n\t\tf 3 17418 -17418 17419\n\t\tmu 0 3 18601 18599 18600\n\t\tf 3 17420 17421 -17420\n\t\tmu 0 3 18600 18602 18601\n\t\tf 3 -17422 17422 17423\n\t\tmu 0 3 18601 18602 18603\n\t\tf 3 17424 17425 -17424\n\t\tmu 0 3 18603 18604 18601\n\t\tf 3 17426 17427 17428\n\t\tmu 0 3 18605 18606 18607\n\t\tf 3 17429 17430 -17429\n\t\tmu 0 3 18607 18608 18609\n\t\tf 3 17431 -17431 17432\n\t\tmu 0 3 18610 18611 18608\n\t\tf 3 17433 -17428 17434\n\t\tmu 0 3 18612 18607 18613\n\t\tf 3 17435 17436 -17435\n\t\tmu 0 3 18614 18615 18612\n\t\tf 3 17437 17438 17439\n\t\tmu 0 3 18616 18617 18618\n\t\tf 3 17440 -17439 -17433\n\t\tmu 0 3 18608 18618 18619\n\t\tf 3 17441 17442 -17440\n\t\tmu 0 3 18618 18620 18621\n\t\tf 3 17443 -17443 17444\n\t\tmu 0 3 18622 18623 18620\n\t\tf 3 17445 17446 -17445\n\t\tmu 0 3 18620 18624 18625\n\t\tf 3 17447 -17447 17448\n\t\tmu 0 3 18626 18627 18624\n\t\tf 3 17449 -17402 -17449\n\t\tmu 0 3 18624 18589 18628\n\t\tf 3 17450 17451 17452\n\t\tmu 0 3 18629 18630 18631\n\t\tf 3 17453 17454 -17453\n\t\tmu 0 3 18631 18632 18629\n\t\tf 3 -17454 17455 17456\n\t\tmu 0 3 18632 18631 18633\n\t\tf 3 17457 17458 -17457\n\t\tmu 0 3 18633 18634 18632\n\t\tf 3 -17458 17459 17460\n\t\tmu 0 3 18634 18633 18635\n\t\tf 3 17461 17462 17463\n\t\tmu 0 3 18636 18637 18638\n\t\tf 3 17464 17465 -17464\n\t\tmu 0 3 18638 18639 18636\n\t\tf 3 17466 -17462 17467\n\t\tmu 0 3 18640 18637 18636\n\t\tf 3 17468 17469 -17468\n\t\tmu 0 3 18636 18641 18640\n\t\tf 3 -17465 17470 17471\n\t\tmu 0 3 18639 18638 18642\n\t\tf 3 17472 17473 -17472\n\t\tmu 0 3 18642 18643 18639\n\t\tf 3 -17473 17474 17475\n\t\tmu 0 3 18643 18642 18644\n\t\tf 3 17476 17477 -17476\n\t\tmu 0 3 18644 18645 18643\n\t\tf 3 -17477 17478 17479\n\t\tmu 0 3 18645 18644 18646\n\t\tf 3 17480 17481 -17480\n\t\tmu 0 3 18646 18647 18645\n\t\tf 3 -17481 17482 17483\n\t\tmu 0 3 18647 18646 18648\n\t\tf 3 17484 17485 -17484\n\t\tmu 0 3 18648 18649 18647\n\t\tf 3 17486 17487 17488\n\t\tmu 0 3 18650 18651 18652\n\t\tf 3 17489 17490 -17489\n\t\tmu 0 3 18652 18653 18654\n\t\tf 3 -17490 17491 17492\n\t\tmu 0 3 18653 18652 18655\n\t\tf 3 17493 17494 -17493\n\t\tmu 0 3 18655 18656 18653\n\t\tf 3 -17470 17495 17496\n\t\tmu 0 3 18640 18641 18657\n\t\tf 3 17497 17498 -17497\n\t\tmu 0 3 18657 18658 18640\n\t\tf 3 17499 -17498 17500\n\t\tmu 0 3 18659 18658 18657\n\t\tf 3 17501 17502 -17501\n\t\tmu 0 3 18657 18660 18659\n\t\tf 3 17503 17504 17505\n\t\tmu 0 3 18661 18662 18663\n\t\tf 3 17506 17507 -17506\n\t\tmu 0 3 18663 18664 18661\n\t\tf 3 17508 -17504 17509\n\t\tmu 0 3 18665 18662 18661\n\t\tf 3 17510 17511 -17510\n\t\tmu 0 3 18661 18666 18665\n\t\tf 3 -17507 17512 17513\n\t\tmu 0 3 18664 18663 18667\n\t\tf 3 17514 17515 -17514\n\t\tmu 0 3 18667 18668 18664\n\t\tf 3 -17515 17516 17517\n\t\tmu 0 3 18668 18667 18669\n\t\tf 3 17518 17519 -17518\n\t\tmu 0 3 18669 18670 18668\n\t\tf 3 -17519 17520 17521\n\t\tmu 0 3 18670 18669 18671\n\t\tf 3 17522 17523 -17522\n\t\tmu 0 3 18671 18672 18670\n\t\tf 3 -17523 17524 17525\n\t\tmu 0 3 18672 18671 18673\n\t\tf 3 17526 17527 -17526\n\t\tmu 0 3 18673 18674 18672\n\t\tf 3 -17527 17528 17529\n\t\tmu 0 3 18674 18673 18675\n\t\tf 3 17530 17531 -17530\n\t\tmu 0 3 18675 18676 18674\n\t\tf 3 -17531 17532 17533\n\t\tmu 0 3 18676 18675 18677\n\t\tf 3 17534 17535 -17534\n\t\tmu 0 3 18677 18678 18676\n\t\tf 3 -17512 17536 17537\n\t\tmu 0 3 18665 18666 18679\n\t\tf 3 17538 17539 -17538\n\t\tmu 0 3 18679 18680 18665\n\t\tf 3 17540 -17539 17541\n\t\tmu 0 3 18681 18680 18679\n\t\tf 3 17542 17543 -17542\n\t\tmu 0 3 18679 18682 18681\n\t\tf 3 17544 -17535 17545\n\t\tmu 0 3 18683 18678 18677\n\t\tf 3 17546 17547 -17546\n\t\tmu 0 3 18677 18684 18683\n\t\tf 3 17548 -17548 17549\n\t\tmu 0 3 18685 18683 18684\n\t\tf 3 17550 17551 -17550\n\t\tmu 0 3 18684 18686 18685\n\t\tf 3 17552 17553 17554\n\t\tmu 0 3 18687 18688 18689\n\t\tf 3 17555 17556 -17555\n\t\tmu 0 3 18689 18690 18687\n\t\tf 3 17557 -17557 17558\n\t\tmu 0 3 18691 18687 18690\n\t\tf 3 17559 17560 -17559\n\t\tmu 0 3 18690 18692 18691\n\t\tf 3 17561 -17561 17562\n\t\tmu 0 3 18693 18691 18692\n\t\tf 3 17563 17564 -17563\n\t\tmu 0 3 18692 18694 18693\n\t\tf 3 17565 -17565 17566\n\t\tmu 0 3 18695 18693 18694\n\t\tf 3 17567 17568 -17567\n\t\tmu 0 3 18694 18696 18695\n\t\tf 3 17569 -17569 17570\n\t\tmu 0 3 18697 18695 18696\n\t\tf 3 17571 17572 -17571\n\t\tmu 0 3 18696 18698 18697\n\t\tf 3 17573 -17573 17574\n\t\tmu 0 3 18699 18697 18698\n\t\tf 3 17575 17576 -17575\n\t\tmu 0 3 18698 18700 18699\n\t\tf 3 17577 -17577 17578\n\t\tmu 0 3 18701 18699 18700\n\t\tf 3 17579 17580 -17579\n\t\tmu 0 3 18700 18702 18701\n\t\tf 3 17581 -17581 17582\n\t\tmu 0 3 18703 18701 18702\n\t\tf 3 17583 17584 -17583\n\t\tmu 0 3 18702 18704 18703\n\t\tf 3 -17585 17585 17586\n\t\tmu 0 3 18703 18704 18705\n\t\tf 3 17587 17588 -17587\n\t\tmu 0 3 18705 18706 18703\n\t\tf 3 -17588 17589 17590\n\t\tmu 0 3 18706 18705 18707\n\t\tf 3 17591 17592 -17591\n\t\tmu 0 3 18707 18708 18706\n\t\tf 3 17593 17594 17595\n\t\tmu 0 3 18709 18710 18689\n\t\tf 3 -17554 17596 -17596\n\t\tmu 0 3 18689 18688 18709\n\t\tf 3 17597 -17594 17598\n\t\tmu 0 3 18711 18710 18709\n\t\tf 3 17599 17600 -17599\n\t\tmu 0 3 18709 18712 18711\n\t\tf 3 17601 17602 17603\n\t\tmu 0 3 18713 18714 18715\n\t\tf 3 17604 17605 -17604\n\t\tmu 0 3 18715 18716 18713\n\t\tf 3 17606 -17603 17607\n\t\tmu 0 3 18717 18715 18714\n\t\tf 3 17608 17609 -17608\n\t\tmu 0 3 18714 18718 18717\n\t\tf 3 -17607 17610 17611\n\t\tmu 0 3 18715 18717 18719\n\t\tf 3 17612 17613 -17612\n\t\tmu 0 3 18719 18720 18715\n\t\tf 3 17614 -17614 17615\n\t\tmu 0 3 18721 18715 18720\n\t\tf 3 17616 17617 -17616\n\t\tmu 0 3 18720 18722 18721\n\t\tf 3 -17615 17618 17619\n\t\tmu 0 3 18715 18721 18723\n\t\tf 3 17620 17621 -17620\n\t\tmu 0 3 18723 18724 18715\n\t\tf 3 17622 -17622 17623\n\t\tmu 0 3 18725 18715 18724\n\t\tf 3 17624 17625 -17624\n\t\tmu 0 3 18724 18726 18725\n\t\tf 3 -17623 17626 17627\n\t\tmu 0 3 18715 18725 18727\n\t\tf 3 17628 17629 -17628\n\t\tmu 0 3 18727 18728 18715\n\t\tf 3 -17605 -17630 17630\n\t\tmu 0 3 18716 18715 18728\n\t\tf 3 17631 17632 -17631\n\t\tmu 0 3 18728 18729 18716\n\t\tf 3 17633 17634 17635\n\t\tmu 0 3 18730 18731 18732\n\t\tf 3 17636 17637 -17636\n\t\tmu 0 3 18732 18733 18730\n\t\tf 3 17638 -17634 17639\n\t\tmu 0 3 18734 18731 18730\n\t\tf 3 17640 17641 -17640\n\t\tmu 0 3 18730 18735 18734\n\t\tf 3 -17637 17642 17643\n\t\tmu 0 3 18733 18732 18736\n\t\tf 3 17644 -17471 -17644\n\t\tmu 0 3 18736 18737 18733\n\t\tf 3 -17645 17645 17646\n\t\tmu 0 3 18737 18736 18738\n\t\tf 3 17647 -17475 -17647\n\t\tmu 0 3 18738 18739 18737\n\t\tf 3 -17642 17648 17649\n\t\tmu 0 3 18734 18735 18740\n\t\tf 3 17650 17651 -17650\n\t\tmu 0 3 18740 18741 18734\n\t\tf 3 17652 -17651 17653\n\t\tmu 0 3 18742 18741 18740\n\t\tf 3 17654 17655 -17654\n\t\tmu 0 3 18740 18743 18742\n\t\tf 3 -17648 17656 17657\n\t\tmu 0 3 18739 18738 18744\n\t\tf 3 17658 -17479 -17658\n\t\tmu 0 3 18744 18745 18739\n\t\tf 3 -17483 -17659 17659\n\t\tmu 0 3 18746 18745 18744\n\t\tf 3 17660 17661 -17660\n\t\tmu 0 3 18744 18747 18746\n\t\tf 3 17662 17663 17664\n\t\tmu 0 3 18748 18749 18750\n\t\tf 3 17665 17666 -17665\n\t\tmu 0 3 18750 18751 18748\n\t\tf 3 17667 -17663 17668\n\t\tmu 0 3 18752 18749 18748\n\t\tf 3 17669 17670 -17669\n\t\tmu 0 3 18748 18753 18752\n\t\tf 3 17671 17672 17673\n\t\tmu 0 3 18754 18755 18756\n\t\tf 3 17674 17675 -17674\n\t\tmu 0 3 18756 18757 18754\n\t\tf 3 17676 -17676 17677\n\t\tmu 0 3 18758 18754 18757\n\t\tf 3 17678 17679 -17678\n\t\tmu 0 3 18757 18759 18758\n\t\tf 3 17680 -17680 17681\n\t\tmu 0 3 18760 18758 18759\n\t\tf 3 17682 17683 -17682\n\t\tmu 0 3 18759 18761 18760\n\t\tf 3 17684 -17684 17685\n\t\tmu 0 3 18762 18760 18761\n\t\tf 3 17686 17687 -17686\n\t\tmu 0 3 18761 18763 18762\n\t\tf 3 17688 -17673 17689\n\t\tmu 0 3 18764 18756 18755\n\t\tf 3 17690 17691 -17690\n\t\tmu 0 3 18755 18765 18764\n\t\tf 3 17692 -17692 17693\n\t\tmu 0 3 18766 18764 18765\n\t\tf 3 17694 17695 -17694\n\t\tmu 0 3 18765 18767 18766\n\t\tf 3 17696 -17696 17697\n\t\tmu 0 3 18768 18766 18767\n\t\tf 3 17698 17699 -17698\n\t\tmu 0 3 18767 18769 18768\n\t\tf 3 17700 -17700 17701\n\t\tmu 0 3 18770 18768 18769\n\t\tf 3 17702 17703 -17702\n\t\tmu 0 3 18769 18771 18770\n\t\tf 3 17704 -17704 17705\n\t\tmu 0 3 18772 18770 18771\n\t\tf 3 17706 17707 -17706\n\t\tmu 0 3 18771 18773 18772\n\t\tf 3 17708 -17708 17709\n\t\tmu 0 3 18774 18772 18773\n\t\tf 3 17710 17711 -17710\n\t\tmu 0 3 18773 18775 18774\n\t\tf 3 17712 -17712 17713\n\t\tmu 0 3 18776 18774 18775\n\t\tf 3 17714 17715 -17714\n\t\tmu 0 3 18775 18777 18776\n\t\tf 3 17716 -17716 17717\n\t\tmu 0 3 18778 18776 18777\n\t\tf 3 17718 17719 -17718\n\t\tmu 0 3 18777 18779 18778\n\t\tf 3 17720 17721 17722\n\t\tmu 0 3 18780 18781 18782\n\t\tf 3 17723 17724 -17723\n\t\tmu 0 3 18782 18783 18780\n\t\tf 3 17725 -17725 17726\n\t\tmu 0 3 18784 18780 18783\n\t\tf 3 17727 17728 -17727\n\t\tmu 0 3 18783 18785 18784\n\t\tf 3 17729 17730 17731\n\t\tmu 0 3 18786 18787 18788\n\t\tf 3 17732 17733 -17732\n\t\tmu 0 3 18789 18790 18786\n\t\tf 3 17734 -17734 17735\n\t\tmu 0 3 18791 18786 18790\n\t\tf 3 17736 17737 -17736\n\t\tmu 0 3 18790 18792 18791\n\t\tf 3 17738 -17729 17739\n\t\tmu 0 3 18793 18784 18785\n\t\tf 3 -17652 17740 -17740\n\t\tmu 0 3 18785 18794 18793\n\t\tf 3 17741 -17741 17742\n\t\tmu 0 3 18795 18793 18794\n\t\tf 3 -17653 17743 -17743\n\t\tmu 0 3 18794 18796 18795\n\t\tf 3 17744 17745 17746\n\t\tmu 0 3 18797 18798 18799\n\t\tf 3 17747 17748 -17747\n\t\tmu 0 3 18799 18800 18797\n\t\tf 3 -17748 17749 17750\n\t\tmu 0 3 18800 18799 18801\n\t\tf 3 -15992 17751 -17751\n\t\tmu 0 3 18801 18802 18800\n\t\tf 3 17752 17753 17754\n\t\tmu 0 3 18803 18804 18805\n\t\tf 3 17755 17756 -17755\n\t\tmu 0 3 18806 18807 18808\n\t\tf 3 17757 -17753 17758\n\t\tmu 0 3 18809 18810 18811\n\t\tf 3 17759 17760 -17759\n\t\tmu 0 3 18812 18813 18814\n\t\tf 3 17761 17762 17763\n\t\tmu 0 3 18815 18816 18817\n\t\tf 3 17764 17765 -17764\n\t\tmu 0 3 18818 18819 18820\n\t\tf 3 17766 17767 17768\n\t\tmu 0 3 18821 18822 18823\n\t\tf 3 -17754 17769 -17769\n\t\tmu 0 3 18824 18825 18826\n\t\tf 3 17770 17771 17772\n\t\tmu 0 3 18827 18828 18829\n\t\tf 3 17773 -17756 -17773\n\t\tmu 0 3 18830 18831 18832\n\t\tf 3 -17772 17774 17775\n\t\tmu 0 3 18833 18834 18835\n\t\tf 3 17776 17777 -17776\n\t\tmu 0 3 18836 18837 18838\n\t\tf 3 -17777 17778 17779\n\t\tmu 0 3 18839 18840 18841\n\t\tf 3 17780 17781 -17780\n\t\tmu 0 3 18842 18843 18844\n\t\tf 3 -17781 17782 17783\n\t\tmu 0 3 18845 18846 18847\n\t\tf 3 17784 17785 -17784\n\t\tmu 0 3 18848 18849 18850\n\t\tf 3 -17785 17786 17787\n\t\tmu 0 3 18851 18852 18853\n\t\tf 3 17788 17789 -17788\n\t\tmu 0 3 18854 18855 18856\n\t\tf 3 17790 -17789 17791\n\t\tmu 0 3 18857 18858 18859\n\t\tf 3 17792 17793 -17792\n\t\tmu 0 3 18860 18861 18862\n\t\tf 3 -17794 17794 17795\n\t\tmu 0 3 18863 18864 18865\n\t\tf 3 17796 17797 -17796\n\t\tmu 0 3 18866 18867 18868\n\t\tf 3 17798 -17783 17799\n\t\tmu 0 3 18869 18870 18871\n\t\tf 3 17800 17801 -17800\n\t\tmu 0 3 18872 18873 18874\n\t\tf 3 -17799 17802 17803\n\t\tmu 0 3 18875 18876 18877\n\t\tf 3 17804 -17787 -17804\n\t\tmu 0 3 18878 18879 18880\n\t\tf 3 17805 17806 17807\n\t\tmu 0 3 18881 18882 18883\n\t\tf 3 17808 17809 -17808\n\t\tmu 0 3 18884 18885 18886\n\t\tf 3 17810 17811 17812\n\t\tmu 0 3 18887 18888 18889\n\t\tf 3 -17771 -17768 -17813\n\t\tmu 0 3 18890 18891 18892\n\t\tf 3 -17775 -17812 17813\n\t\tmu 0 3 18893 18894 18895\n\t\tf 3 17814 17815 -17814\n\t\tmu 0 3 18896 18897 18898\n\t\tf 3 17816 -17810 17817\n\t\tmu 0 3 18899 18900 18901\n\t\tf 3 -17816 17818 17819\n\t\tmu 0 3 18902 18903 18904\n\t\tf 3 17820 17821 -17820\n\t\tmu 0 3 18905 18906 18907\n\t\tf 3 17822 17823 -17818\n\t\tmu 0 3 18908 18909 18910\n\t\tf 3 17824 17825 17826\n\t\tmu 0 3 18911 18912 18913\n\t\tf 3 -17824 17827 -17827\n\t\tmu 0 3 18914 18915 18916\n\t\tf 3 17828 17829 17830\n\t\tmu 0 3 18917 18918 18919\n\t\tf 3 17831 17832 -17831\n\t\tmu 0 3 18920 18921 18922\n\t\tf 3 17833 -17770 17834\n\t\tmu 0 3 18923 18924 18925\n\t\tf 3 -17758 17835 -17835\n\t\tmu 0 3 18926 18927 18928\n\t\tf 3 -17795 17836 17837\n\t\tmu 0 3 18929 18930 18931\n\t\tf 3 17838 17839 -17838\n\t\tmu 0 3 18932 18933 18934\n\t\tf 3 17840 17841 17842\n\t\tmu 0 3 18935 18936 18937\n\t\tf 3 17843 17844 -17843\n\t\tmu 0 3 18938 18939 18940\n\t\tf 3 17845 -17844 17846\n\t\tmu 0 3 18941 18942 18943\n\t\tf 3 17847 17848 -17847\n\t\tmu 0 3 18944 18945 18946\n\t\tf 3 -17837 -17793 17849\n\t\tmu 0 3 18947 18948 18949\n\t\tf 3 17850 17851 -17850\n\t\tmu 0 3 18950 18951 18952\n\t\tf 3 17852 17853 17854\n\t\tmu 0 3 18953 18954 18955\n\t\tf 3 17855 17856 -17855\n\t\tmu 0 3 18956 18957 18958\n\t\tf 3 -17856 17857 17858\n\t\tmu 0 3 18959 18960 18961\n\t\tf 3 17859 17860 -17859\n\t\tmu 0 3 18962 18963 18964\n\t\tf 3 17861 17862 17863\n\t\tmu 0 3 18965 18966 18967\n\t\tf 3 17864 -17802 -17864\n\t\tmu 0 3 18968 18969 18970\n\t\tf 3 -17865 17865 17866\n\t\tmu 0 3 18971 18972 18973\n\t\tf 3 17867 -17803 -17867\n\t\tmu 0 3 18974 18975 18976\n\t\tf 3 -17805 -17868 17868\n\t\tmu 0 3 18977 18978 18979\n\t\tf 3 17869 -17851 -17869\n\t\tmu 0 3 18980 18981 18982\n\t\tf 3 -17870 17870 17871\n\t\tmu 0 3 18983 18984 18985\n\t\tf 3 17872 17873 -17872\n\t\tmu 0 3 18986 18987 18988\n\t\tf 3 17874 17875 17876\n\t\tmu 0 3 18989 18990 18991\n\t\tf 3 17877 17878 -17877\n\t\tmu 0 3 18992 18993 18994\n\t\tf 3 17879 17880 17881\n\t\tmu 0 3 18995 18996 18997\n\t\tf 3 17882 17883 -17882\n\t\tmu 0 3 18998 18999 19000\n\t\tf 3 17884 17885 17886\n\t\tmu 0 3 19001 19002 19003\n\t\tf 3 17887 17888 -17887\n\t\tmu 0 3 19004 19005 19006\n\t\tf 3 17889 17890 17891\n\t\tmu 0 3 19007 19008 19009\n\t\tf 3 17892 17893 -17892\n\t\tmu 0 3 19010 19011 19012\n\t\tf 3 -17894 17894 17895\n\t\tmu 0 3 19013 19014 19015\n\t\tf 3 17896 17897 -17896\n\t\tmu 0 3 19016 19017 19018\n\t\tf 3 17898 -17891 17899\n\t\tmu 0 3 19019 19020 19021\n\t\tf 3 17900 17901 -17900\n\t\tmu 0 3 19022 19023 19024\n\t\tf 3 17902 -17902 17903\n\t\tmu 0 3 19025 19026 19027\n\t\tf 3 17904 17905 -17904\n\t\tmu 0 3 19028 19029 19030\n\t\tf 3 17906 -17897 17907\n\t\tmu 0 3 19031 19032 19033\n\t\tf 3 17908 17909 -17908\n\t\tmu 0 3 19034 19035 19036\n\t\tf 3 17910 -17906 17911\n\t\tmu 0 3 19037 19038 19039\n\t\tf 3 17912 17913 -17912\n\t\tmu 0 3 19040 19041 19042\n\t\tf 3 -17914 17914 17915\n\t\tmu 0 3 19043 19044 19045\n\t\tf 3 17916 17917 -17916\n\t\tmu 0 3 19046 19047 19048\n\t\tf 3 17918 17919 17920\n\t\tmu 0 3 19049 19050 19051\n\t\tf 3 17921 17922 -17921\n\t\tmu 0 3 19052 19053 19054\n\t\tf 3 17923 -17920 17924\n\t\tmu 0 3 19055 19056 19057\n\t\tf 3 17925 17926 -17925\n\t\tmu 0 3 19058 19059 19060\n\t\tf 3 17927 -17927 17928\n\t\tmu 0 3 19061 19062 19063\n\t\tf 3 17929 17930 -17929\n\t\tmu 0 3 19064 19065 19066\n\t\tf 3 17931 -17931 17932\n\t\tmu 0 3 19067 19068 19069\n\t\tf 3 17933 17934 -17933\n\t\tmu 0 3 19070 19071 19072\n\t\tf 3 -17935 17935 17936\n\t\tmu 0 3 19073 19074 19075\n\t\tf 3 17937 17938 -17937\n\t\tmu 0 3 19076 19077 19078\n\t\tf 3 17939 17940 17941\n\t\tmu 0 3 19079 19080 19081\n\t\tf 3 17942 17943 -17942\n\t\tmu 0 3 19082 19083 19084\n\t\tf 3 17944 17945 17946\n\t\tmu 0 3 19085 19086 19087\n\t\tf 3 17947 17948 -17947\n\t\tmu 0 3 19088 19089 19090\n\t\tf 3 -17949 17949 17950\n\t\tmu 0 3 19091 19092 19093\n\t\tf 3 17951 17952 -17951\n\t\tmu 0 3 19094 19095 19096\n\t\tf 3 17953 -17946 17954\n\t\tmu 0 3 19097 19098 19099\n\t\tf 3 17955 17956 -17955\n\t\tmu 0 3 19100 19101 19102\n\t\tf 3 17957 -17957 17958\n\t\tmu 0 3 19103 19104 19105\n\t\tf 3 17959 17960 -17959\n\t\tmu 0 3 19106 19107 19108\n\t\tf 3 17961 -17952 17962\n\t\tmu 0 3 19109 19110 19111\n\t\tf 3 17963 17964 -17963\n\t\tmu 0 3 19112 19113 19114\n\t\tf 3 17965 -17961 17966\n\t\tmu 0 3 19115 19116 19117\n\t\tf 3 17967 17968 -17967\n\t\tmu 0 3 19118 19119 19120\n\t\tf 3 -17969 17969 17970\n\t\tmu 0 3 19121 19122 19123\n\t\tf 3 17971 17972 -17971\n\t\tmu 0 3 19124 19125 19126\n\t\tf 3 17973 17974 17975\n\t\tmu 0 3 19127 19128 19129\n\t\tf 3 17976 17977 -17976\n\t\tmu 0 3 19130 19131 19132\n\t\tf 3 17978 -17974 17979\n\t\tmu 0 3 19133 19134 19135\n\t\tf 3 17980 17981 -17980\n\t\tmu 0 3 19136 19137 19138\n\t\tf 3 -17982 17982 17983\n\t\tmu 0 3 19139 19140 19141\n\t\tf 3 17984 17985 -17984\n\t\tmu 0 3 19142 19143 19144\n\t\tf 3 17986 -17986 17987\n\t\tmu 0 3 19145 19146 19147\n\t\tf 3 17988 17989 -17988\n\t\tmu 0 3 19148 19149 19150\n\t\tf 3 17990 -17979 17991\n\t\tmu 0 3 19151 19152 19153\n\t\tf 3 -17987 17992 -17992\n\t\tmu 0 3 19154 19155 19156\n\t\tf 3 17993 -17985 17994\n\t\tmu 0 3 19157 19158 19159\n\t\tf 3 17995 17996 -17995\n\t\tmu 0 3 19160 19161 19162\n\t\tf 3 -17997 17997 17998\n\t\tmu 0 3 19163 19164 19165\n\t\tf 3 17999 18000 -17999\n\t\tmu 0 3 19166 19167 19168\n\t\tf 3 18001 18002 18003\n\t\tmu 0 3 19169 19170 19171\n\t\tf 3 18004 18005 -18004\n\t\tmu 0 3 19172 19173 19174\n\t\tf 3 18006 18007 18008\n\t\tmu 0 3 19175 19176 19177\n\t\tf 3 18009 18010 -18009\n\t\tmu 0 3 19178 19179 19180\n\t\tf 3 -18007 18011 18012\n\t\tmu 0 3 19181 19182 19183\n\t\tf 3 18013 18014 -18013\n\t\tmu 0 3 19184 19185 19186\n\t\tf 3 -18014 18015 18016\n\t\tmu 0 3 19187 19188 19189\n\t\tf 3 18017 18018 -18017\n\t\tmu 0 3 19190 19191 19192\n\t\tf 3 -18018 18019 18020\n\t\tmu 0 3 19193 19194 19195\n\t\tf 3 18021 18022 -18021\n\t\tmu 0 3 19196 19197 19198\n\t\tf 3 -18022 18023 18024\n\t\tmu 0 3 19199 19200 19201\n\t\tf 3 18025 18026 -18025\n\t\tmu 0 3 19202 19203 19204\n\t\tf 3 -18026 18027 18028\n\t\tmu 0 3 19205 19206 19207\n\t\tf 3 18029 18030 -18029\n\t\tmu 0 3 19208 19209 19210\n\t\tf 3 -18030 18031 18032\n\t\tmu 0 3 19211 19212 19213\n\t\tf 3 18033 18034 -18033\n\t\tmu 0 3 19214 19215 19216\n\t\tf 3 -18034 18035 18036\n\t\tmu 0 3 19217 19218 19219\n\t\tf 3 18037 18038 -18037\n\t\tmu 0 3 19220 19221 19222\n\t\tf 3 -18038 18039 18040\n\t\tmu 0 3 19223 19224 19225\n\t\tf 3 18041 18042 -18041\n\t\tmu 0 3 19226 19227 19228\n\t\tf 3 -18042 18043 18044\n\t\tmu 0 3 19229 19230 19231\n\t\tf 3 18045 18046 -18045\n\t\tmu 0 3 19232 19233 19234\n\t\tf 3 -18046 18047 18048\n\t\tmu 0 3 19235 19236 19237\n\t\tf 3 18049 18050 -18049\n\t\tmu 0 3 19238 19239 19240\n\t\tf 3 18051 -18050 18052\n\t\tmu 0 3 19241 19242 19243\n\t\tf 3 18053 18054 -18053\n\t\tmu 0 3 19244 19245 19246\n\t\tf 3 -18055 18055 18056\n\t\tmu 0 3 19247 19248 19249\n\t\tf 3 18057 18058 -18057\n\t\tmu 0 3 19250 19251 19252\n\t\tf 3 18059 18060 18061\n\t\tmu 0 3 19253 19254 19255\n\t\tf 3 18062 18063 -18062\n\t\tmu 0 3 19256 19257 19258\n\t\tf 3 -18064 18064 18065\n\t\tmu 0 3 19259 19260 19261\n\t\tf 3 18066 18067 -18066\n\t\tmu 0 3 19262 19263 19264\n\t\tf 3 18068 -18067 18069\n\t\tmu 0 3 19265 19266 19267\n\t\tf 3 18070 18071 -18070\n\t\tmu 0 3 19268 19269 19270\n\t\tf 3 18072 -18072 18073\n\t\tmu 0 3 19271 19272 19273\n\t\tf 3 18074 18075 -18074\n\t\tmu 0 3 19274 19275 19276\n\t\tf 3 18076 -18076 18077\n\t\tmu 0 3 19277 19278 19279\n\t\tf 3 18078 18079 -18078\n\t\tmu 0 3 19280 19281 19282\n\t\tf 3 18080 -18075 18081\n\t\tmu 0 3 19283 19284 19285\n\t\tf 3 18082 18083 -18082\n\t\tmu 0 3 19286 19287 19288\n\t\tf 3 18084 -18079 18085\n\t\tmu 0 3 19289 19290 19291\n\t\tf 3 -18081 18086 -18086\n\t\tmu 0 3 19292 19293 19294\n\t\tf 3 18087 -18061 18088\n\t\tmu 0 3 19295 19296 19297\n\t\tf 3 -18088 18089 18090\n\t\tmu 0 3 19298 19299 19300\n\t\tf 3 18091 18092 -18091\n\t\tmu 0 3 19301 19302 19303\n\t\tf 3 -18090 18093 18094\n\t\tmu 0 3 19304 19305 19306\n\t\tf 3 18095 18096 -18095\n\t\tmu 0 3 19307 19308 19309\n\t\tf 3 18097 -18094 18098\n\t\tmu 0 3 19310 19311 19312\n\t\tf 3 18099 18100 -18099\n\t\tmu 0 3 19313 19314 19315\n\t\tf 3 18101 -18100 -18089\n\t\tmu 0 3 19316 19317 19318\n\t\tf 3 -18096 18102 18103\n\t\tmu 0 3 19319 19320 19321\n\t\tf 3 18104 18105 -18104\n\t\tmu 0 3 19322 19323 19324\n\t\tf 3 -18105 18106 18107\n\t\tmu 0 3 19325 19326 19327\n\t\tf 3 18108 18109 -18108\n\t\tmu 0 3 19328 19329 19330\n\t\tf 3 18110 -18107 18111\n\t\tmu 0 3 19331 19332 19333\n\t\tf 3 18112 18113 -18112\n\t\tmu 0 3 19334 19335 19336\n\t\tf 3 -18113 -18103 18114\n\t\tmu 0 3 19337 19338 19339\n\t\tf 3 -18098 18115 -18115\n\t\tmu 0 3 19340 19341 19342\n\t\tf 3 -18109 18116 18117\n\t\tmu 0 3 19343 19344 19345\n\t\tf 3 18118 18119 -18118\n\t\tmu 0 3 19346 19347 19348\n\t\tf 3 -18119 18120 18121\n\t\tmu 0 3 19349 19350 19351\n\t\tf 3 18122 18123 -18122\n\t\tmu 0 3 19352 19353 19354\n\t\tf 3 18124 -18121 18125\n\t\tmu 0 3 19355 19356 19357\n\t\tf 3 -18125 18126 18127\n\t\tmu 0 3 19358 19359 19360\n\t\tf 3 18128 18129 -18128\n\t\tmu 0 3 19361 19362 19363\n\t\tf 3 -18123 -18130 18130\n\t\tmu 0 3 19364 19365 19366\n\t\tf 3 -18129 18131 18132\n\t\tmu 0 3 19367 19368 19369\n\t\tf 3 18133 18134 -18133\n\t\tmu 0 3 19370 19371 19372\n\t\tf 3 18135 18136 -18126\n\t\tmu 0 3 19373 19374 19375\n\t\tf 3 -18136 -18117 18137\n\t\tmu 0 3 19376 19377 19378\n\t\tf 3 -18111 18138 -18138\n\t\tmu 0 3 19379 19380 19381\n\t\tf 3 18139 18140 -18131\n\t\tmu 0 3 19382 19383 19384\n\t\tf 3 -18135 18141 18142\n\t\tmu 0 3 19385 19386 19387\n\t\tf 3 18143 -18140 -18143\n\t\tmu 0 3 19388 19389 19390\n\t\tf 3 18144 18145 18146\n\t\tmu 0 3 19391 19392 19393\n\t\tf 3 18147 18148 -18147\n\t\tmu 0 3 19394 19395 19396\n\t\tf 3 18149 -18146 18150\n\t\tmu 0 3 19397 19398 19399\n\t\tf 3 18151 18152 -18151\n\t\tmu 0 3 19400 19401 19402\n\t\tf 3 18153 18154 18155\n\t\tmu 0 3 19403 19404 19405\n\t\tf 3 18156 -18154 18157\n\t\tmu 0 3 19406 19407 19408\n\t\tf 3 18158 18159 -18156\n\t\tmu 0 3 19409 19410 19411\n\t\tf 3 18160 18161 -18158\n\t\tmu 0 3 19412 19413 19414\n\t\tf 3 18162 18163 18164\n\t\tmu 0 3 19415 19416 19417\n\t\tf 3 18165 18166 -18165\n\t\tmu 0 3 19418 19419 19420\n\t\tf 3 18167 -18167 18168\n\t\tmu 0 3 19421 19422 19423\n\t\tf 3 18169 18170 -18169\n\t\tmu 0 3 19424 19425 19426\n\t\tf 3 -18171 18171 18172\n\t\tmu 0 3 19427 19428 19429\n\t\tf 3 18173 18174 -18173\n\t\tmu 0 3 19430 19431 19432\n\t\tf 3 18175 18176 18177\n\t\tmu 0 3 19433 19434 19435\n\t\tf 3 18178 18179 -18178\n\t\tmu 0 3 19436 19437 19438\n\t\tf 3 -18179 18180 18181\n\t\tmu 0 3 19439 19440 19441\n\t\tf 3 18182 -18163 18183\n\t\tmu 0 3 19442 19443 19444\n\t\tf 3 -18176 18184 -18184\n\t\tmu 0 3 19445 19446 19447\n\t\tf 3 18185 18186 -18182\n\t\tmu 0 3 19448 19449 19450\n\t\tf 3 18187 -18174 18188\n\t\tmu 0 3 19451 19452 19453\n\t\tf 3 18189 18190 -18189\n\t\tmu 0 3 19454 19455 19456\n\t\tf 3 18191 18192 18193\n\t\tmu 0 3 19457 19458 19459\n\t\tf 3 18194 18195 -18194\n\t\tmu 0 3 19460 19461 19462\n\t\tf 3 18196 18197 18198\n\t\tmu 0 3 19463 19464 19465\n\t\tf 3 18199 18200 -18199\n\t\tmu 0 3 19466 19467 19468\n\t\tf 3 18201 18202 18203\n\t\tmu 0 3 19469 19470 19471\n\t\tf 3 18204 18205 -18204\n\t\tmu 0 3 19472 19473 19474\n\t\tf 3 18206 -18153 18207\n\t\tmu 0 3 19475 19476 19477\n\t\tf 3 18208 18209 -18208\n\t\tmu 0 3 19478 19479 19480\n\t\tf 3 -18210 18210 18211\n\t\tmu 0 3 19481 19482 19483\n\t\tf 3 18212 18213 -18212\n\t\tmu 0 3 19484 19485 19486\n\t\tf 3 18214 18215 18216\n\t\tmu 0 3 19487 19488 19489\n\t\tf 3 18217 18218 -18217\n\t\tmu 0 3 19490 19491 19492\n\t\tf 3 18219 18220 18221\n\t\tmu 0 3 19493 19494 19495\n\t\tf 3 -18215 18222 -18222\n\t\tmu 0 3 19496 19497 19498\n\t\tf 3 -18213 18223 18224\n\t\tmu 0 3 19499 19500 19501\n\t\tf 3 18225 18226 -18225\n\t\tmu 0 3 19502 19503 19504\n\t\tf 3 -18226 18227 18228\n\t\tmu 0 3 19505 19506 19507\n\t\tf 3 18229 18230 -18229\n\t\tmu 0 3 19508 19509 19510\n\t\tf 3 -18230 18231 18232\n\t\tmu 0 3 19511 19512 19513\n\t\tf 3 18233 18234 -18233\n\t\tmu 0 3 19514 19515 19516\n\t\tf 3 -18234 18235 18236\n\t\tmu 0 3 19517 19518 19519\n\t\tf 3 18237 18238 -18237\n\t\tmu 0 3 19520 19521 19522\n\t\tf 3 -18238 18239 18240\n\t\tmu 0 3 19523 19524 19525\n\t\tf 3 18241 18242 -18241\n\t\tmu 0 3 19526 19527 19528\n\t\tf 3 18243 -18242 18244\n\t\tmu 0 3 19529 19530 19531\n\t\tf 3 18245 18246 -18245\n\t\tmu 0 3 19532 19533 19534\n\t\tf 3 18247 18248 18249\n\t\tmu 0 3 19535 19536 19537\n\t\tf 3 18250 18251 -18250\n\t\tmu 0 3 19538 19539 19540\n\t\tf 3 -18251 18252 18253\n\t\tmu 0 3 19541 19542 19543\n\t\tf 3 18254 18255 18256\n\t\tmu 0 3 19544 19545 19546\n\t\tf 3 -18248 18257 -18257\n\t\tmu 0 3 19547 19548 19549\n\t\tf 3 18258 18259 18260\n\t\tmu 0 3 19550 19551 19552\n\t\tf 3 -18259 18261 -18254\n\t\tmu 0 3 19553 19554 19555\n\t\tf 3 18262 18263 -18261\n\t\tmu 0 3 19556 19557 19558\n\t\tf 3 -18263 18264 18265\n\t\tmu 0 3 19559 19560 19561\n\t\tf 3 18266 18267 -18266\n\t\tmu 0 3 19562 19563 19564\n\t\tf 3 -18267 18268 18269\n\t\tmu 0 3 19565 19566 19567\n\t\tf 3 -18220 18270 -18270\n\t\tmu 0 3 19568 19569 19570\n\t\tf 3 18271 18272 18273\n\t\tmu 0 3 19571 19572 19573\n\t\tf 3 18274 18275 -18274\n\t\tmu 0 3 19574 19575 19576\n\t\tf 3 18276 -18273 18277\n\t\tmu 0 3 19577 19578 19579\n\t\tf 3 18278 18279 -18278\n\t\tmu 0 3 19580 19581 19582\n\t\tf 3 18280 18281 -18280\n\t\tmu 0 3 19583 19584 19585\n\t\tf 3 18282 18283 18284\n\t\tmu 0 3 19586 19587 19588\n\t\tf 3 18285 18286 -18285\n\t\tmu 0 3 19589 19590 19591\n\t\tf 3 -18287 18287 18288\n\t\tmu 0 3 19592 19593 19594\n\t\tf 3 18289 18290 -18289\n\t\tmu 0 3 19595 19596 19597\n\t\tf 3 18291 -18284 18292\n\t\tmu 0 3 19598 19599 19600\n\t\tf 3 18293 18294 -18293\n\t\tmu 0 3 19601 19602 19603\n\t\tf 3 18295 -18295 18296\n\t\tmu 0 3 19604 19605 19606\n\t\tf 3 18297 18298 -18297\n\t\tmu 0 3 19607 19608 19609\n\t\tf 3 18299 -18299 18300\n\t\tmu 0 3 19610 19611 19612\n\t\tf 3 18301 18302 -18301\n\t\tmu 0 3 19613 19614 19615\n\t\tf 3 18303 -18303 18304\n\t\tmu 0 3 19616 19617 19618\n\t\tf 3 18305 18306 -18305\n\t\tmu 0 3 19619 19620 19621\n\t\tf 3 18307 18308 18309\n\t\tmu 0 3 19622 19623 19624\n\t\tf 3 18310 18311 -18310\n\t\tmu 0 3 19625 19626 19627\n\t\tf 3 18312 -18312 18313\n\t\tmu 0 3 19628 19629 19630\n\t\tf 3 18314 18315 -18314\n\t\tmu 0 3 19631 19632 19633\n\t\tf 3 18316 -18290 18317\n\t\tmu 0 3 19634 19635 19636\n\t\tf 3 18318 18319 -18318\n\t\tmu 0 3 19637 19638 19639\n\t\tf 3 -18320 18320 18321\n\t\tmu 0 3 19640 19641 19642\n\t\tf 3 18322 18323 -18322\n\t\tmu 0 3 19643 19644 19645\n\t\tf 3 18324 18325 18326\n\t\tmu 0 3 19646 19647 19648\n\t\tf 3 18327 18328 -18327\n\t\tmu 0 3 19649 19650 19651\n\t\tf 3 -18329 18329 18330\n\t\tmu 0 3 19652 19653 19654\n\t\tf 3 18331 18332 -18331\n\t\tmu 0 3 19655 19656 19657\n\t\tf 3 18333 -18326 18334\n\t\tmu 0 3 19658 19659 19660\n\t\tf 3 18335 18336 -18335\n\t\tmu 0 3 19661 19662 19663\n\t\tf 3 18337 -18337 18338\n\t\tmu 0 3 19664 19665 19666\n\t\tf 3 18339 18340 -18339\n\t\tmu 0 3 19667 19668 19669\n\t\tf 3 18341 -18341 18342\n\t\tmu 0 3 19670 19671 19672\n\t\tf 3 18343 18344 -18343\n\t\tmu 0 3 19673 19674 19675\n\t\tf 3 18345 -18345 18346\n\t\tmu 0 3 19676 19677 19678\n\t\tf 3 18347 18348 -18347\n\t\tmu 0 3 19679 19680 19681\n\t\tf 3 18349 -18349 18350\n\t\tmu 0 3 19682 19683 19684\n\t\tf 3 18351 18352 -18351\n\t\tmu 0 3 19685 19686 19687\n\t\tf 3 18353 -18353 18354\n\t\tmu 0 3 19688 19689 19690\n\t\tf 3 18355 18356 -18355\n\t\tmu 0 3 19691 19692 19693\n\t\tf 3 18357 -18332 18358\n\t\tmu 0 3 19694 19695 19696\n\t\tf 3 18359 18360 -18359\n\t\tmu 0 3 19697 19698 19699\n\t\tf 3 -18361 18361 18362\n\t\tmu 0 3 19700 19701 19702\n\t\tf 3 18363 18364 -18363\n\t\tmu 0 3 19703 19704 19705\n\t\tf 3 -18357 18365 18366\n\t\tmu 0 3 19706 19707 19708\n\t\tf 3 18367 18368 -18367\n\t\tmu 0 3 19709 19710 19711\n\t\tf 3 -18368 18369 18370\n\t\tmu 0 3 19712 19713 19714\n\t\tf 3 18371 18372 -18371\n\t\tmu 0 3 19715 19716 19717;\n\tsetAttr \".fc[9500:9999]\"\n\t\tf 3 18373 18374 18375\n\t\tmu 0 3 19718 19719 19720\n\t\tf 3 18376 18377 -18376\n\t\tmu 0 3 19721 19722 19723\n\t\tf 3 -18374 18378 18379\n\t\tmu 0 3 19724 19725 19726\n\t\tf 3 18380 18381 -18380\n\t\tmu 0 3 19727 19728 19729\n\t\tf 3 -18381 18382 18383\n\t\tmu 0 3 19730 19731 19732\n\t\tf 3 18384 18385 -18384\n\t\tmu 0 3 19733 19734 19735\n\t\tf 3 -18385 18386 18387\n\t\tmu 0 3 19736 19737 19738\n\t\tf 3 18388 18389 -18388\n\t\tmu 0 3 19739 19740 19741\n\t\tf 3 -18389 18390 18391\n\t\tmu 0 3 19742 19743 19744\n\t\tf 3 18392 18393 -18392\n\t\tmu 0 3 19745 19746 19747\n\t\tf 3 -18393 18394 18395\n\t\tmu 0 3 19748 19749 19750\n\t\tf 3 18396 18397 -18396\n\t\tmu 0 3 19751 19752 19753\n\t\tf 3 -18397 18398 18399\n\t\tmu 0 3 19754 19755 19756\n\t\tf 3 18400 18401 -18400\n\t\tmu 0 3 19757 19758 19759\n\t\tf 3 -18401 18402 18403\n\t\tmu 0 3 19760 19761 19762\n\t\tf 3 18404 18405 -18404\n\t\tmu 0 3 19763 19764 19765\n\t\tf 3 18406 -18405 18407\n\t\tmu 0 3 19766 19767 19768\n\t\tf 3 18408 18409 -18408\n\t\tmu 0 3 19769 19770 19771\n\t\tf 3 18410 -18410 18411\n\t\tmu 0 3 19772 19773 19774\n\t\tf 3 18412 18413 -18412\n\t\tmu 0 3 19775 19776 19777\n\t\tf 3 18414 -18377 18415\n\t\tmu 0 3 19778 19779 19780\n\t\tf 3 18416 18417 -18416\n\t\tmu 0 3 19781 19782 19783\n\t\tf 3 -18418 18418 18419\n\t\tmu 0 3 19784 19785 19786\n\t\tf 3 18420 18421 -18420\n\t\tmu 0 3 19787 19788 19789\n\t\tf 3 18422 18423 18424\n\t\tmu 0 3 19790 19791 19792\n\t\tf 3 18425 18426 -18425\n\t\tmu 0 3 19793 19794 19795\n\t\tf 3 -18426 18427 18428\n\t\tmu 0 3 19796 19797 19798\n\t\tf 3 18429 18430 -18429\n\t\tmu 0 3 19799 19800 19801\n\t\tf 3 18431 -18428 18432\n\t\tmu 0 3 19802 19803 19804\n\t\tf 3 18433 18434 -18433\n\t\tmu 0 3 19805 19806 19807\n\t\tf 3 -18434 18435 18436\n\t\tmu 0 3 19808 19809 19810\n\t\tf 3 18437 18438 -18437\n\t\tmu 0 3 19811 19812 19813\n\t\tf 3 18439 -18436 18440\n\t\tmu 0 3 19814 19815 19816\n\t\tf 3 18441 18442 -18441\n\t\tmu 0 3 19817 19818 19819\n\t\tf 3 -18442 18443 18444\n\t\tmu 0 3 19820 19821 19822\n\t\tf 3 18445 18446 -18445\n\t\tmu 0 3 19823 19824 19825\n\t\tf 3 18447 -18444 18448\n\t\tmu 0 3 19826 19827 19828\n\t\tf 3 18449 18450 -18449\n\t\tmu 0 3 19829 19830 19831\n\t\tf 3 -18450 -18424 18451\n\t\tmu 0 3 19832 19833 19834\n\t\tf 3 18452 18453 -18452\n\t\tmu 0 3 19835 19836 19837\n\t\tf 3 18454 18455 18456\n\t\tmu 0 3 19838 19839 19840\n\t\tf 3 18457 18458 -18457\n\t\tmu 0 3 19841 19842 19843\n\t\tf 3 -18459 18459 18460\n\t\tmu 0 3 19844 19845 19846\n\t\tf 3 18461 18462 -18461\n\t\tmu 0 3 19847 19848 19849\n\t\tf 3 18463 -18456 18464\n\t\tmu 0 3 19850 19851 19852\n\t\tf 3 -18292 18465 -18465\n\t\tmu 0 3 19853 19854 19855\n\t\tf 3 18466 -18466 18467\n\t\tmu 0 3 19856 19857 19858\n\t\tf 3 -18296 18468 -18468\n\t\tmu 0 3 19859 19860 19861\n\t\tf 3 18469 -18462 18470\n\t\tmu 0 3 19862 19863 19864\n\t\tf 3 18471 18472 -18471\n\t\tmu 0 3 19865 19866 19867\n\t\tf 3 -18473 18473 18474\n\t\tmu 0 3 19868 19869 19870\n\t\tf 3 18475 18476 -18475\n\t\tmu 0 3 19871 19872 19873\n\t\tf 3 18477 -18469 18478\n\t\tmu 0 3 19874 19875 19876\n\t\tf 3 -18300 18479 -18479\n\t\tmu 0 3 19877 19878 19879\n\t\tf 3 -18480 -18304 18480\n\t\tmu 0 3 19880 19881 19882\n\t\tf 3 18481 18482 -18481\n\t\tmu 0 3 19883 19884 19885\n\t\tf 3 18483 18484 18485\n\t\tmu 0 3 19886 19887 19888\n\t\tf 3 18486 18487 -18486\n\t\tmu 0 3 19889 19890 19891\n\t\tf 3 -18488 18488 18489\n\t\tmu 0 3 19892 19893 19894\n\t\tf 3 18490 18491 -18490\n\t\tmu 0 3 19895 19896 19897\n\t\tf 3 18492 18493 18494\n\t\tmu 0 3 19898 19899 19900\n\t\tf 3 18495 18496 -18495\n\t\tmu 0 3 19901 19902 19903\n\t\tf 3 -18493 18497 18498\n\t\tmu 0 3 19904 19905 19906\n\t\tf 3 18499 18500 -18499\n\t\tmu 0 3 19907 19908 19909\n\t\tf 3 -18500 18501 18502\n\t\tmu 0 3 19910 19911 19912\n\t\tf 3 18503 18504 -18503\n\t\tmu 0 3 19913 19914 19915\n\t\tf 3 -18504 18505 18506\n\t\tmu 0 3 19916 19917 19918\n\t\tf 3 18507 18508 -18507\n\t\tmu 0 3 19919 19920 19921\n\t\tf 3 -18496 18509 18510\n\t\tmu 0 3 19922 19923 19924\n\t\tf 3 18511 18512 -18511\n\t\tmu 0 3 19925 19926 19927\n\t\tf 3 -18512 18513 18514\n\t\tmu 0 3 19928 19929 19930\n\t\tf 3 18515 18516 -18515\n\t\tmu 0 3 19931 19932 19933\n\t\tf 3 -18516 18517 18518\n\t\tmu 0 3 19934 19935 19936\n\t\tf 3 18519 18520 -18519\n\t\tmu 0 3 19937 19938 19939\n\t\tf 3 -18520 18521 18522\n\t\tmu 0 3 19940 19941 19942\n\t\tf 3 18523 18524 -18523\n\t\tmu 0 3 19943 19944 19945\n\t\tf 3 -18524 18525 18526\n\t\tmu 0 3 19946 19947 19948\n\t\tf 3 18527 18528 -18527\n\t\tmu 0 3 19949 19950 19951\n\t\tf 3 -18528 18529 18530\n\t\tmu 0 3 19952 19953 19954\n\t\tf 3 18531 18532 -18531\n\t\tmu 0 3 19955 19956 19957\n\t\tf 3 -18532 18533 18534\n\t\tmu 0 3 19958 19959 19960\n\t\tf 3 18535 18536 -18535\n\t\tmu 0 3 19961 19962 19963\n\t\tf 3 -18536 18537 18538\n\t\tmu 0 3 19964 19965 19966\n\t\tf 3 18539 18540 -18539\n\t\tmu 0 3 19967 19968 19969\n\t\tf 3 18541 18542 18543\n\t\tmu 0 3 19970 19971 19972\n\t\tf 3 18544 18545 -18544\n\t\tmu 0 3 19973 19974 19975\n\t\tf 3 -18542 18546 18547\n\t\tmu 0 3 19976 19977 19978\n\t\tf 3 18548 18549 -18548\n\t\tmu 0 3 19979 19980 19981\n\t\tf 3 18550 18551 18552\n\t\tmu 0 3 19982 19983 19984\n\t\tf 3 18553 18554 -18553\n\t\tmu 0 3 19985 19986 19987\n\t\tf 3 -18554 18555 18556\n\t\tmu 0 3 19988 19989 19990\n\t\tf 3 18557 18558 -18557\n\t\tmu 0 3 19991 19992 19993\n\t\tf 3 -18549 18559 18560\n\t\tmu 0 3 19994 19995 19996\n\t\tf 3 18561 -18472 -18561\n\t\tmu 0 3 19997 19998 19999\n\t\tf 3 -18562 18562 18563\n\t\tmu 0 3 20000 20001 20002\n\t\tf 3 18564 -18474 -18564\n\t\tmu 0 3 20003 20004 20005\n\t\tf 3 18565 18566 18567\n\t\tmu 0 3 20006 20007 20008\n\t\tf 3 18568 18569 -18568\n\t\tmu 0 3 20009 20010 20011\n\t\tf 3 18570 -18567 18571\n\t\tmu 0 3 20012 20013 20014\n\t\tf 3 18572 -16494 -18572\n\t\tmu 0 3 20015 20016 20017\n\t\tf 3 18573 18574 18575\n\t\tmu 0 3 20018 20019 20020\n\t\tf 3 18576 18577 -18576\n\t\tmu 0 3 20020 20021 20018\n\t\tf 3 18578 18579 18580\n\t\tmu 0 3 20022 20023 20024\n\t\tf 3 -18581 18581 18582\n\t\tmu 0 3 20022 20024 20025\n\t\tf 3 18583 18584 -18582\n\t\tmu 0 3 20024 20026 20025\n\t\tf 3 -18584 18585 18586\n\t\tmu 0 3 20026 20024 20027\n\t\tf 3 18587 18588 -18587\n\t\tmu 0 3 20027 20028 20026\n\t\tf 3 18589 18590 18591\n\t\tmu 0 3 20029 20030 20031\n\t\tf 3 18592 18593 -18592\n\t\tmu 0 3 20032 20033 20029\n\t\tf 3 18594 -18590 18595\n\t\tmu 0 3 20034 20030 20029\n\t\tf 3 18596 18597 -18596\n\t\tmu 0 3 20029 20035 20034\n\t\tf 3 18598 18599 18600\n\t\tmu 0 3 20036 20037 20038\n\t\tf 3 18601 18602 -18601\n\t\tmu 0 3 20038 20039 20036\n\t\tf 3 18603 18604 18605\n\t\tmu 0 3 20040 20041 20042\n\t\tf 3 18606 18607 -18606\n\t\tmu 0 3 20042 20043 20040\n\t\tf 3 18608 18609 18610\n\t\tmu 0 3 20044 20045 20046\n\t\tf 3 18611 18612 -18611\n\t\tmu 0 3 20047 20048 20044\n\t\tf 3 18613 18614 18615\n\t\tmu 0 3 20049 20050 20051\n\t\tf 3 18616 18617 -18616\n\t\tmu 0 3 20051 20052 20049\n\t\tf 3 18618 18619 18620\n\t\tmu 0 3 20053 20054 20055\n\t\tf 3 18621 18622 -18621\n\t\tmu 0 3 20055 20056 20053\n\t\tf 3 18623 -18620 18624\n\t\tmu 0 3 20057 20055 20054\n\t\tf 3 18625 18626 -18625\n\t\tmu 0 3 20054 20058 20057\n\t\tf 3 -18623 18627 18628\n\t\tmu 0 3 20053 20056 20059\n\t\tf 3 18629 -18627 18630\n\t\tmu 0 3 20059 20057 20058\n\t\tf 3 -18628 18631 18632\n\t\tmu 0 3 20059 20056 20060\n\t\tf 3 18633 18634 -18633\n\t\tmu 0 3 20060 20061 20059\n\t\tf 3 18635 18636 -18629\n\t\tmu 0 3 20059 20062 20053\n\t\tf 3 18637 -18636 -18631\n\t\tmu 0 3 20058 20062 20059\n\t\tf 3 18638 18639 18640\n\t\tmu 0 3 20063 20064 20065\n\t\tf 3 18641 18642 -18641\n\t\tmu 0 3 20065 20066 20063\n\t\tf 3 18643 18644 18645\n\t\tmu 0 3 20067 20068 20069\n\t\tf 3 18646 18647 -18646\n\t\tmu 0 3 20069 20070 20067\n\t\tf 3 18648 18649 18650\n\t\tmu 0 3 20071 20072 20073\n\t\tf 3 18651 18652 -18651\n\t\tmu 0 3 20074 20075 20076\n\t\tf 3 18653 18654 18655\n\t\tmu 0 3 20077 20078 20079\n\t\tf 3 -18656 18656 18657\n\t\tmu 0 3 20080 20081 20082\n\t\tf 3 -18658 18658 18659\n\t\tmu 0 3 20083 20084 20085\n\t\tf 3 18660 -18655 18661\n\t\tmu 0 3 20086 20087 20088\n\t\tf 3 18662 18663 -18662\n\t\tmu 0 3 20089 20090 20091\n\t\tf 3 18664 18665 18666\n\t\tmu 0 3 20092 20093 20094\n\t\tf 3 18667 18668 -18667\n\t\tmu 0 3 20095 20096 20097\n\t\tf 3 -18669 18669 18670\n\t\tmu 0 3 20098 20099 20034\n\t\tf 3 -18598 18671 -18671\n\t\tmu 0 3 20034 20035 20100\n\t\tf 3 18672 18673 18674\n\t\tmu 0 3 20101 20102 20103\n\t\tf 3 18675 18676 -18675\n\t\tmu 0 3 20104 20105 20106\n\t\tf 3 18677 18678 18679\n\t\tmu 0 3 20107 20108 20109\n\t\tf 3 18680 18681 -18680\n\t\tmu 0 3 20110 20111 20112\n\t\tf 3 18682 18683 18684\n\t\tmu 0 3 20113 20114 20115\n\t\tf 3 18685 18686 -18685\n\t\tmu 0 3 20116 20117 20118\n\t\tf 3 18687 18688 18689\n\t\tmu 0 3 20119 20120 20121\n\t\tf 3 18690 18691 -18690\n\t\tmu 0 3 20122 20123 20124\n\t\tf 3 18692 18693 18694\n\t\tmu 0 3 20125 20126 20127\n\t\tf 3 18695 18696 -18695\n\t\tmu 0 3 20128 20129 20130\n\t\tf 3 -18693 18697 18698\n\t\tmu 0 3 20131 20132 20133\n\t\tf 3 18699 18700 -18699\n\t\tmu 0 3 20134 20135 20136\n\t\tf 3 18701 -18696 18702\n\t\tmu 0 3 20137 20138 20139\n\t\tf 3 -18700 18703 18704\n\t\tmu 0 3 20140 20141 20142\n\t\tf 3 18705 -18702 18706\n\t\tmu 0 3 20060 20143 20144\n\t\tf 3 18707 -18634 -18707\n\t\tmu 0 3 20145 20061 20060\n\t\tf 3 18708 18709 -18703\n\t\tmu 0 3 20146 20147 20148\n\t\tf 3 -18710 18710 -18705\n\t\tmu 0 3 20149 20150 20151\n\t\tf 3 -18643 18711 18712\n\t\tmu 0 3 20063 20066 20152\n\t\tf 3 18713 18714 -18713\n\t\tmu 0 3 20153 20154 20063\n\t\tf 3 18715 -18644 18716\n\t\tmu 0 3 20155 20068 20067\n\t\tf 3 18717 18718 -18717\n\t\tmu 0 3 20067 20156 20157\n\t\tf 3 18719 18720 18721\n\t\tmu 0 3 20158 20159 20160\n\t\tf 3 18722 18723 -18722\n\t\tmu 0 3 20160 20161 20158\n\t\tf 3 -18723 18724 18725\n\t\tmu 0 3 20161 20160 20162\n\t\tf 3 18726 18727 -18726\n\t\tmu 0 3 20162 20163 20161\n\t\tf 3 -18727 18728 18729\n\t\tmu 0 3 20163 20162 20164\n\t\tf 3 18730 18731 -18730\n\t\tmu 0 3 20164 20165 20163\n\t\tf 3 -18731 18732 18733\n\t\tmu 0 3 20165 20164 20166\n\t\tf 3 18734 18735 -18734\n\t\tmu 0 3 20166 20167 20165\n\t\tf 3 -18735 18736 18737\n\t\tmu 0 3 20167 20166 20168\n\t\tf 3 18738 18739 -18738\n\t\tmu 0 3 20168 20169 20167\n\t\tf 3 18740 -18739 18741\n\t\tmu 0 3 20170 20169 20168\n\t\tf 3 18742 18743 -18742\n\t\tmu 0 3 20168 20171 20170\n\t\tf 3 -18744 18744 18745\n\t\tmu 0 3 20170 20171 20172\n\t\tf 3 18746 18747 -18746\n\t\tmu 0 3 20172 20173 20170\n\t\tf 3 18748 -18747 18749\n\t\tmu 0 3 20174 20173 20172\n\t\tf 3 18750 18751 -18750\n\t\tmu 0 3 20172 20175 20174\n\t\tf 3 -18752 18752 18753\n\t\tmu 0 3 20174 20175 20176\n\t\tf 3 18754 18755 -18754\n\t\tmu 0 3 20176 20177 20174\n\t\tf 3 18756 -18755 18757\n\t\tmu 0 3 20178 20177 20176\n\t\tf 3 18758 18759 -18758\n\t\tmu 0 3 20176 20179 20178\n\t\tf 3 -18760 18760 18761\n\t\tmu 0 3 20178 20179 20180\n\t\tf 3 18762 18763 -18762\n\t\tmu 0 3 20180 20181 20178\n\t\tf 3 18764 18765 18766\n\t\tmu 0 3 20182 20183 20184\n\t\tf 3 18767 18768 -18767\n\t\tmu 0 3 20184 20185 20186\n\t\tf 3 -18768 18769 18770\n\t\tmu 0 3 20185 20184 20187\n\t\tf 3 18771 18772 -18771\n\t\tmu 0 3 20187 20188 20185\n\t\tf 3 -18772 18773 18774\n\t\tmu 0 3 20188 20187 20189\n\t\tf 3 18775 18776 -18775\n\t\tmu 0 3 20189 20190 20188\n\t\tf 3 -18776 18777 18778\n\t\tmu 0 3 20190 20189 20191\n\t\tf 3 18779 18780 -18779\n\t\tmu 0 3 20191 20192 20190\n\t\tf 3 -18780 18781 18782\n\t\tmu 0 3 20192 20191 20193\n\t\tf 3 18783 18784 -18783\n\t\tmu 0 3 20193 20194 20192\n\t\tf 3 18785 18786 18787\n\t\tmu 0 3 20195 20196 20197\n\t\tf 3 18788 18789 -18788\n\t\tmu 0 3 20197 20198 20195\n\t\tf 3 18790 -18787 18791\n\t\tmu 0 3 20199 20197 20196\n\t\tf 3 18792 18793 -18792\n\t\tmu 0 3 20196 20200 20201\n\t\tf 3 18794 18795 18796\n\t\tmu 0 3 20202 20203 20204\n\t\tf 3 18797 18798 -18797\n\t\tmu 0 3 20205 20206 20202\n\t\tf 3 18799 -18796 18800\n\t\tmu 0 3 20207 20208 20203\n\t\tf 3 18801 18802 -18801\n\t\tmu 0 3 20203 20209 20210\n\t\tf 3 18803 -18803 18804\n\t\tmu 0 3 20211 20212 20209\n\t\tf 3 18805 18806 -18805\n\t\tmu 0 3 20209 20213 20214\n\t\tf 3 18807 -18807 18808\n\t\tmu 0 3 20215 20216 20213\n\t\tf 3 18809 18810 -18809\n\t\tmu 0 3 20213 20217 20218\n\t\tf 3 18811 -18811 18812\n\t\tmu 0 3 20219 20220 20217\n\t\tf 3 18813 18814 -18813\n\t\tmu 0 3 20217 20221 20222\n\t\tf 3 -18815 18815 18816\n\t\tmu 0 3 20223 20221 20224\n\t\tf 3 18817 18818 -18817\n\t\tmu 0 3 20224 20225 20226\n\t\tf 3 18819 -18818 18820\n\t\tmu 0 3 20227 20228 20224\n\t\tf 3 18821 18822 -18821\n\t\tmu 0 3 20224 20229 20230\n\t\tf 3 18823 -18823 18824\n\t\tmu 0 3 20231 20232 20229\n\t\tf 3 18825 18826 -18825\n\t\tmu 0 3 20229 20233 20234\n\t\tf 3 18827 -18827 18828\n\t\tmu 0 3 20235 20236 20233\n\t\tf 3 18829 18830 -18829\n\t\tmu 0 3 20233 20237 20238\n\t\tf 3 18831 -18831 18832\n\t\tmu 0 3 20239 20240 20237\n\t\tf 3 18833 18834 -18833\n\t\tmu 0 3 20237 20241 20242\n\t\tf 3 18835 -18835 18836\n\t\tmu 0 3 20243 20244 20241\n\t\tf 3 18837 18838 -18837\n\t\tmu 0 3 20241 20245 20246\n\t\tf 3 18839 -18839 18840\n\t\tmu 0 3 20247 20248 20245\n\t\tf 3 18841 18842 -18841\n\t\tmu 0 3 20245 20249 20250\n\t\tf 3 18843 -18843 18844\n\t\tmu 0 3 20251 20252 20249\n\t\tf 3 18845 18846 -18845\n\t\tmu 0 3 20249 20253 20254\n\t\tf 3 18847 -18847 18848\n\t\tmu 0 3 20255 20256 20253\n\t\tf 3 18849 18850 -18849\n\t\tmu 0 3 20253 20257 20258\n\t\tf 3 -18851 18851 18852\n\t\tmu 0 3 20259 20257 20260\n\t\tf 3 18853 18854 -18853\n\t\tmu 0 3 20260 20261 20262\n\t\tf 3 18855 -18854 18856\n\t\tmu 0 3 20263 20264 20260\n\t\tf 3 18857 18858 -18857\n\t\tmu 0 3 20260 20265 20266\n\t\tf 3 18859 -18859 18860\n\t\tmu 0 3 20267 20268 20265\n\t\tf 3 18861 18862 -18861\n\t\tmu 0 3 20265 20269 20270\n\t\tf 3 -18863 18863 18864\n\t\tmu 0 3 20271 20269 20272\n\t\tf 3 18865 18866 -18865\n\t\tmu 0 3 20272 20273 20274\n\t\tf 3 18867 18868 18869\n\t\tmu 0 3 20275 20276 20277\n\t\tf 3 18870 18871 -18870\n\t\tmu 0 3 20278 20279 20280\n\t\tf 3 18872 -18869 18873\n\t\tmu 0 3 20281 20282 20283\n\t\tf 3 18874 18875 -18874\n\t\tmu 0 3 20284 20285 20286\n\t\tf 3 18876 -18876 18877\n\t\tmu 0 3 20287 20288 20289\n\t\tf 3 18878 18879 -18878\n\t\tmu 0 3 20290 20291 20292\n\t\tf 3 18880 -18880 18881\n\t\tmu 0 3 20293 20294 20295\n\t\tf 3 18882 18883 -18882\n\t\tmu 0 3 20296 20297 20298\n\t\tf 3 18884 -18884 18885\n\t\tmu 0 3 20299 20300 20301\n\t\tf 3 18886 18887 -18886\n\t\tmu 0 3 20302 20303 20304\n\t\tf 3 -18888 18888 18889\n\t\tmu 0 3 20305 20306 20307\n\t\tf 3 18890 18891 -18890\n\t\tmu 0 3 20308 20309 20310\n\t\tf 3 18892 -18891 18893\n\t\tmu 0 3 20311 20312 20313\n\t\tf 3 18894 18895 -18894\n\t\tmu 0 3 20314 20315 20316\n\t\tf 3 -18896 18896 18897\n\t\tmu 0 3 20317 20318 20319\n\t\tf 3 18898 18899 -18898\n\t\tmu 0 3 20320 20321 20322\n\t\tf 3 18900 -18899 18901\n\t\tmu 0 3 20323 20324 20325\n\t\tf 3 18902 18903 -18902\n\t\tmu 0 3 20326 20327 20328\n\t\tf 3 -18904 18904 18905\n\t\tmu 0 3 20329 20330 20331\n\t\tf 3 18906 18907 -18906\n\t\tmu 0 3 20332 20333 20334\n\t\tf 3 18908 -18907 18909\n\t\tmu 0 3 20335 20336 20337\n\t\tf 3 18910 18911 -18910\n\t\tmu 0 3 20338 20339 20340\n\t\tf 3 18912 18913 18914\n\t\tmu 0 3 20341 20342 20343\n\t\tf 3 18915 18916 -18915\n\t\tmu 0 3 20344 20345 20346\n\t\tf 3 18917 -18917 18918\n\t\tmu 0 3 20347 20348 20349\n\t\tf 3 18919 18920 -18919\n\t\tmu 0 3 20350 20351 20352\n\t\tf 3 -18921 18921 18922\n\t\tmu 0 3 20353 20354 20355\n\t\tf 3 18923 18924 -18923\n\t\tmu 0 3 20356 20357 20358\n\t\tf 3 -18924 18925 18926\n\t\tmu 0 3 20359 20360 20361\n\t\tf 3 18927 18928 -18927\n\t\tmu 0 3 20362 20363 20364\n\t\tf 3 -18928 18929 18930\n\t\tmu 0 3 20365 20366 20367\n\t\tf 3 18931 18932 -18931\n\t\tmu 0 3 20368 20369 20370\n\t\tf 3 18933 18934 18935\n\t\tmu 0 3 20371 20372 20373\n\t\tf 3 18936 18937 -18936\n\t\tmu 0 3 20374 20375 20376\n\t\tf 3 -18935 18938 18939\n\t\tmu 0 3 20377 20378 20379\n\t\tf 3 18940 18941 -18940\n\t\tmu 0 3 20380 20381 20382\n\t\tf 3 18942 18943 18944\n\t\tmu 0 3 20383 20384 20385\n\t\tf 3 18945 18946 -18945\n\t\tmu 0 3 20386 20387 20388\n\t\tf 3 -18946 18947 18948\n\t\tmu 0 3 20389 20390 20391\n\t\tf 3 18949 18950 -18949\n\t\tmu 0 3 20392 20393 20394\n\t\tf 3 -18950 18951 18952\n\t\tmu 0 3 20395 20396 20397\n\t\tf 3 18953 18954 -18953\n\t\tmu 0 3 20398 20399 20400\n\t\tf 3 -18954 18955 18956\n\t\tmu 0 3 20401 20402 20403\n\t\tf 3 18957 18958 -18957\n\t\tmu 0 3 20404 20405 20406\n\t\tf 3 -18958 18959 18960\n\t\tmu 0 3 20407 20408 20409\n\t\tf 3 18961 18962 -18961\n\t\tmu 0 3 20410 20411 20412\n\t\tf 3 18963 -18962 18964\n\t\tmu 0 3 20413 20414 20415\n\t\tf 3 18965 18966 -18965\n\t\tmu 0 3 20416 20417 20418\n\t\tf 3 -18967 18967 18968\n\t\tmu 0 3 20419 20420 20421\n\t\tf 3 18969 18970 -18969\n\t\tmu 0 3 20422 20423 20424\n\t\tf 3 -18970 18971 18972\n\t\tmu 0 3 20425 20426 20427\n\t\tf 3 18973 18974 -18973\n\t\tmu 0 3 20428 20429 20430\n\t\tf 3 -18974 18975 18976\n\t\tmu 0 3 20431 20432 20433\n\t\tf 3 18977 18978 -18977\n\t\tmu 0 3 20434 20435 20436\n\t\tf 3 -18978 18979 18980\n\t\tmu 0 3 20437 20438 20439\n\t\tf 3 18981 18982 -18981\n\t\tmu 0 3 20440 20441 20442\n\t\tf 3 -18982 18983 18984\n\t\tmu 0 3 20443 20444 20445\n\t\tf 3 18985 18986 -18985\n\t\tmu 0 3 20446 20447 20448\n\t\tf 3 -18986 18987 18988\n\t\tmu 0 3 20449 20450 20451\n\t\tf 3 18989 18990 -18989\n\t\tmu 0 3 20452 20453 20454\n\t\tf 3 -18990 18991 18992\n\t\tmu 0 3 20455 20456 20457\n\t\tf 3 18993 18994 -18993\n\t\tmu 0 3 20458 20459 20460\n\t\tf 3 -18994 18995 18996\n\t\tmu 0 3 20461 20462 20463\n\t\tf 3 18997 18998 -18997\n\t\tmu 0 3 20464 20465 20466\n\t\tf 3 -18998 18999 19000\n\t\tmu 0 3 20467 20468 20469\n\t\tf 3 19001 19002 -19001\n\t\tmu 0 3 20470 20471 20472\n\t\tf 3 -19002 19003 19004\n\t\tmu 0 3 20473 20474 20475\n\t\tf 3 19005 19006 -19005\n\t\tmu 0 3 20476 20477 20478\n\t\tf 3 -19006 19007 19008\n\t\tmu 0 3 20479 20480 20481\n\t\tf 3 19009 19010 -19009\n\t\tmu 0 3 20482 20483 20484\n\t\tf 3 19011 -19010 19012\n\t\tmu 0 3 20485 20486 20487\n\t\tf 3 19013 19014 -19013\n\t\tmu 0 3 20488 20489 20490\n\t\tf 3 19015 19016 19017\n\t\tmu 0 3 20491 20492 20493\n\t\tf 3 -19018 19018 19019\n\t\tmu 0 3 20491 20493 20494\n\t\tf 3 -19020 19020 19021\n\t\tmu 0 3 20491 20494 20495\n\t\tf 3 -19022 19022 19023\n\t\tmu 0 3 20491 20495 20496\n\t\tf 3 -19024 19024 19025\n\t\tmu 0 3 20491 20496 20497\n\t\tf 3 -19026 19026 19027\n\t\tmu 0 3 20491 20497 20498\n\t\tf 3 -19028 19028 19029\n\t\tmu 0 3 20491 20498 20499\n\t\tf 3 -19030 19030 19031\n\t\tmu 0 3 20491 20499 20500\n\t\tf 3 -19032 19032 19033\n\t\tmu 0 3 20491 20500 20501\n\t\tf 3 -19034 19034 19035\n\t\tmu 0 3 20491 20501 20502\n\t\tf 3 -19036 19036 19037\n\t\tmu 0 3 20491 20502 20503\n\t\tf 3 -19038 19038 19039\n\t\tmu 0 3 20491 20503 20504\n\t\tf 3 -19040 19040 19041\n\t\tmu 0 3 20491 20504 20505\n\t\tf 3 -19042 19042 19043\n\t\tmu 0 3 20491 20505 20506\n\t\tf 3 -19044 19044 19045\n\t\tmu 0 3 20491 20506 20507\n\t\tf 3 -19046 19046 -19016\n\t\tmu 0 3 20491 20507 20492\n\t\tf 3 19047 -19021 19048\n\t\tmu 0 3 20508 20495 20494\n\t\tf 3 19049 19050 -19049\n\t\tmu 0 3 20494 20509 20508\n\t\tf 3 -19048 19051 19052\n\t\tmu 0 3 20495 20508 20510\n\t\tf 3 19053 -19023 -19053\n\t\tmu 0 3 20510 20496 20495\n\t\tf 3 -19054 19054 19055\n\t\tmu 0 3 20496 20510 20511\n\t\tf 3 19056 -19025 -19056\n\t\tmu 0 3 20511 20497 20496\n\t\tf 3 -19057 19057 19058\n\t\tmu 0 3 20497 20511 20512\n\t\tf 3 19059 -19027 -19059\n\t\tmu 0 3 20512 20498 20497\n\t\tf 3 -19060 19060 19061\n\t\tmu 0 3 20498 20512 20513\n\t\tf 3 19062 -19029 -19062\n\t\tmu 0 3 20513 20499 20498\n\t\tf 3 -19063 19063 19064\n\t\tmu 0 3 20499 20513 20514\n\t\tf 3 19065 -19031 -19065\n\t\tmu 0 3 20514 20500 20499\n\t\tf 3 -19066 19066 19067\n\t\tmu 0 3 20500 20514 20515\n\t\tf 3 19068 -19033 -19068\n\t\tmu 0 3 20515 20501 20500\n\t\tf 3 -19069 19069 19070\n\t\tmu 0 3 20501 20515 20516\n\t\tf 3 19071 -19035 -19071\n\t\tmu 0 3 20516 20502 20501\n\t\tf 3 -19072 19072 19073\n\t\tmu 0 3 20502 20516 20517\n\t\tf 3 19074 -19037 -19074\n\t\tmu 0 3 20517 20503 20502\n\t\tf 3 -19075 19075 19076\n\t\tmu 0 3 20503 20517 20518\n\t\tf 3 19077 -19039 -19077\n\t\tmu 0 3 20518 20504 20503\n\t\tf 3 -19078 19078 19079\n\t\tmu 0 3 20504 20518 20519\n\t\tf 3 19080 -19041 -19080\n\t\tmu 0 3 20519 20505 20504\n\t\tf 3 -19081 19081 19082\n\t\tmu 0 3 20505 20519 20520\n\t\tf 3 19083 -19043 -19083\n\t\tmu 0 3 20520 20506 20505\n\t\tf 3 -19084 19084 19085\n\t\tmu 0 3 20506 20520 20521\n\t\tf 3 19086 -19045 -19086\n\t\tmu 0 3 20521 20507 20506\n\t\tf 3 -19087 19087 19088\n\t\tmu 0 3 20507 20521 20522\n\t\tf 3 19089 -19047 -19089\n\t\tmu 0 3 20522 20492 20507\n\t\tf 3 -19090 19090 19091\n\t\tmu 0 3 20492 20522 20523\n\t\tf 3 19092 -19017 -19092\n\t\tmu 0 3 20523 20493 20492\n\t\tf 3 -19093 19093 19094\n\t\tmu 0 3 20493 20523 20509\n\t\tf 3 -19050 -19019 -19095\n\t\tmu 0 3 20509 20494 20493\n\t\tf 3 19095 -19091 19096\n\t\tmu 0 3 20524 20523 20522\n\t\tf 3 19097 19098 -19097\n\t\tmu 0 3 20522 20525 20524\n\t\tf 3 -19098 -19088 19099\n\t\tmu 0 3 20525 20522 20521\n\t\tf 3 -19096 19100 19101\n\t\tmu 0 3 20523 20524 20526\n\t\tf 3 19102 -19094 -19102\n\t\tmu 0 3 20526 20509 20523\n\t\tf 3 -19103 19103 19104\n\t\tmu 0 3 20509 20526 20527\n\t\tf 3 19105 -19051 -19105\n\t\tmu 0 3 20527 20508 20509\n\t\tf 3 -19106 19106 19107\n\t\tmu 0 3 20508 20527 20528\n\t\tf 3 19108 -19052 -19108\n\t\tmu 0 3 20528 20510 20508\n\t\tf 3 -19109 19109 19110\n\t\tmu 0 3 20510 20528 20529\n\t\tf 3 19111 -19055 -19111\n\t\tmu 0 3 20529 20511 20510\n\t\tf 3 -19112 19112 19113\n\t\tmu 0 3 20511 20529 20530\n\t\tf 3 19114 -19058 -19114\n\t\tmu 0 3 20530 20512 20511\n\t\tf 3 -19115 19115 19116\n\t\tmu 0 3 20512 20530 20531\n\t\tf 3 19117 -19061 -19117\n\t\tmu 0 3 20531 20513 20512\n\t\tf 3 -19118 19118 19119\n\t\tmu 0 3 20513 20531 20532\n\t\tf 3 19120 -19064 -19120\n\t\tmu 0 3 20532 20514 20513\n\t\tf 3 -19121 19121 19122\n\t\tmu 0 3 20514 20532 20533\n\t\tf 3 19123 -19067 -19123\n\t\tmu 0 3 20533 20515 20514\n\t\tf 3 -19124 19124 19125\n\t\tmu 0 3 20515 20533 20534\n\t\tf 3 19126 -19070 -19126\n\t\tmu 0 3 20534 20516 20515\n\t\tf 3 -19127 19127 19128\n\t\tmu 0 3 20516 20534 20535\n\t\tf 3 19129 -19073 -19129\n\t\tmu 0 3 20535 20517 20516\n\t\tf 3 -19130 19130 19131\n\t\tmu 0 3 20517 20535 20536\n\t\tf 3 19132 -19076 -19132\n\t\tmu 0 3 20536 20518 20517\n\t\tf 3 -19133 19133 19134\n\t\tmu 0 3 20518 20536 20537\n\t\tf 3 19135 -19079 -19135\n\t\tmu 0 3 20537 20519 20518\n\t\tf 3 -19136 19136 19137\n\t\tmu 0 3 20519 20537 20538\n\t\tf 3 19138 -19082 -19138\n\t\tmu 0 3 20538 20520 20519\n\t\tf 3 -19139 19139 19140\n\t\tmu 0 3 20520 20538 20539\n\t\tf 3 19141 -19085 -19141\n\t\tmu 0 3 20539 20521 20520\n\t\tf 3 -19142 19142 -19100\n\t\tmu 0 3 20521 20539 20525\n\t\tf 3 19143 19144 19145\n\t\tmu 0 3 20540 20541 20542\n\t\tf 3 19146 19147 -19144\n\t\tmu 0 3 20543 20544 20545\n\t\tf 3 19148 19149 -19147\n\t\tmu 0 3 20546 20547 20548\n\t\tf 3 19150 19151 -19149\n\t\tmu 0 3 20549 20550 20551\n\t\tf 3 19152 19153 -19151\n\t\tmu 0 3 20552 20553 20554\n\t\tf 3 19154 19155 -19153\n\t\tmu 0 3 20555 20556 20557\n\t\tf 3 19156 19157 -19155\n\t\tmu 0 3 20558 20559 20560\n\t\tf 3 19158 19159 -19157\n\t\tmu 0 3 20561 20562 20563\n\t\tf 3 19160 19161 -19159\n\t\tmu 0 3 20564 20565 20566\n\t\tf 3 19162 19163 -19161\n\t\tmu 0 3 20567 20568 20569\n\t\tf 3 19164 19165 -19163\n\t\tmu 0 3 20570 20571 20572\n\t\tf 3 19166 19167 -19165\n\t\tmu 0 3 20573 20574 20575\n\t\tf 3 19168 19169 -19167\n\t\tmu 0 3 20576 20577 20578\n\t\tf 3 19170 19171 -19169\n\t\tmu 0 3 20579 20580 20581\n\t\tf 3 19172 19173 -19171\n\t\tmu 0 3 20582 20583 20584\n\t\tf 3 -19146 19174 -19173\n\t\tmu 0 3 20585 20586 20587\n\t\tf 3 -19150 19175 19176\n\t\tmu 0 3 20588 20589 20590\n\t\tf 3 -19152 19177 19178\n\t\tmu 0 3 20591 20592 20593\n\t\tf 3 19179 -19176 -19179\n\t\tmu 0 3 20594 20595 20596\n\t\tf 3 -19156 19180 19181\n\t\tmu 0 3 20597 20598 20599\n\t\tf 3 -19158 19182 19183\n\t\tmu 0 3 20600 20601 20602\n\t\tf 3 19184 -19181 -19184\n\t\tmu 0 3 20603 20604 20605\n\t\tf 3 -19162 19185 19186\n\t\tmu 0 3 20606 20607 20608\n\t\tf 3 -19164 19187 19188\n\t\tmu 0 3 20609 20610 20611\n\t\tf 3 19189 -19186 -19189\n\t\tmu 0 3 20612 20613 20614\n\t\tf 3 -19168 19190 19191\n\t\tmu 0 3 20615 20616 20617\n\t\tf 3 -19170 19192 19193\n\t\tmu 0 3 20618 20619 20620\n\t\tf 3 19194 -19191 -19194\n\t\tmu 0 3 20621 20622 20623\n\t\tf 3 -19174 19195 19196\n\t\tmu 0 3 20624 20625 20626\n\t\tf 3 -19175 19197 19198\n\t\tmu 0 3 20627 20628 20629\n\t\tf 3 19199 -19198 19200\n\t\tmu 0 3 20630 20631 20632\n\t\tf 3 -19145 19201 -19201\n\t\tmu 0 3 20633 20634 20635\n\t\tf 3 19202 -19202 19203\n\t\tmu 0 3 20636 20637 20638\n\t\tf 3 -19148 19204 -19204\n\t\tmu 0 3 20639 20640 20641\n\t\tf 3 19205 -19205 -19177\n\t\tmu 0 3 20642 20643 20644\n\t\tf 3 19206 -19196 -19199\n\t\tmu 0 3 20645 20646 20647\n\t\tf 3 -19200 19207 19208\n\t\tmu 0 3 20648 20649 20650\n\t\tf 3 -19208 -19203 19209\n\t\tmu 0 3 20651 20652 20653\n\t\tf 3 19210 19211 -19209\n\t\tmu 0 3 20654 20655 20656\n\t\tf 3 19212 19213 -19210\n\t\tmu 0 3 20657 20658 20659\n\t\tf 3 -19213 -19206 19214\n\t\tmu 0 3 20660 20661 20662\n\t\tf 3 19215 19216 -19215\n\t\tmu 0 3 20663 20664 20665\n\t\tf 3 -19216 -19180 19217\n\t\tmu 0 3 20666 20667 20668\n\t\tf 3 19218 19219 -19218\n\t\tmu 0 3 20669 20670 20671\n\t\tf 3 -19219 19220 19221\n\t\tmu 0 3 20672 20673 20674\n\t\tf 3 -19221 -19178 19222\n\t\tmu 0 3 20675 20676 20677\n\t\tf 3 -19154 19223 -19223\n\t\tmu 0 3 20678 20679 20680\n\t\tf 3 19224 -19224 -19182\n\t\tmu 0 3 20681 20682 20683\n\t\tf 3 19225 19226 -19222\n\t\tmu 0 3 20684 20685 20686\n\t\tf 3 -19226 -19225 19227\n\t\tmu 0 3 20687 20688 20689\n\t\tf 3 19228 19229 -19228\n\t\tmu 0 3 20690 20691 20692\n\t\tf 3 -19229 -19185 19230\n\t\tmu 0 3 20693 20694 20695\n\t\tf 3 19231 19232 -19231\n\t\tmu 0 3 20696 20697 20698\n\t\tf 3 -19232 19233 19234\n\t\tmu 0 3 20699 20700 20701\n\t\tf 3 -19234 -19183 19235\n\t\tmu 0 3 20702 20703 20704\n\t\tf 3 -19160 19236 -19236\n\t\tmu 0 3 20705 20706 20707\n\t\tf 3 19237 -19237 -19187\n\t\tmu 0 3 20708 20709 20710\n\t\tf 3 19238 19239 -19235\n\t\tmu 0 3 20711 20712 20713\n\t\tf 3 -19239 -19238 19240\n\t\tmu 0 3 20714 20715 20716\n\t\tf 3 19241 19242 -19241\n\t\tmu 0 3 20717 20718 20719\n\t\tf 3 -19242 -19190 19243\n\t\tmu 0 3 20720 20721 20722\n\t\tf 3 19244 19245 -19244\n\t\tmu 0 3 20723 20724 20725\n\t\tf 3 -19245 19246 19247\n\t\tmu 0 3 20726 20727 20728\n\t\tf 3 -19247 -19188 19248\n\t\tmu 0 3 20729 20730 20731\n\t\tf 3 -19166 19249 -19249\n\t\tmu 0 3 20732 20733 20734\n\t\tf 3 19250 -19250 -19192\n\t\tmu 0 3 20735 20736 20737\n\t\tf 3 19251 19252 -19248\n\t\tmu 0 3 20738 20739 20740\n\t\tf 3 -19252 -19251 19253\n\t\tmu 0 3 20741 20742 20743\n\t\tf 3 19254 19255 -19254\n\t\tmu 0 3 20744 20745 20746\n\t\tf 3 -19255 -19195 19256\n\t\tmu 0 3 20747 20748 20749\n\t\tf 3 19257 19258 -19257\n\t\tmu 0 3 20750 20751 20752\n\t\tf 3 -19258 19259 19260\n\t\tmu 0 3 20753 20754 20755\n\t\tf 3 -19260 -19193 19261\n\t\tmu 0 3 20756 20757 20758\n\t\tf 3 -19172 19262 -19262\n\t\tmu 0 3 20759 20760 20761\n\t\tf 3 19263 -19263 -19197\n\t\tmu 0 3 20762 20763 20764\n\t\tf 3 19264 19265 -19261\n\t\tmu 0 3 20765 20766 20767\n\t\tf 3 -19265 -19264 19266\n\t\tmu 0 3 20768 20769 20770\n\t\tf 3 19267 19268 -19267\n\t\tmu 0 3 20771 20772 20773\n\t\tf 3 -19268 -19207 19269\n\t\tmu 0 3 20774 20775 20776\n\t\tf 3 -19212 19270 -19270\n\t\tmu 0 3 20777 20778 20779\n\t\tf 3 19271 19272 19273\n\t\tmu 0 3 20780 20781 20782\n\t\tf 3 19274 19275 -19274\n\t\tmu 0 3 20782 20783 20780\n\t\tf 3 -19273 19276 19277\n\t\tmu 0 3 20782 20781 2722\n\t\tf 3 -19277 19278 19279\n\t\tmu 0 3 2722 20781 20784\n\t\tf 3 19280 -2437 -19280\n\t\tmu 0 3 20784 2721 2722\n\t\tf 3 19281 -19281 19282\n\t\tmu 0 3 20785 2721 20784\n\t\tf 3 19283 19284 -19283\n\t\tmu 0 3 20784 20786 20785\n\t\tf 3 19285 -19284 19286\n\t\tmu 0 3 20787 20786 20784\n\t\tf 3 19287 19288 -19287\n\t\tmu 0 3 20784 20788 20787\n\t\tf 3 19289 19290 19291\n\t\tmu 0 3 20789 20790 20791\n\t\tf 3 19292 19293 19294\n\t\tmu 0 3 20792 20793 20794\n\t\tf 3 19295 19296 -19295\n\t\tmu 0 3 20795 20796 20797\n\t\tf 3 -19293 19297 19298\n\t\tmu 0 3 20798 20799 20800\n\t\tf 3 19299 19300 -19299\n\t\tmu 0 3 20801 20802 20803\n\t\tf 3 -19300 19301 19302\n\t\tmu 0 3 20804 20805 20806\n\t\tf 3 19303 19304 -19303\n\t\tmu 0 3 20807 20808 20809\n\t\tf 3 19305 19306 19307\n\t\tmu 0 3 20780 20788 20810\n\t\tf 3 19308 -19307 19309\n\t\tmu 0 3 20811 20810 20788\n\t\tf 3 -19288 19310 -19310\n\t\tmu 0 3 20788 20784 20811\n\t\tf 3 19311 -19311 19312\n\t\tmu 0 3 20812 20811 20784\n\t\tf 3 -19279 19313 -19313\n\t\tmu 0 3 20784 20781 20812\n\t\tf 3 19314 -19314 19315\n\t\tmu 0 3 20813 20812 20781\n\t\tf 3 19316 19317 -19308\n\t\tmu 0 3 20810 20813 20780\n\t\tf 3 -19272 -19318 -19316\n\t\tmu 0 3 20781 20780 20813\n\t\tf 3 19318 19319 19320\n\t\tmu 0 3 20814 20815 20816\n\t\tf 3 19321 19322 -19321\n\t\tmu 0 3 20816 20817 20814\n\t\tf 3 19323 19324 19325\n\t\tmu 0 3 20818 20819 20820\n\t\tf 3 19326 19327 -19326\n\t\tmu 0 3 20820 20821 20818\n\t\tf 3 19328 19329 19330\n\t\tmu 0 3 20822 20823 20824\n\t\tf 3 19331 19332 -19331\n\t\tmu 0 3 20824 20825 20822;\n\tsetAttr \".fc[10000:10499]\"\n\t\tf 3 19333 19334 19335\n\t\tmu 0 3 20826 20827 20828\n\t\tf 3 19336 19337 -19336\n\t\tmu 0 3 20828 20829 20826\n\t\tf 3 19338 19339 19340\n\t\tmu 0 3 20830 20831 20832\n\t\tf 3 19341 19342 -19341\n\t\tmu 0 3 20832 20833 20830\n\t\tf 3 19343 19344 19345\n\t\tmu 0 3 20834 20835 20836\n\t\tf 3 19346 19347 -19346\n\t\tmu 0 3 20837 20838 20839\n\t\tf 3 19348 -19347 19349\n\t\tmu 0 3 20840 20841 20842\n\t\tf 3 19350 -19349 19351\n\t\tmu 0 3 20843 20844 20845\n\t\tf 3 -2504 19352 -19352\n\t\tmu 0 3 20846 20847 20848\n\t\tf 3 -19353 19353 19354\n\t\tmu 0 3 20849 20850 20851\n\t\tf 3 19355 19356 -19355\n\t\tmu 0 3 20852 20853 20854\n\t\tf 3 -19357 19357 19358\n\t\tmu 0 3 20855 20856 20857\n\t\tf 3 19359 19360 -19359\n\t\tmu 0 3 20858 20859 20860\n\t\tf 3 19361 19362 19363\n\t\tmu 0 3 20861 20862 20863\n\t\tf 3 19364 19365 19366\n\t\tmu 0 3 20864 20865 20866\n\t\tf 3 19367 19368 -19367\n\t\tmu 0 3 20867 20868 20869\n\t\tf 3 -19368 -19348 19369\n\t\tmu 0 3 20870 20871 20872\n\t\tf 3 19370 -19361 19371\n\t\tmu 0 3 20873 20874 20875\n\t\tf 3 -19365 19372 -19372\n\t\tmu 0 3 20876 20877 20878\n\t\tf 3 19373 -19351 19374\n\t\tmu 0 3 20879 20880 20881\n\t\tf 3 -19371 19375 -19375\n\t\tmu 0 3 20882 20883 20884\n\t\tf 3 -19374 19376 -19370\n\t\tmu 0 3 20885 20886 20887\n\t\tf 3 19377 19378 19379\n\t\tmu 0 3 20888 20889 20890\n\t\tf 3 19380 19381 -19380\n\t\tmu 0 3 20891 20892 20893\n\t\tf 3 19382 19383 19384\n\t\tmu 0 3 20894 20895 20896\n\t\tf 3 19385 19386 -19385\n\t\tmu 0 3 20897 20898 20899\n\t\tf 3 19387 19388 19389\n\t\tmu 0 3 20900 20901 20902\n\t\tf 3 19390 19391 -19390\n\t\tmu 0 3 20903 20904 20905\n\t\tf 3 19392 19393 19394\n\t\tmu 0 3 20906 20907 20908\n\t\tf 3 19395 19396 -19395\n\t\tmu 0 3 20909 20910 20911\n\t\tf 3 19397 19398 19399\n\t\tmu 0 3 20912 20913 20914\n\t\tf 3 19400 19401 -19400\n\t\tmu 0 3 20915 20916 20917\n\t\tf 3 19402 19403 19404\n\t\tmu 0 3 20918 20919 20920\n\t\tf 3 19405 19406 -19405\n\t\tmu 0 3 20920 20921 20918\n\t\tf 3 19407 -19403 19408\n\t\tmu 0 3 20922 20919 20918\n\t\tf 3 19409 19410 -19409\n\t\tmu 0 3 20918 20923 20922\n\t\tf 3 19411 -19411 19412\n\t\tmu 0 3 20924 20922 20923\n\t\tf 3 19413 19414 -19413\n\t\tmu 0 3 20923 20925 20924\n\t\tf 3 19415 -19415 19416\n\t\tmu 0 3 20926 20924 20925\n\t\tf 3 19417 19418 -19417\n\t\tmu 0 3 20925 20927 20926\n\t\tf 3 19419 -19419 19420\n\t\tmu 0 3 20928 20926 20927\n\t\tf 3 19421 19422 -19421\n\t\tmu 0 3 20927 20929 20928\n\t\tf 3 19423 -19423 19424\n\t\tmu 0 3 20930 20928 20929\n\t\tf 3 19425 19426 -19425\n\t\tmu 0 3 20929 20931 20930\n\t\tf 3 19427 -19427 19428\n\t\tmu 0 3 20932 20930 20931\n\t\tf 3 19429 19430 -19429\n\t\tmu 0 3 20931 20933 20932\n\t\tf 3 19431 -19406 19432\n\t\tmu 0 3 20934 20921 20920\n\t\tf 3 19433 19434 -19433\n\t\tmu 0 3 20920 20935 20934\n\t\tf 3 19435 -19435 19436\n\t\tmu 0 3 20936 20934 20935\n\t\tf 3 19437 19438 -19436\n\t\tmu 0 3 20936 20937 20934\n\t\tf 3 -19437 19439 19440\n\t\tmu 0 3 20936 20935 20938\n\t\tf 3 -19441 19441 19442\n\t\tmu 0 3 20936 20938 20939\n\t\tf 3 19443 -19431 19444\n\t\tmu 0 3 20939 20932 20933\n\t\tf 3 -19443 19445 19446\n\t\tmu 0 3 20936 20939 20940\n\t\tf 3 19447 19448 -19445\n\t\tmu 0 3 20933 20941 20939\n\t\tf 3 -19449 19449 -19446\n\t\tmu 0 3 20939 20941 20940\n\t\tf 3 19450 19451 19452\n\t\tmu 0 3 20942 20943 20944\n\t\tf 3 19453 19454 -19453\n\t\tmu 0 3 20944 20945 20942\n\t\tf 3 19455 -19455 19456\n\t\tmu 0 3 20946 20942 20945\n\t\tf 3 19457 19458 -19457\n\t\tmu 0 3 20945 20947 20946\n\t\tf 3 -19452 19459 19460\n\t\tmu 0 3 20944 20943 20948\n\t\tf 3 19461 19462 -19461\n\t\tmu 0 3 20948 20949 20944\n\t\tf 3 19463 19464 19465\n\t\tmu 0 3 20950 20951 20952\n\t\tf 3 19466 19467 -19466\n\t\tmu 0 3 20953 20954 20950\n\t\tf 3 19468 -19468 19469\n\t\tmu 0 3 20955 20950 20954\n\t\tf 3 19470 19471 -19470\n\t\tmu 0 3 20954 20956 20955\n\t\tf 3 19472 19473 19474\n\t\tmu 0 3 20957 20958 20946\n\t\tf 3 19475 -19467 19476\n\t\tmu 0 3 20957 20954 20959\n\t\tf 3 19477 -19473 -19477\n\t\tmu 0 3 20960 20961 20957\n\t\tf 3 19478 19479 -19475\n\t\tmu 0 3 20946 20962 20957\n\t\tf 3 -19480 19480 19481\n\t\tmu 0 3 20957 20962 20963\n\t\tf 3 19482 -19481 19483\n\t\tmu 0 3 20964 20963 20962\n\t\tf 3 19484 19485 -19484\n\t\tmu 0 3 20962 20965 20964\n\t\tf 3 -19485 -19479 19486\n\t\tmu 0 3 20965 20962 20946\n\t\tf 3 -19486 19487 19488\n\t\tmu 0 3 20964 20965 20966\n\t\tf 3 19489 19490 -19489\n\t\tmu 0 3 20966 20967 20964\n\t\tf 3 -19490 19491 19492\n\t\tmu 0 3 20967 20966 20968\n\t\tf 3 19493 -19492 19494\n\t\tmu 0 3 20969 20968 20966\n\t\tf 3 19495 19496 -19495\n\t\tmu 0 3 20966 20970 20969\n\t\tf 3 -19496 -19488 19497\n\t\tmu 0 3 20970 20966 20965\n\t\tf 3 19498 19499 -19493\n\t\tmu 0 3 20968 20971 20967\n\t\tf 3 19500 19501 -19498\n\t\tmu 0 3 20965 20972 20970\n\t\tf 3 -19502 19502 19503\n\t\tmu 0 3 20970 20972 20973\n\t\tf 3 19504 19505 -19504\n\t\tmu 0 3 20973 20974 20970\n\t\tf 3 -19497 -19506 19506\n\t\tmu 0 3 20969 20970 20974\n\t\tf 3 19507 19508 -19507\n\t\tmu 0 3 20974 20975 20969\n\t\tf 3 19509 19510 19511\n\t\tmu 0 3 20976 20977 20978\n\t\tf 3 19512 19513 19514\n\t\tmu 0 3 20979 20980 20981\n\t\tf 3 19515 -19514 19516\n\t\tmu 0 3 20982 20983 20980\n\t\tf 3 19517 19518 -19517\n\t\tmu 0 3 20980 20984 20982\n\t\tf 3 19519 -19501 -19487\n\t\tmu 0 3 20946 20972 20965\n\t\tf 3 19520 -19519 19521\n\t\tmu 0 3 20985 20982 20984\n\t\tf 3 19522 19523 -19522\n\t\tmu 0 3 20984 20986 20985\n\t\tf 3 19524 -19524 19525\n\t\tmu 0 3 20987 20985 20986\n\t\tf 3 19526 19527 -19526\n\t\tmu 0 3 20986 20988 20987\n\t\tf 3 -19528 19528 19529\n\t\tmu 0 3 20987 20988 20989\n\t\tf 3 -19520 -19459 19530\n\t\tmu 0 3 20972 20946 20947\n\t\tf 3 19531 -19503 -19531\n\t\tmu 0 3 20947 20973 20972\n\t\tf 3 19532 -19500 19533\n\t\tmu 0 3 20990 20967 20971\n\t\tf 3 19534 19535 -19534\n\t\tmu 0 3 20971 20991 20990\n\t\tf 3 19536 -19536 19537\n\t\tmu 0 3 20992 20990 20991\n\t\tf 3 19538 19539 -19538\n\t\tmu 0 3 20991 20993 20992\n\t\tf 3 -19537 19540 19541\n\t\tmu 0 3 20990 20992 20994\n\t\tf 3 19542 19543 -19533\n\t\tmu 0 3 20990 20995 20967\n\t\tf 3 19544 -19491 -19544\n\t\tmu 0 3 20996 20964 20967\n\t\tf 3 -19545 19545 19546\n\t\tmu 0 3 20964 20997 20998\n\t\tf 3 19547 -19483 -19547\n\t\tmu 0 3 20998 20963 20964\n\t\tf 3 -19548 19548 19549\n\t\tmu 0 3 20963 20998 20999\n\t\tf 3 19550 19551 -19550\n\t\tmu 0 3 20999 21000 20963\n\t\tf 3 -19552 19552 -19482\n\t\tmu 0 3 20963 21000 20957\n\t\tf 3 -19476 -19553 19553\n\t\tmu 0 3 20954 20957 21000\n\t\tf 3 19554 -19471 -19554\n\t\tmu 0 3 21000 20956 20954\n\t\tf 3 19555 -19555 19556\n\t\tmu 0 3 21001 20956 21000\n\t\tf 3 -19551 19557 -19557\n\t\tmu 0 3 21000 20999 21001\n\t\tf 3 -19556 19558 19559\n\t\tmu 0 3 20956 21001 21002\n\t\tf 3 19560 19561 19562\n\t\tmu 0 3 21003 21004 21005\n\t\tf 3 -19563 19563 19564\n\t\tmu 0 3 21003 21005 21006\n\t\tf 3 -19565 19565 19566\n\t\tmu 0 3 21003 21006 21007\n\t\tf 3 19567 -19564 19568\n\t\tmu 0 3 21008 21006 21005\n\t\tf 3 -19568 19569 19570\n\t\tmu 0 3 21006 21008 21009\n\t\tf 3 19571 -19570 19572\n\t\tmu 0 3 21010 21009 21008\n\t\tf 3 19573 19574 -19573\n\t\tmu 0 3 21008 21011 21010\n\t\tf 3 -19575 19575 19576\n\t\tmu 0 3 21010 21011 21012\n\t\tf 3 19577 19578 -19577\n\t\tmu 0 3 21012 21013 21010\n\t\tf 3 -19574 19579 19580\n\t\tmu 0 3 21011 21008 21014\n\t\tf 3 19581 -19580 -19569\n\t\tmu 0 3 21005 21014 21008\n\t\tf 3 19582 19583 -19581\n\t\tmu 0 3 21014 21015 21011\n\t\tf 3 -19576 -19584 19584\n\t\tmu 0 3 21012 21011 21015\n\t\tf 3 19585 19586 -19585\n\t\tmu 0 3 21015 21016 21012\n\t\tf 3 -19572 19587 19588\n\t\tmu 0 3 21009 21010 21017\n\t\tf 3 19589 19590 -19589\n\t\tmu 0 3 21017 21018 21009\n\t\tf 3 19591 -19588 19592\n\t\tmu 0 3 21019 21017 21010\n\t\tf 3 -19579 19593 -19593\n\t\tmu 0 3 21010 21013 21019\n\t\tf 3 19594 19595 -19571\n\t\tmu 0 3 21009 21020 21006\n\t\tf 3 -19595 -19591 19596\n\t\tmu 0 3 21020 21009 21018\n\t\tf 3 19597 19598 -19597\n\t\tmu 0 3 21018 21021 21020\n\t\tf 3 -19599 19599 19600\n\t\tmu 0 3 21020 21021 21022\n\t\tf 3 19601 19602 -19601\n\t\tmu 0 3 21022 21023 21020\n\t\tf 3 19603 -19596 -19603\n\t\tmu 0 3 21023 21006 21020\n\t\tf 3 19604 -19566 -19604\n\t\tmu 0 3 21023 21007 21006\n\t\tf 3 19605 -19567 19606\n\t\tmu 0 3 21024 21003 21007\n\t\tf 3 -19605 19607 -19607\n\t\tmu 0 3 21007 21025 21024\n\t\tf 3 19608 19609 19610\n\t\tmu 0 3 21026 21027 21028\n\t\tf 3 19611 19612 -19611\n\t\tmu 0 3 21028 21029 21026\n\t\tf 3 19613 -19612 19614\n\t\tmu 0 3 21030 21029 21028\n\t\tf 3 19615 19616 -19615\n\t\tmu 0 3 21028 21031 21030\n\t\tf 3 19617 -19617 19618\n\t\tmu 0 3 21032 21030 21031\n\t\tf 3 19619 19620 -19619\n\t\tmu 0 3 21031 21033 21032\n\t\tf 3 19621 19622 19623\n\t\tmu 0 3 21034 21035 21036\n\t\tf 3 19624 19625 -19624\n\t\tmu 0 3 21036 21037 21034\n\t\tf 3 19626 -19625 19627\n\t\tmu 0 3 21038 21037 21036\n\t\tf 3 19628 19629 -19628\n\t\tmu 0 3 21036 21039 21038\n\t\tf 3 19630 -19630 19631\n\t\tmu 0 3 21040 21038 21039\n\t\tf 3 19632 19633 -19632\n\t\tmu 0 3 21039 21041 21040\n\t\tf 3 19634 -19634 19635\n\t\tmu 0 3 21042 21040 21041\n\t\tf 3 19636 19637 -19636\n\t\tmu 0 3 21041 21043 21042\n\t\tf 3 19638 19639 19640\n\t\tmu 0 3 21044 21045 21046\n\t\tf 3 19641 19642 -19641\n\t\tmu 0 3 21046 21047 21044\n\t\tf 3 -19642 19643 19644\n\t\tmu 0 3 21047 21046 21048\n\t\tf 3 19645 19646 -19645\n\t\tmu 0 3 21049 21050 21047\n\t\tf 3 19647 19648 19649\n\t\tmu 0 3 21051 21052 21053\n\t\tf 3 19650 19651 -19650\n\t\tmu 0 3 21053 21054 21051\n\t\tf 3 19652 -19648 19653\n\t\tmu 0 3 21055 21052 21051\n\t\tf 3 19654 19655 -19654\n\t\tmu 0 3 21051 21056 21055\n\t\tf 3 -19656 19656 19657\n\t\tmu 0 3 21055 21056 21042\n\t\tf 3 -19638 19658 -19658\n\t\tmu 0 3 21042 21043 21055\n\t\tf 3 19659 19660 19661\n\t\tmu 0 3 21057 21058 21059\n\t\tf 3 19662 19663 -19662\n\t\tmu 0 3 21059 21060 21057\n\t\tf 3 19664 -19661 19665\n\t\tmu 0 3 21061 21059 21058\n\t\tf 3 19666 19667 -19666\n\t\tmu 0 3 21058 21062 21061\n\t\tf 3 -19665 19668 19669\n\t\tmu 0 3 21059 21061 21063\n\t\tf 3 19670 19671 -19670\n\t\tmu 0 3 21063 21064 21059\n\t\tf 3 19672 -19663 19673\n\t\tmu 0 3 21065 21060 21059\n\t\tf 3 -19672 19674 -19674\n\t\tmu 0 3 21059 21064 21065\n\t\tf 3 -19668 19675 19676\n\t\tmu 0 3 21061 21062 21066\n\t\tf 3 19677 19678 -19677\n\t\tmu 0 3 21066 21067 21061\n\t\tf 3 -19678 19679 19680\n\t\tmu 0 3 21067 21066 21068\n\t\tf 3 19681 19682 -19681\n\t\tmu 0 3 21068 21069 21067\n\t\tf 3 -19682 19683 19684\n\t\tmu 0 3 21069 21068 21070\n\t\tf 3 19685 19686 -19685\n\t\tmu 0 3 21070 21071 21069\n\t\tf 3 19687 -19686 19688\n\t\tmu 0 3 21072 21071 21070\n\t\tf 3 19689 19690 -19689\n\t\tmu 0 3 21070 21073 21072\n\t\tf 3 19691 -19691 19692\n\t\tmu 0 3 21074 21072 21073\n\t\tf 3 19693 19694 -19693\n\t\tmu 0 3 21073 21075 21074\n\t\tf 3 -19692 19695 19696\n\t\tmu 0 3 21072 21074 21076\n\t\tf 3 19697 19698 -19697\n\t\tmu 0 3 21076 21077 21072\n\t\tf 3 -19688 -19699 19699\n\t\tmu 0 3 21071 21072 21077\n\t\tf 3 19700 19701 -19700\n\t\tmu 0 3 21077 21078 21071\n\t\tf 3 19702 -19671 19703\n\t\tmu 0 3 21079 21064 21063\n\t\tf 3 19704 19705 -19704\n\t\tmu 0 3 21063 21080 21079\n\t\tf 3 -19706 19706 19707\n\t\tmu 0 3 21079 21080 21081\n\t\tf 3 19708 -19707 19709\n\t\tmu 0 3 21082 21081 21080\n\t\tf 3 19710 19711 -19710\n\t\tmu 0 3 21080 21083 21082\n\t\tf 3 -19712 19712 19713\n\t\tmu 0 3 21082 21083 21084\n\t\tf 3 19714 19715 -19714\n\t\tmu 0 3 21084 21085 21082\n\t\tf 3 19716 -19713 19717\n\t\tmu 0 3 21086 21084 21083\n\t\tf 3 -19717 19718 19719\n\t\tmu 0 3 21084 21086 21078\n\t\tf 3 19720 19721 -19718\n\t\tmu 0 3 21083 21087 21086\n\t\tf 3 -19721 -19711 19722\n\t\tmu 0 3 21087 21083 21080\n\t\tf 3 -19705 19723 -19723\n\t\tmu 0 3 21080 21063 21087\n\t\tf 3 19724 19725 -19720\n\t\tmu 0 3 21078 21088 21084\n\t\tf 3 -19715 -19726 19726\n\t\tmu 0 3 21085 21084 21088\n\t\tf 3 19727 19728 -19727\n\t\tmu 0 3 21088 21089 21085\n\t\tf 3 19729 19730 -19708\n\t\tmu 0 3 21081 21090 21079\n\t\tf 3 -19728 19731 19732\n\t\tmu 0 3 21089 21088 21091\n\t\tf 3 -19732 -19725 19733\n\t\tmu 0 3 21091 21088 21078\n\t\tf 3 19734 19735 -19733\n\t\tmu 0 3 21091 21092 21089\n\t\tf 3 19736 -19735 19737\n\t\tmu 0 3 21093 21092 21091\n\t\tf 3 19738 19739 -19738\n\t\tmu 0 3 21091 21094 21093\n\t\tf 3 19740 -19722 19741\n\t\tmu 0 3 21069 21086 21087\n\t\tf 3 19742 -19683 -19742\n\t\tmu 0 3 21087 21067 21069\n\t\tf 3 -19741 -19687 19743\n\t\tmu 0 3 21086 21069 21071\n\t\tf 3 -19702 -19719 -19744\n\t\tmu 0 3 21071 21078 21086\n\t\tf 3 -19740 19744 19745\n\t\tmu 0 3 21093 21094 21095\n\t\tf 3 19746 -19745 19747\n\t\tmu 0 3 21096 21095 21094\n\t\tf 3 -19747 19748 19749\n\t\tmu 0 3 21095 21096 21097\n\t\tf 3 19750 19751 -19750\n\t\tmu 0 3 21097 21098 21095\n\t\tf 3 19752 -19752 19753\n\t\tmu 0 3 21099 21095 21098\n\t\tf 3 -19753 19754 -19746\n\t\tmu 0 3 21095 21099 21093\n\t\tf 3 19755 19756 -19754\n\t\tmu 0 3 21098 21100 21099\n\t\tf 3 19757 -19749 19758\n\t\tmu 0 3 21101 21097 21096\n\t\tf 3 19759 19760 -19759\n\t\tmu 0 3 21096 21102 21101\n\t\tf 3 19761 -19761 19762\n\t\tmu 0 3 21103 21101 21102\n\t\tf 3 19763 19764 -19763\n\t\tmu 0 3 21102 21104 21103\n\t\tf 3 19765 19766 -19748\n\t\tmu 0 3 21094 21076 21096\n\t\tf 3 -19766 -19739 19767\n\t\tmu 0 3 21076 21094 21091\n\t\tf 3 19768 -19698 -19768\n\t\tmu 0 3 21091 21077 21076\n\t\tf 3 -19701 -19769 -19734\n\t\tmu 0 3 21078 21077 21091\n\t\tf 3 19769 -19764 19770\n\t\tmu 0 3 21075 21104 21102\n\t\tf 3 19771 -19695 -19771\n\t\tmu 0 3 21102 21074 21075\n\t\tf 3 -19767 -19696 19772\n\t\tmu 0 3 21096 21076 21074\n\t\tf 3 -19772 -19760 -19773\n\t\tmu 0 3 21074 21102 21096\n\t\tf 3 19773 -19751 19774\n\t\tmu 0 3 21105 21098 21097\n\t\tf 3 -19756 -19774 19775\n\t\tmu 0 3 21100 21098 21105\n\t\tf 3 19776 19777 -19775\n\t\tmu 0 3 21097 21106 21105\n\t\tf 3 -19777 -19758 19778\n\t\tmu 0 3 21106 21097 21101\n\t\tf 3 19779 19780 -19776\n\t\tmu 0 3 21105 21107 21100\n\t\tf 3 19781 -19762 19782\n\t\tmu 0 3 21108 21101 21103\n\t\tf 3 -19782 19783 -19779\n\t\tmu 0 3 21101 21108 21106\n\t\tf 3 19784 19785 -19783\n\t\tmu 0 3 21103 21109 21108\n\t\tf 3 19786 19787 19788\n\t\tmu 0 3 21110 21111 21112\n\t\tf 3 19789 -19523 -19789\n\t\tmu 0 3 21112 21113 21110\n\t\tf 3 19790 -19787 19791\n\t\tmu 0 3 21114 21111 21110\n\t\tf 3 -19518 19792 -19792\n\t\tmu 0 3 21110 21115 21114\n\t\tf 3 19793 -19793 19794\n\t\tmu 0 3 21116 21114 21115\n\t\tf 3 19795 19796 -19795\n\t\tmu 0 3 21115 21117 21116\n\t\tf 3 19797 -19791 19798\n\t\tmu 0 3 21118 21111 21114\n\t\tf 3 -19788 -19798 19799\n\t\tmu 0 3 21112 21111 21119\n\t\tf 3 19800 19801 -19799\n\t\tmu 0 3 21114 21120 21121\n\t\tf 3 -19801 -19794 19802\n\t\tmu 0 3 21122 21114 21116\n\t\tf 3 19803 19804 -19800\n\t\tmu 0 3 21123 21124 21112\n\t\tf 3 -19797 -19508 19805\n\t\tmu 0 3 21116 21117 21125\n\t\tf 3 19806 19807 -19806\n\t\tmu 0 3 21125 21126 21116\n\t\tf 3 19808 -19808 19809\n\t\tmu 0 3 21127 21116 21126\n\t\tf 3 -19809 19810 -19803\n\t\tmu 0 3 21116 21128 21129\n\t\tf 3 19811 19812 -19810\n\t\tmu 0 3 21126 21068 21130\n\t\tf 3 -19684 -19812 19813\n\t\tmu 0 3 21070 21068 21126\n\t\tf 3 19814 19815 -19814\n\t\tmu 0 3 21126 21131 21070\n\t\tf 3 -19815 -19807 19816\n\t\tmu 0 3 21131 21126 21125\n\t\tf 3 19817 19818 -19817\n\t\tmu 0 3 21125 21132 21131\n\t\tf 3 19819 -19819 19820\n\t\tmu 0 3 21133 21131 21132\n\t\tf 3 -19816 -19820 19821\n\t\tmu 0 3 21070 21131 21133\n\t\tf 3 19822 19823 -19821\n\t\tmu 0 3 21132 21134 21133\n\t\tf 3 19824 -19824 19825\n\t\tmu 0 3 21135 21133 21134\n\t\tf 3 19826 19827 -19826\n\t\tmu 0 3 21134 21136 21135\n\t\tf 3 -19825 19828 19829\n\t\tmu 0 3 21133 21135 21075\n\t\tf 3 -19829 19830 19831\n\t\tmu 0 3 21075 21135 21137\n\t\tf 3 19832 -19770 -19832\n\t\tmu 0 3 21137 21104 21075\n\t\tf 3 -19765 -19833 19833\n\t\tmu 0 3 21103 21104 21137\n\t\tf 3 19834 19835 -19834\n\t\tmu 0 3 21137 21138 21103\n\t\tf 3 -19835 19836 19837\n\t\tmu 0 3 21138 21137 21139\n\t\tf 3 -19828 -19454 19838\n\t\tmu 0 3 21135 21136 21139\n\t\tf 3 -19837 -19831 -19839\n\t\tmu 0 3 21139 21137 21135\n\t\tf 3 -19463 19839 -19838\n\t\tmu 0 3 21139 21140 21138\n\t\tf 3 -19694 19840 -19830\n\t\tmu 0 3 21075 21073 21133\n\t\tf 3 -19841 -19690 -19822\n\t\tmu 0 3 21133 21073 21070\n\t\tf 3 -19785 -19836 19841\n\t\tmu 0 3 21109 21103 21138\n\t\tf 3 19842 19843 -19842\n\t\tmu 0 3 21138 21141 21109\n\t\tf 3 -19843 -19840 19844\n\t\tmu 0 3 21141 21138 21140\n\t\tf 3 19845 19846 -19845\n\t\tmu 0 3 21140 21142 21141\n\t\tf 3 19847 19848 19849\n\t\tmu 0 3 21143 21144 21145\n\t\tf 3 19850 19851 -19850\n\t\tmu 0 3 21145 21146 21143\n\t\tf 3 19852 19853 19854\n\t\tmu 0 3 21147 21148 21149\n\t\tf 3 19855 19856 -19855\n\t\tmu 0 3 21149 21150 21147\n\t\tf 3 19857 -19854 19858\n\t\tmu 0 3 21151 21149 21148\n\t\tf 3 19859 19860 -19859\n\t\tmu 0 3 21148 21152 21151\n\t\tf 3 19861 -19861 19862\n\t\tmu 0 3 21153 21151 21152\n\t\tf 3 19863 19864 -19863\n\t\tmu 0 3 21152 21154 21153\n\t\tf 3 19865 -19865 19866\n\t\tmu 0 3 21155 21153 21154\n\t\tf 3 19867 19868 -19867\n\t\tmu 0 3 21154 21156 21155\n\t\tf 3 19869 -19869 19870\n\t\tmu 0 3 21157 21155 21156\n\t\tf 3 19871 19872 -19871\n\t\tmu 0 3 21156 21158 21157\n\t\tf 3 19873 -19873 19874\n\t\tmu 0 3 21159 21157 21158\n\t\tf 3 19875 19876 -19875\n\t\tmu 0 3 21158 21160 21159\n\t\tf 3 19877 -19877 19878\n\t\tmu 0 3 21161 21159 21160\n\t\tf 3 19879 19880 -19879\n\t\tmu 0 3 21160 21162 21161\n\t\tf 3 -19881 19881 19882\n\t\tmu 0 3 21161 21162 21163\n\t\tf 3 19883 19884 -19883\n\t\tmu 0 3 21163 21164 21161\n\t\tf 3 19885 -19884 19886\n\t\tmu 0 3 21165 21164 21163\n\t\tf 3 19887 19888 -19887\n\t\tmu 0 3 21163 21166 21165\n\t\tf 3 19889 19890 19891\n\t\tmu 0 3 21167 21168 21169\n\t\tf 3 19892 19893 -19892\n\t\tmu 0 3 21169 21170 21167\n\t\tf 3 19894 -19894 19895\n\t\tmu 0 3 21171 21167 21170\n\t\tf 3 19896 19897 -19896\n\t\tmu 0 3 21170 21172 21171\n\t\tf 3 19898 -19898 19899\n\t\tmu 0 3 21173 21171 21172\n\t\tf 3 19900 19901 -19900\n\t\tmu 0 3 21172 21174 21173\n\t\tf 3 19902 -19902 19903\n\t\tmu 0 3 21175 21173 21174\n\t\tf 3 19904 19905 -19904\n\t\tmu 0 3 21174 21176 21175\n\t\tf 3 19906 -19906 19907\n\t\tmu 0 3 21177 21175 21176\n\t\tf 3 19908 19909 -19908\n\t\tmu 0 3 21176 21178 21177\n\t\tf 3 19910 -19910 19911\n\t\tmu 0 3 21179 21177 21178\n\t\tf 3 19912 19913 -19912\n\t\tmu 0 3 21178 21180 21179\n\t\tf 3 19914 -19914 19915\n\t\tmu 0 3 21181 21179 21180\n\t\tf 3 19916 19917 -19916\n\t\tmu 0 3 21180 21182 21181\n\t\tf 3 19918 -19918 19919\n\t\tmu 0 3 21183 21181 21182\n\t\tf 3 19920 19921 -19920\n\t\tmu 0 3 21182 21184 21183\n\t\tf 3 19922 -19922 19923\n\t\tmu 0 3 21185 21183 21184\n\t\tf 3 19924 19925 -19924\n\t\tmu 0 3 21184 21186 21187\n\t\tf 3 19926 19927 19928\n\t\tmu 0 3 21188 21189 21190\n\t\tf 3 19929 19930 -19929\n\t\tmu 0 3 21190 21191 21188\n\t\tf 3 -19930 19931 19932\n\t\tmu 0 3 21191 21190 21192\n\t\tf 3 -19529 19933 -19933\n\t\tmu 0 3 21192 21193 21191\n\t\tf 3 19934 19935 19936\n\t\tmu 0 3 21194 21195 21196\n\t\tf 3 19937 19938 -19937\n\t\tmu 0 3 21197 21198 21194\n\t\tf 3 19939 -19939 19940\n\t\tmu 0 3 21199 21194 21198\n\t\tf 3 19941 19942 -19941\n\t\tmu 0 3 21198 21200 21199\n\t\tf 3 19943 -19943 19944\n\t\tmu 0 3 21201 21199 21200\n\t\tf 3 19945 19946 -19945\n\t\tmu 0 3 21200 21202 21201\n\t\tf 3 19947 -19947 19948\n\t\tmu 0 3 21203 21201 21202\n\t\tf 3 19949 19950 -19949\n\t\tmu 0 3 21202 21204 21205\n\t\tf 3 19951 19952 19953\n\t\tmu 0 3 21206 21207 21208\n\t\tf 3 19954 19955 -19954\n\t\tmu 0 3 21208 21209 21206\n\t\tf 3 19956 -19956 19957\n\t\tmu 0 3 21210 21206 21209\n\t\tf 3 19958 19959 -19958\n\t\tmu 0 3 21209 21211 21210\n\t\tf 3 19960 -19960 19961\n\t\tmu 0 3 21212 21210 21211\n\t\tf 3 19962 19963 -19962\n\t\tmu 0 3 21211 21213 21212\n\t\tf 3 19964 -19964 19965\n\t\tmu 0 3 21100 21212 21213\n\t\tf 3 19966 -19757 -19966\n\t\tmu 0 3 21213 21099 21100\n\t\tf 3 -19959 19967 19968\n\t\tmu 0 3 21211 21209 21214\n\t\tf 3 19969 19970 -19969\n\t\tmu 0 3 21214 21215 21211\n\t\tf 3 -19955 19971 19972\n\t\tmu 0 3 21209 21208 21216\n\t\tf 3 19973 -19968 -19973\n\t\tmu 0 3 21216 21214 21209\n\t\tf 3 19974 -19974 19975\n\t\tmu 0 3 21217 21214 21216\n\t\tf 3 -19970 -19975 19976\n\t\tmu 0 3 21215 21214 21217\n\t\tf 3 19977 19978 -19976\n\t\tmu 0 3 21216 21218 21217\n\t\tf 3 19979 19980 -19977\n\t\tmu 0 3 21217 21219 21215\n\t\tf 3 -19981 19981 19982\n\t\tmu 0 3 21215 21219 21220\n\t\tf 3 19983 19984 -19983\n\t\tmu 0 3 21220 21221 21215\n\t\tf 3 -19971 -19985 19985\n\t\tmu 0 3 21211 21215 21221\n\t\tf 3 19986 -19963 -19986\n\t\tmu 0 3 21221 21213 21211\n\t\tf 3 -19984 19987 19988\n\t\tmu 0 3 21221 21220 21092\n\t\tf 3 -19736 -19988 19989\n\t\tmu 0 3 21089 21092 21220\n\t\tf 3 19990 19991 -19990\n\t\tmu 0 3 21220 21222 21089\n\t\tf 3 -19991 -19982 19992\n\t\tmu 0 3 21222 21220 21219\n\t\tf 3 -19737 19993 -19989\n\t\tmu 0 3 21092 21093 21221\n\t\tf 3 -19755 -19967 19994\n\t\tmu 0 3 21093 21099 21213\n\t\tf 3 -19987 -19994 -19995\n\t\tmu 0 3 21213 21221 21093\n\t\tf 3 19995 19996 -19993\n\t\tmu 0 3 21219 21223 21222\n\t\tf 3 -19996 -19980 19997\n\t\tmu 0 3 21223 21219 21217\n\t\tf 3 -19992 19998 19999\n\t\tmu 0 3 21089 21222 21224\n\t\tf 3 -19997 20000 -19999\n\t\tmu 0 3 21222 21223 21224\n\t\tf 3 20001 -19729 -20000\n\t\tmu 0 3 21224 21085 21089\n\t\tf 3 -20002 20002 20003\n\t\tmu 0 3 21085 21224 21225\n\t\tf 3 20004 -19716 -20004\n\t\tmu 0 3 21225 21082 21085\n\t\tf 3 -19709 -20005 20005\n\t\tmu 0 3 21081 21082 21225\n\t\tf 3 20006 20007 -20006\n\t\tmu 0 3 21225 21226 21081\n\t\tf 3 -19730 -20008 20008\n\t\tmu 0 3 21090 21081 21226\n\t\tf 3 20009 20010 -20009\n\t\tmu 0 3 21226 21227 21090\n\t\tf 3 -20010 20011 20012\n\t\tmu 0 3 21227 21226 21228\n\t\tf 3 20013 20014 -20013\n\t\tmu 0 3 21228 21229 21227\n\t\tf 3 20015 -20014 20016\n\t\tmu 0 3 21230 21229 21228\n\t\tf 3 20017 -20016 20018\n\t\tmu 0 3 21231 21229 21230\n\t\tf 3 20019 -20019 20020\n\t\tmu 0 3 21232 21231 21230\n\t\tf 3 20021 20022 -20020\n\t\tmu 0 3 21232 21233 21231\n\t\tf 3 -20021 20023 20024\n\t\tmu 0 3 21232 21230 21234\n\t\tf 3 -20022 20025 20026\n\t\tmu 0 3 21233 21232 21235\n\t\tf 3 20027 20028 -20026\n\t\tmu 0 3 21232 21236 21235\n\t\tf 3 20029 20030 -20029\n\t\tmu 0 3 21236 21237 21235\n\t\tf 3 -20017 20031 20032\n\t\tmu 0 3 21230 21228 21238\n\t\tf 3 20033 20034 -20032\n\t\tmu 0 3 21228 21239 21238\n\t\tf 3 -20030 20035 20036\n\t\tmu 0 3 21237 21236 21240\n\t\tf 3 -20011 20037 20038\n\t\tmu 0 3 21090 21227 21240\n\t\tf 3 20039 -20037 20040\n\t\tmu 0 3 21241 21237 21240\n\t\tf 3 20041 -20041 -20038\n\t\tmu 0 3 21227 21241 21240\n\t\tf 3 -20015 20042 20043\n\t\tmu 0 3 21227 21229 21242\n\t\tf 3 20044 20045 -20044\n\t\tmu 0 3 21242 21243 21227\n\t\tf 3 -20045 20046 20047\n\t\tmu 0 3 21243 21242 21244\n\t\tf 3 20048 20049 -20048\n\t\tmu 0 3 21244 21245 21243\n\t\tf 3 20050 20051 20052\n\t\tmu 0 3 21246 21247 21248\n\t\tf 3 20053 20054 -20053\n\t\tmu 0 3 21248 21249 21246\n\t\tf 3 20055 -20055 20056\n\t\tmu 0 3 21250 21246 21249\n\t\tf 3 20057 20058 -20057\n\t\tmu 0 3 21249 21251 21250\n\t\tf 3 -20056 20059 20060\n\t\tmu 0 3 21246 21250 21252\n\t\tf 3 20061 20062 -20061\n\t\tmu 0 3 21252 21253 21246\n\t\tf 3 -20051 -20063 20063\n\t\tmu 0 3 21247 21246 21253\n\t\tf 3 20064 20065 -20064\n\t\tmu 0 3 21253 21254 21247\n\t\tf 3 20066 20067 20068\n\t\tmu 0 3 21255 21256 21257\n\t\tf 3 20069 20070 -20069\n\t\tmu 0 3 21257 21258 21259\n\t\tf 3 20071 -20068 20072\n\t\tmu 0 3 21260 21257 21261\n\t\tf 3 20073 20074 -20073\n\t\tmu 0 3 21262 21263 21260\n\t\tf 3 -20072 20075 20076\n\t\tmu 0 3 21257 21260 21264\n\t\tf 3 -19510 20077 -20077\n\t\tmu 0 3 21264 21265 21257\n\t\tf 3 -20070 -20078 20078\n\t\tmu 0 3 21258 21257 21265\n\t\tf 3 20079 20080 -20079\n\t\tmu 0 3 21265 21266 21258\n\t\tf 3 -20059 20081 20082\n\t\tmu 0 3 21250 21251 21267\n\t\tf 3 20083 20084 -20083\n\t\tmu 0 3 21267 21268 21250\n\t\tf 3 -20060 -20085 20085\n\t\tmu 0 3 21252 21250 21268\n\t\tf 3 20086 -20084 20087\n\t\tmu 0 3 21269 21268 21267\n\t\tf 3 20088 20089 -20088\n\t\tmu 0 3 21267 21270 21269\n\t\tf 3 20090 -20090 20091\n\t\tmu 0 3 21271 21269 21270\n\t\tf 3 20092 20093 -20092\n\t\tmu 0 3 21270 21272 21271\n\t\tf 3 20094 -20094 20095\n\t\tmu 0 3 21273 21271 21272\n\t\tf 3 20096 20097 -20096\n\t\tmu 0 3 21272 21274 21273\n\t\tf 3 20098 -20095 20099\n\t\tmu 0 3 21275 21271 21273\n\t\tf 3 20100 20101 -20100\n\t\tmu 0 3 21273 21276 21275\n\t\tf 3 20102 -20098 20103\n\t\tmu 0 3 21277 21273 21274\n\t\tf 3 -20101 -20103 20104\n\t\tmu 0 3 21276 21273 21277\n\t\tf 3 20105 20106 -20104\n\t\tmu 0 3 21274 21278 21277\n\t\tf 3 20107 20108 -20105\n\t\tmu 0 3 21277 21279 21276\n\t\tf 3 20109 20110 20111\n\t\tmu 0 3 21280 21281 21282\n\t\tf 3 20112 20113 -20112\n\t\tmu 0 3 21282 21283 21284\n\t\tf 3 20114 -20114 20115\n\t\tmu 0 3 21285 21286 21283\n\t\tf 3 -20113 20116 20117\n\t\tmu 0 3 21283 21282 21287\n\t\tf 3 20118 20119 -20118\n\t\tmu 0 3 21287 21288 21283\n\t\tf 3 20120 20121 -20116\n\t\tmu 0 3 21283 21289 21290\n\t\tf 3 20122 -20122 20123\n\t\tmu 0 3 21291 21292 21289\n\t\tf 3 20124 -20121 20125\n\t\tmu 0 3 21293 21289 21283\n\t\tf 3 20126 -20126 20127\n\t\tmu 0 3 21294 21293 21283\n\t\tf 3 -20099 20128 20129\n\t\tmu 0 3 21271 21275 21295\n\t\tf 3 20130 -20117 20131\n\t\tmu 0 3 21296 21287 21282\n\t\tf 3 20132 20133 -20132\n\t\tmu 0 3 21282 21297 21296\n\t\tf 3 -20133 -20111 20134\n\t\tmu 0 3 21297 21282 21298\n\t\tf 3 20135 20136 -20135\n\t\tmu 0 3 21299 21300 21297\n\t\tf 3 20137 20138 -20124\n\t\tmu 0 3 21289 21301 21302\n\t\tf 3 -20125 20139 20140\n\t\tmu 0 3 21289 21293 21303\n\t\tf 3 20141 -20138 -20141\n\t\tmu 0 3 21303 21301 21289\n\t\tf 3 20142 -20140 20143\n\t\tmu 0 3 21304 21303 21293\n\t\tf 3 20144 20145 -20144\n\t\tmu 0 3 21293 21305 21304\n\t\tf 3 -20145 -20127 20146\n\t\tmu 0 3 21305 21293 21294\n\t\tf 3 20147 20148 -20147\n\t\tmu 0 3 21294 21306 21305\n\t\tf 3 -20149 20149 20150\n\t\tmu 0 3 21305 21306 21307\n\t\tf 3 20151 20152 -20151\n\t\tmu 0 3 21307 21308 21305\n\t\tf 3 20153 -20134 20154\n\t\tmu 0 3 21266 21296 21297\n\t\tf 3 20155 -20081 -20155\n\t\tmu 0 3 21297 21258 21266\n\t\tf 3 -20137 20156 20157\n\t\tmu 0 3 21297 21309 21310\n\t\tf 3 -20071 -20156 -20158\n\t\tmu 0 3 21311 21258 21297\n\t\tf 3 20158 -20091 -20130\n\t\tmu 0 3 21295 21269 21271\n\t\tf 3 20159 -20087 20160\n\t\tmu 0 3 21312 21268 21269\n\t\tf 3 -20159 20161 -20161\n\t\tmu 0 3 21269 21295 21312\n\t\tf 3 -20160 20162 -20086\n\t\tmu 0 3 21268 21312 21252\n\t\tf 3 20163 20164 20165\n\t\tmu 0 3 21313 21314 21315\n\t\tf 3 20166 -20165 20167\n\t\tmu 0 3 21316 21315 21317\n\t\tf 3 20168 20169 -20168\n\t\tmu 0 3 21318 21319 21316\n\t\tf 3 20170 -20170 20171\n\t\tmu 0 3 21320 21316 21321\n\t\tf 3 20172 20173 -20172\n\t\tmu 0 3 21322 21323 21320\n\t\tf 3 20174 -20171 20175\n\t\tmu 0 3 21324 21316 21320\n\t\tf 3 20176 20177 -20176\n\t\tmu 0 3 21320 21325 21324\n\t\tf 3 -20175 20178 20179\n\t\tmu 0 3 21316 21324 21326\n\t\tf 3 20180 -20167 -20180\n\t\tmu 0 3 21326 21315 21316\n\t\tf 3 20181 20182 -20166\n\t\tmu 0 3 21315 21327 21328\n\t\tf 3 20183 -20183 20184\n\t\tmu 0 3 21329 21330 21327\n\t\tf 3 -20181 20185 20186\n\t\tmu 0 3 21315 21326 21331\n\t\tf 3 20187 -20182 -20187\n\t\tmu 0 3 21331 21327 21315\n\t\tf 3 20188 20189 -20185\n\t\tmu 0 3 21327 21332 21333\n\t\tf 3 -20190 20190 20191\n\t\tmu 0 3 21334 21332 21335\n\t\tf 3 20192 20193 -20192\n\t\tmu 0 3 21335 21336 21337\n\t\tf 3 20194 -20189 20195\n\t\tmu 0 3 21338 21332 21327\n\t\tf 3 -20188 20196 -20196\n\t\tmu 0 3 21327 21331 21338\n\t\tf 3 -20191 -20195 20197\n\t\tmu 0 3 21335 21332 21338\n\t\tf 3 20198 20199 -20198\n\t\tmu 0 3 21338 21339 21335\n\t\tf 3 20200 -20174 20201\n\t\tmu 0 3 21340 21320 21341\n\t\tf 3 -20177 -20201 20202\n\t\tmu 0 3 21325 21320 21340\n\t\tf 3 20203 20204 -20202\n\t\tmu 0 3 21342 21343 21340\n\t\tf 3 20205 20206 -20203\n\t\tmu 0 3 21340 21344 21325\n\t\tf 3 20207 -20193 20208\n\t\tmu 0 3 21345 21346 21335\n\t\tf 3 20209 20210 -20209\n\t\tmu 0 3 21335 21347 21348\n\t\tf 3 -20210 -20200 20211\n\t\tmu 0 3 21347 21335 21339\n\t\tf 3 20212 20213 -20212\n\t\tmu 0 3 21339 21349 21347\n\t\tf 3 -20214 20214 20215\n\t\tmu 0 3 21347 21349 21350\n\t\tf 3 20216 20217 -20216\n\t\tmu 0 3 21350 21351 21347\n\t\tf 3 -20211 -20218 20218\n\t\tmu 0 3 21352 21347 21351\n\t\tf 3 20219 20220 -20219\n\t\tmu 0 3 21351 21353 21352\n\t\tf 3 -20217 20221 20222\n\t\tmu 0 3 21351 21350 21354\n\t\tf 3 -19539 20223 -20223\n\t\tmu 0 3 21354 21355 21351\n\t\tf 3 -20220 -20224 20224\n\t\tmu 0 3 21353 21351 21355\n\t\tf 3 -19535 20225 -20225\n\t\tmu 0 3 21355 21356 21353\n\t\tf 3 20226 20227 20228\n\t\tmu 0 3 21357 21358 21359\n\t\tf 3 20229 20230 -20229\n\t\tmu 0 3 21359 21360 21357\n\t\tf 3 20231 -20231 20232\n\t\tmu 0 3 20968 21357 21360\n\t\tf 3 20233 -19499 -20233\n\t\tmu 0 3 21360 20971 20968\n\t\tf 3 -20232 -19494 20234\n\t\tmu 0 3 21357 20968 20969\n\t\tf 3 20235 20236 -20235\n\t\tmu 0 3 20969 21361 21357\n\t\tf 3 -20227 -20237 20237\n\t\tmu 0 3 21358 21357 21361\n\t\tf 3 20238 20239 -20238\n\t\tmu 0 3 21361 21362 21358\n\t\tf 3 -20128 -20120 20240\n\t\tmu 0 3 21294 21283 21288\n\t\tf 3 20241 20242 20243\n\t\tmu 0 3 21363 21364 21365\n\t\tf 3 20244 20245 -20244\n\t\tmu 0 3 21365 21366 21363\n\t\tf 3 20246 -20245 20247\n\t\tmu 0 3 21367 21366 21365\n\t\tf 3 20248 20249 -20248\n\t\tmu 0 3 21365 21368 21367\n\t\tf 3 20250 20251 20252\n\t\tmu 0 3 21369 21370 21371;\n\tsetAttr \".fc[10500:10999]\"\n\t\tf 3 20253 20254 -20253\n\t\tmu 0 3 21371 21372 21373\n\t\tf 3 20255 -20254 20256\n\t\tmu 0 3 21374 21372 21371\n\t\tf 3 20257 20258 -20257\n\t\tmu 0 3 21371 21375 21374\n\t\tf 3 -20259 20259 20260\n\t\tmu 0 3 21374 21375 21376\n\t\tf 3 20261 20262 -20261\n\t\tmu 0 3 21376 21377 21374\n\t\tf 3 20263 20264 20265\n\t\tmu 0 3 21378 21379 21380\n\t\tf 3 20266 20267 -20266\n\t\tmu 0 3 21380 21381 21382\n\t\tf 3 20268 -20267 20269\n\t\tmu 0 3 21383 21381 21380\n\t\tf 3 20270 20271 -20270\n\t\tmu 0 3 21380 21384 21383\n\t\tf 3 20272 20273 20274\n\t\tmu 0 3 21385 21386 21387\n\t\tf 3 20275 20276 -20275\n\t\tmu 0 3 21387 21388 21385\n\t\tf 3 20277 -20273 20278\n\t\tmu 0 3 21389 21386 21385\n\t\tf 3 20279 20280 -20279\n\t\tmu 0 3 21385 21390 21389\n\t\tf 3 20281 20282 20283\n\t\tmu 0 3 21391 21392 21393\n\t\tf 3 20284 20285 -20284\n\t\tmu 0 3 21393 21394 21391\n\t\tf 3 20286 -20285 20287\n\t\tmu 0 3 21395 21394 21393\n\t\tf 3 20288 20289 -20288\n\t\tmu 0 3 21393 21396 21395\n\t\tf 3 20290 20291 20292\n\t\tmu 0 3 21397 21398 21399\n\t\tf 3 20293 20294 -20293\n\t\tmu 0 3 21399 21400 21401\n\t\tf 3 20295 -20294 20296\n\t\tmu 0 3 21402 21400 21399\n\t\tf 3 20297 20298 -20297\n\t\tmu 0 3 21399 21403 21402\n\t\tf 3 20299 20300 20301\n\t\tmu 0 3 21404 21405 21406\n\t\tf 3 20302 20303 -20302\n\t\tmu 0 3 21406 21407 21408\n\t\tf 3 20304 -20303 20305\n\t\tmu 0 3 21409 21407 21406\n\t\tf 3 20306 20307 -20306\n\t\tmu 0 3 21406 21410 21409\n\t\tf 3 -20308 20308 20309\n\t\tmu 0 3 21409 21410 21411\n\t\tf 3 20310 20311 -20310\n\t\tmu 0 3 21411 21412 21409\n\t\tf 3 20312 -20305 20313\n\t\tmu 0 3 21413 21407 21409\n\t\tf 3 20314 20315 -20314\n\t\tmu 0 3 21409 21414 21413\n\t\tf 3 -20315 -20312 20316\n\t\tmu 0 3 21414 21409 21412\n\t\tf 3 20317 -20304 20318\n\t\tmu 0 3 21415 21416 21407\n\t\tf 3 -20313 20319 -20319\n\t\tmu 0 3 21407 21413 21415\n\t\tf 3 20320 20321 20322\n\t\tmu 0 3 21392 21417 21418\n\t\tf 3 20323 -20283 -20323\n\t\tmu 0 3 21418 21393 21392\n\t\tf 3 -20289 -20324 20324\n\t\tmu 0 3 21396 21393 21418\n\t\tf 3 20325 20326 -20325\n\t\tmu 0 3 21418 21419 21396\n\t\tf 3 20327 20328 -20317\n\t\tmu 0 3 21412 21420 21414\n\t\tf 3 20329 20330 20331\n\t\tmu 0 3 21421 21422 21423\n\t\tf 3 20332 20333 -20332\n\t\tmu 0 3 21423 21399 21424\n\t\tf 3 -20298 -20333 20334\n\t\tmu 0 3 21403 21399 21423\n\t\tf 3 20335 20336 -20335\n\t\tmu 0 3 21423 21425 21403\n\t\tf 3 20337 20338 20339\n\t\tmu 0 3 21426 21427 21428\n\t\tf 3 20340 20341 -20340\n\t\tmu 0 3 21429 21430 21426\n\t\tf 3 -20341 20342 20343\n\t\tmu 0 3 21430 21431 21432\n\t\tf 3 20344 20345 20346\n\t\tmu 0 3 21433 21434 21435\n\t\tf 3 -20338 20347 -20347\n\t\tmu 0 3 21436 21426 21433\n\t\tf 3 -20345 20348 20349\n\t\tmu 0 3 21437 21433 21438\n\t\tf 3 20350 20351 -20350\n\t\tmu 0 3 21438 21439 21440\n\t\tf 3 20352 -20351 20353\n\t\tmu 0 3 21441 21442 21438\n\t\tf 3 20354 20355 -20354\n\t\tmu 0 3 21438 21443 21444\n\t\tf 3 20356 20357 -20344\n\t\tmu 0 3 21445 21446 21430\n\t\tf 3 -20356 20358 20359\n\t\tmu 0 3 21447 21443 21448\n\t\tf 3 20360 20361 -20360\n\t\tmu 0 3 21448 21423 21449\n\t\tf 3 -20336 -20361 20362\n\t\tmu 0 3 21425 21423 21448\n\t\tf 3 20363 20364 -20363\n\t\tmu 0 3 21448 21450 21425\n\t\tf 3 20365 20366 20367\n\t\tmu 0 3 21451 21452 21453\n\t\tf 3 20368 20369 -20368\n\t\tmu 0 3 21453 21454 21451\n\t\tf 3 20370 -20369 20371\n\t\tmu 0 3 21455 21454 21453\n\t\tf 3 20372 20373 -20372\n\t\tmu 0 3 21453 21456 21455\n\t\tf 3 20374 -20367 20375\n\t\tmu 0 3 21457 21453 21452\n\t\tf 3 -20373 -20375 20376\n\t\tmu 0 3 21456 21453 21457\n\t\tf 3 20377 20378 -20376\n\t\tmu 0 3 21452 21458 21457\n\t\tf 3 20379 20380 -20377\n\t\tmu 0 3 21457 21459 21456\n\t\tf 3 20381 20382 20383\n\t\tmu 0 3 21460 21461 21462\n\t\tf 3 20384 -20382 20385\n\t\tmu 0 3 21463 21464 21460\n\t\tf 3 20386 20387 -20384\n\t\tmu 0 3 21465 21466 21460\n\t\tf 3 20388 20389 -20386\n\t\tmu 0 3 21460 21467 21468\n\t\tf 3 20390 20391 20392\n\t\tmu 0 3 21469 21470 21471\n\t\tf 3 20393 20394 -20393\n\t\tmu 0 3 21471 21472 21469\n\t\tf 3 20395 -20395 20396\n\t\tmu 0 3 21473 21469 21472\n\t\tf 3 20397 20398 -20397\n\t\tmu 0 3 21472 21474 21473\n\t\tf 3 20399 -20399 20400\n\t\tmu 0 3 21475 21473 21474\n\t\tf 3 20401 20402 -20401\n\t\tmu 0 3 21474 21476 21475\n\t\tf 3 20403 -20403 20404\n\t\tmu 0 3 21477 21475 21476\n\t\tf 3 20405 20406 -20405\n\t\tmu 0 3 21476 21478 21477\n\t\tf 3 20407 -20407 20408\n\t\tmu 0 3 21479 21477 21478\n\t\tf 3 20409 20410 -20409\n\t\tmu 0 3 21478 21480 21479\n\t\tf 3 20411 -20392 20412\n\t\tmu 0 3 21481 21471 21470\n\t\tf 3 20413 20414 -20413\n\t\tmu 0 3 21470 21482 21481\n\t\tf 3 20415 -20415 20416\n\t\tmu 0 3 21483 21481 21482\n\t\tf 3 20417 20418 -20417\n\t\tmu 0 3 21482 21484 21483\n\t\tf 3 20419 -20419 20420\n\t\tmu 0 3 21485 21483 21484\n\t\tf 3 20421 20422 -20421\n\t\tmu 0 3 21484 21486 21485\n\t\tf 3 20423 -20423 20424\n\t\tmu 0 3 21487 21485 21486\n\t\tf 3 20425 20426 -20425\n\t\tmu 0 3 21486 21488 21487\n\t\tf 3 20427 20428 20429\n\t\tmu 0 3 21489 21490 21491\n\t\tf 3 20430 20431 -20430\n\t\tmu 0 3 21491 21492 21489\n\t\tf 3 20432 -20432 20433\n\t\tmu 0 3 21493 21489 21492\n\t\tf 3 20434 20435 -20434\n\t\tmu 0 3 21492 21494 21493\n\t\tf 3 20436 -20436 20437\n\t\tmu 0 3 21495 21493 21494\n\t\tf 3 20438 20439 -20438\n\t\tmu 0 3 21494 21496 21495\n\t\tf 3 20440 -20440 20441\n\t\tmu 0 3 21497 21495 21496\n\t\tf 3 20442 20443 -20442\n\t\tmu 0 3 21496 21498 21497\n\t\tf 3 20444 -20429 20445\n\t\tmu 0 3 21499 21491 21490\n\t\tf 3 20446 20447 -20446\n\t\tmu 0 3 21490 21500 21499\n\t\tf 3 20448 -20448 20449\n\t\tmu 0 3 21501 21499 21500\n\t\tf 3 20450 20451 -20450\n\t\tmu 0 3 21500 21502 21501\n\t\tf 3 20452 -20452 20453\n\t\tmu 0 3 21503 21501 21502\n\t\tf 3 20454 20455 -20454\n\t\tmu 0 3 21502 21504 21503\n\t\tf 3 -20444 20456 20457\n\t\tmu 0 3 21497 21498 21505\n\t\tf 3 20458 20459 -20458\n\t\tmu 0 3 21505 21506 21497\n\t\tf 3 20460 -20459 20461\n\t\tmu 0 3 21507 21506 21505\n\t\tf 3 20462 20463 -20462\n\t\tmu 0 3 21505 21508 21507\n\t\tf 3 20464 20465 20466\n\t\tmu 0 3 21509 21510 21511\n\t\tf 3 20467 20468 -20467\n\t\tmu 0 3 21512 21513 21509\n\t\tf 3 20469 -20469 20470\n\t\tmu 0 3 21514 21509 21513\n\t\tf 3 20471 20472 -20471\n\t\tmu 0 3 21513 21515 21514\n\t\tf 3 20473 -20473 20474\n\t\tmu 0 3 21516 21514 21515\n\t\tf 3 20475 20476 -20475\n\t\tmu 0 3 21515 21517 21516\n\t\tf 3 20477 -20477 20478\n\t\tmu 0 3 21518 21516 21517\n\t\tf 3 20479 20480 -20479\n\t\tmu 0 3 21517 21519 21518\n\t\tf 3 20481 20482 20483\n\t\tmu 0 3 21520 21521 21522\n\t\tf 3 20484 20485 20486\n\t\tmu 0 3 21523 21524 21525\n\t\tf 3 20487 20488 -20487\n\t\tmu 0 3 21525 21526 21523\n\t\tf 3 20489 -20489 20490\n\t\tmu 0 3 21527 21523 21526\n\t\tf 3 20491 20492 -20491\n\t\tmu 0 3 21526 21528 21527\n\t\tf 3 20493 20494 20495\n\t\tmu 0 3 21529 21530 21531\n\t\tf 3 20496 20497 -20496\n\t\tmu 0 3 21532 21533 21529\n\t\tf 3 20498 -20498 20499\n\t\tmu 0 3 21534 21529 21533\n\t\tf 3 20500 20501 -20500\n\t\tmu 0 3 21533 21535 21534\n\t\tf 3 20502 -20502 20503\n\t\tmu 0 3 21536 21534 21535\n\t\tf 3 20504 20505 -20504\n\t\tmu 0 3 21535 21537 21536\n\t\tf 3 20506 -20506 20507\n\t\tmu 0 3 21538 21536 21537\n\t\tf 3 20508 20509 -20508\n\t\tmu 0 3 21537 21539 21538\n\t\tf 3 20510 -20493 20511\n\t\tmu 0 3 21540 21527 21528\n\t\tf 3 20512 20513 -20512\n\t\tmu 0 3 21528 21541 21540\n\t\tf 3 20514 20515 20516\n\t\tmu 0 3 21542 21543 21544\n\t\tf 3 20517 20518 -20517\n\t\tmu 0 3 21544 21545 21542\n\t\tf 3 20519 -20519 20520\n\t\tmu 0 3 21546 21542 21545\n\t\tf 3 20521 20522 -20521\n\t\tmu 0 3 21545 21547 21546\n\t\tf 3 20523 20524 20525\n\t\tmu 0 3 21548 21549 21550\n\t\tf 3 20526 20527 -20526\n\t\tmu 0 3 21550 21551 21548\n\t\tf 3 20528 -20525 20529\n\t\tmu 0 3 21539 21550 21549\n\t\tf 3 20530 -20510 -20530\n\t\tmu 0 3 21549 21538 21539\n\t\tf 3 -19724 -19669 20531\n\t\tmu 0 3 21087 21063 21061\n\t\tf 3 -19679 -19743 -20532\n\t\tmu 0 3 21061 21067 21087\n\t\tf 3 -20039 20532 20533\n\t\tmu 0 3 21090 21240 21552\n\t\tf 3 20534 -19731 -20534\n\t\tmu 0 3 21552 21079 21090\n\t\tf 3 -20535 20535 20536\n\t\tmu 0 3 21079 21552 21065\n\t\tf 3 -19675 -19703 -20537\n\t\tmu 0 3 21065 21064 21079\n\t\tf 3 20537 20538 20539\n\t\tmu 0 3 21553 21554 21555\n\t\tf 3 20540 20541 -20540\n\t\tmu 0 3 21555 21556 21553\n\t\tf 3 20542 20543 -20538\n\t\tmu 0 3 21553 21557 21554\n\t\tf 3 20544 20545 20546\n\t\tmu 0 3 21558 21559 21560\n\t\tf 3 20547 20548 -20547\n\t\tmu 0 3 21560 21561 21558\n\t\tf 3 20549 -20549 20550\n\t\tmu 0 3 21562 21558 21561\n\t\tf 3 20551 20552 -20551\n\t\tmu 0 3 21561 21563 21562\n\t\tf 3 -20553 20553 20554\n\t\tmu 0 3 21562 21563 21564\n\t\tf 3 20555 20556 20557\n\t\tmu 0 3 21565 21566 21567\n\t\tf 3 20558 20559 20560\n\t\tmu 0 3 21568 21569 21570\n\t\tf 3 20561 20562 -20561\n\t\tmu 0 3 21570 21571 21568\n\t\tf 3 20563 -20560 20564\n\t\tmu 0 3 21572 21570 21569\n\t\tf 3 20565 20566 -20565\n\t\tmu 0 3 21569 21573 21572\n\t\tf 3 -20564 -20349 20567\n\t\tmu 0 3 21570 21572 21574\n\t\tf 3 -20348 20568 -20568\n\t\tmu 0 3 21574 21575 21570\n\t\tf 3 -20562 -20569 20569\n\t\tmu 0 3 21571 21570 21575\n\t\tf 3 -20342 20570 -20570\n\t\tmu 0 3 21575 21576 21571\n\t\tf 3 -20571 -20358 20571\n\t\tmu 0 3 21571 21576 21577\n\t\tf 3 -20389 20572 -20572\n\t\tmu 0 3 21577 21578 21571\n\t\tf 3 -20563 -20573 20573\n\t\tmu 0 3 21568 21571 21578\n\t\tf 3 -20388 20574 -20574\n\t\tmu 0 3 21578 21579 21568\n\t\tf 3 20575 20576 20577\n\t\tmu 0 3 21580 21581 21582\n\t\tf 3 20578 20579 -20578\n\t\tmu 0 3 21582 21583 21580\n\t\tf 3 20580 -20580 20581\n\t\tmu 0 3 21584 21580 21583\n\t\tf 3 -19978 20582 -20582\n\t\tmu 0 3 21583 21585 21584\n\t\tf 3 20583 20584 20585\n\t\tmu 0 3 21586 21587 21588\n\t\tf 3 20586 -20584 20587\n\t\tmu 0 3 21589 21590 21586\n\t\tf 3 20588 20589 -20586\n\t\tmu 0 3 21591 21592 21586\n\t\tf 3 -20589 20590 20591\n\t\tmu 0 3 21592 21593 21594\n\t\tf 3 20592 -20583 20593\n\t\tmu 0 3 21595 21584 21585\n\t\tf 3 20594 20595 -20592\n\t\tmu 0 3 21594 21596 21592\n\t\tf 3 -19972 20596 -20594\n\t\tmu 0 3 21585 21597 21598\n\t\tf 3 -20597 -19953 20597\n\t\tmu 0 3 21599 21597 21600\n\t\tf 3 20598 20599 -20598\n\t\tmu 0 3 21600 21601 21602\n\t\tf 3 20600 20601 -20588\n\t\tmu 0 3 21586 21603 21604\n\t\tf 3 20602 -20599 20603\n\t\tmu 0 3 21605 21601 21600\n\t\tf 3 20604 20605 20606\n\t\tmu 0 3 21606 21607 21608\n\t\tf 3 20607 -20595 20608\n\t\tmu 0 3 21606 21596 21594\n\t\tf 3 20609 -20605 -20609\n\t\tmu 0 3 21594 21609 21606\n\t\tf 3 20610 20611 -20607\n\t\tmu 0 3 21610 21611 21606\n\t\tf 3 20612 20613 -20604\n\t\tmu 0 3 21600 21612 21605\n\t\tf 3 20614 20615 20616\n\t\tmu 0 3 21218 21613 21614\n\t\tf 3 20617 -19979 -20617\n\t\tmu 0 3 21614 21217 21218\n\t\tf 3 -20618 20618 -19998\n\t\tmu 0 3 21217 21614 21223\n\t\tf 3 -19462 20619 20620\n\t\tmu 0 3 20949 20948 21615\n\t\tf 3 20621 -19846 -20621\n\t\tmu 0 3 21615 21616 20949\n\t\tf 3 20622 -19464 20623\n\t\tmu 0 3 21617 21618 20950\n\t\tf 3 20624 20625 -20624\n\t\tmu 0 3 20950 21619 21620\n\t\tf 3 -20625 -19469 20626\n\t\tmu 0 3 21619 20950 20955\n\t\tf 3 20627 20628 -20627\n\t\tmu 0 3 20955 21621 21619\n\t\tf 3 20629 -20628 20630\n\t\tmu 0 3 21622 21621 20955\n\t\tf 3 20631 20632 20633\n\t\tmu 0 3 21210 21623 21624\n\t\tf 3 20634 -19957 -20634\n\t\tmu 0 3 21624 21206 21210\n\t\tf 3 -19952 -20635 20635\n\t\tmu 0 3 21207 21206 21624\n\t\tf 3 20636 -20613 -20636\n\t\tmu 0 3 21624 21625 21207\n\t\tf 3 -20632 -19961 20637\n\t\tmu 0 3 21623 21210 21212\n\t\tf 3 20638 20639 -20638\n\t\tmu 0 3 21212 21626 21623\n\t\tf 3 -20639 -19965 20640\n\t\tmu 0 3 21626 21212 21100\n\t\tf 3 -19781 20641 -20641\n\t\tmu 0 3 21100 21107 21626\n\t\tf 3 20642 20643 20644\n\t\tmu 0 3 21627 21628 21629\n\t\tf 3 -20645 20645 20646\n\t\tmu 0 3 21627 21629 21630\n\t\tf 3 20647 20648 -20646\n\t\tmu 0 3 21629 21631 21630\n\t\tf 3 -20647 20649 20650\n\t\tmu 0 3 21627 21630 21632\n\t\tf 3 20651 20652 -20650\n\t\tmu 0 3 21630 21633 21632\n\t\tf 3 20653 20654 -20652\n\t\tmu 0 3 21630 21634 21633\n\t\tf 3 20655 20656 -20653\n\t\tmu 0 3 21633 21635 21632\n\t\tf 3 20657 20658 -20657\n\t\tmu 0 3 21635 21636 21632\n\t\tf 3 -20651 20659 20660\n\t\tmu 0 3 21627 21632 21637\n\t\tf 3 20661 20662 20663\n\t\tmu 0 3 21638 21639 21640\n\t\tf 3 -20664 20664 20665\n\t\tmu 0 3 21638 21640 21641\n\t\tf 3 -20666 20666 20667\n\t\tmu 0 3 21638 21641 21642\n\t\tf 3 -20668 20668 20669\n\t\tmu 0 3 21638 21642 21643\n\t\tf 3 20670 20671 -20669\n\t\tmu 0 3 21642 21644 21643\n\t\tf 3 20672 20673 -20671\n\t\tmu 0 3 21642 21645 21644\n\t\tf 3 -20670 20674 20675\n\t\tmu 0 3 21638 21643 21245\n\t\tf 3 20676 -20043 20677\n\t\tmu 0 3 21646 21647 21648\n\t\tf 3 20678 20679 20680\n\t\tmu 0 3 21649 21650 21651\n\t\tf 3 -20677 20681 20682\n\t\tmu 0 3 21647 21646 21652\n\t\tf 3 20683 -20047 -20683\n\t\tmu 0 3 21652 21653 21647\n\t\tf 3 20684 -20680 20685\n\t\tmu 0 3 21654 21655 21650\n\t\tf 3 20686 20687 -20686\n\t\tmu 0 3 21650 21656 21654\n\t\tf 3 20688 20689 20690\n\t\tmu 0 3 21646 21657 21658\n\t\tf 3 20691 -20682 -20691\n\t\tmu 0 3 21658 21652 21646\n\t\tf 3 20692 -20688 20693\n\t\tmu 0 3 21659 21654 21656\n\t\tf 3 20694 20695 -20694\n\t\tmu 0 3 21656 21660 21659\n\t\tf 3 20696 -20696 20697\n\t\tmu 0 3 21661 21659 21660\n\t\tf 3 20698 20699 -20698\n\t\tmu 0 3 21660 21662 21661\n\t\tf 3 20700 20701 20702\n\t\tmu 0 3 21663 21664 21665\n\t\tf 3 20703 20704 -20703\n\t\tmu 0 3 21665 21666 21667\n\t\tf 3 20705 -20705 20706\n\t\tmu 0 3 21668 21669 21666\n\t\tf 3 20707 -20690 -20707\n\t\tmu 0 3 21666 21658 21670\n\t\tf 3 20708 -20700 20709\n\t\tmu 0 3 21671 21661 21662\n\t\tf 3 20710 20711 -20710\n\t\tmu 0 3 21662 21672 21671\n\t\tf 3 20712 20713 20714\n\t\tmu 0 3 21673 21674 21675\n\t\tf 3 20715 -20702 -20715\n\t\tmu 0 3 21675 21665 21676\n\t\tf 3 20716 20717 20718\n\t\tmu 0 3 21677 21678 21679\n\t\tf 3 20719 20720 -20719\n\t\tmu 0 3 21680 21681 21677\n\t\tf 3 20721 -20721 20722\n\t\tmu 0 3 21682 21677 21681\n\t\tf 3 -20042 -20046 20723\n\t\tmu 0 3 21683 21684 21685\n\t\tf 3 20724 -20050 20725\n\t\tmu 0 3 21686 21687 21688\n\t\tf 3 20726 20727 -20726\n\t\tmu 0 3 21688 21689 21690\n\t\tf 3 20728 -20728 20729\n\t\tmu 0 3 21691 21692 21689\n\t\tf 3 20730 -20714 -20730\n\t\tmu 0 3 21689 21675 21693\n\t\tf 3 -20049 20731 -20676\n\t\tmu 0 3 21245 21244 21638\n\t\tf 3 -20662 -20732 20732\n\t\tmu 0 3 21694 21695 21696\n\t\tf 3 20733 20734 20735\n\t\tmu 0 3 21697 21698 21699\n\t\tf 3 20736 -20735 20737\n\t\tmu 0 3 21700 21701 21698\n\t\tf 3 20738 20739 -20738\n\t\tmu 0 3 21698 21702 21700\n\t\tf 3 20740 20741 20742\n\t\tmu 0 3 21703 21704 21705\n\t\tf 3 20743 20744 -20743\n\t\tmu 0 3 21706 21707 21703\n\t\tf 3 20745 -20745 20746\n\t\tmu 0 3 21708 21703 21707\n\t\tf 3 20747 20748 -20747\n\t\tmu 0 3 21707 21709 21708\n\t\tf 3 20749 -20749 20750\n\t\tmu 0 3 21710 21708 21709\n\t\tf 3 20751 20752 -20751\n\t\tmu 0 3 21709 21711 21710\n\t\tf 3 20753 20754 20755\n\t\tmu 0 3 21712 21713 21714\n\t\tf 3 20756 20757 -20756\n\t\tmu 0 3 21714 21715 21716\n\t\tf 3 20758 -20757 20759\n\t\tmu 0 3 21717 21715 21714\n\t\tf 3 -20727 -20675 20760\n\t\tmu 0 3 21718 21719 21720\n\t\tf 3 20761 -19472 -19560\n\t\tmu 0 3 21002 20955 20956\n\t\tf 3 -20762 20762 -20631\n\t\tmu 0 3 20955 21002 21622\n\t\tf 3 20763 -20241 20764\n\t\tmu 0 3 21721 21722 21192\n\t\tf 3 -20765 -19932 20765\n\t\tmu 0 3 21721 21192 21190\n\t\tf 3 20766 20767 -20766\n\t\tmu 0 3 21190 21723 21721\n\t\tf 3 20768 -20767 20769\n\t\tmu 0 3 21724 21723 21190\n\t\tf 3 -19928 20770 -20770\n\t\tmu 0 3 21190 21189 21724\n\t\tf 3 20771 20772 20773\n\t\tmu 0 3 21725 21726 21727\n\t\tf 3 20774 20775 -20774\n\t\tmu 0 3 21728 21729 21730\n\t\tf 3 20776 -20775 20777\n\t\tmu 0 3 21731 21729 21732\n\t\tf 3 20778 20779 -20778\n\t\tmu 0 3 21733 21200 21731\n\t\tf 3 20780 -20780 20781\n\t\tmu 0 3 21734 21731 21200\n\t\tf 3 -19942 20782 -20782\n\t\tmu 0 3 21200 21198 21734\n\t\tf 3 -20783 -19938 20783\n\t\tmu 0 3 21734 21198 21735\n\t\tf 3 20784 20785 -20784\n\t\tmu 0 3 21736 21737 21734\n\t\tf 3 -20785 20786 20787\n\t\tmu 0 3 21737 21738 21031\n\t\tf 3 20788 20789 -20788\n\t\tmu 0 3 21031 21739 21737\n\t\tf 3 20790 -20789 20791\n\t\tmu 0 3 21740 21739 21031\n\t\tf 3 -19616 20792 -20792\n\t\tmu 0 3 21031 21028 21740\n\t\tf 3 -20793 -19610 20793\n\t\tmu 0 3 21740 21028 21027\n\t\tf 3 20794 20795 -20794\n\t\tmu 0 3 21027 21741 21740\n\t\tf 3 20796 20797 20798\n\t\tmu 0 3 21742 21743 21744\n\t\tf 3 20799 20800 -20799\n\t\tmu 0 3 21745 21746 21747\n\t\tf 3 -20801 20801 20802\n\t\tmu 0 3 21748 21749 21750\n\t\tf 3 20803 20804 -20803\n\t\tmu 0 3 21751 21752 21753\n\t\tf 3 -20804 20805 20806\n\t\tmu 0 3 21754 21755 21756\n\t\tf 3 20807 20808 -20807\n\t\tmu 0 3 21757 21758 21759\n\t\tf 3 -20808 20809 20810\n\t\tmu 0 3 21760 21761 21762\n\t\tf 3 20811 20812 -20811\n\t\tmu 0 3 21763 21764 21765\n\t\tf 3 -20812 20813 20814\n\t\tmu 0 3 21766 21767 21768\n\t\tf 3 20815 20816 -20815\n\t\tmu 0 3 21769 21770 21771\n\t\tf 3 -20816 20817 20818\n\t\tmu 0 3 21772 21773 21774\n\t\tf 3 20819 20820 -20819\n\t\tmu 0 3 21775 21776 21777\n\t\tf 3 -20820 20821 20822\n\t\tmu 0 3 21778 21779 21780\n\t\tf 3 20823 20824 -20823\n\t\tmu 0 3 21781 21782 21783\n\t\tf 3 -20798 20825 20826\n\t\tmu 0 3 21784 21785 21786\n\t\tf 3 20827 20828 -20827\n\t\tmu 0 3 21787 21788 21789\n\t\tf 3 20829 -20828 20830\n\t\tmu 0 3 21790 21791 21792\n\t\tf 3 20831 20832 -20830\n\t\tmu 0 3 21793 21794 21795\n\t\tf 3 -20831 20833 20834\n\t\tmu 0 3 21796 21797 21798\n\t\tf 3 20835 -20832 20836\n\t\tmu 0 3 21799 21800 21801\n\t\tf 3 -20824 20837 20838\n\t\tmu 0 3 21802 21803 21804\n\t\tf 3 -20837 20839 20840\n\t\tmu 0 3 21805 21806 21807\n\t\tf 3 20841 20842 -20839\n\t\tmu 0 3 21808 21809 21810\n\t\tf 3 -20841 20843 -20842\n\t\tmu 0 3 21811 21812 21813\n\t\tf 3 20844 20845 20846\n\t\tmu 0 3 21814 21815 21816\n\t\tf 3 20847 20848 -20847\n\t\tmu 0 3 21817 21818 21819\n\t\tf 3 -20848 20849 20850\n\t\tmu 0 3 21820 21821 21822\n\t\tf 3 20851 20852 -20851\n\t\tmu 0 3 21823 21824 21825\n\t\tf 3 20853 -20845 20854\n\t\tmu 0 3 21826 21827 21828\n\t\tf 3 20855 20856 -20855\n\t\tmu 0 3 21829 21830 21831\n\t\tf 3 20857 20858 20859\n\t\tmu 0 3 21832 21833 21834\n\t\tf 3 20860 20861 -20860\n\t\tmu 0 3 21835 21836 21837\n\t\tf 3 -20861 20862 20863\n\t\tmu 0 3 21838 21839 21840\n\t\tf 3 20864 20865 -20864\n\t\tmu 0 3 21841 21842 21843\n\t\tf 3 20866 20867 20868\n\t\tmu 0 3 21844 21845 21846\n\t\tf 3 -20862 20869 20870\n\t\tmu 0 3 21847 21848 21849\n\t\tf 3 -20868 20871 -20871\n\t\tmu 0 3 21850 21851 21852\n\t\tf 3 20872 20873 -20869\n\t\tmu 0 3 21853 21854 21855\n\t\tf 3 20874 -20873 20875\n\t\tmu 0 3 21856 21857 21858\n\t\tf 3 -20875 20876 20877\n\t\tmu 0 3 21859 21860 21861\n\t\tf 3 20878 20879 -20878\n\t\tmu 0 3 21862 21863 21864\n\t\tf 3 -20874 -20880 20880\n\t\tmu 0 3 21865 21866 21867\n\t\tf 3 20881 -20879 20882\n\t\tmu 0 3 21868 21869 21870\n\t\tf 3 20883 20884 -20883\n\t\tmu 0 3 21871 21872 21873\n\t\tf 3 20885 -20885 20886\n\t\tmu 0 3 21874 21875 21876\n\t\tf 3 -20886 20887 20888\n\t\tmu 0 3 21877 21878 21879\n\t\tf 3 20889 20890 -20889\n\t\tmu 0 3 21880 21881 21882\n\t\tf 3 -20882 -20891 20891\n\t\tmu 0 3 21883 21884 21885\n\t\tf 3 20892 20893 -20887\n\t\tmu 0 3 21886 21887 21888\n\t\tf 3 20894 20895 -20892\n\t\tmu 0 3 21889 21890 21891\n\t\tf 3 20896 -20895 20897\n\t\tmu 0 3 21892 21893 21894\n\t\tf 3 20898 20899 -20898\n\t\tmu 0 3 21895 21896 21897\n\t\tf 3 -20899 -20890 20900\n\t\tmu 0 3 21898 21899 21900\n\t\tf 3 20901 20902 -20901\n\t\tmu 0 3 21901 21902 21903\n\t\tf 3 20903 20904 20905\n\t\tmu 0 3 21904 21905 21906\n\t\tf 3 20906 20907 20908\n\t\tmu 0 3 21907 21908 21909\n\t\tf 3 -20907 20909 20910\n\t\tmu 0 3 21910 21911 21912\n\t\tf 3 20911 20912 -20911\n\t\tmu 0 3 21913 21914 21915\n\t\tf 3 -20896 20913 -20881\n\t\tmu 0 3 21916 21917 21918\n\t\tf 3 -20912 20914 20915\n\t\tmu 0 3 21919 21920 21921\n\t\tf 3 20916 20917 -20916\n\t\tmu 0 3 21922 21923 21924\n\t\tf 3 -20917 20918 20919\n\t\tmu 0 3 21925 21926 21927\n\t\tf 3 20920 20921 -20920\n\t\tmu 0 3 21928 21929 21930\n\t\tf 3 -20921 20922 20923\n\t\tmu 0 3 21931 21932 21933\n\t\tf 3 -20852 -20914 20924\n\t\tmu 0 3 21934 21935 21936\n\t\tf 3 -20897 20925 -20925\n\t\tmu 0 3 21937 21938 21939\n\t\tf 3 20926 20927 20928\n\t\tmu 0 3 21940 21941 21942\n\t\tf 3 -20893 20929 -20929\n\t\tmu 0 3 21943 21944 21945\n\t\tf 3 -20927 20930 20931\n\t\tmu 0 3 21946 21947 21948\n\t\tf 3 20932 20933 -20932\n\t\tmu 0 3 21949 21950 21951\n\t\tf 3 -20930 20934 20935\n\t\tmu 0 3 21952 21953 21954\n\t\tf 3 20936 20937 -20931\n\t\tmu 0 3 21955 21956 21957\n\t\tf 3 -20884 20938 -20935\n\t\tmu 0 3 21958 21959 21960\n\t\tf 3 20939 -20939 20940\n\t\tmu 0 3 21961 21962 21963\n\t\tf 3 -20877 20941 -20941\n\t\tmu 0 3 21964 21965 21966\n\t\tf 3 -20942 20942 20943\n\t\tmu 0 3 21967 21968 21969\n\t\tf 3 20944 -20943 -20876\n\t\tmu 0 3 21970 21971 21972\n\t\tf 3 -20945 -20870 20945\n\t\tmu 0 3 21973 21974 21975\n\t\tf 3 -20866 20946 -20946\n\t\tmu 0 3 21976 21977 21978\n\t\tf 3 20947 20948 -20944\n\t\tmu 0 3 21979 21980 21981\n\t\tf 3 20949 -20948 20950\n\t\tmu 0 3 21982 21983 21984\n\t\tf 3 -20947 20951 -20951\n\t\tmu 0 3 21985 21986 21987\n\t\tf 3 -20952 -20865 20952\n\t\tmu 0 3 21988 21989 21990\n\t\tf 3 -20863 20953 20954\n\t\tmu 0 3 21991 21992 21619\n\t\tf 3 -20629 20955 -20955\n\t\tmu 0 3 21619 21621 21993\n\t\tf 3 -20626 -20954 20956\n\t\tmu 0 3 21994 21619 21995\n\t\tf 3 -20859 20957 -20957\n\t\tmu 0 3 21996 21997 21998\n\t\tf 3 20958 -20857 20959\n\t\tmu 0 3 21615 21999 22000\n\t\tf 3 20960 -20622 -20960\n\t\tmu 0 3 22001 21616 21615\n\t\tf 3 -20630 20961 20962\n\t\tmu 0 3 21621 21622 22002\n\t\tf 3 20963 20964 20965\n\t\tmu 0 3 22003 22004 22005\n\t\tf 3 -20966 20966 20967\n\t\tmu 0 3 22006 22007 22008\n\t\tf 3 20968 20969 -20967\n\t\tmu 0 3 22009 22010 22011\n\t\tf 3 -20968 20970 20971\n\t\tmu 0 3 22012 22013 22014\n\t\tf 3 20972 -20971 20973\n\t\tmu 0 3 22015 22016 22017\n\t\tf 3 -20973 20974 20975\n\t\tmu 0 3 22018 22019 22020\n\t\tf 3 20976 20977 -20976\n\t\tmu 0 3 22021 22022 22023\n\t\tf 3 20978 -20977 20979\n\t\tmu 0 3 22024 22025 22026\n\t\tf 3 20980 20981 -20980\n\t\tmu 0 3 22027 22028 22029\n\t\tf 3 20982 -20978 20983\n\t\tmu 0 3 22030 22031 22032\n\t\tf 3 -20983 20984 -20972\n\t\tmu 0 3 22033 22034 22035\n\t\tf 3 20985 20986 -20984\n\t\tmu 0 3 22036 22037 22038\n\t\tf 3 20987 -20986 20988\n\t\tmu 0 3 22039 22040 22041\n\t\tf 3 -20979 20989 -20989\n\t\tmu 0 3 22042 22043 22044\n\t\tf 3 20990 -20975 20991\n\t\tmu 0 3 22045 22046 22047\n\t\tf 3 -20981 -20991 20992\n\t\tmu 0 3 22048 22049 22050\n\t\tf 3 20993 20994 -20992\n\t\tmu 0 3 22051 22052 22053\n\t\tf 3 20995 20996 -20993\n\t\tmu 0 3 22054 22055 22056\n\t\tf 3 20997 20998 -20974\n\t\tmu 0 3 22057 22058 22059\n\t\tf 3 -20994 -20999 20999\n\t\tmu 0 3 22060 22061 22062\n\t\tf 3 21000 21001 -21000\n\t\tmu 0 3 22063 22064 22065\n\t\tf 3 21002 -21001 21003\n\t\tmu 0 3 22066 22067 22068\n\t\tf 3 21004 21005 -21004\n\t\tmu 0 3 22069 22070 22071\n\t\tf 3 -21005 -20998 21006\n\t\tmu 0 3 22072 22073 22074\n\t\tf 3 -21007 -20970 21007\n\t\tmu 0 3 22075 22076 22077\n\t\tf 3 21008 -21008 21009\n\t\tmu 0 3 22078 22079 22080\n\t\tf 3 -20969 21010 -21010\n\t\tmu 0 3 22081 22082 22083\n\t\tf 3 21011 21012 21013\n\t\tmu 0 3 22084 22085 22086\n\t\tf 3 21014 21015 -21014\n\t\tmu 0 3 22087 22088 22089\n\t\tf 3 -21016 21016 21017\n\t\tmu 0 3 22090 22091 22092\n\t\tf 3 21018 21019 -21018\n\t\tmu 0 3 22093 22094 22095\n\t\tf 3 -21019 21020 21021\n\t\tmu 0 3 22096 22097 22098\n\t\tf 3 21022 21023 -21022\n\t\tmu 0 3 22099 22100 22101\n\t\tf 3 21024 21025 21026\n\t\tmu 0 3 22102 22103 22104\n\t\tf 3 21027 21028 -21027\n\t\tmu 0 3 22105 22106 22107\n\t\tf 3 -21029 21029 21030\n\t\tmu 0 3 22108 22109 22110\n\t\tf 3 21031 21032 -21031\n\t\tmu 0 3 22111 22112 22113\n\t\tf 3 -21032 21033 21034\n\t\tmu 0 3 22114 22115 22116\n\t\tf 3 21035 21036 -21035\n\t\tmu 0 3 22117 22118 22119\n\t\tf 3 -21036 21037 21038\n\t\tmu 0 3 22120 22121 22122\n\t\tf 3 21039 21040 -21039\n\t\tmu 0 3 22123 22124 22125\n\t\tf 3 21041 21042 21043\n\t\tmu 0 3 22126 22127 22128\n\t\tf 3 21044 21045 -21044\n\t\tmu 0 3 22129 22130 22131\n\t\tf 3 21046 -21043 21047\n\t\tmu 0 3 22132 22133 22134\n\t\tf 3 21048 21049 -21048\n\t\tmu 0 3 22135 22136 22137\n\t\tf 3 21050 21051 21052\n\t\tmu 0 3 22138 22139 22140\n\t\tf 3 21053 21054 -21053\n\t\tmu 0 3 22141 22142 22143\n\t\tf 3 -21055 21055 21056\n\t\tmu 0 3 22144 22145 22146\n\t\tf 3 21057 21058 -21057\n\t\tmu 0 3 22147 22148 22149\n\t\tf 3 21059 -21058 21060\n\t\tmu 0 3 22150 22151 22152\n\t\tf 3 21061 -21040 -21061\n\t\tmu 0 3 22153 22154 22155\n\t\tf 3 21062 21063 21064\n\t\tmu 0 3 22156 22157 22158\n\t\tf 3 21065 21066 -21065\n\t\tmu 0 3 22159 22160 22161\n\t\tf 3 -21063 21067 21068\n\t\tmu 0 3 22162 22163 22164\n\t\tf 3 21069 21070 -21069\n\t\tmu 0 3 22165 22166 22167\n\t\tf 3 21071 -21068 21072\n\t\tmu 0 3 22168 22169 22170\n\t\tf 3 21073 21074 -21073\n\t\tmu 0 3 22171 22172 22173\n\t\tf 3 -21067 21075 21076\n\t\tmu 0 3 22174 22175 22176\n\t\tf 3 21077 -21074 -21077\n\t\tmu 0 3 22177 22178 22179\n\t\tf 3 21078 -21070 21079\n\t\tmu 0 3 22180 22181 22182\n\t\tf 3 21080 21081 -21080\n\t\tmu 0 3 22183 22184 22185\n\t\tf 3 21082 -21082 21083\n\t\tmu 0 3 22186 22187 22188\n\t\tf 3 21084 21085 -21084\n\t\tmu 0 3 22189 22190 22191\n\t\tf 3 21086 -21086 21087\n\t\tmu 0 3 22192 22193 22194\n\t\tf 3 21088 21089 -21088\n\t\tmu 0 3 22195 22196 22197\n\t\tf 3 -21090 21090 21091\n\t\tmu 0 3 22198 22199 22200\n\t\tf 3 21092 21093 -21092\n\t\tmu 0 3 22201 22202 22203\n\t\tf 3 -21093 21094 21095\n\t\tmu 0 3 22204 22205 22206\n\t\tf 3 21096 21097 -21096\n\t\tmu 0 3 22207 22208 22209\n\t\tf 3 21098 -21095 21099\n\t\tmu 0 3 22210 22211 22212\n\t\tf 3 21100 21101 -21100\n\t\tmu 0 3 22213 22214 22215\n\t\tf 3 -21101 -21091 21102\n\t\tmu 0 3 22216 22217 22218\n\t\tf 3 21103 21104 -21103\n\t\tmu 0 3 22219 22220 22221\n\t\tf 3 -21075 21105 21106\n\t\tmu 0 3 22222 22223 22224\n\t\tf 3 -21106 -21078 21107\n\t\tmu 0 3 22225 22226 22227\n\t\tf 3 -21085 21108 21109\n\t\tmu 0 3 22228 22229 22230\n\t\tf 3 21110 21111 -21110\n\t\tmu 0 3 22231 22232 22233\n\t\tf 3 -21089 -21112 21112\n\t\tmu 0 3 22234 22235 22236\n\t\tf 3 21113 -21104 -21113\n\t\tmu 0 3 22237 22238 22239\n\t\tf 3 -21111 21114 21115\n\t\tmu 0 3 22240 22241 22242\n\t\tf 3 21116 21117 -21116\n\t\tmu 0 3 22243 22244 22245\n\t\tf 3 -21114 -21118 21118\n\t\tmu 0 3 22246 22247 22248\n\t\tf 3 -21117 21119 21120\n\t\tmu 0 3 22249 22250 22251\n\t\tf 3 21121 21122 -21121\n\t\tmu 0 3 22252 22253 22254\n\t\tf 3 21123 21124 -21119\n\t\tmu 0 3 22255 22256 22257\n\t\tf 3 -21124 -21123 21125\n\t\tmu 0 3 22258 22259 22260\n\t\tf 3 21126 21127 -21126\n\t\tmu 0 3 22261 22262 22263\n\t\tf 3 -21120 21128 21129\n\t\tmu 0 3 22264 22265 22266\n\t\tf 3 -21129 -21115 21130\n\t\tmu 0 3 22267 22268 22269\n\t\tf 3 21131 21132 -21130\n\t\tmu 0 3 22270 22271 22272\n\t\tf 3 -21132 21133 21134\n\t\tmu 0 3 22273 22274 22275\n\t\tf 3 21135 21136 -21135\n\t\tmu 0 3 22276 22277 22278\n\t\tf 3 21137 -21128 21138\n\t\tmu 0 3 22279 22280 22281\n\t\tf 3 -21102 21139 21140\n\t\tmu 0 3 22282 22283 22284\n\t\tf 3 -21125 -21138 21141\n\t\tmu 0 3 22285 22286 22287\n\t\tf 3 -21140 -21105 -21142\n\t\tmu 0 3 22288 22289 22290\n\t\tf 3 21142 21143 -21139\n\t\tmu 0 3 22291 22292 22293\n\t\tf 3 -21144 21144 21145\n\t\tmu 0 3 22294 22295 22296\n\t\tf 3 21146 21147 -21146\n\t\tmu 0 3 22297 22298 22299\n\t\tf 3 21148 21149 -21131\n\t\tmu 0 3 22300 22301 22302\n\t\tf 3 -21134 -21150 -21107\n\t\tmu 0 3 22303 22304 22305\n\t\tf 3 21150 -21147 21151\n\t\tmu 0 3 22306 22307 22308\n\t\tf 3 -21151 21152 21153\n\t\tmu 0 3 22309 22310 22311\n\t\tf 3 21154 -21153 21155\n\t\tmu 0 3 22312 22313 22314\n\t\tf 3 21156 21157 -21156\n\t\tmu 0 3 22315 22316 22317\n\t\tf 3 -21157 21158 21159\n\t\tmu 0 3 22318 22319 22320\n\t\tf 3 21160 -21159 -21152\n\t\tmu 0 3 22321 22322 22323\n\t\tf 3 21161 21162 -21160\n\t\tmu 0 3 22324 22325 22326\n\t\tf 3 -21155 21163 21164\n\t\tmu 0 3 22327 22328 22329\n\t\tf 3 21165 21166 -21165\n\t\tmu 0 3 22330 22331 22332\n\t\tf 3 -21166 21167 21168\n\t\tmu 0 3 22333 22334 22335\n\t\tf 3 21169 21170 -21169\n\t\tmu 0 3 22336 22337 22338\n\t\tf 3 21171 21172 -21154\n\t\tmu 0 3 22339 22340 22341\n\t\tf 3 -21148 -21173 -21141\n\t\tmu 0 3 22342 22343 22344\n\t\tf 3 -21171 21173 21174\n\t\tmu 0 3 22345 22346 22347\n\t\tf 3 -21097 21175 -21175\n\t\tmu 0 3 22348 22349 22350\n\t\tf 3 -21167 -21176 21176\n\t\tmu 0 3 22351 22352 22353\n\t\tf 3 -21099 -21172 -21177\n\t\tmu 0 3 22354 22355 22356\n\t\tf 3 -21158 21177 21178\n\t\tmu 0 3 22357 22358 21105\n\t\tf 3 -21178 -21163 21179\n\t\tmu 0 3 21105 22359 22360\n\t\tf 3 -19778 21180 -21179\n\t\tmu 0 3 21105 21106 22361\n\t\tf 3 -21164 -21181 21181\n\t\tmu 0 3 22362 22363 21106\n\t\tf 3 21182 -19780 -21180\n\t\tmu 0 3 22364 21107 21105\n\t\tf 3 -21168 21183 21184\n\t\tmu 0 3 22365 22366 21108\n\t\tf 3 -19784 -21184 -21182\n\t\tmu 0 3 21106 21108 22367\n\t\tf 3 -19786 21185 -21185\n\t\tmu 0 3 21108 21109 22368\n\t\tf 3 21186 21187 21188\n\t\tmu 0 3 22369 22370 22371\n\t\tf 3 -20918 21189 -21189\n\t\tmu 0 3 22372 22373 22374\n\t\tf 3 -21188 21190 21191\n\t\tmu 0 3 22375 22376 22377\n\t\tf 3 21192 -20913 -21192\n\t\tmu 0 3 22378 22379 22380\n\t\tf 3 -21193 21193 21194\n\t\tmu 0 3 22381 22382 22383;\n\tsetAttr \".fc[11000:11499]\"\n\t\tf 3 21195 21196 -21195\n\t\tmu 0 3 22384 22385 22386\n\t\tf 3 -21191 21197 21198\n\t\tmu 0 3 22387 22388 22389\n\t\tf 3 -21198 -21187 21199\n\t\tmu 0 3 22390 22391 22392\n\t\tf 3 21200 21201 -21199\n\t\tmu 0 3 22393 22394 22395\n\t\tf 3 -21194 -21202 21202\n\t\tmu 0 3 22396 22397 22398\n\t\tf 3 21203 21204 -21200\n\t\tmu 0 3 22399 22400 22401\n\t\tf 3 -20903 -21196 21205\n\t\tmu 0 3 22402 22403 22404\n\t\tf 3 21206 21207 -21206\n\t\tmu 0 3 22405 22406 22407\n\t\tf 3 -21207 21208 21209\n\t\tmu 0 3 22408 22409 22410\n\t\tf 3 21210 -21209 -21203\n\t\tmu 0 3 22411 22412 22413\n\t\tf 3 21211 21212 -21210\n\t\tmu 0 3 22414 22415 22416\n\t\tf 3 -21213 -21087 21213\n\t\tmu 0 3 22417 22418 22419\n\t\tf 3 21214 21215 -21214\n\t\tmu 0 3 22420 22421 22422\n\t\tf 3 -21208 -21216 21216\n\t\tmu 0 3 22423 22424 22425\n\t\tf 3 21217 21218 -21217\n\t\tmu 0 3 22426 22427 22428\n\t\tf 3 -21218 21219 21220\n\t\tmu 0 3 22429 22430 22431\n\t\tf 3 -21220 -21215 21221\n\t\tmu 0 3 22432 22433 22434\n\t\tf 3 21222 21223 -21221\n\t\tmu 0 3 22435 22436 22437\n\t\tf 3 -21223 21224 21225\n\t\tmu 0 3 22438 22439 22440\n\t\tf 3 21226 21227 -21226\n\t\tmu 0 3 22441 22442 22443\n\t\tf 3 21228 -21225 21229\n\t\tmu 0 3 22444 22445 22446\n\t\tf 3 21230 -21229 21231\n\t\tmu 0 3 22447 22448 22449\n\t\tf 3 -21174 21232 -21232\n\t\tmu 0 3 22450 22451 22452\n\t\tf 3 -21233 -21170 21233\n\t\tmu 0 3 22453 22454 22455\n\t\tf 3 21234 21235 -21234\n\t\tmu 0 3 22456 22457 22458\n\t\tf 3 21236 -21236 21237\n\t\tmu 0 3 22459 22460 22461\n\t\tf 3 -20849 -21227 21238\n\t\tmu 0 3 22462 22463 22464\n\t\tf 3 -21231 -21237 -21239\n\t\tmu 0 3 22465 22466 22467\n\t\tf 3 21239 -20856 -21238\n\t\tmu 0 3 22468 22469 22470\n\t\tf 3 21240 -21098 -21230\n\t\tmu 0 3 22471 22472 22473\n\t\tf 3 -21094 -21241 -21222\n\t\tmu 0 3 22474 22475 22476\n\t\tf 3 -21235 -21186 21241\n\t\tmu 0 3 22477 22478 21109\n\t\tf 3 -19844 21242 -21242\n\t\tmu 0 3 21109 21141 22479\n\t\tf 3 -21240 -21243 21243\n\t\tmu 0 3 22480 22481 21141\n\t\tf 3 -19847 -20961 -21244\n\t\tmu 0 3 21141 21142 22482\n\t\tf 3 21244 21245 21246\n\t\tmu 0 3 22483 22484 22485\n\t\tf 3 21247 21248 -21247\n\t\tmu 0 3 22486 22487 22488\n\t\tf 3 21249 21250 21251\n\t\tmu 0 3 22489 22490 22491\n\t\tf 3 21252 21253 -21252\n\t\tmu 0 3 22492 22493 22494\n\t\tf 3 -21253 21254 21255\n\t\tmu 0 3 22495 22496 22497\n\t\tf 3 21256 21257 -21256\n\t\tmu 0 3 22498 22499 22500\n\t\tf 3 -21257 21258 21259\n\t\tmu 0 3 22501 22502 22503\n\t\tf 3 21260 21261 -21260\n\t\tmu 0 3 22504 22505 22506\n\t\tf 3 -21261 21262 21263\n\t\tmu 0 3 22507 22508 22509\n\t\tf 3 21264 21265 -21264\n\t\tmu 0 3 22510 22511 22512\n\t\tf 3 -21265 21266 21267\n\t\tmu 0 3 22513 22514 22515\n\t\tf 3 21268 21269 -21268\n\t\tmu 0 3 22516 22517 22518\n\t\tf 3 -21269 21270 21271\n\t\tmu 0 3 22519 22520 22521\n\t\tf 3 21272 21273 -21272\n\t\tmu 0 3 22522 22523 22524\n\t\tf 3 -21273 21274 21275\n\t\tmu 0 3 22525 22526 22527\n\t\tf 3 21276 21277 -21276\n\t\tmu 0 3 22528 22529 22530\n\t\tf 3 21278 -21277 21279\n\t\tmu 0 3 22531 22532 22533\n\t\tf 3 21280 21281 -21280\n\t\tmu 0 3 22534 22535 22536\n\t\tf 3 -21282 21282 21283\n\t\tmu 0 3 22537 22538 22539\n\t\tf 3 21284 21285 -21284\n\t\tmu 0 3 22540 22541 22542\n\t\tf 3 21286 21287 21288\n\t\tmu 0 3 22543 22544 22545\n\t\tf 3 21289 21290 -21289\n\t\tmu 0 3 22546 22547 22548\n\t\tf 3 -21287 21291 21292\n\t\tmu 0 3 22549 22550 22551\n\t\tf 3 21293 21294 -21293\n\t\tmu 0 3 22552 22553 22554\n\t\tf 3 -21294 21295 21296\n\t\tmu 0 3 22555 22556 22557\n\t\tf 3 21297 21298 -21297\n\t\tmu 0 3 22558 22559 22560\n\t\tf 3 -21298 21299 21300\n\t\tmu 0 3 22561 22562 22563\n\t\tf 3 21301 21302 -21301\n\t\tmu 0 3 22564 22565 22566\n\t\tf 3 -21302 21303 21304\n\t\tmu 0 3 22567 22568 22569\n\t\tf 3 21305 21306 -21305\n\t\tmu 0 3 22570 22571 22572\n\t\tf 3 -21306 21307 21308\n\t\tmu 0 3 22573 22574 22575\n\t\tf 3 21309 21310 -21309\n\t\tmu 0 3 22576 22577 22578\n\t\tf 3 -21310 21311 21312\n\t\tmu 0 3 22579 22580 22581\n\t\tf 3 21313 21314 -21313\n\t\tmu 0 3 22582 22583 22584\n\t\tf 3 -21314 21315 21316\n\t\tmu 0 3 22585 22586 22587\n\t\tf 3 21317 21318 -21317\n\t\tmu 0 3 22588 22589 22590\n\t\tf 3 -21318 21319 21320\n\t\tmu 0 3 22591 22592 22593\n\t\tf 3 21321 21322 -21321\n\t\tmu 0 3 22594 22595 22596\n\t\tf 3 21323 21324 21325\n\t\tmu 0 3 22597 22598 22599\n\t\tf 3 21326 21327 -21326\n\t\tmu 0 3 22600 22601 22602\n\t\tf 3 21328 -21325 21329\n\t\tmu 0 3 22603 22604 22605\n\t\tf 3 21330 -20924 -21330\n\t\tmu 0 3 22606 22607 22608\n\t\tf 3 21331 21332 21333\n\t\tmu 0 3 22609 22610 22611\n\t\tf 3 21334 21335 -21334\n\t\tmu 0 3 22612 22613 22614\n\t\tf 3 -21335 21336 21337\n\t\tmu 0 3 22615 22616 22617\n\t\tf 3 21338 21339 -21338\n\t\tmu 0 3 22618 22619 22620\n\t\tf 3 -21339 21340 21341\n\t\tmu 0 3 22621 22622 22623\n\t\tf 3 21342 21343 -21342\n\t\tmu 0 3 22624 22625 22626\n\t\tf 3 -21343 21344 21345\n\t\tmu 0 3 22627 22628 22629\n\t\tf 3 21346 21347 -21346\n\t\tmu 0 3 22630 22631 22632\n\t\tf 3 21348 21349 21350\n\t\tmu 0 3 22633 22634 22635\n\t\tf 3 21351 21352 -21351\n\t\tmu 0 3 22636 22637 22638\n\t\tf 3 -21352 21353 21354\n\t\tmu 0 3 22639 22640 22641\n\t\tf 3 21355 21356 -21355\n\t\tmu 0 3 22642 22643 22644\n\t\tf 3 -21356 21357 21358\n\t\tmu 0 3 22645 22646 22647\n\t\tf 3 21359 21360 -21359\n\t\tmu 0 3 22648 22649 22650\n\t\tf 3 -21360 21361 21362\n\t\tmu 0 3 22651 22652 22653\n\t\tf 3 -21162 21363 -21363\n\t\tmu 0 3 22654 22655 22656\n\t\tf 3 21364 -21357 21365\n\t\tmu 0 3 22657 22658 22659\n\t\tf 3 21366 21367 -21366\n\t\tmu 0 3 22660 22661 22662\n\t\tf 3 -21365 21368 21369\n\t\tmu 0 3 22663 22664 22665\n\t\tf 3 21370 -21353 -21370\n\t\tmu 0 3 22666 22667 22668\n\t\tf 3 -21369 21371 21372\n\t\tmu 0 3 22669 22670 22671\n\t\tf 3 -21372 -21368 21373\n\t\tmu 0 3 22672 22673 22674\n\t\tf 3 21374 21375 -21373\n\t\tmu 0 3 22675 22676 22677\n\t\tf 3 21376 21377 -21374\n\t\tmu 0 3 22678 22679 22680\n\t\tf 3 21378 -21377 21379\n\t\tmu 0 3 22681 22682 22683\n\t\tf 3 21380 21381 -21380\n\t\tmu 0 3 22684 22685 22686\n\t\tf 3 -21361 21382 21383\n\t\tmu 0 3 22687 22688 22689\n\t\tf 3 -21381 -21367 -21384\n\t\tmu 0 3 22690 22691 22692\n\t\tf 3 21384 -21382 21385\n\t\tmu 0 3 22693 22694 22695\n\t\tf 3 -21385 -21143 21386\n\t\tmu 0 3 22696 22697 22698\n\t\tf 3 21387 21388 -21387\n\t\tmu 0 3 22699 22700 22701\n\t\tf 3 -21379 -21389 21389\n\t\tmu 0 3 22702 22703 22704\n\t\tf 3 21390 -21145 -21386\n\t\tmu 0 3 22705 22706 22707\n\t\tf 3 -21391 -21383 21391\n\t\tmu 0 3 22708 22709 22710\n\t\tf 3 -21364 -21161 -21392\n\t\tmu 0 3 22711 22712 22713\n\t\tf 3 21392 21393 -21390\n\t\tmu 0 3 22714 22715 22716\n\t\tf 3 -21378 -21394 21394\n\t\tmu 0 3 22717 22718 22719\n\t\tf 3 21395 -21388 21396\n\t\tmu 0 3 22720 22721 22722\n\t\tf 3 -21396 21397 -21393\n\t\tmu 0 3 22723 22724 22725\n\t\tf 3 -21127 21398 -21397\n\t\tmu 0 3 22726 22727 22728\n\t\tf 3 21399 -21399 21400\n\t\tmu 0 3 22729 22730 22731\n\t\tf 3 -21122 21401 -21401\n\t\tmu 0 3 22732 22733 22734\n\t\tf 3 -21402 -21133 21402\n\t\tmu 0 3 22735 22736 22737\n\t\tf 3 21403 21404 -21403\n\t\tmu 0 3 22738 22739 22740\n\t\tf 3 -21404 -21137 21405\n\t\tmu 0 3 22741 22742 22743\n\t\tf 3 21406 21407 -21406\n\t\tmu 0 3 22744 22745 22746\n\t\tf 3 21408 -21408 21409\n\t\tmu 0 3 22747 22748 22749\n\t\tf 3 21410 21411 -21410\n\t\tmu 0 3 22750 22751 22752\n\t\tf 3 21412 -21412 21413\n\t\tmu 0 3 22753 22754 22755\n\t\tf 3 -21414 21414 21415\n\t\tmu 0 3 22756 22757 22758\n\t\tf 3 21416 -21416 21417\n\t\tmu 0 3 22759 22760 22761\n\t\tf 3 21418 21419 -21417\n\t\tmu 0 3 22762 22763 22764\n\t\tf 3 21420 -21418 21421\n\t\tmu 0 3 22765 22766 22767\n\t\tf 3 21422 21423 -21421\n\t\tmu 0 3 22768 22769 22770\n\t\tf 3 21424 21425 -21424\n\t\tmu 0 3 22771 22772 22773\n\t\tf 3 21426 21427 -21425\n\t\tmu 0 3 22774 22775 22776\n\t\tf 3 21428 21429 -21413\n\t\tmu 0 3 22777 22778 22779\n\t\tf 3 21430 21431 -21430\n\t\tmu 0 3 22780 22781 22782\n\t\tf 3 -21407 21432 21433\n\t\tmu 0 3 22783 22784 22785\n\t\tf 3 21434 21435 -21428\n\t\tmu 0 3 22786 22787 22788\n\t\tf 3 21436 -21434 21437\n\t\tmu 0 3 22789 22790 22791\n\t\tf 3 21438 -21438 -21435\n\t\tmu 0 3 22792 22793 22794\n\t\tf 3 21439 -21411 21440\n\t\tmu 0 3 22795 22796 22797\n\t\tf 3 21441 21442 -21441\n\t\tmu 0 3 22798 22799 22800\n\t\tf 3 21443 21444 21445\n\t\tmu 0 3 22801 22802 22803\n\t\tf 3 21446 21447 -21446\n\t\tmu 0 3 22804 22805 22806\n\t\tf 3 -21447 21448 21449\n\t\tmu 0 3 22807 22808 22809\n\t\tf 3 21450 21451 -21450\n\t\tmu 0 3 22810 22811 22812\n\t\tf 3 21452 -21449 21453\n\t\tmu 0 3 22813 22814 22815\n\t\tf 3 21454 21455 -21454\n\t\tmu 0 3 22816 22817 22818\n\t\tf 3 -21455 -21445 21456\n\t\tmu 0 3 22819 22820 22821\n\t\tf 3 21457 21458 -21457\n\t\tmu 0 3 22822 22823 22824\n\t\tf 3 21459 -21451 21460\n\t\tmu 0 3 22825 22826 22827\n\t\tf 3 21461 21462 -21461\n\t\tmu 0 3 22828 22829 22830\n\t\tf 3 -21462 -21453 21463\n\t\tmu 0 3 22831 22832 22833\n\t\tf 3 -21463 21464 21465\n\t\tmu 0 3 22834 22835 22836\n\t\tf 3 21466 21467 -21466\n\t\tmu 0 3 22837 22838 22839\n\t\tf 3 -21467 21468 21469\n\t\tmu 0 3 22840 22841 22842\n\t\tf 3 21470 21471 -21470\n\t\tmu 0 3 22843 22844 22845\n\t\tf 3 -21471 21472 21473\n\t\tmu 0 3 22846 22847 22848\n\t\tf 3 21474 21475 -21474\n\t\tmu 0 3 22849 22850 22851\n\t\tf 3 -21473 21476 21477\n\t\tmu 0 3 22852 22853 22854\n\t\tf 3 21478 21479 -21478\n\t\tmu 0 3 22855 22856 22857\n\t\tf 3 -21475 21480 21481\n\t\tmu 0 3 22858 22859 22860\n\t\tf 3 -21481 -21480 21482\n\t\tmu 0 3 22861 22862 22863\n\t\tf 3 21483 21484 -21482\n\t\tmu 0 3 22864 22865 22866\n\t\tf 3 21485 21486 -21483\n\t\tmu 0 3 22867 22868 22869\n\t\tf 3 -21469 21487 21488\n\t\tmu 0 3 22870 22871 22872\n\t\tf 3 21489 -21477 -21489\n\t\tmu 0 3 22873 22874 22875\n\t\tf 3 21490 -21488 21491\n\t\tmu 0 3 22876 22877 22878\n\t\tf 3 -21465 21492 -21492\n\t\tmu 0 3 22879 22880 22881\n\t\tf 3 21493 -21493 -21464\n\t\tmu 0 3 22882 22883 22884\n\t\tf 3 21494 21495 21496\n\t\tmu 0 3 22885 22886 22887\n\t\tf 3 21497 21498 -21497\n\t\tmu 0 3 22888 22889 22890\n\t\tf 3 -21498 21499 21500\n\t\tmu 0 3 22891 22892 22893\n\t\tf 3 21501 -21499 21502\n\t\tmu 0 3 22894 22895 22896\n\t\tf 3 21503 21504 -21503\n\t\tmu 0 3 22897 22898 22899\n\t\tf 3 21505 21506 -21501\n\t\tmu 0 3 22900 22901 22902\n\t\tf 3 -21504 -21507 21507\n\t\tmu 0 3 22903 22904 22905\n\t\tf 3 -21506 21508 21509\n\t\tmu 0 3 22906 22907 22908\n\t\tf 3 21510 21511 -21508\n\t\tmu 0 3 22909 22910 22911\n\t\tf 3 21512 21513 -21510\n\t\tmu 0 3 22912 22913 22914\n\t\tf 3 -21513 21514 21515\n\t\tmu 0 3 22915 22916 22917\n\t\tf 3 -21514 21516 21517\n\t\tmu 0 3 22918 22919 22920\n\t\tf 3 21518 -21511 -21518\n\t\tmu 0 3 22921 22922 22923\n\t\tf 3 21519 21520 -21516\n\t\tmu 0 3 22924 22925 22926\n\t\tf 3 21521 -21520 21522\n\t\tmu 0 3 22927 22928 22929\n\t\tf 3 21523 21524 -21523\n\t\tmu 0 3 22930 22931 22932\n\t\tf 3 -21521 21525 21526\n\t\tmu 0 3 22933 22934 22935\n\t\tf 3 21527 -21517 -21527\n\t\tmu 0 3 22936 22937 22938\n\t\tf 3 -21526 -21522 21528\n\t\tmu 0 3 22939 22940 22941\n\t\tf 3 21529 21530 -21529\n\t\tmu 0 3 22942 22943 22944\n\t\tf 3 -21502 21531 21532\n\t\tmu 0 3 22945 22946 22947\n\t\tf 3 21533 21534 -21533\n\t\tmu 0 3 22948 22949 22950\n\t\tf 3 -21495 -21535 21535\n\t\tmu 0 3 22951 22952 22953\n\t\tf 3 21536 21537 -21536\n\t\tmu 0 3 22954 22955 22956\n\t\tf 3 -21525 21538 21539\n\t\tmu 0 3 22957 22958 22959\n\t\tf 3 21540 21541 -21540\n\t\tmu 0 3 22960 22961 22962\n\t\tf 3 -21530 -21542 21542\n\t\tmu 0 3 22963 22964 22965\n\t\tf 3 21543 21544 -21543\n\t\tmu 0 3 22966 22967 22968\n\t\tf 3 21545 -21544 21546\n\t\tmu 0 3 22969 22970 22971\n\t\tf 3 21547 21548 -21547\n\t\tmu 0 3 22972 22973 22974\n\t\tf 3 -21548 -21541 21549\n\t\tmu 0 3 22975 22976 22977\n\t\tf 3 21550 21551 -21550\n\t\tmu 0 3 22978 22979 22980\n\t\tf 3 21552 -21549 21553\n\t\tmu 0 3 22981 22982 22983\n\t\tf 3 21554 -20934 -21554\n\t\tmu 0 3 22984 22985 22986\n\t\tf 3 -21555 -21552 21555\n\t\tmu 0 3 22987 22988 22989\n\t\tf 3 21556 -20928 -21556\n\t\tmu 0 3 22990 22991 22992\n\t\tf 3 21557 21558 21559\n\t\tmu 0 3 22993 22994 22995\n\t\tf 3 21560 21561 -21560\n\t\tmu 0 3 22996 22997 22998\n\t\tf 3 -21561 21562 21563\n\t\tmu 0 3 22999 23000 23001\n\t\tf 3 -20894 21564 -21564\n\t\tmu 0 3 23002 23003 23004\n\t\tf 3 -20888 -21563 21565\n\t\tmu 0 3 23005 23006 23007\n\t\tf 3 21566 21567 -21566\n\t\tmu 0 3 23008 23009 23010\n\t\tf 3 -21567 -21559 21568\n\t\tmu 0 3 23011 23012 23013\n\t\tf 3 -21569 21569 21570\n\t\tmu 0 3 23014 23015 23016\n\t\tf 3 21571 21572 21573\n\t\tmu 0 3 23017 23018 23019\n\t\tf 3 21574 21575 21576\n\t\tmu 0 3 23020 23021 23022\n\t\tf 3 21577 21578 -21577\n\t\tmu 0 3 23022 23023 23024\n\t\tf 3 21579 -21579 21580\n\t\tmu 0 3 23025 23026 23027\n\t\tf 3 21581 21582 -21581\n\t\tmu 0 3 23028 23029 23030\n\t\tf 3 -21578 21583 21584\n\t\tmu 0 3 23031 23022 23032\n\t\tf 3 21585 21586 -21585\n\t\tmu 0 3 23032 23033 23034\n\t\tf 3 21587 21588 -21587\n\t\tmu 0 3 23035 23036 23037\n\t\tf 3 21589 21590 -21589\n\t\tmu 0 3 23038 23039 23040\n\t\tf 3 -21575 21591 21592\n\t\tmu 0 3 23021 23041 23042\n\t\tf 3 21593 21594 -21593\n\t\tmu 0 3 23043 23044 23021\n\t\tf 3 -21580 21595 21596\n\t\tmu 0 3 23045 23046 23047\n\t\tf 3 21597 -21592 -21597\n\t\tmu 0 3 23048 23049 23050\n\t\tf 3 -21586 21598 21599\n\t\tmu 0 3 23051 23032 23052\n\t\tf 3 21600 21601 -21600\n\t\tmu 0 3 23052 23053 23054\n\t\tf 3 21602 -21588 21603\n\t\tmu 0 3 23055 23056 23057\n\t\tf 3 -21602 21604 -21604\n\t\tmu 0 3 23058 23059 23060\n\t\tf 3 -21603 21605 21606\n\t\tmu 0 3 23061 23062 23063\n\t\tf 3 21607 21608 -21607\n\t\tmu 0 3 23064 23065 23066\n\t\tf 3 -21590 -21609 21609\n\t\tmu 0 3 23067 23068 23069\n\t\tf 3 21610 21611 -21610\n\t\tmu 0 3 23070 23071 23072\n\t\tf 3 21612 -21611 21613\n\t\tmu 0 3 23073 23074 23075\n\t\tf 3 21614 21615 -21614\n\t\tmu 0 3 23076 23077 23078\n\t\tf 3 -21598 21616 21617\n\t\tmu 0 3 23079 23080 23081\n\t\tf 3 21618 21619 -21618\n\t\tmu 0 3 23082 23083 23084\n\t\tf 3 -21619 21620 21621\n\t\tmu 0 3 23085 23086 23087\n\t\tf 3 21622 21623 -21622\n\t\tmu 0 3 23088 23089 23090\n\t\tf 3 21624 -21624 21625\n\t\tmu 0 3 23091 23092 23093\n\t\tf 3 -21620 -21625 21626\n\t\tmu 0 3 23094 23095 23091\n\t\tf 3 21627 -21594 -21627\n\t\tmu 0 3 23091 23044 23096\n\t\tf 3 21628 21629 -21626\n\t\tmu 0 3 23097 23098 23091\n\t\tf 3 -21629 21630 21631\n\t\tmu 0 3 23098 23099 23100\n\t\tf 3 -21574 21632 -21632\n\t\tmu 0 3 23101 23102 23098\n\t\tf 3 21633 -21631 21634\n\t\tmu 0 3 23103 23104 23105\n\t\tf 3 -21623 -20905 -21635\n\t\tmu 0 3 23106 23107 23108\n\t\tf 3 -21633 -21573 21635\n\t\tmu 0 3 23098 23102 23109\n\t\tf 3 21636 21637 -21636\n\t\tmu 0 3 23110 23111 23098\n\t\tf 3 -21630 -21638 21638\n\t\tmu 0 3 23091 23098 23112\n\t\tf 3 -21452 21639 -21639\n\t\tmu 0 3 23113 23114 23091\n\t\tf 3 -21640 -21460 21640\n\t\tmu 0 3 23091 23115 23116\n\t\tf 3 21641 -21628 -21641\n\t\tmu 0 3 23117 23044 23091\n\t\tf 3 -21595 -21642 21642\n\t\tmu 0 3 23021 23044 23118\n\t\tf 3 -21468 21643 -21643\n\t\tmu 0 3 23119 23120 23021\n\t\tf 3 -21644 -21472 21644\n\t\tmu 0 3 23021 23121 23122\n\t\tf 3 21645 -21576 -21645\n\t\tmu 0 3 23123 23022 23021\n\t\tf 3 -21646 21646 21647\n\t\tmu 0 3 23022 23124 23125\n\t\tf 3 21648 -21584 -21648\n\t\tmu 0 3 23126 23032 23022\n\t\tf 3 -21649 21649 21650\n\t\tmu 0 3 23032 23127 23128\n\t\tf 3 21651 -21599 -21651\n\t\tmu 0 3 23129 23052 23032\n\t\tf 3 21652 -21582 -21591\n\t\tmu 0 3 23130 23131 23132\n\t\tf 3 21653 21654 21655\n\t\tmu 0 3 23133 23134 23135\n\t\tf 3 21656 21657 -21656\n\t\tmu 0 3 23136 23137 23138\n\t\tf 3 -21655 21658 21659\n\t\tmu 0 3 23139 23140 23141\n\t\tf 3 21660 21661 -21660\n\t\tmu 0 3 23142 23143 23144\n\t\tf 3 21662 21663 21664\n\t\tmu 0 3 23145 23146 23147\n\t\tf 3 21665 21666 -21665\n\t\tmu 0 3 23148 23149 23150\n\t\tf 3 -21667 21667 21668\n\t\tmu 0 3 23151 23152 23153\n\t\tf 3 21669 21670 -21669\n\t\tmu 0 3 23154 23155 23156\n\t\tf 3 21671 21672 21673\n\t\tmu 0 3 23157 23158 23159\n\t\tf 3 21674 21675 -21674\n\t\tmu 0 3 23159 23160 23161\n\t\tf 3 21676 -21675 21677\n\t\tmu 0 3 23162 23160 23159\n\t\tf 3 21678 21679 -21678\n\t\tmu 0 3 23159 23163 23164\n\t\tf 3 -21680 21680 21681\n\t\tmu 0 3 23165 23166 23167\n\t\tf 3 21682 21683 -21682\n\t\tmu 0 3 23168 23169 23170\n\t\tf 3 21684 -21683 21685\n\t\tmu 0 3 23171 23172 23173\n\t\tf 3 21686 21687 -21686\n\t\tmu 0 3 23174 23175 23176\n\t\tf 3 21688 21689 21690\n\t\tmu 0 3 23177 23178 23179\n\t\tf 3 21691 21692 -21691\n\t\tmu 0 3 23180 23181 23182\n\t\tf 3 -21693 21693 21694\n\t\tmu 0 3 23183 23184 23185\n\t\tf 3 21695 21696 -21695\n\t\tmu 0 3 23186 23187 23188\n\t\tf 3 21697 21698 21699\n\t\tmu 0 3 23189 23190 23191\n\t\tf 3 21700 21701 -21700\n\t\tmu 0 3 23192 23193 23194\n\t\tf 3 -21699 21702 21703\n\t\tmu 0 3 23195 23196 23197\n\t\tf 3 21704 21705 -21704\n\t\tmu 0 3 23198 23199 23200\n\t\tf 3 21706 21707 21708\n\t\tmu 0 3 23201 23202 23203\n\t\tf 3 21709 21710 -21709\n\t\tmu 0 3 23204 23205 23206\n\t\tf 3 21711 21712 21713\n\t\tmu 0 3 23207 23208 23209\n\t\tf 3 21714 21715 -21714\n\t\tmu 0 3 23210 23211 23212\n\t\tf 3 -21701 21716 21717\n\t\tmu 0 3 23213 23214 23215\n\t\tf 3 -21717 -21706 21718\n\t\tmu 0 3 23216 23217 23218\n\t\tf 3 21719 21720 -21718\n\t\tmu 0 3 23219 23220 23221\n\t\tf 3 21721 21722 -21719\n\t\tmu 0 3 23222 23223 23224\n\t\tf 3 21723 21724 21725\n\t\tmu 0 3 23225 23226 23227\n\t\tf 3 21726 21727 -21726\n\t\tmu 0 3 23228 23229 23230\n\t\tf 3 21728 21729 21730\n\t\tmu 0 3 23231 23232 23233\n\t\tf 3 21731 -21728 -21731\n\t\tmu 0 3 23234 23235 23236\n\t\tf 3 21732 21733 21734\n\t\tmu 0 3 23237 23238 23239\n\t\tf 3 -21734 21735 21736\n\t\tmu 0 3 23240 23241 23242\n\t\tf 3 21737 21738 -21735\n\t\tmu 0 3 23243 23244 23245\n\t\tf 3 21739 21740 -21737\n\t\tmu 0 3 23246 23247 23248\n\t\tf 3 21741 -21740 21742\n\t\tmu 0 3 23249 23250 23251\n\t\tf 3 21743 21744 -21743\n\t\tmu 0 3 23252 23253 23254\n\t\tf 3 -21732 21745 21746\n\t\tmu 0 3 23255 23256 23257\n\t\tf 3 21747 -21745 -21747\n\t\tmu 0 3 23258 23259 23260\n\t\tf 3 21748 -21739 21749\n\t\tmu 0 3 23261 23262 23263\n\t\tf 3 21750 21751 21752\n\t\tmu 0 3 23264 23265 23266\n\t\tf 3 -21752 21753 21754\n\t\tmu 0 3 23266 23267 23268\n\t\tf 3 21755 21756 -21755\n\t\tmu 0 3 23269 23270 23266\n\t\tf 3 -21757 21757 21758\n\t\tmu 0 3 23266 23271 23272\n\t\tf 3 21759 21760 -21759\n\t\tmu 0 3 23273 23274 23266\n\t\tf 3 -21758 21761 21762\n\t\tmu 0 3 23275 23276 23277\n\t\tf 3 -21762 -21756 21763\n\t\tmu 0 3 23278 23279 23280\n\t\tf 3 21764 21765 -21763\n\t\tmu 0 3 23281 23282 23283\n\t\tf 3 21766 -21765 21767\n\t\tmu 0 3 23284 23285 23286\n\t\tf 3 21768 21769 -21768\n\t\tmu 0 3 23287 23288 23289\n\t\tf 3 21770 21771 -21764\n\t\tmu 0 3 23290 23291 23292\n\t\tf 3 -21769 -21772 21772\n\t\tmu 0 3 23293 23294 23295\n\t\tf 3 21773 21774 -21773\n\t\tmu 0 3 23296 23297 23298\n\t\tf 3 21775 21776 21777\n\t\tmu 0 3 23299 23300 23301\n\t\tf 3 -21777 21778 21779\n\t\tmu 0 3 23302 23303 23261\n\t\tf 3 21780 21781 -21778\n\t\tmu 0 3 23304 23305 23306\n\t\tf 3 21782 -21782 21783\n\t\tmu 0 3 23307 23308 23309\n\t\tf 3 21784 21785 -21780\n\t\tmu 0 3 23261 23310 23311\n\t\tf 3 21786 21787 -21784\n\t\tmu 0 3 23312 23313 23314\n\t\tf 3 21788 -21761 21789\n\t\tmu 0 3 23315 23266 23274\n\t\tf 3 21790 21791 -21790\n\t\tmu 0 3 23274 23316 23317\n\t\tf 3 -21789 21792 -21753\n\t\tmu 0 3 23266 23318 23319\n\t\tf 3 21793 -21785 -21750\n\t\tmu 0 3 23320 23310 23261\n\t\tf 3 21794 21795 21796\n\t\tmu 0 3 23321 23322 23323\n\t\tf 3 21797 21798 -21797\n\t\tmu 0 3 23324 23325 23326\n\t\tf 3 -21799 21799 21800\n\t\tmu 0 3 23327 23328 23329\n\t\tf 3 21801 21802 -21801\n\t\tmu 0 3 23330 23331 23332\n\t\tf 3 -21795 21803 21804\n\t\tmu 0 3 23333 23334 23335\n\t\tf 3 -21804 -21803 21805\n\t\tmu 0 3 23336 23337 23338\n\t\tf 3 21806 21807 -21805\n\t\tmu 0 3 23339 23340 23341\n\t\tf 3 21808 21809 -21806\n\t\tmu 0 3 23342 23343 23344\n\t\tf 3 21810 21811 21812\n\t\tmu 0 3 23345 23346 23347\n\t\tf 3 -21812 21813 21814\n\t\tmu 0 3 23348 23349 23350\n\t\tf 3 21815 21816 -21813\n\t\tmu 0 3 23351 23352 23353\n\t\tf 3 21817 21818 -21815\n\t\tmu 0 3 23354 23355 23356\n\t\tf 3 21819 21820 21821\n\t\tmu 0 3 23357 23358 23359\n\t\tf 3 21822 21823 -21822\n\t\tmu 0 3 23359 23360 23361\n\t\tf 3 -21820 21824 21825\n\t\tmu 0 3 23362 23363 23364\n\t\tf 3 21826 21827 -21826\n\t\tmu 0 3 23365 23366 23367\n\t\tf 3 -21827 21828 21829\n\t\tmu 0 3 23368 23369 23370\n\t\tf 3 21830 21831 -21830\n\t\tmu 0 3 23371 23372 23373\n\t\tf 3 -21831 21832 21833\n\t\tmu 0 3 23374 23375 23376\n\t\tf 3 21834 21835 -21834\n\t\tmu 0 3 23377 23378 23379\n\t\tf 3 -21835 21836 21837\n\t\tmu 0 3 23380 23381 23382\n\t\tf 3 21838 21839 -21838\n\t\tmu 0 3 23383 23384 23385\n\t\tf 3 -21823 21840 21841\n\t\tmu 0 3 23360 23359 23386\n\t\tf 3 21842 21843 -21842\n\t\tmu 0 3 23387 23388 23360\n\t\tf 3 -21843 21844 21845\n\t\tmu 0 3 23389 23390 23391\n\t\tf 3 21846 21847 -21846\n\t\tmu 0 3 23392 23393 23394\n\t\tf 3 -21847 21848 21849\n\t\tmu 0 3 23395 23396 23397\n\t\tf 3 21850 21851 -21850\n\t\tmu 0 3 23398 23399 23400\n\t\tf 3 -21851 21852 21853\n\t\tmu 0 3 23401 23402 23403\n\t\tf 3 21854 21855 -21854\n\t\tmu 0 3 23404 23405 23406\n\t\tf 3 -21855 21856 21857\n\t\tmu 0 3 23407 23408 23409\n\t\tf 3 21858 21859 -21858\n\t\tmu 0 3 23410 23411 23412\n\t\tf 3 21860 21861 21862\n\t\tmu 0 3 23413 23414 23415\n\t\tf 3 21863 21864 -21863\n\t\tmu 0 3 23416 23417 23418\n\t\tf 3 -21861 21865 21866\n\t\tmu 0 3 23419 23420 23421\n\t\tf 3 21867 21868 -21867\n\t\tmu 0 3 23421 23422 23423\n\t\tf 3 -21864 21869 21870\n\t\tmu 0 3 23424 23425 23426\n\t\tf 3 21871 21872 -21871\n\t\tmu 0 3 23427 23428 23429\n\t\tf 3 -21872 21873 21874\n\t\tmu 0 3 23430 23431 23432\n\t\tf 3 21875 21876 -21875\n\t\tmu 0 3 23433 23434 23435\n\t\tf 3 -21876 21877 21878\n\t\tmu 0 3 23436 23437 23438\n\t\tf 3 21879 21880 -21879\n\t\tmu 0 3 23439 23440 23441\n\t\tf 3 -21868 21881 21882\n\t\tmu 0 3 23422 23421 23442\n\t\tf 3 21883 21884 -21883\n\t\tmu 0 3 23443 23444 23422\n\t\tf 3 -21884 21885 21886\n\t\tmu 0 3 23445 23446 23447\n\t\tf 3 21887 21888 -21887\n\t\tmu 0 3 23448 23449 23450\n\t\tf 3 -21888 21889 21890\n\t\tmu 0 3 23451 23452 23453\n\t\tf 3 21891 21892 -21891\n\t\tmu 0 3 23454 23455 23456\n\t\tf 3 21893 -21892 21894\n\t\tmu 0 3 23457 23458 23459\n\t\tf 3 21895 21896 -21895\n\t\tmu 0 3 23460 23461 23462\n\t\tf 3 -21897 21897 21898\n\t\tmu 0 3 23463 23464 23465\n\t\tf 3 21899 21900 -21899\n\t\tmu 0 3 23466 23467 23468\n\t\tf 3 21901 21902 21903\n\t\tmu 0 3 23469 23470 23471\n\t\tf 3 21904 21905 -21904\n\t\tmu 0 3 23472 23473 23474\n\t\tf 3 -21902 21906 21907\n\t\tmu 0 3 23475 23476 23477\n\t\tf 3 21908 21909 -21908\n\t\tmu 0 3 23478 23479 23480\n\t\tf 3 -21909 21910 21911\n\t\tmu 0 3 23481 23482 23483\n\t\tf 3 21912 21913 -21912\n\t\tmu 0 3 23484 23485 23486\n\t\tf 3 -21913 21914 21915\n\t\tmu 0 3 23487 23488 23489\n\t\tf 3 21916 21917 -21916\n\t\tmu 0 3 23490 23491 23492\n\t\tf 3 21918 21919 21920\n\t\tmu 0 3 23493 23494 23495\n\t\tf 3 21921 21922 21923\n\t\tmu 0 3 23496 23497 23498\n\t\tf 3 21924 21925 -21924\n\t\tmu 0 3 23499 23500 23501\n\t\tf 3 -21922 21926 21927\n\t\tmu 0 3 23502 23503 23504\n\t\tf 3 21928 21929 -21928\n\t\tmu 0 3 23505 23506 23507\n\t\tf 3 21930 21931 21932\n\t\tmu 0 3 23508 23509 23510\n\t\tf 3 21933 21934 -21933\n\t\tmu 0 3 23511 23512 23513\n\t\tf 3 -21934 21935 21936\n\t\tmu 0 3 23514 23515 23516\n\t\tf 3 21937 21938 -21937\n\t\tmu 0 3 23517 23518 23519\n\t\tf 3 -21938 21939 21940\n\t\tmu 0 3 23520 23521 23522\n\t\tf 3 21941 21942 -21941\n\t\tmu 0 3 23523 23524 23525\n\t\tf 3 -21942 21943 21944\n\t\tmu 0 3 23526 23527 23528\n\t\tf 3 21945 21946 -21945\n\t\tmu 0 3 23529 23530 23531\n\t\tf 3 -21929 21947 21948\n\t\tmu 0 3 23532 23533 23534\n\t\tf 3 21949 21950 -21949\n\t\tmu 0 3 23535 23536 23537\n\t\tf 3 21951 21952 21953\n\t\tmu 0 3 23538 23539 23540\n\t\tf 3 21954 21955 -21954\n\t\tmu 0 3 23541 23542 23543\n\t\tf 3 -21952 21956 21957\n\t\tmu 0 3 23544 23545 23546\n\t\tf 3 21958 21959 -21958\n\t\tmu 0 3 23547 23548 23549\n\t\tf 3 21960 21961 21962\n\t\tmu 0 3 23550 23551 23552\n\t\tf 3 21963 21964 -21963\n\t\tmu 0 3 23553 23554 23555\n\t\tf 3 -21964 21965 21966\n\t\tmu 0 3 23556 23557 23558\n\t\tf 3 -21946 21967 -21967\n\t\tmu 0 3 23559 23560 23561\n\t\tf 3 -21109 -21081 21968\n\t\tmu 0 3 23562 23563 23564\n\t\tf 3 -21072 -21149 -21969\n\t\tmu 0 3 23565 23566 23567\n\t\tf 3 -21136 21969 21970\n\t\tmu 0 3 23568 23569 23570\n\t\tf 3 21971 -21433 -21971\n\t\tmu 0 3 23571 23572 23573\n\t\tf 3 21972 -21970 -21108\n\t\tmu 0 3 23574 23575 23576\n\t\tf 3 21973 21974 21975\n\t\tmu 0 3 23577 23578 23579\n\t\tf 3 21976 21977 -21976\n\t\tmu 0 3 23580 23581 23582\n\t\tf 3 -21977 21978 21979\n\t\tmu 0 3 23583 23584 23585\n\t\tf 3 21980 21981 21982\n\t\tmu 0 3 23586 23587 23588\n\t\tf 3 21983 21984 -21983\n\t\tmu 0 3 23589 23590 23591\n\t\tf 3 -21981 21985 21986\n\t\tmu 0 3 23592 23593 23594\n\t\tf 3 21987 21988 -21987\n\t\tmu 0 3 23595 23596 23597\n\t\tf 3 21989 -21988 21990\n\t\tmu 0 3 23598 23599 23600\n\t\tf 3 21991 21992 21993\n\t\tmu 0 3 23601 23602 23603\n\t\tf 3 21994 21995 21996\n\t\tmu 0 3 23604 23605 23606\n\t\tf 3 21997 21998 -21997\n\t\tmu 0 3 23607 23608 23609\n\t\tf 3 -21998 21999 22000\n\t\tmu 0 3 23610 23611 23612\n\t\tf 3 22001 22002 -22001\n\t\tmu 0 3 23613 23614 23615\n\t\tf 3 22003 -21738 -22000\n\t\tmu 0 3 23616 23617 23618\n\t\tf 3 22004 -21794 -22004\n\t\tmu 0 3 23619 23620 23621\n\t\tf 3 22005 -21786 -22005\n\t\tmu 0 3 23622 23623 23620\n\t\tf 3 -22006 -21996 22006\n\t\tmu 0 3 23624 23625 23626\n\t\tf 3 22007 -21781 -22007\n\t\tmu 0 3 23627 23628 23629\n\t\tf 3 -21787 -22008 22008\n\t\tmu 0 3 23630 23631 23632\n\t\tf 3 22009 -21819 -22009\n\t\tmu 0 3 23633 23634 23635\n\t\tf 3 -22010 -21995 22010\n\t\tmu 0 3 23636 23637 23638\n\t\tf 3 22011 -21816 -22011\n\t\tmu 0 3 23639 23640 23641\n\t\tf 3 22012 22013 22014\n\t\tmu 0 3 23642 23643 23644\n\t\tf 3 22015 22016 -22015\n\t\tmu 0 3 23645 23646 23647\n\t\tf 3 -22016 22017 22018\n\t\tmu 0 3 23648 23649 23650\n\t\tf 3 22019 -21376 -22019\n\t\tmu 0 3 23651 23652 23653\n\t\tf 3 22020 22021 22022\n\t\tmu 0 3 23654 23655 23656\n\t\tf 3 22023 -22021 22024\n\t\tmu 0 3 23657 23658 23659\n\t\tf 3 -22020 22025 22026\n\t\tmu 0 3 23660 23661 23662\n\t\tf 3 22027 22028 -22025\n\t\tmu 0 3 23663 23664 23665\n\t\tf 3 22029 22030 -22023\n\t\tmu 0 3 23666 23667 23668\n\t\tf 3 22031 -21371 -22027\n\t\tmu 0 3 23669 23670 23671\n\t\tf 3 -21349 -22032 22032\n\t\tmu 0 3 23672 23673 23674\n\t\tf 3 22033 22034 -22033\n\t\tmu 0 3 23675 23676 23677\n\t\tf 3 22035 -22030 22036\n\t\tmu 0 3 23678 23679 23680\n\t\tf 3 22037 22038 -22037\n\t\tmu 0 3 23681 23682 23683\n\t\tf 3 -22035 22039 22040\n\t\tmu 0 3 23684 23685 21605\n\t\tf 3 -20611 22041 22042\n\t\tmu 0 3 21611 23686 23687\n\t\tf 3 22043 22044 -22043\n\t\tmu 0 3 23688 23689 21611\n\t\tf 3 -22044 22045 22046\n\t\tmu 0 3 23690 23691 23692\n\t\tf 3 -22029 22047 -22047\n\t\tmu 0 3 23693 23694 23695\n\t\tf 3 -20614 22048 -22041\n\t\tmu 0 3 21605 21612 23696\n\t\tf 3 -21375 22049 22050\n\t\tmu 0 3 23697 23698 23699\n\t\tf 3 22051 22052 -22051\n\t\tmu 0 3 23700 23701 23702\n\t\tf 3 22053 -22050 -21395\n\t\tmu 0 3 23703 23704 23705\n\t\tf 3 -20633 22054 22055\n\t\tmu 0 3 21624 21623 23706\n\t\tf 3 -21354 22056 -22056\n\t\tmu 0 3 23707 23708 21624\n\t\tf 3 -22057 -21350 22057\n\t\tmu 0 3 21624 23709 23710\n\t\tf 3 -22049 -20637 -22058\n\t\tmu 0 3 23711 21625 21624\n\t\tf 3 -21358 -22055 22058\n\t\tmu 0 3 23712 23713 21623\n\t\tf 3 -20640 22059 -22059\n\t\tmu 0 3 21623 21626 23714\n\t\tf 3 -21362 -22060 22060\n\t\tmu 0 3 23715 23716 21626\n\t\tf 3 -20642 -21183 -22061\n\t\tmu 0 3 21626 21107 23717\n\t\tf 3 22061 22062 22063\n\t\tmu 0 3 23718 23719 23720\n\t\tf 3 -22064 22064 22065\n\t\tmu 0 3 23721 23722 23723\n\t\tf 3 22066 22067 -22065\n\t\tmu 0 3 23724 23725 23726\n\t\tf 3 22068 22069 -22067\n\t\tmu 0 3 23727 23728 23729\n\t\tf 3 22070 22071 -22069\n\t\tmu 0 3 23730 23731 23732\n\t\tf 3 22072 22073 -22070\n\t\tmu 0 3 23733 23734 23735\n\t\tf 3 22074 22075 -22068\n\t\tmu 0 3 23736 23737 23738\n\t\tf 3 22076 -22066 22077\n\t\tmu 0 3 23739 23740 23741\n\t\tf 3 -22078 22078 22079\n\t\tmu 0 3 23742 23743 23744\n\t\tf 3 22080 22081 22082\n\t\tmu 0 3 23745 23746 23747\n\t\tf 3 22083 -22083 22084\n\t\tmu 0 3 23748 23749 23750\n\t\tf 3 22085 -22085 22086\n\t\tmu 0 3 23751 23752 23753\n\t\tf 3 -22087 22087 22088\n\t\tmu 0 3 23754 23755 23756\n\t\tf 3 -22089 22089 22090\n\t\tmu 0 3 23757 23758 23759\n\t\tf 3 22091 -22091 22092\n\t\tmu 0 3 23760 23761 23762\n\t\tf 3 22093 -22086 22094\n\t\tmu 0 3 23763 23764 23765\n\t\tf 3 -21440 22095 22096\n\t\tmu 0 3 23766 23767 23768\n\t\tf 3 22097 22098 22099\n\t\tmu 0 3 23769 23770 23771\n\t\tf 3 -22098 22100 22101\n\t\tmu 0 3 23772 23773 23774\n\t\tf 3 22102 22103 -22102\n\t\tmu 0 3 23775 23776 23777\n\t\tf 3 -22103 22104 22105\n\t\tmu 0 3 23778 23779 23780\n\t\tf 3 22106 22107 -22106\n\t\tmu 0 3 23781 23782 23783\n\t\tf 3 -22107 22108 22109\n\t\tmu 0 3 23784 23785 23786\n\t\tf 3 22110 22111 -22110\n\t\tmu 0 3 23787 23788 23789\n\t\tf 3 -22111 22112 22113\n\t\tmu 0 3 23790 23791 23792\n\t\tf 3 22114 22115 -22114\n\t\tmu 0 3 23793 23794 23795\n\t\tf 3 22116 22117 22118\n\t\tmu 0 3 23796 23797 23798\n\t\tf 3 22119 22120 -22119\n\t\tmu 0 3 23799 23800 23801;\n\tsetAttr \".fc[11500:11999]\"\n\t\tf 3 -22120 22121 22122\n\t\tmu 0 3 23802 23803 23804\n\t\tf 3 -21442 -21437 22123\n\t\tmu 0 3 23805 23806 23807\n\t\tf 3 22124 -21443 -22095\n\t\tmu 0 3 23808 23809 23810\n\t\tf 3 22125 22126 22127\n\t\tmu 0 3 23811 23812 23813\n\t\tf 3 -22126 22128 22129\n\t\tmu 0 3 23814 23815 23816\n\t\tf 3 22130 22131 -22130\n\t\tmu 0 3 23817 23818 23819\n\t\tf 3 22132 22133 22134\n\t\tmu 0 3 23820 23821 23822\n\t\tf 3 22135 22136 -22135\n\t\tmu 0 3 23823 23824 23825\n\t\tf 3 -22136 22137 22138\n\t\tmu 0 3 23826 23827 23828\n\t\tf 3 22139 22140 -22139\n\t\tmu 0 3 23829 23830 23831\n\t\tf 3 -22140 22141 22142\n\t\tmu 0 3 23832 23833 23834\n\t\tf 3 22143 22144 -22143\n\t\tmu 0 3 23835 23836 23837\n\t\tf 3 22145 22146 22147\n\t\tmu 0 3 23838 23839 23840\n\t\tf 3 22148 22149 -22148\n\t\tmu 0 3 23841 23842 23843\n\t\tf 3 -22150 22150 22151\n\t\tmu 0 3 23844 23845 23846\n\t\tf 3 -22094 22152 22153\n\t\tmu 0 3 23847 23848 23849\n\t\tf 3 -22125 -22092 22154\n\t\tmu 0 3 23850 23851 23852\n\t\tf 3 22155 22156 -20953\n\t\tmu 0 3 23853 23854 23855\n\t\tf 3 -22156 -20956 -20963\n\t\tmu 0 3 23856 23857 21621\n\t\tf 3 22157 -21653 22158\n\t\tmu 0 3 23858 23859 23860\n\t\tf 3 -21329 -22158 22159\n\t\tmu 0 3 23861 23862 23863\n\t\tf 3 22160 22161 -22160\n\t\tmu 0 3 23864 23865 23866\n\t\tf 3 -22162 22162 22163\n\t\tmu 0 3 23867 23868 23869\n\t\tf 3 22164 -21327 -22164\n\t\tmu 0 3 23870 23871 23872\n\t\tf 3 22165 22166 22167\n\t\tmu 0 3 23873 23874 23875\n\t\tf 3 22168 22169 -22168\n\t\tmu 0 3 23876 23877 23878\n\t\tf 3 -22170 22170 22171\n\t\tmu 0 3 23879 23880 23881\n\t\tf 3 22172 22173 -22172\n\t\tmu 0 3 23882 23883 23884\n\t\tf 3 -22173 22174 22175\n\t\tmu 0 3 23885 23886 23887\n\t\tf 3 22176 -21340 -22176\n\t\tmu 0 3 23888 23889 23890\n\t\tf 3 -21336 -22177 22177\n\t\tmu 0 3 23891 23892 23893\n\t\tf 3 22178 22179 -22178\n\t\tmu 0 3 23894 23895 23896\n\t\tf 3 22180 -22180 22181\n\t\tmu 0 3 23897 23898 23899\n\t\tf 3 22182 22183 -22182\n\t\tmu 0 3 23900 23901 23902\n\t\tf 3 -22184 22184 22185\n\t\tmu 0 3 23903 23904 23905\n\t\tf 3 22186 -21020 -22186\n\t\tmu 0 3 23906 23907 23908\n\t\tf 3 -21012 -22187 22187\n\t\tmu 0 3 23909 23910 23911\n\t\tf 3 22188 22189 -22188\n\t\tmu 0 3 23912 23913 23914\n\t\tf 3 22190 22191 22192\n\t\tmu 0 3 23915 23916 23917\n\t\tf 3 22193 22194 -22193\n\t\tmu 0 3 23917 23918 23915\n\t\tf 3 22195 -22194 22196\n\t\tmu 0 3 23919 23918 23917\n\t\tf 3 22197 22198 -22197\n\t\tmu 0 3 23917 23920 23919\n\t\tf 3 22199 -22199 22200\n\t\tmu 0 3 23921 23919 23920\n\t\tf 3 22201 22202 -22201\n\t\tmu 0 3 23920 23922 23921\n\t\tf 3 -22200 22203 22204\n\t\tmu 0 3 23919 23921 23923\n\t\tf 3 22205 22206 -22205\n\t\tmu 0 3 23923 23924 23919\n\t\tf 3 -22196 -22207 22207\n\t\tmu 0 3 23918 23919 23924\n\t\tf 3 22208 22209 -22208\n\t\tmu 0 3 23924 23925 23918\n\t\tf 3 -22195 -22210 22210\n\t\tmu 0 3 23915 23918 23925\n\t\tf 3 22211 22212 -22211\n\t\tmu 0 3 23925 23926 23915\n\t\tf 3 -22212 22213 22214\n\t\tmu 0 3 23926 23925 23927\n\t\tf 3 22215 22216 -22215\n\t\tmu 0 3 23927 23928 23926\n\t\tf 3 22217 -22214 22218\n\t\tmu 0 3 23929 23927 23925\n\t\tf 3 -22209 22219 -22219\n\t\tmu 0 3 23925 23924 23929\n\t\tf 3 22220 -22220 22221\n\t\tmu 0 3 23930 23929 23924\n\t\tf 3 -22206 22222 -22222\n\t\tmu 0 3 23924 23923 23930\n\t\tf 3 -22221 22223 22224\n\t\tmu 0 3 23929 23930 23931\n\t\tf 3 22225 22226 -22225\n\t\tmu 0 3 23931 23932 23929\n\t\tf 3 -22218 -22227 22227\n\t\tmu 0 3 23927 23929 23932\n\t\tf 3 22228 22229 -22228\n\t\tmu 0 3 23932 23933 23927\n\t\tf 3 -22216 -22230 22230\n\t\tmu 0 3 23928 23927 23933\n\t\tf 3 22231 22232 -22231\n\t\tmu 0 3 23933 23934 23928\n\t\tf 3 -22232 22233 22234\n\t\tmu 0 3 23934 23933 23935\n\t\tf 3 22235 22236 -22235\n\t\tmu 0 3 23935 23936 23934\n\t\tf 3 22237 -22234 22238\n\t\tmu 0 3 23937 23935 23933\n\t\tf 3 -22229 22239 -22239\n\t\tmu 0 3 23933 23932 23937\n\t\tf 3 22240 -22240 22241\n\t\tmu 0 3 23938 23937 23932\n\t\tf 3 -22226 22242 -22242\n\t\tmu 0 3 23932 23931 23938\n\t\tf 3 -22241 22243 22244\n\t\tmu 0 3 23937 23938 23939\n\t\tf 3 22245 22246 -22245\n\t\tmu 0 3 23939 23940 23937\n\t\tf 3 -22238 -22247 22247\n\t\tmu 0 3 23935 23937 23940\n\t\tf 3 22248 22249 -22248\n\t\tmu 0 3 23940 23941 23935\n\t\tf 3 -22236 -22250 22250\n\t\tmu 0 3 23936 23935 23941\n\t\tf 3 22251 22252 -22251\n\t\tmu 0 3 23941 23942 23936\n\t\tf 3 -22252 22253 22254\n\t\tmu 0 3 23942 23941 23943\n\t\tf 3 22255 22256 -22255\n\t\tmu 0 3 23943 23944 23942\n\t\tf 3 22257 -22254 22258\n\t\tmu 0 3 23945 23943 23941\n\t\tf 3 -22249 22259 -22259\n\t\tmu 0 3 23941 23940 23945\n\t\tf 3 22260 -22260 22261\n\t\tmu 0 3 23946 23945 23940\n\t\tf 3 -22246 22262 -22262\n\t\tmu 0 3 23940 23939 23946\n\t\tf 3 -22261 22263 22264\n\t\tmu 0 3 23945 23946 23947\n\t\tf 3 22265 22266 -22265\n\t\tmu 0 3 23947 23948 23945\n\t\tf 3 -22258 -22267 22267\n\t\tmu 0 3 23943 23945 23948\n\t\tf 3 22268 22269 -22268\n\t\tmu 0 3 23948 23949 23943\n\t\tf 3 -22256 -22270 22270\n\t\tmu 0 3 23944 23943 23949\n\t\tf 3 22271 22272 -22271\n\t\tmu 0 3 23949 23950 23944\n\t\tf 3 22273 -22244 22274\n\t\tmu 0 3 23951 23939 23938\n\t\tf 3 22275 22276 -22275\n\t\tmu 0 3 23938 23952 23951\n\t\tf 3 -22276 -22243 22277\n\t\tmu 0 3 23952 23938 23931\n\t\tf 3 22278 22279 -22278\n\t\tmu 0 3 23931 23953 23952\n\t\tf 3 -22279 -22224 22280\n\t\tmu 0 3 23953 23931 23930\n\t\tf 3 22281 22282 -22281\n\t\tmu 0 3 23930 23954 23953\n\t\tf 3 -22282 -22223 22283\n\t\tmu 0 3 23954 23930 23923\n\t\tf 3 22284 22285 -22284\n\t\tmu 0 3 23923 23955 23954\n\t\tf 3 -22285 -22204 22286\n\t\tmu 0 3 23955 23923 23921\n\t\tf 3 22287 22288 -22287\n\t\tmu 0 3 23921 23956 23955\n\t\tf 3 -22288 -22203 22289\n\t\tmu 0 3 23956 23921 23922\n\t\tf 3 22290 22291 -22290\n\t\tmu 0 3 23922 23957 23956\n\t\tf 3 22292 -22292 22293\n\t\tmu 0 3 23958 23956 23957\n\t\tf 3 22294 22295 -22294\n\t\tmu 0 3 23957 23959 23958\n\t\tf 3 22296 -22296 22297\n\t\tmu 0 3 23960 23958 23959\n\t\tf 3 22298 22299 -22298\n\t\tmu 0 3 23959 23961 23960\n\t\tf 3 22300 -22300 22301\n\t\tmu 0 3 23962 23960 23961\n\t\tf 3 22302 22303 -22302\n\t\tmu 0 3 23961 23963 23962\n\t\tf 3 -22301 22304 22305\n\t\tmu 0 3 23960 23962 23964\n\t\tf 3 22306 22307 -22306\n\t\tmu 0 3 23964 23965 23960\n\t\tf 3 -22297 -22308 22308\n\t\tmu 0 3 23958 23960 23965\n\t\tf 3 22309 22310 -22309\n\t\tmu 0 3 23965 23966 23958\n\t\tf 3 -22293 -22311 22311\n\t\tmu 0 3 23956 23958 23966\n\t\tf 3 22312 -22289 -22312\n\t\tmu 0 3 23966 23955 23956\n\t\tf 3 22313 -22286 22314\n\t\tmu 0 3 23967 23954 23955\n\t\tf 3 -22313 22315 -22315\n\t\tmu 0 3 23955 23966 23967\n\t\tf 3 22316 -22316 22317\n\t\tmu 0 3 23968 23967 23966\n\t\tf 3 -22310 22318 -22318\n\t\tmu 0 3 23966 23965 23968\n\t\tf 3 22319 -22319 22320\n\t\tmu 0 3 23969 23968 23965\n\t\tf 3 -22307 22321 -22321\n\t\tmu 0 3 23965 23964 23969\n\t\tf 3 -22320 22322 22323\n\t\tmu 0 3 23968 23969 23970\n\t\tf 3 22324 22325 -22324\n\t\tmu 0 3 23970 23971 23968\n\t\tf 3 -22317 -22326 22326\n\t\tmu 0 3 23967 23968 23971\n\t\tf 3 22327 22328 -22327\n\t\tmu 0 3 23971 23972 23967\n\t\tf 3 -22314 -22329 22329\n\t\tmu 0 3 23954 23967 23972\n\t\tf 3 22330 -22283 -22330\n\t\tmu 0 3 23972 23953 23954\n\t\tf 3 -22331 22331 22332\n\t\tmu 0 3 23953 23972 23973\n\t\tf 3 22333 -22280 -22333\n\t\tmu 0 3 23973 23952 23953\n\t\tf 3 22334 -22332 22335\n\t\tmu 0 3 23974 23973 23972\n\t\tf 3 -22328 22336 -22336\n\t\tmu 0 3 23972 23971 23974\n\t\tf 3 22337 -22337 22338\n\t\tmu 0 3 23975 23974 23971\n\t\tf 3 -22325 22339 -22339\n\t\tmu 0 3 23971 23970 23975\n\t\tf 3 -22338 22340 22341\n\t\tmu 0 3 23974 23975 23976\n\t\tf 3 22342 22343 -22342\n\t\tmu 0 3 23976 23977 23974\n\t\tf 3 -22335 -22344 22344\n\t\tmu 0 3 23973 23974 23977\n\t\tf 3 22345 22346 -22345\n\t\tmu 0 3 23977 23978 23973\n\t\tf 3 -22334 -22347 22347\n\t\tmu 0 3 23952 23973 23978\n\t\tf 3 22348 -22277 -22348\n\t\tmu 0 3 23978 23951 23952\n\t\tf 3 -22349 22349 22350\n\t\tmu 0 3 23951 23978 23979\n\t\tf 3 22351 22352 -22351\n\t\tmu 0 3 23979 23980 23951\n\t\tf 3 -22274 -22353 22353\n\t\tmu 0 3 23939 23951 23980\n\t\tf 3 22354 -22263 -22354\n\t\tmu 0 3 23980 23946 23939\n\t\tf 3 22355 -22350 22356\n\t\tmu 0 3 23981 23979 23978\n\t\tf 3 -22346 22357 -22357\n\t\tmu 0 3 23978 23977 23981\n\t\tf 3 22358 -22358 22359\n\t\tmu 0 3 23982 23981 23977\n\t\tf 3 -22343 22360 -22360\n\t\tmu 0 3 23977 23976 23982\n\t\tf 3 -22359 22361 22362\n\t\tmu 0 3 23981 23982 23983\n\t\tf 3 22363 22364 -22363\n\t\tmu 0 3 23983 23984 23981\n\t\tf 3 -22356 -22365 22365\n\t\tmu 0 3 23979 23981 23984\n\t\tf 3 22366 22367 -22366\n\t\tmu 0 3 23984 23985 23979\n\t\tf 3 -22352 -22368 22368\n\t\tmu 0 3 23980 23979 23985\n\t\tf 3 22369 22370 -22369\n\t\tmu 0 3 23985 23986 23980\n\t\tf 3 -22355 -22371 22371\n\t\tmu 0 3 23946 23980 23986\n\t\tf 3 22372 -22264 -22372\n\t\tmu 0 3 23986 23947 23946\n\t\tf 3 -22373 22373 22374\n\t\tmu 0 3 23947 23986 23987\n\t\tf 3 22375 22376 -22375\n\t\tmu 0 3 23987 23988 23947\n\t\tf 3 22377 -22374 22378\n\t\tmu 0 3 23989 23987 23986\n\t\tf 3 -22370 22379 -22379\n\t\tmu 0 3 23986 23985 23989\n\t\tf 3 -22367 22380 22381\n\t\tmu 0 3 23985 23984 23990\n\t\tf 3 22382 -22380 -22382\n\t\tmu 0 3 23990 23991 23985\n\t\tf 3 -22364 22383 22384\n\t\tmu 0 3 23984 23983 23992\n\t\tf 3 22385 -22381 -22385\n\t\tmu 0 3 23992 23993 23984\n\t\tf 3 22386 -22362 22387\n\t\tmu 0 3 23994 23983 23982\n\t\tf 3 22388 22389 -22388\n\t\tmu 0 3 23982 23995 23994\n\t\tf 3 -22389 -22361 22390\n\t\tmu 0 3 23995 23982 23976\n\t\tf 3 22391 22392 -22391\n\t\tmu 0 3 23976 23996 23995\n\t\tf 3 -22392 -22341 22393\n\t\tmu 0 3 23996 23976 23975\n\t\tf 3 22394 22395 -22394\n\t\tmu 0 3 23975 23997 23996\n\t\tf 3 -22395 -22340 22396\n\t\tmu 0 3 23997 23975 23970\n\t\tf 3 22397 22398 -22397\n\t\tmu 0 3 23970 23998 23997\n\t\tf 3 -22398 -22323 22399\n\t\tmu 0 3 23998 23970 23969\n\t\tf 3 22400 22401 -22400\n\t\tmu 0 3 23969 23999 23998\n\t\tf 3 -22401 -22322 22402\n\t\tmu 0 3 23999 23969 23964\n\t\tf 3 22403 22404 -22403\n\t\tmu 0 3 23964 24000 23999\n\t\tf 3 -22404 -22305 22405\n\t\tmu 0 3 24000 23964 23962\n\t\tf 3 22406 22407 -22406\n\t\tmu 0 3 23962 24001 24000\n\t\tf 3 -22407 -22304 22408\n\t\tmu 0 3 24001 23962 23963\n\t\tf 3 22409 22410 -22409\n\t\tmu 0 3 23963 24002 24001\n\t\tf 3 22411 -22411 22412\n\t\tmu 0 3 24003 24001 24002\n\t\tf 3 22413 22414 -22413\n\t\tmu 0 3 24002 24004 24003\n\t\tf 3 22415 -22415 22416\n\t\tmu 0 3 24005 24003 24004\n\t\tf 3 22417 22418 -22417\n\t\tmu 0 3 24004 24006 24005\n\t\tf 3 22419 -22419 22420\n\t\tmu 0 3 24007 24005 24006\n\t\tf 3 22421 22422 -22421\n\t\tmu 0 3 24006 24008 24007\n\t\tf 3 -22420 22423 22424\n\t\tmu 0 3 24005 24007 24009\n\t\tf 3 22425 22426 -22425\n\t\tmu 0 3 24009 24010 24005\n\t\tf 3 -22416 -22427 22427\n\t\tmu 0 3 24003 24005 24010\n\t\tf 3 22428 22429 -22428\n\t\tmu 0 3 24010 24011 24003\n\t\tf 3 -22412 -22430 22430\n\t\tmu 0 3 24001 24003 24011\n\t\tf 3 22431 -22408 -22431\n\t\tmu 0 3 24011 24000 24001\n\t\tf 3 22432 -22405 22433\n\t\tmu 0 3 24012 23999 24000\n\t\tf 3 -22432 22434 -22434\n\t\tmu 0 3 24000 24011 24012\n\t\tf 3 22435 -22435 22436\n\t\tmu 0 3 24013 24012 24011\n\t\tf 3 -22429 22437 -22437\n\t\tmu 0 3 24011 24010 24013\n\t\tf 3 22438 -22438 22439\n\t\tmu 0 3 24014 24013 24010\n\t\tf 3 -22426 22440 -22440\n\t\tmu 0 3 24010 24009 24014\n\t\tf 3 -22439 22441 22442\n\t\tmu 0 3 24013 24014 24015\n\t\tf 3 22443 22444 -22443\n\t\tmu 0 3 24015 24016 24013\n\t\tf 3 -22436 -22445 22445\n\t\tmu 0 3 24012 24013 24016\n\t\tf 3 22446 22447 -22446\n\t\tmu 0 3 24016 24017 24012\n\t\tf 3 -22433 -22448 22448\n\t\tmu 0 3 23999 24012 24017\n\t\tf 3 22449 -22402 -22449\n\t\tmu 0 3 24017 23998 23999\n\t\tf 3 -22450 22450 22451\n\t\tmu 0 3 23998 24017 24018\n\t\tf 3 22452 -22399 -22452\n\t\tmu 0 3 24018 23997 23998\n\t\tf 3 22453 -22451 22454\n\t\tmu 0 3 24019 24018 24017\n\t\tf 3 -22447 22455 -22455\n\t\tmu 0 3 24017 24016 24019\n\t\tf 3 22456 -22456 22457\n\t\tmu 0 3 24020 24019 24016\n\t\tf 3 -22444 22458 -22458\n\t\tmu 0 3 24016 24015 24020\n\t\tf 3 -22457 22459 22460\n\t\tmu 0 3 24019 24020 24021\n\t\tf 3 22461 22462 -22461\n\t\tmu 0 3 24021 24022 24019\n\t\tf 3 -22454 -22463 22463\n\t\tmu 0 3 24018 24019 24022\n\t\tf 3 22464 22465 -22464\n\t\tmu 0 3 24022 24023 24018\n\t\tf 3 -22453 -22466 22466\n\t\tmu 0 3 23997 24018 24023\n\t\tf 3 22467 -22396 -22467\n\t\tmu 0 3 24023 23996 23997\n\t\tf 3 -22468 22468 22469\n\t\tmu 0 3 23996 24023 24024\n\t\tf 3 22470 -22393 -22470\n\t\tmu 0 3 24024 23995 23996\n\t\tf 3 22471 -22469 22472\n\t\tmu 0 3 24025 24024 24023\n\t\tf 3 -22465 22473 -22473\n\t\tmu 0 3 24023 24022 24025\n\t\tf 3 22474 -22474 22475\n\t\tmu 0 3 24026 24025 24022\n\t\tf 3 -22462 22476 -22476\n\t\tmu 0 3 24022 24021 24026\n\t\tf 3 -22475 22477 22478\n\t\tmu 0 3 24025 24026 24027\n\t\tf 3 22479 22480 -22479\n\t\tmu 0 3 24027 24028 24025\n\t\tf 3 -22472 -22481 22481\n\t\tmu 0 3 24024 24025 24028\n\t\tf 3 22482 22483 -22482\n\t\tmu 0 3 24028 24029 24024\n\t\tf 3 -22471 -22484 22484\n\t\tmu 0 3 23995 24024 24029\n\t\tf 3 22485 -22390 -22485\n\t\tmu 0 3 24029 23994 23995\n\t\tf 3 -22486 22486 22487\n\t\tmu 0 3 23994 24029 24030\n\t\tf 3 22488 22489 -22488\n\t\tmu 0 3 24030 24031 23994\n\t\tf 3 -22483 22490 22491\n\t\tmu 0 3 24029 24028 24032\n\t\tf 3 22492 -22487 -22492\n\t\tmu 0 3 24032 24033 24029\n\t\tf 3 -22480 22493 22494\n\t\tmu 0 3 24028 24027 24034\n\t\tf 3 22495 -22491 -22495\n\t\tmu 0 3 24034 24035 24028\n\t\tf 3 22496 -22478 22497\n\t\tmu 0 3 24036 24027 24026\n\t\tf 3 22498 22499 -22498\n\t\tmu 0 3 24026 24037 24036\n\t\tf 3 -22499 -22477 22500\n\t\tmu 0 3 24037 24026 24021\n\t\tf 3 22501 22502 -22501\n\t\tmu 0 3 24021 24038 24037\n\t\tf 3 -22502 -22460 22503\n\t\tmu 0 3 24038 24021 24020\n\t\tf 3 22504 22505 -22504\n\t\tmu 0 3 24020 24039 24038\n\t\tf 3 -22505 -22459 22506\n\t\tmu 0 3 24039 24020 24015\n\t\tf 3 22507 22508 -22507\n\t\tmu 0 3 24015 24040 24039\n\t\tf 3 -22508 -22442 22509\n\t\tmu 0 3 24040 24015 24014\n\t\tf 3 22510 22511 -22510\n\t\tmu 0 3 24014 24041 24040\n\t\tf 3 -22511 -22441 22512\n\t\tmu 0 3 24041 24014 24009\n\t\tf 3 22513 22514 -22513\n\t\tmu 0 3 24009 24042 24041\n\t\tf 3 -22514 -22424 22515\n\t\tmu 0 3 24042 24009 24007\n\t\tf 3 22516 22517 -22516\n\t\tmu 0 3 24007 24043 24042\n\t\tf 3 -22517 -22423 22518\n\t\tmu 0 3 24043 24007 24008\n\t\tf 3 22519 22520 -22519\n\t\tmu 0 3 24008 24044 24043\n\t\tf 3 22521 -22521 22522\n\t\tmu 0 3 24045 24043 24044\n\t\tf 3 22523 22524 -22523\n\t\tmu 0 3 24044 24046 24045\n\t\tf 3 22525 -22525 22526\n\t\tmu 0 3 24047 24045 24046\n\t\tf 3 22527 22528 -22527\n\t\tmu 0 3 24046 24048 24047\n\t\tf 3 22529 -22529 22530\n\t\tmu 0 3 24049 24047 24048\n\t\tf 3 22531 22532 -22531\n\t\tmu 0 3 24048 24050 24049\n\t\tf 3 -22530 22533 22534\n\t\tmu 0 3 24047 24049 24051\n\t\tf 3 22535 22536 -22535\n\t\tmu 0 3 24051 24052 24047\n\t\tf 3 -22526 -22537 22537\n\t\tmu 0 3 24045 24047 24052\n\t\tf 3 22538 22539 -22538\n\t\tmu 0 3 24052 24053 24045\n\t\tf 3 -22522 -22540 22540\n\t\tmu 0 3 24043 24045 24053\n\t\tf 3 22541 -22518 -22541\n\t\tmu 0 3 24053 24042 24043\n\t\tf 3 22542 -22515 22543\n\t\tmu 0 3 24054 24041 24042\n\t\tf 3 -22542 22544 -22544\n\t\tmu 0 3 24042 24053 24054\n\t\tf 3 22545 -22545 22546\n\t\tmu 0 3 24055 24054 24053\n\t\tf 3 -22539 22547 -22547\n\t\tmu 0 3 24053 24052 24055\n\t\tf 3 22548 -22548 22549\n\t\tmu 0 3 24056 24055 24052\n\t\tf 3 -22536 22550 -22550\n\t\tmu 0 3 24052 24051 24056\n\t\tf 3 -22549 22551 22552\n\t\tmu 0 3 24055 24056 24057\n\t\tf 3 22553 22554 -22553\n\t\tmu 0 3 24057 24058 24055\n\t\tf 3 -22546 -22555 22555\n\t\tmu 0 3 24054 24055 24058\n\t\tf 3 22556 22557 -22556\n\t\tmu 0 3 24058 24059 24054\n\t\tf 3 -22543 -22558 22558\n\t\tmu 0 3 24041 24054 24059\n\t\tf 3 22559 -22512 -22559\n\t\tmu 0 3 24059 24040 24041\n\t\tf 3 -22560 22560 22561\n\t\tmu 0 3 24040 24059 24060\n\t\tf 3 22562 -22509 -22562\n\t\tmu 0 3 24060 24039 24040\n\t\tf 3 22563 -22561 22564\n\t\tmu 0 3 24061 24060 24059\n\t\tf 3 -22557 22565 -22565\n\t\tmu 0 3 24059 24058 24061\n\t\tf 3 22566 -22566 22567\n\t\tmu 0 3 24062 24061 24058\n\t\tf 3 -22554 22568 -22568\n\t\tmu 0 3 24058 24057 24062\n\t\tf 3 -22567 22569 22570\n\t\tmu 0 3 24061 24062 24063\n\t\tf 3 22571 22572 -22571\n\t\tmu 0 3 24063 24064 24061\n\t\tf 3 -22564 -22573 22573\n\t\tmu 0 3 24060 24061 24064\n\t\tf 3 22574 22575 -22574\n\t\tmu 0 3 24064 24065 24060\n\t\tf 3 -22563 -22576 22576\n\t\tmu 0 3 24039 24060 24065\n\t\tf 3 22577 -22506 -22577\n\t\tmu 0 3 24065 24038 24039\n\t\tf 3 -22578 22578 22579\n\t\tmu 0 3 24038 24065 24066\n\t\tf 3 22580 -22503 -22580\n\t\tmu 0 3 24066 24037 24038\n\t\tf 3 22581 -22579 22582\n\t\tmu 0 3 24067 24066 24065\n\t\tf 3 -22575 22583 -22583\n\t\tmu 0 3 24065 24064 24067\n\t\tf 3 22584 -22584 22585\n\t\tmu 0 3 24068 24067 24064\n\t\tf 3 -22572 22586 -22586\n\t\tmu 0 3 24064 24063 24068\n\t\tf 3 -22585 22587 22588\n\t\tmu 0 3 24067 24068 24069\n\t\tf 3 22589 22590 -22589\n\t\tmu 0 3 24069 24070 24067\n\t\tf 3 -22582 -22591 22591\n\t\tmu 0 3 24066 24067 24070\n\t\tf 3 22592 22593 -22592\n\t\tmu 0 3 24070 24071 24066\n\t\tf 3 -22581 -22594 22594\n\t\tmu 0 3 24037 24066 24071\n\t\tf 3 22595 -22500 -22595\n\t\tmu 0 3 24071 24036 24037\n\t\tf 3 -22596 22596 22597\n\t\tmu 0 3 24036 24071 24072\n\t\tf 3 22598 22599 -22598\n\t\tmu 0 3 24072 24073 24036\n\t\tf 3 -22593 22600 22601\n\t\tmu 0 3 24071 24070 24074\n\t\tf 3 22602 -22597 -22602\n\t\tmu 0 3 24074 24075 24071\n\t\tf 3 -22590 22603 22604\n\t\tmu 0 3 24070 24069 24076\n\t\tf 3 22605 -22601 -22605\n\t\tmu 0 3 24076 24077 24070\n\t\tf 3 22606 -22588 22607\n\t\tmu 0 3 24078 24069 24068\n\t\tf 3 22608 22609 -22608\n\t\tmu 0 3 24068 24079 24078\n\t\tf 3 -22609 -22587 22610\n\t\tmu 0 3 24079 24068 24063\n\t\tf 3 22611 22612 -22611\n\t\tmu 0 3 24063 24080 24079\n\t\tf 3 -22612 -22570 22613\n\t\tmu 0 3 24080 24063 24062\n\t\tf 3 22614 22615 -22614\n\t\tmu 0 3 24062 24081 24080\n\t\tf 3 -22615 -22569 22616\n\t\tmu 0 3 24081 24062 24057\n\t\tf 3 22617 22618 -22617\n\t\tmu 0 3 24057 24082 24081\n\t\tf 3 -22618 -22552 22619\n\t\tmu 0 3 24082 24057 24056\n\t\tf 3 22620 22621 -22620\n\t\tmu 0 3 24056 24083 24082\n\t\tf 3 -22621 -22551 22622\n\t\tmu 0 3 24083 24056 24051\n\t\tf 3 22623 22624 -22623\n\t\tmu 0 3 24051 24084 24083\n\t\tf 3 -22624 -22534 22625\n\t\tmu 0 3 24084 24051 24049\n\t\tf 3 22626 22627 -22626\n\t\tmu 0 3 24049 24085 24084\n\t\tf 3 -22627 -22533 22628\n\t\tmu 0 3 24085 24049 24050\n\t\tf 3 22629 22630 -22629\n\t\tmu 0 3 24050 24086 24085\n\t\tf 3 22631 -22631 22632\n\t\tmu 0 3 24087 24085 24086\n\t\tf 3 22633 22634 -22633\n\t\tmu 0 3 24086 24088 24087\n\t\tf 3 22635 -22635 22636\n\t\tmu 0 3 24089 24087 24088\n\t\tf 3 22637 22638 -22637\n\t\tmu 0 3 24088 24090 24089\n\t\tf 3 22639 -22639 22640\n\t\tmu 0 3 24091 24089 24090\n\t\tf 3 22641 22642 -22641\n\t\tmu 0 3 24090 24092 24091\n\t\tf 3 -22640 22643 22644\n\t\tmu 0 3 24089 24091 24093\n\t\tf 3 22645 22646 -22645\n\t\tmu 0 3 24093 24094 24089\n\t\tf 3 -22636 -22647 22647\n\t\tmu 0 3 24087 24089 24094\n\t\tf 3 22648 22649 -22648\n\t\tmu 0 3 24094 24095 24087\n\t\tf 3 -22632 -22650 22650\n\t\tmu 0 3 24085 24087 24095\n\t\tf 3 22651 -22628 -22651\n\t\tmu 0 3 24095 24084 24085\n\t\tf 3 22652 -22625 22653\n\t\tmu 0 3 24096 24083 24084\n\t\tf 3 -22652 22654 -22654\n\t\tmu 0 3 24084 24095 24096\n\t\tf 3 22655 -22655 22656\n\t\tmu 0 3 24097 24096 24095\n\t\tf 3 -22649 22657 -22657\n\t\tmu 0 3 24095 24094 24097\n\t\tf 3 22658 -22658 22659\n\t\tmu 0 3 24098 24097 24094\n\t\tf 3 -22646 22660 -22660\n\t\tmu 0 3 24094 24093 24098\n\t\tf 3 -22659 22661 22662\n\t\tmu 0 3 24097 24098 24099\n\t\tf 3 22663 22664 -22663\n\t\tmu 0 3 24099 24100 24097\n\t\tf 3 -22656 -22665 22665\n\t\tmu 0 3 24096 24097 24100\n\t\tf 3 22666 22667 -22666\n\t\tmu 0 3 24100 24101 24096\n\t\tf 3 -22653 -22668 22668\n\t\tmu 0 3 24083 24096 24101\n\t\tf 3 22669 -22622 -22669\n\t\tmu 0 3 24101 24082 24083\n\t\tf 3 -22670 22670 22671\n\t\tmu 0 3 24082 24101 24102\n\t\tf 3 22672 -22619 -22672\n\t\tmu 0 3 24102 24081 24082\n\t\tf 3 22673 -22671 22674\n\t\tmu 0 3 24103 24102 24101\n\t\tf 3 -22667 22675 -22675\n\t\tmu 0 3 24101 24100 24103\n\t\tf 3 22676 -22676 22677\n\t\tmu 0 3 24104 24103 24100\n\t\tf 3 -22664 22678 -22678\n\t\tmu 0 3 24100 24099 24104\n\t\tf 3 -22677 22679 22680\n\t\tmu 0 3 24103 24104 24105\n\t\tf 3 22681 22682 -22681\n\t\tmu 0 3 24105 24106 24103\n\t\tf 3 -22674 -22683 22683\n\t\tmu 0 3 24102 24103 24106\n\t\tf 3 22684 22685 -22684\n\t\tmu 0 3 24106 24107 24102\n\t\tf 3 -22673 -22686 22686\n\t\tmu 0 3 24081 24102 24107\n\t\tf 3 22687 -22616 -22687\n\t\tmu 0 3 24107 24080 24081\n\t\tf 3 -22688 22688 22689\n\t\tmu 0 3 24080 24107 24108\n\t\tf 3 22690 -22613 -22690\n\t\tmu 0 3 24108 24079 24080\n\t\tf 3 22691 -22689 22692\n\t\tmu 0 3 24109 24108 24107\n\t\tf 3 -22685 22693 -22693\n\t\tmu 0 3 24107 24106 24109\n\t\tf 3 22694 -22694 22695\n\t\tmu 0 3 24110 24109 24106\n\t\tf 3 -22682 22696 -22696\n\t\tmu 0 3 24106 24105 24110\n\t\tf 3 -22695 22697 22698\n\t\tmu 0 3 24109 24110 24111\n\t\tf 3 22699 22700 -22699\n\t\tmu 0 3 24111 24112 24109\n\t\tf 3 -22692 -22701 22701\n\t\tmu 0 3 24108 24109 24112\n\t\tf 3 22702 22703 -22702\n\t\tmu 0 3 24112 24113 24108\n\t\tf 3 -22691 -22704 22704\n\t\tmu 0 3 24079 24108 24113\n\t\tf 3 22705 -22610 -22705\n\t\tmu 0 3 24113 24078 24079\n\t\tf 3 -22706 22706 22707\n\t\tmu 0 3 24078 24113 24114\n\t\tf 3 22708 22709 -22708\n\t\tmu 0 3 24114 24115 24078\n\t\tf 3 -22703 22710 22711\n\t\tmu 0 3 24113 24112 24116\n\t\tf 3 22712 -22707 -22712\n\t\tmu 0 3 24116 24117 24113\n\t\tf 3 -22700 22713 22714\n\t\tmu 0 3 24112 24111 24118\n\t\tf 3 22715 -22711 -22715\n\t\tmu 0 3 24118 24119 24112\n\t\tf 3 22716 -22698 22717\n\t\tmu 0 3 24120 24111 24110\n\t\tf 3 22718 22719 -22718\n\t\tmu 0 3 24110 24121 24120\n\t\tf 3 -22719 -22697 22720\n\t\tmu 0 3 24121 24110 24105\n\t\tf 3 22721 22722 -22721\n\t\tmu 0 3 24105 24122 24121\n\t\tf 3 -22722 -22680 22723\n\t\tmu 0 3 24122 24105 24104\n\t\tf 3 22724 22725 -22724\n\t\tmu 0 3 24104 24123 24122\n\t\tf 3 -22725 -22679 22726\n\t\tmu 0 3 24123 24104 24099\n\t\tf 3 22727 22728 -22727\n\t\tmu 0 3 24099 24124 24123\n\t\tf 3 -22728 -22662 22729\n\t\tmu 0 3 24124 24099 24098\n\t\tf 3 22730 22731 -22730\n\t\tmu 0 3 24098 24125 24124\n\t\tf 3 -22731 -22661 22732\n\t\tmu 0 3 24125 24098 24093\n\t\tf 3 22733 22734 -22733\n\t\tmu 0 3 24093 24126 24125\n\t\tf 3 -22734 -22644 22735\n\t\tmu 0 3 24126 24093 24091\n\t\tf 3 22736 22737 -22736\n\t\tmu 0 3 24091 24127 24126\n\t\tf 3 -22737 -22643 22738\n\t\tmu 0 3 24127 24091 24092\n\t\tf 3 22739 22740 -22739\n\t\tmu 0 3 24092 24128 24127\n\t\tf 3 22741 -22741 22742\n\t\tmu 0 3 24129 24127 24128\n\t\tf 3 22743 22744 -22743\n\t\tmu 0 3 24128 24130 24129\n\t\tf 3 22745 -22745 22746\n\t\tmu 0 3 24131 24129 24130\n\t\tf 3 22747 22748 -22747\n\t\tmu 0 3 24130 24132 24131\n\t\tf 3 22749 -22749 22750\n\t\tmu 0 3 24133 24131 24132\n\t\tf 3 22751 22752 -22751\n\t\tmu 0 3 24132 24134 24133\n\t\tf 3 -22750 22753 22754\n\t\tmu 0 3 24131 24133 24135\n\t\tf 3 22755 22756 -22755\n\t\tmu 0 3 24135 24136 24131\n\t\tf 3 -22746 -22757 22757\n\t\tmu 0 3 24129 24131 24136\n\t\tf 3 22758 22759 -22758\n\t\tmu 0 3 24136 24137 24129\n\t\tf 3 -22742 -22760 22760\n\t\tmu 0 3 24127 24129 24137\n\t\tf 3 22761 -22738 -22761\n\t\tmu 0 3 24137 24126 24127\n\t\tf 3 22762 -22735 22763\n\t\tmu 0 3 24138 24125 24126\n\t\tf 3 -22762 22764 -22764\n\t\tmu 0 3 24126 24137 24138\n\t\tf 3 22765 -22765 22766\n\t\tmu 0 3 24139 24138 24137\n\t\tf 3 -22759 22767 -22767\n\t\tmu 0 3 24137 24136 24139\n\t\tf 3 -22756 22768 22769\n\t\tmu 0 3 24136 24135 24140\n\t\tf 3 22770 -22768 -22770\n\t\tmu 0 3 24140 24139 24136\n\t\tf 3 -22771 22771 22772\n\t\tmu 0 3 24139 24140 24141\n\t\tf 3 22773 22774 -22773\n\t\tmu 0 3 24141 24142 24139\n\t\tf 3 -22766 -22775 22775\n\t\tmu 0 3 24138 24139 24142\n\t\tf 3 22776 22777 -22776\n\t\tmu 0 3 24142 24143 24138\n\t\tf 3 -22763 -22778 22778\n\t\tmu 0 3 24125 24138 24143\n\t\tf 3 22779 -22732 -22779\n\t\tmu 0 3 24143 24124 24125\n\t\tf 3 -22780 22780 22781\n\t\tmu 0 3 24124 24143 24144\n\t\tf 3 22782 -22729 -22782\n\t\tmu 0 3 24144 24123 24124\n\t\tf 3 22783 -22781 22784\n\t\tmu 0 3 24145 24144 24143\n\t\tf 3 -22777 22785 -22785\n\t\tmu 0 3 24143 24142 24145\n\t\tf 3 -22774 22786 22787\n\t\tmu 0 3 24142 24141 24146\n\t\tf 3 22788 -22786 -22788\n\t\tmu 0 3 24146 24145 24142\n\t\tf 3 -22789 22789 22790\n\t\tmu 0 3 24145 24146 24147\n\t\tf 3 22791 22792 -22791\n\t\tmu 0 3 24147 24148 24145\n\t\tf 3 -22784 -22793 22793\n\t\tmu 0 3 24144 24145 24148\n\t\tf 3 22794 22795 -22794\n\t\tmu 0 3 24148 24149 24144\n\t\tf 3 -22783 -22796 22796\n\t\tmu 0 3 24123 24144 24149\n\t\tf 3 22797 -22726 -22797\n\t\tmu 0 3 24149 24122 24123\n\t\tf 3 -22798 22798 22799\n\t\tmu 0 3 24122 24149 24150\n\t\tf 3 22800 -22723 -22800\n\t\tmu 0 3 24150 24121 24122\n\t\tf 3 22801 -22799 22802\n\t\tmu 0 3 24151 24150 24149\n\t\tf 3 -22795 22803 -22803\n\t\tmu 0 3 24149 24148 24151\n\t\tf 3 -22792 22804 22805\n\t\tmu 0 3 24148 24147 24152\n\t\tf 3 22806 -22804 -22806\n\t\tmu 0 3 24152 24151 24148\n\t\tf 3 -22807 22807 22808\n\t\tmu 0 3 24151 24152 24153\n\t\tf 3 22809 22810 -22809\n\t\tmu 0 3 24153 24154 24151\n\t\tf 3 -22802 -22811 22811\n\t\tmu 0 3 24150 24151 24154\n\t\tf 3 22812 22813 -22812\n\t\tmu 0 3 24154 24155 24150\n\t\tf 3 -22801 -22814 22814\n\t\tmu 0 3 24121 24150 24155\n\t\tf 3 22815 -22720 -22815\n\t\tmu 0 3 24155 24120 24121\n\t\tf 3 -22816 22816 22817\n\t\tmu 0 3 24120 24155 24156\n\t\tf 3 22818 22819 -22818\n\t\tmu 0 3 24156 24157 24120\n\t\tf 3 -22813 22820 22821\n\t\tmu 0 3 24155 24154 24158\n\t\tf 3 22822 -22817 -22822\n\t\tmu 0 3 24158 24159 24155\n\t\tf 3 22823 -22805 22824\n\t\tmu 0 3 24160 24152 24147\n\t\tf 3 -22808 -22824 22825\n\t\tmu 0 3 24153 24152 24160\n\t\tf 3 22826 22827 -22825\n\t\tmu 0 3 24147 24161 24160\n\t\tf 3 22828 -22827 22829\n\t\tmu 0 3 24162 24161 24147\n\t\tf 3 22830 -22829 22831\n\t\tmu 0 3 24163 24161 24162\n\t\tf 3 22832 22833 -22832\n\t\tmu 0 3 24162 24164 24163\n\t\tf 3 -22833 22834 22835\n\t\tmu 0 3 24164 24162 24165\n\t\tf 3 22836 -22835 22837\n\t\tmu 0 3 24141 24165 24162\n\t\tf 3 22838 -22837 22839\n\t\tmu 0 3 24166 24165 24141\n\t\tf 3 22840 -22839 22841\n\t\tmu 0 3 24167 24165 24166\n\t\tf 3 -22841 22842 -22836\n\t\tmu 0 3 24165 24167 24164\n\t\tf 3 22843 22844 -22842\n\t\tmu 0 3 24166 24168 24167\n\t\tf 3 -22844 22845 22846\n\t\tmu 0 3 24168 24166 24169\n\t\tf 3 22847 -22846 22848\n\t\tmu 0 3 24135 24169 24166\n\t\tf 3 22849 -22848 22850\n\t\tmu 0 3 24170 24169 24135\n\t\tf 3 22851 -22850 22852\n\t\tmu 0 3 24171 24169 24170\n\t\tf 3 -22852 22853 -22847\n\t\tmu 0 3 24169 24171 24168\n\t\tf 3 22854 22855 -22853\n\t\tmu 0 3 24170 24172 24171\n\t\tf 3 -22855 22856 22857\n\t\tmu 0 3 24172 24170 24173\n\t\tf 3 22858 -22857 22859\n\t\tmu 0 3 24134 24173 24170\n\t\tf 3 22860 -22753 -22860\n\t\tmu 0 3 24170 24133 24134\n\t\tf 3 -22754 -22861 -22851\n\t\tmu 0 3 24135 24133 24170\n\t\tf 3 22861 22862 -22858\n\t\tmu 0 3 24173 24174 24172\n\t\tf 3 22863 -22769 -22849\n\t\tmu 0 3 24166 24140 24135\n\t\tf 3 -22772 -22864 -22840\n\t\tmu 0 3 24141 24140 24166\n\t\tf 3 -22862 22864 22865\n\t\tmu 0 3 24174 24173 24175\n\t\tf 3 22866 22867 -22866\n\t\tmu 0 3 24175 24176 24174\n\t\tf 3 -22867 22868 22869\n\t\tmu 0 3 24176 24175 24177\n\t\tf 3 22870 -22869 22871\n\t\tmu 0 3 24178 24177 24175\n\t\tf 3 22872 -22871 22873\n\t\tmu 0 3 24179 24177 24178\n\t\tf 3 22874 -22873 22875\n\t\tmu 0 3 24180 24177 24179\n\t\tf 3 -22875 22876 -22870\n\t\tmu 0 3 24177 24180 24176\n\t\tf 3 22877 22878 -22876\n\t\tmu 0 3 24179 24181 24180\n\t\tf 3 -22878 22879 22880\n\t\tmu 0 3 24181 24179 24182\n\t\tf 3 22881 -22880 22882\n\t\tmu 0 3 24183 24182 24179\n\t\tf 3 22883 -22882 22884\n\t\tmu 0 3 24184 24182 24183\n\t\tf 3 22885 -22884 22886\n\t\tmu 0 3 24185 24182 24184\n\t\tf 3 -22886 22887 -22881\n\t\tmu 0 3 24182 24185 24181\n\t\tf 3 22888 22889 -22887\n\t\tmu 0 3 24184 24186 24185\n\t\tf 3 -22889 22890 22891\n\t\tmu 0 3 24186 24184 24187\n\t\tf 3 22892 -22891 22893\n\t\tmu 0 3 24188 24187 24184\n\t\tf 3 22894 -22893 22895\n\t\tmu 0 3 24189 24187 24188\n\t\tf 3 22896 -22895 22897\n\t\tmu 0 3 24190 24187 24189\n\t\tf 3 -22897 22898 -22892\n\t\tmu 0 3 24187 24190 24186\n\t\tf 3 22899 22900 -22898\n\t\tmu 0 3 24189 24191 24190\n\t\tf 3 22901 22902 -22896\n\t\tmu 0 3 24188 24192 24189\n\t\tf 3 22903 -22902 22904\n\t\tmu 0 3 24193 24192 24188\n\t\tf 3 22905 22906 -22905\n\t\tmu 0 3 24188 24194 24193\n\t\tf 3 -22823 -22907 22907\n\t\tmu 0 3 24195 24193 24194\n\t\tf 3 22908 22909 -22908\n\t\tmu 0 3 24194 24196 24195\n\t\tf 3 -22819 -22910 22910\n\t\tmu 0 3 24197 24195 24196\n\t\tf 3 22911 22912 -22911\n\t\tmu 0 3 24196 24198 24197\n\t\tf 3 22913 -22913 22914\n\t\tmu 0 3 24199 24197 24198\n\t\tf 3 22915 22916 -22915\n\t\tmu 0 3 24198 24200 24199\n\t\tf 3 -22716 -22917 22917\n\t\tmu 0 3 24201 24199 24200\n\t\tf 3 22918 22919 -22918\n\t\tmu 0 3 24200 24202 24201\n\t\tf 3 -22713 -22920 22920\n\t\tmu 0 3 24203 24201 24202\n\t\tf 3 22921 22922 -22921\n\t\tmu 0 3 24202 24204 24203\n\t\tf 3 -22709 -22923 22923\n\t\tmu 0 3 24205 24203 24204\n\t\tf 3 22924 22925 -22924\n\t\tmu 0 3 24204 24206 24205\n\t\tf 3 22926 -22926 22927\n\t\tmu 0 3 24207 24205 24206\n\t\tf 3 22928 22929 -22928\n\t\tmu 0 3 24206 24208 24207\n\t\tf 3 -22606 -22930 22930\n\t\tmu 0 3 24209 24207 24208\n\t\tf 3 22931 22932 -22931\n\t\tmu 0 3 24208 24210 24209;\n\tsetAttr \".fc[12000:12499]\"\n\t\tf 3 -22603 -22933 22933\n\t\tmu 0 3 24211 24209 24210\n\t\tf 3 22934 22935 -22934\n\t\tmu 0 3 24210 24212 24211\n\t\tf 3 -22599 -22936 22936\n\t\tmu 0 3 24213 24211 24212\n\t\tf 3 22937 22938 -22937\n\t\tmu 0 3 24212 24214 24213\n\t\tf 3 22939 -22939 22940\n\t\tmu 0 3 24215 24213 24214\n\t\tf 3 22941 22942 -22941\n\t\tmu 0 3 24214 24216 24215\n\t\tf 3 -22496 -22943 22943\n\t\tmu 0 3 24217 24215 24216\n\t\tf 3 22944 22945 -22944\n\t\tmu 0 3 24216 24218 24217\n\t\tf 3 -22493 -22946 22946\n\t\tmu 0 3 24219 24217 24218\n\t\tf 3 22947 22948 -22947\n\t\tmu 0 3 24218 24220 24219\n\t\tf 3 -22489 -22949 22949\n\t\tmu 0 3 24221 24219 24220\n\t\tf 3 22950 22951 -22950\n\t\tmu 0 3 24220 24222 24221\n\t\tf 3 22952 -22952 22953\n\t\tmu 0 3 24223 24221 24222\n\t\tf 3 22954 22955 -22954\n\t\tmu 0 3 24222 24224 24223\n\t\tf 3 -22386 -22956 22956\n\t\tmu 0 3 24225 24223 24224\n\t\tf 3 22957 22958 -22957\n\t\tmu 0 3 24224 24226 24225\n\t\tf 3 -22383 -22959 22959\n\t\tmu 0 3 24227 24225 24226\n\t\tf 3 22960 22961 -22960\n\t\tmu 0 3 24226 24228 24227\n\t\tf 3 -22378 -22962 22962\n\t\tmu 0 3 24229 24227 24228\n\t\tf 3 22963 22964 -22963\n\t\tmu 0 3 24228 24230 24229\n\t\tf 3 -22376 -22965 22965\n\t\tmu 0 3 24231 24229 24230\n\t\tf 3 22966 22967 -22966\n\t\tmu 0 3 24230 24232 24231\n\t\tf 3 22968 -22968 22969\n\t\tmu 0 3 24233 24231 24232\n\t\tf 3 -22969 22970 22971\n\t\tmu 0 3 24231 24233 24234\n\t\tf 3 -22269 -22971 22972\n\t\tmu 0 3 24235 24234 24233\n\t\tf 3 22973 22974 -22973\n\t\tmu 0 3 24233 24236 24235\n\t\tf 3 -22266 -22377 -22972\n\t\tmu 0 3 24234 24237 24231\n\t\tf 3 22975 22976 -22970\n\t\tmu 0 3 24232 24238 24233\n\t\tf 3 -22974 -22977 22977\n\t\tmu 0 3 24236 24233 24238\n\t\tf 3 22978 22979 -22978\n\t\tmu 0 3 24238 24239 24236\n\t\tf 3 22980 -22980 22981\n\t\tmu 0 3 24240 24236 24239\n\t\tf 3 22982 22983 -22982\n\t\tmu 0 3 24239 24241 24240\n\t\tf 3 -22983 22984 22985\n\t\tmu 0 3 24241 24239 24242\n\t\tf 3 22986 22987 -22986\n\t\tmu 0 3 24242 24243 24241\n\t\tf 3 22988 -22985 22989\n\t\tmu 0 3 24244 24242 24239\n\t\tf 3 -22979 22990 -22990\n\t\tmu 0 3 24239 24238 24244\n\t\tf 3 22991 -22991 22992\n\t\tmu 0 3 24245 24244 24238\n\t\tf 3 -22976 22993 -22993\n\t\tmu 0 3 24238 24232 24245\n\t\tf 3 -22992 22994 22995\n\t\tmu 0 3 24244 24245 24246\n\t\tf 3 22996 22997 -22996\n\t\tmu 0 3 24246 24247 24244\n\t\tf 3 -22989 -22998 22998\n\t\tmu 0 3 24242 24244 24247\n\t\tf 3 22999 23000 -22999\n\t\tmu 0 3 24247 24248 24242\n\t\tf 3 -22987 -23001 23001\n\t\tmu 0 3 24243 24242 24248\n\t\tf 3 23002 23003 -23002\n\t\tmu 0 3 24248 24249 24243\n\t\tf 3 -23003 23004 23005\n\t\tmu 0 3 24249 24248 24250\n\t\tf 3 23006 23007 -23006\n\t\tmu 0 3 24250 24251 24249\n\t\tf 3 23008 -23005 23009\n\t\tmu 0 3 24252 24250 24248\n\t\tf 3 -23000 23010 -23010\n\t\tmu 0 3 24248 24247 24252\n\t\tf 3 23011 -23011 23012\n\t\tmu 0 3 24253 24252 24247\n\t\tf 3 -22997 23013 -23013\n\t\tmu 0 3 24247 24246 24253\n\t\tf 3 -23012 23014 23015\n\t\tmu 0 3 24252 24253 24254\n\t\tf 3 23016 23017 -23016\n\t\tmu 0 3 24254 24255 24252\n\t\tf 3 -23009 -23018 23018\n\t\tmu 0 3 24250 24252 24255\n\t\tf 3 23019 23020 -23019\n\t\tmu 0 3 24255 24256 24250\n\t\tf 3 -23007 -23021 23021\n\t\tmu 0 3 24251 24250 24256\n\t\tf 3 23022 23023 -23022\n\t\tmu 0 3 24256 24257 24251\n\t\tf 3 -23023 23024 23025\n\t\tmu 0 3 24257 24256 24258\n\t\tf 3 23026 23027 -23026\n\t\tmu 0 3 24258 24259 24257\n\t\tf 3 23028 -23025 23029\n\t\tmu 0 3 24260 24258 24256\n\t\tf 3 -23020 23030 -23030\n\t\tmu 0 3 24256 24255 24260\n\t\tf 3 23031 -23031 23032\n\t\tmu 0 3 24261 24260 24255\n\t\tf 3 -23017 23033 -23033\n\t\tmu 0 3 24255 24254 24261\n\t\tf 3 -23032 23034 23035\n\t\tmu 0 3 24260 24261 23922\n\t\tf 3 -22202 23036 -23036\n\t\tmu 0 3 23922 23920 24260\n\t\tf 3 -23029 -23037 23037\n\t\tmu 0 3 24258 24260 23920\n\t\tf 3 -22198 23038 -23038\n\t\tmu 0 3 23920 23917 24258\n\t\tf 3 -23027 -23039 23039\n\t\tmu 0 3 24259 24258 23917\n\t\tf 3 -22192 23040 -23040\n\t\tmu 0 3 23917 23916 24259\n\t\tf 3 23041 -23015 23042\n\t\tmu 0 3 24262 24254 24253\n\t\tf 3 23043 23044 -23043\n\t\tmu 0 3 24253 24263 24262\n\t\tf 3 -23044 -23014 23045\n\t\tmu 0 3 24263 24253 24246\n\t\tf 3 23046 23047 -23046\n\t\tmu 0 3 24246 24264 24263\n\t\tf 3 -23047 -22995 23048\n\t\tmu 0 3 24264 24246 24245\n\t\tf 3 23049 23050 -23049\n\t\tmu 0 3 24245 24265 24264\n\t\tf 3 -23050 -22994 23051\n\t\tmu 0 3 24265 24245 24232\n\t\tf 3 -22967 23052 -23052\n\t\tmu 0 3 24232 24230 24265\n\t\tf 3 23053 -23053 23054\n\t\tmu 0 3 24266 24265 24230\n\t\tf 3 -22964 23055 -23055\n\t\tmu 0 3 24230 24228 24266\n\t\tf 3 23056 -23056 23057\n\t\tmu 0 3 24267 24266 24228\n\t\tf 3 -22961 23058 -23058\n\t\tmu 0 3 24228 24226 24267\n\t\tf 3 23059 -23059 23060\n\t\tmu 0 3 24268 24267 24226\n\t\tf 3 -22958 23061 -23061\n\t\tmu 0 3 24226 24224 24268\n\t\tf 3 -23060 23062 23063\n\t\tmu 0 3 24267 24268 24269\n\t\tf 3 23064 23065 -23064\n\t\tmu 0 3 24269 24270 24267\n\t\tf 3 -23057 -23066 23066\n\t\tmu 0 3 24266 24267 24270\n\t\tf 3 23067 23068 -23067\n\t\tmu 0 3 24270 24271 24266\n\t\tf 3 -23054 -23069 23069\n\t\tmu 0 3 24265 24266 24271\n\t\tf 3 23070 -23051 -23070\n\t\tmu 0 3 24271 24264 24265\n\t\tf 3 23071 -23048 23072\n\t\tmu 0 3 24272 24263 24264\n\t\tf 3 -23071 23073 -23073\n\t\tmu 0 3 24264 24271 24272\n\t\tf 3 23074 -23074 23075\n\t\tmu 0 3 24273 24272 24271\n\t\tf 3 -23068 23076 -23076\n\t\tmu 0 3 24271 24270 24273\n\t\tf 3 23077 -23077 23078\n\t\tmu 0 3 24274 24273 24270\n\t\tf 3 -23065 23079 -23079\n\t\tmu 0 3 24270 24269 24274\n\t\tf 3 -23078 23080 23081\n\t\tmu 0 3 24273 24274 24275\n\t\tf 3 23082 23083 -23082\n\t\tmu 0 3 24275 24276 24273\n\t\tf 3 -23075 -23084 23084\n\t\tmu 0 3 24272 24273 24276\n\t\tf 3 23085 23086 -23085\n\t\tmu 0 3 24276 24277 24272\n\t\tf 3 -23072 -23087 23087\n\t\tmu 0 3 24263 24272 24277\n\t\tf 3 23088 -23045 -23088\n\t\tmu 0 3 24277 24262 24263\n\t\tf 3 -23089 23089 23090\n\t\tmu 0 3 24262 24277 24278\n\t\tf 3 23091 23092 -23091\n\t\tmu 0 3 24278 24279 24262\n\t\tf 3 -23042 -23093 23093\n\t\tmu 0 3 24254 24262 24279\n\t\tf 3 23094 -23034 -23094\n\t\tmu 0 3 24279 24261 24254\n\t\tf 3 23095 -23090 23096\n\t\tmu 0 3 24280 24278 24277\n\t\tf 3 -23086 23097 -23097\n\t\tmu 0 3 24277 24276 24280\n\t\tf 3 23098 -23098 23099\n\t\tmu 0 3 24281 24280 24276\n\t\tf 3 -23083 23100 -23100\n\t\tmu 0 3 24276 24275 24281\n\t\tf 3 -23099 23101 23102\n\t\tmu 0 3 24280 24281 23963\n\t\tf 3 -22303 23103 -23103\n\t\tmu 0 3 23963 23961 24280\n\t\tf 3 -23096 -23104 23104\n\t\tmu 0 3 24278 24280 23961\n\t\tf 3 -22299 23105 -23105\n\t\tmu 0 3 23961 23959 24278\n\t\tf 3 -23092 -23106 23106\n\t\tmu 0 3 24279 24278 23959\n\t\tf 3 -22295 23107 -23107\n\t\tmu 0 3 23959 23957 24279\n\t\tf 3 -23095 -23108 23108\n\t\tmu 0 3 24261 24279 23957\n\t\tf 3 -22291 -23035 -23109\n\t\tmu 0 3 23957 23922 24261\n\t\tf 3 23109 -23081 23110\n\t\tmu 0 3 24282 24275 24274\n\t\tf 3 23111 23112 -23111\n\t\tmu 0 3 24274 24283 24282\n\t\tf 3 -23112 -23080 23113\n\t\tmu 0 3 24283 24274 24269\n\t\tf 3 23114 23115 -23114\n\t\tmu 0 3 24269 24284 24283\n\t\tf 3 -23115 -23063 23116\n\t\tmu 0 3 24284 24269 24268\n\t\tf 3 23117 23118 -23117\n\t\tmu 0 3 24268 24285 24284\n\t\tf 3 -23118 -23062 23119\n\t\tmu 0 3 24285 24268 24224\n\t\tf 3 -22955 23120 -23120\n\t\tmu 0 3 24224 24222 24285\n\t\tf 3 23121 -23121 23122\n\t\tmu 0 3 24286 24285 24222\n\t\tf 3 -22951 23123 -23123\n\t\tmu 0 3 24222 24220 24286\n\t\tf 3 23124 -23124 23125\n\t\tmu 0 3 24287 24286 24220\n\t\tf 3 -22948 23126 -23126\n\t\tmu 0 3 24220 24218 24287\n\t\tf 3 23127 -23127 23128\n\t\tmu 0 3 24288 24287 24218\n\t\tf 3 -22945 23129 -23129\n\t\tmu 0 3 24218 24216 24288\n\t\tf 3 -23128 23130 23131\n\t\tmu 0 3 24287 24288 24289\n\t\tf 3 23132 23133 -23132\n\t\tmu 0 3 24289 24290 24287\n\t\tf 3 -23125 -23134 23134\n\t\tmu 0 3 24286 24287 24290\n\t\tf 3 23135 23136 -23135\n\t\tmu 0 3 24290 24291 24286\n\t\tf 3 -23122 -23137 23137\n\t\tmu 0 3 24285 24286 24291\n\t\tf 3 23138 -23119 -23138\n\t\tmu 0 3 24291 24284 24285\n\t\tf 3 23139 -23116 23140\n\t\tmu 0 3 24292 24283 24284\n\t\tf 3 -23139 23141 -23141\n\t\tmu 0 3 24284 24291 24292\n\t\tf 3 23142 -23142 23143\n\t\tmu 0 3 24293 24292 24291\n\t\tf 3 -23136 23144 -23144\n\t\tmu 0 3 24291 24290 24293\n\t\tf 3 23145 -23145 23146\n\t\tmu 0 3 24294 24293 24290\n\t\tf 3 -23133 23147 -23147\n\t\tmu 0 3 24290 24289 24294\n\t\tf 3 -23146 23148 23149\n\t\tmu 0 3 24293 24294 24295\n\t\tf 3 23150 23151 -23150\n\t\tmu 0 3 24295 24296 24293\n\t\tf 3 -23143 -23152 23152\n\t\tmu 0 3 24292 24293 24296\n\t\tf 3 23153 23154 -23153\n\t\tmu 0 3 24296 24297 24292\n\t\tf 3 -23140 -23155 23155\n\t\tmu 0 3 24283 24292 24297\n\t\tf 3 23156 -23113 -23156\n\t\tmu 0 3 24297 24282 24283\n\t\tf 3 -23157 23157 23158\n\t\tmu 0 3 24282 24297 24298\n\t\tf 3 23159 23160 -23159\n\t\tmu 0 3 24298 24299 24282\n\t\tf 3 -23110 -23161 23161\n\t\tmu 0 3 24275 24282 24299\n\t\tf 3 23162 -23101 -23162\n\t\tmu 0 3 24299 24281 24275\n\t\tf 3 23163 -23158 23164\n\t\tmu 0 3 24300 24298 24297\n\t\tf 3 -23154 23165 -23165\n\t\tmu 0 3 24297 24296 24300\n\t\tf 3 23166 -23166 23167\n\t\tmu 0 3 24301 24300 24296\n\t\tf 3 -23151 23168 -23168\n\t\tmu 0 3 24296 24295 24301\n\t\tf 3 -23167 23169 23170\n\t\tmu 0 3 24300 24301 24008\n\t\tf 3 -22422 23171 -23171\n\t\tmu 0 3 24008 24006 24300\n\t\tf 3 -23164 -23172 23172\n\t\tmu 0 3 24298 24300 24006\n\t\tf 3 -22418 23173 -23173\n\t\tmu 0 3 24006 24004 24298\n\t\tf 3 -23160 -23174 23174\n\t\tmu 0 3 24299 24298 24004\n\t\tf 3 -22414 23175 -23175\n\t\tmu 0 3 24004 24002 24299\n\t\tf 3 -23163 -23176 23176\n\t\tmu 0 3 24281 24299 24002\n\t\tf 3 -22410 -23102 -23177\n\t\tmu 0 3 24002 23963 24281\n\t\tf 3 23177 -23149 23178\n\t\tmu 0 3 24302 24295 24294\n\t\tf 3 23179 23180 -23179\n\t\tmu 0 3 24294 24303 24302\n\t\tf 3 -23180 -23148 23181\n\t\tmu 0 3 24303 24294 24289\n\t\tf 3 23182 23183 -23182\n\t\tmu 0 3 24289 24304 24303\n\t\tf 3 -23183 -23131 23184\n\t\tmu 0 3 24304 24289 24288\n\t\tf 3 23185 23186 -23185\n\t\tmu 0 3 24288 24305 24304\n\t\tf 3 -23186 -23130 23187\n\t\tmu 0 3 24305 24288 24216\n\t\tf 3 -22942 23188 -23188\n\t\tmu 0 3 24216 24214 24305\n\t\tf 3 23189 -23189 23190\n\t\tmu 0 3 24306 24305 24214\n\t\tf 3 -22938 23191 -23191\n\t\tmu 0 3 24214 24212 24306\n\t\tf 3 23192 -23192 23193\n\t\tmu 0 3 24307 24306 24212\n\t\tf 3 -22935 23194 -23194\n\t\tmu 0 3 24212 24210 24307\n\t\tf 3 23195 -23195 23196\n\t\tmu 0 3 24308 24307 24210\n\t\tf 3 -22932 23197 -23197\n\t\tmu 0 3 24210 24208 24308\n\t\tf 3 -23196 23198 23199\n\t\tmu 0 3 24307 24308 24309\n\t\tf 3 23200 23201 -23200\n\t\tmu 0 3 24309 24310 24307\n\t\tf 3 -23193 -23202 23202\n\t\tmu 0 3 24306 24307 24310\n\t\tf 3 23203 23204 -23203\n\t\tmu 0 3 24310 24311 24306\n\t\tf 3 -23190 -23205 23205\n\t\tmu 0 3 24305 24306 24311\n\t\tf 3 23206 -23187 -23206\n\t\tmu 0 3 24311 24304 24305\n\t\tf 3 23207 -23184 23208\n\t\tmu 0 3 24312 24303 24304\n\t\tf 3 -23207 23209 -23209\n\t\tmu 0 3 24304 24311 24312\n\t\tf 3 23210 -23210 23211\n\t\tmu 0 3 24313 24312 24311\n\t\tf 3 -23204 23212 -23212\n\t\tmu 0 3 24311 24310 24313\n\t\tf 3 23213 -23213 23214\n\t\tmu 0 3 24314 24313 24310\n\t\tf 3 -23201 23215 -23215\n\t\tmu 0 3 24310 24309 24314\n\t\tf 3 -23214 23216 23217\n\t\tmu 0 3 24313 24314 24315\n\t\tf 3 23218 23219 -23218\n\t\tmu 0 3 24315 24316 24313\n\t\tf 3 -23211 -23220 23220\n\t\tmu 0 3 24312 24313 24316\n\t\tf 3 23221 23222 -23221\n\t\tmu 0 3 24316 24317 24312\n\t\tf 3 -23208 -23223 23223\n\t\tmu 0 3 24303 24312 24317\n\t\tf 3 23224 -23181 -23224\n\t\tmu 0 3 24317 24302 24303\n\t\tf 3 -23225 23225 23226\n\t\tmu 0 3 24302 24317 24318\n\t\tf 3 23227 23228 -23227\n\t\tmu 0 3 24318 24319 24302\n\t\tf 3 -23178 -23229 23229\n\t\tmu 0 3 24295 24302 24319\n\t\tf 3 23230 -23169 -23230\n\t\tmu 0 3 24319 24301 24295\n\t\tf 3 23231 -23226 23232\n\t\tmu 0 3 24320 24318 24317\n\t\tf 3 -23222 23233 -23233\n\t\tmu 0 3 24317 24316 24320\n\t\tf 3 23234 -23234 23235\n\t\tmu 0 3 24321 24320 24316\n\t\tf 3 -23219 23236 -23236\n\t\tmu 0 3 24316 24315 24321\n\t\tf 3 -23235 23237 23238\n\t\tmu 0 3 24320 24321 24050\n\t\tf 3 -22532 23239 -23239\n\t\tmu 0 3 24050 24048 24320\n\t\tf 3 -23232 -23240 23240\n\t\tmu 0 3 24318 24320 24048\n\t\tf 3 -22528 23241 -23241\n\t\tmu 0 3 24048 24046 24318\n\t\tf 3 -23228 -23242 23242\n\t\tmu 0 3 24319 24318 24046\n\t\tf 3 -22524 23243 -23243\n\t\tmu 0 3 24046 24044 24319\n\t\tf 3 -23231 -23244 23244\n\t\tmu 0 3 24301 24319 24044\n\t\tf 3 -22520 -23170 -23245\n\t\tmu 0 3 24044 24008 24301\n\t\tf 3 23245 -23217 23246\n\t\tmu 0 3 24322 24315 24314\n\t\tf 3 23247 23248 -23247\n\t\tmu 0 3 24314 24323 24322\n\t\tf 3 -23248 -23216 23249\n\t\tmu 0 3 24323 24314 24309\n\t\tf 3 23250 23251 -23250\n\t\tmu 0 3 24309 24324 24323\n\t\tf 3 -23251 -23199 23252\n\t\tmu 0 3 24324 24309 24308\n\t\tf 3 23253 23254 -23253\n\t\tmu 0 3 24308 24325 24324\n\t\tf 3 -23254 -23198 23255\n\t\tmu 0 3 24325 24308 24208\n\t\tf 3 -22929 23256 -23256\n\t\tmu 0 3 24208 24206 24325\n\t\tf 3 23257 -23257 23258\n\t\tmu 0 3 24326 24325 24206\n\t\tf 3 -22925 23259 -23259\n\t\tmu 0 3 24206 24204 24326\n\t\tf 3 23260 -23260 23261\n\t\tmu 0 3 24327 24326 24204\n\t\tf 3 -22922 23262 -23262\n\t\tmu 0 3 24204 24202 24327\n\t\tf 3 23263 -23263 23264\n\t\tmu 0 3 24328 24327 24202\n\t\tf 3 -22919 23265 -23265\n\t\tmu 0 3 24202 24200 24328\n\t\tf 3 -23264 23266 23267\n\t\tmu 0 3 24327 24328 24329\n\t\tf 3 23268 23269 -23268\n\t\tmu 0 3 24329 24330 24327\n\t\tf 3 -23261 -23270 23270\n\t\tmu 0 3 24326 24327 24330\n\t\tf 3 23271 23272 -23271\n\t\tmu 0 3 24330 24331 24326\n\t\tf 3 -23258 -23273 23273\n\t\tmu 0 3 24325 24326 24331\n\t\tf 3 23274 -23255 -23274\n\t\tmu 0 3 24331 24324 24325\n\t\tf 3 23275 -23252 23276\n\t\tmu 0 3 24332 24323 24324\n\t\tf 3 -23275 23277 -23277\n\t\tmu 0 3 24324 24331 24332\n\t\tf 3 23278 -23278 23279\n\t\tmu 0 3 24333 24332 24331\n\t\tf 3 -23272 23280 -23280\n\t\tmu 0 3 24331 24330 24333\n\t\tf 3 23281 -23281 23282\n\t\tmu 0 3 24334 24333 24330\n\t\tf 3 -23269 23283 -23283\n\t\tmu 0 3 24330 24329 24334\n\t\tf 3 -23282 23284 23285\n\t\tmu 0 3 24333 24334 24335\n\t\tf 3 23286 23287 -23286\n\t\tmu 0 3 24335 24336 24333\n\t\tf 3 -23279 -23288 23288\n\t\tmu 0 3 24332 24333 24336\n\t\tf 3 23289 23290 -23289\n\t\tmu 0 3 24336 24337 24332\n\t\tf 3 -23276 -23291 23291\n\t\tmu 0 3 24323 24332 24337\n\t\tf 3 23292 -23249 -23292\n\t\tmu 0 3 24337 24322 24323\n\t\tf 3 -23293 23293 23294\n\t\tmu 0 3 24322 24337 24338\n\t\tf 3 23295 23296 -23295\n\t\tmu 0 3 24338 24339 24322\n\t\tf 3 -23246 -23297 23297\n\t\tmu 0 3 24315 24322 24339\n\t\tf 3 23298 -23237 -23298\n\t\tmu 0 3 24339 24321 24315\n\t\tf 3 23299 -23294 23300\n\t\tmu 0 3 24340 24338 24337\n\t\tf 3 -23290 23301 -23301\n\t\tmu 0 3 24337 24336 24340\n\t\tf 3 23302 -23302 23303\n\t\tmu 0 3 24341 24340 24336\n\t\tf 3 -23287 23304 -23304\n\t\tmu 0 3 24336 24335 24341\n\t\tf 3 -23303 23305 23306\n\t\tmu 0 3 24340 24341 24092\n\t\tf 3 -22642 23307 -23307\n\t\tmu 0 3 24092 24090 24340\n\t\tf 3 -23300 -23308 23308\n\t\tmu 0 3 24338 24340 24090\n\t\tf 3 -22638 23309 -23309\n\t\tmu 0 3 24090 24088 24338\n\t\tf 3 -23296 -23310 23310\n\t\tmu 0 3 24339 24338 24088\n\t\tf 3 -22634 23311 -23311\n\t\tmu 0 3 24088 24086 24339\n\t\tf 3 -23299 -23312 23312\n\t\tmu 0 3 24321 24339 24086\n\t\tf 3 -22630 -23238 -23313\n\t\tmu 0 3 24086 24050 24321\n\t\tf 3 23313 -23285 23314\n\t\tmu 0 3 24342 24335 24334\n\t\tf 3 23315 23316 -23315\n\t\tmu 0 3 24334 24343 24342\n\t\tf 3 -23316 -23284 23317\n\t\tmu 0 3 24343 24334 24329\n\t\tf 3 23318 23319 -23318\n\t\tmu 0 3 24329 24344 24343\n\t\tf 3 -23319 -23267 23320\n\t\tmu 0 3 24344 24329 24328\n\t\tf 3 23321 23322 -23321\n\t\tmu 0 3 24328 24345 24344\n\t\tf 3 -23322 -23266 23323\n\t\tmu 0 3 24345 24328 24200\n\t\tf 3 -22916 23324 -23324\n\t\tmu 0 3 24200 24198 24345\n\t\tf 3 23325 -23325 23326\n\t\tmu 0 3 24346 24345 24198\n\t\tf 3 -22912 23327 -23327\n\t\tmu 0 3 24198 24196 24346\n\t\tf 3 23328 -23328 23329\n\t\tmu 0 3 24347 24346 24196\n\t\tf 3 -22909 23330 -23330\n\t\tmu 0 3 24196 24194 24347\n\t\tf 3 23331 -23331 23332\n\t\tmu 0 3 24348 24347 24194\n\t\tf 3 -22906 23333 -23333\n\t\tmu 0 3 24194 24188 24348\n\t\tf 3 -23332 23334 23335\n\t\tmu 0 3 24347 24348 24183\n\t\tf 3 23336 23337 -23336\n\t\tmu 0 3 24183 24349 24347\n\t\tf 3 -23329 -23338 23338\n\t\tmu 0 3 24346 24347 24349\n\t\tf 3 23339 23340 -23339\n\t\tmu 0 3 24349 24350 24346\n\t\tf 3 -23326 -23341 23341\n\t\tmu 0 3 24345 24346 24350\n\t\tf 3 23342 -23323 -23342\n\t\tmu 0 3 24350 24344 24345\n\t\tf 3 23343 -23320 23344\n\t\tmu 0 3 24351 24343 24344\n\t\tf 3 -23343 23345 -23345\n\t\tmu 0 3 24344 24350 24351\n\t\tf 3 23346 -23346 23347\n\t\tmu 0 3 24352 24351 24350\n\t\tf 3 -23340 23348 -23348\n\t\tmu 0 3 24350 24349 24352\n\t\tf 3 -23337 23349 23350\n\t\tmu 0 3 24349 24183 24353\n\t\tf 3 23351 -23349 -23351\n\t\tmu 0 3 24353 24352 24349\n\t\tf 3 -23352 23352 23353\n\t\tmu 0 3 24352 24353 24178\n\t\tf 3 23354 23355 -23354\n\t\tmu 0 3 24178 24354 24352\n\t\tf 3 -23347 -23356 23356\n\t\tmu 0 3 24351 24352 24354\n\t\tf 3 23357 23358 -23357\n\t\tmu 0 3 24354 24355 24351\n\t\tf 3 -23344 -23359 23359\n\t\tmu 0 3 24343 24351 24355\n\t\tf 3 23360 -23317 -23360\n\t\tmu 0 3 24355 24342 24343\n\t\tf 3 -23361 23361 23362\n\t\tmu 0 3 24342 24355 24356\n\t\tf 3 23363 23364 -23363\n\t\tmu 0 3 24356 24357 24342\n\t\tf 3 -23314 -23365 23365\n\t\tmu 0 3 24335 24342 24357\n\t\tf 3 23366 -23305 -23366\n\t\tmu 0 3 24357 24341 24335\n\t\tf 3 23367 -23362 23368\n\t\tmu 0 3 24358 24356 24355\n\t\tf 3 -23358 23369 -23369\n\t\tmu 0 3 24355 24354 24358\n\t\tf 3 -23355 23370 23371\n\t\tmu 0 3 24354 24178 24359\n\t\tf 3 23372 -23370 -23372\n\t\tmu 0 3 24359 24358 24354\n\t\tf 3 -23373 23373 23374\n\t\tmu 0 3 24358 24359 24134\n\t\tf 3 -22752 23375 -23375\n\t\tmu 0 3 24134 24132 24358\n\t\tf 3 -23368 -23376 23376\n\t\tmu 0 3 24356 24358 24132\n\t\tf 3 -22748 23377 -23377\n\t\tmu 0 3 24132 24130 24356\n\t\tf 3 -23364 -23378 23378\n\t\tmu 0 3 24357 24356 24130\n\t\tf 3 -22744 23379 -23379\n\t\tmu 0 3 24130 24128 24357\n\t\tf 3 -23367 -23380 23380\n\t\tmu 0 3 24341 24357 24128\n\t\tf 3 -22740 -23306 -23381\n\t\tmu 0 3 24128 24092 24341\n\t\tf 3 -23353 23381 -22874\n\t\tmu 0 3 24178 24353 24179\n\t\tf 3 -23382 -23350 -22883\n\t\tmu 0 3 24179 24353 24183\n\t\tf 3 -22859 -23374 23382\n\t\tmu 0 3 24173 24134 24359\n\t\tf 3 23383 -22865 -23383\n\t\tmu 0 3 24359 24175 24173\n\t\tf 3 -23384 -23371 -22872\n\t\tmu 0 3 24175 24359 24178\n\t\tf 3 -23335 23384 -22885\n\t\tmu 0 3 24183 24348 24184\n\t\tf 3 -23385 -23334 -22894\n\t\tmu 0 3 24184 24348 24188\n\t\tf 3 -22272 -22975 23385\n\t\tmu 0 3 24360 24235 24236\n\t\tf 3 -22981 23386 -23386\n\t\tmu 0 3 24236 24361 24360\n\t\tf 3 -22953 -22384 23387\n\t\tmu 0 3 24362 24363 23983\n\t\tf 3 -22387 -22490 -23388\n\t\tmu 0 3 23983 23994 24362\n\t\tf 3 -22940 -22494 23388\n\t\tmu 0 3 24364 24365 24027\n\t\tf 3 -22497 -22600 -23389\n\t\tmu 0 3 24027 24036 24364\n\t\tf 3 -22927 -22604 23389\n\t\tmu 0 3 24366 24367 24069\n\t\tf 3 -22607 -22710 -23390\n\t\tmu 0 3 24069 24078 24366\n\t\tf 3 -22914 -22714 23390\n\t\tmu 0 3 24368 24369 24111\n\t\tf 3 -22717 -22820 -23391\n\t\tmu 0 3 24111 24120 24368\n\t\tf 3 -22810 23391 23392\n\t\tmu 0 3 24154 24370 24371\n\t\tf 3 -22904 -22821 -23393\n\t\tmu 0 3 24371 24372 24154\n\t\tf 3 23393 -22787 -22838\n\t\tmu 0 3 24162 24146 24141\n\t\tf 3 -22790 -23394 -22830\n\t\tmu 0 3 24147 24146 24162\n\t\tf 3 23394 -22828 23395\n\t\tmu 0 3 24373 24160 24161\n\t\tf 3 -22831 23396 -23396\n\t\tmu 0 3 24161 24163 24373\n\t\tf 3 -23395 23397 23398\n\t\tmu 0 3 24160 24373 24374\n\t\tf 3 23399 23400 -23399\n\t\tmu 0 3 24374 24375 24160\n\t\tf 3 -23401 23401 -22826\n\t\tmu 0 3 24160 24375 24153\n\t\tf 3 -23402 23402 23403\n\t\tmu 0 3 24153 24375 24376\n\t\tf 3 -22903 -23392 -23404\n\t\tmu 0 3 24376 24377 24153\n\t\tf 3 -23400 23404 23405\n\t\tmu 0 3 24375 24374 24378\n\t\tf 3 -22900 -23403 -23406\n\t\tmu 0 3 24378 24379 24375\n\t\tf 3 23406 23407 23408\n\t\tmu 0 3 24380 24381 24382\n\t\tf 3 23409 23410 -23409\n\t\tmu 0 3 24382 24383 24380\n\t\tf 3 23411 -23411 23412\n\t\tmu 0 3 24384 24380 24383\n\t\tf 3 23413 23414 -23413\n\t\tmu 0 3 24383 24385 24384\n\t\tf 3 -23415 23415 23416\n\t\tmu 0 3 24384 24385 23916\n\t\tf 3 -22191 23417 -23417\n\t\tmu 0 3 23916 23915 24384\n\t\tf 3 -23418 -22213 23418\n\t\tmu 0 3 24384 23915 23926\n\t\tf 3 23419 23420 -23419\n\t\tmu 0 3 23926 24386 24384\n\t\tf 3 -23412 -23421 23421\n\t\tmu 0 3 24380 24384 24386\n\t\tf 3 23422 23423 -23422\n\t\tmu 0 3 24386 24387 24380\n\t\tf 3 -23407 -23424 23424\n\t\tmu 0 3 24381 24380 24387\n\t\tf 3 23425 23426 -23425\n\t\tmu 0 3 24387 24388 24381\n\t\tf 3 -23426 23427 23428\n\t\tmu 0 3 24388 24387 24389\n\t\tf 3 23429 23430 -23429\n\t\tmu 0 3 24389 24390 24388\n\t\tf 3 23431 -23428 23432\n\t\tmu 0 3 24391 24389 24387\n\t\tf 3 -23423 23433 -23433\n\t\tmu 0 3 24387 24386 24391\n\t\tf 3 -23420 -22217 23434\n\t\tmu 0 3 24386 23926 23928\n\t\tf 3 23435 -23434 -23435\n\t\tmu 0 3 23928 24391 24386\n\t\tf 3 -23436 -22233 23436\n\t\tmu 0 3 24391 23928 23934\n\t\tf 3 23437 23438 -23437\n\t\tmu 0 3 23934 24392 24391\n\t\tf 3 -23432 -23439 23439\n\t\tmu 0 3 24389 24391 24392\n\t\tf 3 23440 23441 -23440\n\t\tmu 0 3 24392 24393 24389\n\t\tf 3 -23430 -23442 23442\n\t\tmu 0 3 24390 24389 24393\n\t\tf 3 23443 23444 -23443\n\t\tmu 0 3 24393 24394 24390\n\t\tf 3 -23444 23445 23446\n\t\tmu 0 3 24394 24393 24395\n\t\tf 3 23447 23448 -23447\n\t\tmu 0 3 24395 24396 24394\n\t\tf 3 23449 -23446 23450\n\t\tmu 0 3 24397 24395 24393\n\t\tf 3 -23441 23451 -23451\n\t\tmu 0 3 24393 24392 24397\n\t\tf 3 -23438 -22237 23452\n\t\tmu 0 3 24392 23934 23936\n\t\tf 3 23453 -23452 -23453\n\t\tmu 0 3 23936 24397 24392\n\t\tf 3 -23454 -22253 23454\n\t\tmu 0 3 24397 23936 23942\n\t\tf 3 23455 23456 -23455\n\t\tmu 0 3 23942 24398 24397\n\t\tf 3 -23450 -23457 23457\n\t\tmu 0 3 24395 24397 24398\n\t\tf 3 23458 23459 -23458\n\t\tmu 0 3 24398 24399 24395\n\t\tf 3 -23448 -23460 23460\n\t\tmu 0 3 24396 24395 24399\n\t\tf 3 23461 23462 -23461\n\t\tmu 0 3 24399 24400 24396\n\t\tf 3 -23462 23463 23464\n\t\tmu 0 3 24400 24399 24401\n\t\tf 3 23465 23466 -23465\n\t\tmu 0 3 24401 24402 24400\n\t\tf 3 23467 -23464 23468\n\t\tmu 0 3 24403 24401 24399\n\t\tf 3 -23459 23469 -23469\n\t\tmu 0 3 24399 24398 24403\n\t\tf 3 -23456 -22257 23470\n\t\tmu 0 3 24398 23942 23944\n\t\tf 3 23471 -23470 -23471\n\t\tmu 0 3 23944 24403 24398\n\t\tf 3 -23472 -22273 23472\n\t\tmu 0 3 24403 23944 23950\n\t\tf 3 23473 23474 -23473\n\t\tmu 0 3 23950 24404 24403\n\t\tf 3 -23468 -23475 23475\n\t\tmu 0 3 24401 24403 24404\n\t\tf 3 23476 23477 -23476\n\t\tmu 0 3 24404 24405 24401\n\t\tf 3 -23466 -23478 23478\n\t\tmu 0 3 24402 24401 24405\n\t\tf 3 23479 23480 -23479\n\t\tmu 0 3 24405 24406 24402\n\t\tf 3 23481 23482 23483\n\t\tmu 0 3 24407 24408 24409\n\t\tf 3 -23480 23484 -23484\n\t\tmu 0 3 24409 24410 24407\n\t\tf 3 -23482 23485 23486\n\t\tmu 0 3 24408 24407 24411\n\t\tf 3 23487 -23486 23488\n\t\tmu 0 3 24412 24411 24407\n\t\tf 3 23489 23490 -23489\n\t\tmu 0 3 24407 24413 24412\n\t\tf 3 -23490 -23485 23491\n\t\tmu 0 3 24413 24407 24414\n\t\tf 3 -23477 23492 -23492\n\t\tmu 0 3 24414 24415 24413\n\t\tf 3 23493 -23491 23494\n\t\tmu 0 3 24241 24412 24413\n\t\tf 3 23495 -22984 -23495\n\t\tmu 0 3 24413 24240 24241\n\t\tf 3 23496 23497 -23487\n\t\tmu 0 3 24411 24416 24408\n\t\tf 3 -23497 23498 23499\n\t\tmu 0 3 24416 24411 24417\n\t\tf 3 23500 23501 -23500\n\t\tmu 0 3 24417 24418 24416\n\t\tf 3 23502 -23499 23503\n\t\tmu 0 3 24419 24417 24411\n\t\tf 3 -23488 23504 -23504\n\t\tmu 0 3 24411 24412 24419\n\t\tf 3 -23494 -22988 23505\n\t\tmu 0 3 24412 24241 24243\n\t\tf 3 23506 -23505 -23506\n\t\tmu 0 3 24243 24419 24412\n\t\tf 3 -23507 -23004 23507\n\t\tmu 0 3 24419 24243 24249\n\t\tf 3 23508 23509 -23508\n\t\tmu 0 3 24249 24420 24419\n\t\tf 3 -23503 -23510 23510\n\t\tmu 0 3 24417 24419 24420\n\t\tf 3 23511 23512 -23511\n\t\tmu 0 3 24420 24421 24417\n\t\tf 3 -23501 -23513 23513\n\t\tmu 0 3 24418 24417 24421\n\t\tf 3 23514 23515 -23514\n\t\tmu 0 3 24421 24422 24418\n\t\tf 3 -23515 23516 23517\n\t\tmu 0 3 24422 24421 24423\n\t\tf 3 23518 23519 -23518\n\t\tmu 0 3 24423 24424 24422\n\t\tf 3 23520 -23517 23521\n\t\tmu 0 3 24425 24423 24421\n\t\tf 3 -23512 23522 -23522\n\t\tmu 0 3 24421 24420 24425\n\t\tf 3 -23509 -23008 23523\n\t\tmu 0 3 24420 24249 24251\n\t\tf 3 23524 -23523 -23524\n\t\tmu 0 3 24251 24425 24420\n\t\tf 3 -23525 -23024 23525\n\t\tmu 0 3 24425 24251 24257\n\t\tf 3 23526 23527 -23526\n\t\tmu 0 3 24257 24426 24425\n\t\tf 3 -23521 -23528 23528\n\t\tmu 0 3 24423 24425 24426\n\t\tf 3 23529 23530 -23529\n\t\tmu 0 3 24426 24427 24423\n\t\tf 3 -23519 -23531 23531\n\t\tmu 0 3 24424 24423 24427\n\t\tf 3 23532 23533 -23532\n\t\tmu 0 3 24427 24428 24424\n\t\tf 3 -23533 23534 23535\n\t\tmu 0 3 24428 24427 24429\n\t\tf 3 23536 23537 -23536\n\t\tmu 0 3 24429 24430 24428\n\t\tf 3 23538 -23535 23539\n\t\tmu 0 3 24431 24429 24427\n\t\tf 3 -23530 23540 -23540\n\t\tmu 0 3 24427 24426 24431\n\t\tf 3 -23527 -23028 23541\n\t\tmu 0 3 24426 24257 24259\n\t\tf 3 23542 -23541 -23542\n\t\tmu 0 3 24259 24431 24426\n\t\tf 3 -23543 -23041 23543\n\t\tmu 0 3 24431 24259 23916\n\t\tf 3 -23416 23544 -23544\n\t\tmu 0 3 23916 24385 24431\n\t\tf 3 -23539 -23545 23545\n\t\tmu 0 3 24429 24431 24385\n\t\tf 3 -23414 23546 -23546\n\t\tmu 0 3 24385 24383 24429\n\t\tf 3 -23537 -23547 23547\n\t\tmu 0 3 24430 24429 24383\n\t\tf 3 -23410 23548 -23548\n\t\tmu 0 3 24383 24382 24430\n\t\tf 3 -23474 -23387 23549\n\t\tmu 0 3 24432 24433 24240\n\t\tf 3 -23496 -23493 -23550\n\t\tmu 0 3 24240 24434 24432\n\t\tf 3 23550 23551 23552\n\t\tmu 0 3 24435 24436 24437\n\t\tf 3 23553 23554 -23553\n\t\tmu 0 3 24437 24438 24435\n\t\tf 3 23555 -23554 23556\n\t\tmu 0 3 24439 24438 24437\n\t\tf 3 23557 23558 -23557\n\t\tmu 0 3 24437 24440 24439\n\t\tf 3 23559 -23559 23560\n\t\tmu 0 3 24441 24439 24440\n\t\tf 3 23561 23562 -23561\n\t\tmu 0 3 24440 24442 24441\n\t\tf 3 -23560 23563 23564\n\t\tmu 0 3 24439 24441 24443\n\t\tf 3 23565 23566 -23565\n\t\tmu 0 3 24443 24444 24439\n\t\tf 3 -23556 -23567 23567\n\t\tmu 0 3 24438 24439 24444\n\t\tf 3 23568 23569 -23568\n\t\tmu 0 3 24444 24445 24438\n\t\tf 3 -23555 -23570 23570\n\t\tmu 0 3 24435 24438 24445\n\t\tf 3 23571 23572 -23571\n\t\tmu 0 3 24445 24446 24435\n\t\tf 3 -23572 23573 23574\n\t\tmu 0 3 24446 24445 24447\n\t\tf 3 23575 23576 -23575\n\t\tmu 0 3 24447 24448 24446\n\t\tf 3 23577 -23574 23578\n\t\tmu 0 3 24449 24447 24445\n\t\tf 3 -23569 23579 -23579\n\t\tmu 0 3 24445 24444 24449\n\t\tf 3 23580 -23580 23581\n\t\tmu 0 3 24450 24449 24444\n\t\tf 3 -23566 23582 -23582\n\t\tmu 0 3 24444 24443 24450\n\t\tf 3 -23581 23583 23584\n\t\tmu 0 3 24449 24450 24451\n\t\tf 3 23585 23586 -23585\n\t\tmu 0 3 24451 24452 24449\n\t\tf 3 -23578 -23587 23587\n\t\tmu 0 3 24447 24449 24452\n\t\tf 3 23588 23589 -23588\n\t\tmu 0 3 24452 24453 24447\n\t\tf 3 -23576 -23590 23590\n\t\tmu 0 3 24448 24447 24453\n\t\tf 3 23591 23592 -23591\n\t\tmu 0 3 24453 24454 24448\n\t\tf 3 -23592 23593 23594\n\t\tmu 0 3 24454 24453 24455\n\t\tf 3 23595 23596 -23595\n\t\tmu 0 3 24455 24456 24454\n\t\tf 3 23597 -23594 23598\n\t\tmu 0 3 24457 24455 24453\n\t\tf 3 -23589 23599 -23599\n\t\tmu 0 3 24453 24452 24457\n\t\tf 3 23600 -23600 23601\n\t\tmu 0 3 24458 24457 24452\n\t\tf 3 -23586 23602 -23602\n\t\tmu 0 3 24452 24451 24458\n\t\tf 3 -23601 23603 23604\n\t\tmu 0 3 24457 24458 24459\n\t\tf 3 23605 23606 -23605\n\t\tmu 0 3 24459 24460 24457\n\t\tf 3 -23598 -23607 23607\n\t\tmu 0 3 24455 24457 24460\n\t\tf 3 23608 23609 -23608\n\t\tmu 0 3 24460 24461 24455\n\t\tf 3 -23596 -23610 23610\n\t\tmu 0 3 24456 24455 24461\n\t\tf 3 23611 23612 -23611\n\t\tmu 0 3 24461 24462 24456\n\t\tf 3 -23612 23613 23614\n\t\tmu 0 3 24462 24461 24463\n\t\tf 3 23615 23616 -23615\n\t\tmu 0 3 24463 24464 24462\n\t\tf 3 23617 -23614 23618\n\t\tmu 0 3 24465 24463 24461\n\t\tf 3 -23609 23619 -23619\n\t\tmu 0 3 24461 24460 24465\n\t\tf 3 23620 -23620 23621\n\t\tmu 0 3 24466 24465 24460\n\t\tf 3 -23606 23622 -23622\n\t\tmu 0 3 24460 24459 24466\n\t\tf 3 -23621 23623 23624\n\t\tmu 0 3 24465 24466 24467\n\t\tf 3 23625 23626 -23625\n\t\tmu 0 3 24467 24468 24465\n\t\tf 3 -23618 -23627 23627\n\t\tmu 0 3 24463 24465 24468\n\t\tf 3 23628 23629 -23628\n\t\tmu 0 3 24468 24469 24463\n\t\tf 3 -23616 -23630 23630\n\t\tmu 0 3 24464 24463 24469\n\t\tf 3 23631 23632 -23631\n\t\tmu 0 3 24469 24470 24464\n\t\tf 3 23633 -23613 23634\n\t\tmu 0 3 24471 24456 24462\n\t\tf 3 -23634 23635 23636\n\t\tmu 0 3 24456 24471 24472\n\t\tf 3 23637 -23636 23638\n\t\tmu 0 3 24473 24472 24471\n\t\tf 3 -23638 23639 23640\n\t\tmu 0 3 24472 24473 24474\n\t\tf 3 23641 23642 -23641\n\t\tmu 0 3 24474 24475 24472\n\t\tf 3 -23642 23643 23644\n\t\tmu 0 3 24475 24474 24476\n\t\tf 3 23645 23646 -23645\n\t\tmu 0 3 24476 24477 24475\n\t\tf 3 -23646 23647 23648\n\t\tmu 0 3 24477 24476 24478\n\t\tf 3 23649 23650 -23649\n\t\tmu 0 3 24478 24479 24477\n\t\tf 3 23651 -23650 23652\n\t\tmu 0 3 24480 24479 24478\n\t\tf 3 23653 23654 -23653\n\t\tmu 0 3 24478 24481 24480\n\t\tf 3 -23652 23655 23656\n\t\tmu 0 3 24479 24480 24436\n\t\tf 3 -23551 23657 -23657\n\t\tmu 0 3 24436 24435 24479\n\t\tf 3 23658 -23651 23659\n\t\tmu 0 3 24446 24477 24479\n\t\tf 3 -23658 -23573 -23660\n\t\tmu 0 3 24479 24435 24446\n\t\tf 3 -23659 -23577 23660\n\t\tmu 0 3 24477 24446 24448\n\t\tf 3 23661 -23647 -23661\n\t\tmu 0 3 24448 24475 24477\n\t\tf 3 23662 -23643 23663\n\t\tmu 0 3 24454 24472 24475;\n\tsetAttr \".fc[12500:12999]\"\n\t\tf 3 -23662 -23593 -23664\n\t\tmu 0 3 24475 24448 24454\n\t\tf 3 23664 23665 -23639\n\t\tmu 0 3 24471 24482 24473\n\t\tf 3 -23663 -23597 -23637\n\t\tmu 0 3 24472 24454 24456\n\t\tf 3 -23656 23666 23667\n\t\tmu 0 3 24436 24480 24483\n\t\tf 3 23668 23669 -23668\n\t\tmu 0 3 24483 24484 24436\n\t\tf 3 -23552 -23670 23670\n\t\tmu 0 3 24437 24436 24484\n\t\tf 3 23671 23672 -23671\n\t\tmu 0 3 24484 24485 24437\n\t\tf 3 -23672 23673 23674\n\t\tmu 0 3 24485 24484 24486\n\t\tf 3 23675 23676 -23675\n\t\tmu 0 3 24486 24487 24485\n\t\tf 3 -23676 23677 23678\n\t\tmu 0 3 24487 24486 24488\n\t\tf 3 23679 23680 -23679\n\t\tmu 0 3 24488 24489 24487\n\t\tf 3 -23680 23681 23682\n\t\tmu 0 3 24489 24488 24490\n\t\tf 3 23683 23684 -23683\n\t\tmu 0 3 24490 24491 24489\n\t\tf 3 -23684 23685 23686\n\t\tmu 0 3 24491 24490 24492\n\t\tf 3 23687 23688 -23687\n\t\tmu 0 3 24492 24493 24491\n\t\tf 3 -23688 23689 23690\n\t\tmu 0 3 24493 24492 24494\n\t\tf 3 23691 23692 -23691\n\t\tmu 0 3 24494 24495 24493\n\t\tf 3 -23692 23693 23694\n\t\tmu 0 3 24495 24494 24496\n\t\tf 3 23695 23696 -23695\n\t\tmu 0 3 24496 24497 24495\n\t\tf 3 -23696 23697 23698\n\t\tmu 0 3 24497 24496 24498\n\t\tf 3 -23632 23699 -23699\n\t\tmu 0 3 24498 24499 24497\n\t\tf 3 23700 -23697 23701\n\t\tmu 0 3 24500 24495 24497\n\t\tf 3 23702 23703 -23702\n\t\tmu 0 3 24497 24501 24500\n\t\tf 3 -23703 -23700 23704\n\t\tmu 0 3 24501 24497 24502\n\t\tf 3 -23629 23705 -23705\n\t\tmu 0 3 24502 24503 24501\n\t\tf 3 23706 -23706 23707\n\t\tmu 0 3 24504 24501 24503\n\t\tf 3 -23626 23708 -23708\n\t\tmu 0 3 24503 24505 24504\n\t\tf 3 -23707 23709 23710\n\t\tmu 0 3 24501 24504 24506\n\t\tf 3 23711 -23704 -23711\n\t\tmu 0 3 24506 24500 24501\n\t\tf 3 23712 -23693 23713\n\t\tmu 0 3 24507 24493 24495\n\t\tf 3 -23701 23714 -23714\n\t\tmu 0 3 24495 24500 24507\n\t\tf 3 23715 -23715 23716\n\t\tmu 0 3 24508 24507 24500\n\t\tf 3 -23712 23717 -23717\n\t\tmu 0 3 24500 24506 24508\n\t\tf 3 -23716 23718 23719\n\t\tmu 0 3 24507 24508 24509\n\t\tf 3 23720 23721 -23720\n\t\tmu 0 3 24509 24510 24507\n\t\tf 3 -23713 -23722 23722\n\t\tmu 0 3 24493 24507 24510\n\t\tf 3 23723 -23689 -23723\n\t\tmu 0 3 24510 24491 24493\n\t\tf 3 -23724 23724 23725\n\t\tmu 0 3 24491 24510 24511\n\t\tf 3 23726 -23685 -23726\n\t\tmu 0 3 24511 24489 24491\n\t\tf 3 23727 -23725 23728\n\t\tmu 0 3 24512 24511 24510\n\t\tf 3 -23721 23729 -23729\n\t\tmu 0 3 24510 24509 24512\n\t\tf 3 -23728 23730 23731\n\t\tmu 0 3 24511 24512 24513\n\t\tf 3 23732 23733 -23732\n\t\tmu 0 3 24513 24514 24511\n\t\tf 3 -23727 -23734 23734\n\t\tmu 0 3 24489 24511 24514\n\t\tf 3 23735 -23681 -23735\n\t\tmu 0 3 24514 24487 24489\n\t\tf 3 -23736 23736 23737\n\t\tmu 0 3 24487 24514 24515\n\t\tf 3 23738 -23677 -23738\n\t\tmu 0 3 24515 24485 24487\n\t\tf 3 23739 -23737 23740\n\t\tmu 0 3 24516 24515 24514\n\t\tf 3 -23733 23741 -23741\n\t\tmu 0 3 24514 24513 24516\n\t\tf 3 -23740 23742 23743\n\t\tmu 0 3 24515 24516 24442\n\t\tf 3 -23562 23744 -23744\n\t\tmu 0 3 24442 24440 24515\n\t\tf 3 -23739 -23745 23745\n\t\tmu 0 3 24485 24515 24440\n\t\tf 3 -23558 -23673 -23746\n\t\tmu 0 3 24440 24437 24485\n\t\tf 3 23746 -23730 23747\n\t\tmu 0 3 24517 24512 24509\n\t\tf 3 23748 23749 -23748\n\t\tmu 0 3 24509 24518 24517\n\t\tf 3 -23749 -23719 23750\n\t\tmu 0 3 24518 24509 24508\n\t\tf 3 23751 23752 -23751\n\t\tmu 0 3 24508 24519 24518\n\t\tf 3 -23752 -23718 23753\n\t\tmu 0 3 24519 24508 24506\n\t\tf 3 23754 23755 -23754\n\t\tmu 0 3 24506 24520 24519\n\t\tf 3 -23755 -23710 23756\n\t\tmu 0 3 24520 24506 24504\n\t\tf 3 23757 23758 -23757\n\t\tmu 0 3 24504 24521 24520\n\t\tf 3 23759 -23759 23760\n\t\tmu 0 3 24522 24520 24521\n\t\tf 3 23761 23762 -23761\n\t\tmu 0 3 24521 24523 24522\n\t\tf 3 23763 -23763 23764\n\t\tmu 0 3 24524 24522 24523\n\t\tf 3 23765 23766 -23765\n\t\tmu 0 3 24523 24525 24524\n\t\tf 3 23767 -23767 23768\n\t\tmu 0 3 24526 24524 24525\n\t\tf 3 23769 23770 -23769\n\t\tmu 0 3 24525 24527 24526\n\t\tf 3 23771 -23771 23772\n\t\tmu 0 3 24528 24526 24527\n\t\tf 3 23773 23774 -23773\n\t\tmu 0 3 24527 24529 24528\n\t\tf 3 23775 -23775 23776\n\t\tmu 0 3 24530 24528 24529\n\t\tf 3 23777 23778 -23777\n\t\tmu 0 3 24529 24531 24530\n\t\tf 3 23779 -23779 23780\n\t\tmu 0 3 24532 24530 24531\n\t\tf 3 23781 23782 -23781\n\t\tmu 0 3 24531 24533 24532\n\t\tf 3 23783 -23783 23784\n\t\tmu 0 3 24534 24532 24533\n\t\tf 3 23785 23786 -23785\n\t\tmu 0 3 24533 24535 24534\n\t\tf 3 -23772 23787 23788\n\t\tmu 0 3 24526 24528 24536\n\t\tf 3 23789 23790 -23789\n\t\tmu 0 3 24536 24537 24526\n\t\tf 3 -23768 -23791 23791\n\t\tmu 0 3 24524 24526 24537\n\t\tf 3 23792 -23788 23793\n\t\tmu 0 3 24538 24536 24528\n\t\tf 3 -23776 23794 -23794\n\t\tmu 0 3 24528 24530 24538\n\t\tf 3 23795 -23795 23796\n\t\tmu 0 3 24539 24538 24530\n\t\tf 3 -23780 23797 -23797\n\t\tmu 0 3 24530 24532 24539\n\t\tf 3 23798 -23798 23799\n\t\tmu 0 3 24540 24539 24532\n\t\tf 3 -23784 23800 -23800\n\t\tmu 0 3 24532 24534 24540\n\t\tf 3 -23799 23801 23802\n\t\tmu 0 3 24539 24540 24541\n\t\tf 3 23803 23804 -23803\n\t\tmu 0 3 24541 24542 24539\n\t\tf 3 -23796 -23805 23805\n\t\tmu 0 3 24538 24539 24542\n\t\tf 3 23806 23807 -23806\n\t\tmu 0 3 24542 24543 24538\n\t\tf 3 -23793 -23808 23808\n\t\tmu 0 3 24536 24538 24543\n\t\tf 3 23809 23810 -23809\n\t\tmu 0 3 24543 24544 24536\n\t\tf 3 -23790 -23811 23811\n\t\tmu 0 3 24537 24536 24544\n\t\tf 3 23812 23813 -23812\n\t\tmu 0 3 24544 24545 24537\n\t\tf 3 -23813 23814 23815\n\t\tmu 0 3 24545 24544 24546\n\t\tf 3 23816 23817 -23816\n\t\tmu 0 3 24546 24547 24545\n\t\tf 3 23818 -23815 23819\n\t\tmu 0 3 24548 24546 24544\n\t\tf 3 -23810 23820 -23820\n\t\tmu 0 3 24544 24543 24548\n\t\tf 3 23821 -23821 23822\n\t\tmu 0 3 24549 24548 24543\n\t\tf 3 -23807 23823 -23823\n\t\tmu 0 3 24543 24542 24549\n\t\tf 3 23824 -23824 23825\n\t\tmu 0 3 24550 24549 24542\n\t\tf 3 -23804 23826 -23826\n\t\tmu 0 3 24542 24541 24550\n\t\tf 3 -23825 23827 23828\n\t\tmu 0 3 24549 24550 24551\n\t\tf 3 23829 23830 -23829\n\t\tmu 0 3 24551 24552 24549\n\t\tf 3 -23822 -23831 23831\n\t\tmu 0 3 24548 24549 24552\n\t\tf 3 23832 23833 -23832\n\t\tmu 0 3 24552 24553 24548\n\t\tf 3 -23819 -23834 23834\n\t\tmu 0 3 24546 24548 24553\n\t\tf 3 23835 23836 -23835\n\t\tmu 0 3 24553 24554 24546\n\t\tf 3 -23817 -23837 23837\n\t\tmu 0 3 24547 24546 24554\n\t\tf 3 23838 23839 -23838\n\t\tmu 0 3 24554 24555 24547\n\t\tf 3 -23839 23840 23841\n\t\tmu 0 3 24555 24554 24556\n\t\tf 3 23842 23843 -23842\n\t\tmu 0 3 24556 24557 24555\n\t\tf 3 23844 -23841 23845\n\t\tmu 0 3 24558 24556 24554\n\t\tf 3 -23836 23846 -23846\n\t\tmu 0 3 24554 24553 24558\n\t\tf 3 23847 -23847 23848\n\t\tmu 0 3 24559 24558 24553\n\t\tf 3 -23833 23849 -23849\n\t\tmu 0 3 24553 24552 24559\n\t\tf 3 23850 -23850 23851\n\t\tmu 0 3 24560 24559 24552\n\t\tf 3 -23830 23852 -23852\n\t\tmu 0 3 24552 24551 24560\n\t\tf 3 -23851 23853 23854\n\t\tmu 0 3 24559 24560 24561\n\t\tf 3 23855 23856 -23855\n\t\tmu 0 3 24561 24562 24559\n\t\tf 3 -23848 -23857 23857\n\t\tmu 0 3 24558 24559 24562\n\t\tf 3 -23856 23858 23859\n\t\tmu 0 3 24562 24561 24563\n\t\tf 3 23860 23861 -23860\n\t\tmu 0 3 24563 24564 24562\n\t\tf 3 23862 -23862 23863\n\t\tmu 0 3 24565 24562 24564\n\t\tf 3 -23863 23864 -23858\n\t\tmu 0 3 24562 24565 24558\n\t\tf 3 -23845 -23865 23865\n\t\tmu 0 3 24556 24558 24565\n\t\tf 3 23866 23867 -23864\n\t\tmu 0 3 24564 24566 24565\n\t\tf 3 23868 -23868 23869\n\t\tmu 0 3 24567 24565 24566\n\t\tf 3 -23869 23870 -23866\n\t\tmu 0 3 24565 24567 24556\n\t\tf 3 -23843 -23871 23871\n\t\tmu 0 3 24557 24556 24567\n\t\tf 3 23872 23873 -23870\n\t\tmu 0 3 24566 24568 24567\n\t\tf 3 23874 -23874 23875\n\t\tmu 0 3 24569 24567 24568\n\t\tf 3 -23875 23876 -23872\n\t\tmu 0 3 24567 24569 24557\n\t\tf 3 23877 23878 -23876\n\t\tmu 0 3 24568 24570 24569\n\t\tf 3 -23861 23879 23880\n\t\tmu 0 3 24564 24563 24571\n\t\tf 3 23881 23882 -23881\n\t\tmu 0 3 24571 24572 24564\n\t\tf 3 -23867 -23883 23883\n\t\tmu 0 3 24566 24564 24572\n\t\tf 3 23884 23885 -23884\n\t\tmu 0 3 24572 24573 24566\n\t\tf 3 -23873 -23886 23886\n\t\tmu 0 3 24568 24566 24573\n\t\tf 3 23887 23888 -23887\n\t\tmu 0 3 24573 24574 24568\n\t\tf 3 -23878 -23889 23889\n\t\tmu 0 3 24570 24568 24574\n\t\tf 3 23890 23891 -23890\n\t\tmu 0 3 24574 24575 24570\n\t\tf 3 -23891 23892 23893\n\t\tmu 0 3 24575 24574 24576\n\t\tf 3 23894 23895 -23894\n\t\tmu 0 3 24576 24577 24575\n\t\tf 3 23896 -23893 23897\n\t\tmu 0 3 24578 24576 24574\n\t\tf 3 -23888 23898 -23898\n\t\tmu 0 3 24574 24573 24578\n\t\tf 3 23899 -23899 23900\n\t\tmu 0 3 24579 24578 24573\n\t\tf 3 -23885 23901 -23901\n\t\tmu 0 3 24573 24572 24579\n\t\tf 3 23902 -23902 23903\n\t\tmu 0 3 24580 24579 24572\n\t\tf 3 -23882 23904 -23904\n\t\tmu 0 3 24572 24571 24580\n\t\tf 3 -23903 23905 23906\n\t\tmu 0 3 24579 24580 24581\n\t\tf 3 23907 23908 -23907\n\t\tmu 0 3 24581 24582 24579\n\t\tf 3 -23900 -23909 23909\n\t\tmu 0 3 24578 24579 24582\n\t\tf 3 23910 23911 -23910\n\t\tmu 0 3 24582 24583 24578\n\t\tf 3 -23897 -23912 23912\n\t\tmu 0 3 24576 24578 24583\n\t\tf 3 23913 23914 -23913\n\t\tmu 0 3 24583 24584 24576\n\t\tf 3 -23895 -23915 23915\n\t\tmu 0 3 24577 24576 24584\n\t\tf 3 23916 23917 -23916\n\t\tmu 0 3 24584 24585 24577\n\t\tf 3 -23917 23918 23919\n\t\tmu 0 3 24585 24584 24586\n\t\tf 3 23920 23921 -23920\n\t\tmu 0 3 24586 24587 24585\n\t\tf 3 23922 -23919 23923\n\t\tmu 0 3 24588 24586 24584\n\t\tf 3 -23914 23924 -23924\n\t\tmu 0 3 24584 24583 24588\n\t\tf 3 23925 -23925 23926\n\t\tmu 0 3 24589 24588 24583\n\t\tf 3 -23911 23927 -23927\n\t\tmu 0 3 24583 24582 24589\n\t\tf 3 23928 -23928 23929\n\t\tmu 0 3 24590 24589 24582\n\t\tf 3 -23908 23930 -23930\n\t\tmu 0 3 24582 24581 24590\n\t\tf 3 -23929 23931 23932\n\t\tmu 0 3 24589 24590 24591\n\t\tf 3 23933 23934 -23933\n\t\tmu 0 3 24591 24592 24589\n\t\tf 3 -23926 -23935 23935\n\t\tmu 0 3 24588 24589 24592\n\t\tf 3 23936 23937 -23936\n\t\tmu 0 3 24592 24593 24588\n\t\tf 3 -23923 -23938 23938\n\t\tmu 0 3 24586 24588 24593\n\t\tf 3 23939 23940 -23939\n\t\tmu 0 3 24593 24594 24586\n\t\tf 3 -23921 -23941 23941\n\t\tmu 0 3 24587 24586 24594\n\t\tf 3 23942 23943 -23942\n\t\tmu 0 3 24594 24595 24587\n\t\tf 3 -23943 23944 23945\n\t\tmu 0 3 24595 24594 24596\n\t\tf 3 23946 23947 -23946\n\t\tmu 0 3 24596 24597 24595\n\t\tf 3 23948 -23945 23949\n\t\tmu 0 3 24598 24596 24594\n\t\tf 3 -23940 23950 -23950\n\t\tmu 0 3 24594 24593 24598\n\t\tf 3 23951 -23951 23952\n\t\tmu 0 3 24599 24598 24593\n\t\tf 3 -23937 23953 -23953\n\t\tmu 0 3 24593 24592 24599\n\t\tf 3 23954 -23954 23955\n\t\tmu 0 3 24600 24599 24592\n\t\tf 3 -23934 23956 -23956\n\t\tmu 0 3 24592 24591 24600\n\t\tf 3 -23955 23957 23958\n\t\tmu 0 3 24599 24600 24601\n\t\tf 3 23959 23960 -23959\n\t\tmu 0 3 24601 24602 24599\n\t\tf 3 -23952 -23961 23961\n\t\tmu 0 3 24598 24599 24602\n\t\tf 3 23962 23963 -23962\n\t\tmu 0 3 24602 24603 24598\n\t\tf 3 -23949 -23964 23964\n\t\tmu 0 3 24596 24598 24603\n\t\tf 3 23965 23966 -23965\n\t\tmu 0 3 24603 24604 24596\n\t\tf 3 -23947 -23967 23967\n\t\tmu 0 3 24597 24596 24604\n\t\tf 3 23968 23969 -23968\n\t\tmu 0 3 24604 24605 24597\n\t\tf 3 -23969 23970 23971\n\t\tmu 0 3 24605 24604 24606\n\t\tf 3 -23774 23972 -23972\n\t\tmu 0 3 24606 24607 24605\n\t\tf 3 -23778 -23971 23973\n\t\tmu 0 3 24608 24606 24604\n\t\tf 3 -23966 23974 -23974\n\t\tmu 0 3 24604 24603 24608\n\t\tf 3 -23963 23975 23976\n\t\tmu 0 3 24603 24602 24609\n\t\tf 3 -23782 -23975 -23977\n\t\tmu 0 3 24609 24610 24603\n\t\tf 3 -23960 23977 23978\n\t\tmu 0 3 24602 24601 24611\n\t\tf 3 -23786 -23976 -23979\n\t\tmu 0 3 24611 24612 24602\n\t\tf 3 23979 -23958 23980\n\t\tmu 0 3 24613 24601 24600\n\t\tf 3 23981 23982 -23981\n\t\tmu 0 3 24600 24614 24613\n\t\tf 3 -23982 -23957 23983\n\t\tmu 0 3 24614 24600 24591\n\t\tf 3 23984 23985 -23984\n\t\tmu 0 3 24591 24615 24614\n\t\tf 3 -23985 -23932 23986\n\t\tmu 0 3 24615 24591 24590\n\t\tf 3 23987 23988 -23987\n\t\tmu 0 3 24590 24616 24615\n\t\tf 3 -23988 -23931 23989\n\t\tmu 0 3 24616 24590 24581\n\t\tf 3 23990 23991 -23990\n\t\tmu 0 3 24581 24617 24616\n\t\tf 3 -23991 -23906 23992\n\t\tmu 0 3 24617 24581 24580\n\t\tf 3 23993 23994 -23993\n\t\tmu 0 3 24580 24618 24617\n\t\tf 3 -23994 -23905 23995\n\t\tmu 0 3 24618 24580 24571\n\t\tf 3 23996 23997 -23996\n\t\tmu 0 3 24571 24619 24618\n\t\tf 3 -23997 -23880 23998\n\t\tmu 0 3 24619 24571 24563\n\t\tf 3 23999 24000 -23999\n\t\tmu 0 3 24563 24620 24619\n\t\tf 3 -24000 -23859 24001\n\t\tmu 0 3 24620 24563 24561\n\t\tf 3 24002 24003 -24002\n\t\tmu 0 3 24561 24621 24620\n\t\tf 3 24004 -24004 24005\n\t\tmu 0 3 24622 24620 24621\n\t\tf 3 24006 24007 -24006\n\t\tmu 0 3 24621 24623 24622\n\t\tf 3 24008 -24008 24009\n\t\tmu 0 3 24624 24622 24623\n\t\tf 3 24010 24011 -24010\n\t\tmu 0 3 24623 24625 24624\n\t\tf 3 24012 -24012 24013\n\t\tmu 0 3 24626 24624 24625\n\t\tf 3 24014 24015 -24014\n\t\tmu 0 3 24625 24627 24626\n\t\tf 3 -24013 24016 24017\n\t\tmu 0 3 24624 24626 24628\n\t\tf 3 24018 24019 -24018\n\t\tmu 0 3 24628 24629 24624\n\t\tf 3 -24009 -24020 24020\n\t\tmu 0 3 24622 24624 24629\n\t\tf 3 24021 24022 -24021\n\t\tmu 0 3 24629 24630 24622\n\t\tf 3 -24005 -24023 24023\n\t\tmu 0 3 24620 24622 24630\n\t\tf 3 24024 -24001 -24024\n\t\tmu 0 3 24630 24619 24620\n\t\tf 3 24025 -23998 24026\n\t\tmu 0 3 24631 24618 24619\n\t\tf 3 -24025 24027 -24027\n\t\tmu 0 3 24619 24630 24631\n\t\tf 3 24028 -24028 24029\n\t\tmu 0 3 24632 24631 24630\n\t\tf 3 24030 24031 -24030\n\t\tmu 0 3 24630 24633 24632\n\t\tf 3 24032 -24032 24033\n\t\tmu 0 3 24634 24632 24635\n\t\tf 3 24034 24035 -24034\n\t\tmu 0 3 24636 24628 24634\n\t\tf 3 -24033 24036 24037\n\t\tmu 0 3 24632 24634 24637\n\t\tf 3 24038 24039 -24038\n\t\tmu 0 3 24637 24638 24632\n\t\tf 3 -24029 -24040 24040\n\t\tmu 0 3 24631 24632 24638\n\t\tf 3 24041 24042 -24041\n\t\tmu 0 3 24638 24639 24631\n\t\tf 3 -24026 -24043 24043\n\t\tmu 0 3 24618 24631 24639\n\t\tf 3 24044 -23995 -24044\n\t\tmu 0 3 24639 24617 24618\n\t\tf 3 -24045 24045 24046\n\t\tmu 0 3 24617 24639 24640\n\t\tf 3 24047 -23992 -24047\n\t\tmu 0 3 24640 24616 24617\n\t\tf 3 24048 -24046 24049\n\t\tmu 0 3 24641 24640 24639\n\t\tf 3 -24042 24050 -24050\n\t\tmu 0 3 24639 24638 24641\n\t\tf 3 24051 -24051 24052\n\t\tmu 0 3 24642 24641 24638\n\t\tf 3 -24039 24053 -24053\n\t\tmu 0 3 24638 24637 24642\n\t\tf 3 -24052 24054 24055\n\t\tmu 0 3 24641 24642 24643\n\t\tf 3 24056 24057 -24056\n\t\tmu 0 3 24643 24644 24641\n\t\tf 3 -24049 -24058 24058\n\t\tmu 0 3 24640 24641 24644\n\t\tf 3 24059 24060 -24059\n\t\tmu 0 3 24644 24645 24640\n\t\tf 3 -24048 -24061 24061\n\t\tmu 0 3 24616 24640 24645\n\t\tf 3 24062 -23989 -24062\n\t\tmu 0 3 24645 24615 24616\n\t\tf 3 -24063 24063 24064\n\t\tmu 0 3 24615 24645 24646\n\t\tf 3 24065 -23986 -24065\n\t\tmu 0 3 24646 24614 24615\n\t\tf 3 24066 -24064 24067\n\t\tmu 0 3 24647 24646 24645\n\t\tf 3 -24060 24068 -24068\n\t\tmu 0 3 24645 24644 24647\n\t\tf 3 24069 -24069 24070\n\t\tmu 0 3 24648 24647 24644\n\t\tf 3 -24057 24071 -24071\n\t\tmu 0 3 24644 24643 24648\n\t\tf 3 -24070 24072 24073\n\t\tmu 0 3 24647 24648 24649\n\t\tf 3 24074 24075 -24074\n\t\tmu 0 3 24649 24650 24647\n\t\tf 3 -24067 -24076 24076\n\t\tmu 0 3 24646 24647 24650\n\t\tf 3 24077 24078 -24077\n\t\tmu 0 3 24650 24651 24646\n\t\tf 3 -24066 -24079 24079\n\t\tmu 0 3 24614 24646 24651\n\t\tf 3 24080 -23983 -24080\n\t\tmu 0 3 24651 24613 24614\n\t\tf 3 -24081 24081 24082\n\t\tmu 0 3 24613 24651 24652\n\t\tf 3 24083 24084 -24083\n\t\tmu 0 3 24652 24653 24613\n\t\tf 3 -24078 24085 24086\n\t\tmu 0 3 24651 24650 24654\n\t\tf 3 24087 -24082 -24087\n\t\tmu 0 3 24654 24655 24651\n\t\tf 3 -24075 24088 24089\n\t\tmu 0 3 24650 24649 24656\n\t\tf 3 24090 -24086 -24090\n\t\tmu 0 3 24656 24657 24650\n\t\tf 3 24091 -24073 24092\n\t\tmu 0 3 24658 24649 24648\n\t\tf 3 24093 24094 -24093\n\t\tmu 0 3 24648 24659 24658\n\t\tf 3 -24094 -24072 24095\n\t\tmu 0 3 24659 24648 24643\n\t\tf 3 24096 24097 -24096\n\t\tmu 0 3 24643 24660 24659\n\t\tf 3 -24097 -24055 24098\n\t\tmu 0 3 24660 24643 24642\n\t\tf 3 24099 24100 -24099\n\t\tmu 0 3 24642 24661 24660\n\t\tf 3 -24100 -24054 24101\n\t\tmu 0 3 24661 24642 24637\n\t\tf 3 24102 24103 -24102\n\t\tmu 0 3 24637 24662 24661\n\t\tf 3 -24103 -24037 24104\n\t\tmu 0 3 24662 24637 24634\n\t\tf 3 24105 24106 -24105\n\t\tmu 0 3 24634 24663 24662\n\t\tf 3 -24106 -24036 24107\n\t\tmu 0 3 24663 24634 24628\n\t\tf 3 24108 24109 -24108\n\t\tmu 0 3 24628 24664 24663\n\t\tf 3 -24109 -24017 24110\n\t\tmu 0 3 24664 24628 24626\n\t\tf 3 24111 24112 -24111\n\t\tmu 0 3 24626 24665 24664\n\t\tf 3 -24112 -24016 24113\n\t\tmu 0 3 24665 24626 24627\n\t\tf 3 24114 24115 -24114\n\t\tmu 0 3 24627 24666 24665\n\t\tf 3 24116 -24116 24117\n\t\tmu 0 3 24667 24665 24666\n\t\tf 3 24118 24119 -24118\n\t\tmu 0 3 24666 24668 24667\n\t\tf 3 24120 -24120 24121\n\t\tmu 0 3 24669 24667 24668\n\t\tf 3 24122 24123 -24122\n\t\tmu 0 3 24668 24670 24669\n\t\tf 3 24124 -24124 24125\n\t\tmu 0 3 24671 24669 24670\n\t\tf 3 24126 24127 -24126\n\t\tmu 0 3 24670 24672 24671\n\t\tf 3 -24125 24128 24129\n\t\tmu 0 3 24669 24671 24673\n\t\tf 3 24130 24131 -24130\n\t\tmu 0 3 24673 24674 24669\n\t\tf 3 -24121 -24132 24132\n\t\tmu 0 3 24667 24669 24674\n\t\tf 3 24133 24134 -24133\n\t\tmu 0 3 24674 24675 24667\n\t\tf 3 -24117 -24135 24135\n\t\tmu 0 3 24665 24667 24675\n\t\tf 3 24136 -24113 -24136\n\t\tmu 0 3 24675 24664 24665\n\t\tf 3 24137 -24110 24138\n\t\tmu 0 3 24676 24663 24664\n\t\tf 3 -24137 24139 -24139\n\t\tmu 0 3 24664 24675 24676\n\t\tf 3 24140 -24140 24141\n\t\tmu 0 3 24677 24676 24675\n\t\tf 3 -24134 24142 -24142\n\t\tmu 0 3 24675 24674 24677\n\t\tf 3 24143 -24143 24144\n\t\tmu 0 3 24678 24677 24674\n\t\tf 3 -24131 24145 -24145\n\t\tmu 0 3 24674 24673 24678\n\t\tf 3 -24144 24146 24147\n\t\tmu 0 3 24677 24678 24679\n\t\tf 3 24148 24149 -24148\n\t\tmu 0 3 24679 24680 24677\n\t\tf 3 -24141 -24150 24150\n\t\tmu 0 3 24676 24677 24680\n\t\tf 3 24151 24152 -24151\n\t\tmu 0 3 24680 24681 24676\n\t\tf 3 -24138 -24153 24153\n\t\tmu 0 3 24663 24676 24681\n\t\tf 3 24154 -24107 -24154\n\t\tmu 0 3 24681 24662 24663\n\t\tf 3 -24155 24155 24156\n\t\tmu 0 3 24662 24681 24682\n\t\tf 3 24157 -24104 -24157\n\t\tmu 0 3 24682 24661 24662\n\t\tf 3 24158 -24156 24159\n\t\tmu 0 3 24683 24682 24681\n\t\tf 3 -24152 24160 -24160\n\t\tmu 0 3 24681 24680 24683\n\t\tf 3 24161 -24161 24162\n\t\tmu 0 3 24684 24683 24680\n\t\tf 3 -24149 24163 -24163\n\t\tmu 0 3 24680 24679 24684\n\t\tf 3 -24162 24164 24165\n\t\tmu 0 3 24683 24684 24685\n\t\tf 3 24166 24167 -24166\n\t\tmu 0 3 24685 24686 24683\n\t\tf 3 -24159 -24168 24168\n\t\tmu 0 3 24682 24683 24686\n\t\tf 3 24169 24170 -24169\n\t\tmu 0 3 24686 24687 24682\n\t\tf 3 -24158 -24171 24171\n\t\tmu 0 3 24661 24682 24687\n\t\tf 3 24172 -24101 -24172\n\t\tmu 0 3 24687 24660 24661\n\t\tf 3 -24173 24173 24174\n\t\tmu 0 3 24660 24687 24688\n\t\tf 3 24175 -24098 -24175\n\t\tmu 0 3 24688 24659 24660\n\t\tf 3 24176 -24174 24177\n\t\tmu 0 3 24689 24688 24687\n\t\tf 3 -24170 24178 -24178\n\t\tmu 0 3 24687 24686 24689\n\t\tf 3 24179 -24179 24180\n\t\tmu 0 3 24690 24689 24686\n\t\tf 3 -24167 24181 -24181\n\t\tmu 0 3 24686 24685 24690\n\t\tf 3 -24180 24182 24183\n\t\tmu 0 3 24689 24690 24691\n\t\tf 3 24184 24185 -24184\n\t\tmu 0 3 24691 24692 24689\n\t\tf 3 -24177 -24186 24186\n\t\tmu 0 3 24688 24689 24692\n\t\tf 3 24187 24188 -24187\n\t\tmu 0 3 24692 24693 24688\n\t\tf 3 -24176 -24189 24189\n\t\tmu 0 3 24659 24688 24693\n\t\tf 3 24190 -24095 -24190\n\t\tmu 0 3 24693 24658 24659\n\t\tf 3 -24191 24191 24192\n\t\tmu 0 3 24658 24693 24694\n\t\tf 3 24193 24194 -24193\n\t\tmu 0 3 24694 24695 24658\n\t\tf 3 -24188 24195 24196\n\t\tmu 0 3 24693 24692 24696\n\t\tf 3 24197 -24192 -24197\n\t\tmu 0 3 24696 24697 24693\n\t\tf 3 -24185 24198 24199\n\t\tmu 0 3 24692 24691 24698\n\t\tf 3 24200 -24196 -24200\n\t\tmu 0 3 24698 24699 24692\n\t\tf 3 24201 -24183 24202\n\t\tmu 0 3 24700 24691 24690\n\t\tf 3 24203 24204 -24203\n\t\tmu 0 3 24690 24701 24700\n\t\tf 3 -24204 -24182 24205\n\t\tmu 0 3 24701 24690 24685\n\t\tf 3 24206 24207 -24206\n\t\tmu 0 3 24685 24702 24701\n\t\tf 3 -24207 -24165 24208\n\t\tmu 0 3 24702 24685 24684\n\t\tf 3 24209 24210 -24209\n\t\tmu 0 3 24684 24703 24702\n\t\tf 3 -24210 -24164 24211\n\t\tmu 0 3 24703 24684 24679\n\t\tf 3 24212 24213 -24212\n\t\tmu 0 3 24679 24704 24703\n\t\tf 3 -24213 -24147 24214\n\t\tmu 0 3 24704 24679 24678\n\t\tf 3 24215 24216 -24215\n\t\tmu 0 3 24678 24705 24704\n\t\tf 3 -24216 -24146 24217\n\t\tmu 0 3 24705 24678 24673\n\t\tf 3 24218 24219 -24218\n\t\tmu 0 3 24673 24706 24705\n\t\tf 3 -24219 -24129 24220\n\t\tmu 0 3 24706 24673 24671\n\t\tf 3 24221 24222 -24221\n\t\tmu 0 3 24671 24707 24706\n\t\tf 3 -24222 -24128 24223\n\t\tmu 0 3 24707 24671 24672\n\t\tf 3 24224 24225 -24224\n\t\tmu 0 3 24672 24708 24707\n\t\tf 3 24226 -24226 24227\n\t\tmu 0 3 24709 24707 24708\n\t\tf 3 24228 24229 -24228\n\t\tmu 0 3 24708 24710 24709\n\t\tf 3 24230 -24230 24231\n\t\tmu 0 3 24711 24709 24710\n\t\tf 3 24232 24233 -24232\n\t\tmu 0 3 24710 24712 24711\n\t\tf 3 24234 -24234 24235\n\t\tmu 0 3 24713 24711 24712\n\t\tf 3 24236 24237 -24236\n\t\tmu 0 3 24712 24714 24713\n\t\tf 3 -24235 24238 24239\n\t\tmu 0 3 24711 24713 24715\n\t\tf 3 24240 24241 -24240\n\t\tmu 0 3 24715 24716 24711\n\t\tf 3 -24231 -24242 24242\n\t\tmu 0 3 24709 24711 24716\n\t\tf 3 24243 24244 -24243\n\t\tmu 0 3 24716 24717 24709\n\t\tf 3 -24227 -24245 24245\n\t\tmu 0 3 24707 24709 24717\n\t\tf 3 24246 -24223 -24246\n\t\tmu 0 3 24717 24706 24707\n\t\tf 3 24247 -24220 24248\n\t\tmu 0 3 24718 24705 24706\n\t\tf 3 -24247 24249 -24249\n\t\tmu 0 3 24706 24717 24718\n\t\tf 3 24250 -24250 24251\n\t\tmu 0 3 24719 24718 24717\n\t\tf 3 -24244 24252 -24252\n\t\tmu 0 3 24717 24716 24719\n\t\tf 3 24253 -24253 24254\n\t\tmu 0 3 24720 24719 24716\n\t\tf 3 -24241 24255 -24255\n\t\tmu 0 3 24716 24715 24720\n\t\tf 3 -24254 24256 24257\n\t\tmu 0 3 24719 24720 24721\n\t\tf 3 24258 24259 -24258\n\t\tmu 0 3 24721 24722 24719\n\t\tf 3 -24251 -24260 24260\n\t\tmu 0 3 24718 24719 24722\n\t\tf 3 24261 24262 -24261\n\t\tmu 0 3 24722 24723 24718\n\t\tf 3 -24248 -24263 24263\n\t\tmu 0 3 24705 24718 24723\n\t\tf 3 24264 -24217 -24264\n\t\tmu 0 3 24723 24704 24705\n\t\tf 3 -24265 24265 24266\n\t\tmu 0 3 24704 24723 24724\n\t\tf 3 24267 -24214 -24267\n\t\tmu 0 3 24724 24703 24704\n\t\tf 3 24268 -24266 24269\n\t\tmu 0 3 24725 24724 24723\n\t\tf 3 -24262 24270 -24270\n\t\tmu 0 3 24723 24722 24725\n\t\tf 3 24271 -24271 24272\n\t\tmu 0 3 24726 24725 24722\n\t\tf 3 -24259 24273 -24273\n\t\tmu 0 3 24722 24721 24726\n\t\tf 3 -24272 24274 24275\n\t\tmu 0 3 24725 24726 24727\n\t\tf 3 24276 24277 -24276\n\t\tmu 0 3 24727 24728 24725\n\t\tf 3 -24269 -24278 24278\n\t\tmu 0 3 24724 24725 24728\n\t\tf 3 24279 24280 -24279\n\t\tmu 0 3 24728 24729 24724\n\t\tf 3 -24268 -24281 24281\n\t\tmu 0 3 24703 24724 24729\n\t\tf 3 24282 -24211 -24282\n\t\tmu 0 3 24729 24702 24703\n\t\tf 3 -24283 24283 24284\n\t\tmu 0 3 24702 24729 24730\n\t\tf 3 24285 -24208 -24285\n\t\tmu 0 3 24730 24701 24702\n\t\tf 3 24286 -24284 24287\n\t\tmu 0 3 24731 24730 24729\n\t\tf 3 -24280 24288 -24288\n\t\tmu 0 3 24729 24728 24731\n\t\tf 3 24289 -24289 24290\n\t\tmu 0 3 24732 24731 24728\n\t\tf 3 -24277 24291 -24291\n\t\tmu 0 3 24728 24727 24732\n\t\tf 3 -24290 24292 24293\n\t\tmu 0 3 24731 24732 24733\n\t\tf 3 24294 24295 -24294\n\t\tmu 0 3 24733 24734 24731\n\t\tf 3 -24287 -24296 24296\n\t\tmu 0 3 24730 24731 24734\n\t\tf 3 24297 24298 -24297\n\t\tmu 0 3 24734 24735 24730\n\t\tf 3 -24286 -24299 24299\n\t\tmu 0 3 24701 24730 24735\n\t\tf 3 24300 -24205 -24300\n\t\tmu 0 3 24735 24700 24701\n\t\tf 3 -24301 24301 24302\n\t\tmu 0 3 24700 24735 24736\n\t\tf 3 24303 24304 -24303\n\t\tmu 0 3 24736 24737 24700\n\t\tf 3 -24298 24305 24306\n\t\tmu 0 3 24735 24734 24738\n\t\tf 3 24307 -24302 -24307\n\t\tmu 0 3 24738 24739 24735\n\t\tf 3 -24295 24308 24309\n\t\tmu 0 3 24734 24733 24740\n\t\tf 3 24310 -24306 -24310\n\t\tmu 0 3 24740 24741 24734\n\t\tf 3 24311 -24293 24312\n\t\tmu 0 3 24742 24733 24732\n\t\tf 3 24313 24314 -24313\n\t\tmu 0 3 24732 24743 24742\n\t\tf 3 -24314 -24292 24315\n\t\tmu 0 3 24743 24732 24727\n\t\tf 3 24316 24317 -24316\n\t\tmu 0 3 24727 24744 24743\n\t\tf 3 -24317 -24275 24318\n\t\tmu 0 3 24744 24727 24726\n\t\tf 3 24319 24320 -24319\n\t\tmu 0 3 24726 24745 24744\n\t\tf 3 -24320 -24274 24321\n\t\tmu 0 3 24745 24726 24721\n\t\tf 3 24322 24323 -24322\n\t\tmu 0 3 24721 24746 24745\n\t\tf 3 -24323 -24257 24324\n\t\tmu 0 3 24746 24721 24720\n\t\tf 3 24325 24326 -24325\n\t\tmu 0 3 24720 24747 24746\n\t\tf 3 -24326 -24256 24327\n\t\tmu 0 3 24747 24720 24715\n\t\tf 3 24328 24329 -24328\n\t\tmu 0 3 24715 24748 24747\n\t\tf 3 -24329 -24239 24330\n\t\tmu 0 3 24748 24715 24713\n\t\tf 3 24331 24332 -24331\n\t\tmu 0 3 24713 24749 24748\n\t\tf 3 -24332 -24238 24333\n\t\tmu 0 3 24749 24713 24714\n\t\tf 3 24334 24335 -24334\n\t\tmu 0 3 24714 24750 24749\n\t\tf 3 24336 -24336 24337\n\t\tmu 0 3 24751 24749 24750\n\t\tf 3 24338 24339 -24338\n\t\tmu 0 3 24750 24752 24751\n\t\tf 3 24340 -24340 24341\n\t\tmu 0 3 24753 24751 24752\n\t\tf 3 24342 24343 -24342\n\t\tmu 0 3 24752 24754 24753\n\t\tf 3 24344 -24344 24345\n\t\tmu 0 3 24755 24753 24754\n\t\tf 3 24346 24347 -24346\n\t\tmu 0 3 24754 24756 24755\n\t\tf 3 -24345 24348 24349\n\t\tmu 0 3 24753 24755 24757\n\t\tf 3 24350 24351 -24350\n\t\tmu 0 3 24757 24758 24753\n\t\tf 3 -24341 -24352 24352\n\t\tmu 0 3 24751 24753 24758\n\t\tf 3 24353 24354 -24353\n\t\tmu 0 3 24758 24759 24751\n\t\tf 3 -24337 -24355 24355\n\t\tmu 0 3 24749 24751 24759\n\t\tf 3 24356 -24333 -24356\n\t\tmu 0 3 24759 24748 24749\n\t\tf 3 24357 -24330 24358\n\t\tmu 0 3 24760 24747 24748\n\t\tf 3 -24357 24359 -24359\n\t\tmu 0 3 24748 24759 24760\n\t\tf 3 24360 -24360 24361\n\t\tmu 0 3 24761 24760 24759\n\t\tf 3 -24354 24362 -24362\n\t\tmu 0 3 24759 24758 24761\n\t\tf 3 -24351 24363 24364\n\t\tmu 0 3 24758 24757 24762\n\t\tf 3 24365 -24363 -24365\n\t\tmu 0 3 24762 24761 24758\n\t\tf 3 -24366 24366 24367\n\t\tmu 0 3 24761 24762 24763\n\t\tf 3 24368 24369 -24368\n\t\tmu 0 3 24763 24764 24761\n\t\tf 3 -24361 -24370 24370\n\t\tmu 0 3 24760 24761 24764\n\t\tf 3 24371 24372 -24371\n\t\tmu 0 3 24764 24765 24760\n\t\tf 3 -24358 -24373 24373\n\t\tmu 0 3 24747 24760 24765\n\t\tf 3 24374 -24327 -24374\n\t\tmu 0 3 24765 24746 24747\n\t\tf 3 -24375 24375 24376\n\t\tmu 0 3 24746 24765 24766\n\t\tf 3 24377 -24324 -24377\n\t\tmu 0 3 24766 24745 24746\n\t\tf 3 24378 -24376 24379\n\t\tmu 0 3 24767 24766 24765\n\t\tf 3 -24372 24380 -24380\n\t\tmu 0 3 24765 24764 24767\n\t\tf 3 -24369 24381 24382\n\t\tmu 0 3 24764 24763 24768\n\t\tf 3 24383 -24381 -24383\n\t\tmu 0 3 24768 24767 24764\n\t\tf 3 -24384 24384 24385\n\t\tmu 0 3 24767 24768 24769\n\t\tf 3 24386 24387 -24386\n\t\tmu 0 3 24769 24770 24767\n\t\tf 3 -24379 -24388 24388\n\t\tmu 0 3 24766 24767 24770\n\t\tf 3 24389 24390 -24389\n\t\tmu 0 3 24770 24771 24766\n\t\tf 3 -24378 -24391 24391\n\t\tmu 0 3 24745 24766 24771\n\t\tf 3 24392 -24321 -24392\n\t\tmu 0 3 24771 24744 24745\n\t\tf 3 -24393 24393 24394\n\t\tmu 0 3 24744 24771 24772\n\t\tf 3 24395 -24318 -24395\n\t\tmu 0 3 24772 24743 24744\n\t\tf 3 24396 -24394 24397\n\t\tmu 0 3 24773 24772 24771\n\t\tf 3 -24390 24398 -24398\n\t\tmu 0 3 24771 24770 24773\n\t\tf 3 -24387 24399 24400\n\t\tmu 0 3 24770 24769 24774\n\t\tf 3 24401 -24399 -24401\n\t\tmu 0 3 24774 24773 24770\n\t\tf 3 -24402 24402 24403\n\t\tmu 0 3 24773 24774 24775\n\t\tf 3 24404 24405 -24404\n\t\tmu 0 3 24775 24776 24773\n\t\tf 3 -24397 -24406 24406\n\t\tmu 0 3 24772 24773 24776\n\t\tf 3 24407 24408 -24407\n\t\tmu 0 3 24776 24777 24772\n\t\tf 3 -24396 -24409 24409\n\t\tmu 0 3 24743 24772 24777\n\t\tf 3 24410 -24315 -24410\n\t\tmu 0 3 24777 24742 24743\n\t\tf 3 -24411 24411 24412\n\t\tmu 0 3 24742 24777 24778\n\t\tf 3 24413 24414 -24413\n\t\tmu 0 3 24778 24779 24742\n\t\tf 3 -24408 24415 24416\n\t\tmu 0 3 24777 24776 24780\n\t\tf 3 24417 -24412 -24417\n\t\tmu 0 3 24780 24781 24777\n\t\tf 3 24418 -24400 24419\n\t\tmu 0 3 24782 24774 24769\n\t\tf 3 -24403 -24419 24420\n\t\tmu 0 3 24775 24774 24782\n\t\tf 3 24421 24422 -24420\n\t\tmu 0 3 24769 24783 24782\n\t\tf 3 24423 -24422 24424\n\t\tmu 0 3 24784 24783 24769\n\t\tf 3 24425 -24424 24426\n\t\tmu 0 3 24785 24783 24784\n\t\tf 3 24427 24428 -24427\n\t\tmu 0 3 24784 24786 24785\n\t\tf 3 -24428 24429 24430\n\t\tmu 0 3 24786 24784 24787\n\t\tf 3 24431 -24430 24432\n\t\tmu 0 3 24763 24787 24784\n\t\tf 3 24433 -24432 24434\n\t\tmu 0 3 24788 24787 24763\n\t\tf 3 24435 -24434 24436\n\t\tmu 0 3 24789 24787 24788\n\t\tf 3 -24436 24437 -24431\n\t\tmu 0 3 24787 24789 24786\n\t\tf 3 24438 24439 -24437\n\t\tmu 0 3 24788 24790 24789\n\t\tf 3 -24439 24440 24441\n\t\tmu 0 3 24790 24788 24791\n\t\tf 3 24442 -24441 24443\n\t\tmu 0 3 24757 24791 24788\n\t\tf 3 24444 -24443 24445\n\t\tmu 0 3 24792 24791 24757\n\t\tf 3 24446 -24445 24447\n\t\tmu 0 3 24793 24791 24792\n\t\tf 3 -24447 24448 -24442\n\t\tmu 0 3 24791 24793 24790\n\t\tf 3 24449 24450 -24448\n\t\tmu 0 3 24792 24794 24793\n\t\tf 3 -24450 24451 24452\n\t\tmu 0 3 24794 24792 24795\n\t\tf 3 24453 -24452 24454\n\t\tmu 0 3 24756 24795 24792\n\t\tf 3 24455 -24348 -24455\n\t\tmu 0 3 24792 24755 24756\n\t\tf 3 -24349 -24456 -24446\n\t\tmu 0 3 24757 24755 24792\n\t\tf 3 24456 24457 -24453\n\t\tmu 0 3 24795 24796 24794\n\t\tf 3 24458 -24364 -24444\n\t\tmu 0 3 24788 24762 24757\n\t\tf 3 -24367 -24459 -24435\n\t\tmu 0 3 24763 24762 24788\n\t\tf 3 -24457 24459 24460\n\t\tmu 0 3 24796 24795 24797;\n\tsetAttr \".fc[13000:13499]\"\n\t\tf 3 24461 24462 -24461\n\t\tmu 0 3 24797 24798 24796\n\t\tf 3 -24462 24463 24464\n\t\tmu 0 3 24798 24797 24799\n\t\tf 3 24465 -24464 24466\n\t\tmu 0 3 24800 24799 24797\n\t\tf 3 24467 -24466 24468\n\t\tmu 0 3 24801 24799 24800\n\t\tf 3 24469 -24468 24470\n\t\tmu 0 3 24802 24799 24801\n\t\tf 3 -24470 24471 -24465\n\t\tmu 0 3 24799 24802 24798\n\t\tf 3 24472 24473 -24471\n\t\tmu 0 3 24801 24803 24802\n\t\tf 3 -24473 24474 24475\n\t\tmu 0 3 24803 24801 24804\n\t\tf 3 24476 -24475 24477\n\t\tmu 0 3 24805 24804 24801\n\t\tf 3 24478 -24477 24479\n\t\tmu 0 3 24806 24804 24805\n\t\tf 3 24480 -24479 24481\n\t\tmu 0 3 24807 24804 24806\n\t\tf 3 -24481 24482 -24476\n\t\tmu 0 3 24804 24807 24803\n\t\tf 3 24483 24484 -24482\n\t\tmu 0 3 24806 24808 24807\n\t\tf 3 -24484 24485 24486\n\t\tmu 0 3 24808 24806 24809\n\t\tf 3 24487 -24486 24488\n\t\tmu 0 3 24810 24809 24806\n\t\tf 3 24489 -24488 24490\n\t\tmu 0 3 24811 24809 24810\n\t\tf 3 24491 -24490 24492\n\t\tmu 0 3 24812 24809 24811\n\t\tf 3 -24492 24493 -24487\n\t\tmu 0 3 24809 24812 24808\n\t\tf 3 24494 24495 -24493\n\t\tmu 0 3 24811 24813 24812\n\t\tf 3 24496 24497 -24491\n\t\tmu 0 3 24810 24814 24811\n\t\tf 3 24498 -24497 24499\n\t\tmu 0 3 24815 24814 24810\n\t\tf 3 24500 24501 -24500\n\t\tmu 0 3 24810 24816 24815\n\t\tf 3 -24418 -24502 24502\n\t\tmu 0 3 24817 24815 24816\n\t\tf 3 24503 24504 -24503\n\t\tmu 0 3 24816 24818 24817\n\t\tf 3 -24414 -24505 24505\n\t\tmu 0 3 24819 24817 24818\n\t\tf 3 24506 24507 -24506\n\t\tmu 0 3 24818 24820 24819\n\t\tf 3 24508 -24508 24509\n\t\tmu 0 3 24821 24819 24820\n\t\tf 3 24510 24511 -24510\n\t\tmu 0 3 24820 24822 24821\n\t\tf 3 -24311 -24512 24512\n\t\tmu 0 3 24823 24821 24822\n\t\tf 3 24513 24514 -24513\n\t\tmu 0 3 24822 24824 24823\n\t\tf 3 -24308 -24515 24515\n\t\tmu 0 3 24825 24823 24824\n\t\tf 3 24516 24517 -24516\n\t\tmu 0 3 24824 24826 24825\n\t\tf 3 -24304 -24518 24518\n\t\tmu 0 3 24827 24825 24826\n\t\tf 3 24519 24520 -24519\n\t\tmu 0 3 24826 24828 24827\n\t\tf 3 24521 -24521 24522\n\t\tmu 0 3 24829 24827 24828\n\t\tf 3 24523 24524 -24523\n\t\tmu 0 3 24828 24830 24829\n\t\tf 3 -24201 -24525 24525\n\t\tmu 0 3 24831 24829 24830\n\t\tf 3 24526 24527 -24526\n\t\tmu 0 3 24830 24832 24831\n\t\tf 3 -24198 -24528 24528\n\t\tmu 0 3 24833 24831 24832\n\t\tf 3 24529 24530 -24529\n\t\tmu 0 3 24832 24834 24833\n\t\tf 3 -24194 -24531 24531\n\t\tmu 0 3 24835 24833 24834\n\t\tf 3 24532 24533 -24532\n\t\tmu 0 3 24834 24836 24835\n\t\tf 3 24534 -24534 24535\n\t\tmu 0 3 24837 24835 24836\n\t\tf 3 24536 24537 -24536\n\t\tmu 0 3 24836 24838 24837\n\t\tf 3 -24091 -24538 24538\n\t\tmu 0 3 24839 24837 24838\n\t\tf 3 24539 24540 -24539\n\t\tmu 0 3 24838 24840 24839\n\t\tf 3 -24088 -24541 24541\n\t\tmu 0 3 24841 24839 24840\n\t\tf 3 24542 24543 -24542\n\t\tmu 0 3 24840 24842 24841\n\t\tf 3 -24084 -24544 24544\n\t\tmu 0 3 24843 24841 24842\n\t\tf 3 24545 24546 -24545\n\t\tmu 0 3 24842 24844 24843\n\t\tf 3 24547 -24547 24548\n\t\tmu 0 3 24535 24843 24844\n\t\tf 3 24549 -23787 -24549\n\t\tmu 0 3 24844 24534 24535\n\t\tf 3 -24550 24550 24551\n\t\tmu 0 3 24534 24844 24845\n\t\tf 3 24552 -23801 -24552\n\t\tmu 0 3 24845 24540 24534\n\t\tf 3 24553 -24551 24554\n\t\tmu 0 3 24846 24845 24844\n\t\tf 3 24555 24556 -24555\n\t\tmu 0 3 24844 24847 24846\n\t\tf 3 24557 -24557 24558\n\t\tmu 0 3 24848 24846 24849\n\t\tf 3 24559 24560 -24559\n\t\tmu 0 3 24850 24851 24848\n\t\tf 3 24561 -24561 24562\n\t\tmu 0 3 24852 24848 24853\n\t\tf 3 24563 24564 -24563\n\t\tmu 0 3 24854 24838 24852\n\t\tf 3 -24562 24565 24566\n\t\tmu 0 3 24848 24852 24855\n\t\tf 3 24567 24568 -24567\n\t\tmu 0 3 24855 24856 24848\n\t\tf 3 -24558 -24569 24569\n\t\tmu 0 3 24846 24848 24856\n\t\tf 3 24570 24571 -24570\n\t\tmu 0 3 24856 24857 24846\n\t\tf 3 -24554 -24572 24572\n\t\tmu 0 3 24845 24846 24857\n\t\tf 3 24573 24574 -24573\n\t\tmu 0 3 24857 24858 24845\n\t\tf 3 -24553 -24575 24575\n\t\tmu 0 3 24540 24845 24858\n\t\tf 3 24576 -23802 -24576\n\t\tmu 0 3 24858 24541 24540\n\t\tf 3 -24577 24577 24578\n\t\tmu 0 3 24541 24858 24859\n\t\tf 3 24579 -23827 -24579\n\t\tmu 0 3 24859 24550 24541\n\t\tf 3 24580 -24578 24581\n\t\tmu 0 3 24860 24859 24858\n\t\tf 3 -24574 24582 -24582\n\t\tmu 0 3 24858 24857 24860\n\t\tf 3 24583 -24583 24584\n\t\tmu 0 3 24861 24860 24857\n\t\tf 3 -24571 24585 -24585\n\t\tmu 0 3 24857 24856 24861\n\t\tf 3 24586 -24586 24587\n\t\tmu 0 3 24862 24861 24856\n\t\tf 3 -24568 24588 -24588\n\t\tmu 0 3 24856 24855 24862\n\t\tf 3 -24587 24589 24590\n\t\tmu 0 3 24861 24862 24863\n\t\tf 3 24591 24592 -24591\n\t\tmu 0 3 24863 24864 24861\n\t\tf 3 -24584 -24593 24593\n\t\tmu 0 3 24860 24861 24864\n\t\tf 3 24594 24595 -24594\n\t\tmu 0 3 24864 24865 24860\n\t\tf 3 -24581 24596 24597\n\t\tmu 0 3 24859 24860 24866\n\t\tf 3 24598 24599 -24598\n\t\tmu 0 3 24867 24868 24859\n\t\tf 3 -24580 -24600 24600\n\t\tmu 0 3 24550 24859 24868\n\t\tf 3 24601 -23828 -24601\n\t\tmu 0 3 24868 24551 24550\n\t\tf 3 -24602 24602 24603\n\t\tmu 0 3 24551 24868 24869\n\t\tf 3 24604 -23853 -24604\n\t\tmu 0 3 24869 24560 24551\n\t\tf 3 24605 -24603 24606\n\t\tmu 0 3 24870 24869 24868\n\t\tf 3 -24599 24607 -24607\n\t\tmu 0 3 24868 24871 24870\n\t\tf 3 24608 24609 24610\n\t\tmu 0 3 24872 24870 24865\n\t\tf 3 -24595 24611 -24611\n\t\tmu 0 3 24865 24864 24872\n\t\tf 3 24612 -24612 24613\n\t\tmu 0 3 24873 24872 24864\n\t\tf 3 -24592 24614 -24614\n\t\tmu 0 3 24864 24863 24873\n\t\tf 3 -24613 24615 24616\n\t\tmu 0 3 24872 24873 24627\n\t\tf 3 -24015 24617 -24617\n\t\tmu 0 3 24627 24625 24872\n\t\tf 3 -24609 -24618 24618\n\t\tmu 0 3 24870 24872 24625\n\t\tf 3 -24011 24619 -24619\n\t\tmu 0 3 24625 24623 24870\n\t\tf 3 -24606 -24620 24620\n\t\tmu 0 3 24869 24870 24623\n\t\tf 3 -24007 24621 -24621\n\t\tmu 0 3 24623 24621 24869\n\t\tf 3 -24605 -24622 24622\n\t\tmu 0 3 24560 24869 24621\n\t\tf 3 -24003 -23854 -24623\n\t\tmu 0 3 24621 24561 24560\n\t\tf 3 24623 -24590 24624\n\t\tmu 0 3 24874 24863 24862\n\t\tf 3 24625 24626 -24625\n\t\tmu 0 3 24862 24875 24874\n\t\tf 3 -24626 -24589 24627\n\t\tmu 0 3 24875 24862 24855\n\t\tf 3 24628 24629 -24628\n\t\tmu 0 3 24855 24876 24875\n\t\tf 3 -24629 -24566 24630\n\t\tmu 0 3 24876 24855 24852\n\t\tf 3 24631 24632 -24631\n\t\tmu 0 3 24852 24877 24876\n\t\tf 3 -24632 -24565 24633\n\t\tmu 0 3 24877 24852 24838\n\t\tf 3 -24537 24634 -24634\n\t\tmu 0 3 24838 24836 24877\n\t\tf 3 24635 -24635 24636\n\t\tmu 0 3 24878 24877 24836\n\t\tf 3 -24533 24637 -24637\n\t\tmu 0 3 24836 24834 24878\n\t\tf 3 24638 -24638 24639\n\t\tmu 0 3 24879 24878 24834\n\t\tf 3 -24530 24640 -24640\n\t\tmu 0 3 24834 24832 24879\n\t\tf 3 24641 -24641 24642\n\t\tmu 0 3 24880 24879 24832\n\t\tf 3 -24527 24643 -24643\n\t\tmu 0 3 24832 24830 24880\n\t\tf 3 -24642 24644 24645\n\t\tmu 0 3 24879 24880 24881\n\t\tf 3 24646 24647 -24646\n\t\tmu 0 3 24881 24882 24879\n\t\tf 3 -24639 -24648 24648\n\t\tmu 0 3 24878 24879 24882\n\t\tf 3 24649 24650 -24649\n\t\tmu 0 3 24882 24883 24878\n\t\tf 3 -24636 -24651 24651\n\t\tmu 0 3 24877 24878 24883\n\t\tf 3 24652 -24633 -24652\n\t\tmu 0 3 24883 24876 24877\n\t\tf 3 24653 -24630 24654\n\t\tmu 0 3 24884 24875 24876\n\t\tf 3 -24653 24655 -24655\n\t\tmu 0 3 24876 24883 24884\n\t\tf 3 24656 -24656 24657\n\t\tmu 0 3 24885 24884 24883\n\t\tf 3 -24650 24658 -24658\n\t\tmu 0 3 24883 24882 24885\n\t\tf 3 24659 -24659 24660\n\t\tmu 0 3 24886 24885 24882\n\t\tf 3 -24647 24661 -24661\n\t\tmu 0 3 24882 24881 24886\n\t\tf 3 -24660 24662 24663\n\t\tmu 0 3 24885 24886 24887\n\t\tf 3 24664 24665 -24664\n\t\tmu 0 3 24887 24888 24885\n\t\tf 3 -24657 -24666 24666\n\t\tmu 0 3 24884 24885 24888\n\t\tf 3 24667 24668 -24667\n\t\tmu 0 3 24888 24889 24884\n\t\tf 3 -24654 -24669 24669\n\t\tmu 0 3 24875 24884 24889\n\t\tf 3 24670 -24627 -24670\n\t\tmu 0 3 24889 24874 24875\n\t\tf 3 -24671 24671 24672\n\t\tmu 0 3 24874 24889 24890\n\t\tf 3 24673 24674 -24673\n\t\tmu 0 3 24890 24891 24874\n\t\tf 3 -24624 -24675 24675\n\t\tmu 0 3 24863 24874 24891\n\t\tf 3 24676 -24615 -24676\n\t\tmu 0 3 24891 24873 24863\n\t\tf 3 24677 -24672 24678\n\t\tmu 0 3 24892 24890 24889\n\t\tf 3 -24668 24679 -24679\n\t\tmu 0 3 24889 24888 24892\n\t\tf 3 24680 -24680 24681\n\t\tmu 0 3 24893 24892 24888\n\t\tf 3 -24665 24682 -24682\n\t\tmu 0 3 24888 24887 24893\n\t\tf 3 -24681 24683 24684\n\t\tmu 0 3 24892 24893 24672\n\t\tf 3 -24127 24685 -24685\n\t\tmu 0 3 24672 24670 24892\n\t\tf 3 -24678 -24686 24686\n\t\tmu 0 3 24890 24892 24670\n\t\tf 3 -24123 24687 -24687\n\t\tmu 0 3 24670 24668 24890\n\t\tf 3 -24674 -24688 24688\n\t\tmu 0 3 24891 24890 24668\n\t\tf 3 -24119 24689 -24689\n\t\tmu 0 3 24668 24666 24891\n\t\tf 3 -24677 -24690 24690\n\t\tmu 0 3 24873 24891 24666\n\t\tf 3 -24115 -24616 -24691\n\t\tmu 0 3 24666 24627 24873\n\t\tf 3 24691 -24663 24692\n\t\tmu 0 3 24894 24887 24886\n\t\tf 3 24693 24694 -24693\n\t\tmu 0 3 24886 24895 24894\n\t\tf 3 -24694 -24662 24695\n\t\tmu 0 3 24895 24886 24881\n\t\tf 3 24696 24697 -24696\n\t\tmu 0 3 24881 24896 24895\n\t\tf 3 -24697 -24645 24698\n\t\tmu 0 3 24896 24881 24880\n\t\tf 3 24699 24700 -24699\n\t\tmu 0 3 24880 24897 24896\n\t\tf 3 -24700 -24644 24701\n\t\tmu 0 3 24897 24880 24830\n\t\tf 3 -24524 24702 -24702\n\t\tmu 0 3 24830 24828 24897\n\t\tf 3 24703 -24703 24704\n\t\tmu 0 3 24898 24897 24828\n\t\tf 3 -24520 24705 -24705\n\t\tmu 0 3 24828 24826 24898\n\t\tf 3 24706 -24706 24707\n\t\tmu 0 3 24899 24898 24826\n\t\tf 3 -24517 24708 -24708\n\t\tmu 0 3 24826 24824 24899\n\t\tf 3 24709 -24709 24710\n\t\tmu 0 3 24900 24899 24824\n\t\tf 3 -24514 24711 -24711\n\t\tmu 0 3 24824 24822 24900\n\t\tf 3 -24710 24712 24713\n\t\tmu 0 3 24899 24900 24901\n\t\tf 3 24714 24715 -24714\n\t\tmu 0 3 24901 24902 24899\n\t\tf 3 -24707 -24716 24716\n\t\tmu 0 3 24898 24899 24902\n\t\tf 3 24717 24718 -24717\n\t\tmu 0 3 24902 24903 24898\n\t\tf 3 -24704 -24719 24719\n\t\tmu 0 3 24897 24898 24903\n\t\tf 3 24720 -24701 -24720\n\t\tmu 0 3 24903 24896 24897\n\t\tf 3 24721 -24698 24722\n\t\tmu 0 3 24904 24895 24896\n\t\tf 3 -24721 24723 -24723\n\t\tmu 0 3 24896 24903 24904\n\t\tf 3 24724 -24724 24725\n\t\tmu 0 3 24905 24904 24903\n\t\tf 3 -24718 24726 -24726\n\t\tmu 0 3 24903 24902 24905\n\t\tf 3 24727 -24727 24728\n\t\tmu 0 3 24906 24905 24902\n\t\tf 3 -24715 24729 -24729\n\t\tmu 0 3 24902 24901 24906\n\t\tf 3 -24728 24730 24731\n\t\tmu 0 3 24905 24906 24907\n\t\tf 3 24732 24733 -24732\n\t\tmu 0 3 24907 24908 24905\n\t\tf 3 -24725 -24734 24734\n\t\tmu 0 3 24904 24905 24908\n\t\tf 3 24735 24736 -24735\n\t\tmu 0 3 24908 24909 24904\n\t\tf 3 -24722 -24737 24737\n\t\tmu 0 3 24895 24904 24909\n\t\tf 3 24738 -24695 -24738\n\t\tmu 0 3 24909 24894 24895\n\t\tf 3 -24739 24739 24740\n\t\tmu 0 3 24894 24909 24910\n\t\tf 3 24741 24742 -24741\n\t\tmu 0 3 24910 24911 24894\n\t\tf 3 -24692 -24743 24743\n\t\tmu 0 3 24887 24894 24911\n\t\tf 3 24744 -24683 -24744\n\t\tmu 0 3 24911 24893 24887\n\t\tf 3 24745 -24740 24746\n\t\tmu 0 3 24912 24910 24909\n\t\tf 3 -24736 24747 -24747\n\t\tmu 0 3 24909 24908 24912\n\t\tf 3 24748 -24748 24749\n\t\tmu 0 3 24913 24912 24908\n\t\tf 3 -24733 24750 -24750\n\t\tmu 0 3 24908 24907 24913\n\t\tf 3 -24749 24751 24752\n\t\tmu 0 3 24912 24913 24714\n\t\tf 3 -24237 24753 -24753\n\t\tmu 0 3 24714 24712 24912\n\t\tf 3 -24746 -24754 24754\n\t\tmu 0 3 24910 24912 24712\n\t\tf 3 -24233 24755 -24755\n\t\tmu 0 3 24712 24710 24910\n\t\tf 3 -24742 -24756 24756\n\t\tmu 0 3 24911 24910 24710\n\t\tf 3 -24229 24757 -24757\n\t\tmu 0 3 24710 24708 24911\n\t\tf 3 -24745 -24758 24758\n\t\tmu 0 3 24893 24911 24708\n\t\tf 3 -24225 -24684 -24759\n\t\tmu 0 3 24708 24672 24893\n\t\tf 3 24759 -24731 24760\n\t\tmu 0 3 24914 24907 24906\n\t\tf 3 24761 24762 -24761\n\t\tmu 0 3 24906 24915 24914\n\t\tf 3 -24762 -24730 24763\n\t\tmu 0 3 24915 24906 24901\n\t\tf 3 24764 24765 -24764\n\t\tmu 0 3 24901 24916 24915\n\t\tf 3 -24765 -24713 24766\n\t\tmu 0 3 24916 24901 24900\n\t\tf 3 24767 24768 -24767\n\t\tmu 0 3 24900 24917 24916\n\t\tf 3 -24768 -24712 24769\n\t\tmu 0 3 24917 24900 24822\n\t\tf 3 -24511 24770 -24770\n\t\tmu 0 3 24822 24820 24917\n\t\tf 3 24771 -24771 24772\n\t\tmu 0 3 24918 24917 24820\n\t\tf 3 -24507 24773 -24773\n\t\tmu 0 3 24820 24818 24918\n\t\tf 3 24774 -24774 24775\n\t\tmu 0 3 24919 24918 24818\n\t\tf 3 -24504 24776 -24776\n\t\tmu 0 3 24818 24816 24919\n\t\tf 3 24777 -24777 24778\n\t\tmu 0 3 24920 24919 24816\n\t\tf 3 -24501 24779 -24779\n\t\tmu 0 3 24816 24810 24920\n\t\tf 3 -24778 24780 24781\n\t\tmu 0 3 24919 24920 24805\n\t\tf 3 24782 24783 -24782\n\t\tmu 0 3 24805 24921 24919\n\t\tf 3 -24775 -24784 24784\n\t\tmu 0 3 24918 24919 24921\n\t\tf 3 24785 24786 -24785\n\t\tmu 0 3 24921 24922 24918\n\t\tf 3 -24772 -24787 24787\n\t\tmu 0 3 24917 24918 24922\n\t\tf 3 24788 -24769 -24788\n\t\tmu 0 3 24922 24916 24917\n\t\tf 3 24789 -24766 24790\n\t\tmu 0 3 24923 24915 24916\n\t\tf 3 -24789 24791 -24791\n\t\tmu 0 3 24916 24922 24923\n\t\tf 3 24792 -24792 24793\n\t\tmu 0 3 24924 24923 24922\n\t\tf 3 -24786 24794 -24794\n\t\tmu 0 3 24922 24921 24924\n\t\tf 3 -24783 24795 24796\n\t\tmu 0 3 24921 24805 24925\n\t\tf 3 24797 -24795 -24797\n\t\tmu 0 3 24925 24924 24921\n\t\tf 3 -24798 24798 24799\n\t\tmu 0 3 24924 24925 24800\n\t\tf 3 24800 24801 -24800\n\t\tmu 0 3 24800 24926 24924\n\t\tf 3 -24793 -24802 24802\n\t\tmu 0 3 24923 24924 24926\n\t\tf 3 24803 24804 -24803\n\t\tmu 0 3 24926 24927 24923\n\t\tf 3 -24790 -24805 24805\n\t\tmu 0 3 24915 24923 24927\n\t\tf 3 24806 -24763 -24806\n\t\tmu 0 3 24927 24914 24915\n\t\tf 3 -24807 24807 24808\n\t\tmu 0 3 24914 24927 24928\n\t\tf 3 24809 24810 -24809\n\t\tmu 0 3 24928 24929 24914\n\t\tf 3 -24760 -24811 24811\n\t\tmu 0 3 24907 24914 24929\n\t\tf 3 24812 -24751 -24812\n\t\tmu 0 3 24929 24913 24907\n\t\tf 3 24813 -24808 24814\n\t\tmu 0 3 24930 24928 24927\n\t\tf 3 -24804 24815 -24815\n\t\tmu 0 3 24927 24926 24930\n\t\tf 3 -24801 24816 24817\n\t\tmu 0 3 24926 24800 24931\n\t\tf 3 24818 -24816 -24818\n\t\tmu 0 3 24931 24930 24926\n\t\tf 3 -24819 24819 24820\n\t\tmu 0 3 24930 24931 24756\n\t\tf 3 -24347 24821 -24821\n\t\tmu 0 3 24756 24754 24930\n\t\tf 3 -24814 -24822 24822\n\t\tmu 0 3 24928 24930 24754\n\t\tf 3 -24343 24823 -24823\n\t\tmu 0 3 24754 24752 24928\n\t\tf 3 -24810 -24824 24824\n\t\tmu 0 3 24929 24928 24752\n\t\tf 3 -24339 24825 -24825\n\t\tmu 0 3 24752 24750 24929\n\t\tf 3 -24813 -24826 24826\n\t\tmu 0 3 24913 24929 24750\n\t\tf 3 -24335 -24752 -24827\n\t\tmu 0 3 24750 24714 24913\n\t\tf 3 -24799 24827 -24469\n\t\tmu 0 3 24800 24925 24801\n\t\tf 3 -24828 -24796 -24478\n\t\tmu 0 3 24801 24925 24805\n\t\tf 3 -24454 -24820 24828\n\t\tmu 0 3 24795 24756 24931\n\t\tf 3 24829 -24460 -24829\n\t\tmu 0 3 24931 24797 24795\n\t\tf 3 -24830 -24817 -24467\n\t\tmu 0 3 24797 24931 24800\n\t\tf 3 -24781 24830 -24480\n\t\tmu 0 3 24805 24920 24806\n\t\tf 3 -24831 -24780 -24489\n\t\tmu 0 3 24806 24920 24810\n\t\tf 3 -24548 -23978 24831\n\t\tmu 0 3 24932 24933 24601\n\t\tf 3 -23980 -24085 -24832\n\t\tmu 0 3 24601 24613 24932\n\t\tf 3 -24535 -24089 24832\n\t\tmu 0 3 24934 24935 24649\n\t\tf 3 -24092 -24195 -24833\n\t\tmu 0 3 24649 24658 24934\n\t\tf 3 -24522 -24199 24833\n\t\tmu 0 3 24936 24937 24691\n\t\tf 3 -24202 -24305 -24834\n\t\tmu 0 3 24691 24700 24936\n\t\tf 3 -24509 -24309 24834\n\t\tmu 0 3 24938 24939 24733\n\t\tf 3 -24312 -24415 -24835\n\t\tmu 0 3 24733 24742 24938\n\t\tf 3 -24405 24835 24836\n\t\tmu 0 3 24776 24940 24941\n\t\tf 3 -24499 -24416 -24837\n\t\tmu 0 3 24941 24942 24776\n\t\tf 3 24837 -24382 -24433\n\t\tmu 0 3 24784 24768 24763\n\t\tf 3 -24385 -24838 -24425\n\t\tmu 0 3 24769 24768 24784\n\t\tf 3 24838 -24423 24839\n\t\tmu 0 3 24943 24782 24783\n\t\tf 3 -24426 24840 -24840\n\t\tmu 0 3 24783 24785 24943\n\t\tf 3 -24839 24841 24842\n\t\tmu 0 3 24782 24943 24944\n\t\tf 3 24843 24844 -24843\n\t\tmu 0 3 24944 24945 24782\n\t\tf 3 -24845 24845 -24421\n\t\tmu 0 3 24782 24945 24775\n\t\tf 3 -24846 24846 24847\n\t\tmu 0 3 24775 24945 24946\n\t\tf 3 -24498 -24836 -24848\n\t\tmu 0 3 24946 24947 24775\n\t\tf 3 -24844 24848 24849\n\t\tmu 0 3 24945 24944 24948\n\t\tf 3 -24495 -24847 -24850\n\t\tmu 0 3 24948 24949 24945\n\t\tf 3 24850 24851 -23635\n\t\tmu 0 3 24462 24950 24471\n\t\tf 3 -23665 -24852 24852\n\t\tmu 0 3 24482 24471 24950\n\t\tf 3 24853 24854 -24853\n\t\tmu 0 3 24950 24951 24482\n\t\tf 3 -24854 24855 24856\n\t\tmu 0 3 24951 24950 24952\n\t\tf 3 24857 24858 -24857\n\t\tmu 0 3 24952 24953 24951\n\t\tf 3 -24851 -23617 24859\n\t\tmu 0 3 24950 24462 24464\n\t\tf 3 24860 -24856 -24860\n\t\tmu 0 3 24464 24952 24950\n\t\tf 3 -24861 -23633 24861\n\t\tmu 0 3 24952 24464 24470\n\t\tf 3 24862 24863 -24862\n\t\tmu 0 3 24470 24954 24952\n\t\tf 3 -24858 -24864 24864\n\t\tmu 0 3 24953 24952 24954\n\t\tf 3 24865 24866 -24865\n\t\tmu 0 3 24954 24955 24953\n\t\tf 3 -24866 24867 24868\n\t\tmu 0 3 24956 24957 24958\n\t\tf 3 24869 24870 -24869\n\t\tmu 0 3 24958 24959 24956\n\t\tf 3 -24870 24871 24872\n\t\tmu 0 3 24959 24958 24960\n\t\tf 3 24873 -24872 24874\n\t\tmu 0 3 24494 24960 24958\n\t\tf 3 24875 -23694 -24875\n\t\tmu 0 3 24958 24496 24494\n\t\tf 3 -24876 -24868 24876\n\t\tmu 0 3 24496 24958 24961\n\t\tf 3 -24863 -23698 -24877\n\t\tmu 0 3 24961 24962 24496\n\t\tf 3 24877 24878 -24873\n\t\tmu 0 3 24960 24963 24959\n\t\tf 3 -24878 24879 24880\n\t\tmu 0 3 24963 24960 24964\n\t\tf 3 24881 24882 -24881\n\t\tmu 0 3 24964 24965 24963\n\t\tf 3 -24874 -23690 24883\n\t\tmu 0 3 24960 24494 24492\n\t\tf 3 24884 -24880 -24884\n\t\tmu 0 3 24492 24964 24960\n\t\tf 3 -24885 -23686 24885\n\t\tmu 0 3 24964 24492 24490\n\t\tf 3 24886 24887 -24886\n\t\tmu 0 3 24490 24966 24964\n\t\tf 3 -24882 -24888 24888\n\t\tmu 0 3 24965 24964 24966\n\t\tf 3 24889 24890 -24889\n\t\tmu 0 3 24966 24967 24965\n\t\tf 3 -24890 24891 24892\n\t\tmu 0 3 24967 24966 24968\n\t\tf 3 24893 24894 -24893\n\t\tmu 0 3 24968 24969 24967\n\t\tf 3 -24887 -23682 24895\n\t\tmu 0 3 24966 24490 24488\n\t\tf 3 24896 -24892 -24896\n\t\tmu 0 3 24488 24968 24966\n\t\tf 3 -24897 -23678 24897\n\t\tmu 0 3 24968 24488 24486\n\t\tf 3 24898 24899 -24898\n\t\tmu 0 3 24486 24970 24968\n\t\tf 3 -24894 -24900 24900\n\t\tmu 0 3 24969 24968 24970\n\t\tf 3 24901 24902 -24901\n\t\tmu 0 3 24970 24971 24969\n\t\tf 3 -24902 24903 24904\n\t\tmu 0 3 24971 24970 24483\n\t\tf 3 24905 24906 -24905\n\t\tmu 0 3 24483 24972 24971\n\t\tf 3 -24899 -23674 24907\n\t\tmu 0 3 24970 24486 24484\n\t\tf 3 -23669 -24904 -24908\n\t\tmu 0 3 24484 24483 24970\n\t\tf 3 -24906 -23667 24908\n\t\tmu 0 3 24972 24483 24480\n\t\tf 3 -23655 24909 -24909\n\t\tmu 0 3 24480 24481 24972\n\t\tf 3 24910 -23563 24911\n\t\tmu 0 3 24973 24441 24442\n\t\tf 3 24912 24913 -24912\n\t\tmu 0 3 24442 24974 24973\n\t\tf 3 24914 -24914 24915\n\t\tmu 0 3 24975 24973 24974\n\t\tf 3 24916 24917 -24916\n\t\tmu 0 3 24974 24976 24975\n\t\tf 3 24918 -24918 24919\n\t\tmu 0 3 24977 24975 24976\n\t\tf 3 24920 24921 -24920\n\t\tmu 0 3 24976 24978 24977\n\t\tf 3 24922 -24922 24923\n\t\tmu 0 3 24570 24977 24978\n\t\tf 3 24924 -23879 -24924\n\t\tmu 0 3 24978 24569 24570\n\t\tf 3 -24923 -23892 24925\n\t\tmu 0 3 24977 24570 24575\n\t\tf 3 24926 24927 -24926\n\t\tmu 0 3 24575 24979 24977\n\t\tf 3 -24919 -24928 24928\n\t\tmu 0 3 24975 24977 24979\n\t\tf 3 24929 24930 -24929\n\t\tmu 0 3 24979 24980 24975\n\t\tf 3 -24915 -24931 24931\n\t\tmu 0 3 24973 24975 24980\n\t\tf 3 24932 24933 -24932\n\t\tmu 0 3 24980 24981 24973\n\t\tf 3 -24911 -24934 24934\n\t\tmu 0 3 24441 24973 24981\n\t\tf 3 24935 -23564 -24935\n\t\tmu 0 3 24981 24443 24441\n\t\tf 3 -24936 24936 24937\n\t\tmu 0 3 24443 24981 24982\n\t\tf 3 24938 -23583 -24938\n\t\tmu 0 3 24982 24450 24443\n\t\tf 3 24939 -24937 24940\n\t\tmu 0 3 24983 24982 24981\n\t\tf 3 -24933 24941 -24941\n\t\tmu 0 3 24981 24980 24983\n\t\tf 3 24942 -24942 24943\n\t\tmu 0 3 24984 24983 24980\n\t\tf 3 -24930 24944 -24944\n\t\tmu 0 3 24980 24979 24984\n\t\tf 3 24945 -24945 24946\n\t\tmu 0 3 24577 24984 24979\n\t\tf 3 -24927 -23896 -24947\n\t\tmu 0 3 24979 24575 24577\n\t\tf 3 -24946 -23918 24947\n\t\tmu 0 3 24984 24577 24585\n\t\tf 3 24948 24949 -24948\n\t\tmu 0 3 24585 24985 24984\n\t\tf 3 -24943 -24950 24950\n\t\tmu 0 3 24983 24984 24985\n\t\tf 3 24951 24952 -24951\n\t\tmu 0 3 24985 24986 24983\n\t\tf 3 -24940 -24953 24953\n\t\tmu 0 3 24982 24983 24986\n\t\tf 3 24954 24955 -24954\n\t\tmu 0 3 24986 24987 24982\n\t\tf 3 -24939 -24956 24956\n\t\tmu 0 3 24450 24982 24987\n\t\tf 3 24957 -23584 -24957\n\t\tmu 0 3 24987 24451 24450\n\t\tf 3 -24958 24958 24959\n\t\tmu 0 3 24451 24987 24988\n\t\tf 3 24960 -23603 -24960\n\t\tmu 0 3 24988 24458 24451\n\t\tf 3 24961 -24959 24962\n\t\tmu 0 3 24989 24988 24987\n\t\tf 3 -24955 24963 -24963\n\t\tmu 0 3 24987 24986 24989\n\t\tf 3 24964 -24964 24965\n\t\tmu 0 3 24990 24989 24986\n\t\tf 3 -24952 24966 -24966\n\t\tmu 0 3 24986 24985 24990\n\t\tf 3 24967 -24967 24968\n\t\tmu 0 3 24587 24990 24985\n\t\tf 3 -24949 -23922 -24969\n\t\tmu 0 3 24985 24585 24587\n\t\tf 3 -24968 -23944 24969\n\t\tmu 0 3 24990 24587 24595\n\t\tf 3 24970 24971 -24970\n\t\tmu 0 3 24595 24991 24990\n\t\tf 3 -24965 -24972 24972\n\t\tmu 0 3 24989 24990 24991\n\t\tf 3 24973 24974 -24973\n\t\tmu 0 3 24991 24992 24989\n\t\tf 3 -24962 -24975 24975\n\t\tmu 0 3 24988 24989 24992\n\t\tf 3 24976 24977 -24976\n\t\tmu 0 3 24992 24993 24988\n\t\tf 3 -24961 -24978 24978\n\t\tmu 0 3 24458 24988 24993\n\t\tf 3 24979 -23604 -24979\n\t\tmu 0 3 24993 24459 24458\n\t\tf 3 -24980 24980 24981\n\t\tmu 0 3 24459 24993 24994\n\t\tf 3 24982 -23623 -24982\n\t\tmu 0 3 24994 24466 24459\n\t\tf 3 24983 -24981 24984\n\t\tmu 0 3 24995 24994 24993\n\t\tf 3 -24977 24985 -24985\n\t\tmu 0 3 24993 24992 24995\n\t\tf 3 24986 -24986 24987\n\t\tmu 0 3 24996 24995 24992\n\t\tf 3 -24974 24988 -24988\n\t\tmu 0 3 24992 24991 24996\n\t\tf 3 24989 -24989 24990\n\t\tmu 0 3 24597 24996 24991\n\t\tf 3 -24971 -23948 -24991\n\t\tmu 0 3 24991 24595 24597\n\t\tf 3 -24990 -23970 24991\n\t\tmu 0 3 24996 24597 24605\n\t\tf 3 24992 24993 -24992\n\t\tmu 0 3 24605 24997 24996\n\t\tf 3 -24987 -24994 24994\n\t\tmu 0 3 24995 24996 24997\n\t\tf 3 24995 24996 -24995\n\t\tmu 0 3 24997 24998 24995\n\t\tf 3 -24984 -24997 24997\n\t\tmu 0 3 24994 24995 24998\n\t\tf 3 24998 24999 -24998\n\t\tmu 0 3 24998 24999 24994\n\t\tf 3 -24983 -25000 25000\n\t\tmu 0 3 24466 24994 24999\n\t\tf 3 25001 -23624 -25001\n\t\tmu 0 3 24999 24467 24466\n\t\tf 3 -25002 25002 25003\n\t\tmu 0 3 24467 24999 25000\n\t\tf 3 -23758 -23709 -25004\n\t\tmu 0 3 25000 25001 24467\n\t\tf 3 -24999 25004 25005\n\t\tmu 0 3 24999 24998 25002\n\t\tf 3 -23762 -25003 -25006\n\t\tmu 0 3 25002 25003 24999\n\t\tf 3 -24996 25006 25007\n\t\tmu 0 3 24998 24997 25004\n\t\tf 3 -23766 -25005 -25008\n\t\tmu 0 3 25004 25005 24998\n\t\tf 3 -24993 -23973 25008\n\t\tmu 0 3 24997 24605 25006\n\t\tf 3 -23770 -25007 -25009\n\t\tmu 0 3 25006 25007 24997\n\t\tf 3 25009 -23756 25010\n\t\tmu 0 3 25008 24519 24520\n\t\tf 3 -23760 25011 -25011\n\t\tmu 0 3 24520 24522 25008\n\t\tf 3 25012 -25012 25013\n\t\tmu 0 3 25009 25008 24522\n\t\tf 3 -23764 25014 -25014\n\t\tmu 0 3 24522 24524 25009\n\t\tf 3 25015 -25015 -23792\n\t\tmu 0 3 24537 25009 24524\n\t\tf 3 -25016 -23814 25016\n\t\tmu 0 3 25009 24537 24545\n\t\tf 3 25017 25018 -25017\n\t\tmu 0 3 24545 25010 25009\n\t\tf 3 -25013 -25019 25019\n\t\tmu 0 3 25008 25009 25010\n\t\tf 3 25020 25021 -25020\n\t\tmu 0 3 25010 25011 25008\n\t\tf 3 -25010 -25022 25022\n\t\tmu 0 3 24519 25008 25011\n\t\tf 3 25023 -23753 -25023\n\t\tmu 0 3 25011 24518 24519\n\t\tf 3 -25024 25024 25025\n\t\tmu 0 3 24518 25011 25012\n\t\tf 3 25026 -23750 -25026\n\t\tmu 0 3 25012 24517 24518\n\t\tf 3 25027 -25025 25028\n\t\tmu 0 3 25013 25012 25011\n\t\tf 3 -25021 25029 -25029\n\t\tmu 0 3 25011 25010 25013\n\t\tf 3 25030 -25030 25031\n\t\tmu 0 3 24547 25013 25010\n\t\tf 3 -25018 -23818 -25032\n\t\tmu 0 3 25010 24545 24547\n\t\tf 3 -25031 -23840 25032\n\t\tmu 0 3 25013 24547 24555\n\t\tf 3 25033 25034 -25033\n\t\tmu 0 3 24555 25014 25013\n\t\tf 3 -25028 -25035 25035\n\t\tmu 0 3 25012 25013 25014\n\t\tf 3 25036 25037 -25036\n\t\tmu 0 3 25014 25015 25012\n\t\tf 3 -25027 -25038 25038\n\t\tmu 0 3 24517 25012 25015\n\t\tf 3 25039 25040 -25039\n\t\tmu 0 3 25015 25016 24517\n\t\tf 3 -23747 -25041 25041\n\t\tmu 0 3 24512 24517 25016\n\t\tf 3 25042 -23731 -25042\n\t\tmu 0 3 25016 24513 24512\n\t\tf 3 -25043 25043 25044\n\t\tmu 0 3 24513 25016 25017\n\t\tf 3 25045 -23742 -25045\n\t\tmu 0 3 25017 24516 24513\n\t\tf 3 25046 -25044 25047\n\t\tmu 0 3 25018 25017 25016\n\t\tf 3 -25040 25048 -25048\n\t\tmu 0 3 25016 25015 25018\n\t\tf 3 25049 -25049 25050\n\t\tmu 0 3 25019 25018 25015\n\t\tf 3 -25037 25051 -25051\n\t\tmu 0 3 25015 25014 25019\n\t\tf 3 25052 -25052 25053\n\t\tmu 0 3 24557 25019 25014\n\t\tf 3 -25034 -23844 -25054\n\t\tmu 0 3 25014 24555 24557\n\t\tf 3 -25053 -23877 25054\n\t\tmu 0 3 25019 24557 24569\n\t\tf 3 -24925 25055 -25055\n\t\tmu 0 3 24569 24978 25019\n\t\tf 3 -25050 -25056 25056\n\t\tmu 0 3 25018 25019 24978\n\t\tf 3 -24921 25057 -25057\n\t\tmu 0 3 24978 24976 25018\n\t\tf 3 -25047 -25058 25058\n\t\tmu 0 3 25017 25018 24976\n\t\tf 3 -24917 25059 -25059\n\t\tmu 0 3 24976 24974 25017\n\t\tf 3 -25046 -25060 25060\n\t\tmu 0 3 24516 25017 24974\n\t\tf 3 -24913 -23743 -25061\n\t\tmu 0 3 24974 24442 24516\n\t\tf 3 25061 25062 25063\n\t\tmu 0 3 25020 25021 25022\n\t\tf 3 25064 25065 -25064\n\t\tmu 0 3 25023 25024 25025\n\t\tf 3 -25063 25066 25067\n\t\tmu 0 3 25026 25027 25028\n\t\tf 3 25068 25069 -25068\n\t\tmu 0 3 25029 25030 25031\n\t\tf 3 -25069 25070 25071\n\t\tmu 0 3 25032 25033 25034\n\t\tf 3 25072 25073 -25072\n\t\tmu 0 3 25035 25036 25037\n\t\tf 3 25074 -25071 25075\n\t\tmu 0 3 25038 25039 25040\n\t\tf 3 25076 25077 -25076\n\t\tmu 0 3 25041 25042 25043\n\t\tf 3 -25077 -25067 25078\n\t\tmu 0 3 25044 25045 25046\n\t\tf 3 25079 25080 -25079\n\t\tmu 0 3 25047 25048 25049\n\t\tf 3 -25080 -25062 25081\n\t\tmu 0 3 25050 25051 25052\n\t\tf 3 25082 25083 -25082\n\t\tmu 0 3 25053 25054 25055\n\t\tf 3 25084 -25084 25085\n\t\tmu 0 3 25056 25057 25058\n\t\tf 3 25086 25087 -25086\n\t\tmu 0 3 25059 25060 25061\n\t\tf 3 -25085 25088 25089\n\t\tmu 0 3 25062 25063 25064\n\t\tf 3 25090 -25081 -25090\n\t\tmu 0 3 25065 25066 25067\n\t\tf 3 -25091 25091 25092\n\t\tmu 0 3 25068 25069 25070\n\t\tf 3 25093 -25078 -25093\n\t\tmu 0 3 25071 25072 25073\n\t\tf 3 25094 -25092 25095\n\t\tmu 0 3 25074 25075 25076\n\t\tf 3 25096 25097 -25096\n\t\tmu 0 3 25077 25078 25079\n\t\tf 3 -25097 -25089 25098\n\t\tmu 0 3 25080 25081 25082\n\t\tf 3 25099 25100 -25099\n\t\tmu 0 3 25083 25084 25085\n\t\tf 3 -25100 -25088 25101\n\t\tmu 0 3 25086 25087 25088\n\t\tf 3 25102 25103 -25102\n\t\tmu 0 3 25089 25090 25091\n\t\tf 3 25104 -25104 25105\n\t\tmu 0 3 25092 25093 25094\n\t\tf 3 25106 25107 -25106\n\t\tmu 0 3 25095 25096 25097\n\t\tf 3 -25105 25108 25109\n\t\tmu 0 3 25098 25099 25100\n\t\tf 3 25110 -25101 -25110\n\t\tmu 0 3 25101 25102 25103\n\t\tf 3 -25111 25111 25112\n\t\tmu 0 3 25104 25105 25106\n\t\tf 3 25113 -25098 -25113\n\t\tmu 0 3 25107 25108 25109\n\t\tf 3 25114 -25112 25115\n\t\tmu 0 3 25110 25111 25112\n\t\tf 3 25116 25117 -25116\n\t\tmu 0 3 25113 25114 25115\n\t\tf 3 -25117 -25109 25118\n\t\tmu 0 3 25116 25117 25118\n\t\tf 3 25119 25120 -25119\n\t\tmu 0 3 25119 25120 25121\n\t\tf 3 -25120 -25108 25121\n\t\tmu 0 3 25122 25123 25124\n\t\tf 3 25122 25123 -25122\n\t\tmu 0 3 25125 25126 25127\n\t\tf 3 25124 -25124 25125\n\t\tmu 0 3 25128 25129 25130\n\t\tf 3 25126 25127 -25126\n\t\tmu 0 3 25131 25132 25133\n\t\tf 3 -25125 25128 25129\n\t\tmu 0 3 25134 25135 25136\n\t\tf 3 25130 -25121 -25130\n\t\tmu 0 3 25137 25138 25139\n\t\tf 3 -25131 25131 25132\n\t\tmu 0 3 25140 25141 25142\n\t\tf 3 25133 -25118 -25133\n\t\tmu 0 3 25143 25144 25145\n\t\tf 3 25134 -25132 25135\n\t\tmu 0 3 25146 25147 25148\n\t\tf 3 25136 25137 -25136\n\t\tmu 0 3 25149 25150 25151\n\t\tf 3 -25137 -25129 25138\n\t\tmu 0 3 25152 25153 25154\n\t\tf 3 25139 25140 -25139\n\t\tmu 0 3 25155 25156 25157\n\t\tf 3 -25140 -25128 25141\n\t\tmu 0 3 25158 25159 25160\n\t\tf 3 25142 25143 -25142\n\t\tmu 0 3 25161 25162 25163\n\t\tf 3 -25115 25144 25145\n\t\tmu 0 3 25164 25165 25166\n\t\tf 3 25146 25147 -25146\n\t\tmu 0 3 25167 25168 25169\n\t\tf 3 -25114 -25148 25148\n\t\tmu 0 3 25170 25171 25172\n\t\tf 3 25149 25150 -25149\n\t\tmu 0 3 25173 25174 25175\n\t\tf 3 -25095 -25151 25151\n\t\tmu 0 3 25176 25177 25178\n\t\tf 3 25152 25153 -25152\n\t\tmu 0 3 25179 25180 25181\n\t\tf 3 -25094 -25154 25154\n\t\tmu 0 3 25182 25183 25184\n\t\tf 3 25155 25156 -25155\n\t\tmu 0 3 25185 25186 25187\n\t\tf 3 -25075 -25157 25157\n\t\tmu 0 3 25188 25189 25190\n\t\tf 3 25158 25159 -25158\n\t\tmu 0 3 25191 25192 25193\n\t\tf 3 -25073 -25160 25160\n\t\tmu 0 3 25194 25195 25196\n\t\tf 3 25161 25162 -25161\n\t\tmu 0 3 25197 25198 25199\n\t\tf 3 -25162 25163 25164\n\t\tmu 0 3 25200 25201 25202\n\t\tf 3 25165 25166 -25165\n\t\tmu 0 3 25203 25204 25205\n\t\tf 3 -25166 25167 25168\n\t\tmu 0 3 25206 25207 25208\n\t\tf 3 25169 25170 -25169\n\t\tmu 0 3 25209 25210 25211\n\t\tf 3 -25170 25171 25172\n\t\tmu 0 3 25212 25213 25214\n\t\tf 3 25173 25174 -25173\n\t\tmu 0 3 25215 25216 25217\n\t\tf 3 25175 -25172 25176\n\t\tmu 0 3 25218 25219 25220\n\t\tf 3 25177 25178 -25177\n\t\tmu 0 3 25221 25222 25223\n\t\tf 3 -25178 -25168 25179\n\t\tmu 0 3 25224 25225 25226\n\t\tf 3 25180 25181 -25180\n\t\tmu 0 3 25227 25228 25229\n\t\tf 3 -25181 -25164 25182\n\t\tmu 0 3 25230 25231 25232\n\t\tf 3 -25159 25183 -25183\n\t\tmu 0 3 25233 25234 25235\n\t\tf 3 -25156 25184 25185\n\t\tmu 0 3 25236 25237 25238\n\t\tf 3 25186 -25184 -25186\n\t\tmu 0 3 25239 25240 25241;\n\tsetAttr \".fc[13500:13999]\"\n\t\tf 3 -25187 25187 25188\n\t\tmu 0 3 25242 25243 25244\n\t\tf 3 25189 -25182 -25189\n\t\tmu 0 3 25245 25246 25247\n\t\tf 3 -25190 25190 25191\n\t\tmu 0 3 25248 25249 25250\n\t\tf 3 25192 -25179 -25192\n\t\tmu 0 3 25251 25252 25253\n\t\tf 3 25193 -25191 25194\n\t\tmu 0 3 25254 25255 25256\n\t\tf 3 25195 25196 -25195\n\t\tmu 0 3 25257 25258 25259\n\t\tf 3 -25196 -25188 25197\n\t\tmu 0 3 25260 25261 25262\n\t\tf 3 25198 25199 -25198\n\t\tmu 0 3 25263 25264 25265\n\t\tf 3 -25199 -25185 25200\n\t\tmu 0 3 25266 25267 25268\n\t\tf 3 -25153 25201 -25201\n\t\tmu 0 3 25269 25270 25271\n\t\tf 3 25202 -25202 25203\n\t\tmu 0 3 25272 25273 25274\n\t\tf 3 -25150 25204 -25204\n\t\tmu 0 3 25275 25276 25277\n\t\tf 3 -25203 25205 25206\n\t\tmu 0 3 25278 25279 25280\n\t\tf 3 25207 -25200 -25207\n\t\tmu 0 3 25281 25282 25283\n\t\tf 3 -25208 25208 25209\n\t\tmu 0 3 25284 25285 25286\n\t\tf 3 25210 -25197 -25210\n\t\tmu 0 3 25287 25288 25289\n\t\tf 3 25211 -25209 25212\n\t\tmu 0 3 25290 25291 25292\n\t\tf 3 25213 25214 -25213\n\t\tmu 0 3 25293 25294 25295\n\t\tf 3 -25214 -25206 25215\n\t\tmu 0 3 25296 25297 25298\n\t\tf 3 25216 25217 -25216\n\t\tmu 0 3 25299 25300 25301\n\t\tf 3 -25217 -25205 25218\n\t\tmu 0 3 25302 25303 25304\n\t\tf 3 -25147 25219 -25219\n\t\tmu 0 3 25305 25306 25307\n\t\tf 3 25220 -25220 25221\n\t\tmu 0 3 25308 25309 25310\n\t\tf 3 25222 25223 -25222\n\t\tmu 0 3 25311 25312 25313\n\t\tf 3 -25223 -25145 25224\n\t\tmu 0 3 25314 25315 25316\n\t\tf 3 -25134 25225 -25225\n\t\tmu 0 3 25317 25318 25319\n\t\tf 3 -25221 25226 25227\n\t\tmu 0 3 25320 25321 25322\n\t\tf 3 25228 -25218 -25228\n\t\tmu 0 3 25323 25324 25325\n\t\tf 3 -25229 25229 25230\n\t\tmu 0 3 25326 25327 25328\n\t\tf 3 25231 -25215 -25231\n\t\tmu 0 3 25329 25330 25331\n\t\tf 3 25232 -25230 25233\n\t\tmu 0 3 25332 25333 25334\n\t\tf 3 25234 25235 -25234\n\t\tmu 0 3 25335 25336 25337\n\t\tf 3 -25235 -25227 25236\n\t\tmu 0 3 25338 25339 25340\n\t\tf 3 25237 25238 -25237\n\t\tmu 0 3 25341 25342 25343\n\t\tf 3 -25238 -25224 25239\n\t\tmu 0 3 25344 25345 25346\n\t\tf 3 25240 25241 -25240\n\t\tmu 0 3 25347 25348 25349\n\t\tf 3 -25241 -25226 25242\n\t\tmu 0 3 25350 25351 25352\n\t\tf 3 -25135 25243 -25243\n\t\tmu 0 3 25353 25354 25355\n\t\tf 3 25244 -25244 25245\n\t\tmu 0 3 25356 25357 25358\n\t\tf 3 25246 25247 -25246\n\t\tmu 0 3 25359 25360 25361\n\t\tf 3 -25245 25248 25249\n\t\tmu 0 3 25362 25363 25364\n\t\tf 3 25250 -25242 -25250\n\t\tmu 0 3 25365 25366 25367\n\t\tf 3 25251 -25239 25252\n\t\tmu 0 3 25368 25369 25370\n\t\tf 3 -25251 25253 -25253\n\t\tmu 0 3 25371 25372 25373\n\t\tf 3 25254 -25236 25255\n\t\tmu 0 3 25374 25375 25376\n\t\tf 3 -25252 25256 -25256\n\t\tmu 0 3 25377 25378 25379\n\t\tf 3 -25233 25257 25258\n\t\tmu 0 3 25380 25381 25382\n\t\tf 3 25259 25260 -25259\n\t\tmu 0 3 25383 25384 25385\n\t\tf 3 -25232 -25261 25261\n\t\tmu 0 3 25386 25387 25388\n\t\tf 3 25262 25263 -25262\n\t\tmu 0 3 25389 25390 25391\n\t\tf 3 -25212 -25264 25264\n\t\tmu 0 3 25392 25393 25394\n\t\tf 3 25265 25266 -25265\n\t\tmu 0 3 25395 25396 25397\n\t\tf 3 -25211 -25267 25267\n\t\tmu 0 3 25398 25399 25400\n\t\tf 3 25268 25269 -25268\n\t\tmu 0 3 25401 25402 25403\n\t\tf 3 -25194 -25270 25270\n\t\tmu 0 3 25404 25405 25406\n\t\tf 3 25271 25272 -25271\n\t\tmu 0 3 25407 25408 25409\n\t\tf 3 -25193 -25273 25273\n\t\tmu 0 3 25410 25411 25412\n\t\tf 3 25274 25275 -25274\n\t\tmu 0 3 25413 25414 25415\n\t\tf 3 -25176 -25276 25276\n\t\tmu 0 3 25416 25417 25418\n\t\tf 3 25277 25278 -25277\n\t\tmu 0 3 25419 25420 25421\n\t\tf 3 -25174 -25279 25279\n\t\tmu 0 3 25422 25423 25424\n\t\tf 3 25280 25281 -25280\n\t\tmu 0 3 25425 25426 25427\n\t\tf 3 -25281 25282 25283\n\t\tmu 0 3 25428 25429 25430\n\t\tf 3 25284 25285 -25284\n\t\tmu 0 3 25431 25432 25433\n\t\tf 3 -25285 25286 25287\n\t\tmu 0 3 25434 25435 25436\n\t\tf 3 25288 25289 -25288\n\t\tmu 0 3 25437 25438 25439\n\t\tf 3 -25289 25290 25291\n\t\tmu 0 3 25440 25441 25442\n\t\tf 3 25292 25293 -25292\n\t\tmu 0 3 25443 25444 25445\n\t\tf 3 25294 -25291 25295\n\t\tmu 0 3 25446 25447 25448\n\t\tf 3 25296 25297 -25296\n\t\tmu 0 3 25449 25450 25451\n\t\tf 3 -25297 -25287 25298\n\t\tmu 0 3 25452 25453 25454\n\t\tf 3 25299 25300 -25299\n\t\tmu 0 3 25455 25456 25457\n\t\tf 3 -25300 -25283 25301\n\t\tmu 0 3 25458 25459 25460\n\t\tf 3 -25278 25302 -25302\n\t\tmu 0 3 25461 25462 25463\n\t\tf 3 -25275 25303 25304\n\t\tmu 0 3 25464 25465 25466\n\t\tf 3 25305 -25303 -25305\n\t\tmu 0 3 25467 25468 25469\n\t\tf 3 -25306 25306 25307\n\t\tmu 0 3 25470 25471 25472\n\t\tf 3 25308 -25301 -25308\n\t\tmu 0 3 25473 25474 25475\n\t\tf 3 -25309 25309 25310\n\t\tmu 0 3 25476 25477 25478\n\t\tf 3 25311 -25298 -25311\n\t\tmu 0 3 25479 25480 25481\n\t\tf 3 25312 -25310 25313\n\t\tmu 0 3 25482 25483 25484\n\t\tf 3 25314 25315 -25314\n\t\tmu 0 3 25485 25486 25487\n\t\tf 3 -25315 -25307 25316\n\t\tmu 0 3 25488 25489 25490\n\t\tf 3 25317 25318 -25317\n\t\tmu 0 3 25491 25492 25493\n\t\tf 3 -25318 -25304 25319\n\t\tmu 0 3 25494 25495 25496\n\t\tf 3 -25272 25320 -25320\n\t\tmu 0 3 25497 25498 25499\n\t\tf 3 25321 -25321 25322\n\t\tmu 0 3 25500 25501 25502\n\t\tf 3 -25269 25323 -25323\n\t\tmu 0 3 25503 25504 25505\n\t\tf 3 -25322 25324 25325\n\t\tmu 0 3 25506 25507 25508\n\t\tf 3 25326 -25319 -25326\n\t\tmu 0 3 25509 25510 25511\n\t\tf 3 -25327 25327 25328\n\t\tmu 0 3 25512 25513 25514\n\t\tf 3 25329 -25316 -25329\n\t\tmu 0 3 25515 25516 25517\n\t\tf 3 25330 -25328 25331\n\t\tmu 0 3 25518 25519 25520\n\t\tf 3 25332 25333 -25332\n\t\tmu 0 3 25521 25522 25523\n\t\tf 3 -25333 -25325 25334\n\t\tmu 0 3 25524 25525 25526\n\t\tf 3 25335 25336 -25335\n\t\tmu 0 3 25527 25528 25529\n\t\tf 3 -25336 -25324 25337\n\t\tmu 0 3 25530 25531 25532\n\t\tf 3 -25266 25338 -25338\n\t\tmu 0 3 25533 25534 25535\n\t\tf 3 25339 -25339 25340\n\t\tmu 0 3 25536 25537 25538\n\t\tf 3 -25263 25341 -25341\n\t\tmu 0 3 25539 25540 25541\n\t\tf 3 -25340 25342 25343\n\t\tmu 0 3 25542 25543 25544\n\t\tf 3 25344 -25337 -25344\n\t\tmu 0 3 25545 25546 25547\n\t\tf 3 -25345 25345 25346\n\t\tmu 0 3 25548 25549 25550\n\t\tf 3 25347 -25334 -25347\n\t\tmu 0 3 25551 25552 25553\n\t\tf 3 25348 -25346 25349\n\t\tmu 0 3 25554 25555 25556\n\t\tf 3 25350 25351 -25350\n\t\tmu 0 3 25557 25558 25559\n\t\tf 3 -25351 -25343 25352\n\t\tmu 0 3 25560 25561 25562\n\t\tf 3 25353 25354 -25353\n\t\tmu 0 3 25563 25564 25565\n\t\tf 3 -25354 -25342 25355\n\t\tmu 0 3 25566 25567 25568\n\t\tf 3 -25260 25356 -25356\n\t\tmu 0 3 25569 25570 25571\n\t\tf 3 25357 -25357 25358\n\t\tmu 0 3 25572 25573 25574\n\t\tf 3 25359 25360 -25359\n\t\tmu 0 3 25575 25576 25577\n\t\tf 3 25361 -25355 25362\n\t\tmu 0 3 25578 25579 25580\n\t\tf 3 -25358 25363 -25363\n\t\tmu 0 3 25581 25582 25583\n\t\tf 3 25364 -25352 25365\n\t\tmu 0 3 25584 25585 25586\n\t\tf 3 -25362 25366 -25366\n\t\tmu 0 3 25587 25588 25589\n\t\tf 3 -25349 25367 25368\n\t\tmu 0 3 25590 25591 25592\n\t\tf 3 25369 25370 -25369\n\t\tmu 0 3 25593 25594 25595\n\t\tf 3 -25348 -25371 25371\n\t\tmu 0 3 25596 25597 25598\n\t\tf 3 25372 25373 -25372\n\t\tmu 0 3 25599 25600 25601\n\t\tf 3 -25331 -25374 25374\n\t\tmu 0 3 25602 25603 25604\n\t\tf 3 25375 25376 -25375\n\t\tmu 0 3 25605 25606 25607\n\t\tf 3 -25330 -25377 25377\n\t\tmu 0 3 25608 25609 25610\n\t\tf 3 25378 25379 -25378\n\t\tmu 0 3 25611 25612 25613\n\t\tf 3 -25313 -25380 25380\n\t\tmu 0 3 25614 25615 25616\n\t\tf 3 25381 25382 -25381\n\t\tmu 0 3 25617 25618 25619\n\t\tf 3 -25312 -25383 25383\n\t\tmu 0 3 25620 25621 25622\n\t\tf 3 25384 25385 -25384\n\t\tmu 0 3 25623 25624 25625\n\t\tf 3 -25295 -25386 25386\n\t\tmu 0 3 25626 25627 25628\n\t\tf 3 25387 25388 -25387\n\t\tmu 0 3 25629 25630 25631\n\t\tf 3 -25293 -25389 25389\n\t\tmu 0 3 25632 25633 25634\n\t\tf 3 25390 25391 -25390\n\t\tmu 0 3 25635 25636 25637\n\t\tf 3 -25391 25392 25393\n\t\tmu 0 3 25638 25639 25640\n\t\tf 3 25394 25395 -25394\n\t\tmu 0 3 25641 25642 25643\n\t\tf 3 -25395 25396 25397\n\t\tmu 0 3 25644 25645 25646\n\t\tf 3 25398 25399 -25398\n\t\tmu 0 3 25647 25648 25649\n\t\tf 3 -25399 25400 25401\n\t\tmu 0 3 25650 25651 25652\n\t\tf 3 25402 25403 -25402\n\t\tmu 0 3 25653 25654 25655\n\t\tf 3 25404 -25401 25405\n\t\tmu 0 3 25656 25657 25658\n\t\tf 3 25406 25407 -25406\n\t\tmu 0 3 25659 25660 25661\n\t\tf 3 -25407 -25397 25408\n\t\tmu 0 3 25662 25663 25664\n\t\tf 3 25409 25410 -25409\n\t\tmu 0 3 25665 25666 25667\n\t\tf 3 -25410 -25393 25411\n\t\tmu 0 3 25668 25669 25670\n\t\tf 3 -25388 25412 -25412\n\t\tmu 0 3 25671 25672 25673\n\t\tf 3 -25385 25413 25414\n\t\tmu 0 3 25674 25675 25676\n\t\tf 3 25415 -25413 -25415\n\t\tmu 0 3 25677 25678 25679\n\t\tf 3 -25416 25416 25417\n\t\tmu 0 3 25680 25681 25682\n\t\tf 3 25418 -25411 -25418\n\t\tmu 0 3 25683 25684 25685\n\t\tf 3 -25419 25419 25420\n\t\tmu 0 3 25686 25687 25688\n\t\tf 3 25421 -25408 -25421\n\t\tmu 0 3 25689 25690 25691\n\t\tf 3 25422 -25420 25423\n\t\tmu 0 3 25692 25693 25694\n\t\tf 3 25424 25425 -25424\n\t\tmu 0 3 25695 25696 25697\n\t\tf 3 -25425 -25417 25426\n\t\tmu 0 3 25698 25699 25700\n\t\tf 3 25427 25428 -25427\n\t\tmu 0 3 25701 25702 25703\n\t\tf 3 -25428 -25414 25429\n\t\tmu 0 3 25704 25705 25706\n\t\tf 3 -25382 25430 -25430\n\t\tmu 0 3 25707 25708 25709\n\t\tf 3 25431 -25431 25432\n\t\tmu 0 3 25710 25711 25712\n\t\tf 3 -25379 25433 -25433\n\t\tmu 0 3 25713 25714 25715\n\t\tf 3 -25432 25434 25435\n\t\tmu 0 3 25716 25717 25718\n\t\tf 3 25436 -25429 -25436\n\t\tmu 0 3 25719 25720 25721\n\t\tf 3 -25437 25437 25438\n\t\tmu 0 3 25722 25723 25724\n\t\tf 3 25439 -25426 -25439\n\t\tmu 0 3 25725 25726 25727\n\t\tf 3 25440 -25438 25441\n\t\tmu 0 3 25728 25729 25730\n\t\tf 3 25442 25443 -25442\n\t\tmu 0 3 25731 25732 25733\n\t\tf 3 -25443 -25435 25444\n\t\tmu 0 3 25734 25735 25736\n\t\tf 3 25445 25446 -25445\n\t\tmu 0 3 25737 25738 25739\n\t\tf 3 -25446 -25434 25447\n\t\tmu 0 3 25740 25741 25742\n\t\tf 3 -25376 25448 -25448\n\t\tmu 0 3 25743 25744 25745\n\t\tf 3 25449 -25449 25450\n\t\tmu 0 3 25746 25747 25748\n\t\tf 3 -25373 25451 -25451\n\t\tmu 0 3 25749 25750 25751\n\t\tf 3 -25450 25452 25453\n\t\tmu 0 3 25752 25753 25754\n\t\tf 3 25454 -25447 -25454\n\t\tmu 0 3 25755 25756 25757\n\t\tf 3 -25455 25455 25456\n\t\tmu 0 3 25758 25759 25760\n\t\tf 3 25457 -25444 -25457\n\t\tmu 0 3 25761 25762 25763\n\t\tf 3 25458 -25456 25459\n\t\tmu 0 3 25764 25765 25766\n\t\tf 3 25460 25461 -25460\n\t\tmu 0 3 25767 25768 25769\n\t\tf 3 -25461 -25453 25462\n\t\tmu 0 3 25770 25771 25772\n\t\tf 3 25463 25464 -25463\n\t\tmu 0 3 25773 25774 25775\n\t\tf 3 -25464 -25452 25465\n\t\tmu 0 3 25776 25777 25778\n\t\tf 3 -25370 25466 -25466\n\t\tmu 0 3 25779 25780 25781\n\t\tf 3 25467 -25467 25468\n\t\tmu 0 3 25782 25783 25784\n\t\tf 3 25469 25470 -25469\n\t\tmu 0 3 25785 25786 25787\n\t\tf 3 25471 -25465 25472\n\t\tmu 0 3 25788 25789 25790\n\t\tf 3 -25468 25473 -25473\n\t\tmu 0 3 25791 25792 25793\n\t\tf 3 25474 -25462 25475\n\t\tmu 0 3 25794 25795 25796\n\t\tf 3 -25472 25476 -25476\n\t\tmu 0 3 25797 25798 25799\n\t\tf 3 -25459 25477 25478\n\t\tmu 0 3 25800 25801 25802\n\t\tf 3 25479 25480 -25479\n\t\tmu 0 3 25803 25804 25805\n\t\tf 3 -25458 -25481 25481\n\t\tmu 0 3 25806 25807 25808\n\t\tf 3 25482 25483 -25482\n\t\tmu 0 3 25809 25810 25811\n\t\tf 3 -25441 -25484 25484\n\t\tmu 0 3 25812 25813 25814\n\t\tf 3 25485 25486 -25485\n\t\tmu 0 3 25815 25816 25817\n\t\tf 3 -25440 -25487 25487\n\t\tmu 0 3 25818 25819 25820\n\t\tf 3 25488 25489 -25488\n\t\tmu 0 3 25821 25822 25823\n\t\tf 3 -25423 -25490 25490\n\t\tmu 0 3 25824 25825 25826\n\t\tf 3 25491 25492 -25491\n\t\tmu 0 3 25827 25828 25829\n\t\tf 3 -25422 -25493 25493\n\t\tmu 0 3 25830 25831 25832\n\t\tf 3 25494 25495 -25494\n\t\tmu 0 3 25833 25834 25835\n\t\tf 3 -25405 -25496 25496\n\t\tmu 0 3 25836 25837 25838\n\t\tf 3 25497 25498 -25497\n\t\tmu 0 3 25839 25840 25841\n\t\tf 3 -25403 -25499 25499\n\t\tmu 0 3 25842 25843 25844\n\t\tf 3 25500 25501 -25500\n\t\tmu 0 3 25845 25846 25847\n\t\tf 3 -25501 25502 25503\n\t\tmu 0 3 25848 25849 25850\n\t\tf 3 25504 25505 -25504\n\t\tmu 0 3 25851 25852 25853\n\t\tf 3 -25505 25506 25507\n\t\tmu 0 3 25854 25855 25856\n\t\tf 3 25508 25509 -25508\n\t\tmu 0 3 25857 25858 25859\n\t\tf 3 -25509 25510 25511\n\t\tmu 0 3 25860 25861 25862\n\t\tf 3 25512 25513 -25512\n\t\tmu 0 3 25863 25864 25865\n\t\tf 3 25514 -25511 25515\n\t\tmu 0 3 25866 25867 25868\n\t\tf 3 25516 25517 -25516\n\t\tmu 0 3 25869 25870 25871\n\t\tf 3 -25517 -25507 25518\n\t\tmu 0 3 25872 25873 25874\n\t\tf 3 25519 25520 -25519\n\t\tmu 0 3 25875 25876 25877\n\t\tf 3 -25520 -25503 25521\n\t\tmu 0 3 25878 25879 25880\n\t\tf 3 -25498 25522 -25522\n\t\tmu 0 3 25881 25882 25883\n\t\tf 3 -25495 25523 25524\n\t\tmu 0 3 25884 25885 25886\n\t\tf 3 25525 -25523 -25525\n\t\tmu 0 3 25887 25888 25889\n\t\tf 3 -25526 25526 25527\n\t\tmu 0 3 25890 25891 25892\n\t\tf 3 25528 -25521 -25528\n\t\tmu 0 3 25893 25894 25895\n\t\tf 3 -25529 25529 25530\n\t\tmu 0 3 25896 25897 25898\n\t\tf 3 25531 -25518 -25531\n\t\tmu 0 3 25899 25900 25901\n\t\tf 3 25532 -25530 25533\n\t\tmu 0 3 25902 25903 25904\n\t\tf 3 25534 25535 -25534\n\t\tmu 0 3 25905 25906 25907\n\t\tf 3 -25535 -25527 25536\n\t\tmu 0 3 25908 25909 25910\n\t\tf 3 25537 25538 -25537\n\t\tmu 0 3 25911 25912 25913\n\t\tf 3 -25538 -25524 25539\n\t\tmu 0 3 25914 25915 25916\n\t\tf 3 -25492 25540 -25540\n\t\tmu 0 3 25917 25918 25919\n\t\tf 3 25541 -25541 25542\n\t\tmu 0 3 25920 25921 25922\n\t\tf 3 -25489 25543 -25543\n\t\tmu 0 3 25923 25924 25925\n\t\tf 3 -25542 25544 25545\n\t\tmu 0 3 25926 25927 25928\n\t\tf 3 25546 -25539 -25546\n\t\tmu 0 3 25929 25930 25931\n\t\tf 3 -25547 25547 25548\n\t\tmu 0 3 25932 25933 25934\n\t\tf 3 25549 -25536 -25549\n\t\tmu 0 3 25935 25936 25937\n\t\tf 3 25550 -25548 25551\n\t\tmu 0 3 25938 25939 25940\n\t\tf 3 25552 25553 -25552\n\t\tmu 0 3 25941 25942 25943\n\t\tf 3 -25553 -25545 25554\n\t\tmu 0 3 25944 25945 25946\n\t\tf 3 25555 25556 -25555\n\t\tmu 0 3 25947 25948 25949\n\t\tf 3 -25556 -25544 25557\n\t\tmu 0 3 25950 25951 25952\n\t\tf 3 -25486 25558 -25558\n\t\tmu 0 3 25953 25954 25955\n\t\tf 3 25559 -25559 25560\n\t\tmu 0 3 25956 25957 25958\n\t\tf 3 -25483 25561 -25561\n\t\tmu 0 3 25959 25960 25961\n\t\tf 3 -25560 25562 25563\n\t\tmu 0 3 25962 25963 25964\n\t\tf 3 25564 -25557 -25564\n\t\tmu 0 3 25965 25966 25967\n\t\tf 3 -25565 25565 25566\n\t\tmu 0 3 25968 25969 25970\n\t\tf 3 25567 -25554 -25567\n\t\tmu 0 3 25971 25972 25973\n\t\tf 3 25568 -25566 25569\n\t\tmu 0 3 25974 25975 25976\n\t\tf 3 25570 25571 -25570\n\t\tmu 0 3 25977 25978 25979\n\t\tf 3 -25571 -25563 25572\n\t\tmu 0 3 25980 25981 25982\n\t\tf 3 25573 25574 -25573\n\t\tmu 0 3 25983 25984 25985\n\t\tf 3 -25574 -25562 25575\n\t\tmu 0 3 25986 25987 25988\n\t\tf 3 -25480 25576 -25576\n\t\tmu 0 3 25989 25990 25991\n\t\tf 3 25577 -25577 25578\n\t\tmu 0 3 25992 25993 25994\n\t\tf 3 25579 25580 -25579\n\t\tmu 0 3 25995 25996 25997\n\t\tf 3 25581 -25575 25582\n\t\tmu 0 3 25998 25999 26000\n\t\tf 3 -25578 25583 -25583\n\t\tmu 0 3 26001 26002 26003\n\t\tf 3 25584 -25572 25585\n\t\tmu 0 3 26004 26005 26006\n\t\tf 3 -25582 25586 -25586\n\t\tmu 0 3 26007 26008 26009\n\t\tf 3 -25569 25587 25588\n\t\tmu 0 3 26010 26011 26012\n\t\tf 3 25589 25590 -25589\n\t\tmu 0 3 26013 26014 26015\n\t\tf 3 -25568 -25591 25591\n\t\tmu 0 3 26016 26017 26018\n\t\tf 3 25592 25593 -25592\n\t\tmu 0 3 26019 26020 26021\n\t\tf 3 -25551 -25594 25594\n\t\tmu 0 3 26022 26023 26024\n\t\tf 3 25595 25596 -25595\n\t\tmu 0 3 26025 26026 26027\n\t\tf 3 -25550 -25597 25597\n\t\tmu 0 3 26028 26029 26030\n\t\tf 3 25598 25599 -25598\n\t\tmu 0 3 26031 26032 26033\n\t\tf 3 -25533 -25600 25600\n\t\tmu 0 3 26034 26035 26036\n\t\tf 3 25601 25602 -25601\n\t\tmu 0 3 26037 26038 26039\n\t\tf 3 -25532 -25603 25603\n\t\tmu 0 3 26040 26041 26042\n\t\tf 3 25604 25605 -25604\n\t\tmu 0 3 26043 26044 26045\n\t\tf 3 -25515 -25606 25606\n\t\tmu 0 3 26046 26047 26048\n\t\tf 3 25607 25608 -25607\n\t\tmu 0 3 26049 26050 26051\n\t\tf 3 -25513 -25609 25609\n\t\tmu 0 3 26052 26053 26054\n\t\tf 3 25610 25611 -25610\n\t\tmu 0 3 26055 26056 26057\n\t\tf 3 -25611 25612 25613\n\t\tmu 0 3 26058 26059 26060\n\t\tf 3 25614 25615 -25614\n\t\tmu 0 3 26061 26062 26063\n\t\tf 3 -25615 25616 25617\n\t\tmu 0 3 26064 26065 26066\n\t\tf 3 25618 25619 -25618\n\t\tmu 0 3 26067 26068 26069\n\t\tf 3 -25619 25620 25621\n\t\tmu 0 3 26070 26071 26072\n\t\tf 3 25622 25623 -25622\n\t\tmu 0 3 26073 26074 26075\n\t\tf 3 25624 -25621 25625\n\t\tmu 0 3 26076 26077 26078\n\t\tf 3 25626 25627 -25626\n\t\tmu 0 3 26079 26080 26081\n\t\tf 3 -25627 -25617 25628\n\t\tmu 0 3 26082 26083 26084\n\t\tf 3 25629 25630 -25629\n\t\tmu 0 3 26085 26086 26087\n\t\tf 3 -25630 -25613 25631\n\t\tmu 0 3 26088 26089 26090\n\t\tf 3 -25608 25632 -25632\n\t\tmu 0 3 26091 26092 26093\n\t\tf 3 -25605 25633 25634\n\t\tmu 0 3 26094 26095 26096\n\t\tf 3 25635 -25633 -25635\n\t\tmu 0 3 26097 26098 26099\n\t\tf 3 -25636 25636 25637\n\t\tmu 0 3 26100 26101 26102\n\t\tf 3 25638 -25631 -25638\n\t\tmu 0 3 26103 26104 26105\n\t\tf 3 -25639 25639 25640\n\t\tmu 0 3 26106 26107 26108\n\t\tf 3 25641 -25628 -25641\n\t\tmu 0 3 26109 26110 26111\n\t\tf 3 25642 -25640 25643\n\t\tmu 0 3 26112 26113 26114\n\t\tf 3 25644 25645 -25644\n\t\tmu 0 3 26115 26116 26117\n\t\tf 3 -25645 -25637 25646\n\t\tmu 0 3 26118 26119 26120\n\t\tf 3 25647 25648 -25647\n\t\tmu 0 3 26121 26122 26123\n\t\tf 3 -25648 -25634 25649\n\t\tmu 0 3 26124 26125 26126\n\t\tf 3 -25602 25650 -25650\n\t\tmu 0 3 26127 26128 26129\n\t\tf 3 25651 -25651 25652\n\t\tmu 0 3 26130 26131 26132\n\t\tf 3 -25599 25653 -25653\n\t\tmu 0 3 26133 26134 26135\n\t\tf 3 -25652 25654 25655\n\t\tmu 0 3 26136 26137 26138\n\t\tf 3 25656 -25649 -25656\n\t\tmu 0 3 26139 26140 26141\n\t\tf 3 -25657 25657 25658\n\t\tmu 0 3 26142 26143 26144\n\t\tf 3 25659 -25646 -25659\n\t\tmu 0 3 26145 26146 26147\n\t\tf 3 25660 -25658 25661\n\t\tmu 0 3 26148 26149 26150\n\t\tf 3 25662 25663 -25662\n\t\tmu 0 3 26151 26152 26153\n\t\tf 3 -25663 -25655 25664\n\t\tmu 0 3 26154 26155 26156\n\t\tf 3 25665 25666 -25665\n\t\tmu 0 3 26157 26158 26159\n\t\tf 3 -25666 -25654 25667\n\t\tmu 0 3 26160 26161 26162\n\t\tf 3 -25596 25668 -25668\n\t\tmu 0 3 26163 26164 26165\n\t\tf 3 25669 -25669 25670\n\t\tmu 0 3 26166 26167 26168\n\t\tf 3 -25593 25671 -25671\n\t\tmu 0 3 26169 26170 26171\n\t\tf 3 -25670 25672 25673\n\t\tmu 0 3 26172 26173 26174\n\t\tf 3 25674 -25667 -25674\n\t\tmu 0 3 26175 26176 26177\n\t\tf 3 -25675 25675 25676\n\t\tmu 0 3 26178 26179 26180\n\t\tf 3 25677 -25664 -25677\n\t\tmu 0 3 26181 26182 26183\n\t\tf 3 25678 -25676 25679\n\t\tmu 0 3 26184 26185 26186\n\t\tf 3 25680 25681 -25680\n\t\tmu 0 3 26187 26188 26189\n\t\tf 3 -25681 -25673 25682\n\t\tmu 0 3 26190 26191 26192\n\t\tf 3 25683 25684 -25683\n\t\tmu 0 3 26193 26194 26195\n\t\tf 3 -25684 -25672 25685\n\t\tmu 0 3 26196 26197 26198\n\t\tf 3 -25590 25686 -25686\n\t\tmu 0 3 26199 26200 26201\n\t\tf 3 25687 -25687 25688\n\t\tmu 0 3 26202 26203 26204\n\t\tf 3 25689 25690 -25689\n\t\tmu 0 3 26205 26206 26207\n\t\tf 3 25691 -25685 25692\n\t\tmu 0 3 26208 26209 26210\n\t\tf 3 -25688 25693 -25693\n\t\tmu 0 3 26211 26212 26213\n\t\tf 3 -25678 25694 25695\n\t\tmu 0 3 26214 26215 26216\n\t\tf 3 -25695 -25679 25696\n\t\tmu 0 3 26217 26218 26219\n\t\tf 3 25697 25698 -25697\n\t\tmu 0 3 26220 26221 26222\n\t\tf 3 -25699 25699 25700\n\t\tmu 0 3 26223 26224 26225\n\t\tf 3 25701 25702 -25701\n\t\tmu 0 3 26226 26227 26228\n\t\tf 3 -25703 25703 25704\n\t\tmu 0 3 26229 26230 26231\n\t\tf 3 25705 25706 -25705\n\t\tmu 0 3 26232 26233 26234\n\t\tf 3 25707 -25706 25708\n\t\tmu 0 3 26235 26236 26237\n\t\tf 3 25709 25710 -25709\n\t\tmu 0 3 26238 26239 26240\n\t\tf 3 -25711 25711 25712\n\t\tmu 0 3 26241 26242 26243\n\t\tf 3 25713 25714 -25713\n\t\tmu 0 3 26244 26245 26246\n\t\tf 3 25715 -25714 25716\n\t\tmu 0 3 26247 26248 26249\n\t\tf 3 25717 25718 -25717\n\t\tmu 0 3 26250 26251 26252\n\t\tf 3 -25719 25719 25720\n\t\tmu 0 3 26253 26254 26255\n\t\tf 3 25721 25722 -25721\n\t\tmu 0 3 26256 26257 26258\n\t\tf 3 25723 -25722 25724\n\t\tmu 0 3 26259 26260 26261\n\t\tf 3 25725 25726 -25725\n\t\tmu 0 3 26262 26263 26264\n\t\tf 3 -25727 25727 25728\n\t\tmu 0 3 26265 26266 26267\n\t\tf 3 25729 25730 -25729\n\t\tmu 0 3 26268 26269 26270\n\t\tf 3 -25731 25731 25732\n\t\tmu 0 3 26271 26272 26273\n\t\tf 3 -25623 25733 -25733\n\t\tmu 0 3 26274 26275 26276\n\t\tf 3 -25734 -25625 25734\n\t\tmu 0 3 26277 26278 26279\n\t\tf 3 25735 -25724 -25735\n\t\tmu 0 3 26280 26281 26282\n\t\tf 3 -25723 -25736 25736\n\t\tmu 0 3 26283 26284 26285\n\t\tf 3 -25642 25737 -25737\n\t\tmu 0 3 26286 26287 26288\n\t\tf 3 -25738 -25643 25738\n\t\tmu 0 3 26289 26290 26291\n\t\tf 3 25739 -25716 -25739\n\t\tmu 0 3 26292 26293 26294\n\t\tf 3 -25715 -25740 25740\n\t\tmu 0 3 26295 26296 26297\n\t\tf 3 -25660 25741 -25741\n\t\tmu 0 3 26298 26299 26300\n\t\tf 3 -25742 -25661 25742\n\t\tmu 0 3 26301 26302 26303\n\t\tf 3 25743 -25708 -25743\n\t\tmu 0 3 26304 26305 26306\n\t\tf 3 -25707 -25744 -25696\n\t\tmu 0 3 26307 26308 26309\n\t\tf 3 25744 -25730 25745\n\t\tmu 0 3 26310 26311 26312\n\t\tf 3 25746 25747 -25746\n\t\tmu 0 3 26313 26314 26315\n\t\tf 3 -25748 25748 25749\n\t\tmu 0 3 26316 26317 26318\n\t\tf 3 25750 25751 -25750\n\t\tmu 0 3 26319 26320 26321\n\t\tf 3 25752 -25751 25753\n\t\tmu 0 3 26322 26323 26324\n\t\tf 3 25754 25755 -25754\n\t\tmu 0 3 26325 26326 26327\n\t\tf 3 -25756 25756 25757\n\t\tmu 0 3 26328 26329 26330\n\t\tf 3 25758 25759 -25758\n\t\tmu 0 3 26331 26332 26333\n\t\tf 3 25760 -25759 25761\n\t\tmu 0 3 26334 26335 26336\n\t\tf 3 25762 25763 -25762\n\t\tmu 0 3 26337 26338 26339\n\t\tf 3 -25764 25764 25765\n\t\tmu 0 3 26340 26341 26342\n\t\tf 3 25766 25767 -25766\n\t\tmu 0 3 26343 26344 26345\n\t\tf 3 25768 -25767 25769\n\t\tmu 0 3 26346 26347 26348\n\t\tf 3 25770 25771 -25770\n\t\tmu 0 3 26349 26350 26351\n\t\tf 3 25772 -25769 25773\n\t\tmu 0 3 26352 26353 26354\n\t\tf 3 -25768 -25773 25774\n\t\tmu 0 3 26355 26356 26357\n\t\tf 3 25775 25776 -25774\n\t\tmu 0 3 26358 26359 26360\n\t\tf 3 -25777 25777 25778\n\t\tmu 0 3 26361 26362 26363\n\t\tf 3 25779 25780 -25779\n\t\tmu 0 3 26364 26365 26366\n\t\tf 3 -25780 -25694 25781\n\t\tmu 0 3 26367 26368 26369\n\t\tf 3 25782 25783 -25782\n\t\tmu 0 3 26370 26371 26372\n\t\tf 3 -25783 -25691 25784\n\t\tmu 0 3 26373 26374 26375\n\t\tf 3 25785 25786 -25785\n\t\tmu 0 3 26376 26377 26378\n\t\tf 3 -25786 25787 25788\n\t\tmu 0 3 26379 26380 26381\n\t\tf 3 25789 25790 -25789\n\t\tmu 0 3 26382 26383 26384\n\t\tf 3 -25790 -25587 25791\n\t\tmu 0 3 26385 26386 26387\n\t\tf 3 25792 25793 -25792\n\t\tmu 0 3 26388 26389 26390\n\t\tf 3 -25793 -25584 25794\n\t\tmu 0 3 26391 26392 26393\n\t\tf 3 25795 25796 -25795\n\t\tmu 0 3 26394 26395 26396\n\t\tf 3 -25796 -25581 25797\n\t\tmu 0 3 26397 26398 26399\n\t\tf 3 25798 25799 -25798\n\t\tmu 0 3 26400 26401 26402\n\t\tf 3 -25799 25800 25801\n\t\tmu 0 3 26403 26404 26405\n\t\tf 3 25802 25803 -25802\n\t\tmu 0 3 26406 26407 26408\n\t\tf 3 -25803 -25477 25804\n\t\tmu 0 3 26409 26410 26411\n\t\tf 3 25805 25806 -25805\n\t\tmu 0 3 26412 26413 26414\n\t\tf 3 -25806 -25474 25807\n\t\tmu 0 3 26415 26416 26417\n\t\tf 3 25808 25809 -25808\n\t\tmu 0 3 26418 26419 26420\n\t\tf 3 -25809 -25471 25810\n\t\tmu 0 3 26421 26422 26423\n\t\tf 3 25811 25812 -25811\n\t\tmu 0 3 26424 26425 26426\n\t\tf 3 -25812 25813 25814\n\t\tmu 0 3 26427 26428 26429\n\t\tf 3 25815 25816 -25815\n\t\tmu 0 3 26430 26431 26432\n\t\tf 3 -25816 -25367 25817\n\t\tmu 0 3 26433 26434 26435\n\t\tf 3 25818 25819 -25818\n\t\tmu 0 3 26436 26437 26438\n\t\tf 3 -25819 -25364 25820\n\t\tmu 0 3 26439 26440 26441\n\t\tf 3 25821 25822 -25821\n\t\tmu 0 3 26442 26443 26444\n\t\tf 3 -25822 -25361 25823\n\t\tmu 0 3 26445 26446 26447\n\t\tf 3 25824 25825 -25824\n\t\tmu 0 3 26448 26449 26450\n\t\tf 3 -25825 25826 25827\n\t\tmu 0 3 26451 26452 26453\n\t\tf 3 25828 25829 -25828\n\t\tmu 0 3 26454 26455 26456\n\t\tf 3 -25829 -25257 25830\n\t\tmu 0 3 26457 26458 26459\n\t\tf 3 25831 25832 -25831\n\t\tmu 0 3 26460 26461 26462\n\t\tf 3 -25832 -25254 25833\n\t\tmu 0 3 26463 26464 26465\n\t\tf 3 25834 25835 -25834\n\t\tmu 0 3 26466 26467 26468\n\t\tf 3 -25835 -25249 25836\n\t\tmu 0 3 26469 26470 26471\n\t\tf 3 25837 25838 -25837\n\t\tmu 0 3 26472 26473 26474\n\t\tf 3 -25838 -25248 25839\n\t\tmu 0 3 26475 26476 26477\n\t\tf 3 25840 25841 -25840\n\t\tmu 0 3 26478 26479 26480\n\t\tf 3 -25841 25842 25843\n\t\tmu 0 3 26481 26482 26483\n\t\tf 3 25844 -25843 25845\n\t\tmu 0 3 26484 26485 26486\n\t\tf 3 -25845 -25141 25846\n\t\tmu 0 3 26487 26488 26489\n\t\tf 3 25847 25848 -25847\n\t\tmu 0 3 26490 26491 26492\n\t\tf 3 -25247 -25138 -25846\n\t\tmu 0 3 26493 26494 26495\n\t\tf 3 25849 25850 -25844\n\t\tmu 0 3 26496 26497 26498\n\t\tf 3 -25850 -25849 25851\n\t\tmu 0 3 26499 26500 26501\n\t\tf 3 25852 25853 -25852\n\t\tmu 0 3 26502 26503 26504\n\t\tf 3 -25853 25854 25855\n\t\tmu 0 3 26505 26506 26507\n\t\tf 3 25856 25857 -25856\n\t\tmu 0 3 26508 26509 26510\n\t\tf 3 25858 -25858 25859\n\t\tmu 0 3 26511 26512 26513\n\t\tf 3 25860 25861 -25860\n\t\tmu 0 3 26514 26515 26516\n\t\tf 3 -25859 25862 25863\n\t\tmu 0 3 26517 26518 26519\n\t\tf 3 25864 -25854 -25864\n\t\tmu 0 3 26520 26521 26522\n\t\tf 3 -25865 25865 25866\n\t\tmu 0 3 26523 26524 26525\n\t\tf 3 25867 -25851 -25867\n\t\tmu 0 3 26526 26527 26528\n\t\tf 3 25868 -25866 25869\n\t\tmu 0 3 26529 26530 26531\n\t\tf 3 25870 25871 -25870\n\t\tmu 0 3 26532 26533 26534\n\t\tf 3 -25871 -25863 25872\n\t\tmu 0 3 26535 26536 26537\n\t\tf 3 25873 25874 -25873\n\t\tmu 0 3 26538 26539 26540\n\t\tf 3 -25874 -25862 25875\n\t\tmu 0 3 26541 26542 26543\n\t\tf 3 25876 25877 -25876\n\t\tmu 0 3 26544 26545 26546\n\t\tf 3 25878 -25878 25879\n\t\tmu 0 3 26547 26548 26549\n\t\tf 3 25880 25881 -25880\n\t\tmu 0 3 26550 26551 26552\n\t\tf 3 -25879 25882 25883\n\t\tmu 0 3 26553 26554 26555\n\t\tf 3 25884 -25875 -25884\n\t\tmu 0 3 26556 26557 26558\n\t\tf 3 -25885 25885 25886\n\t\tmu 0 3 26559 26560 26561\n\t\tf 3 25887 -25872 -25887\n\t\tmu 0 3 26562 26563 26564\n\t\tf 3 25888 -25886 25889\n\t\tmu 0 3 26565 26566 26567\n\t\tf 3 25890 25891 -25890\n\t\tmu 0 3 26568 26569 26570\n\t\tf 3 -25891 -25883 25892\n\t\tmu 0 3 26571 26572 26573\n\t\tf 3 25893 25894 -25893\n\t\tmu 0 3 26574 26575 26576\n\t\tf 3 -25894 -25882 25895\n\t\tmu 0 3 26577 26578 26579\n\t\tf 3 25896 25897 -25896\n\t\tmu 0 3 26580 26581 26582\n\t\tf 3 25898 -25898 25899\n\t\tmu 0 3 26583 26584 26585\n\t\tf 3 25900 25901 -25900\n\t\tmu 0 3 26586 26587 26588\n\t\tf 3 -25899 25902 25903\n\t\tmu 0 3 26589 26590 26591\n\t\tf 3 25904 -25895 -25904\n\t\tmu 0 3 26592 26593 26594\n\t\tf 3 -25905 25905 25906\n\t\tmu 0 3 26595 26596 26597\n\t\tf 3 25907 -25892 -25907\n\t\tmu 0 3 26598 26599 26600\n\t\tf 3 25908 -25906 25909\n\t\tmu 0 3 26601 26602 26603\n\t\tf 3 25910 -25074 -25910\n\t\tmu 0 3 26604 26605 26606\n\t\tf 3 -25911 -25903 25911\n\t\tmu 0 3 26607 26608 26609\n\t\tf 3 25912 -25070 -25912\n\t\tmu 0 3 26610 26611 26612\n\t\tf 3 -25913 -25902 25913\n\t\tmu 0 3 26613 26614 26615\n\t\tf 3 25914 -25065 -25914\n\t\tmu 0 3 26616 26617 26618\n\t\tf 3 -25889 25915 25916\n\t\tmu 0 3 26619 26620 26621\n\t\tf 3 25917 25918 -25917\n\t\tmu 0 3 26622 26623 26624\n\t\tf 3 -25888 -25919 25919\n\t\tmu 0 3 26625 26626 26627\n\t\tf 3 25920 25921 -25920\n\t\tmu 0 3 26628 26629 26630\n\t\tf 3 -25869 -25922 25922\n\t\tmu 0 3 26631 26632 26633\n\t\tf 3 25923 25924 -25923\n\t\tmu 0 3 26634 26635 26636\n\t\tf 3 -25868 -25925 25925\n\t\tmu 0 3 26637 26638 26639\n\t\tf 3 25926 -25842 -25926\n\t\tmu 0 3 26640 26641 26642\n\t\tf 3 -25927 25927 25928\n\t\tmu 0 3 26643 26644 26645\n\t\tf 3 25929 -25839 -25929\n\t\tmu 0 3 26646 26647 26648\n\t\tf 3 -25930 25930 25931\n\t\tmu 0 3 26649 26650 26651\n\t\tf 3 25932 -25836 -25932\n\t\tmu 0 3 26652 26653 26654\n\t\tf 3 -25933 25933 25934\n\t\tmu 0 3 26655 26656 26657\n\t\tf 3 25935 -25833 -25935\n\t\tmu 0 3 26658 26659 26660\n\t\tf 3 25936 -25934 25937\n\t\tmu 0 3 26661 26662 26663\n\t\tf 3 25938 25939 -25938\n\t\tmu 0 3 26664 26665 26666\n\t\tf 3 -25939 -25931 25940\n\t\tmu 0 3 26667 26668 26669\n\t\tf 3 25941 25942 -25941\n\t\tmu 0 3 26670 26671 26672\n\t\tf 3 -25942 -25928 25943\n\t\tmu 0 3 26673 26674 26675\n\t\tf 3 -25924 25944 -25944\n\t\tmu 0 3 26676 26677 26678\n\t\tf 3 -25921 25945 25946\n\t\tmu 0 3 26679 26680 26681\n\t\tf 3 25947 -25945 -25947\n\t\tmu 0 3 26682 26683 26684\n\t\tf 3 -25948 25948 25949\n\t\tmu 0 3 26685 26686 26687\n\t\tf 3 25950 -25943 -25950\n\t\tmu 0 3 26688 26689 26690\n\t\tf 3 -25951 25951 25952\n\t\tmu 0 3 26691 26692 26693\n\t\tf 3 25953 -25940 -25953\n\t\tmu 0 3 26694 26695 26696\n\t\tf 3 25954 -25952 25955\n\t\tmu 0 3 26697 26698 26699\n\t\tf 3 25956 25957 -25956\n\t\tmu 0 3 26700 26701 26702\n\t\tf 3 -25957 -25949 25958\n\t\tmu 0 3 26703 26704 26705\n\t\tf 3 25959 25960 -25959\n\t\tmu 0 3 26706 26707 26708\n\t\tf 3 -25960 -25946 25961\n\t\tmu 0 3 26709 26710 26711\n\t\tf 3 -25918 25962 -25962\n\t\tmu 0 3 26712 26713 26714\n\t\tf 3 25963 -25963 25964\n\t\tmu 0 3 26715 26716 26717\n\t\tf 3 25965 25966 -25965\n\t\tmu 0 3 26718 26719 26720\n\t\tf 3 -25966 -25916 25967\n\t\tmu 0 3 26721 26722 26723\n\t\tf 3 -25908 25968 -25968\n\t\tmu 0 3 26724 26725 26726\n\t\tf 3 -25964 25969 25970\n\t\tmu 0 3 26727 26728 26729\n\t\tf 3 25971 -25961 -25971\n\t\tmu 0 3 26730 26731 26732\n\t\tf 3 -25972 25972 25973\n\t\tmu 0 3 26733 26734 26735\n\t\tf 3 25974 -25958 -25974\n\t\tmu 0 3 26736 26737 26738\n\t\tf 3 25975 -25973 25976\n\t\tmu 0 3 26739 26740 26741;\n\tsetAttr \".fc[14000:14499]\"\n\t\tf 3 25977 -25175 -25977\n\t\tmu 0 3 26742 26743 26744\n\t\tf 3 -25978 -25970 25978\n\t\tmu 0 3 26745 26746 26747\n\t\tf 3 25979 -25171 -25979\n\t\tmu 0 3 26748 26749 26750\n\t\tf 3 -25980 -25967 25980\n\t\tmu 0 3 26751 26752 26753\n\t\tf 3 25981 -25167 -25981\n\t\tmu 0 3 26754 26755 26756\n\t\tf 3 -25982 -25969 25982\n\t\tmu 0 3 26757 26758 26759\n\t\tf 3 -25909 -25163 -25983\n\t\tmu 0 3 26760 26761 26762\n\t\tf 3 -25955 25983 25984\n\t\tmu 0 3 26763 26764 26765\n\t\tf 3 -25975 25985 25986\n\t\tmu 0 3 26766 26767 26768\n\t\tf 3 25987 -25984 -25987\n\t\tmu 0 3 26769 26770 26771\n\t\tf 3 -25988 25988 25989\n\t\tmu 0 3 26772 26773 26774\n\t\tf 3 25990 25991 -25990\n\t\tmu 0 3 26775 26776 26777\n\t\tf 3 25992 -25992 25993\n\t\tmu 0 3 26778 26779 26780\n\t\tf 3 25994 25995 -25994\n\t\tmu 0 3 26781 26782 26783\n\t\tf 3 25996 -25996 25997\n\t\tmu 0 3 26784 26785 26786\n\t\tf 3 -25997 25998 25999\n\t\tmu 0 3 26787 26788 26789\n\t\tf 3 -25937 -25999 26000\n\t\tmu 0 3 26790 26791 26792\n\t\tf 3 26001 26002 -26001\n\t\tmu 0 3 26793 26794 26795\n\t\tf 3 -25936 -26003 26003\n\t\tmu 0 3 26796 26797 26798\n\t\tf 3 26004 -25830 -26004\n\t\tmu 0 3 26799 26800 26801\n\t\tf 3 -26005 26005 26006\n\t\tmu 0 3 26802 26803 26804\n\t\tf 3 26007 -25826 -26007\n\t\tmu 0 3 26805 26806 26807\n\t\tf 3 -26008 26008 26009\n\t\tmu 0 3 26808 26809 26810\n\t\tf 3 26010 -25823 -26010\n\t\tmu 0 3 26811 26812 26813\n\t\tf 3 -26011 26011 26012\n\t\tmu 0 3 26814 26815 26816\n\t\tf 3 26013 -25820 -26013\n\t\tmu 0 3 26817 26818 26819\n\t\tf 3 26014 -26012 26015\n\t\tmu 0 3 26820 26821 26822\n\t\tf 3 26016 26017 -26016\n\t\tmu 0 3 26823 26824 26825\n\t\tf 3 -26017 -26009 26018\n\t\tmu 0 3 26826 26827 26828\n\t\tf 3 26019 26020 -26019\n\t\tmu 0 3 26829 26830 26831\n\t\tf 3 -26020 -26006 26021\n\t\tmu 0 3 26832 26833 26834\n\t\tf 3 -26002 26022 -26022\n\t\tmu 0 3 26835 26836 26837\n\t\tf 3 26023 -26023 -25998\n\t\tmu 0 3 26838 26839 26840\n\t\tf 3 -26024 26024 26025\n\t\tmu 0 3 26841 26842 26843\n\t\tf 3 26026 -26021 -26026\n\t\tmu 0 3 26844 26845 26846\n\t\tf 3 -26027 26027 26028\n\t\tmu 0 3 26847 26848 26849\n\t\tf 3 26029 -26018 -26029\n\t\tmu 0 3 26850 26851 26852\n\t\tf 3 26030 -26028 26031\n\t\tmu 0 3 26853 26854 26855\n\t\tf 3 26032 26033 -26032\n\t\tmu 0 3 26856 26857 26858\n\t\tf 3 -26033 -26025 26034\n\t\tmu 0 3 26859 26860 26861\n\t\tf 3 -25995 26035 -26035\n\t\tmu 0 3 26862 26863 26864\n\t\tf 3 26036 -26036 26037\n\t\tmu 0 3 26865 26866 26867\n\t\tf 3 -25991 26038 -26038\n\t\tmu 0 3 26868 26869 26870\n\t\tf 3 -26037 26039 26040\n\t\tmu 0 3 26871 26872 26873\n\t\tf 3 26041 -26034 -26041\n\t\tmu 0 3 26874 26875 26876\n\t\tf 3 26042 -26040 26043\n\t\tmu 0 3 26877 26878 26879\n\t\tf 3 26044 -25294 -26044\n\t\tmu 0 3 26880 26881 26882\n\t\tf 3 -26045 -26039 26045\n\t\tmu 0 3 26883 26884 26885\n\t\tf 3 26046 -25290 -26046\n\t\tmu 0 3 26886 26887 26888\n\t\tf 3 -26047 -25989 26047\n\t\tmu 0 3 26889 26890 26891\n\t\tf 3 26048 -25286 -26048\n\t\tmu 0 3 26892 26893 26894\n\t\tf 3 -26049 -25986 26049\n\t\tmu 0 3 26895 26896 26897\n\t\tf 3 -25976 -25282 -26050\n\t\tmu 0 3 26898 26899 26900\n\t\tf 3 -26031 26050 26051\n\t\tmu 0 3 26901 26902 26903\n\t\tf 3 26052 26053 -26052\n\t\tmu 0 3 26904 26905 26906\n\t\tf 3 -26030 -26054 26054\n\t\tmu 0 3 26907 26908 26909\n\t\tf 3 26055 26056 -26055\n\t\tmu 0 3 26910 26911 26912\n\t\tf 3 -26015 -26057 26057\n\t\tmu 0 3 26913 26914 26915\n\t\tf 3 26058 26059 -26058\n\t\tmu 0 3 26916 26917 26918\n\t\tf 3 -26014 -26060 26060\n\t\tmu 0 3 26919 26920 26921\n\t\tf 3 26061 -25817 -26061\n\t\tmu 0 3 26922 26923 26924\n\t\tf 3 -26062 26062 26063\n\t\tmu 0 3 26925 26926 26927\n\t\tf 3 26064 -25813 -26064\n\t\tmu 0 3 26928 26929 26930\n\t\tf 3 -26065 26065 26066\n\t\tmu 0 3 26931 26932 26933\n\t\tf 3 26067 -25810 -26067\n\t\tmu 0 3 26934 26935 26936\n\t\tf 3 -26068 26068 26069\n\t\tmu 0 3 26937 26938 26939\n\t\tf 3 26070 -25807 -26070\n\t\tmu 0 3 26940 26941 26942\n\t\tf 3 26071 -26069 26072\n\t\tmu 0 3 26943 26944 26945\n\t\tf 3 26073 26074 -26073\n\t\tmu 0 3 26946 26947 26948\n\t\tf 3 -26074 -26066 26075\n\t\tmu 0 3 26949 26950 26951\n\t\tf 3 26076 26077 -26076\n\t\tmu 0 3 26952 26953 26954\n\t\tf 3 -26077 -26063 26078\n\t\tmu 0 3 26955 26956 26957\n\t\tf 3 -26059 26079 -26079\n\t\tmu 0 3 26958 26959 26960\n\t\tf 3 26080 -26080 26081\n\t\tmu 0 3 26961 26962 26963\n\t\tf 3 -26056 26082 -26082\n\t\tmu 0 3 26964 26965 26966\n\t\tf 3 -26081 26083 26084\n\t\tmu 0 3 26967 26968 26969\n\t\tf 3 26085 -26078 -26085\n\t\tmu 0 3 26970 26971 26972\n\t\tf 3 -26086 26086 26087\n\t\tmu 0 3 26973 26974 26975\n\t\tf 3 26088 -26075 -26088\n\t\tmu 0 3 26976 26977 26978\n\t\tf 3 26089 -26087 26090\n\t\tmu 0 3 26979 26980 26981\n\t\tf 3 26091 26092 -26091\n\t\tmu 0 3 26982 26983 26984\n\t\tf 3 -26092 -26084 26093\n\t\tmu 0 3 26985 26986 26987\n\t\tf 3 26094 26095 -26094\n\t\tmu 0 3 26988 26989 26990\n\t\tf 3 -26095 -26083 26096\n\t\tmu 0 3 26991 26992 26993\n\t\tf 3 -26053 26097 -26097\n\t\tmu 0 3 26994 26995 26996\n\t\tf 3 26098 -26098 26099\n\t\tmu 0 3 26997 26998 26999\n\t\tf 3 26100 26101 -26100\n\t\tmu 0 3 27000 27001 27002\n\t\tf 3 -26101 -26051 26102\n\t\tmu 0 3 27003 27004 27005\n\t\tf 3 -26042 26103 -26103\n\t\tmu 0 3 27006 27007 27008\n\t\tf 3 -26099 26104 26105\n\t\tmu 0 3 27009 27010 27011\n\t\tf 3 26106 -26096 -26106\n\t\tmu 0 3 27012 27013 27014\n\t\tf 3 -26107 26107 26108\n\t\tmu 0 3 27015 27016 27017\n\t\tf 3 26109 -26093 -26109\n\t\tmu 0 3 27018 27019 27020\n\t\tf 3 26110 -26108 26111\n\t\tmu 0 3 27021 27022 27023\n\t\tf 3 26112 -25404 -26112\n\t\tmu 0 3 27024 27025 27026\n\t\tf 3 -26113 -26105 26113\n\t\tmu 0 3 27027 27028 27029\n\t\tf 3 26114 -25400 -26114\n\t\tmu 0 3 27030 27031 27032\n\t\tf 3 -26115 -26102 26115\n\t\tmu 0 3 27033 27034 27035\n\t\tf 3 26116 -25396 -26116\n\t\tmu 0 3 27036 27037 27038\n\t\tf 3 -26117 -26104 26117\n\t\tmu 0 3 27039 27040 27041\n\t\tf 3 -26043 -25392 -26118\n\t\tmu 0 3 27042 27043 27044\n\t\tf 3 -26090 26118 26119\n\t\tmu 0 3 27045 27046 27047\n\t\tf 3 -26110 26120 26121\n\t\tmu 0 3 27048 27049 27050\n\t\tf 3 26122 -26119 -26122\n\t\tmu 0 3 27051 27052 27053\n\t\tf 3 -26123 26123 26124\n\t\tmu 0 3 27054 27055 27056\n\t\tf 3 26125 26126 -26125\n\t\tmu 0 3 27057 27058 27059\n\t\tf 3 26127 -26127 26128\n\t\tmu 0 3 27060 27061 27062\n\t\tf 3 26129 26130 -26129\n\t\tmu 0 3 27063 27064 27065\n\t\tf 3 26131 -26131 26132\n\t\tmu 0 3 27066 27067 27068\n\t\tf 3 -26132 26133 26134\n\t\tmu 0 3 27069 27070 27071\n\t\tf 3 -26072 -26134 26135\n\t\tmu 0 3 27072 27073 27074\n\t\tf 3 26136 26137 -26136\n\t\tmu 0 3 27075 27076 27077\n\t\tf 3 -26071 -26138 26138\n\t\tmu 0 3 27078 27079 27080\n\t\tf 3 26139 -25804 -26139\n\t\tmu 0 3 27081 27082 27083\n\t\tf 3 -26140 26140 26141\n\t\tmu 0 3 27084 27085 27086\n\t\tf 3 26142 -25800 -26142\n\t\tmu 0 3 27087 27088 27089\n\t\tf 3 -26143 26143 26144\n\t\tmu 0 3 27090 27091 27092\n\t\tf 3 26145 -25797 -26145\n\t\tmu 0 3 27093 27094 27095\n\t\tf 3 -26146 26146 26147\n\t\tmu 0 3 27096 27097 27098\n\t\tf 3 26148 -25794 -26148\n\t\tmu 0 3 27099 27100 27101\n\t\tf 3 26149 -26147 26150\n\t\tmu 0 3 27102 27103 27104\n\t\tf 3 26151 26152 -26151\n\t\tmu 0 3 27105 27106 27107\n\t\tf 3 -26152 -26144 26153\n\t\tmu 0 3 27108 27109 27110\n\t\tf 3 26154 26155 -26154\n\t\tmu 0 3 27111 27112 27113\n\t\tf 3 -26155 -26141 26156\n\t\tmu 0 3 27114 27115 27116\n\t\tf 3 -26137 26157 -26157\n\t\tmu 0 3 27117 27118 27119\n\t\tf 3 26158 -26158 -26133\n\t\tmu 0 3 27120 27121 27122\n\t\tf 3 -26159 26159 26160\n\t\tmu 0 3 27123 27124 27125\n\t\tf 3 26161 -26156 -26161\n\t\tmu 0 3 27126 27127 27128\n\t\tf 3 -26162 26162 26163\n\t\tmu 0 3 27129 27130 27131\n\t\tf 3 26164 -26153 -26164\n\t\tmu 0 3 27132 27133 27134\n\t\tf 3 26165 -26163 26166\n\t\tmu 0 3 27135 27136 27137\n\t\tf 3 26167 26168 -26167\n\t\tmu 0 3 27138 27139 27140\n\t\tf 3 -26168 -26160 26169\n\t\tmu 0 3 27141 27142 27143\n\t\tf 3 -26130 26170 -26170\n\t\tmu 0 3 27144 27145 27146\n\t\tf 3 26171 -26171 26172\n\t\tmu 0 3 27147 27148 27149\n\t\tf 3 -26126 26173 -26173\n\t\tmu 0 3 27150 27151 27152\n\t\tf 3 -26172 26174 26175\n\t\tmu 0 3 27153 27154 27155\n\t\tf 3 26176 -26169 -26176\n\t\tmu 0 3 27156 27157 27158\n\t\tf 3 26177 -26175 26178\n\t\tmu 0 3 27159 27160 27161\n\t\tf 3 26179 -25514 -26179\n\t\tmu 0 3 27162 27163 27164\n\t\tf 3 -26180 -26174 26180\n\t\tmu 0 3 27165 27166 27167\n\t\tf 3 26181 -25510 -26181\n\t\tmu 0 3 27168 27169 27170\n\t\tf 3 -26182 -26124 26182\n\t\tmu 0 3 27171 27172 27173\n\t\tf 3 26183 -25506 -26183\n\t\tmu 0 3 27174 27175 27176\n\t\tf 3 -26184 -26121 26184\n\t\tmu 0 3 27177 27178 27179\n\t\tf 3 -26111 -25502 -26185\n\t\tmu 0 3 27180 27181 27182\n\t\tf 3 -26166 26185 26186\n\t\tmu 0 3 27183 27184 27185\n\t\tf 3 26187 26188 -26187\n\t\tmu 0 3 27186 27187 27188\n\t\tf 3 -26165 -26189 26189\n\t\tmu 0 3 27189 27190 27191\n\t\tf 3 26190 26191 -26190\n\t\tmu 0 3 27192 27193 27194\n\t\tf 3 -26150 -26192 26192\n\t\tmu 0 3 27195 27196 27197\n\t\tf 3 26193 26194 -26193\n\t\tmu 0 3 27198 27199 27200\n\t\tf 3 -26149 -26195 26195\n\t\tmu 0 3 27201 27202 27203\n\t\tf 3 26196 -25791 -26196\n\t\tmu 0 3 27204 27205 27206\n\t\tf 3 -26197 26197 26198\n\t\tmu 0 3 27207 27208 27209\n\t\tf 3 26199 -25787 -26199\n\t\tmu 0 3 27210 27211 27212\n\t\tf 3 -26200 26200 26201\n\t\tmu 0 3 27213 27214 27215\n\t\tf 3 26202 -25784 -26202\n\t\tmu 0 3 27216 27217 27218\n\t\tf 3 -26203 26203 26204\n\t\tmu 0 3 27219 27220 27221\n\t\tf 3 26205 -25781 -26205\n\t\tmu 0 3 27222 27223 27224\n\t\tf 3 26206 -26204 26207\n\t\tmu 0 3 27225 27226 27227\n\t\tf 3 26208 26209 -26208\n\t\tmu 0 3 27228 27229 27230\n\t\tf 3 -26209 -26201 26210\n\t\tmu 0 3 27231 27232 27233\n\t\tf 3 26211 26212 -26211\n\t\tmu 0 3 27234 27235 27236\n\t\tf 3 -26212 -26198 26213\n\t\tmu 0 3 27237 27238 27239\n\t\tf 3 -26194 26214 -26214\n\t\tmu 0 3 27240 27241 27242\n\t\tf 3 26215 -26215 26216\n\t\tmu 0 3 27243 27244 27245\n\t\tf 3 -26191 26217 -26217\n\t\tmu 0 3 27246 27247 27248\n\t\tf 3 -26216 26218 26219\n\t\tmu 0 3 27249 27250 27251\n\t\tf 3 26220 -26213 -26220\n\t\tmu 0 3 27252 27253 27254\n\t\tf 3 -26221 26221 26222\n\t\tmu 0 3 27255 27256 27257\n\t\tf 3 26223 -26210 -26223\n\t\tmu 0 3 27258 27259 27260\n\t\tf 3 26224 -26222 26225\n\t\tmu 0 3 27261 27262 27263\n\t\tf 3 26226 26227 -26226\n\t\tmu 0 3 27264 27265 27266\n\t\tf 3 -26227 -26219 26228\n\t\tmu 0 3 27267 27268 27269\n\t\tf 3 26229 26230 -26229\n\t\tmu 0 3 27270 27271 27272\n\t\tf 3 -26230 -26218 26231\n\t\tmu 0 3 27273 27274 27275\n\t\tf 3 -26188 26232 -26232\n\t\tmu 0 3 27276 27277 27278\n\t\tf 3 26233 -26233 26234\n\t\tmu 0 3 27279 27280 27281\n\t\tf 3 26235 26236 -26235\n\t\tmu 0 3 27282 27283 27284\n\t\tf 3 -26236 -26186 26237\n\t\tmu 0 3 27285 27286 27287\n\t\tf 3 -26177 26238 -26238\n\t\tmu 0 3 27288 27289 27290\n\t\tf 3 -26234 26239 26240\n\t\tmu 0 3 27291 27292 27293\n\t\tf 3 26241 -26231 -26241\n\t\tmu 0 3 27294 27295 27296\n\t\tf 3 -26242 26242 26243\n\t\tmu 0 3 27297 27298 27299\n\t\tf 3 26244 -26228 -26244\n\t\tmu 0 3 27300 27301 27302\n\t\tf 3 26245 -26243 26246\n\t\tmu 0 3 27303 27304 27305\n\t\tf 3 26247 -25624 -26247\n\t\tmu 0 3 27306 27307 27308\n\t\tf 3 -26248 -26240 26248\n\t\tmu 0 3 27309 27310 27311\n\t\tf 3 26249 -25620 -26249\n\t\tmu 0 3 27312 27313 27314\n\t\tf 3 -26250 -26237 26250\n\t\tmu 0 3 27315 27316 27317\n\t\tf 3 26251 -25616 -26251\n\t\tmu 0 3 27318 27319 27320\n\t\tf 3 -26252 -26239 26252\n\t\tmu 0 3 27321 27322 27323\n\t\tf 3 -26178 -25612 -26253\n\t\tmu 0 3 27324 27325 27326\n\t\tf 3 26253 -26225 26254\n\t\tmu 0 3 27327 27328 27329\n\t\tf 3 -26224 -26254 26255\n\t\tmu 0 3 27330 27331 27332\n\t\tf 3 -25760 26256 -26256\n\t\tmu 0 3 27333 27334 27335\n\t\tf 3 -26257 -25761 26257\n\t\tmu 0 3 27336 27337 27338\n\t\tf 3 26258 -26207 -26258\n\t\tmu 0 3 27339 27340 27341\n\t\tf 3 -26206 -26259 -25775\n\t\tmu 0 3 27342 27343 27344\n\t\tf 3 -26246 -25732 26259\n\t\tmu 0 3 27345 27346 27347\n\t\tf 3 -25745 26260 -26260\n\t\tmu 0 3 27348 27349 27350\n\t\tf 3 -26245 -26261 26261\n\t\tmu 0 3 27351 27352 27353\n\t\tf 3 26262 -25753 -26255\n\t\tmu 0 3 27354 27355 27356\n\t\tf 3 -25752 -26263 -26262\n\t\tmu 0 3 27357 27358 27359\n\t\tf 3 26263 -25855 26264\n\t\tmu 0 3 27360 27361 27362\n\t\tf 3 -25848 -25144 -26265\n\t\tmu 0 3 27363 27364 27365\n\t\tf 3 -25255 -25827 26265\n\t\tmu 0 3 27366 27367 27368\n\t\tf 3 -25360 -25258 -26266\n\t\tmu 0 3 27369 27370 27371\n\t\tf 3 -25954 26266 -26000\n\t\tmu 0 3 27372 27373 27374\n\t\tf 3 -25993 -26267 -25985\n\t\tmu 0 3 27375 27376 27377\n\t\tf 3 -25365 -25814 26267\n\t\tmu 0 3 27378 27379 27380\n\t\tf 3 -25470 -25368 -26268\n\t\tmu 0 3 27381 27382 27383\n\t\tf 3 -25475 -25801 26268\n\t\tmu 0 3 27384 27385 27386\n\t\tf 3 -25580 -25478 -26269\n\t\tmu 0 3 27387 27388 27389\n\t\tf 3 -26089 26269 -26135\n\t\tmu 0 3 27390 27391 27392\n\t\tf 3 -26128 -26270 -26120\n\t\tmu 0 3 27393 27394 27395\n\t\tf 3 -25585 -25788 26270\n\t\tmu 0 3 27396 27397 27398\n\t\tf 3 -25690 -25588 -26271\n\t\tmu 0 3 27399 27400 27401\n\t\tf 3 -25692 -25778 26271\n\t\tmu 0 3 27402 27403 27404\n\t\tf 3 26272 -25682 -26272\n\t\tmu 0 3 27405 27406 27407\n\t\tf 3 -26273 -25776 26273\n\t\tmu 0 3 27408 27409 27410\n\t\tf 3 26274 -25698 -26274\n\t\tmu 0 3 27411 27412 27413\n\t\tf 3 -25700 -26275 26275\n\t\tmu 0 3 27414 27415 27416\n\t\tf 3 -25772 26276 -26276\n\t\tmu 0 3 27417 27418 27419\n\t\tf 3 26277 26278 26279\n\t\tmu 0 3 27420 27421 27422\n\t\tf 3 26280 26281 -26280\n\t\tmu 0 3 27423 27424 27425\n\t\tf 3 -26281 26282 26283\n\t\tmu 0 3 27426 27427 27428\n\t\tf 3 26284 26285 -26284\n\t\tmu 0 3 27429 27430 27431\n\t\tf 3 26286 -26285 26287\n\t\tmu 0 3 27432 27433 27434\n\t\tf 3 26288 -25066 -26288\n\t\tmu 0 3 27435 27436 27437\n\t\tf 3 -25083 -26289 26289\n\t\tmu 0 3 27438 27439 27440\n\t\tf 3 26290 26291 -26290\n\t\tmu 0 3 27441 27442 27443\n\t\tf 3 -26291 -26283 26292\n\t\tmu 0 3 27444 27445 27446\n\t\tf 3 26293 26294 -26293\n\t\tmu 0 3 27447 27448 27449\n\t\tf 3 26295 -26294 26296\n\t\tmu 0 3 27450 27451 27452\n\t\tf 3 -26279 26297 -26297\n\t\tmu 0 3 27453 27454 27455\n\t\tf 3 26298 -26296 26299\n\t\tmu 0 3 27456 27457 27458\n\t\tf 3 26300 26301 -26300\n\t\tmu 0 3 27459 27460 27461\n\t\tf 3 -26299 26302 26303\n\t\tmu 0 3 27462 27463 27464\n\t\tf 3 26304 -26295 -26304\n\t\tmu 0 3 27465 27466 27467\n\t\tf 3 -26305 26305 26306\n\t\tmu 0 3 27468 27469 27470\n\t\tf 3 -25087 -26292 -26307\n\t\tmu 0 3 27471 27472 27473\n\t\tf 3 -25103 -26306 26307\n\t\tmu 0 3 27474 27475 27476\n\t\tf 3 26308 26309 -26308\n\t\tmu 0 3 27477 27478 27479\n\t\tf 3 -26309 -26303 26310\n\t\tmu 0 3 27480 27481 27482\n\t\tf 3 26311 26312 -26311\n\t\tmu 0 3 27483 27484 27485\n\t\tf 3 26313 -26312 26314\n\t\tmu 0 3 27486 27487 27488\n\t\tf 3 -26302 26315 -26315\n\t\tmu 0 3 27489 27490 27491\n\t\tf 3 26316 -26314 26317\n\t\tmu 0 3 27492 27493 27494\n\t\tf 3 26318 26319 -26318\n\t\tmu 0 3 27495 27496 27497\n\t\tf 3 -26317 26320 26321\n\t\tmu 0 3 27498 27499 27500\n\t\tf 3 26322 -26313 -26322\n\t\tmu 0 3 27501 27502 27503\n\t\tf 3 -26323 26323 26324\n\t\tmu 0 3 27504 27505 27506\n\t\tf 3 -25107 -26310 -26325\n\t\tmu 0 3 27507 27508 27509\n\t\tf 3 -25123 -26324 26325\n\t\tmu 0 3 27510 27511 27512\n\t\tf 3 26326 26327 -26326\n\t\tmu 0 3 27513 27514 27515\n\t\tf 3 -26327 -26321 26328\n\t\tmu 0 3 27516 27517 27518\n\t\tf 3 26329 26330 -26329\n\t\tmu 0 3 27519 27520 27521\n\t\tf 3 26331 -26330 26332\n\t\tmu 0 3 27522 27523 27524\n\t\tf 3 -26320 26333 -26333\n\t\tmu 0 3 27525 27526 27527\n\t\tf 3 26334 -26332 26335\n\t\tmu 0 3 27528 27529 27530\n\t\tf 3 26336 26337 -26336\n\t\tmu 0 3 27531 27532 27533\n\t\tf 3 -26335 26338 26339\n\t\tmu 0 3 27534 27535 27536\n\t\tf 3 26340 -26331 -26340\n\t\tmu 0 3 27537 27538 27539\n\t\tf 3 -26341 26341 26342\n\t\tmu 0 3 27540 27541 27542\n\t\tf 3 -25127 -26328 -26343\n\t\tmu 0 3 27543 27544 27545\n\t\tf 3 -25143 -26342 26343\n\t\tmu 0 3 27546 27547 27548\n\t\tf 3 26344 26345 -26344\n\t\tmu 0 3 27549 27550 27551\n\t\tf 3 -26345 -26339 26346\n\t\tmu 0 3 27552 27553 27554\n\t\tf 3 26347 26348 -26347\n\t\tmu 0 3 27555 27556 27557\n\t\tf 3 26349 -26348 26350\n\t\tmu 0 3 27558 27559 27560\n\t\tf 3 -26338 26351 -26351\n\t\tmu 0 3 27561 27562 27563\n\t\tf 3 26352 26353 26354\n\t\tmu 0 3 27564 27565 27566\n\t\tf 3 26355 -26350 -26355\n\t\tmu 0 3 27567 27568 27569\n\t\tf 3 -26354 26356 26357\n\t\tmu 0 3 27570 27571 27572\n\t\tf 3 26358 26359 -26358\n\t\tmu 0 3 27573 27574 27575\n\t\tf 3 -26360 26360 26361\n\t\tmu 0 3 27576 27577 27578\n\t\tf 3 26362 26363 -26362\n\t\tmu 0 3 27579 27580 27581\n\t\tf 3 -26356 -26364 26364\n\t\tmu 0 3 27582 27583 27584\n\t\tf 3 26365 -26349 -26365\n\t\tmu 0 3 27585 27586 27587\n\t\tf 3 -26363 26366 26367\n\t\tmu 0 3 27588 27589 27590\n\t\tf 3 -25857 26368 -26368\n\t\tmu 0 3 27591 27592 27593\n\t\tf 3 26369 -26359 26370\n\t\tmu 0 3 27594 27595 27596\n\t\tf 3 26371 26372 -26371\n\t\tmu 0 3 27597 27598 27599\n\t\tf 3 -26370 26373 26374\n\t\tmu 0 3 27600 27601 27602\n\t\tf 3 26375 -26361 -26375\n\t\tmu 0 3 27603 27604 27605\n\t\tf 3 -26376 26376 26377\n\t\tmu 0 3 27606 27607 27608\n\t\tf 3 -25861 -26367 -26378\n\t\tmu 0 3 27609 27610 27611\n\t\tf 3 -25877 -26377 26378\n\t\tmu 0 3 27612 27613 27614\n\t\tf 3 26379 26380 -26379\n\t\tmu 0 3 27615 27616 27617\n\t\tf 3 -26380 -26374 26381\n\t\tmu 0 3 27618 27619 27620\n\t\tf 3 26382 26383 -26382\n\t\tmu 0 3 27621 27622 27623\n\t\tf 3 26384 -26383 26385\n\t\tmu 0 3 27624 27625 27626\n\t\tf 3 -26373 26386 -26386\n\t\tmu 0 3 27627 27628 27629\n\t\tf 3 26387 -26385 26388\n\t\tmu 0 3 27630 27631 27632\n\t\tf 3 26389 26390 -26389\n\t\tmu 0 3 27633 27634 27635\n\t\tf 3 -26388 26391 26392\n\t\tmu 0 3 27636 27637 27638\n\t\tf 3 26393 -26384 -26393\n\t\tmu 0 3 27639 27640 27641\n\t\tf 3 -26394 26394 26395\n\t\tmu 0 3 27642 27643 27644\n\t\tf 3 -25881 -26381 -26396\n\t\tmu 0 3 27645 27646 27647\n\t\tf 3 -25897 -26395 26396\n\t\tmu 0 3 27648 27649 27650\n\t\tf 3 26397 26398 -26397\n\t\tmu 0 3 27651 27652 27653\n\t\tf 3 -26398 -26392 26399\n\t\tmu 0 3 27654 27655 27656\n\t\tf 3 26400 26401 -26400\n\t\tmu 0 3 27657 27658 27659\n\t\tf 3 26402 -26401 26403\n\t\tmu 0 3 27660 27661 27662\n\t\tf 3 -26391 26404 -26404\n\t\tmu 0 3 27663 27664 27665\n\t\tf 3 26405 -26403 26406\n\t\tmu 0 3 27666 27667 27668\n\t\tf 3 26407 26408 -26407\n\t\tmu 0 3 27669 27670 27671\n\t\tf 3 -26406 26409 26410\n\t\tmu 0 3 27672 27673 27674\n\t\tf 3 26411 -26402 -26411\n\t\tmu 0 3 27675 27676 27677\n\t\tf 3 -26412 26412 26413\n\t\tmu 0 3 27678 27679 27680\n\t\tf 3 -25901 -26399 -26414\n\t\tmu 0 3 27681 27682 27683\n\t\tf 3 -25915 -26413 26414\n\t\tmu 0 3 27684 27685 27686\n\t\tf 3 26415 -26287 -26415\n\t\tmu 0 3 27687 27688 27689\n\t\tf 3 -26416 -26410 26416\n\t\tmu 0 3 27690 27691 27692\n\t\tf 3 26417 -26286 -26417\n\t\tmu 0 3 27693 27694 27695\n\t\tf 3 -26282 -26418 26418\n\t\tmu 0 3 27696 27697 27698\n\t\tf 3 -26409 26419 -26419\n\t\tmu 0 3 27699 27700 27701\n\t\tf 3 -26366 -26369 26420\n\t\tmu 0 3 27702 27703 27704\n\t\tf 3 -26264 -26346 -26421\n\t\tmu 0 3 27705 27706 27707\n\t\tf 3 26421 26422 26423\n\t\tmu 0 3 27708 27709 27710\n\t\tf 3 26424 26425 -26424\n\t\tmu 0 3 27711 27712 27713\n\t\tf 3 -26423 26426 26427\n\t\tmu 0 3 27714 27715 27716\n\t\tf 3 26428 26429 -26428\n\t\tmu 0 3 27717 27718 27719\n\t\tf 3 -26429 26430 26431\n\t\tmu 0 3 27720 27721 27722\n\t\tf 3 26432 26433 -26432\n\t\tmu 0 3 27723 27724 27725\n\t\tf 3 26434 -26431 26435\n\t\tmu 0 3 27726 27727 27728\n\t\tf 3 26436 26437 -26436\n\t\tmu 0 3 27729 27730 27731\n\t\tf 3 -26437 -26427 26438\n\t\tmu 0 3 27732 27733 27734\n\t\tf 3 26439 26440 -26439\n\t\tmu 0 3 27735 27736 27737\n\t\tf 3 -26440 -26422 26441\n\t\tmu 0 3 27738 27739 27740\n\t\tf 3 26442 26443 -26442\n\t\tmu 0 3 27741 27742 27743\n\t\tf 3 26444 -26444 26445\n\t\tmu 0 3 27744 27745 27746\n\t\tf 3 26446 26447 -26446\n\t\tmu 0 3 27747 27748 27749\n\t\tf 3 -26445 26448 26449\n\t\tmu 0 3 27750 27751 27752\n\t\tf 3 26450 -26441 -26450\n\t\tmu 0 3 27753 27754 27755\n\t\tf 3 -26451 26451 26452\n\t\tmu 0 3 27756 27757 27758\n\t\tf 3 26453 -26438 -26453\n\t\tmu 0 3 27759 27760 27761\n\t\tf 3 26454 -26452 26455\n\t\tmu 0 3 27762 27763 27764\n\t\tf 3 26456 26457 -26456\n\t\tmu 0 3 27765 27766 27767\n\t\tf 3 -26457 -26449 26458\n\t\tmu 0 3 27768 27769 27770\n\t\tf 3 26459 26460 -26459\n\t\tmu 0 3 27771 27772 27773\n\t\tf 3 -26460 -26448 26461\n\t\tmu 0 3 27774 27775 27776\n\t\tf 3 26462 26463 -26462\n\t\tmu 0 3 27777 27778 27779\n\t\tf 3 26464 -26464 26465\n\t\tmu 0 3 27780 27781 27782\n\t\tf 3 26466 26467 -26466\n\t\tmu 0 3 27783 27784 27785\n\t\tf 3 -26465 26468 26469\n\t\tmu 0 3 27786 27787 27788\n\t\tf 3 26470 -26461 -26470\n\t\tmu 0 3 27789 27790 27791\n\t\tf 3 -26471 26471 26472\n\t\tmu 0 3 27792 27793 27794\n\t\tf 3 26473 -26458 -26473\n\t\tmu 0 3 27795 27796 27797\n\t\tf 3 26474 -26472 26475\n\t\tmu 0 3 27798 27799 27800\n\t\tf 3 26476 26477 -26476\n\t\tmu 0 3 27801 27802 27803\n\t\tf 3 -26477 -26469 26478\n\t\tmu 0 3 27804 27805 27806\n\t\tf 3 26479 26480 -26479\n\t\tmu 0 3 27807 27808 27809\n\t\tf 3 -26480 -26468 26481\n\t\tmu 0 3 27810 27811 27812\n\t\tf 3 26482 26483 -26482\n\t\tmu 0 3 27813 27814 27815\n\t\tf 3 26484 -26484 26485\n\t\tmu 0 3 27816 27817 27818\n\t\tf 3 26486 26487 -26486\n\t\tmu 0 3 27819 27820 27821\n\t\tf 3 -26485 26488 26489\n\t\tmu 0 3 27822 27823 27824\n\t\tf 3 26490 -26481 -26490\n\t\tmu 0 3 27825 27826 27827\n\t\tf 3 -26491 26491 26492\n\t\tmu 0 3 27828 27829 27830\n\t\tf 3 26493 -26478 -26493\n\t\tmu 0 3 27831 27832 27833\n\t\tf 3 26494 -26492 26495\n\t\tmu 0 3 27834 27835 27836\n\t\tf 3 26496 26497 -26496\n\t\tmu 0 3 27837 27838 27839\n\t\tf 3 -26497 -26489 26498\n\t\tmu 0 3 27840 27841 27842\n\t\tf 3 26499 26500 -26499\n\t\tmu 0 3 27843 27844 27845\n\t\tf 3 -26500 -26488 26501\n\t\tmu 0 3 27846 27847 27848\n\t\tf 3 26502 26503 -26502\n\t\tmu 0 3 27849 27850 27851\n\t\tf 3 -26483 26504 26505\n\t\tmu 0 3 27852 27853 27854\n\t\tf 3 26506 -26505 26507\n\t\tmu 0 3 27855 27856 27857\n\t\tf 3 -26507 26508 26509\n\t\tmu 0 3 27858 27859 27860\n\t\tf 3 26510 -26509 26511\n\t\tmu 0 3 27861 27862 27863\n\t\tf 3 26512 26513 -26512\n\t\tmu 0 3 27864 27865 27866\n\t\tf 3 26514 -26514 26515\n\t\tmu 0 3 27867 27868 27869\n\t\tf 3 26516 26517 -26516\n\t\tmu 0 3 27870 27871 27872\n\t\tf 3 26518 -26518 26519\n\t\tmu 0 3 27873 27874 27875\n\t\tf 3 26520 26521 -26520\n\t\tmu 0 3 27876 27877 27878\n\t\tf 3 -26522 26522 26523\n\t\tmu 0 3 27879 27880 27881\n\t\tf 3 26524 26525 -26524\n\t\tmu 0 3 27882 27883 27884\n\t\tf 3 26526 -26523 26527\n\t\tmu 0 3 27885 27886 27887\n\t\tf 3 26528 -26426 -26528\n\t\tmu 0 3 27888 27889 27890\n\t\tf 3 -26443 -26529 26529\n\t\tmu 0 3 27891 27892 27893\n\t\tf 3 -26521 26530 -26530\n\t\tmu 0 3 27894 27895 27896\n\t\tf 3 -26517 26531 26532\n\t\tmu 0 3 27897 27898 27899\n\t\tf 3 -26447 -26531 -26533\n\t\tmu 0 3 27900 27901 27902\n\t\tf 3 -26463 -26532 26533\n\t\tmu 0 3 27903 27904 27905\n\t\tf 3 -26513 26534 -26534\n\t\tmu 0 3 27906 27907 27908\n\t\tf 3 -26467 -26535 -26508\n\t\tmu 0 3 27909 27910 27911\n\t\tf 3 26535 -26527 26536\n\t\tmu 0 3 27912 27913 27914\n\t\tf 3 26537 26538 -26537\n\t\tmu 0 3 27915 27916 27917\n\t\tf 3 -26538 -26425 26539\n\t\tmu 0 3 27918 27919 27920\n\t\tf 3 26540 26541 -26540\n\t\tmu 0 3 27921 27922 27923\n\t\tf 3 26542 -26542 26543\n\t\tmu 0 3 27924 27925 27926\n\t\tf 3 26544 26545 -26544\n\t\tmu 0 3 27927 27928 27929\n\t\tf 3 26546 -26546 26547\n\t\tmu 0 3 27930 27931 27932\n\t\tf 3 26548 26549 -26548\n\t\tmu 0 3 27933 27934 27935\n\t\tf 3 26550 -26550 26551\n\t\tmu 0 3 27936 27937 27938\n\t\tf 3 26552 26553 -26552\n\t\tmu 0 3 27939 27940 27941\n\t\tf 3 26554 -26554 26555\n\t\tmu 0 3 27942 27943 27944\n\t\tf 3 26556 26557 -26556\n\t\tmu 0 3 27945 27946 27947\n\t\tf 3 26558 -26558 26559\n\t\tmu 0 3 27948 27949 27950\n\t\tf 3 26560 26561 -26560\n\t\tmu 0 3 27951 27952 27953\n\t\tf 3 26562 -26562 26563\n\t\tmu 0 3 27954 27955 27956\n\t\tf 3 26564 26565 -26564\n\t\tmu 0 3 27957 27958 27959\n\t\tf 3 26566 -26566 26567\n\t\tmu 0 3 27960 27961 27962\n\t\tf 3 26568 -26504 -26568\n\t\tmu 0 3 27963 27964 27965\n\t\tf 3 -26565 26569 26570\n\t\tmu 0 3 27966 27967 27968\n\t\tf 3 26571 26572 -26571\n\t\tmu 0 3 27969 27970 27971\n\t\tf 3 -26569 -26573 26573\n\t\tmu 0 3 27972 27973 27974\n\t\tf 3 26574 -26501 -26574\n\t\tmu 0 3 27975 27976 27977\n\t\tf 3 -26572 26575 26576\n\t\tmu 0 3 27978 27979 27980\n\t\tf 3 26577 26578 -26577\n\t\tmu 0 3 27981 27982 27983\n\t\tf 3 -26575 -26579 26579\n\t\tmu 0 3 27984 27985 27986\n\t\tf 3 26580 -26498 -26580\n\t\tmu 0 3 27987 27988 27989\n\t\tf 3 -26561 26581 26582\n\t\tmu 0 3 27990 27991 27992\n\t\tf 3 26583 -26570 -26583\n\t\tmu 0 3 27993 27994 27995\n\t\tf 3 -26584 26584 26585\n\t\tmu 0 3 27996 27997 27998\n\t\tf 3 26586 -26576 -26586\n\t\tmu 0 3 27999 28000 28001\n\t\tf 3 26587 -26585 26588\n\t\tmu 0 3 28002 28003 28004\n\t\tf 3 26589 26590 -26589\n\t\tmu 0 3 28005 28006 28007\n\t\tf 3 -26590 -26582 26591\n\t\tmu 0 3 28008 28009 28010\n\t\tf 3 -26557 26592 -26592\n\t\tmu 0 3 28011 28012 28013\n\t\tf 3 26593 -26593 26594\n\t\tmu 0 3 28014 28015 28016\n\t\tf 3 -26553 26595 -26595\n\t\tmu 0 3 28017 28018 28019\n\t\tf 3 -26594 26596 26597\n\t\tmu 0 3 28020 28021 28022\n\t\tf 3 26598 -26591 -26598\n\t\tmu 0 3 28023 28024 28025\n\t\tf 3 26599 -26597 26600\n\t\tmu 0 3 28026 28027 28028\n\t\tf 3 26601 26602 -26601\n\t\tmu 0 3 28029 28030 28031\n\t\tf 3 -26602 -26596 26603\n\t\tmu 0 3 28032 28033 28034\n\t\tf 3 -26549 26604 -26604\n\t\tmu 0 3 28035 28036 28037\n\t\tf 3 26605 -26605 26606\n\t\tmu 0 3 28038 28039 28040\n\t\tf 3 -26545 26607 -26607\n\t\tmu 0 3 28041 28042 28043\n\t\tf 3 -26606 26608 26609\n\t\tmu 0 3 28044 28045 28046\n\t\tf 3 26610 -26603 -26610\n\t\tmu 0 3 28047 28048 28049\n\t\tf 3 26611 -26609 26612\n\t\tmu 0 3 28050 28051 28052\n\t\tf 3 26613 -26434 -26613\n\t\tmu 0 3 28053 28054 28055\n\t\tf 3 -26614 -26608 26614\n\t\tmu 0 3 28056 28057 28058\n\t\tf 3 -26541 -26430 -26615\n\t\tmu 0 3 28059 28060 28061\n\t\tf 3 -26599 26615 26616\n\t\tmu 0 3 28062 28063 28064\n\t\tf 3 26617 -26616 26618\n\t\tmu 0 3 28065 28066 28067\n\t\tf 3 -26600 26619 -26619\n\t\tmu 0 3 28068 28069 28070\n\t\tf 3 -26618 26620 26621\n\t\tmu 0 3 28071 28072 28073\n\t\tf 3 26622 26623 -26622\n\t\tmu 0 3 28074 28075 28076\n\t\tf 3 26624 -26624 26625\n\t\tmu 0 3 28077 28078 28079\n\t\tf 3 -26625 26626 -26617\n\t\tmu 0 3 28080 28081 28082\n\t\tf 3 -26588 -26627 26627\n\t\tmu 0 3 28083 28084 28085\n\t\tf 3 26628 26629 -26628\n\t\tmu 0 3 28086 28087 28088\n\t\tf 3 -26587 -26630 26630\n\t\tmu 0 3 28089 28090 28091\n\t\tf 3 26631 26632 -26631\n\t\tmu 0 3 28092 28093 28094\n\t\tf 3 -26578 -26633 26633\n\t\tmu 0 3 28095 28096 28097\n\t\tf 3 26634 26635 -26634\n\t\tmu 0 3 28098 28099 28100\n\t\tf 3 -26635 26636 26637\n\t\tmu 0 3 28101 28102 28103\n\t\tf 3 26638 26639 -26638\n\t\tmu 0 3 28104 28105 28106\n\t\tf 3 -26639 26640 26641\n\t\tmu 0 3 28107 28108 28109\n\t\tf 3 26642 26643 -26642\n\t\tmu 0 3 28110 28111 28112\n\t\tf 3 -26643 26644 26645\n\t\tmu 0 3 28113 28114 28115\n\t\tf 3 26646 26647 -26646\n\t\tmu 0 3 28116 28117 28118\n\t\tf 3 -26647 26648 26649\n\t\tmu 0 3 28119 28120 28121\n\t\tf 3 26650 26651 -26650\n\t\tmu 0 3 28122 28123 28124\n\t\tf 3 -26651 26652 26653\n\t\tmu 0 3 28125 28126 28127\n\t\tf 3 26654 26655 -26654\n\t\tmu 0 3 28128 28129 28130\n\t\tf 3 -26655 26656 26657\n\t\tmu 0 3 28131 28132 28133\n\t\tf 3 26658 26659 -26658\n\t\tmu 0 3 28134 28135 28136\n\t\tf 3 -26659 26660 26661\n\t\tmu 0 3 28137 28138 28139\n\t\tf 3 26662 26663 -26662\n\t\tmu 0 3 28140 28141 28142\n\t\tf 3 26664 -26649 26665\n\t\tmu 0 3 28143 28144 28145\n\t\tf 3 26666 26667 -26666\n\t\tmu 0 3 28146 28147 28148\n\t\tf 3 -26667 -26645 26668\n\t\tmu 0 3 28149 28150 28151\n\t\tf 3 -26665 26669 26670\n\t\tmu 0 3 28152 28153 28154\n\t\tf 3 26671 -26653 -26671\n\t\tmu 0 3 28155 28156 28157\n\t\tf 3 -26672 26672 26673\n\t\tmu 0 3 28158 28159 28160\n\t\tf 3 26674 -26657 -26674\n\t\tmu 0 3 28161 28162 28163\n\t\tf 3 -26675 26675 26676\n\t\tmu 0 3 28164 28165 28166\n\t\tf 3 26677 -26661 -26677\n\t\tmu 0 3 28167 28168 28169\n\t\tf 3 26678 -26676 26679\n\t\tmu 0 3 28170 28171 28172\n\t\tf 3 26680 26681 -26680\n\t\tmu 0 3 28173 28174 28175\n\t\tf 3 -26681 -26673 26682\n\t\tmu 0 3 28176 28177 28178\n\t\tf 3 26683 26684 -26683\n\t\tmu 0 3 28179 28180 28181\n\t\tf 3 -26684 -26670 26685\n\t\tmu 0 3 28182 28183 28184\n\t\tf 3 26686 26687 -26686\n\t\tmu 0 3 28185 28186 28187\n\t\tf 3 -26687 -26668 26688\n\t\tmu 0 3 28188 28189 28190\n\t\tf 3 26689 26690 -26689\n\t\tmu 0 3 28191 28192 28193\n\t\tf 3 26691 -26691 26692\n\t\tmu 0 3 28194 28195 28196\n\t\tf 3 26693 26694 -26693\n\t\tmu 0 3 28197 28198 28199\n\t\tf 3 -26692 26695 26696\n\t\tmu 0 3 28200 28201 28202\n\t\tf 3 26697 -26688 -26697\n\t\tmu 0 3 28203 28204 28205\n\t\tf 3 -26698 26698 26699\n\t\tmu 0 3 28206 28207 28208\n\t\tf 3 26700 -26685 -26700\n\t\tmu 0 3 28209 28210 28211\n\t\tf 3 -26701 26701 26702\n\t\tmu 0 3 28212 28213 28214\n\t\tf 3 26703 -26682 -26703\n\t\tmu 0 3 28215 28216 28217\n\t\tf 3 26704 -26702 26705\n\t\tmu 0 3 28218 28219 28220\n\t\tf 3 26706 26707 -26706\n\t\tmu 0 3 28221 28222 28223\n\t\tf 3 -26707 -26699 26708\n\t\tmu 0 3 28224 28225 28226\n\t\tf 3 26709 26710 -26709\n\t\tmu 0 3 28227 28228 28229\n\t\tf 3 -26710 -26696 26711\n\t\tmu 0 3 28230 28231 28232\n\t\tf 3 26712 26713 -26712\n\t\tmu 0 3 28233 28234 28235\n\t\tf 3 -26713 -26695 26714\n\t\tmu 0 3 28236 28237 28238\n\t\tf 3 26715 26716 -26715\n\t\tmu 0 3 28239 28240 28241;\n\tsetAttr \".fc[14500:14999]\"\n\t\tf 3 26717 -26717 26718\n\t\tmu 0 3 28242 28243 28244\n\t\tf 3 26719 26720 -26719\n\t\tmu 0 3 28245 28246 28247\n\t\tf 3 -26718 26721 26722\n\t\tmu 0 3 28248 28249 28250\n\t\tf 3 26723 -26714 -26723\n\t\tmu 0 3 28251 28252 28253\n\t\tf 3 -26724 26724 26725\n\t\tmu 0 3 28254 28255 28256\n\t\tf 3 26726 -26711 -26726\n\t\tmu 0 3 28257 28258 28259\n\t\tf 3 -26727 26727 26728\n\t\tmu 0 3 28260 28261 28262\n\t\tf 3 26729 -26708 -26729\n\t\tmu 0 3 28263 28264 28265\n\t\tf 3 26730 -26728 26731\n\t\tmu 0 3 28266 28267 28268\n\t\tf 3 26732 26733 -26732\n\t\tmu 0 3 28269 28270 28271\n\t\tf 3 -26733 -26725 26734\n\t\tmu 0 3 28272 28273 28274\n\t\tf 3 26735 -26734 26736\n\t\tmu 0 3 28275 28276 28277\n\t\tf 3 26737 26738 -26737\n\t\tmu 0 3 28278 28279 28280\n\t\tf 3 -26738 26739 26740\n\t\tmu 0 3 28281 28282 28283\n\t\tf 3 26741 -26740 -26735\n\t\tmu 0 3 28284 28285 28286\n\t\tf 3 -26742 -26722 26742\n\t\tmu 0 3 28287 28288 28289\n\t\tf 3 26743 26744 -26741\n\t\tmu 0 3 28290 28291 28292\n\t\tf 3 -26744 26745 26746\n\t\tmu 0 3 28293 28294 28295\n\t\tf 3 26747 -26746 -26743\n\t\tmu 0 3 28296 28297 28298\n\t\tf 3 -26748 -26721 26748\n\t\tmu 0 3 28299 28300 28301\n\t\tf 3 26749 26750 -26747\n\t\tmu 0 3 28302 28303 28304\n\t\tf 3 -26750 26751 26752\n\t\tmu 0 3 28305 28306 28307\n\t\tf 3 26753 -26752 -26749\n\t\tmu 0 3 28308 28309 28310\n\t\tf 3 26754 26755 -26753\n\t\tmu 0 3 28311 28312 28313\n\t\tf 3 26756 -26739 26757\n\t\tmu 0 3 28314 28315 28316\n\t\tf 3 26758 26759 -26758\n\t\tmu 0 3 28317 28318 28319\n\t\tf 3 -26759 -26745 26760\n\t\tmu 0 3 28320 28321 28322\n\t\tf 3 26761 26762 -26761\n\t\tmu 0 3 28323 28324 28325\n\t\tf 3 -26762 -26751 26763\n\t\tmu 0 3 28326 28327 28328\n\t\tf 3 26764 26765 -26764\n\t\tmu 0 3 28329 28330 28331\n\t\tf 3 -26765 -26756 26766\n\t\tmu 0 3 28332 28333 28334\n\t\tf 3 26767 26768 -26767\n\t\tmu 0 3 28335 28336 28337\n\t\tf 3 26769 -26769 26770\n\t\tmu 0 3 28338 28339 28340\n\t\tf 3 26771 26772 -26771\n\t\tmu 0 3 28341 28342 28343\n\t\tf 3 -26770 26773 26774\n\t\tmu 0 3 28344 28345 28346\n\t\tf 3 26775 -26766 -26775\n\t\tmu 0 3 28347 28348 28349\n\t\tf 3 -26776 26776 26777\n\t\tmu 0 3 28350 28351 28352\n\t\tf 3 26778 -26763 -26778\n\t\tmu 0 3 28353 28354 28355\n\t\tf 3 -26779 26779 26780\n\t\tmu 0 3 28356 28357 28358\n\t\tf 3 26781 -26760 -26781\n\t\tmu 0 3 28359 28360 28361\n\t\tf 3 26782 -26780 26783\n\t\tmu 0 3 28362 28363 28364\n\t\tf 3 26784 26785 -26784\n\t\tmu 0 3 28365 28366 28367\n\t\tf 3 -26785 -26777 26786\n\t\tmu 0 3 28368 28369 28370\n\t\tf 3 26787 26788 -26787\n\t\tmu 0 3 28371 28372 28373\n\t\tf 3 -26788 -26774 26789\n\t\tmu 0 3 28374 28375 28376\n\t\tf 3 26790 26791 -26790\n\t\tmu 0 3 28377 28378 28379\n\t\tf 3 -26791 -26773 26792\n\t\tmu 0 3 28380 28381 28382\n\t\tf 3 26793 26794 -26793\n\t\tmu 0 3 28383 28384 28385\n\t\tf 3 26795 -26795 26796\n\t\tmu 0 3 28386 28387 28388\n\t\tf 3 26797 26798 -26797\n\t\tmu 0 3 28389 28390 28391\n\t\tf 3 -26796 26799 26800\n\t\tmu 0 3 28392 28393 28394\n\t\tf 3 26801 -26792 -26801\n\t\tmu 0 3 28395 28396 28397\n\t\tf 3 -26802 26802 26803\n\t\tmu 0 3 28398 28399 28400\n\t\tf 3 26804 -26789 -26804\n\t\tmu 0 3 28401 28402 28403\n\t\tf 3 -26805 26805 26806\n\t\tmu 0 3 28404 28405 28406\n\t\tf 3 26807 -26786 -26807\n\t\tmu 0 3 28407 28408 28409\n\t\tf 3 26808 -26806 26809\n\t\tmu 0 3 28410 28411 28412\n\t\tf 3 26810 26811 -26810\n\t\tmu 0 3 28413 28414 28415\n\t\tf 3 -26811 -26803 26812\n\t\tmu 0 3 28416 28417 28418\n\t\tf 3 26813 26814 -26813\n\t\tmu 0 3 28419 28420 28421\n\t\tf 3 -26814 -26800 26815\n\t\tmu 0 3 28422 28423 28424\n\t\tf 3 26816 26817 -26816\n\t\tmu 0 3 28425 28426 28427\n\t\tf 3 -26817 -26799 26818\n\t\tmu 0 3 28428 28429 28430\n\t\tf 3 26819 26820 -26819\n\t\tmu 0 3 28431 28432 28433\n\t\tf 3 26821 -26821 26822\n\t\tmu 0 3 28434 28435 28436\n\t\tf 3 26823 26824 -26823\n\t\tmu 0 3 28437 28438 28439\n\t\tf 3 -26822 26825 26826\n\t\tmu 0 3 28440 28441 28442\n\t\tf 3 26827 -26818 -26827\n\t\tmu 0 3 28443 28444 28445\n\t\tf 3 -26828 26828 26829\n\t\tmu 0 3 28446 28447 28448\n\t\tf 3 26830 -26815 -26830\n\t\tmu 0 3 28449 28450 28451\n\t\tf 3 -26831 26831 26832\n\t\tmu 0 3 28452 28453 28454\n\t\tf 3 26833 -26812 -26833\n\t\tmu 0 3 28455 28456 28457\n\t\tf 3 26834 -26832 26835\n\t\tmu 0 3 28458 28459 28460\n\t\tf 3 26836 26837 -26836\n\t\tmu 0 3 28461 28462 28463\n\t\tf 3 -26837 -26829 26838\n\t\tmu 0 3 28464 28465 28466\n\t\tf 3 26839 26840 -26839\n\t\tmu 0 3 28467 28468 28469\n\t\tf 3 -26840 -26826 26841\n\t\tmu 0 3 28470 28471 28472\n\t\tf 3 26842 26843 -26842\n\t\tmu 0 3 28473 28474 28475\n\t\tf 3 -26843 -26825 26844\n\t\tmu 0 3 28476 28477 28478\n\t\tf 3 26845 26846 -26845\n\t\tmu 0 3 28479 28480 28481\n\t\tf 3 26847 -26847 26848\n\t\tmu 0 3 28482 28483 28484\n\t\tf 3 26849 -26652 -26849\n\t\tmu 0 3 28485 28486 28487\n\t\tf 3 -26848 -26656 26850\n\t\tmu 0 3 28488 28489 28490\n\t\tf 3 26851 -26844 -26851\n\t\tmu 0 3 28491 28492 28493\n\t\tf 3 26852 -26841 26853\n\t\tmu 0 3 28494 28495 28496\n\t\tf 3 -26852 -26660 -26854\n\t\tmu 0 3 28497 28498 28499\n\t\tf 3 26854 -26838 26855\n\t\tmu 0 3 28500 28501 28502\n\t\tf 3 -26853 -26664 -26856\n\t\tmu 0 3 28503 28504 28505\n\t\tf 3 -26835 26856 26857\n\t\tmu 0 3 28506 28507 28508\n\t\tf 3 26858 26859 -26858\n\t\tmu 0 3 28509 28510 28511\n\t\tf 3 -26834 -26860 26860\n\t\tmu 0 3 28512 28513 28514\n\t\tf 3 26861 26862 -26861\n\t\tmu 0 3 28515 28516 28517\n\t\tf 3 -26809 -26863 26863\n\t\tmu 0 3 28518 28519 28520\n\t\tf 3 26864 26865 -26864\n\t\tmu 0 3 28521 28522 28523\n\t\tf 3 -26808 -26866 26866\n\t\tmu 0 3 28524 28525 28526\n\t\tf 3 26867 26868 -26867\n\t\tmu 0 3 28527 28528 28529\n\t\tf 3 -26783 -26869 26869\n\t\tmu 0 3 28530 28531 28532\n\t\tf 3 26870 26871 -26870\n\t\tmu 0 3 28533 28534 28535\n\t\tf 3 -26782 -26872 26872\n\t\tmu 0 3 28536 28537 28538\n\t\tf 3 26873 26874 -26873\n\t\tmu 0 3 28539 28540 28541\n\t\tf 3 -26757 -26875 26875\n\t\tmu 0 3 28542 28543 28544\n\t\tf 3 26876 26877 -26876\n\t\tmu 0 3 28545 28546 28547\n\t\tf 3 -26736 -26878 26878\n\t\tmu 0 3 28548 28549 28550\n\t\tf 3 26879 26880 -26879\n\t\tmu 0 3 28551 28552 28553\n\t\tf 3 -26880 26881 26882\n\t\tmu 0 3 28554 28555 28556\n\t\tf 3 26883 26884 -26883\n\t\tmu 0 3 28557 28558 28559\n\t\tf 3 -26884 26885 26886\n\t\tmu 0 3 28560 28561 28562\n\t\tf 3 26887 26888 -26887\n\t\tmu 0 3 28563 28564 28565\n\t\tf 3 -26888 26889 26890\n\t\tmu 0 3 28566 28567 28568\n\t\tf 3 26891 26892 -26891\n\t\tmu 0 3 28569 28570 28571\n\t\tf 3 26893 -26890 26894\n\t\tmu 0 3 28572 28573 28574\n\t\tf 3 26895 26896 -26895\n\t\tmu 0 3 28575 28576 28577\n\t\tf 3 -26896 -26886 26897\n\t\tmu 0 3 28578 28579 28580\n\t\tf 3 26898 26899 -26898\n\t\tmu 0 3 28581 28582 28583\n\t\tf 3 -26899 -26882 26900\n\t\tmu 0 3 28584 28585 28586\n\t\tf 3 -26877 26901 -26901\n\t\tmu 0 3 28587 28588 28589\n\t\tf 3 -26874 26902 26903\n\t\tmu 0 3 28590 28591 28592\n\t\tf 3 26904 -26902 -26904\n\t\tmu 0 3 28593 28594 28595\n\t\tf 3 -26905 26905 26906\n\t\tmu 0 3 28596 28597 28598\n\t\tf 3 26907 26908 -26907\n\t\tmu 0 3 28599 28600 28601\n\t\tf 3 -26908 26909 26910\n\t\tmu 0 3 28602 28603 28604\n\t\tf 3 26911 26912 -26911\n\t\tmu 0 3 28605 28606 28607\n\t\tf 3 26913 -26910 26914\n\t\tmu 0 3 28608 28609 28610\n\t\tf 3 26915 26916 -26915\n\t\tmu 0 3 28611 28612 28613\n\t\tf 3 -26916 -26906 26917\n\t\tmu 0 3 28614 28615 28616\n\t\tf 3 26918 26919 -26918\n\t\tmu 0 3 28617 28618 28619\n\t\tf 3 -26919 -26903 26920\n\t\tmu 0 3 28620 28621 28622\n\t\tf 3 -26871 26921 -26921\n\t\tmu 0 3 28623 28624 28625\n\t\tf 3 26922 -26922 26923\n\t\tmu 0 3 28626 28627 28628\n\t\tf 3 -26868 26924 -26924\n\t\tmu 0 3 28629 28630 28631\n\t\tf 3 -26923 26925 26926\n\t\tmu 0 3 28632 28633 28634\n\t\tf 3 26927 -26920 -26927\n\t\tmu 0 3 28635 28636 28637\n\t\tf 3 -26928 26928 26929\n\t\tmu 0 3 28638 28639 28640\n\t\tf 3 26930 -26917 -26930\n\t\tmu 0 3 28641 28642 28643\n\t\tf 3 26931 -26929 26932\n\t\tmu 0 3 28644 28645 28646\n\t\tf 3 26933 26934 -26933\n\t\tmu 0 3 28647 28648 28649\n\t\tf 3 -26934 -26926 26935\n\t\tmu 0 3 28650 28651 28652\n\t\tf 3 26936 26937 -26936\n\t\tmu 0 3 28653 28654 28655\n\t\tf 3 -26937 -26925 26938\n\t\tmu 0 3 28656 28657 28658\n\t\tf 3 -26865 26939 -26939\n\t\tmu 0 3 28659 28660 28661\n\t\tf 3 26940 -26940 26941\n\t\tmu 0 3 28662 28663 28664\n\t\tf 3 -26862 26942 -26942\n\t\tmu 0 3 28665 28666 28667\n\t\tf 3 -26941 26943 26944\n\t\tmu 0 3 28668 28669 28670\n\t\tf 3 26945 -26938 -26945\n\t\tmu 0 3 28671 28672 28673\n\t\tf 3 -26946 26946 26947\n\t\tmu 0 3 28674 28675 28676\n\t\tf 3 26948 -26935 -26948\n\t\tmu 0 3 28677 28678 28679\n\t\tf 3 26949 -26947 26950\n\t\tmu 0 3 28680 28681 28682\n\t\tf 3 26951 26952 -26951\n\t\tmu 0 3 28683 28684 28685\n\t\tf 3 -26952 -26944 26953\n\t\tmu 0 3 28686 28687 28688\n\t\tf 3 26954 26955 -26954\n\t\tmu 0 3 28689 28690 28691\n\t\tf 3 -26955 -26943 26956\n\t\tmu 0 3 28692 28693 28694\n\t\tf 3 -26859 26957 -26957\n\t\tmu 0 3 28695 28696 28697\n\t\tf 3 26958 -26958 26959\n\t\tmu 0 3 28698 28699 28700\n\t\tf 3 26960 26961 -26960\n\t\tmu 0 3 28701 28702 28703\n\t\tf 3 26962 -26956 26963\n\t\tmu 0 3 28704 28705 28706\n\t\tf 3 -26959 26964 -26964\n\t\tmu 0 3 28707 28708 28709\n\t\tf 3 26965 -26953 26966\n\t\tmu 0 3 28710 28711 28712\n\t\tf 3 -26963 26967 -26967\n\t\tmu 0 3 28713 28714 28715\n\t\tf 3 -26950 26968 26969\n\t\tmu 0 3 28716 28717 28718\n\t\tf 3 26970 26971 -26970\n\t\tmu 0 3 28719 28720 28721\n\t\tf 3 -26949 -26972 26972\n\t\tmu 0 3 28722 28723 28724\n\t\tf 3 26973 26974 -26973\n\t\tmu 0 3 28725 28726 28727\n\t\tf 3 -26932 -26975 26975\n\t\tmu 0 3 28728 28729 28730\n\t\tf 3 26976 26977 -26976\n\t\tmu 0 3 28731 28732 28733\n\t\tf 3 -26931 -26978 26978\n\t\tmu 0 3 28734 28735 28736\n\t\tf 3 26979 26980 -26979\n\t\tmu 0 3 28737 28738 28739\n\t\tf 3 -26914 -26981 26981\n\t\tmu 0 3 28740 28741 28742\n\t\tf 3 26982 26983 -26982\n\t\tmu 0 3 28743 28744 28745\n\t\tf 3 -26912 -26984 26984\n\t\tmu 0 3 28746 28747 28748\n\t\tf 3 26985 26986 -26985\n\t\tmu 0 3 28749 28750 28751\n\t\tf 3 -26894 -26987 26987\n\t\tmu 0 3 28752 28753 28754\n\t\tf 3 26988 26989 -26988\n\t\tmu 0 3 28755 28756 28757\n\t\tf 3 -26892 -26990 26990\n\t\tmu 0 3 28758 28759 28760\n\t\tf 3 26991 26992 -26991\n\t\tmu 0 3 28761 28762 28763\n\t\tf 3 -26992 26993 26994\n\t\tmu 0 3 28764 28765 28766\n\t\tf 3 26995 26996 -26995\n\t\tmu 0 3 28767 28768 28769\n\t\tf 3 -26996 26997 26998\n\t\tmu 0 3 28770 28771 28772\n\t\tf 3 26999 27000 -26999\n\t\tmu 0 3 28773 28774 28775\n\t\tf 3 -27000 27001 27002\n\t\tmu 0 3 28776 28777 28778\n\t\tf 3 27003 27004 -27003\n\t\tmu 0 3 28779 28780 28781\n\t\tf 3 27005 -27002 27006\n\t\tmu 0 3 28782 28783 28784\n\t\tf 3 27007 27008 -27007\n\t\tmu 0 3 28785 28786 28787\n\t\tf 3 -27008 -26998 27009\n\t\tmu 0 3 28788 28789 28790\n\t\tf 3 27010 27011 -27010\n\t\tmu 0 3 28791 28792 28793\n\t\tf 3 -27011 -26994 27012\n\t\tmu 0 3 28794 28795 28796\n\t\tf 3 -26989 27013 -27013\n\t\tmu 0 3 28797 28798 28799\n\t\tf 3 -26986 27014 27015\n\t\tmu 0 3 28800 28801 28802\n\t\tf 3 27016 -27014 -27016\n\t\tmu 0 3 28803 28804 28805\n\t\tf 3 -27017 27017 27018\n\t\tmu 0 3 28806 28807 28808\n\t\tf 3 27019 -27012 -27019\n\t\tmu 0 3 28809 28810 28811\n\t\tf 3 -27020 27020 27021\n\t\tmu 0 3 28812 28813 28814\n\t\tf 3 27022 -27009 -27022\n\t\tmu 0 3 28815 28816 28817\n\t\tf 3 27023 -27021 27024\n\t\tmu 0 3 28818 28819 28820\n\t\tf 3 27025 27026 -27025\n\t\tmu 0 3 28821 28822 28823\n\t\tf 3 -27026 -27018 27027\n\t\tmu 0 3 28824 28825 28826\n\t\tf 3 27028 27029 -27028\n\t\tmu 0 3 28827 28828 28829\n\t\tf 3 -27029 -27015 27030\n\t\tmu 0 3 28830 28831 28832\n\t\tf 3 -26983 27031 -27031\n\t\tmu 0 3 28833 28834 28835\n\t\tf 3 27032 -27032 27033\n\t\tmu 0 3 28836 28837 28838\n\t\tf 3 -26980 27034 -27034\n\t\tmu 0 3 28839 28840 28841\n\t\tf 3 -27033 27035 27036\n\t\tmu 0 3 28842 28843 28844\n\t\tf 3 27037 -27030 -27037\n\t\tmu 0 3 28845 28846 28847\n\t\tf 3 -27038 27038 27039\n\t\tmu 0 3 28848 28849 28850\n\t\tf 3 27040 -27027 -27040\n\t\tmu 0 3 28851 28852 28853\n\t\tf 3 27041 -27039 27042\n\t\tmu 0 3 28854 28855 28856\n\t\tf 3 27043 27044 -27043\n\t\tmu 0 3 28857 28858 28859\n\t\tf 3 -27044 -27036 27045\n\t\tmu 0 3 28860 28861 28862\n\t\tf 3 27046 27047 -27046\n\t\tmu 0 3 28863 28864 28865\n\t\tf 3 -27047 -27035 27048\n\t\tmu 0 3 28866 28867 28868\n\t\tf 3 -26977 27049 -27049\n\t\tmu 0 3 28869 28870 28871\n\t\tf 3 27050 -27050 27051\n\t\tmu 0 3 28872 28873 28874\n\t\tf 3 -26974 27052 -27052\n\t\tmu 0 3 28875 28876 28877\n\t\tf 3 -27051 27053 27054\n\t\tmu 0 3 28878 28879 28880\n\t\tf 3 27055 -27048 -27055\n\t\tmu 0 3 28881 28882 28883\n\t\tf 3 -27056 27056 27057\n\t\tmu 0 3 28884 28885 28886\n\t\tf 3 27058 -27045 -27058\n\t\tmu 0 3 28887 28888 28889\n\t\tf 3 27059 -27057 27060\n\t\tmu 0 3 28890 28891 28892\n\t\tf 3 27061 27062 -27061\n\t\tmu 0 3 28893 28894 28895\n\t\tf 3 -27062 -27054 27063\n\t\tmu 0 3 28896 28897 28898\n\t\tf 3 27064 27065 -27064\n\t\tmu 0 3 28899 28900 28901\n\t\tf 3 -27065 -27053 27066\n\t\tmu 0 3 28902 28903 28904\n\t\tf 3 -26971 27067 -27067\n\t\tmu 0 3 28905 28906 28907\n\t\tf 3 27068 -27068 27069\n\t\tmu 0 3 28908 28909 28910\n\t\tf 3 27070 27071 -27070\n\t\tmu 0 3 28911 28912 28913\n\t\tf 3 27072 -27066 27073\n\t\tmu 0 3 28914 28915 28916\n\t\tf 3 -27069 27074 -27074\n\t\tmu 0 3 28917 28918 28919\n\t\tf 3 27075 -27063 27076\n\t\tmu 0 3 28920 28921 28922\n\t\tf 3 -27073 27077 -27077\n\t\tmu 0 3 28923 28924 28925\n\t\tf 3 -27060 27078 27079\n\t\tmu 0 3 28926 28927 28928\n\t\tf 3 27080 27081 -27080\n\t\tmu 0 3 28929 28930 28931\n\t\tf 3 -27059 -27082 27082\n\t\tmu 0 3 28932 28933 28934\n\t\tf 3 27083 27084 -27083\n\t\tmu 0 3 28935 28936 28937\n\t\tf 3 -27042 -27085 27085\n\t\tmu 0 3 28938 28939 28940\n\t\tf 3 27086 27087 -27086\n\t\tmu 0 3 28941 28942 28943\n\t\tf 3 -27041 -27088 27088\n\t\tmu 0 3 28944 28945 28946\n\t\tf 3 27089 27090 -27089\n\t\tmu 0 3 28947 28948 28949\n\t\tf 3 -27024 -27091 27091\n\t\tmu 0 3 28950 28951 28952\n\t\tf 3 27092 27093 -27092\n\t\tmu 0 3 28953 28954 28955\n\t\tf 3 -27023 -27094 27094\n\t\tmu 0 3 28956 28957 28958\n\t\tf 3 27095 27096 -27095\n\t\tmu 0 3 28959 28960 28961\n\t\tf 3 -27006 -27097 27097\n\t\tmu 0 3 28962 28963 28964\n\t\tf 3 27098 27099 -27098\n\t\tmu 0 3 28965 28966 28967\n\t\tf 3 -27004 -27100 27100\n\t\tmu 0 3 28968 28969 28970\n\t\tf 3 27101 27102 -27101\n\t\tmu 0 3 28971 28972 28973\n\t\tf 3 -27102 27103 27104\n\t\tmu 0 3 28974 28975 28976\n\t\tf 3 27105 27106 -27105\n\t\tmu 0 3 28977 28978 28979\n\t\tf 3 -27106 27107 27108\n\t\tmu 0 3 28980 28981 28982\n\t\tf 3 27109 27110 -27109\n\t\tmu 0 3 28983 28984 28985\n\t\tf 3 -27110 27111 27112\n\t\tmu 0 3 28986 28987 28988\n\t\tf 3 27113 27114 -27113\n\t\tmu 0 3 28989 28990 28991\n\t\tf 3 27115 -27112 27116\n\t\tmu 0 3 28992 28993 28994\n\t\tf 3 27117 27118 -27117\n\t\tmu 0 3 28995 28996 28997\n\t\tf 3 -27118 -27108 27119\n\t\tmu 0 3 28998 28999 29000\n\t\tf 3 27120 27121 -27120\n\t\tmu 0 3 29001 29002 29003\n\t\tf 3 -27121 -27104 27122\n\t\tmu 0 3 29004 29005 29006\n\t\tf 3 -27099 27123 -27123\n\t\tmu 0 3 29007 29008 29009\n\t\tf 3 -27096 27124 27125\n\t\tmu 0 3 29010 29011 29012\n\t\tf 3 27126 -27124 -27126\n\t\tmu 0 3 29013 29014 29015\n\t\tf 3 -27127 27127 27128\n\t\tmu 0 3 29016 29017 29018\n\t\tf 3 27129 -27122 -27129\n\t\tmu 0 3 29019 29020 29021\n\t\tf 3 -27130 27130 27131\n\t\tmu 0 3 29022 29023 29024\n\t\tf 3 27132 -27119 -27132\n\t\tmu 0 3 29025 29026 29027\n\t\tf 3 27133 -27131 27134\n\t\tmu 0 3 29028 29029 29030\n\t\tf 3 27135 27136 -27135\n\t\tmu 0 3 29031 29032 29033\n\t\tf 3 -27136 -27128 27137\n\t\tmu 0 3 29034 29035 29036\n\t\tf 3 27138 27139 -27138\n\t\tmu 0 3 29037 29038 29039\n\t\tf 3 -27139 -27125 27140\n\t\tmu 0 3 29040 29041 29042\n\t\tf 3 -27093 27141 -27141\n\t\tmu 0 3 29043 29044 29045\n\t\tf 3 27142 -27142 27143\n\t\tmu 0 3 29046 29047 29048\n\t\tf 3 -27090 27144 -27144\n\t\tmu 0 3 29049 29050 29051\n\t\tf 3 -27143 27145 27146\n\t\tmu 0 3 29052 29053 29054\n\t\tf 3 27147 -27140 -27147\n\t\tmu 0 3 29055 29056 29057\n\t\tf 3 -27148 27148 27149\n\t\tmu 0 3 29058 29059 29060\n\t\tf 3 27150 -27137 -27150\n\t\tmu 0 3 29061 29062 29063\n\t\tf 3 27151 -27149 27152\n\t\tmu 0 3 29064 29065 29066\n\t\tf 3 27153 27154 -27153\n\t\tmu 0 3 29067 29068 29069\n\t\tf 3 -27154 -27146 27155\n\t\tmu 0 3 29070 29071 29072\n\t\tf 3 27156 27157 -27156\n\t\tmu 0 3 29073 29074 29075\n\t\tf 3 -27157 -27145 27158\n\t\tmu 0 3 29076 29077 29078\n\t\tf 3 -27087 27159 -27159\n\t\tmu 0 3 29079 29080 29081\n\t\tf 3 27160 -27160 27161\n\t\tmu 0 3 29082 29083 29084\n\t\tf 3 -27084 27162 -27162\n\t\tmu 0 3 29085 29086 29087\n\t\tf 3 -27161 27163 27164\n\t\tmu 0 3 29088 29089 29090\n\t\tf 3 27165 -27158 -27165\n\t\tmu 0 3 29091 29092 29093\n\t\tf 3 -27166 27166 27167\n\t\tmu 0 3 29094 29095 29096\n\t\tf 3 27168 -27155 -27168\n\t\tmu 0 3 29097 29098 29099\n\t\tf 3 27169 -27167 27170\n\t\tmu 0 3 29100 29101 29102\n\t\tf 3 27171 27172 -27171\n\t\tmu 0 3 29103 29104 29105\n\t\tf 3 -27172 -27164 27173\n\t\tmu 0 3 29106 29107 29108\n\t\tf 3 27174 27175 -27174\n\t\tmu 0 3 29109 29110 29111\n\t\tf 3 -27175 -27163 27176\n\t\tmu 0 3 29112 29113 29114\n\t\tf 3 -27081 27177 -27177\n\t\tmu 0 3 29115 29116 29117\n\t\tf 3 27178 -27178 27179\n\t\tmu 0 3 29118 29119 29120\n\t\tf 3 27180 27181 -27180\n\t\tmu 0 3 29121 29122 29123\n\t\tf 3 27182 -27176 27183\n\t\tmu 0 3 29124 29125 29126\n\t\tf 3 -27179 27184 -27184\n\t\tmu 0 3 29127 29128 29129\n\t\tf 3 27185 -27173 27186\n\t\tmu 0 3 29130 29131 29132\n\t\tf 3 -27183 27187 -27187\n\t\tmu 0 3 29133 29134 29135\n\t\tf 3 -27170 27188 27189\n\t\tmu 0 3 29136 29137 29138\n\t\tf 3 27190 27191 -27190\n\t\tmu 0 3 29139 29140 29141\n\t\tf 3 -27169 -27192 27192\n\t\tmu 0 3 29142 29143 29144\n\t\tf 3 27193 27194 -27193\n\t\tmu 0 3 29145 29146 29147\n\t\tf 3 -27152 -27195 27195\n\t\tmu 0 3 29148 29149 29150\n\t\tf 3 27196 27197 -27196\n\t\tmu 0 3 29151 29152 29153\n\t\tf 3 -27151 -27198 27198\n\t\tmu 0 3 29154 29155 29156\n\t\tf 3 27199 27200 -27199\n\t\tmu 0 3 29157 29158 29159\n\t\tf 3 -27134 -27201 27201\n\t\tmu 0 3 29160 29161 29162\n\t\tf 3 27202 27203 -27202\n\t\tmu 0 3 29163 29164 29165\n\t\tf 3 -27133 -27204 27204\n\t\tmu 0 3 29166 29167 29168\n\t\tf 3 27205 27206 -27205\n\t\tmu 0 3 29169 29170 29171\n\t\tf 3 -27116 -27207 27207\n\t\tmu 0 3 29172 29173 29174\n\t\tf 3 27208 27209 -27208\n\t\tmu 0 3 29175 29176 29177\n\t\tf 3 -27114 -27210 27210\n\t\tmu 0 3 29178 29179 29180\n\t\tf 3 27211 27212 -27211\n\t\tmu 0 3 29181 29182 29183\n\t\tf 3 -27212 27213 27214\n\t\tmu 0 3 29184 29185 29186\n\t\tf 3 27215 27216 -27215\n\t\tmu 0 3 29187 29188 29189\n\t\tf 3 -27216 27217 27218\n\t\tmu 0 3 29190 29191 29192\n\t\tf 3 27219 27220 -27219\n\t\tmu 0 3 29193 29194 29195\n\t\tf 3 -27220 27221 27222\n\t\tmu 0 3 29196 29197 29198\n\t\tf 3 27223 27224 -27223\n\t\tmu 0 3 29199 29200 29201\n\t\tf 3 27225 -27222 27226\n\t\tmu 0 3 29202 29203 29204\n\t\tf 3 27227 27228 -27227\n\t\tmu 0 3 29205 29206 29207\n\t\tf 3 -27228 -27218 27229\n\t\tmu 0 3 29208 29209 29210\n\t\tf 3 27230 27231 -27230\n\t\tmu 0 3 29211 29212 29213\n\t\tf 3 -27231 -27214 27232\n\t\tmu 0 3 29214 29215 29216\n\t\tf 3 -27209 27233 -27233\n\t\tmu 0 3 29217 29218 29219\n\t\tf 3 -27206 27234 27235\n\t\tmu 0 3 29220 29221 29222\n\t\tf 3 27236 -27234 -27236\n\t\tmu 0 3 29223 29224 29225\n\t\tf 3 -27237 27237 27238\n\t\tmu 0 3 29226 29227 29228\n\t\tf 3 27239 -27232 -27239\n\t\tmu 0 3 29229 29230 29231\n\t\tf 3 -27240 27240 27241\n\t\tmu 0 3 29232 29233 29234\n\t\tf 3 27242 -27229 -27242\n\t\tmu 0 3 29235 29236 29237\n\t\tf 3 27243 -27241 27244\n\t\tmu 0 3 29238 29239 29240\n\t\tf 3 27245 27246 -27245\n\t\tmu 0 3 29241 29242 29243\n\t\tf 3 -27246 -27238 27247\n\t\tmu 0 3 29244 29245 29246\n\t\tf 3 27248 27249 -27248\n\t\tmu 0 3 29247 29248 29249\n\t\tf 3 -27249 -27235 27250\n\t\tmu 0 3 29250 29251 29252\n\t\tf 3 -27203 27251 -27251\n\t\tmu 0 3 29253 29254 29255\n\t\tf 3 27252 -27252 27253\n\t\tmu 0 3 29256 29257 29258\n\t\tf 3 -27200 27254 -27254\n\t\tmu 0 3 29259 29260 29261\n\t\tf 3 -27253 27255 27256\n\t\tmu 0 3 29262 29263 29264\n\t\tf 3 27257 -27250 -27257\n\t\tmu 0 3 29265 29266 29267\n\t\tf 3 -27258 27258 27259\n\t\tmu 0 3 29268 29269 29270\n\t\tf 3 27260 -27247 -27260\n\t\tmu 0 3 29271 29272 29273\n\t\tf 3 27261 -27259 27262\n\t\tmu 0 3 29274 29275 29276\n\t\tf 3 27263 27264 -27263\n\t\tmu 0 3 29277 29278 29279\n\t\tf 3 -27264 -27256 27265\n\t\tmu 0 3 29280 29281 29282\n\t\tf 3 27266 27267 -27266\n\t\tmu 0 3 29283 29284 29285\n\t\tf 3 -27267 -27255 27268\n\t\tmu 0 3 29286 29287 29288\n\t\tf 3 -27197 27269 -27269\n\t\tmu 0 3 29289 29290 29291\n\t\tf 3 27270 -27270 27271\n\t\tmu 0 3 29292 29293 29294\n\t\tf 3 -27194 27272 -27272\n\t\tmu 0 3 29295 29296 29297\n\t\tf 3 -27271 27273 27274\n\t\tmu 0 3 29298 29299 29300\n\t\tf 3 27275 -27268 -27275\n\t\tmu 0 3 29301 29302 29303\n\t\tf 3 -27276 27276 27277\n\t\tmu 0 3 29304 29305 29306\n\t\tf 3 27278 -27265 -27278\n\t\tmu 0 3 29307 29308 29309\n\t\tf 3 27279 -27277 27280\n\t\tmu 0 3 29310 29311 29312\n\t\tf 3 27281 27282 -27281\n\t\tmu 0 3 29313 29314 29315\n\t\tf 3 -27282 -27274 27283\n\t\tmu 0 3 29316 29317 29318\n\t\tf 3 27284 27285 -27284\n\t\tmu 0 3 29319 29320 29321\n\t\tf 3 -27285 -27273 27286\n\t\tmu 0 3 29322 29323 29324\n\t\tf 3 -27191 27287 -27287\n\t\tmu 0 3 29325 29326 29327\n\t\tf 3 27288 -27288 27289\n\t\tmu 0 3 29328 29329 29330\n\t\tf 3 27290 27291 -27290\n\t\tmu 0 3 29331 29332 29328\n\t\tf 3 27292 -27286 27293\n\t\tmu 0 3 29333 29334 29335\n\t\tf 3 -27289 27294 -27294\n\t\tmu 0 3 29336 29337 29338\n\t\tf 3 -27279 27295 27296\n\t\tmu 0 3 29339 29340 29341\n\t\tf 3 -27296 -27280 27297\n\t\tmu 0 3 29342 29343 29344\n\t\tf 3 27298 27299 -27298\n\t\tmu 0 3 29345 29346 29347\n\t\tf 3 -27300 27300 27301\n\t\tmu 0 3 29348 29349 29350\n\t\tf 3 27302 27303 -27302\n\t\tmu 0 3 29351 29352 29353\n\t\tf 3 -27304 27304 27305\n\t\tmu 0 3 29354 29355 29356\n\t\tf 3 27306 27307 -27306\n\t\tmu 0 3 29357 29358 29359\n\t\tf 3 27308 -27307 27309\n\t\tmu 0 3 29360 29361 29362\n\t\tf 3 27310 27311 -27310\n\t\tmu 0 3 29363 29364 29365\n\t\tf 3 -27312 27312 27313\n\t\tmu 0 3 29366 29367 29368\n\t\tf 3 27314 27315 -27314\n\t\tmu 0 3 29369 29370 29371\n\t\tf 3 27316 -27315 27317\n\t\tmu 0 3 29372 29373 29374\n\t\tf 3 27318 27319 -27318\n\t\tmu 0 3 29375 29376 29377\n\t\tf 3 -27320 27320 27321\n\t\tmu 0 3 29378 29379 29380\n\t\tf 3 27322 27323 -27322\n\t\tmu 0 3 29381 29382 29383\n\t\tf 3 27324 -27323 27325\n\t\tmu 0 3 29384 29385 29386\n\t\tf 3 27326 27327 -27326\n\t\tmu 0 3 29387 29388 29389\n\t\tf 3 -27328 27328 27329\n\t\tmu 0 3 29390 29391 29392\n\t\tf 3 27330 27331 -27330\n\t\tmu 0 3 29393 29394 29395\n\t\tf 3 -27332 27332 27333\n\t\tmu 0 3 29396 29397 29398\n\t\tf 3 -27224 27334 -27334\n\t\tmu 0 3 29399 29400 29401\n\t\tf 3 -27335 -27226 27335\n\t\tmu 0 3 29402 29403 29404\n\t\tf 3 27336 -27325 -27336\n\t\tmu 0 3 29405 29406 29407\n\t\tf 3 -27324 -27337 27337\n\t\tmu 0 3 29408 29409 29410\n\t\tf 3 -27243 27338 -27338\n\t\tmu 0 3 29411 29412 29413\n\t\tf 3 -27339 -27244 27339\n\t\tmu 0 3 29414 29415 29416\n\t\tf 3 27340 -27317 -27340\n\t\tmu 0 3 29417 29418 29419\n\t\tf 3 -27316 -27341 27341\n\t\tmu 0 3 29420 29421 29422\n\t\tf 3 -27261 27342 -27342\n\t\tmu 0 3 29423 29424 29425\n\t\tf 3 -27343 -27262 27343\n\t\tmu 0 3 29426 29427 29428\n\t\tf 3 27344 -27309 -27344\n\t\tmu 0 3 29429 29430 29431\n\t\tf 3 -27308 -27345 -27297\n\t\tmu 0 3 29432 29433 29434\n\t\tf 3 27345 -27331 27346\n\t\tmu 0 3 29435 29436 29437\n\t\tf 3 27347 27348 -27347\n\t\tmu 0 3 29438 29439 29440\n\t\tf 3 -27349 27349 27350\n\t\tmu 0 3 29441 29442 29443\n\t\tf 3 27351 27352 -27351\n\t\tmu 0 3 29444 29445 29446\n\t\tf 3 27353 -27352 27354\n\t\tmu 0 3 29447 29448 29449\n\t\tf 3 27355 27356 -27355\n\t\tmu 0 3 29450 29451 29452\n\t\tf 3 -27357 27357 27358\n\t\tmu 0 3 29453 29454 29455\n\t\tf 3 27359 27360 -27359\n\t\tmu 0 3 29456 29457 29458\n\t\tf 3 27361 -27360 27362\n\t\tmu 0 3 29459 29460 29461\n\t\tf 3 27363 27364 -27363\n\t\tmu 0 3 29462 29463 29464\n\t\tf 3 -27365 27365 27366\n\t\tmu 0 3 29465 29466 29467\n\t\tf 3 27367 27368 -27367\n\t\tmu 0 3 29468 29469 29470\n\t\tf 3 27369 -27368 27370\n\t\tmu 0 3 29471 29472 29473\n\t\tf 3 27371 27372 -27371\n\t\tmu 0 3 29474 29475 29476\n\t\tf 3 27373 -27370 27374\n\t\tmu 0 3 29477 29478 29479\n\t\tf 3 -27369 -27374 27375\n\t\tmu 0 3 29480 29481 29482\n\t\tf 3 27376 27377 -27375\n\t\tmu 0 3 29483 29484 29485\n\t\tf 3 -27378 27378 27379\n\t\tmu 0 3 29486 29487 29488\n\t\tf 3 27380 27381 -27380\n\t\tmu 0 3 29489 29490 29491\n\t\tf 3 -27381 -27295 27382\n\t\tmu 0 3 29492 29493 29494\n\t\tf 3 27383 27384 -27383\n\t\tmu 0 3 29495 29496 29497\n\t\tf 3 -27384 -27292 27385\n\t\tmu 0 3 29498 29499 29500\n\t\tf 3 27386 27387 -27386\n\t\tmu 0 3 29501 29502 29503\n\t\tf 3 -27387 27388 27389\n\t\tmu 0 3 29504 29505 29506\n\t\tf 3 27390 27391 -27390\n\t\tmu 0 3 29507 29508 29509\n\t\tf 3 -27391 -27188 27392\n\t\tmu 0 3 29510 29511 29512\n\t\tf 3 27393 27394 -27393\n\t\tmu 0 3 29513 29514 29515\n\t\tf 3 -27394 -27185 27395\n\t\tmu 0 3 29516 29517 29518\n\t\tf 3 27396 27397 -27396\n\t\tmu 0 3 29519 29520 29521\n\t\tf 3 -27397 -27182 27398\n\t\tmu 0 3 29522 29523 29524\n\t\tf 3 27399 27400 -27399\n\t\tmu 0 3 29525 29526 29527\n\t\tf 3 -27400 27401 27402\n\t\tmu 0 3 29528 29529 29530\n\t\tf 3 27403 27404 -27403\n\t\tmu 0 3 29531 29532 29533\n\t\tf 3 -27404 -27078 27405\n\t\tmu 0 3 29534 29535 29536\n\t\tf 3 27406 27407 -27406\n\t\tmu 0 3 29537 29538 29539\n\t\tf 3 -27407 -27075 27408\n\t\tmu 0 3 29540 29541 29542\n\t\tf 3 27409 27410 -27409\n\t\tmu 0 3 29543 29544 29545\n\t\tf 3 -27410 -27072 27411\n\t\tmu 0 3 29546 29547 29548\n\t\tf 3 27412 27413 -27412\n\t\tmu 0 3 29549 29550 29551\n\t\tf 3 -27413 27414 27415\n\t\tmu 0 3 29552 29553 29554\n\t\tf 3 27416 27417 -27416\n\t\tmu 0 3 29555 29556 29557\n\t\tf 3 -27417 -26968 27418\n\t\tmu 0 3 29558 29559 29560\n\t\tf 3 27419 27420 -27419\n\t\tmu 0 3 29561 29562 29563\n\t\tf 3 -27420 -26965 27421\n\t\tmu 0 3 29564 29565 29566\n\t\tf 3 27422 27423 -27422\n\t\tmu 0 3 29567 29568 29569\n\t\tf 3 -27423 -26962 27424\n\t\tmu 0 3 29570 29571 29572\n\t\tf 3 27425 27426 -27425\n\t\tmu 0 3 29573 29574 29575\n\t\tf 3 -27426 27427 27428\n\t\tmu 0 3 29576 29577 29578\n\t\tf 3 -26663 27429 -27429\n\t\tmu 0 3 29579 29580 29581\n\t\tf 3 27430 -27430 27431\n\t\tmu 0 3 29582 29583 29584\n\t\tf 3 -26678 27432 -27432\n\t\tmu 0 3 29585 29586 29587\n\t\tf 3 -27431 27433 27434\n\t\tmu 0 3 29588 29589 29590\n\t\tf 3 27435 27436 -27435\n\t\tmu 0 3 29591 29592 29593\n\t\tf 3 -27436 27437 27438\n\t\tmu 0 3 29594 29595 29596\n\t\tf 3 27439 27440 -27439\n\t\tmu 0 3 29597 29598 29599\n\t\tf 3 -27440 27441 27442\n\t\tmu 0 3 29600 29601 29602\n\t\tf 3 27443 27444 -27443\n\t\tmu 0 3 29603 29604 29605\n\t\tf 3 27445 -27442 27446\n\t\tmu 0 3 29606 29607 29608\n\t\tf 3 27447 27448 -27447\n\t\tmu 0 3 29609 29610 29611\n\t\tf 3 -27448 -27438 27449\n\t\tmu 0 3 29612 29613 29614\n\t\tf 3 27450 27451 -27450\n\t\tmu 0 3 29615 29616 29617\n\t\tf 3 -27451 -27434 27452\n\t\tmu 0 3 29618 29619 29620\n\t\tf 3 27453 27454 -27453\n\t\tmu 0 3 29621 29622 29623\n\t\tf 3 -27454 -27433 27455\n\t\tmu 0 3 29624 29625 29626\n\t\tf 3 -26679 27456 -27456\n\t\tmu 0 3 29627 29628 29629\n\t\tf 3 27457 -27457 27458\n\t\tmu 0 3 29630 29631 29632\n\t\tf 3 -26704 27459 -27459\n\t\tmu 0 3 29633 29634 29635\n\t\tf 3 -27458 27460 27461\n\t\tmu 0 3 29636 29637 29638\n\t\tf 3 27462 -27455 -27462\n\t\tmu 0 3 29639 29640 29641\n\t\tf 3 -27463 27463 27464\n\t\tmu 0 3 29642 29643 29644\n\t\tf 3 27465 -27452 -27465\n\t\tmu 0 3 29645 29646 29647\n\t\tf 3 -27466 27466 27467\n\t\tmu 0 3 29648 29649 29650\n\t\tf 3 27468 -27449 -27468\n\t\tmu 0 3 29651 29652 29653\n\t\tf 3 27469 -27467 27470\n\t\tmu 0 3 29654 29655 29656\n\t\tf 3 27471 27472 -27471\n\t\tmu 0 3 29657 29658 29659\n\t\tf 3 -27472 -27464 27473\n\t\tmu 0 3 29660 29661 29662\n\t\tf 3 27474 27475 -27474\n\t\tmu 0 3 29663 29664 29665\n\t\tf 3 27476 -27461 27477\n\t\tmu 0 3 29666 29667 29668\n\t\tf 3 27478 27479 -27478\n\t\tmu 0 3 29669 29670 29671\n\t\tf 3 -27479 -27460 27480\n\t\tmu 0 3 29672 29673 29674\n\t\tf 3 -26705 27481 -27481\n\t\tmu 0 3 29675 29676 29677\n\t\tf 3 27482 -27482 27483\n\t\tmu 0 3 29678 29679 29680\n\t\tf 3 -26730 27484 -27484\n\t\tmu 0 3 29681 29682 29683\n\t\tf 3 -27483 27485 27486\n\t\tmu 0 3 29684 29685 29686\n\t\tf 3 27487 -27480 -27487\n\t\tmu 0 3 29687 29688 29689\n\t\tf 3 27488 27489 27490\n\t\tmu 0 3 29690 29691 29692\n\t\tf 3 27491 -27476 -27491\n\t\tmu 0 3 29693 29694 29695\n\t\tf 3 -27492 27492 27493\n\t\tmu 0 3 29696 29697 29698\n\t\tf 3 27494 -27473 -27494\n\t\tmu 0 3 29699 29700 29701\n\t\tf 3 27495 -27493 27496\n\t\tmu 0 3 29702 29703 29704\n\t\tf 3 27497 -26893 -27497\n\t\tmu 0 3 29705 29706 29707\n\t\tf 3 -27498 -27490 27498\n\t\tmu 0 3 29708 29709 29710\n\t\tf 3 27499 -26889 -27499\n\t\tmu 0 3 29711 29712 29713\n\t\tf 3 -27500 -27486 27500\n\t\tmu 0 3 29714 29715 29716\n\t\tf 3 27501 -26885 -27501\n\t\tmu 0 3 29717 29718 29719\n\t\tf 3 -27502 -27485 27502\n\t\tmu 0 3 29720 29721 29722\n\t\tf 3 -26731 -26881 -27503\n\t\tmu 0 3 29723 29724 29725\n\t\tf 3 -27470 27503 27504\n\t\tmu 0 3 29726 29727 29728\n\t\tf 3 -27495 27505 27506\n\t\tmu 0 3 29729 29730 29731\n\t\tf 3 27507 -27504 -27507\n\t\tmu 0 3 29732 29733 29734\n\t\tf 3 -27508 27508 27509\n\t\tmu 0 3 29735 29736 29737\n\t\tf 3 27510 27511 -27510\n\t\tmu 0 3 29738 29739 29740;\n\tsetAttr \".fc[15000:15451]\"\n\t\tf 3 27512 -27512 27513\n\t\tmu 0 3 29741 29742 29743\n\t\tf 3 27514 27515 -27514\n\t\tmu 0 3 29744 29745 29746\n\t\tf 3 27516 -27516 27517\n\t\tmu 0 3 29747 29748 29749\n\t\tf 3 -27517 27518 27519\n\t\tmu 0 3 29750 29751 29752\n\t\tf 3 -27446 -27519 27520\n\t\tmu 0 3 29753 29754 29755\n\t\tf 3 27521 27522 -27521\n\t\tmu 0 3 29756 29757 29758\n\t\tf 3 -27444 -27523 27523\n\t\tmu 0 3 29759 29760 29761\n\t\tf 3 27524 -27418 -27524\n\t\tmu 0 3 29762 29763 29764\n\t\tf 3 -27525 27525 27526\n\t\tmu 0 3 29765 29766 29767\n\t\tf 3 27527 -27414 -27527\n\t\tmu 0 3 29768 29769 29770\n\t\tf 3 -27528 27528 27529\n\t\tmu 0 3 29771 29772 29773\n\t\tf 3 27530 -27411 -27530\n\t\tmu 0 3 29774 29775 29776\n\t\tf 3 -27531 27531 27532\n\t\tmu 0 3 29777 29778 29779\n\t\tf 3 27533 -27408 -27533\n\t\tmu 0 3 29780 29781 29782\n\t\tf 3 27534 -27532 27535\n\t\tmu 0 3 29783 29784 29785\n\t\tf 3 27536 27537 -27536\n\t\tmu 0 3 29786 29787 29788\n\t\tf 3 -27537 -27529 27538\n\t\tmu 0 3 29789 29790 29791\n\t\tf 3 27539 27540 -27539\n\t\tmu 0 3 29792 29793 29794\n\t\tf 3 -27540 -27526 27541\n\t\tmu 0 3 29795 29796 29797\n\t\tf 3 -27522 27542 -27542\n\t\tmu 0 3 29798 29799 29800\n\t\tf 3 27543 -27543 -27518\n\t\tmu 0 3 29801 29802 29803\n\t\tf 3 -27544 27544 27545\n\t\tmu 0 3 29804 29805 29806\n\t\tf 3 27546 -27541 -27546\n\t\tmu 0 3 29807 29808 29809\n\t\tf 3 -27547 27547 27548\n\t\tmu 0 3 29810 29811 29812\n\t\tf 3 27549 -27538 -27549\n\t\tmu 0 3 29813 29814 29815\n\t\tf 3 27550 -27548 27551\n\t\tmu 0 3 29816 29817 29818\n\t\tf 3 27552 27553 -27552\n\t\tmu 0 3 29819 29820 29821\n\t\tf 3 -27553 -27545 27554\n\t\tmu 0 3 29822 29823 29824\n\t\tf 3 -27515 27555 -27555\n\t\tmu 0 3 29825 29826 29827\n\t\tf 3 27556 -27556 27557\n\t\tmu 0 3 29828 29829 29830\n\t\tf 3 -27511 27558 -27558\n\t\tmu 0 3 29831 29832 29833\n\t\tf 3 -27557 27559 27560\n\t\tmu 0 3 29834 29835 29836\n\t\tf 3 27561 -27554 -27561\n\t\tmu 0 3 29837 29838 29839\n\t\tf 3 27562 -27560 27563\n\t\tmu 0 3 29840 29841 29842\n\t\tf 3 27564 -27005 -27564\n\t\tmu 0 3 29843 29844 29845\n\t\tf 3 -27565 -27559 27565\n\t\tmu 0 3 29846 29847 29848\n\t\tf 3 27566 -27001 -27566\n\t\tmu 0 3 29849 29850 29851\n\t\tf 3 -27567 -27509 27567\n\t\tmu 0 3 29852 29853 29854\n\t\tf 3 27568 -26997 -27568\n\t\tmu 0 3 29855 29856 29857\n\t\tf 3 -27569 -27506 27569\n\t\tmu 0 3 29858 29859 29860\n\t\tf 3 -27496 -26993 -27570\n\t\tmu 0 3 29861 29862 29863\n\t\tf 3 -27551 27570 27571\n\t\tmu 0 3 29864 29865 29866\n\t\tf 3 27572 27573 -27572\n\t\tmu 0 3 29867 29868 29869\n\t\tf 3 -27550 -27574 27574\n\t\tmu 0 3 29870 29871 29872\n\t\tf 3 27575 27576 -27575\n\t\tmu 0 3 29873 29874 29875\n\t\tf 3 -27535 -27577 27577\n\t\tmu 0 3 29876 29877 29878\n\t\tf 3 27578 27579 -27578\n\t\tmu 0 3 29879 29880 29881\n\t\tf 3 -27534 -27580 27580\n\t\tmu 0 3 29882 29883 29884\n\t\tf 3 27581 -27405 -27581\n\t\tmu 0 3 29885 29886 29887\n\t\tf 3 -27582 27582 27583\n\t\tmu 0 3 29888 29889 29890\n\t\tf 3 27584 -27401 -27584\n\t\tmu 0 3 29891 29892 29893\n\t\tf 3 -27585 27585 27586\n\t\tmu 0 3 29894 29895 29896\n\t\tf 3 27587 -27398 -27587\n\t\tmu 0 3 29897 29898 29899\n\t\tf 3 -27588 27588 27589\n\t\tmu 0 3 29900 29901 29902\n\t\tf 3 27590 -27395 -27590\n\t\tmu 0 3 29903 29904 29905\n\t\tf 3 27591 -27589 27592\n\t\tmu 0 3 29906 29907 29908\n\t\tf 3 27593 27594 -27593\n\t\tmu 0 3 29909 29910 29911\n\t\tf 3 -27594 -27586 27595\n\t\tmu 0 3 29912 29913 29914\n\t\tf 3 27596 27597 -27596\n\t\tmu 0 3 29915 29916 29917\n\t\tf 3 -27597 -27583 27598\n\t\tmu 0 3 29918 29919 29920\n\t\tf 3 -27579 27599 -27599\n\t\tmu 0 3 29921 29922 29923\n\t\tf 3 27600 -27600 27601\n\t\tmu 0 3 29924 29925 29926\n\t\tf 3 -27576 27602 -27602\n\t\tmu 0 3 29927 29928 29929\n\t\tf 3 -27601 27603 27604\n\t\tmu 0 3 29930 29931 29932\n\t\tf 3 27605 -27598 -27605\n\t\tmu 0 3 29933 29934 29935\n\t\tf 3 -27606 27606 27607\n\t\tmu 0 3 29936 29937 29938\n\t\tf 3 27608 -27595 -27608\n\t\tmu 0 3 29939 29940 29941\n\t\tf 3 27609 -27607 27610\n\t\tmu 0 3 29942 29943 29944\n\t\tf 3 27611 27612 -27611\n\t\tmu 0 3 29945 29946 29947\n\t\tf 3 -27612 -27604 27613\n\t\tmu 0 3 29948 29949 29950\n\t\tf 3 27614 27615 -27614\n\t\tmu 0 3 29951 29952 29953\n\t\tf 3 -27615 -27603 27616\n\t\tmu 0 3 29954 29955 29956\n\t\tf 3 -27573 27617 -27617\n\t\tmu 0 3 29957 29958 29959\n\t\tf 3 27618 -27618 27619\n\t\tmu 0 3 29960 29961 29962\n\t\tf 3 27620 27621 -27620\n\t\tmu 0 3 29963 29964 29965\n\t\tf 3 -27621 -27571 27622\n\t\tmu 0 3 29966 29967 29968\n\t\tf 3 -27562 27623 -27623\n\t\tmu 0 3 29969 29970 29971\n\t\tf 3 -27619 27624 27625\n\t\tmu 0 3 29972 29973 29974\n\t\tf 3 27626 -27616 -27626\n\t\tmu 0 3 29975 29976 29977\n\t\tf 3 -27627 27627 27628\n\t\tmu 0 3 29978 29979 29980\n\t\tf 3 27629 -27613 -27629\n\t\tmu 0 3 29981 29982 29983\n\t\tf 3 27630 -27628 27631\n\t\tmu 0 3 29984 29985 29986\n\t\tf 3 27632 -27115 -27632\n\t\tmu 0 3 29987 29988 29989\n\t\tf 3 -27633 -27625 27633\n\t\tmu 0 3 29990 29991 29992\n\t\tf 3 27634 -27111 -27634\n\t\tmu 0 3 29993 29994 29995\n\t\tf 3 -27635 -27622 27635\n\t\tmu 0 3 29996 29997 29998\n\t\tf 3 27636 -27107 -27636\n\t\tmu 0 3 29999 30000 30001\n\t\tf 3 -27637 -27624 27637\n\t\tmu 0 3 30002 30003 30004\n\t\tf 3 -27563 -27103 -27638\n\t\tmu 0 3 30005 30006 30007\n\t\tf 3 -27610 27638 27639\n\t\tmu 0 3 30008 30009 30010\n\t\tf 3 -27630 27640 27641\n\t\tmu 0 3 30011 30012 30013\n\t\tf 3 27642 -27639 -27642\n\t\tmu 0 3 30014 30015 30016\n\t\tf 3 -27643 27643 27644\n\t\tmu 0 3 30017 30018 30019\n\t\tf 3 27645 27646 -27645\n\t\tmu 0 3 30020 30021 30022\n\t\tf 3 27647 -27647 27648\n\t\tmu 0 3 30023 30024 30025\n\t\tf 3 27649 27650 -27649\n\t\tmu 0 3 30026 30027 30028\n\t\tf 3 27651 -27651 27652\n\t\tmu 0 3 30029 30030 30031\n\t\tf 3 -27652 27653 27654\n\t\tmu 0 3 30032 30033 30034\n\t\tf 3 -27592 -27654 27655\n\t\tmu 0 3 30035 30036 30037\n\t\tf 3 27656 27657 -27656\n\t\tmu 0 3 30038 30039 30040\n\t\tf 3 -27591 -27658 27658\n\t\tmu 0 3 30041 30042 30043\n\t\tf 3 27659 -27392 -27659\n\t\tmu 0 3 30044 30045 30046\n\t\tf 3 -27660 27660 27661\n\t\tmu 0 3 30047 30048 30049\n\t\tf 3 27662 -27388 -27662\n\t\tmu 0 3 30050 30051 30052\n\t\tf 3 -27663 27663 27664\n\t\tmu 0 3 30053 30054 30055\n\t\tf 3 27665 -27385 -27665\n\t\tmu 0 3 30056 30057 30058\n\t\tf 3 -27666 27666 27667\n\t\tmu 0 3 30059 30060 30061\n\t\tf 3 27668 -27382 -27668\n\t\tmu 0 3 30062 30063 30064\n\t\tf 3 27669 -27667 27670\n\t\tmu 0 3 30065 30066 30067\n\t\tf 3 27671 27672 -27671\n\t\tmu 0 3 30068 30069 30070\n\t\tf 3 -27672 -27664 27673\n\t\tmu 0 3 30071 30072 30073\n\t\tf 3 27674 27675 -27674\n\t\tmu 0 3 30074 30075 30076\n\t\tf 3 -27675 -27661 27676\n\t\tmu 0 3 30077 30078 30079\n\t\tf 3 -27657 27677 -27677\n\t\tmu 0 3 30080 30081 30082\n\t\tf 3 27678 -27678 -27653\n\t\tmu 0 3 30083 30084 30085\n\t\tf 3 -27679 27679 27680\n\t\tmu 0 3 30086 30087 30088\n\t\tf 3 27681 -27676 -27681\n\t\tmu 0 3 30089 30090 30091\n\t\tf 3 -27682 27682 27683\n\t\tmu 0 3 30092 30093 30094\n\t\tf 3 27684 -27673 -27684\n\t\tmu 0 3 30095 30096 30097\n\t\tf 3 27685 -27683 27686\n\t\tmu 0 3 30098 30099 30100\n\t\tf 3 27687 27688 -27687\n\t\tmu 0 3 30101 30102 30103\n\t\tf 3 -27688 -27680 27689\n\t\tmu 0 3 30104 30105 30106\n\t\tf 3 -27650 27690 -27690\n\t\tmu 0 3 30107 30108 30109\n\t\tf 3 27691 -27691 27692\n\t\tmu 0 3 30110 30111 30112\n\t\tf 3 -27646 27693 -27693\n\t\tmu 0 3 30113 30114 30115\n\t\tf 3 -27692 27694 27695\n\t\tmu 0 3 30116 30117 30118\n\t\tf 3 27696 -27689 -27696\n\t\tmu 0 3 30119 30120 30121\n\t\tf 3 27697 -27695 27698\n\t\tmu 0 3 30122 30123 30124\n\t\tf 3 27699 -27225 -27699\n\t\tmu 0 3 30125 30126 30127\n\t\tf 3 -27700 -27694 27700\n\t\tmu 0 3 30128 30129 30130\n\t\tf 3 27701 -27221 -27701\n\t\tmu 0 3 30131 30132 30133\n\t\tf 3 -27702 -27644 27702\n\t\tmu 0 3 30134 30135 30136\n\t\tf 3 27703 -27217 -27703\n\t\tmu 0 3 30137 30138 30139\n\t\tf 3 -27704 -27641 27704\n\t\tmu 0 3 30140 30141 30142\n\t\tf 3 -27631 -27213 -27705\n\t\tmu 0 3 30143 30144 30145\n\t\tf 3 27705 -27686 27706\n\t\tmu 0 3 30146 30147 30148\n\t\tf 3 -27685 -27706 27707\n\t\tmu 0 3 30149 30150 30151\n\t\tf 3 -27361 27708 -27708\n\t\tmu 0 3 30152 30153 30154\n\t\tf 3 -27709 -27362 27709\n\t\tmu 0 3 30155 30156 30157\n\t\tf 3 27710 -27670 -27710\n\t\tmu 0 3 30158 30159 30160\n\t\tf 3 -27669 -27711 -27376\n\t\tmu 0 3 30161 30162 30163\n\t\tf 3 -27698 -27333 27711\n\t\tmu 0 3 30164 30165 30166\n\t\tf 3 -27346 27712 -27712\n\t\tmu 0 3 30167 30168 30169\n\t\tf 3 -27697 -27713 27713\n\t\tmu 0 3 30170 30171 30172\n\t\tf 3 27714 -27354 -27707\n\t\tmu 0 3 30173 30174 30175\n\t\tf 3 -27353 -27715 -27714\n\t\tmu 0 3 30176 30177 30178\n\t\tf 3 -26855 -27428 27715\n\t\tmu 0 3 30179 30180 30181\n\t\tf 3 -26961 -26857 -27716\n\t\tmu 0 3 30182 30183 30184\n\t\tf 3 -26966 -27415 27716\n\t\tmu 0 3 30185 30186 30187\n\t\tf 3 -27071 -26969 -27717\n\t\tmu 0 3 30188 30189 30190\n\t\tf 3 -27469 27717 -27520\n\t\tmu 0 3 30191 30192 30193\n\t\tf 3 -27513 -27718 -27505\n\t\tmu 0 3 30194 30195 30196\n\t\tf 3 -27076 -27402 27718\n\t\tmu 0 3 30197 30198 30199\n\t\tf 3 -27181 -27079 -27719\n\t\tmu 0 3 30200 30201 30202\n\t\tf 3 -27186 -27389 27719\n\t\tmu 0 3 30203 30204 30205\n\t\tf 3 -27291 -27189 -27720\n\t\tmu 0 3 30206 30207 30208\n\t\tf 3 -27293 -27379 27720\n\t\tmu 0 3 30209 30210 30211\n\t\tf 3 27721 -27283 -27721\n\t\tmu 0 3 30212 30213 30214\n\t\tf 3 -27609 27722 -27655\n\t\tmu 0 3 30215 30216 30217\n\t\tf 3 -27648 -27723 -27640\n\t\tmu 0 3 30218 30219 30220\n\t\tf 3 -27722 -27377 27723\n\t\tmu 0 3 30221 30222 30223\n\t\tf 3 27724 -27299 -27724\n\t\tmu 0 3 30224 30225 30226\n\t\tf 3 -27301 -27725 27725\n\t\tmu 0 3 30227 30228 30229\n\t\tf 3 -27373 27726 -27726\n\t\tmu 0 3 30230 30231 30232\n\t\tf 3 27727 27728 -26510\n\t\tmu 0 3 30233 30234 30235\n\t\tf 3 27729 -27729 27730\n\t\tmu 0 3 30236 30237 30238\n\t\tf 3 -27730 27731 -26506\n\t\tmu 0 3 30239 30240 30241\n\t\tf 3 27732 27733 -27731\n\t\tmu 0 3 30242 30243 30244\n\t\tf 3 27734 -27734 27735\n\t\tmu 0 3 30245 30246 30247\n\t\tf 3 27736 27737 -27736\n\t\tmu 0 3 30248 30249 30250\n\t\tf 3 -27735 27738 27739\n\t\tmu 0 3 30251 30252 30253\n\t\tf 3 -26487 -27732 -27740\n\t\tmu 0 3 30254 30255 30256\n\t\tf 3 -26503 -27739 27740\n\t\tmu 0 3 30257 30258 30259\n\t\tf 3 27741 27742 -27741\n\t\tmu 0 3 30260 30261 30262\n\t\tf 3 -27742 -27738 27743\n\t\tmu 0 3 30263 30264 30265\n\t\tf 3 27744 27745 -27744\n\t\tmu 0 3 30266 30267 30268\n\t\tf 3 27746 27747 27748\n\t\tmu 0 3 30269 30270 30271\n\t\tf 3 27749 -27746 -27749\n\t\tmu 0 3 30272 30273 30274\n\t\tf 3 27750 -27748 27751\n\t\tmu 0 3 30275 30276 30277\n\t\tf 3 -27751 27752 27753\n\t\tmu 0 3 30278 30279 30280\n\t\tf 3 -26563 27754 -27754\n\t\tmu 0 3 30281 30282 30283\n\t\tf 3 -27750 -27755 27755\n\t\tmu 0 3 30284 30285 30286\n\t\tf 3 -26567 -27743 -27756\n\t\tmu 0 3 30287 30288 30289\n\t\tf 3 27756 27757 -27752\n\t\tmu 0 3 30290 30291 30292\n\t\tf 3 27758 -27758 27759\n\t\tmu 0 3 30293 30294 30295\n\t\tf 3 27760 27761 -27760\n\t\tmu 0 3 30296 30297 30298\n\t\tf 3 -27759 27762 27763\n\t\tmu 0 3 30299 30300 30301\n\t\tf 3 -26559 -27753 -27764\n\t\tmu 0 3 30302 30303 30304\n\t\tf 3 -26555 -27763 27764\n\t\tmu 0 3 30305 30306 30307\n\t\tf 3 27765 27766 -27765\n\t\tmu 0 3 30308 30309 30310\n\t\tf 3 -27766 -27762 27767\n\t\tmu 0 3 30311 30312 30313\n\t\tf 3 27768 27769 -27768\n\t\tmu 0 3 30314 30315 30316\n\t\tf 3 27770 -27770 27771\n\t\tmu 0 3 30317 30318 30319\n\t\tf 3 27772 27773 -27772\n\t\tmu 0 3 30320 30321 30322\n\t\tf 3 -27771 27774 27775\n\t\tmu 0 3 30323 30324 30325\n\t\tf 3 -26551 -27767 -27776\n\t\tmu 0 3 30326 30327 30328\n\t\tf 3 -26547 -27775 27776\n\t\tmu 0 3 30329 30330 30331\n\t\tf 3 27777 27778 -27777\n\t\tmu 0 3 30332 30333 30334\n\t\tf 3 -27778 -27774 27779\n\t\tmu 0 3 30335 30336 30337\n\t\tf 3 27780 27781 -27780\n\t\tmu 0 3 30338 30339 30340\n\t\tf 3 27782 -27782 27783\n\t\tmu 0 3 30341 30342 30343\n\t\tf 3 27784 27785 -27784\n\t\tmu 0 3 30344 30345 30346\n\t\tf 3 -27783 -26539 27786\n\t\tmu 0 3 30347 30348 30349\n\t\tf 3 -26543 -27779 -27787\n\t\tmu 0 3 30350 30351 30352\n\t\tf 3 -26536 -27786 27787\n\t\tmu 0 3 30353 30354 30355\n\t\tf 3 27788 -26525 -27788\n\t\tmu 0 3 30356 30357 30358\n\t\tf 3 -26433 27789 27790\n\t\tmu 0 3 30359 30360 30361\n\t\tf 3 27791 27792 -27791\n\t\tmu 0 3 30362 30363 30364\n\t\tf 3 -27792 27793 27794\n\t\tmu 0 3 30365 30366 30367\n\t\tf 3 27795 27796 -27795\n\t\tmu 0 3 30368 30369 30370\n\t\tf 3 -27796 27797 27798\n\t\tmu 0 3 30371 30372 30373\n\t\tf 3 27799 27800 -27799\n\t\tmu 0 3 30374 30375 30376\n\t\tf 3 -27800 27801 27802\n\t\tmu 0 3 30377 30378 30379\n\t\tf 3 -26755 27803 -27803\n\t\tmu 0 3 30380 30381 30382\n\t\tf 3 -26768 -27802 27804\n\t\tmu 0 3 30383 30384 30385\n\t\tf 3 27805 27806 -27805\n\t\tmu 0 3 30386 30387 30388\n\t\tf 3 -27806 -27798 27807\n\t\tmu 0 3 30389 30390 30391\n\t\tf 3 27808 27809 -27808\n\t\tmu 0 3 30392 30393 30394\n\t\tf 3 -27809 -27794 27810\n\t\tmu 0 3 30395 30396 30397\n\t\tf 3 27811 27812 -27811\n\t\tmu 0 3 30398 30399 30400\n\t\tf 3 -27812 -27790 27813\n\t\tmu 0 3 30401 30402 30403\n\t\tf 3 -26435 27814 -27814\n\t\tmu 0 3 30404 30405 30406\n\t\tf 3 27815 -27815 27816\n\t\tmu 0 3 30407 30408 30409\n\t\tf 3 -26454 27817 -27817\n\t\tmu 0 3 30410 30411 30412\n\t\tf 3 -27816 27818 27819\n\t\tmu 0 3 30413 30414 30415\n\t\tf 3 27820 -27813 -27820\n\t\tmu 0 3 30416 30417 30418\n\t\tf 3 -27821 27821 27822\n\t\tmu 0 3 30419 30420 30421\n\t\tf 3 27823 -27810 -27823\n\t\tmu 0 3 30422 30423 30424\n\t\tf 3 -27824 27824 27825\n\t\tmu 0 3 30425 30426 30427\n\t\tf 3 -26772 -27807 -27826\n\t\tmu 0 3 30428 30429 30430\n\t\tf 3 -26794 -27825 27826\n\t\tmu 0 3 30431 30432 30433\n\t\tf 3 27827 27828 -27827\n\t\tmu 0 3 30434 30435 30436\n\t\tf 3 -27828 -27822 27829\n\t\tmu 0 3 30437 30438 30439\n\t\tf 3 27830 27831 -27830\n\t\tmu 0 3 30440 30441 30442\n\t\tf 3 -27831 -27819 27832\n\t\tmu 0 3 30443 30444 30445\n\t\tf 3 27833 27834 -27833\n\t\tmu 0 3 30446 30447 30448\n\t\tf 3 -27834 -27818 27835\n\t\tmu 0 3 30449 30450 30451\n\t\tf 3 -26455 27836 -27836\n\t\tmu 0 3 30452 30453 30454\n\t\tf 3 27837 -27837 27838\n\t\tmu 0 3 30455 30456 30457\n\t\tf 3 -26474 27839 -27839\n\t\tmu 0 3 30458 30459 30460\n\t\tf 3 -27838 27840 27841\n\t\tmu 0 3 30461 30462 30463\n\t\tf 3 27842 -27835 -27842\n\t\tmu 0 3 30464 30465 30466\n\t\tf 3 -27843 27843 27844\n\t\tmu 0 3 30467 30468 30469\n\t\tf 3 27845 -27832 -27845\n\t\tmu 0 3 30470 30471 30472\n\t\tf 3 -27846 27846 27847\n\t\tmu 0 3 30473 30474 30475\n\t\tf 3 -26798 -27829 -27848\n\t\tmu 0 3 30476 30477 30478\n\t\tf 3 -26820 -27847 27848\n\t\tmu 0 3 30479 30480 30481\n\t\tf 3 27849 27850 -27849\n\t\tmu 0 3 30482 30483 30484\n\t\tf 3 -27850 -27844 27851\n\t\tmu 0 3 30485 30486 30487\n\t\tf 3 27852 27853 -27852\n\t\tmu 0 3 30488 30489 30490\n\t\tf 3 -27853 -27841 27854\n\t\tmu 0 3 30491 30492 30493\n\t\tf 3 27855 27856 -27855\n\t\tmu 0 3 30494 30495 30496\n\t\tf 3 -27856 -27840 27857\n\t\tmu 0 3 30497 30498 30499\n\t\tf 3 -26475 27858 -27858\n\t\tmu 0 3 30500 30501 30502\n\t\tf 3 27859 -27859 27860\n\t\tmu 0 3 30503 30504 30505\n\t\tf 3 -26494 27861 -27861\n\t\tmu 0 3 30506 30507 30508\n\t\tf 3 -27860 27862 27863\n\t\tmu 0 3 30509 30510 30511\n\t\tf 3 27864 -27857 -27864\n\t\tmu 0 3 30512 30513 30514\n\t\tf 3 -27865 27865 27866\n\t\tmu 0 3 30515 30516 30517\n\t\tf 3 27867 -27854 -27867\n\t\tmu 0 3 30518 30519 30520\n\t\tf 3 -27868 27868 27869\n\t\tmu 0 3 30521 30522 30523\n\t\tf 3 -26824 -27851 -27870\n\t\tmu 0 3 30524 30525 30526\n\t\tf 3 -26846 -27869 27870\n\t\tmu 0 3 30527 30528 30529\n\t\tf 3 27871 27872 -27871\n\t\tmu 0 3 30530 30531 30532\n\t\tf 3 -27872 -27866 27873\n\t\tmu 0 3 30533 30534 30535\n\t\tf 3 27874 27875 -27874\n\t\tmu 0 3 30536 30537 30538\n\t\tf 3 -27875 -27863 27876\n\t\tmu 0 3 30539 30540 30541\n\t\tf 3 27877 27878 -27877\n\t\tmu 0 3 30542 30543 30544\n\t\tf 3 -27878 -27862 27879\n\t\tmu 0 3 30545 30546 30547\n\t\tf 3 -26495 27880 -27880\n\t\tmu 0 3 30548 30549 30550\n\t\tf 3 27881 -27881 27882\n\t\tmu 0 3 30551 30552 30553\n\t\tf 3 -26581 -26636 -27883\n\t\tmu 0 3 30554 30555 30556\n\t\tf 3 27883 -27879 27884\n\t\tmu 0 3 30557 30558 30559\n\t\tf 3 -27882 -26640 -27885\n\t\tmu 0 3 30560 30561 30562\n\t\tf 3 27885 -27876 27886\n\t\tmu 0 3 30563 30564 30565\n\t\tf 3 -27884 -26644 -27887\n\t\tmu 0 3 30566 30567 30568\n\t\tf 3 -26850 -27873 27887\n\t\tmu 0 3 30569 30570 30571\n\t\tf 3 -27886 -26648 -27888\n\t\tmu 0 3 30572 30573 30574\n\t\tf 3 -26632 27888 27889\n\t\tmu 0 3 30575 30576 30577\n\t\tf 3 27890 -26637 -27890\n\t\tmu 0 3 30578 30579 30580\n\t\tf 3 -27891 27891 27892\n\t\tmu 0 3 30581 30582 30583\n\t\tf 3 27893 -26641 -27893\n\t\tmu 0 3 30584 30585 30586\n\t\tf 3 -27894 27894 -26669\n\t\tmu 0 3 30587 30588 30589\n\t\tf 3 -26690 -27895 27895\n\t\tmu 0 3 30590 30591 30592\n\t\tf 3 27896 27897 -27896\n\t\tmu 0 3 30593 30594 30595\n\t\tf 3 -27897 -27892 27898\n\t\tmu 0 3 30596 30597 30598\n\t\tf 3 27899 27900 -27899\n\t\tmu 0 3 30599 30600 30601\n\t\tf 3 -27900 -27889 27901\n\t\tmu 0 3 30602 30603 30604\n\t\tf 3 -26629 27902 -27902\n\t\tmu 0 3 30605 30606 30607\n\t\tf 3 27903 -27903 -26626\n\t\tmu 0 3 30608 30609 30610\n\t\tf 3 -27904 27904 27905\n\t\tmu 0 3 30611 30612 30613\n\t\tf 3 27906 -27901 -27906\n\t\tmu 0 3 30614 30615 30616\n\t\tf 3 -27907 27907 27908\n\t\tmu 0 3 30617 30618 30619\n\t\tf 3 -26694 -27898 -27909\n\t\tmu 0 3 30620 30621 30622\n\t\tf 3 -26716 -27908 27909\n\t\tmu 0 3 30623 30624 30625\n\t\tf 3 27910 27911 -27910\n\t\tmu 0 3 30626 30627 30628\n\t\tf 3 -27911 -27905 27912\n\t\tmu 0 3 30629 30630 30631\n\t\tf 3 -26623 27913 -27913\n\t\tmu 0 3 30632 30633 30634\n\t\tf 3 27914 -27914 27915\n\t\tmu 0 3 30635 30636 30637\n\t\tf 3 27916 27917 -27916\n\t\tmu 0 3 30638 30639 30640\n\t\tf 3 -27917 -26621 27918\n\t\tmu 0 3 30641 30642 30643\n\t\tf 3 27919 27920 -27919\n\t\tmu 0 3 30644 30645 30646\n\t\tf 3 -27920 -26620 27921\n\t\tmu 0 3 30647 30648 30649\n\t\tf 3 -26611 27922 -27922\n\t\tmu 0 3 30650 30651 30652\n\t\tf 3 -27915 27923 27924\n\t\tmu 0 3 30653 30654 30655\n\t\tf 3 -26720 -27912 -27925\n\t\tmu 0 3 30656 30657 30658\n\t\tf 3 -26754 -27924 27925\n\t\tmu 0 3 30659 30660 30661\n\t\tf 3 27926 -27804 -27926\n\t\tmu 0 3 30662 30663 30664\n\t\tf 3 -27927 -27918 27927\n\t\tmu 0 3 30665 30666 30667\n\t\tf 3 27928 -27801 -27928\n\t\tmu 0 3 30668 30669 30670\n\t\tf 3 -27929 -27921 27929\n\t\tmu 0 3 30671 30672 30673\n\t\tf 3 27930 -27797 -27930\n\t\tmu 0 3 30674 30675 30676\n\t\tf 3 -27931 -27923 27931\n\t\tmu 0 3 30677 30678 30679\n\t\tf 3 -26612 -27793 -27932\n\t\tmu 0 3 30680 30681 30682\n\t\tf 3 27932 27933 27934\n\t\tmu 0 3 30683 30684 30685\n\t\tf 3 27935 27936 -27935\n\t\tmu 0 3 30685 30686 30683\n\t\tf 3 27937 -27937 27938\n\t\tmu 0 3 30687 30683 30686\n\t\tf 3 27939 27940 -27939\n\t\tmu 0 3 30686 30688 30687\n\t\tf 3 27941 -27941 27942\n\t\tmu 0 3 30689 30687 30688\n\t\tf 3 27943 27944 -27943\n\t\tmu 0 3 30688 30690 30689\n\t\tf 3 27945 -27945 27946\n\t\tmu 0 3 30691 30689 30690\n\t\tf 3 27947 27948 -27947\n\t\tmu 0 3 30690 30692 30691\n\t\tf 3 27949 -27949 27950\n\t\tmu 0 3 30693 30691 30692\n\t\tf 3 27951 27952 -27951\n\t\tmu 0 3 30692 30694 30693\n\t\tf 3 27953 -27953 27954\n\t\tmu 0 3 30695 30693 30694\n\t\tf 3 27955 27956 -27955\n\t\tmu 0 3 30694 30696 30695\n\t\tf 3 27957 27958 27959\n\t\tmu 0 3 30697 30698 30699\n\t\tf 3 27960 27961 -27960\n\t\tmu 0 3 30699 30700 30701\n\t\tf 3 27962 27963 27964\n\t\tmu 0 3 30702 30703 30704\n\t\tf 3 27965 27966 27967\n\t\tmu 0 3 30705 30706 30707\n\t\tf 3 27968 27969 27970\n\t\tmu 0 3 30708 30709 30710\n\t\tf 3 27971 27972 -27971\n\t\tmu 0 3 30710 30711 30712\n\t\tf 3 27973 27974 27975\n\t\tmu 0 3 30713 30714 30715\n\t\tf 3 27976 27977 -27976\n\t\tmu 0 3 30716 30717 30713\n\t\tf 3 27978 27979 27980\n\t\tmu 0 3 30718 30719 30720\n\t\tf 3 -27948 27981 27982\n\t\tmu 0 3 30692 30690 30721\n\t\tf 3 27983 27984 -27981\n\t\tmu 0 3 30722 30723 30718\n\t\tf 3 27985 27986 27987\n\t\tmu 0 3 30724 30725 30726\n\t\tf 3 -27986 27988 27989\n\t\tmu 0 3 30727 30724 30728\n\t\tf 3 27990 27991 -27988\n\t\tmu 0 3 30729 30730 30724\n\t\tf 3 27992 27993 27994\n\t\tmu 0 3 30731 30732 30733\n\t\tf 3 27995 27996 -27995\n\t\tmu 0 3 30734 30735 30731\n\t\tf 3 27997 27998 27999\n\t\tmu 0 3 30736 30737 30738\n\t\tf 3 28000 28001 -28000\n\t\tmu 0 3 30739 30740 30736\n\t\tf 3 -28002 28002 28003\n\t\tmu 0 3 30736 30740 30741\n\t\tf 3 28004 28005 -28004\n\t\tmu 0 3 30741 30742 30736\n\t\tf 3 28006 -28006 28007\n\t\tmu 0 3 30743 30736 30742\n\t\tf 3 28008 -27959 -28008\n\t\tmu 0 3 30742 30699 30744\n\t\tf 3 28009 -27956 28010\n\t\tmu 0 3 30745 30696 30694\n\t\tf 3 28011 -27998 28012\n\t\tmu 0 3 30746 30747 30736\n\t\tf 3 28013 28014 28015\n\t\tmu 0 3 30748 30749 30750\n\t\tf 3 28016 -27993 28017\n\t\tmu 0 3 30751 30752 30731\n\t\tf 3 28018 28019 28020\n\t\tmu 0 3 30753 30754 30755\n\t\tf 3 -28019 28021 28022\n\t\tmu 0 3 30756 30757 30758\n\t\tf 3 28023 -27974 28024\n\t\tmu 0 3 30759 30760 30713\n\t\tf 3 -28003 28025 28026\n\t\tmu 0 3 30741 30740 30761\n\t\tf 3 -28026 -28001 28027\n\t\tmu 0 3 30761 30740 30762\n\t\tf 3 28028 28029 -28027\n\t\tmu 0 3 30761 30763 30741\n\t\tf 3 28030 28031 -28028\n\t\tmu 0 3 30764 30765 30761\n\t\tf 3 28032 -27996 28033\n\t\tmu 0 3 30766 30735 30767\n\t\tf 3 28034 28035 -28034\n\t\tmu 0 3 30768 30769 30770\n\t\tf 3 28036 -27991 28037\n\t\tmu 0 3 30771 30730 30772\n\t\tf 3 28038 28039 -28038\n\t\tmu 0 3 30773 30774 30775\n\t\tf 3 28040 -27984 28041\n\t\tmu 0 3 30776 30723 30777\n\t\tf 3 28042 28043 -28042\n\t\tmu 0 3 30778 30779 30780\n\t\tf 3 28044 -27977 28045\n\t\tmu 0 3 30781 30717 30782\n\t\tf 3 28046 28047 -28046\n\t\tmu 0 3 30783 30784 30785\n\t\tf 3 28048 -27972 28049\n\t\tmu 0 3 30786 30711 30710\n\t\tf 3 28050 28051 -28050\n\t\tmu 0 3 30710 30787 30788\n\t\tf 3 28052 28053 28054\n\t\tmu 0 3 30789 30790 30791\n\t\tf 3 28055 28056 28057\n\t\tmu 0 3 30792 30793 30794\n\t\tf 3 -28048 28058 28059\n\t\tmu 0 3 30795 30784 30796\n\t\tf 3 28060 28061 28062\n\t\tmu 0 3 30797 30798 30799\n\t\tf 3 28063 28064 -28063\n\t\tmu 0 3 30800 30801 30797\n\t\tf 3 -28061 28065 28066\n\t\tmu 0 3 30802 30797 30803\n\t\tf 3 28067 28068 -28067\n\t\tmu 0 3 30803 30804 30805\n\t\tf 3 28069 28070 28071\n\t\tmu 0 3 30806 30807 30808\n\t\tf 3 28072 -28071 28073\n\t\tmu 0 3 30809 30810 30811\n\t\tf 3 -28068 28074 28075\n\t\tmu 0 3 30804 30803 30812\n\t\tf 3 28076 28077 -28076\n\t\tmu 0 3 30812 30813 30804\n\t\tf 3 -28078 28078 28079\n\t\tmu 0 3 30804 30813 30814\n\t\tf 3 -28077 28080 28081\n\t\tmu 0 3 30813 30812 30815\n\t\tf 3 28082 28083 -28082\n\t\tmu 0 3 30815 30816 30813\n\t\tf 3 -28083 28084 28085\n\t\tmu 0 3 30816 30815 30817\n\t\tf 3 28086 28087 -28086\n\t\tmu 0 3 30817 30818 30816\n\t\tf 3 -28087 28088 28089\n\t\tmu 0 3 30818 30817 30819\n\t\tf 3 28090 28091 -28090\n\t\tmu 0 3 30819 30820 30818\n\t\tf 3 28092 28093 28094\n\t\tmu 0 3 30821 30822 30823\n\t\tf 3 28095 28096 -28095\n\t\tmu 0 3 30824 30825 30821\n\t\tf 3 -28079 -28084 28097\n\t\tmu 0 3 30826 30813 30816\n\t\tf 3 28098 -28040 28099\n\t\tmu 0 3 30827 30828 30774\n\t\tf 3 -28093 28100 28101\n\t\tmu 0 3 30829 30821 30763\n\t\tf 3 -28029 28102 -28102\n\t\tmu 0 3 30763 30761 30830\n\t\tf 3 -28092 28103 28104\n\t\tmu 0 3 30818 30820 30831\n\t\tf 3 -28032 28105 28106\n\t\tmu 0 3 30761 30765 30832\n\t\tf 3 -28036 28107 28108\n\t\tmu 0 3 30833 30769 30834\n\t\tf 3 28109 28110 28111\n\t\tmu 0 3 30835 30836 30837\n\t\tf 3 28112 28113 28114\n\t\tmu 0 3 30838 30839 30840\n\t\tf 3 28115 -28115 28116\n\t\tmu 0 3 30841 30842 30840\n\t\tf 3 28117 28118 -28117\n\t\tmu 0 3 30840 30843 30844\n\t\tf 3 28119 -28119 28120\n\t\tmu 0 3 30845 30846 30843\n\t\tf 3 28121 28122 -28121\n\t\tmu 0 3 30843 30847 30848\n\t\tf 3 28123 -28123 28124\n\t\tmu 0 3 30849 30850 30847\n\t\tf 3 28125 28126 -28125\n\t\tmu 0 3 30847 30851 30852\n\t\tf 3 28127 -28127 28128\n\t\tmu 0 3 30853 30854 30851\n\t\tf 3 28129 28130 28131\n\t\tmu 0 3 30855 30856 30857\n\t\tf 3 -28131 28132 28133\n\t\tmu 0 3 30858 30856 30859\n\t\tf 3 28134 -28126 28135\n\t\tmu 0 3 30860 30851 30847\n\t\tf 3 28136 28137 -28136\n\t\tmu 0 3 30847 30861 30860\n\t\tf 3 -28122 28138 28139\n\t\tmu 0 3 30847 30843 30862\n\t\tf 3 28140 -28137 -28140\n\t\tmu 0 3 30862 30861 30847\n\t\tf 3 28141 -28138 28142\n\t\tmu 0 3 30863 30860 30861\n\t\tf 3 28143 28144 -28143\n\t\tmu 0 3 30861 30864 30863\n\t\tf 3 28145 -28144 28146\n\t\tmu 0 3 30865 30864 30861\n\t\tf 3 -28141 28147 -28147\n\t\tmu 0 3 30861 30862 30865\n\t\tf 3 -27982 -27944 28148\n\t\tmu 0 3 30866 30690 30688\n\t\tf 3 28149 28150 28151\n\t\tmu 0 3 30867 30868 30869\n\t\tf 3 28152 28153 -28152\n\t\tmu 0 3 30870 30871 30867\n\t\tf 3 -27966 28154 28155\n\t\tmu 0 3 30706 30872 30873\n\t\tf 3 28156 28157 -28156\n\t\tmu 0 3 30874 30875 30706\n\t\tf 3 -27970 28158 28159\n\t\tmu 0 3 30710 30876 30877\n\t\tf 3 28160 28161 -28160\n\t\tmu 0 3 30878 30879 30710\n\t\tf 3 -28162 28162 28163\n\t\tmu 0 3 30710 30879 30880\n\t\tf 3 28164 -28051 -28164\n\t\tmu 0 3 30880 30787 30710\n\t\tf 3 28165 28166 28167\n\t\tmu 0 3 30881 30882 30883\n\t\tf 3 28168 -28054 -28168\n\t\tmu 0 3 30883 30791 30884\n\t\tf 3 28169 28170 28171\n\t\tmu 0 3 30885 30886 30887\n\t\tf 3 28172 28173 -28172\n\t\tmu 0 3 30887 30888 30889\n\t\tf 3 -28150 28174 28175\n\t\tmu 0 3 30868 30867 30890\n\t\tf 3 28176 28177 -28176\n\t\tmu 0 3 30890 30891 30868\n\t\tf 3 28178 28179 28180\n\t\tmu 0 3 30892 30893 30894\n\t\tf 3 -28178 28181 28182\n\t\tmu 0 3 30868 30891 30895\n\t\tf 3 -28180 28183 28184\n\t\tmu 0 3 30894 30896 30897\n\t\tf 3 28185 28186 -28181\n\t\tmu 0 3 30894 30898 30899\n\t\tf 3 28187 -28171 28188\n\t\tmu 0 3 30900 30887 30901\n\t\tf 3 28189 28190 -28189\n\t\tmu 0 3 30902 30903 30900\n\t\tf 3 -28187 28191 28192\n\t\tmu 0 3 30904 30898 30905\n\t\tf 3 28193 28194 -28193\n\t\tmu 0 3 30905 30906 30907\n\t\tf 3 28195 -28194 28196\n\t\tmu 0 3 30908 30909 30905\n\t\tf 3 28197 -28190 28198\n\t\tmu 0 3 30910 30903 30911\n\t\tf 3 28199 28200 28201\n\t\tmu 0 3 30912 30913 30914\n\t\tf 3 28202 28203 28204\n\t\tmu 0 3 30905 30915 30916\n\t\tf 3 -28203 -28192 28205\n\t\tmu 0 3 30915 30905 30898\n\t\tf 3 28206 28207 28208\n\t\tmu 0 3 30917 30918 30919\n\t\tf 3 28209 28210 -28209\n\t\tmu 0 3 30919 30920 30921\n\t\tf 3 -28186 28211 28212\n\t\tmu 0 3 30898 30894 30922\n\t\tf 3 -28212 28213 28214\n\t\tmu 0 3 30922 30894 30923\n\t\tf 3 -28211 28215 28216\n\t\tmu 0 3 30924 30920 30925\n\t\tf 3 28217 28218 -28213\n\t\tmu 0 3 30922 30926 30898\n\t\tf 3 -28219 28219 -28206\n\t\tmu 0 3 30898 30926 30915\n\t\tf 3 -28200 28220 28221\n\t\tmu 0 3 30927 30912 30928\n\t\tf 3 28222 28223 -28222\n\t\tmu 0 3 30928 30929 30930;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"F08DB10C-47BC-4CBE-067F-479A41162F04\";\n\tsetAttr -s 10 \".lnk\";\n\tsetAttr -s 10 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"86594C23-4E4A-DF24-98AA-3E8A03C6DD77\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"3D6F5274-4937-5DC4-9AB1-0C96FE470091\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"B0D04909-44C1-34E9-24A4-849C5D8E5E48\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"3C9209EA-406A-FCB8-9CDD-3CACF423DD99\";\n\tsetAttr \".ufem\" -type \"stringArray\" 0  ;\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"BD331280-465F-8F59-AF9C-0CBFA6AA9BFC\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"ED99F701-4D18-CF26-1244-E9848CE5CB7E\";\n\tsetAttr \".g\" yes;\ncreateNode phong -n \"Material_MR\";\n\trename -uid \"E6DF2618-4078-77E7-01B6-74A5595255C5\";\n\tsetAttr \".dc\" 1;\n\tsetAttr \".c\" -type \"float3\" 0.80000001 0.80000001 0.80000001 ;\n\tsetAttr \".ambc\" -type \"float3\" 0.2 0.2 0.2 ;\n\tsetAttr \".sc\" -type \"float3\" 0.2 0.2 0.2 ;\n\tsetAttr \".rfl\" 1;\ncreateNode shadingEngine -n \"node_damagedHelmet_FBXASC0456514SG\";\n\trename -uid \"22221CD8-4334-FC68-3830-FF96AD69440D\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"A23C5D88-4258-7DA2-3CFA-0DBA85EF946F\";\ncreateNode GLSLShader -n \"GLSL_PBR_Shader\";\n\trename -uid \"697495E0-490C-7336-20DA-4FA663BF1120\";\n\taddAttr -ci true -sn \"Light_0_use_implicit_lighting\" -ln \"Light_0_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_0_connected_light\" -ln \"Light_0_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_1_use_implicit_lighting\" -ln \"Light_1_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_1_connected_light\" -ln \"Light_1_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_2_use_implicit_lighting\" -ln \"Light_2_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_2_connected_light\" -ln \"Light_2_connected_light\" \n\t\t-at \"message\";\n\taddAttr -s false -is true -ci true -k true -sn \"te\" -ln \"techniqueEnum\" -nn \"Technique\" \n\t\t-min 0 -max 1 -en \"Solid:Transparent\" -at \"enum\";\n\taddAttr -ci true -sn \"Position\" -ln \"Position\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Position_Name\" -ln \"Position_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"Position_Source\" -ln \"Position_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -sn \"Position_DefaultTexture\" -ln \"Position_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Name\" -ln \"u_LightColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Type\" -ln \"u_LightColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_LightColor\" -ln \"u_LightColor\" -nn \"Light Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_LightColorR\" -ln \"u_LightColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorG\" -ln \"u_LightColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorB\" -ln \"u_LightColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Name\" -ln \"u_BaseColorTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Type\" -ln \"u_BaseColorTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorTexture\" -ln \"u_BaseColorTexture\" \n\t\t-nn \"Base color map (sRGB)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureR\" -ln \"u_BaseColorTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureG\" -ln \"u_BaseColorTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureB\" -ln \"u_BaseColorTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Name\" -ln \"u_EmissiveTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Type\" -ln \"u_EmissiveTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveTexture\" -ln \"u_EmissiveTexture\" -nn \"Emissive map (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureR\" -ln \"u_EmissiveTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureG\" -ln \"u_EmissiveTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureB\" -ln \"u_EmissiveTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Name\" -ln \"u_OcclusionTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Type\" -ln \"u_OcclusionTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_OcclusionTexture\" -ln \"u_OcclusionTexture\" \n\t\t-nn \"Occlusion map (R,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureR\" -ln \"u_OcclusionTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureG\" -ln \"u_OcclusionTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureB\" -ln \"u_OcclusionTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Name\" -ln \"u_OcclusionStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Type\" -ln \"u_OcclusionStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_OcclusionStrength\" -ln \"u_OcclusionStrength\" -nn \"Occlusion strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Name\" -ln \"u_BaseColorFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Type\" -ln \"u_BaseColorFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactor\" -ln \"u_BaseColorFactor\" -nn \"Base color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorFactorRGB\" -ln \"u_BaseColorFactorRGB\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_BaseColorFactor\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorR\" -ln \"u_BaseColorFactorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorG\" -ln \"u_BaseColorFactorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorB\" -ln \"u_BaseColorFactorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorA\" -ln \"u_BaseColorFactorA\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactor\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Name\" -ln \"u_ScaleDiffBaseMR_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Type\" -ln \"u_ScaleDiffBaseMR_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMR\" -ln \"u_ScaleDiffBaseMR\" -nn \"Scale Diff Base MR\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRXYZ\" -ln \"u_ScaleDiffBaseMRXYZ\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_ScaleDiffBaseMR\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRX\" -ln \"u_ScaleDiffBaseMRX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRY\" -ln \"u_ScaleDiffBaseMRY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRZ\" -ln \"u_ScaleDiffBaseMRZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRW\" -ln \"u_ScaleDiffBaseMRW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMR\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Name\" -ln \"u_ScaleFGDSpec_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Type\" -ln \"u_ScaleFGDSpec_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpec\" -ln \"u_ScaleFGDSpec\" -nn \"Scale FGD Spec\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecXYZ\" -ln \"u_ScaleFGDSpecXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleFGDSpec\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecX\" -ln \"u_ScaleFGDSpecX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecY\" -ln \"u_ScaleFGDSpecY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecZ\" -ln \"u_ScaleFGDSpecZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecW\" -ln \"u_ScaleFGDSpecW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpec\";\n\taddAttr -ci true -sn \"Normal\" -ln \"Normal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Normal_Name\" -ln \"Normal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Source\" -ln \"Normal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -sn \"Normal_DefaultTexture\" -ln \"Normal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Normal\";\n\taddAttr -ci true -sn \"Tangent\" -ln \"Tangent\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Tangent_Name\" -ln \"Tangent_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"Tangent_Source\" -ln \"Tangent_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -sn \"Tangent_DefaultTexture\" -ln \"Tangent_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Name\" -ln \"u_NormalTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Type\" -ln \"u_NormalTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_NormalTexture\" -ln \"u_NormalTexture\" -nn \"Normal map (LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_NormalTextureR\" -ln \"u_NormalTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureG\" -ln \"u_NormalTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureB\" -ln \"u_NormalTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Name\" -ln \"u_NormalScale_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Type\" -ln \"u_NormalScale_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_NormalScale\" -ln \"u_NormalScale\" -nn \"Normal scale\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Name\" -ln \"u_DiffuseEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Type\" -ln \"u_DiffuseEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_DiffuseEnvTexture\" -ln \"u_DiffuseEnvTexture\" \n\t\t-nn \"Diffuse env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureR\" -ln \"u_DiffuseEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureG\" -ln \"u_DiffuseEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureB\" -ln \"u_DiffuseEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Name\" -ln \"u_SpecularEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Type\" -ln \"u_SpecularEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_SpecularEnvTexture\" -ln \"u_SpecularEnvTexture\" \n\t\t-nn \"Specular env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureR\" -ln \"u_SpecularEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureG\" -ln \"u_SpecularEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureB\" -ln \"u_SpecularEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Name\" -ln \"u_brdfTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Type\" -ln \"u_brdfTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_brdfTexture\" -ln \"u_brdfTexture\" -nn \"BRDF LUT (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_brdfTextureR\" -ln \"u_brdfTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureG\" -ln \"u_brdfTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureB\" -ln \"u_brdfTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Name\" -ln \"u_MetallicTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Type\" -ln \"u_MetallicTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_MetallicTexture\" -ln \"u_MetallicTexture\" -nn \"Metallic map (B,LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_MetallicTextureR\" -ln \"u_MetallicTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureG\" -ln \"u_MetallicTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureB\" -ln \"u_MetallicTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Name\" -ln \"u_MetallicStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Type\" -ln \"u_MetallicStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_MetallicStrength\" -ln \"u_MetallicStrength\" -nn \"Metallic strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Name\" -ln \"u_RoughnessTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Type\" -ln \"u_RoughnessTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_RoughnessTexture\" -ln \"u_RoughnessTexture\" \n\t\t-nn \"Roughness map (G,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureR\" -ln \"u_RoughnessTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureG\" -ln \"u_RoughnessTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureB\" -ln \"u_RoughnessTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Name\" -ln \"u_RoughnessStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Type\" -ln \"u_RoughnessStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessStrength\" -ln \"u_RoughnessStrength\" -nn \"Roughness strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Name\" -ln \"u_EmissiveColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Type\" -ln \"u_EmissiveColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveColor\" -ln \"u_EmissiveColor\" -nn \"Emissive color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveColorR\" -ln \"u_EmissiveColorR\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorG\" -ln \"u_EmissiveColorG\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorB\" -ln \"u_EmissiveColorB\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Name\" -ln \"u_ScaleIBL_Occl_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Type\" -ln \"u_ScaleIBL_Occl_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_Occl\" -ln \"u_ScaleIBL_Occl\" -nn \"Scale IBL AO(w)\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclXYZ\" -ln \"u_ScaleIBL_OcclXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleIBL_Occl\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclX\" -ln \"u_ScaleIBL_OcclX\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclY\" -ln \"u_ScaleIBL_OcclY\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclZ\" -ln \"u_ScaleIBL_OcclZ\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclW\" -ln \"u_ScaleIBL_OcclW\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_Occl\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Name\" -ln \"u_UseMeshTangents_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Type\" -ln \"u_UseMeshTangents_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UseMeshTangents\" -ln \"u_UseMeshTangents\" -nn \"Use mesh tangents?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -ci true -sn \"directionalLight1_use_implicit_lighting\" -ln \"directionalLight1_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"directionalLight1_connected_light\" -ln \"directionalLight1_connected_light\" \n\t\t-at \"message\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Name\" -ln \"u_LightIntensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Type\" -ln \"u_LightIntensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightIntensity\" -ln \"u_LightIntensity\" -nn \"Light Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 10 -smn 0 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Name\" -ln \"u_LightRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Type\" -ln \"u_LightRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightRotation\" -ln \"u_LightRotation\" -nn \"Light rotation (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 75 -min 0 -max 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Name\" -ln \"u_LightPitch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Type\" -ln \"u_LightPitch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightPitch\" -ln \"u_LightPitch\" -nn \"Light pitch (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 40 -min -90 -max 90 -at \"float\";\n\taddAttr -ci true -sn \"Binormal\" -ln \"Binormal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Binormal_Name\" -ln \"Binormal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -h true -sn \"Binormal_Source\" -ln \"Binormal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -sn \"Binormal_DefaultTexture\" -ln \"Binormal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Binormal\";\n\taddAttr -ci true -sn \"TexCoord0\" -ln \"TexCoord0\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Name\" -ln \"TexCoord0_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Source\" -ln \"TexCoord0_Source\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -sn \"TexCoord0_DefaultTexture\" -ln \"TexCoord0_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Name\" -ln \"u_IsDoubleSided_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Type\" -ln \"u_IsDoubleSided_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsDoubleSided\" -ln \"u_IsDoubleSided\" -nn \"Double sided material?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Name\" -ln \"u_RoughnessOffset_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Type\" -ln \"u_RoughnessOffset_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessOffset\" -ln \"u_RoughnessOffset\" -nn \"Roughness offset\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 12 -smn 0 -smx 12 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Name\" -ln \"u_BurleyFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Type\" -ln \"u_BurleyFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BurleyFactor\" -ln \"u_BurleyFactor\" -nn \"Burley factor\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Name\" -ln \"u_UndoEdgeStretch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Type\" -ln \"u_UndoEdgeStretch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UndoEdgeStretch\" -ln \"u_UndoEdgeStretch\" -nn \"Undo edge stretch?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Name\" -ln \"u_IsEmissiveInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Type\" -ln \"u_IsEmissiveInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEmissiveInsRGB\" -ln \"u_IsEmissiveInsRGB\" -nn \"sRGB emissive?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Name\" -ln \"u_EnvRotationAngle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Type\" -ln \"u_EnvRotationAngle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_EnvRotationAngle\" -ln \"u_EnvRotationAngle\" -nn \"Environment Rotation\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Name\" -ln \"u_FlipEnvMapZ_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Type\" -ln \"u_FlipEnvMapZ_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_FlipEnvMapZ\" -ln \"u_FlipEnvMapZ\" -nn \"Flip environment Z?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Name\" -ln \"u_IsEnvMapInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Type\" -ln \"u_IsEnvMapInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInsRGB\" -ln \"u_IsEnvMapInsRGB\" -nn \"sRGB environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Name\" -ln \"u_IsEnvMapInRGBM_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Type\" -ln \"u_IsEnvMapInRGBM_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInRGBM\" -ln \"u_IsEnvMapInRGBM\" -nn \"RGBM environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Name\" -ln \"u_IsBRDFsSRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Type\" -ln \"u_IsBRDFsSRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBRDFsSRGB\" -ln \"u_IsBRDFsSRGB\" -nn \"sRGB BRDF table?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Name\" -ln \"u_IsBaseColorInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Type\" -ln \"u_IsBaseColorInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBaseColorInsRGB\" -ln \"u_IsBaseColorInsRGB\" -nn \"sRGB basecolor?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\tsetAttr \".vpar\" -type \"stringArray\" 5 \"Position\" \"Normal\" \"Tangent\" \"Binormal\" \"TexCoord0\"  ;\n\tsetAttr \".upar\" -type \"stringArray\" 34 \"u_LightColor\" \"u_LightIntensity\" \"u_LightRotation\" \"u_LightPitch\" \"u_BaseColorTexture\" \"u_BaseColorFactor\" \"u_MetallicTexture\" \"u_MetallicStrength\" \"u_RoughnessTexture\" \"u_RoughnessStrength\" \"u_OcclusionTexture\" \"u_OcclusionStrength\" \"u_NormalTexture\" \"u_NormalScale\" \"u_EmissiveTexture\" \"u_EmissiveColor\" \"u_DiffuseEnvTexture\" \"u_SpecularEnvTexture\" \"u_brdfTexture\" \"u_IsDoubleSided\" \"u_UseMeshTangents\" \"u_RoughnessOffset\" \"u_ScaleDiffBaseMR\" \"u_BurleyFactor\" \"u_ScaleFGDSpec\" \"u_UndoEdgeStretch\" \"u_ScaleIBL_Occl\" \"u_IsEmissiveInsRGB\" \"u_EnvRotationAngle\" \"u_FlipEnvMapZ\" \"u_IsEnvMapInsRGB\" \"u_IsEnvMapInRGBM\" \"u_IsBRDFsSRGB\" \"u_IsBaseColorInsRGB\"  ;\n\tsetAttr \".s\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/shaders/glTF_PBR.ogsfx\";\n\tsetAttr \".t\" -type \"string\" \"Solid\";\n\tsetAttr \".Light_0_use_implicit_lighting\" no;\n\tsetAttr \".Light_1_use_implicit_lighting\" no;\n\tsetAttr \".Position_Name\" -type \"string\" \"Position\";\n\tsetAttr \".Position_Source\" -type \"string\" \"position\";\n\tsetAttr \".u_LightColor_Name\" -type \"string\" \"u_LightColor\";\n\tsetAttr \".u_LightColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr -l on \".u_LightColor\" -type \"float3\" 1 1 1 ;\n\tsetAttr -l on \".u_LightColor\";\n\tsetAttr \".u_BaseColorTexture_Name\" -type \"string\" \"u_BaseColorTexture\";\n\tsetAttr \".u_BaseColorTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_BaseColorTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_EmissiveTexture_Name\" -type \"string\" \"u_EmissiveTexture\";\n\tsetAttr \".u_EmissiveTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_EmissiveTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_OcclusionTexture_Name\" -type \"string\" \"u_OcclusionTexture\";\n\tsetAttr \".u_OcclusionTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_OcclusionTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_OcclusionStrength_Name\" -type \"string\" \"u_OcclusionStrength\";\n\tsetAttr \".u_OcclusionStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_OcclusionStrength\" 1;\n\tsetAttr \".u_BaseColorFactor_Name\" -type \"string\" \"u_BaseColorFactor\";\n\tsetAttr \".u_BaseColorFactor_Type\" -type \"string\" \"color4x1\";\n\tsetAttr \".u_BaseColorFactorRGB\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_BaseColorFactorA\" 1;\n\tsetAttr \".u_ScaleDiffBaseMR_Name\" -type \"string\" \"u_ScaleDiffBaseMR\";\n\tsetAttr \".u_ScaleDiffBaseMR_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleDiffBaseMRXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleDiffBaseMRW\" 0;\n\tsetAttr \".u_ScaleFGDSpec_Name\" -type \"string\" \"u_ScaleFGDSpec\";\n\tsetAttr \".u_ScaleFGDSpec_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleFGDSpecXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleFGDSpecW\" 0;\n\tsetAttr \".Normal_Name\" -type \"string\" \"Normal\";\n\tsetAttr \".Normal_Source\" -type \"string\" \"normal\";\n\tsetAttr \".Tangent_Name\" -type \"string\" \"Tangent\";\n\tsetAttr \".Tangent_Source\" -type \"string\" \"tangent:map1\";\n\tsetAttr \".u_NormalTexture_Name\" -type \"string\" \"u_NormalTexture\";\n\tsetAttr \".u_NormalTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_NormalTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_NormalScale_Name\" -type \"string\" \"u_NormalScale\";\n\tsetAttr \".u_NormalScale_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_NormalScale\" 1;\n\tsetAttr \".u_DiffuseEnvTexture_Name\" -type \"string\" \"u_DiffuseEnvTexture\";\n\tsetAttr \".u_DiffuseEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_DiffuseEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_SpecularEnvTexture_Name\" -type \"string\" \"u_SpecularEnvTexture\";\n\tsetAttr \".u_SpecularEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_SpecularEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_brdfTexture_Name\" -type \"string\" \"u_brdfTexture\";\n\tsetAttr \".u_brdfTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_brdfTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_MetallicTexture_Name\" -type \"string\" \"u_MetallicTexture\";\n\tsetAttr \".u_MetallicTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_MetallicTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_MetallicStrength_Name\" -type \"string\" \"u_MetallicStrength\";\n\tsetAttr \".u_MetallicStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_MetallicStrength\" 1;\n\tsetAttr \".u_RoughnessTexture_Name\" -type \"string\" \"u_RoughnessTexture\";\n\tsetAttr \".u_RoughnessTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_RoughnessTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_RoughnessStrength_Name\" -type \"string\" \"u_RoughnessStrength\";\n\tsetAttr \".u_RoughnessStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_RoughnessStrength\" 1;\n\tsetAttr \".u_EmissiveColor_Name\" -type \"string\" \"u_EmissiveColor\";\n\tsetAttr \".u_EmissiveColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_EmissiveColor\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_ScaleIBL_Occl_Name\" -type \"string\" \"u_ScaleIBL_Occl\";\n\tsetAttr \".u_ScaleIBL_Occl_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleIBL_OcclXYZ\" -type \"float3\" 1 1 0 ;\n\tsetAttr \".u_ScaleIBL_OcclW\" 1;\n\tsetAttr \".u_UseMeshTangents_Name\" -type \"string\" \"u_UseMeshTangents\";\n\tsetAttr \".u_UseMeshTangents_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UseMeshTangents\" no;\n\tsetAttr \".directionalLight1_use_implicit_lighting\" no;\n\tsetAttr \".u_LightIntensity_Name\" -type \"string\" \"u_LightIntensity\";\n\tsetAttr \".u_LightIntensity_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".u_LightIntensity\" 1;\n\tsetAttr \".u_LightRotation_Name\" -type \"string\" \"u_LightRotation\";\n\tsetAttr \".u_LightRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightRotation\" 75;\n\tsetAttr \".u_LightPitch_Name\" -type \"string\" \"u_LightPitch\";\n\tsetAttr \".u_LightPitch_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightPitch\" 40;\n\tsetAttr \".Binormal_Name\" -type \"string\" \"Binormal\";\n\tsetAttr \".Binormal_Source\" -type \"string\" \"binormal:map1\";\n\tsetAttr \".TexCoord0_Name\" -type \"string\" \"TexCoord0\";\n\tsetAttr \".TexCoord0_Source\" -type \"string\" \"uv:map1\";\n\tsetAttr \".TexCoord0_DefaultTexture\" -type \"string\" \"u_BaseColorTexture\";\n\tsetAttr \".u_IsDoubleSided_Name\" -type \"string\" \"u_IsDoubleSided\";\n\tsetAttr \".u_IsDoubleSided_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsDoubleSided\" no;\n\tsetAttr \".u_RoughnessOffset_Name\" -type \"string\" \"u_RoughnessOffset\";\n\tsetAttr \".u_RoughnessOffset_Type\" -type \"string\" \"int\";\n\tsetAttr \".u_RoughnessOffset\" 0;\n\tsetAttr \".u_BurleyFactor_Name\" -type \"string\" \"u_BurleyFactor\";\n\tsetAttr \".u_BurleyFactor_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_BurleyFactor\" 0;\n\tsetAttr \".u_UndoEdgeStretch_Name\" -type \"string\" \"u_UndoEdgeStretch\";\n\tsetAttr \".u_UndoEdgeStretch_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UndoEdgeStretch\" no;\n\tsetAttr \".u_IsEmissiveInsRGB_Name\" -type \"string\" \"u_IsEmissiveInsRGB\";\n\tsetAttr \".u_IsEmissiveInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEmissiveInsRGB\" yes;\n\tsetAttr \".u_EnvRotationAngle_Name\" -type \"string\" \"u_EnvRotationAngle\";\n\tsetAttr \".u_EnvRotationAngle_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_EnvRotationAngle\" 0;\n\tsetAttr \".u_FlipEnvMapZ_Name\" -type \"string\" \"u_FlipEnvMapZ\";\n\tsetAttr \".u_FlipEnvMapZ_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_FlipEnvMapZ\" yes;\n\tsetAttr \".u_IsEnvMapInsRGB_Name\" -type \"string\" \"u_IsEnvMapInsRGB\";\n\tsetAttr \".u_IsEnvMapInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInsRGB\" no;\n\tsetAttr \".u_IsEnvMapInRGBM_Name\" -type \"string\" \"u_IsEnvMapInRGBM\";\n\tsetAttr \".u_IsEnvMapInRGBM_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInRGBM\" no;\n\tsetAttr \".u_IsBRDFsSRGB_Name\" -type \"string\" \"u_IsBRDFsSRGB\";\n\tsetAttr \".u_IsBRDFsSRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBRDFsSRGB\" no;\n\tsetAttr \".u_IsBaseColorInsRGB_Name\" -type \"string\" \"u_IsBaseColorInsRGB\";\n\tsetAttr \".u_IsBaseColorInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBaseColorInsRGB\" yes;\ncreateNode shadingEngine -n \"GLSLShader1SG\";\n\trename -uid \"A39CC043-408D-53D0-BCE3-E5B74A46CB09\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"4CE616B2-46CC-0D62-D1AD-8F9FF97C700A\";\ncreateNode file -n \"file_albedo\";\n\trename -uid \"9635A652-444D-3C90-BC05-38A30D9B7D69\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//images/damaged_helmet_albedo.jpg\";\n\tsetAttr \".pfr\" 10;\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture1\";\n\trename -uid \"92259C15-471D-ADC6-FD70-659CF88ECE2F\";\ncreateNode file -n \"file_normal\";\n\trename -uid \"4DA2741B-4978-1AA0-1355-44AA3C5B011D\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//images/damaged_helmet_normal.png\";\n\tsetAttr \".ft\" 4;\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture2\";\n\trename -uid \"7982CF56-4B9A-A63B-DCEF-6C9C1458341E\";\ncreateNode file -n \"file_orm\";\n\trename -uid \"86C058B9-4789-FE12-375D-87A82F44A30F\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//images/damaged_helmet_orm.jpg\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture3\";\n\trename -uid \"02B90BEC-4D84-ACBB-B1B0-AC8419FE0707\";\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"5E62F7F3-4425-6AA7-3A68-2998B05A9941\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"|top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -bluePencil 1\\n            -greasePencils 0\\n            -excludeObjectPreset \\\"All\\\" \\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"|side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n\"\n\t\t+ \"            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -bluePencil 1\\n            -greasePencils 0\\n            -excludeObjectPreset \\\"All\\\" \\n\"\n\t\t+ \"            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"|front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n\"\n\t\t+ \"            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n\"\n\t\t+ \"            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n\"\n\t\t+ \"            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -bluePencil 1\\n            -greasePencils 0\\n            -excludeObjectPreset \\\"All\\\" \\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n\"\n\t\t+ \"            -camera \\\"|camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 0\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 1\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n\"\n\t\t+ \"            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n\"\n\t\t+ \"            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -bluePencil 1\\n            -greasePencils 0\\n            -excludeObjectPreset \\\"All\\\" \\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 2253\\n            -height 1648\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -autoExpandAllAnimatedShapes 1\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n\"\n\t\t+ \"            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -showUfeItems 1\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n\"\n\t\t+ \"            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n\"\n\t\t+ \"            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -autoExpandAllAnimatedShapes 1\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n\"\n\t\t+ \"            -showUfeItems 1\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -autoExpandAllAnimatedShapes 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n\"\n\t\t+ \"                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -showUfeItems 1\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n\"\n\t\t+ \"                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayValues 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -showPlayRangeShades \\\"on\\\" \\n                -lockPlayRangeShades \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -keyMinScale 1\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -preSelectionHighlight 0\\n                -limitToSelectedCurves 0\\n                -constrainDrag 0\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                -highlightAffectedCurves 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -autoExpandAllAnimatedShapes 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n\"\n\t\t+ \"                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -showUfeItems 1\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n\"\n\t\t+ \"                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayValues 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayValues 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayValues 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n\"\n\t\t+ \"                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n\"\n\t\t+ \"                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -connectionStyle \\\"bezier\\\" \\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -connectedGraphingMode 1\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n\"\n\t\t+ \"                -showUnitConversions 0\\n                -editorMode \\\"default\\\" \\n                -hasWatchpoint 0\\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -connectionStyle \\\"bezier\\\" \\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -connectedGraphingMode 1\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n\"\n\t\t+ \"                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -showUnitConversions 0\\n                -editorMode \\\"default\\\" \\n                -hasWatchpoint 0\\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\n{ string $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"|persp\\\" \\n                -useInteractiveMode 0\\n\"\n\t\t+ \"                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n\"\n\t\t+ \"                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -bluePencil 1\\n                -greasePencils 0\\n                -excludeObjectPreset \\\"All\\\" \\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n\"\n\t\t+ \"                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName; };\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"|camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 0\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -bluePencil 1\\\\n    -greasePencils 0\\\\n    -excludeObjectPreset \\\\\\\"All\\\\\\\" \\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 2253\\\\n    -height 1648\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"|camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 0\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -bluePencil 1\\\\n    -greasePencils 0\\\\n    -excludeObjectPreset \\\\\\\"All\\\\\\\" \\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 2253\\\\n    -height 1648\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 10 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"1ACBD286-4C21-4A15-9BDA-BE99B8047EE0\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode place2dTexture -n \"place2dTexture4\";\n\trename -uid \"C0A8C725-475C-FAAA-DC52-2891FA906FB6\";\ncreateNode envCube -n \"envCube1\";\n\trename -uid \"1863FB24-4D86-0AF5-BBDD-88BE441D1845\";\ncreateNode place2dTexture -n \"place2dTexture5\";\n\trename -uid \"0B90B01A-41E2-61AF-AFFD-94B14532AFE6\";\ncreateNode place2dTexture -n \"place2dTexture6\";\n\trename -uid \"B68B52DD-416B-FA02-FC02-1E87AF96BE40\";\ncreateNode place2dTexture -n \"place2dTexture7\";\n\trename -uid \"4D77912C-4285-ED2C-5E4E-3AACFA7D490F\";\ncreateNode place2dTexture -n \"place2dTexture8\";\n\trename -uid \"56220B31-46C0-641A-90AC-79B8B1B9634E\";\ncreateNode place2dTexture -n \"place2dTexture9\";\n\trename -uid \"C458D8F3-4D46-19A9-8802-969CF7162F26\";\ncreateNode place2dTexture -n \"place2dTexture10\";\n\trename -uid \"6D766279-45DE-D1C5-A303-50BFB7498CC5\";\ncreateNode envCube -n \"envCube2\";\n\trename -uid \"5796FF62-4E44-F6C1-7AB7-028CAFC031F4\";\ncreateNode place2dTexture -n \"place2dTexture11\";\n\trename -uid \"46880797-45D6-8AB5-7960-73B38A6DDBA1\";\ncreateNode place2dTexture -n \"place2dTexture12\";\n\trename -uid \"ABBE931F-405D-EB7C-0E67-75A81D184D96\";\ncreateNode place2dTexture -n \"place2dTexture13\";\n\trename -uid \"3C8967E9-4959-9BED-A954-BCA6DC45E9B9\";\ncreateNode place2dTexture -n \"place2dTexture14\";\n\trename -uid \"52A548FA-43A9-EBBF-AECC-CB89AFB2F8BA\";\ncreateNode place2dTexture -n \"place2dTexture15\";\n\trename -uid \"A6C3D041-4063-E2F5-4346-77A13225EFB8\";\ncreateNode place2dTexture -n \"place2dTexture16\";\n\trename -uid \"F6044585-4BF8-A58D-8142-77A4C02F6BB9\";\ncreateNode layeredTexture -n \"layeredTexture1\";\n\trename -uid \"7C6D88C5-48D4-3F2C-1AC0-9EA0F5D8E4F0\";\n\tsetAttr \".cs[0].c\" -type \"float3\" 0.2 0.69999999 0.30000001 ;\n\tsetAttr \".cs[0].a\" 1;\n\tsetAttr \".cs[0].bm\" 1;\n\tsetAttr \".cs[0].iv\" yes;\ncreateNode envCube -n \"envCube3\";\n\trename -uid \"F4124F43-4584-F512-E131-B69152156874\";\n\tsetAttr \".lt\" 1;\ncreateNode place2dTexture -n \"place2dTexture17\";\n\trename -uid \"C2FB0326-4FAC-522E-70C3-E08D70C49B6F\";\ncreateNode place2dTexture -n \"place2dTexture18\";\n\trename -uid \"CB18252A-4F32-7AF9-F448-74BB3AA9B758\";\ncreateNode place2dTexture -n \"place2dTexture19\";\n\trename -uid \"10B8D0DC-41C4-BF08-5084-E8983B96BE93\";\ncreateNode place2dTexture -n \"place2dTexture20\";\n\trename -uid \"06BAB71B-42C9-3C03-834A-249767F1995B\";\ncreateNode place2dTexture -n \"place2dTexture21\";\n\trename -uid \"649A863D-4940-1346-0B29-5EBA310A2166\";\ncreateNode place2dTexture -n \"place2dTexture22\";\n\trename -uid \"841A4250-453D-42CB-1528-10BAE9F344B6\";\ncreateNode place2dTexture -n \"place2dTexture23\";\n\trename -uid \"55C390A1-48DA-3465-F58A-0D8A2DF6B423\";\ncreateNode place2dTexture -n \"place2dTexture24\";\n\trename -uid \"46F46848-4E07-C9CA-9922-39B5FF93E5DF\";\ncreateNode place2dTexture -n \"place2dTexture25\";\n\trename -uid \"6C900BA0-4588-E2D4-305A-57AF28DFF3D3\";\ncreateNode place2dTexture -n \"place2dTexture26\";\n\trename -uid \"EEDC0D58-4D58-2734-D7E4-7BAE79BBB0DC\";\ncreateNode file -n \"file_diffuse_env\";\n\trename -uid \"1610DE0C-44D6-A0CB-B29D-ABB38A71DAEF\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_diffuse_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture27\";\n\trename -uid \"BDACD375-4B22-C2BF-3D10-CD8FEED5837B\";\ncreateNode file -n \"file_specular_env\";\n\trename -uid \"1320658B-4C86-29FD-1D71-338A9870324F\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_specular_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\n\tsetAttr \".ifr\" yes;\ncreateNode place2dTexture -n \"place2dTexture28\";\n\trename -uid \"51F4C5BA-47E1-935B-3A70-18A3EF54588F\";\ncreateNode surfaceShader -n \"surfaceShader1\";\n\trename -uid \"BCB8A36B-4C76-7B4E-14EE-19A55E7810F9\";\ncreateNode shadingEngine -n \"surfaceShader1SG\";\n\trename -uid \"F1ACF987-49A8-A4F5-A894-35942828D90E\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo3\";\n\trename -uid \"92029E1E-43B0-F4D4-959F-429A90AE3BBF\";\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"F4E49400-4B7C-26E2-407B-C68A19006287\";\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"1835084C-454A-C8A2-8E36-07A5BBB2F653\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo4\";\n\trename -uid \"659E0107-4129-0A24-0980-0FBA838A63BE\";\ncreateNode place2dTexture -n \"place2dTexture29\";\n\trename -uid \"38FD2A9B-46A7-E5D9-E69D-29812AF43992\";\ncreateNode GLSLShader -n \"GLSLShader2\";\n\trename -uid \"8D89AEB5-4E78-7D63-B0BB-3A9EE0FBABBB\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnabled_Name\" -ln \"MayaHwFogEnabled_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnabled_Type\" -ln \"MayaHwFogEnabled_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnabled\" -ln \"MayaHwFogEnabled\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogMode_Name\" -ln \"MayaHwFogMode_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogMode_Type\" -ln \"MayaHwFogMode_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogMode\" -ln \"MayaHwFogMode\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogStart_Name\" -ln \"MayaHwFogStart_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogStart_Type\" -ln \"MayaHwFogStart_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogStart\" -ln \"MayaHwFogStart\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnd_Name\" -ln \"MayaHwFogEnd_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnd_Type\" -ln \"MayaHwFogEnd_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnd\" -ln \"MayaHwFogEnd\" -ct \"HW_shader_parameter\" \n\t\t-dv 100 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogDensity_Name\" -ln \"MayaHwFogDensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogDensity_Type\" -ln \"MayaHwFogDensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogDensity\" -ln \"MayaHwFogDensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.10000000149011612 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogColor_Name\" -ln \"MayaHwFogColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogColor_Type\" -ln \"MayaHwFogColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogColor\" -ln \"MayaHwFogColor\" -ct \"HW_shader_parameter\" \n\t\t-at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"MayaHwFogColorXYZ\" -ln \"MayaHwFogColorXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"MayaHwFogColor\" -nc 3;\n\taddAttr -is true -ci true -sn \"MayaHwFogColorX\" -ln \"MayaHwFogColorX\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.5 -smn 0 -smx 1 -at \"float\" -p \"MayaHwFogColorXYZ\";\n\taddAttr -is true -ci true -sn \"MayaHwFogColorY\" -ln \"MayaHwFogColorY\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.5 -smn 0 -smx 1 -at \"float\" -p \"MayaHwFogColorXYZ\";\n\taddAttr -is true -ci true -sn \"MayaHwFogColorZ\" -ln \"MayaHwFogColorZ\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.5 -smn 0 -smx 1 -at \"float\" -p \"MayaHwFogColorXYZ\";\n\taddAttr -is true -ci true -sn \"MayaHwFogColorW\" -ln \"MayaHwFogColorW\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -smn 0 -smx 1 -at \"float\" -p \"MayaHwFogColor\";\n\taddAttr -is true -ci true -h true -sn \"Clamp_Dynamic_Lights_Name\" -ln \"Clamp_Dynamic_Lights_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Clamp_Dynamic_Lights_Type\" -ln \"Clamp_Dynamic_Lights_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Clamp_Dynamic_Lights\" -ln \"Clamp_Dynamic_Lights\" \n\t\t-nn \"Clamp Dynamic Lights\" -ct \"HW_shader_parameter\" -dv 99 -min 0 -max 99 -smn 0 \n\t\t-smx 99 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"IsSwatchRender_Name\" -ln \"IsSwatchRender_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IsSwatchRender_Type\" -ln \"IsSwatchRender_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IsSwatchRender\" -ln \"IsSwatchRender\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Tessellation_Maximum_Name\" -ln \"Tessellation_Maximum_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Tessellation_Maximum_Type\" -ln \"Tessellation_Maximum_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Tessellation_Maximum\" -ln \"Tessellation_Maximum\" \n\t\t-nn \"Tessellation Maximum\" -ct \"HW_shader_parameter\" -dv 20 -min 0 -max 99 -smn 0 \n\t\t-smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Surface_Mask_Cutoff_Name\" -ln \"Surface_Mask_Cutoff_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Surface_Mask_Cutoff_Type\" -ln \"Surface_Mask_Cutoff_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Surface_Mask_Cutoff\" -ln \"Surface_Mask_Cutoff\" -nn \"Surface Mask Cutoff\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Name\" -ln \"Thickness_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Type\" -ln \"Thickness_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -sn \"Thickness\" -ln \"Thickness\" -nn \"Thickness\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"ReflectionRotation_Name\" -ln \"ReflectionRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"ReflectionRotation_Type\" -ln \"ReflectionRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"ReflectionRotation\" -ln \"ReflectionRotation\" -nn \"ReflectionRotation\" \n\t\t-ct \"HW_shader_parameter\" -dv 360 -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"EmissiveStrength_Name\" -ln \"EmissiveStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"EmissiveStrength_Type\" -ln \"EmissiveStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"EmissiveStrength\" -ln \"EmissiveStrength\" -nn \"EmissiveStrength\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"IBLRotation_Name\" -ln \"IBLRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IBLRotation_Type\" -ln \"IBLRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"IBLRotation\" -ln \"IBLRotation\" -nn \"IBLRotation\" \n\t\t-ct \"HW_shader_parameter\" -dv 360 -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"IBLBlur_Name\" -ln \"IBLBlur_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IBLBlur_Type\" -ln \"IBLBlur_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -sn \"IBLBlur\" -ln \"IBLBlur\" -nn \"IBLBlur\" -ct \"HW_shader_parameter\" \n\t\t-dv 5 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"IBLIntensity_Name\" -ln \"IBLIntensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IBLIntensity_Type\" -ln \"IBLIntensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"IBLIntensity\" -ln \"IBLIntensity\" -nn \"IBLIntensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Type_Name\" -ln \"Light_0_Type_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Type_Type\" -ln \"Light_0_Type_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Type\" -ln \"Light_0_Type\" -nn \"Light 0 Type\" \n\t\t-ct \"HW_shader_parameter\" -dv 3 -smn 0 -smx 1 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Type_Name\" -ln \"Light_1_Type_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Type_Type\" -ln \"Light_1_Type_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Type\" -ln \"Light_1_Type\" -nn \"Light 1 Type\" \n\t\t-ct \"HW_shader_parameter\" -dv 3 -smn 0 -smx 1 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Type_Name\" -ln \"Light_2_Type_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Type_Type\" -ln \"Light_2_Type_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Type\" -ln \"Light_2_Type\" -nn \"Light 2 Type\" \n\t\t-ct \"HW_shader_parameter\" -dv 3 -smn 0 -smx 1 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Color_Name\" -ln \"Light_0_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Color_Type\" -ln \"Light_0_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_0_Color\" -ln \"Light_0_Color\" -nn \"Light 0 Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_0_ColorR\" -ln \"Light_0_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_0_Color\";\n\taddAttr -is true -ci true -sn \"Light_0_ColorG\" -ln \"Light_0_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_0_Color\";\n\taddAttr -is true -ci true -sn \"Light_0_ColorB\" -ln \"Light_0_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_0_Color\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Color_Name\" -ln \"Light_1_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Color_Type\" -ln \"Light_1_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_1_Color\" -ln \"Light_1_Color\" -nn \"Light 1 Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_1_ColorR\" -ln \"Light_1_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_1_Color\";\n\taddAttr -is true -ci true -sn \"Light_1_ColorG\" -ln \"Light_1_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_1_Color\";\n\taddAttr -is true -ci true -sn \"Light_1_ColorB\" -ln \"Light_1_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_1_Color\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Color_Name\" -ln \"Light_2_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Color_Type\" -ln \"Light_2_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_2_Color\" -ln \"Light_2_Color\" -nn \"Light 2 Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_2_ColorR\" -ln \"Light_2_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_2_Color\";\n\taddAttr -is true -ci true -sn \"Light_2_ColorG\" -ln \"Light_2_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_2_Color\";\n\taddAttr -is true -ci true -sn \"Light_2_ColorB\" -ln \"Light_2_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_2_Color\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Intensity_Name\" -ln \"Light_0_Intensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Intensity_Type\" -ln \"Light_0_Intensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Intensity\" -ln \"Light_0_Intensity\" -nn \"Light 0 Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Intensity_Name\" -ln \"Light_1_Intensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Intensity_Type\" -ln \"Light_1_Intensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Intensity\" -ln \"Light_1_Intensity\" -nn \"Light 1 Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Intensity_Name\" -ln \"Light_2_Intensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Intensity_Type\" -ln \"Light_2_Intensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Intensity\" -ln \"Light_2_Intensity\" -nn \"Light 2 Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Position_Name\" -ln \"Light_0_Position_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Position_Type\" -ln \"Light_0_Position_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Position\" -ln \"Light_0_Position\" -nn \"Light 0 Position\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Position_Name\" -ln \"Light_1_Position_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Position_Type\" -ln \"Light_1_Position_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Position\" -ln \"Light_1_Position\" -nn \"Light 1 Position\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Position_Name\" -ln \"Light_2_Position_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Position_Type\" -ln \"Light_2_Position_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Position\" -ln \"Light_2_Position\" -nn \"Light 2 Position\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Direction_Name\" -ln \"Light_0_Direction_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Direction_Type\" -ln \"Light_0_Direction_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Direction\" -ln \"Light_0_Direction\" -nn \"Light 0 Direction\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Direction_Name\" -ln \"Light_1_Direction_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Direction_Type\" -ln \"Light_1_Direction_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Direction\" -ln \"Light_1_Direction\" -nn \"Light 1 Direction\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Direction_Name\" -ln \"Light_2_Direction_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Direction_Type\" -ln \"Light_2_Direction_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Direction\" -ln \"Light_2_Direction\" -nn \"Light 2 Direction\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Decay_Name\" -ln \"Light_0_Decay_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Decay_Type\" -ln \"Light_0_Decay_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Decay\" -ln \"Light_0_Decay\" -nn \"Light 0 Decay\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Decay_Name\" -ln \"Light_1_Decay_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Decay_Type\" -ln \"Light_1_Decay_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Decay\" -ln \"Light_1_Decay\" -nn \"Light 1 Decay\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Decay_Name\" -ln \"Light_2_Decay_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Decay_Type\" -ln \"Light_2_Decay_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Decay\" -ln \"Light_2_Decay\" -nn \"Light 2 Decay\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Cone_Angle_Name\" -ln \"Light_0_Cone_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Cone_Angle_Type\" -ln \"Light_0_Cone_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Cone_Angle\" -ln \"Light_0_Cone_Angle\" -nn \"Light 0 Cone Angle\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.46000000834465027 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Cone_Angle_Name\" -ln \"Light_1_Cone_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Cone_Angle_Type\" -ln \"Light_1_Cone_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Cone_Angle\" -ln \"Light_1_Cone_Angle\" -nn \"Light 1 Cone Angle\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.46000000834465027 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Cone_Angle_Name\" -ln \"Light_2_Cone_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Cone_Angle_Type\" -ln \"Light_2_Cone_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Cone_Angle\" -ln \"Light_2_Cone_Angle\" -nn \"Light 2 Cone Angle\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.46000000834465027 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Penumbra_Angle_Name\" -ln \"Light_0_Penumbra_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Penumbra_Angle_Type\" -ln \"Light_0_Penumbra_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Penumbra_Angle\" -ln \"Light_0_Penumbra_Angle\" \n\t\t-nn \"Light 0 Penumbra Angle\" -ct \"HW_shader_parameter\" -dv 0.69999998807907104 -smn \n\t\t0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Penumbra_Angle_Name\" -ln \"Light_1_Penumbra_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Penumbra_Angle_Type\" -ln \"Light_1_Penumbra_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Penumbra_Angle\" -ln \"Light_1_Penumbra_Angle\" \n\t\t-nn \"Light 1 Penumbra Angle\" -ct \"HW_shader_parameter\" -dv 0.69999998807907104 -smn \n\t\t0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Penumbra_Angle_Name\" -ln \"Light_2_Penumbra_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Penumbra_Angle_Type\" -ln \"Light_2_Penumbra_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Penumbra_Angle\" -ln \"Light_2_Penumbra_Angle\" \n\t\t-nn \"Light 2 Penumbra Angle\" -ct \"HW_shader_parameter\" -dv 0.69999998807907104 -smn \n\t\t0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Casts_Shadow_Name\" -ln \"Light_0_Casts_Shadow_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Casts_Shadow_Type\" -ln \"Light_0_Casts_Shadow_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Casts_Shadow\" -ln \"Light_0_Casts_Shadow\" \n\t\t-nn \"Light 0 Casts Shadow\" -ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Casts_Shadow_Name\" -ln \"Light_1_Casts_Shadow_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Casts_Shadow_Type\" -ln \"Light_1_Casts_Shadow_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Casts_Shadow\" -ln \"Light_1_Casts_Shadow\" \n\t\t-nn \"Light 1 Casts Shadow\" -ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Casts_Shadow_Name\" -ln \"Light_2_Casts_Shadow_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Casts_Shadow_Type\" -ln \"Light_2_Casts_Shadow_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Casts_Shadow\" -ln \"Light_2_Casts_Shadow\" \n\t\t-nn \"Light 2 Casts Shadow\" -ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Shadow_Color_Name\" -ln \"Light_0_Shadow_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Shadow_Color_Type\" -ln \"Light_0_Shadow_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_0_Shadow_Color\" -ln \"Light_0_Shadow_Color\" \n\t\t-nn \"Light 0 Shadow Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_0_Shadow_ColorR\" -ln \"Light_0_Shadow_ColorR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_0_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_0_Shadow_ColorG\" -ln \"Light_0_Shadow_ColorG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_0_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_0_Shadow_ColorB\" -ln \"Light_0_Shadow_ColorB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_0_Shadow_Color\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Shadow_Color_Name\" -ln \"Light_1_Shadow_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Shadow_Color_Type\" -ln \"Light_1_Shadow_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_1_Shadow_Color\" -ln \"Light_1_Shadow_Color\" \n\t\t-nn \"Light 1 Shadow Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_1_Shadow_ColorR\" -ln \"Light_1_Shadow_ColorR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_1_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_1_Shadow_ColorG\" -ln \"Light_1_Shadow_ColorG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_1_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_1_Shadow_ColorB\" -ln \"Light_1_Shadow_ColorB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_1_Shadow_Color\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Shadow_Color_Name\" -ln \"Light_2_Shadow_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Shadow_Color_Type\" -ln \"Light_2_Shadow_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_2_Shadow_Color\" -ln \"Light_2_Shadow_Color\" \n\t\t-nn \"Light 2 Shadow Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_2_Shadow_ColorR\" -ln \"Light_2_Shadow_ColorR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_2_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_2_Shadow_ColorG\" -ln \"Light_2_Shadow_ColorG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_2_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_2_Shadow_ColorB\" -ln \"Light_2_Shadow_ColorB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_2_Shadow_Color\";\n\taddAttr -is true -ci true -h true -sn \"Surface_Mask_Name\" -ln \"Surface_Mask_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Surface_Mask_Type\" -ln \"Surface_Mask_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Surface_Mask\" -ln \"Surface_Mask\" -nn \"Surface Mask\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Surface_MaskR\" -ln \"Surface_MaskR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Surface_Mask\";\n\taddAttr -is true -ci true -sn \"Surface_MaskG\" -ln \"Surface_MaskG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Surface_Mask\";\n\taddAttr -is true -ci true -sn \"Surface_MaskB\" -ln \"Surface_MaskB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Surface_Mask\";\n\taddAttr -is true -ci true -h true -sn \"light0ShadowMap_Name\" -ln \"light0ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"light0ShadowMap_Type\" -ln \"light0ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"light0ShadowMap\" -ln \"light0ShadowMap\" \n\t\t-nn \"light0ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"light0ShadowMapR\" -ln \"light0ShadowMapR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light0ShadowMap\";\n\taddAttr -is true -ci true -sn \"light0ShadowMapG\" -ln \"light0ShadowMapG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light0ShadowMap\";\n\taddAttr -is true -ci true -sn \"light0ShadowMapB\" -ln \"light0ShadowMapB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light0ShadowMap\";\n\taddAttr -is true -ci true -h true -sn \"light1ShadowMap_Name\" -ln \"light1ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"light1ShadowMap_Type\" -ln \"light1ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"light1ShadowMap\" -ln \"light1ShadowMap\" \n\t\t-nn \"light1ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"light1ShadowMapR\" -ln \"light1ShadowMapR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light1ShadowMap\";\n\taddAttr -is true -ci true -sn \"light1ShadowMapG\" -ln \"light1ShadowMapG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light1ShadowMap\";\n\taddAttr -is true -ci true -sn \"light1ShadowMapB\" -ln \"light1ShadowMapB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light1ShadowMap\";\n\taddAttr -is true -ci true -h true -sn \"light2ShadowMap_Name\" -ln \"light2ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"light2ShadowMap_Type\" -ln \"light2ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"light2ShadowMap\" -ln \"light2ShadowMap\" \n\t\t-nn \"light2ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"light2ShadowMapR\" -ln \"light2ShadowMapR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light2ShadowMap\";\n\taddAttr -is true -ci true -sn \"light2ShadowMapG\" -ln \"light2ShadowMapG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light2ShadowMap\";\n\taddAttr -is true -ci true -sn \"light2ShadowMapB\" -ln \"light2ShadowMapB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light2ShadowMap\";\n\taddAttr -is true -ci true -h true -sn \"IBLMap_Name\" -ln \"IBLMap_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IBLMap_Type\" -ln \"IBLMap_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"IBLMap\" -ln \"IBLMap\" -nn \"IBLMap\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"IBLMapR\" -ln \"IBLMapR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"IBLMap\";\n\taddAttr -is true -ci true -sn \"IBLMapG\" -ln \"IBLMapG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"IBLMap\";\n\taddAttr -is true -ci true -sn \"IBLMapB\" -ln \"IBLMapB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"IBLMap\";\n\taddAttr -is true -ci true -h true -sn \"TransDepthTexture_Name\" -ln \"TransDepthTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"TransDepthTexture_Type\" -ln \"TransDepthTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"TransDepthTexture\" -ln \"TransDepthTexture\" \n\t\t-nn \"TransDepthTexture\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"TransDepthTextureR\" -ln \"TransDepthTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"TransDepthTexture\";\n\taddAttr -is true -ci true -sn \"TransDepthTextureG\" -ln \"TransDepthTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"TransDepthTexture\";\n\taddAttr -is true -ci true -sn \"TransDepthTextureB\" -ln \"TransDepthTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"TransDepthTexture\";\n\taddAttr -is true -ci true -h true -sn \"OpaqueDepthTexture_Name\" -ln \"OpaqueDepthTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"OpaqueDepthTexture_Type\" -ln \"OpaqueDepthTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"OpaqueDepthTexture\" -ln \"OpaqueDepthTexture\" \n\t\t-nn \"OpaqueDepthTexture\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"OpaqueDepthTextureR\" -ln \"OpaqueDepthTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"OpaqueDepthTexture\";\n\taddAttr -is true -ci true -sn \"OpaqueDepthTextureG\" -ln \"OpaqueDepthTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"OpaqueDepthTexture\";\n\taddAttr -is true -ci true -sn \"OpaqueDepthTextureB\" -ln \"OpaqueDepthTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"OpaqueDepthTexture\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_Name\" -ln \"Ambient_Emissive_Map_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_Type\" -ln \"Ambient_Emissive_Map_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Ambient_Emissive_Map\" -ln \"Ambient_Emissive_Map\" \n\t\t-nn \"Ambient Emissive Map\" -ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_AO_Name\" -ln \"Ambient_Emissive_Map_AO_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_AO_Type\" -ln \"Ambient_Emissive_Map_AO_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Ambient_Emissive_Map_AO\" -ln \"Ambient_Emissive_Map_AO\" \n\t\t-nn \"Ambient Emissive Map AO\" -ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_1_Name\" -ln \"Ambient_Emissive_Map_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_1_Type\" -ln \"Ambient_Emissive_Map_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Ambient_Emissive_Map_1\" -ln \"Ambient_Emissive_Map_1\" \n\t\t-nn \"Ambient Emissive Map\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Ambient_Emissive_Map_1R\" -ln \"Ambient_Emissive_Map_1R\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Ambient_Emissive_Map_1\";\n\taddAttr -is true -ci true -sn \"Ambient_Emissive_Map_1G\" -ln \"Ambient_Emissive_Map_1G\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Ambient_Emissive_Map_1\";\n\taddAttr -is true -ci true -sn \"Ambient_Emissive_Map_1B\" -ln \"Ambient_Emissive_Map_1B\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Ambient_Emissive_Map_1\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Sky_Color_Name\" -ln \"Ambient_Sky_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Sky_Color_Type\" -ln \"Ambient_Sky_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Ambient_Sky_Color\" -ln \"Ambient_Sky_Color\" -nn \"Ambient Sky Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Ambient_Sky_ColorR\" -ln \"Ambient_Sky_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"Ambient_Sky_Color\";\n\taddAttr -is true -ci true -sn \"Ambient_Sky_ColorG\" -ln \"Ambient_Sky_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"Ambient_Sky_Color\";\n\taddAttr -is true -ci true -sn \"Ambient_Sky_ColorB\" -ln \"Ambient_Sky_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"Ambient_Sky_Color\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Ground_Color_Name\" -ln \"Ambient_Ground_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Ground_Color_Type\" -ln \"Ambient_Ground_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Ambient_Ground_Color\" -ln \"Ambient_Ground_Color\" \n\t\t-nn \"Ambient Ground Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Ambient_Ground_ColorR\" -ln \"Ambient_Ground_ColorR\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"float\" -p \"Ambient_Ground_Color\";\n\taddAttr -is true -ci true -sn \"Ambient_Ground_ColorG\" -ln \"Ambient_Ground_ColorG\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"float\" -p \"Ambient_Ground_Color\";\n\taddAttr -is true -ci true -sn \"Ambient_Ground_ColorB\" -ln \"Ambient_Ground_ColorB\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"float\" -p \"Ambient_Ground_Color\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_Name\" -ln \"Diffuse_Map_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_Type\" -ln \"Diffuse_Map_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Diffuse_Map\" -ln \"Diffuse_Map\" -nn \"Diffuse Map\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_Alpha_Name\" -ln \"Diffuse_Map_Alpha_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_Alpha_Type\" -ln \"Diffuse_Map_Alpha_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Diffuse_Map_Alpha\" -ln \"Diffuse_Map_Alpha\" -nn \"Diffuse Map Alpha\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_1_Name\" -ln \"Diffuse_Map_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_1_Type\" -ln \"Diffuse_Map_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Diffuse_Map_1\" -ln \"Diffuse_Map_1\" -nn \"Diffuse Map\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Diffuse_Map_1R\" -ln \"Diffuse_Map_1R\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Diffuse_Map_1\";\n\taddAttr -is true -ci true -sn \"Diffuse_Map_1G\" -ln \"Diffuse_Map_1G\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Diffuse_Map_1\";\n\taddAttr -is true -ci true -sn \"Diffuse_Map_1B\" -ln \"Diffuse_Map_1B\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Diffuse_Map_1\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Color_Name\" -ln \"Diffuse_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Color_Type\" -ln \"Diffuse_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Diffuse_Color\" -ln \"Diffuse_Color\" -nn \"Diffuse Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Diffuse_ColorR\" -ln \"Diffuse_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.56099998950958252 -min 0 -max 1 -at \"float\" -p \"Diffuse_Color\";\n\taddAttr -is true -ci true -sn \"Diffuse_ColorG\" -ln \"Diffuse_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.56099998950958252 -min 0 -max 1 -at \"float\" -p \"Diffuse_Color\";\n\taddAttr -is true -ci true -sn \"Diffuse_ColorB\" -ln \"Diffuse_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.56099998950958252 -min 0 -max 1 -at \"float\" -p \"Diffuse_Color\";\n\taddAttr -is true -ci true -h true -sn \"Opacity_Name\" -ln \"Opacity_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Opacity_Type\" -ln \"Opacity_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -sn \"Opacity\" -ln \"Opacity\" -nn \"Opacity\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_Name\" -ln \"Specular_Map_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_Type\" -ln \"Specular_Map_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Specular_Map\" -ln \"Specular_Map\" -nn \"Specular Map\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_1_Name\" -ln \"Specular_Map_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_1_Type\" -ln \"Specular_Map_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Specular_Map_1\" -ln \"Specular_Map_1\" -nn \"Specular Map\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_2_Name\" -ln \"Specular_Map_2_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_2_Type\" -ln \"Specular_Map_2_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Specular_Map_2\" -ln \"Specular_Map_2\" -nn \"Specular Map\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Specular_Map_2R\" -ln \"Specular_Map_2R\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Specular_Map_2\";\n\taddAttr -is true -ci true -sn \"Specular_Map_2G\" -ln \"Specular_Map_2G\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Specular_Map_2\";\n\taddAttr -is true -ci true -sn \"Specular_Map_2B\" -ln \"Specular_Map_2B\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Specular_Map_2\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Color_Name\" -ln \"Specular_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Color_Type\" -ln \"Specular_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Specular_Color\" -ln \"Specular_Color\" -nn \"Specular Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Specular_ColorR\" -ln \"Specular_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Specular_Color\";\n\taddAttr -is true -ci true -sn \"Specular_ColorG\" -ln \"Specular_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Specular_Color\";\n\taddAttr -is true -ci true -sn \"Specular_ColorB\" -ln \"Specular_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Specular_Color\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Power_Name\" -ln \"Specular_Power_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Power_Type\" -ln \"Specular_Power_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Specular_Power\" -ln \"Specular_Power\" -nn \"Specular Power\" \n\t\t-ct \"HW_shader_parameter\" -dv 20 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Map_Name\" -ln \"Normal_Map_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Map_Type\" -ln \"Normal_Map_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -sn \"Normal_Map\" -ln \"Normal_Map\" -nn \"Normal Map\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Map_1_Name\" -ln \"Normal_Map_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Map_1_Type\" -ln \"Normal_Map_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Normal_Map_1\" -ln \"Normal_Map_1\" -nn \"Normal Map\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Normal_Map_1R\" -ln \"Normal_Map_1R\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Normal_Map_1\";\n\taddAttr -is true -ci true -sn \"Normal_Map_1G\" -ln \"Normal_Map_1G\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Normal_Map_1\";\n\taddAttr -is true -ci true -sn \"Normal_Map_1B\" -ln \"Normal_Map_1B\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Normal_Map_1\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Height_Name\" -ln \"Normal_Height_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Height_Type\" -ln \"Normal_Height_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Normal_Height\" -ln \"Normal_Height\" -nn \"Normal Height\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Intensity_Name\" -ln \"Reflection_Intensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Intensity_Type\" -ln \"Reflection_Intensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Reflection_Intensity\" -ln \"Reflection_Intensity\" \n\t\t-nn \"Reflection Intensity\" -ct \"HW_shader_parameter\" -dv 0.5 -min 0 -max 99 -smn \n\t\t0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Blur_Name\" -ln \"Reflection_Blur_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Blur_Type\" -ln \"Reflection_Blur_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Reflection_Blur\" -ln \"Reflection_Blur\" -nn \"Reflection Blur\" \n\t\t-ct \"HW_shader_parameter\" -dv 5 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Mask_Name\" -ln \"Reflection_Mask_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Mask_Type\" -ln \"Reflection_Mask_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Reflection_Mask\" -ln \"Reflection_Mask\" -nn \"Reflection Mask\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Mask_1_Name\" -ln \"Reflection_Mask_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Mask_1_Type\" -ln \"Reflection_Mask_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Reflection_Mask_1\" -ln \"Reflection_Mask_1\" -nn \"Reflection Mask\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Reflection_Mask_1R\" -ln \"Reflection_Mask_1R\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Reflection_Mask_1\";\n\taddAttr -is true -ci true -sn \"Reflection_Mask_1G\" -ln \"Reflection_Mask_1G\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Reflection_Mask_1\";\n\taddAttr -is true -ci true -sn \"Reflection_Mask_1B\" -ln \"Reflection_Mask_1B\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Reflection_Mask_1\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Map_Name\" -ln \"Displacement_Map_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Map_Type\" -ln \"Displacement_Map_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Displacement_Map\" -ln \"Displacement_Map\" -nn \"Displacement Map\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Displacement_MapR\" -ln \"Displacement_MapR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Displacement_Map\";\n\taddAttr -is true -ci true -sn \"Displacement_MapG\" -ln \"Displacement_MapG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Displacement_Map\";\n\taddAttr -is true -ci true -sn \"Displacement_MapB\" -ln \"Displacement_MapB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Displacement_Map\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Height_Name\" -ln \"Displacement_Height_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Height_Type\" -ln \"Displacement_Height_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Displacement_Height\" -ln \"Displacement_Height\" -nn \"Displacement Height\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 999 -smn 0 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Offset_Name\" -ln \"Displacement_Offset_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Offset_Type\" -ln \"Displacement_Offset_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Displacement_Offset\" -ln \"Displacement_Offset\" -nn \"Displacement Offset\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -min -99 -max 99 -smn -10 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Clipping_Bias_Name\" -ln \"Displacement_Clipping_Bias_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Clipping_Bias_Type\" -ln \"Displacement_Clipping_Bias_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Displacement_Clipping_Bias\" -ln \"Displacement_Clipping_Bias\" \n\t\t-nn \"Displacement Clipping Bias\" -ct \"HW_shader_parameter\" -dv 5 -min 0 -max 99 -smn \n\t\t0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Bounding_Box_Extra_Scale_Name\" -ln \"Bounding_Box_Extra_Scale_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Bounding_Box_Extra_Scale_Type\" -ln \"Bounding_Box_Extra_Scale_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Bounding_Box_Extra_Scale\" -ln \"Bounding_Box_Extra_Scale\" \n\t\t-nn \"Bounding Box Extra Scale\" -ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -smn \n\t\t1 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Tessellation_Range_Name\" -ln \"Tessellation_Range_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Tessellation_Range_Type\" -ln \"Tessellation_Range_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Tessellation_Range\" -ln \"Tessellation_Range\" -nn \"Tessellation Range\" \n\t\t-ct \"HW_shader_parameter\" -dv 100 -min 0 -max 9999 -smn 0 -smx 9999 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Flat_Tessellation_Name\" -ln \"Flat_Tessellation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Flat_Tessellation_Type\" -ln \"Flat_Tessellation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Flat_Tessellation\" -ln \"Flat_Tessellation\" -nn \"Flat Tessellation\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Mask_Name\" -ln \"Thickness_Mask_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Mask_Type\" -ln \"Thickness_Mask_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Thickness_Mask\" -ln \"Thickness_Mask\" -nn \"Thickness Mask\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Mask_1_Name\" -ln \"Thickness_Mask_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Mask_1_Type\" -ln \"Thickness_Mask_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Thickness_Mask_1\" -ln \"Thickness_Mask_1\" -nn \"Thickness Mask\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Thickness_Mask_1R\" -ln \"Thickness_Mask_1R\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Thickness_Mask_1\";\n\taddAttr -is true -ci true -sn \"Thickness_Mask_1G\" -ln \"Thickness_Mask_1G\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Thickness_Mask_1\";\n\taddAttr -is true -ci true -sn \"Thickness_Mask_1B\" -ln \"Thickness_Mask_1B\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Thickness_Mask_1\";\n\taddAttr -is true -ci true -h true -sn \"Light_Translucent_Distortion_Name\" -ln \"Light_Translucent_Distortion_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_Translucent_Distortion_Type\" -ln \"Light_Translucent_Distortion_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_Translucent_Distortion\" -ln \"Light_Translucent_Distortion\" \n\t\t-nn \"Light Translucent Distortion\" -ct \"HW_shader_parameter\" -dv 0.20000000298023224 \n\t\t-min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_Translucent_Power_Name\" -ln \"Light_Translucent_Power_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_Translucent_Power_Type\" -ln \"Light_Translucent_Power_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_Translucent_Power\" -ln \"Light_Translucent_Power\" \n\t\t-nn \"Light Translucent Power\" -ct \"HW_shader_parameter\" -dv 3 -min 0 -max 99 -smn \n\t\t0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Translucent_Minimum_Name\" -ln \"Translucent_Minimum_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Translucent_Minimum_Type\" -ln \"Translucent_Minimum_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Translucent_Minimum\" -ln \"Translucent_Minimum\" -nn \"Translucent Minimum\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Outer_Translucent_Color_Name\" -ln \"Outer_Translucent_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Outer_Translucent_Color_Type\" -ln \"Outer_Translucent_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Outer_Translucent_Color\" -ln \"Outer_Translucent_Color\" \n\t\t-nn \"Outer Translucent Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Outer_Translucent_ColorX\" -ln \"Outer_Translucent_ColorX\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"float\" -p \"Outer_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Outer_Translucent_ColorY\" -ln \"Outer_Translucent_ColorY\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.63999998569488525 -min 0 -max 1 -at \"float\" -p \"Outer_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Outer_Translucent_ColorZ\" -ln \"Outer_Translucent_ColorZ\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.25 -min 0 -max 1 -at \"float\" -p \"Outer_Translucent_Color\";\n\taddAttr -is true -ci true -h true -sn \"Medium_Translucent_Color_Name\" -ln \"Medium_Translucent_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Medium_Translucent_Color_Type\" -ln \"Medium_Translucent_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Medium_Translucent_Color\" -ln \"Medium_Translucent_Color\" \n\t\t-nn \"Medium Translucent Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Medium_Translucent_ColorX\" -ln \"Medium_Translucent_ColorX\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"float\" -p \"Medium_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Medium_Translucent_ColorY\" -ln \"Medium_Translucent_ColorY\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.20999999344348907 -min 0 -max 1 -at \"float\" -p \"Medium_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Medium_Translucent_ColorZ\" -ln \"Medium_Translucent_ColorZ\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.14000000059604645 -min 0 -max 1 -at \"float\" -p \"Medium_Translucent_Color\";\n\taddAttr -is true -ci true -h true -sn \"Inner_Translucent_Color_Name\" -ln \"Inner_Translucent_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Inner_Translucent_Color_Type\" -ln \"Inner_Translucent_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Inner_Translucent_Color\" -ln \"Inner_Translucent_Color\" \n\t\t-nn \"Inner Translucent Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Inner_Translucent_ColorX\" -ln \"Inner_Translucent_ColorX\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.25 -min 0 -max 1 -at \"float\" -p \"Inner_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Inner_Translucent_ColorY\" -ln \"Inner_Translucent_ColorY\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.05000000074505806 -min 0 -max 1 -at \"float\" -p \"Inner_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Inner_Translucent_ColorZ\" -ln \"Inner_Translucent_ColorZ\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.019999999552965164 -min 0 -max 1 -at \"float\" -p \"Inner_Translucent_Color\";\n\taddAttr -ci true -sn \"Light_0_use_implicit_lighting\" -ln \"Light_0_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_0_connected_light\" -ln \"Light_0_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_1_use_implicit_lighting\" -ln \"Light_1_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_1_connected_light\" -ln \"Light_1_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_2_use_implicit_lighting\" -ln \"Light_2_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_2_connected_light\" -ln \"Light_2_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Position\" -ln \"Position\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Position_Name\" -ln \"Position_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"Position_Source\" -ln \"Position_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -sn \"Position_DefaultTexture\" -ln \"Position_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Position\";\n\taddAttr -ci true -sn \"Normal\" -ln \"Normal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Normal_Name\" -ln \"Normal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Source\" -ln \"Normal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -sn \"Normal_DefaultTexture\" -ln \"Normal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Normal\";\n\taddAttr -ci true -sn \"Tangent\" -ln \"Tangent\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Tangent_Name\" -ln \"Tangent_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"Tangent_Source\" -ln \"Tangent_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -sn \"Tangent_DefaultTexture\" -ln \"Tangent_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Tangent\";\n\taddAttr -ci true -sn \"Binormal\" -ln \"Binormal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Binormal_Name\" -ln \"Binormal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -h true -sn \"Binormal_Source\" -ln \"Binormal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -sn \"Binormal_DefaultTexture\" -ln \"Binormal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Binormal\";\n\taddAttr -ci true -sn \"TexCoord0\" -ln \"TexCoord0\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Name\" -ln \"TexCoord0_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Source\" -ln \"TexCoord0_Source\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -sn \"TexCoord0_DefaultTexture\" -ln \"TexCoord0_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -s false -is true -ci true -k true -sn \"te\" -ln \"techniqueEnum\" -nn \"Technique\" \n\t\t-min 0 -max 0 -en \"T0\" -at \"enum\";\n\taddAttr -is true -ci true -h true -sn \"DepthRange_Name\" -ln \"DepthRange_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"DepthRange_Type\" -ln \"DepthRange_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"DepthRange\" -ln \"DepthRange\" -ct \"HW_shader_parameter\" \n\t\t-dv 100000 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"PointLight0ShadowMap_Name\" -ln \"PointLight0ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"PointLight0ShadowMap_Type\" -ln \"PointLight0ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"PointLight0ShadowMap\" -ln \"PointLight0ShadowMap\" \n\t\t-nn \"PointLight0ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"PointLight0ShadowMapR\" -ln \"PointLight0ShadowMapR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight0ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight0ShadowMapG\" -ln \"PointLight0ShadowMapG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight0ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight0ShadowMapB\" -ln \"PointLight0ShadowMapB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight0ShadowMap\";\n\taddAttr -is true -ci true -h true -sn \"PointLight1ShadowMap_Name\" -ln \"PointLight1ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"PointLight1ShadowMap_Type\" -ln \"PointLight1ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"PointLight1ShadowMap\" -ln \"PointLight1ShadowMap\" \n\t\t-nn \"PointLight1ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"PointLight1ShadowMapR\" -ln \"PointLight1ShadowMapR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight1ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight1ShadowMapG\" -ln \"PointLight1ShadowMapG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight1ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight1ShadowMapB\" -ln \"PointLight1ShadowMapB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight1ShadowMap\";\n\taddAttr -is true -ci true -h true -sn \"PointLight2ShadowMap_Name\" -ln \"PointLight2ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"PointLight2ShadowMap_Type\" -ln \"PointLight2ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"PointLight2ShadowMap\" -ln \"PointLight2ShadowMap\" \n\t\t-nn \"PointLight2ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"PointLight2ShadowMapR\" -ln \"PointLight2ShadowMapR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight2ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight2ShadowMapG\" -ln \"PointLight2ShadowMapG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight2ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight2ShadowMapB\" -ln \"PointLight2ShadowMapB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight2ShadowMap\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_ShadowBias_Name\" -ln \"Light_0_ShadowBias_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_ShadowBias_Type\" -ln \"Light_0_ShadowBias_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_ShadowBias\" -ln \"Light_0_ShadowBias\" \n\t\t-nn \"Light 0 ShadowBias\" -ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_ShadowBias_Name\" -ln \"Light_1_ShadowBias_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_ShadowBias_Type\" -ln \"Light_1_ShadowBias_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_ShadowBias\" -ln \"Light_1_ShadowBias\" \n\t\t-nn \"Light 1 ShadowBias\" -ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_ShadowBias_Name\" -ln \"Light_2_ShadowBias_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_ShadowBias_Type\" -ln \"Light_2_ShadowBias_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_ShadowBias\" -ln \"Light_2_ShadowBias\" \n\t\t-nn \"Light 2 ShadowBias\" -ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\tsetAttr \".vpar\" -type \"stringArray\" 5 \"Position\" \"Normal\" \"Tangent\" \"Binormal\" \"TexCoord0\"  ;\n\tsetAttr \".upar\" -type \"stringArray\" 97 \"MayaHwFogEnabled\" \"MayaHwFogMode\" \"MayaHwFogStart\" \"MayaHwFogEnd\" \"MayaHwFogDensity\" \"MayaHwFogColor\" \"DepthRange\" \"Clamp_Dynamic_Lights\" \"IsSwatchRender\" \"Tessellation_Maximum\" \"Surface_Mask_Cutoff\" \"Thickness\" \"ReflectionRotation\" \"EmissiveStrength\" \"IBLRotation\" \"IBLBlur\" \"IBLIntensity\" \"Light_0_Type\" \"Light_1_Type\" \"Light_2_Type\" \"Light_0_Color\" \"Light_1_Color\" \"Light_2_Color\" \"Light_0_Intensity\" \"Light_1_Intensity\" \"Light_2_Intensity\" \"Light_0_Position\" \"Light_1_Position\" \"Light_2_Position\" \"Light_0_Direction\" \"Light_1_Direction\" \"Light_2_Direction\" \"Light_0_Decay\" \"Light_1_Decay\" \"Light_2_Decay\" \"Light_0_Cone_Angle\" \"Light_1_Cone_Angle\" \"Light_2_Cone_Angle\" \"Light_0_Penumbra_Angle\" \"Light_1_Penumbra_Angle\" \"Light_2_Penumbra_Angle\" \"Light_0_Casts_Shadow\" \"Light_1_Casts_Shadow\" \"Light_2_Casts_Shadow\" \"Light_0_ShadowBias\" \"Light_1_ShadowBias\" \"Light_2_ShadowBias\" \"Light_0_Shadow_Color\" \"Light_1_Shadow_Color\" \"Light_2_Shadow_Color\" \"Surface_Mask\" \"light0ShadowMap\" \"PointLight0ShadowMap\" \"light1ShadowMap\" \"PointLight1ShadowMap\" \"light2ShadowMap\" \"PointLight2ShadowMap\" \"IBLMap\" \"TransDepthTexture\" \"OpaqueDepthTexture\" \"Ambient_Emissive_Map\" \"Ambient_Emissive_Map_AO\" \"Ambient_Emissive_Map_1\" \"Ambient_Sky_Color\" \"Ambient_Ground_Color\" \"Diffuse_Map\" \"Diffuse_Map_Alpha\" \"Diffuse_Map_1\" \"Diffuse_Color\" \"Opacity\" \"Specular_Map\" \"Specular_Map_1\" \"Specular_Map_2\" \"Specular_Color\" \"Specular_Power\" \"Normal_Map\" \"Normal_Map_1\" \"Normal_Height\" \"Reflection_Intensity\" \"Reflection_Blur\" \"Reflection_Mask\" \"Reflection_Mask_1\" \"Displacement_Map\" \"Displacement_Height\" \"Displacement_Offset\" \"Displacement_Clipping_Bias\" \"Bounding_Box_Extra_Scale\" \"Tessellation_Range\" \"Flat_Tessellation\" \"Thickness_Mask\" \"Thickness_Mask_1\" \"Light_Translucent_Distortion\" \"Light_Translucent_Power\" \"Translucent_Minimum\" \"Outer_Translucent_Color\" \"Medium_Translucent_Color\" \"Inner_Translucent_Color\"  ;\n\tsetAttr \".s\" -type \"string\" \"AutodeskUberShader.ogsfx\";\n\tsetAttr \".t\" -type \"string\" \"T0\";\n\tsetAttr \".MayaHwFogEnabled_Name\" -type \"string\" \"MayaHwFogEnabled\";\n\tsetAttr \".MayaHwFogEnabled_Type\" -type \"string\" \"bool\";\n\tsetAttr \".MayaHwFogEnabled\" no;\n\tsetAttr \".MayaHwFogMode_Name\" -type \"string\" \"MayaHwFogMode\";\n\tsetAttr \".MayaHwFogMode_Type\" -type \"string\" \"int\";\n\tsetAttr \".MayaHwFogMode\" 0;\n\tsetAttr \".MayaHwFogStart_Name\" -type \"string\" \"MayaHwFogStart\";\n\tsetAttr \".MayaHwFogStart_Type\" -type \"string\" \"float\";\n\tsetAttr \".MayaHwFogStart\" 0;\n\tsetAttr \".MayaHwFogEnd_Name\" -type \"string\" \"MayaHwFogEnd\";\n\tsetAttr \".MayaHwFogEnd_Type\" -type \"string\" \"float\";\n\tsetAttr \".MayaHwFogEnd\" 100;\n\tsetAttr \".MayaHwFogDensity_Name\" -type \"string\" \"MayaHwFogDensity\";\n\tsetAttr \".MayaHwFogDensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".MayaHwFogDensity\" 0.10000000149011612;\n\tsetAttr \".MayaHwFogColor_Name\" -type \"string\" \"MayaHwFogColor\";\n\tsetAttr \".MayaHwFogColor_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".MayaHwFogColorXYZ\" -type \"float3\" 0.5 0.5 0.5 ;\n\tsetAttr \".MayaHwFogColorW\" 1;\n\tsetAttr \".Clamp_Dynamic_Lights_Name\" -type \"string\" \"Clamp_Dynamic_Lights\";\n\tsetAttr \".Clamp_Dynamic_Lights_Type\" -type \"string\" \"int\";\n\tsetAttr \".Clamp_Dynamic_Lights\" 99;\n\tsetAttr \".IsSwatchRender_Name\" -type \"string\" \"IsSwatchRender\";\n\tsetAttr \".IsSwatchRender_Type\" -type \"string\" \"bool\";\n\tsetAttr \".IsSwatchRender\" no;\n\tsetAttr \".Tessellation_Maximum_Name\" -type \"string\" \"Tessellation_Maximum\";\n\tsetAttr \".Tessellation_Maximum_Type\" -type \"string\" \"float\";\n\tsetAttr \".Tessellation_Maximum\" 1;\n\tsetAttr \".Surface_Mask_Cutoff_Name\" -type \"string\" \"Surface_Mask_Cutoff\";\n\tsetAttr \".Surface_Mask_Cutoff_Type\" -type \"string\" \"float\";\n\tsetAttr \".Surface_Mask_Cutoff\" 0;\n\tsetAttr \".Thickness_Name\" -type \"string\" \"Thickness\";\n\tsetAttr \".Thickness_Type\" -type \"string\" \"float\";\n\tsetAttr \".Thickness\" 1;\n\tsetAttr \".ReflectionRotation_Name\" -type \"string\" \"ReflectionRotation\";\n\tsetAttr \".ReflectionRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".ReflectionRotation\" 360;\n\tsetAttr \".EmissiveStrength_Name\" -type \"string\" \"EmissiveStrength\";\n\tsetAttr \".EmissiveStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".EmissiveStrength\" 1;\n\tsetAttr \".IBLRotation_Name\" -type \"string\" \"IBLRotation\";\n\tsetAttr \".IBLRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".IBLRotation\" 360;\n\tsetAttr \".IBLBlur_Name\" -type \"string\" \"IBLBlur\";\n\tsetAttr \".IBLBlur_Type\" -type \"string\" \"float\";\n\tsetAttr \".IBLBlur\" 5;\n\tsetAttr \".IBLIntensity_Name\" -type \"string\" \"IBLIntensity\";\n\tsetAttr \".IBLIntensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".IBLIntensity\" 1;\n\tsetAttr \".Light_0_Type_Name\" -type \"string\" \"Light_0_Type\";\n\tsetAttr \".Light_0_Type_Type\" -type \"string\" \"int\";\n\tsetAttr \".Light_0_Type\" 4;\n\tsetAttr \".Light_1_Type_Name\" -type \"string\" \"Light_1_Type\";\n\tsetAttr \".Light_1_Type_Type\" -type \"string\" \"int\";\n\tsetAttr \".Light_1_Type\" 4;\n\tsetAttr \".Light_2_Type_Name\" -type \"string\" \"Light_2_Type\";\n\tsetAttr \".Light_2_Type_Type\" -type \"string\" \"int\";\n\tsetAttr \".Light_2_Type\" 3;\n\tsetAttr \".Light_0_Color_Name\" -type \"string\" \"Light_0_Color\";\n\tsetAttr \".Light_0_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr -l on \".Light_0_Color\" -type \"float3\" 0 1 0.14129999 ;\n\tsetAttr -l on \".Light_0_Color\";\n\tsetAttr \".Light_1_Color_Name\" -type \"string\" \"Light_1_Color\";\n\tsetAttr \".Light_1_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr -l on \".Light_1_Color\" -type \"float3\" 1 0 0.1514 ;\n\tsetAttr -l on \".Light_1_Color\";\n\tsetAttr \".Light_2_Color_Name\" -type \"string\" \"Light_2_Color\";\n\tsetAttr \".Light_2_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".Light_2_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Light_0_Intensity_Name\" -type \"string\" \"Light_0_Intensity\";\n\tsetAttr \".Light_0_Intensity_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_0_Intensity\" 1;\n\tsetAttr \".Light_1_Intensity_Name\" -type \"string\" \"Light_1_Intensity\";\n\tsetAttr \".Light_1_Intensity_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_1_Intensity\" 1;\n\tsetAttr \".Light_2_Intensity_Name\" -type \"string\" \"Light_2_Intensity\";\n\tsetAttr \".Light_2_Intensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".Light_2_Intensity\" 0;\n\tsetAttr \".Light_0_Position_Name\" -type \"string\" \"Light_0_Position\";\n\tsetAttr \".Light_0_Position_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr -l on \".Light_0_Position\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 1 1 1 1;\n\tsetAttr \".Light_1_Position_Name\" -type \"string\" \"Light_1_Position\";\n\tsetAttr \".Light_1_Position_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr -l on \".Light_1_Position\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 1 1 1 1;\n\tsetAttr \".Light_2_Position_Name\" -type \"string\" \"Light_2_Position\";\n\tsetAttr \".Light_2_Position_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr \".Light_2_Position\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 1 1 1 1;\n\tsetAttr \".Light_0_Direction_Name\" -type \"string\" \"Light_0_Direction\";\n\tsetAttr \".Light_0_Direction_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr -l on \".Light_0_Direction\" -type \"matrix\" 1 0 0 0 0 1 0 0 -0.14622309803962708 0.80383044481277466 0.57660681009292603 0\n\t\t 0 0 0 1;\n\tsetAttr \".Light_1_Direction_Name\" -type \"string\" \"Light_1_Direction\";\n\tsetAttr \".Light_1_Direction_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr -l on \".Light_1_Direction\" -type \"matrix\" 1 0 0 0 0 1 0 0 -0.90581142902374268 0.25502690672874451 -0.33832964301109314 0\n\t\t 0 0 0 1;\n\tsetAttr \".Light_2_Direction_Name\" -type \"string\" \"Light_2_Direction\";\n\tsetAttr \".Light_2_Direction_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr \".Light_2_Direction\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1;\n\tsetAttr \".Light_0_Decay_Name\" -type \"string\" \"Light_0_Decay\";\n\tsetAttr \".Light_0_Decay_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_0_Decay\" 0;\n\tsetAttr \".Light_1_Decay_Name\" -type \"string\" \"Light_1_Decay\";\n\tsetAttr \".Light_1_Decay_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_1_Decay\" 0;\n\tsetAttr \".Light_2_Decay_Name\" -type \"string\" \"Light_2_Decay\";\n\tsetAttr \".Light_2_Decay_Type\" -type \"string\" \"float\";\n\tsetAttr \".Light_2_Decay\" 0;\n\tsetAttr \".Light_0_Cone_Angle_Name\" -type \"string\" \"Light_0_Cone_Angle\";\n\tsetAttr \".Light_0_Cone_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_0_Cone_Angle\" 0.46000000834465027;\n\tsetAttr \".Light_1_Cone_Angle_Name\" -type \"string\" \"Light_1_Cone_Angle\";\n\tsetAttr \".Light_1_Cone_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_1_Cone_Angle\" 0.46000000834465027;\n\tsetAttr \".Light_2_Cone_Angle_Name\" -type \"string\" \"Light_2_Cone_Angle\";\n\tsetAttr \".Light_2_Cone_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr \".Light_2_Cone_Angle\" 0.46000000834465027;\n\tsetAttr \".Light_0_Penumbra_Angle_Name\" -type \"string\" \"Light_0_Penumbra_Angle\";\n\tsetAttr \".Light_0_Penumbra_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_0_Penumbra_Angle\" 0.69999998807907104;\n\tsetAttr \".Light_1_Penumbra_Angle_Name\" -type \"string\" \"Light_1_Penumbra_Angle\";\n\tsetAttr \".Light_1_Penumbra_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_1_Penumbra_Angle\" 0.69999998807907104;\n\tsetAttr \".Light_2_Penumbra_Angle_Name\" -type \"string\" \"Light_2_Penumbra_Angle\";\n\tsetAttr \".Light_2_Penumbra_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr \".Light_2_Penumbra_Angle\" 0.69999998807907104;\n\tsetAttr \".Light_0_Casts_Shadow_Name\" -type \"string\" \"Light_0_Casts_Shadow\";\n\tsetAttr \".Light_0_Casts_Shadow_Type\" -type \"string\" \"bool\";\n\tsetAttr -l on \".Light_0_Casts_Shadow\" no;\n\tsetAttr \".Light_1_Casts_Shadow_Name\" -type \"string\" \"Light_1_Casts_Shadow\";\n\tsetAttr \".Light_1_Casts_Shadow_Type\" -type \"string\" \"bool\";\n\tsetAttr -l on \".Light_1_Casts_Shadow\" no;\n\tsetAttr \".Light_2_Casts_Shadow_Name\" -type \"string\" \"Light_2_Casts_Shadow\";\n\tsetAttr \".Light_2_Casts_Shadow_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Light_2_Casts_Shadow\" yes;\n\tsetAttr \".Light_0_Shadow_Color_Name\" -type \"string\" \"Light_0_Shadow_Color\";\n\tsetAttr \".Light_0_Shadow_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr -l on \".Light_0_Shadow_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr -l on \".Light_0_Shadow_Color\";\n\tsetAttr \".Light_1_Shadow_Color_Name\" -type \"string\" \"Light_1_Shadow_Color\";\n\tsetAttr \".Light_1_Shadow_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr -l on \".Light_1_Shadow_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr -l on \".Light_1_Shadow_Color\";\n\tsetAttr \".Light_2_Shadow_Color_Name\" -type \"string\" \"Light_2_Shadow_Color\";\n\tsetAttr \".Light_2_Shadow_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".Light_2_Shadow_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Surface_Mask_Name\" -type \"string\" \"Surface_Mask\";\n\tsetAttr \".Surface_Mask_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Surface_Mask\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".light0ShadowMap_Name\" -type \"string\" \"light0ShadowMap\";\n\tsetAttr \".light0ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".light0ShadowMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".light1ShadowMap_Name\" -type \"string\" \"light1ShadowMap\";\n\tsetAttr \".light1ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".light1ShadowMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".light2ShadowMap_Name\" -type \"string\" \"light2ShadowMap\";\n\tsetAttr \".light2ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".light2ShadowMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".IBLMap_Name\" -type \"string\" \"IBLMap\";\n\tsetAttr \".IBLMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".IBLMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".TransDepthTexture_Name\" -type \"string\" \"TransDepthTexture\";\n\tsetAttr \".TransDepthTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".TransDepthTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".OpaqueDepthTexture_Name\" -type \"string\" \"OpaqueDepthTexture\";\n\tsetAttr \".OpaqueDepthTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".OpaqueDepthTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Ambient_Emissive_Map_Name\" -type \"string\" \"Ambient_Emissive_Map\";\n\tsetAttr \".Ambient_Emissive_Map_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Ambient_Emissive_Map\" no;\n\tsetAttr \".Ambient_Emissive_Map_AO_Name\" -type \"string\" \"Ambient_Emissive_Map_AO\";\n\tsetAttr \".Ambient_Emissive_Map_AO_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Ambient_Emissive_Map_AO\" no;\n\tsetAttr \".Ambient_Emissive_Map_1_Name\" -type \"string\" \"Ambient_Emissive_Map\";\n\tsetAttr \".Ambient_Emissive_Map_1_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Ambient_Emissive_Map_1\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Ambient_Sky_Color_Name\" -type \"string\" \"Ambient_Sky_Color\";\n\tsetAttr \".Ambient_Sky_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".Ambient_Sky_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Ambient_Ground_Color_Name\" -type \"string\" \"Ambient_Ground_Color\";\n\tsetAttr \".Ambient_Ground_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".Ambient_Ground_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Diffuse_Map_Name\" -type \"string\" \"Diffuse_Map\";\n\tsetAttr \".Diffuse_Map_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Diffuse_Map\" no;\n\tsetAttr \".Diffuse_Map_Alpha_Name\" -type \"string\" \"Diffuse_Map_Alpha\";\n\tsetAttr \".Diffuse_Map_Alpha_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Diffuse_Map_Alpha\" no;\n\tsetAttr \".Diffuse_Map_1_Name\" -type \"string\" \"Diffuse_Map\";\n\tsetAttr \".Diffuse_Map_1_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Diffuse_Map_1\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Diffuse_Color_Name\" -type \"string\" \"Diffuse_Color\";\n\tsetAttr \".Diffuse_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".Diffuse_Color\" -type \"float3\" 0.56099999 0.56099999 0.56099999 ;\n\tsetAttr \".Opacity_Name\" -type \"string\" \"Opacity\";\n\tsetAttr \".Opacity_Type\" -type \"string\" \"float\";\n\tsetAttr \".Opacity\" 1;\n\tsetAttr \".Specular_Map_Name\" -type \"string\" \"Specular_Map\";\n\tsetAttr \".Specular_Map_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Specular_Map\" no;\n\tsetAttr \".Specular_Map_1_Name\" -type \"string\" \"Specular_Map\";\n\tsetAttr \".Specular_Map_1_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Specular_Map_1\" no;\n\tsetAttr \".Specular_Map_2_Name\" -type \"string\" \"Specular_Map\";\n\tsetAttr \".Specular_Map_2_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Specular_Map_2\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Specular_Color_Name\" -type \"string\" \"Specular_Color\";\n\tsetAttr \".Specular_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".Specular_Color\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".Specular_Power_Name\" -type \"string\" \"Specular_Power\";\n\tsetAttr \".Specular_Power_Type\" -type \"string\" \"float\";\n\tsetAttr \".Specular_Power\" 20;\n\tsetAttr \".Normal_Map_Name\" -type \"string\" \"Normal_Map\";\n\tsetAttr \".Normal_Map_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Normal_Map\" no;\n\tsetAttr \".Normal_Map_1_Name\" -type \"string\" \"Normal_Map\";\n\tsetAttr \".Normal_Map_1_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Normal_Map_1\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Normal_Height_Name\" -type \"string\" \"Normal_Height\";\n\tsetAttr \".Normal_Height_Type\" -type \"string\" \"float\";\n\tsetAttr \".Normal_Height\" 1;\n\tsetAttr \".Reflection_Intensity_Name\" -type \"string\" \"Reflection_Intensity\";\n\tsetAttr \".Reflection_Intensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".Reflection_Intensity\" 0.5;\n\tsetAttr \".Reflection_Blur_Name\" -type \"string\" \"Reflection_Blur\";\n\tsetAttr \".Reflection_Blur_Type\" -type \"string\" \"float\";\n\tsetAttr \".Reflection_Blur\" 5;\n\tsetAttr \".Reflection_Mask_Name\" -type \"string\" \"Reflection_Mask\";\n\tsetAttr \".Reflection_Mask_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Reflection_Mask\" no;\n\tsetAttr \".Reflection_Mask_1_Name\" -type \"string\" \"Reflection_Mask\";\n\tsetAttr \".Reflection_Mask_1_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Reflection_Mask_1\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Displacement_Map_Name\" -type \"string\" \"Displacement_Map\";\n\tsetAttr \".Displacement_Map_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Displacement_Map\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Displacement_Height_Name\" -type \"string\" \"Displacement_Height\";\n\tsetAttr \".Displacement_Height_Type\" -type \"string\" \"float\";\n\tsetAttr \".Displacement_Height\" 0;\n\tsetAttr \".Displacement_Offset_Name\" -type \"string\" \"Displacement_Offset\";\n\tsetAttr \".Displacement_Offset_Type\" -type \"string\" \"float\";\n\tsetAttr \".Displacement_Offset\" 0.5;\n\tsetAttr \".Displacement_Clipping_Bias_Name\" -type \"string\" \"Displacement_Clipping_Bias\";\n\tsetAttr \".Displacement_Clipping_Bias_Type\" -type \"string\" \"float\";\n\tsetAttr \".Displacement_Clipping_Bias\" 5;\n\tsetAttr \".Bounding_Box_Extra_Scale_Name\" -type \"string\" \"Bounding_Box_Extra_Scale\";\n\tsetAttr \".Bounding_Box_Extra_Scale_Type\" -type \"string\" \"float\";\n\tsetAttr \".Bounding_Box_Extra_Scale\" 1;\n\tsetAttr \".Tessellation_Range_Name\" -type \"string\" \"Tessellation_Range\";\n\tsetAttr \".Tessellation_Range_Type\" -type \"string\" \"float\";\n\tsetAttr \".Tessellation_Range\" 100;\n\tsetAttr \".Flat_Tessellation_Name\" -type \"string\" \"Flat_Tessellation\";\n\tsetAttr \".Flat_Tessellation_Type\" -type \"string\" \"float\";\n\tsetAttr \".Flat_Tessellation\" 0;\n\tsetAttr \".Thickness_Mask_Name\" -type \"string\" \"Thickness_Mask\";\n\tsetAttr \".Thickness_Mask_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Thickness_Mask\" no;\n\tsetAttr \".Thickness_Mask_1_Name\" -type \"string\" \"Thickness_Mask\";\n\tsetAttr \".Thickness_Mask_1_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Thickness_Mask_1\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Light_Translucent_Distortion_Name\" -type \"string\" \"Light_Translucent_Distortion\";\n\tsetAttr \".Light_Translucent_Distortion_Type\" -type \"string\" \"float\";\n\tsetAttr \".Light_Translucent_Distortion\" 0.20000000298023224;\n\tsetAttr \".Light_Translucent_Power_Name\" -type \"string\" \"Light_Translucent_Power\";\n\tsetAttr \".Light_Translucent_Power_Type\" -type \"string\" \"float\";\n\tsetAttr \".Light_Translucent_Power\" 3;\n\tsetAttr \".Translucent_Minimum_Name\" -type \"string\" \"Translucent_Minimum\";\n\tsetAttr \".Translucent_Minimum_Type\" -type \"string\" \"float\";\n\tsetAttr \".Translucent_Minimum\" 0;\n\tsetAttr \".Outer_Translucent_Color_Name\" -type \"string\" \"Outer_Translucent_Color\";\n\tsetAttr \".Outer_Translucent_Color_Type\" -type \"string\" \"float3x1\";\n\tsetAttr \".Outer_Translucent_Color\" -type \"float3\" 1 0.63999999 0.25 ;\n\tsetAttr \".Medium_Translucent_Color_Name\" -type \"string\" \"Medium_Translucent_Color\";\n\tsetAttr \".Medium_Translucent_Color_Type\" -type \"string\" \"float3x1\";\n\tsetAttr \".Medium_Translucent_Color\" -type \"float3\" 1 0.20999999 0.14 ;\n\tsetAttr \".Inner_Translucent_Color_Name\" -type \"string\" \"Inner_Translucent_Color\";\n\tsetAttr \".Inner_Translucent_Color_Type\" -type \"string\" \"float3x1\";\n\tsetAttr \".Inner_Translucent_Color\" -type \"float3\" 0.25 0.050000001 0.02 ;\n\tsetAttr \".Light_0_use_implicit_lighting\" no;\n\tsetAttr \".Light_1_use_implicit_lighting\" no;\n\tsetAttr \".Position_Name\" -type \"string\" \"Position\";\n\tsetAttr \".Position_Source\" -type \"string\" \"position\";\n\tsetAttr \".Normal_Name\" -type \"string\" \"Normal\";\n\tsetAttr \".Normal_Source\" -type \"string\" \"normal\";\n\tsetAttr \".Tangent_Name\" -type \"string\" \"Tangent\";\n\tsetAttr \".Tangent_Source\" -type \"string\" \"tangent:map1\";\n\tsetAttr \".Binormal_Name\" -type \"string\" \"Binormal\";\n\tsetAttr \".Binormal_Source\" -type \"string\" \"binormal:map1\";\n\tsetAttr \".TexCoord0_Name\" -type \"string\" \"TexCoord0\";\n\tsetAttr \".TexCoord0_Source\" -type \"string\" \"uv:map1\";\n\tsetAttr \".DepthRange_Name\" -type \"string\" \"DepthRange\";\n\tsetAttr \".DepthRange_Type\" -type \"string\" \"float\";\n\tsetAttr \".DepthRange\" 100000;\n\tsetAttr \".PointLight0ShadowMap_Name\" -type \"string\" \"PointLight0ShadowMap\";\n\tsetAttr \".PointLight0ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".PointLight0ShadowMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".PointLight1ShadowMap_Name\" -type \"string\" \"PointLight1ShadowMap\";\n\tsetAttr \".PointLight1ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".PointLight1ShadowMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".PointLight2ShadowMap_Name\" -type \"string\" \"PointLight2ShadowMap\";\n\tsetAttr \".PointLight2ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".PointLight2ShadowMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Light_0_ShadowBias_Name\" -type \"string\" \"Light_0_ShadowBias\";\n\tsetAttr \".Light_0_ShadowBias_Type\" -type \"string\" \"float\";\n\tsetAttr \".Light_0_ShadowBias\" 0;\n\tsetAttr \".Light_1_ShadowBias_Name\" -type \"string\" \"Light_1_ShadowBias\";\n\tsetAttr \".Light_1_ShadowBias_Type\" -type \"string\" \"float\";\n\tsetAttr \".Light_1_ShadowBias\" 0;\n\tsetAttr \".Light_2_ShadowBias_Name\" -type \"string\" \"Light_2_ShadowBias\";\n\tsetAttr \".Light_2_ShadowBias_Type\" -type \"string\" \"float\";\n\tsetAttr \".Light_2_ShadowBias\" 0;\ncreateNode shadingEngine -n \"GLSLShader2SG\";\n\trename -uid \"8B56255F-445D-0293-9E21-AFB0A3CE8B8C\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo5\";\n\trename -uid \"05895386-49A1-7F2E-AFFC-0A87DB0785CF\";\ncreateNode GLSLShader -n \"GLSLShader3\";\n\trename -uid \"B7E67C46-4400-216D-87FF-F1A1236255C6\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnabled_Name\" -ln \"MayaHwFogEnabled_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnabled_Type\" -ln \"MayaHwFogEnabled_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnabled\" -ln \"MayaHwFogEnabled\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogMode_Name\" -ln \"MayaHwFogMode_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogMode_Type\" -ln \"MayaHwFogMode_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogMode\" -ln \"MayaHwFogMode\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogStart_Name\" -ln \"MayaHwFogStart_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogStart_Type\" -ln \"MayaHwFogStart_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogStart\" -ln \"MayaHwFogStart\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnd_Name\" -ln \"MayaHwFogEnd_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnd_Type\" -ln \"MayaHwFogEnd_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogEnd\" -ln \"MayaHwFogEnd\" -ct \"HW_shader_parameter\" \n\t\t-dv 100 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogDensity_Name\" -ln \"MayaHwFogDensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogDensity_Type\" -ln \"MayaHwFogDensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogDensity\" -ln \"MayaHwFogDensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.10000000149011612 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogColor_Name\" -ln \"MayaHwFogColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogColor_Type\" -ln \"MayaHwFogColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"MayaHwFogColor\" -ln \"MayaHwFogColor\" -ct \"HW_shader_parameter\" \n\t\t-at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"MayaHwFogColorXYZ\" -ln \"MayaHwFogColorXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"MayaHwFogColor\" -nc 3;\n\taddAttr -is true -ci true -sn \"MayaHwFogColorX\" -ln \"MayaHwFogColorX\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.5 -smn 0 -smx 1 -at \"float\" -p \"MayaHwFogColorXYZ\";\n\taddAttr -is true -ci true -sn \"MayaHwFogColorY\" -ln \"MayaHwFogColorY\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.5 -smn 0 -smx 1 -at \"float\" -p \"MayaHwFogColorXYZ\";\n\taddAttr -is true -ci true -sn \"MayaHwFogColorZ\" -ln \"MayaHwFogColorZ\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.5 -smn 0 -smx 1 -at \"float\" -p \"MayaHwFogColorXYZ\";\n\taddAttr -is true -ci true -sn \"MayaHwFogColorW\" -ln \"MayaHwFogColorW\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -smn 0 -smx 1 -at \"float\" -p \"MayaHwFogColor\";\n\taddAttr -is true -ci true -h true -sn \"Clamp_Dynamic_Lights_Name\" -ln \"Clamp_Dynamic_Lights_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Clamp_Dynamic_Lights_Type\" -ln \"Clamp_Dynamic_Lights_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Clamp_Dynamic_Lights\" -ln \"Clamp_Dynamic_Lights\" \n\t\t-nn \"Clamp Dynamic Lights\" -ct \"HW_shader_parameter\" -dv 99 -min 0 -max 99 -smn 0 \n\t\t-smx 99 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"IsSwatchRender_Name\" -ln \"IsSwatchRender_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IsSwatchRender_Type\" -ln \"IsSwatchRender_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IsSwatchRender\" -ln \"IsSwatchRender\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Tessellation_Maximum_Name\" -ln \"Tessellation_Maximum_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Tessellation_Maximum_Type\" -ln \"Tessellation_Maximum_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Tessellation_Maximum\" -ln \"Tessellation_Maximum\" \n\t\t-nn \"Tessellation Maximum\" -ct \"HW_shader_parameter\" -dv 20 -min 0 -max 99 -smn 0 \n\t\t-smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Surface_Mask_Cutoff_Name\" -ln \"Surface_Mask_Cutoff_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Surface_Mask_Cutoff_Type\" -ln \"Surface_Mask_Cutoff_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Surface_Mask_Cutoff\" -ln \"Surface_Mask_Cutoff\" -nn \"Surface Mask Cutoff\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Name\" -ln \"Thickness_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Type\" -ln \"Thickness_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -sn \"Thickness\" -ln \"Thickness\" -nn \"Thickness\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"ReflectionRotation_Name\" -ln \"ReflectionRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"ReflectionRotation_Type\" -ln \"ReflectionRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"ReflectionRotation\" -ln \"ReflectionRotation\" -nn \"ReflectionRotation\" \n\t\t-ct \"HW_shader_parameter\" -dv 360 -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"EmissiveStrength_Name\" -ln \"EmissiveStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"EmissiveStrength_Type\" -ln \"EmissiveStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"EmissiveStrength\" -ln \"EmissiveStrength\" -nn \"EmissiveStrength\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"IBLRotation_Name\" -ln \"IBLRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IBLRotation_Type\" -ln \"IBLRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"IBLRotation\" -ln \"IBLRotation\" -nn \"IBLRotation\" \n\t\t-ct \"HW_shader_parameter\" -dv 360 -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"IBLBlur_Name\" -ln \"IBLBlur_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IBLBlur_Type\" -ln \"IBLBlur_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -sn \"IBLBlur\" -ln \"IBLBlur\" -nn \"IBLBlur\" -ct \"HW_shader_parameter\" \n\t\t-dv 5 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"IBLIntensity_Name\" -ln \"IBLIntensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IBLIntensity_Type\" -ln \"IBLIntensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"IBLIntensity\" -ln \"IBLIntensity\" -nn \"IBLIntensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Type_Name\" -ln \"Light_0_Type_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Type_Type\" -ln \"Light_0_Type_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Type\" -ln \"Light_0_Type\" -nn \"Light 0 Type\" \n\t\t-ct \"HW_shader_parameter\" -dv 3 -smn 0 -smx 1 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Type_Name\" -ln \"Light_1_Type_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Type_Type\" -ln \"Light_1_Type_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Type\" -ln \"Light_1_Type\" -nn \"Light 1 Type\" \n\t\t-ct \"HW_shader_parameter\" -dv 3 -smn 0 -smx 1 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Type_Name\" -ln \"Light_2_Type_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Type_Type\" -ln \"Light_2_Type_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Type\" -ln \"Light_2_Type\" -nn \"Light 2 Type\" \n\t\t-ct \"HW_shader_parameter\" -dv 3 -smn 0 -smx 1 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Color_Name\" -ln \"Light_0_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Color_Type\" -ln \"Light_0_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_0_Color\" -ln \"Light_0_Color\" -nn \"Light 0 Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_0_ColorR\" -ln \"Light_0_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_0_Color\";\n\taddAttr -is true -ci true -sn \"Light_0_ColorG\" -ln \"Light_0_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_0_Color\";\n\taddAttr -is true -ci true -sn \"Light_0_ColorB\" -ln \"Light_0_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_0_Color\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Color_Name\" -ln \"Light_1_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Color_Type\" -ln \"Light_1_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_1_Color\" -ln \"Light_1_Color\" -nn \"Light 1 Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_1_ColorR\" -ln \"Light_1_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_1_Color\";\n\taddAttr -is true -ci true -sn \"Light_1_ColorG\" -ln \"Light_1_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_1_Color\";\n\taddAttr -is true -ci true -sn \"Light_1_ColorB\" -ln \"Light_1_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_1_Color\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Color_Name\" -ln \"Light_2_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Color_Type\" -ln \"Light_2_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_2_Color\" -ln \"Light_2_Color\" -nn \"Light 2 Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_2_ColorR\" -ln \"Light_2_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_2_Color\";\n\taddAttr -is true -ci true -sn \"Light_2_ColorG\" -ln \"Light_2_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_2_Color\";\n\taddAttr -is true -ci true -sn \"Light_2_ColorB\" -ln \"Light_2_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Light_2_Color\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Intensity_Name\" -ln \"Light_0_Intensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Intensity_Type\" -ln \"Light_0_Intensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Intensity\" -ln \"Light_0_Intensity\" -nn \"Light 0 Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Intensity_Name\" -ln \"Light_1_Intensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Intensity_Type\" -ln \"Light_1_Intensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Intensity\" -ln \"Light_1_Intensity\" -nn \"Light 1 Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Intensity_Name\" -ln \"Light_2_Intensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Intensity_Type\" -ln \"Light_2_Intensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Intensity\" -ln \"Light_2_Intensity\" -nn \"Light 2 Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Position_Name\" -ln \"Light_0_Position_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Position_Type\" -ln \"Light_0_Position_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Position\" -ln \"Light_0_Position\" -nn \"Light 0 Position\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Position_Name\" -ln \"Light_1_Position_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Position_Type\" -ln \"Light_1_Position_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Position\" -ln \"Light_1_Position\" -nn \"Light 1 Position\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Position_Name\" -ln \"Light_2_Position_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Position_Type\" -ln \"Light_2_Position_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Position\" -ln \"Light_2_Position\" -nn \"Light 2 Position\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Direction_Name\" -ln \"Light_0_Direction_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Direction_Type\" -ln \"Light_0_Direction_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Direction\" -ln \"Light_0_Direction\" -nn \"Light 0 Direction\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Direction_Name\" -ln \"Light_1_Direction_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Direction_Type\" -ln \"Light_1_Direction_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Direction\" -ln \"Light_1_Direction\" -nn \"Light 1 Direction\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Direction_Name\" -ln \"Light_2_Direction_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Direction_Type\" -ln \"Light_2_Direction_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Direction\" -ln \"Light_2_Direction\" -nn \"Light 2 Direction\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Decay_Name\" -ln \"Light_0_Decay_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Decay_Type\" -ln \"Light_0_Decay_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Decay\" -ln \"Light_0_Decay\" -nn \"Light 0 Decay\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Decay_Name\" -ln \"Light_1_Decay_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Decay_Type\" -ln \"Light_1_Decay_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Decay\" -ln \"Light_1_Decay\" -nn \"Light 1 Decay\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Decay_Name\" -ln \"Light_2_Decay_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Decay_Type\" -ln \"Light_2_Decay_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Decay\" -ln \"Light_2_Decay\" -nn \"Light 2 Decay\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Cone_Angle_Name\" -ln \"Light_0_Cone_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Cone_Angle_Type\" -ln \"Light_0_Cone_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Cone_Angle\" -ln \"Light_0_Cone_Angle\" -nn \"Light 0 Cone Angle\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.46000000834465027 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Cone_Angle_Name\" -ln \"Light_1_Cone_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Cone_Angle_Type\" -ln \"Light_1_Cone_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Cone_Angle\" -ln \"Light_1_Cone_Angle\" -nn \"Light 1 Cone Angle\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.46000000834465027 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Cone_Angle_Name\" -ln \"Light_2_Cone_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Cone_Angle_Type\" -ln \"Light_2_Cone_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Cone_Angle\" -ln \"Light_2_Cone_Angle\" -nn \"Light 2 Cone Angle\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.46000000834465027 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Penumbra_Angle_Name\" -ln \"Light_0_Penumbra_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Penumbra_Angle_Type\" -ln \"Light_0_Penumbra_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Penumbra_Angle\" -ln \"Light_0_Penumbra_Angle\" \n\t\t-nn \"Light 0 Penumbra Angle\" -ct \"HW_shader_parameter\" -dv 0.69999998807907104 -smn \n\t\t0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Penumbra_Angle_Name\" -ln \"Light_1_Penumbra_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Penumbra_Angle_Type\" -ln \"Light_1_Penumbra_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Penumbra_Angle\" -ln \"Light_1_Penumbra_Angle\" \n\t\t-nn \"Light 1 Penumbra Angle\" -ct \"HW_shader_parameter\" -dv 0.69999998807907104 -smn \n\t\t0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Penumbra_Angle_Name\" -ln \"Light_2_Penumbra_Angle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Penumbra_Angle_Type\" -ln \"Light_2_Penumbra_Angle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Penumbra_Angle\" -ln \"Light_2_Penumbra_Angle\" \n\t\t-nn \"Light 2 Penumbra Angle\" -ct \"HW_shader_parameter\" -dv 0.69999998807907104 -smn \n\t\t0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Casts_Shadow_Name\" -ln \"Light_0_Casts_Shadow_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Casts_Shadow_Type\" -ln \"Light_0_Casts_Shadow_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_0_Casts_Shadow\" -ln \"Light_0_Casts_Shadow\" \n\t\t-nn \"Light 0 Casts Shadow\" -ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Casts_Shadow_Name\" -ln \"Light_1_Casts_Shadow_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Casts_Shadow_Type\" -ln \"Light_1_Casts_Shadow_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_1_Casts_Shadow\" -ln \"Light_1_Casts_Shadow\" \n\t\t-nn \"Light 1 Casts Shadow\" -ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Casts_Shadow_Name\" -ln \"Light_2_Casts_Shadow_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Casts_Shadow_Type\" -ln \"Light_2_Casts_Shadow_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_2_Casts_Shadow\" -ln \"Light_2_Casts_Shadow\" \n\t\t-nn \"Light 2 Casts Shadow\" -ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Shadow_Color_Name\" -ln \"Light_0_Shadow_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_Shadow_Color_Type\" -ln \"Light_0_Shadow_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_0_Shadow_Color\" -ln \"Light_0_Shadow_Color\" \n\t\t-nn \"Light 0 Shadow Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_0_Shadow_ColorR\" -ln \"Light_0_Shadow_ColorR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_0_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_0_Shadow_ColorG\" -ln \"Light_0_Shadow_ColorG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_0_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_0_Shadow_ColorB\" -ln \"Light_0_Shadow_ColorB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_0_Shadow_Color\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Shadow_Color_Name\" -ln \"Light_1_Shadow_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_Shadow_Color_Type\" -ln \"Light_1_Shadow_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_1_Shadow_Color\" -ln \"Light_1_Shadow_Color\" \n\t\t-nn \"Light 1 Shadow Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_1_Shadow_ColorR\" -ln \"Light_1_Shadow_ColorR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_1_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_1_Shadow_ColorG\" -ln \"Light_1_Shadow_ColorG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_1_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_1_Shadow_ColorB\" -ln \"Light_1_Shadow_ColorB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_1_Shadow_Color\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Shadow_Color_Name\" -ln \"Light_2_Shadow_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_Shadow_Color_Type\" -ln \"Light_2_Shadow_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Light_2_Shadow_Color\" -ln \"Light_2_Shadow_Color\" \n\t\t-nn \"Light 2 Shadow Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Light_2_Shadow_ColorR\" -ln \"Light_2_Shadow_ColorR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_2_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_2_Shadow_ColorG\" -ln \"Light_2_Shadow_ColorG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_2_Shadow_Color\";\n\taddAttr -is true -ci true -sn \"Light_2_Shadow_ColorB\" -ln \"Light_2_Shadow_ColorB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Light_2_Shadow_Color\";\n\taddAttr -is true -ci true -h true -sn \"Surface_Mask_Name\" -ln \"Surface_Mask_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Surface_Mask_Type\" -ln \"Surface_Mask_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Surface_Mask\" -ln \"Surface_Mask\" -nn \"Surface Mask\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Surface_MaskR\" -ln \"Surface_MaskR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Surface_Mask\";\n\taddAttr -is true -ci true -sn \"Surface_MaskG\" -ln \"Surface_MaskG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Surface_Mask\";\n\taddAttr -is true -ci true -sn \"Surface_MaskB\" -ln \"Surface_MaskB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Surface_Mask\";\n\taddAttr -is true -ci true -h true -sn \"light0ShadowMap_Name\" -ln \"light0ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"light0ShadowMap_Type\" -ln \"light0ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"light0ShadowMap\" -ln \"light0ShadowMap\" \n\t\t-nn \"light0ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"light0ShadowMapR\" -ln \"light0ShadowMapR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light0ShadowMap\";\n\taddAttr -is true -ci true -sn \"light0ShadowMapG\" -ln \"light0ShadowMapG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light0ShadowMap\";\n\taddAttr -is true -ci true -sn \"light0ShadowMapB\" -ln \"light0ShadowMapB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light0ShadowMap\";\n\taddAttr -is true -ci true -h true -sn \"light1ShadowMap_Name\" -ln \"light1ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"light1ShadowMap_Type\" -ln \"light1ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"light1ShadowMap\" -ln \"light1ShadowMap\" \n\t\t-nn \"light1ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"light1ShadowMapR\" -ln \"light1ShadowMapR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light1ShadowMap\";\n\taddAttr -is true -ci true -sn \"light1ShadowMapG\" -ln \"light1ShadowMapG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light1ShadowMap\";\n\taddAttr -is true -ci true -sn \"light1ShadowMapB\" -ln \"light1ShadowMapB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light1ShadowMap\";\n\taddAttr -is true -ci true -h true -sn \"light2ShadowMap_Name\" -ln \"light2ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"light2ShadowMap_Type\" -ln \"light2ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"light2ShadowMap\" -ln \"light2ShadowMap\" \n\t\t-nn \"light2ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"light2ShadowMapR\" -ln \"light2ShadowMapR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light2ShadowMap\";\n\taddAttr -is true -ci true -sn \"light2ShadowMapG\" -ln \"light2ShadowMapG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light2ShadowMap\";\n\taddAttr -is true -ci true -sn \"light2ShadowMapB\" -ln \"light2ShadowMapB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"light2ShadowMap\";\n\taddAttr -is true -ci true -h true -sn \"IBLMap_Name\" -ln \"IBLMap_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"IBLMap_Type\" -ln \"IBLMap_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"IBLMap\" -ln \"IBLMap\" -nn \"IBLMap\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"IBLMapR\" -ln \"IBLMapR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"IBLMap\";\n\taddAttr -is true -ci true -sn \"IBLMapG\" -ln \"IBLMapG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"IBLMap\";\n\taddAttr -is true -ci true -sn \"IBLMapB\" -ln \"IBLMapB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"IBLMap\";\n\taddAttr -is true -ci true -h true -sn \"TransDepthTexture_Name\" -ln \"TransDepthTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"TransDepthTexture_Type\" -ln \"TransDepthTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"TransDepthTexture\" -ln \"TransDepthTexture\" \n\t\t-nn \"TransDepthTexture\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"TransDepthTextureR\" -ln \"TransDepthTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"TransDepthTexture\";\n\taddAttr -is true -ci true -sn \"TransDepthTextureG\" -ln \"TransDepthTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"TransDepthTexture\";\n\taddAttr -is true -ci true -sn \"TransDepthTextureB\" -ln \"TransDepthTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"TransDepthTexture\";\n\taddAttr -is true -ci true -h true -sn \"OpaqueDepthTexture_Name\" -ln \"OpaqueDepthTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"OpaqueDepthTexture_Type\" -ln \"OpaqueDepthTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"OpaqueDepthTexture\" -ln \"OpaqueDepthTexture\" \n\t\t-nn \"OpaqueDepthTexture\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"OpaqueDepthTextureR\" -ln \"OpaqueDepthTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"OpaqueDepthTexture\";\n\taddAttr -is true -ci true -sn \"OpaqueDepthTextureG\" -ln \"OpaqueDepthTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"OpaqueDepthTexture\";\n\taddAttr -is true -ci true -sn \"OpaqueDepthTextureB\" -ln \"OpaqueDepthTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"OpaqueDepthTexture\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_Name\" -ln \"Ambient_Emissive_Map_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_Type\" -ln \"Ambient_Emissive_Map_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Ambient_Emissive_Map\" -ln \"Ambient_Emissive_Map\" \n\t\t-nn \"Ambient Emissive Map\" -ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_AO_Name\" -ln \"Ambient_Emissive_Map_AO_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_AO_Type\" -ln \"Ambient_Emissive_Map_AO_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Ambient_Emissive_Map_AO\" -ln \"Ambient_Emissive_Map_AO\" \n\t\t-nn \"Ambient Emissive Map AO\" -ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_1_Name\" -ln \"Ambient_Emissive_Map_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Emissive_Map_1_Type\" -ln \"Ambient_Emissive_Map_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Ambient_Emissive_Map_1\" -ln \"Ambient_Emissive_Map_1\" \n\t\t-nn \"Ambient Emissive Map\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Ambient_Emissive_Map_1R\" -ln \"Ambient_Emissive_Map_1R\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Ambient_Emissive_Map_1\";\n\taddAttr -is true -ci true -sn \"Ambient_Emissive_Map_1G\" -ln \"Ambient_Emissive_Map_1G\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Ambient_Emissive_Map_1\";\n\taddAttr -is true -ci true -sn \"Ambient_Emissive_Map_1B\" -ln \"Ambient_Emissive_Map_1B\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"Ambient_Emissive_Map_1\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Sky_Color_Name\" -ln \"Ambient_Sky_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Sky_Color_Type\" -ln \"Ambient_Sky_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Ambient_Sky_Color\" -ln \"Ambient_Sky_Color\" -nn \"Ambient Sky Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Ambient_Sky_ColorR\" -ln \"Ambient_Sky_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"Ambient_Sky_Color\";\n\taddAttr -is true -ci true -sn \"Ambient_Sky_ColorG\" -ln \"Ambient_Sky_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"Ambient_Sky_Color\";\n\taddAttr -is true -ci true -sn \"Ambient_Sky_ColorB\" -ln \"Ambient_Sky_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"Ambient_Sky_Color\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Ground_Color_Name\" -ln \"Ambient_Ground_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Ambient_Ground_Color_Type\" -ln \"Ambient_Ground_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Ambient_Ground_Color\" -ln \"Ambient_Ground_Color\" \n\t\t-nn \"Ambient Ground Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Ambient_Ground_ColorR\" -ln \"Ambient_Ground_ColorR\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"float\" -p \"Ambient_Ground_Color\";\n\taddAttr -is true -ci true -sn \"Ambient_Ground_ColorG\" -ln \"Ambient_Ground_ColorG\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"float\" -p \"Ambient_Ground_Color\";\n\taddAttr -is true -ci true -sn \"Ambient_Ground_ColorB\" -ln \"Ambient_Ground_ColorB\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"float\" -p \"Ambient_Ground_Color\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_Name\" -ln \"Diffuse_Map_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_Type\" -ln \"Diffuse_Map_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Diffuse_Map\" -ln \"Diffuse_Map\" -nn \"Diffuse Map\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_Alpha_Name\" -ln \"Diffuse_Map_Alpha_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_Alpha_Type\" -ln \"Diffuse_Map_Alpha_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Diffuse_Map_Alpha\" -ln \"Diffuse_Map_Alpha\" -nn \"Diffuse Map Alpha\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_1_Name\" -ln \"Diffuse_Map_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Map_1_Type\" -ln \"Diffuse_Map_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Diffuse_Map_1\" -ln \"Diffuse_Map_1\" -nn \"Diffuse Map\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Diffuse_Map_1R\" -ln \"Diffuse_Map_1R\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Diffuse_Map_1\";\n\taddAttr -is true -ci true -sn \"Diffuse_Map_1G\" -ln \"Diffuse_Map_1G\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Diffuse_Map_1\";\n\taddAttr -is true -ci true -sn \"Diffuse_Map_1B\" -ln \"Diffuse_Map_1B\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Diffuse_Map_1\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Color_Name\" -ln \"Diffuse_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Diffuse_Color_Type\" -ln \"Diffuse_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Diffuse_Color\" -ln \"Diffuse_Color\" -nn \"Diffuse Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Diffuse_ColorR\" -ln \"Diffuse_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.56099998950958252 -min 0 -max 1 -at \"float\" -p \"Diffuse_Color\";\n\taddAttr -is true -ci true -sn \"Diffuse_ColorG\" -ln \"Diffuse_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.56099998950958252 -min 0 -max 1 -at \"float\" -p \"Diffuse_Color\";\n\taddAttr -is true -ci true -sn \"Diffuse_ColorB\" -ln \"Diffuse_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 0.56099998950958252 -min 0 -max 1 -at \"float\" -p \"Diffuse_Color\";\n\taddAttr -is true -ci true -h true -sn \"Opacity_Name\" -ln \"Opacity_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Opacity_Type\" -ln \"Opacity_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -sn \"Opacity\" -ln \"Opacity\" -nn \"Opacity\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_Name\" -ln \"Specular_Map_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_Type\" -ln \"Specular_Map_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Specular_Map\" -ln \"Specular_Map\" -nn \"Specular Map\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_1_Name\" -ln \"Specular_Map_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_1_Type\" -ln \"Specular_Map_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Specular_Map_1\" -ln \"Specular_Map_1\" -nn \"Specular Map\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_2_Name\" -ln \"Specular_Map_2_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Map_2_Type\" -ln \"Specular_Map_2_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Specular_Map_2\" -ln \"Specular_Map_2\" -nn \"Specular Map\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Specular_Map_2R\" -ln \"Specular_Map_2R\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Specular_Map_2\";\n\taddAttr -is true -ci true -sn \"Specular_Map_2G\" -ln \"Specular_Map_2G\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Specular_Map_2\";\n\taddAttr -is true -ci true -sn \"Specular_Map_2B\" -ln \"Specular_Map_2B\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Specular_Map_2\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Color_Name\" -ln \"Specular_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Color_Type\" -ln \"Specular_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Specular_Color\" -ln \"Specular_Color\" -nn \"Specular Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Specular_ColorR\" -ln \"Specular_ColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Specular_Color\";\n\taddAttr -is true -ci true -sn \"Specular_ColorG\" -ln \"Specular_ColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Specular_Color\";\n\taddAttr -is true -ci true -sn \"Specular_ColorB\" -ln \"Specular_ColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"Specular_Color\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Power_Name\" -ln \"Specular_Power_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Specular_Power_Type\" -ln \"Specular_Power_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Specular_Power\" -ln \"Specular_Power\" -nn \"Specular Power\" \n\t\t-ct \"HW_shader_parameter\" -dv 20 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Map_Name\" -ln \"Normal_Map_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Map_Type\" -ln \"Normal_Map_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -sn \"Normal_Map\" -ln \"Normal_Map\" -nn \"Normal Map\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Map_1_Name\" -ln \"Normal_Map_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Map_1_Type\" -ln \"Normal_Map_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Normal_Map_1\" -ln \"Normal_Map_1\" -nn \"Normal Map\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Normal_Map_1R\" -ln \"Normal_Map_1R\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Normal_Map_1\";\n\taddAttr -is true -ci true -sn \"Normal_Map_1G\" -ln \"Normal_Map_1G\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Normal_Map_1\";\n\taddAttr -is true -ci true -sn \"Normal_Map_1B\" -ln \"Normal_Map_1B\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Normal_Map_1\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Height_Name\" -ln \"Normal_Height_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Height_Type\" -ln \"Normal_Height_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Normal_Height\" -ln \"Normal_Height\" -nn \"Normal Height\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Intensity_Name\" -ln \"Reflection_Intensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Intensity_Type\" -ln \"Reflection_Intensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Reflection_Intensity\" -ln \"Reflection_Intensity\" \n\t\t-nn \"Reflection Intensity\" -ct \"HW_shader_parameter\" -dv 0.5 -min 0 -max 99 -smn \n\t\t0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Blur_Name\" -ln \"Reflection_Blur_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Blur_Type\" -ln \"Reflection_Blur_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Reflection_Blur\" -ln \"Reflection_Blur\" -nn \"Reflection Blur\" \n\t\t-ct \"HW_shader_parameter\" -dv 5 -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Mask_Name\" -ln \"Reflection_Mask_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Mask_Type\" -ln \"Reflection_Mask_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Reflection_Mask\" -ln \"Reflection_Mask\" -nn \"Reflection Mask\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Mask_1_Name\" -ln \"Reflection_Mask_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Reflection_Mask_1_Type\" -ln \"Reflection_Mask_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Reflection_Mask_1\" -ln \"Reflection_Mask_1\" -nn \"Reflection Mask\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Reflection_Mask_1R\" -ln \"Reflection_Mask_1R\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Reflection_Mask_1\";\n\taddAttr -is true -ci true -sn \"Reflection_Mask_1G\" -ln \"Reflection_Mask_1G\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Reflection_Mask_1\";\n\taddAttr -is true -ci true -sn \"Reflection_Mask_1B\" -ln \"Reflection_Mask_1B\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Reflection_Mask_1\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Map_Name\" -ln \"Displacement_Map_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Map_Type\" -ln \"Displacement_Map_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Displacement_Map\" -ln \"Displacement_Map\" -nn \"Displacement Map\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Displacement_MapR\" -ln \"Displacement_MapR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Displacement_Map\";\n\taddAttr -is true -ci true -sn \"Displacement_MapG\" -ln \"Displacement_MapG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Displacement_Map\";\n\taddAttr -is true -ci true -sn \"Displacement_MapB\" -ln \"Displacement_MapB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Displacement_Map\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Height_Name\" -ln \"Displacement_Height_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Height_Type\" -ln \"Displacement_Height_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Displacement_Height\" -ln \"Displacement_Height\" -nn \"Displacement Height\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 999 -smn 0 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Offset_Name\" -ln \"Displacement_Offset_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Offset_Type\" -ln \"Displacement_Offset_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Displacement_Offset\" -ln \"Displacement_Offset\" -nn \"Displacement Offset\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -min -99 -max 99 -smn -10 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Clipping_Bias_Name\" -ln \"Displacement_Clipping_Bias_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Displacement_Clipping_Bias_Type\" -ln \"Displacement_Clipping_Bias_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Displacement_Clipping_Bias\" -ln \"Displacement_Clipping_Bias\" \n\t\t-nn \"Displacement Clipping Bias\" -ct \"HW_shader_parameter\" -dv 5 -min 0 -max 99 -smn \n\t\t0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Bounding_Box_Extra_Scale_Name\" -ln \"Bounding_Box_Extra_Scale_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Bounding_Box_Extra_Scale_Type\" -ln \"Bounding_Box_Extra_Scale_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Bounding_Box_Extra_Scale\" -ln \"Bounding_Box_Extra_Scale\" \n\t\t-nn \"Bounding Box Extra Scale\" -ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -smn \n\t\t1 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Tessellation_Range_Name\" -ln \"Tessellation_Range_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Tessellation_Range_Type\" -ln \"Tessellation_Range_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Tessellation_Range\" -ln \"Tessellation_Range\" -nn \"Tessellation Range\" \n\t\t-ct \"HW_shader_parameter\" -dv 100 -min 0 -max 9999 -smn 0 -smx 9999 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Flat_Tessellation_Name\" -ln \"Flat_Tessellation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Flat_Tessellation_Type\" -ln \"Flat_Tessellation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Flat_Tessellation\" -ln \"Flat_Tessellation\" -nn \"Flat Tessellation\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Mask_Name\" -ln \"Thickness_Mask_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Mask_Type\" -ln \"Thickness_Mask_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Thickness_Mask\" -ln \"Thickness_Mask\" -nn \"Thickness Mask\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Mask_1_Name\" -ln \"Thickness_Mask_1_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Thickness_Mask_1_Type\" -ln \"Thickness_Mask_1_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"Thickness_Mask_1\" -ln \"Thickness_Mask_1\" -nn \"Thickness Mask\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Thickness_Mask_1R\" -ln \"Thickness_Mask_1R\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Thickness_Mask_1\";\n\taddAttr -is true -ci true -sn \"Thickness_Mask_1G\" -ln \"Thickness_Mask_1G\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Thickness_Mask_1\";\n\taddAttr -is true -ci true -sn \"Thickness_Mask_1B\" -ln \"Thickness_Mask_1B\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"Thickness_Mask_1\";\n\taddAttr -is true -ci true -h true -sn \"Light_Translucent_Distortion_Name\" -ln \"Light_Translucent_Distortion_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_Translucent_Distortion_Type\" -ln \"Light_Translucent_Distortion_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_Translucent_Distortion\" -ln \"Light_Translucent_Distortion\" \n\t\t-nn \"Light Translucent Distortion\" -ct \"HW_shader_parameter\" -dv 0.20000000298023224 \n\t\t-min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_Translucent_Power_Name\" -ln \"Light_Translucent_Power_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_Translucent_Power_Type\" -ln \"Light_Translucent_Power_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Light_Translucent_Power\" -ln \"Light_Translucent_Power\" \n\t\t-nn \"Light Translucent Power\" -ct \"HW_shader_parameter\" -dv 3 -min 0 -max 99 -smn \n\t\t0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Translucent_Minimum_Name\" -ln \"Translucent_Minimum_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Translucent_Minimum_Type\" -ln \"Translucent_Minimum_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Translucent_Minimum\" -ln \"Translucent_Minimum\" -nn \"Translucent Minimum\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 99 -smn 0 -smx 99 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Outer_Translucent_Color_Name\" -ln \"Outer_Translucent_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Outer_Translucent_Color_Type\" -ln \"Outer_Translucent_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Outer_Translucent_Color\" -ln \"Outer_Translucent_Color\" \n\t\t-nn \"Outer Translucent Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Outer_Translucent_ColorX\" -ln \"Outer_Translucent_ColorX\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"float\" -p \"Outer_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Outer_Translucent_ColorY\" -ln \"Outer_Translucent_ColorY\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.63999998569488525 -min 0 -max 1 -at \"float\" -p \"Outer_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Outer_Translucent_ColorZ\" -ln \"Outer_Translucent_ColorZ\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.25 -min 0 -max 1 -at \"float\" -p \"Outer_Translucent_Color\";\n\taddAttr -is true -ci true -h true -sn \"Medium_Translucent_Color_Name\" -ln \"Medium_Translucent_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Medium_Translucent_Color_Type\" -ln \"Medium_Translucent_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Medium_Translucent_Color\" -ln \"Medium_Translucent_Color\" \n\t\t-nn \"Medium Translucent Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Medium_Translucent_ColorX\" -ln \"Medium_Translucent_ColorX\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"float\" -p \"Medium_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Medium_Translucent_ColorY\" -ln \"Medium_Translucent_ColorY\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.20999999344348907 -min 0 -max 1 -at \"float\" -p \"Medium_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Medium_Translucent_ColorZ\" -ln \"Medium_Translucent_ColorZ\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.14000000059604645 -min 0 -max 1 -at \"float\" -p \"Medium_Translucent_Color\";\n\taddAttr -is true -ci true -h true -sn \"Inner_Translucent_Color_Name\" -ln \"Inner_Translucent_Color_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Inner_Translucent_Color_Type\" -ln \"Inner_Translucent_Color_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"Inner_Translucent_Color\" -ln \"Inner_Translucent_Color\" \n\t\t-nn \"Inner Translucent Color\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"Inner_Translucent_ColorX\" -ln \"Inner_Translucent_ColorX\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.25 -min 0 -max 1 -at \"float\" -p \"Inner_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Inner_Translucent_ColorY\" -ln \"Inner_Translucent_ColorY\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.05000000074505806 -min 0 -max 1 -at \"float\" -p \"Inner_Translucent_Color\";\n\taddAttr -is true -ci true -sn \"Inner_Translucent_ColorZ\" -ln \"Inner_Translucent_ColorZ\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.019999999552965164 -min 0 -max 1 -at \"float\" -p \"Inner_Translucent_Color\";\n\taddAttr -ci true -sn \"Light_0_use_implicit_lighting\" -ln \"Light_0_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_0_connected_light\" -ln \"Light_0_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_1_use_implicit_lighting\" -ln \"Light_1_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_1_connected_light\" -ln \"Light_1_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_2_use_implicit_lighting\" -ln \"Light_2_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_2_connected_light\" -ln \"Light_2_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Position\" -ln \"Position\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Position_Name\" -ln \"Position_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"Position_Source\" -ln \"Position_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -sn \"Position_DefaultTexture\" -ln \"Position_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Position\";\n\taddAttr -ci true -sn \"Normal\" -ln \"Normal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Normal_Name\" -ln \"Normal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Source\" -ln \"Normal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -sn \"Normal_DefaultTexture\" -ln \"Normal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Normal\";\n\taddAttr -ci true -sn \"Tangent\" -ln \"Tangent\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Tangent_Name\" -ln \"Tangent_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"Tangent_Source\" -ln \"Tangent_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -sn \"Tangent_DefaultTexture\" -ln \"Tangent_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Tangent\";\n\taddAttr -ci true -sn \"Binormal\" -ln \"Binormal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Binormal_Name\" -ln \"Binormal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -h true -sn \"Binormal_Source\" -ln \"Binormal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -sn \"Binormal_DefaultTexture\" -ln \"Binormal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Binormal\";\n\taddAttr -ci true -sn \"TexCoord0\" -ln \"TexCoord0\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Name\" -ln \"TexCoord0_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Source\" -ln \"TexCoord0_Source\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -sn \"TexCoord0_DefaultTexture\" -ln \"TexCoord0_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -s false -is true -ci true -k true -sn \"te\" -ln \"techniqueEnum\" -nn \"Technique\" \n\t\t-min 0 -max 0 -en \"T0\" -at \"enum\";\n\taddAttr -is true -ci true -h true -sn \"DepthRange_Name\" -ln \"DepthRange_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"DepthRange_Type\" -ln \"DepthRange_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"DepthRange\" -ln \"DepthRange\" -ct \"HW_shader_parameter\" \n\t\t-dv 100000 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"PointLight0ShadowMap_Name\" -ln \"PointLight0ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"PointLight0ShadowMap_Type\" -ln \"PointLight0ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"PointLight0ShadowMap\" -ln \"PointLight0ShadowMap\" \n\t\t-nn \"PointLight0ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"PointLight0ShadowMapR\" -ln \"PointLight0ShadowMapR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight0ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight0ShadowMapG\" -ln \"PointLight0ShadowMapG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight0ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight0ShadowMapB\" -ln \"PointLight0ShadowMapB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight0ShadowMap\";\n\taddAttr -is true -ci true -h true -sn \"PointLight1ShadowMap_Name\" -ln \"PointLight1ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"PointLight1ShadowMap_Type\" -ln \"PointLight1ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"PointLight1ShadowMap\" -ln \"PointLight1ShadowMap\" \n\t\t-nn \"PointLight1ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"PointLight1ShadowMapR\" -ln \"PointLight1ShadowMapR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight1ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight1ShadowMapG\" -ln \"PointLight1ShadowMapG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight1ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight1ShadowMapB\" -ln \"PointLight1ShadowMapB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight1ShadowMap\";\n\taddAttr -is true -ci true -h true -sn \"PointLight2ShadowMap_Name\" -ln \"PointLight2ShadowMap_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"PointLight2ShadowMap_Type\" -ln \"PointLight2ShadowMap_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -h true -sn \"PointLight2ShadowMap\" -ln \"PointLight2ShadowMap\" \n\t\t-nn \"PointLight2ShadowMap\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"PointLight2ShadowMapR\" -ln \"PointLight2ShadowMapR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight2ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight2ShadowMapG\" -ln \"PointLight2ShadowMapG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight2ShadowMap\";\n\taddAttr -is true -ci true -sn \"PointLight2ShadowMapB\" -ln \"PointLight2ShadowMapB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"PointLight2ShadowMap\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_ShadowBias_Name\" -ln \"Light_0_ShadowBias_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_ShadowBias_Type\" -ln \"Light_0_ShadowBias_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_0_ShadowBias\" -ln \"Light_0_ShadowBias\" \n\t\t-nn \"Light 0 ShadowBias\" -ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_ShadowBias_Name\" -ln \"Light_1_ShadowBias_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_ShadowBias_Type\" -ln \"Light_1_ShadowBias_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_1_ShadowBias\" -ln \"Light_1_ShadowBias\" \n\t\t-nn \"Light 1 ShadowBias\" -ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_ShadowBias_Name\" -ln \"Light_2_ShadowBias_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_ShadowBias_Type\" -ln \"Light_2_ShadowBias_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"Light_2_ShadowBias\" -ln \"Light_2_ShadowBias\" \n\t\t-nn \"Light 2 ShadowBias\" -ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\tsetAttr \".vpar\" -type \"stringArray\" 5 \"Position\" \"Normal\" \"Tangent\" \"Binormal\" \"TexCoord0\"  ;\n\tsetAttr \".upar\" -type \"stringArray\" 97 \"MayaHwFogEnabled\" \"MayaHwFogMode\" \"MayaHwFogStart\" \"MayaHwFogEnd\" \"MayaHwFogDensity\" \"MayaHwFogColor\" \"DepthRange\" \"Clamp_Dynamic_Lights\" \"IsSwatchRender\" \"Tessellation_Maximum\" \"Surface_Mask_Cutoff\" \"Thickness\" \"ReflectionRotation\" \"EmissiveStrength\" \"IBLRotation\" \"IBLBlur\" \"IBLIntensity\" \"Light_0_Type\" \"Light_1_Type\" \"Light_2_Type\" \"Light_0_Color\" \"Light_1_Color\" \"Light_2_Color\" \"Light_0_Intensity\" \"Light_1_Intensity\" \"Light_2_Intensity\" \"Light_0_Position\" \"Light_1_Position\" \"Light_2_Position\" \"Light_0_Direction\" \"Light_1_Direction\" \"Light_2_Direction\" \"Light_0_Decay\" \"Light_1_Decay\" \"Light_2_Decay\" \"Light_0_Cone_Angle\" \"Light_1_Cone_Angle\" \"Light_2_Cone_Angle\" \"Light_0_Penumbra_Angle\" \"Light_1_Penumbra_Angle\" \"Light_2_Penumbra_Angle\" \"Light_0_Casts_Shadow\" \"Light_1_Casts_Shadow\" \"Light_2_Casts_Shadow\" \"Light_0_ShadowBias\" \"Light_1_ShadowBias\" \"Light_2_ShadowBias\" \"Light_0_Shadow_Color\" \"Light_1_Shadow_Color\" \"Light_2_Shadow_Color\" \"Surface_Mask\" \"light0ShadowMap\" \"PointLight0ShadowMap\" \"light1ShadowMap\" \"PointLight1ShadowMap\" \"light2ShadowMap\" \"PointLight2ShadowMap\" \"IBLMap\" \"TransDepthTexture\" \"OpaqueDepthTexture\" \"Ambient_Emissive_Map\" \"Ambient_Emissive_Map_AO\" \"Ambient_Emissive_Map_1\" \"Ambient_Sky_Color\" \"Ambient_Ground_Color\" \"Diffuse_Map\" \"Diffuse_Map_Alpha\" \"Diffuse_Map_1\" \"Diffuse_Color\" \"Opacity\" \"Specular_Map\" \"Specular_Map_1\" \"Specular_Map_2\" \"Specular_Color\" \"Specular_Power\" \"Normal_Map\" \"Normal_Map_1\" \"Normal_Height\" \"Reflection_Intensity\" \"Reflection_Blur\" \"Reflection_Mask\" \"Reflection_Mask_1\" \"Displacement_Map\" \"Displacement_Height\" \"Displacement_Offset\" \"Displacement_Clipping_Bias\" \"Bounding_Box_Extra_Scale\" \"Tessellation_Range\" \"Flat_Tessellation\" \"Thickness_Mask\" \"Thickness_Mask_1\" \"Light_Translucent_Distortion\" \"Light_Translucent_Power\" \"Translucent_Minimum\" \"Outer_Translucent_Color\" \"Medium_Translucent_Color\" \"Inner_Translucent_Color\"  ;\n\tsetAttr \".s\" -type \"string\" \"AutodeskUberShader.ogsfx\";\n\tsetAttr \".t\" -type \"string\" \"T0\";\n\tsetAttr \".MayaHwFogEnabled_Name\" -type \"string\" \"MayaHwFogEnabled\";\n\tsetAttr \".MayaHwFogEnabled_Type\" -type \"string\" \"bool\";\n\tsetAttr \".MayaHwFogEnabled\" no;\n\tsetAttr \".MayaHwFogMode_Name\" -type \"string\" \"MayaHwFogMode\";\n\tsetAttr \".MayaHwFogMode_Type\" -type \"string\" \"int\";\n\tsetAttr \".MayaHwFogMode\" 0;\n\tsetAttr \".MayaHwFogStart_Name\" -type \"string\" \"MayaHwFogStart\";\n\tsetAttr \".MayaHwFogStart_Type\" -type \"string\" \"float\";\n\tsetAttr \".MayaHwFogStart\" 0;\n\tsetAttr \".MayaHwFogEnd_Name\" -type \"string\" \"MayaHwFogEnd\";\n\tsetAttr \".MayaHwFogEnd_Type\" -type \"string\" \"float\";\n\tsetAttr \".MayaHwFogEnd\" 100;\n\tsetAttr \".MayaHwFogDensity_Name\" -type \"string\" \"MayaHwFogDensity\";\n\tsetAttr \".MayaHwFogDensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".MayaHwFogDensity\" 0.10000000149011612;\n\tsetAttr \".MayaHwFogColor_Name\" -type \"string\" \"MayaHwFogColor\";\n\tsetAttr \".MayaHwFogColor_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".MayaHwFogColorXYZ\" -type \"float3\" 0.5 0.5 0.5 ;\n\tsetAttr \".MayaHwFogColorW\" 1;\n\tsetAttr \".Clamp_Dynamic_Lights_Name\" -type \"string\" \"Clamp_Dynamic_Lights\";\n\tsetAttr \".Clamp_Dynamic_Lights_Type\" -type \"string\" \"int\";\n\tsetAttr \".Clamp_Dynamic_Lights\" 99;\n\tsetAttr \".IsSwatchRender_Name\" -type \"string\" \"IsSwatchRender\";\n\tsetAttr \".IsSwatchRender_Type\" -type \"string\" \"bool\";\n\tsetAttr \".IsSwatchRender\" no;\n\tsetAttr \".Tessellation_Maximum_Name\" -type \"string\" \"Tessellation_Maximum\";\n\tsetAttr \".Tessellation_Maximum_Type\" -type \"string\" \"float\";\n\tsetAttr \".Tessellation_Maximum\" 20;\n\tsetAttr \".Surface_Mask_Cutoff_Name\" -type \"string\" \"Surface_Mask_Cutoff\";\n\tsetAttr \".Surface_Mask_Cutoff_Type\" -type \"string\" \"float\";\n\tsetAttr \".Surface_Mask_Cutoff\" 0;\n\tsetAttr \".Thickness_Name\" -type \"string\" \"Thickness\";\n\tsetAttr \".Thickness_Type\" -type \"string\" \"float\";\n\tsetAttr \".Thickness\" 1;\n\tsetAttr \".ReflectionRotation_Name\" -type \"string\" \"ReflectionRotation\";\n\tsetAttr \".ReflectionRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".ReflectionRotation\" 360;\n\tsetAttr \".EmissiveStrength_Name\" -type \"string\" \"EmissiveStrength\";\n\tsetAttr \".EmissiveStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".EmissiveStrength\" 1;\n\tsetAttr \".IBLRotation_Name\" -type \"string\" \"IBLRotation\";\n\tsetAttr \".IBLRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".IBLRotation\" 360;\n\tsetAttr \".IBLBlur_Name\" -type \"string\" \"IBLBlur\";\n\tsetAttr \".IBLBlur_Type\" -type \"string\" \"float\";\n\tsetAttr \".IBLBlur\" 5;\n\tsetAttr \".IBLIntensity_Name\" -type \"string\" \"IBLIntensity\";\n\tsetAttr \".IBLIntensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".IBLIntensity\" 1;\n\tsetAttr \".Light_0_Type_Name\" -type \"string\" \"Light_0_Type\";\n\tsetAttr \".Light_0_Type_Type\" -type \"string\" \"int\";\n\tsetAttr \".Light_0_Type\" 4;\n\tsetAttr \".Light_1_Type_Name\" -type \"string\" \"Light_1_Type\";\n\tsetAttr \".Light_1_Type_Type\" -type \"string\" \"int\";\n\tsetAttr \".Light_1_Type\" 4;\n\tsetAttr \".Light_2_Type_Name\" -type \"string\" \"Light_2_Type\";\n\tsetAttr \".Light_2_Type_Type\" -type \"string\" \"int\";\n\tsetAttr \".Light_2_Type\" 2;\n\tsetAttr \".Light_0_Color_Name\" -type \"string\" \"Light_0_Color\";\n\tsetAttr \".Light_0_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr -l on \".Light_0_Color\" -type \"float3\" 1 1 1 ;\n\tsetAttr -l on \".Light_0_Color\";\n\tsetAttr \".Light_1_Color_Name\" -type \"string\" \"Light_1_Color\";\n\tsetAttr \".Light_1_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr -l on \".Light_1_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr -l on \".Light_1_Color\";\n\tsetAttr \".Light_2_Color_Name\" -type \"string\" \"Light_2_Color\";\n\tsetAttr \".Light_2_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr -l on \".Light_2_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr -l on \".Light_2_Color\";\n\tsetAttr \".Light_0_Intensity_Name\" -type \"string\" \"Light_0_Intensity\";\n\tsetAttr \".Light_0_Intensity_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_0_Intensity\" 1;\n\tsetAttr \".Light_1_Intensity_Name\" -type \"string\" \"Light_1_Intensity\";\n\tsetAttr \".Light_1_Intensity_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_1_Intensity\" 0;\n\tsetAttr \".Light_2_Intensity_Name\" -type \"string\" \"Light_2_Intensity\";\n\tsetAttr \".Light_2_Intensity_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_2_Intensity\" 0;\n\tsetAttr \".Light_0_Position_Name\" -type \"string\" \"Light_0_Position\";\n\tsetAttr \".Light_0_Position_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr -l on \".Light_0_Position\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 1.0990990400314331 0.44998592138290405 1.596551775932312 1;\n\tsetAttr \".Light_1_Position_Name\" -type \"string\" \"Light_1_Position\";\n\tsetAttr \".Light_1_Position_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr -l on \".Light_1_Position\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 1 1 1 1;\n\tsetAttr \".Light_2_Position_Name\" -type \"string\" \"Light_2_Position\";\n\tsetAttr \".Light_2_Position_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr -l on \".Light_2_Position\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 -1.1893892288208008 0.97755825519561768 1.4075454473495483 1;\n\tsetAttr \".Light_0_Direction_Name\" -type \"string\" \"Light_0_Direction\";\n\tsetAttr \".Light_0_Direction_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr -l on \".Light_0_Direction\" -type \"matrix\" 1 0 0 0 0 1 0 0 0.026330450549721718 0.33275771141052246 -0.94264471530914307 0\n\t\t 0 0 0 1;\n\tsetAttr \".Light_1_Direction_Name\" -type \"string\" \"Light_1_Direction\";\n\tsetAttr \".Light_1_Direction_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr -l on \".Light_1_Direction\" -type \"matrix\" 1 0 0 0 0 1 0 0 0.68678545951843262 0.48995029926300049 0.53691196441650391 0\n\t\t 0 0 0 1;\n\tsetAttr \".Light_2_Direction_Name\" -type \"string\" \"Light_2_Direction\";\n\tsetAttr \".Light_2_Direction_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr -l on \".Light_2_Direction\" -type \"matrix\" 1 0 0 0 0 1 0 0 -0.43001112341880798 0.27973565459251404 0.85839289426803589 0\n\t\t 0 0 0 1;\n\tsetAttr \".Light_0_Decay_Name\" -type \"string\" \"Light_0_Decay\";\n\tsetAttr \".Light_0_Decay_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_0_Decay\" 0;\n\tsetAttr \".Light_1_Decay_Name\" -type \"string\" \"Light_1_Decay\";\n\tsetAttr \".Light_1_Decay_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_1_Decay\" 0;\n\tsetAttr \".Light_2_Decay_Name\" -type \"string\" \"Light_2_Decay\";\n\tsetAttr \".Light_2_Decay_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_2_Decay\" 0;\n\tsetAttr \".Light_0_Cone_Angle_Name\" -type \"string\" \"Light_0_Cone_Angle\";\n\tsetAttr \".Light_0_Cone_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_0_Cone_Angle\" 0.46000000834465027;\n\tsetAttr \".Light_1_Cone_Angle_Name\" -type \"string\" \"Light_1_Cone_Angle\";\n\tsetAttr \".Light_1_Cone_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_1_Cone_Angle\" 0.46000000834465027;\n\tsetAttr \".Light_2_Cone_Angle_Name\" -type \"string\" \"Light_2_Cone_Angle\";\n\tsetAttr \".Light_2_Cone_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_2_Cone_Angle\" 0.3490658700466156;\n\tsetAttr \".Light_0_Penumbra_Angle_Name\" -type \"string\" \"Light_0_Penumbra_Angle\";\n\tsetAttr \".Light_0_Penumbra_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_0_Penumbra_Angle\" 0.69999998807907104;\n\tsetAttr \".Light_1_Penumbra_Angle_Name\" -type \"string\" \"Light_1_Penumbra_Angle\";\n\tsetAttr \".Light_1_Penumbra_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_1_Penumbra_Angle\" 0.69999998807907104;\n\tsetAttr \".Light_2_Penumbra_Angle_Name\" -type \"string\" \"Light_2_Penumbra_Angle\";\n\tsetAttr \".Light_2_Penumbra_Angle_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".Light_2_Penumbra_Angle\" 0.3490658700466156;\n\tsetAttr \".Light_0_Casts_Shadow_Name\" -type \"string\" \"Light_0_Casts_Shadow\";\n\tsetAttr \".Light_0_Casts_Shadow_Type\" -type \"string\" \"bool\";\n\tsetAttr -l on \".Light_0_Casts_Shadow\" no;\n\tsetAttr \".Light_1_Casts_Shadow_Name\" -type \"string\" \"Light_1_Casts_Shadow\";\n\tsetAttr \".Light_1_Casts_Shadow_Type\" -type \"string\" \"bool\";\n\tsetAttr -l on \".Light_1_Casts_Shadow\" no;\n\tsetAttr \".Light_2_Casts_Shadow_Name\" -type \"string\" \"Light_2_Casts_Shadow\";\n\tsetAttr \".Light_2_Casts_Shadow_Type\" -type \"string\" \"bool\";\n\tsetAttr -l on \".Light_2_Casts_Shadow\" no;\n\tsetAttr \".Light_0_Shadow_Color_Name\" -type \"string\" \"Light_0_Shadow_Color\";\n\tsetAttr \".Light_0_Shadow_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr -l on \".Light_0_Shadow_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr -l on \".Light_0_Shadow_Color\";\n\tsetAttr \".Light_1_Shadow_Color_Name\" -type \"string\" \"Light_1_Shadow_Color\";\n\tsetAttr \".Light_1_Shadow_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr -l on \".Light_1_Shadow_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr -l on \".Light_1_Shadow_Color\";\n\tsetAttr \".Light_2_Shadow_Color_Name\" -type \"string\" \"Light_2_Shadow_Color\";\n\tsetAttr \".Light_2_Shadow_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr -l on \".Light_2_Shadow_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr -l on \".Light_2_Shadow_Color\";\n\tsetAttr \".Surface_Mask_Name\" -type \"string\" \"Surface_Mask\";\n\tsetAttr \".Surface_Mask_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Surface_Mask\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".light0ShadowMap_Name\" -type \"string\" \"light0ShadowMap\";\n\tsetAttr \".light0ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".light0ShadowMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".light1ShadowMap_Name\" -type \"string\" \"light1ShadowMap\";\n\tsetAttr \".light1ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".light1ShadowMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".light2ShadowMap_Name\" -type \"string\" \"light2ShadowMap\";\n\tsetAttr \".light2ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".light2ShadowMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".IBLMap_Name\" -type \"string\" \"IBLMap\";\n\tsetAttr \".IBLMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".IBLMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".TransDepthTexture_Name\" -type \"string\" \"TransDepthTexture\";\n\tsetAttr \".TransDepthTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".TransDepthTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".OpaqueDepthTexture_Name\" -type \"string\" \"OpaqueDepthTexture\";\n\tsetAttr \".OpaqueDepthTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".OpaqueDepthTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Ambient_Emissive_Map_Name\" -type \"string\" \"Ambient_Emissive_Map\";\n\tsetAttr \".Ambient_Emissive_Map_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Ambient_Emissive_Map\" no;\n\tsetAttr \".Ambient_Emissive_Map_AO_Name\" -type \"string\" \"Ambient_Emissive_Map_AO\";\n\tsetAttr \".Ambient_Emissive_Map_AO_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Ambient_Emissive_Map_AO\" no;\n\tsetAttr \".Ambient_Emissive_Map_1_Name\" -type \"string\" \"Ambient_Emissive_Map\";\n\tsetAttr \".Ambient_Emissive_Map_1_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Ambient_Emissive_Map_1\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Ambient_Sky_Color_Name\" -type \"string\" \"Ambient_Sky_Color\";\n\tsetAttr \".Ambient_Sky_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".Ambient_Sky_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Ambient_Ground_Color_Name\" -type \"string\" \"Ambient_Ground_Color\";\n\tsetAttr \".Ambient_Ground_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".Ambient_Ground_Color\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Diffuse_Map_Name\" -type \"string\" \"Diffuse_Map\";\n\tsetAttr \".Diffuse_Map_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Diffuse_Map\" no;\n\tsetAttr \".Diffuse_Map_Alpha_Name\" -type \"string\" \"Diffuse_Map_Alpha\";\n\tsetAttr \".Diffuse_Map_Alpha_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Diffuse_Map_Alpha\" no;\n\tsetAttr \".Diffuse_Map_1_Name\" -type \"string\" \"Diffuse_Map\";\n\tsetAttr \".Diffuse_Map_1_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Diffuse_Map_1\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Diffuse_Color_Name\" -type \"string\" \"Diffuse_Color\";\n\tsetAttr \".Diffuse_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".Diffuse_Color\" -type \"float3\" 0.56099999 0.56099999 0.56099999 ;\n\tsetAttr \".Opacity_Name\" -type \"string\" \"Opacity\";\n\tsetAttr \".Opacity_Type\" -type \"string\" \"float\";\n\tsetAttr \".Opacity\" 1;\n\tsetAttr \".Specular_Map_Name\" -type \"string\" \"Specular_Map\";\n\tsetAttr \".Specular_Map_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Specular_Map\" no;\n\tsetAttr \".Specular_Map_1_Name\" -type \"string\" \"Specular_Map\";\n\tsetAttr \".Specular_Map_1_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Specular_Map_1\" no;\n\tsetAttr \".Specular_Map_2_Name\" -type \"string\" \"Specular_Map\";\n\tsetAttr \".Specular_Map_2_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Specular_Map_2\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Specular_Color_Name\" -type \"string\" \"Specular_Color\";\n\tsetAttr \".Specular_Color_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".Specular_Color\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".Specular_Power_Name\" -type \"string\" \"Specular_Power\";\n\tsetAttr \".Specular_Power_Type\" -type \"string\" \"float\";\n\tsetAttr \".Specular_Power\" 20;\n\tsetAttr \".Normal_Map_Name\" -type \"string\" \"Normal_Map\";\n\tsetAttr \".Normal_Map_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Normal_Map\" no;\n\tsetAttr \".Normal_Map_1_Name\" -type \"string\" \"Normal_Map\";\n\tsetAttr \".Normal_Map_1_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Normal_Map_1\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Normal_Height_Name\" -type \"string\" \"Normal_Height\";\n\tsetAttr \".Normal_Height_Type\" -type \"string\" \"float\";\n\tsetAttr \".Normal_Height\" 1;\n\tsetAttr \".Reflection_Intensity_Name\" -type \"string\" \"Reflection_Intensity\";\n\tsetAttr \".Reflection_Intensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".Reflection_Intensity\" 0.5;\n\tsetAttr \".Reflection_Blur_Name\" -type \"string\" \"Reflection_Blur\";\n\tsetAttr \".Reflection_Blur_Type\" -type \"string\" \"float\";\n\tsetAttr \".Reflection_Blur\" 5;\n\tsetAttr \".Reflection_Mask_Name\" -type \"string\" \"Reflection_Mask\";\n\tsetAttr \".Reflection_Mask_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Reflection_Mask\" no;\n\tsetAttr \".Reflection_Mask_1_Name\" -type \"string\" \"Reflection_Mask\";\n\tsetAttr \".Reflection_Mask_1_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Reflection_Mask_1\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Displacement_Map_Name\" -type \"string\" \"Displacement_Map\";\n\tsetAttr \".Displacement_Map_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Displacement_Map\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Displacement_Height_Name\" -type \"string\" \"Displacement_Height\";\n\tsetAttr \".Displacement_Height_Type\" -type \"string\" \"float\";\n\tsetAttr \".Displacement_Height\" 0;\n\tsetAttr \".Displacement_Offset_Name\" -type \"string\" \"Displacement_Offset\";\n\tsetAttr \".Displacement_Offset_Type\" -type \"string\" \"float\";\n\tsetAttr \".Displacement_Offset\" 0.5;\n\tsetAttr \".Displacement_Clipping_Bias_Name\" -type \"string\" \"Displacement_Clipping_Bias\";\n\tsetAttr \".Displacement_Clipping_Bias_Type\" -type \"string\" \"float\";\n\tsetAttr \".Displacement_Clipping_Bias\" 5;\n\tsetAttr \".Bounding_Box_Extra_Scale_Name\" -type \"string\" \"Bounding_Box_Extra_Scale\";\n\tsetAttr \".Bounding_Box_Extra_Scale_Type\" -type \"string\" \"float\";\n\tsetAttr \".Bounding_Box_Extra_Scale\" 1;\n\tsetAttr \".Tessellation_Range_Name\" -type \"string\" \"Tessellation_Range\";\n\tsetAttr \".Tessellation_Range_Type\" -type \"string\" \"float\";\n\tsetAttr \".Tessellation_Range\" 100;\n\tsetAttr \".Flat_Tessellation_Name\" -type \"string\" \"Flat_Tessellation\";\n\tsetAttr \".Flat_Tessellation_Type\" -type \"string\" \"float\";\n\tsetAttr \".Flat_Tessellation\" 0;\n\tsetAttr \".Thickness_Mask_Name\" -type \"string\" \"Thickness_Mask\";\n\tsetAttr \".Thickness_Mask_Type\" -type \"string\" \"bool\";\n\tsetAttr \".Thickness_Mask\" no;\n\tsetAttr \".Thickness_Mask_1_Name\" -type \"string\" \"Thickness_Mask\";\n\tsetAttr \".Thickness_Mask_1_Type\" -type \"string\" \"texture\";\n\tsetAttr \".Thickness_Mask_1\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Light_Translucent_Distortion_Name\" -type \"string\" \"Light_Translucent_Distortion\";\n\tsetAttr \".Light_Translucent_Distortion_Type\" -type \"string\" \"float\";\n\tsetAttr \".Light_Translucent_Distortion\" 0.20000000298023224;\n\tsetAttr \".Light_Translucent_Power_Name\" -type \"string\" \"Light_Translucent_Power\";\n\tsetAttr \".Light_Translucent_Power_Type\" -type \"string\" \"float\";\n\tsetAttr \".Light_Translucent_Power\" 3;\n\tsetAttr \".Translucent_Minimum_Name\" -type \"string\" \"Translucent_Minimum\";\n\tsetAttr \".Translucent_Minimum_Type\" -type \"string\" \"float\";\n\tsetAttr \".Translucent_Minimum\" 0;\n\tsetAttr \".Outer_Translucent_Color_Name\" -type \"string\" \"Outer_Translucent_Color\";\n\tsetAttr \".Outer_Translucent_Color_Type\" -type \"string\" \"float3x1\";\n\tsetAttr \".Outer_Translucent_Color\" -type \"float3\" 1 0.63999999 0.25 ;\n\tsetAttr \".Medium_Translucent_Color_Name\" -type \"string\" \"Medium_Translucent_Color\";\n\tsetAttr \".Medium_Translucent_Color_Type\" -type \"string\" \"float3x1\";\n\tsetAttr \".Medium_Translucent_Color\" -type \"float3\" 1 0.20999999 0.14 ;\n\tsetAttr \".Inner_Translucent_Color_Name\" -type \"string\" \"Inner_Translucent_Color\";\n\tsetAttr \".Inner_Translucent_Color_Type\" -type \"string\" \"float3x1\";\n\tsetAttr \".Inner_Translucent_Color\" -type \"float3\" 0.25 0.050000001 0.02 ;\n\tsetAttr \".Light_0_use_implicit_lighting\" no;\n\tsetAttr \".Light_2_use_implicit_lighting\" no;\n\tsetAttr \".Position_Name\" -type \"string\" \"Position\";\n\tsetAttr \".Position_Source\" -type \"string\" \"position\";\n\tsetAttr \".Normal_Name\" -type \"string\" \"Normal\";\n\tsetAttr \".Normal_Source\" -type \"string\" \"normal\";\n\tsetAttr \".Tangent_Name\" -type \"string\" \"Tangent\";\n\tsetAttr \".Tangent_Source\" -type \"string\" \"tangent:map1\";\n\tsetAttr \".Binormal_Name\" -type \"string\" \"Binormal\";\n\tsetAttr \".Binormal_Source\" -type \"string\" \"binormal:map1\";\n\tsetAttr \".TexCoord0_Name\" -type \"string\" \"TexCoord0\";\n\tsetAttr \".TexCoord0_Source\" -type \"string\" \"uv:map1\";\n\tsetAttr \".DepthRange_Name\" -type \"string\" \"DepthRange\";\n\tsetAttr \".DepthRange_Type\" -type \"string\" \"float\";\n\tsetAttr \".DepthRange\" 100000;\n\tsetAttr \".PointLight0ShadowMap_Name\" -type \"string\" \"PointLight0ShadowMap\";\n\tsetAttr \".PointLight0ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".PointLight0ShadowMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".PointLight1ShadowMap_Name\" -type \"string\" \"PointLight1ShadowMap\";\n\tsetAttr \".PointLight1ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".PointLight1ShadowMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".PointLight2ShadowMap_Name\" -type \"string\" \"PointLight2ShadowMap\";\n\tsetAttr \".PointLight2ShadowMap_Type\" -type \"string\" \"texture\";\n\tsetAttr \".PointLight2ShadowMap\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".Light_0_ShadowBias_Name\" -type \"string\" \"Light_0_ShadowBias\";\n\tsetAttr \".Light_0_ShadowBias_Type\" -type \"string\" \"float\";\n\tsetAttr \".Light_0_ShadowBias\" 0;\n\tsetAttr \".Light_1_ShadowBias_Name\" -type \"string\" \"Light_1_ShadowBias\";\n\tsetAttr \".Light_1_ShadowBias_Type\" -type \"string\" \"float\";\n\tsetAttr \".Light_1_ShadowBias\" 0;\n\tsetAttr \".Light_2_ShadowBias_Name\" -type \"string\" \"Light_2_ShadowBias\";\n\tsetAttr \".Light_2_ShadowBias_Type\" -type \"string\" \"float\";\n\tsetAttr \".Light_2_ShadowBias\" 0;\ncreateNode shadingEngine -n \"GLSLShader3SG\";\n\trename -uid \"005B1914-45C0-F462-21B9-D2836B8AA91F\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo6\";\n\trename -uid \"B018A17F-4949-DA75-8895-37B69318B425\";\ncreateNode place2dTexture -n \"place2dTexture30\";\n\trename -uid \"F83235C8-4412-C5E5-68CB-1D9465FECD35\";\ncreateNode file -n \"file_brdf\";\n\trename -uid \"94988878-4B51-268F-D9AC-4F8EE66B9F47\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/brdfLUT.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture31\";\n\trename -uid \"5D0837E6-4B5E-558E-A019-F189423FA10F\";\ncreateNode file -n \"file_emissive\";\n\trename -uid \"D4A21B74-4EA4-5201-5577-E581E5CC2581\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//images/damaged_helmet_emissive.jpg\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture32\";\n\trename -uid \"BE2DC323-46E1-5ED3-929F-18B7A48AE37E\";\ncreateNode nodeGraphEditorInfo -n \"MayaNodeEditorSavedTabsInfo\";\n\trename -uid \"F3941D94-4ABE-91A3-E47A-ED849CD5CD81\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -581.56795195795121 -896.58857623260906 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 614.82126375428345 90.316146456082436 ;\n\tsetAttr -s 6 \".tgi[0].ni\";\n\tsetAttr \".tgi[0].ni[0].x\" 72.857139587402344;\n\tsetAttr \".tgi[0].ni[0].y\" 31.693340301513672;\n\tsetAttr \".tgi[0].ni[0].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[1].x\" -234.28572082519531;\n\tsetAttr \".tgi[0].ni[1].y\" -594.28570556640625;\n\tsetAttr \".tgi[0].ni[1].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[2].x\" -197.14285278320312;\n\tsetAttr \".tgi[0].ni[2].y\" -25.714284896850586;\n\tsetAttr \".tgi[0].ni[2].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[3].x\" -197.14285278320312;\n\tsetAttr \".tgi[0].ni[3].y\" -215.71427917480469;\n\tsetAttr \".tgi[0].ni[3].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[4].x\" -504.28570556640625;\n\tsetAttr \".tgi[0].ni[4].y\" -215.71427917480469;\n\tsetAttr \".tgi[0].ni[4].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[5].x\" -504.28570556640625;\n\tsetAttr \".tgi[0].ni[5].y\" -25.714284896850586;\n\tsetAttr \".tgi[0].ni[5].nvs\" 18304;\ncreateNode file -n \"file1\";\n\trename -uid \"0B3DBCED-4F8B-086D-BEF1-268CA0A2B683\";\n\tsetAttr \".ftn\" -type \"string\" \"renderData/shaders//white_color.png\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture33\";\n\trename -uid \"D445D92F-4160-1C4F-3E78-18BF3DDB9052\";\ncreateNode file -n \"file2\";\n\trename -uid \"90D37564-436B-5F8F-3536-82A9DA725E01\";\n\tsetAttr \".ftn\" -type \"string\" \"renderData/shaders//white_color.png\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture34\";\n\trename -uid \"BA9F78C7-4CD4-C6E3-B5EB-8B9F0E581D05\";\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"12E39BDD-4D68-D4E9-A8F1-74AC2B26033A\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\ncreateNode shadingEngine -n \"helmet:GLSLShader4SG\";\n\trename -uid \"2BB9EACF-4053-6980-BFD7-E6BA28F59FC3\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"helmet:materialInfo1\";\n\trename -uid \"9673ECDF-4F8B-5DB9-6346-6783CE180990\";\ncreateNode lambert -n \"helmet:GLSLShader4SG1\";\n\trename -uid \"CCF3B385-4D79-496D-7F81-42BA94568BBA\";\n\tsetAttr \".rfi\" 0;\n\tsetAttr \".c\" -type \"float3\" 0 0 0 ;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"1E51F3EF-4C75-1BD6-BF1A-8E8C801A5DE0\";\n\tsetAttr \".st\" 2;\ncreateNode GLSLShader -n \"GLSLShader4\";\n\trename -uid \"4586FF06-40C0-6C7B-AF01-A68F491B3D12\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Name\" -ln \"u_LightColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Type\" -ln \"u_LightColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_LightColor\" -ln \"u_LightColor\" -nn \"Light Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_LightColorR\" -ln \"u_LightColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorG\" -ln \"u_LightColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorB\" -ln \"u_LightColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Name\" -ln \"u_LightIntensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Type\" -ln \"u_LightIntensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightIntensity\" -ln \"u_LightIntensity\" -nn \"Light Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 10 -smn 0 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Name\" -ln \"u_LightRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Type\" -ln \"u_LightRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightRotation\" -ln \"u_LightRotation\" -nn \"Light rotation (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 75 -min 0 -max 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Name\" -ln \"u_LightPitch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Type\" -ln \"u_LightPitch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightPitch\" -ln \"u_LightPitch\" -nn \"Light pitch (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 40 -min -90 -max 90 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Name\" -ln \"u_BaseColorTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Type\" -ln \"u_BaseColorTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorTexture\" -ln \"u_BaseColorTexture\" \n\t\t-nn \"Base color map (sRGB)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureR\" -ln \"u_BaseColorTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureG\" -ln \"u_BaseColorTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureB\" -ln \"u_BaseColorTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Name\" -ln \"u_BaseColorFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Type\" -ln \"u_BaseColorFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactor\" -ln \"u_BaseColorFactor\" -nn \"Base color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorFactorRGB\" -ln \"u_BaseColorFactorRGB\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_BaseColorFactor\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorR\" -ln \"u_BaseColorFactorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorG\" -ln \"u_BaseColorFactorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorB\" -ln \"u_BaseColorFactorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorA\" -ln \"u_BaseColorFactorA\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactor\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Name\" -ln \"u_MetallicTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Type\" -ln \"u_MetallicTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_MetallicTexture\" -ln \"u_MetallicTexture\" -nn \"Metallic map (B,LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_MetallicTextureR\" -ln \"u_MetallicTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureG\" -ln \"u_MetallicTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureB\" -ln \"u_MetallicTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Name\" -ln \"u_MetallicStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Type\" -ln \"u_MetallicStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_MetallicStrength\" -ln \"u_MetallicStrength\" -nn \"Metallic strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Name\" -ln \"u_RoughnessTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Type\" -ln \"u_RoughnessTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_RoughnessTexture\" -ln \"u_RoughnessTexture\" \n\t\t-nn \"Roughness map (G,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureR\" -ln \"u_RoughnessTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureG\" -ln \"u_RoughnessTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureB\" -ln \"u_RoughnessTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Name\" -ln \"u_RoughnessStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Type\" -ln \"u_RoughnessStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessStrength\" -ln \"u_RoughnessStrength\" -nn \"Roughness strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Name\" -ln \"u_OcclusionTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Type\" -ln \"u_OcclusionTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_OcclusionTexture\" -ln \"u_OcclusionTexture\" \n\t\t-nn \"Occlusion map (R,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureR\" -ln \"u_OcclusionTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureG\" -ln \"u_OcclusionTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureB\" -ln \"u_OcclusionTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Name\" -ln \"u_OcclusionStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Type\" -ln \"u_OcclusionStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_OcclusionStrength\" -ln \"u_OcclusionStrength\" -nn \"Occlusion strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Name\" -ln \"u_NormalTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Type\" -ln \"u_NormalTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_NormalTexture\" -ln \"u_NormalTexture\" -nn \"Normal map (LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_NormalTextureR\" -ln \"u_NormalTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureG\" -ln \"u_NormalTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureB\" -ln \"u_NormalTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Name\" -ln \"u_NormalScale_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Type\" -ln \"u_NormalScale_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_NormalScale\" -ln \"u_NormalScale\" -nn \"Normal scale\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Name\" -ln \"u_EmissiveTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Type\" -ln \"u_EmissiveTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveTexture\" -ln \"u_EmissiveTexture\" -nn \"Emissive map (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureR\" -ln \"u_EmissiveTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureG\" -ln \"u_EmissiveTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureB\" -ln \"u_EmissiveTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Name\" -ln \"u_EmissiveColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Type\" -ln \"u_EmissiveColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveColor\" -ln \"u_EmissiveColor\" -nn \"Emissive color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveColorR\" -ln \"u_EmissiveColorR\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorG\" -ln \"u_EmissiveColorG\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorB\" -ln \"u_EmissiveColorB\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Name\" -ln \"u_DiffuseEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Type\" -ln \"u_DiffuseEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_DiffuseEnvTexture\" -ln \"u_DiffuseEnvTexture\" \n\t\t-nn \"Diffuse env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureR\" -ln \"u_DiffuseEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureG\" -ln \"u_DiffuseEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureB\" -ln \"u_DiffuseEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Name\" -ln \"u_SpecularEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Type\" -ln \"u_SpecularEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_SpecularEnvTexture\" -ln \"u_SpecularEnvTexture\" \n\t\t-nn \"Specular env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureR\" -ln \"u_SpecularEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureG\" -ln \"u_SpecularEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureB\" -ln \"u_SpecularEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Name\" -ln \"u_brdfTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Type\" -ln \"u_brdfTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_brdfTexture\" -ln \"u_brdfTexture\" -nn \"BRDF LUT (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_brdfTextureR\" -ln \"u_brdfTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureG\" -ln \"u_brdfTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureB\" -ln \"u_brdfTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Name\" -ln \"u_IsDoubleSided_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Type\" -ln \"u_IsDoubleSided_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsDoubleSided\" -ln \"u_IsDoubleSided\" -nn \"Double sided material?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Name\" -ln \"u_UseMeshTangents_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Type\" -ln \"u_UseMeshTangents_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UseMeshTangents\" -ln \"u_UseMeshTangents\" -nn \"Use mesh tangents?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Name\" -ln \"u_RoughnessOffset_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Type\" -ln \"u_RoughnessOffset_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessOffset\" -ln \"u_RoughnessOffset\" -nn \"Roughness offset\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 12 -smn 0 -smx 12 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Name\" -ln \"u_ScaleDiffBaseMR_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Type\" -ln \"u_ScaleDiffBaseMR_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMR\" -ln \"u_ScaleDiffBaseMR\" -nn \"Scale Diff Base MR\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRXYZ\" -ln \"u_ScaleDiffBaseMRXYZ\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_ScaleDiffBaseMR\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRX\" -ln \"u_ScaleDiffBaseMRX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRY\" -ln \"u_ScaleDiffBaseMRY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRZ\" -ln \"u_ScaleDiffBaseMRZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRW\" -ln \"u_ScaleDiffBaseMRW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMR\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Name\" -ln \"u_BurleyFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Type\" -ln \"u_BurleyFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BurleyFactor\" -ln \"u_BurleyFactor\" -nn \"Burley factor\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Name\" -ln \"u_ScaleFGDSpec_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Type\" -ln \"u_ScaleFGDSpec_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpec\" -ln \"u_ScaleFGDSpec\" -nn \"Scale FGD Spec\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecXYZ\" -ln \"u_ScaleFGDSpecXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleFGDSpec\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecX\" -ln \"u_ScaleFGDSpecX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecY\" -ln \"u_ScaleFGDSpecY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecZ\" -ln \"u_ScaleFGDSpecZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecW\" -ln \"u_ScaleFGDSpecW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpec\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Name\" -ln \"u_UndoEdgeStretch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Type\" -ln \"u_UndoEdgeStretch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UndoEdgeStretch\" -ln \"u_UndoEdgeStretch\" -nn \"Undo edge stretch?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Name\" -ln \"u_ScaleIBL_Occl_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Type\" -ln \"u_ScaleIBL_Occl_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_Occl\" -ln \"u_ScaleIBL_Occl\" -nn \"Scale IBL AO(w)\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclXYZ\" -ln \"u_ScaleIBL_OcclXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleIBL_Occl\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclX\" -ln \"u_ScaleIBL_OcclX\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclY\" -ln \"u_ScaleIBL_OcclY\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclZ\" -ln \"u_ScaleIBL_OcclZ\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclW\" -ln \"u_ScaleIBL_OcclW\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_Occl\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Name\" -ln \"u_IsEmissiveInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Type\" -ln \"u_IsEmissiveInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEmissiveInsRGB\" -ln \"u_IsEmissiveInsRGB\" -nn \"sRGB emissive?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Name\" -ln \"u_EnvRotationAngle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Type\" -ln \"u_EnvRotationAngle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_EnvRotationAngle\" -ln \"u_EnvRotationAngle\" -nn \"Environment Rotation\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Name\" -ln \"u_FlipEnvMapZ_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Type\" -ln \"u_FlipEnvMapZ_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_FlipEnvMapZ\" -ln \"u_FlipEnvMapZ\" -nn \"Flip environment Z?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Name\" -ln \"u_IsEnvMapInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Type\" -ln \"u_IsEnvMapInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInsRGB\" -ln \"u_IsEnvMapInsRGB\" -nn \"sRGB environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Name\" -ln \"u_IsEnvMapInRGBM_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Type\" -ln \"u_IsEnvMapInRGBM_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInRGBM\" -ln \"u_IsEnvMapInRGBM\" -nn \"RGBM environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Name\" -ln \"u_IsBRDFsSRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Type\" -ln \"u_IsBRDFsSRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBRDFsSRGB\" -ln \"u_IsBRDFsSRGB\" -nn \"sRGB BRDF table?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Name\" -ln \"u_IsBaseColorInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Type\" -ln \"u_IsBaseColorInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBaseColorInsRGB\" -ln \"u_IsBaseColorInsRGB\" -nn \"sRGB basecolor?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -ci true -sn \"Position\" -ln \"Position\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Position_Name\" -ln \"Position_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"Position_Source\" -ln \"Position_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -sn \"Position_DefaultTexture\" -ln \"Position_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Position\";\n\taddAttr -ci true -sn \"Normal\" -ln \"Normal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Normal_Name\" -ln \"Normal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Source\" -ln \"Normal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -sn \"Normal_DefaultTexture\" -ln \"Normal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Normal\";\n\taddAttr -ci true -sn \"Tangent\" -ln \"Tangent\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Tangent_Name\" -ln \"Tangent_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"Tangent_Source\" -ln \"Tangent_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -sn \"Tangent_DefaultTexture\" -ln \"Tangent_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Tangent\";\n\taddAttr -ci true -sn \"Binormal\" -ln \"Binormal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Binormal_Name\" -ln \"Binormal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -h true -sn \"Binormal_Source\" -ln \"Binormal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -sn \"Binormal_DefaultTexture\" -ln \"Binormal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Binormal\";\n\taddAttr -ci true -sn \"TexCoord0\" -ln \"TexCoord0\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Name\" -ln \"TexCoord0_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Source\" -ln \"TexCoord0_Source\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -sn \"TexCoord0_DefaultTexture\" -ln \"TexCoord0_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -s false -is true -ci true -k true -sn \"te\" -ln \"techniqueEnum\" -nn \"Technique\" \n\t\t-min 0 -max 1 -en \"Solid:Transparent\" -at \"enum\";\n\tsetAttr \".vpar\" -type \"stringArray\" 5 \"Position\" \"Normal\" \"Tangent\" \"Binormal\" \"TexCoord0\"  ;\n\tsetAttr \".upar\" -type \"stringArray\" 34 \"u_LightColor\" \"u_LightIntensity\" \"u_LightRotation\" \"u_LightPitch\" \"u_BaseColorTexture\" \"u_BaseColorFactor\" \"u_MetallicTexture\" \"u_MetallicStrength\" \"u_RoughnessTexture\" \"u_RoughnessStrength\" \"u_OcclusionTexture\" \"u_OcclusionStrength\" \"u_NormalTexture\" \"u_NormalScale\" \"u_EmissiveTexture\" \"u_EmissiveColor\" \"u_DiffuseEnvTexture\" \"u_SpecularEnvTexture\" \"u_brdfTexture\" \"u_IsDoubleSided\" \"u_UseMeshTangents\" \"u_RoughnessOffset\" \"u_ScaleDiffBaseMR\" \"u_BurleyFactor\" \"u_ScaleFGDSpec\" \"u_UndoEdgeStretch\" \"u_ScaleIBL_Occl\" \"u_IsEmissiveInsRGB\" \"u_EnvRotationAngle\" \"u_FlipEnvMapZ\" \"u_IsEnvMapInsRGB\" \"u_IsEnvMapInRGBM\" \"u_IsBRDFsSRGB\" \"u_IsBaseColorInsRGB\"  ;\n\tsetAttr \".s\" -type \"string\" \"C:/Users/bugfa/OneDrive/Documents/maya/maya2glTF/PBR/shaders/glTF_PBR.ogsfx\";\n\tsetAttr \".t\" -type \"string\" \"Solid\";\n\tsetAttr \".u_LightColor_Name\" -type \"string\" \"u_LightColor\";\n\tsetAttr \".u_LightColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_LightColor\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_LightIntensity_Name\" -type \"string\" \"u_LightIntensity\";\n\tsetAttr \".u_LightIntensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightIntensity\" 1;\n\tsetAttr \".u_LightRotation_Name\" -type \"string\" \"u_LightRotation\";\n\tsetAttr \".u_LightRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightRotation\" 75;\n\tsetAttr \".u_LightPitch_Name\" -type \"string\" \"u_LightPitch\";\n\tsetAttr \".u_LightPitch_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightPitch\" 40;\n\tsetAttr \".u_BaseColorTexture_Name\" -type \"string\" \"u_BaseColorTexture\";\n\tsetAttr \".u_BaseColorTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_BaseColorTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_BaseColorFactor_Name\" -type \"string\" \"u_BaseColorFactor\";\n\tsetAttr \".u_BaseColorFactor_Type\" -type \"string\" \"color4x1\";\n\tsetAttr \".u_BaseColorFactorRGB\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_BaseColorFactorA\" 1;\n\tsetAttr \".u_MetallicTexture_Name\" -type \"string\" \"u_MetallicTexture\";\n\tsetAttr \".u_MetallicTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_MetallicTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_MetallicStrength_Name\" -type \"string\" \"u_MetallicStrength\";\n\tsetAttr \".u_MetallicStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_MetallicStrength\" 1;\n\tsetAttr \".u_RoughnessTexture_Name\" -type \"string\" \"u_RoughnessTexture\";\n\tsetAttr \".u_RoughnessTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_RoughnessTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_RoughnessStrength_Name\" -type \"string\" \"u_RoughnessStrength\";\n\tsetAttr \".u_RoughnessStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_RoughnessStrength\" 1;\n\tsetAttr \".u_OcclusionTexture_Name\" -type \"string\" \"u_OcclusionTexture\";\n\tsetAttr \".u_OcclusionTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_OcclusionTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_OcclusionStrength_Name\" -type \"string\" \"u_OcclusionStrength\";\n\tsetAttr \".u_OcclusionStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_OcclusionStrength\" 1;\n\tsetAttr \".u_NormalTexture_Name\" -type \"string\" \"u_NormalTexture\";\n\tsetAttr \".u_NormalTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_NormalTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_NormalScale_Name\" -type \"string\" \"u_NormalScale\";\n\tsetAttr \".u_NormalScale_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_NormalScale\" 1;\n\tsetAttr \".u_EmissiveTexture_Name\" -type \"string\" \"u_EmissiveTexture\";\n\tsetAttr \".u_EmissiveTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_EmissiveTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_EmissiveColor_Name\" -type \"string\" \"u_EmissiveColor\";\n\tsetAttr \".u_EmissiveColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_EmissiveColor\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_DiffuseEnvTexture_Name\" -type \"string\" \"u_DiffuseEnvTexture\";\n\tsetAttr \".u_DiffuseEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_DiffuseEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_SpecularEnvTexture_Name\" -type \"string\" \"u_SpecularEnvTexture\";\n\tsetAttr \".u_SpecularEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_SpecularEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_brdfTexture_Name\" -type \"string\" \"u_brdfTexture\";\n\tsetAttr \".u_brdfTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_brdfTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_IsDoubleSided_Name\" -type \"string\" \"u_IsDoubleSided\";\n\tsetAttr \".u_IsDoubleSided_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsDoubleSided\" no;\n\tsetAttr \".u_UseMeshTangents_Name\" -type \"string\" \"u_UseMeshTangents\";\n\tsetAttr \".u_UseMeshTangents_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UseMeshTangents\" no;\n\tsetAttr \".u_RoughnessOffset_Name\" -type \"string\" \"u_RoughnessOffset\";\n\tsetAttr \".u_RoughnessOffset_Type\" -type \"string\" \"int\";\n\tsetAttr \".u_RoughnessOffset\" 0;\n\tsetAttr \".u_ScaleDiffBaseMR_Name\" -type \"string\" \"u_ScaleDiffBaseMR\";\n\tsetAttr \".u_ScaleDiffBaseMR_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleDiffBaseMRXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleDiffBaseMRW\" 0;\n\tsetAttr \".u_BurleyFactor_Name\" -type \"string\" \"u_BurleyFactor\";\n\tsetAttr \".u_BurleyFactor_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_BurleyFactor\" 0;\n\tsetAttr \".u_ScaleFGDSpec_Name\" -type \"string\" \"u_ScaleFGDSpec\";\n\tsetAttr \".u_ScaleFGDSpec_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleFGDSpecXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleFGDSpecW\" 0;\n\tsetAttr \".u_UndoEdgeStretch_Name\" -type \"string\" \"u_UndoEdgeStretch\";\n\tsetAttr \".u_UndoEdgeStretch_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UndoEdgeStretch\" no;\n\tsetAttr \".u_ScaleIBL_Occl_Name\" -type \"string\" \"u_ScaleIBL_Occl\";\n\tsetAttr \".u_ScaleIBL_Occl_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleIBL_OcclXYZ\" -type \"float3\" 1 1 0 ;\n\tsetAttr \".u_ScaleIBL_OcclW\" 1;\n\tsetAttr \".u_IsEmissiveInsRGB_Name\" -type \"string\" \"u_IsEmissiveInsRGB\";\n\tsetAttr \".u_IsEmissiveInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEmissiveInsRGB\" yes;\n\tsetAttr \".u_EnvRotationAngle_Name\" -type \"string\" \"u_EnvRotationAngle\";\n\tsetAttr \".u_EnvRotationAngle_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_EnvRotationAngle\" 0;\n\tsetAttr \".u_FlipEnvMapZ_Name\" -type \"string\" \"u_FlipEnvMapZ\";\n\tsetAttr \".u_FlipEnvMapZ_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_FlipEnvMapZ\" yes;\n\tsetAttr \".u_IsEnvMapInsRGB_Name\" -type \"string\" \"u_IsEnvMapInsRGB\";\n\tsetAttr \".u_IsEnvMapInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInsRGB\" no;\n\tsetAttr \".u_IsEnvMapInRGBM_Name\" -type \"string\" \"u_IsEnvMapInRGBM\";\n\tsetAttr \".u_IsEnvMapInRGBM_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInRGBM\" no;\n\tsetAttr \".u_IsBRDFsSRGB_Name\" -type \"string\" \"u_IsBRDFsSRGB\";\n\tsetAttr \".u_IsBRDFsSRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBRDFsSRGB\" no;\n\tsetAttr \".u_IsBaseColorInsRGB_Name\" -type \"string\" \"u_IsBaseColorInsRGB\";\n\tsetAttr \".u_IsBaseColorInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBaseColorInsRGB\" yes;\n\tsetAttr \".Position_Name\" -type \"string\" \"Position\";\n\tsetAttr \".Position_Source\" -type \"string\" \"position\";\n\tsetAttr \".Normal_Name\" -type \"string\" \"Normal\";\n\tsetAttr \".Normal_Source\" -type \"string\" \"normal\";\n\tsetAttr \".Tangent_Name\" -type \"string\" \"Tangent\";\n\tsetAttr \".Tangent_Source\" -type \"string\" \"tangent:map1\";\n\tsetAttr \".Binormal_Name\" -type \"string\" \"Binormal\";\n\tsetAttr \".Binormal_Source\" -type \"string\" \"binormal:map1\";\n\tsetAttr \".TexCoord0_Name\" -type \"string\" \"TexCoord0\";\n\tsetAttr \".TexCoord0_Source\" -type \"string\" \"uv:map1\";\ncreateNode file -n \"file3\";\n\trename -uid \"C0771B11-42C5-1DF0-82D9-E8B83753123E\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/Users/bugfa/OneDrive/Documents/maya/maya2glTF/PBR/shaders//../images/damaged_helmet_diffuse_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture35\";\n\trename -uid \"58593AB1-4207-3216-2698-4182151AF57D\";\ncreateNode file -n \"file4\";\n\trename -uid \"F97DF029-448C-AE5F-0F70-04AC3F46A6B3\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/Users/bugfa/OneDrive/Documents/maya/maya2glTF/PBR/shaders//../images/damaged_helmet_specular_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture36\";\n\trename -uid \"842CEF47-4DD3-324F-C81B-698E34F538A6\";\ncreateNode file -n \"file5\";\n\trename -uid \"F16E495C-4477-0F3A-E9A0-9697BB3F07C2\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/Users/bugfa/OneDrive/Documents/maya/maya2glTF/PBR/shaders//../images/brdfLUT.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture37\";\n\trename -uid \"70F3A624-49D2-66BE-0BBA-3899B0403615\";\ncreateNode shadingEngine -n \"GLSLShader4SG\";\n\trename -uid \"6F76A9A4-4A38-D3F9-DFCF-68B9E44861CD\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo7\";\n\trename -uid \"4743F5A6-473F-BB24-7CBA-6EAA1674F1E2\";\ncreateNode file -n \"helmet:helmet_BaseColorTexture\";\n\trename -uid \"2ED4E0B1-4184-5355-4C49-878221492824\";\n\tsetAttr \".ftn\" -type \"string\" \"S:/Maya2glTF/maya/images/damaged_helmet_albedo.jpg\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture38\";\n\trename -uid \"00CB36A6-4A73-9719-3C06-C596F32C8D8D\";\ncreateNode file -n \"helmet:helmet_MetallicTexture\";\n\trename -uid \"9A383FE8-429D-3CC9-1888-60879AFACE84\";\n\tsetAttr \".ftn\" -type \"string\" \"S:/Maya2glTF/maya/images/damaged_helmet_metallic.jpg\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture39\";\n\trename -uid \"DFE86B88-4A85-CA63-E4C8-ADBB516A3FFD\";\ncreateNode file -n \"helmet:helmet_RoughnessTexture\";\n\trename -uid \"9B3819EB-40DC-3221-4BBF-97AADC02E0C1\";\n\tsetAttr \".ftn\" -type \"string\" \"S:/Maya2glTF/maya/images/damaged_helmet_orm.jpg\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture40\";\n\trename -uid \"DC481087-4EBF-300A-3BC0-3D9D8CC7AD39\";\ncreateNode file -n \"helmet:helmet_OcclusionTexture\";\n\trename -uid \"8A387FFA-4A46-5A2D-4145-31AA58202B15\";\n\tsetAttr \".ftn\" -type \"string\" \"S:/Maya2glTF/maya/images/damaged_helmet_orm.jpg\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture41\";\n\trename -uid \"E9F0AE0E-4721-80C5-66F3-94BAB16F7A60\";\ncreateNode file -n \"helmet:helmet_NormalTexture\";\n\trename -uid \"7C5DF973-4C07-54AD-E549-51BFB680B5C0\";\n\tsetAttr \".ftn\" -type \"string\" \"S:/Maya2glTF/maya/images/damaged_helmet_normal.png\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture42\";\n\trename -uid \"11D5EA92-49AF-99B8-5589-ED87CF23CB8B\";\ncreateNode file -n \"helmet:helmet_EmissiveTexture\";\n\trename -uid \"1C777429-43AA-756F-1F45-90B4C029C52D\";\n\tsetAttr \".ftn\" -type \"string\" \"S:/Maya2glTF/maya/images/damaged_helmet_emissive.jpg\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture43\";\n\trename -uid \"845E335E-4DBE-9BD4-0501-D197B558A872\";\ncreateNode mayaUsdLayerManager -n \"mayaUsdLayerManager1\";\n\trename -uid \"1DD92082-4EED-DE94-388D-82995401F635\";\n\tsetAttr \".sst\" -type \"string\" \"\";\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".dli\" 1;\n\tsetAttr \".fprt\" yes;\n\tsetAttr \".rtfm\" 1;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 10 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 13 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderUtilityList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 43 \".u\";\nselect -ne :defaultRenderingList1;\nselect -ne :lightList1;\nselect -ne :defaultTextureList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 22 \".tx\";\nselect -ne :standardSurface1;\n\tsetAttr \".b\" 0.80000001192092896;\n\tsetAttr \".bc\" -type \"float3\" 0.40000001 0.40000001 0.40000001 ;\n\tsetAttr \".s\" 0.20000000298023224;\n\tsetAttr \".sr\" 0.5;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultRenderGlobals;\n\taddAttr -ci true -h true -sn \"dss\" -ln \"defaultSurfaceShader\" -dt \"string\";\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".macc\";\n\tsetAttr -k on \".macd\";\n\tsetAttr -k on \".macq\";\n\tsetAttr -cb on \".ifg\";\n\tsetAttr -k on \".clip\";\n\tsetAttr -k on \".edm\";\n\tsetAttr -k on \".edl\";\n\tsetAttr \".ren\" -type \"string\" \"mayaHardware2\";\n\tsetAttr -av -k on \".esr\";\n\tsetAttr -k on \".ors\";\n\tsetAttr -cb on \".sdf\";\n\tsetAttr -cb on \".imfkey\" -type \"string\" \"exr\";\n\tsetAttr -k on \".gama\";\n\tsetAttr -cb on \".ar\";\n\tsetAttr -av \".bfs\";\n\tsetAttr -k on \".be\";\n\tsetAttr -k on \".fec\";\n\tsetAttr -k on \".ofc\";\n\tsetAttr -cb on \".ofe\";\n\tsetAttr -cb on \".efe\";\n\tsetAttr -cb on \".umfn\";\n\tsetAttr -cb on \".ufe\";\n\tsetAttr -k on \".comp\";\n\tsetAttr -k on \".cth\";\n\tsetAttr -k on \".soll\";\n\tsetAttr -k on \".rd\";\n\tsetAttr -k on \".lp\";\n\tsetAttr -k on \".sp\";\n\tsetAttr -k on \".shs\";\n\tsetAttr -k on \".lpr\";\n\tsetAttr -cb on \".gv\";\n\tsetAttr -cb on \".sv\";\n\tsetAttr -k on \".mm\";\n\tsetAttr -k on \".npu\";\n\tsetAttr -k on \".itf\";\n\tsetAttr -k on \".shp\";\n\tsetAttr -cb on \".isp\";\n\tsetAttr -k on \".uf\";\n\tsetAttr -k on \".oi\";\n\tsetAttr -k on \".rut\";\n\tsetAttr -av -k on \".mbf\";\n\tsetAttr -k on \".afp\";\n\tsetAttr -k on \".pfb\";\n\tsetAttr -cb on \".pfrm\";\n\tsetAttr -cb on \".pfom\";\n\tsetAttr -av -k on \".bll\";\n\tsetAttr -k on \".bls\";\n\tsetAttr -k on \".smv\";\n\tsetAttr -k on \".ubc\";\n\tsetAttr -k on \".mbc\";\n\tsetAttr -k on \".udbx\";\n\tsetAttr -k on \".smc\";\n\tsetAttr -k on \".kmv\";\n\tsetAttr -cb on \".isl\";\n\tsetAttr -cb on \".ism\";\n\tsetAttr -cb on \".imb\";\n\tsetAttr -k on \".rlen\";\n\tsetAttr -av -k on \".frts\";\n\tsetAttr -k on \".tlwd\";\n\tsetAttr -k on \".tlht\";\n\tsetAttr -k on \".jfc\";\n\tsetAttr -cb on \".rsb\";\n\tsetAttr -k on \".ope\";\n\tsetAttr -k on \".oppf\";\n\tsetAttr -cb on \".hbl\";\n\tsetAttr \".dss\" -type \"string\" \"lambert1\";\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :defaultLightSet;\nselect -ne :defaultColorMgtGlobals;\n\tsetAttr \".cfe\" yes;\n\tsetAttr \".cfp\" -type \"string\" \"<MAYA_RESOURCES>/OCIO-configs/Maya-legacy/config.ocio\";\n\tsetAttr \".vtn\" -type \"string\" \"sRGB gamma (legacy)\";\n\tsetAttr \".vn\" -type \"string\" \"sRGB gamma\";\n\tsetAttr \".dn\" -type \"string\" \"legacy\";\n\tsetAttr \".wsn\" -type \"string\" \"scene-linear Rec 709/sRGB\";\n\tsetAttr \".ote\" yes;\n\tsetAttr \".ovt\" no;\n\tsetAttr \".povt\" no;\n\tsetAttr \".otn\" -type \"string\" \"sRGB gamma (legacy)\";\n\tsetAttr \".potn\" -type \"string\" \"sRGB gamma (legacy)\";\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"node_damagedHelmet_FBXASC0456514SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader1SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"surfaceShader1SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader3SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"helmet:GLSLShader4SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader4SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"node_damagedHelmet_FBXASC0456514SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader1SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"surfaceShader1SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader3SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"helmet:GLSLShader4SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader4SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"Material_MR.oc\" \"node_damagedHelmet_FBXASC0456514SG.ss\";\nconnectAttr \"node_damagedHelmet_FBXASC0456514SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"Material_MR.msg\" \"materialInfo1.m\";\nconnectAttr \"file_albedo.oc\" \"GLSL_PBR_Shader.u_BaseColorTexture\";\nconnectAttr \"file_orm.oc\" \"GLSL_PBR_Shader.u_OcclusionTexture\";\nconnectAttr \"file_emissive.oc\" \"GLSL_PBR_Shader.u_EmissiveTexture\";\nconnectAttr \"file_normal.oc\" \"GLSL_PBR_Shader.u_NormalTexture\";\nconnectAttr \"file_diffuse_env.oc\" \"GLSL_PBR_Shader.u_DiffuseEnvTexture\";\nconnectAttr \"file_specular_env.oc\" \"GLSL_PBR_Shader.u_SpecularEnvTexture\";\nconnectAttr \"file_brdf.oc\" \"GLSL_PBR_Shader.u_brdfTexture\";\nconnectAttr \"file_orm.oc\" \"GLSL_PBR_Shader.u_MetallicTexture\";\nconnectAttr \"file_orm.oc\" \"GLSL_PBR_Shader.u_RoughnessTexture\";\nconnectAttr \"directionalLightShape1.ltd\" \"GLSL_PBR_Shader.Light_0_connected_light\"\n\t\t;\nconnectAttr \"directionalLightShape1.ltd\" \"GLSL_PBR_Shader.directionalLight1_connected_light\"\n\t\t;\nconnectAttr \"GLSL_PBR_Shader.oc\" \"GLSLShader1SG.ss\";\nconnectAttr \"GLSLShader1SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"GLSL_PBR_Shader.msg\" \"materialInfo2.m\";\nconnectAttr \"GLSL_PBR_Shader.msg\" \"materialInfo2.t\" -na;\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file_albedo.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file_albedo.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file_albedo.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file_albedo.ws\";\nconnectAttr \"place2dTexture1.c\" \"file_albedo.c\";\nconnectAttr \"place2dTexture1.tf\" \"file_albedo.tf\";\nconnectAttr \"place2dTexture1.rf\" \"file_albedo.rf\";\nconnectAttr \"place2dTexture1.mu\" \"file_albedo.mu\";\nconnectAttr \"place2dTexture1.mv\" \"file_albedo.mv\";\nconnectAttr \"place2dTexture1.s\" \"file_albedo.s\";\nconnectAttr \"place2dTexture1.wu\" \"file_albedo.wu\";\nconnectAttr \"place2dTexture1.wv\" \"file_albedo.wv\";\nconnectAttr \"place2dTexture1.re\" \"file_albedo.re\";\nconnectAttr \"place2dTexture1.of\" \"file_albedo.of\";\nconnectAttr \"place2dTexture1.r\" \"file_albedo.ro\";\nconnectAttr \"place2dTexture1.n\" \"file_albedo.n\";\nconnectAttr \"place2dTexture1.vt1\" \"file_albedo.vt1\";\nconnectAttr \"place2dTexture1.vt2\" \"file_albedo.vt2\";\nconnectAttr \"place2dTexture1.vt3\" \"file_albedo.vt3\";\nconnectAttr \"place2dTexture1.vc1\" \"file_albedo.vc1\";\nconnectAttr \"place2dTexture1.o\" \"file_albedo.uv\";\nconnectAttr \"place2dTexture1.ofs\" \"file_albedo.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file_normal.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file_normal.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file_normal.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file_normal.ws\";\nconnectAttr \"place2dTexture2.c\" \"file_normal.c\";\nconnectAttr \"place2dTexture2.tf\" \"file_normal.tf\";\nconnectAttr \"place2dTexture2.rf\" \"file_normal.rf\";\nconnectAttr \"place2dTexture2.mu\" \"file_normal.mu\";\nconnectAttr \"place2dTexture2.mv\" \"file_normal.mv\";\nconnectAttr \"place2dTexture2.s\" \"file_normal.s\";\nconnectAttr \"place2dTexture2.wu\" \"file_normal.wu\";\nconnectAttr \"place2dTexture2.wv\" \"file_normal.wv\";\nconnectAttr \"place2dTexture2.re\" \"file_normal.re\";\nconnectAttr \"place2dTexture2.of\" \"file_normal.of\";\nconnectAttr \"place2dTexture2.r\" \"file_normal.ro\";\nconnectAttr \"place2dTexture2.n\" \"file_normal.n\";\nconnectAttr \"place2dTexture2.vt1\" \"file_normal.vt1\";\nconnectAttr \"place2dTexture2.vt2\" \"file_normal.vt2\";\nconnectAttr \"place2dTexture2.vt3\" \"file_normal.vt3\";\nconnectAttr \"place2dTexture2.vc1\" \"file_normal.vc1\";\nconnectAttr \"place2dTexture2.o\" \"file_normal.uv\";\nconnectAttr \"place2dTexture2.ofs\" \"file_normal.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file_orm.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file_orm.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file_orm.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file_orm.ws\";\nconnectAttr \"place2dTexture3.c\" \"file_orm.c\";\nconnectAttr \"place2dTexture3.tf\" \"file_orm.tf\";\nconnectAttr \"place2dTexture3.rf\" \"file_orm.rf\";\nconnectAttr \"place2dTexture3.mu\" \"file_orm.mu\";\nconnectAttr \"place2dTexture3.mv\" \"file_orm.mv\";\nconnectAttr \"place2dTexture3.s\" \"file_orm.s\";\nconnectAttr \"place2dTexture3.wu\" \"file_orm.wu\";\nconnectAttr \"place2dTexture3.wv\" \"file_orm.wv\";\nconnectAttr \"place2dTexture3.re\" \"file_orm.re\";\nconnectAttr \"place2dTexture3.of\" \"file_orm.of\";\nconnectAttr \"place2dTexture3.r\" \"file_orm.ro\";\nconnectAttr \"place2dTexture3.n\" \"file_orm.n\";\nconnectAttr \"place2dTexture3.vt1\" \"file_orm.vt1\";\nconnectAttr \"place2dTexture3.vt2\" \"file_orm.vt2\";\nconnectAttr \"place2dTexture3.vt3\" \"file_orm.vt3\";\nconnectAttr \"place2dTexture3.vc1\" \"file_orm.vc1\";\nconnectAttr \"place2dTexture3.o\" \"file_orm.uv\";\nconnectAttr \"place2dTexture3.ofs\" \"file_orm.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file_diffuse_env.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file_diffuse_env.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file_diffuse_env.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file_diffuse_env.ws\";\nconnectAttr \"place2dTexture27.c\" \"file_diffuse_env.c\";\nconnectAttr \"place2dTexture27.tf\" \"file_diffuse_env.tf\";\nconnectAttr \"place2dTexture27.rf\" \"file_diffuse_env.rf\";\nconnectAttr \"place2dTexture27.mu\" \"file_diffuse_env.mu\";\nconnectAttr \"place2dTexture27.mv\" \"file_diffuse_env.mv\";\nconnectAttr \"place2dTexture27.s\" \"file_diffuse_env.s\";\nconnectAttr \"place2dTexture27.wu\" \"file_diffuse_env.wu\";\nconnectAttr \"place2dTexture27.wv\" \"file_diffuse_env.wv\";\nconnectAttr \"place2dTexture27.re\" \"file_diffuse_env.re\";\nconnectAttr \"place2dTexture27.of\" \"file_diffuse_env.of\";\nconnectAttr \"place2dTexture27.r\" \"file_diffuse_env.ro\";\nconnectAttr \"place2dTexture27.n\" \"file_diffuse_env.n\";\nconnectAttr \"place2dTexture27.vt1\" \"file_diffuse_env.vt1\";\nconnectAttr \"place2dTexture27.vt2\" \"file_diffuse_env.vt2\";\nconnectAttr \"place2dTexture27.vt3\" \"file_diffuse_env.vt3\";\nconnectAttr \"place2dTexture27.vc1\" \"file_diffuse_env.vc1\";\nconnectAttr \"place2dTexture27.o\" \"file_diffuse_env.uv\";\nconnectAttr \"place2dTexture27.ofs\" \"file_diffuse_env.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file_specular_env.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file_specular_env.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file_specular_env.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file_specular_env.ws\";\nconnectAttr \"place2dTexture28.c\" \"file_specular_env.c\";\nconnectAttr \"place2dTexture28.tf\" \"file_specular_env.tf\";\nconnectAttr \"place2dTexture28.rf\" \"file_specular_env.rf\";\nconnectAttr \"place2dTexture28.mu\" \"file_specular_env.mu\";\nconnectAttr \"place2dTexture28.mv\" \"file_specular_env.mv\";\nconnectAttr \"place2dTexture28.s\" \"file_specular_env.s\";\nconnectAttr \"place2dTexture28.wu\" \"file_specular_env.wu\";\nconnectAttr \"place2dTexture28.wv\" \"file_specular_env.wv\";\nconnectAttr \"place2dTexture28.re\" \"file_specular_env.re\";\nconnectAttr \"place2dTexture28.of\" \"file_specular_env.of\";\nconnectAttr \"place2dTexture28.r\" \"file_specular_env.ro\";\nconnectAttr \"place2dTexture28.n\" \"file_specular_env.n\";\nconnectAttr \"place2dTexture28.vt1\" \"file_specular_env.vt1\";\nconnectAttr \"place2dTexture28.vt2\" \"file_specular_env.vt2\";\nconnectAttr \"place2dTexture28.vt3\" \"file_specular_env.vt3\";\nconnectAttr \"place2dTexture28.vc1\" \"file_specular_env.vc1\";\nconnectAttr \"place2dTexture28.o\" \"file_specular_env.uv\";\nconnectAttr \"place2dTexture28.ofs\" \"file_specular_env.fs\";\nconnectAttr \"surfaceShader1.oc\" \"surfaceShader1SG.ss\";\nconnectAttr \"surfaceShader1SG.msg\" \"materialInfo3.sg\";\nconnectAttr \"surfaceShader1.msg\" \"materialInfo3.m\";\nconnectAttr \"surfaceShader1.msg\" \"materialInfo3.t\" -na;\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"lambert2SG.msg\" \"materialInfo4.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo4.m\";\nconnectAttr \"GLSLShader2.oc\" \"GLSLShader2SG.ss\";\nconnectAttr \"GLSLShader2SG.msg\" \"materialInfo5.sg\";\nconnectAttr \"GLSLShader2.msg\" \"materialInfo5.m\";\nconnectAttr \"GLSLShader3.oc\" \"GLSLShader3SG.ss\";\nconnectAttr \"GLSLShader3SG.msg\" \"materialInfo6.sg\";\nconnectAttr \"GLSLShader3.msg\" \"materialInfo6.m\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file_brdf.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file_brdf.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file_brdf.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file_brdf.ws\";\nconnectAttr \"place2dTexture31.c\" \"file_brdf.c\";\nconnectAttr \"place2dTexture31.tf\" \"file_brdf.tf\";\nconnectAttr \"place2dTexture31.rf\" \"file_brdf.rf\";\nconnectAttr \"place2dTexture31.mu\" \"file_brdf.mu\";\nconnectAttr \"place2dTexture31.mv\" \"file_brdf.mv\";\nconnectAttr \"place2dTexture31.s\" \"file_brdf.s\";\nconnectAttr \"place2dTexture31.wu\" \"file_brdf.wu\";\nconnectAttr \"place2dTexture31.wv\" \"file_brdf.wv\";\nconnectAttr \"place2dTexture31.re\" \"file_brdf.re\";\nconnectAttr \"place2dTexture31.of\" \"file_brdf.of\";\nconnectAttr \"place2dTexture31.r\" \"file_brdf.ro\";\nconnectAttr \"place2dTexture31.n\" \"file_brdf.n\";\nconnectAttr \"place2dTexture31.vt1\" \"file_brdf.vt1\";\nconnectAttr \"place2dTexture31.vt2\" \"file_brdf.vt2\";\nconnectAttr \"place2dTexture31.vt3\" \"file_brdf.vt3\";\nconnectAttr \"place2dTexture31.vc1\" \"file_brdf.vc1\";\nconnectAttr \"place2dTexture31.o\" \"file_brdf.uv\";\nconnectAttr \"place2dTexture31.ofs\" \"file_brdf.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file_emissive.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file_emissive.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file_emissive.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file_emissive.ws\";\nconnectAttr \"place2dTexture32.c\" \"file_emissive.c\";\nconnectAttr \"place2dTexture32.tf\" \"file_emissive.tf\";\nconnectAttr \"place2dTexture32.rf\" \"file_emissive.rf\";\nconnectAttr \"place2dTexture32.mu\" \"file_emissive.mu\";\nconnectAttr \"place2dTexture32.mv\" \"file_emissive.mv\";\nconnectAttr \"place2dTexture32.s\" \"file_emissive.s\";\nconnectAttr \"place2dTexture32.wu\" \"file_emissive.wu\";\nconnectAttr \"place2dTexture32.wv\" \"file_emissive.wv\";\nconnectAttr \"place2dTexture32.re\" \"file_emissive.re\";\nconnectAttr \"place2dTexture32.of\" \"file_emissive.of\";\nconnectAttr \"place2dTexture32.r\" \"file_emissive.ro\";\nconnectAttr \"place2dTexture32.n\" \"file_emissive.n\";\nconnectAttr \"place2dTexture32.vt1\" \"file_emissive.vt1\";\nconnectAttr \"place2dTexture32.vt2\" \"file_emissive.vt2\";\nconnectAttr \"place2dTexture32.vt3\" \"file_emissive.vt3\";\nconnectAttr \"place2dTexture32.vc1\" \"file_emissive.vc1\";\nconnectAttr \"place2dTexture32.o\" \"file_emissive.uv\";\nconnectAttr \"place2dTexture32.ofs\" \"file_emissive.fs\";\nconnectAttr \"file_albedo.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[0].dn\";\nconnectAttr \"place2dTexture1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[1].dn\";\nconnectAttr \"file_emissive.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[2].dn\";\nconnectAttr \"file_brdf.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[3].dn\";\nconnectAttr \"place2dTexture31.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[4].dn\"\n\t\t;\nconnectAttr \"place2dTexture32.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[5].dn\"\n\t\t;\nconnectAttr \"place2dTexture33.c\" \"file1.c\";\nconnectAttr \"place2dTexture33.tf\" \"file1.tf\";\nconnectAttr \"place2dTexture33.rf\" \"file1.rf\";\nconnectAttr \"place2dTexture33.mu\" \"file1.mu\";\nconnectAttr \"place2dTexture33.mv\" \"file1.mv\";\nconnectAttr \"place2dTexture33.s\" \"file1.s\";\nconnectAttr \"place2dTexture33.wu\" \"file1.wu\";\nconnectAttr \"place2dTexture33.wv\" \"file1.wv\";\nconnectAttr \"place2dTexture33.re\" \"file1.re\";\nconnectAttr \"place2dTexture33.r\" \"file1.ro\";\nconnectAttr \"place2dTexture33.of\" \"file1.of\";\nconnectAttr \"place2dTexture33.n\" \"file1.n\";\nconnectAttr \"place2dTexture33.vt1\" \"file1.vt1\";\nconnectAttr \"place2dTexture33.vt2\" \"file1.vt2\";\nconnectAttr \"place2dTexture33.vt3\" \"file1.vt3\";\nconnectAttr \"place2dTexture33.vc1\" \"file1.vc1\";\nconnectAttr \"place2dTexture33.o\" \"file1.uv\";\nconnectAttr \"place2dTexture33.ofs\" \"file1.fs\";\nconnectAttr \"place2dTexture34.c\" \"file2.c\";\nconnectAttr \"place2dTexture34.tf\" \"file2.tf\";\nconnectAttr \"place2dTexture34.rf\" \"file2.rf\";\nconnectAttr \"place2dTexture34.mu\" \"file2.mu\";\nconnectAttr \"place2dTexture34.mv\" \"file2.mv\";\nconnectAttr \"place2dTexture34.s\" \"file2.s\";\nconnectAttr \"place2dTexture34.wu\" \"file2.wu\";\nconnectAttr \"place2dTexture34.wv\" \"file2.wv\";\nconnectAttr \"place2dTexture34.re\" \"file2.re\";\nconnectAttr \"place2dTexture34.r\" \"file2.ro\";\nconnectAttr \"place2dTexture34.of\" \"file2.of\";\nconnectAttr \"place2dTexture34.n\" \"file2.n\";\nconnectAttr \"place2dTexture34.vt1\" \"file2.vt1\";\nconnectAttr \"place2dTexture34.vt2\" \"file2.vt2\";\nconnectAttr \"place2dTexture34.vt3\" \"file2.vt3\";\nconnectAttr \"place2dTexture34.vc1\" \"file2.vc1\";\nconnectAttr \"place2dTexture34.o\" \"file2.uv\";\nconnectAttr \"place2dTexture34.ofs\" \"file2.fs\";\nconnectAttr \"helmet:GLSLShader4SG1.oc\" \"helmet:GLSLShader4SG.ss\";\nconnectAttr \"helmet:GLSLShader4SG.msg\" \"helmet:materialInfo1.sg\";\nconnectAttr \"helmet:GLSLShader4SG1.msg\" \"helmet:materialInfo1.m\";\nconnectAttr \"file3.oc\" \"GLSLShader4.u_DiffuseEnvTexture\";\nconnectAttr \"file4.oc\" \"GLSLShader4.u_SpecularEnvTexture\";\nconnectAttr \"file5.oc\" \"GLSLShader4.u_brdfTexture\";\nconnectAttr \"helmet:helmet_BaseColorTexture.oc\" \"GLSLShader4.u_BaseColorTexture\"\n\t\t;\nconnectAttr \"helmet:helmet_MetallicTexture.oc\" \"GLSLShader4.u_MetallicTexture\";\nconnectAttr \"helmet:helmet_RoughnessTexture.oc\" \"GLSLShader4.u_RoughnessTexture\"\n\t\t;\nconnectAttr \"helmet:helmet_OcclusionTexture.oc\" \"GLSLShader4.u_OcclusionTexture\"\n\t\t;\nconnectAttr \"helmet:helmet_NormalTexture.oc\" \"GLSLShader4.u_NormalTexture\";\nconnectAttr \"helmet:helmet_EmissiveTexture.oc\" \"GLSLShader4.u_EmissiveTexture\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file3.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file3.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file3.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file3.ws\";\nconnectAttr \"place2dTexture35.c\" \"file3.c\";\nconnectAttr \"place2dTexture35.tf\" \"file3.tf\";\nconnectAttr \"place2dTexture35.rf\" \"file3.rf\";\nconnectAttr \"place2dTexture35.mu\" \"file3.mu\";\nconnectAttr \"place2dTexture35.mv\" \"file3.mv\";\nconnectAttr \"place2dTexture35.s\" \"file3.s\";\nconnectAttr \"place2dTexture35.wu\" \"file3.wu\";\nconnectAttr \"place2dTexture35.wv\" \"file3.wv\";\nconnectAttr \"place2dTexture35.re\" \"file3.re\";\nconnectAttr \"place2dTexture35.r\" \"file3.ro\";\nconnectAttr \"place2dTexture35.of\" \"file3.of\";\nconnectAttr \"place2dTexture35.n\" \"file3.n\";\nconnectAttr \"place2dTexture35.vt1\" \"file3.vt1\";\nconnectAttr \"place2dTexture35.vt2\" \"file3.vt2\";\nconnectAttr \"place2dTexture35.vt3\" \"file3.vt3\";\nconnectAttr \"place2dTexture35.vc1\" \"file3.vc1\";\nconnectAttr \"place2dTexture35.o\" \"file3.uv\";\nconnectAttr \"place2dTexture35.ofs\" \"file3.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file4.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file4.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file4.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file4.ws\";\nconnectAttr \"place2dTexture36.c\" \"file4.c\";\nconnectAttr \"place2dTexture36.tf\" \"file4.tf\";\nconnectAttr \"place2dTexture36.rf\" \"file4.rf\";\nconnectAttr \"place2dTexture36.mu\" \"file4.mu\";\nconnectAttr \"place2dTexture36.mv\" \"file4.mv\";\nconnectAttr \"place2dTexture36.s\" \"file4.s\";\nconnectAttr \"place2dTexture36.wu\" \"file4.wu\";\nconnectAttr \"place2dTexture36.wv\" \"file4.wv\";\nconnectAttr \"place2dTexture36.re\" \"file4.re\";\nconnectAttr \"place2dTexture36.r\" \"file4.ro\";\nconnectAttr \"place2dTexture36.of\" \"file4.of\";\nconnectAttr \"place2dTexture36.n\" \"file4.n\";\nconnectAttr \"place2dTexture36.vt1\" \"file4.vt1\";\nconnectAttr \"place2dTexture36.vt2\" \"file4.vt2\";\nconnectAttr \"place2dTexture36.vt3\" \"file4.vt3\";\nconnectAttr \"place2dTexture36.vc1\" \"file4.vc1\";\nconnectAttr \"place2dTexture36.o\" \"file4.uv\";\nconnectAttr \"place2dTexture36.ofs\" \"file4.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file5.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file5.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file5.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file5.ws\";\nconnectAttr \"place2dTexture37.c\" \"file5.c\";\nconnectAttr \"place2dTexture37.tf\" \"file5.tf\";\nconnectAttr \"place2dTexture37.rf\" \"file5.rf\";\nconnectAttr \"place2dTexture37.mu\" \"file5.mu\";\nconnectAttr \"place2dTexture37.mv\" \"file5.mv\";\nconnectAttr \"place2dTexture37.s\" \"file5.s\";\nconnectAttr \"place2dTexture37.wu\" \"file5.wu\";\nconnectAttr \"place2dTexture37.wv\" \"file5.wv\";\nconnectAttr \"place2dTexture37.re\" \"file5.re\";\nconnectAttr \"place2dTexture37.r\" \"file5.ro\";\nconnectAttr \"place2dTexture37.of\" \"file5.of\";\nconnectAttr \"place2dTexture37.n\" \"file5.n\";\nconnectAttr \"place2dTexture37.vt1\" \"file5.vt1\";\nconnectAttr \"place2dTexture37.vt2\" \"file5.vt2\";\nconnectAttr \"place2dTexture37.vt3\" \"file5.vt3\";\nconnectAttr \"place2dTexture37.vc1\" \"file5.vc1\";\nconnectAttr \"place2dTexture37.o\" \"file5.uv\";\nconnectAttr \"place2dTexture37.ofs\" \"file5.fs\";\nconnectAttr \"GLSLShader4.oc\" \"GLSLShader4SG.ss\";\nconnectAttr \"helmet:helmetShape.iog\" \"GLSLShader4SG.dsm\" -na;\nconnectAttr \"GLSLShader4SG.msg\" \"materialInfo7.sg\";\nconnectAttr \"GLSLShader4.msg\" \"materialInfo7.m\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"helmet:helmet_BaseColorTexture.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"helmet:helmet_BaseColorTexture.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"helmet:helmet_BaseColorTexture.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"helmet:helmet_BaseColorTexture.ws\";\nconnectAttr \"place2dTexture38.c\" \"helmet:helmet_BaseColorTexture.c\";\nconnectAttr \"place2dTexture38.tf\" \"helmet:helmet_BaseColorTexture.tf\";\nconnectAttr \"place2dTexture38.rf\" \"helmet:helmet_BaseColorTexture.rf\";\nconnectAttr \"place2dTexture38.mu\" \"helmet:helmet_BaseColorTexture.mu\";\nconnectAttr \"place2dTexture38.mv\" \"helmet:helmet_BaseColorTexture.mv\";\nconnectAttr \"place2dTexture38.s\" \"helmet:helmet_BaseColorTexture.s\";\nconnectAttr \"place2dTexture38.wu\" \"helmet:helmet_BaseColorTexture.wu\";\nconnectAttr \"place2dTexture38.wv\" \"helmet:helmet_BaseColorTexture.wv\";\nconnectAttr \"place2dTexture38.re\" \"helmet:helmet_BaseColorTexture.re\";\nconnectAttr \"place2dTexture38.of\" \"helmet:helmet_BaseColorTexture.of\";\nconnectAttr \"place2dTexture38.r\" \"helmet:helmet_BaseColorTexture.ro\";\nconnectAttr \"place2dTexture38.n\" \"helmet:helmet_BaseColorTexture.n\";\nconnectAttr \"place2dTexture38.vt1\" \"helmet:helmet_BaseColorTexture.vt1\";\nconnectAttr \"place2dTexture38.vt2\" \"helmet:helmet_BaseColorTexture.vt2\";\nconnectAttr \"place2dTexture38.vt3\" \"helmet:helmet_BaseColorTexture.vt3\";\nconnectAttr \"place2dTexture38.vc1\" \"helmet:helmet_BaseColorTexture.vc1\";\nconnectAttr \"place2dTexture38.o\" \"helmet:helmet_BaseColorTexture.uv\";\nconnectAttr \"place2dTexture38.ofs\" \"helmet:helmet_BaseColorTexture.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"helmet:helmet_MetallicTexture.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"helmet:helmet_MetallicTexture.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"helmet:helmet_MetallicTexture.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"helmet:helmet_MetallicTexture.ws\";\nconnectAttr \"place2dTexture39.c\" \"helmet:helmet_MetallicTexture.c\";\nconnectAttr \"place2dTexture39.tf\" \"helmet:helmet_MetallicTexture.tf\";\nconnectAttr \"place2dTexture39.rf\" \"helmet:helmet_MetallicTexture.rf\";\nconnectAttr \"place2dTexture39.mu\" \"helmet:helmet_MetallicTexture.mu\";\nconnectAttr \"place2dTexture39.mv\" \"helmet:helmet_MetallicTexture.mv\";\nconnectAttr \"place2dTexture39.s\" \"helmet:helmet_MetallicTexture.s\";\nconnectAttr \"place2dTexture39.wu\" \"helmet:helmet_MetallicTexture.wu\";\nconnectAttr \"place2dTexture39.wv\" \"helmet:helmet_MetallicTexture.wv\";\nconnectAttr \"place2dTexture39.re\" \"helmet:helmet_MetallicTexture.re\";\nconnectAttr \"place2dTexture39.of\" \"helmet:helmet_MetallicTexture.of\";\nconnectAttr \"place2dTexture39.r\" \"helmet:helmet_MetallicTexture.ro\";\nconnectAttr \"place2dTexture39.n\" \"helmet:helmet_MetallicTexture.n\";\nconnectAttr \"place2dTexture39.vt1\" \"helmet:helmet_MetallicTexture.vt1\";\nconnectAttr \"place2dTexture39.vt2\" \"helmet:helmet_MetallicTexture.vt2\";\nconnectAttr \"place2dTexture39.vt3\" \"helmet:helmet_MetallicTexture.vt3\";\nconnectAttr \"place2dTexture39.vc1\" \"helmet:helmet_MetallicTexture.vc1\";\nconnectAttr \"place2dTexture39.o\" \"helmet:helmet_MetallicTexture.uv\";\nconnectAttr \"place2dTexture39.ofs\" \"helmet:helmet_MetallicTexture.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"helmet:helmet_RoughnessTexture.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"helmet:helmet_RoughnessTexture.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"helmet:helmet_RoughnessTexture.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"helmet:helmet_RoughnessTexture.ws\";\nconnectAttr \"place2dTexture40.c\" \"helmet:helmet_RoughnessTexture.c\";\nconnectAttr \"place2dTexture40.tf\" \"helmet:helmet_RoughnessTexture.tf\";\nconnectAttr \"place2dTexture40.rf\" \"helmet:helmet_RoughnessTexture.rf\";\nconnectAttr \"place2dTexture40.mu\" \"helmet:helmet_RoughnessTexture.mu\";\nconnectAttr \"place2dTexture40.mv\" \"helmet:helmet_RoughnessTexture.mv\";\nconnectAttr \"place2dTexture40.s\" \"helmet:helmet_RoughnessTexture.s\";\nconnectAttr \"place2dTexture40.wu\" \"helmet:helmet_RoughnessTexture.wu\";\nconnectAttr \"place2dTexture40.wv\" \"helmet:helmet_RoughnessTexture.wv\";\nconnectAttr \"place2dTexture40.re\" \"helmet:helmet_RoughnessTexture.re\";\nconnectAttr \"place2dTexture40.of\" \"helmet:helmet_RoughnessTexture.of\";\nconnectAttr \"place2dTexture40.r\" \"helmet:helmet_RoughnessTexture.ro\";\nconnectAttr \"place2dTexture40.n\" \"helmet:helmet_RoughnessTexture.n\";\nconnectAttr \"place2dTexture40.vt1\" \"helmet:helmet_RoughnessTexture.vt1\";\nconnectAttr \"place2dTexture40.vt2\" \"helmet:helmet_RoughnessTexture.vt2\";\nconnectAttr \"place2dTexture40.vt3\" \"helmet:helmet_RoughnessTexture.vt3\";\nconnectAttr \"place2dTexture40.vc1\" \"helmet:helmet_RoughnessTexture.vc1\";\nconnectAttr \"place2dTexture40.o\" \"helmet:helmet_RoughnessTexture.uv\";\nconnectAttr \"place2dTexture40.ofs\" \"helmet:helmet_RoughnessTexture.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"helmet:helmet_OcclusionTexture.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"helmet:helmet_OcclusionTexture.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"helmet:helmet_OcclusionTexture.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"helmet:helmet_OcclusionTexture.ws\";\nconnectAttr \"place2dTexture41.c\" \"helmet:helmet_OcclusionTexture.c\";\nconnectAttr \"place2dTexture41.tf\" \"helmet:helmet_OcclusionTexture.tf\";\nconnectAttr \"place2dTexture41.rf\" \"helmet:helmet_OcclusionTexture.rf\";\nconnectAttr \"place2dTexture41.mu\" \"helmet:helmet_OcclusionTexture.mu\";\nconnectAttr \"place2dTexture41.mv\" \"helmet:helmet_OcclusionTexture.mv\";\nconnectAttr \"place2dTexture41.s\" \"helmet:helmet_OcclusionTexture.s\";\nconnectAttr \"place2dTexture41.wu\" \"helmet:helmet_OcclusionTexture.wu\";\nconnectAttr \"place2dTexture41.wv\" \"helmet:helmet_OcclusionTexture.wv\";\nconnectAttr \"place2dTexture41.re\" \"helmet:helmet_OcclusionTexture.re\";\nconnectAttr \"place2dTexture41.of\" \"helmet:helmet_OcclusionTexture.of\";\nconnectAttr \"place2dTexture41.r\" \"helmet:helmet_OcclusionTexture.ro\";\nconnectAttr \"place2dTexture41.n\" \"helmet:helmet_OcclusionTexture.n\";\nconnectAttr \"place2dTexture41.vt1\" \"helmet:helmet_OcclusionTexture.vt1\";\nconnectAttr \"place2dTexture41.vt2\" \"helmet:helmet_OcclusionTexture.vt2\";\nconnectAttr \"place2dTexture41.vt3\" \"helmet:helmet_OcclusionTexture.vt3\";\nconnectAttr \"place2dTexture41.vc1\" \"helmet:helmet_OcclusionTexture.vc1\";\nconnectAttr \"place2dTexture41.o\" \"helmet:helmet_OcclusionTexture.uv\";\nconnectAttr \"place2dTexture41.ofs\" \"helmet:helmet_OcclusionTexture.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"helmet:helmet_NormalTexture.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"helmet:helmet_NormalTexture.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"helmet:helmet_NormalTexture.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"helmet:helmet_NormalTexture.ws\";\nconnectAttr \"place2dTexture42.c\" \"helmet:helmet_NormalTexture.c\";\nconnectAttr \"place2dTexture42.tf\" \"helmet:helmet_NormalTexture.tf\";\nconnectAttr \"place2dTexture42.rf\" \"helmet:helmet_NormalTexture.rf\";\nconnectAttr \"place2dTexture42.mu\" \"helmet:helmet_NormalTexture.mu\";\nconnectAttr \"place2dTexture42.mv\" \"helmet:helmet_NormalTexture.mv\";\nconnectAttr \"place2dTexture42.s\" \"helmet:helmet_NormalTexture.s\";\nconnectAttr \"place2dTexture42.wu\" \"helmet:helmet_NormalTexture.wu\";\nconnectAttr \"place2dTexture42.wv\" \"helmet:helmet_NormalTexture.wv\";\nconnectAttr \"place2dTexture42.re\" \"helmet:helmet_NormalTexture.re\";\nconnectAttr \"place2dTexture42.of\" \"helmet:helmet_NormalTexture.of\";\nconnectAttr \"place2dTexture42.r\" \"helmet:helmet_NormalTexture.ro\";\nconnectAttr \"place2dTexture42.n\" \"helmet:helmet_NormalTexture.n\";\nconnectAttr \"place2dTexture42.vt1\" \"helmet:helmet_NormalTexture.vt1\";\nconnectAttr \"place2dTexture42.vt2\" \"helmet:helmet_NormalTexture.vt2\";\nconnectAttr \"place2dTexture42.vt3\" \"helmet:helmet_NormalTexture.vt3\";\nconnectAttr \"place2dTexture42.vc1\" \"helmet:helmet_NormalTexture.vc1\";\nconnectAttr \"place2dTexture42.o\" \"helmet:helmet_NormalTexture.uv\";\nconnectAttr \"place2dTexture42.ofs\" \"helmet:helmet_NormalTexture.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"helmet:helmet_EmissiveTexture.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"helmet:helmet_EmissiveTexture.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"helmet:helmet_EmissiveTexture.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"helmet:helmet_EmissiveTexture.ws\";\nconnectAttr \"place2dTexture43.c\" \"helmet:helmet_EmissiveTexture.c\";\nconnectAttr \"place2dTexture43.tf\" \"helmet:helmet_EmissiveTexture.tf\";\nconnectAttr \"place2dTexture43.rf\" \"helmet:helmet_EmissiveTexture.rf\";\nconnectAttr \"place2dTexture43.mu\" \"helmet:helmet_EmissiveTexture.mu\";\nconnectAttr \"place2dTexture43.mv\" \"helmet:helmet_EmissiveTexture.mv\";\nconnectAttr \"place2dTexture43.s\" \"helmet:helmet_EmissiveTexture.s\";\nconnectAttr \"place2dTexture43.wu\" \"helmet:helmet_EmissiveTexture.wu\";\nconnectAttr \"place2dTexture43.wv\" \"helmet:helmet_EmissiveTexture.wv\";\nconnectAttr \"place2dTexture43.re\" \"helmet:helmet_EmissiveTexture.re\";\nconnectAttr \"place2dTexture43.of\" \"helmet:helmet_EmissiveTexture.of\";\nconnectAttr \"place2dTexture43.r\" \"helmet:helmet_EmissiveTexture.ro\";\nconnectAttr \"place2dTexture43.n\" \"helmet:helmet_EmissiveTexture.n\";\nconnectAttr \"place2dTexture43.vt1\" \"helmet:helmet_EmissiveTexture.vt1\";\nconnectAttr \"place2dTexture43.vt2\" \"helmet:helmet_EmissiveTexture.vt2\";\nconnectAttr \"place2dTexture43.vt3\" \"helmet:helmet_EmissiveTexture.vt3\";\nconnectAttr \"place2dTexture43.vc1\" \"helmet:helmet_EmissiveTexture.vc1\";\nconnectAttr \"place2dTexture43.o\" \"helmet:helmet_EmissiveTexture.uv\";\nconnectAttr \"place2dTexture43.ofs\" \"helmet:helmet_EmissiveTexture.fs\";\nconnectAttr \"node_damagedHelmet_FBXASC0456514SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader1SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"surfaceShader1SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader3SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"helmet:GLSLShader4SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader4SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"Material_MR.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"GLSL_PBR_Shader.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"surfaceShader1.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"GLSLShader2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"GLSLShader3.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"helmet:GLSLShader4SG1.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"GLSLShader4.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"place2dTexture1.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture2.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture3.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture4.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture5.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture6.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture7.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture8.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture9.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture10.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture11.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture12.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture13.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture14.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture15.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture16.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture17.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture18.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture19.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture20.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture21.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture22.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture23.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture24.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture25.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture26.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture27.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture28.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture29.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture30.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture31.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture32.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture33.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture34.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture35.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture36.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture37.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture38.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture39.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture40.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture41.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture42.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture43.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"directionalLightShape1.ltd\" \":lightList1.l\" -na;\nconnectAttr \"file_albedo.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file_normal.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file_orm.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"envCube1.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"envCube2.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"layeredTexture1.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"envCube3.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file_diffuse_env.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file_specular_env.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file_brdf.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file_emissive.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file1.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file2.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file3.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file4.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file5.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"helmet:helmet_BaseColorTexture.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"helmet:helmet_MetallicTexture.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"helmet:helmet_RoughnessTexture.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"helmet:helmet_OcclusionTexture.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"helmet:helmet_NormalTexture.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"helmet:helmet_EmissiveTexture.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"directionalLight1.iog\" \":defaultLightSet.dsm\" -na;\n// End of DamagedHelmet2024.ma\n"
  },
  {
    "path": "maya/scenes/DoubleSidedTest1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: DoubleSidedTest1.ma\n//Last modified: Sun, Feb 03, 2019 11:49:19 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\nrequires -nodeType \"GLSLShader\" \"glslShader\" \"1.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"1F5DFF88-47A3-B6A1-F79C-BEA0F0BD2719\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -1.365643492049053 2.2164128395402236 -2.2025574726344805 ;\n\tsetAttr \".r\" -type \"double3\" -40.538352729583949 211.79999999996875 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"98C0E0FA-4312-E9CC-26A9-CBBF2714A3B2\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 3.4100919991870335;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"D6E39F9F-4DCD-9F1E-2AD7-AEBDEFAE2A37\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"B6920833-4D3B-7C12-E956-E08725E64D8E\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"C801C684-4296-F9EC-D872-509B2BEFEDE3\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"6FAC90F6-4379-4AF8-F242-D19EC5301C6B\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"FA041283-4295-FE06-4A46-B692907AD8F7\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"62D56270-4DEA-78E7-2574-CC8C94A5E895\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"78DDD123-4044-0CC4-7074-DAB60CB5D7AF\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"0CD4AD39-4A45-1FAC-2C9B-0F989542D882\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"98845F90-4FF0-BD41-1D32-D0A51BBD8BA1\";\n\tsetAttr \".t\" -type \"double3\" 2.808697827574921 2.5318308515546839 3.1858423267210894 ;\n\tsetAttr \".r\" -type \"double3\" -30.800148163827185 41.399999999999956 -2.1200558225533234e-15 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"2B610285-4C78-8471-071B-D98A5182057A\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 4.9445467212107257;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"20D03C34-4430-E7AC-2DC2-77B319BC1223\";\n\tsetAttr -s 3 \".lnk\";\n\tsetAttr -s 3 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"29F51202-4F98-5633-355F-C3AC3551C9FD\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"3B865EE7-461F-FD81-DFAF-30BF9B4ECAE9\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"20520D8C-4A04-8C2C-B3B2-689C15FA5E8C\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"2D7D0211-47EC-BFAB-5CF6-AB8AAE9FF7EE\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"01489C7A-4BAF-AA66-2097-5E9D4EBFAD6A\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"6C8DF673-4D6F-8B73-5243-D8A0EF78180A\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"D42AA5F7-4323-AFD9-E215-C590E02802E4\";\n\tsetAttr \".cuv\" 4;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"01D8D680-4E3D-A157-CF44-81B3FE2640DF\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/Users/bugfa/Documents/maya/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"untitled\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2018 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 1;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\ncreateNode GLSLShader -n \"GLSLShader1\";\n\trename -uid \"7613C4CA-44A5-0AAC-DC17-8AA70B0BEAC2\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Name\" -ln \"u_LightColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Type\" -ln \"u_LightColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_LightColor\" -ln \"u_LightColor\" -nn \"Light Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_LightColorR\" -ln \"u_LightColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorG\" -ln \"u_LightColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorB\" -ln \"u_LightColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Name\" -ln \"u_LightIntensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Type\" -ln \"u_LightIntensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightIntensity\" -ln \"u_LightIntensity\" -nn \"Light Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 10 -smn 0 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Name\" -ln \"u_LightRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Type\" -ln \"u_LightRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightRotation\" -ln \"u_LightRotation\" -nn \"Light rotation (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 75 -min 0 -max 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Name\" -ln \"u_LightPitch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Type\" -ln \"u_LightPitch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightPitch\" -ln \"u_LightPitch\" -nn \"Light pitch (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 40 -min -90 -max 90 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Name\" -ln \"u_BaseColorTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Type\" -ln \"u_BaseColorTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorTexture\" -ln \"u_BaseColorTexture\" \n\t\t-nn \"Base color map (sRGB)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureR\" -ln \"u_BaseColorTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureG\" -ln \"u_BaseColorTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureB\" -ln \"u_BaseColorTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Name\" -ln \"u_BaseColorFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Type\" -ln \"u_BaseColorFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactor\" -ln \"u_BaseColorFactor\" -nn \"Base color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorFactorRGB\" -ln \"u_BaseColorFactorRGB\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_BaseColorFactor\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorR\" -ln \"u_BaseColorFactorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorG\" -ln \"u_BaseColorFactorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorB\" -ln \"u_BaseColorFactorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorA\" -ln \"u_BaseColorFactorA\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactor\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Name\" -ln \"u_MetallicTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Type\" -ln \"u_MetallicTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_MetallicTexture\" -ln \"u_MetallicTexture\" -nn \"Metallic map (B,LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_MetallicTextureR\" -ln \"u_MetallicTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureG\" -ln \"u_MetallicTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureB\" -ln \"u_MetallicTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Name\" -ln \"u_MetallicStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Type\" -ln \"u_MetallicStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_MetallicStrength\" -ln \"u_MetallicStrength\" -nn \"Metallic strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Name\" -ln \"u_RoughnessTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Type\" -ln \"u_RoughnessTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_RoughnessTexture\" -ln \"u_RoughnessTexture\" \n\t\t-nn \"Roughness map (G,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureR\" -ln \"u_RoughnessTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureG\" -ln \"u_RoughnessTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureB\" -ln \"u_RoughnessTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Name\" -ln \"u_RoughnessStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Type\" -ln \"u_RoughnessStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessStrength\" -ln \"u_RoughnessStrength\" -nn \"Roughness strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Name\" -ln \"u_OcclusionTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Type\" -ln \"u_OcclusionTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_OcclusionTexture\" -ln \"u_OcclusionTexture\" \n\t\t-nn \"Occlusion map (R,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureR\" -ln \"u_OcclusionTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureG\" -ln \"u_OcclusionTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureB\" -ln \"u_OcclusionTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Name\" -ln \"u_OcclusionStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Type\" -ln \"u_OcclusionStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_OcclusionStrength\" -ln \"u_OcclusionStrength\" -nn \"Occlusion strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Name\" -ln \"u_NormalTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Type\" -ln \"u_NormalTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_NormalTexture\" -ln \"u_NormalTexture\" -nn \"Normal map (LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_NormalTextureR\" -ln \"u_NormalTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureG\" -ln \"u_NormalTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureB\" -ln \"u_NormalTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Name\" -ln \"u_NormalScale_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Type\" -ln \"u_NormalScale_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_NormalScale\" -ln \"u_NormalScale\" -nn \"Normal scale\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Name\" -ln \"u_EmissiveTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Type\" -ln \"u_EmissiveTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveTexture\" -ln \"u_EmissiveTexture\" -nn \"Emissive map (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureR\" -ln \"u_EmissiveTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureG\" -ln \"u_EmissiveTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureB\" -ln \"u_EmissiveTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Name\" -ln \"u_EmissiveColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Type\" -ln \"u_EmissiveColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveColor\" -ln \"u_EmissiveColor\" -nn \"Emissive color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveColorR\" -ln \"u_EmissiveColorR\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorG\" -ln \"u_EmissiveColorG\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorB\" -ln \"u_EmissiveColorB\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Name\" -ln \"u_IsDoubleSided_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Type\" -ln \"u_IsDoubleSided_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsDoubleSided\" -ln \"u_IsDoubleSided\" -nn \"Double sided material?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Name\" -ln \"u_DiffuseEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Type\" -ln \"u_DiffuseEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_DiffuseEnvTexture\" -ln \"u_DiffuseEnvTexture\" \n\t\t-nn \"Diffuse env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureR\" -ln \"u_DiffuseEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureG\" -ln \"u_DiffuseEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureB\" -ln \"u_DiffuseEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Name\" -ln \"u_SpecularEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Type\" -ln \"u_SpecularEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_SpecularEnvTexture\" -ln \"u_SpecularEnvTexture\" \n\t\t-nn \"Specular env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureR\" -ln \"u_SpecularEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureG\" -ln \"u_SpecularEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureB\" -ln \"u_SpecularEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Name\" -ln \"u_brdfTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Type\" -ln \"u_brdfTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_brdfTexture\" -ln \"u_brdfTexture\" -nn \"BRDF LUT (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_brdfTextureR\" -ln \"u_brdfTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureG\" -ln \"u_brdfTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureB\" -ln \"u_brdfTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Name\" -ln \"u_UseMeshTangents_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Type\" -ln \"u_UseMeshTangents_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UseMeshTangents\" -ln \"u_UseMeshTangents\" -nn \"Use mesh tangents?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Name\" -ln \"u_ScaleDiffBaseMR_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Type\" -ln \"u_ScaleDiffBaseMR_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMR\" -ln \"u_ScaleDiffBaseMR\" -nn \"Scale Diff Base MR\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRXYZ\" -ln \"u_ScaleDiffBaseMRXYZ\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_ScaleDiffBaseMR\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRX\" -ln \"u_ScaleDiffBaseMRX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRY\" -ln \"u_ScaleDiffBaseMRY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRZ\" -ln \"u_ScaleDiffBaseMRZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRW\" -ln \"u_ScaleDiffBaseMRW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMR\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Name\" -ln \"u_ScaleFGDSpec_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Type\" -ln \"u_ScaleFGDSpec_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpec\" -ln \"u_ScaleFGDSpec\" -nn \"Scale FGD Spec\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecXYZ\" -ln \"u_ScaleFGDSpecXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleFGDSpec\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecX\" -ln \"u_ScaleFGDSpecX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecY\" -ln \"u_ScaleFGDSpecY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecZ\" -ln \"u_ScaleFGDSpecZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecW\" -ln \"u_ScaleFGDSpecW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpec\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Name\" -ln \"u_ScaleIBL_Occl_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Type\" -ln \"u_ScaleIBL_Occl_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_Occl\" -ln \"u_ScaleIBL_Occl\" -nn \"Scale IBL AO(w)\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclXYZ\" -ln \"u_ScaleIBL_OcclXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleIBL_Occl\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclX\" -ln \"u_ScaleIBL_OcclX\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclY\" -ln \"u_ScaleIBL_OcclY\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclZ\" -ln \"u_ScaleIBL_OcclZ\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclW\" -ln \"u_ScaleIBL_OcclW\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_Occl\";\n\taddAttr -s false -is true -ci true -k true -sn \"te\" -ln \"techniqueEnum\" -nn \"Technique\" \n\t\t-min 0 -max 1 -en \"Solid:Transparent\" -at \"enum\";\n\taddAttr -ci true -sn \"Position\" -ln \"Position\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Position_Name\" -ln \"Position_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"Position_Source\" -ln \"Position_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -sn \"Position_DefaultTexture\" -ln \"Position_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Position\";\n\taddAttr -ci true -sn \"Normal\" -ln \"Normal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Normal_Name\" -ln \"Normal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Source\" -ln \"Normal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -sn \"Normal_DefaultTexture\" -ln \"Normal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Normal\";\n\taddAttr -ci true -sn \"Tangent\" -ln \"Tangent\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Tangent_Name\" -ln \"Tangent_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"Tangent_Source\" -ln \"Tangent_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -sn \"Tangent_DefaultTexture\" -ln \"Tangent_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Tangent\";\n\taddAttr -ci true -sn \"Binormal\" -ln \"Binormal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Binormal_Name\" -ln \"Binormal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -h true -sn \"Binormal_Source\" -ln \"Binormal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -sn \"Binormal_DefaultTexture\" -ln \"Binormal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Binormal\";\n\taddAttr -ci true -sn \"TexCoord0\" -ln \"TexCoord0\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Name\" -ln \"TexCoord0_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Source\" -ln \"TexCoord0_Source\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -sn \"TexCoord0_DefaultTexture\" -ln \"TexCoord0_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Name\" -ln \"u_RoughnessOffset_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Type\" -ln \"u_RoughnessOffset_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessOffset\" -ln \"u_RoughnessOffset\" -nn \"Roughness offset\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 12 -smn 0 -smx 12 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Name\" -ln \"u_BurleyFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Type\" -ln \"u_BurleyFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BurleyFactor\" -ln \"u_BurleyFactor\" -nn \"Burley factor\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Name\" -ln \"u_UndoEdgeStretch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Type\" -ln \"u_UndoEdgeStretch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UndoEdgeStretch\" -ln \"u_UndoEdgeStretch\" -nn \"Undo edge stretch?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Name\" -ln \"u_IsEmissiveInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Type\" -ln \"u_IsEmissiveInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEmissiveInsRGB\" -ln \"u_IsEmissiveInsRGB\" -nn \"sRGB emissive?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Name\" -ln \"u_EnvRotationAngle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Type\" -ln \"u_EnvRotationAngle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_EnvRotationAngle\" -ln \"u_EnvRotationAngle\" -nn \"Environment Rotation\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Name\" -ln \"u_FlipEnvMapZ_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Type\" -ln \"u_FlipEnvMapZ_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_FlipEnvMapZ\" -ln \"u_FlipEnvMapZ\" -nn \"Flip environment Z?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Name\" -ln \"u_IsEnvMapInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Type\" -ln \"u_IsEnvMapInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInsRGB\" -ln \"u_IsEnvMapInsRGB\" -nn \"sRGB environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Name\" -ln \"u_IsEnvMapInRGBM_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Type\" -ln \"u_IsEnvMapInRGBM_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInRGBM\" -ln \"u_IsEnvMapInRGBM\" -nn \"RGBM environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Name\" -ln \"u_IsBRDFsSRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Type\" -ln \"u_IsBRDFsSRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBRDFsSRGB\" -ln \"u_IsBRDFsSRGB\" -nn \"sRGB BRDF table?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Name\" -ln \"u_IsBaseColorInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Type\" -ln \"u_IsBaseColorInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBaseColorInsRGB\" -ln \"u_IsBaseColorInsRGB\" -nn \"sRGB basecolor?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\tsetAttr \".vpar\" -type \"stringArray\" 5 \"Position\" \"Normal\" \"Tangent\" \"Binormal\" \"TexCoord0\"  ;\n\tsetAttr \".upar\" -type \"stringArray\" 34 \"u_LightColor\" \"u_LightIntensity\" \"u_LightRotation\" \"u_LightPitch\" \"u_BaseColorTexture\" \"u_BaseColorFactor\" \"u_MetallicTexture\" \"u_MetallicStrength\" \"u_RoughnessTexture\" \"u_RoughnessStrength\" \"u_OcclusionTexture\" \"u_OcclusionStrength\" \"u_NormalTexture\" \"u_NormalScale\" \"u_EmissiveTexture\" \"u_EmissiveColor\" \"u_DiffuseEnvTexture\" \"u_SpecularEnvTexture\" \"u_brdfTexture\" \"u_IsDoubleSided\" \"u_UseMeshTangents\" \"u_RoughnessOffset\" \"u_ScaleDiffBaseMR\" \"u_BurleyFactor\" \"u_ScaleFGDSpec\" \"u_UndoEdgeStretch\" \"u_ScaleIBL_Occl\" \"u_IsEmissiveInsRGB\" \"u_EnvRotationAngle\" \"u_FlipEnvMapZ\" \"u_IsEnvMapInsRGB\" \"u_IsEnvMapInRGBM\" \"u_IsBRDFsSRGB\" \"u_IsBaseColorInsRGB\"  ;\n\tsetAttr \".s\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/shaders/glTF_PBR.ogsfx\";\n\tsetAttr \".t\" -type \"string\" \"Solid\";\n\tsetAttr \".u_LightColor_Name\" -type \"string\" \"u_LightColor\";\n\tsetAttr \".u_LightColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_LightColor\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_LightIntensity_Name\" -type \"string\" \"u_LightIntensity\";\n\tsetAttr \".u_LightIntensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightIntensity\" 1;\n\tsetAttr \".u_LightRotation_Name\" -type \"string\" \"u_LightRotation\";\n\tsetAttr \".u_LightRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightRotation\" 75;\n\tsetAttr \".u_LightPitch_Name\" -type \"string\" \"u_LightPitch\";\n\tsetAttr \".u_LightPitch_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightPitch\" 40;\n\tsetAttr \".u_BaseColorTexture_Name\" -type \"string\" \"u_BaseColorTexture\";\n\tsetAttr \".u_BaseColorTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_BaseColorTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_BaseColorFactor_Name\" -type \"string\" \"u_BaseColorFactor\";\n\tsetAttr \".u_BaseColorFactor_Type\" -type \"string\" \"color4x1\";\n\tsetAttr \".u_BaseColorFactorRGB\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_BaseColorFactorA\" 1;\n\tsetAttr \".u_MetallicTexture_Name\" -type \"string\" \"u_MetallicTexture\";\n\tsetAttr \".u_MetallicTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_MetallicTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_MetallicStrength_Name\" -type \"string\" \"u_MetallicStrength\";\n\tsetAttr \".u_MetallicStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_MetallicStrength\" 0.5;\n\tsetAttr \".u_RoughnessTexture_Name\" -type \"string\" \"u_RoughnessTexture\";\n\tsetAttr \".u_RoughnessTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_RoughnessTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_RoughnessStrength_Name\" -type \"string\" \"u_RoughnessStrength\";\n\tsetAttr \".u_RoughnessStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_RoughnessStrength\" 0.5;\n\tsetAttr \".u_OcclusionTexture_Name\" -type \"string\" \"u_OcclusionTexture\";\n\tsetAttr \".u_OcclusionTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_OcclusionTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_OcclusionStrength_Name\" -type \"string\" \"u_OcclusionStrength\";\n\tsetAttr \".u_OcclusionStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_OcclusionStrength\" 1;\n\tsetAttr \".u_NormalTexture_Name\" -type \"string\" \"u_NormalTexture\";\n\tsetAttr \".u_NormalTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_NormalTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_NormalScale_Name\" -type \"string\" \"u_NormalScale\";\n\tsetAttr \".u_NormalScale_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_NormalScale\" 1;\n\tsetAttr \".u_EmissiveTexture_Name\" -type \"string\" \"u_EmissiveTexture\";\n\tsetAttr \".u_EmissiveTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_EmissiveTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_EmissiveColor_Name\" -type \"string\" \"u_EmissiveColor\";\n\tsetAttr \".u_EmissiveColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_EmissiveColor\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_IsDoubleSided_Name\" -type \"string\" \"u_IsDoubleSided\";\n\tsetAttr \".u_IsDoubleSided_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsDoubleSided\" yes;\n\tsetAttr \".u_DiffuseEnvTexture_Name\" -type \"string\" \"u_DiffuseEnvTexture\";\n\tsetAttr \".u_DiffuseEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_DiffuseEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_SpecularEnvTexture_Name\" -type \"string\" \"u_SpecularEnvTexture\";\n\tsetAttr \".u_SpecularEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_SpecularEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_brdfTexture_Name\" -type \"string\" \"u_brdfTexture\";\n\tsetAttr \".u_brdfTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_brdfTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_UseMeshTangents_Name\" -type \"string\" \"u_UseMeshTangents\";\n\tsetAttr \".u_UseMeshTangents_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UseMeshTangents\" no;\n\tsetAttr \".u_ScaleDiffBaseMR_Name\" -type \"string\" \"u_ScaleDiffBaseMR\";\n\tsetAttr \".u_ScaleDiffBaseMR_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleDiffBaseMRXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleDiffBaseMRW\" 0;\n\tsetAttr \".u_ScaleFGDSpec_Name\" -type \"string\" \"u_ScaleFGDSpec\";\n\tsetAttr \".u_ScaleFGDSpec_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleFGDSpecXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleFGDSpecW\" 0;\n\tsetAttr \".u_ScaleIBL_Occl_Name\" -type \"string\" \"u_ScaleIBL_Occl\";\n\tsetAttr \".u_ScaleIBL_Occl_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleIBL_OcclXYZ\" -type \"float3\" 1 1 0 ;\n\tsetAttr \".u_ScaleIBL_OcclW\" 1;\n\tsetAttr \".Position_Name\" -type \"string\" \"Position\";\n\tsetAttr \".Position_Source\" -type \"string\" \"position\";\n\tsetAttr \".Normal_Name\" -type \"string\" \"Normal\";\n\tsetAttr \".Normal_Source\" -type \"string\" \"normal\";\n\tsetAttr \".Tangent_Name\" -type \"string\" \"Tangent\";\n\tsetAttr \".Tangent_Source\" -type \"string\" \"tangent:map1\";\n\tsetAttr \".Binormal_Name\" -type \"string\" \"Binormal\";\n\tsetAttr \".Binormal_Source\" -type \"string\" \"binormal:map1\";\n\tsetAttr \".TexCoord0_Name\" -type \"string\" \"TexCoord0\";\n\tsetAttr \".TexCoord0_Source\" -type \"string\" \"uv:map1\";\n\tsetAttr \".u_RoughnessOffset_Name\" -type \"string\" \"u_RoughnessOffset\";\n\tsetAttr \".u_RoughnessOffset_Type\" -type \"string\" \"int\";\n\tsetAttr \".u_RoughnessOffset\" 0;\n\tsetAttr \".u_BurleyFactor_Name\" -type \"string\" \"u_BurleyFactor\";\n\tsetAttr \".u_BurleyFactor_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_BurleyFactor\" 0;\n\tsetAttr \".u_UndoEdgeStretch_Name\" -type \"string\" \"u_UndoEdgeStretch\";\n\tsetAttr \".u_UndoEdgeStretch_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UndoEdgeStretch\" no;\n\tsetAttr \".u_IsEmissiveInsRGB_Name\" -type \"string\" \"u_IsEmissiveInsRGB\";\n\tsetAttr \".u_IsEmissiveInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEmissiveInsRGB\" yes;\n\tsetAttr \".u_EnvRotationAngle_Name\" -type \"string\" \"u_EnvRotationAngle\";\n\tsetAttr \".u_EnvRotationAngle_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_EnvRotationAngle\" 0;\n\tsetAttr \".u_FlipEnvMapZ_Name\" -type \"string\" \"u_FlipEnvMapZ\";\n\tsetAttr \".u_FlipEnvMapZ_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_FlipEnvMapZ\" yes;\n\tsetAttr \".u_IsEnvMapInsRGB_Name\" -type \"string\" \"u_IsEnvMapInsRGB\";\n\tsetAttr \".u_IsEnvMapInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInsRGB\" no;\n\tsetAttr \".u_IsEnvMapInRGBM_Name\" -type \"string\" \"u_IsEnvMapInRGBM\";\n\tsetAttr \".u_IsEnvMapInRGBM_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInRGBM\" no;\n\tsetAttr \".u_IsBRDFsSRGB_Name\" -type \"string\" \"u_IsBRDFsSRGB\";\n\tsetAttr \".u_IsBRDFsSRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBRDFsSRGB\" no;\n\tsetAttr \".u_IsBaseColorInsRGB_Name\" -type \"string\" \"u_IsBaseColorInsRGB\";\n\tsetAttr \".u_IsBaseColorInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBaseColorInsRGB\" yes;\ncreateNode file -n \"file1\";\n\trename -uid \"EC37F6C1-484E-4387-6EE6-888B247CF395\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_diffuse_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture1\";\n\trename -uid \"01870C3A-4D9F-BACF-8F7C-09A88FD82516\";\ncreateNode file -n \"file2\";\n\trename -uid \"4D492069-4E78-49EF-1DF6-EB9EE547D69A\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_specular_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture2\";\n\trename -uid \"0E097C8A-4A1F-D190-8666-C1A4F98C992D\";\ncreateNode file -n \"file3\";\n\trename -uid \"968ECDFC-4E40-ECAA-9F0D-C9B85BF95CEC\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/brdfLUT.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture3\";\n\trename -uid \"4E8DA3D2-4351-E01E-52D1-1E94986B8EB5\";\ncreateNode shadingEngine -n \"GLSLShader1SG\";\n\trename -uid \"30B4B45E-4802-5410-82F3-FF98A93EAF47\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"EADB24B8-49FE-4AAF-05B2-9DA326624BF8\";\ncreateNode deleteComponent -n \"deleteComponent1\";\n\trename -uid \"F2B78B08-4C71-EA4C-DC78-05A8970D7250\";\n\tsetAttr \".dc\" -type \"componentList\" 1 \"f[2]\";\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"ECDFA70A-4792-C3D3-2789-57AA316DC5B2\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 1\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"5F05214B-4898-1DBE-80BE-9BA5A384D79B\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"E6A3D9C9-4DBA-9BF2-3241-D796BA8CBC17\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 3 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 5 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderUtilityList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 3 \".u\";\nselect -ne :defaultRenderingList1;\nselect -ne :defaultTextureList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 3 \".tx\";\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"deleteComponent1.og\" \"pCubeShape1.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader1SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader1SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"file1.oc\" \"GLSLShader1.u_DiffuseEnvTexture\";\nconnectAttr \"file2.oc\" \"GLSLShader1.u_SpecularEnvTexture\";\nconnectAttr \"file3.oc\" \"GLSLShader1.u_brdfTexture\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file1.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file1.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file1.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file1.ws\";\nconnectAttr \"place2dTexture1.c\" \"file1.c\";\nconnectAttr \"place2dTexture1.tf\" \"file1.tf\";\nconnectAttr \"place2dTexture1.rf\" \"file1.rf\";\nconnectAttr \"place2dTexture1.mu\" \"file1.mu\";\nconnectAttr \"place2dTexture1.mv\" \"file1.mv\";\nconnectAttr \"place2dTexture1.s\" \"file1.s\";\nconnectAttr \"place2dTexture1.wu\" \"file1.wu\";\nconnectAttr \"place2dTexture1.wv\" \"file1.wv\";\nconnectAttr \"place2dTexture1.re\" \"file1.re\";\nconnectAttr \"place2dTexture1.r\" \"file1.ro\";\nconnectAttr \"place2dTexture1.of\" \"file1.of\";\nconnectAttr \"place2dTexture1.n\" \"file1.n\";\nconnectAttr \"place2dTexture1.vt1\" \"file1.vt1\";\nconnectAttr \"place2dTexture1.vt2\" \"file1.vt2\";\nconnectAttr \"place2dTexture1.vt3\" \"file1.vt3\";\nconnectAttr \"place2dTexture1.vc1\" \"file1.vc1\";\nconnectAttr \"place2dTexture1.o\" \"file1.uv\";\nconnectAttr \"place2dTexture1.ofs\" \"file1.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file2.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file2.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file2.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file2.ws\";\nconnectAttr \"place2dTexture2.c\" \"file2.c\";\nconnectAttr \"place2dTexture2.tf\" \"file2.tf\";\nconnectAttr \"place2dTexture2.rf\" \"file2.rf\";\nconnectAttr \"place2dTexture2.mu\" \"file2.mu\";\nconnectAttr \"place2dTexture2.mv\" \"file2.mv\";\nconnectAttr \"place2dTexture2.s\" \"file2.s\";\nconnectAttr \"place2dTexture2.wu\" \"file2.wu\";\nconnectAttr \"place2dTexture2.wv\" \"file2.wv\";\nconnectAttr \"place2dTexture2.re\" \"file2.re\";\nconnectAttr \"place2dTexture2.r\" \"file2.ro\";\nconnectAttr \"place2dTexture2.of\" \"file2.of\";\nconnectAttr \"place2dTexture2.n\" \"file2.n\";\nconnectAttr \"place2dTexture2.vt1\" \"file2.vt1\";\nconnectAttr \"place2dTexture2.vt2\" \"file2.vt2\";\nconnectAttr \"place2dTexture2.vt3\" \"file2.vt3\";\nconnectAttr \"place2dTexture2.vc1\" \"file2.vc1\";\nconnectAttr \"place2dTexture2.o\" \"file2.uv\";\nconnectAttr \"place2dTexture2.ofs\" \"file2.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file3.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file3.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file3.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file3.ws\";\nconnectAttr \"place2dTexture3.c\" \"file3.c\";\nconnectAttr \"place2dTexture3.tf\" \"file3.tf\";\nconnectAttr \"place2dTexture3.rf\" \"file3.rf\";\nconnectAttr \"place2dTexture3.mu\" \"file3.mu\";\nconnectAttr \"place2dTexture3.mv\" \"file3.mv\";\nconnectAttr \"place2dTexture3.s\" \"file3.s\";\nconnectAttr \"place2dTexture3.wu\" \"file3.wu\";\nconnectAttr \"place2dTexture3.wv\" \"file3.wv\";\nconnectAttr \"place2dTexture3.re\" \"file3.re\";\nconnectAttr \"place2dTexture3.r\" \"file3.ro\";\nconnectAttr \"place2dTexture3.of\" \"file3.of\";\nconnectAttr \"place2dTexture3.n\" \"file3.n\";\nconnectAttr \"place2dTexture3.vt1\" \"file3.vt1\";\nconnectAttr \"place2dTexture3.vt2\" \"file3.vt2\";\nconnectAttr \"place2dTexture3.vt3\" \"file3.vt3\";\nconnectAttr \"place2dTexture3.vc1\" \"file3.vc1\";\nconnectAttr \"place2dTexture3.o\" \"file3.uv\";\nconnectAttr \"place2dTexture3.ofs\" \"file3.fs\";\nconnectAttr \"GLSLShader1.oc\" \"GLSLShader1SG.ss\";\nconnectAttr \"pCubeShape1.iog\" \"GLSLShader1SG.dsm\" -na;\nconnectAttr \"GLSLShader1SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"GLSLShader1.msg\" \"materialInfo1.m\";\nconnectAttr \"polyCube1.out\" \"deleteComponent1.ig\";\nconnectAttr \"GLSLShader1SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader1.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"place2dTexture1.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture2.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture3.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"file1.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file2.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file3.msg\" \":defaultTextureList1.tx\" -na;\n// End of DoubleSidedTest1.ma\n"
  },
  {
    "path": "maya/scenes/ExtremeNormalBakingTest.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: ExtremeNormalBakingTest.ma\n//Last modified: Sun, Feb 03, 2019 11:49:29 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\nrequires -nodeType \"GLSLShader\" \"glslShader\" \"1.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"1CE062EA-477A-B7B8-D645-5596AADC08E7\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 2.830678019860013 1.8130707266485859 5.1859936667182263 ;\n\tsetAttr \".r\" -type \"double3\" -8.1383527297681084 -335.79999999974206 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"C4935601-467D-7DF4-2F6E-BA8B414677C4\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 5.7434898607285483;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.5 0.99999988079071045 -1.1920928955078125e-07 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"9A2D5671-4DA0-64AC-9677-34AC14010C2A\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"DFD81D49-4D88-3BEF-AAEF-9A8148720AF3\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"49DC5B17-4BEE-D096-E459-66A8B2E3C6D3\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"78D375D8-4146-766F-36FD-00A495F441DA\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"CA189366-4A50-D1A3-0246-86AF70E583CF\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"3049F159-4EB9-7FD6-030E-C0B8F616FC15\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"LO\";\n\trename -uid \"255FBE1B-49B9-1306-7040-B49701B3F19D\";\ncreateNode mesh -n \"LOShape\" -p \"LO\";\n\trename -uid \"3254A4B4-47AC-B511-C13C-F2BE2E972985\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.80007120966911316 0.95928242802619934 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"UVMap\";\n\tsetAttr -s 239 \".uvst[0].uvsp[0:238]\" -type \"float2\" 0.86921459 0.63265365\n\t\t 0.37967682 0.014643428 0.4839721 0.01464345 0.61755461 0.50994432 0.21756779 0.35147667\n\t\t 0.75113714 0.6561408 0.25143421 0.26971561 0.72184974 0.68085909 0.87829256 0.93320853\n\t\t 0.43182445 0.014643438 0.31963024 0.28328058 0.8032847 0.74680299 0.17108628 0.37967706\n\t\t 0.80330282 0.4611297 0.61755461 0.37967673 0.8782925 0.88106102 0.95974535 0.4611837\n\t\t 0.61755466 0.46111152 0.3331953 0.30358207 0.82614475 0.27538159 0.77399719 0.3275291\n\t\t 0.95970923 0.56547862 0.83599889 0.59943795 0.43182448 0.69256252 0.48397204 0.5361197\n\t\t 0.48397204 0.64041489 0.43182445 0.43182451 0.48397204 0.43182451 0.53611964 0.37967691\n\t\t 0.58826727 0.43182454 0.43182442 0.37967691 0.58826727 0.32752934 0.66970211 0.223234\n\t\t 0.81251186 0.6561408 0.81251186 0.71751553 0.66970211 0.11893886 0.76911336 0.69953924\n\t\t 0.77399725 0.22323401 0.22323407 0.8782925 0.82614499 0.98535615 0.66970217 0.3796767\n\t\t 0.37967676 0.22323401 0.61755461 0.80294091 0.72184968 0.27538157 0.61755461 0.55877709\n\t\t 0.11893893 0.93044007 0.76911336 0.6127423 0.78902477 0.71284366 0.85591036 0.69953918\n\t\t 0.72184968 0.3275291 0.3196303 0.37177804 0.61755461 0.93320876 0.27538157 0.3901065\n\t\t 0.58826721 0.64041489 0.53611964 0.5361197 0.77399743 0.93320864 0.43182433 0.98258752\n\t\t 0.37967676 0.93043995 0.5361197 0.74471003 0.7218498 0.93320864 0.43182427 0.87829244\n\t\t 0.82614499 0.93320858 0.93044007 0.98535603 0.61755461 0.70527548 0.72184974 0.60760993\n\t\t 0.78902477 0.59943795 0.61755461 0.75410813 0.61755461 0.85177362 0.85543227 0.79895043\n\t\t 0.72184974 0.82735723 0.27538145 0.22323404 0.48397207 0.69256252 0.43182454 0.74471015\n\t\t 0.29932883 0.38534307 0.87829256 0.98535609 0.66970229 0.98535633 0.72184974 0.72969186\n\t\t 0.29932874 0.26971555 0.066791356 0.9825877 0.72184974 0.6564427 0.61755466 0.4855279\n\t\t 0.75113714 0.851098 0.066790819 0.22323421 0.85545033 0.46114764 0.90759784 0.46116564\n\t\t 0.4839721 0.74471009 0.48397216 0.79685766 0.61755461 0.4318243 0.72184986 0.46111163\n\t\t 0.61755461 0.65644264 0.23113286 0.37177816 0.81251186 0.59476608 0.58826721 0.69256246\n\t\t 0.58826721 0.79685754 0.72184968 0.37967664 0.014643205 0.27538192 0.66970217 0.43182424\n\t\t 0.61755461 0.68085909 0.17108651 0.8782925 0.21280433 0.32752943 0.2175677 0.30358219\n\t\t 0.80328488 0.51327723 0.066790871 0.27538186 0.11893853 0.2753818 0.58826727 0.37967694\n\t\t 0.77399725 0.11893888 0.066791326 0.93044007 0.17108622 0.32752943 0.27538168 0.93043995\n\t\t 0.014643719 0.8782925 0.11893865 0.37967712 0.82614481 0.22323403 0.53611976 0.8490051\n\t\t 0.80326694 0.56542468 0.53611964 0.64041489 0.48397204 0.22323403 0.58826721 0.5361197\n\t\t 0.37967679 0.32752928 0.5361197 0.27538168 0.58826733 0.22323406 0.48397204 0.27538165\n\t\t 0.48397204 0.37967691 0.66970211 0.88106114 0.7218498 0.88106108 0.27538168 0.98258758\n\t\t 0.7218498 0.55877715 0.82614481 0.11893889 0.58826739 0.014643469 0.58826721 0.74471003\n\t\t 0.014643152 0.22323425 0.014643688 0.93044007 0.33319533 0.35147655 0.5361197 0.11893875\n\t\t 0.37967679 0.27538165 0.43182442 0.22323401 0.43182442 0.27538165 0.27538165 0.87829244\n\t\t 0.22323409 0.93044001 0.17108615 0.22323412 0.17108618 0.27538177 0.8559103 0.61274236\n\t\t 0.85541445 0.56544268 0.90756178 0.56546056 0.83599895 0.7128436 0.90757984 0.51331311\n\t\t 0.77399725 0.27538159 0.61755455 0.32752916 0.72184986 0.48552802 0.27538145 0.26495215\n\t\t 0.17108634 0.43182468 0.8032847 0.851098 0.48397207 0.11893874 0.11893895 0.9825877\n\t\t 0.61755461 0.58319348 0.75113714 0.79895043 0.82614487 0.014643747 0.5361197 0.7968576\n\t\t 0.61755461 0.53436071 0.37967676 0.98258746 0.66970223 0.9332087 0.58826739 0.11893876\n\t\t 0.72184986 0.98535627 0.25143439 0.38534313 0.23113272 0.28328064 0.75113738 0.51325935\n\t\t 0.75115526 0.46111178 0.61755461 0.60760993 0.58826727 0.84900504 0.37967679 0.11893871\n\t\t 0.53611964 0.32752931 0.66970211 0.27538157 0.82614493 0.88106102 0.77399737 0.88106108\n\t\t 0.61755455 0.88106114 0.32752925 0.98258758 0.43182427 0.93043995 0.53611964 0.69256246\n\t\t 0.37967676 0.87829244 0.61755461 0.82735723 0.7218498 0.53436077 0.77399749 0.98535621\n\t\t 0.75580901 0.6796279 0.75580901 0.63265371 0.86921471 0.67962784 0.66970211 0.014643717\n\t\t 0.61755461 0.72969186 0.61755455 0.014643717 0.72184974 0.70527548 0.85543239 0.51329511\n\t\t 0.5361197 0.22323404 0.72184974 0.63202631 0.17108653 0.98258764 0.43182445 0.11893873\n\t\t 0.61755461 0.77852452 0.72184974 0.75410813 0.61755461 0.63202626 0.27538159 0.43182459\n\t\t 0.72184974 0.85177362 0.72184968 0.11893887 0.7218498 0.58319354 0.66970211 0.32752913\n\t\t 0.85543221 0.74680287 0.58826733 0.27538171 0.17108652 0.93044001 0.32752922 0.93043995\n\t\t 0.37967685 0.69256258 0.37967685 0.64041495 0.48397204 0.32752928 0.61755455 0.27538157\n\t\t 0.37967682 0.43182454 0.61755455 0.223234 0.77399731 0.014643734 0.37967682 0.37967691\n\t\t 0.53611964 0.43182451 0.066790931 0.32752955 0.066791326 0.8782925 0.72184974 0.014643724\n\t\t 0.93044007 0.88106102 0.8032847 0.79895043 0.72184974 0.77852458 0.93044007 0.93320847\n\t\t 0.95972723 0.51333112 0.72184974 0.80294091 0.85543227 0.851098 0.61755455 0.11893887\n\t\t 0.43182445 0.64041495 0.37967682 0.53611976 0.43182445 0.5361197 0.53611976 0.014643457\n\t\t 0.72184968 0.223234 0.11893895 0.8782925 0.11893859 0.32752949 0.32752922 0.87829244\n\t\t 0.43182442 0.32752928 0.22323413 0.98258764 0.72184986 0.50994438 0.33795869 0.32752931\n\t\t 0.87388653 0.6561408 0.11893849 0.22323416;\n\tsetAttr \".cuvs\" -type \"string\" \"UVMap\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr -s 136 \".pt[0:135]\" -type \"float3\"  0 -0.60000002 -0.60000008 \n\t\t0 -0.78393781 -0.32471767 0 -0.84852815 9.5167421e-09 0 -0.78393775 0.3247177 0 -0.60000002 \n\t\t0.60000002 0 -0.32471764 0.78393775 0 1.2872604e-07 0.84852815 0 0.32471797 0.78393775 \n\t\t0 0.60000038 0.59999973 0 0.78393811 0.32471716 0 0.84852833 -6.6516787e-07 0 0.78393769 \n\t\t-0.32471851 0 0.59999949 -0.60000074 0 0.32471681 -0.78393835 0 -1.0525981e-06 -0.84852833 \n\t\t0 -0.32471886 -0.78393745 0 1.629207e-07 2.0000002 0 2.0000002 -1.629207e-07 0 -2.0000002 \n\t\t1.629207e-07 0 -1.629207e-07 -2.0000002 0 -2.0000002 1.629207e-07 0 -2.0000002 1.629207e-07 \n\t\t0 -2.0000002 1.629207e-07 0 -1.629207e-07 -2.0000002 0 -1.629207e-07 -2.0000002 0 \n\t\t-1.629207e-07 -2.0000002 0 1.629207e-07 2.0000002 0 1.629207e-07 2.0000002 0 1.629207e-07 \n\t\t2.0000002 0 2.0000002 -1.629207e-07 0 2.0000002 -1.629207e-07 0 2.0000002 -1.629207e-07 \n\t\t0 -1.5000001 0.50000018 0 -1 1.0000001 0 -0.49999991 1.5000001 0 1.5000001 -0.50000018 \n\t\t0 1 -1.0000001 0 0.49999991 -1.5000001 0 0.49999991 -1.5000001 0 1 -1.0000001 0 1.5000001 \n\t\t-0.50000018 0 0.99999982 -3.0000002 0 1 -1.0000001 0 1.5000001 -0.50000018 0 0.99999982 \n\t\t-3.0000002 0 1.4999999 -2.5000002 0 1.5000001 -0.50000018 0 -1.5000001 0.50000018 \n\t\t0 -1 1.0000001 0 -0.49999991 1.5000001 0 -1.5000001 0.50000018 0 -1 1.0000001 0 -0.49999991 \n\t\t1.5000001 0 -1.5000001 0.50000018 0 -1 1.0000001 0 -0.49999991 1.5000001 0 0.99999994 \n\t\t-2.0000002 0 0.49999985 -2.5000002 0 0.49999985 -2.5000002 0 0.49999985 -2.5000002 \n\t\t0 2.5000002 -0.50000024 0 2.5000002 -0.50000024 0 0.49999985 -2.5000002 0 0.49999985 \n\t\t-2.5000002 0 2 -1.0000002 0 2 -1.0000002 0 1.5 -1.5000002 0 0.99999994 -2.0000002 \n\t\t0 0.99999994 -2.0000002 0 1.5 -1.5000002 0 0.99999994 -2.0000002 0 1.5 -1.5000002 \n\t\t0 2 -1.0000002 0 1.9999999 -3.0000005 0 1.5 -1.5000002 0 0.99999982 -3.0000002 0 \n\t\t0.99999982 -3.0000002 0 2.5 -1.5000004 0 2 -2.0000002 0 1.4999999 -2.5000002 0 1.4999999 \n\t\t-2.5000002 0 2 -2.0000002 0 1.4999999 -2.5000002 0 2 -2.0000002 0 2.5 -1.5000004 \n\t\t0 1.4999999 -3.5000005 0 1.4999999 -3.5000005 0 1.4999999 -3.5000005 0 2.5 -2.5000005 \n\t\t0 1.9999999 -3.0000005 0 1.9999999 -3.0000005 0 2.5 -2.5000005 0 2.5 -3.5000005 0 \n\t\t1.9999999 -4.0000005 0 1.9999999 -4.0000005 0 2.5 -3.5000005 0 -1.0000001 -1 0 -0.60000014 \n\t\t0.60000014 0 1.0000001 1 0 1.0000001 1 0 -1.0000001 -1 0 -1.24773e-07 -4.7127352e-07 \n\t\t0 -1.629207e-07 -2.0000002 0 -2.0000002 1.629207e-07 0 -1.5000001 0.50000018 0 1.5000001 \n\t\t-0.50000018 0 2.0000002 -1.629207e-07 0 1.629207e-07 2.0000002 0 -0.49999991 1.5000001 \n\t\t0 -1 1.0000001 0 0.49999991 -1.5000001 0 1 -1.0000001 0 -0.6000002 -0.59999996 0 \n\t\t-0.78393799 -0.32471752 0 -0.84852833 1.5852838e-07 0 -0.78393793 0.32471779 0 -0.32471782 \n\t\t0.78393793 0 -2.0285571e-08 0.84852833 0 0.32471782 0.78393787 0 0.60000026 0.5999999 \n\t\t0 -0.32471898 -0.78393734 0 0.78393799 0.32471731 0 -1.2612144e-06 -0.84852815 0 \n\t\t0.84852821 -5.4595859e-07 0 0.32471669 -0.78393823 0 0.78393763 -0.32471842 0 0.59999937 \n\t\t-0.60000062 0 1.0000001 1 0 1.0000001 1 0 1.0000001 1 0 -1.0000001 -1 0 -1.0000001 \n\t\t-1 0 -1.0000001 -1 0 0.50000006 0.5 0 0 0 0 -0.50000006 -0.5;\n\tsetAttr -s 136 \".vt[0:135]\"  2 0.60000002 7.5497908e-08 2 0.55432773 -0.22961001\n\t\t 2 0.42426407 -0.42426401 2 0.22961007 -0.55432767 2 4.5298744e-08 -0.59999996 2 -0.22960998 -0.55432767\n\t\t 2 -0.42426407 -0.42426401 2 -0.55432779 -0.22960991 2 -0.60000002 2.7100273e-07 2 -0.55432761 0.2296104\n\t\t 2 -0.42426383 0.42426443 2 -0.22960962 0.55432802 2 5.7935949e-07 0.60000008 2 0.2296107 0.55432755\n\t\t 2 0.42426461 0.42426363 2 0.55432808 0.22960933 -1 -1 -1 -1 -1 1 -1 1 -1 -1 1 1 0.5 1 -1\n\t\t 0 1 -1 -0.5 1 -1 -0.5 1 1 0 1 1 0.5 1 1 -0.5 -1 -1 0 -1 -1 0.5 -1 -1 0.5 -1 1 0 -1 1\n\t\t -0.5 -1 1 -1 0.5 -1 -1 0 -1 -1 -0.5 -1 -1 -0.5 1 -1 0 1 -1 0.5 1 0.5 0.5 1 0.5 0 1\n\t\t 0.5 -0.5 1 -0.5 1 2 0 0 1 0 -0.5 1 -1 1 2 -1 0.5 2 -0.5 -0.5 1 -0.5 0.5 -1 -0.5 0 -1\n\t\t -0.5 -0.5 -1 0 0.5 -1 0 0 -1 0 -0.5 -1 0.5 0.5 -1 0.5 0 -1 0.5 -0.5 -1 -1 0.5 1.5\n\t\t -1 1 1.5 0.5 1 1.5 1 1 1.5 -0.5 -1 1.5 -1 -1 1.5 -0.5 1 1.5 0 1 1.5 -0.5 -0.5 1.5\n\t\t -1 -0.5 1.5 -1 0 1.5 1 0.5 1.5 0.5 0.5 1.5 0.5 0 1.5 0 0.5 1.5 0 0 1.5 0 -0.5 1.5\n\t\t -1 0.5 2.5 -0.5 0 1.5 0 1 2 0.5 1 2 -1 -0.5 2 -1 0 2 0.5 0.5 2 0 0.5 2 0 0 2 -0.5 0.5 2\n\t\t -0.5 0 2 -0.5 -0.5 2 -1 1 2.5 -0.5 1 2.5 0 1 2.5 -1 0 2.5 0 0.5 2.5 -0.5 0.5 2.5\n\t\t -0.5 0 2.5 -1 0.5 3 -1 1 3 -0.5 1 3 -0.5 0.5 3 1 1 0 1 4.5298744e-08 -0.60000008\n\t\t -1 -1 0 1 -1 0 -1 1 0 2 2.9802322e-07 1.7325027e-07 1 1 1 1 1 -1 1 0.5 -1 1 -0.5 1\n\t\t 1 -1 1 1 -1 -1 1 -0.5 -1 1 0 -1 1 0.5 1 1 0 1 1 0.60000002 -6.0603568e-08 1 0.55432773 -0.22961016\n\t\t 1 0.42426407 -0.42426416 1 0.22961009 -0.55432779 1 -0.22960998 -0.55432785 1 -0.42426407 -0.42426416\n\t\t 1 -0.55432779 -0.22961007 1 -0.60000002 1.3490127e-07 1 0.55432808 0.22960919 1 -0.55432761 0.22961026\n\t\t 1 0.42426464 0.42426345 1 -0.42426383 0.42426431 1 0.2296107 0.55432743 1 -0.22960964 0.55432796\n\t\t 1 5.7935949e-07 0.59999996 0.5 -1 0 0 -1 0 -0.5 -1 0 -0.5 1 0 0 1 0 0.5 1 0 -1 -0.5 0\n\t\t -1 0 0 -1 0.5 0;\n\tsetAttr -s 402 \".ed\";\n\tsetAttr \".ed[0:165]\"  12 10 0 10 101 0 101 12 0 37 100 0 100 135 0 135 37 0\n\t\t 25 96 0 96 132 0 132 25 0 31 98 0 98 129 0 129 31 0 108 28 0 28 55 0 55 108 0 39 71 0\n\t\t 71 42 0 42 39 0 40 106 0 106 105 0 105 40 0 43 29 0 29 40 0 40 43 0 46 30 0 30 43 0\n\t\t 43 46 0 49 16 0 16 34 0 34 49 0 52 26 0 26 49 0 49 52 0 55 27 0 27 52 0 52 55 0 106 127 0\n\t\t 127 99 0 99 106 0 29 128 0 128 127 0 127 29 0 30 129 0 129 128 0 128 30 0 19 130 0\n\t\t 130 100 0 100 19 0 23 131 0 131 130 0 130 23 0 24 132 0 132 131 0 131 24 0 20 50 0\n\t\t 50 21 0 21 20 0 53 51 0 51 50 0 50 53 0 54 52 0 52 51 0 51 54 0 21 47 0 47 22 0 22 21 0\n\t\t 50 48 0 48 47 0 47 50 0 51 49 0 49 48 0 48 51 0 22 32 0 32 18 0 18 22 0 47 33 0 33 32 0\n\t\t 32 47 0 48 34 0 34 33 0 33 48 0 38 69 0 69 39 0 39 38 0 36 56 0 56 37 0 37 36 0 46 60 0\n\t\t 60 31 0 31 46 0 31 61 0 61 17 0 17 31 0 35 66 0 66 36 0 36 35 0 42 40 0 40 39 0 43 64 0\n\t\t 64 46 0 38 111 0 111 110 0 110 38 0 39 105 0 105 111 0 111 39 0 24 58 0 58 25 0 25 24 0\n\t\t 17 65 0 65 35 0 35 17 0 37 57 0 57 19 0 19 37 0 103 53 0 53 20 0 20 103 0 104 54 0\n\t\t 54 53 0 53 104 0 109 55 0 55 54 0 54 109 0 114 115 0 115 104 0 104 114 0 133 33 0\n\t\t 34 133 0 17 133 0 133 98 0 98 17 0 35 134 0 134 133 0 133 35 0 36 135 0 135 134 0\n\t\t 134 36 0 65 60 0 60 64 0 64 65 0 70 81 0 81 71 0 71 70 0 56 44 0 44 57 0 57 56 0\n\t\t 74 72 0 72 71 0 71 74 0 64 77 0 77 65 0 70 69 0 69 68 0 68 70 0 58 67 0 67 59 0 59 58 0\n\t\t 57 41 0 41 62 0 62 57 0 71 83 0 83 74 0 66 45 0 45 56 0 56 66 0;\n\tsetAttr \".ed[166:331]\" 25 59 0 59 102 0 102 25 0 110 68 0 68 38 0 19 62 0 62 23 0\n\t\t 23 19 0 102 67 0 67 110 0 110 102 0 23 63 0 63 24 0 24 23 0 42 72 0 72 43 0 43 42 0\n\t\t 82 91 0 91 83 0 83 82 0 82 81 0 81 80 0 80 82 0 75 79 0 79 76 0 76 75 0 44 86 0 86 41 0\n\t\t 41 44 0 80 90 0 90 82 0 78 84 0 84 83 0 83 78 0 62 75 0 75 63 0 63 62 0 58 79 0 79 68 0\n\t\t 68 58 0 74 84 0 84 64 0 64 74 0 65 78 0 78 66 0 66 65 0 68 80 0 80 70 0 63 76 0 76 58 0\n\t\t 58 63 0 86 89 0 89 87 0 87 86 0 90 92 0 92 73 0 73 90 0 73 91 0 91 90 0 41 87 0 87 75 0\n\t\t 75 41 0 45 85 0 85 44 0 44 45 0 75 89 0 89 80 0 80 75 0 83 88 0 88 78 0 78 73 0 73 45 0\n\t\t 45 78 0 93 95 0 95 94 0 94 93 0 73 93 0 93 85 0 85 73 0 86 95 0 95 90 0 90 86 0 85 94 0\n\t\t 94 86 0 86 85 0 124 14 0 14 122 0 122 124 0 7 119 0 119 118 0 118 7 0 120 0 0 0 112 0\n\t\t 112 120 0 117 5 0 5 6 0 6 117 0 122 15 0 15 120 0 120 122 0 112 1 0 1 113 0 113 112 0\n\t\t 121 10 0 10 123 0 123 121 0 4 116 0 116 97 0 97 4 0 3 97 0 97 115 0 115 3 0 114 3 0\n\t\t 8 121 0 121 119 0 119 8 0 11 126 0 126 125 0 125 11 0 126 13 0 13 124 0 124 126 0\n\t\t 99 119 0 121 99 0 113 2 0 2 114 0 114 113 0 118 6 0 6 7 0 98 34 0 16 98 0 134 32 0\n\t\t 33 134 0 130 21 0 22 130 0 96 102 0 102 120 0 120 96 0 108 109 0 109 116 0 116 108 0\n\t\t 106 121 0 123 106 0 97 109 0 109 115 0 117 107 0 107 108 0 108 117 0 103 113 0 114 103 0\n\t\t 111 124 0 124 110 0 99 107 0 107 118 0 118 99 0 126 111 0 111 125 0 123 125 0 125 105 0\n\t\t 105 123 0 10 125 0 122 110 0 122 102 0 116 117 0 131 20 0 21 131 0;\n\tsetAttr \".ed[332:401]\" 100 22 0 18 100 0 128 26 0 26 27 0 27 128 0 127 27 0\n\t\t 27 28 0 28 127 0 99 28 0 28 107 0 129 16 0 16 26 0 26 129 0 132 103 0 20 132 0 135 18 0\n\t\t 32 135 0 104 103 0 112 96 0 117 118 0 103 96 0 96 113 0 109 104 0 8 6 0 6 101 0 101 8 0\n\t\t 14 12 0 101 14 0 2 4 0 4 3 0 3 2 0 8 10 0 10 9 0 9 8 0 4 6 0 5 4 0 0 14 0 101 0 0\n\t\t 0 2 0 2 1 0 1 0 0 12 11 0 11 10 0 69 71 0 29 106 0 30 29 0 31 30 0 60 61 0 72 64 0\n\t\t 61 65 0 84 77 0 68 67 0 81 83 0 80 79 0 89 90 0 78 77 0 95 92 0 73 88 0 88 91 0 93 92 0\n\t\t 13 14 0 7 8 0 15 0 0 116 5 0 14 15 0 121 9 0 12 126 0 12 13 0 2 101 0 101 4 0;\n\tsetAttr -s 804 \".n\";\n\tsetAttr \".n[0:165]\" -type \"float3\"  0.66570026 0.74617755 -1.2156775e-07\n\t\t 0.66570026 0.52763456 0.52763444 1 0 0 -1 0 0 -0.70708334 -1.151985e-07 -0.70708334\n\t\t -1 0 0 0 -1.6292068e-07 -1 0.70708334 -1.151985e-07 -0.70708334 0 -1.6292068e-07\n\t\t -1 0.30149236 0.30149251 0.90450752 -0.70708334 1.151985e-07 0.70708334 0 1.6292068e-07\n\t\t 1 0.70708334 -0.70708334 1.151985e-07 0 -0.70708323 0.70708346 0 -1 1.6292068e-07\n\t\t 0.30149236 0.90450764 0.30149221 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931\n\t\t 0.57734907 0 1 -1.6292068e-07 0.57734919 0.57734931 0.57734907 0.70708334 0.70708334\n\t\t -1.151985e-07 0.30149236 0.90450764 0.30149221 0 0.70708346 0.70708323 0 1 -1.6292068e-07\n\t\t 0.57734919 0.57734931 0.57734907 0 0.70708346 0.70708323 0.30149236 0.90450764 0.30149221\n\t\t 0 -1 1.6292068e-07 -0.57734919 -0.57734907 0.57734931 -0.70708334 -0.70708334 1.151985e-07\n\t\t 0 -1 1.6292068e-07 0 -0.70708323 0.70708346 0 -1 1.6292068e-07 0 -1 1.6292068e-07\n\t\t 0 -0.70708323 0.70708346 0 -1 1.6292068e-07 0.57734919 0.57734931 0.57734907 0 1.6292068e-07\n\t\t 1 0.70708334 1.151985e-07 0.70708334 0 0.70708346 0.70708323 0 1.6292068e-07 1 0\n\t\t 1.6292068e-07 1 0 0.70708346 0.70708323 0 1.6292068e-07 1 0 1.6292068e-07 1 -0.70708334\n\t\t -1.151985e-07 -0.70708334 0 -1.6292068e-07 -1 -0.70708334 -1.151985e-07 -0.70708334\n\t\t 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0\n\t\t -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -0.70708346 -0.70708323 0 -1 1.6292068e-07\n\t\t 0 -0.70708346 -0.70708323 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07\n\t\t 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -0.70708346 -0.70708323\n\t\t 0 -1 1.6292068e-07 0 -0.70708346 -0.70708323 0 -1 1.6292068e-07 0 -1 1.6292068e-07\n\t\t 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -0.70708346\n\t\t -0.70708323 -0.70708334 -0.70708334 1.151985e-07 -0.57734919 -0.57734931 -0.57734907\n\t\t 0 -1 1.6292068e-07 -0.70708334 -0.70708334 1.151985e-07 -0.70708334 -0.70708334 1.151985e-07\n\t\t 0 -1 1.6292068e-07 -0.70708334 -0.70708334 1.151985e-07 -0.70708334 -0.70708334 1.151985e-07\n\t\t 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 0.30149236 0.90450764\n\t\t 0.30149221 -1 0 0 -1 0 0 -1 0 0 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931\n\t\t 0.57734907 0.30149236 0.30149251 0.90450752 0.30149236 0.30149251 0.90450752 -0.57734919\n\t\t 0.57734931 0.57734907 -0.70708334 1.151985e-07 0.70708334 -1 0 0 -1 0 0 -1 0 0 0.57734919\n\t\t 0.57734931 0.57734907 0 1 -1.6292068e-07 0.30149236 0.90450764 0.30149221 0.30149236\n\t\t 0.90450764 0.30149221 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907\n\t\t 0.57734919 0.57734931 0.57734907 0.70708334 0.70708334 -1.151985e-07 0.90450758 0.30149242\n\t\t 0.3014923 0.30149236 0.90450764 0.30149221 0.70708334 0.70708334 -1.151985e-07 0.70708334\n\t\t 0.70708334 -1.151985e-07 0 -1.6292068e-07 -1 0.30149236 0.30149221 -0.90450764 0\n\t\t -1.6292068e-07 -1 -0.70708334 1.151985e-07 0.70708334 -0.90450758 0.30149242 0.3014923\n\t\t -1 0 0 -1 0 0 -0.70708334 -1.151985e-07 -0.70708334 -0.70708334 -1.151985e-07 -0.70708334\n\t\t 0.57734919 -0.57734931 -0.57734907 0 -1 1.6292068e-07 0 -0.70708346 -0.70708323 0.70708334\n\t\t -0.70708334 1.151985e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0.70708334 -0.70708334\n\t\t 1.151985e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0.75374615 -0.4646444 -0.46464422\n\t\t 0.75374615 -0.60710478 -0.25147244 0.70708334 -0.70708334 1.151985e-07 -0.99996948\n\t\t 0 0 -0.70708334 -0.70708334 1.151985e-07 -0.70708334 -0.70708334 1.151985e-07 -0.70708334\n\t\t 1.151985e-07 0.70708334 -0.99996948 0 0 -0.70708334 1.151985e-07 0.70708334 -1 0\n\t\t 0 -1 0 0 -0.99996948 0 0 -1 0 0 -1 0 0 -1 0 0 -0.90450758 0.30149242 0.3014923 0.57734919\n\t\t 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907\n\t\t 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 -1 0 0 -0.70708334\n\t\t -1.151985e-07 -0.70708334 -0.70708334 -1.151985e-07 -0.70708334 0.57734919 0.57734931\n\t\t 0.57734907 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 0.57734919\n\t\t 0.57734931 0.57734907 -0.57734919 0.57734931 0.57734907 -0.90450758 0.30149242 0.3014923\n\t\t 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931\n\t\t 0.57734907 0.30149236 0.30149221 -0.90450764 0.57734919 0.57734931 0.57734907 0.57734919\n\t\t 0.57734907 -0.57734931 -0.70708334 -1.151985e-07 -0.70708334 0 -1.6292068e-07 -1\n\t\t 0 -1.6292068e-07 -1 0.57734919 0.57734931 0.57734907;\n\tsetAttr \".n[166:331]\" -type \"float3\"  0.57734919 0.57734931 0.57734907 0.57734919\n\t\t 0.57734931 0.57734907 -1 0 0 -1 0 0 -1 0 0 0 -1.6292068e-07 -1 0.57734919 0.57734907\n\t\t -0.57734931 0.70708334 -1.151985e-07 -0.70708334 0.90450758 0.30149242 0.3014923\n\t\t 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 -0.70708334 -1.151985e-07\n\t\t -0.70708334 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0.70708334 -1.151985e-07 -0.70708334\n\t\t 0.57734919 0.57734931 0.57734907 0.90450758 0.30149242 0.3014923 0 -1.6292068e-07\n\t\t -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0.57734919 0.57734931 0.57734907 0.57734919\n\t\t 0.57734931 0.57734907 0.30149236 0.90450764 0.30149221 0.57734919 0.57734931 0.57734907\n\t\t 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931\n\t\t 0.57734907 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 0.30149236\n\t\t 0.30149221 -0.90450764 0.57734919 0.57734931 0.57734907 0.57734919 0.57734907 -0.57734931\n\t\t -0.70708334 -1.151985e-07 -0.70708334 0.30149236 0.30149221 -0.90450764 0 -1.6292068e-07\n\t\t -1 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931\n\t\t 0.57734907 -0.90450758 0.30149242 0.3014923 0.57734919 0.57734931 0.57734907 0.57734919\n\t\t 0.57734931 0.57734907 0 -1.6292068e-07 -1 0.30149236 0.30149221 -0.90450764 0 -1.6292068e-07\n\t\t -1 0.30149236 0.30149221 -0.90450764 0.57734919 0.57734931 0.57734907 0.57734919\n\t\t 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907\n\t\t 0.57734919 0.57734931 0.57734907 -0.90450758 0.30149242 0.3014923 -0.90450758 0.30149242\n\t\t 0.3014923 -1 0 0 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907\n\t\t 0.57734919 0.57734931 0.57734907 0 -1.6292068e-07 -1 0.57734919 0.57734907 -0.57734931\n\t\t 0.30149236 0.30149221 -0.90450764 0.30149236 0.30149221 -0.90450764 0.57734919 0.57734931\n\t\t 0.57734907 0.57734919 0.57734907 -0.57734931 0.57734919 0.57734931 0.57734907 -0.57734919\n\t\t 0.57734931 0.57734907 -0.90450758 0.30149242 0.3014923 -0.90450758 0.30149242 0.3014923\n\t\t 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 0 -1.6292068e-07\n\t\t -1 0.57734919 0.57734907 -0.57734931 0.30149236 0.30149221 -0.90450764 -1 0 0 -0.70708334\n\t\t -1.151985e-07 -0.70708334 -0.70708334 -1.151985e-07 -0.70708334 0.30149236 0.30149221\n\t\t -0.90450764 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 0.57734919\n\t\t 0.57734931 0.57734907 -0.57734919 0.57734931 0.57734907 -0.90450758 0.30149242 0.3014923\n\t\t -0.90450758 0.30149242 0.3014923 -0.90450758 0.30149242 0.3014923 -1 0 0 -0.57734919\n\t\t 0.57734907 -0.57734931 0.57734919 0.57734931 0.57734907 0.57734919 0.57734907 -0.57734931\n\t\t -0.90450758 0.30149242 0.3014923 -0.57734919 0.57734907 -0.57734931 -0.70708334 -1.151985e-07\n\t\t -0.70708334 0.30149236 0.30149221 -0.90450764 0.57734919 0.57734931 0.57734907 0.57734919\n\t\t 0.57734931 0.57734907 -0.70708334 -1.151985e-07 -0.70708334 0.57734919 0.57734907\n\t\t -0.57734931 0.30149236 0.30149221 -0.90450764 0.75374615 0.60710466 -0.25147262 0.66570026\n\t\t 0.52763444 -0.52763456 0.75374615 0.46464422 -0.4646444 0.66570026 -0.28553104 0.68938267\n\t\t 0.75374615 1.0705918e-07 0.65712452 0.75374615 -0.25147244 0.60710478 0.75374615\n\t\t 0.25147244 -0.60710478 0.66570026 -1.2156775e-07 -0.74617755 0.75374615 -1.0705918e-07\n\t\t -0.65712452 0.75374615 -0.46464422 0.4646444 0.66570026 -0.68938255 0.28553128 0.66570026\n\t\t -0.52763444 0.52763456 0.75374615 0.46464422 -0.4646444 0.66570026 0.28553104 -0.68938267\n\t\t 0.75374615 0.25147244 -0.60710478 0.75374615 -1.0705918e-07 -0.65712452 0.66570026\n\t\t -0.28553128 -0.68938255 0.75374615 -0.25147262 -0.60710466 0.75374615 0.25147262\n\t\t 0.60710466 0.66570026 0.52763456 0.52763444 0.75374615 0.4646444 0.46464422 0.66570026\n\t\t -0.74617755 1.2156775e-07 0.75374615 -0.60710466 0.25147262 0.75374615 -0.65712452\n\t\t 1.0705918e-07 0.66570026 -0.68938267 -0.28553104 0.75374615 -0.65712452 1.0705918e-07\n\t\t 0.75374615 -0.60710478 -0.25147244 0.75374615 -0.4646444 -0.46464422 0.66570026 -0.68938267\n\t\t -0.28553104 0.75374615 -0.60710478 -0.25147244 0.66570026 1.2156775e-07 0.74617755\n\t\t 0.75374615 0.25147262 0.60710466 0.75374615 1.0705918e-07 0.65712452 0.66570026 0.68938267\n\t\t 0.28553104 0.75374615 0.65712452 -1.0705918e-07 0.75374615 0.60710478 0.25147244\n\t\t 0.75374615 0.65712452 -1.0705918e-07 0.66570026 0.68938255 -0.28553128 0.75374615\n\t\t 0.60710466 -0.25147262 0.70708334 1.151985e-07 0.70708334 0.75374615 1.0705918e-07\n\t\t 0.65712452 0.75374615 0.25147262 0.60710466 0.75374615 -0.25147262 -0.60710466 0.66570026\n\t\t -0.52763456 -0.52763444 0.75374615 -0.4646444 -0.46464422 0.75374615 -0.25147244\n\t\t 0.60710478 0.66570026 -0.52763444 0.52763456 0.66570026 -0.28553104 0.68938267 -0.70708334\n\t\t 1.151985e-07 0.70708334 -0.70708334 -0.70708334 1.151985e-07 -0.57734919 -0.57734907\n\t\t 0.57734931 -1 0 0 -0.70708334 -0.70708334 1.151985e-07 -0.70708334 -0.70708334 1.151985e-07\n\t\t 0 -1.6292068e-07 -1 0 -0.70708346 -0.70708323 0 -0.70708346 -0.70708323 0.70708334\n\t\t -1.151985e-07 -0.70708334 0.70708334 -1.151985e-07 -0.70708334 0.75374615 0.25147244\n\t\t -0.60710478 0.70708334 -0.70708334 1.151985e-07 0.70708334 -0.70708334 1.151985e-07\n\t\t 0.75374615 -0.60710466 0.25147262 0.57734919 0.57734931 0.57734907 0.75374615 0.25147262\n\t\t 0.60710466 0.75374615 0.4646444 0.46464422 0.75374615 -0.65712452 1.0705918e-07 0.70708334\n\t\t -0.70708334 1.151985e-07 0.75374615 -0.60710478 -0.25147244 0.75374615 -0.46464422\n\t\t 0.4646444 0.57734919 -0.57734907 0.57734931;\n\tsetAttr \".n[332:497]\" -type \"float3\"  0.70708334 -0.70708334 1.151985e-07 0.57734919\n\t\t -0.57734931 -0.57734907 0.75374615 -0.25147262 -0.60710466 0.75374615 -0.4646444\n\t\t -0.46464422 0.90450758 0.30149242 0.3014923 0.70708334 0.70708334 -1.151985e-07 0.75374615\n\t\t 0.60710466 -0.25147262 0.70708334 1.151985e-07 0.70708334 0.57734919 -0.57734907\n\t\t 0.57734931 0.75374615 -0.25147244 0.60710478 0.75374615 0.65712452 -1.0705918e-07\n\t\t 0.70708334 0.70708334 -1.151985e-07 0.75374615 0.60710478 0.25147244 0.75374615 0.4646444\n\t\t 0.46464422 0.75374615 0.60710478 0.25147244 0.70708334 0.70708334 -1.151985e-07 0.66570026\n\t\t 0.52763456 0.52763444 0.75374615 0.60710478 0.25147244 0.75374615 0.4646444 0.46464422\n\t\t 0.57734919 0.57734931 0.57734907 0.70708334 1.151985e-07 0.70708334 0.75374615 0.25147262\n\t\t 0.60710466 0.90450758 0.30149242 0.3014923 0.75374615 0.60710466 -0.25147262 0.75374615\n\t\t 0.46464422 -0.4646444 0.75374615 0.46464422 -0.4646444 0.70708334 -1.151985e-07 -0.70708334\n\t\t 0.90450758 0.30149242 0.3014923 0.70708334 -0.70708334 1.151985e-07 0.75374615 -0.60710466\n\t\t 0.25147262 0.75374615 -0.46464422 0.4646444 0 -1.6292068e-07 -1 0 -0.70708346 -0.70708323\n\t\t 0 -0.70708346 -0.70708323 -0.70708334 -1.151985e-07 -0.70708334 0 -0.70708346 -0.70708323\n\t\t -0.57734919 -0.57734931 -0.57734907 0 1.6292068e-07 1 0 -0.70708323 0.70708346 0\n\t\t -0.70708323 0.70708346 0 1.6292068e-07 1 0 -0.70708323 0.70708346 0 -0.70708323 0.70708346\n\t\t 0.70708334 1.151985e-07 0.70708334 0 -0.70708323 0.70708346 0.57734919 -0.57734907\n\t\t 0.57734931 0 1.6292068e-07 1 -0.57734919 -0.57734907 0.57734931 0 -0.70708323 0.70708346\n\t\t 0 -1.6292068e-07 -1 0.57734919 -0.57734931 -0.57734907 0 -0.70708346 -0.70708323\n\t\t -1 0 0 -0.57734919 -0.57734931 -0.57734907 -0.70708334 -0.70708334 1.151985e-07 0.70708334\n\t\t -0.70708334 1.151985e-07 0.57734919 -0.57734931 -0.57734907 0.75374615 -0.4646444\n\t\t -0.46464422 0.75374615 0.25147244 -0.60710478 0.75374615 -1.0705918e-07 -0.65712452\n\t\t 0.70708334 -1.151985e-07 -0.70708334 0.70708334 0.70708334 -1.151985e-07 0.75374615\n\t\t 0.65712452 -1.0705918e-07 0.75374615 0.60710466 -0.25147262 0.75374615 0.60710478\n\t\t 0.25147244 0.70708334 0.70708334 -1.151985e-07 0.70708334 0.70708334 -1.151985e-07\n\t\t 0.75374615 -0.46464422 0.4646444 0.75374615 -0.25147244 0.60710478 0.57734919 -0.57734907\n\t\t 0.57734931 0.70708334 0.70708334 -1.151985e-07 0.57734919 0.57734931 0.57734907 0.75374615\n\t\t 0.4646444 0.46464422 0.70708334 -0.70708334 1.151985e-07 0.75374615 -0.65712452 1.0705918e-07\n\t\t 0.75374615 -0.60710466 0.25147262 0.57734919 -0.57734931 -0.57734907 0.70708334 -1.151985e-07\n\t\t -0.70708334 0.75374615 -0.25147262 -0.60710466 0.75374615 -0.60710478 -0.25147244\n\t\t 0.70708334 -0.70708334 1.151985e-07 0.70708334 -0.70708334 1.151985e-07 0.70708334\n\t\t -1.151985e-07 -0.70708334 0.75374615 -1.0705918e-07 -0.65712452 0.75374615 -0.25147262\n\t\t -0.60710466 0.75374615 -0.25147244 0.60710478 0.75374615 1.0705918e-07 0.65712452\n\t\t 0.70708334 1.151985e-07 0.70708334 0.66570026 1.2156775e-07 0.74617755 0.66570026\n\t\t -0.52763444 0.52763456 1 0 0 0.75374615 0.46464422 -0.4646444 0.75374615 0.25147244\n\t\t -0.60710478 0.70708334 -1.151985e-07 -0.70708334 0.66570026 0.52763444 -0.52763456\n\t\t 0.66570026 0.74617755 -1.2156775e-07 1 0 0 0.66570026 -0.52763456 -0.52763444 0.66570026\n\t\t -0.74617755 1.2156775e-07 0.66570026 -0.68938267 -0.28553104 0.66570026 1.2156775e-07\n\t\t 0.74617755 0.66570026 0.52763456 0.52763444 0.66570026 0.28553128 0.68938255 0.66570026\n\t\t -0.74617755 1.2156775e-07 0.66570026 -0.52763444 0.52763456 0.66570026 -0.68938255\n\t\t 0.28553128 0.66570026 -1.2156775e-07 -0.74617755 0.66570026 0.52763444 -0.52763456\n\t\t 1 0 0 0.66570026 -1.2156775e-07 -0.74617755 0.66570026 -0.52763456 -0.52763444 0.66570026\n\t\t -0.28553128 -0.68938255 0.66570026 0.74617755 -1.2156775e-07 0.66570026 0.68938267\n\t\t 0.28553104 0.66570026 0.52763456 0.52763444 -1 0 0 -0.70708334 -1.151985e-07 -0.70708334\n\t\t -0.70708334 -1.151985e-07 -0.70708334 0 -1.6292068e-07 -1 0.70708334 -1.151985e-07\n\t\t -0.70708334 0.70708334 -1.151985e-07 -0.70708334 0.30149236 0.30149251 0.90450752\n\t\t -0.70708334 1.151985e-07 0.70708334 -0.70708334 1.151985e-07 0.70708334 0.70708334\n\t\t -0.70708334 1.151985e-07 0.57734919 -0.57734907 0.57734931 0 -0.70708323 0.70708346\n\t\t 0.30149236 0.90450764 0.30149221 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931\n\t\t 0.57734907 0 1 -1.6292068e-07 0 0.70708346 0.70708323 0.57734919 0.57734931 0.57734907\n\t\t 0.30149236 0.90450764 0.30149221 0 0.70708346 0.70708323 0 0.70708346 0.70708323\n\t\t 0.57734919 0.57734931 0.57734907 0.30149236 0.30149251 0.90450752 0 0.70708346 0.70708323\n\t\t 0 -1 1.6292068e-07 0 -0.70708323 0.70708346 -0.57734919 -0.57734907 0.57734931 0\n\t\t -1 1.6292068e-07 0 -0.70708323 0.70708346 0 -0.70708323 0.70708346 0 -1 1.6292068e-07\n\t\t 0 -0.70708323 0.70708346 0 -0.70708323 0.70708346 0.57734919 0.57734931 0.57734907\n\t\t 0 0.70708346 0.70708323 0 1.6292068e-07 1 0 0.70708346 0.70708323 0 0.70708346 0.70708323\n\t\t 0 1.6292068e-07 1 0 0.70708346 0.70708323 0.30149236 0.30149251 0.90450752 0 1.6292068e-07\n\t\t 1 -0.70708334 -1.151985e-07 -0.70708334 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0\n\t\t -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07\n\t\t -1 0 -1.6292068e-07 -1;\n\tsetAttr \".n[498:663]\" -type \"float3\"  0 -0.70708346 -0.70708323 0 -1 1.6292068e-07\n\t\t 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1\n\t\t 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -0.70708346 -0.70708323 0 -1\n\t\t 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07\n\t\t 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -0.70708346 -0.70708323\n\t\t 0 -1 1.6292068e-07 -0.70708334 -0.70708334 1.151985e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07\n\t\t -0.70708334 -0.70708334 1.151985e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 -0.70708334\n\t\t -0.70708334 1.151985e-07 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907\n\t\t 0.57734919 0.57734931 0.57734907 -1 0 0 -1 0 0 -1 0 0 0.57734919 0.57734931 0.57734907\n\t\t 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 0.30149236 0.30149251\n\t\t 0.90450752 0.57734919 0.57734931 0.57734907 -0.57734919 0.57734931 0.57734907 -1\n\t\t 0 0 -0.90450758 0.30149242 0.3014923 -1 0 0 0.57734919 0.57734931 0.57734907 0.30149236\n\t\t 0.90450764 0.30149221 0 1 -1.6292068e-07 0.30149236 0.90450764 0.30149221 0.57734919\n\t\t 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907\n\t\t 0.30149236 0.90450764 0.30149221 0.70708334 0.70708334 -1.151985e-07 0.30149236 0.90450764\n\t\t 0.30149221 0 1 -1.6292068e-07 0.70708334 0.70708334 -1.151985e-07 0 -1.6292068e-07\n\t\t -1 0 -1.6292068e-07 -1 0.30149236 0.30149221 -0.90450764 -0.70708334 1.151985e-07\n\t\t 0.70708334 -0.57734919 0.57734931 0.57734907 -0.90450758 0.30149242 0.3014923 -1\n\t\t 0 0 -1 0 0 -0.70708334 -1.151985e-07 -0.70708334 0.57734919 -0.57734931 -0.57734907\n\t\t 0.70708334 -0.70708334 1.151985e-07 0 -1 1.6292068e-07 0.70708334 -0.70708334 1.151985e-07\n\t\t 0.70708334 -0.70708334 1.151985e-07 0 -1 1.6292068e-07 0.70708334 -0.70708334 1.151985e-07\n\t\t 0.70708334 -0.70708334 1.151985e-07 0 -1 1.6292068e-07 -0.99996948 0 0 -1 0 0 -0.70708334\n\t\t -0.70708334 1.151985e-07 -0.70708334 1.151985e-07 0.70708334 -1 0 0 -0.99996948 0\n\t\t 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.90450758 0.30149242 0.3014923 -0.57734919\n\t\t 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907\n\t\t 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 -1 0 0 -1 0 0 -0.70708334\n\t\t -1.151985e-07 -0.70708334 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931\n\t\t 0.57734907 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 0.57734919\n\t\t 0.57734931 0.57734907 -0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907\n\t\t 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 0.30149236 0.30149221\n\t\t -0.90450764 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 -0.70708334\n\t\t -1.151985e-07 -0.70708334 -0.70708334 -1.151985e-07 -0.70708334 0 -1.6292068e-07\n\t\t -1 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931\n\t\t 0.57734907 -1 0 0 -0.90450758 0.30149242 0.3014923 -1 0 0 0 -1.6292068e-07 -1 0.30149236\n\t\t 0.30149221 -0.90450764 0.57734919 0.57734907 -0.57734931 0.90450758 0.30149242 0.3014923\n\t\t 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 -0.70708334 -1.151985e-07\n\t\t -0.70708334 -0.70708334 -1.151985e-07 -0.70708334 0 -1.6292068e-07 -1 0.70708334\n\t\t -1.151985e-07 -0.70708334 0.57734919 0.57734907 -0.57734931 0.57734919 0.57734931\n\t\t 0.57734907 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0.57734919\n\t\t 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907\n\t\t 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931\n\t\t 0.57734907 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 0.57734919\n\t\t 0.57734931 0.57734907 0.30149236 0.30149221 -0.90450764 0.57734919 0.57734931 0.57734907\n\t\t 0.57734919 0.57734931 0.57734907 -0.70708334 -1.151985e-07 -0.70708334 -0.70708334\n\t\t -1.151985e-07 -0.70708334 0.30149236 0.30149221 -0.90450764 0.57734919 0.57734931\n\t\t 0.57734907 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 -0.90450758\n\t\t 0.30149242 0.3014923 -0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907\n\t\t 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0.30149236 0.30149221 -0.90450764 0.30149236\n\t\t 0.30149221 -0.90450764 0.57734919 0.57734907 -0.57734931 0.57734919 0.57734931 0.57734907\n\t\t 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931\n\t\t 0.57734907 -0.90450758 0.30149242 0.3014923 -0.57734919 0.57734931 0.57734907 -0.90450758\n\t\t 0.30149242 0.3014923 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907\n\t\t 0.57734919 0.57734931 0.57734907 0 -1.6292068e-07 -1;\n\tsetAttr \".n[664:803]\" -type \"float3\"  0.30149236 0.30149221 -0.90450764 0.57734919\n\t\t 0.57734907 -0.57734931 0.30149236 0.30149221 -0.90450764 0.57734919 0.57734931 0.57734907\n\t\t 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931\n\t\t 0.57734907 -0.57734919 0.57734931 0.57734907 -0.90450758 0.30149242 0.3014923 -0.57734919\n\t\t 0.57734931 0.57734907 0.57734919 0.57734931 0.57734907 0 -1.6292068e-07 -1 0.30149236\n\t\t 0.30149221 -0.90450764 0.57734919 0.57734907 -0.57734931 -1 0 0 -0.90450758 0.30149242\n\t\t 0.3014923 -0.70708334 -1.151985e-07 -0.70708334 0.30149236 0.30149221 -0.90450764\n\t\t 0.57734919 0.57734907 -0.57734931 0.57734919 0.57734931 0.57734907 0.57734919 0.57734931\n\t\t 0.57734907 0.57734919 0.57734931 0.57734907 -0.57734919 0.57734931 0.57734907 -0.90450758\n\t\t 0.30149242 0.3014923 -0.57734919 0.57734931 0.57734907 -0.90450758 0.30149242 0.3014923\n\t\t -0.57734919 0.57734907 -0.57734931 -0.57734919 0.57734931 0.57734907 0.57734919 0.57734931\n\t\t 0.57734907 -0.90450758 0.30149242 0.3014923 -0.57734919 0.57734931 0.57734907 -0.57734919\n\t\t 0.57734907 -0.57734931 0.30149236 0.30149221 -0.90450764 0.57734919 0.57734907 -0.57734931\n\t\t 0.57734919 0.57734931 0.57734907 -0.70708334 -1.151985e-07 -0.70708334 -0.57734919\n\t\t 0.57734907 -0.57734931 0.57734919 0.57734907 -0.57734931 0.75374615 0.60710466 -0.25147262\n\t\t 0.66570026 0.68938255 -0.28553128 0.66570026 0.52763444 -0.52763456 0.66570026 -0.28553104\n\t\t 0.68938267 0.66570026 1.2156775e-07 0.74617755 0.75374615 1.0705918e-07 0.65712452\n\t\t 0.75374615 0.25147244 -0.60710478 0.66570026 0.28553104 -0.68938267 0.66570026 -1.2156775e-07\n\t\t -0.74617755 0.75374615 -0.46464422 0.4646444 0.75374615 -0.60710466 0.25147262 0.66570026\n\t\t -0.68938255 0.28553128 0.75374615 0.46464422 -0.4646444 0.66570026 0.52763444 -0.52763456\n\t\t 0.66570026 0.28553104 -0.68938267 0.75374615 -1.0705918e-07 -0.65712452 0.66570026\n\t\t -1.2156775e-07 -0.74617755 0.66570026 -0.28553128 -0.68938255 0.75374615 0.25147262\n\t\t 0.60710466 0.66570026 0.28553128 0.68938255 0.66570026 0.52763456 0.52763444 0.66570026\n\t\t -0.74617755 1.2156775e-07 0.66570026 -0.68938255 0.28553128 0.75374615 -0.60710466\n\t\t 0.25147262 0.66570026 -0.68938267 -0.28553104 0.66570026 -0.74617755 1.2156775e-07\n\t\t 0.75374615 -0.65712452 1.0705918e-07 0.75374615 -0.4646444 -0.46464422 0.66570026\n\t\t -0.52763456 -0.52763444 0.66570026 -0.68938267 -0.28553104 0.66570026 1.2156775e-07\n\t\t 0.74617755 0.66570026 0.28553128 0.68938255 0.75374615 0.25147262 0.60710466 0.66570026\n\t\t 0.68938267 0.28553104 0.66570026 0.74617755 -1.2156775e-07 0.75374615 0.65712452\n\t\t -1.0705918e-07 0.75374615 0.65712452 -1.0705918e-07 0.66570026 0.74617755 -1.2156775e-07\n\t\t 0.66570026 0.68938255 -0.28553128 0.75374615 -0.25147262 -0.60710466 0.66570026 -0.28553128\n\t\t -0.68938255 0.66570026 -0.52763456 -0.52763444 0.75374615 -0.25147244 0.60710478\n\t\t 0.75374615 -0.46464422 0.4646444 0.66570026 -0.52763444 0.52763456 -0.70708334 1.151985e-07\n\t\t 0.70708334 -0.99996948 0 0 -0.70708334 -0.70708334 1.151985e-07 -1 0 0 -1 0 0 -0.70708334\n\t\t -0.70708334 1.151985e-07 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -0.70708346 -0.70708323\n\t\t 0.66570026 0.52763456 0.52763444 0.66570026 0.68938267 0.28553104 0.75374615 0.60710478\n\t\t 0.25147244 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -0.70708346 -0.70708323 -0.70708334\n\t\t -1.151985e-07 -0.70708334 0 -1.6292068e-07 -1 0 -0.70708346 -0.70708323 0 1.6292068e-07\n\t\t 1 0 1.6292068e-07 1 0 -0.70708323 0.70708346 0 1.6292068e-07 1 0 1.6292068e-07 1\n\t\t 0 -0.70708323 0.70708346 0.70708334 1.151985e-07 0.70708334 0 1.6292068e-07 1 0 -0.70708323\n\t\t 0.70708346 0 1.6292068e-07 1 -0.70708334 1.151985e-07 0.70708334 -0.57734919 -0.57734907\n\t\t 0.57734931 0 -1.6292068e-07 -1 0.70708334 -1.151985e-07 -0.70708334 0.57734919 -0.57734931\n\t\t -0.57734907 -1 0 0 -0.70708334 -1.151985e-07 -0.70708334 -0.57734919 -0.57734931\n\t\t -0.57734907 0.66570026 1.2156775e-07 0.74617755 0.66570026 -0.28553104 0.68938267\n\t\t 0.66570026 -0.52763444 0.52763456 0.66570026 0.52763444 -0.52763456 0.66570026 0.68938255\n\t\t -0.28553128 0.66570026 0.74617755 -1.2156775e-07 0.66570026 -0.52763456 -0.52763444\n\t\t 1 0 0 0.66570026 -0.74617755 1.2156775e-07 0.66570026 1.2156775e-07 0.74617755 1\n\t\t 0 0 0.66570026 0.52763456 0.52763444 0.66570026 -0.74617755 1.2156775e-07 1 0 0 0.66570026\n\t\t -0.52763444 0.52763456 0.66570026 -1.2156775e-07 -0.74617755 0.66570026 0.28553104\n\t\t -0.68938267 0.66570026 0.52763444 -0.52763456 0.66570026 -1.2156775e-07 -0.74617755\n\t\t 1 0 0 0.66570026 -0.52763456 -0.52763444;\n\tsetAttr -s 268 -ch 804 \".fc[0:267]\" -type \"polyFaces\" \n\t\tf 3 0 1 2\n\t\tmu 0 3 34 36 33\n\t\tf 3 3 4 5\n\t\tmu 0 3 32 224 35\n\t\tf 3 6 7 8\n\t\tmu 0 3 225 226 227\n\t\tf 3 9 10 11\n\t\tmu 0 3 228 160 132\n\t\tf 3 12 13 14\n\t\tmu 0 3 133 134 135\n\t\tf 3 15 16 17\n\t\tmu 0 3 136 137 38\n\t\tf 3 18 19 20\n\t\tmu 0 3 103 138 139\n\t\tf 3 21 22 23\n\t\tmu 0 3 102 238 103\n\t\tf 3 24 25 26\n\t\tmu 0 3 95 82 102\n\t\tf 3 27 28 29\n\t\tmu 0 3 118 119 202\n\t\tf 3 30 31 32\n\t\tmu 0 3 120 189 118\n\t\tf 3 33 34 35\n\t\tmu 0 3 135 115 120\n\t\tf 3 36 37 38\n\t\tmu 0 3 1 192 168\n\t\tf 3 39 40 41\n\t\tmu 0 3 9 151 192\n\t\tf 3 42 43 44\n\t\tmu 0 3 2 132 151\n\t\tf 3 45 46 47\n\t\tmu 0 3 53 54 116\n\t\tf 3 48 49 50\n\t\tmu 0 3 114 24 54\n\t\tf 3 51 52 53\n\t\tmu 0 3 25 227 24\n\t\tf 3 54 55 56\n\t\tmu 0 3 26 121 27\n\t\tf 3 57 58 59\n\t\tmu 0 3 30 207 121\n\t\tf 3 60 61 62\n\t\tmu 0 3 233 120 207\n\t\tf 3 63 64 65\n\t\tmu 0 3 27 28 213\n\t\tf 3 66 67 68\n\t\tmu 0 3 121 169 28\n\t\tf 3 69 70 71\n\t\tmu 0 3 207 118 169\n\t\tf 3 72 73 74\n\t\tmu 0 3 213 104 29\n\t\tf 3 75 76 77\n\t\tmu 0 3 28 31 104\n\t\tf 3 78 79 80\n\t\tmu 0 3 169 202 31\n\t\tf 3 81 82 83\n\t\tmu 0 3 232 108 136\n\t\tf 3 84 85 86\n\t\tmu 0 3 229 170 32\n\t\tf 3 87 88 89\n\t\tmu 0 3 230 106 215\n\t\tf 3 90 91 92\n\t\tmu 0 3 215 130 109\n\t\tf 3 93 94 95\n\t\tmu 0 3 37 43 229\n\t\tf 3 96 97 -18\n\t\tmu 0 3 214 103 231\n\t\tf 3 98 99 -27\n\t\tmu 0 3 98 45 230\n\t\tf 3 100 101 102\n\t\tmu 0 3 110 107 12\n\t\tf 3 103 104 105\n\t\tmu 0 3 231 139 107\n\t\tf 3 106 107 108\n\t\tmu 0 3 25 23 225\n\t\tf 3 109 110 111\n\t\tmu 0 3 111 145 37\n\t\tf 3 112 113 114\n\t\tmu 0 3 32 208 210\n\t\tf 3 115 116 117\n\t\tmu 0 3 209 30 26\n\t\tf 3 118 119 120\n\t\tmu 0 3 212 233 30\n\t\tf 3 121 122 123\n\t\tmu 0 3 117 135 233\n\t\tf 3 124 125 126\n\t\tmu 0 3 50 131 212\n\t\tf 3 127 -80 128\n\t\tmu 0 3 105 216 211\n\t\tf 3 129 130 131\n\t\tmu 0 3 111 105 126\n\t\tf 3 132 133 134\n\t\tmu 0 3 37 198 105\n\t\tf 3 135 136 137\n\t\tmu 0 3 229 35 198\n\t\tf 3 138 139 140\n\t\tmu 0 3 152 106 45\n\t\tf 3 141 142 143\n\t\tmu 0 3 171 55 172\n\t\tf 3 144 145 146\n\t\tmu 0 3 170 146 208\n\t\tf 3 147 148 149\n\t\tmu 0 3 234 203 137\n\t\tf 3 150 151 -141\n\t\tmu 0 3 122 51 173\n\t\tf 3 152 153 154\n\t\tmu 0 3 174 108 204\n\t\tf 3 155 156 157\n\t\tmu 0 3 56 57 175\n\t\tf 3 158 159 160\n\t\tmu 0 3 92 58 176\n\t\tf 3 161 162 -150\n\t\tmu 0 3 172 59 123\n\t\tf 3 163 164 165\n\t\tmu 0 3 43 200 170\n\t\tf 3 166 167 168\n\t\tmu 0 3 225 205 206\n\t\tf 3 169 170 -103\n\t\tmu 0 3 177 204 232\n\t\tf 3 171 172 173\n\t\tmu 0 3 53 176 114\n\t\tf 3 174 175 176\n\t\tmu 0 3 60 57 177\n\t\tf 3 177 178 179\n\t\tmu 0 3 114 71 25\n\t\tf 3 180 181 182\n\t\tmu 0 3 38 203 98\n\t\tf 3 183 184 185\n\t\tmu 0 3 83 101 13\n\t\tf 3 186 187 188\n\t\tmu 0 3 39 55 61\n\t\tf 3 189 190 191\n\t\tmu 0 3 62 8 220\n\t\tf 3 192 193 194\n\t\tmu 0 3 128 156 58\n\t\tf 3 195 196 -189\n\t\tmu 0 3 84 188 83\n\t\tf 3 197 198 199\n\t\tmu 0 3 161 159 59\n\t\tf 3 200 201 202\n\t\tmu 0 3 176 85 71\n\t\tf 3 203 204 205\n\t\tmu 0 3 217 8 15\n\t\tf 3 206 207 208\n\t\tmu 0 3 123 159 122\n\t\tf 3 209 210 211\n\t\tmu 0 3 145 49 43\n\t\tf 3 212 213 -155\n\t\tmu 0 3 15 61 171\n\t\tf 3 214 215 216\n\t\tmu 0 3 71 72 23\n\t\tf 3 217 218 219\n\t\tmu 0 3 21 144 221\n\t\tf 3 220 221 222\n\t\tmu 0 3 68 11 201\n\t\tf 3 223 224 -223\n\t\tmu 0 3 141 101 188\n\t\tf 3 225 226 227\n\t\tmu 0 3 58 86 85\n\t\tf 3 228 229 230\n\t\tmu 0 3 200 14 146\n\t\tf 3 231 232 233\n\t\tmu 0 3 16 144 84\n\t\tf 3 234 235 -200\n\t\tmu 0 3 13 164 165\n\t\tf 3 236 237 238\n\t\tmu 0 3 49 40 200\n\t\tf 3 239 240 241\n\t\tmu 0 3 81 218 150\n\t\tf 3 242 243 244\n\t\tmu 0 3 40 87 14\n\t\tf 3 245 246 247\n\t\tmu 0 3 223 218 68\n\t\tf 3 248 249 250\n\t\tmu 0 3 93 112 156\n\t\tf 3 251 252 253\n\t\tmu 0 3 97 187 63\n\t\tf 3 254 255 256\n\t\tmu 0 3 179 44 157\n\t\tf 3 257 258 259\n\t\tmu 0 3 185 194 66\n\t\tf 3 260 261 262\n\t\tmu 0 3 3 147 235\n\t\tf 3 263 264 265\n\t\tmu 0 3 63 76 185\n\t\tf 3 266 267 268\n\t\tmu 0 3 66 219 193\n\t\tf 3 269 270 271\n\t\tmu 0 3 153 64 166\n\t\tf 3 272 273 274\n\t\tmu 0 3 88 80 17\n\t\tf 3 275 276 277\n\t\tmu 0 3 69 67 178\n\t\tf 3 278 -278 -125\n\t\tmu 0 3 42 69 178\n\t\tf 3 279 280 281\n\t\tmu 0 3 125 153 44\n\t\tf 3 282 283 284\n\t\tmu 0 3 190 89 195\n\t\tf 3 285 286 287\n\t\tmu 0 3 89 7 97\n\t\tf 3 288 -281 289\n\t\tmu 0 3 70 148 6\n\t\tf 3 290 291 292\n\t\tmu 0 3 193 222 42\n\t\tf 3 293 294 -257\n\t\tmu 0 3 157 235 179\n\t\tf 3 295 -29 296\n\t\tmu 0 3 126 211 155\n\t\tf 3 297 -77 298\n\t\tmu 0 3 198 184 216\n\t\tf 3 299 -66 300\n\t\tmu 0 3 54 27 213\n\t\tf 3 301 302 303\n\t\tmu 0 3 196 149 162\n\t\tf 3 304 305 306\n\t\tmu 0 3 133 117 18\n\t\tf 3 307 -272 308\n\t\tmu 0 3 138 6 163\n\t\tf 3 309 310 -277\n\t\tmu 0 3 236 117 131\n\t\tf 3 311 312 313\n\t\tmu 0 3 10 41 133\n\t\tf 3 314 -293 315\n\t\tmu 0 3 209 73 50\n\t\tf 3 -102 316 317\n\t\tmu 0 3 12 107 4\n\t\tf 3 318 319 320\n\t\tmu 0 3 70 41 77\n\t\tf 3 321 322 -284\n\t\tmu 0 3 99 107 100\n\t\tf 3 323 324 325\n\t\tmu 0 3 163 100 139\n\t\tf 3 326 -324 -271\n\t\tmu 0 3 64 195 166\n\t\tf 3 -39 -290 -308\n\t\tmu 0 3 138 70 6\n\t\tf 3 -318 -254 327\n\t\tmu 0 3 12 4 90\n\t\tf 3 328 -177 -328\n\t\tmu 0 3 90 149 12\n\t\tf 3 -307 329 -314\n\t\tmu 0 3 133 18 10\n\t\tf 3 330 -57 331\n\t\tmu 0 3 24 26 27\n\t\tf 3 332 -75 333\n\t\tmu 0 3 116 213 29\n\t\tf 3 334 335 336\n\t\tmu 0 3 151 189 115\n\t\tf 3 337 338 339\n\t\tmu 0 3 192 115 134\n\t\tf 3 340 341 -319\n\t\tmu 0 3 168 134 41\n\t\tf 3 342 343 344\n\t\tmu 0 3 132 119 189\n\t\tf 3 345 -118 346\n\t\tmu 0 3 227 209 26\n\t\tf 3 347 -74 348\n\t\tmu 0 3 35 186 184\n\t\tf 3 349 -316 -127\n\t\tmu 0 3 212 209 50\n\t\tf 3 -260 350 -304\n\t\tmu 0 3 162 52 196\n\t\tf 3 -322 -288 -317\n\t\tmu 0 3 107 99 4\n\t\tf 3 -323 -105 -325\n\t\tmu 0 3 100 107 139\n\t\tf 3 351 -320 -312\n\t\tmu 0 3 10 77 41\n\t\tf 3 -20 -309 -326\n\t\tmu 0 3 139 138 163\n\t\tf 3 -310 -274 -306\n\t\tmu 0 3 117 236 18\n\t\tf 3 352 353 -315\n\t\tmu 0 3 209 196 73\n\t\tf 3 -311 354 -126\n\t\tmu 0 3 131 117 212\n\t\tf 3 -351 -269 -354\n\t\tmu 0 3 196 52 73\n\t\tf 3 -256 -289 -321\n\t\tmu 0 3 77 148 70\n\t\tf 3 355 356 357\n\t\tmu 0 3 5 46 33\n\t\tf 3 -266 -303 -329\n\t\tmu 0 3 90 162 149\n\t\tf 3 358 -3 359\n\t\tmu 0 3 48 34 33\n\t\tf 3 360 361 362\n\t\tmu 0 3 140 91 22\n\t\tf 3 363 364 365\n\t\tmu 0 3 5 36 181\n\t\tf 3 366 -262 367\n\t\tmu 0 3 91 46 65\n\t\tf 3 368 -360 369\n\t\tmu 0 3 237 48 33\n\t\tf 3 370 371 372\n\t\tmu 0 3 237 140 0\n\t\tf 3 373 374 -1\n\t\tmu 0 3 34 47 36\n\t\tf 3 -115 -48 -4\n\t\tmu 0 3 32 210 224\n\t\tf 3 -169 -302 -7\n\t\tmu 0 3 225 206 226\n\t\tf 3 -93 -132 -10\n\t\tmu 0 3 228 127 160\n\t\tf 3 -313 -342 -13\n\t\tmu 0 3 133 41 134\n\t\tf 3 -83 375 -16\n\t\tmu 0 3 136 108 137\n\t\tf 3 -23 376 -19\n\t\tmu 0 3 103 238 138\n\t\tf 3 -26 377 -22\n\t\tmu 0 3 102 82 238\n\t\tf 3 -90 378 -25\n\t\tmu 0 3 95 129 82\n\t\tf 3 -32 -344 -28\n\t\tmu 0 3 118 189 119\n\t\tf 3 -35 -336 -31\n\t\tmu 0 3 120 115 189\n\t\tf 3 -14 -339 -34\n\t\tmu 0 3 135 134 115\n\t\tf 3 -377 -42 -37\n\t\tmu 0 3 1 9 192\n\t\tf 3 -378 -45 -40\n\t\tmu 0 3 9 2 151\n\t\tf 3 -379 -12 -43\n\t\tmu 0 3 2 228 132\n\t\tf 3 -174 -51 -46\n\t\tmu 0 3 53 114 54\n\t\tf 3 -180 -54 -49\n\t\tmu 0 3 114 25 24\n\t\tf 3 -109 -9 -52\n\t\tmu 0 3 25 225 227\n\t\tf 3 -117 -60 -55\n\t\tmu 0 3 26 30 121\n\t\tf 3 -120 -63 -58\n\t\tmu 0 3 30 233 207\n\t\tf 3 -123 -36 -61\n\t\tmu 0 3 233 135 120\n\t\tf 3 -56 -69 -64\n\t\tmu 0 3 27 121 28\n\t\tf 3 -59 -72 -67\n\t\tmu 0 3 121 207 169\n\t\tf 3 -62 -33 -70\n\t\tmu 0 3 207 120 118\n\t\tf 3 -65 -78 -73\n\t\tmu 0 3 213 28 104\n\t\tf 3 -68 -81 -76\n\t\tmu 0 3 28 169 31\n\t\tf 3 -71 -30 -79\n\t\tmu 0 3 169 118 202\n\t\tf 3 -171 -154 -82\n\t\tmu 0 3 232 204 108\n\t\tf 3 -95 -166 -85\n\t\tmu 0 3 229 43 170\n\t\tf 3 -100 -140 -88\n\t\tmu 0 3 230 45 106\n\t\tf 3 -89 379 -91\n\t\tmu 0 3 215 106 130\n\t\tf 3 -111 -212 -94\n\t\tmu 0 3 37 145 43\n\t\tf 3 -183 -24 -97\n\t\tmu 0 3 214 102 103\n\t\tf 3 -182 380 -99\n\t\tmu 0 3 98 203 45\n\t\tf 3 -84 -106 -101\n\t\tmu 0 3 110 231 107\n\t\tf 3 -98 -21 -104\n\t\tmu 0 3 231 103 139\n\t\tf 3 -179 -217 -107\n\t\tmu 0 3 25 71 23\n\t\tf 3 -92 381 -110\n\t\tmu 0 3 111 19 145\n\t\tf 3 -86 -147 -113\n\t\tmu 0 3 32 170 208\n\t\tf 3 -350 -121 -116\n\t\tmu 0 3 209 212 30\n\t\tf 3 -355 -124 -119\n\t\tmu 0 3 212 117 233\n\t\tf 3 -305 -15 -122\n\t\tmu 0 3 117 133 135\n\t\tf 3 -134 -299 -128\n\t\tmu 0 3 105 198 216\n\t\tf 3 -112 -135 -130\n\t\tmu 0 3 111 37 105\n\t\tf 3 -96 -138 -133\n\t\tmu 0 3 37 229 198\n\t\tf 3 -87 -6 -136\n\t\tmu 0 3 229 32 35\n\t\tf 3 -382 -380 -139\n\t\tmu 0 3 152 78 106\n\t\tf 3 -214 -188 -142\n\t\tmu 0 3 171 61 55\n\t\tf 3 -165 -231 -145\n\t\tmu 0 3 170 200 146\n\t\tf 3 -209 -381 -148\n\t\tmu 0 3 234 191 203\n\t\tf 3 -208 382 -151\n\t\tmu 0 3 122 159 51\n\t\tf 3 -144 -376 -153\n\t\tmu 0 3 174 124 108\n\t\tf 3 -206 383 -156\n\t\tmu 0 3 56 158 57\n\t\tf 3 -146 -195 -159\n\t\tmu 0 3 92 128 58\n\t\tf 3 -143 384 -162\n\t\tmu 0 3 172 55 59\n\t\tf 3 -211 -239 -164\n\t\tmu 0 3 43 49 200\n\t\tf 3 -108 -158 -167\n\t\tmu 0 3 225 23 205\n\t\tf 3 -176 -384 -170\n\t\tmu 0 3 177 57 204\n\t\tf 3 -114 -161 -172\n\t\tmu 0 3 53 92 176\n\t\tf 3 -168 -157 -175\n\t\tmu 0 3 60 175 57\n\t\tf 3 -173 -203 -178\n\t\tmu 0 3 114 176 71\n\t\tf 3 -17 -149 -181\n\t\tmu 0 3 38 137 203\n\t\tf 3 -197 -225 -184\n\t\tmu 0 3 83 188 101\n\t\tf 3 -186 -385 -187\n\t\tmu 0 3 39 180 55\n\t\tf 3 -234 385 -190\n\t\tmu 0 3 62 74 8\n\t\tf 3 -230 -251 -193\n\t\tmu 0 3 128 93 156\n\t\tf 3 -233 386 -196\n\t\tmu 0 3 84 144 188\n\t\tf 3 387 -383 -198\n\t\tmu 0 3 161 75 159\n\t\tf 3 -160 -228 -201\n\t\tmu 0 3 176 58 85\n\t\tf 3 -216 -191 -204\n\t\tmu 0 3 217 220 8\n\t\tf 3 -163 -199 -207\n\t\tmu 0 3 123 59 159\n\t\tf 3 -152 -388 -210\n\t\tmu 0 3 145 20 49\n\t\tf 3 -205 -386 -213\n\t\tmu 0 3 15 8 61\n\t\tf 3 -202 -192 -215\n\t\tmu 0 3 71 85 72\n\t\tf 3 -248 -387 -218\n\t\tmu 0 3 21 142 144\n\t\tf 3 -247 388 -221\n\t\tmu 0 3 68 218 11\n\t\tf 3 389 390 -224\n\t\tmu 0 3 141 113 101\n\t\tf 3 -194 -220 -226\n\t\tmu 0 3 58 156 86\n\t\tf 3 -238 -245 -229\n\t\tmu 0 3 200 40 14\n\t\tf 3 -227 -219 -232\n\t\tmu 0 3 16 221 144\n\t\tf 3 -185 -391 -235\n\t\tmu 0 3 13 101 164\n\t\tf 3 -236 -390 -237\n\t\tmu 0 3 49 94 40\n\t\tf 3 391 -389 -240\n\t\tmu 0 3 81 154 218\n\t\tf 3 -222 -392 -243\n\t\tmu 0 3 40 96 87\n\t\tf 3 -250 -241 -246\n\t\tmu 0 3 223 150 218\n\t\tf 3 -244 -242 -249\n\t\tmu 0 3 93 167 112\n\t\tf 3 -287 392 -252\n\t\tmu 0 3 97 7 187\n\t\tf 3 393 -282 -255\n\t\tmu 0 3 179 125 44\n\t\tf 3 -265 394 -258\n\t\tmu 0 3 185 76 194\n\t\tf 3 -330 395 -261\n\t\tmu 0 3 3 80 147\n\t\tf 3 -253 396 -264\n\t\tmu 0 3 63 187 76\n\t\tf 3 -259 -373 -267\n\t\tmu 0 3 66 194 219\n\t\tf 3 397 -365 -270\n\t\tmu 0 3 153 199 64\n\t\tf 3 -368 -396 -273\n\t\tmu 0 3 88 147 80\n\t\tf 3 -362 -275 -276\n\t\tmu 0 3 69 197 67\n\t\tf 3 -292 -363 -279\n\t\tmu 0 3 42 222 69\n\t\tf 3 -366 -398 -280\n\t\tmu 0 3 125 199 153\n\t\tf 3 -374 398 -283\n\t\tmu 0 3 190 79 89\n\t\tf 3 -399 399 -286\n\t\tmu 0 3 89 79 7\n\t\tf 3 -268 -372 -291\n\t\tmu 0 3 193 219 222\n\t\tf 3 -352 -263 -294\n\t\tmu 0 3 157 3 235\n\t\tf 3 -131 -129 -296\n\t\tmu 0 3 126 105 211\n\t\tf 3 -137 -349 -298\n\t\tmu 0 3 198 35 184\n\t\tf 3 -50 -332 -300\n\t\tmu 0 3 54 24 27\n\t\tf 3 -375 -285 -327\n\t\tmu 0 3 64 190 195\n\t\tf 3 -53 -347 -331\n\t\tmu 0 3 24 227 26\n\t\tf 3 -47 -301 -333\n\t\tmu 0 3 116 54 213\n\t\tf 3 -44 -345 -335\n\t\tmu 0 3 151 132 189\n\t\tf 3 -41 -337 -338\n\t\tmu 0 3 192 151 115\n\t\tf 3 -38 -340 -341\n\t\tmu 0 3 168 192 134\n\t\tf 3 -11 -297 -343\n\t\tmu 0 3 132 160 119\n\t\tf 3 -8 -353 -346\n\t\tmu 0 3 227 226 209\n\t\tf 3 -5 -334 -348\n\t\tmu 0 3 35 224 186\n\t\tf 3 -394 -295 -356\n\t\tmu 0 3 5 182 46\n\t\tf 3 -393 -400 -359\n\t\tmu 0 3 48 143 34\n\t\tf 3 400 401 -361\n\t\tmu 0 3 140 33 91\n\t\tf 3 -358 -2 -364\n\t\tmu 0 3 5 33 36\n\t\tf 3 -402 -357 -367\n\t\tmu 0 3 91 33 46\n\t\tf 3 -395 -397 -369\n\t\tmu 0 3 237 183 48\n\t\tf 3 -370 -401 -371\n\t\tmu 0 3 237 33 140;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ns\" 0.1;\n\tsetAttr \".ndt\" 2;\n\tsetAttr \".dn\" yes;\n\tsetAttr \".dtn\" yes;\n\tsetAttr \".tsa\" 10;\n\tsetAttr \".tnt\" 10;\ncreateNode transform -n \"HI\";\n\trename -uid \"E06F5100-46B3-6AF4-9404-4BB158F84989\";\n\tsetAttr \".v\" no;\ncreateNode mesh -n \"HIShape\" -p \"HI\";\n\trename -uid \"E22E2A0A-4663-DBD4-5B6C-C0819F3251B0\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 4861 \".uvst[0].uvsp\";\n\tsetAttr \".uvst[0].uvsp[0:249]\" -type \"float2\" 0.72718406 0.12198447 0.72718406\n\t\t 0.24245086 0.67658818 0.23763224 0.68020713 0.16639879 0.68719596 0.15332359 0.69185615\n\t\t 0.13796096 0.69342971 0.12198447 0.72818547 0.12198447 0.72818547 0.24245086 0.72718406\n\t\t 0.29786545 0.67658818 0.29786545 0.61153632 0.23763224 0.61153644 0.20387782 0.62751305\n\t\t 0.20230426 0.64287567 0.19764403 0.65703392 0.19007625 0.66944373 0.17989172 0.67605853\n\t\t 0.16418138 0.68282896 0.15151472 0.68722016 0.1370388 0.68870288 0.12198447 0.72718406\n\t\t 0.0063367654 0.69185609 0.1060079 0.68719596 0.090645269 0.67962813 0.076486982 0.67227465\n\t\t 0.0063367654 0.72818458 0.0063367509 0.7291801 0.12198447 0.7291801 0.24245086 0.72818637\n\t\t 0.29786545 0.72718412 0.29886594 0.67658818 0.29886767 0.67558771 0.29786545 0.67558599\n\t\t 0.23865576 0.67556649 0.23863275 0.61153632 0.23863362 0.55079806 0.23763224 0.54344451\n\t\t 0.16748193 0.55362904 0.17989185 0.56603891 0.19007634 0.58019716 0.19764411 0.59555984\n\t\t 0.20230429 0.61153644 0.19906262 0.62657362 0.19758156 0.64103293 0.19319534 0.65435874\n\t\t 0.18607254 0.66603887 0.17648685 0.67516714 0.16370504 0.68189073 0.15112609 0.68622416\n\t\t 0.13684069 0.68768734 0.12198447 0.6872201 0.10693006 0.6828289 0.092454143 0.67569792\n\t\t 0.079113059 0.61153632 0.040091164 0.61153632 0.0063367654 0.66944367 0.064077176\n\t\t 0.65703386 0.053892672 0.64287555 0.04632492 0.62751293 0.041664723 0.67216969 0.0053353785\n\t\t 0.72718406 0.005334517 0.72821736 0.0052924398 0.72917843 0.0063367365 0.73012918\n\t\t 0.12198447 0.73012918 0.24245086 0.72918183 0.29786545 0.72822839 0.29889876 0.72718412\n\t\t 0.29985979 0.67658818 0.29986313 0.67555493 0.29890975 0.67459381 0.29786545 0.67459047\n\t\t 0.23978035 0.67467755 0.23951171 0.67444414 0.2396266 0.61153632 0.23962827 0.55090296\n\t\t 0.23863365 0.49588859 0.23763224 0.49588859 0.12198453 0.529643 0.12198453 0.53121656\n\t\t 0.13796113 0.53587681 0.15332377 0.54744822 0.1648068 0.5570339 0.176487 0.56871408\n\t\t 0.18607263 0.58203989 0.19319543 0.5964992 0.19758159 0.61153644 0.19806546 0.62637913\n\t\t 0.19660357 0.64065135 0.19227409 0.65380472 0.18524344 0.66533375 0.17578177 0.67428172\n\t\t 0.16323212 0.68095887 0.1507401 0.68523484 0.13664392 0.68667865 0.12198447 0.6862241\n\t\t 0.10712817 0.68189067 0.092842758 0.67485356 0.079677247 0.66610128 0.067419514 0.54344451\n\t\t 0.076487057 0.550798 0.0063367798 0.59555978 0.041664723 0.5801971 0.046324935 0.56603885\n\t\t 0.053892683 0.55362898 0.064077191 0.61153632 0.0053353929 0.6544078 0.057822868\n\t\t 0.64106667 0.050691925 0.62659079 0.046300706 0.61153632 0.044817992 0.67206538 0.0043407124\n\t\t 0.72718406 0.0043390463 0.72822917 0.0042716949 0.72924989 0.0052796444 0.73012805\n\t\t 0.0063367365 0.73094606 0.12198447 0.73094606 0.24245086 0.73013031 0.29786545 0.72924918\n\t\t 0.29891053 0.72824121 0.29993126 0.72718412 0.30080938 0.67658818 0.30081168 0.67554313\n\t\t 0.29993048 0.67452234 0.29892254 0.67364424 0.29786545 0.67364192 0.24105354 0.67387754\n\t\t 0.24043074 0.67375642 0.24032198 0.67317027 0.24057619 0.61153632 0.24057734 0.55100733\n\t\t 0.2396283 0.49588859 0.2386345 0.4948881 0.23763224 0.4948872 0.12198453 0.49588859\n\t\t 0.0063367942 0.53587675 0.090645298 0.5312165 0.10600794 0.53445822 0.12198453 0.53593922\n\t\t 0.13702172 0.54032546 0.15148106 0.54827732 0.16425282 0.55773902 0.17578191 0.56926805\n\t\t 0.18524353 0.58242148 0.19227418 0.59669375 0.1966036 0.61153644 0.19707499 0.62618589\n\t\t 0.19563214 0.64027238 0.19135903 0.65325451 0.18441992 0.66463339 0.17508143 0.67343658\n\t\t 0.1627813 0.68006963 0.15037178 0.68429089 0.13645613 0.68571621 0.12198447 0.68523484\n\t\t 0.10732495 0.68095881 0.093228765 0.67401487 0.080237657 0.66538322 0.068137608 0.55090296\n\t\t 0.0053353929 0.59648186 0.046300706 0.58200598 0.050691925 0.56866491 0.057822883\n\t\t 0.55697137 0.067419529 0.54741144 0.079137668 0.61153632 0.0043407269 0.65384358\n\t\t 0.05866725 0.64067805 0.051630139 0.62639266 0.047296707 0.61153632 0.045833495 0.67196596\n\t\t 0.0033916414 0.72718406 0.0033905071 0.72822231 0.0033426716 0.72926116 0.0042549502\n\t\t 0.73018545 0.0052917073 0.73094499 0.0063367365 0.73152828 0.12198447 0.73152828\n\t\t 0.24245086 0.73094708 0.29786545 0.73017824 0.29890367 0.72926593 0.29994252 0.72822917\n\t\t 0.30086684 0.72718412 0.30162635 0.67658824 0.30162841 0.67555004 0.30085951 0.67451119\n\t\t 0.29994723 0.67358679 0.2989105 0.6728273 0.29786545 0.67282522 0.2424529 0.67315483\n\t\t 0.24142317 0.67317975 0.24102941 0.67277801 0.24105452 0.67177159 0.24139319 0.61153632\n\t\t 0.24139424 0.55110675 0.24057737 0.49588859 0.23962995 0.49485531 0.23867655 0.49389422\n\t\t 0.23763227 0.49389258 0.12198453 0.49488634 0.0063367942 0.49588859 0.0053362544\n\t\t 0.5403254 0.092488006 0.53593922 0.10694733 0.53545535 0.12198453 0.53691727 0.13682719\n\t\t 0.54124665 0.15109946 0.54910082 0.16370256 0.55843937 0.17508154 0.56981838 0.18441999\n\t\t 0.58280051 0.19135912 0.59688699 0.19563217 0.61153644 0.19612995 0.62600148 0.19470525\n\t\t 0.6399107 0.19048594 0.65272939 0.18363412 0.66396517 0.17441316 0.67270887 0.16239391\n\t\t 0.67930424 0.15005475 0.68347836 0.13629451 0.68488777 0.12198447 0.68429083 0.10751273\n\t\t 0.68006957 0.093597084 0.67321461 0.080772378 0.66466993 0.068850845 0.55100727 0.0043407409\n\t\t 0.59667999 0.047296707 0.5823946 0.051630139 0.56922913 0.058667261 0.55768943 0.068137608\n\t\t 0.54824817 0.079696745 0.61153632 0.0033916559 0.65328318 0.059505958 0.64029205\n\t\t 0.052562065 0.62619585 0.048286017 0.61153632 0.046842191 0.6718803 0.0025747754\n\t\t 0.72718406 0.0025737558 0.72821331 0.0025947799 0.72921824 0.0033761894 0.73014563\n\t\t 0.0042991238 0.73093021 0.0053075044 0.73152763 0.0063367365 0.73152882 0.29786545\n\t\t 0.7309261 0.29889467 0.73014468 0.29989961 0.72922176 0.300827 0.72821337 0.30161157\n\t\t 0.72718406 0.30220899 0.67658824 0.30221012 0.67555898 0.30160737;\n\tsetAttr \".uvst[0].uvsp[250:499]\" 0.67455399 0.30082598 0.67362666 0.29990306\n\t\t 0.67284203 0.29889467 0.67224467 0.29786545 0.67224348 0.24385163 0.67256343 0.24244681\n\t\t 0.67269301 0.24173987 0.67247647 0.24152474 0.67176545 0.24166106 0.67037225 0.24197581\n\t\t 0.61153632 0.24197638 0.5511924 0.24139424 0.49588859 0.24057849 0.49484354 0.23969731\n\t\t 0.49382278 0.23868936 0.49294466 0.23763227 0.4929435 0.12198453 0.49389085 0.0063367942\n\t\t 0.49484429 0.0053034546 0.49588859 0.004342407 0.54124665 0.092869602 0.53691721\n\t\t 0.10714188 0.5364458 0.12198453 0.53788871 0.13663398 0.54216176 0.15072043 0.54988664\n\t\t 0.16317752 0.5591076 0.17441331 0.57034338 0.18363424 0.58316213 0.19048601 0.59707135\n\t\t 0.19470528 0.61153644 0.19531655 0.62584281 0.19390748 0.63959938 0.18973443 0.65227753\n\t\t 0.18295781 0.66338998 0.17383802 0.67218977 0.16211864 0.67875886 0.14982882 0.6828993\n\t\t 0.13617934 0.68429738 0.12198447 0.68347836 0.10767433 0.67930418 0.093914114 0.67252582\n\t\t 0.081232607 0.66398942 0.069531418 0.55110675 0.0033916703 0.5968768 0.048286032\n\t\t 0.5827806 0.052562065 0.56978953 0.059505958 0.55840266 0.068850875 0.5490793 0.080252074\n\t\t 0.61153632 0.0025747898 0.65274841 0.060306221 0.63992375 0.053451251 0.62600809\n\t\t 0.049230006 0.61153632 0.047804661 0.67181927 0.0019926066 0.72718406 0.0019920319\n\t\t 0.72822911 0.0020504657 0.72918296 0.0026927344 0.73003024 0.0034901274 0.7308287\n\t\t 0.0043378402 0.7314747 0.0052985433 0.73147035 0.2989105 0.73082817 0.29986432 0.73003072\n\t\t 0.30071163 0.72918302 0.30151004 0.72822231 0.30215606 0.67554319 0.30215171 0.67458928\n\t\t 0.30150944 0.673742 0.30071205 0.67294359 0.29986432 0.67229754 0.29890367 0.67215747\n\t\t 0.24345936 0.67229599 0.24245031 0.67223138 0.24198942 0.67176896 0.241925 0.67074186\n\t\t 0.24209331 0.55125338 0.24197641 0.49588859 0.24139526 0.49485037 0.24062634 0.49381152\n\t\t 0.23971406 0.4928872 0.23867729 0.49212769 0.23763227 0.49212661 0.12198453 0.49294233\n\t\t 0.0063367942 0.49382353 0.0052916789 0.49483147 0.0042709336 0.49588859 0.0033928191\n\t\t 0.54216176 0.093248621 0.53788871 0.10733511 0.53739089 0.12198453 0.53881556 0.13644959\n\t\t 0.54303485 0.15035877 0.55056298 0.16272564 0.55968279 0.17383814 0.5707953 0.1829579\n\t\t 0.58347344 0.18973452 0.59723002 0.19390751 0.61153638 0.19473685 0.62572974 0.19333889\n\t\t 0.63937759 0.18919887 0.65195543 0.18247582 0.66298008 0.17342807 0.6828993 0.10778952\n\t\t 0.6787588 0.094140038 0.67203492 0.081560627 0.66340363 0.07011719 0.5511924 0.0025748042\n\t\t 0.59706461 0.049230006 0.58314896 0.053451281 0.57032418 0.060306221 0.55908328 0.069531433\n\t\t 0.54987234 0.080781959 0.61153632 0.0019926208 0.6522882 0.06099499 0.63960671 0.05421659\n\t\t 0.62584651 0.050042477 0.61153632 0.048633058 0.7292217 0.0021955378 0.72995573 0.0028823819\n\t\t 0.73063815 0.0035650327 0.73132682 0.0043025701 0.73132533 0.29990306 0.73063844\n\t\t 0.30063713 0.72995579 0.30131945 0.7292183 0.30200812 0.67455059 0.30200663 0.6738165\n\t\t 0.30131981 0.67313415 0.30063716 0.67244554 0.29989961 0.67198873 0.24315779 0.67200744\n\t\t 0.24245118 0.67176986 0.24221268 0.67105854 0.24223849 0.49588859 0.24197699 0.4948594\n\t\t 0.24137424 0.49385443 0.24059282 0.49292701 0.23966989 0.49214247 0.2386615 0.49154505\n\t\t 0.23763227 0.49154443 0.12198453 0.49212557 0.0063367942 0.4928945 0.0052985721 0.49380681\n\t\t 0.0042597037 0.49484354 0.0033353763 0.49588859 0.002575838 0.54303485 0.093610279\n\t\t 0.53881556 0.10751946 0.53820425 0.12198453 0.53961337 0.13629089 0.54378635 0.15004751\n\t\t 0.551045 0.16240355 0.56009269 0.17342822 0.57111734 0.18247589 0.58369529 0.18919896\n\t\t 0.59734315 0.19333892 0.66298616 0.070534654 0.55125338 0.0019926352 0.5972262 0.050042477\n\t\t 0.58346599 0.054216605 0.57078451 0.06099502 0.55966902 0.070117205 0.55055487 0.081238024\n\t\t 0.65196019 0.061485898 0.63938081 0.054762054 0.62573135 0.050621528 0.61153632 0.049223457\n\t\t 0.73003066 0.0024648586 0.73043883 0.0030819383 0.73105597 0.0034905295 0.73105603\n\t\t 0.30071202 0.73043889 0.30112025 0.7300303 0.30173731 0.67374158 0.30173731 0.67333341\n\t\t 0.30112025 0.67271632 0.30071163 0.6717692 0.24291274 0.67176956 0.24245089 0.6713081\n\t\t 0.24245049 0.4948436 0.24191853 0.49388969 0.24127628 0.49304241 0.24047887 0.49224395\n\t\t 0.23963116 0.49159795 0.23867047 0.49154383 0.0063367942 0.49214658 0.0053075328\n\t\t 0.492928 0.004302599 0.49385092 0.0033751985 0.49485934 0.0025906297 0.49588859 0.0019932096\n\t\t 0.54378635 0.09392155 0.53961337 0.10767817 0.53878397 0.12198453 0.54018193 0.13617782\n\t\t 0.54432195 0.14982566 0.59734136 0.050621528 0.5836919 0.054762054 0.57111245 0.061485898\n\t\t 0.56008649 0.070534669 0.55104131 0.081563063 0.73063838 0.0028826979 0.73063821\n\t\t 0.30131981 0.67313385 0.30131948 0.67153138 0.24268876 0.49385098 0.24177347 0.49311692\n\t\t 0.24108662 0.49243456 0.24040398 0.49174586 0.23966643 0.49160233 0.0052917362 0.49224454\n\t\t 0.0043378691 0.49304196 0.0034905726 0.49388963 0.00269216 0.49485037 0.0020461287\n\t\t 0.54432195 0.094143413 0.54018193 0.10779126 0.49304202 0.24150415 0.49263382 0.24088706\n\t\t 0.4920167 0.24047847 0.49174735 0.0042991526 0.4924342 0.0035650902 0.49311686 0.0028827409\n\t\t 0.49385437 0.0021940586 0.49243426 0.2410863 0.4920167 0.003490156 0.49263376 0.0030819671\n\t\t 0.49304235 0.0024648872 0.49243456 0.0028824105 0.45315918 0.49016923 0.50375509\n\t\t 0.49016923 0.50375509 0.54076517 0.45315924 0.54076511 0.45315918 0.48916876 0.50375509\n\t\t 0.48916703 0.50475562 0.49016923 0.50475734 0.54076511 0.50375509 0.54176569 0.45315918\n\t\t 0.54176742 0.45215869 0.54076511 0.45215696 0.48914573 0.45212141 0.48828977 0.45315918\n\t\t 0.48817489 0.50375509 0.48817155 0.5047822 0.48913148 0.50574952 0.49016923 0.50575286\n\t\t 0.54076511 0.50482869 0.5418281 0.50375509 0.54275948 0.45315918 0.54276282 0.45212591\n\t\t 0.54180944 0.45116481 0.54076511 0.4511615 0.48802117;\n\tsetAttr \".uvst[0].uvsp[500:749]\" 0.45112485 0.48737073 0.45210648 0.48747948\n\t\t 0.45315924 0.48722529 0.50375509 0.487223 0.50480491 0.48813489 0.50577331 0.48911655\n\t\t 0.50669903 0.49016923 0.50670135 0.54076511 0.5058614 0.54188222 0.504875 0.54285526\n\t\t 0.50375509 0.54370916 0.45315918 0.54371142 0.45211414 0.54283023 0.45109338 0.54182225\n\t\t 0.45021522 0.54076511 0.45021293 0.48674795 0.45021069 0.48637828 0.45111743 0.48677206\n\t\t 0.4521009 0.48674697 0.45315924 0.48640829 0.50375509 0.48640627 0.50481319 0.48722076\n\t\t 0.5057925 0.48812744 0.50669217 0.48911098 0.50751603 0.49016923 0.50751805 0.54076511\n\t\t 0.50681221 0.54191291 0.50594896 0.5429545 0.50490302 0.54381073 0.50375509 0.5445261\n\t\t 0.45315918 0.54452813 0.45212102 0.54375923 0.45108211 0.54284692 0.45015779 0.54181021\n\t\t 0.44939828 0.54076511 0.44939622 0.48534858 0.45025566 0.4860616 0.45113277 0.48627675\n\t\t 0.45210052 0.48614049 0.45315924 0.48582569 0.50375509 0.48582456 0.50481379 0.48647872\n\t\t 0.50578123 0.48726574 0.50665528 0.48814282 0.50744969 0.4891105 0.50809872 0.49016923\n\t\t 0.50809985 0.54076511 0.50759172 0.54192245 0.50693077 0.54303962 0.50602996 0.54393733\n\t\t 0.50491244 0.54460561 0.50375509 0.54510874 0.45315918 0.54510981 0.45212999 0.54450715\n\t\t 0.45112503 0.54372567 0.45019761 0.54280281 0.44941303 0.54179442 0.44881564 0.54076517\n\t\t 0.44881448 0.48394984 0.44946858 0.48535466 0.44957858 0.48535115 0.45034504 0.48581204\n\t\t 0.45114622 0.48587647 0.45210108 0.48570818 0.50481343 0.48599824 0.50576812 0.48658866\n\t\t 0.50656891 0.48735505 0.50733632 0.48815626 0.50795668 0.4891111 0.50811064 0.54191309\n\t\t 0.50773108 0.54307872 0.50711459 0.54412425 0.50606865 0.54474127 0.5049029 0.54515082\n\t\t 0.45211416 0.5450514 0.45116028 0.54440922 0.450313 0.54361176 0.4495146 0.54276407\n\t\t 0.44886854 0.54180336 0.44975409 0.48535031 0.45040089 0.48558879 0.45113304 0.48556301\n\t\t 0.50578159 0.48615357 0.50651342 0.48676413 0.50715983 0.48741093 0.50777829 0.48814312\n\t\t 0.50826049 0.54303992 0.50801128 0.54423285 0.50722283 0.5450207 0.50602961 0.54527724\n\t\t 0.45112157 0.54490638 0.45038751 0.54421949 0.44970515 0.54353684 0.44901645 0.54279935\n\t\t 0.44996002 0.48535064 0.4503454 0.485351 0.50656921 0.48638633 0.50695431 0.48697007\n\t\t 0.50753796 0.48735547 0.50857419 0.54412466 0.50857377 0.54558378 0.50711411 0.54558331\n\t\t 0.45031258 0.54463708 0.44990441 0.54401994 0.4492873 0.54361135 0.44975442 0.48511273\n\t\t 0.50716019 0.48676443 0.5091368 0.54502136 0.50801069 0.54614621 0.44970486 0.5442192\n\t\t 0.51003337 0.54558432 0.50992471 0.54614687 0.50857329 0.54704297 0.50913626 0.54693472\n\t\t 0.51111788 0.54589033 0.51107883 0.5464263 0.51003289 0.54704338 0.50888705 0.54812765\n\t\t 0.50941658 0.54808885 0.51224458 0.54601675 0.51223505 0.54656196 0.51111758 0.5472303\n\t\t 0.51021683 0.54812801 0.50903684 0.54925454 0.50955582 0.54924512 0.51339239 0.54605889\n\t\t 0.51339239 0.54664147 0.51224446 0.54735684 0.51119852 0.54821306 0.51033533 0.54925466\n\t\t 0.50904769 0.55040246 0.50962943 0.55040246 0.56398833 0.54663944 0.56398833 0.54605776\n\t\t 0.51339239 0.54745847 0.51227248 0.54831231 0.51128608 0.54928535 0.51044619 0.55040246\n\t\t 0.50963151 0.60099834 0.50904882 0.6009984 0.56398833 0.5474562 0.56504661 0.54623145\n\t\t 0.56504709 0.54671192 0.51339239 0.54840809 0.51231879 0.54933947 0.5113948 0.55040246\n\t\t 0.51044846 0.60099834 0.50964624 0.6020276 0.50910175 0.60203654 0.56398833 0.54840475\n\t\t 0.56504649 0.54745394 0.56601477 0.54638678 0.56600136 0.54682183 0.51339239 0.54940188\n\t\t 0.51239014 0.55040246 0.51139802 0.60099834 0.510391 0.60204339 0.50974774 0.6029973\n\t\t 0.50924975 0.60303253 0.56398833 0.54940021 0.56503814 0.54836804 0.56601441 0.54749894\n\t\t 0.56680256 0.54661959 0.56674659 0.54699731 0.51339239 0.55040246 0.51239187 0.60099834\n\t\t 0.51132655 0.60205543 0.51043087 0.60303599 0.50993836 0.60377002 0.50952053 0.60384458\n\t\t 0.56398833 0.55040246 0.56501538 0.54936463 0.56602567 0.54836065 0.56680208 0.54758823\n\t\t 0.56739342 0.54699761 0.56718755 0.54720324 0.51339239 0.60099834 0.51235914 0.60204262\n\t\t 0.51131541 0.60308009 0.51054621 0.60384494 0.51013756 0.60425317 0.509938 0.60445237\n\t\t 0.56398833 0.60099834 0.56498885 0.55040246 0.56600648 0.54934967 0.56688845 0.54837596\n\t\t 0.56739318 0.54764408 0.56777114 0.54758865 0.51339239 0.60200053 0.51234728 0.6030634\n\t\t 0.51135826 0.6039589 0.51062065 0.60445273 0.51054579 0.60487026 0.56499058 0.60099834\n\t\t 0.56398833 0.60199887 0.5659827 0.55040246 0.56692535 0.54934412 0.56756949 0.54838943\n\t\t 0.56801146 0.54837632 0.51339239 0.60299599 0.5123542 0.6039924 0.51139349 0.60464233\n\t\t 0.5113548 0.60513955 0.56598604 0.60099834 0.56506205 0.60206133 0.56398833 0.60299271\n\t\t 0.56693226 0.55040246 0.56768304 0.54934371 0.56818992 0.5493443 0.51339239 0.6039446\n\t\t 0.51236314 0.60474026 0.5123474 0.60528457 0.56693453 0.60099834 0.56609464 0.60211539\n\t\t 0.5651083 0.60308844 0.56398833 0.60394233 0.5677492 0.55040246 0.5683319 0.55040246\n\t\t 0.51339239 0.60476136 0.51339239 0.60534304 0.56775129 0.60099834 0.56704539 0.60214609\n\t\t 0.56618214 0.60318768 0.56513625 0.60404396 0.56398833 0.60475928 0.56833303 0.60099834\n\t\t 0.56398833 0.60534185 0.5678249 0.60215563 0.56716394 0.6032728 0.56626314 0.6041705\n\t\t 0.56514567 0.60483879 0.56834388 0.60214627 0.56513613 0.60538405 0.56796426 0.6033119\n\t\t 0.56734776 0.60435736 0.56630188 0.60497445 0.56849366 0.60327315 0.56626278 0.60551041\n\t\t 0.56824458 0.60446596 0.56745601 0.60525388 0.56880742 0.6043579 0.56734735 0.60581654\n\t\t 0.56880695 0.6058169 0.56937003 0.60525453 0.56824392 0.60637939 0.5702666 0.60581744\n\t\t 0.57015789 0.60638005 0.56880647 0.60727614 0.56936944 0.6071679 0.57135111 0.60612357;\n\tsetAttr \".uvst[0].uvsp[750:999]\" 0.57131201 0.60665947 0.57026613 0.60727662\n\t\t 0.56912023 0.60836077 0.56964976 0.60832208 0.57247788 0.60624987 0.57246822 0.60679513\n\t\t 0.57135087 0.60746354 0.57045007 0.60836112 0.56927007 0.60948771 0.56978899 0.60947835\n\t\t 0.57362562 0.60629201 0.57362562 0.6068747 0.57247764 0.60759002 0.57143176 0.60844624\n\t\t 0.5705685 0.60948789 0.56928098 0.61063564 0.56986266 0.61063564 0.6242215 0.60687268\n\t\t 0.6242215 0.60629094 0.57362562 0.60769171 0.57250571 0.60854554 0.57151932 0.60951859\n\t\t 0.57067937 0.61063564 0.56928211 0.66123152 0.56986469 0.66123152 0.6242215 0.60768938\n\t\t 0.62527984 0.60646456 0.62528026 0.60694504 0.57362562 0.60864121 0.57255203 0.60957265\n\t\t 0.57162797 0.61063564 0.57068163 0.66123152 0.56987953 0.66226077 0.56933498 0.66226977\n\t\t 0.6242215 0.60863793 0.62527972 0.60768712 0.62624794 0.60661989 0.62623453 0.60705507\n\t\t 0.57362562 0.60963511 0.57262331 0.61063564 0.57163131 0.66123152 0.57062423 0.66227657\n\t\t 0.56998098 0.66323042 0.56948292 0.66326571 0.6242215 0.60963339 0.62527132 0.60860121\n\t\t 0.62624764 0.60773212 0.62703574 0.60685277 0.62697989 0.60723054 0.57362562 0.61063564\n\t\t 0.57262504 0.66123152 0.57155985 0.66228861 0.57066411 0.66326916 0.57017159 0.66400325\n\t\t 0.56975371 0.6640777 0.6242215 0.61063564 0.62524867 0.6095978 0.62625891 0.60859382\n\t\t 0.62703526 0.60782146 0.6276266 0.60723084 0.62742072 0.60743642 0.57362562 0.66123152\n\t\t 0.57259232 0.66227585 0.57154858 0.66331333 0.57077944 0.66407818 0.57037079 0.66448635\n\t\t 0.57017124 0.66468555 0.6242215 0.66123152 0.62522203 0.61063564 0.62623972 0.6095829\n\t\t 0.62712169 0.60860914 0.62762636 0.60787731 0.62800443 0.60782188 0.57362562 0.66223377\n\t\t 0.57258052 0.66329658 0.57159144 0.66419214 0.57085401 0.6646859 0.57077909 0.66510344\n\t\t 0.62522376 0.66123152 0.6242215 0.66223204 0.62621593 0.61063564 0.62715864 0.6095773\n\t\t 0.62780273 0.60862261 0.6282447 0.6086095 0.57362562 0.66322923 0.57258737 0.66422564\n\t\t 0.57162672 0.66487551 0.57158798 0.66537267 0.62621927 0.66123152 0.62529522 0.66229451\n\t\t 0.6242215 0.66322595 0.62716544 0.61063564 0.62791622 0.60957688 0.62842321 0.60957748\n\t\t 0.57362562 0.66417778 0.57259637 0.6649735 0.57258058 0.66551781 0.62716776 0.66123152\n\t\t 0.62632793 0.66234857 0.62534153 0.66332167 0.6242215 0.66417545 0.6279825 0.61063564\n\t\t 0.62856507 0.61063564 0.57362562 0.66499448 0.57362562 0.66557622 0.62798446 0.66123152\n\t\t 0.62727863 0.66237926 0.62641537 0.66342092 0.62536943 0.66427714 0.6242215 0.66499251\n\t\t 0.62856627 0.66123152 0.6242215 0.66557515 0.62805814 0.6623888 0.62739718 0.66350597\n\t\t 0.62649637 0.66440362 0.62537885 0.66507202 0.62857705 0.66237944 0.62536931 0.66561729\n\t\t 0.62819749 0.66354507 0.62758112 0.66459054 0.62653518 0.66520768 0.62872696 0.66350639\n\t\t 0.62649602 0.66574359 0.62847781 0.66469926 0.62768918 0.66548711 0.6290406 0.66459101\n\t\t 0.62758052 0.66604972 0.62904012 0.6660502 0.62960333 0.66548777 0.6284771 0.66661257\n\t\t 0.63049978 0.66605061 0.63039112 0.66661322 0.6290397 0.66750932 0.62960261 0.66740113\n\t\t 0.63158441 0.66635674 0.63154525 0.66689271 0.6304993 0.66750979 0.62935346 0.668594\n\t\t 0.62988293 0.66855526 0.63271111 0.66648304 0.63270158 0.66702831 0.63158405 0.66769665\n\t\t 0.63068324 0.6685943 0.62950325 0.66972089 0.63002217 0.66971153 0.6338588 0.66652524\n\t\t 0.6338588 0.66710788 0.63271087 0.6678232 0.63166505 0.66867948 0.63080168 0.66972107\n\t\t 0.62951416 0.67086881 0.63009584 0.67086881 0.68445468 0.66710579 0.68445468 0.66652411\n\t\t 0.6338588 0.66792482 0.63273889 0.66877872 0.63175249 0.66975182 0.63091254 0.67086881\n\t\t 0.63009793 0.72146475 0.62951529 0.72146475 0.68445468 0.66792262 0.68551302 0.66643804\n\t\t 0.6855135 0.66684407 0.6338588 0.66887444 0.6327852 0.66980582 0.63186115 0.67086881\n\t\t 0.63091487 0.72146475 0.63011271 0.72249395 0.62956816 0.72250295 0.68445468 0.6688711\n\t\t 0.6855129 0.66743547 0.68648118 0.66626936 0.68646771 0.66657656 0.6338588 0.66986829\n\t\t 0.63285667 0.67086881 0.63186449 0.72146475 0.63085741 0.7225098 0.63021427 0.72346359\n\t\t 0.62971616 0.72349888 0.68445468 0.66986656 0.6855045 0.66815817 0.68648082 0.66697359\n\t\t 0.68726891 0.66604972 0.68721312 0.66628808 0.6338588 0.67086881 0.6328584 0.72146475\n\t\t 0.63179302 0.72252178 0.63089728 0.72350234 0.63040477 0.72423649 0.62998694 0.72431093\n\t\t 0.68445468 0.67086881 0.68548191 0.66895813 0.68649209 0.66746032 0.6872685 0.66651201\n\t\t 0.68785977 0.66581196 0.6876539 0.6660502 0.6338588 0.72146475 0.63282549 0.72250903\n\t\t 0.63178176 0.7235465 0.63101262 0.72431135 0.63060409 0.72471952 0.63040453 0.72491878\n\t\t 0.68445468 0.72146475 0.68545526 0.66984707 0.68647289 0.668037 0.68735486 0.66675705\n\t\t 0.68785959 0.66605049 0.6338588 0.72246695 0.63281381 0.72352982 0.63182461 0.72442526\n\t\t 0.63108718 0.72491908 0.63101226 0.72533661 0.68545693 0.72146475 0.68445468 0.72246528\n\t\t 0.68644911 0.66872472 0.68739188 0.66705865 0.68803591 0.6660496 0.6338588 0.72346234\n\t\t 0.63282067 0.72445881 0.6318599 0.72510874 0.63182122 0.72560591 0.68645245 0.72146475\n\t\t 0.68549901 0.722498 0.68445468 0.72345906 0.68739867 0.66745085 0.68814939 0.66604608\n\t\t 0.6338588 0.72441095 0.63282967 0.72520667 0.63281381 0.72575098 0.68740094 0.72146475\n\t\t 0.68651974 0.7225098 0.68551189 0.72353053 0.68445468 0.72440869 0.68821573 0.66605216\n\t\t 0.6338588 0.72522771 0.6338588 0.72580934 0.68821776 0.72146475 0.68744886 0.72250295\n\t\t 0.68653655 0.7235418 0.68549979 0.72446615 0.68445468 0.72522563 0.68445468 0.72580826\n\t\t 0.68879831 0.66465282 0.68879944 0.72146475 0.68819678 0.72249395 0.6874153 0.72349888\n\t\t 0.68649244 0.72442633 0.68548393 0.72521085 0.68549293 0.72575533 0.68874097 0.72250974;\n\tsetAttr \".uvst[0].uvsp[1000:1249]\" 0.68809873 0.72346359 0.68730134 0.72431093\n\t\t 0.6864537 0.72510934 0.68648899 0.72560745 0.68859601 0.72350234 0.68790907 0.72423643\n\t\t 0.68722641 0.72491878 0.68730098 0.72533661 0.68832672 0.72431129 0.68770951 0.72471952\n\t\t 0.68790871 0.72491908 0.0062046302 0.24245083 0.061619177 0.24245086 0.061619151\n\t\t 0.30268407 0.0062046014 0.30268404 0.061619177 0.12198447 0.0062046302 0.12198444\n\t\t 0.12185238 0.24245086 0.12185235 0.30268407 0.061619151 0.36291727 0.0062046014 0.36291724\n\t\t 0.0052032289 0.30268404 0.0052032289 0.24245083 0.12185238 0.12198447 0.0052032578\n\t\t 0.12198444 0.061619207 0.0063367221 0.0062046591 0.0063367221 0.18208554 0.24245086\n\t\t 0.1772669 0.29786542 0.1170337 0.3580986 0.056800466 0.4183318 0.0062046014 0.42315045\n\t\t 0.0052032 0.36291724 0.0042085485 0.30268404 0.0042085773 0.24245083 0.18208557 0.12198447\n\t\t 0.12185241 0.0063367221 0.0042086057 0.12198444 0.0052024247 0.0063367081 0.0062046591\n\t\t 0.0053361827 0.061619207 0.0053353352 0.23750009 0.24245089 0.23750009 0.29786542\n\t\t 0.17726688 0.3580986 0.11703367 0.4183318 0.056800466 0.47856501 0.006204573 0.47856501\n\t\t 0.0052032 0.42315045 0.0042085485 0.36291727 0.0032594777 0.30268404 0.0032595063\n\t\t 0.24245083 0.23750012 0.1219845 0.1820856 0.0063367365 0.12185241 0.0053353496 0.0032595352\n\t\t 0.12198444 0.0042069401 0.0063366937 0.005160348 0.0053033829 0.0062046591 0.0043423208\n\t\t 0.061619207 0.0043406691 0.23850147 0.24245089 0.23850232 0.29786545 0.23750009 0.29886594\n\t\t 0.1782904 0.29886767 0.17826742 0.29888713 0.17826913 0.3580986 0.17726688 0.35909915\n\t\t 0.11805718 0.35910085 0.11803421 0.35912031 0.11803591 0.4183318 0.11703367 0.41933236\n\t\t 0.057823982 0.41933402 0.057801008 0.41935349 0.0578027 0.47856501 0.056800466 0.47956553\n\t\t 0.006204573 0.4795672 0.0052040331 0.47856501 0.0042085485 0.42315045 0.0032594777\n\t\t 0.36291727 0.0024426116 0.30268404 0.0024426403 0.24245083 0.23850149 0.1219845 0.23750012\n\t\t 0.0063367509 0.1820856 0.0053353496 0.12185241 0.0043406836 0.0024426403 0.12198444\n\t\t 0.003258415 0.0063367081 0.0041396171 0.0052916068 0.005147567 0.0042708474 0.0062046591\n\t\t 0.0033927329 0.061619207 0.0033915984 0.23949614 0.24245086 0.23949778 0.29786545\n\t\t 0.2385444 0.29889876 0.23750009 0.29985979 0.179415 0.2998631 0.17914638 0.29977608\n\t\t 0.17926127 0.30000952 0.17926459 0.35809863 0.1783112 0.35913196 0.17726688 0.360093\n\t\t 0.1191818 0.36009631 0.11891317 0.36000928 0.11902805 0.36024269 0.11903136 0.4183318\n\t\t 0.11807798 0.41936508 0.11703367 0.42032623 0.058948573 0.42032951 0.058679968 0.42024246\n\t\t 0.058794852 0.42047593 0.058798157 0.47856501 0.057844777 0.47959828 0.056800466\n\t\t 0.48055941 0.006204573 0.48056263 0.0051712333 0.47960931 0.0042101857 0.47856501\n\t\t 0.0032594777 0.42315045 0.0024426116 0.36291727 0.0018604568 0.30268404 0.0018604568\n\t\t 0.24245083 0.23949616 0.1219845 0.23850065 0.0063367509 0.23750013 0.005334517 0.18208559\n\t\t 0.004340698 0.12185241 0.0033916128 0.0018604855 0.12198444 0.0024416638 0.0063367081\n\t\t 0.0032105651 0.0052984999 0.0041228724 0.0042596175 0.0051596011 0.0033353043 0.0062046591\n\t\t 0.0025757519 0.061619207 0.0025747323 0.24044521 0.24245086 0.24044634 0.29786545\n\t\t 0.23956513 0.29891053 0.23855719 0.29993129 0.23750009 0.30080938 0.18068822 0.30081165\n\t\t 0.18006539 0.30057609 0.17995664 0.30069718 0.18021086 0.30128333 0.18021312 0.3580986\n\t\t 0.17933194 0.35914373 0.17832397 0.36016446 0.17726688 0.36104259 0.12045502 0.36104485\n\t\t 0.11983217 0.36080927 0.11972343 0.36093038 0.11997765 0.36151651 0.11997991 0.4183318\n\t\t 0.11909871 0.41937691 0.11809076 0.42039767 0.11703367 0.42127576 0.060221791 0.42127806\n\t\t 0.059598967 0.42104247 0.05949023 0.42116356 0.059744444 0.42174971 0.059746712 0.47856501\n\t\t 0.05886551 0.47961012 0.057857558 0.48063087 0.056800466 0.48150894 0.006204573 0.48151124\n\t\t 0.0051594577 0.48063001 0.0041387267 0.47962207 0.0032605978 0.47856501 0.0024426116\n\t\t 0.42315045 0.0018604568 0.36291727 0.24044523 0.1219845 0.23949452 0.0063367509 0.23853347\n\t\t 0.0052924398 0.23750015 0.0043390463 0.18208559 0.0033916272 0.12185241 0.0025747467\n\t\t 0.0018599398 0.0063366937 0.0024626879 0.0053074611 0.0032440829 0.0043025273 0.0041670171\n\t\t 0.0033751123 0.0051753977 0.0025905434 0.0062046591 0.0019931234 0.061619207 0.0019925633\n\t\t 0.24126208 0.24245086 0.24126309 0.29786545 0.24049419 0.29890364 0.23958188 0.29994252\n\t\t 0.23854515 0.30086684 0.23750009 0.30162635 0.18208759 0.30162841 0.18105784 0.30129877\n\t\t 0.18066409 0.30127388 0.18068919 0.30167559 0.18102784 0.30268201 0.18102987 0.3580986\n\t\t 0.18026097 0.35913682 0.17934866 0.3601757 0.17831194 0.36110002 0.17726688 0.36185956\n\t\t 0.12185437 0.36186159 0.12082461 0.36153197 0.12043089 0.36150706 0.12045597 0.36190876\n\t\t 0.12079462 0.36291519 0.12079667 0.4183318 0.12002777 0.41937003 0.11911546 0.42040887\n\t\t 0.11807872 0.42133319 0.11703367 0.42209277 0.061621159 0.42209476 0.060591441 0.42176518\n\t\t 0.060197696 0.42174023 0.060222767 0.422142 0.060561426 0.42314839 0.060563467 0.47856501\n\t\t 0.05979456 0.47960323 0.058882255 0.48064208 0.057845525 0.4815664 0.056800466 0.482326\n\t\t 0.006204573 0.482328 0.0051663504 0.4815591 0.0041274964 0.48064673 0.003203155 0.47961\n\t\t 0.0024436167 0.47856501 0.0018604281 0.42315045 0.24126211 0.1219845 0.24044411 0.0063367509\n\t\t 0.239566 0.0052796588 0.23854524 0.0042716949 0.23750013 0.0033905071 0.18208559\n\t\t 0.0025747609 0.12185241 0.0019925777 0.0019183593 0.0052916645 0.0025606279 0.0043377969\n\t\t 0.0033580209 0.0034904864 0.0042057335 0.0026920738 0.0051664365 0.002046057 0.24184424\n\t\t 0.24245086 0.24184482 0.29786542 0.24124207 0.29889467 0.24046066 0.29989961 0.23953773\n\t\t 0.300827 0.23852934 0.3016116 0.23750009 0.30220902 0.1834863 0.30221012 0.18208146\n\t\t 0.30189013 0.18137452 0.30176064 0.18115941 0.30197713 0.18129571 0.30268815 0.18161047\n\t\t 0.30408141 0.18161158 0.3580986 0.18100885 0.35912788 0.18022746 0.36013278 0.17930453\n\t\t 0.3610602;\n\tsetAttr \".uvst[0].uvsp[1250:1499]\" 0.17829613 0.36184481 0.17726688 0.36244217\n\t\t 0.12325308 0.3624433 0.12184824 0.36212334 0.12114129 0.36199385 0.12092619 0.36221033\n\t\t 0.12106251 0.36292133 0.12137727 0.36431462 0.12137838 0.4183318 0.12077564 0.41936105\n\t\t 0.11999425 0.42036596 0.11907131 0.42129338 0.11806293 0.42207801 0.11703367 0.4226754\n\t\t 0.063019864 0.4226765 0.061615042 0.42235655 0.060908124 0.42222705 0.060693 0.42244357\n\t\t 0.060829282 0.42315453 0.061144069 0.42454782 0.06114519 0.47856501 0.060542442 0.4795942\n\t\t 0.059761044 0.48059916 0.05883811 0.48152652 0.0578297 0.48231116 0.056800466 0.48290864\n\t\t 0.006204573 0.48290968 0.0051753116 0.48230699 0.0041703777 0.4815256 0.0032429916\n\t\t 0.48060262 0.0024584082 0.4795942 0.0018610025 0.47856501 0.24184427 0.1219845 0.24126108\n\t\t 0.0063367509 0.24050154 0.0052916934 0.23957723 0.0042549646 0.23853834 0.0033426571\n\t\t 0.23750013 0.0025737558 0.18208559 0.0019925921 0.0020634313 0.0042990665 0.0027502754\n\t\t 0.0035650041 0.0034329551 0.0028826548 0.0041704639 0.0021939725 0.24178636 0.2989105\n\t\t 0.24114412 0.29986435 0.24034671 0.30071163 0.239499 0.30151004 0.23853831 0.30215606\n\t\t 0.18309401 0.30229622 0.18208495 0.30215761 0.18162408 0.30222222 0.18155967 0.30268463\n\t\t 0.18172795 0.30371177 0.18155317 0.3591437 0.1809109 0.3600975 0.18011351 0.36094484\n\t\t 0.1792658 0.36174324 0.1783051 0.36238927 0.12286082 0.3625294 0.12185174 0.36239079\n\t\t 0.12139088 0.36245543 0.12132646 0.36291784 0.12149474 0.36394498 0.12131994 0.41937685\n\t\t 0.1206777 0.4203307 0.11988028 0.42117798 0.11903259 0.42197645 0.11807189 0.42262244\n\t\t 0.062627621 0.4227626 0.061618548 0.42262399 0.061157685 0.4226886 0.06109326 0.42315105\n\t\t 0.061261538 0.42417812 0.06108674 0.47961006 0.060444474 0.48056391 0.059647076 0.48141119\n\t\t 0.058799364 0.48220965 0.05783869 0.48285568 0.005159515 0.4828513 0.0042056474 0.48220903\n\t\t 0.0033583655 0.48141158 0.0025599385 0.48056391 0.0019139075 0.47960323 0.24184372\n\t\t 0.0063367509 0.24124631 0.00530749 0.24046174 0.0042991093 0.23953432 0.003376175\n\t\t 0.23852938 0.0025947799 0.23750015 0.0019920319 0.0023327521 0.0034900843 0.002949832\n\t\t 0.0030818952 0.0033584516 0.0024648155 0.2416413 0.29990309 0.24095444 0.30063716\n\t\t 0.24027179 0.30131948 0.23953429 0.30200812 0.18279244 0.30246487 0.18208584 0.30244619\n\t\t 0.18184735 0.30268374 0.18187316 0.30339509 0.18140809 0.36013624 0.18072125 0.36087033\n\t\t 0.18003859 0.36155266 0.17930108 0.36224133 0.12255924 0.36269805 0.12185264 0.36267939\n\t\t 0.12161417 0.36291695 0.12163995 0.3636283 0.12117486 0.42036942 0.12048806 0.42110354\n\t\t 0.11980537 0.42178583 0.11906786 0.42247453 0.062326044 0.42293125 0.061619438 0.4229126\n\t\t 0.061380934 0.42315012 0.061406728 0.42386147 0.06094167 0.48060262 0.060254827 0.48133668\n\t\t 0.059572171 0.48201907 0.058834661 0.48270771 0.0041669309 0.48270619 0.003432869\n\t\t 0.48201936 0.0027505339 0.48133668 0.0020618516 0.48059916 0.24179079 0.0052985288\n\t\t 0.24114476 0.0043378258 0.24034636 0.003490113 0.23949905 0.0026927199 0.23854518\n\t\t 0.0020504657 0.0027505914 0.0028823388 0.241372 0.30071205 0.2407549 0.30112025 0.2403463\n\t\t 0.30173731 0.18254739 0.30268446 0.18208553 0.30268407 0.18208516 0.3031455 0.18113877\n\t\t 0.36094525 0.1805217 0.36135343 0.18011311 0.36197051 0.12231418 0.36291766 0.12185235\n\t\t 0.36291727 0.12185194 0.3633787 0.12090558 0.42117843 0.1202885 0.42158663 0.11987988\n\t\t 0.42220369 0.062080961 0.42315087 0.061619122 0.42315045 0.061618749 0.42361191 0.06067235\n\t\t 0.48141158 0.060055267 0.48181978 0.059646674 0.48243693 0.0033579348 0.48243693\n\t\t 0.0029497459 0.48181978 0.002332666 0.48141119 0.24164288 0.0043025562 0.24095419\n\t\t 0.0035650472 0.24027184 0.0028823675 0.23953778 0.0021955234 0.24095413 0.30131981\n\t\t 0.18232341 0.30292225 0.18072094 0.36155298 0.12209022 0.36315542 0.1204877 0.42178619\n\t\t 0.061856993 0.42338863 0.06025451 0.48201942 0.0027501893 0.48201907 0.24137203 0.0034905295\n\t\t 0.24075495 0.003081924 0.24034676 0.0024648441 0.2409545 0.0028826979 0.024652289\n\t\t 0.66204351 0.024652289 0.61144757 0.075248189 0.61144757 0.075248189 0.66204351 0.023651749\n\t\t 0.66306514 0.023650026 0.61144757 0.024652289 0.61044705 0.075248189 0.61044532 0.076248728\n\t\t 0.61144757 0.076250449 0.66204351 0.075248189 0.66304398 0.024652289 0.6630457 0.023625152\n\t\t 0.66395414 0.022657929 0.66418755 0.022654599 0.61144757 0.023614526 0.61042047 0.024652289\n\t\t 0.6094532 0.075248189 0.60944986 0.076311164 0.61037385 0.077242546 0.61144757 0.077245876\n\t\t 0.66204351 0.0762925 0.66307676 0.075248189 0.66403782 0.024652289 0.66404116 0.023602463\n\t\t 0.66475415 0.022634091 0.66487527 0.021708341 0.66546136 0.021706045 0.61144757 0.022617891\n\t\t 0.6103977 0.023599591 0.60942942 0.024652289 0.60850358 0.075248189 0.60850132 0.076365277\n\t\t 0.6093412 0.077338301 0.6103276 0.07819213 0.61144757 0.078194432 0.66204351 0.077313259\n\t\t 0.66308856 0.076305307 0.66410929 0.075248189 0.66498744 0.024652289 0.66498971 0.023594134\n\t\t 0.66547686 0.022614906 0.66545188 0.021715235 0.66585362 0.020891333 0.66686004 0.020889321\n\t\t 0.61144757 0.021703804 0.61038941 0.022610482 0.60941023 0.02359396 0.60851049 0.024652289\n\t\t 0.60768664 0.075248189 0.60768455 0.076395951 0.60839045 0.077437565 0.6092537 0.078293808\n\t\t 0.61029959 0.079009138 0.61144757 0.07901115 0.66204351 0.07824228 0.66308171 0.077329971\n\t\t 0.6641205 0.076293245 0.66504484 0.075248189 0.66580439 0.024652289 0.66580647 0.02359356\n\t\t 0.6660682 0.022626163 0.66593868 0.021752113 0.66615516 0.020957621 0.66686618 0.02030869\n\t\t 0.66825944 0.020307599 0.61144757 0.0209617 0.61038882 0.021748781 0.60942149 0.022625819\n\t\t 0.60854739 0.02359356 0.60775292 0.024652289 0.607104 0.075248189 0.60710281 0.076405548\n\t\t 0.607611 0.077522695 0.6082719 0.078420296 0.60917276 0.079088643 0.61029023 0.079591781\n\t\t 0.61144757 0.079592936 0.66204351 0.078990132 0.66307271 0.078208789 0.66407764;\n\tsetAttr \".uvst[0].uvsp[1500:1749]\" 0.077285796 0.66500503 0.07627745 0.6657896\n\t\t 0.075248189 0.66638702 0.024652289 0.66638815 0.02359396 0.66647422 0.022639262 0.66633564\n\t\t 0.021838507 0.66640031 0.021071129 0.66686273 0.020481247 0.61038923 0.021071702\n\t\t 0.60943455 0.021838106 0.60863382 0.022639262 0.60786635 0.023594134 0.60724592 0.076396123\n\t\t 0.60709202 0.077561751 0.60747164 0.078607216 0.60808802 0.079224326 0.60913396 0.079633892\n\t\t 0.61029977 0.079534456 0.6630885 0.078892186 0.66404235 0.078094825 0.66488963 0.077247083\n\t\t 0.66568804 0.076286405 0.66633409 0.022625877 0.6666429 0.021893997 0.66662425 0.021247478\n\t\t 0.66686177 0.020636573 0.60942113 0.021247191 0.60868925 0.021893997 0.60804278 0.022626163\n\t\t 0.60742438 0.077523038 0.60694218 0.078715898 0.60719132 0.079503782 0.60797989 0.079760261\n\t\t 0.60917306 0.079389356 0.6640811 0.078702569 0.66481519 0.078019917 0.66549754 0.077282354\n\t\t 0.66618615 0.021838162 0.66686249 0.021453124 0.66686213 0.020869447 0.6086334 0.021453124\n\t\t 0.60824835 0.021838507 0.6076647 0.078607671 0.60662842 0.080066837 0.60662895 0.080066375\n\t\t 0.60808849 0.079120062 0.66489005 0.078503013 0.66529822 0.078094423 0.66591537 0.021247191\n\t\t 0.66710031 0.021247478 0.60804242 0.079504415 0.60606581 0.080629259 0.60719198 0.078702226\n\t\t 0.66549778 0.080067299 0.6051693 0.080629893 0.60527796 0.081526004 0.60662937 0.081417777\n\t\t 0.60606647 0.080373406 0.60408473 0.080909349 0.60412383 0.081526458 0.60516977 0.082610637\n\t\t 0.60631567 0.082571916 0.60578614 0.080499783 0.60295802 0.081045032 0.60296756 0.081713378\n\t\t 0.60408509 0.08261098 0.60498583 0.083737552 0.60616577 0.083728127 0.60564691 0.080541886\n\t\t 0.60181028 0.081124529 0.60181028 0.081839867 0.6029582 0.08269611 0.60400409 0.083737724\n\t\t 0.6048674 0.084885485 0.60615498 0.084885485 0.60557324 0.081122525 0.5512144 0.080540799\n\t\t 0.5512144 0.081941545 0.60181028 0.082795374 0.60293019 0.083768398 0.60391659 0.084885485\n\t\t 0.60475653 0.13548139 0.60557121 0.13548139 0.60615385 0.081939243 0.5512144 0.080714449\n\t\t 0.55015606 0.0811949 0.55015558 0.082891129 0.60181028 0.083822511 0.60288388 0.084885485\n\t\t 0.60380793 0.13548139 0.60475421 0.13651064 0.60555643 0.13651961 0.60610092 0.082887799\n\t\t 0.5512144 0.081937008 0.55015618 0.080869772 0.5491879 0.0813049 0.54920137 0.083884947\n\t\t 0.60181028 0.084885485 0.60281247 0.13548139 0.60380459 0.13652644 0.60481167 0.13748027\n\t\t 0.60545486 0.13751554 0.60595298 0.083883226 0.5512144 0.08285109 0.55016452 0.081981979\n\t\t 0.5491882 0.081102647 0.54840016 0.081480391 0.54845601 0.084885485 0.60181028 0.13548139\n\t\t 0.60281074 0.13653845 0.60387611 0.137519 0.60477179 0.13825312 0.60526425 0.13832757\n\t\t 0.60568213 0.084885485 0.5512144 0.083847672 0.55018723 0.082843684 0.54917699 0.082071304\n\t\t 0.54840058 0.081480674 0.54780924 0.081686266 0.54801518 0.13548139 0.60181028 0.13652569\n\t\t 0.60284358 0.13756317 0.60388732 0.13832802 0.60465646 0.13873622 0.60506505 0.13893542\n\t\t 0.6052646 0.13548139 0.5512144 0.084885485 0.55021387 0.083832793 0.54919618 0.082859017\n\t\t 0.54831415 0.082127139 0.54780954 0.082071707 0.54743147 0.13648364 0.60181022 0.13754645\n\t\t 0.60285532 0.13844194 0.60384446 0.13893577 0.60458195 0.13935326 0.60465688 0.13548139\n\t\t 0.55021214 0.13648193 0.55121434 0.084885485 0.54921997 0.08382716 0.5482772 0.082872458\n\t\t 0.54763317 0.082859367 0.5471912 0.13747907 0.60181022 0.13847548 0.60284847 0.13912539\n\t\t 0.60380912 0.13962255 0.60384792 0.13548139 0.54921663 0.13654436 0.55014068 0.13747574\n\t\t 0.55121434 0.084885485 0.5482704 0.083826758 0.54751974 0.083827332 0.54701269 0.13842763\n\t\t 0.60181022 0.13922332 0.60283947 0.13976766 0.60285527 0.13548139 0.54826814 0.13659842\n\t\t 0.54910803 0.1375715 0.55009443 0.13842534 0.55121434 0.084885485 0.5474534 0.084885485\n\t\t 0.54687077 0.13924435 0.60181022 0.13982607 0.60181022 0.13548139 0.54745138 0.13662915\n\t\t 0.54815722 0.13767076 0.54902053 0.13852701 0.55006641 0.13924234 0.55121434 0.13548139\n\t\t 0.54686964 0.13982499 0.5512144 0.13663875 0.54737771 0.13775584 0.54803872 0.13865349\n\t\t 0.54893953 0.13932183 0.55005705 0.13662933 0.54685885 0.13986708 0.55006659 0.13779496\n\t\t 0.54723841 0.13884041 0.54785484 0.13945752 0.54890078 0.13775623 0.54670894 0.1399934\n\t\t 0.54893988 0.1389491 0.54695809 0.13973698 0.54774666 0.13884087 0.54639524 0.14029957\n\t\t 0.54785532 0.14030004 0.54639572 0.13973761 0.54583263 0.14086246 0.5469588 0.1403005\n\t\t 0.54493612 0.14086309 0.54504472 0.1417592 0.5463962 0.14165097 0.54583323 0.14060661\n\t\t 0.54385155 0.14114255 0.54389066 0.14175966 0.5449366 0.14284383 0.54608244 0.14280511\n\t\t 0.54555291 0.14073293 0.54272479 0.14127818 0.54273432 0.14194652 0.54385185 0.14284419\n\t\t 0.54475266 0.14397074 0.54593259 0.14396138 0.54541367 0.14077508 0.54157704 0.14135773\n\t\t 0.54157704 0.14207307 0.54272503 0.14292932 0.54377091 0.14397092 0.54463422 0.14511868\n\t\t 0.54592174 0.14511868 0.54534006 0.14135566 0.49098119 0.14077394 0.49098119 0.14217468\n\t\t 0.54157704 0.14302857 0.54269701 0.14400165 0.54368341 0.14511868 0.54452336 0.19571458\n\t\t 0.54533798 0.19571458 0.54592061 0.14217244 0.49098119 0.14068788 0.48992285 0.14109395\n\t\t 0.4899224 0.14312427 0.54157704 0.14405571 0.5426507 0.14511868 0.54357469 0.19571458\n\t\t 0.54452103 0.19674379 0.54532319 0.1967528 0.54586774 0.14312094 0.49098119 0.14168532\n\t\t 0.48992297 0.14051923 0.48895472 0.14082645 0.48896816 0.14411815 0.54157704 0.14511868\n\t\t 0.54257929 0.19571458 0.54357141 0.19675964 0.54457849 0.19771348 0.54522169 0.19774875\n\t\t 0.54571974 0.14411642 0.49098119 0.14240801 0.48993132 0.14122343 0.48895508 0.14029963\n\t\t 0.48816696 0.1405379 0.48822284 0.14511868 0.54157704 0.19571458 0.54257756 0.19677165\n\t\t 0.54364288 0.19775219 0.54453862 0.19848631 0.54503113 0.19856076 0.54544896 0.14511868\n\t\t 0.49098119;\n\tsetAttr \".uvst[0].uvsp[1750:1999]\" 0.14320797 0.48995399 0.14171021 0.48894382\n\t\t 0.14076188 0.48816735 0.14006183 0.48757604 0.14030004 0.48778197 0.19571458 0.54157704\n\t\t 0.1967589 0.54261035 0.19779637 0.54365408 0.19856122 0.54442328 0.19896935 0.54483187\n\t\t 0.19916862 0.54503143 0.19571458 0.49098119 0.14409696 0.48998064 0.14228687 0.48896301\n\t\t 0.14100693 0.48808095 0.14030032 0.48757634 0.19671679 0.54157704 0.1977796 0.54262215\n\t\t 0.19867519 0.54361123 0.19916891 0.54434872 0.19958647 0.54442364 0.19571458 0.48997894\n\t\t 0.19671512 0.49098113 0.14297457 0.48898679 0.1413085 0.48804402 0.14029945 0.48739997\n\t\t 0.19771227 0.54157704 0.19870868 0.54261523 0.19935858 0.543576 0.19985574 0.54361469\n\t\t 0.19571458 0.48898345 0.19674787 0.48993689 0.19770893 0.49098113 0.14170071 0.4880372\n\t\t 0.14029589 0.48728648 0.19866082 0.54157704 0.19945653 0.54260629 0.20000085 0.54262209\n\t\t 0.19571458 0.4880349 0.19675964 0.48891613 0.1977804 0.48992401 0.19865853 0.49098113\n\t\t 0.14030205 0.48722017 0.19947755 0.54157704 0.20005926 0.54157704 0.19571458 0.48721811\n\t\t 0.1967528 0.48798704 0.19779165 0.48889935 0.19871597 0.48993608 0.19947554 0.49098113\n\t\t 0.20005812 0.49098113 0.13890268 0.48663759 0.19571458 0.48663643 0.19674379 0.48723918\n\t\t 0.19774875 0.4880206 0.19867611 0.48894352 0.19946072 0.48995194 0.20000522 0.48994297\n\t\t 0.19675958 0.48669487 0.19771348 0.48733714 0.19856076 0.48813456 0.19935922 0.48898223\n\t\t 0.19985725 0.48894697 0.19775219 0.48683992 0.19848625 0.4875268 0.19916862 0.48820946\n\t\t 0.19958647 0.48813489 0.19856116 0.48710924 0.19896935 0.48772636 0.19916891 0.4875271\n\t\t 0.34485269 0.84552199 0.34485269 0.79492611 0.3954486 0.79492611 0.3954486 0.84552199\n\t\t 0.34385216 0.84654367 0.34385043 0.79492611 0.34485269 0.79392558 0.3954486 0.79392385\n\t\t 0.39644912 0.79492611 0.39645085 0.84552199 0.3954486 0.84652245 0.34485269 0.84652418\n\t\t 0.34382555 0.84743267 0.34285834 0.84766603 0.34285501 0.79492611 0.34381494 0.79389894\n\t\t 0.34485269 0.79293168 0.3954486 0.79292834 0.39651155 0.79385239 0.39744294 0.79492611\n\t\t 0.39744627 0.84552199 0.3964929 0.84655529 0.3954486 0.84751636 0.34485269 0.8475197\n\t\t 0.34380287 0.84823263 0.3428345 0.84835374 0.34190875 0.84893984 0.34190646 0.79492611\n\t\t 0.34281829 0.79387623 0.34379992 0.79290789 0.34485269 0.79198211 0.3954486 0.79197985\n\t\t 0.39656562 0.79281974 0.39753869 0.79380614 0.39839253 0.79492611 0.39839482 0.84552199\n\t\t 0.39751366 0.84656703 0.39650565 0.84758782 0.3954486 0.84846592 0.34485269 0.84846824\n\t\t 0.34379452 0.84895533 0.34281531 0.84893042 0.34191558 0.84933209 0.34109172 0.85033858\n\t\t 0.34108973 0.79492611 0.34190413 0.79386795 0.34281087 0.7928887 0.34379438 0.79198897\n\t\t 0.34485269 0.79116511 0.3954486 0.79116309 0.39659634 0.79186893 0.39763796 0.79273224\n\t\t 0.39849421 0.79377812 0.39920953 0.79492611 0.39921156 0.84552199 0.39844269 0.84656018\n\t\t 0.39753038 0.84759903 0.39649364 0.84852338 0.3954486 0.84928286 0.34485269 0.84928495\n\t\t 0.34379396 0.84954667 0.34282658 0.84941721 0.3419525 0.84963369 0.34115803 0.85034466\n\t\t 0.34050909 0.85173792 0.34050795 0.79492611 0.34116209 0.79386729 0.34194919 0.79289997\n\t\t 0.34282622 0.79202592 0.3437939 0.79123145 0.34485269 0.79058248 0.3954486 0.79058135\n\t\t 0.39660594 0.79108942 0.39772308 0.79175043 0.39862069 0.79265124 0.39928904 0.79376876\n\t\t 0.39979219 0.79492611 0.39979327 0.84552199 0.39919052 0.84655118 0.39840913 0.84755617\n\t\t 0.39748621 0.8484835 0.39647785 0.84926814 0.3954486 0.84986556 0.34485269 0.84986669\n\t\t 0.34379438 0.84995276 0.34283966 0.84981418 0.3420389 0.84987879 0.34127146 0.8503412\n\t\t 0.34068164 0.79386777 0.34127212 0.79291308 0.34203851 0.79211229 0.34283966 0.79134488\n\t\t 0.34379452 0.79072446 0.39659652 0.79057056 0.39776215 0.79095012 0.39880762 0.79156655\n\t\t 0.39942473 0.79261249 0.39983428 0.7937783 0.39973485 0.84656698 0.39909258 0.84752089\n\t\t 0.39829522 0.84836817 0.39744747 0.84916657 0.39648682 0.84981263 0.34282622 0.85012138\n\t\t 0.34209439 0.85010272 0.34144789 0.85034031 0.34083697 0.79289961 0.34144759 0.79216772\n\t\t 0.34209439 0.79152131 0.34282658 0.79090291 0.39772338 0.79042065 0.3989163 0.7906698\n\t\t 0.39970419 0.79145837 0.39996061 0.79265159 0.39958975 0.84755963 0.39890295 0.84829366\n\t\t 0.39822033 0.84897602 0.39748275 0.84966463 0.34203851 0.85034096 0.34165353 0.85034066\n\t\t 0.34106985 0.79211193 0.34165347 0.79172689 0.3420389 0.79114318 0.39880806 0.79010695\n\t\t 0.40026724 0.79010743 0.40026677 0.79156703 0.39932045 0.84836859 0.3987034 0.84877676\n\t\t 0.39829478 0.84939384 0.34144759 0.85057878 0.34144789 0.79152095 0.39970481 0.78954434\n\t\t 0.40082967 0.79067051 0.39890262 0.84897631 0.40026769 0.78864783 0.4008303 0.78875649\n\t\t 0.40172634 0.79010791 0.40161818 0.78954494 0.40057382 0.78756326 0.40110976 0.78760237\n\t\t 0.40172687 0.78864831 0.40281102 0.78979415 0.40277231 0.78926462 0.40070012 0.78643656\n\t\t 0.40124539 0.78644609 0.40191379 0.78756356 0.40281138 0.78846437 0.40393794 0.7896443\n\t\t 0.40392852 0.78912538 0.40074229 0.78528881 0.40132493 0.78528875 0.40204027 0.78643674\n\t\t 0.40289652 0.78748268 0.40393811 0.78834587 0.40508589 0.78963345 0.40508589 0.78905177\n\t\t 0.40132293 0.73469287 0.40074113 0.73469287 0.40214193 0.78528875 0.40299577 0.78640872\n\t\t 0.40396878 0.78739512 0.40508589 0.78823501 0.45568177 0.78963232 0.45568177 0.78904969\n\t\t 0.40213963 0.73469287 0.40065509 0.73363459 0.40106109 0.73363411 0.40309146 0.78528875\n\t\t 0.4040229 0.78636241 0.40508589 0.7872864 0.45568177 0.78823274 0.45671105 0.7890349\n\t\t 0.45671999 0.78957945 0.40308815 0.73469287 0.40165251 0.73363471 0.40048644 0.73266643\n\t\t 0.40079364 0.73267984 0.40408534 0.78528875 0.40508589 0.786291 0.45568177 0.78728312;\n\tsetAttr \".uvst[0].uvsp[2000:2249]\" 0.45672685 0.7882902 0.45768067 0.7889334\n\t\t 0.45771596 0.78943145 0.40408361 0.73469287 0.40237522 0.733643 0.40119064 0.73266673\n\t\t 0.40026683 0.7318787 0.40050504 0.73193455 0.40508589 0.78528881 0.45568177 0.78628927\n\t\t 0.45673886 0.78735459 0.45771939 0.78825033 0.45845345 0.78874284 0.45852795 0.78916067\n\t\t 0.40508589 0.73469287 0.40317523 0.73366576 0.4016774 0.73265553 0.40072909 0.73187906\n\t\t 0.40002903 0.73128772 0.40026724 0.73149365 0.45568177 0.78528875 0.4567261 0.78632206\n\t\t 0.45776358 0.78736579 0.45852837 0.78813499 0.4589366 0.78854358 0.45913583 0.78874314\n\t\t 0.45568177 0.73469287 0.40406415 0.73369235 0.40225407 0.73267472 0.40097412 0.73179269\n\t\t 0.40026751 0.73128802 0.45668405 0.78528875 0.45774686 0.78633386 0.45864233 0.78732294\n\t\t 0.45913616 0.78806049 0.45955366 0.78813535 0.45568177 0.73369062 0.45668232 0.73469281\n\t\t 0.40294176 0.7326985 0.40127569 0.73175579 0.40026665 0.73111171 0.45767948 0.78528875\n\t\t 0.45867583 0.78632694 0.45932579 0.78728765 0.45982295 0.7873264 0.45568177 0.73269516\n\t\t 0.45671508 0.73364854 0.45767614 0.73469281 0.40166792 0.73174888 0.4002631 0.73099816\n\t\t 0.45862803 0.78528875 0.45942372 0.786318 0.45996806 0.7863338 0.45568177 0.73174667\n\t\t 0.45672691 0.73262781 0.45774761 0.73363578 0.45862573 0.73469281 0.40026924 0.73093188\n\t\t 0.45944476 0.78528875 0.46002647 0.78528875 0.45568177 0.73092985 0.45671999 0.73169875\n\t\t 0.45775884 0.73261106 0.45868316 0.73364776 0.45944268 0.73469281 0.46002531 0.73469287\n\t\t 0.39886987 0.7303493 0.45568177 0.73034817 0.45671105 0.73095089 0.45771596 0.73173231\n\t\t 0.45864332 0.73265523 0.45942792 0.73366362 0.45997241 0.73365462 0.45672679 0.73040658\n\t\t 0.45768067 0.73104882 0.45852795 0.73184627 0.45932642 0.73269397 0.45982444 0.73265868\n\t\t 0.45771939 0.73055166 0.45845345 0.73123848 0.45913583 0.73192114 0.45955366 0.73184669\n\t\t 0.45852837 0.73082095 0.4589366 0.73143804 0.45913616 0.73123878 0.24811852 0.73600912\n\t\t 0.26127499 0.73471338 0.27443138 0.73600906 0.28708223 0.73984665 0.2987414 0.74607861\n\t\t 0.30896074 0.75446534 0.3173475 0.76468468 0.32357943 0.77634376 0.32741705 0.78899467\n\t\t 0.32871291 0.80215114 0.32741711 0.81530762 0.32357946 0.82795846 0.31734762 0.83961761\n\t\t 0.30896086 0.84983695 0.29874152 0.85822368 0.2870824 0.86445564 0.2744315 0.86829329\n\t\t 0.26127499 0.86958903 0.24811858 0.86829329 0.23546766 0.8644557 0.22380853 0.85822374\n\t\t 0.21358928 0.84983701 0.2052025 0.83961767 0.19897053 0.82795852 0.19513294 0.81530768\n\t\t 0.19383715 0.8021512 0.19513294 0.78899473 0.19897053 0.77634382 0.2052025 0.76468474\n\t\t 0.21358922 0.7544654 0.22380853 0.74607873 0.23546766 0.73984671 0.24792224 0.73502219\n\t\t 0.26127499 0.73370713 0.27462772 0.73502219 0.28746733 0.73891705 0.2993004 0.74524194\n\t\t 0.30967221 0.7537539 0.31818417 0.76412565 0.32450908 0.77595872 0.32840398 0.78879839\n\t\t 0.32971907 0.80215114 0.32840398 0.8155039 0.32450914 0.82834357 0.3181842 0.84017664\n\t\t 0.30967233 0.85054845 0.29930055 0.85906035 0.28746745 0.86538529 0.27462783 0.86928016\n\t\t 0.26127505 0.87059528 0.2479223 0.86928016 0.23508261 0.86538535 0.2232495 0.85906041\n\t\t 0.21287774 0.85054845 0.20436585 0.8401767 0.19804093 0.82834363 0.19414602 0.81550395\n\t\t 0.19283092 0.8021512 0.19414602 0.78879845 0.19804093 0.77595878 0.20436579 0.7641257\n\t\t 0.21287774 0.7537539 0.2232495 0.74524206 0.23508255 0.73891711 0.24772722 0.73404193\n\t\t 0.26127499 0.73270762 0.27482268 0.73404193 0.28784978 0.73799366 0.29985541 0.74441075\n\t\t 0.310379 0.75304711 0.31901518 0.76357037 0.32543248 0.77557617 0.32938418 0.78860337\n\t\t 0.33071858 0.80215114 0.32938424 0.81569886 0.32543251 0.82872605 0.31901529 0.84073192\n\t\t 0.31037912 0.85125518 0.2998558 0.85989136 0.28784996 0.86630869 0.27482277 0.87026036\n\t\t 0.26127505 0.87159479 0.24772727 0.87026042 0.2347001 0.86630869 0.22269426 0.85989141\n\t\t 0.21217102 0.85125518 0.20353483 0.84073198 0.19711754 0.82872611 0.19316581 0.81569898\n\t\t 0.19183141 0.8021512 0.19316581 0.78860348 0.19711754 0.77557629 0.20353483 0.76357043\n\t\t 0.21217102 0.75304723 0.2226942 0.74441099 0.2347001 0.73799372 0.24754122 0.73310661\n\t\t 0.26127499 0.73175395 0.27500868 0.73310661 0.28821477 0.73711258 0.30038452 0.74361748\n\t\t 0.31105325 0.7523728 0.31980813 0.76304054 0.32631353 0.77521127 0.33031958 0.78841728\n\t\t 0.33167225 0.80215114 0.33031958 0.81588495 0.32631359 0.82909095 0.31980824 0.84126174\n\t\t 0.31105343 0.85192949 0.30038565 0.86068434 0.28821489 0.86718971 0.27500889 0.87119579\n\t\t 0.26127505 0.87254846 0.24754122 0.87119579 0.23433517 0.86718976 0.22216441 0.86068439\n\t\t 0.21149664 0.85192955 0.20274188 0.8412618 0.19623648 0.82909101 0.19223042 0.81588507\n\t\t 0.19087775 0.8021512 0.19223042 0.7884174 0.19623648 0.77521133 0.20274188 0.7630406\n\t\t 0.21149664 0.7523728 0.22216441 0.74361807 0.23433511 0.7371127 0.24738106 0.73230159\n\t\t 0.26127499 0.73093313 0.27516881 0.73230159 0.28852889 0.73635423 0.30083933 0.74293435\n\t\t 0.31163365 0.75179237 0.3204906 0.76258451 0.32707188 0.77489716 0.3311246 0.78825712\n\t\t 0.33249307 0.80215114 0.3311246 0.81604505 0.32707193 0.82940507 0.32049066 0.84171778\n\t\t 0.31163377 0.85250992 0.30084169 0.86136681 0.28852898 0.86794806 0.27516899 0.87200081\n\t\t 0.26127505 0.87336928 0.24738106 0.87200081 0.23402107 0.86794806 0.22170836 0.86136687\n\t\t 0.21091624 0.85250998 0.2020594 0.84171784 0.19547811 0.82940519 0.19142541 0.81604511\n\t\t 0.19005695 0.8021512 0.19142541 0.78825724 0.19547811 0.77489728 0.20205934 0.76258457\n\t\t 0.21091624 0.75179243 0.22170836 0.74293554 0.23402101 0.73635429 0.24726693 0.7317279\n\t\t 0.26127499 0.73034817 0.27528295 0.73172784 0.28875273 0.7358138 0.30116263 0.74244702;\n\tsetAttr \".uvst[0].uvsp[2250:2499]\" 0.31204736 0.75137872 0.32097697 0.76225948\n\t\t 0.32761231 0.77467328 0.33169833 0.7881431 0.33307806 0.80215114 0.33169839 0.81615919\n\t\t 0.32761243 0.829629 0.32097709 0.8420428 0.31204748 0.85292357 0.30116665 0.86185324\n\t\t 0.28875291 0.86848849 0.27528313 0.87257451 0.26127505 0.87395424 0.24726699 0.87257451\n\t\t 0.23379721 0.86848855 0.22138341 0.86185324 0.21050264 0.85292363 0.20157298 0.84204286\n\t\t 0.19493769 0.82962906 0.19085167 0.81615925 0.189472 0.8021512 0.19085167 0.7881431\n\t\t 0.19493763 0.77467334 0.20157298 0.7622596 0.21050258 0.75137877 0.22138335 0.74244916\n\t\t 0.23379715 0.73581386 0.12185238 0.67498761 0.11703373 0.72558349 0.061619177 0.73040217\n\t\t 0.061619177 0.67498761 0.17726693 0.67498761 0.17726693 0.72558349 0.11703373 0.78581667\n\t\t 0.056800526 0.78581667 0.0062046302 0.73040217 0.0062046302 0.67498761 0.061616998\n\t\t 0.67398626 0.12185238 0.67398626 0.17826746 0.67498761 0.17826919 0.72558349 0.17726693\n\t\t 0.72658402 0.11805724 0.72658575 0.17829044 0.67398536 0.11803427 0.72660518 0.11803599\n\t\t 0.78581667 0.11703373 0.78681725 0.057824042 0.78681898 0.0062046302 0.79063535 0.0052032862\n\t\t 0.73040217 0.0052024247 0.67498761 0.0062046302 0.67398703 0.061603438 0.67299157\n\t\t 0.12185238 0.67299157 0.17914645 0.67394984 0.17926134 0.67498761 0.17926466 0.72558349\n\t\t 0.17830475 0.7266106 0.17726693 0.72757792 0.11918186 0.7275812 0.11891326 0.72749418\n\t\t 0.17941506 0.6729899 0.11902814 0.72772759 0.11903141 0.78581667 0.11807155 0.78684378\n\t\t 0.11703373 0.78781104 0.058948658 0.78781438 0.058680054 0.78772736 0.057801064 0.78683835\n\t\t 0.056800526 0.8460499 0.0062046302 0.8460499 0.0052032862 0.79063535 0.0042086057\n\t\t 0.73040217 0.0042069401 0.67498761 0.0051603192 0.67395425 0.0062046302 0.67299318\n\t\t 0.061569434 0.67204249 0.12185238 0.67204249 0.18006548 0.67295319 0.17995669 0.67393488\n\t\t 0.18021093 0.67498761 0.18021317 0.72558349 0.17930132 0.72663331 0.17831968 0.72760171\n\t\t 0.17726693 0.72852743 0.12045508 0.72852975 0.11983223 0.72829419 0.11972349 0.72841531\n\t\t 0.18068828 0.67204136 0.11997773 0.7290014 0.11997997 0.78581667 0.11906812 0.78686655\n\t\t 0.11808648 0.78783488 0.11703373 0.78876066 0.060221877 0.78876293 0.059599027 0.78852737\n\t\t 0.059490286 0.78864849 0.058794942 0.78796083 0.057802789 0.8460499 0.056800526 0.84705043\n\t\t 0.0062046302 0.84705216 0.0052041481 0.84707159 0.0042086057 0.79063535 0.0032595352\n\t\t 0.73040217 0.0032583862 0.67498761 0.0041396171 0.67394251 0.005147567 0.67292172\n\t\t 0.0062046302 0.67204368 0.18105793 0.67203903 0.18066415 0.67294586 0.18068926 0.67392927\n\t\t 0.18102787 0.67498761 0.18102995 0.72558349 0.18021546 0.72664165 0.17930873 0.7276209\n\t\t 0.17832525 0.72852063 0.12082472 0.72901684 0.12043095 0.72899199 0.12045605 0.72939366\n\t\t 0.12079468 0.73040009 0.12079675 0.78581667 0.11998226 0.78687483 0.11907553 0.78785408\n\t\t 0.11809205 0.78875375 0.060591526 0.78925008 0.060197752 0.7892251 0.060222853 0.7896269\n\t\t 0.059744529 0.78923458 0.058798272 0.8460499 0.057838343 0.84707701 0.056800526 0.84804428\n\t\t 0.0062046302 0.84804755 0.0051775519 0.84796053 0.0042102719 0.848194 0.0032595352\n\t\t 0.79063535 0.0024426978 0.73040217 0.0024416638 0.67498761 0.0032105937 0.67394936\n\t\t 0.0041228435 0.67291051 0.00515963 0.67198622 0.18137461 0.67208409 0.18115948 0.67296112\n\t\t 0.18129574 0.67392886 0.18161052 0.67498761 0.18161167 0.72558349 0.18095751 0.72664225\n\t\t 0.18017043 0.72760963 0.17929339 0.72848368 0.12185445 0.72934645 0.12184836 0.72960824\n\t\t 0.12114135 0.72947878 0.12092628 0.72969526 0.12106254 0.73040622 0.12137733 0.73179948\n\t\t 0.12137847 0.78581667 0.12072431 0.78687543 0.11993723 0.78784281 0.1190602 0.78871685\n\t\t 0.061621249 0.78957963 0.061615102 0.78984141 0.06090821 0.78971189 0.060693085 0.78992844\n\t\t 0.060829341 0.7906394 0.060561486 0.79063326 0.059746768 0.8460499 0.058834922 0.84709972\n\t\t 0.057853278 0.84806806 0.056800526 0.84899384 0.0062046875 0.84899616 0.0051548048\n\t\t 0.84876055 0.0041864906 0.84888172 0.003260684 0.84946781 0.0024426978 0.79063535\n\t\t 0.0018605143 0.73040217 0.0018599398 0.67498761 0.0024626879 0.67395836 0.0032440829\n\t\t 0.67295343 0.0041670171 0.67202604 0.18162414 0.67217344 0.18155974 0.67297459 0.18172799\n\t\t 0.67392951 0.18143797 0.72664183 0.18084757 0.72759652 0.18008111 0.72839725 0.1218518\n\t\t 0.72987568 0.12139094 0.7299403 0.12132654 0.73040271 0.12149479 0.73142987 0.12120476\n\t\t 0.78687501 0.12061431 0.7878297 0.11984791 0.78863049 0.061618604 0.79010886 0.061157741\n\t\t 0.79017353 0.061093349 0.79063594 0.061144128 0.79203272 0.061261598 0.79166305 0.060563553\n\t\t 0.8460499 0.059749067 0.84710807 0.058842331 0.84808725 0.057858851 0.84898698 0.0051465328\n\t\t 0.84948325 0.0041673044 0.8494584 0.0032675772 0.84986007 0.0024437318 0.8508665\n\t\t 0.0018605143 0.79063535 0.0019183593 0.67394257 0.0025606279 0.67298871 0.0033580496\n\t\t 0.67214143 0.18184742 0.67222929 0.1818732 0.67296147 0.18128264 0.72760999 0.18067208\n\t\t 0.72834176 0.12185273 0.73016429 0.12161422 0.73040181 0.12164001 0.7311132 0.12104944\n\t\t 0.78784317 0.12043888 0.78857499 0.061619524 0.79039747 0.06138102 0.79063499 0.061406814\n\t\t 0.79134637 0.061145276 0.8460499 0.060491115 0.8471086 0.059704088 0.84807599 0.058826994\n\t\t 0.84895009 0.0041785059 0.84994513 0.0033044554 0.85016167 0.0025099632 0.85087264\n\t\t 0.0018610887 0.85226589 0.0020634599 0.67294997 0.0027503041 0.67221588 0.18208523\n\t\t 0.6721738 0.18104982 0.72839767 0.12185238 0.73040217 0.12185203 0.73086363 0.12081663\n\t\t 0.7886309 0.061619177 0.79063535 0.061618835 0.79109687 0.060971569 0.84710824 0.06038117\n\t\t 0.84806293 0.059614707 0.84886366 0.0033908493 0.85040671 0.0026234703 0.85086912\n\t\t 0.0023327521 0.67214096 0.060816243 0.84807634 0.060205679 0.84880817 0.0027998774\n\t\t 0.85086823 0.060583428 0.84886408 0.38467008 0.49098119 0.44008461 0.49098119 0.44008461\n\t\t 0.54639572;\n\tsetAttr \".uvst[0].uvsp[2500:2749]\" 0.38467008 0.54639572 0.38467008 0.4899798\n\t\t 0.44008461 0.48997894 0.44108516 0.49098119 0.44108599 0.54639345 0.44008461 0.60662889\n\t\t 0.38467008 0.60662889 0.32443687 0.49098119 0.32443687 0.54639572 0.32443687 0.4899798\n\t\t 0.38467008 0.48898512 0.44008461 0.48898345 0.44111794 0.48993689 0.44207901 0.49098119\n\t\t 0.44208065 0.54637998 0.44108599 0.60662895 0.44008461 0.66686207 0.38467008 0.66686207\n\t\t 0.32443687 0.60662889 0.26420367 0.49098119 0.26420367 0.54639572 0.26420367 0.4899798\n\t\t 0.32443687 0.48898512 0.38467008 0.48803604 0.44008461 0.48803493 0.44112971 0.48891613\n\t\t 0.44215044 0.48992407 0.4430286 0.49098119 0.4430297 0.54634595 0.44208065 0.60662895\n\t\t 0.44108599 0.66686434 0.44008461 0.72227663 0.38467008 0.72227663 0.32443687 0.66686207\n\t\t 0.26420367 0.60662889 0.20878913 0.49098119 0.20878913 0.54639572 0.20878913 0.48998064\n\t\t 0.26420367 0.48898512 0.32443687 0.48803604 0.38467008 0.48721915 0.44008461 0.48721817\n\t\t 0.44112283 0.48798704 0.44216168 0.48889935 0.44308603 0.48993608 0.4430297 0.60662895\n\t\t 0.44208065 0.66687781 0.44108686 0.72227669 0.44008461 0.72327715 0.38467008 0.72327805\n\t\t 0.32443687 0.72227663 0.26420367 0.66686207 0.20878913 0.60662889 0.20778775 0.54639572\n\t\t 0.20778689 0.49098119 0.20774481 0.4899478 0.20878913 0.48898679 0.26420367 0.48803604\n\t\t 0.32443687 0.48721915 0.38467008 0.48663703 0.44008461 0.48663643 0.44111386 0.48723918\n\t\t 0.44211879 0.4880206 0.44304618 0.48894352 0.4430297 0.66691184 0.44208232 0.72227669\n\t\t 0.44112891 0.72330993 0.44008461 0.724271 0.38467008 0.72427273 0.32443687 0.72327805\n\t\t 0.26420367 0.72227663 0.20878913 0.66686207 0.20778775 0.60662895 0.20679307 0.54639572\n\t\t 0.20679143 0.49098119 0.20672408 0.48993608 0.20773202 0.48891532 0.20878913 0.4880372\n\t\t 0.26420367 0.48721915 0.32443687 0.48663703 0.44112965 0.48669487 0.44208351 0.48733714\n\t\t 0.44293082 0.48813456 0.44303086 0.72227669 0.44214964 0.72332174 0.44114169 0.72434253\n\t\t 0.44008461 0.72522062 0.38467008 0.72522175 0.32443687 0.72427273 0.26420367 0.72327805\n\t\t 0.20878913 0.72227663 0.20778775 0.66686207 0.20679307 0.60662895 0.205844 0.54639572\n\t\t 0.20584288 0.49098119 0.20579503 0.48994297 0.20670733 0.48890406 0.20774406 0.48797974\n\t\t 0.20878913 0.48722017 0.26420367 0.48663703 0.44212225 0.48683992 0.44285631 0.4875268\n\t\t 0.4430787 0.72331482 0.44216639 0.72435367 0.44112965 0.72527808 0.44008461 0.72603756\n\t\t 0.38467008 0.72603863 0.32443687 0.72522175 0.26420367 0.72427273 0.20878913 0.72327888\n\t\t 0.20778859 0.72227669 0.20679307 0.66686213 0.205844 0.60662895 0.20582855 0.48894697\n\t\t 0.20675148 0.48801956 0.20775986 0.48723501 0.20878913 0.48663759 0.44293123 0.48710924\n\t\t 0.4430452 0.72431087 0.44212225 0.7252382 0.44111386 0.72602284 0.44008461 0.7266202\n\t\t 0.38467008 0.72662079 0.32443687 0.72603863 0.26420367 0.72522175 0.20878913 0.72427434\n\t\t 0.20775579 0.72332096 0.20679474 0.72227669 0.205844 0.66686207 0.20594248 0.48813495\n\t\t 0.20679019 0.48733655 0.2077509 0.48669049 0.44293123 0.72512287 0.44208351 0.72592127\n\t\t 0.44112283 0.72656733 0.32443687 0.72662079 0.26420367 0.72603863 0.20878913 0.72522295\n\t\t 0.207744 0.72434169 0.20672327 0.72333372 0.20584515 0.72227669 0.20601742 0.4875271\n\t\t 0.20675492 0.4868384 0.44285631 0.72573072 0.44211879 0.72641933 0.26420367 0.72662079\n\t\t 0.20878913 0.72603965 0.2077509 0.72527069 0.20671205 0.72435844 0.2057877 0.72332168\n\t\t 0.20594291 0.48710924 0.44293082 0.72614855 0.20878913 0.72662133 0.20775986 0.72601861\n\t\t 0.20675492 0.72523719 0.20582753 0.72431427 0.20774406 0.72656298 0.20679019 0.72592062\n\t\t 0.20594291 0.72512329 0.20675148 0.72641784 0.20601742 0.72573102 0.20594248 0.72614855\n\t\t 0.54211748 0.90934831 0.49152157 0.90934831 0.49152157 0.85875243 0.54211748 0.85875243\n\t\t 0.54211748 0.91034883 0.49152157 0.91035056 0.49052101 0.91037005 0.49051934 0.85875243\n\t\t 0.49152157 0.85775191 0.54211748 0.85775018 0.543118 0.85875243 0.54311967 0.90934831\n\t\t 0.54319113 0.9104113 0.54211748 0.91134274 0.49152157 0.91134602 0.49049443 0.911259\n\t\t 0.4895272 0.91149241 0.48952386 0.85875243 0.49047723 0.85771912 0.49152157 0.85675806\n\t\t 0.54211748 0.85675472 0.54315078 0.85770816 0.54411179 0.85875243 0.54411513 0.90934831\n\t\t 0.54422385 0.91046536 0.54323739 0.91143847 0.54211748 0.9122923 0.49152157 0.91229457\n\t\t 0.49047172 0.91205901 0.48950335 0.91218013 0.48857754 0.91276628 0.48857531 0.85875243\n\t\t 0.48945653 0.85770732 0.49046445 0.85668659 0.49152157 0.85580844 0.54211748 0.85580617\n\t\t 0.54316258 0.85668737 0.54418325 0.85769534 0.54506147 0.85875243 0.54506367 0.90934831\n\t\t 0.54517454 0.91049612 0.54431129 0.91153771 0.5432654 0.91239393 0.54211748 0.91310924\n\t\t 0.49152157 0.91311133 0.49046341 0.91278172 0.48948422 0.9127568 0.48858446 0.91315848\n\t\t 0.48852748 0.85771424 0.48943976 0.85667533 0.49047649 0.85575104 0.49152157 0.8549915\n\t\t 0.54211748 0.85498941 0.54315567 0.85575837 0.54419452 0.85667068 0.54511893 0.85770738\n\t\t 0.54529309 0.91162282 0.54439223 0.91252047 0.54327476 0.91318882 0.54211748 0.91369188\n\t\t 0.49152157 0.91369307 0.49046284 0.91337311 0.48949543 0.91324353 0.48862138 0.91346008\n\t\t 0.488561 0.85671824 0.48948389 0.85579079 0.49049228 0.85500628 0.49152157 0.85440886\n\t\t 0.54211748 0.85440773 0.54314673 0.85501045 0.54415166 0.85579187 0.54507905 0.85671479\n\t\t 0.54547697 0.91270739 0.54443109 0.91332448 0.54326522 0.91373408 0.49046323 0.91377908\n\t\t 0.4895086 0.91364056 0.48870778 0.91370517 0.48867491 0.85590625 0.48952267 0.85510784\n\t\t 0.49048334 0.85446179 0.54316252 0.85446614 0.54411638 0.85510838 0.54496372 0.85590583\n\t\t 0.54558516 0.9136039 0.54439193 0.91386044 0.48949516 0.91394776 0.48876321 0.9139291;\n\tsetAttr \".uvst[0].uvsp[2750:2999]\" 0.48874989 0.85529834 0.48948732 0.85460967\n\t\t 0.54415512 0.85461122 0.54488915 0.8552981 0.54547656 0.91416651 0.48870736 0.91416734\n\t\t 0.48867533 0.85488051 0.54496408 0.85488051 0.9283585 0.78305531 0.87776262 0.78305531\n\t\t 0.87776262 0.73245943 0.9283585 0.73245943 0.9283585 0.78405583 0.87776262 0.78405756\n\t\t 0.87676203 0.78305531 0.87676036 0.73245943 0.87776262 0.7314589 0.9283585 0.73145717\n\t\t 0.92935902 0.73245943 0.92936069 0.78305531 0.92943215 0.78411835 0.9283585 0.78504974\n\t\t 0.87776262 0.78505307 0.87673545 0.78409314 0.87576824 0.78305531 0.87576491 0.73245943\n\t\t 0.87668896 0.7313965 0.87776262 0.73046505 0.9283585 0.73046178 0.92939186 0.73141509\n\t\t 0.93035287 0.73245943 0.9303562 0.78305531 0.93046486 0.78417242 0.92947847 0.78514546\n\t\t 0.9283585 0.7859993 0.87776262 0.78600156 0.87671274 0.78508967 0.8757444 0.78410804\n\t\t 0.87481856 0.78305531 0.87481636 0.73245943 0.87565625 0.73134238 0.87664264 0.73036927\n\t\t 0.87776262 0.72951543 0.9283585 0.72951317 0.9294036 0.73039436 0.93042433 0.73140234\n\t\t 0.93130243 0.73245943 0.93130475 0.78305531 0.93141562 0.78420311 0.93055236 0.7852447\n\t\t 0.92950642 0.78610092 0.9283585 0.78681624 0.87776262 0.78681833 0.87670445 0.78600383\n\t\t 0.87572527 0.78509712 0.87482548 0.78411365 0.87470549 0.73131162 0.87556875 0.73027003\n\t\t 0.87661463 0.72941381 0.87776262 0.72869849 0.9283585 0.72869647 0.92939669 0.72946537\n\t\t 0.9304356 0.73037767 0.93135989 0.73141438 0.93153411 0.78532982 0.93063331 0.78622746\n\t\t 0.92951578 0.78689581 0.9283585 0.78739887 0.87776262 0.78740007 0.87670386 0.78674591\n\t\t 0.87573647 0.78595889 0.87486243 0.78508174 0.874587 0.73018497 0.8754878 0.72928727\n\t\t 0.87660527 0.72861892 0.87776262 0.72811586 0.9283585 0.72811472 0.92938769 0.72871745\n\t\t 0.93039268 0.72949886 0.93132007 0.73042178 0.93171805 0.78641438 0.93067211 0.78703147\n\t\t 0.92950624 0.78744107 0.87670428 0.78722632 0.87574965 0.78663594 0.8749488 0.78586954\n\t\t 0.87440306 0.72910035 0.87544894 0.72848332 0.87661481 0.72807372 0.92940354 0.72817314\n\t\t 0.9303574 0.72881538 0.93120474 0.72961283 0.93182617 0.7873109 0.93063301 0.78756744\n\t\t 0.87573618 0.78707099 0.87500423 0.78646046 0.87429488 0.72820389 0.8754881 0.72794735\n\t\t 0.93039608 0.72831821 0.93113017 0.7290051 0.93171751 0.78787351 0.87494844 0.78683817\n\t\t 0.87440354 0.72764128 0.93120509 0.72858751 0.86509877 0.78305531 0.81450284 0.78305531\n\t\t 0.81450284 0.73245943 0.86509877 0.73245943 0.86509877 0.78405583 0.81450284 0.78405756\n\t\t 0.81350237 0.78305531 0.81350064 0.73245943 0.81450284 0.7314589 0.86509877 0.73145717\n\t\t 0.8660993 0.73245943 0.86610097 0.78305531 0.86617243 0.78411835 0.86509877 0.78504974\n\t\t 0.81450284 0.78505307 0.81347573 0.78409314 0.81250846 0.78305531 0.81250519 0.73245943\n\t\t 0.81342918 0.7313965 0.81450284 0.73046505 0.86509877 0.73046178 0.86613208 0.73141515\n\t\t 0.86709309 0.73245943 0.86709642 0.78305531 0.86720514 0.78417242 0.86621869 0.78514546\n\t\t 0.86509877 0.7859993 0.81450284 0.78600156 0.81345296 0.78508967 0.81248468 0.78410804\n\t\t 0.81155884 0.78305531 0.81155658 0.73245943 0.81239647 0.73134238 0.81338286 0.73036927\n\t\t 0.81450284 0.72951543 0.86509877 0.72951317 0.86614388 0.73039436 0.86716455 0.73140234\n\t\t 0.86804277 0.73245943 0.86804497 0.78305531 0.86815584 0.78420311 0.86729258 0.78524476\n\t\t 0.8662467 0.78610092 0.86509877 0.78681624 0.81450284 0.78681833 0.81344467 0.78600383\n\t\t 0.81246555 0.78509718 0.81156576 0.78411365 0.81144571 0.73131162 0.81230897 0.73027003\n\t\t 0.81335491 0.72941381 0.81450284 0.72869849 0.86509877 0.72869647 0.86613697 0.72946537\n\t\t 0.86717582 0.73037767 0.86810017 0.73141438 0.86827433 0.78532982 0.86737353 0.78622746\n\t\t 0.86625606 0.78689581 0.86509877 0.78739887 0.81450284 0.78740007 0.81344414 0.78674591\n\t\t 0.81247675 0.78595889 0.81160265 0.78508174 0.81132722 0.73018497 0.81222808 0.72928727\n\t\t 0.81334555 0.72861892 0.81450284 0.72811586 0.86509877 0.72811472 0.86612797 0.72871745\n\t\t 0.86713296 0.72949886 0.86806035 0.73042178 0.86845827 0.78641438 0.86741239 0.78703141\n\t\t 0.86624652 0.78744107 0.8134445 0.78722632 0.81248987 0.78663594 0.81168908 0.78586954\n\t\t 0.81114328 0.72910035 0.81218922 0.72848332 0.81335509 0.72807372 0.86614382 0.72817314\n\t\t 0.86709762 0.72881538 0.86794496 0.72961283 0.86856645 0.7873109 0.86737323 0.78756744\n\t\t 0.81247646 0.78707099 0.81174451 0.78646046 0.81103516 0.72820389 0.81222838 0.72794735\n\t\t 0.86713642 0.72831821 0.86787039 0.7290051 0.86845785 0.78787351 0.81168866 0.78683817\n\t\t 0.81114376 0.72764128 0.86794531 0.72858751 0.73770213 0.8572579 0.73770213 0.90785378\n\t\t 0.68710625 0.90785378 0.68710625 0.8572579 0.73870271 0.8572579 0.73870444 0.90887731\n\t\t 0.73770213 0.90885437 0.68710625 0.90885609 0.68610579 0.90785378 0.68610406 0.8572579\n\t\t 0.68710631 0.85625738 0.73770213 0.85625565 0.7387355 0.85621357 0.73969656 0.8572579\n\t\t 0.7396999 0.91000193 0.73873997 0.90973336 0.73770213 0.90984821 0.68710631 0.90985149\n\t\t 0.68604332 0.90892744 0.68511188 0.90785378 0.6851086 0.8572579 0.68606198 0.8562246\n\t\t 0.68710631 0.85526347 0.73770219 0.85526019 0.7387473 0.85519284 0.73976803 0.85620087\n\t\t 0.74064618 0.8572579 0.74064839 0.91127509 0.73973656 0.91065228 0.73875493 0.91054356\n\t\t 0.73770213 0.91079777 0.68710625 0.91080004 0.6859892 0.90996009 0.68501616 0.90897375\n\t\t 0.68416232 0.90785378 0.68415999 0.8572579 0.68504125 0.85621279 0.68604922 0.85519201\n\t\t 0.68710631 0.85431397 0.73770213 0.85431165 0.73874038 0.85426384 0.73977929 0.85517615\n\t\t 0.74070358 0.85621285 0.74146312 0.8572579 0.74146515 0.91267455 0.74065071 0.91164476\n\t\t 0.73974401 0.91125101 0.73876047 0.9112761 0.6859585 0.9109109 0.68491685 0.91004765;\n\tsetAttr \".uvst[0].uvsp[3000:3249]\" 0.68406063 0.90900177 0.68334538 0.90785378\n\t\t 0.68334329 0.8572579 0.68411225 0.85621971 0.68502456 0.85518086 0.68606126 0.85425651\n\t\t 0.73973638 0.85429728 0.74066377 0.85522032 0.74144834 0.85622865 0.74204576 0.8572579\n\t\t 0.74204689 0.91407323 0.74060571 0.91196144 0.73972863 0.91174638 0.6848318 0.9110294\n\t\t 0.68393415 0.91012865 0.68326581 0.90901119 0.68276274 0.90785378 0.68276155 0.8572579\n\t\t 0.68336433 0.85622865 0.68414575 0.85522372 0.68506867 0.85429633 0.74054837 0.85441124\n\t\t 0.74134678 0.855259 0.74199283 0.85621971 0.74139273 0.91266841 0.74128282 0.91267186\n\t\t 0.74051636 0.912211 0.68374723 0.91121328 0.6831302 0.9101674 0.68272054 0.90900159\n\t\t 0.68281996 0.85621285 0.68346226 0.855259 0.68425965 0.85441172 0.74115628 0.85448617\n\t\t 0.74184495 0.85522372 0.74110729 0.91267282 0.68285072 0.91132152 0.68259424 0.9101283\n\t\t 0.6829651 0.85522032 0.68365192 0.85448617 0.74157411 0.85441172 0.68228811 0.91121286\n\t\t 0.68323439 0.85441124 0.67221487 0.8572579 0.67221487 0.90785378 0.62161905 0.90785378\n\t\t 0.62161905 0.8572579 0.67321545 0.8572579 0.67321718 0.90887731 0.67221487 0.90885437\n\t\t 0.62161905 0.90885609 0.62061852 0.90785378 0.62061685 0.8572579 0.62161905 0.85625738\n\t\t 0.67221487 0.85625565 0.67324823 0.85621357 0.6742093 0.8572579 0.67421263 0.91000193\n\t\t 0.67325276 0.90973336 0.67221487 0.90984815 0.62161905 0.90985149 0.62055606 0.90892744\n\t\t 0.61962461 0.90785378 0.61962134 0.8572579 0.62057471 0.8562246 0.62161905 0.85526347\n\t\t 0.67221493 0.85526019 0.67326003 0.85519284 0.67428076 0.85620087 0.67515892 0.8572579\n\t\t 0.67516112 0.91127509 0.67424935 0.91065228 0.67326766 0.91054356 0.67221487 0.91079777\n\t\t 0.62161905 0.91080004 0.62050194 0.90996009 0.61952895 0.90897375 0.61867505 0.90785378\n\t\t 0.61867279 0.8572579 0.61955398 0.85621279 0.62056196 0.85519201 0.62161905 0.85431397\n\t\t 0.67221487 0.85431165 0.67325318 0.85426384 0.67429203 0.85517615 0.67521632 0.85621285\n\t\t 0.67597592 0.8572579 0.67597789 0.91267455 0.67516345 0.91164482 0.67425674 0.91125095\n\t\t 0.67327321 0.91127616 0.6204713 0.9109109 0.61942959 0.91004765 0.61857343 0.90900177\n\t\t 0.61785811 0.90785378 0.61785603 0.8572579 0.61862499 0.85621971 0.61953729 0.85518086\n\t\t 0.620574 0.85425651 0.67424911 0.85429728 0.6751765 0.85522032 0.67596108 0.85622865\n\t\t 0.67655849 0.8572579 0.67655963 0.91407323 0.67511845 0.91196144 0.67424136 0.91174638\n\t\t 0.61934453 0.9110294 0.61844689 0.91012865 0.6177786 0.90901119 0.61727548 0.90785378\n\t\t 0.61727428 0.8572579 0.61787707 0.85622865 0.61865848 0.85522372 0.6195814 0.85429633\n\t\t 0.67506111 0.85441124 0.67585957 0.855259 0.67650557 0.85621971 0.67590547 0.91266841\n\t\t 0.67579556 0.91267186 0.67502916 0.91221094 0.61825997 0.91121328 0.61764294 0.9101674\n\t\t 0.61723334 0.90900159 0.61733276 0.85621285 0.61797506 0.855259 0.61877239 0.85441172\n\t\t 0.67566901 0.85448617 0.67635769 0.85522372 0.67562002 0.91267282 0.61736345 0.91132152\n\t\t 0.61710697 0.9101283 0.61747783 0.85522032 0.61816466 0.85448617 0.67608684 0.85441172\n\t\t 0.61680084 0.91121286 0.61774713 0.85441124 0.47933131 0.91040522 0.42873544 0.91040522\n\t\t 0.42873544 0.8598094 0.47933131 0.8598094 0.47933131 0.9114058 0.42873544 0.91140753\n\t\t 0.42773488 0.91142696 0.42773318 0.8598094 0.42873544 0.85880888 0.47933131 0.85880715\n\t\t 0.48033187 0.8598094 0.48033357 0.91040522 0.48040497 0.91146827 0.47933131 0.91239965\n\t\t 0.42873544 0.91240299 0.4277083 0.91231596 0.42674103 0.91254938 0.42673773 0.8598094\n\t\t 0.4276911 0.85877609 0.42873544 0.85781497 0.47933131 0.85781169 0.48036465 0.85876513\n\t\t 0.48132572 0.8598094 0.48132902 0.91040522 0.48143765 0.91152233 0.48045129 0.91249543\n\t\t 0.47933131 0.91334927 0.42873544 0.91335154 0.42768559 0.91311598 0.42671722 0.91323704\n\t\t 0.42579144 0.91382319 0.42578918 0.8598094 0.42667037 0.85876429 0.42767835 0.85774356\n\t\t 0.42873544 0.85686541 0.47933131 0.85686314 0.48037642 0.85774434 0.48139718 0.85875231\n\t\t 0.48227528 0.8598094 0.48227757 0.91040522 0.48238844 0.91155308 0.48152515 0.91259468\n\t\t 0.48047927 0.9134509 0.47933131 0.91416627 0.42873544 0.9141683 0.42767727 0.91383868\n\t\t 0.42669806 0.91381377 0.42579833 0.91421545 0.42574134 0.8587712 0.42665365 0.85773236\n\t\t 0.42769036 0.85680795 0.42873544 0.85604846 0.47933131 0.85604638 0.48036954 0.85681534\n\t\t 0.48140839 0.85772765 0.48233271 0.85876435 0.48250693 0.91267973 0.48160613 0.9135775\n\t\t 0.48048866 0.91424578 0.47933131 0.91474885 0.42873544 0.91474998 0.42767671 0.91443002\n\t\t 0.42670929 0.91430056 0.42583525 0.91451699 0.42577484 0.85777521 0.42669779 0.85684782\n\t\t 0.42770615 0.85606319 0.42873544 0.85546583 0.47933131 0.8554647 0.48036057 0.85606742\n\t\t 0.4813655 0.85684878 0.48229289 0.85777175 0.48269081 0.91376436 0.4816449 0.91438144\n\t\t 0.48047909 0.91479099 0.42767709 0.91483605 0.42672244 0.91469747 0.42592165 0.91476214\n\t\t 0.42588878 0.85696316 0.42673653 0.85616475 0.42769721 0.8555187 0.48037639 0.85552305\n\t\t 0.48133022 0.85616541 0.4821775 0.85696274 0.48279902 0.91466087 0.4816058 0.91491741\n\t\t 0.426709 0.91500467 0.42597711 0.91498607 0.42596373 0.85635531 0.42670122 0.8556667\n\t\t 0.48136896 0.85566819 0.48210305 0.85635501 0.48269036 0.91522342 0.42592123 0.91522437\n\t\t 0.42588922 0.85593748 0.48217797 0.85593748 0.80183899 0.78305531 0.75124311 0.78305531\n\t\t 0.75124311 0.73245949 0.80183899 0.73245949 0.80183899 0.78405583 0.75124311 0.78405756\n\t\t 0.75024259 0.78305531 0.75024092 0.73245949 0.75124311 0.7314589 0.80183899 0.73145717\n\t\t 0.80283952 0.73245949 0.80284119 0.78305531 0.80291265 0.78411835 0.80183899 0.78504974\n\t\t 0.75124311 0.78505307 0.75021595 0.7840932 0.74924874 0.78305531 0.74924541 0.73245949;\n\tsetAttr \".uvst[0].uvsp[3250:3499]\" 0.75016946 0.7313965 0.75124311 0.73046505\n\t\t 0.80183899 0.73046178 0.80287236 0.73141515 0.80383337 0.73245949 0.8038367 0.78305537\n\t\t 0.80394536 0.78417242 0.80295897 0.78514546 0.80183899 0.7859993 0.75124311 0.78600156\n\t\t 0.75019324 0.78508967 0.7492249 0.7841081 0.74829912 0.78305531 0.74829686 0.73245949\n\t\t 0.74913675 0.73134238 0.75012314 0.73036933 0.75124311 0.72951543 0.80183899 0.72951317\n\t\t 0.8028841 0.73039436 0.80390483 0.73140234 0.80478293 0.73245949 0.80478525 0.78305531\n\t\t 0.80489612 0.78420311 0.80403286 0.78524476 0.80298692 0.78610092 0.80183899 0.7868163\n\t\t 0.75124311 0.78681833 0.75018495 0.78600383 0.74920577 0.78509718 0.74830598 0.78411365\n\t\t 0.74818599 0.73131168 0.74904925 0.73027003 0.75009519 0.72941387 0.75124311 0.72869849\n\t\t 0.80183899 0.72869647 0.80287725 0.72946537 0.8039161 0.73037767 0.80484039 0.73141438\n\t\t 0.80501461 0.78532982 0.80411381 0.78622752 0.80299628 0.78689581 0.80183899 0.78739887\n\t\t 0.75124311 0.78740007 0.75018436 0.78674591 0.74921697 0.78595889 0.74834293 0.78508174\n\t\t 0.7480675 0.73018497 0.7489683 0.72928727 0.75008577 0.72861892 0.75124311 0.72811586\n\t\t 0.80183899 0.72811478 0.80286819 0.72871745 0.80387318 0.72949892 0.80480057 0.73042178\n\t\t 0.80519855 0.78641438 0.80415261 0.78703147 0.80298674 0.78744107 0.75018477 0.78722632\n\t\t 0.74923015 0.78663594 0.7484293 0.78586954 0.74788356 0.72910035 0.7489295 0.72848332\n\t\t 0.75009531 0.72807372 0.80288404 0.7281732 0.8038379 0.72881544 0.80468524 0.72961283\n\t\t 0.80530673 0.7873109 0.80411351 0.78756744 0.74921668 0.78707099 0.74848473 0.78646046\n\t\t 0.74777538 0.72820389 0.7489686 0.72794735 0.80387664 0.72831821 0.80461067 0.7290051\n\t\t 0.80519801 0.78787351 0.74842894 0.78683823 0.74788404 0.72764128 0.80468559 0.72858751\n\t\t 0.41654518 0.91040528 0.3659493 0.91040528 0.3659493 0.8598094 0.41654518 0.8598094\n\t\t 0.41654518 0.9114058 0.3659493 0.91140753 0.36494875 0.91142696 0.36494705 0.8598094\n\t\t 0.3659493 0.85880888 0.41654518 0.85880721 0.41754574 0.8598094 0.41754743 0.91040528\n\t\t 0.41761884 0.91146827 0.41654518 0.91239965 0.3659493 0.91240299 0.36492217 0.91231596\n\t\t 0.3639549 0.91254938 0.36395159 0.8598094 0.36490497 0.85877609 0.3659493 0.85781503\n\t\t 0.41654518 0.85781169 0.41757852 0.85876513 0.41853958 0.8598094 0.41854289 0.91040528\n\t\t 0.41865152 0.91152239 0.41766515 0.91249543 0.41654518 0.91334927 0.3659493 0.91335154\n\t\t 0.36489946 0.91311598 0.36393109 0.91323704 0.36300531 0.91382319 0.36300305 0.8598094\n\t\t 0.36388424 0.85876429 0.36489221 0.85774356 0.3659493 0.85686541 0.41654518 0.85686314\n\t\t 0.41759032 0.8577444 0.41861105 0.85875231 0.41948918 0.8598094 0.41949144 0.91040528\n\t\t 0.4196023 0.91155308 0.41873902 0.91259468 0.41769314 0.9134509 0.41654518 0.91416627\n\t\t 0.3659493 0.9141683 0.36489114 0.91383868 0.36391193 0.91381377 0.36301219 0.91421545\n\t\t 0.36295521 0.8587712 0.36386752 0.85773236 0.36490422 0.85680795 0.3659493 0.85604846\n\t\t 0.41654518 0.85604638 0.41758341 0.85681534 0.41862226 0.85772765 0.4195466 0.85876435\n\t\t 0.4197208 0.91267973 0.41881999 0.9135775 0.41770253 0.91424578 0.41654518 0.91474885\n\t\t 0.3659493 0.91474998 0.36489058 0.91443002 0.36392316 0.91430056 0.36304912 0.91451699\n\t\t 0.36298871 0.85777521 0.36391166 0.85684782 0.36492002 0.85606325 0.3659493 0.85546589\n\t\t 0.41654518 0.8554647 0.41757447 0.85606742 0.4185794 0.85684884 0.41950676 0.85777175\n\t\t 0.41990471 0.91376436 0.41885877 0.91438144 0.41769296 0.91479099 0.36489096 0.91483605\n\t\t 0.36393631 0.91469747 0.36313552 0.91476214 0.36310264 0.85696316 0.3639504 0.85616475\n\t\t 0.36491108 0.8555187 0.41759026 0.85552311 0.41854408 0.85616541 0.41939139 0.8569628\n\t\t 0.42001289 0.91466087 0.41881967 0.91491741 0.36392286 0.91500467 0.36319098 0.91498607\n\t\t 0.3631776 0.85635537 0.36391509 0.8556667 0.41858283 0.85566819 0.41931689 0.85635501\n\t\t 0.41990423 0.91522342 0.3631351 0.91522437 0.36310309 0.85593748 0.41939184 0.85593748\n\t\t 0.35422534 0.9326216 0.30362943 0.9326216 0.30362943 0.88202572 0.35422534 0.88202572\n\t\t 0.35422534 0.93362218 0.30362943 0.93362379 0.30262887 0.9326216 0.30262721 0.88202572\n\t\t 0.30362943 0.88102525 0.35422534 0.88102353 0.35522586 0.88202572 0.35522756 0.9326216\n\t\t 0.35526964 0.93365496 0.35422534 0.93461597 0.30362943 0.93461931 0.30259609 0.93366593\n\t\t 0.30163503 0.9326216 0.30163175 0.88202572 0.30258512 0.88099235 0.30362943 0.88003135\n\t\t 0.35422534 0.88002801 0.35525867 0.88098145 0.35621971 0.88202572 0.35622302 0.9326216\n\t\t 0.35629037 0.93366671 0.35528243 0.93468744 0.35422534 0.93556559 0.30362943 0.93556786\n\t\t 0.30258432 0.9346866 0.30156359 0.93367875 0.30068547 0.9326216 0.30068317 0.88202572\n\t\t 0.3015644 0.88098067 0.30257234 0.87995988 0.30362943 0.87908173 0.35422534 0.87907946\n\t\t 0.35527045 0.87996072 0.35629117 0.88096857 0.3571693 0.88202572 0.35717157 0.9326216\n\t\t 0.35721943 0.93365985 0.35630712 0.9346987 0.35527039 0.93562305 0.35422534 0.93638259\n\t\t 0.30362943 0.93638462 0.3025912 0.93561572 0.30155236 0.93470341 0.30062801 0.93366665\n\t\t 0.30063534 0.88098752 0.30154765 0.87994862 0.30258438 0.87902427 0.30362943 0.87826478\n\t\t 0.35422534 0.8782627 0.35526353 0.8790316 0.35630241 0.87994391 0.35722673 0.88098067\n\t\t 0.35718587 0.93465585 0.35626292 0.93558317 0.35525456 0.93636775 0.35422534 0.93696517\n\t\t 0.30362943 0.9369663 0.30260018 0.93636364 0.30159524 0.93558216 0.30066785 0.9346593\n\t\t 0.30066887 0.87999147 0.30159178 0.87906414 0.30260018 0.87827957 0.30362943 0.87768215\n\t\t 0.35422534 0.87768102 0.35525459 0.8782838 0.35625952 0.87906516 0.35718691 0.87998813\n\t\t 0.35707194 0.93546784 0.35622421 0.93626624 0.35526353 0.9369123 0.30258438 0.93690789;\n\tsetAttr \".uvst[0].uvsp[3500:3749]\" 0.30163053 0.93626559 0.30078322 0.93546826\n\t\t 0.3007828 0.87917948 0.30163053 0.87838107 0.3025912 0.87773502 0.35527039 0.87773943\n\t\t 0.35622421 0.87838173 0.35707152 0.87917912 0.35699701 0.93607563 0.3562595 0.93676436\n\t\t 0.30159178 0.93676287 0.30085772 0.93607599 0.30085772 0.87857169 0.30159524 0.87788302\n\t\t 0.35626295 0.87788451 0.35699701 0.87857139 0.35707152 0.93649358 0.3007828 0.93649358\n\t\t 0.30078322 0.87815386 0.35707197 0.87815386 0.6067276 0.85740912 0.6067276 0.908005\n\t\t 0.55613178 0.908005 0.55613178 0.85740912 0.60772818 0.85740912 0.60772991 0.90902853\n\t\t 0.6067276 0.90900552 0.55613178 0.90900725 0.55513126 0.908005 0.55512959 0.85740912\n\t\t 0.55613178 0.85640854 0.60672766 0.85640681 0.60776103 0.85636479 0.60872203 0.85740912\n\t\t 0.60872537 0.91015315 0.6077655 0.90988451 0.6067276 0.90999937 0.55613178 0.91000271\n\t\t 0.55506879 0.90907866 0.55413741 0.908005 0.55413407 0.85740912 0.55508745 0.85637575\n\t\t 0.55613178 0.85541475 0.60672766 0.85541141 0.60777277 0.85534406 0.6087935 0.85635203\n\t\t 0.60967165 0.85740912 0.60967392 0.91142631 0.60876203 0.9108035 0.60778046 0.91069478\n\t\t 0.6067276 0.91094893 0.55613178 0.91095126 0.55501467 0.91011131 0.55404162 0.90912497\n\t\t 0.55318779 0.908005 0.55318552 0.85740912 0.55406672 0.85636401 0.55507469 0.85534322\n\t\t 0.55613178 0.85446513 0.60672766 0.85446286 0.60776585 0.854415 0.60880476 0.85532731\n\t\t 0.60972905 0.85636407 0.61048865 0.85740912 0.61049068 0.9128257 0.60967618 0.91179597\n\t\t 0.60876948 0.91140217 0.60778594 0.91142726 0.55498403 0.91106212 0.55394238 0.91019887\n\t\t 0.55308616 0.90915293 0.55237085 0.908005 0.55236876 0.85740912 0.55313772 0.85637087\n\t\t 0.55404997 0.85533202 0.55508673 0.85440773 0.60876185 0.85444856 0.60968924 0.85537148\n\t\t 0.61047381 0.85637987 0.61107123 0.85740912 0.61107236 0.91422439 0.60963118 0.91211259\n\t\t 0.6087541 0.91189754 0.55385733 0.91118062 0.55295962 0.91027987 0.55229133 0.90916234\n\t\t 0.55178821 0.908005 0.55178708 0.85740912 0.5523898 0.85637987 0.55317122 0.85537493\n\t\t 0.55409414 0.85444754 0.6095739 0.85456246 0.61037225 0.85541022 0.6110183 0.85637087\n\t\t 0.61041826 0.91281956 0.61030829 0.91282308 0.60954189 0.91236222 0.5527727 0.9113645\n\t\t 0.55215567 0.91031855 0.55174607 0.90915275 0.55184543 0.85636407 0.55248779 0.85541022\n\t\t 0.55328512 0.85456294 0.61018175 0.85463738 0.61087042 0.85537493 0.61013275 0.91282398\n\t\t 0.55187625 0.91147268 0.55161971 0.91027951 0.55199057 0.85537148 0.55267739 0.85463738\n\t\t 0.61059958 0.85456294 0.55131358 0.91136402 0.55225986 0.85456246 0.46901301 0.8301841\n\t\t 0.46901301 0.81768787 0.57984209 0.81768787 0.57984209 0.8301841 0.46801162 0.83019584\n\t\t 0.46801162 0.81769598 0.46901301 0.80412865 0.57984209 0.80412865 0.58084345 0.8176797\n\t\t 0.58084345 0.83017224 0.46901301 0.84113717 0.57984209 0.84113717 0.46801162 0.84115207\n\t\t 0.46701699 0.83026713 0.46701699 0.81774503 0.46801162 0.80413282 0.46901301 0.79002756\n\t\t 0.57984209 0.79002756 0.58084345 0.80412453 0.58183807 0.81763017 0.58183807 0.8301003\n\t\t 0.58084345 0.84112203 0.46901301 0.85025531 0.57984209 0.85013145 0.46801162 0.85027534\n\t\t 0.46701699 0.84124279 0.46606791 0.8304466 0.46606791 0.81786871 0.46701699 0.80415785\n\t\t 0.46801162 0.79002756 0.46901301 0.77592647 0.57984209 0.77592647 0.58084345 0.79002756\n\t\t 0.58183807 0.80409926 0.58278716 0.81750536 0.58278716 0.82991922 0.58183807 0.84103048\n\t\t 0.58084345 0.85011262 0.46701699 0.85039115 0.46606791 0.84147125 0.46606791 0.80422086\n\t\t 0.46701699 0.79002756 0.46801162 0.77592236 0.46901301 0.76236725 0.57984209 0.76236725\n\t\t 0.58084345 0.77593058 0.58183807 0.79002756 0.58278716 0.8040356 0.58278716 0.84079999\n\t\t 0.58183807 0.85000378 0.46606791 0.85068095 0.46606791 0.79002756 0.46701699 0.77589726\n\t\t 0.46801162 0.76235914 0.46901301 0.74987102 0.57984209 0.74987102 0.58084345 0.76237541\n\t\t 0.58183807 0.77595586 0.58278716 0.79002756 0.58278716 0.84973168 0.46606791 0.77583426\n\t\t 0.46701699 0.76231003 0.46801162 0.74985927 0.46901301 0.73891795 0.57984209 0.73891795\n\t\t 0.58084345 0.74988288 0.58183807 0.76242495 0.58278716 0.77601945 0.46606791 0.76218641\n\t\t 0.46701699 0.74978799 0.46801162 0.73890299 0.46901301 0.72992903 0.57984209 0.72992903\n\t\t 0.58084345 0.73893303 0.58183807 0.74995476 0.58278716 0.7625497 0.46606791 0.74960852\n\t\t 0.46701699 0.73881227 0.46801162 0.72991145 0.58084345 0.72994673 0.58183807 0.73902458\n\t\t 0.58278716 0.7501359 0.46606791 0.73858386 0.46701699 0.72980475 0.58183807 0.73005438\n\t\t 0.58278716 0.73925513 0.46606791 0.72953612 0.58278716 0.73032546 0.59275329 0.83019131\n\t\t 0.59275329 0.81769508 0.70358235 0.81769508 0.70358235 0.83019131 0.59175193 0.83020329\n\t\t 0.59175193 0.81770331 0.59275329 0.80413586 0.70358235 0.80413586 0.7045837 0.81768692\n\t\t 0.7045837 0.83017945 0.59275329 0.84114432 0.70358235 0.84114432 0.59175193 0.84115958\n\t\t 0.59075725 0.83027583 0.59075725 0.81775331 0.59175193 0.80414009 0.59275329 0.79003477\n\t\t 0.70358235 0.79003477 0.7045837 0.80413169 0.70557839 0.81763732 0.70557839 0.83010757\n\t\t 0.7045837 0.8411293 0.59275329 0.8501333 0.70358235 0.8501333 0.59175193 0.850151\n\t\t 0.59075725 0.84125197 0.58980817 0.8304587 0.58980817 0.8178792 0.59075725 0.8041656\n\t\t 0.59175193 0.79003477 0.59275329 0.77593368 0.70358235 0.77593368 0.7045837 0.79003477\n\t\t 0.70557839 0.80410641 0.70652747 0.81751263 0.70652747 0.82992643 0.70557839 0.84103769\n\t\t 0.7045837 0.85011554 0.59075725 0.85025865 0.58980817 0.84148461 0.58980817 0.8042298\n\t\t 0.59075725 0.79003477 0.59175193 0.77592945 0.59275329 0.76237452 0.70358235 0.76237452\n\t\t 0.7045837 0.77593786 0.70557839 0.79003477 0.70652747 0.80404288 0.70652747 0.8408072;\n\tsetAttr \".uvst[0].uvsp[3750:3999]\" 0.70557839 0.85000789 0.58980817 0.85052979\n\t\t 0.58980817 0.79003477 0.59075725 0.775904 0.59175193 0.76236629 0.59275329 0.74987829\n\t\t 0.70358235 0.74987829 0.7045837 0.76238263 0.70557839 0.77596313 0.70652747 0.79003477\n\t\t 0.70652747 0.84973687 0.58980817 0.77583987 0.59075725 0.76231623 0.59175193 0.74986631\n\t\t 0.59275329 0.73892522 0.70358235 0.73892522 0.7045837 0.74989015 0.70557839 0.76243222\n\t\t 0.70652747 0.77602673 0.58980817 0.76219034 0.59075725 0.74979371 0.59175193 0.73891002\n\t\t 0.59275329 0.7299363 0.70358235 0.7299363 0.7045837 0.7389403 0.70557839 0.74996209\n\t\t 0.70652747 0.76255697 0.58980817 0.7496109 0.59075725 0.73881757 0.59175193 0.72991842\n\t\t 0.7045837 0.729954 0.70557839 0.73903185 0.70652747 0.75014311 0.58980817 0.73858494\n\t\t 0.59075725 0.72980976 0.70557839 0.73006171 0.70652747 0.7392624 0.58980817 0.72953618\n\t\t 0.70652747 0.73033273 0.75369477 0.72096932 0.7395938 0.72096932 0.7395938 0.61014026\n\t\t 0.75369477 0.61014026 0.75369477 0.72197068 0.73958957 0.72197068 0.72603452 0.72096932\n\t\t 0.72603452 0.61014026 0.73959792 0.60913891 0.75369477 0.60913891 0.76779586 0.72096932\n\t\t 0.76779586 0.61014026 0.76780009 0.72197068 0.75369477 0.72296536 0.73956406 0.72296536\n\t\t 0.72602636 0.72197068 0.71378022 0.72096932 0.71354842 0.61014026 0.72604269 0.60913891\n\t\t 0.73962319 0.60814422 0.75369477 0.60814422 0.76779169 0.60913891 0.78135508 0.72096932\n\t\t 0.78135508 0.61014026 0.78136337 0.72197068 0.7678256 0.72296536 0.75369477 0.72391444\n\t\t 0.73949993 0.72391444 0.72597629 0.72296536 0.71377224 0.72197068 0.7135582 0.60913891\n\t\t 0.72609234 0.60814422 0.73968673 0.60719514 0.75369477 0.60719514 0.76776642 0.60814422\n\t\t 0.78134698 0.60913891 0.79385132 0.72096932 0.79385132 0.61014026 0.7938633 0.72197068\n\t\t 0.78141338 0.72296536 0.7678898 0.72391444 0.7258504 0.72391444 0.71371293 0.72296536\n\t\t 0.71362805 0.60814422 0.72621709 0.60719514 0.76770288 0.60719514 0.78129733 0.60814422\n\t\t 0.7938394 0.60913891 0.79393589 0.72296536 0.78153926 0.72391444 0.71356058 0.72391444\n\t\t 0.71380711 0.60719514 0.78117257 0.60719514 0.79376745 0.60814422 0.7941187 0.72391444\n\t\t 0.79358643 0.60719514 0.42658511 0.4772217 0.42658511 0.36157396 0.48199967 0.36157396\n\t\t 0.48199967 0.4772217 0.3663519 0.4772217 0.3663519 0.36157396 0.42658511 0.24110757\n\t\t 0.48199967 0.24110757 0.48300099 0.36157396 0.48300192 0.4772217 0.48199967 0.47822225\n\t\t 0.42658511 0.47822317 0.30611873 0.4772217 0.30611873 0.36157396 0.3663519 0.24110757\n\t\t 0.3663519 0.47822317 0.42176646 0.18569301 0.48199967 0.18569301 0.48300099 0.24110757\n\t\t 0.48399568 0.36157396 0.48399734 0.4772217 0.48304397 0.47825509 0.48199967 0.47921613\n\t\t 0.42658511 0.47921774 0.25070417 0.4772217 0.25070417 0.36157396 0.30611873 0.24110757\n\t\t 0.30611873 0.47822317 0.3663519 0.18087436 0.3663519 0.47921774 0.42278817 0.18469247\n\t\t 0.48199967 0.18469076 0.48300019 0.18569301 0.48399568 0.24110757 0.48494476 0.36157396\n\t\t 0.48494589 0.4772217 0.48406473 0.47826681 0.48305672 0.47928756 0.48199967 0.48016566\n\t\t 0.42658511 0.48016679 0.24970363 0.4772217 0.2497028 0.36157396 0.25070417 0.24110757\n\t\t 0.25070417 0.47822398 0.30611873 0.18087436 0.30611873 0.47921774 0.36153325 0.12545982\n\t\t 0.42176646 0.12545982 0.3663519 0.48016679 0.42391053 0.18369871 0.48199967 0.18369538\n\t\t 0.483033 0.18464871 0.42276868 0.18466949 0.42367712 0.1838136 0.48399407 0.18569301\n\t\t 0.48494476 0.24110757 0.48499376 0.47825992 0.48408145 0.47929883 0.48304471 0.48022309\n\t\t 0.24967083 0.478266 0.24870978 0.4772217 0.24870814 0.36157396 0.2497028 0.24110757\n\t\t 0.25070417 0.18087436 0.25070417 0.47921944 0.30611873 0.12064116 0.30611873 0.48016679\n\t\t 0.36255494 0.12445927 0.42176646 0.12445767 0.42276698 0.12545982 0.42518437 0.18274906\n\t\t 0.48199967 0.18274677 0.48304477 0.18362795 0.42459822 0.18300331 0.48406553 0.18463595\n\t\t 0.42376414 0.18354489 0.42447713 0.18289451 0.4849436 0.18569301 0.48496026 0.47925586\n\t\t 0.48403728 0.48018333 0.24965905 0.47928676 0.24863832 0.47827876 0.24776019 0.4772217\n\t\t 0.24775907 0.36157396 0.24870814 0.24110757 0.2497028 0.18087436 0.25070417 0.12064116\n\t\t 0.25070417 0.48016796 0.30130005 0.065226629 0.36153325 0.065226629 0.36367732 0.12346552\n\t\t 0.42176646 0.12346219 0.4227998 0.12441551 0.36253551 0.1244363 0.36344391 0.1235804\n\t\t 0.42376083 0.12545982 0.48303789 0.18269898 0.42557663 0.18227069 0.48407674 0.18361129\n\t\t 0.42517492 0.18229584 0.48500106 0.18464802 0.42471269 0.18227172 0.42519981 0.18190213\n\t\t 0.48484629 0.480068 0.24966595 0.48021585 0.2486271 0.47930354 0.24770275 0.47826681\n\t\t 0.24775907 0.24110757 0.24870814 0.18087436 0.2497028 0.12064116 0.25070417 0.060407974\n\t\t 0.30232176 0.064226083 0.36153325 0.064224422 0.36253381 0.065226629 0.36495116 0.12251587\n\t\t 0.42176646 0.12251357 0.42281157 0.12339475 0.36436501 0.12277012 0.4238323 0.12440275\n\t\t 0.36353096 0.12331168 0.36424392 0.12266131 0.42471042 0.12545982 0.48403382 0.18273252\n\t\t 0.4258782 0.18180045 0.42658919 0.1816642 0.42658305 0.18193212 0.48496124 0.1836554\n\t\t 0.42566168 0.18158539 0.42552945 0.18087229 0.4257912 0.18087851 0.24866997 0.48018232\n\t\t 0.24774258 0.47925931 0.24775907 0.18087436 0.24870814 0.12064116 0.2497028 0.060407974\n\t\t 0.25070417 0.0049934285 0.30130005 0.0049934285 0.30344415 0.063232265 0.36153325\n\t\t 0.063228995 0.36256659 0.064182319 0.3023023 0.064203113 0.30321074 0.063347153 0.36352763\n\t\t 0.065226629 0.42280468 0.12246578 0.36534342 0.12203749 0.42384353 0.12337809 0.36494172\n\t\t 0.12206265 0.42476788 0.12441482 0.36447951 0.12203852 0.36496663 0.12166893 0.48484585\n\t\t 0.18284638 0.42612326 0.18133587 0.42658567 0.18140031 0.42798245 0.18134953 0.42761281\n\t\t 0.18123201;\n\tsetAttr \".uvst[0].uvsp[4000:4249]\" 0.42605865 0.18087494 0.24785796 0.48006836\n\t\t 0.24775907 0.12064116 0.24870814 0.060407974 0.24970193 0.0049934285 0.25070417 0.0039928886\n\t\t 0.30130005 0.0039912229 0.30230057 0.0049934285 0.30471796 0.062282681 0.36153325\n\t\t 0.062280383 0.36257836 0.063161612 0.30413187 0.062536865 0.36359909 0.064169563\n\t\t 0.30329776 0.063078493 0.30401072 0.062428124 0.36447722 0.065226629 0.42380065 0.12249932\n\t\t 0.36564499 0.12156738 0.36635599 0.12143101 0.36634985 0.12169892 0.42472804 0.12342221\n\t\t 0.36542851 0.1213522 0.36529621 0.12063915 0.365558 0.1206453 0.42634723 0.18087414\n\t\t 0.42658478 0.18111263 0.24775907 0.060407974 0.24870647 0.0049934285 0.24965985 0.0039601461\n\t\t 0.25070417 0.0029990699 0.30130005 0.0029957956 0.30233338 0.0039491174 0.30329442\n\t\t 0.0049934285 0.36257148 0.062232591 0.30511025 0.061804354 0.36361033 0.06314484\n\t\t 0.30470854 0.061829399 0.36453465 0.064181626 0.30424631 0.06180533 0.30473343 0.061435685\n\t\t 0.42461267 0.1226133 0.36589009 0.12110266 0.3663525 0.121167 0.36774924 0.12111622\n\t\t 0.36737961 0.12099881 0.36582544 0.12064174 0.42658511 0.18087436 0.24775793 0.0049934285\n\t\t 0.24863912 0.0039483705 0.24964708 0.0029276109 0.25070417 0.002049482 0.30130005\n\t\t 0.0020471844 0.30234516 0.0029284151 0.30336592 0.0039363648 0.30424401 0.0049934285\n\t\t 0.36356741 0.062266078 0.30541182 0.06133407 0.30612278 0.061197814 0.30611667 0.061465669\n\t\t 0.36449483 0.063189015 0.30519533 0.061119001 0.30506307 0.060405966 0.30532479 0.060412053\n\t\t 0.36611405 0.12064088 0.3663516 0.12087944 0.24771008 0.0039552064 0.24862237 0.0029163521\n\t\t 0.24965911 0.0019920391 0.30233827 0.0019993919 0.30337715 0.0029116417 0.30430144\n\t\t 0.0039484277 0.36437947 0.062380046 0.30565688 0.06086947 0.30611929 0.060933866\n\t\t 0.30751604 0.060883086 0.3071464 0.060765557 0.30559224 0.060408551 0.3663519 0.12064116\n\t\t 0.24774359 0.0029592619 0.24866652 0.0020318471 0.30333424 0.0020328811 0.30426165\n\t\t 0.0029558153 0.30588084 0.060407687 0.3061184 0.060646191 0.24785753 0.0021472499\n\t\t 0.30414626 0.0021468478 0.30611873 0.060407974 0.69752926 0.54505247 0.74812514 0.54023385\n\t\t 0.74812514 0.60046703 0.69752926 0.60046703 0.75294381 0.42458603 0.69752926 0.42458603\n\t\t 0.74912572 0.54125553 0.74912745 0.60046703 0.74812514 0.60146761 0.69752926 0.60146928\n\t\t 0.69652873 0.60046703 0.6965279 0.54505247 0.81317699 0.42458603 0.81317699 0.54023385\n\t\t 0.6965279 0.42458606 0.75294381 0.30893832 0.69752926 0.30893832 0.75011957 0.54237795\n\t\t 0.75012285 0.60046703 0.74916947 0.60150033 0.74914867 0.5412361 0.75000471 0.54214454\n\t\t 0.74812514 0.6024614 0.69752926 0.60246468 0.69649595 0.60151136 0.69553483 0.60046703\n\t\t 0.69553322 0.54505247 0.87341022 0.42458603 0.87341022 0.54023385 0.81317699 0.54123521\n\t\t 0.81317699 0.30893832 0.69553322 0.42458606 0.696527 0.30893832 0.69752926 0.30793777\n\t\t 0.75294381 0.30793694 0.75106913 0.5436517 0.75107139 0.60046703 0.75019026 0.60151213\n\t\t 0.75081491 0.54306567 0.74918222 0.60253292 0.75027329 0.54223156 0.75092363 0.54294443\n\t\t 0.74812514 0.60341096 0.69752926 0.60341328 0.69648415 0.60253209 0.69546342 0.60152411\n\t\t 0.69458532 0.60046703 0.69458419 0.54505247 0.92882478 0.42458603 0.92882478 0.54023385\n\t\t 0.87341022 0.54123521 0.87341022 0.30893832 0.81317699 0.54222989 0.81317699 0.30793694\n\t\t 0.69458419 0.42458606 0.69553155 0.30893832 0.69648498 0.30790499 0.69752926 0.30694392\n\t\t 0.75294381 0.30694228 0.75111926 0.60150528 0.75154746 0.54404402 0.75020695 0.60254419\n\t\t 0.75152236 0.54364228 0.74917024 0.60346842 0.75154644 0.54318011 0.75191611 0.5436672\n\t\t 0.69649106 0.60346109 0.69545221 0.60254878 0.69452786 0.60151207 0.92982608 0.42458606\n\t\t 0.92982703 0.54023385 0.92882478 0.54123437 0.92882478 0.30893832 0.87341022 0.54222989\n\t\t 0.87341022 0.30793694 0.81317699 0.54317892 0.81317699 0.30694228 0.694583 0.30893832\n\t\t 0.69546419 0.30789322 0.69647223 0.30687246 0.69752926 0.30599436 0.75294381 0.3059932\n\t\t 0.75108576 0.60250121 0.75201774 0.54434562 0.75215399 0.54505652 0.75188613 0.54505044\n\t\t 0.75016278 0.60342854 0.75223279 0.54412901 0.7529459 0.54399681 0.75293976 0.54425859\n\t\t 0.69549513 0.60342759 0.69456768 0.60250467 0.92982531 0.30893832 0.93082076 0.42458606\n\t\t 0.93082243 0.54023385 0.92986906 0.5412671 0.92882478 0.54222822 0.92882478 0.3079361\n\t\t 0.87341022 0.54317892 0.87341022 0.30694228 0.81317699 0.3059932 0.6945352 0.3079001\n\t\t 0.6954475 0.30686125 0.69648421 0.3059369 0.75097179 0.60331321 0.75248235 0.54459065\n\t\t 0.75241792 0.54505306 0.75246876 0.54644984 0.75258625 0.54608017 0.75294322 0.54452604\n\t\t 0.69468307 0.60331368 0.92985809 0.30789402 0.93081915 0.30893832 0.93176985 0.42458606\n\t\t 0.93177098 0.54023385 0.93088984 0.54127896 0.92988181 0.54229975 0.92882478 0.54317778\n\t\t 0.92882478 0.30694064 0.87341022 0.3059932 0.69456863 0.30690414 0.69549167 0.30597675\n\t\t 0.75294417 0.54481465 0.75270563 0.54505217 0.92986989 0.30687326 0.93089062 0.30788124\n\t\t 0.93176872 0.30893832 0.93181884 0.54127204 0.93090653 0.54231089 0.92986983 0.54323524\n\t\t 0.92882478 0.30599207 0.6946826 0.30609208 0.75294381 0.54505247 0.92986298 0.30594423\n\t\t 0.93090183 0.30685654 0.93182617 0.30789328 0.93178535 0.54226804 0.93086237 0.54319543\n\t\t 0.93085891 0.30597776 0.93178636 0.30690068 0.93167138 0.54308003 0.93167096 0.3060917\n\t\t 0.24130955 0.88203782 0.29190546 0.88203782 0.29190546 0.93263376 0.24130955 0.93263376\n\t\t 0.24130955 0.88103729 0.29190546 0.88103557 0.29290599 0.88101608 0.29290769 0.93263376\n\t\t 0.29190546 0.93363422 0.24130955 0.93363595 0.24030901 0.93263376 0.24030733 0.88203782\n\t\t 0.24130955 0.88004351 0.29190546 0.88004017 0.2929326 0.88012719 0.24027175 0.88101071\n\t\t 0.29389983 0.87989378 0.29390314 0.93263376 0.29294977 0.93366706 0.29190546 0.93462807\n\t\t 0.24130955 0.93463141;\n\tsetAttr \".uvst[0].uvsp[4250:4499]\" 0.24024658 0.93370742 0.23931517 0.93263376\n\t\t 0.23931187 0.88203782 0.24130955 0.87909383 0.29190546 0.87909162 0.29295528 0.87932718\n\t\t 0.24025683 0.88001966 0.29392365 0.87920606 0.23927516 0.88098794 0.29484943 0.87861991\n\t\t 0.29485169 0.93263376 0.2939705 0.93367881 0.29296255 0.93469954 0.29190546 0.93557769\n\t\t 0.24130955 0.93557996 0.24019247 0.93474013 0.23921944 0.93375367 0.23836559 0.93263376\n\t\t 0.23836331 0.88203782 0.29296359 0.87860447 0.24025123 0.87910074 0.29394281 0.87862933\n\t\t 0.23926775 0.88000047 0.29484257 0.87822765 0.23836105 0.88097966 0.29489955 0.93367195\n\t\t 0.29398724 0.9347108 0.29295051 0.93563515 0.24016179 0.93569082 0.23912019 0.93482751\n\t\t 0.23826393 0.93378168 0.29393157 0.8781426 0.23928311 0.87913764 0.29480562 0.87792605\n\t\t 0.23840605 0.88001168 0.29486603 0.93466789 0.29394311 0.93559533 0.23903506 0.93580937\n\t\t 0.23813739 0.93490851 0.29471925 0.87768102 0.23849538 0.879224 0.29475209 0.93548\n\t\t 0.2379505 0.93599325 0.13278066 0.94307941 0.18337655 0.94307941 0.18337655 0.99367535\n\t\t 0.13278066 0.99367535 0.13278066 0.94207889 0.18337655 0.94207716 0.18437707 0.94307941\n\t\t 0.18437877 0.99367535 0.18337655 0.99467587 0.13278066 0.9946776 0.13178013 0.99367535\n\t\t 0.13177842 0.94307941 0.13278066 0.9410851 0.18337655 0.94108176 0.18443953 0.94200575\n\t\t 0.13174285 0.9420523 0.18537092 0.94307941 0.18537423 0.99367535 0.18442084 0.99470872\n\t\t 0.18337655 0.9956696 0.13278066 0.99567306 0.13171767 0.99474895 0.13078628 0.99367535\n\t\t 0.13078296 0.94307941 0.13278066 0.94013548 0.18337655 0.94013321 0.18449362 0.9409731\n\t\t 0.13172792 0.94106126 0.18546668 0.94195944 0.13074626 0.9420296 0.18632051 0.94307941\n\t\t 0.18632279 0.99367535 0.18544158 0.99472046 0.18443364 0.99574119 0.18337655 0.99661928\n\t\t 0.13278066 0.99662155 0.13166358 0.99578166 0.13069052 0.99479532 0.12983668 0.99367535\n\t\t 0.12983441 0.94307941 0.18452433 0.94002235 0.13172232 0.94014233 0.18556592 0.94088554\n\t\t 0.13073884 0.94104207 0.18642217 0.94193149 0.12983213 0.94202125 0.18637063 0.99471354\n\t\t 0.18545833 0.99575233 0.18442158 0.99667674 0.13163286 0.99673241 0.13059127 0.99586916\n\t\t 0.12973504 0.99482328 0.18565103 0.9399038 0.13075422 0.94017923 0.18654869 0.9408046\n\t\t 0.12987714 0.94105333 0.18633711 0.99570948 0.18541418 0.99663699 0.13050616 0.99685091\n\t\t 0.1296085 0.99595016 0.18673559 0.93971992 0.12996647 0.94026566 0.18622315 0.99652153\n\t\t 0.12942159 0.99703479 0.053002346 0.86034989 0.10359824 0.86034989 0.10359824 0.91094577\n\t\t 0.053002346 0.91094577 0.053002346 0.85934937 0.10359824 0.85934764 0.10459877 0.86034989\n\t\t 0.10460048 0.91094577 0.10359824 0.9119463 0.053002346 0.91194803 0.052001819 0.91094577\n\t\t 0.052000113 0.85932636 0.053002346 0.85835552 0.10359824 0.85835224 0.10466123 0.85927629\n\t\t 0.05196454 0.85847044 0.10559263 0.86034989 0.10559593 0.91094577 0.10464256 0.91197914\n\t\t 0.10359824 0.9129402 0.053002346 0.91294348 0.051969022 0.91199011 0.05100796 0.91094577\n\t\t 0.051004656 0.85820174 0.053002346 0.85740596 0.10359824 0.85740364 0.10471532 0.85824358\n\t\t 0.05194962 0.85766017 0.10568838 0.85922998 0.05096795 0.8575514 0.10654222 0.86034989\n\t\t 0.10654449 0.91094577 0.10566328 0.91199088 0.10465534 0.91301167 0.10359824 0.91388971\n\t\t 0.053002346 0.91389203 0.051957246 0.91301084 0.050936498 0.91200286 0.050058372\n\t\t 0.91094577 0.0500561 0.85692859 0.10474602 0.85729277 0.051944032 0.85692763 0.10578762\n\t\t 0.85815603 0.050960552 0.85695273 0.10664386 0.85920197 0.050053831 0.85655892 0.10659234\n\t\t 0.91198403 0.10568003 0.91302288 0.1046433 0.91394717 0.051964123 0.91393989 0.05092527\n\t\t 0.91302758 0.050000928 0.91199088 0.10587274 0.85717434 0.050975904 0.85645741 0.1067704\n\t\t 0.85807508 0.050098825 0.85624224 0.10655882 0.91297996 0.10563589 0.91390741 0.050968152\n\t\t 0.9139064 0.050040763 0.91298342 0.1069573 0.8569904 0.050188161 0.85599267 0.10644487\n\t\t 0.91379201 0.050156139 0.91379243 0.19647048 0.94307953 0.24706636 0.94307953 0.24706636\n\t\t 0.99367541 0.19647048 0.99367541 0.19647048 0.94207901 0.24706636 0.94207728 0.2480669\n\t\t 0.94307953 0.24806863 0.99367541 0.24706636 0.99467599 0.19647048 0.99467772 0.19546998\n\t\t 0.99367541 0.19546825 0.94307953 0.19647048 0.9410851 0.24706636 0.94108188 0.24812935\n\t\t 0.94200587 0.19543269 0.94205242 0.24906078 0.94307953 0.24906406 0.99367541 0.24811068\n\t\t 0.99470872 0.24706636 0.99566984 0.19647048 0.99567306 0.19540751 0.99474907 0.19447613\n\t\t 0.99367541 0.19447279 0.94307953 0.19647048 0.9401356 0.24706636 0.94013327 0.24818346\n\t\t 0.94097316 0.19541776 0.94106132 0.24915649 0.94195956 0.19443609 0.94202971 0.25001037\n\t\t 0.94307953 0.25001261 0.99367541 0.24913144 0.99472058 0.24812348 0.99574131 0.24706636\n\t\t 0.9966194 0.19647048 0.99662167 0.19535342 0.99578178 0.19438037 0.99479532 0.19352651\n\t\t 0.99367541 0.19352424 0.94307953 0.24821419 0.94002241 0.19541216 0.94014245 0.24925575\n\t\t 0.94088566 0.19442868 0.94104218 0.250112 0.94193161 0.19352198 0.94202137 0.25006047\n\t\t 0.99471366 0.24914816 0.99575257 0.24811143 0.9966768 0.19532272 0.99673253 0.19428112\n\t\t 0.99586928 0.19342487 0.9948234 0.24934088 0.93990391 0.19444405 0.94017935 0.25023854\n\t\t 0.94080472 0.19356698 0.94105339 0.25002697 0.9957096 0.24910404 0.99663699 0.19419602\n\t\t 0.99685109 0.19329835 0.99595028 0.25042546 0.93971997 0.19365631 0.94026577 0.24991301\n\t\t 0.99652159 0.19311143 0.99703491 0.0048613506 0.92203116 0.055457246 0.92203116 0.055457246\n\t\t 0.97262698 0.0048613506 0.97262698 0.0048613506 0.92103064 0.055457246 0.92102891\n\t\t 0.056457769 0.92203116 0.056459479 0.97262698 0.055457246 0.97362763 0.0048613506\n\t\t 0.97362924 0.0038608252 0.97262698 0.0038591165 0.92100763 0.0048613506 0.92003673\n\t\t 0.055457246 0.92003345 0.056520224 0.92095751;\n\tsetAttr \".uvst[0].uvsp[4500:4749]\" 0.0038235448 0.92015165 0.057451632 0.92203116\n\t\t 0.057454936 0.97262698 0.056501556 0.97366029 0.055457246 0.97462142 0.0048613506\n\t\t 0.97462475 0.0038280254 0.97367132 0.0028669634 0.97262698 0.0028636605 0.91988301\n\t\t 0.0048613506 0.91908723 0.055457231 0.91908491 0.056574307 0.9199248 0.0038086241\n\t\t 0.91934133 0.057547361 0.92091119 0.0028269545 0.91923267 0.05840122 0.92203116 0.058403488\n\t\t 0.97262698 0.057522286 0.97367221 0.056514338 0.97469288 0.055457246 0.97557104 0.0048613506\n\t\t 0.97557336 0.0038162498 0.97469217 0.0027955044 0.97368419 0.0019173756 0.97262698\n\t\t 0.0019151065 0.91860986 0.056605011 0.91897404 0.0038030378 0.91860884 0.057646621\n\t\t 0.9198373 0.0028195586 0.91863394 0.058502864 0.92088324 0.0019128376 0.91824025\n\t\t 0.05845134 0.97366536 0.057539031 0.97470415 0.056502301 0.9756285 0.0038231285 0.97562116\n\t\t 0.0027842745 0.97470886 0.0018599327 0.97367209 0.057731722 0.91885555 0.0028349103\n\t\t 0.91813862 0.058629397 0.91975629 0.0019578298 0.91792351 0.058417819 0.97466117\n\t\t 0.057494886 0.97558862 0.0028271556 0.97558761 0.0018997694 0.97466463 0.058816288\n\t\t 0.91867167 0.0020471676 0.91767395 0.05830387 0.97547317 0.0020151434 0.97547364\n\t\t 0.17826663 0.93263412 0.17826663 0.88203824 0.22886252 0.88203824 0.22886252 0.93263412\n\t\t 0.17726609 0.93263412 0.17726439 0.8810147 0.17826663 0.88103771 0.22886252 0.88103598\n\t\t 0.22986306 0.88203824 0.22986476 0.93263412 0.22886252 0.9336347 0.17826663 0.93363643\n\t\t 0.17627227 0.93263412 0.17626894 0.87989008 0.17722884 0.88015878 0.17723949 0.93367189\n\t\t 0.17826663 0.8800438 0.22886252 0.88004053 0.22989586 0.8809939 0.23085688 0.88203824\n\t\t 0.23086022 0.93263412 0.2299362 0.9336971 0.22886252 0.93462849 0.17826663 0.93463182\n\t\t 0.17532268 0.93263412 0.17532039 0.87861693 0.17623223 0.87923974 0.17624843 0.93368685\n\t\t 0.17721391 0.87934846 0.17721678 0.93466854 0.17826663 0.8790943 0.22886252 0.87909198\n\t\t 0.22990765 0.87997317 0.23092838 0.88098115 0.23180647 0.88203824 0.23180877 0.93263412\n\t\t 0.23096886 0.93375117 0.2299825 0.93472427 0.22886252 0.93557811 0.17826663 0.93558037\n\t\t 0.17531815 0.87824732 0.17532952 0.93369246 0.17622483 0.87864107 0.17622925 0.93467593\n\t\t 0.1772083 0.87861598 0.17720848 0.9355827 0.22990075 0.87904418 0.2309396 0.87995642\n\t\t 0.23186392 0.88099319 0.23191963 0.93378192 0.23105638 0.93482351 0.23001046 0.93567973\n\t\t 0.17536312 0.87793064 0.17536646 0.93466061 0.17624019 0.87814569 0.1762405 0.93553764\n\t\t 0.2308967 0.87907761 0.23182411 0.88000065 0.23203814 0.93490863 0.23113735 0.93580627\n\t\t 0.17545244 0.87768108 0.17545284 0.93544835 0.23170874 0.87919158 0.23222205 0.93599313\n\t\t 0.11563425 0.91094577 0.11563425 0.86034989 0.16623014 0.86034989 0.16623014 0.91094577\n\t\t 0.11463373 0.91094577 0.11463201 0.85932636 0.11563425 0.85934937 0.16623014 0.85934764\n\t\t 0.16723068 0.86034989 0.16723241 0.91094577 0.16623014 0.9119463 0.11563425 0.91194803\n\t\t 0.11363989 0.91094577 0.11363655 0.85820174 0.11459649 0.85847044 0.11460714 0.91198361\n\t\t 0.11563425 0.85835552 0.16623014 0.85835218 0.16726348 0.85930556 0.16822453 0.86034989\n\t\t 0.16822784 0.91094577 0.1673038 0.91200876 0.16623014 0.91294014 0.11563425 0.91294348\n\t\t 0.1126903 0.91094577 0.112688 0.85692859 0.11359988 0.8575514 0.11361608 0.91199845\n\t\t 0.11458152 0.85766011 0.11458442 0.9129802 0.11563425 0.85740596 0.16623014 0.85740364\n\t\t 0.16727525 0.85828483 0.16829601 0.85929281 0.16917412 0.86034989 0.16917638 0.91094577\n\t\t 0.16833651 0.91206288 0.1673501 0.91303587 0.16623014 0.91388971 0.11563425 0.91389203\n\t\t 0.11268576 0.85655892 0.11269716 0.91200411 0.11359247 0.85695273 0.11359689 0.91298759\n\t\t 0.11457594 0.85692763 0.11457609 0.9138943 0.16726837 0.85735577 0.16830721 0.85826808\n\t\t 0.16923156 0.85930485 0.16928725 0.91209352 0.168424 0.91313517 0.16737808 0.91399139\n\t\t 0.11273074 0.85624224 0.11273407 0.91297227 0.11360783 0.85645735 0.11360812 0.91384929\n\t\t 0.16826433 0.85738933 0.16919172 0.85831225 0.16940576 0.91322029 0.16850497 0.91411793\n\t\t 0.11282009 0.85599273 0.11282047 0.91375995 0.16907638 0.85750324 0.16958968 0.91430479\n\t\t 0.26016036 0.94405258 0.31075624 0.94405258 0.31075624 0.99464852 0.26016036 0.99464852\n\t\t 0.26016036 0.94305205 0.31075624 0.94305032 0.31175679 0.94405258 0.31175849 0.99464852\n\t\t 0.31075624 0.99564892 0.26016036 0.99565077 0.2591598 0.99464852 0.2591581 0.94405258\n\t\t 0.26016036 0.94205815 0.31075624 0.94205487 0.31181923 0.94297892 0.25912252 0.94302541\n\t\t 0.31275061 0.94405258 0.31275395 0.99464852 0.31180057 0.99568182 0.31075624 0.99664295\n\t\t 0.26016036 0.99664617 0.25909737 0.99572212 0.25816599 0.99464852 0.25816265 0.94405258\n\t\t 0.26016036 0.94110858 0.31075624 0.94110632 0.31187335 0.94194621 0.25910762 0.94203436\n\t\t 0.31284636 0.94293261 0.25812596 0.94300276 0.3137002 0.94405258 0.31370249 0.99464852\n\t\t 0.3128213 0.9956935 0.31181332 0.99671429 0.31075624 0.99759233 0.26016036 0.99759465\n\t\t 0.25904325 0.99675483 0.25807023 0.99576843 0.25721636 0.99464852 0.2572141 0.94405258\n\t\t 0.31190401 0.94099545 0.25910202 0.94111544 0.31294563 0.94185871 0.25811854 0.94201517\n\t\t 0.31380185 0.94290465 0.25721183 0.94299442 0.31375033 0.99568665 0.31283805 0.99672556\n\t\t 0.31180131 0.99764979 0.25901258 0.99770564 0.25797099 0.99684238 0.25711474 0.99579644\n\t\t 0.31303075 0.94087696 0.25813392 0.94115239 0.31392843 0.94177771 0.25725684 0.94202644\n\t\t 0.3137168 0.9966827 0.31279385 0.99761003 0.25788584 0.99782407 0.2569882 0.99692327\n\t\t 0.31411529 0.94069308 0.25734618 0.94123876 0.31360286 0.9974947 0.25680131 0.99800801\n\t\t 0.068733163 0.92238879 0.11932906 0.92238879 0.11932906 0.97298473 0.068733163 0.97298473\n\t\t 0.068733163 0.92138827 0.11932906 0.92138654 0.12032958 0.92238879 0.12033129 0.97298473\n\t\t 0.11932906 0.9739852;\n\tsetAttr \".uvst[0].uvsp[4750:4860]\" 0.068733163 0.97398704 0.067732632 0.97298473\n\t\t 0.067730926 0.92136526 0.068733163 0.92039436 0.11932906 0.92039108 0.12039204 0.92131513\n\t\t 0.067695357 0.92050928 0.12132344 0.92238879 0.12132674 0.97298473 0.12037337 0.97401804\n\t\t 0.11932906 0.97497904 0.068733163 0.97498238 0.067699835 0.97402906 0.066738777 0.97298473\n\t\t 0.066735469 0.92024064 0.068733163 0.9194448 0.11932904 0.91944253 0.12044612 0.92028242\n\t\t 0.067680433 0.91969895 0.12141917 0.92126882 0.066698767 0.91959029 0.12227303 0.92238879\n\t\t 0.1222753 0.97298473 0.1213941 0.97402978 0.12038615 0.97505051 0.11932906 0.9759286\n\t\t 0.068733163 0.97593087 0.067688063 0.97504973 0.066667318 0.9740417 0.065789185 0.97298473\n\t\t 0.06578692 0.91896749 0.12047682 0.91933167 0.067674845 0.91896647 0.12151843 0.92019492\n\t\t 0.066691369 0.91899157 0.12237468 0.92124087 0.065784648 0.91859782 0.12232315 0.97402287\n\t\t 0.12141084 0.97506177 0.12037411 0.975986 0.06769494 0.97597867 0.066656083 0.97506648\n\t\t 0.065731741 0.97402978 0.12160353 0.91921318 0.066706717 0.91849625 0.12250121 0.92011392\n\t\t 0.065829642 0.9182812 0.12228964 0.97501892 0.12136669 0.97594631 0.066698968 0.97594535\n\t\t 0.06577158 0.97502238 0.1226881 0.9190293 0.065918975 0.91803157 0.12217568 0.97583091\n\t\t 0.065886952 0.97583127 0.88147253 0.72096938 0.86897629 0.72096938 0.86897629 0.61014032\n\t\t 0.88147253 0.61014032 0.88148427 0.72197074 0.8689844 0.72197074 0.85541707 0.72096938\n\t\t 0.85541707 0.61014032 0.86896813 0.60913897 0.88146073 0.60913897 0.88155556 0.72296542\n\t\t 0.86903346 0.72296542 0.85542125 0.72197074 0.84131598 0.72096938 0.84131604 0.61014032\n\t\t 0.85541296 0.60913897 0.8689186 0.60814428 0.88138872 0.60814428 0.88173503 0.7239145\n\t\t 0.86915714 0.7239145 0.85544622 0.72296542 0.84131598 0.72197074 0.8272149 0.72096938\n\t\t 0.8272149 0.61014032 0.84131604 0.60913897 0.85538769 0.60814428 0.86879379 0.6071952\n\t\t 0.88120764 0.6071952 0.85550928 0.7239145 0.84131598 0.72296542 0.82721078 0.72197074\n\t\t 0.81365567 0.72096938 0.81365567 0.61014032 0.82721901 0.60913897 0.84131604 0.60814428\n\t\t 0.85532409 0.6071952 0.84131598 0.7239145 0.82718569 0.72296542 0.81364757 0.72197074\n\t\t 0.80115944 0.72096938 0.80115944 0.61014032 0.81366384 0.60913897 0.82724428 0.60814428\n\t\t 0.84131604 0.6071952 0.82712269 0.7239145 0.81359845 0.72296542 0.80114758 0.72197074\n\t\t 0.8011713 0.60913897 0.81371343 0.60814428 0.82730788 0.6071952 0.81347483 0.7239145\n\t\t 0.80107564 0.72296542 0.80124319 0.60814428 0.81383818 0.6071952 0.8008945 0.7239145\n\t\t 0.80142432 0.6071952;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr -s 4039 \".vt\";\n\tsetAttr \".vt[0:165]\"  -0.5 0.99999982 -1.000000238419 0 0.99999982 -1.000000238419\n\t\t 0.5 0.99999982 -1.000000238419 -1 1.000000119209 0.49999982 -1 1 -1.1920929e-07 -1 0.99999988 -0.50000012\n\t\t 0.5 1.000000119209 0.49999982 -0.5 1.99999976 -1.000000238419 -1 1.99999988 -0.50000024\n\t\t -0.5 -1.000000119209 -0.49999982 -0.5 -1 1.1920929e-07 -0.5 -0.99999988 0.50000012\n\t\t 0 -1.000000119209 -0.49999982 0 -1 1.1920929e-07 0 -0.99999988 0.50000012 0.5 -1.000000119209 -0.49999982\n\t\t 0.5 -1 1.1920929e-07 0.5 -0.99999988 0.50000012 -1 1.5 -0.50000024 -0.5 1.49999988 -1.000000238419\n\t\t 0 1.49999988 -1.000000238419 -1 1.5 -2.3841858e-07 1 -1.7881393e-07 -0.6798023 1 0.13262171 -0.6667403\n\t\t 1 -0.13262302 -0.66674006 1 -0.26014924 -0.62805533 1 -0.37767822 -0.56523472 1 -0.48069292 -0.48069271\n\t\t 1 -0.56523514 -0.3776778 1 -0.66674018 -0.13262278 1 -0.62805551 -0.26014897 1 -0.66674018 0.1326229\n\t\t 1 -0.62805545 0.26014906 1 -0.56523502 0.37767798 1 -0.48069277 0.48069286 1 -0.26014897 0.62805551\n\t\t 1 -0.37767753 0.56523532 1 0.1326232 0.66674 1 -0.1326226 0.66674018 1 2.9802322e-07 0.6798023\n\t\t 1 0.26014802 -0.62805587 1 0.26014942 0.62805521 1 0.36868608 -0.57004118 1 0.480692 -0.48069352\n\t\t 1 0.37767756 0.56523532 1 0.56523436 -0.37767869 1 0.48069316 0.48069242 1 0.56523526 0.37767744\n\t\t 1 0.6280551 -0.2601499 1 0.62805575 0.2601485 1 0.66673982 -0.13262367 1 0.66674012 0.13262212\n\t\t 1 0.67980224 -7.7486038e-07 1 -0.67980236 5.9604645e-08 0.5 1.1920929e-07 1 0 1.1920929e-07 1\n\t\t -0.5 1.1920929e-07 1 -0.5 -1.1920929e-07 -1 0 -1.1920929e-07 -1 0.5 -1.1920929e-07 -1\n\t\t -1 5.9604645e-08 0.5 -1 0 0 -1 -5.9604645e-08 -0.5 1.96000004 0 -0.60000002 2 0 -0.55980647\n\t\t 1.9683125 0 -0.59982288 1.97656918 0 -0.59874827 1.98444748 0 -0.59604198 1.99122834 0 -0.59118599\n\t\t 1.99606109 0 -0.58437228 1.99875426 0 -0.57645595 1.99982381 0 -0.56815922 2 -0.10921276 -0.54904997\n\t\t 1.96000004 -0.11705422 -0.58847111 1.99982381 -0.11084229 -0.55724227 1.99875426 -0.11246091 -0.5653795\n\t\t 1.99606109 -0.11400539 -0.57314372 1.99122834 -0.11533463 -0.57982647 1.98444748 -0.11628205 -0.58458924\n\t\t 1.97656918 -0.11681002 -0.58724344 1.9683125 -0.11701965 -0.58829749 2 -0.21422881 -0.51719368\n\t\t 1.96000004 -0.22961009 -0.55432767 1.99982381 -0.21742529 -0.52491057 1.99875426 -0.22060025 -0.53257573\n\t\t 1.99606109 -0.22362965 -0.53988957 1.99122834 -0.22623712 -0.54618448 1.98444748 -0.22809547 -0.55067098\n\t\t 1.97656918 -0.2291311 -0.55317128 1.9683125 -0.22954232 -0.55416399 2 -0.31101185 -0.46546197\n\t\t 1.96000004 -0.33334216 -0.49888173 1.99982381 -0.31565237 -0.47240704 1.99875426 -0.32026172 -0.47930545\n\t\t 1.99606109 -0.32465988 -0.48588771 1.99122834 -0.32844532 -0.49155307 1.98444748 -0.3311432 -0.49559075\n\t\t 1.97656918 -0.3326467 -0.49784091 1.9683125 -0.33324373 -0.49873447 2 -0.39584294 -0.39584288\n\t\t 1.96000004 -0.42426407 -0.42426401 1.99982381 -0.40174919 -0.40174913 1.99875426 -0.40761584 -0.40761578\n\t\t 1.99606109 -0.41321358 -0.41321352 1.99122834 -0.41803154 -0.41803148 1.98444748 -0.42146528 -0.42146522\n\t\t 1.97656918 -0.42337891 -0.42337885 1.9683125 -0.42413881 -0.42413875 2 -0.46546203 -0.31101179\n\t\t 1.96000004 -0.49888176 -0.33334208 1.99982381 -0.4724071 -0.31565231 1.99875426 -0.47930551 -0.32026166\n\t\t 1.99606109 -0.48588774 -0.32465976 1.99122834 -0.4915531 -0.3284452 1.98444748 -0.49559078 -0.33114308\n\t\t 1.97656918 -0.49784097 -0.33264661 1.9683125 -0.49873453 -0.33324367 2 -0.51719368 -0.21422872\n\t\t 1.96000004 -0.55432767 -0.22960997 1.99982381 -0.52491057 -0.21742517 1.99875426 -0.53257573 -0.22060013\n\t\t 1.99606109 -0.53988957 -0.22362956 1.99122834 -0.54618454 -0.226237 1.98444748 -0.55067098 -0.22809532\n\t\t 1.97656918 -0.55317128 -0.22913095 1.9683125 -0.55416411 -0.22954223 2 -0.54904997 -0.10921264\n\t\t 1.96000004 -0.58847111 -0.11705413 1.99982381 -0.55724221 -0.1108422 1.99875426 -0.56537938 -0.11246082\n\t\t 1.99606109 -0.57314372 -0.11400527 1.99122834 -0.57982641 -0.11533454 1.98444748 -0.58458912 -0.11628193\n\t\t 1.97656918 -0.58724344 -0.1168099 1.9683125 -0.58829749 -0.11701956 2 -0.55980641 5.9604645e-08\n\t\t 1.96000004 -0.59999996 5.9604645e-08 1.99982381 -0.5681591 5.9604645e-08 1.99875426 -0.57645583 5.9604645e-08\n\t\t 1.99606109 -0.58437228 5.9604645e-08 1.99122834 -0.59118593 5.9604645e-08 1.98444748 -0.59604192 5.9604645e-08\n\t\t 1.97656918 -0.59874821 5.9604645e-08 1.9683125 -0.59982288 5.9604645e-08 2 -0.54904985 0.10921276\n\t\t 1.96000004 -0.58847111 0.11705422 1.99982381 -0.55724216 0.11084229 1.99875426 -0.56537938 0.11246091\n\t\t 1.99606109 -0.57314372 0.11400539 1.99122834 -0.57982635 0.11533463 1.98444748 -0.58458912 0.11628205\n\t\t 1.97656918 -0.58724338 0.11681002 1.9683125 -0.58829743 0.11701965 2 -0.51719356 0.21422887\n\t\t 1.96000004 -0.55432761 0.22961009 1.99982381 -0.52491057 0.21742529 1.99875426 -0.53257567 0.22060025\n\t\t 1.99606109 -0.53988945 0.22362965 1.99122834 -0.54618454 0.22623712 1.98444748 -0.55067086 0.22809541\n\t\t 1.97656918 -0.5531711 0.22913104 1.9683125 -0.55416399 0.22954232 2 -0.46546191 0.31101197\n\t\t 1.96000004 -0.49888167 0.33334222 1.99982381 -0.47240698 0.31565246 1.99875426 -0.47930539 0.32026184;\n\tsetAttr \".vt[166:331]\" 1.99606109 -0.48588765 0.32465994 1.99122834 -0.49155298 0.3284454\n\t\t 1.98444748 -0.49559063 0.3311432 1.97656918 -0.49784082 0.33264673 1.9683125 -0.49873435 0.33324379\n\t\t 2 -0.39584282 0.395843 1.96000004 -0.42426395 0.42426413 1.99982381 -0.40174907 0.40174925\n\t\t 1.99875426 -0.40761572 0.4076159 1.99606109 -0.41321346 0.41321364 1.99122834 -0.41803142 0.4180316\n\t\t 1.98444748 -0.42146516 0.42146534 1.97656918 -0.4233788 0.42337897 1.9683125 -0.4241387 0.42413887\n\t\t 2 -0.31101167 0.46546212 1.96000004 -0.33334196 0.49888185 1.99982381 -0.31565225 0.47240722\n\t\t 1.99875426 -0.3202616 0.47930562 1.99606109 -0.32465971 0.48588791 1.99122834 -0.32844514 0.49155322\n\t\t 1.98444748 -0.33114302 0.4955909 1.97656918 -0.33264655 0.49784106 1.9683125 -0.33324361 0.49873465\n\t\t 2 -0.21422857 0.51719379 1.96000004 -0.22960982 0.55432785 1.99982381 -0.21742499 0.52491069\n\t\t 1.99875426 -0.22059995 0.53257585 1.99606109 -0.22362942 0.53988969 1.99122834 -0.22623685 0.54618466\n\t\t 1.98444748 -0.22809514 0.5506711 1.97656918 -0.22913077 0.55317134 1.9683125 -0.22954205 0.55416423\n\t\t 2 -0.10921243 0.54905003 1.96000004 -0.1170539 0.58847123 1.99982381 -0.11084199 0.55724227\n\t\t 1.99875426 -0.11246061 0.5653795 1.99606109 -0.11400503 0.57314384 1.99122834 -0.11533433 0.57982647\n\t\t 1.98444748 -0.11628172 0.58458924 1.97656918 -0.1168097 0.58724356 1.9683125 -0.11701936 0.58829761\n\t\t 2 2.9802322e-07 0.55980647 1.96000004 3.5762787e-07 0.60000002 1.99982381 3.5762787e-07 0.56815922\n\t\t 1.99875426 3.5762787e-07 0.57645595 1.99606109 3.5762787e-07 0.58437228 1.99122834 3.5762787e-07 0.59118599\n\t\t 1.98444748 3.5762787e-07 0.59604198 1.97656918 3.5762787e-07 0.59874827 1.9683125 3.5762787e-07 0.59982288\n\t\t 2 0.10921311 0.54904991 1.96000004 0.11705458 0.58847111 1.99982381 0.11084265 0.55724216\n\t\t 1.99875426 0.11246127 0.56537938 1.99606109 0.11400574 0.57314372 1.99122834 0.11533505 0.57982635\n\t\t 1.98444748 0.1162824 0.58458912 1.97656918 0.11681038 0.58724332 1.9683125 0.11702007 0.58829737\n\t\t 2 0.21422923 0.5171935 1.96000004 0.2296105 0.55432755 1.99982381 0.21742564 0.52491045\n\t\t 1.99875426 0.22060061 0.53257561 1.99606109 0.22363007 0.53988945 1.99122834 0.22623754 0.54618436\n\t\t 1.98444748 0.22809583 0.55067086 1.97656918 0.22913146 0.55317104 1.9683125 0.22954273 0.55416387\n\t\t 2 0.31101221 0.46546185 1.96000004 0.33334258 0.49888155 1.99982381 0.31565282 0.47240698\n\t\t 1.99875426 0.32026219 0.47930539 1.99606109 0.32466033 0.48588762 1.99122834 0.32844579 0.49155295\n\t\t 1.98444748 0.33114365 0.4955906 1.97656918 0.33264714 0.49784076 1.9683125 0.33324423 0.49873433\n\t\t 2 0.39584339 0.39584261 1.96000004 0.42426449 0.42426378 1.99982381 0.4017497 0.40174893\n\t\t 1.99875426 0.40761632 0.40761554 1.99606109 0.41321409 0.41321331 1.99122834 0.41803199 0.41803128\n\t\t 1.98444748 0.42146575 0.42146504 1.97656918 0.42337936 0.42337865 1.9683125 0.42413926 0.42413855\n\t\t 2 0.46546242 0.31101137 1.96000004 0.49888214 0.33334172 1.99982381 0.47240752 0.31565195\n\t\t 1.99875426 0.47930589 0.3202613 1.99606109 0.48588818 0.32465947 1.99122834 0.49155354 0.3284449\n\t\t 1.98444748 0.49559116 0.33114278 1.97656918 0.49784136 0.33264631 1.9683125 0.49873489 0.33324337\n\t\t 2 0.51719397 0.2142283 1.96000004 0.55432808 0.22960952 1.99982381 0.52491099 0.21742472\n\t\t 1.99875426 0.53257608 0.22059968 1.99606109 0.53988987 0.22362915 1.99122834 0.54618496 0.22623658\n\t\t 1.98444748 0.55067134 0.22809488 1.97656918 0.55317152 0.22913051 1.9683125 0.55416447 0.22954175\n\t\t 2 0.54905015 0.10921219 1.96000004 0.58847135 0.1170536 1.99982381 0.55724245 0.11084175\n\t\t 1.99875426 0.56537962 0.11246035 1.99606109 0.57314396 0.11400476 1.99122834 0.57982659 0.11533403\n\t\t 1.98444748 0.58458936 0.11628142 1.97656918 0.58724368 0.11680937 1.9683125 0.58829772 0.11701903\n\t\t 2 0.55980653 -5.9604645e-07 1.96000004 0.60000008 -6.5565109e-07 1.99982381 0.56815922 -5.9604645e-07\n\t\t 1.99875426 0.57645595 -5.9604645e-07 1.99606109 0.5843724 -6.5565109e-07 1.99122834 0.59118605 -6.5565109e-07\n\t\t 1.98444748 0.59604204 -6.5565109e-07 1.97656918 0.59874833 -6.5565109e-07 1.9683125 0.599823 -6.5565109e-07\n\t\t 2 0.54904991 -0.10921335 1.96000004 0.58847111 -0.11705488 1.99982381 0.55724216 -0.11084294\n\t\t 1.99875426 0.56537938 -0.11246157 1.99606109 0.57314372 -0.11400604 1.99122834 0.57982635 -0.11533535\n\t\t 1.98444748 0.58458912 -0.1162827 1.97656918 0.58724338 -0.11681068 1.9683125 0.58829743 -0.11702037\n\t\t 2 0.51719344 -0.2142294 1.96000004 0.55432749 -0.2296108 1.99982381 0.52491045 -0.21742588\n\t\t 1.99875426 0.53257555 -0.22060084 1.99606109 0.53988945 -0.22363031 1.99122834 0.54618436 -0.22623777\n\t\t 1.98444748 0.55067074 -0.22809613 1.97656918 0.55317104 -0.22913176 1.9683125 0.55416393 -0.22954303\n\t\t 2 0.46546179 -0.31101242 1.96000004 0.4988814 -0.33334285 1.99982381 0.4724068 -0.31565297\n\t\t 1.99875426 0.47930521 -0.32026237 1.99606109 0.48588747 -0.32466048 1.99122834 0.49155277 -0.32844597\n\t\t 1.98444748 0.49559042 -0.33114389 1.97656918 0.49784061 -0.33264741 1.9683125 0.49873418 -0.33324444\n\t\t 2 0.39584243 -0.39584357 1.96000004 0.42426357 -0.4242647 1.99982381 0.40174872 -0.40174985\n\t\t 1.99875426 0.40761536 -0.40761644 1.99606109 0.4132131 -0.41321424 1.99122834 0.41803107 -0.4180322\n\t\t 1.98444748 0.4214648 -0.42146593 1.97656918 0.42337844 -0.42337957 1.9683125 0.42413837 -0.42413944\n\t\t 2 0.3110112 -0.46546254 1.96000004 0.33325779 -0.49892697 1.99982381 0.31565136 -0.47240779\n\t\t 1.99875426 0.3202585 -0.47930744 1.99606109 0.324651 -0.48589271 1.99122834 0.3284263 -0.49156347\n\t\t 1.98444748 0.33111 -0.49560869 1.97656918 0.33259702 -0.49786767;\n\tsetAttr \".vt[332:497]\" 1.9683125 0.33317685 -0.49877048 2 0.2142278 -0.51719415\n\t\t 1.96000004 0.22960922 -0.55432814 1.99982381 0.2174243 -0.52491105 1.99875426 0.22059929 -0.5325762\n\t\t 1.99606109 0.22362879 -0.53989011 1.99122834 0.22623625 -0.54618508 1.98444748 0.22809458 -0.55067146\n\t\t 1.97656918 0.22913024 -0.55317169 1.9683125 0.22954148 -0.55416453 2 0.10921192 -0.54905015\n\t\t 1.96000004 0.11705327 -0.58847141 1.99982381 0.11084145 -0.55724239 1.99875426 0.11246005 -0.56537968\n\t\t 1.99606109 0.11400446 -0.57314396 1.99122834 0.11533374 -0.57982659 1.98444748 0.11628109 -0.58458936\n\t\t 1.97656918 0.11680907 -0.58724368 1.9683125 0.11701873 -0.58829767 -1 -0.9599998 0.9600001\n\t\t -0.95999998 -0.99999982 0.96000016 -0.95999998 -0.9599998 1.000000238419 -0.99982339 -0.96831948 0.96000016\n\t\t -0.99875134 -0.97658288 0.96000022 -0.99605638 -0.98445684 0.96000016 -0.99121994 -0.99123675 0.96000016\n\t\t -0.99982423 -0.95999986 0.96830559 -0.9996075 -0.9686687 0.96857792 -0.99841416 -0.97714198 0.96867567\n\t\t -0.99561709 -0.98485398 0.96861845 -0.99109721 -0.99106216 0.96854407 -0.9987573 -0.95999986 0.97655571\n\t\t -0.99840569 -0.96877486 0.97714901 -0.99709785 -0.97728091 0.97724223 -0.99438912 -0.98457575 0.97688609\n\t\t -0.99025434 -0.9902491 0.97659326 -0.9960658 -0.95999986 0.9844383 -0.99558073 -0.9686749 0.98491508\n\t\t -0.99437654 -0.97691441 0.98458451 -0.99214089 -0.98362988 0.98362684 -0.98867232 -0.98867482 0.98300827\n\t\t -0.98701847 -0.98701829 0.98701859 -0.96000004 -0.99982321 0.96831983 -0.96000004 -0.99875116 0.97658318\n\t\t -0.96000004 -0.9960562 0.98445719 -0.96000004 -0.99121976 0.9912371 -0.96830547 -0.99982405 0.96000022\n\t\t -0.96857774 -0.99960732 0.968669 -0.96867549 -0.99841398 0.97714233 -0.96861833 -0.99561691 0.98485428\n\t\t -0.96854389 -0.99109703 0.99106252 -0.97655553 -0.99875712 0.96000022 -0.97714883 -0.99840552 0.96877515\n\t\t -0.97724205 -0.99709767 0.97728121 -0.97688597 -0.99438894 0.98457605 -0.97659314 -0.99025416 0.99024945\n\t\t -0.98443812 -0.99606562 0.96000022 -0.98491496 -0.99558055 0.9686752 -0.98458439 -0.99437636 0.97691476\n\t\t -0.98362666 -0.99214071 0.98363018 -0.98300815 -0.98867214 0.98867518 -0.96831965 -0.95999986 0.99982357\n\t\t -0.97658306 -0.95999986 0.99875152 -0.98445702 -0.95999986 0.99605656 -0.99123693 -0.95999986 0.99122012\n\t\t -0.96000004 -0.96830529 0.9998244 -0.96866888 -0.96857756 0.99960768 -0.97714216 -0.96867532 0.99841428\n\t\t -0.98485416 -0.96861815 0.99561721 -0.99106234 -0.96854371 0.99109733 -0.96000004 -0.97655535 0.99875742\n\t\t -0.96877503 -0.97714865 0.99840587 -0.97728109 -0.97724187 0.99709803 -0.98457593 -0.9768858 0.99438924\n\t\t -0.99024928 -0.97659296 0.99025452 -0.96000004 -0.98443794 0.99606591 -0.96867508 -0.98491478 0.99558085\n\t\t -0.97691458 -0.98458421 0.99437672 -0.98363006 -0.98362648 0.99214107 -0.988675 -0.98300797 0.98867249\n\t\t -0.95999998 1.000000238419 0.99999982 -1 1.000000238419 0.9599998 -0.96831256 1.000000119209 0.99982363\n\t\t -0.97656929 1.000000238419 0.99875414 -0.9844476 1.000000119209 0.99606091 -0.99122846 1.000000119209 0.99122828\n\t\t -0.99606109 1.000000119209 0.98444742 -0.99875432 1.000000119209 0.97656912 -0.99982381 1.000000238419 0.96831238\n\t\t -1 -0.9600001 -0.9599998 -0.95999998 -0.96000016 -0.99999982 -0.95999998 -1.000000238419 -0.9599998\n\t\t -0.99982339 -0.96000016 -0.96831948 -0.99875134 -0.96000022 -0.97658288 -0.99605638 -0.96000016 -0.98445684\n\t\t -0.99121994 -0.96000016 -0.99123675 -0.99982423 -0.96830559 -0.95999986 -0.9996075 -0.96857792 -0.9686687\n\t\t -0.99841416 -0.96867567 -0.97714198 -0.99561709 -0.96861845 -0.98485398 -0.99109721 -0.96854407 -0.99106216\n\t\t -0.9987573 -0.97655571 -0.95999986 -0.99840569 -0.97714901 -0.96877486 -0.99709785 -0.97724223 -0.97728091\n\t\t -0.99438912 -0.97688609 -0.98457575 -0.99025434 -0.97659326 -0.9902491 -0.9960658 -0.9844383 -0.95999986\n\t\t -0.99558073 -0.98491508 -0.9686749 -0.99437654 -0.98458451 -0.97691441 -0.99214089 -0.98362684 -0.98362988\n\t\t -0.98867232 -0.98300827 -0.98867482 -0.98701847 -0.98701859 -0.98701829 -0.96000004 -0.96831983 -0.99982321\n\t\t -0.96000004 -0.97658318 -0.99875116 -0.96000004 -0.98445719 -0.9960562 -0.96000004 -0.9912371 -0.99121976\n\t\t -0.96830547 -0.96000022 -0.99982405 -0.96857774 -0.968669 -0.99960732 -0.96867549 -0.97714233 -0.99841398\n\t\t -0.96861833 -0.98485428 -0.99561691 -0.96854389 -0.99106252 -0.99109703 -0.97655553 -0.96000022 -0.99875712\n\t\t -0.97714883 -0.96877515 -0.99840552 -0.97724205 -0.97728121 -0.99709767 -0.97688597 -0.98457605 -0.99438894\n\t\t -0.97659314 -0.99024945 -0.99025416 -0.98443812 -0.96000022 -0.99606562 -0.98491496 -0.9686752 -0.99558055\n\t\t -0.98458439 -0.97691476 -0.99437636 -0.98362666 -0.98363018 -0.99214071 -0.98300815 -0.98867518 -0.98867214\n\t\t -0.96831965 -0.99982357 -0.95999986 -0.97658306 -0.99875152 -0.95999986 -0.98445702 -0.99605656 -0.95999986\n\t\t -0.99123693 -0.99122012 -0.95999986 -0.96000004 -0.9998244 -0.96830529 -0.96866888 -0.99960768 -0.96857756\n\t\t -0.97714216 -0.99841428 -0.96867532 -0.98485416 -0.99561721 -0.96861815 -0.99106234 -0.99109733 -0.96854371\n\t\t -0.96000004 -0.99875742 -0.97655535 -0.96877503 -0.99840587 -0.97714865 -0.97728109 -0.99709803 -0.97724187\n\t\t -0.98457593 -0.99438924 -0.9768858 -0.99024928 -0.99025452 -0.97659296 -0.96000004 -0.99606591 -0.98443794\n\t\t -0.96867508 -0.99558085 -0.98491478 -0.97691458 -0.99437672 -0.98458421 -0.98363006 -0.99214107 -0.98362648\n\t\t -0.988675 -0.98867249 -0.98300797 -0.95999998 0.99999982 -1.000000238419 -1 0.99999982 -0.96000016\n\t\t -0.96831256 0.99999982 -0.99982393 -0.97656929 0.99999982 -0.9987545 -0.9844476 0.99999982 -0.99606121\n\t\t -0.99122846 0.99999982 -0.99122858 -0.99606109 0.99999982 -0.98444772 -0.99875432 0.99999982 -0.97656941\n\t\t -0.99982381 0.99999982 -0.96831274 0.5 -1.000000238419 -0.9599998 0.5 -0.96000016 -0.99999982\n\t\t 0.5 -0.99982399 -0.96831238 0.5 -0.9987545 -0.97656912 0.5 -0.99606121 -0.98444742\n\t\t 0.5 -0.99122858 -0.99122828 0.5 -0.98444772 -0.99606091;\n\tsetAttr \".vt[498:663]\" 0.5 -0.97656947 -0.99875414 0.5 -0.96831274 -0.99982363\n\t\t 0 -1.000000238419 -0.9599998 0 -0.96000016 -0.99999982 0 -0.99982399 -0.96831238\n\t\t 0 -0.9987545 -0.97656912 0 -0.99606121 -0.98444742 0 -0.99122858 -0.99122828 0 -0.98444772 -0.99606091\n\t\t 0 -0.97656947 -0.99875414 0 -0.96831274 -0.99982363 -0.5 -0.96000016 -0.99999982\n\t\t -0.5 -1.000000238419 -0.9599998 -0.5 -0.96831274 -0.99982363 -0.5 -0.97656947 -0.99875414\n\t\t -0.5 -0.98444772 -0.99606091 -0.5 -0.99122858 -0.99122828 -0.5 -0.99606121 -0.98444742\n\t\t -0.5 -0.9987545 -0.97656912 -0.5 -0.99982399 -0.96831238 -0.5 -0.99999982 0.96000016\n\t\t -0.5 -0.9599998 1.000000238419 -0.5 -0.99982363 0.96831274 -0.5 -0.99875414 0.97656947\n\t\t -0.5 -0.99606091 0.98444772 -0.5 -0.99122828 0.99122858 -0.5 -0.98444742 0.99606121\n\t\t -0.5 -0.97656912 0.9987545 -0.5 -0.96831238 0.99982399 0 -0.99999982 0.96000016 0 -0.9599998 1.000000238419\n\t\t 0 -0.99982363 0.96831274 0 -0.99875414 0.97656947 0 -0.99606091 0.98444772 0 -0.99122828 0.99122858\n\t\t 0 -0.98444742 0.99606121 0 -0.97656912 0.9987545 0 -0.96831238 0.99982399 0.5 -0.9599998 1.000000238419\n\t\t 0.5 -0.99999982 0.96000016 0.5 -0.96831238 0.99982399 0.5 -0.97656912 0.9987545 0.5 -0.98444742 0.99606121\n\t\t 0.5 -0.99122828 0.99122858 0.5 -0.99606091 0.98444772 0.5 -0.99875414 0.97656947\n\t\t 0.5 -0.99982363 0.96831274 0.5 1.000000238419 0.9599998 0.5 0.96000016 0.99999982\n\t\t 0.5 0.99982399 0.96831238 0.5 0.9987545 0.97656912 0.5 0.99606121 0.98444742 0.5 0.99122858 0.99122828\n\t\t 0.5 0.98444772 0.99606091 0.5 0.97656947 0.99875414 0.5 0.96831274 0.99982363 0 1.000000238419 0.9599998\n\t\t 0 0.96000016 0.99999982 0 0.99982399 0.96831238 0 0.9987545 0.97656912 0 0.99606121 0.98444742\n\t\t 0 0.99122858 0.99122828 0 0.98444772 0.99606091 0 0.97656947 0.99875414 0 0.96831274 0.99982363\n\t\t -0.46000001 1.000000238419 0.9599998 -0.5 1.039999962 0.9599998 -0.54000002 0.96000016 0.99999982\n\t\t -0.46831968 1.00017690659 0.9599998 -0.47658306 1.0012488365 0.9599998 -0.48445702 1.0039438009 0.95999974\n\t\t -0.49123687 1.008780241 0.95999974 -0.46848127 0.9998244 0.96830529 -0.47586071 0.99974132 0.96852607\n\t\t -0.48250148 1.00072932243 0.96871459 -0.4885006 1.0029685497 0.9687835 -0.49340963 1.0065567493 0.96878839\n\t\t -0.47779825 0.99875742 0.97655535 -0.48350686 0.99882126 0.97675294 -0.48829398 0.99990666 0.97691208\n\t\t -0.49233472 1.0017632246 0.97681886 -0.49562991 1.0043654442 0.97670984 -0.48837233 0.99606591 0.98443794\n\t\t -0.49162853 0.9967804 0.9843809 -0.49413192 0.99818057 0.98407447 -0.49616623 1.00000333786 0.98335731\n\t\t -0.49802539 1.0019773245 0.98289686 -0.5 1.000000238419 0.98655665 -0.50017661 1.031503797 0.96831948\n\t\t -0.50124866 1.022168398 0.97658288 -0.50394362 1.011599422 0.98445684 -0.50878006 0.99998307 0.99123675\n\t\t -0.4998242 1.031694651 0.9599998 -0.49974108 1.024398327 0.9686147 -0.50072914 1.016769528 0.9768874\n\t\t -0.50296837 1.0085310936 0.98447567 -0.50655651 1.000033974648 0.99063569 -0.49875727 1.023444653 0.9599998\n\t\t -0.49882108 1.0176723 0.96873856 -0.49990648 1.011799812 0.97694886 -0.50176311 1.0059022903 0.98410219\n\t\t -0.50436532 1.000004887581 0.98972267 -0.49606574 1.015562057 0.95999974 -0.49678022 1.011591434 0.96878493\n\t\t -0.4981803 1.0076879263 0.97682148 -0.50000322 1.0038306713 0.98336047 -0.50197721 0.99999756 0.98826599\n\t\t -0.53150374 0.96831983 0.99982321 -0.52216828 0.97658318 0.99875116 -0.51159936 0.98445719 0.9960562\n\t\t -0.49998301 0.9912371 0.99121976 -0.53169453 0.96848136 0.99982405 -0.52439815 0.97586083 0.9987126\n\t\t -0.51676929 0.98250163 0.99742097 -0.50853097 0.98850071 0.99487811 -0.50003386 0.99340987 0.99066955\n\t\t -0.52344447 0.9777984 0.99875712 -0.51767206 0.98350704 0.99709707 -0.51179945 0.98829412 0.99566001\n\t\t -0.50590217 0.9923349 0.99339628 -0.50000477 0.99563003 0.98972744 -0.51556188 0.98837239 0.99606562\n\t\t -0.51159132 0.99162865 0.99462384 -0.50768781 0.99413198 0.99333453 -0.50383055 0.99616635 0.99140173\n\t\t -0.49999744 0.9980256 0.98826337 -0.95999998 -1.000000119209 -0.49999982 -1 -0.96000004 -0.49999985\n\t\t -0.96831256 -0.99982393 -0.49999985 -0.97656929 -0.99875438 -0.49999985 -0.9844476 -0.99606121 -0.49999985\n\t\t -0.99122846 -0.99122858 -0.49999985 -0.99606109 -0.98444772 -0.49999985 -0.99875432 -0.97656941 -0.49999985\n\t\t -0.99982381 -0.96831262 -0.49999985 -0.95999998 -1 1.1920929e-07 -1 -0.95999998 1.7881393e-07\n\t\t -0.96831256 -0.99982381 1.7881393e-07 -0.97656929 -0.99875432 1.7881393e-07 -0.9844476 -0.99606109 1.7881393e-07\n\t\t -0.99122846 -0.99122846 1.7881393e-07 -0.99606109 -0.9844476 1.7881393e-07 -0.99875432 -0.97656929 1.7881393e-07\n\t\t -0.99982381 -0.96831256 1.7881393e-07 -1 -0.95999992 0.50000018 -0.95999998 -0.99999988 0.50000012\n\t\t -0.99982381 -0.9683125 0.50000018 -0.99875432 -0.97656918 0.50000012 -0.99606109 -0.98444748 0.50000012\n\t\t -0.99122846 -0.99122834 0.50000012 -0.9844476 -0.99606097 0.50000012 -0.97656929 -0.99875426 0.50000018\n\t\t -0.96831256 -0.99982369 0.50000012 0.54000002 0.99999988 -0.46000016 0.54000002 1.039999962 -0.50000012\n\t\t 0.5 1.039999843 -0.46000016 0.54000002 1.00017654896 -0.46831989 0.54000002 1.0012485981 -0.47658324\n\t\t 0.54000002 1.0039436817 -0.48445714 0.54000002 1.0087800026 -0.49123704 0.53169453 1.00017571449 -0.46000016\n\t\t 0.53147376 1.0012872219 -0.46861506 0.53128517 1.0025789738 -0.47688782 0.53121626 1.0051217079 -0.48447597\n\t\t 0.53121138 1.0093302727 -0.49063599 0.52344447 1.0012426376 -0.46000016;\n\tsetAttr \".vt[664:829]\" 0.52324688 1.0029027462 -0.46873903 0.52308768 1.0043399334 -0.47694933\n\t\t 0.5231809 1.0066034794 -0.48410249 0.52328992 1.010272145 -0.48972297 0.51556188 1.003934145 -0.46000016\n\t\t 0.51561892 1.0053761005 -0.46878541 0.51592535 1.0066654682 -0.4768219 0.51664251 1.0085980892 -0.48336089\n\t\t 0.51710296 1.011736393 -0.48826635 0.51344323 1.013443232 -0.48655701 0.53168035 1.039999843 -0.49982357\n\t\t 0.52341694 1.039999843 -0.49875152 0.51554298 1.039999962 -0.49605656 0.50876307 1.039999843 -0.49122012\n\t\t 0.54000002 1.031694412 -0.4998244 0.53138506 1.031473637 -0.4987129 0.52311242 1.031285048 -0.49742126\n\t\t 0.51552415 1.031216145 -0.49487841 0.50936413 1.031211138 -0.49066985 0.54000002 1.023444414 -0.49875748\n\t\t 0.53126121 1.023246765 -0.49709737 0.5230509 1.023087502 -0.49566031 0.51589763 1.023180723 -0.49339664\n\t\t 0.51027721 1.02328968 -0.48972774 0.54000002 1.015561819 -0.49606586 0.53121483 1.015618801 -0.49462414\n\t\t 0.52317834 1.015925169 -0.49333477 0.51663929 1.016642332 -0.49140215 0.51173383 1.017102957 -0.48826373\n\t\t 0.50017661 1.031680226 -0.46000016 0.50124866 1.023416877 -0.46000016 0.50394362 1.015542865 -0.46000016\n\t\t 0.50878006 1.0087630749 -0.46000016 0.50017577 1.039999843 -0.46830571 0.50128722 1.031385183 -0.46852636\n\t\t 0.50257885 1.023112297 -0.46871507 0.50512177 1.015524149 -0.46878397 0.50933027 1.0093643665 -0.46878886\n\t\t 0.5012427 1.039999843 -0.47655571 0.50290275 1.031261086 -0.47675323 0.50433993 1.023050785 -0.47691238\n\t\t 0.50660354 1.015897632 -0.47681928 0.51027238 1.010277271 -0.47671032 0.5039342 1.039999962 -0.4844383\n\t\t 0.50537598 1.031214714 -0.48438132 0.50666535 1.023178339 -0.48407483 0.50859809 1.016639233 -0.48335767\n\t\t 0.51173645 1.011734009 -0.48289728 0.46000001 1.039999962 -1.1920929e-07 0.54000002 0.99999994 0.039999843\n\t\t 0.5 1.039999962 -0.0400002 0.46849629 1.031680346 0.00017654896 0.47783172 1.023416996 0.0012485981\n\t\t 0.48840067 1.015542984 0.0039434433 0.50001693 1.0087631941 0.008779943 0.4683055 1.039999962 -0.00017595291\n\t\t 0.47560179 1.031385183 -0.00025904179 0.48323059 1.023112416 0.00072908401 0.49146894 1.015524268 0.0029681921\n\t\t 0.49996611 1.0093643665 0.0065563917 0.4765555 1.039999962 -0.0012428761 0.48232791 1.031261206 -0.0011790991\n\t\t 0.48820046 1.023050904 -9.3698502e-05 0.49409771 1.015897751 0.001762867 0.49999514 1.01027739 0.0043650866\n\t\t 0.48443812 1.039999962 -0.0039345026 0.48840868 1.031214833 -0.0032199621 0.49231213 1.023178339 -0.0018199682\n\t\t 0.49616939 1.016639352 2.9802322e-06 0.50000256 1.011734009 0.0019769669 0.5 1.013443351 -2.3841858e-07\n\t\t 0.53168035 1.00017666817 0.031503499 0.52341694 1.0012487173 0.02216804 0.51554298 1.0039436817 0.011599123\n\t\t 0.50876307 1.0087801218 -1.7285347e-05 0.53151876 1.0001758337 0.031694412 0.52413929 1.0012873411 0.024398029\n\t\t 0.51749849 1.0025789738 0.016769171 0.5114994 1.0051218271 0.0085307956 0.50659031 1.0093302727 3.361702e-05\n\t\t 0.52220178 1.0012427568 0.023444355 0.51649314 1.0029027462 0.017671943 0.51170599 1.0043399334 0.011799335\n\t\t 0.50766528 1.0066034794 0.0059020519 0.50437009 1.010272264 4.6491623e-06 0.51162767 1.0039342642 0.015561759\n\t\t 0.50837147 1.0053761005 0.011591136 0.50586808 1.0066654682 0.0076876283 0.50383377 1.0085980892 0.0038304329\n\t\t 0.50197458 1.011736393 -2.7418137e-06 0.49982336 1.039999962 -0.031680584 0.49875131 1.039999962 -0.023417115\n\t\t 0.49605638 1.039999962 -0.015543222 0.49121991 1.039999962 -0.0087633133 0.50017577 1.031694531 -0.031518936\n\t\t 0.50025886 1.031473637 -0.024139524 0.49927086 1.031285048 -0.017498732 0.49703163 1.031216145 -0.011499643\n\t\t 0.49344352 1.031211257 -0.0065906048 0.5012427 1.023444533 -0.022202015 0.50117892 1.023246884 -0.01649332\n\t\t 0.50009352 1.023087621 -0.011706233 0.49823692 1.023180842 -0.0076655149 0.49563468 1.0232898 -0.0043703318\n\t\t 0.5039342 1.015561938 -0.011627913 0.50321978 1.01561892 -0.0083717108 0.50181973 1.015925288 -0.0058683157\n\t\t 0.49999678 1.016642451 -0.0038340092 0.49802279 1.017102957 -0.0019748211 0 1.039999962 0.039999843\n\t\t 0.039999999 0.99999994 0.039999843 0.039999999 1.039999962 -1.1920929e-07 0.00017666444 1.031680346 0.039999843\n\t\t 0.001248721 1.023416996 0.039999843 0.0039436668 1.015542984 0.039999843 0.0087801088 1.0087631941 0.039999843\n\t\t 0.00017582253 1.039999962 0.031694412 0.0012873136 1.031385183 0.031473577 0.0025789021 1.023112416 0.031284928\n\t\t 0.0051217857 1.015524268 0.031216025 0.009330336 1.0093643665 0.031211138 0.0012427457 1.039999962 0.023444414\n\t\t 0.0029027525 1.031261206 0.023246765 0.0043399017 1.023050904 0.023087561 0.0066035278 1.015897751 0.023180723\n\t\t 0.010272408 1.01027739 0.02328974 0.0039342791 1.039999962 0.0155617 0.0053760516 1.031214833 0.015618801\n\t\t 0.0066653285 1.023178339 0.015925169 0.0085980622 1.016639352 0.016642332 0.011736395 1.011734009 0.017102778\n\t\t 0.013443206 1.013443351 0.013442993 0.039999999 1.00017666817 0.031680226 0.039999999 1.0012487173 0.023416817\n\t\t 0.039999999 1.0039436817 0.015542865 0.039999999 1.0087801218 0.0087629557 0.031694546 1.0001758337 0.039999843\n\t\t 0.031473763 1.0012873411 0.031384885 0.031285122 1.0025789738 0.023112237 0.031216208 1.0051218271 0.01552403\n\t\t 0.03121133 1.0093302727 0.0093640685 0.023444541 1.0012427568 0.039999843 0.023246935 1.0029027462 0.031261027\n\t\t 0.023087731 1.0043399334 0.023050725 0.023180876 1.0066034794 0.015897512 0.023289898 1.010272264 0.010277092\n\t\t 0.015561912 1.0039342642 0.039999843 0.015618922 1.0053761005 0.031214654 0.015925318 1.0066654682 0.02317816\n\t\t 0.01664247 1.0085980892 0.016639113 0.017102942 1.011736393 0.011733651 0.03168036 1.039999962 0.00017654896\n\t\t 0.023416966 1.039999962 0.0012485981 0.015543012 1.039999962 0.0039434433 0.0087631587 1.039999962 0.0087798834\n\t\t 0.039999999 1.031694531 0.00017559528 0.031385072 1.031473756 0.0012871027 0.023112396 1.031285048 0.0025787354\n\t\t 0.015524214 1.031216145 0.0051215887 0.0093642073 1.031211257 0.0093301535 0.039999999 1.023444533 0.0012426376\n\t\t 0.03126118 1.023246884 0.002902627 0.023050897 1.023087621 0.004339695 0.015897669 1.023180842 0.0066033602\n\t\t 0.010277234 1.0232898 0.010272264 0.039999999 1.015561938 0.003934145;\n\tsetAttr \".vt[830:995]\" 0.031214794 1.01561892 0.0053758621 0.023178317 1.015925288 0.0066651106\n\t\t 0.016639292 1.016642451 0.0085978508 0.011733835 1.017102957 0.011736274 0 1.039999962 0.45999986\n\t\t -0.039999999 1.040000081 0.49999982 0.039999999 1 0.53999984 -0.00017666444 1.040000081 0.46831954\n\t\t -0.001248721 1.039999962 0.47658288 -0.0039436668 1.040000081 0.48445684 -0.0087801088 1.039999962 0.49123669\n\t\t 0.00017582253 1.031694531 0.46848112 0.00025887144 1.031473756 0.47586054 -0.00072919589 1.031285048 0.48250133\n\t\t -0.0029683951 1.031216264 0.48850042 -0.0065565091 1.031211376 0.49340945 0.0012427457 1.023444533 0.47779804\n\t\t 0.0011789498 1.023247004 0.48350668 9.3498704e-05 1.023087621 0.48829383 -0.0017630713 1.023180962 0.49233454\n\t\t -0.0043653315 1.023289919 0.49562973 0.0039342791 1.015562057 0.48837215 0.0032198324 1.01561904 0.49162835\n\t\t 0.0018197426 1.015925407 0.49413174 -3.186839e-06 1.01664257 0.49616605 -0.0019772197 1.017102957 0.49802524\n\t\t -2.0339314e-08 1.013443351 0.49999982 -0.031503767 1.031680346 0.50017643 -0.022168359 1.023416996 0.50124848\n\t\t -0.011599381 1.015542984 0.50394344 1.6856511e-05 1.0087633133 0.50877988 -0.031694546 1.040000081 0.49982405\n\t\t -0.024398228 1.031385303 0.4997409 -0.016769428 1.023112535 0.50072896 -0.0085311094 1.015524387 0.50296819\n\t\t -3.3941353e-05 1.0093644857 0.50655633 -0.023444541 1.040000081 0.49875712 -0.017672127 1.031261206 0.4988209\n\t\t -0.011799572 1.023051023 0.4999063 -0.0059022829 1.01589787 0.50176293 -4.8727525e-06 1.01027739 0.50436515\n\t\t -0.015561912 1.040000081 0.49606556 -0.01159132 1.031214952 0.49678004 -0.0076878527 1.023178458 0.49818015\n\t\t -0.0038306187 1.016639471 0.50000304 2.5304034e-06 1.01173389 0.50197703 0.03168036 1.00017666817 0.53150356\n\t\t 0.023416966 1.0012488365 0.52216816 0.015543012 1.0039436817 0.51159918 0.0087631587 1.0087801218 0.49998289\n\t\t 0.031518675 1.00017595291 0.53169441 0.024139281 1.0012874603 0.52439797 0.017498532 1.0025789738 0.51676917\n\t\t 0.011499417 1.0051219463 0.50853086 0.006590371 1.0093303919 0.50003368 0.022201698 1.0012428761 0.52344429\n\t\t 0.016493099 1.0029028654 0.51767194 0.011706 1.0043400526 0.51179934 0.0076652854 1.0066035986 0.50590199\n\t\t 0.0043701371 1.010272384 0.50000459 0.011627604 1.0039343834 0.5155617 0.00837141 1.0053762197 0.5115912\n\t\t 0.0058680438 1.0066655874 0.50768763 0.003833744 1.0085982084 0.50383037 0.0019746281 1.011736393 0.49999726\n\t\t -1 1.99999976 -0.96000028 -0.95999998 1.99999976 -1.000000238419 -0.99982381 1.99999976 -0.96831298\n\t\t -0.99875432 1.99999988 -0.97656965 -0.99606109 1.99999988 -0.98444796 -0.99122846 1.99999988 -0.99122882\n\t\t -0.9844476 1.99999988 -0.99606133 -0.97656929 1.99999976 -0.99875474 -0.96831256 1.99999988 -0.99982405\n\t\t -0.46000001 1 0.53999984 -0.46000001 1.040000081 0.49999982 -0.5 1.039999962 0.53999984\n\t\t -0.46000001 1.00017678738 0.53168023 -0.46000001 1.0012488365 0.52341676 -0.46000001 1.0039438009 0.51554286\n\t\t -0.46000001 1.008780241 0.5087629 -0.4683055 1.00017595291 0.53999984 -0.46852624 1.0012874603 0.53138494\n\t\t -0.46871489 1.002579093 0.5231123 -0.4687838 1.0051219463 0.51552403 -0.46878868 1.0093303919 0.50936395\n\t\t -0.4765555 1.0012428761 0.53999984 -0.47675309 1.0029028654 0.53126109 -0.47691226 1.0043400526 0.52305079\n\t\t -0.47681913 1.0066035986 0.51589745 -0.47671011 1.010272264 0.51027703 -0.48443812 1.0039343834 0.53999984\n\t\t -0.48438111 1.0053762197 0.53121471 -0.48407471 1.0066655874 0.52317816 -0.48335755 1.0085980892 0.51663911\n\t\t -0.4828971 1.011736393 0.51173365 -0.48655683 1.01344347 0.51344305 -0.46831968 1.039999962 0.50017643\n\t\t -0.47658306 1.039999962 0.50124848 -0.48445702 1.039999962 0.50394344 -0.49123687 1.039999962 0.50877988\n\t\t -0.46000001 1.031694651 0.5001756 -0.46861494 1.031473875 0.50128704 -0.47688764 1.031285167 0.50257868\n\t\t -0.48447582 1.031216264 0.50512153 -0.49063581 1.031211376 0.50933009 -0.46000001 1.023444653 0.50124252\n\t\t -0.46873885 1.023247004 0.50290257 -0.47694916 1.02308774 0.50433975 -0.48410237 1.023180962 0.5066033\n\t\t -0.48972282 1.023289919 0.51027215 -0.46000001 1.015562057 0.50393403 -0.46878523 1.01561904 0.5053758\n\t\t -0.47682172 1.015925407 0.50666517 -0.48336071 1.01664257 0.50859791 -0.48826617 1.017103076 0.51173621\n\t\t -0.49982336 1.031680346 0.53999984 -0.49875131 1.023416996 0.53999984 -0.49605638 1.015542984 0.53999984\n\t\t -0.49121991 1.0087633133 0.53999984 -0.4998242 1.040000081 0.53169435 -0.49871269 1.031385303 0.53147358\n\t\t -0.49742109 1.023112535 0.53128499 -0.49487823 1.015524387 0.53121608 -0.4906697 1.0093644857 0.5312112\n\t\t -0.49875727 1.039999962 0.52344429 -0.49709725 1.031261325 0.52324671 -0.4956601 1.023051023 0.5230875\n\t\t -0.49339646 1.015897751 0.52318072 -0.48972762 1.01027751 0.52328974 -0.49606574 1.039999962 0.5155617\n\t\t -0.49462396 1.031214952 0.51561874 -0.49333465 1.023178458 0.51592511 -0.49140194 1.016639471 0.51664227\n\t\t -0.48826361 1.011734128 0.51710278 -1 1.49999976 -0.96000028 -0.95999998 1.49999988 -1.000000238419\n\t\t -0.99982381 1.49999976 -0.96831274 -0.99875432 1.49999976 -0.97656965 -0.99606109 1.49999976 -0.98444796\n\t\t -0.99122846 1.49999976 -0.99122882 -0.9844476 1.49999976 -0.99606133 -0.97656929 1.49999976 -0.9987545\n\t\t -0.96831256 1.49999976 -0.99982405 0.54000002 1.49999976 -0.96000028 0.46000001 1.45999992 -1.000000238419\n\t\t 0.5 1.53999972 -0.96000028 0.53150368 1.49982309 -0.96831989 0.52216822 1.49875116 -0.97658336\n\t\t 0.5115993 1.49605608 -0.98445725 0.49998295 1.49121976 -0.99123728 0.53169453 1.50017571 -0.96000016\n\t\t 0.52439815 1.50025868 -0.96861517 0.51676929 1.49927068 -0.97688782 0.50853097 1.49703145 -0.98447621\n\t\t 0.5000338 1.49344325 -0.99063611 0.52344447 1.50124264 -0.96000016 0.51767206 1.50117874 -0.96873903\n\t\t 0.51179945 1.50009322 -0.97694945 0.50590217 1.49823666 -0.98410273 0.50000477 1.49563456 -0.98972321\n\t\t 0.51556188 1.50393414 -0.96000016 0.51159132 1.5032196 -0.96878552 0.50768781 1.50181961 -0.97682202\n\t\t 0.50383055 1.49999666 -0.98336089 0.49999744 1.49802256 -0.98826647;\n\tsetAttr \".vt[996:1161]\" 0.5 1.49999976 -0.98655701 0.46831968 1.4684962 -0.99982357\n\t\t 0.47658306 1.4778316 -0.99875152 0.48445702 1.48840058 -0.99605656 0.49123687 1.50001669 -0.99122024\n\t\t 0.46848121 1.46830535 -0.9998244 0.47586069 1.47560167 -0.99871314 0.48250145 1.48323047 -0.9974215\n\t\t 0.4885006 1.49146891 -0.99487865 0.49340963 1.49996591 -0.99066997 0.47779813 1.47655535 -0.99875748\n\t\t 0.4835068 1.4823277 -0.99709761 0.48829395 1.48820031 -0.99566054 0.49233469 1.49409747 -0.99339676\n\t\t 0.49562991 1.49999499 -0.98972785 0.48837227 1.48443794 -0.99606597 0.49162847 1.48840857 -0.99462426\n\t\t 0.49413186 1.49231207 -0.99333501 0.49616623 1.49616909 -0.99140215 0.49802539 1.50000238 -0.98826385\n\t\t 0.50017661 1.53168011 -0.96000028 0.50124866 1.52341676 -0.96000028 0.50394362 1.51554275 -0.96000028\n\t\t 0.50878006 1.50876307 -0.96000016 0.4998242 1.53151846 -0.96830583 0.49974108 1.52413917 -0.96852648\n\t\t 0.50072914 1.51749849 -0.96871507 0.50296837 1.51149917 -0.96878409 0.50655651 1.50659013 -0.96878886\n\t\t 0.49875727 1.52220154 -0.97655571 0.49882108 1.51649284 -0.97675347 0.49990648 1.51170588 -0.97691262\n\t\t 0.50176311 1.50766516 -0.9768194 0.50436532 1.50436997 -0.97671044 0.49606574 1.51162744 -0.9844383\n\t\t 0.49678022 1.50837135 -0.98438132 0.4981803 1.50586796 -0.98407495 0.50000322 1.50383353 -0.98335791\n\t\t 0.50197721 1.50197434 -0.98289728 0.95999998 1.45999992 -1.000000238419 0.95999998 1.49999976 -0.96000028\n\t\t 1 1.45999992 -0.96000028 0.96000004 1.46831954 -0.99982357 0.96000004 1.47658288 -0.99875164\n\t\t 0.96000004 1.4844569 -0.99605656 0.96000004 1.49123669 -0.99122012 0.96830547 1.45999992 -0.99982452\n\t\t 0.96857774 1.46866882 -0.9996078 0.96867549 1.47714198 -0.99841452 0.96861833 1.48485398 -0.99561727\n\t\t 0.96854389 1.49106216 -0.99109757 0.97655553 1.45999992 -0.9987576 0.97714883 1.46877491 -0.99840593\n\t\t 0.97724205 1.47728097 -0.99709821 0.97688597 1.48457575 -0.99438941 0.97659314 1.49024916 -0.99025452\n\t\t 0.98443812 1.45999992 -0.99606609 0.98491496 1.46867502 -0.99558091 0.98458439 1.47691441 -0.99437678\n\t\t 0.98362666 1.48362982 -0.99214125 0.98300815 1.48867488 -0.98867261 0.98701847 1.48701835 -0.9870187\n\t\t 0.96831965 1.49982309 -0.96000028 0.97658306 1.49875116 -0.9600004 0.98445702 1.49605608 -0.96000028\n\t\t 0.99123693 1.49121976 -0.9600004 0.96000004 1.49982405 -0.96830571 0.96866888 1.49960732 -0.96857798\n\t\t 0.97714216 1.49841404 -0.96867573 0.98485416 1.49561691 -0.96861851 0.99106234 1.49109697 -0.96854424\n\t\t 0.96000004 1.49875712 -0.97655571 0.96877503 1.49840546 -0.97714901 0.97728109 1.49709773 -0.97724235\n\t\t 0.98457593 1.49438882 -0.97688627 0.99024928 1.49025416 -0.97659338 0.96000004 1.49606562 -0.9844383\n\t\t 0.96867508 1.49558043 -0.98491526 0.97691458 1.49437618 -0.98458457 0.98363006 1.49214077 -0.98362696\n\t\t 0.988675 1.48867202 -0.98300838 0.99982339 1.45999992 -0.96831989 0.99875134 1.45999992 -0.97658324\n\t\t 0.99605638 1.45999992 -0.98445725 0.99121994 1.45999992 -0.99123716 0.99982423 1.46830535 -0.9600004\n\t\t 0.9996075 1.46857762 -0.96866906 0.99841416 1.46867537 -0.97714245 0.99561709 1.46861827 -0.98485446\n\t\t 0.99109721 1.46854377 -0.99106252 0.9987573 1.47655535 -0.9600004 0.99840569 1.47714853 -0.96877527\n\t\t 0.99709785 1.47724199 -0.97728145 0.99438912 1.4768858 -0.98457611 0.99025434 1.47659302 -0.99024951\n\t\t 0.9960658 1.48443794 -0.9600004 0.99558073 1.48491478 -0.96867526 0.99437654 1.48458409 -0.97691488\n\t\t 0.99214089 1.48362648 -0.98363042 0.98867232 1.48300803 -0.98867536 -0.5 1.46000004 0.95999974\n\t\t -0.54000002 1.5 0.95999974 -0.54000002 1.46000028 0.99999976 -0.50017661 1.46831989 0.9599998\n\t\t -0.50124866 1.47658324 0.9599998 -0.50394362 1.48445725 0.9599998 -0.50878006 1.49123693 0.9599998\n\t\t -0.50017577 1.46000016 0.96830523 -0.5003925 1.46866906 0.9685775 -0.50158584 1.47714221 0.96867526\n\t\t -0.50438291 1.48485422 0.96861809 -0.50890279 1.49106252 0.96854365 -0.5012427 1.46000004 0.97655529\n\t\t -0.50159431 1.46877527 0.97714859 -0.50290215 1.47728133 0.97724181 -0.50561088 1.48457599 0.97688574\n\t\t -0.50974566 1.49024951 0.9765929 -0.5039342 1.46000004 0.98443788 -0.50441927 1.46867514 0.98491472\n\t\t -0.50562346 1.47691464 0.98458415 -0.50785911 1.48363018 0.98362643 -0.51132768 1.48867512 0.98300791\n\t\t -0.51298153 1.4870187 0.98701823 -0.53999996 1.49982357 0.96831942 -0.53999996 1.4987514 0.97658283\n\t\t -0.53999996 1.49605656 0.98445678 -0.53999996 1.49122 0.99123669 -0.53169453 1.49982429 0.9599998\n\t\t -0.53142226 1.49960756 0.96866864 -0.53132451 1.49841428 0.97714192 -0.53138167 1.49561715 0.98485392\n\t\t -0.53145611 1.49109721 0.9910621 -0.52344447 1.49875736 0.9599998 -0.52285117 1.49840593 0.9687748\n\t\t -0.52275795 1.49709797 0.97728086 -0.52311403 1.49438906 0.98457569 -0.52340686 1.49025452 0.99024904\n\t\t -0.51556188 1.49606586 0.9599998 -0.51508504 1.49558067 0.96867484 -0.51541561 1.49437642 0.97691435\n\t\t -0.51637334 1.49214113 0.98362982 -0.51699185 1.48867238 0.98867476 -0.53168035 1.46000028 0.99982315\n\t\t -0.52341694 1.46000004 0.9987511 -0.51554298 1.46000028 0.99605614 -0.50876307 1.46000004 0.9912197\n\t\t -0.53999996 1.46830559 0.99982399 -0.53133112 1.46857786 0.99960726 -0.52285784 1.46867573 0.99841392\n\t\t -0.51514584 1.46861839 0.99561685 -0.50893766 1.46854401 0.99109697 -0.53999996 1.47655559 0.99875706\n\t\t -0.53122497 1.47714901 0.99840546 -0.52271891 1.47724235 0.99709761 -0.51542407 1.47688603 0.99438888\n\t\t -0.50975072 1.47659326 0.9902541 -0.53999996 1.48443818 0.99606556 -0.53132492 1.48491502 0.99558049\n\t\t -0.52308542 1.48458445 0.9943763 -0.51636994 1.48362672 0.99214065 -0.511325 1.48300838 0.98867208\n\t\t -1 1.46000004 0.95999974 -0.95999998 1.46000028 0.99999976 -0.95999998 1.5 0.95999974\n\t\t -0.99982339 1.46000028 0.96831942 -0.99875134 1.46000028 0.97658283;\n\tsetAttr \".vt[1162:1327]\" -0.99605638 1.46000028 0.98445678 -0.99121994 1.46000028 0.99123669\n\t\t -0.99982423 1.46830559 0.9599998 -0.9996075 1.46857786 0.96866864 -0.99841416 1.46867561 0.97714192\n\t\t -0.99561709 1.46861839 0.98485392 -0.99109721 1.46854401 0.9910621 -0.9987573 1.47655559 0.9599998\n\t\t -0.99840569 1.47714901 0.9687748 -0.99709785 1.47724223 0.97728086 -0.99438912 1.47688603 0.98457569\n\t\t -0.99025434 1.47659338 0.99024904 -0.9960658 1.48443818 0.9599998 -0.99558073 1.48491502 0.96867484\n\t\t -0.99437654 1.48458433 0.97691435 -0.99214089 1.48362672 0.98362982 -0.98867232 1.48300827 0.98867476\n\t\t -0.98701847 1.48701847 0.98701823 -0.96000004 1.46831989 0.99982315 -0.96000004 1.476583 0.9987511\n\t\t -0.96000004 1.48445725 0.99605614 -0.96000004 1.49123693 0.9912197 -0.96830547 1.46000004 0.99982399\n\t\t -0.96857774 1.46866894 0.99960726 -0.96867549 1.47714221 0.99841392 -0.96861833 1.48485422 0.99561685\n\t\t -0.96854389 1.4910624 0.99109697 -0.97655553 1.46000004 0.99875706 -0.97714883 1.46877527 0.99840546\n\t\t -0.97724205 1.47728121 0.99709761 -0.97688597 1.48457599 0.99438888 -0.97659314 1.4902494 0.9902541\n\t\t -0.98443812 1.46000004 0.99606556 -0.98491496 1.46867537 0.99558049 -0.98458439 1.47691476 0.9943763\n\t\t -0.98362666 1.48363006 0.99214065 -0.98300815 1.48867512 0.98867208 -0.96831965 1.49982357 0.9599998\n\t\t -0.97658306 1.4987514 0.9599998 -0.98445702 1.49605656 0.9599998 -0.99123693 1.49122 0.9599998\n\t\t -0.96000004 1.4998244 0.96830523 -0.96866888 1.49960768 0.9685775 -0.97714216 1.4984144 0.96867526\n\t\t -0.98485416 1.49561715 0.96861809 -0.99106234 1.49109733 0.96854365 -0.96000004 1.49875736 0.97655529\n\t\t -0.96877503 1.49840593 0.97714859 -0.97728109 1.49709797 0.97724181 -0.98457593 1.49438906 0.97688574\n\t\t -0.99024928 1.49025452 0.9765929 -0.96000004 1.49606586 0.98443788 -0.96867508 1.49558067 0.98491472\n\t\t -0.97691458 1.49437666 0.98458415 -0.98363006 1.49214101 0.98362643 -0.988675 1.48867249 0.98300791\n\t\t -0.46000001 1.46000016 0.49999976 -0.46000001 1.5 0.4599998 -0.5 1.53999996 0.4599998\n\t\t -0.54000002 1.53999996 0.49999976 -0.54000002 1.50000024 0.53999978 -0.5 1.46000028 0.53999978\n\t\t -0.46000001 1.46831977 0.49982309 -0.46000001 1.47658312 0.49875104 -0.46000001 1.48445702 0.49605614\n\t\t -0.46000001 1.49123693 0.49121964 -0.4683055 1.46000004 0.50017554 -0.46882388 1.4689126 0.50025862\n\t\t -0.46927294 1.47748506 0.49911427 -0.46952787 1.48537731 0.49640602 -0.46960714 1.49184799 0.49187988\n\t\t -0.4765555 1.46000004 0.50124246 -0.47735032 1.46929693 0.50133485 -0.47817427 1.4782114 0.50009298\n\t\t -0.47888076 1.48636115 0.49745476 -0.47920534 1.49300456 0.49300593 -0.48443812 1.46000004 0.50393397\n\t\t -0.48528194 1.46952915 0.5038442 -0.4863323 1.4788835 0.50260013 -0.48788375 1.48788774 0.49999583\n\t\t -0.48878568 1.49533141 0.49532557 -0.5 1.5 0.49999976 -0.46831968 1.50017667 0.4599998\n\t\t -0.47658306 1.50124872 0.4599998 -0.48445702 1.50394368 0.4599998 -0.49123687 1.50878012 0.4599998\n\t\t -0.46000001 1.49982429 0.46830523 -0.46891254 1.4997412 0.46882367 -0.477485 1.50088561 0.46927273\n\t\t -0.48537737 1.50359392 0.4695276 -0.49184805 1.50812006 0.46960688 -0.46000001 1.49875736 0.47655523\n\t\t -0.46929684 1.49866486 0.47735012 -0.47821134 1.49990678 0.47817397 -0.48636103 1.50254512 0.47888052\n\t\t -0.49300438 1.50699389 0.47920513 -0.46000001 1.49606586 0.48443782 -0.46952927 1.49615562 0.48528171\n\t\t -0.4788835 1.49739969 0.48633206 -0.48788762 1.50000405 0.48788345 -0.49533126 1.5046742 0.48878539\n\t\t -0.50017661 1.53999996 0.46831942 -0.50124866 1.5400002 0.47658277 -0.50394362 1.53999996 0.48445678\n\t\t -0.50878006 1.53999996 0.49123657 -0.4998242 1.53169453 0.4599998 -0.49974108 1.53117609 0.46891224\n\t\t -0.50088549 1.53072715 0.4774847 -0.50359374 1.53047252 0.48537707 -0.50811988 1.53039312 0.49184775\n\t\t -0.49875727 1.52344453 0.4599998 -0.49866492 1.52264977 0.46929657 -0.49990684 1.52182579 0.47821105\n\t\t -0.502545 1.52111936 0.48636079 -0.50699383 1.52079487 0.49300408 -0.49606574 1.51556194 0.4599998\n\t\t -0.49615556 1.51471817 0.46952903 -0.49739966 1.51366794 0.47888327 -0.50000393 1.51211643 0.48788738\n\t\t -0.5046742 1.51121426 0.49533093 -0.54000002 1.53168035 0.50017631 -0.54000002 1.52341723 0.50124836\n\t\t -0.54000002 1.51554298 0.50394332 -0.54000002 1.50876331 0.50877982 -0.53169453 1.54000008 0.49982393\n\t\t -0.53117615 1.53108764 0.49974084 -0.53072703 1.52251506 0.50088525 -0.53047216 1.51462293 0.50359344\n\t\t -0.53039289 1.50815225 0.50811958 -0.52344447 1.54000008 0.498757 -0.52264965 1.53070331 0.49866462\n\t\t -0.52182573 1.52178884 0.49990654 -0.52111924 1.51363921 0.50254464 -0.52079463 1.50699568 0.50699353\n\t\t -0.51556188 1.54000008 0.4960655 -0.51471806 1.53047109 0.49615526 -0.5136677 1.52111673 0.49739933\n\t\t -0.51211625 1.51211262 0.50000358 -0.51121432 1.50466871 0.5046739 -0.53168035 1.49982357 0.53999978\n\t\t -0.52341694 1.4987514 0.53999978 -0.51554298 1.49605656 0.53999978 -0.50876307 1.49122 0.53999978\n\t\t -0.54000002 1.50017583 0.53169429 -0.53108746 1.50025892 0.53117591 -0.522515 1.49911439 0.53072679\n\t\t -0.51462263 1.4964062 0.53047192 -0.50815195 1.49188018 0.53039265 -0.54000002 1.50124288 0.52344424\n\t\t -0.53070319 1.50133526 0.52264941 -0.52178866 1.50009346 0.52182549 -0.51363897 1.497455 0.521119\n\t\t -0.50699568 1.49300623 0.52079439 -0.54000002 1.50393438 0.51556164 -0.53047073 1.5038445 0.51471782\n\t\t -0.5211165 1.50260055 0.51366746 -0.51211238 1.49999619 0.51211601 -0.50466877 1.49532604 0.51121408\n\t\t -0.49982336 1.46000016 0.53168011 -0.49875131 1.46000004 0.5234167 -0.49605638 1.46000016 0.51554275\n\t\t -0.49121991 1.46000016 0.50876284 -0.50017577 1.46830559 0.53999978 -0.50025886 1.46882391 0.53108722\n\t\t -0.49911451 1.46927309 0.52251476 -0.49640626 1.46952772 0.51462239;\n\tsetAttr \".vt[1328:1493]\" -0.49188012 1.46960711 0.50815171 -0.5012427 1.47655559 0.53999978\n\t\t -0.50133508 1.47735035 0.53070295 -0.50009322 1.47817421 0.52178842 -0.49745503 1.47888076 0.51363873\n\t\t -0.49300617 1.47920525 0.50699544 -0.5039342 1.48443818 0.53999978 -0.50384444 1.48528206 0.53047049\n\t\t -0.50260037 1.48633218 0.52111626 -0.4999961 1.48788381 0.51211208 -0.49532586 1.48878574 0.50466853\n\t\t -0.95999998 1.50000024 0.53999978 -0.95999998 1.53999996 0.49999976 -1 1.46000004 0.4599998\n\t\t -0.95999998 1.50017667 0.53168011 -0.95999998 1.50124884 0.5234167 -0.95999998 1.50394368 0.51554275\n\t\t -0.95999998 1.50878024 0.50876284 -0.96830547 1.49982429 0.53151846 -0.96852624 1.4997412 0.52413905\n\t\t -0.96871483 1.50072932 0.51749825 -0.96878374 1.50296855 0.51149911 -0.96878862 1.50655651 0.50659007\n\t\t -0.97655553 1.49875736 0.52220148 -0.97675312 1.49882102 0.51649284 -0.97691226 1.49990666 0.51170576\n\t\t -0.97681904 1.50176322 0.50766504 -0.97671008 1.50436521 0.50436991 -0.98443812 1.49606586 0.51162738\n\t\t -0.98438108 1.4967804 0.50837117 -0.98407471 1.49818039 0.50586778 -0.98335755 1.50000334 0.50383347\n\t\t -0.98289704 1.50197721 0.50197434 -0.98655683 1.5 0.49999964 -0.96831965 1.53150368 0.49982309\n\t\t -0.97658306 1.52216828 0.49875104 -0.98445702 1.51159954 0.49605608 -0.99123693 1.49998307 0.49121964\n\t\t -0.95999998 1.53169465 0.50017548 -0.96861494 1.52439833 0.50025856 -0.97688764 1.51676941 0.49927056\n\t\t -0.98447585 1.50853109 0.49703133 -0.99063587 1.50003397 0.49344325 -0.95999998 1.52344465 0.5012424\n\t\t -0.96873879 1.5176723 0.50117862 -0.9769491 1.51179981 0.50009322 -0.98410237 1.50590229 0.49823666\n\t\t -0.98972285 1.50000477 0.49563444 -0.95999998 1.51556206 0.50393391 -0.96878517 1.51159143 0.50321949\n\t\t -0.97682166 1.50768793 0.50181949 -0.98336071 1.50383055 0.49999654 -0.98826617 1.49999738 0.49802244\n\t\t -0.99982339 1.46831977 0.46849597 -0.99875134 1.47658312 0.47783136 -0.99605638 1.48445702 0.4884004\n\t\t -0.99121994 1.49123693 0.50001663 -0.99982423 1.46848142 0.46830523 -0.99871278 1.4758606 0.47560155\n\t\t -0.99742115 1.48250151 0.48323029 -0.99487829 1.4885006 0.49146861 -0.99066973 1.49340975 0.49996579\n\t\t -0.9987573 1.47779834 0.47655523 -0.99709725 1.48350668 0.48232758 -0.99566019 1.48829389 0.48820019\n\t\t -0.99339646 1.4923346 0.49409741 -0.98972762 1.49562979 0.49999481 -0.9960658 1.48837233 0.48443782\n\t\t -0.99462402 1.49162853 0.48840845 -0.99333471 1.4941318 0.49231184 -0.99140197 1.49616635 0.49616909\n\t\t -0.98826361 1.49802554 0.50000226 1 1.46000004 -0.5400002 0.95999998 1.5 -0.5400002\n\t\t 0.95999998 1.46000004 -0.50000024 0.99982339 1.46831965 -0.5400002 0.99875134 1.476583 -0.5400002\n\t\t 0.99605638 1.48445702 -0.5400002 0.99121994 1.49123669 -0.54000032 0.99982423 1.46000004 -0.53169477\n\t\t 0.9996075 1.46866894 -0.53142262 0.99841416 1.4771421 -0.53132486 0.99561709 1.48485398 -0.53138196\n\t\t 0.99109721 1.49106216 -0.53145635 0.9987573 1.46000004 -0.52344477 0.99840569 1.46877503 -0.52285147\n\t\t 0.99709785 1.47728109 -0.52275825 0.99438912 1.48457575 -0.52311432 0.99025434 1.49024916 -0.5234071\n\t\t 0.9960658 1.46000004 -0.51556218 0.99558073 1.46867514 -0.51508534 0.99437654 1.47691441 -0.51541591\n\t\t 0.99214089 1.48362994 -0.51637363 0.98867232 1.48867488 -0.51699221 0.98701847 1.48701835 -0.51298177\n\t\t 0.96000004 1.49982333 -0.53168058 0.96000004 1.49875116 -0.52341735 0.96000004 1.49605632 -0.51554322\n\t\t 0.96000004 1.49121976 -0.50876343 0.96830547 1.49982405 -0.54000032 0.96857774 1.49960732 -0.53133142\n\t\t 0.96867549 1.49841404 -0.52285826 0.96861833 1.49561691 -0.51514614 0.96854389 1.49109721 -0.50893807\n\t\t 0.97655553 1.49875712 -0.54000032 0.97714883 1.49840569 -0.5312252 0.97724205 1.49709773 -0.52271926\n\t\t 0.97688597 1.49438906 -0.51542449 0.97659314 1.49025416 -0.50975096 0.98443812 1.49606562 -0.54000032\n\t\t 0.98491496 1.49558067 -0.53132534 0.98458439 1.49437642 -0.52308583 0.98362666 1.49214077 -0.51637018\n\t\t 0.98300815 1.48867226 -0.51132536 0.96831965 1.46000004 -0.50017691 0.97658306 1.46000004 -0.50124896\n\t\t 0.98445702 1.46000004 -0.50394392 0.99123693 1.46000004 -0.50878036 0.96000004 1.46830535 -0.50017607\n\t\t 0.96866888 1.46857762 -0.50039279 0.97714216 1.46867537 -0.5015862 0.98485416 1.46861839 -0.50438321\n\t\t 0.99106234 1.46854377 -0.50890315 0.96000004 1.47655535 -0.501243 0.96877503 1.47714877 -0.50159466\n\t\t 0.97728109 1.47724199 -0.50290251 0.98457593 1.4768858 -0.50561118 0.99024928 1.47659302 -0.50974596\n\t\t 0.96000004 1.48443794 -0.5039345 0.96867508 1.48491478 -0.50441957 0.97691458 1.48458433 -0.50562382\n\t\t 0.98363006 1.4836266 -0.50785947 0.988675 1.48300815 -0.51132798 0.54000002 1.46000004 -0.50000024\n\t\t 0.54000002 1.5 -0.5400002 0.5 1.53999996 -0.5400002 0.46000001 1.53999984 -0.50000024\n\t\t 0.46000001 1.5 -0.46000028 0.5 1.45999992 -0.46000028 0.54000002 1.46831965 -0.50017691\n\t\t 0.54000002 1.476583 -0.50124896 0.54000002 1.48445702 -0.50394392 0.54000002 1.49123669 -0.50878036\n\t\t 0.53169453 1.45999992 -0.4998244 0.53117615 1.46891236 -0.49974132 0.53072703 1.47748494 -0.50088573\n\t\t 0.53047216 1.48537731 -0.50359404 0.53039289 1.49184799 -0.50812018 0.52344447 1.45999992 -0.49875748\n\t\t 0.52264965 1.46929669 -0.49866521 0.52182573 1.47821116 -0.49990714 0.52111924 1.48636103 -0.50254524\n\t\t 0.52079463 1.49300432 -0.50699413 0.51556188 1.46000004 -0.49606597 0.51471806 1.46952915 -0.49615586\n\t\t 0.5136677 1.47888339 -0.49739993 0.51211625 1.48788762 -0.50000417 0.51121432 1.49533129 -0.50467443\n\t\t 0.5 1.5 -0.50000024 0.53168035 1.50017667 -0.5400002 0.52341694 1.5012486 -0.54000032\n\t\t 0.51554298 1.50394368 -0.5400002 0.50876307 1.50878 -0.54000032 0.54000002 1.49982405 -0.53169477\n\t\t 0.53108746 1.49974108 -0.53117645 0.522515 1.50088549 -0.53072727;\n\tsetAttr \".vt[1494:1659]\" 0.51462263 1.50359368 -0.5304724 0.50815195 1.50811982 -0.53039324\n\t\t 0.54000002 1.49875712 -0.52344477 0.53070319 1.49866486 -0.52265 0.52178866 1.49990654 -0.52182591\n\t\t 0.51363897 1.50254488 -0.52111948 0.50699568 1.50699377 -0.52079499 0.54000002 1.49606562 -0.51556218\n\t\t 0.53047073 1.4961555 -0.51471829 0.5211165 1.49739957 -0.51366806 0.51211238 1.50000381 -0.51211655\n\t\t 0.50466877 1.5046742 -0.51121449 0.49982336 1.53999984 -0.53168058 0.49875131 1.53999996 -0.52341723\n\t\t 0.49605638 1.53999984 -0.51554322 0.49121991 1.53999984 -0.50876331 0.50017577 1.53169441 -0.54000032\n\t\t 0.50025886 1.53117609 -0.53108764 0.49911451 1.53072691 -0.52251518 0.49640626 1.53047228 -0.51462293\n\t\t 0.49188012 1.53039289 -0.50815225 0.5012427 1.52344441 -0.54000032 0.50133508 1.52264953 -0.53070343\n\t\t 0.50009322 1.52182579 -0.52178884 0.49745503 1.52111924 -0.51363921 0.49300617 1.52079475 -0.50699592\n\t\t 0.5039342 1.51556182 -0.54000032 0.50384444 1.51471806 -0.53047109 0.50260037 1.51366782 -0.52111673\n\t\t 0.4999961 1.51211619 -0.51211274 0.49532586 1.51121426 -0.50466895 0.46000001 1.53168023 -0.49982357\n\t\t 0.46000001 1.52341688 -0.49875164 0.46000001 1.51554298 -0.49605656 0.46000001 1.50876307 -0.49122012\n\t\t 0.4683055 1.53999996 -0.50017595 0.46882388 1.5310874 -0.50025904 0.46927294 1.52251494 -0.49911475\n\t\t 0.46952787 1.51462269 -0.49640656 0.46960714 1.50815201 -0.49188042 0.4765555 1.53999996 -0.50124288\n\t\t 0.47735032 1.53070307 -0.50133526 0.47817427 1.5217886 -0.50009358 0.47888076 1.51363885 -0.49745536\n\t\t 0.47920534 1.50699544 -0.49300635 0.48443812 1.53999996 -0.50393438 0.48528194 1.53047085 -0.50384474\n\t\t 0.4863323 1.5211165 -0.50260067 0.48788375 1.51211226 -0.49999642 0.48878568 1.50466871 -0.49532616\n\t\t 0.46831968 1.49982333 -0.46000028 0.47658306 1.49875128 -0.46000028 0.48445702 1.49605632 -0.46000028\n\t\t 0.49123687 1.49121988 -0.46000028 0.46000001 1.50017571 -0.46830571 0.46891254 1.5002588 -0.46882415\n\t\t 0.477485 1.49911439 -0.46927321 0.48537737 1.49640608 -0.46952808 0.49184805 1.49187994 -0.46960735\n\t\t 0.46000001 1.50124264 -0.47655571 0.46929684 1.50133514 -0.47735059 0.47821134 1.50009322 -0.47817457\n\t\t 0.48636103 1.49745488 -0.478881 0.49300438 1.49300611 -0.47920561 0.46000001 1.50393414 -0.48443842\n\t\t 0.46952927 1.50384438 -0.48528218 0.4788835 1.50260031 -0.48633254 0.48788762 1.49999595 -0.48788404\n\t\t 0.49533126 1.4953258 -0.48878598 0.50017661 1.45999992 -0.46831989 0.50124866 1.46000004 -0.47658324\n\t\t 0.50394362 1.46000004 -0.48445725 0.50878006 1.46000004 -0.49123704 0.4998242 1.46830547 -0.46000028\n\t\t 0.49974108 1.46882391 -0.46891284 0.50088549 1.46927285 -0.4774853 0.50359374 1.46952772 -0.48537767\n\t\t 0.50811988 1.46960711 -0.49184835 0.49875727 1.47655547 -0.46000028 0.49866492 1.47735023 -0.46929705\n\t\t 0.49990684 1.47817421 -0.47821164 0.502545 1.47888064 -0.48636127 0.50699383 1.47920513 -0.49300468\n\t\t 0.49606574 1.48443806 -0.46000028 0.49615556 1.48528183 -0.46952951 0.49739966 1.48633206 -0.47888374\n\t\t 0.50000393 1.48788357 -0.48788786 0.5046742 1.48878562 -0.49533153 0.46000001 1.46000004 -2.3841858e-07\n\t\t 0.5 1.46000004 -0.0400002 0.46000001 1.5 -0.0400002 0.46831968 1.46000004 -0.00017690659\n\t\t 0.47658306 1.46000004 -0.0012489557 0.48445702 1.46000004 -0.0039439201 0.49123687 1.46000004 -0.0087803602\n\t\t 0.46000004 1.46830547 -0.00017607212 0.46866891 1.46857774 -0.00039279461 0.47714216 1.46867549 -0.0015860796\n\t\t 0.48485416 1.46861839 -0.0043832064 0.49106231 1.46854389 -0.0089030266 0.46000004 1.47655547 -0.0012429953\n\t\t 0.46877503 1.47714877 -0.0015945435 0.47728106 1.47724199 -0.0029023886 0.4845759 1.47688591 -0.0056111813\n\t\t 0.49024928 1.47659314 -0.0097459555 0.46000004 1.48443806 -0.0039345026 0.46867511 1.4849149 -0.0044195652\n\t\t 0.47691458 1.48458433 -0.0056238174 0.48363003 1.4836266 -0.0078593493 0.488675 1.48300815 -0.011327982\n\t\t 0.48701844 1.48701835 -0.012981892 0.49982336 1.46831965 -0.0400002 0.49875131 1.476583 -0.0400002\n\t\t 0.49605638 1.48445702 -0.0400002 0.49121991 1.49123681 -0.0400002 0.4998242 1.46000004 -0.03169477\n\t\t 0.49960744 1.46866894 -0.031422496 0.49841416 1.4771421 -0.031324744 0.49561706 1.4848541 -0.031381965\n\t\t 0.49109721 1.49106216 -0.03145647 0.4987573 1.46000004 -0.023444772 0.49840569 1.46877503 -0.022851467\n\t\t 0.49709785 1.47728109 -0.022758245 0.49438909 1.48457587 -0.023114324 0.49025434 1.49024928 -0.023407102\n\t\t 0.49606574 1.46000004 -0.015562177 0.49558073 1.46867514 -0.01508534 0.49437648 1.47691453 -0.015415907\n\t\t 0.49214089 1.48362994 -0.016373634 0.48867229 1.488675 -0.016992092 0.46000004 1.49982333 -0.031680584\n\t\t 0.46000004 1.49875128 -0.023417234 0.46000004 1.49605632 -0.015543222 0.46000004 1.49121988 -0.0087634325\n\t\t 0.4683055 1.49982417 -0.0400002 0.46857774 1.49960744 -0.03133142 0.46867549 1.49841416 -0.022858143\n\t\t 0.46861836 1.49561703 -0.015146136 0.46854386 1.49109721 -0.0089379549 0.4765555 1.49875724 -0.0400002\n\t\t 0.4771488 1.49840569 -0.031225204 0.47724205 1.49709785 -0.022719145 0.47688597 1.49438906 -0.015424371\n\t\t 0.47659311 1.49025428 -0.0097509623 0.48443812 1.49606574 -0.0400002 0.48491493 1.49558067 -0.031325221\n\t\t 0.48458436 1.49437642 -0.023085713 0.48362666 1.49214089 -0.016370296 0.48300815 1.48867226 -0.01132524\n\t\t 0 1.53999996 -0.46000028 0.039999999 1.5 -0.46000028 0.039999999 1.53999984 -0.50000024\n\t\t 0.00017666444 1.53168035 -0.46000028 0.001248721 1.523417 -0.46000028 0.0039436668 1.51554298 -0.46000028\n\t\t 0.0087801088 1.50876319 -0.46000028 0.00017582253 1.53999984 -0.46830583 0.0012873136 1.53138506 -0.46852648\n\t\t 0.0025789021 1.5231123 -0.46871519 0.0051217857 1.51552439 -0.46878409 0.009330336 1.50936437 -0.46878898\n\t\t 0.0012427457 1.53999984 -0.47655582 0.0029027525 1.53126121 -0.47675323 0.0043399017 1.5230509 -0.4769125\n\t\t 0.0066035278 1.51589775 -0.4768194 0.010272408 1.51027739 -0.47671032;\n\tsetAttr \".vt[1660:1825]\" 0.0039342791 1.53999996 -0.48443842 0.0053760516 1.53121459 -0.48438144\n\t\t 0.0066653285 1.5231781 -0.48407495 0.0085980622 1.51663923 -0.48335779 0.011736395 1.51173401 -0.4828974\n\t\t 0.013443206 1.51344323 -0.48655713 0.039999999 1.50017655 -0.46831989 0.039999999 1.5012486 -0.47658336\n\t\t 0.039999995 1.50394356 -0.48445725 0.039999995 1.50878 -0.49123704 0.031694546 1.50017583 -0.46000028\n\t\t 0.031473763 1.50128722 -0.46861517 0.031285122 1.50257897 -0.47688794 0.031216208 1.50512183 -0.48447609\n\t\t 0.03121133 1.50933027 -0.49063611 0.023444541 1.50124276 -0.46000028 0.023246935 1.50290275 -0.46873915\n\t\t 0.023087731 1.50433969 -0.47694945 0.023180876 1.50660348 -0.48410261 0.023289898 1.5102725 -0.48972309\n\t\t 0.015561912 1.50393426 -0.46000028 0.015618922 1.5053761 -0.46878552 0.015925318 1.50666547 -0.47682202\n\t\t 0.01664247 1.50859809 -0.48336101 0.017102942 1.51173639 -0.48826635 0.03168036 1.53999984 -0.49982357\n\t\t 0.023416966 1.53999984 -0.49875164 0.015543012 1.53999996 -0.49605656 0.0087631587 1.53999984 -0.49122024\n\t\t 0.039999999 1.53169441 -0.4998244 0.031385072 1.53147364 -0.4987129 0.023112394 1.53128505 -0.49742126\n\t\t 0.015524212 1.53121614 -0.49487853 0.0093642063 1.53121126 -0.49066985 0.039999999 1.52344441 -0.49875748\n\t\t 0.03126118 1.52324677 -0.49709761 0.023050893 1.52308762 -0.49566031 0.015897667 1.52318072 -0.49339664\n\t\t 0.010277234 1.52328968 -0.48972785 0.039999995 1.51556182 -0.49606597 0.031214794 1.5156188 -0.49462426\n\t\t 0.023178317 1.51592517 -0.49333489 0.016639292 1.51664233 -0.49140227 0.011733835 1.51710284 -0.48826385\n\t\t 0.039999999 1.5 -0.0400002 0 1.53999996 -0.0400002 -0.039999999 1.53999996 -2.3841858e-07\n\t\t -0.039999999 1.5 0.039999723 0 1.46000004 0.039999723 0.039999999 1.46000004 -2.3841858e-07\n\t\t 0.03168036 1.50017667 -0.0400002 0.023416966 1.50124872 -0.0400002 0.015543012 1.50394368 -0.0400002\n\t\t 0.0087631587 1.50878012 -0.0400002 0.039999999 1.49982417 -0.03169477 0.031087454 1.4997412 -0.031176448\n\t\t 0.022514982 1.50088561 -0.030727386 0.014622661 1.5035938 -0.030472398 0.0081519932 1.50811994 -0.030393124\n\t\t 0.039999999 1.49875724 -0.023444772 0.030703146 1.49866486 -0.022650003 0.021788683 1.49990666 -0.021826029\n\t\t 0.013639002 1.502545 -0.021119475 0.0069957008 1.50699389 -0.020794868 0.039999999 1.49606574 -0.015562177\n\t\t 0.030470748 1.4961555 -0.014718294 0.021116532 1.49739957 -0.013667941 0.01211239 1.50000393 -0.012116551\n\t\t 0.0046687694 1.5046742 -0.011214614 4.3404255e-10 1.5 -2.3841858e-07 -0.00017666444 1.53999996 -0.031680584\n\t\t -0.001248721 1.53999996 -0.023417234 -0.0039436668 1.53999996 -0.015543222 -0.0087801088 1.53999996 -0.0087634325\n\t\t 0.00017582253 1.53169453 -0.0400002 0.00025887144 1.53117609 -0.031087756 -0.00088553375 1.53072703 -0.022515178\n\t\t -0.0035937466 1.53047228 -0.014622927 -0.0081198867 1.53039289 -0.0081522465 0.0012427457 1.52344453 -0.0400002\n\t\t 0.0013351121 1.52264965 -0.030703425 9.3235729e-05 1.52182579 -0.021788955 -0.0025449346 1.52111936 -0.013639212\n\t\t -0.0069937874 1.52079487 -0.0069959164 0.0039342791 1.51556194 -0.0400002 0.0038444814 1.51471806 -0.030470967\n\t\t 0.0026003795 1.51366782 -0.021116734 -3.8842177e-06 1.51211631 -0.012112617 -0.0046741539 1.51121426 -0.0046690702\n\t\t -0.039999999 1.53168035 0.00017642975 -0.039999995 1.523417 0.0012484789 -0.039999995 1.51554298 0.0039434433\n\t\t -0.039999995 1.50876319 0.0087798834 -0.031694546 1.53999996 -0.00017607212 -0.031176144 1.53108752 -0.000259161\n\t\t -0.030727083 1.52251506 0.00088524818 -0.030472158 1.51462269 0.0035934448 -0.030392876 1.50815201 0.0081195831\n\t\t -0.023444541 1.53999996 -0.0012429953 -0.0226497 1.53070319 -0.0013353825 -0.021825785 1.52178872 -9.3460083e-05\n\t\t -0.021119269 1.51363897 0.0025446415 -0.020794675 1.50699556 0.0069935322 -0.015561912 1.53999996 -0.0039345026\n\t\t -0.014718076 1.53047085 -0.003844738 -0.013667712 1.5211165 -0.0026006699 -0.012116274 1.51211238 3.695488e-06\n\t\t -0.011214317 1.50466871 0.0046739578 -0.03168036 1.49982333 0.039999723 -0.023416966 1.49875128 0.039999723\n\t\t -0.015543012 1.49605632 0.039999723 -0.0087631587 1.49121988 0.039999723 -0.039999999 1.50017583 0.031694293\n\t\t -0.031087453 1.5002588 0.031175852 -0.02251498 1.49911451 0.03072679 -0.01462266 1.4964062 0.030471921\n\t\t -0.0081519932 1.49188006 0.030392647 -0.039999995 1.50124276 0.023444295 -0.030703144 1.50133514 0.022649407\n\t\t -0.021788685 1.50009334 0.021825552 -0.013639002 1.497455 0.021118999 -0.0069957003 1.49300611 0.020794392\n\t\t -0.039999995 1.50393426 0.0155617 -0.030470744 1.5038445 0.014717817 -0.021116532 1.50260043 0.013667464\n\t\t -0.01211239 1.49999607 0.012116075 -0.004668769 1.4953258 0.011214018 0.00017666444 1.46000004 0.031680107\n\t\t 0.001248721 1.46000004 0.023416758 0.0039436668 1.46000004 0.015542746 0.0087801088 1.46000004 0.0087629557\n\t\t -0.00017582253 1.46830547 0.039999723 -0.00025887144 1.46882403 0.03108716 0.00088553375 1.46927297 0.022514701\n\t\t 0.0035937466 1.46952772 0.01462245 0.0081198867 1.46960711 0.0081517696 -0.0012427457 1.47655547 0.039999723\n\t\t -0.0013351121 1.47735035 0.030702949 -9.3235692e-05 1.47817421 0.021788478 0.0025449346 1.47888064 0.013638735\n\t\t 0.0069937874 1.47920513 0.0069954395 -0.0039342791 1.48443806 0.039999723 -0.0038444812 1.48528194 0.03047049\n\t\t -0.0026003793 1.48633218 0.021116257 3.884526e-06 1.48788369 0.012112141 0.0046741543 1.48878574 0.0046684742\n\t\t 0.039999999 1.46831965 -0.00017690659 0.039999999 1.476583 -0.0012489557 0.039999999 1.48445702 -0.0039439201\n\t\t 0.039999999 1.49123681 -0.0087803602 0.031694546 1.46000004 0.00017559528 0.031176144 1.46891248 0.00025868416\n\t\t 0.030727085 1.47748494 -0.00088572502 0.030472159 1.48537731 -0.0035940409 0.030392878 1.49184799 -0.0081201792\n\t\t 0.023444541 1.46000004 0.0012425184 0.0226497 1.46929681 0.0013349056 0.021825785 1.47821128 9.2983246e-05\n\t\t 0.021119269 1.48636103 -0.0025451183 0.020794675 1.49300444 -0.006994009 0.015561912 1.46000004 0.0039340258\n\t\t 0.014718076 1.46952915 0.0038442612 0.013667712 1.4788835 0.002600193 0.012116274 1.48788762 -4.1723251e-06\n\t\t 0.011214317 1.49533129 -0.0046744347 -0.039999999 1.46000016 0.49999976;\n\tsetAttr \".vt[1826:1991]\" 0 1.46000004 0.4599998 -0.039999999 1.5 0.4599998 -0.03168036 1.46000016 0.49982315\n\t\t -0.023416966 1.46000016 0.4987511 -0.015543012 1.46000004 0.49605614 -0.0087631587 1.46000016 0.4912197\n\t\t -0.039999999 1.46830559 0.49982393 -0.031331137 1.46857786 0.49960721 -0.022857871 1.46867561 0.49841392\n\t\t -0.015145885 1.46861851 0.49561679 -0.0089377277 1.46854401 0.49109697 -0.039999999 1.47655559 0.498757\n\t\t -0.031225016 1.47714889 0.49840546 -0.022718957 1.47724211 0.49709761 -0.01542413 1.47688603 0.49438882\n\t\t -0.0097507574 1.47659326 0.4902541 -0.039999999 1.48443818 0.4960655 -0.031324942 1.48491502 0.49558049\n\t\t -0.023085464 1.48458433 0.49437624 -0.016370015 1.48362672 0.49214065 -0.011325035 1.48300827 0.48867202\n\t\t -0.012981603 1.48701835 0.48701823 -0.00017666817 1.46831977 0.4599998 -0.001248721 1.47658312 0.4599998\n\t\t -0.0039436668 1.48445714 0.4599998 -0.0087801088 1.49123693 0.4599998 -0.00017582625 1.46000016 0.46830529\n\t\t -0.00039257482 1.46866906 0.4685775 -0.0015858822 1.47714221 0.46867526 -0.0043829642 1.4848541 0.46861815\n\t\t -0.0089028198 1.49106228 0.46854365 -0.0012427419 1.46000016 0.47655529 -0.0015943423 1.46877515 0.47714853\n\t\t -0.0029021949 1.47728109 0.47724175 -0.0056109466 1.48457599 0.47688568 -0.009745691 1.49024928 0.4765929\n\t\t -0.0039342791 1.46000004 0.48443788 -0.0044193082 1.46867526 0.48491466 -0.005623538 1.47691464 0.48458409\n\t\t -0.0078591444 1.48362994 0.48362637 -0.011327736 1.48867512 0.48300791 -0.039999999 1.49982345 0.46831942\n\t\t -0.039999999 1.4987514 0.47658277 -0.039999999 1.49605644 0.48445678 -0.039999999 1.49122 0.49123663\n\t\t -0.031694546 1.49982429 0.4599998 -0.031422306 1.49960744 0.4686687 -0.031324536 1.49841428 0.47714186\n\t\t -0.031381682 1.49561715 0.48485386 -0.031456172 1.49109733 0.49106205 -0.023444539 1.49875736 0.4599998\n\t\t -0.022851225 1.49840581 0.4687748 -0.022757968 1.49709785 0.47728086 -0.023114076 1.49438918 0.48457563\n\t\t -0.023406917 1.4902544 0.49024904 -0.015561912 1.49606586 0.4599998 -0.01508511 1.49558067 0.4686749\n\t\t -0.015415663 1.49437642 0.47691429 -0.016373379 1.49214089 0.48362982 -0.016991891 1.48867238 0.48867476\n\t\t -0.95999998 2.5 -0.46000051 -0.95999998 2.53999996 -0.50000048 -1 2.46000004 -0.54000044\n\t\t -0.95999998 2.50017667 -0.46832013 -0.95999998 2.5012486 -0.47658348 -0.95999998 2.50394368 -0.48445749\n\t\t -0.95999998 2.50878 -0.49123716 -0.96830547 2.49982429 -0.46848154 -0.96852624 2.49974084 -0.47586107\n\t\t -0.96871483 2.50072908 -0.48250198 -0.96878374 2.50296831 -0.48850107 -0.96878862 2.50655651 -0.49341011\n\t\t -0.97655553 2.49875736 -0.4777987 -0.97675312 2.49882126 -0.48350716 -0.97691226 2.49990654 -0.48829436\n\t\t -0.97681904 2.50176287 -0.49233508 -0.97671008 2.50436544 -0.49563026 -0.98443812 2.49606562 -0.4883728\n\t\t -0.98438108 2.4967804 -0.49162889 -0.98407471 2.49818039 -0.49413228 -0.98335755 2.50000334 -0.49616671\n\t\t -0.98289704 2.50197721 -0.49802589 -0.98655683 2.5 -0.50000048 -0.96831965 2.53150368 -0.50017691\n\t\t -0.97658306 2.52216792 -0.50124907 -0.98445702 2.5115993 -0.50394392 -0.99123693 2.49998307 -0.50878048\n\t\t -0.95999998 2.53169441 -0.49982452 -0.96861494 2.52439809 -0.49974155 -0.97688764 2.51676917 -0.50072956\n\t\t -0.98447585 2.50853086 -0.50296879 -0.99063587 2.50003386 -0.50655699 -0.95999998 2.52344441 -0.4987576\n\t\t -0.96873879 2.51767159 -0.4988215 -0.9769491 2.51179934 -0.49990678 -0.98410237 2.50590229 -0.50176358\n\t\t -0.98972285 2.50000477 -0.50436568 -0.95999998 2.51556158 -0.49606609 -0.96878517 2.51159096 -0.49678063\n\t\t -0.97682166 2.50768757 -0.49818063 -0.98336071 2.50383043 -0.50000358 -0.98826617 2.49999714 -0.50197768\n\t\t -0.99982339 2.46831942 -0.53150415 -0.99875134 2.476583 -0.52216887 -0.99605638 2.48445702 -0.51159978\n\t\t -0.99121994 2.49123693 -0.49998355 -0.99982423 2.46848106 -0.53169489 -0.99871278 2.4758606 -0.52439857\n\t\t -0.99742115 2.48250151 -0.51676989 -0.99487829 2.4885006 -0.50853133 -0.99066973 2.49340963 -0.50003433\n\t\t -0.9987573 2.47779822 -0.52344489 -0.99709725 2.48350668 -0.51767254 -0.99566019 2.48829365 -0.51179981\n\t\t -0.99339646 2.49233484 -0.50590253 -0.98972762 2.49562979 -0.50000525 -0.9960658 2.48837233 -0.5155623\n\t\t -0.99462402 2.49162865 -0.51159167 -0.99333471 2.49413204 -0.50768828 -0.99140197 2.49616623 -0.50383091\n\t\t -0.98826361 2.49802542 -0.49999785 -0.46000001 1.53999996 -2.3841858e-07 -0.5 1.53999996 0.039999723\n\t\t -0.46000001 1.5 0.039999723 -0.46831968 1.53999996 0.00017642975 -0.47658306 1.53999996 0.0012484789\n\t\t -0.48445702 1.53999996 0.0039434433 -0.49123687 1.53999996 0.0087798834 -0.46000001 1.53169453 0.00017559528\n\t\t -0.46861494 1.53147376 0.0012871027 -0.47688764 1.53128505 0.0025786161 -0.48447582 1.53121614 0.0051215887\n\t\t -0.49063581 1.53121126 0.0093300343 -0.46000001 1.52344453 0.0012425184 -0.46873885 1.52324688 0.0029025078\n\t\t -0.47694916 1.52308774 0.004339695 -0.48410237 1.52318084 0.006603241 -0.48972282 1.5232898 0.010272145\n\t\t -0.46000001 1.51556194 0.0039340258 -0.46878523 1.51561892 0.0053758621 -0.47682172 1.51592529 0.0066651106\n\t\t -0.48336071 1.51664245 0.0085978508 -0.48826617 1.51710296 0.011736155 -0.48655683 1.51344335 0.013442993\n\t\t -0.49982336 1.53168035 0.039999723 -0.49875131 1.523417 0.039999723 -0.49605638 1.51554298 0.039999723\n\t\t -0.49121991 1.50876319 0.039999723 -0.4998242 1.53999996 0.031694293 -0.49871269 1.53138518 0.031473517\n\t\t -0.49742109 1.52311242 0.031284928 -0.49487823 1.51552439 0.031215906 -0.4906697 1.50936437 0.031211138\n\t\t -0.49875727 1.53999996 0.023444295 -0.49709725 1.53126121 0.023246646 -0.4956601 1.52305102 0.023087502\n\t\t -0.49339646 1.51589775 0.023180604 -0.48972762 1.51027751 0.02328968 -0.49606574 1.53999996 0.0155617\n\t\t -0.49462396 1.53121471 0.015618682 -0.49333465 1.52317822 0.01592505 -0.49140194 1.51663935 0.016642213\n\t\t -0.48826361 1.51173401 0.017102718 -0.46000001 1.50017667 0.031680107 -0.46000001 1.50124872 0.023416758\n\t\t -0.46000001 1.50394368 0.015542746;\n\tsetAttr \".vt[1992:2157]\" -0.46000001 1.50878012 0.0087629557 -0.4683055 1.50017583 0.039999723\n\t\t -0.46852624 1.50128734 0.031384826 -0.46871489 1.50257897 0.023112178 -0.4687838 1.50512183 0.015523911\n\t\t -0.46878868 1.50933027 0.0093640089 -0.4765555 1.50124276 0.039999723 -0.47675309 1.50290275 0.031260967\n\t\t -0.47691226 1.50433981 0.023050666 -0.47681913 1.5066036 0.015897393 -0.47671011 1.5102725 0.010277033\n\t\t -0.48443812 1.50393426 0.039999723 -0.48438111 1.5053761 0.031214595 -0.48407471 1.50666547 0.023178101\n\t\t -0.48335755 1.50859833 0.016638994 -0.4828971 1.51173651 0.011733532 -0.039999999 1.9599998 -1.000000238419\n\t\t 0 2.039999723 -0.96000028 0.039999999 1.99999976 -0.96000028 -0.03168036 1.96849608 -0.99982381\n\t\t -0.023416966 1.9778316 -0.99875176 -0.015543012 1.98840046 -0.99605668 -0.0087631587 2.000016689301 -0.99122024\n\t\t -0.031518783 1.96830535 -0.99982464 -0.024139341 1.97560167 -0.99871314 -0.017498571 1.98323035 -0.9974215\n\t\t -0.01149944 1.99146891 -0.99487865 -0.0065903827 1.99996591 -0.99067008 -0.022201862 1.97655535 -0.99875772\n\t\t -0.016493209 1.9823277 -0.99709761 -0.011706073 1.98820019 -0.99566054 -0.0076653287 1.99409771 -0.99339688\n\t\t -0.0043701609 1.99999499 -0.98972785 -0.01162776 1.98443794 -0.99606621 -0.0083715534 1.98840857 -0.99462426\n\t\t -0.0058681392 1.99231195 -0.99333501 -0.0038338045 1.99616933 -0.99140227 -0.0019746642 2.000002384186 -0.98826385\n\t\t -2.6231652e-08 1.99999976 -0.98655725 0.00017666444 2.031680107 -0.96000028 0.001248721 2.023416758 -0.96000028\n\t\t 0.0039436668 2.015542746 -0.96000028 0.0087801088 2.0087628365 -0.96000028 -0.00017582253 2.031518459 -0.96830583\n\t\t -0.00025887144 2.024138927 -0.9685266 0.00072919484 2.017498493 -0.96871519 0.0029683909 2.011499405 -0.96878409\n\t\t 0.0065564984 2.0065903664 -0.96878886 -0.0012427457 2.022201538 -0.97655582 -0.001178951 2.016492844 -0.97675347\n\t\t -9.3502822e-05 2.011705875 -0.9769125 0.0017630607 2.0076651573 -0.97681928 0.0043653082 2.0043697357 -0.97671032\n\t\t -0.0039342791 2.011627436 -0.98443842 -0.0032198369 2.0083713531 -0.98438144 -0.0018197534 2.0058679581 -0.98407507\n\t\t 3.1666993e-06 2.0038337708 -0.98335791 0.0019771839 2.0019745827 -0.98289728 0.031503655 1.99982321 -0.96831989\n\t\t 0.022168195 1.99875116 -0.97658336 0.011599277 1.9960562 -0.98445725 -1.7071179e-05 1.99121976 -0.99123728\n\t\t 0.031694546 2.00017547607 -0.96000028 0.024398165 2.00025892258 -0.96861529 0.01676931 1.99927068 -0.97688806\n\t\t 0.0085309613 1.99703145 -0.98447621 3.3783726e-05 1.99344337 -0.99063611 0.023444541 2.0012423992 -0.96000028\n\t\t 0.017672088 2.0011787415 -0.96873903 0.011799499 2.000092983246 -0.97694945 0.0059021856 1.99823678 -0.98410273\n\t\t 4.7669892e-06 1.99563468 -0.98972321 0.015561912 2.003934145 -0.96000028 0.011591299 2.0032196045 -0.96878552\n\t\t 0.0076878094 2.0018196106 -0.9768219 0.0038305584 1.99999666 -0.98336112 -2.5986228e-06 1.99802256 -0.98826647\n\t\t 0.46000001 1.9599998 -1.000000238419 0.46000001 1.99999976 -0.96000028 0.5 1.9599998 -0.96000028\n\t\t 0.46000004 1.96831942 -0.99982381 0.46000004 1.97658277 -0.99875164 0.46000004 1.98445678 -0.9960568\n\t\t 0.46000004 1.99123669 -0.99122036 0.4683055 1.9599998 -0.99982452 0.46857774 1.9686687 -0.9996078\n\t\t 0.46867549 1.97714186 -0.99841452 0.46861836 1.98485398 -0.99561751 0.46854386 1.99106216 -0.99109757\n\t\t 0.4765555 1.9599998 -0.9987576 0.4771488 1.9687748 -0.99840593 0.47724205 1.97728086 -0.99709821\n\t\t 0.47688594 1.98457575 -0.99438941 0.47659311 1.99024916 -0.99025476 0.48443812 1.9599998 -0.99606609\n\t\t 0.48491493 1.9686749 -0.99558115 0.48458436 1.97691441 -0.99437678 0.48362666 1.9836297 -0.99214125\n\t\t 0.48300815 1.98867488 -0.98867261 0.48701844 1.98701835 -0.9870187 0.46831968 1.99982321 -0.96000028\n\t\t 0.47658306 1.99875116 -0.9600004 0.48445702 1.9960562 -0.96000028 0.49123687 1.99121976 -0.9600004\n\t\t 0.46000004 1.99982405 -0.96830571 0.46866891 1.99960732 -0.96857798 0.47714216 1.99841404 -0.96867573\n\t\t 0.48485416 1.99561691 -0.96861875 0.49106231 1.99109709 -0.96854424 0.46000004 1.99875712 -0.97655594\n\t\t 0.46877503 1.99840546 -0.97714925 0.47728109 1.99709773 -0.97724235 0.4845759 1.99438882 -0.97688627\n\t\t 0.49024928 1.99025416 -0.97659338 0.46000004 1.99606562 -0.98443854 0.46867511 1.99558043 -0.98491526\n\t\t 0.47691458 1.99437618 -0.98458481 0.48363 1.99214077 -0.98362696 0.488675 1.98867214 -0.98300838\n\t\t 0.49982336 1.9599998 -0.96831989 0.49875131 1.9599998 -0.97658348 0.49605638 1.9599998 -0.98445725\n\t\t 0.49121991 1.9599998 -0.99123716 0.4998242 1.96830535 -0.9600004 0.49960744 1.96857762 -0.9686693\n\t\t 0.49841416 1.96867537 -0.97714245 0.49561706 1.96861815 -0.98485446 0.49109721 1.96854377 -0.99106276\n\t\t 0.4987573 1.97655535 -0.9600004 0.49840569 1.97714865 -0.96877527 0.49709785 1.97724199 -0.97728145\n\t\t 0.49438909 1.9768858 -0.98457634 0.49025434 1.97659302 -0.99024951 0.49606574 1.98443794 -0.9600004\n\t\t 0.49558073 1.98491478 -0.96867549 0.49437648 1.98458409 -0.97691488 0.49214089 1.98362637 -0.98363042\n\t\t 0.48867229 1.98300791 -0.98867536 -1 1.96000004 0.45999968 -0.95999998 1.96000004 0.49999964\n\t\t -0.95999998 2 0.45999968 -0.99982339 1.96000004 0.46831942 -0.99875134 1.96000028 0.47658277\n\t\t -0.99605638 1.96000004 0.48445666 -0.99121994 1.96000004 0.49123657 -0.99982423 1.96830559 0.45999968\n\t\t -0.9996075 1.96857786 0.46866858 -0.99841416 1.96867561 0.47714186 -0.99561709 1.96861839 0.48485386\n\t\t -0.99109721 1.96854389 0.49106205 -0.9987573 1.97655559 0.45999968 -0.99840569 1.97714877 0.46877468\n\t\t -0.99709785 1.97724199 0.47728074 -0.99438912 1.97688591 0.48457563 -0.99025434 1.97659314 0.49024892\n\t\t -0.9960658 1.98443818 0.45999968 -0.99558073 1.98491502 0.46867478 -0.99437654 1.98458433 0.47691429\n\t\t -0.99214089 1.98362672 0.4836297 -0.98867232 1.98300827 0.48867464 -0.98701847 1.98701847 0.48701811\n\t\t -0.96000004 1.96831965 0.49982309 -0.96000004 1.97658312 0.49875104 -0.96000004 1.98445725 0.49605608\n\t\t -0.96000004 1.99123681 0.49121964 -0.96830547 1.96000016 0.49982393;\n\tsetAttr \".vt[2158:2323]\" -0.96857774 1.96866906 0.49960709 -0.96867549 1.97714221 0.4984138\n\t\t -0.96861833 1.9848541 0.49561679 -0.96854389 1.9910624 0.49109685 -0.97655553 1.96000004 0.498757\n\t\t -0.97714883 1.96877503 0.49840534 -0.97724205 1.97728121 0.49709749 -0.97688597 1.98457599 0.49438882\n\t\t -0.97659314 1.9902494 0.49025404 -0.98443812 1.96000016 0.49606538 -0.98491496 1.96867537 0.49558043\n\t\t -0.98458439 1.97691464 0.49437618 -0.98362666 1.98363006 0.49214053 -0.98300815 1.98867512 0.48867202\n\t\t -0.96831965 1.99982333 0.45999968 -0.97658306 1.9987514 0.45999968 -0.98445702 1.99605632 0.45999968\n\t\t -0.99123693 1.99122 0.45999968 -0.96000004 1.99982417 0.46830523 -0.96866888 1.99960744 0.46857738\n\t\t -0.97714216 1.99841416 0.46867514 -0.98485416 1.99561715 0.46861804 -0.99106234 1.99109733 0.46854353\n\t\t -0.96000004 1.99875724 0.47655523 -0.96877503 1.99840569 0.47714853 -0.97728109 1.99709797 0.47724175\n\t\t -0.98457593 1.99438906 0.47688568 -0.99024928 1.99025428 0.47659278 -0.96000004 1.99606586 0.48443782\n\t\t -0.96867508 1.99558079 0.48491466 -0.97691458 1.99437642 0.48458409 -0.98363006 1.99214101 0.48362637\n\t\t -0.988675 1.98867226 0.48300779 -0.95999998 2 0.039999723 -0.95999998 2.039999962 -2.3841858e-07\n\t\t -1 1.96000004 -0.0400002 -0.95999998 2.00017666817 0.031679988 -0.95999998 2.0012488365 0.023416638\n\t\t -0.95999998 2.0039436817 0.015542626 -0.95999998 2.0087800026 0.0087628365 -0.96830547 1.99982405 0.03151834\n\t\t -0.96852624 1.9997412 0.024138927 -0.96871483 2.00072908401 0.017498255 -0.96878374 2.0029683113 0.011499047\n\t\t -0.96878862 2.0065565109 0.0065900087 -0.97655553 1.99875724 0.022201419 -0.97675312 1.99882126 0.016492724\n\t\t -0.97691226 1.99990666 0.011705637 -0.97681904 2.0017631054 0.0076649189 -0.97671008 2.0043654442 0.0043698549\n\t\t -0.98443812 1.99606574 0.011627316 -0.98438108 1.9967804 0.0083711147 -0.98407471 1.99818027 0.0058677197\n\t\t -0.98335755 2.00000333786 0.0038334131 -0.98289704 2.0019772053 0.0019743443 -0.98655683 2 -2.3841858e-07\n\t\t -0.96831965 2.031503677 -0.00017690659 -0.97658306 2.022168159 -0.0012490749 -0.98445702 2.011599302 -0.0039439201\n\t\t -0.99123693 1.99998295 -0.0087803602 -0.95999998 2.031694412 0.00017547607 -0.96861494 2.024398088 0.00025844574\n\t\t -0.97688764 2.016769409 -0.00072956085 -0.98447585 2.0085310936 -0.0029687881 -0.99063587 2.000033855438 -0.0065567493\n\t\t -0.95999998 2.023444414 0.0012423992 -0.96873879 2.017671824 0.001178503 -0.9769491 2.011799335 9.3221664e-05\n\t\t -0.98410237 2.0059022903 -0.0017633438 -0.98972285 2.000004768372 -0.0043656826 -0.95999998 2.015561819 0.0039339066\n\t\t -0.96878517 2.011591196 0.0032196045 -0.97682166 2.0076875687 0.0018193722 -0.98336071 2.0038304329 -3.5762787e-06\n\t\t -0.98826617 1.99999738 -0.0019774437 -0.99982339 1.96831965 -0.031504035 -0.99875134 1.976583 -0.022168636\n\t\t -0.99605638 1.98445702 -0.01159966 -0.99121994 1.99123681 1.6570091e-05 -0.99982423 1.9684813 -0.031694889\n\t\t -0.99871278 1.9758606 -0.024398565 -0.99742115 1.98250139 -0.016769767 -0.99487829 1.9885006 -0.0085314512\n\t\t -0.99066973 1.99340963 -3.4213066e-05 -0.9987573 1.97779822 -0.023444891 -0.99709725 1.98350668 -0.017672539\n\t\t -0.99566019 1.98829389 -0.011799812 -0.99339646 1.9923346 -0.005902648 -0.98972762 1.99562991 -5.2452087e-06\n\t\t -0.9960658 1.98837233 -0.015562296 -0.99462402 1.99162841 -0.011591673 -0.99333471 1.9941318 -0.0076882839\n\t\t -0.99140197 1.99616623 -0.0038309097 -0.98826361 1.99802542 2.1457672e-06 0.5 1.96000004 -0.54000044\n\t\t 0.46000001 2 -0.54000044 0.46000001 1.95999992 -0.50000024 0.49982336 1.96831965 -0.54000044\n\t\t 0.49875131 1.976583 -0.54000044 0.49605638 1.98445702 -0.54000044 0.49121991 1.99123669 -0.54000032\n\t\t 0.4998242 1.96000004 -0.53169489 0.49960744 1.96866894 -0.53142262 0.49841416 1.9771421 -0.53132486\n\t\t 0.49561706 1.98485398 -0.53138196 0.49109721 1.99106216 -0.53145659 0.49875727 1.95999992 -0.52344489\n\t\t 0.49840569 1.96877491 -0.52285147 0.49709785 1.97728097 -0.52275825 0.49438909 1.98457575 -0.52311432\n\t\t 0.49025434 1.99024916 -0.52340734 0.49606574 1.95999992 -0.5155623 0.49558073 1.96867502 -0.51508546\n\t\t 0.49437648 1.97691441 -0.51541603 0.49214089 1.98362982 -0.51637363 0.48867229 1.98867488 -0.51699221\n\t\t 0.48701844 1.98701835 -0.51298201 0.46000004 1.99982333 -0.53168082 0.46000004 1.99875116 -0.52341735\n\t\t 0.46000004 1.99605632 -0.51554346 0.46000004 1.99121976 -0.50876343 0.4683055 1.99982405 -0.54000032\n\t\t 0.46857774 1.99960732 -0.53133142 0.46867549 1.99841404 -0.52285826 0.46861836 1.99561691 -0.51514614\n\t\t 0.46854386 1.99109709 -0.50893807 0.4765555 1.99875712 -0.54000032 0.4771488 1.99840569 -0.53122544\n\t\t 0.47724205 1.99709773 -0.52271926 0.47688597 1.99438894 -0.51542449 0.47659311 1.99025416 -0.5097512\n\t\t 0.48443812 1.99606562 -0.54000032 0.48491493 1.99558055 -0.53132534 0.48458436 1.9943763 -0.52308583\n\t\t 0.48362666 1.99214077 -0.51637042 0.48300815 1.98867226 -0.51132536 0.46831968 1.95999992 -0.50017691\n\t\t 0.47658306 1.95999992 -0.50124907 0.48445702 1.95999992 -0.50394392 0.49123687 1.95999992 -0.50878048\n\t\t 0.46000004 1.96830535 -0.50017607 0.46866891 1.96857762 -0.50039279 0.47714216 1.96867537 -0.50158632\n\t\t 0.48485416 1.96861827 -0.50438333 0.49106231 1.96854377 -0.50890315 0.46000004 1.97655535 -0.501243\n\t\t 0.46877503 1.97714877 -0.50159478 0.47728106 1.97724199 -0.50290263 0.4845759 1.9768858 -0.5056113\n\t\t 0.49024928 1.97659302 -0.50974596 0.46000004 1.98443794 -0.5039345 0.46867511 1.98491478 -0.50441968\n\t\t 0.47691458 1.98458433 -0.50562382 0.48363003 1.9836266 -0.50785947 0.488675 1.98300803 -0.51132798\n\t\t 0 2.039999962 -0.54000044 -0.039999999 2.039999962 -0.50000024 -0.039999999 2 -0.46000028\n\t\t 0 1.96000004 -0.46000028 0.039999999 1.95999992 -0.50000024 0.039999999 2 -0.54000044\n\t\t -0.00017666444 2.039999962 -0.53168058 -0.001248721 2.039999962 -0.52341723 -0.0039436668 2.039999962 -0.51554322\n\t\t -0.0087801088 2.039999962 -0.50876331 0.00017582253 2.031694412 -0.54000044;\n\tsetAttr \".vt[2324:2489]\" 0.00025887144 2.03117609 -0.53108788 -0.00088553375 2.030727148 -0.5225153\n\t\t -0.0035937466 2.030472279 -0.51462293 -0.0081198867 2.030393124 -0.50815225 0.0012427457 2.023444414 -0.54000044\n\t\t 0.0013351121 2.022649765 -0.53070354 9.3235736e-05 2.02182579 -0.52178907 -0.0025449346 2.021119356 -0.51363945\n\t\t -0.0069937874 2.020794868 -0.50699592 0.0039342791 2.015561581 -0.54000044 0.0038444814 2.014718056 -0.53047109\n\t\t 0.0026003795 2.013667583 -0.52111697 -3.8842904e-06 2.012116432 -0.51211286 -0.0046741539 2.011214495 -0.50466919\n\t\t 2.2560778e-10 1.99999988 -0.50000024 -0.039999999 2.031680346 -0.49982381 -0.039999995 2.023416996 -0.49875164\n\t\t -0.039999995 2.015542984 -0.4960568 -0.039999995 2.0087630749 -0.49122024 -0.031694546 2.039999962 -0.50017619\n\t\t -0.031176144 2.031087399 -0.50025916 -0.030727083 2.02251482 -0.49911475 -0.030472158 2.014622688 -0.49640656\n\t\t -0.030392876 2.0081520081 -0.49188042 -0.023444541 2.039999962 -0.50124311 -0.0226497 2.030703068 -0.50133538\n\t\t -0.021825785 2.021788597 -0.50009346 -0.021119269 2.013638973 -0.49745536 -0.020794675 2.0069956779 -0.49300647\n\t\t -0.015561912 2.039999962 -0.50393462 -0.014718076 2.030470848 -0.50384474 -0.013667712 2.021116495 -0.50260067\n\t\t -0.012116274 2.012112379 -0.49999642 -0.011214317 2.0046687126 -0.49532628 -0.03168036 1.99982333 -0.46000028\n\t\t -0.023416966 1.99875128 -0.4600004 -0.015543012 1.99605632 -0.46000028 -0.0087631587 1.99121988 -0.4600004\n\t\t -0.039999999 2.00017571449 -0.46830583 -0.031087453 2.00025892258 -0.46882415 -0.02251498 1.99911439 -0.46927321\n\t\t -0.01462266 1.99640608 -0.46952808 -0.0081519932 1.99187994 -0.46960747 -0.039999995 2.0012426376 -0.47655582\n\t\t -0.030703144 2.001335144 -0.47735071 -0.021788685 2.000093460083 -0.47817469 -0.013639002 1.99745488 -0.478881\n\t\t -0.0069957003 1.99300611 -0.47920573 -0.039999995 2.0039343834 -0.48443842 -0.030470744 2.0038442612 -0.48528218\n\t\t -0.021116532 2.002600193 -0.48633265 -0.01211239 1.99999595 -0.48788416 -0.004668769 1.9953258 -0.48878598\n\t\t 0.00017666444 1.95999992 -0.46831989 0.001248721 1.96000004 -0.47658348 0.0039436668 1.95999992 -0.48445725\n\t\t 0.0087801088 1.96000004 -0.49123716 -0.00017582253 1.96830547 -0.4600004 -0.00025887144 1.96882391 -0.46891284\n\t\t 0.00088553375 1.96927285 -0.4774853 0.0035937466 1.96952772 -0.48537779 0.0081198867 1.96960711 -0.49184847\n\t\t -0.0012427457 1.97655547 -0.4600004 -0.0013351121 1.97735023 -0.46929705 -9.3235685e-05 1.97817421 -0.47821164\n\t\t 0.0025449346 1.97888052 -0.48636127 0.0069937874 1.97920501 -0.49300456 -0.0039342791 1.98443806 -0.4600004\n\t\t -0.0038444812 1.98528183 -0.46952963 -0.0026003793 1.98633206 -0.47888374 3.8844532e-06 1.98788357 -0.48788798\n\t\t 0.0046741543 1.98878574 -0.49533153 0.039999999 1.96831965 -0.50017691 0.039999999 1.976583 -0.50124907\n\t\t 0.039999999 1.98445702 -0.50394392 0.039999999 1.99123669 -0.50878036 0.031694546 1.95999992 -0.49982452\n\t\t 0.031176144 1.96891236 -0.49974144 0.030727085 1.97748482 -0.50088573 0.030472159 1.98537731 -0.50359416\n\t\t 0.030392878 1.99184799 -0.5081203 0.023444541 1.95999992 -0.4987576 0.0226497 1.96929669 -0.49866521\n\t\t 0.021825785 1.97821116 -0.49990714 0.021119269 1.98636103 -0.50254536 0.020794675 1.99300432 -0.50699413\n\t\t 0.015561912 1.95999992 -0.49606609 0.014718076 1.96952915 -0.49615598 0.013667712 1.9788835 -0.49740005\n\t\t 0.012116274 1.98788762 -0.50000429 0.011214317 1.99533117 -0.50467443 0.03168036 2.00017666817 -0.54000044\n\t\t 0.023416966 2.0012488365 -0.54000044 0.015543012 2.0039434433 -0.54000044 0.0087631587 2.0087800026 -0.54000044\n\t\t 0.039999999 1.99982405 -0.53169477 0.031087454 1.99974108 -0.53117645 0.022514982 2.0008854866 -0.53072739\n\t\t 0.014622661 2.0035936832 -0.53047252 0.0081519932 2.0081198215 -0.53039336 0.039999999 1.99875712 -0.52344477\n\t\t 0.030703146 1.99866486 -0.52265012 0.021788683 1.99990666 -0.52182603 0.013639002 2.0025448799 -0.52111959\n\t\t 0.0069957008 2.0069937706 -0.52079511 0.039999999 1.99606562 -0.51556218 0.030470748 1.9961555 -0.51471841\n\t\t 0.021116532 1.99739957 -0.51366794 0.01211239 2.000003814697 -0.51211667 0.0046687694 2.0046739578 -0.51121473\n\t\t -0.039999999 1.96000004 -3.5762787e-07 0 1.96000004 -0.0400002 -0.039999999 2 -0.040000439\n\t\t -0.03168036 1.96000004 -0.00017702579 -0.023416966 1.96000004 -0.0012490749 -0.015543012 1.96000004 -0.0039440393\n\t\t -0.0087631587 1.96000004 -0.0087804794 -0.039999999 1.96830547 -0.00017619133 -0.031331137 1.96857774 -0.00039291382\n\t\t -0.022857871 1.96867549 -0.0015861988 -0.015145885 1.96861839 -0.0043833256 -0.0089377277 1.96854389 -0.0089031458\n\t\t -0.039999999 1.97655547 -0.0012431145 -0.031225016 1.97714877 -0.0015946627 -0.022718957 1.97724199 -0.0029025078\n\t\t -0.01542413 1.97688591 -0.0056113005 -0.0097507574 1.97659314 -0.0097459555 -0.039999999 1.98443806 -0.0039346218\n\t\t -0.031324942 1.9849149 -0.0044196844 -0.023085464 1.98458433 -0.0056238174 -0.016370015 1.9836266 -0.0078594685\n\t\t -0.011325035 1.98300815 -0.011328101 -0.012981603 1.98701835 -0.012981892 -0.00017666817 1.96831965 -0.040000439\n\t\t -0.001248721 1.976583 -0.040000439 -0.0039436668 1.98445702 -0.040000439 -0.0087801088 1.99123681 -0.040000319\n\t\t -0.00017582625 1.96000004 -0.031694889 -0.00039257482 1.96866894 -0.031422615 -0.0015858822 1.9771421 -0.031324863\n\t\t -0.0043829642 1.9848541 -0.031381965 -0.0089028198 1.99106216 -0.03145659 -0.0012427419 1.96000004 -0.023444891\n\t\t -0.0015943423 1.96877503 -0.022851586 -0.0029021949 1.97728109 -0.022758245 -0.0056109466 1.98457587 -0.023114324\n\t\t -0.009745691 1.99024928 -0.02340734 -0.0039342791 1.96000004 -0.015562177 -0.0044193082 1.96867514 -0.015085459\n\t\t -0.005623538 1.97691453 -0.015416026 -0.0078591444 1.98362994 -0.016373634 -0.011327736 1.988675 -0.016992211\n\t\t -0.039999999 1.99982333 -0.031680584 -0.039999999 1.99875128 -0.023417354 -0.039999999 1.99605632 -0.015543222\n\t\t -0.039999999 1.99121988 -0.0087634325 -0.031694546 1.99982417 -0.040000319 -0.031422306 1.99960744 -0.03133142\n\t\t -0.031324536 1.99841416 -0.022858262 -0.031381682 1.99561703 -0.015146136 -0.031456172 1.99109721 -0.0089380741\n\t\t -0.023444539 1.99875724 -0.040000319 -0.022851225 1.99840569 -0.031225443 -0.022757968 1.99709785 -0.022719264\n\t\t -0.023114076 1.99438906 -0.01542449 -0.023406917 1.99025428 -0.0097512007;\n\tsetAttr \".vt[2490:2655]\" -0.015561912 1.99606574 -0.040000319 -0.01508511 1.99558067 -0.03132534\n\t\t -0.015415663 1.99437642 -0.023085833 -0.016373379 1.99214089 -0.016370416 -0.016991891 1.98867226 -0.011325359\n\t\t -0.46000001 2.039999962 -0.50000024 -0.5 2.039999962 -0.46000028 -0.46000001 2 -0.46000028\n\t\t -0.46831968 2.039999962 -0.49982381 -0.47658306 2.039999962 -0.49875164 -0.48445702 2.039999962 -0.4960568\n\t\t -0.49123687 2.039999962 -0.49122024 -0.46000001 2.031694412 -0.49982452 -0.46861494 2.031473637 -0.49871302\n\t\t -0.47688764 2.031285048 -0.4974215 -0.48447582 2.031216145 -0.49487853 -0.49063581 2.031211376 -0.49066997\n\t\t -0.46000001 2.023444414 -0.4987576 -0.46873885 2.023246765 -0.49709749 -0.47694916 2.02308774 -0.49566054\n\t\t -0.48410237 2.023180962 -0.49339676 -0.48972282 2.02328968 -0.48972797 -0.46000001 2.015561581 -0.49606609\n\t\t -0.46878523 2.015618801 -0.49462438 -0.47682172 2.015925407 -0.49333501 -0.48336071 2.01664257 -0.49140239\n\t\t -0.48826617 2.017102718 -0.48826385 -0.48655683 2.013443232 -0.48655725 -0.49982336 2.031680346 -0.46000028\n\t\t -0.49875131 2.023416996 -0.46000028 -0.49605638 2.015542984 -0.46000028 -0.49121991 2.0087630749 -0.46000028\n\t\t -0.4998242 2.039999962 -0.46830583 -0.49871269 2.031384945 -0.4685266 -0.49742109 2.023112297 -0.46871519\n\t\t -0.49487823 2.015523911 -0.46878409 -0.4906697 2.0093641281 -0.4687891 -0.49875727 2.039999962 -0.47655582\n\t\t -0.49709725 2.031260967 -0.47675347 -0.4956601 2.023050785 -0.4769125 -0.49339646 2.015897512 -0.47681952\n\t\t -0.48972762 2.010277271 -0.47671032 -0.49606574 2.039999962 -0.48443842 -0.49462396 2.031214714 -0.48438144\n\t\t -0.49333465 2.023178101 -0.48407507 -0.49140194 2.016639233 -0.48335791 -0.48826361 2.01173377 -0.48289752\n\t\t -0.46000001 2.00017666817 -0.46831989 -0.46000001 2.0012488365 -0.47658348 -0.46000001 2.0039434433 -0.48445725\n\t\t -0.46000001 2.0087800026 -0.49123716 -0.4683055 2.00017571449 -0.46000028 -0.46852624 2.0012869835 -0.46861529\n\t\t -0.46871489 2.0025787354 -0.47688794 -0.4687838 2.0051217079 -0.48447609 -0.46878868 2.0093302727 -0.49063611\n\t\t -0.4765555 2.0012426376 -0.46000028 -0.47675309 2.0029027462 -0.46873927 -0.47691226 2.0043399334 -0.47694945\n\t\t -0.47681913 2.006603241 -0.48410273 -0.47671011 2.010272503 -0.48972321 -0.48443812 2.0039343834 -0.46000028\n\t\t -0.48438111 2.0053758621 -0.46878552 -0.48407471 2.0066652298 -0.47682214 -0.48335755 2.0085980892 -0.48336101\n\t\t -0.4828971 2.011736393 -0.48826647 -0.46000001 1.96000004 -3.5762787e-07 -0.46000001 2 -0.040000439\n\t\t -0.5 2.039999962 -0.040000439 -0.54000002 2.039999962 -2.3841858e-07 -0.54000002 2 0.039999723\n\t\t -0.5 1.96000004 0.039999723 -0.46000001 1.96831965 -0.00017702579 -0.46000001 1.976583 -0.0012490749\n\t\t -0.46000001 1.98445702 -0.0039440393 -0.46000001 1.99123681 -0.0087803602 -0.4683055 1.96000004 0.00017547607\n\t\t -0.46882388 1.96891248 0.00025856495 -0.46927294 1.97748494 -0.00088584423 -0.46952787 1.98537731 -0.0035940409\n\t\t -0.46960714 1.99184799 -0.0081201792 -0.4765555 1.96000004 0.0012423992 -0.47735032 1.96929681 0.0013347864\n\t\t -0.47817427 1.97821128 9.2864037e-05 -0.47888076 1.98636103 -0.0025452375 -0.47920534 1.99300444 -0.0069941282\n\t\t -0.48443812 1.96000004 0.0039339066 -0.48528194 1.96952915 0.003844142 -0.4863323 1.9788835 0.0026000738\n\t\t -0.48788375 1.98788762 -4.1723251e-06 -0.48878571 1.99533117 -0.0046745539 -0.5 1.99999964 -3.5762787e-07\n\t\t -0.46831968 2.00017666817 -0.040000439 -0.47658306 2.0012488365 -0.040000439 -0.48445702 2.0039436817 -0.040000439\n\t\t -0.49123687 2.0087800026 -0.040000439 -0.46000001 1.99982417 -0.03169477 -0.46891254 1.9997412 -0.031176448\n\t\t -0.477485 2.0008854866 -0.030727386 -0.48537737 2.0035936832 -0.030472517 -0.49184805 2.0081198215 -0.030393124\n\t\t -0.46000001 1.99875724 -0.023444772 -0.46929684 1.99866498 -0.022650123 -0.47821134 1.99990678 -0.021826029\n\t\t -0.48636103 2.0025448799 -0.021119595 -0.49300438 2.0069937706 -0.020795107 -0.46000001 1.99606574 -0.015562177\n\t\t -0.46952927 1.99615562 -0.014718413 -0.4788835 1.99739969 -0.013667941 -0.48788762 2.000003814697 -0.012116671\n\t\t -0.49533126 2.0046741962 -0.011214733 -0.50017661 2.039999962 -0.031680584 -0.50124866 2.039999962 -0.023417234\n\t\t -0.50394362 2.039999962 -0.015543461 -0.50878006 2.039999962 -0.0087635517 -0.4998242 2.031694412 -0.040000439\n\t\t -0.49974108 2.03117609 -0.031087875 -0.50088549 2.030727148 -0.022515297 -0.50359374 2.030472279 -0.014622927\n\t\t -0.50811988 2.030393124 -0.0081522465 -0.49875727 2.023444414 -0.040000439 -0.49866492 2.022649765 -0.030703545\n\t\t -0.49990684 2.021826029 -0.021789074 -0.502545 2.021119356 -0.01363945 -0.50699377 2.020794868 -0.0069959164\n\t\t -0.49606574 2.015561819 -0.040000439 -0.49615556 2.014718056 -0.030471087 -0.49739966 2.013667822 -0.021116972\n\t\t -0.50000393 2.012116194 -0.012112617 -0.5046742 2.011214256 -0.0046691895 -0.54000002 2.031680346 0.00017642975\n\t\t -0.54000002 2.023416996 0.0012483597 -0.54000008 2.015542984 0.0039434433 -0.54000008 2.0087630749 0.0087797642\n\t\t -0.53169453 2.039999962 -0.00017619133 -0.53117615 2.031087399 -0.000259161 -0.53072715 2.02251482 0.00088524818\n\t\t -0.53047222 2.014622688 0.0035934448 -0.53039294 2.0081520081 0.0081195831 -0.52344447 2.039999962 -0.0012431145\n\t\t -0.52264971 2.030703068 -0.0013353825 -0.52182579 2.021788597 -9.3460083e-05 -0.52111936 2.013638973 0.0025446415\n\t\t -0.52079475 2.0069956779 0.0069935322 -0.51556188 2.039999962 -0.0039346218 -0.51471806 2.030470848 -0.003844738\n\t\t -0.5136677 2.021116495 -0.0026006699 -0.51211631 2.012112379 3.5762787e-06 -0.51121438 2.0046687126 0.0046738386\n\t\t -0.53168035 1.99982333 0.039999723 -0.52341694 1.9987514 0.039999723 -0.51554298 1.99605632 0.039999723\n\t\t -0.50876307 1.99122 0.039999723 -0.54000002 2.00017571449 0.031694174 -0.53108752 2.00025892258 0.031175852\n\t\t -0.522515 1.99911439 0.03072679 -0.51462263 1.9964062 0.030471802 -0.50815195 1.99187994 0.030392528\n\t\t -0.54000002 2.0012426376 0.023444176 -0.53070319 2.001335144 0.022649407 -0.52178884 2.000093460083 0.021825433\n\t\t -0.51363903 1.997455 0.021118999 -0.50699574 1.99300623 0.020794392 -0.54000008 2.0039343834 0.015561581\n\t\t -0.53047085 2.0038442612 0.014717698 -0.52111661 2.002600193 0.013667345;\n\tsetAttr \".vt[2656:2821]\" -0.51211244 1.99999607 0.012115955 -0.50466883 1.99532568 0.011214018\n\t\t -0.49982336 1.96000004 0.031679988 -0.49875131 1.96000004 0.023416638 -0.49605638 1.96000004 0.015542746\n\t\t -0.49121991 1.96000004 0.0087628365 -0.50017577 1.96830559 0.039999723 -0.50025886 1.96882403 0.03108716\n\t\t -0.49911451 1.96927297 0.022514701 -0.49640626 1.96952772 0.014622331 -0.49188012 1.96960711 0.0081516504\n\t\t -0.5012427 1.97655559 0.039999723 -0.50133508 1.97735035 0.030702829 -0.50009322 1.97817421 0.021788359\n\t\t -0.49745506 1.97888064 0.013638735 -0.49300617 1.97920513 0.0069953203 -0.5039342 1.98443818 0.039999723\n\t\t -0.50384444 1.98528206 0.030470371 -0.50260037 1.98633218 0.021116257 -0.49999613 1.98788369 0.012112021\n\t\t -0.49532586 1.98878551 0.0046684742 -0.5 1.96000004 0.45999968 -0.54000002 2 0.45999968\n\t\t -0.54000002 1.96000004 0.49999964 -0.50017661 1.96831965 0.45999968 -0.50124866 1.976583 0.45999968\n\t\t -0.50394362 1.98445702 0.45999968 -0.50878006 1.99123693 0.45999968 -0.50017577 1.96000016 0.46830523\n\t\t -0.5003925 1.96866906 0.46857738 -0.50158584 1.97714221 0.46867514 -0.50438291 1.98485422 0.46861804\n\t\t -0.50890279 1.99106228 0.46854353 -0.5012427 1.96000016 0.47655523 -0.50159431 1.96877503 0.47714853\n\t\t -0.50290215 1.97728133 0.47724175 -0.50561088 1.98457587 0.47688568 -0.50974566 1.99024928 0.47659278\n\t\t -0.5039342 1.96000004 0.48443782 -0.50441927 1.96867526 0.48491466 -0.50562346 1.97691464 0.48458409\n\t\t -0.50785911 1.98363018 0.48362637 -0.51132768 1.98867512 0.48300779 -0.51298153 1.98701847 0.48701811\n\t\t -0.53999996 1.99982333 0.46831942 -0.53999996 1.9987514 0.47658277 -0.53999996 1.99605632 0.48445666\n\t\t -0.53999996 1.99122 0.49123657 -0.53169453 1.99982429 0.45999968 -0.53142226 1.99960756 0.46866858\n\t\t -0.53132451 1.99841428 0.47714186 -0.53138167 1.99561715 0.48485386 -0.53145611 1.99109733 0.49106205\n\t\t -0.52344447 1.99875736 0.45999968 -0.52285117 1.99840569 0.46877468 -0.52275795 1.99709797 0.47728074\n\t\t -0.52311403 1.99438918 0.48457563 -0.52340686 1.99025428 0.49024892 -0.51556188 1.99606586 0.45999968\n\t\t -0.51508504 1.99558067 0.46867478 -0.51541561 1.99437642 0.47691429 -0.51637334 1.99214101 0.4836297\n\t\t -0.51699185 1.98867238 0.48867464 -0.53168035 1.96000004 0.49982309 -0.52341694 1.96000016 0.49875104\n\t\t -0.51554298 1.96000028 0.49605608 -0.50876307 1.96000016 0.49121964 -0.53999996 1.96830547 0.49982393\n\t\t -0.53133112 1.96857774 0.49960709 -0.52285784 1.96867549 0.4984138 -0.51514584 1.96861851 0.49561679\n\t\t -0.50893766 1.96854401 0.49109685 -0.53999996 1.97655559 0.498757 -0.53122497 1.97714877 0.49840534\n\t\t -0.52271891 1.97724211 0.49709749 -0.51542407 1.97688603 0.49438882 -0.50975072 1.97659326 0.49025404\n\t\t -0.53999996 1.98443806 0.49606538 -0.53132492 1.98491502 0.49558043 -0.52308542 1.98458457 0.49437618\n\t\t -0.51636994 1.98362672 0.49214053 -0.511325 1.98300815 0.48867202 -1 2.49999976 -0.96000028\n\t\t -0.95999998 2.5 -1.000000476837 -0.99982381 2.49999976 -0.96831298 -0.99875432 2.5 -0.97656965\n\t\t -0.99606109 2.5 -0.98444796 -0.99122846 2.5 -0.99122882 -0.9844476 2.5 -0.99606156\n\t\t -0.97656929 2.49999976 -0.99875474 -0.96831256 2.5 -0.99982429 -0.54000002 2.46000004 -1.000000476837\n\t\t -0.5 2.53999972 -0.96000028 -0.46000001 2.49999976 -0.96000028 -0.53168035 2.46849608 -0.99982381\n\t\t -0.52341694 2.4778316 -0.99875164 -0.51554298 2.48840046 -0.9960568 -0.50876307 2.50001669 -0.99122024\n\t\t -0.5315187 2.46830535 -0.99982452 -0.52413929 2.47560167 -0.99871325 -0.51749849 2.48323059 -0.9974215\n\t\t -0.5114994 2.49146891 -0.99487877 -0.50659031 2.49996614 -0.9906702 -0.52220178 2.47655535 -0.9987576\n\t\t -0.51649314 2.48232794 -0.99709773 -0.51170599 2.48820066 -0.99566054 -0.50766528 2.49409747 -0.99339676\n\t\t -0.50437009 2.49999523 -0.98972797 -0.51162767 2.48443794 -0.99606609 -0.50837147 2.48840857 -0.99462438\n\t\t -0.50586808 2.49231219 -0.99333501 -0.50383377 2.49616933 -0.99140239 -0.50197464 2.50000238 -0.98826408\n\t\t -0.5 2.49999976 -0.98655725 -0.49982336 2.53168011 -0.96000028 -0.49875131 2.52341676 -0.96000028\n\t\t -0.49605638 2.51554275 -0.96000028 -0.49121991 2.50876284 -0.96000028 -0.50017577 2.53151846 -0.96830583\n\t\t -0.50025886 2.52413893 -0.9685266 -0.49927086 2.51749849 -0.96871519 -0.49703163 2.5114994 -0.96878409\n\t\t -0.49344352 2.50659037 -0.9687891 -0.5012427 2.52220154 -0.97655582 -0.50117892 2.51649284 -0.97675347\n\t\t -0.50009346 2.51170588 -0.97691274 -0.49823692 2.50766516 -0.97681952 -0.49563468 2.50436974 -0.97671056\n\t\t -0.5039342 2.51162744 -0.98443842 -0.50321978 2.50837135 -0.98438144 -0.50181973 2.50586796 -0.98407507\n\t\t -0.49999681 2.50383377 -0.98335791 -0.49802279 2.50197458 -0.98289752 -0.46849635 2.49982309 -0.96832013\n\t\t -0.47783193 2.49875093 -0.97658348 -0.48840076 2.49605608 -0.98445749 -0.50001699 2.49122 -0.9912374\n\t\t -0.4683055 2.50017548 -0.96000028 -0.47560191 2.50025892 -0.96861529 -0.48323077 2.49927068 -0.97688794\n\t\t -0.49146909 2.49703169 -0.98447633 -0.49996617 2.49344349 -0.99063635 -0.4765555 2.5012424 -0.96000028\n\t\t -0.48232794 2.50117874 -0.96873927 -0.48820049 2.50009298 -0.97694945 -0.4940978 2.49823666 -0.98410273\n\t\t -0.49999523 2.49563456 -0.98972321 -0.48443812 2.50393414 -0.96000028 -0.48840871 2.5032196 -0.96878552\n\t\t -0.49231219 2.50181961 -0.97682214 -0.49616942 2.49999642 -0.98336101 -0.50000262 2.49802256 -0.98826647\n\t\t -0.039999999 2.46000004 -1.000000476837 -0.039999999 2.49999976 -0.96000028 0 2.4599998 -0.96000028\n\t\t -0.039999999 2.46831942 -0.99982381 -0.039999999 2.47658277 -0.99875164 -0.039999999 2.48445678 -0.9960568\n\t\t -0.039999999 2.49123669 -0.99122024 -0.031694546 2.4599998 -0.99982452 -0.031422306 2.4686687 -0.9996078\n\t\t -0.031324536 2.47714186 -0.99841452 -0.031381682 2.48485398 -0.99561739 -0.031456172 2.49106216 -0.99109769\n\t\t -0.023444541 2.4599998 -0.9987576 -0.022851225 2.4687748 -0.99840617;\n\tsetAttr \".vt[2822:2987]\" -0.022757968 2.47728109 -0.99709821 -0.023114078 2.48457575 -0.99438953\n\t\t -0.023406915 2.49024892 -0.99025464 -0.015561912 2.4599998 -0.99606609 -0.01508511 2.4686749 -0.99558115\n\t\t -0.015415663 2.47691441 -0.9943769 -0.016373379 2.4836297 -0.99214125 -0.016991891 2.48867464 -0.98867273\n\t\t -0.012981605 2.48701811 -0.98701882 -0.03168036 2.49982309 -0.96000051 -0.023416966 2.49875116 -0.96000051\n\t\t -0.015543012 2.49605608 -0.96000051 -0.0087631587 2.49122 -0.96000051 -0.039999999 2.49982405 -0.96830583\n\t\t -0.031331137 2.49960709 -0.9685781 -0.022857871 2.49841404 -0.96867585 -0.015145883 2.49561691 -0.96861863\n\t\t -0.0089377314 2.49109697 -0.96854424 -0.039999999 2.49875712 -0.97655582 -0.031225016 2.49840546 -0.97714925\n\t\t -0.022718957 2.49709749 -0.97724247 -0.015424127 2.49438882 -0.97688627 -0.0097507574 2.4902544 -0.97659349\n\t\t -0.039999999 2.49606538 -0.98443842 -0.031324938 2.49558043 -0.98491526 -0.023085464 2.49437618 -0.98458481\n\t\t -0.016370017 2.49214053 -0.98362708 -0.011325035 2.48867226 -0.98300862 -0.00017666444 2.46000004 -0.96832013\n\t\t -0.001248721 2.4599998 -0.97658348 -0.0039436668 2.46000004 -0.98445749 -0.0087801088 2.46000004 -0.9912374\n\t\t -0.00017582625 2.46830559 -0.96000051 -0.00039257109 2.46857738 -0.96866918 -0.0015858822 2.46867514 -0.97714257\n\t\t -0.0043829642 2.46861815 -0.98485446 -0.0089028198 2.46854353 -0.99106264 -0.0012427419 2.47655535 -0.96000051\n\t\t -0.0015943423 2.47714853 -0.96877551 -0.0029021949 2.47724199 -0.97728157 -0.0056109466 2.4768858 -0.98457623\n\t\t -0.009745691 2.47659302 -0.99024963 -0.0039342791 2.48443794 -0.96000051 -0.0044193082 2.48491478 -0.96867537\n\t\t -0.0056235418 2.48458409 -0.97691488 -0.0078591444 2.48362637 -0.98363042 -0.011327736 2.48300791 -0.98867536\n\t\t -1 2.46000004 -0.040000439 -0.95999998 2.46000004 -4.7683716e-07 -0.95999998 2.5 -0.040000439\n\t\t -0.99982339 2.46000004 -0.031680822 -0.99875134 2.46000004 -0.023417473 -0.99605638 2.46000004 -0.015543461\n\t\t -0.99121994 2.46000004 -0.0087635517 -0.99982423 2.46830559 -0.040000439 -0.9996075 2.46857762 -0.031331539\n\t\t -0.99841416 2.46867537 -0.022858381 -0.99561709 2.46861839 -0.015146255 -0.99109721 2.46854377 -0.0089380741\n\t\t -0.9987573 2.47655559 -0.040000439 -0.99840569 2.47714877 -0.031225443 -0.99709785 2.47724199 -0.022719383\n\t\t -0.99438912 2.4768858 -0.01542449 -0.99025434 2.47659302 -0.0097510815 -0.9960658 2.48443818 -0.040000439\n\t\t -0.99558073 2.48491502 -0.03132534 -0.99437654 2.48458433 -0.023085833 -0.99214089 2.4836266 -0.016370535\n\t\t -0.98867232 2.48300815 -0.011325359 -0.98701847 2.48701835 -0.012981892 -0.96000004 2.46831965 -0.000177145\n\t\t -0.96000004 2.476583 -0.0012490749 -0.96000004 2.48445702 -0.0039441586 -0.96000004 2.49123693 -0.0087804794\n\t\t -0.96830547 2.46000004 -0.00017619133 -0.96857774 2.46866894 -0.00039291382 -0.96867549 2.4771421 -0.0015861988\n\t\t -0.96861833 2.48485422 -0.0043833256 -0.96854389 2.49106216 -0.008903265 -0.97655553 2.46000004 -0.0012431145\n\t\t -0.97714883 2.46877503 -0.0015947819 -0.97724205 2.47728109 -0.0029025078 -0.97688597 2.48457599 -0.0056114197\n\t\t -0.97659314 2.49024916 -0.0097460747 -0.98443812 2.46000004 -0.0039346218 -0.98491496 2.46867514 -0.0044198036\n\t\t -0.98458439 2.47691464 -0.0056240559 -0.98362666 2.48362994 -0.0078594685 -0.98300815 2.48867488 -0.01132822\n\t\t -0.96831965 2.49982333 -0.040000439 -0.97658306 2.49875116 -0.040000439 -0.98445702 2.49605632 -0.040000439\n\t\t -0.99123693 2.49122 -0.040000439 -0.96000004 2.49982429 -0.031694889 -0.96866888 2.49960732 -0.031422615\n\t\t -0.97714216 2.49841404 -0.031324863 -0.98485416 2.49561715 -0.031382084 -0.99106234 2.49109721 -0.03145647\n\t\t -0.96000004 2.49875736 -0.023444891 -0.96877503 2.49840569 -0.022851706 -0.97728109 2.49709773 -0.022758484\n\t\t -0.98457593 2.49438906 -0.023114443 -0.99024928 2.4902544 -0.023407221 -0.96000004 2.49606562 -0.015562296\n\t\t -0.96867508 2.49558067 -0.015085459 -0.97691458 2.49437642 -0.015416145 -0.98363006 2.49214077 -0.016373873\n\t\t -0.988675 2.48867226 -0.016992331 -0.039999999 2.46000004 -0.50000048 0 2.46000004 -0.54000044\n\t\t -0.039999999 2.5 -0.54000044 -0.03168036 2.46000004 -0.50017691 -0.023416966 2.46000004 -0.50124907\n\t\t -0.015543012 2.46000004 -0.50394392 -0.0087631587 2.46000004 -0.50878048 -0.039999999 2.46830559 -0.50017619\n\t\t -0.031331137 2.46857762 -0.50039291 -0.022857871 2.46867514 -0.5015862 -0.015145885 2.46861839 -0.50438333\n\t\t -0.0089377277 2.46854353 -0.50890326 -0.039999999 2.47655559 -0.50124311 -0.031225016 2.47714853 -0.50159478\n\t\t -0.022718957 2.47724199 -0.50290251 -0.01542413 2.47688603 -0.50561118 -0.0097507574 2.47659302 -0.50974607\n\t\t -0.039999999 2.48443818 -0.50393462 -0.031324942 2.48491502 -0.50441957 -0.023085464 2.48458433 -0.50562382\n\t\t -0.016370015 2.48362637 -0.50785947 -0.011325035 2.48300815 -0.51132798 -0.012981603 2.48701811 -0.51298189\n\t\t -0.00017666817 2.46831942 -0.54000044 -0.001248721 2.476583 -0.54000044 -0.0039436668 2.48445702 -0.54000044\n\t\t -0.0087801088 2.49123669 -0.54000044 -0.00017582625 2.46000004 -0.53169489 -0.00039257482 2.46866894 -0.53142262\n\t\t -0.0015858822 2.47714186 -0.53132486 -0.0043829642 2.48485422 -0.53138208 -0.0089028198 2.49106216 -0.53145647\n\t\t -0.0012427419 2.46000004 -0.52344489 -0.0015943423 2.46877503 -0.52285147 -0.0029021949 2.47728109 -0.52275825\n\t\t -0.0056109466 2.48457599 -0.52311444 -0.009745691 2.49024916 -0.52340722 -0.0039342791 2.46000004 -0.5155623\n\t\t -0.0044193082 2.46867514 -0.51508546 -0.005623538 2.47691464 -0.51541591 -0.0078591444 2.48362994 -0.51637363\n\t\t -0.011327736 2.48867464 -0.51699233 -0.039999999 2.49982309 -0.53168082 -0.039999999 2.49875116 -0.52341723\n\t\t -0.039999999 2.49605608 -0.51554346 -0.039999999 2.49122 -0.50876355 -0.031694546 2.49982405 -0.54000044\n\t\t -0.031422306 2.49960732 -0.53133154 -0.031324536 2.49841404 -0.52285814 -0.031381682 2.49561715 -0.51514626\n\t\t -0.031456172 2.49109721 -0.50893807 -0.023444539 2.49875736 -0.54000044 -0.022851225 2.49840546 -0.53122544\n\t\t -0.022757968 2.49709749 -0.52271938 -0.023114076 2.49438906 -0.51542449 -0.023406917 2.4902544 -0.50975108\n\t\t -0.015561912 2.49606562 -0.54000044 -0.01508511 2.49558067 -0.53132534;\n\tsetAttr \".vt[2988:3153]\" -0.015415663 2.49437642 -0.52308583 -0.016373379 2.49214077 -0.5163703\n\t\t -0.016991891 2.48867226 -0.51132536 -0.46000001 2.46000004 -0.50000048 -0.46000001 2.5 -0.54000044\n\t\t -0.5 2.53999996 -0.54000044 -0.54000002 2.53999996 -0.50000048 -0.54000002 2.5 -0.46000051\n\t\t -0.5 2.46000004 -0.46000051 -0.46000001 2.46831965 -0.50017691 -0.46000001 2.476583 -0.50124907\n\t\t -0.46000001 2.48445702 -0.50394392 -0.46000001 2.49123693 -0.50878048 -0.4683055 2.46000004 -0.49982452\n\t\t -0.46882388 2.4689126 -0.49974155 -0.46927294 2.47748518 -0.50088596 -0.46952787 2.48537731 -0.50359416\n\t\t -0.46960714 2.49184799 -0.5081203 -0.4765555 2.46000004 -0.4987576 -0.47735032 2.46929693 -0.49866533\n\t\t -0.47817427 2.4782114 -0.49990726 -0.47888076 2.48636103 -0.50254536 -0.47920534 2.49300432 -0.50699425\n\t\t -0.48443812 2.46000004 -0.49606609 -0.48528194 2.46952915 -0.49615598 -0.4863323 2.4788835 -0.49740005\n\t\t -0.48788375 2.48788738 -0.50000429 -0.48878571 2.49533129 -0.50467467 -0.5 2.5 -0.50000048\n\t\t -0.46831968 2.50017667 -0.54000044 -0.47658306 2.50124884 -0.54000044 -0.48445702 2.50394344 -0.54000044\n\t\t -0.49123687 2.50878 -0.54000044 -0.46000001 2.49982405 -0.53169489 -0.46891254 2.49974108 -0.53117657\n\t\t -0.477485 2.50088549 -0.53072762 -0.48537737 2.50359368 -0.53047252 -0.49184805 2.50811982 -0.53039336\n\t\t -0.46000001 2.49875736 -0.52344489 -0.46929684 2.49866486 -0.52265 -0.47821134 2.49990654 -0.52182627\n\t\t -0.48636103 2.50254488 -0.52111983 -0.49300438 2.50699377 -0.52079511 -0.46000001 2.49606562 -0.5155623\n\t\t -0.46952927 2.49615574 -0.51471853 -0.4788835 2.49739981 -0.51366806 -0.48788762 2.50000381 -0.51211667\n\t\t -0.49533126 2.50467396 -0.51121473 -0.50017661 2.53999996 -0.53168082 -0.50124866 2.53999996 -0.52341723\n\t\t -0.50394362 2.53999996 -0.51554346 -0.50878006 2.53999996 -0.50876355 -0.4998242 2.53169441 -0.54000044\n\t\t -0.49974108 2.53117609 -0.53108788 -0.50088549 2.53072715 -0.5225153 -0.50359374 2.53047228 -0.51462293\n\t\t -0.50811988 2.53039312 -0.50815225 -0.49875727 2.52344441 -0.54000044 -0.49866492 2.52264977 -0.53070354\n\t\t -0.49990684 2.52182603 -0.52178931 -0.502545 2.52111912 -0.51363945 -0.50699377 2.52079487 -0.50699615\n\t\t -0.49606574 2.51556158 -0.54000044 -0.49615556 2.51471806 -0.53047132 -0.49739966 2.51366758 -0.52111697\n\t\t -0.50000393 2.51211619 -0.51211286 -0.5046742 2.51121426 -0.50466919 -0.54000002 2.53168035 -0.49982381\n\t\t -0.54000002 2.523417 -0.49875164 -0.54000008 2.51554275 -0.4960568 -0.54000008 2.50876307 -0.49122024\n\t\t -0.53169453 2.53999972 -0.50017619 -0.53117615 2.5310874 -0.50025916 -0.53072715 2.52251482 -0.49911499\n\t\t -0.53047222 2.51462269 -0.49640656 -0.53039294 2.50815201 -0.49188042 -0.52344447 2.53999972 -0.50124311\n\t\t -0.52264971 2.53070307 -0.50133538 -0.52182579 2.5217886 -0.5000937 -0.52111936 2.51363897 -0.49745536\n\t\t -0.52079475 2.50699568 -0.49300647 -0.51556188 2.53999972 -0.50393462 -0.51471806 2.53047085 -0.50384474\n\t\t -0.5136677 2.5211165 -0.50260067 -0.51211631 2.51211238 -0.49999642 -0.51121438 2.50466847 -0.49532628\n\t\t -0.53168035 2.49982333 -0.46000051 -0.52341694 2.49875116 -0.46000051 -0.51554298 2.49605632 -0.46000051\n\t\t -0.50876307 2.49122 -0.46000051 -0.54000002 2.50017571 -0.46830583 -0.53108752 2.50025892 -0.46882439\n\t\t -0.522515 2.49911427 -0.46927333 -0.51462263 2.49640632 -0.4695282 -0.50815195 2.49188018 -0.46960759\n\t\t -0.54000002 2.50124264 -0.47655582 -0.53070319 2.50133491 -0.47735071 -0.52178884 2.50009322 -0.47817469\n\t\t -0.51363903 2.49745512 -0.47888112 -0.50699574 2.49300623 -0.47920585 -0.54000008 2.50393438 -0.48443842\n\t\t -0.53047085 2.50384426 -0.48528242 -0.52111661 2.50260019 -0.48633265 -0.51211244 2.49999619 -0.48788404\n\t\t -0.50466883 2.4953258 -0.48878598 -0.49982336 2.46000004 -0.46832013 -0.49875131 2.46000004 -0.47658348\n\t\t -0.49605638 2.46000004 -0.48445749 -0.49121991 2.46000004 -0.49123716 -0.50017577 2.46830559 -0.46000051\n\t\t -0.50025886 2.46882391 -0.46891284 -0.49911451 2.46927285 -0.47748542 -0.49640626 2.46952772 -0.48537779\n\t\t -0.49188012 2.46960688 -0.49184847 -0.5012427 2.47655559 -0.46000051 -0.50133508 2.47735023 -0.46929717\n\t\t -0.50009322 2.47817397 -0.47821164 -0.49745506 2.47888041 -0.4863615 -0.49300617 2.47920513 -0.4930048\n\t\t -0.5039342 2.48443818 -0.46000051 -0.50384444 2.48528194 -0.46952963 -0.50260037 2.48633218 -0.47888398\n\t\t -0.49999613 2.48788357 -0.4878881 -0.49532586 2.48878551 -0.49533176 -0.5 2.46000004 -0.040000439\n\t\t -0.54000002 2.5 -0.040000439 -0.54000002 2.46000004 -4.7683716e-07 -0.50017661 2.46831965 -0.040000439\n\t\t -0.50124866 2.476583 -0.040000439 -0.50394362 2.48445702 -0.040000439 -0.50878006 2.49123693 -0.040000439\n\t\t -0.50017577 2.46000004 -0.031694889 -0.5003925 2.46866894 -0.031422615 -0.50158584 2.4771421 -0.031324863\n\t\t -0.50438291 2.48485422 -0.031382084 -0.50890279 2.49106216 -0.03145647 -0.5012427 2.46000004 -0.023444891\n\t\t -0.50159431 2.46877503 -0.022851706 -0.50290215 2.47728109 -0.022758484 -0.50561088 2.48457599 -0.023114443\n\t\t -0.50974566 2.49024916 -0.023407221 -0.5039342 2.46000004 -0.015562296 -0.50441927 2.46867514 -0.015085459\n\t\t -0.50562346 2.47691464 -0.015416145 -0.50785911 2.48362994 -0.016373873 -0.51132768 2.48867488 -0.016992331\n\t\t -0.51298153 2.48701835 -0.012981892 -0.53999996 2.49982333 -0.031680822 -0.53999996 2.49875116 -0.023417473\n\t\t -0.53999996 2.49605632 -0.015543461 -0.53999996 2.49122 -0.0087635517 -0.53169453 2.49982429 -0.040000439\n\t\t -0.53142226 2.49960732 -0.031331539 -0.53132451 2.49841404 -0.022858381 -0.53138167 2.49561715 -0.015146255\n\t\t -0.53145611 2.49109721 -0.0089380741 -0.52344447 2.49875736 -0.040000439 -0.52285117 2.49840569 -0.031225443\n\t\t -0.52275795 2.49709773 -0.022719383 -0.52311403 2.49438906 -0.01542449 -0.52340686 2.4902544 -0.0097510815\n\t\t -0.51556188 2.49606562 -0.040000439 -0.51508504 2.49558067 -0.03132534 -0.51541561 2.49437642 -0.023085833\n\t\t -0.51637334 2.49214077 -0.016370535 -0.51699185 2.48867226 -0.011325359;\n\tsetAttr \".vt[3154:3319]\" -0.53168035 2.46000004 -0.000177145 -0.52341694 2.46000004 -0.0012490749\n\t\t -0.51554298 2.46000004 -0.0039441586 -0.50876307 2.46000004 -0.0087804794 -0.53999996 2.46830559 -0.00017619133\n\t\t -0.53133112 2.46857762 -0.00039291382 -0.52285784 2.46867537 -0.0015861988 -0.51514584 2.46861839 -0.0043833256\n\t\t -0.50893766 2.46854377 -0.008903265 -0.53999996 2.47655559 -0.0012431145 -0.53122497 2.47714877 -0.0015947819\n\t\t -0.52271891 2.47724199 -0.0029025078 -0.51542407 2.47688603 -0.0056114197 -0.50975072 2.47659302 -0.0097460747\n\t\t -0.53999996 2.48443818 -0.0039346218 -0.53132492 2.48491502 -0.0044198036 -0.52308542 2.48458433 -0.0056240559\n\t\t -0.51636994 2.4836266 -0.0078594685 -0.511325 2.48300815 -0.01132822 -1 2.9599998 -0.54000044\n\t\t -0.95999998 2.96000004 -0.50000048 -0.95999998 2.99999976 -0.54000044 -0.99982339 2.96000004 -0.53168082\n\t\t -0.99875134 2.96000004 -0.52341747 -0.99605638 2.96000004 -0.51554346 -0.99121994 2.96000004 -0.50876355\n\t\t -0.99982423 2.96830559 -0.54000044 -0.9996075 2.96857738 -0.53133154 -0.99841416 2.96867537 -0.52285838\n\t\t -0.99561709 2.96861815 -0.51514626 -0.99109721 2.96854353 -0.50893807 -0.9987573 2.97655559 -0.54000044\n\t\t -0.99840569 2.97714877 -0.53122544 -0.99709785 2.97724199 -0.52271938 -0.99438912 2.9768858 -0.51542449\n\t\t -0.99025434 2.97659302 -0.50975132 -0.9960658 2.98443818 -0.54000044 -0.99558073 2.98491478 -0.53132534\n\t\t -0.99437654 2.98458409 -0.52308583 -0.99214089 2.98362637 -0.51637053 -0.98867232 2.98300791 -0.5113256\n\t\t -0.98701847 2.98701811 -0.51298213 -0.96000004 2.96831965 -0.50017715 -0.96000004 2.97658277 -0.50124907\n\t\t -0.96000004 2.98445702 -0.50394416 -0.96000004 2.99123669 -0.50878048 -0.96830547 2.9599998 -0.50017619\n\t\t -0.96857774 2.9686687 -0.50039291 -0.96867549 2.97714186 -0.50158644 -0.96861833 2.98485398 -0.50438333\n\t\t -0.96854389 2.99106216 -0.50890326 -0.97655553 2.9599998 -0.50124311 -0.97714883 2.96877503 -0.50159478\n\t\t -0.97724205 2.97728109 -0.50290275 -0.97688597 2.98457599 -0.50561142 -0.97659314 2.99024892 -0.50974607\n\t\t -0.98443812 2.9599998 -0.50393462 -0.98491496 2.96867514 -0.5044198 -0.98458439 2.97691441 -0.50562406\n\t\t -0.98362666 2.9836297 -0.50785971 -0.98300815 2.98867488 -0.51132822 -0.96831965 2.99982333 -0.54000044\n\t\t -0.97658306 2.99875116 -0.54000044 -0.98445702 2.99605632 -0.54000044 -0.99123693 2.99122 -0.54000044\n\t\t -0.96000004 2.99982405 -0.53169513 -0.96866888 2.99960709 -0.53142285 -0.97714216 2.99841404 -0.5313251\n\t\t -0.98485416 2.99561691 -0.53138208 -0.99106234 2.99109697 -0.53145671 -0.96000004 2.99875712 -0.52344489\n\t\t -0.96877503 2.99840569 -0.52285171 -0.97728109 2.99709773 -0.52275848 -0.98457593 2.99438882 -0.52311444\n\t\t -0.99024928 2.9902544 -0.52340746 -0.96000004 2.99606538 -0.5155623 -0.96867508 2.99558043 -0.51508546\n\t\t -0.97691458 2.99437642 -0.51541615 -0.98363006 2.99214077 -0.51637387 -0.988675 2.98867226 -0.51699233\n\t\t -1 2.9599998 -0.96000051 -0.95999998 3 -0.96000051 -0.95999998 2.96000004 -1.000000476837\n\t\t -0.99982339 2.96831942 -0.96000051 -0.99875134 2.97658277 -0.96000051 -0.99605638 2.98445678 -0.96000051\n\t\t -0.99121994 2.99123669 -0.96000051 -0.99982423 2.96000004 -0.96830606 -0.9996075 2.96866894 -0.96857834\n\t\t -0.99841416 2.97714186 -0.96867609 -0.99561709 2.98485422 -0.96861887 -0.99109721 2.99106216 -0.96854448\n\t\t -0.9987573 2.9599998 -0.97655606 -0.99840569 2.9687748 -0.97714925 -0.99709785 2.97728086 -0.97724247\n\t\t -0.99438912 2.98457599 -0.97688651 -0.99025434 2.99024916 -0.97659373 -0.9960658 2.9599998 -0.98443866\n\t\t -0.99558073 2.9686749 -0.98491549 -0.99437654 2.97691441 -0.98458481 -0.99214089 2.9836297 -0.98362708\n\t\t -0.98867232 2.98867464 -0.98300862 -0.98701847 2.98701811 -0.98701906 -0.96000004 2.99982309 -0.96832013\n\t\t -0.96000004 2.99875093 -0.97658348 -0.96000004 2.99605608 -0.98445749 -0.96000004 2.99122 -0.9912374\n\t\t -0.96830547 2.99982405 -0.96000051 -0.96857774 2.99960732 -0.96866941 -0.96867549 2.9984138 -0.97714257\n\t\t -0.96861833 2.99561715 -0.9848547 -0.96854389 2.99109721 -0.99106288 -0.97655553 2.99875712 -0.96000051\n\t\t -0.97714883 2.99840546 -0.96877551 -0.97724205 2.99709749 -0.97728157 -0.97688597 2.99438906 -0.98457646\n\t\t -0.97659314 2.9902544 -0.99024987 -0.98443812 2.99606538 -0.96000051 -0.98491496 2.99558067 -0.96867561\n\t\t -0.98458439 2.99437642 -0.97691512 -0.98362666 2.99214077 -0.98363066 -0.98300815 2.98867226 -0.98867559\n\t\t -0.96831965 2.9599998 -0.99982381 -0.97658306 2.9599998 -0.99875188 -0.98445702 2.9599998 -0.9960568\n\t\t -0.99123693 2.9599998 -0.99122047 -0.96000004 2.96830535 -0.99982476 -0.96866888 2.96857738 -0.99960804\n\t\t -0.97714216 2.96867514 -0.99841475 -0.98485416 2.96861815 -0.99561763 -0.99106234 2.96854353 -0.99109769\n\t\t -0.96000004 2.97655535 -0.99875784 -0.96877503 2.97714853 -0.99840617 -0.97728109 2.97724199 -0.99709845\n\t\t -0.98457593 2.9768858 -0.99438953 -0.99024928 2.97659278 -0.99025488 -0.96000004 2.98443794 -0.99606633\n\t\t -0.96867508 2.98491478 -0.99558115 -0.97691458 2.98458433 -0.99437714 -0.98363006 2.98362637 -0.99214149\n\t\t -0.988675 2.98300791 -0.98867273 -0.54000002 2.96000004 -1.000000476837 -0.54000002 3 -0.96000051\n\t\t -0.5 2.9599998 -0.96000051 -0.54000002 2.96831942 -0.99982381 -0.54000002 2.97658277 -0.99875188\n\t\t -0.54000002 2.98445678 -0.9960568 -0.54000002 2.99123693 -0.99122047 -0.53169459 2.9599998 -0.99982476\n\t\t -0.53142232 2.9686687 -0.99960804 -0.53132457 2.97714186 -0.99841475 -0.53138173 2.98485398 -0.99561763\n\t\t -0.53145617 2.99106216 -0.99109769 -0.52344453 2.9599998 -0.99875784 -0.52285123 2.9687748 -0.99840617\n\t\t -0.52275801 2.97728109 -0.99709845 -0.52311409 2.98457575 -0.99438953 -0.52340692 2.99024892 -0.99025488\n\t\t -0.51556194 2.9599998 -0.99606633 -0.5150851 2.9686749 -0.99558115 -0.51541567 2.97691441 -0.99437714\n\t\t -0.5163734 2.9836297 -0.99214149 -0.51699191 2.98867464 -0.98867273 -0.51298159 2.98701811 -0.98701906\n\t\t -0.53168041 2.99982309 -0.96000051 -0.523417 2.99875093 -0.96000051;\n\tsetAttr \".vt[3320:3485]\" -0.51554304 2.99605608 -0.96000051 -0.50876313 2.99121976 -0.96000051\n\t\t -0.54000002 2.99982405 -0.96830606 -0.53133118 2.99960709 -0.96857834 -0.5228579 2.99841404 -0.96867609\n\t\t -0.5151459 2.99561715 -0.96861887 -0.50893772 2.99109697 -0.96854448 -0.54000002 2.99875736 -0.97655606\n\t\t -0.53122503 2.99840546 -0.97714925 -0.52271897 2.99709749 -0.97724247 -0.51542413 2.99438906 -0.97688651\n\t\t -0.50975078 2.9902544 -0.97659373 -0.54000002 2.99606562 -0.98443866 -0.53132498 2.99558067 -0.98491549\n\t\t -0.52308547 2.99437618 -0.98458481 -0.51637 2.99214053 -0.98362708 -0.51132506 2.98867202 -0.98300862\n\t\t -0.50017667 2.96000004 -0.96832013 -0.50124872 2.9599998 -0.97658348 -0.50394368 2.96000004 -0.98445749\n\t\t -0.50878012 2.96000004 -0.9912374 -0.50017583 2.96830535 -0.96000051 -0.50039256 2.96857738 -0.96866941\n\t\t -0.5015859 2.96867514 -0.97714257 -0.50438297 2.96861815 -0.9848547 -0.50890285 2.96854353 -0.99106288\n\t\t -0.50124276 2.97655535 -0.96000051 -0.50159436 2.97714853 -0.96877551 -0.50290221 2.97724199 -0.97728157\n\t\t -0.50561094 2.9768858 -0.98457646 -0.50974572 2.97659302 -0.99024987 -0.50393426 2.98443794 -0.96000051\n\t\t -0.50441933 2.98491502 -0.96867561 -0.50562352 2.98458433 -0.97691512 -0.50785917 2.98362637 -0.98363066\n\t\t -0.51132774 2.98300791 -0.98867559 -0.5 2.9599998 -0.54000044 -0.54000002 2.99999976 -0.54000044\n\t\t -0.54000002 2.96000004 -0.50000048 -0.50017661 2.96831942 -0.54000044 -0.50124866 2.97658277 -0.54000044\n\t\t -0.50394362 2.98445678 -0.54000044 -0.50878006 2.99123669 -0.54000044 -0.50017577 2.96000004 -0.53169513\n\t\t -0.5003925 2.96866894 -0.53142285 -0.50158584 2.9771421 -0.5313251 -0.50438291 2.98485422 -0.53138232\n\t\t -0.50890279 2.99106216 -0.53145671 -0.5012427 2.96000004 -0.52344513 -0.50159431 2.96877503 -0.52285171\n\t\t -0.50290215 2.97728109 -0.52275848 -0.50561088 2.98457575 -0.52311468 -0.50974566 2.99024916 -0.52340746\n\t\t -0.5039342 2.96000004 -0.51556253 -0.50441927 2.96867514 -0.5150857 -0.50562346 2.97691464 -0.51541615\n\t\t -0.50785911 2.98362994 -0.51637387 -0.51132768 2.98867464 -0.51699233 -0.51298153 2.98701835 -0.51298213\n\t\t -0.53999996 2.99982309 -0.53168082 -0.53999996 2.99875116 -0.52341747 -0.53999996 2.99605608 -0.51554346\n\t\t -0.53999996 2.99121976 -0.50876355 -0.53169453 2.99982405 -0.54000044 -0.53142226 2.99960709 -0.53133178\n\t\t -0.53132451 2.99841404 -0.52285838 -0.53138167 2.99561691 -0.51514649 -0.53145611 2.99109697 -0.50893831\n\t\t -0.52344447 2.99875712 -0.54000044 -0.52285117 2.99840546 -0.53122544 -0.52275795 2.99709749 -0.52271938\n\t\t -0.52311403 2.99438906 -0.51542473 -0.52340686 2.9902544 -0.50975132 -0.51556188 2.99606538 -0.54000044\n\t\t -0.51508504 2.99558067 -0.53132558 -0.51541561 2.99437618 -0.52308607 -0.51637334 2.99214077 -0.51637053\n\t\t -0.51699185 2.98867226 -0.5113256 -0.53168035 2.96000004 -0.50017715 -0.52341694 2.96000004 -0.50124931\n\t\t -0.51554298 2.96000004 -0.50394416 -0.50876307 2.96000004 -0.50878072 -0.53999996 2.96830559 -0.50017643\n\t\t -0.53133112 2.96857738 -0.50039315 -0.52285784 2.96867537 -0.50158644 -0.51514584 2.96861839 -0.50438356\n\t\t -0.50893766 2.96854353 -0.50890326 -0.53999996 2.97655535 -0.50124335 -0.53122497 2.97714853 -0.50159478\n\t\t -0.52271891 2.97724199 -0.50290275 -0.51542407 2.97688603 -0.50561142 -0.50975072 2.97659302 -0.50974631\n\t\t -0.53999996 2.98443794 -0.50393486 -0.53132492 2.98491502 -0.5044198 -0.52308542 2.98458433 -0.50562406\n\t\t -0.51636994 2.9836266 -0.50785971 -0.511325 2.98300815 -0.51132822 1.039999962 -0.33334228 -0.49888173\n\t\t 1 -0.35587895 -0.53261 1.031687498 -0.33344162 -0.49903035 1.023430824 -0.33404416 -0.49993217\n\t\t 1.015552521 -0.33556157 -0.50220317 1.0087716579 -0.33828437 -0.50627804 1.0039389133 -0.34210479 -0.51199573\n\t\t 1.0012457371 -0.34654355 -0.51863873 1.00017619133 -0.35119551 -0.52560085 1.039999962 -0.60000008 5.9604645e-08\n\t\t 1 -0.64056474 5.9604645e-08 1.031687498 -0.60017884 5.9604645e-08 1.023430824 -0.6012634 5.9604645e-08\n\t\t 1.015552521 -0.60399467 5.9604645e-08 1.0087716579 -0.60889554 5.9604645e-08 1.0039389133 -0.61577213 5.9604645e-08\n\t\t 1.0012457371 -0.62376159 5.9604645e-08 1.00017619133 -0.63213491 5.9604645e-08 1 -0.35567465 0.5323053\n\t\t 1.039999962 -0.33334213 0.49888185 1.00017619133 -0.35103366 0.52535945 1.0012457371 -0.34642383 0.51846027\n\t\t 1.0039389133 -0.34202528 0.5118773 1.0087716579 -0.33823946 0.50621134 1.015552521 -0.33554131 0.50217319\n\t\t 1.023430824 -0.33403766 0.49992281 1.031687498 -0.33344054 0.49902916 1 0.99999982 -0.96000016\n\t\t 0.95999998 0.99999982 -1.000000238419 0.99982381 0.99999982 -0.96831274 0.99875432 0.99999982 -0.97656941\n\t\t 0.99606109 0.99999982 -0.98444772 0.99122846 0.99999982 -0.99122858 0.9844476 0.99999982 -0.99606121\n\t\t 0.97656929 0.99999982 -0.9987545 0.96831256 0.99999982 -0.99982393 0.95999998 -0.96000016 -0.99999982\n\t\t 1 -0.9600001 -0.9599998 0.95999998 -1.000000238419 -0.9599998 0.96831965 -0.96000022 -0.99982321\n\t\t 0.97658306 -0.96000022 -0.99875116 0.98445702 -0.96000022 -0.9960562 0.99123693 -0.96000022 -0.99121976\n\t\t 0.96000004 -0.96830565 -0.99982405 0.96866888 -0.96857792 -0.99960732 0.97714216 -0.96867561 -0.99841398\n\t\t 0.98485416 -0.96861845 -0.99561691 0.99106234 -0.96854401 -0.99109703 0.96000004 -0.97655565 -0.99875712\n\t\t 0.96877503 -0.97714901 -0.99840552 0.97728109 -0.97724223 -0.99709767 0.98457593 -0.97688609 -0.99438894\n\t\t 0.99024928 -0.97659332 -0.99025416 0.96000004 -0.98443824 -0.99606562 0.96867508 -0.98491508 -0.99558055\n\t\t 0.97691458 -0.98458457 -0.99437636 0.98363006 -0.98362684 -0.99214071 0.988675 -0.98300833 -0.98867214\n\t\t 0.98701847 -0.98701859 -0.98701829 0.99982339 -0.96831977 -0.95999986 0.99875134 -0.97658324 -0.95999986\n\t\t 0.99605638 -0.98445714 -0.95999986 0.99121994 -0.99123704 -0.95999986 0.99982423 -0.96000016 -0.96830529\n\t\t 0.9996075 -0.96866906 -0.96857756 0.99841416 -0.97714233 -0.96867532 0.99561709 -0.98485428 -0.96861815\n\t\t 0.99109721 -0.99106252 -0.96854371 0.9987573 -0.96000022 -0.97655535;\n\tsetAttr \".vt[3486:3651]\" 0.99840569 -0.96877521 -0.97714865 0.99709785 -0.97728127 -0.97724187\n\t\t 0.99438912 -0.98457605 -0.9768858 0.99025434 -0.9902494 -0.97659296 0.9960658 -0.96000022 -0.98443794\n\t\t 0.99558073 -0.9686752 -0.98491478 0.99437654 -0.9769147 -0.98458421 0.99214089 -0.98363024 -0.98362648\n\t\t 0.98867232 -0.98867512 -0.98300797 0.96000004 -0.99982357 -0.96831948 0.96000004 -0.99875146 -0.97658288\n\t\t 0.96000004 -0.99605656 -0.98445684 0.96000004 -0.99122012 -0.99123675 0.96830547 -0.9998244 -0.95999986\n\t\t 0.96857774 -0.99960762 -0.9686687 0.96867549 -0.99841434 -0.97714198 0.96861833 -0.99561721 -0.98485398\n\t\t 0.96854389 -0.99109739 -0.99106216 0.97655553 -0.99875748 -0.95999986 0.97714883 -0.99840581 -0.96877486\n\t\t 0.97724205 -0.99709797 -0.97728091 0.97688597 -0.99438924 -0.98457575 0.97659314 -0.99025452 -0.9902491\n\t\t 0.98443812 -0.99606597 -0.95999986 0.98491496 -0.99558085 -0.9686749 0.98458439 -0.99437672 -0.97691441\n\t\t 0.98362666 -0.99214101 -0.98362988 0.98300815 -0.98867249 -0.98867482 1 -0.9600001 -0.50419283\n\t\t 0.95999998 -1.000000119209 -0.49999982 0.99982381 -0.96831262 -0.50332153 0.99875432 -0.97656935 -0.50245595\n\t\t 0.99606109 -0.98444772 -0.50163019 0.99122846 -0.99122858 -0.50091934 0.9844476 -0.99606121 -0.50041282\n\t\t 0.97656929 -0.99875438 -0.50013041 0.96831256 -0.99982393 -0.50001836 1 0.9600001 0.50419283\n\t\t 0.95999998 1.000000119209 0.49999982 0.99982381 0.96831262 0.50332153 0.99875432 0.97656935 0.50245595\n\t\t 0.99606109 0.98444772 0.50163019 0.99122846 0.99122858 0.50091934 0.9844476 0.99606121 0.50041282\n\t\t 0.97656929 0.99875438 0.50013041 0.96831256 0.99982393 0.50001836 1 0.9600001 0.9599998\n\t\t 0.95999998 1.000000238419 0.9599998 0.95999998 0.96000016 0.99999982 0.99982339 0.96831977 0.95999986\n\t\t 0.99875134 0.97658324 0.95999986 0.99605638 0.98445714 0.95999986 0.99121994 0.99123704 0.95999986\n\t\t 0.99982423 0.96000016 0.96830529 0.9996075 0.96866906 0.96857756 0.99841416 0.97714233 0.96867532\n\t\t 0.99561709 0.98485428 0.96861815 0.99109721 0.99106252 0.96854371 0.9987573 0.96000022 0.97655535\n\t\t 0.99840569 0.96877521 0.97714865 0.99709785 0.97728127 0.97724187 0.99438912 0.98457605 0.9768858\n\t\t 0.99025434 0.9902494 0.97659296 0.9960658 0.96000022 0.98443794 0.99558073 0.9686752 0.98491478\n\t\t 0.99437654 0.9769147 0.98458421 0.99214089 0.98363024 0.98362648 0.98867232 0.98867512 0.98300797\n\t\t 0.98701847 0.98701859 0.98701829 0.96000004 0.99982357 0.96831948 0.96000004 0.99875146 0.97658288\n\t\t 0.96000004 0.99605656 0.98445684 0.96000004 0.99122012 0.99123675 0.96830547 0.9998244 0.95999986\n\t\t 0.96857774 0.99960762 0.9686687 0.96867549 0.99841434 0.97714198 0.96861833 0.99561721 0.98485398\n\t\t 0.96854389 0.99109739 0.99106216 0.97655553 0.99875748 0.95999986 0.97714883 0.99840581 0.96877486\n\t\t 0.97724205 0.99709797 0.97728091 0.97688597 0.99438924 0.98457575 0.97659314 0.99025452 0.9902491\n\t\t 0.98443812 0.99606597 0.95999986 0.98491496 0.99558085 0.9686749 0.98458439 0.99437672 0.97691441\n\t\t 0.98362666 0.99214101 0.98362988 0.98300815 0.98867249 0.98867482 0.96831965 0.96000022 0.99982321\n\t\t 0.97658306 0.96000022 0.99875116 0.98445702 0.96000022 0.9960562 0.99123693 0.96000022 0.99121976\n\t\t 0.96000004 0.96830565 0.99982405 0.96866888 0.96857792 0.99960732 0.97714216 0.96867561 0.99841398\n\t\t 0.98485416 0.96861845 0.99561691 0.99106234 0.96854401 0.99109703 0.96000004 0.97655565 0.99875712\n\t\t 0.96877503 0.97714901 0.99840552 0.97728109 0.97724223 0.99709767 0.98457593 0.97688609 0.99438894\n\t\t 0.99024928 0.97659332 0.99025416 0.96000004 0.98443824 0.99606562 0.96867508 0.98491508 0.99558055\n\t\t 0.97691458 0.98458457 0.99437636 0.98363006 0.98362684 0.99214071 0.988675 0.98300833 0.98867214\n\t\t 1 -0.9599998 0.9600001 0.95999998 -0.9599998 1.000000238419 0.95999998 -0.99999982 0.96000016\n\t\t 0.99982339 -0.95999986 0.96831977 0.99875134 -0.95999986 0.97658324 0.99605638 -0.95999986 0.98445714\n\t\t 0.99121994 -0.95999986 0.99123704 0.99982423 -0.96830529 0.96000016 0.9996075 -0.96857756 0.96866906\n\t\t 0.99841416 -0.96867532 0.97714233 0.99561709 -0.96861815 0.98485428 0.99109721 -0.96854371 0.99106252\n\t\t 0.9987573 -0.97655535 0.96000022 0.99840569 -0.97714865 0.96877521 0.99709785 -0.97724187 0.97728127\n\t\t 0.99438912 -0.9768858 0.98457605 0.99025434 -0.97659296 0.9902494 0.9960658 -0.98443794 0.96000022\n\t\t 0.99558073 -0.98491478 0.9686752 0.99437654 -0.98458421 0.9769147 0.99214089 -0.98362648 0.98363024\n\t\t 0.98867232 -0.98300797 0.98867512 0.98701847 -0.98701829 0.98701859 0.96000004 -0.96831948 0.99982357\n\t\t 0.96000004 -0.97658288 0.99875146 0.96000004 -0.98445684 0.99605656 0.96000004 -0.99123675 0.99122012\n\t\t 0.96830547 -0.95999986 0.9998244 0.96857774 -0.9686687 0.99960762 0.96867549 -0.97714198 0.99841434\n\t\t 0.96861833 -0.98485398 0.99561721 0.96854389 -0.99106216 0.99109739 0.97655553 -0.95999986 0.99875748\n\t\t 0.97714883 -0.96877486 0.99840581 0.97724205 -0.97728091 0.99709797 0.97688597 -0.98457575 0.99438924\n\t\t 0.97659314 -0.9902491 0.99025452 0.98443812 -0.95999986 0.99606597 0.98491496 -0.9686749 0.99558085\n\t\t 0.98458439 -0.97691441 0.99437672 0.98362666 -0.98362988 0.99214101 0.98300815 -0.98867482 0.98867249\n\t\t 0.96831965 -0.99982321 0.96000022 0.97658306 -0.99875116 0.96000022 0.98445702 -0.9960562 0.96000022\n\t\t 0.99123693 -0.99121976 0.96000022 0.96000004 -0.99982405 0.96830565 0.96866888 -0.99960732 0.96857792\n\t\t 0.97714216 -0.99841398 0.96867561 0.98485416 -0.99561691 0.96861845 0.99106234 -0.99109703 0.96854401\n\t\t 0.96000004 -0.99875712 0.97655565 0.96877503 -0.99840552 0.97714901 0.97728109 -0.99709767 0.97724223\n\t\t 0.98457593 -0.99438894 0.97688609 0.99024928 -0.99025416 0.97659332 0.96000004 -0.99606562 0.98443824\n\t\t 0.96867508 -0.99558055 0.98491508 0.97691458 -0.99437636 0.98458457;\n\tsetAttr \".vt[3652:3817]\" 0.98363006 -0.99214071 0.98362684 0.988675 -0.98867214 0.98300833\n\t\t 0.95999998 -0.99999988 0.50000012 1 -0.95999992 0.50419313 0.96831256 -0.99982369 0.5000186\n\t\t 0.97656929 -0.99875426 0.50013071 0.9844476 -0.99606097 0.50041306 0.99122846 -0.99122834 0.50091958\n\t\t 0.99606109 -0.98444748 0.50163043 0.99875432 -0.97656918 0.50245631 0.99982381 -0.9683125 0.50332183\n\t\t 0.95999998 -1 1.1920929e-07 1 -0.95999998 1.1920929e-07 0.96831256 -0.99982381 1.7881393e-07\n\t\t 0.97656929 -0.99875432 1.7881393e-07 0.9844476 -0.99606109 1.7881393e-07 0.99122846 -0.99122846 1.7881393e-07\n\t\t 0.99606109 -0.9844476 1.7881393e-07 0.99875432 -0.97656929 1.7881393e-07 0.99982381 -0.96831256 1.7881393e-07\n\t\t 1 0.95999992 -0.54000014 0.95999998 1.039999962 -0.50000012 0.95999998 0.99999988 -0.46000016\n\t\t 0.99982339 0.9684962 -0.53168052 0.99875134 0.9778316 -0.52341712 0.99605638 0.98840046 -0.5155431\n\t\t 0.99121994 1.00001680851 -0.50876319 0.99982423 0.96830535 -0.53151894 0.99871278 0.97560167 -0.5241394\n\t\t 0.99742115 0.98323047 -0.51749861 0.99487829 0.99146891 -0.51149952 0.99066973 0.99996603 -0.50659049\n\t\t 0.9987573 0.97655547 -0.52220196 0.99709725 0.9823277 -0.51649332 0.99566019 0.98820031 -0.51170611\n\t\t 0.99339646 0.99409771 -0.50766546 0.98972762 0.99999511 -0.50437021 0.9960658 0.98443806 -0.51162785\n\t\t 0.99462402 0.98840857 -0.50837159 0.99333471 0.99231207 -0.50586826 0.99140197 0.99616933 -0.50383395\n\t\t 0.98826361 1.000002503395 -0.50197482 0.98655683 0.99999988 -0.50000012 0.95999998 1.031680226 -0.49982357\n\t\t 0.95999998 1.023416877 -0.49875152 0.95999992 1.015542984 -0.49605656 0.95999992 1.0087630749 -0.49122012\n\t\t 0.96830547 1.031518698 -0.50017595 0.96852624 1.024139404 -0.50025904 0.96871477 1.017498493 -0.49927104\n\t\t 0.96878368 1.011499405 -0.49703181 0.96878856 1.0065902472 -0.49344373 0.97655553 1.022201777 -0.50124288\n\t\t 0.97675312 1.016493082 -0.5011791 0.97691226 1.011705875 -0.50009358 0.97681904 1.0076651573 -0.49823713\n\t\t 0.97671002 1.0043702126 -0.49563479 0.98443812 1.011627674 -0.50393438 0.98438108 1.0083713531 -0.50321996\n\t\t 0.98407471 1.0058679581 -0.50181985 0.98335755 1.0038336515 -0.49999702 0.98289704 1.0019745827 -0.49802291\n\t\t 0.96831965 0.99982333 -0.4684965 0.97658306 0.99875128 -0.4778319 0.98445702 0.99605632 -0.48840076\n\t\t 0.99123693 0.99121988 -0.50001711 0.95999998 1.00017571449 -0.46830571 0.96861488 1.00025892258 -0.47560203\n\t\t 0.97688758 0.9992708 -0.48323089 0.98447585 0.99703163 -0.49146914 0.99063587 0.99344337 -0.49996626\n\t\t 0.95999998 1.0012426376 -0.47655571 0.96873873 1.0011788607 -0.48232806 0.97694904 1.000093460083 -0.48820066\n\t\t 0.98410237 0.99823689 -0.49409801 0.98972285 0.99563456 -0.49999535 0.95999992 1.003934145 -0.4844383\n\t\t 0.96878511 1.0032197237 -0.48840892 0.97682166 1.0018196106 -0.49231231 0.98336071 0.99999678 -0.49616963\n\t\t 0.98826617 0.99802268 -0.50000274 0.95999998 1 -1.1920929e-07 1 0.95999998 -2.3841858e-07\n\t\t 0.96831256 0.99982381 -1.7881393e-07 0.97656929 0.99875432 -1.7881393e-07 0.9844476 0.99606109 -1.7881393e-07\n\t\t 0.99122846 0.99122846 -1.7881393e-07 0.99606109 0.9844476 -1.7881393e-07 0.99875432 0.97656929 -1.7881393e-07\n\t\t 0.99982381 0.96831256 -2.3841858e-07 1 0.12496686 -0.62825662 1.039999962 0.11705315 -0.58847135\n\t\t 1.00017619133 0.12332228 -0.61998874 1.0012457371 0.12168875 -0.61177641 1.0039389133 0.12013009 -0.60394037\n\t\t 1.0087716579 0.11878857 -0.59719586 1.015552521 0.11783245 -0.59238923 1.023430824 0.11729962 -0.58971041\n\t\t 1.031687498 0.11708802 -0.58864665 1.039999962 -1.7881393e-07 -0.60000002 1 -1.7881393e-07 -0.64056468\n\t\t 1.031687498 -1.7881393e-07 -0.60017878 1.023430824 -1.7881393e-07 -0.60126334 1.015552521 -1.7881393e-07 -0.60399461\n\t\t 1.0087716579 -1.7881393e-07 -0.60889548 1.0039389133 -1.7881393e-07 -0.61577201 1.0012457371 -1.7881393e-07 -0.62376153\n\t\t 1.00017619133 -1.7881393e-07 -0.6321348 1.039999962 -0.11705434 -0.58847117 1 -0.12496811 -0.62825644\n\t\t 1.031687498 -0.11708921 -0.58864641 1.023430824 -0.11730081 -0.58971024 1.015552521 -0.11783367 -0.59238893\n\t\t 1.0087716579 -0.11878979 -0.59719574 1.0039389133 -0.12013131 -0.60394007 1.0012457371 -0.12168998 -0.61177617\n\t\t 1.00017619133 -0.12332356 -0.61998844 1.039999962 -0.22961026 -0.55432767 1 -0.2451337 -0.59180456\n\t\t 1.031687498 -0.22967863 -0.55449277 1.023430824 -0.23009372 -0.55549479 1.015552521 -0.23113889 -0.55801815\n\t\t 1.0087716579 -0.2330144 -0.56254601 1.0039389133 -0.23564595 -0.5688991 1.0012457371 -0.23870343 -0.57628047\n\t\t 1.00017619133 -0.24190772 -0.58401638 1 -0.4529478 -0.45294762 1.039999962 -0.42426425 -0.42426401\n\t\t 1.00017619133 -0.44698697 -0.44698679 1.0012457371 -0.44106621 -0.44106597 1.0039389133 -0.43541679 -0.43541655\n\t\t 1.0087716579 -0.43055427 -0.43055409 1.015552521 -0.42708886 -0.42708862 1.023430824 -0.42515755 -0.42515731\n\t\t 1.031687498 -0.42439064 -0.42439041 1.039999962 -0.49888194 -0.33334208 1 -0.5326103 -0.35587859\n\t\t 1.031687498 -0.4990305 -0.33344132 1.023430824 -0.49993235 -0.33404392 1.015552521 -0.50220329 -0.33556134\n\t\t 1.0087716579 -0.50627822 -0.33828405 1.0039389133 -0.51199579 -0.34210449 1.0012457371 -0.51863891 -0.34654322\n\t\t 1.00017619133 -0.52560103 -0.35119516 1 -0.59180474 -0.24513343 1.039999962 -0.55432785 -0.22961\n\t\t 1.00017619133 -0.5840165 -0.24190745 1.0012457371 -0.57628059 -0.23870313 1.0039389133 -0.56889933 -0.23564568\n\t\t 1.0087716579 -0.56254619 -0.23301414 1.015552521 -0.55801833 -0.23113865 1.023430824 -0.55549496 -0.23009345\n\t\t 1.031687498 -0.55449295 -0.22967839 1.039999962 -0.58847123 -0.11705413 1 -0.6282565 -0.12496787\n\t\t 1.031687498 -0.58864653 -0.117089 1.023430824 -0.5897103 -0.11730057 1.015552521 -0.59238917 -0.11783344\n\t\t 1.0087716579 -0.59719586 -0.11878955 1.0039389133 -0.60394019 -0.12013111 1.0012457371 -0.61177629 -0.12168977\n\t\t 1.00017619133 -0.61998862 -0.12332329 1.039999962 -0.58847129 0.11705422 1 -0.62825656 0.12496799\n\t\t 1.031687498 -0.58864659 0.11708909 1.023430824 -0.58971035 0.11730069;\n\tsetAttr \".vt[3818:3983]\" 1.015552521 -0.59238911 0.11783355 1.0087716579 -0.59719586 0.11878967\n\t\t 1.0039389133 -0.60394025 0.12013119 1.0012457371 -0.61177623 0.12168986 1.00017619133 -0.61998862 0.12332338\n\t\t 1.039999962 -0.55432779 0.22961009 1 -0.59180468 0.24513352 1.031687498 -0.55449289 0.22967845\n\t\t 1.023430824 -0.5554949 0.23009354 1.015552521 -0.55801833 0.23113877 1.0087716579 -0.56254613 0.23301423\n\t\t 1.0039389133 -0.56889921 0.23564577 1.0012457371 -0.57628059 0.23870325 1.00017619133 -0.5840165 0.24190754\n\t\t 1.039999962 -0.49888185 0.33334222 1 -0.53261018 0.35587877 1.031687498 -0.49903041 0.3334415\n\t\t 1.023430824 -0.49993223 0.33404404 1.015552521 -0.50220317 0.33556145 1.0087716579 -0.5062781 0.33828419\n\t\t 1.0039389133 -0.51199573 0.34210467 1.0012457371 -0.51863879 0.34654337 1.00017619133 -0.52560091 0.35119534\n\t\t 1.039999962 -0.4242641 0.42426416 1 -0.45294771 0.45294777 1.031687498 -0.42439049 0.42439055\n\t\t 1.023430824 -0.4251574 0.42515746 1.015552521 -0.42708871 0.42708877 1.0087716579 -0.43055415 0.43055421\n\t\t 1.0039389133 -0.43541664 0.43541664 1.0012457371 -0.44106609 0.44106609 1.00017619133 -0.44698685 0.44698691\n\t\t 1.039999962 -0.22960997 0.55432779 1 -0.24485257 0.59112674 1.031687498 -0.22967711 0.55448991\n\t\t 1.023430824 -0.23008466 0.5554738 1.015552521 -0.23111096 0.55795151 1.0087716579 -0.23295254 0.56239736\n\t\t 1.0039389133 -0.23553646 0.56863558 1.0012457371 -0.23853859 0.57588345 1.00017619133 -0.24168494 0.58347934\n\t\t 1 2.3841858e-07 0.63983089 1.039999962 2.3841858e-07 0.60000002 1.00017619133 2.3841858e-07 0.63155353\n\t\t 1.0012457371 2.3841858e-07 0.62333179 1.0039389133 2.3841858e-07 0.6154868 1.0087716579 2.3841858e-07 0.60873461\n\t\t 1.015552521 2.3841858e-07 0.60392237 1.023430824 2.3841858e-07 0.60124052 1.031687498 2.3841858e-07 0.60017562\n\t\t 1.039999962 0.11705446 0.58847111 1 0.12482512 0.62753659 1.031687498 0.11708874 0.58864319\n\t\t 1.023430824 0.11729646 0.58968771 1.015552521 0.11781967 0.59231794 1.0087716579 0.1187585 0.59703779\n\t\t 1.0039389133 0.12007576 0.60366023 1.0012457371 0.12160629 0.61135447 1.00017619133 0.12321025 0.61941826\n\t\t 1.039999962 -0.11705402 0.58847123 1 -0.12482464 0.62753683 1.031687498 -0.11708823 0.58864337\n\t\t 1.023430824 -0.11729601 0.58968782 1.015552521 -0.11781922 0.59231818 1.0087716579 -0.11875802 0.59703791\n\t\t 1.0039389133 -0.12007532 0.60366029 1.0012457371 -0.12160578 0.61135453 1.00017619133 -0.12320977 0.61941844\n\t\t 1 0.24513248 -0.59180504 1.039999962 0.2296091 -0.55432814 1.00017619133 0.24190649 -0.58401686\n\t\t 1.0012457371 0.23870221 -0.57628089 1.0039389133 0.23564476 -0.56889951 1.0087716579 0.23301321 -0.56254637\n\t\t 1.015552521 0.23113775 -0.55801868 1.023430824 0.23009256 -0.55549526 1.031687498 0.2296775 -0.55449319\n\t\t 1 0.3502793 -0.53560299 1.039999962 0.33133364 -0.49995533 1.00017619133 0.34632513 -0.52820402\n\t\t 1.0012457371 0.34239939 -0.52085376 1.0039389133 0.33865705 -0.51383847 1.0087716579 0.33544129 -0.5077976\n\t\t 1.015552521 0.33315638 -0.5034886 1.023430824 0.33189166 -0.50108272 1.031687498 0.3314001 -0.50012147\n\t\t 1.039999962 0.22961038 0.55432761 1 0.24485296 0.59112644 1.031687498 0.22967756 0.55448985\n\t\t 1.023430824 0.23008507 0.55547369 1.015552521 0.23111141 0.55795139 1.0087716579 0.23295295 0.56239736\n\t\t 1.0039389133 0.23553687 0.56863546 1.0012457371 0.23853904 0.57588321 1.00017619133 0.24168539 0.58347929\n\t\t 1.039999962 0.42426339 -0.4242647 1 0.45242795 -0.45242938 1.031687498 0.42438748 -0.4243888\n\t\t 1.023430824 0.42514056 -0.42514187 1.015552521 0.42703688 -0.42703819 1.0087716579 0.43043965 -0.43044096\n\t\t 1.0039389133 0.4352141 -0.43521547 1.0012457371 0.44076133 -0.4407627 1.00017619133 0.44657499 -0.44657636\n\t\t 1.039999962 0.33334243 0.49888158 1 0.3554709 0.53199995 1.031687498 0.33343995 0.49902749\n\t\t 1.023430824 0.33403161 0.49991301 1.015552521 0.33552152 0.50214285 1.0087716579 0.33819503 0.50614411\n\t\t 1.0039389133 0.34194624 0.51175839 1.0012457371 0.3463046 0.51828128 1.00017619133 0.35087234 0.52511746\n\t\t 1 0.53199929 -0.35547167 1.039999962 0.49888125 -0.33334282 1.00017619133 0.52511698 -0.35087305\n\t\t 1.0012457371 0.5182808 -0.34630525 1.0039389133 0.51175791 -0.34194678 1.0087716579 0.50614375 -0.3381955\n\t\t 1.015552521 0.50214261 -0.33552194 1.023430824 0.49991268 -0.334032 1.031687498 0.49902722 -0.33344033\n\t\t 1 0.45242903 0.45242837 1.039999962 0.42426437 0.42426378 1.00017619133 0.44657606 0.4465754\n\t\t 1.0012457371 0.44076237 0.44076172 1.0039389133 0.43521515 0.43521449 1.0087716579 0.4304406 0.43044001\n\t\t 1.015552521 0.42703786 0.42703727 1.023430824 0.42514151 0.42514092 1.031687498 0.42438847 0.42438787\n\t\t 1 0.5911262 -0.24485338 1.039999962 0.55432737 -0.2296108 1.00017619133 0.58347893 -0.24168581\n\t\t 1.0012457371 0.57588303 -0.23853946 1.0039389133 0.56863523 -0.23553729 1.0087716579 0.56239712 -0.23295337\n\t\t 1.015552521 0.55795121 -0.23111182 1.023430824 0.55547345 -0.23008549 1.031687498 0.55448961 -0.22967798\n\t\t 1.039999962 0.49888203 0.33334172 1 0.53200012 0.35547051 1.031687498 0.49902791 0.33343923\n\t\t 1.023430824 0.49991336 0.33403087 1.015552521 0.50214332 0.33552086 1.0087716579 0.50614446 0.33819434\n\t\t 1.0039389133 0.51175874 0.34194562 1.0012457371 0.51828146 0.34630406 1.00017619133 0.5251177 0.35087183\n\t\t 1 0.62753648 -0.12482554 1.039999962 0.588471 -0.11705488 1.00017619133 0.61941814 -0.12321073\n\t\t 1.0012457371 0.61135435 -0.12160671 1.0039389133 0.60366011 -0.12007624 1.0087716579 0.59703767 -0.11875892\n\t\t 1.015552521 0.59231788 -0.11782014 1.023430824 0.58968753 -0.11729693 1.031687498 0.58864313 -0.11708915\n\t\t 1.039999962 0.55432796 0.22960955 1 0.59112692 0.2448521 1.031687498 0.55449021 0.22967672\n\t\t 1.023430824 0.5554741 0.23008427 1.015552521 0.55795181 0.23111057 1.0087716579 0.56239772 0.23295212\n\t\t 1.0039389133 0.56863588 0.23553607 1.0012457371 0.57588369 0.23853818;\n\tsetAttr \".vt[3984:4038]\" 1.00017619133 0.5834797 0.24168453 1.039999962 0.58847123 0.1170536\n\t\t 1 0.62753671 0.12482411 1.031687498 0.58864337 0.11708781 1.023430824 0.58968788 0.11729559\n\t\t 1.015552521 0.59231818 0.11781877 1.0087716579 0.59703797 0.11875761 1.0039389133 0.60366035 0.12007487\n\t\t 1.0012457371 0.61135459 0.12160534 1.00017619133 0.61941838 0.1232093 1.039999962 0.59999996 -6.5565109e-07\n\t\t 1 0.63983077 -7.1525574e-07 1.031687498 0.6001755 -6.5565109e-07 1.023430824 0.6012404 -6.5565109e-07\n\t\t 1.015552521 0.60392225 -6.5565109e-07 1.0087716579 0.60873449 -7.1525574e-07 1.0039389133 0.61548662 -7.1525574e-07\n\t\t 1.0012457371 0.62333155 -7.1525574e-07 1.00017619133 0.63155341 -7.1525574e-07 -1 1.7881393e-07 0.95999998\n\t\t -0.95999998 1.1920929e-07 1 -0.99982381 1.7881393e-07 0.96831256 -0.99875432 1.7881393e-07 0.97656929\n\t\t -0.99606109 1.7881393e-07 0.9844476 -0.99122846 1.7881393e-07 0.99122846 -0.9844476 1.7881393e-07 0.99606109\n\t\t -0.97656929 1.7881393e-07 0.99875432 -0.96831256 1.7881393e-07 0.99982381 -1 -1.7881393e-07 -0.95999998\n\t\t -0.95999998 -1.1920929e-07 -1 -0.99982381 -1.7881393e-07 -0.96831256 -0.99875432 -1.7881393e-07 -0.97656929\n\t\t -0.99606109 -1.7881393e-07 -0.9844476 -0.99122846 -1.7881393e-07 -0.99122846 -0.9844476 -1.7881393e-07 -0.99606109\n\t\t -0.97656929 -1.7881393e-07 -0.99875432 -0.96831256 -1.7881393e-07 -0.99982381 0.95999998 -1.1920929e-07 -1\n\t\t 1 -1.7881393e-07 -0.95999998 0.96831256 -1.7881393e-07 -0.99982381 0.97656929 -1.7881393e-07 -0.99875432\n\t\t 0.9844476 -1.7881393e-07 -0.99606109 0.99122846 -1.7881393e-07 -0.99122846 0.99606109 -1.7881393e-07 -0.9844476\n\t\t 0.99875432 -1.7881393e-07 -0.97656929 0.99982381 -1.7881393e-07 -0.96831256 1 1.7881393e-07 0.95999998\n\t\t 0.95999998 1.1920929e-07 1 0.99982381 1.7881393e-07 0.96831256 0.99875432 1.7881393e-07 0.97656929\n\t\t 0.99606109 1.7881393e-07 0.9844476 0.99122846 1.7881393e-07 0.99122846 0.9844476 1.7881393e-07 0.99606109\n\t\t 0.97656929 1.7881393e-07 0.99875432 0.96831256 1.7881393e-07 0.99982381;\n\tsetAttr -s 8046 \".ed\";\n\tsetAttr \".ed[0:165]\"  3751 3743 0 3743 343 0 343 63 0 63 3751 0 492 59 0\n\t\t 59 4021 0 4021 3453 0 3453 492 0 4022 3444 0 3444 3672 0 3672 42 0 42 40 0 40 23 0\n\t\t 23 22 0 22 4022 0 412 565 0 565 1098 0 1098 1158 0 1158 412 0 4031 3534 0 3534 546 0\n\t\t 546 54 0 54 4031 0 3733 713 0 713 6 0 6 3524 0 3524 3733 0 546 555 0 555 55 0 55 54 0\n\t\t 564 906 0 906 1223 0 1223 1096 0 1096 564 0 519 56 0 56 4004 0 4004 353 0 353 519 0\n\t\t 536 54 0 55 528 0 528 536 0 3594 4031 0 536 3594 0 6 545 0 545 3533 0 3533 3524 0\n\t\t 6 836 0 836 554 0 554 545 0 836 904 0 904 563 0 563 554 0 0 482 0 482 966 0 966 19 0\n\t\t 19 0 0 57 0 0 0 1 0 1 58 0 58 57 0 1 2 0 2 59 0 59 58 0 491 3455 0 3455 3515 0 3515 15 0\n\t\t 15 491 0 12 15 0 15 16 0 16 13 0 13 12 0 16 17 0 17 14 0 14 13 0 55 56 0 519 528 0\n\t\t 9 12 0 13 10 0 10 9 0 14 11 0 11 10 0 483 5 0 5 18 0 18 965 0 965 483 0 642 60 0\n\t\t 60 61 0 61 634 0 634 642 0 3674 651 0 651 713 0 3733 3674 0 652 3673 0 3673 1402 0\n\t\t 1402 1461 0 1461 652 0 5 4 0 4 21 0 21 18 0 61 62 0 62 625 0 625 634 0 62 4012 0\n\t\t 4012 421 0 421 625 0 21 1341 0 1341 2130 0 2130 2193 0 2193 21 0 834 773 0 773 1708 0\n\t\t 1708 1826 0 1826 834 0 966 896 0 896 7 0 7 19 0 714 653 0 653 1466 0 1466 1583 0\n\t\t 1583 714 0 713 774 0 774 836 0 3444 1037 0 1037 1400 0 1400 3672 0 56 565 0 412 4004 0\n\t\t 4013 482 0 57 4013 0 501 58 0 492 501 0 44 3523 0 3523 3532 0 3532 4030 0 4030 39 0\n\t\t 39 37 0 37 41 0 41 44 0 3672 3734 0 3734 52 0 52 50 0 50 48 0 48 45 0 45 43 0 43 42 0\n\t\t 3454 4022 0 22 24 0 24 25 0 25 26 0 26 3514 0 3514 3454 0 3515 3663 0 3663 16 0 3 413 0\n\t\t 413 1157 0 1157 1341 0 1341 3 0 60 3 0 3 4 0 4 61 0 5 62 0 1220 1948 0 1948 2561 0\n\t\t 2561 2677 0 2677 1220 0 1947 1706 0;\n\tsetAttr \".ed[166:331]\" 1706 2434 0 2434 2556 0 2556 1947 0 895 8 0 8 1888 0\n\t\t 1888 2738 0 2738 895 0 1340 1221 0 1221 2679 0 2679 2131 0 2131 1340 0 1645 1464 0\n\t\t 1464 2254 0 2254 2317 0 2317 1645 0 1463 976 0 976 2071 0 2071 2252 0 2252 1463 0\n\t\t 896 2739 0 2739 2747 0 2747 7 0 1888 3173 0 3173 3234 0 3234 2738 0 2192 2559 0 2559 3114 0\n\t\t 3114 2870 0 2870 2192 0 975 20 0 20 2008 0 2008 2069 0 2069 975 0 775 712 0 712 1582 0\n\t\t 1582 1709 0 1709 775 0 483 4012 0 1222 1339 0 1339 1159 0 1159 1097 0 1097 1222 0\n\t\t 19 20 0 20 1 0 905 835 0 835 1825 0 1825 1218 0 1218 905 0 2739 3236 0 3236 3295 0\n\t\t 3295 2747 0 2495 2314 0 2314 2930 0 2930 2991 0 2991 2495 0 7 2008 0 18 8 0 895 965 0\n\t\t 2558 2496 0 2496 2996 0 2996 3112 0 3112 2558 0 2193 8 0 2313 2009 0 2009 2810 0\n\t\t 2810 2931 0 2931 2313 0 975 2 0 1707 1949 0 1949 1219 0 1219 1827 0 1827 1707 0 1465 1644 0\n\t\t 1644 1704 0 1704 1584 0 1584 1465 0 1705 1643 0 1643 2316 0 2316 2435 0 2435 1705 0\n\t\t 1036 974 0 974 1462 0 1462 1401 0 1401 1036 0 2993 2748 0 2748 3297 0 3297 3356 0\n\t\t 3356 2993 0 2193 2869 0 2869 1888 0 1887 2994 0 2994 3358 0 3358 3174 0 3174 1887 0\n\t\t 2070 2010 0 2010 2318 0 2318 2253 0 2253 2070 0 3445 2 0 975 1035 0 1035 3445 0 2560 2191 0\n\t\t 2191 2132 0 2132 2678 0 2678 2560 0 2315 2497 0 2497 2557 0 2557 2436 0 2436 2315 0\n\t\t 2747 2808 0 2808 2008 0 25 3770 0 3770 3418 0 3418 26 0 2995 1886 0 1886 2871 0 2871 3113 0\n\t\t 3113 2995 0 3296 3235 0 3235 3175 0 3175 3357 0 3357 3296 0 2809 2749 0 2749 2992 0\n\t\t 2992 2932 0 2932 2809 0 3932 3950 0 3950 298 0 298 307 0 307 3932 0 3968 3994 0 3994 280 0\n\t\t 280 289 0 289 3968 0 3994 3985 0 3985 271 0 271 280 0 72 64 0 64 342 0 342 333 0\n\t\t 333 324 0 324 315 0 315 306 0 306 297 0 297 288 0 288 279 0 279 270 0 270 261 0 261 252 0\n\t\t 252 243 0 243 234 0 234 225 0 225 216 0 216 207 0 207 198 0 198 189 0 189 180 0 180 171 0\n\t\t 171 162 0 162 153 0 153 144 0 144 135 0 135 126 0 126 117 0 117 108 0 108 99 0;\n\tsetAttr \".ed[332:497]\" 99 90 0 90 81 0 81 72 0 3832 3823 0 3823 154 0 154 163 0\n\t\t 163 3832 0 3896 3913 0 3913 316 0 316 325 0 325 3896 0 3913 3932 0 307 316 0 3743 3887 0\n\t\t 3887 334 0 334 343 0 3417 3769 0 3769 82 0 82 91 0 91 3417 0 3922 3904 0 3904 226 0\n\t\t 226 235 0 235 3922 0 3814 3426 0 3426 136 0 136 145 0 145 3814 0 3941 3922 0 235 244 0\n\t\t 244 3941 0 3779 3417 0 91 100 0 100 3779 0 351 4003 0 4003 60 0 642 351 0 3868 3860 0\n\t\t 3860 208 0 208 217 0 217 3868 0 3769 3760 0 3760 73 0 73 82 0 3985 3976 0 3976 262 0\n\t\t 262 271 0 3805 3797 0 3797 118 0 118 127 0 127 3805 0 4030 3593 0 3593 3655 0 3655 36 0\n\t\t 36 35 0 35 38 0 38 39 0 3823 3814 0 145 154 0 3787 3779 0 100 109 0 109 3787 0 3976 3958 0\n\t\t 3958 253 0 253 262 0 3860 3877 0 3877 199 0 199 208 0 3850 3436 0 3436 181 0 181 190 0\n\t\t 190 3850 0 3887 3896 0 325 334 0 3841 3832 0 163 172 0 172 3841 0 3950 3968 0 289 298 0\n\t\t 3904 3868 0 217 226 0 3797 3787 0 109 118 0 3958 3941 0 244 253 0 3436 3841 0 172 181 0\n\t\t 3426 3805 0 127 136 0 3877 3850 0 190 199 0 3655 3664 0 3664 53 0 53 31 0 31 32 0\n\t\t 32 33 0 33 34 0 34 36 0 3663 3654 0 3654 17 0 23 3742 0 3742 3752 0 3752 22 0 40 3886 0\n\t\t 3886 3742 0 24 3761 0 3761 3770 0 28 27 0 27 3778 0 3778 3788 0 3788 28 0 27 26 0\n\t\t 3418 3778 0 53 29 0 29 3806 0 3806 3427 0 3427 53 0 30 28 0 3788 3796 0 3796 30 0\n\t\t 31 3815 0 3815 3824 0 3824 32 0 29 30 0 3796 3806 0 3427 3815 0 36 3435 0 3435 3851 0\n\t\t 3851 35 0 3824 3833 0 3833 33 0 3833 3842 0 3842 34 0 3851 3878 0 3878 38 0 3842 3435 0\n\t\t 3445 4021 0 3878 3859 0 3859 39 0 3859 3869 0 3869 37 0 3869 3905 0 3905 41 0 3752 3761 0\n\t\t 43 3914 0 3914 3895 0 3895 42 0 3895 3886 0 3905 3923 0 3923 44 0 45 3931 0 3931 3914 0\n\t\t 46 44 0 3923 3940 0 3940 46 0 48 3949 0 3949 3931 0 47 46 0 3940 3959 0 3959 47 0\n\t\t 50 3967 0 3967 3949 0 49 47 0 3959 3977 0 3977 49 0 52 3995 0;\n\tsetAttr \".ed[498:663]\" 3995 3967 0 52 51 0 51 3986 0 3986 3995 0 51 49 0 3977 3986 0\n\t\t 624 9 0 10 633 0 633 624 0 11 643 0 643 633 0 11 518 0 518 352 0 352 643 0 509 57 0\n\t\t 501 509 0 510 500 0 500 12 0 9 510 0 423 510 0 624 423 0 14 527 0 527 518 0 17 537 0\n\t\t 537 527 0 3654 3595 0 3595 537 0 4003 413 0 500 491 0 422 4013 0 509 422 0 3734 3523 0\n\t\t 3664 3514 0 555 565 0 351 354 0 354 359 0 359 358 0 358 351 0 354 355 0 355 360 0\n\t\t 360 359 0 355 356 0 356 361 0 361 360 0 356 357 0 357 362 0 362 361 0 359 364 0 364 363 0\n\t\t 363 358 0 360 365 0 365 364 0 361 366 0 366 365 0 362 367 0 367 366 0 364 369 0 369 368 0\n\t\t 368 363 0 365 370 0 370 369 0 366 371 0 371 370 0 367 372 0 372 371 0 369 401 0 401 396 0\n\t\t 396 368 0 370 406 0 406 401 0 371 411 0 411 406 0 372 373 0 373 411 0 352 374 0 374 379 0\n\t\t 379 378 0 378 352 0 374 375 0 375 380 0 380 379 0 375 376 0 376 381 0 381 380 0 376 377 0\n\t\t 377 382 0 382 381 0 379 384 0 384 383 0 383 378 0 380 385 0 385 384 0 381 386 0 386 385 0\n\t\t 382 387 0 387 386 0 384 389 0 389 388 0 388 383 0 385 390 0 390 389 0 386 391 0 391 390 0\n\t\t 387 392 0 392 391 0 389 362 0 357 388 0 390 367 0 391 372 0 392 373 0 353 393 0 393 398 0\n\t\t 398 397 0 397 353 0 393 394 0 394 399 0 399 398 0 394 395 0 395 400 0 400 399 0 395 396 0\n\t\t 401 400 0 398 403 0 403 402 0 402 397 0 399 404 0 404 403 0 400 405 0 405 404 0 406 405 0\n\t\t 403 408 0 408 407 0 407 402 0 404 409 0 409 408 0 405 410 0 410 409 0 411 410 0 408 382 0\n\t\t 377 407 0 409 387 0 410 392 0 421 424 0 424 429 0 429 428 0 428 421 0 424 425 0 425 430 0\n\t\t 430 429 0 425 426 0 426 431 0 431 430 0 426 427 0 427 432 0 432 431 0 429 434 0 434 433 0\n\t\t 433 428 0 430 435 0 435 434 0 431 436 0 436 435 0 432 437 0 437 436 0 434 439 0 439 438 0;\n\tsetAttr \".ed[664:829]\" 438 433 0 435 440 0 440 439 0 436 441 0 441 440 0 437 442 0\n\t\t 442 441 0 439 471 0 471 466 0 466 438 0 440 476 0 476 471 0 441 481 0 481 476 0 442 443 0\n\t\t 443 481 0 422 444 0 444 449 0 449 448 0 448 422 0 444 445 0 445 450 0 450 449 0 445 446 0\n\t\t 446 451 0 451 450 0 446 447 0 447 452 0 452 451 0 449 454 0 454 453 0 453 448 0 450 455 0\n\t\t 455 454 0 451 456 0 456 455 0 452 457 0 457 456 0 454 459 0 459 458 0 458 453 0 455 460 0\n\t\t 460 459 0 456 461 0 461 460 0 457 462 0 462 461 0 459 432 0 427 458 0 460 437 0 461 442 0\n\t\t 462 443 0 423 463 0 463 468 0 468 467 0 467 423 0 463 464 0 464 469 0 469 468 0 464 465 0\n\t\t 465 470 0 470 469 0 465 466 0 471 470 0 468 473 0 473 472 0 472 467 0 469 474 0 474 473 0\n\t\t 470 475 0 475 474 0 476 475 0 473 478 0 478 477 0 477 472 0 474 479 0 479 478 0 475 480 0\n\t\t 480 479 0 481 480 0 478 452 0 447 477 0 479 457 0 480 462 0 563 566 0 566 571 0 571 570 0\n\t\t 570 563 0 566 567 0 567 572 0 572 571 0 567 568 0 568 573 0 573 572 0 568 569 0 569 574 0\n\t\t 574 573 0 571 576 0 576 575 0 575 570 0 572 577 0 577 576 0 573 578 0 578 577 0 574 579 0\n\t\t 579 578 0 576 581 0 581 580 0 580 575 0 577 582 0 582 581 0 578 583 0 583 582 0 579 584 0\n\t\t 584 583 0 581 613 0 613 608 0 608 580 0 582 618 0 618 613 0 583 623 0 623 618 0 584 585 0\n\t\t 585 623 0 564 586 0 586 591 0 591 590 0 590 564 0 586 587 0 587 592 0 592 591 0 587 588 0\n\t\t 588 593 0 593 592 0 588 589 0 589 594 0 594 593 0 591 596 0 596 595 0 595 590 0 592 597 0\n\t\t 597 596 0 593 598 0 598 597 0 594 599 0 599 598 0 596 601 0 601 600 0 600 595 0 597 602 0\n\t\t 602 601 0 598 603 0 603 602 0 599 604 0 604 603 0 601 574 0 569 600 0 602 579 0 603 584 0\n\t\t 604 585 0 565 605 0 605 610 0 610 609 0 609 565 0 605 606 0 606 611 0;\n\tsetAttr \".ed[830:995]\" 611 610 0 606 607 0 607 612 0 612 611 0 607 608 0 613 612 0\n\t\t 610 615 0 615 614 0 614 609 0 611 616 0 616 615 0 612 617 0 617 616 0 618 617 0 615 620 0\n\t\t 620 619 0 619 614 0 616 621 0 621 620 0 617 622 0 622 621 0 623 622 0 620 594 0 589 619 0\n\t\t 621 599 0 622 604 0 651 654 0 654 659 0 659 658 0 658 651 0 654 655 0 655 660 0 660 659 0\n\t\t 655 656 0 656 661 0 661 660 0 656 657 0 657 662 0 662 661 0 659 664 0 664 663 0 663 658 0\n\t\t 660 665 0 665 664 0 661 666 0 666 665 0 662 667 0 667 666 0 664 669 0 669 668 0 668 663 0\n\t\t 665 670 0 670 669 0 666 671 0 671 670 0 667 672 0 672 671 0 669 701 0 701 696 0 696 668 0\n\t\t 670 706 0 706 701 0 671 711 0 711 706 0 672 673 0 673 711 0 652 674 0 674 679 0 679 678 0\n\t\t 678 652 0 674 675 0 675 680 0 680 679 0 675 676 0 676 681 0 681 680 0 676 677 0 677 682 0\n\t\t 682 681 0 679 684 0 684 683 0 683 678 0 680 685 0 685 684 0 681 686 0 686 685 0 682 687 0\n\t\t 687 686 0 684 689 0 689 688 0 688 683 0 685 690 0 690 689 0 686 691 0 691 690 0 687 692 0\n\t\t 692 691 0 689 662 0 657 688 0 690 667 0 691 672 0 692 673 0 653 693 0 693 698 0 698 697 0\n\t\t 697 653 0 693 694 0 694 699 0 699 698 0 694 695 0 695 700 0 700 699 0 695 696 0 701 700 0\n\t\t 698 703 0 703 702 0 702 697 0 699 704 0 704 703 0 700 705 0 705 704 0 706 705 0 703 708 0\n\t\t 708 707 0 707 702 0 704 709 0 709 708 0 705 710 0 710 709 0 711 710 0 708 682 0 677 707 0\n\t\t 709 687 0 710 692 0 712 715 0 715 720 0 720 719 0 719 712 0 715 716 0 716 721 0 721 720 0\n\t\t 716 717 0 717 722 0 722 721 0 717 718 0 718 723 0 723 722 0 720 725 0 725 724 0 724 719 0\n\t\t 721 726 0 726 725 0 722 727 0 727 726 0 723 728 0 728 727 0 725 730 0 730 729 0 729 724 0\n\t\t 726 731 0 731 730 0 727 732 0 732 731 0 728 733 0 733 732 0 730 762 0;\n\tsetAttr \".ed[996:1161]\" 762 757 0 757 729 0 731 767 0 767 762 0 732 772 0 772 767 0\n\t\t 733 734 0 734 772 0 713 735 0 735 740 0 740 739 0 739 713 0 735 736 0 736 741 0 741 740 0\n\t\t 736 737 0 737 742 0 742 741 0 737 738 0 738 743 0 743 742 0 740 745 0 745 744 0 744 739 0\n\t\t 741 746 0 746 745 0 742 747 0 747 746 0 743 748 0 748 747 0 745 750 0 750 749 0 749 744 0\n\t\t 746 751 0 751 750 0 747 752 0 752 751 0 748 753 0 753 752 0 750 723 0 718 749 0 751 728 0\n\t\t 752 733 0 753 734 0 714 754 0 754 759 0 759 758 0 758 714 0 754 755 0 755 760 0 760 759 0\n\t\t 755 756 0 756 761 0 761 760 0 756 757 0 762 761 0 759 764 0 764 763 0 763 758 0 760 765 0\n\t\t 765 764 0 761 766 0 766 765 0 767 766 0 764 769 0 769 768 0 768 763 0 765 770 0 770 769 0\n\t\t 766 771 0 771 770 0 772 771 0 769 743 0 738 768 0 770 748 0 771 753 0 773 776 0 776 781 0\n\t\t 781 780 0 780 773 0 776 777 0 777 782 0 782 781 0 777 778 0 778 783 0 783 782 0 778 779 0\n\t\t 779 784 0 784 783 0 781 786 0 786 785 0 785 780 0 782 787 0 787 786 0 783 788 0 788 787 0\n\t\t 784 789 0 789 788 0 786 791 0 791 790 0 790 785 0 787 792 0 792 791 0 788 793 0 793 792 0\n\t\t 789 794 0 794 793 0 791 823 0 823 818 0 818 790 0 792 828 0 828 823 0 793 833 0 833 828 0\n\t\t 794 795 0 795 833 0 774 796 0 796 801 0 801 800 0 800 774 0 796 797 0 797 802 0 802 801 0\n\t\t 797 798 0 798 803 0 803 802 0 798 799 0 799 804 0 804 803 0 801 806 0 806 805 0 805 800 0\n\t\t 802 807 0 807 806 0 803 808 0 808 807 0 804 809 0 809 808 0 806 811 0 811 810 0 810 805 0\n\t\t 807 812 0 812 811 0 808 813 0 813 812 0 809 814 0 814 813 0 811 784 0 779 810 0 812 789 0\n\t\t 813 794 0 814 795 0 775 815 0 815 820 0 820 819 0 819 775 0 815 816 0 816 821 0 821 820 0\n\t\t 816 817 0 817 822 0 822 821 0 817 818 0 823 822 0 820 825 0 825 824 0;\n\tsetAttr \".ed[1162:1327]\" 824 819 0 821 826 0 826 825 0 822 827 0 827 826 0 828 827 0\n\t\t 825 830 0 830 829 0 829 824 0 826 831 0 831 830 0 827 832 0 832 831 0 833 832 0 830 804 0\n\t\t 799 829 0 831 809 0 832 814 0 834 837 0 837 842 0 842 841 0 841 834 0 837 838 0 838 843 0\n\t\t 843 842 0 838 839 0 839 844 0 844 843 0 839 840 0 840 845 0 845 844 0 842 847 0 847 846 0\n\t\t 846 841 0 843 848 0 848 847 0 844 849 0 849 848 0 845 850 0 850 849 0 847 852 0 852 851 0\n\t\t 851 846 0 848 853 0 853 852 0 849 854 0 854 853 0 850 855 0 855 854 0 852 884 0 884 879 0\n\t\t 879 851 0 853 889 0 889 884 0 854 894 0 894 889 0 855 856 0 856 894 0 835 857 0 857 862 0\n\t\t 862 861 0 861 835 0 857 858 0 858 863 0 863 862 0 858 859 0 859 864 0 864 863 0 859 860 0\n\t\t 860 865 0 865 864 0 862 867 0 867 866 0 866 861 0 863 868 0 868 867 0 864 869 0 869 868 0\n\t\t 865 870 0 870 869 0 867 872 0 872 871 0 871 866 0 868 873 0 873 872 0 869 874 0 874 873 0\n\t\t 870 875 0 875 874 0 872 845 0 840 871 0 873 850 0 874 855 0 875 856 0 836 876 0 876 881 0\n\t\t 881 880 0 880 836 0 876 877 0 877 882 0 882 881 0 877 878 0 878 883 0 883 882 0 878 879 0\n\t\t 884 883 0 881 886 0 886 885 0 885 880 0 882 887 0 887 886 0 883 888 0 888 887 0 889 888 0\n\t\t 886 891 0 891 890 0 890 885 0 887 892 0 892 891 0 888 893 0 893 892 0 894 893 0 891 865 0\n\t\t 860 890 0 892 870 0 893 875 0 904 907 0 907 912 0 912 911 0 911 904 0 907 908 0 908 913 0\n\t\t 913 912 0 908 909 0 909 914 0 914 913 0 909 910 0 910 915 0 915 914 0 912 917 0 917 916 0\n\t\t 916 911 0 913 918 0 918 917 0 914 919 0 919 918 0 915 920 0 920 919 0 917 922 0 922 921 0\n\t\t 921 916 0 918 923 0 923 922 0 919 924 0 924 923 0 920 925 0 925 924 0 922 954 0 954 949 0\n\t\t 949 921 0 923 959 0 959 954 0 924 964 0 964 959 0 925 926 0 926 964 0;\n\tsetAttr \".ed[1328:1493]\" 905 927 0 927 932 0 932 931 0 931 905 0 927 928 0 928 933 0\n\t\t 933 932 0 928 929 0 929 934 0 934 933 0 929 930 0 930 935 0 935 934 0 932 937 0 937 936 0\n\t\t 936 931 0 933 938 0 938 937 0 934 939 0 939 938 0 935 940 0 940 939 0 937 942 0 942 941 0\n\t\t 941 936 0 938 943 0 943 942 0 939 944 0 944 943 0 940 945 0 945 944 0 942 915 0 910 941 0\n\t\t 943 920 0 944 925 0 945 926 0 906 946 0 946 951 0 951 950 0 950 906 0 946 947 0 947 952 0\n\t\t 952 951 0 947 948 0 948 953 0 953 952 0 948 949 0 954 953 0 951 956 0 956 955 0 955 950 0\n\t\t 952 957 0 957 956 0 953 958 0 958 957 0 959 958 0 956 961 0 961 960 0 960 955 0 957 962 0\n\t\t 962 961 0 958 963 0 963 962 0 964 963 0 961 935 0 930 960 0 962 940 0 963 945 0 974 977 0\n\t\t 977 982 0 982 981 0 981 974 0 977 978 0 978 983 0 983 982 0 978 979 0 979 984 0 984 983 0\n\t\t 979 980 0 980 985 0 985 984 0 982 987 0 987 986 0 986 981 0 983 988 0 988 987 0 984 989 0\n\t\t 989 988 0 985 990 0 990 989 0 987 992 0 992 991 0 991 986 0 988 993 0 993 992 0 989 994 0\n\t\t 994 993 0 990 995 0 995 994 0 992 1024 0 1024 1019 0 1019 991 0 993 1029 0 1029 1024 0\n\t\t 994 1034 0 1034 1029 0 995 996 0 996 1034 0 975 997 0 997 1002 0 1002 1001 0 1001 975 0\n\t\t 997 998 0 998 1003 0 1003 1002 0 998 999 0 999 1004 0 1004 1003 0 999 1000 0 1000 1005 0\n\t\t 1005 1004 0 1002 1007 0 1007 1006 0 1006 1001 0 1003 1008 0 1008 1007 0 1004 1009 0\n\t\t 1009 1008 0 1005 1010 0 1010 1009 0 1007 1012 0 1012 1011 0 1011 1006 0 1008 1013 0\n\t\t 1013 1012 0 1009 1014 0 1014 1013 0 1010 1015 0 1015 1014 0 1012 985 0 980 1011 0\n\t\t 1013 990 0 1014 995 0 1015 996 0 976 1016 0 1016 1021 0 1021 1020 0 1020 976 0 1016 1017 0\n\t\t 1017 1022 0 1022 1021 0 1017 1018 0 1018 1023 0 1023 1022 0 1018 1019 0 1024 1023 0\n\t\t 1021 1026 0 1026 1025 0 1025 1020 0 1022 1027 0 1027 1026 0 1023 1028 0 1028 1027 0\n\t\t 1029 1028 0 1026 1031 0 1031 1030 0;\n\tsetAttr \".ed[1494:1659]\" 1030 1025 0 1027 1032 0 1032 1031 0 1028 1033 0 1033 1032 0\n\t\t 1034 1033 0 1031 1005 0 1000 1030 0 1032 1010 0 1033 1015 0 1035 1038 0 1038 1043 0\n\t\t 1043 1042 0 1042 1035 0 1038 1039 0 1039 1044 0 1044 1043 0 1039 1040 0 1040 1045 0\n\t\t 1045 1044 0 1040 1041 0 1041 1046 0 1046 1045 0 1043 1048 0 1048 1047 0 1047 1042 0\n\t\t 1044 1049 0 1049 1048 0 1045 1050 0 1050 1049 0 1046 1051 0 1051 1050 0 1048 1053 0\n\t\t 1053 1052 0 1052 1047 0 1049 1054 0 1054 1053 0 1050 1055 0 1055 1054 0 1051 1056 0\n\t\t 1056 1055 0 1053 1085 0 1085 1080 0 1080 1052 0 1054 1090 0 1090 1085 0 1055 1095 0\n\t\t 1095 1090 0 1056 1057 0 1057 1095 0 1036 1058 0 1058 1063 0 1063 1062 0 1062 1036 0\n\t\t 1058 1059 0 1059 1064 0 1064 1063 0 1059 1060 0 1060 1065 0 1065 1064 0 1060 1061 0\n\t\t 1061 1066 0 1066 1065 0 1063 1068 0 1068 1067 0 1067 1062 0 1064 1069 0 1069 1068 0\n\t\t 1065 1070 0 1070 1069 0 1066 1071 0 1071 1070 0 1068 1073 0 1073 1072 0 1072 1067 0\n\t\t 1069 1074 0 1074 1073 0 1070 1075 0 1075 1074 0 1071 1076 0 1076 1075 0 1073 1046 0\n\t\t 1041 1072 0 1074 1051 0 1075 1056 0 1076 1057 0 1037 1077 0 1077 1082 0 1082 1081 0\n\t\t 1081 1037 0 1077 1078 0 1078 1083 0 1083 1082 0 1078 1079 0 1079 1084 0 1084 1083 0\n\t\t 1079 1080 0 1085 1084 0 1082 1087 0 1087 1086 0 1086 1081 0 1083 1088 0 1088 1087 0\n\t\t 1084 1089 0 1089 1088 0 1090 1089 0 1087 1092 0 1092 1091 0 1091 1086 0 1088 1093 0\n\t\t 1093 1092 0 1089 1094 0 1094 1093 0 1095 1094 0 1092 1066 0 1061 1091 0 1093 1071 0\n\t\t 1094 1076 0 1096 1099 0 1099 1104 0 1104 1103 0 1103 1096 0 1099 1100 0 1100 1105 0\n\t\t 1105 1104 0 1100 1101 0 1101 1106 0 1106 1105 0 1101 1102 0 1102 1107 0 1107 1106 0\n\t\t 1104 1109 0 1109 1108 0 1108 1103 0 1105 1110 0 1110 1109 0 1106 1111 0 1111 1110 0\n\t\t 1107 1112 0 1112 1111 0 1109 1114 0 1114 1113 0 1113 1108 0 1110 1115 0 1115 1114 0\n\t\t 1111 1116 0 1116 1115 0 1112 1117 0 1117 1116 0 1114 1146 0 1146 1141 0 1141 1113 0\n\t\t 1115 1151 0 1151 1146 0 1116 1156 0 1156 1151 0 1117 1118 0 1118 1156 0 1097 1119 0\n\t\t 1119 1124 0 1124 1123 0 1123 1097 0 1119 1120 0 1120 1125 0 1125 1124 0 1120 1121 0;\n\tsetAttr \".ed[1660:1825]\" 1121 1126 0 1126 1125 0 1121 1122 0 1122 1127 0 1127 1126 0\n\t\t 1124 1129 0 1129 1128 0 1128 1123 0 1125 1130 0 1130 1129 0 1126 1131 0 1131 1130 0\n\t\t 1127 1132 0 1132 1131 0 1129 1134 0 1134 1133 0 1133 1128 0 1130 1135 0 1135 1134 0\n\t\t 1131 1136 0 1136 1135 0 1132 1137 0 1137 1136 0 1134 1107 0 1102 1133 0 1135 1112 0\n\t\t 1136 1117 0 1137 1118 0 1098 1138 0 1138 1143 0 1143 1142 0 1142 1098 0 1138 1139 0\n\t\t 1139 1144 0 1144 1143 0 1139 1140 0 1140 1145 0 1145 1144 0 1140 1141 0 1146 1145 0\n\t\t 1143 1148 0 1148 1147 0 1147 1142 0 1144 1149 0 1149 1148 0 1145 1150 0 1150 1149 0\n\t\t 1151 1150 0 1148 1153 0 1153 1152 0 1152 1147 0 1149 1154 0 1154 1153 0 1150 1155 0\n\t\t 1155 1154 0 1156 1155 0 1153 1127 0 1122 1152 0 1154 1132 0 1155 1137 0 1157 1160 0\n\t\t 1160 1165 0 1165 1164 0 1164 1157 0 1160 1161 0 1161 1166 0 1166 1165 0 1161 1162 0\n\t\t 1162 1167 0 1167 1166 0 1162 1163 0 1163 1168 0 1168 1167 0 1165 1170 0 1170 1169 0\n\t\t 1169 1164 0 1166 1171 0 1171 1170 0 1167 1172 0 1172 1171 0 1168 1173 0 1173 1172 0\n\t\t 1170 1175 0 1175 1174 0 1174 1169 0 1171 1176 0 1176 1175 0 1172 1177 0 1177 1176 0\n\t\t 1173 1178 0 1178 1177 0 1175 1207 0 1207 1202 0 1202 1174 0 1176 1212 0 1212 1207 0\n\t\t 1177 1217 0 1217 1212 0 1178 1179 0 1179 1217 0 1158 1180 0 1180 1185 0 1185 1184 0\n\t\t 1184 1158 0 1180 1181 0 1181 1186 0 1186 1185 0 1181 1182 0 1182 1187 0 1187 1186 0\n\t\t 1182 1183 0 1183 1188 0 1188 1187 0 1185 1190 0 1190 1189 0 1189 1184 0 1186 1191 0\n\t\t 1191 1190 0 1187 1192 0 1192 1191 0 1188 1193 0 1193 1192 0 1190 1195 0 1195 1194 0\n\t\t 1194 1189 0 1191 1196 0 1196 1195 0 1192 1197 0 1197 1196 0 1193 1198 0 1198 1197 0\n\t\t 1195 1168 0 1163 1194 0 1196 1173 0 1197 1178 0 1198 1179 0 1159 1199 0 1199 1204 0\n\t\t 1204 1203 0 1203 1159 0 1199 1200 0 1200 1205 0 1205 1204 0 1200 1201 0 1201 1206 0\n\t\t 1206 1205 0 1201 1202 0 1207 1206 0 1204 1209 0 1209 1208 0 1208 1203 0 1205 1210 0\n\t\t 1210 1209 0 1206 1211 0 1211 1210 0 1212 1211 0 1209 1214 0 1214 1213 0 1213 1208 0\n\t\t 1210 1215 0 1215 1214 0 1211 1216 0 1216 1215 0 1217 1216 0 1214 1188 0 1183 1213 0;\n\tsetAttr \".ed[1826:1991]\" 1215 1193 0 1216 1198 0 1218 1224 0 1224 1229 0 1229 1228 0\n\t\t 1228 1218 0 1224 1225 0 1225 1230 0 1230 1229 0 1225 1226 0 1226 1231 0 1231 1230 0\n\t\t 1226 1227 0 1227 1232 0 1232 1231 0 1229 1234 0 1234 1233 0 1233 1228 0 1230 1235 0\n\t\t 1235 1234 0 1231 1236 0 1236 1235 0 1232 1237 0 1237 1236 0 1234 1239 0 1239 1238 0\n\t\t 1238 1233 0 1235 1240 0 1240 1239 0 1236 1241 0 1241 1240 0 1237 1242 0 1242 1241 0\n\t\t 1239 1328 0 1328 1323 0 1323 1238 0 1240 1333 0 1333 1328 0 1241 1338 0 1338 1333 0\n\t\t 1242 1243 0 1243 1338 0 1219 1244 0 1244 1249 0 1249 1248 0 1248 1219 0 1244 1245 0\n\t\t 1245 1250 0 1250 1249 0 1245 1246 0 1246 1251 0 1251 1250 0 1246 1247 0 1247 1252 0\n\t\t 1252 1251 0 1249 1254 0 1254 1253 0 1253 1248 0 1250 1255 0 1255 1254 0 1251 1256 0\n\t\t 1256 1255 0 1252 1257 0 1257 1256 0 1254 1259 0 1259 1258 0 1258 1253 0 1255 1260 0\n\t\t 1260 1259 0 1256 1261 0 1261 1260 0 1257 1262 0 1262 1261 0 1259 1232 0 1227 1258 0\n\t\t 1260 1237 0 1261 1242 0 1262 1243 0 1220 1263 0 1263 1268 0 1268 1267 0 1267 1220 0\n\t\t 1263 1264 0 1264 1269 0 1269 1268 0 1264 1265 0 1265 1270 0 1270 1269 0 1265 1266 0\n\t\t 1266 1271 0 1271 1270 0 1268 1273 0 1273 1272 0 1272 1267 0 1269 1274 0 1274 1273 0\n\t\t 1270 1275 0 1275 1274 0 1271 1276 0 1276 1275 0 1273 1278 0 1278 1277 0 1277 1272 0\n\t\t 1274 1279 0 1279 1278 0 1275 1280 0 1280 1279 0 1276 1281 0 1281 1280 0 1278 1252 0\n\t\t 1247 1277 0 1279 1257 0 1280 1262 0 1281 1243 0 1221 1282 0 1282 1287 0 1287 1286 0\n\t\t 1286 1221 0 1282 1283 0 1283 1288 0 1288 1287 0 1283 1284 0 1284 1289 0 1289 1288 0\n\t\t 1284 1285 0 1285 1290 0 1290 1289 0 1287 1292 0 1292 1291 0 1291 1286 0 1288 1293 0\n\t\t 1293 1292 0 1289 1294 0 1294 1293 0 1290 1295 0 1295 1294 0 1292 1297 0 1297 1296 0\n\t\t 1296 1291 0 1293 1298 0 1298 1297 0 1294 1299 0 1299 1298 0 1295 1300 0 1300 1299 0\n\t\t 1297 1271 0 1266 1296 0 1298 1276 0 1299 1281 0 1300 1243 0 1222 1301 0 1301 1306 0\n\t\t 1306 1305 0 1305 1222 0 1301 1302 0 1302 1307 0 1307 1306 0 1302 1303 0 1303 1308 0\n\t\t 1308 1307 0 1303 1304 0 1304 1309 0 1309 1308 0 1306 1311 0 1311 1310 0 1310 1305 0;\n\tsetAttr \".ed[1992:2157]\" 1307 1312 0 1312 1311 0 1308 1313 0 1313 1312 0 1309 1314 0\n\t\t 1314 1313 0 1311 1316 0 1316 1315 0 1315 1310 0 1312 1317 0 1317 1316 0 1313 1318 0\n\t\t 1318 1317 0 1314 1319 0 1319 1318 0 1316 1290 0 1285 1315 0 1317 1295 0 1318 1300 0\n\t\t 1319 1243 0 1223 1320 0 1320 1325 0 1325 1324 0 1324 1223 0 1320 1321 0 1321 1326 0\n\t\t 1326 1325 0 1321 1322 0 1322 1327 0 1327 1326 0 1322 1323 0 1328 1327 0 1325 1330 0\n\t\t 1330 1329 0 1329 1324 0 1326 1331 0 1331 1330 0 1327 1332 0 1332 1331 0 1333 1332 0\n\t\t 1330 1335 0 1335 1334 0 1334 1329 0 1331 1336 0 1336 1335 0 1332 1337 0 1337 1336 0\n\t\t 1338 1337 0 1335 1309 0 1304 1334 0 1336 1314 0 1337 1319 0 1339 1342 0 1342 1347 0\n\t\t 1347 1346 0 1346 1339 0 1342 1343 0 1343 1348 0 1348 1347 0 1343 1344 0 1344 1349 0\n\t\t 1349 1348 0 1344 1345 0 1345 1350 0 1350 1349 0 1347 1352 0 1352 1351 0 1351 1346 0\n\t\t 1348 1353 0 1353 1352 0 1349 1354 0 1354 1353 0 1350 1355 0 1355 1354 0 1352 1357 0\n\t\t 1357 1356 0 1356 1351 0 1353 1358 0 1358 1357 0 1354 1359 0 1359 1358 0 1355 1360 0\n\t\t 1360 1359 0 1357 1389 0 1389 1384 0 1384 1356 0 1358 1394 0 1394 1389 0 1359 1399 0\n\t\t 1399 1394 0 1360 1361 0 1361 1399 0 1340 1362 0 1362 1367 0 1367 1366 0 1366 1340 0\n\t\t 1362 1363 0 1363 1368 0 1368 1367 0 1363 1364 0 1364 1369 0 1369 1368 0 1364 1365 0\n\t\t 1365 1370 0 1370 1369 0 1367 1372 0 1372 1371 0 1371 1366 0 1368 1373 0 1373 1372 0\n\t\t 1369 1374 0 1374 1373 0 1370 1375 0 1375 1374 0 1372 1377 0 1377 1376 0 1376 1371 0\n\t\t 1373 1378 0 1378 1377 0 1374 1379 0 1379 1378 0 1375 1380 0 1380 1379 0 1377 1350 0\n\t\t 1345 1376 0 1378 1355 0 1379 1360 0 1380 1361 0 1341 1381 0 1381 1386 0 1386 1385 0\n\t\t 1385 1341 0 1381 1382 0 1382 1387 0 1387 1386 0 1382 1383 0 1383 1388 0 1388 1387 0\n\t\t 1383 1384 0 1389 1388 0 1386 1391 0 1391 1390 0 1390 1385 0 1387 1392 0 1392 1391 0\n\t\t 1388 1393 0 1393 1392 0 1394 1393 0 1391 1396 0 1396 1395 0 1395 1390 0 1392 1397 0\n\t\t 1397 1396 0 1393 1398 0 1398 1397 0 1399 1398 0 1396 1370 0 1365 1395 0 1397 1375 0\n\t\t 1398 1380 0 1400 1403 0 1403 1408 0 1408 1407 0 1407 1400 0 1403 1404 0 1404 1409 0;\n\tsetAttr \".ed[2158:2323]\" 1409 1408 0 1404 1405 0 1405 1410 0 1410 1409 0 1405 1406 0\n\t\t 1406 1411 0 1411 1410 0 1408 1413 0 1413 1412 0 1412 1407 0 1409 1414 0 1414 1413 0\n\t\t 1410 1415 0 1415 1414 0 1411 1416 0 1416 1415 0 1413 1418 0 1418 1417 0 1417 1412 0\n\t\t 1414 1419 0 1419 1418 0 1415 1420 0 1420 1419 0 1416 1421 0 1421 1420 0 1418 1450 0\n\t\t 1450 1445 0 1445 1417 0 1419 1455 0 1455 1450 0 1420 1460 0 1460 1455 0 1421 1422 0\n\t\t 1422 1460 0 1401 1423 0 1423 1428 0 1428 1427 0 1427 1401 0 1423 1424 0 1424 1429 0\n\t\t 1429 1428 0 1424 1425 0 1425 1430 0 1430 1429 0 1425 1426 0 1426 1431 0 1431 1430 0\n\t\t 1428 1433 0 1433 1432 0 1432 1427 0 1429 1434 0 1434 1433 0 1430 1435 0 1435 1434 0\n\t\t 1431 1436 0 1436 1435 0 1433 1438 0 1438 1437 0 1437 1432 0 1434 1439 0 1439 1438 0\n\t\t 1435 1440 0 1440 1439 0 1436 1441 0 1441 1440 0 1438 1411 0 1406 1437 0 1439 1416 0\n\t\t 1440 1421 0 1441 1422 0 1402 1442 0 1442 1447 0 1447 1446 0 1446 1402 0 1442 1443 0\n\t\t 1443 1448 0 1448 1447 0 1443 1444 0 1444 1449 0 1449 1448 0 1444 1445 0 1450 1449 0\n\t\t 1447 1452 0 1452 1451 0 1451 1446 0 1448 1453 0 1453 1452 0 1449 1454 0 1454 1453 0\n\t\t 1455 1454 0 1452 1457 0 1457 1456 0 1456 1451 0 1453 1458 0 1458 1457 0 1454 1459 0\n\t\t 1459 1458 0 1460 1459 0 1457 1431 0 1426 1456 0 1458 1436 0 1459 1441 0 1461 1467 0\n\t\t 1467 1472 0 1472 1471 0 1471 1461 0 1467 1468 0 1468 1473 0 1473 1472 0 1468 1469 0\n\t\t 1469 1474 0 1474 1473 0 1469 1470 0 1470 1475 0 1475 1474 0 1472 1477 0 1477 1476 0\n\t\t 1476 1471 0 1473 1478 0 1478 1477 0 1474 1479 0 1479 1478 0 1475 1480 0 1480 1479 0\n\t\t 1477 1482 0 1482 1481 0 1481 1476 0 1478 1483 0 1483 1482 0 1479 1484 0 1484 1483 0\n\t\t 1480 1485 0 1485 1484 0 1482 1571 0 1571 1566 0 1566 1481 0 1483 1576 0 1576 1571 0\n\t\t 1484 1581 0 1581 1576 0 1485 1486 0 1486 1581 0 1462 1487 0 1487 1492 0 1492 1491 0\n\t\t 1491 1462 0 1487 1488 0 1488 1493 0 1493 1492 0 1488 1489 0 1489 1494 0 1494 1493 0\n\t\t 1489 1490 0 1490 1495 0 1495 1494 0 1492 1497 0 1497 1496 0 1496 1491 0 1493 1498 0\n\t\t 1498 1497 0 1494 1499 0 1499 1498 0 1495 1500 0 1500 1499 0 1497 1502 0 1502 1501 0;\n\tsetAttr \".ed[2324:2489]\" 1501 1496 0 1498 1503 0 1503 1502 0 1499 1504 0 1504 1503 0\n\t\t 1500 1505 0 1505 1504 0 1502 1475 0 1470 1501 0 1503 1480 0 1504 1485 0 1505 1486 0\n\t\t 1463 1506 0 1506 1511 0 1511 1510 0 1510 1463 0 1506 1507 0 1507 1512 0 1512 1511 0\n\t\t 1507 1508 0 1508 1513 0 1513 1512 0 1508 1509 0 1509 1514 0 1514 1513 0 1511 1516 0\n\t\t 1516 1515 0 1515 1510 0 1512 1517 0 1517 1516 0 1513 1518 0 1518 1517 0 1514 1519 0\n\t\t 1519 1518 0 1516 1521 0 1521 1520 0 1520 1515 0 1517 1522 0 1522 1521 0 1518 1523 0\n\t\t 1523 1522 0 1519 1524 0 1524 1523 0 1521 1495 0 1490 1520 0 1522 1500 0 1523 1505 0\n\t\t 1524 1486 0 1464 1525 0 1525 1530 0 1530 1529 0 1529 1464 0 1525 1526 0 1526 1531 0\n\t\t 1531 1530 0 1526 1527 0 1527 1532 0 1532 1531 0 1527 1528 0 1528 1533 0 1533 1532 0\n\t\t 1530 1535 0 1535 1534 0 1534 1529 0 1531 1536 0 1536 1535 0 1532 1537 0 1537 1536 0\n\t\t 1533 1538 0 1538 1537 0 1535 1540 0 1540 1539 0 1539 1534 0 1536 1541 0 1541 1540 0\n\t\t 1537 1542 0 1542 1541 0 1538 1543 0 1543 1542 0 1540 1514 0 1509 1539 0 1541 1519 0\n\t\t 1542 1524 0 1543 1486 0 1465 1544 0 1544 1549 0 1549 1548 0 1548 1465 0 1544 1545 0\n\t\t 1545 1550 0 1550 1549 0 1545 1546 0 1546 1551 0 1551 1550 0 1546 1547 0 1547 1552 0\n\t\t 1552 1551 0 1549 1554 0 1554 1553 0 1553 1548 0 1550 1555 0 1555 1554 0 1551 1556 0\n\t\t 1556 1555 0 1552 1557 0 1557 1556 0 1554 1559 0 1559 1558 0 1558 1553 0 1555 1560 0\n\t\t 1560 1559 0 1556 1561 0 1561 1560 0 1557 1562 0 1562 1561 0 1559 1533 0 1528 1558 0\n\t\t 1560 1538 0 1561 1543 0 1562 1486 0 1466 1563 0 1563 1568 0 1568 1567 0 1567 1466 0\n\t\t 1563 1564 0 1564 1569 0 1569 1568 0 1564 1565 0 1565 1570 0 1570 1569 0 1565 1566 0\n\t\t 1571 1570 0 1568 1573 0 1573 1572 0 1572 1567 0 1569 1574 0 1574 1573 0 1570 1575 0\n\t\t 1575 1574 0 1576 1575 0 1573 1578 0 1578 1577 0 1577 1572 0 1574 1579 0 1579 1578 0\n\t\t 1575 1580 0 1580 1579 0 1581 1580 0 1578 1552 0 1547 1577 0 1579 1557 0 1580 1562 0\n\t\t 1582 1585 0 1585 1590 0 1590 1589 0 1589 1582 0 1585 1586 0 1586 1591 0 1591 1590 0\n\t\t 1586 1587 0 1587 1592 0 1592 1591 0 1587 1588 0 1588 1593 0 1593 1592 0 1590 1595 0;\n\tsetAttr \".ed[2490:2655]\" 1595 1594 0 1594 1589 0 1591 1596 0 1596 1595 0 1592 1597 0\n\t\t 1597 1596 0 1593 1598 0 1598 1597 0 1595 1600 0 1600 1599 0 1599 1594 0 1596 1601 0\n\t\t 1601 1600 0 1597 1602 0 1602 1601 0 1598 1603 0 1603 1602 0 1600 1632 0 1632 1627 0\n\t\t 1627 1599 0 1601 1637 0 1637 1632 0 1602 1642 0 1642 1637 0 1603 1604 0 1604 1642 0\n\t\t 1583 1605 0 1605 1610 0 1610 1609 0 1609 1583 0 1605 1606 0 1606 1611 0 1611 1610 0\n\t\t 1606 1607 0 1607 1612 0 1612 1611 0 1607 1608 0 1608 1613 0 1613 1612 0 1610 1615 0\n\t\t 1615 1614 0 1614 1609 0 1611 1616 0 1616 1615 0 1612 1617 0 1617 1616 0 1613 1618 0\n\t\t 1618 1617 0 1615 1620 0 1620 1619 0 1619 1614 0 1616 1621 0 1621 1620 0 1617 1622 0\n\t\t 1622 1621 0 1618 1623 0 1623 1622 0 1620 1593 0 1588 1619 0 1621 1598 0 1622 1603 0\n\t\t 1623 1604 0 1584 1624 0 1624 1629 0 1629 1628 0 1628 1584 0 1624 1625 0 1625 1630 0\n\t\t 1630 1629 0 1625 1626 0 1626 1631 0 1631 1630 0 1626 1627 0 1632 1631 0 1629 1634 0\n\t\t 1634 1633 0 1633 1628 0 1630 1635 0 1635 1634 0 1631 1636 0 1636 1635 0 1637 1636 0\n\t\t 1634 1639 0 1639 1638 0 1638 1633 0 1635 1640 0 1640 1639 0 1636 1641 0 1641 1640 0\n\t\t 1642 1641 0 1639 1613 0 1608 1638 0 1640 1618 0 1641 1623 0 1643 1646 0 1646 1651 0\n\t\t 1651 1650 0 1650 1643 0 1646 1647 0 1647 1652 0 1652 1651 0 1647 1648 0 1648 1653 0\n\t\t 1653 1652 0 1648 1649 0 1649 1654 0 1654 1653 0 1651 1656 0 1656 1655 0 1655 1650 0\n\t\t 1652 1657 0 1657 1656 0 1653 1658 0 1658 1657 0 1654 1659 0 1659 1658 0 1656 1661 0\n\t\t 1661 1660 0 1660 1655 0 1657 1662 0 1662 1661 0 1658 1663 0 1663 1662 0 1659 1664 0\n\t\t 1664 1663 0 1661 1693 0 1693 1688 0 1688 1660 0 1662 1698 0 1698 1693 0 1663 1703 0\n\t\t 1703 1698 0 1664 1665 0 1665 1703 0 1644 1666 0 1666 1671 0 1671 1670 0 1670 1644 0\n\t\t 1666 1667 0 1667 1672 0 1672 1671 0 1667 1668 0 1668 1673 0 1673 1672 0 1668 1669 0\n\t\t 1669 1674 0 1674 1673 0 1671 1676 0 1676 1675 0 1675 1670 0 1672 1677 0 1677 1676 0\n\t\t 1673 1678 0 1678 1677 0 1674 1679 0 1679 1678 0 1676 1681 0 1681 1680 0 1680 1675 0\n\t\t 1677 1682 0 1682 1681 0 1678 1683 0 1683 1682 0 1679 1684 0 1684 1683 0 1681 1654 0;\n\tsetAttr \".ed[2656:2821]\" 1649 1680 0 1682 1659 0 1683 1664 0 1684 1665 0 1645 1685 0\n\t\t 1685 1690 0 1690 1689 0 1689 1645 0 1685 1686 0 1686 1691 0 1691 1690 0 1686 1687 0\n\t\t 1687 1692 0 1692 1691 0 1687 1688 0 1693 1692 0 1690 1695 0 1695 1694 0 1694 1689 0\n\t\t 1691 1696 0 1696 1695 0 1692 1697 0 1697 1696 0 1698 1697 0 1695 1700 0 1700 1699 0\n\t\t 1699 1694 0 1696 1701 0 1701 1700 0 1697 1702 0 1702 1701 0 1703 1702 0 1700 1674 0\n\t\t 1669 1699 0 1701 1679 0 1702 1684 0 1704 1710 0 1710 1715 0 1715 1714 0 1714 1704 0\n\t\t 1710 1711 0 1711 1716 0 1716 1715 0 1711 1712 0 1712 1717 0 1717 1716 0 1712 1713 0\n\t\t 1713 1718 0 1718 1717 0 1715 1720 0 1720 1719 0 1719 1714 0 1716 1721 0 1721 1720 0\n\t\t 1717 1722 0 1722 1721 0 1718 1723 0 1723 1722 0 1720 1725 0 1725 1724 0 1724 1719 0\n\t\t 1721 1726 0 1726 1725 0 1722 1727 0 1727 1726 0 1723 1728 0 1728 1727 0 1725 1814 0\n\t\t 1814 1809 0 1809 1724 0 1726 1819 0 1819 1814 0 1727 1824 0 1824 1819 0 1728 1729 0\n\t\t 1729 1824 0 1705 1730 0 1730 1735 0 1735 1734 0 1734 1705 0 1730 1731 0 1731 1736 0\n\t\t 1736 1735 0 1731 1732 0 1732 1737 0 1737 1736 0 1732 1733 0 1733 1738 0 1738 1737 0\n\t\t 1735 1740 0 1740 1739 0 1739 1734 0 1736 1741 0 1741 1740 0 1737 1742 0 1742 1741 0\n\t\t 1738 1743 0 1743 1742 0 1740 1745 0 1745 1744 0 1744 1739 0 1741 1746 0 1746 1745 0\n\t\t 1742 1747 0 1747 1746 0 1743 1748 0 1748 1747 0 1745 1718 0 1713 1744 0 1746 1723 0\n\t\t 1747 1728 0 1748 1729 0 1706 1749 0 1749 1754 0 1754 1753 0 1753 1706 0 1749 1750 0\n\t\t 1750 1755 0 1755 1754 0 1750 1751 0 1751 1756 0 1756 1755 0 1751 1752 0 1752 1757 0\n\t\t 1757 1756 0 1754 1759 0 1759 1758 0 1758 1753 0 1755 1760 0 1760 1759 0 1756 1761 0\n\t\t 1761 1760 0 1757 1762 0 1762 1761 0 1759 1764 0 1764 1763 0 1763 1758 0 1760 1765 0\n\t\t 1765 1764 0 1761 1766 0 1766 1765 0 1762 1767 0 1767 1766 0 1764 1738 0 1733 1763 0\n\t\t 1765 1743 0 1766 1748 0 1767 1729 0 1707 1768 0 1768 1773 0 1773 1772 0 1772 1707 0\n\t\t 1768 1769 0 1769 1774 0 1774 1773 0 1769 1770 0 1770 1775 0 1775 1774 0 1770 1771 0\n\t\t 1771 1776 0 1776 1775 0 1773 1778 0 1778 1777 0 1777 1772 0 1774 1779 0 1779 1778 0;\n\tsetAttr \".ed[2822:2987]\" 1775 1780 0 1780 1779 0 1776 1781 0 1781 1780 0 1778 1783 0\n\t\t 1783 1782 0 1782 1777 0 1779 1784 0 1784 1783 0 1780 1785 0 1785 1784 0 1781 1786 0\n\t\t 1786 1785 0 1783 1757 0 1752 1782 0 1784 1762 0 1785 1767 0 1786 1729 0 1708 1787 0\n\t\t 1787 1792 0 1792 1791 0 1791 1708 0 1787 1788 0 1788 1793 0 1793 1792 0 1788 1789 0\n\t\t 1789 1794 0 1794 1793 0 1789 1790 0 1790 1795 0 1795 1794 0 1792 1797 0 1797 1796 0\n\t\t 1796 1791 0 1793 1798 0 1798 1797 0 1794 1799 0 1799 1798 0 1795 1800 0 1800 1799 0\n\t\t 1797 1802 0 1802 1801 0 1801 1796 0 1798 1803 0 1803 1802 0 1799 1804 0 1804 1803 0\n\t\t 1800 1805 0 1805 1804 0 1802 1776 0 1771 1801 0 1803 1781 0 1804 1786 0 1805 1729 0\n\t\t 1709 1806 0 1806 1811 0 1811 1810 0 1810 1709 0 1806 1807 0 1807 1812 0 1812 1811 0\n\t\t 1807 1808 0 1808 1813 0 1813 1812 0 1808 1809 0 1814 1813 0 1811 1816 0 1816 1815 0\n\t\t 1815 1810 0 1812 1817 0 1817 1816 0 1813 1818 0 1818 1817 0 1819 1818 0 1816 1821 0\n\t\t 1821 1820 0 1820 1815 0 1817 1822 0 1822 1821 0 1818 1823 0 1823 1822 0 1824 1823 0\n\t\t 1821 1795 0 1790 1820 0 1822 1800 0 1823 1805 0 1825 1828 0 1828 1833 0 1833 1832 0\n\t\t 1832 1825 0 1828 1829 0 1829 1834 0 1834 1833 0 1829 1830 0 1830 1835 0 1835 1834 0\n\t\t 1830 1831 0 1831 1836 0 1836 1835 0 1833 1838 0 1838 1837 0 1837 1832 0 1834 1839 0\n\t\t 1839 1838 0 1835 1840 0 1840 1839 0 1836 1841 0 1841 1840 0 1838 1843 0 1843 1842 0\n\t\t 1842 1837 0 1839 1844 0 1844 1843 0 1840 1845 0 1845 1844 0 1841 1846 0 1846 1845 0\n\t\t 1843 1875 0 1875 1870 0 1870 1842 0 1844 1880 0 1880 1875 0 1845 1885 0 1885 1880 0\n\t\t 1846 1847 0 1847 1885 0 1826 1848 0 1848 1853 0 1853 1852 0 1852 1826 0 1848 1849 0\n\t\t 1849 1854 0 1854 1853 0 1849 1850 0 1850 1855 0 1855 1854 0 1850 1851 0 1851 1856 0\n\t\t 1856 1855 0 1853 1858 0 1858 1857 0 1857 1852 0 1854 1859 0 1859 1858 0 1855 1860 0\n\t\t 1860 1859 0 1856 1861 0 1861 1860 0 1858 1863 0 1863 1862 0 1862 1857 0 1859 1864 0\n\t\t 1864 1863 0 1860 1865 0 1865 1864 0 1861 1866 0 1866 1865 0 1863 1836 0 1831 1862 0\n\t\t 1864 1841 0 1865 1846 0 1866 1847 0 1827 1867 0 1867 1872 0 1872 1871 0 1871 1827 0;\n\tsetAttr \".ed[2988:3153]\" 1867 1868 0 1868 1873 0 1873 1872 0 1868 1869 0 1869 1874 0\n\t\t 1874 1873 0 1869 1870 0 1875 1874 0 1872 1877 0 1877 1876 0 1876 1871 0 1873 1878 0\n\t\t 1878 1877 0 1874 1879 0 1879 1878 0 1880 1879 0 1877 1882 0 1882 1881 0 1881 1876 0\n\t\t 1878 1883 0 1883 1882 0 1879 1884 0 1884 1883 0 1885 1884 0 1882 1856 0 1851 1881 0\n\t\t 1883 1861 0 1884 1866 0 1886 1889 0 1889 1894 0 1894 1893 0 1893 1886 0 1889 1890 0\n\t\t 1890 1895 0 1895 1894 0 1890 1891 0 1891 1896 0 1896 1895 0 1891 1892 0 1892 1897 0\n\t\t 1897 1896 0 1894 1899 0 1899 1898 0 1898 1893 0 1895 1900 0 1900 1899 0 1896 1901 0\n\t\t 1901 1900 0 1897 1902 0 1902 1901 0 1899 1904 0 1904 1903 0 1903 1898 0 1900 1905 0\n\t\t 1905 1904 0 1901 1906 0 1906 1905 0 1902 1907 0 1907 1906 0 1904 1936 0 1936 1931 0\n\t\t 1931 1903 0 1905 1941 0 1941 1936 0 1906 1946 0 1946 1941 0 1907 1908 0 1908 1946 0\n\t\t 1887 1909 0 1909 1914 0 1914 1913 0 1913 1887 0 1909 1910 0 1910 1915 0 1915 1914 0\n\t\t 1910 1911 0 1911 1916 0 1916 1915 0 1911 1912 0 1912 1917 0 1917 1916 0 1914 1919 0\n\t\t 1919 1918 0 1918 1913 0 1915 1920 0 1920 1919 0 1916 1921 0 1921 1920 0 1917 1922 0\n\t\t 1922 1921 0 1919 1924 0 1924 1923 0 1923 1918 0 1920 1925 0 1925 1924 0 1921 1926 0\n\t\t 1926 1925 0 1922 1927 0 1927 1926 0 1924 1897 0 1892 1923 0 1925 1902 0 1926 1907 0\n\t\t 1927 1908 0 1888 1928 0 1928 1933 0 1933 1932 0 1932 1888 0 1928 1929 0 1929 1934 0\n\t\t 1934 1933 0 1929 1930 0 1930 1935 0 1935 1934 0 1930 1931 0 1936 1935 0 1933 1938 0\n\t\t 1938 1937 0 1937 1932 0 1934 1939 0 1939 1938 0 1935 1940 0 1940 1939 0 1941 1940 0\n\t\t 1938 1943 0 1943 1942 0 1942 1937 0 1939 1944 0 1944 1943 0 1940 1945 0 1945 1944 0\n\t\t 1946 1945 0 1943 1917 0 1912 1942 0 1944 1922 0 1945 1927 0 1947 1950 0 1950 1955 0\n\t\t 1955 1954 0 1954 1947 0 1950 1951 0 1951 1956 0 1956 1955 0 1951 1952 0 1952 1957 0\n\t\t 1957 1956 0 1952 1953 0 1953 1958 0 1958 1957 0 1955 1960 0 1960 1959 0 1959 1954 0\n\t\t 1956 1961 0 1961 1960 0 1957 1962 0 1962 1961 0 1958 1963 0 1963 1962 0 1960 1965 0\n\t\t 1965 1964 0 1964 1959 0 1961 1966 0 1966 1965 0 1962 1967 0 1967 1966 0 1963 1968 0;\n\tsetAttr \".ed[3154:3319]\" 1968 1967 0 1965 1997 0 1997 1992 0 1992 1964 0 1966 2002 0\n\t\t 2002 1997 0 1967 2007 0 2007 2002 0 1968 1969 0 1969 2007 0 1948 1970 0 1970 1975 0\n\t\t 1975 1974 0 1974 1948 0 1970 1971 0 1971 1976 0 1976 1975 0 1971 1972 0 1972 1977 0\n\t\t 1977 1976 0 1972 1973 0 1973 1978 0 1978 1977 0 1975 1980 0 1980 1979 0 1979 1974 0\n\t\t 1976 1981 0 1981 1980 0 1977 1982 0 1982 1981 0 1978 1983 0 1983 1982 0 1980 1985 0\n\t\t 1985 1984 0 1984 1979 0 1981 1986 0 1986 1985 0 1982 1987 0 1987 1986 0 1983 1988 0\n\t\t 1988 1987 0 1985 1958 0 1953 1984 0 1986 1963 0 1987 1968 0 1988 1969 0 1949 1989 0\n\t\t 1989 1994 0 1994 1993 0 1993 1949 0 1989 1990 0 1990 1995 0 1995 1994 0 1990 1991 0\n\t\t 1991 1996 0 1996 1995 0 1991 1992 0 1997 1996 0 1994 1999 0 1999 1998 0 1998 1993 0\n\t\t 1995 2000 0 2000 1999 0 1996 2001 0 2001 2000 0 2002 2001 0 1999 2004 0 2004 2003 0\n\t\t 2003 1998 0 2000 2005 0 2005 2004 0 2001 2006 0 2006 2005 0 2007 2006 0 2004 1978 0\n\t\t 1973 2003 0 2005 1983 0 2006 1988 0 2008 2011 0 2011 2016 0 2016 2015 0 2015 2008 0\n\t\t 2011 2012 0 2012 2017 0 2017 2016 0 2012 2013 0 2013 2018 0 2018 2017 0 2013 2014 0\n\t\t 2014 2019 0 2019 2018 0 2016 2021 0 2021 2020 0 2020 2015 0 2017 2022 0 2022 2021 0\n\t\t 2018 2023 0 2023 2022 0 2019 2024 0 2024 2023 0 2021 2026 0 2026 2025 0 2025 2020 0\n\t\t 2022 2027 0 2027 2026 0 2023 2028 0 2028 2027 0 2024 2029 0 2029 2028 0 2026 2058 0\n\t\t 2058 2053 0 2053 2025 0 2027 2063 0 2063 2058 0 2028 2068 0 2068 2063 0 2029 2030 0\n\t\t 2030 2068 0 2009 2031 0 2031 2036 0 2036 2035 0 2035 2009 0 2031 2032 0 2032 2037 0\n\t\t 2037 2036 0 2032 2033 0 2033 2038 0 2038 2037 0 2033 2034 0 2034 2039 0 2039 2038 0\n\t\t 2036 2041 0 2041 2040 0 2040 2035 0 2037 2042 0 2042 2041 0 2038 2043 0 2043 2042 0\n\t\t 2039 2044 0 2044 2043 0 2041 2046 0 2046 2045 0 2045 2040 0 2042 2047 0 2047 2046 0\n\t\t 2043 2048 0 2048 2047 0 2044 2049 0 2049 2048 0 2046 2019 0 2014 2045 0 2047 2024 0\n\t\t 2048 2029 0 2049 2030 0 2010 2050 0 2050 2055 0 2055 2054 0 2054 2010 0 2050 2051 0\n\t\t 2051 2056 0 2056 2055 0 2051 2052 0 2052 2057 0 2057 2056 0 2052 2053 0 2058 2057 0;\n\tsetAttr \".ed[3320:3485]\" 2055 2060 0 2060 2059 0 2059 2054 0 2056 2061 0 2061 2060 0\n\t\t 2057 2062 0 2062 2061 0 2063 2062 0 2060 2065 0 2065 2064 0 2064 2059 0 2061 2066 0\n\t\t 2066 2065 0 2062 2067 0 2067 2066 0 2068 2067 0 2065 2039 0 2034 2064 0 2066 2044 0\n\t\t 2067 2049 0 2069 2072 0 2072 2077 0 2077 2076 0 2076 2069 0 2072 2073 0 2073 2078 0\n\t\t 2078 2077 0 2073 2074 0 2074 2079 0 2079 2078 0 2074 2075 0 2075 2080 0 2080 2079 0\n\t\t 2077 2082 0 2082 2081 0 2081 2076 0 2078 2083 0 2083 2082 0 2079 2084 0 2084 2083 0\n\t\t 2080 2085 0 2085 2084 0 2082 2087 0 2087 2086 0 2086 2081 0 2083 2088 0 2088 2087 0\n\t\t 2084 2089 0 2089 2088 0 2085 2090 0 2090 2089 0 2087 2119 0 2119 2114 0 2114 2086 0\n\t\t 2088 2124 0 2124 2119 0 2089 2129 0 2129 2124 0 2090 2091 0 2091 2129 0 2070 2092 0\n\t\t 2092 2097 0 2097 2096 0 2096 2070 0 2092 2093 0 2093 2098 0 2098 2097 0 2093 2094 0\n\t\t 2094 2099 0 2099 2098 0 2094 2095 0 2095 2100 0 2100 2099 0 2097 2102 0 2102 2101 0\n\t\t 2101 2096 0 2098 2103 0 2103 2102 0 2099 2104 0 2104 2103 0 2100 2105 0 2105 2104 0\n\t\t 2102 2107 0 2107 2106 0 2106 2101 0 2103 2108 0 2108 2107 0 2104 2109 0 2109 2108 0\n\t\t 2105 2110 0 2110 2109 0 2107 2080 0 2075 2106 0 2108 2085 0 2109 2090 0 2110 2091 0\n\t\t 2071 2111 0 2111 2116 0 2116 2115 0 2115 2071 0 2111 2112 0 2112 2117 0 2117 2116 0\n\t\t 2112 2113 0 2113 2118 0 2118 2117 0 2113 2114 0 2119 2118 0 2116 2121 0 2121 2120 0\n\t\t 2120 2115 0 2117 2122 0 2122 2121 0 2118 2123 0 2123 2122 0 2124 2123 0 2121 2126 0\n\t\t 2126 2125 0 2125 2120 0 2122 2127 0 2127 2126 0 2123 2128 0 2128 2127 0 2129 2128 0\n\t\t 2126 2100 0 2095 2125 0 2127 2105 0 2128 2110 0 2130 2133 0 2133 2138 0 2138 2137 0\n\t\t 2137 2130 0 2133 2134 0 2134 2139 0 2139 2138 0 2134 2135 0 2135 2140 0 2140 2139 0\n\t\t 2135 2136 0 2136 2141 0 2141 2140 0 2138 2143 0 2143 2142 0 2142 2137 0 2139 2144 0\n\t\t 2144 2143 0 2140 2145 0 2145 2144 0 2141 2146 0 2146 2145 0 2143 2148 0 2148 2147 0\n\t\t 2147 2142 0 2144 2149 0 2149 2148 0 2145 2150 0 2150 2149 0 2146 2151 0 2151 2150 0\n\t\t 2148 2180 0 2180 2175 0 2175 2147 0 2149 2185 0 2185 2180 0 2150 2190 0 2190 2185 0;\n\tsetAttr \".ed[3486:3651]\" 2151 2152 0 2152 2190 0 2131 2153 0 2153 2158 0 2158 2157 0\n\t\t 2157 2131 0 2153 2154 0 2154 2159 0 2159 2158 0 2154 2155 0 2155 2160 0 2160 2159 0\n\t\t 2155 2156 0 2156 2161 0 2161 2160 0 2158 2163 0 2163 2162 0 2162 2157 0 2159 2164 0\n\t\t 2164 2163 0 2160 2165 0 2165 2164 0 2161 2166 0 2166 2165 0 2163 2168 0 2168 2167 0\n\t\t 2167 2162 0 2164 2169 0 2169 2168 0 2165 2170 0 2170 2169 0 2166 2171 0 2171 2170 0\n\t\t 2168 2141 0 2136 2167 0 2169 2146 0 2170 2151 0 2171 2152 0 2132 2172 0 2172 2177 0\n\t\t 2177 2176 0 2176 2132 0 2172 2173 0 2173 2178 0 2178 2177 0 2173 2174 0 2174 2179 0\n\t\t 2179 2178 0 2174 2175 0 2180 2179 0 2177 2182 0 2182 2181 0 2181 2176 0 2178 2183 0\n\t\t 2183 2182 0 2179 2184 0 2184 2183 0 2185 2184 0 2182 2187 0 2187 2186 0 2186 2181 0\n\t\t 2183 2188 0 2188 2187 0 2184 2189 0 2189 2188 0 2190 2189 0 2187 2161 0 2156 2186 0\n\t\t 2188 2166 0 2189 2171 0 2191 2194 0 2194 2199 0 2199 2198 0 2198 2191 0 2194 2195 0\n\t\t 2195 2200 0 2200 2199 0 2195 2196 0 2196 2201 0 2201 2200 0 2196 2197 0 2197 2202 0\n\t\t 2202 2201 0 2199 2204 0 2204 2203 0 2203 2198 0 2200 2205 0 2205 2204 0 2201 2206 0\n\t\t 2206 2205 0 2202 2207 0 2207 2206 0 2204 2209 0 2209 2208 0 2208 2203 0 2205 2210 0\n\t\t 2210 2209 0 2206 2211 0 2211 2210 0 2207 2212 0 2212 2211 0 2209 2241 0 2241 2236 0\n\t\t 2236 2208 0 2210 2246 0 2246 2241 0 2211 2251 0 2251 2246 0 2212 2213 0 2213 2251 0\n\t\t 2192 2214 0 2214 2219 0 2219 2218 0 2218 2192 0 2214 2215 0 2215 2220 0 2220 2219 0\n\t\t 2215 2216 0 2216 2221 0 2221 2220 0 2216 2217 0 2217 2222 0 2222 2221 0 2219 2224 0\n\t\t 2224 2223 0 2223 2218 0 2220 2225 0 2225 2224 0 2221 2226 0 2226 2225 0 2222 2227 0\n\t\t 2227 2226 0 2224 2229 0 2229 2228 0 2228 2223 0 2225 2230 0 2230 2229 0 2226 2231 0\n\t\t 2231 2230 0 2227 2232 0 2232 2231 0 2229 2202 0 2197 2228 0 2230 2207 0 2231 2212 0\n\t\t 2232 2213 0 2193 2233 0 2233 2238 0 2238 2237 0 2237 2193 0 2233 2234 0 2234 2239 0\n\t\t 2239 2238 0 2234 2235 0 2235 2240 0 2240 2239 0 2235 2236 0 2241 2240 0 2238 2243 0\n\t\t 2243 2242 0 2242 2237 0 2239 2244 0 2244 2243 0 2240 2245 0 2245 2244 0 2246 2245 0;\n\tsetAttr \".ed[3652:3817]\" 2243 2248 0 2248 2247 0 2247 2242 0 2244 2249 0 2249 2248 0\n\t\t 2245 2250 0 2250 2249 0 2251 2250 0 2248 2222 0 2217 2247 0 2249 2227 0 2250 2232 0\n\t\t 2252 2255 0 2255 2260 0 2260 2259 0 2259 2252 0 2255 2256 0 2256 2261 0 2261 2260 0\n\t\t 2256 2257 0 2257 2262 0 2262 2261 0 2257 2258 0 2258 2263 0 2263 2262 0 2260 2265 0\n\t\t 2265 2264 0 2264 2259 0 2261 2266 0 2266 2265 0 2262 2267 0 2267 2266 0 2263 2268 0\n\t\t 2268 2267 0 2265 2270 0 2270 2269 0 2269 2264 0 2266 2271 0 2271 2270 0 2267 2272 0\n\t\t 2272 2271 0 2268 2273 0 2273 2272 0 2270 2302 0 2302 2297 0 2297 2269 0 2271 2307 0\n\t\t 2307 2302 0 2272 2312 0 2312 2307 0 2273 2274 0 2274 2312 0 2253 2275 0 2275 2280 0\n\t\t 2280 2279 0 2279 2253 0 2275 2276 0 2276 2281 0 2281 2280 0 2276 2277 0 2277 2282 0\n\t\t 2282 2281 0 2277 2278 0 2278 2283 0 2283 2282 0 2280 2285 0 2285 2284 0 2284 2279 0\n\t\t 2281 2286 0 2286 2285 0 2282 2287 0 2287 2286 0 2283 2288 0 2288 2287 0 2285 2290 0\n\t\t 2290 2289 0 2289 2284 0 2286 2291 0 2291 2290 0 2287 2292 0 2292 2291 0 2288 2293 0\n\t\t 2293 2292 0 2290 2263 0 2258 2289 0 2291 2268 0 2292 2273 0 2293 2274 0 2254 2294 0\n\t\t 2294 2299 0 2299 2298 0 2298 2254 0 2294 2295 0 2295 2300 0 2300 2299 0 2295 2296 0\n\t\t 2296 2301 0 2301 2300 0 2296 2297 0 2302 2301 0 2299 2304 0 2304 2303 0 2303 2298 0\n\t\t 2300 2305 0 2305 2304 0 2301 2306 0 2306 2305 0 2307 2306 0 2304 2309 0 2309 2308 0\n\t\t 2308 2303 0 2305 2310 0 2310 2309 0 2306 2311 0 2311 2310 0 2312 2311 0 2309 2283 0\n\t\t 2278 2308 0 2310 2288 0 2311 2293 0 2313 2319 0 2319 2324 0 2324 2323 0 2323 2313 0\n\t\t 2319 2320 0 2320 2325 0 2325 2324 0 2320 2321 0 2321 2326 0 2326 2325 0 2321 2322 0\n\t\t 2322 2327 0 2327 2326 0 2324 2329 0 2329 2328 0 2328 2323 0 2325 2330 0 2330 2329 0\n\t\t 2326 2331 0 2331 2330 0 2327 2332 0 2332 2331 0 2329 2334 0 2334 2333 0 2333 2328 0\n\t\t 2330 2335 0 2335 2334 0 2331 2336 0 2336 2335 0 2332 2337 0 2337 2336 0 2334 2423 0\n\t\t 2423 2418 0 2418 2333 0 2335 2428 0 2428 2423 0 2336 2433 0 2433 2428 0 2337 2338 0\n\t\t 2338 2433 0 2314 2339 0 2339 2344 0 2344 2343 0 2343 2314 0 2339 2340 0 2340 2345 0;\n\tsetAttr \".ed[3818:3983]\" 2345 2344 0 2340 2341 0 2341 2346 0 2346 2345 0 2341 2342 0\n\t\t 2342 2347 0 2347 2346 0 2344 2349 0 2349 2348 0 2348 2343 0 2345 2350 0 2350 2349 0\n\t\t 2346 2351 0 2351 2350 0 2347 2352 0 2352 2351 0 2349 2354 0 2354 2353 0 2353 2348 0\n\t\t 2350 2355 0 2355 2354 0 2351 2356 0 2356 2355 0 2352 2357 0 2357 2356 0 2354 2327 0\n\t\t 2322 2353 0 2355 2332 0 2356 2337 0 2357 2338 0 2315 2358 0 2358 2363 0 2363 2362 0\n\t\t 2362 2315 0 2358 2359 0 2359 2364 0 2364 2363 0 2359 2360 0 2360 2365 0 2365 2364 0\n\t\t 2360 2361 0 2361 2366 0 2366 2365 0 2363 2368 0 2368 2367 0 2367 2362 0 2364 2369 0\n\t\t 2369 2368 0 2365 2370 0 2370 2369 0 2366 2371 0 2371 2370 0 2368 2373 0 2373 2372 0\n\t\t 2372 2367 0 2369 2374 0 2374 2373 0 2370 2375 0 2375 2374 0 2371 2376 0 2376 2375 0\n\t\t 2373 2347 0 2342 2372 0 2374 2352 0 2375 2357 0 2376 2338 0 2316 2377 0 2377 2382 0\n\t\t 2382 2381 0 2381 2316 0 2377 2378 0 2378 2383 0 2383 2382 0 2378 2379 0 2379 2384 0\n\t\t 2384 2383 0 2379 2380 0 2380 2385 0 2385 2384 0 2382 2387 0 2387 2386 0 2386 2381 0\n\t\t 2383 2388 0 2388 2387 0 2384 2389 0 2389 2388 0 2385 2390 0 2390 2389 0 2387 2392 0\n\t\t 2392 2391 0 2391 2386 0 2388 2393 0 2393 2392 0 2389 2394 0 2394 2393 0 2390 2395 0\n\t\t 2395 2394 0 2392 2366 0 2361 2391 0 2393 2371 0 2394 2376 0 2395 2338 0 2317 2396 0\n\t\t 2396 2401 0 2401 2400 0 2400 2317 0 2396 2397 0 2397 2402 0 2402 2401 0 2397 2398 0\n\t\t 2398 2403 0 2403 2402 0 2398 2399 0 2399 2404 0 2404 2403 0 2401 2406 0 2406 2405 0\n\t\t 2405 2400 0 2402 2407 0 2407 2406 0 2403 2408 0 2408 2407 0 2404 2409 0 2409 2408 0\n\t\t 2406 2411 0 2411 2410 0 2410 2405 0 2407 2412 0 2412 2411 0 2408 2413 0 2413 2412 0\n\t\t 2409 2414 0 2414 2413 0 2411 2385 0 2380 2410 0 2412 2390 0 2413 2395 0 2414 2338 0\n\t\t 2318 2415 0 2415 2420 0 2420 2419 0 2419 2318 0 2415 2416 0 2416 2421 0 2421 2420 0\n\t\t 2416 2417 0 2417 2422 0 2422 2421 0 2417 2418 0 2423 2422 0 2420 2425 0 2425 2424 0\n\t\t 2424 2419 0 2421 2426 0 2426 2425 0 2422 2427 0 2427 2426 0 2428 2427 0 2425 2430 0\n\t\t 2430 2429 0 2429 2424 0 2426 2431 0 2431 2430 0 2427 2432 0 2432 2431 0 2433 2432 0;\n\tsetAttr \".ed[3984:4149]\" 2430 2404 0 2399 2429 0 2431 2409 0 2432 2414 0 2434 2437 0\n\t\t 2437 2442 0 2442 2441 0 2441 2434 0 2437 2438 0 2438 2443 0 2443 2442 0 2438 2439 0\n\t\t 2439 2444 0 2444 2443 0 2439 2440 0 2440 2445 0 2445 2444 0 2442 2447 0 2447 2446 0\n\t\t 2446 2441 0 2443 2448 0 2448 2447 0 2444 2449 0 2449 2448 0 2445 2450 0 2450 2449 0\n\t\t 2447 2452 0 2452 2451 0 2451 2446 0 2448 2453 0 2453 2452 0 2449 2454 0 2454 2453 0\n\t\t 2450 2455 0 2455 2454 0 2452 2484 0 2484 2479 0 2479 2451 0 2453 2489 0 2489 2484 0\n\t\t 2454 2494 0 2494 2489 0 2455 2456 0 2456 2494 0 2435 2457 0 2457 2462 0 2462 2461 0\n\t\t 2461 2435 0 2457 2458 0 2458 2463 0 2463 2462 0 2458 2459 0 2459 2464 0 2464 2463 0\n\t\t 2459 2460 0 2460 2465 0 2465 2464 0 2462 2467 0 2467 2466 0 2466 2461 0 2463 2468 0\n\t\t 2468 2467 0 2464 2469 0 2469 2468 0 2465 2470 0 2470 2469 0 2467 2472 0 2472 2471 0\n\t\t 2471 2466 0 2468 2473 0 2473 2472 0 2469 2474 0 2474 2473 0 2470 2475 0 2475 2474 0\n\t\t 2472 2445 0 2440 2471 0 2473 2450 0 2474 2455 0 2475 2456 0 2436 2476 0 2476 2481 0\n\t\t 2481 2480 0 2480 2436 0 2476 2477 0 2477 2482 0 2482 2481 0 2477 2478 0 2478 2483 0\n\t\t 2483 2482 0 2478 2479 0 2484 2483 0 2481 2486 0 2486 2485 0 2485 2480 0 2482 2487 0\n\t\t 2487 2486 0 2483 2488 0 2488 2487 0 2489 2488 0 2486 2491 0 2491 2490 0 2490 2485 0\n\t\t 2487 2492 0 2492 2491 0 2488 2493 0 2493 2492 0 2494 2493 0 2491 2465 0 2460 2490 0\n\t\t 2492 2470 0 2493 2475 0 2495 2498 0 2498 2503 0 2503 2502 0 2502 2495 0 2498 2499 0\n\t\t 2499 2504 0 2504 2503 0 2499 2500 0 2500 2505 0 2505 2504 0 2500 2501 0 2501 2506 0\n\t\t 2506 2505 0 2503 2508 0 2508 2507 0 2507 2502 0 2504 2509 0 2509 2508 0 2505 2510 0\n\t\t 2510 2509 0 2506 2511 0 2511 2510 0 2508 2513 0 2513 2512 0 2512 2507 0 2509 2514 0\n\t\t 2514 2513 0 2510 2515 0 2515 2514 0 2511 2516 0 2516 2515 0 2513 2545 0 2545 2540 0\n\t\t 2540 2512 0 2514 2550 0 2550 2545 0 2515 2555 0 2555 2550 0 2516 2517 0 2517 2555 0\n\t\t 2496 2518 0 2518 2523 0 2523 2522 0 2522 2496 0 2518 2519 0 2519 2524 0 2524 2523 0\n\t\t 2519 2520 0 2520 2525 0 2525 2524 0 2520 2521 0 2521 2526 0 2526 2525 0 2523 2528 0;\n\tsetAttr \".ed[4150:4315]\" 2528 2527 0 2527 2522 0 2524 2529 0 2529 2528 0 2525 2530 0\n\t\t 2530 2529 0 2526 2531 0 2531 2530 0 2528 2533 0 2533 2532 0 2532 2527 0 2529 2534 0\n\t\t 2534 2533 0 2530 2535 0 2535 2534 0 2531 2536 0 2536 2535 0 2533 2506 0 2501 2532 0\n\t\t 2534 2511 0 2535 2516 0 2536 2517 0 2497 2537 0 2537 2542 0 2542 2541 0 2541 2497 0\n\t\t 2537 2538 0 2538 2543 0 2543 2542 0 2538 2539 0 2539 2544 0 2544 2543 0 2539 2540 0\n\t\t 2545 2544 0 2542 2547 0 2547 2546 0 2546 2541 0 2543 2548 0 2548 2547 0 2544 2549 0\n\t\t 2549 2548 0 2550 2549 0 2547 2552 0 2552 2551 0 2551 2546 0 2548 2553 0 2553 2552 0\n\t\t 2549 2554 0 2554 2553 0 2555 2554 0 2552 2526 0 2521 2551 0 2553 2531 0 2554 2536 0\n\t\t 2556 2562 0 2562 2567 0 2567 2566 0 2566 2556 0 2562 2563 0 2563 2568 0 2568 2567 0\n\t\t 2563 2564 0 2564 2569 0 2569 2568 0 2564 2565 0 2565 2570 0 2570 2569 0 2567 2572 0\n\t\t 2572 2571 0 2571 2566 0 2568 2573 0 2573 2572 0 2569 2574 0 2574 2573 0 2570 2575 0\n\t\t 2575 2574 0 2572 2577 0 2577 2576 0 2576 2571 0 2573 2578 0 2578 2577 0 2574 2579 0\n\t\t 2579 2578 0 2575 2580 0 2580 2579 0 2577 2666 0 2666 2661 0 2661 2576 0 2578 2671 0\n\t\t 2671 2666 0 2579 2676 0 2676 2671 0 2580 2581 0 2581 2676 0 2557 2582 0 2582 2587 0\n\t\t 2587 2586 0 2586 2557 0 2582 2583 0 2583 2588 0 2588 2587 0 2583 2584 0 2584 2589 0\n\t\t 2589 2588 0 2584 2585 0 2585 2590 0 2590 2589 0 2587 2592 0 2592 2591 0 2591 2586 0\n\t\t 2588 2593 0 2593 2592 0 2589 2594 0 2594 2593 0 2590 2595 0 2595 2594 0 2592 2597 0\n\t\t 2597 2596 0 2596 2591 0 2593 2598 0 2598 2597 0 2594 2599 0 2599 2598 0 2595 2600 0\n\t\t 2600 2599 0 2597 2570 0 2565 2596 0 2598 2575 0 2599 2580 0 2600 2581 0 2558 2601 0\n\t\t 2601 2606 0 2606 2605 0 2605 2558 0 2601 2602 0 2602 2607 0 2607 2606 0 2602 2603 0\n\t\t 2603 2608 0 2608 2607 0 2603 2604 0 2604 2609 0 2609 2608 0 2606 2611 0 2611 2610 0\n\t\t 2610 2605 0 2607 2612 0 2612 2611 0 2608 2613 0 2613 2612 0 2609 2614 0 2614 2613 0\n\t\t 2611 2616 0 2616 2615 0 2615 2610 0 2612 2617 0 2617 2616 0 2613 2618 0 2618 2617 0\n\t\t 2614 2619 0 2619 2618 0 2616 2590 0 2585 2615 0 2617 2595 0 2618 2600 0 2619 2581 0;\n\tsetAttr \".ed[4316:4481]\" 2559 2620 0 2620 2625 0 2625 2624 0 2624 2559 0 2620 2621 0\n\t\t 2621 2626 0 2626 2625 0 2621 2622 0 2622 2627 0 2627 2626 0 2622 2623 0 2623 2628 0\n\t\t 2628 2627 0 2625 2630 0 2630 2629 0 2629 2624 0 2626 2631 0 2631 2630 0 2627 2632 0\n\t\t 2632 2631 0 2628 2633 0 2633 2632 0 2630 2635 0 2635 2634 0 2634 2629 0 2631 2636 0\n\t\t 2636 2635 0 2632 2637 0 2637 2636 0 2633 2638 0 2638 2637 0 2635 2609 0 2604 2634 0\n\t\t 2636 2614 0 2637 2619 0 2638 2581 0 2560 2639 0 2639 2644 0 2644 2643 0 2643 2560 0\n\t\t 2639 2640 0 2640 2645 0 2645 2644 0 2640 2641 0 2641 2646 0 2646 2645 0 2641 2642 0\n\t\t 2642 2647 0 2647 2646 0 2644 2649 0 2649 2648 0 2648 2643 0 2645 2650 0 2650 2649 0\n\t\t 2646 2651 0 2651 2650 0 2647 2652 0 2652 2651 0 2649 2654 0 2654 2653 0 2653 2648 0\n\t\t 2650 2655 0 2655 2654 0 2651 2656 0 2656 2655 0 2652 2657 0 2657 2656 0 2654 2628 0\n\t\t 2623 2653 0 2655 2633 0 2656 2638 0 2657 2581 0 2561 2658 0 2658 2663 0 2663 2662 0\n\t\t 2662 2561 0 2658 2659 0 2659 2664 0 2664 2663 0 2659 2660 0 2660 2665 0 2665 2664 0\n\t\t 2660 2661 0 2666 2665 0 2663 2668 0 2668 2667 0 2667 2662 0 2664 2669 0 2669 2668 0\n\t\t 2665 2670 0 2670 2669 0 2671 2670 0 2668 2673 0 2673 2672 0 2672 2667 0 2669 2674 0\n\t\t 2674 2673 0 2670 2675 0 2675 2674 0 2676 2675 0 2673 2647 0 2642 2672 0 2674 2652 0\n\t\t 2675 2657 0 2677 2680 0 2680 2685 0 2685 2684 0 2684 2677 0 2680 2681 0 2681 2686 0\n\t\t 2686 2685 0 2681 2682 0 2682 2687 0 2687 2686 0 2682 2683 0 2683 2688 0 2688 2687 0\n\t\t 2685 2690 0 2690 2689 0 2689 2684 0 2686 2691 0 2691 2690 0 2687 2692 0 2692 2691 0\n\t\t 2688 2693 0 2693 2692 0 2690 2695 0 2695 2694 0 2694 2689 0 2691 2696 0 2696 2695 0\n\t\t 2692 2697 0 2697 2696 0 2693 2698 0 2698 2697 0 2695 2727 0 2727 2722 0 2722 2694 0\n\t\t 2696 2732 0 2732 2727 0 2697 2737 0 2737 2732 0 2698 2699 0 2699 2737 0 2678 2700 0\n\t\t 2700 2705 0 2705 2704 0 2704 2678 0 2700 2701 0 2701 2706 0 2706 2705 0 2701 2702 0\n\t\t 2702 2707 0 2707 2706 0 2702 2703 0 2703 2708 0 2708 2707 0 2705 2710 0 2710 2709 0\n\t\t 2709 2704 0 2706 2711 0 2711 2710 0 2707 2712 0 2712 2711 0 2708 2713 0 2713 2712 0;\n\tsetAttr \".ed[4482:4647]\" 2710 2715 0 2715 2714 0 2714 2709 0 2711 2716 0 2716 2715 0\n\t\t 2712 2717 0 2717 2716 0 2713 2718 0 2718 2717 0 2715 2688 0 2683 2714 0 2716 2693 0\n\t\t 2717 2698 0 2718 2699 0 2679 2719 0 2719 2724 0 2724 2723 0 2723 2679 0 2719 2720 0\n\t\t 2720 2725 0 2725 2724 0 2720 2721 0 2721 2726 0 2726 2725 0 2721 2722 0 2727 2726 0\n\t\t 2724 2729 0 2729 2728 0 2728 2723 0 2725 2730 0 2730 2729 0 2726 2731 0 2731 2730 0\n\t\t 2732 2731 0 2729 2734 0 2734 2733 0 2733 2728 0 2730 2735 0 2735 2734 0 2731 2736 0\n\t\t 2736 2735 0 2737 2736 0 2734 2708 0 2703 2733 0 2735 2713 0 2736 2718 0 2747 2750 0\n\t\t 2750 2755 0 2755 2754 0 2754 2747 0 2750 2751 0 2751 2756 0 2756 2755 0 2751 2752 0\n\t\t 2752 2757 0 2757 2756 0 2752 2753 0 2753 2758 0 2758 2757 0 2755 2760 0 2760 2759 0\n\t\t 2759 2754 0 2756 2761 0 2761 2760 0 2757 2762 0 2762 2761 0 2758 2763 0 2763 2762 0\n\t\t 2760 2765 0 2765 2764 0 2764 2759 0 2761 2766 0 2766 2765 0 2762 2767 0 2767 2766 0\n\t\t 2763 2768 0 2768 2767 0 2765 2797 0 2797 2792 0 2792 2764 0 2766 2802 0 2802 2797 0\n\t\t 2767 2807 0 2807 2802 0 2768 2769 0 2769 2807 0 2748 2770 0 2770 2775 0 2775 2774 0\n\t\t 2774 2748 0 2770 2771 0 2771 2776 0 2776 2775 0 2771 2772 0 2772 2777 0 2777 2776 0\n\t\t 2772 2773 0 2773 2778 0 2778 2777 0 2775 2780 0 2780 2779 0 2779 2774 0 2776 2781 0\n\t\t 2781 2780 0 2777 2782 0 2782 2781 0 2778 2783 0 2783 2782 0 2780 2785 0 2785 2784 0\n\t\t 2784 2779 0 2781 2786 0 2786 2785 0 2782 2787 0 2787 2786 0 2783 2788 0 2788 2787 0\n\t\t 2785 2758 0 2753 2784 0 2786 2763 0 2787 2768 0 2788 2769 0 2749 2789 0 2789 2794 0\n\t\t 2794 2793 0 2793 2749 0 2789 2790 0 2790 2795 0 2795 2794 0 2790 2791 0 2791 2796 0\n\t\t 2796 2795 0 2791 2792 0 2797 2796 0 2794 2799 0 2799 2798 0 2798 2793 0 2795 2800 0\n\t\t 2800 2799 0 2796 2801 0 2801 2800 0 2802 2801 0 2799 2804 0 2804 2803 0 2803 2798 0\n\t\t 2800 2805 0 2805 2804 0 2801 2806 0 2806 2805 0 2807 2806 0 2804 2778 0 2773 2803 0\n\t\t 2805 2783 0 2806 2788 0 2808 2811 0 2811 2816 0 2816 2815 0 2815 2808 0 2811 2812 0\n\t\t 2812 2817 0 2817 2816 0 2812 2813 0 2813 2818 0 2818 2817 0 2813 2814 0 2814 2819 0;\n\tsetAttr \".ed[4648:4813]\" 2819 2818 0 2816 2821 0 2821 2820 0 2820 2815 0 2817 2822 0\n\t\t 2822 2821 0 2818 2823 0 2823 2822 0 2819 2824 0 2824 2823 0 2821 2826 0 2826 2825 0\n\t\t 2825 2820 0 2822 2827 0 2827 2826 0 2823 2828 0 2828 2827 0 2824 2829 0 2829 2828 0\n\t\t 2826 2858 0 2858 2853 0 2853 2825 0 2827 2863 0 2863 2858 0 2828 2868 0 2868 2863 0\n\t\t 2829 2830 0 2830 2868 0 2809 2831 0 2831 2836 0 2836 2835 0 2835 2809 0 2831 2832 0\n\t\t 2832 2837 0 2837 2836 0 2832 2833 0 2833 2838 0 2838 2837 0 2833 2834 0 2834 2839 0\n\t\t 2839 2838 0 2836 2841 0 2841 2840 0 2840 2835 0 2837 2842 0 2842 2841 0 2838 2843 0\n\t\t 2843 2842 0 2839 2844 0 2844 2843 0 2841 2846 0 2846 2845 0 2845 2840 0 2842 2847 0\n\t\t 2847 2846 0 2843 2848 0 2848 2847 0 2844 2849 0 2849 2848 0 2846 2819 0 2814 2845 0\n\t\t 2847 2824 0 2848 2829 0 2849 2830 0 2810 2850 0 2850 2855 0 2855 2854 0 2854 2810 0\n\t\t 2850 2851 0 2851 2856 0 2856 2855 0 2851 2852 0 2852 2857 0 2857 2856 0 2852 2853 0\n\t\t 2858 2857 0 2855 2860 0 2860 2859 0 2859 2854 0 2856 2861 0 2861 2860 0 2857 2862 0\n\t\t 2862 2861 0 2863 2862 0 2860 2865 0 2865 2864 0 2864 2859 0 2861 2866 0 2866 2865 0\n\t\t 2862 2867 0 2867 2866 0 2868 2867 0 2865 2839 0 2834 2864 0 2866 2844 0 2867 2849 0\n\t\t 2869 2872 0 2872 2877 0 2877 2876 0 2876 2869 0 2872 2873 0 2873 2878 0 2878 2877 0\n\t\t 2873 2874 0 2874 2879 0 2879 2878 0 2874 2875 0 2875 2880 0 2880 2879 0 2877 2882 0\n\t\t 2882 2881 0 2881 2876 0 2878 2883 0 2883 2882 0 2879 2884 0 2884 2883 0 2880 2885 0\n\t\t 2885 2884 0 2882 2887 0 2887 2886 0 2886 2881 0 2883 2888 0 2888 2887 0 2884 2889 0\n\t\t 2889 2888 0 2885 2890 0 2890 2889 0 2887 2919 0 2919 2914 0 2914 2886 0 2888 2924 0\n\t\t 2924 2919 0 2889 2929 0 2929 2924 0 2890 2891 0 2891 2929 0 2870 2892 0 2892 2897 0\n\t\t 2897 2896 0 2896 2870 0 2892 2893 0 2893 2898 0 2898 2897 0 2893 2894 0 2894 2899 0\n\t\t 2899 2898 0 2894 2895 0 2895 2900 0 2900 2899 0 2897 2902 0 2902 2901 0 2901 2896 0\n\t\t 2898 2903 0 2903 2902 0 2899 2904 0 2904 2903 0 2900 2905 0 2905 2904 0 2902 2907 0\n\t\t 2907 2906 0 2906 2901 0 2903 2908 0 2908 2907 0 2904 2909 0 2909 2908 0 2905 2910 0;\n\tsetAttr \".ed[4814:4979]\" 2910 2909 0 2907 2880 0 2875 2906 0 2908 2885 0 2909 2890 0\n\t\t 2910 2891 0 2871 2911 0 2911 2916 0 2916 2915 0 2915 2871 0 2911 2912 0 2912 2917 0\n\t\t 2917 2916 0 2912 2913 0 2913 2918 0 2918 2917 0 2913 2914 0 2919 2918 0 2916 2921 0\n\t\t 2921 2920 0 2920 2915 0 2917 2922 0 2922 2921 0 2918 2923 0 2923 2922 0 2924 2923 0\n\t\t 2921 2926 0 2926 2925 0 2925 2920 0 2922 2927 0 2927 2926 0 2923 2928 0 2928 2927 0\n\t\t 2929 2928 0 2926 2900 0 2895 2925 0 2927 2905 0 2928 2910 0 2930 2933 0 2933 2938 0\n\t\t 2938 2937 0 2937 2930 0 2933 2934 0 2934 2939 0 2939 2938 0 2934 2935 0 2935 2940 0\n\t\t 2940 2939 0 2935 2936 0 2936 2941 0 2941 2940 0 2938 2943 0 2943 2942 0 2942 2937 0\n\t\t 2939 2944 0 2944 2943 0 2940 2945 0 2945 2944 0 2941 2946 0 2946 2945 0 2943 2948 0\n\t\t 2948 2947 0 2947 2942 0 2944 2949 0 2949 2948 0 2945 2950 0 2950 2949 0 2946 2951 0\n\t\t 2951 2950 0 2948 2980 0 2980 2975 0 2975 2947 0 2949 2985 0 2985 2980 0 2950 2990 0\n\t\t 2990 2985 0 2951 2952 0 2952 2990 0 2931 2953 0 2953 2958 0 2958 2957 0 2957 2931 0\n\t\t 2953 2954 0 2954 2959 0 2959 2958 0 2954 2955 0 2955 2960 0 2960 2959 0 2955 2956 0\n\t\t 2956 2961 0 2961 2960 0 2958 2963 0 2963 2962 0 2962 2957 0 2959 2964 0 2964 2963 0\n\t\t 2960 2965 0 2965 2964 0 2961 2966 0 2966 2965 0 2963 2968 0 2968 2967 0 2967 2962 0\n\t\t 2964 2969 0 2969 2968 0 2965 2970 0 2970 2969 0 2966 2971 0 2971 2970 0 2968 2941 0\n\t\t 2936 2967 0 2969 2946 0 2970 2951 0 2971 2952 0 2932 2972 0 2972 2977 0 2977 2976 0\n\t\t 2976 2932 0 2972 2973 0 2973 2978 0 2978 2977 0 2973 2974 0 2974 2979 0 2979 2978 0\n\t\t 2974 2975 0 2980 2979 0 2977 2982 0 2982 2981 0 2981 2976 0 2978 2983 0 2983 2982 0\n\t\t 2979 2984 0 2984 2983 0 2985 2984 0 2982 2987 0 2987 2986 0 2986 2981 0 2983 2988 0\n\t\t 2988 2987 0 2984 2989 0 2989 2988 0 2990 2989 0 2987 2961 0 2956 2986 0 2988 2966 0\n\t\t 2989 2971 0 2991 2997 0 2997 3002 0 3002 3001 0 3001 2991 0 2997 2998 0 2998 3003 0\n\t\t 3003 3002 0 2998 2999 0 2999 3004 0 3004 3003 0 2999 3000 0 3000 3005 0 3005 3004 0\n\t\t 3002 3007 0 3007 3006 0 3006 3001 0 3003 3008 0 3008 3007 0 3004 3009 0 3009 3008 0;\n\tsetAttr \".ed[4980:5145]\" 3005 3010 0 3010 3009 0 3007 3012 0 3012 3011 0 3011 3006 0\n\t\t 3008 3013 0 3013 3012 0 3009 3014 0 3014 3013 0 3010 3015 0 3015 3014 0 3012 3101 0\n\t\t 3101 3096 0 3096 3011 0 3013 3106 0 3106 3101 0 3014 3111 0 3111 3106 0 3015 3016 0\n\t\t 3016 3111 0 2992 3017 0 3017 3022 0 3022 3021 0 3021 2992 0 3017 3018 0 3018 3023 0\n\t\t 3023 3022 0 3018 3019 0 3019 3024 0 3024 3023 0 3019 3020 0 3020 3025 0 3025 3024 0\n\t\t 3022 3027 0 3027 3026 0 3026 3021 0 3023 3028 0 3028 3027 0 3024 3029 0 3029 3028 0\n\t\t 3025 3030 0 3030 3029 0 3027 3032 0 3032 3031 0 3031 3026 0 3028 3033 0 3033 3032 0\n\t\t 3029 3034 0 3034 3033 0 3030 3035 0 3035 3034 0 3032 3005 0 3000 3031 0 3033 3010 0\n\t\t 3034 3015 0 3035 3016 0 2993 3036 0 3036 3041 0 3041 3040 0 3040 2993 0 3036 3037 0\n\t\t 3037 3042 0 3042 3041 0 3037 3038 0 3038 3043 0 3043 3042 0 3038 3039 0 3039 3044 0\n\t\t 3044 3043 0 3041 3046 0 3046 3045 0 3045 3040 0 3042 3047 0 3047 3046 0 3043 3048 0\n\t\t 3048 3047 0 3044 3049 0 3049 3048 0 3046 3051 0 3051 3050 0 3050 3045 0 3047 3052 0\n\t\t 3052 3051 0 3048 3053 0 3053 3052 0 3049 3054 0 3054 3053 0 3051 3025 0 3020 3050 0\n\t\t 3052 3030 0 3053 3035 0 3054 3016 0 2994 3055 0 3055 3060 0 3060 3059 0 3059 2994 0\n\t\t 3055 3056 0 3056 3061 0 3061 3060 0 3056 3057 0 3057 3062 0 3062 3061 0 3057 3058 0\n\t\t 3058 3063 0 3063 3062 0 3060 3065 0 3065 3064 0 3064 3059 0 3061 3066 0 3066 3065 0\n\t\t 3062 3067 0 3067 3066 0 3063 3068 0 3068 3067 0 3065 3070 0 3070 3069 0 3069 3064 0\n\t\t 3066 3071 0 3071 3070 0 3067 3072 0 3072 3071 0 3068 3073 0 3073 3072 0 3070 3044 0\n\t\t 3039 3069 0 3071 3049 0 3072 3054 0 3073 3016 0 2995 3074 0 3074 3079 0 3079 3078 0\n\t\t 3078 2995 0 3074 3075 0 3075 3080 0 3080 3079 0 3075 3076 0 3076 3081 0 3081 3080 0\n\t\t 3076 3077 0 3077 3082 0 3082 3081 0 3079 3084 0 3084 3083 0 3083 3078 0 3080 3085 0\n\t\t 3085 3084 0 3081 3086 0 3086 3085 0 3082 3087 0 3087 3086 0 3084 3089 0 3089 3088 0\n\t\t 3088 3083 0 3085 3090 0 3090 3089 0 3086 3091 0 3091 3090 0 3087 3092 0 3092 3091 0\n\t\t 3089 3063 0 3058 3088 0 3090 3068 0 3091 3073 0 3092 3016 0 2996 3093 0 3093 3098 0;\n\tsetAttr \".ed[5146:5311]\" 3098 3097 0 3097 2996 0 3093 3094 0 3094 3099 0 3099 3098 0\n\t\t 3094 3095 0 3095 3100 0 3100 3099 0 3095 3096 0 3101 3100 0 3098 3103 0 3103 3102 0\n\t\t 3102 3097 0 3099 3104 0 3104 3103 0 3100 3105 0 3105 3104 0 3106 3105 0 3103 3108 0\n\t\t 3108 3107 0 3107 3102 0 3104 3109 0 3109 3108 0 3105 3110 0 3110 3109 0 3111 3110 0\n\t\t 3108 3082 0 3077 3107 0 3109 3087 0 3110 3092 0 3112 3115 0 3115 3120 0 3120 3119 0\n\t\t 3119 3112 0 3115 3116 0 3116 3121 0 3121 3120 0 3116 3117 0 3117 3122 0 3122 3121 0\n\t\t 3117 3118 0 3118 3123 0 3123 3122 0 3120 3125 0 3125 3124 0 3124 3119 0 3121 3126 0\n\t\t 3126 3125 0 3122 3127 0 3127 3126 0 3123 3128 0 3128 3127 0 3125 3130 0 3130 3129 0\n\t\t 3129 3124 0 3126 3131 0 3131 3130 0 3127 3132 0 3132 3131 0 3128 3133 0 3133 3132 0\n\t\t 3130 3162 0 3162 3157 0 3157 3129 0 3131 3167 0 3167 3162 0 3132 3172 0 3172 3167 0\n\t\t 3133 3134 0 3134 3172 0 3113 3135 0 3135 3140 0 3140 3139 0 3139 3113 0 3135 3136 0\n\t\t 3136 3141 0 3141 3140 0 3136 3137 0 3137 3142 0 3142 3141 0 3137 3138 0 3138 3143 0\n\t\t 3143 3142 0 3140 3145 0 3145 3144 0 3144 3139 0 3141 3146 0 3146 3145 0 3142 3147 0\n\t\t 3147 3146 0 3143 3148 0 3148 3147 0 3145 3150 0 3150 3149 0 3149 3144 0 3146 3151 0\n\t\t 3151 3150 0 3147 3152 0 3152 3151 0 3148 3153 0 3153 3152 0 3150 3123 0 3118 3149 0\n\t\t 3151 3128 0 3152 3133 0 3153 3134 0 3114 3154 0 3154 3159 0 3159 3158 0 3158 3114 0\n\t\t 3154 3155 0 3155 3160 0 3160 3159 0 3155 3156 0 3156 3161 0 3161 3160 0 3156 3157 0\n\t\t 3162 3161 0 3159 3164 0 3164 3163 0 3163 3158 0 3160 3165 0 3165 3164 0 3161 3166 0\n\t\t 3166 3165 0 3167 3166 0 3164 3169 0 3169 3168 0 3168 3163 0 3165 3170 0 3170 3169 0\n\t\t 3166 3171 0 3171 3170 0 3172 3171 0 3169 3143 0 3138 3168 0 3170 3148 0 3171 3153 0\n\t\t 3173 3176 0 3176 3181 0 3181 3180 0 3180 3173 0 3176 3177 0 3177 3182 0 3182 3181 0\n\t\t 3177 3178 0 3178 3183 0 3183 3182 0 3178 3179 0 3179 3184 0 3184 3183 0 3181 3186 0\n\t\t 3186 3185 0 3185 3180 0 3182 3187 0 3187 3186 0 3183 3188 0 3188 3187 0 3184 3189 0\n\t\t 3189 3188 0 3186 3191 0 3191 3190 0 3190 3185 0 3187 3192 0 3192 3191 0 3188 3193 0;\n\tsetAttr \".ed[5312:5477]\" 3193 3192 0 3189 3194 0 3194 3193 0 3191 3223 0 3223 3218 0\n\t\t 3218 3190 0 3192 3228 0 3228 3223 0 3193 3233 0 3233 3228 0 3194 3195 0 3195 3233 0\n\t\t 3174 3196 0 3196 3201 0 3201 3200 0 3200 3174 0 3196 3197 0 3197 3202 0 3202 3201 0\n\t\t 3197 3198 0 3198 3203 0 3203 3202 0 3198 3199 0 3199 3204 0 3204 3203 0 3201 3206 0\n\t\t 3206 3205 0 3205 3200 0 3202 3207 0 3207 3206 0 3203 3208 0 3208 3207 0 3204 3209 0\n\t\t 3209 3208 0 3206 3211 0 3211 3210 0 3210 3205 0 3207 3212 0 3212 3211 0 3208 3213 0\n\t\t 3213 3212 0 3209 3214 0 3214 3213 0 3211 3184 0 3179 3210 0 3212 3189 0 3213 3194 0\n\t\t 3214 3195 0 3175 3215 0 3215 3220 0 3220 3219 0 3219 3175 0 3215 3216 0 3216 3221 0\n\t\t 3221 3220 0 3216 3217 0 3217 3222 0 3222 3221 0 3217 3218 0 3223 3222 0 3220 3225 0\n\t\t 3225 3224 0 3224 3219 0 3221 3226 0 3226 3225 0 3222 3227 0 3227 3226 0 3228 3227 0\n\t\t 3225 3230 0 3230 3229 0 3229 3224 0 3226 3231 0 3231 3230 0 3227 3232 0 3232 3231 0\n\t\t 3233 3232 0 3230 3204 0 3199 3229 0 3231 3209 0 3232 3214 0 3234 3237 0 3237 3242 0\n\t\t 3242 3241 0 3241 3234 0 3237 3238 0 3238 3243 0 3243 3242 0 3238 3239 0 3239 3244 0\n\t\t 3244 3243 0 3239 3240 0 3240 3245 0 3245 3244 0 3242 3247 0 3247 3246 0 3246 3241 0\n\t\t 3243 3248 0 3248 3247 0 3244 3249 0 3249 3248 0 3245 3250 0 3250 3249 0 3247 3252 0\n\t\t 3252 3251 0 3251 3246 0 3248 3253 0 3253 3252 0 3249 3254 0 3254 3253 0 3250 3255 0\n\t\t 3255 3254 0 3252 3284 0 3284 3279 0 3279 3251 0 3253 3289 0 3289 3284 0 3254 3294 0\n\t\t 3294 3289 0 3255 3256 0 3256 3294 0 3235 3257 0 3257 3262 0 3262 3261 0 3261 3235 0\n\t\t 3257 3258 0 3258 3263 0 3263 3262 0 3258 3259 0 3259 3264 0 3264 3263 0 3259 3260 0\n\t\t 3260 3265 0 3265 3264 0 3262 3267 0 3267 3266 0 3266 3261 0 3263 3268 0 3268 3267 0\n\t\t 3264 3269 0 3269 3268 0 3265 3270 0 3270 3269 0 3267 3272 0 3272 3271 0 3271 3266 0\n\t\t 3268 3273 0 3273 3272 0 3269 3274 0 3274 3273 0 3270 3275 0 3275 3274 0 3272 3245 0\n\t\t 3240 3271 0 3273 3250 0 3274 3255 0 3275 3256 0 3236 3276 0 3276 3281 0 3281 3280 0\n\t\t 3280 3236 0 3276 3277 0 3277 3282 0 3282 3281 0 3277 3278 0 3278 3283 0 3283 3282 0;\n\tsetAttr \".ed[5478:5643]\" 3278 3279 0 3284 3283 0 3281 3286 0 3286 3285 0 3285 3280 0\n\t\t 3282 3287 0 3287 3286 0 3283 3288 0 3288 3287 0 3289 3288 0 3286 3291 0 3291 3290 0\n\t\t 3290 3285 0 3287 3292 0 3292 3291 0 3288 3293 0 3293 3292 0 3294 3293 0 3291 3265 0\n\t\t 3260 3290 0 3292 3270 0 3293 3275 0 3295 3298 0 3298 3303 0 3303 3302 0 3302 3295 0\n\t\t 3298 3299 0 3299 3304 0 3304 3303 0 3299 3300 0 3300 3305 0 3305 3304 0 3300 3301 0\n\t\t 3301 3306 0 3306 3305 0 3303 3308 0 3308 3307 0 3307 3302 0 3304 3309 0 3309 3308 0\n\t\t 3305 3310 0 3310 3309 0 3306 3311 0 3311 3310 0 3308 3313 0 3313 3312 0 3312 3307 0\n\t\t 3309 3314 0 3314 3313 0 3310 3315 0 3315 3314 0 3311 3316 0 3316 3315 0 3313 3345 0\n\t\t 3345 3340 0 3340 3312 0 3314 3350 0 3350 3345 0 3315 3355 0 3355 3350 0 3316 3317 0\n\t\t 3317 3355 0 3296 3318 0 3318 3323 0 3323 3322 0 3322 3296 0 3318 3319 0 3319 3324 0\n\t\t 3324 3323 0 3319 3320 0 3320 3325 0 3325 3324 0 3320 3321 0 3321 3326 0 3326 3325 0\n\t\t 3323 3328 0 3328 3327 0 3327 3322 0 3324 3329 0 3329 3328 0 3325 3330 0 3330 3329 0\n\t\t 3326 3331 0 3331 3330 0 3328 3333 0 3333 3332 0 3332 3327 0 3329 3334 0 3334 3333 0\n\t\t 3330 3335 0 3335 3334 0 3331 3336 0 3336 3335 0 3333 3306 0 3301 3332 0 3334 3311 0\n\t\t 3335 3316 0 3336 3317 0 3297 3337 0 3337 3342 0 3342 3341 0 3341 3297 0 3337 3338 0\n\t\t 3338 3343 0 3343 3342 0 3338 3339 0 3339 3344 0 3344 3343 0 3339 3340 0 3345 3344 0\n\t\t 3342 3347 0 3347 3346 0 3346 3341 0 3343 3348 0 3348 3347 0 3344 3349 0 3349 3348 0\n\t\t 3350 3349 0 3347 3352 0 3352 3351 0 3351 3346 0 3348 3353 0 3353 3352 0 3349 3354 0\n\t\t 3354 3353 0 3355 3354 0 3352 3326 0 3321 3351 0 3353 3331 0 3354 3336 0 3356 3359 0\n\t\t 3359 3364 0 3364 3363 0 3363 3356 0 3359 3360 0 3360 3365 0 3365 3364 0 3360 3361 0\n\t\t 3361 3366 0 3366 3365 0 3361 3362 0 3362 3367 0 3367 3366 0 3364 3369 0 3369 3368 0\n\t\t 3368 3363 0 3365 3370 0 3370 3369 0 3366 3371 0 3371 3370 0 3367 3372 0 3372 3371 0\n\t\t 3369 3374 0 3374 3373 0 3373 3368 0 3370 3375 0 3375 3374 0 3371 3376 0 3376 3375 0\n\t\t 3372 3377 0 3377 3376 0 3374 3406 0 3406 3401 0 3401 3373 0 3375 3411 0 3411 3406 0;\n\tsetAttr \".ed[5644:5809]\" 3376 3416 0 3416 3411 0 3377 3378 0 3378 3416 0 3357 3379 0\n\t\t 3379 3384 0 3384 3383 0 3383 3357 0 3379 3380 0 3380 3385 0 3385 3384 0 3380 3381 0\n\t\t 3381 3386 0 3386 3385 0 3381 3382 0 3382 3387 0 3387 3386 0 3384 3389 0 3389 3388 0\n\t\t 3388 3383 0 3385 3390 0 3390 3389 0 3386 3391 0 3391 3390 0 3387 3392 0 3392 3391 0\n\t\t 3389 3394 0 3394 3393 0 3393 3388 0 3390 3395 0 3395 3394 0 3391 3396 0 3396 3395 0\n\t\t 3392 3397 0 3397 3396 0 3394 3367 0 3362 3393 0 3395 3372 0 3396 3377 0 3397 3378 0\n\t\t 3358 3398 0 3398 3403 0 3403 3402 0 3402 3358 0 3398 3399 0 3399 3404 0 3404 3403 0\n\t\t 3399 3400 0 3400 3405 0 3405 3404 0 3400 3401 0 3406 3405 0 3403 3408 0 3408 3407 0\n\t\t 3407 3402 0 3404 3409 0 3409 3408 0 3405 3410 0 3410 3409 0 3411 3410 0 3408 3413 0\n\t\t 3413 3412 0 3412 3407 0 3409 3414 0 3414 3413 0 3410 3415 0 3415 3414 0 3416 3415 0\n\t\t 3413 3387 0 3382 3412 0 3414 3392 0 3415 3397 0 3453 3456 0 3456 3461 0 3461 3460 0\n\t\t 3460 3453 0 3456 3457 0 3457 3462 0 3462 3461 0 3457 3458 0 3458 3463 0 3463 3462 0\n\t\t 3458 3459 0 3459 3464 0 3464 3463 0 3461 3466 0 3466 3465 0 3465 3460 0 3462 3467 0\n\t\t 3467 3466 0 3463 3468 0 3468 3467 0 3464 3469 0 3469 3468 0 3466 3471 0 3471 3470 0\n\t\t 3470 3465 0 3467 3472 0 3472 3471 0 3468 3473 0 3473 3472 0 3469 3474 0 3474 3473 0\n\t\t 3471 3503 0 3503 3498 0 3498 3470 0 3472 3508 0 3508 3503 0 3473 3513 0 3513 3508 0\n\t\t 3474 3475 0 3475 3513 0 3454 3476 0 3476 3481 0 3481 3480 0 3480 3454 0 3476 3477 0\n\t\t 3477 3482 0 3482 3481 0 3477 3478 0 3478 3483 0 3483 3482 0 3478 3479 0 3479 3484 0\n\t\t 3484 3483 0 3481 3486 0 3486 3485 0 3485 3480 0 3482 3487 0 3487 3486 0 3483 3488 0\n\t\t 3488 3487 0 3484 3489 0 3489 3488 0 3486 3491 0 3491 3490 0 3490 3485 0 3487 3492 0\n\t\t 3492 3491 0 3488 3493 0 3493 3492 0 3489 3494 0 3494 3493 0 3491 3464 0 3459 3490 0\n\t\t 3492 3469 0 3493 3474 0 3494 3475 0 3455 3495 0 3495 3500 0 3500 3499 0 3499 3455 0\n\t\t 3495 3496 0 3496 3501 0 3501 3500 0 3496 3497 0 3497 3502 0 3502 3501 0 3497 3498 0\n\t\t 3503 3502 0 3500 3505 0 3505 3504 0 3504 3499 0 3501 3506 0 3506 3505 0 3502 3507 0;\n\tsetAttr \".ed[5810:5975]\" 3507 3506 0 3508 3507 0 3505 3510 0 3510 3509 0 3509 3504 0\n\t\t 3506 3511 0 3511 3510 0 3507 3512 0 3512 3511 0 3513 3512 0 3510 3484 0 3479 3509 0\n\t\t 3511 3489 0 3512 3494 0 3532 3535 0 3535 3540 0 3540 3539 0 3539 3532 0 3535 3536 0\n\t\t 3536 3541 0 3541 3540 0 3536 3537 0 3537 3542 0 3542 3541 0 3537 3538 0 3538 3543 0\n\t\t 3543 3542 0 3540 3545 0 3545 3544 0 3544 3539 0 3541 3546 0 3546 3545 0 3542 3547 0\n\t\t 3547 3546 0 3543 3548 0 3548 3547 0 3545 3550 0 3550 3549 0 3549 3544 0 3546 3551 0\n\t\t 3551 3550 0 3547 3552 0 3552 3551 0 3548 3553 0 3553 3552 0 3550 3582 0 3582 3577 0\n\t\t 3577 3549 0 3551 3587 0 3587 3582 0 3552 3592 0 3592 3587 0 3553 3554 0 3554 3592 0\n\t\t 3533 3555 0 3555 3560 0 3560 3559 0 3559 3533 0 3555 3556 0 3556 3561 0 3561 3560 0\n\t\t 3556 3557 0 3557 3562 0 3562 3561 0 3557 3558 0 3558 3563 0 3563 3562 0 3560 3565 0\n\t\t 3565 3564 0 3564 3559 0 3561 3566 0 3566 3565 0 3562 3567 0 3567 3566 0 3563 3568 0\n\t\t 3568 3567 0 3565 3570 0 3570 3569 0 3569 3564 0 3566 3571 0 3571 3570 0 3567 3572 0\n\t\t 3572 3571 0 3568 3573 0 3573 3572 0 3570 3543 0 3538 3569 0 3571 3548 0 3572 3553 0\n\t\t 3573 3554 0 3534 3574 0 3574 3579 0 3579 3578 0 3578 3534 0 3574 3575 0 3575 3580 0\n\t\t 3580 3579 0 3575 3576 0 3576 3581 0 3581 3580 0 3576 3577 0 3582 3581 0 3579 3584 0\n\t\t 3584 3583 0 3583 3578 0 3580 3585 0 3585 3584 0 3581 3586 0 3586 3585 0 3587 3586 0\n\t\t 3584 3589 0 3589 3588 0 3588 3583 0 3585 3590 0 3590 3589 0 3586 3591 0 3591 3590 0\n\t\t 3592 3591 0 3589 3563 0 3558 3588 0 3590 3568 0 3591 3573 0 3593 3596 0 3596 3601 0\n\t\t 3601 3600 0 3600 3593 0 3596 3597 0 3597 3602 0 3602 3601 0 3597 3598 0 3598 3603 0\n\t\t 3603 3602 0 3598 3599 0 3599 3604 0 3604 3603 0 3601 3606 0 3606 3605 0 3605 3600 0\n\t\t 3602 3607 0 3607 3606 0 3603 3608 0 3608 3607 0 3604 3609 0 3609 3608 0 3606 3611 0\n\t\t 3611 3610 0 3610 3605 0 3607 3612 0 3612 3611 0 3608 3613 0 3613 3612 0 3609 3614 0\n\t\t 3614 3613 0 3611 3643 0 3643 3638 0 3638 3610 0 3612 3648 0 3648 3643 0 3613 3653 0\n\t\t 3653 3648 0 3614 3615 0 3615 3653 0 3594 3616 0 3616 3621 0 3621 3620 0 3620 3594 0;\n\tsetAttr \".ed[5976:6141]\" 3616 3617 0 3617 3622 0 3622 3621 0 3617 3618 0 3618 3623 0\n\t\t 3623 3622 0 3618 3619 0 3619 3624 0 3624 3623 0 3621 3626 0 3626 3625 0 3625 3620 0\n\t\t 3622 3627 0 3627 3626 0 3623 3628 0 3628 3627 0 3624 3629 0 3629 3628 0 3626 3631 0\n\t\t 3631 3630 0 3630 3625 0 3627 3632 0 3632 3631 0 3628 3633 0 3633 3632 0 3629 3634 0\n\t\t 3634 3633 0 3631 3604 0 3599 3630 0 3632 3609 0 3633 3614 0 3634 3615 0 3595 3635 0\n\t\t 3635 3640 0 3640 3639 0 3639 3595 0 3635 3636 0 3636 3641 0 3641 3640 0 3636 3637 0\n\t\t 3637 3642 0 3642 3641 0 3637 3638 0 3643 3642 0 3640 3645 0 3645 3644 0 3644 3639 0\n\t\t 3641 3646 0 3646 3645 0 3642 3647 0 3647 3646 0 3648 3647 0 3645 3650 0 3650 3649 0\n\t\t 3649 3644 0 3646 3651 0 3651 3650 0 3647 3652 0 3652 3651 0 3653 3652 0 3650 3624 0\n\t\t 3619 3649 0 3651 3629 0 3652 3634 0 3672 3675 0 3675 3680 0 3680 3679 0 3679 3672 0\n\t\t 3675 3676 0 3676 3681 0 3681 3680 0 3676 3677 0 3677 3682 0 3682 3681 0 3677 3678 0\n\t\t 3678 3683 0 3683 3682 0 3680 3685 0 3685 3684 0 3684 3679 0 3681 3686 0 3686 3685 0\n\t\t 3682 3687 0 3687 3686 0 3683 3688 0 3688 3687 0 3685 3690 0 3690 3689 0 3689 3684 0\n\t\t 3686 3691 0 3691 3690 0 3687 3692 0 3692 3691 0 3688 3693 0 3693 3692 0 3690 3722 0\n\t\t 3722 3717 0 3717 3689 0 3691 3727 0 3727 3722 0 3692 3732 0 3732 3727 0 3693 3694 0\n\t\t 3694 3732 0 3673 3695 0 3695 3700 0 3700 3699 0 3699 3673 0 3695 3696 0 3696 3701 0\n\t\t 3701 3700 0 3696 3697 0 3697 3702 0 3702 3701 0 3697 3698 0 3698 3703 0 3703 3702 0\n\t\t 3700 3705 0 3705 3704 0 3704 3699 0 3701 3706 0 3706 3705 0 3702 3707 0 3707 3706 0\n\t\t 3703 3708 0 3708 3707 0 3705 3710 0 3710 3709 0 3709 3704 0 3706 3711 0 3711 3710 0\n\t\t 3707 3712 0 3712 3711 0 3708 3713 0 3713 3712 0 3710 3683 0 3678 3709 0 3711 3688 0\n\t\t 3712 3693 0 3713 3694 0 3674 3714 0 3714 3719 0 3719 3718 0 3718 3674 0 3714 3715 0\n\t\t 3715 3720 0 3720 3719 0 3715 3716 0 3716 3721 0 3721 3720 0 3716 3717 0 3722 3721 0\n\t\t 3719 3724 0 3724 3723 0 3723 3718 0 3720 3725 0 3725 3724 0 3721 3726 0 3726 3725 0\n\t\t 3727 3726 0 3724 3729 0 3729 3728 0 3728 3723 0 3725 3730 0 3730 3729 0 3726 3731 0;\n\tsetAttr \".ed[6142:6307]\" 3731 3730 0 3732 3731 0 3729 3703 0 3698 3728 0 3730 3708 0\n\t\t 3731 3713 0 73 63 0 63 65 0 65 80 0 80 73 0 65 66 0 66 79 0 79 80 0 66 67 0 67 78 0\n\t\t 78 79 0 67 68 0 68 77 0 77 78 0 68 69 0 69 76 0 76 77 0 69 70 0 70 75 0 75 76 0 70 71 0\n\t\t 71 74 0 74 75 0 71 64 0 72 74 0 80 89 0 89 82 0 79 88 0 88 89 0 78 87 0 87 88 0 77 86 0\n\t\t 86 87 0 76 85 0 85 86 0 75 84 0 84 85 0 74 83 0 83 84 0 81 83 0 89 98 0 98 91 0 88 97 0\n\t\t 97 98 0 87 96 0 96 97 0 86 95 0 95 96 0 85 94 0 94 95 0 84 93 0 93 94 0 83 92 0 92 93 0\n\t\t 90 92 0 98 107 0 107 100 0 97 106 0 106 107 0 96 105 0 105 106 0 95 104 0 104 105 0\n\t\t 94 103 0 103 104 0 93 102 0 102 103 0 92 101 0 101 102 0 99 101 0 107 116 0 116 109 0\n\t\t 106 115 0 115 116 0 105 114 0 114 115 0 104 113 0 113 114 0 103 112 0 112 113 0 102 111 0\n\t\t 111 112 0 101 110 0 110 111 0 108 110 0 116 125 0 125 118 0 115 124 0 124 125 0 114 123 0\n\t\t 123 124 0 113 122 0 122 123 0 112 121 0 121 122 0 111 120 0 120 121 0 110 119 0 119 120 0\n\t\t 117 119 0 125 134 0 134 127 0 124 133 0 133 134 0 123 132 0 132 133 0 122 131 0 131 132 0\n\t\t 121 130 0 130 131 0 120 129 0 129 130 0 119 128 0 128 129 0 126 128 0 134 143 0 143 136 0\n\t\t 133 142 0 142 143 0 132 141 0 141 142 0 131 140 0 140 141 0 130 139 0 139 140 0 129 138 0\n\t\t 138 139 0 128 137 0 137 138 0 135 137 0 143 152 0 152 145 0 142 151 0 151 152 0 141 150 0\n\t\t 150 151 0 140 149 0 149 150 0 139 148 0 148 149 0 138 147 0 147 148 0 137 146 0 146 147 0\n\t\t 144 146 0 152 161 0 161 154 0 151 160 0 160 161 0 150 159 0 159 160 0 149 158 0 158 159 0\n\t\t 148 157 0 157 158 0 147 156 0 156 157 0 146 155 0 155 156 0 153 155 0 161 170 0;\n\tsetAttr \".ed[6308:6473]\" 170 163 0 160 169 0 169 170 0 159 168 0 168 169 0 158 167 0\n\t\t 167 168 0 157 166 0 166 167 0 156 165 0 165 166 0 155 164 0 164 165 0 162 164 0 170 179 0\n\t\t 179 172 0 169 178 0 178 179 0 168 177 0 177 178 0 167 176 0 176 177 0 166 175 0 175 176 0\n\t\t 165 174 0 174 175 0 164 173 0 173 174 0 171 173 0 179 188 0 188 181 0 178 187 0 187 188 0\n\t\t 177 186 0 186 187 0 176 185 0 185 186 0 175 184 0 184 185 0 174 183 0 183 184 0 173 182 0\n\t\t 182 183 0 180 182 0 188 197 0 197 190 0 187 196 0 196 197 0 186 195 0 195 196 0 185 194 0\n\t\t 194 195 0 184 193 0 193 194 0 183 192 0 192 193 0 182 191 0 191 192 0 189 191 0 197 206 0\n\t\t 206 199 0 196 205 0 205 206 0 195 204 0 204 205 0 194 203 0 203 204 0 193 202 0 202 203 0\n\t\t 192 201 0 201 202 0 191 200 0 200 201 0 198 200 0 206 215 0 215 208 0 205 214 0 214 215 0\n\t\t 204 213 0 213 214 0 203 212 0 212 213 0 202 211 0 211 212 0 201 210 0 210 211 0 200 209 0\n\t\t 209 210 0 207 209 0 215 224 0 224 217 0 214 223 0 223 224 0 213 222 0 222 223 0 212 221 0\n\t\t 221 222 0 211 220 0 220 221 0 210 219 0 219 220 0 209 218 0 218 219 0 216 218 0 224 233 0\n\t\t 233 226 0 223 232 0 232 233 0 222 231 0 231 232 0 221 230 0 230 231 0 220 229 0 229 230 0\n\t\t 219 228 0 228 229 0 218 227 0 227 228 0 225 227 0 233 242 0 242 235 0 232 241 0 241 242 0\n\t\t 231 240 0 240 241 0 230 239 0 239 240 0 229 238 0 238 239 0 228 237 0 237 238 0 227 236 0\n\t\t 236 237 0 234 236 0 242 251 0 251 244 0 241 250 0 250 251 0 240 249 0 249 250 0 239 248 0\n\t\t 248 249 0 238 247 0 247 248 0 237 246 0 246 247 0 236 245 0 245 246 0 243 245 0 251 260 0\n\t\t 260 253 0 250 259 0 259 260 0 249 258 0 258 259 0 248 257 0 257 258 0 247 256 0 256 257 0\n\t\t 246 255 0 255 256 0 245 254 0 254 255 0 252 254 0 260 269 0 269 262 0;\n\tsetAttr \".ed[6474:6639]\" 259 268 0 268 269 0 258 267 0 267 268 0 257 266 0 266 267 0\n\t\t 256 265 0 265 266 0 255 264 0 264 265 0 254 263 0 263 264 0 261 263 0 269 278 0 278 271 0\n\t\t 268 277 0 277 278 0 267 276 0 276 277 0 266 275 0 275 276 0 265 274 0 274 275 0 264 273 0\n\t\t 273 274 0 263 272 0 272 273 0 270 272 0 278 287 0 287 280 0 277 286 0 286 287 0 276 285 0\n\t\t 285 286 0 275 284 0 284 285 0 274 283 0 283 284 0 273 282 0 282 283 0 272 281 0 281 282 0\n\t\t 279 281 0 287 296 0 296 289 0 286 295 0 295 296 0 285 294 0 294 295 0 284 293 0 293 294 0\n\t\t 283 292 0 292 293 0 282 291 0 291 292 0 281 290 0 290 291 0 288 290 0 296 305 0 305 298 0\n\t\t 295 304 0 304 305 0 294 303 0 303 304 0 293 302 0 302 303 0 292 301 0 301 302 0 291 300 0\n\t\t 300 301 0 290 299 0 299 300 0 297 299 0 305 314 0 314 307 0 304 313 0 313 314 0 303 312 0\n\t\t 312 313 0 302 311 0 311 312 0 301 310 0 310 311 0 300 309 0 309 310 0 299 308 0 308 309 0\n\t\t 306 308 0 314 323 0 323 316 0 313 322 0 322 323 0 312 321 0 321 322 0 311 320 0 320 321 0\n\t\t 310 319 0 319 320 0 309 318 0 318 319 0 308 317 0 317 318 0 315 317 0 323 332 0 332 325 0\n\t\t 322 331 0 331 332 0 321 330 0 330 331 0 320 329 0 329 330 0 319 328 0 328 329 0 318 327 0\n\t\t 327 328 0 317 326 0 326 327 0 324 326 0 332 341 0 341 334 0 331 340 0 340 341 0 330 339 0\n\t\t 339 340 0 329 338 0 338 339 0 328 337 0 337 338 0 327 336 0 336 337 0 326 335 0 335 336 0\n\t\t 333 335 0 341 350 0 350 343 0 340 349 0 349 350 0 339 348 0 348 349 0 338 347 0 347 348 0\n\t\t 337 346 0 346 347 0 336 345 0 345 346 0 335 344 0 344 345 0 342 344 0 350 65 0 349 66 0\n\t\t 348 67 0 347 68 0 346 69 0 345 70 0 344 71 0 378 650 0 650 643 0 383 649 0 649 650 0\n\t\t 388 648 0 648 649 0 357 647 0 647 648 0 356 646 0 646 647 0 355 645 0;\n\tsetAttr \".ed[6640:6805]\" 645 646 0 354 644 0 644 645 0 642 644 0 412 414 0 414 4011 0\n\t\t 4011 4004 0 414 415 0 415 4010 0 4010 4011 0 415 416 0 416 4009 0 4009 4010 0 416 417 0\n\t\t 417 4008 0 4008 4009 0 417 418 0 418 4007 0 4007 4008 0 418 419 0 419 4006 0 4006 4007 0\n\t\t 419 420 0 420 4005 0 4005 4006 0 420 413 0 4003 4005 0 448 4020 0 4020 4013 0 453 4019 0\n\t\t 4019 4020 0 458 4018 0 4018 4019 0 427 4017 0 4017 4018 0 426 4016 0 4016 4017 0\n\t\t 425 4015 0 4015 4016 0 424 4014 0 4014 4015 0 4012 4014 0 467 517 0 517 510 0 472 516 0\n\t\t 516 517 0 477 515 0 515 516 0 447 514 0 514 515 0 446 513 0 513 514 0 445 512 0 512 513 0\n\t\t 444 511 0 511 512 0 509 511 0 3480 4029 0 4029 4022 0 3485 4028 0 4028 4029 0 3490 4027 0\n\t\t 4027 4028 0 3459 4026 0 4026 4027 0 3458 4025 0 4025 4026 0 3457 4024 0 4024 4025 0\n\t\t 3456 4023 0 4023 4024 0 4021 4023 0 3499 3522 0 3522 3515 0 3504 3521 0 3521 3522 0\n\t\t 3509 3520 0 3520 3521 0 3479 3519 0 3519 3520 0 3478 3518 0 3518 3519 0 3477 3517 0\n\t\t 3517 3518 0 3476 3516 0 3516 3517 0 3514 3516 0 3559 3531 0 3531 3524 0 3564 3530 0\n\t\t 3530 3531 0 3569 3529 0 3529 3530 0 3538 3528 0 3528 3529 0 3537 3527 0 3527 3528 0\n\t\t 3536 3526 0 3526 3527 0 3535 3525 0 3525 3526 0 3523 3525 0 3620 4038 0 4038 4031 0\n\t\t 3625 4037 0 4037 4038 0 3630 4036 0 4036 4037 0 3599 4035 0 4035 4036 0 3598 4034 0\n\t\t 4034 4035 0 3597 4033 0 4033 4034 0 3596 4032 0 4032 4033 0 4030 4032 0 3639 544 0\n\t\t 544 537 0 3644 543 0 543 544 0 3649 542 0 542 543 0 3619 541 0 541 542 0 3618 540 0\n\t\t 540 541 0 3617 539 0 539 540 0 3616 538 0 538 539 0 536 538 0 491 493 0 493 3495 0\n\t\t 493 494 0 494 3496 0 494 495 0 495 3497 0 495 496 0 496 3498 0 496 497 0 497 3470 0\n\t\t 497 498 0 498 3465 0 498 499 0 499 3460 0 499 492 0 500 502 0 502 493 0 502 503 0\n\t\t 503 494 0 503 504 0 504 495 0 504 505 0 505 496 0 505 506 0 506 497 0 506 507 0 507 498 0\n\t\t 507 508 0 508 499 0 508 501 0 517 502 0 516 503 0 515 504 0 514 505 0;\n\tsetAttr \".ed[6806:6971]\" 513 506 0 512 507 0 511 508 0 518 520 0 520 374 0 520 521 0\n\t\t 521 375 0 521 522 0 522 376 0 522 523 0 523 377 0 523 524 0 524 407 0 524 525 0 525 402 0\n\t\t 525 526 0 526 397 0 526 519 0 527 529 0 529 520 0 529 530 0 530 521 0 530 531 0 531 522 0\n\t\t 531 532 0 532 523 0 532 533 0 533 524 0 533 534 0 534 525 0 534 535 0 535 526 0 535 528 0\n\t\t 544 529 0 543 530 0 542 531 0 541 532 0 540 533 0 539 534 0 538 535 0 545 547 0 547 3555 0\n\t\t 547 548 0 548 3556 0 548 549 0 549 3557 0 549 550 0 550 3558 0 550 551 0 551 3588 0\n\t\t 551 552 0 552 3583 0 552 553 0 553 3578 0 553 546 0 554 556 0 556 547 0 556 557 0\n\t\t 557 548 0 557 558 0 558 549 0 558 559 0 559 550 0 559 560 0 560 551 0 560 561 0 561 552 0\n\t\t 561 562 0 562 553 0 562 555 0 570 556 0 575 557 0 580 558 0 608 559 0 607 560 0 606 561 0\n\t\t 605 562 0 590 946 0 595 947 0 600 948 0 569 949 0 568 921 0 567 916 0 566 911 0 624 626 0\n\t\t 626 463 0 626 627 0 627 464 0 627 628 0 628 465 0 628 629 0 629 466 0 629 630 0 630 438 0\n\t\t 630 631 0 631 433 0 631 632 0 632 428 0 632 625 0 633 635 0 635 626 0 635 636 0 636 627 0\n\t\t 636 637 0 637 628 0 637 638 0 638 629 0 638 639 0 639 630 0 639 640 0 640 631 0 640 641 0\n\t\t 641 632 0 641 634 0 650 635 0 649 636 0 648 637 0 647 638 0 646 639 0 645 640 0 644 641 0\n\t\t 3654 3656 0 3656 3635 0 3656 3657 0 3657 3636 0 3657 3658 0 3658 3637 0 3658 3659 0\n\t\t 3659 3638 0 3659 3660 0 3660 3610 0 3660 3661 0 3661 3605 0 3661 3662 0 3662 3600 0\n\t\t 3662 3655 0 3663 3665 0 3665 3656 0 3665 3666 0 3666 3657 0 3666 3667 0 3667 3658 0\n\t\t 3667 3668 0 3668 3659 0 3668 3669 0 3669 3660 0 3669 3670 0 3670 3661 0 3670 3671 0\n\t\t 3671 3662 0 3671 3664 0 3522 3665 0 3521 3666 0 3520 3667 0 3519 3668 0 3518 3669 0\n\t\t 3517 3670 0 3516 3671 0 3733 3735 0 3735 3714 0 3735 3736 0 3736 3715 0 3736 3737 0\n\t\t 3737 3716 0 3737 3738 0 3738 3717 0;\n\tsetAttr \".ed[6972:7137]\" 3738 3739 0 3739 3689 0 3739 3740 0 3740 3684 0 3740 3741 0\n\t\t 3741 3679 0 3741 3734 0 3531 3735 0 3530 3736 0 3529 3737 0 3528 3738 0 3527 3739 0\n\t\t 3526 3740 0 3525 3741 0 719 1585 0 724 1586 0 729 1587 0 757 1588 0 756 1619 0 755 1614 0\n\t\t 754 1609 0 758 693 0 763 694 0 768 695 0 738 696 0 737 668 0 736 663 0 735 658 0\n\t\t 1471 674 0 1476 675 0 1481 676 0 1566 677 0 1565 707 0 1564 702 0 1563 697 0 1103 586 0\n\t\t 1108 587 0 1113 588 0 1141 589 0 1140 619 0 1139 614 0 1138 609 0 841 776 0 846 777 0\n\t\t 851 778 0 879 779 0 878 810 0 877 805 0 876 800 0 950 1320 0 955 1321 0 960 1322 0\n\t\t 930 1323 0 929 1238 0 928 1233 0 927 1228 0 1852 837 0 1857 838 0 1862 839 0 1831 840 0\n\t\t 1830 871 0 1829 866 0 1828 861 0 880 907 0 885 908 0 890 909 0 860 910 0 859 941 0\n\t\t 858 936 0 857 931 0 739 796 0 744 797 0 749 798 0 718 799 0 717 829 0 716 824 0 715 819 0\n\t\t 3718 654 0 3723 655 0 3728 656 0 3698 657 0 3697 688 0 3696 683 0 3695 678 0 1184 414 0\n\t\t 1189 415 0 1194 416 0 1163 417 0 1162 418 0 1161 419 0 1160 420 0 482 484 0 484 973 0\n\t\t 973 966 0 484 485 0 485 972 0 972 973 0 485 486 0 486 971 0 971 972 0 486 487 0 487 970 0\n\t\t 970 971 0 487 488 0 488 969 0 969 970 0 488 489 0 489 968 0 968 969 0 489 490 0 490 967 0\n\t\t 967 968 0 490 483 0 965 967 0 1062 977 0 1067 978 0 1072 979 0 1041 980 0 1040 1011 0\n\t\t 1039 1006 0 1038 1001 0 1203 1119 0 1208 1120 0 1213 1121 0 1183 1122 0 1182 1152 0\n\t\t 1181 1147 0 1180 1142 0 1123 1301 0 1128 1302 0 1133 1303 0 1102 1304 0 1101 1334 0\n\t\t 1100 1329 0 1099 1324 0 1346 1199 0 1351 1200 0 1356 1201 0 1384 1202 0 1383 1174 0\n\t\t 1382 1169 0 1381 1164 0 1427 1058 0 1432 1059 0 1437 1060 0 1406 1061 0 1405 1091 0\n\t\t 1404 1086 0 1403 1081 0 1510 1016 0 1515 1017 0 1520 1018 0 1490 1019 0 1489 991 0\n\t\t 1488 986 0 1487 981 0 1628 1544 0 1633 1545 0 1638 1546 0 1608 1547 0 1607 1577 0\n\t\t 1606 1572 0 1605 1567 0 1734 1646 0 1739 1647 0 1744 1648 0;\n\tsetAttr \".ed[7138:7303]\" 1713 1649 0 1712 1680 0 1711 1675 0 1710 1670 0 1871 1768 0\n\t\t 1876 1769 0 1881 1770 0 1851 1771 0 1850 1801 0 1849 1796 0 1848 1791 0 895 897 0\n\t\t 897 967 0 897 898 0 898 968 0 898 899 0 899 969 0 899 900 0 900 970 0 900 901 0 901 971 0\n\t\t 901 902 0 902 972 0 902 903 0 903 973 0 903 896 0 1974 2658 0 1979 2659 0 1984 2660 0\n\t\t 1953 2661 0 1952 2576 0 1951 2571 0 1950 2566 0 1267 1970 0 1272 1971 0 1277 1972 0\n\t\t 1247 1973 0 1246 2003 0 1245 1998 0 1244 1993 0 2461 1730 0 2466 1731 0 2471 1732 0\n\t\t 2440 1733 0 2439 1763 0 2438 1758 0 2437 1753 0 1772 1989 0 1777 1990 0 1782 1991 0\n\t\t 1752 1992 0 1751 1964 0 1750 1959 0 1749 1954 0 1832 1224 0 1837 1225 0 1842 1226 0\n\t\t 1870 1227 0 1869 1258 0 1868 1253 0 1867 1248 0 1548 1666 0 1553 1667 0 1558 1668 0\n\t\t 1528 1669 0 1527 1699 0 1526 1694 0 1525 1689 0 1589 1806 0 1594 1807 0 1599 1808 0\n\t\t 1627 1809 0 1626 1724 0 1625 1719 0 1624 1714 0 1446 1467 0 1451 1468 0 1456 1469 0\n\t\t 1426 1470 0 1425 1501 0 1424 1496 0 1423 1491 0 1305 1342 0 1310 1343 0 1315 1344 0\n\t\t 1285 1345 0 1284 1376 0 1283 1371 0 1282 1366 0 780 1787 0 785 1788 0 790 1789 0\n\t\t 818 1790 0 817 1820 0 816 1815 0 815 1810 0 3444 3446 0 3446 1077 0 3446 3447 0 3447 1078 0\n\t\t 3447 3448 0 3448 1079 0 3448 3449 0 3449 1080 0 3449 3450 0 3450 1052 0 3450 3451 0\n\t\t 3451 1047 0 3451 3452 0 3452 1042 0 3452 3445 0 1407 3675 0 1412 3676 0 1417 3677 0\n\t\t 1445 3678 0 1444 3709 0 1443 3704 0 1442 3699 0 2096 2050 0 2101 2051 0 2106 2052 0\n\t\t 2075 2053 0 2074 2025 0 2073 2020 0 2072 2015 0 2198 2172 0 2203 2173 0 2208 2174 0\n\t\t 2236 2175 0 2235 2147 0 2234 2142 0 2233 2137 0 2279 2092 0 2284 2093 0 2289 2094 0\n\t\t 2258 2095 0 2257 2125 0 2256 2120 0 2255 2115 0 2323 2031 0 2328 2032 0 2333 2033 0\n\t\t 2418 2034 0 2417 2064 0 2416 2059 0 2415 2054 0 2480 2358 0 2485 2359 0 2490 2360 0\n\t\t 2460 2361 0 2459 2391 0 2458 2386 0 2457 2381 0 2522 3093 0 2527 3094 0 2532 3095 0\n\t\t 2501 3096 0 2500 3011 0 2499 3006 0 2498 3001 0 2605 2518 0 2610 2519 0 2615 2520 0\n\t\t 2585 2521 0 2584 2551 0 2583 2546 0;\n\tsetAttr \".ed[7304:7469]\" 2582 2541 0 2704 2639 0 2709 2640 0 2714 2641 0 2683 2642 0\n\t\t 2682 2672 0 2681 2667 0 2680 2662 0 2362 2537 0 2367 2538 0 2372 2539 0 2342 2540 0\n\t\t 2341 2512 0 2340 2507 0 2339 2502 0 2441 2562 0 2446 2563 0 2451 2564 0 2479 2565 0\n\t\t 2478 2596 0 2477 2591 0 2476 2586 0 2298 2396 0 2303 2397 0 2308 2398 0 2278 2399 0\n\t\t 2277 2429 0 2276 2424 0 2275 2419 0 2957 2319 0 2962 2320 0 2967 2321 0 2936 2322 0\n\t\t 2935 2353 0 2934 2348 0 2933 2343 0 2643 2194 0 2648 2195 0 2653 2196 0 2623 2197 0\n\t\t 2622 2228 0 2621 2223 0 2620 2218 0 2723 2153 0 2728 2154 0 2733 2155 0 2703 2156 0\n\t\t 2702 2186 0 2701 2181 0 2700 2176 0 2684 1263 0 2689 1264 0 2694 1265 0 2722 1266 0\n\t\t 2721 1296 0 2720 1291 0 2719 1286 0 1385 2133 0 1390 2134 0 1395 2135 0 1365 2136 0\n\t\t 1364 2167 0 1363 2162 0 1362 2157 0 2400 1685 0 2405 1686 0 2410 1687 0 2380 1688 0\n\t\t 2379 1660 0 2378 1655 0 2377 1650 0 2076 997 0 2081 998 0 2086 999 0 2114 1000 0\n\t\t 2113 1030 0 2112 1025 0 2111 1020 0 1529 2294 0 1534 2295 0 1539 2296 0 1509 2297 0\n\t\t 1508 2269 0 1507 2264 0 1506 2259 0 2835 2789 0 2840 2790 0 2845 2791 0 2814 2792 0\n\t\t 2813 2764 0 2812 2759 0 2811 2754 0 1893 2911 0 1898 2912 0 1903 2913 0 1931 2914 0\n\t\t 1930 2886 0 1929 2881 0 1928 2876 0 2976 2831 0 2981 2832 0 2986 2833 0 2956 2834 0\n\t\t 2955 2864 0 2954 2859 0 2953 2854 0 3040 2770 0 3045 2771 0 3050 2772 0 3020 2773 0\n\t\t 3019 2803 0 3018 2798 0 3017 2793 0 3139 3074 0 3144 3075 0 3149 3076 0 3118 3077 0\n\t\t 3117 3107 0 3116 3102 0 3115 3097 0 2937 2997 0 2942 2998 0 2947 2999 0 2975 3000 0\n\t\t 2974 3031 0 2973 3026 0 2972 3021 0 3078 1889 0 3083 1890 0 3088 1891 0 3058 1892 0\n\t\t 3057 1923 0 3056 1918 0 3055 1913 0 3158 2892 0 3163 2893 0 3168 2894 0 3138 2895 0\n\t\t 3137 2925 0 3136 2920 0 3135 2915 0 2738 2740 0 2740 897 0 2740 2741 0 2741 898 0\n\t\t 2741 2742 0 2742 899 0 2742 2743 0 2743 900 0 2743 2744 0 2744 901 0 2744 2745 0\n\t\t 2745 902 0 2745 2746 0 2746 903 0 2746 2739 0 2624 3154 0 2629 3155 0 2634 3156 0\n\t\t 2604 3157 0 2603 3129 0 2602 3124 0 2601 3119 0 2035 2850 0 2040 2851 0 2045 2852 0;\n\tsetAttr \".ed[7470:7635]\" 2014 2853 0 2013 2825 0 2012 2820 0 2011 2815 0 2237 2872 0\n\t\t 2242 2873 0 2247 2874 0 2217 2875 0 2216 2906 0 2215 2901 0 2214 2896 0 3261 3215 0\n\t\t 3266 3216 0 3271 3217 0 3240 3218 0 3239 3190 0 3238 3185 0 3237 3180 0 3322 3257 0\n\t\t 3327 3258 0 3332 3259 0 3301 3260 0 3300 3290 0 3299 3285 0 3298 3280 0 3383 3318 0\n\t\t 3388 3319 0 3393 3320 0 3362 3321 0 3361 3351 0 3360 3346 0 3359 3341 0 3402 3196 0\n\t\t 3407 3197 0 3412 3198 0 3382 3199 0 3381 3229 0 3380 3224 0 3379 3219 0 3363 3036 0\n\t\t 3368 3037 0 3373 3038 0 3401 3039 0 3400 3069 0 3399 3064 0 3398 3059 0 1932 3176 0\n\t\t 1937 3177 0 1942 3178 0 1912 3179 0 1911 3210 0 1910 3205 0 1909 3200 0 2746 3276 0\n\t\t 2745 3277 0 2744 3278 0 2743 3279 0 2742 3251 0 2741 3246 0 2740 3241 0 3302 2750 0\n\t\t 3307 2751 0 3312 2752 0 3340 2753 0 3339 2784 0 3338 2779 0 3337 2774 0 3751 3753 0\n\t\t 3753 3750 0 3750 3743 0 3753 3754 0 3754 3749 0 3749 3750 0 3754 3755 0 3755 3748 0\n\t\t 3748 3749 0 3755 3756 0 3756 3747 0 3747 3748 0 3756 3757 0 3757 3746 0 3746 3747 0\n\t\t 3757 3758 0 3758 3745 0 3745 3746 0 3758 3759 0 3759 3744 0 3744 3745 0 3759 3752 0\n\t\t 3742 3744 0 3751 3760 0 3760 3762 0 3762 3753 0 3762 3763 0 3763 3754 0 3763 3764 0\n\t\t 3764 3755 0 3764 3765 0 3765 3756 0 3765 3766 0 3766 3757 0 3766 3767 0 3767 3758 0\n\t\t 3767 3768 0 3768 3759 0 3768 3761 0 3769 3771 0 3771 3762 0 3771 3772 0 3772 3763 0\n\t\t 3772 3773 0 3773 3764 0 3773 3774 0 3774 3765 0 3774 3775 0 3775 3766 0 3775 3776 0\n\t\t 3776 3767 0 3776 3777 0 3777 3768 0 3777 3770 0 3417 3419 0 3419 3771 0 3419 3420 0\n\t\t 3420 3772 0 3420 3421 0 3421 3773 0 3421 3422 0 3422 3774 0 3422 3423 0 3423 3775 0\n\t\t 3423 3424 0 3424 3776 0 3424 3425 0 3425 3777 0 3425 3418 0 3778 3780 0 3780 3795 0\n\t\t 3795 3788 0 3780 3781 0 3781 3794 0 3794 3795 0 3781 3782 0 3782 3793 0 3793 3794 0\n\t\t 3782 3783 0 3783 3792 0 3792 3793 0 3783 3784 0 3784 3791 0 3791 3792 0 3784 3785 0\n\t\t 3785 3790 0 3790 3791 0 3785 3786 0 3786 3789 0 3789 3790 0 3786 3779 0 3787 3789 0\n\t\t 3805 3807 0 3807 3804 0 3804 3797 0 3807 3808 0 3808 3803 0 3803 3804 0 3808 3809 0;\n\tsetAttr \".ed[7636:7801]\" 3809 3802 0 3802 3803 0 3809 3810 0 3810 3801 0 3801 3802 0\n\t\t 3810 3811 0 3811 3800 0 3800 3801 0 3811 3812 0 3812 3799 0 3799 3800 0 3812 3813 0\n\t\t 3813 3798 0 3798 3799 0 3813 3806 0 3796 3798 0 3804 3789 0 3803 3790 0 3802 3791 0\n\t\t 3801 3792 0 3800 3793 0 3799 3794 0 3798 3795 0 3426 3428 0 3428 3807 0 3428 3429 0\n\t\t 3429 3808 0 3429 3430 0 3430 3809 0 3430 3431 0 3431 3810 0 3431 3432 0 3432 3811 0\n\t\t 3432 3433 0 3433 3812 0 3433 3434 0 3434 3813 0 3434 3427 0 3434 3822 0 3822 3815 0\n\t\t 3433 3821 0 3821 3822 0 3432 3820 0 3820 3821 0 3431 3819 0 3819 3820 0 3430 3818 0\n\t\t 3818 3819 0 3429 3817 0 3817 3818 0 3428 3816 0 3816 3817 0 3814 3816 0 3823 3825 0\n\t\t 3825 3816 0 3825 3826 0 3826 3817 0 3826 3827 0 3827 3818 0 3827 3828 0 3828 3819 0\n\t\t 3828 3829 0 3829 3820 0 3829 3830 0 3830 3821 0 3830 3831 0 3831 3822 0 3831 3824 0\n\t\t 3832 3834 0 3834 3825 0 3834 3835 0 3835 3826 0 3835 3836 0 3836 3827 0 3836 3837 0\n\t\t 3837 3828 0 3837 3838 0 3838 3829 0 3838 3839 0 3839 3830 0 3839 3840 0 3840 3831 0\n\t\t 3840 3833 0 3841 3843 0 3843 3834 0 3843 3844 0 3844 3835 0 3844 3845 0 3845 3836 0\n\t\t 3845 3846 0 3846 3837 0 3846 3847 0 3847 3838 0 3847 3848 0 3848 3839 0 3848 3849 0\n\t\t 3849 3840 0 3849 3842 0 3850 3852 0 3852 3443 0 3443 3436 0 3852 3853 0 3853 3442 0\n\t\t 3442 3443 0 3853 3854 0 3854 3441 0 3441 3442 0 3854 3855 0 3855 3440 0 3440 3441 0\n\t\t 3855 3856 0 3856 3439 0 3439 3440 0 3856 3857 0 3857 3438 0 3438 3439 0 3857 3858 0\n\t\t 3858 3437 0 3437 3438 0 3858 3851 0 3435 3437 0 3868 3870 0 3870 3867 0 3867 3860 0\n\t\t 3870 3871 0 3871 3866 0 3866 3867 0 3871 3872 0 3872 3865 0 3865 3866 0 3872 3873 0\n\t\t 3873 3864 0 3864 3865 0 3873 3874 0 3874 3863 0 3863 3864 0 3874 3875 0 3875 3862 0\n\t\t 3862 3863 0 3875 3876 0 3876 3861 0 3861 3862 0 3876 3869 0 3859 3861 0 3877 3879 0\n\t\t 3879 3852 0 3879 3880 0 3880 3853 0 3880 3881 0 3881 3854 0 3881 3882 0 3882 3855 0\n\t\t 3882 3883 0 3883 3856 0 3883 3884 0 3884 3857 0 3884 3885 0 3885 3858 0 3885 3878 0\n\t\t 3867 3879 0 3866 3880 0 3865 3881 0 3864 3882 0 3863 3883 0 3862 3884 0 3861 3885 0;\n\tsetAttr \".ed[7802:7967]\" 3750 3894 0 3894 3887 0 3749 3893 0 3893 3894 0 3748 3892 0\n\t\t 3892 3893 0 3747 3891 0 3891 3892 0 3746 3890 0 3890 3891 0 3745 3889 0 3889 3890 0\n\t\t 3744 3888 0 3888 3889 0 3886 3888 0 3894 3903 0 3903 3896 0 3893 3902 0 3902 3903 0\n\t\t 3892 3901 0 3901 3902 0 3891 3900 0 3900 3901 0 3890 3899 0 3899 3900 0 3889 3898 0\n\t\t 3898 3899 0 3888 3897 0 3897 3898 0 3895 3897 0 3904 3906 0 3906 3870 0 3906 3907 0\n\t\t 3907 3871 0 3907 3908 0 3908 3872 0 3908 3909 0 3909 3873 0 3909 3910 0 3910 3874 0\n\t\t 3910 3911 0 3911 3875 0 3911 3912 0 3912 3876 0 3912 3905 0 3922 3924 0 3924 3906 0\n\t\t 3924 3925 0 3925 3907 0 3925 3926 0 3926 3908 0 3926 3927 0 3927 3909 0 3927 3928 0\n\t\t 3928 3910 0 3928 3929 0 3929 3911 0 3929 3930 0 3930 3912 0 3930 3923 0 3913 3915 0\n\t\t 3915 3939 0 3939 3932 0 3915 3916 0 3916 3938 0 3938 3939 0 3916 3917 0 3917 3937 0\n\t\t 3937 3938 0 3917 3918 0 3918 3936 0 3936 3937 0 3918 3919 0 3919 3935 0 3935 3936 0\n\t\t 3919 3920 0 3920 3934 0 3934 3935 0 3920 3921 0 3921 3933 0 3933 3934 0 3921 3914 0\n\t\t 3931 3933 0 3939 3957 0 3957 3950 0 3938 3956 0 3956 3957 0 3937 3955 0 3955 3956 0\n\t\t 3936 3954 0 3954 3955 0 3935 3953 0 3953 3954 0 3934 3952 0 3952 3953 0 3933 3951 0\n\t\t 3951 3952 0 3949 3951 0 3958 3960 0 3960 3948 0 3948 3941 0 3960 3961 0 3961 3947 0\n\t\t 3947 3948 0 3961 3962 0 3962 3946 0 3946 3947 0 3962 3963 0 3963 3945 0 3945 3946 0\n\t\t 3963 3964 0 3964 3944 0 3944 3945 0 3964 3965 0 3965 3943 0 3943 3944 0 3965 3966 0\n\t\t 3966 3942 0 3942 3943 0 3966 3959 0 3940 3942 0 3957 3975 0 3975 3968 0 3956 3974 0\n\t\t 3974 3975 0 3955 3973 0 3973 3974 0 3954 3972 0 3972 3973 0 3953 3971 0 3971 3972 0\n\t\t 3952 3970 0 3970 3971 0 3951 3969 0 3969 3970 0 3967 3969 0 3976 3978 0 3978 3960 0\n\t\t 3978 3979 0 3979 3961 0 3979 3980 0 3980 3962 0 3980 3981 0 3981 3963 0 3981 3982 0\n\t\t 3982 3964 0 3982 3983 0 3983 3965 0 3983 3984 0 3984 3966 0 3984 3977 0 3985 3987 0\n\t\t 3987 3978 0 3987 3988 0 3988 3979 0 3988 3989 0 3989 3980 0 3989 3990 0 3990 3981 0\n\t\t 3990 3991 0 3991 3982 0 3991 3992 0 3992 3983 0 3992 3993 0 3993 3984 0 3993 3986 0;\n\tsetAttr \".ed[7968:8045]\" 3994 3996 0 3996 3987 0 3996 3997 0 3997 3988 0 3997 3998 0\n\t\t 3998 3989 0 3998 3999 0 3999 3990 0 3999 4000 0 4000 3991 0 4000 4001 0 4001 3992 0\n\t\t 4001 4002 0 4002 3993 0 4002 3995 0 4002 3969 0 4001 3970 0 4000 3971 0 3999 3972 0\n\t\t 3998 3973 0 3997 3974 0 3996 3975 0 3786 3419 0 3785 3420 0 3784 3421 0 3783 3422 0\n\t\t 3782 3423 0 3781 3424 0 3780 3425 0 3443 3843 0 3442 3844 0 3441 3845 0 3440 3846 0\n\t\t 3439 3847 0 3438 3848 0 3437 3849 0 3903 3915 0 3902 3916 0 3901 3917 0 3900 3918 0\n\t\t 3899 3919 0 3898 3920 0 3897 3921 0 3948 3924 0 3947 3925 0 3946 3926 0 3945 3927 0\n\t\t 3944 3928 0 3943 3929 0 3942 3930 0 4011 393 0 4010 394 0 4009 395 0 4008 396 0 4007 368 0\n\t\t 4006 363 0 4005 358 0 4020 484 0 4019 485 0 4018 486 0 4017 487 0 4016 488 0 4015 489 0\n\t\t 4014 490 0 4029 3446 0 4028 3447 0 4027 3448 0 4026 3449 0 4025 3450 0 4024 3451 0\n\t\t 4023 3452 0 4038 3574 0 4037 3575 0 4036 3576 0 4035 3577 0 4034 3549 0 4033 3544 0\n\t\t 4032 3539 0;\n\tsetAttr -s 16092 \".n\";\n\tsetAttr \".n[0:165]\" -type \"float3\"  -4.602159e-14 -6.3000209e-07 -1 -2.7836403e-08\n\t\t 0.19508895 -0.98078561 -2.7836405e-08 0.19508897 -0.98078561 -4.8294261e-14 -6.014053e-07\n\t\t -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1\n\t\t 1 -1.3185106e-14 -8.0929603e-08 1 0 0 1 8.1674466e-15 5.0131426e-08 1 2.3518537e-15\n\t\t 1.4435575e-08 1 -6.0048714e-14 -3.6857637e-07 1 -6.0048727e-14 -3.6857645e-07 1 -7.0045906e-15\n\t\t -4.2993868e-08 0 1.6292068e-07 1 0 1.6292068e-07 1 0 1.6292068e-07 1 0 1.6292068e-07\n\t\t 1 0 1.6292068e-07 1 0 1.6292068e-07 1 0 1.6292068e-07 1 0 1.6292068e-07 1 -1.9595625e-08\n\t\t 1 -1.6292068e-07 -5.2381161e-08 1 -1.6292068e-07 -3.5971365e-08 1 -1.6292068e-07\n\t\t 0 1 -1.6292068e-07 0 1.6292068e-07 1 0 1.6292068e-07 1 0 1.6292068e-07 1 0 1.6292068e-07\n\t\t 1 0.99999994 0 0 0.99999994 0 0 0.99999994 0 0 0.99999994 0 0 0 1.6292068e-07 1 0\n\t\t 1.6292068e-07 1 0 1.6292068e-07 1 0 1.6292068e-07 1 0 1.6292068e-07 1 0 1.6292068e-07\n\t\t 1 0 1.6292068e-07 1 0 1.6292068e-07 1 0 1.6292068e-07 1 0 1.6292068e-07 1 0 1.6292068e-07\n\t\t 1 0 1.6292068e-07 1 0 1 -1.6292068e-07 -3.5971365e-08 1 -1.6292068e-07 0 1 -1.6292068e-07\n\t\t 0 0.99999994 -1.6292067e-07 -3.5971365e-08 1 -1.6292068e-07 -4.0806746e-08 1 -1.6292068e-07\n\t\t 0 1 -1.6292068e-07 0 1 -1.6292068e-07 -4.0806746e-08 1 -1.6292068e-07 0 0.99999994\n\t\t -1.6292067e-07 0 0.99999994 -1.6292067e-07 0 1 -1.6292068e-07 0 -1.6292068e-07 -1\n\t\t 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0\n\t\t -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07\n\t\t -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1 1.6292068e-07 0 -0.99999994 1.6292067e-07\n\t\t 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1\n\t\t 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07\n\t\t 0 -1 1.6292068e-07 0 1.6292068e-07 1 0 1.6292068e-07 1 0 1.6292068e-07 1 0 1.6292068e-07\n\t\t 1 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1\n\t\t 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 -1 0 0 -1\n\t\t 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -3.695725e-08 1 -1.6292068e-07 -3.695725e-08\n\t\t 1 -1.6292068e-07 -5.2381161e-08 1 -1.6292068e-07 -1.9595625e-08 1 -1.6292068e-07\n\t\t 0 1.6292067e-07 0.99999994 0 1.6292067e-07 0.99999994 0 1.6292067e-07 0.99999994\n\t\t 0 1.6292067e-07 0.99999994 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0\n\t\t 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.99999994 0 0 -1 0 0 0.99999994 0 0\n\t\t 0.99999994 0 0 0.99999994 0 0 0.99999994 0 0 0 -1.6292068e-07 -1 0 -1.6292068e-07\n\t\t -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0.99999994 0 0 0.99999994 0 0 0.99999994\n\t\t 0 0 0.99999994 0 0 -5.2381161e-08 1 -1.6292068e-07 -1.2957531e-07 1 -1.6292068e-07\n\t\t -4.0806746e-08 1 -1.6292068e-07 -3.5971365e-08 1 -1.6292068e-07 1 8.1674466e-15 5.0131426e-08\n\t\t 1 0 0 0.99999994 0 0 0.99999994 0 0 0 1.6292068e-07 1 0 1.6292068e-07 1 0 1.6292068e-07\n\t\t 1 0 1.6292068e-07 1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0\n\t\t -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07\n\t\t -1 1 -5.781647e-15 -3.5487496e-08 1 -6.1542102e-15 -3.7774271e-08 0.99999994 -1.3185115e-14\n\t\t -8.0929652e-08 1 3.2962831e-15 2.0232441e-08 1 -5.3541725e-14 -3.2863676e-07 1 -6.5925574e-15\n\t\t -4.0464826e-08 1 -6.5925574e-15 -4.0464826e-08;\n\tsetAttr \".n[166:331]\" -type \"float3\"  1 2.3518537e-15 1.4435575e-08 1 8.1674466e-15\n\t\t 5.0131426e-08 1 1.186765e-14 7.2843115e-08 1 6.3047106e-15 3.8698037e-08 1 1.1867664e-14\n\t\t 7.28432e-08 1 1.1867665e-14 7.2843207e-08 1 1.1867666e-14 7.2843214e-08 1 1.1867666e-14\n\t\t 7.2843214e-08 1 -2.6370214e-14 -1.6185922e-07 1 -1.3185106e-14 -8.0929603e-08 1 -7.0045906e-15\n\t\t -4.2993868e-08 1 -1.318511e-14 -8.0929624e-08 0.99999994 -1.318511e-14 -8.0929624e-08\n\t\t 1 -9.2264699e-15 -5.6631666e-08 1 1.1261872e-15 6.9124875e-09 0 -1 1.6292068e-07\n\t\t 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 -1 0 0 -1 0 0 -1 0 0 -1\n\t\t 0 0 -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.99999994 0 0 0.99999994\n\t\t 0 0 0.99999994 0 0 0.99999994 0 0 0 1.6292067e-07 0.99999994 0 1.6292067e-07 0.99999994\n\t\t 0 1.6292067e-07 0.99999994 0 1.6292067e-07 0.99999994 -1 0 0 -1 0 0 -1 0 0 -1 0 0\n\t\t 0 1.6292067e-07 0.99999994 0 1.6292067e-07 0.99999994 0 1.6292067e-07 0.99999994\n\t\t 0 1.6292067e-07 0.99999994 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1.6292067e-07 0.99999994\n\t\t 0 1.6292067e-07 0.99999994 0 1.6292067e-07 0.99999994 0 1.6292067e-07 0.99999994\n\t\t 0.99999994 0 0 0.99999994 0 0 0.99999994 0 0 0.99999994 0 0 0 -1.6292068e-07 -1 0\n\t\t -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 -1 0 0 -1 0 0 -1 0 0 -1\n\t\t 0 0 0 1.6292067e-07 0.99999994 0 1.6292067e-07 0.99999994 0 1.6292067e-07 0.99999994\n\t\t 0 1.6292067e-07 0.99999994 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07\n\t\t -1 0 -1.6292067e-07 -0.99999994 0 1.6292067e-07 0.99999994 0 1.6292067e-07 0.99999994\n\t\t 0 1.6292067e-07 0.99999994 0 1.6292067e-07 0.99999994 -1 0 0 -1 0 0 -1 0 0 -1 0 0\n\t\t 0 0.99999994 -1.6292067e-07 0 0.99999994 -1.6292067e-07 0 0.99999994 -1.6292067e-07\n\t\t 0 0.99999994 -1.6292067e-07 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07\n\t\t -1 0 -1.6292068e-07 -1 0 1.6292067e-07 0.99999994 0 1.6292067e-07 0.99999994 0 1.6292067e-07\n\t\t 0.99999994 0 1.6292067e-07 0.99999994 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292067e-07\n\t\t -0.99999994 0 -1.6292067e-07 -0.99999994 0 1.6292067e-07 0.99999994 0 1.6292067e-07\n\t\t 0.99999994 0 1.6292067e-07 0.99999994 0 1.6292067e-07 0.99999994 0 -1.6292068e-07\n\t\t -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 -1 0 0 -1 0 0 -1 0\n\t\t 0 -1 0 0 0.99999994 0 0 0.99999994 0 0 0.99999994 0 0 0.99999994 0 0 -1 0 0 -1 0\n\t\t 0 -1 0 0 -1 0 0 0.99999994 0 0 0.99999994 0 0 0.99999994 0 0 0.99999994 0 0 0 -1.6292068e-07\n\t\t -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 0.99999994 -1.6292067e-07\n\t\t 0 0.99999994 -1.6292067e-07 0 0.99999994 -1.6292067e-07 0 0.99999994 -1.6292067e-07\n\t\t 0 0.99999994 -1.6292067e-07 0 0.99999994 -1.6292067e-07 0 0.99999994 -1.6292067e-07\n\t\t 0 0.99999994 -1.6292067e-07 0.99999994 0 0 0.99999994 0 0 0.99999994 0 0 0.99999994\n\t\t 0 0 0 0.99999994 -1.6292067e-07 0 0.99999994 -1.6292067e-07 0 0.99999994 -1.6292067e-07\n\t\t 0 0.99999994 -1.6292067e-07 0.99999994 0 0 0.99999994 0 0 0.99999994 0 0 0.99999994\n\t\t 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1.6292067e-07 0.99999994 0 1.6292067e-07 0.99999994\n\t\t 0 1.6292067e-07 0.99999994 0 1.6292067e-07 0.99999994 0 0.99999994 -1.6292067e-07\n\t\t 0 0.99999994 -1.6292067e-07 0 0.99999994 -1.6292067e-07 0 0.99999994 -1.6292067e-07\n\t\t 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0\n\t\t 0.99999994 -1.6292067e-07 0 0.99999994 -1.6292067e-07 0 0.99999994 -1.6292067e-07;\n\tsetAttr \".n[332:497]\" -type \"float3\"  0 0.99999994 -1.6292067e-07 0 0.99999994\n\t\t -1.6292067e-07 0 0.99999994 -1.6292067e-07 0 0.99999994 -1.6292067e-07 0 0.99999994\n\t\t -1.6292067e-07 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07\n\t\t -1 1 -9.2264699e-15 -5.6631666e-08 0.99999994 -1.318511e-14 -8.0929624e-08 1 0 0\n\t\t 0.99999994 0 0 0 0.99999994 -1.6292067e-07 0 0.99999994 -1.6292067e-07 0 0.99999994\n\t\t -1.6292067e-07 0 0.99999994 -1.6292067e-07 0 0.99999994 -1.6292067e-07 0 0.99999994\n\t\t -1.6292067e-07 0 0.99999994 -1.6292067e-07 0 0.99999994 -1.6292067e-07 0 0.99999994\n\t\t -1.6292067e-07 0 0.99999994 -1.6292067e-07 0 0.99999994 -1.6292067e-07 0 0.99999994\n\t\t -1.6292067e-07 -1.3837099e-07 0.83146876 -0.55557144 -1.5566737e-07 0.92387903 -0.38268453\n\t\t -1.5566735e-07 0.92387903 -0.38268453 -1.3837099e-07 0.83146876 -0.55557144 -1.3837101e-07\n\t\t 0.98078495 -0.19509149 -1.3837099e-07 0.99999994 -1.1876401e-06 -1.3837099e-07 0.99999994\n\t\t -1.1876401e-06 -1.3837099e-07 0.98078495 -0.19509147 -1.3837099e-07 0.99999994 -1.1876401e-06\n\t\t -1.3837099e-07 0.98078561 0.19508901 -1.3837099e-07 0.98078555 0.19508901 -1.3837099e-07\n\t\t 0.99999994 -1.1876401e-06 1 2.9781465e-14 1.8279732e-07 1 2.9781465e-14 1.8279732e-07\n\t\t 1 2.9781465e-14 1.8279732e-07 1 2.9781465e-14 1.8279732e-07 1 2.9781465e-14 1.8279732e-07\n\t\t 1 2.9781465e-14 1.8279732e-07 1 2.9781465e-14 1.8279732e-07 1 2.9781465e-14 1.8279732e-07\n\t\t 1 2.9781465e-14 1.8279732e-07 1 2.9781465e-14 1.8279732e-07 1 2.9781465e-14 1.8279732e-07\n\t\t 1 2.9781465e-14 1.8279732e-07 1 2.9781465e-14 1.8279732e-07 1 2.9781465e-14 1.8279732e-07\n\t\t 1 2.9781465e-14 1.8279732e-07 1 2.9781465e-14 1.8279732e-07 1 2.9781465e-14 1.8279732e-07\n\t\t 1 2.9781465e-14 1.8279732e-07 1 2.9781465e-14 1.8279732e-07 1 2.9781465e-14 1.8279732e-07\n\t\t 1 2.9781465e-14 1.8279732e-07 1 2.9781465e-14 1.8279732e-07 1 2.9781465e-14 1.8279732e-07\n\t\t 1 2.9781465e-14 1.8279732e-07 1 2.9781465e-14 1.8279732e-07 1 2.9781465e-14 1.8279732e-07\n\t\t 1 2.9781465e-14 1.8279732e-07 1 2.9781465e-14 1.8279732e-07 1 2.9781465e-14 1.8279732e-07\n\t\t 1 2.9781465e-14 1.8279732e-07 1 2.9781465e-14 1.8279732e-07 1 2.9781465e-14 1.8279732e-07\n\t\t 1.5566739e-07 -0.83146954 0.55557024 1.902602e-07 -0.92387956 0.38268346 1.902602e-07\n\t\t -0.92387956 0.38268346 1.5566741e-07 -0.8314696 0.5555703 -0.00011499709 0.55463791\n\t\t -0.83209193 -0.00011519078 0.70641673 -0.70779616 -0.00011519078 0.70641685 -0.70779622\n\t\t -0.00011534124 0.5548805 -0.8319301 -0.00011519078 0.70641673 -0.70779616 -1.3837099e-07\n\t\t 0.83146876 -0.55557144 -1.3837099e-07 0.83146876 -0.55557144 -0.00011519078 0.70641685\n\t\t -0.70779622 -2.7836403e-08 0.19508895 -0.98078561 -7.403797e-08 0.38268209 -0.92388016\n\t\t -7.4037978e-08 0.38268209 -0.9238801 -2.7836405e-08 0.19508897 -0.98078561 9.0806004e-08\n\t\t -0.55557036 -0.83146948 6.0537339e-08 -0.38268346 -0.9238795 6.0537339e-08 -0.38268343\n\t\t -0.92387956 9.0806004e-08 -0.55557036 -0.83146948 -7.3509597e-08 0.55557066 0.8314693\n\t\t -4.7565038e-08 0.38268375 0.92387944 -4.7565038e-08 0.38268375 0.92387944 -7.3509597e-08\n\t\t 0.55557066 0.8314693 1.7296385e-07 -0.98078519 0.19509044 1.3837109e-07 -0.99999994\n\t\t 3.9001108e-08 1.3837109e-07 -0.99999994 3.9001108e-08 1.7296385e-07 -0.98078519 0.19509046\n\t\t -9.5130048e-08 0.70710737 0.70710611 -7.3509597e-08 0.55557066 0.8314693 -7.3509597e-08\n\t\t 0.55557066 0.8314693 -9.5130048e-08 0.70710737 0.70710605 1.2107465e-07 -0.70710689\n\t\t -0.70710665 9.0806004e-08 -0.55557036 -0.83146948 9.0806004e-08 -0.55557036 -0.83146948\n\t\t 1.2107463e-07 -0.70710683 -0.70710665 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -2.3782519e-08\n\t\t 0.19509085 0.98078519 5.6816784e-16 7.1102647e-07 0.99999994 -2.2726713e-15 7.3485717e-07\n\t\t 0.99999994 -2.3782521e-08 0.19509086 0.98078519 6.0537339e-08 -0.38268346 -0.9238795\n\t\t 2.7836364e-08 -0.19509032 -0.98078525 2.7836361e-08 -0.19509032 -0.98078525 6.0537339e-08\n\t\t -0.38268343 -0.92387956 -1.3837099e-07 0.98078561 0.19508901 -1.3837099e-07 0.92387986\n\t\t 0.3826825 -1.3837099e-07 0.92387986 0.3826825 -1.3837099e-07 0.98078555 0.19508901\n\t\t 1.3837108e-07 -0.98078531 -0.19509025 1.2107471e-07 -0.92387968 -0.38268322 1.2107471e-07\n\t\t -0.92387968 -0.38268322 1.3837108e-07 -0.98078531 -0.19509025 1 -5.3541725e-14 -3.2863676e-07\n\t\t 1 3.2962831e-15 2.0232441e-08 1 1.9777669e-14 1.2139446e-07 1 9.2313149e-15 5.6661403e-08\n\t\t 1 8.6724663e-15 5.3231219e-08 1 9.8888344e-15 6.0697232e-08 0.99999994 -4.9090232e-14\n\t\t -3.0131369e-07 1.902602e-07 -0.92387956 0.38268346 1.7296385e-07 -0.98078519 0.19509044\n\t\t 1.7296385e-07 -0.98078519 0.19509046 1.902602e-07 -0.92387956 0.38268346 1.2107468e-07\n\t\t -0.83146977 -0.55557007 1.2107465e-07 -0.70710689 -0.70710665 1.2107463e-07 -0.70710683\n\t\t -0.70710665 1.2107468e-07 -0.83146977 -0.55557013 -1.3837099e-07 0.92387986 0.3826825\n\t\t -1.2107461e-07 0.83147007 0.55556965 -1.2107461e-07 0.83147007 0.55556965 -1.3837099e-07\n\t\t 0.92387986 0.3826825 5.6816784e-16 7.1102647e-07 0.99999994 3.0268659e-08 -0.19508965\n\t\t 0.98078537 3.0268652e-08 -0.19508965 0.98078537 -2.2726713e-15 7.3485717e-07 0.99999994\n\t\t 6.7023443e-08 -0.38268307 0.92387962 1.0377825e-07 -0.55557019 0.8314696 1.0377825e-07\n\t\t -0.55557019 0.8314696 6.7023443e-08 -0.38268307 0.92387962 -7.403797e-08 0.38268209\n\t\t -0.92388016 -0.00011499709 0.55463791 -0.83209193 -0.00011534124 0.5548805 -0.8319301\n\t\t -7.4037978e-08 0.38268209 -0.9238801 1.2972282e-07 -0.70710677 0.70710683 1.5566739e-07\n\t\t -0.83146954 0.55557024 1.5566741e-07 -0.8314696 0.5555703 1.2972282e-07 -0.70710677\n\t\t 0.70710683 -1.5566737e-07 0.92387903 -0.38268453 -1.3837101e-07 0.98078495 -0.19509149\n\t\t -1.3837099e-07 0.98078495 -0.19509147 -1.5566735e-07 0.92387903 -0.38268453 -4.7565038e-08\n\t\t 0.38268375 0.92387944 -2.3782519e-08 0.19509085 0.98078519;\n\tsetAttr \".n[498:663]\" -type \"float3\"  -2.3782521e-08 0.19509086 0.98078519\n\t\t -4.7565038e-08 0.38268375 0.92387944 1.2107471e-07 -0.92387968 -0.38268322 1.2107468e-07\n\t\t -0.83146977 -0.55557007 1.2107468e-07 -0.83146977 -0.55557013 1.2107471e-07 -0.92387968\n\t\t -0.38268322 -1.2107461e-07 0.83147007 0.55556965 -9.5130048e-08 0.70710737 0.70710611\n\t\t -9.5130048e-08 0.70710737 0.70710605 -1.2107461e-07 0.83147007 0.55556965 1.0377825e-07\n\t\t -0.55557019 0.8314696 1.2972282e-07 -0.70710677 0.70710683 1.2972282e-07 -0.70710677\n\t\t 0.70710683 1.0377825e-07 -0.55557019 0.8314696 1.3837109e-07 -0.99999994 3.9001108e-08\n\t\t 1.3837108e-07 -0.98078531 -0.19509025 1.3837108e-07 -0.98078531 -0.19509025 1.3837109e-07\n\t\t -0.99999994 3.9001108e-08 3.0268659e-08 -0.19508965 0.98078537 6.7023443e-08 -0.38268307\n\t\t 0.92387962 6.7023443e-08 -0.38268307 0.92387962 3.0268652e-08 -0.19508965 0.98078537\n\t\t 1 8.6724663e-15 5.3231219e-08 1 9.2313149e-15 5.6661403e-08 1 1.2597021e-14 7.731996e-08\n\t\t 1 6.6921697e-15 4.1076245e-08 0.99999994 0 0 1 0 0 1 0 0 1 0 0 0 -1 1.6292068e-07\n\t\t 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 1 -7.0045906e-15 -4.2993868e-08\n\t\t 1 -6.0048727e-14 -3.6857645e-07 1 -1.2009744e-13 -7.3715279e-07 1 0 0 1 -6.0048727e-14\n\t\t -3.6857645e-07 1 -6.0048714e-14 -3.6857637e-07 1 -1.2009744e-13 -7.3715285e-07 1\n\t\t -1.2009744e-13 -7.3715279e-07 0.99999994 -1.318511e-14 -8.0929624e-08 1 -1.318511e-14\n\t\t -8.0929624e-08 1 0 0 1 0 0 1 1.2597022e-14 7.7319967e-08 1 1.2597022e-14 7.7319967e-08\n\t\t 0.99999994 0 0 1 0 0 1 1.2597022e-14 7.7319967e-08 1 -9.2264699e-15 -5.6631666e-08\n\t\t 0.99999994 0 0 0.99999994 0 0 1 6.6921697e-15 4.1076245e-08 1 1.2597023e-14 7.7319974e-08\n\t\t 1 0 0 1 0 0 1 1.2597022e-14 7.7319967e-08 1 1.2597022e-14 7.7319967e-08 1 0 0 1 0\n\t\t 0 1 0 0 0.99999994 0 0 1 0 0 1 0 0 1 1.2597023e-14 7.7319974e-08 1 1.2597022e-14\n\t\t 7.7319967e-08 1 0 0 1 0 0 0.99999994 0 0 1 6.6921697e-15 4.1076245e-08 1 0 0 1 0\n\t\t 0 1 9.8888344e-15 6.0697232e-08 1 8.6724663e-15 5.3231219e-08 1 0 0 1 0 0 1 0 0 1\n\t\t 0 0 1 0 0 0.99999994 0 0 1 0 0 1 0 0 0.99999994 0 0 1 0 0 0.99999994 -4.9090232e-14\n\t\t -3.0131369e-07 1 9.8888344e-15 6.0697232e-08 1 0 0 1 -1.1795812e-13 -7.2402179e-07\n\t\t 1 8.6724663e-15 5.3231219e-08 1 0 0 1 0 0 1 0 0 0 -1.6292068e-07 -1 0 -1.6292068e-07\n\t\t -1 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 1 -5.3541725e-14 -3.2863676e-07 0.99999994\n\t\t -4.9090232e-14 -3.0131369e-07 1 -1.1795812e-13 -7.2402179e-07 1 -1.1795812e-13 -7.2402179e-07\n\t\t 1 -6.5925574e-15 -4.0464826e-08 1 -5.3541725e-14 -3.2863676e-07 1 -1.1795812e-13\n\t\t -7.2402179e-07 0.99999994 0 0 1 -6.5925574e-15 -4.0464826e-08 1 -6.5925574e-15 -4.0464826e-08\n\t\t 0.99999994 0 0 1 0 0 1 -1.318511e-14 -8.0929624e-08 1 -7.0045906e-15 -4.2993868e-08\n\t\t 1 0 0 1 0 0 1 2.3518537e-15 1.4435575e-08 1 1.1867666e-14 7.2843214e-08 1 0 0 1 0\n\t\t 0 1 -6.0048714e-14 -3.6857637e-07 1 2.3518537e-15 1.4435575e-08 1 0 0 1 -1.2009744e-13\n\t\t -7.3715285e-07 1 -5.781647e-15 -3.5487496e-08 1 -6.5925574e-15 -4.0464826e-08 1 0\n\t\t 0 1 0 0 1 1.1867666e-14 7.2843214e-08 1 1.1867666e-14 7.2843214e-08 1 0 0 1 0 0 1\n\t\t 0 0 1 -5.781647e-15 -3.5487496e-08 1 0 0 1 0 0 1 1.1867666e-14 7.2843214e-08 1 1.1867665e-14\n\t\t 7.2843207e-08 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.99999994 0 0 1 1.1867665e-14 7.2843207e-08\n\t\t 1 1.1867664e-14 7.28432e-08 0.99999994 0 0 1 0 0 1 0 0 1 0 0 0.99999994 0 0 1 0 0\n\t\t 1 1.1867664e-14 7.28432e-08 1 6.3047106e-15 3.8698037e-08 1 0 0 0.99999994 0 0 1\n\t\t 6.3047106e-15 3.8698037e-08 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 1.6292068e-07\n\t\t 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07;\n\tsetAttr \".n[664:829]\" -type \"float3\"  0 -1 1.6292068e-07 0 -1 1.6292068e-07\n\t\t 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1\n\t\t 1.6292068e-07 0 -0.99999994 1.6292067e-07 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1\n\t\t 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1\n\t\t 1.6292068e-07 0 -1 1.6292068e-07 0 -0.99999994 1.6292067e-07 0 -1 1.6292068e-07 0\n\t\t -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07\n\t\t 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1\n\t\t 1.6292068e-07 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -0.99999994 1.6292067e-07 0\n\t\t -1 1.6292068e-07 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -1 1.6292068e-07 0 -1 1.6292068e-07\n\t\t 0 -1 1.6292068e-07 0 -1 1.6292068e-07 0 -1.6292068e-07 -1 0 -1.6292068e-07 -1 0 -1.6292068e-07\n\t\t -1 0 -1.6292068e-07 -1 1 6.3047106e-15 3.8698037e-08 1 1.186765e-14 7.2843115e-08\n\t\t 1 -6.1542102e-15 -3.7774271e-08 1 -5.781647e-15 -3.5487496e-08 1 0 0 1 0 0 1 0 0\n\t\t 1 0 0 1 6.6921697e-15 4.1076245e-08 1 1.2597021e-14 7.731996e-08 1 1.1261872e-15\n\t\t 6.9124875e-09 1 -9.2264699e-15 -5.6631666e-08 1 1.2597022e-14 7.7319967e-08 1 1.2597022e-14\n\t\t 7.7319967e-08 1 1.2597022e-14 7.7319967e-08 1 1.2597023e-14 7.7319974e-08 0 1.6292068e-07\n\t\t 1 0 1.6292068e-07 1 0 1.6292068e-07 1 0 1.6292068e-07 1 -0.99978548 -0.014661876\n\t\t 0.014628915 -0.99703801 -0.075990744 0.011857213 -0.99333882 -0.08184582 0.08111202\n\t\t -0.99703741 -0.012106793 0.07595925 -0.99703801 -0.075990744 0.011857213 -0.97345334\n\t\t -0.22855835 0.012232821 -0.96697474 -0.24063005 0.084007084 -0.99333882 -0.08184582\n\t\t 0.08111202 -0.97345334 -0.22855835 0.012232821 -0.88917226 -0.45744288 0.01088934\n\t\t -0.87979215 -0.46820641 0.082149819 -0.96697474 -0.24063005 0.084007084 -0.88917226\n\t\t -0.45744288 0.01088934 -0.70692879 -0.70721918 0.0096225329 -0.70542502 -0.70425892\n\t\t 0.079967998 -0.87979215 -0.46820641 0.082149819 -0.99703741 -0.012106793 0.07595925\n\t\t -0.99333882 -0.08184582 0.08111202 -0.96685016 -0.085013464 0.24077652 -0.97352391\n\t\t -0.012683596 0.22823313 -0.99333882 -0.08184582 0.08111202 -0.96697474 -0.24063005\n\t\t 0.084007084 -0.93764704 -0.24605525 0.24550921 -0.96685016 -0.085013464 0.24077652\n\t\t -0.96697474 -0.24063005 0.084007084 -0.87979215 -0.46820641 0.082149819 -0.85190374\n\t\t -0.46578696 0.23937914 -0.93764704 -0.24605525 0.24550921 -0.87979215 -0.46820641\n\t\t 0.082149819 -0.70542502 -0.70425892 0.079967998 -0.687841 -0.68729126 0.23346409\n\t\t -0.85190374 -0.46578696 0.23937914 -0.97352391 -0.012683596 0.22823313 -0.96685016\n\t\t -0.085013464 0.24077652 -0.87906092 -0.082782067 0.46946675 -0.88939428 -0.011133735\n\t\t 0.4570052 -0.96685016 -0.085013464 0.24077652 -0.93764704 -0.24605525 0.24550921\n\t\t -0.85159296 -0.23996522 0.46605381 -0.87906092 -0.082782067 0.46946675 -0.93764704\n\t\t -0.24605525 0.24550921 -0.85190374 -0.46578696 0.23937914 -0.78360921 -0.43938822\n\t\t 0.43919766 -0.85159296 -0.23996522 0.46605381 -0.85190374 -0.46578696 0.23937914\n\t\t -0.687841 -0.68729126 0.23346409 -0.64236581 -0.64231354 0.41809037 -0.78360921 -0.43938822\n\t\t 0.43919766 -0.88939428 -0.011133735 0.4570052 -0.87906092 -0.082782067 0.46946675\n\t\t -0.70425892 -0.079967774 0.70542502 -0.70721912 -0.009622301 0.70692897 -0.87906092\n\t\t -0.082782067 0.46946675 -0.85159296 -0.23996522 0.46605381 -0.68729126 -0.23346385\n\t\t 0.68784106 -0.70425892 -0.079967774 0.70542502 -0.85159296 -0.23996522 0.46605381\n\t\t -0.78360921 -0.43938822 0.43919766 -0.6423136 -0.41809008 0.64236587 -0.68729126\n\t\t -0.23346385 0.68784106 -0.78360921 -0.43938822 0.43919766 -0.64236581 -0.64231354\n\t\t 0.41809037 -0.57735026 -0.57735014 0.57735038 -0.6423136 -0.41809008 0.64236587 -0.014629101\n\t\t -0.99978548 0.014661994 -0.011857132 -0.99703801 0.075990908 -0.081112005 -0.99333882\n\t\t 0.081845999 -0.075959027 -0.99703747 0.012106829 -0.011857132 -0.99703801 0.075990908\n\t\t -0.012232719 -0.97345328 0.22855851 -0.084007047 -0.96697468 0.24063022 -0.081112005\n\t\t -0.99333882 0.081845999 -0.012232719 -0.97345328 0.22855851 -0.01088927 -0.8891722\n\t\t 0.45744303 -0.082149744 -0.87979209 0.46820655 -0.084007047 -0.96697468 0.24063022\n\t\t -0.01088927 -0.8891722 0.45744303 -0.0096224481 -0.70692867 0.70721936 -0.079967871\n\t\t -0.7054249 0.70425898 -0.082149744 -0.87979209 0.46820655 -0.075959027 -0.99703747\n\t\t 0.012106829 -0.081112005 -0.99333882 0.081845999 -0.24077651 -0.96685016 0.085013658\n\t\t -0.22823201 -0.97352415 0.012683718 -0.081112005 -0.99333882 0.081845999 -0.084007047\n\t\t -0.96697468 0.24063022 -0.24550918 -0.93764704 0.24605545 -0.24077651 -0.96685016\n\t\t 0.085013658 -0.084007047 -0.96697468 0.24063022 -0.082149744 -0.87979209 0.46820655\n\t\t -0.23937906 -0.85190368 0.46578714 -0.24550918 -0.93764704 0.24605545 -0.082149744\n\t\t -0.87979209 0.46820655 -0.079967871 -0.7054249 0.70425898 -0.23346397 -0.68784088\n\t\t 0.68729144 -0.23937906 -0.85190368 0.46578714 -0.22823201 -0.97352415 0.012683718\n\t\t -0.24077651 -0.96685016 0.085013658 -0.46946675 -0.87906092 0.082782283 -0.45700565\n\t\t -0.88939404 0.011133941 -0.24077651 -0.96685016 0.085013658 -0.24550918 -0.93764704\n\t\t 0.24605545;\n\tsetAttr \".n[830:995]\" -type \"float3\"  -0.46605378 -0.8515929 0.23996542 -0.46946675\n\t\t -0.87906092 0.082782283 -0.24550918 -0.93764704 0.24605545 -0.23937906 -0.85190368\n\t\t 0.46578714 -0.4391976 -0.78360915 0.43938839 -0.46605378 -0.8515929 0.23996542 -0.23937906\n\t\t -0.85190368 0.46578714 -0.23346397 -0.68784088 0.68729144 -0.41809019 -0.64236563\n\t\t 0.64231366 -0.4391976 -0.78360915 0.43938839 -0.45700565 -0.88939404 0.011133941\n\t\t -0.46946675 -0.87906092 0.082782283 -0.70542502 -0.70425892 0.079967998 -0.70692879\n\t\t -0.70721918 0.0096225329 -0.46946675 -0.87906092 0.082782283 -0.46605378 -0.8515929\n\t\t 0.23996542 -0.687841 -0.68729126 0.23346409 -0.70542502 -0.70425892 0.079967998 -0.46605378\n\t\t -0.8515929 0.23996542 -0.4391976 -0.78360915 0.43938839 -0.64236581 -0.64231354 0.41809037\n\t\t -0.687841 -0.68729126 0.23346409 -0.4391976 -0.78360915 0.43938839 -0.41809019 -0.64236563\n\t\t 0.64231366 -0.57735026 -0.57735014 0.57735038 -0.64236581 -0.64231354 0.41809037\n\t\t -0.014661819 -0.014628868 0.99978542 -0.075990915 -0.011856835 0.99703801 -0.081845835\n\t\t -0.081111841 0.99333882 -0.012106671 -0.07595887 0.99703753 -0.075990915 -0.011856835\n\t\t 0.99703801 -0.22855793 -0.012232538 0.9734534 -0.24063006 -0.084006891 0.96697474\n\t\t -0.081845835 -0.081111841 0.99333882 -0.22855793 -0.012232538 0.9734534 -0.45744145\n\t\t -0.010889113 0.88917309 -0.46820641 -0.082149602 0.87979215 -0.24063006 -0.084006891\n\t\t 0.96697474 -0.45744145 -0.010889113 0.88917309 -0.70721912 -0.009622301 0.70692897\n\t\t -0.70425892 -0.079967774 0.70542502 -0.46820641 -0.082149602 0.87979215 -0.012106671\n\t\t -0.07595887 0.99703753 -0.081845835 -0.081111841 0.99333882 -0.085013501 -0.24077635\n\t\t 0.96685022 -0.012683567 -0.22823185 0.97352427 -0.081845835 -0.081111841 0.99333882\n\t\t -0.24063006 -0.084006891 0.96697474 -0.24605529 -0.24550901 0.9376471 -0.085013501\n\t\t -0.24077635 0.96685022 -0.24063006 -0.084006891 0.96697474 -0.46820641 -0.082149602\n\t\t 0.87979215 -0.46578699 -0.23937893 0.8519038 -0.24605529 -0.24550901 0.9376471 -0.46820641\n\t\t -0.082149602 0.87979215 -0.70425892 -0.079967774 0.70542502 -0.68729126 -0.23346385\n\t\t 0.68784106 -0.46578699 -0.23937893 0.8519038 -0.012683567 -0.22823185 0.97352427\n\t\t -0.085013501 -0.24077635 0.96685022 -0.082782142 -0.46946663 0.87906098 -0.011133808\n\t\t -0.4570055 0.88939416 -0.085013501 -0.24077635 0.96685022 -0.24605529 -0.24550901\n\t\t 0.9376471 -0.23996529 -0.46605363 0.85159302 -0.082782142 -0.46946663 0.87906098\n\t\t -0.24605529 -0.24550901 0.9376471 -0.46578699 -0.23937893 0.8519038 -0.43938828 -0.43919748\n\t\t 0.78360927 -0.23996529 -0.46605363 0.85159302 -0.46578699 -0.23937893 0.8519038 -0.68729126\n\t\t -0.23346385 0.68784106 -0.6423136 -0.41809008 0.64236587 -0.43938828 -0.43919748\n\t\t 0.78360927 -0.011133808 -0.4570055 0.88939416 -0.082782142 -0.46946663 0.87906098\n\t\t -0.079967871 -0.7054249 0.70425898 -0.0096224481 -0.70692867 0.70721936 -0.082782142\n\t\t -0.46946663 0.87906098 -0.23996529 -0.46605363 0.85159302 -0.23346397 -0.68784088\n\t\t 0.68729144 -0.079967871 -0.7054249 0.70425898 -0.23996529 -0.46605363 0.85159302\n\t\t -0.43938828 -0.43919748 0.78360927 -0.41809019 -0.64236563 0.64231366 -0.23346397\n\t\t -0.68784088 0.68729144 -0.43938828 -0.43919748 0.78360927 -0.6423136 -0.41809008\n\t\t 0.64236587 -0.57735026 -0.57735014 0.57735038 -0.41809019 -0.64236563 0.64231366\n\t\t -0.99978542 -0.01463079 -0.014664005 -0.99703807 -0.011855925 -0.07599061 -0.99333894\n\t\t -0.081113011 -0.081844777 -0.99703735 -0.07596153 -0.01210475 -0.99703807 -0.011855925\n\t\t -0.07599061 -0.97345376 -0.012228435 -0.22855695 -0.96697474 -0.084004693 -0.24063037\n\t\t -0.99333894 -0.081113011 -0.081844777 -0.97345376 -0.012228435 -0.22855695 -0.88917238\n\t\t -0.010885173 -0.45744297 -0.87979364 -0.08214698 -0.46820402 -0.96697474 -0.084004693\n\t\t -0.24063037 -0.88917238 -0.010885173 -0.45744297 -0.70692766 -0.0096213361 -0.70722032\n\t\t -0.70542747 -0.079967126 -0.70425665 -0.87979364 -0.08214698 -0.46820402 -0.99703735\n\t\t -0.07596153 -0.01210475 -0.99333894 -0.081113011 -0.081844777 -0.96684992 -0.24077861\n\t\t -0.085011914 -0.97352368 -0.22823408 -0.012682752 -0.99333894 -0.081113011 -0.081844777\n\t\t -0.96697474 -0.084004693 -0.24063037 -0.9376483 -0.24550886 -0.24605085 -0.96684992\n\t\t -0.24077861 -0.085011914 -0.96697474 -0.084004693 -0.24063037 -0.87979364 -0.08214698\n\t\t -0.46820402 -0.85190547 -0.23937804 -0.46578446 -0.9376483 -0.24550886 -0.24605085\n\t\t -0.87979364 -0.08214698 -0.46820402 -0.70542747 -0.079967126 -0.70425665 -0.68784302\n\t\t -0.23346503 -0.68728894 -0.85190547 -0.23937804 -0.46578446 -0.97352368 -0.22823408\n\t\t -0.012682752 -0.96684992 -0.24077861 -0.085011914 -0.87906051 -0.46946779 -0.082781538\n\t\t -0.8893953 -0.45700324 -0.011135635 -0.96684992 -0.24077861 -0.085011914 -0.9376483\n\t\t -0.24550886 -0.24605085 -0.85159349 -0.46605474 -0.2399611 -0.87906051 -0.46946779\n\t\t -0.082781538 -0.9376483 -0.24550886 -0.24605085 -0.85190547 -0.23937804 -0.46578446\n\t\t -0.78361177 -0.43919501 -0.43938631 -0.85159349 -0.46605474 -0.2399611 -0.85190547\n\t\t -0.23937804 -0.46578446 -0.68784302 -0.23346503 -0.68728894 -0.64236617 -0.41808793\n\t\t -0.64231473 -0.78361177 -0.43919501 -0.43938631 -0.8893953 -0.45700324 -0.011135635\n\t\t -0.87906051 -0.46946779 -0.082781538 -0.70425665 -0.70542747 -0.079966903 -0.70722097\n\t\t -0.70692718 -0.0096210968 -0.87906051 -0.46946779 -0.082781538 -0.85159349 -0.46605474\n\t\t -0.2399611 -0.687289 -0.68784308 -0.23346482 -0.70425665 -0.70542747 -0.079966903\n\t\t -0.85159349 -0.46605474 -0.2399611 -0.78361177 -0.43919501 -0.43938631 -0.64231485\n\t\t -0.64236623 -0.41808772 -0.687289 -0.68784308 -0.23346482 -0.78361177 -0.43919501\n\t\t -0.43938631 -0.64236617 -0.41808793 -0.64231473 -0.57735032 -0.57735044 -0.5773502\n\t\t -0.64231485 -0.64236623 -0.41808772 -0.014630898 -0.014662711 -0.99978542 -0.011856051\n\t\t -0.075990826 -0.99703801 -0.081112996 -0.081844956 -0.99333894 -0.075961389 -0.012105091\n\t\t -0.99703729 -0.011856051 -0.075990826 -0.99703801 -0.012228469 -0.22855859 -0.97345328\n\t\t -0.084004655 -0.24063055 -0.96697468 -0.081112996 -0.081844956 -0.99333894 -0.012228469\n\t\t -0.22855859 -0.97345328 -0.010885138 -0.45744276 -0.88917249 -0.082146905 -0.46820417\n\t\t -0.87979358 -0.084004655 -0.24063055 -0.96697468;\n\tsetAttr \".n[996:1161]\" -type \"float3\"  -0.010885138 -0.45744276 -0.88917249\n\t\t -0.0096212523 -0.70722109 -0.70692706 -0.079967014 -0.70425677 -0.70542735 -0.082146905\n\t\t -0.46820417 -0.87979358 -0.075961389 -0.012105091 -0.99703729 -0.081112996 -0.081844956\n\t\t -0.99333894 -0.2407786 -0.085012108 -0.96684992 -0.22823457 -0.01268307 -0.97352362\n\t\t -0.081112996 -0.081844956 -0.99333894 -0.084004655 -0.24063055 -0.96697468 -0.2455088\n\t\t -0.24605101 -0.93764824 -0.2407786 -0.085012108 -0.96684992 -0.084004655 -0.24063055\n\t\t -0.96697468 -0.082146905 -0.46820417 -0.87979358 -0.23937796 -0.46578464 -0.85190541\n\t\t -0.2455088 -0.24605101 -0.93764824 -0.082146905 -0.46820417 -0.87979358 -0.079967014\n\t\t -0.70425677 -0.70542735 -0.23346491 -0.68728912 -0.68784291 -0.23937796 -0.46578464\n\t\t -0.85190541 -0.22823457 -0.01268307 -0.97352362 -0.2407786 -0.085012108 -0.96684992\n\t\t -0.4694677 -0.08278174 -0.87906045 -0.45700485 -0.011135908 -0.88939446 -0.2407786\n\t\t -0.085012108 -0.96684992 -0.2455088 -0.24605101 -0.93764824 -0.46605471 -0.23996131\n\t\t -0.85159343 -0.4694677 -0.08278174 -0.87906045 -0.2455088 -0.24605101 -0.93764824\n\t\t -0.23937796 -0.46578464 -0.85190541 -0.43919495 -0.43938649 -0.78361171 -0.46605471\n\t\t -0.23996131 -0.85159343 -0.23937796 -0.46578464 -0.85190541 -0.23346491 -0.68728912\n\t\t -0.68784291 -0.41808781 -0.64231491 -0.64236605 -0.43919495 -0.43938649 -0.78361171\n\t\t -0.45700485 -0.011135908 -0.88939446 -0.4694677 -0.08278174 -0.87906045 -0.70542747\n\t\t -0.079967126 -0.70425665 -0.70692766 -0.0096213361 -0.70722032 -0.4694677 -0.08278174\n\t\t -0.87906045 -0.46605471 -0.23996131 -0.85159343 -0.68784302 -0.23346503 -0.68728894\n\t\t -0.70542747 -0.079967126 -0.70425665 -0.46605471 -0.23996131 -0.85159343 -0.43919495\n\t\t -0.43938649 -0.78361171 -0.64236617 -0.41808793 -0.64231473 -0.68784302 -0.23346503\n\t\t -0.68728894 -0.43919495 -0.43938649 -0.78361171 -0.41808781 -0.64231491 -0.64236605\n\t\t -0.57735032 -0.57735044 -0.5773502 -0.64236617 -0.41808793 -0.64231473 -0.014662519\n\t\t -0.99978542 -0.014630673 -0.075990662 -0.99703801 -0.011855894 -0.081844792 -0.99333894\n\t\t -0.081112832 -0.012104825 -0.99703729 -0.075961359 -0.075990662 -0.99703801 -0.011855894\n\t\t -0.22855842 -0.97345334 -0.012228312 -0.24063039 -0.96697474 -0.084004499 -0.081844792\n\t\t -0.99333894 -0.081112832 -0.22855842 -0.97345334 -0.012228312 -0.45744261 -0.88917255\n\t\t -0.010884968 -0.46820402 -0.87979364 -0.082146764 -0.24063039 -0.96697474 -0.084004499\n\t\t -0.45744261 -0.88917255 -0.010884968 -0.70722097 -0.70692718 -0.0096210968 -0.70425665\n\t\t -0.70542747 -0.079966903 -0.46820402 -0.87979364 -0.082146764 -0.012104825 -0.99703729\n\t\t -0.075961359 -0.081844792 -0.99333894 -0.081112832 -0.085011959 -0.96684998 -0.24077843\n\t\t -0.012682861 -0.97352374 -0.22823392 -0.081844792 -0.99333894 -0.081112832 -0.24063039\n\t\t -0.96697474 -0.084004499 -0.24605086 -0.93764836 -0.24550866 -0.085011959 -0.96684998\n\t\t -0.24077843 -0.24063039 -0.96697474 -0.084004499 -0.46820402 -0.87979364 -0.082146764\n\t\t -0.46578449 -0.85190552 -0.23937783 -0.24605086 -0.93764836 -0.24550866 -0.46820402\n\t\t -0.87979364 -0.082146764 -0.70425665 -0.70542747 -0.079966903 -0.687289 -0.68784308\n\t\t -0.23346482 -0.46578449 -0.85190552 -0.23937783 -0.012682861 -0.97352374 -0.22823392\n\t\t -0.085011959 -0.96684998 -0.24077843 -0.082781605 -0.87906051 -0.46946758 -0.011135755\n\t\t -0.88939536 -0.45700309 -0.085011959 -0.96684998 -0.24077843 -0.24605086 -0.93764836\n\t\t -0.24550866 -0.23996118 -0.85159355 -0.46605456 -0.082781605 -0.87906051 -0.46946758\n\t\t -0.24605086 -0.93764836 -0.24550866 -0.46578449 -0.85190552 -0.23937783 -0.43938637\n\t\t -0.78361183 -0.43919483 -0.23996118 -0.85159355 -0.46605456 -0.46578449 -0.85190552\n\t\t -0.23937783 -0.687289 -0.68784308 -0.23346482 -0.64231485 -0.64236623 -0.41808772\n\t\t -0.43938637 -0.78361183 -0.43919483 -0.011135755 -0.88939536 -0.45700309 -0.082781605\n\t\t -0.87906051 -0.46946758 -0.079967014 -0.70425677 -0.70542735 -0.0096212523 -0.70722109\n\t\t -0.70692706 -0.082781605 -0.87906051 -0.46946758 -0.23996118 -0.85159355 -0.46605456\n\t\t -0.23346491 -0.68728912 -0.68784291 -0.079967014 -0.70425677 -0.70542735 -0.23996118\n\t\t -0.85159355 -0.46605456 -0.43938637 -0.78361183 -0.43919483 -0.41808781 -0.64231491\n\t\t -0.64236605 -0.23346491 -0.68728912 -0.68784291 -0.43938637 -0.78361183 -0.43919483\n\t\t -0.64231485 -0.64236623 -0.41808772 -0.57735032 -0.57735044 -0.5773502 -0.41808781\n\t\t -0.64231491 -0.64236605 0.0081435405 0.99981141 0.017633514 0.058668412 0.99756724\n\t\t 0.037651192 0.075913534 0.98676431 0.14329378 0.0027772787 0.99664575 0.081790201\n\t\t 0.058668412 0.99756724 0.037651192 0.2139366 0.97185886 0.098597415 0.2522707 0.9340018\n\t\t 0.25298256 0.075913534 0.98676431 0.14329378 0.2139366 0.97185886 0.098597415 0.44241562\n\t\t 0.88407522 0.15059651 0.45309189 0.82947671 0.3266134 0.2522707 0.9340018 0.25298256\n\t\t 0.44241562 0.88407522 0.15059651 0.70013368 0.69332802 0.17061366 0.66899633 0.65320671\n\t\t 0.35463348 0.45309189 0.82947671 0.3266134 0.0027772787 0.99664575 0.081790201 0.075913534\n\t\t 0.98676431 0.14329378 0.13581006 0.93881619 0.3165119 0.0097294189 0.97310984 0.23013601\n\t\t 0.075913534 0.98676431 0.14329378 0.2522707 0.9340018 0.25298256 0.31246129 0.86426419\n\t\t 0.39422756 0.13581006 0.93881619 0.3165119 0.2522707 0.9340018 0.25298256 0.45309189\n\t\t 0.82947671 0.3266134 0.47328323 0.77241802 0.42352504 0.31246129 0.86426419 0.39422756\n\t\t 0.45309189 0.82947671 0.3266134 0.66899633 0.65320671 0.35463348 0.64215201 0.62992543\n\t\t 0.43684644 0.47328323 0.77241802 0.42352504 0.0097294189 0.97310984 0.23013601 0.13581006\n\t\t 0.93881619 0.3165119 0.29323032 0.70286334 0.64807349 0.071542956 0.85187769 0.51883125\n\t\t 0.13581006 0.93881619 0.3165119 0.31246129 0.86426419 0.39422756 0.40082896 0.67692941\n\t\t 0.61733508 0.29323032 0.70286334 0.64807349 0.31246129 0.86426419 0.39422756 0.47328323\n\t\t 0.77241802 0.42352504 0.48858732 0.65903956 0.57179487 0.40082896 0.67692941 0.61733508\n\t\t 0.47328323 0.77241802 0.42352504 0.64215201 0.62992543 0.43684644 0.59023082 0.58787233\n\t\t 0.55320305 0.48858732 0.65903956 0.57179487 0.071542956 0.85187769 0.51883125 0.29323032\n\t\t 0.70286334 0.64807349;\n\tsetAttr \".n[1162:1327]\" -type \"float3\"  0.36823654 0.34183237 0.86461115 0.18791512\n\t\t 0.450039 0.87301373 0.29323032 0.70286334 0.64807349 0.40082896 0.67692941 0.61733508\n\t\t 0.41955471 0.42022085 0.80460447 0.36823654 0.34183237 0.86461115 0.40082896 0.67692941\n\t\t 0.61733508 0.48858732 0.65903956 0.57179487 0.47015631 0.50526619 0.723643 0.41955471\n\t\t 0.42022085 0.80460447 0.48858732 0.65903956 0.57179487 0.59023082 0.58787233 0.55320305\n\t\t 0.53904778 0.5399918 0.64640278 0.47015631 0.50526619 0.723643 0.99974811 0.013720243\n\t\t 0.017759824 0.99547726 0.024873598 0.091686383 0.98296863 0.10439459 0.15124311 0.99708742\n\t\t 0.070412464 0.029302692 0.99547726 0.024873598 0.091686383 0.96028835 0.050765008\n\t\t 0.27435243 0.92018741 0.15794241 0.35820296 0.98296863 0.10439459 0.15124311 0.96028835\n\t\t 0.050765008 0.27435243 0.81961709 0.10886914 0.56247246 0.69550043 0.28612822 0.65909767\n\t\t 0.92018741 0.15794241 0.35820296 0.81961709 0.10886914 0.56247246 0.45148671 0.17860952\n\t\t 0.87421876 0.33373886 0.36204517 0.87036872 0.69550043 0.28612822 0.65909767 0.99708742\n\t\t 0.070412464 0.029302692 0.98296863 0.10439459 0.15124311 0.94618177 0.23124655 0.22641793\n\t\t 0.97531074 0.20981567 0.068893187 0.98296863 0.10439459 0.15124311 0.92018741 0.15794241\n\t\t 0.35820296 0.88215464 0.26969048 0.38609627 0.94618177 0.23124655 0.22641793 0.92018741\n\t\t 0.15794241 0.35820296 0.69550043 0.28612822 0.65909767 0.70053977 0.36680257 0.61212742\n\t\t 0.88215464 0.26969048 0.38609627 0.69550043 0.28612822 0.65909767 0.33373886 0.36204517\n\t\t 0.87036872 0.42852461 0.40496579 0.8076939 0.70053977 0.36680257 0.61212742 0.97531074\n\t\t 0.20981567 0.068893187 0.94618177 0.23124655 0.22641793 0.84320188 0.4337101 0.31765717\n\t\t 0.89029491 0.43575922 0.13224526 0.94618177 0.23124655 0.22641793 0.88215464 0.26969048\n\t\t 0.38609627 0.78402901 0.4501501 0.4273915 0.84320188 0.4337101 0.31765717 0.88215464\n\t\t 0.26969048 0.38609627 0.70053977 0.36680257 0.61212742 0.66667873 0.47729796 0.57247359\n\t\t 0.78402901 0.4501501 0.4273915 0.70053977 0.36680257 0.61212742 0.42852461 0.40496579\n\t\t 0.8076939 0.50821328 0.46608481 0.72421288 0.66667873 0.47729796 0.57247359 0.89029491\n\t\t 0.43575922 0.13224526 0.84320188 0.4337101 0.31765717 0.66899633 0.65320671 0.35463348\n\t\t 0.70013368 0.69332802 0.17061366 0.84320188 0.4337101 0.31765717 0.78402901 0.4501501\n\t\t 0.4273915 0.64215201 0.62992543 0.43684644 0.66899633 0.65320671 0.35463348 0.78402901\n\t\t 0.4501501 0.4273915 0.66667873 0.47729796 0.57247359 0.59023082 0.58787233 0.55320305\n\t\t 0.64215201 0.62992543 0.43684644 0.66667873 0.47729796 0.57247359 0.50821328 0.46608481\n\t\t 0.72421288 0.53904778 0.5399918 0.64640278 0.59023082 0.58787233 0.55320305 0.010986734\n\t\t 0.011021238 0.99987894 0.017907994 0.047466539 0.9987123 0.15989964 0.03067988 0.98665637\n\t\t 0.046701144 0.018361509 0.99874014 0.017907994 0.047466539 0.9987123 -0.042793121\n\t\t 0.21579731 0.97549993 0.10256903 0.16241236 0.98137754 0.15989964 0.03067988 0.98665637\n\t\t -0.042793121 0.21579731 0.97549993 0.13534361 0.21080218 0.96811378 0.29992601 0.11656524\n\t\t 0.94681412 0.10256903 0.16241236 0.98137754 0.13534361 0.21080218 0.96811378 0.18791512\n\t\t 0.450039 0.87301373 0.36823654 0.34183237 0.86461115 0.29992601 0.11656524 0.94681412\n\t\t 0.046701144 0.018361509 0.99874014 0.15989964 0.03067988 0.98665637 0.084787779 0.19770575\n\t\t 0.97658759 0.2917555 -0.10610902 0.95058912 0.15989964 0.03067988 0.98665637 0.10256903\n\t\t 0.16241236 0.98137754 0.13604496 0.22704796 0.96433449 0.084787779 0.19770575 0.97658759\n\t\t 0.10256903 0.16241236 0.98137754 0.29992601 0.11656524 0.94681412 0.31520593 0.2345989\n\t\t 0.91956973 0.13604496 0.22704796 0.96433449 0.29992601 0.11656524 0.94681412 0.36823654\n\t\t 0.34183237 0.86461115 0.41955471 0.42022085 0.80460447 0.31520593 0.2345989 0.91956973\n\t\t 0.2917555 -0.10610902 0.95058912 0.084787779 0.19770575 0.97658759 0.098616458 0.31264421\n\t\t 0.94473726 0.28479978 0.073782347 0.95574337 0.084787779 0.19770575 0.97658759 0.13604496\n\t\t 0.22704796 0.96433449 0.20614463 0.33095849 0.92085326 0.098616458 0.31264421 0.94473726\n\t\t 0.13604496 0.22704796 0.96433449 0.31520593 0.2345989 0.91956973 0.36984995 0.3745614\n\t\t 0.85024399 0.20614463 0.33095849 0.92085326 0.31520593 0.2345989 0.91956973 0.41955471\n\t\t 0.42022085 0.80460447 0.47015631 0.50526619 0.723643 0.36984995 0.3745614 0.85024399\n\t\t 0.28479978 0.073782347 0.95574337 0.098616458 0.31264421 0.94473726 0.33373886 0.36204517\n\t\t 0.87036872 0.45148671 0.17860952 0.87421876 0.098616458 0.31264421 0.94473726 0.20614463\n\t\t 0.33095849 0.92085326 0.42852461 0.40496579 0.8076939 0.33373886 0.36204517 0.87036872\n\t\t 0.20614463 0.33095849 0.92085326 0.36984995 0.3745614 0.85024399 0.50821328 0.46608481\n\t\t 0.72421288 0.42852461 0.40496579 0.8076939 0.36984995 0.3745614 0.85024399 0.47015631\n\t\t 0.50526619 0.723643 0.53904778 0.5399918 0.64640278 0.50821328 0.46608481 0.72421288\n\t\t 0.031991981 0.99897629 0.031982847 0.051805366 0.994546 0.090522662 0.1414331 0.9812026\n\t\t 0.13129345 0.095328957 0.99385184 0.056309294 0.051805366 0.994546 0.090522662 0.065936789\n\t\t 0.97173387 0.22668406 0.16358349 0.95913202 0.23088177 0.1414331 0.9812026 0.13129345\n\t\t 0.065936789 0.97173387 0.22668406 0.057649624 0.89076519 0.45079237 0.14820333 0.88527781\n\t\t 0.44081613 0.16358349 0.95913202 0.23088177 0.057649624 0.89076519 0.45079237 0.054154959\n\t\t 0.70304847 0.70907682 0.13693233 0.6938976 0.70693398 0.14820333 0.88527781 0.44081613\n\t\t 0.095328957 0.99385184 0.056309294 0.1414331 0.9812026 0.13129345 0.24412839 0.95672411\n\t\t 0.15836716 0.23029526 0.9699235 0.078819081 0.1414331 0.9812026 0.13129345 0.16358349\n\t\t 0.95913202 0.23088177 0.25076646 0.94027472 0.23021637 0.24412839 0.95672411 0.15836716;\n\tsetAttr \".n[1328:1493]\" -type \"float3\"  0.16358349 0.95913202 0.23088177 0.14820333\n\t\t 0.88527781 0.44081613 0.24422033 0.87184972 0.42454028 0.25076646 0.94027472 0.23021637\n\t\t 0.14820333 0.88527781 0.44081613 0.13693233 0.6938976 0.70693398 0.23553179 0.68199813\n\t\t 0.69238961 0.24422033 0.87184972 0.42454028 0.23029526 0.9699235 0.078819081 0.24412839\n\t\t 0.95672411 0.15836716 0.43097326 0.88990325 0.14944631 0.44563207 0.89243859 0.070465282\n\t\t 0.24412839 0.95672411 0.15836716 0.25076646 0.94027472 0.23021637 0.42117068 0.87743956\n\t\t 0.22959748 0.43097326 0.88990325 0.14944631 0.25076646 0.94027472 0.23021637 0.24422033\n\t\t 0.87184972 0.42454028 0.41475341 0.81122351 0.41218448 0.42117068 0.87743956 0.22959748\n\t\t 0.24422033 0.87184972 0.42454028 0.23553179 0.68199813 0.69238961 0.40728733 0.64465576\n\t\t 0.64694363 0.41475341 0.81122351 0.41218448 0.44563207 0.89243859 0.070465282 0.43097326\n\t\t 0.88990325 0.14944631 0.69389933 0.70692968 0.13694601 0.70305347 0.70907146 0.054162774\n\t\t 0.43097326 0.88990325 0.14944631 0.42117068 0.87743956 0.22959748 0.68199742 0.69239086\n\t\t 0.23553021 0.69389933 0.70692968 0.13694601 0.42117068 0.87743956 0.22959748 0.41475341\n\t\t 0.81122351 0.41218448 0.64466453 0.64694488 0.40727144 0.68199742 0.69239086 0.23553021\n\t\t 0.41475341 0.81122351 0.41218448 0.40728733 0.64465576 0.64694363 0.57735705 0.57734716\n\t\t 0.57734656 0.64466453 0.64694488 0.40727144 0.031981163 0.03199112 0.99897635 0.090520583\n\t\t 0.051804159 0.99454629 0.13129222 0.14142714 0.98120373 0.056309257 0.095324837 0.99385226\n\t\t 0.090520583 0.051804159 0.99454629 0.22668289 0.065930575 0.97173452 0.23088008 0.16357709\n\t\t 0.95913345 0.13129222 0.14142714 0.98120373 0.22668289 0.065930575 0.97173452 0.45079091\n\t\t 0.057648107 0.89076614 0.4408187 0.14820793 0.88527584 0.23088008 0.16357709 0.95913345\n\t\t 0.45079091 0.057648107 0.89076614 0.70907658 0.054161049 0.70304835 0.7069329 0.13694374\n\t\t 0.69389647 0.4408187 0.14820793 0.88527584 0.056309257 0.095324837 0.99385226 0.13129222\n\t\t 0.14142714 0.98120373 0.15836439 0.24412565 0.9567253 0.078818031 0.23029679 0.9699232\n\t\t 0.13129222 0.14142714 0.98120373 0.23088008 0.16357709 0.95913345 0.23021825 0.25076404\n\t\t 0.94027495 0.15836439 0.24412565 0.9567253 0.23088008 0.16357709 0.95913345 0.4408187\n\t\t 0.14820793 0.88527584 0.42454848 0.24422255 0.87184507 0.23021825 0.25076404 0.94027495\n\t\t 0.4408187 0.14820793 0.88527584 0.7069329 0.13694374 0.69389647 0.6923905 0.23553586\n\t\t 0.68199581 0.42454848 0.24422255 0.87184507 0.078818031 0.23029679 0.9699232 0.15836439\n\t\t 0.24412565 0.9567253 0.14943689 0.43096966 0.88990664 0.070459679 0.44563305 0.89243865\n\t\t 0.15836439 0.24412565 0.9567253 0.23021825 0.25076404 0.94027495 0.22959895 0.42116135\n\t\t 0.87744373 0.14943689 0.43096966 0.88990664 0.23021825 0.25076404 0.94027495 0.42454848\n\t\t 0.24422255 0.87184507 0.41219249 0.41474155 0.81122541 0.22959895 0.42116135 0.87744373\n\t\t 0.42454848 0.24422255 0.87184507 0.6923905 0.23553586 0.68199581 0.64694691 0.40728283\n\t\t 0.64465523 0.41219249 0.41474155 0.81122541 0.070459679 0.44563305 0.89243865 0.14943689\n\t\t 0.43096966 0.88990664 0.13693233 0.6938976 0.70693398 0.054154959 0.70304847 0.70907682\n\t\t 0.14943689 0.43096966 0.88990664 0.22959895 0.42116135 0.87744373 0.23553179 0.68199813\n\t\t 0.69238961 0.13693233 0.6938976 0.70693398 0.22959895 0.42116135 0.87744373 0.41219249\n\t\t 0.41474155 0.81122541 0.40728733 0.64465576 0.64694363 0.23553179 0.68199813 0.69238961\n\t\t 0.41219249 0.41474155 0.81122541 0.64694691 0.40728283 0.64465523 0.57735705 0.57734716\n\t\t 0.57734656 0.40728733 0.64465576 0.64694363 0.99897665 0.031978734 0.031985421 0.99454653\n\t\t 0.090519816 0.051802196 0.98120362 0.13129261 0.14142759 0.99385267 0.056308951 0.095321521\n\t\t 0.99454653 0.090519816 0.051802196 0.97173357 0.22668634 0.065933548 0.95913118 0.23088604\n\t\t 0.16358191 0.98120362 0.13129261 0.14142759 0.97173357 0.22668634 0.065933548 0.89076537\n\t\t 0.45079213 0.057649925 0.88527369 0.44082183 0.14821132 0.95913118 0.23088604 0.16358191\n\t\t 0.89076537 0.45079213 0.057649925 0.70305347 0.70907146 0.054162774 0.69389933 0.70692968\n\t\t 0.13694601 0.88527369 0.44082183 0.14821132 0.99385267 0.056308951 0.095321521 0.98120362\n\t\t 0.13129261 0.14142759 0.95672464 0.15836857 0.24412575 0.9699229 0.078820467 0.2302976\n\t\t 0.98120362 0.13129261 0.14142759 0.95913118 0.23088604 0.16358191 0.94027543 0.23022039\n\t\t 0.25076064 0.95672464 0.15836857 0.24412575 0.95913118 0.23088604 0.16358191 0.88527369\n\t\t 0.44082183 0.14821132 0.87184513 0.4245508 0.24421839 0.94027543 0.23022039 0.25076064\n\t\t 0.88527369 0.44082183 0.14821132 0.69389933 0.70692968 0.13694601 0.68199742 0.69239086\n\t\t 0.23553021 0.87184513 0.4245508 0.24421839 0.9699229 0.078820467 0.2302976 0.95672464\n\t\t 0.15836857 0.24412575 0.88990486 0.14944564 0.43097016 0.89243883 0.070463724 0.44563195\n\t\t 0.95672464 0.15836857 0.24412575 0.94027543 0.23022039 0.25076064 0.87744409 0.22960092\n\t\t 0.42115971 0.88990486 0.14944564 0.43097016 0.94027543 0.23022039 0.25076064 0.87184513\n\t\t 0.4245508 0.24421839 0.81122845 0.41219538 0.41473287 0.87744409 0.22960092 0.42115971\n\t\t 0.87184513 0.4245508 0.24421839 0.68199742 0.69239086 0.23553021 0.64466453 0.64694488\n\t\t 0.40727144 0.81122845 0.41219538 0.41473287 0.89243883 0.070463724 0.44563195 0.88990486\n\t\t 0.14944564 0.43097016 0.7069329 0.13694374 0.69389647 0.70907658 0.054161049 0.70304835\n\t\t 0.88990486 0.14944564 0.43097016 0.87744409 0.22960092 0.42115971 0.6923905 0.23553586\n\t\t 0.68199581 0.7069329 0.13694374 0.69389647 0.87744409 0.22960092 0.42115971 0.81122845\n\t\t 0.41219538 0.41473287 0.64694691 0.40728283 0.64465523 0.6923905 0.23553586 0.68199581\n\t\t 0.81122845 0.41219538 0.41473287 0.64466453 0.64694488 0.40727144;\n\tsetAttr \".n[1494:1659]\" -type \"float3\"  0.57735705 0.57734716 0.57734656 0.64694691\n\t\t 0.40728283 0.64465523 0.013721424 0.01776154 0.99974811 0.024874058 0.091687135 0.9954772\n\t\t 0.10439857 0.15124619 0.98296767 0.070414588 0.02930446 0.9970873 0.024874058 0.091687135\n\t\t 0.9954772 0.050763592 0.27434993 0.96028918 0.15794696 0.35820872 0.92018437 0.10439857\n\t\t 0.15124619 0.98296767 0.050763592 0.27434993 0.96028918 0.10886873 0.56247205 0.81961745\n\t\t 0.28613484 0.65909672 0.69549865 0.15794696 0.35820872 0.92018437 0.10886873 0.56247205\n\t\t 0.81961745 0.17861854 0.8742066 0.45150638 0.36206207 0.87035805 0.3337484 0.28613484\n\t\t 0.65909672 0.69549865 0.070414588 0.02930446 0.9970873 0.10439857 0.15124619 0.98296767\n\t\t 0.23125471 0.22642331 0.94617844 0.20981896 0.068896167 0.97530985 0.10439857 0.15124619\n\t\t 0.98296767 0.15794696 0.35820872 0.92018437 0.26970154 0.38610777 0.88214618 0.23125471\n\t\t 0.22642331 0.94617844 0.15794696 0.35820872 0.92018437 0.28613484 0.65909672 0.69549865\n\t\t 0.36680421 0.61213785 0.70052975 0.26970154 0.38610777 0.88214618 0.28613484 0.65909672\n\t\t 0.69549865 0.36206207 0.87035805 0.3337484 0.40497747 0.80769587 0.4285098 0.36680421\n\t\t 0.61213785 0.70052975 0.20981896 0.068896167 0.97530985 0.23125471 0.22642331 0.94617844\n\t\t 0.43371665 0.3176569 0.84319854 0.43576148 0.13224491 0.89029384 0.23125471 0.22642331\n\t\t 0.94617844 0.26970154 0.38610777 0.88214618 0.45016024 0.42739141 0.78402317 0.43371665\n\t\t 0.3176569 0.84319854 0.26970154 0.38610777 0.88214618 0.36680421 0.61213785 0.70052975\n\t\t 0.47729203 0.57249057 0.66666847 0.45016024 0.42739141 0.78402317 0.36680421 0.61213785\n\t\t 0.70052975 0.40497747 0.80769587 0.4285098 0.46609074 0.72422665 0.50818819 0.47729203\n\t\t 0.57249057 0.66666847 0.43576148 0.13224491 0.89029384 0.43371665 0.3176569 0.84319854\n\t\t 0.6532023 0.35463029 0.66900241 0.69332677 0.17061342 0.70013499 0.43371665 0.3176569\n\t\t 0.84319854 0.45016024 0.42739141 0.78402317 0.62993014 0.43684846 0.64214587 0.6532023\n\t\t 0.35463029 0.66900241 0.45016024 0.42739141 0.78402317 0.47729203 0.57249057 0.66666847\n\t\t 0.58787209 0.55322027 0.59021497 0.62993014 0.43684846 0.64214587 0.47729203 0.57249057\n\t\t 0.66666847 0.46609074 0.72422665 0.50818819 0.53998172 0.64642495 0.53903115 0.58787209\n\t\t 0.55322027 0.59021497 0.011023062 0.99987882 0.01099002 0.04777452 0.99869764 0.017903455\n\t\t 0.030713793 0.98665357 0.15991034 0.018687595 0.998734 0.046701387 0.04777452 0.99869764\n\t\t 0.017903455 0.21576872 0.97550559 -0.042809479 0.16241233 0.98137665 0.10257719 0.030713793\n\t\t 0.98665357 0.15991034 0.21576872 0.97550559 -0.042809479 0.21073402 0.9681322 0.13531873\n\t\t 0.11653718 0.9468205 0.29991698 0.16241233 0.98137665 0.10257719 0.21073402 0.9681322\n\t\t 0.13531873 0.44994935 0.87306178 0.18790621 0.3418265 0.86461055 0.36824346 0.11653718\n\t\t 0.9468205 0.29991698 0.018687595 0.998734 0.046701387 0.030713793 0.98665357 0.15991034\n\t\t 0.1976663 0.97659343 0.084812611 -0.10610655 0.95058286 0.2917766 0.030713793 0.98665357\n\t\t 0.15991034 0.16241233 0.98137665 0.10257719 0.22700255 0.96434397 0.13605328 0.1976663\n\t\t 0.97659343 0.084812611 0.16241233 0.98137665 0.10257719 0.11653718 0.9468205 0.29991698\n\t\t 0.23461778 0.91957057 0.31518966 0.22700255 0.96434397 0.13605328 0.11653718 0.9468205\n\t\t 0.29991698 0.3418265 0.86461055 0.36824346 0.42023775 0.80459815 0.41954976 0.23461778\n\t\t 0.91957057 0.31518966 -0.10610655 0.95058286 0.2917766 0.1976663 0.97659343 0.084812611\n\t\t 0.31264004 0.94473583 0.098643258 0.073767804 0.95574594 0.28479472 0.1976663 0.97659343\n\t\t 0.084812611 0.22700255 0.96434397 0.13605328 0.33098808 0.92084765 0.20612286 0.31264004\n\t\t 0.94473583 0.098643258 0.22700255 0.96434397 0.13605328 0.23461778 0.91957057 0.31518966\n\t\t 0.37460977 0.85023576 0.36981985 0.33098808 0.92084765 0.20612286 0.23461778 0.91957057\n\t\t 0.31518966 0.42023775 0.80459815 0.41954976 0.5052923 0.72363901 0.47013426 0.37460977\n\t\t 0.85023576 0.36981985 0.073767804 0.95574594 0.28479472 0.31264004 0.94473583 0.098643258\n\t\t 0.36206207 0.87035805 0.3337484 0.17861854 0.8742066 0.45150638 0.31264004 0.94473583\n\t\t 0.098643258 0.33098808 0.92084765 0.20612286 0.40497747 0.80769587 0.4285098 0.36206207\n\t\t 0.87035805 0.3337484 0.33098808 0.92084765 0.20612286 0.37460977 0.85023576 0.36981985\n\t\t 0.46609074 0.72422665 0.50818819 0.40497747 0.80769587 0.4285098 0.37460977 0.85023576\n\t\t 0.36981985 0.5052923 0.72363901 0.47013426 0.53998172 0.64642495 0.53903115 0.46609074\n\t\t 0.72422665 0.50818819 0.99981123 0.017641522 0.0081429537 0.99756759 0.037650872\n\t\t 0.058661114 0.98676485 0.14329226 0.075909913 0.99664253 0.081829198 0.0027714812\n\t\t 0.99756759 0.037650872 0.058661114 0.97185886 0.098598786 0.2139357 0.9340021 0.25298262\n\t\t 0.25226939 0.98676485 0.14329226 0.075909913 0.97185886 0.098598786 0.2139357 0.88407338\n\t\t 0.1505965 0.44241962 0.82947427 0.32661399 0.45309564 0.9340021 0.25298262 0.25226939\n\t\t 0.88407338 0.1505965 0.44241962 0.69332677 0.17061342 0.70013499 0.6532023 0.35463029\n\t\t 0.66900241 0.82947427 0.32661399 0.45309564 0.99664253 0.081829198 0.0027714812 0.98676485\n\t\t 0.14329226 0.075909913 0.93881822 0.31650493 0.1358121 0.97309172 0.23021287 0.0097261705\n\t\t 0.98676485 0.14329226 0.075909913 0.9340021 0.25298262 0.25226939 0.86426014 0.39423603\n\t\t 0.31246182 0.93881822 0.31650493 0.1358121 0.9340021 0.25298262 0.25226939 0.82947427\n\t\t 0.32661399 0.45309564 0.77241218 0.42352778 0.47329021 0.86426014 0.39423603 0.31246182\n\t\t 0.82947427 0.32661399 0.45309564 0.6532023 0.35463029 0.66900241 0.62993014 0.43684846\n\t\t 0.64214587 0.77241218 0.42352778 0.47329021 0.97309172 0.23021287 0.0097261705 0.93881822\n\t\t 0.31650493 0.1358121 0.70285672 0.64807796 0.29323599 0.85182637 0.51891559 0.07154268;\n\tsetAttr \".n[1660:1825]\" -type \"float3\"  0.93881822 0.31650493 0.1358121 0.86426014\n\t\t 0.39423603 0.31246182 0.6769163 0.61734188 0.40084076 0.70285672 0.64807796 0.29323599\n\t\t 0.86426014 0.39423603 0.31246182 0.77241218 0.42352778 0.47329021 0.65903574 0.5718025\n\t\t 0.48858336 0.6769163 0.61734188 0.40084076 0.77241218 0.42352778 0.47329021 0.62993014\n\t\t 0.43684846 0.64214587 0.58787209 0.55322027 0.59021497 0.65903574 0.5718025 0.48858336\n\t\t 0.85182637 0.51891559 0.07154268 0.70285672 0.64807796 0.29323599 0.3418265 0.86461055\n\t\t 0.36824346 0.44994935 0.87306178 0.18790621 0.70285672 0.64807796 0.29323599 0.6769163\n\t\t 0.61734188 0.40084076 0.42023775 0.80459815 0.41954976 0.3418265 0.86461055 0.36824346\n\t\t 0.6769163 0.61734188 0.40084076 0.65903574 0.5718025 0.48858336 0.5052923 0.72363901\n\t\t 0.47013426 0.42023775 0.80459815 0.41954976 0.65903574 0.5718025 0.48858336 0.58787209\n\t\t 0.55322027 0.59021497 0.53998172 0.64642495 0.53903115 0.5052923 0.72363901 0.47013426\n\t\t 0.99897629 0.03198285 0.031991985 0.994546 0.090522446 0.051805694 0.98120391 0.13129154\n\t\t 0.14142607 0.99385226 0.056309637 0.095324546 0.994546 0.090522446 0.051805694 0.97173399\n\t\t 0.2266849 0.06593176 0.95913285 0.23088226 0.16357701 0.98120391 0.13129154 0.14142607\n\t\t 0.97173399 0.2266849 0.06593176 0.89076543 0.45079216 0.057648752 0.88527417 0.44082212\n\t\t 0.14820775 0.95913285 0.23088226 0.16357701 0.89076543 0.45079216 0.057648752 0.70305377\n\t\t 0.70907098 0.054163501 0.69389939 0.7069301 0.1369434 0.88527417 0.44082212 0.14820775\n\t\t 0.99385226 0.056309637 0.095324546 0.98120391 0.13129154 0.14142607 0.95672596 0.15836413\n\t\t 0.24412319 0.96992326 0.078819089 0.23029608 0.98120391 0.13129154 0.14142607 0.95913285\n\t\t 0.23088226 0.16357701 0.94027632 0.23021731 0.25075963 0.95672596 0.15836413 0.24412319\n\t\t 0.95913285 0.23088226 0.16357701 0.88527417 0.44082212 0.14820775 0.87184525 0.42455164\n\t\t 0.24421668 0.94027632 0.23021731 0.25075963 0.88527417 0.44082212 0.14820775 0.69389939\n\t\t 0.7069301 0.1369434 0.6819967 0.69239241 0.23552743 0.87184525 0.42455164 0.24421668\n\t\t 0.96992326 0.078819089 0.23029608 0.95672596 0.15836413 0.24412319 0.88990533 0.14944029\n\t\t 0.43097112 0.89243811 0.070462786 0.44563353 0.95672596 0.15836413 0.24412319 0.94027632\n\t\t 0.23021731 0.25075963 0.87744486 0.22959691 0.4211601 0.88990533 0.14944029 0.43097112\n\t\t 0.94027632 0.23021731 0.25075963 0.87184525 0.42455164 0.24421668 0.81122559 0.41219676\n\t\t 0.41473696 0.87744486 0.22959691 0.4211601 0.87184525 0.42455164 0.24421668 0.6819967\n\t\t 0.69239241 0.23552743 0.64466107 0.64694726 0.40727296 0.81122559 0.41219676 0.41473696\n\t\t 0.89243811 0.070462786 0.44563353 0.88990533 0.14944029 0.43097112 0.70693457 0.13693903\n\t\t 0.6938957 0.70907545 0.054160427 0.70304966 0.88990533 0.14944029 0.43097112 0.87744486\n\t\t 0.22959691 0.4211601 0.69239402 0.2355293 0.68199456 0.70693457 0.13693903 0.6938957\n\t\t 0.87744486 0.22959691 0.4211601 0.81122559 0.41219676 0.41473696 0.64694303 0.40728453\n\t\t 0.64465797 0.69239402 0.2355293 0.68199456 0.81122559 0.41219676 0.41473696 0.64466107\n\t\t 0.64694726 0.40727296 0.57735056 0.57735366 0.57734662 0.64694303 0.40728453 0.64465797\n\t\t 0.03199216 0.99897629 0.031982776 0.051805425 0.99454606 0.090522334 0.14143397 0.98120248\n\t\t 0.13129361 0.095329449 0.99385178 0.056309436 0.051805425 0.99454606 0.090522334\n\t\t 0.065936796 0.97173387 0.22668406 0.16358458 0.95913178 0.23088185 0.14143397 0.98120248\n\t\t 0.13129361 0.065936796 0.97173387 0.22668406 0.057649367 0.89076579 0.45079139 0.14820167\n\t\t 0.88527858 0.44081524 0.16358458 0.95913178 0.23088185 0.057649367 0.89076579 0.45079139\n\t\t 0.054154724 0.70304972 0.70907575 0.1369305 0.69389874 0.7069332 0.14820167 0.88527858\n\t\t 0.44081524 0.095329449 0.99385178 0.056309436 0.14143397 0.98120248 0.13129361 0.24412812\n\t\t 0.95672423 0.15836719 0.23029493 0.96992362 0.078818984 0.14143397 0.98120248 0.13129361\n\t\t 0.16358458 0.95913178 0.23088185 0.25076595 0.94027507 0.23021558 0.24412812 0.95672423\n\t\t 0.15836719 0.16358458 0.95913178 0.23088185 0.14820167 0.88527858 0.44081524 0.24422054\n\t\t 0.87185025 0.424539 0.25076595 0.94027507 0.23021558 0.14820167 0.88527858 0.44081524\n\t\t 0.1369305 0.69389874 0.7069332 0.23553441 0.68199891 0.69238794 0.24422054 0.87185025\n\t\t 0.424539 0.23029493 0.96992362 0.078818984 0.24412812 0.95672423 0.15836719 0.43097454\n\t\t 0.88990283 0.1494455 0.4456327 0.89243829 0.070464768 0.24412812 0.95672423 0.15836719\n\t\t 0.25076595 0.94027507 0.23021558 0.42116907 0.87744093 0.22959571 0.43097454 0.88990283\n\t\t 0.1494455 0.25076595 0.94027507 0.23021558 0.24422054 0.87185025 0.424539 0.4147532\n\t\t 0.81122446 0.41218275 0.42116907 0.87744093 0.22959571 0.24422054 0.87185025 0.424539\n\t\t 0.23553441 0.68199891 0.69238794 0.40728995 0.64465702 0.64694059 0.4147532 0.81122446\n\t\t 0.41218275 0.4456327 0.89243829 0.070464768 0.43097454 0.88990283 0.1494455 0.69389939\n\t\t 0.7069301 0.1369434 0.70305377 0.70907098 0.054163501 0.43097454 0.88990283 0.1494455\n\t\t 0.42116907 0.87744093 0.22959571 0.6819967 0.69239241 0.23552743 0.69389939 0.7069301\n\t\t 0.1369434 0.42116907 0.87744093 0.22959571 0.4147532 0.81122446 0.41218275 0.64466107\n\t\t 0.64694726 0.40727296 0.6819967 0.69239241 0.23552743 0.4147532 0.81122446 0.41218275\n\t\t 0.40728995 0.64465702 0.64694059 0.57735056 0.57735366 0.57734662 0.64466107 0.64694726\n\t\t 0.40727296 0.031982161 0.031991817 0.99897629 0.090521351 0.051805511 0.99454618\n\t\t 0.13129133 0.14142683 0.98120385 0.056309149 0.095324904 0.99385232 0.090521351 0.051805511\n\t\t 0.99454618 0.22668441 0.06593132 0.97173411 0.23088236 0.16357671 0.95913291 0.13129133\n\t\t 0.14142683 0.98120385 0.22668441 0.06593132 0.97173411 0.45079225 0.057647049 0.89076549;\n\tsetAttr \".n[1826:1991]\" -type \"float3\"  0.44082111 0.14820537 0.88527507 0.23088236\n\t\t 0.16357671 0.95913291 0.45079225 0.057647049 0.89076549 0.70907545 0.054160427 0.70304966\n\t\t 0.70693457 0.13693903 0.6938957 0.44082111 0.14820537 0.88527507 0.056309149 0.095324904\n\t\t 0.99385232 0.13129133 0.14142683 0.98120385 0.15836339 0.2441244 0.95672578 0.078818865\n\t\t 0.23029651 0.96992332 0.13129133 0.14142683 0.98120385 0.23088236 0.16357671 0.95913291\n\t\t 0.23021734 0.25076222 0.94027561 0.15836339 0.2441244 0.95672578 0.23088236 0.16357671\n\t\t 0.95913291 0.44082111 0.14820537 0.88527507 0.42455128 0.24421799 0.87184501 0.23021734\n\t\t 0.25076222 0.94027561 0.44082111 0.14820537 0.88527507 0.70693457 0.13693903 0.6938957\n\t\t 0.69239402 0.2355293 0.68199456 0.42455128 0.24421799 0.87184501 0.078818865 0.23029651\n\t\t 0.96992332 0.15836339 0.2441244 0.95672578 0.14943662 0.43097022 0.88990641 0.070460789\n\t\t 0.44563317 0.89243853 0.15836339 0.2441244 0.95672578 0.23021734 0.25076222 0.94027561\n\t\t 0.22959991 0.42116097 0.87744361 0.14943662 0.43097022 0.88990641 0.23021734 0.25076222\n\t\t 0.94027561 0.42455128 0.24421799 0.87184501 0.41219401 0.41474161 0.8112247 0.22959991\n\t\t 0.42116097 0.87744361 0.42455128 0.24421799 0.87184501 0.69239402 0.2355293 0.68199456\n\t\t 0.64694303 0.40728453 0.64465797 0.41219401 0.41474161 0.8112247 0.070460789 0.44563317\n\t\t 0.89243853 0.14943662 0.43097022 0.88990641 0.1369305 0.69389874 0.7069332 0.054154724\n\t\t 0.70304972 0.70907575 0.14943662 0.43097022 0.88990641 0.22959991 0.42116097 0.87744361\n\t\t 0.23553441 0.68199891 0.69238794 0.1369305 0.69389874 0.7069332 0.22959991 0.42116097\n\t\t 0.87744361 0.41219401 0.41474161 0.8112247 0.40728995 0.64465702 0.64694059 0.23553441\n\t\t 0.68199891 0.69238794 0.41219401 0.41474161 0.8112247 0.64694303 0.40728453 0.64465797\n\t\t 0.57735056 0.57735366 0.57734662 0.40728995 0.64465702 0.64694059 0.99981117 0.017646123\n\t\t 0.0081453389 0.99756706 0.037654892 0.058667872 0.9867633 0.14329834 0.075919218\n\t\t 0.99664211 0.081833832 0.0027763299 0.99756706 0.037654892 0.058667872 0.97185832\n\t\t 0.098601043 0.21393782 0.9339996 0.25298989 0.2522715 0.9867633 0.14329834 0.075919218\n\t\t 0.97185832 0.098601043 0.21393782 0.88407433 0.15059772 0.44241706 0.82947528 0.3266162\n\t\t 0.45309231 0.9339996 0.25298989 0.2522715 0.88407433 0.15059772 0.44241706 0.69332719\n\t\t 0.1706149 0.70013434 0.6532051 0.3546311 0.66899914 0.82947528 0.3266162 0.45309231\n\t\t 0.99664211 0.081833832 0.0027763299 0.9867633 0.14329834 0.075919218 0.93881273 0.31651786\n\t\t 0.13582054 0.97309101 0.23021573 0.0097304471 0.9867633 0.14329834 0.075919218 0.9339996\n\t\t 0.25298989 0.2522715 0.8642565 0.39424157 0.31246483 0.93881273 0.31651786 0.13582054\n\t\t 0.9339996 0.25298989 0.2522715 0.82947528 0.3266162 0.45309231 0.77241528 0.42353013\n\t\t 0.47328293 0.8642565 0.39424157 0.31246483 0.82947528 0.3266162 0.45309231 0.6532051\n\t\t 0.3546311 0.66899914 0.62993258 0.43684909 0.64214325 0.77241528 0.42353013 0.47328293\n\t\t 0.97309101 0.23021573 0.0097304471 0.93881273 0.31651786 0.13582054 0.70284617 0.64808398\n\t\t 0.29324794 0.85182196 0.51892251 0.071546279 0.93881273 0.31651786 0.13582054 0.8642565\n\t\t 0.39424157 0.31246483 0.67691714 0.6173417 0.40083972 0.70284617 0.64808398 0.29324794\n\t\t 0.8642565 0.39424157 0.31246483 0.77241528 0.42353013 0.47328293 0.65903997 0.57179826\n\t\t 0.48858279 0.67691714 0.6173417 0.40083972 0.77241528 0.42353013 0.47328293 0.62993258\n\t\t 0.43684909 0.64214325 0.58787805 0.55320954 0.59021908 0.65903997 0.57179826 0.48858279\n\t\t 0.85182196 0.51892251 0.071546279 0.70284617 0.64808398 0.29324794 0.34181708 0.86461031\n\t\t 0.36825275 0.44993514 0.87306768 0.18791261 0.70284617 0.64808398 0.29324794 0.67691714\n\t\t 0.6173417 0.40083972 0.42023289 0.80459899 0.41955316 0.34181708 0.86461031 0.36825275\n\t\t 0.67691714 0.6173417 0.40083972 0.65903997 0.57179826 0.48858279 0.50527334 0.72363472\n\t\t 0.47016141 0.42023289 0.80459899 0.41955316 0.65903997 0.57179826 0.48858279 0.58787805\n\t\t 0.55320954 0.59021908 0.53998512 0.64640403 0.53905267 0.50527334 0.72363472 0.47016141\n\t\t 0.013720209 0.017757969 0.99974823 0.024872972 0.091684751 0.99547738 0.10439344\n\t\t 0.15124319 0.98296863 0.070412405 0.029303506 0.99708748 0.024872972 0.091684751\n\t\t 0.99547738 0.050762758 0.27434906 0.96028936 0.15794343 0.3582001 0.92018831 0.10439344\n\t\t 0.15124319 0.98296863 0.050762758 0.27434906 0.96028936 0.1088697 0.5624674 0.81962043\n\t\t 0.28613016 0.65908962 0.69550723 0.15794343 0.3582001 0.92018831 0.1088697 0.5624674\n\t\t 0.81962043 0.17860825 0.87420791 0.45150813 0.36205223 0.87036079 0.33375174 0.28613016\n\t\t 0.65908962 0.69550723 0.070412405 0.029303506 0.99708748 0.10439344 0.15124319 0.98296863\n\t\t 0.2312482 0.22641933 0.946181 0.20981562 0.068895064 0.97531056 0.10439344 0.15124319\n\t\t 0.98296863 0.15794343 0.3582001 0.92018831 0.26969185 0.38610157 0.8821519 0.2312482\n\t\t 0.22641933 0.946181 0.15794343 0.3582001 0.92018831 0.28613016 0.65908962 0.69550723\n\t\t 0.36681065 0.61213553 0.70052844 0.26969185 0.38610157 0.8821519 0.28613016 0.65908962\n\t\t 0.69550723 0.36205223 0.87036079 0.33375174 0.40497679 0.80770117 0.42850026 0.36681065\n\t\t 0.61213553 0.70052844 0.20981562 0.068895064 0.97531056 0.2312482 0.22641933 0.946181\n\t\t 0.43371603 0.31765687 0.84319896 0.43576053 0.13224776 0.89029402 0.2312482 0.22641933\n\t\t 0.946181 0.26969185 0.38610157 0.8821519 0.45015889 0.42739064 0.78402436 0.43371603\n\t\t 0.31765687 0.84319896 0.26969185 0.38610157 0.8821519 0.36681065 0.61213553 0.70052844\n\t\t 0.47730333 0.57248187 0.66666782 0.45015889 0.42739064 0.78402436 0.36681065 0.61213553\n\t\t 0.70052844 0.40497679 0.80770117 0.42850026 0.46608254 0.72421986 0.50820535 0.47730333\n\t\t 0.57248187 0.66666782;\n\tsetAttr \".n[1992:2157]\" -type \"float3\"  0.43576053 0.13224776 0.89029402 0.43371603\n\t\t 0.31765687 0.84319896 0.6532051 0.3546311 0.66899914 0.69332719 0.1706149 0.70013434\n\t\t 0.43371603 0.31765687 0.84319896 0.45015889 0.42739064 0.78402436 0.62993258 0.43684909\n\t\t 0.64214325 0.6532051 0.3546311 0.66899914 0.45015889 0.42739064 0.78402436 0.47730333\n\t\t 0.57248187 0.66666782 0.58787805 0.55320954 0.59021908 0.62993258 0.43684909 0.64214325\n\t\t 0.47730333 0.57248187 0.66666782 0.46608254 0.72421986 0.50820535 0.53998512 0.64640403\n\t\t 0.53905267 0.58787805 0.55320954 0.59021908 0.011022804 0.99987882 0.01099012 0.0477679\n\t\t 0.99869776 0.01791483 0.030683909 0.98665774 0.15989071 0.018682022 0.99873364 0.046712767\n\t\t 0.0477679 0.99869776 0.01791483 0.21573615 0.97551262 -0.042814303 0.16241089 0.98137563\n\t\t 0.10258874 0.030683909 0.98665774 0.15989071 0.21573615 0.97551262 -0.042814303 0.21073201\n\t\t 0.9681319 0.13532425 0.11652295 0.94681966 0.29992497 0.16241089 0.98137563 0.10258874\n\t\t 0.21073201 0.9681319 0.13532425 0.44993514 0.87306768 0.18791261 0.34181708 0.86461031\n\t\t 0.36825275 0.11652295 0.94681966 0.29992497 0.018682022 0.99873364 0.046712767 0.030683909\n\t\t 0.98665774 0.15989071 0.19766654 0.97659308 0.08481697 -0.1061015 0.95058721 0.29176435\n\t\t 0.030683909 0.98665774 0.15989071 0.16241089 0.98137563 0.10258874 0.22702557 0.96433759\n\t\t 0.1360604 0.19766654 0.97659308 0.08481697 0.16241089 0.98137563 0.10258874 0.11652295\n\t\t 0.94681966 0.29992497 0.2346247 0.91956675 0.31519562 0.22702557 0.96433759 0.1360604\n\t\t 0.11652295 0.94681966 0.29992497 0.34181708 0.86461031 0.36825275 0.42023289 0.80459899\n\t\t 0.41955316 0.2346247 0.91956675 0.31519562 -0.1061015 0.95058721 0.29176435 0.19766654\n\t\t 0.97659308 0.08481697 0.31264728 0.94473308 0.098645777 0.073765613 0.95574665 0.28479284\n\t\t 0.19766654 0.97659308 0.08481697 0.22702557 0.96433759 0.1360604 0.33098665 0.92084908\n\t\t 0.20611857 0.31264728 0.94473308 0.098645777 0.22702557 0.96433759 0.1360604 0.2346247\n\t\t 0.91956675 0.31519562 0.37458879 0.85024375 0.36982271 0.33098665 0.92084908 0.20611857\n\t\t 0.2346247 0.91956675 0.31519562 0.42023289 0.80459899 0.41955316 0.50527334 0.72363472\n\t\t 0.47016141 0.37458879 0.85024375 0.36982271 0.073765613 0.95574665 0.28479284 0.31264728\n\t\t 0.94473308 0.098645777 0.36205223 0.87036079 0.33375174 0.17860825 0.87420791 0.45150813\n\t\t 0.31264728 0.94473308 0.098645777 0.33098665 0.92084908 0.20611857 0.40497679 0.80770117\n\t\t 0.42850026 0.36205223 0.87036079 0.33375174 0.33098665 0.92084908 0.20611857 0.37458879\n\t\t 0.85024375 0.36982271 0.46608254 0.72421986 0.50820535 0.40497679 0.80770117 0.42850026\n\t\t 0.37458879 0.85024375 0.36982271 0.50527334 0.72363472 0.47016141 0.53998512 0.64640403\n\t\t 0.53905267 0.46608254 0.72421986 0.50820535 0.031989101 0.99897641 0.03198237 0.051805276\n\t\t 0.99454612 0.090522058 0.14143375 0.98120248 0.13129361 0.095327131 0.99385214 0.056309272\n\t\t 0.051805276 0.99454612 0.090522058 0.065938175 0.97173387 0.22668403 0.16358568 0.95913178\n\t\t 0.23088096 0.14143375 0.98120248 0.13129361 0.065938175 0.97173387 0.22668403 0.057649143\n\t\t 0.89076656 0.45078966 0.14820462 0.8852784 0.44081464 0.16358568 0.95913178 0.23088096\n\t\t 0.057649143 0.89076656 0.45078966 0.054153129 0.70304978 0.70907581 0.13693382 0.69389677\n\t\t 0.70693445 0.14820462 0.8852784 0.44081464 0.095327131 0.99385214 0.056309272 0.14143375\n\t\t 0.98120248 0.13129361 0.24412781 0.95672423 0.15836765 0.23029649 0.96992314 0.07881958\n\t\t 0.14143375 0.98120248 0.13129361 0.16358568 0.95913178 0.23088096 0.25076485 0.94027573\n\t\t 0.23021428 0.24412781 0.95672423 0.15836765 0.16358568 0.95913178 0.23088096 0.14820462\n\t\t 0.8852784 0.44081464 0.24422106 0.87185091 0.4245376 0.25076485 0.94027573 0.23021428\n\t\t 0.14820462 0.8852784 0.44081464 0.13693382 0.69389677 0.70693445 0.23553677 0.68199754\n\t\t 0.69238859 0.24422106 0.87185091 0.4245376 0.23029649 0.96992314 0.07881958 0.24412781\n\t\t 0.95672423 0.15836765 0.4309738 0.88990301 0.14944585 0.44563282 0.89243823 0.07046555\n\t\t 0.24412781 0.95672423 0.15836765 0.25076485 0.94027573 0.23021428 0.42116815 0.8774417\n\t\t 0.22959459 0.4309738 0.88990301 0.14944585 0.25076485 0.94027573 0.23021428 0.24422106\n\t\t 0.87185091 0.4245376 0.41475171 0.81122571 0.41218182 0.42116815 0.8774417 0.22959459\n\t\t 0.24422106 0.87185091 0.4245376 0.23553677 0.68199754 0.69238859 0.4072901 0.64465421\n\t\t 0.64694327 0.41475171 0.81122571 0.41218182 0.44563282 0.89243823 0.07046555 0.4309738\n\t\t 0.88990301 0.14944585 0.69390148 0.70692778 0.13694417 0.70305181 0.70907283 0.054165229\n\t\t 0.4309738 0.88990301 0.14944585 0.42116815 0.8774417 0.22959459 0.68199831 0.6923914\n\t\t 0.23552626 0.69390148 0.70692778 0.13694417 0.42116815 0.8774417 0.22959459 0.41475171\n\t\t 0.81122571 0.41218182 0.644665 0.64694518 0.40727034 0.68199831 0.6923914 0.23552626\n\t\t 0.41475171 0.81122571 0.41218182 0.4072901 0.64465421 0.64694327 0.57735926 0.57734603\n\t\t 0.57734549 0.644665 0.64694518 0.40727034 0.031977836 0.031985197 0.99897665 0.090519004\n\t\t 0.051800925 0.99454665 0.13129197 0.14142564 0.98120397 0.056307409 0.095319472 0.99385297\n\t\t 0.090519004 0.051800925 0.99454665 0.22668476 0.065929033 0.97173417 0.23088172 0.16357841\n\t\t 0.95913285 0.13129197 0.14142564 0.98120397 0.22668476 0.065929033 0.97173417 0.45079327\n\t\t 0.05764579 0.89076501 0.44081968 0.1482041 0.88527596 0.23088172 0.16357841 0.95913285\n\t\t 0.45079327 0.05764579 0.89076501 0.70907867 0.054160636 0.70304638 0.70693707 0.13693811\n\t\t 0.69389331 0.44081968 0.1482041 0.88527596 0.056307409 0.095319472 0.99385297 0.13129197\n\t\t 0.14142564 0.98120397 0.15836656 0.24412727 0.95672452 0.078818403 0.23029724 0.96992308\n\t\t 0.13129197 0.14142564 0.98120397 0.23088172 0.16357841 0.95913285;\n\tsetAttr \".n[2158:2323]\" -type \"float3\"  0.23021927 0.2507655 0.9402743 0.15836656\n\t\t 0.24412727 0.95672452 0.23088172 0.16357841 0.95913285 0.44081968 0.1482041 0.88527596\n\t\t 0.42454767 0.24422407 0.87184507 0.23021927 0.2507655 0.9402743 0.44081968 0.1482041\n\t\t 0.88527596 0.70693707 0.13693811 0.69389331 0.69239324 0.23553276 0.68199402 0.42454767\n\t\t 0.24422407 0.87184507 0.078818403 0.23029724 0.96992308 0.15836656 0.24412727 0.95672452\n\t\t 0.14943984 0.43096769 0.88990712 0.070460431 0.44563282 0.89243859 0.15836656 0.24412727\n\t\t 0.95672452 0.23021927 0.2507655 0.9402743 0.2296038 0.42115876 0.87744367 0.14943984\n\t\t 0.43096769 0.88990712 0.23021927 0.2507655 0.9402743 0.42454767 0.24422407 0.87184507\n\t\t 0.41219285 0.41474378 0.81122416 0.2296038 0.42115876 0.87744367 0.42454767 0.24422407\n\t\t 0.87184507 0.69239324 0.23553276 0.68199402 0.64694554 0.40728551 0.64465493 0.41219285\n\t\t 0.41474378 0.81122416 0.070460431 0.44563282 0.89243859 0.14943984 0.43096769 0.88990712\n\t\t 0.13693382 0.69389677 0.70693445 0.054153129 0.70304978 0.70907581 0.14943984 0.43096769\n\t\t 0.88990712 0.2296038 0.42115876 0.87744367 0.23553677 0.68199754 0.69238859 0.13693382\n\t\t 0.69389677 0.70693445 0.2296038 0.42115876 0.87744367 0.41219285 0.41474378 0.81122416\n\t\t 0.4072901 0.64465421 0.64694327 0.23553677 0.68199754 0.69238859 0.41219285 0.41474378\n\t\t 0.81122416 0.64694554 0.40728551 0.64465493 0.57735926 0.57734603 0.57734549 0.4072901\n\t\t 0.64465421 0.64694327 0.99897629 0.031981658 0.031991057 0.99454612 0.090521231 0.051806848\n\t\t 0.98120356 0.13129215 0.1414281 0.99385232 0.056310233 0.095323592 0.99454612 0.090521231\n\t\t 0.051806848 0.97173387 0.22668433 0.065935485 0.95913172 0.23088415 0.16358139 0.98120356\n\t\t 0.13129215 0.1414281 0.97173387 0.22668433 0.065935485 0.89076495 0.4507927 0.057652753\n\t\t 0.88527429 0.44082087 0.14821064 0.95913172 0.23088415 0.16358139 0.89076495 0.4507927\n\t\t 0.057652753 0.70305181 0.70907283 0.054165229 0.69390148 0.70692778 0.13694417 0.88527429\n\t\t 0.44082087 0.14821064 0.99385232 0.056310233 0.095323592 0.98120356 0.13129215 0.1414281\n\t\t 0.95672578 0.1583651 0.24412356 0.96992338 0.078819752 0.23029558 0.98120356 0.13129215\n\t\t 0.1414281 0.95913172 0.23088415 0.16358139 0.94027579 0.23021875 0.2507607 0.95672578\n\t\t 0.1583651 0.24412356 0.95913172 0.23088415 0.16358139 0.88527429 0.44082087 0.14821064\n\t\t 0.87184596 0.42455074 0.24421535 0.94027579 0.23021875 0.2507607 0.88527429 0.44082087\n\t\t 0.14821064 0.69390148 0.70692778 0.13694417 0.68199831 0.6923914 0.23552626 0.87184596\n\t\t 0.42455074 0.24421535 0.96992338 0.078819752 0.23029558 0.95672578 0.1583651 0.24412356\n\t\t 0.88990659 0.14944127 0.43096828 0.89243942 0.070463188 0.44563085 0.95672578 0.1583651\n\t\t 0.24412356 0.94027579 0.23021875 0.2507607 0.87744528 0.22959678 0.42115933 0.88990659\n\t\t 0.14944127 0.43096828 0.94027579 0.23021875 0.2507607 0.87184596 0.42455074 0.24421535\n\t\t 0.81122863 0.4121944 0.4147335 0.87744528 0.22959678 0.42115933 0.87184596 0.42455074\n\t\t 0.24421535 0.68199831 0.6923914 0.23552626 0.644665 0.64694518 0.40727034 0.81122863\n\t\t 0.4121944 0.4147335 0.89243942 0.070463188 0.44563085 0.88990659 0.14944127 0.43096828\n\t\t 0.70693707 0.13693811 0.69389331 0.70907867 0.054160636 0.70304638 0.88990659 0.14944127\n\t\t 0.43096828 0.87744528 0.22959678 0.42115933 0.69239324 0.23553276 0.68199402 0.70693707\n\t\t 0.13693811 0.69389331 0.87744528 0.22959678 0.42115933 0.81122863 0.4121944 0.4147335\n\t\t 0.64694554 0.40728551 0.64465493 0.69239324 0.23553276 0.68199402 0.81122863 0.4121944\n\t\t 0.4147335 0.644665 0.64694518 0.40727034 0.57735926 0.57734603 0.57734549 0.64694554\n\t\t 0.40728551 0.64465493 0.013720701 0.99974811 -0.017762007 0.024868559 0.9954775 -0.091685139\n\t\t 0.10439375 0.98296809 -0.15124711 0.070412397 0.9970873 -0.029306332 0.024868559\n\t\t 0.9954775 -0.091685139 0.050755765 0.96029073 -0.27434561 0.15794599 0.92018348 -0.35821164\n\t\t 0.10439375 0.98296809 -0.15124711 0.050755765 0.96029073 -0.27434561 0.1088658 0.81961972\n\t\t -0.56246936 0.28613332 0.69550073 -0.65909523 0.15794599 0.92018348 -0.35821164 0.1088658\n\t\t 0.81961972 -0.56246936 0.17861259 0.45151016 -0.87420601 0.3620604 0.33374918 -0.87035841\n\t\t 0.28613332 0.69550073 -0.65909523 0.070412397 0.9970873 -0.029306332 0.10439375 0.98296809\n\t\t -0.15124711 0.23125626 0.94617736 -0.22642627 0.20981513 0.9753105 -0.068899103 0.10439375\n\t\t 0.98296809 -0.15124711 0.15794599 0.92018348 -0.35821164 0.26970488 0.8821454 -0.38610733\n\t\t 0.23125626 0.94617736 -0.22642627 0.15794599 0.92018348 -0.35821164 0.28613332 0.69550073\n\t\t -0.65909523 0.36680955 0.70053053 -0.61213374 0.26970488 0.8821454 -0.38610733 0.28613332\n\t\t 0.69550073 -0.65909523 0.3620604 0.33374918 -0.87035841 0.40497309 0.4285138 -0.80769593\n\t\t 0.36680955 0.70053053 -0.61213374 0.20981513 0.9753105 -0.068899103 0.23125626 0.94617736\n\t\t -0.22642627 0.43371865 0.84319735 -0.3176578 0.43575975 0.89029479 -0.13224417 0.23125626\n\t\t 0.94617736 -0.22642627 0.26970488 0.8821454 -0.38610733 0.45016178 0.7840237 -0.42738885\n\t\t 0.43371865 0.84319735 -0.3176578 0.26970488 0.8821454 -0.38610733 0.36680955 0.70053053\n\t\t -0.61213374 0.47730109 0.66667199 -0.57247889 0.45016178 0.7840237 -0.42738885 0.36680955\n\t\t 0.70053053 -0.61213374 0.40497309 0.4285138 -0.80769593 0.46606609 0.50822169 -0.7242189\n\t\t 0.47730109 0.66667199 -0.57247889 0.43575975 0.89029479 -0.13224417 0.43371865 0.84319735\n\t\t -0.3176578 0.65320069 0.66900218 -0.35463333 0.69333202 0.70012951 -0.17061438 0.43371865\n\t\t 0.84319735 -0.3176578 0.45016178 0.7840237 -0.42738885 0.62992322 0.64215231 -0.43684906\n\t\t 0.65320069 0.66900218 -0.35463333 0.45016178 0.7840237 -0.42738885 0.47730109 0.66667199\n\t\t -0.57247889 0.58788264 0.59021717 -0.55320668 0.62992322 0.64215231 -0.43684906;\n\tsetAttr \".n[2324:2489]\" -type \"float3\"  0.47730109 0.66667199 -0.57247889 0.46606609\n\t\t 0.50822169 -0.7242189 0.53999633 0.53903794 -0.64640701 0.58788264 0.59021717 -0.55320668\n\t\t 0.011014463 0.010990391 -0.99987888 0.04759223 0.018033488 -0.99870408 0.030622883\n\t\t 0.15991621 -0.98665547 0.018507969 0.046828337 -0.99873149 0.04759223 0.018033488\n\t\t -0.99870408 0.2157318 -0.042788323 -0.97551477 0.1624199 0.1025687 -0.98137623 0.030622883\n\t\t 0.15991621 -0.98665547 0.2157318 -0.042788323 -0.97551477 0.2107203 0.13532366 -0.96813458\n\t\t 0.11656161 0.29990762 -0.94682044 0.1624199 0.1025687 -0.98137623 0.2107203 0.13532366\n\t\t -0.96813458 0.4499428 0.18791337 -0.87306356 0.34182778 0.36824024 -0.86461151 0.11656161\n\t\t 0.29990762 -0.94682044 0.018507969 0.046828337 -0.99873149 0.030622883 0.15991621\n\t\t -0.98665547 0.19769831 0.084811561 -0.97658712 -0.10615816 0.29176378 -0.95058107\n\t\t 0.030622883 0.15991621 -0.98665547 0.1624199 0.1025687 -0.98137623 0.22703454 0.13602883\n\t\t -0.96433985 0.19769831 0.084811561 -0.97658712 0.1624199 0.1025687 -0.98137623 0.11656161\n\t\t 0.29990762 -0.94682044 0.23458759 0.3152009 -0.91957426 0.22703454 0.13602883 -0.96433985\n\t\t 0.11656161 0.29990762 -0.94682044 0.34182778 0.36824024 -0.86461151 0.42021206 0.41955745\n\t\t -0.80460751 0.23458759 0.3152009 -0.91957426 -0.10615816 0.29176378 -0.95058107 0.19769831\n\t\t 0.084811561 -0.97658712 0.31264216 0.098636515 -0.94473577 0.073774025 0.2848058\n\t\t -0.95574212 0.19769831 0.084811561 -0.97658712 0.22703454 0.13602883 -0.96433985\n\t\t 0.33095798 0.20614073 -0.92085433 0.31264216 0.098636515 -0.94473577 0.22703454 0.13602883\n\t\t -0.96433985 0.23458759 0.3152009 -0.91957426 0.37457389 0.36985222 -0.85023743 0.33095798\n\t\t 0.20614073 -0.92085433 0.23458759 0.3152009 -0.91957426 0.42021206 0.41955745 -0.80460751\n\t\t 0.5052377 0.47017393 -0.72365147 0.37457389 0.36985222 -0.85023743 0.073774025 0.2848058\n\t\t -0.95574212 0.31264216 0.098636515 -0.94473577 0.3620604 0.33374918 -0.87035841 0.17861259\n\t\t 0.45151016 -0.87420601 0.31264216 0.098636515 -0.94473577 0.33095798 0.20614073 -0.92085433\n\t\t 0.40497309 0.4285138 -0.80769593 0.3620604 0.33374918 -0.87035841 0.33095798 0.20614073\n\t\t -0.92085433 0.37457389 0.36985222 -0.85023743 0.46606609 0.50822169 -0.7242189 0.40497309\n\t\t 0.4285138 -0.80769593 0.37457389 0.36985222 -0.85023743 0.5052377 0.47017393 -0.72365147\n\t\t 0.53999633 0.53903794 -0.64640701 0.46606609 0.50822169 -0.7242189 0.99981117 0.0081419423\n\t\t -0.017643576 0.99756753 0.058663227 -0.037653327 0.98676491 0.075915478 -0.14328976\n\t\t 0.99664241 0.0027725757 -0.081830017 0.99756753 0.058663227 -0.037653327 0.97185844\n\t\t 0.21393725 -0.098600604 0.93400061 0.25227147 -0.25298625 0.98676491 0.075915478\n\t\t -0.14328976 0.97185844 0.21393725 -0.098600604 0.88407475 0.44241616 -0.15059756\n\t\t 0.82947445 0.45309457 -0.32661518 0.93400061 0.25227147 -0.25298625 0.88407475 0.44241616\n\t\t -0.15059756 0.69333202 0.70012951 -0.17061438 0.65320069 0.66900218 -0.35463333 0.82947445\n\t\t 0.45309457 -0.32661518 0.99664241 0.0027725757 -0.081830017 0.98676491 0.075915478\n\t\t -0.14328976 0.93881434 0.135818 -0.31651405 0.97309256 0.0097287046 -0.23020907 0.98676491\n\t\t 0.075915478 -0.14328976 0.93400061 0.25227147 -0.25298625 0.86426657 0.31245837 -0.39422458\n\t\t 0.93881434 0.135818 -0.31651405 0.93400061 0.25227147 -0.25298625 0.82947445 0.45309457\n\t\t -0.32661518 0.77241492 0.47328898 -0.42352423 0.86426657 0.31245837 -0.39422458 0.82947445\n\t\t 0.45309457 -0.32661518 0.65320069 0.66900218 -0.35463333 0.62992322 0.64215231 -0.43684906\n\t\t 0.77241492 0.47328898 -0.42352423 0.97309256 0.0097287046 -0.23020907 0.93881434\n\t\t 0.135818 -0.31651405 0.7028597 0.2932404 -0.64807278 0.85181934 0.071548462 -0.51892632\n\t\t 0.93881434 0.135818 -0.31651405 0.86426657 0.31245837 -0.39422458 0.676911 0.40084225\n\t\t -0.61734676 0.7028597 0.2932404 -0.64807278 0.86426657 0.31245837 -0.39422458 0.77241492\n\t\t 0.47328898 -0.42352423 0.65902889 0.48859233 -0.57180285 0.676911 0.40084225 -0.61734676\n\t\t 0.77241492 0.47328898 -0.42352423 0.62992322 0.64215231 -0.43684906 0.58788264 0.59021717\n\t\t -0.55320668 0.65902889 0.48859233 -0.57180285 0.85181934 0.071548462 -0.51892632\n\t\t 0.7028597 0.2932404 -0.64807278 0.34182778 0.36824024 -0.86461151 0.4499428 0.18791337\n\t\t -0.87306356 0.7028597 0.2932404 -0.64807278 0.676911 0.40084225 -0.61734676 0.42021206\n\t\t 0.41955745 -0.80460751 0.34182778 0.36824024 -0.86461151 0.676911 0.40084225 -0.61734676\n\t\t 0.65902889 0.48859233 -0.57180285 0.5052377 0.47017393 -0.72365147 0.42021206 0.41955745\n\t\t -0.80460751 0.65902889 0.48859233 -0.57180285 0.58788264 0.59021717 -0.55320668 0.53999633\n\t\t 0.53903794 -0.64640701 0.5052377 0.47017393 -0.72365147 0.01463102 0.014656714 -0.99978554\n\t\t 0.01185634 0.075961955 -0.99704015 0.081113055 0.081844926 -0.99333882 0.075961605\n\t\t 0.012104649 -0.99703735 0.01185634 0.075961955 -0.99704015 0.01223085 0.22848924\n\t\t -0.97346956 0.084008276 0.24063048 -0.9669745 0.081113055 0.081844926 -0.99333882\n\t\t 0.01223085 0.22848924 -0.97346956 0.01088604 0.45735413 -0.88921803 0.08214841 0.46820408\n\t\t -0.87979347 0.084008276 0.24063048 -0.9669745 0.01088604 0.45735413 -0.88921803 0.0096195498\n\t\t 0.70714283 -0.7070052 0.079967193 0.70425618 -0.70542783 0.08214841 0.46820408 -0.87979347\n\t\t 0.075961605 0.012104649 -0.99703735 0.081113055 0.081844926 -0.99333882 0.24077776\n\t\t 0.085012034 -0.96685004 0.22823338 0.012682635 -0.9735238 0.081113055 0.081844926\n\t\t -0.99333882 0.084008276 0.24063048 -0.9669745 0.24551024 0.24605362 -0.93764728 0.24077776\n\t\t 0.085012034 -0.96685004 0.084008276 0.24063048 -0.9669745 0.08214841 0.46820408 -0.87979347\n\t\t 0.23937997 0.46578255 -0.85190606 0.24551024 0.24605362 -0.93764728 0.08214841 0.46820408\n\t\t -0.87979347 0.079967193 0.70425618 -0.70542783 0.23346844 0.68728817 -0.68784255\n\t\t 0.23937997 0.46578255 -0.85190606 0.22823338 0.012682635 -0.9735238 0.24077776 0.085012034\n\t\t -0.96685004;\n\tsetAttr \".n[2490:2655]\" -type \"float3\"  0.46946514 0.082782358 -0.87906182 0.45700207\n\t\t 0.011135504 -0.88939583 0.24077776 0.085012034 -0.96685004 0.24551024 0.24605362\n\t\t -0.93764728 0.46605322 0.23996268 -0.85159403 0.46946514 0.082782358 -0.87906182\n\t\t 0.24551024 0.24605362 -0.93764728 0.23937997 0.46578255 -0.85190606 0.43919292 0.43938497\n\t\t -0.78361368 0.46605322 0.23996268 -0.85159403 0.23937997 0.46578255 -0.85190606 0.23346844\n\t\t 0.68728817 -0.68784255 0.41808659 0.64231521 -0.64236653 0.43919292 0.43938497 -0.78361368\n\t\t 0.45700207 0.011135504 -0.88939583 0.46946514 0.082782358 -0.87906182 0.70542449\n\t\t 0.079966851 -0.70425963 0.70692801 0.0096209338 -0.70722014 0.46946514 0.082782358\n\t\t -0.87906182 0.46605322 0.23996268 -0.85159403 0.68783993 0.23346534 -0.68729198 0.70542449\n\t\t 0.079966851 -0.70425963 0.46605322 0.23996268 -0.85159403 0.43919292 0.43938497 -0.78361368\n\t\t 0.64236361 0.4180913 -0.64231509 0.68783993 0.23346534 -0.68729198 0.43919292 0.43938497\n\t\t -0.78361368 0.41808659 0.64231521 -0.64236653 0.57734382 0.57735616 -0.57735074 0.64236361\n\t\t 0.4180913 -0.64231509 0.014653346 0.99978542 -0.014639875 0.075960487 0.99704033\n\t\t -0.011856631 0.08184123 0.9933393 -0.081111535 0.012107143 0.99703497 -0.07599169\n\t\t 0.075960487 0.99704033 -0.011856631 0.22848845 0.97346979 -0.012227147 0.24062739\n\t\t 0.96697569 -0.084002368 0.08184123 0.9933393 -0.081111535 0.22848845 0.97346979 -0.012227147\n\t\t 0.45735449 0.88921791 -0.010884398 0.46820956 0.87979078 -0.082146049 0.24062739\n\t\t 0.96697569 -0.084002368 0.45735449 0.88921791 -0.010884398 0.70714831 0.70699978\n\t\t -0.0096209748 0.70426136 0.70542288 -0.07996659 0.46820956 0.87979078 -0.082146049\n\t\t 0.012107143 0.99703497 -0.07599169 0.08184123 0.9933393 -0.081111535 0.085012704\n\t\t 0.96684933 -0.2407804 0.012682394 0.9735077 -0.22830175 0.08184123 0.9933393 -0.081111535\n\t\t 0.24062739 0.96697569 -0.084002368 0.24605778 0.93764609 -0.2455104 0.085012704 0.96684933\n\t\t -0.2407804 0.24062739 0.96697569 -0.084002368 0.46820956 0.87979078 -0.082146049\n\t\t 0.46578565 0.85190469 -0.23937836 0.24605778 0.93764609 -0.2455104 0.46820956 0.87979078\n\t\t -0.082146049 0.70426136 0.70542288 -0.07996659 0.68729162 0.68784058 -0.23346415\n\t\t 0.46578565 0.85190469 -0.23937836 0.012682394 0.9735077 -0.22830175 0.085012704 0.96684933\n\t\t -0.2407804 0.082785413 0.8790583 -0.46947104 0.011132197 0.88934797 -0.4570955 0.085012704\n\t\t 0.96684933 -0.2407804 0.24605778 0.93764609 -0.2455104 0.23997048 0.85159159 -0.46605349\n\t\t 0.082785413 0.8790583 -0.46947104 0.24605778 0.93764609 -0.2455104 0.46578565 0.85190469\n\t\t -0.23937836 0.43938455 0.78361452 -0.43919188 0.23997048 0.85159159 -0.46605349 0.46578565\n\t\t 0.85190469 -0.23937836 0.68729162 0.68784058 -0.23346415 0.6423142 0.6423679 -0.41808617\n\t\t 0.43938455 0.78361452 -0.43919188 0.011132197 0.88934797 -0.4570955 0.082785413 0.8790583\n\t\t -0.46947104 0.079967193 0.70425618 -0.70542783 0.0096195498 0.70714283 -0.7070052\n\t\t 0.082785413 0.8790583 -0.46947104 0.23997048 0.85159159 -0.46605349 0.23346844 0.68728817\n\t\t -0.68784255 0.079967193 0.70425618 -0.70542783 0.23997048 0.85159159 -0.46605349\n\t\t 0.43938455 0.78361452 -0.43919188 0.41808659 0.64231521 -0.64236653 0.23346844 0.68728817\n\t\t -0.68784255 0.43938455 0.78361452 -0.43919188 0.6423142 0.6423679 -0.41808617 0.57734382\n\t\t 0.57735616 -0.57735074 0.41808659 0.64231521 -0.64236653 0.9997853 0.014636262 -0.014662402\n\t\t 0.99703801 0.011856018 -0.075990655 0.99333888 0.081112981 -0.081843913 0.99703509\n\t\t 0.075990371 -0.012104536 0.99703801 0.011856018 -0.075990655 0.97345364 0.012228402\n\t\t -0.22855738 0.96697563 0.084004536 -0.24062695 0.99333888 0.081112981 -0.081843913\n\t\t 0.97345364 0.012228402 -0.22855738 0.88917381 0.010884912 -0.45743999 0.879794 0.082147397\n\t\t -0.46820337 0.96697563 0.084004536 -0.24062695 0.88917381 0.010884912 -0.45743999\n\t\t 0.70692801 0.0096209338 -0.70722014 0.70542449 0.079966851 -0.70425963 0.879794 0.082147397\n\t\t -0.46820337 0.99703509 0.075990371 -0.012104536 0.99333888 0.081112981 -0.081843913\n\t\t 0.96684945 0.24078032 -0.085011616 0.97350764 0.22830258 -0.012682854 0.99333888\n\t\t 0.081112981 -0.081843913 0.96697563 0.084004536 -0.24062695 0.93764693 0.24551351\n\t\t -0.24605161 0.96684945 0.24078032 -0.085011616 0.96697563 0.084004536 -0.24062695\n\t\t 0.879794 0.082147397 -0.46820337 0.85190344 0.23937953 -0.46578744 0.93764693 0.24551351\n\t\t -0.24605161 0.879794 0.082147397 -0.46820337 0.70542449 0.079966851 -0.70425963 0.68783993\n\t\t 0.23346534 -0.68729198 0.85190344 0.23937953 -0.46578744 0.97350764 0.22830258 -0.012682854\n\t\t 0.96684945 0.24078032 -0.085011616 0.8790614 0.46946591 -0.082781635 0.88935018 0.45709115\n\t\t -0.011135587 0.96684945 0.24078032 -0.085011616 0.93764693 0.24551351 -0.24605161\n\t\t 0.85159463 0.46605244 -0.23996177 0.8790614 0.46946591 -0.082781635 0.93764693 0.24551351\n\t\t -0.24605161 0.85190344 0.23937953 -0.46578744 0.78361219 0.43919513 -0.43938544 0.85159463\n\t\t 0.46605244 -0.23996177 0.85190344 0.23937953 -0.46578744 0.68783993 0.23346534 -0.68729198\n\t\t 0.64236361 0.4180913 -0.64231509 0.78361219 0.43919513 -0.43938544 0.88935018 0.45709115\n\t\t -0.011135587 0.8790614 0.46946591 -0.082781635 0.70426136 0.70542288 -0.07996659\n\t\t 0.70714831 0.70699978 -0.0096209748 0.8790614 0.46946591 -0.082781635 0.85159463\n\t\t 0.46605244 -0.23996177 0.68729162 0.68784058 -0.23346415 0.70426136 0.70542288 -0.07996659\n\t\t 0.85159463 0.46605244 -0.23996177 0.78361219 0.43919513 -0.43938544 0.6423142 0.6423679\n\t\t -0.41808617 0.68729162 0.68784058 -0.23346415 0.78361219 0.43919513 -0.43938544 0.64236361\n\t\t 0.4180913 -0.64231509 0.57734382 0.57735616 -0.57735074 0.6423142 0.6423679 -0.41808617\n\t\t 0.99978542 0.014656371 0.014638558 0.99704015 0.075962745 0.011856093 0.99333882\n\t\t 0.08184655 0.081111833 0.99703509 0.01210637 0.075990342 0.99704015 0.075962745 0.011856093\n\t\t 0.9734695 0.2284901 0.012228759 0.96697479 0.24063036 0.08400353 0.99333882 0.08184655\n\t\t 0.081111833;\n\tsetAttr \".n[2656:2821]\" -type \"float3\"  0.9734695 0.2284901 0.012228759 0.88921756\n\t\t 0.45735502 0.010887524 0.87979239 0.46820623 0.082147211 0.96697479 0.24063036 0.08400353\n\t\t 0.88921756 0.45735502 0.010887524 0.70700306 0.70714504 0.0096200146 0.70542312 0.70426083\n\t\t 0.079967655 0.87979239 0.46820623 0.082147211 0.99703509 0.01210637 0.075990342 0.99333882\n\t\t 0.08184655 0.081111833 0.9668498 0.085013419 0.24077809 0.97350812 0.012683435 0.22830059\n\t\t 0.99333882 0.08184655 0.081111833 0.96697479 0.24063036 0.08400353 0.93764728 0.24605605\n\t\t 0.24550776 0.9668498 0.085013419 0.24077809 0.96697479 0.24063036 0.08400353 0.87979239\n\t\t 0.46820623 0.082147211 0.8519063 0.46578434 0.23937544 0.93764728 0.24605605 0.24550776\n\t\t 0.87979239 0.46820623 0.082147211 0.70542312 0.70426083 0.079967655 0.68783963 0.68729246\n\t\t 0.23346446 0.8519063 0.46578434 0.23937544 0.97350812 0.012683435 0.22830059 0.9668498\n\t\t 0.085013419 0.24077809 0.87906069 0.082783155 0.46946713 0.88935101 0.011133693 0.4570896\n\t\t 0.9668498 0.085013419 0.24077809 0.93764728 0.24605605 0.24550776 0.85159183 0.23996559\n\t\t 0.46605569 0.87906069 0.082783155 0.46946713 0.93764728 0.24605605 0.24550776 0.8519063\n\t\t 0.46578434 0.23937544 0.78361517 0.43938282 0.43919238 0.85159183 0.23996559 0.46605569\n\t\t 0.8519063 0.46578434 0.23937544 0.68783963 0.68729246 0.23346446 0.64236432 0.64231491\n\t\t 0.41809034 0.78361517 0.43938282 0.43919238 0.88935101 0.011133693 0.4570896 0.87906069\n\t\t 0.082783155 0.46946713 0.70425916 0.079968669 0.70542473 0.70714837 0.009622382 0.70699978\n\t\t 0.87906069 0.082783155 0.46946713 0.85159183 0.23996559 0.46605569 0.68728679 0.23346668\n\t\t 0.68784451 0.70425916 0.079968669 0.70542473 0.85159183 0.23996559 0.46605569 0.78361517\n\t\t 0.43938282 0.43919238 0.64231604 0.41808993 0.64236355 0.68728679 0.23346668 0.68784451\n\t\t 0.78361517 0.43938282 0.43919238 0.64236432 0.64231491 0.41809034 0.57734591 0.57735139\n\t\t 0.57735366 0.64231604 0.41808993 0.64236355 0.014632256 0.99978542 0.014659704 0.011857362\n\t\t 0.99704003 0.075963728 0.081115268 0.99333882 0.081843257 0.075992912 0.99703485\n\t\t 0.012106225 0.011857362 0.99704003 0.075963728 0.012234432 0.97346938 0.22848994\n\t\t 0.084008738 0.96697474 0.2406294 0.081115268 0.99333882 0.081843257 0.012234432 0.97346938\n\t\t 0.22848994 0.010886038 0.88921803 0.45735416 0.082146011 0.87979257 0.46820623 0.084008738\n\t\t 0.96697474 0.2406294 0.010886038 0.88921803 0.45735416 0.0096154334 0.70700419 0.70714402\n\t\t 0.079960562 0.70542789 0.70425689 0.082146011 0.87979257 0.46820623 0.075992912 0.99703485\n\t\t 0.012106225 0.081115268 0.99333882 0.081843257 0.2407824 0.96684903 0.08501026 0.22830553\n\t\t 0.97350693 0.0126808 0.081115268 0.99333882 0.081843257 0.084008738 0.96697474 0.2406294\n\t\t 0.24550851 0.93764722 0.24605529 0.2407824 0.96684903 0.08501026 0.084008738 0.96697474\n\t\t 0.2406294 0.082146011 0.87979257 0.46820623 0.2393776 0.85190398 0.46578741 0.24550851\n\t\t 0.93764722 0.24605529 0.082146011 0.87979257 0.46820623 0.079960562 0.70542789 0.70425689\n\t\t 0.23346825 0.68784022 0.68729067 0.2393776 0.85190398 0.46578741 0.22830553 0.97350693\n\t\t 0.0126808 0.2407824 0.96684903 0.08501026 0.46946681 0.87906098 0.082781352 0.45709136\n\t\t 0.88935006 0.011130534 0.2407824 0.96684903 0.08501026 0.24550851 0.93764722 0.24605529\n\t\t 0.46604913 0.85159528 0.23996602 0.46946681 0.87906098 0.082781352 0.24550851 0.93764722\n\t\t 0.24605529 0.2393776 0.85190398 0.46578741 0.439188 0.78361398 0.43938944 0.46604913\n\t\t 0.85159528 0.23996602 0.2393776 0.85190398 0.46578741 0.23346825 0.68784022 0.68729067\n\t\t 0.41808793 0.6423651 0.64231569 0.439188 0.78361398 0.43938944 0.45709136 0.88935006\n\t\t 0.011130534 0.46946681 0.87906098 0.082781352 0.70542312 0.70426083 0.079967655 0.70700306\n\t\t 0.70714504 0.0096200146 0.46946681 0.87906098 0.082781352 0.46604913 0.85159528 0.23996602\n\t\t 0.68783963 0.68729246 0.23346446 0.70542312 0.70426083 0.079967655 0.46604913 0.85159528\n\t\t 0.23996602 0.439188 0.78361398 0.43938944 0.64236432 0.64231491 0.41809034 0.68783963\n\t\t 0.68729246 0.23346446 0.439188 0.78361398 0.43938944 0.41808793 0.6423651 0.64231569\n\t\t 0.57734591 0.57735139 0.57735366 0.64236432 0.64231491 0.41809034 0.014656409 0.014635476\n\t\t 0.99978542 0.075962275 0.011857554 0.99704027 0.081846289 0.081112519 0.99333876\n\t\t 0.012107308 0.075988479 0.99703515 0.075962275 0.011857554 0.99704027 0.22848913\n\t\t 0.012233006 0.97346961 0.2406261 0.084007375 0.96697557 0.081846289 0.081112519 0.99333876\n\t\t 0.22848913 0.012233006 0.97346961 0.45735449 0.010889366 0.88921779 0.46820414 0.082151063\n\t\t 0.87979329 0.2406261 0.084007375 0.96697557 0.45735449 0.010889366 0.88921779 0.70714837\n\t\t 0.009622382 0.70699978 0.70425916 0.079968669 0.70542473 0.46820414 0.082151063 0.87979329\n\t\t 0.012107308 0.075988479 0.99703515 0.081846289 0.081112519 0.99333876 0.085011095\n\t\t 0.24077624 0.96685046 0.01268262 0.22830243 0.97350758 0.081846289 0.081112519 0.99333876\n\t\t 0.2406261 0.084007375 0.96697557 0.24605179 0.24551104 0.93764746 0.085011095 0.24077624\n\t\t 0.96685046 0.2406261 0.084007375 0.96697557 0.46820414 0.082151063 0.87979329 0.46578392\n\t\t 0.23938031 0.85190511 0.24605179 0.24551104 0.93764746 0.46820414 0.082151063 0.87979329\n\t\t 0.70425916 0.079968669 0.70542473 0.68728679 0.23346668 0.68784451 0.46578392 0.23938031\n\t\t 0.85190511 0.01268262 0.22830243 0.97350758 0.085011095 0.24077624 0.96685046 0.082777619\n\t\t 0.46946728 0.8790611 0.011130136 0.45709422 0.88934875 0.085011095 0.24077624 0.96685046\n\t\t 0.24605179 0.24551104 0.93764746 0.23996675 0.46605402 0.85159242 0.082777619 0.46946728\n\t\t 0.8790611 0.24605179 0.24551104 0.93764746 0.46578392 0.23938031 0.85190511 0.43938935\n\t\t 0.43919784 0.78360844 0.23996675 0.46605402 0.85159242 0.46578392 0.23938031 0.85190511\n\t\t 0.68728679 0.23346668 0.68784451;\n\tsetAttr \".n[2822:2987]\" -type \"float3\"  0.64231604 0.41808993 0.64236355 0.43938935\n\t\t 0.43919784 0.78360844 0.011130136 0.45709422 0.88934875 0.082777619 0.46946728 0.8790611\n\t\t 0.079960562 0.70542789 0.70425689 0.0096154334 0.70700419 0.70714402 0.082777619\n\t\t 0.46946728 0.8790611 0.23996675 0.46605402 0.85159242 0.23346825 0.68784022 0.68729067\n\t\t 0.079960562 0.70542789 0.70425689 0.23996675 0.46605402 0.85159242 0.43938935 0.43919784\n\t\t 0.78360844 0.41808793 0.6423651 0.64231569 0.23346825 0.68784022 0.68729067 0.43938935\n\t\t 0.43919784 0.78360844 0.64231604 0.41808993 0.64236355 0.57734591 0.57735139 0.57735366\n\t\t 0.41808793 0.6423651 0.64231569 -0.9997853 0.014636361 0.014662424 -0.99703801 0.011856037\n\t\t 0.075990662 -0.99333888 0.081113435 0.081845209 -0.99703503 0.075990744 0.012104585\n\t\t -0.99703801 0.011856037 0.075990662 -0.97345364 0.012228475 0.22855738 -0.96697539\n\t\t 0.08400555 0.24062775 -0.99333888 0.081113435 0.081845209 -0.97345364 0.012228475\n\t\t 0.22855738 -0.88917381 0.010885086 0.45743999 -0.87979412 0.082148105 0.46820292\n\t\t -0.96697539 0.08400555 0.24062775 -0.88917381 0.010885086 0.45743999 -0.70692801\n\t\t 0.0096212029 0.70722008 -0.70542449 0.079967067 0.70425957 -0.87979412 0.082148105\n\t\t 0.46820292 -0.99703503 0.075990744 0.012104585 -0.99333888 0.081113435 0.081845209\n\t\t -0.96684945 0.24078014 0.085012458 -0.97350764 0.2283027 0.012682814 -0.99333888\n\t\t 0.081113435 0.081845209 -0.96697539 0.08400555 0.24062775 -0.93764788 0.24551116\n\t\t 0.24605052 -0.96684945 0.24078014 0.085012458 -0.96697539 0.08400555 0.24062775 -0.87979412\n\t\t 0.082148105 0.46820292 -0.85190445 0.23937948 0.46578568 -0.93764788 0.24551116 0.24605052\n\t\t -0.87979412 0.082148105 0.46820292 -0.70542449 0.079967067 0.70425957 -0.68783987\n\t\t 0.23346558 0.68729186 -0.85190445 0.23937948 0.46578568 -0.97350764 0.2283027 0.012682814\n\t\t -0.96684945 0.24078014 0.085012458 -0.87906206 0.46946484 0.082781039 -0.88935 0.45709154\n\t\t 0.011135445 -0.96684945 0.24078014 0.085012458 -0.93764788 0.24551116 0.24605052\n\t\t -0.8515963 0.46605027 0.23995997 -0.87906206 0.46946484 0.082781039 -0.93764788 0.24551116\n\t\t 0.24605052 -0.85190445 0.23937948 0.46578568 -0.78361195 0.43919551 0.43938565 -0.8515963\n\t\t 0.46605027 0.23995997 -0.85190445 0.23937948 0.46578568 -0.68783987 0.23346558 0.68729186\n\t\t -0.64236152 0.41809464 0.64231503 -0.78361195 0.43919551 0.43938565 -0.88935 0.45709154\n\t\t 0.011135445 -0.87906206 0.46946484 0.082781039 -0.7042613 0.70542288 0.079966366\n\t\t -0.707147 0.70700109 0.0096207503 -0.87906206 0.46946484 0.082781039 -0.8515963 0.46605027\n\t\t 0.23995997 -0.68729162 0.68784076 0.23346391 -0.7042613 0.70542288 0.079966366 -0.8515963\n\t\t 0.46605027 0.23995997 -0.78361195 0.43919551 0.43938565 -0.64231449 0.64236623 0.41808826\n\t\t -0.68729162 0.68784076 0.23346391 -0.78361195 0.43919551 0.43938565 -0.64236152 0.41809464\n\t\t 0.64231503 -0.57734489 0.57735419 0.57735187 -0.64231449 0.64236623 0.41808826 -0.014631052\n\t\t 0.01465673 0.99978554 -0.011856422 0.075961962 0.99704021 -0.081113055 0.081845254\n\t\t 0.99333882 -0.075961605 0.012105037 0.99703729 -0.011856422 0.075961962 0.99704021\n\t\t -0.012230889 0.22849151 0.97346914 -0.084008276 0.24063081 0.96697438 -0.081113055\n\t\t 0.081845254 0.99333882 -0.012230889 0.22849151 0.97346914 -0.010886037 0.45735607\n\t\t 0.88921702 -0.08214841 0.46820438 0.87979335 -0.084008276 0.24063081 0.96697438 -0.010886037\n\t\t 0.45735607 0.88921702 -0.0096195554 0.70714301 0.70700508 -0.079967193 0.70425642\n\t\t 0.70542759 -0.08214841 0.46820438 0.87979335 -0.075961605 0.012105037 0.99703729\n\t\t -0.081113055 0.081845254 0.99333882 -0.24077776 0.085012347 0.96685004 -0.22823341\n\t\t 0.012683024 0.9735238 -0.081113055 0.081845254 0.99333882 -0.084008276 0.24063081\n\t\t 0.96697438 -0.24551024 0.24605392 0.93764716 -0.24077776 0.085012347 0.96685004 -0.084008276\n\t\t 0.24063081 0.96697438 -0.08214841 0.46820438 0.87979335 -0.23937997 0.46578285 0.85190594\n\t\t -0.24551024 0.24605392 0.93764716 -0.08214841 0.46820438 0.87979335 -0.079967193\n\t\t 0.70425642 0.70542759 -0.23346844 0.6872884 0.68784231 -0.23937997 0.46578285 0.85190594\n\t\t -0.22823341 0.012683024 0.9735238 -0.24077776 0.085012347 0.96685004 -0.46946514\n\t\t 0.082782641 0.87906182 -0.45700213 0.01113584 0.88939583 -0.24077776 0.085012347\n\t\t 0.96685004 -0.24551024 0.24605392 0.93764716 -0.46605322 0.23996295 0.85159391 -0.46946514\n\t\t 0.082782641 0.87906182 -0.24551024 0.24605392 0.93764716 -0.23937997 0.46578285 0.85190594\n\t\t -0.43919298 0.43938723 0.78361243 -0.46605322 0.23996295 0.85159391 -0.23937997 0.46578285\n\t\t 0.85190594 -0.23346844 0.6872884 0.68784231 -0.41808954 0.64231437 0.64236557 -0.43919298\n\t\t 0.43938723 0.78361243 -0.45700213 0.01113584 0.88939583 -0.46946514 0.082782641 0.87906182\n\t\t -0.70542449 0.079967067 0.70425957 -0.70692801 0.0096212029 0.70722008 -0.46946514\n\t\t 0.082782641 0.87906182 -0.46605322 0.23996295 0.85159391 -0.68783987 0.23346558 0.68729186\n\t\t -0.70542449 0.079967067 0.70425957 -0.46605322 0.23996295 0.85159391 -0.43919298\n\t\t 0.43938723 0.78361243 -0.64236152 0.41809464 0.64231503 -0.68783987 0.23346558 0.68729186\n\t\t -0.43919298 0.43938723 0.78361243 -0.41808954 0.64231437 0.64236557 -0.57734489 0.57735419\n\t\t 0.57735187 -0.64236152 0.41809464 0.64231503 -0.014655928 0.99978542 0.014639717\n\t\t -0.075958304 0.99704057 0.011856291 -0.08184123 0.9933393 0.081111208 -0.01210713\n\t\t 0.99703491 0.07599175 -0.075958304 0.99704057 0.011856291 -0.22848889 0.97346979\n\t\t 0.012226836 -0.24062739 0.96697569 0.084002055 -0.08184123 0.9933393 0.081111208\n\t\t -0.22848889 0.97346979 0.012226836 -0.45735756 0.88921624 0.010884088 -0.46820956\n\t\t 0.87979078 0.082145765 -0.24062739 0.96697569 0.084002055 -0.45735756 0.88921624\n\t\t 0.010884088 -0.707147 0.70700109 0.0096207503 -0.7042613 0.70542288 0.079966366 -0.46820956\n\t\t 0.87979078 0.082145765 -0.01210713 0.99703491 0.07599175 -0.08184123 0.9933393 0.081111208\n\t\t -0.085012704 0.96684945 0.24078007 -0.012682392 0.973508 0.22830108;\n\tsetAttr \".n[2988:3153]\" -type \"float3\"  -0.08184123 0.9933393 0.081111208 -0.24062739\n\t\t 0.96697569 0.084002055 -0.24605778 0.93764621 0.2455101 -0.085012704 0.96684945 0.24078007\n\t\t -0.24062739 0.96697569 0.084002055 -0.46820956 0.87979078 0.082145765 -0.46578565\n\t\t 0.85190481 0.23937809 -0.24605778 0.93764621 0.2455101 -0.46820956 0.87979078 0.082145765\n\t\t -0.7042613 0.70542288 0.079966366 -0.68729162 0.68784076 0.23346391 -0.46578565 0.85190481\n\t\t 0.23937809 -0.012682392 0.973508 0.22830108 -0.085012704 0.96684945 0.24078007 -0.082785413\n\t\t 0.87905842 0.46947074 -0.011132193 0.88934833 0.4570947 -0.085012704 0.96684945 0.24078007\n\t\t -0.24605778 0.93764621 0.2455101 -0.23997048 0.85159171 0.46605319 -0.082785413 0.87905842\n\t\t 0.46947074 -0.24605778 0.93764621 0.2455101 -0.46578565 0.85190481 0.23937809 -0.4393881\n\t\t 0.78361177 0.43919331 -0.23997048 0.85159171 0.46605319 -0.46578565 0.85190481 0.23937809\n\t\t -0.68729162 0.68784076 0.23346391 -0.64231449 0.64236623 0.41808826 -0.4393881 0.78361177\n\t\t 0.43919331 -0.011132193 0.88934833 0.4570947 -0.082785413 0.87905842 0.46947074 -0.079967193\n\t\t 0.70425642 0.70542759 -0.0096195554 0.70714301 0.70700508 -0.082785413 0.87905842\n\t\t 0.46947074 -0.23997048 0.85159171 0.46605319 -0.23346844 0.6872884 0.68784231 -0.079967193\n\t\t 0.70425642 0.70542759 -0.23997048 0.85159171 0.46605319 -0.4393881 0.78361177 0.43919331\n\t\t -0.41808954 0.64231437 0.64236557 -0.23346844 0.6872884 0.68784231 -0.4393881 0.78361177\n\t\t 0.43919331 -0.64231449 0.64236623 0.41808826 -0.57734489 0.57735419 0.57735187 -0.41808954\n\t\t 0.64231437 0.64236557 0.019029947 0.0092337867 0.99977624 0.022491174 0.070862472\n\t\t 0.99723244 0.086403079 0.070730232 0.99374628 0.077310234 0.0015865739 0.99700582\n\t\t 0.022491174 0.070862472 0.99723244 0.030502407 0.22566026 0.97372842 0.096254274\n\t\t 0.2323641 0.96785432 0.086403079 0.070730232 0.99374628 0.030502407 0.22566026 0.97372842\n\t\t 0.039386772 0.45314953 0.89056396 0.11355126 0.45101547 0.88526344 0.096254274 0.2323641\n\t\t 0.96785432 0.039386772 0.45314953 0.89056396 0.041679073 0.70951796 0.70345378 0.12473384\n\t\t 0.70761806 0.69549835 0.11355126 0.45101547 0.88526344 0.077310234 0.0015865739 0.99700582\n\t\t 0.086403079 0.070730232 0.99374628 0.21891525 0.083695129 0.9721477 0.22138777 0.00632721\n\t\t 0.97516531 0.086403079 0.070730232 0.99374628 0.096254274 0.2323641 0.96785432 0.2195725\n\t\t 0.23782213 0.9461652 0.21891525 0.083695129 0.9721477 0.096254274 0.2323641 0.96785432\n\t\t 0.11355126 0.45101547 0.88526344 0.23360863 0.43886986 0.86765218 0.2195725 0.23782213\n\t\t 0.9461652 0.11355126 0.45101547 0.88526344 0.12473384 0.70761806 0.69549835 0.24881026\n\t\t 0.68869358 0.68102473 0.23360863 0.43886986 0.86765218 0.22138777 0.00632721 0.97516531\n\t\t 0.21891525 0.083695129 0.9721477 0.43649662 0.10942773 0.89302647 0.44661659 0.025138421\n\t\t 0.89437222 0.21891525 0.083695129 0.9721477 0.2195725 0.23782213 0.9461652 0.426355\n\t\t 0.24533938 0.87064922 0.43649662 0.10942773 0.89302647 0.2195725 0.23782213 0.9461652\n\t\t 0.23360863 0.43886986 0.86765218 0.42495137 0.42880994 0.79720664 0.426355 0.24533938\n\t\t 0.87064922 0.23360863 0.43886986 0.86765218 0.24881026 0.68869358 0.68102473 0.42832407\n\t\t 0.63945049 0.63846821 0.42495137 0.42880994 0.79720664 0.44661659 0.025138421 0.89437222\n\t\t 0.43649662 0.10942773 0.89302647 0.69549948 0.12472428 0.70761883 0.7034539 0.041674778\n\t\t 0.70951802 0.43649662 0.10942773 0.89302647 0.426355 0.24533938 0.87064922 0.68102646\n\t\t 0.24880186 0.68869489 0.69549948 0.12472428 0.70761883 0.426355 0.24533938 0.87064922\n\t\t 0.42495137 0.42880994 0.79720664 0.63846719 0.42832258 0.6394524 0.68102646 0.24880186\n\t\t 0.68869489 0.42495137 0.42880994 0.79720664 0.42832407 0.63945049 0.63846821 0.57734841\n\t\t 0.57735157 0.57735074 0.63846719 0.42832258 0.6394524 0.0092430767 0.99977612 0.01903322\n\t\t 0.070872091 0.99723178 0.022490287 0.070735559 0.99374551 0.086407579 0.0015926758\n\t\t 0.99700546 0.077313855 0.070872091 0.99723178 0.022490287 0.22565855 0.97372895 0.030499594\n\t\t 0.23236604 0.96785325 0.096260399 0.070735559 0.99374551 0.086407579 0.22565855 0.97372895\n\t\t 0.030499594 0.45314762 0.8905651 0.039383292 0.45101932 0.88526118 0.11355291 0.23236604\n\t\t 0.96785325 0.096260399 0.45314762 0.8905651 0.039383292 0.70952165 0.70345014 0.041676003\n\t\t 0.7076205 0.69549721 0.12472702 0.45101932 0.88526118 0.11355291 0.0015926758 0.99700546\n\t\t 0.077313855 0.070735559 0.99374551 0.086407579 0.083696052 0.97214621 0.2189215 0.0063267811\n\t\t 0.97516495 0.22138926 0.070735559 0.99374551 0.086407579 0.23236604 0.96785325 0.096260399\n\t\t 0.23782738 0.94616234 0.21957907 0.083696052 0.97214621 0.2189215 0.23236604 0.96785325\n\t\t 0.096260399 0.45101932 0.88526118 0.11355291 0.43887308 0.86765009 0.23361006 0.23782738\n\t\t 0.94616234 0.21957907 0.45101932 0.88526118 0.11355291 0.7076205 0.69549721 0.12472702\n\t\t 0.68868995 0.68102926 0.24880795 0.43887308 0.86765009 0.23361006 0.0063267811 0.97516495\n\t\t 0.22138926 0.083696052 0.97214621 0.2189215 0.10943544 0.89302593 0.43649572 0.025140125\n\t\t 0.89437133 0.44661814 0.083696052 0.97214621 0.2189215 0.23782738 0.94616234 0.21957907\n\t\t 0.24534599 0.87064952 0.42635059 0.10943544 0.89302593 0.43649572 0.23782738 0.94616234\n\t\t 0.21957907 0.43887308 0.86765009 0.23361006 0.42881334 0.79720676 0.4249475 0.24534599\n\t\t 0.87064952 0.42635059 0.43887308 0.86765009 0.23361006 0.68868995 0.68102926 0.24880795\n\t\t 0.63944703 0.6384716 0.42832422 0.42881334 0.79720676 0.4249475 0.025140125 0.89437133\n\t\t 0.44661814 0.10943544 0.89302593 0.43649572 0.12473384 0.70761806 0.69549835 0.041679073\n\t\t 0.70951796 0.70345378 0.10943544 0.89302593 0.43649572 0.24534599 0.87064952 0.42635059\n\t\t 0.24881026 0.68869358 0.68102473 0.12473384 0.70761806 0.69549835 0.24534599 0.87064952\n\t\t 0.42635059 0.42881334 0.79720676 0.4249475;\n\tsetAttr \".n[3154:3319]\" -type \"float3\"  0.42832407 0.63945049 0.63846821 0.24881026\n\t\t 0.68869358 0.68102473 0.42881334 0.79720676 0.4249475 0.63944703 0.6384716 0.42832422\n\t\t 0.57734841 0.57735157 0.57735074 0.42832407 0.63945049 0.63846821 0.99977624 0.019032631\n\t\t 0.0092321774 0.99723262 0.022492275 0.070860811 0.9937464 0.086401433 0.070731752\n\t\t 0.9970057 0.077311262 0.0015880385 0.99723262 0.022492275 0.070860811 0.9737283 0.03050269\n\t\t 0.22566074 0.96785378 0.096252203 0.23236729 0.9937464 0.086401433 0.070731752 0.9737283\n\t\t 0.03050269 0.22566074 0.89056373 0.039385144 0.45315021 0.88526231 0.11354829 0.45101842\n\t\t 0.96785378 0.096252203 0.23236729 0.89056373 0.039385144 0.45315021 0.70345318 0.04167708\n\t\t 0.70951855 0.69550002 0.12472762 0.7076177 0.88526231 0.11354829 0.45101842 0.9970057\n\t\t 0.077311262 0.0015880385 0.9937464 0.086401433 0.070731752 0.97214693 0.21891731\n\t\t 0.083699539 0.97516525 0.2213884 0.0063309977 0.9937464 0.086401433 0.070731752 0.96785378\n\t\t 0.096252203 0.23236729 0.94616514 0.21957038 0.23782422 0.97214693 0.21891731 0.083699539\n\t\t 0.96785378 0.096252203 0.23236729 0.88526231 0.11354829 0.45101842 0.86765331 0.23360439\n\t\t 0.43886968 0.94616514 0.21957038 0.23782422 0.88526231 0.11354829 0.45101842 0.69550002\n\t\t 0.12472762 0.7076177 0.6810298 0.24880095 0.68869185 0.86765331 0.23360439 0.43886968\n\t\t 0.97516525 0.2213884 0.0063309977 0.97214693 0.21891731 0.083699539 0.89302427 0.43649971\n\t\t 0.10943341 0.89437205 0.44661686 0.025142243 0.97214693 0.21891731 0.083699539 0.94616514\n\t\t 0.21957038 0.23782422 0.87064809 0.42635658 0.24534081 0.89302427 0.43649971 0.10943341\n\t\t 0.94616514 0.21957038 0.23782422 0.86765331 0.23360439 0.43886968 0.7972042 0.42495137\n\t\t 0.42881447 0.87064809 0.42635658 0.24534081 0.86765331 0.23360439 0.43886968 0.6810298\n\t\t 0.24880095 0.68869185 0.63846803 0.42832348 0.63945097 0.7972042 0.42495137 0.42881447\n\t\t 0.89437205 0.44661686 0.025142243 0.89302427 0.43649971 0.10943341 0.7076205 0.69549721\n\t\t 0.12472702 0.70952165 0.70345014 0.041676003 0.89302427 0.43649971 0.10943341 0.87064809\n\t\t 0.42635658 0.24534081 0.68868995 0.68102926 0.24880795 0.7076205 0.69549721 0.12472702\n\t\t 0.87064809 0.42635658 0.24534081 0.7972042 0.42495137 0.42881447 0.63944703 0.6384716\n\t\t 0.42832422 0.68868995 0.68102926 0.24880795 0.7972042 0.42495137 0.42881447 0.63846803\n\t\t 0.42832348 0.63945097 0.57734841 0.57735157 0.57735074 0.63944703 0.6384716 0.42832422\n\t\t 0.019032257 0.0092324531 0.99977624 0.022491975 0.070861325 0.99723256 0.086400755\n\t\t 0.070730917 0.9937464 0.077310182 0.0015866434 0.99700582 0.022491975 0.070861325\n\t\t 0.99723256 0.030500848 0.22566158 0.97372806 0.096251361 0.23236644 0.96785414 0.086400755\n\t\t 0.070730917 0.9937464 0.030500848 0.22566158 0.97372806 0.039383728 0.45315072 0.89056355\n\t\t 0.1135493 0.45101711 0.88526273 0.096251361 0.23236644 0.96785414 0.039383728 0.45315072\n\t\t 0.89056355 0.041676834 0.70951772 0.7034542 0.12473263 0.70761877 0.69549793 0.1135493\n\t\t 0.45101711 0.88526273 0.077310182 0.0015866434 0.99700582 0.086400755 0.070730917\n\t\t 0.9937464 0.21891513 0.083698027 0.97214752 0.22138745 0.0063286657 0.97516543 0.086400755\n\t\t 0.070730917 0.9937464 0.096251361 0.23236644 0.96785414 0.21956988 0.23782188 0.9461658\n\t\t 0.21891513 0.083698027 0.97214752 0.096251361 0.23236644 0.96785414 0.1135493 0.45101711\n\t\t 0.88526273 0.2336075 0.43886948 0.8676526 0.21956988 0.23782188 0.9461658 0.1135493\n\t\t 0.45101711 0.88526273 0.12473263 0.70761877 0.69549793 0.24881172 0.68869478 0.68102306\n\t\t 0.2336075 0.43886948 0.8676526 0.22138745 0.0063286657 0.97516543 0.21891513 0.083698027\n\t\t 0.97214752 0.43649897 0.10943232 0.89302474 0.44661859 0.025142048 0.89437115 0.21891513\n\t\t 0.083698027 0.97214752 0.21956988 0.23782188 0.9461658 0.42635441 0.24533828 0.87064976\n\t\t 0.43649897 0.10943232 0.89302474 0.21956988 0.23782188 0.9461658 0.2336075 0.43886948\n\t\t 0.8676526 0.42495111 0.42881066 0.7972064 0.42635441 0.24533828 0.87064976 0.2336075\n\t\t 0.43886948 0.8676526 0.24881172 0.68869478 0.68102306 0.42832348 0.63945115 0.63846791\n\t\t 0.42495111 0.42881066 0.7972064 0.44661859 0.025142048 0.89437115 0.43649897 0.10943232\n\t\t 0.89302474 0.69550002 0.12472762 0.7076177 0.70345318 0.04167708 0.70951855 0.43649897\n\t\t 0.10943232 0.89302474 0.42635441 0.24533828 0.87064976 0.6810298 0.24880095 0.68869185\n\t\t 0.69550002 0.12472762 0.7076177 0.42635441 0.24533828 0.87064976 0.42495111 0.42881066\n\t\t 0.7972064 0.63846803 0.42832348 0.63945097 0.6810298 0.24880095 0.68869185 0.42495111\n\t\t 0.42881066 0.7972064 0.42832348 0.63945115 0.63846791 0.57734841 0.57735157 0.57735074\n\t\t 0.63846803 0.42832348 0.63945097 0.0092374319 0.99977618 0.019033359 0.070870489\n\t\t 0.99723196 0.022490742 0.070738167 0.99374539 0.086407207 0.0015927404 0.99700558\n\t\t 0.077313721 0.070870489 0.99723196 0.022490742 0.22565867 0.97372884 0.030499872\n\t\t 0.23236474 0.96785355 0.09626022 0.070738167 0.99374539 0.086407207 0.22565867 0.97372884\n\t\t 0.030499872 0.45314372 0.89056712 0.039382447 0.45101875 0.8852616 0.11355122 0.23236474\n\t\t 0.96785355 0.09626022 0.45314372 0.89056712 0.039382447 0.70951974 0.70345229 0.041673098\n\t\t 0.7076211 0.69549757 0.1247218 0.45101875 0.8852616 0.11355122 0.0015927404 0.99700558\n\t\t 0.077313721 0.070738167 0.99374539 0.086407207 0.083695278 0.97214645 0.21892156\n\t\t 0.0063268291 0.97516513 0.22138865 0.070738167 0.99374539 0.086407207 0.23236474\n\t\t 0.96785355 0.09626022 0.23782718 0.94616228 0.21957946 0.083695278 0.97214645 0.21892156\n\t\t 0.23236474 0.96785355 0.09626022 0.45101875 0.8852616 0.11355122 0.43887672 0.86764836\n\t\t 0.23360987 0.23782718 0.94616228 0.21957946 0.45101875 0.8852616 0.11355122 0.7076211\n\t\t 0.69549757 0.1247218 0.68869311 0.68102705 0.24880542 0.43887672 0.86764836 0.23360987;\n\tsetAttr \".n[3320:3485]\" -type \"float3\"  0.0063268291 0.97516513 0.22138865 0.083695278\n\t\t 0.97214645 0.21892156 0.10943477 0.89302576 0.43649641 0.025139399 0.89437157 0.44661781\n\t\t 0.083695278 0.97214645 0.21892156 0.23782718 0.94616228 0.21957946 0.24534641 0.87064928\n\t\t 0.42635056 0.10943477 0.89302576 0.43649641 0.23782718 0.94616228 0.21957946 0.43887672\n\t\t 0.86764836 0.23360987 0.42881435 0.79720533 0.42494932 0.24534641 0.87064928 0.42635056\n\t\t 0.43887672 0.86764836 0.23360987 0.68869311 0.68102705 0.24880542 0.6394484 0.63846934\n\t\t 0.42832533 0.42881435 0.79720533 0.42494932 0.025139399 0.89437157 0.44661781 0.10943477\n\t\t 0.89302576 0.43649641 0.12473263 0.70761877 0.69549793 0.041676834 0.70951772 0.7034542\n\t\t 0.10943477 0.89302576 0.43649641 0.24534641 0.87064928 0.42635056 0.24881172 0.68869478\n\t\t 0.68102306 0.12473263 0.70761877 0.69549793 0.24534641 0.87064928 0.42635056 0.42881435\n\t\t 0.79720533 0.42494932 0.42832348 0.63945115 0.63846791 0.24881172 0.68869478 0.68102306\n\t\t 0.42881435 0.79720533 0.42494932 0.6394484 0.63846934 0.42832533 0.57734841 0.57735157\n\t\t 0.57735074 0.42832348 0.63945115 0.63846791 0.99977624 0.01903028 0.0092335287 0.99723256\n\t\t 0.022491638 0.070861481 0.99374634 0.086402498 0.070730314 0.99700588 0.077309795\n\t\t 0.0015865577 0.99723256 0.022491638 0.070861481 0.97372866 0.030502941 0.22565942\n\t\t 0.96785432 0.09625566 0.23236333 0.99374634 0.086402498 0.070730314 0.97372866 0.030502941\n\t\t 0.22565942 0.89056504 0.039385013 0.45314765 0.88526356 0.11355 0.45101523 0.96785432\n\t\t 0.09625566 0.23236333 0.89056504 0.039385013 0.45314765 0.7034539 0.041674778 0.70951802\n\t\t 0.69549948 0.12472428 0.70761883 0.88526356 0.11355 0.45101523 0.99700588 0.077309795\n\t\t 0.0015865577 0.99374634 0.086402498 0.070730314 0.97214693 0.21891883 0.083695017\n\t\t 0.97516525 0.22138838 0.0063279602 0.99374634 0.086402498 0.070730314 0.96785432\n\t\t 0.09625566 0.23236333 0.94616568 0.21957237 0.23782037 0.97214693 0.21891883 0.083695017\n\t\t 0.96785432 0.09625566 0.23236333 0.88526356 0.11355 0.45101523 0.86765277 0.23360516\n\t\t 0.43887055 0.94616568 0.21957237 0.23782037 0.88526356 0.11355 0.45101523 0.69549948\n\t\t 0.12472428 0.70761883 0.68102646 0.24880186 0.68869489 0.86765277 0.23360516 0.43887055\n\t\t 0.97516525 0.22138838 0.0063279602 0.97214693 0.21891883 0.083695017 0.89302403 0.43650177\n\t\t 0.10942709 0.89437151 0.44661805 0.025138615 0.97214693 0.21891883 0.083695017 0.94616568\n\t\t 0.21957237 0.23782037 0.87064952 0.42635515 0.24533796 0.89302403 0.43650177 0.10942709\n\t\t 0.94616568 0.21957237 0.23782037 0.86765277 0.23360516 0.43887055 0.79720467 0.42494985\n\t\t 0.42881513 0.87064952 0.42635515 0.24533796 0.86765277 0.23360516 0.43887055 0.68102646\n\t\t 0.24880186 0.68869489 0.63846719 0.42832258 0.6394524 0.79720467 0.42494985 0.42881513\n\t\t 0.89437151 0.44661805 0.025138615 0.89302403 0.43650177 0.10942709 0.7076211 0.69549757\n\t\t 0.1247218 0.70951974 0.70345229 0.041673098 0.89302403 0.43650177 0.10942709 0.87064952\n\t\t 0.42635515 0.24533796 0.68869311 0.68102705 0.24880542 0.7076211 0.69549757 0.1247218\n\t\t 0.87064952 0.42635515 0.24533796 0.79720467 0.42494985 0.42881513 0.6394484 0.63846934\n\t\t 0.42832533 0.68869311 0.68102705 0.24880542 0.79720467 0.42494985 0.42881513 0.63846719\n\t\t 0.42832258 0.6394524 0.57734841 0.57735157 0.57735074 0.6394484 0.63846934 0.42832533\n\t\t -0.017644551 0.99981117 0.0081462739 -0.037657604 0.99756694 0.058668844 -0.14330436\n\t\t 0.9867624 0.075919531 -0.081840433 0.99664158 0.0027787138 -0.037657604 0.99756694\n\t\t 0.058668844 -0.098593771 0.97185951 0.21393527 -0.25298214 0.93400192 0.25227028\n\t\t -0.14330436 0.9867624 0.075919531 -0.098593771 0.97185951 0.21393527 -0.15059455\n\t\t 0.8840763 0.44241431 -0.32661042 0.82948047 0.45308718 -0.25298214 0.93400192 0.25227028\n\t\t -0.15059455 0.8840763 0.44241431 -0.17061245 0.69332922 0.70013285 -0.35462907 0.65320647\n\t\t 0.6689989 -0.32661042 0.82948047 0.45308718 -0.081840433 0.99664158 0.0027787138\n\t\t -0.14330436 0.9867624 0.075919531 -0.31651142 0.93881547 0.1358159 -0.23022659 0.97308832\n\t\t 0.0097307842 -0.14330436 0.9867624 0.075919531 -0.25298214 0.93400192 0.25227028\n\t\t -0.3942391 0.86425757 0.31246522 -0.31651142 0.93881547 0.1358159 -0.25298214 0.93400192\n\t\t 0.25227028 -0.32661042 0.82948047 0.45308718 -0.42352286 0.77242035 0.47328123 -0.3942391\n\t\t 0.86425757 0.31246522 -0.32661042 0.82948047 0.45308718 -0.35462907 0.65320647 0.6689989\n\t\t -0.43685055 0.62992829 0.64214623 -0.42352286 0.77242035 0.47328123 -0.23022659 0.97308832\n\t\t 0.0097307842 -0.31651142 0.93881547 0.1358159 -0.64808697 0.70284903 0.29323459 -0.51891273\n\t\t 0.85182834 0.071539357 -0.31651142 0.93881547 0.1358159 -0.3942391 0.86425757 0.31246522\n\t\t -0.61735213 0.67691237 0.40083173 -0.64808697 0.70284903 0.29323459 -0.3942391 0.86425757\n\t\t 0.31246522 -0.42352286 0.77242035 0.47328123 -0.57180196 0.65903229 0.48858869 -0.61735213\n\t\t 0.67691237 0.40083173 -0.42352286 0.77242035 0.47328123 -0.43685055 0.62992829 0.64214623\n\t\t -0.55321014 0.58787864 0.59021789 -0.57180196 0.65903229 0.48858869 -0.51891273 0.85182834\n\t\t 0.071539357 -0.64808697 0.70284903 0.29323459 -0.86461908 0.34182641 0.36822364 -0.87306541\n\t\t 0.4499411 0.18790884 -0.64808697 0.70284903 0.29323459 -0.61735213 0.67691237 0.40083173\n\t\t -0.80460882 0.4202131 0.41955402 -0.86461908 0.34182641 0.36822364 -0.61735213 0.67691237\n\t\t 0.40083173 -0.57180196 0.65903229 0.48858869 -0.72365284 0.50523967 0.47016945 -0.80460882\n\t\t 0.4202131 0.41955402 -0.57180196 0.65903229 0.48858869 -0.55321014 0.58787864 0.59021789\n\t\t -0.64640772 0.53999251 0.53904086 -0.72365284 0.50523967 0.47016945 -0.017758282\n\t\t 0.013717994 0.99974811 -0.091680937 0.024872007 0.99547774 -0.15124173 0.1044024\n\t\t 0.98296797 -0.02930009 0.070410743 0.99708772 -0.091680937 0.024872007 0.99547774\n\t\t -0.27435136 0.050769962 0.96028829;\n\tsetAttr \".n[3486:3651]\" -type \"float3\"  -0.35821122 0.15795162 0.92018259 -0.15124173\n\t\t 0.1044024 0.98296797 -0.27435136 0.050769962 0.96028829 -0.56247532 0.10887342 0.81961459\n\t\t -0.65909916 0.28612989 0.69549835 -0.35821122 0.15795162 0.92018259 -0.56247532 0.10887342\n\t\t 0.81961459 -0.87421304 0.17861027 0.45149752 -0.87036097 0.36204681 0.3337571 -0.65909916\n\t\t 0.28612989 0.69549835 -0.02930009 0.070410743 0.99708772 -0.15124173 0.1044024 0.98296797\n\t\t -0.22641777 0.23124859 0.94618136 -0.06889347 0.20981997 0.97530979 -0.15124173 0.1044024\n\t\t 0.98296797 -0.35821122 0.15795162 0.92018259 -0.38610139 0.26968622 0.88215363 -0.22641777\n\t\t 0.23124859 0.94618136 -0.35821122 0.15795162 0.92018259 -0.65909916 0.28612989 0.69549835\n\t\t -0.61212844 0.36679825 0.70054102 -0.38610139 0.26968622 0.88215363 -0.65909916 0.28612989\n\t\t 0.69549835 -0.87036097 0.36204681 0.3337571 -0.80769163 0.40497744 0.42851788 -0.61212844\n\t\t 0.36679825 0.70054102 -0.06889347 0.20981997 0.97530979 -0.22641777 0.23124859 0.94618136\n\t\t -0.31765613 0.43370897 0.84320289 -0.13224296 0.43576062 0.89029461 -0.22641777 0.23124859\n\t\t 0.94618136 -0.38610139 0.26968622 0.88215363 -0.42738554 0.45014751 0.78403372 -0.31765613\n\t\t 0.43370897 0.84320289 -0.38610139 0.26968622 0.88215363 -0.61212844 0.36679825 0.70054102\n\t\t -0.57248455 0.47729617 0.66667074 -0.42738554 0.45014751 0.78403372 -0.61212844 0.36679825\n\t\t 0.70054102 -0.80769163 0.40497744 0.42851788 -0.72422731 0.46607041 0.50820589 -0.57248455\n\t\t 0.47729617 0.66667074 -0.13224296 0.43576062 0.89029461 -0.31765613 0.43370897 0.84320289\n\t\t -0.35462907 0.65320647 0.6689989 -0.17061245 0.69332922 0.70013285 -0.31765613 0.43370897\n\t\t 0.84320289 -0.42738554 0.45014751 0.78403372 -0.43685055 0.62992829 0.64214623 -0.35462907\n\t\t 0.65320647 0.6689989 -0.42738554 0.45014751 0.78403372 -0.57248455 0.47729617 0.66667074\n\t\t -0.55321014 0.58787864 0.59021789 -0.43685055 0.62992829 0.64214623 -0.57248455 0.47729617\n\t\t 0.66667074 -0.72422731 0.46607041 0.50820589 -0.64640772 0.53999251 0.53904086 -0.55321014\n\t\t 0.58787864 0.59021789 -0.999879 0.011014002 0.010990342 -0.99870491 0.047574732 0.018027196\n\t\t -0.98665547 0.030629661 0.1599153 -0.99873209 0.018490748 0.046822373 -0.99870491\n\t\t 0.047574732 0.018027196 -0.97551644 0.21572314 -0.04279286 -0.98137701 0.16242494\n\t\t 0.1025535 -0.98665547 0.030629661 0.1599153 -0.97551644 0.21572314 -0.04279286 -0.96813709\n\t\t 0.21071757 0.13530989 -0.9468174 0.11656559 0.29991519 -0.98137701 0.16242494 0.1025535\n\t\t -0.96813709 0.21071757 0.13530989 -0.87306541 0.4499411 0.18790884 -0.86461908 0.34182641\n\t\t 0.36822364 -0.9468174 0.11656559 0.29991519 -0.99873209 0.018490748 0.046822373 -0.98665547\n\t\t 0.030629661 0.1599153 -0.97658741 0.19769806 0.084809154 -0.95058203 -0.10614206\n\t\t 0.29176635 -0.98665547 0.030629661 0.1599153 -0.98137701 0.16242494 0.1025535 -0.96433711\n\t\t 0.22703832 0.13604234 -0.97658741 0.19769806 0.084809154 -0.98137701 0.16242494 0.1025535\n\t\t -0.9468174 0.11656559 0.29991519 -0.91957492 0.23458846 0.31519875 -0.96433711 0.22703832\n\t\t 0.13604234 -0.9468174 0.11656559 0.29991519 -0.86461908 0.34182641 0.36822364 -0.80460882\n\t\t 0.4202131 0.41955402 -0.91957492 0.23458846 0.31519875 -0.95058203 -0.10614206 0.29176635\n\t\t -0.97658741 0.19769806 0.084809154 -0.94473886 0.31263578 0.098627433 -0.95574296\n\t\t 0.073768355 0.28480417 -0.97658741 0.19769806 0.084809154 -0.96433711 0.22703832\n\t\t 0.13604234 -0.92085516 0.33094996 0.20614994 -0.94473886 0.31263578 0.098627433 -0.96433711\n\t\t 0.22703832 0.13604234 -0.91957492 0.23458846 0.31519875 -0.85023409 0.37457332 0.36986047\n\t\t -0.92085516 0.33094996 0.20614994 -0.91957492 0.23458846 0.31519875 -0.80460882 0.4202131\n\t\t 0.41955402 -0.72365284 0.50523967 0.47016945 -0.85023409 0.37457332 0.36986047 -0.95574296\n\t\t 0.073768355 0.28480417 -0.94473886 0.31263578 0.098627433 -0.87036097 0.36204681\n\t\t 0.3337571 -0.87421304 0.17861027 0.45149752 -0.94473886 0.31263578 0.098627433 -0.92085516\n\t\t 0.33094996 0.20614994 -0.80769163 0.40497744 0.42851788 -0.87036097 0.36204681 0.3337571\n\t\t -0.92085516 0.33094996 0.20614994 -0.85023409 0.37457332 0.36986047 -0.72422731 0.46607041\n\t\t 0.50820589 -0.80769163 0.40497744 0.42851788 -0.85023409 0.37457332 0.36986047 -0.72365284\n\t\t 0.50523967 0.47016945 -0.64640772 0.53999251 0.53904086 -0.72422731 0.46607041 0.50820589\n\t\t 0.99978542 0.014656501 0.014635657 0.99704015 0.075962625 0.011857486 0.99333876\n\t\t 0.081846625 0.081112154 0.99703515 0.012106904 0.075988419 0.99704015 0.075962625\n\t\t 0.011857486 0.97346944 0.22848986 0.012234421 0.96697479 0.24062835 0.084009245 0.99333876\n\t\t 0.081846625 0.081112154 0.97346944 0.22848986 0.012234421 0.8892172 0.45735556 0.010890901\n\t\t 0.87979287 0.46820468 0.082151465 0.96697479 0.24062835 0.084009245 0.8892172 0.45735556\n\t\t 0.010890901 0.70700222 0.70714581 0.0096208025 0.70542377 0.70426035 0.079967037\n\t\t 0.87979287 0.46820468 0.082151465 0.99703515 0.012106904 0.075988419 0.99333876 0.081846625\n\t\t 0.081112154 0.96684945 0.085012712 0.24077967 0.97350746 0.012683408 0.22830307 0.99333876\n\t\t 0.081846625 0.081112154 0.96697479 0.24062835 0.084009245 0.93764788 0.24605435 0.24550705\n\t\t 0.96684945 0.085012712 0.24077967 0.96697479 0.24062835 0.084009245 0.87979287 0.46820468\n\t\t 0.082151465 0.85190773 0.46578172 0.23937555 0.93764788 0.24605435 0.24550705 0.87979287\n\t\t 0.46820468 0.082151465 0.70542377 0.70426035 0.079967037 0.68784291 0.68728971 0.23346314\n\t\t 0.85190773 0.46578172 0.23937555 0.97350746 0.012683408 0.22830307 0.96684945 0.085012712\n\t\t 0.24077967 0.87906075 0.082782298 0.46946713 0.88935012 0.011133948 0.45709118 0.96684945\n\t\t 0.085012712 0.24077967 0.93764788 0.24605435 0.24550705 0.8515929 0.23996595 0.46605349\n\t\t 0.87906075 0.082782298 0.46946713 0.93764788 0.24605435 0.24550705 0.85190773 0.46578172\n\t\t 0.23937555 0.78361678 0.43938205 0.43919039 0.8515929 0.23996595 0.46605349;\n\tsetAttr \".n[3652:3817]\" -type \"float3\"  0.85190773 0.46578172 0.23937555 0.68784291\n\t\t 0.68728971 0.23346314 0.64236742 0.64231294 0.41808876 0.78361678 0.43938205 0.43919039\n\t\t 0.88935012 0.011133948 0.45709118 0.87906075 0.082782298 0.46946713 0.70426196 0.07996992\n\t\t 0.70542175 0.70714903 0.0096241049 0.70699894 0.87906075 0.082782298 0.46946713 0.8515929\n\t\t 0.23996595 0.46605349 0.68728876 0.23346712 0.68784237 0.70426196 0.07996992 0.70542175\n\t\t 0.8515929 0.23996595 0.46605349 0.78361678 0.43938205 0.43919039 0.64231753 0.41808805\n\t\t 0.64236331 0.68728876 0.23346712 0.68784237 0.78361678 0.43938205 0.43919039 0.64236742\n\t\t 0.64231294 0.41808876 0.57734895 0.57734901 0.57735288 0.64231753 0.41808805 0.64236331\n\t\t 0.014632324 0.99978542 0.014659894 0.01185738 0.99704015 0.075963378 0.081115097\n\t\t 0.99333882 0.081843294 0.075993173 0.99703479 0.012106305 0.01185738 0.99704015 0.075963378\n\t\t 0.01223442 0.97346944 0.22848995 0.084008537 0.96697462 0.24063008 0.081115097 0.99333882\n\t\t 0.081843294 0.01223442 0.97346944 0.22848995 0.010886061 0.88921726 0.45735538 0.08214616\n\t\t 0.87979168 0.46820799 0.084008537 0.96697462 0.24063008 0.010886061 0.88921726 0.45735538\n\t\t 0.0096154278 0.70700502 0.70714319 0.079960607 0.70542383 0.704261 0.08214616 0.87979168\n\t\t 0.46820799 0.075993173 0.99703479 0.012106305 0.081115097 0.99333882 0.081843294\n\t\t 0.24078234 0.96684903 0.085011013 0.22830617 0.97350681 0.012681619 0.081115097 0.99333882\n\t\t 0.081843294 0.084008537 0.96697462 0.24063008 0.24550675 0.93764782 0.24605478 0.24078234\n\t\t 0.96684903 0.085011013 0.084008537 0.96697462 0.24063008 0.08214616 0.87979168 0.46820799\n\t\t 0.2393775 0.85190362 0.46578825 0.24550675 0.93764782 0.24605478 0.08214616 0.87979168\n\t\t 0.46820799 0.079960607 0.70542383 0.704261 0.2334695 0.68783623 0.68729424 0.2393775\n\t\t 0.85190362 0.46578825 0.22830617 0.97350681 0.012681619 0.24078234 0.96684903 0.085011013\n\t\t 0.46946764 0.87906045 0.082781233 0.45709139 0.88935006 0.011131345 0.24078234 0.96684903\n\t\t 0.085011013 0.24550675 0.93764782 0.24605478 0.46605 0.85159534 0.2399639 0.46946764\n\t\t 0.87906045 0.082781233 0.24550675 0.93764782 0.24605478 0.2393775 0.85190362 0.46578825\n\t\t 0.43918848 0.78361481 0.43938732 0.46605 0.85159534 0.2399639 0.2393775 0.85190362\n\t\t 0.46578825 0.2334695 0.68783623 0.68729424 0.41808951 0.64236432 0.64231557 0.43918848\n\t\t 0.78361481 0.43938732 0.45709139 0.88935006 0.011131345 0.46946764 0.87906045 0.082781233\n\t\t 0.70542377 0.70426035 0.079967037 0.70700222 0.70714581 0.0096208025 0.46946764 0.87906045\n\t\t 0.082781233 0.46605 0.85159534 0.2399639 0.68784291 0.68728971 0.23346314 0.70542377\n\t\t 0.70426035 0.079967037 0.46605 0.85159534 0.2399639 0.43918848 0.78361481 0.43938732\n\t\t 0.64236742 0.64231294 0.41808876 0.68784291 0.68728971 0.23346314 0.43918848 0.78361481\n\t\t 0.43938732 0.41808951 0.64236432 0.64231557 0.57734895 0.57734901 0.57735288 0.64236742\n\t\t 0.64231294 0.41808876 0.014658979 0.01463992 0.99978536 0.075964577 0.011857929 0.99703997\n\t\t 0.081846766 0.081115387 0.99333858 0.012108324 0.075995617 0.99703461 0.075964577\n\t\t 0.011857929 0.99703997 0.22848956 0.01222665 0.97346967 0.24062634 0.084003948 0.96697593\n\t\t 0.081846766 0.081115387 0.99333858 0.22848956 0.01222665 0.97346967 0.45735478 0.010886849\n\t\t 0.88921762 0.4682056 0.082150757 0.87979245 0.24062634 0.084003948 0.96697593 0.45735478\n\t\t 0.010886849 0.88921762 0.70714903 0.0096241049 0.70699894 0.70426196 0.07996992 0.70542175\n\t\t 0.4682056 0.082150757 0.87979245 0.012108324 0.075995617 0.99703461 0.081846766 0.081115387\n\t\t 0.99333858 0.085010812 0.24078095 0.96684939 0.012682706 0.22830197 0.97350776 0.081846766\n\t\t 0.081115387 0.99333858 0.24062634 0.084003948 0.96697593 0.24605161 0.2455156 0.93764633\n\t\t 0.085010812 0.24078095 0.96684939 0.24062634 0.084003948 0.96697593 0.4682056 0.082150757\n\t\t 0.87979245 0.46578506 0.23938048 0.85190445 0.24605161 0.2455156 0.93764633 0.4682056\n\t\t 0.082150757 0.87979245 0.70426196 0.07996992 0.70542175 0.68728876 0.23346712 0.68784237\n\t\t 0.46578506 0.23938048 0.85190445 0.012682706 0.22830197 0.97350776 0.085010812 0.24078095\n\t\t 0.96684939 0.082777597 0.46946502 0.87906229 0.011130176 0.45709196 0.88934976 0.085010812\n\t\t 0.24078095 0.96684939 0.24605161 0.2455156 0.93764633 0.23996709 0.46605223 0.8515932\n\t\t 0.082777597 0.46946502 0.87906229 0.24605161 0.2455156 0.93764633 0.46578506 0.23938048\n\t\t 0.85190445 0.43939036 0.43919474 0.78360969 0.23996709 0.46605223 0.8515932 0.46578506\n\t\t 0.23938048 0.85190445 0.68728876 0.23346712 0.68784237 0.64231753 0.41808805 0.64236331\n\t\t 0.43939036 0.43919474 0.78360969 0.011130176 0.45709196 0.88934976 0.082777597 0.46946502\n\t\t 0.87906229 0.079960607 0.70542383 0.704261 0.0096154278 0.70700502 0.70714319 0.082777597\n\t\t 0.46946502 0.87906229 0.23996709 0.46605223 0.8515932 0.2334695 0.68783623 0.68729424\n\t\t 0.079960607 0.70542383 0.704261 0.23996709 0.46605223 0.8515932 0.43939036 0.43919474\n\t\t 0.78360969 0.41808951 0.64236432 0.64231557 0.2334695 0.68783623 0.68729424 0.43939036\n\t\t 0.43919474 0.78360969 0.64231753 0.41808805 0.64236331 0.57734895 0.57734901 0.57735288\n\t\t 0.41808951 0.64236432 0.64231557 0.019032281 0.0092324354 0.99977624 0.022492023\n\t\t 0.070863426 0.99723238 0.086399697 0.07073085 0.99374658 0.077310175 0.0015866298\n\t\t 0.99700582 0.022492023 0.070863426 0.99723238 0.030500885 0.22566165 0.97372806 0.096248634\n\t\t 0.23236874 0.96785378 0.086399697 0.07073085 0.99374658 0.030500885 0.22566165 0.97372806\n\t\t 0.039383776 0.45315042 0.89056373 0.1135463 0.45101735 0.88526309 0.096248634 0.23236874\n\t\t 0.96785378 0.039383776 0.45315042 0.89056373 0.041676875 0.70951843 0.70345348 0.12473142\n\t\t 0.7076171 0.69550002 0.1135463 0.45101735 0.88526309 0.077310175 0.0015866298 0.99700582\n\t\t 0.086399697 0.07073085 0.99374658;\n\tsetAttr \".n[3818:3983]\" -type \"float3\"  0.2189129 0.083699398 0.97214788 0.22138679\n\t\t 0.0063286861 0.97516555 0.086399697 0.07073085 0.99374658 0.096248634 0.23236874\n\t\t 0.96785378 0.21956868 0.23782596 0.94616508 0.2189129 0.083699398 0.97214788 0.096248634\n\t\t 0.23236874 0.96785378 0.1135463 0.45101735 0.88526309 0.23360837 0.4388679 0.86765319\n\t\t 0.21956868 0.23782596 0.94616508 0.1135463 0.45101735 0.88526309 0.12473142 0.7076171\n\t\t 0.69550002 0.24881174 0.68869197 0.6810258 0.23360837 0.4388679 0.86765319 0.22138679\n\t\t 0.0063286861 0.97516555 0.2189129 0.083699398 0.97214788 0.43649775 0.10943452 0.89302516\n\t\t 0.44661793 0.025142079 0.89437145 0.2189129 0.083699398 0.97214788 0.21956868 0.23782596\n\t\t 0.94616508 0.42635345 0.24534111 0.87064952 0.43649775 0.10943452 0.89302516 0.21956868\n\t\t 0.23782596 0.94616508 0.23360837 0.4388679 0.86765319 0.4249537 0.4288083 0.79720628\n\t\t 0.42635345 0.24534111 0.87064952 0.23360837 0.4388679 0.86765319 0.24881174 0.68869197\n\t\t 0.6810258 0.4283275 0.63944834 0.63846779 0.4249537 0.4288083 0.79720628 0.44661793\n\t\t 0.025142079 0.89437145 0.43649775 0.10943452 0.89302516 0.69549984 0.12472903 0.70761764\n\t\t 0.7034533 0.041677091 0.70951861 0.43649775 0.10943452 0.89302516 0.42635345 0.24534111\n\t\t 0.87064952 0.68102694 0.24880466 0.6886934 0.69549984 0.12472903 0.70761764 0.42635345\n\t\t 0.24534111 0.87064952 0.4249537 0.4288083 0.79720628 0.63847023 0.42832217 0.63944966\n\t\t 0.68102694 0.24880466 0.6886934 0.4249537 0.4288083 0.79720628 0.4283275 0.63944834\n\t\t 0.63846779 0.57735157 0.57735008 0.57734913 0.63847023 0.42832217 0.63944966 0.0092430925\n\t\t 0.99977618 0.019033425 0.070870534 0.9972319 0.022490731 0.070738167 0.99374539 0.086407207\n\t\t 0.0015926862 0.99700558 0.077313498 0.070870534 0.9972319 0.022490731 0.2256546 0.97372985\n\t\t 0.030499889 0.23236474 0.96785355 0.09626022 0.070738167 0.99374539 0.086407207 0.2256546\n\t\t 0.97372985 0.030499889 0.45314685 0.89056557 0.039382476 0.45101875 0.8852616 0.11355122\n\t\t 0.23236474 0.96785355 0.09626022 0.45314685 0.89056557 0.039382476 0.70952213 0.70344985\n\t\t 0.041673079 0.7076211 0.69549757 0.1247218 0.45101875 0.8852616 0.11355122 0.0015926862\n\t\t 0.99700558 0.077313498 0.070738167 0.99374539 0.086407207 0.083695278 0.97214645\n\t\t 0.21892156 0.0063267737 0.97516513 0.22138876 0.070738167 0.99374539 0.086407207\n\t\t 0.23236474 0.96785355 0.09626022 0.23782718 0.94616228 0.21957946 0.083695278 0.97214645\n\t\t 0.21892156 0.23236474 0.96785355 0.09626022 0.45101875 0.8852616 0.11355122 0.43887672\n\t\t 0.86764836 0.23360987 0.23782718 0.94616228 0.21957946 0.45101875 0.8852616 0.11355122\n\t\t 0.7076211 0.69549757 0.1247218 0.68869174 0.68102807 0.24880607 0.43887672 0.86764836\n\t\t 0.23360987 0.0063267737 0.97516513 0.22138876 0.083695278 0.97214645 0.21892156 0.10943477\n\t\t 0.89302576 0.43649641 0.025139421 0.89437109 0.44661868 0.083695278 0.97214645 0.21892156\n\t\t 0.23782718 0.94616228 0.21957946 0.24534577 0.87064946 0.42635074 0.10943477 0.89302576\n\t\t 0.43649641 0.23782718 0.94616228 0.21957946 0.43887672 0.86764836 0.23360987 0.42881456\n\t\t 0.79720515 0.42494926 0.24534577 0.87064946 0.42635074 0.43887672 0.86764836 0.23360987\n\t\t 0.68869174 0.68102807 0.24880607 0.63944799 0.63846976 0.42832568 0.42881456 0.79720515\n\t\t 0.42494926 0.025139421 0.89437109 0.44661868 0.10943477 0.89302576 0.43649641 0.12473142\n\t\t 0.7076171 0.69550002 0.041676875 0.70951843 0.70345348 0.10943477 0.89302576 0.43649641\n\t\t 0.24534577 0.87064946 0.42635074 0.24881174 0.68869197 0.6810258 0.12473142 0.7076171\n\t\t 0.69550002 0.24534577 0.87064946 0.42635074 0.42881456 0.79720515 0.42494926 0.4283275\n\t\t 0.63944834 0.63846779 0.24881174 0.68869197 0.6810258 0.42881456 0.79720515 0.42494926\n\t\t 0.63944799 0.63846976 0.42832568 0.57735157 0.57735008 0.57734913 0.4283275 0.63944834\n\t\t 0.63846779 0.99977624 0.0190304 0.0092335399 0.99723256 0.022491634 0.070861496 0.99374634\n\t\t 0.086402498 0.070730314 0.99700588 0.077309884 0.0015865446 0.99723256 0.022491634\n\t\t 0.070861496 0.97372866 0.030502949 0.2256594 0.96785432 0.09625566 0.23236333 0.99374634\n\t\t 0.086402498 0.070730314 0.97372866 0.030502949 0.2256594 0.89056504 0.039385039 0.45314759\n\t\t 0.88526356 0.11355 0.45101523 0.96785432 0.09625566 0.23236333 0.89056504 0.039385039\n\t\t 0.45314759 0.70345396 0.041674834 0.70951802 0.69549948 0.12472428 0.70761883 0.88526356\n\t\t 0.11355 0.45101523 0.99700588 0.077309884 0.0015865446 0.99374634 0.086402498 0.070730314\n\t\t 0.97214693 0.21891883 0.083695017 0.97516525 0.22138837 0.0063279597 0.99374634 0.086402498\n\t\t 0.070730314 0.96785432 0.09625566 0.23236333 0.9461652 0.21957317 0.23782121 0.97214693\n\t\t 0.21891883 0.083695017 0.96785432 0.09625566 0.23236333 0.88526356 0.11355 0.45101523\n\t\t 0.86765289 0.23360525 0.43887031 0.9461652 0.21957317 0.23782121 0.88526356 0.11355\n\t\t 0.45101523 0.69549948 0.12472428 0.70761883 0.68102783 0.24880116 0.68869376 0.86765289\n\t\t 0.23360525 0.43887031 0.97516525 0.22138837 0.0063279597 0.97214693 0.21891883 0.083695017\n\t\t 0.89302403 0.43650177 0.10942709 0.89437151 0.44661805 0.025138626 0.97214693 0.21891883\n\t\t 0.083695017 0.9461652 0.21957317 0.23782121 0.87064797 0.42635727 0.24533963 0.89302403\n\t\t 0.43650177 0.10942709 0.9461652 0.21957317 0.23782121 0.86765289 0.23360525 0.43887031\n\t\t 0.7972042 0.42495096 0.42881486 0.87064797 0.42635727 0.24533963 0.86765289 0.23360525\n\t\t 0.43887031 0.68102783 0.24880116 0.68869376 0.63846922 0.42832175 0.63945109 0.7972042\n\t\t 0.42495096 0.42881486 0.89437151 0.44661805 0.025138626 0.89302403 0.43650177 0.10942709\n\t\t 0.7076211 0.69549757 0.1247218 0.70952213 0.70344985 0.041673079 0.89302403 0.43650177\n\t\t 0.10942709 0.87064797 0.42635727 0.24533963 0.68869174 0.68102807 0.24880607 0.7076211\n\t\t 0.69549757 0.1247218;\n\tsetAttr \".n[3984:4149]\" -type \"float3\"  0.87064797 0.42635727 0.24533963 0.7972042\n\t\t 0.42495096 0.42881486 0.63944799 0.63846976 0.42832568 0.68869174 0.68102807 0.24880607\n\t\t 0.7972042 0.42495096 0.42881486 0.63846922 0.42832175 0.63945109 0.57735157 0.57735008\n\t\t 0.57734913 0.63944799 0.63846976 0.42832568 0.019031141 0.0092337709 0.99977624 0.022491178\n\t\t 0.070862472 0.99723244 0.086403079 0.070730232 0.99374628 0.077311128 0.0015865911\n\t\t 0.99700576 0.022491178 0.070862472 0.99723244 0.030502426 0.22566026 0.97372842 0.096254274\n\t\t 0.2323641 0.96785432 0.086403079 0.070730232 0.99374628 0.030502426 0.22566026 0.97372842\n\t\t 0.039385352 0.45314962 0.89056402 0.11354969 0.45101556 0.8852635 0.096254274 0.2323641\n\t\t 0.96785432 0.039385352 0.45314962 0.89056402 0.041677583 0.70951796 0.70345372 0.12473237\n\t\t 0.70761824 0.69549859 0.11354969 0.45101556 0.8852635 0.077311128 0.0015865911 0.99700576\n\t\t 0.086403079 0.070730232 0.99374628 0.21891525 0.083695129 0.9721477 0.22138779 0.0063272878\n\t\t 0.97516531 0.086403079 0.070730232 0.99374628 0.096254274 0.2323641 0.96785432 0.21957186\n\t\t 0.23782216 0.94616532 0.21891525 0.083695129 0.9721477 0.096254274 0.2323641 0.96785432\n\t\t 0.11354969 0.45101556 0.8852635 0.23360808 0.43886894 0.86765277 0.21957186 0.23782216\n\t\t 0.94616532 0.11354969 0.45101556 0.8852635 0.12473237 0.70761824 0.69549859 0.24881095\n\t\t 0.6886934 0.68102461 0.23360808 0.43886894 0.86765277 0.22138779 0.0063272878 0.97516531\n\t\t 0.21891525 0.083695129 0.9721477 0.43649662 0.10942773 0.89302647 0.44661665 0.02513851\n\t\t 0.89437222 0.21891525 0.083695129 0.9721477 0.21957186 0.23782216 0.94616532 0.42635429\n\t\t 0.24533945 0.87064946 0.43649662 0.10942773 0.89302647 0.21957186 0.23782216 0.94616532\n\t\t 0.23360808 0.43886894 0.86765277 0.42495182 0.42880869 0.79720712 0.42635429 0.24533945\n\t\t 0.87064946 0.23360808 0.43886894 0.86765277 0.24881095 0.6886934 0.68102461 0.42832434\n\t\t 0.63945055 0.63846797 0.42495182 0.42880869 0.79720712 0.44661665 0.02513851 0.89437222\n\t\t 0.43649662 0.10942773 0.89302647 0.69549948 0.12472428 0.70761883 0.70345396 0.041674834\n\t\t 0.70951802 0.43649662 0.10942773 0.89302647 0.42635429 0.24533945 0.87064946 0.68102783\n\t\t 0.24880116 0.68869376 0.69549948 0.12472428 0.70761883 0.42635429 0.24533945 0.87064946\n\t\t 0.42495182 0.42880869 0.79720712 0.63846922 0.42832175 0.63945109 0.68102783 0.24880116\n\t\t 0.68869376 0.42495182 0.42880869 0.79720712 0.42832434 0.63945055 0.63846797 0.57735157\n\t\t 0.57735008 0.57734913 0.63846922 0.42832175 0.63945109 0.009237417 0.99977618 0.019033218\n\t\t 0.070867844 0.99723214 0.022490298 0.070735559 0.99374551 0.086407579 0.0015927262\n\t\t 0.99700546 0.077313855 0.070867844 0.99723214 0.022490298 0.22565855 0.97372895 0.030499594\n\t\t 0.23236604 0.96785325 0.096260399 0.070735559 0.99374551 0.086407579 0.22565855 0.97372895\n\t\t 0.030499594 0.45314762 0.8905651 0.039383285 0.45101923 0.88526118 0.11355292 0.23236604\n\t\t 0.96785325 0.096260399 0.45314762 0.8905651 0.039383285 0.70952165 0.70345014 0.041675992\n\t\t 0.70762044 0.69549727 0.12472704 0.45101923 0.88526118 0.11355292 0.0015927262 0.99700546\n\t\t 0.077313855 0.070735559 0.99374551 0.086407579 0.083696052 0.97214621 0.2189215 0.0063268249\n\t\t 0.97516495 0.22138926 0.070735559 0.99374551 0.086407579 0.23236604 0.96785325 0.096260399\n\t\t 0.23782738 0.94616234 0.21957907 0.083696052 0.97214621 0.2189215 0.23236604 0.96785325\n\t\t 0.096260399 0.45101923 0.88526118 0.11355292 0.43887299 0.86765021 0.23361009 0.23782738\n\t\t 0.94616234 0.21957907 0.45101923 0.88526118 0.11355292 0.70762044 0.69549727 0.12472704\n\t\t 0.68868989 0.68102932 0.24880797 0.43887299 0.86765021 0.23361009 0.0063268249 0.97516495\n\t\t 0.22138926 0.083696052 0.97214621 0.2189215 0.10943544 0.89302593 0.43649572 0.025140164\n\t\t 0.89437133 0.44661814 0.083696052 0.97214621 0.2189215 0.23782738 0.94616234 0.21957907\n\t\t 0.24534622 0.87064976 0.42634973 0.10943544 0.89302593 0.43649572 0.23782738 0.94616234\n\t\t 0.21957907 0.43887299 0.86765021 0.23361009 0.42881224 0.79720801 0.42494652 0.24534622\n\t\t 0.87064976 0.42634973 0.43887299 0.86765021 0.23361009 0.68868989 0.68102932 0.24880797\n\t\t 0.63944811 0.63847166 0.42832246 0.42881224 0.79720801 0.42494652 0.025140164 0.89437133\n\t\t 0.44661814 0.10943544 0.89302593 0.43649572 0.12473237 0.70761824 0.69549859 0.041677583\n\t\t 0.70951796 0.70345372 0.10943544 0.89302593 0.43649572 0.24534622 0.87064976 0.42634973\n\t\t 0.24881095 0.6886934 0.68102461 0.12473237 0.70761824 0.69549859 0.24534622 0.87064976\n\t\t 0.42634973 0.42881224 0.79720801 0.42494652 0.42832434 0.63945055 0.63846797 0.24881095\n\t\t 0.6886934 0.68102461 0.42881224 0.79720801 0.42494652 0.63944811 0.63847166 0.42832246\n\t\t 0.57735157 0.57735008 0.57734913 0.42832434 0.63945055 0.63846797 0.99977624 0.019032631\n\t\t 0.0092321942 0.99723262 0.022492275 0.070860811 0.9937464 0.086401433 0.070731752\n\t\t 0.9970057 0.077311262 0.0015880519 0.99723262 0.022492275 0.070860811 0.9737283 0.03050269\n\t\t 0.22566074 0.96785378 0.096252203 0.23236729 0.9937464 0.086401433 0.070731752 0.9737283\n\t\t 0.03050269 0.22566074 0.89056373 0.039385147 0.45315021 0.88526213 0.11354903 0.45101833\n\t\t 0.96785378 0.096252203 0.23236729 0.89056373 0.039385147 0.45315021 0.7034533 0.041677091\n\t\t 0.70951861 0.69549984 0.12472903 0.70761764 0.88526213 0.11354903 0.45101833 0.9970057\n\t\t 0.077311262 0.0015880519 0.9937464 0.086401433 0.070731752 0.97214693 0.21891731\n\t\t 0.083699539 0.97516525 0.2213884 0.0063309991 0.9937464 0.086401433 0.070731752 0.96785378\n\t\t 0.096252203 0.23236729 0.94616514 0.21957038 0.23782422 0.97214693 0.21891731 0.083699539\n\t\t 0.96785378 0.096252203 0.23236729 0.88526213 0.11354903 0.45101833 0.86765313 0.2336058\n\t\t 0.43886954 0.94616514 0.21957038 0.23782422 0.88526213 0.11354903 0.45101833 0.69549984\n\t\t 0.12472903 0.70761764;\n\tsetAttr \".n[4150:4315]\" -type \"float3\"  0.68102694 0.24880466 0.6886934 0.86765313\n\t\t 0.2336058 0.43886954 0.97516525 0.2213884 0.0063309991 0.97214693 0.21891731 0.083699539\n\t\t 0.89302427 0.43649971 0.10943341 0.89437205 0.44661686 0.025142234 0.97214693 0.21891731\n\t\t 0.083699539 0.94616514 0.21957038 0.23782422 0.87064809 0.42635658 0.24534081 0.89302427\n\t\t 0.43649971 0.10943341 0.94616514 0.21957038 0.23782422 0.86765313 0.2336058 0.43886954\n\t\t 0.79720563 0.42495072 0.42881241 0.87064809 0.42635658 0.24534081 0.86765313 0.2336058\n\t\t 0.43886954 0.68102694 0.24880466 0.6886934 0.63847023 0.42832217 0.63944966 0.79720563\n\t\t 0.42495072 0.42881241 0.89437205 0.44661686 0.025142234 0.89302427 0.43649971 0.10943341\n\t\t 0.70762044 0.69549727 0.12472704 0.70952165 0.70345014 0.041675992 0.89302427 0.43649971\n\t\t 0.10943341 0.87064809 0.42635658 0.24534081 0.68868989 0.68102932 0.24880797 0.70762044\n\t\t 0.69549727 0.12472704 0.87064809 0.42635658 0.24534081 0.79720563 0.42495072 0.42881241\n\t\t 0.63944811 0.63847166 0.42832246 0.68868989 0.68102932 0.24880797 0.79720563 0.42495072\n\t\t 0.42881241 0.63847023 0.42832217 0.63944966 0.57735157 0.57735008 0.57734913 0.63944811\n\t\t 0.63847166 0.42832246 0.014660273 0.014639944 0.99978536 0.075964652 0.011857473\n\t\t 0.99703997 0.081846505 0.081114158 0.99333876 0.012108505 0.07599245 0.99703497 0.075964652\n\t\t 0.011857473 0.99703997 0.22849116 0.012228903 0.97346914 0.24062954 0.084006399 0.96697485\n\t\t 0.081846505 0.081114158 0.99333876 0.22849116 0.012228903 0.97346914 0.45735672 0.010886533\n\t\t 0.88921672 0.46820551 0.082150325 0.87979257 0.24062954 0.084006399 0.96697485 0.45735672\n\t\t 0.010886533 0.88921672 0.70714712 0.0096208155 0.70700109 0.70425731 0.079968669\n\t\t 0.70542657 0.46820551 0.082150325 0.87979257 0.012108505 0.07599245 0.99703497 0.081846505\n\t\t 0.081114158 0.99333876 0.085012257 0.24078074 0.96684927 0.01268273 0.22830153 0.97350788\n\t\t 0.081846505 0.081114158 0.99333876 0.24062954 0.084006399 0.96697485 0.24605481 0.24551274\n\t\t 0.93764627 0.085012257 0.24078074 0.96684927 0.24062954 0.084006399 0.96697485 0.46820551\n\t\t 0.082150325 0.87979257 0.46578243 0.23937984 0.85190618 0.24605481 0.24551274 0.93764627\n\t\t 0.46820551 0.082150325 0.87979257 0.70425731 0.079968669 0.70542657 0.68728727 0.23346722\n\t\t 0.68784392 0.46578243 0.23937984 0.85190618 0.01268273 0.22830153 0.97350788 0.085012257\n\t\t 0.24078074 0.96684927 0.082781479 0.46946886 0.87905991 0.011129044 0.45709383 0.8893488\n\t\t 0.085012257 0.24078074 0.96684927 0.24605481 0.24551274 0.93764627 0.239971 0.46605265\n\t\t 0.851592 0.082781479 0.46946886 0.87905991 0.24605481 0.24551274 0.93764627 0.46578243\n\t\t 0.23937984 0.85190618 0.43938792 0.43919471 0.78361112 0.239971 0.46605265 0.851592\n\t\t 0.46578243 0.23937984 0.85190618 0.68728727 0.23346722 0.68784392 0.6423142 0.41809303\n\t\t 0.64236343 0.43938792 0.43919471 0.78361112 0.011129044 0.45709383 0.8893488 0.082781479\n\t\t 0.46946886 0.87905991 0.079962566 0.70542699 0.70425761 0.0096141305 0.70700425 0.70714396\n\t\t 0.082781479 0.46946886 0.87905991 0.239971 0.46605265 0.851592 0.23347312 0.68783742\n\t\t 0.68729174 0.079962566 0.70542699 0.70425761 0.239971 0.46605265 0.851592 0.43938792\n\t\t 0.43919471 0.78361112 0.41809645 0.64236099 0.64231426 0.23347312 0.68783742 0.68729174\n\t\t 0.43938792 0.43919471 0.78361112 0.6423142 0.41809303 0.64236343 0.57734871 0.57735062\n\t\t 0.57735151 0.41809645 0.64236099 0.64231426 0.9997853 0.014659029 0.014641142 0.99704003\n\t\t 0.075963587 0.011857724 0.99333888 0.08184541 0.081111565 0.99703503 0.012108203\n\t\t 0.075990126 0.99704003 0.075963587 0.011857724 0.97346944 0.22848992 0.0122287 0.96697545\n\t\t 0.24062772 0.084004611 0.99333888 0.08184541 0.081111565 0.97346944 0.22848992 0.0122287\n\t\t 0.88921702 0.45735592 0.010888282 0.87979192 0.46820676 0.082149506 0.96697545 0.24062772\n\t\t 0.084004611 0.88921702 0.45735592 0.010888282 0.70700353 0.70714462 0.0096224323\n\t\t 0.70542312 0.70426077 0.079967692 0.87979192 0.46820676 0.082149506 0.99703503 0.012108203\n\t\t 0.075990126 0.99333888 0.08184541 0.081111565 0.96684939 0.085011549 0.2407804 0.97350806\n\t\t 0.012683176 0.22830094 0.99333888 0.08184541 0.081111565 0.96697545 0.24062772 0.084004611\n\t\t 0.93764663 0.24605457 0.24551138 0.96684939 0.085011549 0.2407804 0.96697545 0.24062772\n\t\t 0.084004611 0.87979192 0.46820676 0.082149506 0.85190362 0.4657867 0.23938031 0.93764663\n\t\t 0.24605457 0.24551138 0.87979192 0.46820676 0.082149506 0.70542312 0.70426077 0.079967692\n\t\t 0.68784052 0.68729162 0.23346446 0.85190362 0.4657867 0.23938031 0.97350806 0.012683176\n\t\t 0.22830094 0.96684939 0.085011549 0.2407804 0.87905926 0.08278203 0.46946993 0.8893488\n\t\t 0.011131424 0.45709395 0.96684939 0.085011549 0.2407804 0.93764663 0.24605457 0.24551138\n\t\t 0.85159242 0.23996609 0.4660545 0.87905926 0.08278203 0.46946993 0.93764663 0.24605457\n\t\t 0.24551138 0.85190362 0.4657867 0.23938031 0.78361076 0.43938726 0.43919605 0.85159242\n\t\t 0.23996609 0.4660545 0.85190362 0.4657867 0.23938031 0.68784052 0.68729162 0.23346446\n\t\t 0.6423648 0.64231265 0.41809314 0.78361076 0.43938726 0.43919605 0.8893488 0.011131424\n\t\t 0.45709395 0.87905926 0.08278203 0.46946993 0.70425731 0.079968669 0.70542657 0.70714712\n\t\t 0.0096208155 0.70700109 0.87905926 0.08278203 0.46946993 0.85159242 0.23996609 0.4660545\n\t\t 0.68728727 0.23346722 0.68784392 0.70425731 0.079968669 0.70542657 0.85159242 0.23996609\n\t\t 0.4660545 0.78361076 0.43938726 0.43919605 0.6423142 0.41809303 0.64236343 0.68728727\n\t\t 0.23346722 0.68784392 0.78361076 0.43938726 0.43919605 0.6423648 0.64231265 0.41809314\n\t\t 0.57734871 0.57735062 0.57735151 0.6423142 0.41809303 0.64236343 0.014632314 0.99978542\n\t\t 0.01465987 0.011857364 0.99704003 0.075964034 0.081115276 0.99333882 0.081843726\n\t\t 0.075993367 0.99703479 0.012106649;\n\tsetAttr \".n[4316:4481]\" -type \"float3\"  0.011857364 0.99704003 0.075964034 0.012234399\n\t\t 0.97346914 0.22849108 0.08400882 0.96697456 0.24062969 0.081115276 0.99333882 0.081843726\n\t\t 0.012234399 0.97346914 0.22849108 0.010886019 0.88921696 0.4573561 0.082146734 0.8797918\n\t\t 0.46820736 0.08400882 0.96697456 0.24062969 0.010886019 0.88921696 0.4573561 0.0096141305\n\t\t 0.70700425 0.70714396 0.079962566 0.70542699 0.70425761 0.082146734 0.8797918 0.46820736\n\t\t 0.075993367 0.99703479 0.012106649 0.081115276 0.99333882 0.081843726 0.24078219\n\t\t 0.96684909 0.085010044 0.22830561 0.97350693 0.012681522 0.081115276 0.99333882 0.081843726\n\t\t 0.08400882 0.96697456 0.24062969 0.24550851 0.9376477 0.24605358 0.24078219 0.96684909\n\t\t 0.085010044 0.08400882 0.96697456 0.24062969 0.082146734 0.8797918 0.46820736 0.2393803\n\t\t 0.85190302 0.46578771 0.24550851 0.9376477 0.24605358 0.082146734 0.8797918 0.46820736\n\t\t 0.079962566 0.70542699 0.70425761 0.23347312 0.68783742 0.68729174 0.2393803 0.85190302\n\t\t 0.46578771 0.22830561 0.97350693 0.012681522 0.24078219 0.96684909 0.085010044 0.46946695\n\t\t 0.87906086 0.082781084 0.45709181 0.88934982 0.011132451 0.24078219 0.96684909 0.085010044\n\t\t 0.24550851 0.9376477 0.24605358 0.46605355 0.85159385 0.23996258 0.46946695 0.87906086\n\t\t 0.082781084 0.24550851 0.9376477 0.24605358 0.2393803 0.85190302 0.46578771 0.43920013\n\t\t 0.78360838 0.43938729 0.46605355 0.85159385 0.23996258 0.2393803 0.85190302 0.46578771\n\t\t 0.23347312 0.68783742 0.68729174 0.41809645 0.64236099 0.64231426 0.43920013 0.78360838\n\t\t 0.43938729 0.45709181 0.88934982 0.011132451 0.46946695 0.87906086 0.082781084 0.70542312\n\t\t 0.70426077 0.079967692 0.70700353 0.70714462 0.0096224323 0.46946695 0.87906086 0.082781084\n\t\t 0.46605355 0.85159385 0.23996258 0.68784052 0.68729162 0.23346446 0.70542312 0.70426077\n\t\t 0.079967692 0.46605355 0.85159385 0.23996258 0.43920013 0.78360838 0.43938729 0.6423648\n\t\t 0.64231265 0.41809314 0.68784052 0.68729162 0.23346446 0.43920013 0.78360838 0.43938729\n\t\t 0.41809645 0.64236099 0.64231426 0.57734871 0.57735062 0.57735151 0.6423648 0.64231265\n\t\t 0.41809314 0.99897629 0.031982388 0.031991772 0.994546 0.090522192 0.051805466 0.98120356\n\t\t 0.13129294 0.14142708 0.9938522 0.056310378 0.095325299 0.994546 0.090522192 0.051805466\n\t\t 0.97173399 0.22668505 0.065932006 0.95913249 0.23088366 0.16357762 0.98120356 0.13129294\n\t\t 0.14142708 0.97173399 0.22668505 0.065932006 0.89076531 0.45079222 0.057650149 0.88527471\n\t\t 0.44082075 0.14820915 0.95913249 0.23088366 0.16357762 0.89076531 0.45079222 0.057650149\n\t\t 0.70305127 0.70907331 0.054164633 0.69389832 0.7069307 0.13694593 0.88527471 0.44082075\n\t\t 0.14820915 0.9938522 0.056310378 0.095325299 0.98120356 0.13129294 0.14142708 0.95672619\n\t\t 0.15836552 0.24412188 0.96992338 0.078819469 0.23029545 0.98120356 0.13129294 0.14142708\n\t\t 0.95913249 0.23088366 0.16357762 0.94027662 0.2302175 0.25075805 0.95672619 0.15836552\n\t\t 0.24412188 0.95913249 0.23088366 0.16357762 0.88527471 0.44082075 0.14820915 0.87184387\n\t\t 0.42455515 0.24421546 0.94027662 0.2302175 0.25075805 0.88527471 0.44082075 0.14820915\n\t\t 0.69389832 0.7069307 0.13694593 0.68200141 0.69238812 0.23552673 0.87184387 0.42455515\n\t\t 0.24421546 0.96992338 0.078819469 0.23029545 0.95672619 0.15836552 0.24412188 0.88990557\n\t\t 0.14944118 0.43097031 0.89243901 0.070462197 0.44563195 0.95672619 0.15836552 0.24412188\n\t\t 0.94027662 0.2302175 0.25075805 0.87744319 0.22960006 0.42116159 0.88990557 0.14944118\n\t\t 0.43097031 0.94027662 0.2302175 0.25075805 0.87184387 0.42455515 0.24421546 0.81122667\n\t\t 0.41219762 0.41473395 0.87744319 0.22960006 0.42116159 0.87184387 0.42455515 0.24421546\n\t\t 0.68200141 0.69238812 0.23552673 0.64466619 0.64694488 0.40726855 0.81122667 0.41219762\n\t\t 0.41473395 0.89243901 0.070462197 0.44563195 0.88990557 0.14944118 0.43097031 0.70693284\n\t\t 0.13694018 0.69389731 0.70907646 0.054161631 0.70304835 0.88990557 0.14944118 0.43097031\n\t\t 0.87744319 0.22960006 0.42116159 0.69238931 0.23552884 0.68199933 0.70693284 0.13694018\n\t\t 0.69389731 0.87744319 0.22960006 0.42116159 0.81122667 0.41219762 0.41473395 0.64694756\n\t\t 0.40728059 0.64465606 0.69238931 0.23552884 0.68199933 0.81122667 0.41219762 0.41473395\n\t\t 0.64466619 0.64694488 0.40726855 0.57735443 0.57735348 0.57734293 0.64694756 0.40728059\n\t\t 0.64465606 0.031992186 0.99897629 0.03198272 0.051805403 0.994546 0.090522438 0.14143366\n\t\t 0.98120284 0.13129167 0.095331505 0.99385166 0.056309227 0.051805403 0.994546 0.090522438\n\t\t 0.065936677 0.97173381 0.22668444 0.1635825 0.95913178 0.23088312 0.14143366 0.98120284\n\t\t 0.13129167 0.065936677 0.97173381 0.22668444 0.057649367 0.89076549 0.45079201 0.14820924\n\t\t 0.88527483 0.44082019 0.1635825 0.95913178 0.23088312 0.057649367 0.89076549 0.45079201\n\t\t 0.05415481 0.70304918 0.70907623 0.13694495 0.69389796 0.70693123 0.14820924 0.88527483\n\t\t 0.44082019 0.095331505 0.99385166 0.056309227 0.14143366 0.98120284 0.13129167 0.24412797\n\t\t 0.95672482 0.15836363 0.23029622 0.96992332 0.078818761 0.14143366 0.98120284 0.13129167\n\t\t 0.1635825 0.95913178 0.23088312 0.2507616 0.94027483 0.23022164 0.24412797 0.95672482\n\t\t 0.15836363 0.1635825 0.95913178 0.23088312 0.14820924 0.88527483 0.44082019 0.24422315\n\t\t 0.87184346 0.42455143 0.2507616 0.94027483 0.23022164 0.14820924 0.88527483 0.44082019\n\t\t 0.13694495 0.69389796 0.70693123 0.23554116 0.68199587 0.69238859 0.24422315 0.87184346\n\t\t 0.42455143 0.23029622 0.96992332 0.078818761 0.24412797 0.95672482 0.15836363 0.43097323\n\t\t 0.88990355 0.14944507 0.44562882 0.89244032 0.070464596 0.24412797 0.95672482 0.15836363\n\t\t 0.2507616 0.94027483 0.23022164 0.42117429 0.87743711 0.22960018 0.43097323 0.88990355\n\t\t 0.14944507 0.2507616 0.94027483 0.23022164 0.24422315 0.87184346 0.42455143;\n\tsetAttr \".n[4482:4647]\" -type \"float3\"  0.41475195 0.8112213 0.41219023 0.42117429\n\t\t 0.87743711 0.22960018 0.24422315 0.87184346 0.42455143 0.23554116 0.68199587 0.69238859\n\t\t 0.40727946 0.64466172 0.64694244 0.41475195 0.8112213 0.41219023 0.44562882 0.89244032\n\t\t 0.070464596 0.43097323 0.88990355 0.14944507 0.69389832 0.7069307 0.13694593 0.70305127\n\t\t 0.70907331 0.054164633 0.43097323 0.88990355 0.14944507 0.42117429 0.87743711 0.22960018\n\t\t 0.68200141 0.69238812 0.23552673 0.69389832 0.7069307 0.13694593 0.42117429 0.87743711\n\t\t 0.22960018 0.41475195 0.8112213 0.41219023 0.64466619 0.64694488 0.40726855 0.68200141\n\t\t 0.69238812 0.23552673 0.41475195 0.8112213 0.41219023 0.40727946 0.64466172 0.64694244\n\t\t 0.57735443 0.57735348 0.57734293 0.64466619 0.64694488 0.40726855 0.031981274 0.031991206\n\t\t 0.99897641 0.090521358 0.051804237 0.99454623 0.13129124 0.14142625 0.98120397 0.056308366\n\t\t 0.095325112 0.99385232 0.090521358 0.051804237 0.99454623 0.22668354 0.065930702\n\t\t 0.9717344 0.23088177 0.16357766 0.95913297 0.13129124 0.14142625 0.98120397 0.22668354\n\t\t 0.065930702 0.9717344 0.4507921 0.057649013 0.89076555 0.44081992 0.14820845 0.88527513\n\t\t 0.23088177 0.16357766 0.95913297 0.4507921 0.057649013 0.89076555 0.70907646 0.054161631\n\t\t 0.70304835 0.70693284 0.13694018 0.69389731 0.44081992 0.14820845 0.88527513 0.056308366\n\t\t 0.095325112 0.99385232 0.13129124 0.14142625 0.98120397 0.15836434 0.2441242 0.95672572\n\t\t 0.078818046 0.23029681 0.9699232 0.13129124 0.14142625 0.98120397 0.23088177 0.16357766\n\t\t 0.95913297 0.23021904 0.25076219 0.94027519 0.15836434 0.2441242 0.95672572 0.23088177\n\t\t 0.16357766 0.95913297 0.44081992 0.14820845 0.88527513 0.4245488 0.24421839 0.87184608\n\t\t 0.23021904 0.25076219 0.94027519 0.44081992 0.14820845 0.88527513 0.70693284 0.13694018\n\t\t 0.69389731 0.69238931 0.23552884 0.68199933 0.4245488 0.24421839 0.87184608 0.078818046\n\t\t 0.23029681 0.9699232 0.15836434 0.2441242 0.95672572 0.14944303 0.43097124 0.88990486\n\t\t 0.070460834 0.44563276 0.89243865 0.15836434 0.2441242 0.95672572 0.23021904 0.25076219\n\t\t 0.94027519 0.22960091 0.42116466 0.87744164 0.14944303 0.43097124 0.88990486 0.23021904\n\t\t 0.25076219 0.94027519 0.4245488 0.24421839 0.87184608 0.41219038 0.4147425 0.81122607\n\t\t 0.22960091 0.42116466 0.87744164 0.4245488 0.24421839 0.87184608 0.69238931 0.23552884\n\t\t 0.68199933 0.64694756 0.40728059 0.64465606 0.41219038 0.4147425 0.81122607 0.070460834\n\t\t 0.44563276 0.89243865 0.14944303 0.43097124 0.88990486 0.13694495 0.69389796 0.70693123\n\t\t 0.05415481 0.70304918 0.70907623 0.14944303 0.43097124 0.88990486 0.22960091 0.42116466\n\t\t 0.87744164 0.23554116 0.68199587 0.69238859 0.13694495 0.69389796 0.70693123 0.22960091\n\t\t 0.42116466 0.87744164 0.41219038 0.4147425 0.81122607 0.40727946 0.64466172 0.64694244\n\t\t 0.23554116 0.68199587 0.69238859 0.41219038 0.4147425 0.81122607 0.64694756 0.40728059\n\t\t 0.64465606 0.57735443 0.57735348 0.57734293 0.40727946 0.64466172 0.64694244 0.0092431214\n\t\t 0.99977612 0.019033248 0.070872039 0.99723178 0.02249066 0.070735484 0.99374551 0.086407833\n\t\t 0.0015926886 0.99700558 0.077313945 0.070872039 0.99723178 0.02249066 0.22565874\n\t\t 0.97372878 0.030500202 0.23236708 0.96785301 0.09626025 0.070735484 0.99374551 0.086407833\n\t\t 0.22565874 0.97372878 0.030500202 0.45314819 0.8905648 0.039383627 0.45102084 0.8852604\n\t\t 0.11355248 0.23236708 0.96785301 0.09626025 0.45314819 0.8905648 0.039383627 0.7095207\n\t\t 0.7034511 0.041675933 0.70761997 0.69549787 0.12472633 0.45102084 0.8852604 0.11355248\n\t\t 0.0015926886 0.99700558 0.077313945 0.070735484 0.99374551 0.086407833 0.08369647\n\t\t 0.97214615 0.21892172 0.0063271611 0.97516495 0.22138928 0.070735484 0.99374551 0.086407833\n\t\t 0.23236708 0.96785301 0.09626025 0.23782727 0.94616264 0.2195777 0.08369647 0.97214615\n\t\t 0.21892172 0.23236708 0.96785301 0.09626025 0.45102084 0.8852604 0.11355248 0.43887481\n\t\t 0.86764956 0.23360918 0.23782727 0.94616264 0.2195777 0.45102084 0.8852604 0.11355248\n\t\t 0.70761997 0.69549787 0.12472633 0.68869197 0.68102759 0.24880688 0.43887481 0.86764956\n\t\t 0.23360918 0.0063271611 0.97516495 0.22138928 0.08369647 0.97214615 0.21892172 0.10943707\n\t\t 0.89302611 0.43649492 0.0251409 0.89437115 0.44661841 0.08369647 0.97214615 0.21892172\n\t\t 0.23782727 0.94616264 0.2195777 0.24534486 0.87065083 0.4263486 0.10943707 0.89302611\n\t\t 0.43649492 0.23782727 0.94616264 0.2195777 0.43887481 0.86764956 0.23360918 0.42881295\n\t\t 0.79720706 0.42494738 0.24534486 0.87065083 0.4263486 0.43887481 0.86764956 0.23360918\n\t\t 0.68869197 0.68102759 0.24880688 0.63945115 0.63846767 0.42832363 0.42881295 0.79720706\n\t\t 0.42494738 0.0251409 0.89437115 0.44661841 0.10943707 0.89302611 0.43649492 0.12473528\n\t\t 0.70761865 0.69549763 0.041679557 0.70951825 0.70345342 0.10943707 0.89302611 0.43649492\n\t\t 0.24534486 0.87065083 0.4263486 0.24880965 0.688694 0.68102455 0.12473528 0.70761865\n\t\t 0.69549763 0.24534486 0.87065083 0.4263486 0.42881295 0.79720706 0.42494738 0.42832273\n\t\t 0.63945115 0.63846833 0.24880965 0.688694 0.68102455 0.42881295 0.79720706 0.42494738\n\t\t 0.63945115 0.63846767 0.42832363 0.57735062 0.5773496 0.57735056 0.42832273 0.63945115\n\t\t 0.63846833 0.99977612 0.019034201 0.0092367809 0.99723226 0.022493331 0.070864476\n\t\t 0.99374574 0.086406194 0.070734955 0.99700546 0.077313714 0.0015899572 0.99723226\n\t\t 0.022493331 0.070864476 0.97372818 0.030503914 0.22566114 0.96785313 0.096258566\n\t\t 0.23236725 0.99374574 0.086406194 0.070734955 0.97372818 0.030503914 0.22566114 0.89056343\n\t\t 0.039386824 0.45315054 0.88526106 0.11355439 0.45101914 0.96785313 0.096258566 0.23236725\n\t\t 0.89056343 0.039386824 0.45315054 0.70345277 0.041677698 0.70951909 0.69549721 0.12473089\n\t\t 0.70761979 0.88526106 0.11355439 0.45101914;\n\tsetAttr \".n[4648:4813]\" -type \"float3\"  0.99700546 0.077313714 0.0015899572 0.99374574\n\t\t 0.086406194 0.070734955 0.97214645 0.2189198 0.0836991 0.97516495 0.2213892 0.0063291364\n\t\t 0.99374574 0.086406194 0.070734955 0.96785313 0.096258566 0.23236725 0.94616467 0.21957394\n\t\t 0.23782285 0.97214645 0.2189198 0.0836991 0.96785313 0.096258566 0.23236725 0.88526106\n\t\t 0.11355439 0.45101914 0.867652 0.23360765 0.43887058 0.94616467 0.21957394 0.23782285\n\t\t 0.88526106 0.11355439 0.45101914 0.69549721 0.12473089 0.70761979 0.6810261 0.24880442\n\t\t 0.68869424 0.867652 0.23360765 0.43887058 0.97516495 0.2213892 0.0063291364 0.97214645\n\t\t 0.2189198 0.0836991 0.89302433 0.43650034 0.10943104 0.89437169 0.44661766 0.025139827\n\t\t 0.97214645 0.2189198 0.0836991 0.94616467 0.21957394 0.23782285 0.8706491 0.42635477\n\t\t 0.24534017 0.89302433 0.43650034 0.10943104 0.94616467 0.21957394 0.23782285 0.867652\n\t\t 0.23360765 0.43887058 0.79720718 0.42494753 0.42881274 0.8706491 0.42635477 0.24534017\n\t\t 0.867652 0.23360765 0.43887058 0.6810261 0.24880442 0.68869424 0.63846809 0.42832139\n\t\t 0.6394524 0.79720718 0.42494753 0.42881274 0.89437169 0.44661766 0.025139827 0.89302433\n\t\t 0.43650034 0.10943104 0.70761997 0.69549787 0.12472633 0.7095207 0.7034511 0.041675933\n\t\t 0.89302433 0.43650034 0.10943104 0.8706491 0.42635477 0.24534017 0.68869197 0.68102759\n\t\t 0.24880688 0.70761997 0.69549787 0.12472633 0.8706491 0.42635477 0.24534017 0.79720718\n\t\t 0.42494753 0.42881274 0.63945115 0.63846767 0.42832363 0.68869197 0.68102759 0.24880688\n\t\t 0.79720718 0.42494753 0.42881274 0.63846809 0.42832139 0.6394524 0.57735062 0.5773496\n\t\t 0.57735056 0.63945115 0.63846767 0.42832363 0.019034242 0.0092368815 0.99977612 0.022492798\n\t\t 0.070865288 0.99723226 0.086404525 0.070734791 0.99374598 0.077313408 0.0015899743\n\t\t 0.99700558 0.022492798 0.070865288 0.99723226 0.030502457 0.22566074 0.97372824 0.096257493\n\t\t 0.23236534 0.96785367 0.086404525 0.070734791 0.99374598 0.030502457 0.22566074 0.97372824\n\t\t 0.039384093 0.45315042 0.89056361 0.11355463 0.451015 0.8852632 0.096257493 0.23236534\n\t\t 0.96785367 0.039384093 0.45315042 0.89056361 0.04167657 0.70951831 0.70345354 0.12473548\n\t\t 0.70761871 0.69549745 0.11355463 0.451015 0.8852632 0.077313408 0.0015899743 0.99700558\n\t\t 0.086404525 0.070734791 0.99374598 0.21891809 0.083699286 0.97214675 0.22138977 0.0063288384\n\t\t 0.97516489 0.086404525 0.070734791 0.99374598 0.096257493 0.23236534 0.96785367 0.21957327\n\t\t 0.23782307 0.94616473 0.21891809 0.083699286 0.97214675 0.096257493 0.23236534 0.96785367\n\t\t 0.11355463 0.451015 0.8852632 0.23360913 0.43886706 0.86765349 0.21957327 0.23782307\n\t\t 0.94616473 0.11355463 0.451015 0.8852632 0.12473548 0.70761871 0.69549745 0.24880899\n\t\t 0.68869412 0.68102461 0.23360913 0.43886706 0.86765349 0.22138977 0.0063288384 0.97516489\n\t\t 0.21891809 0.083699286 0.97214675 0.436499 0.10943268 0.8930248 0.4466188 0.025139885\n\t\t 0.89437103 0.21891809 0.083699286 0.97214675 0.21957327 0.23782307 0.94616473 0.42635235\n\t\t 0.24534152 0.87064981 0.436499 0.10943268 0.8930248 0.21957327 0.23782307 0.94616473\n\t\t 0.23360913 0.43886706 0.86765349 0.42494425 0.42881054 0.79721004 0.42635235 0.24534152\n\t\t 0.87064981 0.23360913 0.43886706 0.86765349 0.24880899 0.68869412 0.68102461 0.42832094\n\t\t 0.63945138 0.63846934 0.42494425 0.42881054 0.79721004 0.4466188 0.025139885 0.89437103\n\t\t 0.436499 0.10943268 0.8930248 0.69549721 0.12473089 0.70761979 0.70345277 0.041677698\n\t\t 0.70951909 0.436499 0.10943268 0.8930248 0.42635235 0.24534152 0.87064981 0.6810261\n\t\t 0.24880442 0.68869424 0.69549721 0.12473089 0.70761979 0.42635235 0.24534152 0.87064981\n\t\t 0.42494425 0.42881054 0.79721004 0.63846809 0.42832139 0.6394524 0.6810261 0.24880442\n\t\t 0.68869424 0.42494425 0.42881054 0.79721004 0.42832094 0.63945138 0.63846934 0.57735062\n\t\t 0.5773496 0.57735056 0.63846809 0.42832139 0.6394524 0.0092374627 0.99977618 0.019033257\n\t\t 0.070867777 0.99723214 0.022490669 0.070735484 0.99374551 0.086407855 0.0015927386\n\t\t 0.99700546 0.077313967 0.070867777 0.99723214 0.022490669 0.22565871 0.97372878 0.03050017\n\t\t 0.23236707 0.96785301 0.096260197 0.070735484 0.99374551 0.086407855 0.22565871 0.97372878\n\t\t 0.03050017 0.4531512 0.89056325 0.039383635 0.45102304 0.88525939 0.11355218 0.23236707\n\t\t 0.96785301 0.096260197 0.4531512 0.89056325 0.039383635 0.70952308 0.70344865 0.041675918\n\t\t 0.7076205 0.69549727 0.12472636 0.45102304 0.88525939 0.11355218 0.0015927386 0.99700546\n\t\t 0.077313967 0.070735484 0.99374551 0.086407855 0.083696507 0.97214621 0.21892178\n\t\t 0.0063272016 0.97516501 0.22138928 0.070735484 0.99374551 0.086407855 0.23236707\n\t\t 0.96785301 0.096260197 0.23782723 0.94616276 0.21957774 0.083696507 0.97214621 0.21892178\n\t\t 0.23236707 0.96785301 0.096260197 0.45102304 0.88525939 0.11355218 0.43887711 0.86764848\n\t\t 0.2336089 0.23782723 0.94616276 0.21957774 0.45102304 0.88525939 0.11355218 0.7076205\n\t\t 0.69549727 0.12472636 0.68869245 0.68102705 0.24880677 0.43887711 0.86764848 0.2336089\n\t\t 0.0063272016 0.97516501 0.22138928 0.083696507 0.97214621 0.21892178 0.10943712 0.89302611\n\t\t 0.43649492 0.025140943 0.89437115 0.44661844 0.083696507 0.97214621 0.21892178 0.23782723\n\t\t 0.94616276 0.21957774 0.24534425 0.87065095 0.42634863 0.10943712 0.89302611 0.43649492\n\t\t 0.23782723 0.94616276 0.21957774 0.43887711 0.86764848 0.2336089 0.42881486 0.7972064\n\t\t 0.42494678 0.24534425 0.87065095 0.42634863 0.43887711 0.86764848 0.2336089 0.68869245\n\t\t 0.68102705 0.24880677 0.63945091 0.63846773 0.42832407 0.42881486 0.7972064 0.42494678\n\t\t 0.025140943 0.89437115 0.44661844 0.10943712 0.89302611 0.43649492 0.12473548 0.70761871\n\t\t 0.69549745 0.04167657 0.70951831 0.70345354 0.10943712 0.89302611 0.43649492 0.24534425\n\t\t 0.87065095 0.42634863;\n\tsetAttr \".n[4814:4979]\" -type \"float3\"  0.24880899 0.68869412 0.68102461 0.12473548\n\t\t 0.70761871 0.69549745 0.24534425 0.87065095 0.42634863 0.42881486 0.7972064 0.42494678\n\t\t 0.42832094 0.63945138 0.63846934 0.24880899 0.68869412 0.68102461 0.42881486 0.7972064\n\t\t 0.42494678 0.63945091 0.63846773 0.42832407 0.57735062 0.5773496 0.57735056 0.42832094\n\t\t 0.63945138 0.63846934 0.99977612 0.019034386 0.0092367064 0.99723226 0.022493323\n\t\t 0.070864558 0.99374574 0.086406179 0.070734955 0.99700558 0.077313259 0.0015899596\n\t\t 0.99723226 0.022493323 0.070864558 0.9737283 0.030503729 0.22566028 0.96785313 0.0962587\n\t\t 0.23236711 0.99374574 0.086406179 0.070734955 0.9737283 0.030503729 0.22566028 0.89056391\n\t\t 0.039386611 0.45314962 0.88526177 0.11355419 0.45101774 0.96785313 0.0962587 0.23236711\n\t\t 0.89056391 0.039386611 0.45314962 0.70345277 0.041677676 0.70951903 0.69549716 0.12473078\n\t\t 0.70761991 0.88526177 0.11355419 0.45101774 0.99700558 0.077313259 0.0015899596 0.99374574\n\t\t 0.086406179 0.070734955 0.97214645 0.21891983 0.083699122 0.97516477 0.22138995 0.0063291378\n\t\t 0.99374574 0.086406179 0.070734955 0.96785313 0.0962587 0.23236711 0.94616437 0.21957435\n\t\t 0.23782387 0.97214645 0.21891983 0.083699122 0.96785313 0.0962587 0.23236711 0.88526177\n\t\t 0.11355419 0.45101774 0.86765158 0.23360828 0.43887118 0.94616437 0.21957435 0.23782387\n\t\t 0.88526177 0.11355419 0.45101774 0.69549716 0.12473078 0.70761991 0.68102658 0.24880448\n\t\t 0.68869382 0.86765158 0.23360828 0.43887118 0.97516477 0.22138995 0.0063291378 0.97214645\n\t\t 0.21891983 0.083699122 0.89302349 0.43650183 0.10943149 0.89437103 0.44661888 0.025139822\n\t\t 0.97214645 0.21891983 0.083699122 0.94616437 0.21957435 0.23782387 0.87064821 0.42635626\n\t\t 0.24534063 0.89302349 0.43650183 0.10943149 0.94616437 0.21957435 0.23782387 0.86765158\n\t\t 0.23360828 0.43887118 0.79720414 0.42495006 0.42881581 0.87064821 0.42635626 0.24534063\n\t\t 0.86765158 0.23360828 0.43887118 0.68102658 0.24880448 0.68869382 0.63846749 0.42832208\n\t\t 0.6394524 0.79720414 0.42495006 0.42881581 0.89437103 0.44661888 0.025139822 0.89302349\n\t\t 0.43650183 0.10943149 0.7076205 0.69549727 0.12472636 0.70952308 0.70344865 0.041675918\n\t\t 0.89302349 0.43650183 0.10943149 0.87064821 0.42635626 0.24534063 0.68869245 0.68102705\n\t\t 0.24880677 0.7076205 0.69549727 0.12472636 0.87064821 0.42635626 0.24534063 0.79720414\n\t\t 0.42495006 0.42881581 0.63945091 0.63846773 0.42832407 0.68869245 0.68102705 0.24880677\n\t\t 0.79720414 0.42495006 0.42881581 0.63846749 0.42832208 0.6394524 0.57735062 0.5773496\n\t\t 0.57735056 0.63945091 0.63846773 0.42832407 0.019034004 0.0092368815 0.99977612 0.022493038\n\t\t 0.070865296 0.99723226 0.086404808 0.070734777 0.99374586 0.077313282 0.0015899721\n\t\t 0.99700558 0.022493038 0.070865296 0.99723226 0.03050424 0.22566076 0.9737283 0.09625797\n\t\t 0.23236531 0.96785367 0.086404808 0.070734777 0.99374586 0.03050424 0.22566076 0.9737283\n\t\t 0.039388508 0.45315039 0.89056349 0.11355451 0.45101494 0.88526314 0.09625797 0.23236531\n\t\t 0.96785367 0.039388508 0.45315039 0.89056349 0.041679557 0.70951825 0.70345342 0.12473528\n\t\t 0.70761865 0.69549763 0.11355451 0.45101494 0.88526314 0.077313282 0.0015899721 0.99700558\n\t\t 0.086404808 0.070734777 0.99374586 0.21891777 0.083699271 0.97214687 0.22138953 0.0063288393\n\t\t 0.97516495 0.086404808 0.070734777 0.99374586 0.09625797 0.23236531 0.96785367 0.21957299\n\t\t 0.23782302 0.94616485 0.21891777 0.083699271 0.97214687 0.09625797 0.23236531 0.96785367\n\t\t 0.11355451 0.45101494 0.88526314 0.23360874 0.438867 0.86765355 0.21957299 0.23782302\n\t\t 0.94616485 0.11355451 0.45101494 0.88526314 0.12473528 0.70761865 0.69549763 0.24880965\n\t\t 0.688694 0.68102455 0.23360874 0.438867 0.86765355 0.22138953 0.0063288393 0.97516495\n\t\t 0.21891777 0.083699271 0.97214687 0.43649697 0.10943283 0.8930257 0.4466185 0.025139889\n\t\t 0.89437121 0.21891777 0.083699271 0.97214687 0.21957299 0.23782302 0.94616485 0.42635405\n\t\t 0.24534105 0.87064922 0.43649697 0.10943283 0.8930257 0.21957299 0.23782302 0.94616485\n\t\t 0.23360874 0.438867 0.86765355 0.42495197 0.4288089 0.79720682 0.42635405 0.24534105\n\t\t 0.87064922 0.23360874 0.438867 0.86765355 0.24880965 0.688694 0.68102455 0.42832273\n\t\t 0.63945115 0.63846833 0.42495197 0.4288089 0.79720682 0.4466185 0.025139889 0.89437121\n\t\t 0.43649697 0.10943283 0.8930257 0.69549716 0.12473078 0.70761991 0.70345277 0.041677676\n\t\t 0.70951903 0.43649697 0.10943283 0.8930257 0.42635405 0.24534105 0.87064922 0.68102658\n\t\t 0.24880448 0.68869382 0.69549716 0.12473078 0.70761991 0.42635405 0.24534105 0.87064922\n\t\t 0.42495197 0.4288089 0.79720682 0.63846749 0.42832208 0.6394524 0.68102658 0.24880448\n\t\t 0.68869382 0.42495197 0.4288089 0.79720682 0.42832273 0.63945115 0.63846833 0.57735062\n\t\t 0.5773496 0.57735056 0.63846749 0.42832208 0.6394524 0.014658828 0.014641299 0.9997853\n\t\t 0.07596311 0.011857893 0.99704015 0.081844643 0.081113838 0.99333882 0.012108111\n\t\t 0.075992882 0.99703491 0.07596311 0.011857893 0.99704015 0.2284902 0.012228143 0.97346938\n\t\t 0.24062695 0.08400546 0.96697557 0.081844643 0.081113838 0.99333882 0.2284902 0.012228143\n\t\t 0.97346938 0.45735824 0.010888426 0.88921589 0.46820575 0.082150772 0.87979239 0.24062695\n\t\t 0.08400546 0.96697557 0.45735824 0.010888426 0.88921589 0.70714658 0.0096236262 0.70700133\n\t\t 0.70425725 0.079969779 0.70542663 0.46820575 0.082150772 0.87979239 0.012108111 0.075992882\n\t\t 0.99703491 0.081844643 0.081113838 0.99333882 0.085010894 0.2407783 0.96684998 0.01268262\n\t\t 0.22830014 0.97350818 0.081844643 0.081113838 0.99333882 0.24062695 0.08400546 0.96697557\n\t\t 0.24605355 0.24551126 0.93764699 0.085010894 0.2407783 0.96684998 0.24062695 0.08400546\n\t\t 0.96697557 0.46820575 0.082150772 0.87979239 0.46578389 0.23937908 0.85190558 0.24605355\n\t\t 0.24551126 0.93764699;\n\tsetAttr \".n[4980:5145]\" -type \"float3\"  0.46820575 0.082150772 0.87979239 0.70425725\n\t\t 0.079969779 0.70542663 0.68728709 0.23346752 0.68784392 0.46578389 0.23937908 0.85190558\n\t\t 0.01268262 0.22830014 0.97350818 0.085010894 0.2407783 0.96684998 0.082777768 0.46946815\n\t\t 0.87906063 0.011127783 0.45709306 0.88934916 0.085010894 0.2407783 0.96684998 0.24605355\n\t\t 0.24551126 0.93764699 0.23997112 0.4660539 0.85159123 0.082777768 0.46946815 0.87906063\n\t\t 0.24605355 0.24551126 0.93764699 0.46578389 0.23937908 0.85190558 0.43939158 0.43919429\n\t\t 0.78360921 0.23997112 0.4660539 0.85159123 0.46578389 0.23937908 0.85190558 0.68728709\n\t\t 0.23346752 0.68784392 0.6423136 0.41809326 0.64236391 0.43939158 0.43919429 0.78360921\n\t\t 0.011127783 0.45709306 0.88934916 0.082777768 0.46946815 0.87906063 0.079959586 0.70542651\n\t\t 0.70425838 0.00961293 0.70700389 0.70714432 0.082777768 0.46946815 0.87906063 0.23997112\n\t\t 0.4660539 0.85159123 0.23347297 0.68783897 0.68729019 0.079959586 0.70542651 0.70425838\n\t\t 0.23997112 0.4660539 0.85159123 0.43939158 0.43919429 0.78360921 0.41809803 0.64236087\n\t\t 0.64231348 0.23347297 0.68783897 0.68729019 0.43939158 0.43919429 0.78360921 0.6423136\n\t\t 0.41809326 0.64236391 0.57734954 0.57734859 0.57735258 0.41809803 0.64236087 0.64231348\n\t\t 0.99978536 0.014660507 0.014639846 0.99703997 0.075964816 0.011857334 0.99333864\n\t\t 0.081846997 0.081113555 0.99703485 0.012108529 0.075992338 0.99703997 0.075964816\n\t\t 0.011857334 0.97346932 0.22849087 0.012229025 0.96697569 0.24062686 0.084004894 0.99333864\n\t\t 0.081846997 0.081113555 0.97346932 0.22849087 0.012229025 0.88921654 0.45735705 0.01088697\n\t\t 0.87979239 0.46820611 0.082148723 0.96697569 0.24062686 0.084004894 0.88921654 0.45735705\n\t\t 0.01088697 0.7070033 0.70714474 0.0096212951 0.7054199 0.70426399 0.07996767 0.87979239\n\t\t 0.46820611 0.082148723 0.99703485 0.012108529 0.075992338 0.99333864 0.081846997\n\t\t 0.081113555 0.96684945 0.08501257 0.24078025 0.97350776 0.012683741 0.22830151 0.99333864\n\t\t 0.081846997 0.081113555 0.96697569 0.24062686 0.084004894 0.93764716 0.2460527 0.24551116\n\t\t 0.96684945 0.08501257 0.24078025 0.96697569 0.24062686 0.084004894 0.87979239 0.46820611\n\t\t 0.082148723 0.85190421 0.46578592 0.23937957 0.93764716 0.2460527 0.24551116 0.87979239\n\t\t 0.46820611 0.082148723 0.7054199 0.70426399 0.07996767 0.68783951 0.68729264 0.23346445\n\t\t 0.85190421 0.46578592 0.23937957 0.97350776 0.012683741 0.22830151 0.96684945 0.08501257\n\t\t 0.24078025 0.87905926 0.082783669 0.46946958 0.88934886 0.01113346 0.45709354 0.96684945\n\t\t 0.08501257 0.24078025 0.93764716 0.2460527 0.24551116 0.85159183 0.23996627 0.46605533\n\t\t 0.87905926 0.082783669 0.46946958 0.93764716 0.2460527 0.24551116 0.85190421 0.46578592\n\t\t 0.23937957 0.78360999 0.43938839 0.43919614 0.85159183 0.23996627 0.46605533 0.85190421\n\t\t 0.46578592 0.23937957 0.68783951 0.68729264 0.23346445 0.6423651 0.64231378 0.41809103\n\t\t 0.78360999 0.43938839 0.43919614 0.88934886 0.01113346 0.45709354 0.87905926 0.082783669\n\t\t 0.46946958 0.70425725 0.079969779 0.70542663 0.70714658 0.0096236262 0.70700133 0.87905926\n\t\t 0.082783669 0.46946958 0.85159183 0.23996627 0.46605533 0.68728709 0.23346752 0.68784392\n\t\t 0.70425725 0.079969779 0.70542663 0.85159183 0.23996627 0.46605533 0.78360999 0.43938839\n\t\t 0.43919614 0.6423136 0.41809326 0.64236391 0.68728709 0.23346752 0.68784392 0.78360999\n\t\t 0.43938839 0.43919614 0.6423651 0.64231378 0.41809103 0.57734954 0.57734859 0.57735258\n\t\t 0.6423136 0.41809326 0.64236391 0.014632346 0.99978542 0.014659842 0.011857358 0.99704003\n\t\t 0.075964034 0.081115171 0.99333882 0.081844069 0.075993113 0.99703479 0.012106663\n\t\t 0.011857358 0.99704003 0.075964034 0.012234434 0.97346896 0.22849146 0.084008865\n\t\t 0.96697456 0.24062984 0.081115171 0.99333882 0.081844069 0.012234434 0.97346896 0.22849146\n\t\t 0.01088602 0.8892166 0.45735684 0.082146801 0.87979114 0.46820876 0.084008865 0.96697456\n\t\t 0.24062984 0.01088602 0.8892166 0.45735684 0.00961293 0.70700389 0.70714432 0.079959586\n\t\t 0.70542651 0.70425838 0.082146801 0.87979114 0.46820876 0.075993113 0.99703479 0.012106663\n\t\t 0.081115171 0.99333882 0.081844069 0.24078248 0.96684897 0.085010469 0.22830786 0.97350645\n\t\t 0.012681485 0.081115171 0.99333882 0.081844069 0.084008865 0.96697456 0.24062984\n\t\t 0.24550569 0.93764836 0.24605368 0.24078248 0.96684897 0.085010469 0.084008865 0.96697456\n\t\t 0.24062984 0.082146801 0.87979114 0.46820876 0.23938024 0.8519032 0.46578753 0.24550569\n\t\t 0.93764836 0.24605368 0.082146801 0.87979114 0.46820876 0.079959586 0.70542651 0.70425838\n\t\t 0.23347297 0.68783897 0.68729019 0.23938024 0.8519032 0.46578753 0.22830786 0.97350645\n\t\t 0.012681485 0.24078248 0.96684897 0.085010469 0.46946421 0.87906241 0.082781255 0.45709464\n\t\t 0.88934845 0.011131558 0.24078248 0.96684897 0.085010469 0.24550569 0.93764836 0.24605368\n\t\t 0.46605065 0.85159498 0.2399644 0.46946421 0.87906241 0.082781255 0.24550569 0.93764836\n\t\t 0.24605368 0.23938024 0.8519032 0.46578753 0.43919897 0.78360909 0.43938708 0.46605065\n\t\t 0.85159498 0.2399644 0.23938024 0.8519032 0.46578753 0.23347297 0.68783897 0.68729019\n\t\t 0.41809803 0.64236087 0.64231348 0.43919897 0.78360909 0.43938708 0.45709464 0.88934845\n\t\t 0.011131558 0.46946421 0.87906241 0.082781255 0.7054199 0.70426399 0.07996767 0.7070033\n\t\t 0.70714474 0.0096212951 0.46946421 0.87906241 0.082781255 0.46605065 0.85159498 0.2399644\n\t\t 0.68783951 0.68729264 0.23346445 0.7054199 0.70426399 0.07996767 0.46605065 0.85159498\n\t\t 0.2399644 0.43919897 0.78360909 0.43938708 0.6423651 0.64231378 0.41809103 0.68783951\n\t\t 0.68729264 0.23346445 0.43919897 0.78360909 0.43938708 0.41809803 0.64236087 0.64231348\n\t\t 0.57734954 0.57734859 0.57735258 0.6423651 0.64231378 0.41809103 -0.017651932 0.99981111\n\t\t 0.0081414133 -0.037646089 0.99756759 0.058664557;\n\tsetAttr \".n[5146:5311]\" -type \"float3\"  -0.14329633 0.98676389 0.075915381 -0.081815049\n\t\t 0.9966436 0.0027718267 -0.037646089 0.99756759 0.058664557 -0.098626323 0.97185516\n\t\t 0.21394031 -0.25299916 0.93399906 0.25226417 -0.14329633 0.98676389 0.075915381 -0.098626323\n\t\t 0.97185516 0.21394031 -0.15061121 0.88407421 0.44241264 -0.32660452 0.82948196 0.45308846\n\t\t -0.25299916 0.93399906 0.25226417 -0.15061121 0.88407421 0.44241264 -0.17061098 0.69333184\n\t\t 0.7001307 -0.35462579 0.65320981 0.66899735 -0.32660452 0.82948196 0.45308846 -0.081815049\n\t\t 0.9966436 0.0027718267 -0.14329633 0.98676389 0.075915381 -0.31652439 0.93880886\n\t\t 0.13583136 -0.23022112 0.97308969 0.0097318636 -0.14329633 0.98676389 0.075915381\n\t\t -0.25299916 0.93399906 0.25226417 -0.39419931 0.86427838 0.31245756 -0.31652439 0.93880886\n\t\t 0.13583136 -0.25299916 0.93399906 0.25226417 -0.32660452 0.82948196 0.45308846 -0.4235228\n\t\t 0.77242124 0.47327998 -0.39419931 0.86427838 0.31245756 -0.32660452 0.82948196 0.45308846\n\t\t -0.35462579 0.65320981 0.66899735 -0.43684694 0.62993598 0.64214128 -0.4235228 0.77242124\n\t\t 0.47327998 -0.23022112 0.97308969 0.0097318636 -0.31652439 0.93880886 0.13583136\n\t\t -0.64806312 0.70286226 0.29325533 -0.51893359 0.8518135 0.07156612 -0.31652439 0.93880886\n\t\t 0.13583136 -0.39419931 0.86427838 0.31245756 -0.61734396 0.67691803 0.40083447 -0.64806312\n\t\t 0.70286226 0.29325533 -0.39419931 0.86427838 0.31245756 -0.4235228 0.77242124 0.47327998\n\t\t -0.57181257 0.65903616 0.48857111 -0.61734396 0.67691803 0.40083447 -0.4235228 0.77242124\n\t\t 0.47327998 -0.43684694 0.62993598 0.64214128 -0.55322695 0.58788502 0.59019589 -0.57181257\n\t\t 0.65903616 0.48857111 -0.51893359 0.8518135 0.07156612 -0.64806312 0.70286226 0.29325533\n\t\t -0.86461335 0.34181249 0.36824989 -0.87306887 0.44993758 0.18790148 -0.64806312 0.70286226\n\t\t 0.29325533 -0.61734396 0.67691803 0.40083447 -0.80461156 0.42021209 0.41954994 -0.86461335\n\t\t 0.34181249 0.36824989 -0.61734396 0.67691803 0.40083447 -0.57181257 0.65903616 0.48857111\n\t\t -0.72364485 0.50526291 0.47015706 -0.80461156 0.42021209 0.41954994 -0.57181257 0.65903616\n\t\t 0.48857111 -0.55322695 0.58788502 0.59019589 -0.64643472 0.53999084 0.53901017 -0.72364485\n\t\t 0.50526291 0.47015706 -0.017756525 0.013721589 0.99974823 -0.091681622 0.024877196\n\t\t 0.99547762 -0.15124074 0.10439615 0.98296881 -0.029299723 0.070414588 0.99708742\n\t\t -0.091681622 0.024877196 0.99547762 -0.27435246 0.050769258 0.96028805 -0.35820857\n\t\t 0.15794456 0.92018491 -0.15124074 0.10439615 0.98296881 -0.27435246 0.050769258 0.96028805\n\t\t -0.56247991 0.10887447 0.81961131 -0.65909714 0.28612828 0.69550091 -0.35820857 0.15794456\n\t\t 0.92018491 -0.56247991 0.10887447 0.81961131 -0.87422353 0.1786007 0.45148093 -0.87036341\n\t\t 0.3620567 0.33374032 -0.65909714 0.28612828 0.69550091 -0.029299723 0.070414588 0.99708742\n\t\t -0.15124074 0.10439615 0.98296881 -0.22641914 0.23124482 0.94618189 -0.068893977\n\t\t 0.20981482 0.97531086 -0.15124074 0.10439615 0.98296881 -0.35820857 0.15794456 0.92018491\n\t\t -0.38609186 0.26968339 0.88215864 -0.22641914 0.23124482 0.94618189 -0.35820857 0.15794456\n\t\t 0.92018491 -0.65909714 0.28612828 0.69550091 -0.61210966 0.36679229 0.70056051 -0.38609186\n\t\t 0.26968339 0.88215864 -0.65909714 0.28612828 0.69550091 -0.87036341 0.3620567 0.33374032\n\t\t -0.8076874 0.40496761 0.42853492 -0.61210966 0.36679229 0.70056051 -0.068893977 0.20981482\n\t\t 0.97531086 -0.22641914 0.23124482 0.94618189 -0.31765312 0.43372005 0.84319836 -0.13224544\n\t\t 0.4357636 0.89029276 -0.22641914 0.23124482 0.94618189 -0.38609186 0.26968339 0.88215864\n\t\t -0.42738107 0.45016614 0.78402549 -0.31765312 0.43372005 0.84319836 -0.38609186 0.26968339\n\t\t 0.88215864 -0.61210966 0.36679229 0.70056051 -0.57248241 0.47730049 0.66666949 -0.42738107\n\t\t 0.45016614 0.78402549 -0.61210966 0.36679229 0.70056051 -0.8076874 0.40496761 0.42853492\n\t\t -0.7242201 0.4660686 0.50821787 -0.57248241 0.47730049 0.66666949 -0.13224544 0.4357636\n\t\t 0.89029276 -0.31765312 0.43372005 0.84319836 -0.35462579 0.65320981 0.66899735 -0.17061098\n\t\t 0.69333184 0.7001307 -0.31765312 0.43372005 0.84319836 -0.42738107 0.45016614 0.78402549\n\t\t -0.43684694 0.62993598 0.64214128 -0.35462579 0.65320981 0.66899735 -0.42738107 0.45016614\n\t\t 0.78402549 -0.57248241 0.47730049 0.66666949 -0.55322695 0.58788502 0.59019589 -0.43684694\n\t\t 0.62993598 0.64214128 -0.57248241 0.47730049 0.66666949 -0.7242201 0.4660686 0.50821787\n\t\t -0.64643472 0.53999084 0.53901017 -0.55322695 0.58788502 0.59019589 -0.99987882 0.011014685\n\t\t 0.01099311 -0.99870175 0.04760506 0.018128248 -0.98665512 0.030559765 0.15993038\n\t\t -0.99872673 0.018521631 0.046924125 -0.99870175 0.04760506 0.018128248 -0.97552425\n\t\t 0.21568635 -0.04280078 -0.9813776 0.16242328 0.1025504 -0.98665512 0.030559765 0.15993038\n\t\t -0.97552425 0.21568635 -0.04280078 -0.96813881 0.21071184 0.13530651 -0.9468317 0.11654989\n\t\t 0.29987642 -0.9813776 0.16242328 0.1025504 -0.96813881 0.21071184 0.13530651 -0.87306887\n\t\t 0.44993758 0.18790148 -0.86461335 0.34181249 0.36824989 -0.9468317 0.11654989 0.29987642\n\t\t -0.99872673 0.018521631 0.046924125 -0.98665512 0.030559765 0.15993038 -0.97658193\n\t\t 0.19772373 0.084812567 -0.95057225 -0.10617017 0.29178831 -0.98665512 0.030559765\n\t\t 0.15993038 -0.9813776 0.16242328 0.1025504 -0.96434212 0.22701697 0.13604237 -0.97658193\n\t\t 0.19772373 0.084812567 -0.9813776 0.16242328 0.1025504 -0.9468317 0.11654989 0.29987642\n\t\t -0.91956568 0.23459303 0.31522229 -0.96434212 0.22701697 0.13604237 -0.9468317 0.11654989\n\t\t 0.29987642 -0.86461335 0.34181249 0.36824989 -0.80461156 0.42021209 0.41954994 -0.91956568\n\t\t 0.23459303 0.31522229 -0.95057225 -0.10617017 0.29178831 -0.97658193 0.19772373 0.084812567\n\t\t -0.94474506 0.3126162 0.098630123 -0.9557417 0.07378906 0.28480351 -0.97658193 0.19772373\n\t\t 0.084812567 -0.96434212 0.22701697 0.13604237 -0.92084122 0.33098099 0.20616245 -0.94474506\n\t\t 0.3126162 0.098630123;\n\tsetAttr \".n[5312:5477]\" -type \"float3\"  -0.96434212 0.22701697 0.13604237 -0.91956568\n\t\t 0.23459303 0.31522229 -0.85024536 0.37457237 0.36983582 -0.92084122 0.33098099 0.20616245\n\t\t -0.91956568 0.23459303 0.31522229 -0.80461156 0.42021209 0.41954994 -0.72364485 0.50526291\n\t\t 0.47015706 -0.85024536 0.37457237 0.36983582 -0.9557417 0.07378906 0.28480351 -0.94474506\n\t\t 0.3126162 0.098630123 -0.87036341 0.3620567 0.33374032 -0.87422353 0.1786007 0.45148093\n\t\t -0.94474506 0.3126162 0.098630123 -0.92084122 0.33098099 0.20616245 -0.8076874 0.40496761\n\t\t 0.42853492 -0.87036341 0.3620567 0.33374032 -0.92084122 0.33098099 0.20616245 -0.85024536\n\t\t 0.37457237 0.36983582 -0.7242201 0.4660686 0.50821787 -0.8076874 0.40496761 0.42853492\n\t\t -0.85024536 0.37457237 0.36983582 -0.72364485 0.50526291 0.47015706 -0.64643472 0.53999084\n\t\t 0.53901017 -0.7242201 0.4660686 0.50821787 0.031982057 0.031991959 0.99897629 0.090521939\n\t\t 0.05180563 0.99454618 0.13129257 0.14142707 0.98120373 0.056309015 0.095325157 0.99385238\n\t\t 0.090521939 0.05180563 0.99454618 0.22668456 0.065931223 0.97173411 0.23088294 0.16357692\n\t\t 0.95913279 0.13129257 0.14142707 0.98120373 0.22668456 0.065931223 0.97173411 0.45079213\n\t\t 0.057646982 0.89076555 0.44082043 0.14820544 0.88527542 0.23088294 0.16357692 0.95913279\n\t\t 0.45079213 0.057646982 0.89076555 0.70907682 0.054160245 0.70304817 0.70693475 0.13693894\n\t\t 0.69389558 0.44082043 0.14820544 0.88527542 0.056309015 0.095325157 0.99385238 0.13129257\n\t\t 0.14142707 0.98120373 0.15836412 0.24412476 0.95672554 0.078818083 0.23029682 0.9699232\n\t\t 0.13129257 0.14142707 0.98120373 0.23088294 0.16357692 0.95913279 0.23021904 0.25076121\n\t\t 0.94027555 0.15836412 0.24412476 0.95672554 0.23088294 0.16357692 0.95913279 0.44082043\n\t\t 0.14820544 0.88527542 0.42455181 0.2442189 0.87184447 0.23021904 0.25076121 0.94027555\n\t\t 0.44082043 0.14820544 0.88527542 0.70693475 0.13693894 0.69389558 0.69239265 0.23553172\n\t\t 0.68199503 0.42455181 0.2442189 0.87184447 0.078818083 0.23029682 0.9699232 0.15836412\n\t\t 0.24412476 0.95672554 0.14943987 0.43097198 0.88990504 0.070459999 0.44563356 0.89243835\n\t\t 0.15836412 0.24412476 0.95672554 0.23021904 0.25076121 0.94027555 0.2295996 0.42116538\n\t\t 0.87744159 0.14943987 0.43097198 0.88990504 0.23021904 0.25076121 0.94027555 0.42455181\n\t\t 0.2442189 0.87184447 0.41219148 0.41474614 0.81122369 0.2295996 0.42116538 0.87744159\n\t\t 0.42455181 0.2442189 0.87184447 0.69239265 0.23553172 0.68199503 0.64694238 0.40728709\n\t\t 0.64465702 0.41219148 0.41474614 0.81122369 0.070459999 0.44563356 0.89243835 0.14943987\n\t\t 0.43097198 0.88990504 0.13693918 0.69389927 0.70693105 0.054154713 0.70304966 0.70907575\n\t\t 0.14943987 0.43097198 0.88990504 0.2295996 0.42116538 0.87744159 0.235531 0.68199986\n\t\t 0.69238824 0.13693918 0.69389927 0.70693105 0.2295996 0.42116538 0.87744159 0.41219148\n\t\t 0.41474614 0.81122369 0.40727699 0.64466423 0.64694166 0.235531 0.68199986 0.69238824\n\t\t 0.41219148 0.41474614 0.81122369 0.64694238 0.40728709 0.64465702 0.57735044 0.57735568\n\t\t 0.57734472 0.40727699 0.64466423 0.64694166 0.99897629 0.031981707 0.031991322 0.99454606\n\t\t 0.090521447 0.051807217 0.98120332 0.13129267 0.14142933 0.99385232 0.056309879 0.095323607\n\t\t 0.99454606 0.090521447 0.051807217 0.97173405 0.22668368 0.065935202 0.95913231 0.23088147\n\t\t 0.16358146 0.98120332 0.13129267 0.14142933 0.97173405 0.22668368 0.065935202 0.89076531\n\t\t 0.45079193 0.05765298 0.88527524 0.44081846 0.14821199 0.95913231 0.23088147 0.16358146\n\t\t 0.89076531 0.45079193 0.05765298 0.70305091 0.70907366 0.054166112 0.69389898 0.70692956\n\t\t 0.13694812 0.88527524 0.44081846 0.14821199 0.99385232 0.056309879 0.095323607 0.98120332\n\t\t 0.13129267 0.14142933 0.9567259 0.15836586 0.24412256 0.96992362 0.078819253 0.23029502\n\t\t 0.98120332 0.13129267 0.14142933 0.95913231 0.23088147 0.16358146 0.94027686 0.23021628\n\t\t 0.25075856 0.9567259 0.15836586 0.24412256 0.95913231 0.23088147 0.16358146 0.88527524\n\t\t 0.44081846 0.14821199 0.87184602 0.42455113 0.24421456 0.94027686 0.23021628 0.25075856\n\t\t 0.88527524 0.44081846 0.14821199 0.69389898 0.70692956 0.13694812 0.68200111 0.69238824\n\t\t 0.23552737 0.87184602 0.42455113 0.24421456 0.96992362 0.078819253 0.23029502 0.9567259\n\t\t 0.15836586 0.24412256 0.88990664 0.14944084 0.43096805 0.89243919 0.070462257 0.44563159\n\t\t 0.9567259 0.15836586 0.24412256 0.94027686 0.23021628 0.25075856 0.87744379 0.22960094\n\t\t 0.42116034 0.88990664 0.14944084 0.43096805 0.94027686 0.23021628 0.25075856 0.87184602\n\t\t 0.42455113 0.24421456 0.81122446 0.41219971 0.41473633 0.87744379 0.22960094 0.42116034\n\t\t 0.87184602 0.42455113 0.24421456 0.68200111 0.69238824 0.23552737 0.64466327 0.64694726\n\t\t 0.40726957 0.81122446 0.41219971 0.41473633 0.89243919 0.070462257 0.44563159 0.88990664\n\t\t 0.14944084 0.43096805 0.70693475 0.13693894 0.69389558 0.70907682 0.054160245 0.70304817\n\t\t 0.88990664 0.14944084 0.43096805 0.87744379 0.22960094 0.42116034 0.69239265 0.23553172\n\t\t 0.68199503 0.70693475 0.13693894 0.69389558 0.87744379 0.22960094 0.42116034 0.81122446\n\t\t 0.41219971 0.41473633 0.64694238 0.40728709 0.64465702 0.69239265 0.23553172 0.68199503\n\t\t 0.81122446 0.41219971 0.41473633 0.64466327 0.64694726 0.40726957 0.57735044 0.57735568\n\t\t 0.57734472 0.64694238 0.40728709 0.64465702 0.031992186 0.99897629 0.031982712 0.051805448\n\t\t 0.99454606 0.090522572 0.14143389 0.98120266 0.13129239 0.095331676 0.99385172 0.056309562\n\t\t 0.051805448 0.99454606 0.090522572 0.065939866 0.97173345 0.22668464 0.16358621 0.95913088\n\t\t 0.23088431 0.14143389 0.98120266 0.13129239 0.065939866 0.97173345 0.22668464 0.057652675\n\t\t 0.89076525 0.4507919 0.14820829 0.88527519 0.44081965 0.16358621 0.95913088 0.23088431\n\t\t 0.057652675 0.89076525 0.4507919 0.054154713 0.70304966 0.70907575;\n\tsetAttr \".n[5478:5643]\" -type \"float3\"  0.13693918 0.69389927 0.70693105 0.14820829\n\t\t 0.88527519 0.44081965 0.095331676 0.99385172 0.056309562 0.14143389 0.98120266 0.13129239\n\t\t 0.24412803 0.95672464 0.15836452 0.23029652 0.9699232 0.078819565 0.14143389 0.98120266\n\t\t 0.13129239 0.16358621 0.95913088 0.23088431 0.25076109 0.94027495 0.23022148 0.24412803\n\t\t 0.95672464 0.15836452 0.16358621 0.95913088 0.23088431 0.14820829 0.88527519 0.44081965\n\t\t 0.24421339 0.87184644 0.42455116 0.25076109 0.94027495 0.23022148 0.14820829 0.88527519\n\t\t 0.44081965 0.13693918 0.69389927 0.70693105 0.235531 0.68199986 0.69238824 0.24421339\n\t\t 0.87184644 0.42455116 0.23029652 0.9699232 0.078819565 0.24412803 0.95672464 0.15836452\n\t\t 0.43097419 0.88990289 0.14944561 0.44562933 0.8924399 0.07046549 0.24412803 0.95672464\n\t\t 0.15836452 0.25076109 0.94027495 0.23022148 0.42117038 0.87743896 0.22960052 0.43097419\n\t\t 0.88990289 0.14944561 0.25076109 0.94027495 0.23022148 0.24421339 0.87184644 0.42455116\n\t\t 0.41474563 0.81122422 0.41219094 0.42117038 0.87743896 0.22960052 0.24421339 0.87184644\n\t\t 0.42455116 0.235531 0.68199986 0.69238824 0.40727699 0.64466423 0.64694166 0.41474563\n\t\t 0.81122422 0.41219094 0.44562933 0.8924399 0.07046549 0.43097419 0.88990289 0.14944561\n\t\t 0.69389898 0.70692956 0.13694812 0.70305091 0.70907366 0.054166112 0.43097419 0.88990289\n\t\t 0.14944561 0.42117038 0.87743896 0.22960052 0.68200111 0.69238824 0.23552737 0.69389898\n\t\t 0.70692956 0.13694812 0.42117038 0.87743896 0.22960052 0.41474563 0.81122422 0.41219094\n\t\t 0.64466327 0.64694726 0.40726957 0.68200111 0.69238824 0.23552737 0.41474563 0.81122422\n\t\t 0.41219094 0.40727699 0.64466423 0.64694166 0.57735044 0.57735568 0.57734472 0.64466327\n\t\t 0.64694726 0.40726957 0.011013824 0.010990337 -0.99987894 0.047567721 0.018029766\n\t\t -0.99870533 0.030642943 0.15992947 -0.98665261 0.018483872 0.046824783 -0.99873215\n\t\t 0.047567721 0.018029766 -0.99870533 0.2157256 -0.042787619 -0.97551614 0.16243599\n\t\t 0.10255438 -0.98137522 0.030642943 0.15992947 -0.98665261 0.2157256 -0.042787619\n\t\t -0.97551614 0.21072516 0.1353267 -0.96813297 0.11656213 0.29990819 -0.94682014 0.16243599\n\t\t 0.10255438 -0.98137522 0.21072516 0.1353267 -0.96813297 0.44994456 0.18790868 -0.8730638\n\t\t 0.34181809 0.36823192 -0.86461872 0.11656213 0.29990819 -0.94682014 0.018483872 0.046824783\n\t\t -0.99873215 0.030642943 0.15992947 -0.98665261 0.19770369 0.084797606 -0.97658724\n\t\t -0.10613279 0.2917771 -0.95057988 0.030642943 0.15992947 -0.98665261 0.16243599 0.10255438\n\t\t -0.98137522 0.2270429 0.13602309 -0.96433878 0.19770369 0.084797606 -0.97658724 0.16243599\n\t\t 0.10255438 -0.98137522 0.11656213 0.29990819 -0.94682014 0.23459059 0.31520498 -0.91957217\n\t\t 0.2270429 0.13602309 -0.96433878 0.11656213 0.29990819 -0.94682014 0.34181809 0.36823192\n\t\t -0.86461872 0.42022294 0.41955742 -0.80460179 0.23459059 0.31520498 -0.91957217 -0.10613279\n\t\t 0.2917771 -0.95057988 0.19770369 0.084797606 -0.97658724 0.31263685 0.098628484 -0.94473833\n\t\t 0.073767573 0.28480905 -0.95574164 0.19770369 0.084797606 -0.97658724 0.2270429 0.13602309\n\t\t -0.96433878 0.33096638 0.20613974 -0.92085159 0.31263685 0.098628484 -0.94473833\n\t\t 0.2270429 0.13602309 -0.96433878 0.23459059 0.31520498 -0.91957217 0.37457073 0.36985925\n\t\t -0.85023576 0.33096638 0.20613974 -0.92085159 0.23459059 0.31520498 -0.91957217 0.42022294\n\t\t 0.41955742 -0.80460179 0.50523967 0.47018355 -0.72364378 0.37457073 0.36985925 -0.85023576\n\t\t 0.073767573 0.28480905 -0.95574164 0.31263685 0.098628484 -0.94473833 0.36205888\n\t\t 0.33373755 -0.87036347 0.17860542 0.4515039 -0.87421072 0.31263685 0.098628484 -0.94473833\n\t\t 0.33096638 0.20613974 -0.92085159 0.40496969 0.42850989 -0.80769974 0.36205888 0.33373755\n\t\t -0.87036347 0.33096638 0.20613974 -0.92085159 0.37457073 0.36985925 -0.85023576 0.4660612\n\t\t 0.50822604 -0.72421908 0.40496969 0.42850989 -0.80769974 0.37457073 0.36985925 -0.85023576\n\t\t 0.50523967 0.47018355 -0.72364378 0.53997034 0.53905219 -0.64641678 0.4660612 0.50822604\n\t\t -0.72421908 0.99981117 0.0081451787 -0.017645836 0.997567 0.058669094 -0.037654668\n\t\t 0.98676324 0.07591977 -0.14329885 0.99664223 0.0027762782 -0.081832848 0.997567 0.058669094\n\t\t -0.037654668 0.9718585 0.21393667 -0.098600954 0.9340021 0.25226608 -0.25298563 0.98676324\n\t\t 0.07591977 -0.14329885 0.9718585 0.21393667 -0.098600954 0.88408047 0.44240573 -0.1505952\n\t\t 0.8294782 0.45308644 -0.32661694 0.9340021 0.25226608 -0.25298563 0.88408047 0.44240573\n\t\t -0.1505952 0.69332308 0.70013756 -0.17061806 0.65319604 0.66900146 -0.35464361 0.8294782\n\t\t 0.45308644 -0.32661694 0.99664223 0.0027762782 -0.081832848 0.98676324 0.07591977\n\t\t -0.14329885 0.93881726 0.13581698 -0.31650594 0.97309184 0.0097291898 -0.230212 0.98676324\n\t\t 0.07591977 -0.14329885 0.9340021 0.25226608 -0.25298563 0.86425936 0.3124595 -0.3942396\n\t\t 0.93881726 0.13581698 -0.31650594 0.9340021 0.25226608 -0.25298563 0.8294782 0.45308644\n\t\t -0.32661694 0.77241999 0.47327971 -0.42352527 0.86425936 0.3124595 -0.3942396 0.8294782\n\t\t 0.45308644 -0.32661694 0.65319604 0.66900146 -0.35464361 0.62992299 0.6421566 -0.43684322\n\t\t 0.77241999 0.47327971 -0.42352527 0.97309184 0.0097291898 -0.230212 0.93881726 0.13581698\n\t\t -0.31650594 0.70285064 0.29323629 -0.64808452 0.85182863 0.071541406 -0.51891208\n\t\t 0.93881726 0.13581698 -0.31650594 0.86425936 0.3124595 -0.3942396 0.67690915 0.40083665\n\t\t -0.61735243 0.70285064 0.29323629 -0.64808452 0.86425936 0.3124595 -0.3942396 0.77241999\n\t\t 0.47327971 -0.42352527 0.65904105 0.48858505 -0.57179499 0.67690915 0.40083665 -0.61735243\n\t\t 0.77241999 0.47327971 -0.42352527 0.62992299 0.6421566 -0.43684322 0.58787751 0.5902285\n\t\t -0.55320007 0.65904105 0.48858505 -0.57179499 0.85182863 0.071541406 -0.51891208\n\t\t 0.70285064 0.29323629 -0.64808452 0.34181809 0.36823192 -0.86461872 0.44994456 0.18790868\n\t\t -0.8730638;\n\tsetAttr \".n[5644:5809]\" -type \"float3\"  0.70285064 0.29323629 -0.64808452 0.67690915\n\t\t 0.40083665 -0.61735243 0.42022294 0.41955742 -0.80460179 0.34181809 0.36823192 -0.86461872\n\t\t 0.67690915 0.40083665 -0.61735243 0.65904105 0.48858505 -0.57179499 0.50523967 0.47018355\n\t\t -0.72364378 0.42022294 0.41955742 -0.80460179 0.65904105 0.48858505 -0.57179499 0.58787751\n\t\t 0.5902285 -0.55320007 0.53997034 0.53905219 -0.64641678 0.50523967 0.47018355 -0.72364378\n\t\t 0.013725194 0.99974811 -0.017759731 0.024883764 0.99547738 -0.091681875 0.10438391\n\t\t 0.98297048 -0.15123877 0.070415102 0.99708742 -0.029297562 0.024883764 0.99547738\n\t\t -0.091681875 0.050773218 0.96028727 -0.27435437 0.15793811 0.92018884 -0.35820118\n\t\t 0.10438391 0.98297048 -0.15123877 0.050773218 0.96028727 -0.27435437 0.10887761 0.81961381\n\t\t -0.56247574 0.28613177 0.69550276 -0.65909374 0.15793811 0.92018884 -0.35820118 0.10887761\n\t\t 0.81961381 -0.56247574 0.17860542 0.4515039 -0.87421072 0.36205888 0.33373755 -0.87036347\n\t\t 0.28613177 0.69550276 -0.65909374 0.070415102 0.99708742 -0.029297562 0.10438391\n\t\t 0.98297048 -0.15123877 0.23123114 0.9461841 -0.22642373 0.2098081 0.97531223 -0.068895921\n\t\t 0.10438391 0.98297048 -0.15123877 0.15793811 0.92018884 -0.35820118 0.26967588 0.88216096\n\t\t -0.38609201 0.23123114 0.9461841 -0.22642373 0.15793811 0.92018884 -0.35820118 0.28613177\n\t\t 0.69550276 -0.65909374 0.3668108 0.70053393 -0.61212909 0.26967588 0.88216096 -0.38609201\n\t\t 0.28613177 0.69550276 -0.65909374 0.36205888 0.33373755 -0.87036347 0.40496969 0.42850989\n\t\t -0.80769974 0.3668108 0.70053393 -0.61212909 0.2098081 0.97531223 -0.068895921 0.23123114\n\t\t 0.9461841 -0.22642373 0.43370378 0.84319973 -0.31767178 0.43575788 0.8902939 -0.13225663\n\t\t 0.23123114 0.9461841 -0.22642373 0.26967588 0.88216096 -0.38609201 0.45015123 0.78403056\n\t\t -0.42738742 0.43370378 0.84319973 -0.31767178 0.26967588 0.88216096 -0.38609201 0.3668108\n\t\t 0.70053393 -0.61212909 0.47728854 0.66668379 -0.57247561 0.45015123 0.78403056 -0.42738742\n\t\t 0.3668108 0.70053393 -0.61212909 0.40496969 0.42850989 -0.80769974 0.4660612 0.50822604\n\t\t -0.72421908 0.47728854 0.66668379 -0.57247561 0.43575788 0.8902939 -0.13225663 0.43370378\n\t\t 0.84319973 -0.31767178 0.65319604 0.66900146 -0.35464361 0.69332308 0.70013756 -0.17061806\n\t\t 0.43370378 0.84319973 -0.31767178 0.45015123 0.78403056 -0.42738742 0.62992299 0.6421566\n\t\t -0.43684322 0.65319604 0.66900146 -0.35464361 0.45015123 0.78403056 -0.42738742 0.47728854\n\t\t 0.66668379 -0.57247561 0.58787751 0.5902285 -0.55320007 0.62992299 0.6421566 -0.43684322\n\t\t 0.47728854 0.66668379 -0.57247561 0.4660612 0.50822604 -0.72421908 0.53997034 0.53905219\n\t\t -0.64641678 0.58787751 0.5902285 -0.55320007 0.014636426 0.014656524 -0.99978542\n\t\t 0.011855863 0.075961895 -0.99704015 0.081113301 0.081845075 -0.99333882 0.07599017\n\t\t 0.012104367 -0.99703515 0.011855863 0.075961895 -0.99704015 0.012230377 0.22848819\n\t\t -0.97346985 0.084008887 0.24062972 -0.96697462 0.081113301 0.081845075 -0.99333882\n\t\t 0.012230377 0.22848819 -0.97346985 0.010890895 0.45735404 -0.88921803 0.082154006\n\t\t 0.46820498 -0.87979239 0.084008887 0.24062972 -0.96697462 0.010890895 0.45735404\n\t\t -0.88921803 0.0096246228 0.70714557 -0.70700246 0.079972334 0.70425993 -0.70542359\n\t\t 0.082154006 0.46820498 -0.87979239 0.07599017 0.012104367 -0.99703515 0.081113301\n\t\t 0.081845075 -0.99333882 0.24077962 0.085012898 -0.96684945 0.22830075 0.012683032\n\t\t -0.97350806 0.081113301 0.081845075 -0.99333882 0.084008887 0.24062972 -0.96697462\n\t\t 0.24551407 0.24605495 -0.93764591 0.24077962 0.085012898 -0.96684945 0.084008887\n\t\t 0.24062972 -0.96697462 0.082154006 0.46820498 -0.87979239 0.23938113 0.46578255 -0.85190558\n\t\t 0.24551407 0.24605495 -0.93764591 0.082154006 0.46820498 -0.87979239 0.079972334\n\t\t 0.70425993 -0.70542359 0.2334688 0.68728977 -0.68784088 0.23938113 0.46578255 -0.85190558\n\t\t 0.22830075 0.012683032 -0.97350806 0.24077962 0.085012898 -0.96684945 0.46946779\n\t\t 0.08278393 -0.87906021 0.45709476 0.011136705 -0.88934833 0.24077962 0.085012898\n\t\t -0.96684945 0.24551407 0.24605495 -0.93764591 0.46605253 0.23996474 -0.85159373 0.46946779\n\t\t 0.08278393 -0.87906021 0.24551407 0.24605495 -0.93764591 0.23938113 0.46578255 -0.85190558\n\t\t 0.43919373 0.43938601 -0.78361267 0.46605253 0.23996474 -0.85159373 0.23938113 0.46578255\n\t\t -0.85190558 0.2334688 0.68728977 -0.68784088 0.41808927 0.64231408 -0.64236587 0.43919373\n\t\t 0.43938601 -0.78361267 0.45709476 0.011136705 -0.88934833 0.46946779 0.08278393 -0.87906021\n\t\t 0.70542699 0.079967767 -0.70425695 0.70700753 0.0096233524 -0.70714045 0.46946779\n\t\t 0.08278393 -0.87906021 0.46605253 0.23996474 -0.85159373 0.68784004 0.23346651 -0.68729126\n\t\t 0.70542699 0.079967767 -0.70425695 0.46605253 0.23996474 -0.85159373 0.43919373 0.43938601\n\t\t -0.78361267 0.64236379 0.4180955 -0.64231199 0.68784004 0.23346651 -0.68729126 0.43919373\n\t\t 0.43938601 -0.78361267 0.41808927 0.64231408 -0.64236587 0.57734668 0.57735425 -0.57735002\n\t\t 0.64236379 0.4180955 -0.64231199 0.014663333 0.99978518 -0.014639967 0.07596413 0.99704003\n\t\t -0.011857033 0.081841677 0.99333924 -0.081111953 0.012113564 0.99703479 -0.075991511\n\t\t 0.07596413 0.99704003 -0.011857033 0.22848436 0.97347081 -0.012227942 0.24062055\n\t\t 0.96697724 -0.084003754 0.081841677 0.99333924 -0.081111953 0.22848436 0.97347081\n\t\t -0.012227942 0.45736137 0.88921434 -0.010884809 0.46821088 0.87978977 -0.082149036\n\t\t 0.24062055 0.96697724 -0.084003754 0.45736137 0.88921434 -0.010884809 0.70714962\n\t\t 0.70699841 -0.0096186083 0.70425886 0.70542502 -0.079968557 0.46821088 0.87978977\n\t\t -0.082149036 0.012113564 0.99703479 -0.075991511 0.081841677 0.99333924 -0.081111953\n\t\t 0.085012965 0.96684909 -0.24078117 0.012688783 0.97350788 -0.22830115 0.081841677\n\t\t 0.99333924 -0.081111953 0.24062055 0.96697724 -0.084003754 0.24605229 0.93764657\n\t\t -0.24551396 0.085012965 0.96684909 -0.24078117 0.24062055 0.96697724 -0.084003754\n\t\t 0.46821088 0.87978977 -0.082149036;\n\tsetAttr \".n[5810:5975]\" -type \"float3\"  0.46578252 0.85190594 -0.23938012 0.24605229\n\t\t 0.93764657 -0.24551396 0.46821088 0.87978977 -0.082149036 0.70425886 0.70542502 -0.079968557\n\t\t 0.68728954 0.68784171 -0.23346719 0.46578252 0.85190594 -0.23938012 0.012688783 0.97350788\n\t\t -0.22830115 0.085012965 0.96684909 -0.24078117 0.08278919 0.87905914 -0.46946883\n\t\t 0.011135485 0.88934916 -0.45709291 0.085012965 0.96684909 -0.24078117 0.24605229\n\t\t 0.93764657 -0.24551396 0.23997098 0.85159153 -0.46605349 0.08278919 0.87905914 -0.46946883\n\t\t 0.24605229 0.93764657 -0.24551396 0.46578252 0.85190594 -0.23938012 0.43938461 0.78361487\n\t\t -0.43919122 0.23997098 0.85159153 -0.46605349 0.46578252 0.85190594 -0.23938012 0.68728954\n\t\t 0.68784171 -0.23346719 0.64231533 0.64236689 -0.41808563 0.43938461 0.78361487 -0.43919122\n\t\t 0.011135485 0.88934916 -0.45709291 0.08278919 0.87905914 -0.46946883 0.079972334\n\t\t 0.70425993 -0.70542359 0.0096246228 0.70714557 -0.70700246 0.08278919 0.87905914\n\t\t -0.46946883 0.23997098 0.85159153 -0.46605349 0.2334688 0.68728977 -0.68784088 0.079972334\n\t\t 0.70425993 -0.70542359 0.23997098 0.85159153 -0.46605349 0.43938461 0.78361487 -0.43919122\n\t\t 0.41808927 0.64231408 -0.64236587 0.2334688 0.68728977 -0.68784088 0.43938461 0.78361487\n\t\t -0.43919122 0.64231533 0.64236689 -0.41808563 0.57734668 0.57735425 -0.57735002 0.41808927\n\t\t 0.64231408 -0.64236587 0.9997853 0.014638809 -0.014659367 0.99704015 0.011857083\n\t\t -0.075963125 0.99333906 0.081111342 -0.081845269 0.99703509 0.075989842 -0.012108909\n\t\t 0.99704015 0.011857083 -0.075963125 0.97346961 0.012228406 -0.22848953 0.96697569\n\t\t 0.084004097 -0.24062711 0.99333906 0.081111342 -0.081845269 0.97346961 0.012228406\n\t\t -0.22848953 0.88921857 0.010886495 -0.457353 0.87979317 0.082147308 -0.468205 0.96697569\n\t\t 0.084004097 -0.24062711 0.88921857 0.010886495 -0.457353 0.70700753 0.0096233524\n\t\t -0.70714045 0.70542699 0.079967767 -0.70425695 0.87979317 0.082147308 -0.468205 0.99703509\n\t\t 0.075989842 -0.012108909 0.99333906 0.081111342 -0.081845269 0.96684897 0.24078138\n\t\t -0.085013442 0.97350794 0.2283012 -0.01268364 0.99333906 0.081111342 -0.081845269\n\t\t 0.96697569 0.084004097 -0.24062711 0.93764502 0.24551655 -0.24605581 0.96684897 0.24078138\n\t\t -0.085013442 0.96697569 0.084004097 -0.24062711 0.87979317 0.082147308 -0.468205\n\t\t 0.85190368 0.23937994 -0.46578667 0.93764502 0.24551655 -0.24605581 0.87979317 0.082147308\n\t\t -0.468205 0.70542699 0.079967767 -0.70425695 0.68784004 0.23346651 -0.68729126 0.85190368\n\t\t 0.23937994 -0.46578667 0.97350794 0.2283012 -0.01268364 0.96684897 0.24078138 -0.085013442\n\t\t 0.87905741 0.46947348 -0.08278162 0.88934702 0.45709732 -0.011130835 0.96684897 0.24078138\n\t\t -0.085013442 0.93764502 0.24551655 -0.24605581 0.851592 0.46605423 -0.23996782 0.87905741\n\t\t 0.46947348 -0.08278162 0.93764502 0.24551655 -0.24605581 0.85190368 0.23937994 -0.46578667\n\t\t 0.78361225 0.4391962 -0.43938416 0.851592 0.46605423 -0.23996782 0.85190368 0.23937994\n\t\t -0.46578667 0.68784004 0.23346651 -0.68729126 0.64236379 0.4180955 -0.64231199 0.78361225\n\t\t 0.4391962 -0.43938416 0.88934702 0.45709732 -0.011130835 0.87905741 0.46947348 -0.08278162\n\t\t 0.70425886 0.70542502 -0.079968557 0.70714962 0.70699841 -0.0096186083 0.87905741\n\t\t 0.46947348 -0.08278162 0.851592 0.46605423 -0.23996782 0.68728954 0.68784171 -0.23346719\n\t\t 0.70425886 0.70542502 -0.079968557 0.851592 0.46605423 -0.23996782 0.78361225 0.4391962\n\t\t -0.43938416 0.64231533 0.64236689 -0.41808563 0.68728954 0.68784171 -0.23346719 0.78361225\n\t\t 0.4391962 -0.43938416 0.64236379 0.4180955 -0.64231199 0.57734668 0.57735425 -0.57735002\n\t\t 0.64231533 0.64236689 -0.41808563 -0.99978542 0.01463668 0.014656743 -0.99704021\n\t\t 0.011856666 0.075961754 -0.993339 0.081112497 0.08184392 -0.99703515 0.075989805\n\t\t 0.012104571 -0.99704021 0.011856666 0.075961754 -0.97346997 0.012229271 0.22848803\n\t\t -0.96697563 0.084006004 0.24062651 -0.993339 0.081112497 0.08184392 -0.97346997 0.012229271\n\t\t 0.22848803 -0.88921899 0.010886376 0.45735219 -0.87979293 0.082150817 0.46820471\n\t\t -0.96697563 0.084006004 0.24062651 -0.88921899 0.010886376 0.45735219 -0.70700437\n\t\t 0.0096195126 0.70714372 -0.70542073 0.079968706 0.70426327 -0.87979293 0.082150817\n\t\t 0.46820471 -0.99703515 0.075989805 0.012104571 -0.993339 0.081112497 0.08184392 -0.96684915\n\t\t 0.2407815 0.085011981 -0.9735074 0.22830318 0.012682882 -0.993339 0.081112497 0.08184392\n\t\t -0.96697563 0.084006004 0.24062651 -0.93764836 0.24551104 0.24604852 -0.96684915\n\t\t 0.2407815 0.085011981 -0.96697563 0.084006004 0.24062651 -0.87979293 0.082150817\n\t\t 0.46820471 -0.85190517 0.23937951 0.46578419 -0.93764836 0.24551104 0.24604852 -0.87979293\n\t\t 0.082150817 0.46820471 -0.70542073 0.079968706 0.70426327 -0.68783611 0.2334688 0.68729448\n\t\t -0.85190517 0.23937951 0.46578419 -0.9735074 0.22830318 0.012682882 -0.96684915 0.2407815\n\t\t 0.085011981 -0.87906164 0.46946535 0.082781844 -0.88934863 0.45709401 0.011135546\n\t\t -0.96684915 0.2407815 0.085011981 -0.93764836 0.24551104 0.24604852 -0.8515954 0.46605167\n\t\t 0.23996092 -0.87906164 0.46946535 0.082781844 -0.93764836 0.24551104 0.24604852 -0.85190517\n\t\t 0.23937951 0.46578419 -0.7836169 0.4391908 0.43938136 -0.8515954 0.46605167 0.23996092\n\t\t -0.85190517 0.23937951 0.46578419 -0.68783611 0.2334688 0.68729448 -0.6423704 0.41808853\n\t\t 0.64231002 -0.7836169 0.4391908 0.43938136 -0.88934863 0.45709401 0.011135546 -0.87906164\n\t\t 0.46946535 0.082781844 -0.70426089 0.70542324 0.079966597 -0.70714742 0.70700061\n\t\t 0.0096207047 -0.87906164 0.46946535 0.082781844 -0.8515954 0.46605167 0.23996092\n\t\t -0.68728912 0.68784255 0.23346563 -0.70426089 0.70542324 0.079966597 -0.8515954 0.46605167\n\t\t 0.23996092 -0.7836169 0.4391908 0.43938136 -0.64231753 0.64236271 0.41808903 -0.68728912\n\t\t 0.68784255 0.23346563 -0.7836169 0.4391908 0.43938136 -0.6423704 0.41808853 0.64231002\n\t\t -0.57735741 0.5773446 0.57734877 -0.64231753 0.64236271 0.41808903;\n\tsetAttr \".n[5976:6141]\" -type \"float3\"  -0.014638685 0.014660081 0.9997853 -0.011856223\n\t\t 0.075962052 0.99704027 -0.081111088 0.081846774 0.99333882 -0.075989656 0.012109245\n\t\t 0.99703509 -0.011856223 0.075962052 0.99704027 -0.01222809 0.22848888 0.97346973\n\t\t -0.084003769 0.24062946 0.96697509 -0.081111088 0.081846774 0.99333882 -0.01222809\n\t\t 0.22848888 0.97346973 -0.010885939 0.45735872 0.88921565 -0.082146749 0.46820739\n\t\t 0.87979192 -0.084003769 0.24062946 0.96697509 -0.010885939 0.45735872 0.88921565\n\t\t -0.0096202847 0.70714486 0.7070033 -0.079964049 0.70425808 0.70542645 -0.082146749\n\t\t 0.46820739 0.87979192 -0.075989656 0.012109245 0.99703509 -0.081111088 0.081846774\n\t\t 0.99333882 -0.24078023 0.085013613 0.96684921 -0.22830136 0.01268374 0.97350794 -0.081111088\n\t\t 0.081846774 0.99333882 -0.084003769 0.24062946 0.96697509 -0.24551301 0.24605739\n\t\t 0.93764549 -0.24078023 0.085013613 0.96684921 -0.084003769 0.24062946 0.96697509\n\t\t -0.082146749 0.46820739 0.87979192 -0.23937662 0.46578422 0.851906 -0.24551301 0.24605739\n\t\t 0.93764549 -0.082146749 0.46820739 0.87979192 -0.079964049 0.70425808 0.70542645\n\t\t -0.23346207 0.68728936 0.68784362 -0.23937662 0.46578422 0.851906 -0.22830136 0.01268374\n\t\t 0.97350794 -0.24078023 0.085013613 0.96684921 -0.46946558 0.082782403 0.87906152\n\t\t -0.45709476 0.011130834 0.88934833 -0.24078023 0.085013613 0.96684921 -0.24551301\n\t\t 0.24605739 0.93764549 -0.46605334 0.23996849 0.8515923 -0.46946558 0.082782403 0.87906152\n\t\t -0.24551301 0.24605739 0.93764549 -0.23937662 0.46578422 0.851906 -0.43919444 0.43938631\n\t\t 0.78361207 -0.46605334 0.23996849 0.8515923 -0.23937662 0.46578422 0.851906 -0.23346207\n\t\t 0.68728936 0.68784362 -0.41808876 0.64231223 0.64236802 -0.43919444 0.43938631 0.78361207\n\t\t -0.45709476 0.011130834 0.88934833 -0.46946558 0.082782403 0.87906152 -0.70542073\n\t\t 0.079968706 0.70426327 -0.70700437 0.0096195126 0.70714372 -0.46946558 0.082782403\n\t\t 0.87906152 -0.46605334 0.23996849 0.8515923 -0.68783611 0.2334688 0.68729448 -0.70542073\n\t\t 0.079968706 0.70426327 -0.46605334 0.23996849 0.8515923 -0.43919444 0.43938631 0.78361207\n\t\t -0.6423704 0.41808853 0.64231002 -0.68783611 0.2334688 0.68729448 -0.43919444 0.43938631\n\t\t 0.78361207 -0.41808876 0.64231223 0.64236802 -0.57735741 0.5773446 0.57734877 -0.6423704\n\t\t 0.41808853 0.64231002 -0.014660154 0.99978536 0.014639735 -0.075961292 0.99704021\n\t\t 0.011856197 -0.081841238 0.99333924 0.081111543 -0.01211346 0.99703485 0.075992011\n\t\t -0.075961292 0.99704021 0.011856197 -0.22848794 0.97346997 0.012226739 -0.24062024\n\t\t 0.96697748 0.084002316 -0.081841238 0.99333924 0.081111543 -0.22848794 0.97346997\n\t\t 0.012226739 -0.45735866 0.88921577 0.010884097 -0.46820664 0.87979227 0.082146406\n\t\t -0.24062024 0.96697748 0.084002316 -0.45735866 0.88921577 0.010884097 -0.70714742\n\t\t 0.70700061 0.0096207047 -0.70426089 0.70542324 0.079966597 -0.46820664 0.87979227\n\t\t 0.082146406 -0.01211346 0.99703485 0.075992011 -0.081841238 0.99333924 0.081111543\n\t\t -0.085013583 0.96684897 0.24078138 -0.012689046 0.97350758 0.22830191 -0.081841238\n\t\t 0.99333924 0.081111543 -0.24062024 0.96697748 0.084002316 -0.24605258 0.93764693\n\t\t 0.24551252 -0.085013583 0.96684897 0.24078138 -0.24062024 0.96697748 0.084002316\n\t\t -0.46820664 0.87979227 0.082146406 -0.46578461 0.85190505 0.23937939 -0.24605258\n\t\t 0.93764693 0.24551252 -0.46820664 0.87979227 0.082146406 -0.70426089 0.70542324 0.079966597\n\t\t -0.68728912 0.68784255 0.23346563 -0.46578461 0.85190505 0.23937939 -0.012689046\n\t\t 0.97350758 0.22830191 -0.085013583 0.96684897 0.24078138 -0.082784489 0.87905824\n\t\t 0.46947128 -0.011134978 0.88934755 0.45709601 -0.085013583 0.96684897 0.24078138\n\t\t -0.24605258 0.93764693 0.24551252 -0.23996879 0.85159224 0.46605322 -0.082784489\n\t\t 0.87905824 0.46947128 -0.24605258 0.93764693 0.24551252 -0.46578461 0.85190505 0.23937939\n\t\t -0.43938839 0.78361046 0.43919519 -0.23996879 0.85159224 0.46605322 -0.46578461 0.85190505\n\t\t 0.23937939 -0.68728912 0.68784255 0.23346563 -0.64231753 0.64236271 0.41808903 -0.43938839\n\t\t 0.78361046 0.43919519 -0.011134978 0.88934755 0.45709601 -0.082784489 0.87905824\n\t\t 0.46947128 -0.079964049 0.70425808 0.70542645 -0.0096202847 0.70714486 0.7070033\n\t\t -0.082784489 0.87905824 0.46947128 -0.23996879 0.85159224 0.46605322 -0.23346207\n\t\t 0.68728936 0.68784362 -0.079964049 0.70425808 0.70542645 -0.23996879 0.85159224 0.46605322\n\t\t -0.43938839 0.78361046 0.43919519 -0.41808876 0.64231223 0.64236802 -0.23346207 0.68728936\n\t\t 0.68784362 -0.43938839 0.78361046 0.43919519 -0.64231753 0.64236271 0.41808903 -0.57735741\n\t\t 0.5773446 0.57734877 -0.41808876 0.64231223 0.64236802 -0.017644383 0.99981117 0.0081439158\n\t\t -0.03766495 0.99756664 0.058668818 -0.14331631 0.98676062 0.075919889 -0.081838675\n\t\t 0.99664164 0.0027797222 -0.03766495 0.99756664 0.058668818 -0.098621562 0.97185642\n\t\t 0.21393724 -0.25299552 0.93400085 0.25226134 -0.14331631 0.98676062 0.075919889 -0.098621562\n\t\t 0.97185642 0.21393724 -0.15061136 0.88407445 0.44241238 -0.32661012 0.82947701 0.45309329\n\t\t -0.25299552 0.93400085 0.25226134 -0.15061136 0.88407445 0.44241238 -0.17061129 0.693331\n\t\t 0.7001313 -0.35462692 0.65320694 0.66899955 -0.32661012 0.82947701 0.45309329 -0.081838675\n\t\t 0.99664164 0.0027797222 -0.14331631 0.98676062 0.075919889 -0.31651023 0.93881553\n\t\t 0.13581823 -0.2302237 0.97308898 0.0097370455 -0.14331631 0.98676062 0.075919889\n\t\t -0.25299552 0.93400085 0.25226134 -0.39422035 0.86426711 0.31246239 -0.31651023 0.93881553\n\t\t 0.13581823 -0.25299552 0.93400085 0.25226134 -0.32661012 0.82947701 0.45309329 -0.4235222\n\t\t 0.7724148 0.47329086 -0.39422035 0.86426711 0.31246239 -0.32661012 0.82947701 0.45309329\n\t\t -0.35462692 0.65320694 0.66899955 -0.43684849 0.6299333 0.64214295 -0.4235222 0.7724148\n\t\t 0.47329086 -0.2302237 0.97308898 0.0097370455 -0.31651023 0.93881553 0.13581823 -0.64809084\n\t\t 0.70284414 0.29323784 -0.51893228 0.85181558 0.071549915 -0.31651023 0.93881553 0.13581823\n\t\t -0.39422035 0.86426711 0.31246239;\n\tsetAttr \".n[6142:6307]\" -type \"float3\"  -0.61735451 0.67690843 0.40083456 -0.64809084\n\t\t 0.70284414 0.29323784 -0.39422035 0.86426711 0.31246239 -0.4235222 0.7724148 0.47329086\n\t\t -0.57181609 0.65902686 0.48857954 -0.61735451 0.67690843 0.40083456 -0.4235222 0.7724148\n\t\t 0.47329086 -0.43684849 0.6299333 0.64214295 -0.55321503 0.58788848 0.59020358 -0.57181609\n\t\t 0.65902686 0.48857954 -0.51893228 0.85181558 0.071549915 -0.64809084 0.70284414 0.29323784\n\t\t -0.86462158 0.34181216 0.36823088 -0.87306547 0.44993716 0.1879181 -0.64809084 0.70284414\n\t\t 0.29323784 -0.61735451 0.67690843 0.40083456 -0.80460727 0.42021546 0.41955474 -0.86462158\n\t\t 0.34181216 0.36823088 -0.61735451 0.67690843 0.40083456 -0.57181609 0.65902686 0.48857954\n\t\t -0.72366488 0.50523806 0.47015265 -0.80460727 0.42021546 0.41955474 -0.57181609 0.65902686\n\t\t 0.48857954 -0.55321503 0.58788848 0.59020358 -0.64641768 0.53999901 0.53902239 -0.72366488\n\t\t 0.50523806 0.47015265 -0.01776132 0.013721419 0.99974811 -0.091685943 0.024874045\n\t\t 0.99547726 -0.15124573 0.10439736 0.98296791 -0.029304087 0.070414335 0.99708736\n\t\t -0.091685943 0.024874045 0.99547726 -0.27435166 0.050766446 0.96028847 -0.35821044\n\t\t 0.15794979 0.92018324 -0.15124573 0.10439736 0.98296791 -0.27435166 0.050766446 0.96028847\n\t\t -0.56247652 0.10887496 0.81961352 -0.65910423 0.28613433 0.69549173 -0.35821044 0.15794979\n\t\t 0.92018324 -0.56247652 0.10887496 0.81961352 -0.87421364 0.17861822 0.45149323 -0.87036502\n\t\t 0.36205187 0.33374116 -0.65910423 0.28613433 0.69549173 -0.029304087 0.070414335\n\t\t 0.99708736 -0.15124573 0.10439736 0.98296791 -0.22642197 0.23125389 0.94617903 -0.068895236\n\t\t 0.2098182 0.97530997 -0.15124573 0.10439736 0.98296791 -0.35821044 0.15794979 0.92018324\n\t\t -0.38610274 0.26969403 0.88215065 -0.22642197 0.23125389 0.94617903 -0.35821044 0.15794979\n\t\t 0.92018324 -0.65910423 0.28613433 0.69549173 -0.61211419 0.36679882 0.70055324 -0.38610274\n\t\t 0.26969403 0.88215065 -0.65910423 0.28613433 0.69549173 -0.87036502 0.36205187 0.33374116\n\t\t -0.80768335 0.40497431 0.42853633 -0.61211419 0.36679882 0.70055324 -0.068895236\n\t\t 0.2098182 0.97530997 -0.22642197 0.23125389 0.94617903 -0.31765443 0.43372163 0.84319705\n\t\t -0.13224347 0.43576339 0.89029324 -0.22642197 0.23125389 0.94617903 -0.38610274 0.26969403\n\t\t 0.88215065 -0.42738524 0.45016697 0.78402257 -0.31765443 0.43372163 0.84319705 -0.38610274\n\t\t 0.26969403 0.88215065 -0.61211419 0.36679882 0.70055324 -0.57247519 0.47730526 0.66667223\n\t\t -0.42738524 0.45016697 0.78402257 -0.61211419 0.36679882 0.70055324 -0.80768335 0.40497431\n\t\t 0.42853633 -0.72421449 0.46607441 0.50822037 -0.57247519 0.47730526 0.66667223 -0.13224347\n\t\t 0.43576339 0.89029324 -0.31765443 0.43372163 0.84319705 -0.35462692 0.65320694 0.66899955\n\t\t -0.17061129 0.693331 0.7001313 -0.31765443 0.43372163 0.84319705 -0.42738524 0.45016697\n\t\t 0.78402257 -0.43684849 0.6299333 0.64214295 -0.35462692 0.65320694 0.66899955 -0.42738524\n\t\t 0.45016697 0.78402257 -0.57247519 0.47730526 0.66667223 -0.55321503 0.58788848 0.59020358\n\t\t -0.43684849 0.6299333 0.64214295 -0.57247519 0.47730526 0.66667223 -0.72421449 0.46607441\n\t\t 0.50822037 -0.64641768 0.53999901 0.53902239 -0.55321503 0.58788848 0.59020358 -0.99987894\n\t\t 0.011014156 0.010990196 -0.99870515 0.047574483 0.018020511 -0.98665941 0.030658146\n\t\t 0.15988526 -0.99873239 0.018490538 0.046815444 -0.99870515 0.047574483 0.018020511\n\t\t -0.97551429 0.21573241 -0.042797182 -0.98137832 0.16241622 0.10255484 -0.98665941\n\t\t 0.030658146 0.15988526 -0.97551429 0.21573241 -0.042797182 -0.96813709 0.21071623\n\t\t 0.13531163 -0.94681323 0.11656931 0.29992729 -0.98137832 0.16241622 0.10255484 -0.96813709\n\t\t 0.21071623 0.13531163 -0.87306547 0.44993716 0.1879181 -0.86462158 0.34181216 0.36823088\n\t\t -0.94681323 0.11656931 0.29992729 -0.99873239 0.018490538 0.046815444 -0.98665941\n\t\t 0.030658146 0.15988526 -0.97659039 0.19768779 0.084798023 -0.95059162 -0.10612448\n\t\t 0.29174158 -0.98665941 0.030658146 0.15988526 -0.98137832 0.16241622 0.10255484 -0.96433526\n\t\t 0.227046 0.13604252 -0.97659039 0.19768779 0.084798023 -0.98137832 0.16241622 0.10255484\n\t\t -0.94681323 0.11656931 0.29992729 -0.9195745 0.23458727 0.31520095 -0.96433526 0.227046\n\t\t 0.13604252 -0.94681323 0.11656931 0.29992729 -0.86462158 0.34181216 0.36823088 -0.80460727\n\t\t 0.42021546 0.41955474 -0.9195745 0.23458727 0.31520095 -0.95059162 -0.10612448 0.29174158\n\t\t -0.97659039 0.19768779 0.084798023 -0.94473571 0.31264561 0.098626554 -0.95574665\n\t\t 0.073765978 0.28479305 -0.97659039 0.19768779 0.084798023 -0.96433526 0.227046 0.13604252\n\t\t -0.92085451 0.3309522 0.20614928 -0.94473571 0.31264561 0.098626554 -0.96433526 0.227046\n\t\t 0.13604252 -0.9195745 0.23458727 0.31520095 -0.85023224 0.37457746 0.36986062 -0.92085451\n\t\t 0.3309522 0.20614928 -0.9195745 0.23458727 0.31520095 -0.80460727 0.42021546 0.41955474\n\t\t -0.72366488 0.50523806 0.47015265 -0.85023224 0.37457746 0.36986062 -0.95574665 0.073765978\n\t\t 0.28479305 -0.94473571 0.31264561 0.098626554 -0.87036502 0.36205187 0.33374116 -0.87421364\n\t\t 0.17861822 0.45149323 -0.94473571 0.31264561 0.098626554 -0.92085451 0.3309522 0.20614928\n\t\t -0.80768335 0.40497431 0.42853633 -0.87036502 0.36205187 0.33374116 -0.92085451 0.3309522\n\t\t 0.20614928 -0.85023224 0.37457746 0.36986062 -0.72421449 0.46607441 0.50822037 -0.80768335\n\t\t 0.40497431 0.42853633 -0.85023224 0.37457746 0.36986062 -0.72366488 0.50523806 0.47015265\n\t\t -0.64641768 0.53999901 0.53902239 -0.72421449 0.46607441 0.50822037 0.9997853 0.014658965\n\t\t 0.014641111 0.99704015 0.075962901 0.011857701 0.99333876 0.081845418 0.081113391\n\t\t 0.99703491 0.012107675 0.075992219 0.99704015 0.075962901 0.011857701 0.97346967\n\t\t 0.228489 0.012228679 0.96697545 0.24062766 0.08400517 0.99333876 0.081845418 0.081113391\n\t\t 0.97346967 0.228489 0.012228679 0.88921553 0.45735884 0.010888328 0.87979043 0.46820962\n\t\t 0.082149617 0.96697545 0.24062766 0.08400517;\n\tsetAttr \".n[6308:6473]\" -type \"float3\"  0.88921553 0.45735884 0.010888328 0.70700282\n\t\t 0.70714521 0.0096224668 0.70542234 0.7042616 0.079967603 0.87979043 0.46820962 0.082149617\n\t\t 0.99703491 0.012107675 0.075992219 0.99333876 0.081845418 0.081113391 0.96684963\n\t\t 0.085011177 0.24077961 0.973508 0.012682107 0.22830063 0.99333876 0.081845418 0.081113391\n\t\t 0.96697545 0.24062766 0.08400517 0.93764699 0.2460546 0.24551006 0.96684963 0.085011177\n\t\t 0.24077961 0.96697545 0.24062766 0.08400517 0.87979043 0.46820962 0.082149617 0.85190606\n\t\t 0.46578312 0.2393786 0.93764699 0.2460546 0.24551006 0.87979043 0.46820962 0.082149617\n\t\t 0.70542234 0.7042616 0.079967603 0.68784261 0.68728977 0.23346423 0.85190606 0.46578312\n\t\t 0.2393786 0.973508 0.012682107 0.22830063 0.96684963 0.085011177 0.24077961 0.87906086\n\t\t 0.082781248 0.46946698 0.88935071 0.011131119 0.45709008 0.96684963 0.085011177 0.24077961\n\t\t 0.93764699 0.2460546 0.24551006 0.85159189 0.23996617 0.46605512 0.87906086 0.082781248\n\t\t 0.46946698 0.93764699 0.2460546 0.24551006 0.85190606 0.46578312 0.2393786 0.78361511\n\t\t 0.43938267 0.43919271 0.85159189 0.23996617 0.46605512 0.85190606 0.46578312 0.2393786\n\t\t 0.68784261 0.68728977 0.23346423 0.64236724 0.64231205 0.41809034 0.78361511 0.43938267\n\t\t 0.43919271 0.88935071 0.011131119 0.45709008 0.87906086 0.082781248 0.46946698 0.70425826\n\t\t 0.079968363 0.70542562 0.70714688 0.0096217319 0.70700115 0.87906086 0.082781248\n\t\t 0.46946698 0.85159189 0.23996617 0.46605512 0.68728805 0.23346682 0.68784326 0.70425826\n\t\t 0.079968363 0.70542562 0.85159189 0.23996617 0.46605512 0.78361511 0.43938267 0.43919271\n\t\t 0.64231628 0.41809094 0.64236259 0.68728805 0.23346682 0.68784326 0.78361511 0.43938267\n\t\t 0.43919271 0.64236724 0.64231205 0.41809034 0.57735145 0.57734966 0.57734972 0.64231628\n\t\t 0.41809094 0.64236259 0.014642588 0.99978536 0.014659861 0.011857831 0.99704015 0.075963557\n\t\t 0.081114694 0.99333888 0.081843294 0.075990841 0.99703503 0.012106691 0.011857831\n\t\t 0.99704015 0.075963557 0.012228126 0.97346914 0.22849147 0.084008798 0.9669745 0.24063033\n\t\t 0.081114694 0.99333888 0.081843294 0.012228126 0.97346914 0.22849147 0.010882785\n\t\t 0.88921702 0.45735601 0.082143538 0.87979251 0.46820676 0.084008798 0.9669745 0.24063033\n\t\t 0.010882785 0.88921702 0.45735601 0.0096154967 0.70700562 0.70714259 0.079965994\n\t\t 0.70542824 0.704256 0.082143538 0.87979251 0.46820676 0.075990841 0.99703503 0.012106691\n\t\t 0.081114694 0.99333888 0.081843294 0.24078529 0.96684831 0.085009418 0.22829276 0.97350985\n\t\t 0.012681642 0.081114694 0.99333888 0.081843294 0.084008798 0.9669745 0.24063033 0.24551973\n\t\t 0.93764502 0.24605279 0.24078529 0.96684831 0.085009418 0.084008798 0.9669745 0.24063033\n\t\t 0.082143538 0.87979251 0.46820676 0.23938046 0.85190302 0.46578786 0.24551973 0.93764502\n\t\t 0.24605279 0.082143538 0.87979251 0.46820676 0.079965994 0.70542824 0.704256 0.23347476\n\t\t 0.68783748 0.68729115 0.23938046 0.85190302 0.46578786 0.22829276 0.97350985 0.012681642\n\t\t 0.24078529 0.96684831 0.085009418 0.46947211 0.87905824 0.082780048 0.45709181 0.88934982\n\t\t 0.011132488 0.24078529 0.96684831 0.085009418 0.24551973 0.93764502 0.24605279 0.46605742\n\t\t 0.85159189 0.23996183 0.46947211 0.87905824 0.082780048 0.24551973 0.93764502 0.24605279\n\t\t 0.23938046 0.85190302 0.46578786 0.43919465 0.78361064 0.43938848 0.46605742 0.85159189\n\t\t 0.23996183 0.23938046 0.85190302 0.46578786 0.23347476 0.68783748 0.68729115 0.41809326\n\t\t 0.64236039 0.64231706 0.43919465 0.78361064 0.43938848 0.45709181 0.88934982 0.011132488\n\t\t 0.46947211 0.87905824 0.082780048 0.70542234 0.7042616 0.079967603 0.70700282 0.70714521\n\t\t 0.0096224668 0.46947211 0.87905824 0.082780048 0.46605742 0.85159189 0.23996183 0.68784261\n\t\t 0.68728977 0.23346423 0.70542234 0.7042616 0.079967603 0.46605742 0.85159189 0.23996183\n\t\t 0.43919465 0.78361064 0.43938848 0.64236724 0.64231205 0.41809034 0.68784261 0.68728977\n\t\t 0.23346423 0.43919465 0.78361064 0.43938848 0.41809326 0.64236039 0.64231706 0.57735145\n\t\t 0.57734966 0.57734972 0.64236724 0.64231205 0.41809034 0.01465892 0.014639879 0.9997853\n\t\t 0.075963959 0.011857947 0.99704009 0.081846774 0.081115417 0.99333858 0.012107875\n\t\t 0.075995401 0.99703461 0.075963959 0.011857947 0.99704009 0.22849 0.012226716 0.97346944\n\t\t 0.24062684 0.084005028 0.96697569 0.081846774 0.081115417 0.99333858 0.22849 0.012226716\n\t\t 0.97346944 0.45735395 0.010886116 0.88921809 0.46820223 0.082150504 0.8797943 0.24062684\n\t\t 0.084005028 0.96697569 0.45735395 0.010886116 0.88921809 0.70714688 0.0096217319\n\t\t 0.70700115 0.70425826 0.079968363 0.70542562 0.46820223 0.082150504 0.8797943 0.012107875\n\t\t 0.075995401 0.99703461 0.081846774 0.081115417 0.99333858 0.085011214 0.24078155\n\t\t 0.96684909 0.01268224 0.2283015 0.97350782 0.081846774 0.081115417 0.99333858 0.24062684\n\t\t 0.084005028 0.96697569 0.24605179 0.24551596 0.93764627 0.085011214 0.24078155 0.96684909\n\t\t 0.24062684 0.084005028 0.96697569 0.46820223 0.082150504 0.8797943 0.46578324 0.23937953\n\t\t 0.8519057 0.24605179 0.24551596 0.93764627 0.46820223 0.082150504 0.8797943 0.70425826\n\t\t 0.079968363 0.70542562 0.68728805 0.23346682 0.68784326 0.46578324 0.23937953 0.8519057\n\t\t 0.01268224 0.2283015 0.97350782 0.085011214 0.24078155 0.96684909 0.082783863 0.46946943\n\t\t 0.87905931 0.01113019 0.45709181 0.88935 0.085011214 0.24078155 0.96684909 0.24605179\n\t\t 0.24551596 0.93764627 0.23997073 0.46605414 0.85159123 0.082783863 0.46946943 0.87905931\n\t\t 0.24605179 0.24551596 0.93764627 0.46578324 0.23937953 0.8519057 0.43938726 0.43919408\n\t\t 0.78361177 0.23997073 0.46605414 0.85159123 0.46578324 0.23937953 0.8519057 0.68728805\n\t\t 0.23346682 0.68784326 0.64231628 0.41809094 0.64236259 0.43938726 0.43919408 0.78361177\n\t\t 0.01113019 0.45709181 0.88935 0.082783863 0.46946943 0.87905931;\n\tsetAttr \".n[6474:6639]\" -type \"float3\"  0.079965994 0.70542824 0.704256 0.0096154967\n\t\t 0.70700562 0.70714259 0.082783863 0.46946943 0.87905931 0.23997073 0.46605414 0.85159123\n\t\t 0.23347476 0.68783748 0.68729115 0.079965994 0.70542824 0.704256 0.23997073 0.46605414\n\t\t 0.85159123 0.43938726 0.43919408 0.78361177 0.41809326 0.64236039 0.64231706 0.23347476\n\t\t 0.68783748 0.68729115 0.43938726 0.43919408 0.78361177 0.64231628 0.41809094 0.64236259\n\t\t 0.57735145 0.57734966 0.57734972 0.41809326 0.64236039 0.64231706 0.99977618 0.019033505\n\t\t 0.0092366021 0.99723238 0.022492995 0.070864111 0.99374598 0.086405456 0.070733301\n\t\t 0.99700552 0.077314235 0.0015892504 0.99723238 0.022492995 0.070864111 0.97372901\n\t\t 0.030503301 0.22565794 0.96785438 0.096257217 0.23236258 0.99374598 0.086405456 0.070733301\n\t\t 0.97372901 0.030503301 0.22565794 0.89056593 0.039385349 0.45314568 0.8852663 0.11355273\n\t\t 0.45100927 0.96785438 0.096257217 0.23236258 0.89056593 0.039385349 0.45314568 0.703453\n\t\t 0.041675668 0.70951891 0.69550198 0.12472609 0.70761609 0.8852663 0.11355273 0.45100927\n\t\t 0.99700552 0.077314235 0.0015892504 0.99374598 0.086405456 0.070733301 0.97214639\n\t\t 0.21892059 0.083697781 0.97516459 0.2213908 0.0063272514 0.99374598 0.086405456 0.070733301\n\t\t 0.96785438 0.096257217 0.23236258 0.94616425 0.21957444 0.23782392 0.97214639 0.21892059\n\t\t 0.083697781 0.96785438 0.096257217 0.23236258 0.8852663 0.11355273 0.45100927 0.86765534\n\t\t 0.23360734 0.43886414 0.94616425 0.21957444 0.23782392 0.8852663 0.11355273 0.45100927\n\t\t 0.69550198 0.12472609 0.70761609 0.68103117 0.24880271 0.68868983 0.86765534 0.23360734\n\t\t 0.43886414 0.97516459 0.2213908 0.0063272514 0.97214639 0.21892059 0.083697781 0.89302337\n\t\t 0.43650228 0.10943011 0.89437324 0.44661459 0.02513751 0.97214639 0.21892059 0.083697781\n\t\t 0.94616425 0.21957444 0.23782392 0.8706497 0.42635325 0.24534054 0.89302337 0.43650228\n\t\t 0.10943011 0.94616425 0.21957444 0.23782392 0.86765534 0.23360734 0.43886414 0.79721242\n\t\t 0.42494261 0.42880771 0.8706497 0.42635325 0.24534054 0.86765534 0.23360734 0.43886414\n\t\t 0.68103117 0.24880271 0.68868983 0.63846785 0.42831913 0.63945407 0.79721242 0.42494261\n\t\t 0.42880771 0.89437324 0.44661459 0.02513751 0.89302337 0.43650228 0.10943011 0.70762134\n\t\t 0.69549632 0.12472688 0.70951599 0.70345592 0.041676294 0.89302337 0.43650228 0.10943011\n\t\t 0.8706497 0.42635325 0.24534054 0.68869698 0.68102396 0.24880314 0.70762134 0.69549632\n\t\t 0.12472688 0.8706497 0.42635325 0.24534054 0.79721242 0.42494261 0.42880771 0.63945276\n\t\t 0.63846874 0.42831978 0.68869698 0.68102396 0.24880314 0.79721242 0.42494261 0.42880771\n\t\t 0.63846785 0.42831913 0.63945407 0.57734448 0.57735264 0.57735378 0.63945276 0.63846874\n\t\t 0.42831978 0.019029897 0.0092337225 0.99977624 0.022492787 0.070861913 0.9972325\n\t\t 0.086404204 0.070729807 0.99374634 0.077310145 0.0015865664 0.99700582 0.022492787\n\t\t 0.070861913 0.9972325 0.030504571 0.22566073 0.97372818 0.096256271 0.23236771 0.96785325\n\t\t 0.086404204 0.070729807 0.99374634 0.030504571 0.22566073 0.97372818 0.039385632\n\t\t 0.45314878 0.89056444 0.11354948 0.45101783 0.88526231 0.096256271 0.23236771 0.96785325\n\t\t 0.039385632 0.45314878 0.89056444 0.041677661 0.70951951 0.70345223 0.12472672 0.70761329\n\t\t 0.69550461 0.11354948 0.45101783 0.88526231 0.077310145 0.0015865664 0.99700582 0.086404204\n\t\t 0.070729807 0.99374634 0.21891662 0.083695076 0.97214741 0.22138704 0.006325955 0.97516543\n\t\t 0.086404204 0.070729807 0.99374634 0.096256271 0.23236771 0.96785325 0.21957073 0.23782429\n\t\t 0.94616503 0.21891662 0.083695076 0.97214741 0.096256271 0.23236771 0.96785325 0.11354948\n\t\t 0.45101783 0.88526231 0.23360571 0.43887207 0.86765176 0.21957073 0.23782429 0.94616503\n\t\t 0.11354948 0.45101783 0.88526231 0.12472672 0.70761329 0.69550461 0.24880789 0.68868774\n\t\t 0.68103141 0.23360571 0.43887207 0.86765176 0.22138704 0.006325955 0.97516543 0.21891662\n\t\t 0.083695076 0.97214741 0.43649766 0.10942877 0.89302582 0.44661441 0.025137484 0.8943733\n\t\t 0.21891662 0.083695076 0.97214741 0.21957073 0.23782429 0.94616503 0.42635122 0.24534021\n\t\t 0.87065071 0.43649766 0.10942877 0.89302582 0.21957073 0.23782429 0.94616503 0.23360571\n\t\t 0.43887207 0.86765176 0.42494345 0.4288114 0.79721004 0.42635122 0.24534021 0.87065071\n\t\t 0.23360571 0.43887207 0.86765176 0.24880789 0.68868774 0.68103141 0.42832172 0.63944817\n\t\t 0.6384722 0.42494345 0.4288114 0.79721004 0.44661441 0.025137484 0.8943733 0.43649766\n\t\t 0.10942877 0.89302582 0.69550198 0.12472609 0.70761609 0.703453 0.041675668 0.70951891\n\t\t 0.43649766 0.10942877 0.89302582 0.42635122 0.24534021 0.87065071 0.68103117 0.24880271\n\t\t 0.68868983 0.69550198 0.12472609 0.70761609 0.42635122 0.24534021 0.87065071 0.42494345\n\t\t 0.4288114 0.79721004 0.63846785 0.42831913 0.63945407 0.68103117 0.24880271 0.68868983\n\t\t 0.42494345 0.4288114 0.79721004 0.42832172 0.63944817 0.6384722 0.57734448 0.57735264\n\t\t 0.57735378 0.63846785 0.42831913 0.63945407 0.0092351735 0.9997763 0.019030694 0.0708616\n\t\t 0.99723256 0.022492247 0.070724547 0.99374634 0.08640749 0.001586722 0.99700564 0.077311747\n\t\t 0.0708616 0.99723256 0.022492247 0.22565438 0.97372979 0.030501973 0.23236603 0.96785301\n\t\t 0.096263133 0.070724547 0.99374634 0.08640749 0.22565438 0.97372979 0.030501973 0.45315096\n\t\t 0.89056343 0.039383549 0.45102769 0.88525677 0.11355335 0.23236603 0.96785301 0.096263133\n\t\t 0.45315096 0.89056343 0.039383549 0.70952046 0.70345134 0.041676231 0.70761877 0.69549906\n\t\t 0.12472603 0.45102769 0.88525677 0.11355335 0.001586722 0.99700564 0.077311747 0.070724547\n\t\t 0.99374634 0.08640749 0.083686307 0.97214913 0.21891257 0.0063244249 0.97516465 0.22139101\n\t\t 0.070724547 0.99374634 0.08640749 0.23236603 0.96785301 0.096263133 0.23782766 0.94616497\n\t\t 0.21956727 0.083686307 0.97214913 0.21891257;\n\tsetAttr \".n[6640:6805]\" -type \"float3\"  0.23236603 0.96785301 0.096263133 0.45102769\n\t\t 0.88525677 0.11355335 0.43888095 0.86764747 0.23360518 0.23782766 0.94616497 0.21956727\n\t\t 0.45102769 0.88525677 0.11355335 0.70761877 0.69549906 0.12472603 0.68869418 0.68102551\n\t\t 0.248806 0.43888095 0.86764747 0.23360518 0.0063244249 0.97516465 0.22139101 0.083686307\n\t\t 0.97214913 0.21891257 0.10942876 0.89302731 0.43649462 0.025137445 0.89437193 0.44661716\n\t\t 0.083686307 0.97214913 0.21891257 0.23782766 0.94616497 0.21956727 0.24534346 0.87065101\n\t\t 0.42634898 0.10942876 0.89302731 0.43649462 0.23782766 0.94616497 0.21956727 0.43888095\n\t\t 0.86764747 0.23360518 0.42881489 0.79720557 0.42494848 0.24534346 0.87065101 0.42634898\n\t\t 0.43888095 0.86764747 0.23360518 0.68869418 0.68102551 0.248806 0.6394496 0.63846833\n\t\t 0.42832527 0.42881489 0.79720557 0.42494848 0.025137445 0.89437193 0.44661716 0.10942876\n\t\t 0.89302731 0.43649462 0.12472672 0.70761329 0.69550461 0.041677661 0.70951951 0.70345223\n\t\t 0.10942876 0.89302731 0.43649462 0.24534346 0.87065101 0.42634898 0.24880789 0.68868774\n\t\t 0.68103141 0.12472672 0.70761329 0.69550461 0.24534346 0.87065101 0.42634898 0.42881489\n\t\t 0.79720557 0.42494848 0.42832172 0.63944817 0.6384722 0.24880789 0.68868774 0.68103141\n\t\t 0.42881489 0.79720557 0.42494848 0.6394496 0.63846833 0.42832527 0.57734448 0.57735264\n\t\t 0.57735378 0.42832172 0.63944817 0.6384722 0.99977618 0.019034173 0.0092366505 0.99723232\n\t\t 0.022492573 0.070863903 0.9937458 0.086405665 0.070734397 0.99700558 0.077313587\n\t\t 0.0015899385 0.99723232 0.022492573 0.070863903 0.97372848 0.030503251 0.2256597\n\t\t 0.96785319 0.096259333 0.23236656 0.9937458 0.086405665 0.070734397 0.97372848 0.030503251\n\t\t 0.2256597 0.89056385 0.039387461 0.45314974 0.88526237 0.11355498 0.45101625 0.96785319\n\t\t 0.096259333 0.23236656 0.89056385 0.039387461 0.45314974 0.70345229 0.041679043 0.70951939\n\t\t 0.69549847 0.124731 0.70761865 0.88526237 0.11355498 0.45101625 0.99700558 0.077313587\n\t\t 0.0015899385 0.9937458 0.086405665 0.070734397 0.97214663 0.21891846 0.083698563\n\t\t 0.97516507 0.22138883 0.0063291388 0.9937458 0.086405665 0.070734397 0.96785319 0.096259333\n\t\t 0.23236656 0.9461652 0.21957231 0.23782252 0.97214663 0.21891846 0.083698563 0.96785319\n\t\t 0.096259333 0.23236656 0.88526237 0.11355498 0.45101625 0.86765498 0.23360455 0.43886626\n\t\t 0.9461652 0.21957231 0.23782252 0.88526237 0.11355498 0.45101625 0.69549847 0.124731\n\t\t 0.70761865 0.68103147 0.24880065 0.68869025 0.86765498 0.23360455 0.43886626 0.97516507\n\t\t 0.22138883 0.0063291388 0.97214663 0.21891846 0.083698563 0.89302331 0.43650246 0.10943057\n\t\t 0.89437008 0.4466207 0.025140174 0.97214663 0.21891846 0.083698563 0.9461652 0.21957231\n\t\t 0.23782252 0.87065178 0.42635053 0.24533802 0.89302331 0.43650246 0.10943057 0.9461652\n\t\t 0.21957231 0.23782252 0.86765498 0.23360455 0.43886626 0.79720867 0.42494532 0.42881206\n\t\t 0.87065178 0.42635053 0.24533802 0.86765498 0.23360455 0.43886626 0.68103147 0.24880065\n\t\t 0.68869025 0.63846707 0.42832226 0.63945287 0.79720867 0.42494532 0.42881206 0.89437008\n\t\t 0.4466207 0.025140174 0.89302331 0.43650246 0.10943057 0.70761877 0.69549906 0.12472603\n\t\t 0.70952046 0.70345134 0.041676231 0.89302331 0.43650246 0.10943057 0.87065178 0.42635053\n\t\t 0.24533802 0.68869418 0.68102551 0.248806 0.70761877 0.69549906 0.12472603 0.87065178\n\t\t 0.42635053 0.24533802 0.79720867 0.42494532 0.42881206 0.6394496 0.63846833 0.42832527\n\t\t 0.68869418 0.68102551 0.248806 0.79720867 0.42494532 0.42881206 0.63846707 0.42832226\n\t\t 0.63945287 0.57734448 0.57735264 0.57735378 0.6394496 0.63846833 0.42832527 0.019032309\n\t\t 0.0092324354 0.99977624 0.022492483 0.070862204 0.99723244 0.086402066 0.070730053\n\t\t 0.99374646 0.077310503 0.0015880894 0.99700582 0.022492483 0.070862204 0.99723244\n\t\t 0.030501481 0.22566183 0.97372812 0.096252598 0.23236594 0.96785396 0.086402066 0.070730053\n\t\t 0.99374646 0.030501481 0.22566183 0.97372812 0.039383963 0.45315221 0.89056271 0.11354697\n\t\t 0.45101893 0.88526219 0.096252598 0.23236594 0.96785396 0.039383963 0.45315221 0.89056271\n\t\t 0.041680049 0.70951718 0.70345449 0.12472952 0.70761496 0.6955024 0.11354697 0.45101893\n\t\t 0.88526219 0.077310503 0.0015880894 0.99700582 0.086402066 0.070730053 0.99374646\n\t\t 0.21891497 0.083698295 0.97214758 0.22138785 0.0063290601 0.97516531 0.086402066\n\t\t 0.070730053 0.99374646 0.096252598 0.23236594 0.96785396 0.21957132 0.23782218 0.94616538\n\t\t 0.21891497 0.083698295 0.97214758 0.096252598 0.23236594 0.96785396 0.11354697 0.45101893\n\t\t 0.88526219 0.23360725 0.43886852 0.86765319 0.21957132 0.23782218 0.94616538 0.11354697\n\t\t 0.45101893 0.88526219 0.12472952 0.70761496 0.6955024 0.24880494 0.68869358 0.68102658\n\t\t 0.23360725 0.43886852 0.86765319 0.22138785 0.0063290601 0.97516531 0.21891497 0.083698295\n\t\t 0.97214758 0.43649626 0.10943389 0.89302593 0.44661799 0.025141064 0.89437145 0.21891497\n\t\t 0.083698295 0.97214758 0.21957132 0.23782218 0.94616538 0.42635596 0.24533947 0.87064874\n\t\t 0.43649626 0.10943389 0.89302593 0.21957132 0.23782218 0.94616538 0.23360725 0.43886852\n\t\t 0.86765319 0.42494965 0.42880973 0.79720765 0.42635596 0.24533947 0.87064874 0.23360725\n\t\t 0.43886852 0.86765319 0.24880494 0.68869358 0.68102658 0.42831579 0.63945609 0.63846803\n\t\t 0.42494965 0.42880973 0.79720765 0.44661799 0.025141064 0.89437145 0.43649626 0.10943389\n\t\t 0.89302593 0.69549847 0.124731 0.70761865 0.70345229 0.041679043 0.70951939 0.43649626\n\t\t 0.10943389 0.89302593 0.42635596 0.24533947 0.87064874 0.68103147 0.24880065 0.68869025\n\t\t 0.69549847 0.124731 0.70761865 0.42635596 0.24533947 0.87064874 0.42494965 0.42880973\n\t\t 0.79720765 0.63846707 0.42832226 0.63945287 0.68103147 0.24880065 0.68869025 0.42494965\n\t\t 0.42880973 0.79720765 0.42831579 0.63945609 0.63846803;\n\tsetAttr \".n[6806:6971]\" -type \"float3\"  0.57734448 0.57735264 0.57735378 0.63846707\n\t\t 0.42832226 0.63945287 0.0092436569 0.99977618 0.01903321 0.070868134 0.99723208 0.022493612\n\t\t 0.070747241 0.99374491 0.086404249 0.0015986324 0.99700564 0.077311613 0.070868134\n\t\t 0.99723208 0.022493612 0.22566262 0.97372782 0.030507673 0.23236702 0.96785319 0.096258909\n\t\t 0.070747241 0.99374491 0.086404249 0.22566262 0.97372782 0.030507673 0.4531458 0.89056575\n\t\t 0.039389003 0.45101708 0.88526213 0.11355412 0.23236702 0.96785319 0.096258909 0.4531458\n\t\t 0.89056575 0.039389003 0.70951599 0.70345592 0.041676294 0.70762134 0.69549632 0.12472688\n\t\t 0.45101708 0.88526213 0.11355412 0.0015986324 0.99700564 0.077311613 0.070747241\n\t\t 0.99374491 0.086404249 0.083703816 0.97214735 0.21891357 0.0063302093 0.97516549\n\t\t 0.22138727 0.070747241 0.99374491 0.086404249 0.23236702 0.96785319 0.096258909 0.23782535\n\t\t 0.94616538 0.21956795 0.083703816 0.97214735 0.21891357 0.23236702 0.96785319 0.096258909\n\t\t 0.45101708 0.88526213 0.11355412 0.43887156 0.8676526 0.23360378 0.23782535 0.94616538\n\t\t 0.21956795 0.45101708 0.88526213 0.11355412 0.70762134 0.69549632 0.12472688 0.68869698\n\t\t 0.68102396 0.24880314 0.43887156 0.8676526 0.23360378 0.0063302093 0.97516549 0.22138727\n\t\t 0.083703816 0.97214735 0.21891357 0.10943145 0.89302409 0.43650058 0.025139384 0.89437014\n\t\t 0.44662061 0.083703816 0.97214735 0.21891357 0.23782535 0.94616538 0.21956795 0.24534088\n\t\t 0.87065095 0.42635056 0.10943145 0.89302409 0.43650058 0.23782535 0.94616538 0.21956795\n\t\t 0.43887156 0.8676526 0.23360378 0.42880857 0.79721105 0.42494434 0.24534088 0.87065095\n\t\t 0.42635056 0.43887156 0.8676526 0.23360378 0.68869698 0.68102396 0.24880314 0.63945276\n\t\t 0.63846874 0.42831978 0.42880857 0.79721105 0.42494434 0.025139384 0.89437014 0.44662061\n\t\t 0.10943145 0.89302409 0.43650058 0.12472952 0.70761496 0.6955024 0.041680049 0.70951718\n\t\t 0.70345449 0.10943145 0.89302409 0.43650058 0.24534088 0.87065095 0.42635056 0.24880494\n\t\t 0.68869358 0.68102658 0.12472952 0.70761496 0.6955024 0.24534088 0.87065095 0.42635056\n\t\t 0.42880857 0.79721105 0.42494434 0.42831579 0.63945609 0.63846803 0.24880494 0.68869358\n\t\t 0.68102658 0.42880857 0.79721105 0.42494434 0.63945276 0.63846874 0.42831978 0.57734448\n\t\t 0.57735264 0.57735378 0.42831579 0.63945609 0.63846803 0.014660339 0.014639962 0.99978536\n\t\t 0.075965069 0.011857471 0.99703997 0.081845015 0.081114031 0.99333882 0.012107753\n\t\t 0.075992435 0.99703485 0.075965069 0.011857471 0.99703997 0.22849117 0.012228955\n\t\t 0.97346914 0.24062914 0.084006265 0.96697491 0.081845015 0.081114031 0.99333882 0.22849117\n\t\t 0.012228955 0.97346914 0.45735821 0.010886895 0.88921589 0.46820849 0.082150236 0.87979102\n\t\t 0.24062914 0.084006265 0.96697491 0.45735821 0.010886895 0.88921589 0.70714724 0.0096215904\n\t\t 0.70700085 0.70425886 0.079968736 0.70542508 0.46820849 0.082150236 0.87979102 0.012107753\n\t\t 0.075992435 0.99703485 0.081845015 0.081114031 0.99333882 0.085010722 0.24078061\n\t\t 0.96684945 0.012681938 0.2283017 0.97350782 0.081845015 0.081114031 0.99333882 0.24062914\n\t\t 0.084006265 0.96697491 0.24605553 0.24551262 0.93764615 0.085010722 0.24078061 0.96684945\n\t\t 0.24062914 0.084006265 0.96697491 0.46820849 0.082150236 0.87979102 0.46578485 0.2393797\n\t\t 0.85190469 0.24605553 0.24551262 0.93764615 0.46820849 0.082150236 0.87979102 0.70425886\n\t\t 0.079968736 0.70542508 0.68728822 0.23346767 0.68784273 0.46578485 0.2393797 0.85190469\n\t\t 0.012681938 0.2283017 0.97350782 0.085010722 0.24078061 0.96684945 0.082779586 0.46946821\n\t\t 0.87906039 0.011130692 0.45709392 0.8893488 0.085010722 0.24078061 0.96684945 0.24605553\n\t\t 0.24551262 0.93764615 0.23996744 0.46605325 0.85159266 0.082779586 0.46946821 0.87906039\n\t\t 0.24605553 0.24551262 0.93764615 0.46578485 0.2393797 0.85190469 0.43938747 0.43919533\n\t\t 0.78361088 0.23996744 0.46605325 0.85159266 0.46578485 0.2393797 0.85190469 0.68728822\n\t\t 0.23346767 0.68784273 0.64231473 0.41809264 0.64236301 0.43938747 0.43919533 0.78361088\n\t\t 0.011130692 0.45709392 0.8893488 0.082779586 0.46946821 0.87906039 0.07996054 0.70542622\n\t\t 0.7042585 0.0096158283 0.70700347 0.7071448 0.082779586 0.46946821 0.87906039 0.23996744\n\t\t 0.46605325 0.85159266 0.23346892 0.68783915 0.68729144 0.07996054 0.70542622 0.7042585\n\t\t 0.23996744 0.46605325 0.85159266 0.43938747 0.43919533 0.78361088 0.41809824 0.64236087\n\t\t 0.6423133 0.23346892 0.68783915 0.68729144 0.43938747 0.43919533 0.78361088 0.64231473\n\t\t 0.41809264 0.64236301 0.57735491 0.57734638 0.57734942 0.41809824 0.64236087 0.6423133\n\t\t 0.99978536 0.014660403 0.014639906 0.99703997 0.075965472 0.011857368 0.99333864\n\t\t 0.081846856 0.081113316 0.99703491 0.012108409 0.075992599 0.99703997 0.075965472\n\t\t 0.011857368 0.9734695 0.22848985 0.012229009 0.96697521 0.24062853 0.084005125 0.99333864\n\t\t 0.081846856 0.081113316 0.9734695 0.22848985 0.012229009 0.88921779 0.45735458 0.010886912\n\t\t 0.8797943 0.46820256 0.082148224 0.96697521 0.24062853 0.084005125 0.88921779 0.45735458\n\t\t 0.010886912 0.70700616 0.70714194 0.0096212607 0.70542425 0.70425987 0.079967044\n\t\t 0.8797943 0.46820256 0.082148224 0.99703491 0.012108409 0.075992599 0.99333864 0.081846856\n\t\t 0.081113316 0.96684933 0.085011899 0.24078076 0.9735077 0.012683309 0.22830188 0.99333864\n\t\t 0.081846856 0.081113316 0.96697521 0.24062853 0.084005125 0.93764609 0.24605548 0.24551269\n\t\t 0.96684933 0.085011899 0.24078076 0.96697521 0.24062853 0.084005125 0.8797943 0.46820256\n\t\t 0.082148224 0.85190564 0.46578357 0.23937918 0.93764609 0.24605548 0.24551269 0.8797943\n\t\t 0.46820256 0.082148224 0.70542425 0.70425987 0.079967044 0.68784148 0.68729055 0.23346435\n\t\t 0.85190564 0.46578357 0.23937918 0.9735077 0.012683309 0.22830188 0.96684933 0.085011899\n\t\t 0.24078076 0.87905931 0.082782298 0.46946973 0.88934934 0.011132182 0.45709285;\n\tsetAttr \".n[6972:7137]\" -type \"float3\"  0.96684933 0.085011899 0.24078076 0.93764609\n\t\t 0.24605548 0.24551269 0.85159206 0.23996651 0.4660548 0.87905931 0.082782298 0.46946973\n\t\t 0.93764609 0.24605548 0.24551269 0.85190564 0.46578357 0.23937918 0.78361207 0.43938696\n\t\t 0.43919393 0.85159206 0.23996651 0.4660548 0.85190564 0.46578357 0.23937918 0.68784148\n\t\t 0.68729055 0.23346435 0.64236975 0.6423099 0.4180899 0.78361207 0.43938696 0.43919393\n\t\t 0.88934934 0.011132182 0.45709285 0.87905931 0.082782298 0.46946973 0.70425886 0.079968736\n\t\t 0.70542508 0.70714724 0.0096215904 0.70700085 0.87905931 0.082782298 0.46946973 0.85159206\n\t\t 0.23996651 0.4660548 0.68728822 0.23346767 0.68784273 0.70425886 0.079968736 0.70542508\n\t\t 0.85159206 0.23996651 0.4660548 0.78361207 0.43938696 0.43919393 0.64231473 0.41809264\n\t\t 0.64236301 0.68728822 0.23346767 0.68784273 0.78361207 0.43938696 0.43919393 0.64236975\n\t\t 0.6423099 0.4180899 0.57735491 0.57734638 0.57734942 0.64231473 0.41809264 0.64236301\n\t\t 0.01464267 0.9997853 0.014659925 0.011857862 0.99703997 0.075964116 0.081114523 0.99333882\n\t\t 0.081843719 0.075990565 0.99703503 0.012106717 0.011857862 0.99703997 0.075964116\n\t\t 0.012228126 0.97346926 0.22849084 0.084008791 0.96697456 0.2406299 0.081114523 0.99333882\n\t\t 0.081843719 0.012228126 0.97346926 0.22849084 0.010882727 0.88921678 0.45735666 0.082143515\n\t\t 0.87979192 0.46820784 0.084008791 0.96697456 0.2406299 0.010882727 0.88921678 0.45735666\n\t\t 0.0096158283 0.70700347 0.7071448 0.07996054 0.70542622 0.7042585 0.082143515 0.87979192\n\t\t 0.46820784 0.075990565 0.99703503 0.012106717 0.081114523 0.99333882 0.081843719\n\t\t 0.24078569 0.96684825 0.085009538 0.22829227 0.97351003 0.012681621 0.081114523 0.99333882\n\t\t 0.081843719 0.084008791 0.96697456 0.2406299 0.2455209 0.93764442 0.24605367 0.24078569\n\t\t 0.96684825 0.085009538 0.084008791 0.96697456 0.2406299 0.082143515 0.87979192 0.46820784\n\t\t 0.23938017 0.8519035 0.46578687 0.2455209 0.93764442 0.24605367 0.082143515 0.87979192\n\t\t 0.46820784 0.07996054 0.70542622 0.7042585 0.23346892 0.68783915 0.68729144 0.23938017\n\t\t 0.8519035 0.46578687 0.22829227 0.97351003 0.012681621 0.24078569 0.96684825 0.085009538\n\t\t 0.46946734 0.8790608 0.082780771 0.45709196 0.88934982 0.011131631 0.24078569 0.96684825\n\t\t 0.085009538 0.2455209 0.93764442 0.24605367 0.46605653 0.85159189 0.23996374 0.46946734\n\t\t 0.8790608 0.082780771 0.2455209 0.93764442 0.24605367 0.23938017 0.8519035 0.46578687\n\t\t 0.43920261 0.7836073 0.43938658 0.46605653 0.85159189 0.23996374 0.23938017 0.8519035\n\t\t 0.46578687 0.23346892 0.68783915 0.68729144 0.41809824 0.64236087 0.6423133 0.43920261\n\t\t 0.7836073 0.43938658 0.45709196 0.88934982 0.011131631 0.46946734 0.8790608 0.082780771\n\t\t 0.70542425 0.70425987 0.079967044 0.70700616 0.70714194 0.0096212607 0.46946734 0.8790608\n\t\t 0.082780771 0.46605653 0.85159189 0.23996374 0.68784148 0.68729055 0.23346435 0.70542425\n\t\t 0.70425987 0.079967044 0.46605653 0.85159189 0.23996374 0.43920261 0.7836073 0.43938658\n\t\t 0.64236975 0.6423099 0.4180899 0.68784148 0.68729055 0.23346435 0.43920261 0.7836073\n\t\t 0.43938658 0.41809824 0.64236087 0.6423133 0.57735491 0.57734638 0.57734942 0.64236975\n\t\t 0.6423099 0.4180899 0.03198031 0.03199077 0.99897641 0.090521052 0.051803738 0.99454635\n\t\t 0.13129416 0.14142704 0.98120344 0.05630989 0.095323145 0.99385244 0.090521052 0.051803738\n\t\t 0.99454635 0.22668488 0.065930299 0.97173417 0.23088305 0.16357979 0.95913219 0.13129416\n\t\t 0.14142704 0.98120344 0.22668488 0.065930299 0.97173417 0.4507944 0.057648342 0.89076436\n\t\t 0.44082159 0.14820828 0.88527429 0.23088305 0.16357979 0.95913219 0.4507944 0.057648342\n\t\t 0.89076436 0.70907819 0.054160915 0.70304674 0.70693398 0.13693914 0.69389629 0.44082159\n\t\t 0.14820828 0.88527429 0.05630989 0.095323145 0.99385244 0.13129416 0.14142704 0.98120344\n\t\t 0.15836488 0.24412827 0.95672446 0.07882046 0.23029669 0.96992302 0.13129416 0.14142704\n\t\t 0.98120344 0.23088305 0.16357979 0.95913219 0.23021738 0.25076696 0.9402743 0.15836488\n\t\t 0.24412827 0.95672446 0.23088305 0.16357979 0.95913219 0.44082159 0.14820828 0.88527429\n\t\t 0.42454493 0.24422298 0.87184674 0.23021738 0.25076696 0.9402743 0.44082159 0.14820828\n\t\t 0.88527429 0.70693398 0.13693914 0.69389629 0.69238722 0.23553416 0.68199962 0.42454493\n\t\t 0.24422298 0.87184674 0.07882046 0.23029669 0.96992302 0.15836488 0.24412827 0.95672446\n\t\t 0.1494441 0.43097192 0.88990426 0.07046397 0.44563296 0.89243829 0.15836488 0.24412827\n\t\t 0.95672446 0.23021738 0.25076696 0.9402743 0.22959892 0.42116132 0.87744373 0.1494441\n\t\t 0.43097192 0.88990426 0.23021738 0.25076696 0.9402743 0.42454493 0.24422298 0.87184674\n\t\t 0.41218534 0.4147383 0.81123078 0.22959892 0.42116132 0.87744373 0.42454493 0.24422298\n\t\t 0.87184674 0.69238722 0.23553416 0.68199962 0.64694118 0.40728009 0.64466268 0.41218534\n\t\t 0.4147383 0.81123078 0.07046397 0.44563296 0.89243829 0.1494441 0.43097192 0.88990426\n\t\t 0.13694814 0.69389391 0.70693451 0.054158241 0.70305192 0.70907319 0.1494441 0.43097192\n\t\t 0.88990426 0.22959892 0.42116132 0.87744373 0.23553261 0.68199033 0.69239706 0.13694814\n\t\t 0.69389391 0.70693451 0.22959892 0.42116132 0.87744373 0.41218534 0.4147383 0.81123078\n\t\t 0.40728101 0.64465225 0.64695108 0.23553261 0.68199033 0.69239706 0.41218534 0.4147383\n\t\t 0.81123078 0.64694118 0.40728009 0.64466268 0.57736391 0.57733619 0.5773508 0.40728101\n\t\t 0.64465225 0.64695108 0.99897635 0.03198126 0.03199112 0.99454612 0.090521894 0.051805247\n\t\t 0.98120338 0.13129282 0.14142905 0.99385226 0.056309838 0.095324941 0.99454612 0.090521894\n\t\t 0.051805247 0.97173464 0.22668277 0.065930545 0.95913225 0.23088269 0.16358002 0.98120338\n\t\t 0.13129282 0.14142905 0.97173464 0.22668277 0.065930545 0.89076823 0.45078704 0.057644956;\n\tsetAttr \".n[7138:7303]\" -type \"float3\"  0.88527322 0.44082427 0.14820698 0.95913225\n\t\t 0.23088269 0.16358002 0.89076823 0.45078704 0.057644956 0.70304334 0.70908201 0.054154981\n\t\t 0.69389898 0.70693183 0.13693659 0.88527322 0.44082427 0.14820698 0.99385226 0.056309838\n\t\t 0.095324941 0.98120338 0.13129282 0.14142905 0.95672572 0.15836537 0.24412335 0.96992302\n\t\t 0.078819208 0.2302971 0.98120338 0.13129282 0.14142905 0.95913225 0.23088269 0.16358002\n\t\t 0.94027478 0.23022076 0.25076243 0.95672572 0.15836537 0.24412335 0.95913225 0.23088269\n\t\t 0.16358002 0.88527322 0.44082427 0.14820698 0.87184614 0.42454794 0.24422008 0.94027478\n\t\t 0.23022076 0.25076243 0.88527322 0.44082427 0.14820698 0.69389898 0.70693183 0.13693659\n\t\t 0.68200153 0.69238633 0.23553132 0.87184614 0.42454794 0.24422008 0.96992302 0.078819208\n\t\t 0.2302971 0.95672572 0.15836537 0.24412335 0.88990581 0.14944018 0.43097013 0.89243841\n\t\t 0.070462376 0.44563287 0.95672572 0.15836537 0.24412335 0.94027478 0.23022076 0.25076243\n\t\t 0.87744379 0.22960031 0.42116043 0.88990581 0.14944018 0.43097013 0.94027478 0.23022076\n\t\t 0.25076243 0.87184614 0.42454794 0.24422008 0.81122768 0.41219342 0.41473633 0.87744379\n\t\t 0.22960031 0.42116043 0.87184614 0.42454794 0.24422008 0.68200153 0.69238633 0.23553132\n\t\t 0.64466453 0.64694291 0.40727451 0.81122768 0.41219342 0.41473633 0.89243841 0.070462376\n\t\t 0.44563287 0.88990581 0.14944018 0.43097013 0.70693398 0.13693914 0.69389629 0.70907819\n\t\t 0.054160915 0.70304674 0.88990581 0.14944018 0.43097013 0.87744379 0.22960031 0.42116043\n\t\t 0.69238722 0.23553416 0.68199962 0.70693398 0.13693914 0.69389629 0.87744379 0.22960031\n\t\t 0.42116043 0.81122768 0.41219342 0.41473633 0.64694118 0.40728009 0.64466268 0.69238722\n\t\t 0.23553416 0.68199962 0.81122768 0.41219342 0.41473633 0.64466453 0.64694291 0.40727451\n\t\t 0.57736391 0.57733619 0.5773508 0.64694118 0.40728009 0.64466268 0.031992305 0.99897635\n\t\t 0.031980187 0.051799692 0.99454635 0.09052255 0.14142425 0.98120385 0.13129385 0.09533336\n\t\t 0.99385142 0.056310646 0.051799692 0.99454635 0.09052255 0.065915264 0.97173417 0.2266887\n\t\t 0.16355641 0.95913637 0.23088232 0.14142425 0.98120385 0.13129385 0.065915264 0.97173417\n\t\t 0.2266887 0.057632703 0.89076769 0.45078972 0.14820062 0.88527578 0.44082123 0.16355641\n\t\t 0.95913637 0.23088232 0.057632703 0.89076769 0.45078972 0.054158241 0.70305192 0.70907319\n\t\t 0.13694814 0.69389391 0.70693451 0.14820062 0.88527578 0.44082123 0.09533336 0.99385142\n\t\t 0.056310646 0.14142425 0.98120385 0.13129385 0.24411745 0.95672745 0.15836447 0.23030661\n\t\t 0.96992087 0.078817815 0.14142425 0.98120385 0.13129385 0.16355641 0.95913637 0.23088232\n\t\t 0.25075218 0.94027793 0.2302192 0.24411745 0.95672745 0.15836447 0.16355641 0.95913637\n\t\t 0.23088232 0.14820062 0.88527578 0.44082123 0.24422181 0.8718437 0.42455196 0.25075218\n\t\t 0.94027793 0.2302192 0.14820062 0.88527578 0.44082123 0.13694814 0.69389391 0.70693451\n\t\t 0.23553261 0.68199033 0.69239706 0.24422181 0.8718437 0.42455196 0.23030661 0.96992087\n\t\t 0.078817815 0.24411745 0.95672745 0.15836447 0.43096766 0.88990736 0.14943834 0.44562593\n\t\t 0.89244241 0.070456445 0.24411745 0.95672745 0.15836447 0.25075218 0.94027793 0.2302192\n\t\t 0.42115805 0.87744439 0.22960234 0.43096766 0.88990736 0.14943834 0.25075218 0.94027793\n\t\t 0.2302192 0.24422181 0.8718437 0.42455196 0.41474107 0.81122565 0.41219261 0.42115805\n\t\t 0.87744439 0.22960234 0.24422181 0.8718437 0.42455196 0.23553261 0.68199033 0.69239706\n\t\t 0.40728101 0.64465225 0.64695108 0.41474107 0.81122565 0.41219261 0.44562593 0.89244241\n\t\t 0.070456445 0.43096766 0.88990736 0.14943834 0.69389898 0.70693183 0.13693659 0.70304334\n\t\t 0.70908201 0.054154981 0.43096766 0.88990736 0.14943834 0.42115805 0.87744439 0.22960234\n\t\t 0.68200153 0.69238633 0.23553132 0.69389898 0.70693183 0.13693659 0.42115805 0.87744439\n\t\t 0.22960234 0.41474107 0.81122565 0.41219261 0.64466453 0.64694291 0.40727451 0.68200153\n\t\t 0.69238633 0.23553132 0.41474107 0.81122565 0.41219261 0.40728101 0.64465225 0.64695108\n\t\t 0.57736391 0.57733619 0.5773508 0.64466453 0.64694291 0.40727451 0.019034069 0.0092368713\n\t\t 0.99977618 0.022492398 0.07086537 0.99723226 0.086404957 0.070734985 0.9937458 0.077313349\n\t\t 0.0015899076 0.99700558 0.022492398 0.07086537 0.99723226 0.030503377 0.22566064\n\t\t 0.97372824 0.096258096 0.23236549 0.96785367 0.086404957 0.070734985 0.9937458 0.030503377\n\t\t 0.22566064 0.97372824 0.039386861 0.45314968 0.89056385 0.1135513 0.4510144 0.88526392\n\t\t 0.096258096 0.23236549 0.96785367 0.039386861 0.45314968 0.89056385 0.041680854 0.70951658\n\t\t 0.70345503 0.12473091 0.70761496 0.69550216 0.1135513 0.4510144 0.88526392 0.077313349\n\t\t 0.0015899076 0.99700558 0.086404957 0.070734985 0.9937458 0.21891944 0.083699085\n\t\t 0.97214645 0.22138977 0.0063286591 0.97516483 0.086404957 0.070734985 0.9937458 0.096258096\n\t\t 0.23236549 0.96785367 0.21957414 0.2378232 0.94616443 0.21891944 0.083699085 0.97214645\n\t\t 0.096258096 0.23236549 0.96785367 0.1135513 0.4510144 0.88526392 0.23360936 0.43886817\n\t\t 0.86765277 0.21957414 0.2378232 0.94616443 0.1135513 0.4510144 0.88526392 0.12473091\n\t\t 0.70761496 0.69550216 0.24880891 0.68869239 0.68102634 0.23360936 0.43886817 0.86765277\n\t\t 0.22138977 0.0063286591 0.97516483 0.21891944 0.083699085 0.97214645 0.43650034 0.10943216\n\t\t 0.89302415 0.44661984 0.025139581 0.89437056 0.21891944 0.083699085 0.97214645 0.21957414\n\t\t 0.2378232 0.94616443 0.42635253 0.24534234 0.87064958 0.43650034 0.10943216 0.89302415\n\t\t 0.21957414 0.2378232 0.94616443 0.23360936 0.43886817 0.86765277 0.42495066 0.42881271\n\t\t 0.79720563 0.42635253 0.24534234 0.87064958 0.23360936 0.43886817 0.86765277 0.24880891\n\t\t 0.68869239 0.68102634 0.42832214 0.63945043 0.63846946 0.42495066 0.42881271 0.79720563;\n\tsetAttr \".n[7304:7469]\" -type \"float3\"  0.44661984 0.025139581 0.89437056 0.43650034\n\t\t 0.10943216 0.89302415 0.69549614 0.12472929 0.70762122 0.70345324 0.041676912 0.70951855\n\t\t 0.43650034 0.10943216 0.89302415 0.42635253 0.24534234 0.87064958 0.68102324 0.24880674\n\t\t 0.68869621 0.69549614 0.12472929 0.70762122 0.42635253 0.24534234 0.87064958 0.42495066\n\t\t 0.42881271 0.79720563 0.63846695 0.42832574 0.63945049 0.68102324 0.24880674 0.68869621\n\t\t 0.42495066 0.42881271 0.79720563 0.42832214 0.63945043 0.63846946 0.57735139 0.57734978\n\t\t 0.57734966 0.63846695 0.42832574 0.63945049 0.0092436178 0.99977618 0.019033253 0.070868373\n\t\t 0.99723208 0.022493323 0.070747495 0.99374491 0.086404242 0.0015989962 0.99700564\n\t\t 0.077312328 0.070868373 0.99723208 0.022493323 0.22566284 0.9737277 0.030506892 0.23236634\n\t\t 0.96785337 0.096258819 0.070747495 0.99374491 0.086404242 0.22566284 0.9737277 0.030506892\n\t\t 0.45314187 0.89056778 0.039388627 0.45101166 0.88526487 0.11355418 0.23236634 0.96785337\n\t\t 0.096258819 0.45314187 0.89056778 0.039388627 0.70951343 0.70345849 0.041676778 0.70762092\n\t\t 0.69549674 0.12472664 0.45101166 0.88526487 0.11355418 0.0015989962 0.99700564 0.077312328\n\t\t 0.070747495 0.99374491 0.086404242 0.08370439 0.97214693 0.21891496 0.0063309725\n\t\t 0.97516537 0.22138757 0.070747495 0.99374491 0.086404242 0.23236634 0.96785337 0.096258819\n\t\t 0.23782071 0.94616622 0.2195698 0.08370439 0.97214693 0.21891496 0.23236634 0.96785337\n\t\t 0.096258819 0.45101166 0.88526487 0.11355418 0.43886992 0.86765301 0.23360528 0.23782071\n\t\t 0.94616622 0.2195698 0.45101166 0.88526487 0.11355418 0.70762092 0.69549674 0.12472664\n\t\t 0.68870044 0.68102002 0.2488042 0.43886992 0.86765301 0.23360528 0.0063309725 0.97516537\n\t\t 0.22138757 0.08370439 0.97214693 0.21891496 0.10943325 0.89302421 0.43649974 0.025140733\n\t\t 0.89437044 0.44661999 0.08370439 0.97214693 0.21891496 0.23782071 0.94616622 0.2195698\n\t\t 0.24533632 0.87065119 0.42635262 0.10943325 0.89302421 0.43649974 0.23782071 0.94616622\n\t\t 0.2195698 0.43886992 0.86765301 0.23360528 0.42881122 0.79720652 0.42495021 0.24533632\n\t\t 0.87065119 0.42635262 0.43886992 0.86765301 0.23360528 0.68870044 0.68102002 0.2488042\n\t\t 0.63945544 0.63846266 0.42832476 0.42881122 0.79720652 0.42495021 0.025140733 0.89437044\n\t\t 0.44661999 0.10943325 0.89302421 0.43649974 0.12473091 0.70761496 0.69550216 0.041680854\n\t\t 0.70951658 0.70345503 0.10943325 0.89302421 0.43649974 0.24533632 0.87065119 0.42635262\n\t\t 0.24880891 0.68869239 0.68102634 0.12473091 0.70761496 0.69550216 0.24533632 0.87065119\n\t\t 0.42635262 0.42881122 0.79720652 0.42495021 0.42832214 0.63945043 0.63846946 0.24880891\n\t\t 0.68869239 0.68102634 0.42881122 0.79720652 0.42495021 0.63945544 0.63846266 0.42832476\n\t\t 0.57735139 0.57734978 0.57734966 0.42832214 0.63945043 0.63846946 0.99977624 0.019032368\n\t\t 0.0092320796 0.99723285 0.02249223 0.070858501 0.99374658 0.08640074 0.0707286 0.99700564\n\t\t 0.077311613 0.0015870234 0.99723285 0.02249223 0.070858501 0.97372907 0.030502127\n\t\t 0.22565703 0.96785414 0.09625192 0.23236585 0.99374658 0.08640074 0.0707286 0.97372907\n\t\t 0.030502127 0.22565703 0.8905648 0.03938498 0.45314813 0.88526362 0.11354905 0.45101535\n\t\t 0.96785414 0.09625192 0.23236585 0.8905648 0.03938498 0.45314813 0.70345294 0.041676968\n\t\t 0.70951885 0.69550276 0.12472698 0.70761508 0.88526362 0.11354905 0.45101535 0.99700564\n\t\t 0.077311613 0.0015870234 0.99374658 0.08640074 0.0707286 0.97214663 0.21891896 0.083698146\n\t\t 0.97516471 0.2213904 0.0063280691 0.99374658 0.08640074 0.0707286 0.96785414 0.09625192\n\t\t 0.23236585 0.94616365 0.21957025 0.23783043 0.97214663 0.21891896 0.083698146 0.96785414\n\t\t 0.09625192 0.23236585 0.88526362 0.11354905 0.45101535 0.867652 0.23360468 0.4388724\n\t\t 0.94616365 0.21957025 0.23783043 0.88526362 0.11354905 0.45101535 0.69550276 0.12472698\n\t\t 0.70761508 0.68102902 0.24880305 0.68869168 0.867652 0.23360468 0.4388724 0.97516471\n\t\t 0.2213904 0.0063280691 0.97214663 0.21891896 0.083698146 0.89302456 0.43649954 0.10943158\n\t\t 0.89437282 0.44661528 0.025139505 0.97214663 0.21891896 0.083698146 0.94616365 0.21957025\n\t\t 0.23783043 0.87065029 0.42635027 0.24534349 0.89302456 0.43649954 0.10943158 0.94616365\n\t\t 0.21957025 0.23783043 0.867652 0.23360468 0.4388724 0.79720664 0.42494541 0.42881587\n\t\t 0.87065029 0.42635027 0.24534349 0.867652 0.23360468 0.4388724 0.68102902 0.24880305\n\t\t 0.68869168 0.6384694 0.42831764 0.63945359 0.79720664 0.42494541 0.42881587 0.89437282\n\t\t 0.44661528 0.025139505 0.89302456 0.43649954 0.10943158 0.70762092 0.69549674 0.12472664\n\t\t 0.70951343 0.70345849 0.041676778 0.89302456 0.43649954 0.10943158 0.87065029 0.42635027\n\t\t 0.24534349 0.68870044 0.68102002 0.2488042 0.70762092 0.69549674 0.12472664 0.87065029\n\t\t 0.42635027 0.24534349 0.79720664 0.42494541 0.42881587 0.63945544 0.63846266 0.42832476\n\t\t 0.68870044 0.68102002 0.2488042 0.79720664 0.42494541 0.42881587 0.6384694 0.42831764\n\t\t 0.63945359 0.57735139 0.57734978 0.57734966 0.63945544 0.63846266 0.42832476 0.019033736\n\t\t 0.0092368061 0.99977618 0.022494096 0.070864536 0.99723238 0.086405784 0.07073427\n\t\t 0.9937458 0.077312581 0.0015897917 0.99700564 0.022494096 0.070864536 0.99723238\n\t\t 0.030505935 0.22566065 0.97372824 0.096259646 0.2323678 0.96785289 0.086405784 0.07073427\n\t\t 0.9937458 0.030505935 0.22566065 0.97372824 0.039387032 0.45314971 0.89056391 0.11355509\n\t\t 0.45101655 0.88526225 0.096259646 0.2323678 0.96785289 0.039387032 0.45314971 0.89056391\n\t\t 0.0416779 0.70951957 0.70345229 0.12473094 0.70761347 0.69550371 0.11355509 0.45101655\n\t\t 0.88526225 0.077312581 0.0015897917 0.99700564 0.086405784 0.07073427 0.9937458 0.21891747\n\t\t 0.083698533 0.97214693 0.22138909 0.0063283476 0.97516513 0.086405784 0.07073427\n\t\t 0.9937458 0.096259646 0.2323678 0.96785289;\n\tsetAttr \".n[7470:7635]\" -type \"float3\"  0.21957327 0.23782343 0.94616467 0.21891747\n\t\t 0.083698533 0.97214693 0.096259646 0.2323678 0.96785289 0.11355509 0.45101655 0.88526225\n\t\t 0.2336072 0.43886986 0.8676526 0.21957327 0.23782343 0.94616467 0.11355509 0.45101655\n\t\t 0.88526225 0.12473094 0.70761347 0.69550371 0.24880436 0.68868804 0.68103248 0.2336072\n\t\t 0.43886986 0.8676526 0.22138909 0.0063283476 0.97516513 0.21891747 0.083698533 0.97214693\n\t\t 0.43649921 0.10943112 0.89302474 0.44661757 0.025139334 0.89437175 0.21891747 0.083698533\n\t\t 0.97214693 0.21957327 0.23782343 0.94616467 0.42635292 0.24533975 0.87065011 0.43649921\n\t\t 0.10943112 0.89302474 0.21957327 0.23782343 0.94616467 0.2336072 0.43886986 0.8676526\n\t\t 0.42494616 0.42880934 0.79720974 0.42635292 0.24533975 0.87065011 0.2336072 0.43886986\n\t\t 0.8676526 0.24880436 0.68868804 0.68103248 0.42832384 0.63944906 0.6384697 0.42494616\n\t\t 0.42880934 0.79720974 0.44661757 0.025139334 0.89437175 0.43649921 0.10943112 0.89302474\n\t\t 0.69550276 0.12472698 0.70761508 0.70345294 0.041676968 0.70951885 0.43649921 0.10943112\n\t\t 0.89302474 0.42635292 0.24533975 0.87065011 0.68102902 0.24880305 0.68869168 0.69550276\n\t\t 0.12472698 0.70761508 0.42635292 0.24533975 0.87065011 0.42494616 0.42880934 0.79720974\n\t\t 0.6384694 0.42831764 0.63945359 0.68102902 0.24880305 0.68869168 0.42494616 0.42880934\n\t\t 0.79720974 0.42832384 0.63944906 0.6384697 0.57735139 0.57734978 0.57734966 0.6384694\n\t\t 0.42831764 0.63945359 0.0092351409 0.9997763 0.01903072 0.070861571 0.99723256 0.022492366\n\t\t 0.070724085 0.99374634 0.086407408 0.0015867227 0.99700564 0.077311888 0.070861571\n\t\t 0.99723256 0.022492366 0.22565468 0.97372979 0.030502018 0.23236549 0.96785313 0.096262805\n\t\t 0.070724085 0.99374634 0.086407408 0.22565468 0.97372979 0.030502018 0.45314586 0.89056599\n\t\t 0.039382879 0.45102248 0.88525969 0.11355151 0.23236549 0.96785313 0.096262805 0.45314586\n\t\t 0.89056599 0.039382879 0.70951921 0.70345265 0.041673489 0.70761824 0.69550061 0.12472147\n\t\t 0.45102248 0.88525969 0.11355151 0.0015867227 0.99700564 0.077311888 0.070724085\n\t\t 0.99374634 0.086407408 0.083686642 0.97214913 0.21891215 0.0063248007 0.97516465\n\t\t 0.22139084 0.070724085 0.99374634 0.086407408 0.23236549 0.96785313 0.096262805 0.23782527\n\t\t 0.94616604 0.21956517 0.083686642 0.97214913 0.21891215 0.23236549 0.96785313 0.096262805\n\t\t 0.45102248 0.88525969 0.11355151 0.43887985 0.86764896 0.23360163 0.23782527 0.94616604\n\t\t 0.21956517 0.45102248 0.88525969 0.11355151 0.70761824 0.69550061 0.12472147 0.68869323\n\t\t 0.68102765 0.24880299 0.43887985 0.86764896 0.23360163 0.0063248007 0.97516465 0.22139084\n\t\t 0.083686642 0.97214913 0.21891215 0.10942975 0.89302731 0.43649426 0.025138132 0.89437157\n\t\t 0.44661787 0.083686642 0.97214913 0.21891215 0.23782527 0.94616604 0.21956517 0.24534184\n\t\t 0.87065268 0.42634642 0.10942975 0.89302731 0.43649426 0.23782527 0.94616604 0.21956517\n\t\t 0.43887985 0.86764896 0.23360163 0.42881495 0.79720801 0.42494357 0.24534184 0.87065268\n\t\t 0.42634642 0.43887985 0.86764896 0.23360163 0.68869323 0.68102765 0.24880299 0.63945049\n\t\t 0.63847172 0.42831862 0.42881495 0.79720801 0.42494357 0.025138132 0.89437157 0.44661787\n\t\t 0.10942975 0.89302731 0.43649426 0.12473094 0.70761347 0.69550371 0.0416779 0.70951957\n\t\t 0.70345229 0.10942975 0.89302731 0.43649426 0.24534184 0.87065268 0.42634642 0.24880436\n\t\t 0.68868804 0.68103248 0.12473094 0.70761347 0.69550371 0.24534184 0.87065268 0.42634642\n\t\t 0.42881495 0.79720801 0.42494357 0.42832384 0.63944906 0.6384697 0.24880436 0.68868804\n\t\t 0.68103248 0.42881495 0.79720801 0.42494357 0.63945049 0.63847172 0.42831862 0.57735139\n\t\t 0.57734978 0.57734966 0.42832384 0.63944906 0.6384697 0.99977624 0.019030292 0.0092335613\n\t\t 0.99723262 0.02249126 0.070860833 0.99374628 0.086403154 0.070729807 0.99700582 0.077310324\n\t\t 0.0015865567 0.99723262 0.02249126 0.070860833 0.97372884 0.030502772 0.22565839\n\t\t 0.96785408 0.096256182 0.23236434 0.99374628 0.086403154 0.070729807 0.97372884 0.030502772\n\t\t 0.22565839 0.89056396 0.039385803 0.45314944 0.88526046 0.11355217 0.45102075 0.96785408\n\t\t 0.096256182 0.23236434 0.89056396 0.039385803 0.45314944 0.70345324 0.041676912 0.70951855\n\t\t 0.69549614 0.12472929 0.70762122 0.88526046 0.11355217 0.45102075 0.99700582 0.077310324\n\t\t 0.0015865567 0.99374628 0.086403154 0.070729807 0.97214711 0.21891804 0.08369568\n\t\t 0.97516525 0.22138816 0.0063278852 0.99374628 0.086403154 0.070729807 0.96785408\n\t\t 0.096256182 0.23236434 0.9461658 0.21957219 0.23781979 0.97214711 0.21891804 0.08369568\n\t\t 0.96785408 0.096256182 0.23236434 0.88526046 0.11355217 0.45102075 0.86765146 0.23360787\n\t\t 0.43887153 0.9461658 0.21957219 0.23781979 0.88526046 0.11355217 0.45102075 0.69549614\n\t\t 0.12472929 0.70762122 0.68102324 0.24880674 0.68869621 0.86765146 0.23360787 0.43887153\n\t\t 0.97516525 0.22138816 0.0063278852 0.97214711 0.21891804 0.08369568 0.89302486 0.43650025\n\t\t 0.10942685 0.89437222 0.44661671 0.025138561 0.97214711 0.21891804 0.08369568 0.9461658\n\t\t 0.21957219 0.23781979 0.87065041 0.42635456 0.24533586 0.89302486 0.43650025 0.10942685\n\t\t 0.9461658 0.21957219 0.23781979 0.86765146 0.23360787 0.43887153 0.79720604 0.42495227\n\t\t 0.42881006 0.87065041 0.42635456 0.24533586 0.86765146 0.23360787 0.43887153 0.68102324\n\t\t 0.24880674 0.68869621 0.63846695 0.42832574 0.63945049 0.79720604 0.42495227 0.42881006\n\t\t 0.89437222 0.44661671 0.025138561 0.89302486 0.43650025 0.10942685 0.70761824 0.69550061\n\t\t 0.12472147 0.70951921 0.70345265 0.041673489 0.89302486 0.43650025 0.10942685 0.87065041\n\t\t 0.42635456 0.24533586 0.68869323 0.68102765 0.24880299 0.70761824 0.69550061 0.12472147\n\t\t 0.87065041 0.42635456 0.24533586 0.79720604 0.42495227 0.42881006 0.63945049 0.63847172\n\t\t 0.42831862 0.68869323 0.68102765 0.24880299;\n\tsetAttr \".n[7636:7801]\" -type \"float3\"  0.79720604 0.42495227 0.42881006 0.63846695\n\t\t 0.42832574 0.63945049 0.57735139 0.57734978 0.57734966 0.63945049 0.63847172 0.42831862\n\t\t 0.99978542 0.014656731 0.014637638 0.99704015 0.075962424 0.011856165 0.9933387 0.081846528\n\t\t 0.081112325 0.99703509 0.012106886 0.075989813 0.99704015 0.075962424 0.011856165\n\t\t 0.97346967 0.22848919 0.01222863 0.96697581 0.24062663 0.084003314 0.9933387 0.081846528\n\t\t 0.081112325 0.97346967 0.22848919 0.01222863 0.88921815 0.45735374 0.010887469 0.87979358\n\t\t 0.46820399 0.0821473 0.96697581 0.24062663 0.084003314 0.88921815 0.45735374 0.010887469\n\t\t 0.70700639 0.70714176 0.0096200081 0.70542139 0.70426261 0.079968452 0.87979358 0.46820399\n\t\t 0.0821473 0.99703509 0.012106886 0.075989813 0.9933387 0.081846528 0.081112325 0.96684968\n\t\t 0.085012987 0.24077865 0.97350806 0.012683389 0.22830081 0.9933387 0.081846528 0.081112325\n\t\t 0.96697581 0.24062663 0.084003314 0.93764788 0.24605303 0.24550831 0.96684968 0.085012987\n\t\t 0.24077865 0.96697581 0.24062663 0.084003314 0.87979358 0.46820399 0.0821473 0.85190439\n\t\t 0.46578687 0.2393772 0.93764788 0.24605303 0.24550831 0.87979358 0.46820399 0.0821473\n\t\t 0.70542139 0.70426261 0.079968452 0.68783706 0.68729472 0.23346561 0.85190439 0.46578687\n\t\t 0.2393772 0.97350806 0.012683389 0.22830081 0.96684968 0.085012987 0.24077865 0.87905985\n\t\t 0.082782142 0.46946874 0.88935 0.011134075 0.45709133 0.96684968 0.085012987 0.24077865\n\t\t 0.93764788 0.24605303 0.24550831 0.85159212 0.23996481 0.46605551 0.87905985 0.082782142\n\t\t 0.46946874 0.93764788 0.24605303 0.24550831 0.85190439 0.46578687 0.2393772 0.78361124\n\t\t 0.43938679 0.43919554 0.85159212 0.23996481 0.46605551 0.85190439 0.46578687 0.2393772\n\t\t 0.68783706 0.68729472 0.23346561 0.64236021 0.64231759 0.41809282 0.78361124 0.43938679\n\t\t 0.43919554 0.88935 0.011134075 0.45709133 0.87905985 0.082782142 0.46946874 0.70425791\n\t\t 0.079968475 0.70542604 0.70714778 0.0096232276 0.70700043 0.87905985 0.082782142\n\t\t 0.46946874 0.85159212 0.23996481 0.46605551 0.68728572 0.23346744 0.68784529 0.70425791\n\t\t 0.079968475 0.70542604 0.85159212 0.23996481 0.46605551 0.78361124 0.43938679 0.43919554\n\t\t 0.64231443 0.41809031 0.64236492 0.68728572 0.23346744 0.68784529 0.78361124 0.43938679\n\t\t 0.43919554 0.64236021 0.64231759 0.41809282 0.5773415 0.5773527 0.57735664 0.64231443\n\t\t 0.41809031 0.64236492 0.014642558 0.99978536 0.01465977 0.011857876 0.99704003 0.075963989\n\t\t 0.081114523 0.99333882 0.081843279 0.075990207 0.99703509 0.012106257 0.011857876\n\t\t 0.99704003 0.075963989 0.012228154 0.97346932 0.22849087 0.084008753 0.96697456 0.24063002\n\t\t 0.081114523 0.99333882 0.081843279 0.012228154 0.97346932 0.22849087 0.010882733\n\t\t 0.8892175 0.45735529 0.082143284 0.87979186 0.46820799 0.084008753 0.96697456 0.24063002\n\t\t 0.010882733 0.8892175 0.45735529 0.0096163899 0.70700514 0.70714313 0.079965256 0.70542568\n\t\t 0.7042585 0.082143284 0.87979186 0.46820799 0.075990207 0.99703509 0.012106257 0.081114523\n\t\t 0.99333882 0.081843279 0.24078533 0.96684831 0.0850095 0.228292 0.97351009 0.012680837\n\t\t 0.081114523 0.99333882 0.081843279 0.084008753 0.96697456 0.24063002 0.24552049 0.93764412\n\t\t 0.24605489 0.24078533 0.96684831 0.0850095 0.084008753 0.96697456 0.24063002 0.082143284\n\t\t 0.87979186 0.46820799 0.23938012 0.85190266 0.4657883 0.24552049 0.93764412 0.24605489\n\t\t 0.082143284 0.87979186 0.46820799 0.079965256 0.70542568 0.7042585 0.23347256 0.68783587\n\t\t 0.68729347 0.23938012 0.85190266 0.4657883 0.228292 0.97351009 0.012680837 0.24078533\n\t\t 0.96684831 0.0850095 0.4694685 0.87905997 0.082781859 0.45709142 0.88935012 0.011130556\n\t\t 0.24078533 0.96684831 0.0850095 0.24552049 0.93764412 0.24605489 0.46605733 0.85159099\n\t\t 0.2399652 0.4694685 0.87905997 0.082781859 0.24552049 0.93764412 0.24605489 0.23938012\n\t\t 0.85190266 0.4657883 0.43919021 0.78361368 0.43938771 0.46605733 0.85159099 0.2399652\n\t\t 0.23938012 0.85190266 0.4657883 0.23347256 0.68783587 0.68729347 0.41808701 0.64236367\n\t\t 0.64231789 0.43919021 0.78361368 0.43938771 0.45709142 0.88935012 0.011130556 0.4694685\n\t\t 0.87905997 0.082781859 0.70542139 0.70426261 0.079968452 0.70700639 0.70714176 0.0096200081\n\t\t 0.4694685 0.87905997 0.082781859 0.46605733 0.85159099 0.2399652 0.68783706 0.68729472\n\t\t 0.23346561 0.70542139 0.70426261 0.079968452 0.46605733 0.85159099 0.2399652 0.43919021\n\t\t 0.78361368 0.43938771 0.64236021 0.64231759 0.41809282 0.68783706 0.68729472 0.23346561\n\t\t 0.43919021 0.78361368 0.43938771 0.41808701 0.64236367 0.64231789 0.5773415 0.5773527\n\t\t 0.57735664 0.64236021 0.64231759 0.41809282 0.014658768 0.014641295 0.9997853 0.075962976\n\t\t 0.011857917 0.99704015 0.081845902 0.081110731 0.99333906 0.012108495 0.075990275\n\t\t 0.99703503 0.075962976 0.011857917 0.99704015 0.22848961 0.012228121 0.9734695 0.24062777\n\t\t 0.084002554 0.96697563 0.081845902 0.081110731 0.99333906 0.22848961 0.012228121\n\t\t 0.9734695 0.45735654 0.010887561 0.88921672 0.468207 0.082149327 0.87979186 0.24062777\n\t\t 0.084002554 0.96697563 0.45735654 0.010887561 0.88921672 0.70714778 0.0096232276\n\t\t 0.70700043 0.70425791 0.079968475 0.70542604 0.468207 0.082149327 0.87979186 0.012108495\n\t\t 0.075990275 0.99703503 0.081845902 0.081110731 0.99333906 0.085009247 0.24077789\n\t\t 0.96685028 0.012681494 0.22829983 0.97350824 0.081845902 0.081110731 0.99333906 0.24062777\n\t\t 0.084002554 0.96697563 0.24605295 0.24551319 0.93764657 0.085009247 0.24077789 0.96685028\n\t\t 0.24062777 0.084002554 0.96697563 0.468207 0.082149327 0.87979186 0.46578348 0.2393809\n\t\t 0.85190523 0.24605295 0.24551319 0.93764657 0.468207 0.082149327 0.87979186 0.70425791\n\t\t 0.079968475 0.70542604 0.68728572 0.23346744 0.68784529 0.46578348 0.2393809 0.85190523\n\t\t 0.012681494 0.22829983 0.97350824 0.085009247 0.24077789 0.96685028;\n\tsetAttr \".n[7802:7967]\" -type \"float3\"  0.082780294 0.46946841 0.87906027 0.011129371\n\t\t 0.45709583 0.88934779 0.085009247 0.24077789 0.96685028 0.24605295 0.24551319 0.93764657\n\t\t 0.23996824 0.4660531 0.85159254 0.082780294 0.46946841 0.87906027 0.24605295 0.24551319\n\t\t 0.93764657 0.46578348 0.2393809 0.85190523 0.43938747 0.43919498 0.78361124 0.23996824\n\t\t 0.4660531 0.85159254 0.46578348 0.2393809 0.85190523 0.68728572 0.23346744 0.68784529\n\t\t 0.64231443 0.41809031 0.64236492 0.43938747 0.43919498 0.78361124 0.011129371 0.45709583\n\t\t 0.88934779 0.082780294 0.46946841 0.87906027 0.079965256 0.70542568 0.7042585 0.0096163899\n\t\t 0.70700514 0.70714313 0.082780294 0.46946841 0.87906027 0.23996824 0.4660531 0.85159254\n\t\t 0.23347256 0.68783587 0.68729347 0.079965256 0.70542568 0.7042585 0.23996824 0.4660531\n\t\t 0.85159254 0.43938747 0.43919498 0.78361124 0.41808701 0.64236367 0.64231789 0.23347256\n\t\t 0.68783587 0.68729347 0.43938747 0.43919498 0.78361124 0.64231443 0.41809031 0.64236492\n\t\t 0.5773415 0.5773527 0.57735664 0.41808701 0.64236367 0.64231789 0.01101503 0.010986695\n\t\t -0.999879 0.047613084 0.018035188 -0.99870294 0.030598 0.1599129 -0.98665679 0.01853059\n\t\t 0.046827238 -0.99873114 0.047613084 0.018035188 -0.99870294 0.21568985 -0.042786051\n\t\t -0.97552407 0.16245039 0.10253822 -0.98137444 0.030598 0.1599129 -0.98665679 0.21568985\n\t\t -0.042786051 -0.97552407 0.21072394 0.13531487 -0.968135 0.1165567 0.29991618 -0.94681829\n\t\t 0.16245039 0.10253822 -0.98137444 0.21072394 0.13531487 -0.968135 0.44994146 0.18790984\n\t\t -0.87306517 0.34182385 0.36823609 -0.86461467 0.1165567 0.29991618 -0.94681829 0.01853059\n\t\t 0.046827238 -0.99873114 0.030598 0.1599129 -0.98665679 0.1977357 0.084780522 -0.97658217\n\t\t -0.10613802 0.29175979 -0.95058453 0.030598 0.1599129 -0.98665679 0.16245039 0.10253822\n\t\t -0.98137444 0.22702682 0.13604364 -0.96433961 0.1977357 0.084780522 -0.97658217 0.16245039\n\t\t 0.10253822 -0.98137444 0.1165567 0.29991618 -0.94681829 0.23458174 0.31521416 -0.91957134\n\t\t 0.22702682 0.13604364 -0.96433961 0.1165567 0.29991618 -0.94681829 0.34182385 0.36823609\n\t\t -0.86461467 0.42022097 0.41955748 -0.80460292 0.23458174 0.31521416 -0.91957134 -0.10613802\n\t\t 0.29175979 -0.95058453 0.1977357 0.084780522 -0.97658217 0.31262821 0.098640963 -0.94474\n\t\t 0.073782712 0.28479815 -0.95574385 0.1977357 0.084780522 -0.97658217 0.22702682 0.13604364\n\t\t -0.96433961 0.33094701 0.20615135 -0.920856 0.31262821 0.098640963 -0.94474 0.22702682\n\t\t 0.13604364 -0.96433961 0.23458174 0.31521416 -0.91957134 0.37458125 0.36984932 -0.85023552\n\t\t 0.33094701 0.20615135 -0.920856 0.23458174 0.31521416 -0.91957134 0.42022097 0.41955748\n\t\t -0.80460292 0.50526601 0.47016999 -0.72363418 0.37458125 0.36984932 -0.85023552 0.073782712\n\t\t 0.28479815 -0.95574385 0.31262821 0.098640963 -0.94474 0.36205077 0.33374801 -0.87036276\n\t\t 0.17860563 0.45150959 -0.87420774 0.31262821 0.098640963 -0.94474 0.33094701 0.20615135\n\t\t -0.920856 0.40495738 0.42852566 -0.80769753 0.36205077 0.33374801 -0.87036276 0.33094701\n\t\t 0.20615135 -0.920856 0.37458125 0.36984932 -0.85023552 0.46608549 0.50820762 -0.72421634\n\t\t 0.40495738 0.42852566 -0.80769753 0.37458125 0.36984932 -0.85023552 0.50526601 0.47016999\n\t\t -0.72363418 0.54003483 0.53901982 -0.64639002 0.46608549 0.50820762 -0.72421634 0.99981129\n\t\t 0.0081436643 -0.017639546 0.99756753 0.058664881 -0.037648246 0.98676503 0.075915076\n\t\t -0.14328949 0.99664253 0.0027740605 -0.081829078 0.99756753 0.058664881 -0.037648246\n\t\t 0.97185934 0.2139342 -0.098597869 0.93400407 0.25226432 -0.25298053 0.98676503 0.075915076\n\t\t -0.14328949 0.97185934 0.2139342 -0.098597869 0.88407791 0.44241098 -0.1505944 0.82947671\n\t\t 0.45309144 -0.32661366 0.93400407 0.25226432 -0.25298053 0.88407791 0.44241098 -0.1505944\n\t\t 0.69331962 0.70014113 -0.17061767 0.65319896 0.66900092 -0.35463917 0.82947671 0.45309144\n\t\t -0.32661366 0.99664253 0.0027740605 -0.081829078 0.98676503 0.075915076 -0.14328949\n\t\t 0.93882209 0.13581015 -0.31649435 0.97309399 0.0097261071 -0.23020335 0.98676503\n\t\t 0.075915076 -0.14328949 0.93400407 0.25226432 -0.25298053 0.86425769 0.31246188 -0.39424124\n\t\t 0.93882209 0.13581015 -0.31649435 0.93400407 0.25226432 -0.25298053 0.82947671 0.45309144\n\t\t -0.32661366 0.77241307 0.47328675 -0.42353028 0.86425769 0.31246188 -0.39424124 0.82947671\n\t\t 0.45309144 -0.32661366 0.65319896 0.66900092 -0.35463917 0.62994081 0.64214027 -0.43684161\n\t\t 0.77241307 0.47328675 -0.42353028 0.97309399 0.0097261071 -0.23020335 0.93882209\n\t\t 0.13581015 -0.31649435 0.70284945 0.29324353 -0.64808249 0.85183567 0.071536623 -0.51890111\n\t\t 0.93882209 0.13581015 -0.31649435 0.86425769 0.31246188 -0.39424124 0.67690188 0.40084583\n\t\t -0.61735439 0.70284945 0.29324353 -0.64808249 0.86425769 0.31246188 -0.39424124 0.77241307\n\t\t 0.47328675 -0.42353028 0.65903372 0.48859045 -0.5717988 0.67690188 0.40084583 -0.61735439\n\t\t 0.77241307 0.47328675 -0.42353028 0.62994081 0.64214027 -0.43684161 0.58791846 0.59019858\n\t\t -0.55318874 0.65903372 0.48859045 -0.5717988 0.85183567 0.071536623 -0.51890111 0.70284945\n\t\t 0.29324353 -0.64808249 0.34182385 0.36823609 -0.86461467 0.44994146 0.18790984 -0.87306517\n\t\t 0.70284945 0.29324353 -0.64808249 0.67690188 0.40084583 -0.61735439 0.42022097 0.41955748\n\t\t -0.80460292 0.34182385 0.36823609 -0.86461467 0.67690188 0.40084583 -0.61735439 0.65903372\n\t\t 0.48859045 -0.5717988 0.50526601 0.47016999 -0.72363418 0.42022097 0.41955748 -0.80460292\n\t\t 0.65903372 0.48859045 -0.5717988 0.58791846 0.59019858 -0.55318874 0.54003483 0.53901982\n\t\t -0.64639002 0.50526601 0.47016999 -0.72363418 0.013713833 0.99974829 -0.017756034\n\t\t 0.024891561 0.99547684 -0.091685772 0.10441127 0.98296672 -0.15124385 0.070406564\n\t\t 0.99708807 -0.029297525 0.024891561 0.99547684 -0.091685772 0.050809473 0.96028137\n\t\t -0.27436846 0.15798108 0.9201799 -0.35820517 0.10441127 0.98296672 -0.15124385;\n\tsetAttr \".n[7968:8133]\" -type \"float3\"  0.050809473 0.96028137 -0.27436846 0.10890556\n\t\t 0.81960744 -0.5624795 0.28614905 0.69550622 -0.65908265 0.15798108 0.9201799 -0.35820517\n\t\t 0.10890556 0.81960744 -0.5624795 0.17860563 0.45150959 -0.87420774 0.36205077 0.33374801\n\t\t -0.87036276 0.28614905 0.69550622 -0.65908265 0.070406564 0.99708807 -0.029297525\n\t\t 0.10441127 0.98296672 -0.15124385 0.23123206 0.94618505 -0.22641894 0.20981197 0.9753114\n\t\t -0.068895854 0.10441127 0.98296672 -0.15124385 0.15798108 0.9201799 -0.35820517 0.26968321\n\t\t 0.88216227 -0.38608363 0.23123206 0.94618505 -0.22641894 0.15798108 0.9201799 -0.35820517\n\t\t 0.28614905 0.69550622 -0.65908265 0.36678848 0.70055151 -0.61212224 0.26968321 0.88216227\n\t\t -0.38608363 0.28614905 0.69550622 -0.65908265 0.36205077 0.33374801 -0.87036276 0.40495738\n\t\t 0.42852566 -0.80769753 0.36678848 0.70055151 -0.61212224 0.20981197 0.9753114 -0.068895854\n\t\t 0.23123206 0.94618505 -0.22641894 0.43371043 0.84319764 -0.31766796 0.43576249 0.89029175\n\t\t -0.13225673 0.23123206 0.94618505 -0.22641894 0.26968321 0.88216227 -0.38608363 0.45016754\n\t\t 0.78402227 -0.42738542 0.43371043 0.84319764 -0.31766796 0.26968321 0.88216227 -0.38608363\n\t\t 0.36678848 0.70055151 -0.61212224 0.47732818 0.66666061 -0.57246965 0.45016754 0.78402227\n\t\t -0.42738542 0.36678848 0.70055151 -0.61212224 0.40495738 0.42852566 -0.80769753 0.46608549\n\t\t 0.50820762 -0.72421634 0.47732818 0.66666061 -0.57246965 0.43576249 0.89029175 -0.13225673\n\t\t 0.43371043 0.84319764 -0.31766796 0.65319896 0.66900092 -0.35463917 0.69331962 0.70014113\n\t\t -0.17061767 0.43371043 0.84319764 -0.31766796 0.45016754 0.78402227 -0.42738542 0.62994081\n\t\t 0.64214027 -0.43684161 0.65319896 0.66900092 -0.35463917 0.45016754 0.78402227 -0.42738542\n\t\t 0.47732818 0.66666061 -0.57246965 0.58791846 0.59019858 -0.55318874 0.62994081 0.64214027\n\t\t -0.43684161 0.47732818 0.66666061 -0.57246965 0.46608549 0.50820762 -0.72421634 0.54003483\n\t\t 0.53901982 -0.64639002 0.58791846 0.59019858 -0.55318874 0.014636599 0.014654087\n\t\t -0.99978548 0.011855192 0.075960025 -0.99704033 0.081112012 0.081844881 -0.99333894\n\t\t 0.075990543 0.01210421 -0.99703503 0.011855192 0.075960025 -0.99704033 0.012229563\n\t\t 0.228488 -0.97346991 0.084007055 0.24062863 -0.96697503 0.081112012 0.081844881 -0.99333894\n\t\t 0.012229563 0.228488 -0.97346991 0.010890992 0.45735294 -0.88921845 0.082158193 0.46820882\n\t\t -0.87979007 0.084007055 0.24062863 -0.96697503 0.010890992 0.45735294 -0.88921845\n\t\t 0.0096246619 0.70714986 -0.70699817 0.07997255 0.70426333 -0.70541996 0.082158193\n\t\t 0.46820882 -0.87979007 0.075990543 0.01210421 -0.99703503 0.081112012 0.081844881\n\t\t -0.99333894 0.24077894 0.085012302 -0.96684963 0.22830258 0.01268135 -0.97350764\n\t\t 0.081112012 0.081844881 -0.99333894 0.084007055 0.24062863 -0.96697503 0.24550891\n\t\t 0.24605373 -0.93764752 0.24077894 0.085012302 -0.96684963 0.084007055 0.24062863\n\t\t -0.96697503 0.082158193 0.46820882 -0.87979007 0.23937865 0.46579108 -0.85190165\n\t\t 0.24550891 0.24605373 -0.93764752 0.082158193 0.46820882 -0.87979007 0.07997255 0.70426333\n\t\t -0.70541996 0.23346516 0.68729573 -0.68783605 0.23937865 0.46579108 -0.85190165 0.22830258\n\t\t 0.01268135 -0.97350764 0.24077894 0.085012302 -0.96684963 0.46946356 0.082784407\n\t\t -0.87906229 0.45709342 0.011135507 -0.88934892 0.24077894 0.085012302 -0.96684963\n\t\t 0.24550891 0.24605373 -0.93764752 0.46605051 0.23996571 -0.85159469 0.46946356 0.082784407\n\t\t -0.87906229 0.24550891 0.24605373 -0.93764752 0.23937865 0.46579108 -0.85190165 0.43919638\n\t\t 0.43939161 -0.78360808 0.46605051 0.23996571 -0.85159469 0.23937865 0.46579108 -0.85190165\n\t\t 0.23346516 0.68729573 -0.68783605 0.4180921 0.64231765 -0.64236051 0.43919638 0.43939161\n\t\t -0.78360808 0.45709342 0.011135507 -0.88934892 0.46946356 0.082784407 -0.87906229\n\t\t 0.70542234 0.079969496 -0.7042613 0.70700437 0.0096239569 -0.7071436 0.46946356 0.082784407\n\t\t -0.87906229 0.46605051 0.23996571 -0.85159469 0.68783939 0.23346499 -0.68729258 0.70542234\n\t\t 0.079969496 -0.7042613 0.46605051 0.23996571 -0.85159469 0.43919638 0.43939161 -0.78360808\n\t\t 0.6423704 0.41809285 -0.64230716 0.68783939 0.23346499 -0.68729258 0.43919638 0.43939161\n\t\t -0.78360808 0.4180921 0.64231765 -0.64236051 0.57735616 0.57734996 -0.57734466 0.6423704\n\t\t 0.41809285 -0.64230716 0.014672036 0.99978524 -0.014637464 0.075976409 0.99703914\n\t\t -0.011858363 0.081860892 0.99333781 -0.081110373 0.012126092 0.99703491 -0.075989433\n\t\t 0.075976409 0.99703914 -0.011858363 0.22848846 0.97346979 -0.012228171 0.24061503\n\t\t 0.96697861 -0.084004119 0.081860892 0.99333781 -0.081110373 0.22848846 0.97346979\n\t\t -0.012228171 0.45735317 0.88921857 -0.010884244 0.46820432 0.87979335 -0.082148582\n\t\t 0.24061503 0.96697861 -0.084004119 0.45735317 0.88921857 -0.010884244 0.70714563\n\t\t 0.70700246 -0.0096214097 0.70426327 0.70542067 -0.079968363 0.46820432 0.87979335\n\t\t -0.082148582 0.012126092 0.99703491 -0.075989433 0.081860892 0.99333781 -0.081110373\n\t\t 0.085023306 0.96684819 -0.2407811 0.012698331 0.97350645 -0.22830658 0.081860892\n\t\t 0.99333781 -0.081110373 0.24061503 0.96697861 -0.084004119 0.24604125 0.93764955\n\t\t -0.24551366 0.085023306 0.96684819 -0.2407811 0.24061503 0.96697861 -0.084004119\n\t\t 0.46820432 0.87979335 -0.082148582 0.46578458 0.85190374 -0.23938397 0.24604125 0.93764955\n\t\t -0.24551366 0.46820432 0.87979335 -0.082148582 0.70426327 0.70542067 -0.079968363\n\t\t 0.68729234 0.6878376 -0.23347066 0.46578458 0.85190374 -0.23938397 0.012698331 0.97350645\n\t\t -0.22830658 0.085023306 0.96684819 -0.2407811 0.082788333 0.87905842 -0.46947029\n\t\t 0.011138951 0.88934869 -0.45709404 0.085023306 0.96684819 -0.2407811 0.24604125 0.93764955\n\t\t -0.24551366 0.23996229 0.85159314 -0.4660551 0.082788333 0.87905842 -0.46947029 0.24604125\n\t\t 0.93764955 -0.24551366 0.46578458 0.85190374 -0.23938397 0.43938899 0.78360844 -0.43919834\n\t\t 0.23996229 0.85159314 -0.4660551 0.46578458 0.85190374 -0.23938397 0.68729234 0.6878376\n\t\t -0.23347066;\n\tsetAttr \".n[8134:8299]\" -type \"float3\"  0.64231348 0.64236307 -0.41809475 0.43938899\n\t\t 0.78360844 -0.43919834 0.011138951 0.88934869 -0.45709404 0.082788333 0.87905842\n\t\t -0.46947029 0.07997255 0.70426333 -0.70541996 0.0096246619 0.70714986 -0.70699817\n\t\t 0.082788333 0.87905842 -0.46947029 0.23996229 0.85159314 -0.4660551 0.23346516 0.68729573\n\t\t -0.68783605 0.07997255 0.70426333 -0.70541996 0.23996229 0.85159314 -0.4660551 0.43938899\n\t\t 0.78360844 -0.43919834 0.4180921 0.64231765 -0.64236051 0.23346516 0.68729573 -0.68783605\n\t\t 0.43938899 0.78360844 -0.43919834 0.64231348 0.64236307 -0.41809475 0.57735616 0.57734996\n\t\t -0.57734466 0.4180921 0.64231765 -0.64236051 0.9997853 0.014639826 -0.014660377 0.99703997\n\t\t 0.0118575 -0.075965405 0.9933387 0.081111744 -0.081847459 0.99703485 0.075992323\n\t\t -0.01210875 0.99703997 0.0118575 -0.075965405 0.97347009 0.012228365 -0.22848748\n\t\t 0.96697593 0.084004954 -0.24062598 0.9933387 0.081111744 -0.081847459 0.97347009\n\t\t 0.012228365 -0.22848748 0.88922 0.010886387 -0.45735013 0.87979335 0.082150005 -0.46820402\n\t\t 0.96697593 0.084004954 -0.24062598 0.88922 0.010886387 -0.45735013 0.70700437 0.0096239569\n\t\t -0.7071436 0.70542234 0.079969496 -0.7042613 0.87979335 0.082150005 -0.46820402 0.99703485\n\t\t 0.075992323 -0.01210875 0.9933387 0.081111744 -0.081847459 0.96684992 0.2407774 -0.085013725\n\t\t 0.97350776 0.22830187 -0.012684085 0.9933387 0.081111744 -0.081847459 0.96697593\n\t\t 0.084004954 -0.24062598 0.93764776 0.24550909 -0.24605273 0.96684992 0.2407774 -0.085013725\n\t\t 0.96697593 0.084004954 -0.24062598 0.87979335 0.082150005 -0.46820402 0.85190368\n\t\t 0.23938064 -0.46578637 0.93764776 0.24550909 -0.24605273 0.87979335 0.082150005 -0.46820402\n\t\t 0.70542234 0.079969496 -0.7042613 0.68783939 0.23346499 -0.68729258 0.85190368 0.23938064\n\t\t -0.46578637 0.97350776 0.22830187 -0.012684085 0.96684992 0.2407774 -0.085013725\n\t\t 0.87905931 0.46946952 -0.082782671 0.88934833 0.45709458 -0.011133261 0.96684992\n\t\t 0.2407774 -0.085013725 0.93764776 0.24550909 -0.24605273 0.85159183 0.46605402 -0.23996869\n\t\t 0.87905931 0.46946952 -0.082782671 0.93764776 0.24550909 -0.24605273 0.85190368 0.23938064\n\t\t -0.46578637 0.78360802 0.43919894 -0.43938914 0.85159183 0.46605402 -0.23996869 0.85190368\n\t\t 0.23938064 -0.46578637 0.68783939 0.23346499 -0.68729258 0.6423704 0.41809285 -0.64230716\n\t\t 0.78360802 0.43919894 -0.43938914 0.88934833 0.45709458 -0.011133261 0.87905931 0.46946952\n\t\t -0.082782671 0.70426327 0.70542067 -0.079968363 0.70714563 0.70700246 -0.0096214097\n\t\t 0.87905931 0.46946952 -0.082782671 0.85159183 0.46605402 -0.23996869 0.68729234 0.6878376\n\t\t -0.23347066 0.70426327 0.70542067 -0.079968363 0.85159183 0.46605402 -0.23996869\n\t\t 0.78360802 0.43919894 -0.43938914 0.64231348 0.64236307 -0.41809475 0.68729234 0.6878376\n\t\t -0.23347066 0.78360802 0.43919894 -0.43938914 0.6423704 0.41809285 -0.64230716 0.57735616\n\t\t 0.57734996 -0.57734466 0.64231348 0.64236307 -0.41809475 -0.99978542 0.014636494\n\t\t 0.014657062 -0.99704015 0.011856616 0.07596276 -0.99333864 0.08111307 0.081846483\n\t\t -0.99703497 0.075991429 0.012105355 -0.99704015 0.011856616 0.07596276 -0.97346979\n\t\t 0.012229335 0.22848871 -0.96697551 0.084005617 0.24062736 -0.99333864 0.08111307\n\t\t 0.081846483 -0.97346979 0.012229335 0.22848871 -0.88921839 0.010887222 0.45735329\n\t\t -0.87979275 0.082150094 0.46820521 -0.96697551 0.084005617 0.24062736 -0.88921839\n\t\t 0.010887222 0.45735329 -0.70700395 0.0096215941 0.7071442 -0.70542204 0.079967611\n\t\t 0.7042619 -0.87979275 0.082150094 0.46820521 -0.99703497 0.075991429 0.012105355\n\t\t -0.99333864 0.08111307 0.081846483 -0.96685034 0.24077599 0.085014299 -0.9735083\n\t\t 0.22829974 0.012683215 -0.99333864 0.08111307 0.081846483 -0.96697551 0.084005617\n\t\t 0.24062736 -0.93764925 0.2455081 0.24604808 -0.96685034 0.24077599 0.085014299 -0.96697551\n\t\t 0.084005617 0.24062736 -0.87979275 0.082150094 0.46820521 -0.85190648 0.23937958\n\t\t 0.46578172 -0.93764925 0.2455081 0.24604808 -0.87979275 0.082150094 0.46820521 -0.70542204\n\t\t 0.079967611 0.7042619 -0.68783993 0.23346446 0.6872921 -0.85190648 0.23937958 0.46578172\n\t\t -0.9735083 0.22829974 0.012683215 -0.96685034 0.24077599 0.085014299 -0.87906015\n\t\t 0.46946773 0.082785599 -0.88935256 0.45708653 0.011135742 -0.96685034 0.24077599\n\t\t 0.085014299 -0.93764925 0.2455081 0.24604808 -0.85159397 0.46605232 0.23996422 -0.87906015\n\t\t 0.46946773 0.082785599 -0.93764925 0.2455081 0.24604808 -0.85190648 0.23937958 0.46578172\n\t\t -0.78361344 0.43919447 0.43938375 -0.85159397 0.46605232 0.23996422 -0.85190648 0.23937958\n\t\t 0.46578172 -0.68783993 0.23346446 0.6872921 -0.64236635 0.41809273 0.64231151 -0.78361344\n\t\t 0.43919447 0.43938375 -0.88935256 0.45708653 0.011135742 -0.87906015 0.46946773 0.082785599\n\t\t -0.70425838 0.70542538 0.079970427 -0.70713943 0.70700866 0.0096212197 -0.87906015\n\t\t 0.46946773 0.082785599 -0.85159397 0.46605232 0.23996422 -0.68729013 0.68783969 0.23347138\n\t\t -0.70425838 0.70542538 0.079970427 -0.85159397 0.46605232 0.23996422 -0.78361344\n\t\t 0.43919447 0.43938375 -0.64231813 0.64236045 0.41809127 -0.68729013 0.68783969 0.23347138\n\t\t -0.78361344 0.43919447 0.43938375 -0.64236635 0.41809273 0.64231151 -0.57735318 0.57734936\n\t\t 0.57734829 -0.64231813 0.64236045 0.41809127 -0.0146402 0.014660644 0.99978536 -0.011855099\n\t\t 0.075965293 0.99703997 -0.081110992 0.081846707 0.99333888 -0.075991601 0.012108537\n\t\t 0.99703503 -0.011855099 0.075965293 0.99703997 -0.01222645 0.22849065 0.97346932\n\t\t -0.084002391 0.24062693 0.96697575 -0.081110992 0.081846707 0.99333888 -0.01222645\n\t\t 0.22849065 0.97346932 -0.010889402 0.45735696 0.8892166 -0.082150564 0.46820998 0.87979025\n\t\t -0.084002391 0.24062693 0.96697575 -0.010889402 0.45735696 0.8892166 -0.0096345451\n\t\t 0.70715052 0.70699733 -0.079978943 0.704261 0.70542175 -0.082150564 0.46820998 0.87979025\n\t\t -0.075991601 0.012108537 0.99703503 -0.081110992 0.081846707 0.99333888 -0.24078123\n\t\t 0.085011184 0.96684921 -0.22830206 0.012683122 0.97350776;\n\tsetAttr \".n[8300:8465]\" -type \"float3\"  -0.081110992 0.081846707 0.99333888 -0.084002391\n\t\t 0.24062693 0.96697575 -0.24550971 0.24605323 0.9376474 -0.24078123 0.085011184 0.96684921\n\t\t -0.084002391 0.24062693 0.96697575 -0.082150564 0.46820998 0.87979025 -0.23937804\n\t\t 0.46579137 0.85190177 -0.24550971 0.24605323 0.9376474 -0.082150564 0.46820998 0.87979025\n\t\t -0.079978943 0.704261 0.70542175 -0.23346125 0.68729365 0.68783963 -0.23937804 0.46579137\n\t\t 0.85190177 -0.22830206 0.012683122 0.97350776 -0.24078123 0.085011184 0.96684921\n\t\t -0.46946853 0.082781434 0.87905997 -0.45709532 0.011131987 0.88934809 -0.24078123\n\t\t 0.085011184 0.96684921 -0.24550971 0.24605323 0.9376474 -0.46605414 0.23996842 0.85159183\n\t\t -0.46946853 0.082781434 0.87905997 -0.24550971 0.24605323 0.9376474 -0.23937804 0.46579137\n\t\t 0.85190177 -0.43919542 0.43939114 0.78360885 -0.46605414 0.23996842 0.85159183 -0.23937804\n\t\t 0.46579137 0.85190177 -0.23346125 0.68729365 0.68783963 -0.41808915 0.64231557 0.64236456\n\t\t -0.43919542 0.43939114 0.78360885 -0.45709532 0.011131987 0.88934809 -0.46946853\n\t\t 0.082781434 0.87905997 -0.70542204 0.079967611 0.7042619 -0.70700395 0.0096215941\n\t\t 0.7071442 -0.46946853 0.082781434 0.87905997 -0.46605414 0.23996842 0.85159183 -0.68783993\n\t\t 0.23346446 0.6872921 -0.70542204 0.079967611 0.7042619 -0.46605414 0.23996842 0.85159183\n\t\t -0.43919542 0.43939114 0.78360885 -0.64236635 0.41809273 0.64231151 -0.68783993 0.23346446\n\t\t 0.6872921 -0.43919542 0.43939114 0.78360885 -0.41808915 0.64231557 0.64236456 -0.57735318\n\t\t 0.57734936 0.57734829 -0.64236635 0.41809273 0.64231151 -0.014680066 0.99978507 0.014637364\n\t\t -0.075982429 0.99703872 0.011857806 -0.081866674 0.99333739 0.081109613 -0.012129043\n\t\t 0.99703479 0.075990193 -0.075982429 0.99703872 0.011857806 -0.22849615 0.97346801\n\t\t 0.012226244 -0.24061176 0.96697962 0.084001951 -0.081866674 0.99333739 0.081109613\n\t\t -0.22849615 0.97346801 0.012226244 -0.45734814 0.88922125 0.010881552 -0.46819371\n\t\t 0.87979895 0.082147859 -0.24061176 0.96697962 0.084001951 -0.45734814 0.88922125\n\t\t 0.010881552 -0.70713943 0.70700866 0.0096212197 -0.70425838 0.70542538 0.079970427\n\t\t -0.46819371 0.87979895 0.082147859 -0.012129043 0.99703479 0.075990193 -0.081866674\n\t\t 0.99333739 0.081109613 -0.085019425 0.96684891 0.24077976 -0.012698802 0.97350651\n\t\t 0.22830658 -0.081866674 0.99333739 0.081109613 -0.24061176 0.96697962 0.084001951\n\t\t -0.24603038 0.93765259 0.24551319 -0.085019425 0.96684891 0.24077976 -0.24061176\n\t\t 0.96697962 0.084001951 -0.46819371 0.87979895 0.082147859 -0.46577463 0.8519085 0.2393866\n\t\t -0.24603038 0.93765259 0.24551319 -0.46819371 0.87979895 0.082147859 -0.70425838\n\t\t 0.70542538 0.079970427 -0.68729013 0.68783969 0.23347138 -0.46577463 0.8519085 0.2393866\n\t\t -0.012698802 0.97350651 0.22830658 -0.085019425 0.96684891 0.24077976 -0.082788803\n\t\t 0.87905794 0.46947119 -0.011145231 0.88934833 0.45709434 -0.085019425 0.96684891\n\t\t 0.24077976 -0.24603038 0.93765259 0.24551319 -0.23994997 0.85159481 0.46605822 -0.082788803\n\t\t 0.87905794 0.46947119 -0.24603038 0.93765259 0.24551319 -0.46577463 0.8519085 0.2393866\n\t\t -0.43938291 0.783611 0.43919966 -0.23994997 0.85159481 0.46605822 -0.46577463 0.8519085\n\t\t 0.2393866 -0.68729013 0.68783969 0.23347138 -0.64231813 0.64236045 0.41809127 -0.43938291\n\t\t 0.783611 0.43919966 -0.011145231 0.88934833 0.45709434 -0.082788803 0.87905794 0.46947119\n\t\t -0.079978943 0.704261 0.70542175 -0.0096345451 0.70715052 0.70699733 -0.082788803\n\t\t 0.87905794 0.46947119 -0.23994997 0.85159481 0.46605822 -0.23346125 0.68729365 0.68783963\n\t\t -0.079978943 0.704261 0.70542175 -0.23994997 0.85159481 0.46605822 -0.43938291 0.783611\n\t\t 0.43919966 -0.41808915 0.64231557 0.64236456 -0.23346125 0.68729365 0.68783963 -0.43938291\n\t\t 0.783611 0.43919966 -0.64231813 0.64236045 0.41809127 -0.57735318 0.57734936 0.57734829\n\t\t -0.41808915 0.64231557 0.64236456 0.014656688 0.014637707 0.99978542 0.075961918\n\t\t 0.011857891 0.99704015 0.081845812 0.081112802 0.99333882 0.012107715 0.075990386\n\t\t 0.99703503 0.075961918 0.011857891 0.99704015 0.22848976 0.012229987 0.97346944 0.24062797\n\t\t 0.084004149 0.96697545 0.081845812 0.081112802 0.99333882 0.22848976 0.012229987\n\t\t 0.97346944 0.4573555 0.010886981 0.88921732 0.46820173 0.082148351 0.87979472 0.24062797\n\t\t 0.084004149 0.96697545 0.4573555 0.010886981 0.88921732 0.70714307 0.0096213352 0.70700502\n\t\t 0.70425236 0.079968303 0.70543158 0.46820173 0.082148351 0.87979472 0.012107715 0.075990386\n\t\t 0.99703503 0.081845812 0.081112802 0.99333882 0.085015468 0.24077599 0.96685022 0.012684792\n\t\t 0.22830111 0.97350788 0.081845812 0.081112802 0.99333882 0.24062797 0.084004149 0.96697545\n\t\t 0.24605486 0.24550751 0.93764764 0.085015468 0.24077599 0.96685022 0.24062797 0.084004149\n\t\t 0.96697545 0.46820173 0.082148351 0.87979472 0.46578524 0.23937792 0.85190505 0.24605486\n\t\t 0.24550751 0.93764764 0.46820173 0.082148351 0.87979472 0.70425236 0.079968303 0.70543158\n\t\t 0.6872912 0.23346277 0.68784148 0.46578524 0.23937792 0.85190505 0.012684792 0.22830111\n\t\t 0.97350788 0.085015468 0.24077599 0.96685022 0.082791507 0.46946818 0.87905931 0.011135397\n\t\t 0.45709184 0.88934982 0.085015468 0.24077599 0.96685022 0.24605486 0.24550751 0.93764764\n\t\t 0.23997104 0.46605381 0.85159129 0.082791507 0.46946818 0.87905931 0.24605486 0.24550751\n\t\t 0.93764764 0.46578524 0.23937792 0.85190505 0.43938842 0.43919802 0.78360891 0.23997104\n\t\t 0.46605381 0.85159129 0.46578524 0.23937792 0.85190505 0.6872912 0.23346277 0.68784148\n\t\t 0.64232117 0.4180916 0.64235735 0.43938842 0.43919802 0.78360891 0.011135397 0.45709184\n\t\t 0.88934982 0.082791507 0.46946818 0.87905931 0.079973631 0.70542598 0.70425731 0.0096223233\n\t\t 0.7070061 0.707142 0.082791507 0.46946818 0.87905931 0.23997104 0.46605381 0.85159129\n\t\t 0.23347434 0.68784255 0.6872862 0.079973631 0.70542598 0.70425731 0.23997104 0.46605381\n\t\t 0.85159129 0.43938842 0.43919802 0.78360891;\n\tsetAttr \".n[8466:8631]\" -type \"float3\"  0.41809016 0.64236975 0.64230973 0.23347434\n\t\t 0.68784255 0.6872862 0.43938842 0.43919802 0.78360891 0.64232117 0.4180916 0.64235735\n\t\t 0.57734799 0.57735837 0.57734454 0.41809016 0.64236975 0.64230973 0.99978536 0.014659924\n\t\t 0.014639721 0.99703979 0.075967148 0.011857502 0.99333847 0.081848755 0.081114098\n\t\t 0.99703497 0.012107966 0.075991563 0.99703979 0.075967148 0.011857502 0.97346961\n\t\t 0.22848926 0.012228664 0.96697599 0.24062532 0.084005356 0.99333847 0.081848755 0.081114098\n\t\t 0.97346961 0.22848926 0.012228664 0.88921934 0.45735154 0.010887322 0.8797909 0.46820885\n\t\t 0.082148694 0.96697599 0.24062532 0.084005356 0.88921934 0.45735154 0.010887322 0.70700043\n\t\t 0.7071476 0.0096237948 0.70542485 0.70425892 0.079969175 0.8797909 0.46820885 0.082148694\n\t\t 0.99703497 0.012107966 0.075991563 0.99333847 0.081848755 0.081114098 0.96684921\n\t\t 0.085013077 0.2407808 0.973508 0.012682845 0.22830091 0.99333847 0.081848755 0.081114098\n\t\t 0.96697599 0.24062532 0.084005356 0.93764645 0.24605401 0.24551289 0.96684921 0.085013077\n\t\t 0.2407808 0.96697599 0.24062532 0.084005356 0.8797909 0.46820885 0.082148694 0.85189635\n\t\t 0.46579838 0.23938352 0.93764645 0.24605401 0.24551289 0.8797909 0.46820885 0.082148694\n\t\t 0.70542485 0.70425892 0.079969175 0.68783325 0.68729734 0.23346925 0.85189635 0.46579838\n\t\t 0.23938352 0.973508 0.012682845 0.22830091 0.96684921 0.085013077 0.2407808 0.87905765\n\t\t 0.082783721 0.46947247 0.88934791 0.011132329 0.45709574 0.96684921 0.085013077 0.2407808\n\t\t 0.93764645 0.24605401 0.24551289 0.85159206 0.23996775 0.46605408 0.87905765 0.082783721\n\t\t 0.46947247 0.93764645 0.24605401 0.24551289 0.85189635 0.46579838 0.23938352 0.78360748\n\t\t 0.43939358 0.43919542 0.85159206 0.23996775 0.46605408 0.85189635 0.46579838 0.23938352\n\t\t 0.68783325 0.68729734 0.23346925 0.64235401 0.64232421 0.41809189 0.78360748 0.43939358\n\t\t 0.43919542 0.88934791 0.011132329 0.45709574 0.87905765 0.082783721 0.46947247 0.70425236\n\t\t 0.079968303 0.70543158 0.70714307 0.0096213352 0.70700502 0.87905765 0.082783721\n\t\t 0.46947247 0.85159206 0.23996775 0.46605408 0.6872912 0.23346277 0.68784148 0.70425236\n\t\t 0.079968303 0.70543158 0.85159206 0.23996775 0.46605408 0.78360748 0.43939358 0.43919542\n\t\t 0.64232117 0.4180916 0.64235735 0.6872912 0.23346277 0.68784148 0.78360748 0.43939358\n\t\t 0.43919542 0.64235401 0.64232421 0.41809189 0.57734799 0.57735837 0.57734454 0.64232117\n\t\t 0.4180916 0.64235735 0.014651301 0.99978513 0.014662058 0.0118648 0.99703956 0.075969256\n\t\t 0.08111459 0.99333775 0.081856094 0.075996853 0.99703443 0.012115173 0.0118648 0.99703956\n\t\t 0.075969256 0.012219185 0.97346938 0.22849108 0.083989009 0.96697801 0.24062294 0.08111459\n\t\t 0.99333775 0.081856094 0.012219185 0.97346938 0.22849108 0.010875965 0.88922101 0.45734864\n\t\t 0.082134508 0.87979746 0.4681991 0.083989009 0.96697801 0.24062294 0.010875965 0.88922101\n\t\t 0.45734864 0.0096223233 0.7070061 0.707142 0.079973631 0.70542598 0.70425731 0.082134508\n\t\t 0.87979746 0.4681991 0.075996853 0.99703443 0.012115173 0.08111459 0.99333775 0.081856094\n\t\t 0.24077916 0.96684921 0.085018009 0.2282957 0.97350925 0.012686649 0.08111459 0.99333775\n\t\t 0.081856094 0.083989009 0.96697801 0.24062294 0.24551567 0.93764633 0.24605185 0.24077916\n\t\t 0.96684921 0.085018009 0.083989009 0.96697801 0.24062294 0.082134508 0.87979746 0.4681991\n\t\t 0.23938186 0.85190654 0.46578053 0.24551567 0.93764633 0.24605185 0.082134508 0.87979746\n\t\t 0.4681991 0.079973631 0.70542598 0.70425731 0.23347434 0.68784255 0.6872862 0.23938186\n\t\t 0.85190654 0.46578053 0.2282957 0.97350925 0.012686649 0.24077916 0.96684921 0.085018009\n\t\t 0.46947789 0.87905484 0.082782693 0.45708954 0.88935107 0.011132759 0.24077916 0.96684921\n\t\t 0.085018009 0.24551567 0.93764633 0.24605185 0.46606651 0.85158557 0.23996657 0.46947789\n\t\t 0.87905484 0.082782693 0.24551567 0.93764633 0.24605185 0.23938186 0.85190654 0.46578053\n\t\t 0.43919805 0.78361136 0.4393841 0.46606651 0.85158557 0.23996657 0.23938186 0.85190654\n\t\t 0.46578053 0.23347434 0.68784255 0.6872862 0.41809016 0.64236975 0.64230973 0.43919805\n\t\t 0.78361136 0.4393841 0.45708954 0.88935107 0.011132759 0.46947789 0.87905484 0.082782693\n\t\t 0.70542485 0.70425892 0.079969175 0.70700043 0.7071476 0.0096237948 0.46947789 0.87905484\n\t\t 0.082782693 0.46606651 0.85158557 0.23996657 0.68783325 0.68729734 0.23346925 0.70542485\n\t\t 0.70425892 0.079969175 0.46606651 0.85158557 0.23996657 0.43919805 0.78361136 0.4393841\n\t\t 0.64235401 0.64232421 0.41809189 0.68783325 0.68729734 0.23346925 0.43919805 0.78361136\n\t\t 0.4393841 0.41809016 0.64236975 0.64230973 0.57734799 0.57735837 0.57734454 0.64235401\n\t\t 0.64232421 0.41809189 0.019032447 0.0092323879 0.99977624 0.022493068 0.070860848\n\t\t 0.99723262 0.086400926 0.070731424 0.9937464 0.07731083 0.0015880927 0.9970057 0.022493068\n\t\t 0.070860848 0.99723262 0.030502118 0.22566158 0.97372806 0.09625005 0.23237005 0.96785331\n\t\t 0.086400926 0.070731424 0.9937464 0.030502118 0.22566158 0.97372806 0.039383806 0.45315\n\t\t 0.89056391 0.11354955 0.45101786 0.88526237 0.09625005 0.23237005 0.96785331 0.039383806\n\t\t 0.45315 0.89056391 0.041673698 0.7095198 0.70345223 0.12473096 0.7076118 0.69550538\n\t\t 0.11354955 0.45101786 0.88526237 0.07731083 0.0015880927 0.9970057 0.086400926 0.070731424\n\t\t 0.9937464 0.21891342 0.083699562 0.97214782 0.22138831 0.0063302787 0.97516519 0.086400926\n\t\t 0.070731424 0.9937464 0.09625005 0.23237005 0.96785331 0.21956921 0.2378256 0.94616503\n\t\t 0.21891342 0.083699562 0.97214782 0.09625005 0.23237005 0.96785331 0.11354955 0.45101786\n\t\t 0.88526237 0.23360769 0.43886966 0.8676526 0.21956921 0.2378256 0.94616503 0.11354955\n\t\t 0.45101786 0.88526237 0.12473096 0.7076118 0.69550538 0.24880965 0.68868506 0.68103355\n\t\t 0.23360769 0.43886966 0.8676526;\n\tsetAttr \".n[8632:8797]\" -type \"float3\"  0.22138831 0.0063302787 0.97516519 0.21891342\n\t\t 0.083699562 0.97214782 0.43649599 0.10943406 0.89302593 0.44661668 0.025142418 0.89437211\n\t\t 0.21891342 0.083699562 0.97214782 0.21956921 0.2378256 0.94616503 0.4263562 0.24534082\n\t\t 0.87064821 0.43649599 0.10943406 0.89302593 0.21956921 0.2378256 0.94616503 0.23360769\n\t\t 0.43886966 0.8676526 0.42494535 0.42881072 0.79720938 0.4263562 0.24534082 0.87064821\n\t\t 0.23360769 0.43886966 0.8676526 0.24880965 0.68868506 0.68103355 0.42831555 0.63945007\n\t\t 0.63847429 0.42494535 0.42881072 0.79720938 0.44661668 0.025142418 0.89437211 0.43649599\n\t\t 0.10943406 0.89302593 0.69549602 0.1247277 0.70762157 0.7034499 0.041678119 0.70952171\n\t\t 0.43649599 0.10943406 0.89302593 0.4263562 0.24534082 0.87064821 0.68102974 0.24880411\n\t\t 0.68869072 0.69549602 0.1247277 0.70762157 0.4263562 0.24534082 0.87064821 0.42494535\n\t\t 0.42881072 0.79720938 0.63846737 0.42832065 0.63945359 0.68102974 0.24880411 0.68869072\n\t\t 0.42494535 0.42881072 0.79720938 0.42831555 0.63945007 0.63847429 0.57734478 0.57735008\n\t\t 0.57735592 0.63846737 0.42832065 0.63945359 0.0092238272 0.99977636 0.019030662 0.070853397\n\t\t 0.99723309 0.02249484 0.070721626 0.9937464 0.086409025 0.0015839522 0.99700576 0.077311724\n\t\t 0.070853397 0.99723309 0.02249484 0.22566651 0.97372681 0.030508658 0.23236516 0.96785277\n\t\t 0.096266948 0.070721626 0.9937464 0.086409025 0.22566651 0.97372681 0.030508658 0.45314914\n\t\t 0.8905642 0.039388124 0.45102572 0.88525742 0.11355664 0.23236516 0.96785277 0.096266948\n\t\t 0.45314914 0.8905642 0.039388124 0.70951462 0.70345724 0.041676328 0.7076211 0.69549656\n\t\t 0.12472697 0.45102572 0.88525742 0.11355664 0.0015839522 0.99700576 0.077311724 0.070721626\n\t\t 0.9937464 0.086409025 0.083683364 0.97214985 0.2189099 0.0063217115 0.97516477 0.22139056\n\t\t 0.070721626 0.9937464 0.086409025 0.23236516 0.96785277 0.096266948 0.23782662 0.94616628\n\t\t 0.21956278 0.083683364 0.97214985 0.2189099 0.23236516 0.96785277 0.096266948 0.45102572\n\t\t 0.88525742 0.11355664 0.43887997 0.86764896 0.23360185 0.23782662 0.94616628 0.21956278\n\t\t 0.45102572 0.88525742 0.11355664 0.7076211 0.69549656 0.12472697 0.68869728 0.68102324\n\t\t 0.24880397 0.43887997 0.86764896 0.23360185 0.0063217115 0.97516477 0.22139056 0.083683364\n\t\t 0.97214985 0.2189099 0.10942863 0.89302778 0.43649349 0.025134195 0.8943724 0.44661653\n\t\t 0.083683364 0.97214985 0.2189099 0.23782662 0.94616628 0.21956278 0.24534626 0.87065196\n\t\t 0.42634541 0.10942863 0.89302778 0.43649349 0.23782662 0.94616628 0.21956278 0.43887997\n\t\t 0.86764896 0.23360185 0.42881197 0.79720849 0.42494598 0.24534626 0.87065196 0.42634541\n\t\t 0.43887997 0.86764896 0.23360185 0.68869728 0.68102324 0.24880397 0.63945359 0.6384666\n\t\t 0.42832187 0.42881197 0.79720849 0.42494598 0.025134195 0.8943724 0.44661653 0.10942863\n\t\t 0.89302778 0.43649349 0.12473096 0.7076118 0.69550538 0.041673698 0.7095198 0.70345223\n\t\t 0.10942863 0.89302778 0.43649349 0.24534626 0.87065196 0.42634541 0.24880965 0.68868506\n\t\t 0.68103355 0.12473096 0.7076118 0.69550538 0.24534626 0.87065196 0.42634541 0.42881197\n\t\t 0.79720849 0.42494598 0.42831555 0.63945007 0.63847429 0.24880965 0.68868506 0.68103355\n\t\t 0.42881197 0.79720849 0.42494598 0.63945359 0.6384666 0.42832187 0.57734478 0.57735008\n\t\t 0.57735592 0.42831555 0.63945007 0.63847429 0.99977624 0.01903211 0.0092320209 0.99723279\n\t\t 0.022492167 0.070859268 0.99374664 0.086400725 0.070729196 0.99700576 0.077310979\n\t\t 0.0015869788 0.99723279 0.022492167 0.070859268 0.97372895 0.030502537 0.22565809\n\t\t 0.9678545 0.096250698 0.23236506 0.99374664 0.086400725 0.070729196 0.97372895 0.030502537\n\t\t 0.22565809 0.8905642 0.039384618 0.45314923 0.88526374 0.11354756 0.45101541 0.9678545\n\t\t 0.096250698 0.23236506 0.8905642 0.039384618 0.45314923 0.70345086 0.041675013 0.709521\n\t\t 0.69550043 0.1247233 0.70761818 0.88526374 0.11354756 0.45101541 0.99700576 0.077310979\n\t\t 0.0015869788 0.99374664 0.086400725 0.070729196 0.97214717 0.21891648 0.083698213\n\t\t 0.97516519 0.22138844 0.0063279481 0.99374664 0.086400725 0.070729196 0.9678545 0.096250698\n\t\t 0.23236506 0.94616431 0.21957053 0.23782729 0.97214717 0.21891648 0.083698213 0.9678545\n\t\t 0.096250698 0.23236506 0.88526374 0.11354756 0.45101541 0.86765528 0.23360577 0.43886524\n\t\t 0.94616431 0.21957053 0.23782729 0.88526374 0.11354756 0.45101541 0.69550043 0.1247233\n\t\t 0.70761818 0.68103105 0.24880148 0.68869036 0.86765528 0.23360577 0.43886524 0.97516519\n\t\t 0.22138844 0.0063279481 0.97214717 0.21891648 0.083698213 0.89302385 0.43650076 0.10943216\n\t\t 0.89437234 0.44661626 0.025139304 0.97214717 0.21891648 0.083698213 0.94616431 0.21957053\n\t\t 0.23782729 0.8706494 0.42635334 0.24534166 0.89302385 0.43650076 0.10943216 0.94616431\n\t\t 0.21957053 0.23782729 0.86765528 0.23360577 0.43886524 0.79721099 0.42494437 0.42880851\n\t\t 0.8706494 0.42635334 0.24534166 0.86765528 0.23360577 0.43886524 0.68103105 0.24880148\n\t\t 0.68869036 0.63846642 0.42831928 0.63945556 0.79721099 0.42494437 0.42880851 0.89437234\n\t\t 0.44661626 0.025139304 0.89302385 0.43650076 0.10943216 0.7076211 0.69549656 0.12472697\n\t\t 0.70951462 0.70345724 0.041676328 0.89302385 0.43650076 0.10943216 0.8706494 0.42635334\n\t\t 0.24534166 0.68869728 0.68102324 0.24880397 0.7076211 0.69549656 0.12472697 0.8706494\n\t\t 0.42635334 0.24534166 0.79721099 0.42494437 0.42880851 0.63945359 0.6384666 0.42832187\n\t\t 0.68869728 0.68102324 0.24880397 0.79721099 0.42494437 0.42880851 0.63846642 0.42831928\n\t\t 0.63945556 0.57734478 0.57735008 0.57735592 0.63945359 0.6384666 0.42832187 0.019031333\n\t\t 0.0092337234 0.99977624 0.0224922 0.070861854 0.99723244 0.086403415 0.070729576\n\t\t 0.99374628 0.077310771 0.0015863241 0.9970057 0.0224922 0.070861854 0.99723244 0.030503795\n\t\t 0.22566077 0.9737283;\n\tsetAttr \".n[8798:8963]\" -type \"float3\"  0.096255206 0.23236732 0.96785349 0.086403415\n\t\t 0.070729576 0.99374628 0.030503795 0.22566077 0.9737283 0.039385475 0.45314986 0.89056385\n\t\t 0.11354907 0.45101839 0.88526219 0.096255206 0.23236732 0.96785349 0.039385475 0.45314986\n\t\t 0.89056385 0.041674513 0.70951873 0.70345312 0.12472694 0.70761317 0.69550472 0.11354907\n\t\t 0.45101839 0.88526219 0.077310771 0.0015863241 0.9970057 0.086403415 0.070729576\n\t\t 0.99374628 0.2189161 0.083692923 0.97214776 0.2213871 0.0063255951 0.97516549 0.086403415\n\t\t 0.070729576 0.99374628 0.096255206 0.23236732 0.96785349 0.21957009 0.23782207 0.94616568\n\t\t 0.2189161 0.083692923 0.97214776 0.096255206 0.23236732 0.96785349 0.11354907 0.45101839\n\t\t 0.88526219 0.23360462 0.43887299 0.86765164 0.21957009 0.23782207 0.94616568 0.11354907\n\t\t 0.45101839 0.88526219 0.12472694 0.70761317 0.69550472 0.24881123 0.68868876 0.68102926\n\t\t 0.23360462 0.43887299 0.86765164 0.2213871 0.0063255951 0.97516549 0.2189161 0.083692923\n\t\t 0.97214776 0.43649709 0.10942569 0.89302641 0.44661406 0.025137018 0.89437354 0.2189161\n\t\t 0.083692923 0.97214776 0.21957009 0.23782207 0.94616568 0.4263486 0.24533793 0.87065262\n\t\t 0.43649709 0.10942569 0.89302641 0.21957009 0.23782207 0.94616568 0.23360462 0.43887299\n\t\t 0.86765164 0.42494234 0.42881137 0.79721057 0.4263486 0.24533793 0.87065262 0.23360462\n\t\t 0.43887299 0.86765164 0.24881123 0.68868876 0.68102926 0.42832091 0.63945031 0.63847053\n\t\t 0.42494234 0.42881137 0.79721057 0.44661406 0.025137018 0.89437354 0.43649709 0.10942569\n\t\t 0.89302641 0.69550043 0.1247233 0.70761818 0.70345086 0.041675013 0.709521 0.43649709\n\t\t 0.10942569 0.89302641 0.4263486 0.24533793 0.87065262 0.68103105 0.24880148 0.68869036\n\t\t 0.69550043 0.1247233 0.70761818 0.4263486 0.24533793 0.87065262 0.42494234 0.42881137\n\t\t 0.79721057 0.63846642 0.42831928 0.63945556 0.68103105 0.24880148 0.68869036 0.42494234\n\t\t 0.42881137 0.79721057 0.42832091 0.63945031 0.63847053 0.57734478 0.57735008 0.57735592\n\t\t 0.63846642 0.42831928 0.63945556 0.0092351399 0.99977624 0.019030616 0.0708616 0.99723238\n\t\t 0.02249508 0.070721261 0.99374646 0.086408913 0.0015838015 0.99700564 0.077312008\n\t\t 0.0708616 0.99723238 0.02249508 0.22566648 0.97372681 0.030508939 0.23236527 0.96785295\n\t\t 0.096265621 0.070721261 0.99374646 0.086408913 0.22566648 0.97372681 0.030508939\n\t\t 0.45314872 0.89056432 0.039388232 0.45102677 0.88525718 0.11355412 0.23236527 0.96785295\n\t\t 0.096265621 0.45314872 0.89056432 0.039388232 0.70951253 0.70345956 0.041674446 0.70762175\n\t\t 0.6954968 0.12472198 0.45102677 0.88525718 0.11355412 0.0015838015 0.99700564 0.077312008\n\t\t 0.070721261 0.99374646 0.086408913 0.083684228 0.97214979 0.21891002 0.0063215955\n\t\t 0.97516459 0.22139108 0.070721261 0.99374646 0.086408913 0.23236527 0.96785295 0.096265621\n\t\t 0.23782039 0.94616818 0.21956164 0.083684228 0.97214979 0.21891002 0.23236527 0.96785295\n\t\t 0.096265621 0.45102677 0.88525718 0.11355412 0.43888003 0.86764938 0.23359995 0.23782039\n\t\t 0.94616818 0.21956164 0.45102677 0.88525718 0.11355412 0.70762175 0.6954968 0.12472198\n\t\t 0.68870312 0.68101925 0.24879882 0.43888003 0.86764938 0.23359995 0.0063215955 0.97516459\n\t\t 0.22139108 0.083684228 0.97214979 0.21891002 0.10942858 0.89302695 0.43649539 0.025134979\n\t\t 0.89437109 0.44661903 0.083684228 0.97214979 0.21891002 0.23782039 0.94616818 0.21956164\n\t\t 0.24534041 0.87065321 0.42634618 0.10942858 0.89302695 0.43649539 0.23782039 0.94616818\n\t\t 0.21956164 0.43888003 0.86764938 0.23359995 0.42881387 0.79720747 0.42494592 0.24534041\n\t\t 0.87065321 0.42634618 0.43888003 0.86764938 0.23359995 0.68870312 0.68101925 0.24879882\n\t\t 0.63945562 0.6384654 0.42832065 0.42881387 0.79720747 0.42494592 0.025134979 0.89437109\n\t\t 0.44661903 0.10942858 0.89302695 0.43649539 0.12472694 0.70761317 0.69550472 0.041674513\n\t\t 0.70951873 0.70345312 0.10942858 0.89302695 0.43649539 0.24534041 0.87065321 0.42634618\n\t\t 0.24881123 0.68868876 0.68102926 0.12472694 0.70761317 0.69550472 0.24534041 0.87065321\n\t\t 0.42634618 0.42881387 0.79720747 0.42494592 0.42832091 0.63945031 0.63847053 0.24881123\n\t\t 0.68868876 0.68102926 0.42881387 0.79720747 0.42494592 0.63945562 0.6384654 0.42832065\n\t\t 0.57734478 0.57735008 0.57735592 0.42832091 0.63945031 0.63847053 0.99977624 0.019030038\n\t\t 0.0092333993 0.99723274 0.022490971 0.070859551 0.99374664 0.086402178 0.070726931\n\t\t 0.99700576 0.077310674 0.0015855613 0.99723274 0.022490971 0.070859551 0.97372943\n\t\t 0.030501829 0.22565593 0.96785486 0.096255139 0.23236169 0.99374664 0.086402178 0.070726931\n\t\t 0.97372943 0.030501829 0.22565593 0.89056414 0.039385408 0.4531492 0.88526219 0.11355121\n\t\t 0.45101768 0.96785486 0.096255139 0.23236169 0.89056414 0.039385408 0.4531492 0.7034499\n\t\t 0.041678119 0.70952171 0.69549602 0.1247277 0.70762157 0.88526219 0.11355121 0.45101768\n\t\t 0.99700576 0.077310674 0.0015855613 0.99374664 0.086402178 0.070726931 0.97214705\n\t\t 0.21891944 0.083692133 0.97516465 0.22139083 0.0063250731 0.99374664 0.086402178\n\t\t 0.070726931 0.96785486 0.096255139 0.23236169 0.94616473 0.21957274 0.23782416 0.97214705\n\t\t 0.21891944 0.083692133 0.96785486 0.096255139 0.23236169 0.88526219 0.11355121 0.45101768\n\t\t 0.86765194 0.23360793 0.43887064 0.94616473 0.21957274 0.23782416 0.88526219 0.11355121\n\t\t 0.45101768 0.69549602 0.1247277 0.70762157 0.68102974 0.24880411 0.68869072 0.86765194\n\t\t 0.23360793 0.43887064 0.97516465 0.22139083 0.0063250731 0.97214705 0.21891944 0.083692133\n\t\t 0.89302433 0.43650204 0.10942432 0.89437085 0.44661954 0.025136126 0.97214705 0.21891944\n\t\t 0.083692133 0.94616473 0.21957274 0.23782416 0.87065184 0.4263508 0.24533728 0.89302433\n\t\t 0.43650204 0.10942432 0.94616473 0.21957274 0.23782416 0.86765194 0.23360793 0.43887064\n\t\t 0.79720926 0.42494631 0.42881 0.87065184 0.4263508 0.24533728;\n\tsetAttr \".n[8964:9129]\" -type \"float3\"  0.86765194 0.23360793 0.43887064 0.68102974\n\t\t 0.24880411 0.68869072 0.63846737 0.42832065 0.63945359 0.79720926 0.42494631 0.42881\n\t\t 0.89437085 0.44661954 0.025136126 0.89302433 0.43650204 0.10942432 0.70762175 0.6954968\n\t\t 0.12472198 0.70951253 0.70345956 0.041674446 0.89302433 0.43650204 0.10942432 0.87065184\n\t\t 0.4263508 0.24533728 0.68870312 0.68101925 0.24879882 0.70762175 0.6954968 0.12472198\n\t\t 0.87065184 0.4263508 0.24533728 0.79720926 0.42494631 0.42881 0.63945562 0.6384654\n\t\t 0.42832065 0.68870312 0.68101925 0.24879882 0.79720926 0.42494631 0.42881 0.63846737\n\t\t 0.42832065 0.63945359 0.57734478 0.57735008 0.57735592 0.63945562 0.6384654 0.42832065\n\t\t 0.99978542 0.014656219 0.014637504 0.99704003 0.075964659 0.011856309 0.99333864\n\t\t 0.081847578 0.081112593 0.99703509 0.01210684 0.075990282 0.99704003 0.075964659\n\t\t 0.011856309 0.97346944 0.22849011 0.012228065 0.96697575 0.24062699 0.084003374 0.99333864\n\t\t 0.081847578 0.081112593 0.97346944 0.22849011 0.012228065 0.88921845 0.45735329 0.010886636\n\t\t 0.8797915 0.4682081 0.082146913 0.96697575 0.24062699 0.084003374 0.88921845 0.45735329\n\t\t 0.010886636 0.70699805 0.70714998 0.0096217375 0.70542687 0.70425707 0.079967447\n\t\t 0.8797915 0.4682081 0.082146913 0.99703509 0.01210684 0.075990282 0.99333864 0.081847578\n\t\t 0.081112593 0.96684951 0.085012056 0.24077994 0.97350782 0.012683542 0.22830158 0.99333864\n\t\t 0.081847578 0.081112593 0.96697575 0.24062699 0.084003374 0.93764687 0.24605347 0.24551168\n\t\t 0.96684951 0.085012056 0.24077994 0.96697575 0.24062699 0.084003374 0.8797915 0.4682081\n\t\t 0.082146913 0.85190004 0.46579266 0.23938146 0.93764687 0.24605347 0.24551168 0.8797915\n\t\t 0.4682081 0.082146913 0.70542687 0.70425707 0.079967447 0.6878351 0.68729562 0.23346879\n\t\t 0.85190004 0.46579266 0.23938146 0.97350782 0.012683542 0.22830158 0.96684951 0.085012056\n\t\t 0.24077994 0.87905771 0.082782291 0.46947274 0.88934785 0.011133501 0.45709577 0.96684951\n\t\t 0.085012056 0.24077994 0.93764687 0.24605347 0.24551168 0.85159004 0.23996784 0.46605793\n\t\t 0.87905771 0.082782291 0.46947274 0.93764687 0.24605347 0.24551168 0.85190004 0.46579266\n\t\t 0.23938146 0.7836051 0.43939319 0.43920016 0.85159004 0.23996784 0.46605793 0.85190004\n\t\t 0.46579266 0.23938146 0.6878351 0.68729562 0.23346879 0.6423561 0.64232063 0.41809416\n\t\t 0.7836051 0.43939319 0.43920016 0.88934785 0.011133501 0.45709577 0.87905771 0.082782291\n\t\t 0.46947274 0.70425379 0.079968669 0.70543009 0.70714486 0.0096223326 0.7070033 0.87905771\n\t\t 0.082782291 0.46947274 0.85159004 0.23996784 0.46605793 0.68728441 0.23346584 0.68784732\n\t\t 0.70425379 0.079968669 0.70543009 0.85159004 0.23996784 0.46605793 0.7836051 0.43939319\n\t\t 0.43920016 0.64231229 0.41809413 0.64236456 0.68728441 0.23346584 0.68784732 0.7836051\n\t\t 0.43939319 0.43920016 0.6423561 0.64232063 0.41809416 0.57734638 0.57735544 0.57734889\n\t\t 0.64231229 0.41809413 0.64236456 0.014651231 0.99978513 0.014662095 0.011864797 0.9970395\n\t\t 0.07596951 0.081114978 0.99333775 0.081855886 0.076002859 0.99703395 0.012114693\n\t\t 0.011864797 0.9970395 0.07596951 0.012225375 0.9734692 0.22849128 0.083995879 0.96697718\n\t\t 0.24062358 0.081114978 0.99333775 0.081855886 0.012225375 0.9734692 0.22849128 0.010879564\n\t\t 0.88922024 0.45735002 0.082147568 0.87979627 0.46819907 0.083995879 0.96697718 0.24062358\n\t\t 0.010879564 0.88922024 0.45735002 0.009619263 0.70700705 0.7071411 0.079968788 0.7054258\n\t\t 0.70425814 0.082147568 0.87979627 0.46819907 0.076002859 0.99703395 0.012114693 0.081114978\n\t\t 0.99333775 0.081855886 0.24077263 0.96685082 0.085017815 0.22831032 0.9735058 0.012685881\n\t\t 0.081114978 0.99333775 0.081855886 0.083995879 0.96697718 0.24062358 0.24550936 0.9376477\n\t\t 0.24605274 0.24077263 0.96685082 0.085017815 0.083995879 0.96697718 0.24062358 0.082147568\n\t\t 0.87979627 0.46819907 0.23939207 0.85190469 0.46577862 0.24550936 0.9376477 0.24605274\n\t\t 0.082147568 0.87979627 0.46819907 0.079968788 0.7054258 0.70425814 0.23347479 0.68783957\n\t\t 0.68728918 0.23939207 0.85190469 0.46577862 0.22831032 0.9735058 0.012685881 0.24077263\n\t\t 0.96685082 0.085017815 0.46947247 0.87905777 0.082783379 0.45709491 0.88934827 0.011131835\n\t\t 0.24077263 0.96685082 0.085017815 0.24550936 0.9376477 0.24605274 0.46605542 0.85159135\n\t\t 0.23996802 0.46947247 0.87905777 0.082783379 0.24550936 0.9376477 0.24605274 0.23939207\n\t\t 0.85190469 0.46577862 0.4391979 0.78361118 0.43938446 0.46605542 0.85159135 0.23996802\n\t\t 0.23939207 0.85190469 0.46577862 0.23347479 0.68783957 0.68728918 0.41809309 0.64236593\n\t\t 0.64231163 0.4391979 0.78361118 0.43938446 0.45709491 0.88934827 0.011131835 0.46947247\n\t\t 0.87905777 0.082783379 0.70542687 0.70425707 0.079967447 0.70699805 0.70714998 0.0096217375\n\t\t 0.46947247 0.87905777 0.082783379 0.46605542 0.85159135 0.23996802 0.6878351 0.68729562\n\t\t 0.23346879 0.70542687 0.70425707 0.079967447 0.46605542 0.85159135 0.23996802 0.4391979\n\t\t 0.78361118 0.43938446 0.6423561 0.64232063 0.41809416 0.6878351 0.68729562 0.23346879\n\t\t 0.4391979 0.78361118 0.43938446 0.41809309 0.64236593 0.64231163 0.57734638 0.57735544\n\t\t 0.57734889 0.6423561 0.64232063 0.41809416 0.014660035 0.014640152 0.99978536 0.075964428\n\t\t 0.011857767 0.99704009 0.081846811 0.081112884 0.9933387 0.012108503 0.075992368\n\t\t 0.99703497 0.075964428 0.011857767 0.99704009 0.22849081 0.012229184 0.97346932 0.24062882\n\t\t 0.084005073 0.96697509 0.081846811 0.081112884 0.9933387 0.22849081 0.012229184 0.97346932\n\t\t 0.45735797 0.010886884 0.88921595 0.46820495 0.082150549 0.87979293 0.24062882 0.084005073\n\t\t 0.96697509 0.45735797 0.010886884 0.88921595 0.70714486 0.0096223326 0.7070033 0.70425379\n\t\t 0.079968669 0.70543009 0.46820495 0.082150549 0.87979293 0.012108503 0.075992368\n\t\t 0.99703497 0.081846811 0.081112884 0.9933387;\n\tsetAttr \".n[9130:9295]\" -type \"float3\"  0.085013792 0.24077822 0.96684974 0.012682995\n\t\t 0.22830094 0.97350794 0.081846811 0.081112884 0.9933387 0.24062882 0.084005073 0.96697509\n\t\t 0.24605532 0.24551179 0.93764633 0.085013792 0.24077822 0.96684974 0.24062882 0.084005073\n\t\t 0.96697509 0.46820495 0.082150549 0.87979293 0.46578163 0.23938148 0.85190612 0.24605532\n\t\t 0.24551179 0.93764633 0.46820495 0.082150549 0.87979293 0.70425379 0.079968669 0.70543009\n\t\t 0.68728441 0.23346584 0.68784732 0.46578163 0.23938148 0.85190612 0.012682995 0.22830094\n\t\t 0.97350794 0.085013792 0.24077822 0.96684974 0.082784504 0.46946928 0.87905937 0.01113399\n\t\t 0.45709401 0.88934869 0.085013792 0.24077822 0.96684974 0.24605532 0.24551179 0.93764633\n\t\t 0.2399682 0.46605173 0.8515932 0.082784504 0.46946928 0.87905937 0.24605532 0.24551179\n\t\t 0.93764633 0.46578163 0.23938148 0.85190612 0.43938807 0.43919516 0.78361064 0.2399682\n\t\t 0.46605173 0.8515932 0.46578163 0.23938148 0.85190612 0.68728441 0.23346584 0.68784732\n\t\t 0.64231229 0.41809413 0.64236456 0.43938807 0.43919516 0.78361064 0.01113399 0.45709401\n\t\t 0.88934869 0.082784504 0.46946928 0.87905937 0.079968788 0.7054258 0.70425814 0.009619263\n\t\t 0.70700705 0.7071411 0.082784504 0.46946928 0.87905937 0.2399682 0.46605173 0.8515932\n\t\t 0.23347479 0.68783957 0.68728918 0.079968788 0.7054258 0.70425814 0.2399682 0.46605173\n\t\t 0.8515932 0.43938807 0.43919516 0.78361064 0.41809309 0.64236593 0.64231163 0.23347479\n\t\t 0.68783957 0.68728918 0.43938807 0.43919516 0.78361064 0.64231229 0.41809413 0.64236456\n\t\t 0.57734638 0.57735544 0.57734889 0.41809309 0.64236593 0.64231163 -0.99978542 0.014636242\n\t\t 0.014656967 -0.99704015 0.011856623 0.075962596 -0.99333882 0.081111968 0.08184626\n\t\t -0.99703503 0.075990416 0.012105152 -0.99704015 0.011856623 0.075962596 -0.97347075\n\t\t 0.012229019 0.22848475 -0.96697593 0.084005833 0.24062504 -0.99333882 0.081111968\n\t\t 0.08184626 -0.97347075 0.012229019 0.22848475 -0.88921982 0.010887076 0.45735064\n\t\t -0.87979352 0.082151331 0.46820346 -0.96697593 0.084005833 0.24062504 -0.88921982\n\t\t 0.010887076 0.45735064 -0.70700181 0.0096230581 0.70714635 -0.70542115 0.079970077\n\t\t 0.70426255 -0.87979352 0.082151331 0.46820346 -0.99703503 0.075990416 0.012105152\n\t\t -0.99333882 0.081111968 0.08184626 -0.96684992 0.24077752 0.085014477 -0.97350764\n\t\t 0.22830221 0.012683161 -0.99333882 0.081111968 0.08184626 -0.96697593 0.084005833\n\t\t 0.24062504 -0.93764836 0.24550903 0.24605052 -0.96684992 0.24077752 0.085014477 -0.96697593\n\t\t 0.084005833 0.24062504 -0.87979352 0.082151331 0.46820346 -0.85190642 0.23937976\n\t\t 0.4657819 -0.93764836 0.24550903 0.24605052 -0.87979352 0.082151331 0.46820346 -0.70542115\n\t\t 0.079970077 0.70426255 -0.68784088 0.23346603 0.68729061 -0.85190642 0.23937976 0.4657819\n\t\t -0.97350764 0.22830221 0.012683161 -0.96684992 0.24077752 0.085014477 -0.87905902\n\t\t 0.4694697 0.082784653 -0.88934886 0.45709372 0.01113601 -0.96684992 0.24077752 0.085014477\n\t\t -0.93764836 0.24550903 0.24605052 -0.85159242 0.46605441 0.23996593 -0.87905902 0.4694697\n\t\t 0.082784653 -0.93764836 0.24550903 0.24605052 -0.85190642 0.23937976 0.4657819 -0.78360981\n\t\t 0.43919772 0.43938705 -0.85159242 0.46605441 0.23996593 -0.85190642 0.23937976 0.4657819\n\t\t -0.68784088 0.23346603 0.68729061 -0.64237106 0.41808876 0.64230937 -0.78360981 0.43919772\n\t\t 0.43938705 -0.88934886 0.45709372 0.01113601 -0.87905902 0.4694697 0.082784653 -0.70426226\n\t\t 0.70542157 0.079969592 -0.70714527 0.70700282 0.0096212551 -0.87905902 0.4694697\n\t\t 0.082784653 -0.85159242 0.46605441 0.23996593 -0.68729132 0.68783838 0.23347196 -0.70426226\n\t\t 0.70542157 0.079969592 -0.85159242 0.46605441 0.23996593 -0.78360981 0.43919772 0.43938705\n\t\t -0.64231342 0.6423642 0.41809288 -0.68729132 0.68783838 0.23347196 -0.78360981 0.43919772\n\t\t 0.43938705 -0.64237106 0.41808876 0.64230937 -0.57735699 0.57734746 0.57734632 -0.64231342\n\t\t 0.6423642 0.41809288 -0.014636387 0.014658634 0.99978542 -0.011856097 0.075965703\n\t\t 0.99703997 -0.081111565 0.081848353 0.99333876 -0.075989529 0.012107754 0.99703509\n\t\t -0.011856097 0.075965703 0.99703997 -0.012228794 0.22849011 0.97346944 -0.084003016\n\t\t 0.24062869 0.96697527 -0.081111565 0.081848353 0.99333876 -0.012228794 0.22849011\n\t\t 0.97346944 -0.010889255 0.45735541 0.88921732 -0.082154274 0.46820951 0.87979013\n\t\t -0.084003016 0.24062869 0.96697527 -0.010889255 0.45735541 0.88921732 -0.009628146\n\t\t 0.70715111 0.7069968 -0.079976231 0.7042613 0.70542169 -0.082154274 0.46820951 0.87979013\n\t\t -0.075989529 0.012107754 0.99703509 -0.081111565 0.081848353 0.99333876 -0.24077892\n\t\t 0.085012496 0.96684974 -0.22830202 0.012683701 0.9735077 -0.081111565 0.081848353\n\t\t 0.99333876 -0.084003016 0.24062869 0.96697527 -0.2455077 0.24605206 0.93764836 -0.24077892\n\t\t 0.085012496 0.96684974 -0.084003016 0.24062869 0.96697527 -0.082154274 0.46820951\n\t\t 0.87979013 -0.23937702 0.46579206 0.85190171 -0.2455077 0.24605206 0.93764836 -0.082154274\n\t\t 0.46820951 0.87979013 -0.079976231 0.7042613 0.70542169 -0.23346487 0.68729383 0.68783814\n\t\t -0.23937702 0.46579206 0.85190171 -0.22830202 0.012683701 0.9735077 -0.24077892 0.085012496\n\t\t 0.96684974 -0.469466 0.082782865 0.87906128 -0.45709312 0.011135051 0.88934916 -0.24077892\n\t\t 0.085012496 0.96684974 -0.2455077 0.24605206 0.93764836 -0.46605244 0.23996685 0.85159326\n\t\t -0.469466 0.082782865 0.87906128 -0.2455077 0.24605206 0.93764836 -0.23937702 0.46579206\n\t\t 0.85190171 -0.4391965 0.43938994 0.78360897 -0.46605244 0.23996685 0.85159326 -0.23937702\n\t\t 0.46579206 0.85190171 -0.23346487 0.68729383 0.68783814 -0.41809157 0.64231575 0.64236277\n\t\t -0.4391965 0.43938994 0.78360897 -0.45709312 0.011135051 0.88934916 -0.469466 0.082782865\n\t\t 0.87906128 -0.70542115 0.079970077 0.70426255 -0.70700181 0.0096230581 0.70714635\n\t\t -0.469466 0.082782865 0.87906128 -0.46605244 0.23996685 0.85159326 -0.68784088 0.23346603\n\t\t 0.68729061 -0.70542115 0.079970077 0.70426255;\n\tsetAttr \".n[9296:9461]\" -type \"float3\"  -0.46605244 0.23996685 0.85159326 -0.4391965\n\t\t 0.43938994 0.78360897 -0.64237106 0.41808876 0.64230937 -0.68784088 0.23346603 0.68729061\n\t\t -0.4391965 0.43938994 0.78360897 -0.41809157 0.64231575 0.64236277 -0.57735699 0.57734746\n\t\t 0.57734632 -0.64237106 0.41808876 0.64230937 -0.014660528 0.9997853 0.014637367 -0.07596796\n\t\t 0.99703985 0.011857886 -0.081860863 0.99333781 0.081109673 -0.012125953 0.99703497\n\t\t 0.075989701 -0.07596796 0.99703985 0.011857886 -0.22848873 0.97346985 0.012226291\n\t\t -0.24061441 0.96697897 0.084001429 -0.081860863 0.99333781 0.081109673 -0.22848873\n\t\t 0.97346985 0.012226291 -0.45735234 0.88921905 0.010881576 -0.4682034 0.879794 0.082146943\n\t\t -0.24061441 0.96697897 0.084001429 -0.45735234 0.88921905 0.010881576 -0.70714527\n\t\t 0.70700282 0.0096212551 -0.70426226 0.70542157 0.079969592 -0.4682034 0.879794 0.082146943\n\t\t -0.012125953 0.99703497 0.075989701 -0.081860863 0.99333781 0.081109673 -0.08502306\n\t\t 0.96684873 0.24077933 -0.012698123 0.97350645 0.22830674 -0.081860863 0.99333781\n\t\t 0.081109673 -0.24061441 0.96697897 0.084001429 -0.24604042 0.93765044 0.2455114 -0.08502306\n\t\t 0.96684873 0.24077933 -0.24061441 0.96697897 0.084001429 -0.4682034 0.879794 0.082146943\n\t\t -0.46578383 0.85190398 0.23938495 -0.24604042 0.93765044 0.2455114 -0.4682034 0.879794\n\t\t 0.082146943 -0.70426226 0.70542157 0.079969592 -0.68729132 0.68783838 0.23347196\n\t\t -0.46578383 0.85190398 0.23938495 -0.012698123 0.97350645 0.22830674 -0.08502306\n\t\t 0.96684873 0.24077933 -0.082791902 0.87905729 0.46947187 -0.011142148 0.88934821\n\t\t 0.45709476 -0.08502306 0.96684873 0.24077933 -0.24604042 0.93765044 0.2455114 -0.23996246\n\t\t 0.851592 0.46605673 -0.082791902 0.87905729 0.46947187 -0.24604042 0.93765044 0.2455114\n\t\t -0.46578383 0.85190398 0.23938495 -0.43938839 0.78360909 0.43919766 -0.23996246 0.851592\n\t\t 0.46605673 -0.46578383 0.85190398 0.23938495 -0.68729132 0.68783838 0.23347196 -0.64231342\n\t\t 0.6423642 0.41809288 -0.43938839 0.78360909 0.43919766 -0.011142148 0.88934821 0.45709476\n\t\t -0.082791902 0.87905729 0.46947187 -0.079976231 0.7042613 0.70542169 -0.009628146\n\t\t 0.70715111 0.7069968 -0.082791902 0.87905729 0.46947187 -0.23996246 0.851592 0.46605673\n\t\t -0.23346487 0.68729383 0.68783814 -0.079976231 0.7042613 0.70542169 -0.23996246 0.851592\n\t\t 0.46605673 -0.43938839 0.78360909 0.43919766 -0.41809157 0.64231575 0.64236277 -0.23346487\n\t\t 0.68729383 0.68783814 -0.43938839 0.78360909 0.43919766 -0.64231342 0.6423642 0.41809288\n\t\t -0.57735699 0.57734746 0.57734632 -0.41809157 0.64231575 0.64236277 -0.99978554 0.014656138\n\t\t -0.014629052 -0.99703997 0.075964853 -0.011857618 -0.99333853 0.081848644 -0.0811131\n\t\t -0.99703741 0.012106547 -0.0759589 -0.99703997 0.075964853 -0.011857618 -0.97346932\n\t\t 0.22849046 -0.012234586 -0.96697503 0.2406279 -0.084009282 -0.99333853 0.081848644\n\t\t -0.0811131 -0.97346932 0.22849046 -0.012234586 -0.88921905 0.45735204 -0.010889352\n\t\t -0.87978989 0.46821043 -0.082150072 -0.96697503 0.2406279 -0.084009282 -0.88921905\n\t\t 0.45735204 -0.010889352 -0.70700032 0.70714778 -0.0096220365 -0.70542395 0.70425999\n\t\t -0.079968005 -0.87978989 0.46821043 -0.082150072 -0.99703741 0.012106547 -0.0759589\n\t\t -0.99333853 0.081848644 -0.0811131 -0.96684998 0.085014395 -0.2407774 -0.97352362\n\t\t 0.012683463 -0.22823429 -0.99333853 0.081848644 -0.0811131 -0.96697503 0.2406279\n\t\t -0.084009282 -0.93764818 0.24605544 -0.24550502 -0.96684998 0.085014395 -0.2407774\n\t\t -0.96697503 0.2406279 -0.084009282 -0.87978989 0.46821043 -0.082150072 -0.85189581\n\t\t 0.46579978 -0.23938277 -0.93764818 0.24605544 -0.24550502 -0.87978989 0.46821043\n\t\t -0.082150072 -0.70542395 0.70425999 -0.079968005 -0.68783224 0.68729836 -0.23346928\n\t\t -0.85189581 0.46579978 -0.23938277 -0.97352362 0.012683463 -0.22823429 -0.96684998\n\t\t 0.085014395 -0.2407774 -0.87905884 0.082782738 -0.4694705 -0.8893919 0.011133828\n\t\t -0.45700991 -0.96684998 0.085014395 -0.2407774 -0.93764818 0.24605544 -0.24550502\n\t\t -0.85159445 0.23996596 -0.4660506 -0.87905884 0.082782738 -0.4694705 -0.93764818\n\t\t 0.24605544 -0.24550502 -0.85189581 0.46579978 -0.23938277 -0.78360707 0.43939435\n\t\t -0.43919554 -0.85159445 0.23996596 -0.4660506 -0.85189581 0.46579978 -0.23938277\n\t\t -0.68783224 0.68729836 -0.23346928 -0.64234966 0.64232677 -0.41809466 -0.78360707\n\t\t 0.43939435 -0.43919554 -0.8893919 0.011133828 -0.45700991 -0.87905884 0.082782738\n\t\t -0.4694705 -0.7042526 0.079967372 -0.70543134 -0.70721805 0.0096225142 -0.70693004\n\t\t -0.87905884 0.082782738 -0.4694705 -0.85159445 0.23996596 -0.4660506 -0.68728995\n\t\t 0.23346148 -0.6878432 -0.7042526 0.079967372 -0.70543134 -0.85159445 0.23996596 -0.4660506\n\t\t -0.78360707 0.43939435 -0.43919554 -0.64232075 0.41809174 -0.64235765 -0.68728995\n\t\t 0.23346148 -0.6878432 -0.78360707 0.43939435 -0.43919554 -0.64234966 0.64232677 -0.41809466\n\t\t -0.57734185 0.5773598 -0.57734907 -0.64232075 0.41809174 -0.64235765 -0.014639724\n\t\t 0.99978536 -0.014662189 -0.011864585 0.99703962 -0.075969294 -0.081114762 0.99333775\n\t\t -0.081856184 -0.075988218 0.99703515 -0.012115413 -0.011864585 0.99703962 -0.075969294\n\t\t -0.012219025 0.97346961 -0.22848985 -0.083988957 0.96697813 -0.24062254 -0.081114762\n\t\t 0.99333775 -0.081856184 -0.012219025 0.97346961 -0.22848985 -0.010875966 0.88922203\n\t\t -0.45734662 -0.082141154 0.87979811 -0.46819669 -0.083988957 0.96697813 -0.24062254\n\t\t -0.010875966 0.88922203 -0.45734662 -0.0096224127 0.70700711 -0.70714098 -0.079981066\n\t\t 0.70542485 -0.70425767 -0.082141154 0.87979811 -0.46819669 -0.075988218 0.99703515\n\t\t -0.012115413 -0.081114762 0.99333775 -0.081856184 -0.24077944 0.96684897 -0.085019507\n\t\t -0.22829606 0.97350913 -0.012687479 -0.081114762 0.99333775 -0.081856184 -0.083988957\n\t\t 0.96697813 -0.24062254 -0.24551539 0.93764567 -0.24605429 -0.24077944 0.96684897\n\t\t -0.085019507 -0.083988957 0.96697813 -0.24062254 -0.082141154 0.87979811 -0.46819669\n\t\t -0.23938884 0.85190511 -0.46577957 -0.24551539 0.93764567 -0.24605429 -0.082141154\n\t\t 0.87979811 -0.46819669 -0.079981066 0.70542485 -0.70425767;\n\tsetAttr \".n[9462:9627]\" -type \"float3\"  -0.23348173 0.68783903 -0.68728721 -0.23938884\n\t\t 0.85190511 -0.46577957 -0.22829606 0.97350913 -0.012687479 -0.24077944 0.96684897\n\t\t -0.085019507 -0.46947759 0.87905484 -0.08278434 -0.45708928 0.88935113 -0.011133867\n\t\t -0.24077944 0.96684897 -0.085019507 -0.24551539 0.93764567 -0.24605429 -0.46606612\n\t\t 0.85158557 -0.23996753 -0.46947759 0.87905484 -0.08278434 -0.24551539 0.93764567\n\t\t -0.24605429 -0.23938884 0.85190511 -0.46577957 -0.43919188 0.78361285 -0.43938756\n\t\t -0.46606612 0.85158557 -0.23996753 -0.23938884 0.85190511 -0.46577957 -0.23348173\n\t\t 0.68783903 -0.68728721 -0.41808447 0.64237064 -0.64231247 -0.43919188 0.78361285\n\t\t -0.43938756 -0.45708928 0.88935113 -0.011133867 -0.46947759 0.87905484 -0.08278434\n\t\t -0.70542395 0.70425999 -0.079968005 -0.70700032 0.70714778 -0.0096220365 -0.46947759\n\t\t 0.87905484 -0.08278434 -0.46606612 0.85158557 -0.23996753 -0.68783224 0.68729836\n\t\t -0.23346928 -0.70542395 0.70425999 -0.079968005 -0.46606612 0.85158557 -0.23996753\n\t\t -0.43919188 0.78361285 -0.43938756 -0.64234966 0.64232677 -0.41809466 -0.68783224\n\t\t 0.68729836 -0.23346928 -0.43919188 0.78361285 -0.43938756 -0.41808447 0.64237064\n\t\t -0.64231247 -0.57734185 0.5773598 -0.57734907 -0.64234966 0.64232677 -0.41809466\n\t\t -0.014662026 0.014635098 -0.99978536 -0.07598947 0.01185711 -0.99703807 -0.081844151\n\t\t 0.081111349 -0.993339 -0.012107806 0.075988643 -0.99703509 -0.07598947 0.01185711\n\t\t -0.99703807 -0.22855924 0.012232662 -0.9734531 -0.24062692 0.084006056 -0.96697551\n\t\t -0.081844151 0.081111349 -0.993339 -0.22855924 0.012232662 -0.9734531 -0.45744598\n\t\t 0.010889147 -0.88917077 -0.46820208 0.08215116 -0.8797943 -0.24062692 0.084006056\n\t\t -0.96697551 -0.45744598 0.010889147 -0.88917077 -0.70721805 0.0096225142 -0.70693004\n\t\t -0.7042526 0.079967372 -0.70543134 -0.46820208 0.08215116 -0.8797943 -0.012107806\n\t\t 0.075988643 -0.99703509 -0.081844151 0.081111349 -0.993339 -0.085011691 0.24077462\n\t\t -0.96685088 -0.012684871 0.22830209 -0.97350782 -0.081844151 0.081111349 -0.993339\n\t\t -0.24062692 0.084006056 -0.96697551 -0.24605215 0.2455072 -0.93764836 -0.085011691\n\t\t 0.24077462 -0.96685088 -0.24062692 0.084006056 -0.96697551 -0.46820208 0.08215116\n\t\t -0.8797943 -0.46578601 0.2393797 -0.85190421 -0.24605215 0.2455072 -0.93764836 -0.46820208\n\t\t 0.08215116 -0.8797943 -0.7042526 0.079967372 -0.70543134 -0.68728995 0.23346148 -0.6878432\n\t\t -0.46578601 0.2393797 -0.85190421 -0.012684871 0.22830209 -0.97350782 -0.085011691\n\t\t 0.24077462 -0.96685088 -0.082788095 0.4694657 -0.87906086 -0.011135486 0.45709297\n\t\t -0.88934916 -0.085011691 0.24077462 -0.96685088 -0.24605215 0.2455072 -0.93764836\n\t\t -0.23997109 0.46605051 -0.8515932 -0.082788095 0.4694657 -0.87906086 -0.24605215\n\t\t 0.2455072 -0.93764836 -0.46578601 0.2393797 -0.85190421 -0.43939295 0.4391979 -0.78360647\n\t\t -0.23997109 0.46605051 -0.8515932 -0.46578601 0.2393797 -0.85190421 -0.68728995 0.23346148\n\t\t -0.6878432 -0.64232075 0.41809174 -0.64235765 -0.43939295 0.4391979 -0.78360647 -0.011135486\n\t\t 0.45709297 -0.88934916 -0.082788095 0.4694657 -0.87906086 -0.079981066 0.70542485\n\t\t -0.70425767 -0.0096224127 0.70700711 -0.70714098 -0.082788095 0.4694657 -0.87906086\n\t\t -0.23997109 0.46605051 -0.8515932 -0.23348173 0.68783903 -0.68728721 -0.079981066\n\t\t 0.70542485 -0.70425767 -0.23997109 0.46605051 -0.8515932 -0.43939295 0.4391979 -0.78360647\n\t\t -0.41808447 0.64237064 -0.64231247 -0.23348173 0.68783903 -0.68728721 -0.43939295\n\t\t 0.4391979 -0.78360647 -0.64232075 0.41809174 -0.64235765 -0.57734185 0.5773598 -0.57734907\n\t\t -0.41808447 0.64237064 -0.64231247 0.014636667 0.01465614 -0.99978542 0.011856018\n\t\t 0.075961314 -0.99704021 0.081111699 0.081845067 -0.993339 0.075990058 0.01210433\n\t\t -0.99703509 0.011856018 0.075961314 -0.99704021 0.012228846 0.22848997 -0.9734695\n\t\t 0.08400362 0.24062866 -0.96697533 0.081111699 0.081845067 -0.993339 0.012228846 0.22848997\n\t\t -0.9734695 0.010889298 0.45735374 -0.88921815 0.082154885 0.46820796 -0.87979078\n\t\t 0.08400362 0.24062866 -0.96697533 0.010889298 0.45735374 -0.88921815 0.0096281637\n\t\t 0.70714778 -0.70700026 0.07997673 0.70425934 -0.70542359 0.082154885 0.46820796 -0.87979078\n\t\t 0.075990058 0.01210433 -0.99703509 0.081111699 0.081845067 -0.993339 0.24078029 0.085012212\n\t\t -0.96684939 0.22830264 0.012682587 -0.97350758 0.081111699 0.081845067 -0.993339\n\t\t 0.08400362 0.24062866 -0.96697533 0.24550821 0.24605237 -0.93764806 0.24078029 0.085012212\n\t\t -0.96684939 0.08400362 0.24062866 -0.96697533 0.082154885 0.46820796 -0.87979078\n\t\t 0.23937708 0.46579191 -0.85190165 0.24550821 0.24605237 -0.93764806 0.082154885 0.46820796\n\t\t -0.87979078 0.07997673 0.70425934 -0.70542359 0.23346628 0.68729341 -0.68783814 0.23937708\n\t\t 0.46579191 -0.85190165 0.22830264 0.012682587 -0.97350758 0.24078029 0.085012212\n\t\t -0.96684939 0.469468 0.082782798 -0.87906021 0.45709392 0.011135619 -0.88934863 0.24078029\n\t\t 0.085012212 -0.96684939 0.24550821 0.24605237 -0.93764806 0.46605241 0.23996335 -0.85159421\n\t\t 0.469468 0.082782798 -0.87906021 0.24550821 0.24605237 -0.93764806 0.23937708 0.46579191\n\t\t -0.85190165 0.43919688 0.43939105 -0.78360802 0.46605241 0.23996335 -0.85159421 0.23937708\n\t\t 0.46579191 -0.85190165 0.23346628 0.68729341 -0.68783814 0.41809314 0.64231908 -0.6423583\n\t\t 0.43919688 0.43939105 -0.78360802 0.45709392 0.011135619 -0.88934863 0.469468 0.082782798\n\t\t -0.87906021 0.70542097 0.07996624 -0.70426309 0.70700091 0.0096211974 -0.70714724\n\t\t 0.469468 0.082782798 -0.87906021 0.46605241 0.23996335 -0.85159421 0.68784058 0.23346262\n\t\t -0.68729222 0.70542097 0.07996624 -0.70426309 0.46605241 0.23996335 -0.85159421 0.43919688\n\t\t 0.43939105 -0.78360802 0.64237148 0.41809109 -0.64230734 0.68784058 0.23346262 -0.68729222\n\t\t 0.43919688 0.43939105 -0.78360802 0.41809314 0.64231908 -0.6423583 0.57735682 0.57735384\n\t\t -0.5773403 0.64237148 0.41809109 -0.64230734 0.014660748 0.9997853 -0.014637733 0.075976685\n\t\t 0.99703908 -0.011858518 0.081860937 0.99333781 -0.081109978 0.012126147 0.99703485\n\t\t -0.075989656;\n\tsetAttr \".n[9628:9793]\" -type \"float3\"  0.075976685 0.99703908 -0.011858518 0.22849718\n\t\t 0.97346777 -0.012228388 0.24061494 0.96697867 -0.08400429 0.081860937 0.99333781\n\t\t -0.081109978 0.22849718 0.97346777 -0.012228388 0.45734572 0.88922238 -0.010885174\n\t\t 0.46820346 0.87979382 -0.082148924 0.24061494 0.96697867 -0.08400429 0.45734572 0.88922238\n\t\t -0.010885174 0.70714003 0.70700812 -0.0096216016 0.70426196 0.70542216 -0.079967141\n\t\t 0.46820346 0.87979382 -0.082148924 0.012126147 0.99703485 -0.075989656 0.081860937\n\t\t 0.99333781 -0.081109978 0.085022509 0.96684897 -0.24077849 0.012698239 0.97350693\n\t\t -0.22830495 0.081860937 0.99333781 -0.081109978 0.24061494 0.96697867 -0.08400429\n\t\t 0.24603981 0.93765038 -0.24551184 0.085022509 0.96684897 -0.24077849 0.24061494 0.96697867\n\t\t -0.08400429 0.46820346 0.87979382 -0.082148924 0.46578398 0.85190433 -0.23938291\n\t\t 0.24603981 0.93765038 -0.24551184 0.46820346 0.87979382 -0.082148924 0.70426196 0.70542216\n\t\t -0.079967141 0.68729103 0.68783891 -0.23347087 0.46578398 0.85190433 -0.23938291\n\t\t 0.012698239 0.97350693 -0.22830495 0.085022509 0.96684897 -0.24077849 0.082791641\n\t\t 0.87905705 -0.4694722 0.011142165 0.88934875 -0.45709369 0.085022509 0.96684897 -0.24077849\n\t\t 0.24603981 0.93765038 -0.24551184 0.2399625 0.85159212 -0.46605659 0.082791641 0.87905705\n\t\t -0.4694722 0.24603981 0.93765038 -0.24551184 0.46578398 0.85190433 -0.23938291 0.43938792\n\t\t 0.78361011 -0.4391965 0.2399625 0.85159212 -0.46605659 0.46578398 0.85190433 -0.23938291\n\t\t 0.68729103 0.68783891 -0.23347087 0.6423111 0.64236546 -0.41809458 0.43938792 0.78361011\n\t\t -0.4391965 0.011142165 0.88934875 -0.45709369 0.082791641 0.87905705 -0.4694722 0.07997673\n\t\t 0.70425934 -0.70542359 0.0096281637 0.70714778 -0.70700026 0.082791641 0.87905705\n\t\t -0.4694722 0.2399625 0.85159212 -0.46605659 0.23346628 0.68729341 -0.68783814 0.07997673\n\t\t 0.70425934 -0.70542359 0.2399625 0.85159212 -0.46605659 0.43938792 0.78361011 -0.4391965\n\t\t 0.41809314 0.64231908 -0.6423583 0.23346628 0.68729341 -0.68783814 0.43938792 0.78361011\n\t\t -0.4391965 0.6423111 0.64236546 -0.41809458 0.57735682 0.57735384 -0.5773403 0.41809314\n\t\t 0.64231908 -0.6423583 0.9997853 0.01463884 -0.014658432 0.99703991 0.011857389 -0.075965285\n\t\t 0.9933387 0.081112601 -0.081847675 0.99703491 0.075991467 -0.012111045 0.99703991\n\t\t 0.011857389 -0.075965285 0.97346997 0.01222844 -0.22848789 0.96697599 0.084004998\n\t\t -0.24062528 0.9933387 0.081112601 -0.081847675 0.97346997 0.01222844 -0.22848789\n\t\t 0.88921797 0.010884919 -0.45735416 0.87979084 0.082147762 -0.46820909 0.96697599\n\t\t 0.084004998 -0.24062528 0.88921797 0.010884919 -0.45735416 0.70700091 0.0096211974\n\t\t -0.70714724 0.70542097 0.07996624 -0.70426309 0.87979084 0.082147762 -0.46820909\n\t\t 0.99703491 0.075991467 -0.012111045 0.9933387 0.081112601 -0.081847675 0.96684998\n\t\t 0.2407773 -0.085013941 0.97350782 0.22830178 -0.01268473 0.9933387 0.081112601 -0.081847675\n\t\t 0.96697599 0.084004998 -0.24062528 0.93764794 0.24550787 -0.24605319 0.96684998 0.2407773\n\t\t -0.085013941 0.96697599 0.084004998 -0.24062528 0.87979084 0.082147762 -0.46820909\n\t\t 0.85190439 0.23937882 -0.46578601 0.93764794 0.24550787 -0.24605319 0.87979084 0.082147762\n\t\t -0.46820909 0.70542097 0.07996624 -0.70426309 0.68784058 0.23346262 -0.68729222 0.85190439\n\t\t 0.23937882 -0.46578601 0.97350782 0.22830178 -0.01268473 0.96684998 0.2407773 -0.085013941\n\t\t 0.87905931 0.46946979 -0.082780965 0.88934875 0.45709404 -0.011131198 0.96684998\n\t\t 0.2407773 -0.085013941 0.93764794 0.24550787 -0.24605319 0.85159135 0.46605387 -0.23997076\n\t\t 0.87905931 0.46946979 -0.082780965 0.93764794 0.24550787 -0.24605319 0.85190439 0.23937882\n\t\t -0.46578601 0.7836076 0.43919837 -0.43939042 0.85159135 0.46605387 -0.23997076 0.85190439\n\t\t 0.23937882 -0.46578601 0.68784058 0.23346262 -0.68729222 0.64237148 0.41809109 -0.64230734\n\t\t 0.7836076 0.43919837 -0.43939042 0.88934875 0.45709404 -0.011131198 0.87905931 0.46946979\n\t\t -0.082780965 0.70426196 0.70542216 -0.079967141 0.70714003 0.70700812 -0.0096216016\n\t\t 0.87905931 0.46946979 -0.082780965 0.85159135 0.46605387 -0.23997076 0.68729103 0.68783891\n\t\t -0.23347087 0.70426196 0.70542216 -0.079967141 0.85159135 0.46605387 -0.23997076\n\t\t 0.7836076 0.43919837 -0.43939042 0.6423111 0.64236546 -0.41809458 0.68729103 0.68783891\n\t\t -0.23347087 0.7836076 0.43919837 -0.43939042 0.64237148 0.41809109 -0.64230734 0.57735682\n\t\t 0.57735384 -0.5773403 0.6423111 0.64236546 -0.41809458 0.99978542 0.014657465 0.014637331\n\t\t 0.99704003 0.075964622 0.011856188 0.99333853 0.081848681 0.081112809 0.99703515\n\t\t 0.012106663 0.075989313 0.99704003 0.075964622 0.011856188 0.97346967 0.22848918\n\t\t 0.01222807 0.96697593 0.24062619 0.08400362 0.99333853 0.081848681 0.081112809 0.97346967\n\t\t 0.22848918 0.01222807 0.88921881 0.45735258 0.010886529 0.87979096 0.46820915 0.08214695\n\t\t 0.96697593 0.24062619 0.08400362 0.88921881 0.45735258 0.010886529 0.70699453 0.7071535\n\t\t 0.0096216965 0.70542449 0.7042594 0.079967953 0.87979096 0.46820915 0.08214695 0.99703515\n\t\t 0.012106663 0.075989313 0.99333853 0.081848681 0.081112809 0.96684915 0.085013449\n\t\t 0.24078035 0.97350812 0.01268338 0.22830057 0.99333853 0.081848681 0.081112809 0.96697593\n\t\t 0.24062619 0.08400362 0.93764669 0.24605347 0.24551226 0.96684915 0.085013449 0.24078035\n\t\t 0.96697593 0.24062619 0.08400362 0.87979096 0.46820915 0.08214695 0.85189688 0.46579713\n\t\t 0.23938397 0.93764669 0.24605347 0.24551226 0.87979096 0.46820915 0.08214695 0.70542449\n\t\t 0.7042594 0.079967953 0.68783504 0.68729508 0.2334705 0.85189688 0.46579713 0.23938397\n\t\t 0.97350812 0.01268338 0.22830057 0.96684915 0.085013449 0.24078035 0.87905806 0.082781836\n\t\t 0.46947214 0.88934773 0.011134176 0.45709583 0.96684915 0.085013449 0.24078035 0.93764669\n\t\t 0.24605347 0.24551226 0.85159242 0.2399658 0.46605432 0.87905806 0.082781836 0.46947214\n\t\t 0.93764669 0.24605347 0.24551226 0.85189688 0.46579713 0.23938397;\n\tsetAttr \".n[9794:9959]\" -type \"float3\"  0.78360653 0.43939233 0.43919832 0.85159242\n\t\t 0.2399658 0.46605432 0.85189688 0.46579713 0.23938397 0.68783504 0.68729508 0.2334705\n\t\t 0.64235133 0.64232367 0.41809696 0.78360653 0.43939233 0.43919832 0.88934773 0.011134176\n\t\t 0.45709583 0.87905806 0.082781836 0.46947214 0.7042526 0.079968572 0.70543122 0.70714235\n\t\t 0.0096243545 0.70700562 0.87905806 0.082781836 0.46947214 0.85159242 0.2399658 0.46605432\n\t\t 0.68729156 0.23346214 0.6878413 0.7042526 0.079968572 0.70543122 0.85159242 0.2399658\n\t\t 0.46605432 0.78360653 0.43939233 0.43919832 0.64232111 0.41808915 0.64235896 0.68729156\n\t\t 0.23346214 0.6878413 0.78360653 0.43939233 0.43919832 0.64235133 0.64232367 0.41809696\n\t\t 0.57734281 0.57735598 0.57735199 0.64232111 0.41808915 0.64235896 0.014639902 0.9997853\n\t\t 0.014662149 0.011864801 0.99703956 0.07596907 0.081114613 0.99333775 0.081855476\n\t\t 0.075996928 0.99703437 0.012114774 0.011864801 0.99703956 0.07596907 0.012219199\n\t\t 0.97346914 0.22849168 0.083988786 0.96697772 0.24062406 0.081114613 0.99333775 0.081855476\n\t\t 0.012219199 0.97346914 0.22849168 0.010875971 0.8892206 0.45734939 0.082141466 0.87979746\n\t\t 0.46819779 0.083988786 0.96697772 0.24062406 0.010875971 0.8892206 0.45734939 0.0096223988\n\t\t 0.70700872 0.70713925 0.0799817 0.70542431 0.70425808 0.082141466 0.87979746 0.46819779\n\t\t 0.075996928 0.99703437 0.012114774 0.081114613 0.99333775 0.081855476 0.24077943\n\t\t 0.96684915 0.085017391 0.22830494 0.97350705 0.012685958 0.081114613 0.99333775 0.081855476\n\t\t 0.083988786 0.96697772 0.24062406 0.24551372 0.93764687 0.24605188 0.24077943 0.96684915\n\t\t 0.085017391 0.083988786 0.96697772 0.24062406 0.082141466 0.87979746 0.46819779 0.23938876\n\t\t 0.85190576 0.46577844 0.24551372 0.93764687 0.24605188 0.082141466 0.87979746 0.46819779\n\t\t 0.0799817 0.70542431 0.70425808 0.23348282 0.68783665 0.68728936 0.23938876 0.85190576\n\t\t 0.46577844 0.22830494 0.97350705 0.012685958 0.24077943 0.96684915 0.085017391 0.46947858\n\t\t 0.87905467 0.082782201 0.45708314 0.88935429 0.011131917 0.24077943 0.96684915 0.085017391\n\t\t 0.24551372 0.93764687 0.24605188 0.46606672 0.85158545 0.23996654 0.46947858 0.87905467\n\t\t 0.082782201 0.24551372 0.93764687 0.24605188 0.23938876 0.85190576 0.46577844 0.43919197\n\t\t 0.78361315 0.43938667 0.46606672 0.85158545 0.23996654 0.23938876 0.85190576 0.46577844\n\t\t 0.23348282 0.68783665 0.68728936 0.41808525 0.64236838 0.6423142 0.43919197 0.78361315\n\t\t 0.43938667 0.45708314 0.88935429 0.011131917 0.46947858 0.87905467 0.082782201 0.70542449\n\t\t 0.7042594 0.079967953 0.70699453 0.7071535 0.0096216965 0.46947858 0.87905467 0.082782201\n\t\t 0.46606672 0.85158545 0.23996654 0.68783504 0.68729508 0.2334705 0.70542449 0.7042594\n\t\t 0.079967953 0.46606672 0.85158545 0.23996654 0.43919197 0.78361315 0.43938667 0.64235133\n\t\t 0.64232367 0.41809696 0.68783504 0.68729508 0.2334705 0.43919197 0.78361315 0.43938667\n\t\t 0.41808525 0.64236838 0.6423142 0.57734281 0.57735598 0.57735199 0.64235133 0.64232367\n\t\t 0.41809696 0.014658894 0.014639831 0.9997853 0.075962678 0.011858035 0.99704009 0.081845246\n\t\t 0.081114367 0.99333876 0.012108573 0.07599546 0.99703467 0.075962678 0.011858035\n\t\t 0.99704009 0.2284912 0.012226776 0.9734692 0.24062741 0.084003605 0.96697557 0.081845246\n\t\t 0.081114367 0.99333876 0.2284912 0.012226776 0.9734692 0.45735693 0.010886897 0.8892166\n\t\t 0.46820223 0.08215107 0.87979418 0.24062741 0.084003605 0.96697557 0.45735693 0.010886897\n\t\t 0.8892166 0.70714235 0.0096243545 0.70700562 0.7042526 0.079968572 0.70543122 0.46820223\n\t\t 0.08215107 0.87979418 0.012108573 0.07599546 0.99703467 0.081845246 0.081114367 0.99333876\n\t\t 0.085011542 0.24077901 0.96684974 0.012684907 0.22830126 0.97350794 0.081845246 0.081114367\n\t\t 0.99333876 0.24062741 0.084003605 0.96697557 0.24605338 0.24551281 0.93764651 0.085011542\n\t\t 0.24077901 0.96684974 0.24062741 0.084003605 0.96697557 0.46820223 0.08215107 0.87979418\n\t\t 0.46578705 0.2393806 0.85190338 0.24605338 0.24551281 0.93764651 0.46820223 0.08215107\n\t\t 0.87979418 0.7042526 0.079968572 0.70543122 0.68729156 0.23346214 0.6878413 0.46578705\n\t\t 0.2393806 0.85190338 0.012684907 0.22830126 0.97350794 0.085011542 0.24077901 0.96684974\n\t\t 0.082788363 0.46946612 0.87906075 0.011135655 0.4570919 0.8893497 0.085011542 0.24077901\n\t\t 0.96684974 0.24605338 0.24551281 0.93764651 0.23997168 0.46604994 0.8515932 0.082788363\n\t\t 0.46946612 0.87906075 0.24605338 0.24551281 0.93764651 0.46578705 0.2393806 0.85190338\n\t\t 0.43939373 0.43919444 0.78360784 0.23997168 0.46604994 0.8515932 0.46578705 0.2393806\n\t\t 0.85190338 0.68729156 0.23346214 0.6878413 0.64232111 0.41808915 0.64235896 0.43939373\n\t\t 0.43919444 0.78360784 0.011135655 0.4570919 0.8893497 0.082788363 0.46946612 0.87906075\n\t\t 0.0799817 0.70542431 0.70425808 0.0096223988 0.70700872 0.70713925 0.082788363 0.46946612\n\t\t 0.87906075 0.23997168 0.46604994 0.8515932 0.23348282 0.68783665 0.68728936 0.0799817\n\t\t 0.70542431 0.70425808 0.23997168 0.46604994 0.8515932 0.43939373 0.43919444 0.78360784\n\t\t 0.41808525 0.64236838 0.6423142 0.23348282 0.68783665 0.68728936 0.43939373 0.43919444\n\t\t 0.78360784 0.64232111 0.41808915 0.64235896 0.57734281 0.57735598 0.57735199 0.41808525\n\t\t 0.64236838 0.6423142 0.014661819 -0.014629207 -0.99978542 0.075990915 -0.011857192\n\t\t -0.99703801 0.081845835 -0.081112169 -0.99333882 0.012106671 -0.075959198 -0.99703753\n\t\t 0.075990915 -0.011857192 -0.99703801 0.22855793 -0.012232887 -0.9734534 0.24063006\n\t\t -0.084007204 -0.96697474 0.081845835 -0.081112169 -0.99333882 0.22855793 -0.012232887\n\t\t -0.9734534 0.45744145 -0.010889402 -0.88917309 0.46820641 -0.082149886 -0.87979215\n\t\t 0.24063006 -0.084007204 -0.96697474 0.45744145 -0.010889402 -0.88917309 0.70721906\n\t\t -0.009622517 -0.70692897 0.70425892 -0.079967998 -0.70542502 0.46820641 -0.082149886\n\t\t -0.87979215;\n\tsetAttr \".n[9960:10125]\" -type \"float3\"  0.012106671 -0.075959198 -0.99703753\n\t\t 0.081845835 -0.081112169 -0.99333882 0.085013501 -0.24077667 -0.9668501 0.012683567\n\t\t -0.22823218 -0.97352415 0.081845835 -0.081112169 -0.99333882 0.24063006 -0.084007204\n\t\t -0.96697474 0.24605529 -0.24550931 -0.93764699 0.085013501 -0.24077667 -0.9668501\n\t\t 0.24063006 -0.084007204 -0.96697474 0.46820641 -0.082149886 -0.87979215 0.46578699\n\t\t -0.2393792 -0.85190368 0.24605529 -0.24550931 -0.93764699 0.46820641 -0.082149886\n\t\t -0.87979215 0.70425892 -0.079967998 -0.70542502 0.68729132 -0.23346409 -0.68784094\n\t\t 0.46578699 -0.2393792 -0.85190368 0.012683567 -0.22823218 -0.97352415 0.085013501\n\t\t -0.24077667 -0.9668501 0.082782142 -0.46946692 -0.87906086 0.011133808 -0.4570058\n\t\t -0.88939404 0.085013501 -0.24077667 -0.9668501 0.24605529 -0.24550931 -0.93764699\n\t\t 0.23996529 -0.46605393 -0.8515929 0.082782142 -0.46946692 -0.87906086 0.24605529\n\t\t -0.24550931 -0.93764699 0.46578699 -0.2393792 -0.85190368 0.43938828 -0.43919772\n\t\t -0.78360915 0.23996529 -0.46605393 -0.8515929 0.46578699 -0.2393792 -0.85190368 0.68729132\n\t\t -0.23346409 -0.68784094 0.64231354 -0.41809031 -0.64236569 0.43938828 -0.43919772\n\t\t -0.78360915 0.011133808 -0.4570058 -0.88939404 0.082782142 -0.46946692 -0.87906086\n\t\t 0.079967879 -0.7054252 -0.70425874 0.0096224472 -0.70692891 -0.70721912 0.082782142\n\t\t -0.46946692 -0.87906086 0.23996529 -0.46605393 -0.8515929 0.23346397 -0.68784112\n\t\t -0.68729115 0.079967879 -0.7054252 -0.70425874 0.23996529 -0.46605393 -0.8515929\n\t\t 0.43938828 -0.43919772 -0.78360915 0.41809019 -0.64236593 -0.64231348 0.23346397\n\t\t -0.68784112 -0.68729115 0.43938828 -0.43919772 -0.78360915 0.64231354 -0.41809031\n\t\t -0.64236569 0.57735026 -0.57735038 -0.57735014 0.41809019 -0.64236593 -0.64231348\n\t\t 0.99978548 -0.014661863 -0.01462891 0.99703795 -0.075991102 -0.01185719 0.99333882\n\t\t -0.08184585 -0.08111199 0.99703741 -0.012106816 -0.07595925 0.99703795 -0.075991102\n\t\t -0.01185719 0.97345328 -0.22855882 -0.01223275 0.96697474 -0.24063008 -0.08400701\n\t\t 0.99333882 -0.08184585 -0.08111199 0.97345328 -0.22855882 -0.01223275 0.88917279\n\t\t -0.45744208 -0.01088919 0.87979215 -0.46820641 -0.08214967 0.96697474 -0.24063008\n\t\t -0.08400701 0.88917279 -0.45744208 -0.01088919 0.70692843 -0.70721966 -0.0096223075\n\t\t 0.70542502 -0.70425892 -0.079967774 0.87979215 -0.46820641 -0.08214967 0.99703741\n\t\t -0.012106816 -0.07595925 0.99333882 -0.08184585 -0.08111199 0.96685016 -0.085013539\n\t\t -0.24077649 0.97352391 -0.012683666 -0.22823313 0.99333882 -0.08184585 -0.08111199\n\t\t 0.96697474 -0.24063008 -0.08400701 0.93764704 -0.24605533 -0.24550912 0.96685016\n\t\t -0.085013539 -0.24077649 0.96697474 -0.24063008 -0.08400701 0.87979215 -0.46820641\n\t\t -0.08214967 0.85190374 -0.46578702 -0.23937899 0.93764704 -0.24605533 -0.24550912\n\t\t 0.87979215 -0.46820641 -0.08214967 0.70542502 -0.70425892 -0.079967774 0.687841 -0.68729138\n\t\t -0.23346385 0.85190374 -0.46578702 -0.23937899 0.97352391 -0.012683666 -0.22823313\n\t\t 0.96685016 -0.085013539 -0.24077649 0.87906092 -0.082782216 -0.46946675 0.88939428\n\t\t -0.011133877 -0.4570052 0.96685016 -0.085013539 -0.24077649 0.93764704 -0.24605533\n\t\t -0.24550912 0.85159296 -0.23996536 -0.46605375 0.87906092 -0.082782216 -0.46946675\n\t\t 0.93764704 -0.24605533 -0.24550912 0.85190374 -0.46578702 -0.23937899 0.78360921\n\t\t -0.43938833 -0.43919754 0.85159296 -0.23996536 -0.46605375 0.85190374 -0.46578702\n\t\t -0.23937899 0.687841 -0.68729138 -0.23346385 0.64236581 -0.64231366 -0.41809013 0.78360921\n\t\t -0.43938833 -0.43919754 0.88939428 -0.011133877 -0.4570052 0.87906092 -0.082782216\n\t\t -0.46946675 0.70425892 -0.079967998 -0.70542502 0.70721906 -0.009622517 -0.70692897\n\t\t 0.87906092 -0.082782216 -0.46946675 0.85159296 -0.23996536 -0.46605375 0.68729132\n\t\t -0.23346409 -0.68784094 0.70425892 -0.079967998 -0.70542502 0.85159296 -0.23996536\n\t\t -0.46605375 0.78360921 -0.43938833 -0.43919754 0.64231354 -0.41809031 -0.64236569\n\t\t 0.68729132 -0.23346409 -0.68784094 0.78360921 -0.43938833 -0.43919754 0.64236581\n\t\t -0.64231366 -0.41809013 0.57735026 -0.57735038 -0.57735014 0.64231354 -0.41809031\n\t\t -0.64236569 0.014629244 -0.99978548 -0.014661668 0.011857132 -0.99703801 -0.07599058\n\t\t 0.081112005 -0.99333882 -0.081845671 0.07596042 -0.99703735 -0.012106505 0.011857132\n\t\t -0.99703801 -0.07599058 0.012232719 -0.9734534 -0.22855818 0.084007047 -0.96697479\n\t\t -0.2406299 0.081112005 -0.99333882 -0.081845671 0.012232719 -0.9734534 -0.22855818\n\t\t 0.01088927 -0.88917232 -0.45744273 0.082149744 -0.87979221 -0.46820626 0.084007047\n\t\t -0.96697479 -0.2406299 0.01088927 -0.88917232 -0.45744273 0.0096224472 -0.70692891\n\t\t -0.70721912 0.079967879 -0.7054252 -0.70425874 0.082149744 -0.87979221 -0.46820626\n\t\t 0.07596042 -0.99703735 -0.012106505 0.081112005 -0.99333882 -0.081845671 0.24077651\n\t\t -0.96685016 -0.085013345 0.22823422 -0.97352368 -0.012683401 0.081112005 -0.99333882\n\t\t -0.081845671 0.084007047 -0.96697479 -0.2406299 0.24550918 -0.93764716 -0.24605516\n\t\t 0.24077651 -0.96685016 -0.085013345 0.084007047 -0.96697479 -0.2406299 0.082149744\n\t\t -0.87979221 -0.46820626 0.23937906 -0.8519038 -0.46578684 0.24550918 -0.93764716\n\t\t -0.24605516 0.082149744 -0.87979221 -0.46820626 0.079967879 -0.7054252 -0.70425874\n\t\t 0.23346397 -0.68784112 -0.68729115 0.23937906 -0.8519038 -0.46578684 0.22823422 -0.97352368\n\t\t -0.012683401 0.24077651 -0.96685016 -0.085013345 0.46946675 -0.87906092 -0.082782\n\t\t 0.45700496 -0.88939446 -0.011133647 0.24077651 -0.96685016 -0.085013345 0.24550918\n\t\t -0.93764716 -0.24605516 0.46605378 -0.85159302 -0.23996516 0.46946675 -0.87906092\n\t\t -0.082782 0.24550918 -0.93764716 -0.24605516 0.23937906 -0.8519038 -0.46578684 0.4391976\n\t\t -0.78360927 -0.43938816 0.46605378 -0.85159302 -0.23996516 0.23937906 -0.8519038\n\t\t -0.46578684 0.23346397 -0.68784112 -0.68729115 0.41809019 -0.64236593 -0.64231348\n\t\t 0.4391976 -0.78360927 -0.43938816 0.45700496 -0.88939446 -0.011133647 0.46946675\n\t\t -0.87906092 -0.082782 0.70542502 -0.70425892 -0.079967774 0.70692843 -0.70721966\n\t\t -0.0096223075 0.46946675 -0.87906092 -0.082782 0.46605378 -0.85159302 -0.23996516;\n\tsetAttr \".n[10126:10291]\" -type \"float3\"  0.687841 -0.68729138 -0.23346385 0.70542502\n\t\t -0.70425892 -0.079967774 0.46605378 -0.85159302 -0.23996516 0.4391976 -0.78360927\n\t\t -0.43938816 0.64236581 -0.64231366 -0.41809013 0.687841 -0.68729138 -0.23346385 0.4391976\n\t\t -0.78360927 -0.43938816 0.41809019 -0.64236593 -0.64231348 0.57735026 -0.57735038\n\t\t -0.57735014 0.64236581 -0.64231366 -0.41809013 0.99978548 0.014661863 0.01462891\n\t\t 0.99703795 0.075991102 0.01185719 0.99333882 0.08184585 0.08111199 0.99703741 0.012106817\n\t\t 0.07595925 0.99703795 0.075991102 0.01185719 0.97345328 0.22855882 0.01223275 0.96697474\n\t\t 0.24063008 0.08400701 0.99333882 0.08184585 0.08111199 0.97345328 0.22855882 0.01223275\n\t\t 0.88917279 0.45744208 0.01088919 0.87979215 0.46820641 0.08214967 0.96697474 0.24063008\n\t\t 0.08400701 0.88917279 0.45744208 0.01088919 0.70692843 0.70721966 0.0096223075 0.70542502\n\t\t 0.70425892 0.079967774 0.87979215 0.46820641 0.08214967 0.99703741 0.012106817 0.07595925\n\t\t 0.99333882 0.08184585 0.08111199 0.96685016 0.085013539 0.24077649 0.97352391 0.012683671\n\t\t 0.22823313 0.99333882 0.08184585 0.08111199 0.96697474 0.24063008 0.08400701 0.93764704\n\t\t 0.24605533 0.24550912 0.96685016 0.085013539 0.24077649 0.96697474 0.24063008 0.08400701\n\t\t 0.87979215 0.46820641 0.08214967 0.85190374 0.46578702 0.23937899 0.93764704 0.24605533\n\t\t 0.24550912 0.87979215 0.46820641 0.08214967 0.70542502 0.70425892 0.079967774 0.687841\n\t\t 0.68729138 0.23346385 0.85190374 0.46578702 0.23937899 0.97352391 0.012683671 0.22823313\n\t\t 0.96685016 0.085013539 0.24077649 0.87906092 0.082782216 0.46946675 0.88939428 0.011133884\n\t\t 0.4570052 0.96685016 0.085013539 0.24077649 0.93764704 0.24605533 0.24550912 0.85159296\n\t\t 0.23996536 0.46605375 0.87906092 0.082782216 0.46946675 0.93764704 0.24605533 0.24550912\n\t\t 0.85190374 0.46578702 0.23937899 0.78360921 0.43938833 0.43919754 0.85159296 0.23996536\n\t\t 0.46605375 0.85190374 0.46578702 0.23937899 0.687841 0.68729138 0.23346385 0.64236581\n\t\t 0.64231366 0.41809013 0.78360921 0.43938833 0.43919754 0.88939428 0.011133884 0.4570052\n\t\t 0.87906092 0.082782216 0.46946675 0.70425892 0.079967998 0.70542502 0.70721912 0.0096225319\n\t\t 0.70692897 0.87906092 0.082782216 0.46946675 0.85159296 0.23996536 0.46605375 0.68729126\n\t\t 0.23346409 0.68784094 0.70425892 0.079967998 0.70542502 0.85159296 0.23996536 0.46605375\n\t\t 0.78360921 0.43938833 0.43919754 0.6423136 0.41809031 0.64236575 0.68729126 0.23346409\n\t\t 0.68784094 0.78360921 0.43938833 0.43919754 0.64236581 0.64231366 0.41809013 0.57735026\n\t\t 0.57735038 0.57735014 0.6423136 0.41809031 0.64236575 0.014629244 0.99978548 0.014661668\n\t\t 0.011857132 0.99703801 0.07599058 0.081112005 0.99333882 0.081845671 0.07596042 0.99703735\n\t\t 0.012106505 0.011857132 0.99703801 0.07599058 0.012232719 0.9734534 0.22855818 0.084007047\n\t\t 0.96697479 0.2406299 0.081112005 0.99333882 0.081845671 0.012232719 0.9734534 0.22855818\n\t\t 0.01088927 0.88917232 0.45744273 0.082149744 0.87979221 0.46820626 0.084007047 0.96697479\n\t\t 0.2406299 0.01088927 0.88917232 0.45744273 0.0096224481 0.70692891 0.70721912 0.079967871\n\t\t 0.70542514 0.70425874 0.082149744 0.87979221 0.46820626 0.07596042 0.99703735 0.012106505\n\t\t 0.081112005 0.99333882 0.081845671 0.24077651 0.96685016 0.085013345 0.22823422 0.97352368\n\t\t 0.012683401 0.081112005 0.99333882 0.081845671 0.084007047 0.96697479 0.2406299 0.24550918\n\t\t 0.93764716 0.24605516 0.24077651 0.96685016 0.085013345 0.084007047 0.96697479 0.2406299\n\t\t 0.082149744 0.87979221 0.46820626 0.23937906 0.8519038 0.46578684 0.24550918 0.93764716\n\t\t 0.24605516 0.082149744 0.87979221 0.46820626 0.079967871 0.70542514 0.70425874 0.23346397\n\t\t 0.68784112 0.6872912 0.23937906 0.8519038 0.46578684 0.22823422 0.97352368 0.012683401\n\t\t 0.24077651 0.96685016 0.085013345 0.46946675 0.87906092 0.082782 0.45700496 0.88939446\n\t\t 0.011133647 0.24077651 0.96685016 0.085013345 0.24550918 0.93764716 0.24605516 0.46605378\n\t\t 0.85159302 0.23996516 0.46946675 0.87906092 0.082782 0.24550918 0.93764716 0.24605516\n\t\t 0.23937906 0.8519038 0.46578684 0.4391976 0.78360927 0.43938816 0.46605378 0.85159302\n\t\t 0.23996516 0.23937906 0.8519038 0.46578684 0.23346397 0.68784112 0.6872912 0.41809019\n\t\t 0.64236587 0.64231342 0.4391976 0.78360927 0.43938816 0.45700496 0.88939446 0.011133647\n\t\t 0.46946675 0.87906092 0.082782 0.70542502 0.70425892 0.079967774 0.70692843 0.70721966\n\t\t 0.0096223075 0.46946675 0.87906092 0.082782 0.46605378 0.85159302 0.23996516 0.687841\n\t\t 0.68729138 0.23346385 0.70542502 0.70425892 0.079967774 0.46605378 0.85159302 0.23996516\n\t\t 0.4391976 0.78360927 0.43938816 0.64236581 0.64231366 0.41809013 0.687841 0.68729138\n\t\t 0.23346385 0.4391976 0.78360927 0.43938816 0.41809019 0.64236587 0.64231342 0.57735026\n\t\t 0.57735038 0.57735014 0.64236581 0.64231366 0.41809013 0.014661819 0.014629194 0.99978542\n\t\t 0.075990915 0.011857159 0.99703801 0.081845835 0.081112169 0.99333882 0.012106671\n\t\t 0.075959198 0.99703753 0.075990915 0.011857159 0.99703801 0.22855793 0.012232855\n\t\t 0.9734534 0.24063006 0.084007204 0.96697474 0.081845835 0.081112169 0.99333882 0.22855793\n\t\t 0.012232855 0.9734534 0.45744145 0.010889404 0.88917309 0.46820641 0.082149886 0.87979215\n\t\t 0.24063006 0.084007204 0.96697474 0.45744145 0.010889404 0.88917309 0.70721912 0.0096225319\n\t\t 0.70692897 0.70425892 0.079967998 0.70542502 0.46820641 0.082149886 0.87979215 0.012106671\n\t\t 0.075959198 0.99703753 0.081845835 0.081112169 0.99333882 0.085013501 0.24077667\n\t\t 0.9668501 0.012683567 0.22823218 0.97352415 0.081845835 0.081112169 0.99333882 0.24063006\n\t\t 0.084007204 0.96697474 0.24605529 0.24550931 0.93764699 0.085013501 0.24077667 0.9668501\n\t\t 0.24063006 0.084007204 0.96697474 0.46820641 0.082149886 0.87979215 0.46578699 0.2393792\n\t\t 0.85190368 0.24605529 0.24550931 0.93764699;\n\tsetAttr \".n[10292:10457]\" -type \"float3\"  0.46820641 0.082149886 0.87979215 0.70425892\n\t\t 0.079967998 0.70542502 0.68729126 0.23346409 0.68784094 0.46578699 0.2393792 0.85190368\n\t\t 0.012683567 0.22823218 0.97352415 0.085013501 0.24077667 0.9668501 0.082782142 0.46946692\n\t\t 0.87906086 0.011133808 0.4570058 0.88939404 0.085013501 0.24077667 0.9668501 0.24605529\n\t\t 0.24550931 0.93764699 0.23996529 0.46605393 0.8515929 0.082782142 0.46946692 0.87906086\n\t\t 0.24605529 0.24550931 0.93764699 0.46578699 0.2393792 0.85190368 0.43938828 0.43919772\n\t\t 0.78360915 0.23996529 0.46605393 0.8515929 0.46578699 0.2393792 0.85190368 0.68729126\n\t\t 0.23346409 0.68784094 0.6423136 0.41809031 0.64236575 0.43938828 0.43919772 0.78360915\n\t\t 0.011133808 0.4570058 0.88939404 0.082782142 0.46946692 0.87906086 0.079967871 0.70542514\n\t\t 0.70425874 0.0096224481 0.70692891 0.70721912 0.082782142 0.46946692 0.87906086 0.23996529\n\t\t 0.46605393 0.8515929 0.23346397 0.68784112 0.6872912 0.079967871 0.70542514 0.70425874\n\t\t 0.23996529 0.46605393 0.8515929 0.43938828 0.43919772 0.78360915 0.41809019 0.64236587\n\t\t 0.64231342 0.23346397 0.68784112 0.6872912 0.43938828 0.43919772 0.78360915 0.6423136\n\t\t 0.41809031 0.64236575 0.57735026 0.57735038 0.57735014 0.41809019 0.64236587 0.64231342\n\t\t 0.99978542 -0.0146308 0.01466401 0.99703807 -0.011855901 0.07599061 0.99333894 -0.081112981\n\t\t 0.081844807 0.99703735 -0.075961471 0.01210477 0.99703807 -0.011855901 0.07599061\n\t\t 0.97345376 -0.012228359 0.22855692 0.96697474 -0.084004618 0.2406304 0.99333894 -0.081112981\n\t\t 0.081844807 0.97345376 -0.012228359 0.22855692 0.88917249 -0.010885024 0.45744297\n\t\t 0.87979364 -0.082146831 0.46820402 0.96697474 -0.084004618 0.2406304 0.88917249 -0.010885024\n\t\t 0.45744297 0.70692766 -0.0096211052 0.70722032 0.70542747 -0.079966903 0.70425665\n\t\t 0.87979364 -0.082146831 0.46820402 0.99703735 -0.075961471 0.01210477 0.99333894\n\t\t -0.081112981 0.081844807 0.96684992 -0.24077858 0.085011989 0.97352362 -0.22823437\n\t\t 0.012682826 0.99333894 -0.081112981 0.081844807 0.96697474 -0.084004618 0.2406304\n\t\t 0.9376483 -0.24550878 0.24605094 0.96684992 -0.24077858 0.085011989 0.96697474 -0.084004618\n\t\t 0.2406304 0.87979364 -0.082146831 0.46820402 0.85190547 -0.23937789 0.46578452 0.9376483\n\t\t -0.24550878 0.24605094 0.87979364 -0.082146831 0.46820402 0.70542747 -0.079966903\n\t\t 0.70425665 0.68784302 -0.23346479 0.68728906 0.85190547 -0.23937789 0.46578452 0.97352362\n\t\t -0.22823437 0.012682826 0.96684992 -0.24077858 0.085011989 0.87906051 -0.46946779\n\t\t 0.082781687 0.8893947 -0.45700443 0.011135786 0.96684992 -0.24077858 0.085011989\n\t\t 0.9376483 -0.24550878 0.24605094 0.85159349 -0.46605468 0.23996125 0.87906051 -0.46946779\n\t\t 0.082781687 0.9376483 -0.24550878 0.24605094 0.85190547 -0.23937789 0.46578452 0.78361177\n\t\t -0.43919489 0.43938643 0.85159349 -0.46605468 0.23996125 0.85190547 -0.23937789 0.46578452\n\t\t 0.68784302 -0.23346479 0.68728906 0.64236617 -0.41808769 0.64231485 0.78361177 -0.43919489\n\t\t 0.43938643 0.8893947 -0.45700443 0.011135786 0.87906051 -0.46946779 0.082781687 0.70425665\n\t\t -0.70542747 0.079967126 0.70722157 -0.70692652 0.009621324 0.87906051 -0.46946779\n\t\t 0.082781687 0.85159349 -0.46605468 0.23996125 0.687289 -0.68784297 0.23346506 0.70425665\n\t\t -0.70542747 0.079967126 0.85159349 -0.46605468 0.23996125 0.78361177 -0.43919489\n\t\t 0.43938643 0.64231485 -0.64236611 0.41808796 0.687289 -0.68784297 0.23346506 0.78361177\n\t\t -0.43919489 0.43938643 0.64236617 -0.41808769 0.64231485 0.57735032 -0.5773502 0.57735044\n\t\t 0.64231485 -0.64236611 0.41808796 0.014630898 -0.014662385 0.99978542 0.011856051\n\t\t -0.075990498 0.99703801 0.081112996 -0.081844628 0.99333894 0.075961389 -0.012104767\n\t\t 0.99703729 0.011856051 -0.075990498 0.99703801 0.012228469 -0.22855826 0.9734534\n\t\t 0.084004655 -0.24063022 0.96697479 0.081112996 -0.081844628 0.99333894 0.012228469\n\t\t -0.22855826 0.9734534 0.010885138 -0.45744246 0.88917261 0.082146905 -0.46820387\n\t\t 0.8797937 0.084004655 -0.24063022 0.96697479 0.010885138 -0.45744246 0.88917261 0.0096212523\n\t\t -0.70722085 0.7069273 0.079967014 -0.70425653 0.70542759 0.082146905 -0.46820387\n\t\t 0.8797937 0.075961389 -0.012104767 0.99703729 0.081112996 -0.081844628 0.99333894\n\t\t 0.2407786 -0.085011795 0.96684992 0.22823457 -0.012682754 0.97352362 0.081112996\n\t\t -0.081844628 0.99333894 0.084004655 -0.24063022 0.96697479 0.2455088 -0.24605072\n\t\t 0.93764836 0.2407786 -0.085011795 0.96684992 0.084004655 -0.24063022 0.96697479 0.082146905\n\t\t -0.46820387 0.8797937 0.23937796 -0.46578434 0.85190552 0.2455088 -0.24605072 0.93764836\n\t\t 0.082146905 -0.46820387 0.8797937 0.079967014 -0.70425653 0.70542759 0.23346491 -0.68728888\n\t\t 0.68784314 0.23937796 -0.46578434 0.85190552 0.22823457 -0.012682754 0.97352362 0.2407786\n\t\t -0.085011795 0.96684992 0.4694677 -0.082781456 0.87906045 0.45700485 -0.011135617\n\t\t 0.88939446 0.2407786 -0.085011795 0.96684992 0.2455088 -0.24605072 0.93764836 0.46605471\n\t\t -0.23996104 0.85159355 0.4694677 -0.082781456 0.87906045 0.2455088 -0.24605072 0.93764836\n\t\t 0.23937796 -0.46578434 0.85190552 0.43919495 -0.43938625 0.78361183 0.46605471 -0.23996104\n\t\t 0.85159355 0.23937796 -0.46578434 0.85190552 0.23346491 -0.68728888 0.68784314 0.41808781\n\t\t -0.64231467 0.64236629 0.43919495 -0.43938625 0.78361183 0.45700485 -0.011135617\n\t\t 0.88939446 0.4694677 -0.082781456 0.87906045 0.70542747 -0.079966903 0.70425665 0.70692766\n\t\t -0.0096211052 0.70722032 0.4694677 -0.082781456 0.87906045 0.46605471 -0.23996104\n\t\t 0.85159355 0.68784302 -0.23346479 0.68728906 0.70542747 -0.079966903 0.70425665 0.46605471\n\t\t -0.23996104 0.85159355 0.43919495 -0.43938625 0.78361183 0.64236617 -0.41808769 0.64231485\n\t\t 0.68784302 -0.23346479 0.68728906 0.43919495 -0.43938625 0.78361183 0.41808781 -0.64231467\n\t\t 0.64236629 0.57735032 -0.5773502 0.57735044 0.64236617 -0.41808769 0.64231485 0.014662663\n\t\t -0.99978542 0.014630999 0.07599207 -0.99703783 0.011856218;\n\tsetAttr \".n[10458:10623]\" -type \"float3\"  0.081844792 -0.99333894 0.08111316 0.012104825\n\t\t -0.99703729 0.075961687 0.07599207 -0.99703783 0.011856218 0.22855894 -0.97345328\n\t\t 0.012228627 0.24063039 -0.96697474 0.084004812 0.081844792 -0.99333894 0.08111316\n\t\t 0.22855894 -0.97345328 0.012228627 0.45744348 -0.88917202 0.010885263 0.46820402\n\t\t -0.87979364 0.082147047 0.24063039 -0.96697474 0.084004812 0.45744348 -0.88917202\n\t\t 0.010885263 0.70722157 -0.70692652 0.009621324 0.70425665 -0.70542747 0.079967126\n\t\t 0.46820402 -0.87979364 0.082147047 0.012104825 -0.99703729 0.075961687 0.081844792\n\t\t -0.99333894 0.08111316 0.085011959 -0.96684986 0.24077876 0.012682861 -0.97352362\n\t\t 0.22823425 0.081844792 -0.99333894 0.08111316 0.24063039 -0.96697474 0.084004812\n\t\t 0.24605086 -0.93764824 0.24550895 0.085011959 -0.96684986 0.24077876 0.24063039 -0.96697474\n\t\t 0.084004812 0.46820402 -0.87979364 0.082147047 0.46578449 -0.85190541 0.23937809\n\t\t 0.24605086 -0.93764824 0.24550895 0.46820402 -0.87979364 0.082147047 0.70425665 -0.70542747\n\t\t 0.079967126 0.687289 -0.68784297 0.23346506 0.46578449 -0.85190541 0.23937809 0.012682861\n\t\t -0.97352362 0.22823425 0.085011959 -0.96684986 0.24077876 0.082781605 -0.87906039\n\t\t 0.46946788 0.011135755 -0.88939524 0.45700338 0.085011959 -0.96684986 0.24077876\n\t\t 0.24605086 -0.93764824 0.24550895 0.23996118 -0.85159343 0.46605486 0.082781605 -0.87906039\n\t\t 0.46946788 0.24605086 -0.93764824 0.24550895 0.46578449 -0.85190541 0.23937809 0.43938637\n\t\t -0.78361171 0.43919507 0.23996118 -0.85159343 0.46605486 0.46578449 -0.85190541 0.23937809\n\t\t 0.687289 -0.68784297 0.23346506 0.64231485 -0.64236611 0.41808796 0.43938637 -0.78361171\n\t\t 0.43919507 0.011135755 -0.88939524 0.45700338 0.082781605 -0.87906039 0.46946788\n\t\t 0.079967014 -0.70425653 0.70542759 0.0096212523 -0.70722085 0.7069273 0.082781605\n\t\t -0.87906039 0.46946788 0.23996118 -0.85159343 0.46605486 0.23346491 -0.68728888 0.68784314\n\t\t 0.079967014 -0.70425653 0.70542759 0.23996118 -0.85159343 0.46605486 0.43938637 -0.78361171\n\t\t 0.43919507 0.41808781 -0.64231467 0.64236629 0.23346491 -0.68728888 0.68784314 0.43938637\n\t\t -0.78361171 0.43919507 0.64231485 -0.64236611 0.41808796 0.57735032 -0.5773502 0.57735044\n\t\t 0.41808781 -0.64231467 0.64236629 0.99987906 0.010978813 0.01101062 0.99871314 0.017910989\n\t\t 0.047449205 0.98665309 0.15992409 0.030659622 0.99874073 0.046686985 0.018364536\n\t\t 0.99871314 0.017910989 0.047449205 0.97551584 -0.042792056 0.21572572 0.98138022\n\t\t 0.10255971 0.16240208 0.98665309 0.15992409 0.030659622 0.97551584 -0.042792056 0.21572572\n\t\t 0.96814018 0.13533145 0.21068963 0.94681501 0.29991993 0.11657318 0.98138022 0.10255971\n\t\t 0.16240208 0.96814018 0.13533145 0.21068963 0.87306291 0.18791391 0.44994396 0.86460817\n\t\t 0.3682349 0.34184161 0.94681501 0.29991993 0.11657318 0.99874073 0.046686985 0.018364536\n\t\t 0.98665309 0.15992409 0.030659622 0.9765864 0.084798194 0.19770764 0.95059806 0.29172218\n\t\t -0.10612041 0.98665309 0.15992409 0.030659622 0.98138022 0.10255971 0.16240208 0.96433342\n\t\t 0.13603765 0.2270568 0.9765864 0.084798194 0.19770764 0.98138022 0.10255971 0.16240208\n\t\t 0.94681501 0.29991993 0.11657318 0.91956466 0.31521198 0.23461106 0.96433342 0.13603765\n\t\t 0.2270568 0.94681501 0.29991993 0.11657318 0.86460817 0.3682349 0.34184161 0.80459738\n\t\t 0.41955861 0.42023051 0.91956466 0.31521198 0.23461106 0.95059806 0.29172218 -0.10612041\n\t\t 0.9765864 0.084798194 0.19770764 0.94473827 0.098618984 0.31264025 0.95576876 0.28471768\n\t\t 0.07376904 0.9765864 0.084798194 0.19770764 0.96433342 0.13603765 0.2270568 0.92084974\n\t\t 0.20616023 0.33095872 0.94473827 0.098618984 0.31264025 0.96433342 0.13603765 0.2270568\n\t\t 0.91956466 0.31521198 0.23461106 0.85023874 0.36984906 0.37457415 0.92084974 0.20616023\n\t\t 0.33095872 0.91956466 0.31521198 0.23461106 0.80459738 0.41955861 0.42023051 0.72365087\n\t\t 0.470155 0.50525612 0.85023874 0.36984906 0.37457415 0.95576876 0.28471768 0.07376904\n\t\t 0.94473827 0.098618984 0.31264025 0.87036663 0.33374512 0.36204425 0.87426949 0.45139071\n\t\t 0.17860353 0.94473827 0.098618984 0.31264025 0.92084974 0.20616023 0.33095872 0.80769664\n\t\t 0.42851636 0.40496871 0.87036663 0.33374512 0.36204425 0.92084974 0.20616023 0.33095872\n\t\t 0.85023874 0.36984906 0.37457415 0.72422713 0.50820535 0.46607122 0.80769664 0.42851636\n\t\t 0.40496871 0.85023874 0.36984906 0.37457415 0.72365087 0.470155 0.50525612 0.64641988\n\t\t 0.53904057 0.53997827 0.72422713 0.50820535 0.46607122 0.017643185 0.0081431661 0.99981123\n\t\t 0.037651043 0.058662742 0.99756753 0.14329246 0.075909495 0.98676497 0.081829593\n\t\t 0.0027715638 0.99664253 0.037651043 0.058662742 0.99756753 0.098598726 0.21393424\n\t\t 0.97185922 0.25298205 0.25226471 0.93400347 0.14329246 0.075909495 0.98676497 0.098598726\n\t\t 0.21393424 0.97185922 0.15059777 0.44241589 0.88407493 0.32661387 0.45309359 0.82947552\n\t\t 0.25298205 0.25226471 0.93400347 0.15059777 0.44241589 0.88407493 0.17061669 0.70013338\n\t\t 0.69332761 0.35463181 0.66900325 0.65320057 0.32661387 0.45309359 0.82947552 0.081829593\n\t\t 0.0027715638 0.99664253 0.14329246 0.075909495 0.98676497 0.31650603 0.13581002 0.93881816\n\t\t 0.23021199 0.009725445 0.9730919 0.14329246 0.075909495 0.98676497 0.25298205 0.25226471\n\t\t 0.93400347 0.39423299 0.3124595 0.86426234 0.31650603 0.13581002 0.93881816 0.25298205\n\t\t 0.25226471 0.93400347 0.32661387 0.45309359 0.82947552 0.42352861 0.47329038 0.77241158\n\t\t 0.39423299 0.3124595 0.86426234 0.32661387 0.45309359 0.82947552 0.35463181 0.66900325\n\t\t 0.65320057 0.43684074 0.64215297 0.62992835 0.42352861 0.47329038 0.77241158 0.23021199\n\t\t 0.009725445 0.9730919 0.31650603 0.13581002 0.93881816 0.64807349 0.29323176 0.70286256\n\t\t 0.51891613 0.07154011 0.85182631 0.31650603 0.13581002 0.93881816 0.39423299 0.3124595\n\t\t 0.86426234 0.61734104 0.4008373 0.67691916 0.64807349 0.29323176 0.70286256;\n\tsetAttr \".n[10624:10789]\" -type \"float3\"  0.39423299 0.3124595 0.86426234 0.42352861\n\t\t 0.47329038 0.77241158 0.57180429 0.48858488 0.65903312 0.61734104 0.4008373 0.67691916\n\t\t 0.42352861 0.47329038 0.77241158 0.43684074 0.64215297 0.62992835 0.55320883 0.59022278\n\t\t 0.58787495 0.57180429 0.48858488 0.65903312 0.51891613 0.07154011 0.85182631 0.64807349\n\t\t 0.29323176 0.70286256 0.86460817 0.3682349 0.34184161 0.87306291 0.18791391 0.44994396\n\t\t 0.64807349 0.29323176 0.70286256 0.61734104 0.4008373 0.67691916 0.80459738 0.41955861\n\t\t 0.42023051 0.86460817 0.3682349 0.34184161 0.61734104 0.4008373 0.67691916 0.57180429\n\t\t 0.48858488 0.65903312 0.72365087 0.470155 0.50525612 0.80459738 0.41955861 0.42023051\n\t\t 0.57180429 0.48858488 0.65903312 0.55320883 0.59022278 0.58787495 0.64641988 0.53904057\n\t\t 0.53997827 0.72365087 0.470155 0.50525612 0.017770251 0.99974793 0.013721636 0.091733456\n\t\t 0.99547291 0.024874356 0.15124276 0.98296845 0.10439581 0.029310403 0.99708706 0.070414104\n\t\t 0.091733456 0.99547291 0.024874356 0.27443153 0.9602657 0.050764997 0.35821173 0.92018384\n\t\t 0.15794343 0.15124276 0.98296845 0.10439581 0.27443153 0.9602657 0.050764997 0.56256711\n\t\t 0.819552 0.1088698 0.65909356 0.695503 0.28613132 0.35821173 0.92018384 0.15794343\n\t\t 0.56256711 0.819552 0.1088698 0.87426949 0.45139071 0.17860353 0.87036663 0.33374512\n\t\t 0.36204425 0.65909356 0.695503 0.28613132 0.029310403 0.99708706 0.070414104 0.15124276\n\t\t 0.98296845 0.10439581 0.22641651 0.94618177 0.23124832 0.068890035 0.97531086 0.20981675\n\t\t 0.15124276 0.98296845 0.10439581 0.35821173 0.92018384 0.15794343 0.38609496 0.88215387\n\t\t 0.26969463 0.22641651 0.94618177 0.23124832 0.35821173 0.92018384 0.15794343 0.65909356\n\t\t 0.695503 0.28613132 0.61212838 0.70053655 0.36680698 0.38609496 0.88215387 0.26969463\n\t\t 0.65909356 0.695503 0.28613132 0.87036663 0.33374512 0.36204425 0.80769664 0.42851636\n\t\t 0.40496871 0.61212838 0.70053655 0.36680698 0.068890035 0.97531086 0.20981675 0.22641651\n\t\t 0.94618177 0.23124832 0.31765887 0.84319842 0.43371549 0.13224092 0.89029419 0.43576184\n\t\t 0.22641651 0.94618177 0.23124832 0.38609496 0.88215387 0.26969463 0.42738807 0.78402406\n\t\t 0.45016178 0.31765887 0.84319842 0.43371549 0.38609496 0.88215387 0.26969463 0.61212838\n\t\t 0.70053655 0.36680698 0.57247698 0.66667473 0.47729951 0.42738807 0.78402406 0.45016178\n\t\t 0.61212838 0.70053655 0.36680698 0.80769664 0.42851636 0.40496871 0.72422713 0.50820535\n\t\t 0.46607122 0.57247698 0.66667473 0.47729951 0.13224092 0.89029419 0.43576184 0.31765887\n\t\t 0.84319842 0.43371549 0.35463181 0.66900325 0.65320057 0.17061669 0.70013338 0.69332761\n\t\t 0.31765887 0.84319842 0.43371549 0.42738807 0.78402406 0.45016178 0.43684074 0.64215297\n\t\t 0.62992835 0.35463181 0.66900325 0.65320057 0.42738807 0.78402406 0.45016178 0.57247698\n\t\t 0.66667473 0.47729951 0.55320883 0.59022278 0.58787495 0.43684074 0.64215297 0.62992835\n\t\t 0.57247698 0.66667473 0.47729951 0.72422713 0.50820535 0.46607122 0.64641988 0.53904057\n\t\t 0.53997827 0.55320883 0.59022278 0.58787495 0.021302523 -0.1950452 -0.98056287 0.021302722\n\t\t 1.3547622e-06 -0.99977303 0.075042009 2.6704811e-08 -0.9971804 0.07504236 -0.1945394\n\t\t -0.97801995 0.07504236 -0.1945394 -0.97801995 0.075042009 2.6704811e-08 -0.9971804\n\t\t 0.22674684 -7.995335e-07 -0.97395378 0.22674517 -0.19000931 -0.95523971 0.22674517\n\t\t -0.19000931 -0.95523971 0.22674684 -7.995335e-07 -0.97395378 0.45474264 -2.2619005e-08\n\t\t -0.89062285 0.45474213 -0.17375237 -0.87351006 0.45474213 -0.17375237 -0.87351006\n\t\t 0.45474264 -2.2619005e-08 -0.89062285 0.70358437 -1.2791473e-07 -0.71061176 0.70358831\n\t\t -0.13863356 -0.69695371 0.70358831 -0.13863356 -0.69695371 0.70358437 -1.2791473e-07\n\t\t -0.71061176 0.8868199 -4.5229706e-07 -0.46211523 0.88681954 -0.090155646 -0.45323628\n\t\t 0.88681954 -0.090155646 -0.45323628 0.8868199 -4.5229706e-07 -0.46211523 0.97272009\n\t\t -2.2431961e-07 -0.23198189 0.97271889 -0.045258265 -0.22752918 0.97271889 -0.045258265\n\t\t -0.22752918 0.97272009 -2.2431961e-07 -0.23198189 0.9969607 -3.4407631e-08 -0.077905424\n\t\t 0.99696076 -0.015198343 -0.076408051 0.99696076 -0.015198343 -0.076408051 0.9969607\n\t\t -3.4407631e-08 -0.077905424 0.99977767 -2.877923e-09 -0.021089733 0.99977756 -0.0041142702\n\t\t -0.020684319 0.021302758 -0.38259763 -0.9236694 0.021302523 -0.1950452 -0.98056287\n\t\t 0.07504236 -0.1945394 -0.97801995 0.075041987 -0.38160488 -0.92127436 0.075041987\n\t\t -0.38160488 -0.92127436 0.07504236 -0.1945394 -0.97801995 0.22674517 -0.19000931\n\t\t -0.95523971 0.22674455 -0.37271515 -0.89981681 0.22674455 -0.37271515 -0.89981681\n\t\t 0.22674517 -0.19000931 -0.95523971 0.45474213 -0.17375237 -0.87351006 0.45474297\n\t\t -0.34082547 -0.82282853 0.45474297 -0.34082547 -0.82282853 0.45474213 -0.17375237\n\t\t -0.87351006 0.70358831 -0.13863356 -0.69695371 0.70358682 -0.27193895 -0.65651721\n\t\t 0.70358682 -0.27193895 -0.65651721 0.70358831 -0.13863356 -0.69695371 0.88681954\n\t\t -0.090155646 -0.45323628 0.88681632 -0.17684634 -0.42694521 0.88681632 -0.17684634\n\t\t -0.42694521 0.88681954 -0.090155646 -0.45323628 0.97271889 -0.045258265 -0.22752918\n\t\t 0.97271717 -0.088777259 -0.2143358 0.97271717 -0.088777259 -0.2143358 0.97271889\n\t\t -0.045258265 -0.22752918 0.99696076 -0.015198343 -0.076408051 0.99696046 -0.029812653\n\t\t -0.071979642 0.99696046 -0.029812653 -0.071979642 0.99696076 -0.015198343 -0.076408051\n\t\t 0.99977756 -0.0041142702 -0.020684319 0.99977756 -0.0080704624 -0.019484788 0.021303644\n\t\t -0.55544305 -0.8312816 0.021302758 -0.38259763 -0.9236694 0.075041987 -0.38160488\n\t\t -0.92127436 0.075043179 -0.55400413 -0.82912481 0.075043179 -0.55400413 -0.82912481\n\t\t 0.075041987 -0.38160488 -0.92127436 0.22674455 -0.37271515 -0.89981681 0.22674477\n\t\t -0.54109871 -0.8098141 0.22674477 -0.54109871 -0.8098141 0.22674455 -0.37271515 -0.89981681\n\t\t 0.45474297 -0.34082547 -0.82282853 0.45474187 -0.49480075 -0.74052823 0.45474187\n\t\t -0.49480075 -0.74052823 0.45474297 -0.34082547 -0.82282853;\n\tsetAttr \".n[10790:10955]\" -type \"float3\"  0.70358682 -0.27193895 -0.65651721 0.70358688\n\t\t -0.39479539 -0.59084862 0.70358688 -0.39479539 -0.59084862 0.70358682 -0.27193895\n\t\t -0.65651721 0.88681632 -0.17684634 -0.42694521 0.8868193 -0.25674191 -0.38423318\n\t\t 0.8868193 -0.25674191 -0.38423318 0.88681632 -0.17684634 -0.42694521 0.97271717 -0.088777259\n\t\t -0.2143358 0.9727186 -0.12888442 -0.19289184 0.9727186 -0.12888442 -0.19289184 0.97271717\n\t\t -0.088777259 -0.2143358 0.99696046 -0.029812653 -0.071979642 0.99696052 -0.043281313\n\t\t -0.064779118 0.99696052 -0.043281313 -0.064779118 0.99696046 -0.029812653 -0.071979642\n\t\t 0.99977756 -0.0080704624 -0.019484788 0.99977762 -0.011716523 -0.017531537 0.021306546\n\t\t -0.70694685 -0.70694572 0.021303644 -0.55544305 -0.8312816 0.075043179 -0.55400413\n\t\t -0.82912481 0.075046062 -0.70511425 -0.70511132 0.075046062 -0.70511425 -0.70511132\n\t\t 0.075043179 -0.55400413 -0.82912481 0.22674477 -0.54109871 -0.8098141 0.22674625\n\t\t -0.68869001 -0.68868881 0.22674625 -0.68869001 -0.68868881 0.22674477 -0.54109871\n\t\t -0.8098141 0.45474187 -0.49480075 -0.74052823 0.45474139 -0.62976336 -0.62976849\n\t\t 0.45474139 -0.62976336 -0.62976849 0.45474187 -0.49480075 -0.74052823 0.70358688\n\t\t -0.39479539 -0.59084862 0.70358425 -0.50247681 -0.50248015 0.70358425 -0.50247681\n\t\t -0.50248015 0.70358688 -0.39479539 -0.59084862 0.8868193 -0.25674191 -0.38423318\n\t\t 0.88681757 -0.32676911 -0.32676688 0.88681757 -0.32676911 -0.32676688 0.8868193 -0.25674191\n\t\t -0.38423318 0.9727186 -0.12888442 -0.19289184 0.97271907 -0.16403846 -0.16403946\n\t\t 0.97271907 -0.16403846 -0.16403946 0.9727186 -0.12888442 -0.19289184 0.99696052 -0.043281313\n\t\t -0.064779118 0.99696094 -0.055086613 -0.055086046 0.99696094 -0.055086613 -0.055086046\n\t\t 0.99696052 -0.043281313 -0.064779118 0.99977762 -0.011716523 -0.017531537 0.99977767\n\t\t -0.014912318 -0.014905478 0.021304682 -0.83128256 -0.55544174 0.021306546 -0.70694685\n\t\t -0.70694572 0.075046062 -0.70511425 -0.70511132 0.075045012 -0.82912672 -0.55400109\n\t\t 0.075045012 -0.82912672 -0.55400109 0.075046062 -0.70511425 -0.70511132 0.22674625\n\t\t -0.68869001 -0.68868881 0.22674677 -0.80981392 -0.54109836 0.22674677 -0.80981392\n\t\t -0.54109836 0.22674625 -0.68869001 -0.68868881 0.45474139 -0.62976336 -0.62976849\n\t\t 0.45474198 -0.7405234 -0.49480784 0.45474198 -0.7405234 -0.49480784 0.45474139 -0.62976336\n\t\t -0.62976849 0.70358425 -0.50247681 -0.50248015 0.70358407 -0.59084857 -0.3948006\n\t\t 0.70358407 -0.59084857 -0.3948006 0.70358425 -0.50247681 -0.50248015 0.88681757 -0.32676911\n\t\t -0.32676688 0.88681728 -0.38423866 -0.25674075 0.88681728 -0.38423866 -0.25674075\n\t\t 0.88681757 -0.32676911 -0.32676688 0.97271907 -0.16403846 -0.16403946 0.97271919\n\t\t -0.19288892 -0.12888442 0.97271919 -0.19288892 -0.12888442 0.97271907 -0.16403846\n\t\t -0.16403946 0.99696094 -0.055086613 -0.055086046 0.99696082 -0.064775132 -0.043282926\n\t\t 0.99696082 -0.064775132 -0.043282926 0.99696094 -0.055086613 -0.055086046 0.99977767\n\t\t -0.014912318 -0.014905478 0.99977756 -0.017534943 -0.01171604 0.021296991 -0.92367053\n\t\t -0.38259521 0.021304682 -0.83128256 -0.55544174 0.075045012 -0.82912672 -0.55400109\n\t\t 0.075041153 -0.9212755 -0.38160217 0.075041153 -0.9212755 -0.38160217 0.075045012\n\t\t -0.82912672 -0.55400109 0.22674677 -0.80981392 -0.54109836 0.22674756 -0.89981675\n\t\t -0.37271345 0.22674756 -0.89981675 -0.37271345 0.22674677 -0.80981392 -0.54109836\n\t\t 0.45474198 -0.7405234 -0.49480784 0.45474413 -0.82282686 -0.34082809 0.45474413 -0.82282686\n\t\t -0.34082809 0.45474198 -0.7405234 -0.49480784 0.70358407 -0.59084857 -0.3948006 0.70358515\n\t\t -0.65651858 -0.27194014 0.70358515 -0.65651858 -0.27194014 0.70358407 -0.59084857\n\t\t -0.3948006 0.88681728 -0.38423866 -0.25674075 0.88681734 -0.42694449 -0.17684294\n\t\t 0.88681734 -0.42694449 -0.17684294 0.88681728 -0.38423866 -0.25674075 0.97271919\n\t\t -0.19288892 -0.12888442 0.97271943 -0.21432656 -0.088774726 0.97271943 -0.21432656\n\t\t -0.088774726 0.97271919 -0.19288892 -0.12888442 0.99696082 -0.064775132 -0.043282926\n\t\t 0.99696076 -0.071974315 -0.0298135 0.99696076 -0.071974315 -0.0298135 0.99696082\n\t\t -0.064775132 -0.043282926 0.99977756 -0.017534943 -0.01171604 0.99977762 -0.019483782\n\t\t -0.0080727357 0.021296991 -0.98056334 -0.19504367 0.021296991 -0.92367053 -0.38259521\n\t\t 0.075041153 -0.9212755 -0.38160217 0.075040124 -0.97802037 -0.19453828 0.075040124\n\t\t -0.97802037 -0.19453828 0.075041153 -0.9212755 -0.38160217 0.22674756 -0.89981675\n\t\t -0.37271345 0.22674832 -0.95523965 -0.1900066 0.22674832 -0.95523965 -0.1900066 0.22674756\n\t\t -0.89981675 -0.37271345 0.45474413 -0.82282686 -0.34082809 0.45474559 -0.87350851\n\t\t -0.17375048 0.45474559 -0.87350851 -0.17375048 0.45474413 -0.82282686 -0.34082809\n\t\t 0.70358515 -0.65651858 -0.27194014 0.70358431 -0.69695741 -0.1386345 0.70358431 -0.69695741\n\t\t -0.1386345 0.70358515 -0.65651858 -0.27194014 0.88681734 -0.42694449 -0.17684294\n\t\t 0.8868165 -0.45324203 -0.090155862 0.8868165 -0.45324203 -0.090155862 0.88681734\n\t\t -0.42694449 -0.17684294 0.97271943 -0.21432656 -0.088774726 0.97271937 -0.22752756\n\t\t -0.045257315 0.97271937 -0.22752756 -0.045257315 0.97271943 -0.21432656 -0.088774726\n\t\t 0.99696076 -0.071974315 -0.0298135 0.99696088 -0.076407328 -0.015197864 0.99696088\n\t\t -0.076407328 -0.015197864 0.99696076 -0.071974315 -0.0298135 0.99977762 -0.019483782\n\t\t -0.0080727357 0.99977756 -0.02068395 -0.0041143866 0.021296982 -0.99977314 1.7242866e-07\n\t\t 0.021296991 -0.98056334 -0.19504367 0.075040124 -0.97802037 -0.19453828 0.075041994\n\t\t -0.99718034 -3.5235828e-07 0.075041994 -0.99718034 -3.5235828e-07 0.075040124 -0.97802037\n\t\t -0.19453828 0.22674832 -0.95523965 -0.1900066 0.22675012 -0.97395301 -3.159418e-07\n\t\t 0.22675012 -0.97395301 -3.159418e-07 0.22674832 -0.95523965 -0.1900066 0.45474559\n\t\t -0.87350851 -0.17375048 0.45474505 -0.89062172 6.786853e-07 0.45474505 -0.89062172\n\t\t 6.786853e-07 0.45474559 -0.87350851 -0.17375048 0.70358431 -0.69695741 -0.1386345\n\t\t 0.70358509 -0.71061105 6.257107e-07 0.70358509 -0.71061105 6.257107e-07 0.70358431\n\t\t -0.69695741 -0.1386345 0.8868165 -0.45324203 -0.090155862 0.88681734 -0.46212006\n\t\t 5.4624883e-07;\n\tsetAttr \".n[10956:11121]\" -type \"float3\"  0.88681734 -0.46212006 5.4624883e-07\n\t\t 0.8868165 -0.45324203 -0.090155862 0.97271937 -0.22752756 -0.045257315 0.97271931\n\t\t -0.23198521 5.6185598e-07 0.97271931 -0.23198521 5.6185598e-07 0.97271937 -0.22752756\n\t\t -0.045257315 0.99696088 -0.076407328 -0.015197864 0.99696088 -0.077904128 1.2692194e-08\n\t\t 0.99696088 -0.077904128 1.2692194e-08 0.99696088 -0.076407328 -0.015197864 0.99977756\n\t\t -0.02068395 -0.0041143866 0.99977756 -0.021089183 3.4358643e-09 0.021293165 -0.98056328\n\t\t 0.19504407 0.021296982 -0.99977314 1.7242866e-07 0.075041994 -0.99718034 -3.5235828e-07\n\t\t 0.075043805 -0.97801977 0.19453982 0.075043805 -0.97801977 0.19453982 0.075041994\n\t\t -0.99718034 -3.5235828e-07 0.22675012 -0.97395301 -3.159418e-07 0.22675221 -0.95523828\n\t\t 0.19000815 0.22675221 -0.95523828 0.19000815 0.22675012 -0.97395301 -3.159418e-07\n\t\t 0.45474505 -0.89062172 6.786853e-07 0.45474344 -0.87350988 0.17374958 0.45474344\n\t\t -0.87350988 0.17374958 0.45474505 -0.89062172 6.786853e-07 0.70358509 -0.71061105\n\t\t 6.257107e-07 0.70358455 -0.69695741 0.13863321 0.70358455 -0.69695741 0.13863321\n\t\t 0.70358509 -0.71061105 6.257107e-07 0.88681734 -0.46212006 5.4624883e-07 0.88681704\n\t\t -0.45324108 0.090156183 0.88681704 -0.45324108 0.090156183 0.88681734 -0.46212006\n\t\t 5.4624883e-07 0.97271931 -0.23198521 5.6185598e-07 0.97271931 -0.22752768 0.045257945\n\t\t 0.97271931 -0.22752768 0.045257945 0.97271931 -0.23198521 5.6185598e-07 0.99696088\n\t\t -0.077904128 1.2692194e-08 0.99696088 -0.076407433 0.015197916 0.99696088 -0.076407433\n\t\t 0.015197916 0.99696088 -0.077904128 1.2692194e-08 0.99977756 -0.021089183 3.4358643e-09\n\t\t 0.99977756 -0.020683873 0.004114368 0.021300817 -0.92367047 0.38259542 0.021293165\n\t\t -0.98056328 0.19504407 0.075043805 -0.97801977 0.19453982 0.075043797 -0.92127401\n\t\t 0.38160527 0.075043797 -0.92127401 0.38160527 0.075043805 -0.97801977 0.19453982\n\t\t 0.22675221 -0.95523828 0.19000815 0.22674932 -0.89981544 0.37271538 0.22674932 -0.89981544\n\t\t 0.37271538 0.22675221 -0.95523828 0.19000815 0.45474344 -0.87350988 0.17374958 0.4547421\n\t\t -0.82282907 0.34082541 0.4547421 -0.82282907 0.34082541 0.45474344 -0.87350988 0.17374958\n\t\t 0.70358455 -0.69695741 0.13863321 0.70358324 -0.65652078 0.27193943 0.70358324 -0.65652078\n\t\t 0.27193943 0.70358455 -0.69695741 0.13863321 0.88681704 -0.45324108 0.090156183 0.88681799\n\t\t -0.42694336 0.17684259 0.88681799 -0.42694336 0.17684259 0.88681704 -0.45324108 0.090156183\n\t\t 0.97271931 -0.22752768 0.045257945 0.97271949 -0.21432637 0.088774614 0.97271949\n\t\t -0.21432637 0.088774614 0.97271931 -0.22752768 0.045257945 0.99696088 -0.076407433\n\t\t 0.015197916 0.99696076 -0.071974352 0.029813511 0.99696076 -0.071974352 0.029813511\n\t\t 0.99696088 -0.076407433 0.015197916 0.99977756 -0.020683873 0.004114368 0.99977762\n\t\t -0.01948378 0.0080727581 0.021310415 -0.83128244 0.55544156 0.021300817 -0.92367047\n\t\t 0.38259542 0.075043797 -0.92127401 0.38160527 0.075046778 -0.8291254 0.55400264 0.075046778\n\t\t -0.8291254 0.55400264 0.075043797 -0.92127401 0.38160527 0.22674932 -0.89981544 0.37271538\n\t\t 0.22674681 -0.80981392 0.54109836 0.22674681 -0.80981392 0.54109836 0.22674932 -0.89981544\n\t\t 0.37271538 0.4547421 -0.82282907 0.34082541 0.45473969 -0.74052536 0.49480692 0.45473969\n\t\t -0.74052536 0.49480692 0.4547421 -0.82282907 0.34082541 0.70358324 -0.65652078 0.27193943\n\t\t 0.70358104 -0.59085089 0.39480239 0.70358104 -0.59085089 0.39480239 0.70358324 -0.65652078\n\t\t 0.27193943 0.88681799 -0.42694336 0.17684259 0.88681722 -0.38423872 0.25674075 0.88681722\n\t\t -0.38423872 0.25674075 0.88681799 -0.42694336 0.17684259 0.97271949 -0.21432637 0.088774614\n\t\t 0.97271919 -0.19288869 0.1288844 0.97271919 -0.19288869 0.1288844 0.97271949 -0.21432637\n\t\t 0.088774614 0.99696076 -0.071974352 0.029813511 0.99696076 -0.06477496 0.04328284\n\t\t 0.99696076 -0.06477496 0.04328284 0.99696076 -0.071974352 0.029813511 0.99977762\n\t\t -0.01948378 0.0080727581 0.99977756 -0.017535055 0.011716111 0.021307385 -0.70694333\n\t\t 0.70694923 0.021310415 -0.83128244 0.55544156 0.075046778 -0.8291254 0.55400264 0.075046949\n\t\t -0.70511252 0.70511311 0.075046949 -0.70511252 0.70511311 0.075046778 -0.8291254\n\t\t 0.55400264 0.22674681 -0.80981392 0.54109836 0.2267462 -0.68868995 0.68868876 0.2267462\n\t\t -0.68868995 0.68868876 0.22674681 -0.80981392 0.54109836 0.45473969 -0.74052536 0.49480692\n\t\t 0.45474026 -0.62976366 0.62976897 0.45474026 -0.62976366 0.62976897 0.45473969 -0.74052536\n\t\t 0.49480692 0.70358104 -0.59085089 0.39480239 0.70358384 -0.50247717 0.50248039 0.70358384\n\t\t -0.50247717 0.50248039 0.70358104 -0.59085089 0.39480239 0.88681722 -0.38423872 0.25674075\n\t\t 0.88681751 -0.32676911 0.32676694 0.88681751 -0.32676911 0.32676694 0.88681722 -0.38423872\n\t\t 0.25674075 0.97271919 -0.19288869 0.1288844 0.97271901 -0.16403858 0.16403966 0.97271901\n\t\t -0.16403858 0.16403966 0.97271919 -0.19288869 0.1288844 0.99696076 -0.06477496 0.04328284\n\t\t 0.99696088 -0.055086497 0.055085953 0.99696088 -0.055086497 0.055085953 0.99696076\n\t\t -0.06477496 0.04328284 0.99977756 -0.017535055 0.011716111 0.99977762 -0.014912308\n\t\t 0.014905461 0.021300159 -0.55543894 0.83128452 0.021307385 -0.70694333 0.70694923\n\t\t 0.075046949 -0.70511252 0.70511311 0.075043358 -0.55400068 0.82912719 0.075043358\n\t\t -0.55400068 0.82912719 0.075046949 -0.70511252 0.70511311 0.2267462 -0.68868995 0.68868876\n\t\t 0.22674565 -0.54109681 0.80981523 0.22674565 -0.54109681 0.80981523 0.2267462 -0.68868995\n\t\t 0.68868876 0.45474026 -0.62976366 0.62976897 0.45474258 -0.49480203 0.74052697 0.45474258\n\t\t -0.49480203 0.74052697 0.45474026 -0.62976366 0.62976897 0.70358384 -0.50247717 0.50248039\n\t\t 0.7035867 -0.39479548 0.59084874 0.7035867 -0.39479548 0.59084874 0.70358384 -0.50247717\n\t\t 0.50248039 0.88681751 -0.32676911 0.32676694 0.88681817 -0.25674111 0.38423619 0.88681817\n\t\t -0.25674111 0.38423619 0.88681751 -0.32676911 0.32676694 0.97271901 -0.16403858 0.16403966\n\t\t 0.97271943 -0.12888439 0.19288802 0.97271943 -0.12888439 0.19288802 0.97271901 -0.16403858\n\t\t 0.16403966;\n\tsetAttr \".n[11122:11287]\" -type \"float3\"  0.99696088 -0.055086497 0.055085953 0.99696088\n\t\t -0.043281335 0.064774938 0.99696088 -0.043281335 0.064774938 0.99696088 -0.055086497\n\t\t 0.055085953 0.99977762 -0.014912308 0.014905461 0.99977767 -0.011716472 0.017531462\n\t\t 0.021298693 -0.38259757 0.92366958 0.021300159 -0.55543894 0.83128452 0.075043358\n\t\t -0.55400068 0.82912719 0.075042322 -0.38160279 0.92127514 0.075042322 -0.38160279\n\t\t 0.92127514 0.075043358 -0.55400068 0.82912719 0.22674565 -0.54109681 0.80981523 0.22674721\n\t\t -0.37271336 0.89981687 0.22674721 -0.37271336 0.89981687 0.22674565 -0.54109681 0.80981523\n\t\t 0.45474258 -0.49480203 0.74052697 0.45474511 -0.34082621 0.8228271 0.45474511 -0.34082621\n\t\t 0.8228271 0.45474258 -0.49480203 0.74052697 0.7035867 -0.39479548 0.59084874 0.70358586\n\t\t -0.27193922 0.65651816 0.70358586 -0.27193922 0.65651816 0.7035867 -0.39479548 0.59084874\n\t\t 0.88681817 -0.25674111 0.38423619 0.88681489 -0.17684567 0.42694855 0.88681489 -0.17684567\n\t\t 0.42694855 0.88681817 -0.25674111 0.38423619 0.97271943 -0.12888439 0.19288802 0.97271818\n\t\t -0.088776931 0.21433142 0.97271818 -0.088776931 0.21433142 0.97271943 -0.12888439\n\t\t 0.19288802 0.99696088 -0.043281335 0.064774938 0.9969607 -0.029812658 0.071975507\n\t\t 0.9969607 -0.029812658 0.071975507 0.99696088 -0.043281335 0.064774938 0.99977767\n\t\t -0.011716472 0.017531462 0.99977762 -0.0080704466 0.019484796 0.021301011 -0.19504538\n\t\t 0.98056287 0.021298693 -0.38259757 0.92366958 0.075042322 -0.38160279 0.92127514\n\t\t 0.075041667 -0.19453917 0.97802007 0.075041667 -0.19453917 0.97802007 0.075042322\n\t\t -0.38160279 0.92127514 0.22674721 -0.37271336 0.89981687 0.22674787 -0.19000873 0.95523936\n\t\t 0.22674787 -0.19000873 0.95523936 0.22674721 -0.37271336 0.89981687 0.45474511 -0.34082621\n\t\t 0.8228271 0.45474449 -0.17375177 0.87350887 0.45474449 -0.17375177 0.87350887 0.45474511\n\t\t -0.34082621 0.8228271 0.70358586 -0.27193922 0.65651816 0.70358688 -0.1386335 0.69695503\n\t\t 0.70358688 -0.1386335 0.69695503 0.70358586 -0.27193922 0.65651816 0.88681489 -0.17684567\n\t\t 0.42694855 0.88681751 -0.0901554 0.45324019 0.88681751 -0.0901554 0.45324019 0.88681489\n\t\t -0.17684567 0.42694855 0.97271818 -0.088776931 0.21433142 0.97271836 -0.045257956\n\t\t 0.22753185 0.97271836 -0.045257956 0.22753185 0.97271818 -0.088776931 0.21433142\n\t\t 0.9969607 -0.029812658 0.071975507 0.99696082 -0.015198303 0.076408088 0.99696082\n\t\t -0.015198303 0.076408088 0.9969607 -0.029812658 0.071975507 0.99977762 -0.0080704466\n\t\t 0.019484796 0.99977756 -0.0041142637 0.020684388 0.02130268 6.2581341e-07 0.99977303\n\t\t 0.021301011 -0.19504538 0.98056287 0.075041667 -0.19453917 0.97802007 0.07504227\n\t\t 7.419323e-07 0.9971804 0.07504227 7.419323e-07 0.9971804 0.075041667 -0.19453917\n\t\t 0.97802007 0.22674787 -0.19000873 0.95523936 0.22674735 7.7062259e-07 0.9739536 0.22674735\n\t\t 7.7062259e-07 0.9739536 0.22674787 -0.19000873 0.95523936 0.45474449 -0.17375177\n\t\t 0.87350887 0.45474181 6.568568e-07 0.89062333 0.45474181 6.568568e-07 0.89062333\n\t\t 0.45474449 -0.17375177 0.87350887 0.70358688 -0.1386335 0.69695503 0.70358551 5.4072166e-07\n\t\t 0.71061057 0.70358551 5.4072166e-07 0.71061057 0.70358688 -0.1386335 0.69695503 0.88681751\n\t\t -0.0901554 0.45324019 0.88682032 3.4991405e-07 0.46211433 0.88682032 3.4991405e-07\n\t\t 0.46211433 0.88681751 -0.0901554 0.45324019 0.97271836 -0.045257956 0.22753185 0.97271949\n\t\t 1.6015544e-07 0.23198426 0.97271949 1.6015544e-07 0.23198426 0.97271836 -0.045257956\n\t\t 0.22753185 0.99696082 -0.015198303 0.076408088 0.99696082 4.9218485e-08 0.077905148\n\t\t 0.99696082 4.9218485e-08 0.077905148 0.99696082 -0.015198303 0.076408088 0.99977756\n\t\t -0.0041142637 0.020684388 0.99977767 1.4247791e-08 0.021089684 0.02130292 0.19504638\n\t\t 0.98056263 0.02130268 6.2581341e-07 0.99977303 0.07504227 7.419323e-07 0.9971804\n\t\t 0.075043276 0.19454019 0.97801971 0.075043276 0.19454019 0.97801971 0.07504227 7.419323e-07\n\t\t 0.9971804 0.22674735 7.7062259e-07 0.9739536 0.22674689 0.19000967 0.95523936 0.22674689\n\t\t 0.19000967 0.95523936 0.22674735 7.7062259e-07 0.9739536 0.45474181 6.568568e-07\n\t\t 0.89062333 0.454743 0.17375274 0.87350947 0.454743 0.17375274 0.87350947 0.45474181\n\t\t 6.568568e-07 0.89062333 0.70358551 5.4072166e-07 0.71061057 0.703587 0.13863431 0.69695479\n\t\t 0.703587 0.13863431 0.69695479 0.70358551 5.4072166e-07 0.71061057 0.88682032 3.4991405e-07\n\t\t 0.46211433 0.88681763 0.090155855 0.45323992 0.88681763 0.090155855 0.45323992 0.88682032\n\t\t 3.4991405e-07 0.46211433 0.97271949 1.6015544e-07 0.23198426 0.97271836 0.045258176\n\t\t 0.2275317 0.97271836 0.045258176 0.2275317 0.97271949 1.6015544e-07 0.23198426 0.99696082\n\t\t 4.9218485e-08 0.077905148 0.99696082 0.015198456 0.076408185 0.99696082 0.015198456\n\t\t 0.076408185 0.99696082 4.9218485e-08 0.077905148 0.99977767 1.4247791e-08 0.021089684\n\t\t 0.99977762 0.0041142921 0.020684378 0.021303477 0.38259789 0.9236694 0.02130292 0.19504638\n\t\t 0.98056263 0.075043276 0.19454019 0.97801971 0.075043313 0.38160336 0.92127496 0.075043313\n\t\t 0.38160336 0.92127496 0.075043276 0.19454019 0.97801971 0.22674689 0.19000967 0.95523936\n\t\t 0.22674435 0.37271395 0.89981729 0.22674435 0.37271395 0.89981729 0.22674689 0.19000967\n\t\t 0.95523936 0.454743 0.17375274 0.87350947 0.4547435 0.34082717 0.82282758 0.4547435\n\t\t 0.34082717 0.82282758 0.454743 0.17375274 0.87350947 0.703587 0.13863431 0.69695479\n\t\t 0.7035858 0.27193958 0.65651804 0.7035858 0.27193958 0.65651804 0.703587 0.13863431\n\t\t 0.69695479 0.88681763 0.090155855 0.45323992 0.88681501 0.17684567 0.42694813 0.88681501\n\t\t 0.17684567 0.42694813 0.88681763 0.090155855 0.45323992 0.97271836 0.045258176 0.2275317\n\t\t 0.97271818 0.088777021 0.21433128 0.97271818 0.088777021 0.21433128 0.97271836 0.045258176\n\t\t 0.2275317 0.99696082 0.015198456 0.076408185 0.9969607 0.02981272 0.071975626 0.9969607\n\t\t 0.02981272 0.071975626 0.99696082 0.015198456 0.076408185 0.99977762 0.0041142921\n\t\t 0.020684378 0.99977756 0.0080704512 0.019484784;\n\tsetAttr \".n[11288:11453]\" -type \"float3\"  0.021301249 0.55544341 0.83128154 0.021303477\n\t\t 0.38259789 0.9236694 0.075043313 0.38160336 0.92127496 0.075042717 0.554003 0.82912546\n\t\t 0.075042717 0.554003 0.82912546 0.075043313 0.38160336 0.92127496 0.22674435 0.37271395\n\t\t 0.89981729 0.2267438 0.54109752 0.80981535 0.2267438 0.54109752 0.80981535 0.22674435\n\t\t 0.37271395 0.89981729 0.4547435 0.34082717 0.82282758 0.4547419 0.49480259 0.74052697\n\t\t 0.4547419 0.49480259 0.74052697 0.4547435 0.34082717 0.82282758 0.7035858 0.27193958\n\t\t 0.65651804 0.70358652 0.39479589 0.59084886 0.70358652 0.39479589 0.59084886 0.7035858\n\t\t 0.27193958 0.65651804 0.88681501 0.17684567 0.42694813 0.88681799 0.25674155 0.38423648\n\t\t 0.88681799 0.25674155 0.38423648 0.88681501 0.17684567 0.42694813 0.97271818 0.088777021\n\t\t 0.21433128 0.97271943 0.12888458 0.19288816 0.97271943 0.12888458 0.19288816 0.97271818\n\t\t 0.088777021 0.21433128 0.9969607 0.02981272 0.071975626 0.99696088 0.043281257 0.064774849\n\t\t 0.99696088 0.043281257 0.064774849 0.9969607 0.02981272 0.071975626 0.99977756 0.0080704512\n\t\t 0.019484784 0.99977767 0.011716448 0.017531428 0.021297924 0.70694739 0.70694548\n\t\t 0.021301249 0.55544341 0.83128154 0.075042717 0.554003 0.82912546 0.075043127 0.70511484\n\t\t 0.70511109 0.075043127 0.70511484 0.70511109 0.075042717 0.554003 0.82912546 0.2267438\n\t\t 0.54109752 0.80981535 0.22674797 0.68869001 0.68868816 0.22674797 0.68869001 0.68868816\n\t\t 0.2267438 0.54109752 0.80981535 0.4547419 0.49480259 0.74052697 0.45474136 0.62976378\n\t\t 0.62976831 0.45474136 0.62976378 0.62976831 0.4547419 0.49480259 0.74052697 0.70358652\n\t\t 0.39479589 0.59084886 0.70358396 0.50247729 0.50248015 0.70358396 0.50247729 0.50248015\n\t\t 0.70358652 0.39479589 0.59084886 0.88681799 0.25674155 0.38423648 0.88681757 0.32676923\n\t\t 0.32676664 0.88681757 0.32676923 0.32676664 0.88681799 0.25674155 0.38423648 0.97271943\n\t\t 0.12888458 0.19288816 0.97271907 0.16403864 0.16403931 0.97271907 0.16403864 0.16403931\n\t\t 0.97271943 0.12888458 0.19288816 0.99696088 0.043281257 0.064774849 0.99696082 0.055086665\n\t\t 0.055085961 0.99696082 0.055086665 0.055085961 0.99696088 0.043281257 0.064774849\n\t\t 0.99977767 0.011716448 0.017531428 0.99977767 0.014912185 0.014905311 0.021298924\n\t\t 0.83128297 0.55544138 0.021297924 0.70694739 0.70694548 0.075043127 0.70511484 0.70511109\n\t\t 0.0750449 0.82912695 0.55400068 0.0750449 0.82912695 0.55400068 0.075043127 0.70511484\n\t\t 0.70511109 0.22674797 0.68869001 0.68868816 0.22674885 0.80981475 0.54109603 0.22674885\n\t\t 0.80981475 0.54109603 0.22674797 0.68869001 0.68868816 0.45474136 0.62976378 0.62976831\n\t\t 0.45473993 0.74052548 0.49480656 0.45473993 0.74052548 0.49480656 0.45474136 0.62976378\n\t\t 0.62976831 0.70358396 0.50247729 0.50248015 0.70358229 0.59085029 0.39480117 0.70358229\n\t\t 0.59085029 0.39480117 0.70358396 0.50247729 0.50248015 0.88681757 0.32676923 0.32676664\n\t\t 0.8868171 0.38423911 0.25674048 0.8868171 0.38423911 0.25674048 0.88681757 0.32676923\n\t\t 0.32676664 0.97271907 0.16403864 0.16403931 0.97271925 0.19288866 0.12888415 0.97271925\n\t\t 0.19288866 0.12888415 0.97271907 0.16403864 0.16403931 0.99696082 0.055086665 0.055085961\n\t\t 0.99696082 0.064775303 0.043282975 0.99696082 0.064775303 0.043282975 0.99696082\n\t\t 0.055086665 0.055085961 0.99977767 0.014912185 0.014905311 0.99977756 0.017534899\n\t\t 0.011715977 0.021300832 0.92367196 0.38259163 0.021298924 0.83128297 0.55544138 0.0750449\n\t\t 0.82912695 0.55400068 0.075042948 0.92127568 0.38160148 0.075042948 0.92127568 0.38160148\n\t\t 0.0750449 0.82912695 0.55400068 0.22674885 0.80981475 0.54109603 0.2267473 0.89981604\n\t\t 0.37271526 0.2267473 0.89981604 0.37271526 0.22674885 0.80981475 0.54109603 0.45473993\n\t\t 0.74052548 0.49480656 0.45474154 0.82282877 0.34082672 0.45474154 0.82282877 0.34082672\n\t\t 0.45473993 0.74052548 0.49480656 0.70358229 0.59085029 0.39480117 0.7035836 0.65652055\n\t\t 0.27193892 0.7035836 0.65652055 0.27193892 0.70358229 0.59085029 0.39480117 0.8868171\n\t\t 0.38423911 0.25674048 0.88681763 0.42694405 0.17684278 0.88681763 0.42694405 0.17684278\n\t\t 0.8868171 0.38423911 0.25674048 0.97271925 0.19288866 0.12888415 0.97271937 0.21432704\n\t\t 0.088774763 0.97271937 0.21432704 0.088774763 0.97271925 0.19288866 0.12888415 0.99696082\n\t\t 0.064775303 0.043282975 0.99696076 0.071974352 0.029813489 0.99696076 0.071974352\n\t\t 0.029813489 0.99696082 0.064775303 0.043282975 0.99977756 0.017534899 0.011715977\n\t\t 0.99977756 0.019483782 0.0080727441 0.021304652 0.98056412 0.195039 0.021300832 0.92367196\n\t\t 0.38259163 0.075042948 0.92127568 0.38160148 0.075041987 0.97802049 0.19453721 0.075041987\n\t\t 0.97802049 0.19453721 0.075042948 0.92127568 0.38160148 0.2267473 0.89981604 0.37271526\n\t\t 0.22674616 0.95523953 0.19000958 0.22674616 0.95523953 0.19000958 0.2267473 0.89981604\n\t\t 0.37271526 0.45474154 0.82282877 0.34082672 0.45474479 0.87350887 0.17375103 0.45474479\n\t\t 0.87350887 0.17375103 0.45474154 0.82282877 0.34082672 0.7035836 0.65652055 0.27193892\n\t\t 0.70358437 0.69695765 0.13863252 0.70358437 0.69695765 0.13863252 0.7035836 0.65652055\n\t\t 0.27193892 0.88681763 0.42694405 0.17684278 0.88681704 0.45324132 0.090154923 0.88681704\n\t\t 0.45324132 0.090154923 0.88681763 0.42694405 0.17684278 0.97271937 0.21432704 0.088774763\n\t\t 0.97271937 0.22752759 0.045257445 0.97271937 0.22752759 0.045257445 0.97271937 0.21432704\n\t\t 0.088774763 0.99696076 0.071974352 0.029813489 0.99696088 0.076407239 0.015197848\n\t\t 0.99696088 0.076407239 0.015197848 0.99696076 0.071974352 0.029813489 0.99977756\n\t\t 0.019483782 0.0080727441 0.99977756 0.020683967 0.0041143801 0.021308452 0.99977303\n\t\t -1.1221499e-06 0.021304652 0.98056412 0.195039 0.075041987 0.97802049 0.19453721\n\t\t 0.075043932 0.99718022 -6.5094093e-07 0.075043932 0.99718022 -6.5094093e-07 0.075041987\n\t\t 0.97802049 0.19453721;\n\tsetAttr \".n[11454:11619]\" -type \"float3\"  0.22674616 0.95523953 0.19000958 0.22674623\n\t\t 0.9739539 -5.8511165e-07 0.22674623 0.9739539 -5.8511165e-07 0.22674616 0.95523953\n\t\t 0.19000958 0.45474479 0.87350887 0.17375103 0.45474479 0.89062184 -3.0032533e-07\n\t\t 0.45474479 0.89062184 -3.0032533e-07 0.45474479 0.87350887 0.17375103 0.70358437\n\t\t 0.69695765 0.13863252 0.70358407 0.71061212 -1.8376507e-07 0.70358407 0.71061212\n\t\t -1.8376507e-07 0.70358437 0.69695765 0.13863252 0.88681704 0.45324132 0.090154923\n\t\t 0.88681698 0.4621208 -1.019618e-06 0.88681698 0.4621208 -1.019618e-06 0.88681704\n\t\t 0.45324132 0.090154923 0.97271937 0.22752759 0.045257445 0.97271943 0.2319846 -6.2990017e-07\n\t\t 0.97271943 0.2319846 -6.2990017e-07 0.97271937 0.22752759 0.045257445 0.99696088\n\t\t 0.076407239 0.015197848 0.99696082 0.077904046 -1.8334427e-08 0.99696082 0.077904046\n\t\t -1.8334427e-08 0.99696088 0.076407239 0.015197848 0.99977756 0.020683967 0.0041143801\n\t\t 0.99977756 0.021089198 6.0506533e-09 0.021304639 0.9805631 -0.19504394 0.021308452\n\t\t 0.99977303 -1.1221499e-06 0.075043932 0.99718022 -6.5094093e-07 0.075041994 0.97801989\n\t\t -0.19453989 0.075041994 0.97801989 -0.19453989 0.075043932 0.99718022 -6.5094093e-07\n\t\t 0.22674623 0.9739539 -5.8511165e-07 0.2267462 0.9552393 -0.19001061 0.2267462 0.9552393\n\t\t -0.19001061 0.22674623 0.9739539 -5.8511165e-07 0.45474479 0.89062184 -3.0032533e-07\n\t\t 0.4547435 0.87350953 -0.1737514 0.4547435 0.87350953 -0.1737514 0.45474479 0.89062184\n\t\t -3.0032533e-07 0.70358407 0.71061212 -1.8376507e-07 0.70358312 0.6969592 -0.13863109\n\t\t 0.70358312 0.6969592 -0.13863109 0.70358407 0.71061212 -1.8376507e-07 0.88681698\n\t\t 0.4621208 -1.019618e-06 0.88681698 0.45324147 -0.090154178 0.88681698 0.45324147\n\t\t -0.090154178 0.88681698 0.4621208 -1.019618e-06 0.97271943 0.2319846 -6.2990017e-07\n\t\t 0.97271937 0.22752719 -0.045257788 0.97271937 0.22752719 -0.045257788 0.97271943\n\t\t 0.2319846 -6.2990017e-07 0.99696082 0.077904046 -1.8334427e-08 0.99696088 0.076407202\n\t\t -0.015197842 0.99696088 0.076407202 -0.015197842 0.99696082 0.077904046 -1.8334427e-08\n\t\t 0.99977756 0.021089198 6.0506533e-09 0.99977756 0.020683914 -0.004114388 0.021300819\n\t\t 0.92367035 -0.38259557 0.021304639 0.9805631 -0.19504394 0.075041994 0.97801989 -0.19453989\n\t\t 0.075041093 0.92127484 -0.38160381 0.075041093 0.92127484 -0.38160381 0.075041994\n\t\t 0.97801989 -0.19453989 0.2267462 0.9552393 -0.19001061 0.22674616 0.89981556 -0.37271735\n\t\t 0.22674616 0.89981556 -0.37271735 0.2267462 0.9552393 -0.19001061 0.4547435 0.87350953\n\t\t -0.1737514 0.4547424 0.82282758 -0.34082869 0.4547424 0.82282758 -0.34082869 0.4547435\n\t\t 0.87350953 -0.1737514 0.70358312 0.6969592 -0.13863109 0.70358312 0.65652156 -0.27193794\n\t\t 0.70358312 0.65652156 -0.27193794 0.70358312 0.6969592 -0.13863109 0.88681698 0.45324147\n\t\t -0.090154178 0.88681751 0.42694494 -0.17684132 0.88681751 0.42694494 -0.17684132\n\t\t 0.88681698 0.45324147 -0.090154178 0.97271937 0.22752719 -0.045257788 0.97271967\n\t\t 0.21432589 -0.08877454 0.97271967 0.21432589 -0.08877454 0.97271937 0.22752719 -0.045257788\n\t\t 0.99696088 0.076407202 -0.015197842 0.99696088 0.071973935 -0.029813353 0.99696088\n\t\t 0.071973935 -0.029813353 0.99696088 0.076407202 -0.015197842 0.99977756 0.020683914\n\t\t -0.004114388 0.99977767 0.019483782 -0.0080727404 0.021298852 0.8312791 -0.55544698\n\t\t 0.021300819 0.92367035 -0.38259557 0.075041093 0.92127484 -0.38160381 0.075042404\n\t\t 0.82912654 -0.55400169 0.075042404 0.82912654 -0.55400169 0.075041093 0.92127484\n\t\t -0.38160381 0.22674616 0.89981556 -0.37271735 0.22674723 0.80981374 -0.54109854 0.22674723\n\t\t 0.80981374 -0.54109854 0.22674616 0.89981556 -0.37271735 0.4547424 0.82282758 -0.34082869\n\t\t 0.45474091 0.74052197 -0.49481091 0.45474091 0.74052197 -0.49481091 0.4547424 0.82282758\n\t\t -0.34082869 0.70358312 0.65652156 -0.27193794 0.70358253 0.5908497 -0.39480153 0.70358253\n\t\t 0.5908497 -0.39480153 0.70358312 0.65652156 -0.27193794 0.88681751 0.42694494 -0.17684132\n\t\t 0.88681692 0.38423938 -0.25674102 0.88681692 0.38423938 -0.25674102 0.88681751 0.42694494\n\t\t -0.17684132 0.97271967 0.21432589 -0.08877454 0.97271919 0.19288892 -0.12888463 0.97271919\n\t\t 0.19288892 -0.12888463 0.97271967 0.21432589 -0.08877454 0.99696088 0.071973935 -0.029813353\n\t\t 0.99696082 0.064774863 -0.043282781 0.99696082 0.064774863 -0.043282781 0.99696088\n\t\t 0.071973935 -0.029813353 0.99977767 0.019483782 -0.0080727404 0.99977762 0.017534846\n\t\t -0.011715957 0.021180594 0.70689672 -0.70699954 0.021298852 0.8312791 -0.55544698\n\t\t 0.075042404 0.82912654 -0.55400169 0.074927233 0.70507526 -0.70516294 0.074927233\n\t\t 0.70507526 -0.70516294 0.075042404 0.82912654 -0.55400169 0.22674723 0.80981374 -0.54109854\n\t\t 0.2266413 0.68867224 -0.68874109 0.2266413 0.68867224 -0.68874109 0.22674723 0.80981374\n\t\t -0.54109854 0.45474091 0.74052197 -0.49481091 0.45466208 0.62976831 -0.62982082 0.45466208\n\t\t 0.62976831 -0.62982082 0.45474091 0.74052197 -0.49481091 0.70358253 0.5908497 -0.39480153\n\t\t 0.70354295 0.50249255 -0.50252217 0.70354295 0.50249255 -0.50252217 0.70358253 0.5908497\n\t\t -0.39480153 0.88681692 0.38423938 -0.25674102 0.88680476 0.32677984 -0.32679084 0.88680476\n\t\t 0.32677984 -0.32679084 0.88681692 0.38423938 -0.25674102 0.97271919 0.19288892 -0.12888463\n\t\t 0.97271734 0.16404243 -0.1640456 0.97271734 0.16404243 -0.1640456 0.97271919 0.19288892\n\t\t -0.12888463 0.99696082 0.064774863 -0.043282781 0.99696082 0.055087015 -0.055086356\n\t\t 0.99696082 0.055087015 -0.055086356 0.99696082 0.064774863 -0.043282781 0.99977762\n\t\t 0.017534846 -0.011715957 0.99977773 0.014912208 -0.014905386 0.021179201 0.55526674\n\t\t -0.83140278 0.021180594 0.70689672 -0.70699954 0.074927233 0.70507526 -0.70516294\n\t\t 0.074926041 0.5539571 -0.82916683 0.074926041 0.5539571 -0.82916683 0.074927233 0.70507526\n\t\t -0.70516294 0.2266413 0.68867224 -0.68874109 0.22664125 0.54107773 -0.80985713 0.22664125\n\t\t 0.54107773 -0.80985713 0.2266413 0.68867224 -0.68874109 0.45466208 0.62976831 -0.62982082\n\t\t 0.45466375 0.49481833 -0.74056441;\n\tsetAttr \".n[11620:11785]\" -type \"float3\"  0.45466375 0.49481833 -0.74056441 0.45466208\n\t\t 0.62976831 -0.62982082 0.70354295 0.50249255 -0.50252217 0.70354545 0.39482981 -0.59087497\n\t\t 0.70354545 0.39482981 -0.59087497 0.70354295 0.50249255 -0.50252217 0.88680476 0.32677984\n\t\t -0.32679084 0.88680655 0.25676557 -0.38424686 0.88680655 0.25676557 -0.38424686 0.88680476\n\t\t 0.32677984 -0.32679084 0.97271734 0.16404243 -0.1640456 0.97271717 0.12889302 -0.1928938\n\t\t 0.97271717 0.12889302 -0.1928938 0.97271734 0.16404243 -0.1640456 0.99696082 0.055087015\n\t\t -0.055086356 0.99696052 0.043282606 -0.064779058 0.99696052 0.043282606 -0.064779058\n\t\t 0.99696082 0.055087015 -0.055086356 0.99977773 0.014912208 -0.014905386 0.99977767\n\t\t 0.011716531 -0.017531462 0.021295182 0.38259706 -0.92366982 0.021179201 0.55526674\n\t\t -0.83140278 0.074926041 0.5539571 -0.82916683 0.075040512 0.38160309 -0.92127514\n\t\t 0.075040512 0.38160309 -0.92127514 0.074926041 0.5539571 -0.82916683 0.22664125 0.54107773\n\t\t -0.80985713 0.22674593 0.37271178 -0.89981788 0.22674593 0.37271178 -0.89981788 0.22664125\n\t\t 0.54107773 -0.80985713 0.45466375 0.49481833 -0.74056441 0.45474178 0.34082308 -0.8228302\n\t\t 0.45474178 0.34082308 -0.8228302 0.45466375 0.49481833 -0.74056441 0.70354545 0.39482981\n\t\t -0.59087497 0.70358545 0.27193838 -0.65651876 0.70358545 0.27193838 -0.65651876 0.70354545\n\t\t 0.39482981 -0.59087497 0.88680655 0.25676557 -0.38424686 0.88681608 0.17684519 -0.42694601\n\t\t 0.88681608 0.17684519 -0.42694601 0.88680655 0.25676557 -0.38424686 0.97271717 0.12889302\n\t\t -0.1928938 0.97271746 0.08877635 -0.21433499 0.97271746 0.08877635 -0.21433499 0.97271717\n\t\t 0.12889302 -0.1928938 0.99696052 0.043282606 -0.064779058 0.99696046 0.029812442\n\t\t -0.071980037 0.99696046 0.029812442 -0.071980037 0.99696052 0.043282606 -0.064779058\n\t\t 0.99977767 0.011716531 -0.017531462 0.99977756 0.0080704018 -0.019484814 0.021299545\n\t\t 0.19504546 -0.98056293 0.021295182 0.38259706 -0.92366982 0.075040512 0.38160309\n\t\t -0.92127514 0.075041056 0.19453955 -0.97801995 0.075041056 0.19453955 -0.97801995\n\t\t 0.075040512 0.38160309 -0.92127514 0.22674593 0.37271178 -0.89981788 0.22674732 0.19000767\n\t\t -0.95523965 0.22674732 0.19000767 -0.95523965 0.22674593 0.37271178 -0.89981788 0.45474178\n\t\t 0.34082308 -0.8228302 0.45474443 0.17375025 -0.87350929 0.45474443 0.17375025 -0.87350929\n\t\t 0.45474178 0.34082308 -0.8228302 0.70358545 0.27193838 -0.65651876 0.70358455 0.13863267\n\t\t -0.69695741 0.70358455 0.13863267 -0.69695741 0.70358545 0.27193838 -0.65651876 0.88681608\n\t\t 0.17684519 -0.42694601 0.88681531 0.090154558 -0.4532446 0.88681531 0.090154558 -0.4532446\n\t\t 0.88681608 0.17684519 -0.42694601 0.97271746 0.08877635 -0.21433499 0.97271818 0.045257609\n\t\t -0.22753261 0.97271818 0.045257609 -0.22753261 0.97271746 0.08877635 -0.21433499\n\t\t 0.99696046 0.029812442 -0.071980037 0.99696076 0.015198234 -0.076408409 0.99696076\n\t\t 0.015198234 -0.076408409 0.99696046 0.029812442 -0.071980037 0.99977756 0.0080704018\n\t\t -0.019484814 0.99977756 0.0041142469 -0.020684486 0.021302722 1.3547622e-06 -0.99977303\n\t\t 0.021299545 0.19504546 -0.98056293 0.075041056 0.19453955 -0.97801995 0.075042009\n\t\t 2.6704811e-08 -0.9971804 0.075042009 2.6704811e-08 -0.9971804 0.075041056 0.19453955\n\t\t -0.97801995 0.22674732 0.19000767 -0.95523965 0.22674684 -7.995335e-07 -0.97395378\n\t\t 0.22674684 -7.995335e-07 -0.97395378 0.22674732 0.19000767 -0.95523965 0.45474443\n\t\t 0.17375025 -0.87350929 0.45474264 -2.2619005e-08 -0.89062285 0.45474264 -2.2619005e-08\n\t\t -0.89062285 0.45474443 0.17375025 -0.87350929 0.70358455 0.13863267 -0.69695741 0.70358437\n\t\t -1.2791473e-07 -0.71061176 0.70358437 -1.2791473e-07 -0.71061176 0.70358455 0.13863267\n\t\t -0.69695741 0.88681531 0.090154558 -0.4532446 0.8868199 -4.5229706e-07 -0.46211523\n\t\t 0.8868199 -4.5229706e-07 -0.46211523 0.88681531 0.090154558 -0.4532446 0.97271818\n\t\t 0.045257609 -0.22753261 0.97272009 -2.2431961e-07 -0.23198189 0.97272009 -2.2431961e-07\n\t\t -0.23198189 0.97271818 0.045257609 -0.22753261 0.99696076 0.015198234 -0.076408409\n\t\t 0.9969607 -3.4407631e-08 -0.077905424 0.9969607 -3.4407631e-08 -0.077905424 0.99696076\n\t\t 0.015198234 -0.076408409 0.99977756 0.0041142469 -0.020684486 0.99977767 -2.877923e-09\n\t\t -0.021089733 -0.021181786 -0.99977565 1.7560723e-08 -0.014629101 -0.99978548 0.014661994\n\t\t -0.075959027 -0.99703747 0.012106829 -0.074902736 -0.99719083 -1.0061126e-07 -0.074902736\n\t\t -0.99719083 -1.0061126e-07 -0.075959027 -0.99703747 0.012106829 -0.22823201 -0.97352415\n\t\t 0.012683718 -0.22703791 -0.97388589 2.3100029e-08 -0.22703791 -0.97388589 2.3100029e-08\n\t\t -0.22823201 -0.97352415 0.012683718 -0.45700565 -0.88939404 0.011133941 -0.45662376\n\t\t -0.88965988 1.2417304e-07 -0.45662376 -0.88965988 1.2417304e-07 -0.45700565 -0.88939404\n\t\t 0.011133941 -0.70692879 -0.70721918 0.0096225329 -0.70703155 -0.70718211 1.5276163e-07\n\t\t -0.70703155 -0.70718211 1.5276163e-07 -0.70692879 -0.70721918 0.0096225329 -0.88917226\n\t\t -0.45744288 0.01088934 -0.88956922 -0.45680052 9.2377093e-08 -0.88956922 -0.45680052\n\t\t 9.2377093e-08 -0.88917226 -0.45744288 0.01088934 -0.97345334 -0.22855835 0.012232821\n\t\t -0.97385401 -0.22717497 1.4580793e-07 -0.97385401 -0.22717497 1.4580793e-07 -0.97345334\n\t\t -0.22855835 0.012232821 -0.99703801 -0.075990744 0.011857213 -0.99718654 -0.07496047\n\t\t 3.3757757e-07 -0.99718654 -0.07496047 3.3757757e-07 -0.99703801 -0.075990744 0.011857213\n\t\t -0.99978548 -0.014661876 0.014628915 -0.99977529 -0.021199061 2.4685681e-07 -0.021199048\n\t\t 6.6299464e-08 0.99977529 -0.021182897 8.2474394e-08 0.99977559 -0.07490325 -3.6495706e-08\n\t\t 0.99719083 -0.074960925 3.9404711e-08 0.99718654 -0.074960925 3.9404711e-08 0.99718654\n\t\t -0.07490325 -3.6495706e-08 0.99719083 -0.22703946 6.4071266e-08 0.9738856 -0.2271755\n\t\t 1.3800103e-07 0.97385389 -0.2271755 1.3800103e-07 0.97385389 -0.22703946 6.4071266e-08\n\t\t 0.9738856 -0.45662281 1.3245037e-07 0.88966042 -0.45679998 1.3345451e-07 0.8895694\n\t\t -0.45679998 1.3345451e-07 0.8895694 -0.45662281 1.3245037e-07 0.88966042 -0.70703024\n\t\t 1.674471e-07 0.70718336 -0.70718294 8.3068073e-08 0.70703059 -0.70718294 8.3068073e-08\n\t\t 0.70703059 -0.70703024 1.674471e-07 0.70718336;\n\tsetAttr \".n[11786:11951]\" -type \"float3\"  -0.88956934 1.5520095e-07 0.45680019\n\t\t -0.8896606 7.9042223e-08 0.45662239 -0.8896606 7.9042223e-08 0.45662239 -0.88956934\n\t\t 1.5520095e-07 0.45680019 -0.97385389 1.7596179e-07 0.22717528 -0.97388589 9.7725689e-08\n\t\t 0.22703804 -0.97388589 9.7725689e-08 0.22703804 -0.97385389 1.7596179e-07 0.22717528\n\t\t -0.99718654 2.7136997e-07 0.074960656 -0.99719083 1.3657936e-07 0.074902683 -0.99719083\n\t\t 1.3657936e-07 0.074902683 -0.99718654 2.7136997e-07 0.074960656 -0.99977529 1.4797359e-07\n\t\t 0.021200011 -0.99977565 7.2759079e-08 0.021181459 -0.021182986 -1.2435413e-07 -0.99977559\n\t\t -0.014630898 -0.014662711 -0.99978542 -0.075961389 -0.012105091 -0.99703729 -0.07490284\n\t\t -6.7129513e-08 -0.99719089 -0.07490284 -6.7129513e-08 -0.99719089 -0.075961389 -0.012105091\n\t\t -0.99703729 -0.22823457 -0.01268307 -0.97352362 -0.22703893 -1.133392e-07 -0.97388572\n\t\t -0.22703893 -1.133392e-07 -0.97388572 -0.22823457 -0.01268307 -0.97352362 -0.45700485\n\t\t -0.011135908 -0.88939446 -0.45662341 -1.3895789e-07 -0.88966012 -0.45662341 -1.3895789e-07\n\t\t -0.88966012 -0.45700485 -0.011135908 -0.88939446 -0.70692766 -0.0096213361 -0.70722032\n\t\t -0.7070297 -1.4024161e-07 -0.70718384 -0.7070297 -1.4024161e-07 -0.70718384 -0.70692766\n\t\t -0.0096213361 -0.70722032 -0.88917238 -0.010885173 -0.45744297 -0.88956857 -1.1312937e-07\n\t\t -0.4568015 -0.88956857 -1.1312937e-07 -0.4568015 -0.88917238 -0.010885173 -0.45744297\n\t\t -0.97345376 -0.012228435 -0.22855695 -0.97385401 -1.0359072e-07 -0.22717477 -0.97385401\n\t\t -1.0359072e-07 -0.22717477 -0.97345376 -0.012228435 -0.22855695 -0.99703807 -0.011855925\n\t\t -0.07599061 -0.99718642 -1.3639253e-07 -0.07496088 -0.99718642 -1.3639253e-07 -0.07496088\n\t\t -0.99703807 -0.011855925 -0.07599061 -0.99978542 -0.01463079 -0.014664005 -0.99977517\n\t\t -7.2703294e-08 -0.021202279 8.0409727e-08 -0.99977559 -0.021182735 -0.014662519 -0.99978542\n\t\t -0.014630673 -0.012104825 -0.99703729 -0.075961359 1.9895872e-07 -0.99719083 -0.074903086\n\t\t 1.9895872e-07 -0.99719083 -0.074903086 -0.012104825 -0.99703729 -0.075961359 -0.012682861\n\t\t -0.97352374 -0.22823392 9.4594839e-08 -0.97388566 -0.22703929 9.4594839e-08 -0.97388566\n\t\t -0.22703929 -0.012682861 -0.97352374 -0.22823392 -0.011135755 -0.88939536 -0.45700309\n\t\t 1.2493711e-08 -0.88966048 -0.45662266 1.2493711e-08 -0.88966048 -0.45662266 -0.011135755\n\t\t -0.88939536 -0.45700309 -0.0096212523 -0.70722109 -0.70692706 -5.2232302e-08 -0.70718348\n\t\t -0.70703012 -5.2232302e-08 -0.70718348 -0.70703012 -0.0096212523 -0.70722109 -0.70692706\n\t\t -0.010885138 -0.45744276 -0.88917249 -8.077874e-08 -0.4568004 -0.88956928 -8.077874e-08\n\t\t -0.4568004 -0.88956928 -0.010885138 -0.45744276 -0.88917249 -0.012228469 -0.22855859\n\t\t -0.97345328 -1.3895026e-07 -0.22717546 -0.97385377 -1.3895026e-07 -0.22717546 -0.97385377\n\t\t -0.012228469 -0.22855859 -0.97345328 -0.011856051 -0.075990826 -0.99703801 -2.5915733e-07\n\t\t -0.074960828 -0.99718654 -2.5915733e-07 -0.074960828 -0.99718654 -0.011856051 -0.075990826\n\t\t -0.99703801 -0.014630898 -0.014662711 -0.99978542 -1.4451966e-07 -0.021200167 -0.99977529\n\t\t 0.99977565 6.6183247e-08 -0.02118146 0.99978548 -0.014661863 -0.01462891 0.99703741\n\t\t -0.012106816 -0.07595925 0.99719089 1.1385296e-07 -0.074902691 0.99719089 1.1385296e-07\n\t\t -0.074902691 0.99703741 -0.012106816 -0.07595925 0.97352391 -0.012683666 -0.22823313\n\t\t 0.97388589 2.7970785e-08 -0.22703804 0.97388589 2.7970785e-08 -0.22703804 0.97352391\n\t\t -0.012683666 -0.22823313 0.88939428 -0.011133877 -0.4570052 0.8896606 -6.4440805e-08\n\t\t -0.45662245 0.8896606 -6.4440805e-08 -0.45662245 0.88939428 -0.011133877 -0.4570052\n\t\t 0.70721906 -0.009622517 -0.70692897 0.70718294 -1.3318002e-07 -0.70703059 0.70718294\n\t\t -1.3318002e-07 -0.70703059 0.70721906 -0.009622517 -0.70692897 0.45744145 -0.010889402\n\t\t -0.88917309 0.45679998 -1.5353325e-07 -0.8895694 0.45679998 -1.5353325e-07 -0.8895694\n\t\t 0.45744145 -0.010889402 -0.88917309 0.22855793 -0.012232887 -0.9734534 0.2271755\n\t\t -2.1079219e-07 -0.97385389 0.2271755 -2.1079219e-07 -0.97385389 0.22855793 -0.012232887\n\t\t -0.9734534 0.075990915 -0.011857192 -0.99703801 0.07496091 -3.1836743e-07 -0.99718654\n\t\t 0.07496091 -3.1836743e-07 -0.99718654 0.075990915 -0.011857192 -0.99703801 0.014661819\n\t\t -0.014629207 -0.99978542 0.021199048 -2.7951455e-07 -0.99977529 0.021181813 -0.99977565\n\t\t 3.0800484e-07 0.014629244 -0.99978548 -0.014661668 0.07596042 -0.99703735 -0.012106505\n\t\t 0.074904814 -0.99719059 4.2404159e-07 0.074904814 -0.99719059 4.2404159e-07 0.07596042\n\t\t -0.99703735 -0.012106505 0.22823422 -0.97352368 -0.012683401 0.2270422 -0.97388494\n\t\t 2.9706388e-07 0.2270422 -0.97388494 2.9706388e-07 0.22823422 -0.97352368 -0.012683401\n\t\t 0.45700496 -0.88939446 -0.011133647 0.45662472 -0.8896594 1.616268e-07 0.45662472\n\t\t -0.8896594 1.616268e-07 0.45700496 -0.88939446 -0.011133647 0.70692843 -0.70721966\n\t\t -0.0096223075 0.70703161 -0.70718199 8.6648924e-08 0.70703161 -0.70718199 8.6648924e-08\n\t\t 0.70692843 -0.70721966 -0.0096223075 0.88917279 -0.45744208 -0.01088919 0.88956952\n\t\t -0.45679978 4.4320391e-08 0.88956952 -0.45679978 4.4320391e-08 0.88917279 -0.45744208\n\t\t -0.01088919 0.97345328 -0.22855882 -0.01223275 0.97385359 -0.22717656 -5.3066334e-08\n\t\t 0.97385359 -0.22717656 -5.3066334e-08 0.97345328 -0.22855882 -0.01223275 0.99703795\n\t\t -0.075991102 -0.01185719 0.99718642 -0.074962102 -3.2077872e-07 0.99718642 -0.074962102\n\t\t -3.2077872e-07 0.99703795 -0.075991102 -0.01185719 0.99978548 -0.014661863 -0.01462891\n\t\t 0.99977529 -0.021199575 -2.582664e-07 0.021181813 0.99977565 -3.0800484e-07 0.014629244\n\t\t 0.99978548 0.014661668 0.07596042 0.99703735 0.012106505 0.074904814 0.99719059 -4.2404159e-07\n\t\t 0.074904814 0.99719059 -4.2404159e-07 0.07596042 0.99703735 0.012106505 0.22823422\n\t\t 0.97352368 0.012683401 0.2270422 0.97388494 -2.9706388e-07 0.2270422 0.97388494 -2.9706388e-07\n\t\t 0.22823422 0.97352368 0.012683401 0.45700496 0.88939446 0.011133647 0.45662472 0.8896594\n\t\t -1.616268e-07 0.45662472 0.8896594 -1.616268e-07 0.45700496 0.88939446 0.011133647\n\t\t 0.70692843 0.70721966 0.0096223075 0.70703006 0.70718354 -8.6649187e-08 0.70703006\n\t\t 0.70718354 -8.6649187e-08 0.70692843 0.70721966 0.0096223075 0.88917279 0.45744208\n\t\t 0.01088919 0.88956887 0.45680103 -4.4320586e-08 0.88956887 0.45680103 -4.4320586e-08\n\t\t 0.88917279 0.45744208 0.01088919 0.97345328 0.22855882 0.01223275 0.97385383 0.2271758\n\t\t 5.3066451e-08;\n\tsetAttr \".n[11952:12117]\" -type \"float3\"  0.97385383 0.2271758 5.3066451e-08 0.97345328\n\t\t 0.22855882 0.01223275 0.99703795 0.075991102 0.01185719 0.99718642 0.074961856 3.2077875e-07\n\t\t 0.99718642 0.074961856 3.2077875e-07 0.99703795 0.075991102 0.01185719 0.99978548\n\t\t 0.014661863 0.01462891 0.99977529 0.021199506 2.5826643e-07 0.021191057 2.9799872e-07\n\t\t 0.99977553 0.014630898 -0.014662385 0.99978542 0.075961389 -0.012104767 0.99703729\n\t\t 0.07493189 3.8085372e-07 0.99718869 0.07493189 3.8085372e-07 0.99718869 0.075961389\n\t\t -0.012104767 0.99703729 0.22823457 -0.012682754 0.97352362 0.22710748 2.2465039e-07\n\t\t 0.97386968 0.22710748 2.2465039e-07 0.97386968 0.22823457 -0.012682754 0.97352362\n\t\t 0.45700485 -0.011135617 0.88939446 0.45671219 1.6239751e-07 0.88961452 0.45671219\n\t\t 1.6239751e-07 0.88961452 0.45700485 -0.011135617 0.88939446 0.70692766 -0.0096211052\n\t\t 0.70722032 0.70710588 1.2229756e-07 0.70710772 0.70710588 1.2229756e-07 0.70710772\n\t\t 0.70692766 -0.0096211052 0.70722032 0.88917249 -0.010885024 0.45744297 0.88961416\n\t\t 3.1052046e-08 0.45671272 0.88961416 3.1052046e-08 0.45671272 0.88917249 -0.010885024\n\t\t 0.45744297 0.97345376 -0.012228359 0.22855692 0.9738701 -9.0315488e-08 0.22710586\n\t\t 0.9738701 -9.0315488e-08 0.22710586 0.97345376 -0.012228359 0.22855692 0.99703807\n\t\t -0.011855901 0.07599061 0.99718875 -2.3634811e-07 0.074931718 0.99718875 -2.3634811e-07\n\t\t 0.074931718 0.99703807 -0.011855901 0.07599061 0.99978542 -0.0146308 0.01466401 0.99977541\n\t\t -1.3510443e-07 0.021192759 -8.0409727e-08 -0.99977559 0.021183059 0.014662663 -0.99978542\n\t\t 0.014630999 0.012104825 -0.99703729 0.075961687 -1.9895872e-07 -0.99719083 0.074903414\n\t\t -1.9895872e-07 -0.99719083 0.074903414 0.012104825 -0.99703729 0.075961687 0.012682861\n\t\t -0.97352362 0.22823425 -9.4594839e-08 -0.97388554 0.22703962 -9.4594839e-08 -0.97388554\n\t\t 0.22703962 0.012682861 -0.97352362 0.22823425 0.011135755 -0.88939524 0.45700338\n\t\t -1.2493711e-08 -0.88966036 0.45662296 -1.2493711e-08 -0.88966036 0.45662296 0.011135755\n\t\t -0.88939524 0.45700338 0.0096212523 -0.70722085 0.7069273 5.2232302e-08 -0.70718324\n\t\t 0.70703036 5.2232302e-08 -0.70718324 0.70703036 0.0096212523 -0.70722085 0.7069273\n\t\t 0.010885138 -0.45744246 0.88917261 8.077874e-08 -0.4568001 0.8895694 8.077874e-08\n\t\t -0.4568001 0.8895694 0.010885138 -0.45744246 0.88917261 0.012228469 -0.22855826 0.9734534\n\t\t 1.3895026e-07 -0.22717513 0.97385389 1.3895026e-07 -0.22717513 0.97385389 0.012228469\n\t\t -0.22855826 0.9734534 0.011856051 -0.075990498 0.99703801 2.5915733e-07 -0.0749605\n\t\t 0.99718654 2.5915733e-07 -0.0749605 0.99718654 0.011856051 -0.075990498 0.99703801\n\t\t 0.014630898 -0.014662385 0.99978542 1.4451966e-07 -0.021199843 0.99977529 0.014629244\n\t\t -0.99978548 -0.014661668 2.0156814e-07 -0.99977529 -0.021198899 2.5681416e-07 -0.99718654\n\t\t -0.074960306 0.011857132 -0.99703801 -0.07599058 0.011857132 -0.99703801 -0.07599058\n\t\t 2.5681416e-07 -0.99718654 -0.074960306 4.3117197e-08 -0.97385406 -0.2271748 0.012232719\n\t\t -0.9734534 -0.22855818 0.012232719 -0.9734534 -0.22855818 4.3117197e-08 -0.97385406\n\t\t -0.2271748 2.3945702e-08 -0.88956922 -0.45680028 0.01088927 -0.88917232 -0.45744273\n\t\t 0.01088927 -0.88917232 -0.45744273 2.3945702e-08 -0.88956922 -0.45680028 6.7039544e-08\n\t\t -0.70703167 -0.70718193 0.0096224472 -0.70692891 -0.70721912 0.0096224472 -0.70692891\n\t\t -0.70721912 6.7039544e-08 -0.70703167 -0.70718193 -9.7029291e-09 -0.45662394 -0.88965982\n\t\t 0.011133808 -0.4570058 -0.88939404 0.011133808 -0.4570058 -0.88939404 -9.7029291e-09\n\t\t -0.45662394 -0.88965982 -1.267519e-07 -0.22703807 -0.97388583 0.012683567 -0.22823218\n\t\t -0.97352415 0.012683567 -0.22823218 -0.97352415 -1.267519e-07 -0.22703807 -0.97388583\n\t\t -2.5956822e-07 -0.074902907 -0.99719089 0.012106671 -0.075959198 -0.99703753 0.012106671\n\t\t -0.075959198 -0.99703753 -2.5956822e-07 -0.074902907 -0.99719089 -1.4464315e-07 -0.021181948\n\t\t -0.99977565 0.014661819 -0.014629207 -0.99978542 2.0156814e-07 -0.99977529 -0.021198899\n\t\t 0 -0.99977553 -0.021190818 0 -0.99718869 -0.074931704 2.5681416e-07 -0.99718654 -0.074960306\n\t\t 2.5681416e-07 -0.99718654 -0.074960306 0 -0.99718869 -0.074931704 0 -0.97386986 -0.22710678\n\t\t 4.3117197e-08 -0.97385406 -0.2271748 4.3117197e-08 -0.97385406 -0.2271748 0 -0.97386986\n\t\t -0.22710678 0 -0.889615 -0.45671099 2.3945702e-08 -0.88956922 -0.45680028 2.3945702e-08\n\t\t -0.88956922 -0.45680028 0 -0.889615 -0.45671099 0 -0.70710695 -0.70710671 6.7039544e-08\n\t\t -0.70703167 -0.70718193 6.7039544e-08 -0.70703167 -0.70718193 0 -0.70710695 -0.70710671\n\t\t 0 -0.45671126 -0.88961488 -9.7029291e-09 -0.45662394 -0.88965982 -9.7029291e-09 -0.45662394\n\t\t -0.88965982 0 -0.45671126 -0.88961488 0 -0.22710709 -0.97386974 -1.267519e-07 -0.22703807\n\t\t -0.97388583 -1.267519e-07 -0.22703807 -0.97388583 0 -0.22710709 -0.97386974 0 -0.074932031\n\t\t -0.99718863 -2.5956822e-07 -0.074902907 -0.99719089 -2.5956822e-07 -0.074902907 -0.99719089\n\t\t 0 -0.074932031 -0.99718863 0 -0.021191142 -0.99977553 -1.4464315e-07 -0.021181948\n\t\t -0.99977565 0 -0.99977553 -0.021190818 8.0409727e-08 -0.99977559 -0.021182735 1.9895872e-07\n\t\t -0.99719083 -0.074903086 0 -0.99718869 -0.074931704 0 -0.99718869 -0.074931704 1.9895872e-07\n\t\t -0.99719083 -0.074903086 9.4594839e-08 -0.97388566 -0.22703929 0 -0.97386986 -0.22710678\n\t\t 0 -0.97386986 -0.22710678 9.4594839e-08 -0.97388566 -0.22703929 1.2493711e-08 -0.88966048\n\t\t -0.45662266 0 -0.889615 -0.45671099 0 -0.889615 -0.45671099 1.2493711e-08 -0.88966048\n\t\t -0.45662266 -5.2232302e-08 -0.70718348 -0.70703012 0 -0.70710695 -0.70710671 0 -0.70710695\n\t\t -0.70710671 -5.2232302e-08 -0.70718348 -0.70703012 -8.077874e-08 -0.4568004 -0.88956928\n\t\t 0 -0.45671126 -0.88961488 0 -0.45671126 -0.88961488 -8.077874e-08 -0.4568004 -0.88956928\n\t\t -1.3895026e-07 -0.22717546 -0.97385377 0 -0.22710709 -0.97386974 0 -0.22710709 -0.97386974\n\t\t -1.3895026e-07 -0.22717546 -0.97385377 -2.5915733e-07 -0.074960828 -0.99718654 0\n\t\t -0.074932031 -0.99718863 0 -0.074932031 -0.99718863 -2.5915733e-07 -0.074960828 -0.99718654;\n\tsetAttr \".n[12118:12283]\" -type \"float3\"  -1.4451966e-07 -0.021200167 -0.99977529\n\t\t 0 -0.021191142 -0.99977553 -0.014629101 -0.99978548 0.014661994 -2.0156814e-07 -0.99977529\n\t\t 0.021199223 -2.5681416e-07 -0.99718654 0.074960634 -0.011857132 -0.99703801 0.075990908\n\t\t -0.011857132 -0.99703801 0.075990908 -2.5681416e-07 -0.99718654 0.074960634 -4.3117197e-08\n\t\t -0.97385395 0.22717513 -0.012232719 -0.97345328 0.22855851 -0.012232719 -0.97345328\n\t\t 0.22855851 -4.3117197e-08 -0.97385395 0.22717513 -2.3945702e-08 -0.8895691 0.45680058\n\t\t -0.01088927 -0.8891722 0.45744303 -0.01088927 -0.8891722 0.45744303 -2.3945702e-08\n\t\t -0.8895691 0.45680058 -6.7039544e-08 -0.70703143 0.70718217 -0.0096224481 -0.70692867\n\t\t 0.70721936 -0.0096224481 -0.70692867 0.70721936 -6.7039544e-08 -0.70703143 0.70718217\n\t\t 9.7029291e-09 -0.45662364 0.88965994 -0.011133808 -0.4570055 0.88939416 -0.011133808\n\t\t -0.4570055 0.88939416 9.7029291e-09 -0.45662364 0.88965994 1.267519e-07 -0.22703774\n\t\t 0.97388595 -0.012683567 -0.22823185 0.97352427 -0.012683567 -0.22823185 0.97352427\n\t\t 1.267519e-07 -0.22703774 0.97388595 2.5956822e-07 -0.074902579 0.99719089 -0.012106671\n\t\t -0.07595887 0.99703753 -0.012106671 -0.07595887 0.99703753 2.5956822e-07 -0.074902579\n\t\t 0.99719089 1.4464315e-07 -0.021181624 0.99977565 -0.014661819 -0.014628868 0.99978542\n\t\t -2.0156814e-07 -0.99977529 0.021199223 0 -0.99977553 0.021191142 0 -0.99718869 0.074932031\n\t\t -2.5681416e-07 -0.99718654 0.074960634 -2.5681416e-07 -0.99718654 0.074960634 0 -0.99718869\n\t\t 0.074932031 0 -0.97386974 0.22710711 -4.3117197e-08 -0.97385395 0.22717513 -4.3117197e-08\n\t\t -0.97385395 0.22717513 0 -0.97386974 0.22710711 0 -0.88961488 0.45671129 -2.3945702e-08\n\t\t -0.8895691 0.45680058 -2.3945702e-08 -0.8895691 0.45680058 0 -0.88961488 0.45671129\n\t\t 0 -0.70710671 0.70710695 -6.7039544e-08 -0.70703143 0.70718217 -6.7039544e-08 -0.70703143\n\t\t 0.70718217 0 -0.70710671 0.70710695 0 -0.45671096 0.889615 9.7029291e-09 -0.45662364\n\t\t 0.88965994 9.7029291e-09 -0.45662364 0.88965994 0 -0.45671096 0.889615 0 -0.22710676\n\t\t 0.97386986 1.267519e-07 -0.22703774 0.97388595 1.267519e-07 -0.22703774 0.97388595\n\t\t 0 -0.22710676 0.97386986 0 -0.074931704 0.99718863 2.5956822e-07 -0.074902579 0.99719089\n\t\t 2.5956822e-07 -0.074902579 0.99719089 0 -0.074931704 0.99718863 0 -0.021190818 0.99977553\n\t\t 1.4464315e-07 -0.021181624 0.99977565 0 -0.99977553 0.021191142 -8.0409727e-08 -0.99977559\n\t\t 0.021183059 -1.9895872e-07 -0.99719083 0.074903414 0 -0.99718869 0.074932031 0 -0.99718869\n\t\t 0.074932031 -1.9895872e-07 -0.99719083 0.074903414 -9.4594839e-08 -0.97388554 0.22703962\n\t\t 0 -0.97386974 0.22710711 0 -0.97386974 0.22710711 -9.4594839e-08 -0.97388554 0.22703962\n\t\t -1.2493711e-08 -0.88966036 0.45662296 0 -0.88961488 0.45671129 0 -0.88961488 0.45671129\n\t\t -1.2493711e-08 -0.88966036 0.45662296 5.2232302e-08 -0.70718324 0.70703036 0 -0.70710671\n\t\t 0.70710695 0 -0.70710671 0.70710695 5.2232302e-08 -0.70718324 0.70703036 8.077874e-08\n\t\t -0.4568001 0.8895694 0 -0.45671096 0.889615 0 -0.45671096 0.889615 8.077874e-08 -0.4568001\n\t\t 0.8895694 1.3895026e-07 -0.22717513 0.97385389 0 -0.22710676 0.97386986 0 -0.22710676\n\t\t 0.97386986 1.3895026e-07 -0.22717513 0.97385389 2.5915733e-07 -0.0749605 0.99718654\n\t\t 0 -0.074931704 0.99718863 0 -0.074931704 0.99718863 2.5915733e-07 -0.0749605 0.99718654\n\t\t 1.4451966e-07 -0.021199843 0.99977529 0 -0.021190818 0.99977553 0.014629244 0.99978548\n\t\t 0.014661668 2.0156814e-07 0.99977529 0.021198899 2.5681416e-07 0.99718654 0.074960306\n\t\t 0.011857132 0.99703801 0.07599058 0.011857132 0.99703801 0.07599058 2.5681416e-07\n\t\t 0.99718654 0.074960306 4.3117197e-08 0.97385406 0.2271748 0.012232719 0.9734534 0.22855818\n\t\t 0.012232719 0.9734534 0.22855818 4.3117197e-08 0.97385406 0.2271748 2.3945702e-08\n\t\t 0.88956922 0.45680028 0.01088927 0.88917232 0.45744273 0.01088927 0.88917232 0.45744273\n\t\t 2.3945702e-08 0.88956922 0.45680028 6.7039544e-08 0.70703167 0.70718193 0.0096224481\n\t\t 0.70692891 0.70721912 0.0096224481 0.70692891 0.70721912 6.7039544e-08 0.70703167\n\t\t 0.70718193 -9.7029291e-09 0.45662394 0.88965982 0.011133808 0.4570058 0.88939404\n\t\t 0.011133808 0.4570058 0.88939404 -9.7029291e-09 0.45662394 0.88965982 -1.267519e-07\n\t\t 0.22703807 0.97388583 0.012683567 0.22823218 0.97352415 0.012683567 0.22823218 0.97352415\n\t\t -1.267519e-07 0.22703807 0.97388583 -2.5956822e-07 0.074902907 0.99719089 0.012106671\n\t\t 0.075959198 0.99703753 0.012106671 0.075959198 0.99703753 -2.5956822e-07 0.074902907\n\t\t 0.99719089 -1.4464315e-07 0.021181948 0.99977565 0.014661819 0.014629194 0.99978542\n\t\t 2.0156814e-07 0.99977529 0.021198899 7.9674805e-08 0.99977559 0.02118279 1.9418097e-07\n\t\t 0.99719083 0.074903093 2.5681416e-07 0.99718654 0.074960306 2.5681416e-07 0.99718654\n\t\t 0.074960306 1.9418097e-07 0.99719083 0.074903093 9.326105e-08 0.97388572 0.22703883\n\t\t 4.3117197e-08 0.97385406 0.2271748 4.3117197e-08 0.97385406 0.2271748 9.326105e-08\n\t\t 0.97388572 0.22703883 1.0240246e-08 0.8896603 0.4566229 2.3945702e-08 0.88956922\n\t\t 0.45680028 2.3945702e-08 0.88956922 0.45680028 1.0240246e-08 0.8896603 0.4566229\n\t\t -4.5840281e-08 0.70718259 0.70703101 6.7039544e-08 0.70703167 0.70718193 6.7039544e-08\n\t\t 0.70703167 0.70718193 -4.5840281e-08 0.70718259 0.70703101 -7.4417017e-08 0.45679837\n\t\t 0.88957018 -9.7029291e-09 0.45662394 0.88965982 -9.7029291e-09 0.45662394 0.88965982\n\t\t -7.4417017e-08 0.45679837 0.88957018 -1.2050494e-07 0.22717641 0.97385365 -1.267519e-07\n\t\t 0.22703807 0.97388583 -1.267519e-07 0.22703807 0.97388583 -1.2050494e-07 0.22717641\n\t\t 0.97385365 -2.2522629e-07 0.074964307 0.9971863 -2.5956822e-07 0.074902907 0.99719089\n\t\t -2.5956822e-07 0.074902907 0.99719089 -2.2522629e-07 0.074964307 0.9971863 -1.240851e-07\n\t\t 0.02120208 0.99977523 -1.4464315e-07 0.021181948 0.99977565 7.9674805e-08 0.99977559\n\t\t 0.02118279 0.0081435405 0.99981141 0.017633514 0.0027772787 0.99664575 0.081790201\n\t\t 1.9418097e-07 0.99719083 0.074903093;\n\tsetAttr \".n[12284:12449]\" -type \"float3\"  1.9418097e-07 0.99719083 0.074903093\n\t\t 0.0027772787 0.99664575 0.081790201 0.0097294189 0.97310984 0.23013601 9.326105e-08\n\t\t 0.97388572 0.22703883 9.326105e-08 0.97388572 0.22703883 0.0097294189 0.97310984\n\t\t 0.23013601 0.071542956 0.85187769 0.51883125 1.0240246e-08 0.8896603 0.4566229 1.0240246e-08\n\t\t 0.8896603 0.4566229 0.071542956 0.85187769 0.51883125 0.18791512 0.450039 0.87301373\n\t\t -4.5840281e-08 0.70718259 0.70703101 -4.5840281e-08 0.70718259 0.70703101 0.18791512\n\t\t 0.450039 0.87301373 0.13534361 0.21080218 0.96811378 -7.4417017e-08 0.45679837 0.88957018\n\t\t -7.4417017e-08 0.45679837 0.88957018 0.13534361 0.21080218 0.96811378 -0.042793121\n\t\t 0.21579731 0.97549993 -1.2050494e-07 0.22717641 0.97385365 -1.2050494e-07 0.22717641\n\t\t 0.97385365 -0.042793121 0.21579731 0.97549993 0.017907994 0.047466539 0.9987123 -2.2522629e-07\n\t\t 0.074964307 0.9971863 -2.2522629e-07 0.074964307 0.9971863 0.017907994 0.047466539\n\t\t 0.9987123 0.010986734 0.011021238 0.99987894 -1.240851e-07 0.02120208 0.99977523\n\t\t 0.99897629 0.031981658 0.031991057 0.99974811 0.013720243 0.017759824 0.99708742\n\t\t 0.070412464 0.029302692 0.99454612 0.090521231 0.051806848 0.99454612 0.090521231\n\t\t 0.051806848 0.99708742 0.070412464 0.029302692 0.97531074 0.20981567 0.068893187\n\t\t 0.97173387 0.22668433 0.065935485 0.97173387 0.22668433 0.065935485 0.97531074 0.20981567\n\t\t 0.068893187 0.89029491 0.43575922 0.13224526 0.89076495 0.4507927 0.057652753 0.89076495\n\t\t 0.4507927 0.057652753 0.89029491 0.43575922 0.13224526 0.70013368 0.69332802 0.17061366\n\t\t 0.70305181 0.70907283 0.054165229 0.70305181 0.70907283 0.054165229 0.70013368 0.69332802\n\t\t 0.17061366 0.44241562 0.88407522 0.15059651 0.44563282 0.89243823 0.07046555 0.44563282\n\t\t 0.89243823 0.07046555 0.44241562 0.88407522 0.15059651 0.2139366 0.97185886 0.098597415\n\t\t 0.23029649 0.96992314 0.07881958 0.23029649 0.96992314 0.07881958 0.2139366 0.97185886\n\t\t 0.098597415 0.058668412 0.99756724 0.037651192 0.095327131 0.99385214 0.056309272\n\t\t 0.095327131 0.99385214 0.056309272 0.058668412 0.99756724 0.037651192 0.0081435405\n\t\t 0.99981141 0.017633514 0.031989101 0.99897641 0.03198237 -0.014662519 -0.99978542\n\t\t -0.014630673 -0.021200007 -0.99977529 1.9203767e-08 -0.074960656 -0.99718654 -1.0233283e-07\n\t\t -0.075990662 -0.99703801 -0.011855894 -0.075990662 -0.99703801 -0.011855894 -0.074960656\n\t\t -0.99718654 -1.0233283e-07 -0.22717528 -0.97385389 1.7629091e-08 -0.22855842 -0.97345334\n\t\t -0.012228312 -0.22855842 -0.97345334 -0.012228312 -0.22717528 -0.97385389 1.7629091e-08\n\t\t -0.45680025 -0.88956934 8.9525706e-08 -0.45744261 -0.88917255 -0.010884968 -0.45744261\n\t\t -0.88917255 -0.010884968 -0.45680025 -0.88956934 8.9525706e-08 -0.70718336 -0.70703024\n\t\t 1.0268359e-07 -0.70722097 -0.70692718 -0.0096210968 -0.70722097 -0.70692718 -0.0096210968\n\t\t -0.70718336 -0.70703024 1.0268359e-07 -0.88966042 -0.45662278 1.3295781e-07 -0.8893953\n\t\t -0.45700324 -0.011135635 -0.8893953 -0.45700324 -0.011135635 -0.88966042 -0.45662278\n\t\t 1.3295781e-07 -0.9738856 -0.22703946 2.0415401e-07 -0.97352368 -0.22823408 -0.012682752\n\t\t -0.97352368 -0.22823408 -0.012682752 -0.9738856 -0.22703946 2.0415401e-07 -0.99719089\n\t\t -0.07490325 2.7661883e-07 -0.99703735 -0.07596153 -0.01210475 -0.99703735 -0.07596153\n\t\t -0.01210475 -0.99719089 -0.07490325 2.7661883e-07 -0.99977559 -0.021182897 1.2525523e-07\n\t\t -0.99978542 -0.01463079 -0.014664005 -0.021200007 -0.99977529 1.9203767e-08 -0.02119098\n\t\t -0.99977553 1.6288412e-07 -0.074931867 -0.99718869 1.6246267e-07 -0.074960656 -0.99718654\n\t\t -1.0233283e-07 -0.074960656 -0.99718654 -1.0233283e-07 -0.074931867 -0.99718869 1.6246267e-07\n\t\t -0.22710694 -0.9738698 1.5866354e-07 -0.22717528 -0.97385389 1.7629091e-08 -0.22717528\n\t\t -0.97385389 1.7629091e-08 -0.22710694 -0.9738698 1.5866354e-07 -0.45671114 -0.88961494\n\t\t 1.4493668e-07 -0.45680025 -0.88956934 8.9525706e-08 -0.45680025 -0.88956934 8.9525706e-08\n\t\t -0.45671114 -0.88961494 1.4493668e-07 -0.70710683 -0.70710683 1.1520233e-07 -0.70718336\n\t\t -0.70703024 1.0268359e-07 -0.70718336 -0.70703024 1.0268359e-07 -0.70710683 -0.70710683\n\t\t 1.1520233e-07 -0.88961494 -0.45671111 7.4407687e-08 -0.88966042 -0.45662278 1.3295781e-07\n\t\t -0.88966042 -0.45662278 1.3295781e-07 -0.88961494 -0.45671111 7.4407687e-08 -0.9738698\n\t\t -0.22710693 3.7000415e-08 -0.9738856 -0.22703946 2.0415401e-07 -0.9738856 -0.22703946\n\t\t 2.0415401e-07 -0.9738698 -0.22710693 3.7000415e-08 -0.99718863 -0.074931867 1.2207951e-08\n\t\t -0.99719089 -0.07490325 2.7661883e-07 -0.99719089 -0.07490325 2.7661883e-07 -0.99718863\n\t\t -0.074931867 1.2207951e-08 -0.99977553 -0.02119098 3.452449e-09 -0.99977559 -0.021182897\n\t\t 1.2525523e-07 -0.02119098 -0.99977553 1.6288412e-07 -0.021181786 -0.99977565 1.7560723e-08\n\t\t -0.074902736 -0.99719083 -1.0061126e-07 -0.074931867 -0.99718869 1.6246267e-07 -0.074931867\n\t\t -0.99718869 1.6246267e-07 -0.074902736 -0.99719083 -1.0061126e-07 -0.22703791 -0.97388589\n\t\t 2.3100029e-08 -0.22710694 -0.9738698 1.5866354e-07 -0.22710694 -0.9738698 1.5866354e-07\n\t\t -0.22703791 -0.97388589 2.3100029e-08 -0.45662376 -0.88965988 1.2417304e-07 -0.45671114\n\t\t -0.88961494 1.4493668e-07 -0.45671114 -0.88961494 1.4493668e-07 -0.45662376 -0.88965988\n\t\t 1.2417304e-07 -0.70703155 -0.70718211 1.5276163e-07 -0.70710683 -0.70710683 1.1520233e-07\n\t\t -0.70710683 -0.70710683 1.1520233e-07 -0.70703155 -0.70718211 1.5276163e-07 -0.88956922\n\t\t -0.45680052 9.2377093e-08 -0.88961494 -0.45671111 7.4407687e-08 -0.88961494 -0.45671111\n\t\t 7.4407687e-08 -0.88956922 -0.45680052 9.2377093e-08 -0.97385401 -0.22717497 1.4580793e-07\n\t\t -0.9738698 -0.22710693 3.7000415e-08 -0.9738698 -0.22710693 3.7000415e-08 -0.97385401\n\t\t -0.22717497 1.4580793e-07 -0.99718654 -0.07496047 3.3757757e-07 -0.99718863 -0.074931867\n\t\t 1.2207951e-08 -0.99718863 -0.074931867 1.2207951e-08 -0.99718654 -0.07496047 3.3757757e-07\n\t\t -0.99977529 -0.021199061 2.4685681e-07 -0.99977553 -0.02119098 3.452449e-09 0.014662663\n\t\t -0.99978542 0.014630999 0.021200012 -0.99977529 3.06364e-07 0.074962333 -0.99718636\n\t\t 4.2573924e-07 0.07599207 -0.99703783 0.011856218 0.07599207 -0.99703783 0.011856218\n\t\t 0.074962333 -0.99718636 4.2573924e-07 0.22717634 -0.97385353 3.0248563e-07 0.22855894\n\t\t -0.97345328 0.012228627 0.22855894 -0.97345328 0.012228627 0.22717634 -0.97385353\n\t\t 3.0248563e-07;\n\tsetAttr \".n[12450:12615]\" -type \"float3\"  0.45680061 -0.8895691 1.9512578e-07 0.45744348\n\t\t -0.88917202 0.010885263 0.45744348 -0.88917202 0.010885263 0.45680061 -0.8895691\n\t\t 1.9512578e-07 0.70718336 -0.70703024 1.3701435e-07 0.70722157 -0.70692652 0.009621324\n\t\t 0.70722157 -0.70692652 0.009621324 0.70718336 -0.70703024 1.3701435e-07 0.88965988\n\t\t -0.456624 8.1715257e-09 0.8893947 -0.45700443 0.011135786 0.8893947 -0.45700443 0.011135786\n\t\t 0.88965988 -0.456624 8.1715257e-09 0.97388577 -0.22703849 -1.1541395e-07 0.97352362\n\t\t -0.22823437 0.012682826 0.97352362 -0.22823437 0.012682826 0.97388577 -0.22703849\n\t\t -1.1541395e-07 0.99719095 -0.074901685 -2.6341226e-07 0.99703735 -0.075961471 0.01210477\n\t\t 0.99703735 -0.075961471 0.01210477 0.99719095 -0.074901685 -2.6341226e-07 0.99977559\n\t\t -0.021182384 -1.2752027e-07 0.99978542 -0.0146308 0.01466401 0.021200012 -0.99977529\n\t\t 3.06364e-07 0.021190587 -0.99977553 1.6288412e-07 0.074932829 -0.99718863 1.6246265e-07\n\t\t 0.074962333 -0.99718636 4.2573924e-07 0.074962333 -0.99718636 4.2573924e-07 0.074932829\n\t\t -0.99718863 1.6246265e-07 0.22710954 -0.97386932 1.5866345e-07 0.22717634 -0.97385353\n\t\t 3.0248563e-07 0.22717634 -0.97385353 3.0248563e-07 0.22710954 -0.97386932 1.5866345e-07\n\t\t 0.45671245 -0.8896144 1.4493659e-07 0.45680061 -0.8895691 1.9512578e-07 0.45680061\n\t\t -0.8895691 1.9512578e-07 0.45671245 -0.8896144 1.4493659e-07 0.70710665 -0.70710695\n\t\t 1.1520235e-07 0.70718336 -0.70703024 1.3701435e-07 0.70718336 -0.70703024 1.3701435e-07\n\t\t 0.70710665 -0.70710695 1.1520235e-07 0.88961488 -0.45671141 7.4407737e-08 0.88965988\n\t\t -0.456624 8.1715257e-09 0.88965988 -0.456624 8.1715257e-09 0.88961488 -0.45671141\n\t\t 7.4407737e-08 0.97386992 -0.22710684 3.7000401e-08 0.97388577 -0.22703849 -1.1541395e-07\n\t\t 0.97388577 -0.22703849 -1.1541395e-07 0.97386992 -0.22710684 3.7000401e-08 0.99718869\n\t\t -0.074931584 1.2207905e-08 0.99719095 -0.074901685 -2.6341226e-07 0.99719095 -0.074901685\n\t\t -2.6341226e-07 0.99718869 -0.074931584 1.2207905e-08 0.99977553 -0.021190979 3.4524488e-09\n\t\t 0.99977559 -0.021182384 -1.2752027e-07 0.021190587 -0.99977553 1.6288412e-07 0.021181813\n\t\t -0.99977565 3.0800484e-07 0.074904814 -0.99719059 4.2404159e-07 0.074932829 -0.99718863\n\t\t 1.6246265e-07 0.074932829 -0.99718863 1.6246265e-07 0.074904814 -0.99719059 4.2404159e-07\n\t\t 0.2270422 -0.97388494 2.9706388e-07 0.22710954 -0.97386932 1.5866345e-07 0.22710954\n\t\t -0.97386932 1.5866345e-07 0.2270422 -0.97388494 2.9706388e-07 0.45662472 -0.8896594\n\t\t 1.616268e-07 0.45671245 -0.8896144 1.4493659e-07 0.45671245 -0.8896144 1.4493659e-07\n\t\t 0.45662472 -0.8896594 1.616268e-07 0.70703161 -0.70718199 8.6648924e-08 0.70710665\n\t\t -0.70710695 1.1520235e-07 0.70710665 -0.70710695 1.1520235e-07 0.70703161 -0.70718199\n\t\t 8.6648924e-08 0.88956952 -0.45679978 4.4320391e-08 0.88961488 -0.45671141 7.4407737e-08\n\t\t 0.88961488 -0.45671141 7.4407737e-08 0.88956952 -0.45679978 4.4320391e-08 0.97385359\n\t\t -0.22717656 -5.3066334e-08 0.97386992 -0.22710684 3.7000401e-08 0.97386992 -0.22710684\n\t\t 3.7000401e-08 0.97385359 -0.22717656 -5.3066334e-08 0.99718642 -0.074962102 -3.2077872e-07\n\t\t 0.99718869 -0.074931584 1.2207905e-08 0.99718869 -0.074931584 1.2207905e-08 0.99718642\n\t\t -0.074962102 -3.2077872e-07 0.99977529 -0.021199575 -2.582664e-07 0.99977553 -0.021190979\n\t\t 3.4524488e-09 0.017770251 0.99974793 0.013721636 0.021199284 0.99977529 -3.0525018e-07\n\t\t 0.074961349 0.99718642 -4.2123642e-07 0.091733456 0.99547291 0.024874356 0.091733456\n\t\t 0.99547291 0.024874356 0.074961349 0.99718642 -4.2123642e-07 0.22717708 0.97385347\n\t\t -2.9682224e-07 0.27443153 0.9602657 0.050764997 0.27443153 0.9602657 0.050764997\n\t\t 0.22717708 0.97385347 -2.9682224e-07 0.45680082 0.8895691 -1.9536998e-07 0.56256711\n\t\t 0.819552 0.1088698 0.56256711 0.819552 0.1088698 0.45680082 0.8895691 -1.9536998e-07\n\t\t 0.70718336 0.70703024 -1.2888476e-07 0.87426949 0.45139071 0.17860353 0.87426949\n\t\t 0.45139071 0.17860353 0.70718336 0.70703024 -1.2888476e-07 0.8896606 0.45662251 -2.0408688e-08\n\t\t 0.95576876 0.28471768 0.07376904 0.95576876 0.28471768 0.07376904 0.8896606 0.45662251\n\t\t -2.0408688e-08 0.97388583 0.22703837 1.0833988e-07 0.95059806 0.29172218 -0.10612041\n\t\t 0.95059806 0.29172218 -0.10612041 0.97388583 0.22703837 1.0833988e-07 0.99719089\n\t\t 0.074902333 2.1777312e-07 0.99874073 0.046686985 0.018364536 0.99874073 0.046686985\n\t\t 0.018364536 0.99719089 0.074902333 2.1777312e-07 0.99977559 0.021182807 1.0113016e-07\n\t\t 0.99987906 0.010978813 0.01101062 0.021199284 0.99977529 -3.0525018e-07 0.021181813\n\t\t 0.99977565 -3.0800484e-07 0.074904814 0.99719059 -4.2404159e-07 0.074961349 0.99718642\n\t\t -4.2123642e-07 0.074961349 0.99718642 -4.2123642e-07 0.074904814 0.99719059 -4.2404159e-07\n\t\t 0.2270422 0.97388494 -2.9706388e-07 0.22717708 0.97385347 -2.9682224e-07 0.22717708\n\t\t 0.97385347 -2.9682224e-07 0.2270422 0.97388494 -2.9706388e-07 0.45662472 0.8896594\n\t\t -1.616268e-07 0.45680082 0.8895691 -1.9536998e-07 0.45680082 0.8895691 -1.9536998e-07\n\t\t 0.45662472 0.8896594 -1.616268e-07 0.70703006 0.70718354 -8.6649187e-08 0.70718336\n\t\t 0.70703024 -1.2888476e-07 0.70718336 0.70703024 -1.2888476e-07 0.70703006 0.70718354\n\t\t -8.6649187e-08 0.88956887 0.45680103 -4.4320586e-08 0.8896606 0.45662251 -2.0408688e-08\n\t\t 0.8896606 0.45662251 -2.0408688e-08 0.88956887 0.45680103 -4.4320586e-08 0.97385383\n\t\t 0.2271758 5.3066451e-08 0.97388583 0.22703837 1.0833988e-07 0.97388583 0.22703837\n\t\t 1.0833988e-07 0.97385383 0.2271758 5.3066451e-08 0.99718642 0.074961856 3.2077875e-07\n\t\t 0.99719089 0.074902333 2.1777312e-07 0.99719089 0.074902333 2.1777312e-07 0.99718642\n\t\t 0.074961856 3.2077875e-07 0.99977529 0.021199506 2.5826643e-07 0.99977559 0.021182807\n\t\t 1.0113016e-07 0.014660273 0.014639944 0.99978536 0.013721424 0.01776154 0.99974811\n\t\t 0.070414588 0.02930446 0.9970873 0.075964652 0.011857473 0.99703997 0.075964652 0.011857473\n\t\t 0.99703997 0.070414588 0.02930446 0.9970873 0.20981896 0.068896167 0.97530985 0.22849116\n\t\t 0.012228903 0.97346914 0.22849116 0.012228903 0.97346914 0.20981896 0.068896167 0.97530985\n\t\t 0.43576148 0.13224491 0.89029384 0.45735672 0.010886533 0.88921672 0.45735672 0.010886533\n\t\t 0.88921672 0.43576148 0.13224491 0.89029384 0.69332677 0.17061342 0.70013499 0.70714712\n\t\t 0.0096208155 0.70700109;\n\tsetAttr \".n[12616:12781]\" -type \"float3\"  0.70714712 0.0096208155 0.70700109 0.69332677\n\t\t 0.17061342 0.70013499 0.88407338 0.1505965 0.44241962 0.8893488 0.011131424 0.45709395\n\t\t 0.8893488 0.011131424 0.45709395 0.88407338 0.1505965 0.44241962 0.97185886 0.098598786\n\t\t 0.2139357 0.97350806 0.012683176 0.22830094 0.97350806 0.012683176 0.22830094 0.97185886\n\t\t 0.098598786 0.2139357 0.99756759 0.037650872 0.058661114 0.99703503 0.012108203 0.075990126\n\t\t 0.99703503 0.012108203 0.075990126 0.99756759 0.037650872 0.058661114 0.99981123\n\t\t 0.017641522 0.0081429537 0.9997853 0.014659029 0.014641142 0.99897665 0.031978734\n\t\t 0.031985421 0.99981123 0.017641522 0.0081429537 0.99664253 0.081829198 0.0027714812\n\t\t 0.99454653 0.090519816 0.051802196 0.99454653 0.090519816 0.051802196 0.99664253\n\t\t 0.081829198 0.0027714812 0.97309172 0.23021287 0.0097261705 0.97173357 0.22668634\n\t\t 0.065933548 0.97173357 0.22668634 0.065933548 0.97309172 0.23021287 0.0097261705\n\t\t 0.85182637 0.51891559 0.07154268 0.89076537 0.45079213 0.057649925 0.89076537 0.45079213\n\t\t 0.057649925 0.85182637 0.51891559 0.07154268 0.44994935 0.87306178 0.18790621 0.70305347\n\t\t 0.70907146 0.054162774 0.70305347 0.70907146 0.054162774 0.44994935 0.87306178 0.18790621\n\t\t 0.21073402 0.9681322 0.13531873 0.44563207 0.89243859 0.070465282 0.44563207 0.89243859\n\t\t 0.070465282 0.21073402 0.9681322 0.13531873 0.21576872 0.97550559 -0.042809479 0.23029526\n\t\t 0.9699235 0.078819081 0.23029526 0.9699235 0.078819081 0.21576872 0.97550559 -0.042809479\n\t\t 0.04777452 0.99869764 0.017903455 0.095328957 0.99385184 0.056309294 0.095328957\n\t\t 0.99385184 0.056309294 0.04777452 0.99869764 0.017903455 0.011023062 0.99987882 0.01099002\n\t\t 0.031991981 0.99897629 0.031982847 0.031981163 0.03199112 0.99897635 0.019032281\n\t\t 0.0092324354 0.99977624 0.077310175 0.0015866298 0.99700582 0.090520583 0.051804159\n\t\t 0.99454629 0.090520583 0.051804159 0.99454629 0.077310175 0.0015866298 0.99700582\n\t\t 0.22138679 0.0063286861 0.97516555 0.22668289 0.065930575 0.97173452 0.22668289 0.065930575\n\t\t 0.97173452 0.22138679 0.0063286861 0.97516555 0.44661793 0.025142079 0.89437145 0.45079091\n\t\t 0.057648107 0.89076614 0.45079091 0.057648107 0.89076614 0.44661793 0.025142079 0.89437145\n\t\t 0.7034533 0.041677091 0.70951861 0.70907658 0.054161049 0.70304835 0.70907658 0.054161049\n\t\t 0.70304835 0.7034533 0.041677091 0.70951861 0.89056373 0.039385147 0.45315021 0.89243883\n\t\t 0.070463724 0.44563195 0.89243883 0.070463724 0.44563195 0.89056373 0.039385147 0.45315021\n\t\t 0.9737283 0.03050269 0.22566074 0.9699229 0.078820467 0.2302976 0.9699229 0.078820467\n\t\t 0.2302976 0.9737283 0.03050269 0.22566074 0.99723262 0.022492275 0.070860811 0.99385267\n\t\t 0.056308951 0.095321521 0.99385267 0.056308951 0.095321521 0.99723262 0.022492275\n\t\t 0.070860811 0.99977624 0.019032631 0.0092321942 0.99897665 0.031978734 0.031985421\n\t\t 0.99974811 0.013720243 0.017759824 0.99978542 0.014656371 0.014638558 0.99703509\n\t\t 0.01210637 0.075990342 0.99547726 0.024873598 0.091686383 0.99547726 0.024873598\n\t\t 0.091686383 0.99703509 0.01210637 0.075990342 0.97350812 0.012683435 0.22830059 0.96028835\n\t\t 0.050765008 0.27435243 0.96028835 0.050765008 0.27435243 0.97350812 0.012683435 0.22830059\n\t\t 0.88935101 0.011133693 0.4570896 0.81961709 0.10886914 0.56247246 0.81961709 0.10886914\n\t\t 0.56247246 0.88935101 0.011133693 0.4570896 0.70714837 0.009622382 0.70699978 0.45148671\n\t\t 0.17860952 0.87421876 0.45148671 0.17860952 0.87421876 0.70714837 0.009622382 0.70699978\n\t\t 0.45735449 0.010889366 0.88921779 0.28479978 0.073782347 0.95574337 0.28479978 0.073782347\n\t\t 0.95574337 0.45735449 0.010889366 0.88921779 0.22848913 0.012233006 0.97346961 0.2917555\n\t\t -0.10610902 0.95058912 0.2917555 -0.10610902 0.95058912 0.22848913 0.012233006 0.97346961\n\t\t 0.075962275 0.011857554 0.99704027 0.046701144 0.018361509 0.99874014 0.046701144\n\t\t 0.018361509 0.99874014 0.075962275 0.011857554 0.99704027 0.014656409 0.014635476\n\t\t 0.99978542 0.010986734 0.011021238 0.99987894 0.99897629 0.03198285 0.031991985 0.99981117\n\t\t 0.017646123 0.0081453389 0.99664211 0.081833832 0.0027763299 0.994546 0.090522446\n\t\t 0.051805694 0.994546 0.090522446 0.051805694 0.99664211 0.081833832 0.0027763299\n\t\t 0.97309101 0.23021573 0.0097304471 0.97173399 0.2266849 0.06593176 0.97173399 0.2266849\n\t\t 0.06593176 0.97309101 0.23021573 0.0097304471 0.85182196 0.51892251 0.071546279 0.89076543\n\t\t 0.45079216 0.057648752 0.89076543 0.45079216 0.057648752 0.85182196 0.51892251 0.071546279\n\t\t 0.44993514 0.87306768 0.18791261 0.70305377 0.70907098 0.054163501 0.70305377 0.70907098\n\t\t 0.054163501 0.44993514 0.87306768 0.18791261 0.21073201 0.9681319 0.13532425 0.4456327\n\t\t 0.89243829 0.070464768 0.4456327 0.89243829 0.070464768 0.21073201 0.9681319 0.13532425\n\t\t 0.21573615 0.97551262 -0.042814303 0.23029493 0.96992362 0.078818984 0.23029493 0.96992362\n\t\t 0.078818984 0.21573615 0.97551262 -0.042814303 0.0477679 0.99869776 0.01791483 0.095329449\n\t\t 0.99385178 0.056309436 0.095329449 0.99385178 0.056309436 0.0477679 0.99869776 0.01791483\n\t\t 0.011022804 0.99987882 0.01099012 0.03199216 0.99897629 0.031982776 0.99977624 0.01903028\n\t\t 0.0092335287 0.99897629 0.031981658 0.031991057 0.99385232 0.056310233 0.095323592\n\t\t 0.99723256 0.022491638 0.070861481 0.99723256 0.022491638 0.070861481 0.99385232\n\t\t 0.056310233 0.095323592 0.96992338 0.078819752 0.23029558 0.97372866 0.030502941\n\t\t 0.22565942 0.97372866 0.030502941 0.22565942 0.96992338 0.078819752 0.23029558 0.89243942\n\t\t 0.070463188 0.44563085 0.89056504 0.039385013 0.45314765 0.89056504 0.039385013 0.45314765\n\t\t 0.89243942 0.070463188 0.44563085 0.70907867 0.054160636 0.70304638 0.7034539 0.041674778\n\t\t 0.70951802 0.7034539 0.041674778 0.70951802 0.70907867 0.054160636 0.70304638 0.45079327\n\t\t 0.05764579 0.89076501 0.44661659 0.025138421 0.89437222 0.44661659 0.025138421 0.89437222\n\t\t 0.45079327 0.05764579 0.89076501;\n\tsetAttr \".n[12782:12947]\" -type \"float3\"  0.22668476 0.065929033 0.97173417 0.22138777\n\t\t 0.00632721 0.97516531 0.22138777 0.00632721 0.97516531 0.22668476 0.065929033 0.97173417\n\t\t 0.090519004 0.051800925 0.99454665 0.077310234 0.0015865739 0.99700582 0.077310234\n\t\t 0.0015865739 0.99700582 0.090519004 0.051800925 0.99454665 0.031977836 0.031985197\n\t\t 0.99897665 0.019029947 0.0092337867 0.99977624 0.99981117 0.017646123 0.0081453389\n\t\t 0.99978536 0.014660507 0.014639846 0.99703485 0.012108529 0.075992338 0.99756706\n\t\t 0.037654892 0.058667872 0.99756706 0.037654892 0.058667872 0.99703485 0.012108529\n\t\t 0.075992338 0.97350776 0.012683741 0.22830151 0.97185832 0.098601043 0.21393782 0.97185832\n\t\t 0.098601043 0.21393782 0.97350776 0.012683741 0.22830151 0.88934886 0.01113346 0.45709354\n\t\t 0.88407433 0.15059772 0.44241706 0.88407433 0.15059772 0.44241706 0.88934886 0.01113346\n\t\t 0.45709354 0.70714658 0.0096236262 0.70700133 0.69332719 0.1706149 0.70013434 0.69332719\n\t\t 0.1706149 0.70013434 0.70714658 0.0096236262 0.70700133 0.45735824 0.010888426 0.88921589\n\t\t 0.43576053 0.13224776 0.89029402 0.43576053 0.13224776 0.89029402 0.45735824 0.010888426\n\t\t 0.88921589 0.2284902 0.012228143 0.97346938 0.20981562 0.068895064 0.97531056 0.20981562\n\t\t 0.068895064 0.97531056 0.2284902 0.012228143 0.97346938 0.07596311 0.011857893 0.99704015\n\t\t 0.070412405 0.029303506 0.99708748 0.070412405 0.029303506 0.99708748 0.07596311\n\t\t 0.011857893 0.99704015 0.014658828 0.014641299 0.9997853 0.013720209 0.017757969\n\t\t 0.99974823 0.031989101 0.99897641 0.03198237 0.011022804 0.99987882 0.01099012 0.018682022\n\t\t 0.99873364 0.046712767 0.051805276 0.99454612 0.090522058 0.051805276 0.99454612\n\t\t 0.090522058 0.018682022 0.99873364 0.046712767 -0.1061015 0.95058721 0.29176435 0.065938175\n\t\t 0.97173387 0.22668403 0.065938175 0.97173387 0.22668403 -0.1061015 0.95058721 0.29176435\n\t\t 0.073765613 0.95574665 0.28479284 0.057649143 0.89076656 0.45078966 0.057649143 0.89076656\n\t\t 0.45078966 0.073765613 0.95574665 0.28479284 0.17860825 0.87420791 0.45150813 0.054153129\n\t\t 0.70304978 0.70907581 0.054153129 0.70304978 0.70907581 0.17860825 0.87420791 0.45150813\n\t\t 0.1088697 0.5624674 0.81962043 0.070460431 0.44563282 0.89243859 0.070460431 0.44563282\n\t\t 0.89243859 0.1088697 0.5624674 0.81962043 0.050762758 0.27434906 0.96028936 0.078818403\n\t\t 0.23029724 0.96992308 0.078818403 0.23029724 0.96992308 0.050762758 0.27434906 0.96028936\n\t\t 0.024872972 0.091684751 0.99547738 0.056307409 0.095319472 0.99385297 0.056307409\n\t\t 0.095319472 0.99385297 0.024872972 0.091684751 0.99547738 0.013720209 0.017757969\n\t\t 0.99974823 0.031977836 0.031985197 0.99897665 0.03199216 0.99897629 0.031982776 0.011023062\n\t\t 0.99987882 0.01099002 0.018687595 0.998734 0.046701387 0.051805425 0.99454606 0.090522334\n\t\t 0.051805425 0.99454606 0.090522334 0.018687595 0.998734 0.046701387 -0.10610655 0.95058286\n\t\t 0.2917766 0.065936796 0.97173387 0.22668406 0.065936796 0.97173387 0.22668406 -0.10610655\n\t\t 0.95058286 0.2917766 0.073767804 0.95574594 0.28479472 0.057649367 0.89076579 0.45079139\n\t\t 0.057649367 0.89076579 0.45079139 0.073767804 0.95574594 0.28479472 0.17861854 0.8742066\n\t\t 0.45150638 0.054154724 0.70304972 0.70907575 0.054154724 0.70304972 0.70907575 0.17861854\n\t\t 0.8742066 0.45150638 0.10886873 0.56247205 0.81961745 0.070460789 0.44563317 0.89243853\n\t\t 0.070460789 0.44563317 0.89243853 0.10886873 0.56247205 0.81961745 0.050763592 0.27434993\n\t\t 0.96028918 0.078818865 0.23029651 0.96992332 0.078818865 0.23029651 0.96992332 0.050763592\n\t\t 0.27434993 0.96028918 0.024874058 0.091687135 0.9954772 0.056309149 0.095324904 0.99385232\n\t\t 0.056309149 0.095324904 0.99385232 0.024874058 0.091687135 0.9954772 0.013721424\n\t\t 0.01776154 0.99974811 0.031982161 0.031991817 0.99897629 0.031991981 0.99897629 0.031982847\n\t\t 0.017770251 0.99974793 0.013721636 0.029310403 0.99708706 0.070414104 0.051805366\n\t\t 0.994546 0.090522662 0.051805366 0.994546 0.090522662 0.029310403 0.99708706 0.070414104\n\t\t 0.068890035 0.97531086 0.20981675 0.065936789 0.97173387 0.22668406 0.065936789 0.97173387\n\t\t 0.22668406 0.068890035 0.97531086 0.20981675 0.13224092 0.89029419 0.43576184 0.057649624\n\t\t 0.89076519 0.45079237 0.057649624 0.89076519 0.45079237 0.13224092 0.89029419 0.43576184\n\t\t 0.17061669 0.70013338 0.69332761 0.054154959 0.70304847 0.70907682 0.054154959 0.70304847\n\t\t 0.70907682 0.17061669 0.70013338 0.69332761 0.15059777 0.44241589 0.88407493 0.070459679\n\t\t 0.44563305 0.89243865 0.070459679 0.44563305 0.89243865 0.15059777 0.44241589 0.88407493\n\t\t 0.098598726 0.21393424 0.97185922 0.078818031 0.23029679 0.9699232 0.078818031 0.23029679\n\t\t 0.9699232 0.098598726 0.21393424 0.97185922 0.037651043 0.058662742 0.99756753 0.056309257\n\t\t 0.095324837 0.99385226 0.056309257 0.095324837 0.99385226 0.037651043 0.058662742\n\t\t 0.99756753 0.017643185 0.0081431661 0.99981123 0.031981163 0.03199112 0.99897635\n\t\t -0.021182897 8.2474394e-08 0.99977559 -0.014631052 0.01465673 0.99978554 -0.075961605\n\t\t 0.012105037 0.99703729 -0.07490325 -3.6495706e-08 0.99719083 -0.07490325 -3.6495706e-08\n\t\t 0.99719083 -0.075961605 0.012105037 0.99703729 -0.22823341 0.012683024 0.9735238\n\t\t -0.22703946 6.4071266e-08 0.9738856 -0.22703946 6.4071266e-08 0.9738856 -0.22823341\n\t\t 0.012683024 0.9735238 -0.45700213 0.01113584 0.88939583 -0.45662281 1.3245037e-07\n\t\t 0.88966042 -0.45662281 1.3245037e-07 0.88966042 -0.45700213 0.01113584 0.88939583\n\t\t -0.70692801 0.0096212029 0.70722008 -0.70703024 1.674471e-07 0.70718336 -0.70703024\n\t\t 1.674471e-07 0.70718336 -0.70692801 0.0096212029 0.70722008 -0.88917381 0.010885086\n\t\t 0.45743999 -0.88956934 1.5520095e-07 0.45680019 -0.88956934 1.5520095e-07 0.45680019\n\t\t -0.88917381 0.010885086 0.45743999 -0.97345364 0.012228475 0.22855738 -0.97385389\n\t\t 1.7596179e-07 0.22717528 -0.97385389 1.7596179e-07 0.22717528 -0.97345364 0.012228475\n\t\t 0.22855738 -0.99703801 0.011856037 0.075990662 -0.99718654 2.7136997e-07 0.074960656;\n\tsetAttr \".n[12948:13113]\" -type \"float3\"  -0.99718654 2.7136997e-07 0.074960656\n\t\t -0.99703801 0.011856037 0.075990662 -0.9997853 0.014636361 0.014662424 -0.99977529\n\t\t 1.4797359e-07 0.021200011 -0.02119098 -1.6288412e-07 -0.99977553 -0.02119098 -1.6288412e-07\n\t\t -0.99977553 -0.074931867 -1.6246267e-07 -0.99718869 -0.074931875 -1.6246267e-07 -0.99718869\n\t\t -0.074931875 -1.6246267e-07 -0.99718869 -0.074931867 -1.6246267e-07 -0.99718869 -0.22710694\n\t\t -1.5866354e-07 -0.9738698 -0.22710694 -1.5866354e-07 -0.9738698 -0.22710694 -1.5866354e-07\n\t\t -0.9738698 -0.22710694 -1.5866354e-07 -0.9738698 -0.45671114 -1.4493668e-07 -0.88961494\n\t\t -0.45671111 -1.4493668e-07 -0.88961494 -0.45671111 -1.4493668e-07 -0.88961494 -0.45671114\n\t\t -1.4493668e-07 -0.88961494 -0.70710683 -1.1520233e-07 -0.70710683 -0.70710683 -1.1520233e-07\n\t\t -0.70710683 -0.70710683 -1.1520233e-07 -0.70710683 -0.70710683 -1.1520233e-07 -0.70710683\n\t\t -0.88961494 -7.4407687e-08 -0.45671111 -0.88961494 -7.4407694e-08 -0.45671114 -0.88961494\n\t\t -7.4407694e-08 -0.45671114 -0.88961494 -7.4407687e-08 -0.45671111 -0.9738698 -3.7000415e-08\n\t\t -0.22710693 -0.9738698 -3.7000419e-08 -0.22710694 -0.9738698 -3.7000419e-08 -0.22710694\n\t\t -0.9738698 -3.7000415e-08 -0.22710693 -0.99718863 -1.2207951e-08 -0.074931867 -0.99718869\n\t\t -1.2207951e-08 -0.074931867 -0.99718869 -1.2207951e-08 -0.074931867 -0.99718863 -1.2207951e-08\n\t\t -0.074931867 -0.99977553 -3.452449e-09 -0.02119098 -0.99977553 -3.452449e-09 -0.02119098\n\t\t 0.013720701 0.99974811 -0.017762007 0.014653346 0.99978542 -0.014639875 0.012107143\n\t\t 0.99703497 -0.07599169 0.024868559 0.9954775 -0.091685139 0.024868559 0.9954775 -0.091685139\n\t\t 0.012107143 0.99703497 -0.07599169 0.012682394 0.9735077 -0.22830175 0.050755765\n\t\t 0.96029073 -0.27434561 0.050755765 0.96029073 -0.27434561 0.012682394 0.9735077 -0.22830175\n\t\t 0.011132197 0.88934797 -0.4570955 0.1088658 0.81961972 -0.56246936 0.1088658 0.81961972\n\t\t -0.56246936 0.011132197 0.88934797 -0.4570955 0.0096195498 0.70714283 -0.7070052\n\t\t 0.17861259 0.45151016 -0.87420601 0.17861259 0.45151016 -0.87420601 0.0096195498\n\t\t 0.70714283 -0.7070052 0.01088604 0.45735413 -0.88921803 0.073774025 0.2848058 -0.95574212\n\t\t 0.073774025 0.2848058 -0.95574212 0.01088604 0.45735413 -0.88921803 0.01223085 0.22848924\n\t\t -0.97346956 -0.10615816 0.29176378 -0.95058107 -0.10615816 0.29176378 -0.95058107\n\t\t 0.01223085 0.22848924 -0.97346956 0.01185634 0.075961955 -0.99704015 0.018507969\n\t\t 0.046828337 -0.99873149 0.018507969 0.046828337 -0.99873149 0.01185634 0.075961955\n\t\t -0.99704015 0.01463102 0.014656714 -0.99978554 0.011014463 0.010990391 -0.99987888\n\t\t 0.014632256 0.99978542 0.014659704 -0.014655928 0.99978542 0.014639717 -0.01210713\n\t\t 0.99703491 0.07599175 0.011857362 0.99704003 0.075963728 0.011857362 0.99704003 0.075963728\n\t\t -0.01210713 0.99703491 0.07599175 -0.012682392 0.973508 0.22830108 0.012234432 0.97346938\n\t\t 0.22848994 0.012234432 0.97346938 0.22848994 -0.012682392 0.973508 0.22830108 -0.011132193\n\t\t 0.88934833 0.4570947 0.010886038 0.88921803 0.45735416 0.010886038 0.88921803 0.45735416\n\t\t -0.011132193 0.88934833 0.4570947 -0.0096195554 0.70714301 0.70700508 0.0096154334\n\t\t 0.70700419 0.70714402 0.0096154334 0.70700419 0.70714402 -0.0096195554 0.70714301\n\t\t 0.70700508 -0.010886037 0.45735607 0.88921702 0.011130136 0.45709422 0.88934875 0.011130136\n\t\t 0.45709422 0.88934875 -0.010886037 0.45735607 0.88921702 -0.012230889 0.22849151\n\t\t 0.97346914 0.01268262 0.22830243 0.97350758 0.01268262 0.22830243 0.97350758 -0.012230889\n\t\t 0.22849151 0.97346914 -0.011856422 0.075961962 0.99704021 0.012107308 0.075988479\n\t\t 0.99703515 0.012107308 0.075988479 0.99703515 -0.011856422 0.075961962 0.99704021\n\t\t -0.014631052 0.01465673 0.99978554 0.014656409 0.014635476 0.99978542 0.0092374319\n\t\t 0.99977618 0.019033359 0.014632256 0.99978542 0.014659704 0.075992912 0.99703485\n\t\t 0.012106225 0.070870489 0.99723196 0.022490742 0.070870489 0.99723196 0.022490742\n\t\t 0.075992912 0.99703485 0.012106225 0.22830553 0.97350693 0.0126808 0.22565867 0.97372884\n\t\t 0.030499872 0.22565867 0.97372884 0.030499872 0.22830553 0.97350693 0.0126808 0.45709136\n\t\t 0.88935006 0.011130534 0.45314372 0.89056712 0.039382447 0.45314372 0.89056712 0.039382447\n\t\t 0.45709136 0.88935006 0.011130534 0.70700306 0.70714504 0.0096200146 0.70951974 0.70345229\n\t\t 0.041673098 0.70951974 0.70345229 0.041673098 0.70700306 0.70714504 0.0096200146\n\t\t 0.88921756 0.45735502 0.010887524 0.89437151 0.44661805 0.025138615 0.89437151 0.44661805\n\t\t 0.025138615 0.88921756 0.45735502 0.010887524 0.9734695 0.2284901 0.012228759 0.97516525\n\t\t 0.22138838 0.0063279602 0.97516525 0.22138838 0.0063279602 0.9734695 0.2284901 0.012228759\n\t\t 0.99704015 0.075962745 0.011856093 0.99700588 0.077309795 0.0015865577 0.99700588\n\t\t 0.077309795 0.0015865577 0.99704015 0.075962745 0.011856093 0.99978542 0.014656371\n\t\t 0.014638558 0.99977624 0.01903028 0.0092335287 -0.014655928 0.99978542 0.014639717\n\t\t -0.017644551 0.99981117 0.0081462739 -0.081840433 0.99664158 0.0027787138 -0.075958304\n\t\t 0.99704057 0.011856291 -0.075958304 0.99704057 0.011856291 -0.081840433 0.99664158\n\t\t 0.0027787138 -0.23022659 0.97308832 0.0097307842 -0.22848889 0.97346979 0.012226836\n\t\t -0.22848889 0.97346979 0.012226836 -0.23022659 0.97308832 0.0097307842 -0.51891273\n\t\t 0.85182834 0.071539357 -0.45735756 0.88921624 0.010884088 -0.45735756 0.88921624\n\t\t 0.010884088 -0.51891273 0.85182834 0.071539357 -0.87306541 0.4499411 0.18790884 -0.707147\n\t\t 0.70700109 0.0096207503 -0.707147 0.70700109 0.0096207503 -0.87306541 0.4499411 0.18790884\n\t\t -0.96813709 0.21071757 0.13530989 -0.88935 0.45709154 0.011135445 -0.88935 0.45709154\n\t\t 0.011135445 -0.96813709 0.21071757 0.13530989 -0.97551644 0.21572314 -0.04279286\n\t\t -0.97350764 0.2283027 0.012682814 -0.97350764 0.2283027 0.012682814 -0.97551644 0.21572314\n\t\t -0.04279286 -0.99870491 0.047574732 0.018027196 -0.99703503 0.075990744 0.012104585\n\t\t -0.99703503 0.075990744 0.012104585 -0.99870491 0.047574732 0.018027196 -0.999879\n\t\t 0.011014002 0.010990342 -0.9997853 0.014636361 0.014662424 0.014653346 0.99978542\n\t\t -0.014639875 0.014632324 0.99978542 0.014659894;\n\tsetAttr \".n[13114:13279]\" -type \"float3\"  0.075993173 0.99703479 0.012106305 0.075960487\n\t\t 0.99704033 -0.011856631 0.075960487 0.99704033 -0.011856631 0.075993173 0.99703479\n\t\t 0.012106305 0.22830617 0.97350681 0.012681619 0.22848845 0.97346979 -0.012227147\n\t\t 0.22848845 0.97346979 -0.012227147 0.22830617 0.97350681 0.012681619 0.45709139 0.88935006\n\t\t 0.011131345 0.45735449 0.88921791 -0.010884398 0.45735449 0.88921791 -0.010884398\n\t\t 0.45709139 0.88935006 0.011131345 0.70700222 0.70714581 0.0096208025 0.70714831 0.70699978\n\t\t -0.0096209748 0.70714831 0.70699978 -0.0096209748 0.70700222 0.70714581 0.0096208025\n\t\t 0.8892172 0.45735556 0.010890901 0.88935018 0.45709115 -0.011135587 0.88935018 0.45709115\n\t\t -0.011135587 0.8892172 0.45735556 0.010890901 0.97346944 0.22848986 0.012234421 0.97350764\n\t\t 0.22830258 -0.012682854 0.97350764 0.22830258 -0.012682854 0.97346944 0.22848986\n\t\t 0.012234421 0.99704015 0.075962625 0.011857486 0.99703509 0.075990371 -0.012104536\n\t\t 0.99703509 0.075990371 -0.012104536 0.99704015 0.075962625 0.011857486 0.99978542\n\t\t 0.014656501 0.014635657 0.9997853 0.014636262 -0.014662402 0.99981117 0.0081419423\n\t\t -0.017643576 0.99977624 0.0190304 0.0092335399 0.99700588 0.077309884 0.0015865446\n\t\t 0.99756753 0.058663227 -0.037653327 0.99756753 0.058663227 -0.037653327 0.99700588\n\t\t 0.077309884 0.0015865446 0.97516525 0.22138837 0.0063279597 0.97185844 0.21393725\n\t\t -0.098600604 0.97185844 0.21393725 -0.098600604 0.97516525 0.22138837 0.0063279597\n\t\t 0.89437151 0.44661805 0.025138626 0.88407475 0.44241616 -0.15059756 0.88407475 0.44241616\n\t\t -0.15059756 0.89437151 0.44661805 0.025138626 0.70952213 0.70344985 0.041673079 0.69333202\n\t\t 0.70012951 -0.17061438 0.69333202 0.70012951 -0.17061438 0.70952213 0.70344985 0.041673079\n\t\t 0.45314685 0.89056557 0.039382476 0.43575975 0.89029479 -0.13224417 0.43575975 0.89029479\n\t\t -0.13224417 0.45314685 0.89056557 0.039382476 0.2256546 0.97372985 0.030499889 0.20981513\n\t\t 0.9753105 -0.068899103 0.20981513 0.9753105 -0.068899103 0.2256546 0.97372985 0.030499889\n\t\t 0.070870534 0.9972319 0.022490731 0.070412397 0.9970873 -0.029306332 0.070412397\n\t\t 0.9970873 -0.029306332 0.070870534 0.9972319 0.022490731 0.0092430925 0.99977618\n\t\t 0.019033425 0.013720701 0.99974811 -0.017762007 0.009237417 0.99977618 0.019033218\n\t\t 0.014632314 0.99978542 0.01465987 0.075993367 0.99703479 0.012106649 0.070867844\n\t\t 0.99723214 0.022490298 0.070867844 0.99723214 0.022490298 0.075993367 0.99703479\n\t\t 0.012106649 0.22830561 0.97350693 0.012681522 0.22565855 0.97372895 0.030499594 0.22565855\n\t\t 0.97372895 0.030499594 0.22830561 0.97350693 0.012681522 0.45709181 0.88934982 0.011132451\n\t\t 0.45314762 0.8905651 0.039383285 0.45314762 0.8905651 0.039383285 0.45709181 0.88934982\n\t\t 0.011132451 0.70700353 0.70714462 0.0096224323 0.70952165 0.70345014 0.041675992\n\t\t 0.70952165 0.70345014 0.041675992 0.70700353 0.70714462 0.0096224323 0.88921702 0.45735592\n\t\t 0.010888282 0.89437205 0.44661686 0.025142234 0.89437205 0.44661686 0.025142234 0.88921702\n\t\t 0.45735592 0.010888282 0.97346944 0.22848992 0.0122287 0.97516525 0.2213884 0.0063309991\n\t\t 0.97516525 0.2213884 0.0063309991 0.97346944 0.22848992 0.0122287 0.99704003 0.075963587\n\t\t 0.011857724 0.9970057 0.077311262 0.0015880519 0.9970057 0.077311262 0.0015880519\n\t\t 0.99704003 0.075963587 0.011857724 0.9997853 0.014659029 0.014641142 0.99977624 0.019032631\n\t\t 0.0092321942 0.99897629 0.031982388 0.031991772 0.99977612 0.019034201 0.0092367809\n\t\t 0.99700546 0.077313714 0.0015899572 0.994546 0.090522192 0.051805466 0.994546 0.090522192\n\t\t 0.051805466 0.99700546 0.077313714 0.0015899572 0.97516495 0.2213892 0.0063291364\n\t\t 0.97173399 0.22668505 0.065932006 0.97173399 0.22668505 0.065932006 0.97516495 0.2213892\n\t\t 0.0063291364 0.89437169 0.44661766 0.025139827 0.89076531 0.45079222 0.057650149\n\t\t 0.89076531 0.45079222 0.057650149 0.89437169 0.44661766 0.025139827 0.7095207 0.7034511\n\t\t 0.041675933 0.70305127 0.70907331 0.054164633 0.70305127 0.70907331 0.054164633 0.7095207\n\t\t 0.7034511 0.041675933 0.45314819 0.8905648 0.039383627 0.44562882 0.89244032 0.070464596\n\t\t 0.44562882 0.89244032 0.070464596 0.45314819 0.8905648 0.039383627 0.22565874 0.97372878\n\t\t 0.030500202 0.23029622 0.96992332 0.078818761 0.23029622 0.96992332 0.078818761 0.22565874\n\t\t 0.97372878 0.030500202 0.070872039 0.99723178 0.02249066 0.095331505 0.99385166 0.056309227\n\t\t 0.095331505 0.99385166 0.056309227 0.070872039 0.99723178 0.02249066 0.0092431214\n\t\t 0.99977612 0.019033248 0.031992186 0.99897629 0.03198272 0.0092374627 0.99977618\n\t\t 0.019033257 0.014632346 0.99978542 0.014659842 0.075993113 0.99703479 0.012106663\n\t\t 0.070867777 0.99723214 0.022490669 0.070867777 0.99723214 0.022490669 0.075993113\n\t\t 0.99703479 0.012106663 0.22830786 0.97350645 0.012681485 0.22565871 0.97372878 0.03050017\n\t\t 0.22565871 0.97372878 0.03050017 0.22830786 0.97350645 0.012681485 0.45709464 0.88934845\n\t\t 0.011131558 0.4531512 0.89056325 0.039383635 0.4531512 0.89056325 0.039383635 0.45709464\n\t\t 0.88934845 0.011131558 0.7070033 0.70714474 0.0096212951 0.70952308 0.70344865 0.041675918\n\t\t 0.70952308 0.70344865 0.041675918 0.7070033 0.70714474 0.0096212951 0.88921654 0.45735705\n\t\t 0.01088697 0.89437103 0.44661888 0.025139822 0.89437103 0.44661888 0.025139822 0.88921654\n\t\t 0.45735705 0.01088697 0.97346932 0.22849087 0.012229025 0.97516477 0.22138995 0.0063291378\n\t\t 0.97516477 0.22138995 0.0063291378 0.97346932 0.22849087 0.012229025 0.99703997 0.075964816\n\t\t 0.011857334 0.99700558 0.077313259 0.0015899596 0.99700558 0.077313259 0.0015899596\n\t\t 0.99703997 0.075964816 0.011857334 0.99978536 0.014660507 0.014639846 0.99977612\n\t\t 0.019034386 0.0092367064 -0.99977553 -3.452449e-09 -0.02119098 -0.99977553 -3.452449e-09\n\t\t -0.02119098 -0.99718869 -1.2207951e-08 -0.074931867 -0.99718869 -1.2207951e-08 -0.074931867\n\t\t -0.99718869 -1.2207951e-08 -0.074931867 -0.99718869 -1.2207951e-08 -0.074931867 -0.9738698\n\t\t -3.7000419e-08 -0.22710694 -0.9738698 -3.7000419e-08 -0.22710694;\n\tsetAttr \".n[13280:13445]\" -type \"float3\"  -0.9738698 -3.7000419e-08 -0.22710694\n\t\t -0.9738698 -3.7000419e-08 -0.22710694 -0.88961494 -7.4407694e-08 -0.45671114 -0.88961494\n\t\t -7.4407694e-08 -0.45671114 -0.88961494 -7.4407694e-08 -0.45671114 -0.88961494 -7.4407694e-08\n\t\t -0.45671114 -0.70710683 -1.1520233e-07 -0.70710683 -0.70710683 -1.1520233e-07 -0.70710683\n\t\t -0.70710683 -1.1520233e-07 -0.70710683 -0.70710683 -1.1520233e-07 -0.70710683 -0.45671111\n\t\t -1.4493668e-07 -0.88961494 -0.45671111 -1.4493668e-07 -0.88961494 -0.45671111 -1.4493668e-07\n\t\t -0.88961494 -0.45671111 -1.4493668e-07 -0.88961494 -0.22710693 -1.5866354e-07 -0.9738698\n\t\t -0.22710694 -1.5866354e-07 -0.9738698 -0.22710694 -1.5866354e-07 -0.9738698 -0.22710693\n\t\t -1.5866354e-07 -0.9738698 -0.074931867 -1.6246265e-07 -0.99718863 -0.074931875 -1.6246267e-07\n\t\t -0.99718869 -0.074931875 -1.6246267e-07 -0.99718869 -0.074931867 -1.6246265e-07 -0.99718863\n\t\t -0.02119098 -1.6288412e-07 -0.99977553 -0.02119098 -1.6288412e-07 -0.99977553 0.99977624\n\t\t 0.019030292 0.0092335613 0.99897629 0.031981707 0.031991322 0.99385232 0.056309879\n\t\t 0.095323607 0.99723262 0.02249126 0.070860833 0.99723262 0.02249126 0.070860833 0.99385232\n\t\t 0.056309879 0.095323607 0.96992362 0.078819253 0.23029502 0.97372884 0.030502772\n\t\t 0.22565839 0.97372884 0.030502772 0.22565839 0.96992362 0.078819253 0.23029502 0.89243919\n\t\t 0.070462257 0.44563159 0.89056396 0.039385803 0.45314944 0.89056396 0.039385803 0.45314944\n\t\t 0.89243919 0.070462257 0.44563159 0.70907682 0.054160245 0.70304817 0.70345324 0.041676912\n\t\t 0.70951855 0.70345324 0.041676912 0.70951855 0.70907682 0.054160245 0.70304817 0.45079213\n\t\t 0.057646982 0.89076555 0.44661984 0.025139581 0.89437056 0.44661984 0.025139581 0.89437056\n\t\t 0.45079213 0.057646982 0.89076555 0.22668456 0.065931223 0.97173411 0.22138977 0.0063286591\n\t\t 0.97516483 0.22138977 0.0063286591 0.97516483 0.22668456 0.065931223 0.97173411 0.090521939\n\t\t 0.05180563 0.99454618 0.077313349 0.0015899076 0.99700558 0.077313349 0.0015899076\n\t\t 0.99700558 0.090521939 0.05180563 0.99454618 0.031982057 0.031991959 0.99897629 0.019034069\n\t\t 0.0092368713 0.99977618 0.99897629 0.031981707 0.031991322 0.99977624 0.019032631\n\t\t 0.0092321774 0.9970057 0.077311262 0.0015880385 0.99454606 0.090521447 0.051807217\n\t\t 0.99454606 0.090521447 0.051807217 0.9970057 0.077311262 0.0015880385 0.97516525\n\t\t 0.2213884 0.0063309977 0.97173405 0.22668368 0.065935202 0.97173405 0.22668368 0.065935202\n\t\t 0.97516525 0.2213884 0.0063309977 0.89437205 0.44661686 0.025142243 0.89076531 0.45079193\n\t\t 0.05765298 0.89076531 0.45079193 0.05765298 0.89437205 0.44661686 0.025142243 0.70952165\n\t\t 0.70345014 0.041676003 0.70305091 0.70907366 0.054166112 0.70305091 0.70907366 0.054166112\n\t\t 0.70952165 0.70345014 0.041676003 0.45314762 0.8905651 0.039383292 0.44562933 0.8924399\n\t\t 0.07046549 0.44562933 0.8924399 0.07046549 0.45314762 0.8905651 0.039383292 0.22565855\n\t\t 0.97372895 0.030499594 0.23029652 0.9699232 0.078819565 0.23029652 0.9699232 0.078819565\n\t\t 0.22565855 0.97372895 0.030499594 0.070872091 0.99723178 0.022490287 0.095331676\n\t\t 0.99385172 0.056309562 0.095331676 0.99385172 0.056309562 0.070872091 0.99723178\n\t\t 0.022490287 0.0092430767 0.99977612 0.01903322 0.031992186 0.99897629 0.031982712\n\t\t 0.99977612 0.019034201 0.0092367809 0.99978536 0.014660403 0.014639906 0.99703491\n\t\t 0.012108409 0.075992599 0.99723226 0.022493331 0.070864476 0.99723226 0.022493331\n\t\t 0.070864476 0.99703491 0.012108409 0.075992599 0.9735077 0.012683309 0.22830188 0.97372818\n\t\t 0.030503914 0.22566114 0.97372818 0.030503914 0.22566114 0.9735077 0.012683309 0.22830188\n\t\t 0.88934934 0.011132182 0.45709285 0.89056343 0.039386824 0.45315054 0.89056343 0.039386824\n\t\t 0.45315054 0.88934934 0.011132182 0.45709285 0.70714724 0.0096215904 0.70700085 0.70345277\n\t\t 0.041677698 0.70951909 0.70345277 0.041677698 0.70951909 0.70714724 0.0096215904\n\t\t 0.70700085 0.45735821 0.010886895 0.88921589 0.4466188 0.025139885 0.89437103 0.4466188\n\t\t 0.025139885 0.89437103 0.45735821 0.010886895 0.88921589 0.22849117 0.012228955 0.97346914\n\t\t 0.22138977 0.0063288384 0.97516489 0.22138977 0.0063288384 0.97516489 0.22849117\n\t\t 0.012228955 0.97346914 0.075965069 0.011857471 0.99703997 0.077313408 0.0015899743\n\t\t 0.99700558 0.077313408 0.0015899743 0.99700558 0.075965069 0.011857471 0.99703997\n\t\t 0.014660339 0.014639962 0.99978536 0.019034242 0.0092368815 0.99977612 0.031992186\n\t\t 0.99897629 0.031982712 0.0092374627 0.99977618 0.019033257 0.0015927386 0.99700546\n\t\t 0.077313967 0.051805448 0.99454606 0.090522572 0.051805448 0.99454606 0.090522572\n\t\t 0.0015927386 0.99700546 0.077313967 0.0063272016 0.97516501 0.22138928 0.065939866\n\t\t 0.97173345 0.22668464 0.065939866 0.97173345 0.22668464 0.0063272016 0.97516501 0.22138928\n\t\t 0.025140943 0.89437115 0.44661844 0.057652675 0.89076525 0.4507919 0.057652675 0.89076525\n\t\t 0.4507919 0.025140943 0.89437115 0.44661844 0.04167657 0.70951831 0.70345354 0.054154713\n\t\t 0.70304966 0.70907575 0.054154713 0.70304966 0.70907575 0.04167657 0.70951831 0.70345354\n\t\t 0.039384093 0.45315042 0.89056361 0.070459999 0.44563356 0.89243835 0.070459999 0.44563356\n\t\t 0.89243835 0.039384093 0.45315042 0.89056361 0.030502457 0.22566074 0.97372824 0.078818083\n\t\t 0.23029682 0.9699232 0.078818083 0.23029682 0.9699232 0.030502457 0.22566074 0.97372824\n\t\t 0.022492798 0.070865288 0.99723226 0.056309015 0.095325157 0.99385238 0.056309015\n\t\t 0.095325157 0.99385238 0.022492798 0.070865288 0.99723226 0.019034242 0.0092368815\n\t\t 0.99977612 0.031982057 0.031991959 0.99897629 0.019029947 0.0092337867 0.99977624\n\t\t 0.014658828 0.014641299 0.9997853 0.012108111 0.075992882 0.99703491 0.022491174\n\t\t 0.070862472 0.99723244 0.022491174 0.070862472 0.99723244 0.012108111 0.075992882\n\t\t 0.99703491 0.01268262 0.22830014 0.97350818 0.030502407 0.22566026 0.97372842 0.030502407\n\t\t 0.22566026 0.97372842 0.01268262 0.22830014 0.97350818 0.011127783 0.45709306 0.88934916\n\t\t 0.039386772 0.45314953 0.89056396 0.039386772 0.45314953 0.89056396 0.011127783 0.45709306\n\t\t 0.88934916;\n\tsetAttr \".n[13446:13611]\" -type \"float3\"  0.00961293 0.70700389 0.70714432 0.041679073\n\t\t 0.70951796 0.70345378 0.041679073 0.70951796 0.70345378 0.00961293 0.70700389 0.70714432\n\t\t 0.01088602 0.8892166 0.45735684 0.025140125 0.89437133 0.44661814 0.025140125 0.89437133\n\t\t 0.44661814 0.01088602 0.8892166 0.45735684 0.012234434 0.97346896 0.22849146 0.0063267811\n\t\t 0.97516495 0.22138926 0.0063267811 0.97516495 0.22138926 0.012234434 0.97346896 0.22849146\n\t\t 0.011857358 0.99704003 0.075964034 0.0015926758 0.99700546 0.077313855 0.0015926758\n\t\t 0.99700546 0.077313855 0.011857358 0.99704003 0.075964034 0.014632346 0.99978542\n\t\t 0.014659842 0.0092430767 0.99977612 0.01903322 0.031992186 0.99897629 0.03198272\n\t\t 0.009237417 0.99977618 0.019033218 0.0015927262 0.99700546 0.077313855 0.051805403\n\t\t 0.994546 0.090522438 0.051805403 0.994546 0.090522438 0.0015927262 0.99700546 0.077313855\n\t\t 0.0063268249 0.97516495 0.22138926 0.065936677 0.97173381 0.22668444 0.065936677\n\t\t 0.97173381 0.22668444 0.0063268249 0.97516495 0.22138926 0.025140164 0.89437133 0.44661814\n\t\t 0.057649367 0.89076549 0.45079201 0.057649367 0.89076549 0.45079201 0.025140164 0.89437133\n\t\t 0.44661814 0.041677583 0.70951796 0.70345372 0.05415481 0.70304918 0.70907623 0.05415481\n\t\t 0.70304918 0.70907623 0.041677583 0.70951796 0.70345372 0.039385352 0.45314962 0.89056402\n\t\t 0.070460834 0.44563276 0.89243865 0.070460834 0.44563276 0.89243865 0.039385352 0.45314962\n\t\t 0.89056402 0.030502426 0.22566026 0.97372842 0.078818046 0.23029681 0.9699232 0.078818046\n\t\t 0.23029681 0.9699232 0.030502426 0.22566026 0.97372842 0.022491178 0.070862472 0.99723244\n\t\t 0.056308366 0.095325112 0.99385232 0.056308366 0.095325112 0.99385232 0.022491178\n\t\t 0.070862472 0.99723244 0.019031141 0.0092337709 0.99977624 0.031981274 0.031991206\n\t\t 0.99897641 0.019034004 0.0092368815 0.99977612 0.014660273 0.014639944 0.99978536\n\t\t 0.012108505 0.07599245 0.99703497 0.022493038 0.070865296 0.99723226 0.022493038\n\t\t 0.070865296 0.99723226 0.012108505 0.07599245 0.99703497 0.01268273 0.22830153 0.97350788\n\t\t 0.03050424 0.22566076 0.9737283 0.03050424 0.22566076 0.9737283 0.01268273 0.22830153\n\t\t 0.97350788 0.011129044 0.45709383 0.8893488 0.039388508 0.45315039 0.89056349 0.039388508\n\t\t 0.45315039 0.89056349 0.011129044 0.45709383 0.8893488 0.0096141305 0.70700425 0.70714396\n\t\t 0.041679557 0.70951825 0.70345342 0.041679557 0.70951825 0.70345342 0.0096141305\n\t\t 0.70700425 0.70714396 0.010886019 0.88921696 0.4573561 0.0251409 0.89437115 0.44661841\n\t\t 0.0251409 0.89437115 0.44661841 0.010886019 0.88921696 0.4573561 0.012234399 0.97346914\n\t\t 0.22849108 0.0063271611 0.97516495 0.22138928 0.0063271611 0.97516495 0.22138928\n\t\t 0.012234399 0.97346914 0.22849108 0.011857364 0.99704003 0.075964034 0.0015926886\n\t\t 0.99700558 0.077313945 0.0015926886 0.99700558 0.077313945 0.011857364 0.99704003\n\t\t 0.075964034 0.014632314 0.99978542 0.01465987 0.0092431214 0.99977612 0.019033248\n\t\t 0.019032281 0.0092324354 0.99977624 0.014658979 0.01463992 0.99978536 0.012108324\n\t\t 0.075995617 0.99703461 0.022492023 0.070863426 0.99723238 0.022492023 0.070863426\n\t\t 0.99723238 0.012108324 0.075995617 0.99703461 0.012682706 0.22830197 0.97350776 0.030500885\n\t\t 0.22566165 0.97372806 0.030500885 0.22566165 0.97372806 0.012682706 0.22830197 0.97350776\n\t\t 0.011130176 0.45709196 0.88934976 0.039383776 0.45315042 0.89056373 0.039383776 0.45315042\n\t\t 0.89056373 0.011130176 0.45709196 0.88934976 0.0096154278 0.70700502 0.70714319 0.041676875\n\t\t 0.70951843 0.70345348 0.041676875 0.70951843 0.70345348 0.0096154278 0.70700502 0.70714319\n\t\t 0.010886061 0.88921726 0.45735538 0.025139421 0.89437109 0.44661868 0.025139421 0.89437109\n\t\t 0.44661868 0.010886061 0.88921726 0.45735538 0.01223442 0.97346944 0.22848995 0.0063267737\n\t\t 0.97516513 0.22138876 0.0063267737 0.97516513 0.22138876 0.01223442 0.97346944 0.22848995\n\t\t 0.01185738 0.99704015 0.075963378 0.0015926862 0.99700558 0.077313498 0.0015926862\n\t\t 0.99700558 0.077313498 0.01185738 0.99704015 0.075963378 0.014632324 0.99978542 0.014659894\n\t\t 0.0092430925 0.99977618 0.019033425 -0.017644551 0.99981117 0.0081462739 0.0092374319\n\t\t 0.99977618 0.019033359 0.0015927404 0.99700558 0.077313721 -0.037657604 0.99756694\n\t\t 0.058668844 -0.037657604 0.99756694 0.058668844 0.0015927404 0.99700558 0.077313721\n\t\t 0.0063268291 0.97516513 0.22138865 -0.098593771 0.97185951 0.21393527 -0.098593771\n\t\t 0.97185951 0.21393527 0.0063268291 0.97516513 0.22138865 0.025139399 0.89437157 0.44661781\n\t\t -0.15059455 0.8840763 0.44241431 -0.15059455 0.8840763 0.44241431 0.025139399 0.89437157\n\t\t 0.44661781 0.041676834 0.70951772 0.7034542 -0.17061245 0.69332922 0.70013285 -0.17061245\n\t\t 0.69332922 0.70013285 0.041676834 0.70951772 0.7034542 0.039383728 0.45315072 0.89056355\n\t\t -0.13224296 0.43576062 0.89029461 -0.13224296 0.43576062 0.89029461 0.039383728 0.45315072\n\t\t 0.89056355 0.030500848 0.22566158 0.97372806 -0.06889347 0.20981997 0.97530979 -0.06889347\n\t\t 0.20981997 0.97530979 0.030500848 0.22566158 0.97372806 0.022491975 0.070861325 0.99723256\n\t\t -0.02930009 0.070410743 0.99708772 -0.02930009 0.070410743 0.99708772 0.022491975\n\t\t 0.070861325 0.99723256 0.019032257 0.0092324531 0.99977624 -0.017758282 0.013717994\n\t\t 0.99974811 0.99977612 0.019034386 0.0092367064 0.99897629 0.03198285 0.031991985\n\t\t 0.99385226 0.056309637 0.095324546 0.99723226 0.022493323 0.070864558 0.99723226\n\t\t 0.022493323 0.070864558 0.99385226 0.056309637 0.095324546 0.96992326 0.078819089\n\t\t 0.23029608 0.9737283 0.030503729 0.22566028 0.9737283 0.030503729 0.22566028 0.96992326\n\t\t 0.078819089 0.23029608 0.89243811 0.070462786 0.44563353 0.89056391 0.039386611 0.45314962\n\t\t 0.89056391 0.039386611 0.45314962 0.89243811 0.070462786 0.44563353 0.70907545 0.054160427\n\t\t 0.70304966 0.70345277 0.041677676 0.70951903 0.70345277 0.041677676 0.70951903 0.70907545\n\t\t 0.054160427 0.70304966 0.45079225 0.057647049 0.89076549 0.4466185 0.025139889 0.89437121;\n\tsetAttr \".n[13612:13777]\" -type \"float3\"  0.4466185 0.025139889 0.89437121 0.45079225\n\t\t 0.057647049 0.89076549 0.22668441 0.06593132 0.97173411 0.22138953 0.0063288393 0.97516495\n\t\t 0.22138953 0.0063288393 0.97516495 0.22668441 0.06593132 0.97173411 0.090521351 0.051805511\n\t\t 0.99454618 0.077313282 0.0015899721 0.99700558 0.077313282 0.0015899721 0.99700558\n\t\t 0.090521351 0.051805511 0.99454618 0.031982161 0.031991817 0.99897629 0.019034004\n\t\t 0.0092368815 0.99977612 0.9997853 0.014636262 -0.014662402 0.99977529 1.4022639e-07\n\t\t -0.021200007 0.99718654 2.5258251e-07 -0.074960656 0.99703801 0.011856018 -0.075990655\n\t\t 0.99703801 0.011856018 -0.075990655 0.99718654 2.5258251e-07 -0.074960656 0.97385389\n\t\t 1.0402029e-07 -0.22717528 0.97345364 0.012228402 -0.22855738 0.97345364 0.012228402\n\t\t -0.22855738 0.97385389 1.0402029e-07 -0.22717528 0.88956934 -1.901866e-08 -0.45680025\n\t\t 0.88917381 0.010884912 -0.45743999 0.88917381 0.010884912 -0.45743999 0.88956934\n\t\t -1.901866e-08 -0.45680025 0.70703024 -1.0270852e-07 -0.70718336 0.70692801 0.0096209338\n\t\t -0.70722014 0.70692801 0.0096209338 -0.70722014 0.70703024 -1.0270852e-07 -0.70718336\n\t\t 0.45662278 -2.0350861e-07 -0.88966042 0.45700207 0.011135504 -0.88939583 0.45700207\n\t\t 0.011135504 -0.88939583 0.45662278 -2.0350861e-07 -0.88966042 0.22703946 -3.2583068e-07\n\t\t -0.9738856 0.22823338 0.012682635 -0.9735238 0.22823338 0.012682635 -0.9735238 0.22703946\n\t\t -3.2583068e-07 -0.9738856 0.07490325 -4.2687856e-07 -0.99719089 0.075961605 0.012104649\n\t\t -0.99703735 0.075961605 0.012104649 -0.99703735 0.07490325 -4.2687856e-07 -0.99719089\n\t\t 0.021182897 -2.8468821e-07 -0.99977559 0.01463102 0.014656714 -0.99978554 0.99987906\n\t\t 0.010978813 0.01101062 0.99978542 0.014656501 0.014635657 0.99703515 0.012106904\n\t\t 0.075988419 0.99871314 0.017910989 0.047449205 0.99871314 0.017910989 0.047449205\n\t\t 0.99703515 0.012106904 0.075988419 0.97350746 0.012683408 0.22830307 0.97551584 -0.042792056\n\t\t 0.21572572 0.97551584 -0.042792056 0.21572572 0.97350746 0.012683408 0.22830307 0.88935012\n\t\t 0.011133948 0.45709118 0.96814018 0.13533145 0.21068963 0.96814018 0.13533145 0.21068963\n\t\t 0.88935012 0.011133948 0.45709118 0.70714903 0.0096241049 0.70699894 0.87306291 0.18791391\n\t\t 0.44994396 0.87306291 0.18791391 0.44994396 0.70714903 0.0096241049 0.70699894 0.45735478\n\t\t 0.010886849 0.88921762 0.51891613 0.07154011 0.85182631 0.51891613 0.07154011 0.85182631\n\t\t 0.45735478 0.010886849 0.88921762 0.22848956 0.01222665 0.97346967 0.23021199 0.009725445\n\t\t 0.9730919 0.23021199 0.009725445 0.9730919 0.22848956 0.01222665 0.97346967 0.075964577\n\t\t 0.011857929 0.99703997 0.081829593 0.0027715638 0.99664253 0.081829593 0.0027715638\n\t\t 0.99664253 0.075964577 0.011857929 0.99703997 0.014658979 0.01463992 0.99978536 0.017643185\n\t\t 0.0081431661 0.99981123 0.013725194 0.99974811 -0.017759731 0.014663333 0.99978518\n\t\t -0.014639967 0.012113564 0.99703479 -0.075991511 0.024883764 0.99547738 -0.091681875\n\t\t 0.024883764 0.99547738 -0.091681875 0.012113564 0.99703479 -0.075991511 0.012688783\n\t\t 0.97350788 -0.22830115 0.050773218 0.96028727 -0.27435437 0.050773218 0.96028727\n\t\t -0.27435437 0.012688783 0.97350788 -0.22830115 0.011135485 0.88934916 -0.45709291\n\t\t 0.10887761 0.81961381 -0.56247574 0.10887761 0.81961381 -0.56247574 0.011135485 0.88934916\n\t\t -0.45709291 0.0096246228 0.70714557 -0.70700246 0.17860542 0.4515039 -0.87421072\n\t\t 0.17860542 0.4515039 -0.87421072 0.0096246228 0.70714557 -0.70700246 0.010890895\n\t\t 0.45735404 -0.88921803 0.073767573 0.28480905 -0.95574164 0.073767573 0.28480905\n\t\t -0.95574164 0.010890895 0.45735404 -0.88921803 0.012230377 0.22848819 -0.97346985\n\t\t -0.10613279 0.2917771 -0.95057988 -0.10613279 0.2917771 -0.95057988 0.012230377 0.22848819\n\t\t -0.97346985 0.011855863 0.075961895 -0.99704015 0.018483872 0.046824783 -0.99873215\n\t\t 0.018483872 0.046824783 -0.99873215 0.011855863 0.075961895 -0.99704015 0.014636426\n\t\t 0.014656524 -0.99978542 0.011013824 0.010990337 -0.99987894 -0.014660154 0.99978536\n\t\t 0.014639735 -0.017644383 0.99981117 0.0081439158 -0.081838675 0.99664164 0.0027797222\n\t\t -0.075961292 0.99704021 0.011856197 -0.075961292 0.99704021 0.011856197 -0.081838675\n\t\t 0.99664164 0.0027797222 -0.2302237 0.97308898 0.0097370455 -0.22848794 0.97346997\n\t\t 0.012226739 -0.22848794 0.97346997 0.012226739 -0.2302237 0.97308898 0.0097370455\n\t\t -0.51893228 0.85181558 0.071549915 -0.45735866 0.88921577 0.010884097 -0.45735866\n\t\t 0.88921577 0.010884097 -0.51893228 0.85181558 0.071549915 -0.87306547 0.44993716\n\t\t 0.1879181 -0.70714742 0.70700061 0.0096207047 -0.70714742 0.70700061 0.0096207047\n\t\t -0.87306547 0.44993716 0.1879181 -0.96813709 0.21071623 0.13531163 -0.88934863 0.45709401\n\t\t 0.011135546 -0.88934863 0.45709401 0.011135546 -0.96813709 0.21071623 0.13531163\n\t\t -0.97551429 0.21573241 -0.042797182 -0.9735074 0.22830318 0.012682882 -0.9735074\n\t\t 0.22830318 0.012682882 -0.97551429 0.21573241 -0.042797182 -0.99870515 0.047574483\n\t\t 0.018020511 -0.99703515 0.075989805 0.012104571 -0.99703515 0.075989805 0.012104571\n\t\t -0.99870515 0.047574483 0.018020511 -0.99987894 0.011014156 0.010990196 -0.99978542\n\t\t 0.01463668 0.014656743 0.014663333 0.99978518 -0.014639967 0.014642588 0.99978536\n\t\t 0.014659861 0.075990841 0.99703503 0.012106691 0.07596413 0.99704003 -0.011857033\n\t\t 0.07596413 0.99704003 -0.011857033 0.075990841 0.99703503 0.012106691 0.22829276\n\t\t 0.97350985 0.012681642 0.22848436 0.97347081 -0.012227942 0.22848436 0.97347081 -0.012227942\n\t\t 0.22829276 0.97350985 0.012681642 0.45709181 0.88934982 0.011132488 0.45736137 0.88921434\n\t\t -0.010884809 0.45736137 0.88921434 -0.010884809 0.45709181 0.88934982 0.011132488\n\t\t 0.70700282 0.70714521 0.0096224668 0.70714962 0.70699841 -0.0096186083 0.70714962\n\t\t 0.70699841 -0.0096186083 0.70700282 0.70714521 0.0096224668 0.88921553 0.45735884\n\t\t 0.010888328 0.88934702 0.45709732 -0.011130835 0.88934702 0.45709732 -0.011130835\n\t\t 0.88921553 0.45735884 0.010888328 0.97346967 0.228489 0.012228679 0.97350794 0.2283012\n\t\t -0.01268364 0.97350794 0.2283012 -0.01268364 0.97346967 0.228489 0.012228679;\n\tsetAttr \".n[13778:13943]\" -type \"float3\"  0.99704015 0.075962901 0.011857701 0.99703509\n\t\t 0.075989842 -0.012108909 0.99703509 0.075989842 -0.012108909 0.99704015 0.075962901\n\t\t 0.011857701 0.9997853 0.014658965 0.014641111 0.9997853 0.014638809 -0.014659367\n\t\t 0.99981117 0.0081451787 -0.017645836 0.99977618 0.019033505 0.0092366021 0.99700552\n\t\t 0.077314235 0.0015892504 0.997567 0.058669094 -0.037654668 0.997567 0.058669094 -0.037654668\n\t\t 0.99700552 0.077314235 0.0015892504 0.97516459 0.2213908 0.0063272514 0.9718585 0.21393667\n\t\t -0.098600954 0.9718585 0.21393667 -0.098600954 0.97516459 0.2213908 0.0063272514\n\t\t 0.89437324 0.44661459 0.02513751 0.88408047 0.44240573 -0.1505952 0.88408047 0.44240573\n\t\t -0.1505952 0.89437324 0.44661459 0.02513751 0.70951599 0.70345592 0.041676294 0.69332308\n\t\t 0.70013756 -0.17061806 0.69332308 0.70013756 -0.17061806 0.70951599 0.70345592 0.041676294\n\t\t 0.4531458 0.89056575 0.039389003 0.43575788 0.8902939 -0.13225663 0.43575788 0.8902939\n\t\t -0.13225663 0.4531458 0.89056575 0.039389003 0.22566262 0.97372782 0.030507673 0.2098081\n\t\t 0.97531223 -0.068895921 0.2098081 0.97531223 -0.068895921 0.22566262 0.97372782 0.030507673\n\t\t 0.070868134 0.99723208 0.022493612 0.070415102 0.99708742 -0.029297562 0.070415102\n\t\t 0.99708742 -0.029297562 0.070868134 0.99723208 0.022493612 0.0092436569 0.99977618\n\t\t 0.01903321 0.013725194 0.99974811 -0.017759731 0.0092351735 0.9997763 0.019030694\n\t\t 0.01464267 0.9997853 0.014659925 0.075990565 0.99703503 0.012106717 0.0708616 0.99723256\n\t\t 0.022492247 0.0708616 0.99723256 0.022492247 0.075990565 0.99703503 0.012106717 0.22829227\n\t\t 0.97351003 0.012681621 0.22565438 0.97372979 0.030501973 0.22565438 0.97372979 0.030501973\n\t\t 0.22829227 0.97351003 0.012681621 0.45709196 0.88934982 0.011131631 0.45315096 0.89056343\n\t\t 0.039383549 0.45315096 0.89056343 0.039383549 0.45709196 0.88934982 0.011131631 0.70700616\n\t\t 0.70714194 0.0096212607 0.70952046 0.70345134 0.041676231 0.70952046 0.70345134 0.041676231\n\t\t 0.70700616 0.70714194 0.0096212607 0.88921779 0.45735458 0.010886912 0.89437008 0.4466207\n\t\t 0.025140174 0.89437008 0.4466207 0.025140174 0.88921779 0.45735458 0.010886912 0.9734695\n\t\t 0.22848985 0.012229009 0.97516507 0.22138883 0.0063291388 0.97516507 0.22138883 0.0063291388\n\t\t 0.9734695 0.22848985 0.012229009 0.99703997 0.075965472 0.011857368 0.99700558 0.077313587\n\t\t 0.0015899385 0.99700558 0.077313587 0.0015899385 0.99703997 0.075965472 0.011857368\n\t\t 0.99978536 0.014660403 0.014639906 0.99977618 0.019034173 0.0092366505 0.99977624\n\t\t 0.019030038 0.0092333993 0.99897635 0.03198126 0.03199112 0.99385226 0.056309838\n\t\t 0.095324941 0.99723274 0.022490971 0.070859551 0.99723274 0.022490971 0.070859551\n\t\t 0.99385226 0.056309838 0.095324941 0.96992302 0.078819208 0.2302971 0.97372943 0.030501829\n\t\t 0.22565593 0.97372943 0.030501829 0.22565593 0.96992302 0.078819208 0.2302971 0.89243841\n\t\t 0.070462376 0.44563287 0.89056414 0.039385408 0.4531492 0.89056414 0.039385408 0.4531492\n\t\t 0.89243841 0.070462376 0.44563287 0.70907819 0.054160915 0.70304674 0.7034499 0.041678119\n\t\t 0.70952171 0.7034499 0.041678119 0.70952171 0.70907819 0.054160915 0.70304674 0.4507944\n\t\t 0.057648342 0.89076436 0.44661668 0.025142418 0.89437211 0.44661668 0.025142418 0.89437211\n\t\t 0.4507944 0.057648342 0.89076436 0.22668488 0.065930299 0.97173417 0.22138831 0.0063302787\n\t\t 0.97516519 0.22138831 0.0063302787 0.97516519 0.22668488 0.065930299 0.97173417 0.090521052\n\t\t 0.051803738 0.99454635 0.07731083 0.0015880927 0.9970057 0.07731083 0.0015880927\n\t\t 0.9970057 0.090521052 0.051803738 0.99454635 0.03198031 0.03199077 0.99897641 0.019032447\n\t\t 0.0092323879 0.99977624 0.99897635 0.03198126 0.03199112 0.99977624 0.019032368 0.0092320796\n\t\t 0.99700564 0.077311613 0.0015870234 0.99454612 0.090521894 0.051805247 0.99454612\n\t\t 0.090521894 0.051805247 0.99700564 0.077311613 0.0015870234 0.97516471 0.2213904\n\t\t 0.0063280691 0.97173464 0.22668277 0.065930545 0.97173464 0.22668277 0.065930545\n\t\t 0.97516471 0.2213904 0.0063280691 0.89437282 0.44661528 0.025139505 0.89076823 0.45078704\n\t\t 0.057644956 0.89076823 0.45078704 0.057644956 0.89437282 0.44661528 0.025139505 0.70951343\n\t\t 0.70345849 0.041676778 0.70304334 0.70908201 0.054154981 0.70304334 0.70908201 0.054154981\n\t\t 0.70951343 0.70345849 0.041676778 0.45314187 0.89056778 0.039388627 0.44562593 0.89244241\n\t\t 0.070456445 0.44562593 0.89244241 0.070456445 0.45314187 0.89056778 0.039388627 0.22566284\n\t\t 0.9737277 0.030506892 0.23030661 0.96992087 0.078817815 0.23030661 0.96992087 0.078817815\n\t\t 0.22566284 0.9737277 0.030506892 0.070868373 0.99723208 0.022493323 0.09533336 0.99385142\n\t\t 0.056310646 0.09533336 0.99385142 0.056310646 0.070868373 0.99723208 0.022493323\n\t\t 0.0092436178 0.99977618 0.019033253 0.031992305 0.99897635 0.031980187 0.0092351409\n\t\t 0.9997763 0.01903072 0.014642558 0.99978536 0.01465977 0.075990207 0.99703509 0.012106257\n\t\t 0.070861571 0.99723256 0.022492366 0.070861571 0.99723256 0.022492366 0.075990207\n\t\t 0.99703509 0.012106257 0.228292 0.97351009 0.012680837 0.22565468 0.97372979 0.030502018\n\t\t 0.22565468 0.97372979 0.030502018 0.228292 0.97351009 0.012680837 0.45709142 0.88935012\n\t\t 0.011130556 0.45314586 0.89056599 0.039382879 0.45314586 0.89056599 0.039382879 0.45709142\n\t\t 0.88935012 0.011130556 0.70700639 0.70714176 0.0096200081 0.70951921 0.70345265 0.041673489\n\t\t 0.70951921 0.70345265 0.041673489 0.70700639 0.70714176 0.0096200081 0.88921815 0.45735374\n\t\t 0.010887469 0.89437222 0.44661671 0.025138561 0.89437222 0.44661671 0.025138561 0.88921815\n\t\t 0.45735374 0.010887469 0.97346967 0.22848919 0.01222863 0.97516525 0.22138816 0.0063278852\n\t\t 0.97516525 0.22138816 0.0063278852 0.97346967 0.22848919 0.01222863 0.99704015 0.075962424\n\t\t 0.011856165 0.99700582 0.077310324 0.0015865567 0.99700582 0.077310324 0.0015865567\n\t\t 0.99704015 0.075962424 0.011856165 0.99978542 0.014656731 0.014637638 0.99977624\n\t\t 0.019030292 0.0092335613;\n\tsetAttr \".n[13944:14109]\" -type \"float3\"  0.031992305 0.99897635 0.031980187 0.0092351735\n\t\t 0.9997763 0.019030694 0.001586722 0.99700564 0.077311747 0.051799692 0.99454635 0.09052255\n\t\t 0.051799692 0.99454635 0.09052255 0.001586722 0.99700564 0.077311747 0.0063244249\n\t\t 0.97516465 0.22139101 0.065915264 0.97173417 0.2266887 0.065915264 0.97173417 0.2266887\n\t\t 0.0063244249 0.97516465 0.22139101 0.025137445 0.89437193 0.44661716 0.057632703\n\t\t 0.89076769 0.45078972 0.057632703 0.89076769 0.45078972 0.025137445 0.89437193 0.44661716\n\t\t 0.041677661 0.70951951 0.70345223 0.054158241 0.70305192 0.70907319 0.054158241 0.70305192\n\t\t 0.70907319 0.041677661 0.70951951 0.70345223 0.039385632 0.45314878 0.89056444 0.07046397\n\t\t 0.44563296 0.89243829 0.07046397 0.44563296 0.89243829 0.039385632 0.45314878 0.89056444\n\t\t 0.030504571 0.22566073 0.97372818 0.07882046 0.23029669 0.96992302 0.07882046 0.23029669\n\t\t 0.96992302 0.030504571 0.22566073 0.97372818 0.022492787 0.070861913 0.9972325 0.05630989\n\t\t 0.095323145 0.99385244 0.05630989 0.095323145 0.99385244 0.022492787 0.070861913\n\t\t 0.9972325 0.019029897 0.0092337225 0.99977624 0.03198031 0.03199077 0.99897641 0.019034069\n\t\t 0.0092368713 0.99977618 0.014660339 0.014639962 0.99978536 0.012107753 0.075992435\n\t\t 0.99703485 0.022492398 0.07086537 0.99723226 0.022492398 0.07086537 0.99723226 0.012107753\n\t\t 0.075992435 0.99703485 0.012681938 0.2283017 0.97350782 0.030503377 0.22566064 0.97372824\n\t\t 0.030503377 0.22566064 0.97372824 0.012681938 0.2283017 0.97350782 0.011130692 0.45709392\n\t\t 0.8893488 0.039386861 0.45314968 0.89056385 0.039386861 0.45314968 0.89056385 0.011130692\n\t\t 0.45709392 0.8893488 0.0096158283 0.70700347 0.7071448 0.041680854 0.70951658 0.70345503\n\t\t 0.041680854 0.70951658 0.70345503 0.0096158283 0.70700347 0.7071448 0.010882727 0.88921678\n\t\t 0.45735666 0.025140733 0.89437044 0.44661999 0.025140733 0.89437044 0.44661999 0.010882727\n\t\t 0.88921678 0.45735666 0.012228126 0.97346926 0.22849084 0.0063309725 0.97516537 0.22138757\n\t\t 0.0063309725 0.97516537 0.22138757 0.012228126 0.97346926 0.22849084 0.011857862\n\t\t 0.99703997 0.075964116 0.0015989962 0.99700564 0.077312328 0.0015989962 0.99700564\n\t\t 0.077312328 0.011857862 0.99703997 0.075964116 0.01464267 0.9997853 0.014659925 0.0092436178\n\t\t 0.99977618 0.019033253 0.019032309 0.0092324354 0.99977624 0.01465892 0.014639879\n\t\t 0.9997853 0.012107875 0.075995401 0.99703461 0.022492483 0.070862204 0.99723244 0.022492483\n\t\t 0.070862204 0.99723244 0.012107875 0.075995401 0.99703461 0.01268224 0.2283015 0.97350782\n\t\t 0.030501481 0.22566183 0.97372812 0.030501481 0.22566183 0.97372812 0.01268224 0.2283015\n\t\t 0.97350782 0.01113019 0.45709181 0.88935 0.039383963 0.45315221 0.89056271 0.039383963\n\t\t 0.45315221 0.89056271 0.01113019 0.45709181 0.88935 0.0096154967 0.70700562 0.70714259\n\t\t 0.041680049 0.70951718 0.70345449 0.041680049 0.70951718 0.70345449 0.0096154967\n\t\t 0.70700562 0.70714259 0.010882785 0.88921702 0.45735601 0.025139384 0.89437014 0.44662061\n\t\t 0.025139384 0.89437014 0.44662061 0.010882785 0.88921702 0.45735601 0.012228126 0.97346914\n\t\t 0.22849147 0.0063302093 0.97516549 0.22138727 0.0063302093 0.97516549 0.22138727\n\t\t 0.012228126 0.97346914 0.22849147 0.011857831 0.99704015 0.075963557 0.0015986324\n\t\t 0.99700564 0.077311613 0.0015986324 0.99700564 0.077311613 0.011857831 0.99704015\n\t\t 0.075963557 0.014642588 0.99978536 0.014659861 0.0092436569 0.99977618 0.01903321\n\t\t 0.99977618 0.019033505 0.0092366021 0.99978536 0.014659924 0.014639721 0.99703497\n\t\t 0.012107966 0.075991563 0.99723238 0.022492995 0.070864111 0.99723238 0.022492995\n\t\t 0.070864111 0.99703497 0.012107966 0.075991563 0.973508 0.012682845 0.22830091 0.97372901\n\t\t 0.030503301 0.22565794 0.97372901 0.030503301 0.22565794 0.973508 0.012682845 0.22830091\n\t\t 0.88934791 0.011132329 0.45709574 0.89056593 0.039385349 0.45314568 0.89056593 0.039385349\n\t\t 0.45314568 0.88934791 0.011132329 0.45709574 0.70714307 0.0096213352 0.70700502 0.703453\n\t\t 0.041675668 0.70951891 0.703453 0.041675668 0.70951891 0.70714307 0.0096213352 0.70700502\n\t\t 0.4573555 0.010886981 0.88921732 0.44661441 0.025137484 0.8943733 0.44661441 0.025137484\n\t\t 0.8943733 0.4573555 0.010886981 0.88921732 0.22848976 0.012229987 0.97346944 0.22138704\n\t\t 0.006325955 0.97516543 0.22138704 0.006325955 0.97516543 0.22848976 0.012229987 0.97346944\n\t\t 0.075961918 0.011857891 0.99704015 0.077310145 0.0015865664 0.99700582 0.077310145\n\t\t 0.0015865664 0.99700582 0.075961918 0.011857891 0.99704015 0.014656688 0.014637707\n\t\t 0.99978542 0.019029897 0.0092337225 0.99977624 -0.017644383 0.99981117 0.0081439158\n\t\t 0.0092351409 0.9997763 0.01903072 0.0015867227 0.99700564 0.077311888 -0.03766495\n\t\t 0.99756664 0.058668818 -0.03766495 0.99756664 0.058668818 0.0015867227 0.99700564\n\t\t 0.077311888 0.0063248007 0.97516465 0.22139084 -0.098621562 0.97185642 0.21393724\n\t\t -0.098621562 0.97185642 0.21393724 0.0063248007 0.97516465 0.22139084 0.025138132\n\t\t 0.89437157 0.44661787 -0.15061136 0.88407445 0.44241238 -0.15061136 0.88407445 0.44241238\n\t\t 0.025138132 0.89437157 0.44661787 0.0416779 0.70951957 0.70345229 -0.17061129 0.693331\n\t\t 0.7001313 -0.17061129 0.693331 0.7001313 0.0416779 0.70951957 0.70345229 0.039387032\n\t\t 0.45314971 0.89056391 -0.13224347 0.43576339 0.89029324 -0.13224347 0.43576339 0.89029324\n\t\t 0.039387032 0.45314971 0.89056391 0.030505935 0.22566065 0.97372824 -0.068895236\n\t\t 0.2098182 0.97530997 -0.068895236 0.2098182 0.97530997 0.030505935 0.22566065 0.97372824\n\t\t 0.022494096 0.070864536 0.99723238 -0.029304087 0.070414335 0.99708736 -0.029304087\n\t\t 0.070414335 0.99708736 0.022494096 0.070864536 0.99723238 0.019033736 0.0092368061\n\t\t 0.99977618 -0.01776132 0.013721419 0.99974811 -0.014638685 0.014660081 0.9997853\n\t\t 0.014658768 0.014641295 0.9997853 0.012108495 0.075990275 0.99703503 -0.011856223\n\t\t 0.075962052 0.99704027 -0.011856223 0.075962052 0.99704027 0.012108495 0.075990275\n\t\t 0.99703503;\n\tsetAttr \".n[14110:14275]\" -type \"float3\"  0.012681494 0.22829983 0.97350824 -0.01222809\n\t\t 0.22848888 0.97346973 -0.01222809 0.22848888 0.97346973 0.012681494 0.22829983 0.97350824\n\t\t 0.011129371 0.45709583 0.88934779 -0.010885939 0.45735872 0.88921565 -0.010885939\n\t\t 0.45735872 0.88921565 0.011129371 0.45709583 0.88934779 0.0096163899 0.70700514 0.70714313\n\t\t -0.0096202847 0.70714486 0.7070033 -0.0096202847 0.70714486 0.7070033 0.0096163899\n\t\t 0.70700514 0.70714313 0.010882733 0.8892175 0.45735529 -0.011134978 0.88934755 0.45709601\n\t\t -0.011134978 0.88934755 0.45709601 0.010882733 0.8892175 0.45735529 0.012228154 0.97346932\n\t\t 0.22849087 -0.012689046 0.97350758 0.22830191 -0.012689046 0.97350758 0.22830191\n\t\t 0.012228154 0.97346932 0.22849087 0.011857876 0.99704003 0.075963989 -0.01211346\n\t\t 0.99703485 0.075992011 -0.01211346 0.99703485 0.075992011 0.011857876 0.99704003\n\t\t 0.075963989 0.014642558 0.99978536 0.01465977 -0.014660154 0.99978536 0.014639735\n\t\t 0.99977624 0.019032631 0.0092321774 0.99978542 0.014656731 0.014637638 0.99703509\n\t\t 0.012106886 0.075989813 0.99723262 0.022492275 0.070860811 0.99723262 0.022492275\n\t\t 0.070860811 0.99703509 0.012106886 0.075989813 0.97350806 0.012683389 0.22830081\n\t\t 0.9737283 0.03050269 0.22566074 0.9737283 0.03050269 0.22566074 0.97350806 0.012683389\n\t\t 0.22830081 0.88935 0.011134075 0.45709133 0.89056373 0.039385144 0.45315021 0.89056373\n\t\t 0.039385144 0.45315021 0.88935 0.011134075 0.45709133 0.70714778 0.0096232276 0.70700043\n\t\t 0.70345318 0.04167708 0.70951855 0.70345318 0.04167708 0.70951855 0.70714778 0.0096232276\n\t\t 0.70700043 0.45735654 0.010887561 0.88921672 0.44661859 0.025142048 0.89437115 0.44661859\n\t\t 0.025142048 0.89437115 0.45735654 0.010887561 0.88921672 0.22848961 0.012228121 0.9734695\n\t\t 0.22138745 0.0063286657 0.97516543 0.22138745 0.0063286657 0.97516543 0.22848961\n\t\t 0.012228121 0.9734695 0.075962976 0.011857917 0.99704015 0.077310182 0.0015866434\n\t\t 0.99700582 0.077310182 0.0015866434 0.99700582 0.075962976 0.011857917 0.99704015\n\t\t 0.014658768 0.014641295 0.9997853 0.019032257 0.0092324531 0.99977624 -0.99978542\n\t\t 0.01463668 0.014656743 -0.999879 0.011014002 0.010990342 -0.99873209 0.018490748\n\t\t 0.046822373 -0.99704021 0.011856666 0.075961754 -0.99704021 0.011856666 0.075961754\n\t\t -0.99873209 0.018490748 0.046822373 -0.95058203 -0.10614206 0.29176635 -0.97346997\n\t\t 0.012229271 0.22848803 -0.97346997 0.012229271 0.22848803 -0.95058203 -0.10614206\n\t\t 0.29176635 -0.95574296 0.073768355 0.28480417 -0.88921899 0.010886376 0.45735219\n\t\t -0.88921899 0.010886376 0.45735219 -0.95574296 0.073768355 0.28480417 -0.87421304\n\t\t 0.17861027 0.45149752 -0.70700437 0.0096195126 0.70714372 -0.70700437 0.0096195126\n\t\t 0.70714372 -0.87421304 0.17861027 0.45149752 -0.56247532 0.10887342 0.81961459 -0.45709476\n\t\t 0.011130834 0.88934833 -0.45709476 0.011130834 0.88934833 -0.56247532 0.10887342\n\t\t 0.81961459 -0.27435136 0.050769962 0.96028829 -0.22830136 0.01268374 0.97350794 -0.22830136\n\t\t 0.01268374 0.97350794 -0.27435136 0.050769962 0.96028829 -0.091680937 0.024872007\n\t\t 0.99547774 -0.075989656 0.012109245 0.99703509 -0.075989656 0.012109245 0.99703509\n\t\t -0.091680937 0.024872007 0.99547774 -0.017758282 0.013717994 0.99974811 -0.014638685\n\t\t 0.014660081 0.9997853 0.031981274 0.031991206 0.99897641 0.019032309 0.0092324354\n\t\t 0.99977624 0.077310503 0.0015880894 0.99700582 0.090521358 0.051804237 0.99454623\n\t\t 0.090521358 0.051804237 0.99454623 0.077310503 0.0015880894 0.99700582 0.22138785\n\t\t 0.0063290601 0.97516531 0.22668354 0.065930702 0.9717344 0.22668354 0.065930702 0.9717344\n\t\t 0.22138785 0.0063290601 0.97516531 0.44661799 0.025141064 0.89437145 0.4507921 0.057649013\n\t\t 0.89076555 0.4507921 0.057649013 0.89076555 0.44661799 0.025141064 0.89437145 0.70345229\n\t\t 0.041679043 0.70951939 0.70907646 0.054161631 0.70304835 0.70907646 0.054161631 0.70304835\n\t\t 0.70345229 0.041679043 0.70951939 0.89056385 0.039387461 0.45314974 0.89243901 0.070462197\n\t\t 0.44563195 0.89243901 0.070462197 0.44563195 0.89056385 0.039387461 0.45314974 0.97372848\n\t\t 0.030503251 0.2256597 0.96992338 0.078819469 0.23029545 0.96992338 0.078819469 0.23029545\n\t\t 0.97372848 0.030503251 0.2256597 0.99723232 0.022492573 0.070863903 0.9938522 0.056310378\n\t\t 0.095325299 0.9938522 0.056310378 0.095325299 0.99723232 0.022492573 0.070863903\n\t\t 0.99977618 0.019034173 0.0092366505 0.99897629 0.031982388 0.031991772 0.011014463\n\t\t 0.010990391 -0.99987888 0.014636426 0.014656524 -0.99978542 0.07599017 0.012104367\n\t\t -0.99703515 0.04759223 0.018033488 -0.99870408 0.04759223 0.018033488 -0.99870408\n\t\t 0.07599017 0.012104367 -0.99703515 0.22830075 0.012683032 -0.97350806 0.2157318 -0.042788323\n\t\t -0.97551477 0.2157318 -0.042788323 -0.97551477 0.22830075 0.012683032 -0.97350806\n\t\t 0.45709476 0.011136705 -0.88934833 0.2107203 0.13532366 -0.96813458 0.2107203 0.13532366\n\t\t -0.96813458 0.45709476 0.011136705 -0.88934833 0.70700753 0.0096233524 -0.70714045\n\t\t 0.4499428 0.18791337 -0.87306356 0.4499428 0.18791337 -0.87306356 0.70700753 0.0096233524\n\t\t -0.70714045 0.88921857 0.010886495 -0.457353 0.85181934 0.071548462 -0.51892632 0.85181934\n\t\t 0.071548462 -0.51892632 0.88921857 0.010886495 -0.457353 0.97346961 0.012228406 -0.22848953\n\t\t 0.97309256 0.0097287046 -0.23020907 0.97309256 0.0097287046 -0.23020907 0.97346961\n\t\t 0.012228406 -0.22848953 0.99704015 0.011857083 -0.075963125 0.99664241 0.0027725757\n\t\t -0.081830017 0.99664241 0.0027725757 -0.081830017 0.99704015 0.011857083 -0.075963125\n\t\t 0.9997853 0.014638809 -0.014659367 0.99981117 0.0081419423 -0.017643576 0.01465892\n\t\t 0.014639879 0.9997853 0.019031141 0.0092337709 0.99977624 0.077311128 0.0015865911\n\t\t 0.99700576 0.075963959 0.011857947 0.99704009 0.075963959 0.011857947 0.99704009\n\t\t 0.077311128 0.0015865911 0.99700576 0.22138779 0.0063272878 0.97516531 0.22849 0.012226716\n\t\t 0.97346944 0.22849 0.012226716 0.97346944 0.22138779 0.0063272878 0.97516531 0.44661665\n\t\t 0.02513851 0.89437222 0.45735395 0.010886116 0.88921809;\n\tsetAttr \".n[14276:14441]\" -type \"float3\"  0.45735395 0.010886116 0.88921809 0.44661665\n\t\t 0.02513851 0.89437222 0.70345396 0.041674834 0.70951802 0.70714688 0.0096217319 0.70700115\n\t\t 0.70714688 0.0096217319 0.70700115 0.70345396 0.041674834 0.70951802 0.89056504 0.039385039\n\t\t 0.45314759 0.88935071 0.011131119 0.45709008 0.88935071 0.011131119 0.45709008 0.89056504\n\t\t 0.039385039 0.45314759 0.97372866 0.030502949 0.2256594 0.973508 0.012682107 0.22830063\n\t\t 0.973508 0.012682107 0.22830063 0.97372866 0.030502949 0.2256594 0.99723256 0.022491634\n\t\t 0.070861496 0.99703491 0.012107675 0.075992219 0.99703491 0.012107675 0.075992219\n\t\t 0.99723256 0.022491634 0.070861496 0.99977624 0.0190304 0.0092335399 0.9997853 0.014658965\n\t\t 0.014641111 0.013713833 0.99974829 -0.017756034 0.014672036 0.99978524 -0.014637464\n\t\t 0.012126092 0.99703491 -0.075989433 0.024891561 0.99547684 -0.091685772 0.024891561\n\t\t 0.99547684 -0.091685772 0.012126092 0.99703491 -0.075989433 0.012698331 0.97350645\n\t\t -0.22830658 0.050809473 0.96028137 -0.27436846 0.050809473 0.96028137 -0.27436846\n\t\t 0.012698331 0.97350645 -0.22830658 0.011138951 0.88934869 -0.45709404 0.10890556\n\t\t 0.81960744 -0.5624795 0.10890556 0.81960744 -0.5624795 0.011138951 0.88934869 -0.45709404\n\t\t 0.0096246619 0.70714986 -0.70699817 0.17860563 0.45150959 -0.87420774 0.17860563\n\t\t 0.45150959 -0.87420774 0.0096246619 0.70714986 -0.70699817 0.010890992 0.45735294\n\t\t -0.88921845 0.073782712 0.28479815 -0.95574385 0.073782712 0.28479815 -0.95574385\n\t\t 0.010890992 0.45735294 -0.88921845 0.012229563 0.228488 -0.97346991 -0.10613802 0.29175979\n\t\t -0.95058453 -0.10613802 0.29175979 -0.95058453 0.012229563 0.228488 -0.97346991 0.011855192\n\t\t 0.075960025 -0.99704033 0.01853059 0.046827238 -0.99873114 0.01853059 0.046827238\n\t\t -0.99873114 0.011855192 0.075960025 -0.99704033 0.014636599 0.014654087 -0.99978548\n\t\t 0.01101503 0.010986695 -0.999879 -0.014680066 0.99978507 0.014637364 -0.017651932\n\t\t 0.99981111 0.0081414133 -0.081815049 0.9966436 0.0027718267 -0.075982429 0.99703872\n\t\t 0.011857806 -0.075982429 0.99703872 0.011857806 -0.081815049 0.9966436 0.0027718267\n\t\t -0.23022112 0.97308969 0.0097318636 -0.22849615 0.97346801 0.012226244 -0.22849615\n\t\t 0.97346801 0.012226244 -0.23022112 0.97308969 0.0097318636 -0.51893359 0.8518135\n\t\t 0.07156612 -0.45734814 0.88922125 0.010881552 -0.45734814 0.88922125 0.010881552\n\t\t -0.51893359 0.8518135 0.07156612 -0.87306887 0.44993758 0.18790148 -0.70713943 0.70700866\n\t\t 0.0096212197 -0.70713943 0.70700866 0.0096212197 -0.87306887 0.44993758 0.18790148\n\t\t -0.96813881 0.21071184 0.13530651 -0.88935256 0.45708653 0.011135742 -0.88935256\n\t\t 0.45708653 0.011135742 -0.96813881 0.21071184 0.13530651 -0.97552425 0.21568635 -0.04280078\n\t\t -0.9735083 0.22829974 0.012683215 -0.9735083 0.22829974 0.012683215 -0.97552425 0.21568635\n\t\t -0.04280078 -0.99870175 0.04760506 0.018128248 -0.99703497 0.075991429 0.012105355\n\t\t -0.99703497 0.075991429 0.012105355 -0.99870175 0.04760506 0.018128248 -0.99987882\n\t\t 0.011014685 0.01099311 -0.99978542 0.014636494 0.014657062 0.014672036 0.99978524\n\t\t -0.014637464 0.014651301 0.99978513 0.014662058 0.075996853 0.99703443 0.012115173\n\t\t 0.075976409 0.99703914 -0.011858363 0.075976409 0.99703914 -0.011858363 0.075996853\n\t\t 0.99703443 0.012115173 0.2282957 0.97350925 0.012686649 0.22848846 0.97346979 -0.012228171\n\t\t 0.22848846 0.97346979 -0.012228171 0.2282957 0.97350925 0.012686649 0.45708954 0.88935107\n\t\t 0.011132759 0.45735317 0.88921857 -0.010884244 0.45735317 0.88921857 -0.010884244\n\t\t 0.45708954 0.88935107 0.011132759 0.70700043 0.7071476 0.0096237948 0.70714563 0.70700246\n\t\t -0.0096214097 0.70714563 0.70700246 -0.0096214097 0.70700043 0.7071476 0.0096237948\n\t\t 0.88921934 0.45735154 0.010887322 0.88934833 0.45709458 -0.011133261 0.88934833 0.45709458\n\t\t -0.011133261 0.88921934 0.45735154 0.010887322 0.97346961 0.22848926 0.012228664\n\t\t 0.97350776 0.22830187 -0.012684085 0.97350776 0.22830187 -0.012684085 0.97346961\n\t\t 0.22848926 0.012228664 0.99703979 0.075967148 0.011857502 0.99703485 0.075992323\n\t\t -0.01210875 0.99703485 0.075992323 -0.01210875 0.99703979 0.075967148 0.011857502\n\t\t 0.99978536 0.014659924 0.014639721 0.9997853 0.014639826 -0.014660377 0.99981129\n\t\t 0.0081436643 -0.017639546 0.99977624 0.01903211 0.0092320209 0.99700576 0.077310979\n\t\t 0.0015869788 0.99756753 0.058664881 -0.037648246 0.99756753 0.058664881 -0.037648246\n\t\t 0.99700576 0.077310979 0.0015869788 0.97516519 0.22138844 0.0063279481 0.97185934\n\t\t 0.2139342 -0.098597869 0.97185934 0.2139342 -0.098597869 0.97516519 0.22138844 0.0063279481\n\t\t 0.89437234 0.44661626 0.025139304 0.88407791 0.44241098 -0.1505944 0.88407791 0.44241098\n\t\t -0.1505944 0.89437234 0.44661626 0.025139304 0.70951462 0.70345724 0.041676328 0.69331962\n\t\t 0.70014113 -0.17061767 0.69331962 0.70014113 -0.17061767 0.70951462 0.70345724 0.041676328\n\t\t 0.45314914 0.8905642 0.039388124 0.43576249 0.89029175 -0.13225673 0.43576249 0.89029175\n\t\t -0.13225673 0.45314914 0.8905642 0.039388124 0.22566651 0.97372681 0.030508658 0.20981197\n\t\t 0.9753114 -0.068895854 0.20981197 0.9753114 -0.068895854 0.22566651 0.97372681 0.030508658\n\t\t 0.070853397 0.99723309 0.02249484 0.070406564 0.99708807 -0.029297525 0.070406564\n\t\t 0.99708807 -0.029297525 0.070853397 0.99723309 0.02249484 0.0092238272 0.99977636\n\t\t 0.019030662 0.013713833 0.99974829 -0.017756034 0.0092351399 0.99977624 0.019030616\n\t\t 0.014651231 0.99978513 0.014662095 0.076002859 0.99703395 0.012114693 0.0708616 0.99723238\n\t\t 0.02249508 0.0708616 0.99723238 0.02249508 0.076002859 0.99703395 0.012114693 0.22831032\n\t\t 0.9735058 0.012685881 0.22566648 0.97372681 0.030508939 0.22566648 0.97372681 0.030508939\n\t\t 0.22831032 0.9735058 0.012685881 0.45709491 0.88934827 0.011131835 0.45314872 0.89056432\n\t\t 0.039388232 0.45314872 0.89056432 0.039388232 0.45709491 0.88934827 0.011131835 0.70699805\n\t\t 0.70714998 0.0096217375 0.70951253 0.70345956 0.041674446 0.70951253 0.70345956 0.041674446\n\t\t 0.70699805 0.70714998 0.0096217375;\n\tsetAttr \".n[14442:14607]\" -type \"float3\"  0.88921845 0.45735329 0.010886636 0.89437085\n\t\t 0.44661954 0.025136126 0.89437085 0.44661954 0.025136126 0.88921845 0.45735329 0.010886636\n\t\t 0.97346944 0.22849011 0.012228065 0.97516465 0.22139083 0.0063250731 0.97516465 0.22139083\n\t\t 0.0063250731 0.97346944 0.22849011 0.012228065 0.99704003 0.075964659 0.011856309\n\t\t 0.99700576 0.077310674 0.0015855613 0.99700576 0.077310674 0.0015855613 0.99704003\n\t\t 0.075964659 0.011856309 0.99978542 0.014656219 0.014637504 0.99977624 0.019030038\n\t\t 0.0092333993 0.019032447 0.0092323879 0.99977624 0.014656688 0.014637707 0.99978542\n\t\t 0.012107715 0.075990386 0.99703503 0.022493068 0.070860848 0.99723262 0.022493068\n\t\t 0.070860848 0.99723262 0.012107715 0.075990386 0.99703503 0.012684792 0.22830111\n\t\t 0.97350788 0.030502118 0.22566158 0.97372806 0.030502118 0.22566158 0.97372806 0.012684792\n\t\t 0.22830111 0.97350788 0.011135397 0.45709184 0.88934982 0.039383806 0.45315 0.89056391\n\t\t 0.039383806 0.45315 0.89056391 0.011135397 0.45709184 0.88934982 0.0096223233 0.7070061\n\t\t 0.707142 0.041673698 0.7095198 0.70345223 0.041673698 0.7095198 0.70345223 0.0096223233\n\t\t 0.7070061 0.707142 0.010875965 0.88922101 0.45734864 0.025134195 0.8943724 0.44661653\n\t\t 0.025134195 0.8943724 0.44661653 0.010875965 0.88922101 0.45734864 0.012219185 0.97346938\n\t\t 0.22849108 0.0063217115 0.97516477 0.22139056 0.0063217115 0.97516477 0.22139056\n\t\t 0.012219185 0.97346938 0.22849108 0.0118648 0.99703956 0.075969256 0.0015839522 0.99700576\n\t\t 0.077311724 0.0015839522 0.99700576 0.077311724 0.0118648 0.99703956 0.075969256\n\t\t 0.014651301 0.99978513 0.014662058 0.0092238272 0.99977636 0.019030662 -0.017651932\n\t\t 0.99981111 0.0081414133 0.0092351399 0.99977624 0.019030616 0.0015838015 0.99700564\n\t\t 0.077312008 -0.037646089 0.99756759 0.058664557 -0.037646089 0.99756759 0.058664557\n\t\t 0.0015838015 0.99700564 0.077312008 0.0063215955 0.97516459 0.22139108 -0.098626323\n\t\t 0.97185516 0.21394031 -0.098626323 0.97185516 0.21394031 0.0063215955 0.97516459\n\t\t 0.22139108 0.025134979 0.89437109 0.44661903 -0.15061121 0.88407421 0.44241264 -0.15061121\n\t\t 0.88407421 0.44241264 0.025134979 0.89437109 0.44661903 0.041674513 0.70951873 0.70345312\n\t\t -0.17061098 0.69333184 0.7001307 -0.17061098 0.69333184 0.7001307 0.041674513 0.70951873\n\t\t 0.70345312 0.039385475 0.45314986 0.89056385 -0.13224544 0.4357636 0.89029276 -0.13224544\n\t\t 0.4357636 0.89029276 0.039385475 0.45314986 0.89056385 0.030503795 0.22566077 0.9737283\n\t\t -0.068893977 0.20981482 0.97531086 -0.068893977 0.20981482 0.97531086 0.030503795\n\t\t 0.22566077 0.9737283 0.0224922 0.070861854 0.99723244 -0.029299723 0.070414588 0.99708742\n\t\t -0.029299723 0.070414588 0.99708742 0.0224922 0.070861854 0.99723244 0.019031333\n\t\t 0.0092337234 0.99977624 -0.017756525 0.013721589 0.99974823 -0.0146402 0.014660644\n\t\t 0.99978536 0.014660035 0.014640152 0.99978536 0.012108503 0.075992368 0.99703497\n\t\t -0.011855099 0.075965293 0.99703997 -0.011855099 0.075965293 0.99703997 0.012108503\n\t\t 0.075992368 0.99703497 0.012682995 0.22830094 0.97350794 -0.01222645 0.22849065 0.97346932\n\t\t -0.01222645 0.22849065 0.97346932 0.012682995 0.22830094 0.97350794 0.01113399 0.45709401\n\t\t 0.88934869 -0.010889402 0.45735696 0.8892166 -0.010889402 0.45735696 0.8892166 0.01113399\n\t\t 0.45709401 0.88934869 0.009619263 0.70700705 0.7071411 -0.0096345451 0.70715052 0.70699733\n\t\t -0.0096345451 0.70715052 0.70699733 0.009619263 0.70700705 0.7071411 0.010879564\n\t\t 0.88922024 0.45735002 -0.011145231 0.88934833 0.45709434 -0.011145231 0.88934833\n\t\t 0.45709434 0.010879564 0.88922024 0.45735002 0.012225375 0.9734692 0.22849128 -0.012698802\n\t\t 0.97350651 0.22830658 -0.012698802 0.97350651 0.22830658 0.012225375 0.9734692 0.22849128\n\t\t 0.011864797 0.9970395 0.07596951 -0.012129043 0.99703479 0.075990193 -0.012129043\n\t\t 0.99703479 0.075990193 0.011864797 0.9970395 0.07596951 0.014651231 0.99978513 0.014662095\n\t\t -0.014680066 0.99978507 0.014637364 -0.99977553 -3.452449e-09 -0.02119098 -0.99977565\n\t\t -1.480941e-07 -0.021181786 -0.99719083 -2.7177134e-07 -0.074902736 -0.99718869 -1.2207951e-08\n\t\t -0.074931867 -0.99718869 -1.2207951e-08 -0.074931867 -0.99719083 -2.7177134e-07 -0.074902736\n\t\t -0.97388589 -1.6374099e-07 -0.22703791 -0.9738698 -3.7000419e-08 -0.22710694 -0.9738698\n\t\t -3.7000419e-08 -0.22710694 -0.97388589 -1.6374099e-07 -0.22703791 -0.88965988 -8.4096399e-08\n\t\t -0.45662379 -0.88961494 -7.4407694e-08 -0.45671114 -0.88961494 -7.4407694e-08 -0.45671114\n\t\t -0.88965988 -8.4096399e-08 -0.45662379 -0.70718211 -4.8150518e-08 -0.70703155 -0.70710683\n\t\t -1.1520233e-07 -0.70710683 -0.70710683 -1.1520233e-07 -0.70710683 -0.70718211 -4.8150518e-08\n\t\t -0.70703155 -0.45680043 -1.2098351e-07 -0.88956916 -0.45671111 -1.4493668e-07 -0.88961494\n\t\t -0.45671111 -1.4493668e-07 -0.88961494 -0.45680043 -1.2098351e-07 -0.88956916 -0.22717495\n\t\t -1.1554377e-07 -0.97385401 -0.22710693 -1.5866354e-07 -0.9738698 -0.22710693 -1.5866354e-07\n\t\t -0.9738698 -0.22717495 -1.1554377e-07 -0.97385401 -0.074960485 9.4351847e-08 -0.99718654\n\t\t -0.074931867 -1.6246265e-07 -0.99718863 -0.074931867 -1.6246265e-07 -0.99718863 -0.074960485\n\t\t 9.4351847e-08 -0.99718654 -0.021199066 3.8684064e-08 -0.99977529 -0.02119098 -1.6288412e-07\n\t\t -0.99977553 0.014660035 0.014640152 0.99978536 0.019033736 0.0092368061 0.99977618\n\t\t 0.077312581 0.0015897917 0.99700564 0.075964428 0.011857767 0.99704009 0.075964428\n\t\t 0.011857767 0.99704009 0.077312581 0.0015897917 0.99700564 0.22138909 0.0063283476\n\t\t 0.97516513 0.22849081 0.012229184 0.97346932 0.22849081 0.012229184 0.97346932 0.22138909\n\t\t 0.0063283476 0.97516513 0.44661757 0.025139334 0.89437175 0.45735797 0.010886884\n\t\t 0.88921595 0.45735797 0.010886884 0.88921595 0.44661757 0.025139334 0.89437175 0.70345294\n\t\t 0.041676968 0.70951885 0.70714486 0.0096223326 0.7070033 0.70714486 0.0096223326\n\t\t 0.7070033 0.70345294 0.041676968 0.70951885 0.8905648 0.03938498 0.45314813 0.88934785\n\t\t 0.011133501 0.45709577 0.88934785 0.011133501 0.45709577 0.8905648 0.03938498 0.45314813\n\t\t 0.97372907 0.030502127 0.22565703 0.97350782 0.012683542 0.22830158;\n\tsetAttr \".n[14608:14773]\" -type \"float3\"  0.97350782 0.012683542 0.22830158 0.97372907\n\t\t 0.030502127 0.22565703 0.99723285 0.02249223 0.070858501 0.99703509 0.01210684 0.075990282\n\t\t 0.99703509 0.01210684 0.075990282 0.99723285 0.02249223 0.070858501 0.99977624 0.019032368\n\t\t 0.0092320796 0.99978542 0.014656219 0.014637504 0.9997853 0.014639826 -0.014660377\n\t\t 0.99981117 0.0081451787 -0.017645836 0.99664223 0.0027762782 -0.081832848 0.99703997\n\t\t 0.0118575 -0.075965405 0.99703997 0.0118575 -0.075965405 0.99664223 0.0027762782\n\t\t -0.081832848 0.97309184 0.0097291898 -0.230212 0.97347009 0.012228365 -0.22848748\n\t\t 0.97347009 0.012228365 -0.22848748 0.97309184 0.0097291898 -0.230212 0.85182863 0.071541406\n\t\t -0.51891208 0.88922 0.010886387 -0.45735013 0.88922 0.010886387 -0.45735013 0.85182863\n\t\t 0.071541406 -0.51891208 0.44994456 0.18790868 -0.8730638 0.70700437 0.0096239569\n\t\t -0.7071436 0.70700437 0.0096239569 -0.7071436 0.44994456 0.18790868 -0.8730638 0.21072516\n\t\t 0.1353267 -0.96813297 0.45709342 0.011135507 -0.88934892 0.45709342 0.011135507 -0.88934892\n\t\t 0.21072516 0.1353267 -0.96813297 0.2157256 -0.042787619 -0.97551614 0.22830258 0.01268135\n\t\t -0.97350764 0.22830258 0.01268135 -0.97350764 0.2157256 -0.042787619 -0.97551614\n\t\t 0.047567721 0.018029766 -0.99870533 0.075990543 0.01210421 -0.99703503 0.075990543\n\t\t 0.01210421 -0.99703503 0.047567721 0.018029766 -0.99870533 0.011013824 0.010990337\n\t\t -0.99987894 0.014636599 0.014654087 -0.99978548 -0.99978542 0.014636494 0.014657062\n\t\t -0.99987894 0.011014156 0.010990196 -0.99873239 0.018490538 0.046815444 -0.99704015\n\t\t 0.011856616 0.07596276 -0.99704015 0.011856616 0.07596276 -0.99873239 0.018490538\n\t\t 0.046815444 -0.95059162 -0.10612448 0.29174158 -0.97346979 0.012229335 0.22848871\n\t\t -0.97346979 0.012229335 0.22848871 -0.95059162 -0.10612448 0.29174158 -0.95574665\n\t\t 0.073765978 0.28479305 -0.88921839 0.010887222 0.45735329 -0.88921839 0.010887222\n\t\t 0.45735329 -0.95574665 0.073765978 0.28479305 -0.87421364 0.17861822 0.45149323 -0.70700395\n\t\t 0.0096215941 0.7071442 -0.70700395 0.0096215941 0.7071442 -0.87421364 0.17861822\n\t\t 0.45149323 -0.56247652 0.10887496 0.81961352 -0.45709532 0.011131987 0.88934809 -0.45709532\n\t\t 0.011131987 0.88934809 -0.56247652 0.10887496 0.81961352 -0.27435166 0.050766446\n\t\t 0.96028847 -0.22830206 0.012683122 0.97350776 -0.22830206 0.012683122 0.97350776\n\t\t -0.27435166 0.050766446 0.96028847 -0.091685943 0.024874045 0.99547726 -0.075991601\n\t\t 0.012108537 0.99703503 -0.075991601 0.012108537 0.99703503 -0.091685943 0.024874045\n\t\t 0.99547726 -0.01776132 0.013721419 0.99974811 -0.0146402 0.014660644 0.99978536 -0.014660528\n\t\t 0.9997853 0.014637367 -0.014639724 0.99978536 -0.014662189 -0.075988218 0.99703515\n\t\t -0.012115413 -0.07596796 0.99703985 0.011857886 -0.07596796 0.99703985 0.011857886\n\t\t -0.075988218 0.99703515 -0.012115413 -0.22829606 0.97350913 -0.012687479 -0.22848873\n\t\t 0.97346985 0.012226291 -0.22848873 0.97346985 0.012226291 -0.22829606 0.97350913\n\t\t -0.012687479 -0.45708928 0.88935113 -0.011133867 -0.45735234 0.88921905 0.010881576\n\t\t -0.45735234 0.88921905 0.010881576 -0.45708928 0.88935113 -0.011133867 -0.70700032\n\t\t 0.70714778 -0.0096220365 -0.70714527 0.70700282 0.0096212551 -0.70714527 0.70700282\n\t\t 0.0096212551 -0.70700032 0.70714778 -0.0096220365 -0.88921905 0.45735204 -0.010889352\n\t\t -0.88934886 0.45709372 0.01113601 -0.88934886 0.45709372 0.01113601 -0.88921905 0.45735204\n\t\t -0.010889352 -0.97346932 0.22849046 -0.012234586 -0.97350764 0.22830221 0.012683161\n\t\t -0.97350764 0.22830221 0.012683161 -0.97346932 0.22849046 -0.012234586 -0.99703997\n\t\t 0.075964853 -0.011857618 -0.99703503 0.075990416 0.012105152 -0.99703503 0.075990416\n\t\t 0.012105152 -0.99703997 0.075964853 -0.011857618 -0.99978554 0.014656138 -0.014629052\n\t\t -0.99978542 0.014636242 0.014656967 -0.014639724 0.99978536 -0.014662189 0.014660748\n\t\t 0.9997853 -0.014637733 0.012126147 0.99703485 -0.075989656 -0.011864585 0.99703962\n\t\t -0.075969294 -0.011864585 0.99703962 -0.075969294 0.012126147 0.99703485 -0.075989656\n\t\t 0.012698239 0.97350693 -0.22830495 -0.012219025 0.97346961 -0.22848985 -0.012219025\n\t\t 0.97346961 -0.22848985 0.012698239 0.97350693 -0.22830495 0.011142165 0.88934875\n\t\t -0.45709369 -0.010875966 0.88922203 -0.45734662 -0.010875966 0.88922203 -0.45734662\n\t\t 0.011142165 0.88934875 -0.45709369 0.0096281637 0.70714778 -0.70700026 -0.0096224127\n\t\t 0.70700711 -0.70714098 -0.0096224127 0.70700711 -0.70714098 0.0096281637 0.70714778\n\t\t -0.70700026 0.010889298 0.45735374 -0.88921815 -0.011135486 0.45709297 -0.88934916\n\t\t -0.011135486 0.45709297 -0.88934916 0.010889298 0.45735374 -0.88921815 0.012228846\n\t\t 0.22848997 -0.9734695 -0.012684871 0.22830209 -0.97350782 -0.012684871 0.22830209\n\t\t -0.97350782 0.012228846 0.22848997 -0.9734695 0.011856018 0.075961314 -0.99704021\n\t\t -0.012107806 0.075988643 -0.99703509 -0.012107806 0.075988643 -0.99703509 0.011856018\n\t\t 0.075961314 -0.99704021 0.014636667 0.01465614 -0.99978542 -0.014662026 0.014635098\n\t\t -0.99978536 0.014660748 0.9997853 -0.014637733 0.014639902 0.9997853 0.014662149\n\t\t 0.075996928 0.99703437 0.012114774 0.075976685 0.99703908 -0.011858518 0.075976685\n\t\t 0.99703908 -0.011858518 0.075996928 0.99703437 0.012114774 0.22830494 0.97350705\n\t\t 0.012685958 0.22849718 0.97346777 -0.012228388 0.22849718 0.97346777 -0.012228388\n\t\t 0.22830494 0.97350705 0.012685958 0.45708314 0.88935429 0.011131917 0.45734572 0.88922238\n\t\t -0.010885174 0.45734572 0.88922238 -0.010885174 0.45708314 0.88935429 0.011131917\n\t\t 0.70699453 0.7071535 0.0096216965 0.70714003 0.70700812 -0.0096216016 0.70714003\n\t\t 0.70700812 -0.0096216016 0.70699453 0.7071535 0.0096216965 0.88921881 0.45735258\n\t\t 0.010886529 0.88934875 0.45709404 -0.011131198 0.88934875 0.45709404 -0.011131198\n\t\t 0.88921881 0.45735258 0.010886529 0.97346967 0.22848918 0.01222807 0.97350782 0.22830178\n\t\t -0.01268473 0.97350782 0.22830178 -0.01268473 0.97346967 0.22848918 0.01222807 0.99704003\n\t\t 0.075964622 0.011856188 0.99703491 0.075991467 -0.012111045 0.99703491 0.075991467\n\t\t -0.012111045 0.99704003 0.075964622 0.011856188;\n\tsetAttr \".n[14774:14939]\" -type \"float3\"  0.99978542 0.014657465 0.014637331 0.9997853\n\t\t 0.01463884 -0.014658432 -0.014636387 0.014658634 0.99978542 0.014658894 0.014639831\n\t\t 0.9997853 0.012108573 0.07599546 0.99703467 -0.011856097 0.075965703 0.99703997 -0.011856097\n\t\t 0.075965703 0.99703997 0.012108573 0.07599546 0.99703467 0.012684907 0.22830126 0.97350794\n\t\t -0.012228794 0.22849011 0.97346944 -0.012228794 0.22849011 0.97346944 0.012684907\n\t\t 0.22830126 0.97350794 0.011135655 0.4570919 0.8893497 -0.010889255 0.45735541 0.88921732\n\t\t -0.010889255 0.45735541 0.88921732 0.011135655 0.4570919 0.8893497 0.0096223988 0.70700872\n\t\t 0.70713925 -0.009628146 0.70715111 0.7069968 -0.009628146 0.70715111 0.7069968 0.0096223988\n\t\t 0.70700872 0.70713925 0.010875971 0.8892206 0.45734939 -0.011142148 0.88934821 0.45709476\n\t\t -0.011142148 0.88934821 0.45709476 0.010875971 0.8892206 0.45734939 0.012219199 0.97346914\n\t\t 0.22849168 -0.012698123 0.97350645 0.22830674 -0.012698123 0.97350645 0.22830674\n\t\t 0.012219199 0.97346914 0.22849168 0.011864801 0.99703956 0.07596907 -0.012125953\n\t\t 0.99703497 0.075989701 -0.012125953 0.99703497 0.075989701 0.011864801 0.99703956\n\t\t 0.07596907 0.014639902 0.9997853 0.014662149 -0.014660528 0.9997853 0.014637367 0.99977624\n\t\t 0.01903211 0.0092320209 0.99978542 0.014657465 0.014637331 0.99703515 0.012106663\n\t\t 0.075989313 0.99723279 0.022492167 0.070859268 0.99723279 0.022492167 0.070859268\n\t\t 0.99703515 0.012106663 0.075989313 0.97350812 0.01268338 0.22830057 0.97372895 0.030502537\n\t\t 0.22565809 0.97372895 0.030502537 0.22565809 0.97350812 0.01268338 0.22830057 0.88934773\n\t\t 0.011134176 0.45709583 0.8905642 0.039384618 0.45314923 0.8905642 0.039384618 0.45314923\n\t\t 0.88934773 0.011134176 0.45709583 0.70714235 0.0096243545 0.70700562 0.70345086 0.041675013\n\t\t 0.709521 0.70345086 0.041675013 0.709521 0.70714235 0.0096243545 0.70700562 0.45735693\n\t\t 0.010886897 0.8892166 0.44661406 0.025137018 0.89437354 0.44661406 0.025137018 0.89437354\n\t\t 0.45735693 0.010886897 0.8892166 0.2284912 0.012226776 0.9734692 0.2213871 0.0063255951\n\t\t 0.97516549 0.2213871 0.0063255951 0.97516549 0.2284912 0.012226776 0.9734692 0.075962678\n\t\t 0.011858035 0.99704009 0.077310771 0.0015863241 0.9970057 0.077310771 0.0015863241\n\t\t 0.9970057 0.075962678 0.011858035 0.99704009 0.014658894 0.014639831 0.9997853 0.019031333\n\t\t 0.0092337234 0.99977624 -0.99978542 0.014636242 0.014656967 -0.99987882 0.011014685\n\t\t 0.01099311 -0.99872673 0.018521631 0.046924125 -0.99704015 0.011856623 0.075962596\n\t\t -0.99704015 0.011856623 0.075962596 -0.99872673 0.018521631 0.046924125 -0.95057225\n\t\t -0.10617017 0.29178831 -0.97347075 0.012229019 0.22848475 -0.97347075 0.012229019\n\t\t 0.22848475 -0.95057225 -0.10617017 0.29178831 -0.9557417 0.07378906 0.28480351 -0.88921982\n\t\t 0.010887076 0.45735064 -0.88921982 0.010887076 0.45735064 -0.9557417 0.07378906 0.28480351\n\t\t -0.87422353 0.1786007 0.45148093 -0.70700181 0.0096230581 0.70714635 -0.70700181\n\t\t 0.0096230581 0.70714635 -0.87422353 0.1786007 0.45148093 -0.56247991 0.10887447 0.81961131\n\t\t -0.45709312 0.011135051 0.88934916 -0.45709312 0.011135051 0.88934916 -0.56247991\n\t\t 0.10887447 0.81961131 -0.27435246 0.050769258 0.96028805 -0.22830202 0.012683701\n\t\t 0.9735077 -0.22830202 0.012683701 0.9735077 -0.27435246 0.050769258 0.96028805 -0.091681622\n\t\t 0.024877196 0.99547762 -0.075989529 0.012107754 0.99703509 -0.075989529 0.012107754\n\t\t 0.99703509 -0.091681622 0.024877196 0.99547762 -0.017756525 0.013721589 0.99974823\n\t\t -0.014636387 0.014658634 0.99978542 -0.014662026 0.014635098 -0.99978536 -0.021199066\n\t\t 3.8684064e-08 -0.99977529 -0.074960485 9.4351847e-08 -0.99718654 -0.07598947 0.01185711\n\t\t -0.99703807 -0.07598947 0.01185711 -0.99703807 -0.074960485 9.4351847e-08 -0.99718654\n\t\t -0.22717495 -1.1554377e-07 -0.97385401 -0.22855924 0.012232662 -0.9734531 -0.22855924\n\t\t 0.012232662 -0.9734531 -0.22717495 -1.1554377e-07 -0.97385401 -0.45680043 -1.2098351e-07\n\t\t -0.88956916 -0.45744598 0.010889147 -0.88917077 -0.45744598 0.010889147 -0.88917077\n\t\t -0.45680043 -1.2098351e-07 -0.88956916 -0.70718211 -4.8150518e-08 -0.70703155 -0.70721805\n\t\t 0.0096225142 -0.70693004 -0.70721805 0.0096225142 -0.70693004 -0.70718211 -4.8150518e-08\n\t\t -0.70703155 -0.88965988 -8.4096399e-08 -0.45662379 -0.8893919 0.011133828 -0.45700991\n\t\t -0.8893919 0.011133828 -0.45700991 -0.88965988 -8.4096399e-08 -0.45662379 -0.97388589\n\t\t -1.6374099e-07 -0.22703791 -0.97352362 0.012683463 -0.22823429 -0.97352362 0.012683463\n\t\t -0.22823429 -0.97388589 -1.6374099e-07 -0.22703791 -0.99719083 -2.7177134e-07 -0.074902736\n\t\t -0.99703741 0.012106547 -0.0759589 -0.99703741 0.012106547 -0.0759589 -0.99719083\n\t\t -2.7177134e-07 -0.074902736 -0.99977565 -1.480941e-07 -0.021181786 -0.99978554 0.014656138\n\t\t -0.014629052 0.01101503 0.010986695 -0.999879 0.014636667 0.01465614 -0.99978542\n\t\t 0.075990058 0.01210433 -0.99703509 0.047613084 0.018035188 -0.99870294 0.047613084\n\t\t 0.018035188 -0.99870294 0.075990058 0.01210433 -0.99703509 0.22830264 0.012682587\n\t\t -0.97350758 0.21568985 -0.042786051 -0.97552407 0.21568985 -0.042786051 -0.97552407\n\t\t 0.22830264 0.012682587 -0.97350758 0.45709392 0.011135619 -0.88934863 0.21072394\n\t\t 0.13531487 -0.968135 0.21072394 0.13531487 -0.968135 0.45709392 0.011135619 -0.88934863\n\t\t 0.70700091 0.0096211974 -0.70714724 0.44994146 0.18790984 -0.87306517 0.44994146\n\t\t 0.18790984 -0.87306517 0.70700091 0.0096211974 -0.70714724 0.88921797 0.010884919\n\t\t -0.45735416 0.85183567 0.071536623 -0.51890111 0.85183567 0.071536623 -0.51890111\n\t\t 0.88921797 0.010884919 -0.45735416 0.97346997 0.01222844 -0.22848789 0.97309399 0.0097261071\n\t\t -0.23020335 0.97309399 0.0097261071 -0.23020335 0.97346997 0.01222844 -0.22848789\n\t\t 0.99703991 0.011857389 -0.075965285 0.99664253 0.0027740605 -0.081829078 0.99664253\n\t\t 0.0027740605 -0.081829078 0.99703991 0.011857389 -0.075965285 0.9997853 0.01463884\n\t\t -0.014658432 0.99981129 0.0081436643 -0.017639546 0.021496711 0.19504425 -0.98055881\n\t\t 0.021498038 -5.9125972e-07 -0.99976891 0.076240696 -7.8322182e-07 -0.99708945 0.07624042\n\t\t 0.19452153 -0.97793084;\n\tsetAttr \".n[14940:15105]\" -type \"float3\"  0.07624042 0.19452153 -0.97793084 0.076240696\n\t\t -7.8322182e-07 -0.99708945 0.23151195 -5.8689966e-07 -0.97283208 0.23151438 0.18978898\n\t\t -0.95413911 0.23151438 0.18978898 -0.95413911 0.23151195 -5.8689966e-07 -0.97283208\n\t\t 0.46533725 -2.7786723e-07 -0.8851335 0.46533799 0.17268008 -0.86812556 0.46533799\n\t\t 0.17268008 -0.86812556 0.46533725 -2.7786723e-07 -0.8851335 0.71697325 -1.6621667e-07\n\t\t -0.69710064 0.71697247 0.13599755 -0.68370694 0.71697247 0.13599755 -0.68370694 0.71697325\n\t\t -1.6621667e-07 -0.69710064 0.89568561 -5.7517731e-08 -0.4446879 0.89568502 0.086754173\n\t\t -0.43614471 0.89568502 0.086754173 -0.43614471 0.89568561 -5.7517731e-08 -0.4446879\n\t\t 0.97588581 -6.6807587e-08 -0.21828145 0.97588623 0.042584024 -0.21408607 0.97588623\n\t\t 0.042584024 -0.21408607 0.97588581 -6.6807587e-08 -0.21828145 0.99750441 -2.3078213e-08\n\t\t -0.070604064 0.99750441 0.013774296 -0.069246836 0.99750441 0.013774296 -0.069246836\n\t\t 0.99750441 -2.3078213e-08 -0.070604064 0.99978173 -6.2493868e-09 -0.020890605 0.99978167\n\t\t 0.0040766178 -0.020492021 0.021498038 -5.9125972e-07 -0.99976891 0.021496743 -0.19504656\n\t\t -0.98055834 0.076240569 -0.19452344 -0.97793043 0.076240696 -7.8322182e-07 -0.99708945\n\t\t 0.076240696 -7.8322182e-07 -0.99708945 0.076240569 -0.19452344 -0.97793043 0.23151155\n\t\t -0.18979043 -0.95413941 0.23151195 -5.8689966e-07 -0.97283208 0.23151195 -5.8689966e-07\n\t\t -0.97283208 0.23151155 -0.18979043 -0.95413941 0.46533915 -0.17268094 -0.8681249\n\t\t 0.46533725 -2.7786723e-07 -0.8851335 0.46533725 -2.7786723e-07 -0.8851335 0.46533915\n\t\t -0.17268094 -0.8681249 0.71697152 -0.13599756 -0.68370795 0.71697325 -1.6621667e-07\n\t\t -0.69710064 0.71697325 -1.6621667e-07 -0.69710064 0.71697152 -0.13599756 -0.68370795\n\t\t 0.895684 -0.086755015 -0.43614662 0.89568561 -5.7517731e-08 -0.4446879 0.89568561\n\t\t -5.7517731e-08 -0.4446879 0.895684 -0.086755015 -0.43614662 0.97588545 -0.042584293\n\t\t -0.21408914 0.97588581 -6.6807587e-08 -0.21828145 0.97588581 -6.6807587e-08 -0.21828145\n\t\t 0.97588545 -0.042584293 -0.21408914 0.99750412 -0.013774398 -0.069251575 0.99750441\n\t\t -2.3078213e-08 -0.070604064 0.99750441 -2.3078213e-08 -0.070604064 0.99750412 -0.013774398\n\t\t -0.069251575 0.99978173 -0.0040766457 -0.020491937 0.99978173 -6.2493868e-09 -0.020890605\n\t\t 0.021496743 -0.19504656 -0.98055834 0.021494858 -0.38259438 -0.9236663 0.076240063\n\t\t -0.38156974 -0.9211905 0.076240569 -0.19452344 -0.97793043 0.076240569 -0.19452344\n\t\t -0.97793043 0.076240063 -0.38156974 -0.9211905 0.23151328 -0.37228569 -0.89877975\n\t\t 0.23151155 -0.18979043 -0.95413941 0.23151155 -0.18979043 -0.95413941 0.23151328\n\t\t -0.37228569 -0.89877975 0.46534067 -0.33872479 -0.81775516 0.46533915 -0.17268094\n\t\t -0.8681249 0.46533915 -0.17268094 -0.8681249 0.46534067 -0.33872479 -0.81775516 0.71697265\n\t\t -0.26676911 -0.6440376 0.71697152 -0.13599756 -0.68370795 0.71697152 -0.13599756\n\t\t -0.68370795 0.71697265 -0.26676911 -0.6440376 0.89568406 -0.17017579 -0.41084114\n\t\t 0.895684 -0.086755015 -0.43614662 0.895684 -0.086755015 -0.43614662 0.89568406 -0.17017579\n\t\t -0.41084114 0.97588587 -0.083532281 -0.20166557 0.97588545 -0.042584293 -0.21408914\n\t\t 0.97588545 -0.042584293 -0.21408914 0.97588587 -0.083532281 -0.20166557 0.99750429\n\t\t -0.027019341 -0.065231279 0.99750412 -0.013774398 -0.069251575 0.99750412 -0.013774398\n\t\t -0.069251575 0.99750429 -0.027019341 -0.065231279 0.99978173 -0.0079966523 -0.019303298\n\t\t 0.99978173 -0.0040766457 -0.020491937 0.021494858 -0.38259438 -0.9236663 0.021495737\n\t\t -0.55544025 -0.8312785 0.076240428 -0.55395257 -0.82904994 0.076240063 -0.38156974\n\t\t -0.9211905 0.076240063 -0.38156974 -0.9211905 0.076240428 -0.55395257 -0.82904994\n\t\t 0.2315145 -0.54047626 -0.80887979 0.23151328 -0.37228569 -0.89877975 0.23151328 -0.37228569\n\t\t -0.89877975 0.2315145 -0.54047626 -0.80887979 0.46534133 -0.49175292 -0.73595959\n\t\t 0.46534067 -0.33872479 -0.81775516 0.46534067 -0.33872479 -0.81775516 0.46534133\n\t\t -0.49175292 -0.73595959 0.71697378 -0.38728875 -0.57961714 0.71697265 -0.26676911\n\t\t -0.6440376 0.71697265 -0.26676911 -0.6440376 0.71697378 -0.38728875 -0.57961714 0.89568436\n\t\t -0.24705653 -0.36974666 0.89568406 -0.17017579 -0.41084114 0.89568406 -0.17017579\n\t\t -0.41084114 0.89568436 -0.24705653 -0.36974666 0.97588599 -0.12127002 -0.18149416\n\t\t 0.97588587 -0.083532281 -0.20166557 0.97588587 -0.083532281 -0.20166557 0.97588599\n\t\t -0.12127002 -0.18149416 0.99750447 -0.039226077 -0.058704682 0.99750429 -0.027019341\n\t\t -0.065231279 0.99750429 -0.027019341 -0.065231279 0.99750447 -0.039226077 -0.058704682\n\t\t 0.99978173 -0.011609355 -0.017370867 0.99978173 -0.0079966523 -0.019303298 0.99978167\n\t\t -0.017374452 -0.011607157 0.99978173 -0.014775827 -0.014772833 0.99750447 -0.049925372\n\t\t -0.049922995 0.99750441 -0.058705982 -0.039223112 0.99750441 -0.058705982 -0.039223112\n\t\t 0.99750447 -0.049925372 -0.049922995 0.97588634 -0.15434755 -0.15434594 0.97588646\n\t\t -0.18149363 -0.12126672 0.97588646 -0.18149363 -0.12126672 0.97588634 -0.15434755\n\t\t -0.15434594 0.89568442 -0.31444389 -0.31444317 0.89568484 -0.36974657 -0.24705507\n\t\t 0.89568484 -0.36974657 -0.24705507 0.89568442 -0.31444389 -0.31444317 0.71697295\n\t\t -0.49292481 -0.49292487 0.71697342 -0.57961828 -0.38728786 0.71697342 -0.57961828\n\t\t -0.38728786 0.71697295 -0.49292481 -0.49292487 0.46533966 -0.625884 -0.62588197 0.46533847\n\t\t -0.7359615 -0.49175286 0.46533847 -0.7359615 -0.49175286 0.46533966 -0.625884 -0.62588197\n\t\t 0.23151293 -0.68789726 -0.68789458 0.23151144 -0.8088811 -0.54047555 0.23151144 -0.8088811\n\t\t -0.54047555 0.23151293 -0.68789726 -0.68789458 0.076238707 -0.70504779 -0.70504981\n\t\t 0.076238282 -0.82904917 -0.55395412 0.076238282 -0.82904917 -0.55395412 0.076238707\n\t\t -0.70504779 -0.70504981 0.021493347 -0.70694101 -0.7069459 0.021493373 -0.83127606\n\t\t -0.55544412 0.021502985 -0.92366588 -0.38259506 0.021504888 -0.98055828 -0.19504593\n\t\t 0.076243937 -0.97793013 -0.19452381 0.076241091 -0.92119026 -0.38157013 0.076241091\n\t\t -0.92119026 -0.38157013 0.076243937 -0.97793013 -0.19452381 0.23151134 -0.95413953\n\t\t -0.18979043 0.23151138 -0.89877981 -0.37228668 0.23151138 -0.89877981 -0.37228668\n\t\t 0.23151134 -0.95413953 -0.18979043;\n\tsetAttr \".n[15106:15271]\" -type \"float3\"  0.46533838 -0.86812532 -0.172681 0.46533933\n\t\t -0.81775606 -0.33872488 0.46533933 -0.81775606 -0.33872488 0.46533838 -0.86812532\n\t\t -0.172681 0.7169717 -0.68370754 -0.13599814 0.7169733 -0.64403707 -0.26676869 0.7169733\n\t\t -0.64403707 -0.26676869 0.7169717 -0.68370754 -0.13599814 0.895684 -0.43614671 -0.086753592\n\t\t 0.89568508 -0.41083956 -0.17017393 0.89568508 -0.41083956 -0.17017393 0.895684 -0.43614671\n\t\t -0.086753592 0.97588623 -0.21408537 -0.042584032 0.97588623 -0.20166448 -0.083530858\n\t\t 0.97588623 -0.20166448 -0.083530858 0.97588623 -0.21408537 -0.042584032 0.99750429\n\t\t -0.06924846 -0.013774314 0.99750435 -0.065230571 -0.027018022 0.99750435 -0.065230571\n\t\t -0.027018022 0.99750429 -0.06924846 -0.013774314 0.99978167 -0.020494701 -0.0040753367\n\t\t 0.99978173 -0.019305488 -0.0079949433 0.021493373 -0.83127606 -0.55544412 0.021502985\n\t\t -0.92366588 -0.38259506 0.076241091 -0.92119026 -0.38157013 0.076238282 -0.82904917\n\t\t -0.55395412 0.076238282 -0.82904917 -0.55395412 0.076241091 -0.92119026 -0.38157013\n\t\t 0.23151138 -0.89877981 -0.37228668 0.23151144 -0.8088811 -0.54047555 0.23151144 -0.8088811\n\t\t -0.54047555 0.23151138 -0.89877981 -0.37228668 0.46533933 -0.81775606 -0.33872488\n\t\t 0.46533847 -0.7359615 -0.49175286 0.46533847 -0.7359615 -0.49175286 0.46533933 -0.81775606\n\t\t -0.33872488 0.7169733 -0.64403707 -0.26676869 0.71697342 -0.57961828 -0.38728786\n\t\t 0.71697342 -0.57961828 -0.38728786 0.7169733 -0.64403707 -0.26676869 0.89568508 -0.41083956\n\t\t -0.17017393 0.89568484 -0.36974657 -0.24705507 0.89568484 -0.36974657 -0.24705507\n\t\t 0.89568508 -0.41083956 -0.17017393 0.97588623 -0.20166448 -0.083530858 0.97588646\n\t\t -0.18149363 -0.12126672 0.97588646 -0.18149363 -0.12126672 0.97588623 -0.20166448\n\t\t -0.083530858 0.99750435 -0.065230571 -0.027018022 0.99750441 -0.058705982 -0.039223112\n\t\t 0.99750441 -0.058705982 -0.039223112 0.99750435 -0.065230571 -0.027018022 0.99978173\n\t\t -0.019305488 -0.0079949433 0.99978167 -0.017374452 -0.011607157 0.021504888 -0.98055828\n\t\t -0.19504593 0.02150107 -0.99976885 -3.0357165e-07 0.076245874 -0.99708903 -6.5884763e-08\n\t\t 0.076243937 -0.97793013 -0.19452381 0.076243937 -0.97793013 -0.19452381 0.076245874\n\t\t -0.99708903 -6.5884763e-08 0.2315114 -0.9728322 -7.4748115e-08 0.23151134 -0.95413953\n\t\t -0.18979043 0.23151134 -0.95413953 -0.18979043 0.2315114 -0.9728322 -7.4748115e-08\n\t\t 0.46533671 -0.8851338 -8.2539444e-08 0.46533838 -0.86812532 -0.172681 0.46533838\n\t\t -0.86812532 -0.172681 0.46533671 -0.8851338 -8.2539444e-08 0.71697271 -0.69710112\n\t\t 1.7937779e-07 0.7169717 -0.68370754 -0.13599814 0.7169717 -0.68370754 -0.13599814\n\t\t 0.71697271 -0.69710112 1.7937779e-07 0.89568394 -0.44469115 -1.1269665e-07 0.895684\n\t\t -0.43614671 -0.086753592 0.895684 -0.43614671 -0.086753592 0.89568394 -0.44469115\n\t\t -1.1269665e-07 0.97588629 -0.21827957 -4.2002003e-07 0.97588623 -0.21408537 -0.042584032\n\t\t 0.97588623 -0.21408537 -0.042584032 0.97588629 -0.21827957 -4.2002003e-07 0.99750429\n\t\t -0.070605151 -1.9982126e-07 0.99750429 -0.06924846 -0.013774314 0.99750429 -0.06924846\n\t\t -0.013774314 0.99750429 -0.070605151 -1.9982126e-07 0.99978161 -0.020896288 3.4044374e-09\n\t\t 0.99978167 -0.020494701 -0.0040753367 0.99978167 -0.020494774 0.0040753637 0.99978161\n\t\t -0.020896288 3.4044374e-09 0.99750429 -0.070605151 -1.9982126e-07 0.99750429 -0.069248512\n\t\t 0.013774142 0.99750429 -0.069248512 0.013774142 0.99750429 -0.070605151 -1.9982126e-07\n\t\t 0.97588629 -0.21827957 -4.2002003e-07 0.97588634 -0.21408536 0.042583641 0.97588634\n\t\t -0.21408536 0.042583641 0.97588629 -0.21827957 -4.2002003e-07 0.89568394 -0.44469115\n\t\t -1.1269665e-07 0.89568436 -0.4361456 0.086754635 0.89568436 -0.4361456 0.086754635\n\t\t 0.89568394 -0.44469115 -1.1269665e-07 0.71697271 -0.69710112 1.7937779e-07 0.71697444\n\t\t -0.68370461 0.13599907 0.71697444 -0.68370461 0.13599907 0.71697271 -0.69710112 1.7937779e-07\n\t\t 0.46533671 -0.8851338 -8.2539444e-08 0.46534109 -0.86812383 0.17268069 0.46534109\n\t\t -0.86812383 0.17268069 0.46533671 -0.8851338 -8.2539444e-08 0.2315114 -0.9728322\n\t\t -7.4748115e-08 0.23151313 -0.95413893 0.18979035 0.23151313 -0.95413893 0.18979035\n\t\t 0.2315114 -0.9728322 -7.4748115e-08 0.076245874 -0.99708903 -6.5884763e-08 0.076243944\n\t\t -0.97793031 0.19452296 0.076243944 -0.97793031 0.19452296 0.076245874 -0.99708903\n\t\t -6.5884763e-08 0.02150107 -0.99976885 -3.0357165e-07 0.021501075 -0.98055869 0.19504409\n\t\t 0.021501075 -0.98055869 0.19504409 0.021495322 -0.92366612 0.38259491 0.076240107\n\t\t -0.9211902 0.38157037 0.076243944 -0.97793031 0.19452296 0.076243944 -0.97793031\n\t\t 0.19452296 0.076240107 -0.9211902 0.38157037 0.23151387 -0.89877892 0.37228709 0.23151313\n\t\t -0.95413893 0.18979035 0.23151313 -0.95413893 0.18979035 0.23151387 -0.89877892 0.37228709\n\t\t 0.4653419 -0.81775421 0.33872557 0.46534109 -0.86812383 0.17268069 0.46534109 -0.86812383\n\t\t 0.17268069 0.4653419 -0.81775421 0.33872557 0.7169739 -0.64403617 0.2667695 0.71697444\n\t\t -0.68370461 0.13599907 0.71697444 -0.68370461 0.13599907 0.7169739 -0.64403617 0.2667695\n\t\t 0.89568418 -0.41084057 0.17017613 0.89568436 -0.4361456 0.086754635 0.89568436 -0.4361456\n\t\t 0.086754635 0.89568418 -0.41084057 0.17017613 0.97588617 -0.20166418 0.083532602\n\t\t 0.97588634 -0.21408536 0.042583641 0.97588634 -0.21408536 0.042583641 0.97588617\n\t\t -0.20166418 0.083532602 0.99750435 -0.065230541 0.027019771 0.99750429 -0.069248512\n\t\t 0.013774142 0.99750429 -0.069248512 0.013774142 0.99750435 -0.065230541 0.027019771\n\t\t 0.99978161 -0.019305594 0.0079967706 0.99978167 -0.020494774 0.0040753637 0.021495322\n\t\t -0.92366612 0.38259491 0.021489518 -0.83127511 0.55544567 0.076237284 -0.82904875\n\t\t 0.55395496 0.076240107 -0.9211902 0.38157037 0.076240107 -0.9211902 0.38157037 0.076237284\n\t\t -0.82904875 0.55395496 0.23151246 -0.80888116 0.54047495 0.23151387 -0.89877892 0.37228709\n\t\t 0.23151387 -0.89877892 0.37228709 0.23151246 -0.80888116 0.54047495 0.46533847 -0.73596185\n\t\t 0.49175227 0.4653419 -0.81775421 0.33872557 0.4653419 -0.81775421 0.33872557 0.46533847\n\t\t -0.73596185 0.49175227 0.7169733 -0.57961833 0.38728797 0.7169739 -0.64403617 0.2667695;\n\tsetAttr \".n[15272:15437]\" -type \"float3\"  0.7169739 -0.64403617 0.2667695 0.7169733\n\t\t -0.57961833 0.38728797 0.89568466 -0.36974636 0.24705589 0.89568418 -0.41084057 0.17017613\n\t\t 0.89568418 -0.41084057 0.17017613 0.89568466 -0.36974636 0.24705589 0.97588629 -0.18149325\n\t\t 0.12126836 0.97588617 -0.20166418 0.083532602 0.97588617 -0.20166418 0.083532602\n\t\t 0.97588629 -0.18149325 0.12126836 0.99750429 -0.058705874 0.039226748 0.99750435\n\t\t -0.065230541 0.027019771 0.99750435 -0.065230541 0.027019771 0.99750429 -0.058705874\n\t\t 0.039226748 0.99978155 -0.01737443 0.011612468 0.99978161 -0.019305594 0.0079967706\n\t\t 0.021489518 -0.83127511 0.55544567 0.021444555 -0.70693827 0.70695013 0.076068312\n\t\t -0.70504427 0.70507175 0.076237284 -0.82904875 0.55395496 0.076237284 -0.82904875\n\t\t 0.55395496 0.076068312 -0.70504427 0.70507175 0.2310289 -0.68792528 0.68802935 0.23151246\n\t\t -0.80888116 0.54047495 0.23151246 -0.80888116 0.54047495 0.2310289 -0.68792528 0.68802935\n\t\t 0.46455982 -0.62603647 0.62630868 0.46533847 -0.73596185 0.49175227 0.46533847 -0.73596185\n\t\t 0.49175227 0.46455982 -0.62603647 0.62630868 0.71625435 -0.49322483 0.49366891 0.7169733\n\t\t -0.57961833 0.38728797 0.7169733 -0.57961833 0.38728797 0.71625435 -0.49322483 0.49366891\n\t\t 0.89532971 -0.31471825 0.31517801 0.89568466 -0.36974636 0.24705589 0.89568466 -0.36974636\n\t\t 0.24705589 0.89532971 -0.31471825 0.31517801 0.97579843 -0.15446964 0.15477958 0.97588629\n\t\t -0.18149325 0.12126836 0.97588629 -0.18149325 0.12126836 0.97579843 -0.15446964 0.15477958\n\t\t 0.99749649 -0.049942646 0.050066702 0.99750429 -0.058705874 0.039226748 0.99750429\n\t\t -0.058705874 0.039226748 0.99749649 -0.049942646 0.050066702 0.99978065 -0.014786047\n\t\t 0.014831671 0.99978155 -0.01737443 0.011612468 0.021300234 -0.55543745 0.83128542\n\t\t 0.02115036 -0.38259432 0.9236744 0.075041533 -0.38158837 0.92128122 0.075556464 -0.55395252\n\t\t 0.82911271 0.075556464 -0.55395252 0.82911271 0.075041533 -0.38158837 0.92128122\n\t\t 0.228084 -0.37252605 0.89955652 0.22955669 -0.54060751 0.80934983 0.22955669 -0.54060751\n\t\t 0.80934983 0.228084 -0.37252605 0.89955652 0.45971677 -0.33966935 0.82053959 0.46214285\n\t\t -0.49236029 0.73756713 0.46214285 -0.49236029 0.73756713 0.45971677 -0.33966935 0.82053959\n\t\t 0.71162325 -0.26856863 0.64920211 0.71394837 -0.38848773 0.58254194 0.71394837 -0.38848773\n\t\t 0.58254194 0.71162325 -0.26856863 0.64920211 0.89290059 -0.17200072 0.41610619 0.8941226\n\t\t -0.24825281 0.37271345 0.8941226 -0.24825281 0.37271345 0.89290059 -0.17200072 0.41610619\n\t\t 0.97513109 -0.08460734 0.20484379 0.97546709 -0.12193675 0.18328996 0.97546709 -0.12193675\n\t\t 0.18328996 0.97513109 -0.08460734 0.20484379 0.99742073 -0.027385674 0.066346377\n\t\t 0.99745888 -0.039434545 0.059336171 0.99745888 -0.039434545 0.059336171 0.99742073\n\t\t -0.027385674 0.066346377 0.99977446 -0.008097956 0.019632416 0.99977756 -0.011664852\n\t\t 0.01757057 0.021110697 6.4362962e-07 0.99977714 0.021110879 0.195048 0.98056644 0.074872203\n\t\t 0.19454393 0.97803211 0.074871764 6.334007e-07 0.99719322 0.074871764 6.334007e-07\n\t\t 0.99719322 0.074872203 0.19454393 0.97803211 0.22759716 0.18997131 0.95504469 0.22759628\n\t\t 7.7979342e-07 0.97375566 0.22759628 7.7979342e-07 0.97375566 0.22759716 0.18997131\n\t\t 0.95504469 0.45893192 0.17333306 0.87139958 0.45893222 7.1750242e-07 0.88847131 0.45893222\n\t\t 7.1750242e-07 0.88847131 0.45893192 0.17333306 0.87139958 0.71088892 0.13720827 0.68979049\n\t\t 0.71088916 3.1199551e-07 0.70330405 0.71088916 3.1199551e-07 0.70330405 0.71088892\n\t\t 0.13720827 0.68979049 0.89253253 0.087982111 0.44231761 0.89253396 8.6615344e-08\n\t\t 0.45098013 0.89253396 8.6615344e-08 0.45098013 0.89253253 0.087982111 0.44231761\n\t\t 0.97503924 0.043316696 0.21776631 0.97503912 8.4386386e-08 0.2220329 0.97503912 8.4386386e-08\n\t\t 0.2220329 0.97503924 0.043316696 0.21776631 0.9974125 0.014025483 0.070508339 0.99741232\n\t\t 5.920359e-08 0.071893252 0.99741232 5.920359e-08 0.071893252 0.9974125 0.014025483\n\t\t 0.070508339 0.9997735 0.0041517448 0.020872781 0.9997735 1.4060374e-08 0.021282718\n\t\t 0.02115036 -0.38259432 0.9236744 0.021105273 -0.19504638 0.98056692 0.0748711 -0.1945428\n\t\t 0.97803253 0.075041533 -0.38158837 0.92128122 0.075041533 -0.38158837 0.92128122\n\t\t 0.0748711 -0.1945428 0.97803253 0.22759876 -0.1899707 0.95504445 0.228084 -0.37252605\n\t\t 0.89955652 0.228084 -0.37252605 0.89955652 0.22759876 -0.1899707 0.95504445 0.45893061\n\t\t -0.1733328 0.87140018 0.45971677 -0.33966935 0.82053959 0.45971677 -0.33966935 0.82053959\n\t\t 0.45893061 -0.1733328 0.87140018 0.71088767 -0.13720821 0.68979162 0.71162325 -0.26856863\n\t\t 0.64920211 0.71162325 -0.26856863 0.64920211 0.71088767 -0.13720821 0.68979162 0.8925342\n\t\t -0.087981932 0.44231433 0.89290059 -0.17200072 0.41610619 0.89290059 -0.17200072\n\t\t 0.41610619 0.8925342 -0.087981932 0.44231433 0.97503912 -0.043316472 0.2177666 0.97513109\n\t\t -0.08460734 0.20484379 0.97513109 -0.08460734 0.20484379 0.97503912 -0.043316472\n\t\t 0.2177666 0.99741238 -0.014025422 0.070511639 0.99742073 -0.027385674 0.066346377\n\t\t 0.99742073 -0.027385674 0.066346377 0.99741238 -0.014025422 0.070511639 0.9997735\n\t\t -0.0041516945 0.020872658 0.99977446 -0.008097956 0.019632416 0.021105273 -0.19504638\n\t\t 0.98056692 0.021110697 6.4362962e-07 0.99977714 0.074871764 6.334007e-07 0.99719322\n\t\t 0.0748711 -0.1945428 0.97803253 0.0748711 -0.1945428 0.97803253 0.074871764 6.334007e-07\n\t\t 0.99719322 0.22759628 7.7979342e-07 0.97375566 0.22759876 -0.1899707 0.95504445 0.22759876\n\t\t -0.1899707 0.95504445 0.22759628 7.7979342e-07 0.97375566 0.45893222 7.1750242e-07\n\t\t 0.88847131 0.45893061 -0.1733328 0.87140018 0.45893061 -0.1733328 0.87140018 0.45893222\n\t\t 7.1750242e-07 0.88847131 0.71088916 3.1199551e-07 0.70330405 0.71088767 -0.13720821\n\t\t 0.68979162 0.71088767 -0.13720821 0.68979162 0.71088916 3.1199551e-07 0.70330405\n\t\t 0.89253396 8.6615344e-08 0.45098013 0.8925342 -0.087981932 0.44231433 0.8925342 -0.087981932\n\t\t 0.44231433 0.89253396 8.6615344e-08 0.45098013;\n\tsetAttr \".n[15438:15603]\" -type \"float3\"  0.97503912 8.4386386e-08 0.2220329 0.97503912\n\t\t -0.043316472 0.2177666 0.97503912 -0.043316472 0.2177666 0.97503912 8.4386386e-08\n\t\t 0.2220329 0.99741232 5.920359e-08 0.071893252 0.99741238 -0.014025422 0.070511639\n\t\t 0.99741238 -0.014025422 0.070511639 0.99741232 5.920359e-08 0.071893252 0.9997735\n\t\t 1.4060374e-08 0.021282718 0.9997735 -0.0041516945 0.020872658 0.021495963 0.38259393\n\t\t -0.92366654 0.021496711 0.19504425 -0.98055881 0.07624042 0.19452153 -0.97793084\n\t\t 0.076240674 0.38156837 -0.92119104 0.076240674 0.38156837 -0.92119104 0.07624042\n\t\t 0.19452153 -0.97793084 0.23151438 0.18978898 -0.95413911 0.23151301 0.37228486 -0.89878011\n\t\t 0.23151301 0.37228486 -0.89878011 0.23151438 0.18978898 -0.95413911 0.46533799 0.17268008\n\t\t -0.86812556 0.46533787 0.33872411 -0.81775701 0.46533787 0.33872411 -0.81775701 0.46533799\n\t\t 0.17268008 -0.86812556 0.71697247 0.13599755 -0.68370694 0.71697176 0.26676849 -0.6440388\n\t\t 0.71697176 0.26676849 -0.6440388 0.71697247 0.13599755 -0.68370694 0.89568502 0.086754173\n\t\t -0.43614471 0.89568406 0.17017496 -0.41084105 0.89568406 0.17017496 -0.41084105 0.89568502\n\t\t 0.086754173 -0.43614471 0.97588623 0.042584024 -0.21408607 0.97588587 0.083531901\n\t\t -0.20166653 0.97588587 0.083531901 -0.20166653 0.97588623 0.042584024 -0.21408607\n\t\t 0.99750441 0.013774296 -0.069246836 0.99750423 0.027019253 -0.06523256 0.99750423\n\t\t 0.027019253 -0.06523256 0.99750441 0.013774296 -0.069246836 0.99978167 0.0040766178\n\t\t -0.020492021 0.99978167 0.0079966299 -0.01930608 0.02117968 0.55412197 -0.83216602\n\t\t 0.021495963 0.38259393 -0.92366654 0.076240674 0.38156837 -0.92119104 0.075405799\n\t\t 0.55270463 -0.8299588 0.075405799 0.55270463 -0.8299588 0.076240674 0.38156837 -0.92119104\n\t\t 0.23151301 0.37228486 -0.89878011 0.229315 0.53971881 -0.81001127 0.229315 0.53971881\n\t\t -0.81001127 0.23151301 0.37228486 -0.89878011 0.46533787 0.33872411 -0.81775701 0.4618037\n\t\t 0.49192181 -0.7380721 0.4618037 0.49192181 -0.7380721 0.46533787 0.33872411 -0.81775701\n\t\t 0.71697176 0.26676849 -0.6440388 0.71364701 0.38829893 -0.58303672 0.71364701 0.38829893\n\t\t -0.58303672 0.71697176 0.26676849 -0.6440388 0.89568406 0.17017496 -0.41084105 0.89397913\n\t\t 0.24806675 -0.37318096 0.89397913 0.24806675 -0.37318096 0.89568406 0.17017496 -0.41084105\n\t\t 0.97588587 0.083531901 -0.20166653 0.97542924 0.12175358 -0.18361339 0.97542924 0.12175358\n\t\t -0.18361339 0.97588587 0.083531901 -0.20166653 0.99750423 0.027019253 -0.06523256\n\t\t 0.99745405 0.039295483 -0.059508696 0.99745405 0.039295483 -0.059508696 0.99750423\n\t\t 0.027019253 -0.06523256 0.99978167 0.0079966299 -0.01930608 0.99977773 0.011584866\n\t\t -0.01761632 0.021110879 0.195048 0.98056644 0.021112394 0.38259879 0.92367333 0.074872881\n\t\t 0.38160956 0.92128617 0.074872203 0.19454393 0.97803211 0.074872203 0.19454393 0.97803211\n\t\t 0.074872881 0.38160956 0.92128617 0.22759835 0.37264067 0.89963222 0.22759716 0.18997131\n\t\t 0.95504469 0.22759716 0.18997131 0.95504469 0.22759835 0.37264067 0.89963222 0.4589321\n\t\t 0.34000412 0.82084018 0.45893192 0.17333306 0.87139958 0.45893192 0.17333306 0.87139958\n\t\t 0.4589321 0.34000412 0.82084018 0.71088821 0.26914346 0.64976889 0.71088892 0.13720827\n\t\t 0.68979049 0.71088892 0.13720827 0.68979049 0.71088821 0.26914346 0.64976889 0.89253354\n\t\t 0.17258289 0.41665211 0.89253253 0.087982111 0.44231761 0.89253253 0.087982111 0.44231761\n\t\t 0.89253354 0.17258289 0.41665211 0.9750393 0.084968619 0.20513073 0.97503924 0.043316696\n\t\t 0.21776631 0.97503924 0.043316696 0.21776631 0.9750393 0.084968619 0.20513073 0.99741256\n\t\t 0.027511768 0.066418156 0.9974125 0.014025483 0.070508339 0.9974125 0.014025483 0.070508339\n\t\t 0.99741256 0.027511768 0.066418156 0.99977356 0.0081439437 0.01966105 0.9997735 0.0041517448\n\t\t 0.020872781 0.021112394 0.38259879 0.92367333 0.021110397 0.55544579 0.8312847 0.074872144\n\t\t 0.55401075 0.82913578 0.074872881 0.38160956 0.92128617 0.074872881 0.38160956 0.92128617\n\t\t 0.074872144 0.55401075 0.82913578 0.22759755 0.54098988 0.80964762 0.22759835 0.37264067\n\t\t 0.89963222 0.22759835 0.37264067 0.89963222 0.22759755 0.54098988 0.80964762 0.45893079\n\t\t 0.49360999 0.73873657 0.4589321 0.34000412 0.82084018 0.4589321 0.34000412 0.82084018\n\t\t 0.45893079 0.49360999 0.73873657 0.71088815 0.3907361 0.58477634 0.71088821 0.26914346\n\t\t 0.64976889 0.71088821 0.26914346 0.64976889 0.71088815 0.3907361 0.58477634 0.89253283\n\t\t 0.25055164 0.37497851 0.89253354 0.17258289 0.41665211 0.89253354 0.17258289 0.41665211\n\t\t 0.89253283 0.25055164 0.37497851 0.97503871 0.12335527 0.18461561 0.9750393 0.084968619\n\t\t 0.20513073 0.9750393 0.084968619 0.20513073 0.97503871 0.12335527 0.18461561 0.99741238\n\t\t 0.039940979 0.059775785 0.99741256 0.027511768 0.066418156 0.99741256 0.027511768\n\t\t 0.066418156 0.99741238 0.039940979 0.059775785 0.9997735 0.011823146 0.017694574\n\t\t 0.99977356 0.0081439437 0.01966105 0.02111285 0.83128417 -0.55544657 0.020997407\n\t\t 0.70563287 -0.7082665 0.074766286 0.70380366 -0.70644915 0.074874215 0.8291356 -0.55401069\n\t\t 0.074874215 0.8291356 -0.55401069 0.074766286 0.70380366 -0.70644915 0.22751758 0.68725157\n\t\t -0.68987024 0.22759885 0.80964667 -0.54099071 0.22759885 0.80964667 -0.54099071 0.22751758\n\t\t 0.68725157 -0.68987024 0.45892015 0.62704116 -0.62945348 0.4589301 0.73873752 -0.49360913\n\t\t 0.4589301 0.73873752 -0.49360913 0.45892015 0.62704116 -0.62945348 0.71094924 0.49631047\n\t\t -0.49822402 0.71088696 0.58477873 -0.39073473 0.71088696 0.58477873 -0.39073473 0.71094924\n\t\t 0.49631047 -0.49822402 0.89259315 0.31819525 -0.31942016 0.8925333 0.37497678 -0.2505528\n\t\t 0.8925333 0.37497678 -0.2505528 0.89259315 0.31819525 -0.31942016 0.97506422 0.15662484\n\t\t -0.15722086 0.97503901 0.18461333 -0.12335628 0.97503901 0.18461333 -0.12335628 0.97506422\n\t\t 0.15662484 -0.15722086 0.99741721 0.050695166 -0.050880849 0.99741268 0.059776008\n\t\t -0.039938148;\n\tsetAttr \".n[15604:15769]\" -type \"float3\"  0.99741268 0.059776008 -0.039938148 0.99741721\n\t\t 0.050695166 -0.050880849 0.99977356 0.015020722 -0.015072957 0.9997735 0.017694671\n\t\t -0.011818813 0.021110903 0.9236725 -0.3826009 0.02111285 0.83128417 -0.55544657 0.074874215\n\t\t 0.8291356 -0.55401069 0.074873172 0.92128533 -0.38161147 0.074873172 0.92128533 -0.38161147\n\t\t 0.074874215 0.8291356 -0.55401069 0.22759885 0.80964667 -0.54099071 0.22760183 0.89963114\n\t\t -0.37264079 0.22760183 0.89963114 -0.37264079 0.22759885 0.80964667 -0.54099071 0.4589301\n\t\t 0.73873752 -0.49360913 0.45893213 0.82084 -0.34000432 0.45893213 0.82084 -0.34000432\n\t\t 0.4589301 0.73873752 -0.49360913 0.71088696 0.58477873 -0.39073473 0.71088588 0.64977068\n\t\t -0.26914564 0.71088588 0.64977068 -0.26914564 0.71088696 0.58477873 -0.39073473 0.8925333\n\t\t 0.37497678 -0.2505528 0.89253342 0.41665229 -0.17258343 0.89253342 0.41665229 -0.17258343\n\t\t 0.8925333 0.37497678 -0.2505528 0.97503901 0.18461333 -0.12335628 0.97503918 0.2051318\n\t\t -0.084968165 0.97503918 0.2051318 -0.084968165 0.97503901 0.18461333 -0.12335628\n\t\t 0.99741268 0.059776008 -0.039938148 0.9974125 0.066419601 -0.027510744 0.9974125\n\t\t 0.066419601 -0.027510744 0.99741268 0.059776008 -0.039938148 0.9997735 0.017694671\n\t\t -0.011818813 0.99977356 0.019661278 -0.0081416499 0.021107048 0.70694852 0.70694995\n\t\t 0.021108985 0.83128411 0.55544674 0.074872322 0.82913631 0.55401003 0.074871287 0.70512217\n\t\t 0.70512187 0.074871287 0.70512217 0.70512187 0.074872322 0.82913631 0.55401003 0.22760092\n\t\t 0.80964804 0.54098773 0.22759911 0.68854946 0.68854803 0.22759911 0.68854946 0.68854803\n\t\t 0.22760092 0.80964804 0.54098773 0.45893016 0.7387386 0.49360752 0.45892987 0.62824625\n\t\t 0.62824368 0.45892987 0.62824625 0.62824368 0.45893016 0.7387386 0.49360752 0.7108869\n\t\t 0.58477879 0.39073488 0.71088773 0.49731314 0.49731106 0.71088773 0.49731314 0.49731106\n\t\t 0.7108869 0.58477879 0.39073488 0.89253354 0.37497678 0.25055179 0.89253312 0.3188912\n\t\t 0.31889328 0.89253312 0.3188912 0.31889328 0.89253354 0.37497678 0.25055179 0.97503895\n\t\t 0.18461432 0.12335597 0.97503883 0.15700157 0.15700269 0.97503883 0.15700157 0.15700269\n\t\t 0.97503895 0.18461432 0.12335597 0.99741256 0.05977593 0.03993896 0.99741256 0.050835274\n\t\t 0.05083333 0.99741256 0.050835274 0.05083333 0.99741256 0.05977593 0.03993896 0.99977356\n\t\t 0.017694632 0.011820582 0.9997735 0.01504805 0.015045989 0.021110915 0.98056626 -0.19504885\n\t\t 0.021110903 0.9236725 -0.3826009 0.074873172 0.92128533 -0.38161147 0.074871294 0.97803199\n\t\t -0.19454469 0.074871294 0.97803199 -0.19454469 0.074873172 0.92128533 -0.38161147\n\t\t 0.22760183 0.89963114 -0.37264079 0.22759905 0.95504421 -0.18997124 0.22759905 0.95504421\n\t\t -0.18997124 0.22760183 0.89963114 -0.37264079 0.45893213 0.82084 -0.34000432 0.45893052\n\t\t 0.87140006 -0.17333369 0.45893052 0.87140006 -0.17333369 0.45893213 0.82084 -0.34000432\n\t\t 0.71088588 0.64977068 -0.26914564 0.71088618 0.68979293 -0.13721003 0.71088618 0.68979293\n\t\t -0.13721003 0.71088588 0.64977068 -0.26914564 0.89253342 0.41665229 -0.17258343 0.89253402\n\t\t 0.44231462 -0.087982014 0.89253402 0.44231462 -0.087982014 0.89253342 0.41665229\n\t\t -0.17258343 0.97503918 0.2051318 -0.084968165 0.97503918 0.2177662 -0.043316267 0.97503918\n\t\t 0.2177662 -0.043316267 0.97503918 0.2051318 -0.084968165 0.9974125 0.066419601 -0.027510744\n\t\t 0.9974125 0.07051038 -0.014025627 0.9974125 0.07051038 -0.014025627 0.9974125 0.066419601\n\t\t -0.027510744 0.99977356 0.019661278 -0.0081416499 0.9997735 0.020872187 -0.0041519916\n\t\t 0.021108985 0.83128411 0.55544674 0.021110922 0.92367411 0.38259712 0.074873261 0.92128682\n\t\t 0.38160777 0.074872322 0.82913631 0.55401003 0.074872322 0.82913631 0.55401003 0.074873261\n\t\t 0.92128682 0.38160777 0.22759911 0.89963257 0.37263876 0.22760092 0.80964804 0.54098773\n\t\t 0.22760092 0.80964804 0.54098773 0.22759911 0.89963257 0.37263876 0.45892999 0.82084203\n\t\t 0.34000248 0.45893016 0.7387386 0.49360752 0.45893016 0.7387386 0.49360752 0.45892999\n\t\t 0.82084203 0.34000248 0.71088737 0.64977038 0.26914218 0.7108869 0.58477879 0.39073488\n\t\t 0.7108869 0.58477879 0.39073488 0.71088737 0.64977038 0.26914218 0.89253354 0.41665164\n\t\t 0.17258412 0.89253354 0.37497678 0.25055179 0.89253354 0.37497678 0.25055179 0.89253354\n\t\t 0.41665164 0.17258412 0.97503901 0.20513208 0.084968999 0.97503895 0.18461432 0.12335597\n\t\t 0.97503895 0.18461432 0.12335597 0.97503901 0.20513208 0.084968999 0.9974125 0.066419356\n\t\t 0.027510691 0.99741256 0.05977593 0.03993896 0.99741256 0.05977593 0.03993896 0.9974125\n\t\t 0.066419356 0.027510691 0.99977356 0.019661225 0.0081434269 0.99977356 0.017694632\n\t\t 0.011820582 0.021110922 0.92367411 0.38259712 0.021110918 0.98056698 0.19504566 0.074873202\n\t\t 0.97803253 0.19454157 0.074873261 0.92128682 0.38160777 0.074873261 0.92128682 0.38160777\n\t\t 0.074873202 0.97803253 0.19454157 0.22759904 0.95504475 0.18996912 0.22759911 0.89963257\n\t\t 0.37263876 0.22759911 0.89963257 0.37263876 0.22759904 0.95504475 0.18996912 0.45893195\n\t\t 0.87139994 0.17333071 0.45892999 0.82084203 0.34000248 0.45892999 0.82084203 0.34000248\n\t\t 0.45893195 0.87139994 0.17333071 0.71088821 0.68979138 0.1372069 0.71088737 0.64977038\n\t\t 0.26914218 0.71088737 0.64977038 0.26914218 0.71088821 0.68979138 0.1372069 0.89253324\n\t\t 0.442316 0.087982573 0.89253354 0.41665164 0.17258412 0.89253354 0.41665164 0.17258412\n\t\t 0.89253324 0.442316 0.087982573 0.97503901 0.21776746 0.043315902 0.97503901 0.20513208\n\t\t 0.084968999 0.97503901 0.20513208 0.084968999 0.97503901 0.21776746 0.043315902 0.9974125\n\t\t 0.070510499 0.014024502 0.9974125 0.066419356 0.027510691 0.9974125 0.066419356 0.027510691\n\t\t 0.9974125 0.070510499 0.014024502 0.9997735 0.020872276 0.0041519925 0.99977356 0.019661225\n\t\t 0.0081434269 0.021110918 0.98056698 0.19504566 0.021110918 0.9997772 -1.1243753e-06;\n\tsetAttr \".n[15770:15935]\" -type \"float3\"  0.074871309 0.99719322 -1.1423932e-06\n\t\t 0.074873202 0.97803253 0.19454157 0.074873202 0.97803253 0.19454157 0.074871309 0.99719322\n\t\t -1.1423932e-06 0.22759725 0.97375536 -1.1962724e-06 0.22759904 0.95504475 0.18996912\n\t\t 0.22759904 0.95504475 0.18996912 0.22759725 0.97375536 -1.1962724e-06 0.45893055\n\t\t 0.88847226 -1.3451426e-06 0.45893195 0.87139994 0.17333071 0.45893195 0.87139994\n\t\t 0.17333071 0.45893055 0.88847226 -1.3451426e-06 0.71088731 0.7033059 -8.9705583e-07\n\t\t 0.71088821 0.68979138 0.1372069 0.71088821 0.68979138 0.1372069 0.71088731 0.7033059\n\t\t -8.9705583e-07 0.89253366 0.45098078 -9.3783456e-08 0.89253324 0.442316 0.087982573\n\t\t 0.89253324 0.442316 0.087982573 0.89253366 0.45098078 -9.3783456e-08 0.97503912 0.2220329\n\t\t -1.4986034e-07 0.97503901 0.21776746 0.043315902 0.97503901 0.21776746 0.043315902\n\t\t 0.97503912 0.2220329 -1.4986034e-07 0.9974125 0.071891561 -2.0145276e-07 0.9974125\n\t\t 0.070510499 0.014024502 0.9974125 0.070510499 0.014024502 0.9974125 0.071891561 -2.0145276e-07\n\t\t 0.9997735 0.021281105 3.9637635e-09 0.9997735 0.020872276 0.0041519925 0.9997735\n\t\t 0.020872187 -0.0041519916 0.9997735 0.021281105 3.9637635e-09 0.9974125 0.071891561\n\t\t -2.0145276e-07 0.9974125 0.07051038 -0.014025627 0.9974125 0.07051038 -0.014025627\n\t\t 0.9974125 0.071891561 -2.0145276e-07 0.97503912 0.2220329 -1.4986034e-07 0.97503918\n\t\t 0.2177662 -0.043316267 0.97503918 0.2177662 -0.043316267 0.97503912 0.2220329 -1.4986034e-07\n\t\t 0.89253366 0.45098078 -9.3783456e-08 0.89253402 0.44231462 -0.087982014 0.89253402\n\t\t 0.44231462 -0.087982014 0.89253366 0.45098078 -9.3783456e-08 0.71088731 0.7033059\n\t\t -8.9705583e-07 0.71088618 0.68979293 -0.13721003 0.71088618 0.68979293 -0.13721003\n\t\t 0.71088731 0.7033059 -8.9705583e-07 0.45893055 0.88847226 -1.3451426e-06 0.45893052\n\t\t 0.87140006 -0.17333369 0.45893052 0.87140006 -0.17333369 0.45893055 0.88847226 -1.3451426e-06\n\t\t 0.22759725 0.97375536 -1.1962724e-06 0.22759905 0.95504421 -0.18997124 0.22759905\n\t\t 0.95504421 -0.18997124 0.22759725 0.97375536 -1.1962724e-06 0.074871309 0.99719322\n\t\t -1.1423932e-06 0.074871294 0.97803199 -0.19454469 0.074871294 0.97803199 -0.19454469\n\t\t 0.074871309 0.99719322 -1.1423932e-06 0.021110918 0.9997772 -1.1243753e-06 0.021110915\n\t\t 0.98056626 -0.19504885 0.021495737 -0.55544025 -0.8312785 0.021493347 -0.70694101\n\t\t -0.7069459 0.076238707 -0.70504779 -0.70504981 0.076240428 -0.55395257 -0.82904994\n\t\t 0.076240428 -0.55395257 -0.82904994 0.076238707 -0.70504779 -0.70504981 0.23151293\n\t\t -0.68789726 -0.68789458 0.2315145 -0.54047626 -0.80887979 0.2315145 -0.54047626 -0.80887979\n\t\t 0.23151293 -0.68789726 -0.68789458 0.46533966 -0.625884 -0.62588197 0.46534133 -0.49175292\n\t\t -0.73595959 0.46534133 -0.49175292 -0.73595959 0.46533966 -0.625884 -0.62588197 0.71697295\n\t\t -0.49292481 -0.49292487 0.71697378 -0.38728875 -0.57961714 0.71697378 -0.38728875\n\t\t -0.57961714 0.71697295 -0.49292481 -0.49292487 0.89568442 -0.31444389 -0.31444317\n\t\t 0.89568436 -0.24705653 -0.36974666 0.89568436 -0.24705653 -0.36974666 0.89568442\n\t\t -0.31444389 -0.31444317 0.97588634 -0.15434755 -0.15434594 0.97588599 -0.12127002\n\t\t -0.18149416 0.97588599 -0.12127002 -0.18149416 0.97588634 -0.15434755 -0.15434594\n\t\t 0.99750447 -0.049925372 -0.049922995 0.99750447 -0.039226077 -0.058704682 0.99750447\n\t\t -0.039226077 -0.058704682 0.99750447 -0.049925372 -0.049922995 0.99978173 -0.014775827\n\t\t -0.014772833 0.99978173 -0.011609355 -0.017370867 0.021444555 -0.70693827 0.70695013\n\t\t 0.021300234 -0.55543745 0.83128542 0.075556464 -0.55395252 0.82911271 0.076068312\n\t\t -0.70504427 0.70507175 0.076068312 -0.70504427 0.70507175 0.075556464 -0.55395252\n\t\t 0.82911271 0.22955669 -0.54060751 0.80934983 0.2310289 -0.68792528 0.68802935 0.2310289\n\t\t -0.68792528 0.68802935 0.22955669 -0.54060751 0.80934983 0.46214285 -0.49236029 0.73756713\n\t\t 0.46455982 -0.62603647 0.62630868 0.46455982 -0.62603647 0.62630868 0.46214285 -0.49236029\n\t\t 0.73756713 0.71394837 -0.38848773 0.58254194 0.71625435 -0.49322483 0.49366891 0.71625435\n\t\t -0.49322483 0.49366891 0.71394837 -0.38848773 0.58254194 0.8941226 -0.24825281 0.37271345\n\t\t 0.89532971 -0.31471825 0.31517801 0.89532971 -0.31471825 0.31517801 0.8941226 -0.24825281\n\t\t 0.37271345 0.97546709 -0.12193675 0.18328996 0.97579843 -0.15446964 0.15477958 0.97579843\n\t\t -0.15446964 0.15477958 0.97546709 -0.12193675 0.18328996 0.99745888 -0.039434545\n\t\t 0.059336171 0.99749649 -0.049942646 0.050066702 0.99749649 -0.049942646 0.050066702\n\t\t 0.99745888 -0.039434545 0.059336171 0.99977756 -0.011664852 0.01757057 0.99978065\n\t\t -0.014786047 0.014831671 0.020997407 0.70563287 -0.7082665 0.02117968 0.55412197\n\t\t -0.83216602 0.075405799 0.55270463 -0.8299588 0.074766286 0.70380366 -0.70644915\n\t\t 0.074766286 0.70380366 -0.70644915 0.075405799 0.55270463 -0.8299588 0.229315 0.53971881\n\t\t -0.81001127 0.22751758 0.68725157 -0.68987024 0.22751758 0.68725157 -0.68987024 0.229315\n\t\t 0.53971881 -0.81001127 0.4618037 0.49192181 -0.7380721 0.45892015 0.62704116 -0.62945348\n\t\t 0.45892015 0.62704116 -0.62945348 0.4618037 0.49192181 -0.7380721 0.71364701 0.38829893\n\t\t -0.58303672 0.71094924 0.49631047 -0.49822402 0.71094924 0.49631047 -0.49822402 0.71364701\n\t\t 0.38829893 -0.58303672 0.89397913 0.24806675 -0.37318096 0.89259315 0.31819525 -0.31942016\n\t\t 0.89259315 0.31819525 -0.31942016 0.89397913 0.24806675 -0.37318096 0.97542924 0.12175358\n\t\t -0.18361339 0.97506422 0.15662484 -0.15722086 0.97506422 0.15662484 -0.15722086 0.97542924\n\t\t 0.12175358 -0.18361339 0.99745405 0.039295483 -0.059508696 0.99741721 0.050695166\n\t\t -0.050880849 0.99741721 0.050695166 -0.050880849 0.99745405 0.039295483 -0.059508696\n\t\t 0.99977773 0.011584866 -0.01761632 0.99977356 0.015020722 -0.015072957 0.021110397\n\t\t 0.55544579 0.8312847 0.021107048 0.70694852 0.70694995 0.074871287 0.70512217 0.70512187\n\t\t 0.074872144 0.55401075 0.82913578 0.074872144 0.55401075 0.82913578 0.074871287 0.70512217\n\t\t 0.70512187 0.22759911 0.68854946 0.68854803 0.22759755 0.54098988 0.80964762;\n\tsetAttr \".n[15936:16091]\" -type \"float3\"  0.22759755 0.54098988 0.80964762 0.22759911\n\t\t 0.68854946 0.68854803 0.45892987 0.62824625 0.62824368 0.45893079 0.49360999 0.73873657\n\t\t 0.45893079 0.49360999 0.73873657 0.45892987 0.62824625 0.62824368 0.71088773 0.49731314\n\t\t 0.49731106 0.71088815 0.3907361 0.58477634 0.71088815 0.3907361 0.58477634 0.71088773\n\t\t 0.49731314 0.49731106 0.89253312 0.3188912 0.31889328 0.89253283 0.25055164 0.37497851\n\t\t 0.89253283 0.25055164 0.37497851 0.89253312 0.3188912 0.31889328 0.97503883 0.15700157\n\t\t 0.15700269 0.97503871 0.12335527 0.18461561 0.97503871 0.12335527 0.18461561 0.97503883\n\t\t 0.15700157 0.15700269 0.99741256 0.050835274 0.05083333 0.99741238 0.039940979 0.059775785\n\t\t 0.99741238 0.039940979 0.059775785 0.99741256 0.050835274 0.05083333 0.9997735 0.01504805\n\t\t 0.015045989 0.9997735 0.011823146 0.017694574 -0.014661819 -0.014628868 0.99978542\n\t\t -0.021199048 6.6299464e-08 0.99977529 -0.074960925 3.9404711e-08 0.99718654 -0.075990915\n\t\t -0.011856835 0.99703801 -0.075990915 -0.011856835 0.99703801 -0.074960925 3.9404711e-08\n\t\t 0.99718654 -0.2271755 1.3800103e-07 0.97385389 -0.22855793 -0.012232538 0.9734534\n\t\t -0.22855793 -0.012232538 0.9734534 -0.2271755 1.3800103e-07 0.97385389 -0.45679998\n\t\t 1.3345451e-07 0.8895694 -0.45744145 -0.010889113 0.88917309 -0.45744145 -0.010889113\n\t\t 0.88917309 -0.45679998 1.3345451e-07 0.8895694 -0.70718294 8.3068073e-08 0.70703059\n\t\t -0.70721912 -0.009622301 0.70692897 -0.70721912 -0.009622301 0.70692897 -0.70718294\n\t\t 8.3068073e-08 0.70703059 -0.8896606 7.9042223e-08 0.45662239 -0.88939428 -0.011133735\n\t\t 0.4570052 -0.88939428 -0.011133735 0.4570052 -0.8896606 7.9042223e-08 0.45662239\n\t\t -0.97388589 9.7725689e-08 0.22703804 -0.97352391 -0.012683596 0.22823313 -0.97352391\n\t\t -0.012683596 0.22823313 -0.97388589 9.7725689e-08 0.22703804 -0.99719083 1.3657936e-07\n\t\t 0.074902683 -0.99703741 -0.012106793 0.07595925 -0.99703741 -0.012106793 0.07595925\n\t\t -0.99719083 1.3657936e-07 0.074902683 -0.99977565 7.2759079e-08 0.021181459 -0.99978548\n\t\t -0.014661876 0.014628915 -0.02119098 -1.6288412e-07 -0.99977553 -0.021182986 -1.2435413e-07\n\t\t -0.99977559 -0.07490284 -6.7129513e-08 -0.99719089 -0.074931867 -1.6246267e-07 -0.99718869\n\t\t -0.074931867 -1.6246267e-07 -0.99718869 -0.07490284 -6.7129513e-08 -0.99719089 -0.22703893\n\t\t -1.133392e-07 -0.97388572 -0.22710694 -1.5866354e-07 -0.9738698 -0.22710694 -1.5866354e-07\n\t\t -0.9738698 -0.22703893 -1.133392e-07 -0.97388572 -0.45662341 -1.3895789e-07 -0.88966012\n\t\t -0.45671114 -1.4493668e-07 -0.88961494 -0.45671114 -1.4493668e-07 -0.88961494 -0.45662341\n\t\t -1.3895789e-07 -0.88966012 -0.7070297 -1.4024161e-07 -0.70718384 -0.70710683 -1.1520233e-07\n\t\t -0.70710683 -0.70710683 -1.1520233e-07 -0.70710683 -0.7070297 -1.4024161e-07 -0.70718384\n\t\t -0.88956857 -1.1312937e-07 -0.4568015 -0.88961494 -7.4407687e-08 -0.45671111 -0.88961494\n\t\t -7.4407687e-08 -0.45671111 -0.88956857 -1.1312937e-07 -0.4568015 -0.97385401 -1.0359072e-07\n\t\t -0.22717477 -0.9738698 -3.7000415e-08 -0.22710693 -0.9738698 -3.7000415e-08 -0.22710693\n\t\t -0.97385401 -1.0359072e-07 -0.22717477 -0.99718642 -1.3639253e-07 -0.07496088 -0.99718863\n\t\t -1.2207951e-08 -0.074931867 -0.99718863 -1.2207951e-08 -0.074931867 -0.99718642 -1.3639253e-07\n\t\t -0.07496088 -0.99977517 -7.2703294e-08 -0.021202279 -0.99977553 -3.452449e-09 -0.02119098\n\t\t 0.99977529 1.4022639e-07 -0.021200007 0.99977565 6.6183247e-08 -0.02118146 0.99719089\n\t\t 1.1385296e-07 -0.074902691 0.99718654 2.5258251e-07 -0.074960656 0.99718654 2.5258251e-07\n\t\t -0.074960656 0.99719089 1.1385296e-07 -0.074902691 0.97388589 2.7970785e-08 -0.22703804\n\t\t 0.97385389 1.0402029e-07 -0.22717528 0.97385389 1.0402029e-07 -0.22717528 0.97388589\n\t\t 2.7970785e-08 -0.22703804 0.8896606 -6.4440805e-08 -0.45662245 0.88956934 -1.901866e-08\n\t\t -0.45680025 0.88956934 -1.901866e-08 -0.45680025 0.8896606 -6.4440805e-08 -0.45662245\n\t\t 0.70718294 -1.3318002e-07 -0.70703059 0.70703024 -1.0270852e-07 -0.70718336 0.70703024\n\t\t -1.0270852e-07 -0.70718336 0.70718294 -1.3318002e-07 -0.70703059 0.45679998 -1.5353325e-07\n\t\t -0.8895694 0.45662278 -2.0350861e-07 -0.88966042 0.45662278 -2.0350861e-07 -0.88966042\n\t\t 0.45679998 -1.5353325e-07 -0.8895694 0.2271755 -2.1079219e-07 -0.97385389 0.22703946\n\t\t -3.2583068e-07 -0.9738856 0.22703946 -3.2583068e-07 -0.9738856 0.2271755 -2.1079219e-07\n\t\t -0.97385389 0.07496091 -3.1836743e-07 -0.99718654 0.07490325 -4.2687856e-07 -0.99719089\n\t\t 0.07490325 -4.2687856e-07 -0.99719089 0.07496091 -3.1836743e-07 -0.99718654 0.021199048\n\t\t -2.7951455e-07 -0.99977529 0.021182897 -2.8468821e-07 -0.99977559 0.014661819 0.014629194\n\t\t 0.99978542 0.021191057 2.9799872e-07 0.99977553 0.07493189 3.8085372e-07 0.99718869\n\t\t 0.075990915 0.011857159 0.99703801 0.075990915 0.011857159 0.99703801 0.07493189\n\t\t 3.8085372e-07 0.99718869 0.22710748 2.2465039e-07 0.97386968 0.22855793 0.012232855\n\t\t 0.9734534 0.22855793 0.012232855 0.9734534 0.22710748 2.2465039e-07 0.97386968 0.45671219\n\t\t 1.6239751e-07 0.88961452 0.45744145 0.010889404 0.88917309 0.45744145 0.010889404\n\t\t 0.88917309 0.45671219 1.6239751e-07 0.88961452 0.70710588 1.2229756e-07 0.70710772\n\t\t 0.70721912 0.0096225319 0.70692897 0.70721912 0.0096225319 0.70692897 0.70710588\n\t\t 1.2229756e-07 0.70710772 0.88961416 3.1052046e-08 0.45671272 0.88939428 0.011133884\n\t\t 0.4570052 0.88939428 0.011133884 0.4570052 0.88961416 3.1052046e-08 0.45671272 0.9738701\n\t\t -9.0315488e-08 0.22710586 0.97352391 0.012683671 0.22823313 0.97352391 0.012683671\n\t\t 0.22823313 0.9738701 -9.0315488e-08 0.22710586 0.99718875 -2.3634811e-07 0.074931718\n\t\t 0.99703741 0.012106817 0.07595925 0.99703741 0.012106817 0.07595925 0.99718875 -2.3634811e-07\n\t\t 0.074931718 0.99977541 -1.3510443e-07 0.021192759 0.99978548 0.014661863 0.01462891\n\t\t 2.7836364e-08 -0.19509032 -0.98078525 -4.602159e-14 -6.3000209e-07 -1 -4.8294261e-14\n\t\t -6.014053e-07 -1 2.7836361e-08 -0.19509032 -0.98078525;\n\tsetAttr -s 4009 -ch 16092 \".fc\";\n\tsetAttr \".fc[0:499]\" -type \"polyFaces\" \n\t\tf 4 0 1 2 3\n\t\tmu 0 4 3789 3790 3791 3792\n\t\tf 4 4 5 6 7\n\t\tmu 0 4 3845 3846 3847 3848\n\t\tf 7 8 9 10 11 12 13 14\n\t\tmu 0 7 0 1 2 3 4 5 6\n\t\tf 4 15 16 17 18\n\t\tmu 0 4 4087 4088 4089 4090\n\t\tf 4 19 20 21 22\n\t\tmu 0 4 4135 4136 4115 4114\n\t\tf 4 23 24 25 26\n\t\tmu 0 4 2277 2278 2279 2280\n\t\tf 4 -22 27 28 29\n\t\tmu 0 4 4114 4115 4100 4099\n\t\tf 4 30 31 32 33\n\t\tmu 0 4 476 477 478 479\n\t\tf 4 34 35 36 37\n\t\tmu 0 4 4102 4091 4092 4103\n\t\tf 4 38 -30 39 40\n\t\tmu 0 4 4138 4114 4099 4117\n\t\tf 4 41 -23 -39 42\n\t\tmu 0 4 4159 4135 4114 4138\n\t\tf 4 -26 43 44 45\n\t\tmu 0 4 2280 2279 2285 2286\n\t\tf 4 46 47 48 -44\n\t\tmu 0 4 2279 2284 2298 2285\n\t\tf 4 49 50 51 -48\n\t\tmu 0 4 2284 2319 2320 2298\n\t\tf 4 52 53 54 55\n\t\tmu 0 4 3871 3887 3908 3889\n\t\tf 4 56 57 58 59\n\t\tmu 0 4 3858 3871 3859 3850\n\t\tf 4 -59 60 61 62\n\t\tmu 0 4 3850 3859 3851 3846\n\t\tf 4 63 64 65 66\n\t\tmu 0 4 2497 2498 2499 2500\n\t\tf 4 67 68 69 70\n\t\tmu 0 4 2508 2500 2506 2518\n\t\tf 4 -70 71 72 73\n\t\tmu 0 4 2518 2506 2517 2533\n\t\tf 4 -40 74 -35 75\n\t\tmu 0 4 4117 4099 4091 4102\n\t\tf 4 76 -71 77 78\n\t\tmu 0 4 2520 2508 2518 2534\n\t\tf 4 -78 -74 79 80\n\t\tmu 0 4 2534 2518 2533 2551\n\t\tf 4 81 82 83 84\n\t\tmu 0 4 1011 1012 1013 1014\n\t\tf 4 85 86 87 88\n\t\tmu 0 4 1052 1035 1023 1036\n\t\tf 4 89 90 -24 91\n\t\tmu 0 4 2281 2282 2278 2277\n\t\tf 4 92 93 94 95\n\t\tmu 0 4 4229 4230 4231 4232\n\t\tf 4 96 97 98 -83\n\t\tmu 0 4 1012 1017 1018 1013\n\t\tf 4 -88 99 100 101\n\t\tmu 0 4 1036 1023 1015 1025\n\t\tf 4 -101 102 103 104\n\t\tmu 0 4 1025 1015 1016 1026\n\t\tf 4 105 106 107 108\n\t\tmu 0 4 1018 1028 1043 1029\n\t\tf 4 109 110 111 112\n\t\tmu 0 4 1420 1421 1422 1423\n\t\tf 4 -55 113 114 115\n\t\tmu 0 4 3889 3908 3931 3910\n\t\tf 4 116 117 118 119\n\t\tmu 0 4 1820 1821 1822 1823\n\t\tf 4 120 121 -47 -25\n\t\tmu 0 4 2278 2283 2284 2279\n\t\tf 4 -10 122 123 124\n\t\tmu 0 4 2 1 9 10\n\t\tf 4 125 -16 126 -36\n\t\tmu 0 4 4091 4088 4087 4092\n\t\tf 4 127 -53 -57 128\n\t\tmu 0 4 3870 3887 3871 3858\n\t\tf 4 129 -63 -5 130\n\t\tmu 0 4 3849 3850 3846 3845\n\t\tf 7 131 132 133 134 135 136 137\n\t\tmu 0 7 37 36 77 78 79 80 81\n\t\tf 8 -11 138 139 140 141 142 143 144\n\t\tmu 0 8 3 2 11 12 13 14 15 16\n\t\tf 7 145 -15 146 147 148 149 150\n\t\tmu 0 7 21 0 6 22 23 24 25\n\t\tf 4 -66 151 152 -69\n\t\tmu 0 4 2500 2499 2505 2506\n\t\tf 4 153 154 155 156\n\t\tmu 0 4 1027 1041 1042 1028\n\t\tf 4 157 158 159 -87\n\t\tmu 0 4 1035 1027 1017 1023\n\t\tf 4 -160 -97 160 -100\n\t\tmu 0 4 1023 1017 1012 1015\n\t\tf 4 161 162 163 164\n\t\tmu 0 4 664 670 682 676\n\t\tf 4 165 166 167 168\n\t\tmu 0 4 4293 4294 4295 4296\n\t\tf 4 169 170 171 172\n\t\tmu 0 4 1020 1019 1030 1031\n\t\tf 4 173 174 175 176\n\t\tmu 0 4 4357 4358 4359 4360\n\t\tf 4 -159 -157 -106 -98\n\t\tmu 0 4 1017 1027 1028 1018\n\t\tf 4 177 178 179 180\n\t\tmu 0 4 4421 4422 4423 4424\n\t\tf 4 181 182 183 184\n\t\tmu 0 4 2008 2014 2026 2020\n\t\tf 4 -115 185 186 187\n\t\tmu 0 4 3910 3931 3955 3933\n\t\tf 4 -172 188 189 190\n\t\tmu 0 4 1031 1030 1045 1046\n\t\tf 4 191 192 193 194\n\t\tmu 0 4 4485 4486 4487 4488\n\t\tf 4 195 196 197 198\n\t\tmu 0 4 3861 3873 3891 3892\n\t\tf 4 199 200 201 202\n\t\tmu 0 4 4549 4550 4551 4552\n\t\tf 4 -161 -82 203 -103\n\t\tmu 0 4 1015 1012 1011 1016\n\t\tf 4 204 205 206 207\n\t\tmu 0 4 2662 2663 2664 2665\n\t\tf 4 -58 -56 208 209\n\t\tmu 0 4 3859 3871 3889 3873\n\t\tf 4 210 211 212 213\n\t\tmu 0 4 4613 4614 4615 4616\n\t\tf 4 -187 214 215 216\n\t\tmu 0 4 3933 3955 3980 3981\n\t\tf 4 217 218 219 220\n\t\tmu 0 4 4677 4678 4679 4680\n\t\tf 4 -209 -116 221 -197\n\t\tmu 0 4 3873 3889 3910 3891\n\t\tf 4 -84 222 -170 223\n\t\tmu 0 4 1014 1013 1019 1020\n\t\tf 4 224 225 226 227\n\t\tmu 0 4 799 805 817 811\n\t\tf 4 -99 -109 228 -223\n\t\tmu 0 4 1013 1018 1029 1019\n\t\tf 4 229 230 231 232\n\t\tmu 0 4 1743 1749 1761 1755\n\t\tf 4 -61 -210 -196 233\n\t\tmu 0 4 3851 3859 3873 3861\n\t\tf 4 234 235 236 237\n\t\tmu 0 4 2758 2759 2760 2761\n\t\tf 4 238 239 240 241\n\t\tmu 0 4 2854 2855 2856 2857\n\t\tf 4 242 243 244 245\n\t\tmu 0 4 1608 1614 1626 1620\n\t\tf 4 246 247 248 249\n\t\tmu 0 4 2950 2951 2952 2953\n\t\tf 4 250 251 252 253\n\t\tmu 0 4 934 940 952 946\n\t\tf 4 -229 254 255 -171\n\t\tmu 0 4 1019 1029 1044 1030\n\t\tf 4 256 257 258 259\n\t\tmu 0 4 4741 4742 4743 4744\n\t\tf 4 260 261 262 263\n\t\tmu 0 4 3043 3044 3045 3046\n\t\tf 4 264 -234 265 266\n\t\tmu 0 4 3852 3851 3861 3862\n\t\tf 4 267 268 269 270\n\t\tmu 0 4 3136 3137 3138 3139\n\t\tf 4 271 272 273 274\n\t\tmu 0 4 3232 3233 3234 3235\n\t\tf 4 -222 -188 275 276\n\t\tmu 0 4 3891 3910 3933 3934\n\t\tf 4 -149 277 278 279\n\t\tmu 0 4 24 23 52 53\n\t\tf 4 280 281 282 283\n\t\tmu 0 4 3328 3329 3330 3331\n\t\tf 4 284 285 286 287\n\t\tmu 0 4 3424 3425 3426 3427\n\t\tf 4 288 289 290 291\n\t\tmu 0 4 3520 3521 3522 3523\n\t\tf 4 292 293 294 295\n\t\tmu 0 4 3613 3614 3615 3616\n\t\tf 4 296 297 298 299\n\t\tmu 0 4 3619 3629 3630 3620\n\t\tf 4 300 301 302 -298\n\t\tmu 0 4 3629 3643 3644 3630\n\t\tf 32 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322\n\t\t 323 324 325 326 327 328 329 330 331 332 333 334\n\t\tmu 0 32 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100\n\t\t 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116\n\t\tf 4 335 336 337 338\n\t\tmu 0 4 3701 3702 3703 3704\n\t\tf 4 339 340 341 342\n\t\tmu 0 4 3635 3623 3624 3636\n\t\tf 4 343 -296 344 -341\n\t\tmu 0 4 3623 3613 3616 3624\n\t\tf 4 345 346 347 -2\n\t\tmu 0 4 3790 3795 3796 3791\n\t\tf 4 348 349 350 351\n\t\tmu 0 4 3825 3811 3812 3826\n\t\tf 4 352 353 354 355\n\t\tmu 0 4 4805 4806 4807 4808\n\t\tf 4 356 357 358 359\n\t\tmu 0 4 3707 3717 3718 3708\n\t\tf 4 360 -356 361 362\n\t\tmu 0 4 3676 3684 3685 3677\n\t\tf 4 363 -352 364 365\n\t\tmu 0 4 3764 3772 3773 3765\n\t\tf 4 366 367 -86 368\n\t\tmu 0 4 1081 1051 1035 1052\n\t\tf 4 369 370 371 372\n\t\tmu 0 4 4811 4818 4819 4812\n\t\tf 4 373 374 375 -350\n\t\tmu 0 4 3811 3799 3800 3812\n\t\tf 4 376 377 378 -302\n\t\tmu 0 4 3643 3656 3657 3644\n\t\tf 4 379 380 381 382\n\t\tmu 0 4 3731 3744 3745 3732\n\t\tf 7 -135 383 384 385 386 387 388\n\t\tmu 0 7 79 78 135 101 100 136 137\n\t\tf 4 389 -360 390 -337\n\t\tmu 0 4 3702 3707 3708 3703\n\t\tf 4 391 -366 392 393\n\t\tmu 0 4 3755 3764 3765 3756\n\t\tf 4 394 395 396 -378\n\t\tmu 0 4 3656 3667 3668 3657\n\t\tf 4 397 398 399 -371\n\t\tmu 0 4 4818 4827 4828 4819\n\t\tf 4 400 401 402 403\n\t\tmu 0 4 4836 4844 4845 4837\n\t\tf 4 404 -343 405 -347\n\t\tmu 0 4 3795 3805 3806 3796\n\t\tf 4 406 -339 407 408\n\t\tmu 0 4 3711 3701 3704 3712\n\t\tf 4 409 -300 410 -294\n\t\tmu 0 4 3614 3619 3620 3615\n\t\tf 4 411 -373 412 -354\n\t\tmu 0 4 4806 4811 4812 4807\n\t\tf 4 413 -394 414 -381\n\t\tmu 0 4 3744 3755 3756 3745\n\t\tf 4 415 -363 416 -396\n\t\tmu 0 4 3667 3676 3677 3668\n\t\tf 4 417 -409 418 -402\n\t\tmu 0 4 3723 3711 3712 3724\n\t\tf 4 419 -383 420 -358\n\t\tmu 0 4 3717 3731 3732 3718\n\t\tf 4 421 -404 422 -399\n\t\tmu 0 4 4827 4836 4837 4828\n\t\tf 8 -386 423 424 425 426 427 428 429\n\t\tmu 0 8 100 101 55 54 102 103 104 105\n\t\tf 4 -153 430 431 -72\n\t\tmu 0 4 2506 2505 2516 2517\n\t\tf 4 -14 432 433 434\n\t\tmu 0 4 6 5 19 20\n\t\tf 4 -13 435 436 -433\n\t\tmu 0 4 5 4 18 19\n\t\tf 4 -148 437 438 -278\n\t\tmu 0 4 23 22 51 52\n\t\tf 4 439 440 441 442\n\t\tmu 0 4 57 56 99 107\n\t\tf 4 443 -280 444 -441\n\t\tmu 0 4 56 24 53 99\n\t\tf 4 445 446 447 448\n\t\tmu 0 4 54 59 109 110\n\t\tf 4 449 -443 450 451\n\t\tmu 0 4 58 57 107 108\n\t\tf 4 -427 452 453 454\n\t\tmu 0 4 103 102 160 161\n\t\tf 4 455 -452 456 -447\n\t\tmu 0 4 59 58 108 109\n\t\tf 4 -426 -449 457 -453\n\t\tmu 0 4 102 54 110 160\n\t\tf 4 -387 458 459 460\n\t\tmu 0 4 136 100 164 201\n\t\tf 4 -428 -455 461 462\n\t\tmu 0 4 104 103 161 162\n\t\tf 4 -429 -463 463 464\n\t\tmu 0 4 105 104 162 163\n\t\tf 4 -388 -461 465 466\n\t\tmu 0 4 137 136 201 202\n\t\tf 4 -430 -465 467 -459\n\t\tmu 0 4 100 105 163 164\n\t\tf 4 -62 -265 468 -6\n\t\tmu 0 4 3846 3851 3852 3847\n\t\tf 4 -389 -467 469 470\n\t\tmu 0 4 79 137 202 138\n\t\tf 4 -136 -471 471 472\n\t\tmu 0 4 80 79 138 139\n\t\tf 4 -137 -473 473 474\n\t\tmu 0 4 81 80 139 140\n\t\tf 4 -147 -435 475 -438\n\t\tmu 0 4 22 6 20 51\n\t\tf 4 -145 476 477 478\n\t\tmu 0 4 3 16 46 17\n\t\tf 4 -12 -479 479 -436\n\t\tmu 0 4 4 3 17 18\n\t\tf 4 -138 -475 480 481\n\t\tmu 0 4 37 81 140 82\n\t\tf 4 -144 482 483 -477\n\t\tmu 0 4 16 15 45 46\n\t\tf 4 484 -482 485 486\n\t\tmu 0 4 38 37 82 83\n\t\tf 4 -143 487 488 -483\n\t\tmu 0 4 15 14 44 45\n\t\tf 4 489 -487 490 491\n\t\tmu 0 4 39 38 83 84\n\t\tf 4 -142 492 493 -488\n\t\tmu 0 4 14 13 43 44\n\t\tf 4 494 -492 495 496\n\t\tmu 0 4 40 39 84 85\n\t\tf 4 -141 497 498 -493\n\t\tmu 0 4 13 12 42 43\n\t\tf 4 499 500 501 -498\n\t\tmu 0 4 12 41 86 42\n\t\tf 4 502 -497 503 -501\n\t\tmu 0 4 41 40 85 86\n\t\tf 4 504 -79 505 506\n\t\tmu 0 4 2536 2520 2534 2552\n\t\tf 4 -506 -81 507 508\n\t\tmu 0 4 2552 2534 2551 2571\n\t\tf 4 -508 509 510 511\n\t\tmu 0 4 2571 2551 2570 2590\n\t\tf 4 512 -60 -130 513\n\t\tmu 0 4 3857 3858 3850 3849\n\t\tf 4 514 515 -77 516\n\t\tmu 0 4 2519 2507 2508 2520\n\t\tf 4 517 -517 -505 518\n\t\tmu 0 4 2535 2519 2520 2536\n\t\tf 4 -80 519 520 -510\n\t\tmu 0 4 2551 2533 2550 2570\n\t\tf 4 -73 521 522 -520\n\t\tmu 0 4 2533 2517 2532 2550\n\t\tf 4 -432 523 524 -522\n\t\tmu 0 4 2517 2516 2531 2532\n\t\tf 4 525 -154 -158 -368\n\t\tmu 0 4 1051 1041 1027 1035\n\t\tf 4 526 -67 -68 -516\n\t\tmu 0 4 2507 2497 2500 2508\n\t\tf 4 527 -129 -513 528\n\t\tmu 0 4 3869 3870 3858 3857\n\t\tf 8 -140 529 -132 -485 -490 -495 -503 -500\n\t\tmu 0 8 12 11 36 37 38 39 40 41\n\t\tf 8 -425 530 -150 -444 -440 -450 -456 -446\n\t\tmu 0 8 54 55 25 24 56 57 58 59\n\t\tf 4 -29 531 -126 -75\n\t\tmu 0 4 4099 4100 4088 4091\n\t\tf 4 532 533 534 535\n\t\tmu 0 4 1081 1121 1168 1120\n\t\tf 4 536 537 538 -534\n\t\tmu 0 4 1121 1169 1224 1168\n\t\tf 4 539 540 541 -538\n\t\tmu 0 4 1169 1225 1286 1224\n\t\tf 4 542 543 544 -541\n\t\tmu 0 4 1225 1287 1337 1286\n\t\tf 4 -535 545 546 547\n\t\tmu 0 4 1120 1168 1223 1167\n\t\tf 4 -539 548 549 -546\n\t\tmu 0 4 1168 1224 1285 1223\n\t\tf 4 -542 550 551 -549\n\t\tmu 0 4 1224 1286 1336 1285\n\t\tf 4 -545 552 553 -551\n\t\tmu 0 4 1286 1337 1377 1336\n\t\tf 4 -547 554 555 556\n\t\tmu 0 4 1167 1223 1284 1222\n\t\tf 4 -550 557 558 -555\n\t\tmu 0 4 1223 1285 1335 1284\n\t\tf 4 -552 559 560 -558\n\t\tmu 0 4 1285 1336 1376 1335\n\t\tf 4 -554 561 562 -560\n\t\tmu 0 4 1336 1377 1406 1376\n\t\tf 4 -556 563 564 565\n\t\tmu 0 4 1222 1284 1334 1283\n\t\tf 4 -559 566 567 -564\n\t\tmu 0 4 1284 1335 1375 1334\n\t\tf 4 -561 568 569 -567\n\t\tmu 0 4 1335 1376 1405 1375\n\t\tf 4 -563 570 571 -569\n\t\tmu 0 4 1376 1406 1417 1405\n\t\tf 4 572 573 574 575\n\t\tmu 0 4 2590 2609 2626 2610\n\t\tf 4 576 577 578 -574\n\t\tmu 0 4 2609 2625 2638 2626\n\t\tf 4 579 580 581 -578\n\t\tmu 0 4 2625 2637 2647 2638\n\t\tf 4 582 583 584 -581\n\t\tmu 0 4 2637 2646 2653 2647\n\t\tf 4 -575 585 586 587\n\t\tmu 0 4 2610 2626 2639 2627\n\t\tf 4 -579 588 589 -586\n\t\tmu 0 4 2626 2638 2648 2639\n\t\tf 4 -582 590 591 -589\n\t\tmu 0 4 2638 2647 2654 2648\n\t\tf 4 -585 592 593 -591\n\t\tmu 0 4 2647 2653 2657 2654\n\t\tf 4 -587 594 595 596\n\t\tmu 0 4 2627 2639 2649 2640\n\t\tf 4 -590 597 598 -595\n\t\tmu 0 4 2639 2648 2655 2649\n\t\tf 4 -592 599 600 -598\n\t\tmu 0 4 2648 2654 2658 2655\n\t\tf 4 -594 601 602 -600\n\t\tmu 0 4 2654 2657 2660 2658\n\t\tf 4 -596 603 -544 604\n\t\tmu 0 4 1338 1378 1337 1287\n\t\tf 4 -599 605 -553 -604\n\t\tmu 0 4 1378 1407 1377 1337\n\t\tf 4 -601 606 -562 -606\n\t\tmu 0 4 1407 1418 1406 1377\n\t\tf 4 -603 607 -571 -607\n\t\tmu 0 4 1418 1419 1417 1406\n\t\tf 4 608 609 610 611\n\t\tmu 0 4 4103 4119 4143 4120\n\t\tf 4 612 613 614 -610\n\t\tmu 0 4 4119 4142 4165 4143\n\t\tf 4 615 616 617 -614\n\t\tmu 0 4 4142 4164 4188 4165\n\t\tf 4 618 -565 619 -617\n\t\tmu 0 4 1333 1283 1334 1374\n\t\tf 4 -611 620 621 622\n\t\tmu 0 4 4120 4143 4166 4144\n\t\tf 4 -615 623 624 -621\n\t\tmu 0 4 4143 4165 4189 4166\n\t\tf 4 -618 625 626 -624\n\t\tmu 0 4 4165 4188 4207 4189\n\t\tf 4 -620 -568 627 -626\n\t\tmu 0 4 1374 1334 1375 1404\n\t\tf 4 -622 628 629 630\n\t\tmu 0 4 4144 4166 4190 4167\n\t\tf 4 -625 631 632 -629\n\t\tmu 0 4 4166 4189 4208 4190\n\t\tf 4 -627 633 634 -632\n\t\tmu 0 4 4189 4207 4218 4208\n\t\tf 4 -628 -570 635 -634\n\t\tmu 0 4 1404 1375 1405 1416\n\t\tf 4 -630 636 -584 637\n\t\tmu 0 4 2652 2656 2653 2646\n\t\tf 4 -633 638 -593 -637\n\t\tmu 0 4 2656 2659 2657 2653\n\t\tf 4 -635 639 -602 -639\n\t\tmu 0 4 2659 2661 2660 2657\n\t\tf 4 -636 -572 -608 -640\n\t\tmu 0 4 1416 1405 1417 1419\n\t\tf 4 640 641 642 643\n\t\tmu 0 4 1026 1038 1056 1039\n\t\tf 4 644 645 646 -642\n\t\tmu 0 4 1038 1055 1086 1056\n\t\tf 4 647 648 649 -646\n\t\tmu 0 4 1055 1085 1126 1086\n\t\tf 4 650 651 652 -649\n\t\tmu 0 4 1085 1125 1173 1126\n\t\tf 4 -643 653 654 655\n\t\tmu 0 4 1039 1056 1087 1057\n\t\tf 4 -647 656 657 -654\n\t\tmu 0 4 1056 1086 1127 1087\n\t\tf 4 -650 658 659 -657\n\t\tmu 0 4 1086 1126 1174 1127\n\t\tf 4 -653 660 661 -659\n\t\tmu 0 4 1126 1173 1229 1174\n\t\tf 4 -655 662 663 664\n\t\tmu 0 4 1057 1087 1128 1088\n\t\tf 4 -658 665 666 -663\n\t\tmu 0 4 1087 1127 1175 1128\n\t\tf 4 -660 667 668 -666\n\t\tmu 0 4 1127 1174 1230 1175\n\t\tf 4 -662 669 670 -668\n\t\tmu 0 4 1174 1229 1290 1230\n\t\tf 4 -664 671 672 673\n\t\tmu 0 4 1088 1128 1176 1129\n\t\tf 4 -667 674 675 -672\n\t\tmu 0 4 1128 1175 1231 1176\n\t\tf 4 -669 676 677 -675\n\t\tmu 0 4 1175 1230 1291 1231\n\t\tf 4 -671 678 679 -677\n\t\tmu 0 4 1230 1290 1340 1291\n\t\tf 4 680 681 682 683\n\t\tmu 0 4 3869 3888 3904 3885\n\t\tf 4 684 685 686 -682\n\t\tmu 0 4 3888 3909 3925 3904\n\t\tf 4 687 688 689 -686\n\t\tmu 0 4 3909 3932 3949 3925\n\t\tf 4 690 691 692 -689\n\t\tmu 0 4 2616 2598 2615 2631\n\t\tf 4 -683 693 694 695\n\t\tmu 0 4 3885 3904 3926 3905\n\t\tf 4 -687 696 697 -694\n\t\tmu 0 4 3904 3925 3950 3926\n\t\tf 4 -690 698 699 -697\n\t\tmu 0 4 3925 3949 3975 3950\n\t\tf 4 -693 700 701 -699\n\t\tmu 0 4 2631 2615 2630 2642\n\t\tf 4 -695 702 703 704\n\t\tmu 0 4 3905 3926 3951 3927\n\t\tf 4 -698 705 706 -703\n\t\tmu 0 4 3926 3950 3976 3951\n\t\tf 4 -700 707 708 -706\n\t\tmu 0 4 3950 3975 4001 3976\n\t\tf 4 -702 709 710 -708\n\t\tmu 0 4 2642 2630 2641 2650\n\t\tf 4 -704 711 -652 712\n\t\tmu 0 4 1172 1228 1173 1125\n\t\tf 4 -707 713 -661 -712\n\t\tmu 0 4 1228 1289 1229 1173\n\t\tf 4 -709 714 -670 -714\n\t\tmu 0 4 1289 1339 1290 1229\n\t\tf 4 -711 715 -679 -715\n\t\tmu 0 4 1339 1379 1340 1290\n\t\tf 4 716 717 718 719\n\t\tmu 0 4 2535 2554 2555 2537\n\t\tf 4 720 721 722 -718\n\t\tmu 0 4 2554 2574 2575 2555\n\t\tf 4 723 724 725 -722\n\t\tmu 0 4 2574 2594 2595 2575\n\t\tf 4 726 -673 727 -725\n\t\tmu 0 4 1177 1129 1176 1232\n\t\tf 4 -719 728 729 730\n\t\tmu 0 4 2537 2555 2576 2556\n\t\tf 4 -723 731 732 -729\n\t\tmu 0 4 2555 2575 2596 2576\n\t\tf 4 -726 733 734 -732\n\t\tmu 0 4 2575 2595 2613 2596\n\t\tf 4 -728 -676 735 -734\n\t\tmu 0 4 1232 1176 1231 1292\n\t\tf 4 -730 736 737 738\n\t\tmu 0 4 2556 2576 2597 2577\n\t\tf 4 -733 739 740 -737\n\t\tmu 0 4 2576 2596 2614 2597\n\t\tf 4 -735 741 742 -740\n\t\tmu 0 4 2596 2613 2629 2614\n\t\tf 4 -736 -678 743 -742\n\t\tmu 0 4 1292 1231 1291 1341\n\t\tf 4 -738 744 -692 745\n\t\tmu 0 4 2577 2597 2615 2598\n\t\tf 4 -741 746 -701 -745\n\t\tmu 0 4 2597 2614 2630 2615\n\t\tf 4 -743 747 -710 -747\n\t\tmu 0 4 2614 2629 2641 2630\n\t\tf 4 -744 -680 -716 -748\n\t\tmu 0 4 1341 1291 1340 1379\n\t\tf 4 748 749 750 751\n\t\tmu 0 4 2320 2350 2382 2351\n\t\tf 4 752 753 754 -750\n\t\tmu 0 4 2350 2381 2419 2382\n\t\tf 4 755 756 757 -754\n\t\tmu 0 4 2381 2418 2450 2419\n\t\tf 4 758 759 760 -757\n\t\tmu 0 4 539 519 538 563\n\t\tf 4 -751 761 762 763\n\t\tmu 0 4 2351 2382 2420 2383\n\t\tf 4 -755 764 765 -762\n\t\tmu 0 4 2382 2419 2451 2420\n\t\tf 4 -758 766 767 -765\n\t\tmu 0 4 2419 2450 2474 2451\n\t\tf 4 -761 768 769 -767\n\t\tmu 0 4 563 538 562 581\n\t\tf 4 -763 770 771 772\n\t\tmu 0 4 2383 2420 2452 2421\n\t\tf 4 -766 773 774 -771\n\t\tmu 0 4 2420 2451 2475 2452\n\t\tf 4 -768 775 776 -774\n\t\tmu 0 4 2451 2474 2490 2475\n\t\tf 4 -770 777 778 -776\n\t\tmu 0 4 581 562 580 595\n\t\tf 4 -772 779 780 781\n\t\tmu 0 4 2421 2452 2476 2453\n\t\tf 4 -775 782 783 -780\n\t\tmu 0 4 2452 2475 2491 2476\n\t\tf 4 -777 784 785 -783\n\t\tmu 0 4 2475 2490 2495 2491\n\t\tf 4 -779 786 787 -785\n\t\tmu 0 4 595 580 594 605\n\t\tf 4 788 789 790 791\n\t\tmu 0 4 476 487 488 480\n\t\tf 4 792 793 794 -790\n\t\tmu 0 4 487 499 500 488\n\t\tf 4 795 796 797 -794\n\t\tmu 0 4 499 515 516 500\n\t\tf 4 798 799 800 -797\n\t\tmu 0 4 4194 4172 4171 4195\n\t\tf 4 -791 801 802 803\n\t\tmu 0 4 480 488 501 489\n\t\tf 4 -795 804 805 -802\n\t\tmu 0 4 488 500 517 501\n\t\tf 4 -798 806 807 -805\n\t\tmu 0 4 500 516 536 517\n\t\tf 4 -801 808 809 -807\n\t\tmu 0 4 516 559 560 536\n\t\tf 4 -803 810 811 812\n\t\tmu 0 4 489 501 518 502\n\t\tf 4 -806 813 814 -811\n\t\tmu 0 4 501 517 537 518\n\t\tf 4 -808 815 816 -814\n\t\tmu 0 4 517 536 561 537\n\t\tf 4 -810 817 818 -816\n\t\tmu 0 4 536 560 579 561\n\t\tf 4 -812 819 -760 820\n\t\tmu 0 4 502 518 538 519\n\t\tf 4 -815 821 -769 -820\n\t\tmu 0 4 518 537 562 538\n\t\tf 4 -817 822 -778 -822\n\t\tmu 0 4 537 561 580 562\n\t\tf 4 -819 823 -787 -823\n\t\tmu 0 4 561 579 594 580\n\t\tf 4 824 825 826 827\n\t\tmu 0 4 4088 4107 4108 4093\n\t\tf 4 828 829 830 -826\n\t\tmu 0 4 4107 4127 4128 4108\n\t\tf 4 831 832 833 -830\n\t\tmu 0 4 4127 4151 4152 4128\n\t\tf 4 834 -781 835 -833\n\t\tmu 0 4 4151 4175 4176 4152\n\t\tf 4 -827 836 837 838\n\t\tmu 0 4 4093 4108 4125 4104\n\t\tf 4 -831 839 840 -837\n\t\tmu 0 4 4108 4128 4149 4125\n\t\tf 4 -834 841 842 -840\n\t\tmu 0 4 4128 4152 4174 4149\n\t\tf 4 -836 -784 843 -842\n\t\tmu 0 4 4152 4176 4196 4174\n\t\tf 4 -838 844 845 846\n\t\tmu 0 4 4104 4125 4147 4122\n\t\tf 4 -841 847 848 -845\n\t\tmu 0 4 4125 4149 4170 4147\n\t\tf 4 -843 849 850 -848\n\t\tmu 0 4 4149 4174 4192 4170\n\t\tf 4 -844 -786 851 -850\n\t\tmu 0 4 4174 4196 4209 4192\n\t\tf 4 -846 852 -800 853\n\t\tmu 0 4 4122 4147 4171 4172\n\t\tf 4 -849 854 -809 -853\n\t\tmu 0 4 4147 4170 4193 4171\n\t\tf 4 -851 855 -818 -855\n\t\tmu 0 4 4170 4192 4210 4193\n\t\tf 4 -852 -788 -824 -856\n\t\tmu 0 4 4192 4209 4219 4210\n\t\tf 4 856 857 858 859\n\t\tmu 0 4 2282 2290 2307 2291\n\t\tf 4 860 861 862 -858\n\t\tmu 0 4 2290 2306 2332 2307\n\t\tf 4 863 864 865 -862\n\t\tmu 0 4 2306 2331 2363 2332\n\t\tf 4 866 867 868 -865\n\t\tmu 0 4 2331 2362 2395 2363\n\t\tf 4 -859 869 870 871\n\t\tmu 0 4 2291 2307 2333 2308\n\t\tf 4 -863 872 873 -870\n\t\tmu 0 4 2307 2332 2364 2333\n\t\tf 4 -866 874 875 -873\n\t\tmu 0 4 2332 2363 2396 2364\n\t\tf 4 -869 876 877 -875\n\t\tmu 0 4 2363 2395 2432 2396\n\t\tf 4 -871 878 879 880\n\t\tmu 0 4 2308 2333 2365 2334\n\t\tf 4 -874 881 882 -879\n\t\tmu 0 4 2333 2364 2397 2365\n\t\tf 4 -876 883 884 -882\n\t\tmu 0 4 2364 2396 2433 2397\n\t\tf 4 -878 885 886 -884\n\t\tmu 0 4 2396 2432 2461 2433\n\t\tf 4 -880 887 888 889\n\t\tmu 0 4 1885 1908 1886 1864\n\t\tf 4 -883 890 891 -888\n\t\tmu 0 4 1908 1926 1909 1886\n\t\tf 4 -885 892 893 -891\n\t\tmu 0 4 1926 1940 1927 1909\n\t\tf 4 -887 894 895 -893\n\t\tmu 0 4 1940 1950 1941 1927\n\t\tf 4 896 897 898 899\n\t\tmu 0 4 4229 4240 4244 4233\n\t\tf 4 900 901 902 -898\n\t\tmu 0 4 4240 4252 4258 4244\n\t\tf 4 903 904 905 -902\n\t\tmu 0 4 4252 4268 4274 4258\n\t\tf 4 906 907 908 -905\n\t\tmu 0 4 1890 1868 1889 1912\n\t\tf 4 -899 909 910 911\n\t\tmu 0 4 4233 4244 4256 4241\n\t\tf 4 -903 912 913 -910\n\t\tmu 0 4 4244 4258 4272 4256\n\t\tf 4 -906 914 915 -913\n\t\tmu 0 4 4258 4274 4284 4272\n\t\tf 4 -909 916 917 -915\n\t\tmu 0 4 1912 1889 1911 1929\n\t\tf 4 -911 918 919 920\n\t\tmu 0 4 4241 4256 4270 4253\n\t\tf 4 -914 921 922 -919\n\t\tmu 0 4 4256 4272 4282 4270\n\t\tf 4 -916 923 924 -922\n\t\tmu 0 4 4272 4284 4290 4282\n\t\tf 4 -918 925 926 -924\n\t\tmu 0 4 1929 1911 1928 1942\n\t\tf 4 -920 927 -868 928\n\t\tmu 0 4 2394 2431 2395 2362\n\t\tf 4 -923 929 -877 -928\n\t\tmu 0 4 2431 2460 2432 2395\n\t\tf 4 -925 930 -886 -930\n\t\tmu 0 4 2460 2481 2461 2432\n\t\tf 4 -927 931 -895 -931\n\t\tmu 0 4 1942 1928 1941 1950\n\t\tf 4 932 933 934 935\n\t\tmu 0 4 1821 1825 1835 1826\n\t\tf 4 936 937 938 -934\n\t\tmu 0 4 1825 1834 1848 1835\n\t\tf 4 939 940 941 -938\n\t\tmu 0 4 1834 1847 1865 1848\n\t\tf 4 942 -889 943 -941\n\t\tmu 0 4 1847 1864 1886 1865\n\t\tf 4 -935 944 945 946\n\t\tmu 0 4 1826 1835 1849 1836\n\t\tf 4 -939 947 948 -945\n\t\tmu 0 4 1835 1848 1866 1849\n\t\tf 4 -942 949 950 -948\n\t\tmu 0 4 1848 1865 1887 1866\n\t\tf 4 -944 -892 951 -950\n\t\tmu 0 4 1865 1886 1909 1887\n\t\tf 4 -946 952 953 954\n\t\tmu 0 4 1836 1849 1867 1850\n\t\tf 4 -949 955 956 -953\n\t\tmu 0 4 1849 1866 1888 1867\n\t\tf 4 -951 957 958 -956\n\t\tmu 0 4 1866 1887 1910 1888\n\t\tf 4 -952 -894 959 -958\n\t\tmu 0 4 1887 1909 1927 1910\n\t\tf 4 -954 960 -908 961\n\t\tmu 0 4 1850 1867 1889 1868\n\t\tf 4 -957 962 -917 -961\n\t\tmu 0 4 1867 1888 1911 1889\n\t\tf 4 -959 963 -926 -963\n\t\tmu 0 4 1888 1910 1928 1911\n\t\tf 4 -960 -896 -932 -964\n\t\tmu 0 4 1910 1927 1941 1928\n\t\tf 4 964 965 966 967\n\t\tmu 0 4 4550 4554 4563 4555\n\t\tf 4 968 969 970 -966\n\t\tmu 0 4 4554 4562 4575 4563\n\t\tf 4 971 972 973 -970\n\t\tmu 0 4 4562 4574 4589 4575\n\t\tf 4 974 975 976 -973\n\t\tmu 0 4 2403 2369 2402 2437\n\t\tf 4 -967 977 978 979\n\t\tmu 0 4 4555 4563 4577 4565\n\t\tf 4 -971 980 981 -978\n\t\tmu 0 4 4563 4575 4591 4577\n\t\tf 4 -974 982 983 -981\n\t\tmu 0 4 4575 4589 4601 4591\n\t\tf 4 -977 984 985 -983\n\t\tmu 0 4 2437 2402 2436 2464\n\t\tf 4 -979 986 987 988\n\t\tmu 0 4 4565 4577 4593 4579\n\t\tf 4 -982 989 990 -987\n\t\tmu 0 4 4577 4591 4603 4593\n\t\tf 4 -984 991 992 -990\n\t\tmu 0 4 4591 4601 4609 4603\n\t\tf 4 -986 993 994 -992\n\t\tmu 0 4 2464 2436 2463 2483\n\t\tf 4 -988 995 996 997\n\t\tmu 0 4 1903 1904 1880 1879\n\t\tf 4 -991 998 999 -996\n\t\tmu 0 4 1904 1923 1905 1880\n\t\tf 4 -993 1000 1001 -999\n\t\tmu 0 4 1923 1938 1924 1905\n\t\tf 4 -995 1002 1003 -1001\n\t\tmu 0 4 1938 1949 1939 1924\n\t\tf 4 1004 1005 1006 1007\n\t\tmu 0 4 2278 2292 2310 2294\n\t\tf 4 1008 1009 1010 -1006\n\t\tmu 0 4 2292 2309 2336 2310\n\t\tf 4 1011 1012 1013 -1010\n\t\tmu 0 4 2309 2335 2366 2336\n\t\tf 4 1014 1015 1016 -1013\n\t\tmu 0 4 2335 2398 2399 2366\n\t\tf 4 -1007 1017 1018 1019\n\t\tmu 0 4 2294 2310 2337 2312\n\t\tf 4 -1011 1020 1021 -1018\n\t\tmu 0 4 2310 2336 2367 2337\n\t\tf 4 -1014 1022 1023 -1021\n\t\tmu 0 4 2336 2366 2400 2367\n\t\tf 4 -1017 1024 1025 -1023\n\t\tmu 0 4 2366 2399 2434 2400\n\t\tf 4 -1019 1026 1027 1028\n\t\tmu 0 4 2312 2337 2368 2339\n\t\tf 4 -1022 1029 1030 -1027\n\t\tmu 0 4 2337 2367 2401 2368\n\t\tf 4 -1024 1031 1032 -1030\n\t\tmu 0 4 2367 2400 2435 2401\n\t\tf 4 -1026 1033 1034 -1032\n\t\tmu 0 4 2400 2434 2462 2435\n\t\tf 4 -1028 1035 -976 1036\n\t\tmu 0 4 2339 2368 2402 2369\n\t\tf 4 -1031 1037 -985 -1036\n\t\tmu 0 4 2368 2401 2436 2402\n\t\tf 4 -1033 1038 -994 -1038\n\t\tmu 0 4 2401 2435 2463 2436\n\t\tf 4 -1035 1039 -1003 -1039\n\t\tmu 0 4 2435 2462 2482 2463\n\t\tf 4 1040 1041 1042 1043\n\t\tmu 0 4 1820 1831 1832 1824\n\t\tf 4 1044 1045 1046 -1042\n\t\tmu 0 4 1831 1843 1844 1832\n\t\tf 4 1047 1048 1049 -1046\n\t\tmu 0 4 1843 1859 1860 1844\n\t\tf 4 1050 -997 1051 -1049\n\t\tmu 0 4 1859 1879 1880 1860\n\t\tf 4 -1043 1052 1053 1054\n\t\tmu 0 4 1824 1832 1845 1833\n\t\tf 4 -1047 1055 1056 -1053\n\t\tmu 0 4 1832 1844 1861 1845\n\t\tf 4 -1050 1057 1058 -1056\n\t\tmu 0 4 1844 1860 1881 1861\n\t\tf 4 -1052 -1000 1059 -1058\n\t\tmu 0 4 1860 1880 1905 1881\n\t\tf 4 -1054 1060 1061 1062\n\t\tmu 0 4 1833 1845 1862 1846\n\t\tf 4 -1057 1063 1064 -1061\n\t\tmu 0 4 1845 1861 1882 1862\n\t\tf 4 -1059 1065 1066 -1064\n\t\tmu 0 4 1861 1881 1906 1882\n\t\tf 4 -1060 -1002 1067 -1066\n\t\tmu 0 4 1881 1905 1924 1906\n\t\tf 4 -1062 1068 -1016 1069\n\t\tmu 0 4 1846 1862 1883 1863\n\t\tf 4 -1065 1070 -1025 -1069\n\t\tmu 0 4 1862 1882 1907 1883\n\t\tf 4 -1067 1071 -1034 -1071\n\t\tmu 0 4 1882 1906 1925 1907\n\t\tf 4 -1068 -1004 -1040 -1072\n\t\tmu 0 4 1906 1924 1939 1925\n\t\tf 4 1072 1073 1074 1075\n\t\tmu 0 4 1421 1425 1435 1426\n\t\tf 4 1076 1077 1078 -1074\n\t\tmu 0 4 1425 1434 1448 1435\n\t\tf 4 1079 1080 1081 -1078\n\t\tmu 0 4 1434 1447 1465 1448\n\t\tf 4 1082 1083 1084 -1081\n\t\tmu 0 4 1447 1464 1486 1465\n\t\tf 4 -1075 1085 1086 1087\n\t\tmu 0 4 1426 1435 1449 1436\n\t\tf 4 -1079 1088 1089 -1086\n\t\tmu 0 4 1435 1448 1466 1449\n\t\tf 4 -1082 1090 1091 -1089\n\t\tmu 0 4 1448 1465 1487 1466\n\t\tf 4 -1085 1092 1093 -1091\n\t\tmu 0 4 1465 1486 1509 1487\n\t\tf 4 -1087 1094 1095 1096\n\t\tmu 0 4 1436 1449 1467 1450\n\t\tf 4 -1090 1097 1098 -1095\n\t\tmu 0 4 1449 1466 1488 1467\n\t\tf 4 -1092 1099 1100 -1098\n\t\tmu 0 4 1466 1487 1510 1488\n\t\tf 4 -1094 1101 1102 -1100\n\t\tmu 0 4 1487 1509 1527 1510\n\t\tf 4 -1096 1103 1104 1105\n\t\tmu 0 4 1450 1467 1489 1468\n\t\tf 4 -1099 1106 1107 -1104\n\t\tmu 0 4 1467 1488 1511 1489\n\t\tf 4 -1101 1108 1109 -1107\n\t\tmu 0 4 1488 1510 1528 1511\n\t\tf 4 -1103 1110 1111 -1109\n\t\tmu 0 4 1510 1527 1541 1528\n\t\tf 4 1112 1113 1114 1115\n\t\tmu 0 4 2283 2295 2314 2296\n\t\tf 4 1116 1117 1118 -1114\n\t\tmu 0 4 2295 2313 2341 2314\n\t\tf 4 1119 1120 1121 -1118\n\t\tmu 0 4 2313 2340 2371 2341\n\t\tf 4 1122 1123 1124 -1121\n\t\tmu 0 4 2340 2370 2405 2371\n\t\tf 4 -1115 1125 1126 1127\n\t\tmu 0 4 2296 2314 2342 2315\n\t\tf 4 -1119 1128 1129 -1126\n\t\tmu 0 4 2314 2341 2372 2342\n\t\tf 4 -1122 1130 1131 -1129\n\t\tmu 0 4 2341 2371 2406 2372\n\t\tf 4 -1125 1132 1133 -1131\n\t\tmu 0 4 2371 2405 2439 2406\n\t\tf 4 -1127 1134 1135 1136\n\t\tmu 0 4 2315 2342 2373 2343\n\t\tf 4 -1130 1137 1138 -1135\n\t\tmu 0 4 2342 2372 2407 2373\n\t\tf 4 -1132 1139 1140 -1138\n\t\tmu 0 4 2372 2406 2440 2407\n\t\tf 4 -1134 1141 1142 -1140\n\t\tmu 0 4 2406 2439 2466 2440\n\t\tf 4 -1136 1143 -1084 1144\n\t\tmu 0 4 1485 1508 1486 1464\n\t\tf 4 -1139 1145 -1093 -1144\n\t\tmu 0 4 1508 1526 1509 1486\n\t\tf 4 -1141 1146 -1102 -1146\n\t\tmu 0 4 1526 1540 1527 1509\n\t\tf 4 -1143 1147 -1111 -1147\n\t\tmu 0 4 1540 1550 1541 1527\n\t\tf 4 1148 1149 1150 1151\n\t\tmu 0 4 4549 4560 4564 4553\n\t\tf 4 1152 1153 1154 -1150\n\t\tmu 0 4 4560 4572 4578 4564\n\t\tf 4 1155 1156 1157 -1154\n\t\tmu 0 4 4572 4588 4594 4578\n\t\tf 4 1158 -1105 1159 -1157\n\t\tmu 0 4 1490 1468 1489 1512\n\t\tf 4 -1151 1160 1161 1162\n\t\tmu 0 4 4553 4564 4576 4561\n\t\tf 4 -1155 1163 1164 -1161\n\t\tmu 0 4 4564 4578 4592 4576\n\t\tf 4 -1158 1165 1166 -1164\n\t\tmu 0 4 4578 4594 4604 4592\n\t\tf 4 -1160 -1108 1167 -1166\n\t\tmu 0 4 1512 1489 1511 1529\n\t\tf 4 -1162 1168 1169 1170\n\t\tmu 0 4 4561 4576 4590 4573\n\t\tf 4 -1165 1171 1172 -1169\n\t\tmu 0 4 4576 4592 4602 4590\n\t\tf 4 -1167 1173 1174 -1172\n\t\tmu 0 4 4592 4604 4610 4602\n\t\tf 4 -1168 -1110 1175 -1174\n\t\tmu 0 4 1529 1511 1528 1542\n\t\tf 4 -1170 1176 -1124 1177\n\t\tmu 0 4 2404 2438 2405 2370\n\t\tf 4 -1173 1178 -1133 -1177\n\t\tmu 0 4 2438 2465 2439 2405\n\t\tf 4 -1175 1179 -1142 -1179\n\t\tmu 0 4 2465 2484 2466 2439\n\t\tf 4 -1176 -1112 -1148 -1180\n\t\tmu 0 4 1542 1528 1541 1550\n\t\tf 4 1180 1181 1182 1183\n\t\tmu 0 4 1420 1431 1432 1424\n\t\tf 4 1184 1185 1186 -1182\n\t\tmu 0 4 1431 1443 1444 1432\n\t\tf 4 1187 1188 1189 -1186\n\t\tmu 0 4 1443 1459 1460 1444\n\t\tf 4 1190 1191 1192 -1189\n\t\tmu 0 4 1459 1479 1480 1460\n\t\tf 4 -1183 1193 1194 1195\n\t\tmu 0 4 1424 1432 1445 1433\n\t\tf 4 -1187 1196 1197 -1194\n\t\tmu 0 4 1432 1444 1461 1445\n\t\tf 4 -1190 1198 1199 -1197\n\t\tmu 0 4 1444 1460 1481 1461\n\t\tf 4 -1193 1200 1201 -1199\n\t\tmu 0 4 1460 1480 1505 1481\n\t\tf 4 -1195 1202 1203 1204\n\t\tmu 0 4 1433 1445 1462 1446\n\t\tf 4 -1198 1205 1206 -1203\n\t\tmu 0 4 1445 1461 1482 1462\n\t\tf 4 -1200 1207 1208 -1206\n\t\tmu 0 4 1461 1481 1506 1482\n\t\tf 4 -1202 1209 1210 -1208\n\t\tmu 0 4 1481 1505 1524 1506\n\t\tf 4 -1204 1211 1212 1213\n\t\tmu 0 4 1446 1462 1483 1463\n\t\tf 4 -1207 1214 1215 -1212\n\t\tmu 0 4 1462 1482 1507 1483\n\t\tf 4 -1209 1216 1217 -1215\n\t\tmu 0 4 1482 1506 1525 1507\n\t\tf 4 -1211 1218 1219 -1217\n\t\tmu 0 4 1506 1524 1539 1525\n\t\tf 4 1220 1221 1222 1223\n\t\tmu 0 4 4614 4618 4627 4619\n\t\tf 4 1224 1225 1226 -1222\n\t\tmu 0 4 4618 4626 4639 4627\n\t\tf 4 1227 1228 1229 -1226\n\t\tmu 0 4 4626 4638 4653 4639\n\t\tf 4 1230 1231 1232 -1229\n\t\tmu 0 4 2444 2413 2412 2445\n\t\tf 4 -1223 1233 1234 1235\n\t\tmu 0 4 4619 4627 4641 4629\n\t\tf 4 -1227 1236 1237 -1234\n\t\tmu 0 4 4627 4639 4655 4641\n\t\tf 4 -1230 1238 1239 -1237\n\t\tmu 0 4 4639 4653 4665 4655\n\t\tf 4 -1233 1240 1241 -1239\n\t\tmu 0 4 2445 2412 2443 2469\n\t\tf 4 -1235 1242 1243 1244\n\t\tmu 0 4 4629 4641 4657 4643\n\t\tf 4 -1238 1245 1246 -1243\n\t\tmu 0 4 4641 4655 4667 4657\n\t\tf 4 -1240 1247 1248 -1246\n\t\tmu 0 4 4655 4665 4673 4667\n\t\tf 4 -1242 1249 1250 -1248\n\t\tmu 0 4 2469 2443 2468 2486\n\t\tf 4 -1244 1251 -1192 1252\n\t\tmu 0 4 1503 1504 1480 1479\n\t\tf 4 -1247 1253 -1201 -1252\n\t\tmu 0 4 1504 1523 1505 1480\n\t\tf 4 -1249 1254 -1210 -1254\n\t\tmu 0 4 1523 1538 1524 1505\n\t\tf 4 -1251 1255 -1219 -1255\n\t\tmu 0 4 1538 1549 1539 1524\n\t\tf 4 1256 1257 1258 1259\n\t\tmu 0 4 2284 2297 2317 2318\n\t\tf 4 1260 1261 1262 -1258\n\t\tmu 0 4 2297 2316 2345 2317\n\t\tf 4 1263 1264 1265 -1262\n\t\tmu 0 4 2316 2344 2374 2345\n\t\tf 4 1266 -1213 1267 -1265\n\t\tmu 0 4 2344 2408 2409 2374\n\t\tf 4 -1259 1268 1269 1270\n\t\tmu 0 4 2318 2317 2346 2347\n\t\tf 4 -1263 1271 1272 -1269\n\t\tmu 0 4 2317 2345 2375 2346\n\t\tf 4 -1266 1273 1274 -1272\n\t\tmu 0 4 2345 2374 2410 2375\n\t\tf 4 -1268 -1216 1275 -1274\n\t\tmu 0 4 2374 2409 2441 2410\n\t\tf 4 -1270 1276 1277 1278\n\t\tmu 0 4 2347 2346 2376 2377\n\t\tf 4 -1273 1279 1280 -1277\n\t\tmu 0 4 2346 2375 2411 2376\n\t\tf 4 -1275 1281 1282 -1280\n\t\tmu 0 4 2375 2410 2442 2411\n\t\tf 4 -1276 -1218 1283 -1282\n\t\tmu 0 4 2410 2441 2467 2442;\n\tsetAttr \".fc[500:999]\"\n\t\tf 4 -1278 1284 -1232 1285\n\t\tmu 0 4 2377 2376 2412 2413\n\t\tf 4 -1281 1286 -1241 -1285\n\t\tmu 0 4 2376 2411 2443 2412\n\t\tf 4 -1283 1287 -1250 -1287\n\t\tmu 0 4 2411 2442 2468 2443\n\t\tf 4 -1284 -1220 -1256 -1288\n\t\tmu 0 4 2442 2467 2485 2468\n\t\tf 4 1288 1289 1290 1291\n\t\tmu 0 4 2319 2348 2379 2349\n\t\tf 4 1292 1293 1294 -1290\n\t\tmu 0 4 2348 2378 2415 2379\n\t\tf 4 1295 1296 1297 -1294\n\t\tmu 0 4 2378 2414 2447 2415\n\t\tf 4 1298 1299 1300 -1297\n\t\tmu 0 4 2414 2446 2471 2447\n\t\tf 4 -1291 1301 1302 1303\n\t\tmu 0 4 2349 2379 2416 2380\n\t\tf 4 -1295 1304 1305 -1302\n\t\tmu 0 4 2379 2415 2448 2416\n\t\tf 4 -1298 1306 1307 -1305\n\t\tmu 0 4 2415 2447 2472 2448\n\t\tf 4 -1301 1308 1309 -1307\n\t\tmu 0 4 2447 2471 2488 2472\n\t\tf 4 -1303 1310 1311 1312\n\t\tmu 0 4 2380 2416 2449 2417\n\t\tf 4 -1306 1313 1314 -1311\n\t\tmu 0 4 2416 2448 2473 2449\n\t\tf 4 -1308 1315 1316 -1314\n\t\tmu 0 4 2448 2472 2489 2473\n\t\tf 4 -1310 1317 1318 -1316\n\t\tmu 0 4 2472 2488 2494 2489\n\t\tf 4 -1312 1319 1320 1321\n\t\tmu 0 4 540 564 541 520\n\t\tf 4 -1315 1322 1323 -1320\n\t\tmu 0 4 564 582 565 541\n\t\tf 4 -1317 1324 1325 -1323\n\t\tmu 0 4 582 596 583 565\n\t\tf 4 -1319 1326 1327 -1325\n\t\tmu 0 4 596 606 597 583\n\t\tf 4 1328 1329 1330 1331\n\t\tmu 0 4 4613 4624 4628 4617\n\t\tf 4 1332 1333 1334 -1330\n\t\tmu 0 4 4624 4636 4642 4628\n\t\tf 4 1335 1336 1337 -1334\n\t\tmu 0 4 4636 4652 4658 4642\n\t\tf 4 1338 1339 1340 -1337\n\t\tmu 0 4 545 524 544 568\n\t\tf 4 -1331 1341 1342 1343\n\t\tmu 0 4 4617 4628 4640 4625\n\t\tf 4 -1335 1344 1345 -1342\n\t\tmu 0 4 4628 4642 4656 4640\n\t\tf 4 -1338 1346 1347 -1345\n\t\tmu 0 4 4642 4658 4668 4656\n\t\tf 4 -1341 1348 1349 -1347\n\t\tmu 0 4 568 544 567 585\n\t\tf 4 -1343 1350 1351 1352\n\t\tmu 0 4 4625 4640 4654 4637\n\t\tf 4 -1346 1353 1354 -1351\n\t\tmu 0 4 4640 4656 4666 4654\n\t\tf 4 -1348 1355 1356 -1354\n\t\tmu 0 4 4656 4668 4674 4666\n\t\tf 4 -1350 1357 1358 -1356\n\t\tmu 0 4 585 567 584 598\n\t\tf 4 -1352 1359 -1300 1360\n\t\tmu 0 4 2470 2487 2471 2446\n\t\tf 4 -1355 1361 -1309 -1360\n\t\tmu 0 4 2487 2493 2488 2471\n\t\tf 4 -1357 1362 -1318 -1362\n\t\tmu 0 4 2493 2496 2494 2488\n\t\tf 4 -1359 1363 -1327 -1363\n\t\tmu 0 4 598 584 597 606\n\t\tf 4 1364 1365 1366 1367\n\t\tmu 0 4 477 481 491 482\n\t\tf 4 1368 1369 1370 -1366\n\t\tmu 0 4 481 490 504 491\n\t\tf 4 1371 1372 1373 -1370\n\t\tmu 0 4 490 503 521 504\n\t\tf 4 1374 -1321 1375 -1373\n\t\tmu 0 4 503 520 541 521\n\t\tf 4 -1367 1376 1377 1378\n\t\tmu 0 4 482 491 505 492\n\t\tf 4 -1371 1379 1380 -1377\n\t\tmu 0 4 491 504 522 505\n\t\tf 4 -1374 1381 1382 -1380\n\t\tmu 0 4 504 521 542 522\n\t\tf 4 -1376 -1324 1383 -1382\n\t\tmu 0 4 521 541 565 542\n\t\tf 4 -1378 1384 1385 1386\n\t\tmu 0 4 492 505 523 506\n\t\tf 4 -1381 1387 1388 -1385\n\t\tmu 0 4 505 522 543 523\n\t\tf 4 -1383 1389 1390 -1388\n\t\tmu 0 4 522 542 566 543\n\t\tf 4 -1384 -1326 1391 -1390\n\t\tmu 0 4 542 565 583 566\n\t\tf 4 -1386 1392 -1340 1393\n\t\tmu 0 4 506 523 544 524\n\t\tf 4 -1389 1394 -1349 -1393\n\t\tmu 0 4 523 543 567 544\n\t\tf 4 -1391 1395 -1358 -1395\n\t\tmu 0 4 543 566 584 567\n\t\tf 4 -1392 -1328 -1364 -1396\n\t\tmu 0 4 566 583 597 584\n\t\tf 4 1396 1397 1398 1399\n\t\tmu 0 4 2951 2955 2965 2956\n\t\tf 4 1400 1401 1402 -1398\n\t\tmu 0 4 2955 2964 2978 2965\n\t\tf 4 1403 1404 1405 -1402\n\t\tmu 0 4 2964 2977 2995 2978\n\t\tf 4 1406 1407 1408 -1405\n\t\tmu 0 4 3998 3970 3969 3999\n\t\tf 4 -1399 1409 1410 1411\n\t\tmu 0 4 2956 2965 2979 2966\n\t\tf 4 -1403 1412 1413 -1410\n\t\tmu 0 4 2965 2978 2996 2979\n\t\tf 4 -1406 1414 1415 -1413\n\t\tmu 0 4 2978 2995 3011 2996\n\t\tf 4 -1409 1416 1417 -1415\n\t\tmu 0 4 2995 3024 3025 3011\n\t\tf 4 -1411 1418 1419 1420\n\t\tmu 0 4 2966 2979 2997 2980\n\t\tf 4 -1414 1421 1422 -1419\n\t\tmu 0 4 2979 2996 3012 2997\n\t\tf 4 -1416 1423 1424 -1422\n\t\tmu 0 4 2996 3011 3026 3012\n\t\tf 4 -1418 1425 1426 -1424\n\t\tmu 0 4 3011 3025 3035 3026\n\t\tf 4 -1420 1427 1428 1429\n\t\tmu 0 4 1977 1985 1986 1976\n\t\tf 4 -1423 1430 1431 -1428\n\t\tmu 0 4 1985 1995 1996 1986\n\t\tf 4 -1425 1432 1433 -1431\n\t\tmu 0 4 1995 2006 2007 1996\n\t\tf 4 -1427 1434 1435 -1433\n\t\tmu 0 4 2006 2018 2019 2007\n\t\tf 4 1436 1437 1438 1439\n\t\tmu 0 4 3861 3897 3898 3875\n\t\tf 4 1440 1441 1442 -1438\n\t\tmu 0 4 3897 3920 3921 3898\n\t\tf 4 1443 1444 1445 -1442\n\t\tmu 0 4 3920 3946 3947 3921\n\t\tf 4 1446 1447 1448 -1445\n\t\tmu 0 4 3946 3973 3974 3947\n\t\tf 4 -1439 1449 1450 1451\n\t\tmu 0 4 3875 3898 3918 3894\n\t\tf 4 -1443 1452 1453 -1450\n\t\tmu 0 4 3898 3921 3944 3918\n\t\tf 4 -1446 1454 1455 -1453\n\t\tmu 0 4 3921 3947 3972 3944\n\t\tf 4 -1449 1456 1457 -1455\n\t\tmu 0 4 3947 3974 4000 3972\n\t\tf 4 -1451 1458 1459 1460\n\t\tmu 0 4 3894 3918 3942 3915\n\t\tf 4 -1454 1461 1462 -1459\n\t\tmu 0 4 3918 3944 3968 3942\n\t\tf 4 -1456 1463 1464 -1462\n\t\tmu 0 4 3944 3972 3996 3968\n\t\tf 4 -1458 1465 1466 -1464\n\t\tmu 0 4 3972 4000 4024 3996\n\t\tf 4 -1460 1467 -1408 1468\n\t\tmu 0 4 3915 3942 3969 3970\n\t\tf 4 -1463 1469 -1417 -1468\n\t\tmu 0 4 3942 3968 3997 3969\n\t\tf 4 -1465 1470 -1426 -1470\n\t\tmu 0 4 3968 3996 4025 3997\n\t\tf 4 -1467 1471 -1435 -1471\n\t\tmu 0 4 3996 4024 4046 4025\n\t\tf 4 1472 1473 1474 1475\n\t\tmu 0 4 2014 2003 2015 2027\n\t\tf 4 1476 1477 1478 -1474\n\t\tmu 0 4 2003 1993 2004 2015\n\t\tf 4 1479 1480 1481 -1478\n\t\tmu 0 4 1993 1984 1994 2004\n\t\tf 4 1482 -1429 1483 -1481\n\t\tmu 0 4 1984 1976 1986 1994\n\t\tf 4 -1475 1484 1485 1486\n\t\tmu 0 4 2027 2015 2028 2038\n\t\tf 4 -1479 1487 1488 -1485\n\t\tmu 0 4 2015 2004 2016 2028\n\t\tf 4 -1482 1489 1490 -1488\n\t\tmu 0 4 2004 1994 2005 2016\n\t\tf 4 -1484 -1432 1491 -1490\n\t\tmu 0 4 1994 1986 1996 2005\n\t\tf 4 -1486 1492 1493 1494\n\t\tmu 0 4 2038 2028 2039 2048\n\t\tf 4 -1489 1495 1496 -1493\n\t\tmu 0 4 2028 2016 2029 2039\n\t\tf 4 -1491 1497 1498 -1496\n\t\tmu 0 4 2016 2005 2017 2029\n\t\tf 4 -1492 -1434 1499 -1498\n\t\tmu 0 4 2005 1996 2007 2017\n\t\tf 4 -1494 1500 -1448 1501\n\t\tmu 0 4 2048 2039 2049 2057\n\t\tf 4 -1497 1502 -1457 -1501\n\t\tmu 0 4 2039 2029 2040 2049\n\t\tf 4 -1499 1503 -1466 -1503\n\t\tmu 0 4 2029 2017 2030 2040\n\t\tf 4 -1500 -1436 -1472 -1504\n\t\tmu 0 4 2017 2007 2019 2030\n\t\tf 4 1504 1505 1506 1507\n\t\tmu 0 4 3862 3876 3896 3877\n\t\tf 4 1508 1509 1510 -1506\n\t\tmu 0 4 3876 3895 3917 3896\n\t\tf 4 1511 1512 1513 -1510\n\t\tmu 0 4 3895 3916 3941 3917\n\t\tf 4 1514 1515 1516 -1513\n\t\tmu 0 4 3009 2993 3008 3023\n\t\tf 4 -1507 1517 1518 1519\n\t\tmu 0 4 3877 3896 3919 3899\n\t\tf 4 -1511 1520 1521 -1518\n\t\tmu 0 4 3896 3917 3943 3919\n\t\tf 4 -1514 1522 1523 -1521\n\t\tmu 0 4 3917 3941 3967 3943\n\t\tf 4 -1517 1524 1525 -1523\n\t\tmu 0 4 3023 3008 3022 3034\n\t\tf 4 -1519 1526 1527 1528\n\t\tmu 0 4 3899 3919 3945 3922\n\t\tf 4 -1522 1529 1530 -1527\n\t\tmu 0 4 3919 3943 3971 3945\n\t\tf 4 -1524 1531 1532 -1530\n\t\tmu 0 4 3943 3967 3995 3971\n\t\tf 4 -1526 1533 1534 -1532\n\t\tmu 0 4 3034 3022 3033 3040\n\t\tf 4 -1528 1535 1536 1537\n\t\tmu 0 4 242 311 243 178\n\t\tf 4 -1531 1538 1539 -1536\n\t\tmu 0 4 311 371 312 243\n\t\tf 4 -1533 1540 1541 -1539\n\t\tmu 0 4 371 419 372 312\n\t\tf 4 -1535 1542 1543 -1541\n\t\tmu 0 4 419 450 420 372\n\t\tf 4 1544 1545 1546 1547\n\t\tmu 0 4 2950 2961 2962 2954\n\t\tf 4 1548 1549 1550 -1546\n\t\tmu 0 4 2961 2973 2974 2962\n\t\tf 4 1551 1552 1553 -1550\n\t\tmu 0 4 2973 2989 2990 2974\n\t\tf 4 1554 1555 1556 -1553\n\t\tmu 0 4 247 182 246 315\n\t\tf 4 -1547 1557 1558 1559\n\t\tmu 0 4 2954 2962 2975 2963\n\t\tf 4 -1551 1560 1561 -1558\n\t\tmu 0 4 2962 2974 2991 2975\n\t\tf 4 -1554 1562 1563 -1561\n\t\tmu 0 4 2974 2990 3006 2991\n\t\tf 4 -1557 1564 1565 -1563\n\t\tmu 0 4 315 246 314 374\n\t\tf 4 -1559 1566 1567 1568\n\t\tmu 0 4 2963 2975 2992 2976\n\t\tf 4 -1562 1569 1570 -1567\n\t\tmu 0 4 2975 2991 3007 2992\n\t\tf 4 -1564 1571 1572 -1570\n\t\tmu 0 4 2991 3006 3021 3007\n\t\tf 4 -1566 1573 1574 -1572\n\t\tmu 0 4 374 314 373 421\n\t\tf 4 -1568 1575 -1516 1576\n\t\tmu 0 4 2976 2992 3008 2993\n\t\tf 4 -1571 1577 -1525 -1576\n\t\tmu 0 4 2992 3007 3022 3008\n\t\tf 4 -1573 1578 -1534 -1578\n\t\tmu 0 4 3007 3021 3033 3022\n\t\tf 4 -1575 1579 -1543 -1579\n\t\tmu 0 4 421 373 420 450\n\t\tf 4 1580 1581 1582 1583\n\t\tmu 0 4 9 29 67 30\n\t\tf 4 1584 1585 1586 -1582\n\t\tmu 0 4 29 66 119 67\n\t\tf 4 1587 1588 1589 -1586\n\t\tmu 0 4 66 118 179 119\n\t\tf 4 1590 -1537 1591 -1589\n\t\tmu 0 4 118 178 243 179\n\t\tf 4 -1583 1592 1593 1594\n\t\tmu 0 4 30 67 120 68\n\t\tf 4 -1587 1595 1596 -1593\n\t\tmu 0 4 67 119 180 120\n\t\tf 4 -1590 1597 1598 -1596\n\t\tmu 0 4 119 179 244 180\n\t\tf 4 -1592 -1540 1599 -1598\n\t\tmu 0 4 179 243 312 244\n\t\tf 4 -1594 1600 1601 1602\n\t\tmu 0 4 68 120 181 121\n\t\tf 4 -1597 1603 1604 -1601\n\t\tmu 0 4 120 180 245 181\n\t\tf 4 -1599 1605 1606 -1604\n\t\tmu 0 4 180 244 313 245\n\t\tf 4 -1600 -1542 1607 -1606\n\t\tmu 0 4 244 312 372 313\n\t\tf 4 -1602 1608 -1556 1609\n\t\tmu 0 4 121 181 246 182\n\t\tf 4 -1605 1610 -1565 -1609\n\t\tmu 0 4 181 245 314 246\n\t\tf 4 -1607 1611 -1574 -1611\n\t\tmu 0 4 245 313 373 314\n\t\tf 4 -1608 -1544 -1580 -1612\n\t\tmu 0 4 313 372 420 373\n\t\tf 4 1612 1613 1614 1615\n\t\tmu 0 4 479 485 497 486\n\t\tf 4 1616 1617 1618 -1614\n\t\tmu 0 4 485 496 512 497\n\t\tf 4 1619 1620 1621 -1618\n\t\tmu 0 4 496 511 531 512\n\t\tf 4 1622 1623 1624 -1621\n\t\tmu 0 4 511 530 553 531\n\t\tf 4 -1615 1625 1626 1627\n\t\tmu 0 4 486 497 513 498\n\t\tf 4 -1619 1628 1629 -1626\n\t\tmu 0 4 497 512 532 513\n\t\tf 4 -1622 1630 1631 -1629\n\t\tmu 0 4 512 531 554 532\n\t\tf 4 -1625 1632 1633 -1631\n\t\tmu 0 4 531 553 575 554\n\t\tf 4 -1627 1634 1635 1636\n\t\tmu 0 4 498 513 533 514\n\t\tf 4 -1630 1637 1638 -1635\n\t\tmu 0 4 513 532 555 533\n\t\tf 4 -1632 1639 1640 -1638\n\t\tmu 0 4 532 554 576 555\n\t\tf 4 -1634 1641 1642 -1640\n\t\tmu 0 4 554 575 591 576\n\t\tf 4 -1636 1643 1644 1645\n\t\tmu 0 4 514 533 556 534\n\t\tf 4 -1639 1646 1647 -1644\n\t\tmu 0 4 533 555 577 556\n\t\tf 4 -1641 1648 1649 -1647\n\t\tmu 0 4 555 576 592 577\n\t\tf 4 -1643 1650 1651 -1649\n\t\tmu 0 4 576 591 603 592\n\t\tf 4 1652 1653 1654 1655\n\t\tmu 0 4 2665 2671 2683 2672\n\t\tf 4 1656 1657 1658 -1654\n\t\tmu 0 4 2671 2682 2698 2683\n\t\tf 4 1659 1660 1661 -1658\n\t\tmu 0 4 2682 2697 2715 2698\n\t\tf 4 1662 1663 1664 -1661\n\t\tmu 0 4 2697 2714 2731 2715\n\t\tf 4 -1655 1665 1666 1667\n\t\tmu 0 4 2672 2683 2699 2684\n\t\tf 4 -1659 1668 1669 -1666\n\t\tmu 0 4 2683 2698 2716 2699\n\t\tf 4 -1662 1670 1671 -1669\n\t\tmu 0 4 2698 2715 2732 2716\n\t\tf 4 -1665 1672 1673 -1671\n\t\tmu 0 4 2715 2731 2744 2732\n\t\tf 4 -1667 1674 1675 1676\n\t\tmu 0 4 2684 2699 2717 2700\n\t\tf 4 -1670 1677 1678 -1675\n\t\tmu 0 4 2699 2716 2733 2717\n\t\tf 4 -1672 1679 1680 -1678\n\t\tmu 0 4 2716 2732 2745 2733\n\t\tf 4 -1674 1681 1682 -1680\n\t\tmu 0 4 2732 2744 2753 2745\n\t\tf 4 -1676 1683 -1624 1684\n\t\tmu 0 4 552 574 553 530\n\t\tf 4 -1679 1685 -1633 -1684\n\t\tmu 0 4 574 590 575 553\n\t\tf 4 -1681 1686 -1642 -1686\n\t\tmu 0 4 590 602 591 575\n\t\tf 4 -1683 1687 -1651 -1687\n\t\tmu 0 4 602 609 603 591\n\t\tf 4 1688 1689 1690 1691\n\t\tmu 0 4 4089 4094 4106 4095\n\t\tf 4 1692 1693 1694 -1690\n\t\tmu 0 4 4094 4105 4124 4106\n\t\tf 4 1695 1696 1697 -1694\n\t\tmu 0 4 4105 4123 4146 4124\n\t\tf 4 1698 -1645 1699 -1697\n\t\tmu 0 4 557 534 556 578\n\t\tf 4 -1691 1700 1701 1702\n\t\tmu 0 4 4095 4106 4126 4109\n\t\tf 4 -1695 1703 1704 -1701\n\t\tmu 0 4 4106 4124 4148 4126\n\t\tf 4 -1698 1705 1706 -1704\n\t\tmu 0 4 4124 4146 4169 4148\n\t\tf 4 -1700 -1648 1707 -1706\n\t\tmu 0 4 578 556 577 593\n\t\tf 4 -1702 1708 1709 1710\n\t\tmu 0 4 4109 4126 4150 4129\n\t\tf 4 -1705 1711 1712 -1709\n\t\tmu 0 4 4126 4148 4173 4150\n\t\tf 4 -1707 1713 1714 -1712\n\t\tmu 0 4 4148 4169 4191 4173\n\t\tf 4 -1708 -1650 1715 -1714\n\t\tmu 0 4 593 577 592 604\n\t\tf 4 -1710 1716 -1664 1717\n\t\tmu 0 4 2730 2743 2731 2714\n\t\tf 4 -1713 1718 -1673 -1717\n\t\tmu 0 4 2743 2752 2744 2731\n\t\tf 4 -1715 1719 -1682 -1719\n\t\tmu 0 4 2752 2757 2753 2744\n\t\tf 4 -1716 -1652 -1688 -1720\n\t\tmu 0 4 604 592 603 609\n\t\tf 4 1720 1721 1722 1723\n\t\tmu 0 4 1042 1060 1092 1061\n\t\tf 4 1724 1725 1726 -1722\n\t\tmu 0 4 1060 1091 1133 1092\n\t\tf 4 1727 1728 1729 -1726\n\t\tmu 0 4 1091 1132 1181 1133\n\t\tf 4 1730 1731 1732 -1729\n\t\tmu 0 4 1132 1180 1235 1181\n\t\tf 4 -1723 1733 1734 1735\n\t\tmu 0 4 1061 1092 1134 1093\n\t\tf 4 -1727 1736 1737 -1734\n\t\tmu 0 4 1092 1133 1182 1134\n\t\tf 4 -1730 1738 1739 -1737\n\t\tmu 0 4 1133 1181 1236 1182\n\t\tf 4 -1733 1740 1741 -1739\n\t\tmu 0 4 1181 1235 1294 1236\n\t\tf 4 -1735 1742 1743 1744\n\t\tmu 0 4 1093 1134 1183 1135\n\t\tf 4 -1738 1745 1746 -1743\n\t\tmu 0 4 1134 1182 1237 1183\n\t\tf 4 -1740 1747 1748 -1746\n\t\tmu 0 4 1182 1236 1295 1237\n\t\tf 4 -1742 1749 1750 -1748\n\t\tmu 0 4 1236 1294 1343 1295\n\t\tf 4 -1744 1751 1752 1753\n\t\tmu 0 4 1135 1183 1238 1184\n\t\tf 4 -1747 1754 1755 -1752\n\t\tmu 0 4 1183 1237 1296 1238\n\t\tf 4 -1749 1756 1757 -1755\n\t\tmu 0 4 1237 1295 1344 1296\n\t\tf 4 -1751 1758 1759 -1757\n\t\tmu 0 4 1295 1343 1381 1344\n\t\tf 4 1760 1761 1762 1763\n\t\tmu 0 4 4090 4096 4111 4097\n\t\tf 4 1764 1765 1766 -1762\n\t\tmu 0 4 4096 4110 4131 4111\n\t\tf 4 1767 1768 1769 -1766\n\t\tmu 0 4 4110 4130 4153 4131\n\t\tf 4 1770 1771 1772 -1769\n\t\tmu 0 4 2729 2713 2728 2742\n\t\tf 4 -1763 1773 1774 1775\n\t\tmu 0 4 4097 4111 4132 4112\n\t\tf 4 -1767 1776 1777 -1774\n\t\tmu 0 4 4111 4131 4154 4132\n\t\tf 4 -1770 1778 1779 -1777\n\t\tmu 0 4 4131 4153 4177 4154\n\t\tf 4 -1773 1780 1781 -1779\n\t\tmu 0 4 2742 2728 2741 2751\n\t\tf 4 -1775 1782 1783 1784\n\t\tmu 0 4 4112 4132 4155 4133\n\t\tf 4 -1778 1785 1786 -1783\n\t\tmu 0 4 4132 4154 4178 4155\n\t\tf 4 -1780 1787 1788 -1786\n\t\tmu 0 4 4154 4177 4197 4178\n\t\tf 4 -1782 1789 1790 -1788\n\t\tmu 0 4 2751 2741 2750 2756\n\t\tf 4 -1784 1791 -1732 1792\n\t\tmu 0 4 1234 1293 1235 1180\n\t\tf 4 -1787 1793 -1741 -1792\n\t\tmu 0 4 1293 1342 1294 1235\n\t\tf 4 -1789 1794 -1750 -1794\n\t\tmu 0 4 1342 1380 1343 1294\n\t\tf 4 -1791 1795 -1759 -1795\n\t\tmu 0 4 1380 1408 1381 1343\n\t\tf 4 1796 1797 1798 1799\n\t\tmu 0 4 2664 2669 2680 2670\n\t\tf 4 1800 1801 1802 -1798\n\t\tmu 0 4 2669 2679 2694 2680\n\t\tf 4 1803 1804 1805 -1802\n\t\tmu 0 4 2679 2693 2710 2694\n\t\tf 4 1806 -1753 1807 -1805\n\t\tmu 0 4 1239 1184 1238 1297\n\t\tf 4 -1799 1808 1809 1810\n\t\tmu 0 4 2670 2680 2695 2681\n\t\tf 4 -1803 1811 1812 -1809\n\t\tmu 0 4 2680 2694 2711 2695\n\t\tf 4 -1806 1813 1814 -1812\n\t\tmu 0 4 2694 2710 2726 2711\n\t\tf 4 -1808 -1756 1815 -1814\n\t\tmu 0 4 1297 1238 1296 1345\n\t\tf 4 -1810 1816 1817 1818\n\t\tmu 0 4 2681 2695 2712 2696\n\t\tf 4 -1813 1819 1820 -1817\n\t\tmu 0 4 2695 2711 2727 2712\n\t\tf 4 -1815 1821 1822 -1820\n\t\tmu 0 4 2711 2726 2740 2727\n\t\tf 4 -1816 -1758 1823 -1822\n\t\tmu 0 4 1345 1296 1344 1382\n\t\tf 4 -1818 1824 -1772 1825\n\t\tmu 0 4 2696 2712 2728 2713\n\t\tf 4 -1821 1826 -1781 -1825\n\t\tmu 0 4 2712 2727 2741 2728\n\t\tf 4 -1823 1827 -1790 -1827\n\t\tmu 0 4 2727 2740 2750 2741\n\t\tf 4 -1824 -1760 -1796 -1828\n\t\tmu 0 4 1382 1344 1381 1408\n\t\tf 4 1828 1829 1830 1831\n\t\tmu 0 4 4616 4622 4634 4623\n\t\tf 4 1832 1833 1834 -1830\n\t\tmu 0 4 4622 4633 4649 4634\n\t\tf 4 1835 1836 1837 -1834\n\t\tmu 0 4 4633 4648 4662 4649\n\t\tf 4 1838 1839 1840 -1837\n\t\tmu 0 4 2825 2809 2824 2838\n\t\tf 4 -1831 1841 1842 1843\n\t\tmu 0 4 4623 4634 4650 4635\n\t\tf 4 -1835 1844 1845 -1842\n\t\tmu 0 4 4634 4649 4663 4650\n\t\tf 4 -1838 1846 1847 -1845\n\t\tmu 0 4 4649 4662 4671 4663\n\t\tf 4 -1841 1848 1849 -1847\n\t\tmu 0 4 2838 2824 2837 2847\n\t\tf 4 -1843 1850 1851 1852\n\t\tmu 0 4 4635 4650 4664 4651\n\t\tf 4 -1846 1853 1854 -1851\n\t\tmu 0 4 4650 4663 4672 4664\n\t\tf 4 -1848 1855 1856 -1854\n\t\tmu 0 4 4663 4671 4676 4672\n\t\tf 4 -1850 1857 1858 -1856\n\t\tmu 0 4 2847 2837 2846 2852\n\t\tf 4 -1852 1859 1860 1861\n\t\tmu 0 4 546 569 547 525\n\t\tf 4 -1855 1862 1863 -1860\n\t\tmu 0 4 569 586 570 547\n\t\tf 4 -1857 1864 1865 -1863\n\t\tmu 0 4 586 599 587 570\n\t\tf 4 -1859 1866 1867 -1865\n\t\tmu 0 4 599 607 600 587\n\t\tf 4 1868 1869 1870 1871\n\t\tmu 0 4 2760 2765 2776 2766\n\t\tf 4 1872 1873 1874 -1870\n\t\tmu 0 4 2765 2775 2790 2776\n\t\tf 4 1875 1876 1877 -1874\n\t\tmu 0 4 2775 2789 2806 2790\n\t\tf 4 1878 1879 1880 -1877\n\t\tmu 0 4 625 626 620 619\n\t\tf 4 -1871 1881 1882 1883\n\t\tmu 0 4 2766 2776 2791 2777\n\t\tf 4 -1875 1884 1885 -1882\n\t\tmu 0 4 2776 2790 2807 2791\n\t\tf 4 -1878 1886 1887 -1885\n\t\tmu 0 4 2790 2806 2822 2807\n\t\tf 4 -1881 1888 1889 -1887\n\t\tmu 0 4 619 620 615 614\n\t\tf 4 -1883 1890 1891 1892\n\t\tmu 0 4 2777 2791 2808 2792\n\t\tf 4 -1886 1893 1894 -1891\n\t\tmu 0 4 2791 2807 2823 2808\n\t\tf 4 -1888 1895 1896 -1894\n\t\tmu 0 4 2807 2822 2836 2823\n\t\tf 4 -1890 1897 1898 -1896\n\t\tmu 0 4 614 615 611 610\n\t\tf 4 -1892 1899 -1840 1900\n\t\tmu 0 4 2792 2808 2824 2809\n\t\tf 4 -1895 1901 -1849 -1900\n\t\tmu 0 4 2808 2823 2837 2824\n\t\tf 4 -1897 1902 -1858 -1902\n\t\tmu 0 4 2823 2836 2846 2837\n\t\tf 4 -1899 1903 -1867 -1903\n\t\tmu 0 4 610 611 600 607\n\t\tf 4 1904 1905 1906 1907\n\t\tmu 0 4 664 654 644 653\n\t\tf 4 1908 1909 1910 -1906\n\t\tmu 0 4 654 645 636 644\n\t\tf 4 1911 1912 1913 -1910\n\t\tmu 0 4 645 637 629 636\n\t\tf 4 1914 1915 1916 -1913\n\t\tmu 0 4 637 631 624 629\n\t\tf 4 -1907 1917 1918 1919\n\t\tmu 0 4 653 644 635 643\n\t\tf 4 -1911 1920 1921 -1918\n\t\tmu 0 4 644 636 628 635\n\t\tf 4 -1914 1922 1923 -1921\n\t\tmu 0 4 636 629 622 628\n\t\tf 4 -1917 1924 1925 -1923\n\t\tmu 0 4 629 624 618 622\n\t\tf 4 -1919 1926 1927 1928\n\t\tmu 0 4 643 635 627 634\n\t\tf 4 -1922 1929 1930 -1927\n\t\tmu 0 4 635 628 621 627\n\t\tf 4 -1924 1931 1932 -1930\n\t\tmu 0 4 628 622 616 621\n\t\tf 4 -1926 1933 1934 -1932\n\t\tmu 0 4 622 618 613 616\n\t\tf 4 -1928 1935 -1880 1936\n\t\tmu 0 4 634 627 620 626\n\t\tf 4 -1931 1937 -1889 -1936\n\t\tmu 0 4 627 621 615 620\n\t\tf 4 -1933 1938 -1898 -1938\n\t\tmu 0 4 621 616 611 615\n\t\tf 4 -1935 1939 -1904 -1939\n\t\tmu 0 4 616 613 600 611\n\t\tf 4 1940 1941 1942 1943\n\t\tmu 0 4 4358 4362 4371 4363\n\t\tf 4 1944 1945 1946 -1942\n\t\tmu 0 4 4362 4370 4383 4371\n\t\tf 4 1947 1948 1949 -1946\n\t\tmu 0 4 4370 4382 4397 4383\n\t\tf 4 1950 1951 1952 -1949\n\t\tmu 0 4 2721 2705 2720 2736\n\t\tf 4 -1943 1953 1954 1955\n\t\tmu 0 4 4363 4371 4385 4373\n\t\tf 4 -1947 1956 1957 -1954\n\t\tmu 0 4 4371 4383 4399 4385\n\t\tf 4 -1950 1958 1959 -1957\n\t\tmu 0 4 4383 4397 4409 4399\n\t\tf 4 -1953 1960 1961 -1959\n\t\tmu 0 4 2736 2720 2735 2747\n\t\tf 4 -1955 1962 1963 1964\n\t\tmu 0 4 4373 4385 4401 4387\n\t\tf 4 -1958 1965 1966 -1963\n\t\tmu 0 4 4385 4399 4411 4401\n\t\tf 4 -1960 1967 1968 -1966\n\t\tmu 0 4 4399 4409 4417 4411\n\t\tf 4 -1962 1969 1970 -1968\n\t\tmu 0 4 2747 2735 2746 2754\n\t\tf 4 -1964 1971 -1916 1972\n\t\tmu 0 4 630 623 624 631\n\t\tf 4 -1967 1973 -1925 -1972\n\t\tmu 0 4 623 617 618 624\n\t\tf 4 -1969 1974 -1934 -1974\n\t\tmu 0 4 617 612 613 618\n\t\tf 4 -1971 1975 -1940 -1975\n\t\tmu 0 4 612 608 600 613\n\t\tf 4 1976 1977 1978 1979\n\t\tmu 0 4 2662 2673 2674 2666\n\t\tf 4 1980 1981 1982 -1978\n\t\tmu 0 4 2673 2685 2686 2674\n\t\tf 4 1983 1984 1985 -1982\n\t\tmu 0 4 2685 2701 2702 2686\n\t\tf 4 1986 1987 1988 -1985\n\t\tmu 0 4 551 529 550 573\n\t\tf 4 -1979 1989 1990 1991\n\t\tmu 0 4 2666 2674 2687 2675\n\t\tf 4 -1983 1992 1993 -1990\n\t\tmu 0 4 2674 2686 2703 2687\n\t\tf 4 -1986 1994 1995 -1993\n\t\tmu 0 4 2686 2702 2718 2703\n\t\tf 4 -1989 1996 1997 -1995\n\t\tmu 0 4 573 550 572 589\n\t\tf 4 -1991 1998 1999 2000\n\t\tmu 0 4 2675 2687 2704 2688\n\t\tf 4 -1994 2001 2002 -1999\n\t\tmu 0 4 2687 2703 2719 2704\n\t\tf 4 -1996 2003 2004 -2002\n\t\tmu 0 4 2703 2718 2734 2719\n\t\tf 4 -1998 2005 2006 -2004\n\t\tmu 0 4 589 572 588 601\n\t\tf 4 -2000 2007 -1952 2008\n\t\tmu 0 4 2688 2704 2720 2705\n\t\tf 4 -2003 2009 -1961 -2008\n\t\tmu 0 4 2704 2719 2735 2720\n\t\tf 4 -2005 2010 -1970 -2010\n\t\tmu 0 4 2719 2734 2746 2735\n\t\tf 4 -2007 2011 -1976 -2011\n\t\tmu 0 4 601 588 600 608\n\t\tf 4 2012 2013 2014 2015\n\t\tmu 0 4 478 483 494 484\n\t\tf 4 2016 2017 2018 -2014\n\t\tmu 0 4 483 493 508 494\n\t\tf 4 2019 2020 2021 -2018\n\t\tmu 0 4 493 507 526 508\n\t\tf 4 2022 -1861 2023 -2021\n\t\tmu 0 4 507 525 547 526\n\t\tf 4 -2015 2024 2025 2026\n\t\tmu 0 4 484 494 509 495\n\t\tf 4 -2019 2027 2028 -2025\n\t\tmu 0 4 494 508 527 509\n\t\tf 4 -2022 2029 2030 -2028\n\t\tmu 0 4 508 526 548 527\n\t\tf 4 -2024 -1864 2031 -2030\n\t\tmu 0 4 526 547 570 548\n\t\tf 4 -2026 2032 2033 2034\n\t\tmu 0 4 495 509 528 510\n\t\tf 4 -2029 2035 2036 -2033\n\t\tmu 0 4 509 527 549 528\n\t\tf 4 -2031 2037 2038 -2036\n\t\tmu 0 4 527 548 571 549\n\t\tf 4 -2032 -1866 2039 -2038\n\t\tmu 0 4 548 570 587 571\n\t\tf 4 -2034 2040 -1988 2041\n\t\tmu 0 4 510 528 550 529\n\t\tf 4 -2037 2042 -1997 -2041\n\t\tmu 0 4 528 549 572 550\n\t\tf 4 -2039 2043 -2006 -2043\n\t\tmu 0 4 549 571 588 572\n\t\tf 4 -2040 -1868 -2012 -2044\n\t\tmu 0 4 571 587 600 588\n\t\tf 4 2044 2045 2046 2047\n\t\tmu 0 4 2663 2667 2677 2668\n\t\tf 4 2048 2049 2050 -2046\n\t\tmu 0 4 2667 2676 2690 2677\n\t\tf 4 2051 2052 2053 -2050\n\t\tmu 0 4 2676 2689 2707 2690\n\t\tf 4 2054 2055 2056 -2053\n\t\tmu 0 4 2689 2706 2723 2707\n\t\tf 4 -2047 2057 2058 2059\n\t\tmu 0 4 2668 2677 2691 2678\n\t\tf 4 -2051 2060 2061 -2058\n\t\tmu 0 4 2677 2690 2708 2691\n\t\tf 4 -2054 2062 2063 -2061\n\t\tmu 0 4 2690 2707 2724 2708\n\t\tf 4 -2057 2064 2065 -2063\n\t\tmu 0 4 2707 2723 2738 2724\n\t\tf 4 -2059 2066 2067 2068\n\t\tmu 0 4 2678 2691 2709 2692\n\t\tf 4 -2062 2069 2070 -2067\n\t\tmu 0 4 2691 2708 2725 2709\n\t\tf 4 -2064 2071 2072 -2070\n\t\tmu 0 4 2708 2724 2739 2725\n\t\tf 4 -2066 2073 2074 -2072\n\t\tmu 0 4 2724 2738 2749 2739\n\t\tf 4 -2068 2075 2076 2077\n\t\tmu 0 4 1240 1298 1241 1185\n\t\tf 4 -2071 2078 2079 -2076\n\t\tmu 0 4 1298 1346 1299 1241\n\t\tf 4 -2073 2080 2081 -2079\n\t\tmu 0 4 1346 1383 1347 1299\n\t\tf 4 -2075 2082 2083 -2081\n\t\tmu 0 4 1383 1409 1384 1347\n\t\tf 4 2084 2085 2086 2087\n\t\tmu 0 4 4357 4368 4372 4361\n\t\tf 4 2088 2089 2090 -2086\n\t\tmu 0 4 4368 4380 4386 4372\n\t\tf 4 2091 2092 2093 -2090\n\t\tmu 0 4 4380 4396 4402 4386\n\t\tf 4 2094 2095 2096 -2093\n\t\tmu 0 4 1245 1189 1244 1302\n\t\tf 4 -2087 2097 2098 2099\n\t\tmu 0 4 4361 4372 4384 4369\n\t\tf 4 -2091 2100 2101 -2098\n\t\tmu 0 4 4372 4386 4400 4384\n\t\tf 4 -2094 2102 2103 -2101\n\t\tmu 0 4 4386 4402 4412 4400\n\t\tf 4 -2097 2104 2105 -2103\n\t\tmu 0 4 1302 1244 1301 1349\n\t\tf 4 -2099 2106 2107 2108\n\t\tmu 0 4 4369 4384 4398 4381\n\t\tf 4 -2102 2109 2110 -2107\n\t\tmu 0 4 4384 4400 4410 4398\n\t\tf 4 -2104 2111 2112 -2110\n\t\tmu 0 4 4400 4412 4418 4410\n\t\tf 4 -2106 2113 2114 -2112\n\t\tmu 0 4 1349 1301 1348 1385\n\t\tf 4 -2108 2115 -2056 2116\n\t\tmu 0 4 2722 2737 2723 2706\n\t\tf 4 -2111 2117 -2065 -2116\n\t\tmu 0 4 2737 2748 2738 2723\n\t\tf 4 -2113 2118 -2074 -2118\n\t\tmu 0 4 2748 2755 2749 2738\n\t\tf 4 -2115 2119 -2083 -2119\n\t\tmu 0 4 1385 1348 1384 1409\n\t\tf 4 2120 2121 2122 2123\n\t\tmu 0 4 1028 1062 1095 1063\n\t\tf 4 2124 2125 2126 -2122\n\t\tmu 0 4 1062 1094 1137 1095\n\t\tf 4 2127 2128 2129 -2126\n\t\tmu 0 4 1094 1136 1186 1137\n\t\tf 4 2130 -2077 2131 -2129\n\t\tmu 0 4 1136 1185 1241 1186\n\t\tf 4 -2123 2132 2133 2134\n\t\tmu 0 4 1063 1095 1138 1096\n\t\tf 4 -2127 2135 2136 -2133\n\t\tmu 0 4 1095 1137 1187 1138\n\t\tf 4 -2130 2137 2138 -2136\n\t\tmu 0 4 1137 1186 1242 1187\n\t\tf 4 -2132 -2080 2139 -2138\n\t\tmu 0 4 1186 1241 1299 1242\n\t\tf 4 -2134 2140 2141 2142\n\t\tmu 0 4 1096 1138 1188 1139\n\t\tf 4 -2137 2143 2144 -2141\n\t\tmu 0 4 1138 1187 1243 1188\n\t\tf 4 -2139 2145 2146 -2144\n\t\tmu 0 4 1187 1242 1300 1243\n\t\tf 4 -2140 -2082 2147 -2146\n\t\tmu 0 4 1242 1299 1347 1300\n\t\tf 4 -2142 2148 -2096 2149\n\t\tmu 0 4 1139 1188 1244 1189\n\t\tf 4 -2145 2150 -2105 -2149\n\t\tmu 0 4 1188 1243 1301 1244\n\t\tf 4 -2147 2151 -2114 -2151\n\t\tmu 0 4 1243 1300 1348 1301\n\t\tf 4 -2148 -2084 -2120 -2152\n\t\tmu 0 4 1300 1347 1384 1348\n\t\tf 4 2152 2153 2154 2155\n\t\tmu 0 4 10 31 70 32\n\t\tf 4 2156 2157 2158 -2154\n\t\tmu 0 4 31 69 123 70\n\t\tf 4 2159 2160 2161 -2158\n\t\tmu 0 4 69 122 184 123\n\t\tf 4 2162 2163 2164 -2161\n\t\tmu 0 4 122 183 249 184\n\t\tf 4 -2155 2165 2166 2167\n\t\tmu 0 4 32 70 124 71\n\t\tf 4 -2159 2168 2169 -2166\n\t\tmu 0 4 70 123 185 124\n\t\tf 4 -2162 2170 2171 -2169\n\t\tmu 0 4 123 184 250 185\n\t\tf 4 -2165 2172 2173 -2171\n\t\tmu 0 4 184 249 317 250\n\t\tf 4 -2167 2174 2175 2176\n\t\tmu 0 4 71 124 186 125\n\t\tf 4 -2170 2177 2178 -2175\n\t\tmu 0 4 124 185 251 186\n\t\tf 4 -2172 2179 2180 -2178\n\t\tmu 0 4 185 250 318 251\n\t\tf 4 -2174 2181 2182 -2180\n\t\tmu 0 4 250 317 376 318\n\t\tf 4 -2176 2183 2184 2185\n\t\tmu 0 4 125 186 252 187\n\t\tf 4 -2179 2186 2187 -2184\n\t\tmu 0 4 186 251 319 252\n\t\tf 4 -2181 2188 2189 -2187\n\t\tmu 0 4 251 318 377 319\n\t\tf 4 -2183 2190 2191 -2189\n\t\tmu 0 4 318 376 423 377\n\t\tf 4 2192 2193 2194 2195\n\t\tmu 0 4 2953 2959 2971 2960\n\t\tf 4 2196 2197 2198 -2194\n\t\tmu 0 4 2959 2970 2986 2971\n\t\tf 4 2199 2200 2201 -2198\n\t\tmu 0 4 2970 2985 3003 2986\n\t\tf 4 2202 2203 2204 -2201\n\t\tmu 0 4 2985 3002 3018 3003\n\t\tf 4 -2195 2205 2206 2207\n\t\tmu 0 4 2960 2971 2987 2972\n\t\tf 4 -2199 2208 2209 -2206\n\t\tmu 0 4 2971 2986 3004 2987\n\t\tf 4 -2202 2210 2211 -2209\n\t\tmu 0 4 2986 3003 3019 3004\n\t\tf 4 -2205 2212 2213 -2211\n\t\tmu 0 4 3003 3018 3031 3019\n\t\tf 4 -2207 2214 2215 2216\n\t\tmu 0 4 2972 2987 3005 2988\n\t\tf 4 -2210 2217 2218 -2215\n\t\tmu 0 4 2987 3004 3020 3005\n\t\tf 4 -2212 2219 2220 -2218\n\t\tmu 0 4 3004 3019 3032 3020\n\t\tf 4 -2214 2221 2222 -2220\n\t\tmu 0 4 3019 3031 3039 3032\n\t\tf 4 -2216 2223 -2164 2224\n\t\tmu 0 4 248 316 249 183\n\t\tf 4 -2219 2225 -2173 -2224\n\t\tmu 0 4 316 375 317 249\n\t\tf 4 -2221 2226 -2182 -2226\n\t\tmu 0 4 375 422 376 317\n\t\tf 4 -2223 2227 -2191 -2227\n\t\tmu 0 4 422 451 423 376\n\t\tf 4 2228 2229 2230 2231\n\t\tmu 0 4 4231 4236 4247 4237\n\t\tf 4 2232 2233 2234 -2230\n\t\tmu 0 4 4236 4246 4261 4247\n\t\tf 4 2235 2236 2237 -2234\n\t\tmu 0 4 4246 4260 4275 4261\n\t\tf 4 2238 -2185 2239 -2237\n\t\tmu 0 4 253 187 252 320\n\t\tf 4 -2231 2240 2241 2242\n\t\tmu 0 4 4237 4247 4262 4248\n\t\tf 4 -2235 2243 2244 -2241\n\t\tmu 0 4 4247 4261 4276 4262\n\t\tf 4 -2238 2245 2246 -2244\n\t\tmu 0 4 4261 4275 4285 4276\n\t\tf 4 -2240 -2188 2247 -2246\n\t\tmu 0 4 320 252 319 378\n\t\tf 4 -2242 2248 2249 2250\n\t\tmu 0 4 4248 4262 4277 4263\n\t\tf 4 -2245 2251 2252 -2249\n\t\tmu 0 4 4262 4276 4286 4277\n\t\tf 4 -2247 2253 2254 -2252\n\t\tmu 0 4 4276 4285 4291 4286\n\t\tf 4 -2248 -2190 2255 -2254\n\t\tmu 0 4 378 319 377 424\n\t\tf 4 -2250 2256 -2204 2257\n\t\tmu 0 4 3017 3030 3018 3002\n\t\tf 4 -2253 2258 -2213 -2257\n\t\tmu 0 4 3030 3038 3031 3018\n\t\tf 4 -2255 2259 -2222 -2259\n\t\tmu 0 4 3038 3042 3039 3031\n\t\tf 4 -2256 -2192 -2228 -2260\n\t\tmu 0 4 424 377 423 451\n\t\tf 4 2260 2261 2262 2263\n\t\tmu 0 4 4232 4238 4250 4239\n\t\tf 4 2264 2265 2266 -2262\n\t\tmu 0 4 4238 4249 4265 4250\n\t\tf 4 2267 2268 2269 -2266\n\t\tmu 0 4 4249 4264 4278 4265\n\t\tf 4 2270 2271 2272 -2269\n\t\tmu 0 4 3016 3001 3015 3029\n\t\tf 4 -2263 2273 2274 2275\n\t\tmu 0 4 4239 4250 4266 4251\n\t\tf 4 -2267 2276 2277 -2274\n\t\tmu 0 4 4250 4265 4279 4266\n\t\tf 4 -2270 2278 2279 -2277\n\t\tmu 0 4 4265 4278 4287 4279\n\t\tf 4 -2273 2280 2281 -2279\n\t\tmu 0 4 3029 3015 3028 3037\n\t\tf 4 -2275 2282 2283 2284\n\t\tmu 0 4 4251 4266 4280 4267\n\t\tf 4 -2278 2285 2286 -2283\n\t\tmu 0 4 4266 4279 4288 4280\n\t\tf 4 -2280 2287 2288 -2286\n\t\tmu 0 4 4279 4287 4292 4288\n\t\tf 4 -2282 2289 2290 -2288\n\t\tmu 0 4 3037 3028 3036 3041\n\t\tf 4 -2284 2291 2292 2293\n\t\tmu 0 4 1891 1913 1892 1869\n\t\tf 4 -2287 2294 2295 -2292\n\t\tmu 0 4 1913 1930 1914 1892\n\t\tf 4 -2289 2296 2297 -2295\n\t\tmu 0 4 1930 1943 1931 1914\n\t\tf 4 -2291 2298 2299 -2297\n\t\tmu 0 4 1943 1951 1944 1931\n\t\tf 4 2300 2301 2302 2303\n\t\tmu 0 4 2952 2957 2968 2958\n\t\tf 4 2304 2305 2306 -2302\n\t\tmu 0 4 2957 2967 2982 2968\n\t\tf 4 2307 2308 2309 -2306\n\t\tmu 0 4 2967 2981 2998 2982\n\t\tf 4 2310 2311 2312 -2309\n\t\tmu 0 4 1969 1970 1964 1963\n\t\tf 4 -2303 2313 2314 2315\n\t\tmu 0 4 2958 2968 2983 2969\n\t\tf 4 -2307 2316 2317 -2314\n\t\tmu 0 4 2968 2982 2999 2983\n\t\tf 4 -2310 2318 2319 -2317\n\t\tmu 0 4 2982 2998 3013 2999\n\t\tf 4 -2313 2320 2321 -2319\n\t\tmu 0 4 1963 1964 1959 1958\n\t\tf 4 -2315 2322 2323 2324\n\t\tmu 0 4 2969 2983 3000 2984\n\t\tf 4 -2318 2325 2326 -2323\n\t\tmu 0 4 2983 2999 3014 3000\n\t\tf 4 -2320 2327 2328 -2326\n\t\tmu 0 4 2999 3013 3027 3014\n\t\tf 4 -2322 2329 2330 -2328\n\t\tmu 0 4 1958 1959 1955 1954\n\t\tf 4 -2324 2331 -2272 2332\n\t\tmu 0 4 2984 3000 3015 3001\n\t\tf 4 -2327 2333 -2281 -2332\n\t\tmu 0 4 3000 3014 3028 3015\n\t\tf 4 -2329 2334 -2290 -2334\n\t\tmu 0 4 3014 3027 3036 3028\n\t\tf 4 -2331 2335 -2299 -2335\n\t\tmu 0 4 1954 1955 1944 1951\n\t\tf 4 2336 2337 2338 2339\n\t\tmu 0 4 2008 1998 1988 1997\n\t\tf 4 2340 2341 2342 -2338\n\t\tmu 0 4 1998 1989 1980 1988\n\t\tf 4 2343 2344 2345 -2342\n\t\tmu 0 4 1989 1981 1973 1980\n\t\tf 4 2346 2347 2348 -2345\n\t\tmu 0 4 1981 1975 1968 1973\n\t\tf 4 -2339 2349 2350 2351\n\t\tmu 0 4 1997 1988 1979 1987\n\t\tf 4 -2343 2352 2353 -2350\n\t\tmu 0 4 1988 1980 1972 1979\n\t\tf 4 -2346 2354 2355 -2353\n\t\tmu 0 4 1980 1973 1966 1972\n\t\tf 4 -2349 2356 2357 -2355\n\t\tmu 0 4 1973 1968 1962 1966\n\t\tf 4 -2351 2358 2359 2360\n\t\tmu 0 4 1987 1979 1971 1978\n\t\tf 4 -2354 2361 2362 -2359\n\t\tmu 0 4 1979 1972 1965 1971\n\t\tf 4 -2356 2363 2364 -2362\n\t\tmu 0 4 1972 1966 1960 1965\n\t\tf 4 -2358 2365 2366 -2364\n\t\tmu 0 4 1966 1962 1957 1960\n\t\tf 4 -2360 2367 -2312 2368\n\t\tmu 0 4 1978 1971 1964 1970\n\t\tf 4 -2363 2369 -2321 -2368\n\t\tmu 0 4 1971 1965 1959 1964\n\t\tf 4 -2365 2370 -2330 -2370\n\t\tmu 0 4 1965 1960 1955 1959\n\t\tf 4 -2367 2371 -2336 -2371\n\t\tmu 0 4 1960 1957 1944 1955\n\t\tf 4 2372 2373 2374 2375\n\t\tmu 0 4 4422 4426 4435 4427\n\t\tf 4 2376 2377 2378 -2374\n\t\tmu 0 4 4426 4434 4447 4435\n\t\tf 4 2379 2380 2381 -2378\n\t\tmu 0 4 4434 4446 4461 4447\n\t\tf 4 2382 2383 2384 -2381\n\t\tmu 0 4 2913 2897 2912 2928\n\t\tf 4 -2375 2385 2386 2387\n\t\tmu 0 4 4427 4435 4449 4437\n\t\tf 4 -2379 2388 2389 -2386\n\t\tmu 0 4 4435 4447 4463 4449\n\t\tf 4 -2382 2390 2391 -2389\n\t\tmu 0 4 4447 4461 4473 4463\n\t\tf 4 -2385 2392 2393 -2391\n\t\tmu 0 4 2928 2912 2927 2939\n\t\tf 4 -2387 2394 2395 2396\n\t\tmu 0 4 4437 4449 4465 4451\n\t\tf 4 -2390 2397 2398 -2395\n\t\tmu 0 4 4449 4463 4475 4465\n\t\tf 4 -2392 2399 2400 -2398\n\t\tmu 0 4 4463 4473 4481 4475\n\t\tf 4 -2394 2401 2402 -2400\n\t\tmu 0 4 2939 2927 2938 2946\n\t\tf 4 -2396 2403 -2348 2404\n\t\tmu 0 4 1974 1967 1968 1975\n\t\tf 4 -2399 2405 -2357 -2404\n\t\tmu 0 4 1967 1961 1962 1968\n\t\tf 4 -2401 2406 -2366 -2406\n\t\tmu 0 4 1961 1956 1957 1962\n\t\tf 4 -2403 2407 -2372 -2407\n\t\tmu 0 4 1956 1952 1944 1957;\n\tsetAttr \".fc[1000:1499]\"\n\t\tf 4 2408 2409 2410 2411\n\t\tmu 0 4 2854 2865 2866 2858\n\t\tf 4 2412 2413 2414 -2410\n\t\tmu 0 4 2865 2877 2878 2866\n\t\tf 4 2415 2416 2417 -2414\n\t\tmu 0 4 2877 2893 2894 2878\n\t\tf 4 2418 2419 2420 -2417\n\t\tmu 0 4 1896 1873 1895 1917\n\t\tf 4 -2411 2421 2422 2423\n\t\tmu 0 4 2858 2866 2879 2867\n\t\tf 4 -2415 2424 2425 -2422\n\t\tmu 0 4 2866 2878 2895 2879\n\t\tf 4 -2418 2426 2427 -2425\n\t\tmu 0 4 2878 2894 2910 2895\n\t\tf 4 -2421 2428 2429 -2427\n\t\tmu 0 4 1917 1895 1916 1933\n\t\tf 4 -2423 2430 2431 2432\n\t\tmu 0 4 2867 2879 2896 2880\n\t\tf 4 -2426 2433 2434 -2431\n\t\tmu 0 4 2879 2895 2911 2896\n\t\tf 4 -2428 2435 2436 -2434\n\t\tmu 0 4 2895 2910 2926 2911\n\t\tf 4 -2430 2437 2438 -2436\n\t\tmu 0 4 1933 1916 1932 1945\n\t\tf 4 -2432 2439 -2384 2440\n\t\tmu 0 4 2880 2896 2912 2897\n\t\tf 4 -2435 2441 -2393 -2440\n\t\tmu 0 4 2896 2911 2927 2912\n\t\tf 4 -2437 2442 -2402 -2442\n\t\tmu 0 4 2911 2926 2938 2927\n\t\tf 4 -2439 2443 -2408 -2443\n\t\tmu 0 4 1945 1932 1944 1952\n\t\tf 4 2444 2445 2446 2447\n\t\tmu 0 4 1822 1827 1838 1828\n\t\tf 4 2448 2449 2450 -2446\n\t\tmu 0 4 1827 1837 1852 1838\n\t\tf 4 2451 2452 2453 -2450\n\t\tmu 0 4 1837 1851 1870 1852\n\t\tf 4 2454 -2293 2455 -2453\n\t\tmu 0 4 1851 1869 1892 1870\n\t\tf 4 -2447 2456 2457 2458\n\t\tmu 0 4 1828 1838 1853 1839\n\t\tf 4 -2451 2459 2460 -2457\n\t\tmu 0 4 1838 1852 1871 1853\n\t\tf 4 -2454 2461 2462 -2460\n\t\tmu 0 4 1852 1870 1893 1871\n\t\tf 4 -2456 -2296 2463 -2462\n\t\tmu 0 4 1870 1892 1914 1893\n\t\tf 4 -2458 2464 2465 2466\n\t\tmu 0 4 1839 1853 1872 1854\n\t\tf 4 -2461 2467 2468 -2465\n\t\tmu 0 4 1853 1871 1894 1872\n\t\tf 4 -2463 2469 2470 -2468\n\t\tmu 0 4 1871 1893 1915 1894\n\t\tf 4 -2464 -2298 2471 -2470\n\t\tmu 0 4 1893 1914 1931 1915\n\t\tf 4 -2466 2472 -2420 2473\n\t\tmu 0 4 1854 1872 1895 1873\n\t\tf 4 -2469 2474 -2429 -2473\n\t\tmu 0 4 1872 1894 1916 1895\n\t\tf 4 -2471 2475 -2438 -2475\n\t\tmu 0 4 1894 1915 1932 1916\n\t\tf 4 -2472 -2300 -2444 -2476\n\t\tmu 0 4 1915 1931 1944 1932\n\t\tf 4 2476 2477 2478 2479\n\t\tmu 0 4 4551 4556 4567 4557\n\t\tf 4 2480 2481 2482 -2478\n\t\tmu 0 4 4556 4566 4581 4567\n\t\tf 4 2483 2484 2485 -2482\n\t\tmu 0 4 4566 4580 4595 4581\n\t\tf 4 2486 2487 2488 -2485\n\t\tmu 0 4 1902 1878 1901 1922\n\t\tf 4 -2479 2489 2490 2491\n\t\tmu 0 4 4557 4567 4582 4568\n\t\tf 4 -2483 2492 2493 -2490\n\t\tmu 0 4 4567 4581 4596 4582\n\t\tf 4 -2486 2494 2495 -2493\n\t\tmu 0 4 4581 4595 4605 4596\n\t\tf 4 -2489 2496 2497 -2495\n\t\tmu 0 4 1922 1901 1921 1937\n\t\tf 4 -2491 2498 2499 2500\n\t\tmu 0 4 4568 4582 4597 4583\n\t\tf 4 -2494 2501 2502 -2499\n\t\tmu 0 4 4582 4596 4606 4597\n\t\tf 4 -2496 2503 2504 -2502\n\t\tmu 0 4 4596 4605 4611 4606\n\t\tf 4 -2498 2505 2506 -2504\n\t\tmu 0 4 1937 1921 1936 1948\n\t\tf 4 -2500 2507 2508 2509\n\t\tmu 0 4 2922 2935 2923 2906\n\t\tf 4 -2503 2510 2511 -2508\n\t\tmu 0 4 2935 2944 2936 2923\n\t\tf 4 -2505 2512 2513 -2511\n\t\tmu 0 4 2944 2949 2945 2936\n\t\tf 4 -2507 2514 2515 -2513\n\t\tmu 0 4 1948 1936 1947 1953\n\t\tf 4 2516 2517 2518 2519\n\t\tmu 0 4 1823 1829 1841 1830\n\t\tf 4 2520 2521 2522 -2518\n\t\tmu 0 4 1829 1840 1856 1841\n\t\tf 4 2523 2524 2525 -2522\n\t\tmu 0 4 1840 1855 1875 1856\n\t\tf 4 2526 2527 2528 -2525\n\t\tmu 0 4 1855 1874 1898 1875\n\t\tf 4 -2519 2529 2530 2531\n\t\tmu 0 4 1830 1841 1857 1842\n\t\tf 4 -2523 2532 2533 -2530\n\t\tmu 0 4 1841 1856 1876 1857\n\t\tf 4 -2526 2534 2535 -2533\n\t\tmu 0 4 1856 1875 1899 1876\n\t\tf 4 -2529 2536 2537 -2535\n\t\tmu 0 4 1875 1898 1919 1899\n\t\tf 4 -2531 2538 2539 2540\n\t\tmu 0 4 1842 1857 1877 1858\n\t\tf 4 -2534 2541 2542 -2539\n\t\tmu 0 4 1857 1876 1900 1877\n\t\tf 4 -2536 2543 2544 -2542\n\t\tmu 0 4 1876 1899 1920 1900\n\t\tf 4 -2538 2545 2546 -2544\n\t\tmu 0 4 1899 1919 1935 1920\n\t\tf 4 -2540 2547 -2488 2548\n\t\tmu 0 4 1858 1877 1901 1878\n\t\tf 4 -2543 2549 -2497 -2548\n\t\tmu 0 4 1877 1900 1921 1901\n\t\tf 4 -2545 2550 -2506 -2550\n\t\tmu 0 4 1900 1920 1936 1921\n\t\tf 4 -2547 2551 -2515 -2551\n\t\tmu 0 4 1920 1935 1947 1936\n\t\tf 4 2552 2553 2554 2555\n\t\tmu 0 4 2857 2863 2875 2864\n\t\tf 4 2556 2557 2558 -2554\n\t\tmu 0 4 2863 2874 2890 2875\n\t\tf 4 2559 2560 2561 -2558\n\t\tmu 0 4 2874 2889 2907 2890\n\t\tf 4 2562 -2509 2563 -2561\n\t\tmu 0 4 2889 2906 2923 2907\n\t\tf 4 -2555 2564 2565 2566\n\t\tmu 0 4 2864 2875 2891 2876\n\t\tf 4 -2559 2567 2568 -2565\n\t\tmu 0 4 2875 2890 2908 2891\n\t\tf 4 -2562 2569 2570 -2568\n\t\tmu 0 4 2890 2907 2924 2908\n\t\tf 4 -2564 -2512 2571 -2570\n\t\tmu 0 4 2907 2923 2936 2924\n\t\tf 4 -2566 2572 2573 2574\n\t\tmu 0 4 2876 2891 2909 2892\n\t\tf 4 -2569 2575 2576 -2573\n\t\tmu 0 4 2891 2908 2925 2909\n\t\tf 4 -2571 2577 2578 -2576\n\t\tmu 0 4 2908 2924 2937 2925\n\t\tf 4 -2572 -2514 2579 -2578\n\t\tmu 0 4 2924 2936 2945 2937\n\t\tf 4 -2574 2580 -2528 2581\n\t\tmu 0 4 1897 1918 1898 1874\n\t\tf 4 -2577 2582 -2537 -2581\n\t\tmu 0 4 1918 1934 1919 1898\n\t\tf 4 -2579 2583 -2546 -2583\n\t\tmu 0 4 1934 1946 1935 1919\n\t\tf 4 -2580 -2516 -2552 -2584\n\t\tmu 0 4 1946 1953 1947 1935\n\t\tf 4 2584 2585 2586 2587\n\t\tmu 0 4 1614 1603 1615 1627\n\t\tf 4 2588 2589 2590 -2586\n\t\tmu 0 4 1603 1593 1604 1615\n\t\tf 4 2591 2592 2593 -2590\n\t\tmu 0 4 1593 1584 1594 1604\n\t\tf 4 2594 2595 2596 -2593\n\t\tmu 0 4 1584 1576 1586 1594\n\t\tf 4 -2587 2597 2598 2599\n\t\tmu 0 4 1627 1615 1628 1639\n\t\tf 4 -2591 2600 2601 -2598\n\t\tmu 0 4 1615 1604 1616 1628\n\t\tf 4 -2594 2602 2603 -2601\n\t\tmu 0 4 1604 1594 1605 1616\n\t\tf 4 -2597 2604 2605 -2603\n\t\tmu 0 4 1594 1586 1596 1605\n\t\tf 4 -2599 2606 2607 2608\n\t\tmu 0 4 1639 1628 1640 1650\n\t\tf 4 -2602 2609 2610 -2607\n\t\tmu 0 4 1628 1616 1629 1640\n\t\tf 4 -2604 2611 2612 -2610\n\t\tmu 0 4 1616 1605 1617 1629\n\t\tf 4 -2606 2613 2614 -2612\n\t\tmu 0 4 1605 1596 1607 1617\n\t\tf 4 -2608 2615 2616 2617\n\t\tmu 0 4 1650 1640 1651 1660\n\t\tf 4 -2611 2618 2619 -2616\n\t\tmu 0 4 1640 1629 1641 1651\n\t\tf 4 -2613 2620 2621 -2619\n\t\tmu 0 4 1629 1617 1630 1641\n\t\tf 4 -2615 2622 2623 -2621\n\t\tmu 0 4 1617 1607 1619 1630\n\t\tf 4 2624 2625 2626 2627\n\t\tmu 0 4 2855 2859 2869 2860\n\t\tf 4 2628 2629 2630 -2626\n\t\tmu 0 4 2859 2868 2882 2869\n\t\tf 4 2631 2632 2633 -2630\n\t\tmu 0 4 2868 2881 2899 2882\n\t\tf 4 2634 2635 2636 -2633\n\t\tmu 0 4 2881 2898 2915 2899\n\t\tf 4 -2627 2637 2638 2639\n\t\tmu 0 4 2860 2869 2883 2870\n\t\tf 4 -2631 2640 2641 -2638\n\t\tmu 0 4 2869 2882 2900 2883\n\t\tf 4 -2634 2642 2643 -2641\n\t\tmu 0 4 2882 2899 2916 2900\n\t\tf 4 -2637 2644 2645 -2643\n\t\tmu 0 4 2899 2915 2930 2916\n\t\tf 4 -2639 2646 2647 2648\n\t\tmu 0 4 2870 2883 2901 2884\n\t\tf 4 -2642 2649 2650 -2647\n\t\tmu 0 4 2883 2900 2917 2901\n\t\tf 4 -2644 2651 2652 -2650\n\t\tmu 0 4 2900 2916 2931 2917\n\t\tf 4 -2646 2653 2654 -2652\n\t\tmu 0 4 2916 2930 2941 2931\n\t\tf 4 -2648 2655 -2596 2656\n\t\tmu 0 4 1577 1585 1586 1576\n\t\tf 4 -2651 2657 -2605 -2656\n\t\tmu 0 4 1585 1595 1596 1586\n\t\tf 4 -2653 2658 -2614 -2658\n\t\tmu 0 4 1595 1606 1607 1596\n\t\tf 4 -2655 2659 -2623 -2659\n\t\tmu 0 4 1606 1618 1619 1607\n\t\tf 4 2660 2661 2662 2663\n\t\tmu 0 4 4421 4432 4436 4425\n\t\tf 4 2664 2665 2666 -2662\n\t\tmu 0 4 4432 4444 4450 4436\n\t\tf 4 2667 2668 2669 -2666\n\t\tmu 0 4 4444 4460 4466 4450\n\t\tf 4 2670 -2617 2671 -2669\n\t\tmu 0 4 1661 1660 1651 1652\n\t\tf 4 -2663 2672 2673 2674\n\t\tmu 0 4 4425 4436 4448 4433\n\t\tf 4 -2667 2675 2676 -2673\n\t\tmu 0 4 4436 4450 4464 4448\n\t\tf 4 -2670 2677 2678 -2676\n\t\tmu 0 4 4450 4466 4476 4464\n\t\tf 4 -2672 -2620 2679 -2678\n\t\tmu 0 4 1652 1651 1641 1642\n\t\tf 4 -2674 2680 2681 2682\n\t\tmu 0 4 4433 4448 4462 4445\n\t\tf 4 -2677 2683 2684 -2681\n\t\tmu 0 4 4448 4464 4474 4462\n\t\tf 4 -2679 2685 2686 -2684\n\t\tmu 0 4 4464 4476 4482 4474\n\t\tf 4 -2680 -2622 2687 -2686\n\t\tmu 0 4 1642 1641 1630 1631\n\t\tf 4 -2682 2688 -2636 2689\n\t\tmu 0 4 2914 2929 2915 2898\n\t\tf 4 -2685 2690 -2645 -2689\n\t\tmu 0 4 2929 2940 2930 2915\n\t\tf 4 -2687 2691 -2654 -2691\n\t\tmu 0 4 2940 2947 2941 2930\n\t\tf 4 -2688 -2624 -2660 -2692\n\t\tmu 0 4 1631 1630 1619 1618\n\t\tf 4 2692 2693 2694 2695\n\t\tmu 0 4 2856 2861 2872 2862\n\t\tf 4 2696 2697 2698 -2694\n\t\tmu 0 4 2861 2871 2886 2872\n\t\tf 4 2699 2700 2701 -2698\n\t\tmu 0 4 2871 2885 2902 2886\n\t\tf 4 2702 2703 2704 -2701\n\t\tmu 0 4 1569 1570 1564 1563\n\t\tf 4 -2695 2705 2706 2707\n\t\tmu 0 4 2862 2872 2887 2873\n\t\tf 4 -2699 2708 2709 -2706\n\t\tmu 0 4 2872 2886 2903 2887\n\t\tf 4 -2702 2710 2711 -2709\n\t\tmu 0 4 2886 2902 2918 2903\n\t\tf 4 -2705 2712 2713 -2711\n\t\tmu 0 4 1563 1564 1559 1558\n\t\tf 4 -2707 2714 2715 2716\n\t\tmu 0 4 2873 2887 2904 2888\n\t\tf 4 -2710 2717 2718 -2715\n\t\tmu 0 4 2887 2903 2919 2904\n\t\tf 4 -2712 2719 2720 -2718\n\t\tmu 0 4 2903 2918 2932 2919\n\t\tf 4 -2714 2721 2722 -2720\n\t\tmu 0 4 1558 1559 1555 1554\n\t\tf 4 -2716 2723 2724 2725\n\t\tmu 0 4 2888 2904 2920 2905\n\t\tf 4 -2719 2726 2727 -2724\n\t\tmu 0 4 2904 2919 2933 2920\n\t\tf 4 -2721 2728 2729 -2727\n\t\tmu 0 4 2919 2932 2942 2933\n\t\tf 4 -2723 2730 2731 -2729\n\t\tmu 0 4 1554 1555 1544 1551\n\t\tf 4 2732 2733 2734 2735\n\t\tmu 0 4 1608 1598 1588 1597\n\t\tf 4 2736 2737 2738 -2734\n\t\tmu 0 4 1598 1589 1580 1588\n\t\tf 4 2739 2740 2741 -2738\n\t\tmu 0 4 1589 1581 1573 1580\n\t\tf 4 2742 2743 2744 -2741\n\t\tmu 0 4 1581 1575 1568 1573\n\t\tf 4 -2735 2745 2746 2747\n\t\tmu 0 4 1597 1588 1579 1587\n\t\tf 4 -2739 2748 2749 -2746\n\t\tmu 0 4 1588 1580 1572 1579\n\t\tf 4 -2742 2750 2751 -2749\n\t\tmu 0 4 1580 1573 1566 1572\n\t\tf 4 -2745 2752 2753 -2751\n\t\tmu 0 4 1573 1568 1562 1566\n\t\tf 4 -2747 2754 2755 2756\n\t\tmu 0 4 1587 1579 1571 1578\n\t\tf 4 -2750 2757 2758 -2755\n\t\tmu 0 4 1579 1572 1565 1571\n\t\tf 4 -2752 2759 2760 -2758\n\t\tmu 0 4 1572 1566 1560 1565\n\t\tf 4 -2754 2761 2762 -2760\n\t\tmu 0 4 1566 1562 1557 1560\n\t\tf 4 -2756 2763 -2704 2764\n\t\tmu 0 4 1578 1571 1564 1570\n\t\tf 4 -2759 2765 -2713 -2764\n\t\tmu 0 4 1571 1565 1559 1564\n\t\tf 4 -2761 2766 -2722 -2766\n\t\tmu 0 4 1565 1560 1555 1559\n\t\tf 4 -2763 2767 -2731 -2767\n\t\tmu 0 4 1560 1557 1544 1555\n\t\tf 4 2768 2769 2770 2771\n\t\tmu 0 4 4294 4298 4307 4299\n\t\tf 4 2772 2773 2774 -2770\n\t\tmu 0 4 4298 4306 4319 4307\n\t\tf 4 2775 2776 2777 -2774\n\t\tmu 0 4 4306 4318 4333 4319\n\t\tf 4 2778 2779 2780 -2777\n\t\tmu 0 4 2817 2801 2816 2832\n\t\tf 4 -2771 2781 2782 2783\n\t\tmu 0 4 4299 4307 4321 4309\n\t\tf 4 -2775 2784 2785 -2782\n\t\tmu 0 4 4307 4319 4335 4321\n\t\tf 4 -2778 2786 2787 -2785\n\t\tmu 0 4 4319 4333 4345 4335\n\t\tf 4 -2781 2788 2789 -2787\n\t\tmu 0 4 2832 2816 2831 2843\n\t\tf 4 -2783 2790 2791 2792\n\t\tmu 0 4 4309 4321 4337 4323\n\t\tf 4 -2786 2793 2794 -2791\n\t\tmu 0 4 4321 4335 4347 4337\n\t\tf 4 -2788 2795 2796 -2794\n\t\tmu 0 4 4335 4345 4353 4347\n\t\tf 4 -2790 2797 2798 -2796\n\t\tmu 0 4 2843 2831 2842 2850\n\t\tf 4 -2792 2799 -2744 2800\n\t\tmu 0 4 1574 1567 1568 1575\n\t\tf 4 -2795 2801 -2753 -2800\n\t\tmu 0 4 1567 1561 1562 1568\n\t\tf 4 -2797 2802 -2762 -2802\n\t\tmu 0 4 1561 1556 1557 1562\n\t\tf 4 -2799 2803 -2768 -2803\n\t\tmu 0 4 1556 1552 1544 1557\n\t\tf 4 2804 2805 2806 2807\n\t\tmu 0 4 2758 2769 2770 2762\n\t\tf 4 2808 2809 2810 -2806\n\t\tmu 0 4 2769 2781 2782 2770\n\t\tf 4 2811 2812 2813 -2810\n\t\tmu 0 4 2781 2797 2798 2782\n\t\tf 4 2814 2815 2816 -2813\n\t\tmu 0 4 1496 1473 1495 1517\n\t\tf 4 -2807 2817 2818 2819\n\t\tmu 0 4 2762 2770 2783 2771\n\t\tf 4 -2811 2820 2821 -2818\n\t\tmu 0 4 2770 2782 2799 2783\n\t\tf 4 -2814 2822 2823 -2821\n\t\tmu 0 4 2782 2798 2814 2799\n\t\tf 4 -2817 2824 2825 -2823\n\t\tmu 0 4 1517 1495 1516 1533\n\t\tf 4 -2819 2826 2827 2828\n\t\tmu 0 4 2771 2783 2800 2784\n\t\tf 4 -2822 2829 2830 -2827\n\t\tmu 0 4 2783 2799 2815 2800\n\t\tf 4 -2824 2831 2832 -2830\n\t\tmu 0 4 2799 2814 2830 2815\n\t\tf 4 -2826 2833 2834 -2832\n\t\tmu 0 4 1533 1516 1532 1545\n\t\tf 4 -2828 2835 -2780 2836\n\t\tmu 0 4 2784 2800 2816 2801\n\t\tf 4 -2831 2837 -2789 -2836\n\t\tmu 0 4 2800 2815 2831 2816\n\t\tf 4 -2833 2838 -2798 -2838\n\t\tmu 0 4 2815 2830 2842 2831\n\t\tf 4 -2835 2839 -2804 -2839\n\t\tmu 0 4 1545 1532 1544 1552\n\t\tf 4 2840 2841 2842 2843\n\t\tmu 0 4 1422 1427 1438 1428\n\t\tf 4 2844 2845 2846 -2842\n\t\tmu 0 4 1427 1437 1452 1438\n\t\tf 4 2847 2848 2849 -2846\n\t\tmu 0 4 1437 1451 1470 1452\n\t\tf 4 2850 2851 2852 -2849\n\t\tmu 0 4 1451 1469 1492 1470\n\t\tf 4 -2843 2853 2854 2855\n\t\tmu 0 4 1428 1438 1453 1439\n\t\tf 4 -2847 2856 2857 -2854\n\t\tmu 0 4 1438 1452 1471 1453\n\t\tf 4 -2850 2858 2859 -2857\n\t\tmu 0 4 1452 1470 1493 1471\n\t\tf 4 -2853 2860 2861 -2859\n\t\tmu 0 4 1470 1492 1514 1493\n\t\tf 4 -2855 2862 2863 2864\n\t\tmu 0 4 1439 1453 1472 1454\n\t\tf 4 -2858 2865 2866 -2863\n\t\tmu 0 4 1453 1471 1494 1472\n\t\tf 4 -2860 2867 2868 -2866\n\t\tmu 0 4 1471 1493 1515 1494\n\t\tf 4 -2862 2869 2870 -2868\n\t\tmu 0 4 1493 1514 1531 1515\n\t\tf 4 -2864 2871 -2816 2872\n\t\tmu 0 4 1454 1472 1495 1473\n\t\tf 4 -2867 2873 -2825 -2872\n\t\tmu 0 4 1472 1494 1516 1495\n\t\tf 4 -2869 2874 -2834 -2874\n\t\tmu 0 4 1494 1515 1532 1516\n\t\tf 4 -2871 2875 -2840 -2875\n\t\tmu 0 4 1515 1531 1544 1532\n\t\tf 4 2876 2877 2878 2879\n\t\tmu 0 4 4552 4558 4570 4559\n\t\tf 4 2880 2881 2882 -2878\n\t\tmu 0 4 4558 4569 4585 4570\n\t\tf 4 2883 2884 2885 -2882\n\t\tmu 0 4 4569 4584 4598 4585\n\t\tf 4 2886 -2725 2887 -2885\n\t\tmu 0 4 2921 2905 2920 2934\n\t\tf 4 -2879 2888 2889 2890\n\t\tmu 0 4 4559 4570 4586 4571\n\t\tf 4 -2883 2891 2892 -2889\n\t\tmu 0 4 4570 4585 4599 4586\n\t\tf 4 -2886 2893 2894 -2892\n\t\tmu 0 4 4585 4598 4607 4599\n\t\tf 4 -2888 -2728 2895 -2894\n\t\tmu 0 4 2934 2920 2933 2943\n\t\tf 4 -2890 2896 2897 2898\n\t\tmu 0 4 4571 4586 4600 4587\n\t\tf 4 -2893 2899 2900 -2897\n\t\tmu 0 4 4586 4599 4608 4600\n\t\tf 4 -2895 2901 2902 -2900\n\t\tmu 0 4 4599 4607 4612 4608\n\t\tf 4 -2896 -2730 2903 -2902\n\t\tmu 0 4 2943 2933 2942 2948\n\t\tf 4 -2898 2904 -2852 2905\n\t\tmu 0 4 1491 1513 1492 1469\n\t\tf 4 -2901 2906 -2861 -2905\n\t\tmu 0 4 1513 1530 1514 1492\n\t\tf 4 -2903 2907 -2870 -2907\n\t\tmu 0 4 1530 1543 1531 1514\n\t\tf 4 -2904 -2732 -2876 -2908\n\t\tmu 0 4 1543 1551 1544 1531\n\t\tf 4 2908 2909 2910 2911\n\t\tmu 0 4 4615 4620 4631 4621\n\t\tf 4 2912 2913 2914 -2910\n\t\tmu 0 4 4620 4630 4645 4631\n\t\tf 4 2915 2916 2917 -2914\n\t\tmu 0 4 4630 4644 4659 4645\n\t\tf 4 2918 2919 2920 -2917\n\t\tmu 0 4 1502 1478 1501 1522\n\t\tf 4 -2911 2921 2922 2923\n\t\tmu 0 4 4621 4631 4646 4632\n\t\tf 4 -2915 2924 2925 -2922\n\t\tmu 0 4 4631 4645 4660 4646\n\t\tf 4 -2918 2926 2927 -2925\n\t\tmu 0 4 4645 4659 4669 4660\n\t\tf 4 -2921 2928 2929 -2927\n\t\tmu 0 4 1522 1501 1521 1537\n\t\tf 4 -2923 2930 2931 2932\n\t\tmu 0 4 4632 4646 4661 4647\n\t\tf 4 -2926 2933 2934 -2931\n\t\tmu 0 4 4646 4660 4670 4661\n\t\tf 4 -2928 2935 2936 -2934\n\t\tmu 0 4 4660 4669 4675 4670\n\t\tf 4 -2930 2937 2938 -2936\n\t\tmu 0 4 1537 1521 1536 1548\n\t\tf 4 -2932 2939 2940 2941\n\t\tmu 0 4 2826 2839 2827 2810\n\t\tf 4 -2935 2942 2943 -2940\n\t\tmu 0 4 2839 2848 2840 2827\n\t\tf 4 -2937 2944 2945 -2943\n\t\tmu 0 4 2848 2853 2849 2840\n\t\tf 4 -2939 2946 2947 -2945\n\t\tmu 0 4 1548 1536 1547 1553\n\t\tf 4 2948 2949 2950 2951\n\t\tmu 0 4 1423 1429 1441 1430\n\t\tf 4 2952 2953 2954 -2950\n\t\tmu 0 4 1429 1440 1456 1441\n\t\tf 4 2955 2956 2957 -2954\n\t\tmu 0 4 1440 1455 1475 1456\n\t\tf 4 2958 2959 2960 -2957\n\t\tmu 0 4 1455 1474 1498 1475\n\t\tf 4 -2951 2961 2962 2963\n\t\tmu 0 4 1430 1441 1457 1442\n\t\tf 4 -2955 2964 2965 -2962\n\t\tmu 0 4 1441 1456 1476 1457\n\t\tf 4 -2958 2966 2967 -2965\n\t\tmu 0 4 1456 1475 1499 1476\n\t\tf 4 -2961 2968 2969 -2967\n\t\tmu 0 4 1475 1498 1519 1499\n\t\tf 4 -2963 2970 2971 2972\n\t\tmu 0 4 1442 1457 1477 1458\n\t\tf 4 -2966 2973 2974 -2971\n\t\tmu 0 4 1457 1476 1500 1477\n\t\tf 4 -2968 2975 2976 -2974\n\t\tmu 0 4 1476 1499 1520 1500\n\t\tf 4 -2970 2977 2978 -2976\n\t\tmu 0 4 1499 1519 1535 1520\n\t\tf 4 -2972 2979 -2920 2980\n\t\tmu 0 4 1458 1477 1501 1478\n\t\tf 4 -2975 2981 -2929 -2980\n\t\tmu 0 4 1477 1500 1521 1501\n\t\tf 4 -2977 2982 -2938 -2982\n\t\tmu 0 4 1500 1520 1536 1521\n\t\tf 4 -2979 2983 -2947 -2983\n\t\tmu 0 4 1520 1535 1547 1536\n\t\tf 4 2984 2985 2986 2987\n\t\tmu 0 4 2761 2767 2779 2768\n\t\tf 4 2988 2989 2990 -2986\n\t\tmu 0 4 2767 2778 2794 2779\n\t\tf 4 2991 2992 2993 -2990\n\t\tmu 0 4 2778 2793 2811 2794\n\t\tf 4 2994 -2941 2995 -2993\n\t\tmu 0 4 2793 2810 2827 2811\n\t\tf 4 -2987 2996 2997 2998\n\t\tmu 0 4 2768 2779 2795 2780\n\t\tf 4 -2991 2999 3000 -2997\n\t\tmu 0 4 2779 2794 2812 2795\n\t\tf 4 -2994 3001 3002 -3000\n\t\tmu 0 4 2794 2811 2828 2812\n\t\tf 4 -2996 -2944 3003 -3002\n\t\tmu 0 4 2811 2827 2840 2828\n\t\tf 4 -2998 3004 3005 3006\n\t\tmu 0 4 2780 2795 2813 2796\n\t\tf 4 -3001 3007 3008 -3005\n\t\tmu 0 4 2795 2812 2829 2813\n\t\tf 4 -3003 3009 3010 -3008\n\t\tmu 0 4 2812 2828 2841 2829\n\t\tf 4 -3004 -2946 3011 -3010\n\t\tmu 0 4 2828 2840 2849 2841\n\t\tf 4 -3006 3012 -2960 3013\n\t\tmu 0 4 1497 1518 1498 1474\n\t\tf 4 -3009 3014 -2969 -3013\n\t\tmu 0 4 1518 1534 1519 1498\n\t\tf 4 -3011 3015 -2978 -3015\n\t\tmu 0 4 1534 1546 1535 1519\n\t\tf 4 -3012 -2948 -2984 -3016\n\t\tmu 0 4 1546 1553 1547 1535\n\t\tf 4 3016 3017 3018 3019\n\t\tmu 0 4 3329 3333 3343 3334\n\t\tf 4 3020 3021 3022 -3018\n\t\tmu 0 4 3333 3342 3356 3343\n\t\tf 4 3023 3024 3025 -3022\n\t\tmu 0 4 3342 3355 3373 3356\n\t\tf 4 3026 3027 3028 -3025\n\t\tmu 0 4 3355 3372 3389 3373\n\t\tf 4 -3019 3029 3030 3031\n\t\tmu 0 4 3334 3343 3357 3344\n\t\tf 4 -3023 3032 3033 -3030\n\t\tmu 0 4 3343 3356 3374 3357\n\t\tf 4 -3026 3034 3035 -3033\n\t\tmu 0 4 3356 3373 3390 3374\n\t\tf 4 -3029 3036 3037 -3035\n\t\tmu 0 4 3373 3389 3404 3390\n\t\tf 4 -3031 3038 3039 3040\n\t\tmu 0 4 3344 3357 3375 3358\n\t\tf 4 -3034 3041 3042 -3039\n\t\tmu 0 4 3357 3374 3391 3375\n\t\tf 4 -3036 3043 3044 -3042\n\t\tmu 0 4 3374 3390 3405 3391\n\t\tf 4 -3038 3045 3046 -3044\n\t\tmu 0 4 3390 3404 3415 3405\n\t\tf 4 -3040 3047 3048 3049\n\t\tmu 0 4 1264 1318 1265 1205\n\t\tf 4 -3043 3050 3051 -3048\n\t\tmu 0 4 1318 1362 1319 1265\n\t\tf 4 -3045 3052 3053 -3051\n\t\tmu 0 4 1362 1395 1363 1319\n\t\tf 4 -3047 3054 3055 -3053\n\t\tmu 0 4 1395 1413 1396 1363\n\t\tf 4 3056 3057 3058 3059\n\t\tmu 0 4 4741 4752 4756 4745\n\t\tf 4 3060 3061 3062 -3058\n\t\tmu 0 4 4752 4764 4770 4756\n\t\tf 4 3063 3064 3065 -3062\n\t\tmu 0 4 4764 4780 4786 4770\n\t\tf 4 3066 3067 3068 -3065\n\t\tmu 0 4 1269 1209 1268 1322\n\t\tf 4 -3059 3069 3070 3071\n\t\tmu 0 4 4745 4756 4768 4753\n\t\tf 4 -3063 3072 3073 -3070\n\t\tmu 0 4 4756 4770 4784 4768\n\t\tf 4 -3066 3074 3075 -3073\n\t\tmu 0 4 4770 4786 4796 4784\n\t\tf 4 -3069 3076 3077 -3075\n\t\tmu 0 4 1322 1268 1321 1365\n\t\tf 4 -3071 3078 3079 3080\n\t\tmu 0 4 4753 4768 4782 4765\n\t\tf 4 -3074 3081 3082 -3079\n\t\tmu 0 4 4768 4784 4794 4782\n\t\tf 4 -3076 3083 3084 -3082\n\t\tmu 0 4 4784 4796 4802 4794\n\t\tf 4 -3078 3085 3086 -3084\n\t\tmu 0 4 1365 1321 1364 1397\n\t\tf 4 -3080 3087 -3028 3088\n\t\tmu 0 4 3388 3403 3389 3372\n\t\tf 4 -3083 3089 -3037 -3088\n\t\tmu 0 4 3403 3414 3404 3389\n\t\tf 4 -3085 3090 -3046 -3090\n\t\tmu 0 4 3414 3421 3415 3404\n\t\tf 4 -3087 3091 -3055 -3091\n\t\tmu 0 4 1397 1364 1396 1413\n\t\tf 4 3092 3093 3094 3095\n\t\tmu 0 4 1030 1070 1107 1071\n\t\tf 4 3096 3097 3098 -3094\n\t\tmu 0 4 1070 1106 1153 1107\n\t\tf 4 3099 3100 3101 -3098\n\t\tmu 0 4 1106 1152 1206 1153\n\t\tf 4 3102 -3049 3103 -3101\n\t\tmu 0 4 1152 1205 1265 1206\n\t\tf 4 -3095 3104 3105 3106\n\t\tmu 0 4 1071 1107 1154 1108\n\t\tf 4 -3099 3107 3108 -3105\n\t\tmu 0 4 1107 1153 1207 1154\n\t\tf 4 -3102 3109 3110 -3108\n\t\tmu 0 4 1153 1206 1266 1207\n\t\tf 4 -3104 -3052 3111 -3110\n\t\tmu 0 4 1206 1265 1319 1266\n\t\tf 4 -3106 3112 3113 3114\n\t\tmu 0 4 1108 1154 1208 1155\n\t\tf 4 -3109 3115 3116 -3113\n\t\tmu 0 4 1154 1207 1267 1208\n\t\tf 4 -3111 3117 3118 -3116\n\t\tmu 0 4 1207 1266 1320 1267\n\t\tf 4 -3112 -3054 3119 -3118\n\t\tmu 0 4 1266 1319 1363 1320\n\t\tf 4 -3114 3120 -3068 3121\n\t\tmu 0 4 1155 1208 1268 1209\n\t\tf 4 -3117 3122 -3077 -3121\n\t\tmu 0 4 1208 1267 1321 1268\n\t\tf 4 -3119 3123 -3086 -3123\n\t\tmu 0 4 1267 1320 1364 1321\n\t\tf 4 -3120 -3056 -3092 -3124\n\t\tmu 0 4 1320 1363 1396 1364\n\t\tf 4 3124 3125 3126 3127\n\t\tmu 0 4 4293 4304 4308 4297\n\t\tf 4 3128 3129 3130 -3126\n\t\tmu 0 4 4304 4316 4322 4308\n\t\tf 4 3131 3132 3133 -3130\n\t\tmu 0 4 4316 4332 4338 4322\n\t\tf 4 3134 3135 3136 -3133\n\t\tmu 0 4 717 716 707 708\n\t\tf 4 -3127 3137 3138 3139\n\t\tmu 0 4 4297 4308 4320 4305\n\t\tf 4 -3131 3140 3141 -3138\n\t\tmu 0 4 4308 4322 4336 4320\n\t\tf 4 -3134 3142 3143 -3141\n\t\tmu 0 4 4322 4338 4348 4336\n\t\tf 4 -3137 3144 3145 -3143\n\t\tmu 0 4 708 707 697 698\n\t\tf 4 -3139 3146 3147 3148\n\t\tmu 0 4 4305 4320 4334 4317\n\t\tf 4 -3142 3149 3150 -3147\n\t\tmu 0 4 4320 4336 4346 4334\n\t\tf 4 -3144 3151 3152 -3150\n\t\tmu 0 4 4336 4348 4354 4346\n\t\tf 4 -3146 3153 3154 -3152\n\t\tmu 0 4 698 697 686 687\n\t\tf 4 -3148 3155 3156 3157\n\t\tmu 0 4 2818 2833 2819 2802\n\t\tf 4 -3151 3158 3159 -3156\n\t\tmu 0 4 2833 2844 2834 2819\n\t\tf 4 -3153 3160 3161 -3159\n\t\tmu 0 4 2844 2851 2845 2834\n\t\tf 4 -3155 3162 3163 -3161\n\t\tmu 0 4 687 686 675 674\n\t\tf 4 3164 3165 3166 3167\n\t\tmu 0 4 670 659 671 683\n\t\tf 4 3168 3169 3170 -3166\n\t\tmu 0 4 659 649 660 671\n\t\tf 4 3171 3172 3173 -3170\n\t\tmu 0 4 649 640 650 660\n\t\tf 4 3174 3175 3176 -3173\n\t\tmu 0 4 640 632 642 650\n\t\tf 4 -3167 3177 3178 3179\n\t\tmu 0 4 683 671 684 695\n\t\tf 4 -3171 3180 3181 -3178\n\t\tmu 0 4 671 660 672 684\n\t\tf 4 -3174 3182 3183 -3181\n\t\tmu 0 4 660 650 661 672\n\t\tf 4 -3177 3184 3185 -3183\n\t\tmu 0 4 650 642 652 661\n\t\tf 4 -3179 3186 3187 3188\n\t\tmu 0 4 695 684 696 706\n\t\tf 4 -3182 3189 3190 -3187\n\t\tmu 0 4 684 672 685 696\n\t\tf 4 -3184 3191 3192 -3190\n\t\tmu 0 4 672 661 673 685\n\t\tf 4 -3186 3193 3194 -3192\n\t\tmu 0 4 661 652 663 673\n\t\tf 4 -3188 3195 -3136 3196\n\t\tmu 0 4 706 696 707 716\n\t\tf 4 -3191 3197 -3145 -3196\n\t\tmu 0 4 696 685 697 707\n\t\tf 4 -3193 3198 -3154 -3198\n\t\tmu 0 4 685 673 686 697\n\t\tf 4 -3195 3199 -3163 -3199\n\t\tmu 0 4 673 663 675 686\n\t\tf 4 3200 3201 3202 3203\n\t\tmu 0 4 2759 2763 2773 2764\n\t\tf 4 3204 3205 3206 -3202\n\t\tmu 0 4 2763 2772 2786 2773\n\t\tf 4 3207 3208 3209 -3206\n\t\tmu 0 4 2772 2785 2803 2786\n\t\tf 4 3210 -3157 3211 -3209\n\t\tmu 0 4 2785 2802 2819 2803\n\t\tf 4 -3203 3212 3213 3214\n\t\tmu 0 4 2764 2773 2787 2774\n\t\tf 4 -3207 3215 3216 -3213\n\t\tmu 0 4 2773 2786 2804 2787\n\t\tf 4 -3210 3217 3218 -3216\n\t\tmu 0 4 2786 2803 2820 2804\n\t\tf 4 -3212 -3160 3219 -3218\n\t\tmu 0 4 2803 2819 2834 2820\n\t\tf 4 -3214 3220 3221 3222\n\t\tmu 0 4 2774 2787 2805 2788\n\t\tf 4 -3217 3223 3224 -3221\n\t\tmu 0 4 2787 2804 2821 2805\n\t\tf 4 -3219 3225 3226 -3224\n\t\tmu 0 4 2804 2820 2835 2821\n\t\tf 4 -3220 -3162 3227 -3226\n\t\tmu 0 4 2820 2834 2845 2835\n\t\tf 4 -3222 3228 -3176 3229\n\t\tmu 0 4 633 641 642 632\n\t\tf 4 -3225 3230 -3185 -3229\n\t\tmu 0 4 641 651 652 642\n\t\tf 4 -3227 3231 -3194 -3231\n\t\tmu 0 4 651 662 663 652\n\t\tf 4 -3228 -3164 -3200 -3232\n\t\tmu 0 4 662 674 675 663\n\t\tf 4 3232 3233 3234 3235\n\t\tmu 0 4 3891 3938 3939 3912\n\t\tf 4 3236 3237 3238 -3234\n\t\tmu 0 4 3938 3964 3965 3939\n\t\tf 4 3239 3240 3241 -3238\n\t\tmu 0 4 3964 3993 3994 3965\n\t\tf 4 3242 3243 3244 -3241\n\t\tmu 0 4 3993 4022 4023 3994\n\t\tf 4 -3235 3245 3246 3247\n\t\tmu 0 4 3912 3939 3962 3935\n\t\tf 4 -3239 3248 3249 -3246\n\t\tmu 0 4 3939 3965 3991 3962\n\t\tf 4 -3242 3250 3251 -3249\n\t\tmu 0 4 3965 3994 4021 3991\n\t\tf 4 -3245 3252 3253 -3251\n\t\tmu 0 4 3994 4023 4045 4021\n\t\tf 4 -3247 3254 3255 3256\n\t\tmu 0 4 3935 3962 3989 3959\n\t\tf 4 -3250 3257 3258 -3255\n\t\tmu 0 4 3962 3991 4017 3989\n\t\tf 4 -3252 3259 3260 -3258\n\t\tmu 0 4 3991 4021 4041 4017\n\t\tf 4 -3254 3261 3262 -3260\n\t\tmu 0 4 4021 4045 4063 4041\n\t\tf 4 -3256 3263 3264 3265\n\t\tmu 0 4 3959 3989 4018 4019\n\t\tf 4 -3259 3266 3267 -3264\n\t\tmu 0 4 3989 4017 4042 4018\n\t\tf 4 -3261 3268 3269 -3267\n\t\tmu 0 4 4017 4041 4064 4042\n\t\tf 4 -3263 3270 3271 -3269\n\t\tmu 0 4 4041 4063 4077 4064\n\t\tf 4 3272 3273 3274 3275\n\t\tmu 0 4 1749 1738 1750 1762\n\t\tf 4 3276 3277 3278 -3274\n\t\tmu 0 4 1738 1728 1739 1750\n\t\tf 4 3279 3280 3281 -3278\n\t\tmu 0 4 1728 1719 1729 1739\n\t\tf 4 3282 3283 3284 -3281\n\t\tmu 0 4 1719 1711 1721 1729\n\t\tf 4 -3275 3285 3286 3287\n\t\tmu 0 4 1762 1750 1763 1773\n\t\tf 4 -3279 3288 3289 -3286\n\t\tmu 0 4 1750 1739 1751 1763\n\t\tf 4 -3282 3290 3291 -3289\n\t\tmu 0 4 1739 1729 1740 1751\n\t\tf 4 -3285 3292 3293 -3291\n\t\tmu 0 4 1729 1721 1731 1740\n\t\tf 4 -3287 3294 3295 3296\n\t\tmu 0 4 1773 1763 1774 1783\n\t\tf 4 -3290 3297 3298 -3295\n\t\tmu 0 4 1763 1751 1764 1774\n\t\tf 4 -3292 3299 3300 -3298\n\t\tmu 0 4 1751 1740 1752 1764\n\t\tf 4 -3294 3301 3302 -3300\n\t\tmu 0 4 1740 1731 1742 1752\n\t\tf 4 -3296 3303 -3244 3304\n\t\tmu 0 4 1783 1774 1784 1792\n\t\tf 4 -3299 3305 -3253 -3304\n\t\tmu 0 4 1774 1764 1775 1784\n\t\tf 4 -3301 3306 -3262 -3306\n\t\tmu 0 4 1764 1752 1765 1775\n\t\tf 4 -3303 3307 -3271 -3307\n\t\tmu 0 4 1752 1742 1754 1765\n\t\tf 4 3308 3309 3310 3311\n\t\tmu 0 4 3044 3048 3058 3049\n\t\tf 4 3312 3313 3314 -3310\n\t\tmu 0 4 3048 3057 3071 3058\n\t\tf 4 3315 3316 3317 -3314\n\t\tmu 0 4 3057 3070 3088 3071\n\t\tf 4 3318 -3265 3319 -3317\n\t\tmu 0 4 4043 4019 4018 4044\n\t\tf 4 -3311 3320 3321 3322\n\t\tmu 0 4 3049 3058 3072 3059\n\t\tf 4 -3315 3323 3324 -3321\n\t\tmu 0 4 3058 3071 3089 3072\n\t\tf 4 -3318 3325 3326 -3324\n\t\tmu 0 4 3071 3088 3104 3089\n\t\tf 4 -3320 -3268 3327 -3326\n\t\tmu 0 4 3088 3117 3118 3104\n\t\tf 4 -3322 3328 3329 3330\n\t\tmu 0 4 3059 3072 3090 3073\n\t\tf 4 -3325 3331 3332 -3329\n\t\tmu 0 4 3072 3089 3105 3090\n\t\tf 4 -3327 3333 3334 -3332\n\t\tmu 0 4 3089 3104 3119 3105\n\t\tf 4 -3328 -3270 3335 -3334\n\t\tmu 0 4 3104 3118 3128 3119\n\t\tf 4 -3330 3336 -3284 3337\n\t\tmu 0 4 1712 1720 1721 1711\n\t\tf 4 -3333 3338 -3293 -3337\n\t\tmu 0 4 1720 1730 1731 1721\n\t\tf 4 -3335 3339 -3302 -3339\n\t\tmu 0 4 1730 1741 1742 1731\n\t\tf 4 -3336 -3272 -3308 -3340\n\t\tmu 0 4 1741 1753 1754 1742\n\t\tf 4 3340 3341 3342 3343\n\t\tmu 0 4 3892 3913 3937 3914\n\t\tf 4 3344 3345 3346 -3342\n\t\tmu 0 4 3913 3936 3961 3937\n\t\tf 4 3347 3348 3349 -3346\n\t\tmu 0 4 3936 3960 3988 3961\n\t\tf 4 3350 3351 3352 -3349\n\t\tmu 0 4 3102 3086 3101 3116\n\t\tf 4 -3343 3353 3354 3355\n\t\tmu 0 4 3914 3937 3963 3940\n\t\tf 4 -3347 3356 3357 -3354\n\t\tmu 0 4 3937 3961 3990 3963\n\t\tf 4 -3350 3358 3359 -3357\n\t\tmu 0 4 3961 3988 4016 3990\n\t\tf 4 -3353 3360 3361 -3359\n\t\tmu 0 4 3116 3101 3115 3127\n\t\tf 4 -3355 3362 3363 3364\n\t\tmu 0 4 3940 3963 3992 3966\n\t\tf 4 -3358 3365 3366 -3363\n\t\tmu 0 4 3963 3990 4020 3992\n\t\tf 4 -3360 3367 3368 -3366\n\t\tmu 0 4 3990 4016 4040 4020\n\t\tf 4 -3362 3369 3370 -3368\n\t\tmu 0 4 3127 3115 3126 3133\n\t\tf 4 -3364 3371 3372 3373\n\t\tmu 0 4 2067 2073 2068 2060\n\t\tf 4 -3367 3374 3375 -3372\n\t\tmu 0 4 2073 2078 2074 2068\n\t\tf 4 -3369 3376 3377 -3375\n\t\tmu 0 4 2078 2082 2079 2074\n\t\tf 4 -3371 3378 3379 -3377\n\t\tmu 0 4 2082 2084 2083 2079\n\t\tf 4 3380 3381 3382 3383\n\t\tmu 0 4 3043 3054 3055 3047\n\t\tf 4 3384 3385 3386 -3382\n\t\tmu 0 4 3054 3066 3067 3055\n\t\tf 4 3387 3388 3389 -3386\n\t\tmu 0 4 3066 3082 3083 3067\n\t\tf 4 3390 3391 3392 -3389\n\t\tmu 0 4 2065 2064 2071 2072\n\t\tf 4 -3383 3393 3394 3395\n\t\tmu 0 4 3047 3055 3068 3056\n\t\tf 4 -3387 3396 3397 -3394\n\t\tmu 0 4 3055 3067 3084 3068\n\t\tf 4 -3390 3398 3399 -3397\n\t\tmu 0 4 3067 3083 3099 3084\n\t\tf 4 -3393 3400 3401 -3399\n\t\tmu 0 4 2072 2071 2076 2077\n\t\tf 4 -3395 3402 3403 3404\n\t\tmu 0 4 3056 3068 3085 3069\n\t\tf 4 -3398 3405 3406 -3403\n\t\tmu 0 4 3068 3084 3100 3085\n\t\tf 4 -3400 3407 3408 -3406\n\t\tmu 0 4 3084 3099 3114 3100\n\t\tf 4 -3402 3409 3410 -3408\n\t\tmu 0 4 2077 2076 2080 2081\n\t\tf 4 -3404 3411 -3352 3412\n\t\tmu 0 4 3069 3085 3101 3086\n\t\tf 4 -3407 3413 -3361 -3412\n\t\tmu 0 4 3085 3100 3115 3101\n\t\tf 4 -3409 3414 -3370 -3414\n\t\tmu 0 4 3100 3114 3126 3115\n\t\tf 4 -3411 3415 -3379 -3415\n\t\tmu 0 4 2081 2080 2083 2084\n\t\tf 4 3416 3417 3418 3419\n\t\tmu 0 4 2026 2036 2046 2037\n\t\tf 4 3420 3421 3422 -3418\n\t\tmu 0 4 2036 2045 2054 2046\n\t\tf 4 3423 3424 3425 -3422\n\t\tmu 0 4 2045 2053 2061 2054\n\t\tf 4 3426 -3373 3427 -3425\n\t\tmu 0 4 2053 2060 2068 2061\n\t\tf 4 -3419 3428 3429 3430\n\t\tmu 0 4 2037 2046 2055 2047\n\t\tf 4 -3423 3431 3432 -3429\n\t\tmu 0 4 2046 2054 2062 2055\n\t\tf 4 -3426 3433 3434 -3432\n\t\tmu 0 4 2054 2061 2069 2062\n\t\tf 4 -3428 -3376 3435 -3434\n\t\tmu 0 4 2061 2068 2074 2069\n\t\tf 4 -3430 3436 3437 3438\n\t\tmu 0 4 2047 2055 2063 2056\n\t\tf 4 -3433 3439 3440 -3437\n\t\tmu 0 4 2055 2062 2070 2063\n\t\tf 4 -3435 3441 3442 -3440\n\t\tmu 0 4 2062 2069 2075 2070\n\t\tf 4 -3436 -3378 3443 -3442\n\t\tmu 0 4 2069 2074 2079 2075\n\t\tf 4 -3438 3444 -3392 3445\n\t\tmu 0 4 2056 2063 2071 2064\n\t\tf 4 -3441 3446 -3401 -3445\n\t\tmu 0 4 2063 2070 2076 2071\n\t\tf 4 -3443 3447 -3410 -3447\n\t\tmu 0 4 2070 2075 2080 2076\n\t\tf 4 -3444 -3380 -3416 -3448\n\t\tmu 0 4 2075 2079 2083 2080\n\t\tf 4 3448 3449 3450 3451\n\t\tmu 0 4 1043 1064 1098 1065\n\t\tf 4 3452 3453 3454 -3450\n\t\tmu 0 4 1064 1097 1141 1098\n\t\tf 4 3455 3456 3457 -3454\n\t\tmu 0 4 1097 1140 1191 1141\n\t\tf 4 3458 3459 3460 -3457\n\t\tmu 0 4 1140 1190 1247 1191\n\t\tf 4 -3451 3461 3462 3463\n\t\tmu 0 4 1065 1098 1142 1099\n\t\tf 4 -3455 3464 3465 -3462\n\t\tmu 0 4 1098 1141 1192 1142\n\t\tf 4 -3458 3466 3467 -3465\n\t\tmu 0 4 1141 1191 1248 1192\n\t\tf 4 -3461 3468 3469 -3467\n\t\tmu 0 4 1191 1247 1304 1248\n\t\tf 4 -3463 3470 3471 3472\n\t\tmu 0 4 1099 1142 1193 1143\n\t\tf 4 -3466 3473 3474 -3471\n\t\tmu 0 4 1142 1192 1249 1193\n\t\tf 4 -3468 3475 3476 -3474\n\t\tmu 0 4 1192 1248 1305 1249\n\t\tf 4 -3470 3477 3478 -3476\n\t\tmu 0 4 1248 1304 1351 1305\n\t\tf 4 -3472 3479 3480 3481\n\t\tmu 0 4 1143 1193 1250 1194\n\t\tf 4 -3475 3482 3483 -3480\n\t\tmu 0 4 1193 1249 1306 1250\n\t\tf 4 -3477 3484 3485 -3483\n\t\tmu 0 4 1249 1305 1352 1306\n\t\tf 4 -3479 3486 3487 -3485\n\t\tmu 0 4 1305 1351 1387 1352\n\t\tf 4 3488 3489 3490 3491\n\t\tmu 0 4 4360 4366 4378 4367\n\t\tf 4 3492 3493 3494 -3490\n\t\tmu 0 4 4366 4377 4393 4378\n\t\tf 4 3495 3496 3497 -3494\n\t\tmu 0 4 4377 4392 4406 4393\n\t\tf 4 3498 3499 3500 -3497\n\t\tmu 0 4 3203 3187 3202 3216\n\t\tf 4 -3491 3501 3502 3503\n\t\tmu 0 4 4367 4378 4394 4379\n\t\tf 4 -3495 3504 3505 -3502\n\t\tmu 0 4 4378 4393 4407 4394\n\t\tf 4 -3498 3506 3507 -3505\n\t\tmu 0 4 4393 4406 4415 4407\n\t\tf 4 -3501 3508 3509 -3507\n\t\tmu 0 4 3216 3202 3215 3225\n\t\tf 4 -3503 3510 3511 3512\n\t\tmu 0 4 4379 4394 4408 4395\n\t\tf 4 -3506 3513 3514 -3511\n\t\tmu 0 4 4394 4407 4416 4408\n\t\tf 4 -3508 3515 3516 -3514\n\t\tmu 0 4 4407 4415 4420 4416\n\t\tf 4 -3510 3517 3518 -3516\n\t\tmu 0 4 3225 3215 3224 3230\n\t\tf 4 -3512 3519 -3460 3520\n\t\tmu 0 4 1246 1303 1247 1190\n\t\tf 4 -3515 3521 -3469 -3520\n\t\tmu 0 4 1303 1350 1304 1247\n\t\tf 4 -3517 3522 -3478 -3522\n\t\tmu 0 4 1350 1386 1351 1304\n\t\tf 4 -3519 3523 -3487 -3523\n\t\tmu 0 4 1386 1410 1387 1351\n\t\tf 4 3524 3525 3526 3527\n\t\tmu 0 4 3138 3143 3154 3144\n\t\tf 4 3528 3529 3530 -3526\n\t\tmu 0 4 3143 3153 3168 3154\n\t\tf 4 3531 3532 3533 -3530\n\t\tmu 0 4 3153 3167 3184 3168\n\t\tf 4 3534 -3481 3535 -3533\n\t\tmu 0 4 1251 1194 1250 1307;\n\tsetAttr \".fc[1500:1999]\"\n\t\tf 4 -3527 3536 3537 3538\n\t\tmu 0 4 3144 3154 3169 3155\n\t\tf 4 -3531 3539 3540 -3537\n\t\tmu 0 4 3154 3168 3185 3169\n\t\tf 4 -3534 3541 3542 -3540\n\t\tmu 0 4 3168 3184 3200 3185\n\t\tf 4 -3536 -3484 3543 -3542\n\t\tmu 0 4 1307 1250 1306 1353\n\t\tf 4 -3538 3544 3545 3546\n\t\tmu 0 4 3155 3169 3186 3170\n\t\tf 4 -3541 3547 3548 -3545\n\t\tmu 0 4 3169 3185 3201 3186\n\t\tf 4 -3543 3549 3550 -3548\n\t\tmu 0 4 3185 3200 3214 3201\n\t\tf 4 -3544 -3486 3551 -3550\n\t\tmu 0 4 1353 1306 1352 1388\n\t\tf 4 -3546 3552 -3500 3553\n\t\tmu 0 4 3170 3186 3202 3187\n\t\tf 4 -3549 3554 -3509 -3553\n\t\tmu 0 4 3186 3201 3215 3202\n\t\tf 4 -3551 3555 -3518 -3555\n\t\tmu 0 4 3201 3214 3224 3215\n\t\tf 4 -3552 -3488 -3524 -3556\n\t\tmu 0 4 1388 1352 1387 1410\n\t\tf 4 3556 3557 3558 3559\n\t\tmu 0 4 3137 3141 3151 3142\n\t\tf 4 3560 3561 3562 -3558\n\t\tmu 0 4 3141 3150 3164 3151\n\t\tf 4 3563 3564 3565 -3562\n\t\tmu 0 4 3150 3163 3181 3164\n\t\tf 4 3566 3567 3568 -3565\n\t\tmu 0 4 3163 3180 3197 3181\n\t\tf 4 -3559 3569 3570 3571\n\t\tmu 0 4 3142 3151 3165 3152\n\t\tf 4 -3563 3572 3573 -3570\n\t\tmu 0 4 3151 3164 3182 3165\n\t\tf 4 -3566 3574 3575 -3573\n\t\tmu 0 4 3164 3181 3198 3182\n\t\tf 4 -3569 3576 3577 -3575\n\t\tmu 0 4 3181 3197 3212 3198\n\t\tf 4 -3571 3578 3579 3580\n\t\tmu 0 4 3152 3165 3183 3166\n\t\tf 4 -3574 3581 3582 -3579\n\t\tmu 0 4 3165 3182 3199 3183\n\t\tf 4 -3576 3583 3584 -3582\n\t\tmu 0 4 3182 3198 3213 3199\n\t\tf 4 -3578 3585 3586 -3584\n\t\tmu 0 4 3198 3212 3223 3213\n\t\tf 4 -3580 3587 3588 3589\n\t\tmu 0 4 1252 1308 1253 1195\n\t\tf 4 -3583 3590 3591 -3588\n\t\tmu 0 4 1308 1354 1309 1253\n\t\tf 4 -3585 3592 3593 -3591\n\t\tmu 0 4 1354 1389 1355 1309\n\t\tf 4 -3587 3594 3595 -3593\n\t\tmu 0 4 1389 1411 1390 1355\n\t\tf 4 3596 3597 3598 3599\n\t\tmu 0 4 4485 4496 4500 4489\n\t\tf 4 3600 3601 3602 -3598\n\t\tmu 0 4 4496 4508 4514 4500\n\t\tf 4 3603 3604 3605 -3602\n\t\tmu 0 4 4508 4524 4530 4514\n\t\tf 4 3606 3607 3608 -3605\n\t\tmu 0 4 1257 1199 1256 1312\n\t\tf 4 -3599 3609 3610 3611\n\t\tmu 0 4 4489 4500 4512 4497\n\t\tf 4 -3603 3612 3613 -3610\n\t\tmu 0 4 4500 4514 4528 4512\n\t\tf 4 -3606 3614 3615 -3613\n\t\tmu 0 4 4514 4530 4540 4528\n\t\tf 4 -3609 3616 3617 -3615\n\t\tmu 0 4 1312 1256 1311 1357\n\t\tf 4 -3611 3618 3619 3620\n\t\tmu 0 4 4497 4512 4526 4509\n\t\tf 4 -3614 3621 3622 -3619\n\t\tmu 0 4 4512 4528 4538 4526\n\t\tf 4 -3616 3623 3624 -3622\n\t\tmu 0 4 4528 4540 4546 4538\n\t\tf 4 -3618 3625 3626 -3624\n\t\tmu 0 4 1357 1311 1356 1391\n\t\tf 4 -3620 3627 -3568 3628\n\t\tmu 0 4 3196 3211 3197 3180\n\t\tf 4 -3623 3629 -3577 -3628\n\t\tmu 0 4 3211 3222 3212 3197\n\t\tf 4 -3625 3630 -3586 -3630\n\t\tmu 0 4 3222 3229 3223 3212\n\t\tf 4 -3627 3631 -3595 -3631\n\t\tmu 0 4 1391 1356 1390 1411\n\t\tf 4 3632 3633 3634 3635\n\t\tmu 0 4 1029 1066 1101 1067\n\t\tf 4 3636 3637 3638 -3634\n\t\tmu 0 4 1066 1100 1145 1101\n\t\tf 4 3639 3640 3641 -3638\n\t\tmu 0 4 1100 1144 1196 1145\n\t\tf 4 3642 -3589 3643 -3641\n\t\tmu 0 4 1144 1195 1253 1196\n\t\tf 4 -3635 3644 3645 3646\n\t\tmu 0 4 1067 1101 1146 1102\n\t\tf 4 -3639 3647 3648 -3645\n\t\tmu 0 4 1101 1145 1197 1146\n\t\tf 4 -3642 3649 3650 -3648\n\t\tmu 0 4 1145 1196 1254 1197\n\t\tf 4 -3644 -3592 3651 -3650\n\t\tmu 0 4 1196 1253 1309 1254\n\t\tf 4 -3646 3652 3653 3654\n\t\tmu 0 4 1102 1146 1198 1147\n\t\tf 4 -3649 3655 3656 -3653\n\t\tmu 0 4 1146 1197 1255 1198\n\t\tf 4 -3651 3657 3658 -3656\n\t\tmu 0 4 1197 1254 1310 1255\n\t\tf 4 -3652 -3594 3659 -3658\n\t\tmu 0 4 1254 1309 1355 1310\n\t\tf 4 -3654 3660 -3608 3661\n\t\tmu 0 4 1147 1198 1256 1199\n\t\tf 4 -3657 3662 -3617 -3661\n\t\tmu 0 4 1198 1255 1311 1256\n\t\tf 4 -3659 3663 -3626 -3663\n\t\tmu 0 4 1255 1310 1356 1311\n\t\tf 4 -3660 -3596 -3632 -3664\n\t\tmu 0 4 1310 1355 1390 1356\n\t\tf 4 3664 3665 3666 3667\n\t\tmu 0 4 2020 2031 2021 2009\n\t\tf 4 3668 3669 3670 -3666\n\t\tmu 0 4 2031 2041 2032 2021\n\t\tf 4 3671 3672 3673 -3670\n\t\tmu 0 4 2041 2050 2042 2032\n\t\tf 4 3674 3675 3676 -3673\n\t\tmu 0 4 2050 2058 2051 2042\n\t\tf 4 -3667 3677 3678 3679\n\t\tmu 0 4 2009 2021 2010 1999\n\t\tf 4 -3671 3680 3681 -3678\n\t\tmu 0 4 2021 2032 2022 2010\n\t\tf 4 -3674 3682 3683 -3681\n\t\tmu 0 4 2032 2042 2033 2022\n\t\tf 4 -3677 3684 3685 -3683\n\t\tmu 0 4 2042 2051 2043 2033\n\t\tf 4 -3679 3686 3687 3688\n\t\tmu 0 4 1999 2010 2000 1990\n\t\tf 4 -3682 3689 3690 -3687\n\t\tmu 0 4 2010 2022 2011 2000\n\t\tf 4 -3684 3691 3692 -3690\n\t\tmu 0 4 2022 2033 2023 2011\n\t\tf 4 -3686 3693 3694 -3692\n\t\tmu 0 4 2033 2043 2034 2023\n\t\tf 4 -3688 3695 3696 3697\n\t\tmu 0 4 1990 2000 1991 1983\n\t\tf 4 -3691 3698 3699 -3696\n\t\tmu 0 4 2000 2011 2001 1991\n\t\tf 4 -3693 3700 3701 -3699\n\t\tmu 0 4 2011 2023 2012 2001\n\t\tf 4 -3695 3702 3703 -3701\n\t\tmu 0 4 2023 2034 2024 2012\n\t\tf 4 3704 3705 3706 3707\n\t\tmu 0 4 3046 3052 3064 3053\n\t\tf 4 3708 3709 3710 -3706\n\t\tmu 0 4 3052 3063 3079 3064\n\t\tf 4 3711 3712 3713 -3710\n\t\tmu 0 4 3063 3078 3096 3079\n\t\tf 4 3714 3715 3716 -3713\n\t\tmu 0 4 3078 3095 3111 3096\n\t\tf 4 -3707 3717 3718 3719\n\t\tmu 0 4 3053 3064 3080 3065\n\t\tf 4 -3711 3720 3721 -3718\n\t\tmu 0 4 3064 3079 3097 3080\n\t\tf 4 -3714 3722 3723 -3721\n\t\tmu 0 4 3079 3096 3112 3097\n\t\tf 4 -3717 3724 3725 -3723\n\t\tmu 0 4 3096 3111 3124 3112\n\t\tf 4 -3719 3726 3727 3728\n\t\tmu 0 4 3065 3080 3098 3081\n\t\tf 4 -3722 3729 3730 -3727\n\t\tmu 0 4 3080 3097 3113 3098\n\t\tf 4 -3724 3731 3732 -3730\n\t\tmu 0 4 3097 3112 3125 3113\n\t\tf 4 -3726 3733 3734 -3732\n\t\tmu 0 4 3112 3124 3132 3125\n\t\tf 4 -3728 3735 -3676 3736\n\t\tmu 0 4 2059 2052 2051 2058\n\t\tf 4 -3731 3737 -3685 -3736\n\t\tmu 0 4 2052 2044 2043 2051\n\t\tf 4 -3733 3738 -3694 -3738\n\t\tmu 0 4 2044 2035 2034 2043\n\t\tf 4 -3735 3739 -3703 -3739\n\t\tmu 0 4 2035 2025 2024 2034\n\t\tf 4 3740 3741 3742 3743\n\t\tmu 0 4 4423 4428 4439 4429\n\t\tf 4 3744 3745 3746 -3742\n\t\tmu 0 4 4428 4438 4453 4439\n\t\tf 4 3747 3748 3749 -3746\n\t\tmu 0 4 4438 4452 4467 4453\n\t\tf 4 3750 -3697 3751 -3749\n\t\tmu 0 4 1982 1983 1991 1992\n\t\tf 4 -3743 3752 3753 3754\n\t\tmu 0 4 4429 4439 4454 4440\n\t\tf 4 -3747 3755 3756 -3753\n\t\tmu 0 4 4439 4453 4468 4454\n\t\tf 4 -3750 3757 3758 -3756\n\t\tmu 0 4 4453 4467 4477 4468\n\t\tf 4 -3752 -3700 3759 -3758\n\t\tmu 0 4 1992 1991 2001 2002\n\t\tf 4 -3754 3760 3761 3762\n\t\tmu 0 4 4440 4454 4469 4455\n\t\tf 4 -3757 3763 3764 -3761\n\t\tmu 0 4 4454 4468 4478 4469\n\t\tf 4 -3759 3765 3766 -3764\n\t\tmu 0 4 4468 4477 4483 4478\n\t\tf 4 -3760 -3702 3767 -3766\n\t\tmu 0 4 2002 2001 2012 2013\n\t\tf 4 -3762 3768 -3716 3769\n\t\tmu 0 4 3110 3123 3111 3095\n\t\tf 4 -3765 3770 -3725 -3769\n\t\tmu 0 4 3123 3131 3124 3111\n\t\tf 4 -3767 3771 -3734 -3771\n\t\tmu 0 4 3131 3135 3132 3124\n\t\tf 4 -3768 -3704 -3740 -3772\n\t\tmu 0 4 2013 2012 2024 2025\n\t\tf 4 3772 3773 3774 3775\n\t\tmu 0 4 1743 1733 1723 1732\n\t\tf 4 3776 3777 3778 -3774\n\t\tmu 0 4 1733 1724 1715 1723\n\t\tf 4 3779 3780 3781 -3778\n\t\tmu 0 4 1724 1716 1708 1715\n\t\tf 4 3782 3783 3784 -3781\n\t\tmu 0 4 1716 1710 1703 1708\n\t\tf 4 -3775 3785 3786 3787\n\t\tmu 0 4 1732 1723 1714 1722\n\t\tf 4 -3779 3788 3789 -3786\n\t\tmu 0 4 1723 1715 1707 1714\n\t\tf 4 -3782 3790 3791 -3789\n\t\tmu 0 4 1715 1708 1701 1707\n\t\tf 4 -3785 3792 3793 -3791\n\t\tmu 0 4 1708 1703 1697 1701\n\t\tf 4 -3787 3794 3795 3796\n\t\tmu 0 4 1722 1714 1706 1713\n\t\tf 4 -3790 3797 3798 -3795\n\t\tmu 0 4 1714 1707 1700 1706\n\t\tf 4 -3792 3799 3800 -3798\n\t\tmu 0 4 1707 1701 1695 1700\n\t\tf 4 -3794 3801 3802 -3800\n\t\tmu 0 4 1701 1697 1692 1695\n\t\tf 4 -3796 3803 3804 3805\n\t\tmu 0 4 1713 1706 1699 1705\n\t\tf 4 -3799 3806 3807 -3804\n\t\tmu 0 4 1706 1700 1694 1699\n\t\tf 4 -3801 3808 3809 -3807\n\t\tmu 0 4 1700 1695 1690 1694\n\t\tf 4 -3803 3810 3811 -3809\n\t\tmu 0 4 1695 1692 1686 1690\n\t\tf 4 3812 3813 3814 3815\n\t\tmu 0 4 4678 4682 4691 4683\n\t\tf 4 3816 3817 3818 -3814\n\t\tmu 0 4 4682 4690 4703 4691\n\t\tf 4 3819 3820 3821 -3818\n\t\tmu 0 4 4690 4702 4717 4703\n\t\tf 4 3822 3823 3824 -3821\n\t\tmu 0 4 3291 3275 3290 3306\n\t\tf 4 -3815 3825 3826 3827\n\t\tmu 0 4 4683 4691 4705 4693\n\t\tf 4 -3819 3828 3829 -3826\n\t\tmu 0 4 4691 4703 4719 4705\n\t\tf 4 -3822 3830 3831 -3829\n\t\tmu 0 4 4703 4717 4729 4719\n\t\tf 4 -3825 3832 3833 -3831\n\t\tmu 0 4 3306 3290 3305 3317\n\t\tf 4 -3827 3834 3835 3836\n\t\tmu 0 4 4693 4705 4721 4707\n\t\tf 4 -3830 3837 3838 -3835\n\t\tmu 0 4 4705 4719 4731 4721\n\t\tf 4 -3832 3839 3840 -3838\n\t\tmu 0 4 4719 4729 4737 4731\n\t\tf 4 -3834 3841 3842 -3840\n\t\tmu 0 4 3317 3305 3316 3324\n\t\tf 4 -3836 3843 -3784 3844\n\t\tmu 0 4 1709 1702 1703 1710\n\t\tf 4 -3839 3845 -3793 -3844\n\t\tmu 0 4 1702 1696 1697 1703\n\t\tf 4 -3841 3846 -3802 -3846\n\t\tmu 0 4 1696 1691 1692 1697\n\t\tf 4 -3843 3847 -3811 -3847\n\t\tmu 0 4 1691 1688 1686 1692\n\t\tf 4 3848 3849 3850 3851\n\t\tmu 0 4 3232 3243 3244 3236\n\t\tf 4 3852 3853 3854 -3850\n\t\tmu 0 4 3243 3255 3256 3244\n\t\tf 4 3855 3856 3857 -3854\n\t\tmu 0 4 3255 3271 3272 3256\n\t\tf 4 3858 3859 3860 -3857\n\t\tmu 0 4 1670 1668 1674 1676\n\t\tf 4 -3851 3861 3862 3863\n\t\tmu 0 4 3236 3244 3257 3245\n\t\tf 4 -3855 3864 3865 -3862\n\t\tmu 0 4 3244 3256 3273 3257\n\t\tf 4 -3858 3866 3867 -3865\n\t\tmu 0 4 3256 3272 3288 3273\n\t\tf 4 -3861 3868 3869 -3867\n\t\tmu 0 4 1676 1674 1679 1681\n\t\tf 4 -3863 3870 3871 3872\n\t\tmu 0 4 3245 3257 3274 3258\n\t\tf 4 -3866 3873 3874 -3871\n\t\tmu 0 4 3257 3273 3289 3274\n\t\tf 4 -3868 3875 3876 -3874\n\t\tmu 0 4 3273 3288 3304 3289\n\t\tf 4 -3870 3877 3878 -3876\n\t\tmu 0 4 1681 1679 1683 1685\n\t\tf 4 -3872 3879 -3824 3880\n\t\tmu 0 4 3258 3274 3290 3275\n\t\tf 4 -3875 3881 -3833 -3880\n\t\tmu 0 4 3274 3289 3305 3290\n\t\tf 4 -3877 3882 -3842 -3882\n\t\tmu 0 4 3289 3304 3316 3305\n\t\tf 4 -3879 3883 -3848 -3883\n\t\tmu 0 4 1685 1683 1686 1688\n\t\tf 4 3884 3885 3886 3887\n\t\tmu 0 4 1626 1637 1648 1638\n\t\tf 4 3888 3889 3890 -3886\n\t\tmu 0 4 1637 1647 1657 1648\n\t\tf 4 3891 3892 3893 -3890\n\t\tmu 0 4 1647 1656 1665 1657\n\t\tf 4 3894 3895 3896 -3893\n\t\tmu 0 4 1656 1664 1671 1665\n\t\tf 4 -3887 3897 3898 3899\n\t\tmu 0 4 1638 1648 1658 1649\n\t\tf 4 -3891 3900 3901 -3898\n\t\tmu 0 4 1648 1657 1666 1658\n\t\tf 4 -3894 3902 3903 -3901\n\t\tmu 0 4 1657 1665 1672 1666\n\t\tf 4 -3897 3904 3905 -3903\n\t\tmu 0 4 1665 1671 1677 1672\n\t\tf 4 -3899 3906 3907 3908\n\t\tmu 0 4 1649 1658 1667 1659\n\t\tf 4 -3902 3909 3910 -3907\n\t\tmu 0 4 1658 1666 1673 1667\n\t\tf 4 -3904 3911 3912 -3910\n\t\tmu 0 4 1666 1672 1678 1673\n\t\tf 4 -3906 3913 3914 -3912\n\t\tmu 0 4 1672 1677 1682 1678\n\t\tf 4 -3908 3915 -3860 3916\n\t\tmu 0 4 1659 1667 1674 1668\n\t\tf 4 -3911 3917 -3869 -3916\n\t\tmu 0 4 1667 1673 1679 1674\n\t\tf 4 -3913 3918 -3878 -3918\n\t\tmu 0 4 1673 1678 1683 1679\n\t\tf 4 -3915 3919 -3884 -3919\n\t\tmu 0 4 1678 1682 1686 1683\n\t\tf 4 3920 3921 3922 3923\n\t\tmu 0 4 4424 4430 4442 4431\n\t\tf 4 3924 3925 3926 -3922\n\t\tmu 0 4 4430 4441 4457 4442\n\t\tf 4 3927 3928 3929 -3926\n\t\tmu 0 4 4441 4456 4470 4457\n\t\tf 4 3930 3931 3932 -3929\n\t\tmu 0 4 3109 3094 3108 3122\n\t\tf 4 -3923 3933 3934 3935\n\t\tmu 0 4 4431 4442 4458 4443\n\t\tf 4 -3927 3936 3937 -3934\n\t\tmu 0 4 4442 4457 4471 4458\n\t\tf 4 -3930 3938 3939 -3937\n\t\tmu 0 4 4457 4470 4479 4471\n\t\tf 4 -3933 3940 3941 -3939\n\t\tmu 0 4 3122 3108 3121 3130\n\t\tf 4 -3935 3942 3943 3944\n\t\tmu 0 4 4443 4458 4472 4459\n\t\tf 4 -3938 3945 3946 -3943\n\t\tmu 0 4 4458 4471 4480 4472\n\t\tf 4 -3940 3947 3948 -3946\n\t\tmu 0 4 4471 4479 4484 4480\n\t\tf 4 -3942 3949 3950 -3948\n\t\tmu 0 4 3130 3121 3129 3134\n\t\tf 4 -3944 3951 -3896 3952\n\t\tmu 0 4 1669 1675 1671 1664\n\t\tf 4 -3947 3953 -3905 -3952\n\t\tmu 0 4 1675 1680 1677 1671\n\t\tf 4 -3949 3954 -3914 -3954\n\t\tmu 0 4 1680 1684 1682 1677\n\t\tf 4 -3951 3955 -3920 -3955\n\t\tmu 0 4 1684 1687 1686 1682\n\t\tf 4 3956 3957 3958 3959\n\t\tmu 0 4 3045 3050 3061 3051\n\t\tf 4 3960 3961 3962 -3958\n\t\tmu 0 4 3050 3060 3075 3061\n\t\tf 4 3963 3964 3965 -3962\n\t\tmu 0 4 3060 3074 3091 3075\n\t\tf 4 3966 -3805 3967 -3965\n\t\tmu 0 4 1704 1705 1699 1698\n\t\tf 4 -3959 3968 3969 3970\n\t\tmu 0 4 3051 3061 3076 3062\n\t\tf 4 -3963 3971 3972 -3969\n\t\tmu 0 4 3061 3075 3092 3076\n\t\tf 4 -3966 3973 3974 -3972\n\t\tmu 0 4 3075 3091 3106 3092\n\t\tf 4 -3968 -3808 3975 -3974\n\t\tmu 0 4 1698 1699 1694 1693\n\t\tf 4 -3970 3976 3977 3978\n\t\tmu 0 4 3062 3076 3093 3077\n\t\tf 4 -3973 3979 3980 -3977\n\t\tmu 0 4 3076 3092 3107 3093\n\t\tf 4 -3975 3981 3982 -3980\n\t\tmu 0 4 3092 3106 3120 3107\n\t\tf 4 -3976 -3810 3983 -3982\n\t\tmu 0 4 1693 1694 1690 1689\n\t\tf 4 -3978 3984 -3932 3985\n\t\tmu 0 4 3077 3093 3108 3094\n\t\tf 4 -3981 3986 -3941 -3985\n\t\tmu 0 4 3093 3107 3121 3108\n\t\tf 4 -3983 3987 -3950 -3987\n\t\tmu 0 4 3107 3120 3129 3121\n\t\tf 4 -3984 -3812 -3956 -3988\n\t\tmu 0 4 1689 1690 1686 1687\n\t\tf 4 3988 3989 3990 3991\n\t\tmu 0 4 4295 4300 4311 4301\n\t\tf 4 3992 3993 3994 -3990\n\t\tmu 0 4 4300 4310 4325 4311\n\t\tf 4 3995 3996 3997 -3994\n\t\tmu 0 4 4310 4324 4339 4325\n\t\tf 4 3998 3999 4000 -3997\n\t\tmu 0 4 1583 1582 1591 1592\n\t\tf 4 -3991 4001 4002 4003\n\t\tmu 0 4 4301 4311 4326 4312\n\t\tf 4 -3995 4004 4005 -4002\n\t\tmu 0 4 4311 4325 4340 4326\n\t\tf 4 -3998 4006 4007 -4005\n\t\tmu 0 4 4325 4339 4349 4340\n\t\tf 4 -4001 4008 4009 -4007\n\t\tmu 0 4 1592 1591 1601 1602\n\t\tf 4 -4003 4010 4011 4012\n\t\tmu 0 4 4312 4326 4341 4327\n\t\tf 4 -4006 4013 4014 -4011\n\t\tmu 0 4 4326 4340 4350 4341\n\t\tf 4 -4008 4015 4016 -4014\n\t\tmu 0 4 4340 4349 4355 4350\n\t\tf 4 -4010 4017 4018 -4016\n\t\tmu 0 4 1602 1601 1612 1613\n\t\tf 4 -4012 4019 4020 4021\n\t\tmu 0 4 3300 3313 3301 3284\n\t\tf 4 -4015 4022 4023 -4020\n\t\tmu 0 4 3313 3322 3314 3301\n\t\tf 4 -4017 4024 4025 -4023\n\t\tmu 0 4 3322 3327 3323 3314\n\t\tf 4 -4019 4026 4027 -4025\n\t\tmu 0 4 1613 1612 1624 1625\n\t\tf 4 4028 4029 4030 4031\n\t\tmu 0 4 1620 1632 1621 1609\n\t\tf 4 4032 4033 4034 -4030\n\t\tmu 0 4 1632 1643 1633 1621\n\t\tf 4 4035 4036 4037 -4034\n\t\tmu 0 4 1643 1653 1644 1633\n\t\tf 4 4038 4039 4040 -4037\n\t\tmu 0 4 1653 1662 1654 1644\n\t\tf 4 -4031 4041 4042 4043\n\t\tmu 0 4 1609 1621 1610 1599\n\t\tf 4 -4035 4044 4045 -4042\n\t\tmu 0 4 1621 1633 1622 1610\n\t\tf 4 -4038 4046 4047 -4045\n\t\tmu 0 4 1633 1644 1634 1622\n\t\tf 4 -4041 4048 4049 -4047\n\t\tmu 0 4 1644 1654 1645 1634\n\t\tf 4 -4043 4050 4051 4052\n\t\tmu 0 4 1599 1610 1600 1590\n\t\tf 4 -4046 4053 4054 -4051\n\t\tmu 0 4 1610 1622 1611 1600\n\t\tf 4 -4048 4055 4056 -4054\n\t\tmu 0 4 1622 1634 1623 1611\n\t\tf 4 -4050 4057 4058 -4056\n\t\tmu 0 4 1634 1645 1635 1623\n\t\tf 4 -4052 4059 -4000 4060\n\t\tmu 0 4 1590 1600 1591 1582\n\t\tf 4 -4055 4061 -4009 -4060\n\t\tmu 0 4 1600 1611 1601 1591\n\t\tf 4 -4057 4062 -4018 -4062\n\t\tmu 0 4 1611 1623 1612 1601\n\t\tf 4 -4059 4063 -4027 -4063\n\t\tmu 0 4 1623 1635 1624 1612\n\t\tf 4 4064 4065 4066 4067\n\t\tmu 0 4 3235 3241 3253 3242\n\t\tf 4 4068 4069 4070 -4066\n\t\tmu 0 4 3241 3252 3268 3253\n\t\tf 4 4071 4072 4073 -4070\n\t\tmu 0 4 3252 3267 3285 3268\n\t\tf 4 4074 -4021 4075 -4073\n\t\tmu 0 4 3267 3284 3301 3285\n\t\tf 4 -4067 4076 4077 4078\n\t\tmu 0 4 3242 3253 3269 3254\n\t\tf 4 -4071 4079 4080 -4077\n\t\tmu 0 4 3253 3268 3286 3269\n\t\tf 4 -4074 4081 4082 -4080\n\t\tmu 0 4 3268 3285 3302 3286\n\t\tf 4 -4076 -4024 4083 -4082\n\t\tmu 0 4 3285 3301 3314 3302\n\t\tf 4 -4078 4084 4085 4086\n\t\tmu 0 4 3254 3269 3287 3270\n\t\tf 4 -4081 4087 4088 -4085\n\t\tmu 0 4 3269 3286 3303 3287\n\t\tf 4 -4083 4089 4090 -4088\n\t\tmu 0 4 3286 3302 3315 3303\n\t\tf 4 -4084 -4026 4091 -4090\n\t\tmu 0 4 3302 3314 3323 3315\n\t\tf 4 -4086 4092 -4040 4093\n\t\tmu 0 4 1663 1655 1654 1662\n\t\tf 4 -4089 4094 -4049 -4093\n\t\tmu 0 4 1655 1646 1645 1654\n\t\tf 4 -4091 4095 -4058 -4095\n\t\tmu 0 4 1646 1636 1635 1645\n\t\tf 4 -4092 -4028 -4064 -4096\n\t\tmu 0 4 1636 1625 1624 1635\n\t\tf 4 4096 4097 4098 4099\n\t\tmu 0 4 4677 4688 4692 4681\n\t\tf 4 4100 4101 4102 -4098\n\t\tmu 0 4 4688 4700 4706 4692\n\t\tf 4 4103 4104 4105 -4102\n\t\tmu 0 4 4700 4716 4722 4706\n\t\tf 4 4106 4107 4108 -4105\n\t\tmu 0 4 852 851 842 843\n\t\tf 4 -4099 4109 4110 4111\n\t\tmu 0 4 4681 4692 4704 4689\n\t\tf 4 -4103 4112 4113 -4110\n\t\tmu 0 4 4692 4706 4720 4704\n\t\tf 4 -4106 4114 4115 -4113\n\t\tmu 0 4 4706 4722 4732 4720\n\t\tf 4 -4109 4116 4117 -4115\n\t\tmu 0 4 843 842 832 833\n\t\tf 4 -4111 4118 4119 4120\n\t\tmu 0 4 4689 4704 4718 4701\n\t\tf 4 -4114 4121 4122 -4119\n\t\tmu 0 4 4704 4720 4730 4718\n\t\tf 4 -4116 4123 4124 -4122\n\t\tmu 0 4 4720 4732 4738 4730\n\t\tf 4 -4118 4125 4126 -4124\n\t\tmu 0 4 833 832 821 822\n\t\tf 4 -4120 4127 4128 4129\n\t\tmu 0 4 3292 3307 3293 3276\n\t\tf 4 -4123 4130 4131 -4128\n\t\tmu 0 4 3307 3318 3308 3293\n\t\tf 4 -4125 4132 4133 -4131\n\t\tmu 0 4 3318 3325 3319 3308\n\t\tf 4 -4127 4134 4135 -4133\n\t\tmu 0 4 822 821 810 809\n\t\tf 4 4136 4137 4138 4139\n\t\tmu 0 4 805 794 806 818\n\t\tf 4 4140 4141 4142 -4138\n\t\tmu 0 4 794 784 795 806\n\t\tf 4 4143 4144 4145 -4142\n\t\tmu 0 4 784 775 785 795\n\t\tf 4 4146 4147 4148 -4145\n\t\tmu 0 4 775 767 777 785\n\t\tf 4 -4139 4149 4150 4151\n\t\tmu 0 4 818 806 819 830\n\t\tf 4 -4143 4152 4153 -4150\n\t\tmu 0 4 806 795 807 819\n\t\tf 4 -4146 4154 4155 -4153\n\t\tmu 0 4 795 785 796 807\n\t\tf 4 -4149 4156 4157 -4155\n\t\tmu 0 4 785 777 787 796\n\t\tf 4 -4151 4158 4159 4160\n\t\tmu 0 4 830 819 831 841\n\t\tf 4 -4154 4161 4162 -4159\n\t\tmu 0 4 819 807 820 831\n\t\tf 4 -4156 4163 4164 -4162\n\t\tmu 0 4 807 796 808 820\n\t\tf 4 -4158 4165 4166 -4164\n\t\tmu 0 4 796 787 798 808\n\t\tf 4 -4160 4167 -4108 4168\n\t\tmu 0 4 841 831 842 851\n\t\tf 4 -4163 4169 -4117 -4168\n\t\tmu 0 4 831 820 832 842\n\t\tf 4 -4165 4170 -4126 -4170\n\t\tmu 0 4 820 808 821 832\n\t\tf 4 -4167 4171 -4135 -4171\n\t\tmu 0 4 808 798 810 821\n\t\tf 4 4172 4173 4174 4175\n\t\tmu 0 4 3233 3237 3247 3238\n\t\tf 4 4176 4177 4178 -4174\n\t\tmu 0 4 3237 3246 3260 3247\n\t\tf 4 4179 4180 4181 -4178\n\t\tmu 0 4 3246 3259 3277 3260\n\t\tf 4 4182 -4129 4183 -4181\n\t\tmu 0 4 3259 3276 3293 3277\n\t\tf 4 -4175 4184 4185 4186\n\t\tmu 0 4 3238 3247 3261 3248\n\t\tf 4 -4179 4187 4188 -4185\n\t\tmu 0 4 3247 3260 3278 3261\n\t\tf 4 -4182 4189 4190 -4188\n\t\tmu 0 4 3260 3277 3294 3278\n\t\tf 4 -4184 -4132 4191 -4190\n\t\tmu 0 4 3277 3293 3308 3294\n\t\tf 4 -4186 4192 4193 4194\n\t\tmu 0 4 3248 3261 3279 3262\n\t\tf 4 -4189 4195 4196 -4193\n\t\tmu 0 4 3261 3278 3295 3279\n\t\tf 4 -4191 4197 4198 -4196\n\t\tmu 0 4 3278 3294 3309 3295\n\t\tf 4 -4192 -4134 4199 -4198\n\t\tmu 0 4 3294 3308 3319 3309\n\t\tf 4 -4194 4200 -4148 4201\n\t\tmu 0 4 768 776 777 767\n\t\tf 4 -4197 4202 -4157 -4201\n\t\tmu 0 4 776 786 787 777\n\t\tf 4 -4199 4203 -4166 -4203\n\t\tmu 0 4 786 797 798 787\n\t\tf 4 -4200 -4136 -4172 -4204\n\t\tmu 0 4 797 809 810 798\n\t\tf 4 4204 4205 4206 4207\n\t\tmu 0 4 4296 4302 4314 4303\n\t\tf 4 4208 4209 4210 -4206\n\t\tmu 0 4 4302 4313 4329 4314\n\t\tf 4 4211 4212 4213 -4210\n\t\tmu 0 4 4313 4328 4342 4329\n\t\tf 4 4214 4215 4216 -4213\n\t\tmu 0 4 3299 3283 3298 3312\n\t\tf 4 -4207 4217 4218 4219\n\t\tmu 0 4 4303 4314 4330 4315\n\t\tf 4 -4211 4220 4221 -4218\n\t\tmu 0 4 4314 4329 4343 4330\n\t\tf 4 -4214 4222 4223 -4221\n\t\tmu 0 4 4329 4342 4351 4343\n\t\tf 4 -4217 4224 4225 -4223\n\t\tmu 0 4 3312 3298 3311 3321\n\t\tf 4 -4219 4226 4227 4228\n\t\tmu 0 4 4315 4330 4344 4331\n\t\tf 4 -4222 4229 4230 -4227\n\t\tmu 0 4 4330 4343 4352 4344\n\t\tf 4 -4224 4231 4232 -4230\n\t\tmu 0 4 4343 4351 4356 4352\n\t\tf 4 -4226 4233 4234 -4232\n\t\tmu 0 4 3321 3311 3320 3326\n\t\tf 4 -4228 4235 4236 4237\n\t\tmu 0 4 725 731 727 720\n\t\tf 4 -4231 4238 4239 -4236\n\t\tmu 0 4 731 736 733 727\n\t\tf 4 -4233 4240 4241 -4239\n\t\tmu 0 4 736 740 738 733\n\t\tf 4 -4235 4242 4243 -4241\n\t\tmu 0 4 740 743 742 738\n\t\tf 4 4244 4245 4246 4247\n\t\tmu 0 4 3234 3239 3250 3240\n\t\tf 4 4248 4249 4250 -4246\n\t\tmu 0 4 3239 3249 3264 3250\n\t\tf 4 4251 4252 4253 -4250\n\t\tmu 0 4 3249 3263 3280 3264\n\t\tf 4 4254 4255 4256 -4253\n\t\tmu 0 4 760 761 755 754\n\t\tf 4 -4247 4257 4258 4259\n\t\tmu 0 4 3240 3250 3265 3251\n\t\tf 4 -4251 4260 4261 -4258\n\t\tmu 0 4 3250 3264 3281 3265\n\t\tf 4 -4254 4262 4263 -4261\n\t\tmu 0 4 3264 3280 3296 3281\n\t\tf 4 -4257 4264 4265 -4263\n\t\tmu 0 4 754 755 750 749\n\t\tf 4 -4259 4266 4267 4268\n\t\tmu 0 4 3251 3265 3282 3266\n\t\tf 4 -4262 4269 4270 -4267\n\t\tmu 0 4 3265 3281 3297 3282\n\t\tf 4 -4264 4271 4272 -4270\n\t\tmu 0 4 3281 3296 3310 3297\n\t\tf 4 -4266 4273 4274 -4272\n\t\tmu 0 4 749 750 746 745\n\t\tf 4 -4268 4275 -4216 4276\n\t\tmu 0 4 3266 3282 3298 3283\n\t\tf 4 -4271 4277 -4225 -4276\n\t\tmu 0 4 3282 3297 3311 3298\n\t\tf 4 -4273 4278 -4234 -4278\n\t\tmu 0 4 3297 3310 3320 3311\n\t\tf 4 -4275 4279 -4243 -4279\n\t\tmu 0 4 745 746 742 743\n\t\tf 4 4280 4281 4282 4283\n\t\tmu 0 4 799 789 779 788\n\t\tf 4 4284 4285 4286 -4282\n\t\tmu 0 4 789 780 771 779\n\t\tf 4 4287 4288 4289 -4286\n\t\tmu 0 4 780 772 764 771\n\t\tf 4 4290 4291 4292 -4289\n\t\tmu 0 4 772 766 759 764\n\t\tf 4 -4283 4293 4294 4295\n\t\tmu 0 4 788 779 770 778\n\t\tf 4 -4287 4296 4297 -4294\n\t\tmu 0 4 779 771 763 770\n\t\tf 4 -4290 4298 4299 -4297\n\t\tmu 0 4 771 764 757 763\n\t\tf 4 -4293 4300 4301 -4299\n\t\tmu 0 4 764 759 753 757\n\t\tf 4 -4295 4302 4303 4304\n\t\tmu 0 4 778 770 762 769\n\t\tf 4 -4298 4305 4306 -4303\n\t\tmu 0 4 770 763 756 762\n\t\tf 4 -4300 4307 4308 -4306\n\t\tmu 0 4 763 757 751 756\n\t\tf 4 -4302 4309 4310 -4308\n\t\tmu 0 4 757 753 748 751\n\t\tf 4 -4304 4311 -4256 4312\n\t\tmu 0 4 769 762 755 761\n\t\tf 4 -4307 4313 -4265 -4312\n\t\tmu 0 4 762 756 750 755\n\t\tf 4 -4309 4314 -4274 -4314\n\t\tmu 0 4 756 751 746 750\n\t\tf 4 -4311 4315 -4280 -4315\n\t\tmu 0 4 751 748 742 746\n\t\tf 4 4316 4317 4318 4319\n\t\tmu 0 4 4486 4490 4499 4491\n\t\tf 4 4320 4321 4322 -4318\n\t\tmu 0 4 4490 4498 4511 4499\n\t\tf 4 4323 4324 4325 -4322\n\t\tmu 0 4 4498 4510 4525 4511\n\t\tf 4 4326 4327 4328 -4325\n\t\tmu 0 4 3195 3179 3194 3210\n\t\tf 4 -4319 4329 4330 4331\n\t\tmu 0 4 4491 4499 4513 4501\n\t\tf 4 -4323 4332 4333 -4330\n\t\tmu 0 4 4499 4511 4527 4513\n\t\tf 4 -4326 4334 4335 -4333\n\t\tmu 0 4 4511 4525 4537 4527\n\t\tf 4 -4329 4336 4337 -4335\n\t\tmu 0 4 3210 3194 3209 3221\n\t\tf 4 -4331 4338 4339 4340\n\t\tmu 0 4 4501 4513 4529 4515\n\t\tf 4 -4334 4341 4342 -4339\n\t\tmu 0 4 4513 4527 4539 4529\n\t\tf 4 -4336 4343 4344 -4342\n\t\tmu 0 4 4527 4537 4545 4539\n\t\tf 4 -4338 4345 4346 -4344\n\t\tmu 0 4 3221 3209 3220 3228\n\t\tf 4 -4340 4347 -4292 4348\n\t\tmu 0 4 765 758 759 766\n\t\tf 4 -4343 4349 -4301 -4348\n\t\tmu 0 4 758 752 753 759\n\t\tf 4 -4345 4350 -4310 -4350\n\t\tmu 0 4 752 747 748 753\n\t\tf 4 -4347 4351 -4316 -4351\n\t\tmu 0 4 747 744 742 748\n\t\tf 4 4352 4353 4354 4355\n\t\tmu 0 4 3136 3147 3148 3140\n\t\tf 4 4356 4357 4358 -4354\n\t\tmu 0 4 3147 3159 3160 3148\n\t\tf 4 4359 4360 4361 -4358\n\t\tmu 0 4 3159 3175 3176 3160\n\t\tf 4 4362 4363 4364 -4361\n\t\tmu 0 4 726 724 730 732\n\t\tf 4 -4355 4365 4366 4367\n\t\tmu 0 4 3140 3148 3161 3149\n\t\tf 4 -4359 4368 4369 -4366\n\t\tmu 0 4 3148 3160 3177 3161\n\t\tf 4 -4362 4370 4371 -4369\n\t\tmu 0 4 3160 3176 3192 3177\n\t\tf 4 -4365 4372 4373 -4371\n\t\tmu 0 4 732 730 735 737\n\t\tf 4 -4367 4374 4375 4376\n\t\tmu 0 4 3149 3161 3178 3162\n\t\tf 4 -4370 4377 4378 -4375\n\t\tmu 0 4 3161 3177 3193 3178\n\t\tf 4 -4372 4379 4380 -4378\n\t\tmu 0 4 3177 3192 3208 3193\n\t\tf 4 -4374 4381 4382 -4380\n\t\tmu 0 4 737 735 739 741\n\t\tf 4 -4376 4383 -4328 4384\n\t\tmu 0 4 3162 3178 3194 3179\n\t\tf 4 -4379 4385 -4337 -4384\n\t\tmu 0 4 3178 3193 3209 3194\n\t\tf 4 -4381 4386 -4346 -4386\n\t\tmu 0 4 3193 3208 3220 3209\n\t\tf 4 -4383 4387 -4352 -4387\n\t\tmu 0 4 741 739 742 744\n\t\tf 4 4388 4389 4390 4391\n\t\tmu 0 4 682 693 704 694\n\t\tf 4 4392 4393 4394 -4390\n\t\tmu 0 4 693 703 713 704\n\t\tf 4 4395 4396 4397 -4394\n\t\tmu 0 4 703 712 721 713\n\t\tf 4 4398 -4237 4399 -4397\n\t\tmu 0 4 712 720 727 721\n\t\tf 4 -4391 4400 4401 4402\n\t\tmu 0 4 694 704 714 705\n\t\tf 4 -4395 4403 4404 -4401\n\t\tmu 0 4 704 713 722 714\n\t\tf 4 -4398 4405 4406 -4404\n\t\tmu 0 4 713 721 728 722\n\t\tf 4 -4400 -4240 4407 -4406\n\t\tmu 0 4 721 727 733 728\n\t\tf 4 -4402 4408 4409 4410\n\t\tmu 0 4 705 714 723 715\n\t\tf 4 -4405 4411 4412 -4409\n\t\tmu 0 4 714 722 729 723\n\t\tf 4 -4407 4413 4414 -4412\n\t\tmu 0 4 722 728 734 729\n\t\tf 4 -4408 -4242 4415 -4414\n\t\tmu 0 4 728 733 738 734\n\t\tf 4 -4410 4416 -4364 4417\n\t\tmu 0 4 715 723 730 724\n\t\tf 4 -4413 4418 -4373 -4417\n\t\tmu 0 4 723 729 735 730\n\t\tf 4 -4415 4419 -4382 -4419\n\t\tmu 0 4 729 734 739 735\n\t\tf 4 -4416 -4244 -4388 -4420\n\t\tmu 0 4 734 738 742 739\n\t\tf 4 4420 4421 4422 4423\n\t\tmu 0 4 676 688 677 665\n\t\tf 4 4424 4425 4426 -4422\n\t\tmu 0 4 688 699 689 677\n\t\tf 4 4427 4428 4429 -4426\n\t\tmu 0 4 699 709 700 689\n\t\tf 4 4430 4431 4432 -4429\n\t\tmu 0 4 709 718 710 700\n\t\tf 4 -4423 4433 4434 4435\n\t\tmu 0 4 665 677 666 655\n\t\tf 4 -4427 4436 4437 -4434\n\t\tmu 0 4 677 689 678 666\n\t\tf 4 -4430 4438 4439 -4437\n\t\tmu 0 4 689 700 690 678\n\t\tf 4 -4433 4440 4441 -4439\n\t\tmu 0 4 700 710 701 690\n\t\tf 4 -4435 4442 4443 4444\n\t\tmu 0 4 655 666 656 646\n\t\tf 4 -4438 4445 4446 -4443\n\t\tmu 0 4 666 678 667 656\n\t\tf 4 -4440 4447 4448 -4446\n\t\tmu 0 4 678 690 679 667\n\t\tf 4 -4442 4449 4450 -4448\n\t\tmu 0 4 690 701 691 679\n\t\tf 4 -4444 4451 4452 4453\n\t\tmu 0 4 646 656 647 638\n\t\tf 4 -4447 4454 4455 -4452\n\t\tmu 0 4 656 667 657 647\n\t\tf 4 -4449 4456 4457 -4455\n\t\tmu 0 4 667 679 668 657\n\t\tf 4 -4451 4458 4459 -4457\n\t\tmu 0 4 679 691 680 668\n\t\tf 4 4460 4461 4462 4463\n\t\tmu 0 4 3139 3145 3157 3146\n\t\tf 4 4464 4465 4466 -4462\n\t\tmu 0 4 3145 3156 3172 3157\n\t\tf 4 4467 4468 4469 -4466\n\t\tmu 0 4 3156 3171 3189 3172\n\t\tf 4 4470 4471 4472 -4469\n\t\tmu 0 4 3171 3188 3205 3189\n\t\tf 4 -4463 4473 4474 4475\n\t\tmu 0 4 3146 3157 3173 3158\n\t\tf 4 -4467 4476 4477 -4474\n\t\tmu 0 4 3157 3172 3190 3173\n\t\tf 4 -4470 4478 4479 -4477\n\t\tmu 0 4 3172 3189 3206 3190\n\t\tf 4 -4473 4480 4481 -4479\n\t\tmu 0 4 3189 3205 3218 3206\n\t\tf 4 -4475 4482 4483 4484\n\t\tmu 0 4 3158 3173 3191 3174\n\t\tf 4 -4478 4485 4486 -4483\n\t\tmu 0 4 3173 3190 3207 3191\n\t\tf 4 -4480 4487 4488 -4486\n\t\tmu 0 4 3190 3206 3219 3207\n\t\tf 4 -4482 4489 4490 -4488\n\t\tmu 0 4 3206 3218 3227 3219\n\t\tf 4 -4484 4491 -4432 4492\n\t\tmu 0 4 719 711 710 718\n\t\tf 4 -4487 4493 -4441 -4492\n\t\tmu 0 4 711 702 701 710\n\t\tf 4 -4489 4494 -4450 -4494\n\t\tmu 0 4 702 692 691 701\n\t\tf 4 -4491 4495 -4459 -4495\n\t\tmu 0 4 692 681 680 691\n\t\tf 4 4496 4497 4498 4499\n\t\tmu 0 4 4359 4364 4375 4365\n\t\tf 4 4500 4501 4502 -4498\n\t\tmu 0 4 4364 4374 4389 4375\n\t\tf 4 4503 4504 4505 -4502\n\t\tmu 0 4 4374 4388 4403 4389\n\t\tf 4 4506 -4453 4507 -4505\n\t\tmu 0 4 639 638 647 648\n\t\tf 4 -4499 4508 4509 4510\n\t\tmu 0 4 4365 4375 4390 4376\n\t\tf 4 -4503 4511 4512 -4509\n\t\tmu 0 4 4375 4389 4404 4390\n\t\tf 4 -4506 4513 4514 -4512\n\t\tmu 0 4 4389 4403 4413 4404\n\t\tf 4 -4508 -4456 4515 -4514\n\t\tmu 0 4 648 647 657 658\n\t\tf 4 -4510 4516 4517 4518\n\t\tmu 0 4 4376 4390 4405 4391\n\t\tf 4 -4513 4519 4520 -4517\n\t\tmu 0 4 4390 4404 4414 4405\n\t\tf 4 -4515 4521 4522 -4520\n\t\tmu 0 4 4404 4413 4419 4414\n\t\tf 4 -4516 -4458 4523 -4522\n\t\tmu 0 4 658 657 668 669\n\t\tf 4 -4518 4524 -4472 4525\n\t\tmu 0 4 3204 3217 3205 3188\n\t\tf 4 -4521 4526 -4481 -4525\n\t\tmu 0 4 3217 3226 3218 3205\n\t\tf 4 -4523 4527 -4490 -4527\n\t\tmu 0 4 3226 3231 3227 3218\n\t\tf 4 -4524 -4460 -4496 -4528\n\t\tmu 0 4 669 668 680 681\n\t\tf 4 4528 4529 4530 4531\n\t\tmu 0 4 3933 3985 3986 3956\n\t\tf 4 4532 4533 4534 -4530\n\t\tmu 0 4 3985 4013 4014 3986\n\t\tf 4 4535 4536 4537 -4534\n\t\tmu 0 4 4013 4038 4039 4014\n\t\tf 4 4538 4539 4540 -4537\n\t\tmu 0 4 4038 4061 4062 4039\n\t\tf 4 -4531 4541 4542 4543\n\t\tmu 0 4 3956 3986 4011 3982\n\t\tf 4 -4535 4544 4545 -4542\n\t\tmu 0 4 3986 4014 4036 4011\n\t\tf 4 -4538 4546 4547 -4545\n\t\tmu 0 4 4014 4039 4060 4036\n\t\tf 4 -4541 4548 4549 -4547\n\t\tmu 0 4 4039 4062 4076 4060\n\t\tf 4 -4543 4550 4551 4552\n\t\tmu 0 4 3982 4011 4034 4008\n\t\tf 4 -4546 4553 4554 -4551\n\t\tmu 0 4 4011 4036 4056 4034\n\t\tf 4 -4548 4555 4556 -4554\n\t\tmu 0 4 4036 4060 4072 4056\n\t\tf 4 -4550 4557 4558 -4556\n\t\tmu 0 4 4060 4076 4082 4072\n\t\tf 4 -4552 4559 4560 4561\n\t\tmu 0 4 4008 4034 4057 4058\n\t\tf 4 -4555 4562 4563 -4560\n\t\tmu 0 4 4034 4056 4073 4057\n\t\tf 4 -4557 4564 4565 -4563\n\t\tmu 0 4 4056 4072 4083 4073\n\t\tf 4 -4559 4566 4567 -4565\n\t\tmu 0 4 4072 4082 4086 4083\n\t\tf 4 4568 4569 4570 4571\n\t\tmu 0 4 940 929 941 953\n\t\tf 4 4572 4573 4574 -4570\n\t\tmu 0 4 929 919 930 941\n\t\tf 4 4575 4576 4577 -4574\n\t\tmu 0 4 919 910 920 930\n\t\tf 4 4578 4579 4580 -4577\n\t\tmu 0 4 910 902 912 920\n\t\tf 4 -4571 4581 4582 4583\n\t\tmu 0 4 953 941 954 964\n\t\tf 4 -4575 4584 4585 -4582\n\t\tmu 0 4 941 930 942 954\n\t\tf 4 -4578 4586 4587 -4585\n\t\tmu 0 4 930 920 931 942\n\t\tf 4 -4581 4588 4589 -4587\n\t\tmu 0 4 920 912 922 931\n\t\tf 4 -4583 4590 4591 4592\n\t\tmu 0 4 964 954 965 974\n\t\tf 4 -4586 4593 4594 -4591\n\t\tmu 0 4 954 942 955 965\n\t\tf 4 -4588 4595 4596 -4594\n\t\tmu 0 4 942 931 943 955\n\t\tf 4 -4590 4597 4598 -4596\n\t\tmu 0 4 931 922 933 943\n\t\tf 4 -4592 4599 -4540 4600\n\t\tmu 0 4 974 965 975 983\n\t\tf 4 -4595 4601 -4549 -4600\n\t\tmu 0 4 965 955 966 975\n\t\tf 4 -4597 4602 -4558 -4602\n\t\tmu 0 4 955 943 956 966\n\t\tf 4 -4599 4603 -4567 -4603\n\t\tmu 0 4 943 933 945 956\n\t\tf 4 4604 4605 4606 4607\n\t\tmu 0 4 3521 3525 3535 3526\n\t\tf 4 4608 4609 4610 -4606\n\t\tmu 0 4 3525 3534 3548 3535\n\t\tf 4 4611 4612 4613 -4610\n\t\tmu 0 4 3534 3547 3565 3548\n\t\tf 4 4614 -4561 4615 -4613\n\t\tmu 0 4 4074 4058 4057 4075\n\t\tf 4 -4607 4616 4617 4618\n\t\tmu 0 4 3526 3535 3549 3536\n\t\tf 4 -4611 4619 4620 -4617\n\t\tmu 0 4 3535 3548 3566 3549\n\t\tf 4 -4614 4621 4622 -4620\n\t\tmu 0 4 3548 3565 3581 3566\n\t\tf 4 -4616 -4564 4623 -4622\n\t\tmu 0 4 3565 3594 3595 3581\n\t\tf 4 -4618 4624 4625 4626\n\t\tmu 0 4 3536 3549 3567 3550\n\t\tf 4 -4621 4627 4628 -4625\n\t\tmu 0 4 3549 3566 3582 3567\n\t\tf 4 -4623 4629 4630 -4628\n\t\tmu 0 4 3566 3581 3596 3582\n\t\tf 4 -4624 -4566 4631 -4630\n\t\tmu 0 4 3581 3595 3605 3596\n\t\tf 4 -4626 4632 -4580 4633\n\t\tmu 0 4 903 911 912 902\n\t\tf 4 -4629 4634 -4589 -4633\n\t\tmu 0 4 911 921 922 912\n\t\tf 4 -4631 4635 -4598 -4635\n\t\tmu 0 4 921 932 933 922\n\t\tf 4 -4632 -4568 -4604 -4636\n\t\tmu 0 4 932 944 945 933\n\t\tf 4 4636 4637 4638 4639\n\t\tmu 0 4 3934 3957 3984 3958\n\t\tf 4 4640 4641 4642 -4638\n\t\tmu 0 4 3957 3983 4010 3984\n\t\tf 4 4643 4644 4645 -4642\n\t\tmu 0 4 3983 4009 4033 4010\n\t\tf 4 4646 4647 4648 -4645\n\t\tmu 0 4 3579 3563 3578 3593\n\t\tf 4 -4639 4649 4650 4651\n\t\tmu 0 4 3958 3984 4012 3987\n\t\tf 4 -4643 4652 4653 -4650\n\t\tmu 0 4 3984 4010 4035 4012\n\t\tf 4 -4646 4654 4655 -4653\n\t\tmu 0 4 4010 4033 4055 4035\n\t\tf 4 -4649 4656 4657 -4655\n\t\tmu 0 4 3593 3578 3592 3604;\n\tsetAttr \".fc[2000:2499]\"\n\t\tf 4 -4651 4658 4659 4660\n\t\tmu 0 4 3987 4012 4037 4015\n\t\tf 4 -4654 4661 4662 -4659\n\t\tmu 0 4 4012 4035 4059 4037\n\t\tf 4 -4656 4663 4664 -4662\n\t\tmu 0 4 4035 4055 4071 4059\n\t\tf 4 -4658 4665 4666 -4664\n\t\tmu 0 4 3604 3592 3603 3610\n\t\tf 4 -4660 4667 4668 4669\n\t\tmu 0 4 1802 1808 1803 1795\n\t\tf 4 -4663 4670 4671 -4668\n\t\tmu 0 4 1808 1813 1809 1803\n\t\tf 4 -4665 4672 4673 -4671\n\t\tmu 0 4 1813 1817 1814 1809\n\t\tf 4 -4667 4674 4675 -4673\n\t\tmu 0 4 1817 1819 1818 1814\n\t\tf 4 4676 4677 4678 4679\n\t\tmu 0 4 3520 3531 3532 3524\n\t\tf 4 4680 4681 4682 -4678\n\t\tmu 0 4 3531 3543 3544 3532\n\t\tf 4 4683 4684 4685 -4682\n\t\tmu 0 4 3543 3559 3560 3544\n\t\tf 4 4686 4687 4688 -4685\n\t\tmu 0 4 1800 1799 1806 1807\n\t\tf 4 -4679 4689 4690 4691\n\t\tmu 0 4 3524 3532 3545 3533\n\t\tf 4 -4683 4692 4693 -4690\n\t\tmu 0 4 3532 3544 3561 3545\n\t\tf 4 -4686 4694 4695 -4693\n\t\tmu 0 4 3544 3560 3576 3561\n\t\tf 4 -4689 4696 4697 -4695\n\t\tmu 0 4 1807 1806 1811 1812\n\t\tf 4 -4691 4698 4699 4700\n\t\tmu 0 4 3533 3545 3562 3546\n\t\tf 4 -4694 4701 4702 -4699\n\t\tmu 0 4 3545 3561 3577 3562\n\t\tf 4 -4696 4703 4704 -4702\n\t\tmu 0 4 3561 3576 3591 3577\n\t\tf 4 -4698 4705 4706 -4704\n\t\tmu 0 4 1812 1811 1815 1816\n\t\tf 4 -4700 4707 -4648 4708\n\t\tmu 0 4 3546 3562 3578 3563\n\t\tf 4 -4703 4709 -4657 -4708\n\t\tmu 0 4 3562 3577 3592 3578\n\t\tf 4 -4705 4710 -4666 -4710\n\t\tmu 0 4 3577 3591 3603 3592\n\t\tf 4 -4707 4711 -4675 -4711\n\t\tmu 0 4 1816 1815 1818 1819\n\t\tf 4 4712 4713 4714 4715\n\t\tmu 0 4 1761 1771 1781 1772\n\t\tf 4 4716 4717 4718 -4714\n\t\tmu 0 4 1771 1780 1789 1781\n\t\tf 4 4719 4720 4721 -4718\n\t\tmu 0 4 1780 1788 1796 1789\n\t\tf 4 4722 -4669 4723 -4721\n\t\tmu 0 4 1788 1795 1803 1796\n\t\tf 4 -4715 4724 4725 4726\n\t\tmu 0 4 1772 1781 1790 1782\n\t\tf 4 -4719 4727 4728 -4725\n\t\tmu 0 4 1781 1789 1797 1790\n\t\tf 4 -4722 4729 4730 -4728\n\t\tmu 0 4 1789 1796 1804 1797\n\t\tf 4 -4724 -4672 4731 -4730\n\t\tmu 0 4 1796 1803 1809 1804\n\t\tf 4 -4726 4732 4733 4734\n\t\tmu 0 4 1782 1790 1798 1791\n\t\tf 4 -4729 4735 4736 -4733\n\t\tmu 0 4 1790 1797 1805 1798\n\t\tf 4 -4731 4737 4738 -4736\n\t\tmu 0 4 1797 1804 1810 1805\n\t\tf 4 -4732 -4674 4739 -4738\n\t\tmu 0 4 1804 1809 1814 1810\n\t\tf 4 -4734 4740 -4688 4741\n\t\tmu 0 4 1791 1798 1806 1799\n\t\tf 4 -4737 4742 -4697 -4741\n\t\tmu 0 4 1798 1805 1811 1806\n\t\tf 4 -4739 4743 -4706 -4743\n\t\tmu 0 4 1805 1810 1815 1811\n\t\tf 4 -4740 -4676 -4712 -4744\n\t\tmu 0 4 1810 1814 1818 1815\n\t\tf 4 4744 4745 4746 4747\n\t\tmu 0 4 1044 1068 1104 1069\n\t\tf 4 4748 4749 4750 -4746\n\t\tmu 0 4 1068 1103 1149 1104\n\t\tf 4 4751 4752 4753 -4750\n\t\tmu 0 4 1103 1148 1201 1149\n\t\tf 4 4754 4755 4756 -4753\n\t\tmu 0 4 1148 1200 1259 1201\n\t\tf 4 -4747 4757 4758 4759\n\t\tmu 0 4 1069 1104 1150 1105\n\t\tf 4 -4751 4760 4761 -4758\n\t\tmu 0 4 1104 1149 1202 1150\n\t\tf 4 -4754 4762 4763 -4761\n\t\tmu 0 4 1149 1201 1260 1202\n\t\tf 4 -4757 4764 4765 -4763\n\t\tmu 0 4 1201 1259 1314 1260\n\t\tf 4 -4759 4766 4767 4768\n\t\tmu 0 4 1105 1150 1203 1151\n\t\tf 4 -4762 4769 4770 -4767\n\t\tmu 0 4 1150 1202 1261 1203\n\t\tf 4 -4764 4771 4772 -4770\n\t\tmu 0 4 1202 1260 1315 1261\n\t\tf 4 -4766 4773 4774 -4772\n\t\tmu 0 4 1260 1314 1359 1315\n\t\tf 4 -4768 4775 4776 4777\n\t\tmu 0 4 1151 1203 1262 1204\n\t\tf 4 -4771 4778 4779 -4776\n\t\tmu 0 4 1203 1261 1316 1262\n\t\tf 4 -4773 4780 4781 -4779\n\t\tmu 0 4 1261 1315 1360 1316\n\t\tf 4 -4775 4782 4783 -4781\n\t\tmu 0 4 1315 1359 1393 1360\n\t\tf 4 4784 4785 4786 4787\n\t\tmu 0 4 4488 4494 4506 4495\n\t\tf 4 4788 4789 4790 -4786\n\t\tmu 0 4 4494 4505 4521 4506\n\t\tf 4 4791 4792 4793 -4790\n\t\tmu 0 4 4505 4520 4534 4521\n\t\tf 4 4794 4795 4796 -4793\n\t\tmu 0 4 3395 3379 3394 3408\n\t\tf 4 -4787 4797 4798 4799\n\t\tmu 0 4 4495 4506 4522 4507\n\t\tf 4 -4791 4800 4801 -4798\n\t\tmu 0 4 4506 4521 4535 4522\n\t\tf 4 -4794 4802 4803 -4801\n\t\tmu 0 4 4521 4534 4543 4535\n\t\tf 4 -4797 4804 4805 -4803\n\t\tmu 0 4 3408 3394 3407 3417\n\t\tf 4 -4799 4806 4807 4808\n\t\tmu 0 4 4507 4522 4536 4523\n\t\tf 4 -4802 4809 4810 -4807\n\t\tmu 0 4 4522 4535 4544 4536\n\t\tf 4 -4804 4811 4812 -4810\n\t\tmu 0 4 4535 4543 4548 4544\n\t\tf 4 -4806 4813 4814 -4812\n\t\tmu 0 4 3417 3407 3416 3422\n\t\tf 4 -4808 4815 -4756 4816\n\t\tmu 0 4 1258 1313 1259 1200\n\t\tf 4 -4811 4817 -4765 -4816\n\t\tmu 0 4 1313 1358 1314 1259\n\t\tf 4 -4813 4818 -4774 -4818\n\t\tmu 0 4 1358 1392 1359 1314\n\t\tf 4 -4815 4819 -4783 -4819\n\t\tmu 0 4 1392 1412 1393 1359\n\t\tf 4 4820 4821 4822 4823\n\t\tmu 0 4 3330 3335 3346 3336\n\t\tf 4 4824 4825 4826 -4822\n\t\tmu 0 4 3335 3345 3360 3346\n\t\tf 4 4827 4828 4829 -4826\n\t\tmu 0 4 3345 3359 3376 3360\n\t\tf 4 4830 -4777 4831 -4829\n\t\tmu 0 4 1263 1204 1262 1317\n\t\tf 4 -4823 4832 4833 4834\n\t\tmu 0 4 3336 3346 3361 3347\n\t\tf 4 -4827 4835 4836 -4833\n\t\tmu 0 4 3346 3360 3377 3361\n\t\tf 4 -4830 4837 4838 -4836\n\t\tmu 0 4 3360 3376 3392 3377\n\t\tf 4 -4832 -4780 4839 -4838\n\t\tmu 0 4 1317 1262 1316 1361\n\t\tf 4 -4834 4840 4841 4842\n\t\tmu 0 4 3347 3361 3378 3362\n\t\tf 4 -4837 4843 4844 -4841\n\t\tmu 0 4 3361 3377 3393 3378\n\t\tf 4 -4839 4845 4846 -4844\n\t\tmu 0 4 3377 3392 3406 3393\n\t\tf 4 -4840 -4782 4847 -4846\n\t\tmu 0 4 1361 1316 1360 1394\n\t\tf 4 -4842 4848 -4796 4849\n\t\tmu 0 4 3362 3378 3394 3379\n\t\tf 4 -4845 4850 -4805 -4849\n\t\tmu 0 4 3378 3393 3407 3394\n\t\tf 4 -4847 4851 -4814 -4851\n\t\tmu 0 4 3393 3406 3416 3407\n\t\tf 4 -4848 -4784 -4820 -4852\n\t\tmu 0 4 1394 1360 1393 1412\n\t\tf 4 4852 4853 4854 4855\n\t\tmu 0 4 4679 4684 4695 4685\n\t\tf 4 4856 4857 4858 -4854\n\t\tmu 0 4 4684 4694 4709 4695\n\t\tf 4 4859 4860 4861 -4858\n\t\tmu 0 4 4694 4708 4723 4709\n\t\tf 4 4862 4863 4864 -4861\n\t\tmu 0 4 1718 1717 1726 1727\n\t\tf 4 -4855 4865 4866 4867\n\t\tmu 0 4 4685 4695 4710 4696\n\t\tf 4 -4859 4868 4869 -4866\n\t\tmu 0 4 4695 4709 4724 4710\n\t\tf 4 -4862 4870 4871 -4869\n\t\tmu 0 4 4709 4723 4733 4724\n\t\tf 4 -4865 4872 4873 -4871\n\t\tmu 0 4 1727 1726 1736 1737\n\t\tf 4 -4867 4874 4875 4876\n\t\tmu 0 4 4696 4710 4725 4711\n\t\tf 4 -4870 4877 4878 -4875\n\t\tmu 0 4 4710 4724 4734 4725\n\t\tf 4 -4872 4879 4880 -4878\n\t\tmu 0 4 4724 4733 4739 4734\n\t\tf 4 -4874 4881 4882 -4880\n\t\tmu 0 4 1737 1736 1747 1748\n\t\tf 4 -4876 4883 4884 4885\n\t\tmu 0 4 3587 3600 3588 3572\n\t\tf 4 -4879 4886 4887 -4884\n\t\tmu 0 4 3600 3608 3601 3588\n\t\tf 4 -4881 4888 4889 -4887\n\t\tmu 0 4 3608 3612 3609 3601\n\t\tf 4 -4883 4890 4891 -4889\n\t\tmu 0 4 1748 1747 1759 1760\n\t\tf 4 4892 4893 4894 4895\n\t\tmu 0 4 1755 1766 1756 1744\n\t\tf 4 4896 4897 4898 -4894\n\t\tmu 0 4 1766 1776 1767 1756\n\t\tf 4 4899 4900 4901 -4898\n\t\tmu 0 4 1776 1785 1777 1767\n\t\tf 4 4902 4903 4904 -4901\n\t\tmu 0 4 1785 1793 1786 1777\n\t\tf 4 -4895 4905 4906 4907\n\t\tmu 0 4 1744 1756 1745 1734\n\t\tf 4 -4899 4908 4909 -4906\n\t\tmu 0 4 1756 1767 1757 1745\n\t\tf 4 -4902 4910 4911 -4909\n\t\tmu 0 4 1767 1777 1768 1757\n\t\tf 4 -4905 4912 4913 -4911\n\t\tmu 0 4 1777 1786 1778 1768\n\t\tf 4 -4907 4914 4915 4916\n\t\tmu 0 4 1734 1745 1735 1725\n\t\tf 4 -4910 4917 4918 -4915\n\t\tmu 0 4 1745 1757 1746 1735\n\t\tf 4 -4912 4919 4920 -4918\n\t\tmu 0 4 1757 1768 1758 1746\n\t\tf 4 -4914 4921 4922 -4920\n\t\tmu 0 4 1768 1778 1769 1758\n\t\tf 4 -4916 4923 -4864 4924\n\t\tmu 0 4 1725 1735 1726 1717\n\t\tf 4 -4919 4925 -4873 -4924\n\t\tmu 0 4 1735 1746 1736 1726\n\t\tf 4 -4921 4926 -4882 -4926\n\t\tmu 0 4 1746 1758 1747 1736\n\t\tf 4 -4923 4927 -4891 -4927\n\t\tmu 0 4 1758 1769 1759 1747\n\t\tf 4 4928 4929 4930 4931\n\t\tmu 0 4 3523 3529 3541 3530\n\t\tf 4 4932 4933 4934 -4930\n\t\tmu 0 4 3529 3540 3556 3541\n\t\tf 4 4935 4936 4937 -4934\n\t\tmu 0 4 3540 3555 3573 3556\n\t\tf 4 4938 -4885 4939 -4937\n\t\tmu 0 4 3555 3572 3588 3573\n\t\tf 4 -4931 4940 4941 4942\n\t\tmu 0 4 3530 3541 3557 3542\n\t\tf 4 -4935 4943 4944 -4941\n\t\tmu 0 4 3541 3556 3574 3557\n\t\tf 4 -4938 4945 4946 -4944\n\t\tmu 0 4 3556 3573 3589 3574\n\t\tf 4 -4940 -4888 4947 -4946\n\t\tmu 0 4 3573 3588 3601 3589\n\t\tf 4 -4942 4948 4949 4950\n\t\tmu 0 4 3542 3557 3575 3558\n\t\tf 4 -4945 4951 4952 -4949\n\t\tmu 0 4 3557 3574 3590 3575\n\t\tf 4 -4947 4953 4954 -4952\n\t\tmu 0 4 3574 3589 3602 3590\n\t\tf 4 -4948 -4890 4955 -4954\n\t\tmu 0 4 3589 3601 3609 3602\n\t\tf 4 -4950 4956 -4904 4957\n\t\tmu 0 4 1794 1787 1786 1793\n\t\tf 4 -4953 4958 -4913 -4957\n\t\tmu 0 4 1787 1779 1778 1786\n\t\tf 4 -4955 4959 -4922 -4959\n\t\tmu 0 4 1779 1770 1769 1778\n\t\tf 4 -4956 -4892 -4928 -4960\n\t\tmu 0 4 1770 1760 1759 1769\n\t\tf 4 4960 4961 4962 4963\n\t\tmu 0 4 4680 4686 4698 4687\n\t\tf 4 4964 4965 4966 -4962\n\t\tmu 0 4 4686 4697 4713 4698\n\t\tf 4 4967 4968 4969 -4966\n\t\tmu 0 4 4697 4712 4726 4713\n\t\tf 4 4970 4971 4972 -4969\n\t\tmu 0 4 3586 3571 3585 3599\n\t\tf 4 -4963 4973 4974 4975\n\t\tmu 0 4 4687 4698 4714 4699\n\t\tf 4 -4967 4976 4977 -4974\n\t\tmu 0 4 4698 4713 4727 4714\n\t\tf 4 -4970 4978 4979 -4977\n\t\tmu 0 4 4713 4726 4735 4727\n\t\tf 4 -4973 4980 4981 -4979\n\t\tmu 0 4 3599 3585 3598 3607\n\t\tf 4 -4975 4982 4983 4984\n\t\tmu 0 4 4699 4714 4728 4715\n\t\tf 4 -4978 4985 4986 -4983\n\t\tmu 0 4 4714 4727 4736 4728\n\t\tf 4 -4980 4987 4988 -4986\n\t\tmu 0 4 4727 4735 4740 4736\n\t\tf 4 -4982 4989 4990 -4988\n\t\tmu 0 4 3607 3598 3606 3611\n\t\tf 4 -4984 4991 4992 4993\n\t\tmu 0 4 860 866 862 855\n\t\tf 4 -4987 4994 4995 -4992\n\t\tmu 0 4 866 871 868 862\n\t\tf 4 -4989 4996 4997 -4995\n\t\tmu 0 4 871 875 873 868\n\t\tf 4 -4991 4998 4999 -4997\n\t\tmu 0 4 875 878 877 873\n\t\tf 4 5000 5001 5002 5003\n\t\tmu 0 4 3522 3527 3538 3528\n\t\tf 4 5004 5005 5006 -5002\n\t\tmu 0 4 3527 3537 3552 3538\n\t\tf 4 5007 5008 5009 -5006\n\t\tmu 0 4 3537 3551 3568 3552\n\t\tf 4 5010 5011 5012 -5009\n\t\tmu 0 4 895 896 890 889\n\t\tf 4 -5003 5013 5014 5015\n\t\tmu 0 4 3528 3538 3553 3539\n\t\tf 4 -5007 5016 5017 -5014\n\t\tmu 0 4 3538 3552 3569 3553\n\t\tf 4 -5010 5018 5019 -5017\n\t\tmu 0 4 3552 3568 3583 3569\n\t\tf 4 -5013 5020 5021 -5019\n\t\tmu 0 4 889 890 885 884\n\t\tf 4 -5015 5022 5023 5024\n\t\tmu 0 4 3539 3553 3570 3554\n\t\tf 4 -5018 5025 5026 -5023\n\t\tmu 0 4 3553 3569 3584 3570\n\t\tf 4 -5020 5027 5028 -5026\n\t\tmu 0 4 3569 3583 3597 3584\n\t\tf 4 -5022 5029 5030 -5028\n\t\tmu 0 4 884 885 881 880\n\t\tf 4 -5024 5031 -4972 5032\n\t\tmu 0 4 3554 3570 3585 3571\n\t\tf 4 -5027 5033 -4981 -5032\n\t\tmu 0 4 3570 3584 3598 3585\n\t\tf 4 -5029 5034 -4990 -5034\n\t\tmu 0 4 3584 3597 3606 3598\n\t\tf 4 -5031 5035 -4999 -5035\n\t\tmu 0 4 880 881 877 878\n\t\tf 4 5036 5037 5038 5039\n\t\tmu 0 4 934 924 914 923\n\t\tf 4 5040 5041 5042 -5038\n\t\tmu 0 4 924 915 906 914\n\t\tf 4 5043 5044 5045 -5042\n\t\tmu 0 4 915 907 899 906\n\t\tf 4 5046 5047 5048 -5045\n\t\tmu 0 4 907 901 894 899\n\t\tf 4 -5039 5049 5050 5051\n\t\tmu 0 4 923 914 905 913\n\t\tf 4 -5043 5052 5053 -5050\n\t\tmu 0 4 914 906 898 905\n\t\tf 4 -5046 5054 5055 -5053\n\t\tmu 0 4 906 899 892 898\n\t\tf 4 -5049 5056 5057 -5055\n\t\tmu 0 4 899 894 888 892\n\t\tf 4 -5051 5058 5059 5060\n\t\tmu 0 4 913 905 897 904\n\t\tf 4 -5054 5061 5062 -5059\n\t\tmu 0 4 905 898 891 897\n\t\tf 4 -5056 5063 5064 -5062\n\t\tmu 0 4 898 892 886 891\n\t\tf 4 -5058 5065 5066 -5064\n\t\tmu 0 4 892 888 883 886\n\t\tf 4 -5060 5067 -5012 5068\n\t\tmu 0 4 904 897 890 896\n\t\tf 4 -5063 5069 -5021 -5068\n\t\tmu 0 4 897 891 885 890\n\t\tf 4 -5065 5070 -5030 -5070\n\t\tmu 0 4 891 886 881 885\n\t\tf 4 -5067 5071 -5036 -5071\n\t\tmu 0 4 886 883 877 881\n\t\tf 4 5072 5073 5074 5075\n\t\tmu 0 4 4742 4746 4755 4747\n\t\tf 4 5076 5077 5078 -5074\n\t\tmu 0 4 4746 4754 4767 4755\n\t\tf 4 5079 5080 5081 -5078\n\t\tmu 0 4 4754 4766 4781 4767\n\t\tf 4 5082 5083 5084 -5081\n\t\tmu 0 4 3387 3371 3386 3402\n\t\tf 4 -5075 5085 5086 5087\n\t\tmu 0 4 4747 4755 4769 4757\n\t\tf 4 -5079 5088 5089 -5086\n\t\tmu 0 4 4755 4767 4783 4769\n\t\tf 4 -5082 5090 5091 -5089\n\t\tmu 0 4 4767 4781 4793 4783\n\t\tf 4 -5085 5092 5093 -5091\n\t\tmu 0 4 3402 3386 3401 3413\n\t\tf 4 -5087 5094 5095 5096\n\t\tmu 0 4 4757 4769 4785 4771\n\t\tf 4 -5090 5097 5098 -5095\n\t\tmu 0 4 4769 4783 4795 4785\n\t\tf 4 -5092 5099 5100 -5098\n\t\tmu 0 4 4783 4793 4801 4795\n\t\tf 4 -5094 5101 5102 -5100\n\t\tmu 0 4 3413 3401 3412 3420\n\t\tf 4 -5096 5103 -5048 5104\n\t\tmu 0 4 900 893 894 901\n\t\tf 4 -5099 5105 -5057 -5104\n\t\tmu 0 4 893 887 888 894\n\t\tf 4 -5101 5106 -5066 -5106\n\t\tmu 0 4 887 882 883 888\n\t\tf 4 -5103 5107 -5072 -5107\n\t\tmu 0 4 882 879 877 883\n\t\tf 4 5108 5109 5110 5111\n\t\tmu 0 4 3328 3339 3340 3332\n\t\tf 4 5112 5113 5114 -5110\n\t\tmu 0 4 3339 3351 3352 3340\n\t\tf 4 5115 5116 5117 -5114\n\t\tmu 0 4 3351 3367 3368 3352\n\t\tf 4 5118 5119 5120 -5117\n\t\tmu 0 4 861 859 865 867\n\t\tf 4 -5111 5121 5122 5123\n\t\tmu 0 4 3332 3340 3353 3341\n\t\tf 4 -5115 5124 5125 -5122\n\t\tmu 0 4 3340 3352 3369 3353\n\t\tf 4 -5118 5126 5127 -5125\n\t\tmu 0 4 3352 3368 3384 3369\n\t\tf 4 -5121 5128 5129 -5127\n\t\tmu 0 4 867 865 870 872\n\t\tf 4 -5123 5130 5131 5132\n\t\tmu 0 4 3341 3353 3370 3354\n\t\tf 4 -5126 5133 5134 -5131\n\t\tmu 0 4 3353 3369 3385 3370\n\t\tf 4 -5128 5135 5136 -5134\n\t\tmu 0 4 3369 3384 3400 3385\n\t\tf 4 -5130 5137 5138 -5136\n\t\tmu 0 4 872 870 874 876\n\t\tf 4 -5132 5139 -5084 5140\n\t\tmu 0 4 3354 3370 3386 3371\n\t\tf 4 -5135 5141 -5093 -5140\n\t\tmu 0 4 3370 3385 3401 3386\n\t\tf 4 -5137 5142 -5102 -5142\n\t\tmu 0 4 3385 3400 3412 3401\n\t\tf 4 -5139 5143 -5108 -5143\n\t\tmu 0 4 876 874 877 879\n\t\tf 4 5144 5145 5146 5147\n\t\tmu 0 4 817 828 839 829\n\t\tf 4 5148 5149 5150 -5146\n\t\tmu 0 4 828 838 848 839\n\t\tf 4 5151 5152 5153 -5150\n\t\tmu 0 4 838 847 856 848\n\t\tf 4 5154 -4993 5155 -5153\n\t\tmu 0 4 847 855 862 856\n\t\tf 4 -5147 5156 5157 5158\n\t\tmu 0 4 829 839 849 840\n\t\tf 4 -5151 5159 5160 -5157\n\t\tmu 0 4 839 848 857 849\n\t\tf 4 -5154 5161 5162 -5160\n\t\tmu 0 4 848 856 863 857\n\t\tf 4 -5156 -4996 5163 -5162\n\t\tmu 0 4 856 862 868 863\n\t\tf 4 -5158 5164 5165 5166\n\t\tmu 0 4 840 849 858 850\n\t\tf 4 -5161 5167 5168 -5165\n\t\tmu 0 4 849 857 864 858\n\t\tf 4 -5163 5169 5170 -5168\n\t\tmu 0 4 857 863 869 864\n\t\tf 4 -5164 -4998 5171 -5170\n\t\tmu 0 4 863 868 873 869\n\t\tf 4 -5166 5172 -5120 5173\n\t\tmu 0 4 850 858 865 859\n\t\tf 4 -5169 5174 -5129 -5173\n\t\tmu 0 4 858 864 870 865\n\t\tf 4 -5171 5175 -5138 -5175\n\t\tmu 0 4 864 869 874 870\n\t\tf 4 -5172 -5000 -5144 -5176\n\t\tmu 0 4 869 873 877 874\n\t\tf 4 5176 5177 5178 5179\n\t\tmu 0 4 811 823 812 800\n\t\tf 4 5180 5181 5182 -5178\n\t\tmu 0 4 823 834 824 812\n\t\tf 4 5183 5184 5185 -5182\n\t\tmu 0 4 834 844 835 824\n\t\tf 4 5186 5187 5188 -5185\n\t\tmu 0 4 844 853 845 835\n\t\tf 4 -5179 5189 5190 5191\n\t\tmu 0 4 800 812 801 790\n\t\tf 4 -5183 5192 5193 -5190\n\t\tmu 0 4 812 824 813 801\n\t\tf 4 -5186 5194 5195 -5193\n\t\tmu 0 4 824 835 825 813\n\t\tf 4 -5189 5196 5197 -5195\n\t\tmu 0 4 835 845 836 825\n\t\tf 4 -5191 5198 5199 5200\n\t\tmu 0 4 790 801 791 781\n\t\tf 4 -5194 5201 5202 -5199\n\t\tmu 0 4 801 813 802 791\n\t\tf 4 -5196 5203 5204 -5202\n\t\tmu 0 4 813 825 814 802\n\t\tf 4 -5198 5205 5206 -5204\n\t\tmu 0 4 825 836 826 814\n\t\tf 4 -5200 5207 5208 5209\n\t\tmu 0 4 781 791 782 774\n\t\tf 4 -5203 5210 5211 -5208\n\t\tmu 0 4 791 802 792 782\n\t\tf 4 -5205 5212 5213 -5211\n\t\tmu 0 4 802 814 803 792\n\t\tf 4 -5207 5214 5215 -5213\n\t\tmu 0 4 814 826 815 803\n\t\tf 4 5216 5217 5218 5219\n\t\tmu 0 4 3331 3337 3349 3338\n\t\tf 4 5220 5221 5222 -5218\n\t\tmu 0 4 3337 3348 3364 3349\n\t\tf 4 5223 5224 5225 -5222\n\t\tmu 0 4 3348 3363 3381 3364\n\t\tf 4 5226 5227 5228 -5225\n\t\tmu 0 4 3363 3380 3397 3381\n\t\tf 4 -5219 5229 5230 5231\n\t\tmu 0 4 3338 3349 3365 3350\n\t\tf 4 -5223 5232 5233 -5230\n\t\tmu 0 4 3349 3364 3382 3365\n\t\tf 4 -5226 5234 5235 -5233\n\t\tmu 0 4 3364 3381 3398 3382\n\t\tf 4 -5229 5236 5237 -5235\n\t\tmu 0 4 3381 3397 3410 3398\n\t\tf 4 -5231 5238 5239 5240\n\t\tmu 0 4 3350 3365 3383 3366\n\t\tf 4 -5234 5241 5242 -5239\n\t\tmu 0 4 3365 3382 3399 3383\n\t\tf 4 -5236 5243 5244 -5242\n\t\tmu 0 4 3382 3398 3411 3399\n\t\tf 4 -5238 5245 5246 -5244\n\t\tmu 0 4 3398 3410 3419 3411\n\t\tf 4 -5240 5247 -5188 5248\n\t\tmu 0 4 854 846 845 853\n\t\tf 4 -5243 5249 -5197 -5248\n\t\tmu 0 4 846 837 836 845\n\t\tf 4 -5245 5250 -5206 -5250\n\t\tmu 0 4 837 827 826 836\n\t\tf 4 -5247 5251 -5215 -5251\n\t\tmu 0 4 827 816 815 826\n\t\tf 4 5252 5253 5254 5255\n\t\tmu 0 4 4487 4492 4503 4493\n\t\tf 4 5256 5257 5258 -5254\n\t\tmu 0 4 4492 4502 4517 4503\n\t\tf 4 5259 5260 5261 -5258\n\t\tmu 0 4 4502 4516 4531 4517\n\t\tf 4 5262 -5209 5263 -5261\n\t\tmu 0 4 773 774 782 783\n\t\tf 4 -5255 5264 5265 5266\n\t\tmu 0 4 4493 4503 4518 4504\n\t\tf 4 -5259 5267 5268 -5265\n\t\tmu 0 4 4503 4517 4532 4518\n\t\tf 4 -5262 5269 5270 -5268\n\t\tmu 0 4 4517 4531 4541 4532\n\t\tf 4 -5264 -5212 5271 -5270\n\t\tmu 0 4 783 782 792 793\n\t\tf 4 -5266 5272 5273 5274\n\t\tmu 0 4 4504 4518 4533 4519\n\t\tf 4 -5269 5275 5276 -5273\n\t\tmu 0 4 4518 4532 4542 4533\n\t\tf 4 -5271 5277 5278 -5276\n\t\tmu 0 4 4532 4541 4547 4542\n\t\tf 4 -5272 -5214 5279 -5278\n\t\tmu 0 4 793 792 803 804\n\t\tf 4 -5274 5280 -5228 5281\n\t\tmu 0 4 3396 3409 3397 3380\n\t\tf 4 -5277 5282 -5237 -5281\n\t\tmu 0 4 3409 3418 3410 3397\n\t\tf 4 -5279 5283 -5246 -5283\n\t\tmu 0 4 3418 3423 3419 3410\n\t\tf 4 -5280 -5216 -5252 -5284\n\t\tmu 0 4 804 803 815 816\n\t\tf 4 5284 5285 5286 5287\n\t\tmu 0 4 1045 1072 1110 1073\n\t\tf 4 5288 5289 5290 -5286\n\t\tmu 0 4 1072 1109 1157 1110\n\t\tf 4 5291 5292 5293 -5290\n\t\tmu 0 4 1109 1156 1211 1157\n\t\tf 4 5294 5295 5296 -5293\n\t\tmu 0 4 1156 1210 1271 1211\n\t\tf 4 -5287 5297 5298 5299\n\t\tmu 0 4 1073 1110 1158 1111\n\t\tf 4 -5291 5300 5301 -5298\n\t\tmu 0 4 1110 1157 1212 1158\n\t\tf 4 -5294 5302 5303 -5301\n\t\tmu 0 4 1157 1211 1272 1212\n\t\tf 4 -5297 5304 5305 -5303\n\t\tmu 0 4 1211 1271 1324 1272\n\t\tf 4 -5299 5306 5307 5308\n\t\tmu 0 4 1111 1158 1213 1159\n\t\tf 4 -5302 5309 5310 -5307\n\t\tmu 0 4 1158 1212 1273 1213\n\t\tf 4 -5304 5311 5312 -5310\n\t\tmu 0 4 1212 1272 1325 1273\n\t\tf 4 -5306 5313 5314 -5312\n\t\tmu 0 4 1272 1324 1367 1325\n\t\tf 4 -5308 5315 5316 5317\n\t\tmu 0 4 1159 1213 1274 1214\n\t\tf 4 -5311 5318 5319 -5316\n\t\tmu 0 4 1213 1273 1326 1274\n\t\tf 4 -5313 5320 5321 -5319\n\t\tmu 0 4 1273 1325 1368 1326\n\t\tf 4 -5315 5322 5323 -5321\n\t\tmu 0 4 1325 1367 1399 1368\n\t\tf 4 5324 5325 5326 5327\n\t\tmu 0 4 4744 4750 4762 4751\n\t\tf 4 5328 5329 5330 -5326\n\t\tmu 0 4 4750 4761 4777 4762\n\t\tf 4 5331 5332 5333 -5330\n\t\tmu 0 4 4761 4776 4790 4777\n\t\tf 4 5334 5335 5336 -5333\n\t\tmu 0 4 3491 3475 3490 3504\n\t\tf 4 -5327 5337 5338 5339\n\t\tmu 0 4 4751 4762 4778 4763\n\t\tf 4 -5331 5340 5341 -5338\n\t\tmu 0 4 4762 4777 4791 4778\n\t\tf 4 -5334 5342 5343 -5341\n\t\tmu 0 4 4777 4790 4799 4791\n\t\tf 4 -5337 5344 5345 -5343\n\t\tmu 0 4 3504 3490 3503 3513\n\t\tf 4 -5339 5346 5347 5348\n\t\tmu 0 4 4763 4778 4792 4779\n\t\tf 4 -5342 5349 5350 -5347\n\t\tmu 0 4 4778 4791 4800 4792\n\t\tf 4 -5344 5351 5352 -5350\n\t\tmu 0 4 4791 4799 4804 4800\n\t\tf 4 -5346 5353 5354 -5352\n\t\tmu 0 4 3513 3503 3512 3518\n\t\tf 4 -5348 5355 -5296 5356\n\t\tmu 0 4 1270 1323 1271 1210\n\t\tf 4 -5351 5357 -5305 -5356\n\t\tmu 0 4 1323 1366 1324 1271\n\t\tf 4 -5353 5358 -5314 -5358\n\t\tmu 0 4 1366 1398 1367 1324\n\t\tf 4 -5355 5359 -5323 -5359\n\t\tmu 0 4 1398 1414 1399 1367\n\t\tf 4 5360 5361 5362 5363\n\t\tmu 0 4 3426 3431 3442 3432\n\t\tf 4 5364 5365 5366 -5362\n\t\tmu 0 4 3431 3441 3456 3442\n\t\tf 4 5367 5368 5369 -5366\n\t\tmu 0 4 3441 3455 3472 3456\n\t\tf 4 5370 -5317 5371 -5369\n\t\tmu 0 4 1275 1214 1274 1327\n\t\tf 4 -5363 5372 5373 5374\n\t\tmu 0 4 3432 3442 3457 3443\n\t\tf 4 -5367 5375 5376 -5373\n\t\tmu 0 4 3442 3456 3473 3457\n\t\tf 4 -5370 5377 5378 -5376\n\t\tmu 0 4 3456 3472 3488 3473\n\t\tf 4 -5372 -5320 5379 -5378\n\t\tmu 0 4 1327 1274 1326 1369\n\t\tf 4 -5374 5380 5381 5382\n\t\tmu 0 4 3443 3457 3474 3458\n\t\tf 4 -5377 5383 5384 -5381\n\t\tmu 0 4 3457 3473 3489 3474\n\t\tf 4 -5379 5385 5386 -5384\n\t\tmu 0 4 3473 3488 3502 3489\n\t\tf 4 -5380 -5322 5387 -5386\n\t\tmu 0 4 1369 1326 1368 1400\n\t\tf 4 -5382 5388 -5336 5389\n\t\tmu 0 4 3458 3474 3490 3475\n\t\tf 4 -5385 5390 -5345 -5389\n\t\tmu 0 4 3474 3489 3503 3490\n\t\tf 4 -5387 5391 -5354 -5391\n\t\tmu 0 4 3489 3502 3512 3503\n\t\tf 4 -5388 -5324 -5360 -5392\n\t\tmu 0 4 1400 1368 1399 1414\n\t\tf 4 5392 5393 5394 5395\n\t\tmu 0 4 1046 1074 1113 1075\n\t\tf 4 5396 5397 5398 -5394\n\t\tmu 0 4 1074 1112 1161 1113\n\t\tf 4 5399 5400 5401 -5398\n\t\tmu 0 4 1112 1160 1216 1161\n\t\tf 4 5402 5403 5404 -5401\n\t\tmu 0 4 1160 1215 1277 1216\n\t\tf 4 -5395 5405 5406 5407\n\t\tmu 0 4 1075 1113 1162 1114\n\t\tf 4 -5399 5408 5409 -5406\n\t\tmu 0 4 1113 1161 1217 1162\n\t\tf 4 -5402 5410 5411 -5409\n\t\tmu 0 4 1161 1216 1278 1217\n\t\tf 4 -5405 5412 5413 -5411\n\t\tmu 0 4 1216 1277 1329 1278\n\t\tf 4 -5407 5414 5415 5416\n\t\tmu 0 4 1114 1162 1218 1163\n\t\tf 4 -5410 5417 5418 -5415\n\t\tmu 0 4 1162 1217 1279 1218\n\t\tf 4 -5412 5419 5420 -5418\n\t\tmu 0 4 1217 1278 1330 1279\n\t\tf 4 -5414 5421 5422 -5420\n\t\tmu 0 4 1278 1329 1371 1330\n\t\tf 4 -5416 5423 5424 5425\n\t\tmu 0 4 1163 1218 1280 1219\n\t\tf 4 -5419 5426 5427 -5424\n\t\tmu 0 4 1218 1279 1331 1280\n\t\tf 4 -5421 5428 5429 -5427\n\t\tmu 0 4 1279 1330 1372 1331\n\t\tf 4 -5423 5430 5431 -5429\n\t\tmu 0 4 1330 1371 1402 1372\n\t\tf 4 5432 5433 5434 5435\n\t\tmu 0 4 3425 3429 3439 3430\n\t\tf 4 5436 5437 5438 -5434\n\t\tmu 0 4 3429 3438 3452 3439\n\t\tf 4 5439 5440 5441 -5438\n\t\tmu 0 4 3438 3451 3469 3452\n\t\tf 4 5442 5443 5444 -5441\n\t\tmu 0 4 3451 3468 3485 3469\n\t\tf 4 -5435 5445 5446 5447\n\t\tmu 0 4 3430 3439 3453 3440\n\t\tf 4 -5439 5448 5449 -5446\n\t\tmu 0 4 3439 3452 3470 3453\n\t\tf 4 -5442 5450 5451 -5449\n\t\tmu 0 4 3452 3469 3486 3470\n\t\tf 4 -5445 5452 5453 -5451\n\t\tmu 0 4 3469 3485 3500 3486\n\t\tf 4 -5447 5454 5455 5456\n\t\tmu 0 4 3440 3453 3471 3454\n\t\tf 4 -5450 5457 5458 -5455\n\t\tmu 0 4 3453 3470 3487 3471\n\t\tf 4 -5452 5459 5460 -5458\n\t\tmu 0 4 3470 3486 3501 3487\n\t\tf 4 -5454 5461 5462 -5460\n\t\tmu 0 4 3486 3500 3511 3501\n\t\tf 4 -5456 5463 -5404 5464\n\t\tmu 0 4 1276 1328 1277 1215\n\t\tf 4 -5459 5465 -5413 -5464\n\t\tmu 0 4 1328 1370 1329 1277\n\t\tf 4 -5461 5466 -5422 -5466\n\t\tmu 0 4 1370 1401 1371 1329\n\t\tf 4 -5463 5467 -5431 -5467\n\t\tmu 0 4 1401 1415 1402 1371\n\t\tf 4 5468 5469 5470 5471\n\t\tmu 0 4 3980 4004 4028 4005\n\t\tf 4 5472 5473 5474 -5470\n\t\tmu 0 4 4004 4027 4048 4028\n\t\tf 4 5475 5476 5477 -5474\n\t\tmu 0 4 4027 4047 4065 4048\n\t\tf 4 5478 -5425 5479 -5477\n\t\tmu 0 4 1281 1219 1280 1332\n\t\tf 4 -5471 5480 5481 5482\n\t\tmu 0 4 4005 4028 4049 4029\n\t\tf 4 -5475 5483 5484 -5481\n\t\tmu 0 4 4028 4048 4066 4049\n\t\tf 4 -5478 5485 5486 -5484\n\t\tmu 0 4 4048 4065 4078 4066\n\t\tf 4 -5480 -5428 5487 -5486\n\t\tmu 0 4 1332 1280 1331 1373\n\t\tf 4 -5482 5488 5489 5490\n\t\tmu 0 4 4029 4049 4067 4050\n\t\tf 4 -5485 5491 5492 -5489\n\t\tmu 0 4 4049 4066 4079 4067\n\t\tf 4 -5487 5493 5494 -5492\n\t\tmu 0 4 4066 4078 4084 4079\n\t\tf 4 -5488 -5430 5495 -5494\n\t\tmu 0 4 1373 1331 1372 1403\n\t\tf 4 -5490 5496 -5444 5497\n\t\tmu 0 4 3484 3499 3485 3468\n\t\tf 4 -5493 5498 -5453 -5497\n\t\tmu 0 4 3499 3510 3500 3485\n\t\tf 4 -5495 5499 -5462 -5499\n\t\tmu 0 4 3510 3517 3511 3500\n\t\tf 4 -5496 -5432 -5468 -5500\n\t\tmu 0 4 1403 1372 1402 1415\n\t\tf 4 5500 5501 5502 5503\n\t\tmu 0 4 3981 4006 4031 4007\n\t\tf 4 5504 5505 5506 -5502\n\t\tmu 0 4 4006 4030 4052 4031\n\t\tf 4 5507 5508 5509 -5506\n\t\tmu 0 4 4030 4051 4068 4052\n\t\tf 4 5510 5511 5512 -5509\n\t\tmu 0 4 3483 3467 3482 3498\n\t\tf 4 -5503 5513 5514 5515\n\t\tmu 0 4 4007 4031 4053 4032\n\t\tf 4 -5507 5516 5517 -5514\n\t\tmu 0 4 4031 4052 4069 4053\n\t\tf 4 -5510 5518 5519 -5517\n\t\tmu 0 4 4052 4068 4080 4069\n\t\tf 4 -5513 5520 5521 -5519\n\t\tmu 0 4 3498 3482 3497 3509\n\t\tf 4 -5515 5522 5523 5524\n\t\tmu 0 4 4032 4053 4070 4054\n\t\tf 4 -5518 5525 5526 -5523\n\t\tmu 0 4 4053 4069 4081 4070\n\t\tf 4 -5520 5527 5528 -5526\n\t\tmu 0 4 4069 4080 4085 4081\n\t\tf 4 -5522 5529 5530 -5528\n\t\tmu 0 4 3509 3497 3508 3516\n\t\tf 4 -5524 5531 5532 5533\n\t\tmu 0 4 993 999 994 986\n\t\tf 4 -5527 5534 5535 -5532\n\t\tmu 0 4 999 1004 1000 994\n\t\tf 4 -5529 5536 5537 -5535\n\t\tmu 0 4 1004 1008 1005 1000\n\t\tf 4 -5531 5538 5539 -5537\n\t\tmu 0 4 1008 1010 1009 1005\n\t\tf 4 5540 5541 5542 5543\n\t\tmu 0 4 3424 3435 3436 3428\n\t\tf 4 5544 5545 5546 -5542\n\t\tmu 0 4 3435 3447 3448 3436\n\t\tf 4 5547 5548 5549 -5546\n\t\tmu 0 4 3447 3463 3464 3448\n\t\tf 4 5550 5551 5552 -5549\n\t\tmu 0 4 991 990 997 998\n\t\tf 4 -5543 5553 5554 5555\n\t\tmu 0 4 3428 3436 3449 3437\n\t\tf 4 -5547 5556 5557 -5554\n\t\tmu 0 4 3436 3448 3465 3449\n\t\tf 4 -5550 5558 5559 -5557\n\t\tmu 0 4 3448 3464 3480 3465\n\t\tf 4 -5553 5560 5561 -5559\n\t\tmu 0 4 998 997 1002 1003\n\t\tf 4 -5555 5562 5563 5564\n\t\tmu 0 4 3437 3449 3466 3450\n\t\tf 4 -5558 5565 5566 -5563\n\t\tmu 0 4 3449 3465 3481 3466\n\t\tf 4 -5560 5567 5568 -5566\n\t\tmu 0 4 3465 3480 3496 3481\n\t\tf 4 -5562 5569 5570 -5568\n\t\tmu 0 4 1003 1002 1006 1007\n\t\tf 4 -5564 5571 -5512 5572\n\t\tmu 0 4 3450 3466 3482 3467\n\t\tf 4 -5567 5573 -5521 -5572\n\t\tmu 0 4 3466 3481 3497 3482\n\t\tf 4 -5569 5574 -5530 -5574\n\t\tmu 0 4 3481 3496 3508 3497\n\t\tf 4 -5571 5575 -5539 -5575\n\t\tmu 0 4 1007 1006 1009 1010\n\t\tf 4 5576 5577 5578 5579\n\t\tmu 0 4 952 962 972 963\n\t\tf 4 5580 5581 5582 -5578\n\t\tmu 0 4 962 971 980 972\n\t\tf 4 5583 5584 5585 -5582\n\t\tmu 0 4 971 979 987 980\n\t\tf 4 5586 -5533 5587 -5585\n\t\tmu 0 4 979 986 994 987\n\t\tf 4 -5579 5588 5589 5590\n\t\tmu 0 4 963 972 981 973\n\t\tf 4 -5583 5591 5592 -5589\n\t\tmu 0 4 972 980 988 981\n\t\tf 4 -5586 5593 5594 -5592\n\t\tmu 0 4 980 987 995 988\n\t\tf 4 -5588 -5536 5595 -5594\n\t\tmu 0 4 987 994 1000 995\n\t\tf 4 -5590 5596 5597 5598\n\t\tmu 0 4 973 981 989 982\n\t\tf 4 -5593 5599 5600 -5597\n\t\tmu 0 4 981 988 996 989\n\t\tf 4 -5595 5601 5602 -5600\n\t\tmu 0 4 988 995 1001 996\n\t\tf 4 -5596 -5538 5603 -5602\n\t\tmu 0 4 995 1000 1005 1001\n\t\tf 4 -5598 5604 -5552 5605\n\t\tmu 0 4 982 989 997 990\n\t\tf 4 -5601 5606 -5561 -5605\n\t\tmu 0 4 989 996 1002 997\n\t\tf 4 -5603 5607 -5570 -5607\n\t\tmu 0 4 996 1001 1006 1002\n\t\tf 4 -5604 -5540 -5576 -5608\n\t\tmu 0 4 1001 1005 1009 1006\n\t\tf 4 5608 5609 5610 5611\n\t\tmu 0 4 946 957 947 935\n\t\tf 4 5612 5613 5614 -5610\n\t\tmu 0 4 957 967 958 947\n\t\tf 4 5615 5616 5617 -5614\n\t\tmu 0 4 967 976 968 958\n\t\tf 4 5618 5619 5620 -5617\n\t\tmu 0 4 976 984 977 968\n\t\tf 4 -5611 5621 5622 5623\n\t\tmu 0 4 935 947 936 925\n\t\tf 4 -5615 5624 5625 -5622\n\t\tmu 0 4 947 958 948 936\n\t\tf 4 -5618 5626 5627 -5625\n\t\tmu 0 4 958 968 959 948\n\t\tf 4 -5621 5628 5629 -5627\n\t\tmu 0 4 968 977 969 959\n\t\tf 4 -5623 5630 5631 5632\n\t\tmu 0 4 925 936 926 916\n\t\tf 4 -5626 5633 5634 -5631\n\t\tmu 0 4 936 948 937 926\n\t\tf 4 -5628 5635 5636 -5634\n\t\tmu 0 4 948 959 949 937\n\t\tf 4 -5630 5637 5638 -5636\n\t\tmu 0 4 959 969 960 949\n\t\tf 4 -5632 5639 5640 5641\n\t\tmu 0 4 916 926 917 908\n\t\tf 4 -5635 5642 5643 -5640\n\t\tmu 0 4 926 937 927 917\n\t\tf 4 -5637 5644 5645 -5643\n\t\tmu 0 4 937 949 938 927\n\t\tf 4 -5639 5646 5647 -5645\n\t\tmu 0 4 949 960 950 938\n\t\tf 4 5648 5649 5650 5651\n\t\tmu 0 4 3427 3433 3445 3434\n\t\tf 4 5652 5653 5654 -5650\n\t\tmu 0 4 3433 3444 3460 3445\n\t\tf 4 5655 5656 5657 -5654\n\t\tmu 0 4 3444 3459 3477 3460\n\t\tf 4 5658 5659 5660 -5657\n\t\tmu 0 4 3459 3476 3493 3477\n\t\tf 4 -5651 5661 5662 5663\n\t\tmu 0 4 3434 3445 3461 3446\n\t\tf 4 -5655 5664 5665 -5662\n\t\tmu 0 4 3445 3460 3478 3461\n\t\tf 4 -5658 5666 5667 -5665\n\t\tmu 0 4 3460 3477 3494 3478\n\t\tf 4 -5661 5668 5669 -5667\n\t\tmu 0 4 3477 3493 3506 3494\n\t\tf 4 -5663 5670 5671 5672\n\t\tmu 0 4 3446 3461 3479 3462\n\t\tf 4 -5666 5673 5674 -5671\n\t\tmu 0 4 3461 3478 3495 3479\n\t\tf 4 -5668 5675 5676 -5674\n\t\tmu 0 4 3478 3494 3507 3495\n\t\tf 4 -5670 5677 5678 -5676\n\t\tmu 0 4 3494 3506 3515 3507\n\t\tf 4 -5672 5679 -5620 5680\n\t\tmu 0 4 985 978 977 984\n\t\tf 4 -5675 5681 -5629 -5680\n\t\tmu 0 4 978 970 969 977\n\t\tf 4 -5677 5682 -5638 -5682\n\t\tmu 0 4 970 961 960 969\n\t\tf 4 -5679 5683 -5647 -5683\n\t\tmu 0 4 961 951 950 960\n\t\tf 4 5684 5685 5686 5687\n\t\tmu 0 4 4743 4748 4759 4749\n\t\tf 4 5688 5689 5690 -5686\n\t\tmu 0 4 4748 4758 4773 4759\n\t\tf 4 5691 5692 5693 -5690\n\t\tmu 0 4 4758 4772 4787 4773\n\t\tf 4 5694 -5641 5695 -5693\n\t\tmu 0 4 909 908 917 918\n\t\tf 4 -5687 5696 5697 5698\n\t\tmu 0 4 4749 4759 4774 4760\n\t\tf 4 -5691 5699 5700 -5697\n\t\tmu 0 4 4759 4773 4788 4774\n\t\tf 4 -5694 5701 5702 -5700\n\t\tmu 0 4 4773 4787 4797 4788\n\t\tf 4 -5696 -5644 5703 -5702\n\t\tmu 0 4 918 917 927 928\n\t\tf 4 -5698 5704 5705 5706\n\t\tmu 0 4 4760 4774 4789 4775\n\t\tf 4 -5701 5707 5708 -5705\n\t\tmu 0 4 4774 4788 4798 4789\n\t\tf 4 -5703 5709 5710 -5708\n\t\tmu 0 4 4788 4797 4803 4798\n\t\tf 4 -5704 -5646 5711 -5710\n\t\tmu 0 4 928 927 938 939\n\t\tf 4 -5706 5712 -5660 5713\n\t\tmu 0 4 3492 3505 3493 3476\n\t\tf 4 -5709 5714 -5669 -5713\n\t\tmu 0 4 3505 3514 3506 3493\n\t\tf 4 -5711 5715 -5678 -5715\n\t\tmu 0 4 3514 3519 3515 3506\n\t\tf 4 -5712 -5648 -5684 -5716\n\t\tmu 0 4 939 938 950 951\n\t\tf 4 5716 5717 5718 5719\n\t\tmu 0 4 3848 3854 3866 3855\n\t\tf 4 5720 5721 5722 -5718\n\t\tmu 0 4 3854 3865 3881 3866\n\t\tf 4 5723 5724 5725 -5722\n\t\tmu 0 4 3865 3880 3901 3881\n\t\tf 4 5726 5727 5728 -5725\n\t\tmu 0 4 241 175 240 310\n\t\tf 4 -5719 5729 5730 5731\n\t\tmu 0 4 3855 3866 3882 3867\n\t\tf 4 -5723 5732 5733 -5730\n\t\tmu 0 4 3866 3881 3902 3882\n\t\tf 4 -5726 5734 5735 -5733\n\t\tmu 0 4 3881 3901 3923 3902\n\t\tf 4 -5729 5736 5737 -5735\n\t\tmu 0 4 310 240 309 370\n\t\tf 4 -5731 5738 5739 5740\n\t\tmu 0 4 3867 3882 3903 3883\n\t\tf 4 -5734 5741 5742 -5739\n\t\tmu 0 4 3882 3902 3924 3903\n\t\tf 4 -5736 5743 5744 -5742\n\t\tmu 0 4 3902 3923 3948 3924\n\t\tf 4 -5738 5745 5746 -5744\n\t\tmu 0 4 370 309 369 418\n\t\tf 4 -5740 5747 5748 5749\n\t\tmu 0 4 2560 2580 2561 2541\n\t\tf 4 -5743 5750 5751 -5748\n\t\tmu 0 4 2580 2600 2581 2561\n\t\tf 4 -5745 5752 5753 -5751\n\t\tmu 0 4 2600 2617 2601 2581\n\t\tf 4 -5747 5754 5755 -5753\n\t\tmu 0 4 418 369 417 449\n\t\tf 4 5756 5757 5758 5759\n\t\tmu 0 4 21 61 62 26\n\t\tf 4 5760 5761 5762 -5758\n\t\tmu 0 4 61 112 113 62\n\t\tf 4 5763 5764 5765 -5762\n\t\tmu 0 4 112 171 172 113\n\t\tf 4 5766 5767 5768 -5765\n\t\tmu 0 4 171 236 237 172\n\t\tf 4 -5759 5769 5770 5771\n\t\tmu 0 4 26 62 114 63\n\t\tf 4 -5763 5772 5773 -5770\n\t\tmu 0 4 62 113 173 114\n\t\tf 4 -5766 5774 5775 -5773\n\t\tmu 0 4 113 172 238 173\n\t\tf 4 -5769 5776 5777 -5775\n\t\tmu 0 4 172 237 307 238\n\t\tf 4 -5771 5778 5779 5780\n\t\tmu 0 4 63 114 174 115\n\t\tf 4 -5774 5781 5782 -5779\n\t\tmu 0 4 114 173 239 174\n\t\tf 4 -5776 5783 5784 -5782\n\t\tmu 0 4 173 238 308 239\n\t\tf 4 -5778 5785 5786 -5784\n\t\tmu 0 4 238 307 368 308;\n\tsetAttr \".fc[2500:2999]\"\n\t\tf 4 -5780 5787 -5728 5788\n\t\tmu 0 4 115 174 240 175\n\t\tf 4 -5783 5789 -5737 -5788\n\t\tmu 0 4 174 239 309 240\n\t\tf 4 -5785 5790 -5746 -5790\n\t\tmu 0 4 239 308 369 309\n\t\tf 4 -5787 5791 -5755 -5791\n\t\tmu 0 4 308 368 417 369\n\t\tf 4 5792 5793 5794 5795\n\t\tmu 0 4 2498 2502 2512 2503\n\t\tf 4 5796 5797 5798 -5794\n\t\tmu 0 4 2502 2511 2525 2512\n\t\tf 4 5799 5800 5801 -5798\n\t\tmu 0 4 2511 2524 2542 2525\n\t\tf 4 5802 -5749 5803 -5801\n\t\tmu 0 4 2524 2541 2561 2542\n\t\tf 4 -5795 5804 5805 5806\n\t\tmu 0 4 2503 2512 2526 2513\n\t\tf 4 -5799 5807 5808 -5805\n\t\tmu 0 4 2512 2525 2543 2526\n\t\tf 4 -5802 5809 5810 -5808\n\t\tmu 0 4 2525 2542 2562 2543\n\t\tf 4 -5804 -5752 5811 -5810\n\t\tmu 0 4 2542 2561 2581 2562\n\t\tf 4 -5806 5812 5813 5814\n\t\tmu 0 4 2513 2526 2544 2527\n\t\tf 4 -5809 5815 5816 -5813\n\t\tmu 0 4 2526 2543 2563 2544\n\t\tf 4 -5811 5817 5818 -5816\n\t\tmu 0 4 2543 2562 2582 2563\n\t\tf 4 -5812 -5754 5819 -5818\n\t\tmu 0 4 2562 2581 2601 2582\n\t\tf 4 -5814 5820 -5768 5821\n\t\tmu 0 4 305 306 237 236\n\t\tf 4 -5817 5822 -5777 -5821\n\t\tmu 0 4 306 367 307 237\n\t\tf 4 -5819 5823 -5786 -5823\n\t\tmu 0 4 367 416 368 307\n\t\tf 4 -5820 -5756 -5792 -5824\n\t\tmu 0 4 416 449 417 368\n\t\tf 4 5824 5825 5826 5827\n\t\tmu 0 4 77 132 196 133\n\t\tf 4 5828 5829 5830 -5826\n\t\tmu 0 4 132 195 263 196\n\t\tf 4 5831 5832 5833 -5830\n\t\tmu 0 4 195 262 328 263\n\t\tf 4 5834 5835 5836 -5833\n\t\tmu 0 4 262 327 384 328\n\t\tf 4 -5827 5837 5838 5839\n\t\tmu 0 4 133 196 264 197\n\t\tf 4 -5831 5840 5841 -5838\n\t\tmu 0 4 196 263 329 264\n\t\tf 4 -5834 5842 5843 -5841\n\t\tmu 0 4 263 328 385 329\n\t\tf 4 -5837 5844 5845 -5843\n\t\tmu 0 4 328 384 429 385\n\t\tf 4 -5839 5846 5847 5848\n\t\tmu 0 4 197 264 330 265\n\t\tf 4 -5842 5849 5850 -5847\n\t\tmu 0 4 264 329 386 330\n\t\tf 4 -5844 5851 5852 -5850\n\t\tmu 0 4 329 385 430 386\n\t\tf 4 -5846 5853 5854 -5852\n\t\tmu 0 4 385 429 454 430\n\t\tf 4 -5848 5855 5856 5857\n\t\tmu 0 4 265 330 387 331\n\t\tf 4 -5851 5858 5859 -5856\n\t\tmu 0 4 330 386 431 387\n\t\tf 4 -5853 5860 5861 -5859\n\t\tmu 0 4 386 430 455 431\n\t\tf 4 -5855 5862 5863 -5861\n\t\tmu 0 4 430 454 465 455\n\t\tf 4 5864 5865 5866 5867\n\t\tmu 0 4 2286 2300 2324 2301\n\t\tf 4 5868 5869 5870 -5866\n\t\tmu 0 4 2300 2323 2355 2324\n\t\tf 4 5871 5872 5873 -5870\n\t\tmu 0 4 2323 2354 2387 2355\n\t\tf 4 5874 5875 5876 -5873\n\t\tmu 0 4 2354 2386 2425 2387\n\t\tf 4 -5867 5877 5878 5879\n\t\tmu 0 4 2301 2324 2356 2325\n\t\tf 4 -5871 5880 5881 -5878\n\t\tmu 0 4 2324 2355 2388 2356\n\t\tf 4 -5874 5882 5883 -5881\n\t\tmu 0 4 2355 2387 2426 2388\n\t\tf 4 -5877 5884 5885 -5883\n\t\tmu 0 4 2387 2425 2456 2426\n\t\tf 4 -5879 5886 5887 5888\n\t\tmu 0 4 2325 2356 2389 2357\n\t\tf 4 -5882 5889 5890 -5887\n\t\tmu 0 4 2356 2388 2427 2389\n\t\tf 4 -5884 5891 5892 -5890\n\t\tmu 0 4 2388 2426 2457 2427\n\t\tf 4 -5886 5893 5894 -5892\n\t\tmu 0 4 2426 2456 2479 2457\n\t\tf 4 -5888 5895 -5836 5896\n\t\tmu 0 4 383 428 384 327\n\t\tf 4 -5891 5897 -5845 -5896\n\t\tmu 0 4 428 453 429 384\n\t\tf 4 -5893 5898 -5854 -5898\n\t\tmu 0 4 453 464 454 429\n\t\tf 4 -5895 5899 -5863 -5899\n\t\tmu 0 4 464 471 465 454\n\t\tf 4 5900 5901 5902 5903\n\t\tmu 0 4 4136 4157 4182 4158\n\t\tf 4 5904 5905 5906 -5902\n\t\tmu 0 4 4157 4181 4202 4182\n\t\tf 4 5907 5908 5909 -5906\n\t\tmu 0 4 4181 4201 4214 4202\n\t\tf 4 5910 -5857 5911 -5909\n\t\tmu 0 4 388 331 387 432\n\t\tf 4 -5903 5912 5913 5914\n\t\tmu 0 4 4158 4182 4203 4183\n\t\tf 4 -5907 5915 5916 -5913\n\t\tmu 0 4 4182 4202 4215 4203\n\t\tf 4 -5910 5917 5918 -5916\n\t\tmu 0 4 4202 4214 4223 4215\n\t\tf 4 -5912 -5860 5919 -5918\n\t\tmu 0 4 432 387 431 456\n\t\tf 4 -5914 5920 5921 5922\n\t\tmu 0 4 4183 4203 4216 4204\n\t\tf 4 -5917 5923 5924 -5921\n\t\tmu 0 4 4203 4215 4224 4216\n\t\tf 4 -5919 5925 5926 -5924\n\t\tmu 0 4 4215 4223 4227 4224\n\t\tf 4 -5920 -5862 5927 -5926\n\t\tmu 0 4 456 431 455 466\n\t\tf 4 -5922 5928 -5876 5929\n\t\tmu 0 4 2424 2455 2425 2386\n\t\tf 4 -5925 5930 -5885 -5929\n\t\tmu 0 4 2455 2478 2456 2425\n\t\tf 4 -5927 5931 -5894 -5931\n\t\tmu 0 4 2478 2492 2479 2456\n\t\tf 4 -5928 -5864 -5900 -5932\n\t\tmu 0 4 466 455 465 471\n\t\tf 4 5932 5933 5934 5935\n\t\tmu 0 4 135 199 268 200\n\t\tf 4 5936 5937 5938 -5934\n\t\tmu 0 4 199 267 334 268\n\t\tf 4 5939 5940 5941 -5938\n\t\tmu 0 4 267 333 391 334\n\t\tf 4 5942 5943 5944 -5941\n\t\tmu 0 4 333 390 434 391\n\t\tf 4 -5935 5945 5946 5947\n\t\tmu 0 4 200 268 335 269\n\t\tf 4 -5939 5948 5949 -5946\n\t\tmu 0 4 268 334 392 335\n\t\tf 4 -5942 5950 5951 -5949\n\t\tmu 0 4 334 391 435 392\n\t\tf 4 -5945 5952 5953 -5951\n\t\tmu 0 4 391 434 458 435\n\t\tf 4 -5947 5954 5955 5956\n\t\tmu 0 4 269 335 393 336\n\t\tf 4 -5950 5957 5958 -5955\n\t\tmu 0 4 335 392 436 393\n\t\tf 4 -5952 5959 5960 -5958\n\t\tmu 0 4 392 435 459 436\n\t\tf 4 -5954 5961 5962 -5960\n\t\tmu 0 4 435 458 468 459\n\t\tf 4 -5956 5963 5964 5965\n\t\tmu 0 4 336 393 437 394\n\t\tf 4 -5959 5966 5967 -5964\n\t\tmu 0 4 393 436 460 437\n\t\tf 4 -5961 5968 5969 -5967\n\t\tmu 0 4 436 459 469 460\n\t\tf 4 -5963 5970 5971 -5969\n\t\tmu 0 4 459 468 473 469\n\t\tf 4 5972 5973 5974 5975\n\t\tmu 0 4 4159 4184 4198 4179\n\t\tf 4 5976 5977 5978 -5974\n\t\tmu 0 4 4184 4205 4211 4198\n\t\tf 4 5979 5980 5981 -5978\n\t\tmu 0 4 4205 4217 4220 4211\n\t\tf 4 5982 5983 5984 -5981\n\t\tmu 0 4 2621 2605 2620 2634\n\t\tf 4 -5975 5985 5986 5987\n\t\tmu 0 4 4179 4198 4212 4199\n\t\tf 4 -5979 5988 5989 -5986\n\t\tmu 0 4 4198 4211 4221 4212\n\t\tf 4 -5982 5990 5991 -5989\n\t\tmu 0 4 4211 4220 4225 4221\n\t\tf 4 -5985 5992 5993 -5991\n\t\tmu 0 4 2634 2620 2633 2644\n\t\tf 4 -5987 5994 5995 5996\n\t\tmu 0 4 4199 4212 4222 4213\n\t\tf 4 -5990 5997 5998 -5995\n\t\tmu 0 4 4212 4221 4226 4222\n\t\tf 4 -5992 5999 6000 -5998\n\t\tmu 0 4 4221 4225 4228 4226\n\t\tf 4 -5994 6001 6002 -6000\n\t\tmu 0 4 2644 2633 2643 2651\n\t\tf 4 -5996 6003 -5944 6004\n\t\tmu 0 4 433 457 434 390\n\t\tf 4 -5999 6005 -5953 -6004\n\t\tmu 0 4 457 467 458 434\n\t\tf 4 -6001 6006 -5962 -6006\n\t\tmu 0 4 467 472 468 458\n\t\tf 4 -6003 6007 -5971 -6007\n\t\tmu 0 4 472 475 473 468\n\t\tf 4 6008 6009 6010 6011\n\t\tmu 0 4 2531 2547 2566 2548\n\t\tf 4 6012 6013 6014 -6010\n\t\tmu 0 4 2547 2565 2584 2566\n\t\tf 4 6015 6016 6017 -6014\n\t\tmu 0 4 2565 2583 2602 2584\n\t\tf 4 6018 -5965 6019 -6017\n\t\tmu 0 4 438 394 437 461\n\t\tf 4 -6011 6020 6021 6022\n\t\tmu 0 4 2548 2566 2585 2567\n\t\tf 4 -6015 6023 6024 -6021\n\t\tmu 0 4 2566 2584 2603 2585\n\t\tf 4 -6018 6025 6026 -6024\n\t\tmu 0 4 2584 2602 2618 2603\n\t\tf 4 -6020 -5968 6027 -6026\n\t\tmu 0 4 461 437 460 470\n\t\tf 4 -6022 6028 6029 6030\n\t\tmu 0 4 2567 2585 2604 2586\n\t\tf 4 -6025 6031 6032 -6029\n\t\tmu 0 4 2585 2603 2619 2604\n\t\tf 4 -6027 6033 6034 -6032\n\t\tmu 0 4 2603 2618 2632 2619\n\t\tf 4 -6028 -5970 6035 -6034\n\t\tmu 0 4 470 460 469 474\n\t\tf 4 -6030 6036 -5984 6037\n\t\tmu 0 4 2586 2604 2620 2605\n\t\tf 4 -6033 6038 -5993 -6037\n\t\tmu 0 4 2604 2619 2633 2620\n\t\tf 4 -6035 6039 -6002 -6039\n\t\tmu 0 4 2619 2632 2643 2633\n\t\tf 4 -6036 -5972 -6008 -6040\n\t\tmu 0 4 474 469 473 475\n\t\tf 4 6040 6041 6042 6043\n\t\tmu 0 4 2 33 73 34\n\t\tf 4 6044 6045 6046 -6042\n\t\tmu 0 4 33 72 127 73\n\t\tf 4 6047 6048 6049 -6046\n\t\tmu 0 4 72 126 189 127\n\t\tf 4 6050 6051 6052 -6049\n\t\tmu 0 4 126 188 255 189\n\t\tf 4 -6043 6053 6054 6055\n\t\tmu 0 4 34 73 128 74\n\t\tf 4 -6047 6056 6057 -6054\n\t\tmu 0 4 73 127 190 128\n\t\tf 4 -6050 6058 6059 -6057\n\t\tmu 0 4 127 189 256 190\n\t\tf 4 -6053 6060 6061 -6059\n\t\tmu 0 4 189 255 322 256\n\t\tf 4 -6055 6062 6063 6064\n\t\tmu 0 4 74 128 191 129\n\t\tf 4 -6058 6065 6066 -6063\n\t\tmu 0 4 128 190 257 191\n\t\tf 4 -6060 6067 6068 -6066\n\t\tmu 0 4 190 256 323 257\n\t\tf 4 -6062 6069 6070 -6068\n\t\tmu 0 4 256 322 380 323\n\t\tf 4 -6064 6071 6072 6073\n\t\tmu 0 4 129 191 258 192\n\t\tf 4 -6067 6074 6075 -6072\n\t\tmu 0 4 191 257 324 258\n\t\tf 4 -6069 6076 6077 -6075\n\t\tmu 0 4 257 323 381 324\n\t\tf 4 -6071 6078 6079 -6077\n\t\tmu 0 4 323 380 426 381\n\t\tf 4 6080 6081 6082 6083\n\t\tmu 0 4 4230 4234 4243 4235\n\t\tf 4 6084 6085 6086 -6082\n\t\tmu 0 4 4234 4242 4255 4243\n\t\tf 4 6087 6088 6089 -6086\n\t\tmu 0 4 4242 4254 4269 4255\n\t\tf 4 6090 6091 6092 -6089\n\t\tmu 0 4 2393 2361 2392 2430\n\t\tf 4 -6083 6093 6094 6095\n\t\tmu 0 4 4235 4243 4257 4245\n\t\tf 4 -6087 6096 6097 -6094\n\t\tmu 0 4 4243 4255 4271 4257\n\t\tf 4 -6090 6098 6099 -6097\n\t\tmu 0 4 4255 4269 4281 4271\n\t\tf 4 -6093 6100 6101 -6099\n\t\tmu 0 4 2430 2392 2429 2459\n\t\tf 4 -6095 6102 6103 6104\n\t\tmu 0 4 4245 4257 4273 4259\n\t\tf 4 -6098 6105 6106 -6103\n\t\tmu 0 4 4257 4271 4283 4273\n\t\tf 4 -6100 6107 6108 -6106\n\t\tmu 0 4 4271 4281 4289 4283\n\t\tf 4 -6102 6109 6110 -6108\n\t\tmu 0 4 2459 2429 2458 2480\n\t\tf 4 -6104 6111 -6052 6112\n\t\tmu 0 4 254 321 255 188\n\t\tf 4 -6107 6113 -6061 -6112\n\t\tmu 0 4 321 379 322 255\n\t\tf 4 -6109 6114 -6070 -6114\n\t\tmu 0 4 379 425 380 322\n\t\tf 4 -6111 6115 -6079 -6115\n\t\tmu 0 4 425 452 426 380\n\t\tf 4 6116 6117 6118 6119\n\t\tmu 0 4 2281 2293 2304 2289\n\t\tf 4 6120 6121 6122 -6118\n\t\tmu 0 4 2293 2311 2328 2304\n\t\tf 4 6123 6124 6125 -6122\n\t\tmu 0 4 2311 2338 2358 2328\n\t\tf 4 6126 -6073 6127 -6125\n\t\tmu 0 4 259 192 258 325\n\t\tf 4 -6119 6128 6129 6130\n\t\tmu 0 4 2289 2304 2329 2305\n\t\tf 4 -6123 6131 6132 -6129\n\t\tmu 0 4 2304 2328 2359 2329\n\t\tf 4 -6126 6133 6134 -6132\n\t\tmu 0 4 2328 2358 2390 2359\n\t\tf 4 -6128 -6076 6135 -6134\n\t\tmu 0 4 325 258 324 382\n\t\tf 4 -6130 6136 6137 6138\n\t\tmu 0 4 2305 2329 2360 2330\n\t\tf 4 -6133 6139 6140 -6137\n\t\tmu 0 4 2329 2359 2391 2360\n\t\tf 4 -6135 6141 6142 -6140\n\t\tmu 0 4 2359 2390 2428 2391\n\t\tf 4 -6136 -6078 6143 -6142\n\t\tmu 0 4 382 324 381 427\n\t\tf 4 -6138 6144 -6092 6145\n\t\tmu 0 4 2330 2360 2392 2361\n\t\tf 4 -6141 6146 -6101 -6145\n\t\tmu 0 4 2360 2391 2429 2392\n\t\tf 4 -6143 6147 -6110 -6147\n\t\tmu 0 4 2391 2428 2458 2429\n\t\tf 4 -6144 -6080 -6116 -6148\n\t\tmu 0 4 427 381 426 452\n\t\tf 4 6148 6149 6150 6151\n\t\tmu 0 4 3800 3792 3798 3810\n\t\tf 4 -6151 6152 6153 6154\n\t\tmu 0 4 3810 3798 3809 3823\n\t\tf 4 -6154 6155 6156 6157\n\t\tmu 0 4 3823 3809 3822 3834\n\t\tf 4 -6157 6158 6159 6160\n\t\tmu 0 4 2245 2246 2214 2213\n\t\tf 4 -6160 6161 6162 6163\n\t\tmu 0 4 2213 2214 2182 2181\n\t\tf 4 -6163 6164 6165 6166\n\t\tmu 0 4 2181 2182 2150 2149\n\t\tf 4 -6166 6167 6168 6169\n\t\tmu 0 4 2149 2150 2118 2117\n\t\tf 4 -6169 6170 -304 6171\n\t\tmu 0 4 2117 2118 2086 2085\n\t\tf 4 -376 -6152 6172 6173\n\t\tmu 0 4 3812 3800 3810 3824\n\t\tf 4 -6173 -6155 6174 6175\n\t\tmu 0 4 3824 3810 3823 3835\n\t\tf 4 -6175 -6158 6176 6177\n\t\tmu 0 4 3835 3823 3834 3841\n\t\tf 4 -6177 -6161 6178 6179\n\t\tmu 0 4 2276 2245 2213 2244\n\t\tf 4 -6179 -6164 6180 6181\n\t\tmu 0 4 2244 2213 2181 2212\n\t\tf 4 -6181 -6167 6182 6183\n\t\tmu 0 4 2212 2181 2149 2180\n\t\tf 4 -6183 -6170 6184 6185\n\t\tmu 0 4 2180 2149 2117 2148\n\t\tf 4 -6185 -6172 -335 6186\n\t\tmu 0 4 2148 2117 2085 2116\n\t\tf 4 -351 -6174 6187 6188\n\t\tmu 0 4 3826 3812 3824 3836\n\t\tf 4 -6188 -6176 6189 6190\n\t\tmu 0 4 3836 3824 3835 3842\n\t\tf 4 -6190 -6178 6191 6192\n\t\tmu 0 4 3842 3835 3841 3844\n\t\tf 4 -6192 -6180 6193 6194\n\t\tmu 0 4 2275 2276 2244 2243\n\t\tf 4 -6194 -6182 6195 6196\n\t\tmu 0 4 2243 2244 2212 2211\n\t\tf 4 -6196 -6184 6197 6198\n\t\tmu 0 4 2211 2212 2180 2179\n\t\tf 4 -6198 -6186 6199 6200\n\t\tmu 0 4 2179 2180 2148 2147\n\t\tf 4 -6200 -6187 -334 6201\n\t\tmu 0 4 2147 2148 2116 2115\n\t\tf 4 -365 -6189 6202 6203\n\t\tmu 0 4 3765 3773 3780 3774\n\t\tf 4 -6203 -6191 6204 6205\n\t\tmu 0 4 3774 3780 3785 3781\n\t\tf 4 -6205 -6193 6206 6207\n\t\tmu 0 4 3781 3785 3788 3786\n\t\tf 4 -6207 -6195 6208 6209\n\t\tmu 0 4 2274 2275 2243 2242\n\t\tf 4 -6209 -6197 6210 6211\n\t\tmu 0 4 2242 2243 2211 2210\n\t\tf 4 -6211 -6199 6212 6213\n\t\tmu 0 4 2210 2211 2179 2178\n\t\tf 4 -6213 -6201 6214 6215\n\t\tmu 0 4 2178 2179 2147 2146\n\t\tf 4 -6215 -6202 -333 6216\n\t\tmu 0 4 2146 2147 2115 2114\n\t\tf 4 -393 -6204 6217 6218\n\t\tmu 0 4 3756 3765 3774 3766\n\t\tf 4 -6218 -6206 6219 6220\n\t\tmu 0 4 3766 3774 3781 3775\n\t\tf 4 -6220 -6208 6221 6222\n\t\tmu 0 4 3775 3781 3786 3782\n\t\tf 4 -6222 -6210 6223 6224\n\t\tmu 0 4 2273 2274 2242 2241\n\t\tf 4 -6224 -6212 6225 6226\n\t\tmu 0 4 2241 2242 2210 2209\n\t\tf 4 -6226 -6214 6227 6228\n\t\tmu 0 4 2209 2210 2178 2177\n\t\tf 4 -6228 -6216 6229 6230\n\t\tmu 0 4 2177 2178 2146 2145\n\t\tf 4 -6230 -6217 -332 6231\n\t\tmu 0 4 2145 2146 2114 2113\n\t\tf 4 -415 -6219 6232 6233\n\t\tmu 0 4 3745 3756 3766 3757\n\t\tf 4 -6233 -6221 6234 6235\n\t\tmu 0 4 3757 3766 3775 3767\n\t\tf 4 -6235 -6223 6236 6237\n\t\tmu 0 4 3767 3775 3782 3776\n\t\tf 4 -6237 -6225 6238 6239\n\t\tmu 0 4 2272 2273 2241 2240\n\t\tf 4 -6239 -6227 6240 6241\n\t\tmu 0 4 2240 2241 2209 2208\n\t\tf 4 -6241 -6229 6242 6243\n\t\tmu 0 4 2208 2209 2177 2176\n\t\tf 4 -6243 -6231 6244 6245\n\t\tmu 0 4 2176 2177 2145 2144\n\t\tf 4 -6245 -6232 -331 6246\n\t\tmu 0 4 2144 2145 2113 2112\n\t\tf 4 -382 -6234 6247 6248\n\t\tmu 0 4 3732 3745 3757 3746\n\t\tf 4 -6248 -6236 6249 6250\n\t\tmu 0 4 3746 3757 3767 3758\n\t\tf 4 -6250 -6238 6251 6252\n\t\tmu 0 4 3758 3767 3776 3768\n\t\tf 4 -6252 -6240 6253 6254\n\t\tmu 0 4 2271 2272 2240 2239\n\t\tf 4 -6254 -6242 6255 6256\n\t\tmu 0 4 2239 2240 2208 2207\n\t\tf 4 -6256 -6244 6257 6258\n\t\tmu 0 4 2207 2208 2176 2175\n\t\tf 4 -6258 -6246 6259 6260\n\t\tmu 0 4 2175 2176 2144 2143\n\t\tf 4 -6260 -6247 -330 6261\n\t\tmu 0 4 2143 2144 2112 2111\n\t\tf 4 -421 -6249 6262 6263\n\t\tmu 0 4 3718 3732 3746 3733\n\t\tf 4 -6263 -6251 6264 6265\n\t\tmu 0 4 3733 3746 3758 3747\n\t\tf 4 -6265 -6253 6266 6267\n\t\tmu 0 4 3747 3758 3768 3759\n\t\tf 4 -6267 -6255 6268 6269\n\t\tmu 0 4 2270 2271 2239 2238\n\t\tf 4 -6269 -6257 6270 6271\n\t\tmu 0 4 2238 2239 2207 2206\n\t\tf 4 -6271 -6259 6272 6273\n\t\tmu 0 4 2206 2207 2175 2174\n\t\tf 4 -6273 -6261 6274 6275\n\t\tmu 0 4 2174 2175 2143 2142\n\t\tf 4 -6275 -6262 -329 6276\n\t\tmu 0 4 2142 2143 2111 2110\n\t\tf 4 -359 -6264 6277 6278\n\t\tmu 0 4 3708 3718 3733 3719\n\t\tf 4 -6278 -6266 6279 6280\n\t\tmu 0 4 3719 3733 3747 3734\n\t\tf 4 -6280 -6268 6281 6282\n\t\tmu 0 4 3734 3747 3759 3748\n\t\tf 4 -6282 -6270 6283 6284\n\t\tmu 0 4 2269 2270 2238 2237\n\t\tf 4 -6284 -6272 6285 6286\n\t\tmu 0 4 2237 2238 2206 2205\n\t\tf 4 -6286 -6274 6287 6288\n\t\tmu 0 4 2205 2206 2174 2173\n\t\tf 4 -6288 -6276 6289 6290\n\t\tmu 0 4 2173 2174 2142 2141\n\t\tf 4 -6290 -6277 -328 6291\n\t\tmu 0 4 2141 2142 2110 2109\n\t\tf 4 -391 -6279 6292 6293\n\t\tmu 0 4 3703 3708 3719 3709\n\t\tf 4 -6293 -6281 6294 6295\n\t\tmu 0 4 3709 3719 3734 3720\n\t\tf 4 -6295 -6283 6296 6297\n\t\tmu 0 4 3720 3734 3748 3735\n\t\tf 4 -6297 -6285 6298 6299\n\t\tmu 0 4 2268 2269 2237 2236\n\t\tf 4 -6299 -6287 6300 6301\n\t\tmu 0 4 2236 2237 2205 2204\n\t\tf 4 -6301 -6289 6302 6303\n\t\tmu 0 4 2204 2205 2173 2172\n\t\tf 4 -6303 -6291 6304 6305\n\t\tmu 0 4 2172 2173 2141 2140\n\t\tf 4 -6305 -6292 -327 6306\n\t\tmu 0 4 2140 2141 2109 2108\n\t\tf 4 -338 -6294 6307 6308\n\t\tmu 0 4 3704 3703 3709 3710\n\t\tf 4 -6308 -6296 6309 6310\n\t\tmu 0 4 3710 3709 3720 3721\n\t\tf 4 -6310 -6298 6311 6312\n\t\tmu 0 4 3721 3720 3735 3736\n\t\tf 4 -6312 -6300 6313 6314\n\t\tmu 0 4 2267 2268 2236 2235\n\t\tf 4 -6314 -6302 6315 6316\n\t\tmu 0 4 2235 2236 2204 2203\n\t\tf 4 -6316 -6304 6317 6318\n\t\tmu 0 4 2203 2204 2172 2171\n\t\tf 4 -6318 -6306 6319 6320\n\t\tmu 0 4 2171 2172 2140 2139\n\t\tf 4 -6320 -6307 -326 6321\n\t\tmu 0 4 2139 2140 2108 2107\n\t\tf 4 -408 -6309 6322 6323\n\t\tmu 0 4 3712 3704 3710 3722\n\t\tf 4 -6323 -6311 6324 6325\n\t\tmu 0 4 3722 3710 3721 3737\n\t\tf 4 -6325 -6313 6326 6327\n\t\tmu 0 4 3737 3721 3736 3749\n\t\tf 4 -6327 -6315 6328 6329\n\t\tmu 0 4 2266 2267 2235 2234\n\t\tf 4 -6329 -6317 6330 6331\n\t\tmu 0 4 2234 2235 2203 2202\n\t\tf 4 -6331 -6319 6332 6333\n\t\tmu 0 4 2202 2203 2171 2170\n\t\tf 4 -6333 -6321 6334 6335\n\t\tmu 0 4 2170 2171 2139 2138\n\t\tf 4 -6335 -6322 -325 6336\n\t\tmu 0 4 2138 2139 2107 2106\n\t\tf 4 -419 -6324 6337 6338\n\t\tmu 0 4 3724 3712 3722 3738\n\t\tf 4 -6338 -6326 6339 6340\n\t\tmu 0 4 3738 3722 3737 3750\n\t\tf 4 -6340 -6328 6341 6342\n\t\tmu 0 4 3750 3737 3749 3760\n\t\tf 4 -6342 -6330 6343 6344\n\t\tmu 0 4 2265 2266 2234 2233\n\t\tf 4 -6344 -6332 6345 6346\n\t\tmu 0 4 2233 2234 2202 2201\n\t\tf 4 -6346 -6334 6347 6348\n\t\tmu 0 4 2201 2202 2170 2169\n\t\tf 4 -6348 -6336 6349 6350\n\t\tmu 0 4 2169 2170 2138 2137\n\t\tf 4 -6350 -6337 -324 6351\n\t\tmu 0 4 2137 2138 2106 2105\n\t\tf 4 -403 -6339 6352 6353\n\t\tmu 0 4 4837 4845 4852 4846\n\t\tf 4 -6353 -6341 6354 6355\n\t\tmu 0 4 4846 4852 4857 4853\n\t\tf 4 -6355 -6343 6356 6357\n\t\tmu 0 4 4853 4857 4860 4858\n\t\tf 4 -6357 -6345 6358 6359\n\t\tmu 0 4 2264 2265 2233 2232\n\t\tf 4 -6359 -6347 6360 6361\n\t\tmu 0 4 2232 2233 2201 2200\n\t\tf 4 -6361 -6349 6362 6363\n\t\tmu 0 4 2200 2201 2169 2168\n\t\tf 4 -6363 -6351 6364 6365\n\t\tmu 0 4 2168 2169 2137 2136\n\t\tf 4 -6365 -6352 -323 6366\n\t\tmu 0 4 2136 2137 2105 2104\n\t\tf 4 -423 -6354 6367 6368\n\t\tmu 0 4 4828 4837 4846 4838\n\t\tf 4 -6368 -6356 6369 6370\n\t\tmu 0 4 4838 4846 4853 4847\n\t\tf 4 -6370 -6358 6371 6372\n\t\tmu 0 4 4847 4853 4858 4854\n\t\tf 4 -6372 -6360 6373 6374\n\t\tmu 0 4 2263 2264 2232 2231\n\t\tf 4 -6374 -6362 6375 6376\n\t\tmu 0 4 2231 2232 2200 2199\n\t\tf 4 -6376 -6364 6377 6378\n\t\tmu 0 4 2199 2200 2168 2167\n\t\tf 4 -6378 -6366 6379 6380\n\t\tmu 0 4 2167 2168 2136 2135\n\t\tf 4 -6380 -6367 -322 6381\n\t\tmu 0 4 2135 2136 2104 2103\n\t\tf 4 -400 -6369 6382 6383\n\t\tmu 0 4 4819 4828 4838 4829\n\t\tf 4 -6383 -6371 6384 6385\n\t\tmu 0 4 4829 4838 4847 4839\n\t\tf 4 -6385 -6373 6386 6387\n\t\tmu 0 4 4839 4847 4854 4848\n\t\tf 4 -6387 -6375 6388 6389\n\t\tmu 0 4 2262 2263 2231 2230\n\t\tf 4 -6389 -6377 6390 6391\n\t\tmu 0 4 2230 2231 2199 2198\n\t\tf 4 -6391 -6379 6392 6393\n\t\tmu 0 4 2198 2199 2167 2166\n\t\tf 4 -6393 -6381 6394 6395\n\t\tmu 0 4 2166 2167 2135 2134\n\t\tf 4 -6395 -6382 -321 6396\n\t\tmu 0 4 2134 2135 2103 2102\n\t\tf 4 -372 -6384 6397 6398\n\t\tmu 0 4 4812 4819 4829 4820\n\t\tf 4 -6398 -6386 6399 6400\n\t\tmu 0 4 4820 4829 4839 4830\n\t\tf 4 -6400 -6388 6401 6402\n\t\tmu 0 4 4830 4839 4848 4840\n\t\tf 4 -6402 -6390 6403 6404\n\t\tmu 0 4 2261 2262 2230 2229\n\t\tf 4 -6404 -6392 6405 6406\n\t\tmu 0 4 2229 2230 2198 2197\n\t\tf 4 -6406 -6394 6407 6408\n\t\tmu 0 4 2197 2198 2166 2165\n\t\tf 4 -6408 -6396 6409 6410\n\t\tmu 0 4 2165 2166 2134 2133\n\t\tf 4 -6410 -6397 -320 6411\n\t\tmu 0 4 2133 2134 2102 2101\n\t\tf 4 -413 -6399 6412 6413\n\t\tmu 0 4 4807 4812 4820 4813\n\t\tf 4 -6413 -6401 6414 6415\n\t\tmu 0 4 4813 4820 4830 4821\n\t\tf 4 -6415 -6403 6416 6417\n\t\tmu 0 4 4821 4830 4840 4831\n\t\tf 4 -6417 -6405 6418 6419\n\t\tmu 0 4 2260 2261 2229 2228\n\t\tf 4 -6419 -6407 6420 6421\n\t\tmu 0 4 2228 2229 2197 2196\n\t\tf 4 -6421 -6409 6422 6423\n\t\tmu 0 4 2196 2197 2165 2164\n\t\tf 4 -6423 -6411 6424 6425\n\t\tmu 0 4 2164 2165 2133 2132\n\t\tf 4 -6425 -6412 -319 6426\n\t\tmu 0 4 2132 2133 2101 2100\n\t\tf 4 -355 -6414 6427 6428\n\t\tmu 0 4 4808 4807 4813 4814\n\t\tf 4 -6428 -6416 6429 6430\n\t\tmu 0 4 4814 4813 4821 4822\n\t\tf 4 -6430 -6418 6431 6432\n\t\tmu 0 4 4822 4821 4831 4832\n\t\tf 4 -6432 -6420 6433 6434\n\t\tmu 0 4 2259 2260 2228 2227\n\t\tf 4 -6434 -6422 6435 6436\n\t\tmu 0 4 2227 2228 2196 2195\n\t\tf 4 -6436 -6424 6437 6438\n\t\tmu 0 4 2195 2196 2164 2163\n\t\tf 4 -6438 -6426 6439 6440\n\t\tmu 0 4 2163 2164 2132 2131\n\t\tf 4 -6440 -6427 -318 6441\n\t\tmu 0 4 2131 2132 2100 2099\n\t\tf 4 -362 -6429 6442 6443\n\t\tmu 0 4 3677 3685 3692 3686\n\t\tf 4 -6443 -6431 6444 6445\n\t\tmu 0 4 3686 3692 3697 3693\n\t\tf 4 -6445 -6433 6446 6447\n\t\tmu 0 4 3693 3697 3700 3698\n\t\tf 4 -6447 -6435 6448 6449\n\t\tmu 0 4 2258 2259 2227 2226\n\t\tf 4 -6449 -6437 6450 6451\n\t\tmu 0 4 2226 2227 2195 2194\n\t\tf 4 -6451 -6439 6452 6453\n\t\tmu 0 4 2194 2195 2163 2162\n\t\tf 4 -6453 -6441 6454 6455\n\t\tmu 0 4 2162 2163 2131 2130\n\t\tf 4 -6455 -6442 -317 6456\n\t\tmu 0 4 2130 2131 2099 2098\n\t\tf 4 -417 -6444 6457 6458\n\t\tmu 0 4 3668 3677 3686 3678\n\t\tf 4 -6458 -6446 6459 6460\n\t\tmu 0 4 3678 3686 3693 3687\n\t\tf 4 -6460 -6448 6461 6462\n\t\tmu 0 4 3687 3693 3698 3694\n\t\tf 4 -6462 -6450 6463 6464\n\t\tmu 0 4 2257 2258 2226 2225\n\t\tf 4 -6464 -6452 6465 6466\n\t\tmu 0 4 2225 2226 2194 2193\n\t\tf 4 -6466 -6454 6467 6468\n\t\tmu 0 4 2193 2194 2162 2161\n\t\tf 4 -6468 -6456 6469 6470\n\t\tmu 0 4 2161 2162 2130 2129\n\t\tf 4 -6470 -6457 -316 6471\n\t\tmu 0 4 2129 2130 2098 2097\n\t\tf 4 -397 -6459 6472 6473\n\t\tmu 0 4 3657 3668 3678 3669\n\t\tf 4 -6473 -6461 6474 6475\n\t\tmu 0 4 3669 3678 3687 3679\n\t\tf 4 -6475 -6463 6476 6477\n\t\tmu 0 4 3679 3687 3694 3688\n\t\tf 4 -6477 -6465 6478 6479\n\t\tmu 0 4 2256 2257 2225 2224\n\t\tf 4 -6479 -6467 6480 6481\n\t\tmu 0 4 2224 2225 2193 2192\n\t\tf 4 -6481 -6469 6482 6483\n\t\tmu 0 4 2192 2193 2161 2160\n\t\tf 4 -6483 -6471 6484 6485\n\t\tmu 0 4 2160 2161 2129 2128\n\t\tf 4 -6485 -6472 -315 6486\n\t\tmu 0 4 2128 2129 2097 2096\n\t\tf 4 -379 -6474 6487 6488\n\t\tmu 0 4 3644 3657 3669 3658\n\t\tf 4 -6488 -6476 6489 6490\n\t\tmu 0 4 3658 3669 3679 3670\n\t\tf 4 -6490 -6478 6491 6492\n\t\tmu 0 4 3670 3679 3688 3680\n\t\tf 4 -6492 -6480 6493 6494\n\t\tmu 0 4 2255 2256 2224 2223\n\t\tf 4 -6494 -6482 6495 6496\n\t\tmu 0 4 2223 2224 2192 2191\n\t\tf 4 -6496 -6484 6497 6498\n\t\tmu 0 4 2191 2192 2160 2159\n\t\tf 4 -6498 -6486 6499 6500\n\t\tmu 0 4 2159 2160 2128 2127\n\t\tf 4 -6500 -6487 -314 6501\n\t\tmu 0 4 2127 2128 2096 2095\n\t\tf 4 -303 -6489 6502 6503\n\t\tmu 0 4 3630 3644 3658 3645\n\t\tf 4 -6503 -6491 6504 6505\n\t\tmu 0 4 3645 3658 3670 3659\n\t\tf 4 -6505 -6493 6506 6507\n\t\tmu 0 4 3659 3670 3680 3671\n\t\tf 4 -6507 -6495 6508 6509\n\t\tmu 0 4 2254 2255 2223 2222\n\t\tf 4 -6509 -6497 6510 6511\n\t\tmu 0 4 2222 2223 2191 2190\n\t\tf 4 -6511 -6499 6512 6513\n\t\tmu 0 4 2190 2191 2159 2158\n\t\tf 4 -6513 -6501 6514 6515\n\t\tmu 0 4 2158 2159 2127 2126\n\t\tf 4 -6515 -6502 -313 6516\n\t\tmu 0 4 2126 2127 2095 2094\n\t\tf 4 -299 -6504 6517 6518\n\t\tmu 0 4 3620 3630 3645 3631\n\t\tf 4 -6518 -6506 6519 6520\n\t\tmu 0 4 3631 3645 3659 3646\n\t\tf 4 -6520 -6508 6521 6522\n\t\tmu 0 4 3646 3659 3671 3660\n\t\tf 4 -6522 -6510 6523 6524\n\t\tmu 0 4 2253 2254 2222 2221\n\t\tf 4 -6524 -6512 6525 6526\n\t\tmu 0 4 2221 2222 2190 2189\n\t\tf 4 -6526 -6514 6527 6528\n\t\tmu 0 4 2189 2190 2158 2157\n\t\tf 4 -6528 -6516 6529 6530\n\t\tmu 0 4 2157 2158 2126 2125\n\t\tf 4 -6530 -6517 -312 6531\n\t\tmu 0 4 2125 2126 2094 2093\n\t\tf 4 -411 -6519 6532 6533\n\t\tmu 0 4 3615 3620 3631 3621\n\t\tf 4 -6533 -6521 6534 6535\n\t\tmu 0 4 3621 3631 3646 3632\n\t\tf 4 -6535 -6523 6536 6537\n\t\tmu 0 4 3632 3646 3660 3647\n\t\tf 4 -6537 -6525 6538 6539\n\t\tmu 0 4 2252 2253 2221 2220\n\t\tf 4 -6539 -6527 6540 6541\n\t\tmu 0 4 2220 2221 2189 2188\n\t\tf 4 -6541 -6529 6542 6543\n\t\tmu 0 4 2188 2189 2157 2156\n\t\tf 4 -6543 -6531 6544 6545\n\t\tmu 0 4 2156 2157 2125 2124\n\t\tf 4 -6545 -6532 -311 6546\n\t\tmu 0 4 2124 2125 2093 2092\n\t\tf 4 -295 -6534 6547 6548\n\t\tmu 0 4 3616 3615 3621 3622\n\t\tf 4 -6548 -6536 6549 6550\n\t\tmu 0 4 3622 3621 3632 3633\n\t\tf 4 -6550 -6538 6551 6552\n\t\tmu 0 4 3633 3632 3647 3648\n\t\tf 4 -6552 -6540 6553 6554\n\t\tmu 0 4 2251 2252 2220 2219\n\t\tf 4 -6554 -6542 6555 6556\n\t\tmu 0 4 2219 2220 2188 2187\n\t\tf 4 -6556 -6544 6557 6558\n\t\tmu 0 4 2187 2188 2156 2155\n\t\tf 4 -6558 -6546 6559 6560\n\t\tmu 0 4 2155 2156 2124 2123\n\t\tf 4 -6560 -6547 -310 6561\n\t\tmu 0 4 2123 2124 2092 2091\n\t\tf 4 -345 -6549 6562 6563\n\t\tmu 0 4 3624 3616 3622 3634\n\t\tf 4 -6563 -6551 6564 6565\n\t\tmu 0 4 3634 3622 3633 3649\n\t\tf 4 -6565 -6553 6566 6567\n\t\tmu 0 4 3649 3633 3648 3661\n\t\tf 4 -6567 -6555 6568 6569\n\t\tmu 0 4 2250 2251 2219 2218\n\t\tf 4 -6569 -6557 6570 6571\n\t\tmu 0 4 2218 2219 2187 2186\n\t\tf 4 -6571 -6559 6572 6573\n\t\tmu 0 4 2186 2187 2155 2154\n\t\tf 4 -6573 -6561 6574 6575\n\t\tmu 0 4 2154 2155 2123 2122\n\t\tf 4 -6575 -6562 -309 6576\n\t\tmu 0 4 2122 2123 2091 2090\n\t\tf 4 -342 -6564 6577 6578\n\t\tmu 0 4 3636 3624 3634 3650\n\t\tf 4 -6578 -6566 6579 6580\n\t\tmu 0 4 3650 3634 3649 3662\n\t\tf 4 -6580 -6568 6581 6582\n\t\tmu 0 4 3662 3649 3661 3672\n\t\tf 4 -6582 -6570 6583 6584\n\t\tmu 0 4 2249 2250 2218 2217\n\t\tf 4 -6584 -6572 6585 6586\n\t\tmu 0 4 2217 2218 2186 2185\n\t\tf 4 -6586 -6574 6587 6588\n\t\tmu 0 4 2185 2186 2154 2153\n\t\tf 4 -6588 -6576 6589 6590\n\t\tmu 0 4 2153 2154 2122 2121\n\t\tf 4 -6590 -6577 -308 6591\n\t\tmu 0 4 2121 2122 2090 2089\n\t\tf 4 -406 -6579 6592 6593\n\t\tmu 0 4 3796 3806 3819 3807\n\t\tf 4 -6593 -6581 6594 6595\n\t\tmu 0 4 3807 3819 3832 3820\n\t\tf 4 -6595 -6583 6596 6597\n\t\tmu 0 4 3820 3832 3840 3833\n\t\tf 4 -6597 -6585 6598 6599\n\t\tmu 0 4 2248 2249 2217 2216\n\t\tf 4 -6599 -6587 6600 6601\n\t\tmu 0 4 2216 2217 2185 2184\n\t\tf 4 -6601 -6589 6602 6603\n\t\tmu 0 4 2184 2185 2153 2152\n\t\tf 4 -6603 -6591 6604 6605\n\t\tmu 0 4 2152 2153 2121 2120\n\t\tf 4 -6605 -6592 -307 6606\n\t\tmu 0 4 2120 2121 2089 2088\n\t\tf 4 -348 -6594 6607 6608\n\t\tmu 0 4 3791 3796 3807 3797\n\t\tf 4 -6608 -6596 6609 6610\n\t\tmu 0 4 3797 3807 3820 3808\n\t\tf 4 -6610 -6598 6611 6612\n\t\tmu 0 4 3808 3820 3833 3821\n\t\tf 4 -6612 -6600 6613 6614\n\t\tmu 0 4 2247 2248 2216 2215\n\t\tf 4 -6614 -6602 6615 6616\n\t\tmu 0 4 2215 2216 2184 2183\n\t\tf 4 -6616 -6604 6617 6618\n\t\tmu 0 4 2183 2184 2152 2151\n\t\tf 4 -6618 -6606 6619 6620\n\t\tmu 0 4 2151 2152 2120 2119\n\t\tf 4 -6620 -6607 -306 6621\n\t\tmu 0 4 2119 2120 2088 2087\n\t\tf 4 -3 -6609 6622 -6150\n\t\tmu 0 4 3792 3791 3797 3798\n\t\tf 4 -6623 -6611 6623 -6153\n\t\tmu 0 4 3798 3797 3808 3809\n\t\tf 4 -6624 -6613 6624 -6156\n\t\tmu 0 4 3809 3808 3821 3822\n\t\tf 4 -6625 -6615 6625 -6159\n\t\tmu 0 4 2246 2247 2215 2214\n\t\tf 4 -6626 -6617 6626 -6162\n\t\tmu 0 4 2214 2215 2183 2182\n\t\tf 4 -6627 -6619 6627 -6165\n\t\tmu 0 4 2182 2183 2151 2150\n\t\tf 4 -6628 -6621 6628 -6168\n\t\tmu 0 4 2150 2151 2119 2118\n\t\tf 4 -6629 -6622 -305 -6171\n\t\tmu 0 4 2118 2119 2087 2086\n\t\tf 4 -512 -576 6629 6630\n\t\tmu 0 4 2571 2590 2610 2591\n\t\tf 4 -6630 -588 6631 6632\n\t\tmu 0 4 2591 2610 2627 2611\n\t\tf 4 -6632 -597 6633 6634\n\t\tmu 0 4 2611 2627 2640 2628\n\t\tf 4 -6634 -605 6635 6636\n\t\tmu 0 4 1288 1338 1287 1226\n\t\tf 4 -6636 -543 6637 6638\n\t\tmu 0 4 1226 1287 1225 1170\n\t\tf 4 -6638 -540 6639 6640\n\t\tmu 0 4 1170 1225 1169 1122\n\t\tf 4 -6640 -537 6641 6642\n\t\tmu 0 4 1122 1169 1121 1082\n\t\tf 4 -6642 -533 -369 6643\n\t\tmu 0 4 1082 1121 1081 1052\n\t\tf 4 -127 6644 6645 6646\n\t\tmu 0 4 4092 4087 4098 4101\n\t\tf 4 -6646 6647 6648 6649\n\t\tmu 0 4 4101 4098 4113 4118\n\t\tf 4 -6649 6650 6651 6652\n\t\tmu 0 4 4118 4113 4134 4141\n\t\tf 4 -6652 6653 6654 6655\n\t\tmu 0 4 1282 1233 1179 1221\n\t\tf 4 -6655 6656 6657 6658\n\t\tmu 0 4 1221 1179 1131 1166\n\t\tf 4 -6658 6659 6660 6661\n\t\tmu 0 4 1166 1131 1090 1119\n\t\tf 4 -6661 6662 6663 6664\n\t\tmu 0 4 1119 1090 1059 1080\n\t\tf 4 -6664 6665 -526 6666\n\t\tmu 0 4 1080 1059 1041 1051\n\t\tf 4 -528 -684 6667 6668\n\t\tmu 0 4 3870 3869 3885 3886\n\t\tf 4 -6668 -696 6669 6670\n\t\tmu 0 4 3886 3885 3905 3906\n\t\tf 4 -6670 -705 6671 6672\n\t\tmu 0 4 3906 3905 3927 3928\n\t\tf 4 -6672 -713 6673 6674\n\t\tmu 0 4 1124 1172 1125 1084\n\t\tf 4 -6674 -651 6675 6676\n\t\tmu 0 4 1084 1125 1085 1054\n\t\tf 4 -6676 -648 6677 6678\n\t\tmu 0 4 1054 1085 1055 1037\n\t\tf 4 -6678 -645 6679 6680\n\t\tmu 0 4 1037 1055 1038 1024\n\t\tf 4 -6680 -641 -104 6681\n\t\tmu 0 4 1024 1038 1026 1016\n\t\tf 4 -518 -720 6682 6683\n\t\tmu 0 4 2519 2535 2537 2521\n\t\tf 4 -6683 -731 6684 6685\n\t\tmu 0 4 2521 2537 2556 2538\n\t\tf 4 -6685 -739 6686 6687\n\t\tmu 0 4 2538 2556 2577 2557\n\t\tf 4 -6687 -746 6688 6689\n\t\tmu 0 4 2557 2577 2598 2578\n\t\tf 4 -6689 -691 6690 6691\n\t\tmu 0 4 2578 2598 2616 2599\n\t\tf 4 -6691 -688 6692 6693\n\t\tmu 0 4 3911 3932 3909 3890\n\t\tf 4 -6693 -685 6694 6695\n\t\tmu 0 4 3890 3909 3888 3872\n\t\tf 4 -6695 -681 -529 6696\n\t\tmu 0 4 3872 3888 3869 3857\n\t\tf 4 -146 -5760 6697 6698\n\t\tmu 0 4 0 21 26 7\n\t\tf 4 -6698 -5772 6699 6700\n\t\tmu 0 4 7 26 63 27\n\t\tf 4 -6700 -5781 6701 6702\n\t\tmu 0 4 27 63 115 64\n\t\tf 4 -6702 -5789 6703 6704\n\t\tmu 0 4 64 115 175 116\n\t\tf 4 -6704 -5727 6705 6706\n\t\tmu 0 4 116 175 241 176\n\t\tf 4 -6706 -5724 6707 6708\n\t\tmu 0 4 3879 3880 3865 3864\n\t\tf 4 -6708 -5721 6709 6710\n\t\tmu 0 4 3864 3865 3854 3853\n\t\tf 4 -6710 -5717 -7 6711\n\t\tmu 0 4 3853 3854 3848 3847\n\t\tf 4 -65 -5796 6712 6713\n\t\tmu 0 4 2499 2498 2503 2504\n\t\tf 4 -6713 -5807 6714 6715\n\t\tmu 0 4 2504 2503 2513 2514\n\t\tf 4 -6715 -5815 6716 6717\n\t\tmu 0 4 2514 2513 2527 2528\n\t\tf 4 -6717 -5822 6718 6719\n\t\tmu 0 4 304 305 236 235\n\t\tf 4 -6719 -5767 6720 6721\n\t\tmu 0 4 235 236 171 170\n\t\tf 4 -6721 -5764 6722 6723\n\t\tmu 0 4 170 171 112 111\n\t\tf 4 -6723 -5761 6724 6725\n\t\tmu 0 4 111 112 61 60\n\t\tf 4 -6725 -5757 -151 6726\n\t\tmu 0 4 60 61 21 25\n\t\tf 4 -46 -5868 6727 6728\n\t\tmu 0 4 2280 2286 2301 2287\n\t\tf 4 -6728 -5880 6729 6730\n\t\tmu 0 4 2287 2301 2325 2302\n\t\tf 4 -6730 -5889 6731 6732\n\t\tmu 0 4 2302 2325 2357 2326\n\t\tf 4 -6732 -5897 6733 6734\n\t\tmu 0 4 326 383 327 261\n\t\tf 4 -6734 -5835 6735 6736\n\t\tmu 0 4 261 327 262 194\n\t\tf 4 -6736 -5832 6737 6738\n\t\tmu 0 4 194 262 195 131\n\t\tf 4 -6738 -5829 6739 6740\n\t\tmu 0 4 131 195 132 76\n\t\tf 4 -6740 -5825 -133 6741\n\t\tmu 0 4 76 132 77 36\n\t\tf 4 -42 -5976 6742 6743\n\t\tmu 0 4 4135 4159 4179 4156\n\t\tf 4 -6743 -5988 6744 6745\n\t\tmu 0 4 4156 4179 4199 4180\n\t\tf 4 -6745 -5997 6746 6747\n\t\tmu 0 4 4180 4199 4213 4200\n\t\tf 4 -6747 -6005 6748 6749\n\t\tmu 0 4 389 433 390 332\n\t\tf 4 -6749 -5943 6750 6751\n\t\tmu 0 4 332 390 333 266\n\t\tf 4 -6751 -5940 6752 6753\n\t\tmu 0 4 266 333 267 198\n\t\tf 4 -6753 -5937 6754 6755\n\t\tmu 0 4 198 267 199 134\n\t\tf 4 -6755 -5933 -384 6756\n\t\tmu 0 4 134 199 135 78\n\t\tf 4 -525 -6012 6757 6758\n\t\tmu 0 4 2532 2531 2548 2549\n\t\tf 4 -6758 -6023 6759 6760\n\t\tmu 0 4 2549 2548 2567 2568\n\t\tf 4 -6760 -6031 6761 6762\n\t\tmu 0 4 2568 2567 2586 2587\n\t\tf 4 -6762 -6038 6763 6764\n\t\tmu 0 4 2587 2586 2605 2606\n\t\tf 4 -6764 -5983 6765 6766\n\t\tmu 0 4 2606 2605 2621 2622\n\t\tf 4 -6766 -5980 6767 6768\n\t\tmu 0 4 4206 4217 4205 4186\n\t\tf 4 -6768 -5977 6769 6770\n\t\tmu 0 4 4186 4205 4184 4161\n\t\tf 4 -6770 -5973 -43 6771\n\t\tmu 0 4 4161 4184 4159 4138\n\t\tf 4 -64 6772 6773 -5793\n\t\tmu 0 4 2498 2497 2501 2502\n\t\tf 4 -6774 6774 6775 -5797\n\t\tmu 0 4 2502 2501 2510 2511\n\t\tf 4 -6776 6776 6777 -5800\n\t\tmu 0 4 2511 2510 2523 2524\n\t\tf 4 -6778 6778 6779 -5803\n\t\tmu 0 4 2524 2523 2540 2541\n\t\tf 4 -6780 6780 6781 -5750\n\t\tmu 0 4 2541 2540 2559 2560\n\t\tf 4 -6782 6782 6783 -5741\n\t\tmu 0 4 3883 3884 3868 3867\n\t\tf 4 -6784 6784 6785 -5732\n\t\tmu 0 4 3867 3868 3856 3855\n\t\tf 4 -6786 6786 -8 -5720\n\t\tmu 0 4 3855 3856 3845 3848;\n\tsetAttr \".fc[3000:3499]\"\n\t\tf 4 -527 6787 6788 -6773\n\t\tmu 0 4 2497 2507 2509 2501\n\t\tf 4 -6789 6789 6790 -6775\n\t\tmu 0 4 2501 2509 2522 2510\n\t\tf 4 -6791 6791 6792 -6777\n\t\tmu 0 4 2510 2522 2539 2523\n\t\tf 4 -6793 6793 6794 -6779\n\t\tmu 0 4 2523 2539 2558 2540\n\t\tf 4 -6795 6795 6796 -6781\n\t\tmu 0 4 2540 2558 2579 2559\n\t\tf 4 -6797 6797 6798 -6783\n\t\tmu 0 4 3884 3893 3874 3868\n\t\tf 4 -6799 6799 6800 -6785\n\t\tmu 0 4 3868 3874 3860 3856\n\t\tf 4 -6801 6801 -131 -6787\n\t\tmu 0 4 3856 3860 3849 3845\n\t\tf 4 -515 -6684 6802 -6788\n\t\tmu 0 4 2507 2519 2521 2509\n\t\tf 4 -6803 -6686 6803 -6790\n\t\tmu 0 4 2509 2521 2538 2522\n\t\tf 4 -6804 -6688 6804 -6792\n\t\tmu 0 4 2522 2538 2557 2539\n\t\tf 4 -6805 -6690 6805 -6794\n\t\tmu 0 4 2539 2557 2578 2558\n\t\tf 4 -6806 -6692 6806 -6796\n\t\tmu 0 4 2558 2578 2599 2579\n\t\tf 4 -6807 -6694 6807 -6798\n\t\tmu 0 4 3893 3911 3890 3874\n\t\tf 4 -6808 -6696 6808 -6800\n\t\tmu 0 4 3874 3890 3872 3860\n\t\tf 4 -6809 -6697 -514 -6802\n\t\tmu 0 4 3860 3872 3857 3849\n\t\tf 4 -511 6809 6810 -573\n\t\tmu 0 4 2590 2570 2589 2609\n\t\tf 4 -6811 6811 6812 -577\n\t\tmu 0 4 2609 2589 2608 2625\n\t\tf 4 -6813 6813 6814 -580\n\t\tmu 0 4 2625 2608 2624 2637\n\t\tf 4 -6815 6815 6816 -583\n\t\tmu 0 4 2637 2624 2636 2646\n\t\tf 4 -6817 6817 6818 -638\n\t\tmu 0 4 2646 2636 2645 2652\n\t\tf 4 -6819 6819 6820 -631\n\t\tmu 0 4 4167 4168 4145 4144\n\t\tf 4 -6821 6821 6822 -623\n\t\tmu 0 4 4144 4145 4121 4120\n\t\tf 4 -6823 6823 -38 -612\n\t\tmu 0 4 4120 4121 4102 4103\n\t\tf 4 -521 6824 6825 -6810\n\t\tmu 0 4 2570 2550 2569 2589\n\t\tf 4 -6826 6826 6827 -6812\n\t\tmu 0 4 2589 2569 2588 2608\n\t\tf 4 -6828 6828 6829 -6814\n\t\tmu 0 4 2608 2588 2607 2624\n\t\tf 4 -6830 6830 6831 -6816\n\t\tmu 0 4 2624 2607 2623 2636\n\t\tf 4 -6832 6832 6833 -6818\n\t\tmu 0 4 2636 2623 2635 2645\n\t\tf 4 -6834 6834 6835 -6820\n\t\tmu 0 4 4168 4187 4163 4145\n\t\tf 4 -6836 6836 6837 -6822\n\t\tmu 0 4 4145 4163 4140 4121\n\t\tf 4 -6838 6838 -76 -6824\n\t\tmu 0 4 4121 4140 4117 4102\n\t\tf 4 -523 -6759 6839 -6825\n\t\tmu 0 4 2550 2532 2549 2569\n\t\tf 4 -6840 -6761 6840 -6827\n\t\tmu 0 4 2569 2549 2568 2588\n\t\tf 4 -6841 -6763 6841 -6829\n\t\tmu 0 4 2588 2568 2587 2607\n\t\tf 4 -6842 -6765 6842 -6831\n\t\tmu 0 4 2607 2587 2606 2623\n\t\tf 4 -6843 -6767 6843 -6833\n\t\tmu 0 4 2623 2606 2622 2635\n\t\tf 4 -6844 -6769 6844 -6835\n\t\tmu 0 4 4187 4206 4186 4163\n\t\tf 4 -6845 -6771 6845 -6837\n\t\tmu 0 4 4163 4186 4161 4140\n\t\tf 4 -6846 -6772 -41 -6839\n\t\tmu 0 4 4140 4161 4138 4117\n\t\tf 4 -45 6846 6847 -5865\n\t\tmu 0 4 2286 2285 2299 2300\n\t\tf 4 -6848 6848 6849 -5869\n\t\tmu 0 4 2300 2299 2322 2323\n\t\tf 4 -6850 6850 6851 -5872\n\t\tmu 0 4 2323 2322 2353 2354\n\t\tf 4 -6852 6852 6853 -5875\n\t\tmu 0 4 2354 2353 2385 2386\n\t\tf 4 -6854 6854 6855 -5930\n\t\tmu 0 4 2386 2385 2423 2424\n\t\tf 4 -6856 6856 6857 -5923\n\t\tmu 0 4 4204 4185 4160 4183\n\t\tf 4 -6858 6858 6859 -5915\n\t\tmu 0 4 4183 4160 4137 4158\n\t\tf 4 -6860 6860 -21 -5904\n\t\tmu 0 4 4158 4137 4115 4136\n\t\tf 4 -49 6861 6862 -6847\n\t\tmu 0 4 2285 2298 2321 2299\n\t\tf 4 -6863 6863 6864 -6849\n\t\tmu 0 4 2299 2321 2352 2322\n\t\tf 4 -6865 6865 6866 -6851\n\t\tmu 0 4 2322 2352 2384 2353\n\t\tf 4 -6867 6867 6868 -6853\n\t\tmu 0 4 2353 2384 2422 2385\n\t\tf 4 -6869 6869 6870 -6855\n\t\tmu 0 4 2385 2422 2454 2423\n\t\tf 4 -6871 6871 6872 -6857\n\t\tmu 0 4 4185 4162 4139 4160\n\t\tf 4 -6873 6873 6874 -6859\n\t\tmu 0 4 4160 4139 4116 4137\n\t\tf 4 -6875 6875 -28 -6861\n\t\tmu 0 4 4137 4116 4100 4115\n\t\tf 4 -52 -752 6876 -6862\n\t\tmu 0 4 2298 2320 2351 2321\n\t\tf 4 -6877 -764 6877 -6864\n\t\tmu 0 4 2321 2351 2383 2352\n\t\tf 4 -6878 -773 6878 -6866\n\t\tmu 0 4 2352 2383 2421 2384\n\t\tf 4 -6879 -782 6879 -6868\n\t\tmu 0 4 2384 2421 2453 2422\n\t\tf 4 -6880 -835 6880 -6870\n\t\tmu 0 4 2422 2453 2477 2454\n\t\tf 4 -6881 -832 6881 -6872\n\t\tmu 0 4 4162 4151 4127 4139\n\t\tf 4 -6882 -829 6882 -6874\n\t\tmu 0 4 4139 4127 4107 4116\n\t\tf 4 -6883 -825 -532 -6876\n\t\tmu 0 4 4116 4107 4088 4100\n\t\tf 4 -31 -792 6883 -1365\n\t\tmu 0 4 477 476 480 481\n\t\tf 4 -6884 -804 6884 -1369\n\t\tmu 0 4 481 480 489 490\n\t\tf 4 -6885 -813 6885 -1372\n\t\tmu 0 4 490 489 502 503\n\t\tf 4 -6886 -821 6886 -1375\n\t\tmu 0 4 503 502 519 520\n\t\tf 4 -6887 -759 6887 -1322\n\t\tmu 0 4 520 519 539 540\n\t\tf 4 -6888 -756 6888 -1313\n\t\tmu 0 4 2417 2418 2381 2380\n\t\tf 4 -6889 -753 6889 -1304\n\t\tmu 0 4 2380 2381 2350 2349\n\t\tf 4 -6890 -749 -51 -1292\n\t\tmu 0 4 2349 2350 2320 2319\n\t\tf 4 -519 6890 6891 -717\n\t\tmu 0 4 2535 2536 2553 2554\n\t\tf 4 -6892 6892 6893 -721\n\t\tmu 0 4 2554 2553 2573 2574\n\t\tf 4 -6894 6894 6895 -724\n\t\tmu 0 4 2574 2573 2593 2594\n\t\tf 4 -6896 6896 6897 -727\n\t\tmu 0 4 1177 1178 1130 1129\n\t\tf 4 -6898 6898 6899 -674\n\t\tmu 0 4 1129 1130 1089 1088\n\t\tf 4 -6900 6900 6901 -665\n\t\tmu 0 4 1088 1089 1058 1057\n\t\tf 4 -6902 6902 6903 -656\n\t\tmu 0 4 1057 1058 1040 1039\n\t\tf 4 -6904 6904 -105 -644\n\t\tmu 0 4 1039 1040 1025 1026\n\t\tf 4 -507 6905 6906 -6891\n\t\tmu 0 4 2536 2552 2572 2553\n\t\tf 4 -6907 6907 6908 -6893\n\t\tmu 0 4 2553 2572 2592 2573\n\t\tf 4 -6909 6909 6910 -6895\n\t\tmu 0 4 2573 2592 2612 2593\n\t\tf 4 -6911 6911 6912 -6897\n\t\tmu 0 4 1178 1227 1171 1130\n\t\tf 4 -6913 6913 6914 -6899\n\t\tmu 0 4 1130 1171 1123 1089\n\t\tf 4 -6915 6915 6916 -6901\n\t\tmu 0 4 1089 1123 1083 1058\n\t\tf 4 -6917 6917 6918 -6903\n\t\tmu 0 4 1058 1083 1053 1040\n\t\tf 4 -6919 6919 -102 -6905\n\t\tmu 0 4 1040 1053 1036 1025\n\t\tf 4 -509 -6631 6920 -6906\n\t\tmu 0 4 2552 2571 2591 2572\n\t\tf 4 -6921 -6633 6921 -6908\n\t\tmu 0 4 2572 2591 2611 2592\n\t\tf 4 -6922 -6635 6922 -6910\n\t\tmu 0 4 2592 2611 2628 2612\n\t\tf 4 -6923 -6637 6923 -6912\n\t\tmu 0 4 1227 1288 1226 1171\n\t\tf 4 -6924 -6639 6924 -6914\n\t\tmu 0 4 1171 1226 1170 1123\n\t\tf 4 -6925 -6641 6925 -6916\n\t\tmu 0 4 1123 1170 1122 1083\n\t\tf 4 -6926 -6643 6926 -6918\n\t\tmu 0 4 1083 1122 1082 1053\n\t\tf 4 -6927 -6644 -89 -6920\n\t\tmu 0 4 1053 1082 1052 1036\n\t\tf 4 -524 6927 6928 -6009\n\t\tmu 0 4 2531 2516 2530 2547\n\t\tf 4 -6929 6929 6930 -6013\n\t\tmu 0 4 2547 2530 2546 2565\n\t\tf 4 -6931 6931 6932 -6016\n\t\tmu 0 4 2565 2546 2564 2583\n\t\tf 4 -6933 6933 6934 -6019\n\t\tmu 0 4 438 406 356 394\n\t\tf 4 -6935 6935 6936 -5966\n\t\tmu 0 4 394 356 293 336\n\t\tf 4 -6937 6937 6938 -5957\n\t\tmu 0 4 336 293 224 269\n\t\tf 4 -6939 6939 6940 -5948\n\t\tmu 0 4 269 224 159 200\n\t\tf 4 -6941 6941 -385 -5936\n\t\tmu 0 4 200 159 101 135\n\t\tf 4 -431 6942 6943 -6928\n\t\tmu 0 4 2516 2505 2515 2530\n\t\tf 4 -6944 6944 6945 -6930\n\t\tmu 0 4 2530 2515 2529 2546\n\t\tf 4 -6946 6946 6947 -6932\n\t\tmu 0 4 2546 2529 2545 2564\n\t\tf 4 -6948 6948 6949 -6934\n\t\tmu 0 4 406 362 299 356\n\t\tf 4 -6950 6950 6951 -6936\n\t\tmu 0 4 356 299 230 293\n\t\tf 4 -6952 6952 6953 -6938\n\t\tmu 0 4 293 230 165 224\n\t\tf 4 -6954 6954 6955 -6940\n\t\tmu 0 4 224 165 106 159\n\t\tf 4 -6956 6956 -424 -6942\n\t\tmu 0 4 159 106 55 101\n\t\tf 4 -152 -6714 6957 -6943\n\t\tmu 0 4 2505 2499 2504 2515\n\t\tf 4 -6958 -6716 6958 -6945\n\t\tmu 0 4 2515 2504 2514 2529\n\t\tf 4 -6959 -6718 6959 -6947\n\t\tmu 0 4 2529 2514 2528 2545\n\t\tf 4 -6960 -6720 6960 -6949\n\t\tmu 0 4 362 304 235 299\n\t\tf 4 -6961 -6722 6961 -6951\n\t\tmu 0 4 299 235 170 230\n\t\tf 4 -6962 -6724 6962 -6953\n\t\tmu 0 4 230 170 111 165\n\t\tf 4 -6963 -6726 6963 -6955\n\t\tmu 0 4 165 111 60 106\n\t\tf 4 -6964 -6727 -531 -6957\n\t\tmu 0 4 106 60 25 55\n\t\tf 4 -92 6964 6965 -6117\n\t\tmu 0 4 2281 2277 2288 2293\n\t\tf 4 -6966 6966 6967 -6121\n\t\tmu 0 4 2293 2288 2303 2311\n\t\tf 4 -6968 6968 6969 -6124\n\t\tmu 0 4 2311 2303 2327 2338\n\t\tf 4 -6970 6970 6971 -6127\n\t\tmu 0 4 259 260 193 192\n\t\tf 4 -6972 6972 6973 -6074\n\t\tmu 0 4 192 193 130 129\n\t\tf 4 -6974 6974 6975 -6065\n\t\tmu 0 4 129 130 75 74\n\t\tf 4 -6976 6976 6977 -6056\n\t\tmu 0 4 74 75 35 34\n\t\tf 4 -6978 6978 -139 -6044\n\t\tmu 0 4 34 35 11 2\n\t\tf 4 -27 -6729 6979 -6965\n\t\tmu 0 4 2277 2280 2287 2288\n\t\tf 4 -6980 -6731 6980 -6967\n\t\tmu 0 4 2288 2287 2302 2303\n\t\tf 4 -6981 -6733 6981 -6969\n\t\tmu 0 4 2303 2302 2326 2327\n\t\tf 4 -6982 -6735 6982 -6971\n\t\tmu 0 4 260 326 261 193\n\t\tf 4 -6983 -6737 6983 -6973\n\t\tmu 0 4 193 261 194 130\n\t\tf 4 -6984 -6739 6984 -6975\n\t\tmu 0 4 130 194 131 75\n\t\tf 4 -6985 -6741 6985 -6977\n\t\tmu 0 4 75 131 76 35\n\t\tf 4 -6986 -6742 -530 -6979\n\t\tmu 0 4 35 76 36 11\n\t\tf 4 -201 -968 6986 -2477\n\t\tmu 0 4 4551 4550 4555 4556\n\t\tf 4 -6987 -980 6987 -2481\n\t\tmu 0 4 4556 4555 4565 4566\n\t\tf 4 -6988 -989 6988 -2484\n\t\tmu 0 4 4566 4565 4579 4580\n\t\tf 4 -6989 -998 6989 -2487\n\t\tmu 0 4 1902 1903 1879 1878\n\t\tf 4 -6990 -1051 6990 -2549\n\t\tmu 0 4 1878 1879 1859 1858\n\t\tf 4 -6991 -1048 6991 -2541\n\t\tmu 0 4 1858 1859 1843 1842\n\t\tf 4 -6992 -1045 6992 -2532\n\t\tmu 0 4 1842 1843 1831 1830\n\t\tf 4 -6993 -1041 -120 -2520\n\t\tmu 0 4 1830 1831 1820 1823\n\t\tf 4 -117 -1044 6993 -933\n\t\tmu 0 4 1821 1820 1824 1825\n\t\tf 4 -6994 -1055 6994 -937\n\t\tmu 0 4 1825 1824 1833 1834\n\t\tf 4 -6995 -1063 6995 -940\n\t\tmu 0 4 1834 1833 1846 1847\n\t\tf 4 -6996 -1070 6996 -943\n\t\tmu 0 4 1847 1846 1863 1864\n\t\tf 4 -6997 -1015 6997 -890\n\t\tmu 0 4 1864 1863 1884 1885\n\t\tf 4 -6998 -1012 6998 -881\n\t\tmu 0 4 2334 2335 2309 2308\n\t\tf 4 -6999 -1009 6999 -872\n\t\tmu 0 4 2308 2309 2292 2291\n\t\tf 4 -7000 -1005 -91 -860\n\t\tmu 0 4 2291 2292 2278 2282\n\t\tf 4 -96 -2264 7000 -897\n\t\tmu 0 4 4229 4232 4239 4240\n\t\tf 4 -7001 -2276 7001 -901\n\t\tmu 0 4 4240 4239 4251 4252\n\t\tf 4 -7002 -2285 7002 -904\n\t\tmu 0 4 4252 4251 4267 4268\n\t\tf 4 -7003 -2294 7003 -907\n\t\tmu 0 4 1890 1891 1869 1868\n\t\tf 4 -7004 -2455 7004 -962\n\t\tmu 0 4 1868 1869 1851 1850\n\t\tf 4 -7005 -2452 7005 -955\n\t\tmu 0 4 1850 1851 1837 1836\n\t\tf 4 -7006 -2449 7006 -947\n\t\tmu 0 4 1836 1837 1827 1826\n\t\tf 4 -7007 -2445 -118 -936\n\t\tmu 0 4 1826 1827 1822 1821\n\t\tf 4 -34 -1616 7007 -789\n\t\tmu 0 4 476 479 486 487\n\t\tf 4 -7008 -1628 7008 -793\n\t\tmu 0 4 487 486 498 499\n\t\tf 4 -7009 -1637 7009 -796\n\t\tmu 0 4 499 498 514 515\n\t\tf 4 -7010 -1646 7010 -799\n\t\tmu 0 4 515 514 534 535\n\t\tf 4 -7011 -1699 7011 -854\n\t\tmu 0 4 535 534 557 558\n\t\tf 4 -7012 -1696 7012 -847\n\t\tmu 0 4 4122 4123 4105 4104\n\t\tf 4 -7013 -1693 7013 -839\n\t\tmu 0 4 4104 4105 4094 4093\n\t\tf 4 -7014 -1689 -17 -828\n\t\tmu 0 4 4093 4094 4089 4088\n\t\tf 4 -110 -1184 7014 -1073\n\t\tmu 0 4 1421 1420 1424 1425\n\t\tf 4 -7015 -1196 7015 -1077\n\t\tmu 0 4 1425 1424 1433 1434\n\t\tf 4 -7016 -1205 7016 -1080\n\t\tmu 0 4 1434 1433 1446 1447\n\t\tf 4 -7017 -1214 7017 -1083\n\t\tmu 0 4 1447 1446 1463 1464\n\t\tf 4 -7018 -1267 7018 -1145\n\t\tmu 0 4 1464 1463 1484 1485\n\t\tf 4 -7019 -1264 7019 -1137\n\t\tmu 0 4 2343 2344 2316 2315\n\t\tf 4 -7020 -1261 7020 -1128\n\t\tmu 0 4 2315 2316 2297 2296\n\t\tf 4 -7021 -1257 -122 -1116\n\t\tmu 0 4 2296 2297 2284 2283\n\t\tf 4 -32 -1368 7021 -2013\n\t\tmu 0 4 478 477 482 483\n\t\tf 4 -7022 -1379 7022 -2017\n\t\tmu 0 4 483 482 492 493\n\t\tf 4 -7023 -1387 7023 -2020\n\t\tmu 0 4 493 492 506 507\n\t\tf 4 -7024 -1394 7024 -2023\n\t\tmu 0 4 507 506 524 525\n\t\tf 4 -7025 -1339 7025 -1862\n\t\tmu 0 4 525 524 545 546\n\t\tf 4 -7026 -1336 7026 -1853\n\t\tmu 0 4 4651 4652 4636 4635\n\t\tf 4 -7027 -1333 7027 -1844\n\t\tmu 0 4 4635 4636 4624 4623\n\t\tf 4 -7028 -1329 -214 -1832\n\t\tmu 0 4 4623 4624 4613 4616\n\t\tf 4 -113 -2952 7028 -1181\n\t\tmu 0 4 1420 1423 1430 1431\n\t\tf 4 -7029 -2964 7029 -1185\n\t\tmu 0 4 1431 1430 1442 1443\n\t\tf 4 -7030 -2973 7030 -1188\n\t\tmu 0 4 1443 1442 1458 1459\n\t\tf 4 -7031 -2981 7031 -1191\n\t\tmu 0 4 1459 1458 1478 1479\n\t\tf 4 -7032 -2919 7032 -1253\n\t\tmu 0 4 1479 1478 1502 1503\n\t\tf 4 -7033 -2916 7033 -1245\n\t\tmu 0 4 4643 4644 4630 4629\n\t\tf 4 -7034 -2913 7034 -1236\n\t\tmu 0 4 4629 4630 4620 4619\n\t\tf 4 -7035 -2909 -212 -1224\n\t\tmu 0 4 4619 4620 4615 4614\n\t\tf 4 -50 -1260 7035 -1289\n\t\tmu 0 4 2319 2284 2318 2348\n\t\tf 4 -7036 -1271 7036 -1293\n\t\tmu 0 4 2348 2318 2347 2378\n\t\tf 4 -7037 -1279 7037 -1296\n\t\tmu 0 4 2378 2347 2377 2414\n\t\tf 4 -7038 -1286 7038 -1299\n\t\tmu 0 4 2414 2377 2413 2446\n\t\tf 4 -7039 -1231 7039 -1361\n\t\tmu 0 4 2446 2413 2444 2470\n\t\tf 4 -7040 -1228 7040 -1353\n\t\tmu 0 4 4637 4638 4626 4625\n\t\tf 4 -7041 -1225 7041 -1344\n\t\tmu 0 4 4625 4626 4618 4617\n\t\tf 4 -7042 -1221 -211 -1332\n\t\tmu 0 4 4617 4618 4614 4613\n\t\tf 4 -121 -1008 7042 -1113\n\t\tmu 0 4 2283 2278 2294 2295\n\t\tf 4 -7043 -1020 7043 -1117\n\t\tmu 0 4 2295 2294 2312 2313\n\t\tf 4 -7044 -1029 7044 -1120\n\t\tmu 0 4 2313 2312 2339 2340\n\t\tf 4 -7045 -1037 7045 -1123\n\t\tmu 0 4 2340 2339 2369 2370\n\t\tf 4 -7046 -975 7046 -1178\n\t\tmu 0 4 2370 2369 2403 2404\n\t\tf 4 -7047 -972 7047 -1171\n\t\tmu 0 4 4573 4574 4562 4561\n\t\tf 4 -7048 -969 7048 -1163\n\t\tmu 0 4 4561 4562 4554 4553\n\t\tf 4 -7049 -965 -200 -1152\n\t\tmu 0 4 4553 4554 4550 4549\n\t\tf 4 -90 -6120 7049 -857\n\t\tmu 0 4 2282 2281 2289 2290\n\t\tf 4 -7050 -6131 7050 -861\n\t\tmu 0 4 2290 2289 2305 2306\n\t\tf 4 -7051 -6139 7051 -864\n\t\tmu 0 4 2306 2305 2330 2331\n\t\tf 4 -7052 -6146 7052 -867\n\t\tmu 0 4 2331 2330 2361 2362\n\t\tf 4 -7053 -6091 7053 -929\n\t\tmu 0 4 2362 2361 2393 2394\n\t\tf 4 -7054 -6088 7054 -921\n\t\tmu 0 4 4253 4254 4242 4241\n\t\tf 4 -7055 -6085 7055 -912\n\t\tmu 0 4 4241 4242 4234 4233\n\t\tf 4 -7056 -6081 -93 -900\n\t\tmu 0 4 4233 4234 4230 4229\n\t\tf 4 -19 -1764 7056 -6645\n\t\tmu 0 4 4087 4090 4097 4098\n\t\tf 4 -7057 -1776 7057 -6648\n\t\tmu 0 4 4098 4097 4112 4113\n\t\tf 4 -7058 -1785 7058 -6651\n\t\tmu 0 4 4113 4112 4133 4134\n\t\tf 4 -7059 -1793 7059 -6654\n\t\tmu 0 4 1233 1234 1180 1179\n\t\tf 4 -7060 -1731 7060 -6657\n\t\tmu 0 4 1179 1180 1132 1131\n\t\tf 4 -7061 -1728 7061 -6660\n\t\tmu 0 4 1131 1132 1091 1090\n\t\tf 4 -7062 -1725 7062 -6663\n\t\tmu 0 4 1090 1091 1060 1059\n\t\tf 4 -7063 -1721 -155 -6666\n\t\tmu 0 4 1059 1060 1042 1041\n\t\tf 4 -54 7063 7064 7065\n\t\tmu 0 4 3908 3887 3907 3930\n\t\tf 4 -7065 7066 7067 7068\n\t\tmu 0 4 3930 3907 3929 3953\n\t\tf 4 -7068 7069 7070 7071\n\t\tmu 0 4 3953 3929 3952 3977\n\t\tf 4 -7071 7072 7073 7074\n\t\tmu 0 4 1117 1118 1079 1078\n\t\tf 4 -7074 7075 7076 7077\n\t\tmu 0 4 1078 1079 1050 1049\n\t\tf 4 -7077 7078 7079 7080\n\t\tmu 0 4 1049 1050 1034 1033\n\t\tf 4 -7080 7081 7082 7083\n\t\tmu 0 4 1033 1034 1022 1021\n\t\tf 4 -7083 7084 -85 7085\n\t\tmu 0 4 1021 1022 1011 1014\n\t\tf 4 -247 -1548 7086 -1397\n\t\tmu 0 4 2951 2950 2954 2955\n\t\tf 4 -7087 -1560 7087 -1401\n\t\tmu 0 4 2955 2954 2963 2964\n\t\tf 4 -7088 -1569 7088 -1404\n\t\tmu 0 4 2964 2963 2976 2977\n\t\tf 4 -7089 -1577 7089 -1407\n\t\tmu 0 4 2977 2976 2993 2994\n\t\tf 4 -7090 -1515 7090 -1469\n\t\tmu 0 4 2994 2993 3009 3010\n\t\tf 4 -7091 -1512 7091 -1461\n\t\tmu 0 4 3915 3916 3895 3894\n\t\tf 4 -7092 -1509 7092 -1452\n\t\tmu 0 4 3894 3895 3876 3875\n\t\tf 4 -7093 -1505 -266 -1440\n\t\tmu 0 4 3875 3876 3862 3861\n\t\tf 4 -207 -1800 7093 -1653\n\t\tmu 0 4 2665 2664 2670 2671\n\t\tf 4 -7094 -1811 7094 -1657\n\t\tmu 0 4 2671 2670 2681 2682\n\t\tf 4 -7095 -1819 7095 -1660\n\t\tmu 0 4 2682 2681 2696 2697\n\t\tf 4 -7096 -1826 7096 -1663\n\t\tmu 0 4 2697 2696 2713 2714\n\t\tf 4 -7097 -1771 7097 -1718\n\t\tmu 0 4 2714 2713 2729 2730\n\t\tf 4 -7098 -1768 7098 -1711\n\t\tmu 0 4 4129 4130 4110 4109\n\t\tf 4 -7099 -1765 7099 -1703\n\t\tmu 0 4 4109 4110 4096 4095\n\t\tf 4 -7100 -1761 -18 -1692\n\t\tmu 0 4 4095 4096 4090 4089\n\t\tf 4 -208 -1656 7100 -1977\n\t\tmu 0 4 2662 2665 2672 2673\n\t\tf 4 -7101 -1668 7101 -1981\n\t\tmu 0 4 2673 2672 2684 2685\n\t\tf 4 -7102 -1677 7102 -1984\n\t\tmu 0 4 2685 2684 2700 2701\n\t\tf 4 -7103 -1685 7103 -1987\n\t\tmu 0 4 551 552 530 529\n\t\tf 4 -7104 -1623 7104 -2042\n\t\tmu 0 4 529 530 511 510\n\t\tf 4 -7105 -1620 7105 -2035\n\t\tmu 0 4 510 511 496 495\n\t\tf 4 -7106 -1617 7106 -2027\n\t\tmu 0 4 495 496 485 484\n\t\tf 4 -7107 -1613 -33 -2016\n\t\tmu 0 4 484 485 479 478\n\t\tf 4 -206 -2048 7107 -1797\n\t\tmu 0 4 2664 2663 2668 2669\n\t\tf 4 -7108 -2060 7108 -1801\n\t\tmu 0 4 2669 2668 2678 2679\n\t\tf 4 -7109 -2069 7109 -1804\n\t\tmu 0 4 2679 2678 2692 2693\n\t\tf 4 -7110 -2078 7110 -1807\n\t\tmu 0 4 1239 1240 1185 1184\n\t\tf 4 -7111 -2131 7111 -1754\n\t\tmu 0 4 1184 1185 1136 1135\n\t\tf 4 -7112 -2128 7112 -1745\n\t\tmu 0 4 1135 1136 1094 1093\n\t\tf 4 -7113 -2125 7113 -1736\n\t\tmu 0 4 1093 1094 1062 1061\n\t\tf 4 -7114 -2121 -156 -1724\n\t\tmu 0 4 1061 1062 1028 1042\n\t\tf 4 -250 -2196 7114 -1545\n\t\tmu 0 4 2950 2953 2960 2961\n\t\tf 4 -7115 -2208 7115 -1549\n\t\tmu 0 4 2961 2960 2972 2973\n\t\tf 4 -7116 -2217 7116 -1552\n\t\tmu 0 4 2973 2972 2988 2989\n\t\tf 4 -7117 -2225 7117 -1555\n\t\tmu 0 4 247 248 183 182\n\t\tf 4 -7118 -2163 7118 -1610\n\t\tmu 0 4 182 183 122 121\n\t\tf 4 -7119 -2160 7119 -1603\n\t\tmu 0 4 121 122 69 68\n\t\tf 4 -7120 -2157 7120 -1595\n\t\tmu 0 4 68 69 31 30\n\t\tf 4 -7121 -2153 -124 -1584\n\t\tmu 0 4 30 31 10 9\n\t\tf 4 -182 -2340 7121 -1473\n\t\tmu 0 4 2014 2008 1997 2003\n\t\tf 4 -7122 -2352 7122 -1477\n\t\tmu 0 4 2003 1997 1987 1993\n\t\tf 4 -7123 -2361 7123 -1480\n\t\tmu 0 4 1993 1987 1978 1984\n\t\tf 4 -7124 -2369 7124 -1483\n\t\tmu 0 4 1984 1978 1970 1976\n\t\tf 4 -7125 -2311 7125 -1430\n\t\tmu 0 4 1976 1970 1969 1977\n\t\tf 4 -7126 -2308 7126 -1421\n\t\tmu 0 4 2980 2981 2967 2966\n\t\tf 4 -7127 -2305 7127 -1412\n\t\tmu 0 4 2966 2967 2957 2956\n\t\tf 4 -7128 -2301 -248 -1400\n\t\tmu 0 4 2956 2957 2952 2951\n\t\tf 4 -242 -2556 7128 -2409\n\t\tmu 0 4 2854 2857 2864 2865\n\t\tf 4 -7129 -2567 7129 -2413\n\t\tmu 0 4 2865 2864 2876 2877\n\t\tf 4 -7130 -2575 7130 -2416\n\t\tmu 0 4 2877 2876 2892 2893\n\t\tf 4 -7131 -2582 7131 -2419\n\t\tmu 0 4 1896 1897 1874 1873\n\t\tf 4 -7132 -2527 7132 -2474\n\t\tmu 0 4 1873 1874 1855 1854\n\t\tf 4 -7133 -2524 7133 -2467\n\t\tmu 0 4 1854 1855 1840 1839\n\t\tf 4 -7134 -2521 7134 -2459\n\t\tmu 0 4 1839 1840 1829 1828\n\t\tf 4 -7135 -2517 -119 -2448\n\t\tmu 0 4 1828 1829 1823 1822\n\t\tf 4 -243 -2736 7135 -2585\n\t\tmu 0 4 1614 1608 1597 1603\n\t\tf 4 -7136 -2748 7136 -2589\n\t\tmu 0 4 1603 1597 1587 1593\n\t\tf 4 -7137 -2757 7137 -2592\n\t\tmu 0 4 1593 1587 1578 1584\n\t\tf 4 -7138 -2765 7138 -2595\n\t\tmu 0 4 1584 1578 1570 1576\n\t\tf 4 -7139 -2703 7139 -2657\n\t\tmu 0 4 1576 1570 1569 1577\n\t\tf 4 -7140 -2700 7140 -2649\n\t\tmu 0 4 2884 2885 2871 2870\n\t\tf 4 -7141 -2697 7141 -2640\n\t\tmu 0 4 2870 2871 2861 2860\n\t\tf 4 -7142 -2693 -240 -2628\n\t\tmu 0 4 2860 2861 2856 2855\n\t\tf 4 -238 -2988 7142 -2805\n\t\tmu 0 4 2758 2761 2768 2769\n\t\tf 4 -7143 -2999 7143 -2809\n\t\tmu 0 4 2769 2768 2780 2781\n\t\tf 4 -7144 -3007 7144 -2812\n\t\tmu 0 4 2781 2780 2796 2797\n\t\tf 4 -7145 -3014 7145 -2815\n\t\tmu 0 4 1496 1497 1474 1473\n\t\tf 4 -7146 -2959 7146 -2873\n\t\tmu 0 4 1473 1474 1455 1454\n\t\tf 4 -7147 -2956 7147 -2865\n\t\tmu 0 4 1454 1455 1440 1439\n\t\tf 4 -7148 -2953 7148 -2856\n\t\tmu 0 4 1439 1440 1429 1428\n\t\tf 4 -7149 -2949 -112 -2844\n\t\tmu 0 4 1428 1429 1423 1422\n\t\tf 4 -224 7149 7150 -7086\n\t\tmu 0 4 1014 1020 1032 1021\n\t\tf 4 -7151 7151 7152 -7084\n\t\tmu 0 4 1021 1032 1048 1033\n\t\tf 4 -7153 7153 7154 -7081\n\t\tmu 0 4 1033 1048 1077 1049\n\t\tf 4 -7155 7155 7156 -7078\n\t\tmu 0 4 1049 1077 1116 1078\n\t\tf 4 -7157 7157 7158 -7075\n\t\tmu 0 4 1078 1116 1165 1117\n\t\tf 4 -7159 7159 7160 -7072\n\t\tmu 0 4 3977 4002 3978 3953\n\t\tf 4 -7161 7161 7162 -7069\n\t\tmu 0 4 3953 3978 3954 3930\n\t\tf 4 -7163 7163 -114 -7066\n\t\tmu 0 4 3930 3954 3931 3908\n\t\tf 4 -163 -3168 7164 -4389\n\t\tmu 0 4 682 670 683 693\n\t\tf 4 -7165 -3180 7165 -4393\n\t\tmu 0 4 693 683 695 703\n\t\tf 4 -7166 -3189 7166 -4396\n\t\tmu 0 4 703 695 706 712\n\t\tf 4 -7167 -3197 7167 -4399\n\t\tmu 0 4 712 706 716 720\n\t\tf 4 -7168 -3135 7168 -4238\n\t\tmu 0 4 720 716 717 725\n\t\tf 4 -7169 -3132 7169 -4229\n\t\tmu 0 4 4331 4332 4316 4315\n\t\tf 4 -7170 -3129 7170 -4220\n\t\tmu 0 4 4315 4316 4304 4303\n\t\tf 4 -7171 -3125 -169 -4208\n\t\tmu 0 4 4303 4304 4293 4296\n\t\tf 4 -162 -1908 7171 -3165\n\t\tmu 0 4 670 664 653 659\n\t\tf 4 -7172 -1920 7172 -3169\n\t\tmu 0 4 659 653 643 649\n\t\tf 4 -7173 -1929 7173 -3172\n\t\tmu 0 4 649 643 634 640\n\t\tf 4 -7174 -1937 7174 -3175\n\t\tmu 0 4 640 634 626 632\n\t\tf 4 -7175 -1879 7175 -3230\n\t\tmu 0 4 632 626 625 633\n\t\tf 4 -7176 -1876 7176 -3223\n\t\tmu 0 4 2788 2789 2775 2774\n\t\tf 4 -7177 -1873 7177 -3215\n\t\tmu 0 4 2774 2775 2765 2764\n\t\tf 4 -7178 -1869 -236 -3204\n\t\tmu 0 4 2764 2765 2760 2759\n\t\tf 4 -246 -4032 7178 -2733\n\t\tmu 0 4 1608 1620 1609 1598\n\t\tf 4 -7179 -4044 7179 -2737\n\t\tmu 0 4 1598 1609 1599 1589\n\t\tf 4 -7180 -4053 7180 -2740\n\t\tmu 0 4 1589 1599 1590 1581\n\t\tf 4 -7181 -4061 7181 -2743\n\t\tmu 0 4 1581 1590 1582 1575\n\t\tf 4 -7182 -3999 7182 -2801\n\t\tmu 0 4 1575 1582 1583 1574\n\t\tf 4 -7183 -3996 7183 -2793\n\t\tmu 0 4 4323 4324 4310 4309\n\t\tf 4 -7184 -3993 7184 -2784\n\t\tmu 0 4 4309 4310 4300 4299\n\t\tf 4 -7185 -3989 -167 -2772\n\t\tmu 0 4 4299 4300 4295 4294\n\t\tf 4 -235 -2808 7185 -3201\n\t\tmu 0 4 2759 2758 2762 2763\n\t\tf 4 -7186 -2820 7186 -3205\n\t\tmu 0 4 2763 2762 2771 2772\n\t\tf 4 -7187 -2829 7187 -3208\n\t\tmu 0 4 2772 2771 2784 2785\n\t\tf 4 -7188 -2837 7188 -3211\n\t\tmu 0 4 2785 2784 2801 2802\n\t\tf 4 -7189 -2779 7189 -3158\n\t\tmu 0 4 2802 2801 2817 2818\n\t\tf 4 -7190 -2776 7190 -3149\n\t\tmu 0 4 4317 4318 4306 4305\n\t\tf 4 -7191 -2773 7191 -3140\n\t\tmu 0 4 4305 4306 4298 4297\n\t\tf 4 -7192 -2769 -166 -3128\n\t\tmu 0 4 4297 4298 4294 4293\n\t\tf 4 -213 -2912 7192 -1829\n\t\tmu 0 4 4616 4615 4621 4622\n\t\tf 4 -7193 -2924 7193 -1833\n\t\tmu 0 4 4622 4621 4632 4633\n\t\tf 4 -7194 -2933 7194 -1836\n\t\tmu 0 4 4633 4632 4647 4648\n\t\tf 4 -7195 -2942 7195 -1839\n\t\tmu 0 4 2825 2826 2810 2809\n\t\tf 4 -7196 -2995 7196 -1901\n\t\tmu 0 4 2809 2810 2793 2792\n\t\tf 4 -7197 -2992 7197 -1893\n\t\tmu 0 4 2792 2793 2778 2777\n\t\tf 4 -7198 -2989 7198 -1884\n\t\tmu 0 4 2777 2778 2767 2766\n\t\tf 4 -7199 -2985 -237 -1872\n\t\tmu 0 4 2766 2767 2761 2760\n\t\tf 4 -239 -2412 7199 -2625\n\t\tmu 0 4 2855 2854 2858 2859\n\t\tf 4 -7200 -2424 7200 -2629\n\t\tmu 0 4 2859 2858 2867 2868\n\t\tf 4 -7201 -2433 7201 -2632\n\t\tmu 0 4 2868 2867 2880 2881\n\t\tf 4 -7202 -2441 7202 -2635\n\t\tmu 0 4 2881 2880 2897 2898\n\t\tf 4 -7203 -2383 7203 -2690\n\t\tmu 0 4 2898 2897 2913 2914\n\t\tf 4 -7204 -2380 7204 -2683\n\t\tmu 0 4 4445 4446 4434 4433\n\t\tf 4 -7205 -2377 7205 -2675\n\t\tmu 0 4 4433 4434 4426 4425\n\t\tf 4 -7206 -2373 -178 -2664\n\t\tmu 0 4 4425 4426 4422 4421\n\t\tf 4 -202 -2480 7206 -2877\n\t\tmu 0 4 4552 4551 4557 4558\n\t\tf 4 -7207 -2492 7207 -2881\n\t\tmu 0 4 4558 4557 4568 4569\n\t\tf 4 -7208 -2501 7208 -2884\n\t\tmu 0 4 4569 4568 4583 4584\n\t\tf 4 -7209 -2510 7209 -2887\n\t\tmu 0 4 2921 2922 2906 2905\n\t\tf 4 -7210 -2563 7210 -2726\n\t\tmu 0 4 2905 2906 2889 2888\n\t\tf 4 -7211 -2560 7211 -2717\n\t\tmu 0 4 2888 2889 2874 2873\n\t\tf 4 -7212 -2557 7212 -2708\n\t\tmu 0 4 2873 2874 2863 2862\n\t\tf 4 -7213 -2553 -241 -2696\n\t\tmu 0 4 2862 2863 2857 2856\n\t\tf 4 -95 -2232 7213 -2261\n\t\tmu 0 4 4232 4231 4237 4238\n\t\tf 4 -7214 -2243 7214 -2265\n\t\tmu 0 4 4238 4237 4248 4249\n\t\tf 4 -7215 -2251 7215 -2268\n\t\tmu 0 4 4249 4248 4263 4264\n\t\tf 4 -7216 -2258 7216 -2271\n\t\tmu 0 4 3016 3017 3002 3001\n\t\tf 4 -7217 -2203 7217 -2333\n\t\tmu 0 4 3001 3002 2985 2984\n\t\tf 4 -7218 -2200 7218 -2325\n\t\tmu 0 4 2984 2985 2970 2969\n\t\tf 4 -7219 -2197 7219 -2316\n\t\tmu 0 4 2969 2970 2959 2958\n\t\tf 4 -7220 -2193 -249 -2304\n\t\tmu 0 4 2958 2959 2953 2952\n\t\tf 4 -205 -1980 7220 -2045\n\t\tmu 0 4 2663 2662 2666 2667\n\t\tf 4 -7221 -1992 7221 -2049\n\t\tmu 0 4 2667 2666 2675 2676\n\t\tf 4 -7222 -2001 7222 -2052\n\t\tmu 0 4 2676 2675 2688 2689\n\t\tf 4 -7223 -2009 7223 -2055\n\t\tmu 0 4 2689 2688 2705 2706\n\t\tf 4 -7224 -1951 7224 -2117\n\t\tmu 0 4 2706 2705 2721 2722\n\t\tf 4 -7225 -1948 7225 -2109\n\t\tmu 0 4 4381 4382 4370 4369\n\t\tf 4 -7226 -1945 7226 -2100\n\t\tmu 0 4 4369 4370 4362 4361\n\t\tf 4 -7227 -1941 -174 -2088\n\t\tmu 0 4 4361 4362 4358 4357\n\t\tf 4 -111 -1076 7227 -2841\n\t\tmu 0 4 1422 1421 1426 1427\n\t\tf 4 -7228 -1088 7228 -2845\n\t\tmu 0 4 1427 1426 1436 1437\n\t\tf 4 -7229 -1097 7229 -2848\n\t\tmu 0 4 1437 1436 1450 1451\n\t\tf 4 -7230 -1106 7230 -2851\n\t\tmu 0 4 1451 1450 1468 1469\n\t\tf 4 -7231 -1159 7231 -2906\n\t\tmu 0 4 1469 1468 1490 1491\n\t\tf 4 -7232 -1156 7232 -2899\n\t\tmu 0 4 4587 4588 4572 4571\n\t\tf 4 -7233 -1153 7233 -2891\n\t\tmu 0 4 4571 4572 4560 4559\n\t\tf 4 -7234 -1149 -203 -2880\n\t\tmu 0 4 4559 4560 4549 4552\n\t\tf 4 -123 7234 7235 -1581\n\t\tmu 0 4 9 1 8 29\n\t\tf 4 -7236 7236 7237 -1585\n\t\tmu 0 4 29 8 28 66\n\t\tf 4 -7238 7238 7239 -1588\n\t\tmu 0 4 66 28 65 118\n\t\tf 4 -7240 7240 7241 -1591\n\t\tmu 0 4 118 65 117 178\n\t\tf 4 -7242 7242 7243 -1538\n\t\tmu 0 4 178 117 177 242\n\t\tf 4 -7244 7244 7245 -1529\n\t\tmu 0 4 3922 3900 3878 3899\n\t\tf 4 -7246 7246 7247 -1520\n\t\tmu 0 4 3899 3878 3863 3877\n\t\tf 4 -7248 7248 -267 -1508\n\t\tmu 0 4 3877 3863 3852 3862\n\t\tf 4 -125 -2156 7249 -6041\n\t\tmu 0 4 2 10 32 33\n\t\tf 4 -7250 -2168 7250 -6045\n\t\tmu 0 4 33 32 71 72\n\t\tf 4 -7251 -2177 7251 -6048\n\t\tmu 0 4 72 71 125 126\n\t\tf 4 -7252 -2186 7252 -6051\n\t\tmu 0 4 126 125 187 188\n\t\tf 4 -7253 -2239 7253 -6113\n\t\tmu 0 4 188 187 253 254\n\t\tf 4 -7254 -2236 7254 -6105\n\t\tmu 0 4 4259 4260 4246 4245\n\t\tf 4 -7255 -2233 7255 -6096\n\t\tmu 0 4 4245 4246 4236 4235\n\t\tf 4 -7256 -2229 -94 -6084\n\t\tmu 0 4 4235 4236 4231 4230\n\t\tf 4 -261 -3384 7256 -3309\n\t\tmu 0 4 3044 3043 3047 3048\n\t\tf 4 -7257 -3396 7257 -3313\n\t\tmu 0 4 3048 3047 3056 3057\n\t\tf 4 -7258 -3405 7258 -3316\n\t\tmu 0 4 3057 3056 3069 3070\n\t\tf 4 -7259 -3413 7259 -3319\n\t\tmu 0 4 3070 3069 3086 3087\n\t\tf 4 -7260 -3351 7260 -3266\n\t\tmu 0 4 3087 3086 3102 3103\n\t\tf 4 -7261 -3348 7261 -3257\n\t\tmu 0 4 3959 3960 3936 3935\n\t\tf 4 -7262 -3345 7262 -3248\n\t\tmu 0 4 3935 3936 3913 3912\n\t\tf 4 -7263 -3341 -198 -3236\n\t\tmu 0 4 3912 3913 3892 3891\n\t\tf 4 -269 -3560 7263 -3525\n\t\tmu 0 4 3138 3137 3142 3143\n\t\tf 4 -7264 -3572 7264 -3529\n\t\tmu 0 4 3143 3142 3152 3153\n\t\tf 4 -7265 -3581 7265 -3532\n\t\tmu 0 4 3153 3152 3166 3167\n\t\tf 4 -7266 -3590 7266 -3535\n\t\tmu 0 4 1251 1252 1195 1194\n\t\tf 4 -7267 -3643 7267 -3482\n\t\tmu 0 4 1194 1195 1144 1143\n\t\tf 4 -7268 -3640 7268 -3473\n\t\tmu 0 4 1143 1144 1100 1099\n\t\tf 4 -7269 -3637 7269 -3464\n\t\tmu 0 4 1099 1100 1066 1065\n\t\tf 4 -7270 -3633 -108 -3452\n\t\tmu 0 4 1065 1066 1029 1043\n\t\tf 4 -264 -3708 7270 -3381\n\t\tmu 0 4 3043 3046 3053 3054\n\t\tf 4 -7271 -3720 7271 -3385\n\t\tmu 0 4 3054 3053 3065 3066\n\t\tf 4 -7272 -3729 7272 -3388\n\t\tmu 0 4 3066 3065 3081 3082\n\t\tf 4 -7273 -3737 7273 -3391\n\t\tmu 0 4 2065 2059 2058 2064\n\t\tf 4 -7274 -3675 7274 -3446\n\t\tmu 0 4 2064 2058 2050 2056\n\t\tf 4 -7275 -3672 7275 -3439\n\t\tmu 0 4 2056 2050 2041 2047\n\t\tf 4 -7276 -3669 7276 -3431\n\t\tmu 0 4 2047 2041 2031 2037\n\t\tf 4 -7277 -3665 -184 -3420\n\t\tmu 0 4 2037 2031 2020 2026\n\t\tf 4 -230 -3776 7277 -3273\n\t\tmu 0 4 1749 1743 1732 1738\n\t\tf 4 -7278 -3788 7278 -3277\n\t\tmu 0 4 1738 1732 1722 1728\n\t\tf 4 -7279 -3797 7279 -3280\n\t\tmu 0 4 1728 1722 1713 1719\n\t\tf 4 -7280 -3806 7280 -3283\n\t\tmu 0 4 1719 1713 1705 1711\n\t\tf 4 -7281 -3967 7281 -3338\n\t\tmu 0 4 1711 1705 1704 1712\n\t\tf 4 -7282 -3964 7282 -3331\n\t\tmu 0 4 3073 3074 3060 3059\n\t\tf 4 -7283 -3961 7283 -3323\n\t\tmu 0 4 3059 3060 3050 3049\n\t\tf 4 -7284 -3957 -262 -3312\n\t\tmu 0 4 3049 3050 3045 3044\n\t\tf 4 -275 -4068 7284 -3849\n\t\tmu 0 4 3232 3235 3242 3243\n\t\tf 4 -7285 -4079 7285 -3853\n\t\tmu 0 4 3243 3242 3254 3255\n\t\tf 4 -7286 -4087 7286 -3856\n\t\tmu 0 4 3255 3254 3270 3271\n\t\tf 4 -7287 -4094 7287 -3859\n\t\tmu 0 4 1670 1663 1662 1668\n\t\tf 4 -7288 -4039 7288 -3917\n\t\tmu 0 4 1668 1662 1653 1659\n\t\tf 4 -7289 -4036 7289 -3909\n\t\tmu 0 4 1659 1653 1643 1649\n\t\tf 4 -7290 -4033 7290 -3900\n\t\tmu 0 4 1649 1643 1632 1638\n\t\tf 4 -7291 -4029 -245 -3888\n\t\tmu 0 4 1638 1632 1620 1626\n\t\tf 4 -226 -4140 7291 -5145\n\t\tmu 0 4 817 805 818 828\n\t\tf 4 -7292 -4152 7292 -5149\n\t\tmu 0 4 828 818 830 838\n\t\tf 4 -7293 -4161 7293 -5152\n\t\tmu 0 4 838 830 841 847\n\t\tf 4 -7294 -4169 7294 -5155\n\t\tmu 0 4 847 841 851 855\n\t\tf 4 -7295 -4107 7295 -4994\n\t\tmu 0 4 855 851 852 860\n\t\tf 4 -7296 -4104 7296 -4985\n\t\tmu 0 4 4715 4716 4700 4699\n\t\tf 4 -7297 -4101 7297 -4976\n\t\tmu 0 4 4699 4700 4688 4687\n\t\tf 4 -7298 -4097 -221 -4964\n\t\tmu 0 4 4687 4688 4677 4680\n\t\tf 4 -225 -4284 7298 -4137\n\t\tmu 0 4 805 799 788 794\n\t\tf 4 -7299 -4296 7299 -4141\n\t\tmu 0 4 794 788 778 784\n\t\tf 4 -7300 -4305 7300 -4144\n\t\tmu 0 4 784 778 769 775\n\t\tf 4 -7301 -4313 7301 -4147\n\t\tmu 0 4 775 769 761 767\n\t\tf 4 -7302 -4255 7302 -4202\n\t\tmu 0 4 767 761 760 768\n\t\tf 4 -7303 -4252 7303 -4195\n\t\tmu 0 4 3262 3263 3249 3248\n\t\tf 4 -7304 -4249 7304 -4187\n\t\tmu 0 4 3248 3249 3239 3238\n\t\tf 4 -7305 -4245 -273 -4176\n\t\tmu 0 4 3238 3239 3234 3233\n\t\tf 4 -271 -4464 7305 -4353\n\t\tmu 0 4 3136 3139 3146 3147\n\t\tf 4 -7306 -4476 7306 -4357\n\t\tmu 0 4 3147 3146 3158 3159\n\t\tf 4 -7307 -4485 7307 -4360\n\t\tmu 0 4 3159 3158 3174 3175\n\t\tf 4 -7308 -4493 7308 -4363\n\t\tmu 0 4 726 719 718 724\n\t\tf 4 -7309 -4431 7309 -4418\n\t\tmu 0 4 724 718 709 715\n\t\tf 4 -7310 -4428 7310 -4411\n\t\tmu 0 4 715 709 699 705\n\t\tf 4 -7311 -4425 7311 -4403\n\t\tmu 0 4 705 699 688 694\n\t\tf 4 -7312 -4421 -164 -4392\n\t\tmu 0 4 694 688 676 682\n\t\tf 4 -272 -3852 7312 -4173\n\t\tmu 0 4 3233 3232 3236 3237\n\t\tf 4 -7313 -3864 7313 -4177\n\t\tmu 0 4 3237 3236 3245 3246\n\t\tf 4 -7314 -3873 7314 -4180\n\t\tmu 0 4 3246 3245 3258 3259\n\t\tf 4 -7315 -3881 7315 -4183\n\t\tmu 0 4 3259 3258 3275 3276\n\t\tf 4 -7316 -3823 7316 -4130\n\t\tmu 0 4 3276 3275 3291 3292\n\t\tf 4 -7317 -3820 7317 -4121\n\t\tmu 0 4 4701 4702 4690 4689\n\t\tf 4 -7318 -3817 7318 -4112\n\t\tmu 0 4 4689 4690 4682 4681\n\t\tf 4 -7319 -3813 -218 -4100\n\t\tmu 0 4 4681 4682 4678 4677\n\t\tf 4 -168 -3992 7319 -4205\n\t\tmu 0 4 4296 4295 4301 4302\n\t\tf 4 -7320 -4004 7320 -4209\n\t\tmu 0 4 4302 4301 4312 4313\n\t\tf 4 -7321 -4013 7321 -4212\n\t\tmu 0 4 4313 4312 4327 4328\n\t\tf 4 -7322 -4022 7322 -4215\n\t\tmu 0 4 3299 3300 3284 3283\n\t\tf 4 -7323 -4075 7323 -4277\n\t\tmu 0 4 3283 3284 3267 3266\n\t\tf 4 -7324 -4072 7324 -4269\n\t\tmu 0 4 3266 3267 3252 3251\n\t\tf 4 -7325 -4069 7325 -4260\n\t\tmu 0 4 3251 3252 3241 3240\n\t\tf 4 -7326 -4065 -274 -4248\n\t\tmu 0 4 3240 3241 3235 3234\n\t\tf 4 -180 -3744 7326 -3921\n\t\tmu 0 4 4424 4423 4429 4430\n\t\tf 4 -7327 -3755 7327 -3925\n\t\tmu 0 4 4430 4429 4440 4441\n\t\tf 4 -7328 -3763 7328 -3928\n\t\tmu 0 4 4441 4440 4455 4456\n\t\tf 4 -7329 -3770 7329 -3931\n\t\tmu 0 4 3109 3110 3095 3094\n\t\tf 4 -7330 -3715 7330 -3986\n\t\tmu 0 4 3094 3095 3078 3077\n\t\tf 4 -7331 -3712 7331 -3979\n\t\tmu 0 4 3077 3078 3063 3062\n\t\tf 4 -7332 -3709 7332 -3971\n\t\tmu 0 4 3062 3063 3052 3051\n\t\tf 4 -7333 -3705 -263 -3960\n\t\tmu 0 4 3051 3052 3046 3045\n\t\tf 4 -233 -4896 7333 -3773\n\t\tmu 0 4 1743 1755 1744 1733\n\t\tf 4 -7334 -4908 7334 -3777\n\t\tmu 0 4 1733 1744 1734 1724\n\t\tf 4 -7335 -4917 7335 -3780\n\t\tmu 0 4 1724 1734 1725 1716\n\t\tf 4 -7336 -4925 7336 -3783\n\t\tmu 0 4 1716 1725 1717 1710;\n\tsetAttr \".fc[3500:3999]\"\n\t\tf 4 -7337 -4863 7337 -3845\n\t\tmu 0 4 1710 1717 1718 1709\n\t\tf 4 -7338 -4860 7338 -3837\n\t\tmu 0 4 4707 4708 4694 4693\n\t\tf 4 -7339 -4857 7339 -3828\n\t\tmu 0 4 4693 4694 4684 4683\n\t\tf 4 -7340 -4853 -219 -3816\n\t\tmu 0 4 4683 4684 4679 4678\n\t\tf 4 -268 -4356 7340 -3557\n\t\tmu 0 4 3137 3136 3140 3141\n\t\tf 4 -7341 -4368 7341 -3561\n\t\tmu 0 4 3141 3140 3149 3150\n\t\tf 4 -7342 -4377 7342 -3564\n\t\tmu 0 4 3150 3149 3162 3163\n\t\tf 4 -7343 -4385 7343 -3567\n\t\tmu 0 4 3163 3162 3179 3180\n\t\tf 4 -7344 -4327 7344 -3629\n\t\tmu 0 4 3180 3179 3195 3196\n\t\tf 4 -7345 -4324 7345 -3621\n\t\tmu 0 4 4509 4510 4498 4497\n\t\tf 4 -7346 -4321 7346 -3612\n\t\tmu 0 4 4497 4498 4490 4489\n\t\tf 4 -7347 -4317 -192 -3600\n\t\tmu 0 4 4489 4490 4486 4485\n\t\tf 4 -176 -4500 7347 -3489\n\t\tmu 0 4 4360 4359 4365 4366\n\t\tf 4 -7348 -4511 7348 -3493\n\t\tmu 0 4 4366 4365 4376 4377\n\t\tf 4 -7349 -4519 7349 -3496\n\t\tmu 0 4 4377 4376 4391 4392\n\t\tf 4 -7350 -4526 7350 -3499\n\t\tmu 0 4 3203 3204 3188 3187\n\t\tf 4 -7351 -4471 7351 -3554\n\t\tmu 0 4 3187 3188 3171 3170\n\t\tf 4 -7352 -4468 7352 -3547\n\t\tmu 0 4 3170 3171 3156 3155\n\t\tf 4 -7353 -4465 7353 -3539\n\t\tmu 0 4 3155 3156 3145 3144\n\t\tf 4 -7354 -4461 -270 -3528\n\t\tmu 0 4 3144 3145 3139 3138\n\t\tf 4 -165 -4424 7354 -1905\n\t\tmu 0 4 664 676 665 654\n\t\tf 4 -7355 -4436 7355 -1909\n\t\tmu 0 4 654 665 655 645\n\t\tf 4 -7356 -4445 7356 -1912\n\t\tmu 0 4 645 655 646 637\n\t\tf 4 -7357 -4454 7357 -1915\n\t\tmu 0 4 637 646 638 631\n\t\tf 4 -7358 -4507 7358 -1973\n\t\tmu 0 4 631 638 639 630\n\t\tf 4 -7359 -4504 7359 -1965\n\t\tmu 0 4 4387 4388 4374 4373\n\t\tf 4 -7360 -4501 7360 -1956\n\t\tmu 0 4 4373 4374 4364 4363\n\t\tf 4 -7361 -4497 -175 -1944\n\t\tmu 0 4 4363 4364 4359 4358\n\t\tf 4 -107 -2124 7361 -3449\n\t\tmu 0 4 1043 1028 1063 1064\n\t\tf 4 -7362 -2135 7362 -3453\n\t\tmu 0 4 1064 1063 1096 1097\n\t\tf 4 -7363 -2143 7363 -3456\n\t\tmu 0 4 1097 1096 1139 1140\n\t\tf 4 -7364 -2150 7364 -3459\n\t\tmu 0 4 1140 1139 1189 1190\n\t\tf 4 -7365 -2095 7365 -3521\n\t\tmu 0 4 1190 1189 1245 1246\n\t\tf 4 -7366 -2092 7366 -3513\n\t\tmu 0 4 4395 4396 4380 4379\n\t\tf 4 -7367 -2089 7367 -3504\n\t\tmu 0 4 4379 4380 4368 4367\n\t\tf 4 -7368 -2085 -177 -3492\n\t\tmu 0 4 4367 4368 4357 4360\n\t\tf 4 -181 -3924 7368 -2661\n\t\tmu 0 4 4421 4424 4431 4432\n\t\tf 4 -7369 -3936 7369 -2665\n\t\tmu 0 4 4432 4431 4443 4444\n\t\tf 4 -7370 -3945 7370 -2668\n\t\tmu 0 4 4444 4443 4459 4460\n\t\tf 4 -7371 -3953 7371 -2671\n\t\tmu 0 4 1661 1669 1664 1660\n\t\tf 4 -7372 -3895 7372 -2618\n\t\tmu 0 4 1660 1664 1656 1650\n\t\tf 4 -7373 -3892 7373 -2609\n\t\tmu 0 4 1650 1656 1647 1639\n\t\tf 4 -7374 -3889 7374 -2600\n\t\tmu 0 4 1639 1647 1637 1627\n\t\tf 4 -7375 -3885 -244 -2588\n\t\tmu 0 4 1627 1637 1626 1614\n\t\tf 4 -199 -3344 7375 -1437\n\t\tmu 0 4 3861 3892 3914 3897\n\t\tf 4 -7376 -3356 7376 -1441\n\t\tmu 0 4 3897 3914 3940 3920\n\t\tf 4 -7377 -3365 7377 -1444\n\t\tmu 0 4 3920 3940 3966 3946\n\t\tf 4 -7378 -3374 7378 -1447\n\t\tmu 0 4 2066 2067 2060 2057\n\t\tf 4 -7379 -3427 7379 -1502\n\t\tmu 0 4 2057 2060 2053 2048\n\t\tf 4 -7380 -3424 7380 -1495\n\t\tmu 0 4 2048 2053 2045 2038\n\t\tf 4 -7381 -3421 7381 -1487\n\t\tmu 0 4 2038 2045 2036 2027\n\t\tf 4 -7382 -3417 -183 -1476\n\t\tmu 0 4 2027 2036 2026 2014\n\t\tf 4 -179 -2376 7382 -3741\n\t\tmu 0 4 4423 4422 4427 4428\n\t\tf 4 -7383 -2388 7383 -3745\n\t\tmu 0 4 4428 4427 4437 4438\n\t\tf 4 -7384 -2397 7384 -3748\n\t\tmu 0 4 4438 4437 4451 4452\n\t\tf 4 -7385 -2405 7385 -3751\n\t\tmu 0 4 1982 1974 1975 1983\n\t\tf 4 -7386 -2347 7386 -3698\n\t\tmu 0 4 1983 1975 1981 1990\n\t\tf 4 -7387 -2344 7387 -3689\n\t\tmu 0 4 1990 1981 1989 1999\n\t\tf 4 -7388 -2341 7388 -3680\n\t\tmu 0 4 1999 1989 1998 2009\n\t\tf 4 -7389 -2337 -185 -3668\n\t\tmu 0 4 2009 1998 2008 2020\n\t\tf 4 -289 -4680 7389 -4605\n\t\tmu 0 4 3521 3520 3524 3525\n\t\tf 4 -7390 -4692 7390 -4609\n\t\tmu 0 4 3525 3524 3533 3534\n\t\tf 4 -7391 -4701 7391 -4612\n\t\tmu 0 4 3534 3533 3546 3547\n\t\tf 4 -7392 -4709 7392 -4615\n\t\tmu 0 4 3547 3546 3563 3564\n\t\tf 4 -7393 -4647 7393 -4562\n\t\tmu 0 4 3564 3563 3579 3580\n\t\tf 4 -7394 -4644 7394 -4553\n\t\tmu 0 4 4008 4009 3983 3982\n\t\tf 4 -7395 -4641 7395 -4544\n\t\tmu 0 4 3982 3983 3957 3956\n\t\tf 4 -7396 -4637 -276 -4532\n\t\tmu 0 4 3956 3957 3934 3933\n\t\tf 4 -282 -3020 7396 -4821\n\t\tmu 0 4 3330 3329 3334 3335\n\t\tf 4 -7397 -3032 7397 -4825\n\t\tmu 0 4 3335 3334 3344 3345\n\t\tf 4 -7398 -3041 7398 -4828\n\t\tmu 0 4 3345 3344 3358 3359\n\t\tf 4 -7399 -3050 7399 -4831\n\t\tmu 0 4 1263 1264 1205 1204\n\t\tf 4 -7400 -3103 7400 -4778\n\t\tmu 0 4 1204 1205 1152 1151\n\t\tf 4 -7401 -3100 7401 -4769\n\t\tmu 0 4 1151 1152 1106 1105\n\t\tf 4 -7402 -3097 7402 -4760\n\t\tmu 0 4 1105 1106 1070 1069\n\t\tf 4 -7403 -3093 -256 -4748\n\t\tmu 0 4 1069 1070 1030 1044\n\t\tf 4 -292 -4932 7403 -4677\n\t\tmu 0 4 3520 3523 3530 3531\n\t\tf 4 -7404 -4943 7404 -4681\n\t\tmu 0 4 3531 3530 3542 3543\n\t\tf 4 -7405 -4951 7405 -4684\n\t\tmu 0 4 3543 3542 3558 3559\n\t\tf 4 -7406 -4958 7406 -4687\n\t\tmu 0 4 1800 1794 1793 1799\n\t\tf 4 -7407 -4903 7407 -4742\n\t\tmu 0 4 1799 1793 1785 1791\n\t\tf 4 -7408 -4900 7408 -4735\n\t\tmu 0 4 1791 1785 1776 1782\n\t\tf 4 -7409 -4897 7409 -4727\n\t\tmu 0 4 1782 1776 1766 1772\n\t\tf 4 -7410 -4893 -232 -4716\n\t\tmu 0 4 1772 1766 1755 1761\n\t\tf 4 -251 -5040 7410 -4569\n\t\tmu 0 4 940 934 923 929\n\t\tf 4 -7411 -5052 7411 -4573\n\t\tmu 0 4 929 923 913 919\n\t\tf 4 -7412 -5061 7412 -4576\n\t\tmu 0 4 919 913 904 910\n\t\tf 4 -7413 -5069 7413 -4579\n\t\tmu 0 4 910 904 896 902\n\t\tf 4 -7414 -5011 7414 -4634\n\t\tmu 0 4 902 896 895 903\n\t\tf 4 -7415 -5008 7415 -4627\n\t\tmu 0 4 3550 3551 3537 3536\n\t\tf 4 -7416 -5005 7416 -4619\n\t\tmu 0 4 3536 3537 3527 3526\n\t\tf 4 -7417 -5001 -290 -4608\n\t\tmu 0 4 3526 3527 3522 3521\n\t\tf 4 -284 -5220 7417 -5109\n\t\tmu 0 4 3328 3331 3338 3339\n\t\tf 4 -7418 -5232 7418 -5113\n\t\tmu 0 4 3339 3338 3350 3351\n\t\tf 4 -7419 -5241 7419 -5116\n\t\tmu 0 4 3351 3350 3366 3367\n\t\tf 4 -7420 -5249 7420 -5119\n\t\tmu 0 4 861 854 853 859\n\t\tf 4 -7421 -5187 7421 -5174\n\t\tmu 0 4 859 853 844 850\n\t\tf 4 -7422 -5184 7422 -5167\n\t\tmu 0 4 850 844 834 840\n\t\tf 4 -7423 -5181 7423 -5159\n\t\tmu 0 4 840 834 823 829\n\t\tf 4 -7424 -5177 -227 -5148\n\t\tmu 0 4 829 823 811 817\n\t\tf 4 -220 -4856 7424 -4961\n\t\tmu 0 4 4680 4679 4685 4686\n\t\tf 4 -7425 -4868 7425 -4965\n\t\tmu 0 4 4686 4685 4696 4697\n\t\tf 4 -7426 -4877 7426 -4968\n\t\tmu 0 4 4697 4696 4711 4712\n\t\tf 4 -7427 -4886 7427 -4971\n\t\tmu 0 4 3586 3587 3572 3571\n\t\tf 4 -7428 -4939 7428 -5033\n\t\tmu 0 4 3571 3572 3555 3554\n\t\tf 4 -7429 -4936 7429 -5025\n\t\tmu 0 4 3554 3555 3540 3539\n\t\tf 4 -7430 -4933 7430 -5016\n\t\tmu 0 4 3539 3540 3529 3528\n\t\tf 4 -7431 -4929 -291 -5004\n\t\tmu 0 4 3528 3529 3523 3522\n\t\tf 4 -281 -5112 7431 -3017\n\t\tmu 0 4 3329 3328 3332 3333\n\t\tf 4 -7432 -5124 7432 -3021\n\t\tmu 0 4 3333 3332 3341 3342\n\t\tf 4 -7433 -5133 7433 -3024\n\t\tmu 0 4 3342 3341 3354 3355\n\t\tf 4 -7434 -5141 7434 -3027\n\t\tmu 0 4 3355 3354 3371 3372\n\t\tf 4 -7435 -5083 7435 -3089\n\t\tmu 0 4 3372 3371 3387 3388\n\t\tf 4 -7436 -5080 7436 -3081\n\t\tmu 0 4 4765 4766 4754 4753\n\t\tf 4 -7437 -5077 7437 -3072\n\t\tmu 0 4 4753 4754 4746 4745\n\t\tf 4 -7438 -5073 -257 -3060\n\t\tmu 0 4 4745 4746 4742 4741\n\t\tf 4 -194 -5256 7438 -4785\n\t\tmu 0 4 4488 4487 4493 4494\n\t\tf 4 -7439 -5267 7439 -4789\n\t\tmu 0 4 4494 4493 4504 4505\n\t\tf 4 -7440 -5275 7440 -4792\n\t\tmu 0 4 4505 4504 4519 4520\n\t\tf 4 -7441 -5282 7441 -4795\n\t\tmu 0 4 3395 3396 3380 3379\n\t\tf 4 -7442 -5227 7442 -4850\n\t\tmu 0 4 3379 3380 3363 3362\n\t\tf 4 -7443 -5224 7443 -4843\n\t\tmu 0 4 3362 3363 3348 3347\n\t\tf 4 -7444 -5221 7444 -4835\n\t\tmu 0 4 3347 3348 3337 3336\n\t\tf 4 -7445 -5217 -283 -4824\n\t\tmu 0 4 3336 3337 3331 3330\n\t\tf 4 -173 7445 7446 -7150\n\t\tmu 0 4 1020 1031 1047 1032\n\t\tf 4 -7447 7447 7448 -7152\n\t\tmu 0 4 1032 1047 1076 1048\n\t\tf 4 -7449 7449 7450 -7154\n\t\tmu 0 4 1048 1076 1115 1077\n\t\tf 4 -7451 7451 7452 -7156\n\t\tmu 0 4 1077 1115 1164 1116\n\t\tf 4 -7453 7453 7454 -7158\n\t\tmu 0 4 1116 1164 1220 1165\n\t\tf 4 -7455 7455 7456 -7160\n\t\tmu 0 4 4002 4026 4003 3978\n\t\tf 4 -7457 7457 7458 -7162\n\t\tmu 0 4 3978 4003 3979 3954\n\t\tf 4 -7459 7459 -186 -7164\n\t\tmu 0 4 3954 3979 3955 3931\n\t\tf 4 -193 -4320 7460 -5253\n\t\tmu 0 4 4487 4486 4491 4492\n\t\tf 4 -7461 -4332 7461 -5257\n\t\tmu 0 4 4492 4491 4501 4502\n\t\tf 4 -7462 -4341 7462 -5260\n\t\tmu 0 4 4502 4501 4515 4516\n\t\tf 4 -7463 -4349 7463 -5263\n\t\tmu 0 4 773 765 766 774\n\t\tf 4 -7464 -4291 7464 -5210\n\t\tmu 0 4 774 766 772 781\n\t\tf 4 -7465 -4288 7465 -5201\n\t\tmu 0 4 781 772 780 790\n\t\tf 4 -7466 -4285 7466 -5192\n\t\tmu 0 4 790 780 789 800\n\t\tf 4 -7467 -4281 -228 -5180\n\t\tmu 0 4 800 789 799 811\n\t\tf 4 -231 -3276 7467 -4713\n\t\tmu 0 4 1761 1749 1762 1771\n\t\tf 4 -7468 -3288 7468 -4717\n\t\tmu 0 4 1771 1762 1773 1780\n\t\tf 4 -7469 -3297 7469 -4720\n\t\tmu 0 4 1780 1773 1783 1788\n\t\tf 4 -7470 -3305 7470 -4723\n\t\tmu 0 4 1788 1783 1792 1795\n\t\tf 4 -7471 -3243 7471 -4670\n\t\tmu 0 4 1795 1792 1801 1802\n\t\tf 4 -7472 -3240 7472 -4661\n\t\tmu 0 4 4015 3993 3964 3987\n\t\tf 4 -7473 -3237 7473 -4652\n\t\tmu 0 4 3987 3964 3938 3958\n\t\tf 4 -7474 -3233 -277 -4640\n\t\tmu 0 4 3958 3938 3891 3934\n\t\tf 4 -255 -3636 7474 -4745\n\t\tmu 0 4 1044 1029 1067 1068\n\t\tf 4 -7475 -3647 7475 -4749\n\t\tmu 0 4 1068 1067 1102 1103\n\t\tf 4 -7476 -3655 7476 -4752\n\t\tmu 0 4 1103 1102 1147 1148\n\t\tf 4 -7477 -3662 7477 -4755\n\t\tmu 0 4 1148 1147 1199 1200\n\t\tf 4 -7478 -3607 7478 -4817\n\t\tmu 0 4 1200 1199 1257 1258\n\t\tf 4 -7479 -3604 7479 -4809\n\t\tmu 0 4 4523 4524 4508 4507\n\t\tf 4 -7480 -3601 7480 -4800\n\t\tmu 0 4 4507 4508 4496 4495\n\t\tf 4 -7481 -3597 -195 -4788\n\t\tmu 0 4 4495 4496 4485 4488\n\t\tf 4 -286 -5436 7481 -5361\n\t\tmu 0 4 3426 3425 3430 3431\n\t\tf 4 -7482 -5448 7482 -5365\n\t\tmu 0 4 3431 3430 3440 3441\n\t\tf 4 -7483 -5457 7483 -5368\n\t\tmu 0 4 3441 3440 3454 3455\n\t\tf 4 -7484 -5465 7484 -5371\n\t\tmu 0 4 1275 1276 1215 1214\n\t\tf 4 -7485 -5403 7485 -5318\n\t\tmu 0 4 1214 1215 1160 1159\n\t\tf 4 -7486 -5400 7486 -5309\n\t\tmu 0 4 1159 1160 1112 1111\n\t\tf 4 -7487 -5397 7487 -5300\n\t\tmu 0 4 1111 1112 1074 1073\n\t\tf 4 -7488 -5393 -190 -5288\n\t\tmu 0 4 1073 1074 1046 1045\n\t\tf 4 -285 -5544 7488 -5433\n\t\tmu 0 4 3425 3424 3428 3429\n\t\tf 4 -7489 -5556 7489 -5437\n\t\tmu 0 4 3429 3428 3437 3438\n\t\tf 4 -7490 -5565 7490 -5440\n\t\tmu 0 4 3438 3437 3450 3451\n\t\tf 4 -7491 -5573 7491 -5443\n\t\tmu 0 4 3451 3450 3467 3468\n\t\tf 4 -7492 -5511 7492 -5498\n\t\tmu 0 4 3468 3467 3483 3484\n\t\tf 4 -7493 -5508 7493 -5491\n\t\tmu 0 4 4050 4051 4030 4029\n\t\tf 4 -7494 -5505 7494 -5483\n\t\tmu 0 4 4029 4030 4006 4005\n\t\tf 4 -7495 -5501 -216 -5472\n\t\tmu 0 4 4005 4006 3981 3980\n\t\tf 4 -288 -5652 7495 -5541\n\t\tmu 0 4 3424 3427 3434 3435\n\t\tf 4 -7496 -5664 7496 -5545\n\t\tmu 0 4 3435 3434 3446 3447\n\t\tf 4 -7497 -5673 7497 -5548\n\t\tmu 0 4 3447 3446 3462 3463\n\t\tf 4 -7498 -5681 7498 -5551\n\t\tmu 0 4 991 985 984 990\n\t\tf 4 -7499 -5619 7499 -5606\n\t\tmu 0 4 990 984 976 982\n\t\tf 4 -7500 -5616 7500 -5599\n\t\tmu 0 4 982 976 967 973\n\t\tf 4 -7501 -5613 7501 -5591\n\t\tmu 0 4 973 967 957 963\n\t\tf 4 -7502 -5609 -253 -5580\n\t\tmu 0 4 963 957 946 952\n\t\tf 4 -259 -5688 7502 -5325\n\t\tmu 0 4 4744 4743 4749 4750\n\t\tf 4 -7503 -5699 7503 -5329\n\t\tmu 0 4 4750 4749 4760 4761\n\t\tf 4 -7504 -5707 7504 -5332\n\t\tmu 0 4 4761 4760 4775 4776\n\t\tf 4 -7505 -5714 7505 -5335\n\t\tmu 0 4 3491 3492 3476 3475\n\t\tf 4 -7506 -5659 7506 -5390\n\t\tmu 0 4 3475 3476 3459 3458\n\t\tf 4 -7507 -5656 7507 -5383\n\t\tmu 0 4 3458 3459 3444 3443\n\t\tf 4 -7508 -5653 7508 -5375\n\t\tmu 0 4 3443 3444 3433 3432\n\t\tf 4 -7509 -5649 -287 -5364\n\t\tmu 0 4 3432 3433 3427 3426\n\t\tf 4 -254 -5612 7509 -5037\n\t\tmu 0 4 934 946 935 924\n\t\tf 4 -7510 -5624 7510 -5041\n\t\tmu 0 4 924 935 925 915\n\t\tf 4 -7511 -5633 7511 -5044\n\t\tmu 0 4 915 925 916 907\n\t\tf 4 -7512 -5642 7512 -5047\n\t\tmu 0 4 907 916 908 901\n\t\tf 4 -7513 -5695 7513 -5105\n\t\tmu 0 4 901 908 909 900\n\t\tf 4 -7514 -5692 7514 -5097\n\t\tmu 0 4 4771 4772 4758 4757\n\t\tf 4 -7515 -5689 7515 -5088\n\t\tmu 0 4 4757 4758 4748 4747\n\t\tf 4 -7516 -5685 -258 -5076\n\t\tmu 0 4 4747 4748 4743 4742\n\t\tf 4 -189 -3096 7516 -5285\n\t\tmu 0 4 1045 1030 1071 1072\n\t\tf 4 -7517 -3107 7517 -5289\n\t\tmu 0 4 1072 1071 1108 1109\n\t\tf 4 -7518 -3115 7518 -5292\n\t\tmu 0 4 1109 1108 1155 1156\n\t\tf 4 -7519 -3122 7519 -5295\n\t\tmu 0 4 1156 1155 1209 1210\n\t\tf 4 -7520 -3067 7520 -5357\n\t\tmu 0 4 1210 1209 1269 1270\n\t\tf 4 -7521 -3064 7521 -5349\n\t\tmu 0 4 4779 4780 4764 4763\n\t\tf 4 -7522 -3061 7522 -5340\n\t\tmu 0 4 4763 4764 4752 4751\n\t\tf 4 -7523 -3057 -260 -5328\n\t\tmu 0 4 4751 4752 4741 4744\n\t\tf 4 -215 -7460 7523 -5469\n\t\tmu 0 4 3980 3955 3979 4004\n\t\tf 4 -7524 -7458 7524 -5473\n\t\tmu 0 4 4004 3979 4003 4027\n\t\tf 4 -7525 -7456 7525 -5476\n\t\tmu 0 4 4027 4003 4026 4047\n\t\tf 4 -7526 -7454 7526 -5479\n\t\tmu 0 4 1281 1220 1164 1219\n\t\tf 4 -7527 -7452 7527 -5426\n\t\tmu 0 4 1219 1164 1115 1163\n\t\tf 4 -7528 -7450 7528 -5417\n\t\tmu 0 4 1163 1115 1076 1114\n\t\tf 4 -7529 -7448 7529 -5408\n\t\tmu 0 4 1114 1076 1047 1075\n\t\tf 4 -7530 -7446 -191 -5396\n\t\tmu 0 4 1075 1047 1031 1046\n\t\tf 4 -217 -5504 7530 -4529\n\t\tmu 0 4 3933 3981 4007 3985\n\t\tf 4 -7531 -5516 7531 -4533\n\t\tmu 0 4 3985 4007 4032 4013\n\t\tf 4 -7532 -5525 7532 -4536\n\t\tmu 0 4 4013 4032 4054 4038\n\t\tf 4 -7533 -5534 7533 -4539\n\t\tmu 0 4 992 993 986 983\n\t\tf 4 -7534 -5587 7534 -4601\n\t\tmu 0 4 983 986 979 974\n\t\tf 4 -7535 -5584 7535 -4593\n\t\tmu 0 4 974 979 971 964\n\t\tf 4 -7536 -5581 7536 -4584\n\t\tmu 0 4 964 971 962 953\n\t\tf 4 -7537 -5577 -252 -4572\n\t\tmu 0 4 953 962 952 940\n\t\tf 4 -1 7537 7538 7539\n\t\tmu 0 4 3790 3789 3793 3794\n\t\tf 4 -7539 7540 7541 7542\n\t\tmu 0 4 3794 3793 3802 3803\n\t\tf 4 -7542 7543 7544 7545\n\t\tmu 0 4 3803 3802 3815 3816\n\t\tf 4 -7545 7546 7547 7548\n\t\tmu 0 4 287 288 219 218\n\t\tf 4 -7548 7549 7550 7551\n\t\tmu 0 4 218 219 154 153\n\t\tf 4 -7551 7552 7553 7554\n\t\tmu 0 4 153 154 95 94\n\t\tf 4 -7554 7555 7556 7557\n\t\tmu 0 4 94 95 50 49\n\t\tf 4 -7557 7558 -434 7559\n\t\tmu 0 4 49 50 20 19\n\t\tf 4 7560 7561 7562 -7538\n\t\tmu 0 4 3789 3799 3801 3793\n\t\tf 4 -7563 7563 7564 -7541\n\t\tmu 0 4 3793 3801 3814 3802\n\t\tf 4 -7565 7565 7566 -7544\n\t\tmu 0 4 3802 3814 3829 3815\n\t\tf 4 -7567 7567 7568 -7547\n\t\tmu 0 4 288 352 289 219\n\t\tf 4 -7569 7569 7570 -7550\n\t\tmu 0 4 219 289 220 154\n\t\tf 4 -7571 7571 7572 -7553\n\t\tmu 0 4 154 220 155 95\n\t\tf 4 -7573 7573 7574 -7556\n\t\tmu 0 4 95 155 96 50\n\t\tf 4 -7575 7575 -476 -7559\n\t\tmu 0 4 50 96 51 20\n\t\tf 4 -374 7576 7577 -7562\n\t\tmu 0 4 3799 3811 3813 3801\n\t\tf 4 -7578 7578 7579 -7564\n\t\tmu 0 4 3801 3813 3828 3814\n\t\tf 4 -7580 7580 7581 -7566\n\t\tmu 0 4 3814 3828 3838 3829\n\t\tf 4 -7582 7582 7583 -7568\n\t\tmu 0 4 352 353 290 289\n\t\tf 4 -7584 7584 7585 -7570\n\t\tmu 0 4 289 290 221 220\n\t\tf 4 -7586 7586 7587 -7572\n\t\tmu 0 4 220 221 156 155\n\t\tf 4 -7588 7588 7589 -7574\n\t\tmu 0 4 155 156 97 96\n\t\tf 4 -7590 7590 -439 -7576\n\t\tmu 0 4 96 97 52 51\n\t\tf 4 -349 7591 7592 -7577\n\t\tmu 0 4 3811 3825 3827 3813\n\t\tf 4 -7593 7593 7594 -7579\n\t\tmu 0 4 3813 3827 3837 3828\n\t\tf 4 -7595 7595 7596 -7581\n\t\tmu 0 4 3828 3837 3843 3838\n\t\tf 4 -7597 7597 7598 -7583\n\t\tmu 0 4 353 354 291 290\n\t\tf 4 -7599 7599 7600 -7585\n\t\tmu 0 4 290 291 222 221\n\t\tf 4 -7601 7601 7602 -7587\n\t\tmu 0 4 221 222 157 156\n\t\tf 4 -7603 7603 7604 -7589\n\t\tmu 0 4 156 157 98 97\n\t\tf 4 -7605 7605 -279 -7591\n\t\tmu 0 4 97 98 53 52\n\t\tf 4 -442 7606 7607 7608\n\t\tmu 0 4 107 99 158 166\n\t\tf 4 -7608 7609 7610 7611\n\t\tmu 0 4 166 158 223 231\n\t\tf 4 -7611 7612 7613 7614\n\t\tmu 0 4 231 223 292 300\n\t\tf 4 -7614 7615 7616 7617\n\t\tmu 0 4 300 292 355 363\n\t\tf 4 -7617 7618 7619 7620\n\t\tmu 0 4 363 355 405 412\n\t\tf 4 -7620 7621 7622 7623\n\t\tmu 0 4 3777 3783 3778 3770\n\t\tf 4 -7623 7624 7625 7626\n\t\tmu 0 4 3770 3778 3771 3763\n\t\tf 4 -7626 7627 -392 7628\n\t\tmu 0 4 3763 3771 3764 3755\n\t\tf 4 -380 7629 7630 7631\n\t\tmu 0 4 3744 3731 3743 3754\n\t\tf 4 -7631 7632 7633 7634\n\t\tmu 0 4 3754 3743 3753 3762\n\t\tf 4 -7634 7635 7636 7637\n\t\tmu 0 4 3762 3753 3761 3769\n\t\tf 4 -7637 7638 7639 7640\n\t\tmu 0 4 413 414 365 364\n\t\tf 4 -7640 7641 7642 7643\n\t\tmu 0 4 364 365 302 301\n\t\tf 4 -7643 7644 7645 7646\n\t\tmu 0 4 301 302 233 232\n\t\tf 4 -7646 7647 7648 7649\n\t\tmu 0 4 232 233 168 167\n\t\tf 4 -7649 7650 -457 7651\n\t\tmu 0 4 167 168 109 108\n\t\tf 4 -414 -7632 7652 -7629\n\t\tmu 0 4 3755 3744 3754 3763\n\t\tf 4 -7653 -7635 7653 -7627\n\t\tmu 0 4 3763 3754 3762 3770\n\t\tf 4 -7654 -7638 7654 -7624\n\t\tmu 0 4 3770 3762 3769 3777\n\t\tf 4 -7655 -7641 7655 -7621\n\t\tmu 0 4 412 413 364 363\n\t\tf 4 -7656 -7644 7656 -7618\n\t\tmu 0 4 363 364 301 300\n\t\tf 4 -7657 -7647 7657 -7615\n\t\tmu 0 4 300 301 232 231\n\t\tf 4 -7658 -7650 7658 -7612\n\t\tmu 0 4 231 232 167 166\n\t\tf 4 -7659 -7652 -451 -7609\n\t\tmu 0 4 166 167 108 107\n\t\tf 4 -420 7659 7660 -7630\n\t\tmu 0 4 3731 3717 3730 3743\n\t\tf 4 -7661 7661 7662 -7633\n\t\tmu 0 4 3743 3730 3742 3753\n\t\tf 4 -7663 7663 7664 -7636\n\t\tmu 0 4 3753 3742 3752 3761\n\t\tf 4 -7665 7665 7666 -7639\n\t\tmu 0 4 414 415 366 365\n\t\tf 4 -7667 7667 7668 -7642\n\t\tmu 0 4 365 366 303 302\n\t\tf 4 -7669 7669 7670 -7645\n\t\tmu 0 4 302 303 234 233\n\t\tf 4 -7671 7671 7672 -7648\n\t\tmu 0 4 233 234 169 168\n\t\tf 4 -7673 7673 -448 -7651\n\t\tmu 0 4 168 169 110 109\n\t\tf 4 -458 -7674 7674 7675\n\t\tmu 0 4 160 110 169 225\n\t\tf 4 -7675 -7672 7676 7677\n\t\tmu 0 4 225 169 234 294\n\t\tf 4 -7677 -7670 7678 7679\n\t\tmu 0 4 294 234 303 357\n\t\tf 4 -7679 -7668 7680 7681\n\t\tmu 0 4 357 303 366 407\n\t\tf 4 -7681 -7666 7682 7683\n\t\tmu 0 4 407 366 415 444\n\t\tf 4 -7683 -7664 7684 7685\n\t\tmu 0 4 3741 3752 3742 3729\n\t\tf 4 -7685 -7662 7686 7687\n\t\tmu 0 4 3729 3742 3730 3716\n\t\tf 4 -7687 -7660 -357 7688\n\t\tmu 0 4 3716 3730 3717 3707\n\t\tf 4 -390 7689 7690 -7689\n\t\tmu 0 4 3707 3702 3706 3716\n\t\tf 4 -7691 7691 7692 -7688\n\t\tmu 0 4 3716 3706 3715 3729\n\t\tf 4 -7693 7693 7694 -7686\n\t\tmu 0 4 3729 3715 3728 3741\n\t\tf 4 -7695 7695 7696 -7684\n\t\tmu 0 4 444 445 408 407\n\t\tf 4 -7697 7697 7698 -7682\n\t\tmu 0 4 407 408 358 357\n\t\tf 4 -7699 7699 7700 -7680\n\t\tmu 0 4 357 358 295 294\n\t\tf 4 -7701 7701 7702 -7678\n\t\tmu 0 4 294 295 226 225\n\t\tf 4 -7703 7703 -454 -7676\n\t\tmu 0 4 225 226 161 160\n\t\tf 4 -336 7704 7705 -7690\n\t\tmu 0 4 3702 3701 3705 3706\n\t\tf 4 -7706 7706 7707 -7692\n\t\tmu 0 4 3706 3705 3714 3715\n\t\tf 4 -7708 7708 7709 -7694\n\t\tmu 0 4 3715 3714 3727 3728\n\t\tf 4 -7710 7710 7711 -7696\n\t\tmu 0 4 445 446 409 408\n\t\tf 4 -7712 7712 7713 -7698\n\t\tmu 0 4 408 409 359 358\n\t\tf 4 -7714 7714 7715 -7700\n\t\tmu 0 4 358 359 296 295\n\t\tf 4 -7716 7716 7717 -7702\n\t\tmu 0 4 295 296 227 226\n\t\tf 4 -7718 7718 -462 -7704\n\t\tmu 0 4 226 227 162 161\n\t\tf 4 -407 7719 7720 -7705\n\t\tmu 0 4 3701 3711 3713 3705\n\t\tf 4 -7721 7721 7722 -7707\n\t\tmu 0 4 3705 3713 3726 3714\n\t\tf 4 -7723 7723 7724 -7709\n\t\tmu 0 4 3714 3726 3740 3727\n\t\tf 4 -7725 7725 7726 -7711\n\t\tmu 0 4 446 447 410 409\n\t\tf 4 -7727 7727 7728 -7713\n\t\tmu 0 4 409 410 360 359\n\t\tf 4 -7729 7729 7730 -7715\n\t\tmu 0 4 359 360 297 296\n\t\tf 4 -7731 7731 7732 -7717\n\t\tmu 0 4 296 297 228 227\n\t\tf 4 -7733 7733 -464 -7719\n\t\tmu 0 4 227 228 163 162\n\t\tf 4 -401 7734 7735 7736\n\t\tmu 0 4 4844 4836 4843 4851\n\t\tf 4 -7736 7737 7738 7739\n\t\tmu 0 4 4851 4843 4850 4856\n\t\tf 4 -7739 7740 7741 7742\n\t\tmu 0 4 4856 4850 4855 4859\n\t\tf 4 -7742 7743 7744 7745\n\t\tmu 0 4 448 462 439 411\n\t\tf 4 -7745 7746 7747 7748\n\t\tmu 0 4 411 439 395 361\n\t\tf 4 -7748 7749 7750 7751\n\t\tmu 0 4 361 395 337 298\n\t\tf 4 -7751 7752 7753 7754\n\t\tmu 0 4 298 337 270 229\n\t\tf 4 -7754 7755 -460 7756\n\t\tmu 0 4 229 270 201 164\n\t\tf 4 -370 7757 7758 7759\n\t\tmu 0 4 4818 4811 4817 4826\n\t\tf 4 -7759 7760 7761 7762\n\t\tmu 0 4 4826 4817 4825 4834\n\t\tf 4 -7762 7763 7764 7765\n\t\tmu 0 4 4834 4825 4833 4841\n\t\tf 4 -7765 7766 7767 7768\n\t\tmu 0 4 441 442 398 397\n\t\tf 4 -7768 7769 7770 7771\n\t\tmu 0 4 397 398 340 339\n\t\tf 4 -7771 7772 7773 7774\n\t\tmu 0 4 339 340 273 272\n\t\tf 4 -7774 7775 7776 7777\n\t\tmu 0 4 272 273 204 203\n\t\tf 4 -7777 7778 -472 7779\n\t\tmu 0 4 203 204 139 138\n\t\tf 4 -422 7780 7781 -7735\n\t\tmu 0 4 4836 4827 4835 4843\n\t\tf 4 -7782 7782 7783 -7738\n\t\tmu 0 4 4843 4835 4842 4850\n\t\tf 4 -7784 7784 7785 -7741\n\t\tmu 0 4 4850 4842 4849 4855\n\t\tf 4 -7786 7786 7787 -7744\n\t\tmu 0 4 462 463 440 439\n\t\tf 4 -7788 7788 7789 -7747\n\t\tmu 0 4 439 440 396 395\n\t\tf 4 -7790 7790 7791 -7750\n\t\tmu 0 4 395 396 338 337\n\t\tf 4 -7792 7792 7793 -7753\n\t\tmu 0 4 337 338 271 270\n\t\tf 4 -7794 7794 -466 -7756\n\t\tmu 0 4 270 271 202 201\n\t\tf 4 -398 -7760 7795 -7781\n\t\tmu 0 4 4827 4818 4826 4835\n\t\tf 4 -7796 -7763 7796 -7783\n\t\tmu 0 4 4835 4826 4834 4842\n\t\tf 4 -7797 -7766 7797 -7785\n\t\tmu 0 4 4842 4834 4841 4849\n\t\tf 4 -7798 -7769 7798 -7787\n\t\tmu 0 4 463 441 397 440\n\t\tf 4 -7799 -7772 7799 -7789\n\t\tmu 0 4 440 397 339 396\n\t\tf 4 -7800 -7775 7800 -7791\n\t\tmu 0 4 396 339 272 338\n\t\tf 4 -7801 -7778 7801 -7793\n\t\tmu 0 4 338 272 203 271\n\t\tf 4 -7802 -7780 -470 -7795\n\t\tmu 0 4 271 203 138 202\n\t\tf 4 -346 -7540 7802 7803\n\t\tmu 0 4 3795 3790 3794 3804\n\t\tf 4 -7803 -7543 7804 7805\n\t\tmu 0 4 3804 3794 3803 3817\n\t\tf 4 -7805 -7546 7806 7807\n\t\tmu 0 4 3817 3803 3816 3830\n\t\tf 4 -7807 -7549 7808 7809\n\t\tmu 0 4 286 287 218 217\n\t\tf 4 -7809 -7552 7810 7811\n\t\tmu 0 4 217 218 153 152\n\t\tf 4 -7811 -7555 7812 7813\n\t\tmu 0 4 152 153 94 93\n\t\tf 4 -7813 -7558 7814 7815\n\t\tmu 0 4 93 94 49 48\n\t\tf 4 -7815 -7560 -437 7816\n\t\tmu 0 4 48 49 19 18\n\t\tf 4 -405 -7804 7817 7818\n\t\tmu 0 4 3805 3795 3804 3818\n\t\tf 4 -7818 -7806 7819 7820\n\t\tmu 0 4 3818 3804 3817 3831\n\t\tf 4 -7820 -7808 7821 7822\n\t\tmu 0 4 3831 3817 3830 3839\n\t\tf 4 -7822 -7810 7823 7824\n\t\tmu 0 4 285 286 217 216\n\t\tf 4 -7824 -7812 7825 7826\n\t\tmu 0 4 216 217 152 151\n\t\tf 4 -7826 -7814 7827 7828\n\t\tmu 0 4 151 152 93 92\n\t\tf 4 -7828 -7816 7829 7830\n\t\tmu 0 4 92 93 48 47\n\t\tf 4 -7830 -7817 -480 7831\n\t\tmu 0 4 47 48 18 17\n\t\tf 4 -412 7832 7833 -7758\n\t\tmu 0 4 4811 4806 4810 4817\n\t\tf 4 -7834 7834 7835 -7761\n\t\tmu 0 4 4817 4810 4816 4825\n\t\tf 4 -7836 7836 7837 -7764\n\t\tmu 0 4 4825 4816 4824 4833\n\t\tf 4 -7838 7838 7839 -7767\n\t\tmu 0 4 442 443 399 398\n\t\tf 4 -7840 7840 7841 -7770\n\t\tmu 0 4 398 399 341 340\n\t\tf 4 -7842 7842 7843 -7773\n\t\tmu 0 4 340 341 274 273\n\t\tf 4 -7844 7844 7845 -7776\n\t\tmu 0 4 273 274 205 204\n\t\tf 4 -7846 7846 -474 -7779\n\t\tmu 0 4 204 205 140 139\n\t\tf 4 -353 7847 7848 -7833\n\t\tmu 0 4 4806 4805 4809 4810\n\t\tf 4 -7849 7849 7850 -7835\n\t\tmu 0 4 4810 4809 4815 4816\n\t\tf 4 -7851 7851 7852 -7837\n\t\tmu 0 4 4816 4815 4823 4824\n\t\tf 4 -7853 7853 7854 -7839\n\t\tmu 0 4 443 400 342 399\n\t\tf 4 -7855 7855 7856 -7841\n\t\tmu 0 4 399 342 275 341\n\t\tf 4 -7857 7857 7858 -7843\n\t\tmu 0 4 341 275 206 274\n\t\tf 4 -7859 7859 7860 -7845\n\t\tmu 0 4 274 206 141 205\n\t\tf 4 -7861 7861 -481 -7847\n\t\tmu 0 4 205 141 82 140\n\t\tf 4 -344 7862 7863 7864\n\t\tmu 0 4 3613 3623 3625 3617\n\t\tf 4 -7864 7865 7866 7867\n\t\tmu 0 4 3617 3625 3638 3626\n\t\tf 4 -7867 7868 7869 7870\n\t\tmu 0 4 3626 3638 3652 3639\n\t\tf 4 -7870 7871 7872 7873\n\t\tmu 0 4 350 351 284 283\n\t\tf 4 -7873 7874 7875 7876\n\t\tmu 0 4 283 284 215 214\n\t\tf 4 -7876 7877 7878 7879\n\t\tmu 0 4 214 215 150 149\n\t\tf 4 -7879 7880 7881 7882\n\t\tmu 0 4 149 150 91 90\n\t\tf 4 -7882 7883 -484 7884\n\t\tmu 0 4 90 91 46 45\n\t\tf 4 -293 -7865 7885 7886\n\t\tmu 0 4 3614 3613 3617 3618\n\t\tf 4 -7886 -7868 7887 7888\n\t\tmu 0 4 3618 3617 3626 3627\n\t\tf 4 -7888 -7871 7889 7890\n\t\tmu 0 4 3627 3626 3639 3640\n\t\tf 4 -7890 -7874 7891 7892\n\t\tmu 0 4 349 350 283 282\n\t\tf 4 -7892 -7877 7893 7894\n\t\tmu 0 4 282 283 214 213\n\t\tf 4 -7894 -7880 7895 7896\n\t\tmu 0 4 213 214 149 148\n\t\tf 4 -7896 -7883 7897 7898\n\t\tmu 0 4 148 149 90 89\n\t\tf 4 -7898 -7885 -489 7899\n\t\tmu 0 4 89 90 45 44\n\t\tf 4 -416 7900 7901 7902\n\t\tmu 0 4 3676 3667 3675 3683\n\t\tf 4 -7902 7903 7904 7905\n\t\tmu 0 4 3683 3675 3682 3690\n\t\tf 4 -7905 7906 7907 7908\n\t\tmu 0 4 3690 3682 3689 3695\n\t\tf 4 -7908 7909 7910 7911\n\t\tmu 0 4 401 402 344 343\n\t\tf 4 -7911 7912 7913 7914\n\t\tmu 0 4 343 344 277 276\n\t\tf 4 -7914 7915 7916 7917\n\t\tmu 0 4 276 277 208 207\n\t\tf 4 -7917 7918 7919 7920\n\t\tmu 0 4 207 208 143 142\n\t\tf 4 -7920 7921 -491 7922\n\t\tmu 0 4 142 143 84 83\n\t\tf 4 -410 -7887 7923 7924\n\t\tmu 0 4 3619 3614 3618 3628\n\t\tf 4 -7924 -7889 7925 7926\n\t\tmu 0 4 3628 3618 3627 3641\n\t\tf 4 -7926 -7891 7927 7928\n\t\tmu 0 4 3641 3627 3640 3653\n\t\tf 4 -7928 -7893 7929 7930\n\t\tmu 0 4 348 349 282 281\n\t\tf 4 -7930 -7895 7931 7932\n\t\tmu 0 4 281 282 213 212\n\t\tf 4 -7932 -7897 7933 7934\n\t\tmu 0 4 212 213 148 147\n\t\tf 4 -7934 -7899 7935 7936\n\t\tmu 0 4 147 148 89 88\n\t\tf 4 -7936 -7900 -494 7937\n\t\tmu 0 4 88 89 44 43\n\t\tf 4 -395 7938 7939 -7901\n\t\tmu 0 4 3667 3656 3666 3675\n\t\tf 4 -7940 7940 7941 -7904\n\t\tmu 0 4 3675 3666 3674 3682\n\t\tf 4 -7942 7942 7943 -7907\n\t\tmu 0 4 3682 3674 3681 3689\n\t\tf 4 -7944 7944 7945 -7910\n\t\tmu 0 4 402 403 345 344\n\t\tf 4 -7946 7946 7947 -7913\n\t\tmu 0 4 344 345 278 277\n\t\tf 4 -7948 7948 7949 -7916\n\t\tmu 0 4 277 278 209 208\n\t\tf 4 -7950 7950 7951 -7919\n\t\tmu 0 4 208 209 144 143\n\t\tf 4 -7952 7952 -496 -7922\n\t\tmu 0 4 143 144 85 84\n\t\tf 4 -377 7953 7954 -7939\n\t\tmu 0 4 3656 3643 3655 3666\n\t\tf 4 -7955 7955 7956 -7941\n\t\tmu 0 4 3666 3655 3665 3674\n\t\tf 4 -7957 7957 7958 -7943\n\t\tmu 0 4 3674 3665 3673 3681\n\t\tf 4 -7959 7959 7960 -7945\n\t\tmu 0 4 403 404 346 345\n\t\tf 4 -7961 7961 7962 -7947\n\t\tmu 0 4 345 346 279 278\n\t\tf 4 -7963 7963 7964 -7949\n\t\tmu 0 4 278 279 210 209\n\t\tf 4 -7965 7965 7966 -7951\n\t\tmu 0 4 209 210 145 144\n\t\tf 4 -7967 7967 -504 -7953\n\t\tmu 0 4 144 145 86 85\n\t\tf 4 -301 7968 7969 -7954\n\t\tmu 0 4 3643 3629 3642 3655\n\t\tf 4 -7970 7970 7971 -7956\n\t\tmu 0 4 3655 3642 3654 3665\n\t\tf 4 -7972 7972 7973 -7958\n\t\tmu 0 4 3665 3654 3664 3673\n\t\tf 4 -7974 7974 7975 -7960\n\t\tmu 0 4 404 347 280 346\n\t\tf 4 -7976 7976 7977 -7962\n\t\tmu 0 4 346 280 211 279\n\t\tf 4 -7978 7978 7979 -7964\n\t\tmu 0 4 279 211 146 210\n\t\tf 4 -7980 7980 7981 -7966\n\t\tmu 0 4 210 146 87 145\n\t\tf 4 -7982 7982 -502 -7968\n\t\tmu 0 4 145 87 42 86\n\t\tf 4 -499 -7983 7983 -7938\n\t\tmu 0 4 43 42 87 88\n\t\tf 4 -7984 -7981 7984 -7937\n\t\tmu 0 4 88 87 146 147\n\t\tf 4 -7985 -7979 7985 -7935\n\t\tmu 0 4 147 146 211 212\n\t\tf 4 -7986 -7977 7986 -7933\n\t\tmu 0 4 212 211 280 281\n\t\tf 4 -7987 -7975 7987 -7931\n\t\tmu 0 4 281 280 347 348\n\t\tf 4 -7988 -7973 7988 -7929\n\t\tmu 0 4 3653 3664 3654 3641\n\t\tf 4 -7989 -7971 7989 -7927\n\t\tmu 0 4 3641 3654 3642 3628\n\t\tf 4 -7990 -7969 -297 -7925\n\t\tmu 0 4 3628 3642 3629 3619\n\t\tf 4 -364 -7628 7990 -7592\n\t\tmu 0 4 3772 3764 3771 3779\n\t\tf 4 -7991 -7625 7991 -7594\n\t\tmu 0 4 3779 3771 3778 3784\n\t\tf 4 -7992 -7622 7992 -7596\n\t\tmu 0 4 3784 3778 3783 3787\n\t\tf 4 -7993 -7619 7993 -7598\n\t\tmu 0 4 354 405 355 291\n\t\tf 4 -7994 -7616 7994 -7600\n\t\tmu 0 4 291 355 292 222\n\t\tf 4 -7995 -7613 7995 -7602\n\t\tmu 0 4 222 292 223 157\n\t\tf 4 -7996 -7610 7996 -7604\n\t\tmu 0 4 157 223 158 98\n\t\tf 4 -7997 -7607 -445 -7606\n\t\tmu 0 4 98 158 99 53\n\t\tf 4 -418 -7737 7997 -7720\n\t\tmu 0 4 3711 3723 3725 3713\n\t\tf 4 -7998 -7740 7998 -7722\n\t\tmu 0 4 3713 3725 3739 3726\n\t\tf 4 -7999 -7743 7999 -7724\n\t\tmu 0 4 3726 3739 3751 3740\n\t\tf 4 -8000 -7746 8000 -7726\n\t\tmu 0 4 447 448 411 410\n\t\tf 4 -8001 -7749 8001 -7728\n\t\tmu 0 4 410 411 361 360\n\t\tf 4 -8002 -7752 8002 -7730\n\t\tmu 0 4 360 361 298 297\n\t\tf 4 -8003 -7755 8003 -7732\n\t\tmu 0 4 297 298 229 228\n\t\tf 4 -8004 -7757 -468 -7734\n\t\tmu 0 4 228 229 164 163\n\t\tf 4 -340 -7819 8004 -7863\n\t\tmu 0 4 3623 3635 3637 3625\n\t\tf 4 -8005 -7821 8005 -7866\n\t\tmu 0 4 3625 3637 3651 3638\n\t\tf 4 -8006 -7823 8006 -7869\n\t\tmu 0 4 3638 3651 3663 3652\n\t\tf 4 -8007 -7825 8007 -7872\n\t\tmu 0 4 351 285 216 284\n\t\tf 4 -8008 -7827 8008 -7875\n\t\tmu 0 4 284 216 151 215\n\t\tf 4 -8009 -7829 8009 -7878\n\t\tmu 0 4 215 151 92 150\n\t\tf 4 -8010 -7831 8010 -7881\n\t\tmu 0 4 150 92 47 91\n\t\tf 4 -8011 -7832 -478 -7884\n\t\tmu 0 4 91 47 17 46\n\t\tf 4 -361 -7903 8011 -7848\n\t\tmu 0 4 3684 3676 3683 3691\n\t\tf 4 -8012 -7906 8012 -7850\n\t\tmu 0 4 3691 3683 3690 3696\n\t\tf 4 -8013 -7909 8013 -7852\n\t\tmu 0 4 3696 3690 3695 3699\n\t\tf 4 -8014 -7912 8014 -7854\n\t\tmu 0 4 400 401 343 342\n\t\tf 4 -8015 -7915 8015 -7856\n\t\tmu 0 4 342 343 276 275\n\t\tf 4 -8016 -7918 8016 -7858\n\t\tmu 0 4 275 276 207 206\n\t\tf 4 -8017 -7921 8017 -7860\n\t\tmu 0 4 206 207 142 141\n\t\tf 4 -8018 -7923 -486 -7862\n\t\tmu 0 4 141 142 83 82\n\t\tf 4 -37 -6647 8018 -609\n\t\tmu 0 4 4103 4092 4101 4119\n\t\tf 4 -8019 -6650 8019 -613\n\t\tmu 0 4 4119 4101 4118 4142\n\t\tf 4 -8020 -6653 8020 -616\n\t\tmu 0 4 4142 4118 4141 4164\n\t\tf 4 -8021 -6656 8021 -619\n\t\tmu 0 4 1333 1282 1221 1283\n\t\tf 4 -8022 -6659 8022 -566\n\t\tmu 0 4 1283 1221 1166 1222\n\t\tf 4 -8023 -6662 8023 -557\n\t\tmu 0 4 1222 1166 1119 1167\n\t\tf 4 -8024 -6665 8024 -548\n\t\tmu 0 4 1167 1119 1080 1120\n\t\tf 4 -8025 -6667 -367 -536\n\t\tmu 0 4 1120 1080 1051 1081\n\t\tf 4 -128 -6669 8025 -7064\n\t\tmu 0 4 3887 3870 3886 3907\n\t\tf 4 -8026 -6671 8026 -7067\n\t\tmu 0 4 3907 3886 3906 3929\n\t\tf 4 -8027 -6673 8027 -7070\n\t\tmu 0 4 3929 3906 3928 3952\n\t\tf 4 -8028 -6675 8028 -7073\n\t\tmu 0 4 1118 1124 1084 1079\n\t\tf 4 -8029 -6677 8029 -7076\n\t\tmu 0 4 1079 1084 1054 1050\n\t\tf 4 -8030 -6679 8030 -7079\n\t\tmu 0 4 1050 1054 1037 1034\n\t\tf 4 -8031 -6681 8031 -7082\n\t\tmu 0 4 1034 1037 1024 1022\n\t\tf 4 -8032 -6682 -204 -7085\n\t\tmu 0 4 1022 1024 1016 1011\n\t\tf 4 -9 -6699 8032 -7235\n\t\tmu 0 4 1 0 7 8\n\t\tf 4 -8033 -6701 8033 -7237\n\t\tmu 0 4 8 7 27 28\n\t\tf 4 -8034 -6703 8034 -7239\n\t\tmu 0 4 28 27 64 65\n\t\tf 4 -8035 -6705 8035 -7241\n\t\tmu 0 4 65 64 116 117\n\t\tf 4 -8036 -6707 8036 -7243\n\t\tmu 0 4 117 116 176 177\n\t\tf 4 -8037 -6709 8037 -7245\n\t\tmu 0 4 3900 3879 3864 3878\n\t\tf 4 -8038 -6711 8038 -7247\n\t\tmu 0 4 3878 3864 3853 3863\n\t\tf 4 -8039 -6712 -469 -7249\n\t\tmu 0 4 3863 3853 3847 3852;\n\tsetAttr \".fc[4000:4008]\"\n\t\tf 4 -20 -6744 8039 -5901\n\t\tmu 0 4 4136 4135 4156 4157\n\t\tf 4 -8040 -6746 8040 -5905\n\t\tmu 0 4 4157 4156 4180 4181\n\t\tf 4 -8041 -6748 8041 -5908\n\t\tmu 0 4 4181 4180 4200 4201\n\t\tf 4 -8042 -6750 8042 -5911\n\t\tmu 0 4 388 389 332 331\n\t\tf 4 -8043 -6752 8043 -5858\n\t\tmu 0 4 331 332 266 265\n\t\tf 4 -8044 -6754 8044 -5849\n\t\tmu 0 4 265 266 198 197\n\t\tf 4 -8045 -6756 8045 -5840\n\t\tmu 0 4 197 198 134 133\n\t\tf 4 -8046 -6757 -134 -5828\n\t\tmu 0 4 133 134 78 77\n\t\tf 4 -7561 -4 -6149 -375\n\t\tmu 0 4 3799 3789 3792 3800;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"6E97A509-4AF1-9FAA-C075-3EAEDFD1DB56\";\n\tsetAttr \".t\" -type \"double3\" 6.2759949432886923 8.2562957178063208 5.538979886436616 ;\n\tsetAttr \".r\" -type \"double3\" -42.19974600486826 46.200000000000067 2.2976132695769596e-15 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"3A9A8563-4E7C-7AAB-BA25-BDB31FEFDA97\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 10.802603684396272;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.5 0.99999988079071045 -1.1920928955078125e-07 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"02974D5C-438D-9FD1-3F41-57BD798F63D5\";\n\tsetAttr -s 6 \".lnk\";\n\tsetAttr -s 6 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"5C84B562-4436-CAE6-60B5-D6BC6E1946CF\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"AF80A9AB-4CA0-64CE-5476-66BD6F18736F\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"0B7DD254-42AC-0473-7420-76B724F3CB06\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"ACC974D7-479D-0951-16D3-EB9D8126CD3A\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"3B055FEF-4E47-5B31-A8D9-E6BAB3FB4B50\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"ADB67A05-48B0-5365-362C-C59134C2F4AE\";\n\tsetAttr \".g\" yes;\ncreateNode animCurveUA -n \"LOShape_tangentSmoothingAngle\";\n\trename -uid \"CE367D52-482C-FB20-D520-939897C3F911\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  180 180;\ncreateNode unitConversion -n \"unitConversion1\";\n\trename -uid \"5C93CCAF-451D-7D79-4BF4-92B7852E7033\";\n\tsetAttr \".cf\" 57.295779513082323;\ncreateNode animCurveUA -n \"LOShape_tangentSmoothingAngle1\";\n\trename -uid \"55F0B0CF-40E2-0849-D55E-CE840AC8F910\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  134.5054931640625 180;\ncreateNode unitConversion -n \"unitConversion2\";\n\trename -uid \"7BE496C2-467A-ECAB-F9FE-F18ED796FA87\";\n\tsetAttr \".cf\" 57.295779513082323;\ncreateNode nodeGraphEditorInfo -n \"MayaNodeEditorSavedTabsInfo\";\n\trename -uid \"DAAB7A4C-42DF-AFF5-3090-AB8950D55B56\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -507.72114457932474 -726.14835872023787 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 495.40714686013257 101.33490114421717 ;\n\tsetAttr \".tgi[0].ni[0].x\" -102.85713958740234;\n\tsetAttr \".tgi[0].ni[0].y\" 44.285713195800781;\n\tsetAttr \".tgi[0].ni[0].nvs\" 20050;\ncreateNode lambert -n \"surfaceSamplingEnvelopeShader\";\n\trename -uid \"58450C19-4F0D-09C2-972A-29ADA85AD11F\";\n\tsetAttr \".c\" -type \"float3\" 1 0.5 0.5 ;\n\tsetAttr \".it\" -type \"float3\" 0.25 0.25 0.25 ;\ncreateNode shadingEngine -n \"surfaceSamplingEnvelopeShaderSG\";\n\trename -uid \"7527CA41-4E9F-440C-D16D-26AF290A1D19\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"9C849DEA-451D-FC57-AEBD-6E93DAD6036F\";\ncreateNode GLSLShader -n \"GLSL_PBR_Shader\";\n\trename -uid \"A83DA730-4D91-1876-C551-15A14C515CFE\";\n\taddAttr -ci true -sn \"Light_0_use_implicit_lighting\" -ln \"Light_0_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_0_connected_light\" -ln \"Light_0_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_1_use_implicit_lighting\" -ln \"Light_1_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_1_connected_light\" -ln \"Light_1_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_2_use_implicit_lighting\" -ln \"Light_2_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_2_connected_light\" -ln \"Light_2_connected_light\" \n\t\t-at \"message\";\n\taddAttr -s false -is true -ci true -k true -sn \"te\" -ln \"techniqueEnum\" -nn \"Technique\" \n\t\t-min 0 -max 1 -en \"Solid:Transparent\" -at \"enum\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Name\" -ln \"u_LightColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Type\" -ln \"u_LightColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_LightColor\" -ln \"u_LightColor\" -nn \"Light Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_LightColorR\" -ln \"u_LightColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorG\" -ln \"u_LightColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorB\" -ln \"u_LightColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Name\" -ln \"u_LightIntensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Type\" -ln \"u_LightIntensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightIntensity\" -ln \"u_LightIntensity\" -nn \"Light Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 10 -smn 0 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Name\" -ln \"u_LightRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Type\" -ln \"u_LightRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightRotation\" -ln \"u_LightRotation\" -nn \"Light rotation (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 75 -min 0 -max 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Name\" -ln \"u_LightPitch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Type\" -ln \"u_LightPitch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightPitch\" -ln \"u_LightPitch\" -nn \"Light pitch (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 40 -min -90 -max 90 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Name\" -ln \"u_BaseColorTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Type\" -ln \"u_BaseColorTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorTexture\" -ln \"u_BaseColorTexture\" \n\t\t-nn \"Base color map (sRGB)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureR\" -ln \"u_BaseColorTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureG\" -ln \"u_BaseColorTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureB\" -ln \"u_BaseColorTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Name\" -ln \"u_BaseColorFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Type\" -ln \"u_BaseColorFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactor\" -ln \"u_BaseColorFactor\" -nn \"Base color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorFactorRGB\" -ln \"u_BaseColorFactorRGB\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_BaseColorFactor\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorR\" -ln \"u_BaseColorFactorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorG\" -ln \"u_BaseColorFactorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorB\" -ln \"u_BaseColorFactorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorA\" -ln \"u_BaseColorFactorA\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactor\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Name\" -ln \"u_MetallicTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Type\" -ln \"u_MetallicTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_MetallicTexture\" -ln \"u_MetallicTexture\" -nn \"Metallic map (B,LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_MetallicTextureR\" -ln \"u_MetallicTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureG\" -ln \"u_MetallicTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureB\" -ln \"u_MetallicTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Name\" -ln \"u_MetallicStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Type\" -ln \"u_MetallicStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_MetallicStrength\" -ln \"u_MetallicStrength\" -nn \"Metallic strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Name\" -ln \"u_RoughnessTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Type\" -ln \"u_RoughnessTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_RoughnessTexture\" -ln \"u_RoughnessTexture\" \n\t\t-nn \"Roughness map (G,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureR\" -ln \"u_RoughnessTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureG\" -ln \"u_RoughnessTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureB\" -ln \"u_RoughnessTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Name\" -ln \"u_RoughnessStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Type\" -ln \"u_RoughnessStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessStrength\" -ln \"u_RoughnessStrength\" -nn \"Roughness strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Name\" -ln \"u_OcclusionTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Type\" -ln \"u_OcclusionTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_OcclusionTexture\" -ln \"u_OcclusionTexture\" \n\t\t-nn \"Occlusion map (R,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureR\" -ln \"u_OcclusionTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureG\" -ln \"u_OcclusionTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureB\" -ln \"u_OcclusionTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Name\" -ln \"u_OcclusionStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Type\" -ln \"u_OcclusionStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_OcclusionStrength\" -ln \"u_OcclusionStrength\" -nn \"Occlusion strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Name\" -ln \"u_NormalTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Type\" -ln \"u_NormalTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_NormalTexture\" -ln \"u_NormalTexture\" -nn \"Normal map (LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_NormalTextureR\" -ln \"u_NormalTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureG\" -ln \"u_NormalTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureB\" -ln \"u_NormalTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Name\" -ln \"u_NormalScale_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Type\" -ln \"u_NormalScale_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_NormalScale\" -ln \"u_NormalScale\" -nn \"Normal scale\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Name\" -ln \"u_EmissiveTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Type\" -ln \"u_EmissiveTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveTexture\" -ln \"u_EmissiveTexture\" -nn \"Emissive map (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureR\" -ln \"u_EmissiveTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureG\" -ln \"u_EmissiveTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureB\" -ln \"u_EmissiveTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Name\" -ln \"u_EmissiveColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Type\" -ln \"u_EmissiveColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveColor\" -ln \"u_EmissiveColor\" -nn \"Emissive color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveColorR\" -ln \"u_EmissiveColorR\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorG\" -ln \"u_EmissiveColorG\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorB\" -ln \"u_EmissiveColorB\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Name\" -ln \"u_DiffuseEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Type\" -ln \"u_DiffuseEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_DiffuseEnvTexture\" -ln \"u_DiffuseEnvTexture\" \n\t\t-nn \"Diffuse env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureR\" -ln \"u_DiffuseEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureG\" -ln \"u_DiffuseEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureB\" -ln \"u_DiffuseEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Name\" -ln \"u_SpecularEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Type\" -ln \"u_SpecularEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_SpecularEnvTexture\" -ln \"u_SpecularEnvTexture\" \n\t\t-nn \"Specular env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureR\" -ln \"u_SpecularEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureG\" -ln \"u_SpecularEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureB\" -ln \"u_SpecularEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Name\" -ln \"u_brdfTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Type\" -ln \"u_brdfTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_brdfTexture\" -ln \"u_brdfTexture\" -nn \"BRDF LUT (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_brdfTextureR\" -ln \"u_brdfTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureG\" -ln \"u_brdfTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureB\" -ln \"u_brdfTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Name\" -ln \"u_UseMeshTangents_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Type\" -ln \"u_UseMeshTangents_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UseMeshTangents\" -ln \"u_UseMeshTangents\" -nn \"Use mesh tangents?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Name\" -ln \"u_ScaleDiffBaseMR_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Type\" -ln \"u_ScaleDiffBaseMR_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMR\" -ln \"u_ScaleDiffBaseMR\" -nn \"Scale Diff Base MR\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRXYZ\" -ln \"u_ScaleDiffBaseMRXYZ\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_ScaleDiffBaseMR\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRX\" -ln \"u_ScaleDiffBaseMRX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRY\" -ln \"u_ScaleDiffBaseMRY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRZ\" -ln \"u_ScaleDiffBaseMRZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRW\" -ln \"u_ScaleDiffBaseMRW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMR\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Name\" -ln \"u_ScaleFGDSpec_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Type\" -ln \"u_ScaleFGDSpec_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpec\" -ln \"u_ScaleFGDSpec\" -nn \"Scale FGD Spec\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecXYZ\" -ln \"u_ScaleFGDSpecXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleFGDSpec\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecX\" -ln \"u_ScaleFGDSpecX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecY\" -ln \"u_ScaleFGDSpecY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecZ\" -ln \"u_ScaleFGDSpecZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecW\" -ln \"u_ScaleFGDSpecW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpec\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Name\" -ln \"u_ScaleIBL_Occl_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Type\" -ln \"u_ScaleIBL_Occl_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_Occl\" -ln \"u_ScaleIBL_Occl\" -nn \"Scale IBL AO(w)\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclXYZ\" -ln \"u_ScaleIBL_OcclXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleIBL_Occl\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclX\" -ln \"u_ScaleIBL_OcclX\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclY\" -ln \"u_ScaleIBL_OcclY\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclZ\" -ln \"u_ScaleIBL_OcclZ\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclW\" -ln \"u_ScaleIBL_OcclW\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_Occl\";\n\taddAttr -ci true -sn \"Position\" -ln \"Position\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Position_Name\" -ln \"Position_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"Position_Source\" -ln \"Position_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -sn \"Position_DefaultTexture\" -ln \"Position_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Position\";\n\taddAttr -ci true -sn \"Normal\" -ln \"Normal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Normal_Name\" -ln \"Normal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Source\" -ln \"Normal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -sn \"Normal_DefaultTexture\" -ln \"Normal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Normal\";\n\taddAttr -ci true -sn \"Tangent\" -ln \"Tangent\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Tangent_Name\" -ln \"Tangent_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"Tangent_Source\" -ln \"Tangent_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -sn \"Tangent_DefaultTexture\" -ln \"Tangent_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Tangent\";\n\taddAttr -ci true -sn \"Binormal\" -ln \"Binormal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Binormal_Name\" -ln \"Binormal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -h true -sn \"Binormal_Source\" -ln \"Binormal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -sn \"Binormal_DefaultTexture\" -ln \"Binormal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Binormal\";\n\taddAttr -ci true -sn \"TexCoord0\" -ln \"TexCoord0\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Name\" -ln \"TexCoord0_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Source\" -ln \"TexCoord0_Source\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -sn \"TexCoord0_DefaultTexture\" -ln \"TexCoord0_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Name\" -ln \"u_IsDoubleSided_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Type\" -ln \"u_IsDoubleSided_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsDoubleSided\" -ln \"u_IsDoubleSided\" -nn \"Double sided material?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Name\" -ln \"u_RoughnessOffset_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Type\" -ln \"u_RoughnessOffset_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessOffset\" -ln \"u_RoughnessOffset\" -nn \"Roughness offset\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 12 -smn 0 -smx 12 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Name\" -ln \"u_BurleyFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Type\" -ln \"u_BurleyFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BurleyFactor\" -ln \"u_BurleyFactor\" -nn \"Burley factor\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Name\" -ln \"u_UndoEdgeStretch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Type\" -ln \"u_UndoEdgeStretch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UndoEdgeStretch\" -ln \"u_UndoEdgeStretch\" -nn \"Undo edge stretch?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Name\" -ln \"u_IsEmissiveInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Type\" -ln \"u_IsEmissiveInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEmissiveInsRGB\" -ln \"u_IsEmissiveInsRGB\" -nn \"sRGB emissive?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Name\" -ln \"u_EnvRotationAngle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Type\" -ln \"u_EnvRotationAngle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_EnvRotationAngle\" -ln \"u_EnvRotationAngle\" -nn \"Environment Rotation\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Name\" -ln \"u_FlipEnvMapZ_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Type\" -ln \"u_FlipEnvMapZ_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_FlipEnvMapZ\" -ln \"u_FlipEnvMapZ\" -nn \"Flip environment Z?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Name\" -ln \"u_IsEnvMapInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Type\" -ln \"u_IsEnvMapInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInsRGB\" -ln \"u_IsEnvMapInsRGB\" -nn \"sRGB environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Name\" -ln \"u_IsEnvMapInRGBM_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Type\" -ln \"u_IsEnvMapInRGBM_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInRGBM\" -ln \"u_IsEnvMapInRGBM\" -nn \"RGBM environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Name\" -ln \"u_IsBRDFsSRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Type\" -ln \"u_IsBRDFsSRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBRDFsSRGB\" -ln \"u_IsBRDFsSRGB\" -nn \"sRGB BRDF table?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Name\" -ln \"u_IsBaseColorInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Type\" -ln \"u_IsBaseColorInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBaseColorInsRGB\" -ln \"u_IsBaseColorInsRGB\" -nn \"sRGB basecolor?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\tsetAttr \".vpar\" -type \"stringArray\" 5 \"Position\" \"Normal\" \"Tangent\" \"Binormal\" \"TexCoord0\"  ;\n\tsetAttr \".upar\" -type \"stringArray\" 34 \"u_LightColor\" \"u_LightIntensity\" \"u_LightRotation\" \"u_LightPitch\" \"u_BaseColorTexture\" \"u_BaseColorFactor\" \"u_MetallicTexture\" \"u_MetallicStrength\" \"u_RoughnessTexture\" \"u_RoughnessStrength\" \"u_OcclusionTexture\" \"u_OcclusionStrength\" \"u_NormalTexture\" \"u_NormalScale\" \"u_EmissiveTexture\" \"u_EmissiveColor\" \"u_DiffuseEnvTexture\" \"u_SpecularEnvTexture\" \"u_brdfTexture\" \"u_IsDoubleSided\" \"u_UseMeshTangents\" \"u_RoughnessOffset\" \"u_ScaleDiffBaseMR\" \"u_BurleyFactor\" \"u_ScaleFGDSpec\" \"u_UndoEdgeStretch\" \"u_ScaleIBL_Occl\" \"u_IsEmissiveInsRGB\" \"u_EnvRotationAngle\" \"u_FlipEnvMapZ\" \"u_IsEnvMapInsRGB\" \"u_IsEnvMapInRGBM\" \"u_IsBRDFsSRGB\" \"u_IsBaseColorInsRGB\"  ;\n\tsetAttr \".s\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/shaders/glTF_PBR.ogsfx\";\n\tsetAttr \".t\" -type \"string\" \"Solid\";\n\tsetAttr \".u_LightColor_Name\" -type \"string\" \"u_LightColor\";\n\tsetAttr \".u_LightColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_LightColor\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_LightIntensity_Name\" -type \"string\" \"u_LightIntensity\";\n\tsetAttr \".u_LightIntensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightIntensity\" 1;\n\tsetAttr \".u_LightRotation_Name\" -type \"string\" \"u_LightRotation\";\n\tsetAttr \".u_LightRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightRotation\" 75;\n\tsetAttr \".u_LightPitch_Name\" -type \"string\" \"u_LightPitch\";\n\tsetAttr \".u_LightPitch_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightPitch\" 40;\n\tsetAttr \".u_BaseColorTexture_Name\" -type \"string\" \"u_BaseColorTexture\";\n\tsetAttr \".u_BaseColorTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_BaseColorTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_BaseColorFactor_Name\" -type \"string\" \"u_BaseColorFactor\";\n\tsetAttr \".u_BaseColorFactor_Type\" -type \"string\" \"color4x1\";\n\tsetAttr \".u_BaseColorFactorRGB\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_BaseColorFactorA\" 1;\n\tsetAttr \".u_MetallicTexture_Name\" -type \"string\" \"u_MetallicTexture\";\n\tsetAttr \".u_MetallicTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_MetallicTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_MetallicStrength_Name\" -type \"string\" \"u_MetallicStrength\";\n\tsetAttr \".u_MetallicStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_MetallicStrength\" 1;\n\tsetAttr \".u_RoughnessTexture_Name\" -type \"string\" \"u_RoughnessTexture\";\n\tsetAttr \".u_RoughnessTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_RoughnessTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_RoughnessStrength_Name\" -type \"string\" \"u_RoughnessStrength\";\n\tsetAttr \".u_RoughnessStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_RoughnessStrength\" 0;\n\tsetAttr \".u_OcclusionTexture_Name\" -type \"string\" \"u_OcclusionTexture\";\n\tsetAttr \".u_OcclusionTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_OcclusionTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_OcclusionStrength_Name\" -type \"string\" \"u_OcclusionStrength\";\n\tsetAttr \".u_OcclusionStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_OcclusionStrength\" 1;\n\tsetAttr \".u_NormalTexture_Name\" -type \"string\" \"u_NormalTexture\";\n\tsetAttr \".u_NormalTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_NormalTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_NormalScale_Name\" -type \"string\" \"u_NormalScale\";\n\tsetAttr \".u_NormalScale_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_NormalScale\" 1;\n\tsetAttr \".u_EmissiveTexture_Name\" -type \"string\" \"u_EmissiveTexture\";\n\tsetAttr \".u_EmissiveTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_EmissiveTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_EmissiveColor_Name\" -type \"string\" \"u_EmissiveColor\";\n\tsetAttr \".u_EmissiveColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_EmissiveColor\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_DiffuseEnvTexture_Name\" -type \"string\" \"u_DiffuseEnvTexture\";\n\tsetAttr \".u_DiffuseEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_DiffuseEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_SpecularEnvTexture_Name\" -type \"string\" \"u_SpecularEnvTexture\";\n\tsetAttr \".u_SpecularEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_SpecularEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_brdfTexture_Name\" -type \"string\" \"u_brdfTexture\";\n\tsetAttr \".u_brdfTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_brdfTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_UseMeshTangents_Name\" -type \"string\" \"u_UseMeshTangents\";\n\tsetAttr \".u_UseMeshTangents_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UseMeshTangents\" yes;\n\tsetAttr \".u_ScaleDiffBaseMR_Name\" -type \"string\" \"u_ScaleDiffBaseMR\";\n\tsetAttr \".u_ScaleDiffBaseMR_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleDiffBaseMRXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleDiffBaseMRW\" 0;\n\tsetAttr \".u_ScaleFGDSpec_Name\" -type \"string\" \"u_ScaleFGDSpec\";\n\tsetAttr \".u_ScaleFGDSpec_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleFGDSpecXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleFGDSpecW\" 0;\n\tsetAttr \".u_ScaleIBL_Occl_Name\" -type \"string\" \"u_ScaleIBL_Occl\";\n\tsetAttr \".u_ScaleIBL_Occl_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleIBL_OcclXYZ\" -type \"float3\" 1 1 0 ;\n\tsetAttr \".u_ScaleIBL_OcclW\" 1;\n\tsetAttr \".Position_Name\" -type \"string\" \"Position\";\n\tsetAttr \".Position_Source\" -type \"string\" \"position\";\n\tsetAttr \".Normal_Name\" -type \"string\" \"Normal\";\n\tsetAttr \".Normal_Source\" -type \"string\" \"normal\";\n\tsetAttr \".Tangent_Name\" -type \"string\" \"Tangent\";\n\tsetAttr \".Tangent_Source\" -type \"string\" \"tangent:map1\";\n\tsetAttr \".Binormal_Name\" -type \"string\" \"Binormal\";\n\tsetAttr \".Binormal_Source\" -type \"string\" \"binormal:map1\";\n\tsetAttr \".TexCoord0_Name\" -type \"string\" \"TexCoord0\";\n\tsetAttr \".TexCoord0_Source\" -type \"string\" \"uv:map1\";\n\tsetAttr \".u_IsDoubleSided_Name\" -type \"string\" \"u_IsDoubleSided\";\n\tsetAttr \".u_IsDoubleSided_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsDoubleSided\" no;\n\tsetAttr \".u_RoughnessOffset_Name\" -type \"string\" \"u_RoughnessOffset\";\n\tsetAttr \".u_RoughnessOffset_Type\" -type \"string\" \"int\";\n\tsetAttr \".u_RoughnessOffset\" 0;\n\tsetAttr \".u_BurleyFactor_Name\" -type \"string\" \"u_BurleyFactor\";\n\tsetAttr \".u_BurleyFactor_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_BurleyFactor\" 0;\n\tsetAttr \".u_UndoEdgeStretch_Name\" -type \"string\" \"u_UndoEdgeStretch\";\n\tsetAttr \".u_UndoEdgeStretch_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UndoEdgeStretch\" no;\n\tsetAttr \".u_IsEmissiveInsRGB_Name\" -type \"string\" \"u_IsEmissiveInsRGB\";\n\tsetAttr \".u_IsEmissiveInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEmissiveInsRGB\" yes;\n\tsetAttr \".u_EnvRotationAngle_Name\" -type \"string\" \"u_EnvRotationAngle\";\n\tsetAttr \".u_EnvRotationAngle_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_EnvRotationAngle\" 0;\n\tsetAttr \".u_FlipEnvMapZ_Name\" -type \"string\" \"u_FlipEnvMapZ\";\n\tsetAttr \".u_FlipEnvMapZ_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_FlipEnvMapZ\" yes;\n\tsetAttr \".u_IsEnvMapInsRGB_Name\" -type \"string\" \"u_IsEnvMapInsRGB\";\n\tsetAttr \".u_IsEnvMapInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInsRGB\" no;\n\tsetAttr \".u_IsEnvMapInRGBM_Name\" -type \"string\" \"u_IsEnvMapInRGBM\";\n\tsetAttr \".u_IsEnvMapInRGBM_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInRGBM\" no;\n\tsetAttr \".u_IsBRDFsSRGB_Name\" -type \"string\" \"u_IsBRDFsSRGB\";\n\tsetAttr \".u_IsBRDFsSRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBRDFsSRGB\" no;\n\tsetAttr \".u_IsBaseColorInsRGB_Name\" -type \"string\" \"u_IsBaseColorInsRGB\";\n\tsetAttr \".u_IsBaseColorInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBaseColorInsRGB\" yes;\ncreateNode shadingEngine -n \"GLSLShader1SG\";\n\trename -uid \"4EE0CA71-4E0B-7B0C-254F-6095031017AA\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"706C3E98-416F-F2DF-2500-1A92DBD78272\";\ncreateNode file -n \"file1\";\n\trename -uid \"5ABB11F6-4D95-8A68-EBDF-2193D9A2BCB4\";\n\tsetAttr \".ail\" yes;\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//images/ExtremeNormalBakingTest_normal.png\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture1\";\n\trename -uid \"5B9C4307-43A2-503B-5D24-1CB25BA4B9D8\";\ncreateNode file -n \"file2\";\n\trename -uid \"982B60E8-49EF-950C-22D8-46B961EC0928\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_diffuse_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture2\";\n\trename -uid \"2AB7DD0A-4CA8-E0E9-ED17-60B9E2F22150\";\ncreateNode file -n \"file3\";\n\trename -uid \"6C3DF0C1-4D69-E81A-D4AA-81877FA5B85F\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_specular_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture3\";\n\trename -uid \"67527172-413A-2B90-71F7-9C8B572E6A03\";\ncreateNode file -n \"file4\";\n\trename -uid \"33523EDA-497D-CAB9-C036-DB995B883EA2\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/brdfLUT.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture4\";\n\trename -uid \"F68A3134-4D04-8867-6E4C-DD981877D25B\";\ncreateNode bump2d -n \"bump2d1\";\n\trename -uid \"0E43EF60-49DF-DBF7-CE83-8AA3C49273DA\";\n\tsetAttr \".bi\" 1;\n\tsetAttr \".vc1\" -type \"float3\" 0 5.9999998e-05 0 ;\n\tsetAttr \".vc2\" -type \"float3\" 9.9999997e-06 9.9999997e-06 0 ;\ncreateNode GLSLShader -n \"GLSLShader2\";\n\trename -uid \"94301892-47FC-D9FE-9EB9-2289BD4C7887\";\n\taddAttr -ci true -sn \"Light_0_use_implicit_lighting\" -ln \"Light_0_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_0_connected_light\" -ln \"Light_0_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_1_use_implicit_lighting\" -ln \"Light_1_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_1_connected_light\" -ln \"Light_1_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_2_use_implicit_lighting\" -ln \"Light_2_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_2_connected_light\" -ln \"Light_2_connected_light\" \n\t\t-at \"message\";\n\taddAttr -s false -is true -ci true -k true -sn \"te\" -ln \"techniqueEnum\" -nn \"Technique\" \n\t\t-min 0 -max 1 -en \"Solid:Transparent\" -at \"enum\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Name\" -ln \"u_LightColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Type\" -ln \"u_LightColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_LightColor\" -ln \"u_LightColor\" -nn \"Light Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_LightColorR\" -ln \"u_LightColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorG\" -ln \"u_LightColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorB\" -ln \"u_LightColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Name\" -ln \"u_LightIntensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Type\" -ln \"u_LightIntensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightIntensity\" -ln \"u_LightIntensity\" -nn \"Light Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 10 -smn 0 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Name\" -ln \"u_LightRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Type\" -ln \"u_LightRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightRotation\" -ln \"u_LightRotation\" -nn \"Light rotation (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 75 -min 0 -max 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Name\" -ln \"u_LightPitch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Type\" -ln \"u_LightPitch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightPitch\" -ln \"u_LightPitch\" -nn \"Light pitch (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 40 -min -90 -max 90 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Name\" -ln \"u_BaseColorTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Type\" -ln \"u_BaseColorTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorTexture\" -ln \"u_BaseColorTexture\" \n\t\t-nn \"Base color map (sRGB)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureR\" -ln \"u_BaseColorTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureG\" -ln \"u_BaseColorTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureB\" -ln \"u_BaseColorTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Name\" -ln \"u_BaseColorFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Type\" -ln \"u_BaseColorFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactor\" -ln \"u_BaseColorFactor\" -nn \"Base color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorFactorRGB\" -ln \"u_BaseColorFactorRGB\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_BaseColorFactor\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorR\" -ln \"u_BaseColorFactorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorG\" -ln \"u_BaseColorFactorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorB\" -ln \"u_BaseColorFactorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorA\" -ln \"u_BaseColorFactorA\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactor\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Name\" -ln \"u_MetallicTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Type\" -ln \"u_MetallicTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_MetallicTexture\" -ln \"u_MetallicTexture\" -nn \"Metallic map (B,LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_MetallicTextureR\" -ln \"u_MetallicTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureG\" -ln \"u_MetallicTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureB\" -ln \"u_MetallicTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Name\" -ln \"u_MetallicStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Type\" -ln \"u_MetallicStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_MetallicStrength\" -ln \"u_MetallicStrength\" -nn \"Metallic strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Name\" -ln \"u_RoughnessTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Type\" -ln \"u_RoughnessTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_RoughnessTexture\" -ln \"u_RoughnessTexture\" \n\t\t-nn \"Roughness map (G,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureR\" -ln \"u_RoughnessTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureG\" -ln \"u_RoughnessTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureB\" -ln \"u_RoughnessTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Name\" -ln \"u_RoughnessStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Type\" -ln \"u_RoughnessStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessStrength\" -ln \"u_RoughnessStrength\" -nn \"Roughness strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Name\" -ln \"u_OcclusionTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Type\" -ln \"u_OcclusionTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_OcclusionTexture\" -ln \"u_OcclusionTexture\" \n\t\t-nn \"Occlusion map (R,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureR\" -ln \"u_OcclusionTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureG\" -ln \"u_OcclusionTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureB\" -ln \"u_OcclusionTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Name\" -ln \"u_OcclusionStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Type\" -ln \"u_OcclusionStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_OcclusionStrength\" -ln \"u_OcclusionStrength\" -nn \"Occlusion strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Name\" -ln \"u_NormalTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Type\" -ln \"u_NormalTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_NormalTexture\" -ln \"u_NormalTexture\" -nn \"Normal map (LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_NormalTextureR\" -ln \"u_NormalTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureG\" -ln \"u_NormalTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureB\" -ln \"u_NormalTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Name\" -ln \"u_NormalScale_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Type\" -ln \"u_NormalScale_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_NormalScale\" -ln \"u_NormalScale\" -nn \"Normal scale\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Name\" -ln \"u_EmissiveTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Type\" -ln \"u_EmissiveTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveTexture\" -ln \"u_EmissiveTexture\" -nn \"Emissive map (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureR\" -ln \"u_EmissiveTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureG\" -ln \"u_EmissiveTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureB\" -ln \"u_EmissiveTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Name\" -ln \"u_EmissiveColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Type\" -ln \"u_EmissiveColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveColor\" -ln \"u_EmissiveColor\" -nn \"Emissive color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveColorR\" -ln \"u_EmissiveColorR\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorG\" -ln \"u_EmissiveColorG\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorB\" -ln \"u_EmissiveColorB\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Name\" -ln \"u_DiffuseEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Type\" -ln \"u_DiffuseEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_DiffuseEnvTexture\" -ln \"u_DiffuseEnvTexture\" \n\t\t-nn \"Diffuse env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureR\" -ln \"u_DiffuseEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureG\" -ln \"u_DiffuseEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureB\" -ln \"u_DiffuseEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Name\" -ln \"u_SpecularEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Type\" -ln \"u_SpecularEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_SpecularEnvTexture\" -ln \"u_SpecularEnvTexture\" \n\t\t-nn \"Specular env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureR\" -ln \"u_SpecularEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureG\" -ln \"u_SpecularEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureB\" -ln \"u_SpecularEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Name\" -ln \"u_brdfTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Type\" -ln \"u_brdfTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_brdfTexture\" -ln \"u_brdfTexture\" -nn \"BRDF LUT (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_brdfTextureR\" -ln \"u_brdfTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureG\" -ln \"u_brdfTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureB\" -ln \"u_brdfTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Name\" -ln \"u_UseMeshTangents_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Type\" -ln \"u_UseMeshTangents_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UseMeshTangents\" -ln \"u_UseMeshTangents\" -nn \"Use mesh tangents?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Name\" -ln \"u_ScaleDiffBaseMR_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Type\" -ln \"u_ScaleDiffBaseMR_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMR\" -ln \"u_ScaleDiffBaseMR\" -nn \"Scale Diff Base MR\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRXYZ\" -ln \"u_ScaleDiffBaseMRXYZ\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_ScaleDiffBaseMR\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRX\" -ln \"u_ScaleDiffBaseMRX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRY\" -ln \"u_ScaleDiffBaseMRY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRZ\" -ln \"u_ScaleDiffBaseMRZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRW\" -ln \"u_ScaleDiffBaseMRW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMR\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Name\" -ln \"u_ScaleFGDSpec_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Type\" -ln \"u_ScaleFGDSpec_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpec\" -ln \"u_ScaleFGDSpec\" -nn \"Scale FGD Spec\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecXYZ\" -ln \"u_ScaleFGDSpecXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleFGDSpec\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecX\" -ln \"u_ScaleFGDSpecX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecY\" -ln \"u_ScaleFGDSpecY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecZ\" -ln \"u_ScaleFGDSpecZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecW\" -ln \"u_ScaleFGDSpecW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpec\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Name\" -ln \"u_ScaleIBL_Occl_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Type\" -ln \"u_ScaleIBL_Occl_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_Occl\" -ln \"u_ScaleIBL_Occl\" -nn \"Scale IBL AO(w)\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclXYZ\" -ln \"u_ScaleIBL_OcclXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleIBL_Occl\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclX\" -ln \"u_ScaleIBL_OcclX\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclY\" -ln \"u_ScaleIBL_OcclY\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclZ\" -ln \"u_ScaleIBL_OcclZ\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclW\" -ln \"u_ScaleIBL_OcclW\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_Occl\";\n\taddAttr -ci true -sn \"Position\" -ln \"Position\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Position_Name\" -ln \"Position_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"Position_Source\" -ln \"Position_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -sn \"Position_DefaultTexture\" -ln \"Position_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Position\";\n\taddAttr -ci true -sn \"Normal\" -ln \"Normal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Normal_Name\" -ln \"Normal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Source\" -ln \"Normal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -sn \"Normal_DefaultTexture\" -ln \"Normal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Normal\";\n\taddAttr -ci true -sn \"Tangent\" -ln \"Tangent\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Tangent_Name\" -ln \"Tangent_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"Tangent_Source\" -ln \"Tangent_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -sn \"Tangent_DefaultTexture\" -ln \"Tangent_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Tangent\";\n\taddAttr -ci true -sn \"Binormal\" -ln \"Binormal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Binormal_Name\" -ln \"Binormal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -h true -sn \"Binormal_Source\" -ln \"Binormal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -sn \"Binormal_DefaultTexture\" -ln \"Binormal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Binormal\";\n\taddAttr -ci true -sn \"TexCoord0\" -ln \"TexCoord0\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Name\" -ln \"TexCoord0_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Source\" -ln \"TexCoord0_Source\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -sn \"TexCoord0_DefaultTexture\" -ln \"TexCoord0_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Name\" -ln \"u_IsDoubleSided_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Type\" -ln \"u_IsDoubleSided_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsDoubleSided\" -ln \"u_IsDoubleSided\" -nn \"Double sided material?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Name\" -ln \"u_RoughnessOffset_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Type\" -ln \"u_RoughnessOffset_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessOffset\" -ln \"u_RoughnessOffset\" -nn \"Roughness offset\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 12 -smn 0 -smx 12 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Name\" -ln \"u_BurleyFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Type\" -ln \"u_BurleyFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BurleyFactor\" -ln \"u_BurleyFactor\" -nn \"Burley factor\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Name\" -ln \"u_UndoEdgeStretch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Type\" -ln \"u_UndoEdgeStretch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UndoEdgeStretch\" -ln \"u_UndoEdgeStretch\" -nn \"Undo edge stretch?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Name\" -ln \"u_IsEmissiveInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Type\" -ln \"u_IsEmissiveInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEmissiveInsRGB\" -ln \"u_IsEmissiveInsRGB\" -nn \"sRGB emissive?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Name\" -ln \"u_EnvRotationAngle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Type\" -ln \"u_EnvRotationAngle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_EnvRotationAngle\" -ln \"u_EnvRotationAngle\" -nn \"Environment Rotation\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Name\" -ln \"u_FlipEnvMapZ_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Type\" -ln \"u_FlipEnvMapZ_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_FlipEnvMapZ\" -ln \"u_FlipEnvMapZ\" -nn \"Flip environment Z?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Name\" -ln \"u_IsEnvMapInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Type\" -ln \"u_IsEnvMapInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInsRGB\" -ln \"u_IsEnvMapInsRGB\" -nn \"sRGB environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Name\" -ln \"u_IsEnvMapInRGBM_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Type\" -ln \"u_IsEnvMapInRGBM_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInRGBM\" -ln \"u_IsEnvMapInRGBM\" -nn \"RGBM environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Name\" -ln \"u_IsBRDFsSRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Type\" -ln \"u_IsBRDFsSRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBRDFsSRGB\" -ln \"u_IsBRDFsSRGB\" -nn \"sRGB BRDF table?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Name\" -ln \"u_IsBaseColorInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Type\" -ln \"u_IsBaseColorInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBaseColorInsRGB\" -ln \"u_IsBaseColorInsRGB\" -nn \"sRGB basecolor?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\tsetAttr \".vpar\" -type \"stringArray\" 5 \"Position\" \"Normal\" \"Tangent\" \"Binormal\" \"TexCoord0\"  ;\n\tsetAttr \".upar\" -type \"stringArray\" 34 \"u_LightColor\" \"u_LightIntensity\" \"u_LightRotation\" \"u_LightPitch\" \"u_BaseColorTexture\" \"u_BaseColorFactor\" \"u_MetallicTexture\" \"u_MetallicStrength\" \"u_RoughnessTexture\" \"u_RoughnessStrength\" \"u_OcclusionTexture\" \"u_OcclusionStrength\" \"u_NormalTexture\" \"u_NormalScale\" \"u_EmissiveTexture\" \"u_EmissiveColor\" \"u_DiffuseEnvTexture\" \"u_SpecularEnvTexture\" \"u_brdfTexture\" \"u_IsDoubleSided\" \"u_UseMeshTangents\" \"u_RoughnessOffset\" \"u_ScaleDiffBaseMR\" \"u_BurleyFactor\" \"u_ScaleFGDSpec\" \"u_UndoEdgeStretch\" \"u_ScaleIBL_Occl\" \"u_IsEmissiveInsRGB\" \"u_EnvRotationAngle\" \"u_FlipEnvMapZ\" \"u_IsEnvMapInsRGB\" \"u_IsEnvMapInRGBM\" \"u_IsBRDFsSRGB\" \"u_IsBaseColorInsRGB\"  ;\n\tsetAttr \".s\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/shaders/glTF_PBR.ogsfx\";\n\tsetAttr \".t\" -type \"string\" \"Solid\";\n\tsetAttr \".u_LightColor_Name\" -type \"string\" \"u_LightColor\";\n\tsetAttr \".u_LightColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_LightColor\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_LightIntensity_Name\" -type \"string\" \"u_LightIntensity\";\n\tsetAttr \".u_LightIntensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightIntensity\" 1;\n\tsetAttr \".u_LightRotation_Name\" -type \"string\" \"u_LightRotation\";\n\tsetAttr \".u_LightRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightRotation\" 75;\n\tsetAttr \".u_LightPitch_Name\" -type \"string\" \"u_LightPitch\";\n\tsetAttr \".u_LightPitch_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightPitch\" 40;\n\tsetAttr \".u_BaseColorTexture_Name\" -type \"string\" \"u_BaseColorTexture\";\n\tsetAttr \".u_BaseColorTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_BaseColorTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_BaseColorFactor_Name\" -type \"string\" \"u_BaseColorFactor\";\n\tsetAttr \".u_BaseColorFactor_Type\" -type \"string\" \"color4x1\";\n\tsetAttr \".u_BaseColorFactorRGB\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_BaseColorFactorA\" 1;\n\tsetAttr \".u_MetallicTexture_Name\" -type \"string\" \"u_MetallicTexture\";\n\tsetAttr \".u_MetallicTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_MetallicTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_MetallicStrength_Name\" -type \"string\" \"u_MetallicStrength\";\n\tsetAttr \".u_MetallicStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_MetallicStrength\" 1;\n\tsetAttr \".u_RoughnessTexture_Name\" -type \"string\" \"u_RoughnessTexture\";\n\tsetAttr \".u_RoughnessTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_RoughnessTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_RoughnessStrength_Name\" -type \"string\" \"u_RoughnessStrength\";\n\tsetAttr \".u_RoughnessStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_RoughnessStrength\" 0;\n\tsetAttr \".u_OcclusionTexture_Name\" -type \"string\" \"u_OcclusionTexture\";\n\tsetAttr \".u_OcclusionTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_OcclusionTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_OcclusionStrength_Name\" -type \"string\" \"u_OcclusionStrength\";\n\tsetAttr \".u_OcclusionStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_OcclusionStrength\" 1;\n\tsetAttr \".u_NormalTexture_Name\" -type \"string\" \"u_NormalTexture\";\n\tsetAttr \".u_NormalTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_NormalTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_NormalScale_Name\" -type \"string\" \"u_NormalScale\";\n\tsetAttr \".u_NormalScale_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_NormalScale\" 1;\n\tsetAttr \".u_EmissiveTexture_Name\" -type \"string\" \"u_EmissiveTexture\";\n\tsetAttr \".u_EmissiveTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_EmissiveTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_EmissiveColor_Name\" -type \"string\" \"u_EmissiveColor\";\n\tsetAttr \".u_EmissiveColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_EmissiveColor\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_DiffuseEnvTexture_Name\" -type \"string\" \"u_DiffuseEnvTexture\";\n\tsetAttr \".u_DiffuseEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_DiffuseEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_SpecularEnvTexture_Name\" -type \"string\" \"u_SpecularEnvTexture\";\n\tsetAttr \".u_SpecularEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_SpecularEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_brdfTexture_Name\" -type \"string\" \"u_brdfTexture\";\n\tsetAttr \".u_brdfTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_brdfTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_UseMeshTangents_Name\" -type \"string\" \"u_UseMeshTangents\";\n\tsetAttr \".u_UseMeshTangents_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UseMeshTangents\" no;\n\tsetAttr \".u_ScaleDiffBaseMR_Name\" -type \"string\" \"u_ScaleDiffBaseMR\";\n\tsetAttr \".u_ScaleDiffBaseMR_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleDiffBaseMRXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleDiffBaseMRW\" 0;\n\tsetAttr \".u_ScaleFGDSpec_Name\" -type \"string\" \"u_ScaleFGDSpec\";\n\tsetAttr \".u_ScaleFGDSpec_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleFGDSpecXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleFGDSpecW\" 0;\n\tsetAttr \".u_ScaleIBL_Occl_Name\" -type \"string\" \"u_ScaleIBL_Occl\";\n\tsetAttr \".u_ScaleIBL_Occl_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleIBL_OcclXYZ\" -type \"float3\" 1 1 0 ;\n\tsetAttr \".u_ScaleIBL_OcclW\" 1;\n\tsetAttr \".Position_Name\" -type \"string\" \"Position\";\n\tsetAttr \".Position_Source\" -type \"string\" \"position\";\n\tsetAttr \".Normal_Name\" -type \"string\" \"Normal\";\n\tsetAttr \".Normal_Source\" -type \"string\" \"normal\";\n\tsetAttr \".Tangent_Name\" -type \"string\" \"Tangent\";\n\tsetAttr \".Tangent_Source\" -type \"string\" \"tangent:map1\";\n\tsetAttr \".Binormal_Name\" -type \"string\" \"Binormal\";\n\tsetAttr \".Binormal_Source\" -type \"string\" \"binormal:map1\";\n\tsetAttr \".TexCoord0_Name\" -type \"string\" \"TexCoord0\";\n\tsetAttr \".TexCoord0_Source\" -type \"string\" \"uv:map1\";\n\tsetAttr \".u_IsDoubleSided_Name\" -type \"string\" \"u_IsDoubleSided\";\n\tsetAttr \".u_IsDoubleSided_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsDoubleSided\" no;\n\tsetAttr \".u_RoughnessOffset_Name\" -type \"string\" \"u_RoughnessOffset\";\n\tsetAttr \".u_RoughnessOffset_Type\" -type \"string\" \"int\";\n\tsetAttr \".u_RoughnessOffset\" 0;\n\tsetAttr \".u_BurleyFactor_Name\" -type \"string\" \"u_BurleyFactor\";\n\tsetAttr \".u_BurleyFactor_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_BurleyFactor\" 0;\n\tsetAttr \".u_UndoEdgeStretch_Name\" -type \"string\" \"u_UndoEdgeStretch\";\n\tsetAttr \".u_UndoEdgeStretch_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UndoEdgeStretch\" no;\n\tsetAttr \".u_IsEmissiveInsRGB_Name\" -type \"string\" \"u_IsEmissiveInsRGB\";\n\tsetAttr \".u_IsEmissiveInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEmissiveInsRGB\" yes;\n\tsetAttr \".u_EnvRotationAngle_Name\" -type \"string\" \"u_EnvRotationAngle\";\n\tsetAttr \".u_EnvRotationAngle_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_EnvRotationAngle\" 0;\n\tsetAttr \".u_FlipEnvMapZ_Name\" -type \"string\" \"u_FlipEnvMapZ\";\n\tsetAttr \".u_FlipEnvMapZ_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_FlipEnvMapZ\" yes;\n\tsetAttr \".u_IsEnvMapInsRGB_Name\" -type \"string\" \"u_IsEnvMapInsRGB\";\n\tsetAttr \".u_IsEnvMapInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInsRGB\" no;\n\tsetAttr \".u_IsEnvMapInRGBM_Name\" -type \"string\" \"u_IsEnvMapInRGBM\";\n\tsetAttr \".u_IsEnvMapInRGBM_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInRGBM\" no;\n\tsetAttr \".u_IsBRDFsSRGB_Name\" -type \"string\" \"u_IsBRDFsSRGB\";\n\tsetAttr \".u_IsBRDFsSRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBRDFsSRGB\" no;\n\tsetAttr \".u_IsBaseColorInsRGB_Name\" -type \"string\" \"u_IsBaseColorInsRGB\";\n\tsetAttr \".u_IsBaseColorInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBaseColorInsRGB\" yes;\ncreateNode shadingEngine -n \"GLSLShader2SG\";\n\trename -uid \"F6CBDDE3-43A1-B911-B13D-BAB99FED35DC\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo3\";\n\trename -uid \"4C9D9C12-4E25-EAD6-EACF-F582748844C7\";\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"95CE6C44-4E28-FFFA-77BA-BA8A03B7C49D\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"all\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 1\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"all\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"all\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 1 -size 10 -divisions 4 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"08561F58-4853-A05E-496B-949BFCA8EE79\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode phong -n \"Material\";\n\trename -uid \"A3225620-426C-0834-4BF4-06A429CEB74C\";\n\tsetAttr \".c\" -type \"float3\" 0.80000001 0.80000001 0.80000001 ;\n\tsetAttr \".sc\" -type \"float3\" 0.25 0.25 0.25 ;\n\tsetAttr \".rfl\" 0;\n\tsetAttr \".rc\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".cp\" 9.6078433990478516;\ncreateNode shadingEngine -n \"CubeSG\";\n\trename -uid \"00FB02CC-4DA8-0AAC-A0F0-A29259A97C4E\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo4\";\n\trename -uid \"71748155-4101-A371-7D57-D38F82638587\";\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"AA33ABF2-4796-0E5C-E3E0-4A8685D23118\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 6 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 8 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderUtilityList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 5 \".u\";\nselect -ne :defaultRenderingList1;\nselect -ne :defaultTextureList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 4 \".tx\";\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"surfaceSamplingEnvelopeShaderSG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader1SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"CubeSG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"surfaceSamplingEnvelopeShaderSG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader1SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"CubeSG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"unitConversion1.o\" \"LOShape_tangentSmoothingAngle.i\";\nconnectAttr \"LOShape.tnt\" \"unitConversion1.i\";\nconnectAttr \"unitConversion2.o\" \"LOShape_tangentSmoothingAngle1.i\";\nconnectAttr \"LOShape.tnt\" \"unitConversion2.i\";\nconnectAttr \"LOShape.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[0].dn\";\nconnectAttr \"surfaceSamplingEnvelopeShader.oc\" \"surfaceSamplingEnvelopeShaderSG.ss\"\n\t\t;\nconnectAttr \"surfaceSamplingEnvelopeShaderSG.msg\" \"materialInfo1.sg\";\nconnectAttr \"surfaceSamplingEnvelopeShader.msg\" \"materialInfo1.m\";\nconnectAttr \"file1.oc\" \"GLSL_PBR_Shader.u_NormalTexture\";\nconnectAttr \"file2.oc\" \"GLSL_PBR_Shader.u_DiffuseEnvTexture\";\nconnectAttr \"file3.oc\" \"GLSL_PBR_Shader.u_SpecularEnvTexture\";\nconnectAttr \"file4.oc\" \"GLSL_PBR_Shader.u_brdfTexture\";\nconnectAttr \"GLSL_PBR_Shader.oc\" \"GLSLShader1SG.ss\";\nconnectAttr \"LOShape.iog\" \"GLSLShader1SG.dsm\" -na;\nconnectAttr \"GLSLShader1SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"GLSL_PBR_Shader.msg\" \"materialInfo2.m\";\nconnectAttr \"GLSL_PBR_Shader.msg\" \"materialInfo2.t\" -na;\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file1.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file1.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file1.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file1.ws\";\nconnectAttr \"place2dTexture1.c\" \"file1.c\";\nconnectAttr \"place2dTexture1.tf\" \"file1.tf\";\nconnectAttr \"place2dTexture1.rf\" \"file1.rf\";\nconnectAttr \"place2dTexture1.mu\" \"file1.mu\";\nconnectAttr \"place2dTexture1.mv\" \"file1.mv\";\nconnectAttr \"place2dTexture1.s\" \"file1.s\";\nconnectAttr \"place2dTexture1.wu\" \"file1.wu\";\nconnectAttr \"place2dTexture1.wv\" \"file1.wv\";\nconnectAttr \"place2dTexture1.re\" \"file1.re\";\nconnectAttr \"place2dTexture1.of\" \"file1.of\";\nconnectAttr \"place2dTexture1.r\" \"file1.ro\";\nconnectAttr \"place2dTexture1.n\" \"file1.n\";\nconnectAttr \"place2dTexture1.vt1\" \"file1.vt1\";\nconnectAttr \"place2dTexture1.vt2\" \"file1.vt2\";\nconnectAttr \"place2dTexture1.vt3\" \"file1.vt3\";\nconnectAttr \"place2dTexture1.vc1\" \"file1.vc1\";\nconnectAttr \"place2dTexture1.o\" \"file1.uv\";\nconnectAttr \"place2dTexture1.ofs\" \"file1.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file2.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file2.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file2.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file2.ws\";\nconnectAttr \"place2dTexture2.c\" \"file2.c\";\nconnectAttr \"place2dTexture2.tf\" \"file2.tf\";\nconnectAttr \"place2dTexture2.rf\" \"file2.rf\";\nconnectAttr \"place2dTexture2.mu\" \"file2.mu\";\nconnectAttr \"place2dTexture2.mv\" \"file2.mv\";\nconnectAttr \"place2dTexture2.s\" \"file2.s\";\nconnectAttr \"place2dTexture2.wu\" \"file2.wu\";\nconnectAttr \"place2dTexture2.wv\" \"file2.wv\";\nconnectAttr \"place2dTexture2.re\" \"file2.re\";\nconnectAttr \"place2dTexture2.of\" \"file2.of\";\nconnectAttr \"place2dTexture2.r\" \"file2.ro\";\nconnectAttr \"place2dTexture2.n\" \"file2.n\";\nconnectAttr \"place2dTexture2.vt1\" \"file2.vt1\";\nconnectAttr \"place2dTexture2.vt2\" \"file2.vt2\";\nconnectAttr \"place2dTexture2.vt3\" \"file2.vt3\";\nconnectAttr \"place2dTexture2.vc1\" \"file2.vc1\";\nconnectAttr \"place2dTexture2.o\" \"file2.uv\";\nconnectAttr \"place2dTexture2.ofs\" \"file2.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file3.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file3.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file3.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file3.ws\";\nconnectAttr \"place2dTexture3.c\" \"file3.c\";\nconnectAttr \"place2dTexture3.tf\" \"file3.tf\";\nconnectAttr \"place2dTexture3.rf\" \"file3.rf\";\nconnectAttr \"place2dTexture3.mu\" \"file3.mu\";\nconnectAttr \"place2dTexture3.mv\" \"file3.mv\";\nconnectAttr \"place2dTexture3.s\" \"file3.s\";\nconnectAttr \"place2dTexture3.wu\" \"file3.wu\";\nconnectAttr \"place2dTexture3.wv\" \"file3.wv\";\nconnectAttr \"place2dTexture3.re\" \"file3.re\";\nconnectAttr \"place2dTexture3.of\" \"file3.of\";\nconnectAttr \"place2dTexture3.r\" \"file3.ro\";\nconnectAttr \"place2dTexture3.n\" \"file3.n\";\nconnectAttr \"place2dTexture3.vt1\" \"file3.vt1\";\nconnectAttr \"place2dTexture3.vt2\" \"file3.vt2\";\nconnectAttr \"place2dTexture3.vt3\" \"file3.vt3\";\nconnectAttr \"place2dTexture3.vc1\" \"file3.vc1\";\nconnectAttr \"place2dTexture3.o\" \"file3.uv\";\nconnectAttr \"place2dTexture3.ofs\" \"file3.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file4.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file4.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file4.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file4.ws\";\nconnectAttr \"place2dTexture4.c\" \"file4.c\";\nconnectAttr \"place2dTexture4.tf\" \"file4.tf\";\nconnectAttr \"place2dTexture4.rf\" \"file4.rf\";\nconnectAttr \"place2dTexture4.mu\" \"file4.mu\";\nconnectAttr \"place2dTexture4.mv\" \"file4.mv\";\nconnectAttr \"place2dTexture4.s\" \"file4.s\";\nconnectAttr \"place2dTexture4.wu\" \"file4.wu\";\nconnectAttr \"place2dTexture4.wv\" \"file4.wv\";\nconnectAttr \"place2dTexture4.re\" \"file4.re\";\nconnectAttr \"place2dTexture4.of\" \"file4.of\";\nconnectAttr \"place2dTexture4.r\" \"file4.ro\";\nconnectAttr \"place2dTexture4.n\" \"file4.n\";\nconnectAttr \"place2dTexture4.vt1\" \"file4.vt1\";\nconnectAttr \"place2dTexture4.vt2\" \"file4.vt2\";\nconnectAttr \"place2dTexture4.vt3\" \"file4.vt3\";\nconnectAttr \"place2dTexture4.vc1\" \"file4.vc1\";\nconnectAttr \"place2dTexture4.o\" \"file4.uv\";\nconnectAttr \"place2dTexture4.ofs\" \"file4.fs\";\nconnectAttr \"file1.oa\" \"bump2d1.bv\";\nconnectAttr \"file2.oc\" \"GLSLShader2.u_DiffuseEnvTexture\";\nconnectAttr \"file3.oc\" \"GLSLShader2.u_SpecularEnvTexture\";\nconnectAttr \"file4.oc\" \"GLSLShader2.u_brdfTexture\";\nconnectAttr \"GLSLShader2.oc\" \"GLSLShader2SG.ss\";\nconnectAttr \"HIShape.iog\" \"GLSLShader2SG.dsm\" -na;\nconnectAttr \"GLSLShader2SG.msg\" \"materialInfo3.sg\";\nconnectAttr \"GLSLShader2.msg\" \"materialInfo3.m\";\nconnectAttr \"Material.oc\" \"CubeSG.ss\";\nconnectAttr \"CubeSG.msg\" \"materialInfo4.sg\";\nconnectAttr \"Material.msg\" \"materialInfo4.m\";\nconnectAttr \"surfaceSamplingEnvelopeShaderSG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader1SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"CubeSG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"surfaceSamplingEnvelopeShader.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"GLSL_PBR_Shader.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"GLSLShader2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"Material.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"place2dTexture1.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture2.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture3.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture4.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"bump2d1.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"file1.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file2.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file3.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file4.msg\" \":defaultTextureList1.tx\" -na;\n// End of ExtremeNormalBakingTest.ma\n"
  },
  {
    "path": "maya/scenes/FlatTetrahedron.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: FlatTetrahedron.ma\n//Last modified: Sun, Feb 03, 2019 11:49:53 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"8D64F57A-42D9-6117-25FD-C89FB2E0CD10\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0.40470267849811203 2.1059206350361372 -2.3967017841081351 ;\n\tsetAttr \".r\" -type \"double3\" -41.138352729611086 -186.19999999999473 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"59353843-4B1F-9C6E-2ECF-CC968828FA2E\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 3.2010734057461852;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.14433754980564117 0 -4.4703483581542969e-08 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"C352DCCA-48CF-E34F-EEDF-F2BB51E5DE29\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"9B13BA9D-4CC4-2ADA-FC54-8D8CC1577D23\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"F9825782-4FD6-13B1-2297-F6BBDA8DC6A3\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"AF3452AD-4B95-A466-B836-4A85BBDB3F19\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"E35B612A-4538-0992-AA0A-1D828E5EED2E\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"54559FDD-4D4A-4998-A2C2-E8ABED71785D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pPyramid1\";\n\trename -uid \"2E2DAA54-4557-5B1F-DAD3-9F8493341243\";\ncreateNode mesh -n \"pPyramidShape1\" -p \"pPyramid1\";\n\trename -uid \"47349536-4B6C-885A-102E-B2AE5FCA8311\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 8 \".uvst[0].uvsp[0:7]\" -type \"float2\" 0.375 0.033493623\n\t\t 0.375 0.46650636 0.75 0.25 0.25 0.5 0.41666669 0.5 0.58333337 0.5 0.75000006 0.5\n\t\t 0.5 1;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcol\" yes;\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".ccls\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clst[0].clsn\" -type \"string\" \"colorSet1\";\n\tsetAttr -s 12 \".clst[0].clsp[0:11]\"  0.26989999 0.2599 0.68400002 1\n\t\t 0.54930001 0.68400002 0.2599 1 0.26989999 0.2599 0.68400002 1 0.2599 0.68400002 0.44949999\n\t\t 1 0.2599 0.68400002 0.44949999 1 0.54930001 0.68400002 0.2599 1 0.26989999 0.2599\n\t\t 0.68400002 1 0.2599 0.68400002 0.44949999 1 0.54930001 0.68400002 0.2599 1 1 0.40400001\n\t\t 0.40400001 1 1 0.40400001 0.40400001 1 1 0.40400001 0.40400001 1;\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 4 \".vt[0:3]\"  -0.2886751 -0.40824831 -0.50000006 -0.28867516 -0.40824831 0.49999997\n\t\t 0.57735026 -0.40824831 0 0 0.40824831 0;\n\tsetAttr -s 6 \".ed[0:5]\"  0 1 0 1 2 0 2 0 0 0 3 0 1 3 0 2 3 0;\n\tsetAttr -s 12 \".n[0:11]\" -type \"float3\"  1e+20 1e+20 1e+20 1e+20 1e+20\n\t\t 1e+20 1e+20 1e+20 1e+20 1e+20 1e+20 1e+20 1e+20 1e+20 1e+20 1e+20 1e+20 1e+20 1e+20\n\t\t 1e+20 1e+20 1e+20 1e+20 1e+20 1e+20 1e+20 1e+20 1e+20 1e+20 1e+20 1e+20 1e+20 1e+20\n\t\t 1e+20 1e+20 1e+20;\n\tsetAttr -s 4 -ch 12 \".fc[0:3]\" -type \"polyFaces\" \n\t\tf 3 -3 -2 -1\n\t\tmu 0 3 0 2 1\n\t\tmc 0 3 9 10 11\n\t\tf 3 0 4 -4\n\t\tmu 0 3 3 4 7\n\t\tmc 0 3 0 2 6\n\t\tf 3 1 5 -5\n\t\tmu 0 3 4 5 7\n\t\tmc 0 3 3 4 7\n\t\tf 3 2 3 -6\n\t\tmu 0 3 5 6 7\n\t\tmc 0 3 5 1 8;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ns\" 0.2;\n\tsetAttr \".ndt\" 2;\n\tsetAttr \".dn\" yes;\n\tsetAttr \".dtn\" yes;\ncreateNode transform -n \"camera1\";\n\trename -uid \"7D5EA721-45A1-08CE-592B-D8A591DEDE7C\";\n\tsetAttr \".t\" -type \"double3\" 2.3617722445316538 1.0861174050873947 0.56109719340186559 ;\n\tsetAttr \".r\" -type \"double3\" -25.400338660174011 75.799999999999045 -1.2965588745194574e-14 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"677B40CE-44BB-DC10-B6CC-47884F640078\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 2.5320935515138405;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.14433754980564115 0 -4.4703483581542969e-08 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"5C82D4A4-404D-DF5B-7DEA-73BD60E0887F\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"7D569159-47C7-5C5B-E9A6-DE9DBBB0D0A0\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"C8A0AEDF-4D7E-7DA0-7D8A-34BAFA7943ED\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"E6CC2723-4201-9014-31B1-6097DB583B57\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"5945F09A-4525-5164-34AD-488623A74E6E\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"AC635AF3-4CBA-DE78-ED40-06A4E76D3A56\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"AB8DF808-45AE-8BBE-383A-908CE3D7BF22\";\n\tsetAttr \".g\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"7259A08F-4B12-229B-8BD4-FB902C3A621C\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 1 -size 10 -divisions 4 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"75AA3758-4D79-9EA9-56D8-468192FD4D91\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"9CB26CB6-4DB5-F7D0-3E5A-96BF6C26D4DF\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pPyramidShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of FlatTetrahedron.ma\n"
  },
  {
    "path": "maya/scenes/GroupedFingersPivotAnim1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: GroupedFingersPivotAnim1.ma\n//Last modified: Sun, Feb 03, 2019 11:50:15 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"4D1E609B-450F-477E-5712-C18A6C16E1CB\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1.235168768619906 9.4522607961990364 7.5345127227155073 ;\n\tsetAttr \".r\" -type \"double3\" -42.338352729653813 -3.4000000000002739 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"4DCE68EC-4FE3-AA69-42A6-889F6DC5C429\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999986;\n\tsetAttr \".coi\" 10.211036261331106;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 1.6828013051573711 2.5750517202955061 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"6ABC8681-4CA8-6EC6-E978-BC83FEC82DDA\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"59D38CEC-4DFB-E3B4-B0DB-98B48E3B9FB8\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"9273C02D-4DEA-079F-9471-33B5F5964D5F\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"910D2C40-4392-F3CB-A75A-33A9444F80D5\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"DA7FEE80-422D-A135-CE07-DCA5224309C7\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"D3F7AECB-4E19-C400-D6A2-28B1DDBF745A\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"upper_body\";\n\trename -uid \"A417DE91-4A02-A708-5FB2-F69F6089D05B\";\n\tsetAttr \".rp\" -type \"double3\" 0 0.48400179783362041 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0 0.48400179783362041 0 ;\ncreateNode mesh -n \"upper_bodyShape\" -p \"upper_body\";\n\trename -uid \"D3829E88-45C3-0F14-BE7C-85B9BFF269E2\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"lower_body\" -p \"upper_body\";\n\trename -uid \"2E1315DF-4EC3-0021-07C7-6EB8FA0028AA\";\ncreateNode mesh -n \"lower_bodyShape\" -p \"lower_body\";\n\trename -uid \"FCF1A9A0-4EE1-5A09-D0EC-188600A2F8E7\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"upper_arm\" -p \"lower_body\";\n\trename -uid \"776D3D2E-4B8D-1192-5F12-7BBAF548B3B7\";\n\tsetAttr \".rp\" -type \"double3\" 0.52545520229978726 0.99942482012246825 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0.52545520229978726 0.99942482012246825 0 ;\ncreateNode mesh -n \"upper_armShape\" -p \"upper_arm\";\n\trename -uid \"034256BC-40BE-29CD-497B-00A5F5651884\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.5 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode mesh -n \"polySurfaceShape1\" -p \"upper_arm\";\n\trename -uid \"8A6E0702-472C-6FE2-6479-3882F4CD3AD9\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"elbow\" -p \"upper_arm\";\n\trename -uid \"4F0EDD06-47C5-0D3D-B20F-32A77B51757E\";\n\tsetAttr \".rp\" -type \"double3\" 1.5206469262684985 0.99942482012246825 0 ;\n\tsetAttr \".sp\" -type \"double3\" 1.5206469262684985 0.99942482012246825 0 ;\ncreateNode mesh -n \"elbowShape\" -p \"elbow\";\n\trename -uid \"94B8504B-49EE-96B8-7959-EA980F8EB597\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode mesh -n \"polySurfaceShape3\" -p \"elbow\";\n\trename -uid \"49F8223C-4105-ACD8-D142-17BDBEBA75E0\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 4 \".pt\";\n\tsetAttr \".pt[1]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[3]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[5]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[7]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"lower_arm\" -p \"elbow\";\n\trename -uid \"A74D28E5-4D0B-5FDE-F2D6-4A84CFEA40C8\";\n\tsetAttr \".rp\" -type \"double3\" 1.7106468840558857 0.99942482012246825 0 ;\n\tsetAttr \".sp\" -type \"double3\" 1.7106468840558857 0.99942482012246825 0 ;\ncreateNode mesh -n \"lower_armShape\" -p \"lower_arm\";\n\trename -uid \"9D287556-460B-F363-EFD9-6EB5F1D200F7\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode mesh -n \"polySurfaceShape2\" -p \"lower_arm\";\n\trename -uid \"14C63E4A-46D7-E3CC-5EF1-6D9A4829766C\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"palm\" -p \"lower_arm\";\n\trename -uid \"33BEA552-4AEB-FCB0-3114-CA86D4E3D442\";\n\tsetAttr \".rp\" -type \"double3\" 2.6856871630728727 0.99942482012246825 0 ;\n\tsetAttr \".sp\" -type \"double3\" 2.6856871630728727 0.99942482012246825 0 ;\ncreateNode mesh -n \"palmShape\" -p \"palm\";\n\trename -uid \"7E98B722-485F-69F8-D2E8-2391A54336FB\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode mesh -n \"polySurfaceShape4\" -p \"palm\";\n\trename -uid \"E0D5EDA2-4CE4-D745-2AB7-63A81F7452C2\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 4 \".pt\";\n\tsetAttr \".pt[1]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[3]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[5]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[7]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"fingers\" -p \"palm\";\n\trename -uid \"B14FB3CF-4AF5-28EF-BF47-1FB7561ECCFC\";\ncreateNode transform -n \"finger1\" -p \"fingers\";\n\trename -uid \"A348BFEF-488B-3D73-2A68-F5B547815B9B\";\n\tsetAttr \".rp\" -type \"double3\" 2.8689475417889438 0.99942482012246825 0.012528567686649117 ;\n\tsetAttr \".sp\" -type \"double3\" 2.8689475417889438 0.99942482012246825 0.012528567686649117 ;\ncreateNode mesh -n \"fingerShape1\" -p \"finger1\";\n\trename -uid \"4EEC06EF-43CF-AC70-A9BA-28B0077817D0\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode mesh -n \"polySurfaceShape6\" -p \"finger1\";\n\trename -uid \"60DF0074-4A15-2004-0C2D-CA96C28ED56D\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 4 \".pt\";\n\tsetAttr \".pt[1]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[3]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[5]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[7]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"finger2\" -p \"fingers\";\n\trename -uid \"891ACCC0-4AF7-D451-435F-F3A02F2C9A08\";\n\tsetAttr \".rp\" -type \"double3\" 2.8689475417889438 0.99942482012246825 0.10955786981025847 ;\n\tsetAttr \".sp\" -type \"double3\" 2.8689475417889438 0.99942482012246825 0.10955786981025847 ;\ncreateNode mesh -n \"fingerShape2\" -p \"finger2\";\n\trename -uid \"C6D40E54-4E40-2F51-04CF-9988AAD7CA61\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode mesh -n \"polySurfaceShape5\" -p \"finger2\";\n\trename -uid \"49A4B1EA-4A22-79F8-208A-E9A70E306F88\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 4 \".pt\";\n\tsetAttr \".pt[1]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[3]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[5]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[7]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"finger3\" -p \"fingers\";\n\trename -uid \"598D64FE-4329-D582-D702-C7B553F255B2\";\n\tsetAttr \".rp\" -type \"double3\" 2.8689475417889438 0.99942482012246825 -0.084067756963181792 ;\n\tsetAttr \".sp\" -type \"double3\" 2.8689475417889438 0.99942482012246825 -0.084067756963181792 ;\ncreateNode mesh -n \"fingerShape3\" -p \"finger3\";\n\trename -uid \"98C6D70C-49BA-708B-7461-D3936AFDBE26\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode mesh -n \"polySurfaceShape7\" -p \"finger3\";\n\trename -uid \"21D91840-4B4B-40A4-BCA3-4A836C9F4318\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 4 \".pt\";\n\tsetAttr \".pt[1]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[3]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[5]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[7]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"6F143C0B-4137-8931-FA04-F2B68C083716\";\n\tsetAttr \".t\" -type \"double3\" 3.028215229787631 5.4644030779578419 5.5989754264311022 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"3CDDB639-4BC6-C61E-37F0-218F004FF16F\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 7.5416839857854212;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.41737011062115914 1.1386708533052869 0 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"A89E27D3-4520-9E2D-B6C5-9293DE190754\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"C59D93E1-4900-C2CE-BB58-C184053FF901\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"00D4DB74-4EC4-A488-65A2-CFA22D2137F3\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"716104CD-448C-C1D9-8B97-8287DD43BB62\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"4697E791-4C99-4DBE-A998-53B06E14D28D\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"2B95AEEA-4F95-0B7C-F81D-A9884F89F302\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"14B02E16-4F80-5594-E361-588DFBD68EA8\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"C6C8B6FD-49C1-5CD1-8A55-04814B59B6FC\";\n\tsetAttr \".cuv\" 4;\ncreateNode polyCube -n \"polyCube2\";\n\trename -uid \"F1167DA4-42D4-06B6-0627-558A3884505C\";\n\tsetAttr \".cuv\" 4;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"11652E74-4081-FA0A-A17C-338F90CD0064\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 1\\n            -showReferenceMembers 1\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"7C2DC84B-4D80-81E6-68AD-4F87AF9A3CD3\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 60 -ast 1 -aet 60 \";\n\tsetAttr \".st\" 6;\ncreateNode polySubdFace -n \"polySubdFace1\";\n\trename -uid \"4EF9DBEE-4B9D-C258-05DA-74ACF3A040A7\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".dv\" 2;\ncreateNode polySubdFace -n \"polySubdFace2\";\n\trename -uid \"38EAC154-465E-2D05-A24A-7F919B782321\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".dv\" 2;\ncreateNode polySubdFace -n \"polySubdFace3\";\n\trename -uid \"B322427C-4BB6-A6E4-FAEA-1E930F770B6A\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".dv\" 2;\ncreateNode polySubdFace -n \"polySubdFace4\";\n\trename -uid \"1F33E06E-4869-51AD-B093-FE921548A23D\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".dv\" 2;\ncreateNode polySubdFace -n \"polySubdFace5\";\n\trename -uid \"C5D3EBED-464F-AA48-B605-B4A83499B30F\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".dv\" 2;\ncreateNode polySubdFace -n \"polySubdFace6\";\n\trename -uid \"9EEB73B2-47C3-80A6-2468-14A2EC8E0E0A\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".dv\" 2;\ncreateNode polySubdFace -n \"polySubdFace7\";\n\trename -uid \"6C455D87-49E0-92B6-F079-629EB9DE8FC3\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".dv\" 2;\ncreateNode transformGeometry -n \"transformGeometry1\";\n\trename -uid \"D89F4963-43A8-2061-9027-EC9D3EEF813F\";\n\tsetAttr \".txf\" -type \"matrix\" 1.0000000000000473 0 0 0 0 0.29759270698723378 0 0\n\t\t 0 0 0.29759270698723378 0 3.1718332089241352 0.99942482012246825 0 1;\ncreateNode transformGeometry -n \"transformGeometry2\";\n\trename -uid \"C18FE45F-4FBA-B25F-AEFF-468E4BDA1ACF\";\n\tsetAttr \".txf\" -type \"matrix\" 1.0000000000000473 0 0 0 0 0.16232487151308209 0 0\n\t\t 0 0 0.16232487151308209 0 1.0048615927838263 0.99942482012246825 0 1;\ncreateNode transformGeometry -n \"transformGeometry3\";\n\trename -uid \"F446B3BA-4850-12BE-AD6F-0580EE0D6A4F\";\n\tsetAttr \".txf\" -type \"matrix\" 1.0000000000000473 0 0 0 0 0.16232487151308209 0 0\n\t\t 0 0 0.16232487151308209 0 2.0045117358235158 0.99942482012246825 0 1;\ncreateNode transformGeometry -n \"transformGeometry4\";\n\trename -uid \"D386F023-470B-0E74-1E6E-FEACE2DCF892\";\n\tsetAttr \".txf\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0.99942482012246825 0 1;\ncreateNode transformGeometry -n \"transformGeometry5\";\n\trename -uid \"72B22758-4C4A-AD6F-B03E-44AD73FDBEDD\";\n\tsetAttr \".txf\" -type \"matrix\" 1.0000000000000473 0 0 0 0 0.059418196663658072 0 0\n\t\t 0 0 0.059418196663658072 0 3.3695862095123692 0.99942482012246825 0.10955786981025853 1;\ncreateNode transformGeometry -n \"transformGeometry6\";\n\trename -uid \"35740B21-449E-F023-55E7-ECBBD8E42EEA\";\n\tsetAttr \".txf\" -type \"matrix\" 1.0000000000000473 0 0 0 0 0.059418196663658072 0 0\n\t\t 0 0 0.059418196663658072 0 3.3695862095123692 0.99942482012246825 -0.084067756963181736 1;\ncreateNode transformGeometry -n \"transformGeometry7\";\n\trename -uid \"BA6773F4-4940-0413-38B1-689063CA25EE\";\n\tsetAttr \".txf\" -type \"matrix\" 1.0000000000000473 0 0 0 0 0.059418196663658072 0 0\n\t\t 0 0 0.059418196663658072 0 3.3695862095123692 0.99942482012246825 0.012528567686649172 1;\ncreateNode transformGeometry -n \"transformGeometry8\";\n\trename -uid \"20894A11-4CA6-E631-EC03-36AA755C2D26\";\n\tsetAttr \".txf\" -type \"matrix\" 1.0000000000000473 0 0 0 0 0.16232487151308209 0 0\n\t\t 0 0 0.16232487151308209 0 2.1971125804656442 0.99942482012246825 0 1;\ncreateNode animCurveTA -n \"upper_body_rotateX\";\n\trename -uid \"36EFC4F3-40B8-2E46-A930-7BAE9EED3ED7\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode animCurveTA -n \"upper_body_rotateY\";\n\trename -uid \"E78A94D6-4C7E-F0B1-F3FF-3EAF72584BF3\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode animCurveTA -n \"upper_body_rotateZ\";\n\trename -uid \"74F03436-4F76-5D18-9B7C-30A9B80933EB\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode animCurveTA -n \"lower_body_rotateX\";\n\trename -uid \"AB304DB1-4E14-2085-6DEE-77A1040D07A1\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode animCurveTA -n \"lower_body_rotateY\";\n\trename -uid \"DA5D77BF-474B-D579-EDF1-D2834E39324B\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode animCurveTA -n \"lower_body_rotateZ\";\n\trename -uid \"F564BDF0-4435-D7A8-90B5-9EA22A2AE4B0\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode animCurveTA -n \"finger3_rotateZ\";\n\trename -uid \"28D7274F-4E0B-A5A7-6223-85873EE6CB03\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 45 60 0;\n\tsetAttr -s 2 \".kit[1]\"  18;\n\tsetAttr -s 2 \".kot[1]\"  18;\n\tsetAttr -s 2 \".kix[0:1]\"  1 1;\n\tsetAttr -s 2 \".kiy[0:1]\"  0 0;\n\tsetAttr -s 2 \".kox[0:1]\"  1 1;\n\tsetAttr -s 2 \".koy[0:1]\"  0 0;\ncreateNode animCurveTA -n \"finger3_rotateY\";\n\trename -uid \"7DC3881E-4866-BB70-5BF0-F1BC2FD85DFB\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 60 0;\n\tsetAttr -s 2 \".kit[1]\"  18;\n\tsetAttr -s 2 \".kot[1]\"  18;\n\tsetAttr -s 2 \".kix[0:1]\"  1 1;\n\tsetAttr -s 2 \".kiy[0:1]\"  0 0;\n\tsetAttr -s 2 \".kox[0:1]\"  1 1;\n\tsetAttr -s 2 \".koy[0:1]\"  0 0;\ncreateNode animCurveTA -n \"finger3_rotateX\";\n\trename -uid \"AB87C328-4E3D-D485-31CB-EB9C7D7B60BD\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 60 0;\n\tsetAttr -s 2 \".kit[1]\"  18;\n\tsetAttr -s 2 \".kot[1]\"  18;\n\tsetAttr -s 2 \".kix[0:1]\"  1 1;\n\tsetAttr -s 2 \".kiy[0:1]\"  0 0;\n\tsetAttr -s 2 \".kox[0:1]\"  1 1;\n\tsetAttr -s 2 \".koy[0:1]\"  0 0;\ncreateNode animCurveTA -n \"finger2_rotateZ\";\n\trename -uid \"CEC12281-4ABD-DD87-AE4C-AA85ECF2F7DE\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 45 60 0;\n\tsetAttr -s 2 \".kit[1]\"  18;\n\tsetAttr -s 2 \".kot[1]\"  18;\n\tsetAttr -s 2 \".kix[0:1]\"  1 1;\n\tsetAttr -s 2 \".kiy[0:1]\"  0 0;\n\tsetAttr -s 2 \".kox[0:1]\"  1 1;\n\tsetAttr -s 2 \".koy[0:1]\"  0 0;\ncreateNode animCurveTA -n \"finger2_rotateY\";\n\trename -uid \"7512DB8E-42F6-50EF-0F2C-46A586792382\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 60 0;\n\tsetAttr -s 2 \".kit[1]\"  18;\n\tsetAttr -s 2 \".kot[1]\"  18;\n\tsetAttr -s 2 \".kix[0:1]\"  1 1;\n\tsetAttr -s 2 \".kiy[0:1]\"  0 0;\n\tsetAttr -s 2 \".kox[0:1]\"  1 1;\n\tsetAttr -s 2 \".koy[0:1]\"  0 0;\ncreateNode animCurveTA -n \"finger2_rotateX\";\n\trename -uid \"C1A8D29A-4F16-2427-85D1-C89330CA8662\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 60 0;\n\tsetAttr -s 2 \".kit[1]\"  18;\n\tsetAttr -s 2 \".kot[1]\"  18;\n\tsetAttr -s 2 \".kix[0:1]\"  1 1;\n\tsetAttr -s 2 \".kiy[0:1]\"  0 0;\n\tsetAttr -s 2 \".kox[0:1]\"  1 1;\n\tsetAttr -s 2 \".koy[0:1]\"  0 0;\ncreateNode animCurveTA -n \"finger1_rotateZ\";\n\trename -uid \"7C889A63-42DD-4D9B-EBE2-67BE3CC6A660\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 45 60 0;\n\tsetAttr -s 2 \".kit[1]\"  18;\n\tsetAttr -s 2 \".kot[1]\"  18;\n\tsetAttr -s 2 \".kix[0:1]\"  1 1;\n\tsetAttr -s 2 \".kiy[0:1]\"  0 0;\n\tsetAttr -s 2 \".kox[0:1]\"  1 1;\n\tsetAttr -s 2 \".koy[0:1]\"  0 0;\ncreateNode animCurveTA -n \"finger1_rotateY\";\n\trename -uid \"FD53886A-4FCA-CBFA-340C-A7B5966C0ED1\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 60 0;\n\tsetAttr -s 2 \".kit[1]\"  18;\n\tsetAttr -s 2 \".kot[1]\"  18;\n\tsetAttr -s 2 \".kix[0:1]\"  1 1;\n\tsetAttr -s 2 \".kiy[0:1]\"  0 0;\n\tsetAttr -s 2 \".kox[0:1]\"  1 1;\n\tsetAttr -s 2 \".koy[0:1]\"  0 0;\ncreateNode animCurveTA -n \"finger1_rotateX\";\n\trename -uid \"CECF7473-4205-4BDE-5F13-698FBA373FA7\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 60 0;\n\tsetAttr -s 2 \".kit[1]\"  18;\n\tsetAttr -s 2 \".kot[1]\"  18;\n\tsetAttr -s 2 \".kix[0:1]\"  1 1;\n\tsetAttr -s 2 \".kiy[0:1]\"  0 0;\n\tsetAttr -s 2 \".kox[0:1]\"  1 1;\n\tsetAttr -s 2 \".koy[0:1]\"  0 0;\ncreateNode animCurveTA -n \"palm_rotateZ\";\n\trename -uid \"E1AC6F77-40C9-824A-EE89-2FBEF07F4151\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 45 60 0;\n\tsetAttr -s 2 \".kit[1]\"  18;\n\tsetAttr -s 2 \".kot[1]\"  18;\n\tsetAttr -s 2 \".kix[0:1]\"  1 1;\n\tsetAttr -s 2 \".kiy[0:1]\"  0 0;\n\tsetAttr -s 2 \".kox[0:1]\"  1 1;\n\tsetAttr -s 2 \".koy[0:1]\"  0 0;\ncreateNode animCurveTA -n \"palm_rotateY\";\n\trename -uid \"182C0750-4D1B-DEF7-413C-84AC08735345\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 60 0;\n\tsetAttr -s 2 \".kit[1]\"  18;\n\tsetAttr -s 2 \".kot[1]\"  18;\n\tsetAttr -s 2 \".kix[0:1]\"  1 1;\n\tsetAttr -s 2 \".kiy[0:1]\"  0 0;\n\tsetAttr -s 2 \".kox[0:1]\"  1 1;\n\tsetAttr -s 2 \".koy[0:1]\"  0 0;\ncreateNode animCurveTA -n \"palm_rotateX\";\n\trename -uid \"AE512F11-483B-F74B-69D8-13B1EF12B0CA\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 60 0;\n\tsetAttr -s 2 \".kit[1]\"  18;\n\tsetAttr -s 2 \".kot[1]\"  18;\n\tsetAttr -s 2 \".kix[0:1]\"  1 1;\n\tsetAttr -s 2 \".kiy[0:1]\"  0 0;\n\tsetAttr -s 2 \".kox[0:1]\"  1 1;\n\tsetAttr -s 2 \".koy[0:1]\"  0 0;\ncreateNode animCurveTA -n \"lower_arm_rotateZ\";\n\trename -uid \"E85F934D-41EF-DFA6-02B2-F28D994D2BE5\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 45 60 0;\n\tsetAttr -s 2 \".kit[1]\"  18;\n\tsetAttr -s 2 \".kot[1]\"  18;\n\tsetAttr -s 2 \".kix[0:1]\"  1 1;\n\tsetAttr -s 2 \".kiy[0:1]\"  0 0;\n\tsetAttr -s 2 \".kox[0:1]\"  1 1;\n\tsetAttr -s 2 \".koy[0:1]\"  0 0;\ncreateNode animCurveTA -n \"lower_arm_rotateY\";\n\trename -uid \"F969171F-4E2C-5437-E179-C8B2D2CE8431\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 60 0;\n\tsetAttr -s 2 \".kit[1]\"  18;\n\tsetAttr -s 2 \".kot[1]\"  18;\n\tsetAttr -s 2 \".kix[0:1]\"  1 1;\n\tsetAttr -s 2 \".kiy[0:1]\"  0 0;\n\tsetAttr -s 2 \".kox[0:1]\"  1 1;\n\tsetAttr -s 2 \".koy[0:1]\"  0 0;\ncreateNode animCurveTA -n \"lower_arm_rotateX\";\n\trename -uid \"9BAD966E-4518-31FE-08B2-40A62D6131B9\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 60 0;\n\tsetAttr -s 2 \".kit[1]\"  18;\n\tsetAttr -s 2 \".kot[1]\"  18;\n\tsetAttr -s 2 \".kix[0:1]\"  1 1;\n\tsetAttr -s 2 \".kiy[0:1]\"  0 0;\n\tsetAttr -s 2 \".kox[0:1]\"  1 1;\n\tsetAttr -s 2 \".koy[0:1]\"  0 0;\ncreateNode animCurveTA -n \"elbow_rotateZ\";\n\trename -uid \"30454553-48F4-505D-DCB9-62963694A408\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 45 60 0;\n\tsetAttr -s 2 \".kit[1]\"  18;\n\tsetAttr -s 2 \".kot[1]\"  18;\n\tsetAttr -s 2 \".kix[0:1]\"  1 1;\n\tsetAttr -s 2 \".kiy[0:1]\"  0 0;\n\tsetAttr -s 2 \".kox[0:1]\"  1 1;\n\tsetAttr -s 2 \".koy[0:1]\"  0 0;\ncreateNode animCurveTA -n \"elbow_rotateY\";\n\trename -uid \"FEC26E4A-44C1-943E-A4B3-A794EE7C5BF9\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 60 0;\n\tsetAttr -s 2 \".kit[1]\"  18;\n\tsetAttr -s 2 \".kot[1]\"  18;\n\tsetAttr -s 2 \".kix[0:1]\"  1 1;\n\tsetAttr -s 2 \".kiy[0:1]\"  0 0;\n\tsetAttr -s 2 \".kox[0:1]\"  1 1;\n\tsetAttr -s 2 \".koy[0:1]\"  0 0;\ncreateNode animCurveTA -n \"elbow_rotateX\";\n\trename -uid \"F4E71E26-4F57-7442-F805-A0A292B8C413\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 60 0;\n\tsetAttr -s 2 \".kit[1]\"  18;\n\tsetAttr -s 2 \".kot[1]\"  18;\n\tsetAttr -s 2 \".kix[0:1]\"  1 1;\n\tsetAttr -s 2 \".kiy[0:1]\"  0 0;\n\tsetAttr -s 2 \".kox[0:1]\"  1 1;\n\tsetAttr -s 2 \".koy[0:1]\"  0 0;\ncreateNode animCurveTA -n \"upper_arm_rotateZ\";\n\trename -uid \"F69CAFBC-4444-2FF6-38E9-6CBC3CC18057\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 45 60 0;\n\tsetAttr -s 2 \".kit[1]\"  18;\n\tsetAttr -s 2 \".kot[1]\"  18;\n\tsetAttr -s 2 \".kix[0:1]\"  1 1;\n\tsetAttr -s 2 \".kiy[0:1]\"  0 0;\n\tsetAttr -s 2 \".kox[0:1]\"  1 1;\n\tsetAttr -s 2 \".koy[0:1]\"  0 0;\ncreateNode animCurveTA -n \"upper_arm_rotateY\";\n\trename -uid \"6D64CCC5-4C9F-8F6C-A888-4FA78EBE0533\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 60 0;\n\tsetAttr -s 2 \".kit[1]\"  18;\n\tsetAttr -s 2 \".kot[1]\"  18;\n\tsetAttr -s 2 \".kix[0:1]\"  1 1;\n\tsetAttr -s 2 \".kiy[0:1]\"  0 0;\n\tsetAttr -s 2 \".kox[0:1]\"  1 1;\n\tsetAttr -s 2 \".koy[0:1]\"  0 0;\ncreateNode animCurveTA -n \"upper_arm_rotateX\";\n\trename -uid \"EA12D548-467D-BC02-5900-EAA2D81A31CA\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 60 0;\n\tsetAttr -s 2 \".kit[1]\"  18;\n\tsetAttr -s 2 \".kot[1]\"  18;\n\tsetAttr -s 2 \".kix[0:1]\"  1 1;\n\tsetAttr -s 2 \".kiy[0:1]\"  0 0;\n\tsetAttr -s 2 \".kox[0:1]\"  1 1;\n\tsetAttr -s 2 \".koy[0:1]\"  0 0;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"636C4903-41CE-9C61-8193-9A98A02E2A9A\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/scenes/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"GroupedFingersPivotAnim1\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2018 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"-rvp\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 2;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"9B1F4CAE-4E77-19AB-D3C1-C18286939A4E\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 3;\n\tsetAttr \".unw\" 3;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 9 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"upper_body_rotateX.o\" \"upper_body.rx\";\nconnectAttr \"upper_body_rotateY.o\" \"upper_body.ry\";\nconnectAttr \"upper_body_rotateZ.o\" \"upper_body.rz\";\nconnectAttr \"transformGeometry4.og\" \"upper_bodyShape.i\";\nconnectAttr \"lower_body_rotateX.o\" \"lower_body.rx\";\nconnectAttr \"lower_body_rotateY.o\" \"lower_body.ry\";\nconnectAttr \"lower_body_rotateZ.o\" \"lower_body.rz\";\nconnectAttr \"polyCube1.out\" \"lower_bodyShape.i\";\nconnectAttr \"upper_arm_rotateX.o\" \"upper_arm.rx\";\nconnectAttr \"upper_arm_rotateY.o\" \"upper_arm.ry\";\nconnectAttr \"upper_arm_rotateZ.o\" \"upper_arm.rz\";\nconnectAttr \"transformGeometry2.og\" \"upper_armShape.i\";\nconnectAttr \"elbow_rotateX.o\" \"elbow.rx\";\nconnectAttr \"elbow_rotateY.o\" \"elbow.ry\";\nconnectAttr \"elbow_rotateZ.o\" \"elbow.rz\";\nconnectAttr \"transformGeometry3.og\" \"elbowShape.i\";\nconnectAttr \"lower_arm_rotateX.o\" \"lower_arm.rx\";\nconnectAttr \"lower_arm_rotateY.o\" \"lower_arm.ry\";\nconnectAttr \"lower_arm_rotateZ.o\" \"lower_arm.rz\";\nconnectAttr \"transformGeometry8.og\" \"lower_armShape.i\";\nconnectAttr \"palm_rotateX.o\" \"palm.rx\";\nconnectAttr \"palm_rotateY.o\" \"palm.ry\";\nconnectAttr \"palm_rotateZ.o\" \"palm.rz\";\nconnectAttr \"transformGeometry1.og\" \"palmShape.i\";\nconnectAttr \"finger1_rotateX.o\" \"finger1.rx\";\nconnectAttr \"finger1_rotateY.o\" \"finger1.ry\";\nconnectAttr \"finger1_rotateZ.o\" \"finger1.rz\";\nconnectAttr \"transformGeometry7.og\" \"fingerShape1.i\";\nconnectAttr \"finger2_rotateX.o\" \"finger2.rx\";\nconnectAttr \"finger2_rotateY.o\" \"finger2.ry\";\nconnectAttr \"finger2_rotateZ.o\" \"finger2.rz\";\nconnectAttr \"transformGeometry5.og\" \"fingerShape2.i\";\nconnectAttr \"finger3_rotateX.o\" \"finger3.rx\";\nconnectAttr \"finger3_rotateY.o\" \"finger3.ry\";\nconnectAttr \"finger3_rotateZ.o\" \"finger3.rz\";\nconnectAttr \"transformGeometry6.og\" \"fingerShape3.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"polySurfaceShape1.o\" \"polySubdFace1.ip\";\nconnectAttr \"polySurfaceShape2.o\" \"polySubdFace2.ip\";\nconnectAttr \"polySurfaceShape3.o\" \"polySubdFace3.ip\";\nconnectAttr \"polySurfaceShape4.o\" \"polySubdFace4.ip\";\nconnectAttr \"polySurfaceShape5.o\" \"polySubdFace5.ip\";\nconnectAttr \"polySurfaceShape6.o\" \"polySubdFace6.ip\";\nconnectAttr \"polySurfaceShape7.o\" \"polySubdFace7.ip\";\nconnectAttr \"polySubdFace4.out\" \"transformGeometry1.ig\";\nconnectAttr \"polySubdFace1.out\" \"transformGeometry2.ig\";\nconnectAttr \"polySubdFace3.out\" \"transformGeometry3.ig\";\nconnectAttr \"polyCube2.out\" \"transformGeometry4.ig\";\nconnectAttr \"polySubdFace5.out\" \"transformGeometry5.ig\";\nconnectAttr \"polySubdFace7.out\" \"transformGeometry6.ig\";\nconnectAttr \"polySubdFace6.out\" \"transformGeometry7.ig\";\nconnectAttr \"polySubdFace2.out\" \"transformGeometry8.ig\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"lower_bodyShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"upper_bodyShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"upper_armShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"elbowShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"lower_armShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"palmShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"fingerShape3.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"fingerShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"fingerShape2.iog\" \":initialShadingGroup.dsm\" -na;\n// End of GroupedFingersPivotAnim1.ma\n"
  },
  {
    "path": "maya/scenes/GroupedFingersPivotTest3.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: GroupedFingersPivotTest3.ma\n//Last modified: Sun, Feb 03, 2019 11:50:32 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires -nodeType \"aiOptions\" -nodeType \"aiAOVDriver\" -nodeType \"aiAOVFilter\" \"mtoa\" \"2.1.0.1\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"4D1E609B-450F-477E-5712-C18A6C16E1CB\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 4.0430087553084268 2.3711820812694127 2.7900449275022714 ;\n\tsetAttr \".r\" -type \"double3\" -27.338352729614389 45.00000000000226 2.2489917831975613e-15 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"4DCE68EC-4FE3-AA69-42A6-889F6DC5C429\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999986;\n\tsetAttr \".coi\" 4.7237772809000393;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 1.288615345954895 0.49971240758895874 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"6ABC8681-4CA8-6EC6-E978-BC83FEC82DDA\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"59D38CEC-4DFB-E3B4-B0DB-98B48E3B9FB8\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"front\";\n\trename -uid \"9273C02D-4DEA-079F-9471-33B5F5964D5F\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"910D2C40-4392-F3CB-A75A-33A9444F80D5\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"side\";\n\trename -uid \"DA7FEE80-422D-A135-CE07-DCA5224309C7\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"D3F7AECB-4E19-C400-D6A2-28B1DDBF745A\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -n \"upper_body\";\n\trename -uid \"A417DE91-4A02-A708-5FB2-F69F6089D05B\";\n\tsetAttr \".rp\" -type \"double3\" 0 0.48400179783362041 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0 0.48400179783362041 0 ;\ncreateNode mesh -n \"upper_bodyShape\" -p \"upper_body\";\n\trename -uid \"D3829E88-45C3-0F14-BE7C-85B9BFF269E2\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"lower_body\" -p \"upper_body\";\n\trename -uid \"2E1315DF-4EC3-0021-07C7-6EB8FA0028AA\";\ncreateNode mesh -n \"lower_bodyShape\" -p \"lower_body\";\n\trename -uid \"FCF1A9A0-4EE1-5A09-D0EC-188600A2F8E7\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"upper_arm\" -p \"lower_body\";\n\trename -uid \"776D3D2E-4B8D-1192-5F12-7BBAF548B3B7\";\n\tsetAttr \".rp\" -type \"double3\" 0.52545520229978726 0.99942482012246825 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0.52545520229978726 0.99942482012246825 0 ;\ncreateNode mesh -n \"upper_armShape\" -p \"upper_arm\";\n\trename -uid \"034256BC-40BE-29CD-497B-00A5F5651884\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.5 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode mesh -n \"polySurfaceShape1\" -p \"upper_arm\";\n\trename -uid \"8A6E0702-472C-6FE2-6479-3882F4CD3AD9\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"elbow\" -p \"upper_arm\";\n\trename -uid \"4F0EDD06-47C5-0D3D-B20F-32A77B51757E\";\n\tsetAttr \".rp\" -type \"double3\" 1.5206469262684985 0.99942482012246825 0 ;\n\tsetAttr \".sp\" -type \"double3\" 1.5206469262684985 0.99942482012246825 0 ;\ncreateNode mesh -n \"elbowShape\" -p \"elbow\";\n\trename -uid \"94B8504B-49EE-96B8-7959-EA980F8EB597\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode mesh -n \"polySurfaceShape3\" -p \"elbow\";\n\trename -uid \"49F8223C-4105-ACD8-D142-17BDBEBA75E0\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 4 \".pt\";\n\tsetAttr \".pt[1]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[3]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[5]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[7]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"lower_arm\" -p \"elbow\";\n\trename -uid \"A74D28E5-4D0B-5FDE-F2D6-4A84CFEA40C8\";\n\tsetAttr \".rp\" -type \"double3\" 1.7106468840558857 0.99942482012246825 0 ;\n\tsetAttr \".sp\" -type \"double3\" 1.7106468840558857 0.99942482012246825 0 ;\ncreateNode mesh -n \"lower_armShape\" -p \"lower_arm\";\n\trename -uid \"9D287556-460B-F363-EFD9-6EB5F1D200F7\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode mesh -n \"polySurfaceShape2\" -p \"lower_arm\";\n\trename -uid \"14C63E4A-46D7-E3CC-5EF1-6D9A4829766C\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"palm\" -p \"lower_arm\";\n\trename -uid \"33BEA552-4AEB-FCB0-3114-CA86D4E3D442\";\n\tsetAttr \".rp\" -type \"double3\" 2.6856871630728727 0.99942482012246825 0 ;\n\tsetAttr \".sp\" -type \"double3\" 2.6856871630728727 0.99942482012246825 0 ;\ncreateNode mesh -n \"palmShape\" -p \"palm\";\n\trename -uid \"7E98B722-485F-69F8-D2E8-2391A54336FB\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode mesh -n \"polySurfaceShape4\" -p \"palm\";\n\trename -uid \"E0D5EDA2-4CE4-D745-2AB7-63A81F7452C2\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 4 \".pt\";\n\tsetAttr \".pt[1]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[3]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[5]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[7]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"finger1\" -p \"palm\";\n\trename -uid \"A348BFEF-488B-3D73-2A68-F5B547815B9B\";\n\tsetAttr \".rp\" -type \"double3\" 2.8689475417889438 0.99942482012246825 0.012528567686649117 ;\n\tsetAttr \".sp\" -type \"double3\" 2.8689475417889438 0.99942482012246825 0.012528567686649117 ;\ncreateNode mesh -n \"fingerShape1\" -p \"finger1\";\n\trename -uid \"4EEC06EF-43CF-AC70-A9BA-28B0077817D0\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode mesh -n \"polySurfaceShape6\" -p \"finger1\";\n\trename -uid \"60DF0074-4A15-2004-0C2D-CA96C28ED56D\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 4 \".pt\";\n\tsetAttr \".pt[1]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[3]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[5]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[7]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"finger2\" -p \"palm\";\n\trename -uid \"891ACCC0-4AF7-D451-435F-F3A02F2C9A08\";\n\tsetAttr \".rp\" -type \"double3\" 2.8689475417889438 0.99942482012246825 0.10955786981025847 ;\n\tsetAttr \".sp\" -type \"double3\" 2.8689475417889438 0.99942482012246825 0.10955786981025847 ;\ncreateNode mesh -n \"fingerShape2\" -p \"finger2\";\n\trename -uid \"C6D40E54-4E40-2F51-04CF-9988AAD7CA61\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode mesh -n \"polySurfaceShape5\" -p \"finger2\";\n\trename -uid \"49A4B1EA-4A22-79F8-208A-E9A70E306F88\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 4 \".pt\";\n\tsetAttr \".pt[1]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[3]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[5]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[7]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"finger3\" -p \"palm\";\n\trename -uid \"598D64FE-4329-D582-D702-C7B553F255B2\";\n\tsetAttr \".rp\" -type \"double3\" 2.8689475417889438 0.99942482012246825 -0.084067756963181792 ;\n\tsetAttr \".sp\" -type \"double3\" 2.8689475417889438 0.99942482012246825 -0.084067756963181792 ;\ncreateNode mesh -n \"fingerShape3\" -p \"finger3\";\n\trename -uid \"98C6D70C-49BA-708B-7461-D3936AFDBE26\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode mesh -n \"polySurfaceShape7\" -p \"finger3\";\n\trename -uid \"21D91840-4B4B-40A4-BCA3-4A836C9F4318\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 4 \".pt\";\n\tsetAttr \".pt[1]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[3]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[5]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[7]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"camera1\";\n\trename -uid \"B76948CF-4AC3-2575-BC39-11A17FDBF96D\";\n\tsetAttr \".t\" -type \"double3\" 3.2654046728635073 3.7766538711700948 4.0173663779000348 ;\n\tsetAttr \".r\" -type \"double3\" -36.199957667478053 26.200000000000038 1.772373927600108e-15 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"68D583A9-4198-8CB9-5CB0-18A0395209C8\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 5.5484478922486611;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 1.288615345954895 0.49971240758895874 0 ;\n\tsetAttr \".dr\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"8FFB142B-4A15-881F-B565-8DA98883C060\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"99E174DA-4143-5CBA-84E3-F18E4EBE7CEB\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"9899D718-4DC9-C54D-5734-D6A751497078\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"179AEB36-4B06-0529-2B06-38BCA74EF31D\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"4697E791-4C99-4DBE-A998-53B06E14D28D\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"0834523D-45B2-2493-10A7-FABAAB2DD084\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"14B02E16-4F80-5594-E361-588DFBD68EA8\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"C6C8B6FD-49C1-5CD1-8A55-04814B59B6FC\";\n\tsetAttr \".cuv\" 4;\ncreateNode polyCube -n \"polyCube2\";\n\trename -uid \"F1167DA4-42D4-06B6-0627-558A3884505C\";\n\tsetAttr \".cuv\" 4;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"11652E74-4081-FA0A-A17C-338F90CD0064\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 1\\n            -showReferenceMembers 1\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"7C2DC84B-4D80-81E6-68AD-4F87AF9A3CD3\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode polySubdFace -n \"polySubdFace1\";\n\trename -uid \"4EF9DBEE-4B9D-C258-05DA-74ACF3A040A7\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".dv\" 2;\ncreateNode polySubdFace -n \"polySubdFace2\";\n\trename -uid \"38EAC154-465E-2D05-A24A-7F919B782321\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".dv\" 2;\ncreateNode polySubdFace -n \"polySubdFace3\";\n\trename -uid \"B322427C-4BB6-A6E4-FAEA-1E930F770B6A\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".dv\" 2;\ncreateNode polySubdFace -n \"polySubdFace4\";\n\trename -uid \"1F33E06E-4869-51AD-B093-FE921548A23D\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".dv\" 2;\ncreateNode polySubdFace -n \"polySubdFace5\";\n\trename -uid \"C5D3EBED-464F-AA48-B605-B4A83499B30F\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".dv\" 2;\ncreateNode polySubdFace -n \"polySubdFace6\";\n\trename -uid \"9EEB73B2-47C3-80A6-2468-14A2EC8E0E0A\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".dv\" 2;\ncreateNode polySubdFace -n \"polySubdFace7\";\n\trename -uid \"6C455D87-49E0-92B6-F079-629EB9DE8FC3\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".dv\" 2;\ncreateNode transformGeometry -n \"transformGeometry1\";\n\trename -uid \"D89F4963-43A8-2061-9027-EC9D3EEF813F\";\n\tsetAttr \".txf\" -type \"matrix\" 1.0000000000000473 0 0 0 0 0.29759270698723378 0 0\n\t\t 0 0 0.29759270698723378 0 3.1718332089241352 0.99942482012246825 0 1;\ncreateNode transformGeometry -n \"transformGeometry2\";\n\trename -uid \"C18FE45F-4FBA-B25F-AEFF-468E4BDA1ACF\";\n\tsetAttr \".txf\" -type \"matrix\" 1.0000000000000473 0 0 0 0 0.16232487151308209 0 0\n\t\t 0 0 0.16232487151308209 0 1.0048615927838263 0.99942482012246825 0 1;\ncreateNode transformGeometry -n \"transformGeometry3\";\n\trename -uid \"F446B3BA-4850-12BE-AD6F-0580EE0D6A4F\";\n\tsetAttr \".txf\" -type \"matrix\" 1.0000000000000473 0 0 0 0 0.16232487151308209 0 0\n\t\t 0 0 0.16232487151308209 0 2.0045117358235158 0.99942482012246825 0 1;\ncreateNode transformGeometry -n \"transformGeometry4\";\n\trename -uid \"D386F023-470B-0E74-1E6E-FEACE2DCF892\";\n\tsetAttr \".txf\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0.99942482012246825 0 1;\ncreateNode transformGeometry -n \"transformGeometry5\";\n\trename -uid \"72B22758-4C4A-AD6F-B03E-44AD73FDBEDD\";\n\tsetAttr \".txf\" -type \"matrix\" 1.0000000000000473 0 0 0 0 0.059418196663658072 0 0\n\t\t 0 0 0.059418196663658072 0 3.3695862095123692 0.99942482012246825 0.10955786981025853 1;\ncreateNode transformGeometry -n \"transformGeometry6\";\n\trename -uid \"35740B21-449E-F023-55E7-ECBBD8E42EEA\";\n\tsetAttr \".txf\" -type \"matrix\" 1.0000000000000473 0 0 0 0 0.059418196663658072 0 0\n\t\t 0 0 0.059418196663658072 0 3.3695862095123692 0.99942482012246825 -0.084067756963181736 1;\ncreateNode transformGeometry -n \"transformGeometry7\";\n\trename -uid \"BA6773F4-4940-0413-38B1-689063CA25EE\";\n\tsetAttr \".txf\" -type \"matrix\" 1.0000000000000473 0 0 0 0 0.059418196663658072 0 0\n\t\t 0 0 0.059418196663658072 0 3.3695862095123692 0.99942482012246825 0.012528567686649172 1;\ncreateNode transformGeometry -n \"transformGeometry8\";\n\trename -uid \"20894A11-4CA6-E631-EC03-36AA755C2D26\";\n\tsetAttr \".txf\" -type \"matrix\" 1.0000000000000473 0 0 0 0 0.16232487151308209 0 0\n\t\t 0 0 0.16232487151308209 0 2.1971125804656442 0.99942482012246825 0 1;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"9F84B70E-4F9A-3E1D-BD8D-BFBBFC163935\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/scenes/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"GroupedFingersPivotTest3\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2018 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 1;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"421C532A-4AE9-8523-E4A9-77824BDF8162\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\ncreateNode aiOptions -s -n \"defaultArnoldRenderOptions\";\n\trename -uid \"FB3D4A22-4E20-A187-6C5F-DDB7284DC0BA\";\n\tsetAttr \".version\" -type \"string\" \"2.1.0.1\";\ncreateNode aiAOVFilter -s -n \"defaultArnoldFilter\";\n\trename -uid \"EE0608F7-49EA-C604-FEF9-9393D14C4C61\";\n\tsetAttr \".ai_translator\" -type \"string\" \"gaussian\";\ncreateNode aiAOVDriver -s -n \"defaultArnoldDriver\";\n\trename -uid \"E79D831A-4C6A-511B-974E-309F62771711\";\n\tsetAttr \".ai_translator\" -type \"string\" \"exr\";\ncreateNode aiAOVDriver -s -n \"defaultArnoldDisplayDriver\";\n\trename -uid \"492FC477-45FC-3B4E-3E7E-019D525A6925\";\n\tsetAttr \".output_mode\" 0;\n\tsetAttr \".ai_translator\" -type \"string\" \"maya\";\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 9 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".macc\";\n\tsetAttr -k on \".macd\";\n\tsetAttr -k on \".macq\";\n\tsetAttr -cb on \".ifg\";\n\tsetAttr -k on \".clip\";\n\tsetAttr -k on \".edm\";\n\tsetAttr -k on \".edl\";\n\tsetAttr \".ren\" -type \"string\" \"arnold\";\n\tsetAttr -av -k on \".esr\";\n\tsetAttr -k on \".ors\";\n\tsetAttr -cb on \".sdf\";\n\tsetAttr \".outf\" 51;\n\tsetAttr -cb on \".imfkey\" -type \"string\" \"exr\";\n\tsetAttr -k on \".gama\";\n\tsetAttr -cb on \".ar\";\n\tsetAttr -av \".bfs\";\n\tsetAttr -k on \".be\";\n\tsetAttr -k on \".fec\";\n\tsetAttr -k on \".ofc\";\n\tsetAttr -cb on \".ofe\";\n\tsetAttr -cb on \".efe\";\n\tsetAttr -cb on \".umfn\";\n\tsetAttr -cb on \".ufe\";\n\tsetAttr -k on \".comp\";\n\tsetAttr -k on \".cth\";\n\tsetAttr -k on \".soll\";\n\tsetAttr -k on \".rd\";\n\tsetAttr -k on \".lp\";\n\tsetAttr -k on \".sp\";\n\tsetAttr -k on \".shs\";\n\tsetAttr -k on \".lpr\";\n\tsetAttr -cb on \".gv\";\n\tsetAttr -cb on \".sv\";\n\tsetAttr -k on \".mm\";\n\tsetAttr -k on \".npu\";\n\tsetAttr -k on \".itf\";\n\tsetAttr -k on \".shp\";\n\tsetAttr -cb on \".isp\";\n\tsetAttr -k on \".uf\";\n\tsetAttr -k on \".oi\";\n\tsetAttr -k on \".rut\";\n\tsetAttr -av -k on \".mbf\";\n\tsetAttr -k on \".afp\";\n\tsetAttr -k on \".pfb\";\n\tsetAttr -cb on \".pfrm\";\n\tsetAttr -cb on \".pfom\";\n\tsetAttr -av -k on \".bll\";\n\tsetAttr -k on \".bls\";\n\tsetAttr -k on \".smv\";\n\tsetAttr -k on \".ubc\";\n\tsetAttr -k on \".mbc\";\n\tsetAttr -k on \".udbx\";\n\tsetAttr -k on \".smc\";\n\tsetAttr -k on \".kmv\";\n\tsetAttr -cb on \".isl\";\n\tsetAttr -cb on \".ism\";\n\tsetAttr -cb on \".imb\";\n\tsetAttr -k on \".rlen\";\n\tsetAttr -av -k on \".frts\";\n\tsetAttr -k on \".tlwd\";\n\tsetAttr -k on \".tlht\";\n\tsetAttr -k on \".jfc\";\n\tsetAttr -cb on \".rsb\";\n\tsetAttr -k on \".ope\";\n\tsetAttr -k on \".oppf\";\n\tsetAttr -cb on \".hbl\";\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"transformGeometry4.og\" \"upper_bodyShape.i\";\nconnectAttr \"polyCube1.out\" \"lower_bodyShape.i\";\nconnectAttr \"transformGeometry2.og\" \"upper_armShape.i\";\nconnectAttr \"transformGeometry3.og\" \"elbowShape.i\";\nconnectAttr \"transformGeometry8.og\" \"lower_armShape.i\";\nconnectAttr \"transformGeometry1.og\" \"palmShape.i\";\nconnectAttr \"transformGeometry7.og\" \"fingerShape1.i\";\nconnectAttr \"transformGeometry5.og\" \"fingerShape2.i\";\nconnectAttr \"transformGeometry6.og\" \"fingerShape3.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"polySurfaceShape1.o\" \"polySubdFace1.ip\";\nconnectAttr \"polySurfaceShape2.o\" \"polySubdFace2.ip\";\nconnectAttr \"polySurfaceShape3.o\" \"polySubdFace3.ip\";\nconnectAttr \"polySurfaceShape4.o\" \"polySubdFace4.ip\";\nconnectAttr \"polySurfaceShape5.o\" \"polySubdFace5.ip\";\nconnectAttr \"polySurfaceShape6.o\" \"polySubdFace6.ip\";\nconnectAttr \"polySurfaceShape7.o\" \"polySubdFace7.ip\";\nconnectAttr \"polySubdFace4.out\" \"transformGeometry1.ig\";\nconnectAttr \"polySubdFace1.out\" \"transformGeometry2.ig\";\nconnectAttr \"polySubdFace3.out\" \"transformGeometry3.ig\";\nconnectAttr \"polyCube2.out\" \"transformGeometry4.ig\";\nconnectAttr \"polySubdFace5.out\" \"transformGeometry5.ig\";\nconnectAttr \"polySubdFace7.out\" \"transformGeometry6.ig\";\nconnectAttr \"polySubdFace6.out\" \"transformGeometry7.ig\";\nconnectAttr \"polySubdFace2.out\" \"transformGeometry8.ig\";\nconnectAttr \":defaultArnoldDisplayDriver.msg\" \":defaultArnoldRenderOptions.drivers\"\n\t\t -na;\nconnectAttr \":defaultArnoldFilter.msg\" \":defaultArnoldRenderOptions.filt\";\nconnectAttr \":defaultArnoldDriver.msg\" \":defaultArnoldRenderOptions.drvr\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"lower_bodyShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"upper_bodyShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"upper_armShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"elbowShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"lower_armShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"palmShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"fingerShape3.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"fingerShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"fingerShape2.iog\" \":initialShadingGroup.dsm\" -na;\n// End of GroupedFingersPivotTest3.ma\n"
  },
  {
    "path": "maya/scenes/InstancedCube1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: InstancedCube1.ma\n//Last modified: Sun, Feb 03, 2019 11:50:40 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires -nodeType \"aiOptions\" -nodeType \"aiAOVDriver\" -nodeType \"aiAOVFilter\" \"mtoa\" \"2.1.0.1\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"7F669003-4294-CD25-693D-DA93853577E5\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 3.5928787538387601 9.1292131960601992 21.702821216645233 ;\n\tsetAttr \".r\" -type \"double3\" -22.538352729602366 9.399999999999995 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"67A125F3-44E4-28BB-5251-2C816129460D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 23.817299596733662;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"658D612C-44D1-50B8-A188-AFB5F56AF690\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"70EE42CC-4D3A-C675-3D9B-A9A6F1381A88\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"front\";\n\trename -uid \"EB1F7A64-41EB-5BB7-9142-D5BBAE625BF4\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"58A8181C-4028-DD90-5A70-16AB39989913\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"side\";\n\trename -uid \"BCA7EEDA-498C-6043-AB3B-ACA065FC82EC\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"C112279F-4BF0-1708-2DC3-199668549EE0\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -n \"pCube1\";\n\trename -uid \"047A51E7-485D-40F0-DC4C-8DAD10F16640\";\n\tsetAttr \".t\" -type \"double3\" -1.5 0 0 ;\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"7670D823-4834-E20E-2911-24968F4ABA8D\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 2 \".iog\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"pCube2\";\n\trename -uid \"075D9B6B-4FB4-EDEB-C436-BC8A41B2F9BC\";\n\tsetAttr \".t\" -type \"double3\" 1.5 0 0 ;\ncreateNode transform -n \"camera1\";\n\trename -uid \"596CDA09-4BF0-55A3-85D8-5ABCAA952CC4\";\n\tsetAttr \".t\" -type \"double3\" 2.1683536572052118 3.5925981286895858 4.6500494239887873 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"3A30FCC9-4DF7-1FD0-55B1-CD9E43913B58\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 6.2635036954182102;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".dr\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\nparent -s -nc -r -add \"|pCube1|pCubeShape1\" \"pCube2\" ;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"BEA5C0E2-4C20-A88F-F9B7-CFB2186C8AEF\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"0CA9D23C-47E3-EBAF-A442-69841A801635\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"E0505BB9-439C-35AA-BDEA-C499BD696F0D\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"1F5899A8-47AF-8669-57EE-99BA18ACB471\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"0D2837F3-4471-6222-F292-5080B825C287\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"D46ECC50-484B-F80B-1908-5DB2A2E7B1CC\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"9CF589ED-40AA-38AE-ED44-618EA3FED456\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"82D50DF5-4E95-E1DF-DB5C-CF8BD56832A5\";\n\tsetAttr \".cuv\" 4;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"D18B8E42-4947-4472-12C6-1F8D8523A4AD\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 1\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"DB5454BB-4512-AC74-9FB2-7F9F2CEAF5DB\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"90118180-4F99-2B6A-2E54-6085EBC781BF\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\ncreateNode aiOptions -s -n \"defaultArnoldRenderOptions\";\n\trename -uid \"AA52B446-46E0-6457-0833-DCAA8684E054\";\n\tsetAttr \".version\" -type \"string\" \"2.1.0.1\";\ncreateNode aiAOVFilter -s -n \"defaultArnoldFilter\";\n\trename -uid \"79FB344A-45D4-FD06-AA02-5193FA6C3578\";\n\tsetAttr \".ai_translator\" -type \"string\" \"gaussian\";\ncreateNode aiAOVDriver -s -n \"defaultArnoldDriver\";\n\trename -uid \"2587411C-4D75-39E0-060F-D5828BE1D351\";\n\tsetAttr \".ai_translator\" -type \"string\" \"exr\";\ncreateNode aiAOVDriver -s -n \"defaultArnoldDisplayDriver\";\n\trename -uid \"9DAA4634-4ED8-35F1-2B3D-A1ACF58551DF\";\n\tsetAttr \".output_mode\" 0;\n\tsetAttr \".ai_translator\" -type \"string\" \"maya\";\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".macc\";\n\tsetAttr -k on \".macd\";\n\tsetAttr -k on \".macq\";\n\tsetAttr -cb on \".ifg\";\n\tsetAttr -k on \".clip\";\n\tsetAttr -k on \".edm\";\n\tsetAttr -k on \".edl\";\n\tsetAttr \".ren\" -type \"string\" \"arnold\";\n\tsetAttr -av -k on \".esr\";\n\tsetAttr -k on \".ors\";\n\tsetAttr -cb on \".sdf\";\n\tsetAttr \".outf\" 51;\n\tsetAttr -cb on \".imfkey\" -type \"string\" \"exr\";\n\tsetAttr -k on \".gama\";\n\tsetAttr -cb on \".ar\";\n\tsetAttr -av \".bfs\";\n\tsetAttr -k on \".be\";\n\tsetAttr -k on \".fec\";\n\tsetAttr -k on \".ofc\";\n\tsetAttr -cb on \".ofe\";\n\tsetAttr -cb on \".efe\";\n\tsetAttr -cb on \".umfn\";\n\tsetAttr -cb on \".ufe\";\n\tsetAttr -k on \".comp\";\n\tsetAttr -k on \".cth\";\n\tsetAttr -k on \".soll\";\n\tsetAttr -k on \".rd\";\n\tsetAttr -k on \".lp\";\n\tsetAttr -k on \".sp\";\n\tsetAttr -k on \".shs\";\n\tsetAttr -k on \".lpr\";\n\tsetAttr -cb on \".gv\";\n\tsetAttr -cb on \".sv\";\n\tsetAttr -k on \".mm\";\n\tsetAttr -k on \".npu\";\n\tsetAttr -k on \".itf\";\n\tsetAttr -k on \".shp\";\n\tsetAttr -cb on \".isp\";\n\tsetAttr -k on \".uf\";\n\tsetAttr -k on \".oi\";\n\tsetAttr -k on \".rut\";\n\tsetAttr -av -k on \".mbf\";\n\tsetAttr -k on \".afp\";\n\tsetAttr -k on \".pfb\";\n\tsetAttr -cb on \".pfrm\";\n\tsetAttr -cb on \".pfom\";\n\tsetAttr -av -k on \".bll\";\n\tsetAttr -k on \".bls\";\n\tsetAttr -k on \".smv\";\n\tsetAttr -k on \".ubc\";\n\tsetAttr -k on \".mbc\";\n\tsetAttr -k on \".udbx\";\n\tsetAttr -k on \".smc\";\n\tsetAttr -k on \".kmv\";\n\tsetAttr -cb on \".isl\";\n\tsetAttr -cb on \".ism\";\n\tsetAttr -cb on \".imb\";\n\tsetAttr -k on \".rlen\";\n\tsetAttr -av -k on \".frts\";\n\tsetAttr -k on \".tlwd\";\n\tsetAttr -k on \".tlht\";\n\tsetAttr -k on \".jfc\";\n\tsetAttr -cb on \".rsb\";\n\tsetAttr -k on \".ope\";\n\tsetAttr -k on \".oppf\";\n\tsetAttr -cb on \".hbl\";\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"polyCube1.out\" \"|pCube1|pCubeShape1.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \":defaultArnoldDisplayDriver.msg\" \":defaultArnoldRenderOptions.drivers\"\n\t\t -na;\nconnectAttr \":defaultArnoldFilter.msg\" \":defaultArnoldRenderOptions.filt\";\nconnectAttr \":defaultArnoldDriver.msg\" \":defaultArnoldRenderOptions.drvr\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"|pCube1|pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"|pCube2|pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of InstancedCube1.ma\n"
  },
  {
    "path": "maya/scenes/NestedTransparentEmissiveSpheres.ma",
    "content": "//Maya ASCII 2018 scene\n//Name: NestedTransparentEmissiveSpheres.ma\n//Last modified: Thu, Mar 14, 2019 06:49:39 PM\n//Codeset: 1252\nrequires maya \"2018\";\nrequires \"stereoCamera\" \"10.0\";\nrequires -nodeType \"GLSLShader\" \"glslShader\" \"1.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201706261615-f9658c4cfc\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"A92ADEF0-4442-1578-C771-308595171C9F\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 2.3498865424956006 7.4787761252972613 7.6861327617654567 ;\n\tsetAttr \".r\" -type \"double3\" -42.938352729611822 16.999999999999176 8.3146995286574805e-16 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"8C005B33-4205-2B6E-5DD3-F4B3DBE14FD9\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999986;\n\tsetAttr \".coi\" 10.97864742285801;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" -1.1920928955078125e-07 0 -1.7881393432617188e-07 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"B634F890-474F-56B4-52E0-C7AEB7710F4E\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"18DD6E75-4E11-F0BD-0401-2B9EEA065D44\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"D419F722-42A6-068F-FF14-B28B2AA6A895\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"30F53B45-4E29-48B0-CEB2-DCB6B8A82D1C\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"CD4810C3-47B7-8603-3373-C89FBF757D1B\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"1C59FD20-47B5-83F5-CC34-2B8EA1A5766D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pSphere1\";\n\trename -uid \"6B3B0374-4B07-B65E-4784-37ACA9DE5394\";\n\tsetAttr \".t\" -type \"double3\" 2 0 0 ;\ncreateNode mesh -n \"pSphereShape1\" -p \"pSphere1\";\n\trename -uid \"CF9A0E18-4D2E-8201-8E80-2AAA6498CF7F\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\ncreateNode transform -n \"pSphere4\" -p \"pSphere1\";\n\trename -uid \"ABEF917E-4BDA-5A88-A508-1BA7BAC237FE\";\n\tsetAttr \".s\" -type \"double3\" 0.70216997125179881 0.70216997125179881 0.70216997125179881 ;\ncreateNode mesh -n \"pSphereShape2\" -p \"pSphere4\";\n\trename -uid \"5042B04E-4501-F961-3C47-D7BD6FF2EF9D\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 2 \".iog\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.50000005960464478 0.5 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\ncreateNode mesh -n \"polySurfaceShape1\" -p \"pSphere4\";\n\trename -uid \"0FA75C65-4A17-68EE-4927-E8A938EBEA0A\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 439 \".uvst[0].uvsp\";\n\tsetAttr \".uvst[0].uvsp[0:249]\" -type \"float2\" 0 0.050000001 0.050000001 0.050000001\n\t\t 0.1 0.050000001 0.15000001 0.050000001 0.2 0.050000001 0.25 0.050000001 0.30000001\n\t\t 0.050000001 0.35000002 0.050000001 0.40000004 0.050000001 0.45000005 0.050000001\n\t\t 0.50000006 0.050000001 0.55000007 0.050000001 0.60000008 0.050000001 0.6500001 0.050000001\n\t\t 0.70000011 0.050000001 0.75000012 0.050000001 0.80000013 0.050000001 0.85000014 0.050000001\n\t\t 0.90000015 0.050000001 0.95000017 0.050000001 1.000000119209 0.050000001 0 0.1 0.050000001\n\t\t 0.1 0.1 0.1 0.15000001 0.1 0.2 0.1 0.25 0.1 0.30000001 0.1 0.35000002 0.1 0.40000004\n\t\t 0.1 0.45000005 0.1 0.50000006 0.1 0.55000007 0.1 0.60000008 0.1 0.6500001 0.1 0.70000011\n\t\t 0.1 0.75000012 0.1 0.80000013 0.1 0.85000014 0.1 0.90000015 0.1 0.95000017 0.1 1.000000119209\n\t\t 0.1 0 0.15000001 0.050000001 0.15000001 0.1 0.15000001 0.15000001 0.15000001 0.2\n\t\t 0.15000001 0.25 0.15000001 0.30000001 0.15000001 0.35000002 0.15000001 0.40000004\n\t\t 0.15000001 0.45000005 0.15000001 0.50000006 0.15000001 0.55000007 0.15000001 0.60000008\n\t\t 0.15000001 0.6500001 0.15000001 0.70000011 0.15000001 0.75000012 0.15000001 0.80000013\n\t\t 0.15000001 0.85000014 0.15000001 0.90000015 0.15000001 0.95000017 0.15000001 1.000000119209\n\t\t 0.15000001 0 0.2 0.050000001 0.2 0.1 0.2 0.15000001 0.2 0.2 0.2 0.25 0.2 0.30000001\n\t\t 0.2 0.35000002 0.2 0.40000004 0.2 0.45000005 0.2 0.50000006 0.2 0.55000007 0.2 0.60000008\n\t\t 0.2 0.6500001 0.2 0.70000011 0.2 0.75000012 0.2 0.80000013 0.2 0.85000014 0.2 0.90000015\n\t\t 0.2 0.95000017 0.2 1.000000119209 0.2 0 0.25 0.050000001 0.25 0.1 0.25 0.15000001\n\t\t 0.25 0.2 0.25 0.25 0.25 0.30000001 0.25 0.35000002 0.25 0.40000004 0.25 0.45000005\n\t\t 0.25 0.50000006 0.25 0.55000007 0.25 0.60000008 0.25 0.6500001 0.25 0.70000011 0.25\n\t\t 0.75000012 0.25 0.80000013 0.25 0.85000014 0.25 0.90000015 0.25 0.95000017 0.25 1.000000119209\n\t\t 0.25 0 0.30000001 0.050000001 0.30000001 0.1 0.30000001 0.15000001 0.30000001 0.2\n\t\t 0.30000001 0.25 0.30000001 0.30000001 0.30000001 0.35000002 0.30000001 0.40000004\n\t\t 0.30000001 0.45000005 0.30000001 0.50000006 0.30000001 0.55000007 0.30000001 0.60000008\n\t\t 0.30000001 0.6500001 0.30000001 0.70000011 0.30000001 0.75000012 0.30000001 0.80000013\n\t\t 0.30000001 0.85000014 0.30000001 0.90000015 0.30000001 0.95000017 0.30000001 1.000000119209\n\t\t 0.30000001 0 0.35000002 0.050000001 0.35000002 0.1 0.35000002 0.15000001 0.35000002\n\t\t 0.2 0.35000002 0.25 0.35000002 0.30000001 0.35000002 0.35000002 0.35000002 0.40000004\n\t\t 0.35000002 0.45000005 0.35000002 0.50000006 0.35000002 0.55000007 0.35000002 0.60000008\n\t\t 0.35000002 0.6500001 0.35000002 0.70000011 0.35000002 0.75000012 0.35000002 0.80000013\n\t\t 0.35000002 0.85000014 0.35000002 0.90000015 0.35000002 0.95000017 0.35000002 1.000000119209\n\t\t 0.35000002 0 0.40000004 0.050000001 0.40000004 0.1 0.40000004 0.15000001 0.40000004\n\t\t 0.2 0.40000004 0.25 0.40000004 0.30000001 0.40000004 0.35000002 0.40000004 0.40000004\n\t\t 0.40000004 0.45000005 0.40000004 0.50000006 0.40000004 0.55000007 0.40000004 0.60000008\n\t\t 0.40000004 0.6500001 0.40000004 0.70000011 0.40000004 0.75000012 0.40000004 0.80000013\n\t\t 0.40000004 0.85000014 0.40000004 0.90000015 0.40000004 0.95000017 0.40000004 1.000000119209\n\t\t 0.40000004 0 0.45000005 0.050000001 0.45000005 0.1 0.45000005 0.15000001 0.45000005\n\t\t 0.2 0.45000005 0.25 0.45000005 0.30000001 0.45000005 0.35000002 0.45000005 0.40000004\n\t\t 0.45000005 0.45000005 0.45000005 0.50000006 0.45000005 0.55000007 0.45000005 0.60000008\n\t\t 0.45000005 0.6500001 0.45000005 0.70000011 0.45000005 0.75000012 0.45000005 0.80000013\n\t\t 0.45000005 0.85000014 0.45000005 0.90000015 0.45000005 0.95000017 0.45000005 1.000000119209\n\t\t 0.45000005 0 0.50000006 0.050000001 0.50000006 0.1 0.50000006 0.15000001 0.50000006\n\t\t 0.2 0.50000006 0.25 0.50000006 0.30000001 0.50000006 0.35000002 0.50000006 0.40000004\n\t\t 0.50000006 0.45000005 0.50000006 0.50000006 0.50000006 0.55000007 0.50000006 0.60000008\n\t\t 0.50000006 0.6500001 0.50000006 0.70000011 0.50000006 0.75000012 0.50000006 0.80000013\n\t\t 0.50000006 0.85000014 0.50000006 0.90000015 0.50000006 0.95000017 0.50000006 1.000000119209\n\t\t 0.50000006 0 0.55000007 0.050000001 0.55000007 0.1 0.55000007 0.15000001 0.55000007\n\t\t 0.2 0.55000007 0.25 0.55000007 0.30000001 0.55000007 0.35000002 0.55000007 0.40000004\n\t\t 0.55000007 0.45000005 0.55000007 0.50000006 0.55000007 0.55000007 0.55000007 0.60000008\n\t\t 0.55000007 0.6500001 0.55000007 0.70000011 0.55000007 0.75000012 0.55000007 0.80000013\n\t\t 0.55000007 0.85000014 0.55000007 0.90000015 0.55000007 0.95000017 0.55000007 1.000000119209\n\t\t 0.55000007 0 0.60000008 0.050000001 0.60000008 0.1 0.60000008 0.15000001 0.60000008\n\t\t 0.2 0.60000008 0.25 0.60000008 0.30000001 0.60000008 0.35000002 0.60000008 0.40000004\n\t\t 0.60000008 0.45000005 0.60000008 0.50000006 0.60000008 0.55000007 0.60000008 0.60000008\n\t\t 0.60000008 0.6500001 0.60000008 0.70000011 0.60000008 0.75000012 0.60000008 0.80000013\n\t\t 0.60000008 0.85000014 0.60000008 0.90000015 0.60000008;\n\tsetAttr \".uvst[0].uvsp[250:438]\" 0.95000017 0.60000008 1.000000119209 0.60000008\n\t\t 0 0.6500001 0.050000001 0.6500001 0.1 0.6500001 0.15000001 0.6500001 0.2 0.6500001\n\t\t 0.25 0.6500001 0.30000001 0.6500001 0.35000002 0.6500001 0.40000004 0.6500001 0.45000005\n\t\t 0.6500001 0.50000006 0.6500001 0.55000007 0.6500001 0.60000008 0.6500001 0.6500001\n\t\t 0.6500001 0.70000011 0.6500001 0.75000012 0.6500001 0.80000013 0.6500001 0.85000014\n\t\t 0.6500001 0.90000015 0.6500001 0.95000017 0.6500001 1.000000119209 0.6500001 0 0.70000011\n\t\t 0.050000001 0.70000011 0.1 0.70000011 0.15000001 0.70000011 0.2 0.70000011 0.25 0.70000011\n\t\t 0.30000001 0.70000011 0.35000002 0.70000011 0.40000004 0.70000011 0.45000005 0.70000011\n\t\t 0.50000006 0.70000011 0.55000007 0.70000011 0.60000008 0.70000011 0.6500001 0.70000011\n\t\t 0.70000011 0.70000011 0.75000012 0.70000011 0.80000013 0.70000011 0.85000014 0.70000011\n\t\t 0.90000015 0.70000011 0.95000017 0.70000011 1.000000119209 0.70000011 0 0.75000012\n\t\t 0.050000001 0.75000012 0.1 0.75000012 0.15000001 0.75000012 0.2 0.75000012 0.25 0.75000012\n\t\t 0.30000001 0.75000012 0.35000002 0.75000012 0.40000004 0.75000012 0.45000005 0.75000012\n\t\t 0.50000006 0.75000012 0.55000007 0.75000012 0.60000008 0.75000012 0.6500001 0.75000012\n\t\t 0.70000011 0.75000012 0.75000012 0.75000012 0.80000013 0.75000012 0.85000014 0.75000012\n\t\t 0.90000015 0.75000012 0.95000017 0.75000012 1.000000119209 0.75000012 0 0.80000013\n\t\t 0.050000001 0.80000013 0.1 0.80000013 0.15000001 0.80000013 0.2 0.80000013 0.25 0.80000013\n\t\t 0.30000001 0.80000013 0.35000002 0.80000013 0.40000004 0.80000013 0.45000005 0.80000013\n\t\t 0.50000006 0.80000013 0.55000007 0.80000013 0.60000008 0.80000013 0.6500001 0.80000013\n\t\t 0.70000011 0.80000013 0.75000012 0.80000013 0.80000013 0.80000013 0.85000014 0.80000013\n\t\t 0.90000015 0.80000013 0.95000017 0.80000013 1.000000119209 0.80000013 0 0.85000014\n\t\t 0.050000001 0.85000014 0.1 0.85000014 0.15000001 0.85000014 0.2 0.85000014 0.25 0.85000014\n\t\t 0.30000001 0.85000014 0.35000002 0.85000014 0.40000004 0.85000014 0.45000005 0.85000014\n\t\t 0.50000006 0.85000014 0.55000007 0.85000014 0.60000008 0.85000014 0.6500001 0.85000014\n\t\t 0.70000011 0.85000014 0.75000012 0.85000014 0.80000013 0.85000014 0.85000014 0.85000014\n\t\t 0.90000015 0.85000014 0.95000017 0.85000014 1.000000119209 0.85000014 0 0.90000015\n\t\t 0.050000001 0.90000015 0.1 0.90000015 0.15000001 0.90000015 0.2 0.90000015 0.25 0.90000015\n\t\t 0.30000001 0.90000015 0.35000002 0.90000015 0.40000004 0.90000015 0.45000005 0.90000015\n\t\t 0.50000006 0.90000015 0.55000007 0.90000015 0.60000008 0.90000015 0.6500001 0.90000015\n\t\t 0.70000011 0.90000015 0.75000012 0.90000015 0.80000013 0.90000015 0.85000014 0.90000015\n\t\t 0.90000015 0.90000015 0.95000017 0.90000015 1.000000119209 0.90000015 0 0.95000017\n\t\t 0.050000001 0.95000017 0.1 0.95000017 0.15000001 0.95000017 0.2 0.95000017 0.25 0.95000017\n\t\t 0.30000001 0.95000017 0.35000002 0.95000017 0.40000004 0.95000017 0.45000005 0.95000017\n\t\t 0.50000006 0.95000017 0.55000007 0.95000017 0.60000008 0.95000017 0.6500001 0.95000017\n\t\t 0.70000011 0.95000017 0.75000012 0.95000017 0.80000013 0.95000017 0.85000014 0.95000017\n\t\t 0.90000015 0.95000017 0.95000017 0.95000017 1.000000119209 0.95000017 0.025 0 0.075000003\n\t\t 0 0.125 0 0.17500001 0 0.22500001 0 0.27500001 0 0.32500002 0 0.375 0 0.42500001\n\t\t 0 0.47500002 0 0.52499998 0 0.57499999 0 0.625 0 0.67500001 0 0.72499996 0 0.77499998\n\t\t 0 0.82499999 0 0.875 0 0.92500001 0 0.97499996 0 0.025 1 0.075000003 1 0.125 1 0.17500001\n\t\t 1 0.22500001 1 0.27500001 1 0.32500002 1 0.375 1 0.42500001 1 0.47500002 1 0.52499998\n\t\t 1 0.57499999 1 0.625 1 0.67500001 1 0.72499996 1 0.77499998 1 0.82499999 1 0.875\n\t\t 1 0.92500001 1 0.97499996 1;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 382 \".vt\";\n\tsetAttr \".vt[0:165]\"  0.14877813 -0.98768836 -0.048340943 0.12655823 -0.98768836 -0.091949932\n\t\t 0.091949932 -0.98768836 -0.12655823 0.048340935 -0.98768836 -0.14877811 0 -0.98768836 -0.15643455\n\t\t -0.048340935 -0.98768836 -0.1487781 -0.091949917 -0.98768836 -0.1265582 -0.12655818 -0.98768836 -0.091949902\n\t\t -0.14877807 -0.98768836 -0.048340924 -0.15643452 -0.98768836 0 -0.14877807 -0.98768836 0.048340924\n\t\t -0.12655818 -0.98768836 0.091949895 -0.091949895 -0.98768836 0.12655817 -0.048340924 -0.98768836 0.14877805\n\t\t -4.6621107e-09 -0.98768836 0.15643449 0.048340909 -0.98768836 0.14877804 0.09194988 -0.98768836 0.12655815\n\t\t 0.12655815 -0.98768836 0.091949888 0.14877804 -0.98768836 0.048340913 0.15643448 -0.98768836 0\n\t\t 0.29389283 -0.95105654 -0.095491566 0.25000018 -0.95105654 -0.18163574 0.18163574 -0.95105654 -0.25000015\n\t\t 0.095491551 -0.95105654 -0.2938928 0 -0.95105654 -0.30901715 -0.095491551 -0.95105654 -0.29389277\n\t\t -0.18163571 -0.95105654 -0.25000009 -0.25000009 -0.95105654 -0.18163569 -0.29389271 -0.95105654 -0.095491529\n\t\t -0.30901706 -0.95105654 0 -0.29389271 -0.95105654 0.095491529 -0.25000006 -0.95105654 0.18163568\n\t\t -0.18163568 -0.95105654 0.25000006 -0.095491529 -0.95105654 0.29389268 -9.2094243e-09 -0.95105654 0.30901703\n\t\t 0.095491499 -0.95105654 0.29389265 0.18163563 -0.95105654 0.25000003 0.25 -0.95105654 0.18163565\n\t\t 0.29389265 -0.95105654 0.095491506 0.309017 -0.95105654 0 0.43177092 -0.89100653 -0.14029087\n\t\t 0.36728629 -0.89100653 -0.2668491 0.2668491 -0.89100653 -0.36728626 0.14029086 -0.89100653 -0.43177086\n\t\t 0 -0.89100653 -0.45399073 -0.14029086 -0.89100653 -0.43177083 -0.26684904 -0.89100653 -0.36728618\n\t\t -0.36728615 -0.89100653 -0.26684901 -0.43177077 -0.89100653 -0.14029081 -0.45399064 -0.89100653 0\n\t\t -0.43177077 -0.89100653 0.14029081 -0.36728612 -0.89100653 0.26684898 -0.26684898 -0.89100653 0.36728612\n\t\t -0.14029081 -0.89100653 0.43177071 -1.3529972e-08 -0.89100653 0.45399058 0.14029078 -0.89100653 0.43177068\n\t\t 0.26684892 -0.89100653 0.36728609 0.36728606 -0.89100653 0.26684895 0.43177065 -0.89100653 0.1402908\n\t\t 0.45399052 -0.89100653 0 0.55901736 -0.809017 -0.18163574 0.47552857 -0.809017 -0.34549171\n\t\t 0.34549171 -0.809017 -0.47552854 0.18163572 -0.809017 -0.5590173 0 -0.809017 -0.58778554\n\t\t -0.18163572 -0.809017 -0.55901724 -0.34549165 -0.809017 -0.47552842 -0.47552839 -0.809017 -0.34549159\n\t\t -0.55901712 -0.809017 -0.18163566 -0.58778536 -0.809017 0 -0.55901712 -0.809017 0.18163566\n\t\t -0.47552836 -0.809017 0.34549156 -0.34549156 -0.809017 0.47552833 -0.18163566 -0.809017 0.55901706\n\t\t -1.7517365e-08 -0.809017 0.5877853 0.18163562 -0.809017 0.55901706 0.3454915 -0.809017 0.4755283\n\t\t 0.47552827 -0.809017 0.34549153 0.559017 -0.809017 0.18163563 0.58778524 -0.809017 0\n\t\t 0.67249894 -0.70710677 -0.21850814 0.57206178 -0.70710677 -0.41562718 0.41562718 -0.70710677 -0.57206172\n\t\t 0.21850812 -0.70710677 -0.67249888 0 -0.70710677 -0.70710713 -0.21850812 -0.70710677 -0.67249882\n\t\t -0.41562709 -0.70710677 -0.5720616 -0.57206154 -0.70710677 -0.41562706 -0.6724987 -0.70710677 -0.21850805\n\t\t -0.70710695 -0.70710677 0 -0.6724987 -0.70710677 0.21850805 -0.57206154 -0.70710677 0.415627\n\t\t -0.415627 -0.70710677 0.57206148 -0.21850805 -0.70710677 0.67249858 -2.1073424e-08 -0.70710677 0.70710683\n\t\t 0.21850799 -0.70710677 0.67249858 0.41562691 -0.70710677 0.57206142 0.57206142 -0.70710677 0.41562697\n\t\t 0.67249852 -0.70710677 0.21850802 0.70710677 -0.70710677 0 0.7694214 -0.58778524 -0.25000015\n\t\t 0.65450895 -0.58778524 -0.47552854 0.47552854 -0.58778524 -0.65450889 0.25000012 -0.58778524 -0.76942128\n\t\t 0 -0.58778524 -0.80901736 -0.25000012 -0.58778524 -0.76942122 -0.47552845 -0.58778524 -0.65450877\n\t\t -0.65450871 -0.58778524 -0.47552839 -0.7694211 -0.58778524 -0.25000006 -0.80901718 -0.58778524 0\n\t\t -0.7694211 -0.58778524 0.25000006 -0.65450865 -0.58778524 0.47552836 -0.47552836 -0.58778524 0.65450859\n\t\t -0.25000006 -0.58778524 0.76942098 -2.4110586e-08 -0.58778524 0.80901712 0.24999999 -0.58778524 0.76942098\n\t\t 0.47552827 -0.58778524 0.65450853 0.65450853 -0.58778524 0.4755283 0.76942092 -0.58778524 0.25\n\t\t 0.809017 -0.58778524 0 0.8473981 -0.45399052 -0.27533633 0.72083992 -0.45399052 -0.5237208\n\t\t 0.5237208 -0.45399052 -0.72083986 0.2753363 -0.45399052 -0.84739798 0 -0.45399052 -0.89100695\n\t\t -0.2753363 -0.45399052 -0.84739798 -0.52372068 -0.45399052 -0.72083968 -0.72083962 -0.45399052 -0.52372062\n\t\t -0.8473978 -0.45399052 -0.27533621 -0.89100677 -0.45399052 0 -0.8473978 -0.45399052 0.27533621\n\t\t -0.72083962 -0.45399052 0.52372062 -0.52372062 -0.45399052 0.72083956 -0.27533621 -0.45399052 0.84739769\n\t\t -2.6554064e-08 -0.45399052 0.89100665 0.27533615 -0.45399052 0.84739763 0.5237205 -0.45399052 0.7208395\n\t\t 0.72083944 -0.45399052 0.52372056 0.84739757 -0.45399052 0.27533618 0.89100653 -0.45399052 0\n\t\t 0.90450913 -0.30901697 -0.2938928 0.7694214 -0.30901697 -0.55901736 0.55901736 -0.30901697 -0.76942134\n\t\t 0.29389277 -0.30901697 -0.90450901 0 -0.30901697 -0.95105702 -0.29389277 -0.30901697 -0.90450895\n\t\t -0.55901724 -0.30901697 -0.76942122 -0.76942116 -0.30901697 -0.55901718 -0.90450877 -0.30901697 -0.29389271\n\t\t -0.95105678 -0.30901697 0 -0.90450877 -0.30901697 0.29389271 -0.7694211 -0.30901697 0.55901712\n\t\t -0.55901712 -0.30901697 0.76942104 -0.29389271 -0.30901697 0.90450865 -2.8343694e-08 -0.30901697 0.95105666\n\t\t 0.29389262 -0.30901697 0.90450859 0.559017 -0.30901697 0.76942098 0.76942092 -0.30901697 0.55901706\n\t\t 0.90450853 -0.30901697 0.29389265 0.95105654 -0.30901697 0 0.93934804 -0.15643437 -0.30521268\n\t\t 0.79905719 -0.15643437 -0.580549 0.580549 -0.15643437 -0.79905713 0.30521265 -0.15643437 -0.93934792\n\t\t 0 -0.15643437 -0.98768884 -0.30521265 -0.15643437 -0.93934786;\n\tsetAttr \".vt[166:331]\" -0.58054888 -0.15643437 -0.79905695 -0.79905689 -0.15643437 -0.58054882\n\t\t -0.93934768 -0.15643437 -0.30521256 -0.9876886 -0.15643437 0 -0.93934768 -0.15643437 0.30521256\n\t\t -0.79905683 -0.15643437 0.58054876 -0.58054876 -0.15643437 0.79905677 -0.30521256 -0.15643437 0.93934757\n\t\t -2.9435407e-08 -0.15643437 0.98768848 0.30521247 -0.15643437 0.93934757 0.58054864 -0.15643437 0.79905671\n\t\t 0.79905665 -0.15643437 0.5805487 0.93934751 -0.15643437 0.3052125 0.98768836 -0.15643437 0\n\t\t 0.95105714 0 -0.30901718 0.80901754 0 -0.5877856 0.5877856 0 -0.80901748 0.30901715 0 -0.95105702\n\t\t 0 0 -1.000000476837 -0.30901715 0 -0.95105696 -0.58778548 0 -0.8090173 -0.80901724 0 -0.58778542\n\t\t -0.95105678 0 -0.30901706 -1.000000238419 0 0 -0.95105678 0 0.30901706 -0.80901718 0 0.58778536\n\t\t -0.58778536 0 0.80901712 -0.30901706 0 0.95105666 -2.9802322e-08 0 1.000000119209\n\t\t 0.30901697 0 0.9510566 0.58778524 0 0.80901706 0.809017 0 0.5877853 0.95105654 0 0.309017\n\t\t 1 0 0 0.93934804 0.15643437 -0.30521268 0.79905719 0.15643437 -0.580549 0.580549 0.15643437 -0.79905713\n\t\t 0.30521265 0.15643437 -0.93934792 0 0.15643437 -0.98768884 -0.30521265 0.15643437 -0.93934786\n\t\t -0.58054888 0.15643437 -0.79905695 -0.79905689 0.15643437 -0.58054882 -0.93934768 0.15643437 -0.30521256\n\t\t -0.9876886 0.15643437 0 -0.93934768 0.15643437 0.30521256 -0.79905683 0.15643437 0.58054876\n\t\t -0.58054876 0.15643437 0.79905677 -0.30521256 0.15643437 0.93934757 -2.9435407e-08 0.15643437 0.98768848\n\t\t 0.30521247 0.15643437 0.93934757 0.58054864 0.15643437 0.79905671 0.79905665 0.15643437 0.5805487\n\t\t 0.93934751 0.15643437 0.3052125 0.98768836 0.15643437 0 0.90450913 0.30901697 -0.2938928\n\t\t 0.7694214 0.30901697 -0.55901736 0.55901736 0.30901697 -0.76942134 0.29389277 0.30901697 -0.90450901\n\t\t 0 0.30901697 -0.95105702 -0.29389277 0.30901697 -0.90450895 -0.55901724 0.30901697 -0.76942122\n\t\t -0.76942116 0.30901697 -0.55901718 -0.90450877 0.30901697 -0.29389271 -0.95105678 0.30901697 0\n\t\t -0.90450877 0.30901697 0.29389271 -0.7694211 0.30901697 0.55901712 -0.55901712 0.30901697 0.76942104\n\t\t -0.29389271 0.30901697 0.90450865 -2.8343694e-08 0.30901697 0.95105666 0.29389262 0.30901697 0.90450859\n\t\t 0.559017 0.30901697 0.76942098 0.76942092 0.30901697 0.55901706 0.90450853 0.30901697 0.29389265\n\t\t 0.95105654 0.30901697 0 0.8473981 0.45399052 -0.27533633 0.72083992 0.45399052 -0.5237208\n\t\t 0.5237208 0.45399052 -0.72083986 0.2753363 0.45399052 -0.84739798 0 0.45399052 -0.89100695\n\t\t -0.2753363 0.45399052 -0.84739798 -0.52372068 0.45399052 -0.72083968 -0.72083962 0.45399052 -0.52372062\n\t\t -0.8473978 0.45399052 -0.27533621 -0.89100677 0.45399052 0 -0.8473978 0.45399052 0.27533621\n\t\t -0.72083962 0.45399052 0.52372062 -0.52372062 0.45399052 0.72083956 -0.27533621 0.45399052 0.84739769\n\t\t -2.6554064e-08 0.45399052 0.89100665 0.27533615 0.45399052 0.84739763 0.5237205 0.45399052 0.7208395\n\t\t 0.72083944 0.45399052 0.52372056 0.84739757 0.45399052 0.27533618 0.89100653 0.45399052 0\n\t\t 0.7694214 0.58778524 -0.25000015 0.65450895 0.58778524 -0.47552854 0.47552854 0.58778524 -0.65450889\n\t\t 0.25000012 0.58778524 -0.76942128 0 0.58778524 -0.80901736 -0.25000012 0.58778524 -0.76942122\n\t\t -0.47552845 0.58778524 -0.65450877 -0.65450871 0.58778524 -0.47552839 -0.7694211 0.58778524 -0.25000006\n\t\t -0.80901718 0.58778524 0 -0.7694211 0.58778524 0.25000006 -0.65450865 0.58778524 0.47552836\n\t\t -0.47552836 0.58778524 0.65450859 -0.25000006 0.58778524 0.76942098 -2.4110586e-08 0.58778524 0.80901712\n\t\t 0.24999999 0.58778524 0.76942098 0.47552827 0.58778524 0.65450853 0.65450853 0.58778524 0.4755283\n\t\t 0.76942092 0.58778524 0.25 0.809017 0.58778524 0 0.67249894 0.70710677 -0.21850814\n\t\t 0.57206178 0.70710677 -0.41562718 0.41562718 0.70710677 -0.57206172 0.21850812 0.70710677 -0.67249888\n\t\t 0 0.70710677 -0.70710713 -0.21850812 0.70710677 -0.67249882 -0.41562709 0.70710677 -0.5720616\n\t\t -0.57206154 0.70710677 -0.41562706 -0.6724987 0.70710677 -0.21850805 -0.70710695 0.70710677 0\n\t\t -0.6724987 0.70710677 0.21850805 -0.57206154 0.70710677 0.415627 -0.415627 0.70710677 0.57206148\n\t\t -0.21850805 0.70710677 0.67249858 -2.1073424e-08 0.70710677 0.70710683 0.21850799 0.70710677 0.67249858\n\t\t 0.41562691 0.70710677 0.57206142 0.57206142 0.70710677 0.41562697 0.67249852 0.70710677 0.21850802\n\t\t 0.70710677 0.70710677 0 0.55901736 0.809017 -0.18163574 0.47552857 0.809017 -0.34549171\n\t\t 0.34549171 0.809017 -0.47552854 0.18163572 0.809017 -0.5590173 0 0.809017 -0.58778554\n\t\t -0.18163572 0.809017 -0.55901724 -0.34549165 0.809017 -0.47552842 -0.47552839 0.809017 -0.34549159\n\t\t -0.55901712 0.809017 -0.18163566 -0.58778536 0.809017 0 -0.55901712 0.809017 0.18163566\n\t\t -0.47552836 0.809017 0.34549156 -0.34549156 0.809017 0.47552833 -0.18163566 0.809017 0.55901706\n\t\t -1.7517365e-08 0.809017 0.5877853 0.18163562 0.809017 0.55901706 0.3454915 0.809017 0.4755283\n\t\t 0.47552827 0.809017 0.34549153 0.559017 0.809017 0.18163563 0.58778524 0.809017 0\n\t\t 0.43177092 0.89100653 -0.14029087 0.36728629 0.89100653 -0.2668491 0.2668491 0.89100653 -0.36728626\n\t\t 0.14029086 0.89100653 -0.43177086 0 0.89100653 -0.45399073 -0.14029086 0.89100653 -0.43177083\n\t\t -0.26684904 0.89100653 -0.36728618 -0.36728615 0.89100653 -0.26684901 -0.43177077 0.89100653 -0.14029081\n\t\t -0.45399064 0.89100653 0 -0.43177077 0.89100653 0.14029081 -0.36728612 0.89100653 0.26684898;\n\tsetAttr \".vt[332:381]\" -0.26684898 0.89100653 0.36728612 -0.14029081 0.89100653 0.43177071\n\t\t -1.3529972e-08 0.89100653 0.45399058 0.14029078 0.89100653 0.43177068 0.26684892 0.89100653 0.36728609\n\t\t 0.36728606 0.89100653 0.26684895 0.43177065 0.89100653 0.1402908 0.45399052 0.89100653 0\n\t\t 0.29389283 0.95105654 -0.095491566 0.25000018 0.95105654 -0.18163574 0.18163574 0.95105654 -0.25000015\n\t\t 0.095491551 0.95105654 -0.2938928 0 0.95105654 -0.30901715 -0.095491551 0.95105654 -0.29389277\n\t\t -0.18163571 0.95105654 -0.25000009 -0.25000009 0.95105654 -0.18163569 -0.29389271 0.95105654 -0.095491529\n\t\t -0.30901706 0.95105654 0 -0.29389271 0.95105654 0.095491529 -0.25000006 0.95105654 0.18163568\n\t\t -0.18163568 0.95105654 0.25000006 -0.095491529 0.95105654 0.29389268 -9.2094243e-09 0.95105654 0.30901703\n\t\t 0.095491499 0.95105654 0.29389265 0.18163563 0.95105654 0.25000003 0.25 0.95105654 0.18163565\n\t\t 0.29389265 0.95105654 0.095491506 0.309017 0.95105654 0 0.14877813 0.98768836 -0.048340943\n\t\t 0.12655823 0.98768836 -0.091949932 0.091949932 0.98768836 -0.12655823 0.048340935 0.98768836 -0.14877811\n\t\t 0 0.98768836 -0.15643455 -0.048340935 0.98768836 -0.1487781 -0.091949917 0.98768836 -0.1265582\n\t\t -0.12655818 0.98768836 -0.091949902 -0.14877807 0.98768836 -0.048340924 -0.15643452 0.98768836 0\n\t\t -0.14877807 0.98768836 0.048340924 -0.12655818 0.98768836 0.091949895 -0.091949895 0.98768836 0.12655817\n\t\t -0.048340924 0.98768836 0.14877805 -4.6621107e-09 0.98768836 0.15643449 0.048340909 0.98768836 0.14877804\n\t\t 0.09194988 0.98768836 0.12655815 0.12655815 0.98768836 0.091949888 0.14877804 0.98768836 0.048340913\n\t\t 0.15643448 0.98768836 0 0 -1 0 0 1 0;\n\tsetAttr -s 780 \".ed\";\n\tsetAttr \".ed[0:165]\"  0 1 1 1 2 1 2 3 1 3 4 1 4 5 1 5 6 1 6 7 1 7 8 1 8 9 1\n\t\t 9 10 1 10 11 1 11 12 1 12 13 1 13 14 1 14 15 1 15 16 1 16 17 1 17 18 1 18 19 1 19 0 1\n\t\t 20 21 1 21 22 1 22 23 1 23 24 1 24 25 1 25 26 1 26 27 1 27 28 1 28 29 1 29 30 1 30 31 1\n\t\t 31 32 1 32 33 1 33 34 1 34 35 1 35 36 1 36 37 1 37 38 1 38 39 1 39 20 1 40 41 1 41 42 1\n\t\t 42 43 1 43 44 1 44 45 1 45 46 1 46 47 1 47 48 1 48 49 1 49 50 1 50 51 1 51 52 1 52 53 1\n\t\t 53 54 1 54 55 1 55 56 1 56 57 1 57 58 1 58 59 1 59 40 1 60 61 1 61 62 1 62 63 1 63 64 1\n\t\t 64 65 1 65 66 1 66 67 1 67 68 1 68 69 1 69 70 1 70 71 1 71 72 1 72 73 1 73 74 1 74 75 1\n\t\t 75 76 1 76 77 1 77 78 1 78 79 1 79 60 1 80 81 1 81 82 1 82 83 1 83 84 1 84 85 1 85 86 1\n\t\t 86 87 1 87 88 1 88 89 1 89 90 1 90 91 1 91 92 1 92 93 1 93 94 1 94 95 1 95 96 1 96 97 1\n\t\t 97 98 1 98 99 1 99 80 1 100 101 1 101 102 1 102 103 1 103 104 1 104 105 1 105 106 1\n\t\t 106 107 1 107 108 1 108 109 1 109 110 1 110 111 1 111 112 1 112 113 1 113 114 1 114 115 1\n\t\t 115 116 1 116 117 1 117 118 1 118 119 1 119 100 1 120 121 1 121 122 1 122 123 1 123 124 1\n\t\t 124 125 1 125 126 1 126 127 1 127 128 1 128 129 1 129 130 1 130 131 1 131 132 1 132 133 1\n\t\t 133 134 1 134 135 1 135 136 1 136 137 1 137 138 1 138 139 1 139 120 1 140 141 1 141 142 1\n\t\t 142 143 1 143 144 1 144 145 1 145 146 1 146 147 1 147 148 1 148 149 1 149 150 1 150 151 1\n\t\t 151 152 1 152 153 1 153 154 1 154 155 1 155 156 1 156 157 1 157 158 1 158 159 1 159 140 1\n\t\t 160 161 1 161 162 1 162 163 1 163 164 1 164 165 1 165 166 1;\n\tsetAttr \".ed[166:331]\" 166 167 1 167 168 1 168 169 1 169 170 1 170 171 1 171 172 1\n\t\t 172 173 1 173 174 1 174 175 1 175 176 1 176 177 1 177 178 1 178 179 1 179 160 1 180 181 1\n\t\t 181 182 1 182 183 1 183 184 1 184 185 1 185 186 1 186 187 1 187 188 1 188 189 1 189 190 1\n\t\t 190 191 1 191 192 1 192 193 1 193 194 1 194 195 1 195 196 1 196 197 1 197 198 1 198 199 1\n\t\t 199 180 1 200 201 1 201 202 1 202 203 1 203 204 1 204 205 1 205 206 1 206 207 1 207 208 1\n\t\t 208 209 1 209 210 1 210 211 1 211 212 1 212 213 1 213 214 1 214 215 1 215 216 1 216 217 1\n\t\t 217 218 1 218 219 1 219 200 1 220 221 1 221 222 1 222 223 1 223 224 1 224 225 1 225 226 1\n\t\t 226 227 1 227 228 1 228 229 1 229 230 1 230 231 1 231 232 1 232 233 1 233 234 1 234 235 1\n\t\t 235 236 1 236 237 1 237 238 1 238 239 1 239 220 1 240 241 1 241 242 1 242 243 1 243 244 1\n\t\t 244 245 1 245 246 1 246 247 1 247 248 1 248 249 1 249 250 1 250 251 1 251 252 1 252 253 1\n\t\t 253 254 1 254 255 1 255 256 1 256 257 1 257 258 1 258 259 1 259 240 1 260 261 1 261 262 1\n\t\t 262 263 1 263 264 1 264 265 1 265 266 1 266 267 1 267 268 1 268 269 1 269 270 1 270 271 1\n\t\t 271 272 1 272 273 1 273 274 1 274 275 1 275 276 1 276 277 1 277 278 1 278 279 1 279 260 1\n\t\t 280 281 1 281 282 1 282 283 1 283 284 1 284 285 1 285 286 1 286 287 1 287 288 1 288 289 1\n\t\t 289 290 1 290 291 1 291 292 1 292 293 1 293 294 1 294 295 1 295 296 1 296 297 1 297 298 1\n\t\t 298 299 1 299 280 1 300 301 1 301 302 1 302 303 1 303 304 1 304 305 1 305 306 1 306 307 1\n\t\t 307 308 1 308 309 1 309 310 1 310 311 1 311 312 1 312 313 1 313 314 1 314 315 1 315 316 1\n\t\t 316 317 1 317 318 1 318 319 1 319 300 1 320 321 1 321 322 1 322 323 1 323 324 1 324 325 1\n\t\t 325 326 1 326 327 1 327 328 1 328 329 1 329 330 1 330 331 1 331 332 1;\n\tsetAttr \".ed[332:497]\" 332 333 1 333 334 1 334 335 1 335 336 1 336 337 1 337 338 1\n\t\t 338 339 1 339 320 1 340 341 1 341 342 1 342 343 1 343 344 1 344 345 1 345 346 1 346 347 1\n\t\t 347 348 1 348 349 1 349 350 1 350 351 1 351 352 1 352 353 1 353 354 1 354 355 1 355 356 1\n\t\t 356 357 1 357 358 1 358 359 1 359 340 1 360 361 1 361 362 1 362 363 1 363 364 1 364 365 1\n\t\t 365 366 1 366 367 1 367 368 1 368 369 1 369 370 1 370 371 1 371 372 1 372 373 1 373 374 1\n\t\t 374 375 1 375 376 1 376 377 1 377 378 1 378 379 1 379 360 1 0 20 1 1 21 1 2 22 1\n\t\t 3 23 1 4 24 1 5 25 1 6 26 1 7 27 1 8 28 1 9 29 1 10 30 1 11 31 1 12 32 1 13 33 1\n\t\t 14 34 1 15 35 1 16 36 1 17 37 1 18 38 1 19 39 1 20 40 1 21 41 1 22 42 1 23 43 1 24 44 1\n\t\t 25 45 1 26 46 1 27 47 1 28 48 1 29 49 1 30 50 1 31 51 1 32 52 1 33 53 1 34 54 1 35 55 1\n\t\t 36 56 1 37 57 1 38 58 1 39 59 1 40 60 1 41 61 1 42 62 1 43 63 1 44 64 1 45 65 1 46 66 1\n\t\t 47 67 1 48 68 1 49 69 1 50 70 1 51 71 1 52 72 1 53 73 1 54 74 1 55 75 1 56 76 1 57 77 1\n\t\t 58 78 1 59 79 1 60 80 1 61 81 1 62 82 1 63 83 1 64 84 1 65 85 1 66 86 1 67 87 1 68 88 1\n\t\t 69 89 1 70 90 1 71 91 1 72 92 1 73 93 1 74 94 1 75 95 1 76 96 1 77 97 1 78 98 1 79 99 1\n\t\t 80 100 1 81 101 1 82 102 1 83 103 1 84 104 1 85 105 1 86 106 1 87 107 1 88 108 1\n\t\t 89 109 1 90 110 1 91 111 1 92 112 1 93 113 1 94 114 1 95 115 1 96 116 1 97 117 1\n\t\t 98 118 1 99 119 1 100 120 1 101 121 1 102 122 1 103 123 1 104 124 1 105 125 1 106 126 1\n\t\t 107 127 1 108 128 1 109 129 1 110 130 1 111 131 1 112 132 1 113 133 1 114 134 1 115 135 1\n\t\t 116 136 1 117 137 1;\n\tsetAttr \".ed[498:663]\" 118 138 1 119 139 1 120 140 1 121 141 1 122 142 1 123 143 1\n\t\t 124 144 1 125 145 1 126 146 1 127 147 1 128 148 1 129 149 1 130 150 1 131 151 1 132 152 1\n\t\t 133 153 1 134 154 1 135 155 1 136 156 1 137 157 1 138 158 1 139 159 1 140 160 1 141 161 1\n\t\t 142 162 1 143 163 1 144 164 1 145 165 1 146 166 1 147 167 1 148 168 1 149 169 1 150 170 1\n\t\t 151 171 1 152 172 1 153 173 1 154 174 1 155 175 1 156 176 1 157 177 1 158 178 1 159 179 1\n\t\t 160 180 1 161 181 1 162 182 1 163 183 1 164 184 1 165 185 1 166 186 1 167 187 1 168 188 1\n\t\t 169 189 1 170 190 1 171 191 1 172 192 1 173 193 1 174 194 1 175 195 1 176 196 1 177 197 1\n\t\t 178 198 1 179 199 1 180 200 1 181 201 1 182 202 1 183 203 1 184 204 1 185 205 1 186 206 1\n\t\t 187 207 1 188 208 1 189 209 1 190 210 1 191 211 1 192 212 1 193 213 1 194 214 1 195 215 1\n\t\t 196 216 1 197 217 1 198 218 1 199 219 1 200 220 1 201 221 1 202 222 1 203 223 1 204 224 1\n\t\t 205 225 1 206 226 1 207 227 1 208 228 1 209 229 1 210 230 1 211 231 1 212 232 1 213 233 1\n\t\t 214 234 1 215 235 1 216 236 1 217 237 1 218 238 1 219 239 1 220 240 1 221 241 1 222 242 1\n\t\t 223 243 1 224 244 1 225 245 1 226 246 1 227 247 1 228 248 1 229 249 1 230 250 1 231 251 1\n\t\t 232 252 1 233 253 1 234 254 1 235 255 1 236 256 1 237 257 1 238 258 1 239 259 1 240 260 1\n\t\t 241 261 1 242 262 1 243 263 1 244 264 1 245 265 1 246 266 1 247 267 1 248 268 1 249 269 1\n\t\t 250 270 1 251 271 1 252 272 1 253 273 1 254 274 1 255 275 1 256 276 1 257 277 1 258 278 1\n\t\t 259 279 1 260 280 1 261 281 1 262 282 1 263 283 1 264 284 1 265 285 1 266 286 1 267 287 1\n\t\t 268 288 1 269 289 1 270 290 1 271 291 1 272 292 1 273 293 1 274 294 1 275 295 1 276 296 1\n\t\t 277 297 1 278 298 1 279 299 1 280 300 1 281 301 1 282 302 1 283 303 1;\n\tsetAttr \".ed[664:779]\" 284 304 1 285 305 1 286 306 1 287 307 1 288 308 1 289 309 1\n\t\t 290 310 1 291 311 1 292 312 1 293 313 1 294 314 1 295 315 1 296 316 1 297 317 1 298 318 1\n\t\t 299 319 1 300 320 1 301 321 1 302 322 1 303 323 1 304 324 1 305 325 1 306 326 1 307 327 1\n\t\t 308 328 1 309 329 1 310 330 1 311 331 1 312 332 1 313 333 1 314 334 1 315 335 1 316 336 1\n\t\t 317 337 1 318 338 1 319 339 1 320 340 1 321 341 1 322 342 1 323 343 1 324 344 1 325 345 1\n\t\t 326 346 1 327 347 1 328 348 1 329 349 1 330 350 1 331 351 1 332 352 1 333 353 1 334 354 1\n\t\t 335 355 1 336 356 1 337 357 1 338 358 1 339 359 1 340 360 1 341 361 1 342 362 1 343 363 1\n\t\t 344 364 1 345 365 1 346 366 1 347 367 1 348 368 1 349 369 1 350 370 1 351 371 1 352 372 1\n\t\t 353 373 1 354 374 1 355 375 1 356 376 1 357 377 1 358 378 1 359 379 1 380 0 1 380 1 1\n\t\t 380 2 1 380 3 1 380 4 1 380 5 1 380 6 1 380 7 1 380 8 1 380 9 1 380 10 1 380 11 1\n\t\t 380 12 1 380 13 1 380 14 1 380 15 1 380 16 1 380 17 1 380 18 1 380 19 1 360 381 1\n\t\t 361 381 1 362 381 1 363 381 1 364 381 1 365 381 1 366 381 1 367 381 1 368 381 1 369 381 1\n\t\t 370 381 1 371 381 1 372 381 1 373 381 1 374 381 1 375 381 1 376 381 1 377 381 1 378 381 1\n\t\t 379 381 1;\n\tsetAttr -s 400 -ch 1560 \".fc[0:399]\" -type \"polyFaces\" \n\t\tf 4 0 381 -21 -381\n\t\tmu 0 4 0 1 22 21\n\t\tf 4 1 382 -22 -382\n\t\tmu 0 4 1 2 23 22\n\t\tf 4 2 383 -23 -383\n\t\tmu 0 4 2 3 24 23\n\t\tf 4 3 384 -24 -384\n\t\tmu 0 4 3 4 25 24\n\t\tf 4 4 385 -25 -385\n\t\tmu 0 4 4 5 26 25\n\t\tf 4 5 386 -26 -386\n\t\tmu 0 4 5 6 27 26\n\t\tf 4 6 387 -27 -387\n\t\tmu 0 4 6 7 28 27\n\t\tf 4 7 388 -28 -388\n\t\tmu 0 4 7 8 29 28\n\t\tf 4 8 389 -29 -389\n\t\tmu 0 4 8 9 30 29\n\t\tf 4 9 390 -30 -390\n\t\tmu 0 4 9 10 31 30\n\t\tf 4 10 391 -31 -391\n\t\tmu 0 4 10 11 32 31\n\t\tf 4 11 392 -32 -392\n\t\tmu 0 4 11 12 33 32\n\t\tf 4 12 393 -33 -393\n\t\tmu 0 4 12 13 34 33\n\t\tf 4 13 394 -34 -394\n\t\tmu 0 4 13 14 35 34\n\t\tf 4 14 395 -35 -395\n\t\tmu 0 4 14 15 36 35\n\t\tf 4 15 396 -36 -396\n\t\tmu 0 4 15 16 37 36\n\t\tf 4 16 397 -37 -397\n\t\tmu 0 4 16 17 38 37\n\t\tf 4 17 398 -38 -398\n\t\tmu 0 4 17 18 39 38\n\t\tf 4 18 399 -39 -399\n\t\tmu 0 4 18 19 40 39\n\t\tf 4 19 380 -40 -400\n\t\tmu 0 4 19 20 41 40\n\t\tf 4 20 401 -41 -401\n\t\tmu 0 4 21 22 43 42\n\t\tf 4 21 402 -42 -402\n\t\tmu 0 4 22 23 44 43\n\t\tf 4 22 403 -43 -403\n\t\tmu 0 4 23 24 45 44\n\t\tf 4 23 404 -44 -404\n\t\tmu 0 4 24 25 46 45\n\t\tf 4 24 405 -45 -405\n\t\tmu 0 4 25 26 47 46\n\t\tf 4 25 406 -46 -406\n\t\tmu 0 4 26 27 48 47\n\t\tf 4 26 407 -47 -407\n\t\tmu 0 4 27 28 49 48\n\t\tf 4 27 408 -48 -408\n\t\tmu 0 4 28 29 50 49\n\t\tf 4 28 409 -49 -409\n\t\tmu 0 4 29 30 51 50\n\t\tf 4 29 410 -50 -410\n\t\tmu 0 4 30 31 52 51\n\t\tf 4 30 411 -51 -411\n\t\tmu 0 4 31 32 53 52\n\t\tf 4 31 412 -52 -412\n\t\tmu 0 4 32 33 54 53\n\t\tf 4 32 413 -53 -413\n\t\tmu 0 4 33 34 55 54\n\t\tf 4 33 414 -54 -414\n\t\tmu 0 4 34 35 56 55\n\t\tf 4 34 415 -55 -415\n\t\tmu 0 4 35 36 57 56\n\t\tf 4 35 416 -56 -416\n\t\tmu 0 4 36 37 58 57\n\t\tf 4 36 417 -57 -417\n\t\tmu 0 4 37 38 59 58\n\t\tf 4 37 418 -58 -418\n\t\tmu 0 4 38 39 60 59\n\t\tf 4 38 419 -59 -419\n\t\tmu 0 4 39 40 61 60\n\t\tf 4 39 400 -60 -420\n\t\tmu 0 4 40 41 62 61\n\t\tf 4 40 421 -61 -421\n\t\tmu 0 4 42 43 64 63\n\t\tf 4 41 422 -62 -422\n\t\tmu 0 4 43 44 65 64\n\t\tf 4 42 423 -63 -423\n\t\tmu 0 4 44 45 66 65\n\t\tf 4 43 424 -64 -424\n\t\tmu 0 4 45 46 67 66\n\t\tf 4 44 425 -65 -425\n\t\tmu 0 4 46 47 68 67\n\t\tf 4 45 426 -66 -426\n\t\tmu 0 4 47 48 69 68\n\t\tf 4 46 427 -67 -427\n\t\tmu 0 4 48 49 70 69\n\t\tf 4 47 428 -68 -428\n\t\tmu 0 4 49 50 71 70\n\t\tf 4 48 429 -69 -429\n\t\tmu 0 4 50 51 72 71\n\t\tf 4 49 430 -70 -430\n\t\tmu 0 4 51 52 73 72\n\t\tf 4 50 431 -71 -431\n\t\tmu 0 4 52 53 74 73\n\t\tf 4 51 432 -72 -432\n\t\tmu 0 4 53 54 75 74\n\t\tf 4 52 433 -73 -433\n\t\tmu 0 4 54 55 76 75\n\t\tf 4 53 434 -74 -434\n\t\tmu 0 4 55 56 77 76\n\t\tf 4 54 435 -75 -435\n\t\tmu 0 4 56 57 78 77\n\t\tf 4 55 436 -76 -436\n\t\tmu 0 4 57 58 79 78\n\t\tf 4 56 437 -77 -437\n\t\tmu 0 4 58 59 80 79\n\t\tf 4 57 438 -78 -438\n\t\tmu 0 4 59 60 81 80\n\t\tf 4 58 439 -79 -439\n\t\tmu 0 4 60 61 82 81\n\t\tf 4 59 420 -80 -440\n\t\tmu 0 4 61 62 83 82\n\t\tf 4 60 441 -81 -441\n\t\tmu 0 4 63 64 85 84\n\t\tf 4 61 442 -82 -442\n\t\tmu 0 4 64 65 86 85\n\t\tf 4 62 443 -83 -443\n\t\tmu 0 4 65 66 87 86\n\t\tf 4 63 444 -84 -444\n\t\tmu 0 4 66 67 88 87\n\t\tf 4 64 445 -85 -445\n\t\tmu 0 4 67 68 89 88\n\t\tf 4 65 446 -86 -446\n\t\tmu 0 4 68 69 90 89\n\t\tf 4 66 447 -87 -447\n\t\tmu 0 4 69 70 91 90\n\t\tf 4 67 448 -88 -448\n\t\tmu 0 4 70 71 92 91\n\t\tf 4 68 449 -89 -449\n\t\tmu 0 4 71 72 93 92\n\t\tf 4 69 450 -90 -450\n\t\tmu 0 4 72 73 94 93\n\t\tf 4 70 451 -91 -451\n\t\tmu 0 4 73 74 95 94\n\t\tf 4 71 452 -92 -452\n\t\tmu 0 4 74 75 96 95\n\t\tf 4 72 453 -93 -453\n\t\tmu 0 4 75 76 97 96\n\t\tf 4 73 454 -94 -454\n\t\tmu 0 4 76 77 98 97\n\t\tf 4 74 455 -95 -455\n\t\tmu 0 4 77 78 99 98\n\t\tf 4 75 456 -96 -456\n\t\tmu 0 4 78 79 100 99\n\t\tf 4 76 457 -97 -457\n\t\tmu 0 4 79 80 101 100\n\t\tf 4 77 458 -98 -458\n\t\tmu 0 4 80 81 102 101\n\t\tf 4 78 459 -99 -459\n\t\tmu 0 4 81 82 103 102\n\t\tf 4 79 440 -100 -460\n\t\tmu 0 4 82 83 104 103\n\t\tf 4 80 461 -101 -461\n\t\tmu 0 4 84 85 106 105\n\t\tf 4 81 462 -102 -462\n\t\tmu 0 4 85 86 107 106\n\t\tf 4 82 463 -103 -463\n\t\tmu 0 4 86 87 108 107\n\t\tf 4 83 464 -104 -464\n\t\tmu 0 4 87 88 109 108\n\t\tf 4 84 465 -105 -465\n\t\tmu 0 4 88 89 110 109\n\t\tf 4 85 466 -106 -466\n\t\tmu 0 4 89 90 111 110\n\t\tf 4 86 467 -107 -467\n\t\tmu 0 4 90 91 112 111\n\t\tf 4 87 468 -108 -468\n\t\tmu 0 4 91 92 113 112\n\t\tf 4 88 469 -109 -469\n\t\tmu 0 4 92 93 114 113\n\t\tf 4 89 470 -110 -470\n\t\tmu 0 4 93 94 115 114\n\t\tf 4 90 471 -111 -471\n\t\tmu 0 4 94 95 116 115\n\t\tf 4 91 472 -112 -472\n\t\tmu 0 4 95 96 117 116\n\t\tf 4 92 473 -113 -473\n\t\tmu 0 4 96 97 118 117\n\t\tf 4 93 474 -114 -474\n\t\tmu 0 4 97 98 119 118\n\t\tf 4 94 475 -115 -475\n\t\tmu 0 4 98 99 120 119\n\t\tf 4 95 476 -116 -476\n\t\tmu 0 4 99 100 121 120\n\t\tf 4 96 477 -117 -477\n\t\tmu 0 4 100 101 122 121\n\t\tf 4 97 478 -118 -478\n\t\tmu 0 4 101 102 123 122\n\t\tf 4 98 479 -119 -479\n\t\tmu 0 4 102 103 124 123\n\t\tf 4 99 460 -120 -480\n\t\tmu 0 4 103 104 125 124\n\t\tf 4 100 481 -121 -481\n\t\tmu 0 4 105 106 127 126\n\t\tf 4 101 482 -122 -482\n\t\tmu 0 4 106 107 128 127\n\t\tf 4 102 483 -123 -483\n\t\tmu 0 4 107 108 129 128\n\t\tf 4 103 484 -124 -484\n\t\tmu 0 4 108 109 130 129\n\t\tf 4 104 485 -125 -485\n\t\tmu 0 4 109 110 131 130\n\t\tf 4 105 486 -126 -486\n\t\tmu 0 4 110 111 132 131\n\t\tf 4 106 487 -127 -487\n\t\tmu 0 4 111 112 133 132\n\t\tf 4 107 488 -128 -488\n\t\tmu 0 4 112 113 134 133\n\t\tf 4 108 489 -129 -489\n\t\tmu 0 4 113 114 135 134\n\t\tf 4 109 490 -130 -490\n\t\tmu 0 4 114 115 136 135\n\t\tf 4 110 491 -131 -491\n\t\tmu 0 4 115 116 137 136\n\t\tf 4 111 492 -132 -492\n\t\tmu 0 4 116 117 138 137\n\t\tf 4 112 493 -133 -493\n\t\tmu 0 4 117 118 139 138\n\t\tf 4 113 494 -134 -494\n\t\tmu 0 4 118 119 140 139\n\t\tf 4 114 495 -135 -495\n\t\tmu 0 4 119 120 141 140\n\t\tf 4 115 496 -136 -496\n\t\tmu 0 4 120 121 142 141\n\t\tf 4 116 497 -137 -497\n\t\tmu 0 4 121 122 143 142\n\t\tf 4 117 498 -138 -498\n\t\tmu 0 4 122 123 144 143\n\t\tf 4 118 499 -139 -499\n\t\tmu 0 4 123 124 145 144\n\t\tf 4 119 480 -140 -500\n\t\tmu 0 4 124 125 146 145\n\t\tf 4 120 501 -141 -501\n\t\tmu 0 4 126 127 148 147\n\t\tf 4 121 502 -142 -502\n\t\tmu 0 4 127 128 149 148\n\t\tf 4 122 503 -143 -503\n\t\tmu 0 4 128 129 150 149\n\t\tf 4 123 504 -144 -504\n\t\tmu 0 4 129 130 151 150\n\t\tf 4 124 505 -145 -505\n\t\tmu 0 4 130 131 152 151\n\t\tf 4 125 506 -146 -506\n\t\tmu 0 4 131 132 153 152\n\t\tf 4 126 507 -147 -507\n\t\tmu 0 4 132 133 154 153\n\t\tf 4 127 508 -148 -508\n\t\tmu 0 4 133 134 155 154\n\t\tf 4 128 509 -149 -509\n\t\tmu 0 4 134 135 156 155\n\t\tf 4 129 510 -150 -510\n\t\tmu 0 4 135 136 157 156\n\t\tf 4 130 511 -151 -511\n\t\tmu 0 4 136 137 158 157\n\t\tf 4 131 512 -152 -512\n\t\tmu 0 4 137 138 159 158\n\t\tf 4 132 513 -153 -513\n\t\tmu 0 4 138 139 160 159\n\t\tf 4 133 514 -154 -514\n\t\tmu 0 4 139 140 161 160\n\t\tf 4 134 515 -155 -515\n\t\tmu 0 4 140 141 162 161\n\t\tf 4 135 516 -156 -516\n\t\tmu 0 4 141 142 163 162\n\t\tf 4 136 517 -157 -517\n\t\tmu 0 4 142 143 164 163\n\t\tf 4 137 518 -158 -518\n\t\tmu 0 4 143 144 165 164\n\t\tf 4 138 519 -159 -519\n\t\tmu 0 4 144 145 166 165\n\t\tf 4 139 500 -160 -520\n\t\tmu 0 4 145 146 167 166\n\t\tf 4 140 521 -161 -521\n\t\tmu 0 4 147 148 169 168\n\t\tf 4 141 522 -162 -522\n\t\tmu 0 4 148 149 170 169\n\t\tf 4 142 523 -163 -523\n\t\tmu 0 4 149 150 171 170\n\t\tf 4 143 524 -164 -524\n\t\tmu 0 4 150 151 172 171\n\t\tf 4 144 525 -165 -525\n\t\tmu 0 4 151 152 173 172\n\t\tf 4 145 526 -166 -526\n\t\tmu 0 4 152 153 174 173\n\t\tf 4 146 527 -167 -527\n\t\tmu 0 4 153 154 175 174\n\t\tf 4 147 528 -168 -528\n\t\tmu 0 4 154 155 176 175\n\t\tf 4 148 529 -169 -529\n\t\tmu 0 4 155 156 177 176\n\t\tf 4 149 530 -170 -530\n\t\tmu 0 4 156 157 178 177\n\t\tf 4 150 531 -171 -531\n\t\tmu 0 4 157 158 179 178\n\t\tf 4 151 532 -172 -532\n\t\tmu 0 4 158 159 180 179\n\t\tf 4 152 533 -173 -533\n\t\tmu 0 4 159 160 181 180\n\t\tf 4 153 534 -174 -534\n\t\tmu 0 4 160 161 182 181\n\t\tf 4 154 535 -175 -535\n\t\tmu 0 4 161 162 183 182\n\t\tf 4 155 536 -176 -536\n\t\tmu 0 4 162 163 184 183\n\t\tf 4 156 537 -177 -537\n\t\tmu 0 4 163 164 185 184\n\t\tf 4 157 538 -178 -538\n\t\tmu 0 4 164 165 186 185\n\t\tf 4 158 539 -179 -539\n\t\tmu 0 4 165 166 187 186\n\t\tf 4 159 520 -180 -540\n\t\tmu 0 4 166 167 188 187\n\t\tf 4 160 541 -181 -541\n\t\tmu 0 4 168 169 190 189\n\t\tf 4 161 542 -182 -542\n\t\tmu 0 4 169 170 191 190\n\t\tf 4 162 543 -183 -543\n\t\tmu 0 4 170 171 192 191\n\t\tf 4 163 544 -184 -544\n\t\tmu 0 4 171 172 193 192\n\t\tf 4 164 545 -185 -545\n\t\tmu 0 4 172 173 194 193\n\t\tf 4 165 546 -186 -546\n\t\tmu 0 4 173 174 195 194\n\t\tf 4 166 547 -187 -547\n\t\tmu 0 4 174 175 196 195\n\t\tf 4 167 548 -188 -548\n\t\tmu 0 4 175 176 197 196\n\t\tf 4 168 549 -189 -549\n\t\tmu 0 4 176 177 198 197\n\t\tf 4 169 550 -190 -550\n\t\tmu 0 4 177 178 199 198\n\t\tf 4 170 551 -191 -551\n\t\tmu 0 4 178 179 200 199\n\t\tf 4 171 552 -192 -552\n\t\tmu 0 4 179 180 201 200\n\t\tf 4 172 553 -193 -553\n\t\tmu 0 4 180 181 202 201\n\t\tf 4 173 554 -194 -554\n\t\tmu 0 4 181 182 203 202\n\t\tf 4 174 555 -195 -555\n\t\tmu 0 4 182 183 204 203\n\t\tf 4 175 556 -196 -556\n\t\tmu 0 4 183 184 205 204\n\t\tf 4 176 557 -197 -557\n\t\tmu 0 4 184 185 206 205\n\t\tf 4 177 558 -198 -558\n\t\tmu 0 4 185 186 207 206\n\t\tf 4 178 559 -199 -559\n\t\tmu 0 4 186 187 208 207\n\t\tf 4 179 540 -200 -560\n\t\tmu 0 4 187 188 209 208\n\t\tf 4 180 561 -201 -561\n\t\tmu 0 4 189 190 211 210\n\t\tf 4 181 562 -202 -562\n\t\tmu 0 4 190 191 212 211\n\t\tf 4 182 563 -203 -563\n\t\tmu 0 4 191 192 213 212\n\t\tf 4 183 564 -204 -564\n\t\tmu 0 4 192 193 214 213\n\t\tf 4 184 565 -205 -565\n\t\tmu 0 4 193 194 215 214\n\t\tf 4 185 566 -206 -566\n\t\tmu 0 4 194 195 216 215\n\t\tf 4 186 567 -207 -567\n\t\tmu 0 4 195 196 217 216\n\t\tf 4 187 568 -208 -568\n\t\tmu 0 4 196 197 218 217\n\t\tf 4 188 569 -209 -569\n\t\tmu 0 4 197 198 219 218\n\t\tf 4 189 570 -210 -570\n\t\tmu 0 4 198 199 220 219\n\t\tf 4 190 571 -211 -571\n\t\tmu 0 4 199 200 221 220\n\t\tf 4 191 572 -212 -572\n\t\tmu 0 4 200 201 222 221\n\t\tf 4 192 573 -213 -573\n\t\tmu 0 4 201 202 223 222\n\t\tf 4 193 574 -214 -574\n\t\tmu 0 4 202 203 224 223\n\t\tf 4 194 575 -215 -575\n\t\tmu 0 4 203 204 225 224\n\t\tf 4 195 576 -216 -576\n\t\tmu 0 4 204 205 226 225\n\t\tf 4 196 577 -217 -577\n\t\tmu 0 4 205 206 227 226\n\t\tf 4 197 578 -218 -578\n\t\tmu 0 4 206 207 228 227\n\t\tf 4 198 579 -219 -579\n\t\tmu 0 4 207 208 229 228\n\t\tf 4 199 560 -220 -580\n\t\tmu 0 4 208 209 230 229\n\t\tf 4 200 581 -221 -581\n\t\tmu 0 4 210 211 232 231\n\t\tf 4 201 582 -222 -582\n\t\tmu 0 4 211 212 233 232\n\t\tf 4 202 583 -223 -583\n\t\tmu 0 4 212 213 234 233\n\t\tf 4 203 584 -224 -584\n\t\tmu 0 4 213 214 235 234\n\t\tf 4 204 585 -225 -585\n\t\tmu 0 4 214 215 236 235\n\t\tf 4 205 586 -226 -586\n\t\tmu 0 4 215 216 237 236\n\t\tf 4 206 587 -227 -587\n\t\tmu 0 4 216 217 238 237\n\t\tf 4 207 588 -228 -588\n\t\tmu 0 4 217 218 239 238\n\t\tf 4 208 589 -229 -589\n\t\tmu 0 4 218 219 240 239\n\t\tf 4 209 590 -230 -590\n\t\tmu 0 4 219 220 241 240\n\t\tf 4 210 591 -231 -591\n\t\tmu 0 4 220 221 242 241\n\t\tf 4 211 592 -232 -592\n\t\tmu 0 4 221 222 243 242\n\t\tf 4 212 593 -233 -593\n\t\tmu 0 4 222 223 244 243\n\t\tf 4 213 594 -234 -594\n\t\tmu 0 4 223 224 245 244\n\t\tf 4 214 595 -235 -595\n\t\tmu 0 4 224 225 246 245\n\t\tf 4 215 596 -236 -596\n\t\tmu 0 4 225 226 247 246\n\t\tf 4 216 597 -237 -597\n\t\tmu 0 4 226 227 248 247\n\t\tf 4 217 598 -238 -598\n\t\tmu 0 4 227 228 249 248\n\t\tf 4 218 599 -239 -599\n\t\tmu 0 4 228 229 250 249\n\t\tf 4 219 580 -240 -600\n\t\tmu 0 4 229 230 251 250\n\t\tf 4 220 601 -241 -601\n\t\tmu 0 4 231 232 253 252\n\t\tf 4 221 602 -242 -602\n\t\tmu 0 4 232 233 254 253\n\t\tf 4 222 603 -243 -603\n\t\tmu 0 4 233 234 255 254\n\t\tf 4 223 604 -244 -604\n\t\tmu 0 4 234 235 256 255\n\t\tf 4 224 605 -245 -605\n\t\tmu 0 4 235 236 257 256\n\t\tf 4 225 606 -246 -606\n\t\tmu 0 4 236 237 258 257\n\t\tf 4 226 607 -247 -607\n\t\tmu 0 4 237 238 259 258\n\t\tf 4 227 608 -248 -608\n\t\tmu 0 4 238 239 260 259\n\t\tf 4 228 609 -249 -609\n\t\tmu 0 4 239 240 261 260\n\t\tf 4 229 610 -250 -610\n\t\tmu 0 4 240 241 262 261\n\t\tf 4 230 611 -251 -611\n\t\tmu 0 4 241 242 263 262\n\t\tf 4 231 612 -252 -612\n\t\tmu 0 4 242 243 264 263\n\t\tf 4 232 613 -253 -613\n\t\tmu 0 4 243 244 265 264\n\t\tf 4 233 614 -254 -614\n\t\tmu 0 4 244 245 266 265\n\t\tf 4 234 615 -255 -615\n\t\tmu 0 4 245 246 267 266\n\t\tf 4 235 616 -256 -616\n\t\tmu 0 4 246 247 268 267\n\t\tf 4 236 617 -257 -617\n\t\tmu 0 4 247 248 269 268\n\t\tf 4 237 618 -258 -618\n\t\tmu 0 4 248 249 270 269\n\t\tf 4 238 619 -259 -619\n\t\tmu 0 4 249 250 271 270\n\t\tf 4 239 600 -260 -620\n\t\tmu 0 4 250 251 272 271\n\t\tf 4 240 621 -261 -621\n\t\tmu 0 4 252 253 274 273\n\t\tf 4 241 622 -262 -622\n\t\tmu 0 4 253 254 275 274\n\t\tf 4 242 623 -263 -623\n\t\tmu 0 4 254 255 276 275\n\t\tf 4 243 624 -264 -624\n\t\tmu 0 4 255 256 277 276\n\t\tf 4 244 625 -265 -625\n\t\tmu 0 4 256 257 278 277\n\t\tf 4 245 626 -266 -626\n\t\tmu 0 4 257 258 279 278\n\t\tf 4 246 627 -267 -627\n\t\tmu 0 4 258 259 280 279\n\t\tf 4 247 628 -268 -628\n\t\tmu 0 4 259 260 281 280\n\t\tf 4 248 629 -269 -629\n\t\tmu 0 4 260 261 282 281\n\t\tf 4 249 630 -270 -630\n\t\tmu 0 4 261 262 283 282\n\t\tf 4 250 631 -271 -631\n\t\tmu 0 4 262 263 284 283\n\t\tf 4 251 632 -272 -632\n\t\tmu 0 4 263 264 285 284\n\t\tf 4 252 633 -273 -633\n\t\tmu 0 4 264 265 286 285\n\t\tf 4 253 634 -274 -634\n\t\tmu 0 4 265 266 287 286\n\t\tf 4 254 635 -275 -635\n\t\tmu 0 4 266 267 288 287\n\t\tf 4 255 636 -276 -636\n\t\tmu 0 4 267 268 289 288\n\t\tf 4 256 637 -277 -637\n\t\tmu 0 4 268 269 290 289\n\t\tf 4 257 638 -278 -638\n\t\tmu 0 4 269 270 291 290\n\t\tf 4 258 639 -279 -639\n\t\tmu 0 4 270 271 292 291\n\t\tf 4 259 620 -280 -640\n\t\tmu 0 4 271 272 293 292\n\t\tf 4 260 641 -281 -641\n\t\tmu 0 4 273 274 295 294\n\t\tf 4 261 642 -282 -642\n\t\tmu 0 4 274 275 296 295\n\t\tf 4 262 643 -283 -643\n\t\tmu 0 4 275 276 297 296\n\t\tf 4 263 644 -284 -644\n\t\tmu 0 4 276 277 298 297\n\t\tf 4 264 645 -285 -645\n\t\tmu 0 4 277 278 299 298\n\t\tf 4 265 646 -286 -646\n\t\tmu 0 4 278 279 300 299\n\t\tf 4 266 647 -287 -647\n\t\tmu 0 4 279 280 301 300\n\t\tf 4 267 648 -288 -648\n\t\tmu 0 4 280 281 302 301\n\t\tf 4 268 649 -289 -649\n\t\tmu 0 4 281 282 303 302\n\t\tf 4 269 650 -290 -650\n\t\tmu 0 4 282 283 304 303\n\t\tf 4 270 651 -291 -651\n\t\tmu 0 4 283 284 305 304\n\t\tf 4 271 652 -292 -652\n\t\tmu 0 4 284 285 306 305\n\t\tf 4 272 653 -293 -653\n\t\tmu 0 4 285 286 307 306\n\t\tf 4 273 654 -294 -654\n\t\tmu 0 4 286 287 308 307\n\t\tf 4 274 655 -295 -655\n\t\tmu 0 4 287 288 309 308\n\t\tf 4 275 656 -296 -656\n\t\tmu 0 4 288 289 310 309\n\t\tf 4 276 657 -297 -657\n\t\tmu 0 4 289 290 311 310\n\t\tf 4 277 658 -298 -658\n\t\tmu 0 4 290 291 312 311\n\t\tf 4 278 659 -299 -659\n\t\tmu 0 4 291 292 313 312\n\t\tf 4 279 640 -300 -660\n\t\tmu 0 4 292 293 314 313\n\t\tf 4 280 661 -301 -661\n\t\tmu 0 4 294 295 316 315\n\t\tf 4 281 662 -302 -662\n\t\tmu 0 4 295 296 317 316\n\t\tf 4 282 663 -303 -663\n\t\tmu 0 4 296 297 318 317\n\t\tf 4 283 664 -304 -664\n\t\tmu 0 4 297 298 319 318\n\t\tf 4 284 665 -305 -665\n\t\tmu 0 4 298 299 320 319\n\t\tf 4 285 666 -306 -666\n\t\tmu 0 4 299 300 321 320\n\t\tf 4 286 667 -307 -667\n\t\tmu 0 4 300 301 322 321\n\t\tf 4 287 668 -308 -668\n\t\tmu 0 4 301 302 323 322\n\t\tf 4 288 669 -309 -669\n\t\tmu 0 4 302 303 324 323\n\t\tf 4 289 670 -310 -670\n\t\tmu 0 4 303 304 325 324\n\t\tf 4 290 671 -311 -671\n\t\tmu 0 4 304 305 326 325\n\t\tf 4 291 672 -312 -672\n\t\tmu 0 4 305 306 327 326\n\t\tf 4 292 673 -313 -673\n\t\tmu 0 4 306 307 328 327\n\t\tf 4 293 674 -314 -674\n\t\tmu 0 4 307 308 329 328\n\t\tf 4 294 675 -315 -675\n\t\tmu 0 4 308 309 330 329\n\t\tf 4 295 676 -316 -676\n\t\tmu 0 4 309 310 331 330\n\t\tf 4 296 677 -317 -677\n\t\tmu 0 4 310 311 332 331\n\t\tf 4 297 678 -318 -678\n\t\tmu 0 4 311 312 333 332\n\t\tf 4 298 679 -319 -679\n\t\tmu 0 4 312 313 334 333\n\t\tf 4 299 660 -320 -680\n\t\tmu 0 4 313 314 335 334\n\t\tf 4 300 681 -321 -681\n\t\tmu 0 4 315 316 337 336\n\t\tf 4 301 682 -322 -682\n\t\tmu 0 4 316 317 338 337\n\t\tf 4 302 683 -323 -683\n\t\tmu 0 4 317 318 339 338\n\t\tf 4 303 684 -324 -684\n\t\tmu 0 4 318 319 340 339\n\t\tf 4 304 685 -325 -685\n\t\tmu 0 4 319 320 341 340\n\t\tf 4 305 686 -326 -686\n\t\tmu 0 4 320 321 342 341\n\t\tf 4 306 687 -327 -687\n\t\tmu 0 4 321 322 343 342\n\t\tf 4 307 688 -328 -688\n\t\tmu 0 4 322 323 344 343\n\t\tf 4 308 689 -329 -689\n\t\tmu 0 4 323 324 345 344\n\t\tf 4 309 690 -330 -690\n\t\tmu 0 4 324 325 346 345\n\t\tf 4 310 691 -331 -691\n\t\tmu 0 4 325 326 347 346\n\t\tf 4 311 692 -332 -692\n\t\tmu 0 4 326 327 348 347\n\t\tf 4 312 693 -333 -693\n\t\tmu 0 4 327 328 349 348\n\t\tf 4 313 694 -334 -694\n\t\tmu 0 4 328 329 350 349\n\t\tf 4 314 695 -335 -695\n\t\tmu 0 4 329 330 351 350\n\t\tf 4 315 696 -336 -696\n\t\tmu 0 4 330 331 352 351\n\t\tf 4 316 697 -337 -697\n\t\tmu 0 4 331 332 353 352\n\t\tf 4 317 698 -338 -698\n\t\tmu 0 4 332 333 354 353\n\t\tf 4 318 699 -339 -699\n\t\tmu 0 4 333 334 355 354\n\t\tf 4 319 680 -340 -700\n\t\tmu 0 4 334 335 356 355\n\t\tf 4 320 701 -341 -701\n\t\tmu 0 4 336 337 358 357\n\t\tf 4 321 702 -342 -702\n\t\tmu 0 4 337 338 359 358\n\t\tf 4 322 703 -343 -703\n\t\tmu 0 4 338 339 360 359\n\t\tf 4 323 704 -344 -704\n\t\tmu 0 4 339 340 361 360\n\t\tf 4 324 705 -345 -705\n\t\tmu 0 4 340 341 362 361\n\t\tf 4 325 706 -346 -706\n\t\tmu 0 4 341 342 363 362\n\t\tf 4 326 707 -347 -707\n\t\tmu 0 4 342 343 364 363\n\t\tf 4 327 708 -348 -708\n\t\tmu 0 4 343 344 365 364\n\t\tf 4 328 709 -349 -709\n\t\tmu 0 4 344 345 366 365\n\t\tf 4 329 710 -350 -710\n\t\tmu 0 4 345 346 367 366\n\t\tf 4 330 711 -351 -711\n\t\tmu 0 4 346 347 368 367\n\t\tf 4 331 712 -352 -712\n\t\tmu 0 4 347 348 369 368\n\t\tf 4 332 713 -353 -713\n\t\tmu 0 4 348 349 370 369\n\t\tf 4 333 714 -354 -714\n\t\tmu 0 4 349 350 371 370\n\t\tf 4 334 715 -355 -715\n\t\tmu 0 4 350 351 372 371\n\t\tf 4 335 716 -356 -716\n\t\tmu 0 4 351 352 373 372\n\t\tf 4 336 717 -357 -717\n\t\tmu 0 4 352 353 374 373\n\t\tf 4 337 718 -358 -718\n\t\tmu 0 4 353 354 375 374\n\t\tf 4 338 719 -359 -719\n\t\tmu 0 4 354 355 376 375\n\t\tf 4 339 700 -360 -720\n\t\tmu 0 4 355 356 377 376\n\t\tf 4 340 721 -361 -721\n\t\tmu 0 4 357 358 379 378\n\t\tf 4 341 722 -362 -722\n\t\tmu 0 4 358 359 380 379\n\t\tf 4 342 723 -363 -723\n\t\tmu 0 4 359 360 381 380\n\t\tf 4 343 724 -364 -724\n\t\tmu 0 4 360 361 382 381\n\t\tf 4 344 725 -365 -725\n\t\tmu 0 4 361 362 383 382\n\t\tf 4 345 726 -366 -726\n\t\tmu 0 4 362 363 384 383\n\t\tf 4 346 727 -367 -727\n\t\tmu 0 4 363 364 385 384\n\t\tf 4 347 728 -368 -728\n\t\tmu 0 4 364 365 386 385\n\t\tf 4 348 729 -369 -729\n\t\tmu 0 4 365 366 387 386\n\t\tf 4 349 730 -370 -730\n\t\tmu 0 4 366 367 388 387\n\t\tf 4 350 731 -371 -731\n\t\tmu 0 4 367 368 389 388\n\t\tf 4 351 732 -372 -732\n\t\tmu 0 4 368 369 390 389\n\t\tf 4 352 733 -373 -733\n\t\tmu 0 4 369 370 391 390\n\t\tf 4 353 734 -374 -734\n\t\tmu 0 4 370 371 392 391\n\t\tf 4 354 735 -375 -735\n\t\tmu 0 4 371 372 393 392\n\t\tf 4 355 736 -376 -736\n\t\tmu 0 4 372 373 394 393\n\t\tf 4 356 737 -377 -737\n\t\tmu 0 4 373 374 395 394\n\t\tf 4 357 738 -378 -738\n\t\tmu 0 4 374 375 396 395\n\t\tf 4 358 739 -379 -739\n\t\tmu 0 4 375 376 397 396\n\t\tf 4 359 720 -380 -740\n\t\tmu 0 4 376 377 398 397\n\t\tf 3 -1 -741 741\n\t\tmu 0 3 1 0 399\n\t\tf 3 -2 -742 742\n\t\tmu 0 3 2 1 400\n\t\tf 3 -3 -743 743\n\t\tmu 0 3 3 2 401\n\t\tf 3 -4 -744 744\n\t\tmu 0 3 4 3 402\n\t\tf 3 -5 -745 745\n\t\tmu 0 3 5 4 403\n\t\tf 3 -6 -746 746\n\t\tmu 0 3 6 5 404\n\t\tf 3 -7 -747 747\n\t\tmu 0 3 7 6 405\n\t\tf 3 -8 -748 748\n\t\tmu 0 3 8 7 406\n\t\tf 3 -9 -749 749\n\t\tmu 0 3 9 8 407\n\t\tf 3 -10 -750 750\n\t\tmu 0 3 10 9 408\n\t\tf 3 -11 -751 751\n\t\tmu 0 3 11 10 409\n\t\tf 3 -12 -752 752\n\t\tmu 0 3 12 11 410\n\t\tf 3 -13 -753 753\n\t\tmu 0 3 13 12 411\n\t\tf 3 -14 -754 754\n\t\tmu 0 3 14 13 412\n\t\tf 3 -15 -755 755\n\t\tmu 0 3 15 14 413\n\t\tf 3 -16 -756 756\n\t\tmu 0 3 16 15 414\n\t\tf 3 -17 -757 757\n\t\tmu 0 3 17 16 415\n\t\tf 3 -18 -758 758\n\t\tmu 0 3 18 17 416\n\t\tf 3 -19 -759 759\n\t\tmu 0 3 19 18 417\n\t\tf 3 -20 -760 740\n\t\tmu 0 3 20 19 418\n\t\tf 3 360 761 -761\n\t\tmu 0 3 378 379 419\n\t\tf 3 361 762 -762\n\t\tmu 0 3 379 380 420\n\t\tf 3 362 763 -763\n\t\tmu 0 3 380 381 421\n\t\tf 3 363 764 -764\n\t\tmu 0 3 381 382 422\n\t\tf 3 364 765 -765\n\t\tmu 0 3 382 383 423\n\t\tf 3 365 766 -766\n\t\tmu 0 3 383 384 424\n\t\tf 3 366 767 -767\n\t\tmu 0 3 384 385 425\n\t\tf 3 367 768 -768\n\t\tmu 0 3 385 386 426\n\t\tf 3 368 769 -769\n\t\tmu 0 3 386 387 427\n\t\tf 3 369 770 -770\n\t\tmu 0 3 387 388 428\n\t\tf 3 370 771 -771\n\t\tmu 0 3 388 389 429\n\t\tf 3 371 772 -772\n\t\tmu 0 3 389 390 430\n\t\tf 3 372 773 -773\n\t\tmu 0 3 390 391 431\n\t\tf 3 373 774 -774\n\t\tmu 0 3 391 392 432\n\t\tf 3 374 775 -775\n\t\tmu 0 3 392 393 433\n\t\tf 3 375 776 -776\n\t\tmu 0 3 393 394 434\n\t\tf 3 376 777 -777\n\t\tmu 0 3 394 395 435\n\t\tf 3 377 778 -778\n\t\tmu 0 3 395 396 436\n\t\tf 3 378 779 -779\n\t\tmu 0 3 396 397 437\n\t\tf 3 379 760 -780\n\t\tmu 0 3 397 398 438;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\ncreateNode transform -n \"pSphere3\";\n\trename -uid \"7C100433-46FD-D03C-2AF1-B2B7640AE307\";\n\tsetAttr \".t\" -type \"double3\" -2 0 0 ;\ncreateNode mesh -n \"pSphereShape3\" -p \"pSphere3\";\n\trename -uid \"3F1E95C5-4C08-0405-C9B1-D7A47AC37138\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 439 \".uvst[0].uvsp\";\n\tsetAttr \".uvst[0].uvsp[0:249]\" -type \"float2\" 0 0.050000001 0.050000001 0.050000001\n\t\t 0.1 0.050000001 0.15000001 0.050000001 0.2 0.050000001 0.25 0.050000001 0.30000001\n\t\t 0.050000001 0.35000002 0.050000001 0.40000004 0.050000001 0.45000005 0.050000001\n\t\t 0.50000006 0.050000001 0.55000007 0.050000001 0.60000008 0.050000001 0.6500001 0.050000001\n\t\t 0.70000011 0.050000001 0.75000012 0.050000001 0.80000013 0.050000001 0.85000014 0.050000001\n\t\t 0.90000015 0.050000001 0.95000017 0.050000001 1.000000119209 0.050000001 0 0.1 0.050000001\n\t\t 0.1 0.1 0.1 0.15000001 0.1 0.2 0.1 0.25 0.1 0.30000001 0.1 0.35000002 0.1 0.40000004\n\t\t 0.1 0.45000005 0.1 0.50000006 0.1 0.55000007 0.1 0.60000008 0.1 0.6500001 0.1 0.70000011\n\t\t 0.1 0.75000012 0.1 0.80000013 0.1 0.85000014 0.1 0.90000015 0.1 0.95000017 0.1 1.000000119209\n\t\t 0.1 0 0.15000001 0.050000001 0.15000001 0.1 0.15000001 0.15000001 0.15000001 0.2\n\t\t 0.15000001 0.25 0.15000001 0.30000001 0.15000001 0.35000002 0.15000001 0.40000004\n\t\t 0.15000001 0.45000005 0.15000001 0.50000006 0.15000001 0.55000007 0.15000001 0.60000008\n\t\t 0.15000001 0.6500001 0.15000001 0.70000011 0.15000001 0.75000012 0.15000001 0.80000013\n\t\t 0.15000001 0.85000014 0.15000001 0.90000015 0.15000001 0.95000017 0.15000001 1.000000119209\n\t\t 0.15000001 0 0.2 0.050000001 0.2 0.1 0.2 0.15000001 0.2 0.2 0.2 0.25 0.2 0.30000001\n\t\t 0.2 0.35000002 0.2 0.40000004 0.2 0.45000005 0.2 0.50000006 0.2 0.55000007 0.2 0.60000008\n\t\t 0.2 0.6500001 0.2 0.70000011 0.2 0.75000012 0.2 0.80000013 0.2 0.85000014 0.2 0.90000015\n\t\t 0.2 0.95000017 0.2 1.000000119209 0.2 0 0.25 0.050000001 0.25 0.1 0.25 0.15000001\n\t\t 0.25 0.2 0.25 0.25 0.25 0.30000001 0.25 0.35000002 0.25 0.40000004 0.25 0.45000005\n\t\t 0.25 0.50000006 0.25 0.55000007 0.25 0.60000008 0.25 0.6500001 0.25 0.70000011 0.25\n\t\t 0.75000012 0.25 0.80000013 0.25 0.85000014 0.25 0.90000015 0.25 0.95000017 0.25 1.000000119209\n\t\t 0.25 0 0.30000001 0.050000001 0.30000001 0.1 0.30000001 0.15000001 0.30000001 0.2\n\t\t 0.30000001 0.25 0.30000001 0.30000001 0.30000001 0.35000002 0.30000001 0.40000004\n\t\t 0.30000001 0.45000005 0.30000001 0.50000006 0.30000001 0.55000007 0.30000001 0.60000008\n\t\t 0.30000001 0.6500001 0.30000001 0.70000011 0.30000001 0.75000012 0.30000001 0.80000013\n\t\t 0.30000001 0.85000014 0.30000001 0.90000015 0.30000001 0.95000017 0.30000001 1.000000119209\n\t\t 0.30000001 0 0.35000002 0.050000001 0.35000002 0.1 0.35000002 0.15000001 0.35000002\n\t\t 0.2 0.35000002 0.25 0.35000002 0.30000001 0.35000002 0.35000002 0.35000002 0.40000004\n\t\t 0.35000002 0.45000005 0.35000002 0.50000006 0.35000002 0.55000007 0.35000002 0.60000008\n\t\t 0.35000002 0.6500001 0.35000002 0.70000011 0.35000002 0.75000012 0.35000002 0.80000013\n\t\t 0.35000002 0.85000014 0.35000002 0.90000015 0.35000002 0.95000017 0.35000002 1.000000119209\n\t\t 0.35000002 0 0.40000004 0.050000001 0.40000004 0.1 0.40000004 0.15000001 0.40000004\n\t\t 0.2 0.40000004 0.25 0.40000004 0.30000001 0.40000004 0.35000002 0.40000004 0.40000004\n\t\t 0.40000004 0.45000005 0.40000004 0.50000006 0.40000004 0.55000007 0.40000004 0.60000008\n\t\t 0.40000004 0.6500001 0.40000004 0.70000011 0.40000004 0.75000012 0.40000004 0.80000013\n\t\t 0.40000004 0.85000014 0.40000004 0.90000015 0.40000004 0.95000017 0.40000004 1.000000119209\n\t\t 0.40000004 0 0.45000005 0.050000001 0.45000005 0.1 0.45000005 0.15000001 0.45000005\n\t\t 0.2 0.45000005 0.25 0.45000005 0.30000001 0.45000005 0.35000002 0.45000005 0.40000004\n\t\t 0.45000005 0.45000005 0.45000005 0.50000006 0.45000005 0.55000007 0.45000005 0.60000008\n\t\t 0.45000005 0.6500001 0.45000005 0.70000011 0.45000005 0.75000012 0.45000005 0.80000013\n\t\t 0.45000005 0.85000014 0.45000005 0.90000015 0.45000005 0.95000017 0.45000005 1.000000119209\n\t\t 0.45000005 0 0.50000006 0.050000001 0.50000006 0.1 0.50000006 0.15000001 0.50000006\n\t\t 0.2 0.50000006 0.25 0.50000006 0.30000001 0.50000006 0.35000002 0.50000006 0.40000004\n\t\t 0.50000006 0.45000005 0.50000006 0.50000006 0.50000006 0.55000007 0.50000006 0.60000008\n\t\t 0.50000006 0.6500001 0.50000006 0.70000011 0.50000006 0.75000012 0.50000006 0.80000013\n\t\t 0.50000006 0.85000014 0.50000006 0.90000015 0.50000006 0.95000017 0.50000006 1.000000119209\n\t\t 0.50000006 0 0.55000007 0.050000001 0.55000007 0.1 0.55000007 0.15000001 0.55000007\n\t\t 0.2 0.55000007 0.25 0.55000007 0.30000001 0.55000007 0.35000002 0.55000007 0.40000004\n\t\t 0.55000007 0.45000005 0.55000007 0.50000006 0.55000007 0.55000007 0.55000007 0.60000008\n\t\t 0.55000007 0.6500001 0.55000007 0.70000011 0.55000007 0.75000012 0.55000007 0.80000013\n\t\t 0.55000007 0.85000014 0.55000007 0.90000015 0.55000007 0.95000017 0.55000007 1.000000119209\n\t\t 0.55000007 0 0.60000008 0.050000001 0.60000008 0.1 0.60000008 0.15000001 0.60000008\n\t\t 0.2 0.60000008 0.25 0.60000008 0.30000001 0.60000008 0.35000002 0.60000008 0.40000004\n\t\t 0.60000008 0.45000005 0.60000008 0.50000006 0.60000008 0.55000007 0.60000008 0.60000008\n\t\t 0.60000008 0.6500001 0.60000008 0.70000011 0.60000008 0.75000012 0.60000008 0.80000013\n\t\t 0.60000008 0.85000014 0.60000008 0.90000015 0.60000008;\n\tsetAttr \".uvst[0].uvsp[250:438]\" 0.95000017 0.60000008 1.000000119209 0.60000008\n\t\t 0 0.6500001 0.050000001 0.6500001 0.1 0.6500001 0.15000001 0.6500001 0.2 0.6500001\n\t\t 0.25 0.6500001 0.30000001 0.6500001 0.35000002 0.6500001 0.40000004 0.6500001 0.45000005\n\t\t 0.6500001 0.50000006 0.6500001 0.55000007 0.6500001 0.60000008 0.6500001 0.6500001\n\t\t 0.6500001 0.70000011 0.6500001 0.75000012 0.6500001 0.80000013 0.6500001 0.85000014\n\t\t 0.6500001 0.90000015 0.6500001 0.95000017 0.6500001 1.000000119209 0.6500001 0 0.70000011\n\t\t 0.050000001 0.70000011 0.1 0.70000011 0.15000001 0.70000011 0.2 0.70000011 0.25 0.70000011\n\t\t 0.30000001 0.70000011 0.35000002 0.70000011 0.40000004 0.70000011 0.45000005 0.70000011\n\t\t 0.50000006 0.70000011 0.55000007 0.70000011 0.60000008 0.70000011 0.6500001 0.70000011\n\t\t 0.70000011 0.70000011 0.75000012 0.70000011 0.80000013 0.70000011 0.85000014 0.70000011\n\t\t 0.90000015 0.70000011 0.95000017 0.70000011 1.000000119209 0.70000011 0 0.75000012\n\t\t 0.050000001 0.75000012 0.1 0.75000012 0.15000001 0.75000012 0.2 0.75000012 0.25 0.75000012\n\t\t 0.30000001 0.75000012 0.35000002 0.75000012 0.40000004 0.75000012 0.45000005 0.75000012\n\t\t 0.50000006 0.75000012 0.55000007 0.75000012 0.60000008 0.75000012 0.6500001 0.75000012\n\t\t 0.70000011 0.75000012 0.75000012 0.75000012 0.80000013 0.75000012 0.85000014 0.75000012\n\t\t 0.90000015 0.75000012 0.95000017 0.75000012 1.000000119209 0.75000012 0 0.80000013\n\t\t 0.050000001 0.80000013 0.1 0.80000013 0.15000001 0.80000013 0.2 0.80000013 0.25 0.80000013\n\t\t 0.30000001 0.80000013 0.35000002 0.80000013 0.40000004 0.80000013 0.45000005 0.80000013\n\t\t 0.50000006 0.80000013 0.55000007 0.80000013 0.60000008 0.80000013 0.6500001 0.80000013\n\t\t 0.70000011 0.80000013 0.75000012 0.80000013 0.80000013 0.80000013 0.85000014 0.80000013\n\t\t 0.90000015 0.80000013 0.95000017 0.80000013 1.000000119209 0.80000013 0 0.85000014\n\t\t 0.050000001 0.85000014 0.1 0.85000014 0.15000001 0.85000014 0.2 0.85000014 0.25 0.85000014\n\t\t 0.30000001 0.85000014 0.35000002 0.85000014 0.40000004 0.85000014 0.45000005 0.85000014\n\t\t 0.50000006 0.85000014 0.55000007 0.85000014 0.60000008 0.85000014 0.6500001 0.85000014\n\t\t 0.70000011 0.85000014 0.75000012 0.85000014 0.80000013 0.85000014 0.85000014 0.85000014\n\t\t 0.90000015 0.85000014 0.95000017 0.85000014 1.000000119209 0.85000014 0 0.90000015\n\t\t 0.050000001 0.90000015 0.1 0.90000015 0.15000001 0.90000015 0.2 0.90000015 0.25 0.90000015\n\t\t 0.30000001 0.90000015 0.35000002 0.90000015 0.40000004 0.90000015 0.45000005 0.90000015\n\t\t 0.50000006 0.90000015 0.55000007 0.90000015 0.60000008 0.90000015 0.6500001 0.90000015\n\t\t 0.70000011 0.90000015 0.75000012 0.90000015 0.80000013 0.90000015 0.85000014 0.90000015\n\t\t 0.90000015 0.90000015 0.95000017 0.90000015 1.000000119209 0.90000015 0 0.95000017\n\t\t 0.050000001 0.95000017 0.1 0.95000017 0.15000001 0.95000017 0.2 0.95000017 0.25 0.95000017\n\t\t 0.30000001 0.95000017 0.35000002 0.95000017 0.40000004 0.95000017 0.45000005 0.95000017\n\t\t 0.50000006 0.95000017 0.55000007 0.95000017 0.60000008 0.95000017 0.6500001 0.95000017\n\t\t 0.70000011 0.95000017 0.75000012 0.95000017 0.80000013 0.95000017 0.85000014 0.95000017\n\t\t 0.90000015 0.95000017 0.95000017 0.95000017 1.000000119209 0.95000017 0.025 0 0.075000003\n\t\t 0 0.125 0 0.17500001 0 0.22500001 0 0.27500001 0 0.32500002 0 0.375 0 0.42500001\n\t\t 0 0.47500002 0 0.52499998 0 0.57499999 0 0.625 0 0.67500001 0 0.72499996 0 0.77499998\n\t\t 0 0.82499999 0 0.875 0 0.92500001 0 0.97499996 0 0.025 1 0.075000003 1 0.125 1 0.17500001\n\t\t 1 0.22500001 1 0.27500001 1 0.32500002 1 0.375 1 0.42500001 1 0.47500002 1 0.52499998\n\t\t 1 0.57499999 1 0.625 1 0.67500001 1 0.72499996 1 0.77499998 1 0.82499999 1 0.875\n\t\t 1 0.92500001 1 0.97499996 1;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 382 \".vt\";\n\tsetAttr \".vt[0:165]\"  0.14877813 -0.98768836 -0.048340943 0.12655823 -0.98768836 -0.091949932\n\t\t 0.091949932 -0.98768836 -0.12655823 0.048340935 -0.98768836 -0.14877811 0 -0.98768836 -0.15643455\n\t\t -0.048340935 -0.98768836 -0.1487781 -0.091949917 -0.98768836 -0.1265582 -0.12655818 -0.98768836 -0.091949902\n\t\t -0.14877807 -0.98768836 -0.048340924 -0.15643452 -0.98768836 0 -0.14877807 -0.98768836 0.048340924\n\t\t -0.12655818 -0.98768836 0.091949895 -0.091949895 -0.98768836 0.12655817 -0.048340924 -0.98768836 0.14877805\n\t\t -4.6621107e-09 -0.98768836 0.15643449 0.048340909 -0.98768836 0.14877804 0.09194988 -0.98768836 0.12655815\n\t\t 0.12655815 -0.98768836 0.091949888 0.14877804 -0.98768836 0.048340913 0.15643448 -0.98768836 0\n\t\t 0.29389283 -0.95105654 -0.095491566 0.25000018 -0.95105654 -0.18163574 0.18163574 -0.95105654 -0.25000015\n\t\t 0.095491551 -0.95105654 -0.2938928 0 -0.95105654 -0.30901715 -0.095491551 -0.95105654 -0.29389277\n\t\t -0.18163571 -0.95105654 -0.25000009 -0.25000009 -0.95105654 -0.18163569 -0.29389271 -0.95105654 -0.095491529\n\t\t -0.30901706 -0.95105654 0 -0.29389271 -0.95105654 0.095491529 -0.25000006 -0.95105654 0.18163568\n\t\t -0.18163568 -0.95105654 0.25000006 -0.095491529 -0.95105654 0.29389268 -9.2094243e-09 -0.95105654 0.30901703\n\t\t 0.095491499 -0.95105654 0.29389265 0.18163563 -0.95105654 0.25000003 0.25 -0.95105654 0.18163565\n\t\t 0.29389265 -0.95105654 0.095491506 0.309017 -0.95105654 0 0.43177092 -0.89100653 -0.14029087\n\t\t 0.36728629 -0.89100653 -0.2668491 0.2668491 -0.89100653 -0.36728626 0.14029086 -0.89100653 -0.43177086\n\t\t 0 -0.89100653 -0.45399073 -0.14029086 -0.89100653 -0.43177083 -0.26684904 -0.89100653 -0.36728618\n\t\t -0.36728615 -0.89100653 -0.26684901 -0.43177077 -0.89100653 -0.14029081 -0.45399064 -0.89100653 0\n\t\t -0.43177077 -0.89100653 0.14029081 -0.36728612 -0.89100653 0.26684898 -0.26684898 -0.89100653 0.36728612\n\t\t -0.14029081 -0.89100653 0.43177071 -1.3529972e-08 -0.89100653 0.45399058 0.14029078 -0.89100653 0.43177068\n\t\t 0.26684892 -0.89100653 0.36728609 0.36728606 -0.89100653 0.26684895 0.43177065 -0.89100653 0.1402908\n\t\t 0.45399052 -0.89100653 0 0.55901736 -0.809017 -0.18163574 0.47552857 -0.809017 -0.34549171\n\t\t 0.34549171 -0.809017 -0.47552854 0.18163572 -0.809017 -0.5590173 0 -0.809017 -0.58778554\n\t\t -0.18163572 -0.809017 -0.55901724 -0.34549165 -0.809017 -0.47552842 -0.47552839 -0.809017 -0.34549159\n\t\t -0.55901712 -0.809017 -0.18163566 -0.58778536 -0.809017 0 -0.55901712 -0.809017 0.18163566\n\t\t -0.47552836 -0.809017 0.34549156 -0.34549156 -0.809017 0.47552833 -0.18163566 -0.809017 0.55901706\n\t\t -1.7517365e-08 -0.809017 0.5877853 0.18163562 -0.809017 0.55901706 0.3454915 -0.809017 0.4755283\n\t\t 0.47552827 -0.809017 0.34549153 0.559017 -0.809017 0.18163563 0.58778524 -0.809017 0\n\t\t 0.67249894 -0.70710677 -0.21850814 0.57206178 -0.70710677 -0.41562718 0.41562718 -0.70710677 -0.57206172\n\t\t 0.21850812 -0.70710677 -0.67249888 0 -0.70710677 -0.70710713 -0.21850812 -0.70710677 -0.67249882\n\t\t -0.41562709 -0.70710677 -0.5720616 -0.57206154 -0.70710677 -0.41562706 -0.6724987 -0.70710677 -0.21850805\n\t\t -0.70710695 -0.70710677 0 -0.6724987 -0.70710677 0.21850805 -0.57206154 -0.70710677 0.415627\n\t\t -0.415627 -0.70710677 0.57206148 -0.21850805 -0.70710677 0.67249858 -2.1073424e-08 -0.70710677 0.70710683\n\t\t 0.21850799 -0.70710677 0.67249858 0.41562691 -0.70710677 0.57206142 0.57206142 -0.70710677 0.41562697\n\t\t 0.67249852 -0.70710677 0.21850802 0.70710677 -0.70710677 0 0.7694214 -0.58778524 -0.25000015\n\t\t 0.65450895 -0.58778524 -0.47552854 0.47552854 -0.58778524 -0.65450889 0.25000012 -0.58778524 -0.76942128\n\t\t 0 -0.58778524 -0.80901736 -0.25000012 -0.58778524 -0.76942122 -0.47552845 -0.58778524 -0.65450877\n\t\t -0.65450871 -0.58778524 -0.47552839 -0.7694211 -0.58778524 -0.25000006 -0.80901718 -0.58778524 0\n\t\t -0.7694211 -0.58778524 0.25000006 -0.65450865 -0.58778524 0.47552836 -0.47552836 -0.58778524 0.65450859\n\t\t -0.25000006 -0.58778524 0.76942098 -2.4110586e-08 -0.58778524 0.80901712 0.24999999 -0.58778524 0.76942098\n\t\t 0.47552827 -0.58778524 0.65450853 0.65450853 -0.58778524 0.4755283 0.76942092 -0.58778524 0.25\n\t\t 0.809017 -0.58778524 0 0.8473981 -0.45399052 -0.27533633 0.72083992 -0.45399052 -0.5237208\n\t\t 0.5237208 -0.45399052 -0.72083986 0.2753363 -0.45399052 -0.84739798 0 -0.45399052 -0.89100695\n\t\t -0.2753363 -0.45399052 -0.84739798 -0.52372068 -0.45399052 -0.72083968 -0.72083962 -0.45399052 -0.52372062\n\t\t -0.8473978 -0.45399052 -0.27533621 -0.89100677 -0.45399052 0 -0.8473978 -0.45399052 0.27533621\n\t\t -0.72083962 -0.45399052 0.52372062 -0.52372062 -0.45399052 0.72083956 -0.27533621 -0.45399052 0.84739769\n\t\t -2.6554064e-08 -0.45399052 0.89100665 0.27533615 -0.45399052 0.84739763 0.5237205 -0.45399052 0.7208395\n\t\t 0.72083944 -0.45399052 0.52372056 0.84739757 -0.45399052 0.27533618 0.89100653 -0.45399052 0\n\t\t 0.90450913 -0.30901697 -0.2938928 0.7694214 -0.30901697 -0.55901736 0.55901736 -0.30901697 -0.76942134\n\t\t 0.29389277 -0.30901697 -0.90450901 0 -0.30901697 -0.95105702 -0.29389277 -0.30901697 -0.90450895\n\t\t -0.55901724 -0.30901697 -0.76942122 -0.76942116 -0.30901697 -0.55901718 -0.90450877 -0.30901697 -0.29389271\n\t\t -0.95105678 -0.30901697 0 -0.90450877 -0.30901697 0.29389271 -0.7694211 -0.30901697 0.55901712\n\t\t -0.55901712 -0.30901697 0.76942104 -0.29389271 -0.30901697 0.90450865 -2.8343694e-08 -0.30901697 0.95105666\n\t\t 0.29389262 -0.30901697 0.90450859 0.559017 -0.30901697 0.76942098 0.76942092 -0.30901697 0.55901706\n\t\t 0.90450853 -0.30901697 0.29389265 0.95105654 -0.30901697 0 0.93934804 -0.15643437 -0.30521268\n\t\t 0.79905719 -0.15643437 -0.580549 0.580549 -0.15643437 -0.79905713 0.30521265 -0.15643437 -0.93934792\n\t\t 0 -0.15643437 -0.98768884 -0.30521265 -0.15643437 -0.93934786;\n\tsetAttr \".vt[166:331]\" -0.58054888 -0.15643437 -0.79905695 -0.79905689 -0.15643437 -0.58054882\n\t\t -0.93934768 -0.15643437 -0.30521256 -0.9876886 -0.15643437 0 -0.93934768 -0.15643437 0.30521256\n\t\t -0.79905683 -0.15643437 0.58054876 -0.58054876 -0.15643437 0.79905677 -0.30521256 -0.15643437 0.93934757\n\t\t -2.9435407e-08 -0.15643437 0.98768848 0.30521247 -0.15643437 0.93934757 0.58054864 -0.15643437 0.79905671\n\t\t 0.79905665 -0.15643437 0.5805487 0.93934751 -0.15643437 0.3052125 0.98768836 -0.15643437 0\n\t\t 0.95105714 0 -0.30901718 0.80901754 0 -0.5877856 0.5877856 0 -0.80901748 0.30901715 0 -0.95105702\n\t\t 0 0 -1.000000476837 -0.30901715 0 -0.95105696 -0.58778548 0 -0.8090173 -0.80901724 0 -0.58778542\n\t\t -0.95105678 0 -0.30901706 -1.000000238419 0 0 -0.95105678 0 0.30901706 -0.80901718 0 0.58778536\n\t\t -0.58778536 0 0.80901712 -0.30901706 0 0.95105666 -2.9802322e-08 0 1.000000119209\n\t\t 0.30901697 0 0.9510566 0.58778524 0 0.80901706 0.809017 0 0.5877853 0.95105654 0 0.309017\n\t\t 1 0 0 0.93934804 0.15643437 -0.30521268 0.79905719 0.15643437 -0.580549 0.580549 0.15643437 -0.79905713\n\t\t 0.30521265 0.15643437 -0.93934792 0 0.15643437 -0.98768884 -0.30521265 0.15643437 -0.93934786\n\t\t -0.58054888 0.15643437 -0.79905695 -0.79905689 0.15643437 -0.58054882 -0.93934768 0.15643437 -0.30521256\n\t\t -0.9876886 0.15643437 0 -0.93934768 0.15643437 0.30521256 -0.79905683 0.15643437 0.58054876\n\t\t -0.58054876 0.15643437 0.79905677 -0.30521256 0.15643437 0.93934757 -2.9435407e-08 0.15643437 0.98768848\n\t\t 0.30521247 0.15643437 0.93934757 0.58054864 0.15643437 0.79905671 0.79905665 0.15643437 0.5805487\n\t\t 0.93934751 0.15643437 0.3052125 0.98768836 0.15643437 0 0.90450913 0.30901697 -0.2938928\n\t\t 0.7694214 0.30901697 -0.55901736 0.55901736 0.30901697 -0.76942134 0.29389277 0.30901697 -0.90450901\n\t\t 0 0.30901697 -0.95105702 -0.29389277 0.30901697 -0.90450895 -0.55901724 0.30901697 -0.76942122\n\t\t -0.76942116 0.30901697 -0.55901718 -0.90450877 0.30901697 -0.29389271 -0.95105678 0.30901697 0\n\t\t -0.90450877 0.30901697 0.29389271 -0.7694211 0.30901697 0.55901712 -0.55901712 0.30901697 0.76942104\n\t\t -0.29389271 0.30901697 0.90450865 -2.8343694e-08 0.30901697 0.95105666 0.29389262 0.30901697 0.90450859\n\t\t 0.559017 0.30901697 0.76942098 0.76942092 0.30901697 0.55901706 0.90450853 0.30901697 0.29389265\n\t\t 0.95105654 0.30901697 0 0.8473981 0.45399052 -0.27533633 0.72083992 0.45399052 -0.5237208\n\t\t 0.5237208 0.45399052 -0.72083986 0.2753363 0.45399052 -0.84739798 0 0.45399052 -0.89100695\n\t\t -0.2753363 0.45399052 -0.84739798 -0.52372068 0.45399052 -0.72083968 -0.72083962 0.45399052 -0.52372062\n\t\t -0.8473978 0.45399052 -0.27533621 -0.89100677 0.45399052 0 -0.8473978 0.45399052 0.27533621\n\t\t -0.72083962 0.45399052 0.52372062 -0.52372062 0.45399052 0.72083956 -0.27533621 0.45399052 0.84739769\n\t\t -2.6554064e-08 0.45399052 0.89100665 0.27533615 0.45399052 0.84739763 0.5237205 0.45399052 0.7208395\n\t\t 0.72083944 0.45399052 0.52372056 0.84739757 0.45399052 0.27533618 0.89100653 0.45399052 0\n\t\t 0.7694214 0.58778524 -0.25000015 0.65450895 0.58778524 -0.47552854 0.47552854 0.58778524 -0.65450889\n\t\t 0.25000012 0.58778524 -0.76942128 0 0.58778524 -0.80901736 -0.25000012 0.58778524 -0.76942122\n\t\t -0.47552845 0.58778524 -0.65450877 -0.65450871 0.58778524 -0.47552839 -0.7694211 0.58778524 -0.25000006\n\t\t -0.80901718 0.58778524 0 -0.7694211 0.58778524 0.25000006 -0.65450865 0.58778524 0.47552836\n\t\t -0.47552836 0.58778524 0.65450859 -0.25000006 0.58778524 0.76942098 -2.4110586e-08 0.58778524 0.80901712\n\t\t 0.24999999 0.58778524 0.76942098 0.47552827 0.58778524 0.65450853 0.65450853 0.58778524 0.4755283\n\t\t 0.76942092 0.58778524 0.25 0.809017 0.58778524 0 0.67249894 0.70710677 -0.21850814\n\t\t 0.57206178 0.70710677 -0.41562718 0.41562718 0.70710677 -0.57206172 0.21850812 0.70710677 -0.67249888\n\t\t 0 0.70710677 -0.70710713 -0.21850812 0.70710677 -0.67249882 -0.41562709 0.70710677 -0.5720616\n\t\t -0.57206154 0.70710677 -0.41562706 -0.6724987 0.70710677 -0.21850805 -0.70710695 0.70710677 0\n\t\t -0.6724987 0.70710677 0.21850805 -0.57206154 0.70710677 0.415627 -0.415627 0.70710677 0.57206148\n\t\t -0.21850805 0.70710677 0.67249858 -2.1073424e-08 0.70710677 0.70710683 0.21850799 0.70710677 0.67249858\n\t\t 0.41562691 0.70710677 0.57206142 0.57206142 0.70710677 0.41562697 0.67249852 0.70710677 0.21850802\n\t\t 0.70710677 0.70710677 0 0.55901736 0.809017 -0.18163574 0.47552857 0.809017 -0.34549171\n\t\t 0.34549171 0.809017 -0.47552854 0.18163572 0.809017 -0.5590173 0 0.809017 -0.58778554\n\t\t -0.18163572 0.809017 -0.55901724 -0.34549165 0.809017 -0.47552842 -0.47552839 0.809017 -0.34549159\n\t\t -0.55901712 0.809017 -0.18163566 -0.58778536 0.809017 0 -0.55901712 0.809017 0.18163566\n\t\t -0.47552836 0.809017 0.34549156 -0.34549156 0.809017 0.47552833 -0.18163566 0.809017 0.55901706\n\t\t -1.7517365e-08 0.809017 0.5877853 0.18163562 0.809017 0.55901706 0.3454915 0.809017 0.4755283\n\t\t 0.47552827 0.809017 0.34549153 0.559017 0.809017 0.18163563 0.58778524 0.809017 0\n\t\t 0.43177092 0.89100653 -0.14029087 0.36728629 0.89100653 -0.2668491 0.2668491 0.89100653 -0.36728626\n\t\t 0.14029086 0.89100653 -0.43177086 0 0.89100653 -0.45399073 -0.14029086 0.89100653 -0.43177083\n\t\t -0.26684904 0.89100653 -0.36728618 -0.36728615 0.89100653 -0.26684901 -0.43177077 0.89100653 -0.14029081\n\t\t -0.45399064 0.89100653 0 -0.43177077 0.89100653 0.14029081 -0.36728612 0.89100653 0.26684898;\n\tsetAttr \".vt[332:381]\" -0.26684898 0.89100653 0.36728612 -0.14029081 0.89100653 0.43177071\n\t\t -1.3529972e-08 0.89100653 0.45399058 0.14029078 0.89100653 0.43177068 0.26684892 0.89100653 0.36728609\n\t\t 0.36728606 0.89100653 0.26684895 0.43177065 0.89100653 0.1402908 0.45399052 0.89100653 0\n\t\t 0.29389283 0.95105654 -0.095491566 0.25000018 0.95105654 -0.18163574 0.18163574 0.95105654 -0.25000015\n\t\t 0.095491551 0.95105654 -0.2938928 0 0.95105654 -0.30901715 -0.095491551 0.95105654 -0.29389277\n\t\t -0.18163571 0.95105654 -0.25000009 -0.25000009 0.95105654 -0.18163569 -0.29389271 0.95105654 -0.095491529\n\t\t -0.30901706 0.95105654 0 -0.29389271 0.95105654 0.095491529 -0.25000006 0.95105654 0.18163568\n\t\t -0.18163568 0.95105654 0.25000006 -0.095491529 0.95105654 0.29389268 -9.2094243e-09 0.95105654 0.30901703\n\t\t 0.095491499 0.95105654 0.29389265 0.18163563 0.95105654 0.25000003 0.25 0.95105654 0.18163565\n\t\t 0.29389265 0.95105654 0.095491506 0.309017 0.95105654 0 0.14877813 0.98768836 -0.048340943\n\t\t 0.12655823 0.98768836 -0.091949932 0.091949932 0.98768836 -0.12655823 0.048340935 0.98768836 -0.14877811\n\t\t 0 0.98768836 -0.15643455 -0.048340935 0.98768836 -0.1487781 -0.091949917 0.98768836 -0.1265582\n\t\t -0.12655818 0.98768836 -0.091949902 -0.14877807 0.98768836 -0.048340924 -0.15643452 0.98768836 0\n\t\t -0.14877807 0.98768836 0.048340924 -0.12655818 0.98768836 0.091949895 -0.091949895 0.98768836 0.12655817\n\t\t -0.048340924 0.98768836 0.14877805 -4.6621107e-09 0.98768836 0.15643449 0.048340909 0.98768836 0.14877804\n\t\t 0.09194988 0.98768836 0.12655815 0.12655815 0.98768836 0.091949888 0.14877804 0.98768836 0.048340913\n\t\t 0.15643448 0.98768836 0 0 -1 0 0 1 0;\n\tsetAttr -s 780 \".ed\";\n\tsetAttr \".ed[0:165]\"  0 1 1 1 2 1 2 3 1 3 4 1 4 5 1 5 6 1 6 7 1 7 8 1 8 9 1\n\t\t 9 10 1 10 11 1 11 12 1 12 13 1 13 14 1 14 15 1 15 16 1 16 17 1 17 18 1 18 19 1 19 0 1\n\t\t 20 21 1 21 22 1 22 23 1 23 24 1 24 25 1 25 26 1 26 27 1 27 28 1 28 29 1 29 30 1 30 31 1\n\t\t 31 32 1 32 33 1 33 34 1 34 35 1 35 36 1 36 37 1 37 38 1 38 39 1 39 20 1 40 41 1 41 42 1\n\t\t 42 43 1 43 44 1 44 45 1 45 46 1 46 47 1 47 48 1 48 49 1 49 50 1 50 51 1 51 52 1 52 53 1\n\t\t 53 54 1 54 55 1 55 56 1 56 57 1 57 58 1 58 59 1 59 40 1 60 61 1 61 62 1 62 63 1 63 64 1\n\t\t 64 65 1 65 66 1 66 67 1 67 68 1 68 69 1 69 70 1 70 71 1 71 72 1 72 73 1 73 74 1 74 75 1\n\t\t 75 76 1 76 77 1 77 78 1 78 79 1 79 60 1 80 81 1 81 82 1 82 83 1 83 84 1 84 85 1 85 86 1\n\t\t 86 87 1 87 88 1 88 89 1 89 90 1 90 91 1 91 92 1 92 93 1 93 94 1 94 95 1 95 96 1 96 97 1\n\t\t 97 98 1 98 99 1 99 80 1 100 101 1 101 102 1 102 103 1 103 104 1 104 105 1 105 106 1\n\t\t 106 107 1 107 108 1 108 109 1 109 110 1 110 111 1 111 112 1 112 113 1 113 114 1 114 115 1\n\t\t 115 116 1 116 117 1 117 118 1 118 119 1 119 100 1 120 121 1 121 122 1 122 123 1 123 124 1\n\t\t 124 125 1 125 126 1 126 127 1 127 128 1 128 129 1 129 130 1 130 131 1 131 132 1 132 133 1\n\t\t 133 134 1 134 135 1 135 136 1 136 137 1 137 138 1 138 139 1 139 120 1 140 141 1 141 142 1\n\t\t 142 143 1 143 144 1 144 145 1 145 146 1 146 147 1 147 148 1 148 149 1 149 150 1 150 151 1\n\t\t 151 152 1 152 153 1 153 154 1 154 155 1 155 156 1 156 157 1 157 158 1 158 159 1 159 140 1\n\t\t 160 161 1 161 162 1 162 163 1 163 164 1 164 165 1 165 166 1;\n\tsetAttr \".ed[166:331]\" 166 167 1 167 168 1 168 169 1 169 170 1 170 171 1 171 172 1\n\t\t 172 173 1 173 174 1 174 175 1 175 176 1 176 177 1 177 178 1 178 179 1 179 160 1 180 181 1\n\t\t 181 182 1 182 183 1 183 184 1 184 185 1 185 186 1 186 187 1 187 188 1 188 189 1 189 190 1\n\t\t 190 191 1 191 192 1 192 193 1 193 194 1 194 195 1 195 196 1 196 197 1 197 198 1 198 199 1\n\t\t 199 180 1 200 201 1 201 202 1 202 203 1 203 204 1 204 205 1 205 206 1 206 207 1 207 208 1\n\t\t 208 209 1 209 210 1 210 211 1 211 212 1 212 213 1 213 214 1 214 215 1 215 216 1 216 217 1\n\t\t 217 218 1 218 219 1 219 200 1 220 221 1 221 222 1 222 223 1 223 224 1 224 225 1 225 226 1\n\t\t 226 227 1 227 228 1 228 229 1 229 230 1 230 231 1 231 232 1 232 233 1 233 234 1 234 235 1\n\t\t 235 236 1 236 237 1 237 238 1 238 239 1 239 220 1 240 241 1 241 242 1 242 243 1 243 244 1\n\t\t 244 245 1 245 246 1 246 247 1 247 248 1 248 249 1 249 250 1 250 251 1 251 252 1 252 253 1\n\t\t 253 254 1 254 255 1 255 256 1 256 257 1 257 258 1 258 259 1 259 240 1 260 261 1 261 262 1\n\t\t 262 263 1 263 264 1 264 265 1 265 266 1 266 267 1 267 268 1 268 269 1 269 270 1 270 271 1\n\t\t 271 272 1 272 273 1 273 274 1 274 275 1 275 276 1 276 277 1 277 278 1 278 279 1 279 260 1\n\t\t 280 281 1 281 282 1 282 283 1 283 284 1 284 285 1 285 286 1 286 287 1 287 288 1 288 289 1\n\t\t 289 290 1 290 291 1 291 292 1 292 293 1 293 294 1 294 295 1 295 296 1 296 297 1 297 298 1\n\t\t 298 299 1 299 280 1 300 301 1 301 302 1 302 303 1 303 304 1 304 305 1 305 306 1 306 307 1\n\t\t 307 308 1 308 309 1 309 310 1 310 311 1 311 312 1 312 313 1 313 314 1 314 315 1 315 316 1\n\t\t 316 317 1 317 318 1 318 319 1 319 300 1 320 321 1 321 322 1 322 323 1 323 324 1 324 325 1\n\t\t 325 326 1 326 327 1 327 328 1 328 329 1 329 330 1 330 331 1 331 332 1;\n\tsetAttr \".ed[332:497]\" 332 333 1 333 334 1 334 335 1 335 336 1 336 337 1 337 338 1\n\t\t 338 339 1 339 320 1 340 341 1 341 342 1 342 343 1 343 344 1 344 345 1 345 346 1 346 347 1\n\t\t 347 348 1 348 349 1 349 350 1 350 351 1 351 352 1 352 353 1 353 354 1 354 355 1 355 356 1\n\t\t 356 357 1 357 358 1 358 359 1 359 340 1 360 361 1 361 362 1 362 363 1 363 364 1 364 365 1\n\t\t 365 366 1 366 367 1 367 368 1 368 369 1 369 370 1 370 371 1 371 372 1 372 373 1 373 374 1\n\t\t 374 375 1 375 376 1 376 377 1 377 378 1 378 379 1 379 360 1 0 20 1 1 21 1 2 22 1\n\t\t 3 23 1 4 24 1 5 25 1 6 26 1 7 27 1 8 28 1 9 29 1 10 30 1 11 31 1 12 32 1 13 33 1\n\t\t 14 34 1 15 35 1 16 36 1 17 37 1 18 38 1 19 39 1 20 40 1 21 41 1 22 42 1 23 43 1 24 44 1\n\t\t 25 45 1 26 46 1 27 47 1 28 48 1 29 49 1 30 50 1 31 51 1 32 52 1 33 53 1 34 54 1 35 55 1\n\t\t 36 56 1 37 57 1 38 58 1 39 59 1 40 60 1 41 61 1 42 62 1 43 63 1 44 64 1 45 65 1 46 66 1\n\t\t 47 67 1 48 68 1 49 69 1 50 70 1 51 71 1 52 72 1 53 73 1 54 74 1 55 75 1 56 76 1 57 77 1\n\t\t 58 78 1 59 79 1 60 80 1 61 81 1 62 82 1 63 83 1 64 84 1 65 85 1 66 86 1 67 87 1 68 88 1\n\t\t 69 89 1 70 90 1 71 91 1 72 92 1 73 93 1 74 94 1 75 95 1 76 96 1 77 97 1 78 98 1 79 99 1\n\t\t 80 100 1 81 101 1 82 102 1 83 103 1 84 104 1 85 105 1 86 106 1 87 107 1 88 108 1\n\t\t 89 109 1 90 110 1 91 111 1 92 112 1 93 113 1 94 114 1 95 115 1 96 116 1 97 117 1\n\t\t 98 118 1 99 119 1 100 120 1 101 121 1 102 122 1 103 123 1 104 124 1 105 125 1 106 126 1\n\t\t 107 127 1 108 128 1 109 129 1 110 130 1 111 131 1 112 132 1 113 133 1 114 134 1 115 135 1\n\t\t 116 136 1 117 137 1;\n\tsetAttr \".ed[498:663]\" 118 138 1 119 139 1 120 140 1 121 141 1 122 142 1 123 143 1\n\t\t 124 144 1 125 145 1 126 146 1 127 147 1 128 148 1 129 149 1 130 150 1 131 151 1 132 152 1\n\t\t 133 153 1 134 154 1 135 155 1 136 156 1 137 157 1 138 158 1 139 159 1 140 160 1 141 161 1\n\t\t 142 162 1 143 163 1 144 164 1 145 165 1 146 166 1 147 167 1 148 168 1 149 169 1 150 170 1\n\t\t 151 171 1 152 172 1 153 173 1 154 174 1 155 175 1 156 176 1 157 177 1 158 178 1 159 179 1\n\t\t 160 180 1 161 181 1 162 182 1 163 183 1 164 184 1 165 185 1 166 186 1 167 187 1 168 188 1\n\t\t 169 189 1 170 190 1 171 191 1 172 192 1 173 193 1 174 194 1 175 195 1 176 196 1 177 197 1\n\t\t 178 198 1 179 199 1 180 200 1 181 201 1 182 202 1 183 203 1 184 204 1 185 205 1 186 206 1\n\t\t 187 207 1 188 208 1 189 209 1 190 210 1 191 211 1 192 212 1 193 213 1 194 214 1 195 215 1\n\t\t 196 216 1 197 217 1 198 218 1 199 219 1 200 220 1 201 221 1 202 222 1 203 223 1 204 224 1\n\t\t 205 225 1 206 226 1 207 227 1 208 228 1 209 229 1 210 230 1 211 231 1 212 232 1 213 233 1\n\t\t 214 234 1 215 235 1 216 236 1 217 237 1 218 238 1 219 239 1 220 240 1 221 241 1 222 242 1\n\t\t 223 243 1 224 244 1 225 245 1 226 246 1 227 247 1 228 248 1 229 249 1 230 250 1 231 251 1\n\t\t 232 252 1 233 253 1 234 254 1 235 255 1 236 256 1 237 257 1 238 258 1 239 259 1 240 260 1\n\t\t 241 261 1 242 262 1 243 263 1 244 264 1 245 265 1 246 266 1 247 267 1 248 268 1 249 269 1\n\t\t 250 270 1 251 271 1 252 272 1 253 273 1 254 274 1 255 275 1 256 276 1 257 277 1 258 278 1\n\t\t 259 279 1 260 280 1 261 281 1 262 282 1 263 283 1 264 284 1 265 285 1 266 286 1 267 287 1\n\t\t 268 288 1 269 289 1 270 290 1 271 291 1 272 292 1 273 293 1 274 294 1 275 295 1 276 296 1\n\t\t 277 297 1 278 298 1 279 299 1 280 300 1 281 301 1 282 302 1 283 303 1;\n\tsetAttr \".ed[664:779]\" 284 304 1 285 305 1 286 306 1 287 307 1 288 308 1 289 309 1\n\t\t 290 310 1 291 311 1 292 312 1 293 313 1 294 314 1 295 315 1 296 316 1 297 317 1 298 318 1\n\t\t 299 319 1 300 320 1 301 321 1 302 322 1 303 323 1 304 324 1 305 325 1 306 326 1 307 327 1\n\t\t 308 328 1 309 329 1 310 330 1 311 331 1 312 332 1 313 333 1 314 334 1 315 335 1 316 336 1\n\t\t 317 337 1 318 338 1 319 339 1 320 340 1 321 341 1 322 342 1 323 343 1 324 344 1 325 345 1\n\t\t 326 346 1 327 347 1 328 348 1 329 349 1 330 350 1 331 351 1 332 352 1 333 353 1 334 354 1\n\t\t 335 355 1 336 356 1 337 357 1 338 358 1 339 359 1 340 360 1 341 361 1 342 362 1 343 363 1\n\t\t 344 364 1 345 365 1 346 366 1 347 367 1 348 368 1 349 369 1 350 370 1 351 371 1 352 372 1\n\t\t 353 373 1 354 374 1 355 375 1 356 376 1 357 377 1 358 378 1 359 379 1 380 0 1 380 1 1\n\t\t 380 2 1 380 3 1 380 4 1 380 5 1 380 6 1 380 7 1 380 8 1 380 9 1 380 10 1 380 11 1\n\t\t 380 12 1 380 13 1 380 14 1 380 15 1 380 16 1 380 17 1 380 18 1 380 19 1 360 381 1\n\t\t 361 381 1 362 381 1 363 381 1 364 381 1 365 381 1 366 381 1 367 381 1 368 381 1 369 381 1\n\t\t 370 381 1 371 381 1 372 381 1 373 381 1 374 381 1 375 381 1 376 381 1 377 381 1 378 381 1\n\t\t 379 381 1;\n\tsetAttr -s 400 -ch 1560 \".fc[0:399]\" -type \"polyFaces\" \n\t\tf 4 0 381 -21 -381\n\t\tmu 0 4 0 1 22 21\n\t\tf 4 1 382 -22 -382\n\t\tmu 0 4 1 2 23 22\n\t\tf 4 2 383 -23 -383\n\t\tmu 0 4 2 3 24 23\n\t\tf 4 3 384 -24 -384\n\t\tmu 0 4 3 4 25 24\n\t\tf 4 4 385 -25 -385\n\t\tmu 0 4 4 5 26 25\n\t\tf 4 5 386 -26 -386\n\t\tmu 0 4 5 6 27 26\n\t\tf 4 6 387 -27 -387\n\t\tmu 0 4 6 7 28 27\n\t\tf 4 7 388 -28 -388\n\t\tmu 0 4 7 8 29 28\n\t\tf 4 8 389 -29 -389\n\t\tmu 0 4 8 9 30 29\n\t\tf 4 9 390 -30 -390\n\t\tmu 0 4 9 10 31 30\n\t\tf 4 10 391 -31 -391\n\t\tmu 0 4 10 11 32 31\n\t\tf 4 11 392 -32 -392\n\t\tmu 0 4 11 12 33 32\n\t\tf 4 12 393 -33 -393\n\t\tmu 0 4 12 13 34 33\n\t\tf 4 13 394 -34 -394\n\t\tmu 0 4 13 14 35 34\n\t\tf 4 14 395 -35 -395\n\t\tmu 0 4 14 15 36 35\n\t\tf 4 15 396 -36 -396\n\t\tmu 0 4 15 16 37 36\n\t\tf 4 16 397 -37 -397\n\t\tmu 0 4 16 17 38 37\n\t\tf 4 17 398 -38 -398\n\t\tmu 0 4 17 18 39 38\n\t\tf 4 18 399 -39 -399\n\t\tmu 0 4 18 19 40 39\n\t\tf 4 19 380 -40 -400\n\t\tmu 0 4 19 20 41 40\n\t\tf 4 20 401 -41 -401\n\t\tmu 0 4 21 22 43 42\n\t\tf 4 21 402 -42 -402\n\t\tmu 0 4 22 23 44 43\n\t\tf 4 22 403 -43 -403\n\t\tmu 0 4 23 24 45 44\n\t\tf 4 23 404 -44 -404\n\t\tmu 0 4 24 25 46 45\n\t\tf 4 24 405 -45 -405\n\t\tmu 0 4 25 26 47 46\n\t\tf 4 25 406 -46 -406\n\t\tmu 0 4 26 27 48 47\n\t\tf 4 26 407 -47 -407\n\t\tmu 0 4 27 28 49 48\n\t\tf 4 27 408 -48 -408\n\t\tmu 0 4 28 29 50 49\n\t\tf 4 28 409 -49 -409\n\t\tmu 0 4 29 30 51 50\n\t\tf 4 29 410 -50 -410\n\t\tmu 0 4 30 31 52 51\n\t\tf 4 30 411 -51 -411\n\t\tmu 0 4 31 32 53 52\n\t\tf 4 31 412 -52 -412\n\t\tmu 0 4 32 33 54 53\n\t\tf 4 32 413 -53 -413\n\t\tmu 0 4 33 34 55 54\n\t\tf 4 33 414 -54 -414\n\t\tmu 0 4 34 35 56 55\n\t\tf 4 34 415 -55 -415\n\t\tmu 0 4 35 36 57 56\n\t\tf 4 35 416 -56 -416\n\t\tmu 0 4 36 37 58 57\n\t\tf 4 36 417 -57 -417\n\t\tmu 0 4 37 38 59 58\n\t\tf 4 37 418 -58 -418\n\t\tmu 0 4 38 39 60 59\n\t\tf 4 38 419 -59 -419\n\t\tmu 0 4 39 40 61 60\n\t\tf 4 39 400 -60 -420\n\t\tmu 0 4 40 41 62 61\n\t\tf 4 40 421 -61 -421\n\t\tmu 0 4 42 43 64 63\n\t\tf 4 41 422 -62 -422\n\t\tmu 0 4 43 44 65 64\n\t\tf 4 42 423 -63 -423\n\t\tmu 0 4 44 45 66 65\n\t\tf 4 43 424 -64 -424\n\t\tmu 0 4 45 46 67 66\n\t\tf 4 44 425 -65 -425\n\t\tmu 0 4 46 47 68 67\n\t\tf 4 45 426 -66 -426\n\t\tmu 0 4 47 48 69 68\n\t\tf 4 46 427 -67 -427\n\t\tmu 0 4 48 49 70 69\n\t\tf 4 47 428 -68 -428\n\t\tmu 0 4 49 50 71 70\n\t\tf 4 48 429 -69 -429\n\t\tmu 0 4 50 51 72 71\n\t\tf 4 49 430 -70 -430\n\t\tmu 0 4 51 52 73 72\n\t\tf 4 50 431 -71 -431\n\t\tmu 0 4 52 53 74 73\n\t\tf 4 51 432 -72 -432\n\t\tmu 0 4 53 54 75 74\n\t\tf 4 52 433 -73 -433\n\t\tmu 0 4 54 55 76 75\n\t\tf 4 53 434 -74 -434\n\t\tmu 0 4 55 56 77 76\n\t\tf 4 54 435 -75 -435\n\t\tmu 0 4 56 57 78 77\n\t\tf 4 55 436 -76 -436\n\t\tmu 0 4 57 58 79 78\n\t\tf 4 56 437 -77 -437\n\t\tmu 0 4 58 59 80 79\n\t\tf 4 57 438 -78 -438\n\t\tmu 0 4 59 60 81 80\n\t\tf 4 58 439 -79 -439\n\t\tmu 0 4 60 61 82 81\n\t\tf 4 59 420 -80 -440\n\t\tmu 0 4 61 62 83 82\n\t\tf 4 60 441 -81 -441\n\t\tmu 0 4 63 64 85 84\n\t\tf 4 61 442 -82 -442\n\t\tmu 0 4 64 65 86 85\n\t\tf 4 62 443 -83 -443\n\t\tmu 0 4 65 66 87 86\n\t\tf 4 63 444 -84 -444\n\t\tmu 0 4 66 67 88 87\n\t\tf 4 64 445 -85 -445\n\t\tmu 0 4 67 68 89 88\n\t\tf 4 65 446 -86 -446\n\t\tmu 0 4 68 69 90 89\n\t\tf 4 66 447 -87 -447\n\t\tmu 0 4 69 70 91 90\n\t\tf 4 67 448 -88 -448\n\t\tmu 0 4 70 71 92 91\n\t\tf 4 68 449 -89 -449\n\t\tmu 0 4 71 72 93 92\n\t\tf 4 69 450 -90 -450\n\t\tmu 0 4 72 73 94 93\n\t\tf 4 70 451 -91 -451\n\t\tmu 0 4 73 74 95 94\n\t\tf 4 71 452 -92 -452\n\t\tmu 0 4 74 75 96 95\n\t\tf 4 72 453 -93 -453\n\t\tmu 0 4 75 76 97 96\n\t\tf 4 73 454 -94 -454\n\t\tmu 0 4 76 77 98 97\n\t\tf 4 74 455 -95 -455\n\t\tmu 0 4 77 78 99 98\n\t\tf 4 75 456 -96 -456\n\t\tmu 0 4 78 79 100 99\n\t\tf 4 76 457 -97 -457\n\t\tmu 0 4 79 80 101 100\n\t\tf 4 77 458 -98 -458\n\t\tmu 0 4 80 81 102 101\n\t\tf 4 78 459 -99 -459\n\t\tmu 0 4 81 82 103 102\n\t\tf 4 79 440 -100 -460\n\t\tmu 0 4 82 83 104 103\n\t\tf 4 80 461 -101 -461\n\t\tmu 0 4 84 85 106 105\n\t\tf 4 81 462 -102 -462\n\t\tmu 0 4 85 86 107 106\n\t\tf 4 82 463 -103 -463\n\t\tmu 0 4 86 87 108 107\n\t\tf 4 83 464 -104 -464\n\t\tmu 0 4 87 88 109 108\n\t\tf 4 84 465 -105 -465\n\t\tmu 0 4 88 89 110 109\n\t\tf 4 85 466 -106 -466\n\t\tmu 0 4 89 90 111 110\n\t\tf 4 86 467 -107 -467\n\t\tmu 0 4 90 91 112 111\n\t\tf 4 87 468 -108 -468\n\t\tmu 0 4 91 92 113 112\n\t\tf 4 88 469 -109 -469\n\t\tmu 0 4 92 93 114 113\n\t\tf 4 89 470 -110 -470\n\t\tmu 0 4 93 94 115 114\n\t\tf 4 90 471 -111 -471\n\t\tmu 0 4 94 95 116 115\n\t\tf 4 91 472 -112 -472\n\t\tmu 0 4 95 96 117 116\n\t\tf 4 92 473 -113 -473\n\t\tmu 0 4 96 97 118 117\n\t\tf 4 93 474 -114 -474\n\t\tmu 0 4 97 98 119 118\n\t\tf 4 94 475 -115 -475\n\t\tmu 0 4 98 99 120 119\n\t\tf 4 95 476 -116 -476\n\t\tmu 0 4 99 100 121 120\n\t\tf 4 96 477 -117 -477\n\t\tmu 0 4 100 101 122 121\n\t\tf 4 97 478 -118 -478\n\t\tmu 0 4 101 102 123 122\n\t\tf 4 98 479 -119 -479\n\t\tmu 0 4 102 103 124 123\n\t\tf 4 99 460 -120 -480\n\t\tmu 0 4 103 104 125 124\n\t\tf 4 100 481 -121 -481\n\t\tmu 0 4 105 106 127 126\n\t\tf 4 101 482 -122 -482\n\t\tmu 0 4 106 107 128 127\n\t\tf 4 102 483 -123 -483\n\t\tmu 0 4 107 108 129 128\n\t\tf 4 103 484 -124 -484\n\t\tmu 0 4 108 109 130 129\n\t\tf 4 104 485 -125 -485\n\t\tmu 0 4 109 110 131 130\n\t\tf 4 105 486 -126 -486\n\t\tmu 0 4 110 111 132 131\n\t\tf 4 106 487 -127 -487\n\t\tmu 0 4 111 112 133 132\n\t\tf 4 107 488 -128 -488\n\t\tmu 0 4 112 113 134 133\n\t\tf 4 108 489 -129 -489\n\t\tmu 0 4 113 114 135 134\n\t\tf 4 109 490 -130 -490\n\t\tmu 0 4 114 115 136 135\n\t\tf 4 110 491 -131 -491\n\t\tmu 0 4 115 116 137 136\n\t\tf 4 111 492 -132 -492\n\t\tmu 0 4 116 117 138 137\n\t\tf 4 112 493 -133 -493\n\t\tmu 0 4 117 118 139 138\n\t\tf 4 113 494 -134 -494\n\t\tmu 0 4 118 119 140 139\n\t\tf 4 114 495 -135 -495\n\t\tmu 0 4 119 120 141 140\n\t\tf 4 115 496 -136 -496\n\t\tmu 0 4 120 121 142 141\n\t\tf 4 116 497 -137 -497\n\t\tmu 0 4 121 122 143 142\n\t\tf 4 117 498 -138 -498\n\t\tmu 0 4 122 123 144 143\n\t\tf 4 118 499 -139 -499\n\t\tmu 0 4 123 124 145 144\n\t\tf 4 119 480 -140 -500\n\t\tmu 0 4 124 125 146 145\n\t\tf 4 120 501 -141 -501\n\t\tmu 0 4 126 127 148 147\n\t\tf 4 121 502 -142 -502\n\t\tmu 0 4 127 128 149 148\n\t\tf 4 122 503 -143 -503\n\t\tmu 0 4 128 129 150 149\n\t\tf 4 123 504 -144 -504\n\t\tmu 0 4 129 130 151 150\n\t\tf 4 124 505 -145 -505\n\t\tmu 0 4 130 131 152 151\n\t\tf 4 125 506 -146 -506\n\t\tmu 0 4 131 132 153 152\n\t\tf 4 126 507 -147 -507\n\t\tmu 0 4 132 133 154 153\n\t\tf 4 127 508 -148 -508\n\t\tmu 0 4 133 134 155 154\n\t\tf 4 128 509 -149 -509\n\t\tmu 0 4 134 135 156 155\n\t\tf 4 129 510 -150 -510\n\t\tmu 0 4 135 136 157 156\n\t\tf 4 130 511 -151 -511\n\t\tmu 0 4 136 137 158 157\n\t\tf 4 131 512 -152 -512\n\t\tmu 0 4 137 138 159 158\n\t\tf 4 132 513 -153 -513\n\t\tmu 0 4 138 139 160 159\n\t\tf 4 133 514 -154 -514\n\t\tmu 0 4 139 140 161 160\n\t\tf 4 134 515 -155 -515\n\t\tmu 0 4 140 141 162 161\n\t\tf 4 135 516 -156 -516\n\t\tmu 0 4 141 142 163 162\n\t\tf 4 136 517 -157 -517\n\t\tmu 0 4 142 143 164 163\n\t\tf 4 137 518 -158 -518\n\t\tmu 0 4 143 144 165 164\n\t\tf 4 138 519 -159 -519\n\t\tmu 0 4 144 145 166 165\n\t\tf 4 139 500 -160 -520\n\t\tmu 0 4 145 146 167 166\n\t\tf 4 140 521 -161 -521\n\t\tmu 0 4 147 148 169 168\n\t\tf 4 141 522 -162 -522\n\t\tmu 0 4 148 149 170 169\n\t\tf 4 142 523 -163 -523\n\t\tmu 0 4 149 150 171 170\n\t\tf 4 143 524 -164 -524\n\t\tmu 0 4 150 151 172 171\n\t\tf 4 144 525 -165 -525\n\t\tmu 0 4 151 152 173 172\n\t\tf 4 145 526 -166 -526\n\t\tmu 0 4 152 153 174 173\n\t\tf 4 146 527 -167 -527\n\t\tmu 0 4 153 154 175 174\n\t\tf 4 147 528 -168 -528\n\t\tmu 0 4 154 155 176 175\n\t\tf 4 148 529 -169 -529\n\t\tmu 0 4 155 156 177 176\n\t\tf 4 149 530 -170 -530\n\t\tmu 0 4 156 157 178 177\n\t\tf 4 150 531 -171 -531\n\t\tmu 0 4 157 158 179 178\n\t\tf 4 151 532 -172 -532\n\t\tmu 0 4 158 159 180 179\n\t\tf 4 152 533 -173 -533\n\t\tmu 0 4 159 160 181 180\n\t\tf 4 153 534 -174 -534\n\t\tmu 0 4 160 161 182 181\n\t\tf 4 154 535 -175 -535\n\t\tmu 0 4 161 162 183 182\n\t\tf 4 155 536 -176 -536\n\t\tmu 0 4 162 163 184 183\n\t\tf 4 156 537 -177 -537\n\t\tmu 0 4 163 164 185 184\n\t\tf 4 157 538 -178 -538\n\t\tmu 0 4 164 165 186 185\n\t\tf 4 158 539 -179 -539\n\t\tmu 0 4 165 166 187 186\n\t\tf 4 159 520 -180 -540\n\t\tmu 0 4 166 167 188 187\n\t\tf 4 160 541 -181 -541\n\t\tmu 0 4 168 169 190 189\n\t\tf 4 161 542 -182 -542\n\t\tmu 0 4 169 170 191 190\n\t\tf 4 162 543 -183 -543\n\t\tmu 0 4 170 171 192 191\n\t\tf 4 163 544 -184 -544\n\t\tmu 0 4 171 172 193 192\n\t\tf 4 164 545 -185 -545\n\t\tmu 0 4 172 173 194 193\n\t\tf 4 165 546 -186 -546\n\t\tmu 0 4 173 174 195 194\n\t\tf 4 166 547 -187 -547\n\t\tmu 0 4 174 175 196 195\n\t\tf 4 167 548 -188 -548\n\t\tmu 0 4 175 176 197 196\n\t\tf 4 168 549 -189 -549\n\t\tmu 0 4 176 177 198 197\n\t\tf 4 169 550 -190 -550\n\t\tmu 0 4 177 178 199 198\n\t\tf 4 170 551 -191 -551\n\t\tmu 0 4 178 179 200 199\n\t\tf 4 171 552 -192 -552\n\t\tmu 0 4 179 180 201 200\n\t\tf 4 172 553 -193 -553\n\t\tmu 0 4 180 181 202 201\n\t\tf 4 173 554 -194 -554\n\t\tmu 0 4 181 182 203 202\n\t\tf 4 174 555 -195 -555\n\t\tmu 0 4 182 183 204 203\n\t\tf 4 175 556 -196 -556\n\t\tmu 0 4 183 184 205 204\n\t\tf 4 176 557 -197 -557\n\t\tmu 0 4 184 185 206 205\n\t\tf 4 177 558 -198 -558\n\t\tmu 0 4 185 186 207 206\n\t\tf 4 178 559 -199 -559\n\t\tmu 0 4 186 187 208 207\n\t\tf 4 179 540 -200 -560\n\t\tmu 0 4 187 188 209 208\n\t\tf 4 180 561 -201 -561\n\t\tmu 0 4 189 190 211 210\n\t\tf 4 181 562 -202 -562\n\t\tmu 0 4 190 191 212 211\n\t\tf 4 182 563 -203 -563\n\t\tmu 0 4 191 192 213 212\n\t\tf 4 183 564 -204 -564\n\t\tmu 0 4 192 193 214 213\n\t\tf 4 184 565 -205 -565\n\t\tmu 0 4 193 194 215 214\n\t\tf 4 185 566 -206 -566\n\t\tmu 0 4 194 195 216 215\n\t\tf 4 186 567 -207 -567\n\t\tmu 0 4 195 196 217 216\n\t\tf 4 187 568 -208 -568\n\t\tmu 0 4 196 197 218 217\n\t\tf 4 188 569 -209 -569\n\t\tmu 0 4 197 198 219 218\n\t\tf 4 189 570 -210 -570\n\t\tmu 0 4 198 199 220 219\n\t\tf 4 190 571 -211 -571\n\t\tmu 0 4 199 200 221 220\n\t\tf 4 191 572 -212 -572\n\t\tmu 0 4 200 201 222 221\n\t\tf 4 192 573 -213 -573\n\t\tmu 0 4 201 202 223 222\n\t\tf 4 193 574 -214 -574\n\t\tmu 0 4 202 203 224 223\n\t\tf 4 194 575 -215 -575\n\t\tmu 0 4 203 204 225 224\n\t\tf 4 195 576 -216 -576\n\t\tmu 0 4 204 205 226 225\n\t\tf 4 196 577 -217 -577\n\t\tmu 0 4 205 206 227 226\n\t\tf 4 197 578 -218 -578\n\t\tmu 0 4 206 207 228 227\n\t\tf 4 198 579 -219 -579\n\t\tmu 0 4 207 208 229 228\n\t\tf 4 199 560 -220 -580\n\t\tmu 0 4 208 209 230 229\n\t\tf 4 200 581 -221 -581\n\t\tmu 0 4 210 211 232 231\n\t\tf 4 201 582 -222 -582\n\t\tmu 0 4 211 212 233 232\n\t\tf 4 202 583 -223 -583\n\t\tmu 0 4 212 213 234 233\n\t\tf 4 203 584 -224 -584\n\t\tmu 0 4 213 214 235 234\n\t\tf 4 204 585 -225 -585\n\t\tmu 0 4 214 215 236 235\n\t\tf 4 205 586 -226 -586\n\t\tmu 0 4 215 216 237 236\n\t\tf 4 206 587 -227 -587\n\t\tmu 0 4 216 217 238 237\n\t\tf 4 207 588 -228 -588\n\t\tmu 0 4 217 218 239 238\n\t\tf 4 208 589 -229 -589\n\t\tmu 0 4 218 219 240 239\n\t\tf 4 209 590 -230 -590\n\t\tmu 0 4 219 220 241 240\n\t\tf 4 210 591 -231 -591\n\t\tmu 0 4 220 221 242 241\n\t\tf 4 211 592 -232 -592\n\t\tmu 0 4 221 222 243 242\n\t\tf 4 212 593 -233 -593\n\t\tmu 0 4 222 223 244 243\n\t\tf 4 213 594 -234 -594\n\t\tmu 0 4 223 224 245 244\n\t\tf 4 214 595 -235 -595\n\t\tmu 0 4 224 225 246 245\n\t\tf 4 215 596 -236 -596\n\t\tmu 0 4 225 226 247 246\n\t\tf 4 216 597 -237 -597\n\t\tmu 0 4 226 227 248 247\n\t\tf 4 217 598 -238 -598\n\t\tmu 0 4 227 228 249 248\n\t\tf 4 218 599 -239 -599\n\t\tmu 0 4 228 229 250 249\n\t\tf 4 219 580 -240 -600\n\t\tmu 0 4 229 230 251 250\n\t\tf 4 220 601 -241 -601\n\t\tmu 0 4 231 232 253 252\n\t\tf 4 221 602 -242 -602\n\t\tmu 0 4 232 233 254 253\n\t\tf 4 222 603 -243 -603\n\t\tmu 0 4 233 234 255 254\n\t\tf 4 223 604 -244 -604\n\t\tmu 0 4 234 235 256 255\n\t\tf 4 224 605 -245 -605\n\t\tmu 0 4 235 236 257 256\n\t\tf 4 225 606 -246 -606\n\t\tmu 0 4 236 237 258 257\n\t\tf 4 226 607 -247 -607\n\t\tmu 0 4 237 238 259 258\n\t\tf 4 227 608 -248 -608\n\t\tmu 0 4 238 239 260 259\n\t\tf 4 228 609 -249 -609\n\t\tmu 0 4 239 240 261 260\n\t\tf 4 229 610 -250 -610\n\t\tmu 0 4 240 241 262 261\n\t\tf 4 230 611 -251 -611\n\t\tmu 0 4 241 242 263 262\n\t\tf 4 231 612 -252 -612\n\t\tmu 0 4 242 243 264 263\n\t\tf 4 232 613 -253 -613\n\t\tmu 0 4 243 244 265 264\n\t\tf 4 233 614 -254 -614\n\t\tmu 0 4 244 245 266 265\n\t\tf 4 234 615 -255 -615\n\t\tmu 0 4 245 246 267 266\n\t\tf 4 235 616 -256 -616\n\t\tmu 0 4 246 247 268 267\n\t\tf 4 236 617 -257 -617\n\t\tmu 0 4 247 248 269 268\n\t\tf 4 237 618 -258 -618\n\t\tmu 0 4 248 249 270 269\n\t\tf 4 238 619 -259 -619\n\t\tmu 0 4 249 250 271 270\n\t\tf 4 239 600 -260 -620\n\t\tmu 0 4 250 251 272 271\n\t\tf 4 240 621 -261 -621\n\t\tmu 0 4 252 253 274 273\n\t\tf 4 241 622 -262 -622\n\t\tmu 0 4 253 254 275 274\n\t\tf 4 242 623 -263 -623\n\t\tmu 0 4 254 255 276 275\n\t\tf 4 243 624 -264 -624\n\t\tmu 0 4 255 256 277 276\n\t\tf 4 244 625 -265 -625\n\t\tmu 0 4 256 257 278 277\n\t\tf 4 245 626 -266 -626\n\t\tmu 0 4 257 258 279 278\n\t\tf 4 246 627 -267 -627\n\t\tmu 0 4 258 259 280 279\n\t\tf 4 247 628 -268 -628\n\t\tmu 0 4 259 260 281 280\n\t\tf 4 248 629 -269 -629\n\t\tmu 0 4 260 261 282 281\n\t\tf 4 249 630 -270 -630\n\t\tmu 0 4 261 262 283 282\n\t\tf 4 250 631 -271 -631\n\t\tmu 0 4 262 263 284 283\n\t\tf 4 251 632 -272 -632\n\t\tmu 0 4 263 264 285 284\n\t\tf 4 252 633 -273 -633\n\t\tmu 0 4 264 265 286 285\n\t\tf 4 253 634 -274 -634\n\t\tmu 0 4 265 266 287 286\n\t\tf 4 254 635 -275 -635\n\t\tmu 0 4 266 267 288 287\n\t\tf 4 255 636 -276 -636\n\t\tmu 0 4 267 268 289 288\n\t\tf 4 256 637 -277 -637\n\t\tmu 0 4 268 269 290 289\n\t\tf 4 257 638 -278 -638\n\t\tmu 0 4 269 270 291 290\n\t\tf 4 258 639 -279 -639\n\t\tmu 0 4 270 271 292 291\n\t\tf 4 259 620 -280 -640\n\t\tmu 0 4 271 272 293 292\n\t\tf 4 260 641 -281 -641\n\t\tmu 0 4 273 274 295 294\n\t\tf 4 261 642 -282 -642\n\t\tmu 0 4 274 275 296 295\n\t\tf 4 262 643 -283 -643\n\t\tmu 0 4 275 276 297 296\n\t\tf 4 263 644 -284 -644\n\t\tmu 0 4 276 277 298 297\n\t\tf 4 264 645 -285 -645\n\t\tmu 0 4 277 278 299 298\n\t\tf 4 265 646 -286 -646\n\t\tmu 0 4 278 279 300 299\n\t\tf 4 266 647 -287 -647\n\t\tmu 0 4 279 280 301 300\n\t\tf 4 267 648 -288 -648\n\t\tmu 0 4 280 281 302 301\n\t\tf 4 268 649 -289 -649\n\t\tmu 0 4 281 282 303 302\n\t\tf 4 269 650 -290 -650\n\t\tmu 0 4 282 283 304 303\n\t\tf 4 270 651 -291 -651\n\t\tmu 0 4 283 284 305 304\n\t\tf 4 271 652 -292 -652\n\t\tmu 0 4 284 285 306 305\n\t\tf 4 272 653 -293 -653\n\t\tmu 0 4 285 286 307 306\n\t\tf 4 273 654 -294 -654\n\t\tmu 0 4 286 287 308 307\n\t\tf 4 274 655 -295 -655\n\t\tmu 0 4 287 288 309 308\n\t\tf 4 275 656 -296 -656\n\t\tmu 0 4 288 289 310 309\n\t\tf 4 276 657 -297 -657\n\t\tmu 0 4 289 290 311 310\n\t\tf 4 277 658 -298 -658\n\t\tmu 0 4 290 291 312 311\n\t\tf 4 278 659 -299 -659\n\t\tmu 0 4 291 292 313 312\n\t\tf 4 279 640 -300 -660\n\t\tmu 0 4 292 293 314 313\n\t\tf 4 280 661 -301 -661\n\t\tmu 0 4 294 295 316 315\n\t\tf 4 281 662 -302 -662\n\t\tmu 0 4 295 296 317 316\n\t\tf 4 282 663 -303 -663\n\t\tmu 0 4 296 297 318 317\n\t\tf 4 283 664 -304 -664\n\t\tmu 0 4 297 298 319 318\n\t\tf 4 284 665 -305 -665\n\t\tmu 0 4 298 299 320 319\n\t\tf 4 285 666 -306 -666\n\t\tmu 0 4 299 300 321 320\n\t\tf 4 286 667 -307 -667\n\t\tmu 0 4 300 301 322 321\n\t\tf 4 287 668 -308 -668\n\t\tmu 0 4 301 302 323 322\n\t\tf 4 288 669 -309 -669\n\t\tmu 0 4 302 303 324 323\n\t\tf 4 289 670 -310 -670\n\t\tmu 0 4 303 304 325 324\n\t\tf 4 290 671 -311 -671\n\t\tmu 0 4 304 305 326 325\n\t\tf 4 291 672 -312 -672\n\t\tmu 0 4 305 306 327 326\n\t\tf 4 292 673 -313 -673\n\t\tmu 0 4 306 307 328 327\n\t\tf 4 293 674 -314 -674\n\t\tmu 0 4 307 308 329 328\n\t\tf 4 294 675 -315 -675\n\t\tmu 0 4 308 309 330 329\n\t\tf 4 295 676 -316 -676\n\t\tmu 0 4 309 310 331 330\n\t\tf 4 296 677 -317 -677\n\t\tmu 0 4 310 311 332 331\n\t\tf 4 297 678 -318 -678\n\t\tmu 0 4 311 312 333 332\n\t\tf 4 298 679 -319 -679\n\t\tmu 0 4 312 313 334 333\n\t\tf 4 299 660 -320 -680\n\t\tmu 0 4 313 314 335 334\n\t\tf 4 300 681 -321 -681\n\t\tmu 0 4 315 316 337 336\n\t\tf 4 301 682 -322 -682\n\t\tmu 0 4 316 317 338 337\n\t\tf 4 302 683 -323 -683\n\t\tmu 0 4 317 318 339 338\n\t\tf 4 303 684 -324 -684\n\t\tmu 0 4 318 319 340 339\n\t\tf 4 304 685 -325 -685\n\t\tmu 0 4 319 320 341 340\n\t\tf 4 305 686 -326 -686\n\t\tmu 0 4 320 321 342 341\n\t\tf 4 306 687 -327 -687\n\t\tmu 0 4 321 322 343 342\n\t\tf 4 307 688 -328 -688\n\t\tmu 0 4 322 323 344 343\n\t\tf 4 308 689 -329 -689\n\t\tmu 0 4 323 324 345 344\n\t\tf 4 309 690 -330 -690\n\t\tmu 0 4 324 325 346 345\n\t\tf 4 310 691 -331 -691\n\t\tmu 0 4 325 326 347 346\n\t\tf 4 311 692 -332 -692\n\t\tmu 0 4 326 327 348 347\n\t\tf 4 312 693 -333 -693\n\t\tmu 0 4 327 328 349 348\n\t\tf 4 313 694 -334 -694\n\t\tmu 0 4 328 329 350 349\n\t\tf 4 314 695 -335 -695\n\t\tmu 0 4 329 330 351 350\n\t\tf 4 315 696 -336 -696\n\t\tmu 0 4 330 331 352 351\n\t\tf 4 316 697 -337 -697\n\t\tmu 0 4 331 332 353 352\n\t\tf 4 317 698 -338 -698\n\t\tmu 0 4 332 333 354 353\n\t\tf 4 318 699 -339 -699\n\t\tmu 0 4 333 334 355 354\n\t\tf 4 319 680 -340 -700\n\t\tmu 0 4 334 335 356 355\n\t\tf 4 320 701 -341 -701\n\t\tmu 0 4 336 337 358 357\n\t\tf 4 321 702 -342 -702\n\t\tmu 0 4 337 338 359 358\n\t\tf 4 322 703 -343 -703\n\t\tmu 0 4 338 339 360 359\n\t\tf 4 323 704 -344 -704\n\t\tmu 0 4 339 340 361 360\n\t\tf 4 324 705 -345 -705\n\t\tmu 0 4 340 341 362 361\n\t\tf 4 325 706 -346 -706\n\t\tmu 0 4 341 342 363 362\n\t\tf 4 326 707 -347 -707\n\t\tmu 0 4 342 343 364 363\n\t\tf 4 327 708 -348 -708\n\t\tmu 0 4 343 344 365 364\n\t\tf 4 328 709 -349 -709\n\t\tmu 0 4 344 345 366 365\n\t\tf 4 329 710 -350 -710\n\t\tmu 0 4 345 346 367 366\n\t\tf 4 330 711 -351 -711\n\t\tmu 0 4 346 347 368 367\n\t\tf 4 331 712 -352 -712\n\t\tmu 0 4 347 348 369 368\n\t\tf 4 332 713 -353 -713\n\t\tmu 0 4 348 349 370 369\n\t\tf 4 333 714 -354 -714\n\t\tmu 0 4 349 350 371 370\n\t\tf 4 334 715 -355 -715\n\t\tmu 0 4 350 351 372 371\n\t\tf 4 335 716 -356 -716\n\t\tmu 0 4 351 352 373 372\n\t\tf 4 336 717 -357 -717\n\t\tmu 0 4 352 353 374 373\n\t\tf 4 337 718 -358 -718\n\t\tmu 0 4 353 354 375 374\n\t\tf 4 338 719 -359 -719\n\t\tmu 0 4 354 355 376 375\n\t\tf 4 339 700 -360 -720\n\t\tmu 0 4 355 356 377 376\n\t\tf 4 340 721 -361 -721\n\t\tmu 0 4 357 358 379 378\n\t\tf 4 341 722 -362 -722\n\t\tmu 0 4 358 359 380 379\n\t\tf 4 342 723 -363 -723\n\t\tmu 0 4 359 360 381 380\n\t\tf 4 343 724 -364 -724\n\t\tmu 0 4 360 361 382 381\n\t\tf 4 344 725 -365 -725\n\t\tmu 0 4 361 362 383 382\n\t\tf 4 345 726 -366 -726\n\t\tmu 0 4 362 363 384 383\n\t\tf 4 346 727 -367 -727\n\t\tmu 0 4 363 364 385 384\n\t\tf 4 347 728 -368 -728\n\t\tmu 0 4 364 365 386 385\n\t\tf 4 348 729 -369 -729\n\t\tmu 0 4 365 366 387 386\n\t\tf 4 349 730 -370 -730\n\t\tmu 0 4 366 367 388 387\n\t\tf 4 350 731 -371 -731\n\t\tmu 0 4 367 368 389 388\n\t\tf 4 351 732 -372 -732\n\t\tmu 0 4 368 369 390 389\n\t\tf 4 352 733 -373 -733\n\t\tmu 0 4 369 370 391 390\n\t\tf 4 353 734 -374 -734\n\t\tmu 0 4 370 371 392 391\n\t\tf 4 354 735 -375 -735\n\t\tmu 0 4 371 372 393 392\n\t\tf 4 355 736 -376 -736\n\t\tmu 0 4 372 373 394 393\n\t\tf 4 356 737 -377 -737\n\t\tmu 0 4 373 374 395 394\n\t\tf 4 357 738 -378 -738\n\t\tmu 0 4 374 375 396 395\n\t\tf 4 358 739 -379 -739\n\t\tmu 0 4 375 376 397 396\n\t\tf 4 359 720 -380 -740\n\t\tmu 0 4 376 377 398 397\n\t\tf 3 -1 -741 741\n\t\tmu 0 3 1 0 399\n\t\tf 3 -2 -742 742\n\t\tmu 0 3 2 1 400\n\t\tf 3 -3 -743 743\n\t\tmu 0 3 3 2 401\n\t\tf 3 -4 -744 744\n\t\tmu 0 3 4 3 402\n\t\tf 3 -5 -745 745\n\t\tmu 0 3 5 4 403\n\t\tf 3 -6 -746 746\n\t\tmu 0 3 6 5 404\n\t\tf 3 -7 -747 747\n\t\tmu 0 3 7 6 405\n\t\tf 3 -8 -748 748\n\t\tmu 0 3 8 7 406\n\t\tf 3 -9 -749 749\n\t\tmu 0 3 9 8 407\n\t\tf 3 -10 -750 750\n\t\tmu 0 3 10 9 408\n\t\tf 3 -11 -751 751\n\t\tmu 0 3 11 10 409\n\t\tf 3 -12 -752 752\n\t\tmu 0 3 12 11 410\n\t\tf 3 -13 -753 753\n\t\tmu 0 3 13 12 411\n\t\tf 3 -14 -754 754\n\t\tmu 0 3 14 13 412\n\t\tf 3 -15 -755 755\n\t\tmu 0 3 15 14 413\n\t\tf 3 -16 -756 756\n\t\tmu 0 3 16 15 414\n\t\tf 3 -17 -757 757\n\t\tmu 0 3 17 16 415\n\t\tf 3 -18 -758 758\n\t\tmu 0 3 18 17 416\n\t\tf 3 -19 -759 759\n\t\tmu 0 3 19 18 417\n\t\tf 3 -20 -760 740\n\t\tmu 0 3 20 19 418\n\t\tf 3 360 761 -761\n\t\tmu 0 3 378 379 419\n\t\tf 3 361 762 -762\n\t\tmu 0 3 379 380 420\n\t\tf 3 362 763 -763\n\t\tmu 0 3 380 381 421\n\t\tf 3 363 764 -764\n\t\tmu 0 3 381 382 422\n\t\tf 3 364 765 -765\n\t\tmu 0 3 382 383 423\n\t\tf 3 365 766 -766\n\t\tmu 0 3 383 384 424\n\t\tf 3 366 767 -767\n\t\tmu 0 3 384 385 425\n\t\tf 3 367 768 -768\n\t\tmu 0 3 385 386 426\n\t\tf 3 368 769 -769\n\t\tmu 0 3 386 387 427\n\t\tf 3 369 770 -770\n\t\tmu 0 3 387 388 428\n\t\tf 3 370 771 -771\n\t\tmu 0 3 388 389 429\n\t\tf 3 371 772 -772\n\t\tmu 0 3 389 390 430\n\t\tf 3 372 773 -773\n\t\tmu 0 3 390 391 431\n\t\tf 3 373 774 -774\n\t\tmu 0 3 391 392 432\n\t\tf 3 374 775 -775\n\t\tmu 0 3 392 393 433\n\t\tf 3 375 776 -776\n\t\tmu 0 3 393 394 434\n\t\tf 3 376 777 -777\n\t\tmu 0 3 394 395 435\n\t\tf 3 377 778 -778\n\t\tmu 0 3 395 396 436\n\t\tf 3 378 779 -779\n\t\tmu 0 3 396 397 437\n\t\tf 3 379 760 -780\n\t\tmu 0 3 397 398 438;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\ncreateNode transform -n \"pSphere2\" -p \"pSphere3\";\n\trename -uid \"F88D1F07-4642-0A1E-49FE-3CB45CF91D75\";\n\tsetAttr \".s\" -type \"double3\" 0.70216997125179881 0.70216997125179881 0.70216997125179881 ;\ncreateNode transform -n \"directionalLight1\";\n\trename -uid \"57AE27F6-47DC-8B03-E01F-37BA5E1AE3E0\";\ncreateNode directionalLight -n \"directionalLightShape1\" -p \"directionalLight1\";\n\trename -uid \"267B93C9-45A8-3CC0-C879-268583C56DB1\";\n\tsetAttr -k off \".v\";\nparent -s -nc -r -add \"|pSphere1|pSphere4|pSphereShape2\" \"pSphere2\" ;\nparent -s -nc -r -add \"|pSphere1|pSphere4|polySurfaceShape1\" \"pSphere2\" ;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"EEE83F23-404D-D62C-2EEE-F695DEF71793\";\n\tsetAttr -s 5 \".lnk\";\n\tsetAttr -s 5 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"E855F1DA-4836-2529-37F5-9EB29085649C\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"16CF9E99-4F3F-BFF6-6263-E18A33878A0E\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"545D17AD-4D85-37D3-9CCF-F8A60AE377AB\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"E2A93631-4B56-D6AF-839D-B6923EE876D1\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"E1DB1BC6-4F30-13D9-BC18-50BBE3C9CD2C\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"C44DA7DD-4535-8A9E-F2F6-DABE9A54DCAA\";\n\tsetAttr \".g\" yes;\ncreateNode polySphere -n \"polySphere1\";\n\trename -uid \"BE021812-4C0A-AF51-61E2-36BC16377ABE\";\ncreateNode polyNormal -n \"polyNormal1\";\n\trename -uid \"0F9E89D0-449E-A136-6927-E8B37D2AA340\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".unm\" no;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"F05346AD-4876-F02C-51C5-DF8D3323F73C\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"D9D82535-4001-B8D1-A14B-6DA1F946CE75\";\ncreateNode lambert -n \"lambert3\";\n\trename -uid \"846857E1-445E-DB1B-562A-9FA04D3CD2AF\";\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\n\tsetAttr \".it\" -type \"float3\" 0.5 0.5 0.5 ;\ncreateNode shadingEngine -n \"lambert3SG\";\n\trename -uid \"7EA434F5-44B9-5F04-E4F8-239E1BD86971\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"83C19A77-4D99-F3D0-A003-35A615657E7F\";\ncreateNode lambert -n \"lambert4\";\n\trename -uid \"3990C3A2-4479-CCD1-8BAF-34AC5653FA9E\";\n\tsetAttr \".dc\" 0.37542662024497986;\n\tsetAttr \".c\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".it\" -type \"float3\" 0.5 0.5 0.5 ;\n\tsetAttr \".ic\" -type \"float3\" 0 0 1 ;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"41F151B4-471B-0C06-A928-ADB2821332AC\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n\"\n\t\t+ \"            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n\"\n\t\t+ \"            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n\"\n\t\t+ \"            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n\"\n\t\t+ \"            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n\"\n\t\t+ \"            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 0\\n\"\n\t\t+ \"            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 307\\n            -height 736\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n\"\n\t\t+ \"            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"all\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 1\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n\"\n\t\t+ \"            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n\"\n\t\t+ \"            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n\"\n\t\t+ \"            -width 1546\\n            -height 1060\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n\"\n\t\t+ \"            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n\"\n\t\t+ \"            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n\"\n\t\t+ \"            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n\"\n\t\t+ \"            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n\"\n\t\t+ \"                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n\"\n\t\t+ \"                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n\"\n\t\t+ \"                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 0\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n\"\n\t\t+ \"            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n\"\n\t\t+ \"                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 1\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n\"\n\t\t+ \"                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"string $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n\"\n\t\t+ \"                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -rendererOverrideName \\\"stereoOverrideVP2\\\" \\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n\"\n\t\t+ \"                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n\"\n\t\t+ \"                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n\"\n\t\t+ \"            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n\"\n\t\t+ \"            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -highlightConnections 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -activeTab -1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -cam `findStartUpCamera persp` \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"all\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1546\\\\n    -height 1060\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -cam `findStartUpCamera persp` \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"all\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1546\\\\n    -height 1060\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"B3409229-4DFD-4089-024E-4581939EFC7D\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"38C3F0F1-4931-ECAA-487E-B5B655201DE1\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -323.80951094248991 -329.76189165834455 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 324.99998708566085 329.76189165834455 ;\n\tsetAttr -s 5 \".tgi[0].ni\";\n\tsetAttr \".tgi[0].ni[0].x\" -91.428573608398438;\n\tsetAttr \".tgi[0].ni[0].y\" 97.142860412597656;\n\tsetAttr \".tgi[0].ni[0].nvs\" 1922;\n\tsetAttr \".tgi[0].ni[1].x\" -245.71427917480469;\n\tsetAttr \".tgi[0].ni[1].y\" 138.57142639160156;\n\tsetAttr \".tgi[0].ni[1].nvs\" 1923;\n\tsetAttr \".tgi[0].ni[2].x\" 61.428569793701172;\n\tsetAttr \".tgi[0].ni[2].y\" 138.57142639160156;\n\tsetAttr \".tgi[0].ni[2].nvs\" 1923;\n\tsetAttr \".tgi[0].ni[3].x\" 61.428569793701172;\n\tsetAttr \".tgi[0].ni[3].y\" 142.85714721679688;\n\tsetAttr \".tgi[0].ni[3].nvs\" 1923;\n\tsetAttr \".tgi[0].ni[4].x\" -245.71427917480469;\n\tsetAttr \".tgi[0].ni[4].y\" 142.85714721679688;\n\tsetAttr \".tgi[0].ni[4].nvs\" 1923;\ncreateNode file -n \"file1\";\n\trename -uid \"E0CFEC5D-4A8B-A656-D827-F5A31B826A85\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/renderData/shaders//../images/damaged_helmet_diffuse_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture1\";\n\trename -uid \"FA7BD73D-4EBE-223D-9502-B3BDAD4C3624\";\ncreateNode file -n \"file2\";\n\trename -uid \"E94A5C5B-49CA-9C2F-7F00-149BEBCC71B0\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/renderData/shaders//../images/damaged_helmet_specular_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture2\";\n\trename -uid \"0ADE31DC-46BA-B7B1-9569-31992C5A45F0\";\ncreateNode file -n \"file3\";\n\trename -uid \"84A9A31A-4180-F446-8A21-00AF4B087A5F\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/renderData/shaders//../images/brdfLUT.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture3\";\n\trename -uid \"CA8B5AB1-4C14-6535-4127-A9B54CBB0524\";\ncreateNode GLSLShader -n \"PBR_pSphereShape3\";\n\trename -uid \"AB2BD46B-4D07-5F77-6CFD-88AAB71CC631\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Name\" -ln \"u_LightColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Type\" -ln \"u_LightColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_LightColor\" -ln \"u_LightColor\" -nn \"Light Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_LightColorR\" -ln \"u_LightColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorG\" -ln \"u_LightColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorB\" -ln \"u_LightColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Name\" -ln \"u_LightIntensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Type\" -ln \"u_LightIntensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightIntensity\" -ln \"u_LightIntensity\" -nn \"Light Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 10 -smn 0 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Name\" -ln \"u_BaseColorTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Type\" -ln \"u_BaseColorTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorTexture\" -ln \"u_BaseColorTexture\" \n\t\t-nn \"Base color map (sRGB)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureR\" -ln \"u_BaseColorTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureG\" -ln \"u_BaseColorTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureB\" -ln \"u_BaseColorTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Name\" -ln \"u_BaseColorFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Type\" -ln \"u_BaseColorFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactor\" -ln \"u_BaseColorFactor\" -nn \"Base color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorFactorRGB\" -ln \"u_BaseColorFactorRGB\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_BaseColorFactor\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorR\" -ln \"u_BaseColorFactorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorG\" -ln \"u_BaseColorFactorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorB\" -ln \"u_BaseColorFactorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorA\" -ln \"u_BaseColorFactorA\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactor\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Name\" -ln \"u_MetallicTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Type\" -ln \"u_MetallicTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_MetallicTexture\" -ln \"u_MetallicTexture\" -nn \"Metallic map (B,LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_MetallicTextureR\" -ln \"u_MetallicTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureG\" -ln \"u_MetallicTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureB\" -ln \"u_MetallicTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Name\" -ln \"u_MetallicStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Type\" -ln \"u_MetallicStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_MetallicStrength\" -ln \"u_MetallicStrength\" -nn \"Metallic strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Name\" -ln \"u_RoughnessTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Type\" -ln \"u_RoughnessTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_RoughnessTexture\" -ln \"u_RoughnessTexture\" \n\t\t-nn \"Roughness map (G,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureR\" -ln \"u_RoughnessTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureG\" -ln \"u_RoughnessTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureB\" -ln \"u_RoughnessTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Name\" -ln \"u_RoughnessStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Type\" -ln \"u_RoughnessStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessStrength\" -ln \"u_RoughnessStrength\" -nn \"Roughness strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Name\" -ln \"u_OcclusionTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Type\" -ln \"u_OcclusionTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_OcclusionTexture\" -ln \"u_OcclusionTexture\" \n\t\t-nn \"Occlusion map (R,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureR\" -ln \"u_OcclusionTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureG\" -ln \"u_OcclusionTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureB\" -ln \"u_OcclusionTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Name\" -ln \"u_OcclusionStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Type\" -ln \"u_OcclusionStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_OcclusionStrength\" -ln \"u_OcclusionStrength\" -nn \"Occlusion strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Name\" -ln \"u_NormalTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Type\" -ln \"u_NormalTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_NormalTexture\" -ln \"u_NormalTexture\" -nn \"Normal map (LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_NormalTextureR\" -ln \"u_NormalTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureG\" -ln \"u_NormalTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureB\" -ln \"u_NormalTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Name\" -ln \"u_NormalScale_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Type\" -ln \"u_NormalScale_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_NormalScale\" -ln \"u_NormalScale\" -nn \"Normal scale\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Name\" -ln \"u_EmissiveTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Type\" -ln \"u_EmissiveTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveTexture\" -ln \"u_EmissiveTexture\" -nn \"Emissive map (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureR\" -ln \"u_EmissiveTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureG\" -ln \"u_EmissiveTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureB\" -ln \"u_EmissiveTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Name\" -ln \"u_EmissiveColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Type\" -ln \"u_EmissiveColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveColor\" -ln \"u_EmissiveColor\" -nn \"Emissive color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveColorR\" -ln \"u_EmissiveColorR\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorG\" -ln \"u_EmissiveColorG\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorB\" -ln \"u_EmissiveColorB\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Name\" -ln \"u_DiffuseEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Type\" -ln \"u_DiffuseEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_DiffuseEnvTexture\" -ln \"u_DiffuseEnvTexture\" \n\t\t-nn \"Diffuse env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureR\" -ln \"u_DiffuseEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureG\" -ln \"u_DiffuseEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureB\" -ln \"u_DiffuseEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Name\" -ln \"u_SpecularEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Type\" -ln \"u_SpecularEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_SpecularEnvTexture\" -ln \"u_SpecularEnvTexture\" \n\t\t-nn \"Specular env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureR\" -ln \"u_SpecularEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureG\" -ln \"u_SpecularEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureB\" -ln \"u_SpecularEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Name\" -ln \"u_brdfTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Type\" -ln \"u_brdfTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_brdfTexture\" -ln \"u_brdfTexture\" -nn \"BRDF LUT (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_brdfTextureR\" -ln \"u_brdfTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureG\" -ln \"u_brdfTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureB\" -ln \"u_brdfTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Name\" -ln \"u_IsDoubleSided_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Type\" -ln \"u_IsDoubleSided_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsDoubleSided\" -ln \"u_IsDoubleSided\" -nn \"Double sided material?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Name\" -ln \"u_UseMeshTangents_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Type\" -ln \"u_UseMeshTangents_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UseMeshTangents\" -ln \"u_UseMeshTangents\" -nn \"Use mesh tangents?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Name\" -ln \"u_RoughnessOffset_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Type\" -ln \"u_RoughnessOffset_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessOffset\" -ln \"u_RoughnessOffset\" -nn \"Roughness offset\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 12 -smn 0 -smx 12 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Name\" -ln \"u_ScaleDiffBaseMR_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Type\" -ln \"u_ScaleDiffBaseMR_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMR\" -ln \"u_ScaleDiffBaseMR\" -nn \"Scale Diff Base MR\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRXYZ\" -ln \"u_ScaleDiffBaseMRXYZ\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_ScaleDiffBaseMR\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRX\" -ln \"u_ScaleDiffBaseMRX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRY\" -ln \"u_ScaleDiffBaseMRY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRZ\" -ln \"u_ScaleDiffBaseMRZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRW\" -ln \"u_ScaleDiffBaseMRW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMR\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Name\" -ln \"u_BurleyFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Type\" -ln \"u_BurleyFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BurleyFactor\" -ln \"u_BurleyFactor\" -nn \"Burley factor\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Name\" -ln \"u_ScaleFGDSpec_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Type\" -ln \"u_ScaleFGDSpec_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpec\" -ln \"u_ScaleFGDSpec\" -nn \"Scale FGD Spec\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecXYZ\" -ln \"u_ScaleFGDSpecXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleFGDSpec\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecX\" -ln \"u_ScaleFGDSpecX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecY\" -ln \"u_ScaleFGDSpecY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecZ\" -ln \"u_ScaleFGDSpecZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecW\" -ln \"u_ScaleFGDSpecW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpec\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Name\" -ln \"u_UndoEdgeStretch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Type\" -ln \"u_UndoEdgeStretch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UndoEdgeStretch\" -ln \"u_UndoEdgeStretch\" -nn \"Undo edge stretch?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Name\" -ln \"u_ScaleIBL_Occl_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Type\" -ln \"u_ScaleIBL_Occl_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_Occl\" -ln \"u_ScaleIBL_Occl\" -nn \"Scale IBL AO(w)\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclXYZ\" -ln \"u_ScaleIBL_OcclXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleIBL_Occl\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclX\" -ln \"u_ScaleIBL_OcclX\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclY\" -ln \"u_ScaleIBL_OcclY\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclZ\" -ln \"u_ScaleIBL_OcclZ\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclW\" -ln \"u_ScaleIBL_OcclW\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_Occl\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Name\" -ln \"u_IsEmissiveInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Type\" -ln \"u_IsEmissiveInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEmissiveInsRGB\" -ln \"u_IsEmissiveInsRGB\" -nn \"sRGB emissive?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Name\" -ln \"u_EnvRotationAngle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Type\" -ln \"u_EnvRotationAngle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_EnvRotationAngle\" -ln \"u_EnvRotationAngle\" -nn \"Environment Rotation\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Name\" -ln \"u_FlipEnvMapZ_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Type\" -ln \"u_FlipEnvMapZ_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_FlipEnvMapZ\" -ln \"u_FlipEnvMapZ\" -nn \"Flip environment Z?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Name\" -ln \"u_IsEnvMapInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Type\" -ln \"u_IsEnvMapInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInsRGB\" -ln \"u_IsEnvMapInsRGB\" -nn \"sRGB environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Name\" -ln \"u_IsEnvMapInRGBM_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Type\" -ln \"u_IsEnvMapInRGBM_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInRGBM\" -ln \"u_IsEnvMapInRGBM\" -nn \"RGBM environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Name\" -ln \"u_IsBRDFsSRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Type\" -ln \"u_IsBRDFsSRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBRDFsSRGB\" -ln \"u_IsBRDFsSRGB\" -nn \"sRGB BRDF table?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Name\" -ln \"u_IsBaseColorInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Type\" -ln \"u_IsBaseColorInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBaseColorInsRGB\" -ln \"u_IsBaseColorInsRGB\" -nn \"sRGB basecolor?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -is true -ci true -k true -sn \"te\" -ln \"techniqueEnum\" -nn \"Technique\" \n\t\t-min 0 -max 1 -en \"Solid:Transparent\" -at \"enum\";\n\taddAttr -ci true -sn \"Position\" -ln \"Position\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Position_Name\" -ln \"Position_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"Position_Source\" -ln \"Position_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -sn \"Position_DefaultTexture\" -ln \"Position_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Position\";\n\taddAttr -ci true -sn \"Normal\" -ln \"Normal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Normal_Name\" -ln \"Normal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Source\" -ln \"Normal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -sn \"Normal_DefaultTexture\" -ln \"Normal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Normal\";\n\taddAttr -ci true -sn \"Tangent\" -ln \"Tangent\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Tangent_Name\" -ln \"Tangent_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"Tangent_Source\" -ln \"Tangent_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -sn \"Tangent_DefaultTexture\" -ln \"Tangent_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Tangent\";\n\taddAttr -ci true -sn \"Binormal\" -ln \"Binormal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Binormal_Name\" -ln \"Binormal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -h true -sn \"Binormal_Source\" -ln \"Binormal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -sn \"Binormal_DefaultTexture\" -ln \"Binormal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Binormal\";\n\taddAttr -ci true -sn \"TexCoord0\" -ln \"TexCoord0\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Name\" -ln \"TexCoord0_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Source\" -ln \"TexCoord0_Source\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -sn \"TexCoord0_DefaultTexture\" -ln \"TexCoord0_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"u_LightDir_Name\" -ln \"u_LightDir_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightDir_Type\" -ln \"u_LightDir_Type\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightDir\" -ln \"u_LightDir\" -nn \"Light Direction\" \n\t\t-ct \"HW_shader_parameter\" -at \"matrix\";\n\taddAttr -ci true -sn \"directionalLight1_use_implicit_lighting\" -ln \"directionalLight1_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"directionalLight1_connected_light\" -ln \"directionalLight1_connected_light\" \n\t\t-at \"message\";\n\tsetAttr \".vpar\" -type \"stringArray\" 5 \"Position\" \"Normal\" \"Tangent\" \"Binormal\" \"TexCoord0\"  ;\n\tsetAttr \".upar\" -type \"stringArray\" 33 \"u_LightColor\" \"u_LightIntensity\" \"u_LightDir\" \"u_BaseColorTexture\" \"u_BaseColorFactor\" \"u_MetallicTexture\" \"u_MetallicStrength\" \"u_RoughnessTexture\" \"u_RoughnessStrength\" \"u_OcclusionTexture\" \"u_OcclusionStrength\" \"u_NormalTexture\" \"u_NormalScale\" \"u_EmissiveTexture\" \"u_EmissiveColor\" \"u_DiffuseEnvTexture\" \"u_SpecularEnvTexture\" \"u_brdfTexture\" \"u_IsDoubleSided\" \"u_UseMeshTangents\" \"u_RoughnessOffset\" \"u_ScaleDiffBaseMR\" \"u_BurleyFactor\" \"u_ScaleFGDSpec\" \"u_UndoEdgeStretch\" \"u_ScaleIBL_Occl\" \"u_IsEmissiveInsRGB\" \"u_EnvRotationAngle\" \"u_FlipEnvMapZ\" \"u_IsEnvMapInsRGB\" \"u_IsEnvMapInRGBM\" \"u_IsBRDFsSRGB\" \"u_IsBaseColorInsRGB\"  ;\n\tsetAttr \".s\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/renderData/shaders/glTF_PBR.ogsfx\";\n\tsetAttr \".t\" -type \"string\" \"Transparent\";\n\tsetAttr \".u_LightColor_Name\" -type \"string\" \"u_LightColor\";\n\tsetAttr \".u_LightColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr -l on \".u_LightColor\" -type \"float3\" 1 1 1 ;\n\tsetAttr -l on \".u_LightColor\";\n\tsetAttr \".u_LightIntensity_Name\" -type \"string\" \"u_LightIntensity\";\n\tsetAttr \".u_LightIntensity_Type\" -type \"string\" \"float\";\n\tsetAttr -l on \".u_LightIntensity\" 1;\n\tsetAttr \".u_BaseColorTexture_Name\" -type \"string\" \"u_BaseColorTexture\";\n\tsetAttr \".u_BaseColorTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_BaseColorTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_BaseColorFactor_Name\" -type \"string\" \"u_BaseColorFactor\";\n\tsetAttr \".u_BaseColorFactor_Type\" -type \"string\" \"color4x1\";\n\tsetAttr \".u_BaseColorFactorRGB\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".u_BaseColorFactorA\" 0.5;\n\tsetAttr \".u_MetallicTexture_Name\" -type \"string\" \"u_MetallicTexture\";\n\tsetAttr \".u_MetallicTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_MetallicTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_MetallicStrength_Name\" -type \"string\" \"u_MetallicStrength\";\n\tsetAttr \".u_MetallicStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_MetallicStrength\" 0;\n\tsetAttr \".u_RoughnessTexture_Name\" -type \"string\" \"u_RoughnessTexture\";\n\tsetAttr \".u_RoughnessTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_RoughnessTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_RoughnessStrength_Name\" -type \"string\" \"u_RoughnessStrength\";\n\tsetAttr \".u_RoughnessStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_RoughnessStrength\" 1;\n\tsetAttr \".u_OcclusionTexture_Name\" -type \"string\" \"u_OcclusionTexture\";\n\tsetAttr \".u_OcclusionTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_OcclusionTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_OcclusionStrength_Name\" -type \"string\" \"u_OcclusionStrength\";\n\tsetAttr \".u_OcclusionStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_OcclusionStrength\" 1;\n\tsetAttr \".u_NormalTexture_Name\" -type \"string\" \"u_NormalTexture\";\n\tsetAttr \".u_NormalTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_NormalTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_NormalScale_Name\" -type \"string\" \"u_NormalScale\";\n\tsetAttr \".u_NormalScale_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_NormalScale\" 1;\n\tsetAttr \".u_EmissiveTexture_Name\" -type \"string\" \"u_EmissiveTexture\";\n\tsetAttr \".u_EmissiveTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_EmissiveTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_EmissiveColor_Name\" -type \"string\" \"u_EmissiveColor\";\n\tsetAttr \".u_EmissiveColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_EmissiveColor\" -type \"float3\" 0 0 1 ;\n\tsetAttr \".u_DiffuseEnvTexture_Name\" -type \"string\" \"u_DiffuseEnvTexture\";\n\tsetAttr \".u_DiffuseEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_DiffuseEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_SpecularEnvTexture_Name\" -type \"string\" \"u_SpecularEnvTexture\";\n\tsetAttr \".u_SpecularEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_SpecularEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_brdfTexture_Name\" -type \"string\" \"u_brdfTexture\";\n\tsetAttr \".u_brdfTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_brdfTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_IsDoubleSided_Name\" -type \"string\" \"u_IsDoubleSided\";\n\tsetAttr \".u_IsDoubleSided_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsDoubleSided\" no;\n\tsetAttr \".u_UseMeshTangents_Name\" -type \"string\" \"u_UseMeshTangents\";\n\tsetAttr \".u_UseMeshTangents_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UseMeshTangents\" no;\n\tsetAttr \".u_RoughnessOffset_Name\" -type \"string\" \"u_RoughnessOffset\";\n\tsetAttr \".u_RoughnessOffset_Type\" -type \"string\" \"int\";\n\tsetAttr \".u_RoughnessOffset\" 2;\n\tsetAttr \".u_ScaleDiffBaseMR_Name\" -type \"string\" \"u_ScaleDiffBaseMR\";\n\tsetAttr \".u_ScaleDiffBaseMR_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleDiffBaseMRXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleDiffBaseMRW\" 0;\n\tsetAttr \".u_BurleyFactor_Name\" -type \"string\" \"u_BurleyFactor\";\n\tsetAttr \".u_BurleyFactor_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_BurleyFactor\" 0.69999998807907104;\n\tsetAttr \".u_ScaleFGDSpec_Name\" -type \"string\" \"u_ScaleFGDSpec\";\n\tsetAttr \".u_ScaleFGDSpec_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleFGDSpecXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleFGDSpecW\" 0;\n\tsetAttr \".u_UndoEdgeStretch_Name\" -type \"string\" \"u_UndoEdgeStretch\";\n\tsetAttr \".u_UndoEdgeStretch_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UndoEdgeStretch\" yes;\n\tsetAttr \".u_ScaleIBL_Occl_Name\" -type \"string\" \"u_ScaleIBL_Occl\";\n\tsetAttr \".u_ScaleIBL_Occl_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleIBL_OcclXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleIBL_OcclW\" 1;\n\tsetAttr \".u_IsEmissiveInsRGB_Name\" -type \"string\" \"u_IsEmissiveInsRGB\";\n\tsetAttr \".u_IsEmissiveInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEmissiveInsRGB\" yes;\n\tsetAttr \".u_EnvRotationAngle_Name\" -type \"string\" \"u_EnvRotationAngle\";\n\tsetAttr \".u_EnvRotationAngle_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_EnvRotationAngle\" 0;\n\tsetAttr \".u_FlipEnvMapZ_Name\" -type \"string\" \"u_FlipEnvMapZ\";\n\tsetAttr \".u_FlipEnvMapZ_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_FlipEnvMapZ\" yes;\n\tsetAttr \".u_IsEnvMapInsRGB_Name\" -type \"string\" \"u_IsEnvMapInsRGB\";\n\tsetAttr \".u_IsEnvMapInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInsRGB\" no;\n\tsetAttr \".u_IsEnvMapInRGBM_Name\" -type \"string\" \"u_IsEnvMapInRGBM\";\n\tsetAttr \".u_IsEnvMapInRGBM_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInRGBM\" no;\n\tsetAttr \".u_IsBRDFsSRGB_Name\" -type \"string\" \"u_IsBRDFsSRGB\";\n\tsetAttr \".u_IsBRDFsSRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBRDFsSRGB\" no;\n\tsetAttr \".u_IsBaseColorInsRGB_Name\" -type \"string\" \"u_IsBaseColorInsRGB\";\n\tsetAttr \".u_IsBaseColorInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBaseColorInsRGB\" yes;\n\tsetAttr \".Position_Name\" -type \"string\" \"Position\";\n\tsetAttr \".Position_Source\" -type \"string\" \"position\";\n\tsetAttr \".Normal_Name\" -type \"string\" \"Normal\";\n\tsetAttr \".Normal_Source\" -type \"string\" \"normal\";\n\tsetAttr \".Tangent_Name\" -type \"string\" \"Tangent\";\n\tsetAttr \".Tangent_Source\" -type \"string\" \"tangent:map1\";\n\tsetAttr \".Binormal_Name\" -type \"string\" \"Binormal\";\n\tsetAttr \".Binormal_Source\" -type \"string\" \"binormal:map1\";\n\tsetAttr \".TexCoord0_Name\" -type \"string\" \"TexCoord0\";\n\tsetAttr \".TexCoord0_Source\" -type \"string\" \"uv:map1\";\n\tsetAttr \".u_LightDir_Name\" -type \"string\" \"u_LightDir\";\n\tsetAttr \".u_LightDir_Type\" -type \"string\" \"matrix3x1\";\n\tsetAttr -l on \".u_LightDir\" -type \"matrix\" 1 0 0 0 0 1 0 0 -0 -0 1 0 0 0 0 1;\n\tsetAttr \".directionalLight1_use_implicit_lighting\" no;\ncreateNode file -n \"file4\";\n\trename -uid \"D3F3AEC8-481A-EBD8-39B3-9380E0BC912B\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/renderData/shaders//../images/damaged_helmet_diffuse_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture4\";\n\trename -uid \"A9CC87A3-4FDA-42EA-B058-83AE6EA1E6FB\";\ncreateNode file -n \"file5\";\n\trename -uid \"89AD105B-4ECD-34D0-5799-EB9316AF84C6\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/renderData/shaders//../images/damaged_helmet_specular_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture5\";\n\trename -uid \"FB7AF60C-4931-BC8B-08A1-33AB6ECE5AB3\";\ncreateNode file -n \"file6\";\n\trename -uid \"29828CBF-42AB-C220-B6D8-B7926D4E4EA3\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/renderData/shaders//../images/brdfLUT.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture6\";\n\trename -uid \"16C4956B-4C2D-A9AD-3DE1-9683961AC48F\";\ncreateNode shadingEngine -n \"PBR_pSphereShape3SG\";\n\trename -uid \"192CAAFD-43A8-8DE5-859D-53B41C21F8F0\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo3\";\n\trename -uid \"4475799D-436C-0015-37C0-E686C288700B\";\ncreateNode file -n \"PBR_pSphereShape3_DiffuseEnvTexture\";\n\trename -uid \"AD29EEE3-45AF-F266-2649-79B6413992AA\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/renderData/images/damaged_helmet_diffuse_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture7\";\n\trename -uid \"946129D3-43BB-E1CC-C15B-E6AC60A096D6\";\ncreateNode file -n \"PBR_pSphereShape3_SpecularEnvTexture\";\n\trename -uid \"9FAFFF07-4759-2B00-C051-A599B5C14D1B\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/renderData/images/damaged_helmet_specular_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture8\";\n\trename -uid \"FD71A31B-40F2-8BDF-F730-DB90E3584494\";\ncreateNode file -n \"PBR_pSphereShape3_brdfTexture\";\n\trename -uid \"512592EF-4C03-99CD-DF2E-4DAE9AF139B9\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/renderData/images/brdfLUT.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture9\";\n\trename -uid \"44D7100D-469D-7D56-A8A4-71BA5BA0DD16\";\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"614E40F4-49A1-621C-AA20-41A2E8A185C4\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/scenes/export/SpheresGLTF/\";\n\tsetAttr \".sceneName\" -type \"string\" \"NestedTransparentEmissiveSpheres\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2019 Peter\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 1;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -av -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".o\" 0;\n\tsetAttr -av -k on \".unw\";\n\tsetAttr -k on \".etw\";\n\tsetAttr -k on \".tps\";\n\tsetAttr -av -k on \".tms\";\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr -k on \".ihi\";\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr -k on \".mbsof\";\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 5 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 7 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderUtilityList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 9 \".u\";\nselect -ne :defaultRenderingList1;\n\tsetAttr -k on \".ihi\";\nselect -ne :lightList1;\nselect -ne :defaultTextureList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 9 \".tx\";\nselect -ne :initialShadingGroup;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr -k on \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr -k on \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -k on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -k on \".bnm\";\n\tsetAttr -av -k on \".w\";\n\tsetAttr -av -k on \".h\";\n\tsetAttr -av -k on \".pa\" 1;\n\tsetAttr -av -k on \".al\";\n\tsetAttr -av -k on \".dar\";\n\tsetAttr -av -k on \".ldar\";\n\tsetAttr -av -k on \".dpi\";\n\tsetAttr -av -k on \".off\";\n\tsetAttr -av -k on \".fld\";\n\tsetAttr -av -k on \".zsl\";\n\tsetAttr -k on \".isu\";\n\tsetAttr -k on \".pdu\";\nselect -ne :defaultLightSet;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k off -cb on \".ctrs\" 256;\n\tsetAttr -av -k off -cb on \".btrs\" 512;\n\tsetAttr -k off -cb on \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off -cb on \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\n\tsetAttr -k on \".soll\";\n\tsetAttr -k on \".sosl\";\n\tsetAttr -k on \".bswa\";\n\tsetAttr -k on \".shml\";\n\tsetAttr -k on \".hwel\";\nselect -ne :ikSystem;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -k on \".bnm\";\n\tsetAttr -av -k on \".gsn\";\n\tsetAttr -k on \".gsv\";\n\tsetAttr -s 4 \".sol\";\nconnectAttr \"polySphere1.out\" \"pSphereShape1.i\";\nconnectAttr \"polyNormal1.out\" \"|pSphere1|pSphere4|pSphereShape2.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"PBR_pSphereShape3SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"PBR_pSphereShape3SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"|pSphere1|pSphere4|polySurfaceShape1.o\" \"polyNormal1.ip\";\nconnectAttr \"lambert4.oc\" \"lambert2SG.ss\";\nconnectAttr \"pSphereShape1.iog\" \"lambert2SG.dsm\" -na;\nconnectAttr \"lambert2SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"lambert4.msg\" \"materialInfo1.m\";\nconnectAttr \"lambert3.oc\" \"lambert3SG.ss\";\nconnectAttr \"|pSphere3|pSphere2|pSphereShape2.iog\" \"lambert3SG.dsm\" -na;\nconnectAttr \"|pSphere1|pSphere4|pSphereShape2.iog\" \"lambert3SG.dsm\" -na;\nconnectAttr \"lambert3SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"lambert3.msg\" \"materialInfo2.m\";\nconnectAttr \"defaultRenderLayer.msg\" \"hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[0].dn\"\n\t\t;\nconnectAttr \"lambert3.msg\" \"hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[1].dn\"\n\t\t;\nconnectAttr \"lambert3SG.msg\" \"hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[2].dn\"\n\t\t;\nconnectAttr \"lambert2SG.msg\" \"hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[3].dn\"\n\t\t;\nconnectAttr \"lambert4.msg\" \"hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[4].dn\"\n\t\t;\nconnectAttr \"place2dTexture1.c\" \"file1.c\";\nconnectAttr \"place2dTexture1.tf\" \"file1.tf\";\nconnectAttr \"place2dTexture1.rf\" \"file1.rf\";\nconnectAttr \"place2dTexture1.mu\" \"file1.mu\";\nconnectAttr \"place2dTexture1.mv\" \"file1.mv\";\nconnectAttr \"place2dTexture1.s\" \"file1.s\";\nconnectAttr \"place2dTexture1.wu\" \"file1.wu\";\nconnectAttr \"place2dTexture1.wv\" \"file1.wv\";\nconnectAttr \"place2dTexture1.re\" \"file1.re\";\nconnectAttr \"place2dTexture1.r\" \"file1.ro\";\nconnectAttr \"place2dTexture1.of\" \"file1.of\";\nconnectAttr \"place2dTexture1.n\" \"file1.n\";\nconnectAttr \"place2dTexture1.vt1\" \"file1.vt1\";\nconnectAttr \"place2dTexture1.vt2\" \"file1.vt2\";\nconnectAttr \"place2dTexture1.vt3\" \"file1.vt3\";\nconnectAttr \"place2dTexture1.vc1\" \"file1.vc1\";\nconnectAttr \"place2dTexture1.o\" \"file1.uv\";\nconnectAttr \"place2dTexture1.ofs\" \"file1.fs\";\nconnectAttr \"place2dTexture2.c\" \"file2.c\";\nconnectAttr \"place2dTexture2.tf\" \"file2.tf\";\nconnectAttr \"place2dTexture2.rf\" \"file2.rf\";\nconnectAttr \"place2dTexture2.mu\" \"file2.mu\";\nconnectAttr \"place2dTexture2.mv\" \"file2.mv\";\nconnectAttr \"place2dTexture2.s\" \"file2.s\";\nconnectAttr \"place2dTexture2.wu\" \"file2.wu\";\nconnectAttr \"place2dTexture2.wv\" \"file2.wv\";\nconnectAttr \"place2dTexture2.re\" \"file2.re\";\nconnectAttr \"place2dTexture2.r\" \"file2.ro\";\nconnectAttr \"place2dTexture2.of\" \"file2.of\";\nconnectAttr \"place2dTexture2.n\" \"file2.n\";\nconnectAttr \"place2dTexture2.vt1\" \"file2.vt1\";\nconnectAttr \"place2dTexture2.vt2\" \"file2.vt2\";\nconnectAttr \"place2dTexture2.vt3\" \"file2.vt3\";\nconnectAttr \"place2dTexture2.vc1\" \"file2.vc1\";\nconnectAttr \"place2dTexture2.o\" \"file2.uv\";\nconnectAttr \"place2dTexture2.ofs\" \"file2.fs\";\nconnectAttr \"place2dTexture3.c\" \"file3.c\";\nconnectAttr \"place2dTexture3.tf\" \"file3.tf\";\nconnectAttr \"place2dTexture3.rf\" \"file3.rf\";\nconnectAttr \"place2dTexture3.mu\" \"file3.mu\";\nconnectAttr \"place2dTexture3.mv\" \"file3.mv\";\nconnectAttr \"place2dTexture3.s\" \"file3.s\";\nconnectAttr \"place2dTexture3.wu\" \"file3.wu\";\nconnectAttr \"place2dTexture3.wv\" \"file3.wv\";\nconnectAttr \"place2dTexture3.re\" \"file3.re\";\nconnectAttr \"place2dTexture3.r\" \"file3.ro\";\nconnectAttr \"place2dTexture3.of\" \"file3.of\";\nconnectAttr \"place2dTexture3.n\" \"file3.n\";\nconnectAttr \"place2dTexture3.vt1\" \"file3.vt1\";\nconnectAttr \"place2dTexture3.vt2\" \"file3.vt2\";\nconnectAttr \"place2dTexture3.vt3\" \"file3.vt3\";\nconnectAttr \"place2dTexture3.vc1\" \"file3.vc1\";\nconnectAttr \"place2dTexture3.o\" \"file3.uv\";\nconnectAttr \"place2dTexture3.ofs\" \"file3.fs\";\nconnectAttr \"PBR_pSphereShape3_DiffuseEnvTexture.oc\" \"PBR_pSphereShape3.u_DiffuseEnvTexture\"\n\t\t;\nconnectAttr \"PBR_pSphereShape3_SpecularEnvTexture.oc\" \"PBR_pSphereShape3.u_SpecularEnvTexture\"\n\t\t;\nconnectAttr \"PBR_pSphereShape3_brdfTexture.oc\" \"PBR_pSphereShape3.u_brdfTexture\"\n\t\t;\nconnectAttr \"directionalLightShape1.ltd\" \"PBR_pSphereShape3.directionalLight1_connected_light\"\n\t\t;\nconnectAttr \"place2dTexture4.c\" \"file4.c\";\nconnectAttr \"place2dTexture4.tf\" \"file4.tf\";\nconnectAttr \"place2dTexture4.rf\" \"file4.rf\";\nconnectAttr \"place2dTexture4.mu\" \"file4.mu\";\nconnectAttr \"place2dTexture4.mv\" \"file4.mv\";\nconnectAttr \"place2dTexture4.s\" \"file4.s\";\nconnectAttr \"place2dTexture4.wu\" \"file4.wu\";\nconnectAttr \"place2dTexture4.wv\" \"file4.wv\";\nconnectAttr \"place2dTexture4.re\" \"file4.re\";\nconnectAttr \"place2dTexture4.r\" \"file4.ro\";\nconnectAttr \"place2dTexture4.of\" \"file4.of\";\nconnectAttr \"place2dTexture4.n\" \"file4.n\";\nconnectAttr \"place2dTexture4.vt1\" \"file4.vt1\";\nconnectAttr \"place2dTexture4.vt2\" \"file4.vt2\";\nconnectAttr \"place2dTexture4.vt3\" \"file4.vt3\";\nconnectAttr \"place2dTexture4.vc1\" \"file4.vc1\";\nconnectAttr \"place2dTexture4.o\" \"file4.uv\";\nconnectAttr \"place2dTexture4.ofs\" \"file4.fs\";\nconnectAttr \"place2dTexture5.c\" \"file5.c\";\nconnectAttr \"place2dTexture5.tf\" \"file5.tf\";\nconnectAttr \"place2dTexture5.rf\" \"file5.rf\";\nconnectAttr \"place2dTexture5.mu\" \"file5.mu\";\nconnectAttr \"place2dTexture5.mv\" \"file5.mv\";\nconnectAttr \"place2dTexture5.s\" \"file5.s\";\nconnectAttr \"place2dTexture5.wu\" \"file5.wu\";\nconnectAttr \"place2dTexture5.wv\" \"file5.wv\";\nconnectAttr \"place2dTexture5.re\" \"file5.re\";\nconnectAttr \"place2dTexture5.r\" \"file5.ro\";\nconnectAttr \"place2dTexture5.of\" \"file5.of\";\nconnectAttr \"place2dTexture5.n\" \"file5.n\";\nconnectAttr \"place2dTexture5.vt1\" \"file5.vt1\";\nconnectAttr \"place2dTexture5.vt2\" \"file5.vt2\";\nconnectAttr \"place2dTexture5.vt3\" \"file5.vt3\";\nconnectAttr \"place2dTexture5.vc1\" \"file5.vc1\";\nconnectAttr \"place2dTexture5.o\" \"file5.uv\";\nconnectAttr \"place2dTexture5.ofs\" \"file5.fs\";\nconnectAttr \"place2dTexture6.c\" \"file6.c\";\nconnectAttr \"place2dTexture6.tf\" \"file6.tf\";\nconnectAttr \"place2dTexture6.rf\" \"file6.rf\";\nconnectAttr \"place2dTexture6.mu\" \"file6.mu\";\nconnectAttr \"place2dTexture6.mv\" \"file6.mv\";\nconnectAttr \"place2dTexture6.s\" \"file6.s\";\nconnectAttr \"place2dTexture6.wu\" \"file6.wu\";\nconnectAttr \"place2dTexture6.wv\" \"file6.wv\";\nconnectAttr \"place2dTexture6.re\" \"file6.re\";\nconnectAttr \"place2dTexture6.r\" \"file6.ro\";\nconnectAttr \"place2dTexture6.of\" \"file6.of\";\nconnectAttr \"place2dTexture6.n\" \"file6.n\";\nconnectAttr \"place2dTexture6.vt1\" \"file6.vt1\";\nconnectAttr \"place2dTexture6.vt2\" \"file6.vt2\";\nconnectAttr \"place2dTexture6.vt3\" \"file6.vt3\";\nconnectAttr \"place2dTexture6.vc1\" \"file6.vc1\";\nconnectAttr \"place2dTexture6.o\" \"file6.uv\";\nconnectAttr \"place2dTexture6.ofs\" \"file6.fs\";\nconnectAttr \"PBR_pSphereShape3.oc\" \"PBR_pSphereShape3SG.ss\";\nconnectAttr \"pSphereShape3.iog\" \"PBR_pSphereShape3SG.dsm\" -na;\nconnectAttr \"PBR_pSphereShape3SG.msg\" \"materialInfo3.sg\";\nconnectAttr \"PBR_pSphereShape3.msg\" \"materialInfo3.m\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"PBR_pSphereShape3_DiffuseEnvTexture.cme\"\n\t\t;\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"PBR_pSphereShape3_DiffuseEnvTexture.cmcf\"\n\t\t;\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"PBR_pSphereShape3_DiffuseEnvTexture.cmcp\"\n\t\t;\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"PBR_pSphereShape3_DiffuseEnvTexture.ws\"\n\t\t;\nconnectAttr \"place2dTexture7.c\" \"PBR_pSphereShape3_DiffuseEnvTexture.c\";\nconnectAttr \"place2dTexture7.tf\" \"PBR_pSphereShape3_DiffuseEnvTexture.tf\";\nconnectAttr \"place2dTexture7.rf\" \"PBR_pSphereShape3_DiffuseEnvTexture.rf\";\nconnectAttr \"place2dTexture7.mu\" \"PBR_pSphereShape3_DiffuseEnvTexture.mu\";\nconnectAttr \"place2dTexture7.mv\" \"PBR_pSphereShape3_DiffuseEnvTexture.mv\";\nconnectAttr \"place2dTexture7.s\" \"PBR_pSphereShape3_DiffuseEnvTexture.s\";\nconnectAttr \"place2dTexture7.wu\" \"PBR_pSphereShape3_DiffuseEnvTexture.wu\";\nconnectAttr \"place2dTexture7.wv\" \"PBR_pSphereShape3_DiffuseEnvTexture.wv\";\nconnectAttr \"place2dTexture7.re\" \"PBR_pSphereShape3_DiffuseEnvTexture.re\";\nconnectAttr \"place2dTexture7.of\" \"PBR_pSphereShape3_DiffuseEnvTexture.of\";\nconnectAttr \"place2dTexture7.r\" \"PBR_pSphereShape3_DiffuseEnvTexture.ro\";\nconnectAttr \"place2dTexture7.n\" \"PBR_pSphereShape3_DiffuseEnvTexture.n\";\nconnectAttr \"place2dTexture7.vt1\" \"PBR_pSphereShape3_DiffuseEnvTexture.vt1\";\nconnectAttr \"place2dTexture7.vt2\" \"PBR_pSphereShape3_DiffuseEnvTexture.vt2\";\nconnectAttr \"place2dTexture7.vt3\" \"PBR_pSphereShape3_DiffuseEnvTexture.vt3\";\nconnectAttr \"place2dTexture7.vc1\" \"PBR_pSphereShape3_DiffuseEnvTexture.vc1\";\nconnectAttr \"place2dTexture7.o\" \"PBR_pSphereShape3_DiffuseEnvTexture.uv\";\nconnectAttr \"place2dTexture7.ofs\" \"PBR_pSphereShape3_DiffuseEnvTexture.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"PBR_pSphereShape3_SpecularEnvTexture.cme\"\n\t\t;\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"PBR_pSphereShape3_SpecularEnvTexture.cmcf\"\n\t\t;\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"PBR_pSphereShape3_SpecularEnvTexture.cmcp\"\n\t\t;\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"PBR_pSphereShape3_SpecularEnvTexture.ws\"\n\t\t;\nconnectAttr \"place2dTexture8.c\" \"PBR_pSphereShape3_SpecularEnvTexture.c\";\nconnectAttr \"place2dTexture8.tf\" \"PBR_pSphereShape3_SpecularEnvTexture.tf\";\nconnectAttr \"place2dTexture8.rf\" \"PBR_pSphereShape3_SpecularEnvTexture.rf\";\nconnectAttr \"place2dTexture8.mu\" \"PBR_pSphereShape3_SpecularEnvTexture.mu\";\nconnectAttr \"place2dTexture8.mv\" \"PBR_pSphereShape3_SpecularEnvTexture.mv\";\nconnectAttr \"place2dTexture8.s\" \"PBR_pSphereShape3_SpecularEnvTexture.s\";\nconnectAttr \"place2dTexture8.wu\" \"PBR_pSphereShape3_SpecularEnvTexture.wu\";\nconnectAttr \"place2dTexture8.wv\" \"PBR_pSphereShape3_SpecularEnvTexture.wv\";\nconnectAttr \"place2dTexture8.re\" \"PBR_pSphereShape3_SpecularEnvTexture.re\";\nconnectAttr \"place2dTexture8.of\" \"PBR_pSphereShape3_SpecularEnvTexture.of\";\nconnectAttr \"place2dTexture8.r\" \"PBR_pSphereShape3_SpecularEnvTexture.ro\";\nconnectAttr \"place2dTexture8.n\" \"PBR_pSphereShape3_SpecularEnvTexture.n\";\nconnectAttr \"place2dTexture8.vt1\" \"PBR_pSphereShape3_SpecularEnvTexture.vt1\";\nconnectAttr \"place2dTexture8.vt2\" \"PBR_pSphereShape3_SpecularEnvTexture.vt2\";\nconnectAttr \"place2dTexture8.vt3\" \"PBR_pSphereShape3_SpecularEnvTexture.vt3\";\nconnectAttr \"place2dTexture8.vc1\" \"PBR_pSphereShape3_SpecularEnvTexture.vc1\";\nconnectAttr \"place2dTexture8.o\" \"PBR_pSphereShape3_SpecularEnvTexture.uv\";\nconnectAttr \"place2dTexture8.ofs\" \"PBR_pSphereShape3_SpecularEnvTexture.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"PBR_pSphereShape3_brdfTexture.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"PBR_pSphereShape3_brdfTexture.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"PBR_pSphereShape3_brdfTexture.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"PBR_pSphereShape3_brdfTexture.ws\";\nconnectAttr \"place2dTexture9.c\" \"PBR_pSphereShape3_brdfTexture.c\";\nconnectAttr \"place2dTexture9.tf\" \"PBR_pSphereShape3_brdfTexture.tf\";\nconnectAttr \"place2dTexture9.rf\" \"PBR_pSphereShape3_brdfTexture.rf\";\nconnectAttr \"place2dTexture9.mu\" \"PBR_pSphereShape3_brdfTexture.mu\";\nconnectAttr \"place2dTexture9.mv\" \"PBR_pSphereShape3_brdfTexture.mv\";\nconnectAttr \"place2dTexture9.s\" \"PBR_pSphereShape3_brdfTexture.s\";\nconnectAttr \"place2dTexture9.wu\" \"PBR_pSphereShape3_brdfTexture.wu\";\nconnectAttr \"place2dTexture9.wv\" \"PBR_pSphereShape3_brdfTexture.wv\";\nconnectAttr \"place2dTexture9.re\" \"PBR_pSphereShape3_brdfTexture.re\";\nconnectAttr \"place2dTexture9.of\" \"PBR_pSphereShape3_brdfTexture.of\";\nconnectAttr \"place2dTexture9.r\" \"PBR_pSphereShape3_brdfTexture.ro\";\nconnectAttr \"place2dTexture9.n\" \"PBR_pSphereShape3_brdfTexture.n\";\nconnectAttr \"place2dTexture9.vt1\" \"PBR_pSphereShape3_brdfTexture.vt1\";\nconnectAttr \"place2dTexture9.vt2\" \"PBR_pSphereShape3_brdfTexture.vt2\";\nconnectAttr \"place2dTexture9.vt3\" \"PBR_pSphereShape3_brdfTexture.vt3\";\nconnectAttr \"place2dTexture9.vc1\" \"PBR_pSphereShape3_brdfTexture.vc1\";\nconnectAttr \"place2dTexture9.o\" \"PBR_pSphereShape3_brdfTexture.uv\";\nconnectAttr \"place2dTexture9.ofs\" \"PBR_pSphereShape3_brdfTexture.fs\";\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert3SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"PBR_pSphereShape3SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert4.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert3.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"PBR_pSphereShape3.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"place2dTexture1.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture2.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture3.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture4.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture5.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture6.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture7.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture8.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture9.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"directionalLightShape1.ltd\" \":lightList1.l\" -na;\nconnectAttr \"file1.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file2.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file3.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file4.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file5.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file6.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"PBR_pSphereShape3_DiffuseEnvTexture.msg\" \":defaultTextureList1.tx\" \n\t\t-na;\nconnectAttr \"PBR_pSphereShape3_SpecularEnvTexture.msg\" \":defaultTextureList1.tx\"\n\t\t -na;\nconnectAttr \"PBR_pSphereShape3_brdfTexture.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"directionalLight1.iog\" \":defaultLightSet.dsm\" -na;\n// End of NestedTransparentEmissiveSpheres.ma\n"
  },
  {
    "path": "maya/scenes/NonUniformScalingTest.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: NonUniformScalingTest.ma\n//Last modified: Sun, Feb 03, 2019 11:50:57 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires -nodeType \"polyPlatonic\" \"modelingToolkit\" \"0.0.0.0\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"9CF7B502-44DC-D86B-1B40-7C97122EE62C\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -1.0597616834722909 11.76277612732428 15.955478060385129 ;\n\tsetAttr \".r\" -type \"double3\" -36.338352729602583 -3.7999999999996459 -1.9922266493727668e-16 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"64950A79-48E4-15A7-80D2-8E943C66997C\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 19.851027106493135;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"D661CBD0-4A6E-0902-FB6D-92B0FD9BB0E1\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"8B8D7928-4076-2138-5771-169F5AC00CB8\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"58876BDB-4F59-F5E7-B89F-D9B5D80679D3\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"F70A9135-46B9-CBEB-FEC6-758FA5B6AE0C\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"A65C44DD-4969-981B-9628-26B5A22F7590\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"6787BE42-4AC0-D354-8B41-4B9990D4753B\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pPlatonic1\";\n\trename -uid \"3F9F4E23-4D82-D012-BD9F-97B7835A0791\";\n\tsetAttr \".s\" -type \"double3\" 0.5 1 2 ;\ncreateNode mesh -n \"pPlatonicShape1\" -p \"pPlatonic1\";\n\trename -uid \"C6182BED-46C1-53E5-FFED-DE8A09C73A03\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"6BC7F045-424B-C1AB-D7A0-4B86DD70AAA0\";\n\tsetAttr \".t\" -type \"double3\" 3.3209820978754498 7.0302467056045366 2.927839549255109 ;\n\tsetAttr \".r\" -type \"double3\" -57.799195682083464 48.600000000000357 -4.8094625973585807e-15 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"1E967FD2-4A66-F380-8141-4F9F8773C1F2\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 8.3081607569474674;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 1.4901161193847656e-08 0 0 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"9BB7D608-4924-E76C-75AD-509B8F51662C\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"8DF48291-4960-A069-8FF0-4FB3F9202E72\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"AD08CE4F-4172-2494-A7A9-418EF6E79477\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"628A720D-40AF-0769-DAB5-DC8DB72DE422\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"B5CC22B9-4FBA-83E2-7261-E6BCA21727F7\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"A55C7076-4AA0-E09E-9148-AFACAE3FC024\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"0ABA3225-4D8B-AAD4-6D30-D5A189372D21\";\n\tsetAttr \".g\" yes;\ncreateNode polyPlatonic -n \"polyPlatonic1\";\n\trename -uid \"2B230189-43DB-A40D-4885-E28B6D4A7F98\";\n\tsetAttr \".subdivisions\" 2;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"B37B0D65-462D-FAD1-9846-5088118343A3\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"CC44813D-4177-E0D3-2E29-E08B347FAF0A\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"30656909-4C11-D833-C25C-43AB82CA6F3A\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :lambert1;\n\tsetAttr \".c\" -type \"float3\" 1 1 1 ;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"polyPlatonic1.output\" \"pPlatonicShape1.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pPlatonicShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of NonUniformScalingTest.ma\n"
  },
  {
    "path": "maya/scenes/NormalizedNormalsTest.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: NormalizedNormalsTest.ma\n//Last modified: Sun, Feb 03, 2019 11:51:05 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires -nodeType \"polyPlatonic\" \"modelingToolkit\" \"0.0.0.0\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"9CF7B502-44DC-D86B-1B40-7C97122EE62C\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0.69431335213866685 8.1810914996689306 18.073487433968747 ;\n\tsetAttr \".r\" -type \"double3\" -24.338352729602445 2.2000000000000783 2.9839694487839535e-16 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"64950A79-48E4-15A7-80D2-8E943C66997C\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 19.851027106493135;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"D661CBD0-4A6E-0902-FB6D-92B0FD9BB0E1\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"8B8D7928-4076-2138-5771-169F5AC00CB8\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"58876BDB-4F59-F5E7-B89F-D9B5D80679D3\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"F70A9135-46B9-CBEB-FEC6-758FA5B6AE0C\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"A65C44DD-4969-981B-9628-26B5A22F7590\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"6787BE42-4AC0-D354-8B41-4B9990D4753B\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pPlatonic1\";\n\trename -uid \"3F9F4E23-4D82-D012-BD9F-97B7835A0791\";\ncreateNode mesh -n \"pPlatonicShape1\" -p \"pPlatonic1\";\n\trename -uid \"C6182BED-46C1-53E5-FFED-DE8A09C73A03\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"2F4A1F34-4D6C-BD00-7F96-439DAA104AE1\";\n\tsetAttr \".t\" -type \"double3\" 2.2546493634168097 3.7355755828294042 4.8351110992585324 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"5E6FFCC1-4CA4-865A-E8B9-06BFAE1A00C0\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 6.5127772796843395;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 2.9802322387695313e-08 0 0 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"D6D6C450-4271-E478-09B7-89B90697B8B5\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"114EF0A1-4789-3EDB-401F-BBA98456010A\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"7ECD3C46-4128-E092-1555-31A57D547780\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"7E006CAE-4776-5ECD-BD67-A8B6FC1F89C5\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"B5CC22B9-4FBA-83E2-7261-E6BCA21727F7\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"07730242-44F4-F327-E415-5680312AEC95\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"0ABA3225-4D8B-AAD4-6D30-D5A189372D21\";\n\tsetAttr \".g\" yes;\ncreateNode polyPlatonic -n \"polyPlatonic1\";\n\trename -uid \"2B230189-43DB-A40D-4885-E28B6D4A7F98\";\n\tsetAttr \".subdivisions\" 2;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"B37B0D65-462D-FAD1-9846-5088118343A3\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"CC44813D-4177-E0D3-2E29-E08B347FAF0A\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"A8303319-4F6A-4D03-49EC-8BAB9D4A3406\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :lambert1;\n\tsetAttr \".c\" -type \"float3\" 1 1 1 ;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"polyPlatonic1.output\" \"pPlatonicShape1.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pPlatonicShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of NormalizedNormalsTest.ma\n"
  },
  {
    "path": "maya/scenes/RobotChainTest1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: RobotChainTest1.ma\n//Last modified: Sun, Feb 03, 2019 11:51:15 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires -nodeType \"aiOptions\" -nodeType \"aiAOVDriver\" -nodeType \"aiAOVFilter\" \"mtoa\" \"2.1.0.1\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"4D1E609B-450F-477E-5712-C18A6C16E1CB\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 4.0430087553084268 2.3711820812694127 2.7900449275022714 ;\n\tsetAttr \".r\" -type \"double3\" -27.338352729614389 45.00000000000226 2.2489917831975613e-15 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"4DCE68EC-4FE3-AA69-42A6-889F6DC5C429\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999986;\n\tsetAttr \".coi\" 4.7237772809000393;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 1.288615345954895 0.49971240758895874 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"6ABC8681-4CA8-6EC6-E978-BC83FEC82DDA\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"59D38CEC-4DFB-E3B4-B0DB-98B48E3B9FB8\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"front\";\n\trename -uid \"9273C02D-4DEA-079F-9471-33B5F5964D5F\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"910D2C40-4392-F3CB-A75A-33A9444F80D5\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"side\";\n\trename -uid \"DA7FEE80-422D-A135-CE07-DCA5224309C7\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"D3F7AECB-4E19-C400-D6A2-28B1DDBF745A\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -n \"upper_body\";\n\trename -uid \"A417DE91-4A02-A708-5FB2-F69F6089D05B\";\n\tsetAttr \".rp\" -type \"double3\" 0 0.48400179783362041 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0 0.48400179783362041 0 ;\ncreateNode mesh -n \"upper_bodyShape\" -p \"upper_body\";\n\trename -uid \"D3829E88-45C3-0F14-BE7C-85B9BFF269E2\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"lower_body\" -p \"upper_body\";\n\trename -uid \"2E1315DF-4EC3-0021-07C7-6EB8FA0028AA\";\ncreateNode mesh -n \"lower_bodyShape\" -p \"lower_body\";\n\trename -uid \"FCF1A9A0-4EE1-5A09-D0EC-188600A2F8E7\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"upper_arm\" -p \"lower_body\";\n\trename -uid \"776D3D2E-4B8D-1192-5F12-7BBAF548B3B7\";\n\tsetAttr \".rp\" -type \"double3\" 0.52545520229978726 0.99942482012246825 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0.52545520229978726 0.99942482012246825 0 ;\ncreateNode mesh -n \"upper_armShape\" -p \"upper_arm\";\n\trename -uid \"034256BC-40BE-29CD-497B-00A5F5651884\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.5 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode mesh -n \"polySurfaceShape1\" -p \"upper_arm\";\n\trename -uid \"8A6E0702-472C-6FE2-6479-3882F4CD3AD9\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"elbow\" -p \"upper_arm\";\n\trename -uid \"4F0EDD06-47C5-0D3D-B20F-32A77B51757E\";\n\tsetAttr \".rp\" -type \"double3\" 1.5206469262684985 0.99942482012246825 0 ;\n\tsetAttr \".sp\" -type \"double3\" 1.5206469262684985 0.99942482012246825 0 ;\ncreateNode mesh -n \"elbowShape\" -p \"elbow\";\n\trename -uid \"94B8504B-49EE-96B8-7959-EA980F8EB597\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode mesh -n \"polySurfaceShape3\" -p \"elbow\";\n\trename -uid \"49F8223C-4105-ACD8-D142-17BDBEBA75E0\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 4 \".pt\";\n\tsetAttr \".pt[1]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[3]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[5]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[7]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"lower_arm\" -p \"elbow\";\n\trename -uid \"A74D28E5-4D0B-5FDE-F2D6-4A84CFEA40C8\";\n\tsetAttr \".rp\" -type \"double3\" 1.7106468840558857 0.99942482012246825 0 ;\n\tsetAttr \".sp\" -type \"double3\" 1.7106468840558857 0.99942482012246825 0 ;\ncreateNode mesh -n \"lower_armShape\" -p \"lower_arm\";\n\trename -uid \"9D287556-460B-F363-EFD9-6EB5F1D200F7\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode mesh -n \"polySurfaceShape2\" -p \"lower_arm\";\n\trename -uid \"14C63E4A-46D7-E3CC-5EF1-6D9A4829766C\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"palm\" -p \"lower_arm\";\n\trename -uid \"33BEA552-4AEB-FCB0-3114-CA86D4E3D442\";\n\tsetAttr \".rp\" -type \"double3\" 2.6856871630728727 0.99942482012246825 0 ;\n\tsetAttr \".sp\" -type \"double3\" 2.6856871630728727 0.99942482012246825 0 ;\ncreateNode mesh -n \"palmShape\" -p \"palm\";\n\trename -uid \"7E98B722-485F-69F8-D2E8-2391A54336FB\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode mesh -n \"polySurfaceShape4\" -p \"palm\";\n\trename -uid \"E0D5EDA2-4CE4-D745-2AB7-63A81F7452C2\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 4 \".pt\";\n\tsetAttr \".pt[1]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[3]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[5]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[7]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"finger1\" -p \"palm\";\n\trename -uid \"A348BFEF-488B-3D73-2A68-F5B547815B9B\";\n\tsetAttr \".rp\" -type \"double3\" 2.8689475417889438 0.99942482012246825 0.012528567686649117 ;\n\tsetAttr \".sp\" -type \"double3\" 2.8689475417889438 0.99942482012246825 0.012528567686649117 ;\ncreateNode mesh -n \"fingerShape1\" -p \"finger1\";\n\trename -uid \"4EEC06EF-43CF-AC70-A9BA-28B0077817D0\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode mesh -n \"polySurfaceShape6\" -p \"finger1\";\n\trename -uid \"60DF0074-4A15-2004-0C2D-CA96C28ED56D\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 4 \".pt\";\n\tsetAttr \".pt[1]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[3]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[5]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[7]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"finger2\" -p \"palm\";\n\trename -uid \"891ACCC0-4AF7-D451-435F-F3A02F2C9A08\";\n\tsetAttr \".rp\" -type \"double3\" 2.8689475417889438 0.99942482012246825 0.10955786981025847 ;\n\tsetAttr \".sp\" -type \"double3\" 2.8689475417889438 0.99942482012246825 0.10955786981025847 ;\ncreateNode mesh -n \"fingerShape2\" -p \"finger2\";\n\trename -uid \"C6D40E54-4E40-2F51-04CF-9988AAD7CA61\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode mesh -n \"polySurfaceShape5\" -p \"finger2\";\n\trename -uid \"49A4B1EA-4A22-79F8-208A-E9A70E306F88\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 4 \".pt\";\n\tsetAttr \".pt[1]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[3]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[5]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[7]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"finger3\" -p \"palm\";\n\trename -uid \"598D64FE-4329-D582-D702-C7B553F255B2\";\n\tsetAttr \".rp\" -type \"double3\" 2.8689475417889438 0.99942482012246825 -0.084067756963181792 ;\n\tsetAttr \".sp\" -type \"double3\" 2.8689475417889438 0.99942482012246825 -0.084067756963181792 ;\ncreateNode mesh -n \"fingerShape3\" -p \"finger3\";\n\trename -uid \"98C6D70C-49BA-708B-7461-D3936AFDBE26\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode mesh -n \"polySurfaceShape7\" -p \"finger3\";\n\trename -uid \"21D91840-4B4B-40A4-BCA3-4A836C9F4318\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 4 \".pt\";\n\tsetAttr \".pt[1]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[3]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[5]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr \".pt[7]\" -type \"float3\" -0.7923556 0 0 ;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"camera1\";\n\trename -uid \"90866B0C-4063-83B1-A27C-E28FE7E11E7C\";\n\tsetAttr \".t\" -type \"double3\" 3.2094248264012273 3.6821713769044191 4.1191892237975285 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"AE5E6778-48EB-EA53-9E7B-DA943159C9AE\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 5.5484478922486611;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 1.288615345954895 0.49971240758895874 0 ;\n\tsetAttr \".dr\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"1F3AD722-4D10-45B4-3555-4F8FB62D65DD\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"82C3CB86-40D0-81DC-E467-EBA8FB200C8D\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"37F9A69C-4152-C36F-7B3F-108032077B2F\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"E0D2EB22-4125-2DE8-AD20-1D99CAFCD59C\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"4697E791-4C99-4DBE-A998-53B06E14D28D\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"2AC744AC-4FF6-DD8A-DF70-9ABBD47CE74F\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"14B02E16-4F80-5594-E361-588DFBD68EA8\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"C6C8B6FD-49C1-5CD1-8A55-04814B59B6FC\";\n\tsetAttr \".cuv\" 4;\ncreateNode polyCube -n \"polyCube2\";\n\trename -uid \"F1167DA4-42D4-06B6-0627-558A3884505C\";\n\tsetAttr \".cuv\" 4;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"11652E74-4081-FA0A-A17C-338F90CD0064\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 1\\n            -showReferenceMembers 1\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"7C2DC84B-4D80-81E6-68AD-4F87AF9A3CD3\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode polySubdFace -n \"polySubdFace1\";\n\trename -uid \"4EF9DBEE-4B9D-C258-05DA-74ACF3A040A7\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".dv\" 2;\ncreateNode polySubdFace -n \"polySubdFace2\";\n\trename -uid \"38EAC154-465E-2D05-A24A-7F919B782321\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".dv\" 2;\ncreateNode polySubdFace -n \"polySubdFace3\";\n\trename -uid \"B322427C-4BB6-A6E4-FAEA-1E930F770B6A\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".dv\" 2;\ncreateNode polySubdFace -n \"polySubdFace4\";\n\trename -uid \"1F33E06E-4869-51AD-B093-FE921548A23D\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".dv\" 2;\ncreateNode polySubdFace -n \"polySubdFace5\";\n\trename -uid \"C5D3EBED-464F-AA48-B605-B4A83499B30F\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".dv\" 2;\ncreateNode polySubdFace -n \"polySubdFace6\";\n\trename -uid \"9EEB73B2-47C3-80A6-2468-14A2EC8E0E0A\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".dv\" 2;\ncreateNode polySubdFace -n \"polySubdFace7\";\n\trename -uid \"6C455D87-49E0-92B6-F079-629EB9DE8FC3\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".dv\" 2;\ncreateNode transformGeometry -n \"transformGeometry1\";\n\trename -uid \"D89F4963-43A8-2061-9027-EC9D3EEF813F\";\n\tsetAttr \".txf\" -type \"matrix\" 1.0000000000000473 0 0 0 0 0.29759270698723378 0 0\n\t\t 0 0 0.29759270698723378 0 3.1718332089241352 0.99942482012246825 0 1;\ncreateNode transformGeometry -n \"transformGeometry2\";\n\trename -uid \"C18FE45F-4FBA-B25F-AEFF-468E4BDA1ACF\";\n\tsetAttr \".txf\" -type \"matrix\" 1.0000000000000473 0 0 0 0 0.16232487151308209 0 0\n\t\t 0 0 0.16232487151308209 0 1.0048615927838263 0.99942482012246825 0 1;\ncreateNode transformGeometry -n \"transformGeometry3\";\n\trename -uid \"F446B3BA-4850-12BE-AD6F-0580EE0D6A4F\";\n\tsetAttr \".txf\" -type \"matrix\" 1.0000000000000473 0 0 0 0 0.16232487151308209 0 0\n\t\t 0 0 0.16232487151308209 0 2.0045117358235158 0.99942482012246825 0 1;\ncreateNode transformGeometry -n \"transformGeometry4\";\n\trename -uid \"D386F023-470B-0E74-1E6E-FEACE2DCF892\";\n\tsetAttr \".txf\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0.99942482012246825 0 1;\ncreateNode transformGeometry -n \"transformGeometry5\";\n\trename -uid \"72B22758-4C4A-AD6F-B03E-44AD73FDBEDD\";\n\tsetAttr \".txf\" -type \"matrix\" 1.0000000000000473 0 0 0 0 0.059418196663658072 0 0\n\t\t 0 0 0.059418196663658072 0 3.3695862095123692 0.99942482012246825 0.10955786981025853 1;\ncreateNode transformGeometry -n \"transformGeometry6\";\n\trename -uid \"35740B21-449E-F023-55E7-ECBBD8E42EEA\";\n\tsetAttr \".txf\" -type \"matrix\" 1.0000000000000473 0 0 0 0 0.059418196663658072 0 0\n\t\t 0 0 0.059418196663658072 0 3.3695862095123692 0.99942482012246825 -0.084067756963181736 1;\ncreateNode transformGeometry -n \"transformGeometry7\";\n\trename -uid \"BA6773F4-4940-0413-38B1-689063CA25EE\";\n\tsetAttr \".txf\" -type \"matrix\" 1.0000000000000473 0 0 0 0 0.059418196663658072 0 0\n\t\t 0 0 0.059418196663658072 0 3.3695862095123692 0.99942482012246825 0.012528567686649172 1;\ncreateNode transformGeometry -n \"transformGeometry8\";\n\trename -uid \"20894A11-4CA6-E631-EC03-36AA755C2D26\";\n\tsetAttr \".txf\" -type \"matrix\" 1.0000000000000473 0 0 0 0 0.16232487151308209 0 0\n\t\t 0 0 0.16232487151308209 0 2.1971125804656442 0.99942482012246825 0 1;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"9F84B70E-4F9A-3E1D-BD8D-BFBBFC163935\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/scenes/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"GroupedFingersPivotTest3\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2018 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 1;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"7F7A3527-4209-D312-D265-F2BACBB34608\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\ncreateNode aiOptions -s -n \"defaultArnoldRenderOptions\";\n\trename -uid \"7B3DA5B0-46DF-5D1E-D552-17A917CFBBC8\";\n\tsetAttr \".version\" -type \"string\" \"2.1.0.1\";\ncreateNode aiAOVFilter -s -n \"defaultArnoldFilter\";\n\trename -uid \"025263CF-4DC1-DCDA-3D8E-D980947BCEEA\";\n\tsetAttr \".ai_translator\" -type \"string\" \"gaussian\";\ncreateNode aiAOVDriver -s -n \"defaultArnoldDriver\";\n\trename -uid \"CA282764-45D6-F23C-B926-5CA1171A7BB6\";\n\tsetAttr \".ai_translator\" -type \"string\" \"exr\";\ncreateNode aiAOVDriver -s -n \"defaultArnoldDisplayDriver\";\n\trename -uid \"4C434DE8-437C-90B7-7D6C-098D08B7F7F4\";\n\tsetAttr \".output_mode\" 0;\n\tsetAttr \".ai_translator\" -type \"string\" \"maya\";\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 9 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".macc\";\n\tsetAttr -k on \".macd\";\n\tsetAttr -k on \".macq\";\n\tsetAttr -cb on \".ifg\";\n\tsetAttr -k on \".clip\";\n\tsetAttr -k on \".edm\";\n\tsetAttr -k on \".edl\";\n\tsetAttr \".ren\" -type \"string\" \"arnold\";\n\tsetAttr -av -k on \".esr\";\n\tsetAttr -k on \".ors\";\n\tsetAttr -cb on \".sdf\";\n\tsetAttr \".outf\" 51;\n\tsetAttr -cb on \".imfkey\" -type \"string\" \"exr\";\n\tsetAttr -k on \".gama\";\n\tsetAttr -cb on \".ar\";\n\tsetAttr -av \".bfs\";\n\tsetAttr -k on \".be\";\n\tsetAttr -k on \".fec\";\n\tsetAttr -k on \".ofc\";\n\tsetAttr -cb on \".ofe\";\n\tsetAttr -cb on \".efe\";\n\tsetAttr -cb on \".umfn\";\n\tsetAttr -cb on \".ufe\";\n\tsetAttr -k on \".comp\";\n\tsetAttr -k on \".cth\";\n\tsetAttr -k on \".soll\";\n\tsetAttr -k on \".rd\";\n\tsetAttr -k on \".lp\";\n\tsetAttr -k on \".sp\";\n\tsetAttr -k on \".shs\";\n\tsetAttr -k on \".lpr\";\n\tsetAttr -cb on \".gv\";\n\tsetAttr -cb on \".sv\";\n\tsetAttr -k on \".mm\";\n\tsetAttr -k on \".npu\";\n\tsetAttr -k on \".itf\";\n\tsetAttr -k on \".shp\";\n\tsetAttr -cb on \".isp\";\n\tsetAttr -k on \".uf\";\n\tsetAttr -k on \".oi\";\n\tsetAttr -k on \".rut\";\n\tsetAttr -av -k on \".mbf\";\n\tsetAttr -k on \".afp\";\n\tsetAttr -k on \".pfb\";\n\tsetAttr -cb on \".pfrm\";\n\tsetAttr -cb on \".pfom\";\n\tsetAttr -av -k on \".bll\";\n\tsetAttr -k on \".bls\";\n\tsetAttr -k on \".smv\";\n\tsetAttr -k on \".ubc\";\n\tsetAttr -k on \".mbc\";\n\tsetAttr -k on \".udbx\";\n\tsetAttr -k on \".smc\";\n\tsetAttr -k on \".kmv\";\n\tsetAttr -cb on \".isl\";\n\tsetAttr -cb on \".ism\";\n\tsetAttr -cb on \".imb\";\n\tsetAttr -k on \".rlen\";\n\tsetAttr -av -k on \".frts\";\n\tsetAttr -k on \".tlwd\";\n\tsetAttr -k on \".tlht\";\n\tsetAttr -k on \".jfc\";\n\tsetAttr -cb on \".rsb\";\n\tsetAttr -k on \".ope\";\n\tsetAttr -k on \".oppf\";\n\tsetAttr -cb on \".hbl\";\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"transformGeometry4.og\" \"upper_bodyShape.i\";\nconnectAttr \"polyCube1.out\" \"lower_bodyShape.i\";\nconnectAttr \"transformGeometry2.og\" \"upper_armShape.i\";\nconnectAttr \"transformGeometry3.og\" \"elbowShape.i\";\nconnectAttr \"transformGeometry8.og\" \"lower_armShape.i\";\nconnectAttr \"transformGeometry1.og\" \"palmShape.i\";\nconnectAttr \"transformGeometry7.og\" \"fingerShape1.i\";\nconnectAttr \"transformGeometry5.og\" \"fingerShape2.i\";\nconnectAttr \"transformGeometry6.og\" \"fingerShape3.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"polySurfaceShape1.o\" \"polySubdFace1.ip\";\nconnectAttr \"polySurfaceShape2.o\" \"polySubdFace2.ip\";\nconnectAttr \"polySurfaceShape3.o\" \"polySubdFace3.ip\";\nconnectAttr \"polySurfaceShape4.o\" \"polySubdFace4.ip\";\nconnectAttr \"polySurfaceShape5.o\" \"polySubdFace5.ip\";\nconnectAttr \"polySurfaceShape6.o\" \"polySubdFace6.ip\";\nconnectAttr \"polySurfaceShape7.o\" \"polySubdFace7.ip\";\nconnectAttr \"polySubdFace4.out\" \"transformGeometry1.ig\";\nconnectAttr \"polySubdFace1.out\" \"transformGeometry2.ig\";\nconnectAttr \"polySubdFace3.out\" \"transformGeometry3.ig\";\nconnectAttr \"polyCube2.out\" \"transformGeometry4.ig\";\nconnectAttr \"polySubdFace5.out\" \"transformGeometry5.ig\";\nconnectAttr \"polySubdFace7.out\" \"transformGeometry6.ig\";\nconnectAttr \"polySubdFace6.out\" \"transformGeometry7.ig\";\nconnectAttr \"polySubdFace2.out\" \"transformGeometry8.ig\";\nconnectAttr \":defaultArnoldDisplayDriver.msg\" \":defaultArnoldRenderOptions.drivers\"\n\t\t -na;\nconnectAttr \":defaultArnoldFilter.msg\" \":defaultArnoldRenderOptions.filt\";\nconnectAttr \":defaultArnoldDriver.msg\" \":defaultArnoldRenderOptions.drvr\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"lower_bodyShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"upper_bodyShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"upper_armShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"elbowShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"lower_armShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"palmShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"fingerShape3.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"fingerShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"fingerShape2.iog\" \":initialShadingGroup.dsm\" -na;\n// End of RobotChainTest1.ma\n"
  },
  {
    "path": "maya/scenes/SimpleCube1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: SimpleCube1.ma\n//Last modified: Sun, Feb 03, 2019 11:51:23 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"3E1C323B-4839-1398-0419-599263AEEAA9\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 2.0847835587898009 1.5635876690922941 2.0847835587895758 ;\n\tsetAttr \".r\" -type \"double3\" -27.938352729602325 45.000000000000007 2.9236893181567143e-14 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"7D53FDF5-43EB-5095-D654-9F8DD9E14536\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 3.3372820337719515;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"C6C6D7A2-4634-28A9-2E6B-1AAF44A1FA2A\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"5D4DE87C-4E0D-E73C-1CBE-B59B76A99041\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"D3414EDF-4E33-8E1D-EA10-34BF8C3B3FB8\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"679620C3-4FB6-78E7-84F4-48A9913415D1\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"CD2A2FA0-439E-44C0-1143-E39C82F09DD8\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"17B48A61-48E6-4169-D1D3-70B9A0FC92C7\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"C5BCC43F-404D-A3A5-E24A-D8AD1C7662FF\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"40ED70F0-411F-E28B-9A96-B18BA6D1E5A6\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"D6E46F10-41A1-D7D7-9802-408C36F66796\";\n\tsetAttr \".t\" -type \"double3\" 1.1280935417606996 1.8690616881841713 2.4192044072879586 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"03B87D7D-4CE3-727A-5F16-958CC51C0941\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 3.2586096110828544;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"0599BC64-478F-F266-17CD-2DB782A0745D\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"84E9A12E-4611-201C-3BED-DE9907494DF4\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"7F265F21-4061-216A-E3B0-D6B696BD3D9A\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"E52755C7-4A6E-6088-2E05-14B0CB1ACEAE\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"8805CFB0-4F89-1DC2-13A5-BE9A5411C2EA\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"26FBBB74-427F-AF90-7CF4-4FAB8D5A1F8B\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"8A152267-40AA-80F8-E376-94991EE61001\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"FB273604-4A2D-32F3-2ACD-B7AF1EDA1344\";\n\tsetAttr \".cuv\" 4;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"0E46BB7A-4302-47D8-4086-34BFAFB2AF36\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 0\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 10 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"735738B2-4750-FE42-B643-E1B52B60EF29\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"B1E42278-4D7A-EFD0-C1D5-C7AD750ADF1E\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of SimpleCube1.ma\n"
  },
  {
    "path": "maya/scenes/SkewedCube1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: SkewedCube1.ma\n//Last modified: Sun, Feb 03, 2019 11:51:32 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires -nodeType \"aiOptions\" -nodeType \"aiAOVDriver\" -nodeType \"aiAOVFilter\" \"mtoa\" \"2.1.0.1\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"4876139A-4BEB-5736-32AB-21B281D7173C\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1.6771973726715073 0.92567467123584857 2.9285517001257544 ;\n\tsetAttr \".r\" -type \"double3\" -15.338352729602397 29.799999999999926 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"8908E0B3-4102-7A85-C0CF-E392941FBA47\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 3.4994684859522929;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"3372941B-476C-0C77-0C90-92B1136EF5FF\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"62BBDA4A-4C82-0D58-D1D3-06A3A9C20A9D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"front\";\n\trename -uid \"65433A86-47C6-4367-EB82-53A8924CA6B2\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"793DB7F0-4B42-07C1-AF30-EE93C929D757\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"side\";\n\trename -uid \"E3D83CF9-4EE4-427F-F24C-68A7AEB85C51\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"00408336-4F6B-A937-03BA-C687F15DE970\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -n \"pCube1\";\n\trename -uid \"035302EA-487D-B6B6-9F20-458C58E63B6C\";\n\tsetAttr \".sh\" -type \"double3\" 1 0 0 ;\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"075AFD81-4EF2-3757-505B-4FB4592FCE1B\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"camera1\";\n\trename -uid \"52EDC298-4B2A-E1CD-5183-2EA87F896070\";\n\tsetAttr \".t\" -type \"double3\" 0.99856081703364985 2.100111431891527 2.9000311868499828 ;\n\tsetAttr \".r\" -type \"double3\" -34.400021166260991 19.000000000000057 -8.4095510219022503e-16 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"42A8A53A-4C8B-A372-8DB4-32ABD97459CF\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 3.7172264682662179;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".dr\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"480472D4-4EF3-15A0-2C57-8998E808898C\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"1AAFC5F7-4969-D0E3-6596-A68441933DF0\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"D539F14C-4C0A-A8E7-CF24-06AEF412BF4B\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"7DF61AB1-46F7-1549-EC5E-78A8744AC87D\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"80D20EB3-49B3-4CC6-E2EF-6694D9666DC5\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"3E6F3252-499D-3CAB-4130-F9B7AC2B07D5\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"3C6D97E1-4290-760B-400C-AC8AB00829DB\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"9ED36BD8-4955-2B63-FF8B-B6A8CBF92888\";\n\tsetAttr \".cuv\" 4;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"9D85C40F-4DC1-2532-3270-0F902544468C\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/Users/bugfa/Documents/maya/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"untitled\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2018 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 1;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"31D1BC7A-4955-E342-B9A1-ABAC8B03FB3D\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n\"\n\t\t+ \"            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\"\n\t\t+ \"\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 0\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 1\\n            -showReferenceMembers 1\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"dagName\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 1\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 0\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"dagName\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 1\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 1\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n\"\n\t\t+ \"            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n\"\n\t\t+ \"            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n\"\n\t\t+ \"            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n\"\n\t\t+ \"            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n\"\n\t\t+ \"        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n\"\n\t\t+ \"            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n\"\n\t\t+ \"            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n\"\n\t\t+ \"            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 10 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"858C2D18-4A74-9B7B-A4A8-51A9BA5331A5\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"78418677-4F4C-75D4-49A1-709F14D9FB48\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\ncreateNode aiOptions -s -n \"defaultArnoldRenderOptions\";\n\trename -uid \"F359F359-4111-6BA7-06B4-BA8E53836691\";\n\tsetAttr \".version\" -type \"string\" \"2.1.0.1\";\ncreateNode aiAOVFilter -s -n \"defaultArnoldFilter\";\n\trename -uid \"4FC07A05-4747-31A0-2C73-FC8C2633C846\";\n\tsetAttr \".ai_translator\" -type \"string\" \"gaussian\";\ncreateNode aiAOVDriver -s -n \"defaultArnoldDriver\";\n\trename -uid \"9884D1BA-4947-5D50-0211-238A326341B2\";\n\tsetAttr \".ai_translator\" -type \"string\" \"exr\";\ncreateNode aiAOVDriver -s -n \"defaultArnoldDisplayDriver\";\n\trename -uid \"27F8B44C-45DE-ABD8-434A-359E174FC3BF\";\n\tsetAttr \".output_mode\" 0;\n\tsetAttr \".ai_translator\" -type \"string\" \"maya\";\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".macc\";\n\tsetAttr -k on \".macd\";\n\tsetAttr -k on \".macq\";\n\tsetAttr -cb on \".ifg\";\n\tsetAttr -k on \".clip\";\n\tsetAttr -k on \".edm\";\n\tsetAttr -k on \".edl\";\n\tsetAttr \".ren\" -type \"string\" \"arnold\";\n\tsetAttr -av -k on \".esr\";\n\tsetAttr -k on \".ors\";\n\tsetAttr -cb on \".sdf\";\n\tsetAttr \".outf\" 51;\n\tsetAttr -cb on \".imfkey\" -type \"string\" \"exr\";\n\tsetAttr -k on \".gama\";\n\tsetAttr -cb on \".ar\";\n\tsetAttr -av \".bfs\";\n\tsetAttr -k on \".be\";\n\tsetAttr -k on \".fec\";\n\tsetAttr -k on \".ofc\";\n\tsetAttr -cb on \".ofe\";\n\tsetAttr -cb on \".efe\";\n\tsetAttr -cb on \".umfn\";\n\tsetAttr -cb on \".ufe\";\n\tsetAttr -k on \".comp\";\n\tsetAttr -k on \".cth\";\n\tsetAttr -k on \".soll\";\n\tsetAttr -k on \".rd\";\n\tsetAttr -k on \".lp\";\n\tsetAttr -k on \".sp\";\n\tsetAttr -k on \".shs\";\n\tsetAttr -k on \".lpr\";\n\tsetAttr -cb on \".gv\";\n\tsetAttr -cb on \".sv\";\n\tsetAttr -k on \".mm\";\n\tsetAttr -k on \".npu\";\n\tsetAttr -k on \".itf\";\n\tsetAttr -k on \".shp\";\n\tsetAttr -cb on \".isp\";\n\tsetAttr -k on \".uf\";\n\tsetAttr -k on \".oi\";\n\tsetAttr -k on \".rut\";\n\tsetAttr -av -k on \".mbf\";\n\tsetAttr -k on \".afp\";\n\tsetAttr -k on \".pfb\";\n\tsetAttr -cb on \".pfrm\";\n\tsetAttr -cb on \".pfom\";\n\tsetAttr -av -k on \".bll\";\n\tsetAttr -k on \".bls\";\n\tsetAttr -k on \".smv\";\n\tsetAttr -k on \".ubc\";\n\tsetAttr -k on \".mbc\";\n\tsetAttr -k on \".udbx\";\n\tsetAttr -k on \".smc\";\n\tsetAttr -k on \".kmv\";\n\tsetAttr -cb on \".isl\";\n\tsetAttr -cb on \".ism\";\n\tsetAttr -cb on \".imb\";\n\tsetAttr -k on \".rlen\";\n\tsetAttr -av -k on \".frts\";\n\tsetAttr -k on \".tlwd\";\n\tsetAttr -k on \".tlht\";\n\tsetAttr -k on \".jfc\";\n\tsetAttr -cb on \".rsb\";\n\tsetAttr -k on \".ope\";\n\tsetAttr -k on \".oppf\";\n\tsetAttr -cb on \".hbl\";\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \":defaultArnoldDisplayDriver.msg\" \":defaultArnoldRenderOptions.drivers\"\n\t\t -na;\nconnectAttr \":defaultArnoldFilter.msg\" \":defaultArnoldRenderOptions.filt\";\nconnectAttr \":defaultArnoldDriver.msg\" \":defaultArnoldRenderOptions.drvr\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of SkewedCube1.ma\n"
  },
  {
    "path": "maya/scenes/SkewedCubeAnim1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: SkewedCubeAnim1.ma\n//Last modified: Sun, Feb 03, 2019 11:51:45 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires -nodeType \"aiOptions\" -nodeType \"aiAOVDriver\" -nodeType \"aiAOVFilter\" \"mtoa\" \"2.1.0.1\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"4876139A-4BEB-5736-32AB-21B281D7173C\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0.52391258901369331 0.65178068068219397 3.4642105576409215 ;\n\tsetAttr \".r\" -type \"double3\" -10.538352729602398 8.5999999999999268 -2.0104514256684168e-16 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"8908E0B3-4102-7A85-C0CF-E392941FBA47\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 3.5637139678021841;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"3372941B-476C-0C77-0C90-92B1136EF5FF\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"62BBDA4A-4C82-0D58-D1D3-06A3A9C20A9D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"front\";\n\trename -uid \"65433A86-47C6-4367-EB82-53A8924CA6B2\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"793DB7F0-4B42-07C1-AF30-EE93C929D757\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"side\";\n\trename -uid \"E3D83CF9-4EE4-427F-F24C-68A7AEB85C51\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"00408336-4F6B-A937-03BA-C687F15DE970\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -n \"pCube1\";\n\trename -uid \"035302EA-487D-B6B6-9F20-458C58E63B6C\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"075AFD81-4EF2-3757-505B-4FB4592FCE1B\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"camera1\";\n\trename -uid \"32D58496-4778-8130-4D21-5EAB14D5E73D\";\n\tsetAttr \".t\" -type \"double3\" 1.1239081911354392 1.8621272645608586 2.4102288939073286 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"045BDBC3-4866-0E12-5E4B-FCB40A065FA8\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 3.2465198124373096;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".dr\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"2956FC57-4C24-0692-0AFD-CEBC5A7F1EBB\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"7D8D9B6B-406F-BA2C-BD02-5C9DB1B94E55\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"FE1745BF-45F5-4A5B-A9AA-D59EC9A7C109\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"B9822B5B-4423-8754-F66C-B68998551025\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"80D20EB3-49B3-4CC6-E2EF-6694D9666DC5\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"6E8D1DDC-4923-761E-5708-1295977E0EA1\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"3C6D97E1-4290-760B-400C-AC8AB00829DB\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"9ED36BD8-4955-2B63-FF8B-B6A8CBF92888\";\n\tsetAttr \".cuv\" 4;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"9D85C40F-4DC1-2532-3270-0F902544468C\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/Users/bugfa/Documents/maya/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"untitled\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2018 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 2;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"31D1BC7A-4955-E342-B9A1-ABAC8B03FB3D\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n\"\n\t\t+ \"            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\"\n\t\t+ \"\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 0\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 1\\n            -showReferenceMembers 1\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"dagName\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 1\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 0\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"dagName\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 1\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 1\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n\"\n\t\t+ \"            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n\"\n\t\t+ \"            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n\"\n\t\t+ \"            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n\"\n\t\t+ \"            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n\"\n\t\t+ \"        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n\"\n\t\t+ \"            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n\"\n\t\t+ \"            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n\"\n\t\t+ \"            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 10 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"858C2D18-4A74-9B7B-A4A8-51A9BA5331A5\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 40 -ast 1 -aet 40 \";\n\tsetAttr \".st\" 6;\ncreateNode animCurveTU -n \"pCube1_shearXY\";\n\trename -uid \"D6F11B44-4DE9-B952-0D9D-2994782F2AEF\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 20 1 40 0;\ncreateNode animCurveTU -n \"pCube1_shearXZ\";\n\trename -uid \"78293A15-43E2-C444-2372-A6B4D4B381F9\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 20 0 40 0;\ncreateNode animCurveTU -n \"pCube1_shearYZ\";\n\trename -uid \"0FD2DCA5-4F0B-4146-369C-F6BD8A43137C\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 20 0 40 0;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"A5D22C53-4A5D-8B8E-79F8-A2AAEAD55F74\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\ncreateNode aiOptions -s -n \"defaultArnoldRenderOptions\";\n\trename -uid \"20C05E4D-410F-AA8A-08EF-6A913597E8FA\";\n\tsetAttr \".version\" -type \"string\" \"2.1.0.1\";\ncreateNode aiAOVFilter -s -n \"defaultArnoldFilter\";\n\trename -uid \"9A990D17-40AC-6E8F-0C13-2F963413F0A4\";\n\tsetAttr \".ai_translator\" -type \"string\" \"gaussian\";\ncreateNode aiAOVDriver -s -n \"defaultArnoldDriver\";\n\trename -uid \"D69791F0-4242-8518-5AA3-338610A60DAA\";\n\tsetAttr \".ai_translator\" -type \"string\" \"exr\";\ncreateNode aiAOVDriver -s -n \"defaultArnoldDisplayDriver\";\n\trename -uid \"00A8CAFE-40BE-BEC0-8BDC-3FA99ACECFA5\";\n\tsetAttr \".output_mode\" 0;\n\tsetAttr \".ai_translator\" -type \"string\" \"maya\";\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 40;\n\tsetAttr \".unw\" 40;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".macc\";\n\tsetAttr -k on \".macd\";\n\tsetAttr -k on \".macq\";\n\tsetAttr -cb on \".ifg\";\n\tsetAttr -k on \".clip\";\n\tsetAttr -k on \".edm\";\n\tsetAttr -k on \".edl\";\n\tsetAttr \".ren\" -type \"string\" \"arnold\";\n\tsetAttr -av -k on \".esr\";\n\tsetAttr -k on \".ors\";\n\tsetAttr -cb on \".sdf\";\n\tsetAttr \".outf\" 51;\n\tsetAttr -cb on \".imfkey\" -type \"string\" \"exr\";\n\tsetAttr -k on \".gama\";\n\tsetAttr -cb on \".ar\";\n\tsetAttr -av \".bfs\";\n\tsetAttr -k on \".be\";\n\tsetAttr -k on \".fec\";\n\tsetAttr -k on \".ofc\";\n\tsetAttr -cb on \".ofe\";\n\tsetAttr -cb on \".efe\";\n\tsetAttr -cb on \".umfn\";\n\tsetAttr -cb on \".ufe\";\n\tsetAttr -k on \".comp\";\n\tsetAttr -k on \".cth\";\n\tsetAttr -k on \".soll\";\n\tsetAttr -k on \".rd\";\n\tsetAttr -k on \".lp\";\n\tsetAttr -k on \".sp\";\n\tsetAttr -k on \".shs\";\n\tsetAttr -k on \".lpr\";\n\tsetAttr -cb on \".gv\";\n\tsetAttr -cb on \".sv\";\n\tsetAttr -k on \".mm\";\n\tsetAttr -k on \".npu\";\n\tsetAttr -k on \".itf\";\n\tsetAttr -k on \".shp\";\n\tsetAttr -cb on \".isp\";\n\tsetAttr -k on \".uf\";\n\tsetAttr -k on \".oi\";\n\tsetAttr -k on \".rut\";\n\tsetAttr -av -k on \".mbf\";\n\tsetAttr -k on \".afp\";\n\tsetAttr -k on \".pfb\";\n\tsetAttr -cb on \".pfrm\";\n\tsetAttr -cb on \".pfom\";\n\tsetAttr -av -k on \".bll\";\n\tsetAttr -k on \".bls\";\n\tsetAttr -k on \".smv\";\n\tsetAttr -k on \".ubc\";\n\tsetAttr -k on \".mbc\";\n\tsetAttr -k on \".udbx\";\n\tsetAttr -k on \".smc\";\n\tsetAttr -k on \".kmv\";\n\tsetAttr -cb on \".isl\";\n\tsetAttr -cb on \".ism\";\n\tsetAttr -cb on \".imb\";\n\tsetAttr -k on \".rlen\";\n\tsetAttr -av -k on \".frts\";\n\tsetAttr -k on \".tlwd\";\n\tsetAttr -k on \".tlht\";\n\tsetAttr -k on \".jfc\";\n\tsetAttr -cb on \".rsb\";\n\tsetAttr -k on \".ope\";\n\tsetAttr -k on \".oppf\";\n\tsetAttr -cb on \".hbl\";\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"pCube1_shearXY.o\" \"pCube1.shxy\";\nconnectAttr \"pCube1_shearXZ.o\" \"pCube1.shxz\";\nconnectAttr \"pCube1_shearYZ.o\" \"pCube1.shyz\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \":defaultArnoldDisplayDriver.msg\" \":defaultArnoldRenderOptions.drivers\"\n\t\t -na;\nconnectAttr \":defaultArnoldFilter.msg\" \":defaultArnoldRenderOptions.filt\";\nconnectAttr \":defaultArnoldDriver.msg\" \":defaultArnoldRenderOptions.drvr\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of SkewedCubeAnim1.ma\n"
  },
  {
    "path": "maya/scenes/SmoothTetrahedron.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: SmoothTetrahedron.ma\n//Last modified: Sun, Feb 03, 2019 11:52:01 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"8D64F57A-42D9-6117-25FD-C89FB2E0CD10\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 3.7492452962506198 1.7164548567368469 -1.1852334054350022 ;\n\tsetAttr \".r\" -type \"double3\" -24.338352729640373 108.19999999998115 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"59353843-4B1F-9C6E-2ECF-CC968828FA2E\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 4.1648955875251819;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.14433754980564117 0 -4.4703483581542969e-08 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"C352DCCA-48CF-E34F-EEDF-F2BB51E5DE29\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"9B13BA9D-4CC4-2ADA-FC54-8D8CC1577D23\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"F9825782-4FD6-13B1-2297-F6BBDA8DC6A3\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"AF3452AD-4B95-A466-B836-4A85BBDB3F19\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"E35B612A-4538-0992-AA0A-1D828E5EED2E\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"54559FDD-4D4A-4998-A2C2-E8ABED71785D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pPyramid1\";\n\trename -uid \"2E2DAA54-4557-5B1F-DAD3-9F8493341243\";\ncreateNode mesh -n \"pPyramidShape1\" -p \"pPyramid1\";\n\trename -uid \"47349536-4B6C-885A-102E-B2AE5FCA8311\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcol\" yes;\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".ccls\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clst[0].clsn\" -type \"string\" \"colorSet1\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ns\" 0.2;\n\tsetAttr \".ndt\" 2;\n\tsetAttr \".dn\" yes;\n\tsetAttr \".dtn\" yes;\ncreateNode transform -n \"camera1\";\n\trename -uid \"D7F6416C-4A47-CB31-5D0D-B0A32CCFC339\";\n\tsetAttr \".t\" -type \"double3\" -0.19688106280519174 1.3745937140626761 1.9224811177749277 ;\n\tsetAttr \".r\" -type \"double3\" -40.999788337390335 -6.1999999999999362 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"3BD3DD31-40AD-F602-22AB-BA8EE2F48D16\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 2.3720561008834511;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.14433754980564115 0 -4.4703483581542969e-08 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"45CF963C-476C-BB9C-6A11-5BABADFA6D9A\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"1A7C9D90-498C-F0B7-23E3-4A93F4DBA0D4\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"8D48D134-42ED-1CC6-CDF9-E48D79B12631\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"6B4C1FC6-486F-8D18-45C7-B89B4CC68A11\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"5945F09A-4525-5164-34AD-488623A74E6E\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"3B8FC416-4E62-A39E-BB0C-898C834E5A7C\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"AB8DF808-45AE-8BBE-383A-908CE3D7BF22\";\n\tsetAttr \".g\" yes;\ncreateNode polyPyramid -n \"polyPyramid1\";\n\trename -uid \"6E04EEC0-4A86-974D-F1E0-8191E23F8B31\";\n\tsetAttr \".ns\" 3;\n\tsetAttr \".cuv\" 3;\ncreateNode polyNormalPerVertex -n \"polyNormalPerVertex1\";\n\trename -uid \"7DF0D8B8-4E76-2364-135C-9E8A83C77C84\";\n\tsetAttr \".uopa\" yes;\n\tsetAttr -s 4 \".vn\";\n\tsetAttr \".vn[0].nxyz\" -type \"float3\" -0.47140449 -0.33333337 -0.81649661 ;\n\tsetAttr \".vn[1].nxyz\" -type \"float3\" -0.47140449 -0.33333343 0.81649655 ;\n\tsetAttr \".vn[2].nxyz\" -type \"float3\" 0.9428091 -0.33333337 1.1920928e-07 ;\n\tsetAttr \".vn[3].nxyz\" -type \"float3\" 5.9604652e-08 1 5.9604652e-08 ;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"7259A08F-4B12-229B-8BD4-FB902C3A621C\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 1 -size 10 -divisions 4 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"75AA3758-4D79-9EA9-56D8-468192FD4D91\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode polyColorPerVertex -n \"polyColorPerVertex1\";\n\trename -uid \"E649C56C-4F66-E345-4D1C-E986DDE2C9CA\";\n\tsetAttr \".uopa\" yes;\n\tsetAttr -s 4 \".vclr\";\n\tsetAttr \".vclr[0].vxal\" 1;\n\tsetAttr -s 2 \".vclr[0].vfcl\";\n\tsetAttr \".vclr[0].vfcl[1].frgb\" -type \"float3\" 0.26989999 0.2599 0.68400002 ;\n\tsetAttr \".vclr[0].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[0].vfcl[3].frgb\" -type \"float3\" 0.54930001 0.68400002 0.2599 ;\n\tsetAttr \".vclr[0].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[1].vxal\" 1;\n\tsetAttr -s 2 \".vclr[1].vfcl\";\n\tsetAttr \".vclr[1].vfcl[1].frgb\" -type \"float3\" 0.26989999 0.2599 0.68400002 ;\n\tsetAttr \".vclr[1].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[1].vfcl[2].frgb\" -type \"float3\" 0.2599 0.68400002 0.44949999 ;\n\tsetAttr \".vclr[1].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[2].vxal\" 1;\n\tsetAttr -s 2 \".vclr[2].vfcl\";\n\tsetAttr \".vclr[2].vfcl[2].frgb\" -type \"float3\" 0.2599 0.68400002 0.44949999 ;\n\tsetAttr \".vclr[2].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[2].vfcl[3].frgb\" -type \"float3\" 0.54930001 0.68400002 0.2599 ;\n\tsetAttr \".vclr[2].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[3].vxal\" 1;\n\tsetAttr -s 3 \".vclr[3].vfcl\";\n\tsetAttr \".vclr[3].vfcl[1].frgb\" -type \"float3\" 0.26989999 0.2599 0.68400002 ;\n\tsetAttr \".vclr[3].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[3].vfcl[2].frgb\" -type \"float3\" 0.2599 0.68400002 0.44949999 ;\n\tsetAttr \".vclr[3].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[3].vfcl[3].frgb\" -type \"float3\" 0.54930001 0.68400002 0.2599 ;\n\tsetAttr \".vclr[3].vfcl[3].vfal\" 1;\n\tsetAttr \".cn\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clam\" no;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"1FED6CFC-4B91-4595-E970-E8A59E744362\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"polyColorPerVertex1.out\" \"pPyramidShape1.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"polyPyramid1.out\" \"polyNormalPerVertex1.ip\";\nconnectAttr \"polyNormalPerVertex1.out\" \"polyColorPerVertex1.ip\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pPyramidShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of SmoothTetrahedron.ma\n"
  },
  {
    "path": "maya/scenes/SmoothTetrahedronSingleFace.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: SmoothTetrahedronSingleFace.ma\n//Last modified: Sun, Feb 03, 2019 11:52:22 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"8D64F57A-42D9-6117-25FD-C89FB2E0CD10\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -2.6838400649356773 0.84066943214652057 0.12842674928466646 ;\n\tsetAttr \".r\" -type \"double3\" -16.538352729580396 -87.399999999977084 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"59353843-4B1F-9C6E-2ECF-CC968828FA2E\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 2.9532705863303499;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.14433754980564117 0 -4.4703483581542969e-08 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"C352DCCA-48CF-E34F-EEDF-F2BB51E5DE29\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"9B13BA9D-4CC4-2ADA-FC54-8D8CC1577D23\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"F9825782-4FD6-13B1-2297-F6BBDA8DC6A3\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"AF3452AD-4B95-A466-B836-4A85BBDB3F19\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"E35B612A-4538-0992-AA0A-1D828E5EED2E\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"54559FDD-4D4A-4998-A2C2-E8ABED71785D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pPyramid1\";\n\trename -uid \"2E2DAA54-4557-5B1F-DAD3-9F8493341243\";\ncreateNode mesh -n \"pPyramidShape1\" -p \"pPyramid1\";\n\trename -uid \"47349536-4B6C-885A-102E-B2AE5FCA8311\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ns\" 0.2;\n\tsetAttr \".ndt\" 2;\n\tsetAttr \".dn\" yes;\n\tsetAttr \".dtn\" yes;\ncreateNode transform -n \"camera1\";\n\trename -uid \"006C660E-4CA8-1C56-90D8-0893F9605CF7\";\n\tsetAttr \".t\" -type \"double3\" -2.2173707050476734 1.5429806828368926 1.3054585861087831 ;\n\tsetAttr \".r\" -type \"double3\" -147.79602074292541 122.19999999999843 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"F457BE5A-48B2-E0A3-E05D-FD981DB3256E\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 2.8952509327415088;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" -0.14433757960796356 0 -4.4703483581542969e-08 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"CB5DF895-4D4D-C383-5A1B-C1B05A3CC4C0\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"12601C44-49D0-0D03-645F-4EB52B148EDA\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"05F0B76D-470D-73C7-8105-B28D5B0C8BF2\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"7332A1EF-4FF9-3722-CE21-6ABF558B09C7\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"5945F09A-4525-5164-34AD-488623A74E6E\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"B0B4EDE3-4C77-49E8-E4B7-EE9A96CE2CB8\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"AB8DF808-45AE-8BBE-383A-908CE3D7BF22\";\n\tsetAttr \".g\" yes;\ncreateNode polyPyramid -n \"polyPyramid1\";\n\trename -uid \"6E04EEC0-4A86-974D-F1E0-8191E23F8B31\";\n\tsetAttr \".ns\" 3;\n\tsetAttr \".cuv\" 3;\ncreateNode polyNormalPerVertex -n \"polyNormalPerVertex1\";\n\trename -uid \"7DF0D8B8-4E76-2364-135C-9E8A83C77C84\";\n\tsetAttr \".uopa\" yes;\n\tsetAttr -s 4 \".vn\";\n\tsetAttr \".vn[0].nxyz\" -type \"float3\" -0.47140449 -0.33333337 -0.81649661 ;\n\tsetAttr \".vn[1].nxyz\" -type \"float3\" -0.47140449 -0.33333343 0.81649655 ;\n\tsetAttr \".vn[2].nxyz\" -type \"float3\" 0.9428091 -0.33333337 1.1920928e-07 ;\n\tsetAttr \".vn[3].nxyz\" -type \"float3\" 5.9604652e-08 1 5.9604652e-08 ;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"7259A08F-4B12-229B-8BD4-FB902C3A621C\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 1 -size 10 -divisions 4 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"75AA3758-4D79-9EA9-56D8-468192FD4D91\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode deleteComponent -n \"deleteComponent1\";\n\trename -uid \"1814B255-4F95-D56F-8CB8-D7880345A013\";\n\tsetAttr \".dc\" -type \"componentList\" 2 \"f[0]\" \"f[2:3]\";\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"B7191BDD-4A0B-DD4C-D491-9B9A7B52A289\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"deleteComponent1.og\" \"pPyramidShape1.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"polyPyramid1.out\" \"polyNormalPerVertex1.ip\";\nconnectAttr \"polyNormalPerVertex1.out\" \"deleteComponent1.ig\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pPyramidShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of SmoothTetrahedronSingleFace.ma\n"
  },
  {
    "path": "maya/scenes/StepScalingTest.ma",
    "content": "//Maya ASCII 2018 scene\n//Name: StepScalingTest.ma\n//Last modified: Mon, Mar 15, 2021 09:35:28 PM\n//Codeset: 1252\nrequires maya \"2018\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201706261615-f9658c4cfc\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"C2A667B5-45AD-EF16-F807-258D24EE2F26\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 6.8956951157617734 5.1717713368213012 6.895695115761745 ;\n\tsetAttr \".r\" -type \"double3\" -27.938352729602379 44.999999999999972 -5.172681101354183e-14 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"46D809A6-4791-37F1-A8EC-A68DDBE65F66\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 11.038498132420269;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"A41441FD-4CB8-CAC4-7DD2-2EA9C6F90BA7\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"AF30595F-4F44-D025-95E9-6AB536DD1B2B\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"F0F01D75-40FA-D4BA-38FF-2B9E36029C7D\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"F06DD706-4783-A3AC-B700-3889CB03D04D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"74DED6DF-44F4-9E8E-FC67-D88C2270B3F1\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"C47FC0B7-456D-89FE-D9A9-F4B1FF67C3AF\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"1FCB1A45-402F-72B2-2A25-F9A0BF8E2AAE\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"132729B7-4A9B-39F7-4711-D7A1CBC94AEA\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 2 \".iog\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"FA267B0E-4497-6F27-11E7-F481C4DA52E7\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"08B8E564-4A3A-D445-0B73-F0AE52440641\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"16468A35-4313-8D47-2D57-11882EA92CAE\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"2A6D8178-4889-9EAA-5F9B-8D9CFB51328D\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"A36E928A-49DE-F124-1ACD-3BB2BB648FB9\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"B4C1103B-4D56-2F4A-657D-29860F956A91\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"35959593-4777-26F3-83B2-28B18152A596\";\n\tsetAttr \".g\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"829004E7-497E-2814-CCA9-5BB0565CC090\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n\"\n\t\t+ \"            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n\"\n\t\t+ \"            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n\"\n\t\t+ \"            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 765\\n            -height 716\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 1\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 1\\n            -showReferenceMembers 1\\n\"\n\t\t+ \"            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n\"\n\t\t+ \"            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n\"\n\t\t+ \"            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n\"\n\t\t+ \"                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n\"\n\t\t+ \"                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n\"\n\t\t+ \"                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n\"\n\t\t+ \"                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n\"\n\t\t+ \"                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n\"\n\t\t+ \"                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n\"\n\t\t+ \"            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n\"\n\t\t+ \"                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\"\n\t\t+ \"\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\"\n\t\t+ \"\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n\"\n\t\t+ \"                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n\"\n\t\t+ \"                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n\"\n\t\t+ \"                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -highlightConnections 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n\"\n\t\t+ \"                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -activeTab -1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -cam `findStartUpCamera persp` \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 765\\\\n    -height 716\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -cam `findStartUpCamera persp` \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 765\\\\n    -height 716\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"F6910FE0-4C28-1ACA-9E54-E4A9A36F92A2\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 10 -ast 1 -aet 10 \";\n\tsetAttr \".st\" 6;\ncreateNode animCurveTU -n \"pCubeShape1_visibility\";\n\trename -uid \"CECC3191-4AA8-5D15-BA7D-18ADF4570051\";\n\tsetAttr \".tan\" 9;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 1 6 0;\n\tsetAttr -s 2 \".kot[0:1]\"  5 5;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"2F41C4C7-4005-0152-0444-05BC1C89B269\";\n\tsetAttr \".cuv\" 4;\ncreateNode nodeGraphEditorInfo -n \"MayaNodeEditorSavedTabsInfo\";\n\trename -uid \"F82171F1-4D1A-0281-18D2-92B5E13C3802\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -521.42855070886242 -281.27031890384217 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 515.47616999300772 306.27031791043146 ;\n\tsetAttr -s 2 \".tgi[0].ni\";\n\tsetAttr \".tgi[0].ni[0].x\" -398.4149169921875;\n\tsetAttr \".tgi[0].ni[0].y\" 277.29669189453125;\n\tsetAttr \".tgi[0].ni[0].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[1].x\" 120.05679321289063;\n\tsetAttr \".tgi[0].ni[1].y\" 185.27647399902344;\n\tsetAttr \".tgi[0].ni[1].nvs\" 18306;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"5B844CEA-4E94-DC43-6110-ABAC35393610\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\taddAttr -ci true -sn \"selOnly\" -ln \"selOnly\" -at \"long\";\n\taddAttr -ci true -sn \"visOnly\" -ln \"visOnly\" -at \"long\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/scenes/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"StepScalingTest\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2021 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"-dsa 2\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 2;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\n\tsetAttr \".selOnly\" 1;\n\tsetAttr \".visOnly\" 1;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"pCubeShape1.v\" \"pCube1.sx\";\nconnectAttr \"pCubeShape1.v\" \"pCube1.sy\";\nconnectAttr \"pCubeShape1.v\" \"pCube1.sz\";\nconnectAttr \"pCubeShape1_visibility.o\" \"pCubeShape1.v\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"pCubeShape1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[0].dn\";\nconnectAttr \"pCube1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[1].dn\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of StepScalingTest.ma\n"
  },
  {
    "path": "maya/scenes/TranparentCube1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: TranparentCube1.ma\n//Last modified: Sun, Feb 03, 2019 11:52:31 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\nrequires -nodeType \"GLSLShader\" \"glslShader\" \"1.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"91A49AC7-4AA1-EC2A-D89C-378DF9FB5D02\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 2.2378609651842964 2.6487957764693313 1.6619822255864183 ;\n\tsetAttr \".r\" -type \"double3\" -43.538352729603332 53.400000000001832 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"FFAE7AF8-4E5E-CCC1-9417-A38FE974CBA6\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 3.8452991669181271;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"82A7F235-45AE-C1F0-235D-6A94AD440FAD\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"3B63DA8C-46E8-35C8-64F7-C1A20886B5C9\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"ED75D7BB-4256-C404-AF6A-E4AAF8DDC015\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"BC04DACA-42B2-8198-3909-2185B11BD67A\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"29BA0F54-42FD-2313-D9DF-F88E326534AF\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"313F234A-40FB-4201-F9AE-3B97FFFA4072\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"7A4E48BF-42BC-9CA0-AB5D-4FBD89134EA1\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"5B90D714-4467-66EB-D33D-C688DA24FA78\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pCube2\";\n\trename -uid \"AE4F16BC-4D8F-E73B-75C2-849D5264A14C\";\ncreateNode mesh -n \"pCubeShape2\" -p \"pCube2\";\n\trename -uid \"0C2D934F-4D2D-AB35-B4D4-4C9E0E7249D2\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"ED9038F8-4FF0-0558-983B-10A585F22EF4\";\n\tsetAttr \".t\" -type \"double3\" 1.2409029228326154 2.0559679015644923 2.6611249056950825 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"CB31E8A6-4030-51DC-3E54-96876974BC03\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 3.5844706498824461;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"BCCD08F2-466D-B874-5A64-77A9DBE3106B\";\n\tsetAttr -s 4 \".lnk\";\n\tsetAttr -s 4 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"EB294497-4914-3935-AEB2-B68DBD55ABF4\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"EBD9CC3E-4AF1-3E1C-7444-69BDFF725E55\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"5BE35CE3-45ED-6BED-ECC2-5AB4FC37D0EC\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"CE8F092A-4E35-EF37-9CB7-CBBE989014C3\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"C419F67A-498E-DED1-5BD9-4F9712CE17A4\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"0048BD2C-4708-B8B1-1D12-DF9B9F477883\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"40544E7B-471C-02DE-37F6-23845D4EAABA\";\n\tsetAttr \".cuv\" 4;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"3577C3C5-4458-7E2F-E308-79AF2BB2BFE2\";\n\tsetAttr \".st\" 2;\ncreateNode GLSLShader -n \"GLSLShader1\";\n\trename -uid \"5458EB74-4975-BC2D-D711-2AABEF7A1659\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Name\" -ln \"u_LightColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Type\" -ln \"u_LightColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_LightColor\" -ln \"u_LightColor\" -nn \"Light Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_LightColorR\" -ln \"u_LightColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorG\" -ln \"u_LightColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorB\" -ln \"u_LightColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Name\" -ln \"u_LightIntensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Type\" -ln \"u_LightIntensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightIntensity\" -ln \"u_LightIntensity\" -nn \"Light Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 10 -smn 0 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Name\" -ln \"u_LightRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Type\" -ln \"u_LightRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightRotation\" -ln \"u_LightRotation\" -nn \"Light rotation (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 75 -min 0 -max 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Name\" -ln \"u_LightPitch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Type\" -ln \"u_LightPitch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightPitch\" -ln \"u_LightPitch\" -nn \"Light pitch (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 40 -min -90 -max 90 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Name\" -ln \"u_BaseColorTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Type\" -ln \"u_BaseColorTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorTexture\" -ln \"u_BaseColorTexture\" \n\t\t-nn \"Base color map (sRGB)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureR\" -ln \"u_BaseColorTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureG\" -ln \"u_BaseColorTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureB\" -ln \"u_BaseColorTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Name\" -ln \"u_BaseColorFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Type\" -ln \"u_BaseColorFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactor\" -ln \"u_BaseColorFactor\" -nn \"Base color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorFactorRGB\" -ln \"u_BaseColorFactorRGB\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_BaseColorFactor\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorR\" -ln \"u_BaseColorFactorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorG\" -ln \"u_BaseColorFactorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorB\" -ln \"u_BaseColorFactorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorA\" -ln \"u_BaseColorFactorA\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactor\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Name\" -ln \"u_MetallicTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Type\" -ln \"u_MetallicTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_MetallicTexture\" -ln \"u_MetallicTexture\" -nn \"Metallic map (B,LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_MetallicTextureR\" -ln \"u_MetallicTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureG\" -ln \"u_MetallicTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureB\" -ln \"u_MetallicTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Name\" -ln \"u_MetallicStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Type\" -ln \"u_MetallicStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_MetallicStrength\" -ln \"u_MetallicStrength\" -nn \"Metallic strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Name\" -ln \"u_RoughnessTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Type\" -ln \"u_RoughnessTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_RoughnessTexture\" -ln \"u_RoughnessTexture\" \n\t\t-nn \"Roughness map (G,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureR\" -ln \"u_RoughnessTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureG\" -ln \"u_RoughnessTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureB\" -ln \"u_RoughnessTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Name\" -ln \"u_RoughnessStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Type\" -ln \"u_RoughnessStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessStrength\" -ln \"u_RoughnessStrength\" -nn \"Roughness strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Name\" -ln \"u_OcclusionTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Type\" -ln \"u_OcclusionTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_OcclusionTexture\" -ln \"u_OcclusionTexture\" \n\t\t-nn \"Occlusion map (R,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureR\" -ln \"u_OcclusionTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureG\" -ln \"u_OcclusionTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureB\" -ln \"u_OcclusionTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Name\" -ln \"u_OcclusionStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Type\" -ln \"u_OcclusionStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_OcclusionStrength\" -ln \"u_OcclusionStrength\" -nn \"Occlusion strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Name\" -ln \"u_NormalTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Type\" -ln \"u_NormalTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_NormalTexture\" -ln \"u_NormalTexture\" -nn \"Normal map (LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_NormalTextureR\" -ln \"u_NormalTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureG\" -ln \"u_NormalTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureB\" -ln \"u_NormalTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Name\" -ln \"u_NormalScale_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Type\" -ln \"u_NormalScale_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_NormalScale\" -ln \"u_NormalScale\" -nn \"Normal scale\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Name\" -ln \"u_EmissiveTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Type\" -ln \"u_EmissiveTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveTexture\" -ln \"u_EmissiveTexture\" -nn \"Emissive map (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureR\" -ln \"u_EmissiveTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureG\" -ln \"u_EmissiveTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureB\" -ln \"u_EmissiveTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Name\" -ln \"u_EmissiveColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Type\" -ln \"u_EmissiveColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveColor\" -ln \"u_EmissiveColor\" -nn \"Emissive color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveColorR\" -ln \"u_EmissiveColorR\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorG\" -ln \"u_EmissiveColorG\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorB\" -ln \"u_EmissiveColorB\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Name\" -ln \"u_DiffuseEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Type\" -ln \"u_DiffuseEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_DiffuseEnvTexture\" -ln \"u_DiffuseEnvTexture\" \n\t\t-nn \"Diffuse env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureR\" -ln \"u_DiffuseEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureG\" -ln \"u_DiffuseEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureB\" -ln \"u_DiffuseEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Name\" -ln \"u_SpecularEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Type\" -ln \"u_SpecularEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_SpecularEnvTexture\" -ln \"u_SpecularEnvTexture\" \n\t\t-nn \"Specular env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureR\" -ln \"u_SpecularEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureG\" -ln \"u_SpecularEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureB\" -ln \"u_SpecularEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Name\" -ln \"u_brdfTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Type\" -ln \"u_brdfTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_brdfTexture\" -ln \"u_brdfTexture\" -nn \"BRDF LUT (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_brdfTextureR\" -ln \"u_brdfTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureG\" -ln \"u_brdfTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureB\" -ln \"u_brdfTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Name\" -ln \"u_UseMeshTangents_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Type\" -ln \"u_UseMeshTangents_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UseMeshTangents\" -ln \"u_UseMeshTangents\" -nn \"Use mesh tangents?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Name\" -ln \"u_ScaleDiffBaseMR_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Type\" -ln \"u_ScaleDiffBaseMR_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMR\" -ln \"u_ScaleDiffBaseMR\" -nn \"Scale Diff Base MR\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRXYZ\" -ln \"u_ScaleDiffBaseMRXYZ\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_ScaleDiffBaseMR\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRX\" -ln \"u_ScaleDiffBaseMRX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRY\" -ln \"u_ScaleDiffBaseMRY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRZ\" -ln \"u_ScaleDiffBaseMRZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRW\" -ln \"u_ScaleDiffBaseMRW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMR\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Name\" -ln \"u_ScaleFGDSpec_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Type\" -ln \"u_ScaleFGDSpec_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpec\" -ln \"u_ScaleFGDSpec\" -nn \"Scale FGD Spec\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecXYZ\" -ln \"u_ScaleFGDSpecXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleFGDSpec\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecX\" -ln \"u_ScaleFGDSpecX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecY\" -ln \"u_ScaleFGDSpecY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecZ\" -ln \"u_ScaleFGDSpecZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecW\" -ln \"u_ScaleFGDSpecW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpec\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Name\" -ln \"u_ScaleIBL_Occl_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Type\" -ln \"u_ScaleIBL_Occl_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_Occl\" -ln \"u_ScaleIBL_Occl\" -nn \"Scale IBL AO(w)\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclXYZ\" -ln \"u_ScaleIBL_OcclXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleIBL_Occl\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclX\" -ln \"u_ScaleIBL_OcclX\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclY\" -ln \"u_ScaleIBL_OcclY\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclZ\" -ln \"u_ScaleIBL_OcclZ\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclW\" -ln \"u_ScaleIBL_OcclW\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_Occl\";\n\taddAttr -ci true -sn \"Position\" -ln \"Position\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Position_Name\" -ln \"Position_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"Position_Source\" -ln \"Position_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -sn \"Position_DefaultTexture\" -ln \"Position_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Position\";\n\taddAttr -ci true -sn \"Normal\" -ln \"Normal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Normal_Name\" -ln \"Normal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Source\" -ln \"Normal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -sn \"Normal_DefaultTexture\" -ln \"Normal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Normal\";\n\taddAttr -ci true -sn \"Tangent\" -ln \"Tangent\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Tangent_Name\" -ln \"Tangent_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"Tangent_Source\" -ln \"Tangent_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -sn \"Tangent_DefaultTexture\" -ln \"Tangent_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Tangent\";\n\taddAttr -ci true -sn \"Binormal\" -ln \"Binormal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Binormal_Name\" -ln \"Binormal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -h true -sn \"Binormal_Source\" -ln \"Binormal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -sn \"Binormal_DefaultTexture\" -ln \"Binormal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Binormal\";\n\taddAttr -ci true -sn \"TexCoord0\" -ln \"TexCoord0\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Name\" -ln \"TexCoord0_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Source\" -ln \"TexCoord0_Source\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -sn \"TexCoord0_DefaultTexture\" -ln \"TexCoord0_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -s false -is true -ci true -k true -sn \"te\" -ln \"techniqueEnum\" -nn \"Technique\" \n\t\t-min 0 -max 1 -en \"Solid:Transparent\" -at \"enum\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Name\" -ln \"u_IsDoubleSided_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Type\" -ln \"u_IsDoubleSided_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsDoubleSided\" -ln \"u_IsDoubleSided\" -nn \"Double sided material?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Name\" -ln \"u_RoughnessOffset_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Type\" -ln \"u_RoughnessOffset_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessOffset\" -ln \"u_RoughnessOffset\" -nn \"Roughness offset\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 12 -smn 0 -smx 12 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Name\" -ln \"u_BurleyFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Type\" -ln \"u_BurleyFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BurleyFactor\" -ln \"u_BurleyFactor\" -nn \"Burley factor\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Name\" -ln \"u_UndoEdgeStretch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Type\" -ln \"u_UndoEdgeStretch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UndoEdgeStretch\" -ln \"u_UndoEdgeStretch\" -nn \"Undo edge stretch?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Name\" -ln \"u_IsEmissiveInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Type\" -ln \"u_IsEmissiveInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEmissiveInsRGB\" -ln \"u_IsEmissiveInsRGB\" -nn \"sRGB emissive?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Name\" -ln \"u_EnvRotationAngle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Type\" -ln \"u_EnvRotationAngle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_EnvRotationAngle\" -ln \"u_EnvRotationAngle\" -nn \"Environment Rotation\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Name\" -ln \"u_FlipEnvMapZ_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Type\" -ln \"u_FlipEnvMapZ_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_FlipEnvMapZ\" -ln \"u_FlipEnvMapZ\" -nn \"Flip environment Z?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Name\" -ln \"u_IsEnvMapInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Type\" -ln \"u_IsEnvMapInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInsRGB\" -ln \"u_IsEnvMapInsRGB\" -nn \"sRGB environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Name\" -ln \"u_IsEnvMapInRGBM_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Type\" -ln \"u_IsEnvMapInRGBM_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInRGBM\" -ln \"u_IsEnvMapInRGBM\" -nn \"RGBM environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Name\" -ln \"u_IsBRDFsSRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Type\" -ln \"u_IsBRDFsSRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBRDFsSRGB\" -ln \"u_IsBRDFsSRGB\" -nn \"sRGB BRDF table?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Name\" -ln \"u_IsBaseColorInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Type\" -ln \"u_IsBaseColorInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBaseColorInsRGB\" -ln \"u_IsBaseColorInsRGB\" -nn \"sRGB basecolor?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\tsetAttr \".vpar\" -type \"stringArray\" 5 \"Position\" \"Normal\" \"Tangent\" \"Binormal\" \"TexCoord0\"  ;\n\tsetAttr \".upar\" -type \"stringArray\" 34 \"u_LightColor\" \"u_LightIntensity\" \"u_LightRotation\" \"u_LightPitch\" \"u_BaseColorTexture\" \"u_BaseColorFactor\" \"u_MetallicTexture\" \"u_MetallicStrength\" \"u_RoughnessTexture\" \"u_RoughnessStrength\" \"u_OcclusionTexture\" \"u_OcclusionStrength\" \"u_NormalTexture\" \"u_NormalScale\" \"u_EmissiveTexture\" \"u_EmissiveColor\" \"u_DiffuseEnvTexture\" \"u_SpecularEnvTexture\" \"u_brdfTexture\" \"u_IsDoubleSided\" \"u_UseMeshTangents\" \"u_RoughnessOffset\" \"u_ScaleDiffBaseMR\" \"u_BurleyFactor\" \"u_ScaleFGDSpec\" \"u_UndoEdgeStretch\" \"u_ScaleIBL_Occl\" \"u_IsEmissiveInsRGB\" \"u_EnvRotationAngle\" \"u_FlipEnvMapZ\" \"u_IsEnvMapInsRGB\" \"u_IsEnvMapInRGBM\" \"u_IsBRDFsSRGB\" \"u_IsBaseColorInsRGB\"  ;\n\tsetAttr \".s\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/shaders/glTF_PBR.ogsfx\";\n\tsetAttr \".t\" -type \"string\" \"Solid\";\n\tsetAttr \".u_LightColor_Name\" -type \"string\" \"u_LightColor\";\n\tsetAttr \".u_LightColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_LightColor\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_LightIntensity_Name\" -type \"string\" \"u_LightIntensity\";\n\tsetAttr \".u_LightIntensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightIntensity\" 1;\n\tsetAttr \".u_LightRotation_Name\" -type \"string\" \"u_LightRotation\";\n\tsetAttr \".u_LightRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightRotation\" 75;\n\tsetAttr \".u_LightPitch_Name\" -type \"string\" \"u_LightPitch\";\n\tsetAttr \".u_LightPitch_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightPitch\" 40;\n\tsetAttr \".u_BaseColorTexture_Name\" -type \"string\" \"u_BaseColorTexture\";\n\tsetAttr \".u_BaseColorTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_BaseColorTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_BaseColorFactor_Name\" -type \"string\" \"u_BaseColorFactor\";\n\tsetAttr \".u_BaseColorFactor_Type\" -type \"string\" \"color4x1\";\n\tsetAttr \".u_BaseColorFactorRGB\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_BaseColorFactorA\" 1;\n\tsetAttr \".u_MetallicTexture_Name\" -type \"string\" \"u_MetallicTexture\";\n\tsetAttr \".u_MetallicTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_MetallicTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_MetallicStrength_Name\" -type \"string\" \"u_MetallicStrength\";\n\tsetAttr \".u_MetallicStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_MetallicStrength\" 0;\n\tsetAttr \".u_RoughnessTexture_Name\" -type \"string\" \"u_RoughnessTexture\";\n\tsetAttr \".u_RoughnessTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_RoughnessTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_RoughnessStrength_Name\" -type \"string\" \"u_RoughnessStrength\";\n\tsetAttr \".u_RoughnessStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_RoughnessStrength\" 1;\n\tsetAttr \".u_OcclusionTexture_Name\" -type \"string\" \"u_OcclusionTexture\";\n\tsetAttr \".u_OcclusionTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_OcclusionTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_OcclusionStrength_Name\" -type \"string\" \"u_OcclusionStrength\";\n\tsetAttr \".u_OcclusionStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_OcclusionStrength\" 1;\n\tsetAttr \".u_NormalTexture_Name\" -type \"string\" \"u_NormalTexture\";\n\tsetAttr \".u_NormalTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_NormalTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_NormalScale_Name\" -type \"string\" \"u_NormalScale\";\n\tsetAttr \".u_NormalScale_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_NormalScale\" 1;\n\tsetAttr \".u_EmissiveTexture_Name\" -type \"string\" \"u_EmissiveTexture\";\n\tsetAttr \".u_EmissiveTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_EmissiveTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_EmissiveColor_Name\" -type \"string\" \"u_EmissiveColor\";\n\tsetAttr \".u_EmissiveColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_EmissiveColor\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_DiffuseEnvTexture_Name\" -type \"string\" \"u_DiffuseEnvTexture\";\n\tsetAttr \".u_DiffuseEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_DiffuseEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_SpecularEnvTexture_Name\" -type \"string\" \"u_SpecularEnvTexture\";\n\tsetAttr \".u_SpecularEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_SpecularEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_brdfTexture_Name\" -type \"string\" \"u_brdfTexture\";\n\tsetAttr \".u_brdfTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_brdfTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_UseMeshTangents_Name\" -type \"string\" \"u_UseMeshTangents\";\n\tsetAttr \".u_UseMeshTangents_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UseMeshTangents\" no;\n\tsetAttr \".u_ScaleDiffBaseMR_Name\" -type \"string\" \"u_ScaleDiffBaseMR\";\n\tsetAttr \".u_ScaleDiffBaseMR_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleDiffBaseMRXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleDiffBaseMRW\" 0;\n\tsetAttr \".u_ScaleFGDSpec_Name\" -type \"string\" \"u_ScaleFGDSpec\";\n\tsetAttr \".u_ScaleFGDSpec_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleFGDSpecXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleFGDSpecW\" 0;\n\tsetAttr \".u_ScaleIBL_Occl_Name\" -type \"string\" \"u_ScaleIBL_Occl\";\n\tsetAttr \".u_ScaleIBL_Occl_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleIBL_OcclXYZ\" -type \"float3\" 1 1 0 ;\n\tsetAttr \".u_ScaleIBL_OcclW\" 1;\n\tsetAttr \".Position_Name\" -type \"string\" \"Position\";\n\tsetAttr \".Position_Source\" -type \"string\" \"position\";\n\tsetAttr \".Normal_Name\" -type \"string\" \"Normal\";\n\tsetAttr \".Normal_Source\" -type \"string\" \"normal\";\n\tsetAttr \".Tangent_Name\" -type \"string\" \"Tangent\";\n\tsetAttr \".Tangent_Source\" -type \"string\" \"tangent:map1\";\n\tsetAttr \".Binormal_Name\" -type \"string\" \"Binormal\";\n\tsetAttr \".Binormal_Source\" -type \"string\" \"binormal:map1\";\n\tsetAttr \".TexCoord0_Name\" -type \"string\" \"TexCoord0\";\n\tsetAttr \".TexCoord0_Source\" -type \"string\" \"uv:map1\";\n\tsetAttr \".u_IsDoubleSided_Name\" -type \"string\" \"u_IsDoubleSided\";\n\tsetAttr \".u_IsDoubleSided_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsDoubleSided\" no;\n\tsetAttr \".u_RoughnessOffset_Name\" -type \"string\" \"u_RoughnessOffset\";\n\tsetAttr \".u_RoughnessOffset_Type\" -type \"string\" \"int\";\n\tsetAttr \".u_RoughnessOffset\" 0;\n\tsetAttr \".u_BurleyFactor_Name\" -type \"string\" \"u_BurleyFactor\";\n\tsetAttr \".u_BurleyFactor_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_BurleyFactor\" 0;\n\tsetAttr \".u_UndoEdgeStretch_Name\" -type \"string\" \"u_UndoEdgeStretch\";\n\tsetAttr \".u_UndoEdgeStretch_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UndoEdgeStretch\" no;\n\tsetAttr \".u_IsEmissiveInsRGB_Name\" -type \"string\" \"u_IsEmissiveInsRGB\";\n\tsetAttr \".u_IsEmissiveInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEmissiveInsRGB\" yes;\n\tsetAttr \".u_EnvRotationAngle_Name\" -type \"string\" \"u_EnvRotationAngle\";\n\tsetAttr \".u_EnvRotationAngle_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_EnvRotationAngle\" 0;\n\tsetAttr \".u_FlipEnvMapZ_Name\" -type \"string\" \"u_FlipEnvMapZ\";\n\tsetAttr \".u_FlipEnvMapZ_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_FlipEnvMapZ\" yes;\n\tsetAttr \".u_IsEnvMapInsRGB_Name\" -type \"string\" \"u_IsEnvMapInsRGB\";\n\tsetAttr \".u_IsEnvMapInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInsRGB\" no;\n\tsetAttr \".u_IsEnvMapInRGBM_Name\" -type \"string\" \"u_IsEnvMapInRGBM\";\n\tsetAttr \".u_IsEnvMapInRGBM_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInRGBM\" no;\n\tsetAttr \".u_IsBRDFsSRGB_Name\" -type \"string\" \"u_IsBRDFsSRGB\";\n\tsetAttr \".u_IsBRDFsSRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBRDFsSRGB\" no;\n\tsetAttr \".u_IsBaseColorInsRGB_Name\" -type \"string\" \"u_IsBaseColorInsRGB\";\n\tsetAttr \".u_IsBaseColorInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBaseColorInsRGB\" yes;\ncreateNode file -n \"file1\";\n\trename -uid \"8642A594-44A3-26B6-99C6-38AD25E88B45\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_diffuse_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture1\";\n\trename -uid \"2E77AC7B-4F8F-9589-AA0D-569ABA1E21AD\";\ncreateNode file -n \"file2\";\n\trename -uid \"3A847E89-4F48-D1D8-6B0B-D689B65BD8AF\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_specular_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture2\";\n\trename -uid \"A026764A-49F1-35F3-675F-358671B96DD5\";\ncreateNode file -n \"file3\";\n\trename -uid \"CA29F052-461F-BA5D-11B8-3A90CB8EE7C6\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/brdfLUT.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture3\";\n\trename -uid \"BF99A8AE-447A-1C2C-4D5C-079058789DC1\";\ncreateNode shadingEngine -n \"GLSLShader1SG\";\n\trename -uid \"ED48A847-4391-F573-DBDD-A7AB525A6F82\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"9BBBB72D-4CA9-8219-42D3-D2A985C895A1\";\ncreateNode polyCube -n \"polyCube2\";\n\trename -uid \"8F36B867-4E16-72C4-AC10-CC8C7F5ABFC9\";\n\tsetAttr \".w\" 1.1;\n\tsetAttr \".h\" 1.1;\n\tsetAttr \".d\" 1.1;\n\tsetAttr \".cuv\" 4;\ncreateNode GLSLShader -n \"GLSLShader2\";\n\trename -uid \"40EAEDAB-4DE5-2A68-8ADE-9081BECD408F\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Name\" -ln \"u_LightColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Type\" -ln \"u_LightColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_LightColor\" -ln \"u_LightColor\" -nn \"Light Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_LightColorR\" -ln \"u_LightColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorG\" -ln \"u_LightColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorB\" -ln \"u_LightColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Name\" -ln \"u_LightIntensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Type\" -ln \"u_LightIntensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightIntensity\" -ln \"u_LightIntensity\" -nn \"Light Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 10 -smn 0 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Name\" -ln \"u_LightRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Type\" -ln \"u_LightRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightRotation\" -ln \"u_LightRotation\" -nn \"Light rotation (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 75 -min 0 -max 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Name\" -ln \"u_LightPitch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Type\" -ln \"u_LightPitch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightPitch\" -ln \"u_LightPitch\" -nn \"Light pitch (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 40 -min -90 -max 90 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Name\" -ln \"u_BaseColorTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Type\" -ln \"u_BaseColorTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorTexture\" -ln \"u_BaseColorTexture\" \n\t\t-nn \"Base color map (sRGB)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureR\" -ln \"u_BaseColorTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureG\" -ln \"u_BaseColorTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureB\" -ln \"u_BaseColorTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Name\" -ln \"u_BaseColorFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Type\" -ln \"u_BaseColorFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactor\" -ln \"u_BaseColorFactor\" -nn \"Base color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorFactorRGB\" -ln \"u_BaseColorFactorRGB\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_BaseColorFactor\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorR\" -ln \"u_BaseColorFactorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorG\" -ln \"u_BaseColorFactorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorB\" -ln \"u_BaseColorFactorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorA\" -ln \"u_BaseColorFactorA\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactor\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Name\" -ln \"u_MetallicTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Type\" -ln \"u_MetallicTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_MetallicTexture\" -ln \"u_MetallicTexture\" -nn \"Metallic map (B,LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_MetallicTextureR\" -ln \"u_MetallicTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureG\" -ln \"u_MetallicTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureB\" -ln \"u_MetallicTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Name\" -ln \"u_MetallicStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Type\" -ln \"u_MetallicStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_MetallicStrength\" -ln \"u_MetallicStrength\" -nn \"Metallic strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Name\" -ln \"u_RoughnessTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Type\" -ln \"u_RoughnessTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_RoughnessTexture\" -ln \"u_RoughnessTexture\" \n\t\t-nn \"Roughness map (G,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureR\" -ln \"u_RoughnessTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureG\" -ln \"u_RoughnessTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureB\" -ln \"u_RoughnessTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Name\" -ln \"u_RoughnessStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Type\" -ln \"u_RoughnessStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessStrength\" -ln \"u_RoughnessStrength\" -nn \"Roughness strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Name\" -ln \"u_OcclusionTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Type\" -ln \"u_OcclusionTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_OcclusionTexture\" -ln \"u_OcclusionTexture\" \n\t\t-nn \"Occlusion map (R,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureR\" -ln \"u_OcclusionTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureG\" -ln \"u_OcclusionTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureB\" -ln \"u_OcclusionTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Name\" -ln \"u_OcclusionStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Type\" -ln \"u_OcclusionStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_OcclusionStrength\" -ln \"u_OcclusionStrength\" -nn \"Occlusion strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Name\" -ln \"u_NormalTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Type\" -ln \"u_NormalTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_NormalTexture\" -ln \"u_NormalTexture\" -nn \"Normal map (LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_NormalTextureR\" -ln \"u_NormalTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureG\" -ln \"u_NormalTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureB\" -ln \"u_NormalTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Name\" -ln \"u_NormalScale_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Type\" -ln \"u_NormalScale_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_NormalScale\" -ln \"u_NormalScale\" -nn \"Normal scale\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Name\" -ln \"u_EmissiveTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Type\" -ln \"u_EmissiveTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveTexture\" -ln \"u_EmissiveTexture\" -nn \"Emissive map (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureR\" -ln \"u_EmissiveTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureG\" -ln \"u_EmissiveTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureB\" -ln \"u_EmissiveTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Name\" -ln \"u_EmissiveColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Type\" -ln \"u_EmissiveColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveColor\" -ln \"u_EmissiveColor\" -nn \"Emissive color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveColorR\" -ln \"u_EmissiveColorR\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorG\" -ln \"u_EmissiveColorG\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorB\" -ln \"u_EmissiveColorB\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Name\" -ln \"u_DiffuseEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Type\" -ln \"u_DiffuseEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_DiffuseEnvTexture\" -ln \"u_DiffuseEnvTexture\" \n\t\t-nn \"Diffuse env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureR\" -ln \"u_DiffuseEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureG\" -ln \"u_DiffuseEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureB\" -ln \"u_DiffuseEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Name\" -ln \"u_SpecularEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Type\" -ln \"u_SpecularEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_SpecularEnvTexture\" -ln \"u_SpecularEnvTexture\" \n\t\t-nn \"Specular env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureR\" -ln \"u_SpecularEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureG\" -ln \"u_SpecularEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureB\" -ln \"u_SpecularEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Name\" -ln \"u_brdfTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Type\" -ln \"u_brdfTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_brdfTexture\" -ln \"u_brdfTexture\" -nn \"BRDF LUT (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_brdfTextureR\" -ln \"u_brdfTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureG\" -ln \"u_brdfTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureB\" -ln \"u_brdfTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Name\" -ln \"u_UseMeshTangents_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Type\" -ln \"u_UseMeshTangents_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UseMeshTangents\" -ln \"u_UseMeshTangents\" -nn \"Use mesh tangents?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Name\" -ln \"u_ScaleDiffBaseMR_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Type\" -ln \"u_ScaleDiffBaseMR_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMR\" -ln \"u_ScaleDiffBaseMR\" -nn \"Scale Diff Base MR\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRXYZ\" -ln \"u_ScaleDiffBaseMRXYZ\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_ScaleDiffBaseMR\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRX\" -ln \"u_ScaleDiffBaseMRX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRY\" -ln \"u_ScaleDiffBaseMRY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRZ\" -ln \"u_ScaleDiffBaseMRZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRW\" -ln \"u_ScaleDiffBaseMRW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMR\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Name\" -ln \"u_ScaleFGDSpec_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Type\" -ln \"u_ScaleFGDSpec_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpec\" -ln \"u_ScaleFGDSpec\" -nn \"Scale FGD Spec\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecXYZ\" -ln \"u_ScaleFGDSpecXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleFGDSpec\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecX\" -ln \"u_ScaleFGDSpecX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecY\" -ln \"u_ScaleFGDSpecY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecZ\" -ln \"u_ScaleFGDSpecZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecW\" -ln \"u_ScaleFGDSpecW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpec\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Name\" -ln \"u_ScaleIBL_Occl_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Type\" -ln \"u_ScaleIBL_Occl_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_Occl\" -ln \"u_ScaleIBL_Occl\" -nn \"Scale IBL AO(w)\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclXYZ\" -ln \"u_ScaleIBL_OcclXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleIBL_Occl\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclX\" -ln \"u_ScaleIBL_OcclX\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclY\" -ln \"u_ScaleIBL_OcclY\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclZ\" -ln \"u_ScaleIBL_OcclZ\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclW\" -ln \"u_ScaleIBL_OcclW\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_Occl\";\n\taddAttr -s false -is true -ci true -k true -sn \"te\" -ln \"techniqueEnum\" -nn \"Technique\" \n\t\t-min 0 -max 1 -en \"Solid:Transparent\" -at \"enum\";\n\taddAttr -ci true -sn \"Position\" -ln \"Position\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Position_Name\" -ln \"Position_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"Position_Source\" -ln \"Position_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -sn \"Position_DefaultTexture\" -ln \"Position_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Position\";\n\taddAttr -ci true -sn \"Normal\" -ln \"Normal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Normal_Name\" -ln \"Normal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Source\" -ln \"Normal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -sn \"Normal_DefaultTexture\" -ln \"Normal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Normal\";\n\taddAttr -ci true -sn \"Tangent\" -ln \"Tangent\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Tangent_Name\" -ln \"Tangent_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"Tangent_Source\" -ln \"Tangent_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -sn \"Tangent_DefaultTexture\" -ln \"Tangent_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Tangent\";\n\taddAttr -ci true -sn \"Binormal\" -ln \"Binormal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Binormal_Name\" -ln \"Binormal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -h true -sn \"Binormal_Source\" -ln \"Binormal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -sn \"Binormal_DefaultTexture\" -ln \"Binormal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Binormal\";\n\taddAttr -ci true -sn \"TexCoord0\" -ln \"TexCoord0\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Name\" -ln \"TexCoord0_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Source\" -ln \"TexCoord0_Source\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -sn \"TexCoord0_DefaultTexture\" -ln \"TexCoord0_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Name\" -ln \"u_IsDoubleSided_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Type\" -ln \"u_IsDoubleSided_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsDoubleSided\" -ln \"u_IsDoubleSided\" -nn \"Double sided material?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Name\" -ln \"u_RoughnessOffset_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Type\" -ln \"u_RoughnessOffset_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessOffset\" -ln \"u_RoughnessOffset\" -nn \"Roughness offset\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 12 -smn 0 -smx 12 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Name\" -ln \"u_BurleyFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Type\" -ln \"u_BurleyFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BurleyFactor\" -ln \"u_BurleyFactor\" -nn \"Burley factor\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Name\" -ln \"u_UndoEdgeStretch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Type\" -ln \"u_UndoEdgeStretch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UndoEdgeStretch\" -ln \"u_UndoEdgeStretch\" -nn \"Undo edge stretch?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Name\" -ln \"u_IsEmissiveInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Type\" -ln \"u_IsEmissiveInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEmissiveInsRGB\" -ln \"u_IsEmissiveInsRGB\" -nn \"sRGB emissive?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Name\" -ln \"u_EnvRotationAngle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Type\" -ln \"u_EnvRotationAngle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_EnvRotationAngle\" -ln \"u_EnvRotationAngle\" -nn \"Environment Rotation\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Name\" -ln \"u_FlipEnvMapZ_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Type\" -ln \"u_FlipEnvMapZ_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_FlipEnvMapZ\" -ln \"u_FlipEnvMapZ\" -nn \"Flip environment Z?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Name\" -ln \"u_IsEnvMapInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Type\" -ln \"u_IsEnvMapInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInsRGB\" -ln \"u_IsEnvMapInsRGB\" -nn \"sRGB environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Name\" -ln \"u_IsEnvMapInRGBM_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Type\" -ln \"u_IsEnvMapInRGBM_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInRGBM\" -ln \"u_IsEnvMapInRGBM\" -nn \"RGBM environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Name\" -ln \"u_IsBRDFsSRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Type\" -ln \"u_IsBRDFsSRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBRDFsSRGB\" -ln \"u_IsBRDFsSRGB\" -nn \"sRGB BRDF table?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Name\" -ln \"u_IsBaseColorInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Type\" -ln \"u_IsBaseColorInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBaseColorInsRGB\" -ln \"u_IsBaseColorInsRGB\" -nn \"sRGB basecolor?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\tsetAttr \".vpar\" -type \"stringArray\" 5 \"Position\" \"Normal\" \"Tangent\" \"Binormal\" \"TexCoord0\"  ;\n\tsetAttr \".upar\" -type \"stringArray\" 34 \"u_LightColor\" \"u_LightIntensity\" \"u_LightRotation\" \"u_LightPitch\" \"u_BaseColorTexture\" \"u_BaseColorFactor\" \"u_MetallicTexture\" \"u_MetallicStrength\" \"u_RoughnessTexture\" \"u_RoughnessStrength\" \"u_OcclusionTexture\" \"u_OcclusionStrength\" \"u_NormalTexture\" \"u_NormalScale\" \"u_EmissiveTexture\" \"u_EmissiveColor\" \"u_DiffuseEnvTexture\" \"u_SpecularEnvTexture\" \"u_brdfTexture\" \"u_IsDoubleSided\" \"u_UseMeshTangents\" \"u_RoughnessOffset\" \"u_ScaleDiffBaseMR\" \"u_BurleyFactor\" \"u_ScaleFGDSpec\" \"u_UndoEdgeStretch\" \"u_ScaleIBL_Occl\" \"u_IsEmissiveInsRGB\" \"u_EnvRotationAngle\" \"u_FlipEnvMapZ\" \"u_IsEnvMapInsRGB\" \"u_IsEnvMapInRGBM\" \"u_IsBRDFsSRGB\" \"u_IsBaseColorInsRGB\"  ;\n\tsetAttr \".s\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/shaders/glTF_PBR.ogsfx\";\n\tsetAttr \".t\" -type \"string\" \"Transparent\";\n\tsetAttr \".u_LightColor_Name\" -type \"string\" \"u_LightColor\";\n\tsetAttr \".u_LightColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_LightColor\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_LightIntensity_Name\" -type \"string\" \"u_LightIntensity\";\n\tsetAttr \".u_LightIntensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightIntensity\" 1;\n\tsetAttr \".u_LightRotation_Name\" -type \"string\" \"u_LightRotation\";\n\tsetAttr \".u_LightRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightRotation\" 75;\n\tsetAttr \".u_LightPitch_Name\" -type \"string\" \"u_LightPitch\";\n\tsetAttr \".u_LightPitch_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightPitch\" 40;\n\tsetAttr \".u_BaseColorTexture_Name\" -type \"string\" \"u_BaseColorTexture\";\n\tsetAttr \".u_BaseColorTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_BaseColorTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_BaseColorFactor_Name\" -type \"string\" \"u_BaseColorFactor\";\n\tsetAttr \".u_BaseColorFactor_Type\" -type \"string\" \"color4x1\";\n\tsetAttr \".u_BaseColorFactorRGB\" -type \"float3\" 1 0 0 ;\n\tsetAttr \".u_BaseColorFactorA\" 0.5;\n\tsetAttr \".u_MetallicTexture_Name\" -type \"string\" \"u_MetallicTexture\";\n\tsetAttr \".u_MetallicTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_MetallicTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_MetallicStrength_Name\" -type \"string\" \"u_MetallicStrength\";\n\tsetAttr \".u_MetallicStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_MetallicStrength\" 0.5;\n\tsetAttr \".u_RoughnessTexture_Name\" -type \"string\" \"u_RoughnessTexture\";\n\tsetAttr \".u_RoughnessTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_RoughnessTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_RoughnessStrength_Name\" -type \"string\" \"u_RoughnessStrength\";\n\tsetAttr \".u_RoughnessStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_RoughnessStrength\" 0.5;\n\tsetAttr \".u_OcclusionTexture_Name\" -type \"string\" \"u_OcclusionTexture\";\n\tsetAttr \".u_OcclusionTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_OcclusionTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_OcclusionStrength_Name\" -type \"string\" \"u_OcclusionStrength\";\n\tsetAttr \".u_OcclusionStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_OcclusionStrength\" 1;\n\tsetAttr \".u_NormalTexture_Name\" -type \"string\" \"u_NormalTexture\";\n\tsetAttr \".u_NormalTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_NormalTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_NormalScale_Name\" -type \"string\" \"u_NormalScale\";\n\tsetAttr \".u_NormalScale_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_NormalScale\" 1;\n\tsetAttr \".u_EmissiveTexture_Name\" -type \"string\" \"u_EmissiveTexture\";\n\tsetAttr \".u_EmissiveTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_EmissiveTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_EmissiveColor_Name\" -type \"string\" \"u_EmissiveColor\";\n\tsetAttr \".u_EmissiveColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_EmissiveColor\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_DiffuseEnvTexture_Name\" -type \"string\" \"u_DiffuseEnvTexture\";\n\tsetAttr \".u_DiffuseEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_DiffuseEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_SpecularEnvTexture_Name\" -type \"string\" \"u_SpecularEnvTexture\";\n\tsetAttr \".u_SpecularEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_SpecularEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_brdfTexture_Name\" -type \"string\" \"u_brdfTexture\";\n\tsetAttr \".u_brdfTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_brdfTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_UseMeshTangents_Name\" -type \"string\" \"u_UseMeshTangents\";\n\tsetAttr \".u_UseMeshTangents_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UseMeshTangents\" no;\n\tsetAttr \".u_ScaleDiffBaseMR_Name\" -type \"string\" \"u_ScaleDiffBaseMR\";\n\tsetAttr \".u_ScaleDiffBaseMR_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleDiffBaseMRXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleDiffBaseMRW\" 0;\n\tsetAttr \".u_ScaleFGDSpec_Name\" -type \"string\" \"u_ScaleFGDSpec\";\n\tsetAttr \".u_ScaleFGDSpec_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleFGDSpecXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleFGDSpecW\" 0;\n\tsetAttr \".u_ScaleIBL_Occl_Name\" -type \"string\" \"u_ScaleIBL_Occl\";\n\tsetAttr \".u_ScaleIBL_Occl_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleIBL_OcclXYZ\" -type \"float3\" 1 1 0 ;\n\tsetAttr \".u_ScaleIBL_OcclW\" 1;\n\tsetAttr \".Position_Name\" -type \"string\" \"Position\";\n\tsetAttr \".Position_Source\" -type \"string\" \"position\";\n\tsetAttr \".Normal_Name\" -type \"string\" \"Normal\";\n\tsetAttr \".Normal_Source\" -type \"string\" \"normal\";\n\tsetAttr \".Tangent_Name\" -type \"string\" \"Tangent\";\n\tsetAttr \".Tangent_Source\" -type \"string\" \"tangent:map1\";\n\tsetAttr \".Binormal_Name\" -type \"string\" \"Binormal\";\n\tsetAttr \".Binormal_Source\" -type \"string\" \"binormal:map1\";\n\tsetAttr \".TexCoord0_Name\" -type \"string\" \"TexCoord0\";\n\tsetAttr \".TexCoord0_Source\" -type \"string\" \"uv:map1\";\n\tsetAttr \".u_IsDoubleSided_Name\" -type \"string\" \"u_IsDoubleSided\";\n\tsetAttr \".u_IsDoubleSided_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsDoubleSided\" no;\n\tsetAttr \".u_RoughnessOffset_Name\" -type \"string\" \"u_RoughnessOffset\";\n\tsetAttr \".u_RoughnessOffset_Type\" -type \"string\" \"int\";\n\tsetAttr \".u_RoughnessOffset\" 0;\n\tsetAttr \".u_BurleyFactor_Name\" -type \"string\" \"u_BurleyFactor\";\n\tsetAttr \".u_BurleyFactor_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_BurleyFactor\" 0;\n\tsetAttr \".u_UndoEdgeStretch_Name\" -type \"string\" \"u_UndoEdgeStretch\";\n\tsetAttr \".u_UndoEdgeStretch_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UndoEdgeStretch\" no;\n\tsetAttr \".u_IsEmissiveInsRGB_Name\" -type \"string\" \"u_IsEmissiveInsRGB\";\n\tsetAttr \".u_IsEmissiveInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEmissiveInsRGB\" yes;\n\tsetAttr \".u_EnvRotationAngle_Name\" -type \"string\" \"u_EnvRotationAngle\";\n\tsetAttr \".u_EnvRotationAngle_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_EnvRotationAngle\" 0;\n\tsetAttr \".u_FlipEnvMapZ_Name\" -type \"string\" \"u_FlipEnvMapZ\";\n\tsetAttr \".u_FlipEnvMapZ_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_FlipEnvMapZ\" yes;\n\tsetAttr \".u_IsEnvMapInsRGB_Name\" -type \"string\" \"u_IsEnvMapInsRGB\";\n\tsetAttr \".u_IsEnvMapInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInsRGB\" no;\n\tsetAttr \".u_IsEnvMapInRGBM_Name\" -type \"string\" \"u_IsEnvMapInRGBM\";\n\tsetAttr \".u_IsEnvMapInRGBM_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInRGBM\" no;\n\tsetAttr \".u_IsBRDFsSRGB_Name\" -type \"string\" \"u_IsBRDFsSRGB\";\n\tsetAttr \".u_IsBRDFsSRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBRDFsSRGB\" no;\n\tsetAttr \".u_IsBaseColorInsRGB_Name\" -type \"string\" \"u_IsBaseColorInsRGB\";\n\tsetAttr \".u_IsBaseColorInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBaseColorInsRGB\" yes;\ncreateNode file -n \"file4\";\n\trename -uid \"A5940A1E-4D03-6EAA-B475-E79FB7D18B35\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_diffuse_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture4\";\n\trename -uid \"86DB68BF-4AA2-FDEF-4854-AFAB48C6F9F3\";\ncreateNode file -n \"file5\";\n\trename -uid \"2D889A03-42F4-354F-DDE5-BE9B040DE016\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_specular_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture5\";\n\trename -uid \"B4E07BDD-47B8-0854-2B9A-8886B020B288\";\ncreateNode file -n \"file6\";\n\trename -uid \"9D4F1225-4CC6-1EDD-9288-F78C509317E7\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/brdfLUT.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture6\";\n\trename -uid \"2EAE7CA7-440E-523D-318D-30B73F4B6624\";\ncreateNode shadingEngine -n \"GLSLShader2SG\";\n\trename -uid \"07899F53-475F-1F1D-5494-18BB8357A6E2\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"C0F28A77-4DCC-2BFC-7872-8A9B2E3D7E86\";\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"6AA9A624-463F-17F0-2BC2-BDBEBDF60592\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 1\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 1\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 1 -size 10 -divisions 4 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"9FA160C7-49FC-1CEA-0479-D282303025A3\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"5893234F-4CEE-6A4C-DA50-0EAFABCA78BE\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 6 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderUtilityList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 6 \".u\";\nselect -ne :defaultRenderingList1;\nselect -ne :defaultTextureList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 6 \".tx\";\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1.i\";\nconnectAttr \"polyCube2.out\" \"pCubeShape2.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader1SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader1SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader2SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"file1.oc\" \"GLSLShader1.u_DiffuseEnvTexture\";\nconnectAttr \"file2.oc\" \"GLSLShader1.u_SpecularEnvTexture\";\nconnectAttr \"file3.oc\" \"GLSLShader1.u_brdfTexture\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file1.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file1.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file1.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file1.ws\";\nconnectAttr \"place2dTexture1.c\" \"file1.c\";\nconnectAttr \"place2dTexture1.tf\" \"file1.tf\";\nconnectAttr \"place2dTexture1.rf\" \"file1.rf\";\nconnectAttr \"place2dTexture1.mu\" \"file1.mu\";\nconnectAttr \"place2dTexture1.mv\" \"file1.mv\";\nconnectAttr \"place2dTexture1.s\" \"file1.s\";\nconnectAttr \"place2dTexture1.wu\" \"file1.wu\";\nconnectAttr \"place2dTexture1.wv\" \"file1.wv\";\nconnectAttr \"place2dTexture1.re\" \"file1.re\";\nconnectAttr \"place2dTexture1.r\" \"file1.ro\";\nconnectAttr \"place2dTexture1.of\" \"file1.of\";\nconnectAttr \"place2dTexture1.n\" \"file1.n\";\nconnectAttr \"place2dTexture1.vt1\" \"file1.vt1\";\nconnectAttr \"place2dTexture1.vt2\" \"file1.vt2\";\nconnectAttr \"place2dTexture1.vt3\" \"file1.vt3\";\nconnectAttr \"place2dTexture1.vc1\" \"file1.vc1\";\nconnectAttr \"place2dTexture1.o\" \"file1.uv\";\nconnectAttr \"place2dTexture1.ofs\" \"file1.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file2.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file2.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file2.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file2.ws\";\nconnectAttr \"place2dTexture2.c\" \"file2.c\";\nconnectAttr \"place2dTexture2.tf\" \"file2.tf\";\nconnectAttr \"place2dTexture2.rf\" \"file2.rf\";\nconnectAttr \"place2dTexture2.mu\" \"file2.mu\";\nconnectAttr \"place2dTexture2.mv\" \"file2.mv\";\nconnectAttr \"place2dTexture2.s\" \"file2.s\";\nconnectAttr \"place2dTexture2.wu\" \"file2.wu\";\nconnectAttr \"place2dTexture2.wv\" \"file2.wv\";\nconnectAttr \"place2dTexture2.re\" \"file2.re\";\nconnectAttr \"place2dTexture2.r\" \"file2.ro\";\nconnectAttr \"place2dTexture2.of\" \"file2.of\";\nconnectAttr \"place2dTexture2.n\" \"file2.n\";\nconnectAttr \"place2dTexture2.vt1\" \"file2.vt1\";\nconnectAttr \"place2dTexture2.vt2\" \"file2.vt2\";\nconnectAttr \"place2dTexture2.vt3\" \"file2.vt3\";\nconnectAttr \"place2dTexture2.vc1\" \"file2.vc1\";\nconnectAttr \"place2dTexture2.o\" \"file2.uv\";\nconnectAttr \"place2dTexture2.ofs\" \"file2.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file3.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file3.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file3.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file3.ws\";\nconnectAttr \"place2dTexture3.c\" \"file3.c\";\nconnectAttr \"place2dTexture3.tf\" \"file3.tf\";\nconnectAttr \"place2dTexture3.rf\" \"file3.rf\";\nconnectAttr \"place2dTexture3.mu\" \"file3.mu\";\nconnectAttr \"place2dTexture3.mv\" \"file3.mv\";\nconnectAttr \"place2dTexture3.s\" \"file3.s\";\nconnectAttr \"place2dTexture3.wu\" \"file3.wu\";\nconnectAttr \"place2dTexture3.wv\" \"file3.wv\";\nconnectAttr \"place2dTexture3.re\" \"file3.re\";\nconnectAttr \"place2dTexture3.r\" \"file3.ro\";\nconnectAttr \"place2dTexture3.of\" \"file3.of\";\nconnectAttr \"place2dTexture3.n\" \"file3.n\";\nconnectAttr \"place2dTexture3.vt1\" \"file3.vt1\";\nconnectAttr \"place2dTexture3.vt2\" \"file3.vt2\";\nconnectAttr \"place2dTexture3.vt3\" \"file3.vt3\";\nconnectAttr \"place2dTexture3.vc1\" \"file3.vc1\";\nconnectAttr \"place2dTexture3.o\" \"file3.uv\";\nconnectAttr \"place2dTexture3.ofs\" \"file3.fs\";\nconnectAttr \"GLSLShader1.oc\" \"GLSLShader1SG.ss\";\nconnectAttr \"pCubeShape1.iog\" \"GLSLShader1SG.dsm\" -na;\nconnectAttr \"GLSLShader1SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"GLSLShader1.msg\" \"materialInfo1.m\";\nconnectAttr \"file4.oc\" \"GLSLShader2.u_DiffuseEnvTexture\";\nconnectAttr \"file5.oc\" \"GLSLShader2.u_SpecularEnvTexture\";\nconnectAttr \"file6.oc\" \"GLSLShader2.u_brdfTexture\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file4.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file4.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file4.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file4.ws\";\nconnectAttr \"place2dTexture4.c\" \"file4.c\";\nconnectAttr \"place2dTexture4.tf\" \"file4.tf\";\nconnectAttr \"place2dTexture4.rf\" \"file4.rf\";\nconnectAttr \"place2dTexture4.mu\" \"file4.mu\";\nconnectAttr \"place2dTexture4.mv\" \"file4.mv\";\nconnectAttr \"place2dTexture4.s\" \"file4.s\";\nconnectAttr \"place2dTexture4.wu\" \"file4.wu\";\nconnectAttr \"place2dTexture4.wv\" \"file4.wv\";\nconnectAttr \"place2dTexture4.re\" \"file4.re\";\nconnectAttr \"place2dTexture4.r\" \"file4.ro\";\nconnectAttr \"place2dTexture4.of\" \"file4.of\";\nconnectAttr \"place2dTexture4.n\" \"file4.n\";\nconnectAttr \"place2dTexture4.vt1\" \"file4.vt1\";\nconnectAttr \"place2dTexture4.vt2\" \"file4.vt2\";\nconnectAttr \"place2dTexture4.vt3\" \"file4.vt3\";\nconnectAttr \"place2dTexture4.vc1\" \"file4.vc1\";\nconnectAttr \"place2dTexture4.o\" \"file4.uv\";\nconnectAttr \"place2dTexture4.ofs\" \"file4.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file5.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file5.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file5.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file5.ws\";\nconnectAttr \"place2dTexture5.c\" \"file5.c\";\nconnectAttr \"place2dTexture5.tf\" \"file5.tf\";\nconnectAttr \"place2dTexture5.rf\" \"file5.rf\";\nconnectAttr \"place2dTexture5.mu\" \"file5.mu\";\nconnectAttr \"place2dTexture5.mv\" \"file5.mv\";\nconnectAttr \"place2dTexture5.s\" \"file5.s\";\nconnectAttr \"place2dTexture5.wu\" \"file5.wu\";\nconnectAttr \"place2dTexture5.wv\" \"file5.wv\";\nconnectAttr \"place2dTexture5.re\" \"file5.re\";\nconnectAttr \"place2dTexture5.r\" \"file5.ro\";\nconnectAttr \"place2dTexture5.of\" \"file5.of\";\nconnectAttr \"place2dTexture5.n\" \"file5.n\";\nconnectAttr \"place2dTexture5.vt1\" \"file5.vt1\";\nconnectAttr \"place2dTexture5.vt2\" \"file5.vt2\";\nconnectAttr \"place2dTexture5.vt3\" \"file5.vt3\";\nconnectAttr \"place2dTexture5.vc1\" \"file5.vc1\";\nconnectAttr \"place2dTexture5.o\" \"file5.uv\";\nconnectAttr \"place2dTexture5.ofs\" \"file5.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file6.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file6.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file6.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file6.ws\";\nconnectAttr \"place2dTexture6.c\" \"file6.c\";\nconnectAttr \"place2dTexture6.tf\" \"file6.tf\";\nconnectAttr \"place2dTexture6.rf\" \"file6.rf\";\nconnectAttr \"place2dTexture6.mu\" \"file6.mu\";\nconnectAttr \"place2dTexture6.mv\" \"file6.mv\";\nconnectAttr \"place2dTexture6.s\" \"file6.s\";\nconnectAttr \"place2dTexture6.wu\" \"file6.wu\";\nconnectAttr \"place2dTexture6.wv\" \"file6.wv\";\nconnectAttr \"place2dTexture6.re\" \"file6.re\";\nconnectAttr \"place2dTexture6.r\" \"file6.ro\";\nconnectAttr \"place2dTexture6.of\" \"file6.of\";\nconnectAttr \"place2dTexture6.n\" \"file6.n\";\nconnectAttr \"place2dTexture6.vt1\" \"file6.vt1\";\nconnectAttr \"place2dTexture6.vt2\" \"file6.vt2\";\nconnectAttr \"place2dTexture6.vt3\" \"file6.vt3\";\nconnectAttr \"place2dTexture6.vc1\" \"file6.vc1\";\nconnectAttr \"place2dTexture6.o\" \"file6.uv\";\nconnectAttr \"place2dTexture6.ofs\" \"file6.fs\";\nconnectAttr \"GLSLShader2.oc\" \"GLSLShader2SG.ss\";\nconnectAttr \"pCubeShape2.iog\" \"GLSLShader2SG.dsm\" -na;\nconnectAttr \"GLSLShader2SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"GLSLShader2.msg\" \"materialInfo2.m\";\nconnectAttr \"GLSLShader1SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader1.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"GLSLShader2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"place2dTexture1.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture2.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture3.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture4.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture5.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture6.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"file1.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file2.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file3.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file4.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file5.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file6.msg\" \":defaultTextureList1.tx\" -na;\n// End of TranparentCube1.ma\n"
  },
  {
    "path": "maya/scenes/TranparentCubePhong1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: TranparentCubePhong1.ma\n//Last modified: Sun, Feb 03, 2019 11:52:39 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"91A49AC7-4AA1-EC2A-D89C-378DF9FB5D02\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -2.6151747617790533 1.2073262345441125 1.6468634398312911 ;\n\tsetAttr \".r\" -type \"double3\" -21.338352729606175 -57.799999999999876 2.9843275299436889e-15 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"FFAE7AF8-4E5E-CCC1-9417-A38FE974CBA6\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 3.3179714978757087;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"82A7F235-45AE-C1F0-235D-6A94AD440FAD\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"3B63DA8C-46E8-35C8-64F7-C1A20886B5C9\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"ED75D7BB-4256-C404-AF6A-E4AAF8DDC015\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"BC04DACA-42B2-8198-3909-2185B11BD67A\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"29BA0F54-42FD-2313-D9DF-F88E326534AF\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"313F234A-40FB-4201-F9AE-3B97FFFA4072\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"7A4E48BF-42BC-9CA0-AB5D-4FBD89134EA1\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"5B90D714-4467-66EB-D33D-C688DA24FA78\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pCube2\";\n\trename -uid \"AE4F16BC-4D8F-E73B-75C2-849D5264A14C\";\ncreateNode mesh -n \"pCubeShape2\" -p \"pCube2\";\n\trename -uid \"0C2D934F-4D2D-AB35-B4D4-4C9E0E7249D2\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"E586ED2D-4991-EFA0-E47D-77AFF56B17AB\";\n\tsetAttr \".t\" -type \"double3\" 1.2409029228326154 2.0559679015644923 2.6611249056950825 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"F59FC0C1-4075-3288-D973-C2A94B706353\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 3.5844706498824461;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"5C7517EE-4BE9-C6B3-8A77-F5BD70D2A6AE\";\n\tsetAttr -s 4 \".lnk\";\n\tsetAttr -s 4 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"73A23073-40D1-8CA3-1D7F-5E9BE73848D6\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"71C0E2D8-4FE7-6547-89EE-809DDA598602\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"978FB518-4208-7469-601B-808EEAAC9999\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"CE8F092A-4E35-EF37-9CB7-CBBE989014C3\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"F19A1692-4064-99E7-7294-278D4F35DF32\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"0048BD2C-4708-B8B1-1D12-DF9B9F477883\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"40544E7B-471C-02DE-37F6-23845D4EAABA\";\n\tsetAttr \".cuv\" 4;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"3577C3C5-4458-7E2F-E308-79AF2BB2BFE2\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/scenes/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"TranparentCubePhong1\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2018 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 1;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\ncreateNode file -n \"file1\";\n\trename -uid \"8642A594-44A3-26B6-99C6-38AD25E88B45\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_diffuse_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture1\";\n\trename -uid \"2E77AC7B-4F8F-9589-AA0D-569ABA1E21AD\";\ncreateNode file -n \"file2\";\n\trename -uid \"3A847E89-4F48-D1D8-6B0B-D689B65BD8AF\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_specular_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture2\";\n\trename -uid \"A026764A-49F1-35F3-675F-358671B96DD5\";\ncreateNode file -n \"file3\";\n\trename -uid \"CA29F052-461F-BA5D-11B8-3A90CB8EE7C6\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/brdfLUT.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture3\";\n\trename -uid \"BF99A8AE-447A-1C2C-4D5C-079058789DC1\";\ncreateNode polyCube -n \"polyCube2\";\n\trename -uid \"8F36B867-4E16-72C4-AC10-CC8C7F5ABFC9\";\n\tsetAttr \".w\" 1.1;\n\tsetAttr \".h\" 1.1;\n\tsetAttr \".d\" 1.1;\n\tsetAttr \".cuv\" 4;\ncreateNode file -n \"file4\";\n\trename -uid \"A5940A1E-4D03-6EAA-B475-E79FB7D18B35\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_diffuse_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture4\";\n\trename -uid \"86DB68BF-4AA2-FDEF-4854-AFAB48C6F9F3\";\ncreateNode file -n \"file5\";\n\trename -uid \"2D889A03-42F4-354F-DDE5-BE9B040DE016\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_specular_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture5\";\n\trename -uid \"B4E07BDD-47B8-0854-2B9A-8886B020B288\";\ncreateNode file -n \"file6\";\n\trename -uid \"9D4F1225-4CC6-1EDD-9288-F78C509317E7\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/brdfLUT.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture6\";\n\trename -uid \"2EAE7CA7-440E-523D-318D-30B73F4B6624\";\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"6AA9A624-463F-17F0-2BC2-BDBEBDF60592\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"perspective\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"perspective\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 1\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 0\\n            -polymeshes 1\\n            -subdivSurfaces 0\\n            -planes 0\\n            -lights 0\\n            -cameras 0\\n            -controlVertices 0\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 0\\n            -ikHandles 0\\n            -deformers 0\\n            -dynamics 0\\n            -particleInstancers 1\\n            -fluids 0\\n            -hairSystems 0\\n            -follicles 0\\n\"\n\t\t+ \"            -nCloths 0\\n            -nParticles 1\\n            -nRigids 0\\n            -dynamicConstraints 0\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 0\\n            -handles 0\\n            -pivots 0\\n            -textures 0\\n            -strokes 0\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 1\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"perspective\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"perspective\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 1\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 0\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 0\\\\n    -planes 0\\\\n    -lights 0\\\\n    -cameras 0\\\\n    -controlVertices 0\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 0\\\\n    -ikHandles 0\\\\n    -deformers 0\\\\n    -dynamics 0\\\\n    -particleInstancers 1\\\\n    -fluids 0\\\\n    -hairSystems 0\\\\n    -follicles 0\\\\n    -nCloths 0\\\\n    -nParticles 1\\\\n    -nRigids 0\\\\n    -dynamicConstraints 0\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 0\\\\n    -handles 0\\\\n    -pivots 0\\\\n    -textures 0\\\\n    -strokes 0\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"perspective\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 1\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 0\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 0\\\\n    -planes 0\\\\n    -lights 0\\\\n    -cameras 0\\\\n    -controlVertices 0\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 0\\\\n    -ikHandles 0\\\\n    -deformers 0\\\\n    -dynamics 0\\\\n    -particleInstancers 1\\\\n    -fluids 0\\\\n    -hairSystems 0\\\\n    -follicles 0\\\\n    -nCloths 0\\\\n    -nParticles 1\\\\n    -nRigids 0\\\\n    -dynamicConstraints 0\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 0\\\\n    -handles 0\\\\n    -pivots 0\\\\n    -textures 0\\\\n    -strokes 0\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 1 -size 10 -divisions 4 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"9FA160C7-49FC-1CEA-0479-D282303025A3\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode phong -n \"phong1\";\n\trename -uid \"65EED9F0-4CD3-0758-69CD-C584292E1062\";\ncreateNode shadingEngine -n \"phong1SG\";\n\trename -uid \"9B861E45-41A9-5D60-611E-FFA680DA4F3C\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"CB86C51E-46E2-A407-B6D2-62B54194B70D\";\ncreateNode phong -n \"phong2\";\n\trename -uid \"6853E901-4AB3-946E-2F60-238C601E3031\";\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\n\tsetAttr \".it\" -type \"float3\" 0.50337076 0.50337076 0.50337076 ;\ncreateNode shadingEngine -n \"phong2SG\";\n\trename -uid \"31C8FC5D-4807-676C-04F3-7AA9DCC73190\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"EA248D12-44B2-93D1-8DCF-16B21365DE94\";\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"E25531F7-4AE2-8CD4-4A1C-08A86541BF00\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 6 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderUtilityList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 6 \".u\";\nselect -ne :defaultRenderingList1;\nselect -ne :defaultTextureList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 6 \".tx\";\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1.i\";\nconnectAttr \"polyCube2.out\" \"pCubeShape2.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"phong1SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"phong2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"phong1SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"phong2SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file1.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file1.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file1.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file1.ws\";\nconnectAttr \"place2dTexture1.c\" \"file1.c\";\nconnectAttr \"place2dTexture1.tf\" \"file1.tf\";\nconnectAttr \"place2dTexture1.rf\" \"file1.rf\";\nconnectAttr \"place2dTexture1.mu\" \"file1.mu\";\nconnectAttr \"place2dTexture1.mv\" \"file1.mv\";\nconnectAttr \"place2dTexture1.s\" \"file1.s\";\nconnectAttr \"place2dTexture1.wu\" \"file1.wu\";\nconnectAttr \"place2dTexture1.wv\" \"file1.wv\";\nconnectAttr \"place2dTexture1.re\" \"file1.re\";\nconnectAttr \"place2dTexture1.r\" \"file1.ro\";\nconnectAttr \"place2dTexture1.of\" \"file1.of\";\nconnectAttr \"place2dTexture1.n\" \"file1.n\";\nconnectAttr \"place2dTexture1.vt1\" \"file1.vt1\";\nconnectAttr \"place2dTexture1.vt2\" \"file1.vt2\";\nconnectAttr \"place2dTexture1.vt3\" \"file1.vt3\";\nconnectAttr \"place2dTexture1.vc1\" \"file1.vc1\";\nconnectAttr \"place2dTexture1.o\" \"file1.uv\";\nconnectAttr \"place2dTexture1.ofs\" \"file1.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file2.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file2.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file2.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file2.ws\";\nconnectAttr \"place2dTexture2.c\" \"file2.c\";\nconnectAttr \"place2dTexture2.tf\" \"file2.tf\";\nconnectAttr \"place2dTexture2.rf\" \"file2.rf\";\nconnectAttr \"place2dTexture2.mu\" \"file2.mu\";\nconnectAttr \"place2dTexture2.mv\" \"file2.mv\";\nconnectAttr \"place2dTexture2.s\" \"file2.s\";\nconnectAttr \"place2dTexture2.wu\" \"file2.wu\";\nconnectAttr \"place2dTexture2.wv\" \"file2.wv\";\nconnectAttr \"place2dTexture2.re\" \"file2.re\";\nconnectAttr \"place2dTexture2.r\" \"file2.ro\";\nconnectAttr \"place2dTexture2.of\" \"file2.of\";\nconnectAttr \"place2dTexture2.n\" \"file2.n\";\nconnectAttr \"place2dTexture2.vt1\" \"file2.vt1\";\nconnectAttr \"place2dTexture2.vt2\" \"file2.vt2\";\nconnectAttr \"place2dTexture2.vt3\" \"file2.vt3\";\nconnectAttr \"place2dTexture2.vc1\" \"file2.vc1\";\nconnectAttr \"place2dTexture2.o\" \"file2.uv\";\nconnectAttr \"place2dTexture2.ofs\" \"file2.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file3.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file3.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file3.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file3.ws\";\nconnectAttr \"place2dTexture3.c\" \"file3.c\";\nconnectAttr \"place2dTexture3.tf\" \"file3.tf\";\nconnectAttr \"place2dTexture3.rf\" \"file3.rf\";\nconnectAttr \"place2dTexture3.mu\" \"file3.mu\";\nconnectAttr \"place2dTexture3.mv\" \"file3.mv\";\nconnectAttr \"place2dTexture3.s\" \"file3.s\";\nconnectAttr \"place2dTexture3.wu\" \"file3.wu\";\nconnectAttr \"place2dTexture3.wv\" \"file3.wv\";\nconnectAttr \"place2dTexture3.re\" \"file3.re\";\nconnectAttr \"place2dTexture3.r\" \"file3.ro\";\nconnectAttr \"place2dTexture3.of\" \"file3.of\";\nconnectAttr \"place2dTexture3.n\" \"file3.n\";\nconnectAttr \"place2dTexture3.vt1\" \"file3.vt1\";\nconnectAttr \"place2dTexture3.vt2\" \"file3.vt2\";\nconnectAttr \"place2dTexture3.vt3\" \"file3.vt3\";\nconnectAttr \"place2dTexture3.vc1\" \"file3.vc1\";\nconnectAttr \"place2dTexture3.o\" \"file3.uv\";\nconnectAttr \"place2dTexture3.ofs\" \"file3.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file4.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file4.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file4.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file4.ws\";\nconnectAttr \"place2dTexture4.c\" \"file4.c\";\nconnectAttr \"place2dTexture4.tf\" \"file4.tf\";\nconnectAttr \"place2dTexture4.rf\" \"file4.rf\";\nconnectAttr \"place2dTexture4.mu\" \"file4.mu\";\nconnectAttr \"place2dTexture4.mv\" \"file4.mv\";\nconnectAttr \"place2dTexture4.s\" \"file4.s\";\nconnectAttr \"place2dTexture4.wu\" \"file4.wu\";\nconnectAttr \"place2dTexture4.wv\" \"file4.wv\";\nconnectAttr \"place2dTexture4.re\" \"file4.re\";\nconnectAttr \"place2dTexture4.r\" \"file4.ro\";\nconnectAttr \"place2dTexture4.of\" \"file4.of\";\nconnectAttr \"place2dTexture4.n\" \"file4.n\";\nconnectAttr \"place2dTexture4.vt1\" \"file4.vt1\";\nconnectAttr \"place2dTexture4.vt2\" \"file4.vt2\";\nconnectAttr \"place2dTexture4.vt3\" \"file4.vt3\";\nconnectAttr \"place2dTexture4.vc1\" \"file4.vc1\";\nconnectAttr \"place2dTexture4.o\" \"file4.uv\";\nconnectAttr \"place2dTexture4.ofs\" \"file4.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file5.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file5.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file5.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file5.ws\";\nconnectAttr \"place2dTexture5.c\" \"file5.c\";\nconnectAttr \"place2dTexture5.tf\" \"file5.tf\";\nconnectAttr \"place2dTexture5.rf\" \"file5.rf\";\nconnectAttr \"place2dTexture5.mu\" \"file5.mu\";\nconnectAttr \"place2dTexture5.mv\" \"file5.mv\";\nconnectAttr \"place2dTexture5.s\" \"file5.s\";\nconnectAttr \"place2dTexture5.wu\" \"file5.wu\";\nconnectAttr \"place2dTexture5.wv\" \"file5.wv\";\nconnectAttr \"place2dTexture5.re\" \"file5.re\";\nconnectAttr \"place2dTexture5.r\" \"file5.ro\";\nconnectAttr \"place2dTexture5.of\" \"file5.of\";\nconnectAttr \"place2dTexture5.n\" \"file5.n\";\nconnectAttr \"place2dTexture5.vt1\" \"file5.vt1\";\nconnectAttr \"place2dTexture5.vt2\" \"file5.vt2\";\nconnectAttr \"place2dTexture5.vt3\" \"file5.vt3\";\nconnectAttr \"place2dTexture5.vc1\" \"file5.vc1\";\nconnectAttr \"place2dTexture5.o\" \"file5.uv\";\nconnectAttr \"place2dTexture5.ofs\" \"file5.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file6.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file6.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file6.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file6.ws\";\nconnectAttr \"place2dTexture6.c\" \"file6.c\";\nconnectAttr \"place2dTexture6.tf\" \"file6.tf\";\nconnectAttr \"place2dTexture6.rf\" \"file6.rf\";\nconnectAttr \"place2dTexture6.mu\" \"file6.mu\";\nconnectAttr \"place2dTexture6.mv\" \"file6.mv\";\nconnectAttr \"place2dTexture6.s\" \"file6.s\";\nconnectAttr \"place2dTexture6.wu\" \"file6.wu\";\nconnectAttr \"place2dTexture6.wv\" \"file6.wv\";\nconnectAttr \"place2dTexture6.re\" \"file6.re\";\nconnectAttr \"place2dTexture6.r\" \"file6.ro\";\nconnectAttr \"place2dTexture6.of\" \"file6.of\";\nconnectAttr \"place2dTexture6.n\" \"file6.n\";\nconnectAttr \"place2dTexture6.vt1\" \"file6.vt1\";\nconnectAttr \"place2dTexture6.vt2\" \"file6.vt2\";\nconnectAttr \"place2dTexture6.vt3\" \"file6.vt3\";\nconnectAttr \"place2dTexture6.vc1\" \"file6.vc1\";\nconnectAttr \"place2dTexture6.o\" \"file6.uv\";\nconnectAttr \"place2dTexture6.ofs\" \"file6.fs\";\nconnectAttr \"phong1.oc\" \"phong1SG.ss\";\nconnectAttr \"pCubeShape1.iog\" \"phong1SG.dsm\" -na;\nconnectAttr \"phong1SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"phong1.msg\" \"materialInfo1.m\";\nconnectAttr \"phong2.oc\" \"phong2SG.ss\";\nconnectAttr \"pCubeShape2.iog\" \"phong2SG.dsm\" -na;\nconnectAttr \"phong2SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"phong2.msg\" \"materialInfo2.m\";\nconnectAttr \"phong1SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"phong2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"phong1.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"phong2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"place2dTexture1.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture2.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture3.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture4.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture5.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture6.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"file1.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file2.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file3.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file4.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file5.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file6.msg\" \":defaultTextureList1.tx\" -na;\n// End of TranparentCubePhong1.ma\n"
  },
  {
    "path": "maya/scenes/TransparentPlane.ma",
    "content": "//Maya ASCII 2018 scene\n//Name: TransparentPlane.ma\n//Last modified: Tue, Jan 19, 2021 04:52:38 PM\n//Codeset: 1252\nrequires maya \"2018\";\nrequires \"stereoCamera\" \"10.0\";\nrequires -nodeType \"GLSLShader\" \"glslShader\" \"1.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201706261615-f9658c4cfc\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"360F5835-4139-9365-AAFF-02AB19EF919E\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0.35321359710095723 4.5280936890117749 0.0086323543790088886 ;\n\tsetAttr \".r\" -type \"double3\" -85.538352729390411 88.599999999946647 -1.3017892475530087e-13 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"05AB706C-4518-1283-AAFB-ECAB48484932\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 4.5418571993400469;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"863558FF-475A-4195-9DDD-F8A8F7188BCA\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"446A3D25-419F-EBF9-AECA-3881D0244067\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"216D5DA2-4F74-4A44-C02B-529B2A1A6951\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"C5A3BE7A-4767-9EE2-1FE5-728A803109B8\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"DBBFE8AF-4174-6939-9B8A-A2B8F742D22F\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"0EF9BF9F-4CBB-B991-D098-C595E1CBA99A\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pPlane1\";\n\trename -uid \"9A24BC92-47B1-B18F-855B-77A459EBD00A\";\n\tsetAttr \".t\" -type \"double3\" 0 1.1507095739190747 0 ;\ncreateNode mesh -n \"pPlaneShape1\" -p \"pPlane1\";\n\trename -uid \"74777387-4F94-22BE-2396-D98486CBC746\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\ncreateNode transform -n \"pPlane2\";\n\trename -uid \"28A3433C-4844-DC8A-5A43-E3B1625674DE\";\ncreateNode mesh -n \"pPlaneShape2\" -p \"pPlane2\";\n\trename -uid \"DD373A8E-42F5-8A06-7366-9ABA5F63B7DB\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"4C5789B6-4827-133D-CFFC-85BF446DCB31\";\n\tsetAttr -s 3 \".lnk\";\n\tsetAttr -s 3 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"0541DD01-498D-FEA8-F59B-23B32FD4F4D0\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"2AF316A0-41D6-E083-3619-E7B42DDB67B2\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"92330A00-46CE-D18E-BB93-1C9FD9D89477\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"876AB58F-4E11-0E9D-0BBB-2B87CDF462F7\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"AEEBC73D-4D20-56D9-254B-2494EC773B32\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"174EA174-4BD4-C9E8-ACF2-B4B6434FA1FA\";\n\tsetAttr \".g\" yes;\ncreateNode polyPlane -n \"polyPlane1\";\n\trename -uid \"42494A45-454D-0494-C6DA-BF90C79F64F4\";\n\tsetAttr \".cuv\" 2;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"ABCBC469-46AA-BC3D-5118-378B04A27DB7\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\taddAttr -ci true -sn \"selOnly\" -ln \"selOnly\" -at \"long\";\n\taddAttr -ci true -sn \"visOnly\" -ln \"visOnly\" -at \"long\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/scenes/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"TransparentPlane\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2021 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 1;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\n\tsetAttr \".selOnly\" 1;\n\tsetAttr \".visOnly\" 1;\ncreateNode GLSLShader -n \"GLSLShader1\";\n\trename -uid \"9544B0B8-47CE-F3D3-BCCB-A6A3FA6AD51F\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Name\" -ln \"u_LightColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Type\" -ln \"u_LightColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_LightColor\" -ln \"u_LightColor\" -nn \"Light Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_LightColorR\" -ln \"u_LightColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorG\" -ln \"u_LightColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorB\" -ln \"u_LightColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Name\" -ln \"u_LightIntensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Type\" -ln \"u_LightIntensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightIntensity\" -ln \"u_LightIntensity\" -nn \"Light Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 10 -smn 0 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Name\" -ln \"u_LightRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Type\" -ln \"u_LightRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightRotation\" -ln \"u_LightRotation\" -nn \"Light rotation (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 75 -min 0 -max 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Name\" -ln \"u_LightPitch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Type\" -ln \"u_LightPitch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightPitch\" -ln \"u_LightPitch\" -nn \"Light pitch (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 40 -min -90 -max 90 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Name\" -ln \"u_BaseColorTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Type\" -ln \"u_BaseColorTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorTexture\" -ln \"u_BaseColorTexture\" \n\t\t-nn \"Base color map (sRGB)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureR\" -ln \"u_BaseColorTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureG\" -ln \"u_BaseColorTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureB\" -ln \"u_BaseColorTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Name\" -ln \"u_BaseColorFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Type\" -ln \"u_BaseColorFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactor\" -ln \"u_BaseColorFactor\" -nn \"Base color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorFactorRGB\" -ln \"u_BaseColorFactorRGB\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_BaseColorFactor\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorR\" -ln \"u_BaseColorFactorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorG\" -ln \"u_BaseColorFactorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorB\" -ln \"u_BaseColorFactorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorA\" -ln \"u_BaseColorFactorA\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactor\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Name\" -ln \"u_MetallicTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Type\" -ln \"u_MetallicTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_MetallicTexture\" -ln \"u_MetallicTexture\" -nn \"Metallic map (B,LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_MetallicTextureR\" -ln \"u_MetallicTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureG\" -ln \"u_MetallicTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureB\" -ln \"u_MetallicTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Name\" -ln \"u_MetallicStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Type\" -ln \"u_MetallicStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_MetallicStrength\" -ln \"u_MetallicStrength\" -nn \"Metallic strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Name\" -ln \"u_RoughnessTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Type\" -ln \"u_RoughnessTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_RoughnessTexture\" -ln \"u_RoughnessTexture\" \n\t\t-nn \"Roughness map (G,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureR\" -ln \"u_RoughnessTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureG\" -ln \"u_RoughnessTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureB\" -ln \"u_RoughnessTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Name\" -ln \"u_RoughnessStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Type\" -ln \"u_RoughnessStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessStrength\" -ln \"u_RoughnessStrength\" -nn \"Roughness strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Name\" -ln \"u_OcclusionTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Type\" -ln \"u_OcclusionTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_OcclusionTexture\" -ln \"u_OcclusionTexture\" \n\t\t-nn \"Occlusion map (R,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureR\" -ln \"u_OcclusionTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureG\" -ln \"u_OcclusionTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureB\" -ln \"u_OcclusionTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Name\" -ln \"u_OcclusionStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Type\" -ln \"u_OcclusionStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_OcclusionStrength\" -ln \"u_OcclusionStrength\" -nn \"Occlusion strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Name\" -ln \"u_NormalTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Type\" -ln \"u_NormalTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_NormalTexture\" -ln \"u_NormalTexture\" -nn \"Normal map (LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_NormalTextureR\" -ln \"u_NormalTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureG\" -ln \"u_NormalTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureB\" -ln \"u_NormalTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Name\" -ln \"u_NormalScale_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Type\" -ln \"u_NormalScale_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_NormalScale\" -ln \"u_NormalScale\" -nn \"Normal scale\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Name\" -ln \"u_EmissiveTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Type\" -ln \"u_EmissiveTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveTexture\" -ln \"u_EmissiveTexture\" -nn \"Emissive map (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureR\" -ln \"u_EmissiveTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureG\" -ln \"u_EmissiveTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureB\" -ln \"u_EmissiveTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Name\" -ln \"u_EmissiveColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Type\" -ln \"u_EmissiveColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveColor\" -ln \"u_EmissiveColor\" -nn \"Emissive color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveColorR\" -ln \"u_EmissiveColorR\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorG\" -ln \"u_EmissiveColorG\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorB\" -ln \"u_EmissiveColorB\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Name\" -ln \"u_DiffuseEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Type\" -ln \"u_DiffuseEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_DiffuseEnvTexture\" -ln \"u_DiffuseEnvTexture\" \n\t\t-nn \"Diffuse env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureR\" -ln \"u_DiffuseEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureG\" -ln \"u_DiffuseEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureB\" -ln \"u_DiffuseEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Name\" -ln \"u_SpecularEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Type\" -ln \"u_SpecularEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_SpecularEnvTexture\" -ln \"u_SpecularEnvTexture\" \n\t\t-nn \"Specular env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureR\" -ln \"u_SpecularEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureG\" -ln \"u_SpecularEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureB\" -ln \"u_SpecularEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Name\" -ln \"u_brdfTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Type\" -ln \"u_brdfTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_brdfTexture\" -ln \"u_brdfTexture\" -nn \"BRDF LUT (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_brdfTextureR\" -ln \"u_brdfTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureG\" -ln \"u_brdfTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureB\" -ln \"u_brdfTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Name\" -ln \"u_IsDoubleSided_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Type\" -ln \"u_IsDoubleSided_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsDoubleSided\" -ln \"u_IsDoubleSided\" -nn \"Double sided material?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Name\" -ln \"u_UseMeshTangents_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Type\" -ln \"u_UseMeshTangents_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UseMeshTangents\" -ln \"u_UseMeshTangents\" -nn \"Use mesh tangents?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Name\" -ln \"u_RoughnessOffset_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Type\" -ln \"u_RoughnessOffset_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessOffset\" -ln \"u_RoughnessOffset\" -nn \"Roughness offset\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 12 -smn 0 -smx 12 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Name\" -ln \"u_ScaleDiffBaseMR_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Type\" -ln \"u_ScaleDiffBaseMR_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMR\" -ln \"u_ScaleDiffBaseMR\" -nn \"Scale Diff Base MR\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRXYZ\" -ln \"u_ScaleDiffBaseMRXYZ\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_ScaleDiffBaseMR\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRX\" -ln \"u_ScaleDiffBaseMRX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRY\" -ln \"u_ScaleDiffBaseMRY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRZ\" -ln \"u_ScaleDiffBaseMRZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRW\" -ln \"u_ScaleDiffBaseMRW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMR\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Name\" -ln \"u_BurleyFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Type\" -ln \"u_BurleyFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BurleyFactor\" -ln \"u_BurleyFactor\" -nn \"Burley factor\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Name\" -ln \"u_ScaleFGDSpec_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Type\" -ln \"u_ScaleFGDSpec_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpec\" -ln \"u_ScaleFGDSpec\" -nn \"Scale FGD Spec\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecXYZ\" -ln \"u_ScaleFGDSpecXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleFGDSpec\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecX\" -ln \"u_ScaleFGDSpecX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecY\" -ln \"u_ScaleFGDSpecY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecZ\" -ln \"u_ScaleFGDSpecZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecW\" -ln \"u_ScaleFGDSpecW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpec\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Name\" -ln \"u_UndoEdgeStretch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Type\" -ln \"u_UndoEdgeStretch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UndoEdgeStretch\" -ln \"u_UndoEdgeStretch\" -nn \"Undo edge stretch?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Name\" -ln \"u_ScaleIBL_Occl_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Type\" -ln \"u_ScaleIBL_Occl_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_Occl\" -ln \"u_ScaleIBL_Occl\" -nn \"Scale IBL AO(w)\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclXYZ\" -ln \"u_ScaleIBL_OcclXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleIBL_Occl\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclX\" -ln \"u_ScaleIBL_OcclX\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclY\" -ln \"u_ScaleIBL_OcclY\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclZ\" -ln \"u_ScaleIBL_OcclZ\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclW\" -ln \"u_ScaleIBL_OcclW\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_Occl\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Name\" -ln \"u_IsEmissiveInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Type\" -ln \"u_IsEmissiveInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEmissiveInsRGB\" -ln \"u_IsEmissiveInsRGB\" -nn \"sRGB emissive?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Name\" -ln \"u_EnvRotationAngle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Type\" -ln \"u_EnvRotationAngle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_EnvRotationAngle\" -ln \"u_EnvRotationAngle\" -nn \"Environment Rotation\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Name\" -ln \"u_FlipEnvMapZ_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Type\" -ln \"u_FlipEnvMapZ_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_FlipEnvMapZ\" -ln \"u_FlipEnvMapZ\" -nn \"Flip environment Z?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Name\" -ln \"u_IsEnvMapInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Type\" -ln \"u_IsEnvMapInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInsRGB\" -ln \"u_IsEnvMapInsRGB\" -nn \"sRGB environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Name\" -ln \"u_IsEnvMapInRGBM_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Type\" -ln \"u_IsEnvMapInRGBM_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInRGBM\" -ln \"u_IsEnvMapInRGBM\" -nn \"RGBM environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Name\" -ln \"u_IsBRDFsSRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Type\" -ln \"u_IsBRDFsSRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBRDFsSRGB\" -ln \"u_IsBRDFsSRGB\" -nn \"sRGB BRDF table?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Name\" -ln \"u_IsBaseColorInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Type\" -ln \"u_IsBaseColorInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBaseColorInsRGB\" -ln \"u_IsBaseColorInsRGB\" -nn \"sRGB basecolor?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -is true -ci true -k true -sn \"te\" -ln \"techniqueEnum\" -nn \"Technique\" \n\t\t-min 0 -max 1 -en \"Solid:Transparent\" -at \"enum\";\n\taddAttr -ci true -sn \"Position\" -ln \"Position\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Position_Name\" -ln \"Position_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"Position_Source\" -ln \"Position_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -sn \"Position_DefaultTexture\" -ln \"Position_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Position\";\n\taddAttr -ci true -sn \"Normal\" -ln \"Normal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Normal_Name\" -ln \"Normal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Source\" -ln \"Normal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -sn \"Normal_DefaultTexture\" -ln \"Normal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Normal\";\n\taddAttr -ci true -sn \"Tangent\" -ln \"Tangent\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Tangent_Name\" -ln \"Tangent_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"Tangent_Source\" -ln \"Tangent_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -sn \"Tangent_DefaultTexture\" -ln \"Tangent_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Tangent\";\n\taddAttr -ci true -sn \"Binormal\" -ln \"Binormal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Binormal_Name\" -ln \"Binormal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -h true -sn \"Binormal_Source\" -ln \"Binormal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -sn \"Binormal_DefaultTexture\" -ln \"Binormal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Binormal\";\n\taddAttr -ci true -sn \"TexCoord0\" -ln \"TexCoord0\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Name\" -ln \"TexCoord0_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Source\" -ln \"TexCoord0_Source\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -sn \"TexCoord0_DefaultTexture\" -ln \"TexCoord0_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseAlphaTexture_Name\" -ln \"u_BaseAlphaTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseAlphaTexture_Type\" -ln \"u_BaseAlphaTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_BaseAlphaTexture\" -ln \"u_BaseAlphaTexture\" \n\t\t-nn \"Base alpha map\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseAlphaTextureR\" -ln \"u_BaseAlphaTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseAlphaTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseAlphaTextureG\" -ln \"u_BaseAlphaTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseAlphaTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseAlphaTextureB\" -ln \"u_BaseAlphaTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseAlphaTexture\";\n\tsetAttr \".vpar\" -type \"stringArray\" 5 \"Position\" \"Normal\" \"Tangent\" \"Binormal\" \"TexCoord0\"  ;\n\tsetAttr \".upar\" -type \"stringArray\" 35 \"u_LightColor\" \"u_LightIntensity\" \"u_LightRotation\" \"u_LightPitch\" \"u_BaseColorTexture\" \"u_BaseAlphaTexture\" \"u_BaseColorFactor\" \"u_MetallicTexture\" \"u_MetallicStrength\" \"u_RoughnessTexture\" \"u_RoughnessStrength\" \"u_OcclusionTexture\" \"u_OcclusionStrength\" \"u_NormalTexture\" \"u_NormalScale\" \"u_EmissiveTexture\" \"u_EmissiveColor\" \"u_DiffuseEnvTexture\" \"u_SpecularEnvTexture\" \"u_brdfTexture\" \"u_IsDoubleSided\" \"u_UseMeshTangents\" \"u_RoughnessOffset\" \"u_ScaleDiffBaseMR\" \"u_BurleyFactor\" \"u_ScaleFGDSpec\" \"u_UndoEdgeStretch\" \"u_ScaleIBL_Occl\" \"u_IsEmissiveInsRGB\" \"u_EnvRotationAngle\" \"u_FlipEnvMapZ\" \"u_IsEnvMapInsRGB\" \"u_IsEnvMapInRGBM\" \"u_IsBRDFsSRGB\" \"u_IsBaseColorInsRGB\"  ;\n\tsetAttr \".s\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/shaders/glTF_PBR.ogsfx\";\n\tsetAttr \".t\" -type \"string\" \"Transparent\";\n\tsetAttr \".u_LightColor_Name\" -type \"string\" \"u_LightColor\";\n\tsetAttr \".u_LightColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_LightColor\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_LightIntensity_Name\" -type \"string\" \"u_LightIntensity\";\n\tsetAttr \".u_LightIntensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightIntensity\" 1;\n\tsetAttr \".u_LightRotation_Name\" -type \"string\" \"u_LightRotation\";\n\tsetAttr \".u_LightRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightRotation\" 75;\n\tsetAttr \".u_LightPitch_Name\" -type \"string\" \"u_LightPitch\";\n\tsetAttr \".u_LightPitch_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightPitch\" 40;\n\tsetAttr \".u_BaseColorTexture_Name\" -type \"string\" \"u_BaseColorTexture\";\n\tsetAttr \".u_BaseColorTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_BaseColorTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_BaseColorFactor_Name\" -type \"string\" \"u_BaseColorFactor\";\n\tsetAttr \".u_BaseColorFactor_Type\" -type \"string\" \"color4x1\";\n\tsetAttr \".u_BaseColorFactorRGB\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_BaseColorFactorA\" 1;\n\tsetAttr \".u_MetallicTexture_Name\" -type \"string\" \"u_MetallicTexture\";\n\tsetAttr \".u_MetallicTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_MetallicTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_MetallicStrength_Name\" -type \"string\" \"u_MetallicStrength\";\n\tsetAttr \".u_MetallicStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_MetallicStrength\" 0.5;\n\tsetAttr \".u_RoughnessTexture_Name\" -type \"string\" \"u_RoughnessTexture\";\n\tsetAttr \".u_RoughnessTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_RoughnessTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_RoughnessStrength_Name\" -type \"string\" \"u_RoughnessStrength\";\n\tsetAttr \".u_RoughnessStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_RoughnessStrength\" 0.5;\n\tsetAttr \".u_OcclusionTexture_Name\" -type \"string\" \"u_OcclusionTexture\";\n\tsetAttr \".u_OcclusionTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_OcclusionTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_OcclusionStrength_Name\" -type \"string\" \"u_OcclusionStrength\";\n\tsetAttr \".u_OcclusionStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_OcclusionStrength\" 1;\n\tsetAttr \".u_NormalTexture_Name\" -type \"string\" \"u_NormalTexture\";\n\tsetAttr \".u_NormalTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_NormalTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_NormalScale_Name\" -type \"string\" \"u_NormalScale\";\n\tsetAttr \".u_NormalScale_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_NormalScale\" 1;\n\tsetAttr \".u_EmissiveTexture_Name\" -type \"string\" \"u_EmissiveTexture\";\n\tsetAttr \".u_EmissiveTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_EmissiveTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_EmissiveColor_Name\" -type \"string\" \"u_EmissiveColor\";\n\tsetAttr \".u_EmissiveColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_EmissiveColor\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_DiffuseEnvTexture_Name\" -type \"string\" \"u_DiffuseEnvTexture\";\n\tsetAttr \".u_DiffuseEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_DiffuseEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_SpecularEnvTexture_Name\" -type \"string\" \"u_SpecularEnvTexture\";\n\tsetAttr \".u_SpecularEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_SpecularEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_brdfTexture_Name\" -type \"string\" \"u_brdfTexture\";\n\tsetAttr \".u_brdfTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_brdfTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_IsDoubleSided_Name\" -type \"string\" \"u_IsDoubleSided\";\n\tsetAttr \".u_IsDoubleSided_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsDoubleSided\" no;\n\tsetAttr \".u_UseMeshTangents_Name\" -type \"string\" \"u_UseMeshTangents\";\n\tsetAttr \".u_UseMeshTangents_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UseMeshTangents\" no;\n\tsetAttr \".u_RoughnessOffset_Name\" -type \"string\" \"u_RoughnessOffset\";\n\tsetAttr \".u_RoughnessOffset_Type\" -type \"string\" \"int\";\n\tsetAttr \".u_RoughnessOffset\" 0;\n\tsetAttr \".u_ScaleDiffBaseMR_Name\" -type \"string\" \"u_ScaleDiffBaseMR\";\n\tsetAttr \".u_ScaleDiffBaseMR_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleDiffBaseMRXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleDiffBaseMRW\" 0;\n\tsetAttr \".u_BurleyFactor_Name\" -type \"string\" \"u_BurleyFactor\";\n\tsetAttr \".u_BurleyFactor_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_BurleyFactor\" 0;\n\tsetAttr \".u_ScaleFGDSpec_Name\" -type \"string\" \"u_ScaleFGDSpec\";\n\tsetAttr \".u_ScaleFGDSpec_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleFGDSpecXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleFGDSpecW\" 0;\n\tsetAttr \".u_UndoEdgeStretch_Name\" -type \"string\" \"u_UndoEdgeStretch\";\n\tsetAttr \".u_UndoEdgeStretch_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UndoEdgeStretch\" no;\n\tsetAttr \".u_ScaleIBL_Occl_Name\" -type \"string\" \"u_ScaleIBL_Occl\";\n\tsetAttr \".u_ScaleIBL_Occl_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleIBL_OcclXYZ\" -type \"float3\" 1 1 0 ;\n\tsetAttr \".u_ScaleIBL_OcclW\" 1;\n\tsetAttr \".u_IsEmissiveInsRGB_Name\" -type \"string\" \"u_IsEmissiveInsRGB\";\n\tsetAttr \".u_IsEmissiveInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEmissiveInsRGB\" yes;\n\tsetAttr \".u_EnvRotationAngle_Name\" -type \"string\" \"u_EnvRotationAngle\";\n\tsetAttr \".u_EnvRotationAngle_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_EnvRotationAngle\" 0;\n\tsetAttr \".u_FlipEnvMapZ_Name\" -type \"string\" \"u_FlipEnvMapZ\";\n\tsetAttr \".u_FlipEnvMapZ_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_FlipEnvMapZ\" yes;\n\tsetAttr \".u_IsEnvMapInsRGB_Name\" -type \"string\" \"u_IsEnvMapInsRGB\";\n\tsetAttr \".u_IsEnvMapInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInsRGB\" no;\n\tsetAttr \".u_IsEnvMapInRGBM_Name\" -type \"string\" \"u_IsEnvMapInRGBM\";\n\tsetAttr \".u_IsEnvMapInRGBM_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInRGBM\" no;\n\tsetAttr \".u_IsBRDFsSRGB_Name\" -type \"string\" \"u_IsBRDFsSRGB\";\n\tsetAttr \".u_IsBRDFsSRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBRDFsSRGB\" no;\n\tsetAttr \".u_IsBaseColorInsRGB_Name\" -type \"string\" \"u_IsBaseColorInsRGB\";\n\tsetAttr \".u_IsBaseColorInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBaseColorInsRGB\" yes;\n\tsetAttr \".Position_Name\" -type \"string\" \"Position\";\n\tsetAttr \".Position_Source\" -type \"string\" \"position\";\n\tsetAttr \".Normal_Name\" -type \"string\" \"Normal\";\n\tsetAttr \".Normal_Source\" -type \"string\" \"normal\";\n\tsetAttr \".Tangent_Name\" -type \"string\" \"Tangent\";\n\tsetAttr \".Tangent_Source\" -type \"string\" \"tangent:map1\";\n\tsetAttr \".Binormal_Name\" -type \"string\" \"Binormal\";\n\tsetAttr \".Binormal_Source\" -type \"string\" \"binormal:map1\";\n\tsetAttr \".TexCoord0_Name\" -type \"string\" \"TexCoord0\";\n\tsetAttr \".TexCoord0_Source\" -type \"string\" \"uv:map1\";\n\tsetAttr \".u_BaseAlphaTexture_Name\" -type \"string\" \"u_BaseAlphaTexture\";\n\tsetAttr \".u_BaseAlphaTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_BaseAlphaTexture\" -type \"float3\" 1 0 0 ;\ncreateNode file -n \"file1\";\n\trename -uid \"EFC7767B-4749-1642-F98D-BC9560EDF1C8\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/shaders//../images/damaged_helmet_diffuse_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture1\";\n\trename -uid \"D4BE4B8D-4B95-3EF2-EE81-9298832FC1DD\";\ncreateNode file -n \"file2\";\n\trename -uid \"7FF67A47-4B72-E38F-9BAB-0D8B18312DB6\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/shaders//../images/damaged_helmet_specular_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture2\";\n\trename -uid \"D899F264-4423-3FEE-5191-14B9EB2507F1\";\ncreateNode file -n \"file3\";\n\trename -uid \"2623324C-4236-7FF1-80E2-6BB08DF3C414\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/shaders//../images/brdfLUT.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture3\";\n\trename -uid \"65E42160-4B21-EADF-8311-C5BAE44BF486\";\ncreateNode shadingEngine -n \"GLSLShader1SG\";\n\trename -uid \"48996740-441A-3EB8-0B47-C7B34A616107\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"87CF0B68-4BFA-9C49-AE43-67B1CFE010F3\";\ncreateNode file -n \"pPlane1_BaseColorTexture\";\n\trename -uid \"24585881-4720-FAA9-EE2F-128F584716DB\";\n\tsetAttr \".ail\" yes;\n\tsetAttr \".ag\" 0.72727274894714355;\n\tsetAttr \".ao\" 0.36868685483932495;\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//images/blue_transparent_albedo.png\";\n\tsetAttr \".exp\" -0.42929291725158691;\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture4\";\n\trename -uid \"EA8807A9-44DC-772D-1B64-F39E37B1695B\";\ncreateNode polyPlane -n \"polyPlane2\";\n\trename -uid \"4D625063-4549-EA70-C7C0-CBA395ADE7F4\";\n\tsetAttr \".cuv\" 2;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"0FCAF390-470A-90A4-2A86-E591CF41703A\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n\"\n\t\t+ \"            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n\"\n\t\t+ \"            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n\"\n\t\t+ \"            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 1\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1529\\n            -height 1060\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 1\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n\"\n\t\t+ \"            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n\"\n\t\t+ \"            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n\"\n\t\t+ \"            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n\"\n\t\t+ \"                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n\"\n\t\t+ \"                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n\"\n\t\t+ \"                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n\"\n\t\t+ \"                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n\"\n\t\t+ \"                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n\"\n\t\t+ \"                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n\"\n\t\t+ \"            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n\"\n\t\t+ \"                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\"\n\t\t+ \"\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\"\n\t\t+ \"\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n\"\n\t\t+ \"                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n\"\n\t\t+ \"                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n\"\n\t\t+ \"                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -highlightConnections 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n\"\n\t\t+ \"                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -activeTab -1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -cam `findStartUpCamera persp` \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1529\\\\n    -height 1060\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -cam `findStartUpCamera persp` \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1529\\\\n    -height 1060\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"B825F259-4E28-287D-8339-57B0A0209E53\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"057FC644-4ACC-AA7B-1913-2787BCAB9AFD\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -774.6972494477202 23.3643541616226 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" -281.13184305558519 525.08038194371943 ;\n\tsetAttr -s 10 \".tgi[0].ni\";\n\tsetAttr \".tgi[0].ni[0].x\" -602.85711669921875;\n\tsetAttr \".tgi[0].ni[0].y\" -147.14285278320313;\n\tsetAttr \".tgi[0].ni[0].nvs\" 1923;\n\tsetAttr \".tgi[0].ni[1].x\" 370;\n\tsetAttr \".tgi[0].ni[1].y\" 660;\n\tsetAttr \".tgi[0].ni[1].nvs\" 1923;\n\tsetAttr \".tgi[0].ni[2].x\" -295.71429443359375;\n\tsetAttr \".tgi[0].ni[2].y\" 470;\n\tsetAttr \".tgi[0].ni[2].nvs\" 1923;\n\tsetAttr \".tgi[0].ni[3].x\" -602.85711669921875;\n\tsetAttr \".tgi[0].ni[3].y\" 28.571428298950195;\n\tsetAttr \".tgi[0].ni[3].nvs\" 1923;\n\tsetAttr \".tgi[0].ni[4].x\" -295.71429443359375;\n\tsetAttr \".tgi[0].ni[4].y\" 227.14285278320313;\n\tsetAttr \".tgi[0].ni[4].nvs\" 1923;\n\tsetAttr \".tgi[0].ni[5].x\" -602.85711669921875;\n\tsetAttr \".tgi[0].ni[5].y\" 412.85714721679688;\n\tsetAttr \".tgi[0].ni[5].nvs\" 1923;\n\tsetAttr \".tgi[0].ni[6].x\" -602.85711669921875;\n\tsetAttr \".tgi[0].ni[6].y\" 204.28572082519531;\n\tsetAttr \".tgi[0].ni[6].nvs\" 1923;\n\tsetAttr \".tgi[0].ni[7].x\" 61.428569793701172;\n\tsetAttr \".tgi[0].ni[7].y\" 682.85711669921875;\n\tsetAttr \".tgi[0].ni[7].nvs\" 1938;\n\tsetAttr \".tgi[0].ni[8].x\" -295.71429443359375;\n\tsetAttr \".tgi[0].ni[8].y\" -124.28571319580078;\n\tsetAttr \".tgi[0].ni[8].nvs\" 1923;\n\tsetAttr \".tgi[0].ni[9].x\" -295.71429443359375;\n\tsetAttr \".tgi[0].ni[9].y\" 51.428569793701172;\n\tsetAttr \".tgi[0].ni[9].nvs\" 1923;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 3 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 5 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderUtilityList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 4 \".u\";\nselect -ne :defaultRenderingList1;\nselect -ne :defaultTextureList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 4 \".tx\";\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"polyPlane1.out\" \"pPlaneShape1.i\";\nconnectAttr \"polyPlane2.out\" \"pPlaneShape2.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader1SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader1SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"file1.oc\" \"GLSLShader1.u_DiffuseEnvTexture\";\nconnectAttr \"file2.oc\" \"GLSLShader1.u_SpecularEnvTexture\";\nconnectAttr \"file3.oc\" \"GLSLShader1.u_brdfTexture\";\nconnectAttr \"pPlane1_BaseColorTexture.oc\" \"GLSLShader1.u_BaseColorTexture\";\nconnectAttr \"pPlane1_BaseColorTexture.oa\" \"GLSLShader1.u_BaseAlphaTextureR\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file1.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file1.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file1.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file1.ws\";\nconnectAttr \"place2dTexture1.c\" \"file1.c\";\nconnectAttr \"place2dTexture1.tf\" \"file1.tf\";\nconnectAttr \"place2dTexture1.rf\" \"file1.rf\";\nconnectAttr \"place2dTexture1.mu\" \"file1.mu\";\nconnectAttr \"place2dTexture1.mv\" \"file1.mv\";\nconnectAttr \"place2dTexture1.s\" \"file1.s\";\nconnectAttr \"place2dTexture1.wu\" \"file1.wu\";\nconnectAttr \"place2dTexture1.wv\" \"file1.wv\";\nconnectAttr \"place2dTexture1.re\" \"file1.re\";\nconnectAttr \"place2dTexture1.r\" \"file1.ro\";\nconnectAttr \"place2dTexture1.of\" \"file1.of\";\nconnectAttr \"place2dTexture1.n\" \"file1.n\";\nconnectAttr \"place2dTexture1.vt1\" \"file1.vt1\";\nconnectAttr \"place2dTexture1.vt2\" \"file1.vt2\";\nconnectAttr \"place2dTexture1.vt3\" \"file1.vt3\";\nconnectAttr \"place2dTexture1.vc1\" \"file1.vc1\";\nconnectAttr \"place2dTexture1.o\" \"file1.uv\";\nconnectAttr \"place2dTexture1.ofs\" \"file1.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file2.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file2.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file2.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file2.ws\";\nconnectAttr \"place2dTexture2.c\" \"file2.c\";\nconnectAttr \"place2dTexture2.tf\" \"file2.tf\";\nconnectAttr \"place2dTexture2.rf\" \"file2.rf\";\nconnectAttr \"place2dTexture2.mu\" \"file2.mu\";\nconnectAttr \"place2dTexture2.mv\" \"file2.mv\";\nconnectAttr \"place2dTexture2.s\" \"file2.s\";\nconnectAttr \"place2dTexture2.wu\" \"file2.wu\";\nconnectAttr \"place2dTexture2.wv\" \"file2.wv\";\nconnectAttr \"place2dTexture2.re\" \"file2.re\";\nconnectAttr \"place2dTexture2.r\" \"file2.ro\";\nconnectAttr \"place2dTexture2.of\" \"file2.of\";\nconnectAttr \"place2dTexture2.n\" \"file2.n\";\nconnectAttr \"place2dTexture2.vt1\" \"file2.vt1\";\nconnectAttr \"place2dTexture2.vt2\" \"file2.vt2\";\nconnectAttr \"place2dTexture2.vt3\" \"file2.vt3\";\nconnectAttr \"place2dTexture2.vc1\" \"file2.vc1\";\nconnectAttr \"place2dTexture2.o\" \"file2.uv\";\nconnectAttr \"place2dTexture2.ofs\" \"file2.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file3.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file3.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file3.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file3.ws\";\nconnectAttr \"place2dTexture3.c\" \"file3.c\";\nconnectAttr \"place2dTexture3.tf\" \"file3.tf\";\nconnectAttr \"place2dTexture3.rf\" \"file3.rf\";\nconnectAttr \"place2dTexture3.mu\" \"file3.mu\";\nconnectAttr \"place2dTexture3.mv\" \"file3.mv\";\nconnectAttr \"place2dTexture3.s\" \"file3.s\";\nconnectAttr \"place2dTexture3.wu\" \"file3.wu\";\nconnectAttr \"place2dTexture3.wv\" \"file3.wv\";\nconnectAttr \"place2dTexture3.re\" \"file3.re\";\nconnectAttr \"place2dTexture3.r\" \"file3.ro\";\nconnectAttr \"place2dTexture3.of\" \"file3.of\";\nconnectAttr \"place2dTexture3.n\" \"file3.n\";\nconnectAttr \"place2dTexture3.vt1\" \"file3.vt1\";\nconnectAttr \"place2dTexture3.vt2\" \"file3.vt2\";\nconnectAttr \"place2dTexture3.vt3\" \"file3.vt3\";\nconnectAttr \"place2dTexture3.vc1\" \"file3.vc1\";\nconnectAttr \"place2dTexture3.o\" \"file3.uv\";\nconnectAttr \"place2dTexture3.ofs\" \"file3.fs\";\nconnectAttr \"GLSLShader1.oc\" \"GLSLShader1SG.ss\";\nconnectAttr \"pPlaneShape1.iog\" \"GLSLShader1SG.dsm\" -na;\nconnectAttr \"GLSLShader1SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"GLSLShader1.msg\" \"materialInfo1.m\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"pPlane1_BaseColorTexture.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"pPlane1_BaseColorTexture.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"pPlane1_BaseColorTexture.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"pPlane1_BaseColorTexture.ws\";\nconnectAttr \"place2dTexture4.c\" \"pPlane1_BaseColorTexture.c\";\nconnectAttr \"place2dTexture4.tf\" \"pPlane1_BaseColorTexture.tf\";\nconnectAttr \"place2dTexture4.rf\" \"pPlane1_BaseColorTexture.rf\";\nconnectAttr \"place2dTexture4.mu\" \"pPlane1_BaseColorTexture.mu\";\nconnectAttr \"place2dTexture4.mv\" \"pPlane1_BaseColorTexture.mv\";\nconnectAttr \"place2dTexture4.s\" \"pPlane1_BaseColorTexture.s\";\nconnectAttr \"place2dTexture4.wu\" \"pPlane1_BaseColorTexture.wu\";\nconnectAttr \"place2dTexture4.wv\" \"pPlane1_BaseColorTexture.wv\";\nconnectAttr \"place2dTexture4.re\" \"pPlane1_BaseColorTexture.re\";\nconnectAttr \"place2dTexture4.of\" \"pPlane1_BaseColorTexture.of\";\nconnectAttr \"place2dTexture4.r\" \"pPlane1_BaseColorTexture.ro\";\nconnectAttr \"place2dTexture4.n\" \"pPlane1_BaseColorTexture.n\";\nconnectAttr \"place2dTexture4.vt1\" \"pPlane1_BaseColorTexture.vt1\";\nconnectAttr \"place2dTexture4.vt2\" \"pPlane1_BaseColorTexture.vt2\";\nconnectAttr \"place2dTexture4.vt3\" \"pPlane1_BaseColorTexture.vt3\";\nconnectAttr \"place2dTexture4.vc1\" \"pPlane1_BaseColorTexture.vc1\";\nconnectAttr \"place2dTexture4.o\" \"pPlane1_BaseColorTexture.uv\";\nconnectAttr \"place2dTexture4.ofs\" \"pPlane1_BaseColorTexture.fs\";\nconnectAttr \"place2dTexture3.msg\" \"hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[0].dn\"\n\t\t;\nconnectAttr \"GLSLShader1SG.msg\" \"hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[1].dn\"\n\t\t;\nconnectAttr \"pPlane1_BaseColorTexture.msg\" \"hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[2].dn\"\n\t\t;\nconnectAttr \"place2dTexture1.msg\" \"hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[3].dn\"\n\t\t;\nconnectAttr \"file2.msg\" \"hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[4].dn\"\n\t\t;\nconnectAttr \"place2dTexture4.msg\" \"hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[5].dn\"\n\t\t;\nconnectAttr \"place2dTexture2.msg\" \"hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[6].dn\"\n\t\t;\nconnectAttr \"GLSLShader1.msg\" \"hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[7].dn\"\n\t\t;\nconnectAttr \"file3.msg\" \"hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[8].dn\"\n\t\t;\nconnectAttr \"file1.msg\" \"hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[9].dn\"\n\t\t;\nconnectAttr \"GLSLShader1SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader1.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"place2dTexture1.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture2.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture3.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture4.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"file1.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file2.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file3.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"pPlane1_BaseColorTexture.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"pPlaneShape2.iog\" \":initialShadingGroup.dsm\" -na;\n// End of TransparentPlane.ma\n"
  },
  {
    "path": "maya/scenes/blend/targets_existing/CubeToPyramid.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: CubeToPyramid.ma\n//Last modified: Sun, Feb 03, 2019 11:53:49 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"907CAA7F-4639-FAD5-44E4-7BA81C12F09B\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0.51941059757862962 2.8227406389089738 6.6033517679801506 ;\n\tsetAttr \".r\" -type \"double3\" -23.13835272960408 2.6000000000000898 9.9494756703951435e-17 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"0D1DAA70-46DE-C492-A1AA-92BFF71B1DCE\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 7.3621668936559175;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"DFEC8856-4C58-7AE5-46F9-E7A8D13FFEC4\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"89D874BB-4378-A239-9067-61BA0A76F16B\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"6998747F-4C05-9AE6-3549-A28A9A53180B\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"FAB29CBE-431F-0B38-0AA0-AEB52CB03904\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"264FDA8A-4613-8D03-3268-FF97D56D945A\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"6E1DDD0A-4086-961B-8443-4C913639DD28\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"EEC87F0E-4019-5C4F-D186-08811E7FF1D2\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"EBCECD01-46EE-53D5-FE53-55816BEF14FC\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode mesh -n \"pCubeShape1Orig\" -p \"pCube1\";\n\trename -uid \"2C9B3C1B-4C16-77CA-F90B-1391632EABEF\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pCube2\";\n\trename -uid \"8ADF07E2-463F-B2A1-5765-AAAC7B73222A\";\n\tsetAttr \".t\" -type \"double3\" 1.5 0 0 ;\ncreateNode mesh -n \"pCubeShape2\" -p \"pCube2\";\n\trename -uid \"D73EB0BC-4B5F-8D9C-B693-2DBBA1924EF6\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.375 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 4 \".pt[2:5]\" -type \"float3\"  0.29201874 0 -0.29201874 \n\t\t-0.29201874 0 -0.29201874 0.29201874 0 0.29201874 -0.29201874 0 0.29201874;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"14A4635B-4C5D-AA67-98B1-0BA4C5F7C000\";\n\tsetAttr \".t\" -type \"double3\" 2.2572345209070819 2.4972346652558377 3.2322748609161458 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"FBDDDC4C-4EDB-8CBC-C4F2-B58A25942300\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 4.3537957750542153;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.75 0 0 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"05F1DD84-4B3E-1CDB-2D64-038265CA5E99\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"CA2BAA3D-4568-B6B1-131E-8AB1FC84AD0D\";\n\tsetAttr \".bsdt[0].bscd\" -type \"Int32Array\" 1 0 ;\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"BA7F337C-4843-3B57-BF62-B09CC58B7726\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"5556DE01-4453-72D3-60D5-91954790435D\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"67312CAE-42FF-24D2-4003-A2824179653C\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"DE7C1D3F-4A42-8749-391A-E48933DE8A54\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"1D568F0A-43F5-0EFB-178D-C58B8C11B3F7\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"FC1A077D-40B3-1082-8655-9EA28A01C579\";\n\tsetAttr \".cuv\" 4;\ncreateNode blendShape -n \"blendShape1\";\n\trename -uid \"D2E7F5F1-4F0E-8FC0-416D-E2A51ECEA229\";\n\taddAttr -ci true -h true -sn \"aal\" -ln \"attributeAliasList\" -dt \"attributeAlias\";\n\tsetAttr \".w[0]\"  0.5;\n\tsetAttr \".mlid\" 0;\n\tsetAttr \".mlpr\" 0;\n\tsetAttr \".pndr[0]\"  0;\n\tsetAttr \".tgdt[0].cid\" -type \"Int32Array\" 1 0 ;\n\tsetAttr \".aal\" -type \"attributeAlias\" {\"pCube2\",\"weight[0]\"} ;\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"27EC6E08-4FC3-9458-5994-85BC34F253C6\";\ncreateNode objectSet -n \"blendShape1Set\";\n\trename -uid \"A6C8791A-496A-E345-BD00-AC95911373FA\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"blendShape1GroupId\";\n\trename -uid \"2D886CBC-44D7-45A2-9801-5183995FC350\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"blendShape1GroupParts\";\n\trename -uid \"B35BDE0B-4011-9356-C270-AC958DA33A4A\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"EFD8A2DB-4307-55E2-A5C7-9C89A938A46F\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"AB0CB148-48F1-4D49-4CEC-31854995715B\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"7F181D5D-4663-CD6A-1A7D-B9B2C5738922\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"0D8A1487-4652-1001-1CDB-7687A4014C99\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 1 -size 10 -divisions 4 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"B3B5631B-4AF1-AA47-05BC-069F7838039C\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"9FDD7EE0-4651-E35F-8DD4-BDAD18AE5EC8\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"blendShape1GroupId.id\" \"pCubeShape1.iog.og[0].gid\";\nconnectAttr \"blendShape1Set.mwc\" \"pCubeShape1.iog.og[0].gco\";\nconnectAttr \"groupId2.id\" \"pCubeShape1.iog.og[1].gid\";\nconnectAttr \"tweakSet1.mwc\" \"pCubeShape1.iog.og[1].gco\";\nconnectAttr \"blendShape1.og[0]\" \"pCubeShape1.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"pCubeShape1.twl\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1Orig.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"blendShape1.mlpr\" \"shapeEditorManager.bspr[0]\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"blendShape1GroupParts.og\" \"blendShape1.ip[0].ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1.ip[0].gi\";\nconnectAttr \"pCubeShape2.w\" \"blendShape1.it[0].itg[0].iti[6000].igt\";\nconnectAttr \"shapeEditorManager.obsv[0]\" \"blendShape1.tgdt[0].dpvs\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"blendShape1GroupId.msg\" \"blendShape1Set.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[0]\" \"blendShape1Set.dsm\" -na;\nconnectAttr \"blendShape1.msg\" \"blendShape1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"blendShape1GroupParts.ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[1]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"pCubeShape1Orig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pCubeShape2.iog\" \":initialShadingGroup.dsm\" -na;\n// End of CubeToPyramid.ma\n"
  },
  {
    "path": "maya/scenes/blend/targets_existing/CubeToSphere.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: CubeToSphere.ma\n//Last modified: Sun, Feb 03, 2019 11:53:52 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"0AD65ADC-4CEB-89FE-55B0-599DE3CE5D6D\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -1.5135092377995476 3.0385608660611667 4.7140293378888387 ;\n\tsetAttr \".r\" -type \"double3\" -31.538352729610246 -17.800000000000203 -8.3511618948751863e-16 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"C4F0FEA4-4000-B2D7-80B1-51989BD5F6EF\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 5.8090993112226563;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0 0 1.4901161193847656e-08 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"40A50CD8-473B-3E3C-2D97-52B261128287\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"5FD09E2A-4D8B-165C-825C-098D1056517D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"675EEA56-4565-8A9D-00C8-C49A83254BE8\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"F5E401AC-4591-2B24-C3CF-F195521977A9\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"76F199E4-42FE-F9CD-9F13-4097832551D6\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"A3561AA5-4910-B156-C375-4AB98D953E47\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"41162F3B-4E66-D20B-E93F-BEAF2A1A2230\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"B599D3BB-4977-A3AF-12DA-78822CB7312D\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode mesh -n \"pCubeShape1Orig\" -p \"pCube1\";\n\trename -uid \"CA932FE6-44C2-4460-8DAB-EF822EFA6C16\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 125 \".uvst[0].uvsp[0:124]\" -type \"float2\" 0.375 0 0.375 1 0.625\n\t\t 0 0.625 1 0.375 0.25 0.625 0.25 0.375 0.5 0.125 0.25 0.625 0.5 0.875 0.25 0.375 0.75\n\t\t 0.125 0 0.625 0.75 0.875 0 0.5 0.125 0.5 0.375 0.5 0.625 0.5 0.875 0.75 0.125 0.25\n\t\t 0.125 0.5 0 0.5 1 0.625 0.125 0.5 0.25 0.375 0.125 0.625 0.375 0.75 0.25 0.5 0.5\n\t\t 0.375 0.375 0.25 0.25 0.625 0.625 0.875 0.125 0.5 0.75 0.375 0.625 0.125 0.125 0.625\n\t\t 0.875 0.75 0 0.375 0.875 0.25 0 0.4375 0.0625 0.5625 0.0625 0.5625 0.1875 0.4375\n\t\t 0.1875 0.4375 0.3125 0.5625 0.3125 0.5625 0.4375 0.4375 0.4375 0.4375 0.5625 0.5625\n\t\t 0.5625 0.5625 0.6875 0.4375 0.6875 0.4375 0.8125 0.5625 0.8125 0.5625 0.9375 0.4375\n\t\t 0.9375 0.6875 0.0625 0.8125 0.0625 0.8125 0.1875 0.6875 0.1875 0.1875 0.0625 0.3125\n\t\t 0.0625 0.3125 0.1875 0.1875 0.1875 0.5 0.0625 0.5625 0.125 0.5 0.1875 0.4375 0.125\n\t\t 0.5 0.3125 0.5625 0.375 0.5 0.4375 0.4375 0.375 0.5 0.5625 0.5625 0.625 0.5 0.6875\n\t\t 0.4375 0.625 0.5 0.8125 0.5625 0.875 0.5 0.9375 0.4375 0.875 0.75 0.0625 0.8125 0.125\n\t\t 0.75 0.1875 0.6875 0.125 0.25 0.0625 0.3125 0.125 0.25 0.1875 0.1875 0.125 0.4375\n\t\t 0 0.4375 1 0.5625 0 0.5625 1 0.625 0.0625 0.625 0.1875 0.5625 0.25 0.4375 0.25 0.375\n\t\t 0.1875 0.375 0.0625 0.625 0.3125 0.6875 0.25 0.625 0.4375 0.8125 0.25 0.5625 0.5\n\t\t 0.4375 0.5 0.375 0.4375 0.1875 0.25 0.375 0.3125 0.3125 0.25 0.625 0.5625 0.875 0.1875\n\t\t 0.625 0.6875 0.875 0.0625 0.5625 0.75 0.4375 0.75 0.375 0.6875 0.125 0.0625 0.375\n\t\t 0.5625 0.125 0.1875 0.625 0.8125 0.8125 0 0.625 0.9375 0.6875 0 0.375 0.9375 0.3125\n\t\t 0 0.375 0.8125 0.1875 0;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 98 \".vt[0:97]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5 -0.5 0.5 0 0.5 0 -0.5 0 -0.5 -0.5\n\t\t -0.5 0 -0.5 0.5 -0.5 0 -0.5 -0.5 0 0 -0.5 0.5 0.5 0 0.5 0 0.5 0.5 -0.5 0 0.5 0.5 0.5 0\n\t\t 0 0.5 -0.5 0 0 0.5 0 0.5 0 0 0 -0.5 0 -0.5 0 0.5 0 0 -0.5 0 0 -0.25 -0.25 0.5 0.25 -0.25 0.5\n\t\t 0.25 0.25 0.5 -0.25 0.25 0.5 -0.25 0.5 0.25 0.25 0.5 0.25 0.25 0.5 -0.25 -0.25 0.5 -0.25\n\t\t -0.25 0.25 -0.5 0.25 0.25 -0.5 0.25 -0.25 -0.5 -0.25 -0.25 -0.5 -0.25 -0.5 -0.25\n\t\t 0.25 -0.5 -0.25 0.25 -0.5 0.25 -0.25 -0.5 0.25 0.5 -0.25 0.25 0.5 -0.25 -0.25 0.5 0.25 -0.25\n\t\t 0.5 0.25 0.25 -0.5 -0.25 -0.25 -0.5 -0.25 0.25 -0.5 0.25 0.25 -0.5 0.25 -0.25 0 -0.25 0.5\n\t\t 0.25 0 0.5 0 0.25 0.5 -0.25 0 0.5 0 0.5 0.25 0.25 0.5 0 0 0.5 -0.25 -0.25 0.5 0 0 0.25 -0.5\n\t\t 0.25 0 -0.5 0 -0.25 -0.5 -0.25 0 -0.5 0 -0.5 -0.25 0.25 -0.5 0 0 -0.5 0.25 -0.25 -0.5 0\n\t\t 0.5 -0.25 0 0.5 0 -0.25 0.5 0.25 0 0.5 0 0.25 -0.5 -0.25 0 -0.5 0 0.25 -0.5 0.25 0\n\t\t -0.5 0 -0.25 -0.25 -0.5 0.5 0.25 -0.5 0.5 0.5 -0.25 0.5 0.5 0.25 0.5 0.25 0.5 0.5\n\t\t -0.25 0.5 0.5 -0.5 0.25 0.5 -0.5 -0.25 0.5 0.5 0.5 0.25 0.5 0.5 -0.25 0.25 0.5 -0.5\n\t\t -0.25 0.5 -0.5 -0.5 0.5 -0.25 -0.5 0.5 0.25 0.5 0.25 -0.5 0.5 -0.25 -0.5 0.25 -0.5 -0.5\n\t\t -0.25 -0.5 -0.5 -0.5 -0.25 -0.5 -0.5 0.25 -0.5 0.5 -0.5 -0.25 0.5 -0.5 0.25 -0.5 -0.5 0.25\n\t\t -0.5 -0.5 -0.25;\n\tsetAttr -s 192 \".ed\";\n\tsetAttr \".ed[0:165]\"  0 74 0 74 14 0 14 75 0 75 1 0 2 79 0 79 16 0 16 78 0\n\t\t 78 3 0 4 85 0 85 19 0 19 84 0 84 5 0 6 91 0 91 10 0 10 90 0 90 7 0 0 81 0 81 17 0\n\t\t 17 80 0 80 2 0 1 76 0 76 15 0 15 77 0 77 3 0 2 87 0 87 8 0 8 86 0 86 4 0 3 82 0 82 18 0\n\t\t 18 83 0 83 5 0 4 93 0 93 11 0 11 92 0 92 6 0 5 88 0 88 9 0 9 89 0 89 7 0 6 97 0 97 13 0\n\t\t 13 96 0 96 0 0 7 94 0 94 12 0 12 95 0 95 1 0 74 26 1 26 81 1 14 50 1 50 26 1 50 20 1\n\t\t 20 53 1 53 26 1 53 17 1 75 27 1 27 50 1 76 27 1 15 51 1 51 27 1 51 20 1 51 28 1 28 52 1\n\t\t 52 20 1 77 28 1 78 28 1 16 52 1 53 29 1 29 80 1 52 29 1 79 29 1 79 30 1 30 87 1 16 54 1\n\t\t 54 30 1 54 21 1 21 57 1 57 30 1 57 8 1 78 31 1 31 54 1 82 31 1 18 55 1 55 31 1 55 21 1\n\t\t 55 32 1 32 56 1 56 21 1 83 32 1 84 32 1 19 56 1 57 33 1 33 86 1 56 33 1 85 33 1 85 34 1\n\t\t 34 93 1 19 58 1 58 34 1 58 22 1 22 61 1 61 34 1 61 11 1 84 35 1 35 58 1 88 35 1 9 59 1\n\t\t 59 35 1 59 22 1 59 36 1 36 60 1 60 22 1 89 36 1 90 36 1 10 60 1 61 37 1 37 92 1 60 37 1\n\t\t 91 37 1 91 38 1 38 97 1 10 62 1 62 38 1 62 23 1 23 65 1 65 38 1 65 13 1 90 39 1 39 62 1\n\t\t 94 39 1 12 63 1 63 39 1 63 23 1 63 40 1 40 64 1 64 23 1 95 40 1 75 40 1 14 64 1 65 41 1\n\t\t 41 96 1 64 41 1 74 41 1 95 42 1 42 76 1 12 66 1 66 42 1 66 24 1 24 69 1 69 42 1 69 15 1\n\t\t 94 43 1 43 66 1 89 43 1 9 67 1 67 43 1 67 24 1 67 44 1 44 68 1 68 24 1 88 44 1 83 44 1\n\t\t 18 68 1 69 45 1 45 77 1;\n\tsetAttr \".ed[166:191]\" 68 45 1 82 45 1 97 46 1 46 92 1 13 70 1 70 46 1 70 25 1\n\t\t 25 73 1 73 46 1 73 11 1 96 47 1 47 70 1 81 47 1 17 71 1 71 47 1 71 25 1 71 48 1 48 72 1\n\t\t 72 25 1 80 48 1 87 48 1 8 72 1 73 49 1 49 93 1 72 49 1 86 49 1;\n\tsetAttr -s 96 -ch 384 \".fc[0:95]\" -type \"polyFaces\" \n\t\tf 4 0 48 49 -17\n\t\tmu 0 4 0 87 39 96\n\t\tf 4 1 50 51 -49\n\t\tmu 0 4 87 20 63 39\n\t\tf 4 -52 52 53 54\n\t\tmu 0 4 39 63 14 66\n\t\tf 4 -50 -55 55 -18\n\t\tmu 0 4 96 39 66 24\n\t\tf 4 2 56 57 -51\n\t\tmu 0 4 20 89 40 63\n\t\tf 4 3 20 58 -57\n\t\tmu 0 4 89 2 91 40\n\t\tf 4 -59 21 59 60\n\t\tmu 0 4 40 91 22 64\n\t\tf 4 -58 -61 61 -53\n\t\tmu 0 4 63 40 64 14\n\t\tf 4 -62 62 63 64\n\t\tmu 0 4 14 64 41 65\n\t\tf 4 -60 22 65 -63\n\t\tmu 0 4 64 22 92 41\n\t\tf 4 -66 23 -8 66\n\t\tmu 0 4 41 92 5 93\n\t\tf 4 -64 -67 -7 67\n\t\tmu 0 4 65 41 93 23\n\t\tf 4 -56 68 69 -19\n\t\tmu 0 4 24 66 42 95\n\t\tf 4 -54 -65 70 -69\n\t\tmu 0 4 66 14 65 42\n\t\tf 4 -71 -68 -6 71\n\t\tmu 0 4 42 65 23 94\n\t\tf 4 -70 -72 -5 -20\n\t\tmu 0 4 95 42 94 4\n\t\tf 4 4 72 73 -25\n\t\tmu 0 4 4 94 43 105\n\t\tf 4 5 74 75 -73\n\t\tmu 0 4 94 23 67 43\n\t\tf 4 -76 76 77 78\n\t\tmu 0 4 43 67 15 70\n\t\tf 4 -74 -79 79 -26\n\t\tmu 0 4 105 43 70 28\n\t\tf 4 6 80 81 -75\n\t\tmu 0 4 23 93 44 67\n\t\tf 4 7 28 82 -81\n\t\tmu 0 4 93 5 97 44\n\t\tf 4 -83 29 83 84\n\t\tmu 0 4 44 97 25 68\n\t\tf 4 -82 -85 85 -77\n\t\tmu 0 4 67 44 68 15\n\t\tf 4 -86 86 87 88\n\t\tmu 0 4 15 68 45 69\n\t\tf 4 -84 30 89 -87\n\t\tmu 0 4 68 25 99 45\n\t\tf 4 -90 31 -12 90\n\t\tmu 0 4 45 99 8 101\n\t\tf 4 -88 -91 -11 91\n\t\tmu 0 4 69 45 101 27\n\t\tf 4 -80 92 93 -27\n\t\tmu 0 4 28 70 46 103\n\t\tf 4 -78 -89 94 -93\n\t\tmu 0 4 70 15 69 46\n\t\tf 4 -95 -92 -10 95\n\t\tmu 0 4 46 69 27 102\n\t\tf 4 -94 -96 -9 -28\n\t\tmu 0 4 103 46 102 6\n\t\tf 4 8 96 97 -33\n\t\tmu 0 4 6 102 47 115\n\t\tf 4 9 98 99 -97\n\t\tmu 0 4 102 27 71 47\n\t\tf 4 -100 100 101 102\n\t\tmu 0 4 47 71 16 74\n\t\tf 4 -98 -103 103 -34\n\t\tmu 0 4 115 47 74 33\n\t\tf 4 10 104 105 -99\n\t\tmu 0 4 27 101 48 71\n\t\tf 4 11 36 106 -105\n\t\tmu 0 4 101 8 107 48\n\t\tf 4 -107 37 107 108\n\t\tmu 0 4 48 107 30 72\n\t\tf 4 -106 -109 109 -101\n\t\tmu 0 4 71 48 72 16\n\t\tf 4 -110 110 111 112\n\t\tmu 0 4 16 72 49 73\n\t\tf 4 -108 38 113 -111\n\t\tmu 0 4 72 30 109 49\n\t\tf 4 -114 39 -16 114\n\t\tmu 0 4 49 109 12 111\n\t\tf 4 -112 -115 -15 115\n\t\tmu 0 4 73 49 111 32\n\t\tf 4 -104 116 117 -35\n\t\tmu 0 4 33 74 50 113\n\t\tf 4 -102 -113 118 -117\n\t\tmu 0 4 74 16 73 50\n\t\tf 4 -119 -116 -14 119\n\t\tmu 0 4 50 73 32 112\n\t\tf 4 -118 -120 -13 -36\n\t\tmu 0 4 113 50 112 10\n\t\tf 4 12 120 121 -41\n\t\tmu 0 4 10 112 51 123\n\t\tf 4 13 122 123 -121\n\t\tmu 0 4 112 32 75 51\n\t\tf 4 -124 124 125 126\n\t\tmu 0 4 51 75 17 78\n\t\tf 4 -122 -127 127 -42\n\t\tmu 0 4 123 51 78 37\n\t\tf 4 14 128 129 -123\n\t\tmu 0 4 32 111 52 75\n\t\tf 4 15 44 130 -129\n\t\tmu 0 4 111 12 117 52\n\t\tf 4 -131 45 131 132\n\t\tmu 0 4 52 117 35 76\n\t\tf 4 -130 -133 133 -125\n\t\tmu 0 4 75 52 76 17\n\t\tf 4 -134 134 135 136\n\t\tmu 0 4 17 76 53 77\n\t\tf 4 -132 46 137 -135\n\t\tmu 0 4 76 35 119 53\n\t\tf 4 -138 47 -4 138\n\t\tmu 0 4 53 119 3 90\n\t\tf 4 -136 -139 -3 139\n\t\tmu 0 4 77 53 90 21\n\t\tf 4 -128 140 141 -43\n\t\tmu 0 4 37 78 54 121\n\t\tf 4 -126 -137 142 -141\n\t\tmu 0 4 78 17 77 54\n\t\tf 4 -143 -140 -2 143\n\t\tmu 0 4 54 77 21 88\n\t\tf 4 -142 -144 -1 -44\n\t\tmu 0 4 121 54 88 1\n\t\tf 4 -48 144 145 -21\n\t\tmu 0 4 2 120 55 91\n\t\tf 4 -47 146 147 -145\n\t\tmu 0 4 120 36 79 55\n\t\tf 4 -148 148 149 150\n\t\tmu 0 4 55 79 18 82\n\t\tf 4 -146 -151 151 -22\n\t\tmu 0 4 91 55 82 22\n\t\tf 4 -46 152 153 -147\n\t\tmu 0 4 36 118 56 79\n\t\tf 4 -45 -40 154 -153\n\t\tmu 0 4 118 13 110 56\n\t\tf 4 -155 -39 155 156\n\t\tmu 0 4 56 110 31 80\n\t\tf 4 -154 -157 157 -149\n\t\tmu 0 4 79 56 80 18\n\t\tf 4 -158 158 159 160\n\t\tmu 0 4 18 80 57 81\n\t\tf 4 -156 -38 161 -159\n\t\tmu 0 4 80 31 108 57\n\t\tf 4 -162 -37 -32 162\n\t\tmu 0 4 57 108 9 100\n\t\tf 4 -160 -163 -31 163\n\t\tmu 0 4 81 57 100 26\n\t\tf 4 -152 164 165 -23\n\t\tmu 0 4 22 82 58 92\n\t\tf 4 -150 -161 166 -165\n\t\tmu 0 4 82 18 81 58\n\t\tf 4 -167 -164 -30 167\n\t\tmu 0 4 58 81 26 98\n\t\tf 4 -166 -168 -29 -24\n\t\tmu 0 4 92 58 98 5\n\t\tf 4 40 168 169 35\n\t\tmu 0 4 11 124 59 114\n\t\tf 4 41 170 171 -169\n\t\tmu 0 4 124 38 83 59\n\t\tf 4 -172 172 173 174\n\t\tmu 0 4 59 83 19 86\n\t\tf 4 -170 -175 175 34\n\t\tmu 0 4 114 59 86 34\n\t\tf 4 42 176 177 -171\n\t\tmu 0 4 38 122 60 83\n\t\tf 4 43 16 178 -177\n\t\tmu 0 4 122 0 96 60\n\t\tf 4 -179 17 179 180\n\t\tmu 0 4 60 96 24 84\n\t\tf 4 -178 -181 181 -173\n\t\tmu 0 4 83 60 84 19\n\t\tf 4 -182 182 183 184\n\t\tmu 0 4 19 84 61 85\n\t\tf 4 -180 18 185 -183\n\t\tmu 0 4 84 24 95 61\n\t\tf 4 -186 19 24 186\n\t\tmu 0 4 61 95 4 106\n\t\tf 4 -184 -187 25 187\n\t\tmu 0 4 85 61 106 29\n\t\tf 4 -176 188 189 33\n\t\tmu 0 4 34 86 62 116\n\t\tf 4 -174 -185 190 -189\n\t\tmu 0 4 86 19 85 62\n\t\tf 4 -191 -188 26 191\n\t\tmu 0 4 62 85 29 104\n\t\tf 4 -190 -192 27 32\n\t\tmu 0 4 116 62 104 7;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 192 \n\t\t0 0 \n\t\t1 0 \n\t\t2 0 \n\t\t3 0 \n\t\t4 0 \n\t\t5 0 \n\t\t6 0 \n\t\t7 0 \n\t\t8 0 \n\t\t9 0 \n\t\t10 0 \n\t\t11 0 \n\t\t12 0 \n\t\t13 0 \n\t\t14 0 \n\t\t15 0 \n\t\t16 0 \n\t\t17 0 \n\t\t18 0 \n\t\t19 0 \n\t\t20 0 \n\t\t21 0 \n\t\t22 0 \n\t\t23 0 \n\t\t24 0 \n\t\t25 0 \n\t\t26 0 \n\t\t27 0 \n\t\t28 0 \n\t\t29 0 \n\t\t30 0 \n\t\t31 0 \n\t\t32 0 \n\t\t33 0 \n\t\t34 0 \n\t\t35 0 \n\t\t36 0 \n\t\t37 0 \n\t\t38 0 \n\t\t39 0 \n\t\t40 0 \n\t\t41 0 \n\t\t42 0 \n\t\t43 0 \n\t\t44 0 \n\t\t45 0 \n\t\t46 0 \n\t\t47 0 \n\t\t48 0 \n\t\t49 0 \n\t\t50 0 \n\t\t51 0 \n\t\t52 0 \n\t\t53 0 \n\t\t54 0 \n\t\t55 0 \n\t\t56 0 \n\t\t57 0 \n\t\t58 0 \n\t\t59 0 \n\t\t60 0 \n\t\t61 0 \n\t\t62 0 \n\t\t63 0 \n\t\t64 0 \n\t\t65 0 \n\t\t66 0 \n\t\t67 0 \n\t\t68 0 \n\t\t69 0 \n\t\t70 0 \n\t\t71 0 \n\t\t72 0 \n\t\t73 0 \n\t\t74 0 \n\t\t75 0 \n\t\t76 0 \n\t\t77 0 \n\t\t78 0 \n\t\t79 0 \n\t\t80 0 \n\t\t81 0 \n\t\t82 0 \n\t\t83 0 \n\t\t84 0 \n\t\t85 0 \n\t\t86 0 \n\t\t87 0 \n\t\t88 0 \n\t\t89 0 \n\t\t90 0 \n\t\t91 0 \n\t\t92 0 \n\t\t93 0 \n\t\t94 0 \n\t\t95 0 \n\t\t96 0 \n\t\t97 0 \n\t\t98 0 \n\t\t99 0 \n\t\t100 0 \n\t\t101 0 \n\t\t102 0 \n\t\t103 0 \n\t\t104 0 \n\t\t105 0 \n\t\t106 0 \n\t\t107 0 \n\t\t108 0 \n\t\t109 0 \n\t\t110 0 \n\t\t111 0 \n\t\t112 0 \n\t\t113 0 \n\t\t114 0 \n\t\t115 0 \n\t\t116 0 \n\t\t117 0 \n\t\t118 0 \n\t\t119 0 \n\t\t120 0 \n\t\t121 0 \n\t\t122 0 \n\t\t123 0 \n\t\t124 0 \n\t\t125 0 \n\t\t126 0 \n\t\t127 0 \n\t\t128 0 \n\t\t129 0 \n\t\t130 0 \n\t\t131 0 \n\t\t132 0 \n\t\t133 0 \n\t\t134 0 \n\t\t135 0 \n\t\t136 0 \n\t\t137 0 \n\t\t138 0 \n\t\t139 0 \n\t\t140 0 \n\t\t141 0 \n\t\t142 0 \n\t\t143 0 \n\t\t144 0 \n\t\t145 0 \n\t\t146 0 \n\t\t147 0 \n\t\t148 0 \n\t\t149 0 \n\t\t150 0 \n\t\t151 0 \n\t\t152 0 \n\t\t153 0 \n\t\t154 0 \n\t\t155 0 \n\t\t156 0 \n\t\t157 0 \n\t\t158 0 \n\t\t159 0 \n\t\t160 0 \n\t\t161 0 \n\t\t162 0 \n\t\t163 0 \n\t\t164 0 \n\t\t165 0 \n\t\t166 0 \n\t\t167 0 \n\t\t168 0 \n\t\t169 0 \n\t\t170 0 \n\t\t171 0 \n\t\t172 0 \n\t\t173 0 \n\t\t174 0 \n\t\t175 0 \n\t\t176 0 \n\t\t177 0 \n\t\t178 0 \n\t\t179 0 \n\t\t180 0 \n\t\t181 0 \n\t\t182 0 \n\t\t183 0 \n\t\t184 0 \n\t\t185 0 \n\t\t186 0 \n\t\t187 0 \n\t\t188 0 \n\t\t189 0 \n\t\t190 0 \n\t\t191 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 98 \n\t\t0 0 \n\t\t1 0 \n\t\t2 0 \n\t\t3 0 \n\t\t4 0 \n\t\t5 0 \n\t\t6 0 \n\t\t7 0 \n\t\t8 0 \n\t\t9 0 \n\t\t10 0 \n\t\t11 0 \n\t\t12 0 \n\t\t13 0 \n\t\t14 0 \n\t\t15 0 \n\t\t16 0 \n\t\t17 0 \n\t\t18 0 \n\t\t19 0 \n\t\t20 0 \n\t\t21 0 \n\t\t22 0 \n\t\t23 0 \n\t\t24 0 \n\t\t25 0 \n\t\t26 0 \n\t\t27 0 \n\t\t28 0 \n\t\t29 0 \n\t\t30 0 \n\t\t31 0 \n\t\t32 0 \n\t\t33 0 \n\t\t34 0 \n\t\t35 0 \n\t\t36 0 \n\t\t37 0 \n\t\t38 0 \n\t\t39 0 \n\t\t40 0 \n\t\t41 0 \n\t\t42 0 \n\t\t43 0 \n\t\t44 0 \n\t\t45 0 \n\t\t46 0 \n\t\t47 0 \n\t\t48 0 \n\t\t49 0 \n\t\t50 0 \n\t\t51 0 \n\t\t52 0 \n\t\t53 0 \n\t\t54 0 \n\t\t55 0 \n\t\t56 0 \n\t\t57 0 \n\t\t58 0 \n\t\t59 0 \n\t\t60 0 \n\t\t61 0 \n\t\t62 0 \n\t\t63 0 \n\t\t64 0 \n\t\t65 0 \n\t\t66 0 \n\t\t67 0 \n\t\t68 0 \n\t\t69 0 \n\t\t70 0 \n\t\t71 0 \n\t\t72 0 \n\t\t73 0 \n\t\t74 0 \n\t\t75 0 \n\t\t76 0 \n\t\t77 0 \n\t\t78 0 \n\t\t79 0 \n\t\t80 0 \n\t\t81 0 \n\t\t82 0 \n\t\t83 0 \n\t\t84 0 \n\t\t85 0 \n\t\t86 0 \n\t\t87 0 \n\t\t88 0 \n\t\t89 0 \n\t\t90 0 \n\t\t91 0 \n\t\t92 0 \n\t\t93 0 \n\t\t94 0 \n\t\t95 0 \n\t\t96 0 \n\t\t97 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pCube2\";\n\trename -uid \"C5B87B16-4F74-5F7B-CA34-2D8EB6909449\";\n\tsetAttr \".t\" -type \"double3\" 2.0545201283856116 0 0 ;\ncreateNode mesh -n \"pCubeShape2\" -p \"pCube2\";\n\trename -uid \"1F0CDD11-4DCC-E425-5D2C-3FBAED9F8F54\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.5 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 125 \".uvst[0].uvsp[0:124]\" -type \"float2\" 0.375 0 0.375 1 0.625\n\t\t 0 0.625 1 0.375 0.25 0.625 0.25 0.375 0.5 0.125 0.25 0.625 0.5 0.875 0.25 0.375 0.75\n\t\t 0.125 0 0.625 0.75 0.875 0 0.5 0.125 0.5 0.375 0.5 0.625 0.5 0.875 0.75 0.125 0.25\n\t\t 0.125 0.5 0 0.5 1 0.625 0.125 0.5 0.25 0.375 0.125 0.625 0.375 0.75 0.25 0.5 0.5\n\t\t 0.375 0.375 0.25 0.25 0.625 0.625 0.875 0.125 0.5 0.75 0.375 0.625 0.125 0.125 0.625\n\t\t 0.875 0.75 0 0.375 0.875 0.25 0 0.4375 0.0625 0.5625 0.0625 0.5625 0.1875 0.4375\n\t\t 0.1875 0.4375 0.3125 0.5625 0.3125 0.5625 0.4375 0.4375 0.4375 0.4375 0.5625 0.5625\n\t\t 0.5625 0.5625 0.6875 0.4375 0.6875 0.4375 0.8125 0.5625 0.8125 0.5625 0.9375 0.4375\n\t\t 0.9375 0.6875 0.0625 0.8125 0.0625 0.8125 0.1875 0.6875 0.1875 0.1875 0.0625 0.3125\n\t\t 0.0625 0.3125 0.1875 0.1875 0.1875 0.5 0.0625 0.5625 0.125 0.5 0.1875 0.4375 0.125\n\t\t 0.5 0.3125 0.5625 0.375 0.5 0.4375 0.4375 0.375 0.5 0.5625 0.5625 0.625 0.5 0.6875\n\t\t 0.4375 0.625 0.5 0.8125 0.5625 0.875 0.5 0.9375 0.4375 0.875 0.75 0.0625 0.8125 0.125\n\t\t 0.75 0.1875 0.6875 0.125 0.25 0.0625 0.3125 0.125 0.25 0.1875 0.1875 0.125 0.4375\n\t\t 0 0.4375 1 0.5625 0 0.5625 1 0.625 0.0625 0.625 0.1875 0.5625 0.25 0.4375 0.25 0.375\n\t\t 0.1875 0.375 0.0625 0.625 0.3125 0.6875 0.25 0.625 0.4375 0.8125 0.25 0.5625 0.5\n\t\t 0.4375 0.5 0.375 0.4375 0.1875 0.25 0.375 0.3125 0.3125 0.25 0.625 0.5625 0.875 0.1875\n\t\t 0.625 0.6875 0.875 0.0625 0.5625 0.75 0.4375 0.75 0.375 0.6875 0.125 0.0625 0.375\n\t\t 0.5625 0.125 0.1875 0.625 0.8125 0.8125 0 0.625 0.9375 0.6875 0 0.375 0.9375 0.3125\n\t\t 0 0.375 0.8125 0.1875 0;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 98 \".vt[0:97]\"  -0.25462967 -0.25462967 0.25462967 0.25462967 -0.25462967 0.25462967\n\t\t -0.25462967 0.25462967 0.25462961 0.25462967 0.25462967 0.25462961 -0.25462967 0.25462967 -0.25462967\n\t\t 0.25462967 0.25462961 -0.25462967 -0.25462967 -0.25462967 -0.25462967 0.25462967 -0.25462967 -0.25462967\n\t\t -0.32161459 0.32161456 -1.2340024e-08 0.32161456 7.4505806e-09 -0.32161456 1.1641532e-09 -0.32161456 -0.32161456\n\t\t -0.32161459 -1.2340024e-08 -0.32161456 0.32161456 -0.32161456 -7.4505806e-09 -0.32161459 -0.32161456 1.2340024e-08\n\t\t 0 -0.32161456 0.32161456 0.32161456 -7.4505806e-09 0.32161456 1.1641532e-09 0.32161459 0.32161456\n\t\t -0.32161456 0 0.32161456 0.32161456 0.32161456 7.4505806e-09 1.1641532e-09 0.32161456 -0.32161456\n\t\t 8.3819032e-09 -1.5366822e-08 0.43923616 7.9162419e-09 0.43923613 -6.0535967e-09 7.9162419e-09 -6.0535967e-09 -0.43923613\n\t\t 7.9162419e-09 -0.43923613 6.0535967e-09 0.43923613 -1.5366822e-08 4.6566129e-10 -0.43923613 -4.6566129e-10 -4.6566129e-10\n\t\t -0.16319445 -0.16319448 0.38194448 0.16319446 -0.16319446 0.38194451 0.16319443 0.16319446 0.38194448\n\t\t -0.16319446 0.16319446 0.38194448 -0.16319446 0.38194448 0.16319443 0.16319445 0.38194448 0.16319445\n\t\t 0.16319443 0.38194448 -0.16319446 -0.16319448 0.38194448 -0.16319445 -0.16319446 0.16319443 -0.38194448\n\t\t 0.16319445 0.16319445 -0.38194448 0.16319445 -0.16319448 -0.38194448 -0.16319448 -0.16319445 -0.38194448\n\t\t -0.16319446 -0.38194448 -0.16319443 0.16319445 -0.38194448 -0.16319445 0.16319443 -0.38194448 0.16319446\n\t\t -0.16319448 -0.38194448 0.16319445 0.38194448 -0.16319446 0.16319446 0.38194448 -0.16319445 -0.16319445\n\t\t 0.38194448 0.16319448 -0.16319445 0.38194451 0.16319446 0.16319443 -0.38194448 -0.16319446 -0.16319446\n\t\t -0.38194448 -0.16319445 0.16319445 -0.38194448 0.16319446 0.16319443 -0.38194448 0.16319446 -0.16319443\n\t\t -7.4505806e-09 -0.17534724 0.40972224 0.17534724 -7.4505806e-09 0.40972224 1.4901161e-08 0.17534724 0.40972227\n\t\t -0.17534724 1.4901161e-08 0.40972221 -7.4505806e-09 0.40972224 0.17534724 0.17534724 0.40972224 7.4505806e-09\n\t\t 1.4901161e-08 0.40972227 -0.17534724 -0.17534724 0.40972221 -1.4901161e-08 -7.4505806e-09 0.17534724 -0.40972224\n\t\t 0.17534724 7.4505806e-09 -0.40972224 1.4901161e-08 -0.17534724 -0.40972227 -0.17534724 -1.4901161e-08 -0.40972221\n\t\t -7.4505806e-09 -0.40972224 -0.17534724 0.17534724 -0.40972224 -7.4505806e-09 1.4901161e-08 -0.40972227 0.17534724\n\t\t -0.17534724 -0.40972221 1.4901161e-08 0.40972224 -0.17534724 7.4505806e-09 0.40972224 -7.4505806e-09 -0.17534724\n\t\t 0.40972227 0.17534724 -1.4901161e-08 0.40972221 1.4901161e-08 0.17534724 -0.40972224 -0.17534724 -7.4505806e-09\n\t\t -0.40972224 -7.4505806e-09 0.17534724 -0.40972227 0.17534724 1.4901161e-08 -0.40972221 1.4901161e-08 -0.17534724\n\t\t -0.15104166 -0.29947916 0.29947916 0.15104166 -0.29947916 0.29947916 0.29947919 -0.15104166 0.29947916\n\t\t 0.29947916 0.15104164 0.29947916 0.15104166 0.29947916 0.29947916 -0.15104166 0.29947916 0.29947916\n\t\t -0.29947916 0.15104164 0.29947916 -0.29947919 -0.15104166 0.29947916 0.29947919 0.29947916 0.15104166\n\t\t 0.29947916 0.29947916 -0.15104164 0.15104166 0.29947916 -0.29947916 -0.15104166 0.29947916 -0.29947916\n\t\t -0.29947916 0.29947916 -0.15104166 -0.29947916 0.29947916 0.15104166 0.29947916 0.15104166 -0.29947916\n\t\t 0.29947916 -0.15104166 -0.29947916 0.15104166 -0.29947916 -0.29947916 -0.15104166 -0.29947916 -0.29947916\n\t\t -0.29947916 -0.15104166 -0.29947916 -0.29947916 0.15104166 -0.29947916 0.29947919 -0.29947916 -0.15104166\n\t\t 0.29947916 -0.29947916 0.15104164 -0.29947916 -0.29947916 0.15104166 -0.29947916 -0.29947916 -0.15104166;\n\tsetAttr -s 192 \".ed\";\n\tsetAttr \".ed[0:165]\"  0 74 1 74 14 1 14 75 1 75 1 1 2 79 1 79 16 1 16 78 1\n\t\t 78 3 1 4 85 1 85 19 1 19 84 1 84 5 1 6 91 1 91 10 1 10 90 1 90 7 1 0 81 1 81 17 1\n\t\t 17 80 1 80 2 1 1 76 1 76 15 1 15 77 1 77 3 1 2 87 1 87 8 1 8 86 1 86 4 1 3 82 1 82 18 1\n\t\t 18 83 1 83 5 1 4 93 1 93 11 1 11 92 1 92 6 1 5 88 1 88 9 1 9 89 1 89 7 1 6 97 1 97 13 1\n\t\t 13 96 1 96 0 1 7 94 1 94 12 1 12 95 1 95 1 1 74 26 1 26 81 1 14 50 1 50 26 1 50 20 1\n\t\t 20 53 1 53 26 1 53 17 1 75 27 1 27 50 1 76 27 1 15 51 1 51 27 1 51 20 1 51 28 1 28 52 1\n\t\t 52 20 1 77 28 1 78 28 1 16 52 1 53 29 1 29 80 1 52 29 1 79 29 1 79 30 1 30 87 1 16 54 1\n\t\t 54 30 1 54 21 1 21 57 1 57 30 1 57 8 1 78 31 1 31 54 1 82 31 1 18 55 1 55 31 1 55 21 1\n\t\t 55 32 1 32 56 1 56 21 1 83 32 1 84 32 1 19 56 1 57 33 1 33 86 1 56 33 1 85 33 1 85 34 1\n\t\t 34 93 1 19 58 1 58 34 1 58 22 1 22 61 1 61 34 1 61 11 1 84 35 1 35 58 1 88 35 1 9 59 1\n\t\t 59 35 1 59 22 1 59 36 1 36 60 1 60 22 1 89 36 1 90 36 1 10 60 1 61 37 1 37 92 1 60 37 1\n\t\t 91 37 1 91 38 1 38 97 1 10 62 1 62 38 1 62 23 1 23 65 1 65 38 1 65 13 1 90 39 1 39 62 1\n\t\t 94 39 1 12 63 1 63 39 1 63 23 1 63 40 1 40 64 1 64 23 1 95 40 1 75 40 1 14 64 1 65 41 1\n\t\t 41 96 1 64 41 1 74 41 1 95 42 1 42 76 1 12 66 1 66 42 1 66 24 1 24 69 1 69 42 1 69 15 1\n\t\t 94 43 1 43 66 1 89 43 1 9 67 1 67 43 1 67 24 1 67 44 1 44 68 1 68 24 1 88 44 1 83 44 1\n\t\t 18 68 1 69 45 1 45 77 1;\n\tsetAttr \".ed[166:191]\" 68 45 1 82 45 1 97 46 1 46 92 1 13 70 1 70 46 1 70 25 1\n\t\t 25 73 1 73 46 1 73 11 1 96 47 1 47 70 1 81 47 1 17 71 1 71 47 1 71 25 1 71 48 1 48 72 1\n\t\t 72 25 1 80 48 1 87 48 1 8 72 1 73 49 1 49 93 1 72 49 1 86 49 1;\n\tsetAttr -s 98 \".n[0:97]\" -type \"float3\"  -0.57735026 -0.57735026 0.57735026\n\t\t -0.31321946 -0.67152578 0.67152566 -0.32932183 -0.3293218 0.8849262 -0.67152572 -0.31321949\n\t\t 0.67152572 3.0349128e-08 -0.70710683 0.70710677 -3.648627e-08 -0.34515977 0.93854392\n\t\t -1.2389945e-07 -2.8997745e-08 1 -0.34515977 5.6132716e-09 0.93854398 -0.70710683\n\t\t 3.641896e-08 0.70710683 0.31321949 -0.67152572 0.67152572 0.32932177 -0.32932186\n\t\t 0.8849262 0.57735026 -0.57735032 0.57735032 0.67152572 -0.31321949 0.67152572 0.70710683\n\t\t 2.7314215e-08 0.70710671 0.34515974 3.6486274e-08 0.93854403 0.32932189 0.32932189\n\t\t 0.88492608 -6.455263e-08 0.34515974 0.93854403 0.67152572 0.31321943 0.67152572 0.57735026\n\t\t 0.57735026 0.57735038 0.31321961 0.67152572 0.67152572 -3.0349132e-09 0.70710683\n\t\t 0.70710677 -0.32932189 0.32932183 0.88492608 -0.67152566 0.31321952 0.67152572 -0.31321952\n\t\t 0.67152572 0.67152566 -0.57735026 0.57735032 0.57735026 -0.32932183 0.88492608 0.32932186\n\t\t -0.67152566 0.67152578 0.31321958 -4.209954e-08 0.93854392 0.34515974 -3.4270062e-08\n\t\t 1 8.4357076e-08 -0.3451598 0.93854392 4.4906177e-08 -0.70710677 0.70710689 2.731422e-08\n\t\t 0.32932177 0.8849262 0.32932168 0.67152566 0.67152572 0.31321958 0.70710677 0.70710683\n\t\t -1.8209478e-08 0.34515974 0.93854392 5.3326083e-08 0.32932189 0.88492614 -0.3293218\n\t\t -1.6839817e-08 0.93854403 -0.34515971 0.67152572 0.67152572 -0.31321958 0.57735032\n\t\t 0.57735026 -0.57735032 0.31321955 0.67152566 -0.67152578 -3.6418953e-08 0.70710683\n\t\t -0.70710683 -0.32932189 0.8849262 -0.32932183 -0.67152572 0.67152566 -0.31321955\n\t\t -0.31321949 0.67152572 -0.67152572 -0.57735026 0.57735026 -0.57735032 -0.32932192\n\t\t 0.32932177 -0.8849262 -0.67152572 0.31321946 -0.67152572 -2.3575743e-07 0.34515974\n\t\t -0.93854403 -1.212633e-07 3.9542378e-08 -1 -0.3451598 2.2453088e-08 -0.93854403 -0.70710683\n\t\t 1.2139654e-08 -0.70710677 0.32932171 0.32932189 -0.88492626 0.67152572 0.31321952\n\t\t -0.67152572 0.70710689 3.0349128e-09 -0.70710671 0.34515974 2.5259729e-08 -0.93854403\n\t\t 0.32932183 -0.32932183 -0.88492608 3.0873e-08 -0.34515974 -0.93854403 0.67152572\n\t\t -0.31321949 -0.67152572 0.57735026 -0.57735032 -0.57735026 0.31321949 -0.67152584\n\t\t -0.67152566 -4.5523691e-08 -0.70710683 -0.70710677 -0.32932177 -0.32932177 -0.8849262\n\t\t -0.67152578 -0.31321952 -0.67152572 -0.31321952 -0.67152578 -0.67152572 -0.57735032\n\t\t -0.57735026 -0.57735026 -0.32932186 -0.8849262 -0.32932186 -0.67152572 -0.67152572\n\t\t -0.31321952 -3.9292907e-08 -0.93854403 -0.34515974 -3.4270062e-08 -1 -8.4357076e-08\n\t\t -0.3451598 -0.93854392 -4.4906177e-08 -0.70710683 -0.70710677 -3.3384048e-08 0.32932177\n\t\t -0.8849262 -0.32932171 0.67152578 -0.67152566 -0.31321949 0.70710689 -0.70710677\n\t\t 3.0349135e-08 0.34515974 -0.93854392 -5.3326083e-08 0.32932186 -0.8849262 0.32932177\n\t\t -1.6839817e-08 -0.93854403 0.34515971 0.67152572 -0.67152572 0.31321955 -0.32932189\n\t\t -0.8849262 0.32932183 -0.67152578 -0.67152566 0.31321949 0.88492614 -0.32932177 0.3293218\n\t\t 0.93854403 -0.34515971 3.9292907e-08 1 -6.0631649e-08 1.8453111e-08 0.93854403 -3.6486263e-08\n\t\t 0.34515971 0.88492614 -0.32932177 -0.32932186 0.93854403 -1.1226544e-08 -0.3451598\n\t\t 0.88492614 0.32932177 -0.32932186 0.93854403 0.34515968 -2.245309e-08 0.88492614\n\t\t 0.32932177 0.32932186 -0.8849262 -0.32932183 -0.3293218 -0.93854392 -0.34515977 -1.9646452e-08\n\t\t -1 -4.7450854e-08 -2.3725427e-08 -0.93854403 -2.2453088e-08 -0.34515974 -0.8849262\n\t\t -0.32932177 0.32932177 -0.93854392 0 0.34515974 -0.88492608 0.32932186 0.32932192\n\t\t -0.93854392 0.3451598 -1.1226545e-08 -0.8849262 0.32932183 -0.32932186;\n\tsetAttr -s 96 -ch 384 \".fc[0:95]\" -type \"polyFaces\" \n\t\tf 4 0 48 49 -17\n\t\tmu 0 4 0 87 39 96\n\t\tf 4 1 50 51 -49\n\t\tmu 0 4 87 20 63 39\n\t\tf 4 -52 52 53 54\n\t\tmu 0 4 39 63 14 66\n\t\tf 4 -50 -55 55 -18\n\t\tmu 0 4 96 39 66 24\n\t\tf 4 2 56 57 -51\n\t\tmu 0 4 20 89 40 63\n\t\tf 4 3 20 58 -57\n\t\tmu 0 4 89 2 91 40\n\t\tf 4 -59 21 59 60\n\t\tmu 0 4 40 91 22 64\n\t\tf 4 -58 -61 61 -53\n\t\tmu 0 4 63 40 64 14\n\t\tf 4 -62 62 63 64\n\t\tmu 0 4 14 64 41 65\n\t\tf 4 -60 22 65 -63\n\t\tmu 0 4 64 22 92 41\n\t\tf 4 -66 23 -8 66\n\t\tmu 0 4 41 92 5 93\n\t\tf 4 -64 -67 -7 67\n\t\tmu 0 4 65 41 93 23\n\t\tf 4 -56 68 69 -19\n\t\tmu 0 4 24 66 42 95\n\t\tf 4 -54 -65 70 -69\n\t\tmu 0 4 66 14 65 42\n\t\tf 4 -71 -68 -6 71\n\t\tmu 0 4 42 65 23 94\n\t\tf 4 -70 -72 -5 -20\n\t\tmu 0 4 95 42 94 4\n\t\tf 4 4 72 73 -25\n\t\tmu 0 4 4 94 43 105\n\t\tf 4 5 74 75 -73\n\t\tmu 0 4 94 23 67 43\n\t\tf 4 -76 76 77 78\n\t\tmu 0 4 43 67 15 70\n\t\tf 4 -74 -79 79 -26\n\t\tmu 0 4 105 43 70 28\n\t\tf 4 6 80 81 -75\n\t\tmu 0 4 23 93 44 67\n\t\tf 4 7 28 82 -81\n\t\tmu 0 4 93 5 97 44\n\t\tf 4 -83 29 83 84\n\t\tmu 0 4 44 97 25 68\n\t\tf 4 -82 -85 85 -77\n\t\tmu 0 4 67 44 68 15\n\t\tf 4 -86 86 87 88\n\t\tmu 0 4 15 68 45 69\n\t\tf 4 -84 30 89 -87\n\t\tmu 0 4 68 25 99 45\n\t\tf 4 -90 31 -12 90\n\t\tmu 0 4 45 99 8 101\n\t\tf 4 -88 -91 -11 91\n\t\tmu 0 4 69 45 101 27\n\t\tf 4 -80 92 93 -27\n\t\tmu 0 4 28 70 46 103\n\t\tf 4 -78 -89 94 -93\n\t\tmu 0 4 70 15 69 46\n\t\tf 4 -95 -92 -10 95\n\t\tmu 0 4 46 69 27 102\n\t\tf 4 -94 -96 -9 -28\n\t\tmu 0 4 103 46 102 6\n\t\tf 4 8 96 97 -33\n\t\tmu 0 4 6 102 47 115\n\t\tf 4 9 98 99 -97\n\t\tmu 0 4 102 27 71 47\n\t\tf 4 -100 100 101 102\n\t\tmu 0 4 47 71 16 74\n\t\tf 4 -98 -103 103 -34\n\t\tmu 0 4 115 47 74 33\n\t\tf 4 10 104 105 -99\n\t\tmu 0 4 27 101 48 71\n\t\tf 4 11 36 106 -105\n\t\tmu 0 4 101 8 107 48\n\t\tf 4 -107 37 107 108\n\t\tmu 0 4 48 107 30 72\n\t\tf 4 -106 -109 109 -101\n\t\tmu 0 4 71 48 72 16\n\t\tf 4 -110 110 111 112\n\t\tmu 0 4 16 72 49 73\n\t\tf 4 -108 38 113 -111\n\t\tmu 0 4 72 30 109 49\n\t\tf 4 -114 39 -16 114\n\t\tmu 0 4 49 109 12 111\n\t\tf 4 -112 -115 -15 115\n\t\tmu 0 4 73 49 111 32\n\t\tf 4 -104 116 117 -35\n\t\tmu 0 4 33 74 50 113\n\t\tf 4 -102 -113 118 -117\n\t\tmu 0 4 74 16 73 50\n\t\tf 4 -119 -116 -14 119\n\t\tmu 0 4 50 73 32 112\n\t\tf 4 -118 -120 -13 -36\n\t\tmu 0 4 113 50 112 10\n\t\tf 4 12 120 121 -41\n\t\tmu 0 4 10 112 51 123\n\t\tf 4 13 122 123 -121\n\t\tmu 0 4 112 32 75 51\n\t\tf 4 -124 124 125 126\n\t\tmu 0 4 51 75 17 78\n\t\tf 4 -122 -127 127 -42\n\t\tmu 0 4 123 51 78 37\n\t\tf 4 14 128 129 -123\n\t\tmu 0 4 32 111 52 75\n\t\tf 4 15 44 130 -129\n\t\tmu 0 4 111 12 117 52\n\t\tf 4 -131 45 131 132\n\t\tmu 0 4 52 117 35 76\n\t\tf 4 -130 -133 133 -125\n\t\tmu 0 4 75 52 76 17\n\t\tf 4 -134 134 135 136\n\t\tmu 0 4 17 76 53 77\n\t\tf 4 -132 46 137 -135\n\t\tmu 0 4 76 35 119 53\n\t\tf 4 -138 47 -4 138\n\t\tmu 0 4 53 119 3 90\n\t\tf 4 -136 -139 -3 139\n\t\tmu 0 4 77 53 90 21\n\t\tf 4 -128 140 141 -43\n\t\tmu 0 4 37 78 54 121\n\t\tf 4 -126 -137 142 -141\n\t\tmu 0 4 78 17 77 54\n\t\tf 4 -143 -140 -2 143\n\t\tmu 0 4 54 77 21 88\n\t\tf 4 -142 -144 -1 -44\n\t\tmu 0 4 121 54 88 1\n\t\tf 4 -48 144 145 -21\n\t\tmu 0 4 2 120 55 91\n\t\tf 4 -47 146 147 -145\n\t\tmu 0 4 120 36 79 55\n\t\tf 4 -148 148 149 150\n\t\tmu 0 4 55 79 18 82\n\t\tf 4 -146 -151 151 -22\n\t\tmu 0 4 91 55 82 22\n\t\tf 4 -46 152 153 -147\n\t\tmu 0 4 36 118 56 79\n\t\tf 4 -45 -40 154 -153\n\t\tmu 0 4 118 13 110 56\n\t\tf 4 -155 -39 155 156\n\t\tmu 0 4 56 110 31 80\n\t\tf 4 -154 -157 157 -149\n\t\tmu 0 4 79 56 80 18\n\t\tf 4 -158 158 159 160\n\t\tmu 0 4 18 80 57 81\n\t\tf 4 -156 -38 161 -159\n\t\tmu 0 4 80 31 108 57\n\t\tf 4 -162 -37 -32 162\n\t\tmu 0 4 57 108 9 100\n\t\tf 4 -160 -163 -31 163\n\t\tmu 0 4 81 57 100 26\n\t\tf 4 -152 164 165 -23\n\t\tmu 0 4 22 82 58 92\n\t\tf 4 -150 -161 166 -165\n\t\tmu 0 4 82 18 81 58\n\t\tf 4 -167 -164 -30 167\n\t\tmu 0 4 58 81 26 98\n\t\tf 4 -166 -168 -29 -24\n\t\tmu 0 4 92 58 98 5\n\t\tf 4 40 168 169 35\n\t\tmu 0 4 11 124 59 114\n\t\tf 4 41 170 171 -169\n\t\tmu 0 4 124 38 83 59\n\t\tf 4 -172 172 173 174\n\t\tmu 0 4 59 83 19 86\n\t\tf 4 -170 -175 175 34\n\t\tmu 0 4 114 59 86 34\n\t\tf 4 42 176 177 -171\n\t\tmu 0 4 38 122 60 83\n\t\tf 4 43 16 178 -177\n\t\tmu 0 4 122 0 96 60\n\t\tf 4 -179 17 179 180\n\t\tmu 0 4 60 96 24 84\n\t\tf 4 -178 -181 181 -173\n\t\tmu 0 4 83 60 84 19\n\t\tf 4 -182 182 183 184\n\t\tmu 0 4 19 84 61 85\n\t\tf 4 -180 18 185 -183\n\t\tmu 0 4 84 24 95 61\n\t\tf 4 -186 19 24 186\n\t\tmu 0 4 61 95 4 106\n\t\tf 4 -184 -187 25 187\n\t\tmu 0 4 85 61 106 29\n\t\tf 4 -176 188 189 33\n\t\tmu 0 4 34 86 62 116\n\t\tf 4 -174 -185 190 -189\n\t\tmu 0 4 86 19 85 62\n\t\tf 4 -191 -188 26 191\n\t\tmu 0 4 62 85 29 104\n\t\tf 4 -190 -192 27 32\n\t\tmu 0 4 116 62 104 7;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"transform1\";\n\trename -uid \"05DB6FC4-4F12-33A1-5317-62A7C044A01B\";\ncreateNode transform -n \"camera1\";\n\trename -uid \"D0914FE0-4E58-CD79-7328-B3B879E929FB\";\n\tsetAttr \".t\" -type \"double3\" 2.6865863441445739 2.7743940812315451 3.5910138393504001 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"2BD62BA4-4901-89C5-D257-1ABC8385D52A\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 4.8370084707132754;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 1.012069090314899 0 0 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"8182EC9C-4330-558C-BE64-469BE1DD2200\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"2D86C652-4826-6BBC-AF9D-289C8A88F760\";\n\tsetAttr \".bsdt[0].bscd\" -type \"Int32Array\" 1 0 ;\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"20EA8812-4F37-F398-B3AA-74B6F3D72704\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"E81E3CD8-4CE1-1B81-41E9-E0808BE83695\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"73B58932-4CEC-DAB6-6BB4-60BE49375B2C\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"66B56674-42E2-02B3-D6BF-B9B0BCE8BCC8\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"46E9D55C-4D4C-17C7-EFB6-E4BD4AFEC8FE\";\n\tsetAttr \".g\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"7DCD9A3F-4BED-0C0B-F97B-5BB48C05421B\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 1\\n            -showReferenceMembers 1\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 1 -size 10 -divisions 4 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"EA2C5BDE-4CE0-E997-760B-D4B791BD617B\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode blendShape -n \"blendShape1\";\n\trename -uid \"CC193D97-4C3A-B179-8300-42B5A827E8C6\";\n\taddAttr -ci true -h true -sn \"aal\" -ln \"attributeAliasList\" -dt \"attributeAlias\";\n\tsetAttr \".w[0]\"  0.5;\n\tsetAttr \".mlid\" 0;\n\tsetAttr \".mlpr\" 0;\n\tsetAttr \".pndr[0]\"  0;\n\tsetAttr \".tgdt[0].cid\" -type \"Int32Array\" 1 0 ;\n\tsetAttr \".aal\" -type \"attributeAlias\" {\"pCube2\",\"weight[0]\"} ;\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"C9A2F781-4F4C-6A00-87E0-2294FDBAA22E\";\ncreateNode objectSet -n \"blendShape1Set\";\n\trename -uid \"725A0002-4498-5D17-B30E-9FBB92A12D4A\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"blendShape1GroupId\";\n\trename -uid \"F8D9CD7D-4B1D-D687-53E5-7A80E18C84B3\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"blendShape1GroupParts\";\n\trename -uid \"BFF7E5B6-4FD3-E939-E44A-55B79295E066\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"91C0B6A0-4083-E4D6-AC86-508670F889E7\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"1A763C7E-433D-31FC-D1D9-2FBA6CB34392\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"0A7586BA-484B-B8BA-8A7A-3F95592F6C07\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"0F701B30-4957-7B7B-E8F2-399CA61621FD\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"blendShape1GroupId.id\" \"pCubeShape1.iog.og[3].gid\";\nconnectAttr \"blendShape1Set.mwc\" \"pCubeShape1.iog.og[3].gco\";\nconnectAttr \"groupId2.id\" \"pCubeShape1.iog.og[4].gid\";\nconnectAttr \"tweakSet1.mwc\" \"pCubeShape1.iog.og[4].gco\";\nconnectAttr \"blendShape1.og[0]\" \"pCubeShape1.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"pCubeShape1.twl\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"blendShape1.mlpr\" \"shapeEditorManager.bspr[0]\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"blendShape1GroupParts.og\" \"blendShape1.ip[0].ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1.ip[0].gi\";\nconnectAttr \"pCubeShape2.w\" \"blendShape1.it[0].itg[0].iti[6000].igt\";\nconnectAttr \"shapeEditorManager.obsv[0]\" \"blendShape1.tgdt[0].dpvs\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"blendShape1GroupId.msg\" \"blendShape1Set.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[3]\" \"blendShape1Set.dsm\" -na;\nconnectAttr \"blendShape1.msg\" \"blendShape1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"blendShape1GroupParts.ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[4]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"pCubeShape1Orig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pCubeShape2.iog\" \":initialShadingGroup.dsm\" -na;\n// End of CubeToSphere.ma\n"
  },
  {
    "path": "maya/scenes/blend/targets_existing/CubeToSphereAnim.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: CubeToSphereAnim.ma\n//Last modified: Sun, Feb 03, 2019 11:54:01 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"0AD65ADC-4CEB-89FE-55B0-599DE3CE5D6D\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1.1279147655975093 2.9091765380222072 3.8823081026462791 ;\n\tsetAttr \".r\" -type \"double3\" -35.738352729610483 16.199999999999669 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"C4F0FEA4-4000-B2D7-80B1-51989BD5F6EF\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 4.9807445162345267;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0 0 1.4901161193847656e-08 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"40A50CD8-473B-3E3C-2D97-52B261128287\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"5FD09E2A-4D8B-165C-825C-098D1056517D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"675EEA56-4565-8A9D-00C8-C49A83254BE8\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"F5E401AC-4591-2B24-C3CF-F195521977A9\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"76F199E4-42FE-F9CD-9F13-4097832551D6\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"A3561AA5-4910-B156-C375-4AB98D953E47\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"41162F3B-4E66-D20B-E93F-BEAF2A1A2230\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"B599D3BB-4977-A3AF-12DA-78822CB7312D\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode mesh -n \"pCubeShape1Orig\" -p \"pCube1\";\n\trename -uid \"CA932FE6-44C2-4460-8DAB-EF822EFA6C16\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 125 \".uvst[0].uvsp[0:124]\" -type \"float2\" 0.375 0 0.375 1 0.625\n\t\t 0 0.625 1 0.375 0.25 0.625 0.25 0.375 0.5 0.125 0.25 0.625 0.5 0.875 0.25 0.375 0.75\n\t\t 0.125 0 0.625 0.75 0.875 0 0.5 0.125 0.5 0.375 0.5 0.625 0.5 0.875 0.75 0.125 0.25\n\t\t 0.125 0.5 0 0.5 1 0.625 0.125 0.5 0.25 0.375 0.125 0.625 0.375 0.75 0.25 0.5 0.5\n\t\t 0.375 0.375 0.25 0.25 0.625 0.625 0.875 0.125 0.5 0.75 0.375 0.625 0.125 0.125 0.625\n\t\t 0.875 0.75 0 0.375 0.875 0.25 0 0.4375 0.0625 0.5625 0.0625 0.5625 0.1875 0.4375\n\t\t 0.1875 0.4375 0.3125 0.5625 0.3125 0.5625 0.4375 0.4375 0.4375 0.4375 0.5625 0.5625\n\t\t 0.5625 0.5625 0.6875 0.4375 0.6875 0.4375 0.8125 0.5625 0.8125 0.5625 0.9375 0.4375\n\t\t 0.9375 0.6875 0.0625 0.8125 0.0625 0.8125 0.1875 0.6875 0.1875 0.1875 0.0625 0.3125\n\t\t 0.0625 0.3125 0.1875 0.1875 0.1875 0.5 0.0625 0.5625 0.125 0.5 0.1875 0.4375 0.125\n\t\t 0.5 0.3125 0.5625 0.375 0.5 0.4375 0.4375 0.375 0.5 0.5625 0.5625 0.625 0.5 0.6875\n\t\t 0.4375 0.625 0.5 0.8125 0.5625 0.875 0.5 0.9375 0.4375 0.875 0.75 0.0625 0.8125 0.125\n\t\t 0.75 0.1875 0.6875 0.125 0.25 0.0625 0.3125 0.125 0.25 0.1875 0.1875 0.125 0.4375\n\t\t 0 0.4375 1 0.5625 0 0.5625 1 0.625 0.0625 0.625 0.1875 0.5625 0.25 0.4375 0.25 0.375\n\t\t 0.1875 0.375 0.0625 0.625 0.3125 0.6875 0.25 0.625 0.4375 0.8125 0.25 0.5625 0.5\n\t\t 0.4375 0.5 0.375 0.4375 0.1875 0.25 0.375 0.3125 0.3125 0.25 0.625 0.5625 0.875 0.1875\n\t\t 0.625 0.6875 0.875 0.0625 0.5625 0.75 0.4375 0.75 0.375 0.6875 0.125 0.0625 0.375\n\t\t 0.5625 0.125 0.1875 0.625 0.8125 0.8125 0 0.625 0.9375 0.6875 0 0.375 0.9375 0.3125\n\t\t 0 0.375 0.8125 0.1875 0;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 98 \".vt[0:97]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5 -0.5 0.5 0 0.5 0 -0.5 0 -0.5 -0.5\n\t\t -0.5 0 -0.5 0.5 -0.5 0 -0.5 -0.5 0 0 -0.5 0.5 0.5 0 0.5 0 0.5 0.5 -0.5 0 0.5 0.5 0.5 0\n\t\t 0 0.5 -0.5 0 0 0.5 0 0.5 0 0 0 -0.5 0 -0.5 0 0.5 0 0 -0.5 0 0 -0.25 -0.25 0.5 0.25 -0.25 0.5\n\t\t 0.25 0.25 0.5 -0.25 0.25 0.5 -0.25 0.5 0.25 0.25 0.5 0.25 0.25 0.5 -0.25 -0.25 0.5 -0.25\n\t\t -0.25 0.25 -0.5 0.25 0.25 -0.5 0.25 -0.25 -0.5 -0.25 -0.25 -0.5 -0.25 -0.5 -0.25\n\t\t 0.25 -0.5 -0.25 0.25 -0.5 0.25 -0.25 -0.5 0.25 0.5 -0.25 0.25 0.5 -0.25 -0.25 0.5 0.25 -0.25\n\t\t 0.5 0.25 0.25 -0.5 -0.25 -0.25 -0.5 -0.25 0.25 -0.5 0.25 0.25 -0.5 0.25 -0.25 0 -0.25 0.5\n\t\t 0.25 0 0.5 0 0.25 0.5 -0.25 0 0.5 0 0.5 0.25 0.25 0.5 0 0 0.5 -0.25 -0.25 0.5 0 0 0.25 -0.5\n\t\t 0.25 0 -0.5 0 -0.25 -0.5 -0.25 0 -0.5 0 -0.5 -0.25 0.25 -0.5 0 0 -0.5 0.25 -0.25 -0.5 0\n\t\t 0.5 -0.25 0 0.5 0 -0.25 0.5 0.25 0 0.5 0 0.25 -0.5 -0.25 0 -0.5 0 0.25 -0.5 0.25 0\n\t\t -0.5 0 -0.25 -0.25 -0.5 0.5 0.25 -0.5 0.5 0.5 -0.25 0.5 0.5 0.25 0.5 0.25 0.5 0.5\n\t\t -0.25 0.5 0.5 -0.5 0.25 0.5 -0.5 -0.25 0.5 0.5 0.5 0.25 0.5 0.5 -0.25 0.25 0.5 -0.5\n\t\t -0.25 0.5 -0.5 -0.5 0.5 -0.25 -0.5 0.5 0.25 0.5 0.25 -0.5 0.5 -0.25 -0.5 0.25 -0.5 -0.5\n\t\t -0.25 -0.5 -0.5 -0.5 -0.25 -0.5 -0.5 0.25 -0.5 0.5 -0.5 -0.25 0.5 -0.5 0.25 -0.5 -0.5 0.25\n\t\t -0.5 -0.5 -0.25;\n\tsetAttr -s 192 \".ed\";\n\tsetAttr \".ed[0:165]\"  0 74 0 74 14 0 14 75 0 75 1 0 2 79 0 79 16 0 16 78 0\n\t\t 78 3 0 4 85 0 85 19 0 19 84 0 84 5 0 6 91 0 91 10 0 10 90 0 90 7 0 0 81 0 81 17 0\n\t\t 17 80 0 80 2 0 1 76 0 76 15 0 15 77 0 77 3 0 2 87 0 87 8 0 8 86 0 86 4 0 3 82 0 82 18 0\n\t\t 18 83 0 83 5 0 4 93 0 93 11 0 11 92 0 92 6 0 5 88 0 88 9 0 9 89 0 89 7 0 6 97 0 97 13 0\n\t\t 13 96 0 96 0 0 7 94 0 94 12 0 12 95 0 95 1 0 74 26 1 26 81 1 14 50 1 50 26 1 50 20 1\n\t\t 20 53 1 53 26 1 53 17 1 75 27 1 27 50 1 76 27 1 15 51 1 51 27 1 51 20 1 51 28 1 28 52 1\n\t\t 52 20 1 77 28 1 78 28 1 16 52 1 53 29 1 29 80 1 52 29 1 79 29 1 79 30 1 30 87 1 16 54 1\n\t\t 54 30 1 54 21 1 21 57 1 57 30 1 57 8 1 78 31 1 31 54 1 82 31 1 18 55 1 55 31 1 55 21 1\n\t\t 55 32 1 32 56 1 56 21 1 83 32 1 84 32 1 19 56 1 57 33 1 33 86 1 56 33 1 85 33 1 85 34 1\n\t\t 34 93 1 19 58 1 58 34 1 58 22 1 22 61 1 61 34 1 61 11 1 84 35 1 35 58 1 88 35 1 9 59 1\n\t\t 59 35 1 59 22 1 59 36 1 36 60 1 60 22 1 89 36 1 90 36 1 10 60 1 61 37 1 37 92 1 60 37 1\n\t\t 91 37 1 91 38 1 38 97 1 10 62 1 62 38 1 62 23 1 23 65 1 65 38 1 65 13 1 90 39 1 39 62 1\n\t\t 94 39 1 12 63 1 63 39 1 63 23 1 63 40 1 40 64 1 64 23 1 95 40 1 75 40 1 14 64 1 65 41 1\n\t\t 41 96 1 64 41 1 74 41 1 95 42 1 42 76 1 12 66 1 66 42 1 66 24 1 24 69 1 69 42 1 69 15 1\n\t\t 94 43 1 43 66 1 89 43 1 9 67 1 67 43 1 67 24 1 67 44 1 44 68 1 68 24 1 88 44 1 83 44 1\n\t\t 18 68 1 69 45 1 45 77 1;\n\tsetAttr \".ed[166:191]\" 68 45 1 82 45 1 97 46 1 46 92 1 13 70 1 70 46 1 70 25 1\n\t\t 25 73 1 73 46 1 73 11 1 96 47 1 47 70 1 81 47 1 17 71 1 71 47 1 71 25 1 71 48 1 48 72 1\n\t\t 72 25 1 80 48 1 87 48 1 8 72 1 73 49 1 49 93 1 72 49 1 86 49 1;\n\tsetAttr -s 96 -ch 384 \".fc[0:95]\" -type \"polyFaces\" \n\t\tf 4 0 48 49 -17\n\t\tmu 0 4 0 87 39 96\n\t\tf 4 1 50 51 -49\n\t\tmu 0 4 87 20 63 39\n\t\tf 4 -52 52 53 54\n\t\tmu 0 4 39 63 14 66\n\t\tf 4 -50 -55 55 -18\n\t\tmu 0 4 96 39 66 24\n\t\tf 4 2 56 57 -51\n\t\tmu 0 4 20 89 40 63\n\t\tf 4 3 20 58 -57\n\t\tmu 0 4 89 2 91 40\n\t\tf 4 -59 21 59 60\n\t\tmu 0 4 40 91 22 64\n\t\tf 4 -58 -61 61 -53\n\t\tmu 0 4 63 40 64 14\n\t\tf 4 -62 62 63 64\n\t\tmu 0 4 14 64 41 65\n\t\tf 4 -60 22 65 -63\n\t\tmu 0 4 64 22 92 41\n\t\tf 4 -66 23 -8 66\n\t\tmu 0 4 41 92 5 93\n\t\tf 4 -64 -67 -7 67\n\t\tmu 0 4 65 41 93 23\n\t\tf 4 -56 68 69 -19\n\t\tmu 0 4 24 66 42 95\n\t\tf 4 -54 -65 70 -69\n\t\tmu 0 4 66 14 65 42\n\t\tf 4 -71 -68 -6 71\n\t\tmu 0 4 42 65 23 94\n\t\tf 4 -70 -72 -5 -20\n\t\tmu 0 4 95 42 94 4\n\t\tf 4 4 72 73 -25\n\t\tmu 0 4 4 94 43 105\n\t\tf 4 5 74 75 -73\n\t\tmu 0 4 94 23 67 43\n\t\tf 4 -76 76 77 78\n\t\tmu 0 4 43 67 15 70\n\t\tf 4 -74 -79 79 -26\n\t\tmu 0 4 105 43 70 28\n\t\tf 4 6 80 81 -75\n\t\tmu 0 4 23 93 44 67\n\t\tf 4 7 28 82 -81\n\t\tmu 0 4 93 5 97 44\n\t\tf 4 -83 29 83 84\n\t\tmu 0 4 44 97 25 68\n\t\tf 4 -82 -85 85 -77\n\t\tmu 0 4 67 44 68 15\n\t\tf 4 -86 86 87 88\n\t\tmu 0 4 15 68 45 69\n\t\tf 4 -84 30 89 -87\n\t\tmu 0 4 68 25 99 45\n\t\tf 4 -90 31 -12 90\n\t\tmu 0 4 45 99 8 101\n\t\tf 4 -88 -91 -11 91\n\t\tmu 0 4 69 45 101 27\n\t\tf 4 -80 92 93 -27\n\t\tmu 0 4 28 70 46 103\n\t\tf 4 -78 -89 94 -93\n\t\tmu 0 4 70 15 69 46\n\t\tf 4 -95 -92 -10 95\n\t\tmu 0 4 46 69 27 102\n\t\tf 4 -94 -96 -9 -28\n\t\tmu 0 4 103 46 102 6\n\t\tf 4 8 96 97 -33\n\t\tmu 0 4 6 102 47 115\n\t\tf 4 9 98 99 -97\n\t\tmu 0 4 102 27 71 47\n\t\tf 4 -100 100 101 102\n\t\tmu 0 4 47 71 16 74\n\t\tf 4 -98 -103 103 -34\n\t\tmu 0 4 115 47 74 33\n\t\tf 4 10 104 105 -99\n\t\tmu 0 4 27 101 48 71\n\t\tf 4 11 36 106 -105\n\t\tmu 0 4 101 8 107 48\n\t\tf 4 -107 37 107 108\n\t\tmu 0 4 48 107 30 72\n\t\tf 4 -106 -109 109 -101\n\t\tmu 0 4 71 48 72 16\n\t\tf 4 -110 110 111 112\n\t\tmu 0 4 16 72 49 73\n\t\tf 4 -108 38 113 -111\n\t\tmu 0 4 72 30 109 49\n\t\tf 4 -114 39 -16 114\n\t\tmu 0 4 49 109 12 111\n\t\tf 4 -112 -115 -15 115\n\t\tmu 0 4 73 49 111 32\n\t\tf 4 -104 116 117 -35\n\t\tmu 0 4 33 74 50 113\n\t\tf 4 -102 -113 118 -117\n\t\tmu 0 4 74 16 73 50\n\t\tf 4 -119 -116 -14 119\n\t\tmu 0 4 50 73 32 112\n\t\tf 4 -118 -120 -13 -36\n\t\tmu 0 4 113 50 112 10\n\t\tf 4 12 120 121 -41\n\t\tmu 0 4 10 112 51 123\n\t\tf 4 13 122 123 -121\n\t\tmu 0 4 112 32 75 51\n\t\tf 4 -124 124 125 126\n\t\tmu 0 4 51 75 17 78\n\t\tf 4 -122 -127 127 -42\n\t\tmu 0 4 123 51 78 37\n\t\tf 4 14 128 129 -123\n\t\tmu 0 4 32 111 52 75\n\t\tf 4 15 44 130 -129\n\t\tmu 0 4 111 12 117 52\n\t\tf 4 -131 45 131 132\n\t\tmu 0 4 52 117 35 76\n\t\tf 4 -130 -133 133 -125\n\t\tmu 0 4 75 52 76 17\n\t\tf 4 -134 134 135 136\n\t\tmu 0 4 17 76 53 77\n\t\tf 4 -132 46 137 -135\n\t\tmu 0 4 76 35 119 53\n\t\tf 4 -138 47 -4 138\n\t\tmu 0 4 53 119 3 90\n\t\tf 4 -136 -139 -3 139\n\t\tmu 0 4 77 53 90 21\n\t\tf 4 -128 140 141 -43\n\t\tmu 0 4 37 78 54 121\n\t\tf 4 -126 -137 142 -141\n\t\tmu 0 4 78 17 77 54\n\t\tf 4 -143 -140 -2 143\n\t\tmu 0 4 54 77 21 88\n\t\tf 4 -142 -144 -1 -44\n\t\tmu 0 4 121 54 88 1\n\t\tf 4 -48 144 145 -21\n\t\tmu 0 4 2 120 55 91\n\t\tf 4 -47 146 147 -145\n\t\tmu 0 4 120 36 79 55\n\t\tf 4 -148 148 149 150\n\t\tmu 0 4 55 79 18 82\n\t\tf 4 -146 -151 151 -22\n\t\tmu 0 4 91 55 82 22\n\t\tf 4 -46 152 153 -147\n\t\tmu 0 4 36 118 56 79\n\t\tf 4 -45 -40 154 -153\n\t\tmu 0 4 118 13 110 56\n\t\tf 4 -155 -39 155 156\n\t\tmu 0 4 56 110 31 80\n\t\tf 4 -154 -157 157 -149\n\t\tmu 0 4 79 56 80 18\n\t\tf 4 -158 158 159 160\n\t\tmu 0 4 18 80 57 81\n\t\tf 4 -156 -38 161 -159\n\t\tmu 0 4 80 31 108 57\n\t\tf 4 -162 -37 -32 162\n\t\tmu 0 4 57 108 9 100\n\t\tf 4 -160 -163 -31 163\n\t\tmu 0 4 81 57 100 26\n\t\tf 4 -152 164 165 -23\n\t\tmu 0 4 22 82 58 92\n\t\tf 4 -150 -161 166 -165\n\t\tmu 0 4 82 18 81 58\n\t\tf 4 -167 -164 -30 167\n\t\tmu 0 4 58 81 26 98\n\t\tf 4 -166 -168 -29 -24\n\t\tmu 0 4 92 58 98 5\n\t\tf 4 40 168 169 35\n\t\tmu 0 4 11 124 59 114\n\t\tf 4 41 170 171 -169\n\t\tmu 0 4 124 38 83 59\n\t\tf 4 -172 172 173 174\n\t\tmu 0 4 59 83 19 86\n\t\tf 4 -170 -175 175 34\n\t\tmu 0 4 114 59 86 34\n\t\tf 4 42 176 177 -171\n\t\tmu 0 4 38 122 60 83\n\t\tf 4 43 16 178 -177\n\t\tmu 0 4 122 0 96 60\n\t\tf 4 -179 17 179 180\n\t\tmu 0 4 60 96 24 84\n\t\tf 4 -178 -181 181 -173\n\t\tmu 0 4 83 60 84 19\n\t\tf 4 -182 182 183 184\n\t\tmu 0 4 19 84 61 85\n\t\tf 4 -180 18 185 -183\n\t\tmu 0 4 84 24 95 61\n\t\tf 4 -186 19 24 186\n\t\tmu 0 4 61 95 4 106\n\t\tf 4 -184 -187 25 187\n\t\tmu 0 4 85 61 106 29\n\t\tf 4 -176 188 189 33\n\t\tmu 0 4 34 86 62 116\n\t\tf 4 -174 -185 190 -189\n\t\tmu 0 4 86 19 85 62\n\t\tf 4 -191 -188 26 191\n\t\tmu 0 4 62 85 29 104\n\t\tf 4 -190 -192 27 32\n\t\tmu 0 4 116 62 104 7;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 192 \n\t\t0 0 \n\t\t1 0 \n\t\t2 0 \n\t\t3 0 \n\t\t4 0 \n\t\t5 0 \n\t\t6 0 \n\t\t7 0 \n\t\t8 0 \n\t\t9 0 \n\t\t10 0 \n\t\t11 0 \n\t\t12 0 \n\t\t13 0 \n\t\t14 0 \n\t\t15 0 \n\t\t16 0 \n\t\t17 0 \n\t\t18 0 \n\t\t19 0 \n\t\t20 0 \n\t\t21 0 \n\t\t22 0 \n\t\t23 0 \n\t\t24 0 \n\t\t25 0 \n\t\t26 0 \n\t\t27 0 \n\t\t28 0 \n\t\t29 0 \n\t\t30 0 \n\t\t31 0 \n\t\t32 0 \n\t\t33 0 \n\t\t34 0 \n\t\t35 0 \n\t\t36 0 \n\t\t37 0 \n\t\t38 0 \n\t\t39 0 \n\t\t40 0 \n\t\t41 0 \n\t\t42 0 \n\t\t43 0 \n\t\t44 0 \n\t\t45 0 \n\t\t46 0 \n\t\t47 0 \n\t\t48 0 \n\t\t49 0 \n\t\t50 0 \n\t\t51 0 \n\t\t52 0 \n\t\t53 0 \n\t\t54 0 \n\t\t55 0 \n\t\t56 0 \n\t\t57 0 \n\t\t58 0 \n\t\t59 0 \n\t\t60 0 \n\t\t61 0 \n\t\t62 0 \n\t\t63 0 \n\t\t64 0 \n\t\t65 0 \n\t\t66 0 \n\t\t67 0 \n\t\t68 0 \n\t\t69 0 \n\t\t70 0 \n\t\t71 0 \n\t\t72 0 \n\t\t73 0 \n\t\t74 0 \n\t\t75 0 \n\t\t76 0 \n\t\t77 0 \n\t\t78 0 \n\t\t79 0 \n\t\t80 0 \n\t\t81 0 \n\t\t82 0 \n\t\t83 0 \n\t\t84 0 \n\t\t85 0 \n\t\t86 0 \n\t\t87 0 \n\t\t88 0 \n\t\t89 0 \n\t\t90 0 \n\t\t91 0 \n\t\t92 0 \n\t\t93 0 \n\t\t94 0 \n\t\t95 0 \n\t\t96 0 \n\t\t97 0 \n\t\t98 0 \n\t\t99 0 \n\t\t100 0 \n\t\t101 0 \n\t\t102 0 \n\t\t103 0 \n\t\t104 0 \n\t\t105 0 \n\t\t106 0 \n\t\t107 0 \n\t\t108 0 \n\t\t109 0 \n\t\t110 0 \n\t\t111 0 \n\t\t112 0 \n\t\t113 0 \n\t\t114 0 \n\t\t115 0 \n\t\t116 0 \n\t\t117 0 \n\t\t118 0 \n\t\t119 0 \n\t\t120 0 \n\t\t121 0 \n\t\t122 0 \n\t\t123 0 \n\t\t124 0 \n\t\t125 0 \n\t\t126 0 \n\t\t127 0 \n\t\t128 0 \n\t\t129 0 \n\t\t130 0 \n\t\t131 0 \n\t\t132 0 \n\t\t133 0 \n\t\t134 0 \n\t\t135 0 \n\t\t136 0 \n\t\t137 0 \n\t\t138 0 \n\t\t139 0 \n\t\t140 0 \n\t\t141 0 \n\t\t142 0 \n\t\t143 0 \n\t\t144 0 \n\t\t145 0 \n\t\t146 0 \n\t\t147 0 \n\t\t148 0 \n\t\t149 0 \n\t\t150 0 \n\t\t151 0 \n\t\t152 0 \n\t\t153 0 \n\t\t154 0 \n\t\t155 0 \n\t\t156 0 \n\t\t157 0 \n\t\t158 0 \n\t\t159 0 \n\t\t160 0 \n\t\t161 0 \n\t\t162 0 \n\t\t163 0 \n\t\t164 0 \n\t\t165 0 \n\t\t166 0 \n\t\t167 0 \n\t\t168 0 \n\t\t169 0 \n\t\t170 0 \n\t\t171 0 \n\t\t172 0 \n\t\t173 0 \n\t\t174 0 \n\t\t175 0 \n\t\t176 0 \n\t\t177 0 \n\t\t178 0 \n\t\t179 0 \n\t\t180 0 \n\t\t181 0 \n\t\t182 0 \n\t\t183 0 \n\t\t184 0 \n\t\t185 0 \n\t\t186 0 \n\t\t187 0 \n\t\t188 0 \n\t\t189 0 \n\t\t190 0 \n\t\t191 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 98 \n\t\t0 0 \n\t\t1 0 \n\t\t2 0 \n\t\t3 0 \n\t\t4 0 \n\t\t5 0 \n\t\t6 0 \n\t\t7 0 \n\t\t8 0 \n\t\t9 0 \n\t\t10 0 \n\t\t11 0 \n\t\t12 0 \n\t\t13 0 \n\t\t14 0 \n\t\t15 0 \n\t\t16 0 \n\t\t17 0 \n\t\t18 0 \n\t\t19 0 \n\t\t20 0 \n\t\t21 0 \n\t\t22 0 \n\t\t23 0 \n\t\t24 0 \n\t\t25 0 \n\t\t26 0 \n\t\t27 0 \n\t\t28 0 \n\t\t29 0 \n\t\t30 0 \n\t\t31 0 \n\t\t32 0 \n\t\t33 0 \n\t\t34 0 \n\t\t35 0 \n\t\t36 0 \n\t\t37 0 \n\t\t38 0 \n\t\t39 0 \n\t\t40 0 \n\t\t41 0 \n\t\t42 0 \n\t\t43 0 \n\t\t44 0 \n\t\t45 0 \n\t\t46 0 \n\t\t47 0 \n\t\t48 0 \n\t\t49 0 \n\t\t50 0 \n\t\t51 0 \n\t\t52 0 \n\t\t53 0 \n\t\t54 0 \n\t\t55 0 \n\t\t56 0 \n\t\t57 0 \n\t\t58 0 \n\t\t59 0 \n\t\t60 0 \n\t\t61 0 \n\t\t62 0 \n\t\t63 0 \n\t\t64 0 \n\t\t65 0 \n\t\t66 0 \n\t\t67 0 \n\t\t68 0 \n\t\t69 0 \n\t\t70 0 \n\t\t71 0 \n\t\t72 0 \n\t\t73 0 \n\t\t74 0 \n\t\t75 0 \n\t\t76 0 \n\t\t77 0 \n\t\t78 0 \n\t\t79 0 \n\t\t80 0 \n\t\t81 0 \n\t\t82 0 \n\t\t83 0 \n\t\t84 0 \n\t\t85 0 \n\t\t86 0 \n\t\t87 0 \n\t\t88 0 \n\t\t89 0 \n\t\t90 0 \n\t\t91 0 \n\t\t92 0 \n\t\t93 0 \n\t\t94 0 \n\t\t95 0 \n\t\t96 0 \n\t\t97 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pCube2\";\n\trename -uid \"C5B87B16-4F74-5F7B-CA34-2D8EB6909449\";\n\tsetAttr \".t\" -type \"double3\" 2.0545201283856116 0 0 ;\ncreateNode mesh -n \"pCubeShape2\" -p \"pCube2\";\n\trename -uid \"1F0CDD11-4DCC-E425-5D2C-3FBAED9F8F54\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.5 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 125 \".uvst[0].uvsp[0:124]\" -type \"float2\" 0.375 0 0.375 1 0.625\n\t\t 0 0.625 1 0.375 0.25 0.625 0.25 0.375 0.5 0.125 0.25 0.625 0.5 0.875 0.25 0.375 0.75\n\t\t 0.125 0 0.625 0.75 0.875 0 0.5 0.125 0.5 0.375 0.5 0.625 0.5 0.875 0.75 0.125 0.25\n\t\t 0.125 0.5 0 0.5 1 0.625 0.125 0.5 0.25 0.375 0.125 0.625 0.375 0.75 0.25 0.5 0.5\n\t\t 0.375 0.375 0.25 0.25 0.625 0.625 0.875 0.125 0.5 0.75 0.375 0.625 0.125 0.125 0.625\n\t\t 0.875 0.75 0 0.375 0.875 0.25 0 0.4375 0.0625 0.5625 0.0625 0.5625 0.1875 0.4375\n\t\t 0.1875 0.4375 0.3125 0.5625 0.3125 0.5625 0.4375 0.4375 0.4375 0.4375 0.5625 0.5625\n\t\t 0.5625 0.5625 0.6875 0.4375 0.6875 0.4375 0.8125 0.5625 0.8125 0.5625 0.9375 0.4375\n\t\t 0.9375 0.6875 0.0625 0.8125 0.0625 0.8125 0.1875 0.6875 0.1875 0.1875 0.0625 0.3125\n\t\t 0.0625 0.3125 0.1875 0.1875 0.1875 0.5 0.0625 0.5625 0.125 0.5 0.1875 0.4375 0.125\n\t\t 0.5 0.3125 0.5625 0.375 0.5 0.4375 0.4375 0.375 0.5 0.5625 0.5625 0.625 0.5 0.6875\n\t\t 0.4375 0.625 0.5 0.8125 0.5625 0.875 0.5 0.9375 0.4375 0.875 0.75 0.0625 0.8125 0.125\n\t\t 0.75 0.1875 0.6875 0.125 0.25 0.0625 0.3125 0.125 0.25 0.1875 0.1875 0.125 0.4375\n\t\t 0 0.4375 1 0.5625 0 0.5625 1 0.625 0.0625 0.625 0.1875 0.5625 0.25 0.4375 0.25 0.375\n\t\t 0.1875 0.375 0.0625 0.625 0.3125 0.6875 0.25 0.625 0.4375 0.8125 0.25 0.5625 0.5\n\t\t 0.4375 0.5 0.375 0.4375 0.1875 0.25 0.375 0.3125 0.3125 0.25 0.625 0.5625 0.875 0.1875\n\t\t 0.625 0.6875 0.875 0.0625 0.5625 0.75 0.4375 0.75 0.375 0.6875 0.125 0.0625 0.375\n\t\t 0.5625 0.125 0.1875 0.625 0.8125 0.8125 0 0.625 0.9375 0.6875 0 0.375 0.9375 0.3125\n\t\t 0 0.375 0.8125 0.1875 0;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 98 \".vt[0:97]\"  -0.25462967 -0.25462967 0.25462967 0.25462967 -0.25462967 0.25462967\n\t\t -0.25462967 0.25462967 0.25462961 0.25462967 0.25462967 0.25462961 -0.25462967 0.25462967 -0.25462967\n\t\t 0.25462967 0.25462961 -0.25462967 -0.25462967 -0.25462967 -0.25462967 0.25462967 -0.25462967 -0.25462967\n\t\t -0.32161459 0.32161456 -1.2340024e-08 0.32161456 7.4505806e-09 -0.32161456 1.1641532e-09 -0.32161456 -0.32161456\n\t\t -0.32161459 -1.2340024e-08 -0.32161456 0.32161456 -0.32161456 -7.4505806e-09 -0.32161459 -0.32161456 1.2340024e-08\n\t\t 0 -0.32161456 0.32161456 0.32161456 -7.4505806e-09 0.32161456 1.1641532e-09 0.32161459 0.32161456\n\t\t -0.32161456 0 0.32161456 0.32161456 0.32161456 7.4505806e-09 1.1641532e-09 0.32161456 -0.32161456\n\t\t 8.3819032e-09 -1.5366822e-08 0.43923616 7.9162419e-09 0.43923613 -6.0535967e-09 7.9162419e-09 -6.0535967e-09 -0.43923613\n\t\t 7.9162419e-09 -0.43923613 6.0535967e-09 0.43923613 -1.5366822e-08 4.6566129e-10 -0.43923613 -4.6566129e-10 -4.6566129e-10\n\t\t -0.16319445 -0.16319448 0.38194448 0.16319446 -0.16319446 0.38194451 0.16319443 0.16319446 0.38194448\n\t\t -0.16319446 0.16319446 0.38194448 -0.16319446 0.38194448 0.16319443 0.16319445 0.38194448 0.16319445\n\t\t 0.16319443 0.38194448 -0.16319446 -0.16319448 0.38194448 -0.16319445 -0.16319446 0.16319443 -0.38194448\n\t\t 0.16319445 0.16319445 -0.38194448 0.16319445 -0.16319448 -0.38194448 -0.16319448 -0.16319445 -0.38194448\n\t\t -0.16319446 -0.38194448 -0.16319443 0.16319445 -0.38194448 -0.16319445 0.16319443 -0.38194448 0.16319446\n\t\t -0.16319448 -0.38194448 0.16319445 0.38194448 -0.16319446 0.16319446 0.38194448 -0.16319445 -0.16319445\n\t\t 0.38194448 0.16319448 -0.16319445 0.38194451 0.16319446 0.16319443 -0.38194448 -0.16319446 -0.16319446\n\t\t -0.38194448 -0.16319445 0.16319445 -0.38194448 0.16319446 0.16319443 -0.38194448 0.16319446 -0.16319443\n\t\t -7.4505806e-09 -0.17534724 0.40972224 0.17534724 -7.4505806e-09 0.40972224 1.4901161e-08 0.17534724 0.40972227\n\t\t -0.17534724 1.4901161e-08 0.40972221 -7.4505806e-09 0.40972224 0.17534724 0.17534724 0.40972224 7.4505806e-09\n\t\t 1.4901161e-08 0.40972227 -0.17534724 -0.17534724 0.40972221 -1.4901161e-08 -7.4505806e-09 0.17534724 -0.40972224\n\t\t 0.17534724 7.4505806e-09 -0.40972224 1.4901161e-08 -0.17534724 -0.40972227 -0.17534724 -1.4901161e-08 -0.40972221\n\t\t -7.4505806e-09 -0.40972224 -0.17534724 0.17534724 -0.40972224 -7.4505806e-09 1.4901161e-08 -0.40972227 0.17534724\n\t\t -0.17534724 -0.40972221 1.4901161e-08 0.40972224 -0.17534724 7.4505806e-09 0.40972224 -7.4505806e-09 -0.17534724\n\t\t 0.40972227 0.17534724 -1.4901161e-08 0.40972221 1.4901161e-08 0.17534724 -0.40972224 -0.17534724 -7.4505806e-09\n\t\t -0.40972224 -7.4505806e-09 0.17534724 -0.40972227 0.17534724 1.4901161e-08 -0.40972221 1.4901161e-08 -0.17534724\n\t\t -0.15104166 -0.29947916 0.29947916 0.15104166 -0.29947916 0.29947916 0.29947919 -0.15104166 0.29947916\n\t\t 0.29947916 0.15104164 0.29947916 0.15104166 0.29947916 0.29947916 -0.15104166 0.29947916 0.29947916\n\t\t -0.29947916 0.15104164 0.29947916 -0.29947919 -0.15104166 0.29947916 0.29947919 0.29947916 0.15104166\n\t\t 0.29947916 0.29947916 -0.15104164 0.15104166 0.29947916 -0.29947916 -0.15104166 0.29947916 -0.29947916\n\t\t -0.29947916 0.29947916 -0.15104166 -0.29947916 0.29947916 0.15104166 0.29947916 0.15104166 -0.29947916\n\t\t 0.29947916 -0.15104166 -0.29947916 0.15104166 -0.29947916 -0.29947916 -0.15104166 -0.29947916 -0.29947916\n\t\t -0.29947916 -0.15104166 -0.29947916 -0.29947916 0.15104166 -0.29947916 0.29947919 -0.29947916 -0.15104166\n\t\t 0.29947916 -0.29947916 0.15104164 -0.29947916 -0.29947916 0.15104166 -0.29947916 -0.29947916 -0.15104166;\n\tsetAttr -s 192 \".ed\";\n\tsetAttr \".ed[0:165]\"  0 74 1 74 14 1 14 75 1 75 1 1 2 79 1 79 16 1 16 78 1\n\t\t 78 3 1 4 85 1 85 19 1 19 84 1 84 5 1 6 91 1 91 10 1 10 90 1 90 7 1 0 81 1 81 17 1\n\t\t 17 80 1 80 2 1 1 76 1 76 15 1 15 77 1 77 3 1 2 87 1 87 8 1 8 86 1 86 4 1 3 82 1 82 18 1\n\t\t 18 83 1 83 5 1 4 93 1 93 11 1 11 92 1 92 6 1 5 88 1 88 9 1 9 89 1 89 7 1 6 97 1 97 13 1\n\t\t 13 96 1 96 0 1 7 94 1 94 12 1 12 95 1 95 1 1 74 26 1 26 81 1 14 50 1 50 26 1 50 20 1\n\t\t 20 53 1 53 26 1 53 17 1 75 27 1 27 50 1 76 27 1 15 51 1 51 27 1 51 20 1 51 28 1 28 52 1\n\t\t 52 20 1 77 28 1 78 28 1 16 52 1 53 29 1 29 80 1 52 29 1 79 29 1 79 30 1 30 87 1 16 54 1\n\t\t 54 30 1 54 21 1 21 57 1 57 30 1 57 8 1 78 31 1 31 54 1 82 31 1 18 55 1 55 31 1 55 21 1\n\t\t 55 32 1 32 56 1 56 21 1 83 32 1 84 32 1 19 56 1 57 33 1 33 86 1 56 33 1 85 33 1 85 34 1\n\t\t 34 93 1 19 58 1 58 34 1 58 22 1 22 61 1 61 34 1 61 11 1 84 35 1 35 58 1 88 35 1 9 59 1\n\t\t 59 35 1 59 22 1 59 36 1 36 60 1 60 22 1 89 36 1 90 36 1 10 60 1 61 37 1 37 92 1 60 37 1\n\t\t 91 37 1 91 38 1 38 97 1 10 62 1 62 38 1 62 23 1 23 65 1 65 38 1 65 13 1 90 39 1 39 62 1\n\t\t 94 39 1 12 63 1 63 39 1 63 23 1 63 40 1 40 64 1 64 23 1 95 40 1 75 40 1 14 64 1 65 41 1\n\t\t 41 96 1 64 41 1 74 41 1 95 42 1 42 76 1 12 66 1 66 42 1 66 24 1 24 69 1 69 42 1 69 15 1\n\t\t 94 43 1 43 66 1 89 43 1 9 67 1 67 43 1 67 24 1 67 44 1 44 68 1 68 24 1 88 44 1 83 44 1\n\t\t 18 68 1 69 45 1 45 77 1;\n\tsetAttr \".ed[166:191]\" 68 45 1 82 45 1 97 46 1 46 92 1 13 70 1 70 46 1 70 25 1\n\t\t 25 73 1 73 46 1 73 11 1 96 47 1 47 70 1 81 47 1 17 71 1 71 47 1 71 25 1 71 48 1 48 72 1\n\t\t 72 25 1 80 48 1 87 48 1 8 72 1 73 49 1 49 93 1 72 49 1 86 49 1;\n\tsetAttr -s 98 \".n[0:97]\" -type \"float3\"  -0.57735026 -0.57735026 0.57735026\n\t\t -0.31321946 -0.67152578 0.67152566 -0.32932183 -0.3293218 0.8849262 -0.67152572 -0.31321949\n\t\t 0.67152572 3.0349128e-08 -0.70710683 0.70710677 -3.648627e-08 -0.34515977 0.93854392\n\t\t -1.2389945e-07 -2.8997745e-08 1 -0.34515977 5.6132716e-09 0.93854398 -0.70710683\n\t\t 3.641896e-08 0.70710683 0.31321949 -0.67152572 0.67152572 0.32932177 -0.32932186\n\t\t 0.8849262 0.57735026 -0.57735032 0.57735032 0.67152572 -0.31321949 0.67152572 0.70710683\n\t\t 2.7314215e-08 0.70710671 0.34515974 3.6486274e-08 0.93854403 0.32932189 0.32932189\n\t\t 0.88492608 -6.455263e-08 0.34515974 0.93854403 0.67152572 0.31321943 0.67152572 0.57735026\n\t\t 0.57735026 0.57735038 0.31321961 0.67152572 0.67152572 -3.0349132e-09 0.70710683\n\t\t 0.70710677 -0.32932189 0.32932183 0.88492608 -0.67152566 0.31321952 0.67152572 -0.31321952\n\t\t 0.67152572 0.67152566 -0.57735026 0.57735032 0.57735026 -0.32932183 0.88492608 0.32932186\n\t\t -0.67152566 0.67152578 0.31321958 -4.209954e-08 0.93854392 0.34515974 -3.4270062e-08\n\t\t 1 8.4357076e-08 -0.3451598 0.93854392 4.4906177e-08 -0.70710677 0.70710689 2.731422e-08\n\t\t 0.32932177 0.8849262 0.32932168 0.67152566 0.67152572 0.31321958 0.70710677 0.70710683\n\t\t -1.8209478e-08 0.34515974 0.93854392 5.3326083e-08 0.32932189 0.88492614 -0.3293218\n\t\t -1.6839817e-08 0.93854403 -0.34515971 0.67152572 0.67152572 -0.31321958 0.57735032\n\t\t 0.57735026 -0.57735032 0.31321955 0.67152566 -0.67152578 -3.6418953e-08 0.70710683\n\t\t -0.70710683 -0.32932189 0.8849262 -0.32932183 -0.67152572 0.67152566 -0.31321955\n\t\t -0.31321949 0.67152572 -0.67152572 -0.57735026 0.57735026 -0.57735032 -0.32932192\n\t\t 0.32932177 -0.8849262 -0.67152572 0.31321946 -0.67152572 -2.3575743e-07 0.34515974\n\t\t -0.93854403 -1.212633e-07 3.9542378e-08 -1 -0.3451598 2.2453088e-08 -0.93854403 -0.70710683\n\t\t 1.2139654e-08 -0.70710677 0.32932171 0.32932189 -0.88492626 0.67152572 0.31321952\n\t\t -0.67152572 0.70710689 3.0349128e-09 -0.70710671 0.34515974 2.5259729e-08 -0.93854403\n\t\t 0.32932183 -0.32932183 -0.88492608 3.0873e-08 -0.34515974 -0.93854403 0.67152572\n\t\t -0.31321949 -0.67152572 0.57735026 -0.57735032 -0.57735026 0.31321949 -0.67152584\n\t\t -0.67152566 -4.5523691e-08 -0.70710683 -0.70710677 -0.32932177 -0.32932177 -0.8849262\n\t\t -0.67152578 -0.31321952 -0.67152572 -0.31321952 -0.67152578 -0.67152572 -0.57735032\n\t\t -0.57735026 -0.57735026 -0.32932186 -0.8849262 -0.32932186 -0.67152572 -0.67152572\n\t\t -0.31321952 -3.9292907e-08 -0.93854403 -0.34515974 -3.4270062e-08 -1 -8.4357076e-08\n\t\t -0.3451598 -0.93854392 -4.4906177e-08 -0.70710683 -0.70710677 -3.3384048e-08 0.32932177\n\t\t -0.8849262 -0.32932171 0.67152578 -0.67152566 -0.31321949 0.70710689 -0.70710677\n\t\t 3.0349135e-08 0.34515974 -0.93854392 -5.3326083e-08 0.32932186 -0.8849262 0.32932177\n\t\t -1.6839817e-08 -0.93854403 0.34515971 0.67152572 -0.67152572 0.31321955 -0.32932189\n\t\t -0.8849262 0.32932183 -0.67152578 -0.67152566 0.31321949 0.88492614 -0.32932177 0.3293218\n\t\t 0.93854403 -0.34515971 3.9292907e-08 1 -6.0631649e-08 1.8453111e-08 0.93854403 -3.6486263e-08\n\t\t 0.34515971 0.88492614 -0.32932177 -0.32932186 0.93854403 -1.1226544e-08 -0.3451598\n\t\t 0.88492614 0.32932177 -0.32932186 0.93854403 0.34515968 -2.245309e-08 0.88492614\n\t\t 0.32932177 0.32932186 -0.8849262 -0.32932183 -0.3293218 -0.93854392 -0.34515977 -1.9646452e-08\n\t\t -1 -4.7450854e-08 -2.3725427e-08 -0.93854403 -2.2453088e-08 -0.34515974 -0.8849262\n\t\t -0.32932177 0.32932177 -0.93854392 0 0.34515974 -0.88492608 0.32932186 0.32932192\n\t\t -0.93854392 0.3451598 -1.1226545e-08 -0.8849262 0.32932183 -0.32932186;\n\tsetAttr -s 96 -ch 384 \".fc[0:95]\" -type \"polyFaces\" \n\t\tf 4 0 48 49 -17\n\t\tmu 0 4 0 87 39 96\n\t\tf 4 1 50 51 -49\n\t\tmu 0 4 87 20 63 39\n\t\tf 4 -52 52 53 54\n\t\tmu 0 4 39 63 14 66\n\t\tf 4 -50 -55 55 -18\n\t\tmu 0 4 96 39 66 24\n\t\tf 4 2 56 57 -51\n\t\tmu 0 4 20 89 40 63\n\t\tf 4 3 20 58 -57\n\t\tmu 0 4 89 2 91 40\n\t\tf 4 -59 21 59 60\n\t\tmu 0 4 40 91 22 64\n\t\tf 4 -58 -61 61 -53\n\t\tmu 0 4 63 40 64 14\n\t\tf 4 -62 62 63 64\n\t\tmu 0 4 14 64 41 65\n\t\tf 4 -60 22 65 -63\n\t\tmu 0 4 64 22 92 41\n\t\tf 4 -66 23 -8 66\n\t\tmu 0 4 41 92 5 93\n\t\tf 4 -64 -67 -7 67\n\t\tmu 0 4 65 41 93 23\n\t\tf 4 -56 68 69 -19\n\t\tmu 0 4 24 66 42 95\n\t\tf 4 -54 -65 70 -69\n\t\tmu 0 4 66 14 65 42\n\t\tf 4 -71 -68 -6 71\n\t\tmu 0 4 42 65 23 94\n\t\tf 4 -70 -72 -5 -20\n\t\tmu 0 4 95 42 94 4\n\t\tf 4 4 72 73 -25\n\t\tmu 0 4 4 94 43 105\n\t\tf 4 5 74 75 -73\n\t\tmu 0 4 94 23 67 43\n\t\tf 4 -76 76 77 78\n\t\tmu 0 4 43 67 15 70\n\t\tf 4 -74 -79 79 -26\n\t\tmu 0 4 105 43 70 28\n\t\tf 4 6 80 81 -75\n\t\tmu 0 4 23 93 44 67\n\t\tf 4 7 28 82 -81\n\t\tmu 0 4 93 5 97 44\n\t\tf 4 -83 29 83 84\n\t\tmu 0 4 44 97 25 68\n\t\tf 4 -82 -85 85 -77\n\t\tmu 0 4 67 44 68 15\n\t\tf 4 -86 86 87 88\n\t\tmu 0 4 15 68 45 69\n\t\tf 4 -84 30 89 -87\n\t\tmu 0 4 68 25 99 45\n\t\tf 4 -90 31 -12 90\n\t\tmu 0 4 45 99 8 101\n\t\tf 4 -88 -91 -11 91\n\t\tmu 0 4 69 45 101 27\n\t\tf 4 -80 92 93 -27\n\t\tmu 0 4 28 70 46 103\n\t\tf 4 -78 -89 94 -93\n\t\tmu 0 4 70 15 69 46\n\t\tf 4 -95 -92 -10 95\n\t\tmu 0 4 46 69 27 102\n\t\tf 4 -94 -96 -9 -28\n\t\tmu 0 4 103 46 102 6\n\t\tf 4 8 96 97 -33\n\t\tmu 0 4 6 102 47 115\n\t\tf 4 9 98 99 -97\n\t\tmu 0 4 102 27 71 47\n\t\tf 4 -100 100 101 102\n\t\tmu 0 4 47 71 16 74\n\t\tf 4 -98 -103 103 -34\n\t\tmu 0 4 115 47 74 33\n\t\tf 4 10 104 105 -99\n\t\tmu 0 4 27 101 48 71\n\t\tf 4 11 36 106 -105\n\t\tmu 0 4 101 8 107 48\n\t\tf 4 -107 37 107 108\n\t\tmu 0 4 48 107 30 72\n\t\tf 4 -106 -109 109 -101\n\t\tmu 0 4 71 48 72 16\n\t\tf 4 -110 110 111 112\n\t\tmu 0 4 16 72 49 73\n\t\tf 4 -108 38 113 -111\n\t\tmu 0 4 72 30 109 49\n\t\tf 4 -114 39 -16 114\n\t\tmu 0 4 49 109 12 111\n\t\tf 4 -112 -115 -15 115\n\t\tmu 0 4 73 49 111 32\n\t\tf 4 -104 116 117 -35\n\t\tmu 0 4 33 74 50 113\n\t\tf 4 -102 -113 118 -117\n\t\tmu 0 4 74 16 73 50\n\t\tf 4 -119 -116 -14 119\n\t\tmu 0 4 50 73 32 112\n\t\tf 4 -118 -120 -13 -36\n\t\tmu 0 4 113 50 112 10\n\t\tf 4 12 120 121 -41\n\t\tmu 0 4 10 112 51 123\n\t\tf 4 13 122 123 -121\n\t\tmu 0 4 112 32 75 51\n\t\tf 4 -124 124 125 126\n\t\tmu 0 4 51 75 17 78\n\t\tf 4 -122 -127 127 -42\n\t\tmu 0 4 123 51 78 37\n\t\tf 4 14 128 129 -123\n\t\tmu 0 4 32 111 52 75\n\t\tf 4 15 44 130 -129\n\t\tmu 0 4 111 12 117 52\n\t\tf 4 -131 45 131 132\n\t\tmu 0 4 52 117 35 76\n\t\tf 4 -130 -133 133 -125\n\t\tmu 0 4 75 52 76 17\n\t\tf 4 -134 134 135 136\n\t\tmu 0 4 17 76 53 77\n\t\tf 4 -132 46 137 -135\n\t\tmu 0 4 76 35 119 53\n\t\tf 4 -138 47 -4 138\n\t\tmu 0 4 53 119 3 90\n\t\tf 4 -136 -139 -3 139\n\t\tmu 0 4 77 53 90 21\n\t\tf 4 -128 140 141 -43\n\t\tmu 0 4 37 78 54 121\n\t\tf 4 -126 -137 142 -141\n\t\tmu 0 4 78 17 77 54\n\t\tf 4 -143 -140 -2 143\n\t\tmu 0 4 54 77 21 88\n\t\tf 4 -142 -144 -1 -44\n\t\tmu 0 4 121 54 88 1\n\t\tf 4 -48 144 145 -21\n\t\tmu 0 4 2 120 55 91\n\t\tf 4 -47 146 147 -145\n\t\tmu 0 4 120 36 79 55\n\t\tf 4 -148 148 149 150\n\t\tmu 0 4 55 79 18 82\n\t\tf 4 -146 -151 151 -22\n\t\tmu 0 4 91 55 82 22\n\t\tf 4 -46 152 153 -147\n\t\tmu 0 4 36 118 56 79\n\t\tf 4 -45 -40 154 -153\n\t\tmu 0 4 118 13 110 56\n\t\tf 4 -155 -39 155 156\n\t\tmu 0 4 56 110 31 80\n\t\tf 4 -154 -157 157 -149\n\t\tmu 0 4 79 56 80 18\n\t\tf 4 -158 158 159 160\n\t\tmu 0 4 18 80 57 81\n\t\tf 4 -156 -38 161 -159\n\t\tmu 0 4 80 31 108 57\n\t\tf 4 -162 -37 -32 162\n\t\tmu 0 4 57 108 9 100\n\t\tf 4 -160 -163 -31 163\n\t\tmu 0 4 81 57 100 26\n\t\tf 4 -152 164 165 -23\n\t\tmu 0 4 22 82 58 92\n\t\tf 4 -150 -161 166 -165\n\t\tmu 0 4 82 18 81 58\n\t\tf 4 -167 -164 -30 167\n\t\tmu 0 4 58 81 26 98\n\t\tf 4 -166 -168 -29 -24\n\t\tmu 0 4 92 58 98 5\n\t\tf 4 40 168 169 35\n\t\tmu 0 4 11 124 59 114\n\t\tf 4 41 170 171 -169\n\t\tmu 0 4 124 38 83 59\n\t\tf 4 -172 172 173 174\n\t\tmu 0 4 59 83 19 86\n\t\tf 4 -170 -175 175 34\n\t\tmu 0 4 114 59 86 34\n\t\tf 4 42 176 177 -171\n\t\tmu 0 4 38 122 60 83\n\t\tf 4 43 16 178 -177\n\t\tmu 0 4 122 0 96 60\n\t\tf 4 -179 17 179 180\n\t\tmu 0 4 60 96 24 84\n\t\tf 4 -178 -181 181 -173\n\t\tmu 0 4 83 60 84 19\n\t\tf 4 -182 182 183 184\n\t\tmu 0 4 19 84 61 85\n\t\tf 4 -180 18 185 -183\n\t\tmu 0 4 84 24 95 61\n\t\tf 4 -186 19 24 186\n\t\tmu 0 4 61 95 4 106\n\t\tf 4 -184 -187 25 187\n\t\tmu 0 4 85 61 106 29\n\t\tf 4 -176 188 189 33\n\t\tmu 0 4 34 86 62 116\n\t\tf 4 -174 -185 190 -189\n\t\tmu 0 4 86 19 85 62\n\t\tf 4 -191 -188 26 191\n\t\tmu 0 4 62 85 29 104\n\t\tf 4 -190 -192 27 32\n\t\tmu 0 4 116 62 104 7;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"transform1\";\n\trename -uid \"05DB6FC4-4F12-33A1-5317-62A7C044A01B\";\ncreateNode transform -n \"camera1\";\n\trename -uid \"E7E05424-4AFD-A6E0-C564-63A1599502F4\";\n\tsetAttr \".t\" -type \"double3\" 2.6971019933622036 2.8169856170666643 3.6461418385260629 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"284CB5B7-443A-8EA6-C899-409DD99BCABE\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 4.9112645473855983;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.99687813133815339 0 0 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"F431CB95-426E-C9C1-9A05-3B96E314B7C2\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"90071A28-4FB3-88BA-0C68-B29F9208DD23\";\n\tsetAttr \".bsdt[0].bscd\" -type \"Int32Array\" 1 0 ;\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"A99F59A7-4A1C-C7F8-9B19-38B37C35C2AA\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"2B6AFBF5-4857-FDDE-27E9-CB903E0F507C\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"73B58932-4CEC-DAB6-6BB4-60BE49375B2C\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"03A390DB-40DF-3176-C78F-2BBAFF06E1B5\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"46E9D55C-4D4C-17C7-EFB6-E4BD4AFEC8FE\";\n\tsetAttr \".g\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"7DCD9A3F-4BED-0C0B-F97B-5BB48C05421B\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 1\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 1\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 1\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 1\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 1 -size 10 -divisions 4 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"EA2C5BDE-4CE0-E997-760B-D4B791BD617B\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 40 -ast 1 -aet 40 \";\n\tsetAttr \".st\" 6;\ncreateNode blendShape -n \"blendShape1\";\n\trename -uid \"CC193D97-4C3A-B179-8300-42B5A827E8C6\";\n\taddAttr -ci true -h true -sn \"aal\" -ln \"attributeAliasList\" -dt \"attributeAlias\";\n\tsetAttr \".mlid\" 0;\n\tsetAttr \".mlpr\" 0;\n\tsetAttr \".pndr[0]\"  0;\n\tsetAttr \".tgdt[0].cid\" -type \"Int32Array\" 1 0 ;\n\tsetAttr \".aal\" -type \"attributeAlias\" {\"pCube2\",\"weight[0]\"} ;\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"C9A2F781-4F4C-6A00-87E0-2294FDBAA22E\";\ncreateNode objectSet -n \"blendShape1Set\";\n\trename -uid \"725A0002-4498-5D17-B30E-9FBB92A12D4A\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"blendShape1GroupId\";\n\trename -uid \"F8D9CD7D-4B1D-D687-53E5-7A80E18C84B3\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"blendShape1GroupParts\";\n\trename -uid \"BFF7E5B6-4FD3-E939-E44A-55B79295E066\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"91C0B6A0-4083-E4D6-AC86-508670F889E7\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"1A763C7E-433D-31FC-D1D9-2FBA6CB34392\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"0A7586BA-484B-B8BA-8A7A-3F95592F6C07\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode animCurveTU -n \"blendShape1_pCube2\";\n\trename -uid \"58BB7AF0-4C14-6D38-AC4D-2D8FD037D7A2\";\n\tsetAttr \".tan\" 18;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 20 1 40 0;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"F883B737-4923-7AE0-6F9C-3598768320DF\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"blendShape1GroupId.id\" \"pCubeShape1.iog.og[3].gid\";\nconnectAttr \"blendShape1Set.mwc\" \"pCubeShape1.iog.og[3].gco\";\nconnectAttr \"groupId2.id\" \"pCubeShape1.iog.og[4].gid\";\nconnectAttr \"tweakSet1.mwc\" \"pCubeShape1.iog.og[4].gco\";\nconnectAttr \"blendShape1.og[0]\" \"pCubeShape1.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"pCubeShape1.twl\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"blendShape1.mlpr\" \"shapeEditorManager.bspr[0]\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"blendShape1GroupParts.og\" \"blendShape1.ip[0].ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1.ip[0].gi\";\nconnectAttr \"pCubeShape2.w\" \"blendShape1.it[0].itg[0].iti[6000].igt\";\nconnectAttr \"shapeEditorManager.obsv[0]\" \"blendShape1.tgdt[0].dpvs\";\nconnectAttr \"blendShape1_pCube2.o\" \"blendShape1.w[0]\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"blendShape1GroupId.msg\" \"blendShape1Set.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[3]\" \"blendShape1Set.dsm\" -na;\nconnectAttr \"blendShape1.msg\" \"blendShape1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"blendShape1GroupParts.ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[4]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"pCubeShape1Orig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pCubeShape2.iog\" \":initialShadingGroup.dsm\" -na;\n// End of CubeToSphereAnim.ma\n"
  },
  {
    "path": "maya/scenes/blend/targets_existing/CubeTwoTargets.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: CubeTwoTargets.ma\n//Last modified: Sun, Feb 03, 2019 11:54:13 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires -nodeType \"aiOptions\" -nodeType \"aiAOVDriver\" -nodeType \"aiAOVFilter\" \"mtoa\" \"2.1.0.1\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"1C2B75FD-483D-05F4-0C77-DE83F628D81E\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0.62342917635974815 4.2549420701679459 9.3861768176229354 ;\n\tsetAttr \".r\" -type \"double3\" -24.338352729617888 3.8000000000000842 -1.9922266493727676e-16 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"EC4649D5-4D8E-96A1-E893-70BDE95C8228\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 10.324413359125884;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"7405AE4D-4508-BF94-7A72-A08C9424F11A\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"17388F37-40A4-B379-18DF-3B84F819EC86\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"front\";\n\trename -uid \"E46F7D7C-4431-2E5E-81AF-BE8464B79B22\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"C578BF8C-48F6-A81A-DB2C-0A9474EB66BD\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"side\";\n\trename -uid \"333F9F16-4B98-B6B7-43B4-AB988BB0FAE2\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"90C7BD45-4C7E-0C50-BB81-B38D49281C70\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -n \"pCube1\";\n\trename -uid \"5D82107E-4529-3175-D791-53B08C2143F0\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"735D43D5-45B8-0BE8-5057-A187BD6A4600\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode mesh -n \"pCubeShape1Orig\" -p \"pCube1\";\n\trename -uid \"84C6C507-4ACE-D722-5818-CEA8516C95BE\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"pCube2\";\n\trename -uid \"C5F37D45-4489-8DE1-1AD3-22A71ED42128\";\n\tsetAttr \".t\" -type \"double3\" 2 0 0 ;\ncreateNode mesh -n \"pCubeShape2\" -p \"pCube2\";\n\trename -uid \"9E34957E-45C4-4153-0086-86B083E22FE2\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.75 0.375 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".pt[0:7]\" -type \"float3\"  -0.5 0 0 0 0 0 0 0 0 0.5 \n\t\t0 0 0 0 0 0.5 0 0 -0.5 0 0 0 0 0;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"pCube3\";\n\trename -uid \"187488C9-4B16-1406-8C57-A185A29132F6\";\n\tsetAttr \".t\" -type \"double3\" -2 0 0 ;\ncreateNode mesh -n \"pCubeShape3\" -p \"pCube3\";\n\trename -uid \"AB4AD9C2-4700-282B-41DC-8DB725F9FC46\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.375 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 4 \".pt[2:5]\" -type \"float3\"  0.31347948 0 -0.31347948 \n\t\t-0.31347948 0 -0.31347948 0.31347948 0 0.31347948 -0.31347948 0 0.31347948;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"camera1\";\n\trename -uid \"46EF1E58-4E20-2358-76DE-D38C7585F32C\";\n\tsetAttr \".t\" -type \"double3\" 2.3716936807151656 5.0990858085331068 6.0248757629338243 ;\n\tsetAttr \".r\" -type \"double3\" -38.599873002434364 19.400000000000055 1.6860041765664449e-15 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"A5A706BE-44AA-355C-4B68-45AA781FE04F\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 8.1732116157822094;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.25 0 0 ;\n\tsetAttr \".dr\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"4AA7E154-4002-E784-2726-06B935777606\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"283246E1-47C3-4F2C-367C-F1A2A52DDD66\";\n\tsetAttr \".bsdt[0].bscd\" -type \"Int32Array\" 1 0 ;\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"F08F1A1F-4EDD-B840-F2B3-E9AD70607546\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"E7C9D2D9-4244-D08A-0BE2-9A9827E0B496\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"A6854EE8-4654-934C-EBB1-93A971F58A86\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"A1C46B4D-49B6-2798-2DAD-139AC74F94D7\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"D17742DE-4678-CFD0-4611-5080C2C4E781\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"CBA66E87-4434-D961-2366-2AA6797AE2A5\";\n\tsetAttr \".cuv\" 4;\ncreateNode blendShape -n \"blendShape1\";\n\trename -uid \"4AF476DD-4197-526C-DCFD-B49CE2C074FE\";\n\taddAttr -ci true -h true -sn \"aal\" -ln \"attributeAliasList\" -dt \"attributeAlias\";\n\tsetAttr -s 2 \".w[0:1]\"  1 1;\n\tsetAttr -s 2 \".it[0].itg\";\n\tsetAttr \".sn\" yes;\n\tsetAttr \".mlid\" 0;\n\tsetAttr \".mlpr\" 0;\n\tsetAttr -s 2 \".pndr[0:1]\"  0 0;\n\tsetAttr \".tgdt[0].cid\" -type \"Int32Array\" 2 0 1 ;\n\tsetAttr \".aal\" -type \"attributeAlias\" {\"pCube3\",\"weight[0]\",\"pCube2\",\"weight[1]\"\n\t\t} ;\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"DAC2FF8B-4011-5A0E-C768-3FB674782D2F\";\ncreateNode objectSet -n \"blendShape1Set\";\n\trename -uid \"1FDC52CD-46E8-0B5C-E416-1B9C96412092\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"blendShape1GroupId\";\n\trename -uid \"3C080427-4AA8-D6CD-B88C-FE8BFBF44742\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"blendShape1GroupParts\";\n\trename -uid \"A3D21305-46F9-03E0-16C4-15A0744E7BF1\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"7721B146-4B34-391B-CEB8-359C2005D46B\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"BBB78EEF-4B94-1A7F-F087-83BD4EF03684\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"3DCC5458-4583-DF7B-C27E-428E2718881D\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"04930562-4F64-2527-DDD5-9F924175BDDA\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 10 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"26079D96-4FF8-CA50-0F51-13BCC1174FCA\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 50 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode script -n \"maya2glTF_scriptNode1\";\n\trename -uid \"DE7C8931-4F54-3874-EDD8-0886086BDA71\";\n\tsetAttr \".st\" 2;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"0D789058-4519-3350-17A1-DEA8ECE654CD\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"c:/temp/test1/\";\n\tsetAttr \".sceneName\" -type \"string\" \"test\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2018 Peter Verswyvelen\";\n\tsetAttr \".scale\" 10;\n\tsetAttr \".flags\" -type \"string\" \"-mts\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 3;\n\tsetAttr \".clip\" -type \"string\" \"clip1\";\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"8BA240E2-4CCA-377D-F4A8-54B4B6AADAB8\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\ncreateNode aiOptions -s -n \"defaultArnoldRenderOptions\";\n\trename -uid \"D6771F2A-4E6A-F25C-CC5C-67AECDA82229\";\n\tsetAttr \".version\" -type \"string\" \"2.1.0.1\";\ncreateNode aiAOVFilter -s -n \"defaultArnoldFilter\";\n\trename -uid \"C0880EE8-49EC-8B5A-93D9-09B6F04AE557\";\n\tsetAttr \".ai_translator\" -type \"string\" \"gaussian\";\ncreateNode aiAOVDriver -s -n \"defaultArnoldDriver\";\n\trename -uid \"2584F9B9-4C24-1678-BF5A-7383794FF76D\";\n\tsetAttr \".ai_translator\" -type \"string\" \"exr\";\ncreateNode aiAOVDriver -s -n \"defaultArnoldDisplayDriver\";\n\trename -uid \"CC325A80-4E67-2709-3F74-E7A789B832D0\";\n\tsetAttr \".output_mode\" 0;\n\tsetAttr \".ai_translator\" -type \"string\" \"maya\";\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 11;\n\tsetAttr \".unw\" 11;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 3 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".macc\";\n\tsetAttr -k on \".macd\";\n\tsetAttr -k on \".macq\";\n\tsetAttr -cb on \".ifg\";\n\tsetAttr -k on \".clip\";\n\tsetAttr -k on \".edm\";\n\tsetAttr -k on \".edl\";\n\tsetAttr \".ren\" -type \"string\" \"arnold\";\n\tsetAttr -av -k on \".esr\";\n\tsetAttr -k on \".ors\";\n\tsetAttr -cb on \".sdf\";\n\tsetAttr \".outf\" 51;\n\tsetAttr -cb on \".imfkey\" -type \"string\" \"exr\";\n\tsetAttr -k on \".gama\";\n\tsetAttr -cb on \".ar\";\n\tsetAttr -av \".bfs\";\n\tsetAttr -k on \".be\";\n\tsetAttr -k on \".fec\";\n\tsetAttr -k on \".ofc\";\n\tsetAttr -cb on \".ofe\";\n\tsetAttr -cb on \".efe\";\n\tsetAttr -cb on \".umfn\";\n\tsetAttr -cb on \".ufe\";\n\tsetAttr -k on \".comp\";\n\tsetAttr -k on \".cth\";\n\tsetAttr -k on \".soll\";\n\tsetAttr -k on \".rd\";\n\tsetAttr -k on \".lp\";\n\tsetAttr -k on \".sp\";\n\tsetAttr -k on \".shs\";\n\tsetAttr -k on \".lpr\";\n\tsetAttr -cb on \".gv\";\n\tsetAttr -cb on \".sv\";\n\tsetAttr -k on \".mm\";\n\tsetAttr -k on \".npu\";\n\tsetAttr -k on \".itf\";\n\tsetAttr -k on \".shp\";\n\tsetAttr -cb on \".isp\";\n\tsetAttr -k on \".uf\";\n\tsetAttr -k on \".oi\";\n\tsetAttr -k on \".rut\";\n\tsetAttr -av -k on \".mbf\";\n\tsetAttr -k on \".afp\";\n\tsetAttr -k on \".pfb\";\n\tsetAttr -cb on \".pfrm\";\n\tsetAttr -cb on \".pfom\";\n\tsetAttr -av -k on \".bll\";\n\tsetAttr -k on \".bls\";\n\tsetAttr -k on \".smv\";\n\tsetAttr -k on \".ubc\";\n\tsetAttr -k on \".mbc\";\n\tsetAttr -k on \".udbx\";\n\tsetAttr -k on \".smc\";\n\tsetAttr -k on \".kmv\";\n\tsetAttr -cb on \".isl\";\n\tsetAttr -cb on \".ism\";\n\tsetAttr -cb on \".imb\";\n\tsetAttr -k on \".rlen\";\n\tsetAttr -av -k on \".frts\";\n\tsetAttr -k on \".tlwd\";\n\tsetAttr -k on \".tlht\";\n\tsetAttr -k on \".jfc\";\n\tsetAttr -cb on \".rsb\";\n\tsetAttr -k on \".ope\";\n\tsetAttr -k on \".oppf\";\n\tsetAttr -cb on \".hbl\";\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"blendShape1GroupId.id\" \"pCubeShape1.iog.og[0].gid\";\nconnectAttr \"blendShape1Set.mwc\" \"pCubeShape1.iog.og[0].gco\";\nconnectAttr \"groupId2.id\" \"pCubeShape1.iog.og[1].gid\";\nconnectAttr \"tweakSet1.mwc\" \"pCubeShape1.iog.og[1].gco\";\nconnectAttr \"blendShape1.og[0]\" \"pCubeShape1.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"pCubeShape1.twl\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1Orig.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"blendShape1.mlpr\" \"shapeEditorManager.bspr[0]\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"blendShape1GroupParts.og\" \"blendShape1.ip[0].ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1.ip[0].gi\";\nconnectAttr \"pCubeShape3.w\" \"blendShape1.it[0].itg[0].iti[6000].igt\";\nconnectAttr \"pCubeShape2.w\" \"blendShape1.it[0].itg[1].iti[6000].igt\";\nconnectAttr \"shapeEditorManager.obsv[0]\" \"blendShape1.tgdt[0].dpvs\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"blendShape1GroupId.msg\" \"blendShape1Set.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[0]\" \"blendShape1Set.dsm\" -na;\nconnectAttr \"blendShape1.msg\" \"blendShape1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"blendShape1GroupParts.ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[1]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"pCubeShape1Orig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \":defaultArnoldDisplayDriver.msg\" \":defaultArnoldRenderOptions.drivers\"\n\t\t -na;\nconnectAttr \":defaultArnoldFilter.msg\" \":defaultArnoldRenderOptions.filt\";\nconnectAttr \":defaultArnoldDriver.msg\" \":defaultArnoldRenderOptions.drvr\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pCubeShape2.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pCubeShape3.iog\" \":initialShadingGroup.dsm\" -na;\n// End of CubeTwoTargets.ma\n"
  },
  {
    "path": "maya/scenes/blend/targets_existing/SimpleQuad1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: SimpleQuad1.ma\n//Last modified: Sun, Feb 03, 2019 11:54:27 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"E997E230-47FF-C91E-7FB1-989C587E0A8C\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1.4114401927737263 4.5304860645010292 1.3904320753565096 ;\n\tsetAttr \".r\" -type \"double3\" -72.938352729603452 -0.19999999999997822 1.4908940899730184e-16 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"7EE26CAF-44C2-A1F9-9799-4DBECA30FE5B\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 4.739053586287036;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 1.4162937360347874 0 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"F86785FB-405B-8C8B-72C0-D3B5B38180A4\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"C0C7F4B9-4E7D-3941-FD62-5D8D27895DE6\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"487A226A-497C-C9D1-B5B2-3DB23F1765C7\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"60DA26AE-4DB2-077B-46D9-80A782E1D2D6\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"817A0504-4C03-70E0-4F40-B6B5F13254AC\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"FC6CEAEA-4D96-D374-87D4-B384E01AFF50\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pPlane1\";\n\trename -uid \"86A60B80-49EC-85EB-D89D-E08375C1896B\";\ncreateNode mesh -n \"pPlaneShape1\" -p \"pPlane1\";\n\trename -uid \"4E4E2F74-4CEB-62D1-710B-DB8CFE3B3419\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode mesh -n \"pPlaneShape1Orig\" -p \"pPlane1\";\n\trename -uid \"49F98201-4C98-1946-E57A-E29B2979A181\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 4 \".uvst[0].uvsp[0:3]\" -type \"float2\" 0 0 1 0 0 1 1 1;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 4 \".vt[0:3]\"  -0.5 -1.110223e-16 0.5 0.5 -1.110223e-16 0.5\n\t\t -0.5 1.110223e-16 -0.5 0.5 1.110223e-16 -0.5;\n\tsetAttr -s 4 \".ed[0:3]\"  0 1 0 0 2 0 1 3 0 2 3 0;\n\tsetAttr -ch 4 \".fc[0]\" -type \"polyFaces\" \n\t\tf 4 0 2 -4 -2\n\t\tmu 0 4 0 1 3 2;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pPlane2\";\n\trename -uid \"16E7C449-4D16-7C3C-3B72-1AB6EB35166D\";\ncreateNode mesh -n \"pPlaneShape2\" -p \"pPlane2\";\n\trename -uid \"79B542B7-466B-B7C0-D0C7-8EBAAF0DC86E\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.5 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 4 \".uvst[0].uvsp[0:3]\" -type \"float2\" 0 0 1 0 0 1 1 1;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 4 \".pt[0:3]\" -type \"float3\"  0.24094518 5.3500576e-17 \n\t\t-0.24094518 -0.24094518 5.3500576e-17 -0.24094518 0.24094518 -5.3500576e-17 0.24094518 \n\t\t-0.24094518 -5.3500576e-17 0.24094518;\n\tsetAttr -s 4 \".vt[0:3]\"  -0.5 -1.110223e-16 0.5 0.5 -1.110223e-16 0.5\n\t\t -0.5 1.110223e-16 -0.5 0.5 1.110223e-16 -0.5;\n\tsetAttr -s 4 \".ed[0:3]\"  0 1 0 0 2 0 1 3 0 2 3 0;\n\tsetAttr -ch 4 \".fc[0]\" -type \"polyFaces\" \n\t\tf 4 0 2 -4 -2\n\t\tmu 0 4 0 1 3 2;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"1C6DD9F9-4239-CE72-CEE6-5781B0225EB6\";\n\tsetAttr \".t\" -type \"double3\" 1.7193139785098306 1.6753342135294416 2.1684548662426835 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"B778C091-44A7-92B1-621B-E4963D5B5C20\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 2.9208560661722967;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.70814686801739368 0 0 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"378C37BD-4600-B870-58B6-48BF30AB8C0F\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"F142FCD2-4CBD-390E-8552-7892BFF89AEF\";\n\tsetAttr \".bsdt[0].bscd\" -type \"Int32Array\" 1 0 ;\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"D487F687-4780-42FB-A5AB-E480DE6FB867\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"4AF68B4A-4B17-8B48-D1D0-C3BF9F9DA2E9\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"1B826BFF-4388-C94B-3834-DA80213415CE\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"50D8EBA1-48FC-44A5-0ABB-62B3FDC26944\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"CD52B446-4D20-BFFC-C96E-8996B66BFE8C\";\n\tsetAttr \".g\" yes;\ncreateNode animCurveTL -n \"pPlane2_translateX\";\n\trename -uid \"CB560BF7-4111-9723-7565-BEA4900A81B8\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 1.4162937360347874;\ncreateNode animCurveTL -n \"pPlane2_translateY\";\n\trename -uid \"46A263FE-4404-2ADB-C03B-6F9BFBB582F6\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode animCurveTL -n \"pPlane2_translateZ\";\n\trename -uid \"22DDB9A9-4C8F-3C0A-9303-D9810B62EEF9\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode animCurveTU -n \"pPlane2_visibility\";\n\trename -uid \"67313293-4F43-E5BD-4133-06B43AB1843A\";\n\tsetAttr \".tan\" 9;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 1;\n\tsetAttr \".kot[0]\"  5;\ncreateNode animCurveTA -n \"pPlane2_rotateX\";\n\trename -uid \"83D3E6CE-4AF2-D879-7339-ECAF6A2E7E3A\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode animCurveTA -n \"pPlane2_rotateY\";\n\trename -uid \"3B0AB813-4546-2D01-0250-7C81981F6195\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode animCurveTA -n \"pPlane2_rotateZ\";\n\trename -uid \"4896C6C0-45C5-211D-03AA-4CB65B2A619C\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode animCurveTU -n \"pPlane2_scaleX\";\n\trename -uid \"2D7784CA-410C-0A96-DEF3-DBB2ACE7555A\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 1;\ncreateNode animCurveTU -n \"pPlane2_scaleY\";\n\trename -uid \"45E19896-41B6-32BD-CB5A-F697CB3E6636\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 1;\ncreateNode animCurveTU -n \"pPlane2_scaleZ\";\n\trename -uid \"256CF5FE-4741-7438-B8B0-FB8919A915DE\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 1;\ncreateNode blendShape -n \"blendShape1\";\n\trename -uid \"87D826C4-4260-764D-8CDE-3896FAF64830\";\n\taddAttr -ci true -h true -sn \"aal\" -ln \"attributeAliasList\" -dt \"attributeAlias\";\n\tsetAttr \".w[0]\"  1;\n\tsetAttr \".mlid\" 0;\n\tsetAttr \".mlpr\" 0;\n\tsetAttr \".pndr[0]\"  0;\n\tsetAttr \".tgdt[0].cid\" -type \"Int32Array\" 1 0 ;\n\tsetAttr \".aal\" -type \"attributeAlias\" {\"pPlane2\",\"weight[0]\"} ;\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"A7025A67-4AE0-0CB9-5553-9A99A730925C\";\ncreateNode objectSet -n \"blendShape1Set\";\n\trename -uid \"8C26DFDD-4D50-0081-BCE2-4191D79966E1\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"blendShape1GroupId\";\n\trename -uid \"803877A0-45B0-89ED-91E8-2A8FA7557690\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"blendShape1GroupParts\";\n\trename -uid \"86C51FD4-44EA-8BD1-3A36-62AD42571D7D\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"6394C101-4618-1C4A-DC45-74BB82A3269A\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"0D8A3EE4-4879-3242-5BCC-6EBB01475E3E\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"DF58B688-4BB8-0FDC-8ACC-A49CF97A258E\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"B301D3A1-4A54-42CC-723A-B9BB3409880F\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 1\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 1\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 1\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 1\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 1 -size 10 -divisions 4 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"4233DAC0-4B5C-A320-8E1F-BAA52868D273\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"F4E83D03-4C10-CFCD-1EF0-E89D748C8F5E\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 54;\n\tsetAttr \".unw\" 54;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"blendShape1GroupId.id\" \"pPlaneShape1.iog.og[2].gid\";\nconnectAttr \"blendShape1Set.mwc\" \"pPlaneShape1.iog.og[2].gco\";\nconnectAttr \"groupId2.id\" \"pPlaneShape1.iog.og[3].gid\";\nconnectAttr \"tweakSet1.mwc\" \"pPlaneShape1.iog.og[3].gco\";\nconnectAttr \"blendShape1.og[0]\" \"pPlaneShape1.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"pPlaneShape1.twl\";\nconnectAttr \"pPlane2_scaleX.o\" \"pPlane2.sx\";\nconnectAttr \"pPlane2_scaleY.o\" \"pPlane2.sy\";\nconnectAttr \"pPlane2_scaleZ.o\" \"pPlane2.sz\";\nconnectAttr \"pPlane2_translateX.o\" \"pPlane2.tx\";\nconnectAttr \"pPlane2_translateY.o\" \"pPlane2.ty\";\nconnectAttr \"pPlane2_translateZ.o\" \"pPlane2.tz\";\nconnectAttr \"pPlane2_visibility.o\" \"pPlane2.v\";\nconnectAttr \"pPlane2_rotateX.o\" \"pPlane2.rx\";\nconnectAttr \"pPlane2_rotateY.o\" \"pPlane2.ry\";\nconnectAttr \"pPlane2_rotateZ.o\" \"pPlane2.rz\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"blendShape1.mlpr\" \"shapeEditorManager.bspr[0]\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"blendShape1GroupParts.og\" \"blendShape1.ip[0].ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1.ip[0].gi\";\nconnectAttr \"pPlaneShape2.w\" \"blendShape1.it[0].itg[0].iti[6000].igt\";\nconnectAttr \"shapeEditorManager.obsv[0]\" \"blendShape1.tgdt[0].dpvs\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"blendShape1GroupId.msg\" \"blendShape1Set.gn\" -na;\nconnectAttr \"pPlaneShape1.iog.og[2]\" \"blendShape1Set.dsm\" -na;\nconnectAttr \"blendShape1.msg\" \"blendShape1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"blendShape1GroupParts.ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"pPlaneShape1.iog.og[3]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"pPlaneShape1Orig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pPlaneShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pPlaneShape2.iog\" \":initialShadingGroup.dsm\" -na;\n// End of SimpleQuad1.ma\n"
  },
  {
    "path": "maya/scenes/blend/targets_existing/SimpleQuadAnim1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: SimpleQuadAnim1.ma\n//Last modified: Sun, Feb 03, 2019 11:54:30 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"E997E230-47FF-C91E-7FB1-989C587E0A8C\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1.4114401927737263 4.5304860645010292 1.3904320753565096 ;\n\tsetAttr \".r\" -type \"double3\" -72.938352729603452 -0.19999999999997822 1.4908940899730184e-16 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"7EE26CAF-44C2-A1F9-9799-4DBECA30FE5B\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 4.739053586287036;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 1.4162937360347874 0 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"F86785FB-405B-8C8B-72C0-D3B5B38180A4\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"C0C7F4B9-4E7D-3941-FD62-5D8D27895DE6\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"487A226A-497C-C9D1-B5B2-3DB23F1765C7\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"60DA26AE-4DB2-077B-46D9-80A782E1D2D6\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"817A0504-4C03-70E0-4F40-B6B5F13254AC\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"FC6CEAEA-4D96-D374-87D4-B384E01AFF50\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pPlane1\";\n\trename -uid \"86A60B80-49EC-85EB-D89D-E08375C1896B\";\ncreateNode mesh -n \"pPlaneShape1\" -p \"pPlane1\";\n\trename -uid \"4E4E2F74-4CEB-62D1-710B-DB8CFE3B3419\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode mesh -n \"pPlaneShape1Orig\" -p \"pPlane1\";\n\trename -uid \"49F98201-4C98-1946-E57A-E29B2979A181\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 4 \".uvst[0].uvsp[0:3]\" -type \"float2\" 0 0 1 0 0 1 1 1;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 4 \".vt[0:3]\"  -0.5 -1.110223e-16 0.5 0.5 -1.110223e-16 0.5\n\t\t -0.5 1.110223e-16 -0.5 0.5 1.110223e-16 -0.5;\n\tsetAttr -s 4 \".ed[0:3]\"  0 1 0 0 2 0 1 3 0 2 3 0;\n\tsetAttr -ch 4 \".fc[0]\" -type \"polyFaces\" \n\t\tf 4 0 2 -4 -2\n\t\tmu 0 4 0 1 3 2;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pPlane2\";\n\trename -uid \"16E7C449-4D16-7C3C-3B72-1AB6EB35166D\";\ncreateNode mesh -n \"pPlaneShape2\" -p \"pPlane2\";\n\trename -uid \"79B542B7-466B-B7C0-D0C7-8EBAAF0DC86E\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.5 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 4 \".uvst[0].uvsp[0:3]\" -type \"float2\" 0 0 1 0 0 1 1 1;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 4 \".pt[0:3]\" -type \"float3\"  0.24094518 5.3500576e-17 \n\t\t-0.24094518 -0.24094518 5.3500576e-17 -0.24094518 0.24094518 -5.3500576e-17 0.24094518 \n\t\t-0.24094518 -5.3500576e-17 0.24094518;\n\tsetAttr -s 4 \".vt[0:3]\"  -0.5 -1.110223e-16 0.5 0.5 -1.110223e-16 0.5\n\t\t -0.5 1.110223e-16 -0.5 0.5 1.110223e-16 -0.5;\n\tsetAttr -s 4 \".ed[0:3]\"  0 1 0 0 2 0 1 3 0 2 3 0;\n\tsetAttr -ch 4 \".fc[0]\" -type \"polyFaces\" \n\t\tf 4 0 2 -4 -2\n\t\tmu 0 4 0 1 3 2;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"6B87FC27-456F-2A8A-C012-53B1FD7C889C\";\n\tsetAttr \".t\" -type \"double3\" 1.7787870914649839 1.973474029572337 2.5543496505179473 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"0690CA0C-442C-DC76-4255-DB966AD137F5\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 3.440646973099347;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.58767428782292042 0 0 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"6B013EF6-4503-D842-1E1D-5CBD65C14C69\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"DFF5D9B9-470A-E589-B262-52BA4F4E162E\";\n\tsetAttr \".bsdt[0].bscd\" -type \"Int32Array\" 1 0 ;\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"BF1BFEB5-4890-E079-E8FE-62A7B814DB47\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"7C0C37D9-4470-99DD-6726-C4B8C637BE58\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"1B826BFF-4388-C94B-3834-DA80213415CE\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"14FE578D-4844-4BBD-9EAD-03B2DECBD47A\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"CD52B446-4D20-BFFC-C96E-8996B66BFE8C\";\n\tsetAttr \".g\" yes;\ncreateNode animCurveTL -n \"pPlane2_translateX\";\n\trename -uid \"CB560BF7-4111-9723-7565-BEA4900A81B8\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 1.4162937360347874;\ncreateNode animCurveTL -n \"pPlane2_translateY\";\n\trename -uid \"46A263FE-4404-2ADB-C03B-6F9BFBB582F6\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode animCurveTL -n \"pPlane2_translateZ\";\n\trename -uid \"22DDB9A9-4C8F-3C0A-9303-D9810B62EEF9\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode animCurveTU -n \"pPlane2_visibility\";\n\trename -uid \"67313293-4F43-E5BD-4133-06B43AB1843A\";\n\tsetAttr \".tan\" 9;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 1;\n\tsetAttr \".kot[0]\"  5;\ncreateNode animCurveTA -n \"pPlane2_rotateX\";\n\trename -uid \"83D3E6CE-4AF2-D879-7339-ECAF6A2E7E3A\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode animCurveTA -n \"pPlane2_rotateY\";\n\trename -uid \"3B0AB813-4546-2D01-0250-7C81981F6195\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode animCurveTA -n \"pPlane2_rotateZ\";\n\trename -uid \"4896C6C0-45C5-211D-03AA-4CB65B2A619C\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode animCurveTU -n \"pPlane2_scaleX\";\n\trename -uid \"2D7784CA-410C-0A96-DEF3-DBB2ACE7555A\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 1;\ncreateNode animCurveTU -n \"pPlane2_scaleY\";\n\trename -uid \"45E19896-41B6-32BD-CB5A-F697CB3E6636\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 1;\ncreateNode animCurveTU -n \"pPlane2_scaleZ\";\n\trename -uid \"256CF5FE-4741-7438-B8B0-FB8919A915DE\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 1;\ncreateNode blendShape -n \"blendShape1\";\n\trename -uid \"87D826C4-4260-764D-8CDE-3896FAF64830\";\n\taddAttr -ci true -h true -sn \"aal\" -ln \"attributeAliasList\" -dt \"attributeAlias\";\n\tsetAttr \".mlid\" 0;\n\tsetAttr \".mlpr\" 0;\n\tsetAttr \".pndr[0]\"  0;\n\tsetAttr \".tgdt[0].cid\" -type \"Int32Array\" 1 0 ;\n\tsetAttr \".aal\" -type \"attributeAlias\" {\"pPlane2\",\"weight[0]\"} ;\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"A7025A67-4AE0-0CB9-5553-9A99A730925C\";\ncreateNode objectSet -n \"blendShape1Set\";\n\trename -uid \"8C26DFDD-4D50-0081-BCE2-4191D79966E1\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"blendShape1GroupId\";\n\trename -uid \"803877A0-45B0-89ED-91E8-2A8FA7557690\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"blendShape1GroupParts\";\n\trename -uid \"86C51FD4-44EA-8BD1-3A36-62AD42571D7D\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"6394C101-4618-1C4A-DC45-74BB82A3269A\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"0D8A3EE4-4879-3242-5BCC-6EBB01475E3E\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"DF58B688-4BB8-0FDC-8ACC-A49CF97A258E\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"B301D3A1-4A54-42CC-723A-B9BB3409880F\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 1\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 1\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 1\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 1\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 1 -size 10 -divisions 4 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"4233DAC0-4B5C-A320-8E1F-BAA52868D273\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 40 -ast 1 -aet 40 \";\n\tsetAttr \".st\" 6;\ncreateNode animCurveTU -n \"blendShape1_pPlane2\";\n\trename -uid \"74B6A9EB-4CF9-2493-A1E2-42BBEFF6665D\";\n\tsetAttr \".tan\" 18;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 20 1 40 0;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"D6DBCA5B-48F4-B035-7B57-DCAAC73EBE60\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 40;\n\tsetAttr \".unw\" 40;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"blendShape1GroupId.id\" \"pPlaneShape1.iog.og[2].gid\";\nconnectAttr \"blendShape1Set.mwc\" \"pPlaneShape1.iog.og[2].gco\";\nconnectAttr \"groupId2.id\" \"pPlaneShape1.iog.og[3].gid\";\nconnectAttr \"tweakSet1.mwc\" \"pPlaneShape1.iog.og[3].gco\";\nconnectAttr \"blendShape1.og[0]\" \"pPlaneShape1.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"pPlaneShape1.twl\";\nconnectAttr \"pPlane2_scaleX.o\" \"pPlane2.sx\";\nconnectAttr \"pPlane2_scaleY.o\" \"pPlane2.sy\";\nconnectAttr \"pPlane2_scaleZ.o\" \"pPlane2.sz\";\nconnectAttr \"pPlane2_translateX.o\" \"pPlane2.tx\";\nconnectAttr \"pPlane2_translateY.o\" \"pPlane2.ty\";\nconnectAttr \"pPlane2_translateZ.o\" \"pPlane2.tz\";\nconnectAttr \"pPlane2_visibility.o\" \"pPlane2.v\";\nconnectAttr \"pPlane2_rotateX.o\" \"pPlane2.rx\";\nconnectAttr \"pPlane2_rotateY.o\" \"pPlane2.ry\";\nconnectAttr \"pPlane2_rotateZ.o\" \"pPlane2.rz\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"blendShape1.mlpr\" \"shapeEditorManager.bspr[0]\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"blendShape1GroupParts.og\" \"blendShape1.ip[0].ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1.ip[0].gi\";\nconnectAttr \"pPlaneShape2.w\" \"blendShape1.it[0].itg[0].iti[6000].igt\";\nconnectAttr \"shapeEditorManager.obsv[0]\" \"blendShape1.tgdt[0].dpvs\";\nconnectAttr \"blendShape1_pPlane2.o\" \"blendShape1.w[0]\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"blendShape1GroupId.msg\" \"blendShape1Set.gn\" -na;\nconnectAttr \"pPlaneShape1.iog.og[2]\" \"blendShape1Set.dsm\" -na;\nconnectAttr \"blendShape1.msg\" \"blendShape1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"blendShape1GroupParts.ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"pPlaneShape1.iog.og[3]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"pPlaneShape1Orig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pPlaneShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pPlaneShape2.iog\" \":initialShadingGroup.dsm\" -na;\n// End of SimpleQuadAnim1.ma\n"
  },
  {
    "path": "maya/scenes/blend/targets_existing/SmoothAfterMorph.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: SmoothAfterMorph.ma\n//Last modified: Sun, Feb 03, 2019 11:54:36 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"48CB1007-4255-EC98-E3E5-98A2E7524C3A\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -0.027716448112984127 2.6318656257091728 7.9401452502465162 ;\n\tsetAttr \".r\" -type \"double3\" -18.33835272960296 -0.1999999999999236 6.21205870822091e-17 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"4B9E98A3-4B23-CCCC-F35A-7CBBED2BD919\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 8.365009950280589;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"06C4927E-4050-C754-7F2B-66A8CFDE9B54\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"D7A59099-4A36-57B8-4B1B-3B9B7E159C16\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"BD4562B7-4590-A56D-947A-9188A45E9DA2\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"E9D3B5A3-41C2-6D83-9ED5-8FB064BB6407\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"69B53276-41AB-5416-B6D7-97BC258969F2\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"7EF536F2-44C2-B9CA-04DA-7EB534EA3796\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"D004CA3A-4F75-1A65-450E-8C9284E675A7\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"3DC25CA8-4789-B7BC-3FED-92A878DED872\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode mesh -n \"pCubeShape1Orig\" -p \"pCube1\";\n\trename -uid \"AC6D7169-4C93-20E8-D05A-0CAEBDF9ED46\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pCube2\";\n\trename -uid \"04C714B3-4EFC-D3E2-1B5F-9187A9B42990\";\n\tsetAttr \".t\" -type \"double3\" 1.75 0 0 ;\ncreateNode mesh -n \"pCubeShape2\" -p \"pCube2\";\n\trename -uid \"8DA00523-44E1-5026-5172-C7BCAE7290CD\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.375 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 4 \".pt[2:5]\" -type \"float3\"  0.24803072 0 -0.24803072 \n\t\t-0.24803072 0 -0.24803072 0.24803072 0 0.24803072 -0.24803072 0 0.24803072;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"BB7D08DB-4CFB-FE49-6ED8-33B1AE766423\";\n\tsetAttr \".t\" -type \"double3\" 2.4456105810683639 2.4653807410177198 3.1910449997545616 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"8DBA6612-4DF1-0C09-1194-24AB34982C7B\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 4.2982601529133104;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.95760186016559601 0 0 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"E971314D-49EB-09A6-6987-8C8C7834C462\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"654D5F4B-46E6-AF7F-69AE-E480FAD7DBF8\";\n\tsetAttr \".bsdt[0].bscd\" -type \"Int32Array\" 1 0 ;\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"D7314AA9-4494-1599-42DC-4BAACF7EF039\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"DDF0BA13-4F28-808A-1505-32842BB5F301\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"DC2BAF23-4651-8F9B-B8A0-BCB9A942D50F\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"AEEA8A50-4373-57F5-DE49-E8AF14A558C8\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"A1DC5C32-43C9-81FF-F7B6-F1855403120D\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"72D40991-4787-4379-3E84-A88A0E99A4F2\";\n\tsetAttr \".cuv\" 4;\ncreateNode blendShape -n \"blendShape1\";\n\trename -uid \"4FC21004-45C7-804B-3494-E29269EC5AFF\";\n\taddAttr -ci true -h true -sn \"aal\" -ln \"attributeAliasList\" -dt \"attributeAlias\";\n\tsetAttr \".w[0]\"  1;\n\tsetAttr \".mlid\" 0;\n\tsetAttr \".mlpr\" 0;\n\tsetAttr \".pndr[0]\"  0;\n\tsetAttr \".tgdt[0].cid\" -type \"Int32Array\" 1 0 ;\n\tsetAttr \".aal\" -type \"attributeAlias\" {\"pCube2\",\"weight[0]\"} ;\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"8EBB4FD9-43AF-CEC7-A15D-EAA28C3D4C0D\";\ncreateNode objectSet -n \"blendShape1Set\";\n\trename -uid \"1947F613-4D58-EE2D-7E7A-87A80E9EE56E\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"blendShape1GroupId\";\n\trename -uid \"585A3515-4A9B-7B65-2AA9-3C8DC008A3DB\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"blendShape1GroupParts\";\n\trename -uid \"95B666C0-40D2-EE5E-C7E5-3CA15B9C1AF7\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"7D01B0A6-4B2F-A58F-6F74-2FB4F40A7D43\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"DB6CA803-4490-9DE3-F4A8-D5AB1E815FAF\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"DC0F0FA5-470F-1493-DB0C-C89955F15687\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode polySmoothFace -n \"polySmoothFace1\";\n\trename -uid \"B6F71FBA-434B-FDDC-BFE9-089CDC403060\";\n\tsetAttr \".ics\" -type \"componentList\" 1 \"f[*]\";\n\tsetAttr \".sdt\" 2;\n\tsetAttr \".ost\" yes;\n\tsetAttr \".dv\" 2;\n\tsetAttr \".suv\" yes;\n\tsetAttr \".ps\" 0.10000000149011612;\n\tsetAttr \".ro\" 1;\n\tsetAttr \".ma\" yes;\n\tsetAttr \".m08\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"C45B76DF-4CEB-A51E-DB1F-B3ABC34EE7AE\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 1 -size 10 -divisions 4 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"50F1B09C-43B0-91B4-8551-88B6E9028D67\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"AF8CACF1-4454-83FA-548F-0393C2676D5B\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 102;\n\tsetAttr \".unw\" 102;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"blendShape1GroupId.id\" \"pCubeShape1.iog.og[0].gid\";\nconnectAttr \"blendShape1Set.mwc\" \"pCubeShape1.iog.og[0].gco\";\nconnectAttr \"groupId2.id\" \"pCubeShape1.iog.og[1].gid\";\nconnectAttr \"tweakSet1.mwc\" \"pCubeShape1.iog.og[1].gco\";\nconnectAttr \"polySmoothFace1.out\" \"pCubeShape1.i\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1Orig.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"blendShape1.mlpr\" \"shapeEditorManager.bspr[0]\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"blendShape1GroupParts.og\" \"blendShape1.ip[0].ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1.ip[0].gi\";\nconnectAttr \"pCubeShape2.w\" \"blendShape1.it[0].itg[0].iti[6000].igt\";\nconnectAttr \"shapeEditorManager.obsv[0]\" \"blendShape1.tgdt[0].dpvs\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"blendShape1GroupId.msg\" \"blendShape1Set.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[0]\" \"blendShape1Set.dsm\" -na;\nconnectAttr \"blendShape1.msg\" \"blendShape1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"blendShape1GroupParts.ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[1]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"pCubeShape1Orig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"blendShape1.og[0]\" \"polySmoothFace1.ip\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pCubeShape2.iog\" \":initialShadingGroup.dsm\" -na;\n// End of SmoothAfterMorph.ma\n"
  },
  {
    "path": "maya/scenes/blend/targets_missing/CubeToSphere.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: CubeToSphere.ma\n//Last modified: Sun, Feb 03, 2019 11:54:42 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"0AD65ADC-4CEB-89FE-55B0-599DE3CE5D6D\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0.90922640057238158 2.2827014916825341 5.2638594412178374 ;\n\tsetAttr \".r\" -type \"double3\" -23.138352729610638 9.7999999999998533 4.0345661506751202e-16 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"C4F0FEA4-4000-B2D7-80B1-51989BD5F6EF\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 5.8090993112226563;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0 0 1.4901161193847656e-08 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"40A50CD8-473B-3E3C-2D97-52B261128287\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"5FD09E2A-4D8B-165C-825C-098D1056517D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"675EEA56-4565-8A9D-00C8-C49A83254BE8\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"F5E401AC-4591-2B24-C3CF-F195521977A9\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"76F199E4-42FE-F9CD-9F13-4097832551D6\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"A3561AA5-4910-B156-C375-4AB98D953E47\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"41162F3B-4E66-D20B-E93F-BEAF2A1A2230\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"B599D3BB-4977-A3AF-12DA-78822CB7312D\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode mesh -n \"pCubeShape1Orig\" -p \"pCube1\";\n\trename -uid \"A9DD1AC3-417C-3324-BB9E-5CA5AC0EFA68\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 125 \".uvst[0].uvsp[0:124]\" -type \"float2\" 0.375 0 0.375 1 0.625\n\t\t 0 0.625 1 0.375 0.25 0.625 0.25 0.375 0.5 0.125 0.25 0.625 0.5 0.875 0.25 0.375 0.75\n\t\t 0.125 0 0.625 0.75 0.875 0 0.5 0.125 0.5 0.375 0.5 0.625 0.5 0.875 0.75 0.125 0.25\n\t\t 0.125 0.5 0 0.5 1 0.625 0.125 0.5 0.25 0.375 0.125 0.625 0.375 0.75 0.25 0.5 0.5\n\t\t 0.375 0.375 0.25 0.25 0.625 0.625 0.875 0.125 0.5 0.75 0.375 0.625 0.125 0.125 0.625\n\t\t 0.875 0.75 0 0.375 0.875 0.25 0 0.4375 0.0625 0.5625 0.0625 0.5625 0.1875 0.4375\n\t\t 0.1875 0.4375 0.3125 0.5625 0.3125 0.5625 0.4375 0.4375 0.4375 0.4375 0.5625 0.5625\n\t\t 0.5625 0.5625 0.6875 0.4375 0.6875 0.4375 0.8125 0.5625 0.8125 0.5625 0.9375 0.4375\n\t\t 0.9375 0.6875 0.0625 0.8125 0.0625 0.8125 0.1875 0.6875 0.1875 0.1875 0.0625 0.3125\n\t\t 0.0625 0.3125 0.1875 0.1875 0.1875 0.5 0.0625 0.5625 0.125 0.5 0.1875 0.4375 0.125\n\t\t 0.5 0.3125 0.5625 0.375 0.5 0.4375 0.4375 0.375 0.5 0.5625 0.5625 0.625 0.5 0.6875\n\t\t 0.4375 0.625 0.5 0.8125 0.5625 0.875 0.5 0.9375 0.4375 0.875 0.75 0.0625 0.8125 0.125\n\t\t 0.75 0.1875 0.6875 0.125 0.25 0.0625 0.3125 0.125 0.25 0.1875 0.1875 0.125 0.4375\n\t\t 0 0.4375 1 0.5625 0 0.5625 1 0.625 0.0625 0.625 0.1875 0.5625 0.25 0.4375 0.25 0.375\n\t\t 0.1875 0.375 0.0625 0.625 0.3125 0.6875 0.25 0.625 0.4375 0.8125 0.25 0.5625 0.5\n\t\t 0.4375 0.5 0.375 0.4375 0.1875 0.25 0.375 0.3125 0.3125 0.25 0.625 0.5625 0.875 0.1875\n\t\t 0.625 0.6875 0.875 0.0625 0.5625 0.75 0.4375 0.75 0.375 0.6875 0.125 0.0625 0.375\n\t\t 0.5625 0.125 0.1875 0.625 0.8125 0.8125 0 0.625 0.9375 0.6875 0 0.375 0.9375 0.3125\n\t\t 0 0.375 0.8125 0.1875 0;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 98 \".vt[0:97]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5 -0.5 0.5 0 0.5 0 -0.5 0 -0.5 -0.5\n\t\t -0.5 0 -0.5 0.5 -0.5 0 -0.5 -0.5 0 0 -0.5 0.5 0.5 0 0.5 0 0.5 0.5 -0.5 0 0.5 0.5 0.5 0\n\t\t 0 0.5 -0.5 0 0 0.5 0 0.5 0 0 0 -0.5 0 -0.5 0 0.5 0 0 -0.5 0 0 -0.25 -0.25 0.5 0.25 -0.25 0.5\n\t\t 0.25 0.25 0.5 -0.25 0.25 0.5 -0.25 0.5 0.25 0.25 0.5 0.25 0.25 0.5 -0.25 -0.25 0.5 -0.25\n\t\t -0.25 0.25 -0.5 0.25 0.25 -0.5 0.25 -0.25 -0.5 -0.25 -0.25 -0.5 -0.25 -0.5 -0.25\n\t\t 0.25 -0.5 -0.25 0.25 -0.5 0.25 -0.25 -0.5 0.25 0.5 -0.25 0.25 0.5 -0.25 -0.25 0.5 0.25 -0.25\n\t\t 0.5 0.25 0.25 -0.5 -0.25 -0.25 -0.5 -0.25 0.25 -0.5 0.25 0.25 -0.5 0.25 -0.25 0 -0.25 0.5\n\t\t 0.25 0 0.5 0 0.25 0.5 -0.25 0 0.5 0 0.5 0.25 0.25 0.5 0 0 0.5 -0.25 -0.25 0.5 0 0 0.25 -0.5\n\t\t 0.25 0 -0.5 0 -0.25 -0.5 -0.25 0 -0.5 0 -0.5 -0.25 0.25 -0.5 0 0 -0.5 0.25 -0.25 -0.5 0\n\t\t 0.5 -0.25 0 0.5 0 -0.25 0.5 0.25 0 0.5 0 0.25 -0.5 -0.25 0 -0.5 0 0.25 -0.5 0.25 0\n\t\t -0.5 0 -0.25 -0.25 -0.5 0.5 0.25 -0.5 0.5 0.5 -0.25 0.5 0.5 0.25 0.5 0.25 0.5 0.5\n\t\t -0.25 0.5 0.5 -0.5 0.25 0.5 -0.5 -0.25 0.5 0.5 0.5 0.25 0.5 0.5 -0.25 0.25 0.5 -0.5\n\t\t -0.25 0.5 -0.5 -0.5 0.5 -0.25 -0.5 0.5 0.25 0.5 0.25 -0.5 0.5 -0.25 -0.5 0.25 -0.5 -0.5\n\t\t -0.25 -0.5 -0.5 -0.5 -0.25 -0.5 -0.5 0.25 -0.5 0.5 -0.5 -0.25 0.5 -0.5 0.25 -0.5 -0.5 0.25\n\t\t -0.5 -0.5 -0.25;\n\tsetAttr -s 192 \".ed\";\n\tsetAttr \".ed[0:165]\"  0 74 0 74 14 0 14 75 0 75 1 0 2 79 0 79 16 0 16 78 0\n\t\t 78 3 0 4 85 0 85 19 0 19 84 0 84 5 0 6 91 0 91 10 0 10 90 0 90 7 0 0 81 0 81 17 0\n\t\t 17 80 0 80 2 0 1 76 0 76 15 0 15 77 0 77 3 0 2 87 0 87 8 0 8 86 0 86 4 0 3 82 0 82 18 0\n\t\t 18 83 0 83 5 0 4 93 0 93 11 0 11 92 0 92 6 0 5 88 0 88 9 0 9 89 0 89 7 0 6 97 0 97 13 0\n\t\t 13 96 0 96 0 0 7 94 0 94 12 0 12 95 0 95 1 0 74 26 1 26 81 1 14 50 1 50 26 1 50 20 1\n\t\t 20 53 1 53 26 1 53 17 1 75 27 1 27 50 1 76 27 1 15 51 1 51 27 1 51 20 1 51 28 1 28 52 1\n\t\t 52 20 1 77 28 1 78 28 1 16 52 1 53 29 1 29 80 1 52 29 1 79 29 1 79 30 1 30 87 1 16 54 1\n\t\t 54 30 1 54 21 1 21 57 1 57 30 1 57 8 1 78 31 1 31 54 1 82 31 1 18 55 1 55 31 1 55 21 1\n\t\t 55 32 1 32 56 1 56 21 1 83 32 1 84 32 1 19 56 1 57 33 1 33 86 1 56 33 1 85 33 1 85 34 1\n\t\t 34 93 1 19 58 1 58 34 1 58 22 1 22 61 1 61 34 1 61 11 1 84 35 1 35 58 1 88 35 1 9 59 1\n\t\t 59 35 1 59 22 1 59 36 1 36 60 1 60 22 1 89 36 1 90 36 1 10 60 1 61 37 1 37 92 1 60 37 1\n\t\t 91 37 1 91 38 1 38 97 1 10 62 1 62 38 1 62 23 1 23 65 1 65 38 1 65 13 1 90 39 1 39 62 1\n\t\t 94 39 1 12 63 1 63 39 1 63 23 1 63 40 1 40 64 1 64 23 1 95 40 1 75 40 1 14 64 1 65 41 1\n\t\t 41 96 1 64 41 1 74 41 1 95 42 1 42 76 1 12 66 1 66 42 1 66 24 1 24 69 1 69 42 1 69 15 1\n\t\t 94 43 1 43 66 1 89 43 1 9 67 1 67 43 1 67 24 1 67 44 1 44 68 1 68 24 1 88 44 1 83 44 1\n\t\t 18 68 1 69 45 1 45 77 1;\n\tsetAttr \".ed[166:191]\" 68 45 1 82 45 1 97 46 1 46 92 1 13 70 1 70 46 1 70 25 1\n\t\t 25 73 1 73 46 1 73 11 1 96 47 1 47 70 1 81 47 1 17 71 1 71 47 1 71 25 1 71 48 1 48 72 1\n\t\t 72 25 1 80 48 1 87 48 1 8 72 1 73 49 1 49 93 1 72 49 1 86 49 1;\n\tsetAttr -s 96 -ch 384 \".fc[0:95]\" -type \"polyFaces\" \n\t\tf 4 0 48 49 -17\n\t\tmu 0 4 0 87 39 96\n\t\tf 4 1 50 51 -49\n\t\tmu 0 4 87 20 63 39\n\t\tf 4 -52 52 53 54\n\t\tmu 0 4 39 63 14 66\n\t\tf 4 -50 -55 55 -18\n\t\tmu 0 4 96 39 66 24\n\t\tf 4 2 56 57 -51\n\t\tmu 0 4 20 89 40 63\n\t\tf 4 3 20 58 -57\n\t\tmu 0 4 89 2 91 40\n\t\tf 4 -59 21 59 60\n\t\tmu 0 4 40 91 22 64\n\t\tf 4 -58 -61 61 -53\n\t\tmu 0 4 63 40 64 14\n\t\tf 4 -62 62 63 64\n\t\tmu 0 4 14 64 41 65\n\t\tf 4 -60 22 65 -63\n\t\tmu 0 4 64 22 92 41\n\t\tf 4 -66 23 -8 66\n\t\tmu 0 4 41 92 5 93\n\t\tf 4 -64 -67 -7 67\n\t\tmu 0 4 65 41 93 23\n\t\tf 4 -56 68 69 -19\n\t\tmu 0 4 24 66 42 95\n\t\tf 4 -54 -65 70 -69\n\t\tmu 0 4 66 14 65 42\n\t\tf 4 -71 -68 -6 71\n\t\tmu 0 4 42 65 23 94\n\t\tf 4 -70 -72 -5 -20\n\t\tmu 0 4 95 42 94 4\n\t\tf 4 4 72 73 -25\n\t\tmu 0 4 4 94 43 105\n\t\tf 4 5 74 75 -73\n\t\tmu 0 4 94 23 67 43\n\t\tf 4 -76 76 77 78\n\t\tmu 0 4 43 67 15 70\n\t\tf 4 -74 -79 79 -26\n\t\tmu 0 4 105 43 70 28\n\t\tf 4 6 80 81 -75\n\t\tmu 0 4 23 93 44 67\n\t\tf 4 7 28 82 -81\n\t\tmu 0 4 93 5 97 44\n\t\tf 4 -83 29 83 84\n\t\tmu 0 4 44 97 25 68\n\t\tf 4 -82 -85 85 -77\n\t\tmu 0 4 67 44 68 15\n\t\tf 4 -86 86 87 88\n\t\tmu 0 4 15 68 45 69\n\t\tf 4 -84 30 89 -87\n\t\tmu 0 4 68 25 99 45\n\t\tf 4 -90 31 -12 90\n\t\tmu 0 4 45 99 8 101\n\t\tf 4 -88 -91 -11 91\n\t\tmu 0 4 69 45 101 27\n\t\tf 4 -80 92 93 -27\n\t\tmu 0 4 28 70 46 103\n\t\tf 4 -78 -89 94 -93\n\t\tmu 0 4 70 15 69 46\n\t\tf 4 -95 -92 -10 95\n\t\tmu 0 4 46 69 27 102\n\t\tf 4 -94 -96 -9 -28\n\t\tmu 0 4 103 46 102 6\n\t\tf 4 8 96 97 -33\n\t\tmu 0 4 6 102 47 115\n\t\tf 4 9 98 99 -97\n\t\tmu 0 4 102 27 71 47\n\t\tf 4 -100 100 101 102\n\t\tmu 0 4 47 71 16 74\n\t\tf 4 -98 -103 103 -34\n\t\tmu 0 4 115 47 74 33\n\t\tf 4 10 104 105 -99\n\t\tmu 0 4 27 101 48 71\n\t\tf 4 11 36 106 -105\n\t\tmu 0 4 101 8 107 48\n\t\tf 4 -107 37 107 108\n\t\tmu 0 4 48 107 30 72\n\t\tf 4 -106 -109 109 -101\n\t\tmu 0 4 71 48 72 16\n\t\tf 4 -110 110 111 112\n\t\tmu 0 4 16 72 49 73\n\t\tf 4 -108 38 113 -111\n\t\tmu 0 4 72 30 109 49\n\t\tf 4 -114 39 -16 114\n\t\tmu 0 4 49 109 12 111\n\t\tf 4 -112 -115 -15 115\n\t\tmu 0 4 73 49 111 32\n\t\tf 4 -104 116 117 -35\n\t\tmu 0 4 33 74 50 113\n\t\tf 4 -102 -113 118 -117\n\t\tmu 0 4 74 16 73 50\n\t\tf 4 -119 -116 -14 119\n\t\tmu 0 4 50 73 32 112\n\t\tf 4 -118 -120 -13 -36\n\t\tmu 0 4 113 50 112 10\n\t\tf 4 12 120 121 -41\n\t\tmu 0 4 10 112 51 123\n\t\tf 4 13 122 123 -121\n\t\tmu 0 4 112 32 75 51\n\t\tf 4 -124 124 125 126\n\t\tmu 0 4 51 75 17 78\n\t\tf 4 -122 -127 127 -42\n\t\tmu 0 4 123 51 78 37\n\t\tf 4 14 128 129 -123\n\t\tmu 0 4 32 111 52 75\n\t\tf 4 15 44 130 -129\n\t\tmu 0 4 111 12 117 52\n\t\tf 4 -131 45 131 132\n\t\tmu 0 4 52 117 35 76\n\t\tf 4 -130 -133 133 -125\n\t\tmu 0 4 75 52 76 17\n\t\tf 4 -134 134 135 136\n\t\tmu 0 4 17 76 53 77\n\t\tf 4 -132 46 137 -135\n\t\tmu 0 4 76 35 119 53\n\t\tf 4 -138 47 -4 138\n\t\tmu 0 4 53 119 3 90\n\t\tf 4 -136 -139 -3 139\n\t\tmu 0 4 77 53 90 21\n\t\tf 4 -128 140 141 -43\n\t\tmu 0 4 37 78 54 121\n\t\tf 4 -126 -137 142 -141\n\t\tmu 0 4 78 17 77 54\n\t\tf 4 -143 -140 -2 143\n\t\tmu 0 4 54 77 21 88\n\t\tf 4 -142 -144 -1 -44\n\t\tmu 0 4 121 54 88 1\n\t\tf 4 -48 144 145 -21\n\t\tmu 0 4 2 120 55 91\n\t\tf 4 -47 146 147 -145\n\t\tmu 0 4 120 36 79 55\n\t\tf 4 -148 148 149 150\n\t\tmu 0 4 55 79 18 82\n\t\tf 4 -146 -151 151 -22\n\t\tmu 0 4 91 55 82 22\n\t\tf 4 -46 152 153 -147\n\t\tmu 0 4 36 118 56 79\n\t\tf 4 -45 -40 154 -153\n\t\tmu 0 4 118 13 110 56\n\t\tf 4 -155 -39 155 156\n\t\tmu 0 4 56 110 31 80\n\t\tf 4 -154 -157 157 -149\n\t\tmu 0 4 79 56 80 18\n\t\tf 4 -158 158 159 160\n\t\tmu 0 4 18 80 57 81\n\t\tf 4 -156 -38 161 -159\n\t\tmu 0 4 80 31 108 57\n\t\tf 4 -162 -37 -32 162\n\t\tmu 0 4 57 108 9 100\n\t\tf 4 -160 -163 -31 163\n\t\tmu 0 4 81 57 100 26\n\t\tf 4 -152 164 165 -23\n\t\tmu 0 4 22 82 58 92\n\t\tf 4 -150 -161 166 -165\n\t\tmu 0 4 82 18 81 58\n\t\tf 4 -167 -164 -30 167\n\t\tmu 0 4 58 81 26 98\n\t\tf 4 -166 -168 -29 -24\n\t\tmu 0 4 92 58 98 5\n\t\tf 4 40 168 169 35\n\t\tmu 0 4 11 124 59 114\n\t\tf 4 41 170 171 -169\n\t\tmu 0 4 124 38 83 59\n\t\tf 4 -172 172 173 174\n\t\tmu 0 4 59 83 19 86\n\t\tf 4 -170 -175 175 34\n\t\tmu 0 4 114 59 86 34\n\t\tf 4 42 176 177 -171\n\t\tmu 0 4 38 122 60 83\n\t\tf 4 43 16 178 -177\n\t\tmu 0 4 122 0 96 60\n\t\tf 4 -179 17 179 180\n\t\tmu 0 4 60 96 24 84\n\t\tf 4 -178 -181 181 -173\n\t\tmu 0 4 83 60 84 19\n\t\tf 4 -182 182 183 184\n\t\tmu 0 4 19 84 61 85\n\t\tf 4 -180 18 185 -183\n\t\tmu 0 4 84 24 95 61\n\t\tf 4 -186 19 24 186\n\t\tmu 0 4 61 95 4 106\n\t\tf 4 -184 -187 25 187\n\t\tmu 0 4 85 61 106 29\n\t\tf 4 -176 188 189 33\n\t\tmu 0 4 34 86 62 116\n\t\tf 4 -174 -185 190 -189\n\t\tmu 0 4 86 19 85 62\n\t\tf 4 -191 -188 26 191\n\t\tmu 0 4 62 85 29 104\n\t\tf 4 -190 -192 27 32\n\t\tmu 0 4 116 62 104 7;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 192 \n\t\t0 0 \n\t\t1 0 \n\t\t2 0 \n\t\t3 0 \n\t\t4 0 \n\t\t5 0 \n\t\t6 0 \n\t\t7 0 \n\t\t8 0 \n\t\t9 0 \n\t\t10 0 \n\t\t11 0 \n\t\t12 0 \n\t\t13 0 \n\t\t14 0 \n\t\t15 0 \n\t\t16 0 \n\t\t17 0 \n\t\t18 0 \n\t\t19 0 \n\t\t20 0 \n\t\t21 0 \n\t\t22 0 \n\t\t23 0 \n\t\t24 0 \n\t\t25 0 \n\t\t26 0 \n\t\t27 0 \n\t\t28 0 \n\t\t29 0 \n\t\t30 0 \n\t\t31 0 \n\t\t32 0 \n\t\t33 0 \n\t\t34 0 \n\t\t35 0 \n\t\t36 0 \n\t\t37 0 \n\t\t38 0 \n\t\t39 0 \n\t\t40 0 \n\t\t41 0 \n\t\t42 0 \n\t\t43 0 \n\t\t44 0 \n\t\t45 0 \n\t\t46 0 \n\t\t47 0 \n\t\t48 0 \n\t\t49 0 \n\t\t50 0 \n\t\t51 0 \n\t\t52 0 \n\t\t53 0 \n\t\t54 0 \n\t\t55 0 \n\t\t56 0 \n\t\t57 0 \n\t\t58 0 \n\t\t59 0 \n\t\t60 0 \n\t\t61 0 \n\t\t62 0 \n\t\t63 0 \n\t\t64 0 \n\t\t65 0 \n\t\t66 0 \n\t\t67 0 \n\t\t68 0 \n\t\t69 0 \n\t\t70 0 \n\t\t71 0 \n\t\t72 0 \n\t\t73 0 \n\t\t74 0 \n\t\t75 0 \n\t\t76 0 \n\t\t77 0 \n\t\t78 0 \n\t\t79 0 \n\t\t80 0 \n\t\t81 0 \n\t\t82 0 \n\t\t83 0 \n\t\t84 0 \n\t\t85 0 \n\t\t86 0 \n\t\t87 0 \n\t\t88 0 \n\t\t89 0 \n\t\t90 0 \n\t\t91 0 \n\t\t92 0 \n\t\t93 0 \n\t\t94 0 \n\t\t95 0 \n\t\t96 0 \n\t\t97 0 \n\t\t98 0 \n\t\t99 0 \n\t\t100 0 \n\t\t101 0 \n\t\t102 0 \n\t\t103 0 \n\t\t104 0 \n\t\t105 0 \n\t\t106 0 \n\t\t107 0 \n\t\t108 0 \n\t\t109 0 \n\t\t110 0 \n\t\t111 0 \n\t\t112 0 \n\t\t113 0 \n\t\t114 0 \n\t\t115 0 \n\t\t116 0 \n\t\t117 0 \n\t\t118 0 \n\t\t119 0 \n\t\t120 0 \n\t\t121 0 \n\t\t122 0 \n\t\t123 0 \n\t\t124 0 \n\t\t125 0 \n\t\t126 0 \n\t\t127 0 \n\t\t128 0 \n\t\t129 0 \n\t\t130 0 \n\t\t131 0 \n\t\t132 0 \n\t\t133 0 \n\t\t134 0 \n\t\t135 0 \n\t\t136 0 \n\t\t137 0 \n\t\t138 0 \n\t\t139 0 \n\t\t140 0 \n\t\t141 0 \n\t\t142 0 \n\t\t143 0 \n\t\t144 0 \n\t\t145 0 \n\t\t146 0 \n\t\t147 0 \n\t\t148 0 \n\t\t149 0 \n\t\t150 0 \n\t\t151 0 \n\t\t152 0 \n\t\t153 0 \n\t\t154 0 \n\t\t155 0 \n\t\t156 0 \n\t\t157 0 \n\t\t158 0 \n\t\t159 0 \n\t\t160 0 \n\t\t161 0 \n\t\t162 0 \n\t\t163 0 \n\t\t164 0 \n\t\t165 0 \n\t\t166 0 \n\t\t167 0 \n\t\t168 0 \n\t\t169 0 \n\t\t170 0 \n\t\t171 0 \n\t\t172 0 \n\t\t173 0 \n\t\t174 0 \n\t\t175 0 \n\t\t176 0 \n\t\t177 0 \n\t\t178 0 \n\t\t179 0 \n\t\t180 0 \n\t\t181 0 \n\t\t182 0 \n\t\t183 0 \n\t\t184 0 \n\t\t185 0 \n\t\t186 0 \n\t\t187 0 \n\t\t188 0 \n\t\t189 0 \n\t\t190 0 \n\t\t191 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 98 \n\t\t0 0 \n\t\t1 0 \n\t\t2 0 \n\t\t3 0 \n\t\t4 0 \n\t\t5 0 \n\t\t6 0 \n\t\t7 0 \n\t\t8 0 \n\t\t9 0 \n\t\t10 0 \n\t\t11 0 \n\t\t12 0 \n\t\t13 0 \n\t\t14 0 \n\t\t15 0 \n\t\t16 0 \n\t\t17 0 \n\t\t18 0 \n\t\t19 0 \n\t\t20 0 \n\t\t21 0 \n\t\t22 0 \n\t\t23 0 \n\t\t24 0 \n\t\t25 0 \n\t\t26 0 \n\t\t27 0 \n\t\t28 0 \n\t\t29 0 \n\t\t30 0 \n\t\t31 0 \n\t\t32 0 \n\t\t33 0 \n\t\t34 0 \n\t\t35 0 \n\t\t36 0 \n\t\t37 0 \n\t\t38 0 \n\t\t39 0 \n\t\t40 0 \n\t\t41 0 \n\t\t42 0 \n\t\t43 0 \n\t\t44 0 \n\t\t45 0 \n\t\t46 0 \n\t\t47 0 \n\t\t48 0 \n\t\t49 0 \n\t\t50 0 \n\t\t51 0 \n\t\t52 0 \n\t\t53 0 \n\t\t54 0 \n\t\t55 0 \n\t\t56 0 \n\t\t57 0 \n\t\t58 0 \n\t\t59 0 \n\t\t60 0 \n\t\t61 0 \n\t\t62 0 \n\t\t63 0 \n\t\t64 0 \n\t\t65 0 \n\t\t66 0 \n\t\t67 0 \n\t\t68 0 \n\t\t69 0 \n\t\t70 0 \n\t\t71 0 \n\t\t72 0 \n\t\t73 0 \n\t\t74 0 \n\t\t75 0 \n\t\t76 0 \n\t\t77 0 \n\t\t78 0 \n\t\t79 0 \n\t\t80 0 \n\t\t81 0 \n\t\t82 0 \n\t\t83 0 \n\t\t84 0 \n\t\t85 0 \n\t\t86 0 \n\t\t87 0 \n\t\t88 0 \n\t\t89 0 \n\t\t90 0 \n\t\t91 0 \n\t\t92 0 \n\t\t93 0 \n\t\t94 0 \n\t\t95 0 \n\t\t96 0 \n\t\t97 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"4E84443C-414F-E6B1-BC85-CE94478BAC55\";\n\tsetAttr \".t\" -type \"double3\" 1.059546250901426 1.7554903304633216 2.2722042676580649 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"1CB44FFA-4F5F-0641-448C-828CBA32F3C9\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 3.0606039913901002;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"13FFD6A4-46F1-C217-0276-F2AAE7BF5E46\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"C29E25FF-4517-95E2-635D-9DBA802EA474\";\n\tsetAttr \".bsdt[0].bscd\" -type \"Int32Array\" 1 0 ;\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"EEC022C0-4A91-5DD3-0232-73A1A5339347\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"2F8CB3D6-4941-20FC-34D9-E19466722D67\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"73B58932-4CEC-DAB6-6BB4-60BE49375B2C\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"B628CEC7-4DE9-E3A0-F737-0C86A7188286\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"46E9D55C-4D4C-17C7-EFB6-E4BD4AFEC8FE\";\n\tsetAttr \".g\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"7DCD9A3F-4BED-0C0B-F97B-5BB48C05421B\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 1\\n            -showReferenceMembers 1\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 1 -size 10 -divisions 4 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"EA2C5BDE-4CE0-E997-760B-D4B791BD617B\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode blendShape -n \"blendShape1\";\n\trename -uid \"C960935B-4D99-E795-A649-0CB4F570A5FB\";\n\taddAttr -ci true -h true -sn \"aal\" -ln \"attributeAliasList\" -dt \"attributeAlias\";\n\tsetAttr \".w[0]\"  0.5;\n\tsetAttr \".it[0].itg[0].iti[6000].ipt\" -type \"pointArray\" 98 0.24537032842636108\n\t\t 0.24537032842636108 -0.24537032842636108 1 -0.24537032842636108 0.24537032842636108\n\t\t -0.24537032842636108 1 0.24537032842636108 -0.24537032842636108 -0.24537038803100586\n\t\t 1 -0.24537032842636108 -0.24537032842636108 -0.24537038803100586 1 0.24537032842636108\n\t\t -0.24537032842636108 0.24537032842636108 1 -0.24537032842636108 -0.24537038803100586\n\t\t 0.24537032842636108 1 0.24537032842636108 0.24537032842636108 0.24537032842636108\n\t\t 1 -0.24537032842636108 0.24537032842636108 0.24537032842636108 1 0.1783854067325592\n\t\t -0.17838543653488159 -1.234002411365509e-08 1 -0.17838543653488159 7.4505805969238281e-09\n\t\t 0.17838543653488159 1 1.1641532182693481e-09 0.17838543653488159 0.17838543653488159\n\t\t 1 0.1783854067325592 -1.234002411365509e-08 0.17838543653488159 1 -0.17838543653488159\n\t\t 0.17838543653488159 -7.4505805969238281e-09 1 0.1783854067325592 0.17838543653488159\n\t\t 1.234002411365509e-08 1 0 0.17838543653488159 -0.17838543653488159 1 -0.17838543653488159\n\t\t -7.4505805969238281e-09 -0.17838543653488159 1 1.1641532182693481e-09 -0.1783854067325592\n\t\t -0.17838543653488159 1 0.17838543653488159 0 -0.17838543653488159 1 -0.17838543653488159\n\t\t -0.17838543653488159 7.4505805969238281e-09 1 1.1641532182693481e-09 -0.17838543653488159\n\t\t 0.17838543653488159 1 8.3819031715393066e-09 -1.5366822481155396e-08 -0.060763835906982422\n\t\t 1 7.9162418842315674e-09 -0.06076386570930481 -6.0535967350006104e-09 1 7.9162418842315674e-09\n\t\t -6.0535967350006104e-09 0.06076386570930481 1 7.9162418842315674e-09 0.06076386570930481\n\t\t 6.0535967350006104e-09 1 -0.06076386570930481 -1.5366822481155396e-08 4.6566128730773926e-10\n\t\t 1 0.06076386570930481 -4.6566128730773926e-10 -4.6566128730773926e-10 1 0.086805552244186401\n\t\t 0.086805522441864014 -0.11805552244186401 1 -0.086805537343025208 0.086805537343025208\n\t\t -0.11805549263954163 1 -0.086805567145347595 -0.086805537343025208 -0.11805552244186401\n\t\t 1 0.086805537343025208 -0.086805537343025208 -0.11805552244186401 1 0.086805537343025208\n\t\t -0.11805552244186401 -0.086805567145347595 1 -0.086805552244186401 -0.11805552244186401\n\t\t -0.086805552244186401 1 -0.086805567145347595 -0.11805552244186401 0.086805537343025208\n\t\t 1 0.086805522441864014 -0.11805552244186401 0.086805552244186401 1 0.086805537343025208\n\t\t -0.086805567145347595 0.11805552244186401 1 -0.086805552244186401 -0.086805552244186401\n\t\t 0.11805552244186401 1 -0.086805552244186401 0.086805522441864014 0.11805552244186401\n\t\t 1 0.086805522441864014 0.086805552244186401 0.11805552244186401 1 0.086805537343025208\n\t\t 0.11805552244186401 0.086805567145347595 1 -0.086805552244186401 0.11805552244186401\n\t\t 0.086805552244186401 1 -0.086805567145347595 0.11805552244186401 -0.086805537343025208\n\t\t 1 0.086805522441864014 0.11805552244186401 -0.086805552244186401 1 -0.11805552244186401\n\t\t 0.086805537343025208 -0.086805537343025208 1 -0.11805552244186401 0.086805552244186401\n\t\t 0.086805552244186401 1 -0.11805552244186401 -0.086805522441864014 0.086805552244186401\n\t\t 1 -0.11805549263954163 -0.086805537343025208 -0.086805567145347595 1 0.11805552244186401\n\t\t 0.086805537343025208 0.086805537343025208 1 0.11805552244186401 0.086805552244186401\n\t\t -0.086805552244186401 1 0.11805552244186401 -0.086805537343025208 -0.086805567145347595\n\t\t 1 0.11805552244186401 -0.086805537343025208 0.086805567145347595 1 -7.4505805969238281e-09\n\t\t 0.074652761220932007 -0.090277761220932007 1 -0.074652761220932007 -7.4505805969238281e-09\n\t\t -0.090277761220932007 1 1.4901161193847656e-08 -0.074652761220932007 -0.090277731418609619\n\t\t 1 0.074652761220932007 1.4901161193847656e-08 -0.090277791023254395 1 -7.4505805969238281e-09\n\t\t -0.090277761220932007 -0.074652761220932007 1 -0.074652761220932007 -0.090277761220932007\n\t\t 7.4505805969238281e-09 1 1.4901161193847656e-08 -0.090277731418609619 0.074652761220932007\n\t\t 1 0.074652761220932007 -0.090277791023254395 -1.4901161193847656e-08 1 -7.4505805969238281e-09\n\t\t -0.074652761220932007 0.090277761220932007 1 -0.074652761220932007 7.4505805969238281e-09\n\t\t 0.090277761220932007 1 1.4901161193847656e-08 0.074652761220932007 0.090277731418609619\n\t\t 1 0.074652761220932007 -1.4901161193847656e-08 0.090277791023254395 1 -7.4505805969238281e-09\n\t\t 0.090277761220932007 0.074652761220932007 1 -0.074652761220932007 0.090277761220932007\n\t\t -7.4505805969238281e-09 1 1.4901161193847656e-08 0.090277731418609619 -0.074652761220932007\n\t\t 1 0.074652761220932007 0.090277791023254395 1.4901161193847656e-08 1 -0.090277761220932007\n\t\t 0.074652761220932007 7.4505805969238281e-09 1 -0.090277761220932007 -7.4505805969238281e-09\n\t\t 0.074652761220932007 1 -0.090277731418609619 -0.074652761220932007 -1.4901161193847656e-08\n\t\t 1 -0.090277791023254395 1.4901161193847656e-08 -0.074652761220932007 1 0.090277761220932007\n\t\t 0.074652761220932007 -7.4505805969238281e-09 1 0.090277761220932007 -7.4505805969238281e-09\n\t\t -0.074652761220932007 1 0.090277731418609619 -0.074652761220932007 1.4901161193847656e-08\n\t\t 1 0.090277791023254395 1.4901161193847656e-08 0.074652761220932007 1 0.098958343267440796\n\t\t 0.2005208432674408 -0.2005208432674408 1 -0.098958343267440796 0.2005208432674408\n\t\t -0.2005208432674408 1 -0.20052081346511841 0.098958343267440796 -0.2005208432674408\n\t\t 1 -0.2005208432674408 -0.09895835816860199 -0.2005208432674408 1 -0.098958343267440796\n\t\t -0.2005208432674408 -0.2005208432674408 1 0.098958343267440796 -0.2005208432674408\n\t\t -0.2005208432674408 1 0.2005208432674408 -0.09895835816860199 -0.2005208432674408\n\t\t 1 0.20052081346511841 0.098958343267440796 -0.2005208432674408 1 -0.20052081346511841\n\t\t -0.2005208432674408 -0.098958343267440796 1 -0.2005208432674408 -0.2005208432674408\n\t\t 0.09895835816860199 1 -0.098958343267440796 -0.2005208432674408 0.2005208432674408\n\t\t 1 0.098958343267440796 -0.2005208432674408 0.2005208432674408 1 0.2005208432674408\n\t\t -0.2005208432674408 0.098958343267440796 1 0.2005208432674408 -0.2005208432674408\n\t\t -0.098958343267440796 1 -0.2005208432674408 -0.098958343267440796 0.2005208432674408\n\t\t 1 -0.2005208432674408 0.098958343267440796 0.2005208432674408 1 -0.098958343267440796\n\t\t 0.2005208432674408 0.2005208432674408 1 0.098958343267440796 0.2005208432674408 0.2005208432674408\n\t\t 1 0.2005208432674408 0.098958343267440796 0.2005208432674408 1 0.2005208432674408\n\t\t -0.098958343267440796 0.2005208432674408 1 -0.20052081346511841 0.2005208432674408\n\t\t 0.098958343267440796 1 -0.2005208432674408 0.2005208432674408 -0.09895835816860199\n\t\t 1 0.2005208432674408 0.2005208432674408 -0.098958343267440796 1 0.2005208432674408\n\t\t 0.2005208432674408 0.098958343267440796 1 ;\n\tsetAttr \".it[0].itg[0].iti[6000].ict\" -type \"componentList\" 1 \"vtx[0:97]\";\n\tsetAttr \".mlid\" 0;\n\tsetAttr \".mlpr\" 0;\n\tsetAttr \".pndr[0]\"  0;\n\tsetAttr \".tgdt[0].cid\" -type \"Int32Array\" 1 0 ;\n\tsetAttr \".aal\" -type \"attributeAlias\" {\"pCube2\",\"weight[0]\"} ;\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"2AFA5EEB-468A-EDF8-ACAE-D6BC3D44B32D\";\ncreateNode objectSet -n \"blendShape1Set\";\n\trename -uid \"103FE9CB-4CC5-BE1E-A8EC-D0907002B029\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"blendShape1GroupId\";\n\trename -uid \"F5C0E855-4E0F-73C8-9BD3-B6B33302173E\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"blendShape1GroupParts\";\n\trename -uid \"4AD49D33-416D-3232-EB53-D1AD1C2C92DD\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"E54DEF16-4369-C787-A240-DE92FCC7339B\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"F8600E3B-40D1-87FA-9342-5689093BA152\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"15C5E2DA-4345-8A41-3FC0-52BE1CDE12E4\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"DC5F1C80-4DE8-1705-195A-689BEBC474AF\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"blendShape1GroupId.id\" \"pCubeShape1.iog.og[3].gid\";\nconnectAttr \"blendShape1Set.mwc\" \"pCubeShape1.iog.og[3].gco\";\nconnectAttr \"groupId2.id\" \"pCubeShape1.iog.og[4].gid\";\nconnectAttr \"tweakSet1.mwc\" \"pCubeShape1.iog.og[4].gco\";\nconnectAttr \"blendShape1.og[0]\" \"pCubeShape1.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"pCubeShape1.twl\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"blendShape1.mlpr\" \"shapeEditorManager.bspr[0]\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"blendShape1GroupParts.og\" \"blendShape1.ip[0].ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1.ip[0].gi\";\nconnectAttr \"shapeEditorManager.obsv[0]\" \"blendShape1.tgdt[0].dpvs\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"blendShape1GroupId.msg\" \"blendShape1Set.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[3]\" \"blendShape1Set.dsm\" -na;\nconnectAttr \"blendShape1.msg\" \"blendShape1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"blendShape1GroupParts.ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[4]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"pCubeShape1Orig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of CubeToSphere.ma\n"
  },
  {
    "path": "maya/scenes/blend/targets_missing/CubeToSphereAnim.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: CubeToSphereAnim.ma\n//Last modified: Sun, Feb 03, 2019 11:54:45 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"0AD65ADC-4CEB-89FE-55B0-599DE3CE5D6D\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0.13650499521181625 2.3122201553431032 3.0060734344365452 ;\n\tsetAttr \".r\" -type \"double3\" -37.538352729610985 2.5999999999998429 3.9797902681580574e-16 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"C4F0FEA4-4000-B2D7-80B1-51989BD5F6EF\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 3.7949272804795386;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0 0 1.4901161193847656e-08 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"40A50CD8-473B-3E3C-2D97-52B261128287\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"5FD09E2A-4D8B-165C-825C-098D1056517D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"675EEA56-4565-8A9D-00C8-C49A83254BE8\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"F5E401AC-4591-2B24-C3CF-F195521977A9\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"76F199E4-42FE-F9CD-9F13-4097832551D6\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"A3561AA5-4910-B156-C375-4AB98D953E47\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"41162F3B-4E66-D20B-E93F-BEAF2A1A2230\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"B599D3BB-4977-A3AF-12DA-78822CB7312D\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode mesh -n \"pCubeShape1Orig\" -p \"pCube1\";\n\trename -uid \"A9DD1AC3-417C-3324-BB9E-5CA5AC0EFA68\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 125 \".uvst[0].uvsp[0:124]\" -type \"float2\" 0.375 0 0.375 1 0.625\n\t\t 0 0.625 1 0.375 0.25 0.625 0.25 0.375 0.5 0.125 0.25 0.625 0.5 0.875 0.25 0.375 0.75\n\t\t 0.125 0 0.625 0.75 0.875 0 0.5 0.125 0.5 0.375 0.5 0.625 0.5 0.875 0.75 0.125 0.25\n\t\t 0.125 0.5 0 0.5 1 0.625 0.125 0.5 0.25 0.375 0.125 0.625 0.375 0.75 0.25 0.5 0.5\n\t\t 0.375 0.375 0.25 0.25 0.625 0.625 0.875 0.125 0.5 0.75 0.375 0.625 0.125 0.125 0.625\n\t\t 0.875 0.75 0 0.375 0.875 0.25 0 0.4375 0.0625 0.5625 0.0625 0.5625 0.1875 0.4375\n\t\t 0.1875 0.4375 0.3125 0.5625 0.3125 0.5625 0.4375 0.4375 0.4375 0.4375 0.5625 0.5625\n\t\t 0.5625 0.5625 0.6875 0.4375 0.6875 0.4375 0.8125 0.5625 0.8125 0.5625 0.9375 0.4375\n\t\t 0.9375 0.6875 0.0625 0.8125 0.0625 0.8125 0.1875 0.6875 0.1875 0.1875 0.0625 0.3125\n\t\t 0.0625 0.3125 0.1875 0.1875 0.1875 0.5 0.0625 0.5625 0.125 0.5 0.1875 0.4375 0.125\n\t\t 0.5 0.3125 0.5625 0.375 0.5 0.4375 0.4375 0.375 0.5 0.5625 0.5625 0.625 0.5 0.6875\n\t\t 0.4375 0.625 0.5 0.8125 0.5625 0.875 0.5 0.9375 0.4375 0.875 0.75 0.0625 0.8125 0.125\n\t\t 0.75 0.1875 0.6875 0.125 0.25 0.0625 0.3125 0.125 0.25 0.1875 0.1875 0.125 0.4375\n\t\t 0 0.4375 1 0.5625 0 0.5625 1 0.625 0.0625 0.625 0.1875 0.5625 0.25 0.4375 0.25 0.375\n\t\t 0.1875 0.375 0.0625 0.625 0.3125 0.6875 0.25 0.625 0.4375 0.8125 0.25 0.5625 0.5\n\t\t 0.4375 0.5 0.375 0.4375 0.1875 0.25 0.375 0.3125 0.3125 0.25 0.625 0.5625 0.875 0.1875\n\t\t 0.625 0.6875 0.875 0.0625 0.5625 0.75 0.4375 0.75 0.375 0.6875 0.125 0.0625 0.375\n\t\t 0.5625 0.125 0.1875 0.625 0.8125 0.8125 0 0.625 0.9375 0.6875 0 0.375 0.9375 0.3125\n\t\t 0 0.375 0.8125 0.1875 0;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 98 \".vt[0:97]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5 -0.5 0.5 0 0.5 0 -0.5 0 -0.5 -0.5\n\t\t -0.5 0 -0.5 0.5 -0.5 0 -0.5 -0.5 0 0 -0.5 0.5 0.5 0 0.5 0 0.5 0.5 -0.5 0 0.5 0.5 0.5 0\n\t\t 0 0.5 -0.5 0 0 0.5 0 0.5 0 0 0 -0.5 0 -0.5 0 0.5 0 0 -0.5 0 0 -0.25 -0.25 0.5 0.25 -0.25 0.5\n\t\t 0.25 0.25 0.5 -0.25 0.25 0.5 -0.25 0.5 0.25 0.25 0.5 0.25 0.25 0.5 -0.25 -0.25 0.5 -0.25\n\t\t -0.25 0.25 -0.5 0.25 0.25 -0.5 0.25 -0.25 -0.5 -0.25 -0.25 -0.5 -0.25 -0.5 -0.25\n\t\t 0.25 -0.5 -0.25 0.25 -0.5 0.25 -0.25 -0.5 0.25 0.5 -0.25 0.25 0.5 -0.25 -0.25 0.5 0.25 -0.25\n\t\t 0.5 0.25 0.25 -0.5 -0.25 -0.25 -0.5 -0.25 0.25 -0.5 0.25 0.25 -0.5 0.25 -0.25 0 -0.25 0.5\n\t\t 0.25 0 0.5 0 0.25 0.5 -0.25 0 0.5 0 0.5 0.25 0.25 0.5 0 0 0.5 -0.25 -0.25 0.5 0 0 0.25 -0.5\n\t\t 0.25 0 -0.5 0 -0.25 -0.5 -0.25 0 -0.5 0 -0.5 -0.25 0.25 -0.5 0 0 -0.5 0.25 -0.25 -0.5 0\n\t\t 0.5 -0.25 0 0.5 0 -0.25 0.5 0.25 0 0.5 0 0.25 -0.5 -0.25 0 -0.5 0 0.25 -0.5 0.25 0\n\t\t -0.5 0 -0.25 -0.25 -0.5 0.5 0.25 -0.5 0.5 0.5 -0.25 0.5 0.5 0.25 0.5 0.25 0.5 0.5\n\t\t -0.25 0.5 0.5 -0.5 0.25 0.5 -0.5 -0.25 0.5 0.5 0.5 0.25 0.5 0.5 -0.25 0.25 0.5 -0.5\n\t\t -0.25 0.5 -0.5 -0.5 0.5 -0.25 -0.5 0.5 0.25 0.5 0.25 -0.5 0.5 -0.25 -0.5 0.25 -0.5 -0.5\n\t\t -0.25 -0.5 -0.5 -0.5 -0.25 -0.5 -0.5 0.25 -0.5 0.5 -0.5 -0.25 0.5 -0.5 0.25 -0.5 -0.5 0.25\n\t\t -0.5 -0.5 -0.25;\n\tsetAttr -s 192 \".ed\";\n\tsetAttr \".ed[0:165]\"  0 74 0 74 14 0 14 75 0 75 1 0 2 79 0 79 16 0 16 78 0\n\t\t 78 3 0 4 85 0 85 19 0 19 84 0 84 5 0 6 91 0 91 10 0 10 90 0 90 7 0 0 81 0 81 17 0\n\t\t 17 80 0 80 2 0 1 76 0 76 15 0 15 77 0 77 3 0 2 87 0 87 8 0 8 86 0 86 4 0 3 82 0 82 18 0\n\t\t 18 83 0 83 5 0 4 93 0 93 11 0 11 92 0 92 6 0 5 88 0 88 9 0 9 89 0 89 7 0 6 97 0 97 13 0\n\t\t 13 96 0 96 0 0 7 94 0 94 12 0 12 95 0 95 1 0 74 26 1 26 81 1 14 50 1 50 26 1 50 20 1\n\t\t 20 53 1 53 26 1 53 17 1 75 27 1 27 50 1 76 27 1 15 51 1 51 27 1 51 20 1 51 28 1 28 52 1\n\t\t 52 20 1 77 28 1 78 28 1 16 52 1 53 29 1 29 80 1 52 29 1 79 29 1 79 30 1 30 87 1 16 54 1\n\t\t 54 30 1 54 21 1 21 57 1 57 30 1 57 8 1 78 31 1 31 54 1 82 31 1 18 55 1 55 31 1 55 21 1\n\t\t 55 32 1 32 56 1 56 21 1 83 32 1 84 32 1 19 56 1 57 33 1 33 86 1 56 33 1 85 33 1 85 34 1\n\t\t 34 93 1 19 58 1 58 34 1 58 22 1 22 61 1 61 34 1 61 11 1 84 35 1 35 58 1 88 35 1 9 59 1\n\t\t 59 35 1 59 22 1 59 36 1 36 60 1 60 22 1 89 36 1 90 36 1 10 60 1 61 37 1 37 92 1 60 37 1\n\t\t 91 37 1 91 38 1 38 97 1 10 62 1 62 38 1 62 23 1 23 65 1 65 38 1 65 13 1 90 39 1 39 62 1\n\t\t 94 39 1 12 63 1 63 39 1 63 23 1 63 40 1 40 64 1 64 23 1 95 40 1 75 40 1 14 64 1 65 41 1\n\t\t 41 96 1 64 41 1 74 41 1 95 42 1 42 76 1 12 66 1 66 42 1 66 24 1 24 69 1 69 42 1 69 15 1\n\t\t 94 43 1 43 66 1 89 43 1 9 67 1 67 43 1 67 24 1 67 44 1 44 68 1 68 24 1 88 44 1 83 44 1\n\t\t 18 68 1 69 45 1 45 77 1;\n\tsetAttr \".ed[166:191]\" 68 45 1 82 45 1 97 46 1 46 92 1 13 70 1 70 46 1 70 25 1\n\t\t 25 73 1 73 46 1 73 11 1 96 47 1 47 70 1 81 47 1 17 71 1 71 47 1 71 25 1 71 48 1 48 72 1\n\t\t 72 25 1 80 48 1 87 48 1 8 72 1 73 49 1 49 93 1 72 49 1 86 49 1;\n\tsetAttr -s 96 -ch 384 \".fc[0:95]\" -type \"polyFaces\" \n\t\tf 4 0 48 49 -17\n\t\tmu 0 4 0 87 39 96\n\t\tf 4 1 50 51 -49\n\t\tmu 0 4 87 20 63 39\n\t\tf 4 -52 52 53 54\n\t\tmu 0 4 39 63 14 66\n\t\tf 4 -50 -55 55 -18\n\t\tmu 0 4 96 39 66 24\n\t\tf 4 2 56 57 -51\n\t\tmu 0 4 20 89 40 63\n\t\tf 4 3 20 58 -57\n\t\tmu 0 4 89 2 91 40\n\t\tf 4 -59 21 59 60\n\t\tmu 0 4 40 91 22 64\n\t\tf 4 -58 -61 61 -53\n\t\tmu 0 4 63 40 64 14\n\t\tf 4 -62 62 63 64\n\t\tmu 0 4 14 64 41 65\n\t\tf 4 -60 22 65 -63\n\t\tmu 0 4 64 22 92 41\n\t\tf 4 -66 23 -8 66\n\t\tmu 0 4 41 92 5 93\n\t\tf 4 -64 -67 -7 67\n\t\tmu 0 4 65 41 93 23\n\t\tf 4 -56 68 69 -19\n\t\tmu 0 4 24 66 42 95\n\t\tf 4 -54 -65 70 -69\n\t\tmu 0 4 66 14 65 42\n\t\tf 4 -71 -68 -6 71\n\t\tmu 0 4 42 65 23 94\n\t\tf 4 -70 -72 -5 -20\n\t\tmu 0 4 95 42 94 4\n\t\tf 4 4 72 73 -25\n\t\tmu 0 4 4 94 43 105\n\t\tf 4 5 74 75 -73\n\t\tmu 0 4 94 23 67 43\n\t\tf 4 -76 76 77 78\n\t\tmu 0 4 43 67 15 70\n\t\tf 4 -74 -79 79 -26\n\t\tmu 0 4 105 43 70 28\n\t\tf 4 6 80 81 -75\n\t\tmu 0 4 23 93 44 67\n\t\tf 4 7 28 82 -81\n\t\tmu 0 4 93 5 97 44\n\t\tf 4 -83 29 83 84\n\t\tmu 0 4 44 97 25 68\n\t\tf 4 -82 -85 85 -77\n\t\tmu 0 4 67 44 68 15\n\t\tf 4 -86 86 87 88\n\t\tmu 0 4 15 68 45 69\n\t\tf 4 -84 30 89 -87\n\t\tmu 0 4 68 25 99 45\n\t\tf 4 -90 31 -12 90\n\t\tmu 0 4 45 99 8 101\n\t\tf 4 -88 -91 -11 91\n\t\tmu 0 4 69 45 101 27\n\t\tf 4 -80 92 93 -27\n\t\tmu 0 4 28 70 46 103\n\t\tf 4 -78 -89 94 -93\n\t\tmu 0 4 70 15 69 46\n\t\tf 4 -95 -92 -10 95\n\t\tmu 0 4 46 69 27 102\n\t\tf 4 -94 -96 -9 -28\n\t\tmu 0 4 103 46 102 6\n\t\tf 4 8 96 97 -33\n\t\tmu 0 4 6 102 47 115\n\t\tf 4 9 98 99 -97\n\t\tmu 0 4 102 27 71 47\n\t\tf 4 -100 100 101 102\n\t\tmu 0 4 47 71 16 74\n\t\tf 4 -98 -103 103 -34\n\t\tmu 0 4 115 47 74 33\n\t\tf 4 10 104 105 -99\n\t\tmu 0 4 27 101 48 71\n\t\tf 4 11 36 106 -105\n\t\tmu 0 4 101 8 107 48\n\t\tf 4 -107 37 107 108\n\t\tmu 0 4 48 107 30 72\n\t\tf 4 -106 -109 109 -101\n\t\tmu 0 4 71 48 72 16\n\t\tf 4 -110 110 111 112\n\t\tmu 0 4 16 72 49 73\n\t\tf 4 -108 38 113 -111\n\t\tmu 0 4 72 30 109 49\n\t\tf 4 -114 39 -16 114\n\t\tmu 0 4 49 109 12 111\n\t\tf 4 -112 -115 -15 115\n\t\tmu 0 4 73 49 111 32\n\t\tf 4 -104 116 117 -35\n\t\tmu 0 4 33 74 50 113\n\t\tf 4 -102 -113 118 -117\n\t\tmu 0 4 74 16 73 50\n\t\tf 4 -119 -116 -14 119\n\t\tmu 0 4 50 73 32 112\n\t\tf 4 -118 -120 -13 -36\n\t\tmu 0 4 113 50 112 10\n\t\tf 4 12 120 121 -41\n\t\tmu 0 4 10 112 51 123\n\t\tf 4 13 122 123 -121\n\t\tmu 0 4 112 32 75 51\n\t\tf 4 -124 124 125 126\n\t\tmu 0 4 51 75 17 78\n\t\tf 4 -122 -127 127 -42\n\t\tmu 0 4 123 51 78 37\n\t\tf 4 14 128 129 -123\n\t\tmu 0 4 32 111 52 75\n\t\tf 4 15 44 130 -129\n\t\tmu 0 4 111 12 117 52\n\t\tf 4 -131 45 131 132\n\t\tmu 0 4 52 117 35 76\n\t\tf 4 -130 -133 133 -125\n\t\tmu 0 4 75 52 76 17\n\t\tf 4 -134 134 135 136\n\t\tmu 0 4 17 76 53 77\n\t\tf 4 -132 46 137 -135\n\t\tmu 0 4 76 35 119 53\n\t\tf 4 -138 47 -4 138\n\t\tmu 0 4 53 119 3 90\n\t\tf 4 -136 -139 -3 139\n\t\tmu 0 4 77 53 90 21\n\t\tf 4 -128 140 141 -43\n\t\tmu 0 4 37 78 54 121\n\t\tf 4 -126 -137 142 -141\n\t\tmu 0 4 78 17 77 54\n\t\tf 4 -143 -140 -2 143\n\t\tmu 0 4 54 77 21 88\n\t\tf 4 -142 -144 -1 -44\n\t\tmu 0 4 121 54 88 1\n\t\tf 4 -48 144 145 -21\n\t\tmu 0 4 2 120 55 91\n\t\tf 4 -47 146 147 -145\n\t\tmu 0 4 120 36 79 55\n\t\tf 4 -148 148 149 150\n\t\tmu 0 4 55 79 18 82\n\t\tf 4 -146 -151 151 -22\n\t\tmu 0 4 91 55 82 22\n\t\tf 4 -46 152 153 -147\n\t\tmu 0 4 36 118 56 79\n\t\tf 4 -45 -40 154 -153\n\t\tmu 0 4 118 13 110 56\n\t\tf 4 -155 -39 155 156\n\t\tmu 0 4 56 110 31 80\n\t\tf 4 -154 -157 157 -149\n\t\tmu 0 4 79 56 80 18\n\t\tf 4 -158 158 159 160\n\t\tmu 0 4 18 80 57 81\n\t\tf 4 -156 -38 161 -159\n\t\tmu 0 4 80 31 108 57\n\t\tf 4 -162 -37 -32 162\n\t\tmu 0 4 57 108 9 100\n\t\tf 4 -160 -163 -31 163\n\t\tmu 0 4 81 57 100 26\n\t\tf 4 -152 164 165 -23\n\t\tmu 0 4 22 82 58 92\n\t\tf 4 -150 -161 166 -165\n\t\tmu 0 4 82 18 81 58\n\t\tf 4 -167 -164 -30 167\n\t\tmu 0 4 58 81 26 98\n\t\tf 4 -166 -168 -29 -24\n\t\tmu 0 4 92 58 98 5\n\t\tf 4 40 168 169 35\n\t\tmu 0 4 11 124 59 114\n\t\tf 4 41 170 171 -169\n\t\tmu 0 4 124 38 83 59\n\t\tf 4 -172 172 173 174\n\t\tmu 0 4 59 83 19 86\n\t\tf 4 -170 -175 175 34\n\t\tmu 0 4 114 59 86 34\n\t\tf 4 42 176 177 -171\n\t\tmu 0 4 38 122 60 83\n\t\tf 4 43 16 178 -177\n\t\tmu 0 4 122 0 96 60\n\t\tf 4 -179 17 179 180\n\t\tmu 0 4 60 96 24 84\n\t\tf 4 -178 -181 181 -173\n\t\tmu 0 4 83 60 84 19\n\t\tf 4 -182 182 183 184\n\t\tmu 0 4 19 84 61 85\n\t\tf 4 -180 18 185 -183\n\t\tmu 0 4 84 24 95 61\n\t\tf 4 -186 19 24 186\n\t\tmu 0 4 61 95 4 106\n\t\tf 4 -184 -187 25 187\n\t\tmu 0 4 85 61 106 29\n\t\tf 4 -176 188 189 33\n\t\tmu 0 4 34 86 62 116\n\t\tf 4 -174 -185 190 -189\n\t\tmu 0 4 86 19 85 62\n\t\tf 4 -191 -188 26 191\n\t\tmu 0 4 62 85 29 104\n\t\tf 4 -190 -192 27 32\n\t\tmu 0 4 116 62 104 7;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 192 \n\t\t0 0 \n\t\t1 0 \n\t\t2 0 \n\t\t3 0 \n\t\t4 0 \n\t\t5 0 \n\t\t6 0 \n\t\t7 0 \n\t\t8 0 \n\t\t9 0 \n\t\t10 0 \n\t\t11 0 \n\t\t12 0 \n\t\t13 0 \n\t\t14 0 \n\t\t15 0 \n\t\t16 0 \n\t\t17 0 \n\t\t18 0 \n\t\t19 0 \n\t\t20 0 \n\t\t21 0 \n\t\t22 0 \n\t\t23 0 \n\t\t24 0 \n\t\t25 0 \n\t\t26 0 \n\t\t27 0 \n\t\t28 0 \n\t\t29 0 \n\t\t30 0 \n\t\t31 0 \n\t\t32 0 \n\t\t33 0 \n\t\t34 0 \n\t\t35 0 \n\t\t36 0 \n\t\t37 0 \n\t\t38 0 \n\t\t39 0 \n\t\t40 0 \n\t\t41 0 \n\t\t42 0 \n\t\t43 0 \n\t\t44 0 \n\t\t45 0 \n\t\t46 0 \n\t\t47 0 \n\t\t48 0 \n\t\t49 0 \n\t\t50 0 \n\t\t51 0 \n\t\t52 0 \n\t\t53 0 \n\t\t54 0 \n\t\t55 0 \n\t\t56 0 \n\t\t57 0 \n\t\t58 0 \n\t\t59 0 \n\t\t60 0 \n\t\t61 0 \n\t\t62 0 \n\t\t63 0 \n\t\t64 0 \n\t\t65 0 \n\t\t66 0 \n\t\t67 0 \n\t\t68 0 \n\t\t69 0 \n\t\t70 0 \n\t\t71 0 \n\t\t72 0 \n\t\t73 0 \n\t\t74 0 \n\t\t75 0 \n\t\t76 0 \n\t\t77 0 \n\t\t78 0 \n\t\t79 0 \n\t\t80 0 \n\t\t81 0 \n\t\t82 0 \n\t\t83 0 \n\t\t84 0 \n\t\t85 0 \n\t\t86 0 \n\t\t87 0 \n\t\t88 0 \n\t\t89 0 \n\t\t90 0 \n\t\t91 0 \n\t\t92 0 \n\t\t93 0 \n\t\t94 0 \n\t\t95 0 \n\t\t96 0 \n\t\t97 0 \n\t\t98 0 \n\t\t99 0 \n\t\t100 0 \n\t\t101 0 \n\t\t102 0 \n\t\t103 0 \n\t\t104 0 \n\t\t105 0 \n\t\t106 0 \n\t\t107 0 \n\t\t108 0 \n\t\t109 0 \n\t\t110 0 \n\t\t111 0 \n\t\t112 0 \n\t\t113 0 \n\t\t114 0 \n\t\t115 0 \n\t\t116 0 \n\t\t117 0 \n\t\t118 0 \n\t\t119 0 \n\t\t120 0 \n\t\t121 0 \n\t\t122 0 \n\t\t123 0 \n\t\t124 0 \n\t\t125 0 \n\t\t126 0 \n\t\t127 0 \n\t\t128 0 \n\t\t129 0 \n\t\t130 0 \n\t\t131 0 \n\t\t132 0 \n\t\t133 0 \n\t\t134 0 \n\t\t135 0 \n\t\t136 0 \n\t\t137 0 \n\t\t138 0 \n\t\t139 0 \n\t\t140 0 \n\t\t141 0 \n\t\t142 0 \n\t\t143 0 \n\t\t144 0 \n\t\t145 0 \n\t\t146 0 \n\t\t147 0 \n\t\t148 0 \n\t\t149 0 \n\t\t150 0 \n\t\t151 0 \n\t\t152 0 \n\t\t153 0 \n\t\t154 0 \n\t\t155 0 \n\t\t156 0 \n\t\t157 0 \n\t\t158 0 \n\t\t159 0 \n\t\t160 0 \n\t\t161 0 \n\t\t162 0 \n\t\t163 0 \n\t\t164 0 \n\t\t165 0 \n\t\t166 0 \n\t\t167 0 \n\t\t168 0 \n\t\t169 0 \n\t\t170 0 \n\t\t171 0 \n\t\t172 0 \n\t\t173 0 \n\t\t174 0 \n\t\t175 0 \n\t\t176 0 \n\t\t177 0 \n\t\t178 0 \n\t\t179 0 \n\t\t180 0 \n\t\t181 0 \n\t\t182 0 \n\t\t183 0 \n\t\t184 0 \n\t\t185 0 \n\t\t186 0 \n\t\t187 0 \n\t\t188 0 \n\t\t189 0 \n\t\t190 0 \n\t\t191 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 98 \n\t\t0 0 \n\t\t1 0 \n\t\t2 0 \n\t\t3 0 \n\t\t4 0 \n\t\t5 0 \n\t\t6 0 \n\t\t7 0 \n\t\t8 0 \n\t\t9 0 \n\t\t10 0 \n\t\t11 0 \n\t\t12 0 \n\t\t13 0 \n\t\t14 0 \n\t\t15 0 \n\t\t16 0 \n\t\t17 0 \n\t\t18 0 \n\t\t19 0 \n\t\t20 0 \n\t\t21 0 \n\t\t22 0 \n\t\t23 0 \n\t\t24 0 \n\t\t25 0 \n\t\t26 0 \n\t\t27 0 \n\t\t28 0 \n\t\t29 0 \n\t\t30 0 \n\t\t31 0 \n\t\t32 0 \n\t\t33 0 \n\t\t34 0 \n\t\t35 0 \n\t\t36 0 \n\t\t37 0 \n\t\t38 0 \n\t\t39 0 \n\t\t40 0 \n\t\t41 0 \n\t\t42 0 \n\t\t43 0 \n\t\t44 0 \n\t\t45 0 \n\t\t46 0 \n\t\t47 0 \n\t\t48 0 \n\t\t49 0 \n\t\t50 0 \n\t\t51 0 \n\t\t52 0 \n\t\t53 0 \n\t\t54 0 \n\t\t55 0 \n\t\t56 0 \n\t\t57 0 \n\t\t58 0 \n\t\t59 0 \n\t\t60 0 \n\t\t61 0 \n\t\t62 0 \n\t\t63 0 \n\t\t64 0 \n\t\t65 0 \n\t\t66 0 \n\t\t67 0 \n\t\t68 0 \n\t\t69 0 \n\t\t70 0 \n\t\t71 0 \n\t\t72 0 \n\t\t73 0 \n\t\t74 0 \n\t\t75 0 \n\t\t76 0 \n\t\t77 0 \n\t\t78 0 \n\t\t79 0 \n\t\t80 0 \n\t\t81 0 \n\t\t82 0 \n\t\t83 0 \n\t\t84 0 \n\t\t85 0 \n\t\t86 0 \n\t\t87 0 \n\t\t88 0 \n\t\t89 0 \n\t\t90 0 \n\t\t91 0 \n\t\t92 0 \n\t\t93 0 \n\t\t94 0 \n\t\t95 0 \n\t\t96 0 \n\t\t97 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"5F8A5172-449C-BDA8-6CE6-67A98C7554D0\";\n\tsetAttr \".t\" -type \"double3\" 1.1280935417606996 1.8690616881841713 2.4192044072879586 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"9A573518-4088-B98B-EBD6-749CE173413D\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 3.2586096110828544;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"75D2D77C-482F-10DD-FC8E-BC8CF02255DF\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"46F4B368-4583-9381-FE80-739C6C7D8AB3\";\n\tsetAttr \".bsdt[0].bscd\" -type \"Int32Array\" 1 0 ;\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"C9461B2F-4625-C4BB-921E-D0AC13F2C492\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"E736B577-4600-85F2-E8AE-088C28EEB4AA\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"73B58932-4CEC-DAB6-6BB4-60BE49375B2C\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"AE54C0C6-4CFE-F5A3-418C-E783B964E4EF\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"46E9D55C-4D4C-17C7-EFB6-E4BD4AFEC8FE\";\n\tsetAttr \".g\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"7DCD9A3F-4BED-0C0B-F97B-5BB48C05421B\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 1\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 1 -size 10 -divisions 4 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"EA2C5BDE-4CE0-E997-760B-D4B791BD617B\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 40 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode blendShape -n \"blendShape1\";\n\trename -uid \"C960935B-4D99-E795-A649-0CB4F570A5FB\";\n\taddAttr -ci true -h true -sn \"aal\" -ln \"attributeAliasList\" -dt \"attributeAlias\";\n\tsetAttr \".it[0].itg[0].iti[6000].ipt\" -type \"pointArray\" 98 0.24537032842636108\n\t\t 0.24537032842636108 -0.24537032842636108 1 -0.24537032842636108 0.24537032842636108\n\t\t -0.24537032842636108 1 0.24537032842636108 -0.24537032842636108 -0.24537038803100586\n\t\t 1 -0.24537032842636108 -0.24537032842636108 -0.24537038803100586 1 0.24537032842636108\n\t\t -0.24537032842636108 0.24537032842636108 1 -0.24537032842636108 -0.24537038803100586\n\t\t 0.24537032842636108 1 0.24537032842636108 0.24537032842636108 0.24537032842636108\n\t\t 1 -0.24537032842636108 0.24537032842636108 0.24537032842636108 1 0.1783854067325592\n\t\t -0.17838543653488159 -1.234002411365509e-08 1 -0.17838543653488159 7.4505805969238281e-09\n\t\t 0.17838543653488159 1 1.1641532182693481e-09 0.17838543653488159 0.17838543653488159\n\t\t 1 0.1783854067325592 -1.234002411365509e-08 0.17838543653488159 1 -0.17838543653488159\n\t\t 0.17838543653488159 -7.4505805969238281e-09 1 0.1783854067325592 0.17838543653488159\n\t\t 1.234002411365509e-08 1 0 0.17838543653488159 -0.17838543653488159 1 -0.17838543653488159\n\t\t -7.4505805969238281e-09 -0.17838543653488159 1 1.1641532182693481e-09 -0.1783854067325592\n\t\t -0.17838543653488159 1 0.17838543653488159 0 -0.17838543653488159 1 -0.17838543653488159\n\t\t -0.17838543653488159 7.4505805969238281e-09 1 1.1641532182693481e-09 -0.17838543653488159\n\t\t 0.17838543653488159 1 8.3819031715393066e-09 -1.5366822481155396e-08 -0.060763835906982422\n\t\t 1 7.9162418842315674e-09 -0.06076386570930481 -6.0535967350006104e-09 1 7.9162418842315674e-09\n\t\t -6.0535967350006104e-09 0.06076386570930481 1 7.9162418842315674e-09 0.06076386570930481\n\t\t 6.0535967350006104e-09 1 -0.06076386570930481 -1.5366822481155396e-08 4.6566128730773926e-10\n\t\t 1 0.06076386570930481 -4.6566128730773926e-10 -4.6566128730773926e-10 1 0.086805552244186401\n\t\t 0.086805522441864014 -0.11805552244186401 1 -0.086805537343025208 0.086805537343025208\n\t\t -0.11805549263954163 1 -0.086805567145347595 -0.086805537343025208 -0.11805552244186401\n\t\t 1 0.086805537343025208 -0.086805537343025208 -0.11805552244186401 1 0.086805537343025208\n\t\t -0.11805552244186401 -0.086805567145347595 1 -0.086805552244186401 -0.11805552244186401\n\t\t -0.086805552244186401 1 -0.086805567145347595 -0.11805552244186401 0.086805537343025208\n\t\t 1 0.086805522441864014 -0.11805552244186401 0.086805552244186401 1 0.086805537343025208\n\t\t -0.086805567145347595 0.11805552244186401 1 -0.086805552244186401 -0.086805552244186401\n\t\t 0.11805552244186401 1 -0.086805552244186401 0.086805522441864014 0.11805552244186401\n\t\t 1 0.086805522441864014 0.086805552244186401 0.11805552244186401 1 0.086805537343025208\n\t\t 0.11805552244186401 0.086805567145347595 1 -0.086805552244186401 0.11805552244186401\n\t\t 0.086805552244186401 1 -0.086805567145347595 0.11805552244186401 -0.086805537343025208\n\t\t 1 0.086805522441864014 0.11805552244186401 -0.086805552244186401 1 -0.11805552244186401\n\t\t 0.086805537343025208 -0.086805537343025208 1 -0.11805552244186401 0.086805552244186401\n\t\t 0.086805552244186401 1 -0.11805552244186401 -0.086805522441864014 0.086805552244186401\n\t\t 1 -0.11805549263954163 -0.086805537343025208 -0.086805567145347595 1 0.11805552244186401\n\t\t 0.086805537343025208 0.086805537343025208 1 0.11805552244186401 0.086805552244186401\n\t\t -0.086805552244186401 1 0.11805552244186401 -0.086805537343025208 -0.086805567145347595\n\t\t 1 0.11805552244186401 -0.086805537343025208 0.086805567145347595 1 -7.4505805969238281e-09\n\t\t 0.074652761220932007 -0.090277761220932007 1 -0.074652761220932007 -7.4505805969238281e-09\n\t\t -0.090277761220932007 1 1.4901161193847656e-08 -0.074652761220932007 -0.090277731418609619\n\t\t 1 0.074652761220932007 1.4901161193847656e-08 -0.090277791023254395 1 -7.4505805969238281e-09\n\t\t -0.090277761220932007 -0.074652761220932007 1 -0.074652761220932007 -0.090277761220932007\n\t\t 7.4505805969238281e-09 1 1.4901161193847656e-08 -0.090277731418609619 0.074652761220932007\n\t\t 1 0.074652761220932007 -0.090277791023254395 -1.4901161193847656e-08 1 -7.4505805969238281e-09\n\t\t -0.074652761220932007 0.090277761220932007 1 -0.074652761220932007 7.4505805969238281e-09\n\t\t 0.090277761220932007 1 1.4901161193847656e-08 0.074652761220932007 0.090277731418609619\n\t\t 1 0.074652761220932007 -1.4901161193847656e-08 0.090277791023254395 1 -7.4505805969238281e-09\n\t\t 0.090277761220932007 0.074652761220932007 1 -0.074652761220932007 0.090277761220932007\n\t\t -7.4505805969238281e-09 1 1.4901161193847656e-08 0.090277731418609619 -0.074652761220932007\n\t\t 1 0.074652761220932007 0.090277791023254395 1.4901161193847656e-08 1 -0.090277761220932007\n\t\t 0.074652761220932007 7.4505805969238281e-09 1 -0.090277761220932007 -7.4505805969238281e-09\n\t\t 0.074652761220932007 1 -0.090277731418609619 -0.074652761220932007 -1.4901161193847656e-08\n\t\t 1 -0.090277791023254395 1.4901161193847656e-08 -0.074652761220932007 1 0.090277761220932007\n\t\t 0.074652761220932007 -7.4505805969238281e-09 1 0.090277761220932007 -7.4505805969238281e-09\n\t\t -0.074652761220932007 1 0.090277731418609619 -0.074652761220932007 1.4901161193847656e-08\n\t\t 1 0.090277791023254395 1.4901161193847656e-08 0.074652761220932007 1 0.098958343267440796\n\t\t 0.2005208432674408 -0.2005208432674408 1 -0.098958343267440796 0.2005208432674408\n\t\t -0.2005208432674408 1 -0.20052081346511841 0.098958343267440796 -0.2005208432674408\n\t\t 1 -0.2005208432674408 -0.09895835816860199 -0.2005208432674408 1 -0.098958343267440796\n\t\t -0.2005208432674408 -0.2005208432674408 1 0.098958343267440796 -0.2005208432674408\n\t\t -0.2005208432674408 1 0.2005208432674408 -0.09895835816860199 -0.2005208432674408\n\t\t 1 0.20052081346511841 0.098958343267440796 -0.2005208432674408 1 -0.20052081346511841\n\t\t -0.2005208432674408 -0.098958343267440796 1 -0.2005208432674408 -0.2005208432674408\n\t\t 0.09895835816860199 1 -0.098958343267440796 -0.2005208432674408 0.2005208432674408\n\t\t 1 0.098958343267440796 -0.2005208432674408 0.2005208432674408 1 0.2005208432674408\n\t\t -0.2005208432674408 0.098958343267440796 1 0.2005208432674408 -0.2005208432674408\n\t\t -0.098958343267440796 1 -0.2005208432674408 -0.098958343267440796 0.2005208432674408\n\t\t 1 -0.2005208432674408 0.098958343267440796 0.2005208432674408 1 -0.098958343267440796\n\t\t 0.2005208432674408 0.2005208432674408 1 0.098958343267440796 0.2005208432674408 0.2005208432674408\n\t\t 1 0.2005208432674408 0.098958343267440796 0.2005208432674408 1 0.2005208432674408\n\t\t -0.098958343267440796 0.2005208432674408 1 -0.20052081346511841 0.2005208432674408\n\t\t 0.098958343267440796 1 -0.2005208432674408 0.2005208432674408 -0.09895835816860199\n\t\t 1 0.2005208432674408 0.2005208432674408 -0.098958343267440796 1 0.2005208432674408\n\t\t 0.2005208432674408 0.098958343267440796 1 ;\n\tsetAttr \".it[0].itg[0].iti[6000].ict\" -type \"componentList\" 1 \"vtx[0:97]\";\n\tsetAttr \".mlid\" 0;\n\tsetAttr \".mlpr\" 0;\n\tsetAttr \".pndr[0]\"  0;\n\tsetAttr \".tgdt[0].cid\" -type \"Int32Array\" 1 0 ;\n\tsetAttr \".aal\" -type \"attributeAlias\" {\"pCube2\",\"weight[0]\"} ;\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"2AFA5EEB-468A-EDF8-ACAE-D6BC3D44B32D\";\ncreateNode objectSet -n \"blendShape1Set\";\n\trename -uid \"103FE9CB-4CC5-BE1E-A8EC-D0907002B029\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"blendShape1GroupId\";\n\trename -uid \"F5C0E855-4E0F-73C8-9BD3-B6B33302173E\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"blendShape1GroupParts\";\n\trename -uid \"4AD49D33-416D-3232-EB53-D1AD1C2C92DD\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"E54DEF16-4369-C787-A240-DE92FCC7339B\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"F8600E3B-40D1-87FA-9342-5689093BA152\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"15C5E2DA-4345-8A41-3FC0-52BE1CDE12E4\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode animCurveTU -n \"blendShape1_pCube2\";\n\trename -uid \"CB4568A4-4770-AA8D-6B93-E19FB3257D77\";\n\tsetAttr \".tan\" 18;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 20 1 40 0;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"635E740E-4CA0-64DB-1019-C6A560B42008\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 40;\n\tsetAttr \".unw\" 40;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"blendShape1GroupId.id\" \"pCubeShape1.iog.og[3].gid\";\nconnectAttr \"blendShape1Set.mwc\" \"pCubeShape1.iog.og[3].gco\";\nconnectAttr \"groupId2.id\" \"pCubeShape1.iog.og[4].gid\";\nconnectAttr \"tweakSet1.mwc\" \"pCubeShape1.iog.og[4].gco\";\nconnectAttr \"blendShape1.og[0]\" \"pCubeShape1.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"pCubeShape1.twl\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"blendShape1.mlpr\" \"shapeEditorManager.bspr[0]\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"blendShape1GroupParts.og\" \"blendShape1.ip[0].ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1.ip[0].gi\";\nconnectAttr \"shapeEditorManager.obsv[0]\" \"blendShape1.tgdt[0].dpvs\";\nconnectAttr \"blendShape1_pCube2.o\" \"blendShape1.w[0]\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"blendShape1GroupId.msg\" \"blendShape1Set.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[3]\" \"blendShape1Set.dsm\" -na;\nconnectAttr \"blendShape1.msg\" \"blendShape1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"blendShape1GroupParts.ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[4]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"pCubeShape1Orig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of CubeToSphereAnim.ma\n"
  },
  {
    "path": "maya/scenes/complex/ComplexAnim1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: ComplexAnim1.ma\n//Last modified: Sun, Feb 03, 2019 11:56:40 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires -nodeType \"aiOptions\" -nodeType \"aiAOVDriver\" -nodeType \"aiAOVFilter\" \"mtoa\" \"2.1.0.1\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"811D66CC-428E-11CE-4D28-B5BB1C7CB028\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -13.122390860867784 3.2238160445829411 3.8124069696161076 ;\n\tsetAttr \".r\" -type \"double3\" -0.93835272960183613 -73.799999999999301 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"F0656A63-4F39-C37B-DF60-A8944B9E2774\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 13.666809519018694;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0 3 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"47775968-481D-959C-DEC2-C4912A1B5C1A\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"EB095155-4DB1-0744-A568-14BA62C44391\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"front\";\n\trename -uid \"D2B058DF-4F52-A165-3820-02ACBF177175\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 2.5 1000.1031246826499 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"C0076C6D-486D-29FF-8F70-71ABAEEFAFEB\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1031246826499;\n\tsetAttr \".ow\" 11.922400202201116;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0 2.5 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"side\";\n\trename -uid \"16C0B8E8-4BA7-F9BB-4576-23BDBB79EA1F\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"38CC8E14-4B71-AE99-14B3-67A7483C201E\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -n \"character\";\n\trename -uid \"308473CD-49C6-7C12-3686-70A190B85479\";\n\tsetAttr \".t\" -type \"double3\" 0 2.5 0 ;\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\n\tsetAttr \".rp\" -type \"double3\" 0 -2.5 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0 -2.5 0 ;\ncreateNode mesh -n \"characterShape\" -p \"character\";\n\trename -uid \"58FFE630-426C-2EEC-EB41-73B726FBAFC3\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 6 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode mesh -n \"characterShapeOrig\" -p \"character\";\n\trename -uid \"BB1EBB54-47C9-CA20-0ED8-C4BDF9550EE1\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"target1\";\n\trename -uid \"1862B60C-4CCB-46C8-6EE3-E1A3BB6F4E93\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1.5 2.5 0 ;\n\tsetAttr \".rp\" -type \"double3\" 0 -2.5 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0 -2.5 0 ;\ncreateNode mesh -n \"target1Shape\" -p \"target1\";\n\trename -uid \"4BEAC819-49DA-ADB7-DC45-B9B58D389E94\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.3750000074505806 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 38 \".uvst[0].uvsp[0:37]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.050000001 0.625 0.050000001 0.375 0.1 0.625 0.1 0.375 0.15000001 0.625 0.15000001\n\t\t 0.375 0.2 0.625 0.2 0.375 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.55000001 0.625\n\t\t 0.55000001 0.375 0.60000002 0.625 0.60000002 0.375 0.65000004 0.625 0.65000004 0.375\n\t\t 0.70000005 0.625 0.70000005 0.375 0.75000006 0.625 0.75000006 0.375 1 0.625 1 0.875\n\t\t 0 0.875 0.050000001 0.875 0.1 0.875 0.15000001 0.875 0.2 0.875 0.25 0.125 0 0.125\n\t\t 0.050000001 0.125 0.1 0.125 0.15000001 0.125 0.2 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".pt[8:15]\" -type \"float3\"  -0.25000018 -2.0861626e-07 \n\t\t0.25000018 0.25000018 -2.0861626e-07 0.25000018 -0.25000018 1.7881393e-07 0.25000018 \n\t\t0.25000018 1.7881393e-07 0.25000018 -0.25000018 1.7881393e-07 -0.25000018 0.25000018 \n\t\t1.7881393e-07 -0.25000018 -0.25000018 -2.0861626e-07 -0.25000018 0.25000018 -2.0861626e-07 \n\t\t-0.25000018;\n\tsetAttr -s 24 \".vt[0:23]\"  -0.5 -2.5 0.5 0.5 -2.5 0.5 -0.5 -1.5 0.5\n\t\t 0.5 -1.5 0.5 -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5 -0.5 1.5 0.5 0.5 1.5 0.5\n\t\t -0.5 2.5 0.5 0.5 2.5 0.5 -0.5 2.5 -0.5 0.5 2.5 -0.5 -0.5 1.5 -0.5 0.5 1.5 -0.5 -0.5 0.5 -0.5\n\t\t 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5 -0.5 -1.5 -0.5 0.5 -1.5 -0.5 -0.5 -2.5 -0.5\n\t\t 0.5 -2.5 -0.5;\n\tsetAttr -s 44 \".ed[0:43]\"  0 1 0 2 3 1 4 5 1 6 7 1 8 9 1 10 11 0 12 13 0\n\t\t 14 15 1 16 17 1 18 19 1 20 21 1 22 23 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 8 0\n\t\t 7 9 0 8 10 0 9 11 0 10 12 0 11 13 0 12 14 0 13 15 0 14 16 0 15 17 0 16 18 0 17 19 0\n\t\t 18 20 0 19 21 0 20 22 0 21 23 0 22 0 0 23 1 0 21 3 1 19 5 1 17 7 1 15 9 1 20 2 1\n\t\t 18 4 1 16 6 1 14 8 1;\n\tsetAttr -s 22 -ch 88 \".fc[0:21]\" -type \"polyFaces\" \n\t\tf 4 0 13 -2 -13\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 15 -3 -15\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 17 -4 -17\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 19 -5 -19\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 4 21 -6 -21\n\t\tmu 0 4 8 9 11 10\n\t\tf 4 5 23 -7 -23\n\t\tmu 0 4 10 11 13 12\n\t\tf 4 6 25 -8 -25\n\t\tmu 0 4 12 13 15 14\n\t\tf 4 7 27 -9 -27\n\t\tmu 0 4 14 15 17 16\n\t\tf 4 8 29 -10 -29\n\t\tmu 0 4 16 17 19 18\n\t\tf 4 9 31 -11 -31\n\t\tmu 0 4 18 19 21 20\n\t\tf 4 10 33 -12 -33\n\t\tmu 0 4 20 21 23 22\n\t\tf 4 11 35 -1 -35\n\t\tmu 0 4 22 23 25 24\n\t\tf 4 -36 -34 36 -14\n\t\tmu 0 4 1 26 27 3\n\t\tf 4 -37 -32 37 -16\n\t\tmu 0 4 3 27 28 5\n\t\tf 4 -38 -30 38 -18\n\t\tmu 0 4 5 28 29 7\n\t\tf 4 -39 -28 39 -20\n\t\tmu 0 4 7 29 30 9\n\t\tf 4 -40 -26 -24 -22\n\t\tmu 0 4 9 30 31 11\n\t\tf 4 34 12 -41 32\n\t\tmu 0 4 32 0 2 33\n\t\tf 4 40 14 -42 30\n\t\tmu 0 4 33 2 4 34\n\t\tf 4 41 16 -43 28\n\t\tmu 0 4 34 4 6 35\n\t\tf 4 42 18 -44 26\n\t\tmu 0 4 35 6 8 36\n\t\tf 4 43 20 22 24\n\t\tmu 0 4 36 8 10 37;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"target2\";\n\trename -uid \"6461DEC0-45A5-45D4-85F3-3AB9838E5E98\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 3 2.5 0 ;\n\tsetAttr \".rp\" -type \"double3\" 0 -2.5 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0 -2.5 0 ;\ncreateNode mesh -n \"targetShape2\" -p \"target2\";\n\trename -uid \"1E5E3C1A-457B-D780-7DFF-F28CCD21310E\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.37500001490116119 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 38 \".uvst[0].uvsp[0:37]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.050000001 0.625 0.050000001 0.375 0.1 0.625 0.1 0.375 0.15000001 0.625 0.15000001\n\t\t 0.375 0.2 0.625 0.2 0.375 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.55000001 0.625\n\t\t 0.55000001 0.375 0.60000002 0.625 0.60000002 0.375 0.65000004 0.625 0.65000004 0.375\n\t\t 0.70000005 0.625 0.70000005 0.375 0.75000006 0.625 0.75000006 0.375 1 0.625 1 0.875\n\t\t 0 0.875 0.050000001 0.875 0.1 0.875 0.15000001 0.875 0.2 0.875 0.25 0.125 0 0.125\n\t\t 0.050000001 0.125 0.1 0.125 0.15000001 0.125 0.2 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".pt\";\n\tsetAttr \".pt[6]\" -type \"float3\" -0.25 0 0.25 ;\n\tsetAttr \".pt[7]\" -type \"float3\" 0.25 0 0.25 ;\n\tsetAttr \".pt[8]\" -type \"float3\" -0.25 0 0.25 ;\n\tsetAttr \".pt[9]\" -type \"float3\" 0.25 0 0.25 ;\n\tsetAttr \".pt[14]\" -type \"float3\" -0.25 0 -0.25 ;\n\tsetAttr \".pt[15]\" -type \"float3\" 0.25 0 -0.25 ;\n\tsetAttr \".pt[16]\" -type \"float3\" -0.25 0 -0.25 ;\n\tsetAttr \".pt[17]\" -type \"float3\" 0.25 0 -0.25 ;\n\tsetAttr -s 24 \".vt[0:23]\"  -0.5 -2.5 0.5 0.5 -2.5 0.5 -0.5 -1.5 0.5\n\t\t 0.5 -1.5 0.5 -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5 -0.5 1.5 0.5 0.5 1.5 0.5\n\t\t -0.5 2.5 0.5 0.5 2.5 0.5 -0.5 2.5 -0.5 0.5 2.5 -0.5 -0.5 1.5 -0.5 0.5 1.5 -0.5 -0.5 0.5 -0.5\n\t\t 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5 -0.5 -1.5 -0.5 0.5 -1.5 -0.5 -0.5 -2.5 -0.5\n\t\t 0.5 -2.5 -0.5;\n\tsetAttr -s 44 \".ed[0:43]\"  0 1 0 2 3 1 4 5 1 6 7 1 8 9 1 10 11 0 12 13 0\n\t\t 14 15 1 16 17 1 18 19 1 20 21 1 22 23 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 8 0\n\t\t 7 9 0 8 10 0 9 11 0 10 12 0 11 13 0 12 14 0 13 15 0 14 16 0 15 17 0 16 18 0 17 19 0\n\t\t 18 20 0 19 21 0 20 22 0 21 23 0 22 0 0 23 1 0 21 3 1 19 5 1 17 7 1 15 9 1 20 2 1\n\t\t 18 4 1 16 6 1 14 8 1;\n\tsetAttr -s 22 -ch 88 \".fc[0:21]\" -type \"polyFaces\" \n\t\tf 4 0 13 -2 -13\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 15 -3 -15\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 17 -4 -17\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 19 -5 -19\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 4 21 -6 -21\n\t\tmu 0 4 8 9 11 10\n\t\tf 4 5 23 -7 -23\n\t\tmu 0 4 10 11 13 12\n\t\tf 4 6 25 -8 -25\n\t\tmu 0 4 12 13 15 14\n\t\tf 4 7 27 -9 -27\n\t\tmu 0 4 14 15 17 16\n\t\tf 4 8 29 -10 -29\n\t\tmu 0 4 16 17 19 18\n\t\tf 4 9 31 -11 -31\n\t\tmu 0 4 18 19 21 20\n\t\tf 4 10 33 -12 -33\n\t\tmu 0 4 20 21 23 22\n\t\tf 4 11 35 -1 -35\n\t\tmu 0 4 22 23 25 24\n\t\tf 4 -36 -34 36 -14\n\t\tmu 0 4 1 26 27 3\n\t\tf 4 -37 -32 37 -16\n\t\tmu 0 4 3 27 28 5\n\t\tf 4 -38 -30 38 -18\n\t\tmu 0 4 5 28 29 7\n\t\tf 4 -39 -28 39 -20\n\t\tmu 0 4 7 29 30 9\n\t\tf 4 -40 -26 -24 -22\n\t\tmu 0 4 9 30 31 11\n\t\tf 4 34 12 -41 32\n\t\tmu 0 4 32 0 2 33\n\t\tf 4 40 14 -42 30\n\t\tmu 0 4 33 2 4 34\n\t\tf 4 41 16 -43 28\n\t\tmu 0 4 34 4 6 35\n\t\tf 4 42 18 -44 26\n\t\tmu 0 4 35 6 8 36\n\t\tf 4 43 20 22 24\n\t\tmu 0 4 36 8 10 37;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"target3\";\n\trename -uid \"C30B2E7D-489D-A02B-AEC9-4989C22B2313\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 4.5 2.5 0 ;\n\tsetAttr \".rp\" -type \"double3\" 0 -2.5 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0 -2.5 0 ;\ncreateNode mesh -n \"targetShape3\" -p \"target3\";\n\trename -uid \"CFD8C8AE-41E1-3E62-8406-9ABE42EACB8A\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.37500001862645149 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 38 \".uvst[0].uvsp[0:37]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.050000001 0.625 0.050000001 0.375 0.1 0.625 0.1 0.375 0.15000001 0.625 0.15000001\n\t\t 0.375 0.2 0.625 0.2 0.375 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.55000001 0.625\n\t\t 0.55000001 0.375 0.60000002 0.625 0.60000002 0.375 0.65000004 0.625 0.65000004 0.375\n\t\t 0.70000005 0.625 0.70000005 0.375 0.75000006 0.625 0.75000006 0.375 1 0.625 1 0.875\n\t\t 0 0.875 0.050000001 0.875 0.1 0.875 0.15000001 0.875 0.2 0.875 0.25 0.125 0 0.125\n\t\t 0.050000001 0.125 0.1 0.125 0.15000001 0.125 0.2 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".pt\";\n\tsetAttr \".pt[4]\" -type \"float3\" -0.25 0 0.25 ;\n\tsetAttr \".pt[5]\" -type \"float3\" 0.25 0 0.25 ;\n\tsetAttr \".pt[6]\" -type \"float3\" -0.25 0 0.25 ;\n\tsetAttr \".pt[7]\" -type \"float3\" 0.25 0 0.25 ;\n\tsetAttr \".pt[16]\" -type \"float3\" -0.25 0 -0.25 ;\n\tsetAttr \".pt[17]\" -type \"float3\" 0.25 0 -0.25 ;\n\tsetAttr \".pt[18]\" -type \"float3\" -0.25 0 -0.25 ;\n\tsetAttr \".pt[19]\" -type \"float3\" 0.25 0 -0.25 ;\n\tsetAttr -s 24 \".vt[0:23]\"  -0.5 -2.5 0.5 0.5 -2.5 0.5 -0.5 -1.5 0.5\n\t\t 0.5 -1.5 0.5 -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5 -0.5 1.5 0.5 0.5 1.5 0.5\n\t\t -0.5 2.5 0.5 0.5 2.5 0.5 -0.5 2.5 -0.5 0.5 2.5 -0.5 -0.5 1.5 -0.5 0.5 1.5 -0.5 -0.5 0.5 -0.5\n\t\t 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5 -0.5 -1.5 -0.5 0.5 -1.5 -0.5 -0.5 -2.5 -0.5\n\t\t 0.5 -2.5 -0.5;\n\tsetAttr -s 44 \".ed[0:43]\"  0 1 0 2 3 1 4 5 1 6 7 1 8 9 1 10 11 0 12 13 0\n\t\t 14 15 1 16 17 1 18 19 1 20 21 1 22 23 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 8 0\n\t\t 7 9 0 8 10 0 9 11 0 10 12 0 11 13 0 12 14 0 13 15 0 14 16 0 15 17 0 16 18 0 17 19 0\n\t\t 18 20 0 19 21 0 20 22 0 21 23 0 22 0 0 23 1 0 21 3 1 19 5 1 17 7 1 15 9 1 20 2 1\n\t\t 18 4 1 16 6 1 14 8 1;\n\tsetAttr -s 22 -ch 88 \".fc[0:21]\" -type \"polyFaces\" \n\t\tf 4 0 13 -2 -13\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 15 -3 -15\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 17 -4 -17\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 19 -5 -19\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 4 21 -6 -21\n\t\tmu 0 4 8 9 11 10\n\t\tf 4 5 23 -7 -23\n\t\tmu 0 4 10 11 13 12\n\t\tf 4 6 25 -8 -25\n\t\tmu 0 4 12 13 15 14\n\t\tf 4 7 27 -9 -27\n\t\tmu 0 4 14 15 17 16\n\t\tf 4 8 29 -10 -29\n\t\tmu 0 4 16 17 19 18\n\t\tf 4 9 31 -11 -31\n\t\tmu 0 4 18 19 21 20\n\t\tf 4 10 33 -12 -33\n\t\tmu 0 4 20 21 23 22\n\t\tf 4 11 35 -1 -35\n\t\tmu 0 4 22 23 25 24\n\t\tf 4 -36 -34 36 -14\n\t\tmu 0 4 1 26 27 3\n\t\tf 4 -37 -32 37 -16\n\t\tmu 0 4 3 27 28 5\n\t\tf 4 -38 -30 38 -18\n\t\tmu 0 4 5 28 29 7\n\t\tf 4 -39 -28 39 -20\n\t\tmu 0 4 7 29 30 9\n\t\tf 4 -40 -26 -24 -22\n\t\tmu 0 4 9 30 31 11\n\t\tf 4 34 12 -41 32\n\t\tmu 0 4 32 0 2 33\n\t\tf 4 40 14 -42 30\n\t\tmu 0 4 33 2 4 34\n\t\tf 4 41 16 -43 28\n\t\tmu 0 4 34 4 6 35\n\t\tf 4 42 18 -44 26\n\t\tmu 0 4 35 6 8 36\n\t\tf 4 43 20 22 24\n\t\tmu 0 4 36 8 10 37;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode joint -n \"joint1\";\n\trename -uid \"657D87BB-4410-833E-2100-56AF3A81B2C2\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".t\" -type \"double3\" 0 0.5 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 89.999999999999986 ;\n\tsetAttr \".ssc\" no;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 0.5 0 1;\n\tsetAttr \".radi\" 2;\ncreateNode joint -n \"joint2\" -p \"joint1\";\n\trename -uid \"784BD652-41D6-1FB4-BD6A-D5AC3B351063\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\taddAttr -ci true -k true -sn \"blendCharacterset\" -ln \"blendCharacterset\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\taddAttr -ci true -k true -sn \"blendPairBlend1\" -ln \"blendPairBlend1\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 1;\n\tsetAttr \".t\" -type \"double3\" 1 2.2204460492503131e-16 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".ssc\" no;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 1.5 0 1;\n\tsetAttr \".radi\" 2;\n\tsetAttr -k on \".blendCharacterset\" 0;\n\tsetAttr -k on \".blendPairBlend1\" 0;\ncreateNode joint -n \"joint3\" -p \"joint2\";\n\trename -uid \"2F5193C2-4CEE-967B-98EE-52B8453B373D\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\taddAttr -ci true -k true -sn \"blendCharacterset\" -ln \"blendCharacterset\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\taddAttr -ci true -k true -sn \"blendPairBlend2\" -ln \"blendPairBlend2\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 2;\n\tsetAttr \".t\" -type \"double3\" 1 2.2204460492503131e-16 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".ssc\" no;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 2.5 0 1;\n\tsetAttr \".radi\" 2;\n\tsetAttr -k on \".blendCharacterset\" 0;\n\tsetAttr -k on \".blendPairBlend2\" 0;\ncreateNode joint -n \"joint4\" -p \"joint3\";\n\trename -uid \"8A97BC9F-4A21-300B-0B62-42B95BB71110\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\taddAttr -ci true -k true -sn \"blendCharacterset\" -ln \"blendCharacterset\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\taddAttr -ci true -k true -sn \"blendPairBlend3\" -ln \"blendPairBlend3\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 3;\n\tsetAttr \".t\" -type \"double3\" 1 2.2204460492503131e-16 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".ssc\" no;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 3.5 0 1;\n\tsetAttr \".radi\" 2;\n\tsetAttr -k on \".blendCharacterset\" 0;\n\tsetAttr -k on \".blendPairBlend3\" 0;\ncreateNode joint -n \"joint5\" -p \"joint4\";\n\trename -uid \"7D29A041-4D85-902A-A5FF-08A5F7504E91\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\taddAttr -ci true -k true -sn \"blendCharacterset\" -ln \"blendCharacterset\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\taddAttr -ci true -k true -sn \"blendPairBlend4\" -ln \"blendPairBlend4\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 4;\n\tsetAttr \".t\" -type \"double3\" 1 2.2204460492503131e-16 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 -89.999999999999986 ;\n\tsetAttr \".ssc\" no;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 4.5 0 1;\n\tsetAttr \".radi\" 2;\n\tsetAttr -k on \".blendCharacterset\" 0;\n\tsetAttr -k on \".blendPairBlend4\" 0;\ncreateNode transform -n \"camera1\";\n\trename -uid \"5A380719-4EE8-C02C-FD0A-8E96EDAF0509\";\n\tsetAttr \".t\" -type \"double3\" 4.5107948478874444 9.452487541112486 8.8554279560448812 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"835B527D-4B56-E09C-A4BB-058D7570D861\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 12.205366760010946;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 3.077683537175254 0.5 0 ;\n\tsetAttr \".dr\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"6E24D622-4D22-A470-E758-23B00F6BFBD3\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"00E0F2C0-4A28-E0C7-45ED-94B10E805121\";\n\tsetAttr \".bsdt[0].bscd\" -type \"Int32Array\" 1 0 ;\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"78BA34DF-4457-940A-BFD0-BB92329A5C52\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"771E5173-4538-5F95-89EB-C39C721818CA\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"B4A9A8EB-47B1-1301-5F6C-4687950E3E5E\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"18C692FF-4439-6D66-20B8-3CA70B589AB8\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"7F7C254D-4AA6-16A8-00D4-81B62C35963B\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"D0DF4715-481F-95AB-8AA0-D4BACE01D98F\";\n\tsetAttr \".h\" 5;\n\tsetAttr \".sh\" 5;\n\tsetAttr \".cuv\" 4;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"EC8E308D-42CF-689D-CAEA-FFB37284F009\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange -10.8 30.8 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 10 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"F73172AE-431E-C65E-2119-0FB6E7DEE1FC\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 40 -ast 1 -aet 40 \";\n\tsetAttr \".st\" 6;\ncreateNode blendShape -n \"blendShape1\";\n\trename -uid \"7EA2D131-48BC-E4B5-E208-C78B9C20FC41\";\n\taddAttr -ci true -h true -sn \"aal\" -ln \"attributeAliasList\" -dt \"attributeAlias\";\n\tsetAttr -s 3 \".w\";\n\tsetAttr -s 3 \".w\";\n\tsetAttr -s 3 \".it[0].itg\";\n\tsetAttr \".mlid\" 0;\n\tsetAttr \".mlpr\" 0;\n\tsetAttr -s 3 \".pndr[0:2]\"  0 0 0;\n\tsetAttr \".tgdt[0].cid\" -type \"Int32Array\" 3 0 1 2 ;\n\tsetAttr \".aal\" -type \"attributeAlias\" {\"target3\",\"weight[0]\",\"target2\",\"weight[1]\"\n\t\t,\"target1\",\"weight[2]\"} ;\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"E762CE4D-437D-702A-289A-2BBA7B4BA341\";\ncreateNode objectSet -n \"blendShape1Set\";\n\trename -uid \"B7DD1F34-4F1F-8478-43FF-BD803E76DCCA\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"blendShape1GroupId\";\n\trename -uid \"5865CD67-4E00-8384-A5FC-E8B65FE5B181\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"blendShape1GroupParts\";\n\trename -uid \"D97E1207-43B6-0354-7D60-BE8E9B8DC917\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"924ECB26-4516-F115-5E6F-BE8065F3E523\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"63A278ED-457B-1811-E2EE-55A9845920A5\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"B7F679EA-4E96-5333-5BA3-27B09D94BD81\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode character -n \"character_set\";\n\trename -uid \"0E29FC62-4828-4A3E-A79A-B4A3D560A8FE\";\n\taddAttr -ci true -h true -sn \"aal\" -ln \"attributeAliasList\" -dt \"attributeAlias\";\n\tsetAttr -s 4 \".dnsm\";\n\tsetAttr -s 26 \".uv[1:26]\"  1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 \n\t\t0 0 0 0 0 0;\n\tsetAttr -s 3 \".uv\";\n\tsetAttr -s 14 \".lv[2:15]\"  0.5 0 0 2.2204460492503131e-16 1 0 2.2204460492503131e-16 \n\t\t1 0 2.2204460492503131e-16 1 0 2.2204460492503131e-16 1;\n\tsetAttr \".am\" -type \"characterMapping\" 4 \"blendShape1.target3\" 0 21 \"blendShape1.target1\" \n\t\t0 22 \"blendShape1.target2\" 0 23 \"joint1.rotateZ\" 2 1  ;\n\tsetAttr \".cim\" -type \"Int32Array\" 4 0 1 2 3 ;\n\tsetAttr \".tcs\" 1;\n\tsetAttr \".tce\" 40;\n\tsetAttr \".aal\" -type \"attributeAlias\" {\"joint3_rotateZ\",\"angularValues[10]\",\"joint2_rotateZ\"\n\t\t,\"angularValues[13]\",\"joint1_rotateZ\",\"angularValues[1]\",\"joint5_rotateZ\",\"angularValues[4]\"\n\t\t,\"joint4_rotateZ\",\"angularValues[7]\",\"blendShape1_target3\",\"unitlessValues[21]\",\"blendShape1_target1\"\n\t\t,\"unitlessValues[22]\",\"blendShape1_target2\",\"unitlessValues[23]\"} ;\ncreateNode trackInfoManager -n \"trackInfoManager1\";\n\trename -uid \"648FBF04-4D18-0C76-CD6D-41A1A9DD508F\";\ncreateNode animCurveTU -n \"character_set_blendShape1_target3\";\n\trename -uid \"48871E22-4A66-D0FE-E00D-DD9BA5245B73\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target1\";\n\trename -uid \"99C882B2-4D26-A4FC-7708-EAA9A189FF09\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target2\";\n\trename -uid \"4C681906-42D3-AE32-9E8A-0CB6A9228E30\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode clipScheduler -n \"character_setScheduler1\";\n\trename -uid \"1ADC1FB9-4CC6-507C-392F-0B811DD71345\";\n\tsetAttr \".nt\" 10;\ncreateNode clipLibrary -n \"character_setClips1\";\n\trename -uid \"F5C329E5-4C99-BBC5-FC7D-2AB615652AFC\";\n\tsetAttr -s 6 \".cel\";\n\tsetAttr -s 4 \".cel[0].cev\";\n\tsetAttr -s 3 \".cel[1].cev\";\n\tsetAttr -s 3 \".cel[2].cev\";\n\tsetAttr -s 3 \".cel[3].cev\";\n\tsetAttr -s 4 \".cel[4].cev\";\n\tsetAttr -s 4 \".cel[5].cev\";\n\tsetAttr -s 6 \".sc\";\ncreateNode animClip -n \"setupSource\";\n\trename -uid \"EBAACE3B-4F0F-1627-7D02-E283F1210B4A\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 1;\n\tsetAttr \".ci\" no;\ncreateNode animCurveTU -n \"character_set_blendShape1_target4\";\n\trename -uid \"566769D6-439B-657C-802E-A1B3D4FC1E2A\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 0 20 0 30 0 40 0;\n\tsetAttr -s 5 \".kit[0:4]\"  1 18 18 18 18;\n\tsetAttr -s 5 \".kot[0:4]\"  1 18 18 18 18;\n\tsetAttr -s 5 \".kix[0:4]\"  1 1 1 1 1;\n\tsetAttr -s 5 \".kiy[0:4]\"  0 0 0 0 0;\n\tsetAttr -s 5 \".kox[0:4]\"  1 1 1 1 1;\n\tsetAttr -s 5 \".koy[0:4]\"  0 0 0 0 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target5\";\n\trename -uid \"3C8E6EDB-44E9-EBE6-0E14-0AA7FBA4F69B\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 1 20 0 30 -1 40 0;\n\tsetAttr -s 5 \".kit[0:4]\"  1 18 18 18 18;\n\tsetAttr -s 5 \".kot[0:4]\"  1 18 18 18 18;\n\tsetAttr -s 5 \".kix[0:4]\"  1 1 0.38461538461538458 1 1;\n\tsetAttr -s 5 \".kiy[0:4]\"  0 0 -0.92307692307692313 0 0;\n\tsetAttr -s 5 \".kox[0:4]\"  1 1 0.38461538461538458 1 1;\n\tsetAttr -s 5 \".koy[0:4]\"  0 0 -0.92307692307692313 0 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target6\";\n\trename -uid \"382D076E-4D90-4606-38B3-2EA765E0AB63\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 0 20 0 30 0 40 0;\n\tsetAttr -s 5 \".kit[0:4]\"  1 18 18 18 18;\n\tsetAttr -s 5 \".kot[0:4]\"  1 18 18 18 18;\n\tsetAttr -s 5 \".kix[0:4]\"  1 1 1 1 1;\n\tsetAttr -s 5 \".kiy[0:4]\"  0 0 0 0 0;\n\tsetAttr -s 5 \".kox[0:4]\"  1 1 1 1 1;\n\tsetAttr -s 5 \".koy[0:4]\"  0 0 0 0 0;\ncreateNode animClip -n \"clip_target1Source\";\n\trename -uid \"B7E2B415-45A3-5134-30C0-479D7BC92318\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ss\" 30;\n\tsetAttr \".se\" 70;\n\tsetAttr \".ci\" no;\ncreateNode animCurveTU -n \"character_set_blendShape1_target7\";\n\trename -uid \"5F695200-4BED-AFC8-DEEA-619A7A7F75FE\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 0 20 0 30 0 40 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target8\";\n\trename -uid \"B4EF06B7-42AF-9588-8C1D-D6BC641A3E4F\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 0 20 0 30 0 40 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target9\";\n\trename -uid \"0DFFC0BC-45C3-4FA2-79E9-588D4BBAC9E0\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 1 20 0 30 -1 40 0;\ncreateNode animClip -n \"clip_target2Source\";\n\trename -uid \"2E6AED3B-427D-590B-956D-49A9D1601F30\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 40;\n\tsetAttr \".ci\" no;\ncreateNode animCurveTU -n \"character_set_blendShape1_target10\";\n\trename -uid \"F33C57EF-4CC4-2388-EA6A-FD9B2ACF3162\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 1 20 0 30 -1 40 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target11\";\n\trename -uid \"72BB84CE-4772-23B5-9425-248ADC7CF604\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 0 20 0 30 0 40 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target12\";\n\trename -uid \"4F4815C8-496D-42B1-89FF-81801F11E2DD\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 0 20 0 30 0 40 0;\ncreateNode animClip -n \"clip_target3Source\";\n\trename -uid \"23605AF3-421F-A095-2411-7A8F6C4601A4\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 40;\n\tsetAttr \".ci\" no;\ncreateNode animCurveTU -n \"character_set_blendShape1_target13\";\n\trename -uid \"AFAA6C1E-464B-8E28-6B96-229F4ED92922\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 0 60 0 90 0 120 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target14\";\n\trename -uid \"51A3C6C3-489B-1295-CF38-AABE19831B91\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 0 60 0 90 0 120 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target15\";\n\trename -uid \"602AD4B2-4D87-9B63-5503-548193042D4A\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 0 60 0 90 0 120 0;\ncreateNode animCurveTA -n \"joint1_rotateX\";\n\trename -uid \"1544E740-48B0-C740-BF03-AFB4527C58B7\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 30 0;\ncreateNode animCurveTA -n \"joint1_rotateZ\";\n\trename -uid \"E11509F0-4319-357C-9C0D-408B176D467D\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 -20 60 0 90 20 120 0;\n\tsetAttr -s 5 \".kbd[0:4]\" yes no no no no;\ncreateNode pairBlend -n \"pairBlend1\";\n\trename -uid \"219DE558-4FFD-558D-C1E8-BFB565460FBA\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend1_inRotateZ1\";\n\trename -uid \"5295F275-46CC-CDC6-FBBC-1EA226BB1711\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode pairBlend -n \"pairBlend2\";\n\trename -uid \"77C69CC4-4B81-39BC-DB72-D4B457032B93\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend2_inRotateZ1\";\n\trename -uid \"CD88EB99-4335-1844-FA5A-E893EB9FDCA3\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode pairBlend -n \"pairBlend3\";\n\trename -uid \"3974C23D-4987-CD9E-C9DB-4A82FC691F00\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend3_inRotateZ1\";\n\trename -uid \"887CF097-4A1D-8B90-26EC-BEA9F89A2820\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode pairBlend -n \"pairBlend4\";\n\trename -uid \"43BC8CFF-4CF0-AEA8-DB5F-BD8E7AD3EB52\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend4_inRotateZ1\";\n\trename -uid \"6B0CDDE7-4EA3-EDE0-2C29-32B051F0FA5B\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode pairBlend -n \"pairBlend5\";\n\trename -uid \"23D98614-46D5-4776-06DB-FBA27750A647\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend5_inRotateZ1\";\n\trename -uid \"53A726CA-495F-DFB3-E2E0-8CB6F7F2B1C2\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 -20 30 -20;\n\tsetAttr -s 2 \".kbd[0:1]\" yes no;\ncreateNode pairBlend -n \"pairBlend6\";\n\trename -uid \"7AC2C5E0-401D-59FC-F602-97BBE802384D\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend6_inRotateZ1\";\n\trename -uid \"E00B7E83-4080-F437-BF6A-908686ECEEED\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 -20 30 -20;\n\tsetAttr -s 2 \".kbd[0:1]\" yes no;\ncreateNode pairBlend -n \"pairBlend7\";\n\trename -uid \"A0A3AC7F-4D00-C33A-23F7-D0A3DB8CE76F\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend7_inRotateZ1\";\n\trename -uid \"2022A2F6-4224-9F9A-EE3C-D7B6D6957115\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 -20 30 -20;\n\tsetAttr -s 2 \".kbd[0:1]\" yes no;\ncreateNode pairBlend -n \"pairBlend8\";\n\trename -uid \"B327F2CE-4471-975F-FC9E-C49F3872D5F0\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend8_inRotateZ1\";\n\trename -uid \"F3422A84-4415-94CF-5627-748E15FF87A7\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 -20;\n\tsetAttr \".kbd[0]\" yes;\ncreateNode animClip -n \"clip_joint_rot_zSource\";\n\trename -uid \"02FAFC4D-4F1A-000D-FC11-F3B2AC35D778\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 120;\n\tsetAttr \".ci\" no;\ncreateNode animCurveTA -n \"character_set_joint1_rotateZ\";\n\trename -uid \"263F8935-4256-F56F-8376-AAA129624B78\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"505B6A66-4A15-6774-6FF5-3D8433609167\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/scenes/complex/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"ComplexAnim1\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2018 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"\";\n\tsetAttr \".char\" -type \"string\" \"character_set\";\n\tsetAttr \".anim\" 2;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\ncreateNode nodeGraphEditorInfo -n \"MayaNodeEditorSavedTabsInfo\";\n\trename -uid \"77BD6873-4C5E-87D9-4715-E9B0D7B9E858\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -1805.3523989203343 -2670.2379891323708 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 472.01911856890518 -1529.7618439746307 ;\n\tsetAttr -s 47 \".tgi[0].ni\";\n\tsetAttr \".tgi[0].ni[0].x\" -930;\n\tsetAttr \".tgi[0].ni[0].y\" -2508.571533203125;\n\tsetAttr \".tgi[0].ni[0].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[1].x\" -930;\n\tsetAttr \".tgi[0].ni[1].y\" -3782.857177734375;\n\tsetAttr \".tgi[0].ni[1].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[2].x\" -1544.2857666015625;\n\tsetAttr \".tgi[0].ni[2].y\" -1081.4285888671875;\n\tsetAttr \".tgi[0].ni[2].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[3].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[3].y\" -944.28570556640625;\n\tsetAttr \".tgi[0].ni[3].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[4].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[4].y\" -1248.5714111328125;\n\tsetAttr \".tgi[0].ni[4].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[5].x\" -4615.71435546875;\n\tsetAttr \".tgi[0].ni[5].y\" -1350;\n\tsetAttr \".tgi[0].ni[5].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[6].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[6].y\" -1552.857177734375;\n\tsetAttr \".tgi[0].ni[6].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[7].x\" -255.71427917480469;\n\tsetAttr \".tgi[0].ni[7].y\" -1078.5714111328125;\n\tsetAttr \".tgi[0].ni[7].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[8].x\" -2465.71435546875;\n\tsetAttr \".tgi[0].ni[8].y\" -1112.857177734375;\n\tsetAttr \".tgi[0].ni[8].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[9].x\" -2772.857177734375;\n\tsetAttr \".tgi[0].ni[9].y\" -1132.857177734375;\n\tsetAttr \".tgi[0].ni[9].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[10].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[10].y\" -1350;\n\tsetAttr \".tgi[0].ni[10].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[11].x\" -562.85711669921875;\n\tsetAttr \".tgi[0].ni[11].y\" -2305.71435546875;\n\tsetAttr \".tgi[0].ni[11].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[12].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[12].y\" -1147.142822265625;\n\tsetAttr \".tgi[0].ni[12].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[13].x\" -930;\n\tsetAttr \".tgi[0].ni[13].y\" -3421.428466796875;\n\tsetAttr \".tgi[0].ni[13].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[14].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[14].y\" -1045.7142333984375;\n\tsetAttr \".tgi[0].ni[14].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[15].x\" -2158.571533203125;\n\tsetAttr \".tgi[0].ni[15].y\" -1010;\n\tsetAttr \".tgi[0].ni[15].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[16].x\" -1237.142822265625;\n\tsetAttr \".tgi[0].ni[16].y\" -977.14288330078125;\n\tsetAttr \".tgi[0].ni[16].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[17].x\" -930;\n\tsetAttr \".tgi[0].ni[17].y\" -2001.4285888671875;\n\tsetAttr \".tgi[0].ni[17].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[18].x\" -562.85711669921875;\n\tsetAttr \".tgi[0].ni[18].y\" -981.4285888671875;\n\tsetAttr \".tgi[0].ni[18].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[19].x\" -930;\n\tsetAttr \".tgi[0].ni[19].y\" -3015.71435546875;\n\tsetAttr \".tgi[0].ni[19].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[20].x\" -4001.428466796875;\n\tsetAttr \".tgi[0].ni[20].y\" -1085.7142333984375;\n\tsetAttr \".tgi[0].ni[20].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[21].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[21].y\" -1755.7142333984375;\n\tsetAttr \".tgi[0].ni[21].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[22].x\" -930;\n\tsetAttr \".tgi[0].ni[22].y\" -1118.5714111328125;\n\tsetAttr \".tgi[0].ni[22].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[23].x\" -3694.28564453125;\n\tsetAttr \".tgi[0].ni[23].y\" -1304.2857666015625;\n\tsetAttr \".tgi[0].ni[23].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[24].x\" -930;\n\tsetAttr \".tgi[0].ni[24].y\" -2711.428466796875;\n\tsetAttr \".tgi[0].ni[24].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[25].x\" -930;\n\tsetAttr \".tgi[0].ni[25].y\" -4550;\n\tsetAttr \".tgi[0].ni[25].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[26].x\" -4308.5712890625;\n\tsetAttr \".tgi[0].ni[26].y\" -1170;\n\tsetAttr \".tgi[0].ni[26].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[27].x\" -930;\n\tsetAttr \".tgi[0].ni[27].y\" -3985.71435546875;\n\tsetAttr \".tgi[0].ni[27].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[28].x\" -255.71427917480469;\n\tsetAttr \".tgi[0].ni[28].y\" -977.14288330078125;\n\tsetAttr \".tgi[0].ni[28].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[29].x\" -930;\n\tsetAttr \".tgi[0].ni[29].y\" -3218.571533203125;\n\tsetAttr \".tgi[0].ni[29].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[30].x\" -562.85711669921875;\n\tsetAttr \".tgi[0].ni[30].y\" -1695.7142333984375;\n\tsetAttr \".tgi[0].ni[30].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[31].x\" -4308.5712890625;\n\tsetAttr \".tgi[0].ni[31].y\" -1372.857177734375;\n\tsetAttr \".tgi[0].ni[31].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[32].x\" -930;\n\tsetAttr \".tgi[0].ni[32].y\" -2407.142822265625;\n\tsetAttr \".tgi[0].ni[32].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[33].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[33].y\" -1654.2857666015625;\n\tsetAttr \".tgi[0].ni[33].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[34].x\" -930;\n\tsetAttr \".tgi[0].ni[34].y\" -2914.28564453125;\n\tsetAttr \".tgi[0].ni[34].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[35].x\" -930;\n\tsetAttr \".tgi[0].ni[35].y\" -4955.71435546875;\n\tsetAttr \".tgi[0].ni[35].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[36].x\" -930;\n\tsetAttr \".tgi[0].ni[36].y\" -4188.5712890625;\n\tsetAttr \".tgi[0].ni[36].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[37].x\" -930;\n\tsetAttr \".tgi[0].ni[37].y\" -1900;\n\tsetAttr \".tgi[0].ni[37].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[38].x\" -930;\n\tsetAttr \".tgi[0].ni[38].y\" -3320;\n\tsetAttr \".tgi[0].ni[38].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[39].x\" -3080;\n\tsetAttr \".tgi[0].ni[39].y\" -1034.2857666015625;\n\tsetAttr \".tgi[0].ni[39].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[40].x\" -562.85711669921875;\n\tsetAttr \".tgi[0].ni[40].y\" -1140;\n\tsetAttr \".tgi[0].ni[40].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[41].x\" -1851.4285888671875;\n\tsetAttr \".tgi[0].ni[41].y\" -1101.4285888671875;\n\tsetAttr \".tgi[0].ni[41].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[42].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[42].y\" -1451.4285888671875;\n\tsetAttr \".tgi[0].ni[42].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[43].x\" -3387.142822265625;\n\tsetAttr \".tgi[0].ni[43].y\" -1265.7142333984375;\n\tsetAttr \".tgi[0].ni[43].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[44].x\" -930;\n\tsetAttr \".tgi[0].ni[44].y\" -2204.28564453125;\n\tsetAttr \".tgi[0].ni[44].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[45].x\" -930;\n\tsetAttr \".tgi[0].ni[45].y\" -1798.5714111328125;\n\tsetAttr \".tgi[0].ni[45].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[46].x\" -1462.857177734375;\n\tsetAttr \".tgi[0].ni[46].y\" -2077.142822265625;\n\tsetAttr \".tgi[0].ni[46].nvs\" 18304;\ncreateNode animCurveTU -n \"character_set_blendShape1_target16\";\n\trename -uid \"C3C536D2-484C-319F-0E38-52AFC830EE6D\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  40 0 64 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target17\";\n\trename -uid \"6FBF34BE-48A7-3FC3-14CD-8AB5DF41AB09\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  40 0 64 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target18\";\n\trename -uid \"3A4A9D12-48DD-9E04-E35C-908112F36AFE\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  40 0 64 0;\ncreateNode animCurveTA -n \"character_set_joint1_rotateZ1\";\n\trename -uid \"F2965E60-4AA4-C281-9631-D88333C4CDDA\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  40 -36 64 -36;\ncreateNode animClip -n \"clip_rot_debugSource\";\n\trename -uid \"93B69E61-4F1F-51B9-BB6B-2FA4C40F8CEE\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ss\" 266;\n\tsetAttr \".se\" 290;\n\tsetAttr \".ci\" no;\ncreateNode animCurveTU -n \"character_set_blendShape1_target19\";\n\trename -uid \"CD0DC7D3-4088-94FF-E8EE-46B1BAC2E7D1\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 40 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target20\";\n\trename -uid \"B9225036-43BE-7539-B283-578F929E7E73\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 40 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target21\";\n\trename -uid \"2A34048A-4B3D-9E12-D263-07BF9FDD22BF\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 40 0;\ncreateNode animCurveTA -n \"character_set_joint1_rotateZ2\";\n\trename -uid \"9D0325FF-42B8-2706-30F6-E29FD572B839\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 40 -36;\ncreateNode skinCluster -n \"skinCluster1\";\n\trename -uid \"FA4BE39A-4783-F131-0D4A-AAB7F3CE6728\";\n\tsetAttr -s 24 \".wl\";\n\tsetAttr \".wl[0:23].w\"\n\t\t4 0 0.91727462321159092 1 0.068227038090118319 2 0.011324378064340626 \n\t\t3 0.0031739606339501398\n\t\t4 0 0.91727462321159092 1 0.068227038090118319 2 0.011324378064340626 \n\t\t3 0.0031739606339501398\n\t\t4 0 0.67431371499774473 1 0.29969498444344228 2 0.022291362479264297 \n\t\t3 0.0036999380795486691\n\t\t4 0 0.67431371499774473 1 0.29969498444344228 2 0.022291362479264297 \n\t\t3 0.0036999380795486691\n\t\t4 0 0.23124701385570956 1 0.52030578117534632 2 0.23124701385570956 \n\t\t3 0.017200191113234592\n\t\t4 0 0.23124701385570956 1 0.52030578117534632 2 0.23124701385570956 \n\t\t3 0.017200191113234592\n\t\t4 0 0.017200191113234592 1 0.23124701385570956 2 0.52030578117534632 \n\t\t3 0.23124701385570956\n\t\t4 0 0.017200191113234592 1 0.23124701385570956 2 0.52030578117534632 \n\t\t3 0.23124701385570956\n\t\t4 1 0.017200191113234592 2 0.23124701385570956 3 0.52030578117534632 \n\t\t4 0.23124701385570956\n\t\t4 1 0.017200191113234592 2 0.23124701385570956 3 0.52030578117534632 \n\t\t4 0.23124701385570956\n\t\t4 1 0.0059162918052024236 2 0.03564443575200469 3 0.47921963622139652 \n\t\t4 0.47921963622139641\n\t\t4 1 0.0059162918052024236 2 0.03564443575200469 3 0.47921963622139652 \n\t\t4 0.47921963622139641\n\t\t4 1 0.0059162918052024236 2 0.03564443575200469 3 0.47921963622139652 \n\t\t4 0.47921963622139641\n\t\t4 1 0.0059162918052024236 2 0.03564443575200469 3 0.47921963622139652 \n\t\t4 0.47921963622139641\n\t\t4 1 0.017200191113234592 2 0.23124701385570956 3 0.52030578117534632 \n\t\t4 0.23124701385570956\n\t\t4 1 0.017200191113234592 2 0.23124701385570956 3 0.52030578117534632 \n\t\t4 0.23124701385570956\n\t\t4 0 0.017200191113234592 1 0.23124701385570956 2 0.52030578117534632 \n\t\t3 0.23124701385570956\n\t\t4 0 0.017200191113234592 1 0.23124701385570956 2 0.52030578117534632 \n\t\t3 0.23124701385570956\n\t\t4 0 0.23124701385570956 1 0.52030578117534632 2 0.23124701385570956 \n\t\t3 0.017200191113234592\n\t\t4 0 0.23124701385570956 1 0.52030578117534632 2 0.23124701385570956 \n\t\t3 0.017200191113234592\n\t\t4 0 0.67431371499774473 1 0.29969498444344228 2 0.022291362479264297 \n\t\t3 0.0036999380795486691\n\t\t4 0 0.67431371499774473 1 0.29969498444344228 2 0.022291362479264297 \n\t\t3 0.0036999380795486691\n\t\t4 0 0.91727462321159092 1 0.068227038090118319 2 0.011324378064340626 \n\t\t3 0.0031739606339501398\n\t\t4 0 0.91727462321159092 1 0.068227038090118319 2 0.011324378064340626 \n\t\t3 0.0031739606339501398;\n\tsetAttr -s 5 \".pm\";\n\tsetAttr \".pm[0]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -0.5 -1.1102230246251565e-16 0 1;\n\tsetAttr \".pm[1]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -1.5 -3.3306690738754696e-16 0 1;\n\tsetAttr \".pm[2]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -2.5 -5.5511151231257827e-16 0 1;\n\tsetAttr \".pm[3]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -3.5 -7.7715611723760958e-16 0 1;\n\tsetAttr \".pm[4]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 -4.5 0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 2.5 0 1;\n\tsetAttr -s 5 \".ma\";\n\tsetAttr -s 5 \".dpf[0:4]\"  4 4 4 4 4;\n\tsetAttr -s 5 \".lw\";\n\tsetAttr -s 5 \".lw\";\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".mi\" 4;\n\tsetAttr \".ucm\" yes;\n\tsetAttr -s 5 \".ifcl\";\n\tsetAttr -s 5 \".ifcl\";\ncreateNode objectSet -n \"skinCluster1Set\";\n\trename -uid \"764341C3-4A70-84DE-CB20-BB82AE68CFFD\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster1GroupId\";\n\trename -uid \"7F3A925E-47E2-BDAB-A4F6-70A2CC0D835D\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster1GroupParts\";\n\trename -uid \"551A9AF1-47D4-8440-29B8-A4ACC4B60092\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode dagPose -n \"bindPose1\";\n\trename -uid \"0059FEE5-4A34-C255-A363-FEAD991D2541\";\n\tsetAttr -s 5 \".wm\";\n\tsetAttr -s 5 \".xm\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 0 0.5 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0.70710678118654746 0.70710678118654757 1 1 1 yes;\n\tsetAttr \".xm[1]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 2.2204460492503131e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[2]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 2.2204460492503131e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[3]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 2.2204460492503131e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[4]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 2.2204460492503131e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -0.70710678118654746 0.70710678118654757 1\n\t\t 1 1 yes;\n\tsetAttr -s 5 \".m\";\n\tsetAttr -s 5 \".p\";\n\tsetAttr \".bp\" yes;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"9516710D-4B9F-15D6-4232-2080FC2D45B1\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\ncreateNode aiOptions -s -n \"defaultArnoldRenderOptions\";\n\trename -uid \"AC204686-4476-942F-0C0C-C3AC8952545B\";\n\tsetAttr \".version\" -type \"string\" \"2.1.0.1\";\ncreateNode aiAOVFilter -s -n \"defaultArnoldFilter\";\n\trename -uid \"94758C30-4C10-7E24-7DB7-52BF3CCFC141\";\n\tsetAttr \".ai_translator\" -type \"string\" \"gaussian\";\ncreateNode aiAOVDriver -s -n \"defaultArnoldDriver\";\n\trename -uid \"38AEB512-4A52-D3A6-65A7-9BA915DDA541\";\n\tsetAttr \".ai_translator\" -type \"string\" \"exr\";\ncreateNode aiAOVDriver -s -n \"defaultArnoldDisplayDriver\";\n\trename -uid \"E75643D0-41EB-7B5A-1E85-3E9F47ACCDB8\";\n\tsetAttr \".output_mode\" 0;\n\tsetAttr \".ai_translator\" -type \"string\" \"maya\";\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".macc\";\n\tsetAttr -k on \".macd\";\n\tsetAttr -k on \".macq\";\n\tsetAttr -cb on \".ifg\";\n\tsetAttr -k on \".clip\";\n\tsetAttr -k on \".edm\";\n\tsetAttr -k on \".edl\";\n\tsetAttr \".ren\" -type \"string\" \"arnold\";\n\tsetAttr -av -k on \".esr\";\n\tsetAttr -k on \".ors\";\n\tsetAttr -cb on \".sdf\";\n\tsetAttr \".outf\" 51;\n\tsetAttr -cb on \".imfkey\" -type \"string\" \"exr\";\n\tsetAttr -k on \".gama\";\n\tsetAttr -cb on \".ar\";\n\tsetAttr -av \".bfs\";\n\tsetAttr -k on \".be\";\n\tsetAttr -k on \".fec\";\n\tsetAttr -k on \".ofc\";\n\tsetAttr -cb on \".ofe\";\n\tsetAttr -cb on \".efe\";\n\tsetAttr -cb on \".umfn\";\n\tsetAttr -cb on \".ufe\";\n\tsetAttr -k on \".comp\";\n\tsetAttr -k on \".cth\";\n\tsetAttr -k on \".soll\";\n\tsetAttr -k on \".rd\";\n\tsetAttr -k on \".lp\";\n\tsetAttr -k on \".sp\";\n\tsetAttr -k on \".shs\";\n\tsetAttr -k on \".lpr\";\n\tsetAttr -cb on \".gv\";\n\tsetAttr -cb on \".sv\";\n\tsetAttr -k on \".mm\";\n\tsetAttr -k on \".npu\";\n\tsetAttr -k on \".itf\";\n\tsetAttr -k on \".shp\";\n\tsetAttr -cb on \".isp\";\n\tsetAttr -k on \".uf\";\n\tsetAttr -k on \".oi\";\n\tsetAttr -k on \".rut\";\n\tsetAttr -av -k on \".mbf\";\n\tsetAttr -k on \".afp\";\n\tsetAttr -k on \".pfb\";\n\tsetAttr -cb on \".pfrm\";\n\tsetAttr -cb on \".pfom\";\n\tsetAttr -av -k on \".bll\";\n\tsetAttr -k on \".bls\";\n\tsetAttr -k on \".smv\";\n\tsetAttr -k on \".ubc\";\n\tsetAttr -k on \".mbc\";\n\tsetAttr -k on \".udbx\";\n\tsetAttr -k on \".smc\";\n\tsetAttr -k on \".kmv\";\n\tsetAttr -cb on \".isl\";\n\tsetAttr -cb on \".ism\";\n\tsetAttr -cb on \".imb\";\n\tsetAttr -k on \".rlen\";\n\tsetAttr -av -k on \".frts\";\n\tsetAttr -k on \".tlwd\";\n\tsetAttr -k on \".tlht\";\n\tsetAttr -k on \".jfc\";\n\tsetAttr -cb on \".rsb\";\n\tsetAttr -k on \".ope\";\n\tsetAttr -k on \".oppf\";\n\tsetAttr -cb on \".hbl\";\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nselect -ne :characterPartition;\nconnectAttr \"blendShape1GroupId.id\" \"characterShape.iog.og[0].gid\";\nconnectAttr \"blendShape1Set.mwc\" \"characterShape.iog.og[0].gco\";\nconnectAttr \"groupId2.id\" \"characterShape.iog.og[1].gid\";\nconnectAttr \"tweakSet1.mwc\" \"characterShape.iog.og[1].gco\";\nconnectAttr \"skinCluster1GroupId.id\" \"characterShape.iog.og[4].gid\";\nconnectAttr \"skinCluster1Set.mwc\" \"characterShape.iog.og[4].gco\";\nconnectAttr \"skinCluster1.og[0]\" \"characterShape.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"characterShape.twl\";\nconnectAttr \"polyCube1.out\" \"characterShapeOrig.i\";\nconnectAttr \"character_set.av[1]\" \"joint1.rz\";\nconnectAttr \"joint1_rotateX.o\" \"joint1.rx\";\nconnectAttr \"joint1.s\" \"joint2.is\";\nconnectAttr \"joint1.rz\" \"joint2.rz\";\nconnectAttr \"pairBlend7.ory\" \"joint2.ry\";\nconnectAttr \"pairBlend7.orx\" \"joint2.rx\";\nconnectAttr \"joint2.s\" \"joint3.is\";\nconnectAttr \"joint2.rz\" \"joint3.rz\";\nconnectAttr \"pairBlend6.ory\" \"joint3.ry\";\nconnectAttr \"pairBlend6.orx\" \"joint3.rx\";\nconnectAttr \"joint3.s\" \"joint4.is\";\nconnectAttr \"joint3.rz\" \"joint4.rz\";\nconnectAttr \"pairBlend5.ory\" \"joint4.ry\";\nconnectAttr \"pairBlend5.orx\" \"joint4.rx\";\nconnectAttr \"joint4.s\" \"joint5.is\";\nconnectAttr \"joint4.rz\" \"joint5.rz\";\nconnectAttr \"pairBlend8.ory\" \"joint5.ry\";\nconnectAttr \"pairBlend8.orx\" \"joint5.rx\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"blendShape1.mlpr\" \"shapeEditorManager.bspr[0]\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"blendShape1GroupParts.og\" \"blendShape1.ip[0].ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1.ip[0].gi\";\nconnectAttr \"targetShape3.w\" \"blendShape1.it[0].itg[0].iti[6000].igt\";\nconnectAttr \"targetShape2.w\" \"blendShape1.it[0].itg[1].iti[6000].igt\";\nconnectAttr \"target1Shape.w\" \"blendShape1.it[0].itg[2].iti[6000].igt\";\nconnectAttr \"shapeEditorManager.obsv[0]\" \"blendShape1.tgdt[0].dpvs\";\nconnectAttr \"character_set.uv[21]\" \"blendShape1.w[0]\";\nconnectAttr \"character_set.uv[23]\" \"blendShape1.w[1]\";\nconnectAttr \"character_set.uv[22]\" \"blendShape1.w[2]\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"blendShape1GroupId.msg\" \"blendShape1Set.gn\" -na;\nconnectAttr \"characterShape.iog.og[0]\" \"blendShape1Set.dsm\" -na;\nconnectAttr \"blendShape1.msg\" \"blendShape1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"blendShape1GroupParts.ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"characterShape.iog.og[1]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"characterShapeOrig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"character_set_joint1_rotateZ2.o\" \"character_set.av[1]\";\nconnectAttr \"character_set_blendShape1_target19.o\" \"character_set.uv[21]\";\nconnectAttr \"character_set_blendShape1_target20.o\" \"character_set.uv[22]\";\nconnectAttr \"character_set_blendShape1_target21.o\" \"character_set.uv[23]\";\nconnectAttr \"blendShape1.w[0]\" \"character_set.dnsm[50]\";\nconnectAttr \"blendShape1.w[2]\" \"character_set.dnsm[51]\";\nconnectAttr \"blendShape1.w[1]\" \"character_set.dnsm[52]\";\nconnectAttr \"joint1.rz\" \"character_set.dnsm[53]\";\nconnectAttr \"character_setScheduler1.ce\" \"character_set.cer\";\nconnectAttr \"character_setClips1.cf\" \"character_setScheduler1.cfr\";\nconnectAttr \"character_set.am\" \"character_setClips1.cd[0].cm\";\nconnectAttr \"character_set.cim\" \"character_setClips1.cd[0].cim\";\nconnectAttr \"character_set_blendShape1_target3.a\" \"character_setClips1.cel[0].cev[0].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target1.a\" \"character_setClips1.cel[0].cev[1].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target2.a\" \"character_setClips1.cel[0].cev[2].cevr\"\n\t\t;\nconnectAttr \"character_set_joint1_rotateZ.a\" \"character_setClips1.cel[0].cev[3].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target4.a\" \"character_setClips1.cel[1].cev[0].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target5.a\" \"character_setClips1.cel[1].cev[1].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target6.a\" \"character_setClips1.cel[1].cev[2].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target7.a\" \"character_setClips1.cel[2].cev[0].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target8.a\" \"character_setClips1.cel[2].cev[1].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target9.a\" \"character_setClips1.cel[2].cev[2].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target10.a\" \"character_setClips1.cel[3].cev[0].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target11.a\" \"character_setClips1.cel[3].cev[1].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target12.a\" \"character_setClips1.cel[3].cev[2].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target13.a\" \"character_setClips1.cel[4].cev[0].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target14.a\" \"character_setClips1.cel[4].cev[1].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target15.a\" \"character_setClips1.cel[4].cev[2].cevr\"\n\t\t;\nconnectAttr \"joint1_rotateZ.a\" \"character_setClips1.cel[4].cev[3].cevr\";\nconnectAttr \"character_set_blendShape1_target16.a\" \"character_setClips1.cel[5].cev[0].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target17.a\" \"character_setClips1.cel[5].cev[1].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target18.a\" \"character_setClips1.cel[5].cev[2].cevr\"\n\t\t;\nconnectAttr \"character_set_joint1_rotateZ1.a\" \"character_setClips1.cel[5].cev[3].cevr\"\n\t\t;\nconnectAttr \"setupSource.cl\" \"character_setClips1.sc[0]\";\nconnectAttr \"clip_target1Source.cl\" \"character_setClips1.sc[1]\";\nconnectAttr \"clip_target2Source.cl\" \"character_setClips1.sc[2]\";\nconnectAttr \"clip_target3Source.cl\" \"character_setClips1.sc[3]\";\nconnectAttr \"clip_joint_rot_zSource.cl\" \"character_setClips1.sc[4]\";\nconnectAttr \"clip_rot_debugSource.cl\" \"character_setClips1.sc[5]\";\nconnectAttr \"joint1.rz\" \"pairBlend1.irz2\";\nconnectAttr \"joint2.blendCharacterset\" \"pairBlend1.w\";\nconnectAttr \"pairBlend1_inRotateZ1.o\" \"pairBlend1.irz1\";\nconnectAttr \"joint2.rz\" \"pairBlend2.irz2\";\nconnectAttr \"joint3.blendCharacterset\" \"pairBlend2.w\";\nconnectAttr \"pairBlend2_inRotateZ1.o\" \"pairBlend2.irz1\";\nconnectAttr \"joint3.rz\" \"pairBlend3.irz2\";\nconnectAttr \"joint4.blendCharacterset\" \"pairBlend3.w\";\nconnectAttr \"pairBlend3_inRotateZ1.o\" \"pairBlend3.irz1\";\nconnectAttr \"joint4.rz\" \"pairBlend4.irz2\";\nconnectAttr \"joint5.blendCharacterset\" \"pairBlend4.w\";\nconnectAttr \"pairBlend4_inRotateZ1.o\" \"pairBlend4.irz1\";\nconnectAttr \"pairBlend3.orx\" \"pairBlend5.irx2\";\nconnectAttr \"pairBlend3.ory\" \"pairBlend5.iry2\";\nconnectAttr \"joint3.rz\" \"pairBlend5.irz2\";\nconnectAttr \"joint4.blendPairBlend3\" \"pairBlend5.w\";\nconnectAttr \"pairBlend5_inRotateZ1.o\" \"pairBlend5.irz1\";\nconnectAttr \"pairBlend2.orx\" \"pairBlend6.irx2\";\nconnectAttr \"pairBlend2.ory\" \"pairBlend6.iry2\";\nconnectAttr \"joint2.rz\" \"pairBlend6.irz2\";\nconnectAttr \"joint3.blendPairBlend2\" \"pairBlend6.w\";\nconnectAttr \"pairBlend6_inRotateZ1.o\" \"pairBlend6.irz1\";\nconnectAttr \"pairBlend1.orx\" \"pairBlend7.irx2\";\nconnectAttr \"pairBlend1.ory\" \"pairBlend7.iry2\";\nconnectAttr \"joint1.rz\" \"pairBlend7.irz2\";\nconnectAttr \"joint2.blendPairBlend1\" \"pairBlend7.w\";\nconnectAttr \"pairBlend7_inRotateZ1.o\" \"pairBlend7.irz1\";\nconnectAttr \"pairBlend4.orx\" \"pairBlend8.irx2\";\nconnectAttr \"pairBlend4.ory\" \"pairBlend8.iry2\";\nconnectAttr \"joint4.rz\" \"pairBlend8.irz2\";\nconnectAttr \"joint5.blendPairBlend4\" \"pairBlend8.w\";\nconnectAttr \"pairBlend8_inRotateZ1.o\" \"pairBlend8.irz1\";\nconnectAttr \"character_set_blendShape1_target7.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[0].dn\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target3.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[1].dn\"\n\t\t;\nconnectAttr \"pairBlend5.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[2].dn\";\nconnectAttr \"character_setScheduler1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[5].dn\"\n\t\t;\nconnectAttr \"joint5.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[7].dn\";\nconnectAttr \"pairBlend6.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[8].dn\";\nconnectAttr \"pairBlend2.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[9].dn\";\nconnectAttr \"character_setClips1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[11].dn\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target9.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[13].dn\"\n\t\t;\nconnectAttr \"joint3.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[15].dn\";\nconnectAttr \"joint4.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[16].dn\";\nconnectAttr \"character_set_blendShape1_target6.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[17].dn\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target2.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[19].dn\"\n\t\t;\nconnectAttr \"joint1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[20].dn\";\nconnectAttr \"pairBlend4.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[22].dn\";\nconnectAttr \"pairBlend1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[23].dn\";\nconnectAttr \"character_set_blendShape1_target11.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[24].dn\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target8.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[25].dn\"\n\t\t;\nconnectAttr \"joint1_rotateX.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[26].dn\";\nconnectAttr \"joint1_rotateZ.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[27].dn\";\nconnectAttr \"characterShape.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[28].dn\";\nconnectAttr \"character_set_blendShape1_target15.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[29].dn\"\n\t\t;\nconnectAttr \"character_set.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[31].dn\";\nconnectAttr \"character_set_blendShape1_target5.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[32].dn\"\n\t\t;\nconnectAttr \"character_set_joint1_rotateZ.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[34].dn\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target4.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[35].dn\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target13.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[36].dn\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target12.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[37].dn\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[38].dn\"\n\t\t;\nconnectAttr \"joint2.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[39].dn\";\nconnectAttr \"pairBlend8.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[40].dn\";\nconnectAttr \"pairBlend3.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[41].dn\";\nconnectAttr \"pairBlend7.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[43].dn\";\nconnectAttr \"character_set_blendShape1_target10.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[44].dn\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target14.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[45].dn\"\n\t\t;\nconnectAttr \"maya2glTF_scriptNode.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[46].dn\"\n\t\t;\nconnectAttr \"skinCluster1GroupParts.og\" \"skinCluster1.ip[0].ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1.ip[0].gi\";\nconnectAttr \"bindPose1.msg\" \"skinCluster1.bp\";\nconnectAttr \"joint1.wm\" \"skinCluster1.ma[0]\";\nconnectAttr \"joint2.wm\" \"skinCluster1.ma[1]\";\nconnectAttr \"joint3.wm\" \"skinCluster1.ma[2]\";\nconnectAttr \"joint4.wm\" \"skinCluster1.ma[3]\";\nconnectAttr \"joint5.wm\" \"skinCluster1.ma[4]\";\nconnectAttr \"joint1.liw\" \"skinCluster1.lw[0]\";\nconnectAttr \"joint2.liw\" \"skinCluster1.lw[1]\";\nconnectAttr \"joint3.liw\" \"skinCluster1.lw[2]\";\nconnectAttr \"joint4.liw\" \"skinCluster1.lw[3]\";\nconnectAttr \"joint5.liw\" \"skinCluster1.lw[4]\";\nconnectAttr \"joint1.obcc\" \"skinCluster1.ifcl[0]\";\nconnectAttr \"joint2.obcc\" \"skinCluster1.ifcl[1]\";\nconnectAttr \"joint3.obcc\" \"skinCluster1.ifcl[2]\";\nconnectAttr \"joint4.obcc\" \"skinCluster1.ifcl[3]\";\nconnectAttr \"joint5.obcc\" \"skinCluster1.ifcl[4]\";\nconnectAttr \"skinCluster1GroupId.msg\" \"skinCluster1Set.gn\" -na;\nconnectAttr \"characterShape.iog.og[4]\" \"skinCluster1Set.dsm\" -na;\nconnectAttr \"skinCluster1.msg\" \"skinCluster1Set.ub[0]\";\nconnectAttr \"blendShape1.og[0]\" \"skinCluster1GroupParts.ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1GroupParts.gi\";\nconnectAttr \"joint1.msg\" \"bindPose1.m[0]\";\nconnectAttr \"joint2.msg\" \"bindPose1.m[1]\";\nconnectAttr \"joint3.msg\" \"bindPose1.m[2]\";\nconnectAttr \"joint4.msg\" \"bindPose1.m[3]\";\nconnectAttr \"joint5.msg\" \"bindPose1.m[4]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[0]\";\nconnectAttr \"bindPose1.m[0]\" \"bindPose1.p[1]\";\nconnectAttr \"bindPose1.m[1]\" \"bindPose1.p[2]\";\nconnectAttr \"bindPose1.m[2]\" \"bindPose1.p[3]\";\nconnectAttr \"bindPose1.m[3]\" \"bindPose1.p[4]\";\nconnectAttr \"joint1.bps\" \"bindPose1.wm[0]\";\nconnectAttr \"joint2.bps\" \"bindPose1.wm[1]\";\nconnectAttr \"joint3.bps\" \"bindPose1.wm[2]\";\nconnectAttr \"joint4.bps\" \"bindPose1.wm[3]\";\nconnectAttr \"joint5.bps\" \"bindPose1.wm[4]\";\nconnectAttr \":defaultArnoldDisplayDriver.msg\" \":defaultArnoldRenderOptions.drivers\"\n\t\t -na;\nconnectAttr \":defaultArnoldFilter.msg\" \":defaultArnoldRenderOptions.filt\";\nconnectAttr \":defaultArnoldDriver.msg\" \":defaultArnoldRenderOptions.drvr\";\nconnectAttr \"trackInfoManager1.msg\" \":sequenceManager1.tim\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"characterShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"target1Shape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"targetShape2.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"targetShape3.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"character_set.pa\" \":characterPartition.st\" -na;\n// End of ComplexAnim1.ma\n"
  },
  {
    "path": "maya/scenes/complex/ComplexAnim2.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: Complex1.ma\n//Last modified: Sun, Feb 03, 2019 11:55:48 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires -nodeType \"aiOptions\" -nodeType \"aiAOVDriver\" -nodeType \"aiAOVFilter\" \"mtoa\" \"2.1.0.1\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"811D66CC-428E-11CE-4D28-B5BB1C7CB028\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -13.122390860867784 3.2238160445829411 3.8124069696161076 ;\n\tsetAttr \".r\" -type \"double3\" -0.93835272960183613 -73.799999999999301 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"F0656A63-4F39-C37B-DF60-A8944B9E2774\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 13.666809519018694;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0 3 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"47775968-481D-959C-DEC2-C4912A1B5C1A\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"EB095155-4DB1-0744-A568-14BA62C44391\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"front\";\n\trename -uid \"D2B058DF-4F52-A165-3820-02ACBF177175\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 2.5 1000.1031246826499 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"C0076C6D-486D-29FF-8F70-71ABAEEFAFEB\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1031246826499;\n\tsetAttr \".ow\" 11.922400202201116;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0 2.5 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"side\";\n\trename -uid \"16C0B8E8-4BA7-F9BB-4576-23BDBB79EA1F\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"38CC8E14-4B71-AE99-14B3-67A7483C201E\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -n \"character\";\n\trename -uid \"308473CD-49C6-7C12-3686-70A190B85479\";\n\tsetAttr \".t\" -type \"double3\" 0 2.5 0 ;\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\n\tsetAttr \".rp\" -type \"double3\" 0 -2.5 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0 -2.5 0 ;\ncreateNode mesh -n \"characterShape\" -p \"character\";\n\trename -uid \"58FFE630-426C-2EEC-EB41-73B726FBAFC3\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 6 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode mesh -n \"characterShapeOrig\" -p \"character\";\n\trename -uid \"BB1EBB54-47C9-CA20-0ED8-C4BDF9550EE1\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"target1\";\n\trename -uid \"1862B60C-4CCB-46C8-6EE3-E1A3BB6F4E93\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1.5 2.5 0 ;\n\tsetAttr \".rp\" -type \"double3\" 0 -2.5 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0 -2.5 0 ;\ncreateNode mesh -n \"target1Shape\" -p \"target1\";\n\trename -uid \"4BEAC819-49DA-ADB7-DC45-B9B58D389E94\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.3750000074505806 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 38 \".uvst[0].uvsp[0:37]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.050000001 0.625 0.050000001 0.375 0.1 0.625 0.1 0.375 0.15000001 0.625 0.15000001\n\t\t 0.375 0.2 0.625 0.2 0.375 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.55000001 0.625\n\t\t 0.55000001 0.375 0.60000002 0.625 0.60000002 0.375 0.65000004 0.625 0.65000004 0.375\n\t\t 0.70000005 0.625 0.70000005 0.375 0.75000006 0.625 0.75000006 0.375 1 0.625 1 0.875\n\t\t 0 0.875 0.050000001 0.875 0.1 0.875 0.15000001 0.875 0.2 0.875 0.25 0.125 0 0.125\n\t\t 0.050000001 0.125 0.1 0.125 0.15000001 0.125 0.2 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".pt[8:15]\" -type \"float3\"  -0.25000018 -2.0861626e-07 \n\t\t0.25000018 0.25000018 -2.0861626e-07 0.25000018 -0.25000018 1.7881393e-07 0.25000018 \n\t\t0.25000018 1.7881393e-07 0.25000018 -0.25000018 1.7881393e-07 -0.25000018 0.25000018 \n\t\t1.7881393e-07 -0.25000018 -0.25000018 -2.0861626e-07 -0.25000018 0.25000018 -2.0861626e-07 \n\t\t-0.25000018;\n\tsetAttr -s 24 \".vt[0:23]\"  -0.5 -2.5 0.5 0.5 -2.5 0.5 -0.5 -1.5 0.5\n\t\t 0.5 -1.5 0.5 -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5 -0.5 1.5 0.5 0.5 1.5 0.5\n\t\t -0.5 2.5 0.5 0.5 2.5 0.5 -0.5 2.5 -0.5 0.5 2.5 -0.5 -0.5 1.5 -0.5 0.5 1.5 -0.5 -0.5 0.5 -0.5\n\t\t 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5 -0.5 -1.5 -0.5 0.5 -1.5 -0.5 -0.5 -2.5 -0.5\n\t\t 0.5 -2.5 -0.5;\n\tsetAttr -s 44 \".ed[0:43]\"  0 1 0 2 3 1 4 5 1 6 7 1 8 9 1 10 11 0 12 13 0\n\t\t 14 15 1 16 17 1 18 19 1 20 21 1 22 23 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 8 0\n\t\t 7 9 0 8 10 0 9 11 0 10 12 0 11 13 0 12 14 0 13 15 0 14 16 0 15 17 0 16 18 0 17 19 0\n\t\t 18 20 0 19 21 0 20 22 0 21 23 0 22 0 0 23 1 0 21 3 1 19 5 1 17 7 1 15 9 1 20 2 1\n\t\t 18 4 1 16 6 1 14 8 1;\n\tsetAttr -s 22 -ch 88 \".fc[0:21]\" -type \"polyFaces\" \n\t\tf 4 0 13 -2 -13\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 15 -3 -15\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 17 -4 -17\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 19 -5 -19\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 4 21 -6 -21\n\t\tmu 0 4 8 9 11 10\n\t\tf 4 5 23 -7 -23\n\t\tmu 0 4 10 11 13 12\n\t\tf 4 6 25 -8 -25\n\t\tmu 0 4 12 13 15 14\n\t\tf 4 7 27 -9 -27\n\t\tmu 0 4 14 15 17 16\n\t\tf 4 8 29 -10 -29\n\t\tmu 0 4 16 17 19 18\n\t\tf 4 9 31 -11 -31\n\t\tmu 0 4 18 19 21 20\n\t\tf 4 10 33 -12 -33\n\t\tmu 0 4 20 21 23 22\n\t\tf 4 11 35 -1 -35\n\t\tmu 0 4 22 23 25 24\n\t\tf 4 -36 -34 36 -14\n\t\tmu 0 4 1 26 27 3\n\t\tf 4 -37 -32 37 -16\n\t\tmu 0 4 3 27 28 5\n\t\tf 4 -38 -30 38 -18\n\t\tmu 0 4 5 28 29 7\n\t\tf 4 -39 -28 39 -20\n\t\tmu 0 4 7 29 30 9\n\t\tf 4 -40 -26 -24 -22\n\t\tmu 0 4 9 30 31 11\n\t\tf 4 34 12 -41 32\n\t\tmu 0 4 32 0 2 33\n\t\tf 4 40 14 -42 30\n\t\tmu 0 4 33 2 4 34\n\t\tf 4 41 16 -43 28\n\t\tmu 0 4 34 4 6 35\n\t\tf 4 42 18 -44 26\n\t\tmu 0 4 35 6 8 36\n\t\tf 4 43 20 22 24\n\t\tmu 0 4 36 8 10 37;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"target2\";\n\trename -uid \"6461DEC0-45A5-45D4-85F3-3AB9838E5E98\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 3 2.5 0 ;\n\tsetAttr \".rp\" -type \"double3\" 0 -2.5 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0 -2.5 0 ;\ncreateNode mesh -n \"targetShape2\" -p \"target2\";\n\trename -uid \"1E5E3C1A-457B-D780-7DFF-F28CCD21310E\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.37500001490116119 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 38 \".uvst[0].uvsp[0:37]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.050000001 0.625 0.050000001 0.375 0.1 0.625 0.1 0.375 0.15000001 0.625 0.15000001\n\t\t 0.375 0.2 0.625 0.2 0.375 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.55000001 0.625\n\t\t 0.55000001 0.375 0.60000002 0.625 0.60000002 0.375 0.65000004 0.625 0.65000004 0.375\n\t\t 0.70000005 0.625 0.70000005 0.375 0.75000006 0.625 0.75000006 0.375 1 0.625 1 0.875\n\t\t 0 0.875 0.050000001 0.875 0.1 0.875 0.15000001 0.875 0.2 0.875 0.25 0.125 0 0.125\n\t\t 0.050000001 0.125 0.1 0.125 0.15000001 0.125 0.2 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".pt\";\n\tsetAttr \".pt[6]\" -type \"float3\" -0.25 0 0.25 ;\n\tsetAttr \".pt[7]\" -type \"float3\" 0.25 0 0.25 ;\n\tsetAttr \".pt[8]\" -type \"float3\" -0.25 0 0.25 ;\n\tsetAttr \".pt[9]\" -type \"float3\" 0.25 0 0.25 ;\n\tsetAttr \".pt[14]\" -type \"float3\" -0.25 0 -0.25 ;\n\tsetAttr \".pt[15]\" -type \"float3\" 0.25 0 -0.25 ;\n\tsetAttr \".pt[16]\" -type \"float3\" -0.25 0 -0.25 ;\n\tsetAttr \".pt[17]\" -type \"float3\" 0.25 0 -0.25 ;\n\tsetAttr -s 24 \".vt[0:23]\"  -0.5 -2.5 0.5 0.5 -2.5 0.5 -0.5 -1.5 0.5\n\t\t 0.5 -1.5 0.5 -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5 -0.5 1.5 0.5 0.5 1.5 0.5\n\t\t -0.5 2.5 0.5 0.5 2.5 0.5 -0.5 2.5 -0.5 0.5 2.5 -0.5 -0.5 1.5 -0.5 0.5 1.5 -0.5 -0.5 0.5 -0.5\n\t\t 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5 -0.5 -1.5 -0.5 0.5 -1.5 -0.5 -0.5 -2.5 -0.5\n\t\t 0.5 -2.5 -0.5;\n\tsetAttr -s 44 \".ed[0:43]\"  0 1 0 2 3 1 4 5 1 6 7 1 8 9 1 10 11 0 12 13 0\n\t\t 14 15 1 16 17 1 18 19 1 20 21 1 22 23 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 8 0\n\t\t 7 9 0 8 10 0 9 11 0 10 12 0 11 13 0 12 14 0 13 15 0 14 16 0 15 17 0 16 18 0 17 19 0\n\t\t 18 20 0 19 21 0 20 22 0 21 23 0 22 0 0 23 1 0 21 3 1 19 5 1 17 7 1 15 9 1 20 2 1\n\t\t 18 4 1 16 6 1 14 8 1;\n\tsetAttr -s 22 -ch 88 \".fc[0:21]\" -type \"polyFaces\" \n\t\tf 4 0 13 -2 -13\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 15 -3 -15\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 17 -4 -17\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 19 -5 -19\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 4 21 -6 -21\n\t\tmu 0 4 8 9 11 10\n\t\tf 4 5 23 -7 -23\n\t\tmu 0 4 10 11 13 12\n\t\tf 4 6 25 -8 -25\n\t\tmu 0 4 12 13 15 14\n\t\tf 4 7 27 -9 -27\n\t\tmu 0 4 14 15 17 16\n\t\tf 4 8 29 -10 -29\n\t\tmu 0 4 16 17 19 18\n\t\tf 4 9 31 -11 -31\n\t\tmu 0 4 18 19 21 20\n\t\tf 4 10 33 -12 -33\n\t\tmu 0 4 20 21 23 22\n\t\tf 4 11 35 -1 -35\n\t\tmu 0 4 22 23 25 24\n\t\tf 4 -36 -34 36 -14\n\t\tmu 0 4 1 26 27 3\n\t\tf 4 -37 -32 37 -16\n\t\tmu 0 4 3 27 28 5\n\t\tf 4 -38 -30 38 -18\n\t\tmu 0 4 5 28 29 7\n\t\tf 4 -39 -28 39 -20\n\t\tmu 0 4 7 29 30 9\n\t\tf 4 -40 -26 -24 -22\n\t\tmu 0 4 9 30 31 11\n\t\tf 4 34 12 -41 32\n\t\tmu 0 4 32 0 2 33\n\t\tf 4 40 14 -42 30\n\t\tmu 0 4 33 2 4 34\n\t\tf 4 41 16 -43 28\n\t\tmu 0 4 34 4 6 35\n\t\tf 4 42 18 -44 26\n\t\tmu 0 4 35 6 8 36\n\t\tf 4 43 20 22 24\n\t\tmu 0 4 36 8 10 37;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"target3\";\n\trename -uid \"C30B2E7D-489D-A02B-AEC9-4989C22B2313\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 4.5 2.5 0 ;\n\tsetAttr \".rp\" -type \"double3\" 0 -2.5 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0 -2.5 0 ;\ncreateNode mesh -n \"targetShape3\" -p \"target3\";\n\trename -uid \"CFD8C8AE-41E1-3E62-8406-9ABE42EACB8A\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.37500001862645149 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 38 \".uvst[0].uvsp[0:37]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.050000001 0.625 0.050000001 0.375 0.1 0.625 0.1 0.375 0.15000001 0.625 0.15000001\n\t\t 0.375 0.2 0.625 0.2 0.375 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.55000001 0.625\n\t\t 0.55000001 0.375 0.60000002 0.625 0.60000002 0.375 0.65000004 0.625 0.65000004 0.375\n\t\t 0.70000005 0.625 0.70000005 0.375 0.75000006 0.625 0.75000006 0.375 1 0.625 1 0.875\n\t\t 0 0.875 0.050000001 0.875 0.1 0.875 0.15000001 0.875 0.2 0.875 0.25 0.125 0 0.125\n\t\t 0.050000001 0.125 0.1 0.125 0.15000001 0.125 0.2 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".pt\";\n\tsetAttr \".pt[4]\" -type \"float3\" -0.25 0 0.25 ;\n\tsetAttr \".pt[5]\" -type \"float3\" 0.25 0 0.25 ;\n\tsetAttr \".pt[6]\" -type \"float3\" -0.25 0 0.25 ;\n\tsetAttr \".pt[7]\" -type \"float3\" 0.25 0 0.25 ;\n\tsetAttr \".pt[16]\" -type \"float3\" -0.25 0 -0.25 ;\n\tsetAttr \".pt[17]\" -type \"float3\" 0.25 0 -0.25 ;\n\tsetAttr \".pt[18]\" -type \"float3\" -0.25 0 -0.25 ;\n\tsetAttr \".pt[19]\" -type \"float3\" 0.25 0 -0.25 ;\n\tsetAttr -s 24 \".vt[0:23]\"  -0.5 -2.5 0.5 0.5 -2.5 0.5 -0.5 -1.5 0.5\n\t\t 0.5 -1.5 0.5 -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5 -0.5 1.5 0.5 0.5 1.5 0.5\n\t\t -0.5 2.5 0.5 0.5 2.5 0.5 -0.5 2.5 -0.5 0.5 2.5 -0.5 -0.5 1.5 -0.5 0.5 1.5 -0.5 -0.5 0.5 -0.5\n\t\t 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5 -0.5 -1.5 -0.5 0.5 -1.5 -0.5 -0.5 -2.5 -0.5\n\t\t 0.5 -2.5 -0.5;\n\tsetAttr -s 44 \".ed[0:43]\"  0 1 0 2 3 1 4 5 1 6 7 1 8 9 1 10 11 0 12 13 0\n\t\t 14 15 1 16 17 1 18 19 1 20 21 1 22 23 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 8 0\n\t\t 7 9 0 8 10 0 9 11 0 10 12 0 11 13 0 12 14 0 13 15 0 14 16 0 15 17 0 16 18 0 17 19 0\n\t\t 18 20 0 19 21 0 20 22 0 21 23 0 22 0 0 23 1 0 21 3 1 19 5 1 17 7 1 15 9 1 20 2 1\n\t\t 18 4 1 16 6 1 14 8 1;\n\tsetAttr -s 22 -ch 88 \".fc[0:21]\" -type \"polyFaces\" \n\t\tf 4 0 13 -2 -13\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 15 -3 -15\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 17 -4 -17\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 19 -5 -19\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 4 21 -6 -21\n\t\tmu 0 4 8 9 11 10\n\t\tf 4 5 23 -7 -23\n\t\tmu 0 4 10 11 13 12\n\t\tf 4 6 25 -8 -25\n\t\tmu 0 4 12 13 15 14\n\t\tf 4 7 27 -9 -27\n\t\tmu 0 4 14 15 17 16\n\t\tf 4 8 29 -10 -29\n\t\tmu 0 4 16 17 19 18\n\t\tf 4 9 31 -11 -31\n\t\tmu 0 4 18 19 21 20\n\t\tf 4 10 33 -12 -33\n\t\tmu 0 4 20 21 23 22\n\t\tf 4 11 35 -1 -35\n\t\tmu 0 4 22 23 25 24\n\t\tf 4 -36 -34 36 -14\n\t\tmu 0 4 1 26 27 3\n\t\tf 4 -37 -32 37 -16\n\t\tmu 0 4 3 27 28 5\n\t\tf 4 -38 -30 38 -18\n\t\tmu 0 4 5 28 29 7\n\t\tf 4 -39 -28 39 -20\n\t\tmu 0 4 7 29 30 9\n\t\tf 4 -40 -26 -24 -22\n\t\tmu 0 4 9 30 31 11\n\t\tf 4 34 12 -41 32\n\t\tmu 0 4 32 0 2 33\n\t\tf 4 40 14 -42 30\n\t\tmu 0 4 33 2 4 34\n\t\tf 4 41 16 -43 28\n\t\tmu 0 4 34 4 6 35\n\t\tf 4 42 18 -44 26\n\t\tmu 0 4 35 6 8 36\n\t\tf 4 43 20 22 24\n\t\tmu 0 4 36 8 10 37;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode joint -n \"joint1\";\n\trename -uid \"657D87BB-4410-833E-2100-56AF3A81B2C2\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".t\" -type \"double3\" 0 0.5 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 89.999999999999986 ;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 0.5 0 1;\n\tsetAttr \".radi\" 2;\ncreateNode joint -n \"joint2\" -p \"joint1\";\n\trename -uid \"784BD652-41D6-1FB4-BD6A-D5AC3B351063\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\taddAttr -ci true -k true -sn \"blendCharacterset\" -ln \"blendCharacterset\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\taddAttr -ci true -k true -sn \"blendPairBlend1\" -ln \"blendPairBlend1\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 1;\n\tsetAttr \".t\" -type \"double3\" 1 2.2204460492503131e-16 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 1.5 0 1;\n\tsetAttr \".radi\" 2;\n\tsetAttr -k on \".blendCharacterset\" 0;\n\tsetAttr -k on \".blendPairBlend1\" 0;\ncreateNode joint -n \"joint3\" -p \"joint2\";\n\trename -uid \"2F5193C2-4CEE-967B-98EE-52B8453B373D\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\taddAttr -ci true -k true -sn \"blendCharacterset\" -ln \"blendCharacterset\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\taddAttr -ci true -k true -sn \"blendPairBlend2\" -ln \"blendPairBlend2\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 2;\n\tsetAttr \".t\" -type \"double3\" 1 2.2204460492503131e-16 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 2.5 0 1;\n\tsetAttr \".radi\" 2;\n\tsetAttr -k on \".blendCharacterset\" 0;\n\tsetAttr -k on \".blendPairBlend2\" 0;\ncreateNode joint -n \"joint4\" -p \"joint3\";\n\trename -uid \"8A97BC9F-4A21-300B-0B62-42B95BB71110\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\taddAttr -ci true -k true -sn \"blendCharacterset\" -ln \"blendCharacterset\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\taddAttr -ci true -k true -sn \"blendPairBlend3\" -ln \"blendPairBlend3\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 3;\n\tsetAttr \".t\" -type \"double3\" 1 2.2204460492503131e-16 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 3.5 0 1;\n\tsetAttr \".radi\" 2;\n\tsetAttr -k on \".blendCharacterset\" 0;\n\tsetAttr -k on \".blendPairBlend3\" 0;\ncreateNode joint -n \"joint5\" -p \"joint4\";\n\trename -uid \"7D29A041-4D85-902A-A5FF-08A5F7504E91\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\taddAttr -ci true -k true -sn \"blendCharacterset\" -ln \"blendCharacterset\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\taddAttr -ci true -k true -sn \"blendPairBlend4\" -ln \"blendPairBlend4\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 4;\n\tsetAttr \".t\" -type \"double3\" 1 2.2204460492503131e-16 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 -89.999999999999986 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 4.5 0 1;\n\tsetAttr \".radi\" 2;\n\tsetAttr -k on \".blendCharacterset\" 0;\n\tsetAttr -k on \".blendPairBlend4\" 0;\ncreateNode transform -n \"camera1\";\n\trename -uid \"A34797CE-4AD0-C599-6075-B4821672D830\";\n\tsetAttr \".t\" -type \"double3\" 4.2891130787133624 10.472340595834526 9.1980326801488648 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"D8A85A06-4B58-CBA4-B2D5-E1B3ED734E17\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 12.389526740399823;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" -1.1102230246251565e-16 3.366 0 ;\n\tsetAttr \".dr\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"008FF8FE-4F66-6B21-A0CD-2B91691F0FAB\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"6A41606E-48D8-73ED-DFAC-A29764834218\";\n\tsetAttr \".bsdt[0].bscd\" -type \"Int32Array\" 1 0 ;\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"0E1C81AE-4786-3BC2-F613-7F88BB2FFC9E\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"FA3A88F5-409E-ECE1-4FCA-04A5E95142B2\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"B4A9A8EB-47B1-1301-5F6C-4687950E3E5E\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"87821DF0-4787-6CE3-93F6-1B94A6C897C3\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"7F7C254D-4AA6-16A8-00D4-81B62C35963B\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"D0DF4715-481F-95AB-8AA0-D4BACE01D98F\";\n\tsetAttr \".h\" 5;\n\tsetAttr \".sh\" 5;\n\tsetAttr \".cuv\" 4;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"EC8E308D-42CF-689D-CAEA-FFB37284F009\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange -92.621946 540.121946 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 10 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"F73172AE-431E-C65E-2119-0FB6E7DEE1FC\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 260 -ast 1 -aet 260 \";\n\tsetAttr \".st\" 6;\ncreateNode blendShape -n \"blendShape1\";\n\trename -uid \"7EA2D131-48BC-E4B5-E208-C78B9C20FC41\";\n\taddAttr -ci true -h true -sn \"aal\" -ln \"attributeAliasList\" -dt \"attributeAlias\";\n\tsetAttr -s 3 \".w\";\n\tsetAttr -s 3 \".w\";\n\tsetAttr -s 3 \".it[0].itg\";\n\tsetAttr \".mlid\" 0;\n\tsetAttr \".mlpr\" 0;\n\tsetAttr -s 3 \".pndr[0:2]\"  0 0 0;\n\tsetAttr \".tgdt[0].cid\" -type \"Int32Array\" 3 0 1 2 ;\n\tsetAttr \".aal\" -type \"attributeAlias\" {\"target3\",\"weight[0]\",\"target2\",\"weight[1]\"\n\t\t,\"target1\",\"weight[2]\"} ;\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"E762CE4D-437D-702A-289A-2BBA7B4BA341\";\ncreateNode objectSet -n \"blendShape1Set\";\n\trename -uid \"B7DD1F34-4F1F-8478-43FF-BD803E76DCCA\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"blendShape1GroupId\";\n\trename -uid \"5865CD67-4E00-8384-A5FC-E8B65FE5B181\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"blendShape1GroupParts\";\n\trename -uid \"D97E1207-43B6-0354-7D60-BE8E9B8DC917\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"924ECB26-4516-F115-5E6F-BE8065F3E523\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"63A278ED-457B-1811-E2EE-55A9845920A5\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"B7F679EA-4E96-5333-5BA3-27B09D94BD81\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode skinCluster -n \"skinCluster1\";\n\trename -uid \"5B876C25-4DF5-A02A-B1E3-3F8DB7F5D653\";\n\tsetAttr -s 24 \".wl\";\n\tsetAttr \".wl[0:23].w\"\n\t\t5 0 0.91617671772720477 1 0.068145375698717703 2 0.0113108236756445 \n\t\t3 0.0031701616530353089 4 0.0011969212453977124\n\t\t5 0 0.91617671772720477 1 0.068145375698717703 2 0.0113108236756445 \n\t\t3 0.0031701616530353089 4 0.0011969212453977124\n\t\t5 0 0.67361517143952521 1 0.29938452063978915 2 0.022268270130232248 \n\t\t3 0.0036961051930838157 4 0.001035932597369512\n\t\t5 0 0.67361517143952521 1 0.29938452063978915 2 0.022268270130232248 \n\t\t3 0.0036961051930838157 4 0.001035932597369512\n\t\t5 0 0.23058870583529889 1 0.51882458812942223 2 0.23058870583529889 \n\t\t3 0.017151226053865203 4 0.0028467741461148002\n\t\t5 0 0.23058870583529889 1 0.51882458812942223 2 0.23058870583529889 \n\t\t3 0.017151226053865203 4 0.0028467741461148002\n\t\t5 0 0.016909347111319872 1 0.2273367778299672 2 0.51150775011742589 \n\t\t3 0.2273367778299672 4 0.016909347111319872\n\t\t5 0 0.016909347111319872 1 0.2273367778299672 2 0.51150775011742589 \n\t\t3 0.2273367778299672 4 0.016909347111319872\n\t\t5 0 0.0028467741461148002 1 0.017151226053865203 2 0.23058870583529889 \n\t\t3 0.51882458812942223 4 0.23058870583529889\n\t\t5 0 0.0028467741461148002 1 0.017151226053865203 2 0.23058870583529889 \n\t\t3 0.51882458812942223 4 0.23058870583529889\n\t\t5 0 0.0016554543598107491 1 0.005906497654139589 2 0.035585428015436037 \n\t\t3 0.47842630998530683 4 0.47842630998530683\n\t\t5 0 0.0016554543598107491 1 0.005906497654139589 2 0.035585428015436037 \n\t\t3 0.47842630998530683 4 0.47842630998530683\n\t\t5 0 0.0016554543598107491 1 0.005906497654139589 2 0.035585428015436037 \n\t\t3 0.47842630998530683 4 0.47842630998530683\n\t\t5 0 0.0016554543598107491 1 0.005906497654139589 2 0.035585428015436037 \n\t\t3 0.47842630998530683 4 0.47842630998530683\n\t\t5 0 0.0028467741461148002 1 0.017151226053865203 2 0.23058870583529889 \n\t\t3 0.51882458812942223 4 0.23058870583529889\n\t\t5 0 0.0028467741461148002 1 0.017151226053865203 2 0.23058870583529889 \n\t\t3 0.51882458812942223 4 0.23058870583529889\n\t\t5 0 0.016909347111319872 1 0.2273367778299672 2 0.51150775011742589 \n\t\t3 0.2273367778299672 4 0.016909347111319872\n\t\t5 0 0.016909347111319872 1 0.2273367778299672 2 0.51150775011742589 \n\t\t3 0.2273367778299672 4 0.016909347111319872\n\t\t5 0 0.23058870583529889 1 0.51882458812942223 2 0.23058870583529889 \n\t\t3 0.017151226053865203 4 0.0028467741461148002\n\t\t5 0 0.23058870583529889 1 0.51882458812942223 2 0.23058870583529889 \n\t\t3 0.017151226053865203 4 0.0028467741461148002\n\t\t5 0 0.67361517143952521 1 0.29938452063978915 2 0.022268270130232248 \n\t\t3 0.0036961051930838157 4 0.001035932597369512\n\t\t5 0 0.67361517143952521 1 0.29938452063978915 2 0.022268270130232248 \n\t\t3 0.0036961051930838157 4 0.001035932597369512\n\t\t5 0 0.91617671772720477 1 0.068145375698717703 2 0.0113108236756445 \n\t\t3 0.0031701616530353089 4 0.0011969212453977124\n\t\t5 0 0.91617671772720477 1 0.068145375698717703 2 0.0113108236756445 \n\t\t3 0.0031701616530353089 4 0.0011969212453977124;\n\tsetAttr -s 5 \".pm\";\n\tsetAttr \".pm[0]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -0.5 -1.1102230246251565e-16 0 1;\n\tsetAttr \".pm[1]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -1.5 -3.3306690738754696e-16 0 1;\n\tsetAttr \".pm[2]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -2.5 -5.5511151231257827e-16 0 1;\n\tsetAttr \".pm[3]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -3.5 -7.7715611723760958e-16 0 1;\n\tsetAttr \".pm[4]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 -4.5 0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 2.5 0 1;\n\tsetAttr -s 5 \".ma\";\n\tsetAttr -s 5 \".dpf[0:4]\"  4 4 4 4 4;\n\tsetAttr -s 5 \".lw\";\n\tsetAttr -s 5 \".lw\";\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".mi\" 5;\n\tsetAttr \".ucm\" yes;\n\tsetAttr -s 5 \".ifcl\";\n\tsetAttr -s 5 \".ifcl\";\ncreateNode objectSet -n \"skinCluster1Set\";\n\trename -uid \"B19A2755-4E89-3E02-AF2D-35BA9877E22A\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster1GroupId\";\n\trename -uid \"3382336A-4CA2-4CAB-412B-ABB47B0895BB\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster1GroupParts\";\n\trename -uid \"F6D1B5BE-4870-ED8D-F5DD-C28DF96EBF49\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode dagPose -n \"bindPose1\";\n\trename -uid \"FB088B59-4D36-2AB3-BDE7-DDAD5EA580F3\";\n\tsetAttr -s 5 \".wm\";\n\tsetAttr -s 5 \".xm\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 0 0.5 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0.70710678118654746 0.70710678118654757 1 1 1 yes;\n\tsetAttr \".xm[1]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 2.2204460492503131e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[2]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 2.2204460492503131e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[3]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 2.2204460492503131e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[4]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 2.2204460492503131e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -0.70710678118654746 0.70710678118654757 1\n\t\t 1 1 yes;\n\tsetAttr -s 5 \".m\";\n\tsetAttr -s 5 \".p\";\n\tsetAttr \".bp\" yes;\ncreateNode character -n \"character_set\";\n\trename -uid \"0E29FC62-4828-4A3E-A79A-B4A3D560A8FE\";\n\taddAttr -ci true -h true -sn \"aal\" -ln \"attributeAliasList\" -dt \"attributeAlias\";\n\tsetAttr -s 4 \".dnsm\";\n\tsetAttr -s 26 \".uv[1:26]\"  1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 \n\t\t0 0 0 0 0 0;\n\tsetAttr -s 3 \".uv\";\n\tsetAttr -s 14 \".lv[2:15]\"  0.5 0 0 2.2204460492503131e-16 1 0 2.2204460492503131e-16 \n\t\t1 0 2.2204460492503131e-16 1 0 2.2204460492503131e-16 1;\n\tsetAttr \".am\" -type \"characterMapping\" 4 \"blendShape1.target3\" 0 21 \"blendShape1.target1\" \n\t\t0 22 \"blendShape1.target2\" 0 23 \"joint1.rotateZ\" 2 1  ;\n\tsetAttr \".cim\" -type \"Int32Array\" 4 0 1 2 3 ;\n\tsetAttr \".tcs\" 1;\n\tsetAttr \".tce\" 120;\n\tsetAttr \".aal\" -type \"attributeAlias\" {\"joint3_rotateZ\",\"angularValues[10]\",\"joint2_rotateZ\"\n\t\t,\"angularValues[13]\",\"joint1_rotateZ\",\"angularValues[1]\",\"joint5_rotateZ\",\"angularValues[4]\"\n\t\t,\"joint4_rotateZ\",\"angularValues[7]\",\"blendShape1_target3\",\"unitlessValues[21]\",\"blendShape1_target1\"\n\t\t,\"unitlessValues[22]\",\"blendShape1_target2\",\"unitlessValues[23]\"} ;\ncreateNode trackInfoManager -n \"trackInfoManager1\";\n\trename -uid \"648FBF04-4D18-0C76-CD6D-41A1A9DD508F\";\ncreateNode animCurveTU -n \"character_set_blendShape1_target3\";\n\trename -uid \"48871E22-4A66-D0FE-E00D-DD9BA5245B73\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target1\";\n\trename -uid \"99C882B2-4D26-A4FC-7708-EAA9A189FF09\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target2\";\n\trename -uid \"4C681906-42D3-AE32-9E8A-0CB6A9228E30\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode clipScheduler -n \"character_setScheduler1\";\n\trename -uid \"1ADC1FB9-4CC6-507C-392F-0B811DD71345\";\n\tsetAttr -s 9 \".cl\";\n\tsetAttr -s 9 \".st\";\n\tsetAttr -s 9 \".ss\";\n\tsetAttr -s 9 \".se\";\n\tsetAttr -s 9 \".sc\";\n\tsetAttr -s 9 \".h\";\n\tsetAttr -s 9 \".w\";\n\tsetAttr -s 9 \".ws\";\n\tsetAttr -s 9 \".cb\";\n\tsetAttr -s 9 \".ca\";\n\tsetAttr -s 9 \".ea\";\n\tsetAttr -s 9 \".tr\";\n\tsetAttr \".tr[0]\" 1;\n\tsetAttr \".tr[1]\" 1;\n\tsetAttr \".tr[2]\" 1;\n\tsetAttr \".tr[3]\" 1;\n\tsetAttr \".tr[4]\" 1;\n\tsetAttr \".tr[8]\" 1;\n\tsetAttr \".tr[9]\" 2;\n\tsetAttr \".tr[10]\" 2;\n\tsetAttr \".tr[11]\" 2;\n\tsetAttr \".nt\" 9;\ncreateNode clipLibrary -n \"character_setClips1\";\n\trename -uid \"F5C329E5-4C99-BBC5-FC7D-2AB615652AFC\";\n\tsetAttr -s 5 \".cel\";\n\tsetAttr -s 4 \".cel[0].cev\";\n\tsetAttr -s 3 \".cel[1].cev\";\n\tsetAttr -s 3 \".cel[2].cev\";\n\tsetAttr -s 3 \".cel[3].cev\";\n\tsetAttr -s 4 \".cel[4].cev\";\n\tsetAttr -s 5 \".sc\";\n\tsetAttr -s 5 \".cl\";\ncreateNode animClip -n \"setupSource\";\n\trename -uid \"EBAACE3B-4F0F-1627-7D02-E283F1210B4A\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 1;\n\tsetAttr \".ci\" no;\ncreateNode animClip -n \"setup\";\n\trename -uid \"3F8078E3-42F8-3965-FE31-8484475412D9\";\n\tsetAttr -s 43 \".ac\";\n\tsetAttr \".ac[0]\" yes;\n\tsetAttr \".ac[1]\" yes;\n\tsetAttr \".ac[2]\" yes;\n\tsetAttr \".ac[10]\" yes;\n\tsetAttr \".ac[11]\" yes;\n\tsetAttr \".ac[12]\" yes;\n\tsetAttr \".ac[13]\" yes;\n\tsetAttr \".ac[14]\" yes;\n\tsetAttr \".ac[15]\" yes;\n\tsetAttr \".ac[16]\" yes;\n\tsetAttr \".ac[17]\" yes;\n\tsetAttr \".ac[18]\" yes;\n\tsetAttr \".ac[19]\" yes;\n\tsetAttr \".ac[20]\" yes;\n\tsetAttr \".ac[21]\" yes;\n\tsetAttr \".ac[22]\" yes;\n\tsetAttr \".ac[23]\" yes;\n\tsetAttr \".ac[24]\" yes;\n\tsetAttr \".ac[25]\" yes;\n\tsetAttr \".ac[26]\" yes;\n\tsetAttr \".ac[27]\" yes;\n\tsetAttr \".ac[28]\" yes;\n\tsetAttr \".ac[29]\" yes;\n\tsetAttr \".ac[30]\" yes;\n\tsetAttr \".ac[31]\" yes;\n\tsetAttr \".ac[32]\" yes;\n\tsetAttr \".ac[33]\" yes;\n\tsetAttr \".ac[34]\" yes;\n\tsetAttr \".ac[35]\" yes;\n\tsetAttr \".ac[36]\" yes;\n\tsetAttr \".ac[37]\" yes;\n\tsetAttr \".ac[38]\" yes;\n\tsetAttr \".ac[39]\" yes;\n\tsetAttr \".ac[40]\" yes;\n\tsetAttr \".ac[41]\" yes;\n\tsetAttr \".ac[42]\" yes;\n\tsetAttr \".ac[43]\" yes;\n\tsetAttr \".ac[44]\" yes;\n\tsetAttr \".ac[45]\" yes;\n\tsetAttr \".ac[46]\" yes;\n\tsetAttr \".ac[47]\" yes;\n\tsetAttr \".ac[48]\" yes;\n\tsetAttr \".ac[49]\" yes;\n\tsetAttr \".sf\" -10;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 10;\ncreateNode animCurveTU -n \"character_set_blendShape1_target4\";\n\trename -uid \"566769D6-439B-657C-802E-A1B3D4FC1E2A\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 0 20 0 30 0 40 0;\n\tsetAttr -s 5 \".kit[0:4]\"  1 18 18 18 18;\n\tsetAttr -s 5 \".kot[0:4]\"  1 18 18 18 18;\n\tsetAttr -s 5 \".kix[0:4]\"  1 1 1 1 1;\n\tsetAttr -s 5 \".kiy[0:4]\"  0 0 0 0 0;\n\tsetAttr -s 5 \".kox[0:4]\"  1 1 1 1 1;\n\tsetAttr -s 5 \".koy[0:4]\"  0 0 0 0 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target5\";\n\trename -uid \"3C8E6EDB-44E9-EBE6-0E14-0AA7FBA4F69B\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 1 20 0 30 -1 40 0;\n\tsetAttr -s 5 \".kit[0:4]\"  1 18 18 18 18;\n\tsetAttr -s 5 \".kot[0:4]\"  1 18 18 18 18;\n\tsetAttr -s 5 \".kix[0:4]\"  1 1 0.38461538461538458 1 1;\n\tsetAttr -s 5 \".kiy[0:4]\"  0 0 -0.92307692307692313 0 0;\n\tsetAttr -s 5 \".kox[0:4]\"  1 1 0.38461538461538458 1 1;\n\tsetAttr -s 5 \".koy[0:4]\"  0 0 -0.92307692307692313 0 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target6\";\n\trename -uid \"382D076E-4D90-4606-38B3-2EA765E0AB63\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 0 20 0 30 0 40 0;\n\tsetAttr -s 5 \".kit[0:4]\"  1 18 18 18 18;\n\tsetAttr -s 5 \".kot[0:4]\"  1 18 18 18 18;\n\tsetAttr -s 5 \".kix[0:4]\"  1 1 1 1 1;\n\tsetAttr -s 5 \".kiy[0:4]\"  0 0 0 0 0;\n\tsetAttr -s 5 \".kox[0:4]\"  1 1 1 1 1;\n\tsetAttr -s 5 \".koy[0:4]\"  0 0 0 0 0;\ncreateNode animClip -n \"clip_target1Source\";\n\trename -uid \"B7E2B415-45A3-5134-30C0-479D7BC92318\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ss\" 30;\n\tsetAttr \".se\" 70;\n\tsetAttr \".ci\" no;\ncreateNode animClip -n \"clip_target1\";\n\trename -uid \"C0D0F4FB-4237-B0F1-F1AA-72ACFB2A9F06\";\n\tsetAttr -s 43 \".ac\";\n\tsetAttr \".ac[0]\" yes;\n\tsetAttr \".ac[1]\" yes;\n\tsetAttr \".ac[2]\" yes;\n\tsetAttr \".ac[10]\" yes;\n\tsetAttr \".ac[11]\" yes;\n\tsetAttr \".ac[12]\" yes;\n\tsetAttr \".ac[13]\" yes;\n\tsetAttr \".ac[14]\" yes;\n\tsetAttr \".ac[15]\" yes;\n\tsetAttr \".ac[16]\" yes;\n\tsetAttr \".ac[17]\" yes;\n\tsetAttr \".ac[18]\" yes;\n\tsetAttr \".ac[19]\" yes;\n\tsetAttr \".ac[20]\" yes;\n\tsetAttr \".ac[21]\" yes;\n\tsetAttr \".ac[22]\" yes;\n\tsetAttr \".ac[23]\" yes;\n\tsetAttr \".ac[24]\" yes;\n\tsetAttr \".ac[25]\" yes;\n\tsetAttr \".ac[26]\" yes;\n\tsetAttr \".ac[27]\" yes;\n\tsetAttr \".ac[28]\" yes;\n\tsetAttr \".ac[29]\" yes;\n\tsetAttr \".ac[30]\" yes;\n\tsetAttr \".ac[31]\" yes;\n\tsetAttr \".ac[32]\" yes;\n\tsetAttr \".ac[33]\" yes;\n\tsetAttr \".ac[34]\" yes;\n\tsetAttr \".ac[35]\" yes;\n\tsetAttr \".ac[36]\" yes;\n\tsetAttr \".ac[37]\" yes;\n\tsetAttr \".ac[38]\" yes;\n\tsetAttr \".ac[39]\" yes;\n\tsetAttr \".ac[40]\" yes;\n\tsetAttr \".ac[41]\" yes;\n\tsetAttr \".ac[42]\" yes;\n\tsetAttr \".ac[43]\" yes;\n\tsetAttr \".ac[44]\" yes;\n\tsetAttr \".ac[45]\" yes;\n\tsetAttr \".ac[46]\" yes;\n\tsetAttr \".ac[47]\" yes;\n\tsetAttr \".ac[48]\" yes;\n\tsetAttr \".ac[49]\" yes;\n\tsetAttr \".sf\" 1;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 40;\ncreateNode animCurveTU -n \"character_set_blendShape1_target7\";\n\trename -uid \"5F695200-4BED-AFC8-DEEA-619A7A7F75FE\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 0 20 0 30 0 40 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target8\";\n\trename -uid \"B4EF06B7-42AF-9588-8C1D-D6BC641A3E4F\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 0 20 0 30 0 40 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target9\";\n\trename -uid \"0DFFC0BC-45C3-4FA2-79E9-588D4BBAC9E0\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 1 20 0 30 -1 40 0;\ncreateNode animClip -n \"clip_target2Source\";\n\trename -uid \"2E6AED3B-427D-590B-956D-49A9D1601F30\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 40;\n\tsetAttr \".ci\" no;\ncreateNode animClip -n \"clip_target2\";\n\trename -uid \"A9AEA2A6-46D7-3120-E958-08976DA4E1B9\";\n\tsetAttr -s 43 \".ac\";\n\tsetAttr \".ac[0]\" yes;\n\tsetAttr \".ac[1]\" yes;\n\tsetAttr \".ac[2]\" yes;\n\tsetAttr \".ac[10]\" yes;\n\tsetAttr \".ac[11]\" yes;\n\tsetAttr \".ac[12]\" yes;\n\tsetAttr \".ac[13]\" yes;\n\tsetAttr \".ac[14]\" yes;\n\tsetAttr \".ac[15]\" yes;\n\tsetAttr \".ac[16]\" yes;\n\tsetAttr \".ac[17]\" yes;\n\tsetAttr \".ac[18]\" yes;\n\tsetAttr \".ac[19]\" yes;\n\tsetAttr \".ac[20]\" yes;\n\tsetAttr \".ac[21]\" yes;\n\tsetAttr \".ac[22]\" yes;\n\tsetAttr \".ac[23]\" yes;\n\tsetAttr \".ac[24]\" yes;\n\tsetAttr \".ac[25]\" yes;\n\tsetAttr \".ac[26]\" yes;\n\tsetAttr \".ac[27]\" yes;\n\tsetAttr \".ac[28]\" yes;\n\tsetAttr \".ac[29]\" yes;\n\tsetAttr \".ac[30]\" yes;\n\tsetAttr \".ac[31]\" yes;\n\tsetAttr \".ac[32]\" yes;\n\tsetAttr \".ac[33]\" yes;\n\tsetAttr \".ac[34]\" yes;\n\tsetAttr \".ac[35]\" yes;\n\tsetAttr \".ac[36]\" yes;\n\tsetAttr \".ac[37]\" yes;\n\tsetAttr \".ac[38]\" yes;\n\tsetAttr \".ac[39]\" yes;\n\tsetAttr \".ac[40]\" yes;\n\tsetAttr \".ac[41]\" yes;\n\tsetAttr \".ac[42]\" yes;\n\tsetAttr \".ac[43]\" yes;\n\tsetAttr \".ac[44]\" yes;\n\tsetAttr \".ac[45]\" yes;\n\tsetAttr \".ac[46]\" yes;\n\tsetAttr \".ac[47]\" yes;\n\tsetAttr \".ac[48]\" yes;\n\tsetAttr \".ac[49]\" yes;\n\tsetAttr \".sf\" 50;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 40;\ncreateNode animCurveTU -n \"character_set_blendShape1_target10\";\n\trename -uid \"F33C57EF-4CC4-2388-EA6A-FD9B2ACF3162\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 1 20 0 30 -1 40 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target11\";\n\trename -uid \"72BB84CE-4772-23B5-9425-248ADC7CF604\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 0 20 0 30 0 40 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target12\";\n\trename -uid \"4F4815C8-496D-42B1-89FF-81801F11E2DD\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 0 20 0 30 0 40 0;\ncreateNode animClip -n \"clip_target3Source\";\n\trename -uid \"23605AF3-421F-A095-2411-7A8F6C4601A4\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 40;\n\tsetAttr \".ci\" no;\ncreateNode animClip -n \"clip_target3\";\n\trename -uid \"11715892-4C23-470E-6951-EE949CC80B4A\";\n\tsetAttr -s 43 \".ac\";\n\tsetAttr \".ac[0]\" yes;\n\tsetAttr \".ac[1]\" yes;\n\tsetAttr \".ac[2]\" yes;\n\tsetAttr \".ac[10]\" yes;\n\tsetAttr \".ac[11]\" yes;\n\tsetAttr \".ac[12]\" yes;\n\tsetAttr \".ac[13]\" yes;\n\tsetAttr \".ac[14]\" yes;\n\tsetAttr \".ac[15]\" yes;\n\tsetAttr \".ac[16]\" yes;\n\tsetAttr \".ac[17]\" yes;\n\tsetAttr \".ac[18]\" yes;\n\tsetAttr \".ac[19]\" yes;\n\tsetAttr \".ac[20]\" yes;\n\tsetAttr \".ac[21]\" yes;\n\tsetAttr \".ac[22]\" yes;\n\tsetAttr \".ac[23]\" yes;\n\tsetAttr \".ac[24]\" yes;\n\tsetAttr \".ac[25]\" yes;\n\tsetAttr \".ac[26]\" yes;\n\tsetAttr \".ac[27]\" yes;\n\tsetAttr \".ac[28]\" yes;\n\tsetAttr \".ac[29]\" yes;\n\tsetAttr \".ac[30]\" yes;\n\tsetAttr \".ac[31]\" yes;\n\tsetAttr \".ac[32]\" yes;\n\tsetAttr \".ac[33]\" yes;\n\tsetAttr \".ac[34]\" yes;\n\tsetAttr \".ac[35]\" yes;\n\tsetAttr \".ac[36]\" yes;\n\tsetAttr \".ac[37]\" yes;\n\tsetAttr \".ac[38]\" yes;\n\tsetAttr \".ac[39]\" yes;\n\tsetAttr \".ac[40]\" yes;\n\tsetAttr \".ac[41]\" yes;\n\tsetAttr \".ac[42]\" yes;\n\tsetAttr \".ac[43]\" yes;\n\tsetAttr \".ac[44]\" yes;\n\tsetAttr \".ac[45]\" yes;\n\tsetAttr \".ac[46]\" yes;\n\tsetAttr \".ac[47]\" yes;\n\tsetAttr \".ac[48]\" yes;\n\tsetAttr \".ac[49]\" yes;\n\tsetAttr \".sf\" 100;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 40;\ncreateNode animCurveTU -n \"character_set_blendShape1_target13\";\n\trename -uid \"AFAA6C1E-464B-8E28-6B96-229F4ED92922\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 0 60 0 90 0 120 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target14\";\n\trename -uid \"51A3C6C3-489B-1295-CF38-AABE19831B91\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 0 60 0 90 0 120 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target15\";\n\trename -uid \"602AD4B2-4D87-9B63-5503-548193042D4A\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 0 60 0 90 0 120 0;\ncreateNode animCurveTA -n \"joint1_rotateX\";\n\trename -uid \"1544E740-48B0-C740-BF03-AFB4527C58B7\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 30 0;\ncreateNode animCurveTA -n \"joint1_rotateZ\";\n\trename -uid \"E11509F0-4319-357C-9C0D-408B176D467D\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 -20 60 0 90 20 120 0;\n\tsetAttr -s 5 \".kbd[0:4]\" yes no no no no;\ncreateNode pairBlend -n \"pairBlend1\";\n\trename -uid \"219DE558-4FFD-558D-C1E8-BFB565460FBA\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend1_inRotateZ1\";\n\trename -uid \"5295F275-46CC-CDC6-FBBC-1EA226BB1711\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode pairBlend -n \"pairBlend2\";\n\trename -uid \"77C69CC4-4B81-39BC-DB72-D4B457032B93\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend2_inRotateZ1\";\n\trename -uid \"CD88EB99-4335-1844-FA5A-E893EB9FDCA3\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode pairBlend -n \"pairBlend3\";\n\trename -uid \"3974C23D-4987-CD9E-C9DB-4A82FC691F00\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend3_inRotateZ1\";\n\trename -uid \"887CF097-4A1D-8B90-26EC-BEA9F89A2820\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode pairBlend -n \"pairBlend4\";\n\trename -uid \"43BC8CFF-4CF0-AEA8-DB5F-BD8E7AD3EB52\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend4_inRotateZ1\";\n\trename -uid \"6B0CDDE7-4EA3-EDE0-2C29-32B051F0FA5B\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode pairBlend -n \"pairBlend5\";\n\trename -uid \"23D98614-46D5-4776-06DB-FBA27750A647\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend5_inRotateZ1\";\n\trename -uid \"53A726CA-495F-DFB3-E2E0-8CB6F7F2B1C2\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 -20 30 -20;\n\tsetAttr -s 2 \".kbd[0:1]\" yes no;\ncreateNode pairBlend -n \"pairBlend6\";\n\trename -uid \"7AC2C5E0-401D-59FC-F602-97BBE802384D\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend6_inRotateZ1\";\n\trename -uid \"E00B7E83-4080-F437-BF6A-908686ECEEED\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 -20 30 -20;\n\tsetAttr -s 2 \".kbd[0:1]\" yes no;\ncreateNode pairBlend -n \"pairBlend7\";\n\trename -uid \"A0A3AC7F-4D00-C33A-23F7-D0A3DB8CE76F\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend7_inRotateZ1\";\n\trename -uid \"2022A2F6-4224-9F9A-EE3C-D7B6D6957115\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 -20 30 -20;\n\tsetAttr -s 2 \".kbd[0:1]\" yes no;\ncreateNode pairBlend -n \"pairBlend8\";\n\trename -uid \"B327F2CE-4471-975F-FC9E-C49F3872D5F0\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend8_inRotateZ1\";\n\trename -uid \"F3422A84-4415-94CF-5627-748E15FF87A7\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 -20;\n\tsetAttr \".kbd[0]\" yes;\ncreateNode animClip -n \"clip_joint_rot_zSource\";\n\trename -uid \"02FAFC4D-4F1A-000D-FC11-F3B2AC35D778\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 120;\n\tsetAttr \".ci\" no;\ncreateNode animClip -n \"clip_joint_rot_z\";\n\trename -uid \"1C3DFB98-4892-437E-84D1-A98EDD19EB55\";\n\tsetAttr -s 4 \".ac[0:3]\" yes yes yes yes;\n\tsetAttr \".sf\" 150;\n\tsetAttr \".sc\" 0.25;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 120;\ncreateNode animClip -n \"clip_target6\";\n\trename -uid \"9C196431-44B3-090A-0729-588D774735BE\";\n\tsetAttr -s 64 \".ac[0:63]\" yes yes yes no no no no no no no yes yes \n\t\tyes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes \n\t\tyes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes no no no no no \n\t\tno no no no no no no no no;\n\tsetAttr \".sf\" 234;\n\tsetAttr \".sc\" 0.5;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 40;\ncreateNode animClip -n \"clip_target5\";\n\trename -uid \"0BEBC150-40C1-503D-2DB7-CCA20EDFD6BF\";\n\tsetAttr -s 64 \".ac[0:63]\" yes yes yes no no no no no no no yes yes \n\t\tyes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes \n\t\tyes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes no no no no no \n\t\tno no no no no no no no no;\n\tsetAttr \".sf\" 214;\n\tsetAttr \".sc\" 0.5;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 40;\ncreateNode animClip -n \"clip_target4\";\n\trename -uid \"9188E84A-4146-18BD-A31D-DA88E4B83759\";\n\tsetAttr -s 64 \".ac[0:63]\" yes yes yes no no no no no no no yes yes \n\t\tyes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes \n\t\tyes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes no no no no no \n\t\tno no no no no no no no no;\n\tsetAttr \".sf\" 194;\n\tsetAttr \".sc\" 0.5;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 40;\ncreateNode animClip -n \"clip_joint_rot_z1\";\n\trename -uid \"FE940260-4519-8188-94EB-47A22344F6C3\";\n\tsetAttr -s 32 \".ac[0:31]\" yes yes yes yes no no no no no no no no \n\t\tno no no no no no no no no no no no no no no no no no no no;\n\tsetAttr \".sf\" 194;\n\tsetAttr \".sc\" 0.5;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 120;\ncreateNode animCurveTA -n \"character_set_joint1_rotateZ\";\n\trename -uid \"263F8935-4256-F56F-8376-AAA129624B78\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"505B6A66-4A15-6774-6FF5-3D8433609167\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/scenes/complex/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"ComplexAnim1\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2018 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"\";\n\tsetAttr \".char\" -type \"string\" \"character_set\";\n\tsetAttr \".anim\" 4;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\ncreateNode nodeGraphEditorInfo -n \"MayaNodeEditorSavedTabsInfo\";\n\trename -uid \"77BD6873-4C5E-87D9-4715-E9B0D7B9E858\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -1805.3523989203343 -2670.2379891323708 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 472.01911856890518 -1529.7618439746307 ;\n\tsetAttr -s 47 \".tgi[0].ni\";\n\tsetAttr \".tgi[0].ni[0].x\" -930;\n\tsetAttr \".tgi[0].ni[0].y\" -2508.571533203125;\n\tsetAttr \".tgi[0].ni[0].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[1].x\" -930;\n\tsetAttr \".tgi[0].ni[1].y\" -3782.857177734375;\n\tsetAttr \".tgi[0].ni[1].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[2].x\" -1544.2857666015625;\n\tsetAttr \".tgi[0].ni[2].y\" -1081.4285888671875;\n\tsetAttr \".tgi[0].ni[2].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[3].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[3].y\" -944.28570556640625;\n\tsetAttr \".tgi[0].ni[3].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[4].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[4].y\" -1248.5714111328125;\n\tsetAttr \".tgi[0].ni[4].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[5].x\" -4615.71435546875;\n\tsetAttr \".tgi[0].ni[5].y\" -1350;\n\tsetAttr \".tgi[0].ni[5].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[6].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[6].y\" -1552.857177734375;\n\tsetAttr \".tgi[0].ni[6].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[7].x\" -255.71427917480469;\n\tsetAttr \".tgi[0].ni[7].y\" -1078.5714111328125;\n\tsetAttr \".tgi[0].ni[7].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[8].x\" -2465.71435546875;\n\tsetAttr \".tgi[0].ni[8].y\" -1112.857177734375;\n\tsetAttr \".tgi[0].ni[8].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[9].x\" -2772.857177734375;\n\tsetAttr \".tgi[0].ni[9].y\" -1132.857177734375;\n\tsetAttr \".tgi[0].ni[9].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[10].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[10].y\" -1350;\n\tsetAttr \".tgi[0].ni[10].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[11].x\" -562.85711669921875;\n\tsetAttr \".tgi[0].ni[11].y\" -2305.71435546875;\n\tsetAttr \".tgi[0].ni[11].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[12].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[12].y\" -1147.142822265625;\n\tsetAttr \".tgi[0].ni[12].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[13].x\" -930;\n\tsetAttr \".tgi[0].ni[13].y\" -3421.428466796875;\n\tsetAttr \".tgi[0].ni[13].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[14].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[14].y\" -1045.7142333984375;\n\tsetAttr \".tgi[0].ni[14].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[15].x\" -2158.571533203125;\n\tsetAttr \".tgi[0].ni[15].y\" -1010;\n\tsetAttr \".tgi[0].ni[15].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[16].x\" -1237.142822265625;\n\tsetAttr \".tgi[0].ni[16].y\" -977.14288330078125;\n\tsetAttr \".tgi[0].ni[16].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[17].x\" -930;\n\tsetAttr \".tgi[0].ni[17].y\" -2001.4285888671875;\n\tsetAttr \".tgi[0].ni[17].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[18].x\" -562.85711669921875;\n\tsetAttr \".tgi[0].ni[18].y\" -981.4285888671875;\n\tsetAttr \".tgi[0].ni[18].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[19].x\" -930;\n\tsetAttr \".tgi[0].ni[19].y\" -3015.71435546875;\n\tsetAttr \".tgi[0].ni[19].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[20].x\" -4001.428466796875;\n\tsetAttr \".tgi[0].ni[20].y\" -1085.7142333984375;\n\tsetAttr \".tgi[0].ni[20].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[21].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[21].y\" -1755.7142333984375;\n\tsetAttr \".tgi[0].ni[21].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[22].x\" -930;\n\tsetAttr \".tgi[0].ni[22].y\" -1118.5714111328125;\n\tsetAttr \".tgi[0].ni[22].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[23].x\" -3694.28564453125;\n\tsetAttr \".tgi[0].ni[23].y\" -1304.2857666015625;\n\tsetAttr \".tgi[0].ni[23].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[24].x\" -930;\n\tsetAttr \".tgi[0].ni[24].y\" -2711.428466796875;\n\tsetAttr \".tgi[0].ni[24].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[25].x\" -930;\n\tsetAttr \".tgi[0].ni[25].y\" -4550;\n\tsetAttr \".tgi[0].ni[25].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[26].x\" -4308.5712890625;\n\tsetAttr \".tgi[0].ni[26].y\" -1170;\n\tsetAttr \".tgi[0].ni[26].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[27].x\" -930;\n\tsetAttr \".tgi[0].ni[27].y\" -3985.71435546875;\n\tsetAttr \".tgi[0].ni[27].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[28].x\" -255.71427917480469;\n\tsetAttr \".tgi[0].ni[28].y\" -977.14288330078125;\n\tsetAttr \".tgi[0].ni[28].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[29].x\" -930;\n\tsetAttr \".tgi[0].ni[29].y\" -3218.571533203125;\n\tsetAttr \".tgi[0].ni[29].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[30].x\" -562.85711669921875;\n\tsetAttr \".tgi[0].ni[30].y\" -1695.7142333984375;\n\tsetAttr \".tgi[0].ni[30].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[31].x\" -4308.5712890625;\n\tsetAttr \".tgi[0].ni[31].y\" -1372.857177734375;\n\tsetAttr \".tgi[0].ni[31].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[32].x\" -930;\n\tsetAttr \".tgi[0].ni[32].y\" -2407.142822265625;\n\tsetAttr \".tgi[0].ni[32].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[33].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[33].y\" -1654.2857666015625;\n\tsetAttr \".tgi[0].ni[33].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[34].x\" -930;\n\tsetAttr \".tgi[0].ni[34].y\" -2914.28564453125;\n\tsetAttr \".tgi[0].ni[34].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[35].x\" -930;\n\tsetAttr \".tgi[0].ni[35].y\" -4955.71435546875;\n\tsetAttr \".tgi[0].ni[35].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[36].x\" -930;\n\tsetAttr \".tgi[0].ni[36].y\" -4188.5712890625;\n\tsetAttr \".tgi[0].ni[36].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[37].x\" -930;\n\tsetAttr \".tgi[0].ni[37].y\" -1900;\n\tsetAttr \".tgi[0].ni[37].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[38].x\" -930;\n\tsetAttr \".tgi[0].ni[38].y\" -3320;\n\tsetAttr \".tgi[0].ni[38].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[39].x\" -3080;\n\tsetAttr \".tgi[0].ni[39].y\" -1034.2857666015625;\n\tsetAttr \".tgi[0].ni[39].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[40].x\" -562.85711669921875;\n\tsetAttr \".tgi[0].ni[40].y\" -1140;\n\tsetAttr \".tgi[0].ni[40].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[41].x\" -1851.4285888671875;\n\tsetAttr \".tgi[0].ni[41].y\" -1101.4285888671875;\n\tsetAttr \".tgi[0].ni[41].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[42].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[42].y\" -1451.4285888671875;\n\tsetAttr \".tgi[0].ni[42].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[43].x\" -3387.142822265625;\n\tsetAttr \".tgi[0].ni[43].y\" -1265.7142333984375;\n\tsetAttr \".tgi[0].ni[43].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[44].x\" -930;\n\tsetAttr \".tgi[0].ni[44].y\" -2204.28564453125;\n\tsetAttr \".tgi[0].ni[44].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[45].x\" -930;\n\tsetAttr \".tgi[0].ni[45].y\" -1798.5714111328125;\n\tsetAttr \".tgi[0].ni[45].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[46].x\" -1462.857177734375;\n\tsetAttr \".tgi[0].ni[46].y\" -2077.142822265625;\n\tsetAttr \".tgi[0].ni[46].nvs\" 18304;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"6D7CB298-4F8D-D9A9-6955-F687233711FB\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\ncreateNode aiOptions -s -n \"defaultArnoldRenderOptions\";\n\trename -uid \"3F5D9519-4AE4-7625-DA33-2B82363A9EED\";\n\tsetAttr \".version\" -type \"string\" \"2.1.0.1\";\ncreateNode aiAOVFilter -s -n \"defaultArnoldFilter\";\n\trename -uid \"5D0365BB-42DB-31AC-1371-58A0D1F42238\";\n\tsetAttr \".ai_translator\" -type \"string\" \"gaussian\";\ncreateNode aiAOVDriver -s -n \"defaultArnoldDriver\";\n\trename -uid \"421A6B4C-4B4D-58C6-779E-89B0BCE157F9\";\n\tsetAttr \".ai_translator\" -type \"string\" \"exr\";\ncreateNode aiAOVDriver -s -n \"defaultArnoldDisplayDriver\";\n\trename -uid \"D8CB9EF1-4868-12A5-12C0-4896814CBECA\";\n\tsetAttr \".output_mode\" 0;\n\tsetAttr \".ai_translator\" -type \"string\" \"maya\";\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".macc\";\n\tsetAttr -k on \".macd\";\n\tsetAttr -k on \".macq\";\n\tsetAttr -cb on \".ifg\";\n\tsetAttr -k on \".clip\";\n\tsetAttr -k on \".edm\";\n\tsetAttr -k on \".edl\";\n\tsetAttr \".ren\" -type \"string\" \"arnold\";\n\tsetAttr -av -k on \".esr\";\n\tsetAttr -k on \".ors\";\n\tsetAttr -cb on \".sdf\";\n\tsetAttr \".outf\" 51;\n\tsetAttr -cb on \".imfkey\" -type \"string\" \"exr\";\n\tsetAttr -k on \".gama\";\n\tsetAttr -cb on \".ar\";\n\tsetAttr -av \".bfs\";\n\tsetAttr -k on \".be\";\n\tsetAttr -k on \".fec\";\n\tsetAttr -k on \".ofc\";\n\tsetAttr -cb on \".ofe\";\n\tsetAttr -cb on \".efe\";\n\tsetAttr -cb on \".umfn\";\n\tsetAttr -cb on \".ufe\";\n\tsetAttr -k on \".comp\";\n\tsetAttr -k on \".cth\";\n\tsetAttr -k on \".soll\";\n\tsetAttr -k on \".rd\";\n\tsetAttr -k on \".lp\";\n\tsetAttr -k on \".sp\";\n\tsetAttr -k on \".shs\";\n\tsetAttr -k on \".lpr\";\n\tsetAttr -cb on \".gv\";\n\tsetAttr -cb on \".sv\";\n\tsetAttr -k on \".mm\";\n\tsetAttr -k on \".npu\";\n\tsetAttr -k on \".itf\";\n\tsetAttr -k on \".shp\";\n\tsetAttr -cb on \".isp\";\n\tsetAttr -k on \".uf\";\n\tsetAttr -k on \".oi\";\n\tsetAttr -k on \".rut\";\n\tsetAttr -av -k on \".mbf\";\n\tsetAttr -k on \".afp\";\n\tsetAttr -k on \".pfb\";\n\tsetAttr -cb on \".pfrm\";\n\tsetAttr -cb on \".pfom\";\n\tsetAttr -av -k on \".bll\";\n\tsetAttr -k on \".bls\";\n\tsetAttr -k on \".smv\";\n\tsetAttr -k on \".ubc\";\n\tsetAttr -k on \".mbc\";\n\tsetAttr -k on \".udbx\";\n\tsetAttr -k on \".smc\";\n\tsetAttr -k on \".kmv\";\n\tsetAttr -cb on \".isl\";\n\tsetAttr -cb on \".ism\";\n\tsetAttr -cb on \".imb\";\n\tsetAttr -k on \".rlen\";\n\tsetAttr -av -k on \".frts\";\n\tsetAttr -k on \".tlwd\";\n\tsetAttr -k on \".tlht\";\n\tsetAttr -k on \".jfc\";\n\tsetAttr -cb on \".rsb\";\n\tsetAttr -k on \".ope\";\n\tsetAttr -k on \".oppf\";\n\tsetAttr -cb on \".hbl\";\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nselect -ne :characterPartition;\nconnectAttr \"blendShape1GroupId.id\" \"characterShape.iog.og[0].gid\";\nconnectAttr \"blendShape1Set.mwc\" \"characterShape.iog.og[0].gco\";\nconnectAttr \"groupId2.id\" \"characterShape.iog.og[1].gid\";\nconnectAttr \"tweakSet1.mwc\" \"characterShape.iog.og[1].gco\";\nconnectAttr \"skinCluster1GroupId.id\" \"characterShape.iog.og[3].gid\";\nconnectAttr \"skinCluster1Set.mwc\" \"characterShape.iog.og[3].gco\";\nconnectAttr \"skinCluster1.og[0]\" \"characterShape.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"characterShape.twl\";\nconnectAttr \"polyCube1.out\" \"characterShapeOrig.i\";\nconnectAttr \"character_set.av[1]\" \"joint1.rz\";\nconnectAttr \"joint1_rotateX.o\" \"joint1.rx\";\nconnectAttr \"joint1.s\" \"joint2.is\";\nconnectAttr \"joint1.rz\" \"joint2.rz\";\nconnectAttr \"pairBlend7.ory\" \"joint2.ry\";\nconnectAttr \"pairBlend7.orx\" \"joint2.rx\";\nconnectAttr \"joint2.s\" \"joint3.is\";\nconnectAttr \"joint2.rz\" \"joint3.rz\";\nconnectAttr \"pairBlend6.ory\" \"joint3.ry\";\nconnectAttr \"pairBlend6.orx\" \"joint3.rx\";\nconnectAttr \"joint3.s\" \"joint4.is\";\nconnectAttr \"joint3.rz\" \"joint4.rz\";\nconnectAttr \"pairBlend5.ory\" \"joint4.ry\";\nconnectAttr \"pairBlend5.orx\" \"joint4.rx\";\nconnectAttr \"joint4.s\" \"joint5.is\";\nconnectAttr \"joint4.rz\" \"joint5.rz\";\nconnectAttr \"pairBlend8.ory\" \"joint5.ry\";\nconnectAttr \"pairBlend8.orx\" \"joint5.rx\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"blendShape1.mlpr\" \"shapeEditorManager.bspr[0]\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"blendShape1GroupParts.og\" \"blendShape1.ip[0].ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1.ip[0].gi\";\nconnectAttr \"targetShape3.w\" \"blendShape1.it[0].itg[0].iti[6000].igt\";\nconnectAttr \"targetShape2.w\" \"blendShape1.it[0].itg[1].iti[6000].igt\";\nconnectAttr \"target1Shape.w\" \"blendShape1.it[0].itg[2].iti[6000].igt\";\nconnectAttr \"shapeEditorManager.obsv[0]\" \"blendShape1.tgdt[0].dpvs\";\nconnectAttr \"character_set.uv[21]\" \"blendShape1.w[0]\";\nconnectAttr \"character_set.uv[23]\" \"blendShape1.w[1]\";\nconnectAttr \"character_set.uv[22]\" \"blendShape1.w[2]\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"blendShape1GroupId.msg\" \"blendShape1Set.gn\" -na;\nconnectAttr \"characterShape.iog.og[0]\" \"blendShape1Set.dsm\" -na;\nconnectAttr \"blendShape1.msg\" \"blendShape1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"blendShape1GroupParts.ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"characterShape.iog.og[1]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"characterShapeOrig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"skinCluster1GroupParts.og\" \"skinCluster1.ip[0].ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1.ip[0].gi\";\nconnectAttr \"bindPose1.msg\" \"skinCluster1.bp\";\nconnectAttr \"joint1.wm\" \"skinCluster1.ma[0]\";\nconnectAttr \"joint2.wm\" \"skinCluster1.ma[1]\";\nconnectAttr \"joint3.wm\" \"skinCluster1.ma[2]\";\nconnectAttr \"joint4.wm\" \"skinCluster1.ma[3]\";\nconnectAttr \"joint5.wm\" \"skinCluster1.ma[4]\";\nconnectAttr \"joint1.liw\" \"skinCluster1.lw[0]\";\nconnectAttr \"joint2.liw\" \"skinCluster1.lw[1]\";\nconnectAttr \"joint3.liw\" \"skinCluster1.lw[2]\";\nconnectAttr \"joint4.liw\" \"skinCluster1.lw[3]\";\nconnectAttr \"joint5.liw\" \"skinCluster1.lw[4]\";\nconnectAttr \"joint1.obcc\" \"skinCluster1.ifcl[0]\";\nconnectAttr \"joint2.obcc\" \"skinCluster1.ifcl[1]\";\nconnectAttr \"joint3.obcc\" \"skinCluster1.ifcl[2]\";\nconnectAttr \"joint4.obcc\" \"skinCluster1.ifcl[3]\";\nconnectAttr \"joint5.obcc\" \"skinCluster1.ifcl[4]\";\nconnectAttr \"skinCluster1GroupId.msg\" \"skinCluster1Set.gn\" -na;\nconnectAttr \"characterShape.iog.og[3]\" \"skinCluster1Set.dsm\" -na;\nconnectAttr \"skinCluster1.msg\" \"skinCluster1Set.ub[0]\";\nconnectAttr \"blendShape1.og[0]\" \"skinCluster1GroupParts.ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1GroupParts.gi\";\nconnectAttr \"joint1.msg\" \"bindPose1.m[0]\";\nconnectAttr \"joint2.msg\" \"bindPose1.m[1]\";\nconnectAttr \"joint3.msg\" \"bindPose1.m[2]\";\nconnectAttr \"joint4.msg\" \"bindPose1.m[3]\";\nconnectAttr \"joint5.msg\" \"bindPose1.m[4]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[0]\";\nconnectAttr \"bindPose1.m[0]\" \"bindPose1.p[1]\";\nconnectAttr \"bindPose1.m[1]\" \"bindPose1.p[2]\";\nconnectAttr \"bindPose1.m[2]\" \"bindPose1.p[3]\";\nconnectAttr \"bindPose1.m[3]\" \"bindPose1.p[4]\";\nconnectAttr \"joint1.bps\" \"bindPose1.wm[0]\";\nconnectAttr \"joint2.bps\" \"bindPose1.wm[1]\";\nconnectAttr \"joint3.bps\" \"bindPose1.wm[2]\";\nconnectAttr \"joint4.bps\" \"bindPose1.wm[3]\";\nconnectAttr \"joint5.bps\" \"bindPose1.wm[4]\";\nconnectAttr \"blendShape1.w[0]\" \"character_set.dnsm[50]\";\nconnectAttr \"blendShape1.w[2]\" \"character_set.dnsm[51]\";\nconnectAttr \"blendShape1.w[1]\" \"character_set.dnsm[52]\";\nconnectAttr \"joint1.rz\" \"character_set.dnsm[53]\";\nconnectAttr \"character_setScheduler1.ce\" \"character_set.cer\";\nconnectAttr \"character_setClips1.cf\" \"character_setScheduler1.cfr\";\nconnectAttr \"character_setClips1.cl[0]\" \"character_setScheduler1.cl[0]\";\nconnectAttr \"character_setClips1.cl[1]\" \"character_setScheduler1.cl[1]\";\nconnectAttr \"character_setClips1.cl[2]\" \"character_setScheduler1.cl[2]\";\nconnectAttr \"character_setClips1.cl[3]\" \"character_setScheduler1.cl[3]\";\nconnectAttr \"character_setClips1.cl[4]\" \"character_setScheduler1.cl[4]\";\nconnectAttr \"character_setClips1.cl[4]\" \"character_setScheduler1.cl[8]\";\nconnectAttr \"character_setClips1.cl[1]\" \"character_setScheduler1.cl[9]\";\nconnectAttr \"character_setClips1.cl[2]\" \"character_setScheduler1.cl[10]\";\nconnectAttr \"character_setClips1.cl[3]\" \"character_setScheduler1.cl[11]\";\nconnectAttr \"setup.sf\" \"character_setScheduler1.st[0]\";\nconnectAttr \"clip_target1.sf\" \"character_setScheduler1.st[1]\";\nconnectAttr \"clip_target2.sf\" \"character_setScheduler1.st[2]\";\nconnectAttr \"clip_target3.sf\" \"character_setScheduler1.st[3]\";\nconnectAttr \"clip_joint_rot_z.sf\" \"character_setScheduler1.st[4]\";\nconnectAttr \"clip_joint_rot_z1.sf\" \"character_setScheduler1.st[8]\";\nconnectAttr \"clip_target4.sf\" \"character_setScheduler1.st[9]\";\nconnectAttr \"clip_target5.sf\" \"character_setScheduler1.st[10]\";\nconnectAttr \"clip_target6.sf\" \"character_setScheduler1.st[11]\";\nconnectAttr \"setup.ss\" \"character_setScheduler1.ss[0]\";\nconnectAttr \"clip_target1.ss\" \"character_setScheduler1.ss[1]\";\nconnectAttr \"clip_target2.ss\" \"character_setScheduler1.ss[2]\";\nconnectAttr \"clip_target3.ss\" \"character_setScheduler1.ss[3]\";\nconnectAttr \"clip_joint_rot_z.ss\" \"character_setScheduler1.ss[4]\";\nconnectAttr \"clip_joint_rot_z1.ss\" \"character_setScheduler1.ss[8]\";\nconnectAttr \"clip_target4.ss\" \"character_setScheduler1.ss[9]\";\nconnectAttr \"clip_target5.ss\" \"character_setScheduler1.ss[10]\";\nconnectAttr \"clip_target6.ss\" \"character_setScheduler1.ss[11]\";\nconnectAttr \"setup.se\" \"character_setScheduler1.se[0]\";\nconnectAttr \"clip_target1.se\" \"character_setScheduler1.se[1]\";\nconnectAttr \"clip_target2.se\" \"character_setScheduler1.se[2]\";\nconnectAttr \"clip_target3.se\" \"character_setScheduler1.se[3]\";\nconnectAttr \"clip_joint_rot_z.se\" \"character_setScheduler1.se[4]\";\nconnectAttr \"clip_joint_rot_z1.se\" \"character_setScheduler1.se[8]\";\nconnectAttr \"clip_target4.se\" \"character_setScheduler1.se[9]\";\nconnectAttr \"clip_target5.se\" \"character_setScheduler1.se[10]\";\nconnectAttr \"clip_target6.se\" \"character_setScheduler1.se[11]\";\nconnectAttr \"setup.w\" \"character_setScheduler1.w[0]\";\nconnectAttr \"clip_target1.w\" \"character_setScheduler1.w[1]\";\nconnectAttr \"clip_target2.w\" \"character_setScheduler1.w[2]\";\nconnectAttr \"clip_target3.w\" \"character_setScheduler1.w[3]\";\nconnectAttr \"clip_joint_rot_z.w\" \"character_setScheduler1.w[4]\";\nconnectAttr \"clip_joint_rot_z1.w\" \"character_setScheduler1.w[8]\";\nconnectAttr \"clip_target4.w\" \"character_setScheduler1.w[9]\";\nconnectAttr \"clip_target5.w\" \"character_setScheduler1.w[10]\";\nconnectAttr \"clip_target6.w\" \"character_setScheduler1.w[11]\";\nconnectAttr \"setup.ws\" \"character_setScheduler1.ws[0]\";\nconnectAttr \"clip_target1.ws\" \"character_setScheduler1.ws[1]\";\nconnectAttr \"clip_target2.ws\" \"character_setScheduler1.ws[2]\";\nconnectAttr \"clip_target3.ws\" \"character_setScheduler1.ws[3]\";\nconnectAttr \"clip_joint_rot_z.ws\" \"character_setScheduler1.ws[4]\";\nconnectAttr \"clip_joint_rot_z1.ws\" \"character_setScheduler1.ws[8]\";\nconnectAttr \"clip_target4.ws\" \"character_setScheduler1.ws[9]\";\nconnectAttr \"clip_target5.ws\" \"character_setScheduler1.ws[10]\";\nconnectAttr \"clip_target6.ws\" \"character_setScheduler1.ws[11]\";\nconnectAttr \"setup.ea\" \"character_setScheduler1.ea[0]\";\nconnectAttr \"clip_target1.ea\" \"character_setScheduler1.ea[1]\";\nconnectAttr \"clip_target2.ea\" \"character_setScheduler1.ea[2]\";\nconnectAttr \"clip_target3.ea\" \"character_setScheduler1.ea[3]\";\nconnectAttr \"clip_joint_rot_z.ea\" \"character_setScheduler1.ea[4]\";\nconnectAttr \"clip_joint_rot_z1.ea\" \"character_setScheduler1.ea[8]\";\nconnectAttr \"clip_target4.ea\" \"character_setScheduler1.ea[9]\";\nconnectAttr \"clip_target5.ea\" \"character_setScheduler1.ea[10]\";\nconnectAttr \"clip_target6.ea\" \"character_setScheduler1.ea[11]\";\nconnectAttr \"setup.cb\" \"character_setScheduler1.cb[0]\";\nconnectAttr \"clip_target1.cb\" \"character_setScheduler1.cb[1]\";\nconnectAttr \"clip_target2.cb\" \"character_setScheduler1.cb[2]\";\nconnectAttr \"clip_target3.cb\" \"character_setScheduler1.cb[3]\";\nconnectAttr \"clip_joint_rot_z.cb\" \"character_setScheduler1.cb[4]\";\nconnectAttr \"clip_joint_rot_z1.cb\" \"character_setScheduler1.cb[8]\";\nconnectAttr \"clip_target4.cb\" \"character_setScheduler1.cb[9]\";\nconnectAttr \"clip_target5.cb\" \"character_setScheduler1.cb[10]\";\nconnectAttr \"clip_target6.cb\" \"character_setScheduler1.cb[11]\";\nconnectAttr \"setup.ca\" \"character_setScheduler1.ca[0]\";\nconnectAttr \"clip_target1.ca\" \"character_setScheduler1.ca[1]\";\nconnectAttr \"clip_target2.ca\" \"character_setScheduler1.ca[2]\";\nconnectAttr \"clip_target3.ca\" \"character_setScheduler1.ca[3]\";\nconnectAttr \"clip_joint_rot_z.ca\" \"character_setScheduler1.ca[4]\";\nconnectAttr \"clip_joint_rot_z1.ca\" \"character_setScheduler1.ca[8]\";\nconnectAttr \"clip_target4.ca\" \"character_setScheduler1.ca[9]\";\nconnectAttr \"clip_target5.ca\" \"character_setScheduler1.ca[10]\";\nconnectAttr \"clip_target6.ca\" \"character_setScheduler1.ca[11]\";\nconnectAttr \"setup.sc\" \"character_setScheduler1.sc[0]\";\nconnectAttr \"clip_target1.sc\" \"character_setScheduler1.sc[1]\";\nconnectAttr \"clip_target2.sc\" \"character_setScheduler1.sc[2]\";\nconnectAttr \"clip_target3.sc\" \"character_setScheduler1.sc[3]\";\nconnectAttr \"clip_joint_rot_z.sc\" \"character_setScheduler1.sc[4]\";\nconnectAttr \"clip_joint_rot_z1.sc\" \"character_setScheduler1.sc[8]\";\nconnectAttr \"clip_target4.sc\" \"character_setScheduler1.sc[9]\";\nconnectAttr \"clip_target5.sc\" \"character_setScheduler1.sc[10]\";\nconnectAttr \"clip_target6.sc\" \"character_setScheduler1.sc[11]\";\nconnectAttr \"setup.h\" \"character_setScheduler1.h[0]\";\nconnectAttr \"clip_target1.h\" \"character_setScheduler1.h[1]\";\nconnectAttr \"clip_target2.h\" \"character_setScheduler1.h[2]\";\nconnectAttr \"clip_target3.h\" \"character_setScheduler1.h[3]\";\nconnectAttr \"clip_joint_rot_z.h\" \"character_setScheduler1.h[4]\";\nconnectAttr \"clip_joint_rot_z1.h\" \"character_setScheduler1.h[8]\";\nconnectAttr \"clip_target4.h\" \"character_setScheduler1.h[9]\";\nconnectAttr \"clip_target5.h\" \"character_setScheduler1.h[10]\";\nconnectAttr \"clip_target6.h\" \"character_setScheduler1.h[11]\";\nconnectAttr \"character_set.am\" \"character_setClips1.cd[0].cm\";\nconnectAttr \"character_set.cim\" \"character_setClips1.cd[0].cim\";\nconnectAttr \"character_set_blendShape1_target3.a\" \"character_setClips1.cel[0].cev[0].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target1.a\" \"character_setClips1.cel[0].cev[1].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target2.a\" \"character_setClips1.cel[0].cev[2].cevr\"\n\t\t;\nconnectAttr \"character_set_joint1_rotateZ.a\" \"character_setClips1.cel[0].cev[3].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target4.a\" \"character_setClips1.cel[1].cev[0].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target5.a\" \"character_setClips1.cel[1].cev[1].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target6.a\" \"character_setClips1.cel[1].cev[2].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target7.a\" \"character_setClips1.cel[2].cev[0].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target8.a\" \"character_setClips1.cel[2].cev[1].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target9.a\" \"character_setClips1.cel[2].cev[2].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target10.a\" \"character_setClips1.cel[3].cev[0].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target11.a\" \"character_setClips1.cel[3].cev[1].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target12.a\" \"character_setClips1.cel[3].cev[2].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target13.a\" \"character_setClips1.cel[4].cev[0].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target14.a\" \"character_setClips1.cel[4].cev[1].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target15.a\" \"character_setClips1.cel[4].cev[2].cevr\"\n\t\t;\nconnectAttr \"joint1_rotateZ.a\" \"character_setClips1.cel[4].cev[3].cevr\";\nconnectAttr \"setupSource.cl\" \"character_setClips1.sc[0]\";\nconnectAttr \"clip_target1Source.cl\" \"character_setClips1.sc[1]\";\nconnectAttr \"clip_target2Source.cl\" \"character_setClips1.sc[2]\";\nconnectAttr \"clip_target3Source.cl\" \"character_setClips1.sc[3]\";\nconnectAttr \"clip_joint_rot_zSource.cl\" \"character_setClips1.sc[4]\";\nconnectAttr \"setupSource.cl\" \"setup.cl\";\nconnectAttr \"clip_target1Source.cl\" \"clip_target1.cl\";\nconnectAttr \"clip_target2Source.cl\" \"clip_target2.cl\";\nconnectAttr \"clip_target3Source.cl\" \"clip_target3.cl\";\nconnectAttr \"joint1.rz\" \"pairBlend1.irz2\";\nconnectAttr \"joint2.blendCharacterset\" \"pairBlend1.w\";\nconnectAttr \"pairBlend1_inRotateZ1.o\" \"pairBlend1.irz1\";\nconnectAttr \"joint2.rz\" \"pairBlend2.irz2\";\nconnectAttr \"joint3.blendCharacterset\" \"pairBlend2.w\";\nconnectAttr \"pairBlend2_inRotateZ1.o\" \"pairBlend2.irz1\";\nconnectAttr \"joint3.rz\" \"pairBlend3.irz2\";\nconnectAttr \"joint4.blendCharacterset\" \"pairBlend3.w\";\nconnectAttr \"pairBlend3_inRotateZ1.o\" \"pairBlend3.irz1\";\nconnectAttr \"joint4.rz\" \"pairBlend4.irz2\";\nconnectAttr \"joint5.blendCharacterset\" \"pairBlend4.w\";\nconnectAttr \"pairBlend4_inRotateZ1.o\" \"pairBlend4.irz1\";\nconnectAttr \"pairBlend3.orx\" \"pairBlend5.irx2\";\nconnectAttr \"pairBlend3.ory\" \"pairBlend5.iry2\";\nconnectAttr \"joint3.rz\" \"pairBlend5.irz2\";\nconnectAttr \"joint4.blendPairBlend3\" \"pairBlend5.w\";\nconnectAttr \"pairBlend5_inRotateZ1.o\" \"pairBlend5.irz1\";\nconnectAttr \"pairBlend2.orx\" \"pairBlend6.irx2\";\nconnectAttr \"pairBlend2.ory\" \"pairBlend6.iry2\";\nconnectAttr \"joint2.rz\" \"pairBlend6.irz2\";\nconnectAttr \"joint3.blendPairBlend2\" \"pairBlend6.w\";\nconnectAttr \"pairBlend6_inRotateZ1.o\" \"pairBlend6.irz1\";\nconnectAttr \"pairBlend1.orx\" \"pairBlend7.irx2\";\nconnectAttr \"pairBlend1.ory\" \"pairBlend7.iry2\";\nconnectAttr \"joint1.rz\" \"pairBlend7.irz2\";\nconnectAttr \"joint2.blendPairBlend1\" \"pairBlend7.w\";\nconnectAttr \"pairBlend7_inRotateZ1.o\" \"pairBlend7.irz1\";\nconnectAttr \"pairBlend4.orx\" \"pairBlend8.irx2\";\nconnectAttr \"pairBlend4.ory\" \"pairBlend8.iry2\";\nconnectAttr \"joint4.rz\" \"pairBlend8.irz2\";\nconnectAttr \"joint5.blendPairBlend4\" \"pairBlend8.w\";\nconnectAttr \"pairBlend8_inRotateZ1.o\" \"pairBlend8.irz1\";\nconnectAttr \"clip_joint_rot_zSource.cl\" \"clip_joint_rot_z.cl\";\nconnectAttr \"clip_target3Source.cl\" \"clip_target6.cl\";\nconnectAttr \"clip_target2Source.cl\" \"clip_target5.cl\";\nconnectAttr \"clip_target1Source.cl\" \"clip_target4.cl\";\nconnectAttr \"clip_joint_rot_zSource.cl\" \"clip_joint_rot_z1.cl\";\nconnectAttr \"character_set_blendShape1_target7.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[0].dn\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target3.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[1].dn\"\n\t\t;\nconnectAttr \"pairBlend5.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[2].dn\";\nconnectAttr \"clip_joint_rot_z.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[3].dn\"\n\t\t;\nconnectAttr \"clip_target3.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[4].dn\";\nconnectAttr \"character_setScheduler1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[5].dn\"\n\t\t;\nconnectAttr \"clip_target4.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[6].dn\";\nconnectAttr \"joint5.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[7].dn\";\nconnectAttr \"pairBlend6.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[8].dn\";\nconnectAttr \"pairBlend2.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[9].dn\";\nconnectAttr \"clip_target1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[10].dn\";\nconnectAttr \"character_setClips1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[11].dn\"\n\t\t;\nconnectAttr \"clip_target6.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[12].dn\";\nconnectAttr \"character_set_blendShape1_target9.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[13].dn\"\n\t\t;\nconnectAttr \"clip_joint_rot_z1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[14].dn\"\n\t\t;\nconnectAttr \"joint3.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[15].dn\";\nconnectAttr \"joint4.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[16].dn\";\nconnectAttr \"character_set_blendShape1_target6.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[17].dn\"\n\t\t;\nconnectAttr \"skinCluster1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[18].dn\";\nconnectAttr \"character_set_blendShape1_target2.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[19].dn\"\n\t\t;\nconnectAttr \"joint1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[20].dn\";\nconnectAttr \"setup.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[21].dn\";\nconnectAttr \"pairBlend4.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[22].dn\";\nconnectAttr \"pairBlend1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[23].dn\";\nconnectAttr \"character_set_blendShape1_target11.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[24].dn\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target8.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[25].dn\"\n\t\t;\nconnectAttr \"joint1_rotateX.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[26].dn\";\nconnectAttr \"joint1_rotateZ.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[27].dn\";\nconnectAttr \"characterShape.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[28].dn\";\nconnectAttr \"character_set_blendShape1_target15.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[29].dn\"\n\t\t;\nconnectAttr \"bindPose1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[30].dn\";\nconnectAttr \"character_set.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[31].dn\";\nconnectAttr \"character_set_blendShape1_target5.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[32].dn\"\n\t\t;\nconnectAttr \"clip_target2.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[33].dn\";\nconnectAttr \"character_set_joint1_rotateZ.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[34].dn\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target4.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[35].dn\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target13.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[36].dn\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target12.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[37].dn\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[38].dn\"\n\t\t;\nconnectAttr \"joint2.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[39].dn\";\nconnectAttr \"pairBlend8.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[40].dn\";\nconnectAttr \"pairBlend3.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[41].dn\";\nconnectAttr \"clip_target5.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[42].dn\";\nconnectAttr \"pairBlend7.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[43].dn\";\nconnectAttr \"character_set_blendShape1_target10.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[44].dn\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target14.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[45].dn\"\n\t\t;\nconnectAttr \"maya2glTF_scriptNode.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[46].dn\"\n\t\t;\nconnectAttr \":defaultArnoldDisplayDriver.msg\" \":defaultArnoldRenderOptions.drivers\"\n\t\t -na;\nconnectAttr \":defaultArnoldFilter.msg\" \":defaultArnoldRenderOptions.filt\";\nconnectAttr \":defaultArnoldDriver.msg\" \":defaultArnoldRenderOptions.drvr\";\nconnectAttr \"trackInfoManager1.msg\" \":sequenceManager1.tim\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"characterShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"target1Shape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"targetShape2.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"targetShape3.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"character_set.pa\" \":characterPartition.st\" -na;\n// End of Complex1.ma\n"
  },
  {
    "path": "maya/scenes/complex/ComplexTraxAnim1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: ComplexTraxAnim1.ma\n//Last modified: Sun, Feb 03, 2019 11:57:22 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires -nodeType \"aiOptions\" -nodeType \"aiAOVDriver\" -nodeType \"aiAOVFilter\" \"mtoa\" \"2.1.0.1\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"811D66CC-428E-11CE-4D28-B5BB1C7CB028\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -13.122390860867784 3.2238160445829411 3.8124069696161076 ;\n\tsetAttr \".r\" -type \"double3\" -0.93835272960183613 -73.799999999999301 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"F0656A63-4F39-C37B-DF60-A8944B9E2774\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 13.666809519018694;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0 3 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"47775968-481D-959C-DEC2-C4912A1B5C1A\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"EB095155-4DB1-0744-A568-14BA62C44391\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"front\";\n\trename -uid \"D2B058DF-4F52-A165-3820-02ACBF177175\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 2.5 1000.1031246826499 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"C0076C6D-486D-29FF-8F70-71ABAEEFAFEB\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1031246826499;\n\tsetAttr \".ow\" 11.922400202201116;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0 2.5 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"side\";\n\trename -uid \"16C0B8E8-4BA7-F9BB-4576-23BDBB79EA1F\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"38CC8E14-4B71-AE99-14B3-67A7483C201E\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -n \"character\";\n\trename -uid \"308473CD-49C6-7C12-3686-70A190B85479\";\n\tsetAttr \".t\" -type \"double3\" 0 2.5 0 ;\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\n\tsetAttr \".rp\" -type \"double3\" 0 -2.5 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0 -2.5 0 ;\ncreateNode mesh -n \"characterShape\" -p \"character\";\n\trename -uid \"58FFE630-426C-2EEC-EB41-73B726FBAFC3\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 6 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode mesh -n \"characterShapeOrig\" -p \"character\";\n\trename -uid \"BB1EBB54-47C9-CA20-0ED8-C4BDF9550EE1\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"target1\";\n\trename -uid \"1862B60C-4CCB-46C8-6EE3-E1A3BB6F4E93\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1.5 2.5 0 ;\n\tsetAttr \".rp\" -type \"double3\" 0 -2.5 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0 -2.5 0 ;\ncreateNode mesh -n \"target1Shape\" -p \"target1\";\n\trename -uid \"4BEAC819-49DA-ADB7-DC45-B9B58D389E94\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.3750000074505806 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 38 \".uvst[0].uvsp[0:37]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.050000001 0.625 0.050000001 0.375 0.1 0.625 0.1 0.375 0.15000001 0.625 0.15000001\n\t\t 0.375 0.2 0.625 0.2 0.375 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.55000001 0.625\n\t\t 0.55000001 0.375 0.60000002 0.625 0.60000002 0.375 0.65000004 0.625 0.65000004 0.375\n\t\t 0.70000005 0.625 0.70000005 0.375 0.75000006 0.625 0.75000006 0.375 1 0.625 1 0.875\n\t\t 0 0.875 0.050000001 0.875 0.1 0.875 0.15000001 0.875 0.2 0.875 0.25 0.125 0 0.125\n\t\t 0.050000001 0.125 0.1 0.125 0.15000001 0.125 0.2 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".pt[8:15]\" -type \"float3\"  -0.25000018 -2.0861626e-07 \n\t\t0.25000018 0.25000018 -2.0861626e-07 0.25000018 -0.25000018 1.7881393e-07 0.25000018 \n\t\t0.25000018 1.7881393e-07 0.25000018 -0.25000018 1.7881393e-07 -0.25000018 0.25000018 \n\t\t1.7881393e-07 -0.25000018 -0.25000018 -2.0861626e-07 -0.25000018 0.25000018 -2.0861626e-07 \n\t\t-0.25000018;\n\tsetAttr -s 24 \".vt[0:23]\"  -0.5 -2.5 0.5 0.5 -2.5 0.5 -0.5 -1.5 0.5\n\t\t 0.5 -1.5 0.5 -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5 -0.5 1.5 0.5 0.5 1.5 0.5\n\t\t -0.5 2.5 0.5 0.5 2.5 0.5 -0.5 2.5 -0.5 0.5 2.5 -0.5 -0.5 1.5 -0.5 0.5 1.5 -0.5 -0.5 0.5 -0.5\n\t\t 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5 -0.5 -1.5 -0.5 0.5 -1.5 -0.5 -0.5 -2.5 -0.5\n\t\t 0.5 -2.5 -0.5;\n\tsetAttr -s 44 \".ed[0:43]\"  0 1 0 2 3 1 4 5 1 6 7 1 8 9 1 10 11 0 12 13 0\n\t\t 14 15 1 16 17 1 18 19 1 20 21 1 22 23 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 8 0\n\t\t 7 9 0 8 10 0 9 11 0 10 12 0 11 13 0 12 14 0 13 15 0 14 16 0 15 17 0 16 18 0 17 19 0\n\t\t 18 20 0 19 21 0 20 22 0 21 23 0 22 0 0 23 1 0 21 3 1 19 5 1 17 7 1 15 9 1 20 2 1\n\t\t 18 4 1 16 6 1 14 8 1;\n\tsetAttr -s 22 -ch 88 \".fc[0:21]\" -type \"polyFaces\" \n\t\tf 4 0 13 -2 -13\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 15 -3 -15\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 17 -4 -17\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 19 -5 -19\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 4 21 -6 -21\n\t\tmu 0 4 8 9 11 10\n\t\tf 4 5 23 -7 -23\n\t\tmu 0 4 10 11 13 12\n\t\tf 4 6 25 -8 -25\n\t\tmu 0 4 12 13 15 14\n\t\tf 4 7 27 -9 -27\n\t\tmu 0 4 14 15 17 16\n\t\tf 4 8 29 -10 -29\n\t\tmu 0 4 16 17 19 18\n\t\tf 4 9 31 -11 -31\n\t\tmu 0 4 18 19 21 20\n\t\tf 4 10 33 -12 -33\n\t\tmu 0 4 20 21 23 22\n\t\tf 4 11 35 -1 -35\n\t\tmu 0 4 22 23 25 24\n\t\tf 4 -36 -34 36 -14\n\t\tmu 0 4 1 26 27 3\n\t\tf 4 -37 -32 37 -16\n\t\tmu 0 4 3 27 28 5\n\t\tf 4 -38 -30 38 -18\n\t\tmu 0 4 5 28 29 7\n\t\tf 4 -39 -28 39 -20\n\t\tmu 0 4 7 29 30 9\n\t\tf 4 -40 -26 -24 -22\n\t\tmu 0 4 9 30 31 11\n\t\tf 4 34 12 -41 32\n\t\tmu 0 4 32 0 2 33\n\t\tf 4 40 14 -42 30\n\t\tmu 0 4 33 2 4 34\n\t\tf 4 41 16 -43 28\n\t\tmu 0 4 34 4 6 35\n\t\tf 4 42 18 -44 26\n\t\tmu 0 4 35 6 8 36\n\t\tf 4 43 20 22 24\n\t\tmu 0 4 36 8 10 37;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"target2\";\n\trename -uid \"6461DEC0-45A5-45D4-85F3-3AB9838E5E98\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 3 2.5 0 ;\n\tsetAttr \".rp\" -type \"double3\" 0 -2.5 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0 -2.5 0 ;\ncreateNode mesh -n \"targetShape2\" -p \"target2\";\n\trename -uid \"1E5E3C1A-457B-D780-7DFF-F28CCD21310E\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.37500001490116119 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 38 \".uvst[0].uvsp[0:37]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.050000001 0.625 0.050000001 0.375 0.1 0.625 0.1 0.375 0.15000001 0.625 0.15000001\n\t\t 0.375 0.2 0.625 0.2 0.375 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.55000001 0.625\n\t\t 0.55000001 0.375 0.60000002 0.625 0.60000002 0.375 0.65000004 0.625 0.65000004 0.375\n\t\t 0.70000005 0.625 0.70000005 0.375 0.75000006 0.625 0.75000006 0.375 1 0.625 1 0.875\n\t\t 0 0.875 0.050000001 0.875 0.1 0.875 0.15000001 0.875 0.2 0.875 0.25 0.125 0 0.125\n\t\t 0.050000001 0.125 0.1 0.125 0.15000001 0.125 0.2 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".pt\";\n\tsetAttr \".pt[6]\" -type \"float3\" -0.25 0 0.25 ;\n\tsetAttr \".pt[7]\" -type \"float3\" 0.25 0 0.25 ;\n\tsetAttr \".pt[8]\" -type \"float3\" -0.25 0 0.25 ;\n\tsetAttr \".pt[9]\" -type \"float3\" 0.25 0 0.25 ;\n\tsetAttr \".pt[14]\" -type \"float3\" -0.25 0 -0.25 ;\n\tsetAttr \".pt[15]\" -type \"float3\" 0.25 0 -0.25 ;\n\tsetAttr \".pt[16]\" -type \"float3\" -0.25 0 -0.25 ;\n\tsetAttr \".pt[17]\" -type \"float3\" 0.25 0 -0.25 ;\n\tsetAttr -s 24 \".vt[0:23]\"  -0.5 -2.5 0.5 0.5 -2.5 0.5 -0.5 -1.5 0.5\n\t\t 0.5 -1.5 0.5 -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5 -0.5 1.5 0.5 0.5 1.5 0.5\n\t\t -0.5 2.5 0.5 0.5 2.5 0.5 -0.5 2.5 -0.5 0.5 2.5 -0.5 -0.5 1.5 -0.5 0.5 1.5 -0.5 -0.5 0.5 -0.5\n\t\t 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5 -0.5 -1.5 -0.5 0.5 -1.5 -0.5 -0.5 -2.5 -0.5\n\t\t 0.5 -2.5 -0.5;\n\tsetAttr -s 44 \".ed[0:43]\"  0 1 0 2 3 1 4 5 1 6 7 1 8 9 1 10 11 0 12 13 0\n\t\t 14 15 1 16 17 1 18 19 1 20 21 1 22 23 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 8 0\n\t\t 7 9 0 8 10 0 9 11 0 10 12 0 11 13 0 12 14 0 13 15 0 14 16 0 15 17 0 16 18 0 17 19 0\n\t\t 18 20 0 19 21 0 20 22 0 21 23 0 22 0 0 23 1 0 21 3 1 19 5 1 17 7 1 15 9 1 20 2 1\n\t\t 18 4 1 16 6 1 14 8 1;\n\tsetAttr -s 22 -ch 88 \".fc[0:21]\" -type \"polyFaces\" \n\t\tf 4 0 13 -2 -13\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 15 -3 -15\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 17 -4 -17\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 19 -5 -19\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 4 21 -6 -21\n\t\tmu 0 4 8 9 11 10\n\t\tf 4 5 23 -7 -23\n\t\tmu 0 4 10 11 13 12\n\t\tf 4 6 25 -8 -25\n\t\tmu 0 4 12 13 15 14\n\t\tf 4 7 27 -9 -27\n\t\tmu 0 4 14 15 17 16\n\t\tf 4 8 29 -10 -29\n\t\tmu 0 4 16 17 19 18\n\t\tf 4 9 31 -11 -31\n\t\tmu 0 4 18 19 21 20\n\t\tf 4 10 33 -12 -33\n\t\tmu 0 4 20 21 23 22\n\t\tf 4 11 35 -1 -35\n\t\tmu 0 4 22 23 25 24\n\t\tf 4 -36 -34 36 -14\n\t\tmu 0 4 1 26 27 3\n\t\tf 4 -37 -32 37 -16\n\t\tmu 0 4 3 27 28 5\n\t\tf 4 -38 -30 38 -18\n\t\tmu 0 4 5 28 29 7\n\t\tf 4 -39 -28 39 -20\n\t\tmu 0 4 7 29 30 9\n\t\tf 4 -40 -26 -24 -22\n\t\tmu 0 4 9 30 31 11\n\t\tf 4 34 12 -41 32\n\t\tmu 0 4 32 0 2 33\n\t\tf 4 40 14 -42 30\n\t\tmu 0 4 33 2 4 34\n\t\tf 4 41 16 -43 28\n\t\tmu 0 4 34 4 6 35\n\t\tf 4 42 18 -44 26\n\t\tmu 0 4 35 6 8 36\n\t\tf 4 43 20 22 24\n\t\tmu 0 4 36 8 10 37;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"target3\";\n\trename -uid \"C30B2E7D-489D-A02B-AEC9-4989C22B2313\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 4.5 2.5 0 ;\n\tsetAttr \".rp\" -type \"double3\" 0 -2.5 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0 -2.5 0 ;\ncreateNode mesh -n \"targetShape3\" -p \"target3\";\n\trename -uid \"CFD8C8AE-41E1-3E62-8406-9ABE42EACB8A\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.37500001862645149 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 38 \".uvst[0].uvsp[0:37]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.050000001 0.625 0.050000001 0.375 0.1 0.625 0.1 0.375 0.15000001 0.625 0.15000001\n\t\t 0.375 0.2 0.625 0.2 0.375 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.55000001 0.625\n\t\t 0.55000001 0.375 0.60000002 0.625 0.60000002 0.375 0.65000004 0.625 0.65000004 0.375\n\t\t 0.70000005 0.625 0.70000005 0.375 0.75000006 0.625 0.75000006 0.375 1 0.625 1 0.875\n\t\t 0 0.875 0.050000001 0.875 0.1 0.875 0.15000001 0.875 0.2 0.875 0.25 0.125 0 0.125\n\t\t 0.050000001 0.125 0.1 0.125 0.15000001 0.125 0.2 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".pt\";\n\tsetAttr \".pt[4]\" -type \"float3\" -0.25 0 0.25 ;\n\tsetAttr \".pt[5]\" -type \"float3\" 0.25 0 0.25 ;\n\tsetAttr \".pt[6]\" -type \"float3\" -0.25 0 0.25 ;\n\tsetAttr \".pt[7]\" -type \"float3\" 0.25 0 0.25 ;\n\tsetAttr \".pt[16]\" -type \"float3\" -0.25 0 -0.25 ;\n\tsetAttr \".pt[17]\" -type \"float3\" 0.25 0 -0.25 ;\n\tsetAttr \".pt[18]\" -type \"float3\" -0.25 0 -0.25 ;\n\tsetAttr \".pt[19]\" -type \"float3\" 0.25 0 -0.25 ;\n\tsetAttr -s 24 \".vt[0:23]\"  -0.5 -2.5 0.5 0.5 -2.5 0.5 -0.5 -1.5 0.5\n\t\t 0.5 -1.5 0.5 -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5 -0.5 1.5 0.5 0.5 1.5 0.5\n\t\t -0.5 2.5 0.5 0.5 2.5 0.5 -0.5 2.5 -0.5 0.5 2.5 -0.5 -0.5 1.5 -0.5 0.5 1.5 -0.5 -0.5 0.5 -0.5\n\t\t 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5 -0.5 -1.5 -0.5 0.5 -1.5 -0.5 -0.5 -2.5 -0.5\n\t\t 0.5 -2.5 -0.5;\n\tsetAttr -s 44 \".ed[0:43]\"  0 1 0 2 3 1 4 5 1 6 7 1 8 9 1 10 11 0 12 13 0\n\t\t 14 15 1 16 17 1 18 19 1 20 21 1 22 23 0 0 2 0 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 8 0\n\t\t 7 9 0 8 10 0 9 11 0 10 12 0 11 13 0 12 14 0 13 15 0 14 16 0 15 17 0 16 18 0 17 19 0\n\t\t 18 20 0 19 21 0 20 22 0 21 23 0 22 0 0 23 1 0 21 3 1 19 5 1 17 7 1 15 9 1 20 2 1\n\t\t 18 4 1 16 6 1 14 8 1;\n\tsetAttr -s 22 -ch 88 \".fc[0:21]\" -type \"polyFaces\" \n\t\tf 4 0 13 -2 -13\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 15 -3 -15\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 17 -4 -17\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 19 -5 -19\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 4 21 -6 -21\n\t\tmu 0 4 8 9 11 10\n\t\tf 4 5 23 -7 -23\n\t\tmu 0 4 10 11 13 12\n\t\tf 4 6 25 -8 -25\n\t\tmu 0 4 12 13 15 14\n\t\tf 4 7 27 -9 -27\n\t\tmu 0 4 14 15 17 16\n\t\tf 4 8 29 -10 -29\n\t\tmu 0 4 16 17 19 18\n\t\tf 4 9 31 -11 -31\n\t\tmu 0 4 18 19 21 20\n\t\tf 4 10 33 -12 -33\n\t\tmu 0 4 20 21 23 22\n\t\tf 4 11 35 -1 -35\n\t\tmu 0 4 22 23 25 24\n\t\tf 4 -36 -34 36 -14\n\t\tmu 0 4 1 26 27 3\n\t\tf 4 -37 -32 37 -16\n\t\tmu 0 4 3 27 28 5\n\t\tf 4 -38 -30 38 -18\n\t\tmu 0 4 5 28 29 7\n\t\tf 4 -39 -28 39 -20\n\t\tmu 0 4 7 29 30 9\n\t\tf 4 -40 -26 -24 -22\n\t\tmu 0 4 9 30 31 11\n\t\tf 4 34 12 -41 32\n\t\tmu 0 4 32 0 2 33\n\t\tf 4 40 14 -42 30\n\t\tmu 0 4 33 2 4 34\n\t\tf 4 41 16 -43 28\n\t\tmu 0 4 34 4 6 35\n\t\tf 4 42 18 -44 26\n\t\tmu 0 4 35 6 8 36\n\t\tf 4 43 20 22 24\n\t\tmu 0 4 36 8 10 37;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode joint -n \"joint1\";\n\trename -uid \"657D87BB-4410-833E-2100-56AF3A81B2C2\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".t\" -type \"double3\" 0 0.5 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 89.999999999999986 ;\n\tsetAttr \".ssc\" no;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 0.5 0 1;\n\tsetAttr \".radi\" 2;\ncreateNode joint -n \"joint2\" -p \"joint1\";\n\trename -uid \"784BD652-41D6-1FB4-BD6A-D5AC3B351063\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\taddAttr -ci true -k true -sn \"blendCharacterset\" -ln \"blendCharacterset\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\taddAttr -ci true -k true -sn \"blendPairBlend1\" -ln \"blendPairBlend1\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 1;\n\tsetAttr \".t\" -type \"double3\" 1 2.2204460492503131e-16 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".ssc\" no;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 1.5 0 1;\n\tsetAttr \".radi\" 2;\n\tsetAttr -k on \".blendCharacterset\" 0;\n\tsetAttr -k on \".blendPairBlend1\" 0;\ncreateNode joint -n \"joint3\" -p \"joint2\";\n\trename -uid \"2F5193C2-4CEE-967B-98EE-52B8453B373D\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\taddAttr -ci true -k true -sn \"blendCharacterset\" -ln \"blendCharacterset\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\taddAttr -ci true -k true -sn \"blendPairBlend2\" -ln \"blendPairBlend2\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 2;\n\tsetAttr \".t\" -type \"double3\" 1 2.2204460492503131e-16 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".ssc\" no;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 2.5 0 1;\n\tsetAttr \".radi\" 2;\n\tsetAttr -k on \".blendCharacterset\" 0;\n\tsetAttr -k on \".blendPairBlend2\" 0;\ncreateNode joint -n \"joint4\" -p \"joint3\";\n\trename -uid \"8A97BC9F-4A21-300B-0B62-42B95BB71110\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\taddAttr -ci true -k true -sn \"blendCharacterset\" -ln \"blendCharacterset\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\taddAttr -ci true -k true -sn \"blendPairBlend3\" -ln \"blendPairBlend3\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 3;\n\tsetAttr \".t\" -type \"double3\" 1 2.2204460492503131e-16 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".ssc\" no;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 3.5 0 1;\n\tsetAttr \".radi\" 2;\n\tsetAttr -k on \".blendCharacterset\" 0;\n\tsetAttr -k on \".blendPairBlend3\" 0;\ncreateNode joint -n \"joint5\" -p \"joint4\";\n\trename -uid \"7D29A041-4D85-902A-A5FF-08A5F7504E91\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\taddAttr -ci true -k true -sn \"blendCharacterset\" -ln \"blendCharacterset\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\taddAttr -ci true -k true -sn \"blendPairBlend4\" -ln \"blendPairBlend4\" -dv 1 -smn \n\t\t0 -smx 1 -at \"double\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 4;\n\tsetAttr \".t\" -type \"double3\" 1 2.2204460492503131e-16 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 -89.999999999999986 ;\n\tsetAttr \".ssc\" no;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 4.5 0 1;\n\tsetAttr \".radi\" 2;\n\tsetAttr -k on \".blendCharacterset\" 0;\n\tsetAttr -k on \".blendPairBlend4\" 0;\ncreateNode transform -n \"camera1\";\n\trename -uid \"AA87BE12-4806-9E8C-F282-EAA69257F4DE\";\n\tsetAttr \".t\" -type \"double3\" 5.6982398551890014 9.3670995521943432 7.9975475430593601 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"E96011B2-4807-1D43-BE7B-D6A251FB6D04\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 11.930576417602257;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 3.077683537175254 0.5 0 ;\n\tsetAttr \".dr\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"77747829-413C-0556-7449-4E81CF1F02BF\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"51359F71-4B18-4661-FA35-34A02DCF1785\";\n\tsetAttr \".bsdt[0].bscd\" -type \"Int32Array\" 1 0 ;\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"4C2C33C6-4876-C240-A190-EE98F29E2903\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"56677627-4BC9-4C65-217B-B4B039A310D9\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"B4A9A8EB-47B1-1301-5F6C-4687950E3E5E\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"DC6CCD6F-4AAC-BC15-FB5D-61B3FB1762FA\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"7F7C254D-4AA6-16A8-00D4-81B62C35963B\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"D0DF4715-481F-95AB-8AA0-D4BACE01D98F\";\n\tsetAttr \".h\" 5;\n\tsetAttr \".sh\" 5;\n\tsetAttr \".cuv\" 4;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"EC8E308D-42CF-689D-CAEA-FFB37284F009\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange -62.790346 510.290346 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 10 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"F73172AE-431E-C65E-2119-0FB6E7DEE1FC\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 300 -ast 1 -aet 300 \";\n\tsetAttr \".st\" 6;\ncreateNode blendShape -n \"blendShape1\";\n\trename -uid \"7EA2D131-48BC-E4B5-E208-C78B9C20FC41\";\n\taddAttr -ci true -h true -sn \"aal\" -ln \"attributeAliasList\" -dt \"attributeAlias\";\n\tsetAttr -s 3 \".w\";\n\tsetAttr -s 3 \".w\";\n\tsetAttr -s 3 \".it[0].itg\";\n\tsetAttr \".mlid\" 0;\n\tsetAttr \".mlpr\" 0;\n\tsetAttr -s 3 \".pndr[0:2]\"  0 0 0;\n\tsetAttr \".tgdt[0].cid\" -type \"Int32Array\" 3 0 1 2 ;\n\tsetAttr \".aal\" -type \"attributeAlias\" {\"target3\",\"weight[0]\",\"target2\",\"weight[1]\"\n\t\t,\"target1\",\"weight[2]\"} ;\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"E762CE4D-437D-702A-289A-2BBA7B4BA341\";\ncreateNode objectSet -n \"blendShape1Set\";\n\trename -uid \"B7DD1F34-4F1F-8478-43FF-BD803E76DCCA\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"blendShape1GroupId\";\n\trename -uid \"5865CD67-4E00-8384-A5FC-E8B65FE5B181\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"blendShape1GroupParts\";\n\trename -uid \"D97E1207-43B6-0354-7D60-BE8E9B8DC917\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"924ECB26-4516-F115-5E6F-BE8065F3E523\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"63A278ED-457B-1811-E2EE-55A9845920A5\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"B7F679EA-4E96-5333-5BA3-27B09D94BD81\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode skinCluster -n \"skinCluster1\";\n\trename -uid \"5B876C25-4DF5-A02A-B1E3-3F8DB7F5D653\";\n\tsetAttr -s 24 \".wl\";\n\tsetAttr \".wl[0:23].w\"\n\t\t5 0 0.91617671772720477 1 0.068145375698717703 2 0.0113108236756445 \n\t\t3 0.0031701616530353089 4 0.0011969212453977124\n\t\t5 0 0.91617671772720477 1 0.068145375698717703 2 0.0113108236756445 \n\t\t3 0.0031701616530353089 4 0.0011969212453977124\n\t\t5 0 0.67361517143952521 1 0.29938452063978915 2 0.022268270130232248 \n\t\t3 0.0036961051930838157 4 0.001035932597369512\n\t\t5 0 0.67361517143952521 1 0.29938452063978915 2 0.022268270130232248 \n\t\t3 0.0036961051930838157 4 0.001035932597369512\n\t\t5 0 0.23058870583529889 1 0.51882458812942223 2 0.23058870583529889 \n\t\t3 0.017151226053865203 4 0.0028467741461148002\n\t\t5 0 0.23058870583529889 1 0.51882458812942223 2 0.23058870583529889 \n\t\t3 0.017151226053865203 4 0.0028467741461148002\n\t\t5 0 0.016909347111319872 1 0.2273367778299672 2 0.51150775011742589 \n\t\t3 0.2273367778299672 4 0.016909347111319872\n\t\t5 0 0.016909347111319872 1 0.2273367778299672 2 0.51150775011742589 \n\t\t3 0.2273367778299672 4 0.016909347111319872\n\t\t5 0 0.0028467741461148002 1 0.017151226053865203 2 0.23058870583529889 \n\t\t3 0.51882458812942223 4 0.23058870583529889\n\t\t5 0 0.0028467741461148002 1 0.017151226053865203 2 0.23058870583529889 \n\t\t3 0.51882458812942223 4 0.23058870583529889\n\t\t5 0 0.0016554543598107491 1 0.005906497654139589 2 0.035585428015436037 \n\t\t3 0.47842630998530683 4 0.47842630998530683\n\t\t5 0 0.0016554543598107491 1 0.005906497654139589 2 0.035585428015436037 \n\t\t3 0.47842630998530683 4 0.47842630998530683\n\t\t5 0 0.0016554543598107491 1 0.005906497654139589 2 0.035585428015436037 \n\t\t3 0.47842630998530683 4 0.47842630998530683\n\t\t5 0 0.0016554543598107491 1 0.005906497654139589 2 0.035585428015436037 \n\t\t3 0.47842630998530683 4 0.47842630998530683\n\t\t5 0 0.0028467741461148002 1 0.017151226053865203 2 0.23058870583529889 \n\t\t3 0.51882458812942223 4 0.23058870583529889\n\t\t5 0 0.0028467741461148002 1 0.017151226053865203 2 0.23058870583529889 \n\t\t3 0.51882458812942223 4 0.23058870583529889\n\t\t5 0 0.016909347111319872 1 0.2273367778299672 2 0.51150775011742589 \n\t\t3 0.2273367778299672 4 0.016909347111319872\n\t\t5 0 0.016909347111319872 1 0.2273367778299672 2 0.51150775011742589 \n\t\t3 0.2273367778299672 4 0.016909347111319872\n\t\t5 0 0.23058870583529889 1 0.51882458812942223 2 0.23058870583529889 \n\t\t3 0.017151226053865203 4 0.0028467741461148002\n\t\t5 0 0.23058870583529889 1 0.51882458812942223 2 0.23058870583529889 \n\t\t3 0.017151226053865203 4 0.0028467741461148002\n\t\t5 0 0.67361517143952521 1 0.29938452063978915 2 0.022268270130232248 \n\t\t3 0.0036961051930838157 4 0.001035932597369512\n\t\t5 0 0.67361517143952521 1 0.29938452063978915 2 0.022268270130232248 \n\t\t3 0.0036961051930838157 4 0.001035932597369512\n\t\t5 0 0.91617671772720477 1 0.068145375698717703 2 0.0113108236756445 \n\t\t3 0.0031701616530353089 4 0.0011969212453977124\n\t\t5 0 0.91617671772720477 1 0.068145375698717703 2 0.0113108236756445 \n\t\t3 0.0031701616530353089 4 0.0011969212453977124;\n\tsetAttr -s 5 \".pm\";\n\tsetAttr \".pm[0]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -0.5 -1.1102230246251565e-16 0 1;\n\tsetAttr \".pm[1]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -1.5 -3.3306690738754696e-16 0 1;\n\tsetAttr \".pm[2]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -2.5 -5.5511151231257827e-16 0 1;\n\tsetAttr \".pm[3]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -3.5 -7.7715611723760958e-16 0 1;\n\tsetAttr \".pm[4]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 -4.5 0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 2.5 0 1;\n\tsetAttr -s 5 \".ma\";\n\tsetAttr -s 5 \".dpf[0:4]\"  4 4 4 4 4;\n\tsetAttr -s 5 \".lw\";\n\tsetAttr -s 5 \".lw\";\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".mi\" 5;\n\tsetAttr \".ucm\" yes;\n\tsetAttr -s 5 \".ifcl\";\n\tsetAttr -s 5 \".ifcl\";\ncreateNode objectSet -n \"skinCluster1Set\";\n\trename -uid \"B19A2755-4E89-3E02-AF2D-35BA9877E22A\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster1GroupId\";\n\trename -uid \"3382336A-4CA2-4CAB-412B-ABB47B0895BB\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster1GroupParts\";\n\trename -uid \"F6D1B5BE-4870-ED8D-F5DD-C28DF96EBF49\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode dagPose -n \"bindPose1\";\n\trename -uid \"FB088B59-4D36-2AB3-BDE7-DDAD5EA580F3\";\n\tsetAttr -s 5 \".wm\";\n\tsetAttr -s 5 \".xm\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 0 0.5 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0.70710678118654746 0.70710678118654757 1 1 1 yes;\n\tsetAttr \".xm[1]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 2.2204460492503131e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[2]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 2.2204460492503131e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[3]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 2.2204460492503131e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[4]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 2.2204460492503131e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -0.70710678118654746 0.70710678118654757 1\n\t\t 1 1 yes;\n\tsetAttr -s 5 \".m\";\n\tsetAttr -s 5 \".p\";\n\tsetAttr \".bp\" yes;\ncreateNode character -n \"character_set\";\n\trename -uid \"0E29FC62-4828-4A3E-A79A-B4A3D560A8FE\";\n\taddAttr -ci true -h true -sn \"aal\" -ln \"attributeAliasList\" -dt \"attributeAlias\";\n\tsetAttr -s 4 \".dnsm\";\n\tsetAttr -s 26 \".uv[1:26]\"  1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 \n\t\t0 0 0 0 0 0;\n\tsetAttr -s 3 \".uv\";\n\tsetAttr -s 14 \".lv[2:15]\"  0.5 0 0 2.2204460492503131e-16 1 0 2.2204460492503131e-16 \n\t\t1 0 2.2204460492503131e-16 1 0 2.2204460492503131e-16 1;\n\tsetAttr \".av[1]\"  -36;\n\tsetAttr \".am\" -type \"characterMapping\" 4 \"blendShape1.target3\" 0 21 \"blendShape1.target1\" \n\t\t0 22 \"blendShape1.target2\" 0 23 \"joint1.rotateZ\" 2 1  ;\n\tsetAttr \".cim\" -type \"Int32Array\" 4 0 1 2 3 ;\n\tsetAttr \".tcs\" 266;\n\tsetAttr \".tce\" 290;\n\tsetAttr \".aal\" -type \"attributeAlias\" {\"joint3_rotateZ\",\"angularValues[10]\",\"joint2_rotateZ\"\n\t\t,\"angularValues[13]\",\"joint1_rotateZ\",\"angularValues[1]\",\"joint5_rotateZ\",\"angularValues[4]\"\n\t\t,\"joint4_rotateZ\",\"angularValues[7]\",\"blendShape1_target3\",\"unitlessValues[21]\",\"blendShape1_target1\"\n\t\t,\"unitlessValues[22]\",\"blendShape1_target2\",\"unitlessValues[23]\"} ;\ncreateNode trackInfoManager -n \"trackInfoManager1\";\n\trename -uid \"648FBF04-4D18-0C76-CD6D-41A1A9DD508F\";\ncreateNode animCurveTU -n \"character_set_blendShape1_target3\";\n\trename -uid \"48871E22-4A66-D0FE-E00D-DD9BA5245B73\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target1\";\n\trename -uid \"99C882B2-4D26-A4FC-7708-EAA9A189FF09\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target2\";\n\trename -uid \"4C681906-42D3-AE32-9E8A-0CB6A9228E30\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode clipScheduler -n \"character_setScheduler1\";\n\trename -uid \"1ADC1FB9-4CC6-507C-392F-0B811DD71345\";\n\tsetAttr -s 10 \".cl\";\n\tsetAttr -s 10 \".st\";\n\tsetAttr -s 10 \".ss\";\n\tsetAttr -s 10 \".se\";\n\tsetAttr -s 10 \".sc\";\n\tsetAttr -s 10 \".h\";\n\tsetAttr -s 10 \".w\";\n\tsetAttr -s 10 \".ws\";\n\tsetAttr -s 10 \".cb\";\n\tsetAttr -s 10 \".ca\";\n\tsetAttr -s 10 \".ea\";\n\tsetAttr -s 10 \".tr\";\n\tsetAttr \".tr[0]\" 1;\n\tsetAttr \".tr[1]\" 1;\n\tsetAttr \".tr[2]\" 1;\n\tsetAttr \".tr[3]\" 1;\n\tsetAttr \".tr[4]\" 1;\n\tsetAttr \".tr[8]\" 1;\n\tsetAttr \".tr[9]\" 2;\n\tsetAttr \".tr[10]\" 2;\n\tsetAttr \".tr[11]\" 2;\n\tsetAttr \".tr[12]\" 1;\n\tsetAttr \".nt\" 9;\ncreateNode clipLibrary -n \"character_setClips1\";\n\trename -uid \"F5C329E5-4C99-BBC5-FC7D-2AB615652AFC\";\n\tsetAttr -s 6 \".cel\";\n\tsetAttr -s 4 \".cel[0].cev\";\n\tsetAttr -s 3 \".cel[1].cev\";\n\tsetAttr -s 3 \".cel[2].cev\";\n\tsetAttr -s 3 \".cel[3].cev\";\n\tsetAttr -s 4 \".cel[4].cev\";\n\tsetAttr -s 4 \".cel[5].cev\";\n\tsetAttr -s 6 \".sc\";\n\tsetAttr -s 6 \".cl\";\ncreateNode animClip -n \"setupSource\";\n\trename -uid \"EBAACE3B-4F0F-1627-7D02-E283F1210B4A\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 1;\n\tsetAttr \".ci\" no;\ncreateNode animClip -n \"setup\";\n\trename -uid \"3F8078E3-42F8-3965-FE31-8484475412D9\";\n\tsetAttr -s 43 \".ac\";\n\tsetAttr \".ac[0]\" yes;\n\tsetAttr \".ac[1]\" yes;\n\tsetAttr \".ac[2]\" yes;\n\tsetAttr \".ac[10]\" yes;\n\tsetAttr \".ac[11]\" yes;\n\tsetAttr \".ac[12]\" yes;\n\tsetAttr \".ac[13]\" yes;\n\tsetAttr \".ac[14]\" yes;\n\tsetAttr \".ac[15]\" yes;\n\tsetAttr \".ac[16]\" yes;\n\tsetAttr \".ac[17]\" yes;\n\tsetAttr \".ac[18]\" yes;\n\tsetAttr \".ac[19]\" yes;\n\tsetAttr \".ac[20]\" yes;\n\tsetAttr \".ac[21]\" yes;\n\tsetAttr \".ac[22]\" yes;\n\tsetAttr \".ac[23]\" yes;\n\tsetAttr \".ac[24]\" yes;\n\tsetAttr \".ac[25]\" yes;\n\tsetAttr \".ac[26]\" yes;\n\tsetAttr \".ac[27]\" yes;\n\tsetAttr \".ac[28]\" yes;\n\tsetAttr \".ac[29]\" yes;\n\tsetAttr \".ac[30]\" yes;\n\tsetAttr \".ac[31]\" yes;\n\tsetAttr \".ac[32]\" yes;\n\tsetAttr \".ac[33]\" yes;\n\tsetAttr \".ac[34]\" yes;\n\tsetAttr \".ac[35]\" yes;\n\tsetAttr \".ac[36]\" yes;\n\tsetAttr \".ac[37]\" yes;\n\tsetAttr \".ac[38]\" yes;\n\tsetAttr \".ac[39]\" yes;\n\tsetAttr \".ac[40]\" yes;\n\tsetAttr \".ac[41]\" yes;\n\tsetAttr \".ac[42]\" yes;\n\tsetAttr \".ac[43]\" yes;\n\tsetAttr \".ac[44]\" yes;\n\tsetAttr \".ac[45]\" yes;\n\tsetAttr \".ac[46]\" yes;\n\tsetAttr \".ac[47]\" yes;\n\tsetAttr \".ac[48]\" yes;\n\tsetAttr \".ac[49]\" yes;\n\tsetAttr \".sf\" -10;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 10;\ncreateNode animCurveTU -n \"character_set_blendShape1_target4\";\n\trename -uid \"566769D6-439B-657C-802E-A1B3D4FC1E2A\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 0 20 0 30 0 40 0;\n\tsetAttr -s 5 \".kit[0:4]\"  1 18 18 18 18;\n\tsetAttr -s 5 \".kot[0:4]\"  1 18 18 18 18;\n\tsetAttr -s 5 \".kix[0:4]\"  1 1 1 1 1;\n\tsetAttr -s 5 \".kiy[0:4]\"  0 0 0 0 0;\n\tsetAttr -s 5 \".kox[0:4]\"  1 1 1 1 1;\n\tsetAttr -s 5 \".koy[0:4]\"  0 0 0 0 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target5\";\n\trename -uid \"3C8E6EDB-44E9-EBE6-0E14-0AA7FBA4F69B\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 1 20 0 30 -1 40 0;\n\tsetAttr -s 5 \".kit[0:4]\"  1 18 18 18 18;\n\tsetAttr -s 5 \".kot[0:4]\"  1 18 18 18 18;\n\tsetAttr -s 5 \".kix[0:4]\"  1 1 0.38461538461538458 1 1;\n\tsetAttr -s 5 \".kiy[0:4]\"  0 0 -0.92307692307692313 0 0;\n\tsetAttr -s 5 \".kox[0:4]\"  1 1 0.38461538461538458 1 1;\n\tsetAttr -s 5 \".koy[0:4]\"  0 0 -0.92307692307692313 0 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target6\";\n\trename -uid \"382D076E-4D90-4606-38B3-2EA765E0AB63\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 0 20 0 30 0 40 0;\n\tsetAttr -s 5 \".kit[0:4]\"  1 18 18 18 18;\n\tsetAttr -s 5 \".kot[0:4]\"  1 18 18 18 18;\n\tsetAttr -s 5 \".kix[0:4]\"  1 1 1 1 1;\n\tsetAttr -s 5 \".kiy[0:4]\"  0 0 0 0 0;\n\tsetAttr -s 5 \".kox[0:4]\"  1 1 1 1 1;\n\tsetAttr -s 5 \".koy[0:4]\"  0 0 0 0 0;\ncreateNode animClip -n \"clip_target1Source\";\n\trename -uid \"B7E2B415-45A3-5134-30C0-479D7BC92318\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ss\" 30;\n\tsetAttr \".se\" 70;\n\tsetAttr \".ci\" no;\ncreateNode animClip -n \"clip_target1\";\n\trename -uid \"C0D0F4FB-4237-B0F1-F1AA-72ACFB2A9F06\";\n\tsetAttr -s 43 \".ac\";\n\tsetAttr \".ac[0]\" yes;\n\tsetAttr \".ac[1]\" yes;\n\tsetAttr \".ac[2]\" yes;\n\tsetAttr \".ac[10]\" yes;\n\tsetAttr \".ac[11]\" yes;\n\tsetAttr \".ac[12]\" yes;\n\tsetAttr \".ac[13]\" yes;\n\tsetAttr \".ac[14]\" yes;\n\tsetAttr \".ac[15]\" yes;\n\tsetAttr \".ac[16]\" yes;\n\tsetAttr \".ac[17]\" yes;\n\tsetAttr \".ac[18]\" yes;\n\tsetAttr \".ac[19]\" yes;\n\tsetAttr \".ac[20]\" yes;\n\tsetAttr \".ac[21]\" yes;\n\tsetAttr \".ac[22]\" yes;\n\tsetAttr \".ac[23]\" yes;\n\tsetAttr \".ac[24]\" yes;\n\tsetAttr \".ac[25]\" yes;\n\tsetAttr \".ac[26]\" yes;\n\tsetAttr \".ac[27]\" yes;\n\tsetAttr \".ac[28]\" yes;\n\tsetAttr \".ac[29]\" yes;\n\tsetAttr \".ac[30]\" yes;\n\tsetAttr \".ac[31]\" yes;\n\tsetAttr \".ac[32]\" yes;\n\tsetAttr \".ac[33]\" yes;\n\tsetAttr \".ac[34]\" yes;\n\tsetAttr \".ac[35]\" yes;\n\tsetAttr \".ac[36]\" yes;\n\tsetAttr \".ac[37]\" yes;\n\tsetAttr \".ac[38]\" yes;\n\tsetAttr \".ac[39]\" yes;\n\tsetAttr \".ac[40]\" yes;\n\tsetAttr \".ac[41]\" yes;\n\tsetAttr \".ac[42]\" yes;\n\tsetAttr \".ac[43]\" yes;\n\tsetAttr \".ac[44]\" yes;\n\tsetAttr \".ac[45]\" yes;\n\tsetAttr \".ac[46]\" yes;\n\tsetAttr \".ac[47]\" yes;\n\tsetAttr \".ac[48]\" yes;\n\tsetAttr \".ac[49]\" yes;\n\tsetAttr \".sf\" 1;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 40;\ncreateNode animCurveTU -n \"character_set_blendShape1_target7\";\n\trename -uid \"5F695200-4BED-AFC8-DEEA-619A7A7F75FE\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 0 20 0 30 0 40 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target8\";\n\trename -uid \"B4EF06B7-42AF-9588-8C1D-D6BC641A3E4F\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 0 20 0 30 0 40 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target9\";\n\trename -uid \"0DFFC0BC-45C3-4FA2-79E9-588D4BBAC9E0\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 1 20 0 30 -1 40 0;\ncreateNode animClip -n \"clip_target2Source\";\n\trename -uid \"2E6AED3B-427D-590B-956D-49A9D1601F30\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 40;\n\tsetAttr \".ci\" no;\ncreateNode animClip -n \"clip_target2\";\n\trename -uid \"A9AEA2A6-46D7-3120-E958-08976DA4E1B9\";\n\tsetAttr -s 43 \".ac\";\n\tsetAttr \".ac[0]\" yes;\n\tsetAttr \".ac[1]\" yes;\n\tsetAttr \".ac[2]\" yes;\n\tsetAttr \".ac[10]\" yes;\n\tsetAttr \".ac[11]\" yes;\n\tsetAttr \".ac[12]\" yes;\n\tsetAttr \".ac[13]\" yes;\n\tsetAttr \".ac[14]\" yes;\n\tsetAttr \".ac[15]\" yes;\n\tsetAttr \".ac[16]\" yes;\n\tsetAttr \".ac[17]\" yes;\n\tsetAttr \".ac[18]\" yes;\n\tsetAttr \".ac[19]\" yes;\n\tsetAttr \".ac[20]\" yes;\n\tsetAttr \".ac[21]\" yes;\n\tsetAttr \".ac[22]\" yes;\n\tsetAttr \".ac[23]\" yes;\n\tsetAttr \".ac[24]\" yes;\n\tsetAttr \".ac[25]\" yes;\n\tsetAttr \".ac[26]\" yes;\n\tsetAttr \".ac[27]\" yes;\n\tsetAttr \".ac[28]\" yes;\n\tsetAttr \".ac[29]\" yes;\n\tsetAttr \".ac[30]\" yes;\n\tsetAttr \".ac[31]\" yes;\n\tsetAttr \".ac[32]\" yes;\n\tsetAttr \".ac[33]\" yes;\n\tsetAttr \".ac[34]\" yes;\n\tsetAttr \".ac[35]\" yes;\n\tsetAttr \".ac[36]\" yes;\n\tsetAttr \".ac[37]\" yes;\n\tsetAttr \".ac[38]\" yes;\n\tsetAttr \".ac[39]\" yes;\n\tsetAttr \".ac[40]\" yes;\n\tsetAttr \".ac[41]\" yes;\n\tsetAttr \".ac[42]\" yes;\n\tsetAttr \".ac[43]\" yes;\n\tsetAttr \".ac[44]\" yes;\n\tsetAttr \".ac[45]\" yes;\n\tsetAttr \".ac[46]\" yes;\n\tsetAttr \".ac[47]\" yes;\n\tsetAttr \".ac[48]\" yes;\n\tsetAttr \".ac[49]\" yes;\n\tsetAttr \".sf\" 50;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 40;\ncreateNode animCurveTU -n \"character_set_blendShape1_target10\";\n\trename -uid \"F33C57EF-4CC4-2388-EA6A-FD9B2ACF3162\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 1 20 0 30 -1 40 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target11\";\n\trename -uid \"72BB84CE-4772-23B5-9425-248ADC7CF604\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 0 20 0 30 0 40 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target12\";\n\trename -uid \"4F4815C8-496D-42B1-89FF-81801F11E2DD\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 10 0 20 0 30 0 40 0;\ncreateNode animClip -n \"clip_target3Source\";\n\trename -uid \"23605AF3-421F-A095-2411-7A8F6C4601A4\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 40;\n\tsetAttr \".ci\" no;\ncreateNode animClip -n \"clip_target3\";\n\trename -uid \"11715892-4C23-470E-6951-EE949CC80B4A\";\n\tsetAttr -s 43 \".ac\";\n\tsetAttr \".ac[0]\" yes;\n\tsetAttr \".ac[1]\" yes;\n\tsetAttr \".ac[2]\" yes;\n\tsetAttr \".ac[10]\" yes;\n\tsetAttr \".ac[11]\" yes;\n\tsetAttr \".ac[12]\" yes;\n\tsetAttr \".ac[13]\" yes;\n\tsetAttr \".ac[14]\" yes;\n\tsetAttr \".ac[15]\" yes;\n\tsetAttr \".ac[16]\" yes;\n\tsetAttr \".ac[17]\" yes;\n\tsetAttr \".ac[18]\" yes;\n\tsetAttr \".ac[19]\" yes;\n\tsetAttr \".ac[20]\" yes;\n\tsetAttr \".ac[21]\" yes;\n\tsetAttr \".ac[22]\" yes;\n\tsetAttr \".ac[23]\" yes;\n\tsetAttr \".ac[24]\" yes;\n\tsetAttr \".ac[25]\" yes;\n\tsetAttr \".ac[26]\" yes;\n\tsetAttr \".ac[27]\" yes;\n\tsetAttr \".ac[28]\" yes;\n\tsetAttr \".ac[29]\" yes;\n\tsetAttr \".ac[30]\" yes;\n\tsetAttr \".ac[31]\" yes;\n\tsetAttr \".ac[32]\" yes;\n\tsetAttr \".ac[33]\" yes;\n\tsetAttr \".ac[34]\" yes;\n\tsetAttr \".ac[35]\" yes;\n\tsetAttr \".ac[36]\" yes;\n\tsetAttr \".ac[37]\" yes;\n\tsetAttr \".ac[38]\" yes;\n\tsetAttr \".ac[39]\" yes;\n\tsetAttr \".ac[40]\" yes;\n\tsetAttr \".ac[41]\" yes;\n\tsetAttr \".ac[42]\" yes;\n\tsetAttr \".ac[43]\" yes;\n\tsetAttr \".ac[44]\" yes;\n\tsetAttr \".ac[45]\" yes;\n\tsetAttr \".ac[46]\" yes;\n\tsetAttr \".ac[47]\" yes;\n\tsetAttr \".ac[48]\" yes;\n\tsetAttr \".ac[49]\" yes;\n\tsetAttr \".sf\" 100;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 40;\ncreateNode animCurveTU -n \"character_set_blendShape1_target13\";\n\trename -uid \"AFAA6C1E-464B-8E28-6B96-229F4ED92922\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 0 60 0 90 0 120 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target14\";\n\trename -uid \"51A3C6C3-489B-1295-CF38-AABE19831B91\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 0 60 0 90 0 120 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target15\";\n\trename -uid \"602AD4B2-4D87-9B63-5503-548193042D4A\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 0 60 0 90 0 120 0;\ncreateNode animCurveTA -n \"joint1_rotateX\";\n\trename -uid \"1544E740-48B0-C740-BF03-AFB4527C58B7\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 30 0;\ncreateNode animCurveTA -n \"joint1_rotateZ\";\n\trename -uid \"E11509F0-4319-357C-9C0D-408B176D467D\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 -20 60 0 90 20 120 0;\n\tsetAttr -s 5 \".kbd[0:4]\" yes no no no no;\ncreateNode pairBlend -n \"pairBlend1\";\n\trename -uid \"219DE558-4FFD-558D-C1E8-BFB565460FBA\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend1_inRotateZ1\";\n\trename -uid \"5295F275-46CC-CDC6-FBBC-1EA226BB1711\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode pairBlend -n \"pairBlend2\";\n\trename -uid \"77C69CC4-4B81-39BC-DB72-D4B457032B93\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend2_inRotateZ1\";\n\trename -uid \"CD88EB99-4335-1844-FA5A-E893EB9FDCA3\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode pairBlend -n \"pairBlend3\";\n\trename -uid \"3974C23D-4987-CD9E-C9DB-4A82FC691F00\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend3_inRotateZ1\";\n\trename -uid \"887CF097-4A1D-8B90-26EC-BEA9F89A2820\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode pairBlend -n \"pairBlend4\";\n\trename -uid \"43BC8CFF-4CF0-AEA8-DB5F-BD8E7AD3EB52\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend4_inRotateZ1\";\n\trename -uid \"6B0CDDE7-4EA3-EDE0-2C29-32B051F0FA5B\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode pairBlend -n \"pairBlend5\";\n\trename -uid \"23D98614-46D5-4776-06DB-FBA27750A647\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend5_inRotateZ1\";\n\trename -uid \"53A726CA-495F-DFB3-E2E0-8CB6F7F2B1C2\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 -20 30 -20;\n\tsetAttr -s 2 \".kbd[0:1]\" yes no;\ncreateNode pairBlend -n \"pairBlend6\";\n\trename -uid \"7AC2C5E0-401D-59FC-F602-97BBE802384D\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend6_inRotateZ1\";\n\trename -uid \"E00B7E83-4080-F437-BF6A-908686ECEEED\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 -20 30 -20;\n\tsetAttr -s 2 \".kbd[0:1]\" yes no;\ncreateNode pairBlend -n \"pairBlend7\";\n\trename -uid \"A0A3AC7F-4D00-C33A-23F7-D0A3DB8CE76F\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend7_inRotateZ1\";\n\trename -uid \"2022A2F6-4224-9F9A-EE3C-D7B6D6957115\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 -20 30 -20;\n\tsetAttr -s 2 \".kbd[0:1]\" yes no;\ncreateNode pairBlend -n \"pairBlend8\";\n\trename -uid \"B327F2CE-4471-975F-FC9E-C49F3872D5F0\";\n\tsetAttr \".txm\" 2;\n\tsetAttr \".tym\" 2;\n\tsetAttr \".tzm\" 2;\ncreateNode animCurveTA -n \"pairBlend8_inRotateZ1\";\n\trename -uid \"F3422A84-4415-94CF-5627-748E15FF87A7\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 -20;\n\tsetAttr \".kbd[0]\" yes;\ncreateNode animClip -n \"clip_joint_rot_zSource\";\n\trename -uid \"02FAFC4D-4F1A-000D-FC11-F3B2AC35D778\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 120;\n\tsetAttr \".ci\" no;\ncreateNode animClip -n \"clip_joint_rot_z\";\n\trename -uid \"1C3DFB98-4892-437E-84D1-A98EDD19EB55\";\n\tsetAttr -s 4 \".ac[0:3]\" yes yes yes yes;\n\tsetAttr \".sf\" 150;\n\tsetAttr \".sc\" 0.25;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 120;\ncreateNode animClip -n \"clip_target6\";\n\trename -uid \"9C196431-44B3-090A-0729-588D774735BE\";\n\tsetAttr -s 64 \".ac[0:63]\" yes yes yes no no no no no no no yes yes \n\t\tyes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes \n\t\tyes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes no no no no no \n\t\tno no no no no no no no no;\n\tsetAttr \".sf\" 234;\n\tsetAttr \".sc\" 0.5;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 40;\ncreateNode animClip -n \"clip_target5\";\n\trename -uid \"0BEBC150-40C1-503D-2DB7-CCA20EDFD6BF\";\n\tsetAttr -s 64 \".ac[0:63]\" yes yes yes no no no no no no no yes yes \n\t\tyes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes \n\t\tyes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes no no no no no \n\t\tno no no no no no no no no;\n\tsetAttr \".sf\" 214;\n\tsetAttr \".sc\" 0.5;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 40;\ncreateNode animClip -n \"clip_target4\";\n\trename -uid \"9188E84A-4146-18BD-A31D-DA88E4B83759\";\n\tsetAttr -s 64 \".ac[0:63]\" yes yes yes no no no no no no no yes yes \n\t\tyes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes \n\t\tyes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes no no no no no \n\t\tno no no no no no no no no;\n\tsetAttr \".sf\" 194;\n\tsetAttr \".sc\" 0.5;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 40;\ncreateNode animClip -n \"clip_joint_rot_z_dup\";\n\trename -uid \"FE940260-4519-8188-94EB-47A22344F6C3\";\n\tsetAttr -s 32 \".ac[0:31]\" yes yes yes yes no no no no no no no no \n\t\tno no no no no no no no no no no no no no no no no no no no;\n\tsetAttr \".sf\" 194;\n\tsetAttr \".sc\" 0.5;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 120;\ncreateNode animCurveTA -n \"character_set_joint1_rotateZ\";\n\trename -uid \"263F8935-4256-F56F-8376-AAA129624B78\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"505B6A66-4A15-6774-6FF5-3D8433609167\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/scenes/complex/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"ComplexAnim1\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2018 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"\";\n\tsetAttr \".char\" -type \"string\" \"character_set\";\n\tsetAttr \".anim\" 4;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\ncreateNode nodeGraphEditorInfo -n \"MayaNodeEditorSavedTabsInfo\";\n\trename -uid \"77BD6873-4C5E-87D9-4715-E9B0D7B9E858\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -1805.3523989203343 -2670.2379891323708 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 472.01911856890518 -1529.7618439746307 ;\n\tsetAttr -s 47 \".tgi[0].ni\";\n\tsetAttr \".tgi[0].ni[0].x\" -930;\n\tsetAttr \".tgi[0].ni[0].y\" -2508.571533203125;\n\tsetAttr \".tgi[0].ni[0].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[1].x\" -930;\n\tsetAttr \".tgi[0].ni[1].y\" -3782.857177734375;\n\tsetAttr \".tgi[0].ni[1].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[2].x\" -1544.2857666015625;\n\tsetAttr \".tgi[0].ni[2].y\" -1081.4285888671875;\n\tsetAttr \".tgi[0].ni[2].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[3].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[3].y\" -944.28570556640625;\n\tsetAttr \".tgi[0].ni[3].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[4].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[4].y\" -1248.5714111328125;\n\tsetAttr \".tgi[0].ni[4].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[5].x\" -4615.71435546875;\n\tsetAttr \".tgi[0].ni[5].y\" -1350;\n\tsetAttr \".tgi[0].ni[5].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[6].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[6].y\" -1552.857177734375;\n\tsetAttr \".tgi[0].ni[6].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[7].x\" -255.71427917480469;\n\tsetAttr \".tgi[0].ni[7].y\" -1078.5714111328125;\n\tsetAttr \".tgi[0].ni[7].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[8].x\" -2465.71435546875;\n\tsetAttr \".tgi[0].ni[8].y\" -1112.857177734375;\n\tsetAttr \".tgi[0].ni[8].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[9].x\" -2772.857177734375;\n\tsetAttr \".tgi[0].ni[9].y\" -1132.857177734375;\n\tsetAttr \".tgi[0].ni[9].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[10].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[10].y\" -1350;\n\tsetAttr \".tgi[0].ni[10].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[11].x\" -562.85711669921875;\n\tsetAttr \".tgi[0].ni[11].y\" -2305.71435546875;\n\tsetAttr \".tgi[0].ni[11].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[12].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[12].y\" -1147.142822265625;\n\tsetAttr \".tgi[0].ni[12].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[13].x\" -930;\n\tsetAttr \".tgi[0].ni[13].y\" -3421.428466796875;\n\tsetAttr \".tgi[0].ni[13].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[14].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[14].y\" -1045.7142333984375;\n\tsetAttr \".tgi[0].ni[14].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[15].x\" -2158.571533203125;\n\tsetAttr \".tgi[0].ni[15].y\" -1010;\n\tsetAttr \".tgi[0].ni[15].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[16].x\" -1237.142822265625;\n\tsetAttr \".tgi[0].ni[16].y\" -977.14288330078125;\n\tsetAttr \".tgi[0].ni[16].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[17].x\" -930;\n\tsetAttr \".tgi[0].ni[17].y\" -2001.4285888671875;\n\tsetAttr \".tgi[0].ni[17].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[18].x\" -562.85711669921875;\n\tsetAttr \".tgi[0].ni[18].y\" -981.4285888671875;\n\tsetAttr \".tgi[0].ni[18].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[19].x\" -930;\n\tsetAttr \".tgi[0].ni[19].y\" -3015.71435546875;\n\tsetAttr \".tgi[0].ni[19].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[20].x\" -4001.428466796875;\n\tsetAttr \".tgi[0].ni[20].y\" -1085.7142333984375;\n\tsetAttr \".tgi[0].ni[20].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[21].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[21].y\" -1755.7142333984375;\n\tsetAttr \".tgi[0].ni[21].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[22].x\" -930;\n\tsetAttr \".tgi[0].ni[22].y\" -1118.5714111328125;\n\tsetAttr \".tgi[0].ni[22].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[23].x\" -3694.28564453125;\n\tsetAttr \".tgi[0].ni[23].y\" -1304.2857666015625;\n\tsetAttr \".tgi[0].ni[23].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[24].x\" -930;\n\tsetAttr \".tgi[0].ni[24].y\" -2711.428466796875;\n\tsetAttr \".tgi[0].ni[24].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[25].x\" -930;\n\tsetAttr \".tgi[0].ni[25].y\" -4550;\n\tsetAttr \".tgi[0].ni[25].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[26].x\" -4308.5712890625;\n\tsetAttr \".tgi[0].ni[26].y\" -1170;\n\tsetAttr \".tgi[0].ni[26].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[27].x\" -930;\n\tsetAttr \".tgi[0].ni[27].y\" -3985.71435546875;\n\tsetAttr \".tgi[0].ni[27].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[28].x\" -255.71427917480469;\n\tsetAttr \".tgi[0].ni[28].y\" -977.14288330078125;\n\tsetAttr \".tgi[0].ni[28].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[29].x\" -930;\n\tsetAttr \".tgi[0].ni[29].y\" -3218.571533203125;\n\tsetAttr \".tgi[0].ni[29].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[30].x\" -562.85711669921875;\n\tsetAttr \".tgi[0].ni[30].y\" -1695.7142333984375;\n\tsetAttr \".tgi[0].ni[30].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[31].x\" -4308.5712890625;\n\tsetAttr \".tgi[0].ni[31].y\" -1372.857177734375;\n\tsetAttr \".tgi[0].ni[31].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[32].x\" -930;\n\tsetAttr \".tgi[0].ni[32].y\" -2407.142822265625;\n\tsetAttr \".tgi[0].ni[32].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[33].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[33].y\" -1654.2857666015625;\n\tsetAttr \".tgi[0].ni[33].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[34].x\" -930;\n\tsetAttr \".tgi[0].ni[34].y\" -2914.28564453125;\n\tsetAttr \".tgi[0].ni[34].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[35].x\" -930;\n\tsetAttr \".tgi[0].ni[35].y\" -4955.71435546875;\n\tsetAttr \".tgi[0].ni[35].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[36].x\" -930;\n\tsetAttr \".tgi[0].ni[36].y\" -4188.5712890625;\n\tsetAttr \".tgi[0].ni[36].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[37].x\" -930;\n\tsetAttr \".tgi[0].ni[37].y\" -1900;\n\tsetAttr \".tgi[0].ni[37].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[38].x\" -930;\n\tsetAttr \".tgi[0].ni[38].y\" -3320;\n\tsetAttr \".tgi[0].ni[38].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[39].x\" -3080;\n\tsetAttr \".tgi[0].ni[39].y\" -1034.2857666015625;\n\tsetAttr \".tgi[0].ni[39].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[40].x\" -562.85711669921875;\n\tsetAttr \".tgi[0].ni[40].y\" -1140;\n\tsetAttr \".tgi[0].ni[40].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[41].x\" -1851.4285888671875;\n\tsetAttr \".tgi[0].ni[41].y\" -1101.4285888671875;\n\tsetAttr \".tgi[0].ni[41].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[42].x\" -4922.85693359375;\n\tsetAttr \".tgi[0].ni[42].y\" -1451.4285888671875;\n\tsetAttr \".tgi[0].ni[42].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[43].x\" -3387.142822265625;\n\tsetAttr \".tgi[0].ni[43].y\" -1265.7142333984375;\n\tsetAttr \".tgi[0].ni[43].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[44].x\" -930;\n\tsetAttr \".tgi[0].ni[44].y\" -2204.28564453125;\n\tsetAttr \".tgi[0].ni[44].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[45].x\" -930;\n\tsetAttr \".tgi[0].ni[45].y\" -1798.5714111328125;\n\tsetAttr \".tgi[0].ni[45].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[46].x\" -1462.857177734375;\n\tsetAttr \".tgi[0].ni[46].y\" -2077.142822265625;\n\tsetAttr \".tgi[0].ni[46].nvs\" 18304;\ncreateNode animCurveTU -n \"character_set_blendShape1_target16\";\n\trename -uid \"C3C536D2-484C-319F-0E38-52AFC830EE6D\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  266 0 290 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target17\";\n\trename -uid \"6FBF34BE-48A7-3FC3-14CD-8AB5DF41AB09\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  266 0 290 0;\ncreateNode animCurveTU -n \"character_set_blendShape1_target18\";\n\trename -uid \"3A4A9D12-48DD-9E04-E35C-908112F36AFE\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  266 0 290 0;\ncreateNode animCurveTA -n \"character_set_joint1_rotateZ1\";\n\trename -uid \"F2965E60-4AA4-C281-9631-D88333C4CDDA\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  266 -36 290 -36;\ncreateNode animClip -n \"clip_rot_debugSource\";\n\trename -uid \"93B69E61-4F1F-51B9-BB6B-2FA4C40F8CEE\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ss\" 266;\n\tsetAttr \".se\" 290;\n\tsetAttr \".ci\" no;\ncreateNode animClip -n \"clip_rot_debug\";\n\trename -uid \"67345CFC-4165-DF99-4C21-F8967FB1F59B\";\n\tsetAttr -s 4 \".ac[0:3]\" yes yes yes yes;\n\tsetAttr \".sf\" 266;\n\tsetAttr \".ss\" 266;\n\tsetAttr \".se\" 290;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"4B6899BB-4695-8F10-4DAD-1E98BB37C60B\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\ncreateNode aiOptions -s -n \"defaultArnoldRenderOptions\";\n\trename -uid \"BBEB1C36-4C1F-22FA-F00D-4FADAE83DFC0\";\n\tsetAttr \".version\" -type \"string\" \"2.1.0.1\";\ncreateNode aiAOVFilter -s -n \"defaultArnoldFilter\";\n\trename -uid \"82978A8E-4CAB-58E6-F239-EAB87B6C1AB7\";\n\tsetAttr \".ai_translator\" -type \"string\" \"gaussian\";\ncreateNode aiAOVDriver -s -n \"defaultArnoldDriver\";\n\trename -uid \"2A207767-4CBF-3603-D360-1D8FCF6F819C\";\n\tsetAttr \".ai_translator\" -type \"string\" \"exr\";\ncreateNode aiAOVDriver -s -n \"defaultArnoldDisplayDriver\";\n\trename -uid \"DFAB2248-4B24-9B84-727D-7F874DFEACD1\";\n\tsetAttr \".output_mode\" 0;\n\tsetAttr \".ai_translator\" -type \"string\" \"maya\";\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 300;\n\tsetAttr \".unw\" 300;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".macc\";\n\tsetAttr -k on \".macd\";\n\tsetAttr -k on \".macq\";\n\tsetAttr -cb on \".ifg\";\n\tsetAttr -k on \".clip\";\n\tsetAttr -k on \".edm\";\n\tsetAttr -k on \".edl\";\n\tsetAttr \".ren\" -type \"string\" \"arnold\";\n\tsetAttr -av -k on \".esr\";\n\tsetAttr -k on \".ors\";\n\tsetAttr -cb on \".sdf\";\n\tsetAttr \".outf\" 51;\n\tsetAttr -cb on \".imfkey\" -type \"string\" \"exr\";\n\tsetAttr -k on \".gama\";\n\tsetAttr -cb on \".ar\";\n\tsetAttr -av \".bfs\";\n\tsetAttr -k on \".be\";\n\tsetAttr -k on \".fec\";\n\tsetAttr -k on \".ofc\";\n\tsetAttr -cb on \".ofe\";\n\tsetAttr -cb on \".efe\";\n\tsetAttr -cb on \".umfn\";\n\tsetAttr -cb on \".ufe\";\n\tsetAttr -k on \".comp\";\n\tsetAttr -k on \".cth\";\n\tsetAttr -k on \".soll\";\n\tsetAttr -k on \".rd\";\n\tsetAttr -k on \".lp\";\n\tsetAttr -k on \".sp\";\n\tsetAttr -k on \".shs\";\n\tsetAttr -k on \".lpr\";\n\tsetAttr -cb on \".gv\";\n\tsetAttr -cb on \".sv\";\n\tsetAttr -k on \".mm\";\n\tsetAttr -k on \".npu\";\n\tsetAttr -k on \".itf\";\n\tsetAttr -k on \".shp\";\n\tsetAttr -cb on \".isp\";\n\tsetAttr -k on \".uf\";\n\tsetAttr -k on \".oi\";\n\tsetAttr -k on \".rut\";\n\tsetAttr -av -k on \".mbf\";\n\tsetAttr -k on \".afp\";\n\tsetAttr -k on \".pfb\";\n\tsetAttr -cb on \".pfrm\";\n\tsetAttr -cb on \".pfom\";\n\tsetAttr -av -k on \".bll\";\n\tsetAttr -k on \".bls\";\n\tsetAttr -k on \".smv\";\n\tsetAttr -k on \".ubc\";\n\tsetAttr -k on \".mbc\";\n\tsetAttr -k on \".udbx\";\n\tsetAttr -k on \".smc\";\n\tsetAttr -k on \".kmv\";\n\tsetAttr -cb on \".isl\";\n\tsetAttr -cb on \".ism\";\n\tsetAttr -cb on \".imb\";\n\tsetAttr -k on \".rlen\";\n\tsetAttr -av -k on \".frts\";\n\tsetAttr -k on \".tlwd\";\n\tsetAttr -k on \".tlht\";\n\tsetAttr -k on \".jfc\";\n\tsetAttr -cb on \".rsb\";\n\tsetAttr -k on \".ope\";\n\tsetAttr -k on \".oppf\";\n\tsetAttr -cb on \".hbl\";\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nselect -ne :characterPartition;\nconnectAttr \"blendShape1GroupId.id\" \"characterShape.iog.og[0].gid\";\nconnectAttr \"blendShape1Set.mwc\" \"characterShape.iog.og[0].gco\";\nconnectAttr \"groupId2.id\" \"characterShape.iog.og[1].gid\";\nconnectAttr \"tweakSet1.mwc\" \"characterShape.iog.og[1].gco\";\nconnectAttr \"skinCluster1GroupId.id\" \"characterShape.iog.og[3].gid\";\nconnectAttr \"skinCluster1Set.mwc\" \"characterShape.iog.og[3].gco\";\nconnectAttr \"skinCluster1.og[0]\" \"characterShape.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"characterShape.twl\";\nconnectAttr \"polyCube1.out\" \"characterShapeOrig.i\";\nconnectAttr \"character_set.av[1]\" \"joint1.rz\";\nconnectAttr \"joint1_rotateX.o\" \"joint1.rx\";\nconnectAttr \"joint1.s\" \"joint2.is\";\nconnectAttr \"joint1.rz\" \"joint2.rz\";\nconnectAttr \"pairBlend7.ory\" \"joint2.ry\";\nconnectAttr \"pairBlend7.orx\" \"joint2.rx\";\nconnectAttr \"joint2.s\" \"joint3.is\";\nconnectAttr \"joint2.rz\" \"joint3.rz\";\nconnectAttr \"pairBlend6.ory\" \"joint3.ry\";\nconnectAttr \"pairBlend6.orx\" \"joint3.rx\";\nconnectAttr \"joint3.s\" \"joint4.is\";\nconnectAttr \"joint3.rz\" \"joint4.rz\";\nconnectAttr \"pairBlend5.ory\" \"joint4.ry\";\nconnectAttr \"pairBlend5.orx\" \"joint4.rx\";\nconnectAttr \"joint4.s\" \"joint5.is\";\nconnectAttr \"joint4.rz\" \"joint5.rz\";\nconnectAttr \"pairBlend8.ory\" \"joint5.ry\";\nconnectAttr \"pairBlend8.orx\" \"joint5.rx\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"blendShape1.mlpr\" \"shapeEditorManager.bspr[0]\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"blendShape1GroupParts.og\" \"blendShape1.ip[0].ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1.ip[0].gi\";\nconnectAttr \"targetShape3.w\" \"blendShape1.it[0].itg[0].iti[6000].igt\";\nconnectAttr \"targetShape2.w\" \"blendShape1.it[0].itg[1].iti[6000].igt\";\nconnectAttr \"target1Shape.w\" \"blendShape1.it[0].itg[2].iti[6000].igt\";\nconnectAttr \"shapeEditorManager.obsv[0]\" \"blendShape1.tgdt[0].dpvs\";\nconnectAttr \"character_set.uv[21]\" \"blendShape1.w[0]\";\nconnectAttr \"character_set.uv[23]\" \"blendShape1.w[1]\";\nconnectAttr \"character_set.uv[22]\" \"blendShape1.w[2]\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"blendShape1GroupId.msg\" \"blendShape1Set.gn\" -na;\nconnectAttr \"characterShape.iog.og[0]\" \"blendShape1Set.dsm\" -na;\nconnectAttr \"blendShape1.msg\" \"blendShape1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"blendShape1GroupParts.ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"characterShape.iog.og[1]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"characterShapeOrig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"skinCluster1GroupParts.og\" \"skinCluster1.ip[0].ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1.ip[0].gi\";\nconnectAttr \"bindPose1.msg\" \"skinCluster1.bp\";\nconnectAttr \"joint1.wm\" \"skinCluster1.ma[0]\";\nconnectAttr \"joint2.wm\" \"skinCluster1.ma[1]\";\nconnectAttr \"joint3.wm\" \"skinCluster1.ma[2]\";\nconnectAttr \"joint4.wm\" \"skinCluster1.ma[3]\";\nconnectAttr \"joint5.wm\" \"skinCluster1.ma[4]\";\nconnectAttr \"joint1.liw\" \"skinCluster1.lw[0]\";\nconnectAttr \"joint2.liw\" \"skinCluster1.lw[1]\";\nconnectAttr \"joint3.liw\" \"skinCluster1.lw[2]\";\nconnectAttr \"joint4.liw\" \"skinCluster1.lw[3]\";\nconnectAttr \"joint5.liw\" \"skinCluster1.lw[4]\";\nconnectAttr \"joint1.obcc\" \"skinCluster1.ifcl[0]\";\nconnectAttr \"joint2.obcc\" \"skinCluster1.ifcl[1]\";\nconnectAttr \"joint3.obcc\" \"skinCluster1.ifcl[2]\";\nconnectAttr \"joint4.obcc\" \"skinCluster1.ifcl[3]\";\nconnectAttr \"joint5.obcc\" \"skinCluster1.ifcl[4]\";\nconnectAttr \"skinCluster1GroupId.msg\" \"skinCluster1Set.gn\" -na;\nconnectAttr \"characterShape.iog.og[3]\" \"skinCluster1Set.dsm\" -na;\nconnectAttr \"skinCluster1.msg\" \"skinCluster1Set.ub[0]\";\nconnectAttr \"blendShape1.og[0]\" \"skinCluster1GroupParts.ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1GroupParts.gi\";\nconnectAttr \"joint1.msg\" \"bindPose1.m[0]\";\nconnectAttr \"joint2.msg\" \"bindPose1.m[1]\";\nconnectAttr \"joint3.msg\" \"bindPose1.m[2]\";\nconnectAttr \"joint4.msg\" \"bindPose1.m[3]\";\nconnectAttr \"joint5.msg\" \"bindPose1.m[4]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[0]\";\nconnectAttr \"bindPose1.m[0]\" \"bindPose1.p[1]\";\nconnectAttr \"bindPose1.m[1]\" \"bindPose1.p[2]\";\nconnectAttr \"bindPose1.m[2]\" \"bindPose1.p[3]\";\nconnectAttr \"bindPose1.m[3]\" \"bindPose1.p[4]\";\nconnectAttr \"joint1.bps\" \"bindPose1.wm[0]\";\nconnectAttr \"joint2.bps\" \"bindPose1.wm[1]\";\nconnectAttr \"joint3.bps\" \"bindPose1.wm[2]\";\nconnectAttr \"joint4.bps\" \"bindPose1.wm[3]\";\nconnectAttr \"joint5.bps\" \"bindPose1.wm[4]\";\nconnectAttr \"blendShape1.w[0]\" \"character_set.dnsm[50]\";\nconnectAttr \"blendShape1.w[2]\" \"character_set.dnsm[51]\";\nconnectAttr \"blendShape1.w[1]\" \"character_set.dnsm[52]\";\nconnectAttr \"joint1.rz\" \"character_set.dnsm[53]\";\nconnectAttr \"character_setScheduler1.ce\" \"character_set.cer\";\nconnectAttr \"character_setClips1.cf\" \"character_setScheduler1.cfr\";\nconnectAttr \"character_setClips1.cl[0]\" \"character_setScheduler1.cl[0]\";\nconnectAttr \"character_setClips1.cl[1]\" \"character_setScheduler1.cl[1]\";\nconnectAttr \"character_setClips1.cl[2]\" \"character_setScheduler1.cl[2]\";\nconnectAttr \"character_setClips1.cl[3]\" \"character_setScheduler1.cl[3]\";\nconnectAttr \"character_setClips1.cl[4]\" \"character_setScheduler1.cl[4]\";\nconnectAttr \"character_setClips1.cl[4]\" \"character_setScheduler1.cl[8]\";\nconnectAttr \"character_setClips1.cl[1]\" \"character_setScheduler1.cl[9]\";\nconnectAttr \"character_setClips1.cl[2]\" \"character_setScheduler1.cl[10]\";\nconnectAttr \"character_setClips1.cl[3]\" \"character_setScheduler1.cl[11]\";\nconnectAttr \"character_setClips1.cl[5]\" \"character_setScheduler1.cl[12]\";\nconnectAttr \"setup.sf\" \"character_setScheduler1.st[0]\";\nconnectAttr \"clip_target1.sf\" \"character_setScheduler1.st[1]\";\nconnectAttr \"clip_target2.sf\" \"character_setScheduler1.st[2]\";\nconnectAttr \"clip_target3.sf\" \"character_setScheduler1.st[3]\";\nconnectAttr \"clip_joint_rot_z.sf\" \"character_setScheduler1.st[4]\";\nconnectAttr \"clip_joint_rot_z_dup.sf\" \"character_setScheduler1.st[8]\";\nconnectAttr \"clip_target4.sf\" \"character_setScheduler1.st[9]\";\nconnectAttr \"clip_target5.sf\" \"character_setScheduler1.st[10]\";\nconnectAttr \"clip_target6.sf\" \"character_setScheduler1.st[11]\";\nconnectAttr \"clip_rot_debug.sf\" \"character_setScheduler1.st[12]\";\nconnectAttr \"setup.ss\" \"character_setScheduler1.ss[0]\";\nconnectAttr \"clip_target1.ss\" \"character_setScheduler1.ss[1]\";\nconnectAttr \"clip_target2.ss\" \"character_setScheduler1.ss[2]\";\nconnectAttr \"clip_target3.ss\" \"character_setScheduler1.ss[3]\";\nconnectAttr \"clip_joint_rot_z.ss\" \"character_setScheduler1.ss[4]\";\nconnectAttr \"clip_joint_rot_z_dup.ss\" \"character_setScheduler1.ss[8]\";\nconnectAttr \"clip_target4.ss\" \"character_setScheduler1.ss[9]\";\nconnectAttr \"clip_target5.ss\" \"character_setScheduler1.ss[10]\";\nconnectAttr \"clip_target6.ss\" \"character_setScheduler1.ss[11]\";\nconnectAttr \"clip_rot_debug.ss\" \"character_setScheduler1.ss[12]\";\nconnectAttr \"setup.se\" \"character_setScheduler1.se[0]\";\nconnectAttr \"clip_target1.se\" \"character_setScheduler1.se[1]\";\nconnectAttr \"clip_target2.se\" \"character_setScheduler1.se[2]\";\nconnectAttr \"clip_target3.se\" \"character_setScheduler1.se[3]\";\nconnectAttr \"clip_joint_rot_z.se\" \"character_setScheduler1.se[4]\";\nconnectAttr \"clip_joint_rot_z_dup.se\" \"character_setScheduler1.se[8]\";\nconnectAttr \"clip_target4.se\" \"character_setScheduler1.se[9]\";\nconnectAttr \"clip_target5.se\" \"character_setScheduler1.se[10]\";\nconnectAttr \"clip_target6.se\" \"character_setScheduler1.se[11]\";\nconnectAttr \"clip_rot_debug.se\" \"character_setScheduler1.se[12]\";\nconnectAttr \"setup.w\" \"character_setScheduler1.w[0]\";\nconnectAttr \"clip_target1.w\" \"character_setScheduler1.w[1]\";\nconnectAttr \"clip_target2.w\" \"character_setScheduler1.w[2]\";\nconnectAttr \"clip_target3.w\" \"character_setScheduler1.w[3]\";\nconnectAttr \"clip_joint_rot_z.w\" \"character_setScheduler1.w[4]\";\nconnectAttr \"clip_joint_rot_z_dup.w\" \"character_setScheduler1.w[8]\";\nconnectAttr \"clip_target4.w\" \"character_setScheduler1.w[9]\";\nconnectAttr \"clip_target5.w\" \"character_setScheduler1.w[10]\";\nconnectAttr \"clip_target6.w\" \"character_setScheduler1.w[11]\";\nconnectAttr \"clip_rot_debug.w\" \"character_setScheduler1.w[12]\";\nconnectAttr \"setup.ws\" \"character_setScheduler1.ws[0]\";\nconnectAttr \"clip_target1.ws\" \"character_setScheduler1.ws[1]\";\nconnectAttr \"clip_target2.ws\" \"character_setScheduler1.ws[2]\";\nconnectAttr \"clip_target3.ws\" \"character_setScheduler1.ws[3]\";\nconnectAttr \"clip_joint_rot_z.ws\" \"character_setScheduler1.ws[4]\";\nconnectAttr \"clip_joint_rot_z_dup.ws\" \"character_setScheduler1.ws[8]\";\nconnectAttr \"clip_target4.ws\" \"character_setScheduler1.ws[9]\";\nconnectAttr \"clip_target5.ws\" \"character_setScheduler1.ws[10]\";\nconnectAttr \"clip_target6.ws\" \"character_setScheduler1.ws[11]\";\nconnectAttr \"clip_rot_debug.ws\" \"character_setScheduler1.ws[12]\";\nconnectAttr \"setup.ea\" \"character_setScheduler1.ea[0]\";\nconnectAttr \"clip_target1.ea\" \"character_setScheduler1.ea[1]\";\nconnectAttr \"clip_target2.ea\" \"character_setScheduler1.ea[2]\";\nconnectAttr \"clip_target3.ea\" \"character_setScheduler1.ea[3]\";\nconnectAttr \"clip_joint_rot_z.ea\" \"character_setScheduler1.ea[4]\";\nconnectAttr \"clip_joint_rot_z_dup.ea\" \"character_setScheduler1.ea[8]\";\nconnectAttr \"clip_target4.ea\" \"character_setScheduler1.ea[9]\";\nconnectAttr \"clip_target5.ea\" \"character_setScheduler1.ea[10]\";\nconnectAttr \"clip_target6.ea\" \"character_setScheduler1.ea[11]\";\nconnectAttr \"clip_rot_debug.ea\" \"character_setScheduler1.ea[12]\";\nconnectAttr \"setup.cb\" \"character_setScheduler1.cb[0]\";\nconnectAttr \"clip_target1.cb\" \"character_setScheduler1.cb[1]\";\nconnectAttr \"clip_target2.cb\" \"character_setScheduler1.cb[2]\";\nconnectAttr \"clip_target3.cb\" \"character_setScheduler1.cb[3]\";\nconnectAttr \"clip_joint_rot_z.cb\" \"character_setScheduler1.cb[4]\";\nconnectAttr \"clip_joint_rot_z_dup.cb\" \"character_setScheduler1.cb[8]\";\nconnectAttr \"clip_target4.cb\" \"character_setScheduler1.cb[9]\";\nconnectAttr \"clip_target5.cb\" \"character_setScheduler1.cb[10]\";\nconnectAttr \"clip_target6.cb\" \"character_setScheduler1.cb[11]\";\nconnectAttr \"clip_rot_debug.cb\" \"character_setScheduler1.cb[12]\";\nconnectAttr \"setup.ca\" \"character_setScheduler1.ca[0]\";\nconnectAttr \"clip_target1.ca\" \"character_setScheduler1.ca[1]\";\nconnectAttr \"clip_target2.ca\" \"character_setScheduler1.ca[2]\";\nconnectAttr \"clip_target3.ca\" \"character_setScheduler1.ca[3]\";\nconnectAttr \"clip_joint_rot_z.ca\" \"character_setScheduler1.ca[4]\";\nconnectAttr \"clip_joint_rot_z_dup.ca\" \"character_setScheduler1.ca[8]\";\nconnectAttr \"clip_target4.ca\" \"character_setScheduler1.ca[9]\";\nconnectAttr \"clip_target5.ca\" \"character_setScheduler1.ca[10]\";\nconnectAttr \"clip_target6.ca\" \"character_setScheduler1.ca[11]\";\nconnectAttr \"clip_rot_debug.ca\" \"character_setScheduler1.ca[12]\";\nconnectAttr \"setup.sc\" \"character_setScheduler1.sc[0]\";\nconnectAttr \"clip_target1.sc\" \"character_setScheduler1.sc[1]\";\nconnectAttr \"clip_target2.sc\" \"character_setScheduler1.sc[2]\";\nconnectAttr \"clip_target3.sc\" \"character_setScheduler1.sc[3]\";\nconnectAttr \"clip_joint_rot_z.sc\" \"character_setScheduler1.sc[4]\";\nconnectAttr \"clip_joint_rot_z_dup.sc\" \"character_setScheduler1.sc[8]\";\nconnectAttr \"clip_target4.sc\" \"character_setScheduler1.sc[9]\";\nconnectAttr \"clip_target5.sc\" \"character_setScheduler1.sc[10]\";\nconnectAttr \"clip_target6.sc\" \"character_setScheduler1.sc[11]\";\nconnectAttr \"clip_rot_debug.sc\" \"character_setScheduler1.sc[12]\";\nconnectAttr \"setup.h\" \"character_setScheduler1.h[0]\";\nconnectAttr \"clip_target1.h\" \"character_setScheduler1.h[1]\";\nconnectAttr \"clip_target2.h\" \"character_setScheduler1.h[2]\";\nconnectAttr \"clip_target3.h\" \"character_setScheduler1.h[3]\";\nconnectAttr \"clip_joint_rot_z.h\" \"character_setScheduler1.h[4]\";\nconnectAttr \"clip_joint_rot_z_dup.h\" \"character_setScheduler1.h[8]\";\nconnectAttr \"clip_target4.h\" \"character_setScheduler1.h[9]\";\nconnectAttr \"clip_target5.h\" \"character_setScheduler1.h[10]\";\nconnectAttr \"clip_target6.h\" \"character_setScheduler1.h[11]\";\nconnectAttr \"clip_rot_debug.h\" \"character_setScheduler1.h[12]\";\nconnectAttr \"character_set.am\" \"character_setClips1.cd[0].cm\";\nconnectAttr \"character_set.cim\" \"character_setClips1.cd[0].cim\";\nconnectAttr \"character_set_blendShape1_target3.a\" \"character_setClips1.cel[0].cev[0].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target1.a\" \"character_setClips1.cel[0].cev[1].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target2.a\" \"character_setClips1.cel[0].cev[2].cevr\"\n\t\t;\nconnectAttr \"character_set_joint1_rotateZ.a\" \"character_setClips1.cel[0].cev[3].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target4.a\" \"character_setClips1.cel[1].cev[0].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target5.a\" \"character_setClips1.cel[1].cev[1].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target6.a\" \"character_setClips1.cel[1].cev[2].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target7.a\" \"character_setClips1.cel[2].cev[0].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target8.a\" \"character_setClips1.cel[2].cev[1].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target9.a\" \"character_setClips1.cel[2].cev[2].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target10.a\" \"character_setClips1.cel[3].cev[0].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target11.a\" \"character_setClips1.cel[3].cev[1].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target12.a\" \"character_setClips1.cel[3].cev[2].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target13.a\" \"character_setClips1.cel[4].cev[0].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target14.a\" \"character_setClips1.cel[4].cev[1].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target15.a\" \"character_setClips1.cel[4].cev[2].cevr\"\n\t\t;\nconnectAttr \"joint1_rotateZ.a\" \"character_setClips1.cel[4].cev[3].cevr\";\nconnectAttr \"character_set_blendShape1_target16.a\" \"character_setClips1.cel[5].cev[0].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target17.a\" \"character_setClips1.cel[5].cev[1].cevr\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target18.a\" \"character_setClips1.cel[5].cev[2].cevr\"\n\t\t;\nconnectAttr \"character_set_joint1_rotateZ1.a\" \"character_setClips1.cel[5].cev[3].cevr\"\n\t\t;\nconnectAttr \"setupSource.cl\" \"character_setClips1.sc[0]\";\nconnectAttr \"clip_target1Source.cl\" \"character_setClips1.sc[1]\";\nconnectAttr \"clip_target2Source.cl\" \"character_setClips1.sc[2]\";\nconnectAttr \"clip_target3Source.cl\" \"character_setClips1.sc[3]\";\nconnectAttr \"clip_joint_rot_zSource.cl\" \"character_setClips1.sc[4]\";\nconnectAttr \"clip_rot_debugSource.cl\" \"character_setClips1.sc[5]\";\nconnectAttr \"setupSource.cl\" \"setup.cl\";\nconnectAttr \"clip_target1Source.cl\" \"clip_target1.cl\";\nconnectAttr \"clip_target2Source.cl\" \"clip_target2.cl\";\nconnectAttr \"clip_target3Source.cl\" \"clip_target3.cl\";\nconnectAttr \"joint1.rz\" \"pairBlend1.irz2\";\nconnectAttr \"joint2.blendCharacterset\" \"pairBlend1.w\";\nconnectAttr \"pairBlend1_inRotateZ1.o\" \"pairBlend1.irz1\";\nconnectAttr \"joint2.rz\" \"pairBlend2.irz2\";\nconnectAttr \"joint3.blendCharacterset\" \"pairBlend2.w\";\nconnectAttr \"pairBlend2_inRotateZ1.o\" \"pairBlend2.irz1\";\nconnectAttr \"joint3.rz\" \"pairBlend3.irz2\";\nconnectAttr \"joint4.blendCharacterset\" \"pairBlend3.w\";\nconnectAttr \"pairBlend3_inRotateZ1.o\" \"pairBlend3.irz1\";\nconnectAttr \"joint4.rz\" \"pairBlend4.irz2\";\nconnectAttr \"joint5.blendCharacterset\" \"pairBlend4.w\";\nconnectAttr \"pairBlend4_inRotateZ1.o\" \"pairBlend4.irz1\";\nconnectAttr \"pairBlend3.orx\" \"pairBlend5.irx2\";\nconnectAttr \"pairBlend3.ory\" \"pairBlend5.iry2\";\nconnectAttr \"joint3.rz\" \"pairBlend5.irz2\";\nconnectAttr \"joint4.blendPairBlend3\" \"pairBlend5.w\";\nconnectAttr \"pairBlend5_inRotateZ1.o\" \"pairBlend5.irz1\";\nconnectAttr \"pairBlend2.orx\" \"pairBlend6.irx2\";\nconnectAttr \"pairBlend2.ory\" \"pairBlend6.iry2\";\nconnectAttr \"joint2.rz\" \"pairBlend6.irz2\";\nconnectAttr \"joint3.blendPairBlend2\" \"pairBlend6.w\";\nconnectAttr \"pairBlend6_inRotateZ1.o\" \"pairBlend6.irz1\";\nconnectAttr \"pairBlend1.orx\" \"pairBlend7.irx2\";\nconnectAttr \"pairBlend1.ory\" \"pairBlend7.iry2\";\nconnectAttr \"joint1.rz\" \"pairBlend7.irz2\";\nconnectAttr \"joint2.blendPairBlend1\" \"pairBlend7.w\";\nconnectAttr \"pairBlend7_inRotateZ1.o\" \"pairBlend7.irz1\";\nconnectAttr \"pairBlend4.orx\" \"pairBlend8.irx2\";\nconnectAttr \"pairBlend4.ory\" \"pairBlend8.iry2\";\nconnectAttr \"joint4.rz\" \"pairBlend8.irz2\";\nconnectAttr \"joint5.blendPairBlend4\" \"pairBlend8.w\";\nconnectAttr \"pairBlend8_inRotateZ1.o\" \"pairBlend8.irz1\";\nconnectAttr \"clip_joint_rot_zSource.cl\" \"clip_joint_rot_z.cl\";\nconnectAttr \"clip_target3Source.cl\" \"clip_target6.cl\";\nconnectAttr \"clip_target2Source.cl\" \"clip_target5.cl\";\nconnectAttr \"clip_target1Source.cl\" \"clip_target4.cl\";\nconnectAttr \"clip_joint_rot_zSource.cl\" \"clip_joint_rot_z_dup.cl\";\nconnectAttr \"character_set_blendShape1_target7.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[0].dn\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target3.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[1].dn\"\n\t\t;\nconnectAttr \"pairBlend5.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[2].dn\";\nconnectAttr \"clip_joint_rot_z.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[3].dn\"\n\t\t;\nconnectAttr \"clip_target3.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[4].dn\";\nconnectAttr \"character_setScheduler1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[5].dn\"\n\t\t;\nconnectAttr \"clip_target4.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[6].dn\";\nconnectAttr \"joint5.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[7].dn\";\nconnectAttr \"pairBlend6.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[8].dn\";\nconnectAttr \"pairBlend2.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[9].dn\";\nconnectAttr \"clip_target1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[10].dn\";\nconnectAttr \"character_setClips1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[11].dn\"\n\t\t;\nconnectAttr \"clip_target6.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[12].dn\";\nconnectAttr \"character_set_blendShape1_target9.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[13].dn\"\n\t\t;\nconnectAttr \"clip_joint_rot_z_dup.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[14].dn\"\n\t\t;\nconnectAttr \"joint3.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[15].dn\";\nconnectAttr \"joint4.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[16].dn\";\nconnectAttr \"character_set_blendShape1_target6.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[17].dn\"\n\t\t;\nconnectAttr \"skinCluster1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[18].dn\";\nconnectAttr \"character_set_blendShape1_target2.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[19].dn\"\n\t\t;\nconnectAttr \"joint1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[20].dn\";\nconnectAttr \"setup.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[21].dn\";\nconnectAttr \"pairBlend4.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[22].dn\";\nconnectAttr \"pairBlend1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[23].dn\";\nconnectAttr \"character_set_blendShape1_target11.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[24].dn\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target8.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[25].dn\"\n\t\t;\nconnectAttr \"joint1_rotateX.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[26].dn\";\nconnectAttr \"joint1_rotateZ.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[27].dn\";\nconnectAttr \"characterShape.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[28].dn\";\nconnectAttr \"character_set_blendShape1_target15.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[29].dn\"\n\t\t;\nconnectAttr \"bindPose1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[30].dn\";\nconnectAttr \"character_set.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[31].dn\";\nconnectAttr \"character_set_blendShape1_target5.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[32].dn\"\n\t\t;\nconnectAttr \"clip_target2.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[33].dn\";\nconnectAttr \"character_set_joint1_rotateZ.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[34].dn\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target4.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[35].dn\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target13.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[36].dn\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target12.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[37].dn\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[38].dn\"\n\t\t;\nconnectAttr \"joint2.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[39].dn\";\nconnectAttr \"pairBlend8.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[40].dn\";\nconnectAttr \"pairBlend3.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[41].dn\";\nconnectAttr \"clip_target5.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[42].dn\";\nconnectAttr \"pairBlend7.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[43].dn\";\nconnectAttr \"character_set_blendShape1_target10.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[44].dn\"\n\t\t;\nconnectAttr \"character_set_blendShape1_target14.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[45].dn\"\n\t\t;\nconnectAttr \"maya2glTF_scriptNode.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[46].dn\"\n\t\t;\nconnectAttr \"clip_rot_debugSource.cl\" \"clip_rot_debug.cl\";\nconnectAttr \":defaultArnoldDisplayDriver.msg\" \":defaultArnoldRenderOptions.drivers\"\n\t\t -na;\nconnectAttr \":defaultArnoldFilter.msg\" \":defaultArnoldRenderOptions.filt\";\nconnectAttr \":defaultArnoldDriver.msg\" \":defaultArnoldRenderOptions.drvr\";\nconnectAttr \"trackInfoManager1.msg\" \":sequenceManager1.tim\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"characterShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"target1Shape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"targetShape2.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"targetShape3.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"character_set.pa\" \":characterPartition.st\" -na;\n// End of ComplexTraxAnim1.ma\n"
  },
  {
    "path": "maya/scenes/env/ReflectionSphere.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: ReflectionSphere.ma\n//Last modified: Sun, Feb 03, 2019 11:58:13 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\nrequires -nodeType \"GLSLShader\" \"glslShader\" \"1.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"2012BD56-4ADF-C4A8-2F01-D6A2E80416C9\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0.88865345057898759 0.44557876342761993 0.82868271628912327 ;\n\tsetAttr \".r\" -type \"double3\" -20.138352732868906 -1033.00000000006 2.3317905641067009e-15 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"E3C5DB46-4DDC-41D7-A317-22B66A4159C6\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 31.176898379323585;\n\tsetAttr \".coi\" 1.2942027197491901;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" -5.7674532233376041e-08 0 -8.651179836394185e-08 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"13CEA4DA-43B6-BBCC-BB6D-3987E1163243\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"9A5813FC-461A-2B20-83AB-7EAAA21BFBFD\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"CE845D2C-4F63-A8F1-1F05-6DA0EB553CA4\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"6EA1208A-4534-B37D-37B5-BB980DF4FA3F\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"C4DBF41B-470D-FE4C-052C-438C173FC132\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"0226021E-4BF8-D534-28D4-F7822CCEF28B\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pos_x\";\n\trename -uid \"7422B0E1-4417-2F14-8555-0FB8E1A0BE17\";\n\tsetAttr \".rp\" -type \"double3\" 0.44699600338935852 -0.011153809726238251 0.0092644989490509033 ;\n\tsetAttr \".sp\" -type \"double3\" 0.44699600338935852 -0.011153809726238251 0.0092644989490509033 ;\ncreateNode mesh -n \"pos_xShape\" -p \"pos_x\";\n\trename -uid \"DFF12DBA-4EC8-E2EC-AEB2-548255344541\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".iog[0].og[0].gcl\" -type \"componentList\" 1 \"f[0:27]\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr -s 7 \".uvst\";\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 128 \".uvst[0].uvsp[0:127]\" -type \"float2\" 0.31838161 0.39703923\n\t\t 0.31838161 0.49933288 0.2752578 0.49933288 0.2752578 0.39703923 0.17672485 0.39703923\n\t\t 0.17672485 0.35892987 0.2752578 0.35892987 0.2752578 0.25738823 0.31838161 0.25738823\n\t\t 0.31838161 0.35892987 0.41691452 0.35892987 0.41691452 0.39703923 0.49524853 0.51052767\n\t\t 0.53335792 0.51052767 0.53335792 0.7513029 0.49524853 0.7513029 0.63862103 0.75130302\n\t\t 0.54008812 0.75130302 0.54008812 0.51052779 0.63862103 0.51052779 0.64590967 0.51278406\n\t\t 0.74745131 0.51278406 0.74745131 0.75355935 0.64590967 0.75355935 0.7966485 0.75355941\n\t\t 0.75352478 0.75355941 0.75352478 0.51278418 0.7966485 0.51278418 0.90528667 0.75355935\n\t\t 0.80374509 0.75355935 0.80374509 0.51278406 0.90528667 0.51278406 0.91844845 0.99800795\n\t\t 0.81991541 0.99800795 0.81991541 0.75723267 0.91844845 0.75723267 0.81426919 0.99800801\n\t\t 0.77615976 0.99800801 0.77615976 0.75723273 0.81426919 0.75723273 0.67198056 0.75723273\n\t\t 0.77051359 0.75723273 0.77051359 0.99800795 0.67198056 0.99800795 0.66633439 0.99800789\n\t\t 0.56404066 0.99800789 0.56404066 0.75723261 0.66633439 0.75723261 0.51527059 0.75497639\n\t\t 0.55839437 0.75497639 0.55839437 0.99575162 0.51527059 0.99575162 0.40733066 0.75514305\n\t\t 0.5096243 0.75514305 0.5096243 0.99591833 0.40733066 0.99591833 0.30315146 0.75514287\n\t\t 0.4016844 0.75514287 0.4016844 0.9959181 0.30315146 0.9959181 0.24202295 0.60529983\n\t\t 0.24202295 0.64340931 0.14349002 0.64340931 0.14349002 0.74495083 0.10036622 0.74495083\n\t\t 0.10036622 0.64340931 0.0018332663 0.64340931 0.0018332663 0.60529983 0.10036622\n\t\t 0.60529983 0.10036622 0.50300616 0.14349002 0.50300616 0.14349002 0.60529983 0.19338329\n\t\t 0.25371486 0.12543817 0.15768901 0.058245268 0.25371486 0.0018332305 0.25371486 0.099363312\n\t\t 0.12735203 0.0063462192 0.001992068 0.06225675 0.001992068 0.12844677 0.098769933\n\t\t 0.19338329 0.001992068 0.24728808 0.001992068 0.15276667 0.12835489 0.25129956 0.25371486\n\t\t 0.49927056 0.0019920322 0.49927056 0.127352 0.25849524 0.127352 0.25849524 0.0019920322\n\t\t 0.49927056 0.25371483 0.25849524 0.25371483 0.48850906 0.51052779 0.48850906 0.56443262\n\t\t 0.24773376 0.56443262 0.24773376 0.51052779 0.48850906 0.62936902 0.24773376 0.62936902\n\t\t 0.48850906 0.69555908 0.24773376 0.69555908 0.48850906 0.75146967 0.24773376 0.75146967\n\t\t 0.50600994 0.25371483 0.50600994 0.12835486 0.74678516 0.12835486 0.74678516 0.25371483\n\t\t 0.50600994 0.0019920322 0.74678516 0.0019920322 0.42256072 0.50685441 0.42256072\n\t\t 0.4504424 0.66333598 0.4504424 0.66333598 0.50685441 0.42256072 0.38324949 0.66333598\n\t\t 0.38324949 0.42256072 0.3153044 0.66333598 0.3153044 0.42256072 0.25738809 0.66333598\n\t\t 0.25738809 0.91844845 0.25738809 0.81991559 0.38274804 0.914437 0.50911087 0.86053216\n\t\t 0.50911087 0.79559565 0.41233301 0.72940564 0.50911087 0.67349511 0.50911087 0.76651222\n\t\t 0.38375092 0.66898215 0.25738809 0.72539419 0.25738809 0.79258704 0.35341379 0.86053216\n\t\t 0.25738809;\n\tsetAttr \".uvst[1].uvsn\" -type \"string\" \"map11\";\n\tsetAttr \".uvst[2].uvsn\" -type \"string\" \"map12\";\n\tsetAttr \".uvst[3].uvsn\" -type \"string\" \"map13\";\n\tsetAttr \".uvst[4].uvsn\" -type \"string\" \"map14\";\n\tsetAttr \".uvst[5].uvsn\" -type \"string\" \"map15\";\n\tsetAttr \".uvst[6].uvsn\" -type \"string\" \"map16\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".ccls\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clst[0].clsn\" -type \"string\" \"colorSet1\";\n\tsetAttr -s 144 \".clst[0].clsp\";\n\tsetAttr \".clst[0].clsp[0:124]\"  1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1;\n\tsetAttr \".clst[0].clsp[125:143]\" 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1;\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 48 \".vt[0:47]\"  0.35759681 -0.019345872 0.027189352 0.35759681 0.0089539737 0.027189352\n\t\t 0.35759681 0.0089539737 0.10035937 0.35759681 0.0843582 0.10035937 0.35759681 0.0843582 0.13238288\n\t\t 0.35759681 0.0089539737 0.13238288 0.35759681 0.0089539737 0.20555289 0.35759681 -0.019345872 0.20555289\n\t\t 0.35759681 -0.019345872 0.13238288 0.35759681 -0.095308639 0.13238288 0.35759681 -0.095308639 0.10035937\n\t\t 0.35759681 -0.019345872 0.10035937 0.53639519 -0.019345872 0.027189352 0.53639519 0.0089539737 0.027189352\n\t\t 0.53639519 0.0089539737 0.10035937 0.53639519 0.0843582 0.10035937 0.53639519 0.0843582 0.13238288\n\t\t 0.53639519 0.0089539737 0.13238288 0.53639519 0.0089539737 0.20555289 0.53639519 -0.019345872 0.20555289\n\t\t 0.53639519 -0.019345872 0.13238288 0.53639519 -0.095308639 0.13238288 0.53639519 -0.095308639 0.10035937\n\t\t 0.53639519 -0.019345872 0.10035937 0.35759681 -0.10666582 -0.18702389 0.35759681 -0.01357419 -0.11385387\n\t\t 0.35759681 0.080262154 -0.18404496 0.35759681 0.080262154 -0.14401558 0.35759681 0.0083954334 -0.095794097\n\t\t 0.35759681 0.080262154 -0.046641719 0.35759681 0.080262154 -0.005122859 0.35759681 -0.01282946 -0.07419686\n\t\t 0.35759681 -0.10666582 -0.0017715655 0.35759681 -0.10666582 -0.04366279 0.35759681 -0.035357632 -0.093559891\n\t\t 0.35759681 -0.10666582 -0.14401558 0.53639519 -0.10666582 -0.18702389 0.53639519 -0.01357419 -0.11385387\n\t\t 0.53639519 0.080262154 -0.18404496 0.53639519 0.080262154 -0.14401558 0.53639519 0.0083954334 -0.095794097\n\t\t 0.53639519 0.080262154 -0.046641719 0.53639519 0.080262154 -0.005122859 0.53639519 -0.01282946 -0.07419686\n\t\t 0.53639519 -0.10666582 -0.0017715655 0.53639519 -0.10666582 -0.04366279 0.53639519 -0.035357632 -0.093559891\n\t\t 0.53639519 -0.10666582 -0.14401558;\n\tsetAttr -s 72 \".ed[0:71]\"  11 10 0 10 9 0 9 8 0 8 7 0 7 6 0 6 5 0 5 4 0\n\t\t 4 3 0 3 2 0 2 1 0 1 0 0 0 11 0 1 13 0 13 12 0 12 0 0 2 14 0 14 13 0 3 15 0 15 14 0\n\t\t 4 16 0 16 15 0 5 17 0 17 16 0 6 18 0 18 17 0 7 19 0 19 18 0 8 20 0 20 19 0 9 21 0\n\t\t 21 20 0 10 22 0 22 21 0 11 23 0 23 22 0 12 23 0 35 34 0 34 33 0 33 32 0 32 31 0 31 30 0\n\t\t 30 29 0 29 28 0 28 27 0 27 26 0 26 25 0 25 24 0 24 35 0 25 37 0 37 36 0 36 24 0 26 38 0\n\t\t 38 37 0 27 39 0 39 38 0 28 40 0 40 39 0 29 41 0 41 40 0 30 42 0 42 41 0 31 43 0 43 42 0\n\t\t 32 44 0 44 43 0 33 45 0 45 44 0 34 46 0 46 45 0 35 47 0 47 46 0 36 47 0;\n\tsetAttr -s 28 -ch 144 \".fc[0:27]\" -type \"polyFaces\" \n\t\tf 12 0 1 2 3 4 5 6 7 8 9 10 11\n\t\tmu 0 12 0 1 2 3 4 5 6 7 8 9 10 11\n\t\tmc 0 12 0 1 2 3 4 5 6 7 8 9 10 11\n\t\tf 4 -11 12 13 14\n\t\tmu 0 4 12 13 14 15\n\t\tmc 0 4 12 13 14 15\n\t\tf 4 -10 15 16 -13\n\t\tmu 0 4 16 17 18 19\n\t\tmc 0 4 16 17 18 19\n\t\tf 4 -9 17 18 -16\n\t\tmu 0 4 20 21 22 23\n\t\tmc 0 4 20 21 22 23\n\t\tf 4 -8 19 20 -18\n\t\tmu 0 4 24 25 26 27\n\t\tmc 0 4 24 25 26 27\n\t\tf 4 -7 21 22 -20\n\t\tmu 0 4 28 29 30 31\n\t\tmc 0 4 28 29 30 31\n\t\tf 4 -6 23 24 -22\n\t\tmu 0 4 32 33 34 35\n\t\tmc 0 4 32 33 34 35\n\t\tf 4 -5 25 26 -24\n\t\tmu 0 4 36 37 38 39\n\t\tmc 0 4 36 37 38 39\n\t\tf 4 -4 27 28 -26\n\t\tmu 0 4 40 41 42 43\n\t\tmc 0 4 40 41 42 43\n\t\tf 4 -3 29 30 -28\n\t\tmu 0 4 44 45 46 47\n\t\tmc 0 4 44 45 46 47\n\t\tf 4 -2 31 32 -30\n\t\tmu 0 4 48 49 50 51\n\t\tmc 0 4 48 49 50 51\n\t\tf 4 -1 33 34 -32\n\t\tmu 0 4 52 53 54 55\n\t\tmc 0 4 52 53 54 55\n\t\tf 4 -12 -15 35 -34\n\t\tmu 0 4 56 57 58 59\n\t\tmc 0 4 56 57 58 59\n\t\tf 12 -14 -17 -19 -21 -23 -25 -27 -29 -31 -33 -35 -36\n\t\tmu 0 12 60 61 62 63 64 65 66 67 68 69 70 71\n\t\tmc 0 12 60 61 62 63 64 65 66 67 68 69 70 71\n\t\tf 12 36 37 38 39 40 41 42 43 44 45 46 47\n\t\tmu 0 12 72 73 74 75 76 77 78 79 80 81 82 83\n\t\tmc 0 12 72 73 74 75 76 77 78 79 80 81 82 83\n\t\tf 4 -47 48 49 50\n\t\tmu 0 4 84 85 86 87\n\t\tmc 0 4 84 85 86 87\n\t\tf 4 -46 51 52 -49\n\t\tmu 0 4 85 88 89 86\n\t\tmc 0 4 88 89 90 91\n\t\tf 4 -45 53 54 -52\n\t\tmu 0 4 90 91 92 93\n\t\tmc 0 4 92 93 94 95\n\t\tf 4 -44 55 56 -54\n\t\tmu 0 4 91 94 95 92\n\t\tmc 0 4 96 97 98 99\n\t\tf 4 -43 57 58 -56\n\t\tmu 0 4 94 96 97 95\n\t\tmc 0 4 100 101 102 103\n\t\tf 4 -42 59 60 -58\n\t\tmu 0 4 96 98 99 97\n\t\tmc 0 4 104 105 106 107\n\t\tf 4 -41 61 62 -60\n\t\tmu 0 4 100 101 102 103\n\t\tmc 0 4 108 109 110 111\n\t\tf 4 -40 63 64 -62\n\t\tmu 0 4 101 104 105 102\n\t\tmc 0 4 112 113 114 115\n\t\tf 4 -39 65 66 -64\n\t\tmu 0 4 106 107 108 109\n\t\tmc 0 4 116 117 118 119\n\t\tf 4 -38 67 68 -66\n\t\tmu 0 4 107 110 111 108\n\t\tmc 0 4 120 121 122 123\n\t\tf 4 -37 69 70 -68\n\t\tmu 0 4 110 112 113 111\n\t\tmc 0 4 124 125 126 127\n\t\tf 4 -48 -51 71 -70\n\t\tmu 0 4 112 114 115 113\n\t\tmc 0 4 128 129 130 131\n\t\tf 12 -50 -53 -55 -57 -59 -61 -63 -65 -67 -69 -71 -72\n\t\tmu 0 12 116 117 118 119 120 121 122 123 124 125 126 127\n\t\tmc 0 12 132 133 134 135 136 137 138 139 140 141 142 143;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr -s 7 \".pd\";\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[1]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[2]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[3]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[4]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[5]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[6]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"neg_x\";\n\trename -uid \"F006A261-471E-1950-34CE-A5885CD05359\";\n\tsetAttr \".rp\" -type \"double3\" -0.44699600338935852 -0.0044031962752342224 -0.0002409517765045166 ;\n\tsetAttr \".sp\" -type \"double3\" -0.44699600338935852 -0.0044031962752342224 -0.0002409517765045166 ;\ncreateNode mesh -n \"neg_xShape\" -p \"neg_x\";\n\trename -uid \"F18B06B3-4155-8EB1-D3E9-5BB5D7D83373\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".iog[0].og[0].gcl\" -type \"componentList\" 1 \"f[0:19]\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr -s 7 \".uvst\";\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".uvst[1].uvsn\" -type \"string\" \"map11\";\n\tsetAttr -s 80 \".uvst[1].uvsp[0:79]\" -type \"float2\" 0.48452574 0.79635191\n\t\t 0.43485439 0.79635191 0.43485439 0.61523396 0.48452574 0.61523396 0.046854131 0.30988422\n\t\t 0.09652514 0.30988422 0.09652514 0.60074365 0.046854131 0.60074365 0.18310991 0.89579588\n\t\t 0.0019920755 0.89579588 0.0019920755 0.60493642 0.18310991 0.60493642 0.23895745\n\t\t 0.89579576 0.18928637 0.89579576 0.18928637 0.6049363 0.23895745 0.6049363 0.24580601\n\t\t 0.61523378 0.42692381 0.61523378 0.42692381 0.90609318 0.24580601 0.90609318 0.49137399\n\t\t 0.61523384 0.54104507 0.61523384 0.54104507 0.79635173 0.49137399 0.79635173 0.23338678\n\t\t 0.30589274 0.15130827 0.18989237 0.070138358 0.30589274 0.0019920322 0.30589274 0.11980954\n\t\t 0.15324493 0.0074437764 0.0018086127 0.074984364 0.0018086127 0.15494271 0.11871742\n\t\t 0.23338678 0.0018086127 0.29850432 0.0018086127 0.18432134 0.15445641 0.30335033\n\t\t 0.30589274 0.600981 0.0018085693 0.600981 0.1532449 0.31012157 0.1532449 0.31012157\n\t\t 0.0018085693 0.600981 0.30589268 0.31012157 0.30589268 0.39351988 0.30988431 0.39351988\n\t\t 0.37500182 0.10266047 0.37500182 0.10266047 0.30988431 0.39351988 0.45344597 0.10266047\n\t\t 0.45344597 0.39351988 0.53340435 0.10266047 0.53340435 0.39351988 0.60094482 0.10266047\n\t\t 0.60094482 0.60831106 0.30589268 0.60831106 0.15445638 0.89917046 0.15445638 0.89917046\n\t\t 0.30589268 0.60831106 0.0018085693 0.89917046 0.0018085693 0.3996551 0.61124241 0.3996551\n\t\t 0.54309613 0.69051445 0.54309613 0.69051445 0.61124241 0.3996551 0.46192622 0.69051445\n\t\t 0.46192622 0.3996551 0.37984771 0.69051445 0.37984771 0.3996551 0.30988413 0.69051445\n\t\t 0.30988413 0.99800801 0.30988413 0.87897903 0.46132043 0.99316204 0.61396825 0.9280445\n\t\t 0.61396825 0.84960043 0.4970594 0.76964206 0.61396825 0.70210147 0.61396825 0.81446725\n\t\t 0.46253189 0.69664973 0.30988413 0.76479608 0.30988413 0.84596598 0.42588431 0.9280445\n\t\t 0.30988413;\n\tsetAttr \".uvst[2].uvsn\" -type \"string\" \"map12\";\n\tsetAttr \".uvst[3].uvsn\" -type \"string\" \"map13\";\n\tsetAttr \".uvst[4].uvsn\" -type \"string\" \"map14\";\n\tsetAttr \".uvst[5].uvsn\" -type \"string\" \"map15\";\n\tsetAttr \".uvst[6].uvsn\" -type \"string\" \"map16\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".ccls\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clst[0].clsn\" -type \"string\" \"colorSet1\";\n\tsetAttr -s 96 \".clst[0].clsp[0:95]\"  1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1;\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 32 \".vt[0:31]\"  -0.35759681 -0.011664338 -0.068435267 -0.35759681 0.018869713 -0.068435267\n\t\t -0.35759681 0.018869713 -0.17977285 -0.35759681 -0.011664338 -0.17977285 -0.53639519 -0.011664338 -0.068435267\n\t\t -0.53639519 0.018869713 -0.068435267 -0.53639519 0.018869713 -0.17977285 -0.53639519 -0.011664338 -0.17977285\n\t\t -0.35759681 -0.097867183 0.17929095 -0.35759681 -0.0047755539 0.10612093 -0.35759681 0.089060791 0.17631203\n\t\t -0.35759681 0.089060791 0.13628264 -0.35759681 0.01719407 0.088061154 -0.35759681 0.089060791 0.038908783\n\t\t -0.35759681 0.089060791 -0.0026100725 -0.35759681 -0.0040308237 0.066463917 -0.35759681 -0.097867183 -0.005961366\n\t\t -0.35759681 -0.097867183 0.035929855 -0.35759681 -0.026558995 0.085826948 -0.35759681 -0.097867183 0.13628264\n\t\t -0.53639519 -0.097867183 0.17929095 -0.53639519 -0.0047755539 0.10612093 -0.53639519 0.089060791 0.17631203\n\t\t -0.53639519 0.089060791 0.13628264 -0.53639519 0.01719407 0.088061154 -0.53639519 0.089060791 0.038908783\n\t\t -0.53639519 0.089060791 -0.0026100725 -0.53639519 -0.0040308237 0.066463917 -0.53639519 -0.097867183 -0.005961366\n\t\t -0.53639519 -0.097867183 0.035929855 -0.53639519 -0.026558995 0.085826948 -0.53639519 -0.097867183 0.13628264;\n\tsetAttr -s 48 \".ed[0:47]\"  3 2 0 2 1 0 1 0 0 0 3 0 1 5 0 5 4 0 4 0 0\n\t\t 2 6 0 6 5 0 3 7 0 7 6 0 4 7 0 19 18 0 18 17 0 17 16 0 16 15 0 15 14 0 14 13 0 13 12 0\n\t\t 12 11 0 11 10 0 10 9 0 9 8 0 8 19 0 9 21 0 21 20 0 20 8 0 10 22 0 22 21 0 11 23 0\n\t\t 23 22 0 12 24 0 24 23 0 13 25 0 25 24 0 14 26 0 26 25 0 15 27 0 27 26 0 16 28 0 28 27 0\n\t\t 17 29 0 29 28 0 18 30 0 30 29 0 19 31 0 31 30 0 20 31 0;\n\tsetAttr -s 20 -ch 96 \".fc[0:19]\" -type \"polyFaces\" \n\t\tf 4 0 1 2 3\n\t\tmu 1 4 0 1 2 3\n\t\tmc 0 4 0 1 2 3\n\t\tf 4 -3 4 5 6\n\t\tmu 1 4 4 5 6 7\n\t\tmc 0 4 4 5 6 7\n\t\tf 4 -2 7 8 -5\n\t\tmu 1 4 8 9 10 11\n\t\tmc 0 4 8 9 10 11\n\t\tf 4 -1 9 10 -8\n\t\tmu 1 4 12 13 14 15\n\t\tmc 0 4 12 13 14 15\n\t\tf 4 -4 -7 11 -10\n\t\tmu 1 4 16 17 18 19\n\t\tmc 0 4 16 17 18 19\n\t\tf 4 -6 -9 -11 -12\n\t\tmu 1 4 20 21 22 23\n\t\tmc 0 4 20 21 22 23\n\t\tf 12 12 13 14 15 16 17 18 19 20 21 22 23\n\t\tmu 1 12 24 25 26 27 28 29 30 31 32 33 34 35\n\t\tmc 0 12 24 25 26 27 28 29 30 31 32 33 34 35\n\t\tf 4 -23 24 25 26\n\t\tmu 1 4 36 37 38 39\n\t\tmc 0 4 36 37 38 39\n\t\tf 4 -22 27 28 -25\n\t\tmu 1 4 37 40 41 38\n\t\tmc 0 4 40 41 42 43\n\t\tf 4 -21 29 30 -28\n\t\tmu 1 4 42 43 44 45\n\t\tmc 0 4 44 45 46 47\n\t\tf 4 -20 31 32 -30\n\t\tmu 1 4 43 46 47 44\n\t\tmc 0 4 48 49 50 51\n\t\tf 4 -19 33 34 -32\n\t\tmu 1 4 46 48 49 47\n\t\tmc 0 4 52 53 54 55\n\t\tf 4 -18 35 36 -34\n\t\tmu 1 4 48 50 51 49\n\t\tmc 0 4 56 57 58 59\n\t\tf 4 -17 37 38 -36\n\t\tmu 1 4 52 53 54 55\n\t\tmc 0 4 60 61 62 63\n\t\tf 4 -16 39 40 -38\n\t\tmu 1 4 53 56 57 54\n\t\tmc 0 4 64 65 66 67\n\t\tf 4 -15 41 42 -40\n\t\tmu 1 4 58 59 60 61\n\t\tmc 0 4 68 69 70 71\n\t\tf 4 -14 43 44 -42\n\t\tmu 1 4 59 62 63 60\n\t\tmc 0 4 72 73 74 75\n\t\tf 4 -13 45 46 -44\n\t\tmu 1 4 62 64 65 63\n\t\tmc 0 4 76 77 78 79\n\t\tf 4 -24 -27 47 -46\n\t\tmu 1 4 64 66 67 65\n\t\tmc 0 4 80 81 82 83\n\t\tf 12 -26 -29 -31 -33 -35 -37 -39 -41 -43 -45 -47 -48\n\t\tmu 1 12 68 69 70 71 72 73 74 75 76 77 78 79\n\t\tmc 0 12 84 85 86 87 88 89 90 91 92 93 94 95;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr -s 7 \".pd\";\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[1]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[2]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[3]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[4]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[5]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[6]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pos_y\";\n\trename -uid \"16CE107B-497F-803C-8E20-7A84501EAC19\";\n\tsetAttr \".rp\" -type \"double3\" 0.068356320261955261 0.44699600338935852 0.016516149044036865 ;\n\tsetAttr \".sp\" -type \"double3\" 0.068356320261955261 0.44699600338935852 0.016516149044036865 ;\ncreateNode mesh -n \"pos_yShape\" -p \"pos_y\";\n\trename -uid \"DAE40231-489E-C08F-5201-1AA322BFCFD5\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".iog[0].og[0].gcl\" -type \"componentList\" 1 \"f[0:48]\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr -s 7 \".uvst\";\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".uvst[1].uvsn\" -type \"string\" \"map11\";\n\tsetAttr \".uvst[2].uvsn\" -type \"string\" \"map12\";\n\tsetAttr -s 222 \".uvst[2].uvsp[0:221]\" -type \"float2\" 0.86055112 0.42187592\n\t\t 0.86055112 0.51668042 0.82058454 0.51668042 0.82058454 0.42187592 0.72926545 0.42187592\n\t\t 0.72926545 0.38655666 0.82058454 0.38655666 0.82058454 0.29244912 0.86055112 0.29244912\n\t\t 0.86055112 0.38655666 0.95187026 0.38655666 0.95187026 0.42187592 0.45963806 0.33575591\n\t\t 0.49495736 0.33575591 0.49495736 0.55890346 0.45963806 0.55890346 0.45378643 0.55890346\n\t\t 0.36246735 0.55890346 0.36246735 0.33575591 0.45378643 0.33575591 0.26250815 0.33575591\n\t\t 0.35661566 0.33575591 0.35661566 0.55890346 0.26250815 0.55890346 0.25665656 0.55890363\n\t\t 0.21668994 0.55890363 0.21668994 0.33575609 0.25665656 0.33575609 0.21083829 0.55890363\n\t\t 0.11673084 0.55890363 0.11673084 0.33575609 0.21083829 0.33575609 0.1108792 0.55890363\n\t\t 0.01956008 0.55890363 0.01956008 0.33575609 0.1108792 0.33575609 0.03721929 0.78585809\n\t\t 0.0018999408 0.78585809 0.0018999408 0.56271052 0.03721929 0.56271052 0.044839419\n\t\t 0.56271052 0.13615853 0.56271052 0.13615853 0.78585804 0.044839419 0.78585804 0.23816317\n\t\t 0.78585809 0.14335863 0.78585809 0.14335863 0.56271052 0.23816317 0.56271052 0.24559553\n\t\t 0.56271052 0.28556213 0.56271052 0.28556213 0.78585804 0.24559553 0.78585804 0.29206681\n\t\t 0.56271034 0.38687128 0.56271034 0.38687128 0.78585792 0.29206681 0.78585792 0.39430374\n\t\t 0.5627104 0.48562279 0.5627104 0.48562279 0.78585792 0.39430374 0.78585792 0.72341383\n\t\t 0.41467258 0.72341383 0.44999191 0.63209474 0.44999191 0.63209474 0.54409939 0.59212816\n\t\t 0.54409939 0.59212816 0.44999191 0.50080901 0.44999191 0.50080901 0.41467258 0.59212816\n\t\t 0.41467258 0.59212816 0.31986803 0.63209474 0.31986803 0.63209474 0.41467258 0.15340133\n\t\t 0.21065506 0.14088272 0.2402814 0.12795749 0.26549301 0.11421895 0.28643486 0.099260531\n\t\t 0.30325216 0.091287538 0.3101432 0.082936943 0.3160612 0.074208736 0.32100636 0.065102987\n\t\t 0.3249782 0.055532522 0.32802802 0.045410149 0.33020642 0.034735929 0.33151361 0.0235098\n\t\t 0.33194906 0.012588724 0.33171684 0.0018999408 0.33101961 0.0018999408 0.29430616\n\t\t 0.013053447 0.29558408 0.025833488 0.29616505 0.036609322 0.29535186 0.046630014\n\t\t 0.29291198 0.056011744 0.28864223 0.064870626 0.28233933 0.07329385 0.2739453 0.081368461\n\t\t 0.26340163 0.089152656 0.25056359 0.096704483 0.2352857 0.0035264743 0.0019921651\n\t\t 0.049534604 0.0019921651 0.10855508 0.15628183 0.12040567 0.19253083 0.13388273 0.15535238\n\t\t 0.18848832 0.0019921651 0.23286985 0.0019921651 0.53720444 0.78585792 0.49282292\n\t\t 0.78585792 0.49282292 0.56271034 0.53720444 0.56271034 0.73540926 0.77105367 0.58204901\n\t\t 0.77105367 0.58204901 0.54790628 0.73540926 0.54790628 0.54487073 0.77105367 0.54487073\n\t\t 0.54790628 0.74190915 0.52048749 0.77815801 0.52048749 0.77815801 0.74363506 0.74190915\n\t\t 0.74363506 0.93244779 0.52048749 0.93244779 0.74363506 0.95187026 0.97058952 0.90586215\n\t\t 0.97058952 0.90586215 0.74744195 0.95187026 0.74744195 0.70844984 0.28864217 0.70844984\n\t\t 0.055348624 0.93159729 0.055348624 0.93159729 0.28864217 0.70844984 0.040070694 0.93159729\n\t\t 0.040070694 0.70844984 0.027232565 0.93159729 0.027232565 0.70844984 0.016689058\n\t\t 0.93159729 0.016689058 0.70844984 0.0082948999 0.93159729 0.0082948999 0.70844984\n\t\t 0.0019920322 0.93159729 0.0019920322 0.90001047 0.97058952 0.8906287 0.97058952 0.8906287\n\t\t 0.74744195 0.90001047 0.74744195 0.88060802 0.97058952 0.88060802 0.74744195 0.86983222\n\t\t 0.97058952 0.86983222 0.74744195 0.85705215 0.97058952 0.85705215 0.74744195 0.84589863\n\t\t 0.97058952 0.84589863 0.74744195 0.84004688 0.9705894 0.8033334 0.9705894 0.8033334\n\t\t 0.74744195 0.84004688 0.74744195 0.71644485 0.77486062 0.72713363 0.77486062 0.72713363\n\t\t 0.99800807 0.71644485 0.99800807 0.73805469 0.77486062 0.73805469 0.99800807 0.74928081\n\t\t 0.77486062 0.74928081 0.99800807 0.75995505 0.77486062 0.75995505 0.99800807 0.77007741\n\t\t 0.77486062 0.77007741 0.99800807 0.77964789 0.77486062 0.77964789 0.99800807 0.78875363\n\t\t 0.77486062 0.78875363 0.99800807 0.79748183 0.77486062 0.79748183 0.99800807 0.70109963\n\t\t 0.0019920322 0.70109963 0.0079100793 0.47795209 0.0079100793 0.47795209 0.0019920322\n\t\t 0.70109963 0.014801101 0.47795209 0.014801101 0.70109963 0.031618446 0.47795209 0.031618446\n\t\t 0.70109963 0.052560281 0.47795209 0.052560281 0.70109963 0.07777179 0.47795209 0.07777179\n\t\t 0.70109963 0.10739817 0.47795209 0.10739817 0.70109963 0.31606114 0.47795209 0.31606114\n\t\t 0.47098887 0.331949 0.42660734 0.331949 0.37200174 0.17858872 0.35852468 0.14141047\n\t\t 0.34667408 0.17765926 0.28765363 0.331949 0.2416455 0.331949 0.33482349 0.09865547\n\t\t 0.32727167 0.08337754 0.31948748 0.070539407 0.31141287 0.059995897 0.30298963 0.051601738\n\t\t 0.29413077 0.045298871 0.28474903 0.04102917 0.27472836 0.03858937 0.26395252 0.037776072\n\t\t 0.25117248 0.038356975 0.24001896 0.039634999 0.24001896 0.00292148 0.25070775 0.0022243941\n\t\t 0.26162884 0.0019920322 0.27285495 0.0024276944 0.28352916 0.0037347469 0.29365155\n\t\t 0.005913157 0.303222 0.0089629237 0.31232774 0.012934923 0.32105595 0.017879898 0.32940656\n\t\t 0.023797944 0.33737954 0.030688966 0.35233796 0.04750631 0.3660765 0.068448149 0.37900174\n\t\t 0.093659654 0.39152035 0.12328604;\n\tsetAttr \".uvst[3].uvsn\" -type \"string\" \"map13\";\n\tsetAttr \".uvst[4].uvsn\" -type \"string\" \"map14\";\n\tsetAttr \".uvst[5].uvsn\" -type \"string\" \"map15\";\n\tsetAttr \".uvst[6].uvsn\" -type \"string\" \"map16\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".ccls\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clst[0].clsn\" -type \"string\" \"colorSet1\";\n\tsetAttr -s 270 \".clst[0].clsp\";\n\tsetAttr \".clst[0].clsp[0:124]\"  1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1;\n\tsetAttr \".clst[0].clsp[125:249]\" 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1;\n\tsetAttr \".clst[0].clsp[250:269]\" 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1;\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 90 \".vt[0:89]\"  0.037822269 0.35759681 0.033323899 0.0095224231 0.35759681 0.033323899\n\t\t 0.0095224231 0.35759681 0.10649391 -0.065881804 0.35759681 0.10649391 -0.065881804 0.35759681 0.13851744\n\t\t 0.0095224231 0.35759681 0.13851744 0.0095224231 0.35759681 0.21168746 0.037822269 0.35759681 0.21168746\n\t\t 0.037822269 0.35759681 0.13851744 0.11378504 0.35759681 0.13851744 0.11378504 0.35759681 0.10649391\n\t\t 0.037822269 0.35759681 0.10649391 0.037822269 0.53639519 0.033323899 0.0095224231 0.53639519 0.033323899\n\t\t 0.0095224231 0.53639519 0.10649391 -0.065881804 0.53639519 0.10649391 -0.065881804 0.53639519 0.13851744\n\t\t 0.0095224231 0.53639519 0.13851744 0.0095224231 0.53639519 0.21168746 0.037822269 0.53639519 0.21168746\n\t\t 0.037822269 0.53639519 0.13851744 0.11378504 0.53639519 0.13851744 0.11378504 0.53639519 0.10649391\n\t\t 0.037822269 0.53639519 0.10649391 -0.061785758 0.35759681 -0.17865516 -0.061785758 0.35759681 -0.14309414\n\t\t 0.061095178 0.35759681 -0.09934108 0.090884499 0.35759681 -0.088542469 0.061839908 0.35759681 -0.079047099\n\t\t -0.061785758 0.35759681 -0.031756558 -0.061785758 0.35759681 0.0051077213 0.12514222 0.35759681 -0.069551758\n\t\t 0.13738376 0.35759681 -0.063500799 0.14767039 0.35759681 -0.057263665 0.15611845 0.35759681 -0.050793804\n\t\t 0.16284433 0.35759681 -0.044044644 0.16789454 0.35759681 -0.036946431 0.17131567 0.35759681 -0.029429261\n\t\t 0.17327058 0.35759681 -0.021400116 0.17392223 0.35759681 -0.012765881 0.17345677 0.35759681 -0.0025257878\n\t\t 0.17243277 0.35759681 0.0064110048 0.20184971 0.35759681 0.0064110048 0.20240827 0.35759681 -0.0021534264\n\t\t 0.20259444 0.35759681 -0.01090404 0.20224535 0.35759681 -0.019899022 0.20119807 0.35759681 -0.028451808\n\t\t 0.19945261 0.35759681 -0.036562428 0.19700895 0.35759681 -0.044230856 0.19382638 0.35759681 -0.051526889\n\t\t 0.18986417 0.35759681 -0.058520392 0.18512231 0.35759681 -0.065211363 0.17960082 0.35759681 -0.071599782\n\t\t 0.1661258 0.35759681 -0.083585344 0.14934604 0.35759681 -0.094593421 0.12914516 0.35759681 -0.10494986\n\t\t 0.10540679 0.35759681 -0.11498049 -0.061785758 0.53639519 -0.17865516 -0.061785758 0.53639519 -0.14309414\n\t\t 0.061095178 0.53639519 -0.09934108 0.090884499 0.53639519 -0.088542469 0.061839908 0.53639519 -0.079047099\n\t\t -0.061785758 0.53639519 -0.031756558 -0.061785758 0.53639519 0.0051077213 0.12514222 0.53639519 -0.069551758\n\t\t 0.13738376 0.53639519 -0.063500799 0.14767039 0.53639519 -0.057263665 0.15611845 0.53639519 -0.050793804\n\t\t 0.16284433 0.53639519 -0.044044644 0.16789454 0.53639519 -0.036946431 0.17131567 0.53639519 -0.029429261\n\t\t 0.17327058 0.53639519 -0.021400116 0.17392223 0.53639519 -0.012765881 0.17345677 0.53639519 -0.0025257878\n\t\t 0.17243277 0.53639519 0.0064110048 0.20184971 0.53639519 0.0064110048 0.20240827 0.53639519 -0.0021534264\n\t\t 0.20259444 0.53639519 -0.01090404 0.20224535 0.53639519 -0.019899022 0.20119807 0.53639519 -0.028451808\n\t\t 0.19945261 0.53639519 -0.036562428 0.19700895 0.53639519 -0.044230856 0.19382638 0.53639519 -0.051526889\n\t\t 0.18986417 0.53639519 -0.058520392 0.18512231 0.53639519 -0.065211363 0.17960082 0.53639519 -0.071599782\n\t\t 0.1661258 0.53639519 -0.083585344 0.14934604 0.53639519 -0.094593421 0.12914516 0.53639519 -0.10494986\n\t\t 0.10540679 0.53639519 -0.11498049;\n\tsetAttr -s 135 \".ed[0:134]\"  11 10 0 10 9 0 9 8 0 8 7 0 7 6 0 6 5 0 5 4 0\n\t\t 4 3 0 3 2 0 2 1 0 1 0 0 0 11 0 1 13 0 13 12 0 12 0 0 2 14 0 14 13 0 3 15 0 15 14 0\n\t\t 4 16 0 16 15 0 5 17 0 17 16 0 6 18 0 18 17 0 7 19 0 19 18 0 8 20 0 20 19 0 9 21 0\n\t\t 21 20 0 10 22 0 22 21 0 11 23 0 23 22 0 12 23 0 56 55 0 55 54 0 54 53 0 53 52 0 52 51 0\n\t\t 51 50 0 50 49 0 49 48 0 48 47 0 47 46 0 46 45 0 45 44 0 44 43 0 43 42 0 42 41 0 41 40 0\n\t\t 40 39 0 39 38 0 38 37 0 37 36 0 36 35 0 35 34 0 34 33 0 33 32 0 32 31 0 31 30 0 30 29 0\n\t\t 29 28 0 28 27 0 27 26 0 26 25 0 25 24 0 24 56 0 25 58 0 58 57 0 57 24 0 26 59 1 59 58 0\n\t\t 27 60 0 60 59 0 28 61 1 61 60 0 29 62 0 62 61 0 30 63 0 63 62 0 31 64 0 64 63 0 32 65 1\n\t\t 65 64 0 33 66 1 66 65 0 34 67 1 67 66 0 35 68 1 68 67 0 36 69 1 69 68 0 37 70 1 70 69 0\n\t\t 38 71 1 71 70 0 39 72 1 72 71 0 40 73 1 73 72 0 41 74 0 74 73 0 42 75 0 75 74 0 43 76 1\n\t\t 76 75 0 44 77 1 77 76 0 45 78 1 78 77 0 46 79 1 79 78 0 47 80 1 80 79 0 48 81 1 81 80 0\n\t\t 49 82 1 82 81 0 50 83 1 83 82 0 51 84 1 84 83 0 52 85 1 85 84 0 53 86 1 86 85 0 54 87 1\n\t\t 87 86 0 55 88 1 88 87 0 56 89 1 89 88 0 57 89 0;\n\tsetAttr -s 49 -ch 270 \".fc[0:48]\" -type \"polyFaces\" \n\t\tf 12 0 1 2 3 4 5 6 7 8 9 10 11\n\t\tmu 2 12 0 1 2 3 4 5 6 7 8 9 10 11\n\t\tmc 0 12 0 1 2 3 4 5 6 7 8 9 10 11\n\t\tf 4 -11 12 13 14\n\t\tmu 2 4 12 13 14 15\n\t\tmc 0 4 12 13 14 15\n\t\tf 4 -10 15 16 -13\n\t\tmu 2 4 16 17 18 19\n\t\tmc 0 4 16 17 18 19\n\t\tf 4 -9 17 18 -16\n\t\tmu 2 4 20 21 22 23\n\t\tmc 0 4 20 21 22 23\n\t\tf 4 -8 19 20 -18\n\t\tmu 2 4 24 25 26 27\n\t\tmc 0 4 24 25 26 27\n\t\tf 4 -7 21 22 -20\n\t\tmu 2 4 28 29 30 31\n\t\tmc 0 4 28 29 30 31\n\t\tf 4 -6 23 24 -22\n\t\tmu 2 4 32 33 34 35\n\t\tmc 0 4 32 33 34 35\n\t\tf 4 -5 25 26 -24\n\t\tmu 2 4 36 37 38 39\n\t\tmc 0 4 36 37 38 39\n\t\tf 4 -4 27 28 -26\n\t\tmu 2 4 40 41 42 43\n\t\tmc 0 4 40 41 42 43\n\t\tf 4 -3 29 30 -28\n\t\tmu 2 4 44 45 46 47\n\t\tmc 0 4 44 45 46 47\n\t\tf 4 -2 31 32 -30\n\t\tmu 2 4 48 49 50 51\n\t\tmc 0 4 48 49 50 51\n\t\tf 4 -1 33 34 -32\n\t\tmu 2 4 52 53 54 55\n\t\tmc 0 4 52 53 54 55\n\t\tf 4 -12 -15 35 -34\n\t\tmu 2 4 56 57 58 59\n\t\tmc 0 4 56 57 58 59\n\t\tf 12 -14 -17 -19 -21 -23 -25 -27 -29 -31 -33 -35 -36\n\t\tmu 2 12 60 61 62 63 64 65 66 67 68 69 70 71\n\t\tmc 0 12 60 61 62 63 64 65 66 67 68 69 70 71\n\t\tf 33 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62\n\t\t 63 64 65 66 67 68\n\t\tmu 2 33 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98\n\t\t 99 100 101 102 103 104\n\t\tmc 0 33 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98\n\t\t 99 100 101 102 103 104\n\t\tf 4 -68 69 70 71\n\t\tmu 2 4 105 106 107 108\n\t\tmc 0 4 105 106 107 108\n\t\tf 4 -67 72 73 -70\n\t\tmu 2 4 109 110 111 112\n\t\tmc 0 4 109 110 111 112\n\t\tf 4 -66 74 75 -73\n\t\tmu 2 4 110 113 114 111\n\t\tmc 0 4 113 114 115 116\n\t\tf 4 -65 76 77 -75\n\t\tmu 2 4 115 116 117 118\n\t\tmc 0 4 117 118 119 120\n\t\tf 4 -64 78 79 -77\n\t\tmu 2 4 116 119 120 117\n\t\tmc 0 4 121 122 123 124\n\t\tf 4 -63 80 81 -79\n\t\tmu 2 4 121 122 123 124\n\t\tmc 0 4 125 126 127 128\n\t\tf 4 -62 82 83 -81\n\t\tmu 2 4 125 126 127 128\n\t\tmc 0 4 129 130 131 132\n\t\tf 4 -61 84 85 -83\n\t\tmu 2 4 126 129 130 127\n\t\tmc 0 4 133 134 135 136\n\t\tf 4 -60 86 87 -85\n\t\tmu 2 4 129 131 132 130\n\t\tmc 0 4 137 138 139 140\n\t\tf 4 -59 88 89 -87\n\t\tmu 2 4 131 133 134 132\n\t\tmc 0 4 141 142 143 144\n\t\tf 4 -58 90 91 -89\n\t\tmu 2 4 133 135 136 134\n\t\tmc 0 4 145 146 147 148\n\t\tf 4 -57 92 93 -91\n\t\tmu 2 4 135 137 138 136\n\t\tmc 0 4 149 150 151 152\n\t\tf 4 -56 94 95 -93\n\t\tmu 2 4 139 140 141 142\n\t\tmc 0 4 153 154 155 156\n\t\tf 4 -55 96 97 -95\n\t\tmu 2 4 140 143 144 141\n\t\tmc 0 4 157 158 159 160\n\t\tf 4 -54 98 99 -97\n\t\tmu 2 4 143 145 146 144\n\t\tmc 0 4 161 162 163 164\n\t\tf 4 -53 100 101 -99\n\t\tmu 2 4 145 147 148 146\n\t\tmc 0 4 165 166 167 168\n\t\tf 4 -52 102 103 -101\n\t\tmu 2 4 147 149 150 148\n\t\tmc 0 4 169 170 171 172\n\t\tf 4 -51 104 105 -103\n\t\tmu 2 4 151 152 153 154\n\t\tmc 0 4 173 174 175 176\n\t\tf 4 -50 106 107 -105\n\t\tmu 2 4 155 156 157 158\n\t\tmc 0 4 177 178 179 180\n\t\tf 4 -49 108 109 -107\n\t\tmu 2 4 156 159 160 157\n\t\tmc 0 4 181 182 183 184\n\t\tf 4 -48 110 111 -109\n\t\tmu 2 4 159 161 162 160\n\t\tmc 0 4 185 186 187 188\n\t\tf 4 -47 112 113 -111\n\t\tmu 2 4 161 163 164 162\n\t\tmc 0 4 189 190 191 192\n\t\tf 4 -46 114 115 -113\n\t\tmu 2 4 163 165 166 164\n\t\tmc 0 4 193 194 195 196\n\t\tf 4 -45 116 117 -115\n\t\tmu 2 4 165 167 168 166\n\t\tmc 0 4 197 198 199 200\n\t\tf 4 -44 118 119 -117\n\t\tmu 2 4 167 169 170 168\n\t\tmc 0 4 201 202 203 204\n\t\tf 4 -43 120 121 -119\n\t\tmu 2 4 169 171 172 170\n\t\tmc 0 4 205 206 207 208\n\t\tf 4 -42 122 123 -121\n\t\tmu 2 4 173 174 175 176\n\t\tmc 0 4 209 210 211 212\n\t\tf 4 -41 124 125 -123\n\t\tmu 2 4 174 177 178 175\n\t\tmc 0 4 213 214 215 216\n\t\tf 4 -40 126 127 -125\n\t\tmu 2 4 177 179 180 178\n\t\tmc 0 4 217 218 219 220\n\t\tf 4 -39 128 129 -127\n\t\tmu 2 4 179 181 182 180\n\t\tmc 0 4 221 222 223 224\n\t\tf 4 -38 130 131 -129\n\t\tmu 2 4 181 183 184 182\n\t\tmc 0 4 225 226 227 228\n\t\tf 4 -37 132 133 -131\n\t\tmu 2 4 183 185 186 184\n\t\tmc 0 4 229 230 231 232\n\t\tf 4 -69 -72 134 -133\n\t\tmu 2 4 185 187 188 186\n\t\tmc 0 4 233 234 235 236\n\t\tf 33 -71 -74 -76 -78 -80 -82 -84 -86 -88 -90 -92 -94 -96 -98 -100 -102 -104 -106 -108\n\t\t -110 -112 -114 -116 -118 -120 -122 -124 -126 -128 -130 -132 -134 -135\n\t\tmu 2 33 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208\n\t\t 209 210 211 212 213 214 215 216 217 218 219 220 221\n\t\tmc 0 33 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256\n\t\t 257 258 259 260 261 262 263 264 265 266 267 268 269;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr -s 7 \".pd\";\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[1]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[2]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[3]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[4]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[5]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[6]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"neg_y\";\n\trename -uid \"83D88616-4477-B8F0-CFBF-65A7DFAC69B8\";\n\tsetAttr \".rp\" -type \"double3\" 0.018519110977649689 -0.44699600338935852 0.026298016309738159 ;\n\tsetAttr \".sp\" -type \"double3\" 0.018519110977649689 -0.44699600338935852 0.026298016309738159 ;\ncreateNode mesh -n \"neg_yShape\" -p \"neg_y\";\n\trename -uid \"580BF24D-4C62-A088-0DE1-51A92102D8E2\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".iog[0].og[0].gcl\" -type \"componentList\" 1 \"f[0:40]\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr -s 7 \".uvst\";\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".uvst[1].uvsn\" -type \"string\" \"map11\";\n\tsetAttr \".uvst[2].uvsn\" -type \"string\" \"map12\";\n\tsetAttr \".uvst[3].uvsn\" -type \"string\" \"map13\";\n\tsetAttr -s 174 \".uvst[3].uvsp[0:173]\" -type \"float2\" 0.80484539 0.89698148\n\t\t 0.75911874 0.89698148 0.75911874 0.7302472 0.80484539 0.7302472 0.61049032 0.38257018\n\t\t 0.65621668 0.38257018 0.65621668 0.65033078 0.61049032 0.65033078 0.60477495 0.66939497\n\t\t 0.43804076 0.66939497 0.43804076 0.4016344 0.60477495 0.4016344 0.43232545 0.66939503\n\t\t 0.38659903 0.66939503 0.38659903 0.40163445 0.43232545 0.40163445 0.21414949 0.4016344\n\t\t 0.38088366 0.4016344 0.38088366 0.66939491 0.21414949 0.66939491 0.81176937 0.73024744\n\t\t 0.8574959 0.73024744 0.8574959 0.89698166 0.81176937 0.89698166 0.1836462 0.25237212\n\t\t 0.16862479 0.28792155 0.15311547 0.31817362 0.13663022 0.34330225 0.11868116 0.36348179\n\t\t 0.10911423 0.37175053 0.099094048 0.37885168 0.088620923 0.3847855 0.077694707 0.38955143\n\t\t 0.066210851 0.39321101 0.054064669 0.39582488 0.041256476 0.39739341 0.027785953\n\t\t 0.39791593 0.014681464 0.39763728 0.0018557138 0.39680067 0.0018557138 0.35274723\n\t\t 0.015239098 0.35428065 0.030574124 0.35497779 0.043504409 0.354002 0.055528499 0.35107434\n\t\t 0.066785887 0.34595093 0.077415891 0.33838791 0.087523051 0.32831571 0.097212069\n\t\t 0.31566408 0.10655253 0.30025941 0.11561416 0.28192705 0.0038074339 0.0019920322\n\t\t 0.059013795 0.0019920322 0.129834 0.18712825 0.14405383 0.23062436 0.16022532 0.18601298\n\t\t 0.22574791 0.0019920322 0.27900255 0.0019920322 0.20843412 0.66939467 0.15517947\n\t\t 0.66939467 0.15517947 0.4016341 0.20843412 0.4016341 0.23048785 0.94087362 0.04646682\n\t\t 0.94087362 0.04646682 0.67311323 0.23048785 0.67311323 0.0018556739 0.94087362 0.0018556739\n\t\t 0.67311323 0.23624235 0.67311329 0.27973831 0.67311329 0.27973831 0.94087386 0.23624235\n\t\t 0.94087386 0.46487468 0.67311329 0.46487468 0.94087386 0.52746928 0.94087386 0.47226292\n\t\t 0.94087386 0.47226292 0.67311329 0.52746928 0.67311329 0.66193205 0.72652912 0.66193205\n\t\t 0.44659412 0.92969251 0.44659412 0.92969251 0.72652912 0.66193205 0.42826173 0.92969251\n\t\t 0.42826173 0.66193205 0.41285691 0.92969251 0.41285691 0.66193205 0.40020549 0.92969251\n\t\t 0.40020549 0.66193205 0.39013311 0.92969251 0.39013311 0.66193205 0.38257015 0.92969251\n\t\t 0.38257015 0.59892154 0.94087386 0.58766419 0.94087386 0.58766419 0.67311329 0.59892154\n\t\t 0.67311329 0.57564008 0.94087386 0.57564008 0.67311329 0.56270981 0.94087386 0.56270981\n\t\t 0.67311329 0.54737478 0.94087386 0.54737478 0.67311329 0.5339914 0.94087386 0.5339914\n\t\t 0.67311329 0.64885104 0.94087368 0.60479748 0.94087368 0.60479748 0.67311329 0.64885104\n\t\t 0.67311329 0.65563273 0.7302475 0.66845852 0.7302475 0.66845852 0.99800801 0.65563273\n\t\t 0.99800801 0.68156302 0.7302475 0.68156302 0.99800801 0.69503355 0.7302475 0.69503355\n\t\t 0.99800801 0.70784175 0.7302475 0.70784175 0.99800801 0.71998793 0.7302475 0.71998793\n\t\t 0.99800801 0.73147178 0.7302475 0.73147178 0.99800801 0.74239802 0.7302475 0.74239802\n\t\t 0.99800801 0.75287116 0.7302475 0.75287116 0.99800801 0.83624727 0.0019921518 0.83624727\n\t\t 0.0090933722 0.56848669 0.0090933722 0.56848669 0.0019921518 0.83624727 0.01736209\n\t\t 0.56848669 0.01736209 0.83624727 0.037541661 0.56848669 0.037541661 0.83624727 0.06267032\n\t\t 0.56848669 0.06267032 0.83624727 0.092922263 0.56848669 0.092922263 0.83624727 0.12847173\n\t\t 0.56848669 0.12847173 0.83624727 0.37885186 0.56848669 0.37885186 0.5624088 0.39791614\n\t\t 0.5091542 0.39791614 0.44363159 0.21389514 0.4274601 0.16928399 0.41324028 0.21277986\n\t\t 0.34242007 0.39791614 0.28721371 0.39791614 0.39902043 0.11798114 0.3899588 0.099648744\n\t\t 0.38061833 0.084243938 0.37092933 0.07159251 0.36082217 0.061520141 0.35019216 0.053957164\n\t\t 0.33893478 0.04883384 0.32691067 0.045906261 0.3139804 0.044930361 0.29864538 0.045627404\n\t\t 0.28526199 0.047160938 0.28526199 0.0031074206 0.29808775 0.0022709691 0.31119221\n\t\t 0.0019921518 0.32466274 0.0025149141 0.33747095 0.0040832809 0.34961712 0.0066972123\n\t\t 0.36110097 0.010356707 0.37202719 0.015122814 0.38250032 0.021056416 0.39252049 0.028157637\n\t\t 0.40208742 0.036426354 0.42003649 0.056605928 0.43652174 0.08173459 0.45203105 0.11198653\n\t\t 0.46705246 0.14753599;\n\tsetAttr \".uvst[4].uvsn\" -type \"string\" \"map14\";\n\tsetAttr \".uvst[5].uvsn\" -type \"string\" \"map15\";\n\tsetAttr \".uvst[6].uvsn\" -type \"string\" \"map16\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".ccls\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clst[0].clsn\" -type \"string\" \"colorSet1\";\n\tsetAttr -s 222 \".clst[0].clsp\";\n\tsetAttr \".clst[0].clsp[0:124]\"  1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1;\n\tsetAttr \".clst[0].clsp[125:221]\" 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1;\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 74 \".vt[0:73]\"  0.049984079 -0.35759681 0.093375243 0.080518126 -0.35759681 0.093375243\n\t\t 0.080518126 -0.35759681 0.20471284 0.049984079 -0.35759681 0.20471284 0.049984079 -0.53639519 0.093375243\n\t\t 0.080518126 -0.53639519 0.093375243 0.080518126 -0.53639519 0.20471284 0.049984079 -0.53639519 0.20471284\n\t\t 0.15070921 -0.35759681 -0.15211681 0.15070921 -0.35759681 -0.11655577 0.027828272 -0.35759681 -0.072802715\n\t\t -0.0019610487 -0.35759681 -0.062004097 0.027083542 -0.35759681 -0.052508734 0.15070921 -0.35759681 -0.0052181929\n\t\t 0.15070921 -0.35759681 0.031646084 -0.036218766 -0.35759681 -0.043013394 -0.048460316 -0.35759681 -0.036962442\n\t\t -0.058746941 -0.35759681 -0.030725308 -0.067195006 -0.35759681 -0.024255447 -0.073920876 -0.35759681 -0.017506279\n\t\t -0.078971095 -0.35759681 -0.010408074 -0.082392216 -0.35759681 -0.0028908998 -0.084347136 -0.35759681 0.0051382482\n\t\t -0.084998779 -0.35759681 0.013772484 -0.084533319 -0.35759681 0.024012573 -0.083509311 -0.35759681 0.032949366\n\t\t -0.11292626 -0.35759681 0.032949366 -0.11348481 -0.35759681 0.024384934 -0.11367099 -0.35759681 0.015634328\n\t\t -0.1133219 -0.35759681 0.0066393465 -0.11227462 -0.35759681 -0.0019134432 -0.11052915 -0.35759681 -0.010024063\n\t\t -0.1080855 -0.35759681 -0.017692491 -0.10490294 -0.35759681 -0.024988525 -0.10094072 -0.35759681 -0.031982034\n\t\t -0.096198864 -0.35759681 -0.038673006 -0.090677366 -0.35759681 -0.045061417 -0.077202357 -0.35759681 -0.057046972\n\t\t -0.060422588 -0.35759681 -0.068055056 -0.040221706 -0.35759681 -0.078411497 -0.016483342 -0.35759681 -0.088442124\n\t\t 0.15070921 -0.53639519 -0.15211681 0.15070921 -0.53639519 -0.11655577 0.027828272 -0.53639519 -0.072802715\n\t\t -0.0019610487 -0.53639519 -0.062004097 0.027083542 -0.53639519 -0.052508734 0.15070921 -0.53639519 -0.0052181929\n\t\t 0.15070921 -0.53639519 0.031646084 -0.036218766 -0.53639519 -0.043013394 -0.048460316 -0.53639519 -0.036962442\n\t\t -0.058746941 -0.53639519 -0.030725308 -0.067195006 -0.53639519 -0.024255447 -0.073920876 -0.53639519 -0.017506279\n\t\t -0.078971095 -0.53639519 -0.010408074 -0.082392216 -0.53639519 -0.0028908998 -0.084347136 -0.53639519 0.0051382482\n\t\t -0.084998779 -0.53639519 0.013772484 -0.084533319 -0.53639519 0.024012573 -0.083509311 -0.53639519 0.032949366\n\t\t -0.11292626 -0.53639519 0.032949366 -0.11348481 -0.53639519 0.024384934 -0.11367099 -0.53639519 0.015634328\n\t\t -0.1133219 -0.53639519 0.0066393465 -0.11227462 -0.53639519 -0.0019134432 -0.11052915 -0.53639519 -0.010024063\n\t\t -0.1080855 -0.53639519 -0.017692491 -0.10490294 -0.53639519 -0.024988525 -0.10094072 -0.53639519 -0.031982034\n\t\t -0.096198864 -0.53639519 -0.038673006 -0.090677366 -0.53639519 -0.045061417 -0.077202357 -0.53639519 -0.057046972\n\t\t -0.060422588 -0.53639519 -0.068055056 -0.040221706 -0.53639519 -0.078411497 -0.016483342 -0.53639519 -0.088442124;\n\tsetAttr -s 111 \".ed[0:110]\"  3 2 0 2 1 0 1 0 0 0 3 0 1 5 0 5 4 0 4 0 0\n\t\t 2 6 0 6 5 0 3 7 0 7 6 0 4 7 0 40 39 0 39 38 0 38 37 0 37 36 0 36 35 0 35 34 0 34 33 0\n\t\t 33 32 0 32 31 0 31 30 0 30 29 0 29 28 0 28 27 0 27 26 0 26 25 0 25 24 0 24 23 0 23 22 0\n\t\t 22 21 0 21 20 0 20 19 0 19 18 0 18 17 0 17 16 0 16 15 0 15 14 0 14 13 0 13 12 0 12 11 0\n\t\t 11 10 0 10 9 0 9 8 0 8 40 0 9 42 0 42 41 0 41 8 0 10 43 1 43 42 0 11 44 0 44 43 0\n\t\t 12 45 1 45 44 0 13 46 0 46 45 0 14 47 0 47 46 0 15 48 0 48 47 0 16 49 1 49 48 0 17 50 1\n\t\t 50 49 0 18 51 1 51 50 0 19 52 1 52 51 0 20 53 1 53 52 0 21 54 1 54 53 0 22 55 1 55 54 0\n\t\t 23 56 1 56 55 0 24 57 1 57 56 0 25 58 0 58 57 0 26 59 0 59 58 0 27 60 1 60 59 0 28 61 1\n\t\t 61 60 0 29 62 1 62 61 0 30 63 1 63 62 0 31 64 1 64 63 0 32 65 1 65 64 0 33 66 1 66 65 0\n\t\t 34 67 1 67 66 0 35 68 1 68 67 0 36 69 1 69 68 0 37 70 1 70 69 0 38 71 1 71 70 0 39 72 1\n\t\t 72 71 0 40 73 1 73 72 0 41 73 0;\n\tsetAttr -s 41 -ch 222 \".fc[0:40]\" -type \"polyFaces\" \n\t\tf 4 0 1 2 3\n\t\tmu 3 4 0 1 2 3\n\t\tmc 0 4 0 1 2 3\n\t\tf 4 -3 4 5 6\n\t\tmu 3 4 4 5 6 7\n\t\tmc 0 4 4 5 6 7\n\t\tf 4 -2 7 8 -5\n\t\tmu 3 4 8 9 10 11\n\t\tmc 0 4 8 9 10 11\n\t\tf 4 -1 9 10 -8\n\t\tmu 3 4 12 13 14 15\n\t\tmc 0 4 12 13 14 15\n\t\tf 4 -4 -7 11 -10\n\t\tmu 3 4 16 17 18 19\n\t\tmc 0 4 16 17 18 19\n\t\tf 4 -6 -9 -11 -12\n\t\tmu 3 4 20 21 22 23\n\t\tmc 0 4 20 21 22 23\n\t\tf 33 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 38\n\t\t 39 40 41 42 43 44\n\t\tmu 3 33 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50\n\t\t 51 52 53 54 55 56\n\t\tmc 0 33 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50\n\t\t 51 52 53 54 55 56\n\t\tf 4 -44 45 46 47\n\t\tmu 3 4 57 58 59 60\n\t\tmc 0 4 57 58 59 60\n\t\tf 4 -43 48 49 -46\n\t\tmu 3 4 61 62 63 64\n\t\tmc 0 4 61 62 63 64\n\t\tf 4 -42 50 51 -49\n\t\tmu 3 4 62 65 66 63\n\t\tmc 0 4 65 66 67 68\n\t\tf 4 -41 52 53 -51\n\t\tmu 3 4 67 68 69 70\n\t\tmc 0 4 69 70 71 72\n\t\tf 4 -40 54 55 -53\n\t\tmu 3 4 68 71 72 69\n\t\tmc 0 4 73 74 75 76\n\t\tf 4 -39 56 57 -55\n\t\tmu 3 4 73 74 75 76\n\t\tmc 0 4 77 78 79 80\n\t\tf 4 -38 58 59 -57\n\t\tmu 3 4 77 78 79 80\n\t\tmc 0 4 81 82 83 84\n\t\tf 4 -37 60 61 -59\n\t\tmu 3 4 78 81 82 79\n\t\tmc 0 4 85 86 87 88\n\t\tf 4 -36 62 63 -61\n\t\tmu 3 4 81 83 84 82\n\t\tmc 0 4 89 90 91 92\n\t\tf 4 -35 64 65 -63\n\t\tmu 3 4 83 85 86 84\n\t\tmc 0 4 93 94 95 96\n\t\tf 4 -34 66 67 -65\n\t\tmu 3 4 85 87 88 86\n\t\tmc 0 4 97 98 99 100\n\t\tf 4 -33 68 69 -67\n\t\tmu 3 4 87 89 90 88\n\t\tmc 0 4 101 102 103 104\n\t\tf 4 -32 70 71 -69\n\t\tmu 3 4 91 92 93 94\n\t\tmc 0 4 105 106 107 108\n\t\tf 4 -31 72 73 -71\n\t\tmu 3 4 92 95 96 93\n\t\tmc 0 4 109 110 111 112\n\t\tf 4 -30 74 75 -73\n\t\tmu 3 4 95 97 98 96\n\t\tmc 0 4 113 114 115 116\n\t\tf 4 -29 76 77 -75\n\t\tmu 3 4 97 99 100 98\n\t\tmc 0 4 117 118 119 120\n\t\tf 4 -28 78 79 -77\n\t\tmu 3 4 99 101 102 100\n\t\tmc 0 4 121 122 123 124\n\t\tf 4 -27 80 81 -79\n\t\tmu 3 4 103 104 105 106\n\t\tmc 0 4 125 126 127 128\n\t\tf 4 -26 82 83 -81\n\t\tmu 3 4 107 108 109 110\n\t\tmc 0 4 129 130 131 132\n\t\tf 4 -25 84 85 -83\n\t\tmu 3 4 108 111 112 109\n\t\tmc 0 4 133 134 135 136\n\t\tf 4 -24 86 87 -85\n\t\tmu 3 4 111 113 114 112\n\t\tmc 0 4 137 138 139 140\n\t\tf 4 -23 88 89 -87\n\t\tmu 3 4 113 115 116 114\n\t\tmc 0 4 141 142 143 144\n\t\tf 4 -22 90 91 -89\n\t\tmu 3 4 115 117 118 116\n\t\tmc 0 4 145 146 147 148\n\t\tf 4 -21 92 93 -91\n\t\tmu 3 4 117 119 120 118\n\t\tmc 0 4 149 150 151 152\n\t\tf 4 -20 94 95 -93\n\t\tmu 3 4 119 121 122 120\n\t\tmc 0 4 153 154 155 156\n\t\tf 4 -19 96 97 -95\n\t\tmu 3 4 121 123 124 122\n\t\tmc 0 4 157 158 159 160\n\t\tf 4 -18 98 99 -97\n\t\tmu 3 4 125 126 127 128\n\t\tmc 0 4 161 162 163 164\n\t\tf 4 -17 100 101 -99\n\t\tmu 3 4 126 129 130 127\n\t\tmc 0 4 165 166 167 168\n\t\tf 4 -16 102 103 -101\n\t\tmu 3 4 129 131 132 130\n\t\tmc 0 4 169 170 171 172\n\t\tf 4 -15 104 105 -103\n\t\tmu 3 4 131 133 134 132\n\t\tmc 0 4 173 174 175 176\n\t\tf 4 -14 106 107 -105\n\t\tmu 3 4 133 135 136 134\n\t\tmc 0 4 177 178 179 180\n\t\tf 4 -13 108 109 -107\n\t\tmu 3 4 135 137 138 136\n\t\tmc 0 4 181 182 183 184\n\t\tf 4 -45 -48 110 -109\n\t\tmu 3 4 137 139 140 138\n\t\tmc 0 4 185 186 187 188\n\t\tf 33 -47 -50 -52 -54 -56 -58 -60 -62 -64 -66 -68 -70 -72 -74 -76 -78 -80 -82 -84 -86\n\t\t -88 -90 -92 -94 -96 -98 -100 -102 -104 -106 -108 -110 -111\n\t\tmu 3 33 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160\n\t\t 161 162 163 164 165 166 167 168 169 170 171 172 173\n\t\tmc 0 33 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208\n\t\t 209 210 211 212 213 214 215 216 217 218 219 220 221;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr -s 7 \".pd\";\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[1]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[2]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[3]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[4]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[5]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[6]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pos_z\";\n\trename -uid \"C7EF3ECB-42D8-EB77-ED46-2B8EB29A40D2\";\n\tsetAttr \".rp\" -type \"double3\" 0.015639401972293854 -0.03858678787946701 0.44699600338935852 ;\n\tsetAttr \".sp\" -type \"double3\" 0.015639401972293854 -0.03858678787946701 0.44699600338935852 ;\ncreateNode mesh -n \"pos_zShape\" -p \"pos_z\";\n\trename -uid \"C9F4BD65-424A-59CA-5DFA-4F903B555263\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".iog[0].og[0].gcl\" -type \"componentList\" 1 \"f[0:25]\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr -s 7 \".uvst\";\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".uvst[1].uvsn\" -type \"string\" \"map11\";\n\tsetAttr \".uvst[2].uvsn\" -type \"string\" \"map12\";\n\tsetAttr \".uvst[3].uvsn\" -type \"string\" \"map13\";\n\tsetAttr \".uvst[4].uvsn\" -type \"string\" \"map14\";\n\tsetAttr -s 128 \".uvst[4].uvsp[0:127]\" -type \"float2\" 0.5489825 0.13748367\n\t\t 0.5489825 0.23678684 0.5071193 0.23678684 0.5071193 0.13748367 0.41146696 0.13748367\n\t\t 0.41146696 0.10048839 0.5071193 0.10048839 0.5071193 0.0019152341 0.5489825 0.0019152341\n\t\t 0.5489825 0.10048839 0.64463484 0.10048839 0.64463484 0.13748367 0.89090925 0.0019150948\n\t\t 0.92790455 0.0019150948 0.92790455 0.23565155 0.89090925 0.23565155 0.99800807 0.47337946\n\t\t 0.90235567 0.47337946 0.90235567 0.23964301 0.99800807 0.23964301 0.79764724 0.24077824\n\t\t 0.89622045 0.24077824 0.89622045 0.47451469 0.79764724 0.47451469 0.79151201 0.47451475\n\t\t 0.74964881 0.47451475 0.74964881 0.2407783 0.79151201 0.2407783 0.74351352 0.4745149\n\t\t 0.64494044 0.4745149 0.64494044 0.24077845 0.74351352 0.24077845 0.63880509 0.4745149\n\t\t 0.54315275 0.4745149 0.54315275 0.24077845 0.63880509 0.24077845 0.53701746 0.4745149\n\t\t 0.50002211 0.4745149 0.50002211 0.24077845 0.53701746 0.24077845 0.39823446 0.25027043\n\t\t 0.49388683 0.25027043 0.49388683 0.48400682 0.39823446 0.48400682 0.39209914 0.48400685\n\t\t 0.2927959 0.48400685 0.2927959 0.25027043 0.39209914 0.25027043 0.24479741 0.25027043\n\t\t 0.28666058 0.25027043 0.28666058 0.48400682 0.24479741 0.48400682 0.13935892 0.25027072\n\t\t 0.23866209 0.25027072 0.23866209 0.48400718 0.13935892 0.48400718 0.037571277 0.25027072\n\t\t 0.13322364 0.25027072 0.13322364 0.48400709 0.037571277 0.48400709 0.88435596 0.10121835\n\t\t 0.88435596 0.13821369 0.78870362 0.13821369 0.78870362 0.23678678 0.74684042 0.23678678\n\t\t 0.74684042 0.13821369 0.65118808 0.13821369 0.65118808 0.10121835 0.74684042 0.10121835\n\t\t 0.74684042 0.0019150948 0.78870362 0.0019150948 0.78870362 0.10121835 0.0019920322\n\t\t 0.24627912 0.0019920322 0.21585546 0.13999434 0.037450179 0.0053994656 0.037450179\n\t\t 0.0053994656 0.0019152341 0.19086295 0.0019152341 0.19086295 0.035016295 0.055294514\n\t\t 0.21050066 0.19889483 0.21050066 0.19889483 0.24627912 0.0019920322 0.48799855 0.037770361\n\t\t 0.48799855 0.037770361 0.72173494 0.0019920322 0.72173494 0.18866417 0.72173506 0.045063853\n\t\t 0.72173506 0.045063853 0.48799863 0.18866417 0.48799863 0.19513324 0.48799863 0.37061775\n\t\t 0.48799863 0.37061775 0.72173506 0.19513324 0.72173506 0.4037188 0.48799863 0.4037188\n\t\t 0.72173506 0.59693044 0.7217347 0.41146696 0.7217347 0.41146696 0.48799828 0.59693044\n\t\t 0.48799828 0.63994819 0.71224278 0.60441327 0.71224278 0.60441327 0.47850636 0.63994819\n\t\t 0.47850636 0.64729017 0.47850636 0.78188509 0.47850636 0.78188509 0.71224272 0.64729017\n\t\t 0.71224272 0.99800807 0.71224248 0.81960291 0.71224248 0.81960291 0.47850615 0.99800807\n\t\t 0.47850615 0.78917909 0.71224248 0.78917909 0.47850615 0.58614105 0.72572607 0.78304386\n\t\t 0.72572607 0.78304386 0.95946246 0.58614105 0.95946246 0.40372974 0.0019150948 0.40372974\n\t\t 0.037693497 0.26012942 0.037693497 0.39569786 0.21317792 0.39569786 0.24627899 0.21023439\n\t\t 0.24627899 0.21023439 0.21074404 0.34482926 0.21074404 0.20682696 0.032338887 0.20682696\n\t\t 0.0019150948;\n\tsetAttr \".uvst[5].uvsn\" -type \"string\" \"map15\";\n\tsetAttr \".uvst[6].uvsn\" -type \"string\" \"map16\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".ccls\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clst[0].clsn\" -type \"string\" \"colorSet1\";\n\tsetAttr -s 132 \".clst[0].clsp\";\n\tsetAttr \".clst[0].clsp[0:124]\"  1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1;\n\tsetAttr \".clst[0].clsp[125:131]\" 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1;\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 44 \".vt[0:43]\"  0.0062789754 -0.04677885 0.35759681 0.0062789754 -0.018479005 0.35759681\n\t\t -0.066891037 -0.018479005 0.35759681 -0.066891037 0.056925222 0.35759681 -0.098914556 0.056925222 0.35759681\n\t\t -0.098914556 -0.018479005 0.35759681 -0.17208457 -0.018479005 0.35759681 -0.17208457 -0.04677885 0.35759681\n\t\t -0.098914556 -0.04677885 0.35759681 -0.098914556 -0.12274162 0.35759681 -0.066891037 -0.12274162 0.35759681\n\t\t -0.066891037 -0.04677885 0.35759681 0.0062789754 -0.04677885 0.53639519 0.0062789754 -0.018479005 0.53639519\n\t\t -0.066891037 -0.018479005 0.53639519 -0.066891037 0.056925222 0.53639519 -0.098914556 0.056925222 0.53639519\n\t\t -0.098914556 -0.018479005 0.53639519 -0.17208457 -0.018479005 0.53639519 -0.17208457 -0.04677885 0.53639519\n\t\t -0.098914556 -0.04677885 0.53639519 -0.098914556 -0.12274162 0.53639519 -0.066891037 -0.12274162 0.53639519\n\t\t -0.066891037 -0.04677885 0.53639519 0.20336337 -0.1340988 0.35759681 0.20336337 -0.10672987 0.35759681\n\t\t 0.093515255 -0.10672987 0.35759681 0.19721931 0.027508259 0.35759681 0.19721931 0.052829176 0.35759681\n\t\t 0.055347685 0.052829176 0.35759681 0.055347685 0.025646433 0.35759681 0.15830702 0.025646433 0.35759681\n\t\t 0.052741118 -0.11082589 0.35759681 0.052741118 -0.1340988 0.35759681 0.20336337 -0.1340988 0.53639519\n\t\t 0.20336337 -0.10672987 0.53639519 0.093515255 -0.10672987 0.53639519 0.19721931 0.027508259 0.53639519\n\t\t 0.19721931 0.052829176 0.53639519 0.055347685 0.052829176 0.53639519 0.055347685 0.025646433 0.53639519\n\t\t 0.15830702 0.025646433 0.53639519 0.052741118 -0.11082589 0.53639519 0.052741118 -0.1340988 0.53639519;\n\tsetAttr -s 66 \".ed[0:65]\"  11 10 0 10 9 0 9 8 0 8 7 0 7 6 0 6 5 0 5 4 0\n\t\t 4 3 0 3 2 0 2 1 0 1 0 0 0 11 0 1 13 0 13 12 0 12 0 0 2 14 0 14 13 0 3 15 0 15 14 0\n\t\t 4 16 0 16 15 0 5 17 0 17 16 0 6 18 0 18 17 0 7 19 0 19 18 0 8 20 0 20 19 0 9 21 0\n\t\t 21 20 0 10 22 0 22 21 0 11 23 0 23 22 0 12 23 0 33 32 0 32 31 0 31 30 0 30 29 0 29 28 0\n\t\t 28 27 0 27 26 0 26 25 0 25 24 0 24 33 0 25 35 0 35 34 0 34 24 0 26 36 0 36 35 0 27 37 0\n\t\t 37 36 0 28 38 0 38 37 0 29 39 0 39 38 0 30 40 0 40 39 0 31 41 0 41 40 0 32 42 0 42 41 0\n\t\t 33 43 0 43 42 0 34 43 0;\n\tsetAttr -s 26 -ch 132 \".fc[0:25]\" -type \"polyFaces\" \n\t\tf 12 0 1 2 3 4 5 6 7 8 9 10 11\n\t\tmu 4 12 0 1 2 3 4 5 6 7 8 9 10 11\n\t\tmc 0 12 0 1 2 3 4 5 6 7 8 9 10 11\n\t\tf 4 -11 12 13 14\n\t\tmu 4 4 12 13 14 15\n\t\tmc 0 4 12 13 14 15\n\t\tf 4 -10 15 16 -13\n\t\tmu 4 4 16 17 18 19\n\t\tmc 0 4 16 17 18 19\n\t\tf 4 -9 17 18 -16\n\t\tmu 4 4 20 21 22 23\n\t\tmc 0 4 20 21 22 23\n\t\tf 4 -8 19 20 -18\n\t\tmu 4 4 24 25 26 27\n\t\tmc 0 4 24 25 26 27\n\t\tf 4 -7 21 22 -20\n\t\tmu 4 4 28 29 30 31\n\t\tmc 0 4 28 29 30 31\n\t\tf 4 -6 23 24 -22\n\t\tmu 4 4 32 33 34 35\n\t\tmc 0 4 32 33 34 35\n\t\tf 4 -5 25 26 -24\n\t\tmu 4 4 36 37 38 39\n\t\tmc 0 4 36 37 38 39\n\t\tf 4 -4 27 28 -26\n\t\tmu 4 4 40 41 42 43\n\t\tmc 0 4 40 41 42 43\n\t\tf 4 -3 29 30 -28\n\t\tmu 4 4 44 45 46 47\n\t\tmc 0 4 44 45 46 47\n\t\tf 4 -2 31 32 -30\n\t\tmu 4 4 48 49 50 51\n\t\tmc 0 4 48 49 50 51\n\t\tf 4 -1 33 34 -32\n\t\tmu 4 4 52 53 54 55\n\t\tmc 0 4 52 53 54 55\n\t\tf 4 -12 -15 35 -34\n\t\tmu 4 4 56 57 58 59\n\t\tmc 0 4 56 57 58 59\n\t\tf 12 -14 -17 -19 -21 -23 -25 -27 -29 -31 -33 -35 -36\n\t\tmu 4 12 60 61 62 63 64 65 66 67 68 69 70 71\n\t\tmc 0 12 60 61 62 63 64 65 66 67 68 69 70 71\n\t\tf 10 36 37 38 39 40 41 42 43 44 45\n\t\tmu 4 10 72 73 74 75 76 77 78 79 80 81\n\t\tmc 0 10 72 73 74 75 76 77 78 79 80 81\n\t\tf 4 -45 46 47 48\n\t\tmu 4 4 82 83 84 85\n\t\tmc 0 4 82 83 84 85\n\t\tf 4 -44 49 50 -47\n\t\tmu 4 4 86 87 88 89\n\t\tmc 0 4 86 87 88 89\n\t\tf 4 -43 51 52 -50\n\t\tmu 4 4 90 91 92 93\n\t\tmc 0 4 90 91 92 93\n\t\tf 4 -42 53 54 -52\n\t\tmu 4 4 91 94 95 92\n\t\tmc 0 4 94 95 96 97\n\t\tf 4 -41 55 56 -54\n\t\tmu 4 4 96 97 98 99\n\t\tmc 0 4 98 99 100 101\n\t\tf 4 -40 57 58 -56\n\t\tmu 4 4 100 101 102 103\n\t\tmc 0 4 102 103 104 105\n\t\tf 4 -39 59 60 -58\n\t\tmu 4 4 104 105 106 107\n\t\tmc 0 4 106 107 108 109\n\t\tf 4 -38 61 62 -60\n\t\tmu 4 4 108 109 110 111\n\t\tmc 0 4 110 111 112 113\n\t\tf 4 -37 63 64 -62\n\t\tmu 4 4 109 112 113 110\n\t\tmc 0 4 114 115 116 117\n\t\tf 4 -46 -49 65 -64\n\t\tmu 4 4 114 115 116 117\n\t\tmc 0 4 118 119 120 121\n\t\tf 10 -48 -51 -53 -55 -57 -59 -61 -63 -65 -66\n\t\tmu 4 10 118 119 120 121 122 123 124 125 126 127\n\t\tmc 0 10 122 123 124 125 126 127 128 129 130 131;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr -s 7 \".pd\";\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[1]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[2]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[3]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[4]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[5]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[6]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"neg_z\";\n\trename -uid \"B387696A-426D-420E-A95B-F3AFADA444E7\";\n\tsetAttr \".rp\" -type \"double3\" 0.0011049285531044006 -0.040634810924530029 -0.44699600338935852 ;\n\tsetAttr \".sp\" -type \"double3\" 0.0011049285531044006 -0.040634810924530029 -0.44699600338935852 ;\ncreateNode mesh -n \"neg_zShape\" -p \"neg_z\";\n\trename -uid \"F8A903FC-45EB-68FF-7F6F-459525C30992\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".iog[0].og[0].gcl\" -type \"componentList\" 1 \"f[0:17]\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr -s 7 \".uvst\";\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".uvst[1].uvsn\" -type \"string\" \"map11\";\n\tsetAttr \".uvst[2].uvsn\" -type \"string\" \"map12\";\n\tsetAttr \".uvst[3].uvsn\" -type \"string\" \"map13\";\n\tsetAttr \".uvst[4].uvsn\" -type \"string\" \"map14\";\n\tsetAttr \".uvst[5].uvsn\" -type \"string\" \"map15\";\n\tsetAttr -s 80 \".uvst[5].uvsp[0:79]\" -type \"float2\" 0.83592159 0.81160641\n\t\t 0.78371674 0.81160641 0.78371674 0.62125057 0.83592159 0.62125057 0.53230202 0.0018779336\n\t\t 0.58450651 0.0018779336 0.58450651 0.30757269 0.53230202 0.30757269 0.78112626 0.30757269\n\t\t 0.59077048 0.30757269 0.59077048 0.0018779336 0.78112626 0.0018779336 0.83981919\n\t\t 0.30757269 0.78761458 0.30757269 0.78761458 0.0018779336 0.83981919 0.0018779336\n\t\t 0.80765212 0.31156415 0.99800801 0.31156415 0.99800801 0.61725885 0.80765212 0.61725885\n\t\t 0.84218526 0.62125027 0.89438981 0.62125027 0.89438981 0.81160605 0.84218526 0.81160605\n\t\t 0.0019920322 0.32147208 0.0019920322 0.28168219 0.18247987 0.048352879 0.0064484812\n\t\t 0.048352879 0.0064484812 0.0018781159 0.24900883 0.0018781159 0.24900883 0.0451697\n\t\t 0.071704268 0.27467883 0.2595135 0.27467883 0.2595135 0.32147208 0.75472379 0.31156415\n\t\t 0.80151683 0.31156415 0.80151683 0.61725891 0.75472379 0.61725891 0.7485885 0.61725891\n\t\t 0.56077927 0.61725891 0.56077927 0.31156415 0.7485885 0.31156415 0.28184313 0.32546335\n\t\t 0.51135242 0.32546335 0.51135242 0.63115811 0.28184313 0.63115811 0.55464405 0.32546335\n\t\t 0.55464405 0.63115811 0.27570781 0.63115847 0.033147454 0.63115847 0.033147454 0.32546374\n\t\t 0.27570781 0.32546374 0.048466794 0.94084471 0.0019920322 0.94084471 0.0019920322\n\t\t 0.63514996 0.048466794 0.63514996 0.054808643 0.63514996 0.23084003 0.63514996 0.23084003\n\t\t 0.94084466 0.054808643 0.94084466 0.51112944 0.94084471 0.27780029 0.94084471 0.27780029\n\t\t 0.63514996 0.51112944 0.63514996 0.2380102 0.94084471 0.2380102 0.63514996 0.51865923\n\t\t 0.6351496 0.77618068 0.6351496 0.77618068 0.9408443 0.51865923 0.9408443 0.52476591\n\t\t 0.0018779336 0.52476591 0.048671108 0.33695665 0.048671108 0.51426119 0.27818033\n\t\t 0.51426119 0.3214719 0.27170086 0.3214719 0.27170086 0.27499714 0.44773224 0.27499714\n\t\t 0.26724443 0.041668024 0.26724443 0.0018779336;\n\tsetAttr \".uvst[6].uvsn\" -type \"string\" \"map16\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".ccls\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clst[0].clsn\" -type \"string\" \"colorSet1\";\n\tsetAttr -s 84 \".clst[0].clsp[0:83]\"  1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n\t\t 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1;\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 28 \".vt[0:27]\"  0.060734831 -0.047895953 -0.35759681 0.060734831 -0.017361902 -0.35759681\n\t\t 0.17207241 -0.017361902 -0.35759681 0.17207241 -0.047895953 -0.35759681 0.060734831 -0.047895953 -0.53639519\n\t\t 0.060734831 -0.017361902 -0.53639519 0.17207241 -0.017361902 -0.53639519 0.17207241 -0.047895953 -0.53639519\n\t\t -0.16986255 -0.1340988 -0.35759681 -0.16986255 -0.10672987 -0.35759681 -0.06001443 -0.10672987 -0.35759681\n\t\t -0.16371848 0.027508259 -0.35759681 -0.16371848 0.052829176 -0.35759681 -0.021846864 0.052829176 -0.35759681\n\t\t -0.021846864 0.025646433 -0.35759681 -0.1248062 0.025646433 -0.35759681 -0.019240301 -0.11082589 -0.35759681\n\t\t -0.019240301 -0.1340988 -0.35759681 -0.16986255 -0.1340988 -0.53639519 -0.16986255 -0.10672987 -0.53639519\n\t\t -0.06001443 -0.10672987 -0.53639519 -0.16371848 0.027508259 -0.53639519 -0.16371848 0.052829176 -0.53639519\n\t\t -0.021846864 0.052829176 -0.53639519 -0.021846864 0.025646433 -0.53639519 -0.1248062 0.025646433 -0.53639519\n\t\t -0.019240301 -0.11082589 -0.53639519 -0.019240301 -0.1340988 -0.53639519;\n\tsetAttr -s 42 \".ed[0:41]\"  3 2 0 2 1 0 1 0 0 0 3 0 1 5 0 5 4 0 4 0 0\n\t\t 2 6 0 6 5 0 3 7 0 7 6 0 4 7 0 17 16 0 16 15 0 15 14 0 14 13 0 13 12 0 12 11 0 11 10 0\n\t\t 10 9 0 9 8 0 8 17 0 9 19 0 19 18 0 18 8 0 10 20 0 20 19 0 11 21 0 21 20 0 12 22 0\n\t\t 22 21 0 13 23 0 23 22 0 14 24 0 24 23 0 15 25 0 25 24 0 16 26 0 26 25 0 17 27 0 27 26 0\n\t\t 18 27 0;\n\tsetAttr -s 18 -ch 84 \".fc[0:17]\" -type \"polyFaces\" \n\t\tf 4 0 1 2 3\n\t\tmu 5 4 0 1 2 3\n\t\tmc 0 4 0 1 2 3\n\t\tf 4 -3 4 5 6\n\t\tmu 5 4 4 5 6 7\n\t\tmc 0 4 4 5 6 7\n\t\tf 4 -2 7 8 -5\n\t\tmu 5 4 8 9 10 11\n\t\tmc 0 4 8 9 10 11\n\t\tf 4 -1 9 10 -8\n\t\tmu 5 4 12 13 14 15\n\t\tmc 0 4 12 13 14 15\n\t\tf 4 -4 -7 11 -10\n\t\tmu 5 4 16 17 18 19\n\t\tmc 0 4 16 17 18 19\n\t\tf 4 -6 -9 -11 -12\n\t\tmu 5 4 20 21 22 23\n\t\tmc 0 4 20 21 22 23\n\t\tf 10 12 13 14 15 16 17 18 19 20 21\n\t\tmu 5 10 24 25 26 27 28 29 30 31 32 33\n\t\tmc 0 10 24 25 26 27 28 29 30 31 32 33\n\t\tf 4 -21 22 23 24\n\t\tmu 5 4 34 35 36 37\n\t\tmc 0 4 34 35 36 37\n\t\tf 4 -20 25 26 -23\n\t\tmu 5 4 38 39 40 41\n\t\tmc 0 4 38 39 40 41\n\t\tf 4 -19 27 28 -26\n\t\tmu 5 4 42 43 44 45\n\t\tmc 0 4 42 43 44 45\n\t\tf 4 -18 29 30 -28\n\t\tmu 5 4 43 46 47 44\n\t\tmc 0 4 46 47 48 49\n\t\tf 4 -17 31 32 -30\n\t\tmu 5 4 48 49 50 51\n\t\tmc 0 4 50 51 52 53\n\t\tf 4 -16 33 34 -32\n\t\tmu 5 4 52 53 54 55\n\t\tmc 0 4 54 55 56 57\n\t\tf 4 -15 35 36 -34\n\t\tmu 5 4 56 57 58 59\n\t\tmc 0 4 58 59 60 61\n\t\tf 4 -14 37 38 -36\n\t\tmu 5 4 60 61 62 63\n\t\tmc 0 4 62 63 64 65\n\t\tf 4 -13 39 40 -38\n\t\tmu 5 4 61 64 65 62\n\t\tmc 0 4 66 67 68 69\n\t\tf 4 -22 -25 41 -40\n\t\tmu 5 4 66 67 68 69\n\t\tmc 0 4 70 71 72 73\n\t\tf 10 -24 -27 -29 -31 -33 -35 -37 -39 -41 -42\n\t\tmu 5 10 70 71 72 73 74 75 76 77 78 79\n\t\tmc 0 10 74 75 76 77 78 79 80 81 82 83;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr -s 7 \".pd\";\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[1]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[2]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[3]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[4]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[5]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".pd[6]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pSphere1\";\n\trename -uid \"DF7F23D9-4B8D-0BE9-3700-9B8285D28CDC\";\n\tsetAttr \".s\" -type \"double3\" 0.53034302477499506 0.53034302477499506 0.53034302477499506 ;\ncreateNode mesh -n \"pSphereShape1\" -p \"pSphere1\";\n\trename -uid \"60590555-48BC-647D-644D-EE987EA27E78\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"91FCDE68-4F9E-A0A6-F376-0BB3301707D2\";\n\tsetAttr \".t\" -type \"double3\" 1.656403474711724 2.1845152607505165 2.1049133521696013 ;\n\tsetAttr \".r\" -type \"double3\" -39.199851836173309 38.200000000000081 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"FC9CB10D-4449-058D-BB5A-4FB25891878C\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 3.4563621939303202;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"3E087354-4C56-6A3D-7CAB-3D8891A66059\";\n\tsetAttr -s 12 \".lnk\";\n\tsetAttr -s 12 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"FB3C53C3-4C7E-70F1-9A8D-0B9C8A00C003\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"F311ED85-479C-8A3E-5C5F-769160AAB59D\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"85D683B7-4CFD-26C8-7319-07AE2AC58D71\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"D6D9EA9B-44A0-2B45-79D9-739A3BFB4D2A\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"6B7A9F15-453C-A5C4-3A5B-CEB5AF397348\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"3C551FFE-4291-741D-ED82-91A9E8751B4E\";\n\tsetAttr \".g\" yes;\ncreateNode shadingEngine -n \"typeBlinnSG\";\n\trename -uid \"B4D53B07-46CF-1CDB-BEB5-4B988E841EEE\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"AD05CB09-40AC-6AC0-7C95-83BF1B006677\";\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"60AFFFD5-4F63-180D-AFA4-02B6A185F808\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 0\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 1\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 0\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 0\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"37A0AD0F-4FF0-9A95-E8F1-A79C2E7AF08E\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"200E1B9B-406A-49D3-B0C7-338EAAF313C7\";\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"90700237-4F97-9AE9-4F44-12A69B4C2E73\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr \".ro\" yes;\n\tsetAttr -s 2 \".gn\";\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"2D53C1F7-4DEC-F002-45A2-48923A7C853B\";\ncreateNode lambert -n \"lambert3\";\n\trename -uid \"1D4853E8-43DC-9FC9-1597-22AA7559D93B\";\n\tsetAttr \".c\" -type \"float3\" 0 1 0 ;\ncreateNode shadingEngine -n \"lambert3SG\";\n\trename -uid \"00248433-4BE9-0A03-A941-03A324183BEC\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr \".ro\" yes;\n\tsetAttr -s 2 \".gn\";\ncreateNode materialInfo -n \"materialInfo3\";\n\trename -uid \"AA9A6677-4237-ADCC-E6D1-9DAC627F57E3\";\ncreateNode lambert -n \"lambert4\";\n\trename -uid \"C441E148-4F05-859A-6C47-C4BFCC28B6EC\";\n\tsetAttr \".c\" -type \"float3\" 0 0 1 ;\ncreateNode shadingEngine -n \"lambert4SG\";\n\trename -uid \"F36DBD46-45C8-917C-E72D-808C49F4E514\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr \".ro\" yes;\n\tsetAttr -s 2 \".gn\";\ncreateNode materialInfo -n \"materialInfo4\";\n\trename -uid \"2242348B-4A23-AC3B-9850-828B4E86FB03\";\ncreateNode place2dTexture -n \"place2dTexture1\";\n\trename -uid \"B1BD0656-482B-EFA1-518F-3C8478A3990A\";\ncreateNode place2dTexture -n \"place2dTexture2\";\n\trename -uid \"0634E4B3-41EA-2378-1121-D38879FAA5B2\";\ncreateNode place2dTexture -n \"place2dTexture3\";\n\trename -uid \"08436343-4C9C-45D6-5846-7D83CDCB188A\";\ncreateNode place2dTexture -n \"place2dTexture4\";\n\trename -uid \"86E23C19-44B8-DF4F-33C0-5DB1E066D3B4\";\ncreateNode place2dTexture -n \"place2dTexture5\";\n\trename -uid \"AF01690B-44CC-F84E-33CB-22854601F172\";\ncreateNode place2dTexture -n \"place2dTexture6\";\n\trename -uid \"5FD3803D-471F-5C29-2798-7AA309B0AE6A\";\ncreateNode place2dTexture -n \"place2dTexture7\";\n\trename -uid \"FE7A3EEF-477A-5E54-ED5D-A190259F4E8B\";\ncreateNode place2dTexture -n \"place2dTexture8\";\n\trename -uid \"B749A3FB-458B-A621-02DA-5B8EDF1FBE1E\";\ncreateNode place2dTexture -n \"place2dTexture9\";\n\trename -uid \"3354F78D-454B-F19A-B278-BBAA8B323A60\";\ncreateNode shadingEngine -n \"phong1SG\";\n\trename -uid \"E395C2C7-42BC-B6AC-3286-0398CA69BA70\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo6\";\n\trename -uid \"198C83B5-4494-44B9-92D9-34AB5B710A91\";\ncreateNode place2dTexture -n \"place2dTexture10\";\n\trename -uid \"71E7DF5E-49CF-EFB0-55C4-1295BF0B4029\";\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"424660AE-45B4-F315-7351-5E8208391648\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/dev/glTF/glTF-WebGL-PBR/models/ReferenceCube/glTF/\";\n\tsetAttr \".sceneName\" -type \"string\" \"ReferenceCube\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2018 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"-mts\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 1;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\ncreateNode place2dTexture -n \"place2dTexture11\";\n\trename -uid \"8438C364-49F3-4E8D-BCDE-7E91FAAFC039\";\ncreateNode place2dTexture -n \"place2dTexture12\";\n\trename -uid \"3D9D610F-4F0A-BB1E-048F-32B7DBD87A5A\";\ncreateNode place2dTexture -n \"place2dTexture13\";\n\trename -uid \"AE85FA7A-4345-3134-B733-E1B8FB6D0FF3\";\ncreateNode place2dTexture -n \"place2dTexture14\";\n\trename -uid \"76CAE7E1-4457-70BE-D860-C1B6FCF632D6\";\ncreateNode place2dTexture -n \"place2dTexture15\";\n\trename -uid \"0C28D8D2-46DA-6543-0DB8-FABA01185C6B\";\ncreateNode place2dTexture -n \"place2dTexture16\";\n\trename -uid \"A74CFE4A-473E-23C5-1DDA-4AA882101356\";\ncreateNode place2dTexture -n \"place2dTexture17\";\n\trename -uid \"5030DC5E-49FF-39F2-8A31-5C86FA87B619\";\ncreateNode place2dTexture -n \"place2dTexture18\";\n\trename -uid \"0A45CB08-48AB-D786-5EEA-4F912FB87647\";\ncreateNode place2dTexture -n \"place2dTexture19\";\n\trename -uid \"79D5E8BB-46CA-B05A-B67F-93A34A4B3887\";\ncreateNode place2dTexture -n \"place2dTexture20\";\n\trename -uid \"B894BB16-4CFB-D97D-9E4C-5390065058B0\";\ncreateNode place2dTexture -n \"place2dTexture21\";\n\trename -uid \"FE8CF8CD-47EB-E85D-B6B0-4287F77BF110\";\ncreateNode place2dTexture -n \"place2dTexture22\";\n\trename -uid \"61520C0E-4EE0-A4FA-060E-3CB9BB2BE4C5\";\ncreateNode place2dTexture -n \"place2dTexture23\";\n\trename -uid \"B9C37A9F-4FE9-7751-D08C-D3AA9F02352C\";\ncreateNode groupId -n \"groupId13\";\n\trename -uid \"D788C728-4F0E-E76C-2161-189778CE764F\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupId -n \"groupId14\";\n\trename -uid \"B3F46233-4227-99A8-A2C9-F4946F22864C\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupId -n \"groupId15\";\n\trename -uid \"A97D2924-4594-88D5-DF38-17B0241D2131\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupId -n \"groupId16\";\n\trename -uid \"417BF44F-4283-47C0-E6D4-718C175B4C7B\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupId -n \"groupId17\";\n\trename -uid \"7E8C333F-4BE5-FB53-3C4E-E2B57F7D4210\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupId -n \"groupId18\";\n\trename -uid \"E744D1D3-4789-F36B-A5EB-D28944116F09\";\n\tsetAttr \".ihi\" 0;\ncreateNode place2dTexture -n \"place2dTexture24\";\n\trename -uid \"E3481A1F-47FA-979D-FBF0-C18A1562E2FA\";\ncreateNode place2dTexture -n \"place2dTexture25\";\n\trename -uid \"D3F4028F-44F7-8FDA-0FF9-DC8D400FEA0F\";\ncreateNode place2dTexture -n \"place2dTexture26\";\n\trename -uid \"480DBDBE-4DE0-15C7-25C5-578EBC6525CD\";\ncreateNode place2dTexture -n \"place2dTexture27\";\n\trename -uid \"02E79726-4B13-5D66-80F9-009D729047E1\";\ncreateNode place2dTexture -n \"place2dTexture28\";\n\trename -uid \"69DB5E51-4BDA-75CA-6453-F291FFF906B8\";\ncreateNode place2dTexture -n \"place2dTexture29\";\n\trename -uid \"1BCD772A-4F49-EE06-2B48-56B8BB7F53C7\";\ncreateNode place2dTexture -n \"place2dTexture30\";\n\trename -uid \"06902E91-4AEB-8226-B009-6B8D9E6374F2\";\ncreateNode place2dTexture -n \"place2dTexture31\";\n\trename -uid \"8799408A-4724-EEAC-2996-BAA5917A4D44\";\ncreateNode place2dTexture -n \"place2dTexture32\";\n\trename -uid \"AAE527DF-4B8B-E061-E80C-7E990C0C6D85\";\ncreateNode place2dTexture -n \"place2dTexture33\";\n\trename -uid \"3CD7A6A3-4B96-E5E2-83E3-15ADC4BEB8BA\";\ncreateNode place2dTexture -n \"place2dTexture34\";\n\trename -uid \"63AF9FEB-4DE7-3C4B-19B8-AA93BAF1AB69\";\ncreateNode place2dTexture -n \"place2dTexture35\";\n\trename -uid \"68CE622E-489F-3E55-18CB-E3AE83DA5E14\";\ncreateNode place2dTexture -n \"place2dTexture36\";\n\trename -uid \"B250A648-44D1-EF80-8FC6-A8814BA62201\";\ncreateNode place2dTexture -n \"place2dTexture37\";\n\trename -uid \"F5BD008D-4A4B-3F1B-7CE3-4AA7DD6A0463\";\ncreateNode place2dTexture -n \"place2dTexture38\";\n\trename -uid \"1D6E84A4-49EF-384B-FDB2-51BAB0623760\";\ncreateNode place2dTexture -n \"place2dTexture39\";\n\trename -uid \"4B6D0135-4D1C-5070-1A7B-FD999EA93F3D\";\ncreateNode place2dTexture -n \"place2dTexture40\";\n\trename -uid \"224F2DD7-471F-762C-88D8-409BD5F5421F\";\ncreateNode place2dTexture -n \"place2dTexture41\";\n\trename -uid \"A374206E-4373-57BF-B975-188988A179A8\";\ncreateNode place2dTexture -n \"place2dTexture42\";\n\trename -uid \"ADF8E881-4C2E-DB24-7788-588BEB19471D\";\ncreateNode place2dTexture -n \"place2dTexture43\";\n\trename -uid \"438F9C5C-4928-9581-44C0-2E88DF7DADF2\";\ncreateNode place2dTexture -n \"place2dTexture44\";\n\trename -uid \"7F944208-4020-9BFA-2FD2-00BA4C11C112\";\ncreateNode place2dTexture -n \"place2dTexture45\";\n\trename -uid \"C5CB8E19-44E3-CC9A-97CC-E2974F1D5FA3\";\ncreateNode place2dTexture -n \"place2dTexture46\";\n\trename -uid \"1091B57E-45C6-B09D-7BAF-47AA3D23D3BA\";\ncreateNode place2dTexture -n \"place2dTexture47\";\n\trename -uid \"A7FE7BEA-47CE-B4CB-BE35-FC9A8D255204\";\ncreateNode place2dTexture -n \"place2dTexture48\";\n\trename -uid \"81E0BC5E-4EEF-665C-E944-CA8C5DE735CA\";\ncreateNode place2dTexture -n \"place2dTexture49\";\n\trename -uid \"DE9460F1-4145-FC99-5220-9096154CAB3D\";\ncreateNode place2dTexture -n \"place2dTexture50\";\n\trename -uid \"CDA29ECF-465D-6C40-F5B5-798D75ED5C27\";\ncreateNode place2dTexture -n \"place2dTexture51\";\n\trename -uid \"957085FF-4978-FFA3-01C9-AF994CCF7C26\";\ncreateNode place2dTexture -n \"place2dTexture52\";\n\trename -uid \"53DA51EA-4EBF-C58C-DF05-F499E8B396B8\";\ncreateNode place2dTexture -n \"place2dTexture53\";\n\trename -uid \"3A92414F-4AEE-B9E2-1B38-7CB54174F6E5\";\ncreateNode place2dTexture -n \"place2dTexture54\";\n\trename -uid \"2A8038C1-4282-3231-664C-9C89CFADBD1F\";\ncreateNode place2dTexture -n \"place2dTexture55\";\n\trename -uid \"F4327097-410D-BB36-F38C-C484EA1F5D21\";\ncreateNode place2dTexture -n \"place2dTexture56\";\n\trename -uid \"4B5CAD29-46B7-9303-5BBE-AFBF2DF0D70A\";\ncreateNode place2dTexture -n \"place2dTexture57\";\n\trename -uid \"C08999F8-4389-4DA5-973B-C4B1F25D771B\";\ncreateNode place2dTexture -n \"place2dTexture58\";\n\trename -uid \"9636CB87-40D3-0405-7A5A-A0B119C41E59\";\ncreateNode place2dTexture -n \"place2dTexture59\";\n\trename -uid \"75DBC427-4B1D-E293-1CE0-5E86CD7DBB44\";\ncreateNode place2dTexture -n \"place2dTexture60\";\n\trename -uid \"2F1B6437-4505-3310-DE67-D3843F7FBD5E\";\ncreateNode place2dTexture -n \"place2dTexture61\";\n\trename -uid \"F89F9F59-4E8B-9962-4267-3B8D79E9C604\";\ncreateNode place2dTexture -n \"place2dTexture62\";\n\trename -uid \"0589DA7A-4287-A8F7-C26F-38A65909EE01\";\ncreateNode place2dTexture -n \"place2dTexture63\";\n\trename -uid \"0D45E43F-495A-9A2C-1C39-5E8D6FDB01C9\";\ncreateNode place2dTexture -n \"place2dTexture64\";\n\trename -uid \"F82C7E02-4E00-F60E-3491-9BA6027C800F\";\ncreateNode place2dTexture -n \"place2dTexture65\";\n\trename -uid \"D995C3A1-438F-6C5D-F955-5B97F47CA550\";\ncreateNode place2dTexture -n \"place2dTexture66\";\n\trename -uid \"A3A80456-4C9F-56F3-2CBA-E0ADBF8E5623\";\ncreateNode place2dTexture -n \"place2dTexture67\";\n\trename -uid \"D381E04E-4BD3-048E-FA46-D1A0EBCF560C\";\ncreateNode place2dTexture -n \"place2dTexture68\";\n\trename -uid \"878F3EA3-4260-6F1C-F417-179A620A3948\";\ncreateNode place2dTexture -n \"place2dTexture69\";\n\trename -uid \"2D3236E1-4B2B-6FE5-19F6-169A591F2359\";\ncreateNode place2dTexture -n \"place2dTexture70\";\n\trename -uid \"B482746B-4B50-EC80-CCAA-5BBAD192DB1F\";\ncreateNode place2dTexture -n \"place2dTexture71\";\n\trename -uid \"803D8DFD-49D7-AEBA-0686-D087AC285476\";\ncreateNode place2dTexture -n \"place2dTexture72\";\n\trename -uid \"CEDE6C31-4323-E197-24D7-28B23FF60E83\";\ncreateNode place2dTexture -n \"place2dTexture73\";\n\trename -uid \"20F73175-498C-E498-8DA5-19B15B742547\";\ncreateNode place2dTexture -n \"place2dTexture74\";\n\trename -uid \"A218A11E-4BB8-B05C-7061-9EA33F120CD9\";\ncreateNode place2dTexture -n \"place2dTexture75\";\n\trename -uid \"50BA6F5B-4AA6-8563-F9C0-9C9369EBDDD0\";\ncreateNode place2dTexture -n \"place2dTexture76\";\n\trename -uid \"C7512CB4-4ED4-A8FC-73FD-B79BEC0A7C32\";\ncreateNode place2dTexture -n \"place2dTexture77\";\n\trename -uid \"75531A84-40AE-7652-7CBE-3F8F4A771270\";\ncreateNode place2dTexture -n \"place2dTexture78\";\n\trename -uid \"BCD1D535-44CB-E441-B111-37B4FCA1C94A\";\ncreateNode place2dTexture -n \"place2dTexture79\";\n\trename -uid \"062BA317-492B-F173-0C42-C1A7DA19230E\";\ncreateNode place2dTexture -n \"place2dTexture80\";\n\trename -uid \"F457F2B0-4417-80AA-3E1F-E483AA52E846\";\ncreateNode place2dTexture -n \"place2dTexture81\";\n\trename -uid \"F77852BC-4291-ECF4-E781-598BFA09C6C0\";\ncreateNode place2dTexture -n \"place2dTexture82\";\n\trename -uid \"D53B1895-4146-A63A-510C-DF9FCC65344A\";\ncreateNode place2dTexture -n \"place2dTexture83\";\n\trename -uid \"9C86A25E-4CD2-7D6C-875C-BFB8D8C71D1E\";\ncreateNode place2dTexture -n \"place2dTexture84\";\n\trename -uid \"8E32F116-4D41-B86F-996B-23A8D67B6A92\";\ncreateNode place2dTexture -n \"place2dTexture85\";\n\trename -uid \"4D5DDCE1-4A82-6A24-F0E3-4D8FA069DE37\";\ncreateNode place2dTexture -n \"place2dTexture86\";\n\trename -uid \"6446BDBD-4B68-D3AA-E5FD-E59393BAB38A\";\ncreateNode place2dTexture -n \"place2dTexture87\";\n\trename -uid \"831F4478-4406-769A-863B-E5AD8703EBBB\";\ncreateNode place2dTexture -n \"place2dTexture88\";\n\trename -uid \"1A96B0D6-45FF-1C6F-56BA-2988ECAFA81D\";\ncreateNode place2dTexture -n \"place2dTexture89\";\n\trename -uid \"3AB39786-498B-E9C8-FE01-CB885E69E83A\";\ncreateNode place2dTexture -n \"place2dTexture90\";\n\trename -uid \"F6F4394D-4CD0-7F39-045C-0DB691EF285B\";\ncreateNode place2dTexture -n \"place2dTexture91\";\n\trename -uid \"CC1D0766-4DF7-8D68-C2B6-839D0A8DA5B4\";\ncreateNode place2dTexture -n \"place2dTexture92\";\n\trename -uid \"7D3DD5B2-4927-C97E-7697-46A404A20E15\";\ncreateNode place2dTexture -n \"place2dTexture93\";\n\trename -uid \"5A7F52F1-4367-6C3D-4E6B-3286D3EB225C\";\ncreateNode place2dTexture -n \"place2dTexture94\";\n\trename -uid \"A9F010A3-4E4B-3A3A-895A-6EA589CBB0F1\";\ncreateNode place2dTexture -n \"place2dTexture95\";\n\trename -uid \"41D80182-4672-4895-9CB9-03A976A033FE\";\ncreateNode place2dTexture -n \"place2dTexture96\";\n\trename -uid \"0C22646A-4452-E0F4-1AFF-ABACB6816CC9\";\ncreateNode place2dTexture -n \"place2dTexture97\";\n\trename -uid \"216B5765-4434-D3E1-7D6C-04A1531F779A\";\ncreateNode place2dTexture -n \"place2dTexture98\";\n\trename -uid \"E4675DBC-4D1E-08A6-7C68-1E98CFD817CE\";\ncreateNode place2dTexture -n \"place2dTexture99\";\n\trename -uid \"1091B2E5-45D6-D194-99F5-C0A3A1B46388\";\ncreateNode place2dTexture -n \"place2dTexture100\";\n\trename -uid \"DA9D1C41-415B-402F-1FFB-DE9A0244F15C\";\ncreateNode place2dTexture -n \"place2dTexture101\";\n\trename -uid \"2666C1D6-4E0F-A8E8-6A3A-21A520C49686\";\ncreateNode place2dTexture -n \"place2dTexture102\";\n\trename -uid \"0E150262-4129-885D-8676-82A3BE141BDB\";\ncreateNode place2dTexture -n \"place2dTexture103\";\n\trename -uid \"497B7611-45C6-9776-1806-CEA5E1554B08\";\ncreateNode place2dTexture -n \"place2dTexture104\";\n\trename -uid \"D59D2E16-4D5D-8CCF-B588-E587120BD1C9\";\ncreateNode place2dTexture -n \"place2dTexture105\";\n\trename -uid \"80BA0554-4A78-3D94-F1C2-C5A5E8F73754\";\ncreateNode place2dTexture -n \"place2dTexture106\";\n\trename -uid \"F8D6FDB6-45D1-A8F5-A254-A3917349D764\";\ncreateNode place2dTexture -n \"place2dTexture107\";\n\trename -uid \"7AF980C2-46E4-DF70-433C-36A508293569\";\ncreateNode place2dTexture -n \"place2dTexture108\";\n\trename -uid \"43E5AB19-44FA-2BE2-1C3E-7F86C009E2A9\";\ncreateNode place2dTexture -n \"place2dTexture109\";\n\trename -uid \"250AB577-47D5-D932-B6C0-E99EA27D4E90\";\ncreateNode place2dTexture -n \"place2dTexture110\";\n\trename -uid \"1FAE840F-4C43-50B3-22F4-E5989471B7E3\";\ncreateNode place2dTexture -n \"place2dTexture111\";\n\trename -uid \"FE39C817-4A00-02EB-CE6B-EDAAD277FD51\";\ncreateNode place2dTexture -n \"place2dTexture112\";\n\trename -uid \"20C9A8C8-4217-878E-B77A-A399F8F0059D\";\ncreateNode place2dTexture -n \"place2dTexture113\";\n\trename -uid \"40E05574-43FB-CC43-153B-B290F3938E08\";\ncreateNode place2dTexture -n \"place2dTexture114\";\n\trename -uid \"78E3C8B9-4B28-69D9-B34F-EAB1DE882553\";\ncreateNode place2dTexture -n \"place2dTexture115\";\n\trename -uid \"10E76441-4A99-644D-496B-F281BA7C502D\";\ncreateNode place2dTexture -n \"place2dTexture116\";\n\trename -uid \"148A3C7A-489E-3CBB-0ACF-3FB48B6A08D2\";\ncreateNode place2dTexture -n \"place2dTexture117\";\n\trename -uid \"B9B7A784-4CD0-52E5-96BD-E58C5DF8C0C8\";\ncreateNode place2dTexture -n \"place2dTexture118\";\n\trename -uid \"5EFFDE49-433B-714F-CB4D-4F8B152B8117\";\ncreateNode place2dTexture -n \"place2dTexture119\";\n\trename -uid \"4D9FF4E5-4632-3AF6-3CEF-5F9243098F46\";\ncreateNode place2dTexture -n \"place2dTexture120\";\n\trename -uid \"B236EE87-4B88-5CB7-10CD-E097AEC7864A\";\ncreateNode place2dTexture -n \"place2dTexture121\";\n\trename -uid \"181201DD-4CC2-0E91-81FE-0ABAED477A41\";\ncreateNode place2dTexture -n \"place2dTexture122\";\n\trename -uid \"9A5DF801-4569-371B-363B-DAA4CA6F19BC\";\ncreateNode place2dTexture -n \"place2dTexture123\";\n\trename -uid \"3E934895-4E03-45C2-506E-55BA22919372\";\ncreateNode place2dTexture -n \"place2dTexture124\";\n\trename -uid \"E0057596-4067-62F9-D17F-FCB14EF2F1C4\";\ncreateNode place2dTexture -n \"place2dTexture125\";\n\trename -uid \"4738F387-4DFA-7F18-10C6-00BA05ED3CDD\";\ncreateNode place2dTexture -n \"place2dTexture126\";\n\trename -uid \"F77BB3A5-43B7-A1F5-AA1A-4792CC80D0EB\";\ncreateNode place2dTexture -n \"place2dTexture127\";\n\trename -uid \"3B177155-4BD9-9A5B-2509-CEBD96EC560F\";\ncreateNode place2dTexture -n \"place2dTexture128\";\n\trename -uid \"371C9723-4D41-6442-D024-BEBEC9BF3293\";\ncreateNode place2dTexture -n \"place2dTexture129\";\n\trename -uid \"3408D46F-4795-9133-EFA9-FC8E4F96A24B\";\ncreateNode place2dTexture -n \"place2dTexture130\";\n\trename -uid \"68287A14-4107-18A9-2C89-A39EF2CE3BBE\";\ncreateNode place2dTexture -n \"place2dTexture131\";\n\trename -uid \"25BAC247-4A43-3506-7024-43B31B387E2A\";\ncreateNode place2dTexture -n \"place2dTexture132\";\n\trename -uid \"C4CF5256-4F66-C560-E32B-E1AF32173949\";\ncreateNode place2dTexture -n \"place2dTexture133\";\n\trename -uid \"DF444511-4B0E-AEAB-4F38-2A819FD5D2F0\";\ncreateNode place2dTexture -n \"place2dTexture134\";\n\trename -uid \"4F85F7A9-464A-9BAC-2946-8798684FDD30\";\ncreateNode place2dTexture -n \"place2dTexture135\";\n\trename -uid \"809DEDFE-41DB-544B-2629-E1AA19237832\";\ncreateNode place2dTexture -n \"place2dTexture136\";\n\trename -uid \"FD081B3A-4EDF-BABE-5BD4-57B2616F28AE\";\ncreateNode place2dTexture -n \"place2dTexture137\";\n\trename -uid \"1F893E37-4DAB-5AFA-C3EB-959602C604D4\";\ncreateNode place2dTexture -n \"place2dTexture138\";\n\trename -uid \"0810AA69-4BE4-9A21-623F-FCBD0C711A3F\";\ncreateNode place2dTexture -n \"place2dTexture139\";\n\trename -uid \"89517CF5-4ECA-A924-604C-289B94211EEF\";\ncreateNode place2dTexture -n \"place2dTexture140\";\n\trename -uid \"121FF78A-43CE-9718-2612-DC8DBC3B9ED6\";\ncreateNode place2dTexture -n \"place2dTexture141\";\n\trename -uid \"1F883713-4AF4-86B3-CFAF-5BA2D898E53A\";\ncreateNode place2dTexture -n \"place2dTexture142\";\n\trename -uid \"49ADC296-4694-6BAE-CC9B-7E84F7150900\";\ncreateNode place2dTexture -n \"place2dTexture143\";\n\trename -uid \"687FAFDE-4B4F-E3AB-2F16-58B6E5D941FF\";\ncreateNode place2dTexture -n \"place2dTexture144\";\n\trename -uid \"14605AC8-448D-7117-8B6C-719642C34DC3\";\ncreateNode place2dTexture -n \"place2dTexture145\";\n\trename -uid \"5C6C24C2-4EA1-0F2D-BE08-798986D25309\";\ncreateNode place2dTexture -n \"place2dTexture146\";\n\trename -uid \"556B1FC5-4A58-6B77-302C-0E922D629ABD\";\ncreateNode place2dTexture -n \"place2dTexture147\";\n\trename -uid \"7B51DF6A-4A01-F17F-0DAC-9490AA083816\";\ncreateNode place2dTexture -n \"place2dTexture148\";\n\trename -uid \"ACEBE065-4C2D-BA7D-54F2-17AFC08892E5\";\ncreateNode place2dTexture -n \"place2dTexture149\";\n\trename -uid \"250C4F33-4A5B-5476-D283-CFB6519DE4AF\";\ncreateNode place2dTexture -n \"place2dTexture150\";\n\trename -uid \"6F4066DA-4300-1E58-48F9-698B5BD25E41\";\ncreateNode polySphere -n \"polySphere1\";\n\trename -uid \"3AB99AFB-4842-4500-C5A0-54B43EFB1063\";\ncreateNode place2dTexture -n \"place2dTexture151\";\n\trename -uid \"4628BA1D-4A16-4B05-C1F4-5C938C4CE0FC\";\ncreateNode place2dTexture -n \"place2dTexture152\";\n\trename -uid \"02BCA674-4ACF-47B1-A060-9EAEE8BB21F4\";\ncreateNode place2dTexture -n \"place2dTexture153\";\n\trename -uid \"0ED76479-4526-2CB0-E181-8392952F98A2\";\ncreateNode shadingEngine -n \"GLSLShader1SG\";\n\trename -uid \"8E5F4D0E-4DBE-BE00-909C-2EB48BFA8910\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo7\";\n\trename -uid \"8CB88DF5-4AF8-77CB-5067-D48BEA54A41E\";\ncreateNode place2dTexture -n \"place2dTexture154\";\n\trename -uid \"8312D8EC-4BBD-1FA1-B200-2FA6E5DF44F4\";\ncreateNode place2dTexture -n \"place2dTexture155\";\n\trename -uid \"C97B6D3A-4168-1FC9-22AB-30836368CB63\";\ncreateNode place2dTexture -n \"place2dTexture156\";\n\trename -uid \"AB9B8DA9-4142-58D0-CC26-8B81E9A7EAF3\";\ncreateNode place2dTexture -n \"place2dTexture157\";\n\trename -uid \"8784D302-4D27-D7B0-410D-A98CB54FED54\";\ncreateNode place2dTexture -n \"place2dTexture158\";\n\trename -uid \"B953FCE5-4D3D-AD63-2222-C4A22DDD09CB\";\ncreateNode place2dTexture -n \"place2dTexture159\";\n\trename -uid \"707E5ECD-43EE-C3A3-7371-E3B0B49A8972\";\ncreateNode place2dTexture -n \"place2dTexture160\";\n\trename -uid \"0B6D05CB-48F3-CB7B-C930-FC989A49E485\";\ncreateNode place2dTexture -n \"place2dTexture161\";\n\trename -uid \"F157EF1A-4D59-1F2E-479B-8BBF53143505\";\ncreateNode place2dTexture -n \"place2dTexture162\";\n\trename -uid \"6E2DA16C-40B4-F75C-F75A-85860FBB5A97\";\ncreateNode place2dTexture -n \"place2dTexture163\";\n\trename -uid \"E294C491-4BA6-4D7E-5628-D5B8B1542B67\";\ncreateNode place2dTexture -n \"place2dTexture164\";\n\trename -uid \"DC31CCB4-45FB-071F-75D9-3D94629C6B5E\";\ncreateNode place2dTexture -n \"place2dTexture165\";\n\trename -uid \"ED220FEB-4A4D-8EF3-6DD3-0FAFB2E88086\";\ncreateNode shadingEngine -n \"GLSLShader2SG\";\n\trename -uid \"B42B6460-4DCA-BD05-0F89-5197A16403ED\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo8\";\n\trename -uid \"E8DA1EFC-4B9E-4445-DBC7-AE8E0DB3CCF3\";\ncreateNode place2dTexture -n \"place2dTexture166\";\n\trename -uid \"BE58C695-4841-D7B6-0FD6-F28A4C478F9C\";\ncreateNode place2dTexture -n \"place2dTexture167\";\n\trename -uid \"36B504A2-45CE-4A25-D955-4F8B9F34C51E\";\ncreateNode place2dTexture -n \"place2dTexture168\";\n\trename -uid \"76EE4022-48E3-E2E5-9F76-D0A124F6A75D\";\ncreateNode place2dTexture -n \"place2dTexture169\";\n\trename -uid \"C66ED811-44D4-379F-0DDA-7F9C69466F0B\";\ncreateNode place2dTexture -n \"place2dTexture170\";\n\trename -uid \"61F88761-46B1-59E7-5949-828FF8A1541A\";\ncreateNode place2dTexture -n \"place2dTexture171\";\n\trename -uid \"250417E6-48EF-655C-2C5F-44891843E3AE\";\ncreateNode place2dTexture -n \"place2dTexture172\";\n\trename -uid \"B0D171B3-44AD-0C26-4688-938FF87FE188\";\ncreateNode place2dTexture -n \"place2dTexture173\";\n\trename -uid \"98F4B94E-4A9B-8323-9605-F88DECF2B508\";\ncreateNode place2dTexture -n \"place2dTexture174\";\n\trename -uid \"EEEE0977-43E7-32D0-E48B-BAA9E7FC69C0\";\ncreateNode place2dTexture -n \"place2dTexture175\";\n\trename -uid \"101CA464-48EE-84C2-0CC8-75828D60DC34\";\ncreateNode shadingEngine -n \"GLSLShader3SG\";\n\trename -uid \"9640053B-4C4B-FCF2-5D35-7E87A807D974\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo9\";\n\trename -uid \"9EA8469C-4881-E4C0-44D0-45BEC10F4064\";\ncreateNode place2dTexture -n \"place2dTexture176\";\n\trename -uid \"2E03D96C-4E91-3F41-A6B7-F2ADAFF7D2DD\";\ncreateNode place2dTexture -n \"place2dTexture177\";\n\trename -uid \"513E78A6-4734-87F0-C047-519E71C91E03\";\ncreateNode place2dTexture -n \"place2dTexture178\";\n\trename -uid \"E941AB00-4380-F0D3-4B61-ECB9D5A722E9\";\ncreateNode shadingEngine -n \"GLSLShader4SG\";\n\trename -uid \"CEA553F4-4ACB-ACEA-3F82-04BCE2619F0E\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo10\";\n\trename -uid \"FEC4C640-448D-F5B9-638A-A89CBC5F7BB2\";\ncreateNode GLSLShader -n \"GLSLShader5\";\n\trename -uid \"DE887C3C-4411-3D58-8215-C2ADF56B4061\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Name\" -ln \"u_LightColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Type\" -ln \"u_LightColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_LightColor\" -ln \"u_LightColor\" -nn \"Light Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_LightColorR\" -ln \"u_LightColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorG\" -ln \"u_LightColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorB\" -ln \"u_LightColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Name\" -ln \"u_LightIntensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Type\" -ln \"u_LightIntensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightIntensity\" -ln \"u_LightIntensity\" -nn \"Light Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 10 -smn 0 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Name\" -ln \"u_LightRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Type\" -ln \"u_LightRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightRotation\" -ln \"u_LightRotation\" -nn \"Light rotation (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 75 -min 0 -max 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Name\" -ln \"u_LightPitch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Type\" -ln \"u_LightPitch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightPitch\" -ln \"u_LightPitch\" -nn \"Light pitch (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 40 -min -90 -max 90 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Name\" -ln \"u_BaseColorTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Type\" -ln \"u_BaseColorTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorTexture\" -ln \"u_BaseColorTexture\" \n\t\t-nn \"Base color map (sRGB)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureR\" -ln \"u_BaseColorTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureG\" -ln \"u_BaseColorTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureB\" -ln \"u_BaseColorTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Name\" -ln \"u_BaseColorFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Type\" -ln \"u_BaseColorFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactor\" -ln \"u_BaseColorFactor\" -nn \"Base color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorFactorRGB\" -ln \"u_BaseColorFactorRGB\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_BaseColorFactor\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorR\" -ln \"u_BaseColorFactorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorG\" -ln \"u_BaseColorFactorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorB\" -ln \"u_BaseColorFactorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorA\" -ln \"u_BaseColorFactorA\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactor\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Name\" -ln \"u_MetallicTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Type\" -ln \"u_MetallicTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_MetallicTexture\" -ln \"u_MetallicTexture\" -nn \"Metallic map (B,LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_MetallicTextureR\" -ln \"u_MetallicTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureG\" -ln \"u_MetallicTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureB\" -ln \"u_MetallicTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Name\" -ln \"u_MetallicStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Type\" -ln \"u_MetallicStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_MetallicStrength\" -ln \"u_MetallicStrength\" -nn \"Metallic strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Name\" -ln \"u_RoughnessTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Type\" -ln \"u_RoughnessTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_RoughnessTexture\" -ln \"u_RoughnessTexture\" \n\t\t-nn \"Roughness map (G,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureR\" -ln \"u_RoughnessTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureG\" -ln \"u_RoughnessTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureB\" -ln \"u_RoughnessTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Name\" -ln \"u_RoughnessStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Type\" -ln \"u_RoughnessStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessStrength\" -ln \"u_RoughnessStrength\" -nn \"Roughness strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Name\" -ln \"u_OcclusionTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Type\" -ln \"u_OcclusionTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_OcclusionTexture\" -ln \"u_OcclusionTexture\" \n\t\t-nn \"Occlusion map (R,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureR\" -ln \"u_OcclusionTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureG\" -ln \"u_OcclusionTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureB\" -ln \"u_OcclusionTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Name\" -ln \"u_OcclusionStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Type\" -ln \"u_OcclusionStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_OcclusionStrength\" -ln \"u_OcclusionStrength\" -nn \"Occlusion strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Name\" -ln \"u_NormalTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Type\" -ln \"u_NormalTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_NormalTexture\" -ln \"u_NormalTexture\" -nn \"Normal map (LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_NormalTextureR\" -ln \"u_NormalTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureG\" -ln \"u_NormalTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureB\" -ln \"u_NormalTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Name\" -ln \"u_NormalScale_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Type\" -ln \"u_NormalScale_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_NormalScale\" -ln \"u_NormalScale\" -nn \"Normal scale\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Name\" -ln \"u_EmissiveTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Type\" -ln \"u_EmissiveTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveTexture\" -ln \"u_EmissiveTexture\" -nn \"Emissive map (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureR\" -ln \"u_EmissiveTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureG\" -ln \"u_EmissiveTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureB\" -ln \"u_EmissiveTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Name\" -ln \"u_EmissiveColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Type\" -ln \"u_EmissiveColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveColor\" -ln \"u_EmissiveColor\" -nn \"Emissive color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveColorR\" -ln \"u_EmissiveColorR\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorG\" -ln \"u_EmissiveColorG\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorB\" -ln \"u_EmissiveColorB\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Name\" -ln \"u_DiffuseEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Type\" -ln \"u_DiffuseEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_DiffuseEnvTexture\" -ln \"u_DiffuseEnvTexture\" \n\t\t-nn \"Diffuse env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureR\" -ln \"u_DiffuseEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureG\" -ln \"u_DiffuseEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureB\" -ln \"u_DiffuseEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Name\" -ln \"u_SpecularEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Type\" -ln \"u_SpecularEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_SpecularEnvTexture\" -ln \"u_SpecularEnvTexture\" \n\t\t-nn \"Specular env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureR\" -ln \"u_SpecularEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureG\" -ln \"u_SpecularEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureB\" -ln \"u_SpecularEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Name\" -ln \"u_brdfTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Type\" -ln \"u_brdfTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_brdfTexture\" -ln \"u_brdfTexture\" -nn \"BRDF LUT (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_brdfTextureR\" -ln \"u_brdfTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureG\" -ln \"u_brdfTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureB\" -ln \"u_brdfTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Name\" -ln \"u_UseMeshTangents_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Type\" -ln \"u_UseMeshTangents_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UseMeshTangents\" -ln \"u_UseMeshTangents\" -nn \"Use mesh tangents?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Name\" -ln \"u_ScaleDiffBaseMR_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Type\" -ln \"u_ScaleDiffBaseMR_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMR\" -ln \"u_ScaleDiffBaseMR\" -nn \"Scale Diff Base MR\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRXYZ\" -ln \"u_ScaleDiffBaseMRXYZ\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_ScaleDiffBaseMR\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRX\" -ln \"u_ScaleDiffBaseMRX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRY\" -ln \"u_ScaleDiffBaseMRY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRZ\" -ln \"u_ScaleDiffBaseMRZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRW\" -ln \"u_ScaleDiffBaseMRW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMR\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Name\" -ln \"u_ScaleFGDSpec_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Type\" -ln \"u_ScaleFGDSpec_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpec\" -ln \"u_ScaleFGDSpec\" -nn \"Scale FGD Spec\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecXYZ\" -ln \"u_ScaleFGDSpecXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleFGDSpec\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecX\" -ln \"u_ScaleFGDSpecX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecY\" -ln \"u_ScaleFGDSpecY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecZ\" -ln \"u_ScaleFGDSpecZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecW\" -ln \"u_ScaleFGDSpecW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpec\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Name\" -ln \"u_ScaleIBL_Occl_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Type\" -ln \"u_ScaleIBL_Occl_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_Occl\" -ln \"u_ScaleIBL_Occl\" -nn \"Scale IBL AO(w)\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclXYZ\" -ln \"u_ScaleIBL_OcclXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleIBL_Occl\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclX\" -ln \"u_ScaleIBL_OcclX\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclY\" -ln \"u_ScaleIBL_OcclY\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclZ\" -ln \"u_ScaleIBL_OcclZ\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclW\" -ln \"u_ScaleIBL_OcclW\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_Occl\";\n\taddAttr -s false -is true -ci true -k true -sn \"te\" -ln \"techniqueEnum\" -nn \"Technique\" \n\t\t-min 0 -max 1 -en \"Solid:Transparent\" -at \"enum\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Name\" -ln \"u_IsDoubleSided_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Type\" -ln \"u_IsDoubleSided_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsDoubleSided\" -ln \"u_IsDoubleSided\" -nn \"Double sided material?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -ci true -sn \"Position\" -ln \"Position\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Position_Name\" -ln \"Position_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"Position_Source\" -ln \"Position_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -sn \"Position_DefaultTexture\" -ln \"Position_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Position\";\n\taddAttr -ci true -sn \"Normal\" -ln \"Normal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Normal_Name\" -ln \"Normal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Source\" -ln \"Normal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -sn \"Normal_DefaultTexture\" -ln \"Normal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Normal\";\n\taddAttr -ci true -sn \"Tangent\" -ln \"Tangent\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Tangent_Name\" -ln \"Tangent_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"Tangent_Source\" -ln \"Tangent_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -sn \"Tangent_DefaultTexture\" -ln \"Tangent_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Tangent\";\n\taddAttr -ci true -sn \"Binormal\" -ln \"Binormal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Binormal_Name\" -ln \"Binormal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -h true -sn \"Binormal_Source\" -ln \"Binormal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -sn \"Binormal_DefaultTexture\" -ln \"Binormal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Binormal\";\n\taddAttr -ci true -sn \"TexCoord0\" -ln \"TexCoord0\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Name\" -ln \"TexCoord0_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Source\" -ln \"TexCoord0_Source\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -sn \"TexCoord0_DefaultTexture\" -ln \"TexCoord0_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Name\" -ln \"u_FlipEnvMapZ_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Type\" -ln \"u_FlipEnvMapZ_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_FlipEnvMapZ\" -ln \"u_FlipEnvMapZ\" -nn \"Flip environment Z?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Name\" -ln \"u_IsEnvMapInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Type\" -ln \"u_IsEnvMapInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInsRGB\" -ln \"u_IsEnvMapInsRGB\" -nn \"sRGB environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Name\" -ln \"u_IsBRDFsSRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Type\" -ln \"u_IsBRDFsSRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBRDFsSRGB\" -ln \"u_IsBRDFsSRGB\" -nn \"sRGB BRDF table?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Name\" -ln \"u_RoughnessOffset_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Type\" -ln \"u_RoughnessOffset_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessOffset\" -ln \"u_RoughnessOffset\" -nn \"Roughness offset\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 12 -smn 0 -smx 12 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Name\" -ln \"u_BurleyFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Type\" -ln \"u_BurleyFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BurleyFactor\" -ln \"u_BurleyFactor\" -nn \"Burley factor\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Name\" -ln \"u_UndoEdgeStretch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Type\" -ln \"u_UndoEdgeStretch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UndoEdgeStretch\" -ln \"u_UndoEdgeStretch\" -nn \"Undo edge stretch?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Name\" -ln \"u_IsEmissiveInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Type\" -ln \"u_IsEmissiveInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEmissiveInsRGB\" -ln \"u_IsEmissiveInsRGB\" -nn \"sRGB emissive?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Name\" -ln \"u_EnvRotationAngle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Type\" -ln \"u_EnvRotationAngle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_EnvRotationAngle\" -ln \"u_EnvRotationAngle\" -nn \"Environment Rotation\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Name\" -ln \"u_IsEnvMapInRGBM_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Type\" -ln \"u_IsEnvMapInRGBM_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInRGBM\" -ln \"u_IsEnvMapInRGBM\" -nn \"RGBM environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Name\" -ln \"u_IsBaseColorInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Type\" -ln \"u_IsBaseColorInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBaseColorInsRGB\" -ln \"u_IsBaseColorInsRGB\" -nn \"sRGB basecolor?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\tsetAttr \".vpar\" -type \"stringArray\" 5 \"Position\" \"Normal\" \"Tangent\" \"Binormal\" \"TexCoord0\"  ;\n\tsetAttr \".upar\" -type \"stringArray\" 34 \"u_LightColor\" \"u_LightIntensity\" \"u_LightRotation\" \"u_LightPitch\" \"u_BaseColorTexture\" \"u_BaseColorFactor\" \"u_MetallicTexture\" \"u_MetallicStrength\" \"u_RoughnessTexture\" \"u_RoughnessStrength\" \"u_OcclusionTexture\" \"u_OcclusionStrength\" \"u_NormalTexture\" \"u_NormalScale\" \"u_EmissiveTexture\" \"u_EmissiveColor\" \"u_DiffuseEnvTexture\" \"u_SpecularEnvTexture\" \"u_brdfTexture\" \"u_IsDoubleSided\" \"u_UseMeshTangents\" \"u_RoughnessOffset\" \"u_ScaleDiffBaseMR\" \"u_BurleyFactor\" \"u_ScaleFGDSpec\" \"u_UndoEdgeStretch\" \"u_ScaleIBL_Occl\" \"u_IsEmissiveInsRGB\" \"u_EnvRotationAngle\" \"u_FlipEnvMapZ\" \"u_IsEnvMapInsRGB\" \"u_IsEnvMapInRGBM\" \"u_IsBRDFsSRGB\" \"u_IsBaseColorInsRGB\"  ;\n\tsetAttr \".s\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/shaders/glTF_PBR.ogsfx\";\n\tsetAttr \".t\" -type \"string\" \"Solid\";\n\tsetAttr \".u_LightColor_Name\" -type \"string\" \"u_LightColor\";\n\tsetAttr \".u_LightColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_LightColor\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_LightIntensity_Name\" -type \"string\" \"u_LightIntensity\";\n\tsetAttr \".u_LightIntensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightIntensity\" 0;\n\tsetAttr \".u_LightRotation_Name\" -type \"string\" \"u_LightRotation\";\n\tsetAttr \".u_LightRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightRotation\" 75;\n\tsetAttr \".u_LightPitch_Name\" -type \"string\" \"u_LightPitch\";\n\tsetAttr \".u_LightPitch_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightPitch\" 40;\n\tsetAttr \".u_BaseColorTexture_Name\" -type \"string\" \"u_BaseColorTexture\";\n\tsetAttr \".u_BaseColorTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_BaseColorTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_BaseColorFactor_Name\" -type \"string\" \"u_BaseColorFactor\";\n\tsetAttr \".u_BaseColorFactor_Type\" -type \"string\" \"color4x1\";\n\tsetAttr \".u_BaseColorFactorRGB\" -type \"float3\" 0.5 0.5 0.5 ;\n\tsetAttr \".u_BaseColorFactorA\" 1;\n\tsetAttr \".u_MetallicTexture_Name\" -type \"string\" \"u_MetallicTexture\";\n\tsetAttr \".u_MetallicTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_MetallicTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_MetallicStrength_Name\" -type \"string\" \"u_MetallicStrength\";\n\tsetAttr \".u_MetallicStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_MetallicStrength\" 0.5;\n\tsetAttr \".u_RoughnessTexture_Name\" -type \"string\" \"u_RoughnessTexture\";\n\tsetAttr \".u_RoughnessTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_RoughnessTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_RoughnessStrength_Name\" -type \"string\" \"u_RoughnessStrength\";\n\tsetAttr \".u_RoughnessStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_RoughnessStrength\" 0.5;\n\tsetAttr \".u_OcclusionTexture_Name\" -type \"string\" \"u_OcclusionTexture\";\n\tsetAttr \".u_OcclusionTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_OcclusionTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_OcclusionStrength_Name\" -type \"string\" \"u_OcclusionStrength\";\n\tsetAttr \".u_OcclusionStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_OcclusionStrength\" 1;\n\tsetAttr \".u_NormalTexture_Name\" -type \"string\" \"u_NormalTexture\";\n\tsetAttr \".u_NormalTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_NormalTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_NormalScale_Name\" -type \"string\" \"u_NormalScale\";\n\tsetAttr \".u_NormalScale_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_NormalScale\" 1;\n\tsetAttr \".u_EmissiveTexture_Name\" -type \"string\" \"u_EmissiveTexture\";\n\tsetAttr \".u_EmissiveTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_EmissiveTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_EmissiveColor_Name\" -type \"string\" \"u_EmissiveColor\";\n\tsetAttr \".u_EmissiveColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_EmissiveColor\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_DiffuseEnvTexture_Name\" -type \"string\" \"u_DiffuseEnvTexture\";\n\tsetAttr \".u_DiffuseEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_DiffuseEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_SpecularEnvTexture_Name\" -type \"string\" \"u_SpecularEnvTexture\";\n\tsetAttr \".u_SpecularEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_SpecularEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_brdfTexture_Name\" -type \"string\" \"u_brdfTexture\";\n\tsetAttr \".u_brdfTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_brdfTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_UseMeshTangents_Name\" -type \"string\" \"u_UseMeshTangents\";\n\tsetAttr \".u_UseMeshTangents_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UseMeshTangents\" no;\n\tsetAttr \".u_ScaleDiffBaseMR_Name\" -type \"string\" \"u_ScaleDiffBaseMR\";\n\tsetAttr \".u_ScaleDiffBaseMR_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleDiffBaseMRXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleDiffBaseMRW\" 0;\n\tsetAttr \".u_ScaleFGDSpec_Name\" -type \"string\" \"u_ScaleFGDSpec\";\n\tsetAttr \".u_ScaleFGDSpec_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleFGDSpecXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleFGDSpecW\" 0;\n\tsetAttr \".u_ScaleIBL_Occl_Name\" -type \"string\" \"u_ScaleIBL_Occl\";\n\tsetAttr \".u_ScaleIBL_Occl_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleIBL_OcclXYZ\" -type \"float3\" 1 1 0 ;\n\tsetAttr \".u_ScaleIBL_OcclW\" 1;\n\tsetAttr \".u_IsDoubleSided_Name\" -type \"string\" \"u_IsDoubleSided\";\n\tsetAttr \".u_IsDoubleSided_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsDoubleSided\" no;\n\tsetAttr \".Position_Name\" -type \"string\" \"Position\";\n\tsetAttr \".Position_Source\" -type \"string\" \"position\";\n\tsetAttr \".Normal_Name\" -type \"string\" \"Normal\";\n\tsetAttr \".Normal_Source\" -type \"string\" \"normal\";\n\tsetAttr \".Tangent_Name\" -type \"string\" \"Tangent\";\n\tsetAttr \".Tangent_Source\" -type \"string\" \"tangent:map1\";\n\tsetAttr \".Binormal_Name\" -type \"string\" \"Binormal\";\n\tsetAttr \".Binormal_Source\" -type \"string\" \"binormal:map1\";\n\tsetAttr \".TexCoord0_Name\" -type \"string\" \"TexCoord0\";\n\tsetAttr \".TexCoord0_Source\" -type \"string\" \"uv:map1\";\n\tsetAttr \".u_FlipEnvMapZ_Name\" -type \"string\" \"u_FlipEnvMapZ\";\n\tsetAttr \".u_FlipEnvMapZ_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_FlipEnvMapZ\" yes;\n\tsetAttr \".u_IsEnvMapInsRGB_Name\" -type \"string\" \"u_IsEnvMapInsRGB\";\n\tsetAttr \".u_IsEnvMapInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInsRGB\" no;\n\tsetAttr \".u_IsBRDFsSRGB_Name\" -type \"string\" \"u_IsBRDFsSRGB\";\n\tsetAttr \".u_IsBRDFsSRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBRDFsSRGB\" yes;\n\tsetAttr \".u_RoughnessOffset_Name\" -type \"string\" \"u_RoughnessOffset\";\n\tsetAttr \".u_RoughnessOffset_Type\" -type \"string\" \"int\";\n\tsetAttr \".u_RoughnessOffset\" 0;\n\tsetAttr \".u_BurleyFactor_Name\" -type \"string\" \"u_BurleyFactor\";\n\tsetAttr \".u_BurleyFactor_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_BurleyFactor\" 0;\n\tsetAttr \".u_UndoEdgeStretch_Name\" -type \"string\" \"u_UndoEdgeStretch\";\n\tsetAttr \".u_UndoEdgeStretch_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UndoEdgeStretch\" no;\n\tsetAttr \".u_IsEmissiveInsRGB_Name\" -type \"string\" \"u_IsEmissiveInsRGB\";\n\tsetAttr \".u_IsEmissiveInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEmissiveInsRGB\" yes;\n\tsetAttr \".u_EnvRotationAngle_Name\" -type \"string\" \"u_EnvRotationAngle\";\n\tsetAttr \".u_EnvRotationAngle_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_EnvRotationAngle\" 0;\n\tsetAttr \".u_IsEnvMapInRGBM_Name\" -type \"string\" \"u_IsEnvMapInRGBM\";\n\tsetAttr \".u_IsEnvMapInRGBM_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInRGBM\" no;\n\tsetAttr \".u_IsBaseColorInsRGB_Name\" -type \"string\" \"u_IsBaseColorInsRGB\";\n\tsetAttr \".u_IsBaseColorInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBaseColorInsRGB\" yes;\ncreateNode file -n \"file1\";\n\trename -uid \"2D1DF0F1-4F62-95DC-438D-03B27C37CB0D\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_diffuse_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture179\";\n\trename -uid \"F30229BA-4977-F12D-7A4B-93B90A487A67\";\ncreateNode file -n \"file2\";\n\trename -uid \"5501A75E-4C71-2D36-A3B7-B5BE435B4CC7\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_specular_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture180\";\n\trename -uid \"DFAD84F3-49F2-F3BE-066E-AF9091039759\";\ncreateNode file -n \"file3\";\n\trename -uid \"1B081514-4C31-FFF0-C4FC-E49C867E5C0A\";\n\tsetAttr \".ftn\" -type \"string\" \"R:/08_Development/PBR/images/brdfLUT.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture181\";\n\trename -uid \"91DFD3E3-4292-B567-16EC-48945BDD426A\";\ncreateNode shadingEngine -n \"GLSLShader5SG\";\n\trename -uid \"FA1C7492-4B41-FA8B-5EA2-5C85CF7D99E2\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo11\";\n\trename -uid \"B1E66418-4BD9-57C2-D5EB-13B17F15CC1F\";\ncreateNode place2dTexture -n \"place2dTexture182\";\n\trename -uid \"144C6FC3-4125-E78A-BE59-D69C2E966718\";\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"91FC83BB-4AA7-85A6-4600-909AE51A923C\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 12 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 8 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderUtilityList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 182 \".u\";\nselect -ne :defaultRenderingList1;\nselect -ne :defaultTextureList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 3 \".tx\";\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"groupId13.id\" \"pos_xShape.iog.og[0].gid\";\nconnectAttr \"lambert2SG.mwc\" \"pos_xShape.iog.og[0].gco\";\nconnectAttr \"groupId14.id\" \"neg_xShape.iog.og[0].gid\";\nconnectAttr \"lambert2SG.mwc\" \"neg_xShape.iog.og[0].gco\";\nconnectAttr \"groupId15.id\" \"pos_yShape.iog.og[0].gid\";\nconnectAttr \"lambert3SG.mwc\" \"pos_yShape.iog.og[0].gco\";\nconnectAttr \"groupId16.id\" \"neg_yShape.iog.og[0].gid\";\nconnectAttr \"lambert3SG.mwc\" \"neg_yShape.iog.og[0].gco\";\nconnectAttr \"groupId17.id\" \"pos_zShape.iog.og[0].gid\";\nconnectAttr \"lambert4SG.mwc\" \"pos_zShape.iog.og[0].gco\";\nconnectAttr \"groupId18.id\" \"neg_zShape.iog.og[0].gid\";\nconnectAttr \"lambert4SG.mwc\" \"neg_zShape.iog.og[0].gco\";\nconnectAttr \"polySphere1.out\" \"pSphereShape1.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"typeBlinnSG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert4SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"phong1SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader1SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader3SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader4SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader5SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"typeBlinnSG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert4SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"phong1SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader1SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader3SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader4SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader5SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"typeBlinnSG.msg\" \"materialInfo1.sg\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"pos_xShape.iog.og[0]\" \"lambert2SG.dsm\" -na;\nconnectAttr \"neg_xShape.iog.og[0]\" \"lambert2SG.dsm\" -na;\nconnectAttr \"groupId13.msg\" \"lambert2SG.gn\" -na;\nconnectAttr \"groupId14.msg\" \"lambert2SG.gn\" -na;\nconnectAttr \"lambert2SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo2.m\";\nconnectAttr \"lambert3.oc\" \"lambert3SG.ss\";\nconnectAttr \"pos_yShape.iog.og[0]\" \"lambert3SG.dsm\" -na;\nconnectAttr \"neg_yShape.iog.og[0]\" \"lambert3SG.dsm\" -na;\nconnectAttr \"groupId15.msg\" \"lambert3SG.gn\" -na;\nconnectAttr \"groupId16.msg\" \"lambert3SG.gn\" -na;\nconnectAttr \"lambert3SG.msg\" \"materialInfo3.sg\";\nconnectAttr \"lambert3.msg\" \"materialInfo3.m\";\nconnectAttr \"lambert4.oc\" \"lambert4SG.ss\";\nconnectAttr \"pos_zShape.iog.og[0]\" \"lambert4SG.dsm\" -na;\nconnectAttr \"neg_zShape.iog.og[0]\" \"lambert4SG.dsm\" -na;\nconnectAttr \"groupId17.msg\" \"lambert4SG.gn\" -na;\nconnectAttr \"groupId18.msg\" \"lambert4SG.gn\" -na;\nconnectAttr \"lambert4SG.msg\" \"materialInfo4.sg\";\nconnectAttr \"lambert4.msg\" \"materialInfo4.m\";\nconnectAttr \"phong1SG.msg\" \"materialInfo6.sg\";\nconnectAttr \"GLSLShader1SG.msg\" \"materialInfo7.sg\";\nconnectAttr \"GLSLShader2SG.msg\" \"materialInfo8.sg\";\nconnectAttr \"GLSLShader3SG.msg\" \"materialInfo9.sg\";\nconnectAttr \"GLSLShader4SG.msg\" \"materialInfo10.sg\";\nconnectAttr \"file1.oc\" \"GLSLShader5.u_DiffuseEnvTexture\";\nconnectAttr \"file2.oc\" \"GLSLShader5.u_SpecularEnvTexture\";\nconnectAttr \"file3.oc\" \"GLSLShader5.u_brdfTexture\";\nconnectAttr \"place2dTexture179.c\" \"file1.c\";\nconnectAttr \"place2dTexture179.tf\" \"file1.tf\";\nconnectAttr \"place2dTexture179.rf\" \"file1.rf\";\nconnectAttr \"place2dTexture179.mu\" \"file1.mu\";\nconnectAttr \"place2dTexture179.mv\" \"file1.mv\";\nconnectAttr \"place2dTexture179.s\" \"file1.s\";\nconnectAttr \"place2dTexture179.wu\" \"file1.wu\";\nconnectAttr \"place2dTexture179.wv\" \"file1.wv\";\nconnectAttr \"place2dTexture179.re\" \"file1.re\";\nconnectAttr \"place2dTexture179.r\" \"file1.ro\";\nconnectAttr \"place2dTexture179.of\" \"file1.of\";\nconnectAttr \"place2dTexture179.n\" \"file1.n\";\nconnectAttr \"place2dTexture179.vt1\" \"file1.vt1\";\nconnectAttr \"place2dTexture179.vt2\" \"file1.vt2\";\nconnectAttr \"place2dTexture179.vt3\" \"file1.vt3\";\nconnectAttr \"place2dTexture179.vc1\" \"file1.vc1\";\nconnectAttr \"place2dTexture179.o\" \"file1.uv\";\nconnectAttr \"place2dTexture179.ofs\" \"file1.fs\";\nconnectAttr \"place2dTexture180.c\" \"file2.c\";\nconnectAttr \"place2dTexture180.tf\" \"file2.tf\";\nconnectAttr \"place2dTexture180.rf\" \"file2.rf\";\nconnectAttr \"place2dTexture180.mu\" \"file2.mu\";\nconnectAttr \"place2dTexture180.mv\" \"file2.mv\";\nconnectAttr \"place2dTexture180.s\" \"file2.s\";\nconnectAttr \"place2dTexture180.wu\" \"file2.wu\";\nconnectAttr \"place2dTexture180.wv\" \"file2.wv\";\nconnectAttr \"place2dTexture180.re\" \"file2.re\";\nconnectAttr \"place2dTexture180.r\" \"file2.ro\";\nconnectAttr \"place2dTexture180.of\" \"file2.of\";\nconnectAttr \"place2dTexture180.n\" \"file2.n\";\nconnectAttr \"place2dTexture180.vt1\" \"file2.vt1\";\nconnectAttr \"place2dTexture180.vt2\" \"file2.vt2\";\nconnectAttr \"place2dTexture180.vt3\" \"file2.vt3\";\nconnectAttr \"place2dTexture180.vc1\" \"file2.vc1\";\nconnectAttr \"place2dTexture180.o\" \"file2.uv\";\nconnectAttr \"place2dTexture180.ofs\" \"file2.fs\";\nconnectAttr \"place2dTexture181.c\" \"file3.c\";\nconnectAttr \"place2dTexture181.tf\" \"file3.tf\";\nconnectAttr \"place2dTexture181.rf\" \"file3.rf\";\nconnectAttr \"place2dTexture181.mu\" \"file3.mu\";\nconnectAttr \"place2dTexture181.mv\" \"file3.mv\";\nconnectAttr \"place2dTexture181.s\" \"file3.s\";\nconnectAttr \"place2dTexture181.wu\" \"file3.wu\";\nconnectAttr \"place2dTexture181.wv\" \"file3.wv\";\nconnectAttr \"place2dTexture181.re\" \"file3.re\";\nconnectAttr \"place2dTexture181.r\" \"file3.ro\";\nconnectAttr \"place2dTexture181.of\" \"file3.of\";\nconnectAttr \"place2dTexture181.n\" \"file3.n\";\nconnectAttr \"place2dTexture181.vt1\" \"file3.vt1\";\nconnectAttr \"place2dTexture181.vt2\" \"file3.vt2\";\nconnectAttr \"place2dTexture181.vt3\" \"file3.vt3\";\nconnectAttr \"place2dTexture181.vc1\" \"file3.vc1\";\nconnectAttr \"place2dTexture181.o\" \"file3.uv\";\nconnectAttr \"place2dTexture181.ofs\" \"file3.fs\";\nconnectAttr \"GLSLShader5.oc\" \"GLSLShader5SG.ss\";\nconnectAttr \"pSphereShape1.iog\" \"GLSLShader5SG.dsm\" -na;\nconnectAttr \"GLSLShader5SG.msg\" \"materialInfo11.sg\";\nconnectAttr \"GLSLShader5.msg\" \"materialInfo11.m\";\nconnectAttr \"typeBlinnSG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert3SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert4SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"phong1SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader1SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader3SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader4SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader5SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert3.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert4.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"GLSLShader5.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"place2dTexture1.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture2.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture3.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture4.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture5.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture6.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture7.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture8.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture9.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture10.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture11.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture12.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture13.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture14.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture15.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture16.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture17.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture18.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture19.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture20.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture21.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture22.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture23.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture24.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture25.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture26.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture27.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture28.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture29.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture30.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture31.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture32.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture33.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture34.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture35.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture36.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture37.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture38.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture39.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture40.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture41.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture42.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture43.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture44.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture45.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture46.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture47.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture48.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture49.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture50.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture51.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture52.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture53.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture54.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture55.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture56.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture57.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture58.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture59.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture60.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture61.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture62.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture63.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture64.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture65.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture66.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture67.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture68.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture69.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture70.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture71.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture72.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture73.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture74.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture75.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture76.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture77.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture78.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture79.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture80.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture81.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture82.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture83.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture84.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture85.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture86.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture87.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture88.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture89.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture90.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture91.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture92.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture93.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture94.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture95.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture96.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture97.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture98.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture99.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture100.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture101.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture102.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture103.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture104.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture105.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture106.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture107.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture108.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture109.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture110.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture111.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture112.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture113.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture114.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture115.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture116.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture117.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture118.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture119.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture120.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture121.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture122.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture123.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture124.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture125.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture126.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture127.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture128.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture129.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture130.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture131.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture132.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture133.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture134.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture135.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture136.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture137.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture138.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture139.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture140.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture141.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture142.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture143.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture144.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture145.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture146.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture147.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture148.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture149.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture150.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture151.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture152.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture153.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture154.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture155.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture156.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture157.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture158.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture159.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture160.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture161.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture162.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture163.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture164.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture165.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture166.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture167.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture168.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture169.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture170.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture171.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture172.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture173.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture174.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture175.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture176.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture177.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture178.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture179.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture180.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture181.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture182.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"file1.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file2.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file3.msg\" \":defaultTextureList1.tx\" -na;\n// End of ReflectionSphere.ma\n"
  },
  {
    "path": "maya/scenes/ref/referencedCube1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: referencedCube1.ma\n//Last modified: Sun, Feb 03, 2019 11:58:23 AM\n//Codeset: 1252\nfile -rdi 1 -ns \"SimpleCube1\" -rfn \"SimpleCube1RN\" -op \"v=0;\" -typ \"mayaAscii\"\n\t\t \"C:/dev/glTF/Maya2glTF/maya//scenes/SimpleCube1.ma\";\nfile -r -ns \"SimpleCube1\" -dr 1 -rfn \"SimpleCube1RN\" -op \"v=0;\" -typ \"mayaAscii\"\n\t\t \"C:/dev/glTF/Maya2glTF/maya//scenes/SimpleCube1.ma\";\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"7B536CB6-4F6F-3335-E840-D0940AF6FBFB\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 2.504919379085139 1.878689534313968 2.5049193790851398 ;\n\tsetAttr \".r\" -type \"double3\" -27.938352729602325 45.000000000000007 2.9236893181567143e-14 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"D3A98547-4774-5D15-9838-BD89B340EFE8\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 4.0098274972589927;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"5DC1BEFD-40B6-1A28-8BA4-958994A116F2\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"DEACB42D-456F-B85B-9F67-AD8EF81A1E4E\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"E643898D-4B54-C2EE-AF1D-28A1772F0A7D\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"1D29F456-49C5-B187-CB13-FFBB4F146A0E\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"9721BAF7-4349-7843-7D71-BBAF3F2521CC\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"FF124C19-4DA7-D498-2ADB-39BA1DECC8C3\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"camera1\";\n\trename -uid \"E8BF6BA4-414F-79E9-68D3-F79F945C4073\";\n\tsetAttr \".t\" -type \"double3\" 1.1280935417606996 1.8690616881841713 2.4192044072879586 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"217D3F4F-4827-EF0B-2149-00B081A5F786\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 3.2586096110828544;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"DEDB1715-4C2F-ED82-EA4F-BE8C148239CF\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"E135FF37-4B68-28FF-FF2A-7995E2BB6C08\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"BA9BD214-4F7F-CEDC-002D-0FBCA608623D\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"4B963B4C-46DA-02E0-9213-A087DB4DDB96\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"89E2303A-4B99-4E02-36BA-77AF3D8D9E44\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"09710C9D-45D4-B013-5696-D1882AD19543\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"D4321495-4248-A89A-C0D8-9DBBBE349A76\";\n\tsetAttr \".g\" yes;\ncreateNode reference -n \"SimpleCube1RN\";\n\trename -uid \"64D8604F-4978-59FC-2A72-E19355BB5D75\";\n\tsetAttr \".ed\" -type \"dataReferenceEdits\" \n\t\t\"SimpleCube1RN\"\n\t\t\"SimpleCube1RN\" 0;\n\tsetAttr \".ptag\" -type \"string\" \"\";\nlockNode -l 1 ;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"330E38F3-4E27-4CB7-AE12-1A8B041CF5EE\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"C66F9796-4817-4348-7A1F-7CB95C394AA6\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"0E986447-48DA-8A60-B773-B39F4082FC07\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\n\tsetAttr -s 2 \".r\";\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\n// End of referencedCube1.ma\n"
  },
  {
    "path": "maya/scenes/skin/BlendedSkinningAnim.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: BlendedSkinningAnim.ma\n//Last modified: Sun, Feb 03, 2019 11:58:50 AM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"37A98A1D-4A82-E4B4-04C9-3EBE1F61FBF7\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -0.73339676076019422 15.810820831602859 0.048712159105146917 ;\n\tsetAttr \".r\" -type \"double3\" -87.338352729626067 -86.199999999990169 -4.7991059259510447e-14 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"C7925C42-4149-6F67-B22F-DAA0B714AA99\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 15.827896229511332;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"DC18D102-4E78-228C-8590-ADB6059CC8D6\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"397D18B6-41F0-55A0-3FD2-7D95D000EEBE\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"945088E9-47E1-7BD6-18BB-6F87CD5C2EDA\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"B8D42EC9-4B7B-90AC-59C2-02B7B7524E58\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"6584BDE5-4455-DC20-DDAA-6181C42FDE2E\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"8E0D13D4-49AB-0299-4E4E-B7A05676E8FB\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"target1\";\n\trename -uid \"BABDC9FB-47C0-F326-BE20-13AC7DF05518\";\n\tsetAttr \".v\" no;\ncreateNode mesh -n \"targetShape1\" -p \"target1\";\n\trename -uid \"64F399CF-4C20-57AA-D584-A8BDC4EB6265\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".pt\";\n\tsetAttr \".pt[0]\" -type \"float3\" -2.9802322e-08 0.3318153 -0.36621886 ;\n\tsetAttr \".pt[3]\" -type \"float3\" 2.9802322e-08 0.3318153 -0.36621881 ;\n\tsetAttr \".pt[4]\" -type \"float3\" -2.9802322e-08 -0.33181536 -0.36621884 ;\n\tsetAttr \".pt[7]\" -type \"float3\" 2.9802322e-08 -0.33181536 -0.36621881 ;\n\tsetAttr \".pt[8]\" -type \"float3\" -2.9802322e-08 -0.33181536 0.36621881 ;\n\tsetAttr \".pt[11]\" -type \"float3\" 2.9802322e-08 -0.33181536 0.36621886 ;\n\tsetAttr \".pt[12]\" -type \"float3\" -2.9802322e-08 0.3318153 0.36621881 ;\n\tsetAttr \".pt[15]\" -type \"float3\" 2.9802322e-08 0.3318153 0.36621881 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"base\";\n\trename -uid \"84D1DD72-45A4-AADE-1728-BABB110178F0\";\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\ncreateNode mesh -n \"baseShape\" -p \"base\";\n\trename -uid \"BB133C82-47AA-4581-F320-4B8A32A38DEF\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 6 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".pt\";\n\tsetAttr \".pt[0]\" -type \"float3\" -2.9802322e-08 2.9802322e-08 0 ;\n\tsetAttr \".pt[3]\" -type \"float3\" 2.9802322e-08 2.9802322e-08 0 ;\n\tsetAttr \".pt[4]\" -type \"float3\" -2.9802322e-08 -2.9802322e-08 -2.9802322e-08 ;\n\tsetAttr \".pt[7]\" -type \"float3\" 2.9802322e-08 -2.9802322e-08 -2.9802322e-08 ;\n\tsetAttr \".pt[8]\" -type \"float3\" -2.9802322e-08 -2.9802322e-08 0 ;\n\tsetAttr \".pt[11]\" -type \"float3\" 2.9802322e-08 -2.9802322e-08 0 ;\n\tsetAttr \".pt[12]\" -type \"float3\" -2.9802322e-08 2.9802322e-08 2.9802322e-08 ;\n\tsetAttr \".pt[15]\" -type \"float3\" 2.9802322e-08 0 2.9802322e-08 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\ncreateNode mesh -n \"baseShapeOrig\" -p \"base\";\n\trename -uid \"7F8E9ACA-48AE-6F0C-44FE-C8A19264E6DC\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 24 \".uvst[0].uvsp[0:23]\" -type \"float2\" 0.375 0 0.45833334\n\t\t 0 0.54166669 0 0.625 0 0.375 0.25 0.45833334 0.25 0.54166669 0.25 0.625 0.25 0.375\n\t\t 0.5 0.45833334 0.5 0.54166669 0.5 0.625 0.5 0.375 0.75 0.45833334 0.75 0.54166669\n\t\t 0.75 0.625 0.75 0.375 1 0.45833334 1 0.54166669 1 0.625 1 0.875 0 0.875 0.25 0.125\n\t\t 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 16 \".vt[0:15]\"  -1.5 -0.49999997 0.5 -0.5 -0.5 0.5 0.5 -0.5 0.5\n\t\t 1.5 -0.49999997 0.5 -1.5 0.49999997 0.49999997 -0.5 0.5 0.5 0.5 0.5 0.5 1.5 0.49999997 0.49999997\n\t\t -1.5 0.49999997 -0.5 -0.5 0.5 -0.5 0.5 0.5 -0.5 1.5 0.49999997 -0.5 -1.5 -0.49999997 -0.49999997\n\t\t -0.5 -0.5 -0.5 0.5 -0.5 -0.5 1.5 -0.5 -0.49999997;\n\tsetAttr -s 28 \".ed[0:27]\"  0 1 0 1 2 0 2 3 0 4 5 0 5 6 0 6 7 0 8 9 0\n\t\t 9 10 0 10 11 0 12 13 0 13 14 0 14 15 0 0 4 0 1 5 1 2 6 1 3 7 0 4 8 0 5 9 1 6 10 1\n\t\t 7 11 0 8 12 0 9 13 1 10 14 1 11 15 0 12 0 0 13 1 1 14 2 1 15 3 0;\n\tsetAttr -s 14 -ch 56 \".fc[0:13]\" -type \"polyFaces\" \n\t\tf 4 0 13 -4 -13\n\t\tmu 0 4 0 1 5 4\n\t\tf 4 1 14 -5 -14\n\t\tmu 0 4 1 2 6 5\n\t\tf 4 2 15 -6 -15\n\t\tmu 0 4 2 3 7 6\n\t\tf 4 3 17 -7 -17\n\t\tmu 0 4 4 5 9 8\n\t\tf 4 4 18 -8 -18\n\t\tmu 0 4 5 6 10 9\n\t\tf 4 5 19 -9 -19\n\t\tmu 0 4 6 7 11 10\n\t\tf 4 6 21 -10 -21\n\t\tmu 0 4 8 9 13 12\n\t\tf 4 7 22 -11 -22\n\t\tmu 0 4 9 10 14 13\n\t\tf 4 8 23 -12 -23\n\t\tmu 0 4 10 11 15 14\n\t\tf 4 9 25 -1 -25\n\t\tmu 0 4 12 13 17 16\n\t\tf 4 10 26 -2 -26\n\t\tmu 0 4 13 14 18 17\n\t\tf 4 11 27 -3 -27\n\t\tmu 0 4 14 15 19 18\n\t\tf 4 -28 -24 -20 -16\n\t\tmu 0 4 3 20 21 7\n\t\tf 4 24 12 16 20\n\t\tmu 0 4 22 0 4 23;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode joint -n \"joint1\";\n\trename -uid \"B5D45015-4D87-D8CC-D57C-178EC2CE7FA9\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 -1 0 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint2\" -p \"joint1\";\n\trename -uid \"9F48E486-423D-F568-28D6-CB8A92851468\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 1;\n\tsetAttr \".t\" -type \"double3\" 1 0 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint3\" -p \"joint2\";\n\trename -uid \"431AB138-4BB2-2846-4FA7-8AB72C23C86C\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 2;\n\tsetAttr \".t\" -type \"double3\" 1 0 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode transform -n \"camera1\";\n\trename -uid \"33AC8DFF-4030-6F21-5068-B08E2FF43BD3\";\n\tsetAttr \".t\" -type \"double3\" 3.1850024587855437 4.5675515809834195 6.7933282745560239 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"C9E65B4A-446C-92C7-962C-699CC995ABD6\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 7.4704604528926621;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" -0.00029522180557250977 0 1.7449889183044434 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"564F4FFB-4B16-3C8E-1205-D3B85E28095A\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"1A384613-474D-1976-69A7-AC8028249527\";\n\tsetAttr \".bsdt[0].bscd\" -type \"Int32Array\" 1 0 ;\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"45C4314A-4026-53F3-3D53-DE9C4031963F\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"692E35A8-480E-8BE3-0DAB-DEA8D6E78CDC\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"C06A7287-47F3-4B52-033C-589BA27D56C8\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"AEB338DA-463B-D5FB-9F51-15AE9C643A30\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"53CC11BE-4991-FBAE-8039-F08A16D07EB4\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"BBC77C58-4DB8-58F4-A239-8382C6B3381F\";\n\tsetAttr \".w\" 3;\n\tsetAttr \".sw\" 3;\n\tsetAttr \".cuv\" 4;\ncreateNode blendShape -n \"blendShape1\";\n\trename -uid \"00BF6D9D-41B7-1863-F2CE-A48CF8D08A3C\";\n\taddAttr -ci true -h true -sn \"aal\" -ln \"attributeAliasList\" -dt \"attributeAlias\";\n\tsetAttr \".mlid\" 0;\n\tsetAttr \".mlpr\" 0;\n\tsetAttr \".pndr[0]\"  0;\n\tsetAttr \".tgdt[0].cid\" -type \"Int32Array\" 1 0 ;\n\tsetAttr \".aal\" -type \"attributeAlias\" {\"target1\",\"weight[0]\"} ;\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"795D80E8-46EA-7B3C-BAF5-D1A9EF366FC5\";\ncreateNode objectSet -n \"blendShape1Set\";\n\trename -uid \"7D0456C9-412D-6FEA-D6BF-99A6E8496711\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"blendShape1GroupId\";\n\trename -uid \"D0E4ABA4-46A5-6C75-AC9A-ACABA83D8AA8\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"blendShape1GroupParts\";\n\trename -uid \"EE46B450-4549-478F-1614-4F88FBE2CDC9\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"2778B5BB-4C21-19DE-D22B-189DEBBB3967\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"BCF98AD7-4A12-7B2A-A532-F883C3813077\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"C67D6AD1-4D2E-55E8-CC5A-4BA8BE72950D\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode skinCluster -n \"skinCluster1\";\n\trename -uid \"8EFCFEA8-421C-41D9-8E6E-5C97333F1AB8\";\n\tsetAttr -s 16 \".wl\";\n\tsetAttr \".wl[0:15].w\"\n\t\t3 0 0.92019529120627963 1 0.068444273902345698 2 0.011360434891374669\n\t\t3 0 0.67681789931634539 1 0.30080795525170928 2 0.022374145431945314\n\t\t3 0 0.23529411764705888 1 0.52941176470588225 2 0.23529411764705888\n\t\t3 0 0.035856571707036294 1 0.48207171414648187 2 0.48207171414648187\n\t\t3 0 0.92019529558503133 1 0.068444270272065399 2 0.011360434142903317\n\t\t3 0 0.67681789931634539 1 0.30080795525170928 2 0.022374145431945314\n\t\t3 0 0.23529411764705888 1 0.52941176470588225 2 0.23529411764705888\n\t\t3 0 0.035856569708893331 1 0.48207171514555336 2 0.48207171514555336\n\t\t3 0 0.92019529120627963 1 0.068444273902345698 2 0.011360434891374669\n\t\t3 0 0.67681789931634539 1 0.30080795525170928 2 0.022374145431945314\n\t\t3 0 0.23529411764705888 1 0.52941176470588225 2 0.23529411764705888\n\t\t3 0 0.035856571707036294 1 0.48207171414648187 2 0.48207171414648187\n\t\t3 0 0.92019529558503133 1 0.068444270272065399 2 0.011360434142903317\n\t\t3 0 0.67681789931634539 1 0.30080795525170928 2 0.022374145431945314\n\t\t3 0 0.23529411764705888 1 0.52941176470588225 2 0.23529411764705888\n\t\t3 0 0.035856571707036294 1 0.48207171414648187 2 0.48207171414648187;\n\tsetAttr -s 3 \".pm\";\n\tsetAttr \".pm[0]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1;\n\tsetAttr \".pm[1]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".pm[2]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 -1 0 0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr -s 3 \".ma\";\n\tsetAttr -s 3 \".dpf[0:2]\"  4 4 4;\n\tsetAttr -s 3 \".lw\";\n\tsetAttr -s 3 \".lw\";\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".mi\" 4;\n\tsetAttr \".ucm\" yes;\n\tsetAttr -s 3 \".ifcl\";\n\tsetAttr -s 3 \".ifcl\";\ncreateNode objectSet -n \"skinCluster1Set\";\n\trename -uid \"DCDADEF6-4663-5F78-C5EE-DA98752AD6E3\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster1GroupId\";\n\trename -uid \"5B263BC7-4E7B-A317-2EDA-B98C572EB492\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster1GroupParts\";\n\trename -uid \"CD76EAEE-48BC-E6D1-D569-D1BC866740F5\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode dagPose -n \"bindPose1\";\n\trename -uid \"42A28A94-4B88-501A-8F47-DB8377CF5EEC\";\n\tsetAttr -s 3 \".wm\";\n\tsetAttr -s 3 \".xm\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[1]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[2]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr -s 3 \".m\";\n\tsetAttr -s 3 \".p\";\n\tsetAttr \".bp\" yes;\ncreateNode animCurveTL -n \"joint1_translateX\";\n\trename -uid \"5933A5DE-4979-1FD4-4180-1F803A69D822\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 -1 20 -0.44246348416494874 40 0;\ncreateNode animCurveTL -n \"joint1_translateY\";\n\trename -uid \"D300DB3D-494D-7E11-6C1E-D2AD2664231E\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 20 0 40 0;\ncreateNode animCurveTL -n \"joint1_translateZ\";\n\trename -uid \"659B30BF-45AE-28BE-98D3-1D84EDCAED52\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 20 2.7936044933348412 40 0;\ncreateNode animCurveTA -n \"joint1_rotateX\";\n\trename -uid \"AAC8FB3A-4B68-F295-8DDB-BD9DFA8D3214\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 20 0 40 0;\ncreateNode animCurveTA -n \"joint1_rotateY\";\n\trename -uid \"65817CA0-4506-AB9E-2F14-3DB3E48002B8\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 20 36 40 0;\ncreateNode animCurveTA -n \"joint1_rotateZ\";\n\trename -uid \"74BA5C5C-4F79-0053-6DDE-5AAA4D6ACDF6\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 20 0 40 0;\ncreateNode animCurveTU -n \"joint1_scaleX\";\n\trename -uid \"1E555C9C-4296-B38F-09AC-AAA668D492E3\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 20 1 40 1;\ncreateNode animCurveTU -n \"joint1_scaleY\";\n\trename -uid \"10686520-477B-44E9-ED6A-F8A52B4BAB1D\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 20 1 40 1;\ncreateNode animCurveTU -n \"joint1_scaleZ\";\n\trename -uid \"01C818E5-4758-4A23-92EF-EC86B895D05C\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 20 1 40 1;\ncreateNode animCurveTU -n \"blendShape1_target1\";\n\trename -uid \"D492C129-47A4-7D06-1D86-1697EFAEB1FF\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 20 1 40 0;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"D72184D0-40A9-15C4-EEF3-599F4A05714D\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n\"\n\t\t+ \"            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\"\n\t\t+ \"\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 0\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 1\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 1\\n            -showReferenceMembers 1\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"dagName\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 1\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 0\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"dagName\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 1\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 1\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n\"\n\t\t+ \"            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n\"\n\t\t+ \"            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n\"\n\t\t+ \"            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n\"\n\t\t+ \"            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n\"\n\t\t+ \"        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n\"\n\t\t+ \"            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n\"\n\t\t+ \"            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n\"\n\t\t+ \"            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"FEAA6AF3-42C1-5C00-8EDD-FA9E3263E24C\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 60 -ast 1 -aet 60 \";\n\tsetAttr \".st\" 6;\ncreateNode nodeGraphEditorInfo -n \"MayaNodeEditorSavedTabsInfo\";\n\trename -uid \"575769D6-4E7C-FC67-AE4A-70BC579DB660\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -1525.6247829085505 -642.27719486813987 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 927.24511388678604 586.08611036663171 ;\n\tsetAttr -s 13 \".tgi[0].ni\";\n\tsetAttr \".tgi[0].ni[0].x\" -240;\n\tsetAttr \".tgi[0].ni[0].y\" 262.85714721679688;\n\tsetAttr \".tgi[0].ni[0].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[1].x\" -547.14288330078125;\n\tsetAttr \".tgi[0].ni[1].y\" 82.857139587402344;\n\tsetAttr \".tgi[0].ni[1].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[2].x\" 67.142860412597656;\n\tsetAttr \".tgi[0].ni[2].y\" 442.85714721679688;\n\tsetAttr \".tgi[0].ni[2].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[3].x\" -854.28570556640625;\n\tsetAttr \".tgi[0].ni[3].y\" 377.14285278320313;\n\tsetAttr \".tgi[0].ni[3].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[4].x\" -854.28570556640625;\n\tsetAttr \".tgi[0].ni[4].y\" 275.71429443359375;\n\tsetAttr \".tgi[0].ni[4].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[5].x\" -854.28570556640625;\n\tsetAttr \".tgi[0].ni[5].y\" 174.28572082519531;\n\tsetAttr \".tgi[0].ni[5].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[6].x\" -854.28570556640625;\n\tsetAttr \".tgi[0].ni[6].y\" 72.857139587402344;\n\tsetAttr \".tgi[0].ni[6].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[7].x\" -854.28570556640625;\n\tsetAttr \".tgi[0].ni[7].y\" -28.571428298950195;\n\tsetAttr \".tgi[0].ni[7].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[8].x\" -854.28570556640625;\n\tsetAttr \".tgi[0].ni[8].y\" -130;\n\tsetAttr \".tgi[0].ni[8].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[9].x\" -854.28570556640625;\n\tsetAttr \".tgi[0].ni[9].y\" -231.42857360839844;\n\tsetAttr \".tgi[0].ni[9].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[10].x\" -854.28570556640625;\n\tsetAttr \".tgi[0].ni[10].y\" -332.85714721679688;\n\tsetAttr \".tgi[0].ni[10].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[11].x\" -854.28570556640625;\n\tsetAttr \".tgi[0].ni[11].y\" -434.28570556640625;\n\tsetAttr \".tgi[0].ni[11].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[12].x\" -1284.2857666015625;\n\tsetAttr \".tgi[0].ni[12].y\" 4.2857141494750977;\n\tsetAttr \".tgi[0].ni[12].nvs\" 18304;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"BF7B97F5-4E78-7958-E0D3-D984954C005C\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 60;\n\tsetAttr \".unw\" 60;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"polyCube1.out\" \"targetShape1.i\";\nconnectAttr \"blendShape1GroupId.id\" \"baseShape.iog.og[2].gid\";\nconnectAttr \"blendShape1Set.mwc\" \"baseShape.iog.og[2].gco\";\nconnectAttr \"groupId2.id\" \"baseShape.iog.og[3].gid\";\nconnectAttr \"tweakSet1.mwc\" \"baseShape.iog.og[3].gco\";\nconnectAttr \"skinCluster1GroupId.id\" \"baseShape.iog.og[4].gid\";\nconnectAttr \"skinCluster1Set.mwc\" \"baseShape.iog.og[4].gco\";\nconnectAttr \"skinCluster1.og[0]\" \"baseShape.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"baseShape.twl\";\nconnectAttr \"joint1_scaleX.o\" \"joint1.sx\";\nconnectAttr \"joint1_scaleY.o\" \"joint1.sy\";\nconnectAttr \"joint1_scaleZ.o\" \"joint1.sz\";\nconnectAttr \"joint1_rotateY.o\" \"joint1.ry\";\nconnectAttr \"joint1_rotateX.o\" \"joint1.rx\";\nconnectAttr \"joint1_rotateZ.o\" \"joint1.rz\";\nconnectAttr \"joint1_translateX.o\" \"joint1.tx\";\nconnectAttr \"joint1_translateY.o\" \"joint1.ty\";\nconnectAttr \"joint1_translateZ.o\" \"joint1.tz\";\nconnectAttr \"joint1.s\" \"joint2.is\";\nconnectAttr \"joint1.ry\" \"joint2.ry\";\nconnectAttr \"joint2.s\" \"joint3.is\";\nconnectAttr \"joint2.ry\" \"joint3.ry\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"blendShape1.mlpr\" \"shapeEditorManager.bspr[0]\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"blendShape1GroupParts.og\" \"blendShape1.ip[0].ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1.ip[0].gi\";\nconnectAttr \"targetShape1.w\" \"blendShape1.it[0].itg[0].iti[6000].igt\";\nconnectAttr \"shapeEditorManager.obsv[0]\" \"blendShape1.tgdt[0].dpvs\";\nconnectAttr \"blendShape1_target1.o\" \"blendShape1.w[0]\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"blendShape1GroupId.msg\" \"blendShape1Set.gn\" -na;\nconnectAttr \"baseShape.iog.og[2]\" \"blendShape1Set.dsm\" -na;\nconnectAttr \"blendShape1.msg\" \"blendShape1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"blendShape1GroupParts.ig\";\nconnectAttr \"blendShape1GroupId.id\" \"blendShape1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"baseShape.iog.og[3]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"baseShapeOrig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"skinCluster1GroupParts.og\" \"skinCluster1.ip[0].ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1.ip[0].gi\";\nconnectAttr \"bindPose1.msg\" \"skinCluster1.bp\";\nconnectAttr \"joint1.wm\" \"skinCluster1.ma[0]\";\nconnectAttr \"joint2.wm\" \"skinCluster1.ma[1]\";\nconnectAttr \"joint3.wm\" \"skinCluster1.ma[2]\";\nconnectAttr \"joint1.liw\" \"skinCluster1.lw[0]\";\nconnectAttr \"joint2.liw\" \"skinCluster1.lw[1]\";\nconnectAttr \"joint3.liw\" \"skinCluster1.lw[2]\";\nconnectAttr \"joint1.obcc\" \"skinCluster1.ifcl[0]\";\nconnectAttr \"joint2.obcc\" \"skinCluster1.ifcl[1]\";\nconnectAttr \"joint3.obcc\" \"skinCluster1.ifcl[2]\";\nconnectAttr \"skinCluster1GroupId.msg\" \"skinCluster1Set.gn\" -na;\nconnectAttr \"baseShape.iog.og[4]\" \"skinCluster1Set.dsm\" -na;\nconnectAttr \"skinCluster1.msg\" \"skinCluster1Set.ub[0]\";\nconnectAttr \"blendShape1.og[0]\" \"skinCluster1GroupParts.ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1GroupParts.gi\";\nconnectAttr \"joint1.msg\" \"bindPose1.m[0]\";\nconnectAttr \"joint2.msg\" \"bindPose1.m[1]\";\nconnectAttr \"joint3.msg\" \"bindPose1.m[2]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[0]\";\nconnectAttr \"bindPose1.m[0]\" \"bindPose1.p[1]\";\nconnectAttr \"bindPose1.m[1]\" \"bindPose1.p[2]\";\nconnectAttr \"joint1.bps\" \"bindPose1.wm[0]\";\nconnectAttr \"joint2.bps\" \"bindPose1.wm[1]\";\nconnectAttr \"joint3.bps\" \"bindPose1.wm[2]\";\nconnectAttr \"joint2.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[0].dn\";\nconnectAttr \"joint1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[1].dn\";\nconnectAttr \"joint3.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[2].dn\";\nconnectAttr \"joint1_translateX.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[3].dn\"\n\t\t;\nconnectAttr \"joint1_translateY.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[4].dn\"\n\t\t;\nconnectAttr \"joint1_translateZ.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[5].dn\"\n\t\t;\nconnectAttr \"joint1_rotateX.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[6].dn\";\nconnectAttr \"joint1_rotateY.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[7].dn\";\nconnectAttr \"joint1_rotateZ.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[8].dn\";\nconnectAttr \"joint1_scaleX.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[9].dn\";\nconnectAttr \"joint1_scaleY.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[10].dn\";\nconnectAttr \"joint1_scaleZ.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[11].dn\";\nconnectAttr \"blendShape1_target1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[12].dn\"\n\t\t;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"targetShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"baseShape.iog\" \":initialShadingGroup.dsm\" -na;\n// End of BlendedSkinningAnim.ma\n"
  },
  {
    "path": "maya/scenes/skin/CubeNormalBakingRigTest.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: CubeNormalBakingRigTest.ma\n//Last modified: Sun, Feb 03, 2019 12:01:29 PM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\nrequires -nodeType \"GLSLShader\" \"glslShader\" \"1.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"1CE062EA-477A-B7B8-D645-5596AADC08E7\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1.2467578062684366 1.1323375426957325 2.9371773274417161 ;\n\tsetAttr \".r\" -type \"double3\" -19.538352671432211 -1056.9999999995421 -8.6380714603115357e-16 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"C4935601-467D-7DF4-2F6E-BA8B414677C4\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 3.3857944401459124;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"9A2D5671-4DA0-64AC-9677-34AC14010C2A\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"DFD81D49-4D88-3BEF-AAEF-9A8148720AF3\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"49DC5B17-4BEE-D096-E459-66A8B2E3C6D3\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"78D375D8-4146-766F-36FD-00A495F441DA\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"CA189366-4A50-D1A3-0246-86AF70E583CF\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"3049F159-4EB9-7FD6-030E-C0B8F616FC15\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"SoftCube\";\n\trename -uid \"47CA52D6-44C3-4712-AF9D-2DABBABE3F8B\";\n\taddAttr -is true -ci true -k true -sn \"currentUVSet\" -ln \"currentUVSet\" -dt \"string\";\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\n\tsetAttr -k on \".currentUVSet\" -type \"string\" \"map1\";\ncreateNode mesh -n \"SoftCubeShape\" -p \"SoftCube\";\n\trename -uid \"D87CCB43-42A8-8CD1-94C1-4A92802095F4\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".tsa\" 10;\n\tsetAttr \".tnt\" 10;\n\tsetAttr \".vcs\" 2;\ncreateNode mesh -n \"SoftCubeShapeOrig\" -p \"SoftCube\";\n\trename -uid \"936BD0DA-4637-7202-838E-3B917E184A3D\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 18 \".ed[0:17]\"  0 1 0 1 2 0 2 0 0 1 3 0 3 2 0 3 4 0 4 2 0\n\t\t 3 5 0 5 4 0 5 6 0 6 4 0 5 7 0 7 6 0 7 0 0 0 6 0 7 1 0 7 3 0 0 4 0;\n\tsetAttr -s 36 \".n[0:35]\" -type \"float3\"  -0.5773502 -0.5773502 0.5773502\n\t\t 0.5773502 -0.5773502 0.5773502 -0.5773502 0.5773502 0.5773502 -0.5773502 0.5773502\n\t\t 0.5773502 0.5773502 -0.5773502 0.5773502 0.5773502 0.5773502 0.5773502 -0.5773502\n\t\t 0.5773502 0.5773502 0.5773502 0.5773502 0.5773502 -0.5773502 0.5773502 -0.5773502\n\t\t -0.5773502 0.5773502 -0.5773502 0.5773502 0.5773502 0.5773502 0.5773502 0.5773502\n\t\t -0.5773502 -0.5773502 0.5773502 -0.5773502 0.5773502 0.5773502 -0.5773502 -0.5773502\n\t\t -0.5773502 -0.5773502 -0.5773502 -0.5773502 -0.5773502 0.5773502 0.5773502 -0.5773502\n\t\t 0.5773502 -0.5773502 -0.5773502 -0.5773502 -0.5773502 -0.5773502 0.5773502 -0.5773502\n\t\t -0.5773502 -0.5773502 -0.5773502 0.5773502 -0.5773502 -0.5773502 0.5773502 0.5773502\n\t\t -0.5773502 -0.5773502 0.5773502 -0.5773502 0.5773502 0.5773502 -0.5773502 0.5773502\n\t\t 0.5773502 -0.5773502 -0.5773502 0.5773502 0.5773502 0.5773502 0.5773502 0.5773502\n\t\t 0.5773502 0.5773502 -0.5773502 -0.5773502 0.5773502 0.5773502 -0.5773502 -0.5773502\n\t\t -0.5773502 -0.5773502 -0.5773502 -0.5773502 0.5773502 -0.5773502 0.5773502 -0.5773502\n\t\t -0.5773502 0.5773502 -0.5773502 -0.5773502 -0.5773502 0.5773502 -0.5773502 0.5773502\n\t\t 0.5773502;\n\tsetAttr -s 12 -ch 36 \".fc[0:11]\" -type \"polyFaces\" \n\t\tf 3 0 1 2\n\t\tmu 0 3 0 1 2\n\t\tf 3 -2 3 4\n\t\tmu 0 3 2 1 3\n\t\tf 3 -5 5 6\n\t\tmu 0 3 2 3 4\n\t\tf 3 -6 7 8\n\t\tmu 0 3 4 3 5\n\t\tf 3 -9 9 10\n\t\tmu 0 3 4 5 6\n\t\tf 3 -10 11 12\n\t\tmu 0 3 6 5 7\n\t\tf 3 -13 13 14\n\t\tmu 0 3 6 7 8\n\t\tf 3 -14 15 -1\n\t\tmu 0 3 8 7 9\n\t\tf 3 -16 16 -4\n\t\tmu 0 3 1 10 3\n\t\tf 3 -17 -12 -8\n\t\tmu 0 3 3 10 11\n\t\tf 3 -15 17 -11\n\t\tmu 0 3 12 0 13\n\t\tf 3 -18 -3 -7\n\t\tmu 0 3 13 0 2;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode joint -n \"joint1\";\n\trename -uid \"836A9B7B-4CBB-B597-C788-79812D324F8B\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode transform -n \"camera1\";\n\trename -uid \"41F63FCF-4F0A-82F9-EE56-25950636C7D2\";\n\tsetAttr \".t\" -type \"double3\" 1.8381223547324517 2.2718973820580297 1.8245075111097255 ;\n\tsetAttr \".r\" -type \"double3\" -42.199746004868231 45.799999999999343 2.2810627414084531e-15 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"6889194D-422A-89DE-DEAE-B9823B3751C7\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 3.4026052934301578;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"2984B45B-4525-6665-DA9D-AFB8F3B94FE6\";\n\tsetAttr -s 8 \".lnk\";\n\tsetAttr -s 8 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"BD521BE9-436E-5A62-03A5-4A9FA43BDF0B\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"3C8734FB-4E68-AFA6-E482-6EB13BC993EB\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"E2A21F78-484B-B2AA-4BC3-8FBA7A07E2F9\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"ACC974D7-479D-0951-16D3-EB9D8126CD3A\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"2E3A2847-4220-3554-6979-259B840A3B75\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"ADB67A05-48B0-5365-362C-C59134C2F4AE\";\n\tsetAttr \".g\" yes;\ncreateNode lambert -n \"surfaceSamplingEnvelopeShader\";\n\trename -uid \"58450C19-4F0D-09C2-972A-29ADA85AD11F\";\n\tsetAttr \".c\" -type \"float3\" 1 0.5 0.5 ;\n\tsetAttr \".it\" -type \"float3\" 0.25 0.25 0.25 ;\ncreateNode shadingEngine -n \"surfaceSamplingEnvelopeShaderSG\";\n\trename -uid \"7527CA41-4E9F-440C-D16D-26AF290A1D19\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"9C849DEA-451D-FC57-AEBD-6E93DAD6036F\";\ncreateNode GLSLShader -n \"GLSL_PBR_Shader\";\n\trename -uid \"A83DA730-4D91-1876-C551-15A14C515CFE\";\n\taddAttr -ci true -sn \"Light_0_use_implicit_lighting\" -ln \"Light_0_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_0_connected_light\" -ln \"Light_0_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_1_use_implicit_lighting\" -ln \"Light_1_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_1_connected_light\" -ln \"Light_1_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_2_use_implicit_lighting\" -ln \"Light_2_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_2_connected_light\" -ln \"Light_2_connected_light\" \n\t\t-at \"message\";\n\taddAttr -s false -is true -ci true -k true -sn \"te\" -ln \"techniqueEnum\" -nn \"Technique\" \n\t\t-min 0 -max 1 -en \"Solid:Transparent\" -at \"enum\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Name\" -ln \"u_LightColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Type\" -ln \"u_LightColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_LightColor\" -ln \"u_LightColor\" -nn \"Light Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_LightColorR\" -ln \"u_LightColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorG\" -ln \"u_LightColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorB\" -ln \"u_LightColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Name\" -ln \"u_LightIntensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Type\" -ln \"u_LightIntensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightIntensity\" -ln \"u_LightIntensity\" -nn \"Light Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 10 -smn 0 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Name\" -ln \"u_LightRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Type\" -ln \"u_LightRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightRotation\" -ln \"u_LightRotation\" -nn \"Light rotation (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 75 -min 0 -max 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Name\" -ln \"u_LightPitch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Type\" -ln \"u_LightPitch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightPitch\" -ln \"u_LightPitch\" -nn \"Light pitch (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 40 -min -90 -max 90 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Name\" -ln \"u_BaseColorTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Type\" -ln \"u_BaseColorTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorTexture\" -ln \"u_BaseColorTexture\" \n\t\t-nn \"Base color map (sRGB)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureR\" -ln \"u_BaseColorTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureG\" -ln \"u_BaseColorTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureB\" -ln \"u_BaseColorTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Name\" -ln \"u_BaseColorFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Type\" -ln \"u_BaseColorFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactor\" -ln \"u_BaseColorFactor\" -nn \"Base color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorFactorRGB\" -ln \"u_BaseColorFactorRGB\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_BaseColorFactor\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorR\" -ln \"u_BaseColorFactorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorG\" -ln \"u_BaseColorFactorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorB\" -ln \"u_BaseColorFactorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorA\" -ln \"u_BaseColorFactorA\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactor\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Name\" -ln \"u_MetallicTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Type\" -ln \"u_MetallicTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_MetallicTexture\" -ln \"u_MetallicTexture\" -nn \"Metallic map (B,LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_MetallicTextureR\" -ln \"u_MetallicTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureG\" -ln \"u_MetallicTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureB\" -ln \"u_MetallicTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Name\" -ln \"u_MetallicStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Type\" -ln \"u_MetallicStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_MetallicStrength\" -ln \"u_MetallicStrength\" -nn \"Metallic strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Name\" -ln \"u_RoughnessTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Type\" -ln \"u_RoughnessTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_RoughnessTexture\" -ln \"u_RoughnessTexture\" \n\t\t-nn \"Roughness map (G,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureR\" -ln \"u_RoughnessTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureG\" -ln \"u_RoughnessTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureB\" -ln \"u_RoughnessTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Name\" -ln \"u_RoughnessStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Type\" -ln \"u_RoughnessStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessStrength\" -ln \"u_RoughnessStrength\" -nn \"Roughness strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Name\" -ln \"u_OcclusionTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Type\" -ln \"u_OcclusionTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_OcclusionTexture\" -ln \"u_OcclusionTexture\" \n\t\t-nn \"Occlusion map (R,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureR\" -ln \"u_OcclusionTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureG\" -ln \"u_OcclusionTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureB\" -ln \"u_OcclusionTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Name\" -ln \"u_OcclusionStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Type\" -ln \"u_OcclusionStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_OcclusionStrength\" -ln \"u_OcclusionStrength\" -nn \"Occlusion strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Name\" -ln \"u_NormalTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Type\" -ln \"u_NormalTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_NormalTexture\" -ln \"u_NormalTexture\" -nn \"Normal map (LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_NormalTextureR\" -ln \"u_NormalTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureG\" -ln \"u_NormalTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureB\" -ln \"u_NormalTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Name\" -ln \"u_NormalScale_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Type\" -ln \"u_NormalScale_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_NormalScale\" -ln \"u_NormalScale\" -nn \"Normal scale\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Name\" -ln \"u_EmissiveTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Type\" -ln \"u_EmissiveTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveTexture\" -ln \"u_EmissiveTexture\" -nn \"Emissive map (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureR\" -ln \"u_EmissiveTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureG\" -ln \"u_EmissiveTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureB\" -ln \"u_EmissiveTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Name\" -ln \"u_EmissiveColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Type\" -ln \"u_EmissiveColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveColor\" -ln \"u_EmissiveColor\" -nn \"Emissive color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveColorR\" -ln \"u_EmissiveColorR\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorG\" -ln \"u_EmissiveColorG\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorB\" -ln \"u_EmissiveColorB\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Name\" -ln \"u_DiffuseEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Type\" -ln \"u_DiffuseEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_DiffuseEnvTexture\" -ln \"u_DiffuseEnvTexture\" \n\t\t-nn \"Diffuse env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureR\" -ln \"u_DiffuseEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureG\" -ln \"u_DiffuseEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureB\" -ln \"u_DiffuseEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Name\" -ln \"u_SpecularEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Type\" -ln \"u_SpecularEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_SpecularEnvTexture\" -ln \"u_SpecularEnvTexture\" \n\t\t-nn \"Specular env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureR\" -ln \"u_SpecularEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureG\" -ln \"u_SpecularEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureB\" -ln \"u_SpecularEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Name\" -ln \"u_brdfTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Type\" -ln \"u_brdfTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_brdfTexture\" -ln \"u_brdfTexture\" -nn \"BRDF LUT (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_brdfTextureR\" -ln \"u_brdfTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureG\" -ln \"u_brdfTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureB\" -ln \"u_brdfTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Name\" -ln \"u_UseMeshTangents_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Type\" -ln \"u_UseMeshTangents_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UseMeshTangents\" -ln \"u_UseMeshTangents\" -nn \"Use mesh tangents?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Name\" -ln \"u_ScaleDiffBaseMR_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Type\" -ln \"u_ScaleDiffBaseMR_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMR\" -ln \"u_ScaleDiffBaseMR\" -nn \"Scale Diff Base MR\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRXYZ\" -ln \"u_ScaleDiffBaseMRXYZ\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_ScaleDiffBaseMR\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRX\" -ln \"u_ScaleDiffBaseMRX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRY\" -ln \"u_ScaleDiffBaseMRY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRZ\" -ln \"u_ScaleDiffBaseMRZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRW\" -ln \"u_ScaleDiffBaseMRW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMR\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Name\" -ln \"u_ScaleFGDSpec_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Type\" -ln \"u_ScaleFGDSpec_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpec\" -ln \"u_ScaleFGDSpec\" -nn \"Scale FGD Spec\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecXYZ\" -ln \"u_ScaleFGDSpecXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleFGDSpec\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecX\" -ln \"u_ScaleFGDSpecX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecY\" -ln \"u_ScaleFGDSpecY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecZ\" -ln \"u_ScaleFGDSpecZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecW\" -ln \"u_ScaleFGDSpecW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpec\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Name\" -ln \"u_ScaleIBL_Occl_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Type\" -ln \"u_ScaleIBL_Occl_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_Occl\" -ln \"u_ScaleIBL_Occl\" -nn \"Scale IBL AO(w)\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclXYZ\" -ln \"u_ScaleIBL_OcclXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleIBL_Occl\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclX\" -ln \"u_ScaleIBL_OcclX\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclY\" -ln \"u_ScaleIBL_OcclY\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclZ\" -ln \"u_ScaleIBL_OcclZ\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclW\" -ln \"u_ScaleIBL_OcclW\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_Occl\";\n\taddAttr -ci true -sn \"Position\" -ln \"Position\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Position_Name\" -ln \"Position_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"Position_Source\" -ln \"Position_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -sn \"Position_DefaultTexture\" -ln \"Position_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Position\";\n\taddAttr -ci true -sn \"Normal\" -ln \"Normal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Normal_Name\" -ln \"Normal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Source\" -ln \"Normal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -sn \"Normal_DefaultTexture\" -ln \"Normal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Normal\";\n\taddAttr -ci true -sn \"Tangent\" -ln \"Tangent\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Tangent_Name\" -ln \"Tangent_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"Tangent_Source\" -ln \"Tangent_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -sn \"Tangent_DefaultTexture\" -ln \"Tangent_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Tangent\";\n\taddAttr -ci true -sn \"Binormal\" -ln \"Binormal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Binormal_Name\" -ln \"Binormal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -h true -sn \"Binormal_Source\" -ln \"Binormal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -sn \"Binormal_DefaultTexture\" -ln \"Binormal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Binormal\";\n\taddAttr -ci true -sn \"TexCoord0\" -ln \"TexCoord0\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Name\" -ln \"TexCoord0_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Source\" -ln \"TexCoord0_Source\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -sn \"TexCoord0_DefaultTexture\" -ln \"TexCoord0_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Name\" -ln \"u_IsDoubleSided_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Type\" -ln \"u_IsDoubleSided_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsDoubleSided\" -ln \"u_IsDoubleSided\" -nn \"Double sided material?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Name\" -ln \"u_RoughnessOffset_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Type\" -ln \"u_RoughnessOffset_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessOffset\" -ln \"u_RoughnessOffset\" -nn \"Roughness offset\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 12 -smn 0 -smx 12 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Name\" -ln \"u_BurleyFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Type\" -ln \"u_BurleyFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BurleyFactor\" -ln \"u_BurleyFactor\" -nn \"Burley factor\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Name\" -ln \"u_UndoEdgeStretch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Type\" -ln \"u_UndoEdgeStretch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UndoEdgeStretch\" -ln \"u_UndoEdgeStretch\" -nn \"Undo edge stretch?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Name\" -ln \"u_IsEmissiveInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Type\" -ln \"u_IsEmissiveInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEmissiveInsRGB\" -ln \"u_IsEmissiveInsRGB\" -nn \"sRGB emissive?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Name\" -ln \"u_EnvRotationAngle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Type\" -ln \"u_EnvRotationAngle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_EnvRotationAngle\" -ln \"u_EnvRotationAngle\" -nn \"Environment Rotation\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Name\" -ln \"u_FlipEnvMapZ_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Type\" -ln \"u_FlipEnvMapZ_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_FlipEnvMapZ\" -ln \"u_FlipEnvMapZ\" -nn \"Flip environment Z?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Name\" -ln \"u_IsEnvMapInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Type\" -ln \"u_IsEnvMapInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInsRGB\" -ln \"u_IsEnvMapInsRGB\" -nn \"sRGB environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Name\" -ln \"u_IsEnvMapInRGBM_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Type\" -ln \"u_IsEnvMapInRGBM_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInRGBM\" -ln \"u_IsEnvMapInRGBM\" -nn \"RGBM environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Name\" -ln \"u_IsBRDFsSRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Type\" -ln \"u_IsBRDFsSRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBRDFsSRGB\" -ln \"u_IsBRDFsSRGB\" -nn \"sRGB BRDF table?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Name\" -ln \"u_IsBaseColorInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Type\" -ln \"u_IsBaseColorInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBaseColorInsRGB\" -ln \"u_IsBaseColorInsRGB\" -nn \"sRGB basecolor?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\tsetAttr \".vpar\" -type \"stringArray\" 5 \"Position\" \"Normal\" \"Tangent\" \"Binormal\" \"TexCoord0\"  ;\n\tsetAttr \".upar\" -type \"stringArray\" 34 \"u_LightColor\" \"u_LightIntensity\" \"u_LightRotation\" \"u_LightPitch\" \"u_BaseColorTexture\" \"u_BaseColorFactor\" \"u_MetallicTexture\" \"u_MetallicStrength\" \"u_RoughnessTexture\" \"u_RoughnessStrength\" \"u_OcclusionTexture\" \"u_OcclusionStrength\" \"u_NormalTexture\" \"u_NormalScale\" \"u_EmissiveTexture\" \"u_EmissiveColor\" \"u_DiffuseEnvTexture\" \"u_SpecularEnvTexture\" \"u_brdfTexture\" \"u_IsDoubleSided\" \"u_UseMeshTangents\" \"u_RoughnessOffset\" \"u_ScaleDiffBaseMR\" \"u_BurleyFactor\" \"u_ScaleFGDSpec\" \"u_UndoEdgeStretch\" \"u_ScaleIBL_Occl\" \"u_IsEmissiveInsRGB\" \"u_EnvRotationAngle\" \"u_FlipEnvMapZ\" \"u_IsEnvMapInsRGB\" \"u_IsEnvMapInRGBM\" \"u_IsBRDFsSRGB\" \"u_IsBaseColorInsRGB\"  ;\n\tsetAttr \".s\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/shaders/glTF_PBR.ogsfx\";\n\tsetAttr \".t\" -type \"string\" \"Solid\";\n\tsetAttr \".u_LightColor_Name\" -type \"string\" \"u_LightColor\";\n\tsetAttr \".u_LightColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_LightColor\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_LightIntensity_Name\" -type \"string\" \"u_LightIntensity\";\n\tsetAttr \".u_LightIntensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightIntensity\" 1;\n\tsetAttr \".u_LightRotation_Name\" -type \"string\" \"u_LightRotation\";\n\tsetAttr \".u_LightRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightRotation\" 75;\n\tsetAttr \".u_LightPitch_Name\" -type \"string\" \"u_LightPitch\";\n\tsetAttr \".u_LightPitch_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightPitch\" 40;\n\tsetAttr \".u_BaseColorTexture_Name\" -type \"string\" \"u_BaseColorTexture\";\n\tsetAttr \".u_BaseColorTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_BaseColorTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_BaseColorFactor_Name\" -type \"string\" \"u_BaseColorFactor\";\n\tsetAttr \".u_BaseColorFactor_Type\" -type \"string\" \"color4x1\";\n\tsetAttr \".u_BaseColorFactorRGB\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_BaseColorFactorA\" 1;\n\tsetAttr \".u_MetallicTexture_Name\" -type \"string\" \"u_MetallicTexture\";\n\tsetAttr \".u_MetallicTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_MetallicTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_MetallicStrength_Name\" -type \"string\" \"u_MetallicStrength\";\n\tsetAttr \".u_MetallicStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_MetallicStrength\" 1;\n\tsetAttr \".u_RoughnessTexture_Name\" -type \"string\" \"u_RoughnessTexture\";\n\tsetAttr \".u_RoughnessTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_RoughnessTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_RoughnessStrength_Name\" -type \"string\" \"u_RoughnessStrength\";\n\tsetAttr \".u_RoughnessStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_RoughnessStrength\" 0;\n\tsetAttr \".u_OcclusionTexture_Name\" -type \"string\" \"u_OcclusionTexture\";\n\tsetAttr \".u_OcclusionTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_OcclusionTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_OcclusionStrength_Name\" -type \"string\" \"u_OcclusionStrength\";\n\tsetAttr \".u_OcclusionStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_OcclusionStrength\" 1;\n\tsetAttr \".u_NormalTexture_Name\" -type \"string\" \"u_NormalTexture\";\n\tsetAttr \".u_NormalTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_NormalTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_NormalScale_Name\" -type \"string\" \"u_NormalScale\";\n\tsetAttr \".u_NormalScale_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_NormalScale\" 1;\n\tsetAttr \".u_EmissiveTexture_Name\" -type \"string\" \"u_EmissiveTexture\";\n\tsetAttr \".u_EmissiveTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_EmissiveTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_EmissiveColor_Name\" -type \"string\" \"u_EmissiveColor\";\n\tsetAttr \".u_EmissiveColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_EmissiveColor\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_DiffuseEnvTexture_Name\" -type \"string\" \"u_DiffuseEnvTexture\";\n\tsetAttr \".u_DiffuseEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_DiffuseEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_SpecularEnvTexture_Name\" -type \"string\" \"u_SpecularEnvTexture\";\n\tsetAttr \".u_SpecularEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_SpecularEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_brdfTexture_Name\" -type \"string\" \"u_brdfTexture\";\n\tsetAttr \".u_brdfTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_brdfTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_UseMeshTangents_Name\" -type \"string\" \"u_UseMeshTangents\";\n\tsetAttr \".u_UseMeshTangents_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UseMeshTangents\" yes;\n\tsetAttr \".u_ScaleDiffBaseMR_Name\" -type \"string\" \"u_ScaleDiffBaseMR\";\n\tsetAttr \".u_ScaleDiffBaseMR_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleDiffBaseMRXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleDiffBaseMRW\" 0;\n\tsetAttr \".u_ScaleFGDSpec_Name\" -type \"string\" \"u_ScaleFGDSpec\";\n\tsetAttr \".u_ScaleFGDSpec_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleFGDSpecXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleFGDSpecW\" 0;\n\tsetAttr \".u_ScaleIBL_Occl_Name\" -type \"string\" \"u_ScaleIBL_Occl\";\n\tsetAttr \".u_ScaleIBL_Occl_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleIBL_OcclXYZ\" -type \"float3\" 1 1 0 ;\n\tsetAttr \".u_ScaleIBL_OcclW\" 1;\n\tsetAttr \".Position_Name\" -type \"string\" \"Position\";\n\tsetAttr \".Position_Source\" -type \"string\" \"position\";\n\tsetAttr \".Normal_Name\" -type \"string\" \"Normal\";\n\tsetAttr \".Normal_Source\" -type \"string\" \"normal\";\n\tsetAttr \".Tangent_Name\" -type \"string\" \"Tangent\";\n\tsetAttr \".Tangent_Source\" -type \"string\" \"tangent:map1\";\n\tsetAttr \".Binormal_Name\" -type \"string\" \"Binormal\";\n\tsetAttr \".Binormal_Source\" -type \"string\" \"binormal:map1\";\n\tsetAttr \".TexCoord0_Name\" -type \"string\" \"TexCoord0\";\n\tsetAttr \".TexCoord0_Source\" -type \"string\" \"uv:map1\";\n\tsetAttr \".u_IsDoubleSided_Name\" -type \"string\" \"u_IsDoubleSided\";\n\tsetAttr \".u_IsDoubleSided_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsDoubleSided\" no;\n\tsetAttr \".u_RoughnessOffset_Name\" -type \"string\" \"u_RoughnessOffset\";\n\tsetAttr \".u_RoughnessOffset_Type\" -type \"string\" \"int\";\n\tsetAttr \".u_RoughnessOffset\" 0;\n\tsetAttr \".u_BurleyFactor_Name\" -type \"string\" \"u_BurleyFactor\";\n\tsetAttr \".u_BurleyFactor_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_BurleyFactor\" 0;\n\tsetAttr \".u_UndoEdgeStretch_Name\" -type \"string\" \"u_UndoEdgeStretch\";\n\tsetAttr \".u_UndoEdgeStretch_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UndoEdgeStretch\" no;\n\tsetAttr \".u_IsEmissiveInsRGB_Name\" -type \"string\" \"u_IsEmissiveInsRGB\";\n\tsetAttr \".u_IsEmissiveInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEmissiveInsRGB\" yes;\n\tsetAttr \".u_EnvRotationAngle_Name\" -type \"string\" \"u_EnvRotationAngle\";\n\tsetAttr \".u_EnvRotationAngle_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_EnvRotationAngle\" 0;\n\tsetAttr \".u_FlipEnvMapZ_Name\" -type \"string\" \"u_FlipEnvMapZ\";\n\tsetAttr \".u_FlipEnvMapZ_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_FlipEnvMapZ\" yes;\n\tsetAttr \".u_IsEnvMapInsRGB_Name\" -type \"string\" \"u_IsEnvMapInsRGB\";\n\tsetAttr \".u_IsEnvMapInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInsRGB\" no;\n\tsetAttr \".u_IsEnvMapInRGBM_Name\" -type \"string\" \"u_IsEnvMapInRGBM\";\n\tsetAttr \".u_IsEnvMapInRGBM_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInRGBM\" no;\n\tsetAttr \".u_IsBRDFsSRGB_Name\" -type \"string\" \"u_IsBRDFsSRGB\";\n\tsetAttr \".u_IsBRDFsSRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBRDFsSRGB\" no;\n\tsetAttr \".u_IsBaseColorInsRGB_Name\" -type \"string\" \"u_IsBaseColorInsRGB\";\n\tsetAttr \".u_IsBaseColorInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBaseColorInsRGB\" yes;\ncreateNode shadingEngine -n \"GLSLShader1SG\";\n\trename -uid \"4EE0CA71-4E0B-7B0C-254F-6095031017AA\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"706C3E98-416F-F2DF-2500-1A92DBD78272\";\ncreateNode file -n \"normal_map_file\";\n\trename -uid \"5ABB11F6-4D95-8A68-EBDF-2193D9A2BCB4\";\n\tsetAttr \".ail\" yes;\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//images/cube_flat-on-soft_normal.png\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture1\";\n\trename -uid \"5B9C4307-43A2-503B-5D24-1CB25BA4B9D8\";\ncreateNode file -n \"file2\";\n\trename -uid \"982B60E8-49EF-950C-22D8-46B961EC0928\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_diffuse_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture2\";\n\trename -uid \"2AB7DD0A-4CA8-E0E9-ED17-60B9E2F22150\";\ncreateNode file -n \"file3\";\n\trename -uid \"6C3DF0C1-4D69-E81A-D4AA-81877FA5B85F\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_specular_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture3\";\n\trename -uid \"67527172-413A-2B90-71F7-9C8B572E6A03\";\ncreateNode file -n \"file4\";\n\trename -uid \"33523EDA-497D-CAB9-C036-DB995B883EA2\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/brdfLUT.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture4\";\n\trename -uid \"F68A3134-4D04-8867-6E4C-DD981877D25B\";\ncreateNode bump2d -n \"bump2d1\";\n\trename -uid \"0E43EF60-49DF-DBF7-CE83-8AA3C49273DA\";\n\tsetAttr \".bi\" 1;\n\tsetAttr \".vc1\" -type \"float3\" 0 5.9999998e-05 0 ;\n\tsetAttr \".vc2\" -type \"float3\" 9.9999997e-06 9.9999997e-06 0 ;\ncreateNode GLSLShader -n \"PBR_Shader_no_normal_map\";\n\trename -uid \"94301892-47FC-D9FE-9EB9-2289BD4C7887\";\n\taddAttr -ci true -sn \"Light_0_use_implicit_lighting\" -ln \"Light_0_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_0_connected_light\" -ln \"Light_0_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_1_use_implicit_lighting\" -ln \"Light_1_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_1_connected_light\" -ln \"Light_1_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_2_use_implicit_lighting\" -ln \"Light_2_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_2_connected_light\" -ln \"Light_2_connected_light\" \n\t\t-at \"message\";\n\taddAttr -s false -is true -ci true -k true -sn \"te\" -ln \"techniqueEnum\" -nn \"Technique\" \n\t\t-min 0 -max 1 -en \"Solid:Transparent\" -at \"enum\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Name\" -ln \"u_LightColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Type\" -ln \"u_LightColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_LightColor\" -ln \"u_LightColor\" -nn \"Light Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_LightColorR\" -ln \"u_LightColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorG\" -ln \"u_LightColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorB\" -ln \"u_LightColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Name\" -ln \"u_LightIntensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Type\" -ln \"u_LightIntensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightIntensity\" -ln \"u_LightIntensity\" -nn \"Light Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 10 -smn 0 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Name\" -ln \"u_LightRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Type\" -ln \"u_LightRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightRotation\" -ln \"u_LightRotation\" -nn \"Light rotation (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 75 -min 0 -max 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Name\" -ln \"u_LightPitch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Type\" -ln \"u_LightPitch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightPitch\" -ln \"u_LightPitch\" -nn \"Light pitch (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 40 -min -90 -max 90 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Name\" -ln \"u_BaseColorTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Type\" -ln \"u_BaseColorTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorTexture\" -ln \"u_BaseColorTexture\" \n\t\t-nn \"Base color map (sRGB)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureR\" -ln \"u_BaseColorTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureG\" -ln \"u_BaseColorTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureB\" -ln \"u_BaseColorTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Name\" -ln \"u_BaseColorFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Type\" -ln \"u_BaseColorFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactor\" -ln \"u_BaseColorFactor\" -nn \"Base color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorFactorRGB\" -ln \"u_BaseColorFactorRGB\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_BaseColorFactor\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorR\" -ln \"u_BaseColorFactorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorG\" -ln \"u_BaseColorFactorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorB\" -ln \"u_BaseColorFactorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorA\" -ln \"u_BaseColorFactorA\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactor\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Name\" -ln \"u_MetallicTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Type\" -ln \"u_MetallicTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_MetallicTexture\" -ln \"u_MetallicTexture\" -nn \"Metallic map (B,LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_MetallicTextureR\" -ln \"u_MetallicTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureG\" -ln \"u_MetallicTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureB\" -ln \"u_MetallicTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Name\" -ln \"u_MetallicStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Type\" -ln \"u_MetallicStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_MetallicStrength\" -ln \"u_MetallicStrength\" -nn \"Metallic strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Name\" -ln \"u_RoughnessTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Type\" -ln \"u_RoughnessTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_RoughnessTexture\" -ln \"u_RoughnessTexture\" \n\t\t-nn \"Roughness map (G,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureR\" -ln \"u_RoughnessTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureG\" -ln \"u_RoughnessTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureB\" -ln \"u_RoughnessTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Name\" -ln \"u_RoughnessStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Type\" -ln \"u_RoughnessStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessStrength\" -ln \"u_RoughnessStrength\" -nn \"Roughness strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Name\" -ln \"u_OcclusionTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Type\" -ln \"u_OcclusionTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_OcclusionTexture\" -ln \"u_OcclusionTexture\" \n\t\t-nn \"Occlusion map (R,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureR\" -ln \"u_OcclusionTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureG\" -ln \"u_OcclusionTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureB\" -ln \"u_OcclusionTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Name\" -ln \"u_OcclusionStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Type\" -ln \"u_OcclusionStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_OcclusionStrength\" -ln \"u_OcclusionStrength\" -nn \"Occlusion strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Name\" -ln \"u_NormalTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Type\" -ln \"u_NormalTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_NormalTexture\" -ln \"u_NormalTexture\" -nn \"Normal map (LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_NormalTextureR\" -ln \"u_NormalTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureG\" -ln \"u_NormalTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureB\" -ln \"u_NormalTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Name\" -ln \"u_NormalScale_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Type\" -ln \"u_NormalScale_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_NormalScale\" -ln \"u_NormalScale\" -nn \"Normal scale\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Name\" -ln \"u_EmissiveTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Type\" -ln \"u_EmissiveTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveTexture\" -ln \"u_EmissiveTexture\" -nn \"Emissive map (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureR\" -ln \"u_EmissiveTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureG\" -ln \"u_EmissiveTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureB\" -ln \"u_EmissiveTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Name\" -ln \"u_EmissiveColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Type\" -ln \"u_EmissiveColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveColor\" -ln \"u_EmissiveColor\" -nn \"Emissive color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveColorR\" -ln \"u_EmissiveColorR\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorG\" -ln \"u_EmissiveColorG\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorB\" -ln \"u_EmissiveColorB\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Name\" -ln \"u_DiffuseEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Type\" -ln \"u_DiffuseEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_DiffuseEnvTexture\" -ln \"u_DiffuseEnvTexture\" \n\t\t-nn \"Diffuse env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureR\" -ln \"u_DiffuseEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureG\" -ln \"u_DiffuseEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureB\" -ln \"u_DiffuseEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Name\" -ln \"u_SpecularEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Type\" -ln \"u_SpecularEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_SpecularEnvTexture\" -ln \"u_SpecularEnvTexture\" \n\t\t-nn \"Specular env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureR\" -ln \"u_SpecularEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureG\" -ln \"u_SpecularEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureB\" -ln \"u_SpecularEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Name\" -ln \"u_brdfTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Type\" -ln \"u_brdfTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_brdfTexture\" -ln \"u_brdfTexture\" -nn \"BRDF LUT (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_brdfTextureR\" -ln \"u_brdfTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureG\" -ln \"u_brdfTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureB\" -ln \"u_brdfTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Name\" -ln \"u_UseMeshTangents_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Type\" -ln \"u_UseMeshTangents_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UseMeshTangents\" -ln \"u_UseMeshTangents\" -nn \"Use mesh tangents?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Name\" -ln \"u_ScaleDiffBaseMR_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Type\" -ln \"u_ScaleDiffBaseMR_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMR\" -ln \"u_ScaleDiffBaseMR\" -nn \"Scale Diff Base MR\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRXYZ\" -ln \"u_ScaleDiffBaseMRXYZ\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_ScaleDiffBaseMR\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRX\" -ln \"u_ScaleDiffBaseMRX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRY\" -ln \"u_ScaleDiffBaseMRY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRZ\" -ln \"u_ScaleDiffBaseMRZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRW\" -ln \"u_ScaleDiffBaseMRW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMR\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Name\" -ln \"u_ScaleFGDSpec_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Type\" -ln \"u_ScaleFGDSpec_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpec\" -ln \"u_ScaleFGDSpec\" -nn \"Scale FGD Spec\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecXYZ\" -ln \"u_ScaleFGDSpecXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleFGDSpec\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecX\" -ln \"u_ScaleFGDSpecX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecY\" -ln \"u_ScaleFGDSpecY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecZ\" -ln \"u_ScaleFGDSpecZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecW\" -ln \"u_ScaleFGDSpecW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpec\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Name\" -ln \"u_ScaleIBL_Occl_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Type\" -ln \"u_ScaleIBL_Occl_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_Occl\" -ln \"u_ScaleIBL_Occl\" -nn \"Scale IBL AO(w)\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclXYZ\" -ln \"u_ScaleIBL_OcclXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleIBL_Occl\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclX\" -ln \"u_ScaleIBL_OcclX\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclY\" -ln \"u_ScaleIBL_OcclY\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclZ\" -ln \"u_ScaleIBL_OcclZ\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclW\" -ln \"u_ScaleIBL_OcclW\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_Occl\";\n\taddAttr -ci true -sn \"Position\" -ln \"Position\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Position_Name\" -ln \"Position_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"Position_Source\" -ln \"Position_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -sn \"Position_DefaultTexture\" -ln \"Position_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Position\";\n\taddAttr -ci true -sn \"Normal\" -ln \"Normal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Normal_Name\" -ln \"Normal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Source\" -ln \"Normal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -sn \"Normal_DefaultTexture\" -ln \"Normal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Normal\";\n\taddAttr -ci true -sn \"Tangent\" -ln \"Tangent\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Tangent_Name\" -ln \"Tangent_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"Tangent_Source\" -ln \"Tangent_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -sn \"Tangent_DefaultTexture\" -ln \"Tangent_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Tangent\";\n\taddAttr -ci true -sn \"Binormal\" -ln \"Binormal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Binormal_Name\" -ln \"Binormal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -h true -sn \"Binormal_Source\" -ln \"Binormal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -sn \"Binormal_DefaultTexture\" -ln \"Binormal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Binormal\";\n\taddAttr -ci true -sn \"TexCoord0\" -ln \"TexCoord0\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Name\" -ln \"TexCoord0_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Source\" -ln \"TexCoord0_Source\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -sn \"TexCoord0_DefaultTexture\" -ln \"TexCoord0_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Name\" -ln \"u_IsDoubleSided_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Type\" -ln \"u_IsDoubleSided_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsDoubleSided\" -ln \"u_IsDoubleSided\" -nn \"Double sided material?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Name\" -ln \"u_RoughnessOffset_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Type\" -ln \"u_RoughnessOffset_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessOffset\" -ln \"u_RoughnessOffset\" -nn \"Roughness offset\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 12 -smn 0 -smx 12 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Name\" -ln \"u_BurleyFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Type\" -ln \"u_BurleyFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BurleyFactor\" -ln \"u_BurleyFactor\" -nn \"Burley factor\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Name\" -ln \"u_UndoEdgeStretch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Type\" -ln \"u_UndoEdgeStretch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UndoEdgeStretch\" -ln \"u_UndoEdgeStretch\" -nn \"Undo edge stretch?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Name\" -ln \"u_IsEmissiveInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Type\" -ln \"u_IsEmissiveInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEmissiveInsRGB\" -ln \"u_IsEmissiveInsRGB\" -nn \"sRGB emissive?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Name\" -ln \"u_EnvRotationAngle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Type\" -ln \"u_EnvRotationAngle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_EnvRotationAngle\" -ln \"u_EnvRotationAngle\" -nn \"Environment Rotation\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Name\" -ln \"u_FlipEnvMapZ_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Type\" -ln \"u_FlipEnvMapZ_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_FlipEnvMapZ\" -ln \"u_FlipEnvMapZ\" -nn \"Flip environment Z?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Name\" -ln \"u_IsEnvMapInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Type\" -ln \"u_IsEnvMapInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInsRGB\" -ln \"u_IsEnvMapInsRGB\" -nn \"sRGB environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Name\" -ln \"u_IsEnvMapInRGBM_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Type\" -ln \"u_IsEnvMapInRGBM_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInRGBM\" -ln \"u_IsEnvMapInRGBM\" -nn \"RGBM environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Name\" -ln \"u_IsBRDFsSRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Type\" -ln \"u_IsBRDFsSRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBRDFsSRGB\" -ln \"u_IsBRDFsSRGB\" -nn \"sRGB BRDF table?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Name\" -ln \"u_IsBaseColorInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Type\" -ln \"u_IsBaseColorInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBaseColorInsRGB\" -ln \"u_IsBaseColorInsRGB\" -nn \"sRGB basecolor?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\tsetAttr \".vpar\" -type \"stringArray\" 5 \"Position\" \"Normal\" \"Tangent\" \"Binormal\" \"TexCoord0\"  ;\n\tsetAttr \".upar\" -type \"stringArray\" 34 \"u_LightColor\" \"u_LightIntensity\" \"u_LightRotation\" \"u_LightPitch\" \"u_BaseColorTexture\" \"u_BaseColorFactor\" \"u_MetallicTexture\" \"u_MetallicStrength\" \"u_RoughnessTexture\" \"u_RoughnessStrength\" \"u_OcclusionTexture\" \"u_OcclusionStrength\" \"u_NormalTexture\" \"u_NormalScale\" \"u_EmissiveTexture\" \"u_EmissiveColor\" \"u_DiffuseEnvTexture\" \"u_SpecularEnvTexture\" \"u_brdfTexture\" \"u_IsDoubleSided\" \"u_UseMeshTangents\" \"u_RoughnessOffset\" \"u_ScaleDiffBaseMR\" \"u_BurleyFactor\" \"u_ScaleFGDSpec\" \"u_UndoEdgeStretch\" \"u_ScaleIBL_Occl\" \"u_IsEmissiveInsRGB\" \"u_EnvRotationAngle\" \"u_FlipEnvMapZ\" \"u_IsEnvMapInsRGB\" \"u_IsEnvMapInRGBM\" \"u_IsBRDFsSRGB\" \"u_IsBaseColorInsRGB\"  ;\n\tsetAttr \".s\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/shaders/glTF_PBR.ogsfx\";\n\tsetAttr \".t\" -type \"string\" \"Solid\";\n\tsetAttr \".u_LightColor_Name\" -type \"string\" \"u_LightColor\";\n\tsetAttr \".u_LightColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_LightColor\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_LightIntensity_Name\" -type \"string\" \"u_LightIntensity\";\n\tsetAttr \".u_LightIntensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightIntensity\" 1;\n\tsetAttr \".u_LightRotation_Name\" -type \"string\" \"u_LightRotation\";\n\tsetAttr \".u_LightRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightRotation\" 75;\n\tsetAttr \".u_LightPitch_Name\" -type \"string\" \"u_LightPitch\";\n\tsetAttr \".u_LightPitch_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightPitch\" 40;\n\tsetAttr \".u_BaseColorTexture_Name\" -type \"string\" \"u_BaseColorTexture\";\n\tsetAttr \".u_BaseColorTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_BaseColorTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_BaseColorFactor_Name\" -type \"string\" \"u_BaseColorFactor\";\n\tsetAttr \".u_BaseColorFactor_Type\" -type \"string\" \"color4x1\";\n\tsetAttr \".u_BaseColorFactorRGB\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_BaseColorFactorA\" 1;\n\tsetAttr \".u_MetallicTexture_Name\" -type \"string\" \"u_MetallicTexture\";\n\tsetAttr \".u_MetallicTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_MetallicTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_MetallicStrength_Name\" -type \"string\" \"u_MetallicStrength\";\n\tsetAttr \".u_MetallicStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_MetallicStrength\" 1;\n\tsetAttr \".u_RoughnessTexture_Name\" -type \"string\" \"u_RoughnessTexture\";\n\tsetAttr \".u_RoughnessTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_RoughnessTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_RoughnessStrength_Name\" -type \"string\" \"u_RoughnessStrength\";\n\tsetAttr \".u_RoughnessStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_RoughnessStrength\" 0;\n\tsetAttr \".u_OcclusionTexture_Name\" -type \"string\" \"u_OcclusionTexture\";\n\tsetAttr \".u_OcclusionTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_OcclusionTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_OcclusionStrength_Name\" -type \"string\" \"u_OcclusionStrength\";\n\tsetAttr \".u_OcclusionStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_OcclusionStrength\" 1;\n\tsetAttr \".u_NormalTexture_Name\" -type \"string\" \"u_NormalTexture\";\n\tsetAttr \".u_NormalTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_NormalTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_NormalScale_Name\" -type \"string\" \"u_NormalScale\";\n\tsetAttr \".u_NormalScale_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_NormalScale\" 1;\n\tsetAttr \".u_EmissiveTexture_Name\" -type \"string\" \"u_EmissiveTexture\";\n\tsetAttr \".u_EmissiveTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_EmissiveTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_EmissiveColor_Name\" -type \"string\" \"u_EmissiveColor\";\n\tsetAttr \".u_EmissiveColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_EmissiveColor\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_DiffuseEnvTexture_Name\" -type \"string\" \"u_DiffuseEnvTexture\";\n\tsetAttr \".u_DiffuseEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_DiffuseEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_SpecularEnvTexture_Name\" -type \"string\" \"u_SpecularEnvTexture\";\n\tsetAttr \".u_SpecularEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_SpecularEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_brdfTexture_Name\" -type \"string\" \"u_brdfTexture\";\n\tsetAttr \".u_brdfTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_brdfTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_UseMeshTangents_Name\" -type \"string\" \"u_UseMeshTangents\";\n\tsetAttr \".u_UseMeshTangents_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UseMeshTangents\" no;\n\tsetAttr \".u_ScaleDiffBaseMR_Name\" -type \"string\" \"u_ScaleDiffBaseMR\";\n\tsetAttr \".u_ScaleDiffBaseMR_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleDiffBaseMRXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleDiffBaseMRW\" 0;\n\tsetAttr \".u_ScaleFGDSpec_Name\" -type \"string\" \"u_ScaleFGDSpec\";\n\tsetAttr \".u_ScaleFGDSpec_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleFGDSpecXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleFGDSpecW\" 0;\n\tsetAttr \".u_ScaleIBL_Occl_Name\" -type \"string\" \"u_ScaleIBL_Occl\";\n\tsetAttr \".u_ScaleIBL_Occl_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleIBL_OcclXYZ\" -type \"float3\" 1 1 0 ;\n\tsetAttr \".u_ScaleIBL_OcclW\" 1;\n\tsetAttr \".Position_Name\" -type \"string\" \"Position\";\n\tsetAttr \".Position_Source\" -type \"string\" \"position\";\n\tsetAttr \".Normal_Name\" -type \"string\" \"Normal\";\n\tsetAttr \".Normal_Source\" -type \"string\" \"normal\";\n\tsetAttr \".Tangent_Name\" -type \"string\" \"Tangent\";\n\tsetAttr \".Tangent_Source\" -type \"string\" \"tangent:map1\";\n\tsetAttr \".Binormal_Name\" -type \"string\" \"Binormal\";\n\tsetAttr \".Binormal_Source\" -type \"string\" \"binormal:map1\";\n\tsetAttr \".TexCoord0_Name\" -type \"string\" \"TexCoord0\";\n\tsetAttr \".TexCoord0_Source\" -type \"string\" \"uv:map1\";\n\tsetAttr \".u_IsDoubleSided_Name\" -type \"string\" \"u_IsDoubleSided\";\n\tsetAttr \".u_IsDoubleSided_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsDoubleSided\" no;\n\tsetAttr \".u_RoughnessOffset_Name\" -type \"string\" \"u_RoughnessOffset\";\n\tsetAttr \".u_RoughnessOffset_Type\" -type \"string\" \"int\";\n\tsetAttr \".u_RoughnessOffset\" 0;\n\tsetAttr \".u_BurleyFactor_Name\" -type \"string\" \"u_BurleyFactor\";\n\tsetAttr \".u_BurleyFactor_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_BurleyFactor\" 0;\n\tsetAttr \".u_UndoEdgeStretch_Name\" -type \"string\" \"u_UndoEdgeStretch\";\n\tsetAttr \".u_UndoEdgeStretch_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UndoEdgeStretch\" no;\n\tsetAttr \".u_IsEmissiveInsRGB_Name\" -type \"string\" \"u_IsEmissiveInsRGB\";\n\tsetAttr \".u_IsEmissiveInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEmissiveInsRGB\" yes;\n\tsetAttr \".u_EnvRotationAngle_Name\" -type \"string\" \"u_EnvRotationAngle\";\n\tsetAttr \".u_EnvRotationAngle_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_EnvRotationAngle\" 0;\n\tsetAttr \".u_FlipEnvMapZ_Name\" -type \"string\" \"u_FlipEnvMapZ\";\n\tsetAttr \".u_FlipEnvMapZ_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_FlipEnvMapZ\" yes;\n\tsetAttr \".u_IsEnvMapInsRGB_Name\" -type \"string\" \"u_IsEnvMapInsRGB\";\n\tsetAttr \".u_IsEnvMapInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInsRGB\" no;\n\tsetAttr \".u_IsEnvMapInRGBM_Name\" -type \"string\" \"u_IsEnvMapInRGBM\";\n\tsetAttr \".u_IsEnvMapInRGBM_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInRGBM\" no;\n\tsetAttr \".u_IsBRDFsSRGB_Name\" -type \"string\" \"u_IsBRDFsSRGB\";\n\tsetAttr \".u_IsBRDFsSRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBRDFsSRGB\" no;\n\tsetAttr \".u_IsBaseColorInsRGB_Name\" -type \"string\" \"u_IsBaseColorInsRGB\";\n\tsetAttr \".u_IsBaseColorInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBaseColorInsRGB\" yes;\ncreateNode shadingEngine -n \"GLSLShader2SG\";\n\trename -uid \"F6CBDDE3-43A1-B911-B13D-BAB99FED35DC\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo3\";\n\trename -uid \"4C9D9C12-4E25-EAD6-EACF-F582748844C7\";\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"95CE6C44-4E28-FFFA-77BA-BA8A03B7C49D\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 1\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 1 -size 10 -divisions 4 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"08561F58-4853-A05E-496B-949BFCA8EE79\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode phong -n \"Material\";\n\trename -uid \"A3225620-426C-0834-4BF4-06A429CEB74C\";\n\tsetAttr \".c\" -type \"float3\" 0.80000001 0.80000001 0.80000001 ;\n\tsetAttr \".sc\" -type \"float3\" 0.25 0.25 0.25 ;\n\tsetAttr \".rfl\" 0;\n\tsetAttr \".rc\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".cp\" 9.6078433990478516;\ncreateNode shadingEngine -n \"CubeSG\";\n\trename -uid \"00FB02CC-4DA8-0AAC-A0F0-A29259A97C4E\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo4\";\n\trename -uid \"71748155-4101-A371-7D57-D38F82638587\";\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"776AA4A6-4247-D1FA-12B2-2DA815FEABD9\";\n\tsetAttr \".c\" -type \"float3\" 0.51632047 0.51632047 0.51632047 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"448C0155-40A6-A2A4-3247-30A316E0F3AE\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo5\";\n\trename -uid \"E5C82F35-416A-E38A-7E9F-328C08C6EA4B\";\ncreateNode phong -n \"GLSL_PBR_Shader1\";\n\trename -uid \"695840ED-42E2-827F-2930-0DA54F0C0E58\";\n\tsetAttr \".dc\" 1;\n\tsetAttr \".ambc\" -type \"float3\" 0.40000001 0.40000001 0.40000001 ;\n\tsetAttr \".sc\" -type \"float3\" 0.30000001 0.30000001 0.30000001 ;\n\tsetAttr \".rfl\" 0;\ncreateNode shadingEngine -n \"SoftCubeSG\";\n\trename -uid \"60048E74-4C30-E2E9-9DBB-36B4DCFBE56C\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo6\";\n\trename -uid \"9F38497B-441C-EC7D-BA75-82AAAE52D677\";\ncreateNode skinCluster -n \"skinCluster1\";\n\trename -uid \"E13215D9-4254-B433-C5F3-C788017F3A98\";\n\tsetAttr -s 8 \".wl\";\n\tsetAttr \".wl[0:7].w\"\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1;\n\tsetAttr \".pm[0]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".dpf[0]\"  4;\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".ucm\" yes;\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"F54D644C-4F0A-CAED-B9C0-CDB880CED095\";\ncreateNode objectSet -n \"skinCluster1Set\";\n\trename -uid \"523B2503-4E19-7EF4-03DD-ED8FE00D506B\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster1GroupId\";\n\trename -uid \"686A9291-4838-6D08-99B5-479E7CABC25B\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster1GroupParts\";\n\trename -uid \"77FD0A2D-4060-65F0-E1F6-9FA153CB00C9\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"71A46D69-44D5-E1B8-CDC0-4D883CC6B48F\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"322E1589-4C76-EA71-8967-9EB7951B9EDA\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"34FDE041-446E-36E3-3995-10919C629335\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode dagPose -n \"bindPose1\";\n\trename -uid \"6600796C-4823-8652-47BD-2DADF3B4AD8B\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".bp\" yes;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"B663DDA4-4D43-D00E-59A7-D49FD6F18540\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 0;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 8 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 10 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderUtilityList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 5 \".u\";\nselect -ne :defaultRenderingList1;\nselect -ne :defaultTextureList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 4 \".tx\";\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"skinCluster1GroupId.id\" \"SoftCubeShape.iog.og[0].gid\";\nconnectAttr \"skinCluster1Set.mwc\" \"SoftCubeShape.iog.og[0].gco\";\nconnectAttr \"groupId2.id\" \"SoftCubeShape.iog.og[1].gid\";\nconnectAttr \"tweakSet1.mwc\" \"SoftCubeShape.iog.og[1].gco\";\nconnectAttr \"skinCluster1.og[0]\" \"SoftCubeShape.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"SoftCubeShape.twl\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"surfaceSamplingEnvelopeShaderSG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader1SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"CubeSG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"SoftCubeSG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"surfaceSamplingEnvelopeShaderSG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader1SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"CubeSG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"SoftCubeSG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"surfaceSamplingEnvelopeShader.oc\" \"surfaceSamplingEnvelopeShaderSG.ss\"\n\t\t;\nconnectAttr \"surfaceSamplingEnvelopeShaderSG.msg\" \"materialInfo1.sg\";\nconnectAttr \"surfaceSamplingEnvelopeShader.msg\" \"materialInfo1.m\";\nconnectAttr \"normal_map_file.oc\" \"GLSL_PBR_Shader.u_NormalTexture\";\nconnectAttr \"file2.oc\" \"GLSL_PBR_Shader.u_DiffuseEnvTexture\";\nconnectAttr \"file3.oc\" \"GLSL_PBR_Shader.u_SpecularEnvTexture\";\nconnectAttr \"file4.oc\" \"GLSL_PBR_Shader.u_brdfTexture\";\nconnectAttr \"GLSL_PBR_Shader.oc\" \"GLSLShader1SG.ss\";\nconnectAttr \"SoftCubeShape.iog\" \"GLSLShader1SG.dsm\" -na;\nconnectAttr \"GLSLShader1SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"GLSL_PBR_Shader.msg\" \"materialInfo2.m\";\nconnectAttr \"GLSL_PBR_Shader.msg\" \"materialInfo2.t\" -na;\nconnectAttr \":defaultColorMgtGlobals.cme\" \"normal_map_file.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"normal_map_file.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"normal_map_file.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"normal_map_file.ws\";\nconnectAttr \"place2dTexture1.c\" \"normal_map_file.c\";\nconnectAttr \"place2dTexture1.tf\" \"normal_map_file.tf\";\nconnectAttr \"place2dTexture1.rf\" \"normal_map_file.rf\";\nconnectAttr \"place2dTexture1.mu\" \"normal_map_file.mu\";\nconnectAttr \"place2dTexture1.mv\" \"normal_map_file.mv\";\nconnectAttr \"place2dTexture1.s\" \"normal_map_file.s\";\nconnectAttr \"place2dTexture1.wu\" \"normal_map_file.wu\";\nconnectAttr \"place2dTexture1.wv\" \"normal_map_file.wv\";\nconnectAttr \"place2dTexture1.re\" \"normal_map_file.re\";\nconnectAttr \"place2dTexture1.of\" \"normal_map_file.of\";\nconnectAttr \"place2dTexture1.r\" \"normal_map_file.ro\";\nconnectAttr \"place2dTexture1.n\" \"normal_map_file.n\";\nconnectAttr \"place2dTexture1.vt1\" \"normal_map_file.vt1\";\nconnectAttr \"place2dTexture1.vt2\" \"normal_map_file.vt2\";\nconnectAttr \"place2dTexture1.vt3\" \"normal_map_file.vt3\";\nconnectAttr \"place2dTexture1.vc1\" \"normal_map_file.vc1\";\nconnectAttr \"place2dTexture1.o\" \"normal_map_file.uv\";\nconnectAttr \"place2dTexture1.ofs\" \"normal_map_file.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file2.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file2.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file2.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file2.ws\";\nconnectAttr \"place2dTexture2.c\" \"file2.c\";\nconnectAttr \"place2dTexture2.tf\" \"file2.tf\";\nconnectAttr \"place2dTexture2.rf\" \"file2.rf\";\nconnectAttr \"place2dTexture2.mu\" \"file2.mu\";\nconnectAttr \"place2dTexture2.mv\" \"file2.mv\";\nconnectAttr \"place2dTexture2.s\" \"file2.s\";\nconnectAttr \"place2dTexture2.wu\" \"file2.wu\";\nconnectAttr \"place2dTexture2.wv\" \"file2.wv\";\nconnectAttr \"place2dTexture2.re\" \"file2.re\";\nconnectAttr \"place2dTexture2.of\" \"file2.of\";\nconnectAttr \"place2dTexture2.r\" \"file2.ro\";\nconnectAttr \"place2dTexture2.n\" \"file2.n\";\nconnectAttr \"place2dTexture2.vt1\" \"file2.vt1\";\nconnectAttr \"place2dTexture2.vt2\" \"file2.vt2\";\nconnectAttr \"place2dTexture2.vt3\" \"file2.vt3\";\nconnectAttr \"place2dTexture2.vc1\" \"file2.vc1\";\nconnectAttr \"place2dTexture2.o\" \"file2.uv\";\nconnectAttr \"place2dTexture2.ofs\" \"file2.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file3.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file3.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file3.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file3.ws\";\nconnectAttr \"place2dTexture3.c\" \"file3.c\";\nconnectAttr \"place2dTexture3.tf\" \"file3.tf\";\nconnectAttr \"place2dTexture3.rf\" \"file3.rf\";\nconnectAttr \"place2dTexture3.mu\" \"file3.mu\";\nconnectAttr \"place2dTexture3.mv\" \"file3.mv\";\nconnectAttr \"place2dTexture3.s\" \"file3.s\";\nconnectAttr \"place2dTexture3.wu\" \"file3.wu\";\nconnectAttr \"place2dTexture3.wv\" \"file3.wv\";\nconnectAttr \"place2dTexture3.re\" \"file3.re\";\nconnectAttr \"place2dTexture3.of\" \"file3.of\";\nconnectAttr \"place2dTexture3.r\" \"file3.ro\";\nconnectAttr \"place2dTexture3.n\" \"file3.n\";\nconnectAttr \"place2dTexture3.vt1\" \"file3.vt1\";\nconnectAttr \"place2dTexture3.vt2\" \"file3.vt2\";\nconnectAttr \"place2dTexture3.vt3\" \"file3.vt3\";\nconnectAttr \"place2dTexture3.vc1\" \"file3.vc1\";\nconnectAttr \"place2dTexture3.o\" \"file3.uv\";\nconnectAttr \"place2dTexture3.ofs\" \"file3.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file4.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file4.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file4.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file4.ws\";\nconnectAttr \"place2dTexture4.c\" \"file4.c\";\nconnectAttr \"place2dTexture4.tf\" \"file4.tf\";\nconnectAttr \"place2dTexture4.rf\" \"file4.rf\";\nconnectAttr \"place2dTexture4.mu\" \"file4.mu\";\nconnectAttr \"place2dTexture4.mv\" \"file4.mv\";\nconnectAttr \"place2dTexture4.s\" \"file4.s\";\nconnectAttr \"place2dTexture4.wu\" \"file4.wu\";\nconnectAttr \"place2dTexture4.wv\" \"file4.wv\";\nconnectAttr \"place2dTexture4.re\" \"file4.re\";\nconnectAttr \"place2dTexture4.of\" \"file4.of\";\nconnectAttr \"place2dTexture4.r\" \"file4.ro\";\nconnectAttr \"place2dTexture4.n\" \"file4.n\";\nconnectAttr \"place2dTexture4.vt1\" \"file4.vt1\";\nconnectAttr \"place2dTexture4.vt2\" \"file4.vt2\";\nconnectAttr \"place2dTexture4.vt3\" \"file4.vt3\";\nconnectAttr \"place2dTexture4.vc1\" \"file4.vc1\";\nconnectAttr \"place2dTexture4.o\" \"file4.uv\";\nconnectAttr \"place2dTexture4.ofs\" \"file4.fs\";\nconnectAttr \"normal_map_file.oa\" \"bump2d1.bv\";\nconnectAttr \"file2.oc\" \"PBR_Shader_no_normal_map.u_DiffuseEnvTexture\";\nconnectAttr \"file3.oc\" \"PBR_Shader_no_normal_map.u_SpecularEnvTexture\";\nconnectAttr \"file4.oc\" \"PBR_Shader_no_normal_map.u_brdfTexture\";\nconnectAttr \"PBR_Shader_no_normal_map.oc\" \"GLSLShader2SG.ss\";\nconnectAttr \"GLSLShader2SG.msg\" \"materialInfo3.sg\";\nconnectAttr \"PBR_Shader_no_normal_map.msg\" \"materialInfo3.m\";\nconnectAttr \"Material.oc\" \"CubeSG.ss\";\nconnectAttr \"CubeSG.msg\" \"materialInfo4.sg\";\nconnectAttr \"Material.msg\" \"materialInfo4.m\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"lambert2SG.msg\" \"materialInfo5.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo5.m\";\nconnectAttr \"GLSL_PBR_Shader1.oc\" \"SoftCubeSG.ss\";\nconnectAttr \"SoftCubeSG.msg\" \"materialInfo6.sg\";\nconnectAttr \"GLSL_PBR_Shader1.msg\" \"materialInfo6.m\";\nconnectAttr \"skinCluster1GroupParts.og\" \"skinCluster1.ip[0].ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1.ip[0].gi\";\nconnectAttr \"bindPose1.msg\" \"skinCluster1.bp\";\nconnectAttr \"joint1.wm\" \"skinCluster1.ma[0]\";\nconnectAttr \"joint1.liw\" \"skinCluster1.lw[0]\";\nconnectAttr \"joint1.obcc\" \"skinCluster1.ifcl[0]\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"skinCluster1GroupId.msg\" \"skinCluster1Set.gn\" -na;\nconnectAttr \"SoftCubeShape.iog.og[0]\" \"skinCluster1Set.dsm\" -na;\nconnectAttr \"skinCluster1.msg\" \"skinCluster1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"skinCluster1GroupParts.ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"SoftCubeShape.iog.og[1]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"SoftCubeShapeOrig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"joint1.msg\" \"bindPose1.m[0]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[0]\";\nconnectAttr \"joint1.bps\" \"bindPose1.wm[0]\";\nconnectAttr \"surfaceSamplingEnvelopeShaderSG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader1SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"CubeSG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"SoftCubeSG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"surfaceSamplingEnvelopeShader.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"GLSL_PBR_Shader.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"PBR_Shader_no_normal_map.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"Material.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"GLSL_PBR_Shader1.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"place2dTexture1.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture2.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture3.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture4.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"bump2d1.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"normal_map_file.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file2.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file3.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file4.msg\" \":defaultTextureList1.tx\" -na;\n// End of CubeNormalBakingRigTest.ma\n"
  },
  {
    "path": "maya/scenes/skin/CubeNormalBakingRigTestPhong.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: CubeNormalBakingRigTestPhong.ma\n//Last modified: Sun, Feb 03, 2019 12:02:03 PM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\nrequires -nodeType \"GLSLShader\" \"glslShader\" \"1.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"1CE062EA-477A-B7B8-D645-5596AADC08E7\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -1.7492466757651712 1.8607722488735803 2.222896015578423 ;\n\tsetAttr \".r\" -type \"double3\" -33.338352671437981 -1118.1999999994637 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"C4935601-467D-7DF4-2F6E-BA8B414677C4\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 3.3857944401459124;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"9A2D5671-4DA0-64AC-9677-34AC14010C2A\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"DFD81D49-4D88-3BEF-AAEF-9A8148720AF3\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"49DC5B17-4BEE-D096-E459-66A8B2E3C6D3\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"78D375D8-4146-766F-36FD-00A495F441DA\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"CA189366-4A50-D1A3-0246-86AF70E583CF\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"3049F159-4EB9-7FD6-030E-C0B8F616FC15\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"SoftCube\";\n\trename -uid \"47CA52D6-44C3-4712-AF9D-2DABBABE3F8B\";\n\taddAttr -is true -ci true -k true -sn \"currentUVSet\" -ln \"currentUVSet\" -dt \"string\";\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\n\tsetAttr -k on \".currentUVSet\" -type \"string\" \"map1\";\ncreateNode mesh -n \"SoftCubeShape\" -p \"SoftCube\";\n\trename -uid \"D87CCB43-42A8-8CD1-94C1-4A92802095F4\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".tsa\" 10;\n\tsetAttr \".tnt\" 10;\n\tsetAttr \".vcs\" 2;\ncreateNode mesh -n \"SoftCubeShapeOrig\" -p \"SoftCube\";\n\trename -uid \"936BD0DA-4637-7202-838E-3B917E184A3D\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 18 \".ed[0:17]\"  0 1 0 1 2 0 2 0 0 1 3 0 3 2 0 3 4 0 4 2 0\n\t\t 3 5 0 5 4 0 5 6 0 6 4 0 5 7 0 7 6 0 7 0 0 0 6 0 7 1 0 7 3 0 0 4 0;\n\tsetAttr -s 36 \".n[0:35]\" -type \"float3\"  -0.5773502 -0.5773502 0.5773502\n\t\t 0.5773502 -0.5773502 0.5773502 -0.5773502 0.5773502 0.5773502 -0.5773502 0.5773502\n\t\t 0.5773502 0.5773502 -0.5773502 0.5773502 0.5773502 0.5773502 0.5773502 -0.5773502\n\t\t 0.5773502 0.5773502 0.5773502 0.5773502 0.5773502 -0.5773502 0.5773502 -0.5773502\n\t\t -0.5773502 0.5773502 -0.5773502 0.5773502 0.5773502 0.5773502 0.5773502 0.5773502\n\t\t -0.5773502 -0.5773502 0.5773502 -0.5773502 0.5773502 0.5773502 -0.5773502 -0.5773502\n\t\t -0.5773502 -0.5773502 -0.5773502 -0.5773502 -0.5773502 0.5773502 0.5773502 -0.5773502\n\t\t 0.5773502 -0.5773502 -0.5773502 -0.5773502 -0.5773502 -0.5773502 0.5773502 -0.5773502\n\t\t -0.5773502 -0.5773502 -0.5773502 0.5773502 -0.5773502 -0.5773502 0.5773502 0.5773502\n\t\t -0.5773502 -0.5773502 0.5773502 -0.5773502 0.5773502 0.5773502 -0.5773502 0.5773502\n\t\t 0.5773502 -0.5773502 -0.5773502 0.5773502 0.5773502 0.5773502 0.5773502 0.5773502\n\t\t 0.5773502 0.5773502 -0.5773502 -0.5773502 0.5773502 0.5773502 -0.5773502 -0.5773502\n\t\t -0.5773502 -0.5773502 -0.5773502 -0.5773502 0.5773502 -0.5773502 0.5773502 -0.5773502\n\t\t -0.5773502 0.5773502 -0.5773502 -0.5773502 -0.5773502 0.5773502 -0.5773502 0.5773502\n\t\t 0.5773502;\n\tsetAttr -s 12 -ch 36 \".fc[0:11]\" -type \"polyFaces\" \n\t\tf 3 0 1 2\n\t\tmu 0 3 0 1 2\n\t\tf 3 -2 3 4\n\t\tmu 0 3 2 1 3\n\t\tf 3 -5 5 6\n\t\tmu 0 3 2 3 4\n\t\tf 3 -6 7 8\n\t\tmu 0 3 4 3 5\n\t\tf 3 -9 9 10\n\t\tmu 0 3 4 5 6\n\t\tf 3 -10 11 12\n\t\tmu 0 3 6 5 7\n\t\tf 3 -13 13 14\n\t\tmu 0 3 6 7 8\n\t\tf 3 -14 15 -1\n\t\tmu 0 3 8 7 9\n\t\tf 3 -16 16 -4\n\t\tmu 0 3 1 10 3\n\t\tf 3 -17 -12 -8\n\t\tmu 0 3 3 10 11\n\t\tf 3 -15 17 -11\n\t\tmu 0 3 12 0 13\n\t\tf 3 -18 -3 -7\n\t\tmu 0 3 13 0 2;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode joint -n \"joint1\";\n\trename -uid \"836A9B7B-4CBB-B597-C788-79812D324F8B\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode place3dTexture -n \"place3dTexture1\";\n\trename -uid \"AFC7B0D6-445A-8C4D-BAD9-AC88565CEE80\";\ncreateNode transform -n \"camera1\";\n\trename -uid \"B5E8F58F-4075-80BD-5EEA-33B0C13AAFF2\";\n\tsetAttr \".t\" -type \"double3\" 2.454187545403256 2.3958497681043749 2.5927696364808575 ;\n\tsetAttr \".r\" -type \"double3\" -35.000000000000149 43.000000000000107 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"914B7DDB-4A8F-5B3A-E7BA-2190A8BB45A3\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 4.4800618584409087;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" -0.0625 -0.125 -0.125 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"8CC40F21-4591-14F4-29A1-369A25D9D9F5\";\n\tsetAttr -s 9 \".lnk\";\n\tsetAttr -s 9 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"BB925965-409F-B346-18D8-0EA4CB95DA59\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"58053ABD-42FE-4702-04EA-52A96FCB5E91\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"99E762EB-45DF-58CD-A8A7-51879DF5ECA9\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"ACC974D7-479D-0951-16D3-EB9D8126CD3A\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"C544494C-49C3-A171-0A2B-7A865BFCAB9E\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"ADB67A05-48B0-5365-362C-C59134C2F4AE\";\n\tsetAttr \".g\" yes;\ncreateNode lambert -n \"surfaceSamplingEnvelopeShader\";\n\trename -uid \"58450C19-4F0D-09C2-972A-29ADA85AD11F\";\n\tsetAttr \".c\" -type \"float3\" 1 0.5 0.5 ;\n\tsetAttr \".it\" -type \"float3\" 0.25 0.25 0.25 ;\ncreateNode shadingEngine -n \"surfaceSamplingEnvelopeShaderSG\";\n\trename -uid \"7527CA41-4E9F-440C-D16D-26AF290A1D19\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"9C849DEA-451D-FC57-AEBD-6E93DAD6036F\";\ncreateNode GLSLShader -n \"GLSL_PBR_Shader\";\n\trename -uid \"A83DA730-4D91-1876-C551-15A14C515CFE\";\n\taddAttr -ci true -sn \"Light_0_use_implicit_lighting\" -ln \"Light_0_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_0_connected_light\" -ln \"Light_0_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_1_use_implicit_lighting\" -ln \"Light_1_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_1_connected_light\" -ln \"Light_1_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_2_use_implicit_lighting\" -ln \"Light_2_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_2_connected_light\" -ln \"Light_2_connected_light\" \n\t\t-at \"message\";\n\taddAttr -s false -is true -ci true -k true -sn \"te\" -ln \"techniqueEnum\" -nn \"Technique\" \n\t\t-min 0 -max 1 -en \"Solid:Transparent\" -at \"enum\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Name\" -ln \"u_LightColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Type\" -ln \"u_LightColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_LightColor\" -ln \"u_LightColor\" -nn \"Light Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_LightColorR\" -ln \"u_LightColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorG\" -ln \"u_LightColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorB\" -ln \"u_LightColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Name\" -ln \"u_LightIntensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Type\" -ln \"u_LightIntensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightIntensity\" -ln \"u_LightIntensity\" -nn \"Light Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 10 -smn 0 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Name\" -ln \"u_LightRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Type\" -ln \"u_LightRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightRotation\" -ln \"u_LightRotation\" -nn \"Light rotation (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 75 -min 0 -max 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Name\" -ln \"u_LightPitch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Type\" -ln \"u_LightPitch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightPitch\" -ln \"u_LightPitch\" -nn \"Light pitch (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 40 -min -90 -max 90 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Name\" -ln \"u_BaseColorTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Type\" -ln \"u_BaseColorTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorTexture\" -ln \"u_BaseColorTexture\" \n\t\t-nn \"Base color map (sRGB)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureR\" -ln \"u_BaseColorTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureG\" -ln \"u_BaseColorTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureB\" -ln \"u_BaseColorTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Name\" -ln \"u_BaseColorFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Type\" -ln \"u_BaseColorFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactor\" -ln \"u_BaseColorFactor\" -nn \"Base color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorFactorRGB\" -ln \"u_BaseColorFactorRGB\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_BaseColorFactor\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorR\" -ln \"u_BaseColorFactorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorG\" -ln \"u_BaseColorFactorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorB\" -ln \"u_BaseColorFactorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorA\" -ln \"u_BaseColorFactorA\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactor\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Name\" -ln \"u_MetallicTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Type\" -ln \"u_MetallicTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_MetallicTexture\" -ln \"u_MetallicTexture\" -nn \"Metallic map (B,LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_MetallicTextureR\" -ln \"u_MetallicTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureG\" -ln \"u_MetallicTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureB\" -ln \"u_MetallicTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Name\" -ln \"u_MetallicStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Type\" -ln \"u_MetallicStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_MetallicStrength\" -ln \"u_MetallicStrength\" -nn \"Metallic strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Name\" -ln \"u_RoughnessTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Type\" -ln \"u_RoughnessTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_RoughnessTexture\" -ln \"u_RoughnessTexture\" \n\t\t-nn \"Roughness map (G,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureR\" -ln \"u_RoughnessTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureG\" -ln \"u_RoughnessTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureB\" -ln \"u_RoughnessTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Name\" -ln \"u_RoughnessStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Type\" -ln \"u_RoughnessStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessStrength\" -ln \"u_RoughnessStrength\" -nn \"Roughness strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Name\" -ln \"u_OcclusionTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Type\" -ln \"u_OcclusionTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_OcclusionTexture\" -ln \"u_OcclusionTexture\" \n\t\t-nn \"Occlusion map (R,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureR\" -ln \"u_OcclusionTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureG\" -ln \"u_OcclusionTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureB\" -ln \"u_OcclusionTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Name\" -ln \"u_OcclusionStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Type\" -ln \"u_OcclusionStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_OcclusionStrength\" -ln \"u_OcclusionStrength\" -nn \"Occlusion strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Name\" -ln \"u_NormalTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Type\" -ln \"u_NormalTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_NormalTexture\" -ln \"u_NormalTexture\" -nn \"Normal map (LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_NormalTextureR\" -ln \"u_NormalTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureG\" -ln \"u_NormalTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureB\" -ln \"u_NormalTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Name\" -ln \"u_NormalScale_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Type\" -ln \"u_NormalScale_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_NormalScale\" -ln \"u_NormalScale\" -nn \"Normal scale\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Name\" -ln \"u_EmissiveTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Type\" -ln \"u_EmissiveTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveTexture\" -ln \"u_EmissiveTexture\" -nn \"Emissive map (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureR\" -ln \"u_EmissiveTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureG\" -ln \"u_EmissiveTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureB\" -ln \"u_EmissiveTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Name\" -ln \"u_EmissiveColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Type\" -ln \"u_EmissiveColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveColor\" -ln \"u_EmissiveColor\" -nn \"Emissive color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveColorR\" -ln \"u_EmissiveColorR\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorG\" -ln \"u_EmissiveColorG\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorB\" -ln \"u_EmissiveColorB\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Name\" -ln \"u_DiffuseEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Type\" -ln \"u_DiffuseEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_DiffuseEnvTexture\" -ln \"u_DiffuseEnvTexture\" \n\t\t-nn \"Diffuse env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureR\" -ln \"u_DiffuseEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureG\" -ln \"u_DiffuseEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureB\" -ln \"u_DiffuseEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Name\" -ln \"u_SpecularEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Type\" -ln \"u_SpecularEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_SpecularEnvTexture\" -ln \"u_SpecularEnvTexture\" \n\t\t-nn \"Specular env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureR\" -ln \"u_SpecularEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureG\" -ln \"u_SpecularEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureB\" -ln \"u_SpecularEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Name\" -ln \"u_brdfTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Type\" -ln \"u_brdfTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_brdfTexture\" -ln \"u_brdfTexture\" -nn \"BRDF LUT (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_brdfTextureR\" -ln \"u_brdfTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureG\" -ln \"u_brdfTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureB\" -ln \"u_brdfTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Name\" -ln \"u_UseMeshTangents_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Type\" -ln \"u_UseMeshTangents_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UseMeshTangents\" -ln \"u_UseMeshTangents\" -nn \"Use mesh tangents?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Name\" -ln \"u_ScaleDiffBaseMR_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Type\" -ln \"u_ScaleDiffBaseMR_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMR\" -ln \"u_ScaleDiffBaseMR\" -nn \"Scale Diff Base MR\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRXYZ\" -ln \"u_ScaleDiffBaseMRXYZ\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_ScaleDiffBaseMR\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRX\" -ln \"u_ScaleDiffBaseMRX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRY\" -ln \"u_ScaleDiffBaseMRY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRZ\" -ln \"u_ScaleDiffBaseMRZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRW\" -ln \"u_ScaleDiffBaseMRW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMR\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Name\" -ln \"u_ScaleFGDSpec_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Type\" -ln \"u_ScaleFGDSpec_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpec\" -ln \"u_ScaleFGDSpec\" -nn \"Scale FGD Spec\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecXYZ\" -ln \"u_ScaleFGDSpecXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleFGDSpec\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecX\" -ln \"u_ScaleFGDSpecX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecY\" -ln \"u_ScaleFGDSpecY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecZ\" -ln \"u_ScaleFGDSpecZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecW\" -ln \"u_ScaleFGDSpecW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpec\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Name\" -ln \"u_ScaleIBL_Occl_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Type\" -ln \"u_ScaleIBL_Occl_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_Occl\" -ln \"u_ScaleIBL_Occl\" -nn \"Scale IBL AO(w)\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclXYZ\" -ln \"u_ScaleIBL_OcclXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleIBL_Occl\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclX\" -ln \"u_ScaleIBL_OcclX\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclY\" -ln \"u_ScaleIBL_OcclY\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclZ\" -ln \"u_ScaleIBL_OcclZ\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclW\" -ln \"u_ScaleIBL_OcclW\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_Occl\";\n\taddAttr -ci true -sn \"Position\" -ln \"Position\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Position_Name\" -ln \"Position_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"Position_Source\" -ln \"Position_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -sn \"Position_DefaultTexture\" -ln \"Position_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Position\";\n\taddAttr -ci true -sn \"Normal\" -ln \"Normal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Normal_Name\" -ln \"Normal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Source\" -ln \"Normal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -sn \"Normal_DefaultTexture\" -ln \"Normal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Normal\";\n\taddAttr -ci true -sn \"Tangent\" -ln \"Tangent\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Tangent_Name\" -ln \"Tangent_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"Tangent_Source\" -ln \"Tangent_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -sn \"Tangent_DefaultTexture\" -ln \"Tangent_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Tangent\";\n\taddAttr -ci true -sn \"Binormal\" -ln \"Binormal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Binormal_Name\" -ln \"Binormal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -h true -sn \"Binormal_Source\" -ln \"Binormal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -sn \"Binormal_DefaultTexture\" -ln \"Binormal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Binormal\";\n\taddAttr -ci true -sn \"TexCoord0\" -ln \"TexCoord0\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Name\" -ln \"TexCoord0_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Source\" -ln \"TexCoord0_Source\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -sn \"TexCoord0_DefaultTexture\" -ln \"TexCoord0_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Name\" -ln \"u_IsDoubleSided_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Type\" -ln \"u_IsDoubleSided_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsDoubleSided\" -ln \"u_IsDoubleSided\" -nn \"Double sided material?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Name\" -ln \"u_RoughnessOffset_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Type\" -ln \"u_RoughnessOffset_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessOffset\" -ln \"u_RoughnessOffset\" -nn \"Roughness offset\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 12 -smn 0 -smx 12 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Name\" -ln \"u_BurleyFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Type\" -ln \"u_BurleyFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BurleyFactor\" -ln \"u_BurleyFactor\" -nn \"Burley factor\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Name\" -ln \"u_UndoEdgeStretch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Type\" -ln \"u_UndoEdgeStretch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UndoEdgeStretch\" -ln \"u_UndoEdgeStretch\" -nn \"Undo edge stretch?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Name\" -ln \"u_IsEmissiveInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Type\" -ln \"u_IsEmissiveInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEmissiveInsRGB\" -ln \"u_IsEmissiveInsRGB\" -nn \"sRGB emissive?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Name\" -ln \"u_EnvRotationAngle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Type\" -ln \"u_EnvRotationAngle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_EnvRotationAngle\" -ln \"u_EnvRotationAngle\" -nn \"Environment Rotation\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Name\" -ln \"u_FlipEnvMapZ_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Type\" -ln \"u_FlipEnvMapZ_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_FlipEnvMapZ\" -ln \"u_FlipEnvMapZ\" -nn \"Flip environment Z?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Name\" -ln \"u_IsEnvMapInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Type\" -ln \"u_IsEnvMapInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInsRGB\" -ln \"u_IsEnvMapInsRGB\" -nn \"sRGB environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Name\" -ln \"u_IsEnvMapInRGBM_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Type\" -ln \"u_IsEnvMapInRGBM_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInRGBM\" -ln \"u_IsEnvMapInRGBM\" -nn \"RGBM environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Name\" -ln \"u_IsBRDFsSRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Type\" -ln \"u_IsBRDFsSRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBRDFsSRGB\" -ln \"u_IsBRDFsSRGB\" -nn \"sRGB BRDF table?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Name\" -ln \"u_IsBaseColorInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Type\" -ln \"u_IsBaseColorInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBaseColorInsRGB\" -ln \"u_IsBaseColorInsRGB\" -nn \"sRGB basecolor?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\tsetAttr \".vpar\" -type \"stringArray\" 5 \"Position\" \"Normal\" \"Tangent\" \"Binormal\" \"TexCoord0\"  ;\n\tsetAttr \".upar\" -type \"stringArray\" 34 \"u_LightColor\" \"u_LightIntensity\" \"u_LightRotation\" \"u_LightPitch\" \"u_BaseColorTexture\" \"u_BaseColorFactor\" \"u_MetallicTexture\" \"u_MetallicStrength\" \"u_RoughnessTexture\" \"u_RoughnessStrength\" \"u_OcclusionTexture\" \"u_OcclusionStrength\" \"u_NormalTexture\" \"u_NormalScale\" \"u_EmissiveTexture\" \"u_EmissiveColor\" \"u_DiffuseEnvTexture\" \"u_SpecularEnvTexture\" \"u_brdfTexture\" \"u_IsDoubleSided\" \"u_UseMeshTangents\" \"u_RoughnessOffset\" \"u_ScaleDiffBaseMR\" \"u_BurleyFactor\" \"u_ScaleFGDSpec\" \"u_UndoEdgeStretch\" \"u_ScaleIBL_Occl\" \"u_IsEmissiveInsRGB\" \"u_EnvRotationAngle\" \"u_FlipEnvMapZ\" \"u_IsEnvMapInsRGB\" \"u_IsEnvMapInRGBM\" \"u_IsBRDFsSRGB\" \"u_IsBaseColorInsRGB\"  ;\n\tsetAttr \".s\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/shaders/glTF_PBR.ogsfx\";\n\tsetAttr \".t\" -type \"string\" \"Solid\";\n\tsetAttr \".u_LightColor_Name\" -type \"string\" \"u_LightColor\";\n\tsetAttr \".u_LightColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_LightColor\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_LightIntensity_Name\" -type \"string\" \"u_LightIntensity\";\n\tsetAttr \".u_LightIntensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightIntensity\" 1;\n\tsetAttr \".u_LightRotation_Name\" -type \"string\" \"u_LightRotation\";\n\tsetAttr \".u_LightRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightRotation\" 75;\n\tsetAttr \".u_LightPitch_Name\" -type \"string\" \"u_LightPitch\";\n\tsetAttr \".u_LightPitch_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightPitch\" 40;\n\tsetAttr \".u_BaseColorTexture_Name\" -type \"string\" \"u_BaseColorTexture\";\n\tsetAttr \".u_BaseColorTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_BaseColorTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_BaseColorFactor_Name\" -type \"string\" \"u_BaseColorFactor\";\n\tsetAttr \".u_BaseColorFactor_Type\" -type \"string\" \"color4x1\";\n\tsetAttr \".u_BaseColorFactorRGB\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_BaseColorFactorA\" 1;\n\tsetAttr \".u_MetallicTexture_Name\" -type \"string\" \"u_MetallicTexture\";\n\tsetAttr \".u_MetallicTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_MetallicTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_MetallicStrength_Name\" -type \"string\" \"u_MetallicStrength\";\n\tsetAttr \".u_MetallicStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_MetallicStrength\" 1;\n\tsetAttr \".u_RoughnessTexture_Name\" -type \"string\" \"u_RoughnessTexture\";\n\tsetAttr \".u_RoughnessTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_RoughnessTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_RoughnessStrength_Name\" -type \"string\" \"u_RoughnessStrength\";\n\tsetAttr \".u_RoughnessStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_RoughnessStrength\" 0;\n\tsetAttr \".u_OcclusionTexture_Name\" -type \"string\" \"u_OcclusionTexture\";\n\tsetAttr \".u_OcclusionTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_OcclusionTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_OcclusionStrength_Name\" -type \"string\" \"u_OcclusionStrength\";\n\tsetAttr \".u_OcclusionStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_OcclusionStrength\" 1;\n\tsetAttr \".u_NormalTexture_Name\" -type \"string\" \"u_NormalTexture\";\n\tsetAttr \".u_NormalTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_NormalTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_NormalScale_Name\" -type \"string\" \"u_NormalScale\";\n\tsetAttr \".u_NormalScale_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_NormalScale\" 1;\n\tsetAttr \".u_EmissiveTexture_Name\" -type \"string\" \"u_EmissiveTexture\";\n\tsetAttr \".u_EmissiveTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_EmissiveTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_EmissiveColor_Name\" -type \"string\" \"u_EmissiveColor\";\n\tsetAttr \".u_EmissiveColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_EmissiveColor\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_DiffuseEnvTexture_Name\" -type \"string\" \"u_DiffuseEnvTexture\";\n\tsetAttr \".u_DiffuseEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_DiffuseEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_SpecularEnvTexture_Name\" -type \"string\" \"u_SpecularEnvTexture\";\n\tsetAttr \".u_SpecularEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_SpecularEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_brdfTexture_Name\" -type \"string\" \"u_brdfTexture\";\n\tsetAttr \".u_brdfTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_brdfTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_UseMeshTangents_Name\" -type \"string\" \"u_UseMeshTangents\";\n\tsetAttr \".u_UseMeshTangents_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UseMeshTangents\" yes;\n\tsetAttr \".u_ScaleDiffBaseMR_Name\" -type \"string\" \"u_ScaleDiffBaseMR\";\n\tsetAttr \".u_ScaleDiffBaseMR_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleDiffBaseMRXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleDiffBaseMRW\" 0;\n\tsetAttr \".u_ScaleFGDSpec_Name\" -type \"string\" \"u_ScaleFGDSpec\";\n\tsetAttr \".u_ScaleFGDSpec_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleFGDSpecXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleFGDSpecW\" 0;\n\tsetAttr \".u_ScaleIBL_Occl_Name\" -type \"string\" \"u_ScaleIBL_Occl\";\n\tsetAttr \".u_ScaleIBL_Occl_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleIBL_OcclXYZ\" -type \"float3\" 1 1 0 ;\n\tsetAttr \".u_ScaleIBL_OcclW\" 1;\n\tsetAttr \".Position_Name\" -type \"string\" \"Position\";\n\tsetAttr \".Position_Source\" -type \"string\" \"position\";\n\tsetAttr \".Normal_Name\" -type \"string\" \"Normal\";\n\tsetAttr \".Normal_Source\" -type \"string\" \"normal\";\n\tsetAttr \".Tangent_Name\" -type \"string\" \"Tangent\";\n\tsetAttr \".Tangent_Source\" -type \"string\" \"tangent:map1\";\n\tsetAttr \".Binormal_Name\" -type \"string\" \"Binormal\";\n\tsetAttr \".Binormal_Source\" -type \"string\" \"binormal:map1\";\n\tsetAttr \".TexCoord0_Name\" -type \"string\" \"TexCoord0\";\n\tsetAttr \".TexCoord0_Source\" -type \"string\" \"uv:map1\";\n\tsetAttr \".u_IsDoubleSided_Name\" -type \"string\" \"u_IsDoubleSided\";\n\tsetAttr \".u_IsDoubleSided_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsDoubleSided\" no;\n\tsetAttr \".u_RoughnessOffset_Name\" -type \"string\" \"u_RoughnessOffset\";\n\tsetAttr \".u_RoughnessOffset_Type\" -type \"string\" \"int\";\n\tsetAttr \".u_RoughnessOffset\" 0;\n\tsetAttr \".u_BurleyFactor_Name\" -type \"string\" \"u_BurleyFactor\";\n\tsetAttr \".u_BurleyFactor_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_BurleyFactor\" 0;\n\tsetAttr \".u_UndoEdgeStretch_Name\" -type \"string\" \"u_UndoEdgeStretch\";\n\tsetAttr \".u_UndoEdgeStretch_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UndoEdgeStretch\" no;\n\tsetAttr \".u_IsEmissiveInsRGB_Name\" -type \"string\" \"u_IsEmissiveInsRGB\";\n\tsetAttr \".u_IsEmissiveInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEmissiveInsRGB\" yes;\n\tsetAttr \".u_EnvRotationAngle_Name\" -type \"string\" \"u_EnvRotationAngle\";\n\tsetAttr \".u_EnvRotationAngle_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_EnvRotationAngle\" 0;\n\tsetAttr \".u_FlipEnvMapZ_Name\" -type \"string\" \"u_FlipEnvMapZ\";\n\tsetAttr \".u_FlipEnvMapZ_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_FlipEnvMapZ\" yes;\n\tsetAttr \".u_IsEnvMapInsRGB_Name\" -type \"string\" \"u_IsEnvMapInsRGB\";\n\tsetAttr \".u_IsEnvMapInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInsRGB\" no;\n\tsetAttr \".u_IsEnvMapInRGBM_Name\" -type \"string\" \"u_IsEnvMapInRGBM\";\n\tsetAttr \".u_IsEnvMapInRGBM_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInRGBM\" no;\n\tsetAttr \".u_IsBRDFsSRGB_Name\" -type \"string\" \"u_IsBRDFsSRGB\";\n\tsetAttr \".u_IsBRDFsSRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBRDFsSRGB\" no;\n\tsetAttr \".u_IsBaseColorInsRGB_Name\" -type \"string\" \"u_IsBaseColorInsRGB\";\n\tsetAttr \".u_IsBaseColorInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBaseColorInsRGB\" yes;\ncreateNode shadingEngine -n \"GLSLShader1SG\";\n\trename -uid \"4EE0CA71-4E0B-7B0C-254F-6095031017AA\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"706C3E98-416F-F2DF-2500-1A92DBD78272\";\ncreateNode file -n \"normal_map_file\";\n\trename -uid \"5ABB11F6-4D95-8A68-EBDF-2193D9A2BCB4\";\n\tsetAttr \".ail\" yes;\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//images/cube_flat-on-soft_normal.png\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture1\";\n\trename -uid \"5B9C4307-43A2-503B-5D24-1CB25BA4B9D8\";\ncreateNode file -n \"file2\";\n\trename -uid \"982B60E8-49EF-950C-22D8-46B961EC0928\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_diffuse_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture2\";\n\trename -uid \"2AB7DD0A-4CA8-E0E9-ED17-60B9E2F22150\";\ncreateNode file -n \"file3\";\n\trename -uid \"6C3DF0C1-4D69-E81A-D4AA-81877FA5B85F\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_specular_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture3\";\n\trename -uid \"67527172-413A-2B90-71F7-9C8B572E6A03\";\ncreateNode file -n \"file4\";\n\trename -uid \"33523EDA-497D-CAB9-C036-DB995B883EA2\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/brdfLUT.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture4\";\n\trename -uid \"F68A3134-4D04-8867-6E4C-DD981877D25B\";\ncreateNode bump2d -n \"bump2d1\";\n\trename -uid \"0E43EF60-49DF-DBF7-CE83-8AA3C49273DA\";\n\tsetAttr \".bi\" 1;\n\tsetAttr \".vc1\" -type \"float3\" 0 5.9999998e-05 0 ;\n\tsetAttr \".vc2\" -type \"float3\" 9.9999997e-06 9.9999997e-06 0 ;\ncreateNode GLSLShader -n \"PBR_Shader_no_normal_map\";\n\trename -uid \"94301892-47FC-D9FE-9EB9-2289BD4C7887\";\n\taddAttr -ci true -sn \"Light_0_use_implicit_lighting\" -ln \"Light_0_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_0_connected_light\" -ln \"Light_0_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_1_use_implicit_lighting\" -ln \"Light_1_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_1_connected_light\" -ln \"Light_1_connected_light\" \n\t\t-at \"message\";\n\taddAttr -ci true -sn \"Light_2_use_implicit_lighting\" -ln \"Light_2_use_implicit_lighting\" \n\t\t-dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -s false -ci true -sn \"Light_2_connected_light\" -ln \"Light_2_connected_light\" \n\t\t-at \"message\";\n\taddAttr -s false -is true -ci true -k true -sn \"te\" -ln \"techniqueEnum\" -nn \"Technique\" \n\t\t-min 0 -max 1 -en \"Solid:Transparent\" -at \"enum\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Name\" -ln \"u_LightColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightColor_Type\" -ln \"u_LightColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_LightColor\" -ln \"u_LightColor\" -nn \"Light Color\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_LightColorR\" -ln \"u_LightColorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorG\" -ln \"u_LightColorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -sn \"u_LightColorB\" -ln \"u_LightColorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_LightColor\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Name\" -ln \"u_LightIntensity_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightIntensity_Type\" -ln \"u_LightIntensity_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightIntensity\" -ln \"u_LightIntensity\" -nn \"Light Intensity\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 10 -smn 0 -smx 10 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Name\" -ln \"u_LightRotation_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightRotation_Type\" -ln \"u_LightRotation_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightRotation\" -ln \"u_LightRotation\" -nn \"Light rotation (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 75 -min 0 -max 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Name\" -ln \"u_LightPitch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_LightPitch_Type\" -ln \"u_LightPitch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_LightPitch\" -ln \"u_LightPitch\" -nn \"Light pitch (deg)\" \n\t\t-ct \"HW_shader_parameter\" -dv 40 -min -90 -max 90 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Name\" -ln \"u_BaseColorTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorTexture_Type\" -ln \"u_BaseColorTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorTexture\" -ln \"u_BaseColorTexture\" \n\t\t-nn \"Base color map (sRGB)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureR\" -ln \"u_BaseColorTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureG\" -ln \"u_BaseColorTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -sn \"u_BaseColorTextureB\" -ln \"u_BaseColorTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_BaseColorTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Name\" -ln \"u_BaseColorFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BaseColorFactor_Type\" -ln \"u_BaseColorFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactor\" -ln \"u_BaseColorFactor\" -nn \"Base color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -uac -sn \"u_BaseColorFactorRGB\" -ln \"u_BaseColorFactorRGB\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_BaseColorFactor\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorR\" -ln \"u_BaseColorFactorR\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorG\" -ln \"u_BaseColorFactorG\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorB\" -ln \"u_BaseColorFactorB\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_BaseColorFactorRGB\";\n\taddAttr -is true -ci true -sn \"u_BaseColorFactorA\" -ln \"u_BaseColorFactorA\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -smn 0 -smx 1 -at \"float\" -p \"u_BaseColorFactor\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Name\" -ln \"u_MetallicTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicTexture_Type\" -ln \"u_MetallicTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_MetallicTexture\" -ln \"u_MetallicTexture\" -nn \"Metallic map (B,LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_MetallicTextureR\" -ln \"u_MetallicTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureG\" -ln \"u_MetallicTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -sn \"u_MetallicTextureB\" -ln \"u_MetallicTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_MetallicTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Name\" -ln \"u_MetallicStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_MetallicStrength_Type\" -ln \"u_MetallicStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_MetallicStrength\" -ln \"u_MetallicStrength\" -nn \"Metallic strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Name\" -ln \"u_RoughnessTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessTexture_Type\" -ln \"u_RoughnessTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_RoughnessTexture\" -ln \"u_RoughnessTexture\" \n\t\t-nn \"Roughness map (G,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureR\" -ln \"u_RoughnessTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureG\" -ln \"u_RoughnessTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -sn \"u_RoughnessTextureB\" -ln \"u_RoughnessTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_RoughnessTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Name\" -ln \"u_RoughnessStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessStrength_Type\" -ln \"u_RoughnessStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessStrength\" -ln \"u_RoughnessStrength\" -nn \"Roughness strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 0.5 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Name\" -ln \"u_OcclusionTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionTexture_Type\" -ln \"u_OcclusionTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_OcclusionTexture\" -ln \"u_OcclusionTexture\" \n\t\t-nn \"Occlusion map (R,LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureR\" -ln \"u_OcclusionTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureG\" -ln \"u_OcclusionTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -sn \"u_OcclusionTextureB\" -ln \"u_OcclusionTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_OcclusionTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Name\" -ln \"u_OcclusionStrength_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_OcclusionStrength_Type\" -ln \"u_OcclusionStrength_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_OcclusionStrength\" -ln \"u_OcclusionStrength\" -nn \"Occlusion strength\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Name\" -ln \"u_NormalTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalTexture_Type\" -ln \"u_NormalTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_NormalTexture\" -ln \"u_NormalTexture\" -nn \"Normal map (LIN)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_NormalTextureR\" -ln \"u_NormalTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureG\" -ln \"u_NormalTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -sn \"u_NormalTextureB\" -ln \"u_NormalTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_NormalTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Name\" -ln \"u_NormalScale_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_NormalScale_Type\" -ln \"u_NormalScale_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_NormalScale\" -ln \"u_NormalScale\" -nn \"Normal scale\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Name\" -ln \"u_EmissiveTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveTexture_Type\" -ln \"u_EmissiveTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveTexture\" -ln \"u_EmissiveTexture\" -nn \"Emissive map (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureR\" -ln \"u_EmissiveTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureG\" -ln \"u_EmissiveTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -sn \"u_EmissiveTextureB\" -ln \"u_EmissiveTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_EmissiveTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Name\" -ln \"u_EmissiveColor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EmissiveColor_Type\" -ln \"u_EmissiveColor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_EmissiveColor\" -ln \"u_EmissiveColor\" -nn \"Emissive color factor\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_EmissiveColorR\" -ln \"u_EmissiveColorR\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorG\" -ln \"u_EmissiveColorG\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -sn \"u_EmissiveColorB\" -ln \"u_EmissiveColorB\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_EmissiveColor\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Name\" -ln \"u_DiffuseEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_DiffuseEnvTexture_Type\" -ln \"u_DiffuseEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_DiffuseEnvTexture\" -ln \"u_DiffuseEnvTexture\" \n\t\t-nn \"Diffuse env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureR\" -ln \"u_DiffuseEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureG\" -ln \"u_DiffuseEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_DiffuseEnvTextureB\" -ln \"u_DiffuseEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_DiffuseEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Name\" -ln \"u_SpecularEnvTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_SpecularEnvTexture_Type\" -ln \"u_SpecularEnvTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_SpecularEnvTexture\" -ln \"u_SpecularEnvTexture\" \n\t\t-nn \"Specular env map (LIN)\" -ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureR\" -ln \"u_SpecularEnvTextureR\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureG\" -ln \"u_SpecularEnvTextureG\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -sn \"u_SpecularEnvTextureB\" -ln \"u_SpecularEnvTextureB\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\" -p \"u_SpecularEnvTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Name\" -ln \"u_brdfTexture_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_brdfTexture_Type\" -ln \"u_brdfTexture_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -uac -sn \"u_brdfTexture\" -ln \"u_brdfTexture\" -nn \"BRDF LUT (sRGB)\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_brdfTextureR\" -ln \"u_brdfTextureR\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureG\" -ln \"u_brdfTextureG\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -sn \"u_brdfTextureB\" -ln \"u_brdfTextureB\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_brdfTexture\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Name\" -ln \"u_UseMeshTangents_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UseMeshTangents_Type\" -ln \"u_UseMeshTangents_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UseMeshTangents\" -ln \"u_UseMeshTangents\" -nn \"Use mesh tangents?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Name\" -ln \"u_ScaleDiffBaseMR_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleDiffBaseMR_Type\" -ln \"u_ScaleDiffBaseMR_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMR\" -ln \"u_ScaleDiffBaseMR\" -nn \"Scale Diff Base MR\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRXYZ\" -ln \"u_ScaleDiffBaseMRXYZ\" \n\t\t-ct \"HW_shader_parameter\" -at \"float3\" -p \"u_ScaleDiffBaseMR\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRX\" -ln \"u_ScaleDiffBaseMRX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRY\" -ln \"u_ScaleDiffBaseMRY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRZ\" -ln \"u_ScaleDiffBaseMRZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMRXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleDiffBaseMRW\" -ln \"u_ScaleDiffBaseMRW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleDiffBaseMR\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Name\" -ln \"u_ScaleFGDSpec_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleFGDSpec_Type\" -ln \"u_ScaleFGDSpec_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpec\" -ln \"u_ScaleFGDSpec\" -nn \"Scale FGD Spec\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecXYZ\" -ln \"u_ScaleFGDSpecXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleFGDSpec\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecX\" -ln \"u_ScaleFGDSpecX\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecY\" -ln \"u_ScaleFGDSpecY\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecZ\" -ln \"u_ScaleFGDSpecZ\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpecXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleFGDSpecW\" -ln \"u_ScaleFGDSpecW\" -ct \"HW_shader_parameter\" \n\t\t-smn 0 -smx 1 -at \"float\" -p \"u_ScaleFGDSpec\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Name\" -ln \"u_ScaleIBL_Occl_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_ScaleIBL_Occl_Type\" -ln \"u_ScaleIBL_Occl_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_Occl\" -ln \"u_ScaleIBL_Occl\" -nn \"Scale IBL AO(w)\" \n\t\t-ct \"HW_shader_parameter\" -at \"compound\" -nc 2;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclXYZ\" -ln \"u_ScaleIBL_OcclXYZ\" -ct \"HW_shader_parameter\" \n\t\t-at \"float3\" -p \"u_ScaleIBL_Occl\" -nc 3;\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclX\" -ln \"u_ScaleIBL_OcclX\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclY\" -ln \"u_ScaleIBL_OcclY\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclZ\" -ln \"u_ScaleIBL_OcclZ\" -ct \"HW_shader_parameter\" \n\t\t-min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_OcclXYZ\";\n\taddAttr -is true -ci true -sn \"u_ScaleIBL_OcclW\" -ln \"u_ScaleIBL_OcclW\" -ct \"HW_shader_parameter\" \n\t\t-dv 1 -min 0 -max 1 -at \"float\" -p \"u_ScaleIBL_Occl\";\n\taddAttr -ci true -sn \"Position\" -ln \"Position\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Position_Name\" -ln \"Position_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -h true -sn \"Position_Source\" -ln \"Position_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Position\";\n\taddAttr -is true -ci true -sn \"Position_DefaultTexture\" -ln \"Position_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Position\";\n\taddAttr -ci true -sn \"Normal\" -ln \"Normal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Normal_Name\" -ln \"Normal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -h true -sn \"Normal_Source\" -ln \"Normal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Normal\";\n\taddAttr -is true -ci true -sn \"Normal_DefaultTexture\" -ln \"Normal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Normal\";\n\taddAttr -ci true -sn \"Tangent\" -ln \"Tangent\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Tangent_Name\" -ln \"Tangent_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -h true -sn \"Tangent_Source\" -ln \"Tangent_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Tangent\";\n\taddAttr -is true -ci true -sn \"Tangent_DefaultTexture\" -ln \"Tangent_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Tangent\";\n\taddAttr -ci true -sn \"Binormal\" -ln \"Binormal\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"Binormal_Name\" -ln \"Binormal_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -h true -sn \"Binormal_Source\" -ln \"Binormal_Source\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"Binormal\";\n\taddAttr -is true -ci true -sn \"Binormal_DefaultTexture\" -ln \"Binormal_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"Binormal\";\n\taddAttr -ci true -sn \"TexCoord0\" -ln \"TexCoord0\" -at \"compound\" -nc 3;\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Name\" -ln \"TexCoord0_Name\" -ct \"HW_shader_parameter\" \n\t\t-dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"TexCoord0_Source\" -ln \"TexCoord0_Source\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -sn \"TexCoord0_DefaultTexture\" -ln \"TexCoord0_DefaultTexture\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\" -p \"TexCoord0\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Name\" -ln \"u_IsDoubleSided_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsDoubleSided_Type\" -ln \"u_IsDoubleSided_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsDoubleSided\" -ln \"u_IsDoubleSided\" -nn \"Double sided material?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Name\" -ln \"u_RoughnessOffset_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_RoughnessOffset_Type\" -ln \"u_RoughnessOffset_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_RoughnessOffset\" -ln \"u_RoughnessOffset\" -nn \"Roughness offset\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 12 -smn 0 -smx 12 -at \"long\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Name\" -ln \"u_BurleyFactor_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_BurleyFactor_Type\" -ln \"u_BurleyFactor_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_BurleyFactor\" -ln \"u_BurleyFactor\" -nn \"Burley factor\" \n\t\t-ct \"HW_shader_parameter\" -smn 0 -smx 1 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Name\" -ln \"u_UndoEdgeStretch_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_UndoEdgeStretch_Type\" -ln \"u_UndoEdgeStretch_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_UndoEdgeStretch\" -ln \"u_UndoEdgeStretch\" -nn \"Undo edge stretch?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Name\" -ln \"u_IsEmissiveInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEmissiveInsRGB_Type\" -ln \"u_IsEmissiveInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEmissiveInsRGB\" -ln \"u_IsEmissiveInsRGB\" -nn \"sRGB emissive?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Name\" -ln \"u_EnvRotationAngle_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_EnvRotationAngle_Type\" -ln \"u_EnvRotationAngle_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_EnvRotationAngle\" -ln \"u_EnvRotationAngle\" -nn \"Environment Rotation\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 360 -smn 0 -smx 360 -at \"float\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Name\" -ln \"u_FlipEnvMapZ_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_FlipEnvMapZ_Type\" -ln \"u_FlipEnvMapZ_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_FlipEnvMapZ\" -ln \"u_FlipEnvMapZ\" -nn \"Flip environment Z?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Name\" -ln \"u_IsEnvMapInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInsRGB_Type\" -ln \"u_IsEnvMapInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInsRGB\" -ln \"u_IsEnvMapInsRGB\" -nn \"sRGB environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Name\" -ln \"u_IsEnvMapInRGBM_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsEnvMapInRGBM_Type\" -ln \"u_IsEnvMapInRGBM_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsEnvMapInRGBM\" -ln \"u_IsEnvMapInRGBM\" -nn \"RGBM environment?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Name\" -ln \"u_IsBRDFsSRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBRDFsSRGB_Type\" -ln \"u_IsBRDFsSRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBRDFsSRGB\" -ln \"u_IsBRDFsSRGB\" -nn \"sRGB BRDF table?\" \n\t\t-ct \"HW_shader_parameter\" -min 0 -max 1 -at \"bool\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Name\" -ln \"u_IsBaseColorInsRGB_Name\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -h true -sn \"u_IsBaseColorInsRGB_Type\" -ln \"u_IsBaseColorInsRGB_Type\" \n\t\t-ct \"HW_shader_parameter\" -dt \"string\";\n\taddAttr -is true -ci true -sn \"u_IsBaseColorInsRGB\" -ln \"u_IsBaseColorInsRGB\" -nn \"sRGB basecolor?\" \n\t\t-ct \"HW_shader_parameter\" -dv 1 -min 0 -max 1 -at \"bool\";\n\tsetAttr \".vpar\" -type \"stringArray\" 5 \"Position\" \"Normal\" \"Tangent\" \"Binormal\" \"TexCoord0\"  ;\n\tsetAttr \".upar\" -type \"stringArray\" 34 \"u_LightColor\" \"u_LightIntensity\" \"u_LightRotation\" \"u_LightPitch\" \"u_BaseColorTexture\" \"u_BaseColorFactor\" \"u_MetallicTexture\" \"u_MetallicStrength\" \"u_RoughnessTexture\" \"u_RoughnessStrength\" \"u_OcclusionTexture\" \"u_OcclusionStrength\" \"u_NormalTexture\" \"u_NormalScale\" \"u_EmissiveTexture\" \"u_EmissiveColor\" \"u_DiffuseEnvTexture\" \"u_SpecularEnvTexture\" \"u_brdfTexture\" \"u_IsDoubleSided\" \"u_UseMeshTangents\" \"u_RoughnessOffset\" \"u_ScaleDiffBaseMR\" \"u_BurleyFactor\" \"u_ScaleFGDSpec\" \"u_UndoEdgeStretch\" \"u_ScaleIBL_Occl\" \"u_IsEmissiveInsRGB\" \"u_EnvRotationAngle\" \"u_FlipEnvMapZ\" \"u_IsEnvMapInsRGB\" \"u_IsEnvMapInRGBM\" \"u_IsBRDFsSRGB\" \"u_IsBaseColorInsRGB\"  ;\n\tsetAttr \".s\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/shaders/glTF_PBR.ogsfx\";\n\tsetAttr \".t\" -type \"string\" \"Solid\";\n\tsetAttr \".u_LightColor_Name\" -type \"string\" \"u_LightColor\";\n\tsetAttr \".u_LightColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_LightColor\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_LightIntensity_Name\" -type \"string\" \"u_LightIntensity\";\n\tsetAttr \".u_LightIntensity_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightIntensity\" 1;\n\tsetAttr \".u_LightRotation_Name\" -type \"string\" \"u_LightRotation\";\n\tsetAttr \".u_LightRotation_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightRotation\" 75;\n\tsetAttr \".u_LightPitch_Name\" -type \"string\" \"u_LightPitch\";\n\tsetAttr \".u_LightPitch_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_LightPitch\" 40;\n\tsetAttr \".u_BaseColorTexture_Name\" -type \"string\" \"u_BaseColorTexture\";\n\tsetAttr \".u_BaseColorTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_BaseColorTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_BaseColorFactor_Name\" -type \"string\" \"u_BaseColorFactor\";\n\tsetAttr \".u_BaseColorFactor_Type\" -type \"string\" \"color4x1\";\n\tsetAttr \".u_BaseColorFactorRGB\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".u_BaseColorFactorA\" 1;\n\tsetAttr \".u_MetallicTexture_Name\" -type \"string\" \"u_MetallicTexture\";\n\tsetAttr \".u_MetallicTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_MetallicTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_MetallicStrength_Name\" -type \"string\" \"u_MetallicStrength\";\n\tsetAttr \".u_MetallicStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_MetallicStrength\" 1;\n\tsetAttr \".u_RoughnessTexture_Name\" -type \"string\" \"u_RoughnessTexture\";\n\tsetAttr \".u_RoughnessTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_RoughnessTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_RoughnessStrength_Name\" -type \"string\" \"u_RoughnessStrength\";\n\tsetAttr \".u_RoughnessStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_RoughnessStrength\" 0;\n\tsetAttr \".u_OcclusionTexture_Name\" -type \"string\" \"u_OcclusionTexture\";\n\tsetAttr \".u_OcclusionTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_OcclusionTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_OcclusionStrength_Name\" -type \"string\" \"u_OcclusionStrength\";\n\tsetAttr \".u_OcclusionStrength_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_OcclusionStrength\" 1;\n\tsetAttr \".u_NormalTexture_Name\" -type \"string\" \"u_NormalTexture\";\n\tsetAttr \".u_NormalTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_NormalTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_NormalScale_Name\" -type \"string\" \"u_NormalScale\";\n\tsetAttr \".u_NormalScale_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_NormalScale\" 1;\n\tsetAttr \".u_EmissiveTexture_Name\" -type \"string\" \"u_EmissiveTexture\";\n\tsetAttr \".u_EmissiveTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_EmissiveTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_EmissiveColor_Name\" -type \"string\" \"u_EmissiveColor\";\n\tsetAttr \".u_EmissiveColor_Type\" -type \"string\" \"color3x1\";\n\tsetAttr \".u_EmissiveColor\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_DiffuseEnvTexture_Name\" -type \"string\" \"u_DiffuseEnvTexture\";\n\tsetAttr \".u_DiffuseEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_DiffuseEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_SpecularEnvTexture_Name\" -type \"string\" \"u_SpecularEnvTexture\";\n\tsetAttr \".u_SpecularEnvTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_SpecularEnvTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_brdfTexture_Name\" -type \"string\" \"u_brdfTexture\";\n\tsetAttr \".u_brdfTexture_Type\" -type \"string\" \"texture\";\n\tsetAttr \".u_brdfTexture\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_UseMeshTangents_Name\" -type \"string\" \"u_UseMeshTangents\";\n\tsetAttr \".u_UseMeshTangents_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UseMeshTangents\" no;\n\tsetAttr \".u_ScaleDiffBaseMR_Name\" -type \"string\" \"u_ScaleDiffBaseMR\";\n\tsetAttr \".u_ScaleDiffBaseMR_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleDiffBaseMRXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleDiffBaseMRW\" 0;\n\tsetAttr \".u_ScaleFGDSpec_Name\" -type \"string\" \"u_ScaleFGDSpec\";\n\tsetAttr \".u_ScaleFGDSpec_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleFGDSpecXYZ\" -type \"float3\" 0 0 0 ;\n\tsetAttr \".u_ScaleFGDSpecW\" 0;\n\tsetAttr \".u_ScaleIBL_Occl_Name\" -type \"string\" \"u_ScaleIBL_Occl\";\n\tsetAttr \".u_ScaleIBL_Occl_Type\" -type \"string\" \"float4x1\";\n\tsetAttr \".u_ScaleIBL_OcclXYZ\" -type \"float3\" 1 1 0 ;\n\tsetAttr \".u_ScaleIBL_OcclW\" 1;\n\tsetAttr \".Position_Name\" -type \"string\" \"Position\";\n\tsetAttr \".Position_Source\" -type \"string\" \"position\";\n\tsetAttr \".Normal_Name\" -type \"string\" \"Normal\";\n\tsetAttr \".Normal_Source\" -type \"string\" \"normal\";\n\tsetAttr \".Tangent_Name\" -type \"string\" \"Tangent\";\n\tsetAttr \".Tangent_Source\" -type \"string\" \"tangent:map1\";\n\tsetAttr \".Binormal_Name\" -type \"string\" \"Binormal\";\n\tsetAttr \".Binormal_Source\" -type \"string\" \"binormal:map1\";\n\tsetAttr \".TexCoord0_Name\" -type \"string\" \"TexCoord0\";\n\tsetAttr \".TexCoord0_Source\" -type \"string\" \"uv:map1\";\n\tsetAttr \".u_IsDoubleSided_Name\" -type \"string\" \"u_IsDoubleSided\";\n\tsetAttr \".u_IsDoubleSided_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsDoubleSided\" no;\n\tsetAttr \".u_RoughnessOffset_Name\" -type \"string\" \"u_RoughnessOffset\";\n\tsetAttr \".u_RoughnessOffset_Type\" -type \"string\" \"int\";\n\tsetAttr \".u_RoughnessOffset\" 0;\n\tsetAttr \".u_BurleyFactor_Name\" -type \"string\" \"u_BurleyFactor\";\n\tsetAttr \".u_BurleyFactor_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_BurleyFactor\" 0;\n\tsetAttr \".u_UndoEdgeStretch_Name\" -type \"string\" \"u_UndoEdgeStretch\";\n\tsetAttr \".u_UndoEdgeStretch_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_UndoEdgeStretch\" no;\n\tsetAttr \".u_IsEmissiveInsRGB_Name\" -type \"string\" \"u_IsEmissiveInsRGB\";\n\tsetAttr \".u_IsEmissiveInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEmissiveInsRGB\" yes;\n\tsetAttr \".u_EnvRotationAngle_Name\" -type \"string\" \"u_EnvRotationAngle\";\n\tsetAttr \".u_EnvRotationAngle_Type\" -type \"string\" \"float\";\n\tsetAttr \".u_EnvRotationAngle\" 0;\n\tsetAttr \".u_FlipEnvMapZ_Name\" -type \"string\" \"u_FlipEnvMapZ\";\n\tsetAttr \".u_FlipEnvMapZ_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_FlipEnvMapZ\" yes;\n\tsetAttr \".u_IsEnvMapInsRGB_Name\" -type \"string\" \"u_IsEnvMapInsRGB\";\n\tsetAttr \".u_IsEnvMapInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInsRGB\" no;\n\tsetAttr \".u_IsEnvMapInRGBM_Name\" -type \"string\" \"u_IsEnvMapInRGBM\";\n\tsetAttr \".u_IsEnvMapInRGBM_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsEnvMapInRGBM\" no;\n\tsetAttr \".u_IsBRDFsSRGB_Name\" -type \"string\" \"u_IsBRDFsSRGB\";\n\tsetAttr \".u_IsBRDFsSRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBRDFsSRGB\" no;\n\tsetAttr \".u_IsBaseColorInsRGB_Name\" -type \"string\" \"u_IsBaseColorInsRGB\";\n\tsetAttr \".u_IsBaseColorInsRGB_Type\" -type \"string\" \"bool\";\n\tsetAttr \".u_IsBaseColorInsRGB\" yes;\ncreateNode shadingEngine -n \"GLSLShader2SG\";\n\trename -uid \"F6CBDDE3-43A1-B911-B13D-BAB99FED35DC\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo3\";\n\trename -uid \"4C9D9C12-4E25-EAD6-EACF-F582748844C7\";\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"95CE6C44-4E28-FFFA-77BA-BA8A03B7C49D\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 1\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 1 -size 10 -divisions 4 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"08561F58-4853-A05E-496B-949BFCA8EE79\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode phong -n \"Material\";\n\trename -uid \"A3225620-426C-0834-4BF4-06A429CEB74C\";\n\tsetAttr \".c\" -type \"float3\" 0.80000001 0.80000001 0.80000001 ;\n\tsetAttr \".sc\" -type \"float3\" 0.25 0.25 0.25 ;\n\tsetAttr \".rfl\" 0;\n\tsetAttr \".rc\" -type \"float3\" 1 1 1 ;\n\tsetAttr \".cp\" 9.6078433990478516;\ncreateNode shadingEngine -n \"CubeSG\";\n\trename -uid \"00FB02CC-4DA8-0AAC-A0F0-A29259A97C4E\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo4\";\n\trename -uid \"71748155-4101-A371-7D57-D38F82638587\";\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"776AA4A6-4247-D1FA-12B2-2DA815FEABD9\";\n\tsetAttr \".c\" -type \"float3\" 0.51632047 0.51632047 0.51632047 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"448C0155-40A6-A2A4-3247-30A316E0F3AE\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo5\";\n\trename -uid \"E5C82F35-416A-E38A-7E9F-328C08C6EA4B\";\ncreateNode phong -n \"GLSL_PBR_Shader1\";\n\trename -uid \"695840ED-42E2-827F-2930-0DA54F0C0E58\";\n\tsetAttr \".dc\" 1;\n\tsetAttr \".ambc\" -type \"float3\" 0.40000001 0.40000001 0.40000001 ;\n\tsetAttr \".sc\" -type \"float3\" 0.30000001 0.30000001 0.30000001 ;\n\tsetAttr \".rfl\" 0;\ncreateNode shadingEngine -n \"SoftCubeSG\";\n\trename -uid \"60048E74-4C30-E2E9-9DBB-36B4DCFBE56C\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo6\";\n\trename -uid \"9F38497B-441C-EC7D-BA75-82AAAE52D677\";\ncreateNode skinCluster -n \"skinCluster1\";\n\trename -uid \"E13215D9-4254-B433-C5F3-C788017F3A98\";\n\tsetAttr -s 8 \".wl\";\n\tsetAttr \".wl[0:7].w\"\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1;\n\tsetAttr \".pm[0]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".dpf[0]\"  4;\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".ucm\" yes;\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"F54D644C-4F0A-CAED-B9C0-CDB880CED095\";\ncreateNode objectSet -n \"skinCluster1Set\";\n\trename -uid \"523B2503-4E19-7EF4-03DD-ED8FE00D506B\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster1GroupId\";\n\trename -uid \"686A9291-4838-6D08-99B5-479E7CABC25B\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster1GroupParts\";\n\trename -uid \"77FD0A2D-4060-65F0-E1F6-9FA153CB00C9\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"71A46D69-44D5-E1B8-CDC0-4D883CC6B48F\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"322E1589-4C76-EA71-8967-9EB7951B9EDA\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"34FDE041-446E-36E3-3995-10919C629335\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode dagPose -n \"bindPose1\";\n\trename -uid \"6600796C-4823-8652-47BD-2DADF3B4AD8B\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".bp\" yes;\ncreateNode phong -n \"phong1\";\n\trename -uid \"D6F0C7C7-41BE-3D37-EA11-B499AC6DEF02\";\n\tsetAttr \".c\" -type \"float3\" 0.32640949 0.32640949 0.32640949 ;\n\tsetAttr \".sc\" -type \"float3\" 0.33827892 0.33827892 0.33827892 ;\n\tsetAttr \".rfl\" 1;\ncreateNode shadingEngine -n \"phong1SG\";\n\trename -uid \"8070B1A0-4CDB-3E0D-42A3-C38035826669\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo7\";\n\trename -uid \"78915DB9-4B4B-EF03-43F9-0CAB6A700D6B\";\ncreateNode bump2d -n \"bump2d2\";\n\trename -uid \"4A25990E-48AC-BD41-C51A-57AF766DE6B2\";\n\tsetAttr \".bi\" 1;\n\tsetAttr \".vc1\" -type \"float3\" 0 9.9999997e-06 0 ;\n\tsetAttr \".vc2\" -type \"float3\" 9.9999997e-06 9.9999997e-06 0 ;\ncreateNode envCube -n \"envCube1\";\n\trename -uid \"49EDBB91-4AF9-2C2B-202B-239F2AF84496\";\ncreateNode file -n \"file5\";\n\trename -uid \"4455427D-452F-E614-C7BD-C190CB38A85C\";\n\tsetAttr \".ftn\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya//renderData/images/damaged_helmet_specular_env.dds\";\n\tsetAttr \".cs\" -type \"string\" \"sRGB\";\ncreateNode place2dTexture -n \"place2dTexture5\";\n\trename -uid \"FD02D0A6-402A-B5C9-97A9-55B55C64249D\";\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"81BABC79-41A2-295E-6AD3-FA9A53ABE5DC\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 9 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 11 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderUtilityList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 8 \".u\";\nselect -ne :defaultRenderingList1;\nselect -ne :defaultTextureList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -s 6 \".tx\";\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"skinCluster1GroupId.id\" \"SoftCubeShape.iog.og[0].gid\";\nconnectAttr \"skinCluster1Set.mwc\" \"SoftCubeShape.iog.og[0].gco\";\nconnectAttr \"groupId2.id\" \"SoftCubeShape.iog.og[1].gid\";\nconnectAttr \"tweakSet1.mwc\" \"SoftCubeShape.iog.og[1].gco\";\nconnectAttr \"skinCluster1.og[0]\" \"SoftCubeShape.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"SoftCubeShape.twl\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"surfaceSamplingEnvelopeShaderSG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader1SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"GLSLShader2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"CubeSG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"SoftCubeSG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"phong1SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"surfaceSamplingEnvelopeShaderSG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader1SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"GLSLShader2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"CubeSG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"SoftCubeSG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"phong1SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"surfaceSamplingEnvelopeShader.oc\" \"surfaceSamplingEnvelopeShaderSG.ss\"\n\t\t;\nconnectAttr \"surfaceSamplingEnvelopeShaderSG.msg\" \"materialInfo1.sg\";\nconnectAttr \"surfaceSamplingEnvelopeShader.msg\" \"materialInfo1.m\";\nconnectAttr \"normal_map_file.oc\" \"GLSL_PBR_Shader.u_NormalTexture\";\nconnectAttr \"file2.oc\" \"GLSL_PBR_Shader.u_DiffuseEnvTexture\";\nconnectAttr \"file3.oc\" \"GLSL_PBR_Shader.u_SpecularEnvTexture\";\nconnectAttr \"file4.oc\" \"GLSL_PBR_Shader.u_brdfTexture\";\nconnectAttr \"GLSL_PBR_Shader.oc\" \"GLSLShader1SG.ss\";\nconnectAttr \"GLSLShader1SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"GLSL_PBR_Shader.msg\" \"materialInfo2.m\";\nconnectAttr \"GLSL_PBR_Shader.msg\" \"materialInfo2.t\" -na;\nconnectAttr \":defaultColorMgtGlobals.cme\" \"normal_map_file.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"normal_map_file.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"normal_map_file.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"normal_map_file.ws\";\nconnectAttr \"place2dTexture1.c\" \"normal_map_file.c\";\nconnectAttr \"place2dTexture1.tf\" \"normal_map_file.tf\";\nconnectAttr \"place2dTexture1.rf\" \"normal_map_file.rf\";\nconnectAttr \"place2dTexture1.mu\" \"normal_map_file.mu\";\nconnectAttr \"place2dTexture1.mv\" \"normal_map_file.mv\";\nconnectAttr \"place2dTexture1.s\" \"normal_map_file.s\";\nconnectAttr \"place2dTexture1.wu\" \"normal_map_file.wu\";\nconnectAttr \"place2dTexture1.wv\" \"normal_map_file.wv\";\nconnectAttr \"place2dTexture1.re\" \"normal_map_file.re\";\nconnectAttr \"place2dTexture1.of\" \"normal_map_file.of\";\nconnectAttr \"place2dTexture1.r\" \"normal_map_file.ro\";\nconnectAttr \"place2dTexture1.n\" \"normal_map_file.n\";\nconnectAttr \"place2dTexture1.vt1\" \"normal_map_file.vt1\";\nconnectAttr \"place2dTexture1.vt2\" \"normal_map_file.vt2\";\nconnectAttr \"place2dTexture1.vt3\" \"normal_map_file.vt3\";\nconnectAttr \"place2dTexture1.vc1\" \"normal_map_file.vc1\";\nconnectAttr \"place2dTexture1.o\" \"normal_map_file.uv\";\nconnectAttr \"place2dTexture1.ofs\" \"normal_map_file.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file2.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file2.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file2.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file2.ws\";\nconnectAttr \"place2dTexture2.c\" \"file2.c\";\nconnectAttr \"place2dTexture2.tf\" \"file2.tf\";\nconnectAttr \"place2dTexture2.rf\" \"file2.rf\";\nconnectAttr \"place2dTexture2.mu\" \"file2.mu\";\nconnectAttr \"place2dTexture2.mv\" \"file2.mv\";\nconnectAttr \"place2dTexture2.s\" \"file2.s\";\nconnectAttr \"place2dTexture2.wu\" \"file2.wu\";\nconnectAttr \"place2dTexture2.wv\" \"file2.wv\";\nconnectAttr \"place2dTexture2.re\" \"file2.re\";\nconnectAttr \"place2dTexture2.of\" \"file2.of\";\nconnectAttr \"place2dTexture2.r\" \"file2.ro\";\nconnectAttr \"place2dTexture2.n\" \"file2.n\";\nconnectAttr \"place2dTexture2.vt1\" \"file2.vt1\";\nconnectAttr \"place2dTexture2.vt2\" \"file2.vt2\";\nconnectAttr \"place2dTexture2.vt3\" \"file2.vt3\";\nconnectAttr \"place2dTexture2.vc1\" \"file2.vc1\";\nconnectAttr \"place2dTexture2.o\" \"file2.uv\";\nconnectAttr \"place2dTexture2.ofs\" \"file2.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file3.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file3.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file3.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file3.ws\";\nconnectAttr \"place2dTexture3.c\" \"file3.c\";\nconnectAttr \"place2dTexture3.tf\" \"file3.tf\";\nconnectAttr \"place2dTexture3.rf\" \"file3.rf\";\nconnectAttr \"place2dTexture3.mu\" \"file3.mu\";\nconnectAttr \"place2dTexture3.mv\" \"file3.mv\";\nconnectAttr \"place2dTexture3.s\" \"file3.s\";\nconnectAttr \"place2dTexture3.wu\" \"file3.wu\";\nconnectAttr \"place2dTexture3.wv\" \"file3.wv\";\nconnectAttr \"place2dTexture3.re\" \"file3.re\";\nconnectAttr \"place2dTexture3.of\" \"file3.of\";\nconnectAttr \"place2dTexture3.r\" \"file3.ro\";\nconnectAttr \"place2dTexture3.n\" \"file3.n\";\nconnectAttr \"place2dTexture3.vt1\" \"file3.vt1\";\nconnectAttr \"place2dTexture3.vt2\" \"file3.vt2\";\nconnectAttr \"place2dTexture3.vt3\" \"file3.vt3\";\nconnectAttr \"place2dTexture3.vc1\" \"file3.vc1\";\nconnectAttr \"place2dTexture3.o\" \"file3.uv\";\nconnectAttr \"place2dTexture3.ofs\" \"file3.fs\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file4.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file4.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file4.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file4.ws\";\nconnectAttr \"place2dTexture4.c\" \"file4.c\";\nconnectAttr \"place2dTexture4.tf\" \"file4.tf\";\nconnectAttr \"place2dTexture4.rf\" \"file4.rf\";\nconnectAttr \"place2dTexture4.mu\" \"file4.mu\";\nconnectAttr \"place2dTexture4.mv\" \"file4.mv\";\nconnectAttr \"place2dTexture4.s\" \"file4.s\";\nconnectAttr \"place2dTexture4.wu\" \"file4.wu\";\nconnectAttr \"place2dTexture4.wv\" \"file4.wv\";\nconnectAttr \"place2dTexture4.re\" \"file4.re\";\nconnectAttr \"place2dTexture4.of\" \"file4.of\";\nconnectAttr \"place2dTexture4.r\" \"file4.ro\";\nconnectAttr \"place2dTexture4.n\" \"file4.n\";\nconnectAttr \"place2dTexture4.vt1\" \"file4.vt1\";\nconnectAttr \"place2dTexture4.vt2\" \"file4.vt2\";\nconnectAttr \"place2dTexture4.vt3\" \"file4.vt3\";\nconnectAttr \"place2dTexture4.vc1\" \"file4.vc1\";\nconnectAttr \"place2dTexture4.o\" \"file4.uv\";\nconnectAttr \"place2dTexture4.ofs\" \"file4.fs\";\nconnectAttr \"normal_map_file.oa\" \"bump2d1.bv\";\nconnectAttr \"file2.oc\" \"PBR_Shader_no_normal_map.u_DiffuseEnvTexture\";\nconnectAttr \"file3.oc\" \"PBR_Shader_no_normal_map.u_SpecularEnvTexture\";\nconnectAttr \"file4.oc\" \"PBR_Shader_no_normal_map.u_brdfTexture\";\nconnectAttr \"PBR_Shader_no_normal_map.oc\" \"GLSLShader2SG.ss\";\nconnectAttr \"GLSLShader2SG.msg\" \"materialInfo3.sg\";\nconnectAttr \"PBR_Shader_no_normal_map.msg\" \"materialInfo3.m\";\nconnectAttr \"Material.oc\" \"CubeSG.ss\";\nconnectAttr \"CubeSG.msg\" \"materialInfo4.sg\";\nconnectAttr \"Material.msg\" \"materialInfo4.m\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"lambert2SG.msg\" \"materialInfo5.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo5.m\";\nconnectAttr \"GLSL_PBR_Shader1.oc\" \"SoftCubeSG.ss\";\nconnectAttr \"SoftCubeSG.msg\" \"materialInfo6.sg\";\nconnectAttr \"GLSL_PBR_Shader1.msg\" \"materialInfo6.m\";\nconnectAttr \"skinCluster1GroupParts.og\" \"skinCluster1.ip[0].ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1.ip[0].gi\";\nconnectAttr \"bindPose1.msg\" \"skinCluster1.bp\";\nconnectAttr \"joint1.wm\" \"skinCluster1.ma[0]\";\nconnectAttr \"joint1.liw\" \"skinCluster1.lw[0]\";\nconnectAttr \"joint1.obcc\" \"skinCluster1.ifcl[0]\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"skinCluster1GroupId.msg\" \"skinCluster1Set.gn\" -na;\nconnectAttr \"SoftCubeShape.iog.og[0]\" \"skinCluster1Set.dsm\" -na;\nconnectAttr \"skinCluster1.msg\" \"skinCluster1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"skinCluster1GroupParts.ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"SoftCubeShape.iog.og[1]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"SoftCubeShapeOrig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"joint1.msg\" \"bindPose1.m[0]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[0]\";\nconnectAttr \"joint1.bps\" \"bindPose1.wm[0]\";\nconnectAttr \"bump2d2.o\" \"phong1.n\";\nconnectAttr \"envCube1.oc\" \"phong1.rc\";\nconnectAttr \"phong1.oc\" \"phong1SG.ss\";\nconnectAttr \"SoftCubeShape.iog\" \"phong1SG.dsm\" -na;\nconnectAttr \"phong1SG.msg\" \"materialInfo7.sg\";\nconnectAttr \"phong1.msg\" \"materialInfo7.m\";\nconnectAttr \"normal_map_file.oa\" \"bump2d2.bv\";\nconnectAttr \"place3dTexture1.wim\" \"envCube1.pm\";\nconnectAttr \"bump2d2.o\" \"envCube1.n\";\nconnectAttr \"file5.oc\" \"envCube1.ri\";\nconnectAttr \":defaultColorMgtGlobals.cme\" \"file5.cme\";\nconnectAttr \":defaultColorMgtGlobals.cfe\" \"file5.cmcf\";\nconnectAttr \":defaultColorMgtGlobals.cfp\" \"file5.cmcp\";\nconnectAttr \":defaultColorMgtGlobals.wsn\" \"file5.ws\";\nconnectAttr \"place2dTexture5.c\" \"file5.c\";\nconnectAttr \"place2dTexture5.tf\" \"file5.tf\";\nconnectAttr \"place2dTexture5.rf\" \"file5.rf\";\nconnectAttr \"place2dTexture5.mu\" \"file5.mu\";\nconnectAttr \"place2dTexture5.mv\" \"file5.mv\";\nconnectAttr \"place2dTexture5.s\" \"file5.s\";\nconnectAttr \"place2dTexture5.wu\" \"file5.wu\";\nconnectAttr \"place2dTexture5.wv\" \"file5.wv\";\nconnectAttr \"place2dTexture5.re\" \"file5.re\";\nconnectAttr \"place2dTexture5.of\" \"file5.of\";\nconnectAttr \"place2dTexture5.r\" \"file5.ro\";\nconnectAttr \"place2dTexture5.n\" \"file5.n\";\nconnectAttr \"place2dTexture5.vt1\" \"file5.vt1\";\nconnectAttr \"place2dTexture5.vt2\" \"file5.vt2\";\nconnectAttr \"place2dTexture5.vt3\" \"file5.vt3\";\nconnectAttr \"place2dTexture5.vc1\" \"file5.vc1\";\nconnectAttr \"place2dTexture5.o\" \"file5.uv\";\nconnectAttr \"place2dTexture5.ofs\" \"file5.fs\";\nconnectAttr \"surfaceSamplingEnvelopeShaderSG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader1SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"GLSLShader2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"CubeSG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"SoftCubeSG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"phong1SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"surfaceSamplingEnvelopeShader.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"GLSL_PBR_Shader.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"PBR_Shader_no_normal_map.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"Material.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"GLSL_PBR_Shader1.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"phong1.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"place2dTexture1.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture2.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture3.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture4.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"bump2d1.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"bump2d2.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place3dTexture1.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"place2dTexture5.msg\" \":defaultRenderUtilityList1.u\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"normal_map_file.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file2.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file3.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file4.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"envCube1.msg\" \":defaultTextureList1.tx\" -na;\nconnectAttr \"file5.msg\" \":defaultTextureList1.tx\" -na;\n// End of CubeNormalBakingRigTestPhong.ma\n"
  },
  {
    "path": "maya/scenes/skin/DoubleJointCubeAnim.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: DoubleJointCubeAnim.ma\n//Last modified: Sun, Feb 03, 2019 12:02:20 PM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"F3C5CE53-47D9-F98B-CAED-179A9682A05F\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1.753512703622732 2.4324024321431605 4.1488531752128797 ;\n\tsetAttr \".r\" -type \"double3\" -30.338352729716181 -3.4000000000000523 -3.9827035954860895e-16 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"04781A62-4DE3-519F-BD75-E78552DDA7AD\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 4.8156329021889626;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 2 0 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"B8AE84CE-4BB6-2F1C-48AD-F99269ACD7AC\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"26F7B0E3-4048-3227-6C55-F2AB5F8150EE\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"940E81C2-49CE-7FDA-3357-36BBB1A76872\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 2 0 1000.1019997980206 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"96B57E0B-40EA-6134-1B01-A68AE769B135\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1019997980206;\n\tsetAttr \".ow\" 2.3659759635308766;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".tp\" -type \"double3\" 2 0 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"CAF8C6DA-472C-B6E3-95BF-89A09B142EC3\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"6BDD02CA-41E7-39B6-9E9A-DB9E368D185A\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"skinned_cube1\";\n\trename -uid \"D0FE15FC-45C7-BE02-E3C2-289FE9C27635\";\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\ncreateNode mesh -n \"skinned_cube1Shape\" -p \"skinned_cube1\";\n\trename -uid \"3B98320F-46DB-F2CC-0BD9-0EAD34ACA4B1\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\ncreateNode mesh -n \"skinned_cube1Shape1Orig\" -p \"skinned_cube1\";\n\trename -uid \"40A71D2A-4C26-E87E-0513-1093044067B5\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode joint -n \"joint1\";\n\trename -uid \"01B99926-4FD1-A7BF-3D88-9E8E57A9AE0D\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".radi\" 0.55172413793103448;\ncreateNode transform -n \"reference_cube\";\n\trename -uid \"9315DD90-46AA-AB67-4413-02A7CD3910AC\";\n\tsetAttr \".t\" -type \"double3\" 1 0 0 ;\ncreateNode mesh -n \"reference_cubeShape\" -p \"reference_cube\";\n\trename -uid \"079C35BB-4EB3-9DD8-F684-B9BEF6CB318C\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"skinned_cube2\";\n\trename -uid \"5560F7D5-4B60-FFBB-3267-A596DEAA00D6\";\n\tsetAttr \".t\" -type \"double3\" 2 0 0 ;\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\ncreateNode mesh -n \"skinned_cube2Shape\" -p \"skinned_cube2\";\n\trename -uid \"8AE6902A-41E9-90F0-F129-BDB8B892BF1D\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\ncreateNode mesh -n \"skinned_cube2ShapeOrig\" -p \"skinned_cube2\";\n\trename -uid \"95285E86-444E-7118-AC31-5098B28CDD7A\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode joint -n \"joint2\";\n\trename -uid \"F4020191-4FCE-1EA5-B1E0-C8B0AAA72517\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 2 0 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode transform -n \"camera1\";\n\trename -uid \"BD81E22A-4A69-6FA3-DD83-9EA6E21A86C2\";\n\tsetAttr \".t\" -type \"double3\" 3.3741965558239753 3.8855743671432306 5.6887908023581053 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"F353DCFE-4CA4-4D6F-A570-32984E0533E1\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 7.2817274869541651;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.97760344827586199 0 0 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"9977B416-4438-8720-0990-10910D1A4F6D\";\n\tsetAttr -s 4 \".lnk\";\n\tsetAttr -s 4 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"3335FCA4-4FD4-E501-D75D-36AAD172AB4D\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"5751D39D-4885-1862-BD50-0182D23842E9\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"EE250B97-45F8-3860-205F-B1B106AEC7D2\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"1FEFAF39-4FED-C0DD-2DC1-7B9EE3D74522\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"1240E045-46B6-DA1D-8B2C-51A7D972299D\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"CBF08827-4C49-AD1C-12D5-2CA846D5FCCF\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"6CA8CA14-4FC6-3AE4-71F8-46A63962B68C\";\n\tsetAttr \".cuv\" 4;\ncreateNode skinCluster -n \"skinCluster1\";\n\trename -uid \"F57E828B-425D-BE0D-6486-F9B1196028B0\";\n\tsetAttr -s 8 \".wl\";\n\tsetAttr \".wl[0:7].w\"\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1;\n\tsetAttr \".pm[0]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".dpf[0]\"  4;\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".mi\" 1;\n\tsetAttr \".ucm\" yes;\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"69C21DDE-45A0-2766-C6A6-419B57BAD2A8\";\ncreateNode objectSet -n \"skinCluster1Set\";\n\trename -uid \"90AFEC7B-49B3-5486-B909-1DB72A070261\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster1GroupId\";\n\trename -uid \"6AD62A68-4A74-A53C-28E7-21954C2178B4\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster1GroupParts\";\n\trename -uid \"980DC6AA-4335-A049-D145-70A8245548E6\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"741C32E7-414E-95F0-8AC6-1FA8AF6B4A36\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"4444F2D1-424C-FD37-D1DB-6DA92D0B5937\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"FB4B47FD-4DA6-7DE5-4DB9-2CA0258BE766\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode dagPose -n \"bindPose1\";\n\trename -uid \"0DAA893E-4659-1544-8EFE-CE84B0B01AAC\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".bp\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"A6AF2E49-434A-67C2-399A-97ACAFC7D07D\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n\"\n\t\t+ \"            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\"\n\t\t+ \"\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 0\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 1\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 1\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 1\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n\"\n\t\t+ \"            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n\"\n\t\t+ \"            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n\"\n\t\t+ \"            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n\"\n\t\t+ \"            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n\"\n\t\t+ \"        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n\"\n\t\t+ \"            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n\"\n\t\t+ \"            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n\"\n\t\t+ \"            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"2BC912CD-4D5B-7564-EC84-6CAF842362A5\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 100 -ast 1 -aet 100 \";\n\tsetAttr \".st\" 6;\ncreateNode polyCube -n \"polyCube2\";\n\trename -uid \"42106553-4657-4082-2F00-3F96135DB009\";\n\tsetAttr \".cuv\" 4;\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"B197126C-4B09-6214-58DC-A380766503B2\";\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\n\tsetAttr \".it\" -type \"float3\" 0.45180723 0.45180723 0.45180723 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"21672FAE-4917-7948-AB96-AD96BB8C8A7D\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"8725FC6A-4B57-F326-5C5C-FA8C58F88321\";\ncreateNode animCurveTL -n \"joint1_translateX\";\n\trename -uid \"63BC0FD1-4341-E02D-48EC-74976A7E51F2\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"joint1_translateZ\";\n\trename -uid \"C56D6B74-4131-2459-F377-27808CD39915\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 1;\ncreateNode animCurveTL -n \"joint1_translateY\";\n\trename -uid \"8A1C7675-4122-CC3A-78DD-A4902EE5F354\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode lambert -n \"lambert3\";\n\trename -uid \"1232B618-4C5C-B225-7334-C5B1B2A39342\";\n\tsetAttr \".c\" -type \"float3\" 0 0.34614992 1 ;\n\tsetAttr \".it\" -type \"float3\" 0.42168674 0.42168674 0.42168674 ;\ncreateNode shadingEngine -n \"lambert3SG\";\n\trename -uid \"B1677417-4840-2E95-8E9B-ABB6697044B3\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"55E0D0F9-4E7E-7D22-4C43-2FAACC65AF7F\";\ncreateNode skinCluster -n \"skinCluster2\";\n\trename -uid \"5E950F6F-4697-6197-6141-508ADEA90EE6\";\n\tsetAttr -s 8 \".wl\";\n\tsetAttr \".wl[0:7].w\"\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1;\n\tsetAttr \".pm[0]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 -2 0 0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 2 0 0 1;\n\tsetAttr \".dpf[0]\"  4;\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".mi\" 1;\n\tsetAttr \".ucm\" yes;\ncreateNode tweak -n \"tweak2\";\n\trename -uid \"26E0E43A-40F9-FAD2-598C-B2BA3726AD93\";\ncreateNode objectSet -n \"skinCluster2Set\";\n\trename -uid \"07F2FC50-4CDB-AC38-6E0F-F3A5361F7A97\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster2GroupId\";\n\trename -uid \"8FD19EE1-4BE4-FBB9-67AD-AD8CA2318C35\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster2GroupParts\";\n\trename -uid \"64A2654D-468F-824A-83C9-518781F27737\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet2\";\n\trename -uid \"255A1423-4C7E-3E34-B94C-E7A46D55B398\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId4\";\n\trename -uid \"51BAFD36-477C-1E8E-74D1-92BECB0BA5E7\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts4\";\n\trename -uid \"477AA457-42FE-9795-EB78-7787A83DDEC8\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode dagPose -n \"bindPose2\";\n\trename -uid \"6CB32DE1-441A-5DD5-C3DE-0BB5B1809F10\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".bp\" yes;\ncreateNode animCurveTL -n \"joint2_translateX\";\n\trename -uid \"D5479D86-4B69-70DB-D290-6AAE78D1E741\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 2 20 2;\ncreateNode animCurveTL -n \"joint2_translateY\";\n\trename -uid \"E1003D32-4ECF-87CD-3C3E-9FA1F0BC1D97\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"joint2_translateZ\";\n\trename -uid \"DFFAD210-430F-D0D2-CD9C-C7867A1A856D\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 1;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"C44893AB-422B-4F14-3F51-138941D37691\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 100;\n\tsetAttr \".unw\" 100;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 6 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :lambert1;\n\tsetAttr \".c\" -type \"float3\" 0 1 0 ;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinned_cube1Shape.iog.og[0].gid\";\nconnectAttr \"skinCluster1Set.mwc\" \"skinned_cube1Shape.iog.og[0].gco\";\nconnectAttr \"groupId2.id\" \"skinned_cube1Shape.iog.og[1].gid\";\nconnectAttr \"tweakSet1.mwc\" \"skinned_cube1Shape.iog.og[1].gco\";\nconnectAttr \"skinCluster1.og[0]\" \"skinned_cube1Shape.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"skinned_cube1Shape.twl\";\nconnectAttr \"polyCube1.out\" \"skinned_cube1Shape1Orig.i\";\nconnectAttr \"joint1_translateX.o\" \"joint1.tx\";\nconnectAttr \"joint1_translateZ.o\" \"joint1.tz\";\nconnectAttr \"joint1_translateY.o\" \"joint1.ty\";\nconnectAttr \"polyCube2.out\" \"reference_cubeShape.i\";\nconnectAttr \"skinCluster2GroupId.id\" \"skinned_cube2Shape.iog.og[0].gid\";\nconnectAttr \"skinCluster2Set.mwc\" \"skinned_cube2Shape.iog.og[0].gco\";\nconnectAttr \"groupId4.id\" \"skinned_cube2Shape.iog.og[1].gid\";\nconnectAttr \"tweakSet2.mwc\" \"skinned_cube2Shape.iog.og[1].gco\";\nconnectAttr \"skinCluster2.og[0]\" \"skinned_cube2Shape.i\";\nconnectAttr \"tweak2.vl[0].vt[0]\" \"skinned_cube2Shape.twl\";\nconnectAttr \"joint2_translateX.o\" \"joint2.tx\";\nconnectAttr \"joint2_translateY.o\" \"joint2.ty\";\nconnectAttr \"joint2_translateZ.o\" \"joint2.tz\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"skinCluster1GroupParts.og\" \"skinCluster1.ip[0].ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1.ip[0].gi\";\nconnectAttr \"bindPose1.msg\" \"skinCluster1.bp\";\nconnectAttr \"joint1.wm\" \"skinCluster1.ma[0]\";\nconnectAttr \"joint1.liw\" \"skinCluster1.lw[0]\";\nconnectAttr \"joint1.obcc\" \"skinCluster1.ifcl[0]\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"skinCluster1GroupId.msg\" \"skinCluster1Set.gn\" -na;\nconnectAttr \"skinned_cube1Shape.iog.og[0]\" \"skinCluster1Set.dsm\" -na;\nconnectAttr \"skinCluster1.msg\" \"skinCluster1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"skinCluster1GroupParts.ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"skinned_cube1Shape.iog.og[1]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"skinned_cube1Shape1Orig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"joint1.msg\" \"bindPose1.m[0]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[0]\";\nconnectAttr \"joint1.bps\" \"bindPose1.wm[0]\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"skinned_cube1Shape.iog\" \"lambert2SG.dsm\" -na;\nconnectAttr \"lambert2SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo1.m\";\nconnectAttr \"lambert3.oc\" \"lambert3SG.ss\";\nconnectAttr \"skinned_cube2Shape.iog\" \"lambert3SG.dsm\" -na;\nconnectAttr \"lambert3SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"lambert3.msg\" \"materialInfo2.m\";\nconnectAttr \"skinCluster2GroupParts.og\" \"skinCluster2.ip[0].ig\";\nconnectAttr \"skinCluster2GroupId.id\" \"skinCluster2.ip[0].gi\";\nconnectAttr \"bindPose2.msg\" \"skinCluster2.bp\";\nconnectAttr \"joint2.wm\" \"skinCluster2.ma[0]\";\nconnectAttr \"joint2.liw\" \"skinCluster2.lw[0]\";\nconnectAttr \"joint2.obcc\" \"skinCluster2.ifcl[0]\";\nconnectAttr \"groupParts4.og\" \"tweak2.ip[0].ig\";\nconnectAttr \"groupId4.id\" \"tweak2.ip[0].gi\";\nconnectAttr \"skinCluster2GroupId.msg\" \"skinCluster2Set.gn\" -na;\nconnectAttr \"skinned_cube2Shape.iog.og[0]\" \"skinCluster2Set.dsm\" -na;\nconnectAttr \"skinCluster2.msg\" \"skinCluster2Set.ub[0]\";\nconnectAttr \"tweak2.og[0]\" \"skinCluster2GroupParts.ig\";\nconnectAttr \"skinCluster2GroupId.id\" \"skinCluster2GroupParts.gi\";\nconnectAttr \"groupId4.msg\" \"tweakSet2.gn\" -na;\nconnectAttr \"skinned_cube2Shape.iog.og[1]\" \"tweakSet2.dsm\" -na;\nconnectAttr \"tweak2.msg\" \"tweakSet2.ub[0]\";\nconnectAttr \"skinned_cube2ShapeOrig.w\" \"groupParts4.ig\";\nconnectAttr \"groupId4.id\" \"groupParts4.gi\";\nconnectAttr \"joint2.msg\" \"bindPose2.m[0]\";\nconnectAttr \"bindPose2.w\" \"bindPose2.p[0]\";\nconnectAttr \"joint2.bps\" \"bindPose2.wm[0]\";\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert3SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert3.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"reference_cubeShape.iog\" \":initialShadingGroup.dsm\" -na;\n// End of DoubleJointCubeAnim.ma\n"
  },
  {
    "path": "maya/scenes/skin/DoubleJointCubeParentedAnim.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: DoubleJointCubeParentedAnim.ma\n//Last modified: Sun, Feb 03, 2019 12:02:30 PM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"F3C5CE53-47D9-F98B-CAED-179A9682A05F\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1.0419550849306305 -0.61033453958066963 4.0062690407902855 ;\n\tsetAttr \".r\" -type \"double3\" 8.6616472702820069 0.59999999999927311 9.9397783839289504e-17 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"04781A62-4DE3-519F-BD75-E78552DDA7AD\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 4.0527102174410841;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 1 0 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"B8AE84CE-4BB6-2F1C-48AD-F99269ACD7AC\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"26F7B0E3-4048-3227-6C55-F2AB5F8150EE\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"940E81C2-49CE-7FDA-3357-36BBB1A76872\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 2 0 1000.1019997980206 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"96B57E0B-40EA-6134-1B01-A68AE769B135\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1019997980206;\n\tsetAttr \".ow\" 2.3659759635308766;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".tp\" -type \"double3\" 2 0 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"CAF8C6DA-472C-B6E3-95BF-89A09B142EC3\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"6BDD02CA-41E7-39B6-9E9A-DB9E368D185A\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode joint -n \"joint1\";\n\trename -uid \"01B99926-4FD1-A7BF-3D88-9E8E57A9AE0D\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".radi\" 0.55172413793103448;\ncreateNode transform -n \"skinned_cube1\" -p \"joint1\";\n\trename -uid \"D0FE15FC-45C7-BE02-E3C2-289FE9C27635\";\ncreateNode mesh -n \"skinned_cube1Shape\" -p \"skinned_cube1\";\n\trename -uid \"3B98320F-46DB-F2CC-0BD9-0EAD34ACA4B1\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode mesh -n \"skinned_cube1Shape1Orig\" -p \"skinned_cube1\";\n\trename -uid \"40A71D2A-4C26-E87E-0513-1093044067B5\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"reference_cube\";\n\trename -uid \"9315DD90-46AA-AB67-4413-02A7CD3910AC\";\n\tsetAttr \".t\" -type \"double3\" 1 0 0 ;\ncreateNode mesh -n \"reference_cubeShape\" -p \"reference_cube\";\n\trename -uid \"079C35BB-4EB3-9DD8-F684-B9BEF6CB318C\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode joint -n \"joint2\";\n\trename -uid \"F4020191-4FCE-1EA5-B1E0-C8B0AAA72517\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 2 0 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode transform -n \"skinned_cube2\" -p \"joint2\";\n\trename -uid \"5560F7D5-4B60-FFBB-3267-A596DEAA00D6\";\ncreateNode mesh -n \"skinned_cube2Shape\" -p \"skinned_cube2\";\n\trename -uid \"8AE6902A-41E9-90F0-F129-BDB8B892BF1D\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode mesh -n \"skinned_cube2ShapeOrig\" -p \"skinned_cube2\";\n\trename -uid \"95285E86-444E-7118-AC31-5098B28CDD7A\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"2A5E864E-4C8A-B447-3650-119521FA77FE\";\n\tsetAttr \".t\" -type \"double3\" 4.0490570057204254 4.8713156454536435 6.4542176594920306 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"30EA9153-4F0B-0AB3-1EF9-5096FCA8B2B2\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 8.6412568944288672;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 1 0 0 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"37FBEFAD-46EA-7974-75AC-3EBDD0365AA7\";\n\tsetAttr -s 4 \".lnk\";\n\tsetAttr -s 4 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"3237782A-4C07-2E71-8147-6FBF2D7E2EF2\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"2E4AD37A-458A-212B-C10E-25AF9BA658BB\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"00929AAC-4384-4AAD-E361-4285BF7EA1CB\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"1FEFAF39-4FED-C0DD-2DC1-7B9EE3D74522\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"09236543-4690-B1A3-2406-E98FEA76E2A9\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"CBF08827-4C49-AD1C-12D5-2CA846D5FCCF\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"6CA8CA14-4FC6-3AE4-71F8-46A63962B68C\";\n\tsetAttr \".cuv\" 4;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"A6AF2E49-434A-67C2-399A-97ACAFC7D07D\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n\"\n\t\t+ \"            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\"\n\t\t+ \"\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 0\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 1\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 1\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 1\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n\"\n\t\t+ \"            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n\"\n\t\t+ \"            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n\"\n\t\t+ \"            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n\"\n\t\t+ \"            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n\"\n\t\t+ \"        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n\"\n\t\t+ \"            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n\"\n\t\t+ \"            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n\"\n\t\t+ \"            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"2BC912CD-4D5B-7564-EC84-6CAF842362A5\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 100 -ast 1 -aet 100 \";\n\tsetAttr \".st\" 6;\ncreateNode polyCube -n \"polyCube2\";\n\trename -uid \"42106553-4657-4082-2F00-3F96135DB009\";\n\tsetAttr \".cuv\" 4;\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"B197126C-4B09-6214-58DC-A380766503B2\";\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\n\tsetAttr \".it\" -type \"float3\" 0.45180723 0.45180723 0.45180723 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"21672FAE-4917-7948-AB96-AD96BB8C8A7D\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"8725FC6A-4B57-F326-5C5C-FA8C58F88321\";\ncreateNode animCurveTL -n \"joint1_translateX\";\n\trename -uid \"63BC0FD1-4341-E02D-48EC-74976A7E51F2\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"joint1_translateZ\";\n\trename -uid \"C56D6B74-4131-2459-F377-27808CD39915\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 1;\ncreateNode animCurveTL -n \"joint1_translateY\";\n\trename -uid \"8A1C7675-4122-CC3A-78DD-A4902EE5F354\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode lambert -n \"lambert3\";\n\trename -uid \"1232B618-4C5C-B225-7334-C5B1B2A39342\";\n\tsetAttr \".c\" -type \"float3\" 0 0.34614992 1 ;\n\tsetAttr \".it\" -type \"float3\" 0.42168674 0.42168674 0.42168674 ;\ncreateNode shadingEngine -n \"lambert3SG\";\n\trename -uid \"B1677417-4840-2E95-8E9B-ABB6697044B3\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"55E0D0F9-4E7E-7D22-4C43-2FAACC65AF7F\";\ncreateNode animCurveTL -n \"joint2_translateX\";\n\trename -uid \"D5479D86-4B69-70DB-D290-6AAE78D1E741\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 2 20 2;\ncreateNode animCurveTL -n \"joint2_translateY\";\n\trename -uid \"E1003D32-4ECF-87CD-3C3E-9FA1F0BC1D97\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"joint2_translateZ\";\n\trename -uid \"DFFAD210-430F-D0D2-CD9C-C7867A1A856D\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 1;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"A36067C2-4AD6-9C5F-18CF-DCBA1E0F26E8\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 94;\n\tsetAttr \".unw\" 94;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 6 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :lambert1;\n\tsetAttr \".c\" -type \"float3\" 0 1 0 ;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"joint1_translateX.o\" \"joint1.tx\";\nconnectAttr \"joint1_translateZ.o\" \"joint1.tz\";\nconnectAttr \"joint1_translateY.o\" \"joint1.ty\";\nconnectAttr \"skinned_cube1Shape1Orig.w\" \"skinned_cube1Shape.i\";\nconnectAttr \"polyCube1.out\" \"skinned_cube1Shape1Orig.i\";\nconnectAttr \"polyCube2.out\" \"reference_cubeShape.i\";\nconnectAttr \"joint2_translateX.o\" \"joint2.tx\";\nconnectAttr \"joint2_translateY.o\" \"joint2.ty\";\nconnectAttr \"joint2_translateZ.o\" \"joint2.tz\";\nconnectAttr \"skinned_cube2ShapeOrig.w\" \"skinned_cube2Shape.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"skinned_cube1Shape.iog\" \"lambert2SG.dsm\" -na;\nconnectAttr \"lambert2SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo1.m\";\nconnectAttr \"lambert3.oc\" \"lambert3SG.ss\";\nconnectAttr \"skinned_cube2Shape.iog\" \"lambert3SG.dsm\" -na;\nconnectAttr \"lambert3SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"lambert3.msg\" \"materialInfo2.m\";\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert3SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert3.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"reference_cubeShape.iog\" \":initialShadingGroup.dsm\" -na;\n// End of DoubleJointCubeParentedAnim.ma\n"
  },
  {
    "path": "maya/scenes/skin/DoubleMeshSkinWeldTest.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: DoubleMeshSkinWeldTest.ma\n//Last modified: Sun, Feb 03, 2019 12:02:45 PM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"DDE980E5-41DB-F102-AA3E-1D9878B2ADEF\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -3.697833133150036 3.2462613956090505 3.71633287098151 ;\n\tsetAttr \".r\" -type \"double3\" -36.93835272962049 -30.599999999999451 1.8475655781177082e-15 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"F21D88BF-4355-5C8D-C41F-05B5C4B08622\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 5.4018342752931492;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" -1.5000000000000004 0 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"242DD70A-4917-9D04-9466-BC8FD9F79142\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"A187C64E-42F5-C640-B6DC-55A9F1AC5F16\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"FC607962-4170-B05F-5796-4EAA8A5FC84F\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 3 1000.104499539923 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"C76E3A00-4AF8-8472-A83B-47AC3B0E5D31\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.104499539923;\n\tsetAttr \".ow\" 12.351641832239252;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0 3 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"4A01B99E-4B22-BB0D-8C2C-4EB309078DB4\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"95EE3903-4164-AB02-362C-18B55EB39C3C\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"tri1\";\n\trename -uid \"3966D4D7-4628-ACF9-2FEB-378DCB874F61\";\n\tsetAttr \".t\" -type \"double3\" 0 1 0 ;\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\ncreateNode mesh -n \"triShape1\" -p \"tri1\";\n\trename -uid \"CFC299B4-40C4-13E5-C9E1-DBB318292A86\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr -av \".iog[0].og[0].gco\";\n\tsetAttr -av \".iog[0].og[1].gco\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\ncreateNode mesh -n \"triShape1Orig1\" -p \"tri1\";\n\trename -uid \"6D7D9E02-45C9-92ED-3EF4-8496EC1FBA92\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 3 \".uvst[0].uvsp[0:2]\" -type \"float2\" 0.5 0 0.375 0.25\n\t\t 0.625 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 3 \".vt[0:2]\"  0 -1 0.5 -0.5 1 0.5 0.5 1 0.5;\n\tsetAttr -s 3 \".ed[0:2]\"  1 2 0 0 1 0 0 2 0;\n\tsetAttr -ch 3 \".fc[0]\" -type \"polyFaces\" \n\t\tf 3 2 -1 -2\n\t\tmu 0 3 0 2 1;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\ncreateNode transform -n \"tri2\";\n\trename -uid \"428E277D-4B2F-D9B5-99CF-0E89DA6EBF46\";\n\tsetAttr \".t\" -type \"double3\" 0 3 0 ;\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\ncreateNode mesh -n \"triShape2\" -p \"tri2\";\n\trename -uid \"25A2E7F8-4195-39D5-2DE4-3C8C0EDA9504\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\ncreateNode mesh -n \"triShape2Orig2\" -p \"tri2\";\n\trename -uid \"96EE8EA3-4C66-7284-2FB2-B1962A5E7F31\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 3 \".uvst[0].uvsp[0:2]\" -type \"float2\" 0.375 0 0.625 0 0.5\n\t\t 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 3 \".vt[0:2]\"  -0.5 -1 0.5 0.5 -1 0.5 0 1 0.5;\n\tsetAttr -s 3 \".ed[0:2]\"  0 1 0 0 2 0 1 2 0;\n\tsetAttr -ch 3 \".fc[0]\" -type \"polyFaces\" \n\t\tf 3 2 -2 0\n\t\tmu 0 3 1 2 0;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\ncreateNode transform -n \"pPlane1\";\n\trename -uid \"11567299-43C5-FFC2-AAB6-23A3A56CFA51\";\n\tsetAttr \".t\" -type \"double3\" -1.5 0 0 ;\n\tsetAttr \".s\" -type \"double3\" 1.025 1 1 ;\n\tsetAttr \".rp\" -type \"double3\" 1.5 0 0 ;\n\tsetAttr \".sp\" -type \"double3\" 1.5 0 0 ;\n\tsetAttr \".spt\" -type \"double3\" -0.0038432907071799111 0 0 ;\ncreateNode mesh -n \"pPlaneShape1\" -p \"pPlane1\";\n\trename -uid \"279E70F5-4710-4710-B460-91BD26C6C14B\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode joint -n \"joint1\";\n\trename -uid \"C83E9292-4134-A36F-C38D-26A20F0F867C\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".r\" -type \"double3\" 0 0 36 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 89.999999999999986 ;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 0 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint2\" -p \"joint1\";\n\trename -uid \"FF900B0F-4A83-91CE-1C92-B9B75E0B879B\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 1;\n\tsetAttr \".t\" -type \"double3\" 1 2.2204460492503131e-16 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 1 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint3\" -p \"joint2\";\n\trename -uid \"6195679E-4CDD-7E74-C617-50883E532CD8\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 2;\n\tsetAttr \".t\" -type \"double3\" 1 2.2204460492503131e-16 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 2 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint4\" -p \"joint3\";\n\trename -uid \"1182DD10-4280-571A-68FF-A285CD429D0C\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 3;\n\tsetAttr \".t\" -type \"double3\" 1 2.2204460492503131e-16 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 3 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint5\" -p \"joint4\";\n\trename -uid \"32B98F59-444C-8DCA-25D1-AD86013F1B83\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 4;\n\tsetAttr \".t\" -type \"double3\" 1 2.2204460492503131e-16 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 -89.999999999999986 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 4 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode transform -n \"camera1\";\n\trename -uid \"04982279-4B49-6C1B-4EEA-C5A5D609096B\";\n\tsetAttr \".t\" -type \"double3\" 0.85697528120834798 3.9651044415825316 4.740546983359593 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"9B51D10B-433C-5A1D-1020-4BAEDD48EBF2\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 6.685738232491703;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" -2.4828668059269967 0.4605628532050583 0 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"0A56A3C6-4ABA-1E29-840B-529D88BFFAF6\";\n\tsetAttr -s 4 \".lnk\";\n\tsetAttr -s 4 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"0245EE05-4CCC-6E25-12A7-EDA0663B16D1\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"A59BE86D-4A08-F0BD-ADEF-D09F08FFC410\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"19FD6ADF-446D-75C3-BC09-309226BBD19A\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"8A2609F5-4BA4-3390-FEC8-7CACD700422B\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"1DCFB953-4FF4-49C6-B8C3-FDA9042BE907\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"7B4B4B3E-4067-5379-7D47-838C914EF973\";\n\tsetAttr \".g\" yes;\ncreateNode tweak -n \"tweak2\";\n\trename -uid \"8D288178-4101-B391-5E6A-70A3EE6F83C4\";\n\tsetAttr -s 3 \".vl[0].vt[0:2]\" -type \"float3\"  0 0 -0.5 0 0 -0.5 \n\t\t0 0 -0.5;\ncreateNode objectSet -n \"tweakSet2\";\n\trename -uid \"956F99E6-4432-B9D6-42ED-F79836F7E8F0\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId4\";\n\trename -uid \"5A7BE6A4-44FB-ECC7-6864-74AB1BE77F85\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts4\";\n\trename -uid \"6584208F-4B36-6F18-6FDD-23AF15575FF8\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"A6C69AA2-41A9-2C6F-093B-168F74D8491E\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 1\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"CFCA14B7-4C5A-978C-7A25-3B97EE7B9502\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"05F7719C-4938-F8F0-9718-78955320BA9B\";\n\tsetAttr -s 3 \".vl[0].vt[0:2]\" -type \"float3\"  0 0 -0.5 0 0 -0.5 \n\t\t0 0 -0.5;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"2753CDB3-466C-A929-90AB-8DB3BA7E49F4\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"9BCA8C57-4F5F-F57E-6A1E-E5A43C5BBDC3\";\n\tsetAttr \".ihi\" 0;\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"282EE377-4818-35B4-E086-B89D17409DE6\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode phong -n \"phong1\";\n\trename -uid \"A6EC3C54-4F3F-9855-1285-5E93496228C6\";\n\tsetAttr \".c\" -type \"float3\" 0 1 0 ;\ncreateNode shadingEngine -n \"phong1SG\";\n\trename -uid \"EE9C6877-44D8-12A0-E051-3BA6CB848F1F\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"0213192C-407B-2F6F-DA87-7B9F2B579394\";\ncreateNode phong -n \"phong2\";\n\trename -uid \"B2D5B810-4A6B-C560-E722-0BA459DB24DE\";\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\ncreateNode shadingEngine -n \"phong2SG\";\n\trename -uid \"CD81862A-4106-FF53-6A54-3083A1A058FB\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"60987E05-40F0-2F73-6CDB-63B79CA96B7D\";\ncreateNode nodeGraphEditorInfo -n \"MayaNodeEditorSavedTabsInfo\";\n\trename -uid \"FF4C1A86-46DC-7AA5-8EEB-8B8DADD19E13\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -340.57339862925318 -600.33030675999623 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 1797.2416674570698 470.25789850493112 ;\n\tsetAttr -s 10 \".tgi[0].ni\";\n\tsetAttr \".tgi[0].ni[0].x\" 174.70588684082031;\n\tsetAttr \".tgi[0].ni[0].y\" 409.24368286132813;\n\tsetAttr \".tgi[0].ni[0].nvs\" 18305;\n\tsetAttr \".tgi[0].ni[1].x\" 88.151283264160156;\n\tsetAttr \".tgi[0].ni[1].y\" -200.33613586425781;\n\tsetAttr \".tgi[0].ni[1].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[2].x\" 498.65545654296875;\n\tsetAttr \".tgi[0].ni[2].y\" 395.6302490234375;\n\tsetAttr \".tgi[0].ni[2].nvs\" 18305;\n\tsetAttr \".tgi[0].ni[3].x\" 1245.7142333984375;\n\tsetAttr \".tgi[0].ni[3].y\" -28.571428298950195;\n\tsetAttr \".tgi[0].ni[3].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[4].x\" -231.59663391113281;\n\tsetAttr \".tgi[0].ni[4].y\" 377.3109130859375;\n\tsetAttr \".tgi[0].ni[4].nvs\" 18305;\n\tsetAttr \".tgi[0].ni[5].x\" 559.579833984375;\n\tsetAttr \".tgi[0].ni[5].y\" -156.89076232910156;\n\tsetAttr \".tgi[0].ni[5].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[6].x\" 564.62188720703125;\n\tsetAttr \".tgi[0].ni[6].y\" -5.0420174598693848;\n\tsetAttr \".tgi[0].ni[6].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[7].x\" 1245.7142333984375;\n\tsetAttr \".tgi[0].ni[7].y\" -130;\n\tsetAttr \".tgi[0].ni[7].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[8].x\" 862.100830078125;\n\tsetAttr \".tgi[0].ni[8].y\" 370.50418090820313;\n\tsetAttr \".tgi[0].ni[8].nvs\" 18305;\n\tsetAttr \".tgi[0].ni[9].x\" 1211.260498046875;\n\tsetAttr \".tgi[0].ni[9].y\" 361.260498046875;\n\tsetAttr \".tgi[0].ni[9].nvs\" 18305;\ncreateNode polyPlane -n \"polyPlane1\";\n\trename -uid \"35F5634F-49CB-DE0C-9EC4-B08153018D44\";\n\tsetAttr \".w\" 3;\n\tsetAttr \".sw\" 1;\n\tsetAttr \".sh\" 1;\n\tsetAttr \".cuv\" 2;\ncreateNode dagPose -n \"bindPose1\";\n\trename -uid \"7D6C60A3-4748-1EC8-FEDF-4DADE290438F\";\n\tsetAttr -s 5 \".wm\";\n\tsetAttr -s 6 \".xm\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0.70710678118654746 0.70710678118654757 1 1 1 yes;\n\tsetAttr \".xm[1]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 2.2204460492503131e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[2]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 2.2204460492503131e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[3]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 2.2204460492503131e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[4]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 2.2204460492503131e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -0.70710678118654746 0.70710678118654757 1\n\t\t 1 1 yes;\n\tsetAttr \".xm[5]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 2.2204460492503131e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -0.70710678118654746 0.70710678118654757 1\n\t\t 1 1 yes;\n\tsetAttr -s 5 \".m\";\n\tsetAttr -s 5 \".p\";\n\tsetAttr \".bp\" yes;\ncreateNode skinCluster -n \"skinCluster1\";\n\trename -uid \"EE067722-416D-E444-7F9D-D0BC21D404B2\";\n\tsetAttr -s 3 \".wl\";\n\tsetAttr \".wl[0:2].w\"\n\t\t1 0 1\n\t\t4 0 0.019230769230769221 1 0.48076923076923084 2 0.48076923076923073 \n\t\t3 0.019230769230769221\n\t\t4 0 0.019230769230769221 1 0.48076923076923084 2 0.48076923076923073 \n\t\t3 0.019230769230769221;\n\tsetAttr -s 5 \".pm\";\n\tsetAttr \".pm[0]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 0 0 1;\n\tsetAttr \".pm[1]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -1 -2.2204460492503131e-16 0 1;\n\tsetAttr \".pm[2]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -2 -4.4408920985006262e-16 0 1;\n\tsetAttr \".pm[3]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -3 -6.6613381477509392e-16 0 1;\n\tsetAttr \".pm[4]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 -4 0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 1;\n\tsetAttr -s 4 \".ma\";\n\tsetAttr -s 5 \".dpf[0:4]\"  4 4 4 4 4;\n\tsetAttr -s 4 \".lw\";\n\tsetAttr -s 4 \".lw\";\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".mi\" 4;\n\tsetAttr \".ucm\" yes;\n\tsetAttr -s 4 \".ifcl\";\n\tsetAttr -s 4 \".ifcl\";\ncreateNode objectSet -n \"skinCluster1Set\";\n\trename -uid \"69B7FA23-40D5-31C6-B449-7BA63D90845C\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster1GroupId\";\n\trename -uid \"A9263AF9-416A-2E2E-FD56-0384A5813679\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster1GroupParts\";\n\trename -uid \"368E0E2A-4798-E333-5C52-F496B902E226\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode skinCluster -n \"skinCluster2\";\n\trename -uid \"7B411C37-46FF-B48E-573D-6A92D495F789\";\n\tsetAttr -s 3 \".wl\";\n\tsetAttr \".wl[0:2].w\"\n\t\t4 0 0.019230769230769221 1 0.48076923076923084 2 0.48076923076923073 \n\t\t3 0.019230769230769221\n\t\t4 0 0.019230769230769221 1 0.48076923076923084 2 0.48076923076923073 \n\t\t3 0.019230769230769221\n\t\t2 3 0.5 4 0.5;\n\tsetAttr -s 5 \".pm\";\n\tsetAttr \".pm[0]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 0 0 1;\n\tsetAttr \".pm[1]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -1 -2.2204460492503131e-16 0 1;\n\tsetAttr \".pm[2]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -2 -4.4408920985006262e-16 0 1;\n\tsetAttr \".pm[3]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -3 -6.6613381477509392e-16 0 1;\n\tsetAttr \".pm[4]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 -4 0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 3 0 1;\n\tsetAttr -s 5 \".ma\";\n\tsetAttr -s 5 \".dpf[0:4]\"  4 4 4 4 4;\n\tsetAttr -s 5 \".lw\";\n\tsetAttr -s 5 \".lw\";\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".mi\" 4;\n\tsetAttr \".ucm\" yes;\n\tsetAttr -s 5 \".ifcl\";\n\tsetAttr -s 5 \".ifcl\";\ncreateNode objectSet -n \"skinCluster2Set\";\n\trename -uid \"41DE6AFB-487F-90F9-5F32-D2A210970DA2\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster2GroupId\";\n\trename -uid \"301AAA2D-4F0A-F1BB-1256-A29D985111B6\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster2GroupParts\";\n\trename -uid \"33FA4A34-49E0-0603-8544-219A4E5FEE23\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"7927E1A5-4A14-310E-259F-D28C77F33153\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 6 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :lambert1;\n\tsetAttr \".it\" -type \"float3\" 0.47872341 0.47872341 0.47872341 ;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"tweakSet1.mwc\" \"triShape1.iog.og[1].gco\";\nconnectAttr \"groupId2.id\" \"triShape1.iog.og[1].gid\";\nconnectAttr \"skinCluster1GroupId.id\" \"triShape1.iog.og[2].gid\";\nconnectAttr \"skinCluster1Set.mwc\" \"triShape1.iog.og[2].gco\";\nconnectAttr \"skinCluster1.og[0]\" \"triShape1.i\";\nconnectAttr \"tweak1.vl[0].vt[2]\" \"triShape1.twl\";\nconnectAttr \"groupId4.id\" \"triShape2.iog.og[1].gid\";\nconnectAttr \"tweakSet2.mwc\" \"triShape2.iog.og[1].gco\";\nconnectAttr \"skinCluster2GroupId.id\" \"triShape2.iog.og[2].gid\";\nconnectAttr \"skinCluster2Set.mwc\" \"triShape2.iog.og[2].gco\";\nconnectAttr \"skinCluster2.og[0]\" \"triShape2.i\";\nconnectAttr \"tweak2.vl[0].vt[2]\" \"triShape2.twl\";\nconnectAttr \"polyPlane1.out\" \"pPlaneShape1.i\";\nconnectAttr \"joint1.s\" \"joint2.is\";\nconnectAttr \"joint1.rz\" \"joint2.rz\";\nconnectAttr \"joint2.s\" \"joint3.is\";\nconnectAttr \"joint2.rz\" \"joint3.rz\";\nconnectAttr \"joint3.s\" \"joint4.is\";\nconnectAttr \"joint3.rz\" \"joint4.rz\";\nconnectAttr \"joint4.s\" \"joint5.is\";\nconnectAttr \"joint4.rz\" \"joint5.rz\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"phong1SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"phong2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"phong1SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"phong2SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"groupParts4.og\" \"tweak2.ip[0].ig\";\nconnectAttr \"groupId4.id\" \"tweak2.ip[0].gi\";\nconnectAttr \"groupId4.msg\" \"tweakSet2.gn\" -na;\nconnectAttr \"triShape2.iog.og[1]\" \"tweakSet2.dsm\" -na;\nconnectAttr \"tweak2.msg\" \"tweakSet2.ub[0]\";\nconnectAttr \"triShape2Orig2.w\" \"groupParts4.ig\";\nconnectAttr \"groupId4.id\" \"groupParts4.gi\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"triShape1Orig1.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"triShape1.iog.og[1]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"phong1.oc\" \"phong1SG.ss\";\nconnectAttr \"triShape1.iog\" \"phong1SG.dsm\" -na;\nconnectAttr \"phong1SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"phong1.msg\" \"materialInfo1.m\";\nconnectAttr \"phong2.oc\" \"phong2SG.ss\";\nconnectAttr \"triShape2.iog\" \"phong2SG.dsm\" -na;\nconnectAttr \"phong2SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"phong2.msg\" \"materialInfo2.m\";\nconnectAttr \"joint2.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[0].dn\";\nconnectAttr \"bindPose1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[1].dn\";\nconnectAttr \"joint3.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[2].dn\";\nconnectAttr \"triShape2.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[3].dn\";\nconnectAttr \"joint1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[4].dn\";\nconnectAttr \"skinCluster1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[5].dn\";\nconnectAttr \"skinCluster2.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[6].dn\";\nconnectAttr \"triShape1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[7].dn\";\nconnectAttr \"joint4.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[8].dn\";\nconnectAttr \"joint5.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[9].dn\";\nconnectAttr \"joint1.msg\" \"bindPose1.m[0]\";\nconnectAttr \"joint2.msg\" \"bindPose1.m[1]\";\nconnectAttr \"joint3.msg\" \"bindPose1.m[2]\";\nconnectAttr \"joint4.msg\" \"bindPose1.m[3]\";\nconnectAttr \"joint5.msg\" \"bindPose1.m[5]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[0]\";\nconnectAttr \"bindPose1.m[0]\" \"bindPose1.p[1]\";\nconnectAttr \"bindPose1.m[1]\" \"bindPose1.p[2]\";\nconnectAttr \"bindPose1.m[2]\" \"bindPose1.p[3]\";\nconnectAttr \"bindPose1.m[3]\" \"bindPose1.p[5]\";\nconnectAttr \"joint1.bps\" \"bindPose1.wm[0]\";\nconnectAttr \"joint2.bps\" \"bindPose1.wm[1]\";\nconnectAttr \"joint3.bps\" \"bindPose1.wm[2]\";\nconnectAttr \"joint4.bps\" \"bindPose1.wm[3]\";\nconnectAttr \"joint5.bps\" \"bindPose1.wm[5]\";\nconnectAttr \"skinCluster1GroupParts.og\" \"skinCluster1.ip[0].ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1.ip[0].gi\";\nconnectAttr \"bindPose1.msg\" \"skinCluster1.bp\";\nconnectAttr \"joint1.wm\" \"skinCluster1.ma[0]\";\nconnectAttr \"joint2.wm\" \"skinCluster1.ma[1]\";\nconnectAttr \"joint3.wm\" \"skinCluster1.ma[2]\";\nconnectAttr \"joint4.wm\" \"skinCluster1.ma[3]\";\nconnectAttr \"joint1.liw\" \"skinCluster1.lw[0]\";\nconnectAttr \"joint2.liw\" \"skinCluster1.lw[1]\";\nconnectAttr \"joint3.liw\" \"skinCluster1.lw[2]\";\nconnectAttr \"joint4.liw\" \"skinCluster1.lw[3]\";\nconnectAttr \"joint1.obcc\" \"skinCluster1.ifcl[0]\";\nconnectAttr \"joint2.obcc\" \"skinCluster1.ifcl[1]\";\nconnectAttr \"joint3.obcc\" \"skinCluster1.ifcl[2]\";\nconnectAttr \"joint4.obcc\" \"skinCluster1.ifcl[3]\";\nconnectAttr \"skinCluster1GroupId.msg\" \"skinCluster1Set.gn\" -na;\nconnectAttr \"triShape1.iog.og[2]\" \"skinCluster1Set.dsm\" -na;\nconnectAttr \"skinCluster1.msg\" \"skinCluster1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"skinCluster1GroupParts.ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1GroupParts.gi\";\nconnectAttr \"skinCluster2GroupParts.og\" \"skinCluster2.ip[0].ig\";\nconnectAttr \"skinCluster2GroupId.id\" \"skinCluster2.ip[0].gi\";\nconnectAttr \"joint1.wm\" \"skinCluster2.ma[0]\";\nconnectAttr \"joint2.wm\" \"skinCluster2.ma[1]\";\nconnectAttr \"joint3.wm\" \"skinCluster2.ma[2]\";\nconnectAttr \"joint4.wm\" \"skinCluster2.ma[3]\";\nconnectAttr \"joint5.wm\" \"skinCluster2.ma[4]\";\nconnectAttr \"joint1.liw\" \"skinCluster2.lw[0]\";\nconnectAttr \"joint2.liw\" \"skinCluster2.lw[1]\";\nconnectAttr \"joint3.liw\" \"skinCluster2.lw[2]\";\nconnectAttr \"joint4.liw\" \"skinCluster2.lw[3]\";\nconnectAttr \"joint5.liw\" \"skinCluster2.lw[4]\";\nconnectAttr \"joint1.obcc\" \"skinCluster2.ifcl[0]\";\nconnectAttr \"joint2.obcc\" \"skinCluster2.ifcl[1]\";\nconnectAttr \"joint3.obcc\" \"skinCluster2.ifcl[2]\";\nconnectAttr \"joint4.obcc\" \"skinCluster2.ifcl[3]\";\nconnectAttr \"joint5.obcc\" \"skinCluster2.ifcl[4]\";\nconnectAttr \"bindPose1.msg\" \"skinCluster2.bp\";\nconnectAttr \"skinCluster2GroupId.msg\" \"skinCluster2Set.gn\" -na;\nconnectAttr \"triShape2.iog.og[2]\" \"skinCluster2Set.dsm\" -na;\nconnectAttr \"skinCluster2.msg\" \"skinCluster2Set.ub[0]\";\nconnectAttr \"tweak2.og[0]\" \"skinCluster2GroupParts.ig\";\nconnectAttr \"skinCluster2GroupId.id\" \"skinCluster2GroupParts.gi\";\nconnectAttr \"phong1SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"phong2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"phong1.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"phong2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pPlaneShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of DoubleMeshSkinWeldTest.ma\n"
  },
  {
    "path": "maya/scenes/skin/DoubleMeshSkinWeldTestAnim.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: DoubleMeshSkinWeldTestAnim.ma\n//Last modified: Sun, Feb 03, 2019 12:03:15 PM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"DDE980E5-41DB-F102-AA3E-1D9878B2ADEF\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -1.6923923233693037 3.4253394414067135 6.7217693409780166 ;\n\tsetAttr \".r\" -type \"double3\" -9.9383527296186145 -14.199999999998896 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"F21D88BF-4355-5C8D-C41F-05B5C4B08622\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 7.0041724242583872;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0 2.2165000000000004 0.0335 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"242DD70A-4917-9D04-9466-BC8FD9F79142\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"A187C64E-42F5-C640-B6DC-55A9F1AC5F16\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"FC607962-4170-B05F-5796-4EAA8A5FC84F\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 3 1000.104499539923 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"C76E3A00-4AF8-8472-A83B-47AC3B0E5D31\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.104499539923;\n\tsetAttr \".ow\" 12.351641832239252;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0 3 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"4A01B99E-4B22-BB0D-8C2C-4EB309078DB4\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"95EE3903-4164-AB02-362C-18B55EB39C3C\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"tri1\";\n\trename -uid \"3966D4D7-4628-ACF9-2FEB-378DCB874F61\";\n\tsetAttr \".t\" -type \"double3\" 0 1 0 ;\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\ncreateNode mesh -n \"triShape1\" -p \"tri1\";\n\trename -uid \"CFC299B4-40C4-13E5-C9E1-DBB318292A86\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr -av \".iog[0].og[0].gco\";\n\tsetAttr -av \".iog[0].og[1].gco\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\ncreateNode mesh -n \"triShape1Orig1\" -p \"tri1\";\n\trename -uid \"6D7D9E02-45C9-92ED-3EF4-8496EC1FBA92\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 3 \".uvst[0].uvsp[0:2]\" -type \"float2\" 0.5 0 0.375 0.25\n\t\t 0.625 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 3 \".vt[0:2]\"  0 -1 0.5 -0.5 1 0.5 0.5 1 0.5;\n\tsetAttr -s 3 \".ed[0:2]\"  1 2 0 0 1 0 0 2 0;\n\tsetAttr -ch 3 \".fc[0]\" -type \"polyFaces\" \n\t\tf 3 2 -1 -2\n\t\tmu 0 3 0 2 1;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\ncreateNode transform -n \"tri2\";\n\trename -uid \"428E277D-4B2F-D9B5-99CF-0E89DA6EBF46\";\n\tsetAttr \".t\" -type \"double3\" 0 3 0 ;\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\ncreateNode mesh -n \"triShape2\" -p \"tri2\";\n\trename -uid \"25A2E7F8-4195-39D5-2DE4-3C8C0EDA9504\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\ncreateNode mesh -n \"triShape2Orig2\" -p \"tri2\";\n\trename -uid \"96EE8EA3-4C66-7284-2FB2-B1962A5E7F31\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 3 \".uvst[0].uvsp[0:2]\" -type \"float2\" 0.375 0 0.625 0 0.5\n\t\t 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 3 \".vt[0:2]\"  -0.5 -1 0.5 0.5 -1 0.5 0 1 0.5;\n\tsetAttr -s 3 \".ed[0:2]\"  0 1 0 0 2 0 1 2 0;\n\tsetAttr -ch 3 \".fc[0]\" -type \"polyFaces\" \n\t\tf 3 2 -2 0\n\t\tmu 0 3 1 2 0;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\ncreateNode joint -n \"joint1\";\n\trename -uid \"C83E9292-4134-A36F-C38D-26A20F0F867C\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 89.999999999999986 ;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 0 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint2\" -p \"joint1\";\n\trename -uid \"FF900B0F-4A83-91CE-1C92-B9B75E0B879B\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 1;\n\tsetAttr \".t\" -type \"double3\" 1 2.2204460492503131e-16 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 1 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint3\" -p \"joint2\";\n\trename -uid \"6195679E-4CDD-7E74-C617-50883E532CD8\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 2;\n\tsetAttr \".t\" -type \"double3\" 1 2.2204460492503131e-16 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 2 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint4\" -p \"joint3\";\n\trename -uid \"1182DD10-4280-571A-68FF-A285CD429D0C\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 3;\n\tsetAttr \".t\" -type \"double3\" 1 2.2204460492503131e-16 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 3 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint5\" -p \"joint4\";\n\trename -uid \"32B98F59-444C-8DCA-25D1-AD86013F1B83\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 4;\n\tsetAttr \".t\" -type \"double3\" 1 2.2204460492503131e-16 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 -89.999999999999986 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 4 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode transform -n \"pPlane1\";\n\trename -uid \"11567299-43C5-FFC2-AAB6-23A3A56CFA51\";\n\tsetAttr \".t\" -type \"double3\" -1.5 0 0 ;\ncreateNode mesh -n \"pPlaneShape1\" -p \"pPlane1\";\n\trename -uid \"279E70F5-4710-4710-B460-91BD26C6C14B\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"7689070E-46A2-3438-CF45-D4ACC31C7BA7\";\n\tsetAttr \".t\" -type \"double3\" 1.0982148056981815 6.4922960846627147 6.2747286417412846 ;\n\tsetAttr \".r\" -type \"double3\" -33.800042332521961 21.400000000000063 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"79E61EBD-493C-93D9-8A0C-569C826178EC\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 8.8192718153853917;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" -1.538841724395752 0.80290353298187256 0 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"80FD001D-4CA0-4AAF-63F8-CF955B9C0C00\";\n\tsetAttr -s 4 \".lnk\";\n\tsetAttr -s 4 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"67B071F3-493F-810D-8657-70ABF316928E\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"A81E7713-4F0E-F692-6CC0-C79A34D1F631\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"E7D40BCA-4EAB-98DD-D2E8-75ACBE61BE86\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"8A2609F5-4BA4-3390-FEC8-7CACD700422B\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"94566CE4-46F2-26C4-FA48-CDB9397A6B22\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"7B4B4B3E-4067-5379-7D47-838C914EF973\";\n\tsetAttr \".g\" yes;\ncreateNode tweak -n \"tweak2\";\n\trename -uid \"8D288178-4101-B391-5E6A-70A3EE6F83C4\";\n\tsetAttr -s 3 \".vl[0].vt[0:2]\" -type \"float3\"  0 0 -0.5 0 0 -0.5 \n\t\t0 0 -0.5;\ncreateNode objectSet -n \"tweakSet2\";\n\trename -uid \"956F99E6-4432-B9D6-42ED-F79836F7E8F0\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId4\";\n\trename -uid \"5A7BE6A4-44FB-ECC7-6864-74AB1BE77F85\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts4\";\n\trename -uid \"6584208F-4B36-6F18-6FDD-23AF15575FF8\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"A6C69AA2-41A9-2C6F-093B-168F74D8491E\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n\"\n\t\t+ \"            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\"\n\t\t+ \"\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 0\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"perspective\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"perspective\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 1\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 1\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange -10.8 30.8 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 1\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n\"\n\t\t+ \"            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n\"\n\t\t+ \"            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n\"\n\t\t+ \"            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n\"\n\t\t+ \"            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n\"\n\t\t+ \"        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n\"\n\t\t+ \"            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n\"\n\t\t+ \"            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n\"\n\t\t+ \"            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"perspective\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"perspective\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 1\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"perspective\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 1\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"CFCA14B7-4C5A-978C-7A25-3B97EE7B9502\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 50 -ast 1 -aet 50 \";\n\tsetAttr \".st\" 6;\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"05F7719C-4938-F8F0-9718-78955320BA9B\";\n\tsetAttr -s 3 \".vl[0].vt[0:2]\" -type \"float3\"  0 0 -0.5 0 0 -0.5 \n\t\t0 0 -0.5;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"2753CDB3-466C-A929-90AB-8DB3BA7E49F4\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"9BCA8C57-4F5F-F57E-6A1E-E5A43C5BBDC3\";\n\tsetAttr \".ihi\" 0;\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"282EE377-4818-35B4-E086-B89D17409DE6\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode phong -n \"phong1\";\n\trename -uid \"A6EC3C54-4F3F-9855-1285-5E93496228C6\";\n\tsetAttr \".c\" -type \"float3\" 0 1 0 ;\ncreateNode shadingEngine -n \"phong1SG\";\n\trename -uid \"EE9C6877-44D8-12A0-E051-3BA6CB848F1F\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"0213192C-407B-2F6F-DA87-7B9F2B579394\";\ncreateNode phong -n \"phong2\";\n\trename -uid \"B2D5B810-4A6B-C560-E722-0BA459DB24DE\";\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\ncreateNode shadingEngine -n \"phong2SG\";\n\trename -uid \"CD81862A-4106-FF53-6A54-3083A1A058FB\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"60987E05-40F0-2F73-6CDB-63B79CA96B7D\";\ncreateNode nodeGraphEditorInfo -n \"MayaNodeEditorSavedTabsInfo\";\n\trename -uid \"FF4C1A86-46DC-7AA5-8EEB-8B8DADD19E13\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -340.57339862925318 -600.33030675999623 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 1797.2416674570698 470.25789850493112 ;\n\tsetAttr -s 10 \".tgi[0].ni\";\n\tsetAttr \".tgi[0].ni[0].x\" 174.70588684082031;\n\tsetAttr \".tgi[0].ni[0].y\" 409.24368286132813;\n\tsetAttr \".tgi[0].ni[0].nvs\" 18305;\n\tsetAttr \".tgi[0].ni[1].x\" 88.151283264160156;\n\tsetAttr \".tgi[0].ni[1].y\" -200.33613586425781;\n\tsetAttr \".tgi[0].ni[1].nvs\" 18306;\n\tsetAttr \".tgi[0].ni[2].x\" 498.65545654296875;\n\tsetAttr \".tgi[0].ni[2].y\" 395.6302490234375;\n\tsetAttr \".tgi[0].ni[2].nvs\" 18305;\n\tsetAttr \".tgi[0].ni[3].x\" 1245.7142333984375;\n\tsetAttr \".tgi[0].ni[3].y\" -28.571428298950195;\n\tsetAttr \".tgi[0].ni[3].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[4].x\" -231.59663391113281;\n\tsetAttr \".tgi[0].ni[4].y\" 377.3109130859375;\n\tsetAttr \".tgi[0].ni[4].nvs\" 18305;\n\tsetAttr \".tgi[0].ni[5].x\" 559.579833984375;\n\tsetAttr \".tgi[0].ni[5].y\" -156.89076232910156;\n\tsetAttr \".tgi[0].ni[5].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[6].x\" 564.62188720703125;\n\tsetAttr \".tgi[0].ni[6].y\" -5.0420174598693848;\n\tsetAttr \".tgi[0].ni[6].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[7].x\" 1245.7142333984375;\n\tsetAttr \".tgi[0].ni[7].y\" -130;\n\tsetAttr \".tgi[0].ni[7].nvs\" 18304;\n\tsetAttr \".tgi[0].ni[8].x\" 862.100830078125;\n\tsetAttr \".tgi[0].ni[8].y\" 370.50418090820313;\n\tsetAttr \".tgi[0].ni[8].nvs\" 18305;\n\tsetAttr \".tgi[0].ni[9].x\" 1211.260498046875;\n\tsetAttr \".tgi[0].ni[9].y\" 361.260498046875;\n\tsetAttr \".tgi[0].ni[9].nvs\" 18305;\ncreateNode skinCluster -n \"skinCluster2\";\n\trename -uid \"7B411C37-46FF-B48E-573D-6A92D495F789\";\n\tsetAttr -s 3 \".wl\";\n\tsetAttr \".wl[0:2].w\"\n\t\t4 0 0.019230769230769221 1 0.48076923076923084 2 0.48076923076923073 \n\t\t3 0.019230769230769221\n\t\t4 0 0.019230769230769221 1 0.48076923076923084 2 0.48076923076923073 \n\t\t3 0.019230769230769221\n\t\t2 3 0.5 4 0.5;\n\tsetAttr -s 5 \".pm\";\n\tsetAttr \".pm[0]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 0 0 1;\n\tsetAttr \".pm[1]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -1 -2.2204460492503131e-16 0 1;\n\tsetAttr \".pm[2]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -2 -4.4408920985006262e-16 0 1;\n\tsetAttr \".pm[3]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -3 -6.6613381477509392e-16 0 1;\n\tsetAttr \".pm[4]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 -4 0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 3 0 1;\n\tsetAttr -s 5 \".ma\";\n\tsetAttr -s 5 \".dpf[0:4]\"  4 4 4 4 4;\n\tsetAttr -s 5 \".lw\";\n\tsetAttr -s 5 \".lw\";\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".mi\" 4;\n\tsetAttr \".ucm\" yes;\n\tsetAttr -s 5 \".ifcl\";\n\tsetAttr -s 5 \".ifcl\";\ncreateNode objectSet -n \"skinCluster2Set\";\n\trename -uid \"41DE6AFB-487F-90F9-5F32-D2A210970DA2\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster2GroupId\";\n\trename -uid \"301AAA2D-4F0A-F1BB-1256-A29D985111B6\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster2GroupParts\";\n\trename -uid \"33FA4A34-49E0-0603-8544-219A4E5FEE23\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode dagPose -n \"bindPose1\";\n\trename -uid \"7D6C60A3-4748-1EC8-FEDF-4DADE290438F\";\n\tsetAttr -s 5 \".wm\";\n\tsetAttr -s 6 \".xm\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0.70710678118654746 0.70710678118654757 1 1 1 yes;\n\tsetAttr \".xm[1]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 2.2204460492503131e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[2]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 2.2204460492503131e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[3]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 2.2204460492503131e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[4]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 2.2204460492503131e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -0.70710678118654746 0.70710678118654757 1\n\t\t 1 1 yes;\n\tsetAttr \".xm[5]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 2.2204460492503131e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -0.70710678118654746 0.70710678118654757 1\n\t\t 1 1 yes;\n\tsetAttr -s 5 \".m\";\n\tsetAttr -s 5 \".p\";\n\tsetAttr \".bp\" yes;\ncreateNode skinCluster -n \"skinCluster1\";\n\trename -uid \"EE067722-416D-E444-7F9D-D0BC21D404B2\";\n\tsetAttr -s 3 \".wl\";\n\tsetAttr \".wl[0:2].w\"\n\t\t1 0 1\n\t\t4 0 0.019230769230769221 1 0.48076923076923084 2 0.48076923076923073 \n\t\t3 0.019230769230769221\n\t\t4 0 0.019230769230769221 1 0.48076923076923084 2 0.48076923076923073 \n\t\t3 0.019230769230769221;\n\tsetAttr -s 5 \".pm\";\n\tsetAttr \".pm[0]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 0 0 1;\n\tsetAttr \".pm[1]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -1 -2.2204460492503131e-16 0 1;\n\tsetAttr \".pm[2]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -2 -4.4408920985006262e-16 0 1;\n\tsetAttr \".pm[3]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -3 -6.6613381477509392e-16 0 1;\n\tsetAttr \".pm[4]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 -4 0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 1;\n\tsetAttr -s 4 \".ma\";\n\tsetAttr -s 5 \".dpf[0:4]\"  4 4 4 4 4;\n\tsetAttr -s 4 \".lw\";\n\tsetAttr -s 4 \".lw\";\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".mi\" 4;\n\tsetAttr \".ucm\" yes;\n\tsetAttr -s 4 \".ifcl\";\n\tsetAttr -s 4 \".ifcl\";\ncreateNode objectSet -n \"skinCluster1Set\";\n\trename -uid \"69B7FA23-40D5-31C6-B449-7BA63D90845C\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster1GroupId\";\n\trename -uid \"A9263AF9-416A-2E2E-FD56-0384A5813679\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster1GroupParts\";\n\trename -uid \"368E0E2A-4798-E333-5C52-F496B902E226\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode animCurveTA -n \"joint1_rotateZ\";\n\trename -uid \"47C5D159-4AD6-64B0-C315-609E4496AE17\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 36;\ncreateNode animCurveTA -n \"joint1_rotateX\";\n\trename -uid \"B5FD5AA3-4100-0573-5263-769F5F6D786C\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTA -n \"joint1_rotateY\";\n\trename -uid \"54ED691A-487F-19C9-6167-9BA534E4EF05\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTU -n \"joint1_scaleX\";\n\trename -uid \"FB729117-4D18-40FD-DEBA-EA9C13C2C2AB\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 1 20 1;\ncreateNode animCurveTU -n \"joint1_scaleY\";\n\trename -uid \"0DAA0605-4D49-5FF4-A959-8289012A68D0\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 1 20 1;\ncreateNode animCurveTU -n \"joint1_scaleZ\";\n\trename -uid \"2633881B-40E0-D609-CD4E-0B9E73553783\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 1 20 1;\ncreateNode animCurveTL -n \"joint1_translateY\";\n\trename -uid \"47A500A9-4953-0416-F3A5-47AA2B7FC8E4\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"joint1_translateX\";\n\trename -uid \"987542CF-4C47-35A8-8D55-D698AA243A1D\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"joint1_translateZ\";\n\trename -uid \"6FF5EAF2-4047-A17F-0C69-B6B6F5D1EF6B\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode polyPlane -n \"polyPlane1\";\n\trename -uid \"35F5634F-49CB-DE0C-9EC4-B08153018D44\";\n\tsetAttr \".w\" 3;\n\tsetAttr \".sw\" 1;\n\tsetAttr \".sh\" 1;\n\tsetAttr \".cuv\" 2;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"2AD38846-4C20-FFD4-2A35-97B87EEE2DBC\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/scenes/skin/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"DoubleMeshSkinWeldTestAnim\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2018 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 2;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"ED5B185A-4ABF-8960-5194-17A38BDBF6F5\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 37;\n\tsetAttr \".unw\" 37;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 6 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :lambert1;\n\tsetAttr \".it\" -type \"float3\" 0.47872341 0.47872341 0.47872341 ;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"tweakSet1.mwc\" \"triShape1.iog.og[1].gco\";\nconnectAttr \"groupId2.id\" \"triShape1.iog.og[1].gid\";\nconnectAttr \"skinCluster1GroupId.id\" \"triShape1.iog.og[2].gid\";\nconnectAttr \"skinCluster1Set.mwc\" \"triShape1.iog.og[2].gco\";\nconnectAttr \"skinCluster1.og[0]\" \"triShape1.i\";\nconnectAttr \"tweak1.vl[0].vt[2]\" \"triShape1.twl\";\nconnectAttr \"groupId4.id\" \"triShape2.iog.og[1].gid\";\nconnectAttr \"tweakSet2.mwc\" \"triShape2.iog.og[1].gco\";\nconnectAttr \"skinCluster2GroupId.id\" \"triShape2.iog.og[2].gid\";\nconnectAttr \"skinCluster2Set.mwc\" \"triShape2.iog.og[2].gco\";\nconnectAttr \"skinCluster2.og[0]\" \"triShape2.i\";\nconnectAttr \"tweak2.vl[0].vt[2]\" \"triShape2.twl\";\nconnectAttr \"joint1_scaleX.o\" \"joint1.sx\";\nconnectAttr \"joint1_scaleY.o\" \"joint1.sy\";\nconnectAttr \"joint1_scaleZ.o\" \"joint1.sz\";\nconnectAttr \"joint1_rotateZ.o\" \"joint1.rz\";\nconnectAttr \"joint1_rotateX.o\" \"joint1.rx\";\nconnectAttr \"joint1_rotateY.o\" \"joint1.ry\";\nconnectAttr \"joint1_translateZ.o\" \"joint1.tz\";\nconnectAttr \"joint1_translateX.o\" \"joint1.tx\";\nconnectAttr \"joint1_translateY.o\" \"joint1.ty\";\nconnectAttr \"joint1.s\" \"joint2.is\";\nconnectAttr \"joint1.rz\" \"joint2.rz\";\nconnectAttr \"joint2.s\" \"joint3.is\";\nconnectAttr \"joint2.rz\" \"joint3.rz\";\nconnectAttr \"joint3.s\" \"joint4.is\";\nconnectAttr \"joint3.rz\" \"joint4.rz\";\nconnectAttr \"joint4.s\" \"joint5.is\";\nconnectAttr \"joint4.rz\" \"joint5.rz\";\nconnectAttr \"polyPlane1.out\" \"pPlaneShape1.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"phong1SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"phong2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"phong1SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"phong2SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"groupParts4.og\" \"tweak2.ip[0].ig\";\nconnectAttr \"groupId4.id\" \"tweak2.ip[0].gi\";\nconnectAttr \"groupId4.msg\" \"tweakSet2.gn\" -na;\nconnectAttr \"triShape2.iog.og[1]\" \"tweakSet2.dsm\" -na;\nconnectAttr \"tweak2.msg\" \"tweakSet2.ub[0]\";\nconnectAttr \"triShape2Orig2.w\" \"groupParts4.ig\";\nconnectAttr \"groupId4.id\" \"groupParts4.gi\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"triShape1Orig1.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"triShape1.iog.og[1]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"phong1.oc\" \"phong1SG.ss\";\nconnectAttr \"triShape1.iog\" \"phong1SG.dsm\" -na;\nconnectAttr \"phong1SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"phong1.msg\" \"materialInfo1.m\";\nconnectAttr \"phong2.oc\" \"phong2SG.ss\";\nconnectAttr \"triShape2.iog\" \"phong2SG.dsm\" -na;\nconnectAttr \"phong2SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"phong2.msg\" \"materialInfo2.m\";\nconnectAttr \"joint2.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[0].dn\";\nconnectAttr \"bindPose1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[1].dn\";\nconnectAttr \"joint3.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[2].dn\";\nconnectAttr \"triShape2.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[3].dn\";\nconnectAttr \"joint1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[4].dn\";\nconnectAttr \"skinCluster1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[5].dn\";\nconnectAttr \"skinCluster2.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[6].dn\";\nconnectAttr \"triShape1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[7].dn\";\nconnectAttr \"joint4.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[8].dn\";\nconnectAttr \"joint5.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[9].dn\";\nconnectAttr \"skinCluster2GroupParts.og\" \"skinCluster2.ip[0].ig\";\nconnectAttr \"skinCluster2GroupId.id\" \"skinCluster2.ip[0].gi\";\nconnectAttr \"joint1.wm\" \"skinCluster2.ma[0]\";\nconnectAttr \"joint2.wm\" \"skinCluster2.ma[1]\";\nconnectAttr \"joint3.wm\" \"skinCluster2.ma[2]\";\nconnectAttr \"joint4.wm\" \"skinCluster2.ma[3]\";\nconnectAttr \"joint5.wm\" \"skinCluster2.ma[4]\";\nconnectAttr \"joint1.liw\" \"skinCluster2.lw[0]\";\nconnectAttr \"joint2.liw\" \"skinCluster2.lw[1]\";\nconnectAttr \"joint3.liw\" \"skinCluster2.lw[2]\";\nconnectAttr \"joint4.liw\" \"skinCluster2.lw[3]\";\nconnectAttr \"joint5.liw\" \"skinCluster2.lw[4]\";\nconnectAttr \"joint1.obcc\" \"skinCluster2.ifcl[0]\";\nconnectAttr \"joint2.obcc\" \"skinCluster2.ifcl[1]\";\nconnectAttr \"joint3.obcc\" \"skinCluster2.ifcl[2]\";\nconnectAttr \"joint4.obcc\" \"skinCluster2.ifcl[3]\";\nconnectAttr \"joint5.obcc\" \"skinCluster2.ifcl[4]\";\nconnectAttr \"bindPose1.msg\" \"skinCluster2.bp\";\nconnectAttr \"skinCluster2GroupId.msg\" \"skinCluster2Set.gn\" -na;\nconnectAttr \"triShape2.iog.og[2]\" \"skinCluster2Set.dsm\" -na;\nconnectAttr \"skinCluster2.msg\" \"skinCluster2Set.ub[0]\";\nconnectAttr \"tweak2.og[0]\" \"skinCluster2GroupParts.ig\";\nconnectAttr \"skinCluster2GroupId.id\" \"skinCluster2GroupParts.gi\";\nconnectAttr \"joint1.msg\" \"bindPose1.m[0]\";\nconnectAttr \"joint2.msg\" \"bindPose1.m[1]\";\nconnectAttr \"joint3.msg\" \"bindPose1.m[2]\";\nconnectAttr \"joint4.msg\" \"bindPose1.m[3]\";\nconnectAttr \"joint5.msg\" \"bindPose1.m[5]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[0]\";\nconnectAttr \"bindPose1.m[0]\" \"bindPose1.p[1]\";\nconnectAttr \"bindPose1.m[1]\" \"bindPose1.p[2]\";\nconnectAttr \"bindPose1.m[2]\" \"bindPose1.p[3]\";\nconnectAttr \"bindPose1.m[3]\" \"bindPose1.p[5]\";\nconnectAttr \"joint1.bps\" \"bindPose1.wm[0]\";\nconnectAttr \"joint2.bps\" \"bindPose1.wm[1]\";\nconnectAttr \"joint3.bps\" \"bindPose1.wm[2]\";\nconnectAttr \"joint4.bps\" \"bindPose1.wm[3]\";\nconnectAttr \"joint5.bps\" \"bindPose1.wm[5]\";\nconnectAttr \"skinCluster1GroupParts.og\" \"skinCluster1.ip[0].ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1.ip[0].gi\";\nconnectAttr \"bindPose1.msg\" \"skinCluster1.bp\";\nconnectAttr \"joint1.wm\" \"skinCluster1.ma[0]\";\nconnectAttr \"joint2.wm\" \"skinCluster1.ma[1]\";\nconnectAttr \"joint3.wm\" \"skinCluster1.ma[2]\";\nconnectAttr \"joint4.wm\" \"skinCluster1.ma[3]\";\nconnectAttr \"joint1.liw\" \"skinCluster1.lw[0]\";\nconnectAttr \"joint2.liw\" \"skinCluster1.lw[1]\";\nconnectAttr \"joint3.liw\" \"skinCluster1.lw[2]\";\nconnectAttr \"joint4.liw\" \"skinCluster1.lw[3]\";\nconnectAttr \"joint1.obcc\" \"skinCluster1.ifcl[0]\";\nconnectAttr \"joint2.obcc\" \"skinCluster1.ifcl[1]\";\nconnectAttr \"joint3.obcc\" \"skinCluster1.ifcl[2]\";\nconnectAttr \"joint4.obcc\" \"skinCluster1.ifcl[3]\";\nconnectAttr \"skinCluster1GroupId.msg\" \"skinCluster1Set.gn\" -na;\nconnectAttr \"triShape1.iog.og[2]\" \"skinCluster1Set.dsm\" -na;\nconnectAttr \"skinCluster1.msg\" \"skinCluster1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"skinCluster1GroupParts.ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1GroupParts.gi\";\nconnectAttr \"phong1SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"phong2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"phong1.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"phong2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pPlaneShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of DoubleMeshSkinWeldTestAnim.ma\n"
  },
  {
    "path": "maya/scenes/skin/FiveJointsFourInfluencesAnim.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: FiveJointsFourInfluencesAnim.ma\n//Last modified: Sun, Feb 03, 2019 12:04:07 PM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"9A4CD8F8-4BFA-C0BF-0110-6A8A576F6D06\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -1.877770308594771 17.113755060220793 0.0065546815239736489 ;\n\tsetAttr \".r\" -type \"double3\" -83.738352728741333 -89.799999999996075 -9.1116364914859953e-13 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"ECE1B0EB-45C7-0EEE-119F-8FB89DCCA039\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 17.216465274755738;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"1DACD3AA-4E88-8FF2-9115-FA9D268C4EB2\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"E8BCEB32-4380-2BD8-8F1A-BA95E74EF364\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"3F9E1AC5-47D3-2CAD-C488-A8BE474AAAD4\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"05DDF359-462D-8B75-85A9-388DB2809393\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"4B7782DE-4224-5452-370F-8D8FCB68A50E\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"C004F754-4C72-2506-63E8-53A51D96B744\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"9C7F0AC7-44ED-1922-2E45-A092FE34C86A\";\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"DE219E0A-48FE-78CA-222E-39A1A281EC58\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\ncreateNode mesh -n \"pCubeShape1Orig\" -p \"pCube1\";\n\trename -uid \"33CD915A-49FA-AB7F-37BA-9EAF5DD022D3\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode joint -n \"joint1\";\n\trename -uid \"3631D61A-41C5-4EA4-97D8-B89C7CCAC3D6\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 -2 0 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint2\" -p \"joint1\";\n\trename -uid \"30D03020-43F6-7BA5-5726-D0812E2FF191\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 1;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 -1 0 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint3\" -p \"joint2\";\n\trename -uid \"984D59AE-4DD6-9694-FE33-8AA07D35BA3F\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 2;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint4\" -p \"joint3\";\n\trename -uid \"D33D25AB-41F5-7AF3-68F3-0CA1F404934D\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 3;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint5\" -p \"joint4\";\n\trename -uid \"72CB87BA-47BC-9247-FF6F-9A81A5FF4D39\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 4;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 2 0 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode transform -n \"camera1\";\n\trename -uid \"63BD5E99-40C4-BABE-017B-6A88687CC276\";\n\tsetAttr \".t\" -type \"double3\" 1.4879016640318921 8.8976691169011044 4.9474014584644586 ;\n\tsetAttr \".r\" -type \"double3\" -52.999365012171317 17.800000000000299 1.6702323789750377e-15 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"31EB2BE6-4771-FC2F-6E7E-AEAEDC52FABB\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 12.117820690150278;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" -1.5394371467949421 0 -2.4828668059269967 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"9AF614B0-49D6-4419-31A1-499074A6098D\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"FF5C9FFF-4656-1075-DA01-ABA408F8F90F\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"CBF68B26-44B5-864C-C170-FA8565F720CA\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"3824355F-47CD-AFDD-F0B4-AA8C74ABBE4A\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"6D8DDEEB-4C41-C36C-8E56-908415C5743C\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"6D17B2B2-48F7-F4A6-BC72-0383EB384B27\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"4D945371-45A0-DC3B-DEDA-64B87F412D90\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"2D5320D2-4B49-7026-1785-61A256F2DE16\";\n\tsetAttr \".w\" 5;\n\tsetAttr \".sw\" 5;\n\tsetAttr \".cuv\" 4;\ncreateNode skinCluster -n \"skinCluster1\";\n\trename -uid \"970CA15B-4F5D-A444-7E68-F0AB857D8710\";\n\tsetAttr -s 24 \".wl\";\n\tsetAttr \".wl[0:23].w\"\n\t\t4 0 0.91727462321159092 1 0.068227038090118319 2 0.011324378064340626 \n\t\t3 0.0031739606339501398\n\t\t4 0 0.67431371499774473 1 0.29969498444344228 2 0.022291362479264297 \n\t\t3 0.0036999380795486691\n\t\t4 0 0.23124701385570956 1 0.52030578117534632 2 0.23124701385570956 \n\t\t3 0.017200191113234592\n\t\t4 0 0.017200191113234592 1 0.23124701385570956 2 0.52030578117534632 \n\t\t3 0.23124701385570956\n\t\t4 1 0.017200191113234592 2 0.23124701385570956 3 0.52030578117534632 \n\t\t4 0.23124701385570956\n\t\t4 1 0.0059162918052024236 2 0.03564443575200469 3 0.47921963622139652 \n\t\t4 0.47921963622139641\n\t\t4 0 0.91727462321159092 1 0.068227038090118319 2 0.011324378064340626 \n\t\t3 0.0031739606339501398\n\t\t4 0 0.67431371499774473 1 0.29969498444344228 2 0.022291362479264297 \n\t\t3 0.0036999380795486691\n\t\t4 0 0.23124701385570956 1 0.52030578117534632 2 0.23124701385570956 \n\t\t3 0.017200191113234592\n\t\t4 0 0.017200191113234592 1 0.23124701385570956 2 0.52030578117534632 \n\t\t3 0.23124701385570956\n\t\t4 1 0.017200191113234592 2 0.23124701385570956 3 0.52030578117534632 \n\t\t4 0.23124701385570956\n\t\t4 1 0.0059162918052024236 2 0.03564443575200469 3 0.47921963622139652 \n\t\t4 0.47921963622139641\n\t\t4 0 0.91727462321159092 1 0.068227038090118319 2 0.011324378064340626 \n\t\t3 0.0031739606339501398\n\t\t4 0 0.67431371499774473 1 0.29969498444344228 2 0.022291362479264297 \n\t\t3 0.0036999380795486691\n\t\t4 0 0.23124701385570956 1 0.52030578117534632 2 0.23124701385570956 \n\t\t3 0.017200191113234592\n\t\t4 0 0.017200191113234592 1 0.23124701385570956 2 0.52030578117534632 \n\t\t3 0.23124701385570956\n\t\t4 1 0.017200191113234592 2 0.23124701385570956 3 0.52030578117534632 \n\t\t4 0.23124701385570956\n\t\t4 1 0.0059162918052024236 2 0.03564443575200469 3 0.47921963622139652 \n\t\t4 0.47921963622139641\n\t\t4 0 0.91727462321159092 1 0.068227038090118319 2 0.011324378064340626 \n\t\t3 0.0031739606339501398\n\t\t4 0 0.67431371499774473 1 0.29969498444344228 2 0.022291362479264297 \n\t\t3 0.0036999380795486691\n\t\t4 0 0.23124701385570956 1 0.52030578117534632 2 0.23124701385570956 \n\t\t3 0.017200191113234592\n\t\t4 0 0.017200191113234592 1 0.23124701385570956 2 0.52030578117534632 \n\t\t3 0.23124701385570956\n\t\t4 1 0.017200191113234592 2 0.23124701385570956 3 0.52030578117534632 \n\t\t4 0.23124701385570956\n\t\t4 1 0.0059162918052024236 2 0.03564443575200469 3 0.47921963622139652 \n\t\t4 0.47921963622139641;\n\tsetAttr -s 5 \".pm\";\n\tsetAttr \".pm[0]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 2 0 0 1;\n\tsetAttr \".pm[1]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 1 0 0 1;\n\tsetAttr \".pm[2]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".pm[3]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 -1 0 0 1;\n\tsetAttr \".pm[4]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 -2 0 0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr -s 5 \".ma\";\n\tsetAttr -s 5 \".dpf[0:4]\"  4 4 4 4 4;\n\tsetAttr -s 5 \".lw\";\n\tsetAttr -s 5 \".lw\";\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".mi\" 4;\n\tsetAttr \".ucm\" yes;\n\tsetAttr -s 5 \".ifcl\";\n\tsetAttr -s 5 \".ifcl\";\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"FB2E72FA-42A8-6C5F-0F8A-B29FD53D3F68\";\ncreateNode objectSet -n \"skinCluster1Set\";\n\trename -uid \"0DC1C241-47C0-CCC3-B021-7C8F366B0CF1\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster1GroupId\";\n\trename -uid \"7E15AFF4-4047-C30C-AC75-FFB4AE82F4BC\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster1GroupParts\";\n\trename -uid \"56519C35-4A23-2CDF-71A8-EB8F55946D25\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"10AFD56D-4FF6-4006-BCDD-98B5DB935A48\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"DF364AA5-4181-6DA9-DEB0-ECB00168582A\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"78211E48-4421-504C-E8A2-1084DFF2532C\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode dagPose -n \"bindPose1\";\n\trename -uid \"325C9C29-4940-1D94-79C1-9D92BB6613F0\";\n\tsetAttr -s 5 \".wm\";\n\tsetAttr -s 5 \".xm\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 -2 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[1]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[2]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[3]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[4]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr -s 5 \".m\";\n\tsetAttr -s 5 \".p\";\n\tsetAttr \".bp\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"26ED5F0D-48DB-DEB4-D56F-AA9601B50022\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n\"\n\t\t+ \"            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\"\n\t\t+ \"\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 0\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 1\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange -10.8 30.8 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 1\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n\"\n\t\t+ \"            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n\"\n\t\t+ \"            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n\"\n\t\t+ \"            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n\"\n\t\t+ \"            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n\"\n\t\t+ \"        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n\"\n\t\t+ \"            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n\"\n\t\t+ \"            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n\"\n\t\t+ \"            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"BBA7233D-4271-6EBC-761D-ECA7DEE442FD\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 20 -ast 1 -aet 20 \";\n\tsetAttr \".st\" 6;\ncreateNode character -n \"character1\";\n\trename -uid \"1804AA8D-44C1-7D98-92B4-E8BD786C7874\";\n\taddAttr -ci true -h true -sn \"aal\" -ln \"attributeAliasList\" -dt \"attributeAlias\";\n\tsetAttr -s 26 \".dnsm\";\n\tsetAttr -s 15 \".lv\";\n\tsetAttr -s 15 \".lv\";\n\tsetAttr -s 11 \".av\";\n\tsetAttr -s 11 \".av\";\n\tsetAttr \".am\" -type \"characterMapping\" 26 \"joint5.rotateZ\" 2 1 \"joint5.rotateX\" \n\t\t2 2 \"joint5.translateZ\" 1 1 \"joint5.translateY\" 1 2 \"joint5.translateX\" \n\t\t1 3 \"joint4.rotateZ\" 2 3 \"joint4.rotateX\" 2 4 \"joint4.translateZ\" \n\t\t1 4 \"joint4.translateY\" 1 5 \"joint4.translateX\" 1 6 \"joint3.rotateZ\" \n\t\t2 5 \"joint3.rotateX\" 2 6 \"joint3.translateZ\" 1 7 \"joint3.translateY\" \n\t\t1 8 \"joint3.translateX\" 1 9 \"joint2.rotateZ\" 2 7 \"joint2.rotateX\" \n\t\t2 8 \"joint2.translateZ\" 1 10 \"joint2.translateY\" 1 11 \"joint2.translateX\" \n\t\t1 12 \"joint1.rotateZ\" 2 9 \"joint1.rotateY\" 2 10 \"joint1.rotateX\" \n\t\t2 11 \"joint1.translateZ\" 1 13 \"joint1.translateY\" 1 14 \"joint1.translateX\" \n\t\t1 15  ;\n\tsetAttr \".aal\" -type \"attributeAlias\" {\"joint1_rotateY\",\"angularValues[10]\",\"joint1_rotateX\"\n\t\t,\"angularValues[11]\",\"joint5_rotateZ\",\"angularValues[1]\",\"joint5_rotateX\",\"angularValues[2]\"\n\t\t,\"joint4_rotateZ\",\"angularValues[3]\",\"joint4_rotateX\",\"angularValues[4]\",\"joint3_rotateZ\"\n\t\t,\"angularValues[5]\",\"joint3_rotateX\",\"angularValues[6]\",\"joint2_rotateZ\",\"angularValues[7]\"\n\t\t,\"joint2_rotateX\",\"angularValues[8]\",\"joint1_rotateZ\",\"angularValues[9]\",\"joint2_translateZ\"\n\t\t,\"linearValues[10]\",\"joint2_translateY\",\"linearValues[11]\",\"joint2_translateX\",\"linearValues[12]\"\n\t\t,\"joint1_translateZ\",\"linearValues[13]\",\"joint1_translateY\",\"linearValues[14]\",\"joint1_translateX\"\n\t\t,\"linearValues[15]\",\"joint5_translateZ\",\"linearValues[1]\",\"joint5_translateY\",\"linearValues[2]\"\n\t\t,\"joint5_translateX\",\"linearValues[3]\",\"joint4_translateZ\",\"linearValues[4]\",\"joint4_translateY\"\n\t\t,\"linearValues[5]\",\"joint4_translateX\",\"linearValues[6]\",\"joint3_translateZ\",\"linearValues[7]\"\n\t\t,\"joint3_translateY\",\"linearValues[8]\",\"joint3_translateX\",\"linearValues[9]\"} ;\ncreateNode nodeGraphEditorInfo -n \"MayaNodeEditorSavedTabsInfo\";\n\trename -uid \"D29D3BA3-41C7-1881-E6E0-309BFC5273CA\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -88.967943411402004 127.38094731928828 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 1243.729802287193 797.61901592451557 ;\n\tsetAttr -s 6 \".tgi[0].ni\";\n\tsetAttr \".tgi[0].ni[0].x\" -137.14285278320313;\n\tsetAttr \".tgi[0].ni[0].y\" 1380;\n\tsetAttr \".tgi[0].ni[0].nvs\" 1920;\n\tsetAttr \".tgi[0].ni[1].x\" 1105.7142333984375;\n\tsetAttr \".tgi[0].ni[1].y\" 550;\n\tsetAttr \".tgi[0].ni[1].nvs\" 1922;\n\tsetAttr \".tgi[0].ni[2].x\" 491.42855834960938;\n\tsetAttr \".tgi[0].ni[2].y\" 781.4285888671875;\n\tsetAttr \".tgi[0].ni[2].nvs\" 1922;\n\tsetAttr \".tgi[0].ni[3].x\" 798.5714111328125;\n\tsetAttr \".tgi[0].ni[3].y\" 774.28570556640625;\n\tsetAttr \".tgi[0].ni[3].nvs\" 1922;\n\tsetAttr \".tgi[0].ni[4].x\" -122.85713958740234;\n\tsetAttr \".tgi[0].ni[4].y\" 298.57144165039063;\n\tsetAttr \".tgi[0].ni[4].nvs\" 1922;\n\tsetAttr \".tgi[0].ni[5].x\" 184.28572082519531;\n\tsetAttr \".tgi[0].ni[5].y\" 138.57142639160156;\n\tsetAttr \".tgi[0].ni[5].nvs\" 1922;\ncreateNode animCurveTU -n \"joint1_scaleX\";\n\trename -uid \"838604B2-47E9-8460-BDB0-38BA5D9B7546\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 1;\ncreateNode animCurveTU -n \"joint1_scaleY\";\n\trename -uid \"B49CE4FF-4307-7745-7A9E-2DA72F690B49\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 1;\ncreateNode animCurveTU -n \"joint1_scaleZ\";\n\trename -uid \"3DC84CD7-4100-74DE-C5A1-F3BAD4B1FB28\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 1;\ncreateNode animCurveTA -n \"character1_joint5_rotateZ\";\n\trename -uid \"4CD8FFD2-45DD-21BF-E6A1-199EFB1BF5D7\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTA -n \"character1_joint5_rotateX\";\n\trename -uid \"E68B9D88-4D6B-3A58-0C40-0881C1E9EFFA\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"character1_joint5_translateZ\";\n\trename -uid \"7117A556-4E82-158D-4305-B3A8FCD410A8\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"character1_joint5_translateY\";\n\trename -uid \"24FB5F2D-4FA8-2A39-A3DB-77A426C96F51\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"character1_joint5_translateX\";\n\trename -uid \"22A9570C-424C-DEFF-0415-94A1CCAFC3AC\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 1 20 1;\ncreateNode animCurveTA -n \"character1_joint4_rotateZ\";\n\trename -uid \"BA41ACA3-4787-55EE-A906-1990D5A6EE23\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTA -n \"character1_joint4_rotateX\";\n\trename -uid \"DE6A69CA-4681-E9D2-740B-6FB25C0426AB\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"character1_joint4_translateZ\";\n\trename -uid \"7AE6F8A5-4133-C224-EE52-17BCFB971EA6\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"character1_joint4_translateY\";\n\trename -uid \"3B512AA6-47A3-74B2-55B3-DD9D7B479894\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"character1_joint4_translateX\";\n\trename -uid \"E08C1ED7-40E2-ECF8-4BB2-45931F7248D1\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 1 20 1;\ncreateNode animCurveTA -n \"character1_joint3_rotateZ\";\n\trename -uid \"40A48B29-4D01-FC56-8DA8-4E896844AC45\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTA -n \"character1_joint3_rotateX\";\n\trename -uid \"9F4C3F66-49DB-68B0-D369-3E8FBFCB08BF\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"character1_joint3_translateZ\";\n\trename -uid \"7A4662A8-43B7-D2AC-028B-C6AC79B425CA\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"character1_joint3_translateY\";\n\trename -uid \"249C5FF3-4C37-7481-3CCA-41AFAB75E9AB\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"character1_joint3_translateX\";\n\trename -uid \"1E5D973C-48B3-3916-82A1-3397268FBF5E\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 1 20 1;\ncreateNode animCurveTA -n \"character1_joint2_rotateZ\";\n\trename -uid \"EDA1903D-401F-CB42-A855-86B827696651\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTA -n \"character1_joint2_rotateX\";\n\trename -uid \"AF623033-424C-6F10-102C-91B3F460FD05\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"character1_joint2_translateZ\";\n\trename -uid \"1B63470D-426E-A186-A1A0-C0AEF2A60C20\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"character1_joint2_translateY\";\n\trename -uid \"65F72666-404A-686D-DC4E-F79550069D4F\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"character1_joint2_translateX\";\n\trename -uid \"34B1E534-40B9-93DD-EB89-B6B4DEAFADC7\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 1 20 1;\ncreateNode animCurveTA -n \"character1_joint1_rotateZ\";\n\trename -uid \"5569A26A-4EF8-0C55-6648-E08A7D84AA8E\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTA -n \"character1_joint1_rotateY\";\n\trename -uid \"98C922EC-4035-A03C-4985-53AD6C1F152F\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 36;\ncreateNode animCurveTA -n \"character1_joint1_rotateX\";\n\trename -uid \"63049F35-4075-9E0F-341F-A889892AD27A\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"character1_joint1_translateZ\";\n\trename -uid \"717C48F0-477D-59A6-C1A5-E790160B286E\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"character1_joint1_translateY\";\n\trename -uid \"4E6D6D02-4222-6561-D005-8B83092B6024\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"character1_joint1_translateX\";\n\trename -uid \"050831C9-448B-C443-741E-14B892794215\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 -2 20 -2;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"1DA111DC-441D-2EAC-7AB3-408290E68D8A\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 20;\n\tsetAttr \".unw\" 20;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nselect -ne :characterPartition;\nconnectAttr \"skinCluster1GroupId.id\" \"pCubeShape1.iog.og[0].gid\";\nconnectAttr \"skinCluster1Set.mwc\" \"pCubeShape1.iog.og[0].gco\";\nconnectAttr \"groupId2.id\" \"pCubeShape1.iog.og[1].gid\";\nconnectAttr \"tweakSet1.mwc\" \"pCubeShape1.iog.og[1].gco\";\nconnectAttr \"skinCluster1.og[0]\" \"pCubeShape1.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"pCubeShape1.twl\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1Orig.i\";\nconnectAttr \"character1.av[10]\" \"joint1.ry\";\nconnectAttr \"character1.av[9]\" \"joint1.rz\";\nconnectAttr \"character1.av[11]\" \"joint1.rx\";\nconnectAttr \"character1.lv[13]\" \"joint1.tz\";\nconnectAttr \"character1.lv[14]\" \"joint1.ty\";\nconnectAttr \"character1.lv[15]\" \"joint1.tx\";\nconnectAttr \"joint1_scaleX.o\" \"joint1.sx\";\nconnectAttr \"joint1_scaleY.o\" \"joint1.sy\";\nconnectAttr \"joint1_scaleZ.o\" \"joint1.sz\";\nconnectAttr \"joint1.s\" \"joint2.is\";\nconnectAttr \"joint1.ry\" \"joint2.ry\";\nconnectAttr \"character1.av[7]\" \"joint2.rz\";\nconnectAttr \"character1.av[8]\" \"joint2.rx\";\nconnectAttr \"character1.lv[10]\" \"joint2.tz\";\nconnectAttr \"character1.lv[11]\" \"joint2.ty\";\nconnectAttr \"character1.lv[12]\" \"joint2.tx\";\nconnectAttr \"joint2.s\" \"joint3.is\";\nconnectAttr \"joint2.ry\" \"joint3.ry\";\nconnectAttr \"character1.av[5]\" \"joint3.rz\";\nconnectAttr \"character1.av[6]\" \"joint3.rx\";\nconnectAttr \"character1.lv[7]\" \"joint3.tz\";\nconnectAttr \"character1.lv[8]\" \"joint3.ty\";\nconnectAttr \"character1.lv[9]\" \"joint3.tx\";\nconnectAttr \"joint3.s\" \"joint4.is\";\nconnectAttr \"joint3.ry\" \"joint4.ry\";\nconnectAttr \"character1.av[3]\" \"joint4.rz\";\nconnectAttr \"character1.av[4]\" \"joint4.rx\";\nconnectAttr \"character1.lv[4]\" \"joint4.tz\";\nconnectAttr \"character1.lv[5]\" \"joint4.ty\";\nconnectAttr \"character1.lv[6]\" \"joint4.tx\";\nconnectAttr \"joint4.s\" \"joint5.is\";\nconnectAttr \"character1.lv[3]\" \"joint5.tx\";\nconnectAttr \"character1.lv[2]\" \"joint5.ty\";\nconnectAttr \"character1.lv[1]\" \"joint5.tz\";\nconnectAttr \"character1.av[2]\" \"joint5.rx\";\nconnectAttr \"joint4.ry\" \"joint5.ry\";\nconnectAttr \"character1.av[1]\" \"joint5.rz\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"skinCluster1GroupParts.og\" \"skinCluster1.ip[0].ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1.ip[0].gi\";\nconnectAttr \"bindPose1.msg\" \"skinCluster1.bp\";\nconnectAttr \"joint1.wm\" \"skinCluster1.ma[0]\";\nconnectAttr \"joint2.wm\" \"skinCluster1.ma[1]\";\nconnectAttr \"joint3.wm\" \"skinCluster1.ma[2]\";\nconnectAttr \"joint4.wm\" \"skinCluster1.ma[3]\";\nconnectAttr \"joint5.wm\" \"skinCluster1.ma[4]\";\nconnectAttr \"joint1.liw\" \"skinCluster1.lw[0]\";\nconnectAttr \"joint2.liw\" \"skinCluster1.lw[1]\";\nconnectAttr \"joint3.liw\" \"skinCluster1.lw[2]\";\nconnectAttr \"joint4.liw\" \"skinCluster1.lw[3]\";\nconnectAttr \"joint5.liw\" \"skinCluster1.lw[4]\";\nconnectAttr \"joint1.obcc\" \"skinCluster1.ifcl[0]\";\nconnectAttr \"joint2.obcc\" \"skinCluster1.ifcl[1]\";\nconnectAttr \"joint3.obcc\" \"skinCluster1.ifcl[2]\";\nconnectAttr \"joint4.obcc\" \"skinCluster1.ifcl[3]\";\nconnectAttr \"joint5.obcc\" \"skinCluster1.ifcl[4]\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"skinCluster1GroupId.msg\" \"skinCluster1Set.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[0]\" \"skinCluster1Set.dsm\" -na;\nconnectAttr \"skinCluster1.msg\" \"skinCluster1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"skinCluster1GroupParts.ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[1]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"pCubeShape1Orig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"joint1.msg\" \"bindPose1.m[0]\";\nconnectAttr \"joint2.msg\" \"bindPose1.m[1]\";\nconnectAttr \"joint3.msg\" \"bindPose1.m[2]\";\nconnectAttr \"joint4.msg\" \"bindPose1.m[3]\";\nconnectAttr \"joint5.msg\" \"bindPose1.m[4]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[0]\";\nconnectAttr \"bindPose1.m[0]\" \"bindPose1.p[1]\";\nconnectAttr \"bindPose1.m[1]\" \"bindPose1.p[2]\";\nconnectAttr \"bindPose1.m[2]\" \"bindPose1.p[3]\";\nconnectAttr \"bindPose1.m[3]\" \"bindPose1.p[4]\";\nconnectAttr \"joint1.bps\" \"bindPose1.wm[0]\";\nconnectAttr \"joint2.bps\" \"bindPose1.wm[1]\";\nconnectAttr \"joint3.bps\" \"bindPose1.wm[2]\";\nconnectAttr \"joint4.bps\" \"bindPose1.wm[3]\";\nconnectAttr \"joint5.bps\" \"bindPose1.wm[4]\";\nconnectAttr \"character1_joint5_rotateZ.o\" \"character1.av[1]\";\nconnectAttr \"character1_joint5_rotateX.o\" \"character1.av[2]\";\nconnectAttr \"character1_joint4_rotateZ.o\" \"character1.av[3]\";\nconnectAttr \"character1_joint4_rotateX.o\" \"character1.av[4]\";\nconnectAttr \"character1_joint3_rotateZ.o\" \"character1.av[5]\";\nconnectAttr \"character1_joint3_rotateX.o\" \"character1.av[6]\";\nconnectAttr \"character1_joint2_rotateZ.o\" \"character1.av[7]\";\nconnectAttr \"character1_joint2_rotateX.o\" \"character1.av[8]\";\nconnectAttr \"character1_joint1_rotateZ.o\" \"character1.av[9]\";\nconnectAttr \"character1_joint1_rotateY.o\" \"character1.av[10]\";\nconnectAttr \"character1_joint1_rotateX.o\" \"character1.av[11]\";\nconnectAttr \"character1_joint5_translateZ.o\" \"character1.lv[1]\";\nconnectAttr \"character1_joint5_translateY.o\" \"character1.lv[2]\";\nconnectAttr \"character1_joint5_translateX.o\" \"character1.lv[3]\";\nconnectAttr \"character1_joint4_translateZ.o\" \"character1.lv[4]\";\nconnectAttr \"character1_joint4_translateY.o\" \"character1.lv[5]\";\nconnectAttr \"character1_joint4_translateX.o\" \"character1.lv[6]\";\nconnectAttr \"character1_joint3_translateZ.o\" \"character1.lv[7]\";\nconnectAttr \"character1_joint3_translateY.o\" \"character1.lv[8]\";\nconnectAttr \"character1_joint3_translateX.o\" \"character1.lv[9]\";\nconnectAttr \"character1_joint2_translateZ.o\" \"character1.lv[10]\";\nconnectAttr \"character1_joint2_translateY.o\" \"character1.lv[11]\";\nconnectAttr \"character1_joint2_translateX.o\" \"character1.lv[12]\";\nconnectAttr \"character1_joint1_translateZ.o\" \"character1.lv[13]\";\nconnectAttr \"character1_joint1_translateY.o\" \"character1.lv[14]\";\nconnectAttr \"character1_joint1_translateX.o\" \"character1.lv[15]\";\nconnectAttr \"joint5.rz\" \"character1.dnsm[0]\";\nconnectAttr \"joint5.rx\" \"character1.dnsm[1]\";\nconnectAttr \"joint5.tz\" \"character1.dnsm[2]\";\nconnectAttr \"joint5.ty\" \"character1.dnsm[3]\";\nconnectAttr \"joint5.tx\" \"character1.dnsm[4]\";\nconnectAttr \"joint4.rz\" \"character1.dnsm[5]\";\nconnectAttr \"joint4.rx\" \"character1.dnsm[6]\";\nconnectAttr \"joint4.tz\" \"character1.dnsm[7]\";\nconnectAttr \"joint4.ty\" \"character1.dnsm[8]\";\nconnectAttr \"joint4.tx\" \"character1.dnsm[9]\";\nconnectAttr \"joint3.rz\" \"character1.dnsm[10]\";\nconnectAttr \"joint3.rx\" \"character1.dnsm[11]\";\nconnectAttr \"joint3.tz\" \"character1.dnsm[12]\";\nconnectAttr \"joint3.ty\" \"character1.dnsm[13]\";\nconnectAttr \"joint3.tx\" \"character1.dnsm[14]\";\nconnectAttr \"joint2.rz\" \"character1.dnsm[15]\";\nconnectAttr \"joint2.rx\" \"character1.dnsm[16]\";\nconnectAttr \"joint2.tz\" \"character1.dnsm[17]\";\nconnectAttr \"joint2.ty\" \"character1.dnsm[18]\";\nconnectAttr \"joint2.tx\" \"character1.dnsm[19]\";\nconnectAttr \"joint1.rz\" \"character1.dnsm[20]\";\nconnectAttr \"joint1.ry\" \"character1.dnsm[21]\";\nconnectAttr \"joint1.rx\" \"character1.dnsm[22]\";\nconnectAttr \"joint1.tz\" \"character1.dnsm[23]\";\nconnectAttr \"joint1.ty\" \"character1.dnsm[24]\";\nconnectAttr \"joint1.tx\" \"character1.dnsm[25]\";\nconnectAttr \"character1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[0].dn\";\nconnectAttr \"joint5.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[1].dn\";\nconnectAttr \"joint3.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[2].dn\";\nconnectAttr \"joint4.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[3].dn\";\nconnectAttr \"joint1.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[4].dn\";\nconnectAttr \"joint2.msg\" \"MayaNodeEditorSavedTabsInfo.tgi[0].ni[5].dn\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"character1.pa\" \":characterPartition.st\" -na;\n// End of FiveJointsFourInfluencesAnim.ma\n"
  },
  {
    "path": "maya/scenes/skin/OneSkeletonTwoSkinsAnim.ma",
    "content": "//Maya ASCII 2019 scene\n//Name: OneSkeletonTwoSkinsAnim.ma\n//Last modified: Thu, Oct 03, 2019 11:11:37 AM\n//Codeset: 1252\nrequires maya \"2019\";\nrequires \"stereoCamera\" \"10.0\";\nrequires \"mtoa\" \"3.2.2\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2019\";\nfileInfo \"version\" \"2019\";\nfileInfo \"cutIdentifier\" \"201907021615-48e59968a3\";\nfileInfo \"osv\" \"Microsoft Windows 10 Technical Preview  (Build 18362)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"837A94B4-479C-C7D1-8D55-D0A283AA098F\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -1.6493960013826285 2.7920471770580209 12.040884455195455 ;\n\tsetAttr \".r\" -type \"double3\" -12.938352729602679 -7.7999999999997902 5.0160257603205769e-16 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"0C43CA0F-4A36-E7D6-A654-028588B5FCFE\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 12.469921133337378;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"4A96CBA0-46E5-ABDA-6AB7-38BE612DADA8\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -90 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"92101AC9-461B-F0CE-20E3-CA83F7C3FA6D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"front\";\n\trename -uid \"897E2967-4276-8F8D-9A8E-8785B71AF877\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0.35258352404899784 0.5207150757826271 1000.1041969340417 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"93A44E1B-442D-00AB-30C3-4581D5349F4B\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1041969340417;\n\tsetAttr \".ow\" 17.338015135764085;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"side\";\n\trename -uid \"6B7B899E-4AF3-3F50-88D8-C09E24C1CA88\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 90 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"8027E0C9-4497-9CF6-01E0-DBBDFBB6CC21\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode joint -n \"joint1\";\n\trename -uid \"9D0E62DA-4724-4617-5064-C4BBA64B53DB\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 90 ;\n\tsetAttr \".bps\" -type \"matrix\" 0 1 0 0 -1 0 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint2\" -p \"joint1\";\n\trename -uid \"70201B03-4483-E7A1-B050-D7AB9D0B119B\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 1;\n\tsetAttr \".t\" -type \"double3\" 1 -0.06074999999999986 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 0 1 0 0 -1 0 0 0 0 0 1 0 0 1 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint3\" -p \"joint2\";\n\trename -uid \"9DC651B6-46FA-D684-DD49-82927AF844E7\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 2;\n\tsetAttr \".t\" -type \"double3\" 1 0 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 -90 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 2 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode transform -n \"pCylinder1\";\n\trename -uid \"020225D6-4A36-E838-DF32-C7A4B46D153A\";\n\tsetAttr \".t\" -type \"double3\" 0 1 0 ;\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\n\tsetAttr \".rp\" -type \"double3\" 0 -1 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0 -1 0 ;\ncreateNode mesh -n \"pCylinderShape1\" -p \"pCylinder1\";\n\trename -uid \"DB8126A6-457E-AC3D-4A8C-D4886B77EDB9\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".vcs\" 2;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode mesh -n \"pCylinderShape1Orig\" -p \"pCylinder1\";\n\trename -uid \"E9E2A7A6-43A0-5176-D251-2C9C560ECDC2\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode transform -n \"pCube1\";\n\trename -uid \"5BDA7F59-4424-C970-6510-4E86FDA4FBEA\";\n\tsetAttr \".t\" -type \"double3\" 0 2 0 ;\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\n\tsetAttr \".rp\" -type \"double3\" 0 -2 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0 -2 0 ;\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"F77E161C-4693-FE77-62C3-7685B83AC657\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".vcs\" 2;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode mesh -n \"pCubeShape1Orig\" -p \"pCube1\";\n\trename -uid \"A9CDD18E-46ED-9AB4-6620-018D8BC0C033\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"6D7FF357-4C29-B692-69B6-56BC5D6604BB\";\n\tsetAttr -s 4 \".lnk\";\n\tsetAttr -s 4 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"E4BC033C-4268-4110-EDDB-8CA78D09413C\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"8C6C38DD-4DF1-54C8-EEA8-B6B7EF0302EA\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"712DC342-4E82-E20D-B253-5AACEB8A03C8\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"7472A17A-46F8-B10D-0D54-D28D0DA6EBFD\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"DD3855CA-40EB-B206-FAA6-06BD9A8E7D99\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"796EE7DD-4482-7218-9A80-FC9EE64E82DE\";\n\tsetAttr \".g\" yes;\ncreateNode polyCylinder -n \"polyCylinder1\";\n\trename -uid \"5CB10F63-4C80-CBBA-5F1E-DC947D2FA609\";\n\tsetAttr \".sh\" 2;\n\tsetAttr \".sc\" 1;\n\tsetAttr \".cuv\" 3;\ncreateNode skinCluster -n \"skinCluster1\";\n\trename -uid \"20BD57C1-48EA-6481-DADB-7B953AFC957F\";\n\tsetAttr -s 62 \".wl\";\n\tsetAttr \".wl[0:61].w\"\n\t\t2 0 0.79999979288866319 1 0.20000020711133684\n\t\t2 0 0.79999979329356141 1 0.20000020670643864\n\t\t2 0 0.79999980872432863 1 0.2000001912756714\n\t\t2 0 0.79999983211558745 1 0.20000016788441249\n\t\t2 0 0.79999984741213859 1 0.20000015258786144\n\t\t2 0 0.79999985025554377 1 0.20000014974445623\n\t\t2 0 0.79999987743885315 1 0.20000012256114688\n\t\t2 0 0.7999999040807344 1 0.2000000959192656\n\t\t2 0 0.79999991351646249 1 0.20000008648353748\n\t\t2 0 0.79999992370606199 1 0.20000007629393804\n\t\t2 0 0.79999991351646249 1 0.20000008648353748\n\t\t2 0 0.79999993072261755 1 0.20000006927738251\n\t\t2 0 0.79999994615338976 1 0.20000005384661021\n\t\t2 0 0.79999994979638323 1 0.20000005020361675\n\t\t2 0 0.79999996185302902 1 0.20000003814697098\n\t\t2 0 0.79999997677739121 1 0.20000002322260887\n\t\t2 0 0.79999998400638872 1 0.20000001599361128\n\t\t2 0 0.79999998822604923 1 0.2000000117739508\n\t\t2 0 0.79999999197033855 1 0.20000000802966142\n\t\t2 0 0.8 1 0.1999999999999999\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.20000020711133684 1 0.79999979288866319\n\t\t2 0 0.20000020670643864 1 0.79999979329356141\n\t\t2 0 0.2000001912756714 1 0.79999980872432863\n\t\t2 0 0.20000016788441249 1 0.79999983211558745\n\t\t2 0 0.20000015258786144 1 0.79999984741213859\n\t\t2 0 0.20000014974445623 1 0.79999985025554377\n\t\t2 0 0.20000012256114688 1 0.79999987743885315\n\t\t2 0 0.2000000959192656 1 0.7999999040807344\n\t\t2 0 0.20000008648353748 1 0.79999991351646249\n\t\t2 0 0.20000007629393804 1 0.79999992370606199\n\t\t2 0 0.20000008648353748 1 0.79999991351646249\n\t\t2 0 0.20000006927738251 1 0.79999993072261755\n\t\t2 0 0.20000005384661021 1 0.79999994615338976\n\t\t2 0 0.20000005020361675 1 0.79999994979638323\n\t\t2 0 0.20000003814697098 1 0.79999996185302902\n\t\t2 0 0.20000002322260887 1 0.79999997677739121\n\t\t2 0 0.20000001599361128 1 0.79999998400638872\n\t\t2 0 0.2000000117739508 1 0.79999998822604923\n\t\t2 0 0.20000000802966142 1 0.79999999197033855\n\t\t2 0 0.1999999999999999 1 0.8\n\t\t1 0 1\n\t\t1 1 1;\n\tsetAttr -s 2 \".pm\";\n\tsetAttr \".pm[0]\" -type \"matrix\" 0 -1 0 -0 1 0 -0 0 0 -0 1 -0 -0 0 -0 1;\n\tsetAttr \".pm[1]\" -type \"matrix\" 0 -1 0 -0 1 0 -0 0 0 -0 1 -0 -1 0 -0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 1;\n\tsetAttr -s 2 \".ma\";\n\tsetAttr -s 2 \".dpf[0:1]\"  4 4;\n\tsetAttr -s 2 \".lw\";\n\tsetAttr -s 2 \".lw\";\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".mi\" 4;\n\tsetAttr \".ucm\" yes;\n\tsetAttr -s 2 \".ifcl\";\n\tsetAttr -s 2 \".ifcl\";\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"25CC2F2B-473F-8262-7E05-5BB25865572A\";\ncreateNode objectSet -n \"skinCluster1Set\";\n\trename -uid \"F2D26BCC-4E15-6B4F-C43B-FCB6132E7A62\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster1GroupId\";\n\trename -uid \"DEC75742-452D-F68A-A0A7-14B45FCB26D5\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster1GroupParts\";\n\trename -uid \"D4639609-47AB-11A8-CF37-3BB43F2A665E\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"40904345-42F2-FEEA-6B9A-7391162BE080\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"99555917-4554-0C7D-23FF-0A905E2B27F3\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"188EBFB6-495D-BBFD-A0A6-AC91F9398B14\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode dagPose -n \"bindPose1\";\n\trename -uid \"54E4539C-4F37-56A6-CC01-30A6156F956D\";\n\tsetAttr -s 3 \".wm\";\n\tsetAttr -s 3 \".xm\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0.70710678118654757 0.70710678118654757 1 1 1 yes;\n\tsetAttr \".xm[1]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[3]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 -0.70710678118654757 0.70710678118654757 1 1 1 yes;\n\tsetAttr -s 3 \".m\";\n\tsetAttr -s 3 \".p\";\n\tsetAttr \".bp\" yes;\ncreateNode animCurveTL -n \"joint2_translateY\";\n\trename -uid \"2EDE69D3-426D-E03C-29D7-7BA80B797B16\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 20 -1 40 0;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"44446817-4DB2-B135-D560-EDBBD13D900D\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 948\\n            -height 499\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 947\\n            -height 499\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1706\\n            -height 1046\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 947\\n            -height 499\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -autoFitTime 0\\n\"\n\t\t+ \"                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n\"\n\t\t+ \"                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n\"\n\t\t+ \"                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 0 \\n                $editorName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n\"\n\t\t+ \"                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -connectionStyle \\\"bezier\\\" \\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                -hasWatchpoint 0\\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n\"\n\t\t+ \"                -copyConnectionsOnPaste 0\\n                -connectionStyle \\\"bezier\\\" \\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                -hasWatchpoint 0\\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\n{ string $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n\"\n\t\t+ \"                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n\"\n\t\t+ \"                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n\"\n\t\t+ \"                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName; };\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Front View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Front View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -cam `findStartUpCamera front` \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1706\\\\n    -height 1046\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Front View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -cam `findStartUpCamera front` \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1706\\\\n    -height 1046\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"4E8FAE43-4BA4-C029-2123-878EBBA789DE\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min -1 -max 40 -ast 1 -aet 40 \";\n\tsetAttr \".st\" 6;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"375EBF11-4DCD-EB77-E600-18B25E5195F4\";\n\tsetAttr \".h\" 4;\n\tsetAttr \".sh\" 4;\n\tsetAttr \".cuv\" 4;\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"0BA07249-46CE-0489-2FC2-B992855D6DE8\";\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"AF5AA1B4-462A-F963-D78D-12BF12459397\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"00B09CC7-41AF-9443-1C80-659619FEE7A8\";\ncreateNode lambert -n \"lambert3\";\n\trename -uid \"EF1C9127-4DBD-9E8C-B141-6CB7839BCD64\";\n\tsetAttr \".c\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".it\" -type \"float3\" 0.5 0.5 0.5 ;\ncreateNode shadingEngine -n \"lambert3SG\";\n\trename -uid \"A815FDB8-4353-5C3A-27E3-31B31A589505\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"636F354B-49E4-056D-B293-62A51E72B770\";\ncreateNode skinCluster -n \"skinCluster2\";\n\trename -uid \"DCE92B34-4414-E167-9BEF-6AA4AC0DBD34\";\n\tsetAttr -s 20 \".wl\";\n\tsetAttr \".wl[0:19].w\"\n\t\t3 0 0.89010989010989006 1 0.098901098901098952 2 0.010989010989010997\n\t\t3 0 0.89010989010989006 1 0.098901098901098952 2 0.010989010989010997\n\t\t3 0 0.47368421052631576 1 0.47368421052631576 2 0.052631578947368453\n\t\t3 0 0.47368421052631576 1 0.47368421052631576 2 0.052631578947368453\n\t\t3 0 0.052631578947368453 1 0.47368421052631576 2 0.47368421052631576\n\t\t3 0 0.052631578947368453 1 0.47368421052631576 2 0.47368421052631576\n\t\t3 0 0.052631578947368432 1 0.47368421052631582 2 0.47368421052631582\n\t\t3 0 0.052631578947368432 1 0.47368421052631582 2 0.47368421052631582\n\t\t3 0 0.10087173100871731 1 0.44956413449564137 2 0.44956413449564137\n\t\t3 0 0.10087173100871731 1 0.44956413449564137 2 0.44956413449564137\n\t\t3 0 0.10087173100871731 1 0.44956413449564137 2 0.44956413449564137\n\t\t3 0 0.10087173100871731 1 0.44956413449564137 2 0.44956413449564137\n\t\t3 0 0.052631578947368432 1 0.47368421052631582 2 0.47368421052631582\n\t\t3 0 0.052631578947368432 1 0.47368421052631582 2 0.47368421052631582\n\t\t3 0 0.052631578947368453 1 0.47368421052631576 2 0.47368421052631576\n\t\t3 0 0.052631578947368453 1 0.47368421052631576 2 0.47368421052631576\n\t\t3 0 0.47368421052631576 1 0.47368421052631576 2 0.052631578947368453\n\t\t3 0 0.47368421052631576 1 0.47368421052631576 2 0.052631578947368453\n\t\t3 0 0.89010989010989006 1 0.098901098901098952 2 0.010989010989010997\n\t\t3 0 0.89010989010989006 1 0.098901098901098952 2 0.010989010989010997;\n\tsetAttr -s 3 \".pm\";\n\tsetAttr \".pm[0]\" -type \"matrix\" 0 -1 0 -0 1 0 -0 0 0 -0 1 -0 -0 0 -0 1;\n\tsetAttr \".pm[1]\" -type \"matrix\" 0 -1 0 -0 1 0 -0 0 0 -0 1 -0 -1 0 -0 1;\n\tsetAttr \".pm[2]\" -type \"matrix\" 1 -0 0 -0 -0 1 -0 0 0 -0 1 -0 -0 -2 -0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 2 0 1;\n\tsetAttr -s 3 \".ma\";\n\tsetAttr -s 3 \".dpf[0:2]\"  4 4 4;\n\tsetAttr -s 3 \".lw\";\n\tsetAttr -s 3 \".lw\";\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".mi\" 4;\n\tsetAttr \".ucm\" yes;\n\tsetAttr -s 3 \".ifcl\";\n\tsetAttr -s 3 \".ifcl\";\ncreateNode tweak -n \"tweak2\";\n\trename -uid \"33D8DEDA-4B19-CB61-6E59-DCB62EBFA0C6\";\ncreateNode objectSet -n \"skinCluster2Set\";\n\trename -uid \"8E70D875-4D4B-EA61-D6D4-42AD2D3EE9C4\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster2GroupId\";\n\trename -uid \"F7E37EFE-476D-B8B3-B3BF-49A57FECE8F5\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster2GroupParts\";\n\trename -uid \"7F516A83-472C-F42F-D8BC-2EB5BC541C11\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet2\";\n\trename -uid \"2FD58558-47B6-D0CE-1606-1FAF4D865425\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId4\";\n\trename -uid \"57496BD1-4D07-9F3C-5177-C9A82F33396B\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts4\";\n\trename -uid \"7F3FDB49-417C-E2D1-BDC1-4B8A9DD79594\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 37;\n\tsetAttr \".unw\" 37;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 6 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".macc\";\n\tsetAttr -k on \".macd\";\n\tsetAttr -k on \".macq\";\n\tsetAttr -cb on \".ifg\";\n\tsetAttr -k on \".clip\";\n\tsetAttr -k on \".edm\";\n\tsetAttr -k on \".edl\";\n\tsetAttr \".ren\" -type \"string\" \"arnold\";\n\tsetAttr -av -k on \".esr\";\n\tsetAttr -k on \".ors\";\n\tsetAttr -cb on \".sdf\";\n\tsetAttr -cb on \".imfkey\";\n\tsetAttr -k on \".gama\";\n\tsetAttr -cb on \".ar\";\n\tsetAttr -av \".bfs\";\n\tsetAttr -k on \".be\";\n\tsetAttr -k on \".fec\";\n\tsetAttr -k on \".ofc\";\n\tsetAttr -cb on \".ofe\";\n\tsetAttr -cb on \".efe\";\n\tsetAttr -cb on \".umfn\";\n\tsetAttr -cb on \".ufe\";\n\tsetAttr -k on \".comp\";\n\tsetAttr -k on \".cth\";\n\tsetAttr -k on \".soll\";\n\tsetAttr -k on \".rd\";\n\tsetAttr -k on \".lp\";\n\tsetAttr -k on \".sp\";\n\tsetAttr -k on \".shs\";\n\tsetAttr -k on \".lpr\";\n\tsetAttr -cb on \".gv\";\n\tsetAttr -cb on \".sv\";\n\tsetAttr -k on \".mm\";\n\tsetAttr -k on \".npu\";\n\tsetAttr -k on \".itf\";\n\tsetAttr -k on \".shp\";\n\tsetAttr -cb on \".isp\";\n\tsetAttr -k on \".uf\";\n\tsetAttr -k on \".oi\";\n\tsetAttr -k on \".rut\";\n\tsetAttr -av -k on \".mbf\";\n\tsetAttr -k on \".afp\";\n\tsetAttr -k on \".pfb\";\n\tsetAttr -cb on \".pfrm\";\n\tsetAttr -cb on \".pfom\";\n\tsetAttr -av -k on \".bll\";\n\tsetAttr -k on \".bls\";\n\tsetAttr -k on \".smv\";\n\tsetAttr -k on \".ubc\";\n\tsetAttr -k on \".mbc\";\n\tsetAttr -k on \".udbx\";\n\tsetAttr -k on \".smc\";\n\tsetAttr -k on \".kmv\";\n\tsetAttr -cb on \".isl\";\n\tsetAttr -cb on \".ism\";\n\tsetAttr -cb on \".imb\";\n\tsetAttr -k on \".rlen\";\n\tsetAttr -av -k on \".frts\";\n\tsetAttr -k on \".tlwd\";\n\tsetAttr -k on \".tlht\";\n\tsetAttr -k on \".jfc\";\n\tsetAttr -cb on \".rsb\";\n\tsetAttr -k on \".ope\";\n\tsetAttr -k on \".oppf\";\n\tsetAttr -cb on \".hbl\";\nselect -ne :defaultResolution;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"joint1.s\" \"joint2.is\";\nconnectAttr \"joint2_translateY.o\" \"joint2.ty\";\nconnectAttr \"joint2.s\" \"joint3.is\";\nconnectAttr \"skinCluster1GroupId.id\" \"pCylinderShape1.iog.og[4].gid\";\nconnectAttr \"skinCluster1Set.mwc\" \"pCylinderShape1.iog.og[4].gco\";\nconnectAttr \"groupId2.id\" \"pCylinderShape1.iog.og[5].gid\";\nconnectAttr \"tweakSet1.mwc\" \"pCylinderShape1.iog.og[5].gco\";\nconnectAttr \"skinCluster1.og[0]\" \"pCylinderShape1.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"pCylinderShape1.twl\";\nconnectAttr \"polyCylinder1.out\" \"pCylinderShape1Orig.i\";\nconnectAttr \"skinCluster2GroupId.id\" \"pCubeShape1.iog.og[2].gid\";\nconnectAttr \"skinCluster2Set.mwc\" \"pCubeShape1.iog.og[2].gco\";\nconnectAttr \"groupId4.id\" \"pCubeShape1.iog.og[3].gid\";\nconnectAttr \"tweakSet2.mwc\" \"pCubeShape1.iog.og[3].gco\";\nconnectAttr \"skinCluster2.og[0]\" \"pCubeShape1.i\";\nconnectAttr \"tweak2.vl[0].vt[0]\" \"pCubeShape1.twl\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1Orig.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"skinCluster1GroupParts.og\" \"skinCluster1.ip[0].ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1.ip[0].gi\";\nconnectAttr \"bindPose1.msg\" \"skinCluster1.bp\";\nconnectAttr \"joint1.wm\" \"skinCluster1.ma[0]\";\nconnectAttr \"joint2.wm\" \"skinCluster1.ma[1]\";\nconnectAttr \"joint1.liw\" \"skinCluster1.lw[0]\";\nconnectAttr \"joint2.liw\" \"skinCluster1.lw[1]\";\nconnectAttr \"joint1.obcc\" \"skinCluster1.ifcl[0]\";\nconnectAttr \"joint2.obcc\" \"skinCluster1.ifcl[1]\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"skinCluster1GroupId.msg\" \"skinCluster1Set.gn\" -na;\nconnectAttr \"pCylinderShape1.iog.og[4]\" \"skinCluster1Set.dsm\" -na;\nconnectAttr \"skinCluster1.msg\" \"skinCluster1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"skinCluster1GroupParts.ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"pCylinderShape1.iog.og[5]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"pCylinderShape1Orig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"joint1.msg\" \"bindPose1.m[0]\";\nconnectAttr \"joint2.msg\" \"bindPose1.m[1]\";\nconnectAttr \"joint3.msg\" \"bindPose1.m[3]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[0]\";\nconnectAttr \"bindPose1.m[0]\" \"bindPose1.p[1]\";\nconnectAttr \"bindPose1.m[1]\" \"bindPose1.p[3]\";\nconnectAttr \"joint1.bps\" \"bindPose1.wm[0]\";\nconnectAttr \"joint2.bps\" \"bindPose1.wm[1]\";\nconnectAttr \"joint3.bps\" \"bindPose1.wm[3]\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"pCubeShape1.iog\" \"lambert2SG.dsm\" -na;\nconnectAttr \"lambert2SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo1.m\";\nconnectAttr \"lambert3.oc\" \"lambert3SG.ss\";\nconnectAttr \"pCylinderShape1.iog\" \"lambert3SG.dsm\" -na;\nconnectAttr \"lambert3SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"lambert3.msg\" \"materialInfo2.m\";\nconnectAttr \"skinCluster2GroupParts.og\" \"skinCluster2.ip[0].ig\";\nconnectAttr \"skinCluster2GroupId.id\" \"skinCluster2.ip[0].gi\";\nconnectAttr \"joint1.wm\" \"skinCluster2.ma[0]\";\nconnectAttr \"joint2.wm\" \"skinCluster2.ma[1]\";\nconnectAttr \"joint3.wm\" \"skinCluster2.ma[2]\";\nconnectAttr \"joint1.liw\" \"skinCluster2.lw[0]\";\nconnectAttr \"joint2.liw\" \"skinCluster2.lw[1]\";\nconnectAttr \"joint3.liw\" \"skinCluster2.lw[2]\";\nconnectAttr \"joint1.obcc\" \"skinCluster2.ifcl[0]\";\nconnectAttr \"joint2.obcc\" \"skinCluster2.ifcl[1]\";\nconnectAttr \"joint3.obcc\" \"skinCluster2.ifcl[2]\";\nconnectAttr \"bindPose1.msg\" \"skinCluster2.bp\";\nconnectAttr \"groupParts4.og\" \"tweak2.ip[0].ig\";\nconnectAttr \"groupId4.id\" \"tweak2.ip[0].gi\";\nconnectAttr \"skinCluster2GroupId.msg\" \"skinCluster2Set.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[2]\" \"skinCluster2Set.dsm\" -na;\nconnectAttr \"skinCluster2.msg\" \"skinCluster2Set.ub[0]\";\nconnectAttr \"tweak2.og[0]\" \"skinCluster2GroupParts.ig\";\nconnectAttr \"skinCluster2GroupId.id\" \"skinCluster2GroupParts.gi\";\nconnectAttr \"groupId4.msg\" \"tweakSet2.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[3]\" \"tweakSet2.dsm\" -na;\nconnectAttr \"tweak2.msg\" \"tweakSet2.ub[0]\";\nconnectAttr \"pCubeShape1Orig.w\" \"groupParts4.ig\";\nconnectAttr \"groupId4.id\" \"groupParts4.gi\";\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert3SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert3.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\n// End of OneSkeletonTwoSkinsAnim.ma\n"
  },
  {
    "path": "maya/scenes/skin/ScaledRegressionTestAnim1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: ScaledRegressionTest1.ma\n//Last modified: Sun, Feb 03, 2019 12:04:52 PM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"01F4BF83-4CD7-7356-02CD-739DBCB7ACB0\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -0.26831912036530903 0.59674839307456695 5.9867302584665474 ;\n\tsetAttr \".r\" -type \"double3\" 1.4616472703923011 4.6000000000002981 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"9DAE224D-4E64-7BAA-150F-F18FD1DCA1B0\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999986;\n\tsetAttr \".coi\" 6.0080314340447494;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" -0.75 0.75 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"19B0CA92-484A-C026-1CC3-7A8B1DC38BFA\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"360C4A95-4A5D-9C9C-2F19-698498E39D1F\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"7180C34A-4B33-AE7B-23F0-C185A1667F11\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -0.75 1.5 1000.1014061084006 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"BD5D3725-48B2-306D-36A2-0A88F69F17CB\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1014061084006;\n\tsetAttr \".ow\" 19.899450714071708;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".tp\" -type \"double3\" -0.75 1.5 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"668DA2CC-4779-FFF9-51E3-EF849190AACC\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"9C20D95B-46E7-4CD1-6EBF-A8A9B8E86B4D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"2C9C8ACE-408D-3440-FB5D-EEA4F3604443\";\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"583621B5-4851-E156-6D62-7680D526B122\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\ncreateNode mesh -n \"pCubeShape1Orig\" -p \"pCube1\";\n\trename -uid \"19763209-4792-BE36-A7A6-3984654B5402\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pCube2\";\n\trename -uid \"37A7D6D3-452C-5A80-E14C-738506C831F5\";\n\tsetAttr \".t\" -type \"double3\" -1.5 0 0 ;\ncreateNode mesh -n \"pCubeShape2\" -p \"pCube2\";\n\trename -uid \"3A21C489-4C17-D584-0ADB-8E81A4A7A177\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pCube3\";\n\trename -uid \"DFD23544-4EAB-F515-8C9B-A0AE96B7A2D1\";\n\tsetAttr \".t\" -type \"double3\" -1.5 1.5 0 ;\ncreateNode mesh -n \"pCubeShape3\" -p \"pCube3\";\n\trename -uid \"7275DD2C-46B0-3FC7-C40B-139F22B9DC6E\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pCube4\";\n\trename -uid \"9E7B8ED8-49FC-00E2-0794-E0912D0DB45E\";\n\tsetAttr \".t\" -type \"double3\" 0 1.5 0 ;\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\ncreateNode mesh -n \"pCubeShape4\" -p \"pCube4\";\n\trename -uid \"B1FB7A48-44A5-7DFE-D5CB-F0BD5CE74B05\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\ncreateNode mesh -n \"pCubeShape4Orig\" -p \"pCube4\";\n\trename -uid \"B8F7C3A6-4E33-DA4D-0686-F2AE51EDA844\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode joint -n \"joint1\";\n\trename -uid \"6F47816D-40EA-3F65-28BF-CDA5EB3DEFF5\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 89.999999999999986 ;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 0 0 1;\n\tsetAttr \".radi\" 10;\ncreateNode joint -n \"joint2\" -p \"joint1\";\n\trename -uid \"1A88E3C8-48DD-02A3-F317-59997C288540\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 1;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 1.5 0 1;\n\tsetAttr \".radi\" 10;\ncreateNode transform -n \"pSphere2\" -p \"joint2\";\n\trename -uid \"33EFE540-4A73-75A8-B5C6-B6B4C879DEC1\";\ncreateNode mesh -n \"pSphereShape2\" -p \"pSphere2\";\n\trename -uid \"1471EE14-4DAC-AFC8-A0D5-D68F7F00F8E0\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 439 \".uvst[0].uvsp\";\n\tsetAttr \".uvst[0].uvsp[0:249]\" -type \"float2\" 0 0.050000001 0.050000001 0.050000001\n\t\t 0.1 0.050000001 0.15000001 0.050000001 0.2 0.050000001 0.25 0.050000001 0.30000001\n\t\t 0.050000001 0.35000002 0.050000001 0.40000004 0.050000001 0.45000005 0.050000001\n\t\t 0.50000006 0.050000001 0.55000007 0.050000001 0.60000008 0.050000001 0.6500001 0.050000001\n\t\t 0.70000011 0.050000001 0.75000012 0.050000001 0.80000013 0.050000001 0.85000014 0.050000001\n\t\t 0.90000015 0.050000001 0.95000017 0.050000001 1.000000119209 0.050000001 0 0.1 0.050000001\n\t\t 0.1 0.1 0.1 0.15000001 0.1 0.2 0.1 0.25 0.1 0.30000001 0.1 0.35000002 0.1 0.40000004\n\t\t 0.1 0.45000005 0.1 0.50000006 0.1 0.55000007 0.1 0.60000008 0.1 0.6500001 0.1 0.70000011\n\t\t 0.1 0.75000012 0.1 0.80000013 0.1 0.85000014 0.1 0.90000015 0.1 0.95000017 0.1 1.000000119209\n\t\t 0.1 0 0.15000001 0.050000001 0.15000001 0.1 0.15000001 0.15000001 0.15000001 0.2\n\t\t 0.15000001 0.25 0.15000001 0.30000001 0.15000001 0.35000002 0.15000001 0.40000004\n\t\t 0.15000001 0.45000005 0.15000001 0.50000006 0.15000001 0.55000007 0.15000001 0.60000008\n\t\t 0.15000001 0.6500001 0.15000001 0.70000011 0.15000001 0.75000012 0.15000001 0.80000013\n\t\t 0.15000001 0.85000014 0.15000001 0.90000015 0.15000001 0.95000017 0.15000001 1.000000119209\n\t\t 0.15000001 0 0.2 0.050000001 0.2 0.1 0.2 0.15000001 0.2 0.2 0.2 0.25 0.2 0.30000001\n\t\t 0.2 0.35000002 0.2 0.40000004 0.2 0.45000005 0.2 0.50000006 0.2 0.55000007 0.2 0.60000008\n\t\t 0.2 0.6500001 0.2 0.70000011 0.2 0.75000012 0.2 0.80000013 0.2 0.85000014 0.2 0.90000015\n\t\t 0.2 0.95000017 0.2 1.000000119209 0.2 0 0.25 0.050000001 0.25 0.1 0.25 0.15000001\n\t\t 0.25 0.2 0.25 0.25 0.25 0.30000001 0.25 0.35000002 0.25 0.40000004 0.25 0.45000005\n\t\t 0.25 0.50000006 0.25 0.55000007 0.25 0.60000008 0.25 0.6500001 0.25 0.70000011 0.25\n\t\t 0.75000012 0.25 0.80000013 0.25 0.85000014 0.25 0.90000015 0.25 0.95000017 0.25 1.000000119209\n\t\t 0.25 0 0.30000001 0.050000001 0.30000001 0.1 0.30000001 0.15000001 0.30000001 0.2\n\t\t 0.30000001 0.25 0.30000001 0.30000001 0.30000001 0.35000002 0.30000001 0.40000004\n\t\t 0.30000001 0.45000005 0.30000001 0.50000006 0.30000001 0.55000007 0.30000001 0.60000008\n\t\t 0.30000001 0.6500001 0.30000001 0.70000011 0.30000001 0.75000012 0.30000001 0.80000013\n\t\t 0.30000001 0.85000014 0.30000001 0.90000015 0.30000001 0.95000017 0.30000001 1.000000119209\n\t\t 0.30000001 0 0.35000002 0.050000001 0.35000002 0.1 0.35000002 0.15000001 0.35000002\n\t\t 0.2 0.35000002 0.25 0.35000002 0.30000001 0.35000002 0.35000002 0.35000002 0.40000004\n\t\t 0.35000002 0.45000005 0.35000002 0.50000006 0.35000002 0.55000007 0.35000002 0.60000008\n\t\t 0.35000002 0.6500001 0.35000002 0.70000011 0.35000002 0.75000012 0.35000002 0.80000013\n\t\t 0.35000002 0.85000014 0.35000002 0.90000015 0.35000002 0.95000017 0.35000002 1.000000119209\n\t\t 0.35000002 0 0.40000004 0.050000001 0.40000004 0.1 0.40000004 0.15000001 0.40000004\n\t\t 0.2 0.40000004 0.25 0.40000004 0.30000001 0.40000004 0.35000002 0.40000004 0.40000004\n\t\t 0.40000004 0.45000005 0.40000004 0.50000006 0.40000004 0.55000007 0.40000004 0.60000008\n\t\t 0.40000004 0.6500001 0.40000004 0.70000011 0.40000004 0.75000012 0.40000004 0.80000013\n\t\t 0.40000004 0.85000014 0.40000004 0.90000015 0.40000004 0.95000017 0.40000004 1.000000119209\n\t\t 0.40000004 0 0.45000005 0.050000001 0.45000005 0.1 0.45000005 0.15000001 0.45000005\n\t\t 0.2 0.45000005 0.25 0.45000005 0.30000001 0.45000005 0.35000002 0.45000005 0.40000004\n\t\t 0.45000005 0.45000005 0.45000005 0.50000006 0.45000005 0.55000007 0.45000005 0.60000008\n\t\t 0.45000005 0.6500001 0.45000005 0.70000011 0.45000005 0.75000012 0.45000005 0.80000013\n\t\t 0.45000005 0.85000014 0.45000005 0.90000015 0.45000005 0.95000017 0.45000005 1.000000119209\n\t\t 0.45000005 0 0.50000006 0.050000001 0.50000006 0.1 0.50000006 0.15000001 0.50000006\n\t\t 0.2 0.50000006 0.25 0.50000006 0.30000001 0.50000006 0.35000002 0.50000006 0.40000004\n\t\t 0.50000006 0.45000005 0.50000006 0.50000006 0.50000006 0.55000007 0.50000006 0.60000008\n\t\t 0.50000006 0.6500001 0.50000006 0.70000011 0.50000006 0.75000012 0.50000006 0.80000013\n\t\t 0.50000006 0.85000014 0.50000006 0.90000015 0.50000006 0.95000017 0.50000006 1.000000119209\n\t\t 0.50000006 0 0.55000007 0.050000001 0.55000007 0.1 0.55000007 0.15000001 0.55000007\n\t\t 0.2 0.55000007 0.25 0.55000007 0.30000001 0.55000007 0.35000002 0.55000007 0.40000004\n\t\t 0.55000007 0.45000005 0.55000007 0.50000006 0.55000007 0.55000007 0.55000007 0.60000008\n\t\t 0.55000007 0.6500001 0.55000007 0.70000011 0.55000007 0.75000012 0.55000007 0.80000013\n\t\t 0.55000007 0.85000014 0.55000007 0.90000015 0.55000007 0.95000017 0.55000007 1.000000119209\n\t\t 0.55000007 0 0.60000008 0.050000001 0.60000008 0.1 0.60000008 0.15000001 0.60000008\n\t\t 0.2 0.60000008 0.25 0.60000008 0.30000001 0.60000008 0.35000002 0.60000008 0.40000004\n\t\t 0.60000008 0.45000005 0.60000008 0.50000006 0.60000008 0.55000007 0.60000008 0.60000008\n\t\t 0.60000008 0.6500001 0.60000008 0.70000011 0.60000008 0.75000012 0.60000008 0.80000013\n\t\t 0.60000008 0.85000014 0.60000008 0.90000015 0.60000008;\n\tsetAttr \".uvst[0].uvsp[250:438]\" 0.95000017 0.60000008 1.000000119209 0.60000008\n\t\t 0 0.6500001 0.050000001 0.6500001 0.1 0.6500001 0.15000001 0.6500001 0.2 0.6500001\n\t\t 0.25 0.6500001 0.30000001 0.6500001 0.35000002 0.6500001 0.40000004 0.6500001 0.45000005\n\t\t 0.6500001 0.50000006 0.6500001 0.55000007 0.6500001 0.60000008 0.6500001 0.6500001\n\t\t 0.6500001 0.70000011 0.6500001 0.75000012 0.6500001 0.80000013 0.6500001 0.85000014\n\t\t 0.6500001 0.90000015 0.6500001 0.95000017 0.6500001 1.000000119209 0.6500001 0 0.70000011\n\t\t 0.050000001 0.70000011 0.1 0.70000011 0.15000001 0.70000011 0.2 0.70000011 0.25 0.70000011\n\t\t 0.30000001 0.70000011 0.35000002 0.70000011 0.40000004 0.70000011 0.45000005 0.70000011\n\t\t 0.50000006 0.70000011 0.55000007 0.70000011 0.60000008 0.70000011 0.6500001 0.70000011\n\t\t 0.70000011 0.70000011 0.75000012 0.70000011 0.80000013 0.70000011 0.85000014 0.70000011\n\t\t 0.90000015 0.70000011 0.95000017 0.70000011 1.000000119209 0.70000011 0 0.75000012\n\t\t 0.050000001 0.75000012 0.1 0.75000012 0.15000001 0.75000012 0.2 0.75000012 0.25 0.75000012\n\t\t 0.30000001 0.75000012 0.35000002 0.75000012 0.40000004 0.75000012 0.45000005 0.75000012\n\t\t 0.50000006 0.75000012 0.55000007 0.75000012 0.60000008 0.75000012 0.6500001 0.75000012\n\t\t 0.70000011 0.75000012 0.75000012 0.75000012 0.80000013 0.75000012 0.85000014 0.75000012\n\t\t 0.90000015 0.75000012 0.95000017 0.75000012 1.000000119209 0.75000012 0 0.80000013\n\t\t 0.050000001 0.80000013 0.1 0.80000013 0.15000001 0.80000013 0.2 0.80000013 0.25 0.80000013\n\t\t 0.30000001 0.80000013 0.35000002 0.80000013 0.40000004 0.80000013 0.45000005 0.80000013\n\t\t 0.50000006 0.80000013 0.55000007 0.80000013 0.60000008 0.80000013 0.6500001 0.80000013\n\t\t 0.70000011 0.80000013 0.75000012 0.80000013 0.80000013 0.80000013 0.85000014 0.80000013\n\t\t 0.90000015 0.80000013 0.95000017 0.80000013 1.000000119209 0.80000013 0 0.85000014\n\t\t 0.050000001 0.85000014 0.1 0.85000014 0.15000001 0.85000014 0.2 0.85000014 0.25 0.85000014\n\t\t 0.30000001 0.85000014 0.35000002 0.85000014 0.40000004 0.85000014 0.45000005 0.85000014\n\t\t 0.50000006 0.85000014 0.55000007 0.85000014 0.60000008 0.85000014 0.6500001 0.85000014\n\t\t 0.70000011 0.85000014 0.75000012 0.85000014 0.80000013 0.85000014 0.85000014 0.85000014\n\t\t 0.90000015 0.85000014 0.95000017 0.85000014 1.000000119209 0.85000014 0 0.90000015\n\t\t 0.050000001 0.90000015 0.1 0.90000015 0.15000001 0.90000015 0.2 0.90000015 0.25 0.90000015\n\t\t 0.30000001 0.90000015 0.35000002 0.90000015 0.40000004 0.90000015 0.45000005 0.90000015\n\t\t 0.50000006 0.90000015 0.55000007 0.90000015 0.60000008 0.90000015 0.6500001 0.90000015\n\t\t 0.70000011 0.90000015 0.75000012 0.90000015 0.80000013 0.90000015 0.85000014 0.90000015\n\t\t 0.90000015 0.90000015 0.95000017 0.90000015 1.000000119209 0.90000015 0 0.95000017\n\t\t 0.050000001 0.95000017 0.1 0.95000017 0.15000001 0.95000017 0.2 0.95000017 0.25 0.95000017\n\t\t 0.30000001 0.95000017 0.35000002 0.95000017 0.40000004 0.95000017 0.45000005 0.95000017\n\t\t 0.50000006 0.95000017 0.55000007 0.95000017 0.60000008 0.95000017 0.6500001 0.95000017\n\t\t 0.70000011 0.95000017 0.75000012 0.95000017 0.80000013 0.95000017 0.85000014 0.95000017\n\t\t 0.90000015 0.95000017 0.95000017 0.95000017 1.000000119209 0.95000017 0.025 0 0.075000003\n\t\t 0 0.125 0 0.17500001 0 0.22500001 0 0.27500001 0 0.32500002 0 0.375 0 0.42500001\n\t\t 0 0.47500002 0 0.52499998 0 0.57499999 0 0.625 0 0.67500001 0 0.72499996 0 0.77499998\n\t\t 0 0.82499999 0 0.875 0 0.92500001 0 0.97499996 0 0.025 1 0.075000003 1 0.125 1 0.17500001\n\t\t 1 0.22500001 1 0.27500001 1 0.32500002 1 0.375 1 0.42500001 1 0.47500002 1 0.52499998\n\t\t 1 0.57499999 1 0.625 1 0.67500001 1 0.72499996 1 0.77499998 1 0.82499999 1 0.875\n\t\t 1 0.92500001 1 0.97499996 1;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 382 \".vt\";\n\tsetAttr \".vt[0:165]\"  0.014877813 -0.098768838 -0.0048340941 0.012655823 -0.098768838 -0.0091949934\n\t\t 0.0091949934 -0.098768838 -0.012655823 0.0048340936 -0.098768838 -0.014877811 0 -0.098768838 -0.015643455\n\t\t -0.0048340936 -0.098768838 -0.01487781 -0.0091949916 -0.098768838 -0.01265582 -0.012655819 -0.098768838 -0.0091949906\n\t\t -0.014877807 -0.098768838 -0.0048340922 -0.015643451 -0.098768838 0 -0.014877807 -0.098768838 0.0048340922\n\t\t -0.012655818 -0.098768838 0.0091949897 -0.0091949897 -0.098768838 0.012655817 -0.0048340922 -0.098768838 0.014877805\n\t\t -4.6621107e-10 -0.098768838 0.01564345 0.0048340908 -0.098768838 0.014877805 0.0091949878 -0.098768838 0.012655816\n\t\t 0.012655815 -0.098768838 0.0091949888 0.014877804 -0.098768838 0.0048340913 0.015643448 -0.098768838 0\n\t\t 0.029389283 -0.095105655 -0.0095491568 0.025000017 -0.095105655 -0.018163575 0.018163575 -0.095105655 -0.025000015\n\t\t 0.0095491558 -0.095105655 -0.029389279 0 -0.095105655 -0.030901715 -0.0095491558 -0.095105655 -0.029389277\n\t\t -0.018163571 -0.095105655 -0.02500001 -0.025000008 -0.095105655 -0.018163569 -0.029389272 -0.095105655 -0.009549153\n\t\t -0.030901708 -0.095105655 0 -0.029389272 -0.095105655 0.009549153 -0.025000006 -0.095105655 0.018163567\n\t\t -0.018163567 -0.095105655 0.025000004 -0.009549153 -0.095105655 0.029389268 -9.2094243e-10 -0.095105655 0.030901704\n\t\t 0.0095491502 -0.095105655 0.029389266 0.018163564 -0.095105655 0.025000002 0.025 -0.095105655 0.018163566\n\t\t 0.029389264 -0.095105655 0.0095491512 0.0309017 -0.095105655 0 0.043177091 -0.089100651 -0.014029087\n\t\t 0.036728628 -0.089100651 -0.026684908 0.026684908 -0.089100651 -0.036728624 0.014029086 -0.089100651 -0.043177087\n\t\t 0 -0.089100651 -0.045399074 -0.014029086 -0.089100651 -0.043177083 -0.026684903 -0.089100651 -0.036728617\n\t\t -0.036728617 -0.089100651 -0.026684901 -0.043177076 -0.089100651 -0.014029081 -0.045399062 -0.089100651 0\n\t\t -0.043177076 -0.089100651 0.014029081 -0.036728613 -0.089100651 0.026684897 -0.026684897 -0.089100651 0.036728609\n\t\t -0.014029081 -0.089100651 0.043177068 -1.3529972e-09 -0.089100651 0.045399055 0.014029077 -0.089100651 0.043177068\n\t\t 0.026684891 -0.089100651 0.036728606 0.036728606 -0.089100651 0.026684895 0.043177065 -0.089100651 0.014029079\n\t\t 0.045399051 -0.089100651 0 0.055901736 -0.080901705 -0.018163575 0.047552858 -0.080901705 -0.034549169\n\t\t 0.034549169 -0.080901705 -0.047552854 0.018163573 -0.080901705 -0.055901729 0 -0.080901705 -0.058778554\n\t\t -0.018163573 -0.080901705 -0.055901725 -0.034549162 -0.080901705 -0.047552843 -0.047552839 -0.080901705 -0.034549158\n\t\t -0.055901714 -0.080901705 -0.018163567 -0.058778539 -0.080901705 0 -0.055901714 -0.080901705 0.018163567\n\t\t -0.047552835 -0.080901705 0.034549158 -0.034549158 -0.080901705 0.047552831 -0.018163567 -0.080901705 0.055901706\n\t\t -1.7517365e-09 -0.080901705 0.058778532 0.018163562 -0.080901705 0.055901702 0.034549151 -0.080901705 0.047552828\n\t\t 0.047552824 -0.080901705 0.034549154 0.055901699 -0.080901705 0.018163564 0.058778524 -0.080901705 0\n\t\t 0.067249902 -0.070710681 -0.021850815 0.05720618 -0.070710681 -0.041562721 0.041562721 -0.070710681 -0.057206176\n\t\t 0.021850813 -0.070710681 -0.067249887 0 -0.070710681 -0.070710719 -0.021850813 -0.070710681 -0.067249887\n\t\t -0.041562714 -0.070710681 -0.057206165 -0.057206161 -0.070710681 -0.041562706 -0.067249872 -0.070710681 -0.021850808\n\t\t -0.070710696 -0.070710681 0 -0.067249872 -0.070710681 0.021850808 -0.057206158 -0.070710681 0.041562703\n\t\t -0.041562703 -0.070710681 0.05720615 -0.021850808 -0.070710681 0.067249864 -2.1073425e-09 -0.070710681 0.070710689\n\t\t 0.0218508 -0.070710681 0.067249857 0.041562695 -0.070710681 0.057206146 0.057206143 -0.070710681 0.041562699\n\t\t 0.067249857 -0.070710681 0.021850802 0.070710681 -0.070710681 0 0.076942146 -0.058778524 -0.025000017\n\t\t 0.065450899 -0.058778524 -0.047552858 0.047552858 -0.058778524 -0.065450892 0.025000015 -0.058778524 -0.076942131\n\t\t 0 -0.058778524 -0.080901742 -0.025000015 -0.058778524 -0.076942131 -0.047552846 -0.058778524 -0.065450877\n\t\t -0.065450877 -0.058778524 -0.047552843 -0.076942116 -0.058778524 -0.025000008 -0.080901727 -0.058778524 0\n\t\t -0.076942116 -0.058778524 0.025000008 -0.06545087 -0.058778524 0.047552839 -0.047552839 -0.058778524 0.065450862\n\t\t -0.025000008 -0.058778524 0.076942109 -2.4110587e-09 -0.058778524 0.080901712 0.025 -0.058778524 0.076942101\n\t\t 0.047552828 -0.058778524 0.065450862 0.065450855 -0.058778524 0.047552831 0.076942094 -0.058778524 0.025000002\n\t\t 0.080901705 -0.058778524 0 0.084739812 -0.045399051 -0.027533632 0.072083987 -0.045399051 -0.052372079\n\t\t 0.052372079 -0.045399051 -0.072083987 0.02753363 -0.045399051 -0.084739797 0 -0.045399051 -0.089100696\n\t\t -0.02753363 -0.045399051 -0.084739797 -0.052372068 -0.045399051 -0.072083965 -0.072083965 -0.045399051 -0.052372064\n\t\t -0.084739782 -0.045399051 -0.027533622 -0.089100674 -0.045399051 0 -0.084739782 -0.045399051 0.027533622\n\t\t -0.072083957 -0.045399051 0.052372057 -0.052372057 -0.045399051 0.07208395 -0.027533622 -0.045399051 0.084739767\n\t\t -2.6554063e-09 -0.045399051 0.089100659 0.027533613 -0.045399051 0.08473976 0.05237205 -0.045399051 0.07208395\n\t\t 0.072083943 -0.045399051 0.052372053 0.08473976 -0.045399051 0.027533617 0.089100651 -0.045399051 0\n\t\t 0.090450913 -0.030901698 -0.029389281 0.076942146 -0.030901698 -0.055901736 0.055901736 -0.030901698 -0.076942138\n\t\t 0.029389279 -0.030901698 -0.090450898 0 -0.030901698 -0.0951057 -0.029389279 -0.030901698 -0.090450898\n\t\t -0.055901725 -0.030901698 -0.076942123 -0.076942116 -0.030901698 -0.055901717 -0.090450875 -0.030901698 -0.02938927\n\t\t -0.095105678 -0.030901698 0 -0.090450875 -0.030901698 0.02938927 -0.076942109 -0.030901698 0.055901714\n\t\t -0.055901714 -0.030901698 0.076942101 -0.02938927 -0.030901698 0.090450868 -2.8343694e-09 -0.030901698 0.09510567\n\t\t 0.029389262 -0.030901698 0.090450861 0.055901702 -0.030901698 0.076942101 0.076942094 -0.030901698 0.055901706\n\t\t 0.090450853 -0.030901698 0.029389264 0.095105655 -0.030901698 0 0.093934812 -0.015643438 -0.030521268\n\t\t 0.079905719 -0.015643438 -0.058054902 0.058054902 -0.015643438 -0.079905719 0.030521264 -0.015643438 -0.093934797\n\t\t 0 -0.015643438 -0.098768882 -0.030521264 -0.015643438 -0.093934789;\n\tsetAttr \".vt[166:331]\" -0.05805489 -0.015643438 -0.079905696 -0.079905696 -0.015643438 -0.058054883\n\t\t -0.093934774 -0.015643438 -0.030521257 -0.09876886 -0.015643438 0 -0.093934774 -0.015643438 0.030521257\n\t\t -0.079905689 -0.015643438 0.058054876 -0.058054876 -0.015643438 0.079905681 -0.030521257 -0.015643438 0.093934759\n\t\t -2.9435407e-09 -0.015643438 0.098768853 0.030521248 -0.015643438 0.093934752 0.058054864 -0.015643438 0.079905674\n\t\t 0.079905666 -0.015643438 0.058054872 0.093934752 -0.015643438 0.030521249 0.098768838 -0.015643438 0\n\t\t 0.095105715 0 -0.030901719 0.080901757 0 -0.058778562 0.058778562 0 -0.080901749\n\t\t 0.030901715 0 -0.0951057 0 0 -0.10000005 -0.030901715 0 -0.0951057 -0.05877855 0 -0.080901735\n\t\t -0.080901727 0 -0.058778543 -0.095105678 0 -0.030901706 -0.10000002 0 0 -0.095105678 0 0.030901706\n\t\t -0.08090172 0 0.058778536 -0.058778536 0 0.080901712 -0.030901706 0 0.09510567 -2.9802323e-09 0 0.10000002\n\t\t 0.030901698 0 0.095105663 0.058778524 0 0.080901705 0.080901705 0 0.058778532 0.095105655 0 0.0309017\n\t\t 0.1 0 0 0.093934812 0.015643438 -0.030521268 0.079905719 0.015643438 -0.058054902\n\t\t 0.058054902 0.015643438 -0.079905719 0.030521264 0.015643438 -0.093934797 0 0.015643438 -0.098768882\n\t\t -0.030521264 0.015643438 -0.093934789 -0.05805489 0.015643438 -0.079905696 -0.079905696 0.015643438 -0.058054883\n\t\t -0.093934774 0.015643438 -0.030521257 -0.09876886 0.015643438 0 -0.093934774 0.015643438 0.030521257\n\t\t -0.079905689 0.015643438 0.058054876 -0.058054876 0.015643438 0.079905681 -0.030521257 0.015643438 0.093934759\n\t\t -2.9435407e-09 0.015643438 0.098768853 0.030521248 0.015643438 0.093934752 0.058054864 0.015643438 0.079905674\n\t\t 0.079905666 0.015643438 0.058054872 0.093934752 0.015643438 0.030521249 0.098768838 0.015643438 0\n\t\t 0.090450913 0.030901698 -0.029389281 0.076942146 0.030901698 -0.055901736 0.055901736 0.030901698 -0.076942138\n\t\t 0.029389279 0.030901698 -0.090450898 0 0.030901698 -0.0951057 -0.029389279 0.030901698 -0.090450898\n\t\t -0.055901725 0.030901698 -0.076942123 -0.076942116 0.030901698 -0.055901717 -0.090450875 0.030901698 -0.02938927\n\t\t -0.095105678 0.030901698 0 -0.090450875 0.030901698 0.02938927 -0.076942109 0.030901698 0.055901714\n\t\t -0.055901714 0.030901698 0.076942101 -0.02938927 0.030901698 0.090450868 -2.8343694e-09 0.030901698 0.09510567\n\t\t 0.029389262 0.030901698 0.090450861 0.055901702 0.030901698 0.076942101 0.076942094 0.030901698 0.055901706\n\t\t 0.090450853 0.030901698 0.029389264 0.095105655 0.030901698 0 0.084739812 0.045399051 -0.027533632\n\t\t 0.072083987 0.045399051 -0.052372079 0.052372079 0.045399051 -0.072083987 0.02753363 0.045399051 -0.084739797\n\t\t 0 0.045399051 -0.089100696 -0.02753363 0.045399051 -0.084739797 -0.052372068 0.045399051 -0.072083965\n\t\t -0.072083965 0.045399051 -0.052372064 -0.084739782 0.045399051 -0.027533622 -0.089100674 0.045399051 0\n\t\t -0.084739782 0.045399051 0.027533622 -0.072083957 0.045399051 0.052372057 -0.052372057 0.045399051 0.07208395\n\t\t -0.027533622 0.045399051 0.084739767 -2.6554063e-09 0.045399051 0.089100659 0.027533613 0.045399051 0.08473976\n\t\t 0.05237205 0.045399051 0.07208395 0.072083943 0.045399051 0.052372053 0.08473976 0.045399051 0.027533617\n\t\t 0.089100651 0.045399051 0 0.076942146 0.058778524 -0.025000017 0.065450899 0.058778524 -0.047552858\n\t\t 0.047552858 0.058778524 -0.065450892 0.025000015 0.058778524 -0.076942131 0 0.058778524 -0.080901742\n\t\t -0.025000015 0.058778524 -0.076942131 -0.047552846 0.058778524 -0.065450877 -0.065450877 0.058778524 -0.047552843\n\t\t -0.076942116 0.058778524 -0.025000008 -0.080901727 0.058778524 0 -0.076942116 0.058778524 0.025000008\n\t\t -0.06545087 0.058778524 0.047552839 -0.047552839 0.058778524 0.065450862 -0.025000008 0.058778524 0.076942109\n\t\t -2.4110587e-09 0.058778524 0.080901712 0.025 0.058778524 0.076942101 0.047552828 0.058778524 0.065450862\n\t\t 0.065450855 0.058778524 0.047552831 0.076942094 0.058778524 0.025000002 0.080901705 0.058778524 0\n\t\t 0.067249902 0.070710681 -0.021850815 0.05720618 0.070710681 -0.041562721 0.041562721 0.070710681 -0.057206176\n\t\t 0.021850813 0.070710681 -0.067249887 0 0.070710681 -0.070710719 -0.021850813 0.070710681 -0.067249887\n\t\t -0.041562714 0.070710681 -0.057206165 -0.057206161 0.070710681 -0.041562706 -0.067249872 0.070710681 -0.021850808\n\t\t -0.070710696 0.070710681 0 -0.067249872 0.070710681 0.021850808 -0.057206158 0.070710681 0.041562703\n\t\t -0.041562703 0.070710681 0.05720615 -0.021850808 0.070710681 0.067249864 -2.1073425e-09 0.070710681 0.070710689\n\t\t 0.0218508 0.070710681 0.067249857 0.041562695 0.070710681 0.057206146 0.057206143 0.070710681 0.041562699\n\t\t 0.067249857 0.070710681 0.021850802 0.070710681 0.070710681 0 0.055901736 0.080901705 -0.018163575\n\t\t 0.047552858 0.080901705 -0.034549169 0.034549169 0.080901705 -0.047552854 0.018163573 0.080901705 -0.055901729\n\t\t 0 0.080901705 -0.058778554 -0.018163573 0.080901705 -0.055901725 -0.034549162 0.080901705 -0.047552843\n\t\t -0.047552839 0.080901705 -0.034549158 -0.055901714 0.080901705 -0.018163567 -0.058778539 0.080901705 0\n\t\t -0.055901714 0.080901705 0.018163567 -0.047552835 0.080901705 0.034549158 -0.034549158 0.080901705 0.047552831\n\t\t -0.018163567 0.080901705 0.055901706 -1.7517365e-09 0.080901705 0.058778532 0.018163562 0.080901705 0.055901702\n\t\t 0.034549151 0.080901705 0.047552828 0.047552824 0.080901705 0.034549154 0.055901699 0.080901705 0.018163564\n\t\t 0.058778524 0.080901705 0 0.043177091 0.089100651 -0.014029087 0.036728628 0.089100651 -0.026684908\n\t\t 0.026684908 0.089100651 -0.036728624 0.014029086 0.089100651 -0.043177087 0 0.089100651 -0.045399074\n\t\t -0.014029086 0.089100651 -0.043177083 -0.026684903 0.089100651 -0.036728617 -0.036728617 0.089100651 -0.026684901\n\t\t -0.043177076 0.089100651 -0.014029081 -0.045399062 0.089100651 0 -0.043177076 0.089100651 0.014029081\n\t\t -0.036728613 0.089100651 0.026684897;\n\tsetAttr \".vt[332:381]\" -0.026684897 0.089100651 0.036728609 -0.014029081 0.089100651 0.043177068\n\t\t -1.3529972e-09 0.089100651 0.045399055 0.014029077 0.089100651 0.043177068 0.026684891 0.089100651 0.036728606\n\t\t 0.036728606 0.089100651 0.026684895 0.043177065 0.089100651 0.014029079 0.045399051 0.089100651 0\n\t\t 0.029389283 0.095105655 -0.0095491568 0.025000017 0.095105655 -0.018163575 0.018163575 0.095105655 -0.025000015\n\t\t 0.0095491558 0.095105655 -0.029389279 0 0.095105655 -0.030901715 -0.0095491558 0.095105655 -0.029389277\n\t\t -0.018163571 0.095105655 -0.02500001 -0.025000008 0.095105655 -0.018163569 -0.029389272 0.095105655 -0.009549153\n\t\t -0.030901708 0.095105655 0 -0.029389272 0.095105655 0.009549153 -0.025000006 0.095105655 0.018163567\n\t\t -0.018163567 0.095105655 0.025000004 -0.009549153 0.095105655 0.029389268 -9.2094243e-10 0.095105655 0.030901704\n\t\t 0.0095491502 0.095105655 0.029389266 0.018163564 0.095105655 0.025000002 0.025 0.095105655 0.018163566\n\t\t 0.029389264 0.095105655 0.0095491512 0.0309017 0.095105655 0 0.014877813 0.098768838 -0.0048340941\n\t\t 0.012655823 0.098768838 -0.0091949934 0.0091949934 0.098768838 -0.012655823 0.0048340936 0.098768838 -0.014877811\n\t\t 0 0.098768838 -0.015643455 -0.0048340936 0.098768838 -0.01487781 -0.0091949916 0.098768838 -0.01265582\n\t\t -0.012655819 0.098768838 -0.0091949906 -0.014877807 0.098768838 -0.0048340922 -0.015643451 0.098768838 0\n\t\t -0.014877807 0.098768838 0.0048340922 -0.012655818 0.098768838 0.0091949897 -0.0091949897 0.098768838 0.012655817\n\t\t -0.0048340922 0.098768838 0.014877805 -4.6621107e-10 0.098768838 0.01564345 0.0048340908 0.098768838 0.014877805\n\t\t 0.0091949878 0.098768838 0.012655816 0.012655815 0.098768838 0.0091949888 0.014877804 0.098768838 0.0048340913\n\t\t 0.015643448 0.098768838 0 0 -0.1 0 0 0.1 0;\n\tsetAttr -s 780 \".ed\";\n\tsetAttr \".ed[0:165]\"  0 1 1 1 2 1 2 3 1 3 4 1 4 5 1 5 6 1 6 7 1 7 8 1 8 9 1\n\t\t 9 10 1 10 11 1 11 12 1 12 13 1 13 14 1 14 15 1 15 16 1 16 17 1 17 18 1 18 19 1 19 0 1\n\t\t 20 21 1 21 22 1 22 23 1 23 24 1 24 25 1 25 26 1 26 27 1 27 28 1 28 29 1 29 30 1 30 31 1\n\t\t 31 32 1 32 33 1 33 34 1 34 35 1 35 36 1 36 37 1 37 38 1 38 39 1 39 20 1 40 41 1 41 42 1\n\t\t 42 43 1 43 44 1 44 45 1 45 46 1 46 47 1 47 48 1 48 49 1 49 50 1 50 51 1 51 52 1 52 53 1\n\t\t 53 54 1 54 55 1 55 56 1 56 57 1 57 58 1 58 59 1 59 40 1 60 61 1 61 62 1 62 63 1 63 64 1\n\t\t 64 65 1 65 66 1 66 67 1 67 68 1 68 69 1 69 70 1 70 71 1 71 72 1 72 73 1 73 74 1 74 75 1\n\t\t 75 76 1 76 77 1 77 78 1 78 79 1 79 60 1 80 81 1 81 82 1 82 83 1 83 84 1 84 85 1 85 86 1\n\t\t 86 87 1 87 88 1 88 89 1 89 90 1 90 91 1 91 92 1 92 93 1 93 94 1 94 95 1 95 96 1 96 97 1\n\t\t 97 98 1 98 99 1 99 80 1 100 101 1 101 102 1 102 103 1 103 104 1 104 105 1 105 106 1\n\t\t 106 107 1 107 108 1 108 109 1 109 110 1 110 111 1 111 112 1 112 113 1 113 114 1 114 115 1\n\t\t 115 116 1 116 117 1 117 118 1 118 119 1 119 100 1 120 121 1 121 122 1 122 123 1 123 124 1\n\t\t 124 125 1 125 126 1 126 127 1 127 128 1 128 129 1 129 130 1 130 131 1 131 132 1 132 133 1\n\t\t 133 134 1 134 135 1 135 136 1 136 137 1 137 138 1 138 139 1 139 120 1 140 141 1 141 142 1\n\t\t 142 143 1 143 144 1 144 145 1 145 146 1 146 147 1 147 148 1 148 149 1 149 150 1 150 151 1\n\t\t 151 152 1 152 153 1 153 154 1 154 155 1 155 156 1 156 157 1 157 158 1 158 159 1 159 140 1\n\t\t 160 161 1 161 162 1 162 163 1 163 164 1 164 165 1 165 166 1;\n\tsetAttr \".ed[166:331]\" 166 167 1 167 168 1 168 169 1 169 170 1 170 171 1 171 172 1\n\t\t 172 173 1 173 174 1 174 175 1 175 176 1 176 177 1 177 178 1 178 179 1 179 160 1 180 181 1\n\t\t 181 182 1 182 183 1 183 184 1 184 185 1 185 186 1 186 187 1 187 188 1 188 189 1 189 190 1\n\t\t 190 191 1 191 192 1 192 193 1 193 194 1 194 195 1 195 196 1 196 197 1 197 198 1 198 199 1\n\t\t 199 180 1 200 201 1 201 202 1 202 203 1 203 204 1 204 205 1 205 206 1 206 207 1 207 208 1\n\t\t 208 209 1 209 210 1 210 211 1 211 212 1 212 213 1 213 214 1 214 215 1 215 216 1 216 217 1\n\t\t 217 218 1 218 219 1 219 200 1 220 221 1 221 222 1 222 223 1 223 224 1 224 225 1 225 226 1\n\t\t 226 227 1 227 228 1 228 229 1 229 230 1 230 231 1 231 232 1 232 233 1 233 234 1 234 235 1\n\t\t 235 236 1 236 237 1 237 238 1 238 239 1 239 220 1 240 241 1 241 242 1 242 243 1 243 244 1\n\t\t 244 245 1 245 246 1 246 247 1 247 248 1 248 249 1 249 250 1 250 251 1 251 252 1 252 253 1\n\t\t 253 254 1 254 255 1 255 256 1 256 257 1 257 258 1 258 259 1 259 240 1 260 261 1 261 262 1\n\t\t 262 263 1 263 264 1 264 265 1 265 266 1 266 267 1 267 268 1 268 269 1 269 270 1 270 271 1\n\t\t 271 272 1 272 273 1 273 274 1 274 275 1 275 276 1 276 277 1 277 278 1 278 279 1 279 260 1\n\t\t 280 281 1 281 282 1 282 283 1 283 284 1 284 285 1 285 286 1 286 287 1 287 288 1 288 289 1\n\t\t 289 290 1 290 291 1 291 292 1 292 293 1 293 294 1 294 295 1 295 296 1 296 297 1 297 298 1\n\t\t 298 299 1 299 280 1 300 301 1 301 302 1 302 303 1 303 304 1 304 305 1 305 306 1 306 307 1\n\t\t 307 308 1 308 309 1 309 310 1 310 311 1 311 312 1 312 313 1 313 314 1 314 315 1 315 316 1\n\t\t 316 317 1 317 318 1 318 319 1 319 300 1 320 321 1 321 322 1 322 323 1 323 324 1 324 325 1\n\t\t 325 326 1 326 327 1 327 328 1 328 329 1 329 330 1 330 331 1 331 332 1;\n\tsetAttr \".ed[332:497]\" 332 333 1 333 334 1 334 335 1 335 336 1 336 337 1 337 338 1\n\t\t 338 339 1 339 320 1 340 341 1 341 342 1 342 343 1 343 344 1 344 345 1 345 346 1 346 347 1\n\t\t 347 348 1 348 349 1 349 350 1 350 351 1 351 352 1 352 353 1 353 354 1 354 355 1 355 356 1\n\t\t 356 357 1 357 358 1 358 359 1 359 340 1 360 361 1 361 362 1 362 363 1 363 364 1 364 365 1\n\t\t 365 366 1 366 367 1 367 368 1 368 369 1 369 370 1 370 371 1 371 372 1 372 373 1 373 374 1\n\t\t 374 375 1 375 376 1 376 377 1 377 378 1 378 379 1 379 360 1 0 20 1 1 21 1 2 22 1\n\t\t 3 23 1 4 24 1 5 25 1 6 26 1 7 27 1 8 28 1 9 29 1 10 30 1 11 31 1 12 32 1 13 33 1\n\t\t 14 34 1 15 35 1 16 36 1 17 37 1 18 38 1 19 39 1 20 40 1 21 41 1 22 42 1 23 43 1 24 44 1\n\t\t 25 45 1 26 46 1 27 47 1 28 48 1 29 49 1 30 50 1 31 51 1 32 52 1 33 53 1 34 54 1 35 55 1\n\t\t 36 56 1 37 57 1 38 58 1 39 59 1 40 60 1 41 61 1 42 62 1 43 63 1 44 64 1 45 65 1 46 66 1\n\t\t 47 67 1 48 68 1 49 69 1 50 70 1 51 71 1 52 72 1 53 73 1 54 74 1 55 75 1 56 76 1 57 77 1\n\t\t 58 78 1 59 79 1 60 80 1 61 81 1 62 82 1 63 83 1 64 84 1 65 85 1 66 86 1 67 87 1 68 88 1\n\t\t 69 89 1 70 90 1 71 91 1 72 92 1 73 93 1 74 94 1 75 95 1 76 96 1 77 97 1 78 98 1 79 99 1\n\t\t 80 100 1 81 101 1 82 102 1 83 103 1 84 104 1 85 105 1 86 106 1 87 107 1 88 108 1\n\t\t 89 109 1 90 110 1 91 111 1 92 112 1 93 113 1 94 114 1 95 115 1 96 116 1 97 117 1\n\t\t 98 118 1 99 119 1 100 120 1 101 121 1 102 122 1 103 123 1 104 124 1 105 125 1 106 126 1\n\t\t 107 127 1 108 128 1 109 129 1 110 130 1 111 131 1 112 132 1 113 133 1 114 134 1 115 135 1\n\t\t 116 136 1 117 137 1;\n\tsetAttr \".ed[498:663]\" 118 138 1 119 139 1 120 140 1 121 141 1 122 142 1 123 143 1\n\t\t 124 144 1 125 145 1 126 146 1 127 147 1 128 148 1 129 149 1 130 150 1 131 151 1 132 152 1\n\t\t 133 153 1 134 154 1 135 155 1 136 156 1 137 157 1 138 158 1 139 159 1 140 160 1 141 161 1\n\t\t 142 162 1 143 163 1 144 164 1 145 165 1 146 166 1 147 167 1 148 168 1 149 169 1 150 170 1\n\t\t 151 171 1 152 172 1 153 173 1 154 174 1 155 175 1 156 176 1 157 177 1 158 178 1 159 179 1\n\t\t 160 180 1 161 181 1 162 182 1 163 183 1 164 184 1 165 185 1 166 186 1 167 187 1 168 188 1\n\t\t 169 189 1 170 190 1 171 191 1 172 192 1 173 193 1 174 194 1 175 195 1 176 196 1 177 197 1\n\t\t 178 198 1 179 199 1 180 200 1 181 201 1 182 202 1 183 203 1 184 204 1 185 205 1 186 206 1\n\t\t 187 207 1 188 208 1 189 209 1 190 210 1 191 211 1 192 212 1 193 213 1 194 214 1 195 215 1\n\t\t 196 216 1 197 217 1 198 218 1 199 219 1 200 220 1 201 221 1 202 222 1 203 223 1 204 224 1\n\t\t 205 225 1 206 226 1 207 227 1 208 228 1 209 229 1 210 230 1 211 231 1 212 232 1 213 233 1\n\t\t 214 234 1 215 235 1 216 236 1 217 237 1 218 238 1 219 239 1 220 240 1 221 241 1 222 242 1\n\t\t 223 243 1 224 244 1 225 245 1 226 246 1 227 247 1 228 248 1 229 249 1 230 250 1 231 251 1\n\t\t 232 252 1 233 253 1 234 254 1 235 255 1 236 256 1 237 257 1 238 258 1 239 259 1 240 260 1\n\t\t 241 261 1 242 262 1 243 263 1 244 264 1 245 265 1 246 266 1 247 267 1 248 268 1 249 269 1\n\t\t 250 270 1 251 271 1 252 272 1 253 273 1 254 274 1 255 275 1 256 276 1 257 277 1 258 278 1\n\t\t 259 279 1 260 280 1 261 281 1 262 282 1 263 283 1 264 284 1 265 285 1 266 286 1 267 287 1\n\t\t 268 288 1 269 289 1 270 290 1 271 291 1 272 292 1 273 293 1 274 294 1 275 295 1 276 296 1\n\t\t 277 297 1 278 298 1 279 299 1 280 300 1 281 301 1 282 302 1 283 303 1;\n\tsetAttr \".ed[664:779]\" 284 304 1 285 305 1 286 306 1 287 307 1 288 308 1 289 309 1\n\t\t 290 310 1 291 311 1 292 312 1 293 313 1 294 314 1 295 315 1 296 316 1 297 317 1 298 318 1\n\t\t 299 319 1 300 320 1 301 321 1 302 322 1 303 323 1 304 324 1 305 325 1 306 326 1 307 327 1\n\t\t 308 328 1 309 329 1 310 330 1 311 331 1 312 332 1 313 333 1 314 334 1 315 335 1 316 336 1\n\t\t 317 337 1 318 338 1 319 339 1 320 340 1 321 341 1 322 342 1 323 343 1 324 344 1 325 345 1\n\t\t 326 346 1 327 347 1 328 348 1 329 349 1 330 350 1 331 351 1 332 352 1 333 353 1 334 354 1\n\t\t 335 355 1 336 356 1 337 357 1 338 358 1 339 359 1 340 360 1 341 361 1 342 362 1 343 363 1\n\t\t 344 364 1 345 365 1 346 366 1 347 367 1 348 368 1 349 369 1 350 370 1 351 371 1 352 372 1\n\t\t 353 373 1 354 374 1 355 375 1 356 376 1 357 377 1 358 378 1 359 379 1 380 0 1 380 1 1\n\t\t 380 2 1 380 3 1 380 4 1 380 5 1 380 6 1 380 7 1 380 8 1 380 9 1 380 10 1 380 11 1\n\t\t 380 12 1 380 13 1 380 14 1 380 15 1 380 16 1 380 17 1 380 18 1 380 19 1 360 381 1\n\t\t 361 381 1 362 381 1 363 381 1 364 381 1 365 381 1 366 381 1 367 381 1 368 381 1 369 381 1\n\t\t 370 381 1 371 381 1 372 381 1 373 381 1 374 381 1 375 381 1 376 381 1 377 381 1 378 381 1\n\t\t 379 381 1;\n\tsetAttr -s 400 -ch 1560 \".fc[0:399]\" -type \"polyFaces\" \n\t\tf 4 0 381 -21 -381\n\t\tmu 0 4 0 1 22 21\n\t\tf 4 1 382 -22 -382\n\t\tmu 0 4 1 2 23 22\n\t\tf 4 2 383 -23 -383\n\t\tmu 0 4 2 3 24 23\n\t\tf 4 3 384 -24 -384\n\t\tmu 0 4 3 4 25 24\n\t\tf 4 4 385 -25 -385\n\t\tmu 0 4 4 5 26 25\n\t\tf 4 5 386 -26 -386\n\t\tmu 0 4 5 6 27 26\n\t\tf 4 6 387 -27 -387\n\t\tmu 0 4 6 7 28 27\n\t\tf 4 7 388 -28 -388\n\t\tmu 0 4 7 8 29 28\n\t\tf 4 8 389 -29 -389\n\t\tmu 0 4 8 9 30 29\n\t\tf 4 9 390 -30 -390\n\t\tmu 0 4 9 10 31 30\n\t\tf 4 10 391 -31 -391\n\t\tmu 0 4 10 11 32 31\n\t\tf 4 11 392 -32 -392\n\t\tmu 0 4 11 12 33 32\n\t\tf 4 12 393 -33 -393\n\t\tmu 0 4 12 13 34 33\n\t\tf 4 13 394 -34 -394\n\t\tmu 0 4 13 14 35 34\n\t\tf 4 14 395 -35 -395\n\t\tmu 0 4 14 15 36 35\n\t\tf 4 15 396 -36 -396\n\t\tmu 0 4 15 16 37 36\n\t\tf 4 16 397 -37 -397\n\t\tmu 0 4 16 17 38 37\n\t\tf 4 17 398 -38 -398\n\t\tmu 0 4 17 18 39 38\n\t\tf 4 18 399 -39 -399\n\t\tmu 0 4 18 19 40 39\n\t\tf 4 19 380 -40 -400\n\t\tmu 0 4 19 20 41 40\n\t\tf 4 20 401 -41 -401\n\t\tmu 0 4 21 22 43 42\n\t\tf 4 21 402 -42 -402\n\t\tmu 0 4 22 23 44 43\n\t\tf 4 22 403 -43 -403\n\t\tmu 0 4 23 24 45 44\n\t\tf 4 23 404 -44 -404\n\t\tmu 0 4 24 25 46 45\n\t\tf 4 24 405 -45 -405\n\t\tmu 0 4 25 26 47 46\n\t\tf 4 25 406 -46 -406\n\t\tmu 0 4 26 27 48 47\n\t\tf 4 26 407 -47 -407\n\t\tmu 0 4 27 28 49 48\n\t\tf 4 27 408 -48 -408\n\t\tmu 0 4 28 29 50 49\n\t\tf 4 28 409 -49 -409\n\t\tmu 0 4 29 30 51 50\n\t\tf 4 29 410 -50 -410\n\t\tmu 0 4 30 31 52 51\n\t\tf 4 30 411 -51 -411\n\t\tmu 0 4 31 32 53 52\n\t\tf 4 31 412 -52 -412\n\t\tmu 0 4 32 33 54 53\n\t\tf 4 32 413 -53 -413\n\t\tmu 0 4 33 34 55 54\n\t\tf 4 33 414 -54 -414\n\t\tmu 0 4 34 35 56 55\n\t\tf 4 34 415 -55 -415\n\t\tmu 0 4 35 36 57 56\n\t\tf 4 35 416 -56 -416\n\t\tmu 0 4 36 37 58 57\n\t\tf 4 36 417 -57 -417\n\t\tmu 0 4 37 38 59 58\n\t\tf 4 37 418 -58 -418\n\t\tmu 0 4 38 39 60 59\n\t\tf 4 38 419 -59 -419\n\t\tmu 0 4 39 40 61 60\n\t\tf 4 39 400 -60 -420\n\t\tmu 0 4 40 41 62 61\n\t\tf 4 40 421 -61 -421\n\t\tmu 0 4 42 43 64 63\n\t\tf 4 41 422 -62 -422\n\t\tmu 0 4 43 44 65 64\n\t\tf 4 42 423 -63 -423\n\t\tmu 0 4 44 45 66 65\n\t\tf 4 43 424 -64 -424\n\t\tmu 0 4 45 46 67 66\n\t\tf 4 44 425 -65 -425\n\t\tmu 0 4 46 47 68 67\n\t\tf 4 45 426 -66 -426\n\t\tmu 0 4 47 48 69 68\n\t\tf 4 46 427 -67 -427\n\t\tmu 0 4 48 49 70 69\n\t\tf 4 47 428 -68 -428\n\t\tmu 0 4 49 50 71 70\n\t\tf 4 48 429 -69 -429\n\t\tmu 0 4 50 51 72 71\n\t\tf 4 49 430 -70 -430\n\t\tmu 0 4 51 52 73 72\n\t\tf 4 50 431 -71 -431\n\t\tmu 0 4 52 53 74 73\n\t\tf 4 51 432 -72 -432\n\t\tmu 0 4 53 54 75 74\n\t\tf 4 52 433 -73 -433\n\t\tmu 0 4 54 55 76 75\n\t\tf 4 53 434 -74 -434\n\t\tmu 0 4 55 56 77 76\n\t\tf 4 54 435 -75 -435\n\t\tmu 0 4 56 57 78 77\n\t\tf 4 55 436 -76 -436\n\t\tmu 0 4 57 58 79 78\n\t\tf 4 56 437 -77 -437\n\t\tmu 0 4 58 59 80 79\n\t\tf 4 57 438 -78 -438\n\t\tmu 0 4 59 60 81 80\n\t\tf 4 58 439 -79 -439\n\t\tmu 0 4 60 61 82 81\n\t\tf 4 59 420 -80 -440\n\t\tmu 0 4 61 62 83 82\n\t\tf 4 60 441 -81 -441\n\t\tmu 0 4 63 64 85 84\n\t\tf 4 61 442 -82 -442\n\t\tmu 0 4 64 65 86 85\n\t\tf 4 62 443 -83 -443\n\t\tmu 0 4 65 66 87 86\n\t\tf 4 63 444 -84 -444\n\t\tmu 0 4 66 67 88 87\n\t\tf 4 64 445 -85 -445\n\t\tmu 0 4 67 68 89 88\n\t\tf 4 65 446 -86 -446\n\t\tmu 0 4 68 69 90 89\n\t\tf 4 66 447 -87 -447\n\t\tmu 0 4 69 70 91 90\n\t\tf 4 67 448 -88 -448\n\t\tmu 0 4 70 71 92 91\n\t\tf 4 68 449 -89 -449\n\t\tmu 0 4 71 72 93 92\n\t\tf 4 69 450 -90 -450\n\t\tmu 0 4 72 73 94 93\n\t\tf 4 70 451 -91 -451\n\t\tmu 0 4 73 74 95 94\n\t\tf 4 71 452 -92 -452\n\t\tmu 0 4 74 75 96 95\n\t\tf 4 72 453 -93 -453\n\t\tmu 0 4 75 76 97 96\n\t\tf 4 73 454 -94 -454\n\t\tmu 0 4 76 77 98 97\n\t\tf 4 74 455 -95 -455\n\t\tmu 0 4 77 78 99 98\n\t\tf 4 75 456 -96 -456\n\t\tmu 0 4 78 79 100 99\n\t\tf 4 76 457 -97 -457\n\t\tmu 0 4 79 80 101 100\n\t\tf 4 77 458 -98 -458\n\t\tmu 0 4 80 81 102 101\n\t\tf 4 78 459 -99 -459\n\t\tmu 0 4 81 82 103 102\n\t\tf 4 79 440 -100 -460\n\t\tmu 0 4 82 83 104 103\n\t\tf 4 80 461 -101 -461\n\t\tmu 0 4 84 85 106 105\n\t\tf 4 81 462 -102 -462\n\t\tmu 0 4 85 86 107 106\n\t\tf 4 82 463 -103 -463\n\t\tmu 0 4 86 87 108 107\n\t\tf 4 83 464 -104 -464\n\t\tmu 0 4 87 88 109 108\n\t\tf 4 84 465 -105 -465\n\t\tmu 0 4 88 89 110 109\n\t\tf 4 85 466 -106 -466\n\t\tmu 0 4 89 90 111 110\n\t\tf 4 86 467 -107 -467\n\t\tmu 0 4 90 91 112 111\n\t\tf 4 87 468 -108 -468\n\t\tmu 0 4 91 92 113 112\n\t\tf 4 88 469 -109 -469\n\t\tmu 0 4 92 93 114 113\n\t\tf 4 89 470 -110 -470\n\t\tmu 0 4 93 94 115 114\n\t\tf 4 90 471 -111 -471\n\t\tmu 0 4 94 95 116 115\n\t\tf 4 91 472 -112 -472\n\t\tmu 0 4 95 96 117 116\n\t\tf 4 92 473 -113 -473\n\t\tmu 0 4 96 97 118 117\n\t\tf 4 93 474 -114 -474\n\t\tmu 0 4 97 98 119 118\n\t\tf 4 94 475 -115 -475\n\t\tmu 0 4 98 99 120 119\n\t\tf 4 95 476 -116 -476\n\t\tmu 0 4 99 100 121 120\n\t\tf 4 96 477 -117 -477\n\t\tmu 0 4 100 101 122 121\n\t\tf 4 97 478 -118 -478\n\t\tmu 0 4 101 102 123 122\n\t\tf 4 98 479 -119 -479\n\t\tmu 0 4 102 103 124 123\n\t\tf 4 99 460 -120 -480\n\t\tmu 0 4 103 104 125 124\n\t\tf 4 100 481 -121 -481\n\t\tmu 0 4 105 106 127 126\n\t\tf 4 101 482 -122 -482\n\t\tmu 0 4 106 107 128 127\n\t\tf 4 102 483 -123 -483\n\t\tmu 0 4 107 108 129 128\n\t\tf 4 103 484 -124 -484\n\t\tmu 0 4 108 109 130 129\n\t\tf 4 104 485 -125 -485\n\t\tmu 0 4 109 110 131 130\n\t\tf 4 105 486 -126 -486\n\t\tmu 0 4 110 111 132 131\n\t\tf 4 106 487 -127 -487\n\t\tmu 0 4 111 112 133 132\n\t\tf 4 107 488 -128 -488\n\t\tmu 0 4 112 113 134 133\n\t\tf 4 108 489 -129 -489\n\t\tmu 0 4 113 114 135 134\n\t\tf 4 109 490 -130 -490\n\t\tmu 0 4 114 115 136 135\n\t\tf 4 110 491 -131 -491\n\t\tmu 0 4 115 116 137 136\n\t\tf 4 111 492 -132 -492\n\t\tmu 0 4 116 117 138 137\n\t\tf 4 112 493 -133 -493\n\t\tmu 0 4 117 118 139 138\n\t\tf 4 113 494 -134 -494\n\t\tmu 0 4 118 119 140 139\n\t\tf 4 114 495 -135 -495\n\t\tmu 0 4 119 120 141 140\n\t\tf 4 115 496 -136 -496\n\t\tmu 0 4 120 121 142 141\n\t\tf 4 116 497 -137 -497\n\t\tmu 0 4 121 122 143 142\n\t\tf 4 117 498 -138 -498\n\t\tmu 0 4 122 123 144 143\n\t\tf 4 118 499 -139 -499\n\t\tmu 0 4 123 124 145 144\n\t\tf 4 119 480 -140 -500\n\t\tmu 0 4 124 125 146 145\n\t\tf 4 120 501 -141 -501\n\t\tmu 0 4 126 127 148 147\n\t\tf 4 121 502 -142 -502\n\t\tmu 0 4 127 128 149 148\n\t\tf 4 122 503 -143 -503\n\t\tmu 0 4 128 129 150 149\n\t\tf 4 123 504 -144 -504\n\t\tmu 0 4 129 130 151 150\n\t\tf 4 124 505 -145 -505\n\t\tmu 0 4 130 131 152 151\n\t\tf 4 125 506 -146 -506\n\t\tmu 0 4 131 132 153 152\n\t\tf 4 126 507 -147 -507\n\t\tmu 0 4 132 133 154 153\n\t\tf 4 127 508 -148 -508\n\t\tmu 0 4 133 134 155 154\n\t\tf 4 128 509 -149 -509\n\t\tmu 0 4 134 135 156 155\n\t\tf 4 129 510 -150 -510\n\t\tmu 0 4 135 136 157 156\n\t\tf 4 130 511 -151 -511\n\t\tmu 0 4 136 137 158 157\n\t\tf 4 131 512 -152 -512\n\t\tmu 0 4 137 138 159 158\n\t\tf 4 132 513 -153 -513\n\t\tmu 0 4 138 139 160 159\n\t\tf 4 133 514 -154 -514\n\t\tmu 0 4 139 140 161 160\n\t\tf 4 134 515 -155 -515\n\t\tmu 0 4 140 141 162 161\n\t\tf 4 135 516 -156 -516\n\t\tmu 0 4 141 142 163 162\n\t\tf 4 136 517 -157 -517\n\t\tmu 0 4 142 143 164 163\n\t\tf 4 137 518 -158 -518\n\t\tmu 0 4 143 144 165 164\n\t\tf 4 138 519 -159 -519\n\t\tmu 0 4 144 145 166 165\n\t\tf 4 139 500 -160 -520\n\t\tmu 0 4 145 146 167 166\n\t\tf 4 140 521 -161 -521\n\t\tmu 0 4 147 148 169 168\n\t\tf 4 141 522 -162 -522\n\t\tmu 0 4 148 149 170 169\n\t\tf 4 142 523 -163 -523\n\t\tmu 0 4 149 150 171 170\n\t\tf 4 143 524 -164 -524\n\t\tmu 0 4 150 151 172 171\n\t\tf 4 144 525 -165 -525\n\t\tmu 0 4 151 152 173 172\n\t\tf 4 145 526 -166 -526\n\t\tmu 0 4 152 153 174 173\n\t\tf 4 146 527 -167 -527\n\t\tmu 0 4 153 154 175 174\n\t\tf 4 147 528 -168 -528\n\t\tmu 0 4 154 155 176 175\n\t\tf 4 148 529 -169 -529\n\t\tmu 0 4 155 156 177 176\n\t\tf 4 149 530 -170 -530\n\t\tmu 0 4 156 157 178 177\n\t\tf 4 150 531 -171 -531\n\t\tmu 0 4 157 158 179 178\n\t\tf 4 151 532 -172 -532\n\t\tmu 0 4 158 159 180 179\n\t\tf 4 152 533 -173 -533\n\t\tmu 0 4 159 160 181 180\n\t\tf 4 153 534 -174 -534\n\t\tmu 0 4 160 161 182 181\n\t\tf 4 154 535 -175 -535\n\t\tmu 0 4 161 162 183 182\n\t\tf 4 155 536 -176 -536\n\t\tmu 0 4 162 163 184 183\n\t\tf 4 156 537 -177 -537\n\t\tmu 0 4 163 164 185 184\n\t\tf 4 157 538 -178 -538\n\t\tmu 0 4 164 165 186 185\n\t\tf 4 158 539 -179 -539\n\t\tmu 0 4 165 166 187 186\n\t\tf 4 159 520 -180 -540\n\t\tmu 0 4 166 167 188 187\n\t\tf 4 160 541 -181 -541\n\t\tmu 0 4 168 169 190 189\n\t\tf 4 161 542 -182 -542\n\t\tmu 0 4 169 170 191 190\n\t\tf 4 162 543 -183 -543\n\t\tmu 0 4 170 171 192 191\n\t\tf 4 163 544 -184 -544\n\t\tmu 0 4 171 172 193 192\n\t\tf 4 164 545 -185 -545\n\t\tmu 0 4 172 173 194 193\n\t\tf 4 165 546 -186 -546\n\t\tmu 0 4 173 174 195 194\n\t\tf 4 166 547 -187 -547\n\t\tmu 0 4 174 175 196 195\n\t\tf 4 167 548 -188 -548\n\t\tmu 0 4 175 176 197 196\n\t\tf 4 168 549 -189 -549\n\t\tmu 0 4 176 177 198 197\n\t\tf 4 169 550 -190 -550\n\t\tmu 0 4 177 178 199 198\n\t\tf 4 170 551 -191 -551\n\t\tmu 0 4 178 179 200 199\n\t\tf 4 171 552 -192 -552\n\t\tmu 0 4 179 180 201 200\n\t\tf 4 172 553 -193 -553\n\t\tmu 0 4 180 181 202 201\n\t\tf 4 173 554 -194 -554\n\t\tmu 0 4 181 182 203 202\n\t\tf 4 174 555 -195 -555\n\t\tmu 0 4 182 183 204 203\n\t\tf 4 175 556 -196 -556\n\t\tmu 0 4 183 184 205 204\n\t\tf 4 176 557 -197 -557\n\t\tmu 0 4 184 185 206 205\n\t\tf 4 177 558 -198 -558\n\t\tmu 0 4 185 186 207 206\n\t\tf 4 178 559 -199 -559\n\t\tmu 0 4 186 187 208 207\n\t\tf 4 179 540 -200 -560\n\t\tmu 0 4 187 188 209 208\n\t\tf 4 180 561 -201 -561\n\t\tmu 0 4 189 190 211 210\n\t\tf 4 181 562 -202 -562\n\t\tmu 0 4 190 191 212 211\n\t\tf 4 182 563 -203 -563\n\t\tmu 0 4 191 192 213 212\n\t\tf 4 183 564 -204 -564\n\t\tmu 0 4 192 193 214 213\n\t\tf 4 184 565 -205 -565\n\t\tmu 0 4 193 194 215 214\n\t\tf 4 185 566 -206 -566\n\t\tmu 0 4 194 195 216 215\n\t\tf 4 186 567 -207 -567\n\t\tmu 0 4 195 196 217 216\n\t\tf 4 187 568 -208 -568\n\t\tmu 0 4 196 197 218 217\n\t\tf 4 188 569 -209 -569\n\t\tmu 0 4 197 198 219 218\n\t\tf 4 189 570 -210 -570\n\t\tmu 0 4 198 199 220 219\n\t\tf 4 190 571 -211 -571\n\t\tmu 0 4 199 200 221 220\n\t\tf 4 191 572 -212 -572\n\t\tmu 0 4 200 201 222 221\n\t\tf 4 192 573 -213 -573\n\t\tmu 0 4 201 202 223 222\n\t\tf 4 193 574 -214 -574\n\t\tmu 0 4 202 203 224 223\n\t\tf 4 194 575 -215 -575\n\t\tmu 0 4 203 204 225 224\n\t\tf 4 195 576 -216 -576\n\t\tmu 0 4 204 205 226 225\n\t\tf 4 196 577 -217 -577\n\t\tmu 0 4 205 206 227 226\n\t\tf 4 197 578 -218 -578\n\t\tmu 0 4 206 207 228 227\n\t\tf 4 198 579 -219 -579\n\t\tmu 0 4 207 208 229 228\n\t\tf 4 199 560 -220 -580\n\t\tmu 0 4 208 209 230 229\n\t\tf 4 200 581 -221 -581\n\t\tmu 0 4 210 211 232 231\n\t\tf 4 201 582 -222 -582\n\t\tmu 0 4 211 212 233 232\n\t\tf 4 202 583 -223 -583\n\t\tmu 0 4 212 213 234 233\n\t\tf 4 203 584 -224 -584\n\t\tmu 0 4 213 214 235 234\n\t\tf 4 204 585 -225 -585\n\t\tmu 0 4 214 215 236 235\n\t\tf 4 205 586 -226 -586\n\t\tmu 0 4 215 216 237 236\n\t\tf 4 206 587 -227 -587\n\t\tmu 0 4 216 217 238 237\n\t\tf 4 207 588 -228 -588\n\t\tmu 0 4 217 218 239 238\n\t\tf 4 208 589 -229 -589\n\t\tmu 0 4 218 219 240 239\n\t\tf 4 209 590 -230 -590\n\t\tmu 0 4 219 220 241 240\n\t\tf 4 210 591 -231 -591\n\t\tmu 0 4 220 221 242 241\n\t\tf 4 211 592 -232 -592\n\t\tmu 0 4 221 222 243 242\n\t\tf 4 212 593 -233 -593\n\t\tmu 0 4 222 223 244 243\n\t\tf 4 213 594 -234 -594\n\t\tmu 0 4 223 224 245 244\n\t\tf 4 214 595 -235 -595\n\t\tmu 0 4 224 225 246 245\n\t\tf 4 215 596 -236 -596\n\t\tmu 0 4 225 226 247 246\n\t\tf 4 216 597 -237 -597\n\t\tmu 0 4 226 227 248 247\n\t\tf 4 217 598 -238 -598\n\t\tmu 0 4 227 228 249 248\n\t\tf 4 218 599 -239 -599\n\t\tmu 0 4 228 229 250 249\n\t\tf 4 219 580 -240 -600\n\t\tmu 0 4 229 230 251 250\n\t\tf 4 220 601 -241 -601\n\t\tmu 0 4 231 232 253 252\n\t\tf 4 221 602 -242 -602\n\t\tmu 0 4 232 233 254 253\n\t\tf 4 222 603 -243 -603\n\t\tmu 0 4 233 234 255 254\n\t\tf 4 223 604 -244 -604\n\t\tmu 0 4 234 235 256 255\n\t\tf 4 224 605 -245 -605\n\t\tmu 0 4 235 236 257 256\n\t\tf 4 225 606 -246 -606\n\t\tmu 0 4 236 237 258 257\n\t\tf 4 226 607 -247 -607\n\t\tmu 0 4 237 238 259 258\n\t\tf 4 227 608 -248 -608\n\t\tmu 0 4 238 239 260 259\n\t\tf 4 228 609 -249 -609\n\t\tmu 0 4 239 240 261 260\n\t\tf 4 229 610 -250 -610\n\t\tmu 0 4 240 241 262 261\n\t\tf 4 230 611 -251 -611\n\t\tmu 0 4 241 242 263 262\n\t\tf 4 231 612 -252 -612\n\t\tmu 0 4 242 243 264 263\n\t\tf 4 232 613 -253 -613\n\t\tmu 0 4 243 244 265 264\n\t\tf 4 233 614 -254 -614\n\t\tmu 0 4 244 245 266 265\n\t\tf 4 234 615 -255 -615\n\t\tmu 0 4 245 246 267 266\n\t\tf 4 235 616 -256 -616\n\t\tmu 0 4 246 247 268 267\n\t\tf 4 236 617 -257 -617\n\t\tmu 0 4 247 248 269 268\n\t\tf 4 237 618 -258 -618\n\t\tmu 0 4 248 249 270 269\n\t\tf 4 238 619 -259 -619\n\t\tmu 0 4 249 250 271 270\n\t\tf 4 239 600 -260 -620\n\t\tmu 0 4 250 251 272 271\n\t\tf 4 240 621 -261 -621\n\t\tmu 0 4 252 253 274 273\n\t\tf 4 241 622 -262 -622\n\t\tmu 0 4 253 254 275 274\n\t\tf 4 242 623 -263 -623\n\t\tmu 0 4 254 255 276 275\n\t\tf 4 243 624 -264 -624\n\t\tmu 0 4 255 256 277 276\n\t\tf 4 244 625 -265 -625\n\t\tmu 0 4 256 257 278 277\n\t\tf 4 245 626 -266 -626\n\t\tmu 0 4 257 258 279 278\n\t\tf 4 246 627 -267 -627\n\t\tmu 0 4 258 259 280 279\n\t\tf 4 247 628 -268 -628\n\t\tmu 0 4 259 260 281 280\n\t\tf 4 248 629 -269 -629\n\t\tmu 0 4 260 261 282 281\n\t\tf 4 249 630 -270 -630\n\t\tmu 0 4 261 262 283 282\n\t\tf 4 250 631 -271 -631\n\t\tmu 0 4 262 263 284 283\n\t\tf 4 251 632 -272 -632\n\t\tmu 0 4 263 264 285 284\n\t\tf 4 252 633 -273 -633\n\t\tmu 0 4 264 265 286 285\n\t\tf 4 253 634 -274 -634\n\t\tmu 0 4 265 266 287 286\n\t\tf 4 254 635 -275 -635\n\t\tmu 0 4 266 267 288 287\n\t\tf 4 255 636 -276 -636\n\t\tmu 0 4 267 268 289 288\n\t\tf 4 256 637 -277 -637\n\t\tmu 0 4 268 269 290 289\n\t\tf 4 257 638 -278 -638\n\t\tmu 0 4 269 270 291 290\n\t\tf 4 258 639 -279 -639\n\t\tmu 0 4 270 271 292 291\n\t\tf 4 259 620 -280 -640\n\t\tmu 0 4 271 272 293 292\n\t\tf 4 260 641 -281 -641\n\t\tmu 0 4 273 274 295 294\n\t\tf 4 261 642 -282 -642\n\t\tmu 0 4 274 275 296 295\n\t\tf 4 262 643 -283 -643\n\t\tmu 0 4 275 276 297 296\n\t\tf 4 263 644 -284 -644\n\t\tmu 0 4 276 277 298 297\n\t\tf 4 264 645 -285 -645\n\t\tmu 0 4 277 278 299 298\n\t\tf 4 265 646 -286 -646\n\t\tmu 0 4 278 279 300 299\n\t\tf 4 266 647 -287 -647\n\t\tmu 0 4 279 280 301 300\n\t\tf 4 267 648 -288 -648\n\t\tmu 0 4 280 281 302 301\n\t\tf 4 268 649 -289 -649\n\t\tmu 0 4 281 282 303 302\n\t\tf 4 269 650 -290 -650\n\t\tmu 0 4 282 283 304 303\n\t\tf 4 270 651 -291 -651\n\t\tmu 0 4 283 284 305 304\n\t\tf 4 271 652 -292 -652\n\t\tmu 0 4 284 285 306 305\n\t\tf 4 272 653 -293 -653\n\t\tmu 0 4 285 286 307 306\n\t\tf 4 273 654 -294 -654\n\t\tmu 0 4 286 287 308 307\n\t\tf 4 274 655 -295 -655\n\t\tmu 0 4 287 288 309 308\n\t\tf 4 275 656 -296 -656\n\t\tmu 0 4 288 289 310 309\n\t\tf 4 276 657 -297 -657\n\t\tmu 0 4 289 290 311 310\n\t\tf 4 277 658 -298 -658\n\t\tmu 0 4 290 291 312 311\n\t\tf 4 278 659 -299 -659\n\t\tmu 0 4 291 292 313 312\n\t\tf 4 279 640 -300 -660\n\t\tmu 0 4 292 293 314 313\n\t\tf 4 280 661 -301 -661\n\t\tmu 0 4 294 295 316 315\n\t\tf 4 281 662 -302 -662\n\t\tmu 0 4 295 296 317 316\n\t\tf 4 282 663 -303 -663\n\t\tmu 0 4 296 297 318 317\n\t\tf 4 283 664 -304 -664\n\t\tmu 0 4 297 298 319 318\n\t\tf 4 284 665 -305 -665\n\t\tmu 0 4 298 299 320 319\n\t\tf 4 285 666 -306 -666\n\t\tmu 0 4 299 300 321 320\n\t\tf 4 286 667 -307 -667\n\t\tmu 0 4 300 301 322 321\n\t\tf 4 287 668 -308 -668\n\t\tmu 0 4 301 302 323 322\n\t\tf 4 288 669 -309 -669\n\t\tmu 0 4 302 303 324 323\n\t\tf 4 289 670 -310 -670\n\t\tmu 0 4 303 304 325 324\n\t\tf 4 290 671 -311 -671\n\t\tmu 0 4 304 305 326 325\n\t\tf 4 291 672 -312 -672\n\t\tmu 0 4 305 306 327 326\n\t\tf 4 292 673 -313 -673\n\t\tmu 0 4 306 307 328 327\n\t\tf 4 293 674 -314 -674\n\t\tmu 0 4 307 308 329 328\n\t\tf 4 294 675 -315 -675\n\t\tmu 0 4 308 309 330 329\n\t\tf 4 295 676 -316 -676\n\t\tmu 0 4 309 310 331 330\n\t\tf 4 296 677 -317 -677\n\t\tmu 0 4 310 311 332 331\n\t\tf 4 297 678 -318 -678\n\t\tmu 0 4 311 312 333 332\n\t\tf 4 298 679 -319 -679\n\t\tmu 0 4 312 313 334 333\n\t\tf 4 299 660 -320 -680\n\t\tmu 0 4 313 314 335 334\n\t\tf 4 300 681 -321 -681\n\t\tmu 0 4 315 316 337 336\n\t\tf 4 301 682 -322 -682\n\t\tmu 0 4 316 317 338 337\n\t\tf 4 302 683 -323 -683\n\t\tmu 0 4 317 318 339 338\n\t\tf 4 303 684 -324 -684\n\t\tmu 0 4 318 319 340 339\n\t\tf 4 304 685 -325 -685\n\t\tmu 0 4 319 320 341 340\n\t\tf 4 305 686 -326 -686\n\t\tmu 0 4 320 321 342 341\n\t\tf 4 306 687 -327 -687\n\t\tmu 0 4 321 322 343 342\n\t\tf 4 307 688 -328 -688\n\t\tmu 0 4 322 323 344 343\n\t\tf 4 308 689 -329 -689\n\t\tmu 0 4 323 324 345 344\n\t\tf 4 309 690 -330 -690\n\t\tmu 0 4 324 325 346 345\n\t\tf 4 310 691 -331 -691\n\t\tmu 0 4 325 326 347 346\n\t\tf 4 311 692 -332 -692\n\t\tmu 0 4 326 327 348 347\n\t\tf 4 312 693 -333 -693\n\t\tmu 0 4 327 328 349 348\n\t\tf 4 313 694 -334 -694\n\t\tmu 0 4 328 329 350 349\n\t\tf 4 314 695 -335 -695\n\t\tmu 0 4 329 330 351 350\n\t\tf 4 315 696 -336 -696\n\t\tmu 0 4 330 331 352 351\n\t\tf 4 316 697 -337 -697\n\t\tmu 0 4 331 332 353 352\n\t\tf 4 317 698 -338 -698\n\t\tmu 0 4 332 333 354 353\n\t\tf 4 318 699 -339 -699\n\t\tmu 0 4 333 334 355 354\n\t\tf 4 319 680 -340 -700\n\t\tmu 0 4 334 335 356 355\n\t\tf 4 320 701 -341 -701\n\t\tmu 0 4 336 337 358 357\n\t\tf 4 321 702 -342 -702\n\t\tmu 0 4 337 338 359 358\n\t\tf 4 322 703 -343 -703\n\t\tmu 0 4 338 339 360 359\n\t\tf 4 323 704 -344 -704\n\t\tmu 0 4 339 340 361 360\n\t\tf 4 324 705 -345 -705\n\t\tmu 0 4 340 341 362 361\n\t\tf 4 325 706 -346 -706\n\t\tmu 0 4 341 342 363 362\n\t\tf 4 326 707 -347 -707\n\t\tmu 0 4 342 343 364 363\n\t\tf 4 327 708 -348 -708\n\t\tmu 0 4 343 344 365 364\n\t\tf 4 328 709 -349 -709\n\t\tmu 0 4 344 345 366 365\n\t\tf 4 329 710 -350 -710\n\t\tmu 0 4 345 346 367 366\n\t\tf 4 330 711 -351 -711\n\t\tmu 0 4 346 347 368 367\n\t\tf 4 331 712 -352 -712\n\t\tmu 0 4 347 348 369 368\n\t\tf 4 332 713 -353 -713\n\t\tmu 0 4 348 349 370 369\n\t\tf 4 333 714 -354 -714\n\t\tmu 0 4 349 350 371 370\n\t\tf 4 334 715 -355 -715\n\t\tmu 0 4 350 351 372 371\n\t\tf 4 335 716 -356 -716\n\t\tmu 0 4 351 352 373 372\n\t\tf 4 336 717 -357 -717\n\t\tmu 0 4 352 353 374 373\n\t\tf 4 337 718 -358 -718\n\t\tmu 0 4 353 354 375 374\n\t\tf 4 338 719 -359 -719\n\t\tmu 0 4 354 355 376 375\n\t\tf 4 339 700 -360 -720\n\t\tmu 0 4 355 356 377 376\n\t\tf 4 340 721 -361 -721\n\t\tmu 0 4 357 358 379 378\n\t\tf 4 341 722 -362 -722\n\t\tmu 0 4 358 359 380 379\n\t\tf 4 342 723 -363 -723\n\t\tmu 0 4 359 360 381 380\n\t\tf 4 343 724 -364 -724\n\t\tmu 0 4 360 361 382 381\n\t\tf 4 344 725 -365 -725\n\t\tmu 0 4 361 362 383 382\n\t\tf 4 345 726 -366 -726\n\t\tmu 0 4 362 363 384 383\n\t\tf 4 346 727 -367 -727\n\t\tmu 0 4 363 364 385 384\n\t\tf 4 347 728 -368 -728\n\t\tmu 0 4 364 365 386 385\n\t\tf 4 348 729 -369 -729\n\t\tmu 0 4 365 366 387 386\n\t\tf 4 349 730 -370 -730\n\t\tmu 0 4 366 367 388 387\n\t\tf 4 350 731 -371 -731\n\t\tmu 0 4 367 368 389 388\n\t\tf 4 351 732 -372 -732\n\t\tmu 0 4 368 369 390 389\n\t\tf 4 352 733 -373 -733\n\t\tmu 0 4 369 370 391 390\n\t\tf 4 353 734 -374 -734\n\t\tmu 0 4 370 371 392 391\n\t\tf 4 354 735 -375 -735\n\t\tmu 0 4 371 372 393 392\n\t\tf 4 355 736 -376 -736\n\t\tmu 0 4 372 373 394 393\n\t\tf 4 356 737 -377 -737\n\t\tmu 0 4 373 374 395 394\n\t\tf 4 357 738 -378 -738\n\t\tmu 0 4 374 375 396 395\n\t\tf 4 358 739 -379 -739\n\t\tmu 0 4 375 376 397 396\n\t\tf 4 359 720 -380 -740\n\t\tmu 0 4 376 377 398 397\n\t\tf 3 -1 -741 741\n\t\tmu 0 3 1 0 399\n\t\tf 3 -2 -742 742\n\t\tmu 0 3 2 1 400\n\t\tf 3 -3 -743 743\n\t\tmu 0 3 3 2 401\n\t\tf 3 -4 -744 744\n\t\tmu 0 3 4 3 402\n\t\tf 3 -5 -745 745\n\t\tmu 0 3 5 4 403\n\t\tf 3 -6 -746 746\n\t\tmu 0 3 6 5 404\n\t\tf 3 -7 -747 747\n\t\tmu 0 3 7 6 405\n\t\tf 3 -8 -748 748\n\t\tmu 0 3 8 7 406\n\t\tf 3 -9 -749 749\n\t\tmu 0 3 9 8 407\n\t\tf 3 -10 -750 750\n\t\tmu 0 3 10 9 408\n\t\tf 3 -11 -751 751\n\t\tmu 0 3 11 10 409\n\t\tf 3 -12 -752 752\n\t\tmu 0 3 12 11 410\n\t\tf 3 -13 -753 753\n\t\tmu 0 3 13 12 411\n\t\tf 3 -14 -754 754\n\t\tmu 0 3 14 13 412\n\t\tf 3 -15 -755 755\n\t\tmu 0 3 15 14 413\n\t\tf 3 -16 -756 756\n\t\tmu 0 3 16 15 414\n\t\tf 3 -17 -757 757\n\t\tmu 0 3 17 16 415\n\t\tf 3 -18 -758 758\n\t\tmu 0 3 18 17 416\n\t\tf 3 -19 -759 759\n\t\tmu 0 3 19 18 417\n\t\tf 3 -20 -760 740\n\t\tmu 0 3 20 19 418\n\t\tf 3 360 761 -761\n\t\tmu 0 3 378 379 419\n\t\tf 3 361 762 -762\n\t\tmu 0 3 379 380 420\n\t\tf 3 362 763 -763\n\t\tmu 0 3 380 381 421\n\t\tf 3 363 764 -764\n\t\tmu 0 3 381 382 422\n\t\tf 3 364 765 -765\n\t\tmu 0 3 382 383 423\n\t\tf 3 365 766 -766\n\t\tmu 0 3 383 384 424\n\t\tf 3 366 767 -767\n\t\tmu 0 3 384 385 425\n\t\tf 3 367 768 -768\n\t\tmu 0 3 385 386 426\n\t\tf 3 368 769 -769\n\t\tmu 0 3 386 387 427\n\t\tf 3 369 770 -770\n\t\tmu 0 3 387 388 428\n\t\tf 3 370 771 -771\n\t\tmu 0 3 388 389 429\n\t\tf 3 371 772 -772\n\t\tmu 0 3 389 390 430\n\t\tf 3 372 773 -773\n\t\tmu 0 3 390 391 431\n\t\tf 3 373 774 -774\n\t\tmu 0 3 391 392 432\n\t\tf 3 374 775 -775\n\t\tmu 0 3 392 393 433\n\t\tf 3 375 776 -776\n\t\tmu 0 3 393 394 434\n\t\tf 3 376 777 -777\n\t\tmu 0 3 394 395 435\n\t\tf 3 377 778 -778\n\t\tmu 0 3 395 396 436\n\t\tf 3 378 779 -779\n\t\tmu 0 3 396 397 437\n\t\tf 3 379 760 -780\n\t\tmu 0 3 397 398 438;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pSphere1\" -p \"joint1\";\n\trename -uid \"2671F415-46F3-3D44-DA0A-819F1BD8417B\";\ncreateNode mesh -n \"pSphereShape1\" -p \"pSphere1\";\n\trename -uid \"04B0E44D-425F-5878-BED8-E0A7D8C5E773\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"locator1\";\n\trename -uid \"CACD9384-4172-3510-636E-64B012D8B80C\";\ncreateNode locator -n \"locatorShape1\" -p \"locator1\";\n\trename -uid \"3EDA9E99-4933-F247-146D-00AA3C748A86\";\n\tsetAttr -k off \".v\";\ncreateNode transform -n \"camera1\";\n\trename -uid \"F8E13F76-4F0B-D47F-9E69-2895193CD386\";\n\tsetAttr \".t\" -type \"double3\" 2.1545684095321644 3.9551962385674568 7.5251580349326241 ;\n\tsetAttr \".r\" -type \"double3\" -20.600507990263612 19.400000000000077 -4.2150104414161141e-16 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"9AA34AC9-412A-BF89-5AFB-7998C9190E88\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 8.1055587291629276;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0 1.4999999925494194 -1.862645149230957e-08 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"F1BE57E8-4424-C16E-9101-9A98A5FA785E\";\n\tsetAttr -s 4 \".lnk\";\n\tsetAttr -s 4 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"65982B78-4460-26A7-303F-2FB336728336\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"77A964BE-46CE-0561-39FF-B08944DD0D68\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"E0EEAE73-4C9F-77F1-3B9A-ACAAE2A3FAE2\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"0638159B-4122-8500-F27E-A888A23882B0\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"EF0E4A31-45A3-5D23-9FD2-85BAA938FA5D\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"8C0EE620-4848-5AF4-D84A-8D8BCC07AD4F\";\n\tsetAttr \".g\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"3E3690B2-42EE-8D00-98DD-719AE7DF44D6\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 10 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"5F611A5C-4D94-43F0-AB79-91BF2C5A5C8F\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 30 -ast 1 -aet 30 \";\n\tsetAttr \".st\" 6;\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"FB55DAF0-4AEB-962F-840D-D0909CA97C83\";\n\tsetAttr \".c\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".it\" -type \"float3\" 0.208 0.208 0.208 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"B66D40D9-43DC-67AF-0009-5F9C169986ED\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"5F526B73-4FC9-2D15-25BE-96B847ECCB80\";\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"ACDF5912-4AC8-A8D5-CBF4-41A9FDD366C4\";\n\tsetAttr \".cuv\" 4;\ncreateNode dagPose -n \"bindPose1\";\n\trename -uid \"4C36F03C-4EA3-7F18-CAEE-11BFDDFD89A0\";\n\tsetAttr -s 2 \".wm\";\n\tsetAttr -s 3 \".xm\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0.70710678118654746 0.70710678118654757 1 1 1 yes;\n\tsetAttr \".xm[1]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1.5 3.3306690738754696e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[2]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1.5 3.3306690738754696e-16\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -0.70710678118654746 0.70710678118654757 1\n\t\t 1 1 yes;\n\tsetAttr -s 2 \".m\";\n\tsetAttr -s 2 \".p\";\n\tsetAttr \".bp\" yes;\ncreateNode skinCluster -n \"skinCluster2\";\n\trename -uid \"038CD041-4D72-E024-1B96-0886EA07E9DC\";\n\tsetAttr -s 8 \".wl\";\n\tsetAttr \".wl[0:7].w\"\n\t\t2 0 0.69230769230769229 1 0.30769230769230776\n\t\t2 0 0.69230769230769229 1 0.30769230769230776\n\t\t2 0 0.30769230769230782 1 0.69230769230769218\n\t\t2 0 0.30769230769230782 1 0.69230769230769218\n\t\t2 0 0.30769230769230782 1 0.69230769230769218\n\t\t2 0 0.30769230769230782 1 0.69230769230769218\n\t\t2 0 0.69230769230769229 1 0.30769230769230776\n\t\t2 0 0.69230769230769229 1 0.30769230769230776;\n\tsetAttr -s 3 \".pm\";\n\tsetAttr \".pm[0]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 0 0 1;\n\tsetAttr \".pm[1]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -1.5 -3.3306690738754696e-16 0 1;\n\tsetAttr \".pm[2]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 -3 0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 1.5 0 1;\n\tsetAttr -s 2 \".ma\";\n\tsetAttr -s 3 \".dpf[0:2]\"  4 4 4;\n\tsetAttr -s 2 \".lw\";\n\tsetAttr -s 2 \".lw\";\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".mi\" 4;\n\tsetAttr \".ucm\" yes;\n\tsetAttr -s 2 \".ifcl\";\n\tsetAttr -s 2 \".ifcl\";\ncreateNode tweak -n \"tweak2\";\n\trename -uid \"07DBC705-410A-A34D-275D-00B2D81A1959\";\ncreateNode objectSet -n \"skinCluster2Set\";\n\trename -uid \"291F0F29-40B2-D3AF-2630-178B43024CF2\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster2GroupId\";\n\trename -uid \"045387DA-4B9F-3866-E19F-1EA09C36C61D\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster2GroupParts\";\n\trename -uid \"63C880DE-4BA9-8DCD-5EB6-3680E00FFE3F\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet2\";\n\trename -uid \"C1FDDE23-4728-E7F9-2FFF-3A9F41EBB7BC\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId4\";\n\trename -uid \"D1C1C052-46C0-555D-BB8F-E9A88CBA6CE0\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts4\";\n\trename -uid \"54EF1D87-4FC6-59BB-1187-8D81FC3DAAFA\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode skinCluster -n \"skinCluster3\";\n\trename -uid \"D7121C89-47E2-A18E-CE25-ACB351AC41B3\";\n\tsetAttr -s 8 \".wl\";\n\tsetAttr \".wl[0:7].w\"\n\t\t2 0 0.97297297297297292 1 0.027027027027027029\n\t\t2 0 0.97297297297297292 1 0.027027027027027029\n\t\t2 0 0.89999999999999991 1 0.10000000000000005\n\t\t2 0 0.89999999999999991 1 0.10000000000000005\n\t\t2 0 0.89999999999999991 1 0.10000000000000005\n\t\t2 0 0.89999999999999991 1 0.10000000000000005\n\t\t2 0 0.97297297297297292 1 0.027027027027027029\n\t\t2 0 0.97297297297297292 1 0.027027027027027029;\n\tsetAttr -s 3 \".pm\";\n\tsetAttr \".pm[0]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 0 0 1;\n\tsetAttr \".pm[1]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 0 1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 -1.5 -3.3306690738754696e-16 0 1;\n\tsetAttr \".pm[2]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 -3 0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr -s 2 \".ma\";\n\tsetAttr -s 3 \".dpf[0:2]\"  4 4 4;\n\tsetAttr -s 2 \".lw\";\n\tsetAttr -s 2 \".lw\";\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".mi\" 4;\n\tsetAttr \".ucm\" yes;\n\tsetAttr -s 2 \".ifcl\";\n\tsetAttr -s 2 \".ifcl\";\ncreateNode tweak -n \"tweak3\";\n\trename -uid \"C899C839-4A45-FD06-C91C-AD9B340563CB\";\ncreateNode objectSet -n \"skinCluster3Set\";\n\trename -uid \"3AA6A27E-4FA8-939C-364E-C28060722405\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster3GroupId\";\n\trename -uid \"A80C1465-4802-CDD6-FA30-DAABB4E22F1F\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster3GroupParts\";\n\trename -uid \"54A224ED-4DF7-6F42-A100-81AE63E8F089\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet3\";\n\trename -uid \"AD75DFCE-4F5A-DA4D-38B2-19AC5737566F\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId6\";\n\trename -uid \"78A7D2AD-45C3-101F-ACBC-CC9322B3C9E3\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts6\";\n\trename -uid \"8D255752-4F69-4395-7553-AD852DBB30F8\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"2EE9EA65-4703-3791-5571-958413FC3190\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/scenes/skin/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"ScaledRegressionTest1\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2018 bugfa\";\n\tsetAttr \".scale\" 1.5;\n\tsetAttr \".flags\" -type \"string\" \"\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 1;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\ncreateNode polySphere -n \"polySphere1\";\n\trename -uid \"4873C7E9-4C70-1FC6-6AF1-C18DBC1FFC36\";\n\tsetAttr \".r\" 0.1;\ncreateNode lambert -n \"lambert3\";\n\trename -uid \"2E43B4C1-4070-399B-9B40-6DBD48B0973A\";\n\tsetAttr \".c\" -type \"float3\" 1 1 0 ;\n\tsetAttr \".ic\" -type \"float3\" 1 1 0 ;\ncreateNode shadingEngine -n \"lambert3SG\";\n\trename -uid \"678E03AA-4BAB-E664-FA29-FB884521A7A7\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"411B7D7D-4BF2-C240-44AB-F0BE7F288BE2\";\ncreateNode animCurveTA -n \"joint2_rotateZ\";\n\trename -uid \"DE347CFB-4C8B-0AA6-5356-78BCD85B5603\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 30 45;\ncreateNode animCurveTA -n \"joint1_rotateZ\";\n\trename -uid \"55B47CE4-4F2B-187C-ECAD-4AA814CB8105\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\ncreateNode animCurveTU -n \"joint2_visibility\";\n\trename -uid \"C4E0D7E0-4AD1-5902-FAC7-149F74FD720E\";\n\tsetAttr \".tan\" 9;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  30 1;\n\tsetAttr \".kot[0]\"  5;\ncreateNode animCurveTL -n \"joint2_translateX\";\n\trename -uid \"30D55D12-4BCF-A61F-4EB1-C5A2D7DEF9E6\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  30 1.5;\ncreateNode animCurveTL -n \"joint2_translateY\";\n\trename -uid \"18BF73FD-437B-8A08-06E2-BF976A49024A\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  30 3.3306690738754696e-16;\ncreateNode animCurveTL -n \"joint2_translateZ\";\n\trename -uid \"2CAC83EB-43DA-D911-C242-B1BC9AFB29BD\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  30 0;\ncreateNode animCurveTA -n \"joint2_rotateX\";\n\trename -uid \"92062231-4D70-2C20-553C-53948548B4A8\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  30 0;\ncreateNode animCurveTA -n \"joint2_rotateY\";\n\trename -uid \"D2323DF7-4B69-E94B-9DFE-309B60A3FFDB\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  30 0;\ncreateNode animCurveTU -n \"joint2_scaleX\";\n\trename -uid \"3CBA4D48-4D00-7646-FBC7-7EB879F8B96F\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  30 1;\ncreateNode animCurveTU -n \"joint2_scaleY\";\n\trename -uid \"16855DA5-4550-3967-775B-E19B18169E0F\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  30 1;\ncreateNode animCurveTU -n \"joint2_scaleZ\";\n\trename -uid \"04714486-4290-198F-79FA-B086A4655792\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  30 1;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"89877747-4920-BD56-CF9E-CB98ACBE4E71\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 6 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :lambert1;\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\n\tsetAttr \".it\" -type \"float3\" 0.45454547 0.45454547 0.45454547 ;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"skinCluster3GroupId.id\" \"pCubeShape1.iog.og[0].gid\";\nconnectAttr \"skinCluster3Set.mwc\" \"pCubeShape1.iog.og[0].gco\";\nconnectAttr \"groupId6.id\" \"pCubeShape1.iog.og[1].gid\";\nconnectAttr \"tweakSet3.mwc\" \"pCubeShape1.iog.og[1].gco\";\nconnectAttr \"skinCluster3.og[0]\" \"pCubeShape1.i\";\nconnectAttr \"tweak3.vl[0].vt[0]\" \"pCubeShape1.twl\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1Orig.i\";\nconnectAttr \"skinCluster2GroupId.id\" \"pCubeShape4.iog.og[0].gid\";\nconnectAttr \"skinCluster2Set.mwc\" \"pCubeShape4.iog.og[0].gco\";\nconnectAttr \"groupId4.id\" \"pCubeShape4.iog.og[1].gid\";\nconnectAttr \"tweakSet2.mwc\" \"pCubeShape4.iog.og[1].gco\";\nconnectAttr \"skinCluster2.og[0]\" \"pCubeShape4.i\";\nconnectAttr \"tweak2.vl[0].vt[0]\" \"pCubeShape4.twl\";\nconnectAttr \"joint1_rotateZ.o\" \"joint1.rz\";\nconnectAttr \"joint1.s\" \"joint2.is\";\nconnectAttr \"joint2_rotateZ.o\" \"joint2.rz\";\nconnectAttr \"joint2_rotateX.o\" \"joint2.rx\";\nconnectAttr \"joint2_rotateY.o\" \"joint2.ry\";\nconnectAttr \"joint2_visibility.o\" \"joint2.v\";\nconnectAttr \"joint2_translateX.o\" \"joint2.tx\";\nconnectAttr \"joint2_translateY.o\" \"joint2.ty\";\nconnectAttr \"joint2_translateZ.o\" \"joint2.tz\";\nconnectAttr \"joint2_scaleX.o\" \"joint2.sx\";\nconnectAttr \"joint2_scaleY.o\" \"joint2.sy\";\nconnectAttr \"joint2_scaleZ.o\" \"joint2.sz\";\nconnectAttr \"polySphere1.out\" \"pSphereShape1.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"pCubeShape2.iog\" \"lambert2SG.dsm\" -na;\nconnectAttr \"pCubeShape3.iog\" \"lambert2SG.dsm\" -na;\nconnectAttr \"lambert2SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo1.m\";\nconnectAttr \"joint1.msg\" \"bindPose1.m[0]\";\nconnectAttr \"joint2.msg\" \"bindPose1.m[1]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[0]\";\nconnectAttr \"bindPose1.m[0]\" \"bindPose1.p[1]\";\nconnectAttr \"joint1.bps\" \"bindPose1.wm[0]\";\nconnectAttr \"joint2.bps\" \"bindPose1.wm[1]\";\nconnectAttr \"skinCluster2GroupParts.og\" \"skinCluster2.ip[0].ig\";\nconnectAttr \"skinCluster2GroupId.id\" \"skinCluster2.ip[0].gi\";\nconnectAttr \"joint1.wm\" \"skinCluster2.ma[0]\";\nconnectAttr \"joint2.wm\" \"skinCluster2.ma[1]\";\nconnectAttr \"joint1.liw\" \"skinCluster2.lw[0]\";\nconnectAttr \"joint2.liw\" \"skinCluster2.lw[1]\";\nconnectAttr \"joint1.obcc\" \"skinCluster2.ifcl[0]\";\nconnectAttr \"joint2.obcc\" \"skinCluster2.ifcl[1]\";\nconnectAttr \"bindPose1.msg\" \"skinCluster2.bp\";\nconnectAttr \"groupParts4.og\" \"tweak2.ip[0].ig\";\nconnectAttr \"groupId4.id\" \"tweak2.ip[0].gi\";\nconnectAttr \"skinCluster2GroupId.msg\" \"skinCluster2Set.gn\" -na;\nconnectAttr \"pCubeShape4.iog.og[0]\" \"skinCluster2Set.dsm\" -na;\nconnectAttr \"skinCluster2.msg\" \"skinCluster2Set.ub[0]\";\nconnectAttr \"tweak2.og[0]\" \"skinCluster2GroupParts.ig\";\nconnectAttr \"skinCluster2GroupId.id\" \"skinCluster2GroupParts.gi\";\nconnectAttr \"groupId4.msg\" \"tweakSet2.gn\" -na;\nconnectAttr \"pCubeShape4.iog.og[1]\" \"tweakSet2.dsm\" -na;\nconnectAttr \"tweak2.msg\" \"tweakSet2.ub[0]\";\nconnectAttr \"pCubeShape4Orig.w\" \"groupParts4.ig\";\nconnectAttr \"groupId4.id\" \"groupParts4.gi\";\nconnectAttr \"skinCluster3GroupParts.og\" \"skinCluster3.ip[0].ig\";\nconnectAttr \"skinCluster3GroupId.id\" \"skinCluster3.ip[0].gi\";\nconnectAttr \"joint1.wm\" \"skinCluster3.ma[0]\";\nconnectAttr \"joint2.wm\" \"skinCluster3.ma[1]\";\nconnectAttr \"joint1.liw\" \"skinCluster3.lw[0]\";\nconnectAttr \"joint2.liw\" \"skinCluster3.lw[1]\";\nconnectAttr \"joint1.obcc\" \"skinCluster3.ifcl[0]\";\nconnectAttr \"joint2.obcc\" \"skinCluster3.ifcl[1]\";\nconnectAttr \"bindPose1.msg\" \"skinCluster3.bp\";\nconnectAttr \"groupParts6.og\" \"tweak3.ip[0].ig\";\nconnectAttr \"groupId6.id\" \"tweak3.ip[0].gi\";\nconnectAttr \"skinCluster3GroupId.msg\" \"skinCluster3Set.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[0]\" \"skinCluster3Set.dsm\" -na;\nconnectAttr \"skinCluster3.msg\" \"skinCluster3Set.ub[0]\";\nconnectAttr \"tweak3.og[0]\" \"skinCluster3GroupParts.ig\";\nconnectAttr \"skinCluster3GroupId.id\" \"skinCluster3GroupParts.gi\";\nconnectAttr \"groupId6.msg\" \"tweakSet3.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[1]\" \"tweakSet3.dsm\" -na;\nconnectAttr \"tweak3.msg\" \"tweakSet3.ub[0]\";\nconnectAttr \"pCubeShape1Orig.w\" \"groupParts6.ig\";\nconnectAttr \"groupId6.id\" \"groupParts6.gi\";\nconnectAttr \"lambert3.oc\" \"lambert3SG.ss\";\nconnectAttr \"pSphereShape1.iog\" \"lambert3SG.dsm\" -na;\nconnectAttr \"pSphereShape2.iog\" \"lambert3SG.dsm\" -na;\nconnectAttr \"lambert3SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"lambert3.msg\" \"materialInfo2.m\";\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert3SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert3.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pCubeShape4.iog\" \":initialShadingGroup.dsm\" -na;\n// End of ScaledRegressionTest1.ma\n"
  },
  {
    "path": "maya/scenes/skin/SegmentScaleCompensationTest0.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: SegmentScaleCompensationTest0.ma\n//Last modified: Sun, Feb 03, 2019 12:05:36 PM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"869C249C-4512-59E7-311C-7C9D966940BA\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 2.1472876431980596 7.0327938127289338 12.431469537783894 ;\n\tsetAttr \".r\" -type \"double3\" -29.138352729607384 9.8000000000000416 4.0345661506751226e-16 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"A229D14C-45D0-2030-2A9E-D58C597EDA9E\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 14.443422998161175;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"D55299B5-4D0F-53FD-12D0-6580681270C5\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"B5683340-4108-11C5-97D8-A2843D6B43B3\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"04E0D97D-4419-F5D9-C935-20912E443BE5\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"953AC070-44C8-E27E-A49B-B3851F952C42\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"7C3FE00C-43B4-CA16-5E04-269BAF08FA89\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"A2111364-4F31-A06F-E4CB-B0894ECA411B\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode joint -n \"joint1\";\n\trename -uid \"B9F3DC97-4502-63DA-38C8-0DAE048492A6\";\n\tsetAttr \".t\" -type \"double3\" -5 0 0 ;\n\tsetAttr \".s\" -type \"double3\" 10 1 1 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint2\" -p \"joint1\";\n\trename -uid \"10215F4C-4C7B-A03F-55DE-6B9B7B1DFCB8\";\n\tsetAttr \".t\" -type \"double3\" 1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 0 90 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".radi\" 0.5;\ncreateNode transform -n \"pCube1\" -p \"joint2\";\n\trename -uid \"574B8762-463C-E0BB-52F7-EAB4C6DC0B96\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"D0764EFA-4EB0-AA4A-D06E-11825C41B9DC\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pCube2\";\n\trename -uid \"E65F9E03-4C39-C9BE-2E2B-20BEA0B8B6F3\";\n\tsetAttr \".t\" -type \"double3\" 5 0 -1 ;\n\tsetAttr \".r\" -type \"double3\" 0 0 90 ;\ncreateNode mesh -n \"pCubeShape2\" -p \"pCube2\";\n\trename -uid \"62F62958-431A-F223-F42E-0EA798FE6DA1\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"38D319BB-40E7-F6B1-9A76-6E86946BE733\";\n\tsetAttr \".t\" -type \"double3\" 7.5441199087406021 3.1089674436789578 1.3620142956164702 ;\n\tsetAttr \".r\" -type \"double3\" -44.5996613398245 53.800000000000075 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"2D383FF9-4AA0-4F96-101A-65981E30B1E0\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 4.4277897322463335;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 5 0 -0.5 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"4CFCC8E7-4A2D-B8BE-8D40-B7A3BC0BB05E\";\n\tsetAttr -s 3 \".lnk\";\n\tsetAttr -s 3 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"F594DDD3-4D84-31E0-BFDE-C791E62885B0\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"336FC271-45B5-7560-1DE3-A69CF68118C3\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"E0873367-4FDE-B6DD-BF6B-83AE6A990E7E\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"17122631-4C9A-4A72-4851-19ADB520B11D\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"17D75F80-448C-A5CC-3978-76865881BEBF\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"82CD292C-4DD6-6544-4D87-3AB43D871294\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"575D2E36-4A72-CF48-1876-88954DD8CF82\";\n\tsetAttr \".cuv\" 4;\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"30451DF3-4036-FEDE-51CD-0CAB481C1FE4\";\n\tsetAttr \".c\" -type \"float3\" 0 1 0 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"24CDF8A5-420D-B6CA-CCA9-39B9B3812D49\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"CB97E17C-4D6D-6374-BAC3-D08FDEE6C30E\";\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"6F50C1AE-463D-59EB-C119-19B54D946E40\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 1\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 1\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 1\\n            -showReferenceMembers 1\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"dagName\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 1\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 1\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"3F917829-492D-9B51-26B7-68854032A164\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"1096D458-45BD-6D1B-D6F2-609FCB073ABD\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 3;\n\tsetAttr \".unw\" 3;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 3 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 5 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :lambert1;\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"joint1.s\" \"joint2.is\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"pCubeShape2.iog\" \"lambert2SG.dsm\" -na;\nconnectAttr \"lambert2SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo1.m\";\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of SegmentScaleCompensationTest0.ma\n"
  },
  {
    "path": "maya/scenes/skin/SegmentScaleCompensationTest1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: SegmentScaleCompensationTest1.ma\n//Last modified: Sun, Feb 03, 2019 12:06:07 PM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"DCCDAEF3-49A9-D0AB-FEEC-6F9F80A94A20\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -4.4510705736052287 5.2434326514318945 -17.087923111856632 ;\n\tsetAttr \".r\" -type \"double3\" -16.538352729528647 -165.39999999991326 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"41BDACBE-44DD-9332-3688-7C8094F8C4D4\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 18.420171863966278;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"68D6F5AC-49A3-A9BA-10E0-49A0D130BE5C\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"395F50F0-4005-332B-2C18-D7B9583A6140\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"0ADD7666-4A79-6F84-187E-3D935C079550\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"799C929E-4F51-65F5-1616-0194B4847CD9\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 15.82764011699572;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"25617777-4638-A435-E562-C4969DA4DE44\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"2D1B1B5E-42EE-C91B-94E7-DE980C6867B0\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"root\";\n\trename -uid \"7EA0EE40-4A6D-2357-8F1E-94849FFAE1C5\";\n\tsetAttr \".s\" -type \"double3\" 0.5 0.5 0.5 ;\ncreateNode locator -n \"rootShape\" -p \"root\";\n\trename -uid \"7A5BF724-496D-0261-ED54-8B915D0A8B67\";\n\tsetAttr -k off \".v\";\ncreateNode joint -n \"joint1\" -p \"root\";\n\trename -uid \"DE5CC9D5-442C-49D1-76D1-209BD789983E\";\n\tsetAttr \".s\" -type \"double3\" 2 1 1 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 89.999999999999986 ;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint2\" -p \"joint1\";\n\trename -uid \"A2B6C199-4DBD-D574-0A61-28A1E1BF7CE4\";\n\tsetAttr \".s\" -type \"double3\" 3 1 1 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint3\" -p \"joint2\";\n\trename -uid \"EA52E24A-418F-8DFE-E1EE-1AB1D897CD39\";\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 -89.999999999999986 ;\n\tsetAttr \".radi\" 0.5;\ncreateNode transform -n \"pCube3\" -p \"joint3\";\n\trename -uid \"31BB0891-48F4-B3C0-0DCB-699CF015F21A\";\n\tsetAttr \".t\" -type \"double3\" -4.4188809427174483e-16 0.5 0 ;\n\tsetAttr \".s\" -type \"double3\" 1 4 1 ;\n\tsetAttr \".rp\" -type \"double3\" 4.4188809427174483e-16 -0.5 0 ;\n\tsetAttr \".sp\" -type \"double3\" 4.4188809427174483e-16 -0.5 0 ;\ncreateNode mesh -n \"pCubeShape3\" -p \"pCube3\";\n\trename -uid \"0CB83BE8-4295-D734-C05B-6B87327FCEF2\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcol\" yes;\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".ccls\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clst[0].clsn\" -type \"string\" \"colorSet1\";\n\tsetAttr -s 24 \".clst[0].clsp[0:23]\"  0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1\n\t\t 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0\n\t\t 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1;\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tmc 0 4 0 1 2 3\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tmc 0 4 4 5 6 7\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tmc 0 4 8 9 10 11\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tmc 0 4 12 13 14 15\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tmc 0 4 16 17 18 19\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13\n\t\tmc 0 4 20 21 22 23;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pCube2\" -p \"joint2\";\n\trename -uid \"FE61E7B2-4F33-EA7A-DF06-A5BBBAE4C6AF\";\n\tsetAttr \".t\" -type \"double3\" 0.5 5.5291039673426048e-16 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 0 -89.999999999999986 ;\n\tsetAttr \".rp\" -type \"double3\" 4.4188809427174483e-16 -0.5 0 ;\n\tsetAttr \".rpt\" -type \"double3\" -0.50000000000000044 0.49999999999999944 0 ;\n\tsetAttr \".sp\" -type \"double3\" 4.4188809427174483e-16 -0.5 0 ;\ncreateNode mesh -n \"pCubeShape2\" -p \"pCube2\";\n\trename -uid \"37BDAFAB-478E-A087-7216-37980D8D6662\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcol\" yes;\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".ccls\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clst[0].clsn\" -type \"string\" \"colorSet1\";\n\tsetAttr -s 24 \".clst[0].clsp[0:23]\"  1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1\n\t\t 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1\n\t\t 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1;\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tmc 0 4 0 1 2 3\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tmc 0 4 4 5 6 7\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tmc 0 4 8 9 10 11\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tmc 0 4 12 13 14 15\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tmc 0 4 16 17 18 19\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13\n\t\tmc 0 4 20 21 22 23;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pCube1\" -p \"joint1\";\n\trename -uid \"41C6C38E-40A1-8B07-2A50-6483ABB96F94\";\n\tsetAttr \".t\" -type \"double3\" 0.5 1.1102230246251565e-16 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 0 -89.999999999999986 ;\n\tsetAttr \".rp\" -type \"double3\" 4.4188809427174483e-16 -0.5 0 ;\n\tsetAttr \".rpt\" -type \"double3\" -0.50000000000000044 0.49999999999999989 0 ;\n\tsetAttr \".sp\" -type \"double3\" 4.4188809427174483e-16 -0.5 0 ;\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"184A9994-4445-594B-56C2-0E89BAC167FE\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcol\" yes;\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".ccls\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clst[0].clsn\" -type \"string\" \"colorSet1\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pPlane1\";\n\trename -uid \"F2392BCD-445A-4C59-79FB-E898873AB134\";\ncreateNode mesh -n \"pPlaneShape1\" -p \"pPlane1\";\n\trename -uid \"1FE6DA18-4D55-0E0F-7725-BFB71A1C8D0F\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.25 0.25 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcol\" yes;\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".ccls\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clst[0].clsn\" -type \"string\" \"colorSet1\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pPlane2\";\n\trename -uid \"D756B83A-4C5E-14A7-C62C-09A8848A3028\";\n\tsetAttr \".r\" -type \"double3\" -90 0 0 ;\ncreateNode mesh -n \"pPlaneShape2\" -p \"pPlane2\";\n\trename -uid \"5B56611C-4CF2-3BE2-B942-998C0156D4CF\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.3125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcol\" yes;\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".ccls\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clst[0].clsn\" -type \"string\" \"colorSet1\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"7940DAC9-41BD-237A-90F5-0EA32F44486F\";\n\tsetAttr \".t\" -type \"double3\" 4.132916958716998 11.647700569431242 17.901630097102213 ;\n\tsetAttr \".r\" -type \"double3\" -31.400126997566989 13.000000000000275 -4.0802704183093924e-16 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"30C6B274-45AD-2BB6-1404-81A8D028BE78\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 21.524836507798433;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0 0.43301270189221974 0 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"350286E3-4745-4B8A-B0C7-DD9BF273E25D\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"A2AE00C3-41CD-43C7-F678-8F9A0EAB3621\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"3DE7A2C4-4769-A195-6D98-9C908DFD4B45\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"04278FEE-483A-92BC-2504-12BAB0C8C17B\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"C490A752-4C03-0966-A144-658EB37F4FE0\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"D5D76833-454B-589D-149F-AA9560E48773\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"9A13CC9D-41D6-6F29-7A6D-159AE92DAA65\";\n\tsetAttr \".g\" yes;\ncreateNode trackInfoManager -n \"trackInfoManager1\";\n\trename -uid \"24711E36-4923-D4EC-0C7D-F380BC03E642\";\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"69E6E4D3-49D7-5C13-415C-D0AE64EA008B\";\n\tsetAttr \".cuv\" 4;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"F58F6D31-4355-ACA5-388F-6DBAA3B55E50\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 1\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"D169580A-46BC-DE5B-55AB-C8A2853C5EE3\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode polyPlane -n \"polyPlane1\";\n\trename -uid \"D7157799-40E6-AB5F-F4CB-DABE88F91BBA\";\n\tsetAttr \".w\" 10;\n\tsetAttr \".h\" 10;\n\tsetAttr \".sw\" 2;\n\tsetAttr \".sh\" 2;\n\tsetAttr \".cuv\" 2;\ncreateNode polyPlane -n \"polyPlane2\";\n\trename -uid \"60C78A91-4233-EEA0-C72C-E6A81D987531\";\n\tsetAttr \".w\" 7.6;\n\tsetAttr \".h\" 2;\n\tsetAttr \".sw\" 2;\n\tsetAttr \".sh\" 2;\n\tsetAttr \".cuv\" 2;\ncreateNode polyColorPerVertex -n \"polyColorPerVertex1\";\n\trename -uid \"DE9027DE-464F-FAB3-2639-E682A4DCC569\";\n\tsetAttr \".uopa\" yes;\n\tsetAttr -s 9 \".vclr\";\n\tsetAttr \".vclr[0].vxal\" 1;\n\tsetAttr \".vclr[0].vfcl[0].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[0].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[1].vxal\" 1;\n\tsetAttr -s 2 \".vclr[1].vfcl\";\n\tsetAttr \".vclr[1].vfcl[0].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[1].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[1].vfcl[1].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[1].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[2].vxal\" 1;\n\tsetAttr \".vclr[2].vfcl[1].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[2].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[3].vxal\" 1;\n\tsetAttr -s 2 \".vclr[3].vfcl\";\n\tsetAttr \".vclr[3].vfcl[0].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[3].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[3].vfcl[2].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[3].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[4].vxal\" 1;\n\tsetAttr -s 4 \".vclr[4].vfcl\";\n\tsetAttr \".vclr[4].vfcl[0].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[4].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[4].vfcl[1].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[4].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[4].vfcl[2].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[4].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[4].vfcl[3].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[4].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[5].vxal\" 1;\n\tsetAttr -s 2 \".vclr[5].vfcl\";\n\tsetAttr \".vclr[5].vfcl[1].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[5].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[5].vfcl[3].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[5].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[6].vxal\" 1;\n\tsetAttr \".vclr[6].vfcl[2].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[6].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[7].vxal\" 1;\n\tsetAttr -s 2 \".vclr[7].vfcl\";\n\tsetAttr \".vclr[7].vfcl[2].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[7].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[7].vfcl[3].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[7].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[8].vxal\" 1;\n\tsetAttr \".vclr[8].vfcl[3].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[8].vfcl[3].vfal\" 1;\n\tsetAttr \".cn\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clam\" no;\ncreateNode polyColorPerVertex -n \"polyColorPerVertex2\";\n\trename -uid \"09133468-4F96-F790-0454-F0A78C6EE62E\";\n\tsetAttr \".uopa\" yes;\n\tsetAttr -s 9 \".vclr\";\n\tsetAttr \".vclr[0].vxal\" 1;\n\tsetAttr \".vclr[0].vfcl[0].frgb\" -type \"float3\" 0.493 0.493 0.085299999 ;\n\tsetAttr \".vclr[0].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[1].vxal\" 1;\n\tsetAttr -s 2 \".vclr[1].vfcl\";\n\tsetAttr \".vclr[1].vfcl[0].frgb\" -type \"float3\" 0.493 0.493 0.085299999 ;\n\tsetAttr \".vclr[1].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[1].vfcl[1].frgb\" -type \"float3\" 0.21799999 0.21799999 1 ;\n\tsetAttr \".vclr[1].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[2].vxal\" 1;\n\tsetAttr \".vclr[2].vfcl[1].frgb\" -type \"float3\" 0.21799999 0.21799999 1 ;\n\tsetAttr \".vclr[2].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[3].vxal\" 1;\n\tsetAttr -s 2 \".vclr[3].vfcl\";\n\tsetAttr \".vclr[3].vfcl[0].frgb\" -type \"float3\" 0.493 0.493 0.085299999 ;\n\tsetAttr \".vclr[3].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[3].vfcl[2].frgb\" -type \"float3\" 0.87599999 0.26980001 0.26980001 ;\n\tsetAttr \".vclr[3].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[4].vxal\" 1;\n\tsetAttr -s 4 \".vclr[4].vfcl\";\n\tsetAttr \".vclr[4].vfcl[0].frgb\" -type \"float3\" 0.493 0.493 0.085299999 ;\n\tsetAttr \".vclr[4].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[4].vfcl[1].frgb\" -type \"float3\" 0.21799999 0.21799999 1 ;\n\tsetAttr \".vclr[4].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[4].vfcl[2].frgb\" -type \"float3\" 0.87599999 0.26980001 0.26980001 ;\n\tsetAttr \".vclr[4].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[4].vfcl[3].frgb\" -type \"float3\" 0.064499997 0.50400001 0.064499997 ;\n\tsetAttr \".vclr[4].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[5].vxal\" 1;\n\tsetAttr -s 2 \".vclr[5].vfcl\";\n\tsetAttr \".vclr[5].vfcl[1].frgb\" -type \"float3\" 0.21799999 0.21799999 1 ;\n\tsetAttr \".vclr[5].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[5].vfcl[3].frgb\" -type \"float3\" 0.064499997 0.50400001 0.064499997 ;\n\tsetAttr \".vclr[5].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[6].vxal\" 1;\n\tsetAttr \".vclr[6].vfcl[2].frgb\" -type \"float3\" 0.87599999 0.26980001 0.26980001 ;\n\tsetAttr \".vclr[6].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[7].vxal\" 1;\n\tsetAttr -s 2 \".vclr[7].vfcl\";\n\tsetAttr \".vclr[7].vfcl[2].frgb\" -type \"float3\" 0.87599999 0.26980001 0.26980001 ;\n\tsetAttr \".vclr[7].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[7].vfcl[3].frgb\" -type \"float3\" 0.064499997 0.50400001 0.064499997 ;\n\tsetAttr \".vclr[7].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[8].vxal\" 1;\n\tsetAttr \".vclr[8].vfcl[3].frgb\" -type \"float3\" 0.064499997 0.50400001 0.064499997 ;\n\tsetAttr \".vclr[8].vfcl[3].vfal\" 1;\n\tsetAttr \".cn\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clam\" no;\ncreateNode polyColorPerVertex -n \"polyColorPerVertex3\";\n\trename -uid \"5B9F78CB-46F2-301B-EF20-64930F385FEF\";\n\tsetAttr \".uopa\" yes;\n\tsetAttr -s 8 \".vclr\";\n\tsetAttr \".vclr[0].vxal\" 1;\n\tsetAttr -s 3 \".vclr[0].vfcl\";\n\tsetAttr \".vclr[0].vfcl[0].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[0].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[0].vfcl[3].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[0].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[0].vfcl[5].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[0].vfcl[5].vfal\" 1;\n\tsetAttr \".vclr[1].vxal\" 1;\n\tsetAttr -s 3 \".vclr[1].vfcl\";\n\tsetAttr \".vclr[1].vfcl[0].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[1].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[1].vfcl[3].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[1].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[1].vfcl[4].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[1].vfcl[4].vfal\" 1;\n\tsetAttr \".vclr[2].vxal\" 1;\n\tsetAttr -s 3 \".vclr[2].vfcl\";\n\tsetAttr \".vclr[2].vfcl[0].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[2].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[2].vfcl[1].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[2].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[2].vfcl[5].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[2].vfcl[5].vfal\" 1;\n\tsetAttr \".vclr[3].vxal\" 1;\n\tsetAttr -s 3 \".vclr[3].vfcl\";\n\tsetAttr \".vclr[3].vfcl[0].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[3].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[3].vfcl[1].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[3].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[3].vfcl[4].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[3].vfcl[4].vfal\" 1;\n\tsetAttr \".vclr[4].vxal\" 1;\n\tsetAttr -s 3 \".vclr[4].vfcl\";\n\tsetAttr \".vclr[4].vfcl[1].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[4].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[4].vfcl[2].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[4].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[4].vfcl[5].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[4].vfcl[5].vfal\" 1;\n\tsetAttr \".vclr[5].vxal\" 1;\n\tsetAttr -s 3 \".vclr[5].vfcl\";\n\tsetAttr \".vclr[5].vfcl[1].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[5].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[5].vfcl[2].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[5].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[5].vfcl[4].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[5].vfcl[4].vfal\" 1;\n\tsetAttr \".vclr[6].vxal\" 1;\n\tsetAttr -s 3 \".vclr[6].vfcl\";\n\tsetAttr \".vclr[6].vfcl[2].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[6].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[6].vfcl[3].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[6].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[6].vfcl[5].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[6].vfcl[5].vfal\" 1;\n\tsetAttr \".vclr[7].vxal\" 1;\n\tsetAttr -s 3 \".vclr[7].vfcl\";\n\tsetAttr \".vclr[7].vfcl[2].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[7].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[7].vfcl[3].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[7].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[7].vfcl[4].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[7].vfcl[4].vfal\" 1;\n\tsetAttr \".cn\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clam\" no;\ncreateNode character -n \"character1\";\n\trename -uid \"B906B5A4-4210-AF4E-6A0A-50BBE4B5AA1C\";\n\taddAttr -ci true -h true -sn \"aal\" -ln \"attributeAliasList\" -dt \"attributeAlias\";\n\tsetAttr -s 18 \".dnsm\";\n\tsetAttr -s 9 \".lv\";\n\tsetAttr -s 9 \".lv\";\n\tsetAttr -s 9 \".av\";\n\tsetAttr -s 9 \".av\";\n\tsetAttr \".am\" -type \"characterMapping\" 18 \"joint3.rotateZ\" 2 1 \"joint3.rotateY\" \n\t\t2 2 \"joint3.rotateX\" 2 3 \"joint3.translateZ\" 1 1 \"joint3.translateY\" \n\t\t1 2 \"joint3.translateX\" 1 3 \"joint2.rotateZ\" 2 4 \"joint2.rotateY\" \n\t\t2 5 \"joint2.rotateX\" 2 6 \"joint2.translateZ\" 1 4 \"joint2.translateY\" \n\t\t1 5 \"joint2.translateX\" 1 6 \"joint1.rotateZ\" 2 7 \"joint1.rotateY\" \n\t\t2 8 \"joint1.rotateX\" 2 9 \"joint1.translateZ\" 1 7 \"joint1.translateY\" \n\t\t1 8 \"joint1.translateX\" 1 9  ;\n\tsetAttr \".aal\" -type \"attributeAlias\" {\"joint3_rotateZ\",\"angularValues[1]\",\"joint3_rotateY\"\n\t\t,\"angularValues[2]\",\"joint3_rotateX\",\"angularValues[3]\",\"joint2_rotateZ\",\"angularValues[4]\"\n\t\t,\"joint2_rotateY\",\"angularValues[5]\",\"joint2_rotateX\",\"angularValues[6]\",\"joint1_rotateZ\"\n\t\t,\"angularValues[7]\",\"joint1_rotateY\",\"angularValues[8]\",\"joint1_rotateX\",\"angularValues[9]\"\n\t\t,\"joint3_translateZ\",\"linearValues[1]\",\"joint3_translateY\",\"linearValues[2]\",\"joint3_translateX\"\n\t\t,\"linearValues[3]\",\"joint2_translateZ\",\"linearValues[4]\",\"joint2_translateY\",\"linearValues[5]\"\n\t\t,\"joint2_translateX\",\"linearValues[6]\",\"joint1_translateZ\",\"linearValues[7]\",\"joint1_translateY\"\n\t\t,\"linearValues[8]\",\"joint1_translateX\",\"linearValues[9]\"} ;\ncreateNode animCurveTA -n \"character1_joint1_rotateZ\";\n\trename -uid \"7FC8280C-4F39-7CCC-464F-8CBE5A9203F8\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 29.999999999999996;\n\tsetAttr \".kix[0]\"  1;\n\tsetAttr \".kiy[0]\"  0;\n\tsetAttr \".kox[0]\"  1;\n\tsetAttr \".koy[0]\"  0;\ncreateNode animCurveTA -n \"character1_joint1_rotateY\";\n\trename -uid \"DE85CABD-4C59-D225-C6BD-BCA8DF67F835\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\n\tsetAttr \".kix[0]\"  1;\n\tsetAttr \".kiy[0]\"  0;\n\tsetAttr \".kox[0]\"  1;\n\tsetAttr \".koy[0]\"  0;\ncreateNode animCurveTA -n \"character1_joint1_rotateX\";\n\trename -uid \"55296827-487F-9E10-9646-3586636A303A\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\n\tsetAttr \".kix[0]\"  1;\n\tsetAttr \".kiy[0]\"  0;\n\tsetAttr \".kox[0]\"  1;\n\tsetAttr \".koy[0]\"  0;\ncreateNode animCurveTL -n \"character1_joint1_translateZ\";\n\trename -uid \"9602987D-467A-BA83-FEAC-8EA9F7F5B104\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\n\tsetAttr \".kix[0]\"  1;\n\tsetAttr \".kiy[0]\"  0;\n\tsetAttr \".kox[0]\"  1;\n\tsetAttr \".koy[0]\"  0;\ncreateNode animCurveTL -n \"character1_joint1_translateY\";\n\trename -uid \"2A129A31-4A84-C8A2-8416-D4A8B9EC056E\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\n\tsetAttr \".kix[0]\"  1;\n\tsetAttr \".kiy[0]\"  0;\n\tsetAttr \".kox[0]\"  1;\n\tsetAttr \".koy[0]\"  0;\ncreateNode animCurveTL -n \"character1_joint1_translateX\";\n\trename -uid \"DE36CABF-4D08-4428-AA15-F3B158524C7F\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\n\tsetAttr \".kix[0]\"  1;\n\tsetAttr \".kiy[0]\"  0;\n\tsetAttr \".kox[0]\"  1;\n\tsetAttr \".koy[0]\"  0;\ncreateNode animCurveTA -n \"character1_joint2_rotateZ\";\n\trename -uid \"27992D47-4185-74A8-A962-B89CE57BCB20\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 29.999999999999996;\n\tsetAttr \".kix[0]\"  1;\n\tsetAttr \".kiy[0]\"  0;\n\tsetAttr \".kox[0]\"  1;\n\tsetAttr \".koy[0]\"  0;\ncreateNode animCurveTA -n \"character1_joint2_rotateY\";\n\trename -uid \"7D3DD881-459D-8C53-5B5F-1B916959CF34\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\n\tsetAttr \".kix[0]\"  1;\n\tsetAttr \".kiy[0]\"  0;\n\tsetAttr \".kox[0]\"  1;\n\tsetAttr \".koy[0]\"  0;\ncreateNode animCurveTA -n \"character1_joint2_rotateX\";\n\trename -uid \"241759A2-41E7-B60B-B1D5-04882EFFCCBC\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\n\tsetAttr \".kix[0]\"  1;\n\tsetAttr \".kiy[0]\"  0;\n\tsetAttr \".kox[0]\"  1;\n\tsetAttr \".koy[0]\"  0;\ncreateNode animCurveTL -n \"character1_joint2_translateZ\";\n\trename -uid \"B50D7605-4F6D-F130-BFF8-ED8EFEB3D5E6\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\n\tsetAttr \".kix[0]\"  1;\n\tsetAttr \".kiy[0]\"  0;\n\tsetAttr \".kox[0]\"  1;\n\tsetAttr \".koy[0]\"  0;\ncreateNode animCurveTL -n \"character1_joint2_translateY\";\n\trename -uid \"2F74C879-40EC-F85B-B8A6-4B9AE14710D5\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 2.2204460492503131e-16;\n\tsetAttr \".kix[0]\"  1;\n\tsetAttr \".kiy[0]\"  0;\n\tsetAttr \".kox[0]\"  1;\n\tsetAttr \".koy[0]\"  0;\ncreateNode animCurveTL -n \"character1_joint2_translateX\";\n\trename -uid \"627FD86E-421A-0D77-0E4F-C2A09A0B134E\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 1;\n\tsetAttr \".kix[0]\"  1;\n\tsetAttr \".kiy[0]\"  0;\n\tsetAttr \".kox[0]\"  1;\n\tsetAttr \".koy[0]\"  0;\ncreateNode animCurveTA -n \"character1_joint3_rotateZ\";\n\trename -uid \"405FBDB7-4F47-3538-7A87-65BC76753B02\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 29.999999999999996;\n\tsetAttr \".kix[0]\"  1;\n\tsetAttr \".kiy[0]\"  0;\n\tsetAttr \".kox[0]\"  1;\n\tsetAttr \".koy[0]\"  0;\ncreateNode animCurveTA -n \"character1_joint3_rotateY\";\n\trename -uid \"470BDA37-436C-2A36-50E5-62A5F32B5924\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\n\tsetAttr \".kix[0]\"  1;\n\tsetAttr \".kiy[0]\"  0;\n\tsetAttr \".kox[0]\"  1;\n\tsetAttr \".koy[0]\"  0;\ncreateNode animCurveTA -n \"character1_joint3_rotateX\";\n\trename -uid \"B99CBA58-45D7-1B5A-32DB-738181B003C6\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\n\tsetAttr \".kix[0]\"  1;\n\tsetAttr \".kiy[0]\"  0;\n\tsetAttr \".kox[0]\"  1;\n\tsetAttr \".koy[0]\"  0;\ncreateNode animCurveTL -n \"character1_joint3_translateZ\";\n\trename -uid \"1FEB0174-4D7F-8183-6A59-A88F87DD1999\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 0;\n\tsetAttr \".kix[0]\"  1;\n\tsetAttr \".kiy[0]\"  0;\n\tsetAttr \".kox[0]\"  1;\n\tsetAttr \".koy[0]\"  0;\ncreateNode animCurveTL -n \"character1_joint3_translateY\";\n\trename -uid \"390363BC-4B5A-0A6A-3635-93830E1F8BEB\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 2.2204460492503131e-16;\n\tsetAttr \".kix[0]\"  1;\n\tsetAttr \".kiy[0]\"  0;\n\tsetAttr \".kox[0]\"  1;\n\tsetAttr \".koy[0]\"  0;\ncreateNode animCurveTL -n \"character1_joint3_translateX\";\n\trename -uid \"89424DEF-4C59-5A99-1784-9C86D56EADFC\";\n\tsetAttr \".tan\" 1;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  1 1;\n\tsetAttr \".kix[0]\"  1;\n\tsetAttr \".kiy[0]\"  0;\n\tsetAttr \".kox[0]\"  1;\n\tsetAttr \".koy[0]\"  0;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"CBA47B97-41FE-B5AB-EB71-3CB0C6AF5C1E\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 99;\n\tsetAttr \".unw\" 99;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 5 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nselect -ne :characterPartition;\nconnectAttr \"character1.av[7]\" \"joint1.rz\";\nconnectAttr \"character1.av[8]\" \"joint1.ry\";\nconnectAttr \"character1.av[9]\" \"joint1.rx\";\nconnectAttr \"character1.lv[7]\" \"joint1.tz\";\nconnectAttr \"character1.lv[8]\" \"joint1.ty\";\nconnectAttr \"character1.lv[9]\" \"joint1.tx\";\nconnectAttr \"joint1.s\" \"joint2.is\";\nconnectAttr \"character1.av[4]\" \"joint2.rz\";\nconnectAttr \"character1.av[5]\" \"joint2.ry\";\nconnectAttr \"character1.av[6]\" \"joint2.rx\";\nconnectAttr \"character1.lv[4]\" \"joint2.tz\";\nconnectAttr \"character1.lv[5]\" \"joint2.ty\";\nconnectAttr \"character1.lv[6]\" \"joint2.tx\";\nconnectAttr \"joint2.s\" \"joint3.is\";\nconnectAttr \"character1.av[1]\" \"joint3.rz\";\nconnectAttr \"character1.av[2]\" \"joint3.ry\";\nconnectAttr \"character1.av[3]\" \"joint3.rx\";\nconnectAttr \"character1.lv[1]\" \"joint3.tz\";\nconnectAttr \"character1.lv[2]\" \"joint3.ty\";\nconnectAttr \"character1.lv[3]\" \"joint3.tx\";\nconnectAttr \"polyColorPerVertex3.out\" \"pCubeShape1.i\";\nconnectAttr \"polyColorPerVertex2.out\" \"pPlaneShape1.i\";\nconnectAttr \"polyColorPerVertex1.out\" \"pPlaneShape2.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"polyPlane2.out\" \"polyColorPerVertex1.ip\";\nconnectAttr \"polyPlane1.out\" \"polyColorPerVertex2.ip\";\nconnectAttr \"polyCube1.out\" \"polyColorPerVertex3.ip\";\nconnectAttr \"character1_joint3_rotateZ.o\" \"character1.av[1]\";\nconnectAttr \"character1_joint3_rotateY.o\" \"character1.av[2]\";\nconnectAttr \"character1_joint3_rotateX.o\" \"character1.av[3]\";\nconnectAttr \"character1_joint2_rotateZ.o\" \"character1.av[4]\";\nconnectAttr \"character1_joint2_rotateY.o\" \"character1.av[5]\";\nconnectAttr \"character1_joint2_rotateX.o\" \"character1.av[6]\";\nconnectAttr \"character1_joint1_rotateZ.o\" \"character1.av[7]\";\nconnectAttr \"character1_joint1_rotateY.o\" \"character1.av[8]\";\nconnectAttr \"character1_joint1_rotateX.o\" \"character1.av[9]\";\nconnectAttr \"character1_joint3_translateZ.o\" \"character1.lv[1]\";\nconnectAttr \"character1_joint3_translateY.o\" \"character1.lv[2]\";\nconnectAttr \"character1_joint3_translateX.o\" \"character1.lv[3]\";\nconnectAttr \"character1_joint2_translateZ.o\" \"character1.lv[4]\";\nconnectAttr \"character1_joint2_translateY.o\" \"character1.lv[5]\";\nconnectAttr \"character1_joint2_translateX.o\" \"character1.lv[6]\";\nconnectAttr \"character1_joint1_translateZ.o\" \"character1.lv[7]\";\nconnectAttr \"character1_joint1_translateY.o\" \"character1.lv[8]\";\nconnectAttr \"character1_joint1_translateX.o\" \"character1.lv[9]\";\nconnectAttr \"joint3.rz\" \"character1.dnsm[0]\";\nconnectAttr \"joint3.ry\" \"character1.dnsm[1]\";\nconnectAttr \"joint3.rx\" \"character1.dnsm[2]\";\nconnectAttr \"joint3.tz\" \"character1.dnsm[3]\";\nconnectAttr \"joint3.ty\" \"character1.dnsm[4]\";\nconnectAttr \"joint3.tx\" \"character1.dnsm[5]\";\nconnectAttr \"joint2.rz\" \"character1.dnsm[6]\";\nconnectAttr \"joint2.ry\" \"character1.dnsm[7]\";\nconnectAttr \"joint2.rx\" \"character1.dnsm[8]\";\nconnectAttr \"joint2.tz\" \"character1.dnsm[9]\";\nconnectAttr \"joint2.ty\" \"character1.dnsm[10]\";\nconnectAttr \"joint2.tx\" \"character1.dnsm[11]\";\nconnectAttr \"joint1.rz\" \"character1.dnsm[12]\";\nconnectAttr \"joint1.ry\" \"character1.dnsm[13]\";\nconnectAttr \"joint1.rx\" \"character1.dnsm[14]\";\nconnectAttr \"joint1.tz\" \"character1.dnsm[15]\";\nconnectAttr \"joint1.ty\" \"character1.dnsm[16]\";\nconnectAttr \"joint1.tx\" \"character1.dnsm[17]\";\nconnectAttr \"trackInfoManager1.msg\" \":sequenceManager1.tim\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pCubeShape2.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pCubeShape3.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pPlaneShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pPlaneShape2.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"character1.pa\" \":characterPartition.st\" -na;\n// End of SegmentScaleCompensationTest1.ma\n"
  },
  {
    "path": "maya/scenes/skin/SegmentScaleCompensationTestAnim1.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: SegmentScaleCompensationTestAnim1.ma\n//Last modified: Sun, Feb 03, 2019 12:06:21 PM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"DCCDAEF3-49A9-D0AB-FEEC-6F9F80A94A20\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 5.5494777728990856 5.0741276235937951 -16.878832536400182 ;\n\tsetAttr \".r\" -type \"double3\" -15.938352729530008 -198.19999999991353 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"41BDACBE-44DD-9332-3688-7C8094F8C4D4\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 18.478053536134851;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"68D6F5AC-49A3-A9BA-10E0-49A0D130BE5C\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"395F50F0-4005-332B-2C18-D7B9583A6140\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"0ADD7666-4A79-6F84-187E-3D935C079550\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"799C929E-4F51-65F5-1616-0194B4847CD9\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 15.82764011699572;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"25617777-4638-A435-E562-C4969DA4DE44\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"2D1B1B5E-42EE-C91B-94E7-DE980C6867B0\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"root\";\n\trename -uid \"7EA0EE40-4A6D-2357-8F1E-94849FFAE1C5\";\n\tsetAttr \".s\" -type \"double3\" 0.5 0.5 0.5 ;\ncreateNode locator -n \"rootShape\" -p \"root\";\n\trename -uid \"7A5BF724-496D-0261-ED54-8B915D0A8B67\";\n\tsetAttr -k off \".v\";\ncreateNode joint -n \"joint1\" -p \"root\";\n\trename -uid \"DE5CC9D5-442C-49D1-76D1-209BD789983E\";\n\tsetAttr \".s\" -type \"double3\" 2 1 1 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 89.999999999999986 ;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint2\" -p \"joint1\";\n\trename -uid \"A2B6C199-4DBD-D574-0A61-28A1E1BF7CE4\";\n\tsetAttr \".s\" -type \"double3\" 3 1 1 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint3\" -p \"joint2\";\n\trename -uid \"EA52E24A-418F-8DFE-E1EE-1AB1D897CD39\";\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 -89.999999999999986 ;\n\tsetAttr \".radi\" 0.5;\ncreateNode transform -n \"pCube3\" -p \"joint3\";\n\trename -uid \"31BB0891-48F4-B3C0-0DCB-699CF015F21A\";\n\tsetAttr \".t\" -type \"double3\" -4.4188809427174483e-16 0.5 0 ;\n\tsetAttr \".s\" -type \"double3\" 1 4 1 ;\n\tsetAttr \".rp\" -type \"double3\" 4.4188809427174483e-16 -0.5 0 ;\n\tsetAttr \".sp\" -type \"double3\" 4.4188809427174483e-16 -0.5 0 ;\ncreateNode mesh -n \"pCubeShape3\" -p \"pCube3\";\n\trename -uid \"0CB83BE8-4295-D734-C05B-6B87327FCEF2\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcol\" yes;\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".ccls\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clst[0].clsn\" -type \"string\" \"colorSet1\";\n\tsetAttr -s 24 \".clst[0].clsp[0:23]\"  0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1\n\t\t 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0\n\t\t 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1;\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tmc 0 4 0 1 2 3\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tmc 0 4 4 5 6 7\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tmc 0 4 8 9 10 11\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tmc 0 4 12 13 14 15\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tmc 0 4 16 17 18 19\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13\n\t\tmc 0 4 20 21 22 23;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pCube2\" -p \"joint2\";\n\trename -uid \"FE61E7B2-4F33-EA7A-DF06-A5BBBAE4C6AF\";\n\tsetAttr \".t\" -type \"double3\" 0.5 5.5291039673426048e-16 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 0 -89.999999999999986 ;\n\tsetAttr \".rp\" -type \"double3\" 4.4188809427174483e-16 -0.5 0 ;\n\tsetAttr \".rpt\" -type \"double3\" -0.50000000000000044 0.49999999999999944 0 ;\n\tsetAttr \".sp\" -type \"double3\" 4.4188809427174483e-16 -0.5 0 ;\ncreateNode mesh -n \"pCubeShape2\" -p \"pCube2\";\n\trename -uid \"37BDAFAB-478E-A087-7216-37980D8D6662\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 14 \".uvst[0].uvsp[0:13]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0\n\t\t 0.875 0.25 0.125 0 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcol\" yes;\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".ccls\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clst[0].clsn\" -type \"string\" \"colorSet1\";\n\tsetAttr -s 24 \".clst[0].clsp[0:23]\"  1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1\n\t\t 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1\n\t\t 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1;\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 8 \".vt[0:7]\"  -0.5 -0.5 0.5 0.5 -0.5 0.5 -0.5 0.5 0.5 0.5 0.5 0.5\n\t\t -0.5 0.5 -0.5 0.5 0.5 -0.5 -0.5 -0.5 -0.5 0.5 -0.5 -0.5;\n\tsetAttr -s 12 \".ed[0:11]\"  0 1 0 2 3 0 4 5 0 6 7 0 0 2 0 1 3 0 2 4 0\n\t\t 3 5 0 4 6 0 5 7 0 6 0 0 7 1 0;\n\tsetAttr -s 6 -ch 24 \".fc[0:5]\" -type \"polyFaces\" \n\t\tf 4 0 5 -2 -5\n\t\tmu 0 4 0 1 3 2\n\t\tmc 0 4 0 1 2 3\n\t\tf 4 1 7 -3 -7\n\t\tmu 0 4 2 3 5 4\n\t\tmc 0 4 4 5 6 7\n\t\tf 4 2 9 -4 -9\n\t\tmu 0 4 4 5 7 6\n\t\tmc 0 4 8 9 10 11\n\t\tf 4 3 11 -1 -11\n\t\tmu 0 4 6 7 9 8\n\t\tmc 0 4 12 13 14 15\n\t\tf 4 -12 -10 -8 -6\n\t\tmu 0 4 1 10 11 3\n\t\tmc 0 4 16 17 18 19\n\t\tf 4 10 4 6 8\n\t\tmu 0 4 12 0 2 13\n\t\tmc 0 4 20 21 22 23;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pCube1\" -p \"joint1\";\n\trename -uid \"41C6C38E-40A1-8B07-2A50-6483ABB96F94\";\n\tsetAttr \".t\" -type \"double3\" 0.5 1.1102230246251565e-16 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 0 -89.999999999999986 ;\n\tsetAttr \".rp\" -type \"double3\" 4.4188809427174483e-16 -0.5 0 ;\n\tsetAttr \".rpt\" -type \"double3\" -0.50000000000000044 0.49999999999999989 0 ;\n\tsetAttr \".sp\" -type \"double3\" 4.4188809427174483e-16 -0.5 0 ;\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"184A9994-4445-594B-56C2-0E89BAC167FE\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcol\" yes;\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".ccls\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clst[0].clsn\" -type \"string\" \"colorSet1\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pPlane1\";\n\trename -uid \"F2392BCD-445A-4C59-79FB-E898873AB134\";\ncreateNode mesh -n \"pPlaneShape1\" -p \"pPlane1\";\n\trename -uid \"1FE6DA18-4D55-0E0F-7725-BFB71A1C8D0F\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.25 0.25 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcol\" yes;\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".ccls\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clst[0].clsn\" -type \"string\" \"colorSet1\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"pPlane2\";\n\trename -uid \"D756B83A-4C5E-14A7-C62C-09A8848A3028\";\n\tsetAttr \".r\" -type \"double3\" -90 0 0 ;\ncreateNode mesh -n \"pPlaneShape2\" -p \"pPlane2\";\n\trename -uid \"5B56611C-4CF2-3BE2-B942-998C0156D4CF\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".pv\" -type \"double2\" 0.5 0.3125 ;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcol\" yes;\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".ccls\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clst[0].clsn\" -type \"string\" \"colorSet1\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"5F5DEF97-4854-A0E3-AF08-E6B54F643FB2\";\n\tsetAttr \".t\" -type \"double3\" 7.4683256911717741 12.373762376535069 16.015876129337201 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"CD6316A0-48DF-0643-E37C-B9BF5DA3D14D\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 21.572996365146967;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"BCFA4E80-4855-B465-37E7-F98245424107\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"8ED89F31-47D2-C476-8955-9C94F590FD74\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"617AA1DE-4E71-276D-A968-9FBEA34A3725\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"7C9C905E-4D81-446D-079E-839C9C49AFD2\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"C490A752-4C03-0966-A144-658EB37F4FE0\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"C0E4E883-4699-11BD-6B79-D5A6547A424B\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"9A13CC9D-41D6-6F29-7A6D-159AE92DAA65\";\n\tsetAttr \".g\" yes;\ncreateNode trackInfoManager -n \"trackInfoManager1\";\n\trename -uid \"24711E36-4923-D4EC-0C7D-F380BC03E642\";\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"69E6E4D3-49D7-5C13-415C-D0AE64EA008B\";\n\tsetAttr \".cuv\" 4;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"F58F6D31-4355-ACA5-388F-6DBAA3B55E50\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 1\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"wireframe\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 1\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n\"\n\t\t+ \"            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n\"\n\t\t+ \"            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n\"\n\t\t+ \"            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n\"\n\t\t+ \"            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n\"\n\t\t+ \"            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n\"\n\t\t+ \"            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n\"\n\t\t+ \"            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 0\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"D169580A-46BC-DE5B-55AB-C8A2853C5EE3\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode polyPlane -n \"polyPlane1\";\n\trename -uid \"D7157799-40E6-AB5F-F4CB-DABE88F91BBA\";\n\tsetAttr \".w\" 10;\n\tsetAttr \".h\" 10;\n\tsetAttr \".sw\" 2;\n\tsetAttr \".sh\" 2;\n\tsetAttr \".cuv\" 2;\ncreateNode polyPlane -n \"polyPlane2\";\n\trename -uid \"60C78A91-4233-EEA0-C72C-E6A81D987531\";\n\tsetAttr \".w\" 7.6;\n\tsetAttr \".h\" 2;\n\tsetAttr \".sw\" 2;\n\tsetAttr \".sh\" 2;\n\tsetAttr \".cuv\" 2;\ncreateNode polyColorPerVertex -n \"polyColorPerVertex1\";\n\trename -uid \"DE9027DE-464F-FAB3-2639-E682A4DCC569\";\n\tsetAttr \".uopa\" yes;\n\tsetAttr -s 9 \".vclr\";\n\tsetAttr \".vclr[0].vxal\" 1;\n\tsetAttr \".vclr[0].vfcl[0].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[0].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[1].vxal\" 1;\n\tsetAttr -s 2 \".vclr[1].vfcl\";\n\tsetAttr \".vclr[1].vfcl[0].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[1].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[1].vfcl[1].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[1].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[2].vxal\" 1;\n\tsetAttr \".vclr[2].vfcl[1].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[2].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[3].vxal\" 1;\n\tsetAttr -s 2 \".vclr[3].vfcl\";\n\tsetAttr \".vclr[3].vfcl[0].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[3].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[3].vfcl[2].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[3].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[4].vxal\" 1;\n\tsetAttr -s 4 \".vclr[4].vfcl\";\n\tsetAttr \".vclr[4].vfcl[0].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[4].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[4].vfcl[1].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[4].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[4].vfcl[2].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[4].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[4].vfcl[3].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[4].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[5].vxal\" 1;\n\tsetAttr -s 2 \".vclr[5].vfcl\";\n\tsetAttr \".vclr[5].vfcl[1].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[5].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[5].vfcl[3].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[5].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[6].vxal\" 1;\n\tsetAttr \".vclr[6].vfcl[2].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[6].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[7].vxal\" 1;\n\tsetAttr -s 2 \".vclr[7].vfcl\";\n\tsetAttr \".vclr[7].vfcl[2].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[7].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[7].vfcl[3].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[7].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[8].vxal\" 1;\n\tsetAttr \".vclr[8].vfcl[3].frgb\" -type \"float3\" 0.123 0.3281 0.50400001 ;\n\tsetAttr \".vclr[8].vfcl[3].vfal\" 1;\n\tsetAttr \".cn\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clam\" no;\ncreateNode polyColorPerVertex -n \"polyColorPerVertex2\";\n\trename -uid \"09133468-4F96-F790-0454-F0A78C6EE62E\";\n\tsetAttr \".uopa\" yes;\n\tsetAttr -s 9 \".vclr\";\n\tsetAttr \".vclr[0].vxal\" 1;\n\tsetAttr \".vclr[0].vfcl[0].frgb\" -type \"float3\" 0.493 0.493 0.085299999 ;\n\tsetAttr \".vclr[0].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[1].vxal\" 1;\n\tsetAttr -s 2 \".vclr[1].vfcl\";\n\tsetAttr \".vclr[1].vfcl[0].frgb\" -type \"float3\" 0.493 0.493 0.085299999 ;\n\tsetAttr \".vclr[1].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[1].vfcl[1].frgb\" -type \"float3\" 0.21799999 0.21799999 1 ;\n\tsetAttr \".vclr[1].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[2].vxal\" 1;\n\tsetAttr \".vclr[2].vfcl[1].frgb\" -type \"float3\" 0.21799999 0.21799999 1 ;\n\tsetAttr \".vclr[2].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[3].vxal\" 1;\n\tsetAttr -s 2 \".vclr[3].vfcl\";\n\tsetAttr \".vclr[3].vfcl[0].frgb\" -type \"float3\" 0.493 0.493 0.085299999 ;\n\tsetAttr \".vclr[3].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[3].vfcl[2].frgb\" -type \"float3\" 0.87599999 0.26980001 0.26980001 ;\n\tsetAttr \".vclr[3].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[4].vxal\" 1;\n\tsetAttr -s 4 \".vclr[4].vfcl\";\n\tsetAttr \".vclr[4].vfcl[0].frgb\" -type \"float3\" 0.493 0.493 0.085299999 ;\n\tsetAttr \".vclr[4].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[4].vfcl[1].frgb\" -type \"float3\" 0.21799999 0.21799999 1 ;\n\tsetAttr \".vclr[4].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[4].vfcl[2].frgb\" -type \"float3\" 0.87599999 0.26980001 0.26980001 ;\n\tsetAttr \".vclr[4].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[4].vfcl[3].frgb\" -type \"float3\" 0.064499997 0.50400001 0.064499997 ;\n\tsetAttr \".vclr[4].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[5].vxal\" 1;\n\tsetAttr -s 2 \".vclr[5].vfcl\";\n\tsetAttr \".vclr[5].vfcl[1].frgb\" -type \"float3\" 0.21799999 0.21799999 1 ;\n\tsetAttr \".vclr[5].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[5].vfcl[3].frgb\" -type \"float3\" 0.064499997 0.50400001 0.064499997 ;\n\tsetAttr \".vclr[5].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[6].vxal\" 1;\n\tsetAttr \".vclr[6].vfcl[2].frgb\" -type \"float3\" 0.87599999 0.26980001 0.26980001 ;\n\tsetAttr \".vclr[6].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[7].vxal\" 1;\n\tsetAttr -s 2 \".vclr[7].vfcl\";\n\tsetAttr \".vclr[7].vfcl[2].frgb\" -type \"float3\" 0.87599999 0.26980001 0.26980001 ;\n\tsetAttr \".vclr[7].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[7].vfcl[3].frgb\" -type \"float3\" 0.064499997 0.50400001 0.064499997 ;\n\tsetAttr \".vclr[7].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[8].vxal\" 1;\n\tsetAttr \".vclr[8].vfcl[3].frgb\" -type \"float3\" 0.064499997 0.50400001 0.064499997 ;\n\tsetAttr \".vclr[8].vfcl[3].vfal\" 1;\n\tsetAttr \".cn\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clam\" no;\ncreateNode polyColorPerVertex -n \"polyColorPerVertex3\";\n\trename -uid \"5B9F78CB-46F2-301B-EF20-64930F385FEF\";\n\tsetAttr \".uopa\" yes;\n\tsetAttr -s 8 \".vclr\";\n\tsetAttr \".vclr[0].vxal\" 1;\n\tsetAttr -s 3 \".vclr[0].vfcl\";\n\tsetAttr \".vclr[0].vfcl[0].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[0].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[0].vfcl[3].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[0].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[0].vfcl[5].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[0].vfcl[5].vfal\" 1;\n\tsetAttr \".vclr[1].vxal\" 1;\n\tsetAttr -s 3 \".vclr[1].vfcl\";\n\tsetAttr \".vclr[1].vfcl[0].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[1].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[1].vfcl[3].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[1].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[1].vfcl[4].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[1].vfcl[4].vfal\" 1;\n\tsetAttr \".vclr[2].vxal\" 1;\n\tsetAttr -s 3 \".vclr[2].vfcl\";\n\tsetAttr \".vclr[2].vfcl[0].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[2].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[2].vfcl[1].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[2].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[2].vfcl[5].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[2].vfcl[5].vfal\" 1;\n\tsetAttr \".vclr[3].vxal\" 1;\n\tsetAttr -s 3 \".vclr[3].vfcl\";\n\tsetAttr \".vclr[3].vfcl[0].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[3].vfcl[0].vfal\" 1;\n\tsetAttr \".vclr[3].vfcl[1].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[3].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[3].vfcl[4].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[3].vfcl[4].vfal\" 1;\n\tsetAttr \".vclr[4].vxal\" 1;\n\tsetAttr -s 3 \".vclr[4].vfcl\";\n\tsetAttr \".vclr[4].vfcl[1].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[4].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[4].vfcl[2].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[4].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[4].vfcl[5].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[4].vfcl[5].vfal\" 1;\n\tsetAttr \".vclr[5].vxal\" 1;\n\tsetAttr -s 3 \".vclr[5].vfcl\";\n\tsetAttr \".vclr[5].vfcl[1].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[5].vfcl[1].vfal\" 1;\n\tsetAttr \".vclr[5].vfcl[2].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[5].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[5].vfcl[4].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[5].vfcl[4].vfal\" 1;\n\tsetAttr \".vclr[6].vxal\" 1;\n\tsetAttr -s 3 \".vclr[6].vfcl\";\n\tsetAttr \".vclr[6].vfcl[2].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[6].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[6].vfcl[3].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[6].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[6].vfcl[5].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[6].vfcl[5].vfal\" 1;\n\tsetAttr \".vclr[7].vxal\" 1;\n\tsetAttr -s 3 \".vclr[7].vfcl\";\n\tsetAttr \".vclr[7].vfcl[2].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[7].vfcl[2].vfal\" 1;\n\tsetAttr \".vclr[7].vfcl[3].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[7].vfcl[3].vfal\" 1;\n\tsetAttr \".vclr[7].vfcl[4].frgb\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".vclr[7].vfcl[4].vfal\" 1;\n\tsetAttr \".cn\" -type \"string\" \"colorSet1\";\n\tsetAttr \".clam\" no;\ncreateNode character -n \"character1\";\n\trename -uid \"B906B5A4-4210-AF4E-6A0A-50BBE4B5AA1C\";\n\taddAttr -ci true -h true -sn \"aal\" -ln \"attributeAliasList\" -dt \"attributeAlias\";\n\tsetAttr -s 18 \".dnsm\";\n\tsetAttr -s 9 \".lv\";\n\tsetAttr -s 9 \".lv\";\n\tsetAttr -s 9 \".av\";\n\tsetAttr -s 9 \".av\";\n\tsetAttr \".am\" -type \"characterMapping\" 18 \"joint3.rotateZ\" 2 1 \"joint3.rotateY\" \n\t\t2 2 \"joint3.rotateX\" 2 3 \"joint3.translateZ\" 1 1 \"joint3.translateY\" \n\t\t1 2 \"joint3.translateX\" 1 3 \"joint2.rotateZ\" 2 4 \"joint2.rotateY\" \n\t\t2 5 \"joint2.rotateX\" 2 6 \"joint2.translateZ\" 1 4 \"joint2.translateY\" \n\t\t1 5 \"joint2.translateX\" 1 6 \"joint1.rotateZ\" 2 7 \"joint1.rotateY\" \n\t\t2 8 \"joint1.rotateX\" 2 9 \"joint1.translateZ\" 1 7 \"joint1.translateY\" \n\t\t1 8 \"joint1.translateX\" 1 9  ;\n\tsetAttr \".aal\" -type \"attributeAlias\" {\"joint3_rotateZ\",\"angularValues[1]\",\"joint3_rotateY\"\n\t\t,\"angularValues[2]\",\"joint3_rotateX\",\"angularValues[3]\",\"joint2_rotateZ\",\"angularValues[4]\"\n\t\t,\"joint2_rotateY\",\"angularValues[5]\",\"joint2_rotateX\",\"angularValues[6]\",\"joint1_rotateZ\"\n\t\t,\"angularValues[7]\",\"joint1_rotateY\",\"angularValues[8]\",\"joint1_rotateX\",\"angularValues[9]\"\n\t\t,\"joint3_translateZ\",\"linearValues[1]\",\"joint3_translateY\",\"linearValues[2]\",\"joint3_translateX\"\n\t\t,\"linearValues[3]\",\"joint2_translateZ\",\"linearValues[4]\",\"joint2_translateY\",\"linearValues[5]\"\n\t\t,\"joint2_translateX\",\"linearValues[6]\",\"joint1_translateZ\",\"linearValues[7]\",\"joint1_translateY\"\n\t\t,\"linearValues[8]\",\"joint1_translateX\",\"linearValues[9]\"} ;\ncreateNode animCurveTA -n \"character1_joint3_rotateZ\";\n\trename -uid \"43509EC1-44B9-24BA-D362-BB92DFC25C3B\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 29.999999999999996 60 0 90 -29.999999999999996\n\t\t 120 0;\n\tsetAttr -s 5 \".kit[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kot[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kix[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".kiy[2:4]\"  0 0 0;\n\tsetAttr -s 5 \".kox[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".koy[2:4]\"  0 0 0;\ncreateNode animCurveTA -n \"character1_joint3_rotateY\";\n\trename -uid \"336C64A0-4935-2619-9E7B-9FB2825B1A75\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 0 60 0 90 0 120 0;\n\tsetAttr -s 5 \".kit[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kot[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kix[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".kiy[2:4]\"  0 0 0;\n\tsetAttr -s 5 \".kox[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".koy[2:4]\"  0 0 0;\ncreateNode animCurveTA -n \"character1_joint3_rotateX\";\n\trename -uid \"0B06E369-4AC8-A3D8-945C-10942F6AA897\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 0 60 0 90 0 120 0;\n\tsetAttr -s 5 \".kit[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kot[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kix[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".kiy[2:4]\"  0 0 0;\n\tsetAttr -s 5 \".kox[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".koy[2:4]\"  0 0 0;\ncreateNode animCurveTL -n \"character1_joint3_translateZ\";\n\trename -uid \"C0AE7765-4C7B-1FA5-139F-10B89073A925\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 0 60 0 90 0 120 0;\n\tsetAttr -s 5 \".kit[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kot[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kix[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".kiy[2:4]\"  0 0 0;\n\tsetAttr -s 5 \".kox[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".koy[2:4]\"  0 0 0;\ncreateNode animCurveTL -n \"character1_joint3_translateY\";\n\trename -uid \"0F3C6BF4-446F-B78C-0A1C-75A74EC0B17A\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 2.2204460492503131e-16 30 2.2204460492503131e-16\n\t\t 60 2.2204460492503131e-16 90 2.2204460492503131e-16 120 2.2204460492503131e-16;\n\tsetAttr -s 5 \".kit[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kot[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kix[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".kiy[2:4]\"  0 0 0;\n\tsetAttr -s 5 \".kox[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".koy[2:4]\"  0 0 0;\ncreateNode animCurveTL -n \"character1_joint3_translateX\";\n\trename -uid \"CD573D80-4C23-A08C-0B83-57AFB08E7C83\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 1 30 1 60 1 90 1 120 1;\n\tsetAttr -s 5 \".kit[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kot[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kix[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".kiy[2:4]\"  0 0 0;\n\tsetAttr -s 5 \".kox[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".koy[2:4]\"  0 0 0;\ncreateNode animCurveTA -n \"character1_joint2_rotateZ\";\n\trename -uid \"F5F87A40-4509-BDE4-5E3F-5494D2FDBF41\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 29.999999999999996 60 0 90 -29.999999999999996\n\t\t 120 0;\n\tsetAttr -s 5 \".kit[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kot[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kix[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".kiy[2:4]\"  0 0 0;\n\tsetAttr -s 5 \".kox[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".koy[2:4]\"  0 0 0;\ncreateNode animCurveTA -n \"character1_joint2_rotateY\";\n\trename -uid \"EB1FF68C-494F-1DB6-13CB-1DA269543AC4\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 0 60 0 90 0 120 0;\n\tsetAttr -s 5 \".kit[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kot[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kix[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".kiy[2:4]\"  0 0 0;\n\tsetAttr -s 5 \".kox[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".koy[2:4]\"  0 0 0;\ncreateNode animCurveTA -n \"character1_joint2_rotateX\";\n\trename -uid \"12C219D3-426C-CA68-C91F-FBA83EB51461\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 0 60 0 90 0 120 0;\n\tsetAttr -s 5 \".kit[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kot[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kix[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".kiy[2:4]\"  0 0 0;\n\tsetAttr -s 5 \".kox[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".koy[2:4]\"  0 0 0;\ncreateNode animCurveTL -n \"character1_joint2_translateZ\";\n\trename -uid \"C45F9A1D-4DF3-1B7A-BAB7-CFB01295ACD0\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 0 60 0 90 0 120 0;\n\tsetAttr -s 5 \".kit[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kot[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kix[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".kiy[2:4]\"  0 0 0;\n\tsetAttr -s 5 \".kox[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".koy[2:4]\"  0 0 0;\ncreateNode animCurveTL -n \"character1_joint2_translateY\";\n\trename -uid \"F68E6E7D-44E0-ECFD-5B50-688163CA035D\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 2.2204460492503131e-16 30 2.2204460492503131e-16\n\t\t 60 2.2204460492503131e-16 90 2.2204460492503131e-16 120 2.2204460492503131e-16;\n\tsetAttr -s 5 \".kit[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kot[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kix[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".kiy[2:4]\"  0 0 0;\n\tsetAttr -s 5 \".kox[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".koy[2:4]\"  0 0 0;\ncreateNode animCurveTL -n \"character1_joint2_translateX\";\n\trename -uid \"F051808E-4187-63C1-3E4C-AC879742A150\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 1 30 1 60 1 90 1 120 1;\n\tsetAttr -s 5 \".kit[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kot[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kix[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".kiy[2:4]\"  0 0 0;\n\tsetAttr -s 5 \".kox[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".koy[2:4]\"  0 0 0;\ncreateNode animCurveTA -n \"character1_joint1_rotateZ\";\n\trename -uid \"CABC4A7F-401E-BE8D-5D1A-968105F81E50\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 29.999999999999996 60 0 90 -29.999999999999996\n\t\t 120 0;\n\tsetAttr -s 5 \".kit[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kot[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kix[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".kiy[2:4]\"  0 0 0;\n\tsetAttr -s 5 \".kox[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".koy[2:4]\"  0 0 0;\ncreateNode animCurveTA -n \"character1_joint1_rotateY\";\n\trename -uid \"11BD0889-4834-9EAF-9CD0-9CB3C2A7C350\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 0 60 0 90 0 120 0;\n\tsetAttr -s 5 \".kit[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kot[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kix[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".kiy[2:4]\"  0 0 0;\n\tsetAttr -s 5 \".kox[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".koy[2:4]\"  0 0 0;\ncreateNode animCurveTA -n \"character1_joint1_rotateX\";\n\trename -uid \"DECC1386-4E35-C8BD-78F9-E09F2048F33F\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 0 60 0 90 0 120 0;\n\tsetAttr -s 5 \".kit[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kot[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kix[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".kiy[2:4]\"  0 0 0;\n\tsetAttr -s 5 \".kox[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".koy[2:4]\"  0 0 0;\ncreateNode animCurveTL -n \"character1_joint1_translateZ\";\n\trename -uid \"60FC2AF8-4C86-5F41-06C9-C280158E6BBA\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 0 60 0 90 0 120 0;\n\tsetAttr -s 5 \".kit[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kot[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kix[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".kiy[2:4]\"  0 0 0;\n\tsetAttr -s 5 \".kox[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".koy[2:4]\"  0 0 0;\ncreateNode animCurveTL -n \"character1_joint1_translateY\";\n\trename -uid \"98B34ECB-47AC-5061-126C-C7A439CA0C06\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 0 60 0 90 0 120 0;\n\tsetAttr -s 5 \".kit[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kot[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kix[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".kiy[2:4]\"  0 0 0;\n\tsetAttr -s 5 \".kox[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".koy[2:4]\"  0 0 0;\ncreateNode animCurveTL -n \"character1_joint1_translateX\";\n\trename -uid \"593817EF-4361-B61C-899E-8DB71A2396D7\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 5 \".ktv[0:4]\"  1 0 30 0 60 0 90 0 120 0;\n\tsetAttr -s 5 \".kit[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kot[2:4]\"  1 18 1;\n\tsetAttr -s 5 \".kix[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".kiy[2:4]\"  0 0 0;\n\tsetAttr -s 5 \".kox[2:4]\"  1 1 1;\n\tsetAttr -s 5 \".koy[2:4]\"  0 0 0;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"ABAEAE26-4F56-2EC3-17BB-4A888E789C20\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 111;\n\tsetAttr \".unw\" 111;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".etmr\" no;\n\tsetAttr \".tmr\" 4096;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 5 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nselect -ne :characterPartition;\nconnectAttr \"character1.av[7]\" \"joint1.rz\";\nconnectAttr \"character1.av[8]\" \"joint1.ry\";\nconnectAttr \"character1.av[9]\" \"joint1.rx\";\nconnectAttr \"character1.lv[7]\" \"joint1.tz\";\nconnectAttr \"character1.lv[8]\" \"joint1.ty\";\nconnectAttr \"character1.lv[9]\" \"joint1.tx\";\nconnectAttr \"joint1.s\" \"joint2.is\";\nconnectAttr \"character1.av[4]\" \"joint2.rz\";\nconnectAttr \"character1.av[5]\" \"joint2.ry\";\nconnectAttr \"character1.av[6]\" \"joint2.rx\";\nconnectAttr \"character1.lv[4]\" \"joint2.tz\";\nconnectAttr \"character1.lv[5]\" \"joint2.ty\";\nconnectAttr \"character1.lv[6]\" \"joint2.tx\";\nconnectAttr \"joint2.s\" \"joint3.is\";\nconnectAttr \"character1.av[1]\" \"joint3.rz\";\nconnectAttr \"character1.av[2]\" \"joint3.ry\";\nconnectAttr \"character1.av[3]\" \"joint3.rx\";\nconnectAttr \"character1.lv[1]\" \"joint3.tz\";\nconnectAttr \"character1.lv[2]\" \"joint3.ty\";\nconnectAttr \"character1.lv[3]\" \"joint3.tx\";\nconnectAttr \"polyColorPerVertex3.out\" \"pCubeShape1.i\";\nconnectAttr \"polyColorPerVertex2.out\" \"pPlaneShape1.i\";\nconnectAttr \"polyColorPerVertex1.out\" \"pPlaneShape2.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"polyPlane2.out\" \"polyColorPerVertex1.ip\";\nconnectAttr \"polyPlane1.out\" \"polyColorPerVertex2.ip\";\nconnectAttr \"polyCube1.out\" \"polyColorPerVertex3.ip\";\nconnectAttr \"character1_joint3_rotateZ.o\" \"character1.av[1]\";\nconnectAttr \"character1_joint3_rotateY.o\" \"character1.av[2]\";\nconnectAttr \"character1_joint3_rotateX.o\" \"character1.av[3]\";\nconnectAttr \"character1_joint2_rotateZ.o\" \"character1.av[4]\";\nconnectAttr \"character1_joint2_rotateY.o\" \"character1.av[5]\";\nconnectAttr \"character1_joint2_rotateX.o\" \"character1.av[6]\";\nconnectAttr \"character1_joint1_rotateZ.o\" \"character1.av[7]\";\nconnectAttr \"character1_joint1_rotateY.o\" \"character1.av[8]\";\nconnectAttr \"character1_joint1_rotateX.o\" \"character1.av[9]\";\nconnectAttr \"character1_joint3_translateZ.o\" \"character1.lv[1]\";\nconnectAttr \"character1_joint3_translateY.o\" \"character1.lv[2]\";\nconnectAttr \"character1_joint3_translateX.o\" \"character1.lv[3]\";\nconnectAttr \"character1_joint2_translateZ.o\" \"character1.lv[4]\";\nconnectAttr \"character1_joint2_translateY.o\" \"character1.lv[5]\";\nconnectAttr \"character1_joint2_translateX.o\" \"character1.lv[6]\";\nconnectAttr \"character1_joint1_translateZ.o\" \"character1.lv[7]\";\nconnectAttr \"character1_joint1_translateY.o\" \"character1.lv[8]\";\nconnectAttr \"character1_joint1_translateX.o\" \"character1.lv[9]\";\nconnectAttr \"joint3.rz\" \"character1.dnsm[0]\";\nconnectAttr \"joint3.ry\" \"character1.dnsm[1]\";\nconnectAttr \"joint3.rx\" \"character1.dnsm[2]\";\nconnectAttr \"joint3.tz\" \"character1.dnsm[3]\";\nconnectAttr \"joint3.ty\" \"character1.dnsm[4]\";\nconnectAttr \"joint3.tx\" \"character1.dnsm[5]\";\nconnectAttr \"joint2.rz\" \"character1.dnsm[6]\";\nconnectAttr \"joint2.ry\" \"character1.dnsm[7]\";\nconnectAttr \"joint2.rx\" \"character1.dnsm[8]\";\nconnectAttr \"joint2.tz\" \"character1.dnsm[9]\";\nconnectAttr \"joint2.ty\" \"character1.dnsm[10]\";\nconnectAttr \"joint2.tx\" \"character1.dnsm[11]\";\nconnectAttr \"joint1.rz\" \"character1.dnsm[12]\";\nconnectAttr \"joint1.ry\" \"character1.dnsm[13]\";\nconnectAttr \"joint1.rx\" \"character1.dnsm[14]\";\nconnectAttr \"joint1.tz\" \"character1.dnsm[15]\";\nconnectAttr \"joint1.ty\" \"character1.dnsm[16]\";\nconnectAttr \"joint1.tx\" \"character1.dnsm[17]\";\nconnectAttr \"trackInfoManager1.msg\" \":sequenceManager1.tim\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pCubeShape2.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pCubeShape3.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pPlaneShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"pPlaneShape2.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"character1.pa\" \":characterPartition.st\" -na;\n// End of SegmentScaleCompensationTestAnim1.ma\n"
  },
  {
    "path": "maya/scenes/skin/SingleJointCubeAnim.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: SingleJointCubeAnim.ma\n//Last modified: Sun, Feb 03, 2019 12:06:37 PM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"F3C5CE53-47D9-F98B-CAED-179A9682A05F\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -2.8275590540636424 3.3805515112011189 1.6456786675416484 ;\n\tsetAttr \".r\" -type \"double3\" -45.938352729712193 -59.799999999998953 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"04781A62-4DE3-519F-BD75-E78552DDA7AD\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 4.7044103776031401;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"B8AE84CE-4BB6-2F1C-48AD-F99269ACD7AC\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"26F7B0E3-4048-3227-6C55-F2AB5F8150EE\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"940E81C2-49CE-7FDA-3357-36BBB1A76872\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"96B57E0B-40EA-6134-1B01-A68AE769B135\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 6.1134104611373612;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"CAF8C6DA-472C-B6E3-95BF-89A09B142EC3\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"6BDD02CA-41E7-39B6-9E9A-DB9E368D185A\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"skinned_cube\";\n\trename -uid \"D0FE15FC-45C7-BE02-E3C2-289FE9C27635\";\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\ncreateNode mesh -n \"skinned_cubeShape\" -p \"skinned_cube\";\n\trename -uid \"3B98320F-46DB-F2CC-0BD9-0EAD34ACA4B1\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\ncreateNode mesh -n \"skinned_cubeShape1Orig\" -p \"skinned_cube\";\n\trename -uid \"40A71D2A-4C26-E87E-0513-1093044067B5\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode joint -n \"joint1\";\n\trename -uid \"01B99926-4FD1-A7BF-3D88-9E8E57A9AE0D\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".radi\" 0.55172413793103448;\ncreateNode transform -n \"attached_cube\" -p \"joint1\";\n\trename -uid \"71F24266-4310-2D6C-4C0A-8FAA7BBC50BD\";\ncreateNode mesh -n \"attached_cubeShape\" -p \"attached_cube\";\n\trename -uid \"1CBD861C-4600-FAF7-0890-E5840F58BF19\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"reference_cube\";\n\trename -uid \"9315DD90-46AA-AB67-4413-02A7CD3910AC\";\n\tsetAttr \".t\" -type \"double3\" 1 0 0 ;\ncreateNode mesh -n \"reference_cubeShape\" -p \"reference_cube\";\n\trename -uid \"079C35BB-4EB3-9DD8-F684-B9BEF6CB318C\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"0F4AFC3D-48B7-397C-B906-079255AD564F\";\n\tsetAttr \".t\" -type \"double3\" 2.6028754073979816 3.4841116569622197 4.5096308641343299 ;\n\tsetAttr \".r\" -type \"double3\" -35 25 0 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"BAC0C406-4C9E-9E3B-49CA-EDA863684A6B\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 6.0743633039168969;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.5 0 0 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"BA031AE9-45E2-4CB3-55ED-168BA6D7582C\";\n\tsetAttr -s 3 \".lnk\";\n\tsetAttr -s 3 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"9D2FDFF8-478B-7995-9D8A-CDADBD986F14\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"77FA11F7-44F8-76BC-C002-558173CC805F\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"57E829E2-4F3E-9F0E-E6AA-6F9B51C01619\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"1FEFAF39-4FED-C0DD-2DC1-7B9EE3D74522\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"087F6907-4DC6-B156-1BCA-F083C31AE091\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"CBF08827-4C49-AD1C-12D5-2CA846D5FCCF\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"6CA8CA14-4FC6-3AE4-71F8-46A63962B68C\";\n\tsetAttr \".cuv\" 4;\ncreateNode skinCluster -n \"skinCluster1\";\n\trename -uid \"F57E828B-425D-BE0D-6486-F9B1196028B0\";\n\tsetAttr -s 8 \".wl\";\n\tsetAttr \".wl[0:7].w\"\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1;\n\tsetAttr \".pm[0]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".dpf[0]\"  4;\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".mi\" 1;\n\tsetAttr \".ucm\" yes;\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"69C21DDE-45A0-2766-C6A6-419B57BAD2A8\";\ncreateNode objectSet -n \"skinCluster1Set\";\n\trename -uid \"90AFEC7B-49B3-5486-B909-1DB72A070261\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster1GroupId\";\n\trename -uid \"6AD62A68-4A74-A53C-28E7-21954C2178B4\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster1GroupParts\";\n\trename -uid \"980DC6AA-4335-A049-D145-70A8245548E6\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"741C32E7-414E-95F0-8AC6-1FA8AF6B4A36\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"4444F2D1-424C-FD37-D1DB-6DA92D0B5937\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"FB4B47FD-4DA6-7DE5-4DB9-2CA0258BE766\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode dagPose -n \"bindPose1\";\n\trename -uid \"0DAA893E-4659-1544-8EFE-CE84B0B01AAC\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".bp\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"A6AF2E49-434A-67C2-399A-97ACAFC7D07D\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n\"\n\t\t+ \"            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\"\n\t\t+ \"\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 0\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 1\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 1\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 1\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n\"\n\t\t+ \"            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n\"\n\t\t+ \"            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n\"\n\t\t+ \"            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n\"\n\t\t+ \"            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n\"\n\t\t+ \"        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n\"\n\t\t+ \"            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n\"\n\t\t+ \"            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n\"\n\t\t+ \"            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"2BC912CD-4D5B-7564-EC84-6CAF842362A5\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 100 -ast 1 -aet 100 \";\n\tsetAttr \".st\" 6;\ncreateNode polyCube -n \"polyCube2\";\n\trename -uid \"42106553-4657-4082-2F00-3F96135DB009\";\n\tsetAttr \".cuv\" 4;\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"B197126C-4B09-6214-58DC-A380766503B2\";\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\n\tsetAttr \".it\" -type \"float3\" 0.45180723 0.45180723 0.45180723 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"21672FAE-4917-7948-AB96-AD96BB8C8A7D\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"8725FC6A-4B57-F326-5C5C-FA8C58F88321\";\ncreateNode animCurveTL -n \"joint1_translateX\";\n\trename -uid \"63BC0FD1-4341-E02D-48EC-74976A7E51F2\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"joint1_translateZ\";\n\trename -uid \"C56D6B74-4131-2459-F377-27808CD39915\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 1;\ncreateNode animCurveTL -n \"joint1_translateY\";\n\trename -uid \"8A1C7675-4122-CC3A-78DD-A4902EE5F354\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode polyCube -n \"polyCube3\";\n\trename -uid \"D05CC3BC-41C5-EDFA-41BB-CD821DE66333\";\n\tsetAttr \".w\" 0.5;\n\tsetAttr \".h\" 0.5;\n\tsetAttr \".d\" 0.5;\n\tsetAttr \".cuv\" 4;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"7F24E4C2-490B-FDE4-9B6E-08A34AE140AC\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 77;\n\tsetAttr \".unw\" 77;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 3 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 5 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :lambert1;\n\tsetAttr \".c\" -type \"float3\" 0 1 0 ;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinned_cubeShape.iog.og[0].gid\";\nconnectAttr \"skinCluster1Set.mwc\" \"skinned_cubeShape.iog.og[0].gco\";\nconnectAttr \"groupId2.id\" \"skinned_cubeShape.iog.og[1].gid\";\nconnectAttr \"tweakSet1.mwc\" \"skinned_cubeShape.iog.og[1].gco\";\nconnectAttr \"skinCluster1.og[0]\" \"skinned_cubeShape.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"skinned_cubeShape.twl\";\nconnectAttr \"polyCube1.out\" \"skinned_cubeShape1Orig.i\";\nconnectAttr \"joint1_translateX.o\" \"joint1.tx\";\nconnectAttr \"joint1_translateZ.o\" \"joint1.tz\";\nconnectAttr \"joint1_translateY.o\" \"joint1.ty\";\nconnectAttr \"polyCube3.out\" \"attached_cubeShape.i\";\nconnectAttr \"polyCube2.out\" \"reference_cubeShape.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"skinCluster1GroupParts.og\" \"skinCluster1.ip[0].ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1.ip[0].gi\";\nconnectAttr \"bindPose1.msg\" \"skinCluster1.bp\";\nconnectAttr \"joint1.wm\" \"skinCluster1.ma[0]\";\nconnectAttr \"joint1.liw\" \"skinCluster1.lw[0]\";\nconnectAttr \"joint1.obcc\" \"skinCluster1.ifcl[0]\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"skinCluster1GroupId.msg\" \"skinCluster1Set.gn\" -na;\nconnectAttr \"skinned_cubeShape.iog.og[0]\" \"skinCluster1Set.dsm\" -na;\nconnectAttr \"skinCluster1.msg\" \"skinCluster1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"skinCluster1GroupParts.ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"skinned_cubeShape.iog.og[1]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"skinned_cubeShape1Orig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"joint1.msg\" \"bindPose1.m[0]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[0]\";\nconnectAttr \"joint1.bps\" \"bindPose1.wm[0]\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"skinned_cubeShape.iog\" \"lambert2SG.dsm\" -na;\nconnectAttr \"lambert2SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo1.m\";\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"reference_cubeShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"attached_cubeShape.iog\" \":initialShadingGroup.dsm\" -na;\n// End of SingleJointCubeAnim.ma\n"
  },
  {
    "path": "maya/scenes/skin/SingleJointCubeTop.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: SingleJointCubeTop.ma\n//Last modified: Fri, Feb 22, 2019 09:18:24 PM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"F3C5CE53-47D9-F98B-CAED-179A9682A05F\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -2.8275590540636424 3.3805515112011189 1.6456786675416484 ;\n\tsetAttr \".r\" -type \"double3\" -45.938352729712193 -59.799999999998953 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"04781A62-4DE3-519F-BD75-E78552DDA7AD\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 4.7044103776031401;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"B8AE84CE-4BB6-2F1C-48AD-F99269ACD7AC\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1003319112644 2.2206672264935001e-13 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"26F7B0E3-4048-3227-6C55-F2AB5F8150EE\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1003319112644;\n\tsetAttr \".ow\" 8.7705275126417597;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"940E81C2-49CE-7FDA-3357-36BBB1A76872\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"96B57E0B-40EA-6134-1B01-A68AE769B135\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 6.1134104611373612;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"CAF8C6DA-472C-B6E3-95BF-89A09B142EC3\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"6BDD02CA-41E7-39B6-9E9A-DB9E368D185A\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"skinned_cube\";\n\trename -uid \"D0FE15FC-45C7-BE02-E3C2-289FE9C27635\";\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\ncreateNode mesh -n \"skinned_cubeShape\" -p \"skinned_cube\";\n\trename -uid \"3B98320F-46DB-F2CC-0BD9-0EAD34ACA4B1\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\ncreateNode mesh -n \"skinned_cubeShape1Orig\" -p \"skinned_cube\";\n\trename -uid \"40A71D2A-4C26-E87E-0513-1093044067B5\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode joint -n \"joint1\";\n\trename -uid \"01B99926-4FD1-A7BF-3D88-9E8E57A9AE0D\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".t\" -type \"double3\" 0 0 0.46056276425134846 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".radi\" 0.55172413793103448;\ncreateNode transform -n \"attached_cube\" -p \"joint1\";\n\trename -uid \"71F24266-4310-2D6C-4C0A-8FAA7BBC50BD\";\ncreateNode mesh -n \"attached_cubeShape\" -p \"attached_cube\";\n\trename -uid \"1CBD861C-4600-FAF7-0890-E5840F58BF19\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"reference_cube\";\n\trename -uid \"9315DD90-46AA-AB67-4413-02A7CD3910AC\";\n\tsetAttr \".t\" -type \"double3\" 1 0 0 ;\ncreateNode mesh -n \"reference_cubeShape\" -p \"reference_cube\";\n\trename -uid \"079C35BB-4EB3-9DD8-F684-B9BEF6CB318C\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"0F4AFC3D-48B7-397C-B906-079255AD564F\";\n\tsetAttr \".t\" -type \"double3\" 0.43467237662289965 213.27209902029455 0.48790616272355813 ;\n\tsetAttr \".r\" -type \"double3\" -90 0 -7.578711624029505e-16 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"BAC0C406-4C9E-9E3B-49CA-EDA863684A6B\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".fl\" 2062.5657127418463;\n\tsetAttr \".coi\" 213.34646232421147;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.5 0 0 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"7EDE2AB9-4F1B-9485-9F80-F6A665E7D269\";\n\tsetAttr -s 3 \".lnk\";\n\tsetAttr -s 3 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"9934E5D1-407D-DDD8-F021-71ACA354A23F\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"DF3BA323-421B-6145-A396-AEAB5A97A212\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"DC31C768-4108-FE96-A3F7-238905339EE8\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"1FEFAF39-4FED-C0DD-2DC1-7B9EE3D74522\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"53355CBB-4D6F-BBE7-DB0F-6E97F706239B\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"CBF08827-4C49-AD1C-12D5-2CA846D5FCCF\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"6CA8CA14-4FC6-3AE4-71F8-46A63962B68C\";\n\tsetAttr \".cuv\" 4;\ncreateNode skinCluster -n \"skinCluster1\";\n\trename -uid \"F57E828B-425D-BE0D-6486-F9B1196028B0\";\n\tsetAttr -s 8 \".wl\";\n\tsetAttr \".wl[0:7].w\"\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1;\n\tsetAttr \".pm[0]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".dpf[0]\"  4;\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".mi\" 1;\n\tsetAttr \".ucm\" yes;\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"69C21DDE-45A0-2766-C6A6-419B57BAD2A8\";\ncreateNode objectSet -n \"skinCluster1Set\";\n\trename -uid \"90AFEC7B-49B3-5486-B909-1DB72A070261\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster1GroupId\";\n\trename -uid \"6AD62A68-4A74-A53C-28E7-21954C2178B4\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster1GroupParts\";\n\trename -uid \"980DC6AA-4335-A049-D145-70A8245548E6\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"741C32E7-414E-95F0-8AC6-1FA8AF6B4A36\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"4444F2D1-424C-FD37-D1DB-6DA92D0B5937\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"FB4B47FD-4DA6-7DE5-4DB9-2CA0258BE766\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode dagPose -n \"bindPose1\";\n\trename -uid \"0DAA893E-4659-1544-8EFE-CE84B0B01AAC\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".bp\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"A6AF2E49-434A-67C2-399A-97ACAFC7D07D\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n\"\n\t\t+ \"            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n\"\n\t\t+ \"            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n\"\n\t\t+ \"            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 0\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n\"\n\t\t+ \"        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n\"\n\t\t+ \"            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n\"\n\t\t+ \"            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n\"\n\t\t+ \"            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n\"\n\t\t+ \"            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 1\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n\"\n\t\t+ \"            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n\"\n\t\t+ \"            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1759\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n\"\n\t\t+ \"            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n\"\n\t\t+ \"            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n            -expandAttribute 0\\n            $editorName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n\"\n\t\t+ \"            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n\"\n\t\t+ \"            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n\"\n\t\t+ \"                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n\"\n\t\t+ \"                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n\"\n\t\t+ \"                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 1\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 1\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1759\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1759\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"2BC912CD-4D5B-7564-EC84-6CAF842362A5\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 20 -ast 1 -aet 20 \";\n\tsetAttr \".st\" 6;\ncreateNode polyCube -n \"polyCube2\";\n\trename -uid \"42106553-4657-4082-2F00-3F96135DB009\";\n\tsetAttr \".cuv\" 4;\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"B197126C-4B09-6214-58DC-A380766503B2\";\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\n\tsetAttr \".it\" -type \"float3\" 0.45180723 0.45180723 0.45180723 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"21672FAE-4917-7948-AB96-AD96BB8C8A7D\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"8725FC6A-4B57-F326-5C5C-FA8C58F88321\";\ncreateNode polyCube -n \"polyCube3\";\n\trename -uid \"D05CC3BC-41C5-EDFA-41BB-CD821DE66333\";\n\tsetAttr \".w\" 0.5;\n\tsetAttr \".h\" 0.5;\n\tsetAttr \".d\" 0.5;\n\tsetAttr \".cuv\" 4;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"7F24E4C2-490B-FDE4-9B6E-08A34AE140AC\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"FA4FE145-4138-E015-76EC-B09505891CFB\";\n\tsetAttr \".st\" 2;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 3 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 5 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :lambert1;\n\tsetAttr \".c\" -type \"float3\" 0 1 0 ;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nselect -ne :ikSystem;\n\tsetAttr -s 4 \".sol\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinned_cubeShape.iog.og[0].gid\";\nconnectAttr \"skinCluster1Set.mwc\" \"skinned_cubeShape.iog.og[0].gco\";\nconnectAttr \"groupId2.id\" \"skinned_cubeShape.iog.og[1].gid\";\nconnectAttr \"tweakSet1.mwc\" \"skinned_cubeShape.iog.og[1].gco\";\nconnectAttr \"skinCluster1.og[0]\" \"skinned_cubeShape.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"skinned_cubeShape.twl\";\nconnectAttr \"polyCube1.out\" \"skinned_cubeShape1Orig.i\";\nconnectAttr \"polyCube3.out\" \"attached_cubeShape.i\";\nconnectAttr \"polyCube2.out\" \"reference_cubeShape.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"skinCluster1GroupParts.og\" \"skinCluster1.ip[0].ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1.ip[0].gi\";\nconnectAttr \"bindPose1.msg\" \"skinCluster1.bp\";\nconnectAttr \"joint1.wm\" \"skinCluster1.ma[0]\";\nconnectAttr \"joint1.liw\" \"skinCluster1.lw[0]\";\nconnectAttr \"joint1.obcc\" \"skinCluster1.ifcl[0]\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"skinCluster1GroupId.msg\" \"skinCluster1Set.gn\" -na;\nconnectAttr \"skinned_cubeShape.iog.og[0]\" \"skinCluster1Set.dsm\" -na;\nconnectAttr \"skinCluster1.msg\" \"skinCluster1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"skinCluster1GroupParts.ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"skinned_cubeShape.iog.og[1]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"skinned_cubeShape1Orig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"joint1.msg\" \"bindPose1.m[0]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[0]\";\nconnectAttr \"joint1.bps\" \"bindPose1.wm[0]\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"skinned_cubeShape.iog\" \"lambert2SG.dsm\" -na;\nconnectAttr \"lambert2SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo1.m\";\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"reference_cubeShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"attached_cubeShape.iog\" \":initialShadingGroup.dsm\" -na;\n// End of SingleJointCubeTop.ma\n"
  },
  {
    "path": "maya/scenes/skin/SingleJointCubeTopAnim.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: SingleJointCubeTopAnim.ma\n//Last modified: Fri, Feb 22, 2019 05:52:59 PM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"F3C5CE53-47D9-F98B-CAED-179A9682A05F\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -2.8275590540636424 3.3805515112011189 1.6456786675416484 ;\n\tsetAttr \".r\" -type \"double3\" -45.938352729712193 -59.799999999998953 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"04781A62-4DE3-519F-BD75-E78552DDA7AD\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 4.7044103776031401;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"B8AE84CE-4BB6-2F1C-48AD-F99269ACD7AC\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1003319112644 2.2206672264935001e-13 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"26F7B0E3-4048-3227-6C55-F2AB5F8150EE\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1003319112644;\n\tsetAttr \".ow\" 8.7705275126417597;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"940E81C2-49CE-7FDA-3357-36BBB1A76872\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"96B57E0B-40EA-6134-1B01-A68AE769B135\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 6.1134104611373612;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"CAF8C6DA-472C-B6E3-95BF-89A09B142EC3\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"6BDD02CA-41E7-39B6-9E9A-DB9E368D185A\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"skinned_cube\";\n\trename -uid \"D0FE15FC-45C7-BE02-E3C2-289FE9C27635\";\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\ncreateNode mesh -n \"skinned_cubeShape\" -p \"skinned_cube\";\n\trename -uid \"3B98320F-46DB-F2CC-0BD9-0EAD34ACA4B1\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\ncreateNode mesh -n \"skinned_cubeShape1Orig\" -p \"skinned_cube\";\n\trename -uid \"40A71D2A-4C26-E87E-0513-1093044067B5\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode joint -n \"joint1\";\n\trename -uid \"01B99926-4FD1-A7BF-3D88-9E8E57A9AE0D\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".radi\" 0.55172413793103448;\ncreateNode transform -n \"attached_cube\" -p \"joint1\";\n\trename -uid \"71F24266-4310-2D6C-4C0A-8FAA7BBC50BD\";\ncreateNode mesh -n \"attached_cubeShape\" -p \"attached_cube\";\n\trename -uid \"1CBD861C-4600-FAF7-0890-E5840F58BF19\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"reference_cube\";\n\trename -uid \"9315DD90-46AA-AB67-4413-02A7CD3910AC\";\n\tsetAttr \".t\" -type \"double3\" 1 0 0 ;\ncreateNode mesh -n \"reference_cubeShape\" -p \"reference_cube\";\n\trename -uid \"079C35BB-4EB3-9DD8-F684-B9BEF6CB318C\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"0F4AFC3D-48B7-397C-B906-079255AD564F\";\n\tsetAttr \".t\" -type \"double3\" 0.43467237662289965 213.27209902029455 0.48790616272355813 ;\n\tsetAttr \".r\" -type \"double3\" -90 0 -7.578711624029505e-16 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"BAC0C406-4C9E-9E3B-49CA-EDA863684A6B\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".fl\" 2062.5657127418463;\n\tsetAttr \".coi\" 213.34646232421147;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.5 0 0 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"7EDE2AB9-4F1B-9485-9F80-F6A665E7D269\";\n\tsetAttr -s 3 \".lnk\";\n\tsetAttr -s 3 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"9934E5D1-407D-DDD8-F021-71ACA354A23F\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"DF3BA323-421B-6145-A396-AEAB5A97A212\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"DC31C768-4108-FE96-A3F7-238905339EE8\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"1FEFAF39-4FED-C0DD-2DC1-7B9EE3D74522\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"53355CBB-4D6F-BBE7-DB0F-6E97F706239B\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"CBF08827-4C49-AD1C-12D5-2CA846D5FCCF\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"6CA8CA14-4FC6-3AE4-71F8-46A63962B68C\";\n\tsetAttr \".cuv\" 4;\ncreateNode skinCluster -n \"skinCluster1\";\n\trename -uid \"F57E828B-425D-BE0D-6486-F9B1196028B0\";\n\tsetAttr -s 8 \".wl\";\n\tsetAttr \".wl[0:7].w\"\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1\n\t\t1 0 1;\n\tsetAttr \".pm[0]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".dpf[0]\"  4;\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".mi\" 1;\n\tsetAttr \".ucm\" yes;\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"69C21DDE-45A0-2766-C6A6-419B57BAD2A8\";\ncreateNode objectSet -n \"skinCluster1Set\";\n\trename -uid \"90AFEC7B-49B3-5486-B909-1DB72A070261\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster1GroupId\";\n\trename -uid \"6AD62A68-4A74-A53C-28E7-21954C2178B4\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster1GroupParts\";\n\trename -uid \"980DC6AA-4335-A049-D145-70A8245548E6\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"741C32E7-414E-95F0-8AC6-1FA8AF6B4A36\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"4444F2D1-424C-FD37-D1DB-6DA92D0B5937\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"FB4B47FD-4DA6-7DE5-4DB9-2CA0258BE766\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode dagPose -n \"bindPose1\";\n\trename -uid \"0DAA893E-4659-1544-8EFE-CE84B0B01AAC\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".bp\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"A6AF2E49-434A-67C2-399A-97ACAFC7D07D\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n\"\n\t\t+ \"            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n\"\n\t\t+ \"            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n\"\n\t\t+ \"            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 0\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n\"\n\t\t+ \"        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n\"\n\t\t+ \"            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n\"\n\t\t+ \"            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n\"\n\t\t+ \"            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n\"\n\t\t+ \"            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 1\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n\"\n\t\t+ \"            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n\"\n\t\t+ \"            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1759\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n\"\n\t\t+ \"            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n\"\n\t\t+ \"            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n            -expandAttribute 0\\n            $editorName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n\"\n\t\t+ \"            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n\"\n\t\t+ \"            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n\"\n\t\t+ \"                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n\"\n\t\t+ \"                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n\"\n\t\t+ \"                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 1\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 1\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1759\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 1\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1759\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"2BC912CD-4D5B-7564-EC84-6CAF842362A5\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 20 -ast 1 -aet 20 \";\n\tsetAttr \".st\" 6;\ncreateNode polyCube -n \"polyCube2\";\n\trename -uid \"42106553-4657-4082-2F00-3F96135DB009\";\n\tsetAttr \".cuv\" 4;\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"B197126C-4B09-6214-58DC-A380766503B2\";\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\n\tsetAttr \".it\" -type \"float3\" 0.45180723 0.45180723 0.45180723 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"21672FAE-4917-7948-AB96-AD96BB8C8A7D\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"8725FC6A-4B57-F326-5C5C-FA8C58F88321\";\ncreateNode animCurveTL -n \"joint1_translateX\";\n\trename -uid \"63BC0FD1-4341-E02D-48EC-74976A7E51F2\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"joint1_translateZ\";\n\trename -uid \"C56D6B74-4131-2459-F377-27808CD39915\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 1;\ncreateNode animCurveTL -n \"joint1_translateY\";\n\trename -uid \"8A1C7675-4122-CC3A-78DD-A4902EE5F354\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode polyCube -n \"polyCube3\";\n\trename -uid \"D05CC3BC-41C5-EDFA-41BB-CD821DE66333\";\n\tsetAttr \".w\" 0.5;\n\tsetAttr \".h\" 0.5;\n\tsetAttr \".d\" 0.5;\n\tsetAttr \".cuv\" 4;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"7F24E4C2-490B-FDE4-9B6E-08A34AE140AC\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"FA4FE145-4138-E015-76EC-B09505891CFB\";\n\tsetAttr \".st\" 2;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 20;\n\tsetAttr \".unw\" 20;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 3 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 5 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :lambert1;\n\tsetAttr \".c\" -type \"float3\" 0 1 0 ;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nselect -ne :ikSystem;\n\tsetAttr -s 4 \".sol\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinned_cubeShape.iog.og[0].gid\";\nconnectAttr \"skinCluster1Set.mwc\" \"skinned_cubeShape.iog.og[0].gco\";\nconnectAttr \"groupId2.id\" \"skinned_cubeShape.iog.og[1].gid\";\nconnectAttr \"tweakSet1.mwc\" \"skinned_cubeShape.iog.og[1].gco\";\nconnectAttr \"skinCluster1.og[0]\" \"skinned_cubeShape.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"skinned_cubeShape.twl\";\nconnectAttr \"polyCube1.out\" \"skinned_cubeShape1Orig.i\";\nconnectAttr \"joint1_translateX.o\" \"joint1.tx\";\nconnectAttr \"joint1_translateZ.o\" \"joint1.tz\";\nconnectAttr \"joint1_translateY.o\" \"joint1.ty\";\nconnectAttr \"polyCube3.out\" \"attached_cubeShape.i\";\nconnectAttr \"polyCube2.out\" \"reference_cubeShape.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"skinCluster1GroupParts.og\" \"skinCluster1.ip[0].ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1.ip[0].gi\";\nconnectAttr \"bindPose1.msg\" \"skinCluster1.bp\";\nconnectAttr \"joint1.wm\" \"skinCluster1.ma[0]\";\nconnectAttr \"joint1.liw\" \"skinCluster1.lw[0]\";\nconnectAttr \"joint1.obcc\" \"skinCluster1.ifcl[0]\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"skinCluster1GroupId.msg\" \"skinCluster1Set.gn\" -na;\nconnectAttr \"skinned_cubeShape.iog.og[0]\" \"skinCluster1Set.dsm\" -na;\nconnectAttr \"skinCluster1.msg\" \"skinCluster1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"skinCluster1GroupParts.ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"skinned_cubeShape.iog.og[1]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"skinned_cubeShape1Orig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"joint1.msg\" \"bindPose1.m[0]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[0]\";\nconnectAttr \"joint1.bps\" \"bindPose1.wm[0]\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"skinned_cubeShape.iog\" \"lambert2SG.dsm\" -na;\nconnectAttr \"lambert2SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo1.m\";\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"reference_cubeShape.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"attached_cubeShape.iog\" \":initialShadingGroup.dsm\" -na;\n// End of SingleJointCubeTopAnim.ma\n"
  },
  {
    "path": "maya/scenes/skin/ThreeJointsTwoInfluencesAnim.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: ThreeJointsTwoInfluencesAnim.ma\n//Last modified: Sun, Feb 03, 2019 12:07:11 PM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"8B724212-4DB3-BA18-17C3-16B8563E5D58\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -1.6953374622016528 11.995866363042284 0.11260418999851124 ;\n\tsetAttr \".r\" -type \"double3\" -81.938352729617662 -86.200000000005332 -4.7991059259701559e-14 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"50DA271F-4D65-BCF4-2099-E0A0EF6B4F88\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 12.115595677237604;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"21D19CF8-4478-5EFB-C548-94825109801B\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"F0B15795-45DC-89C5-D90A-E097B345182E\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"DFD785D0-4F23-4573-DA20-8A8619317C35\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"86599EC8-4EE6-0C4E-5671-D381B645820D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"83769BCA-456F-17B3-AF35-76AA2E358344\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"EE2258C5-4717-EEB7-4145-909D603952BC\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"03A90AB5-4744-34C8-A21E-ED915AE51918\";\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"1621912A-4CEE-353F-5A04-DE8A31B9AACF\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\ncreateNode mesh -n \"pCubeShape1Orig\" -p \"pCube1\";\n\trename -uid \"2298A705-4C35-8995-4575-3F98210B558A\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode joint -n \"joint1\";\n\trename -uid \"B1160E7F-423A-F54E-65FE-11A6239D895C\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 -2 0 0 1;\n\tsetAttr \".radi\" 0.55172413793103448;\ncreateNode joint -n \"joint2\" -p \"joint1\";\n\trename -uid \"C24A3323-47A9-87F2-142B-0BA5102E1B62\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 1;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".radi\" 0.55172413793103448;\ncreateNode joint -n \"joint3\" -p \"joint2\";\n\trename -uid \"716CC056-41C6-D20E-7D85-D98A0A9E9F5F\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 2;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 2 0 0 1;\n\tsetAttr \".radi\" 0.55172413793103448;\ncreateNode transform -n \"camera1\";\n\trename -uid \"97C9A291-43EE-C830-ABEC-04871E9D756D\";\n\tsetAttr \".t\" -type \"double3\" 3.8954393235098417 8.872762022851397 6.2035030541636287 ;\n\tsetAttr \".r\" -type \"double3\" -49.399492009736505 29.00000000000006 1.8182500665724229e-15 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"3681D7FE-4E88-5443-D690-50A8945D8AEB\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 2.9168943462126879;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"AEC3CC55-4A2F-434A-F59B-AA8A014D1D2D\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"B89F4BA1-4E8B-BCB5-B38B-999E8405EE15\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"613B4698-423C-366C-AC59-05940BB6980D\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"B1FD0556-4EFA-2A00-005B-868B9D9CFC63\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"C801C1D6-4D7E-0B99-F207-5DA5EF70015D\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"1627F22C-4699-4D00-5B45-4BA23218870D\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"56079655-42A0-B77B-0EA7-32A7D92C050C\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"C99260EB-495D-21AC-D6B3-11A94BEB1850\";\n\tsetAttr \".w\" 5;\n\tsetAttr \".sw\" 3;\n\tsetAttr \".cuv\" 4;\ncreateNode skinCluster -n \"skinCluster1\";\n\trename -uid \"9D106A63-43DF-3FD7-9B76-7080E5EE085F\";\n\tsetAttr -s 16 \".wl\";\n\tsetAttr \".wl[0:15].w\"\n\t\t2 0 0.98780487804878048 1 0.012195121951219509\n\t\t2 0 0.85089739096732497 1 0.14910260903267508\n\t\t2 0 0.14910265123976185 1 0.85089734876023815\n\t\t2 1 0.5 2 0.5\n\t\t2 0 0.98780487804878048 1 0.012195121951219509\n\t\t2 0 0.85089739096732497 1 0.14910260903267508\n\t\t2 0 0.14910265123976185 1 0.85089734876023815\n\t\t2 1 0.5 2 0.5\n\t\t2 0 0.98780487804878048 1 0.012195121951219509\n\t\t2 0 0.85089739096732497 1 0.14910260903267508\n\t\t2 0 0.14910265123976185 1 0.85089734876023815\n\t\t2 1 0.5 2 0.5\n\t\t2 0 0.98780487804878048 1 0.012195121951219509\n\t\t2 0 0.85089739096732497 1 0.14910260903267508\n\t\t2 0 0.14910265123976185 1 0.85089734876023815\n\t\t2 1 0.5 2 0.5;\n\tsetAttr -s 3 \".pm\";\n\tsetAttr \".pm[0]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 2 0 0 1;\n\tsetAttr \".pm[1]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".pm[2]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 -2 0 0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr -s 3 \".ma\";\n\tsetAttr -s 3 \".dpf[0:2]\"  4 4 4;\n\tsetAttr -s 3 \".lw\";\n\tsetAttr -s 3 \".lw\";\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".ucm\" yes;\n\tsetAttr -s 3 \".ifcl\";\n\tsetAttr -s 3 \".ifcl\";\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"48BD3565-45AB-D494-2595-0E8619733B91\";\ncreateNode objectSet -n \"skinCluster1Set\";\n\trename -uid \"99ABB50A-4D86-0F20-1C60-1AAAC6A6B000\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster1GroupId\";\n\trename -uid \"62584D3F-4A1A-FB9A-C8E0-8292A16D6472\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster1GroupParts\";\n\trename -uid \"F37F64AD-4949-2371-3336-CB8662CD6AB6\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"B90575E2-4D0D-E9C3-C618-04B642EBF96B\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"16D152E7-4481-3A85-5403-FD890E0218F3\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"7C020EDD-45C5-F62E-6173-6296CF114C53\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode dagPose -n \"bindPose1\";\n\trename -uid \"A39D4632-4755-5900-6092-BE8DF0C1704D\";\n\tsetAttr -s 3 \".wm\";\n\tsetAttr -s 3 \".xm\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 -2 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[1]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[2]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr -s 3 \".m\";\n\tsetAttr -s 3 \".p\";\n\tsetAttr \".bp\" yes;\ncreateNode character -n \"character1\";\n\trename -uid \"F086EBB7-4343-7A00-74A4-7591EAA81D25\";\n\taddAttr -ci true -h true -sn \"aal\" -ln \"attributeAliasList\" -dt \"attributeAlias\";\n\tsetAttr -s 18 \".dnsm\";\n\tsetAttr -s 9 \".lv\";\n\tsetAttr -s 9 \".lv\";\n\tsetAttr -s 9 \".av\";\n\tsetAttr -s 9 \".av\";\n\tsetAttr \".am\" -type \"characterMapping\" 18 \"joint3.rotateZ\" 2 1 \"joint3.rotateY\" \n\t\t2 2 \"joint3.rotateX\" 2 3 \"joint3.translateZ\" 1 1 \"joint3.translateY\" \n\t\t1 2 \"joint3.translateX\" 1 3 \"joint2.rotateZ\" 2 4 \"joint2.rotateY\" \n\t\t2 5 \"joint2.rotateX\" 2 6 \"joint2.translateZ\" 1 4 \"joint2.translateY\" \n\t\t1 5 \"joint2.translateX\" 1 6 \"joint1.rotateZ\" 2 7 \"joint1.rotateY\" \n\t\t2 8 \"joint1.rotateX\" 2 9 \"joint1.translateZ\" 1 7 \"joint1.translateY\" \n\t\t1 8 \"joint1.translateX\" 1 9  ;\n\tsetAttr \".aal\" -type \"attributeAlias\" {\"joint3_rotateZ\",\"angularValues[1]\",\"joint3_rotateY\"\n\t\t,\"angularValues[2]\",\"joint3_rotateX\",\"angularValues[3]\",\"joint2_rotateZ\",\"angularValues[4]\"\n\t\t,\"joint2_rotateY\",\"angularValues[5]\",\"joint2_rotateX\",\"angularValues[6]\",\"joint1_rotateZ\"\n\t\t,\"angularValues[7]\",\"joint1_rotateY\",\"angularValues[8]\",\"joint1_rotateX\",\"angularValues[9]\"\n\t\t,\"joint3_translateZ\",\"linearValues[1]\",\"joint3_translateY\",\"linearValues[2]\",\"joint3_translateX\"\n\t\t,\"linearValues[3]\",\"joint2_translateZ\",\"linearValues[4]\",\"joint2_translateY\",\"linearValues[5]\"\n\t\t,\"joint2_translateX\",\"linearValues[6]\",\"joint1_translateZ\",\"linearValues[7]\",\"joint1_translateY\"\n\t\t,\"linearValues[8]\",\"joint1_translateX\",\"linearValues[9]\"} ;\ncreateNode animCurveTL -n \"character1_joint1_translateX\";\n\trename -uid \"F200F21F-408E-816F-E369-A1AFBFCEA958\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 -2 20 -2;\ncreateNode animCurveTL -n \"character1_joint1_translateY\";\n\trename -uid \"F4D0C180-4819-E476-9C28-42A961B16B30\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"character1_joint1_translateZ\";\n\trename -uid \"176652EA-4BEF-BC1D-FE05-AB8E6B1DF5B7\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTA -n \"character1_joint1_rotateX\";\n\trename -uid \"32B36331-4112-BEFA-0BA3-F6ACA153D407\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTA -n \"character1_joint1_rotateY\";\n\trename -uid \"A38F703E-4D8E-9BCD-EE38-11B9E2624180\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 45.000000000000014;\ncreateNode animCurveTA -n \"character1_joint1_rotateZ\";\n\trename -uid \"8D395E00-4352-127B-C7B7-AFBD969A120D\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"character1_joint2_translateX\";\n\trename -uid \"5965F5EA-4E88-4084-1464-EAA1097ACABE\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 2 20 2;\ncreateNode animCurveTL -n \"character1_joint2_translateY\";\n\trename -uid \"B0BC6894-4103-E6E2-DC89-1595E7159988\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"character1_joint2_translateZ\";\n\trename -uid \"35B07CD3-4677-5266-C4C3-93AFE1C3778E\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTA -n \"character1_joint2_rotateX\";\n\trename -uid \"04A64986-4BF1-6497-6F0E-D0B647039568\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTA -n \"character1_joint2_rotateY\";\n\trename -uid \"E280FB75-49EF-0390-2A60-8585A5B43CFD\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 89.999999999999972;\ncreateNode animCurveTA -n \"character1_joint2_rotateZ\";\n\trename -uid \"CD2FA72D-421F-285E-1974-1B975BD1AAA0\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"character1_joint3_translateX\";\n\trename -uid \"D17A1CB5-4B1C-6746-E1A7-35825E7CEDF6\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 2 20 2;\ncreateNode animCurveTL -n \"character1_joint3_translateY\";\n\trename -uid \"B7DC69C8-4F7B-E3BD-5B5E-6DA594D4413D\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"character1_joint3_translateZ\";\n\trename -uid \"3CF30BCB-4163-EB82-7D58-188E13DEADAB\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTA -n \"character1_joint3_rotateX\";\n\trename -uid \"8A8B0A82-4A21-2D3D-4BED-C2BDA0AC23A1\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTA -n \"character1_joint3_rotateY\";\n\trename -uid \"89F81EAF-42DF-C734-EEAA-049C2619E080\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 89.999999999999972;\ncreateNode animCurveTA -n \"character1_joint3_rotateZ\";\n\trename -uid \"564937DE-4D30-0417-6EBA-80B6057CC0ED\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"A6A866F7-4746-2E83-EFBD-D2A1F2DD52EB\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n\"\n\t\t+ \"            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\"\n\t\t+ \"\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 0\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 1\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 1\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n\"\n\t\t+ \"            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n\"\n\t\t+ \"            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n\"\n\t\t+ \"            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n\"\n\t\t+ \"            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n\"\n\t\t+ \"        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n\"\n\t\t+ \"            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n\"\n\t\t+ \"            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n\"\n\t\t+ \"            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"2520C3A6-4BB2-C318-35AC-ADB7F2AB646E\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"A044A163-4EB4-3C0A-AD2B-CF9D2EDF3B89\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 7;\n\tsetAttr \".unw\" 7;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nselect -ne :characterPartition;\nconnectAttr \"skinCluster1GroupId.id\" \"pCubeShape1.iog.og[2].gid\";\nconnectAttr \"skinCluster1Set.mwc\" \"pCubeShape1.iog.og[2].gco\";\nconnectAttr \"groupId2.id\" \"pCubeShape1.iog.og[3].gid\";\nconnectAttr \"tweakSet1.mwc\" \"pCubeShape1.iog.og[3].gco\";\nconnectAttr \"skinCluster1.og[0]\" \"pCubeShape1.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"pCubeShape1.twl\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1Orig.i\";\nconnectAttr \"character1.av[7]\" \"joint1.rz\";\nconnectAttr \"character1.av[8]\" \"joint1.ry\";\nconnectAttr \"character1.av[9]\" \"joint1.rx\";\nconnectAttr \"character1.lv[7]\" \"joint1.tz\";\nconnectAttr \"character1.lv[8]\" \"joint1.ty\";\nconnectAttr \"character1.lv[9]\" \"joint1.tx\";\nconnectAttr \"joint1.s\" \"joint2.is\";\nconnectAttr \"character1.av[4]\" \"joint2.rz\";\nconnectAttr \"character1.av[5]\" \"joint2.ry\";\nconnectAttr \"character1.av[6]\" \"joint2.rx\";\nconnectAttr \"character1.lv[4]\" \"joint2.tz\";\nconnectAttr \"character1.lv[5]\" \"joint2.ty\";\nconnectAttr \"character1.lv[6]\" \"joint2.tx\";\nconnectAttr \"joint2.s\" \"joint3.is\";\nconnectAttr \"character1.av[1]\" \"joint3.rz\";\nconnectAttr \"character1.av[2]\" \"joint3.ry\";\nconnectAttr \"character1.av[3]\" \"joint3.rx\";\nconnectAttr \"character1.lv[1]\" \"joint3.tz\";\nconnectAttr \"character1.lv[2]\" \"joint3.ty\";\nconnectAttr \"character1.lv[3]\" \"joint3.tx\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"skinCluster1GroupParts.og\" \"skinCluster1.ip[0].ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1.ip[0].gi\";\nconnectAttr \"bindPose1.msg\" \"skinCluster1.bp\";\nconnectAttr \"joint1.wm\" \"skinCluster1.ma[0]\";\nconnectAttr \"joint2.wm\" \"skinCluster1.ma[1]\";\nconnectAttr \"joint3.wm\" \"skinCluster1.ma[2]\";\nconnectAttr \"joint1.liw\" \"skinCluster1.lw[0]\";\nconnectAttr \"joint2.liw\" \"skinCluster1.lw[1]\";\nconnectAttr \"joint3.liw\" \"skinCluster1.lw[2]\";\nconnectAttr \"joint1.obcc\" \"skinCluster1.ifcl[0]\";\nconnectAttr \"joint2.obcc\" \"skinCluster1.ifcl[1]\";\nconnectAttr \"joint3.obcc\" \"skinCluster1.ifcl[2]\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"skinCluster1GroupId.msg\" \"skinCluster1Set.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[2]\" \"skinCluster1Set.dsm\" -na;\nconnectAttr \"skinCluster1.msg\" \"skinCluster1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"skinCluster1GroupParts.ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[3]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"pCubeShape1Orig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"joint1.msg\" \"bindPose1.m[0]\";\nconnectAttr \"joint2.msg\" \"bindPose1.m[1]\";\nconnectAttr \"joint3.msg\" \"bindPose1.m[2]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[0]\";\nconnectAttr \"bindPose1.m[0]\" \"bindPose1.p[1]\";\nconnectAttr \"bindPose1.m[1]\" \"bindPose1.p[2]\";\nconnectAttr \"joint1.bps\" \"bindPose1.wm[0]\";\nconnectAttr \"joint2.bps\" \"bindPose1.wm[1]\";\nconnectAttr \"joint3.bps\" \"bindPose1.wm[2]\";\nconnectAttr \"character1_joint3_rotateZ.o\" \"character1.av[1]\";\nconnectAttr \"character1_joint3_rotateY.o\" \"character1.av[2]\";\nconnectAttr \"character1_joint3_rotateX.o\" \"character1.av[3]\";\nconnectAttr \"character1_joint2_rotateZ.o\" \"character1.av[4]\";\nconnectAttr \"character1_joint2_rotateY.o\" \"character1.av[5]\";\nconnectAttr \"character1_joint2_rotateX.o\" \"character1.av[6]\";\nconnectAttr \"character1_joint1_rotateZ.o\" \"character1.av[7]\";\nconnectAttr \"character1_joint1_rotateY.o\" \"character1.av[8]\";\nconnectAttr \"character1_joint1_rotateX.o\" \"character1.av[9]\";\nconnectAttr \"character1_joint3_translateZ.o\" \"character1.lv[1]\";\nconnectAttr \"character1_joint3_translateY.o\" \"character1.lv[2]\";\nconnectAttr \"character1_joint3_translateX.o\" \"character1.lv[3]\";\nconnectAttr \"character1_joint2_translateZ.o\" \"character1.lv[4]\";\nconnectAttr \"character1_joint2_translateY.o\" \"character1.lv[5]\";\nconnectAttr \"character1_joint2_translateX.o\" \"character1.lv[6]\";\nconnectAttr \"character1_joint1_translateZ.o\" \"character1.lv[7]\";\nconnectAttr \"character1_joint1_translateY.o\" \"character1.lv[8]\";\nconnectAttr \"character1_joint1_translateX.o\" \"character1.lv[9]\";\nconnectAttr \"joint3.rz\" \"character1.dnsm[0]\";\nconnectAttr \"joint3.ry\" \"character1.dnsm[1]\";\nconnectAttr \"joint3.rx\" \"character1.dnsm[2]\";\nconnectAttr \"joint3.tz\" \"character1.dnsm[3]\";\nconnectAttr \"joint3.ty\" \"character1.dnsm[4]\";\nconnectAttr \"joint3.tx\" \"character1.dnsm[5]\";\nconnectAttr \"joint2.rz\" \"character1.dnsm[6]\";\nconnectAttr \"joint2.ry\" \"character1.dnsm[7]\";\nconnectAttr \"joint2.rx\" \"character1.dnsm[8]\";\nconnectAttr \"joint2.tz\" \"character1.dnsm[9]\";\nconnectAttr \"joint2.ty\" \"character1.dnsm[10]\";\nconnectAttr \"joint2.tx\" \"character1.dnsm[11]\";\nconnectAttr \"joint1.rz\" \"character1.dnsm[12]\";\nconnectAttr \"joint1.ry\" \"character1.dnsm[13]\";\nconnectAttr \"joint1.rx\" \"character1.dnsm[14]\";\nconnectAttr \"joint1.tz\" \"character1.dnsm[15]\";\nconnectAttr \"joint1.ty\" \"character1.dnsm[16]\";\nconnectAttr \"joint1.tx\" \"character1.dnsm[17]\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"character1.pa\" \":characterPartition.st\" -na;\n// End of ThreeJointsTwoInfluencesAnim.ma\n"
  },
  {
    "path": "maya/scenes/skin/ThreeJoints_Joint2_HasZeroWeights.ma",
    "content": "//Maya ASCII 2019 scene\n//Name: ThreeJoints_Joint2_HasZeroWeights.ma\n//Last modified: Thu, Oct 03, 2019 03:03:58 PM\n//Codeset: 1252\nrequires maya \"2019\";\nrequires \"stereoCamera\" \"10.0\";\nrequires \"mtoa\" \"3.2.2\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2019\";\nfileInfo \"version\" \"2019\";\nfileInfo \"cutIdentifier\" \"201907021615-48e59968a3\";\nfileInfo \"osv\" \"Microsoft Windows 10 Technical Preview  (Build 18362)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"837A94B4-479C-C7D1-8D55-D0A283AA098F\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -0.098142079407565808 0.93736545495073598 4.1633664752587558 ;\n\tsetAttr \".r\" -type \"double3\" 0.8616472703980258 -1.3999999999971817 1.5534689419121313e-18 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"0C43CA0F-4A36-E7D6-A654-028588B5FCFE\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999986;\n\tsetAttr \".coi\" 4.1650806300404906;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.003608405590057373 1 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"4A96CBA0-46E5-ABDA-6AB7-38BE612DADA8\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -90 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"92101AC9-461B-F0CE-20E3-CA83F7C3FA6D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"front\";\n\trename -uid \"897E2967-4276-8F8D-9A8E-8785B71AF877\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -0.14866281538374637 1.3268560364707338 1000.1041969340417 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"93A44E1B-442D-00AB-30C3-4581D5349F4B\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1041969340417;\n\tsetAttr \".ow\" 6.7552739474245271;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"side\";\n\trename -uid \"6B7B899E-4AF3-3F50-88D8-C09E24C1CA88\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 90 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"8027E0C9-4497-9CF6-01E0-DBBDFBB6CC21\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode joint -n \"joint1\";\n\trename -uid \"9D0E62DA-4724-4617-5064-C4BBA64B53DB\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 90 ;\n\tsetAttr \".ssc\" no;\n\tsetAttr \".bps\" -type \"matrix\" 0 1 0 0 -1 0 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".radi\" 0.5;\n\tsetAttr \".liw\" yes;\ncreateNode joint -n \"joint2\";\n\trename -uid \"70201B03-4483-E7A1-B050-D7AB9D0B119B\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".oc\" 1;\n\tsetAttr \".t\" -type \"double3\" 0 1 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 90 ;\n\tsetAttr \".ssc\" no;\n\tsetAttr \".bps\" -type \"matrix\" 0 1 0 0 -1 0 0 0 0 0 1 0 0 1 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint3\";\n\trename -uid \"9DC651B6-46FA-D684-DD49-82927AF844E7\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".oc\" 2;\n\tsetAttr \".t\" -type \"double3\" 0 2 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".ssc\" no;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 2 0 1;\n\tsetAttr \".radi\" 0.5;\n\tsetAttr \".liw\" yes;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"5BDA7F59-4424-C970-6510-4E86FDA4FBEA\";\n\tsetAttr \".t\" -type \"double3\" 0 1 0 ;\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\n\tsetAttr \".rp\" -type \"double3\" 0 -1 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0 -1 0 ;\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"F77E161C-4693-FE77-62C3-7685B83AC657\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".vcs\" 2;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode mesh -n \"pCubeShape1Orig\" -p \"pCube1\";\n\trename -uid \"A9CDD18E-46ED-9AB4-6620-018D8BC0C033\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"C3A44E09-454A-8D8F-C1E5-4E8CD44925E3\";\n\tsetAttr -s 4 \".lnk\";\n\tsetAttr -s 4 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"AE0B5101-40A0-B56E-7A47-BE8D61ED1E6D\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"D2C7CF84-4536-8587-0DA9-D4990C9ED29B\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"FD117773-414C-372B-B38C-FC87634D8FFA\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"7472A17A-46F8-B10D-0D54-D28D0DA6EBFD\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"E95A480A-4ACA-C62C-A4F2-90A3F6634D94\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"796EE7DD-4482-7218-9A80-FC9EE64E82DE\";\n\tsetAttr \".g\" yes;\ncreateNode animCurveTL -n \"joint2_translateY\";\n\trename -uid \"2EDE69D3-426D-E03C-29D7-7BA80B797B16\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  40 0;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"44446817-4DB2-B135-D560-EDBBD13D900D\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 847\\n            -height 499\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 847\\n            -height 499\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1705\\n            -height 1046\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 847\\n            -height 499\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -autoFitTime 0\\n\"\n\t\t+ \"                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n\"\n\t\t+ \"                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n\"\n\t\t+ \"                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 0 \\n                $editorName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n\"\n\t\t+ \"                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -connectionStyle \\\"bezier\\\" \\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                -hasWatchpoint 0\\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n\"\n\t\t+ \"                -copyConnectionsOnPaste 0\\n                -connectionStyle \\\"bezier\\\" \\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                -hasWatchpoint 0\\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\n{ string $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n\"\n\t\t+ \"                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n\"\n\t\t+ \"                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n\"\n\t\t+ \"                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName; };\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Front View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Front View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -cam `findStartUpCamera front` \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1705\\\\n    -height 1046\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Front View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -cam `findStartUpCamera front` \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1705\\\\n    -height 1046\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"4E8FAE43-4BA4-C029-2123-878EBBA789DE\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 40 -ast 1 -aet 40 \";\n\tsetAttr \".st\" 6;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"375EBF11-4DCD-EB77-E600-18B25E5195F4\";\n\tsetAttr \".h\" 2;\n\tsetAttr \".sh\" 2;\n\tsetAttr \".cuv\" 4;\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"0BA07249-46CE-0489-2FC2-B992855D6DE8\";\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"AF5AA1B4-462A-F963-D78D-12BF12459397\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"00B09CC7-41AF-9443-1C80-659619FEE7A8\";\ncreateNode lambert -n \"lambert3\";\n\trename -uid \"EF1C9127-4DBD-9E8C-B141-6CB7839BCD64\";\n\tsetAttr \".c\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".it\" -type \"float3\" 0.5 0.5 0.5 ;\ncreateNode shadingEngine -n \"lambert3SG\";\n\trename -uid \"A815FDB8-4353-5C3A-27E3-31B31A589505\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"636F354B-49E4-056D-B293-62A51E72B770\";\ncreateNode skinCluster -n \"skinCluster1\";\n\trename -uid \"AA0430F6-47EB-9368-C73E-6F83889971B8\";\n\tsetAttr -s 12 \".wl\";\n\tsetAttr \".wl[0:11].w\"\n\t\t2 0 0.99588484306747849 2 1.6865397264432588e-05\n\t\t2 0 0.99588484306747849 2 1.6865397264432588e-05\n\t\t2 0 0.0040816326530612301 2 0.0040816326530612301\n\t\t2 0 0.0040816326530612301 2 0.0040816326530612301\n\t\t2 0 1.6865397264432588e-05 2 0.99588484306747849\n\t\t2 0 1.6865397264432588e-05 2 0.99588484306747849\n\t\t2 0 1.6865397264432588e-05 2 0.99588484306747849\n\t\t2 0 1.6865397264432588e-05 2 0.99588484306747849\n\t\t2 0 0.0040816326530612301 2 0.0040816326530612301\n\t\t2 0 0.0040816326530612301 2 0.0040816326530612301\n\t\t2 0 0.99588484306747849 2 1.6865397264432588e-05\n\t\t2 0 0.99588484306747849 2 1.6865397264432588e-05;\n\tsetAttr -s 3 \".pm\";\n\tsetAttr \".pm[0]\" -type \"matrix\" 0 -1 0 0 1 0 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".pm[1]\" -type \"matrix\" 0 -1 0 0 1 0 0 0 0 0 1 0 -1 0 0 1;\n\tsetAttr \".pm[2]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 -2 0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 1;\n\tsetAttr -s 3 \".ma\";\n\tsetAttr -s 3 \".dpf[0:2]\"  10 10 10;\n\tsetAttr -s 3 \".lw\";\n\tsetAttr -s 3 \".lw\";\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".mi\" 4;\n\tsetAttr \".ucm\" yes;\n\tsetAttr \".nw\" 2;\n\tsetAttr -s 3 \".ifcl\";\n\tsetAttr -s 3 \".ifcl\";\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"31687DF3-49EC-1E2B-4ACB-5284CF855CDE\";\ncreateNode objectSet -n \"skinCluster1Set\";\n\trename -uid \"4EDF2470-4112-CE25-6DF1-E3A2687F3D29\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster1GroupId\";\n\trename -uid \"17E944F7-4C75-D97E-4C00-7C93C791E4A3\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster1GroupParts\";\n\trename -uid \"D524B255-4517-EABD-3473-328DDEBCCFFF\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"D689FFAE-4608-F44F-BA4A-1590F937476D\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"DE5E2BC3-4032-B5F6-1354-7F972686FDF9\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"5465C7EC-4F1B-98B9-49F1-C9BC6FC71A6F\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode dagPose -n \"bindPose1\";\n\trename -uid \"FD59EA3F-4813-F513-B303-299F632AF900\";\n\tsetAttr -s 3 \".wm\";\n\tsetAttr -s 3 \".xm\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0.70710678118654757 0.70710678118654757 1 1 1 yes;\n\tsetAttr \".xm[1]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0.70710678118654757 0.70710678118654757 1 1 1 yes;\n\tsetAttr \".xm[2]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr -s 3 \".m\";\n\tsetAttr -s 3 \".p\";\n\tsetAttr \".bp\" yes;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"355DC2AE-4BB3-F1CD-F398-ADBB79FA50A0\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\taddAttr -ci true -sn \"selOnly\" -ln \"selOnly\" -at \"long\";\n\taddAttr -ci true -sn \"visOnly\" -ln \"visOnly\" -at \"long\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/scenes/skin/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"ThreeJoints_Joint2_HasZeroWeights\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2019 Peter\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"-isc -dac\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 1;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\n\tsetAttr \".selOnly\" 1;\n\tsetAttr \".visOnly\" 1;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 6 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".macc\";\n\tsetAttr -k on \".macd\";\n\tsetAttr -k on \".macq\";\n\tsetAttr -cb on \".ifg\";\n\tsetAttr -k on \".clip\";\n\tsetAttr -k on \".edm\";\n\tsetAttr -k on \".edl\";\n\tsetAttr \".ren\" -type \"string\" \"arnold\";\n\tsetAttr -av -k on \".esr\";\n\tsetAttr -k on \".ors\";\n\tsetAttr -cb on \".sdf\";\n\tsetAttr -cb on \".imfkey\";\n\tsetAttr -k on \".gama\";\n\tsetAttr -cb on \".ar\";\n\tsetAttr -av \".bfs\";\n\tsetAttr -k on \".be\";\n\tsetAttr -k on \".fec\";\n\tsetAttr -k on \".ofc\";\n\tsetAttr -cb on \".ofe\";\n\tsetAttr -cb on \".efe\";\n\tsetAttr -cb on \".umfn\";\n\tsetAttr -cb on \".ufe\";\n\tsetAttr -k on \".comp\";\n\tsetAttr -k on \".cth\";\n\tsetAttr -k on \".soll\";\n\tsetAttr -k on \".rd\";\n\tsetAttr -k on \".lp\";\n\tsetAttr -k on \".sp\";\n\tsetAttr -k on \".shs\";\n\tsetAttr -k on \".lpr\";\n\tsetAttr -cb on \".gv\";\n\tsetAttr -cb on \".sv\";\n\tsetAttr -k on \".mm\";\n\tsetAttr -k on \".npu\";\n\tsetAttr -k on \".itf\";\n\tsetAttr -k on \".shp\";\n\tsetAttr -cb on \".isp\";\n\tsetAttr -k on \".uf\";\n\tsetAttr -k on \".oi\";\n\tsetAttr -k on \".rut\";\n\tsetAttr -av -k on \".mbf\";\n\tsetAttr -k on \".afp\";\n\tsetAttr -k on \".pfb\";\n\tsetAttr -cb on \".pfrm\";\n\tsetAttr -cb on \".pfom\";\n\tsetAttr -av -k on \".bll\";\n\tsetAttr -k on \".bls\";\n\tsetAttr -k on \".smv\";\n\tsetAttr -k on \".ubc\";\n\tsetAttr -k on \".mbc\";\n\tsetAttr -k on \".udbx\";\n\tsetAttr -k on \".smc\";\n\tsetAttr -k on \".kmv\";\n\tsetAttr -cb on \".isl\";\n\tsetAttr -cb on \".ism\";\n\tsetAttr -cb on \".imb\";\n\tsetAttr -k on \".rlen\";\n\tsetAttr -av -k on \".frts\";\n\tsetAttr -k on \".tlwd\";\n\tsetAttr -k on \".tlht\";\n\tsetAttr -k on \".jfc\";\n\tsetAttr -cb on \".rsb\";\n\tsetAttr -k on \".ope\";\n\tsetAttr -k on \".oppf\";\n\tsetAttr -cb on \".hbl\";\nselect -ne :defaultResolution;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"skinCluster1GroupId.id\" \"pCubeShape1.iog.og[8].gid\";\nconnectAttr \"skinCluster1Set.mwc\" \"pCubeShape1.iog.og[8].gco\";\nconnectAttr \"groupId2.id\" \"pCubeShape1.iog.og[9].gid\";\nconnectAttr \"tweakSet1.mwc\" \"pCubeShape1.iog.og[9].gco\";\nconnectAttr \"skinCluster1.og[0]\" \"pCubeShape1.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"pCubeShape1.twl\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1Orig.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"lambert2SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo1.m\";\nconnectAttr \"lambert3.oc\" \"lambert3SG.ss\";\nconnectAttr \"lambert3SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"lambert3.msg\" \"materialInfo2.m\";\nconnectAttr \"skinCluster1GroupParts.og\" \"skinCluster1.ip[0].ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1.ip[0].gi\";\nconnectAttr \"bindPose1.msg\" \"skinCluster1.bp\";\nconnectAttr \"joint1.wm\" \"skinCluster1.ma[0]\";\nconnectAttr \"joint2.wm\" \"skinCluster1.ma[1]\";\nconnectAttr \"joint3.wm\" \"skinCluster1.ma[2]\";\nconnectAttr \"joint1.liw\" \"skinCluster1.lw[0]\";\nconnectAttr \"joint2.liw\" \"skinCluster1.lw[1]\";\nconnectAttr \"joint3.liw\" \"skinCluster1.lw[2]\";\nconnectAttr \"joint1.obcc\" \"skinCluster1.ifcl[0]\";\nconnectAttr \"joint2.obcc\" \"skinCluster1.ifcl[1]\";\nconnectAttr \"joint3.obcc\" \"skinCluster1.ifcl[2]\";\nconnectAttr \"joint2.msg\" \"skinCluster1.ptt\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"skinCluster1GroupId.msg\" \"skinCluster1Set.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[8]\" \"skinCluster1Set.dsm\" -na;\nconnectAttr \"skinCluster1.msg\" \"skinCluster1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"skinCluster1GroupParts.ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[9]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"pCubeShape1Orig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"joint1.msg\" \"bindPose1.m[0]\";\nconnectAttr \"joint2.msg\" \"bindPose1.m[1]\";\nconnectAttr \"joint3.msg\" \"bindPose1.m[2]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[0]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[1]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[2]\";\nconnectAttr \"joint1.bps\" \"bindPose1.wm[0]\";\nconnectAttr \"joint2.bps\" \"bindPose1.wm[1]\";\nconnectAttr \"joint3.bps\" \"bindPose1.wm[2]\";\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert3SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert3.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of ThreeJoints_Joint2_HasZeroWeights.ma\n"
  },
  {
    "path": "maya/scenes/skin/ThreeJoints_Joint3_Unbound_Anim.ma",
    "content": "//Maya ASCII 2019 scene\n//Name: ThreeJointsOneUnboundAnim.ma\n//Last modified: Thu, Oct 03, 2019 10:59:55 AM\n//Codeset: 1252\nrequires maya \"2019\";\nrequires \"stereoCamera\" \"10.0\";\nrequires \"mtoa\" \"3.2.2\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2019\";\nfileInfo \"version\" \"2019\";\nfileInfo \"cutIdentifier\" \"201907021615-48e59968a3\";\nfileInfo \"osv\" \"Microsoft Windows 10 Technical Preview  (Build 18362)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"837A94B4-479C-C7D1-8D55-D0A283AA098F\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0.14951017910301445 13.208110765474556 42.831337321093791 ;\n\tsetAttr \".r\" -type \"double3\" -17.138352729602524 0.20000000000001003 -1.7393764383018542e-16 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"0C43CA0F-4A36-E7D6-A654-028588B5FCFE\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 44.82186966202994;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"4A96CBA0-46E5-ABDA-6AB7-38BE612DADA8\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -90 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"92101AC9-461B-F0CE-20E3-CA83F7C3FA6D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"front\";\n\trename -uid \"897E2967-4276-8F8D-9A8E-8785B71AF877\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"93A44E1B-442D-00AB-30C3-4581D5349F4B\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 13.777399674825348;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"side\";\n\trename -uid \"6B7B899E-4AF3-3F50-88D8-C09E24C1CA88\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 90 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"8027E0C9-4497-9CF6-01E0-DBBDFBB6CC21\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode joint -n \"joint1\";\n\trename -uid \"9D0E62DA-4724-4617-5064-C4BBA64B53DB\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 90 ;\n\tsetAttr \".bps\" -type \"matrix\" 0 1 0 0 -1 0 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint2\" -p \"joint1\";\n\trename -uid \"70201B03-4483-E7A1-B050-D7AB9D0B119B\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 1;\n\tsetAttr \".t\" -type \"double3\" 1 0 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 0 1 0 0 -1 0 0 0 0 0 1 0 0 1 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint3\" -p \"joint2\";\n\trename -uid \"9DC651B6-46FA-D684-DD49-82927AF844E7\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 2;\n\tsetAttr \".t\" -type \"double3\" 1 0 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 -90 ;\n\tsetAttr \".radi\" 0.5;\ncreateNode transform -n \"pCylinder1\";\n\trename -uid \"020225D6-4A36-E838-DF32-C7A4B46D153A\";\n\tsetAttr \".t\" -type \"double3\" 0 1 0 ;\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\n\tsetAttr \".rp\" -type \"double3\" 0 -1 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0 -1 0 ;\ncreateNode mesh -n \"pCylinderShape1\" -p \"pCylinder1\";\n\trename -uid \"DB8126A6-457E-AC3D-4A8C-D4886B77EDB9\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".vcs\" 2;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode mesh -n \"pCylinderShape1Orig\" -p \"pCylinder1\";\n\trename -uid \"E9E2A7A6-43A0-5176-D251-2C9C560ECDC2\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"6D7FF357-4C29-B692-69B6-56BC5D6604BB\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"E4BC033C-4268-4110-EDDB-8CA78D09413C\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"8C6C38DD-4DF1-54C8-EEA8-B6B7EF0302EA\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"712DC342-4E82-E20D-B253-5AACEB8A03C8\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"7472A17A-46F8-B10D-0D54-D28D0DA6EBFD\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"DD3855CA-40EB-B206-FAA6-06BD9A8E7D99\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"796EE7DD-4482-7218-9A80-FC9EE64E82DE\";\n\tsetAttr \".g\" yes;\ncreateNode polyCylinder -n \"polyCylinder1\";\n\trename -uid \"5CB10F63-4C80-CBBA-5F1E-DC947D2FA609\";\n\tsetAttr \".sh\" 2;\n\tsetAttr \".sc\" 1;\n\tsetAttr \".cuv\" 3;\ncreateNode skinCluster -n \"skinCluster1\";\n\trename -uid \"20BD57C1-48EA-6481-DADB-7B953AFC957F\";\n\tsetAttr -s 62 \".wl\";\n\tsetAttr \".wl[0:61].w\"\n\t\t2 0 0.79999979288866319 1 0.20000020711133684\n\t\t2 0 0.79999979329356141 1 0.20000020670643864\n\t\t2 0 0.79999980872432863 1 0.2000001912756714\n\t\t2 0 0.79999983211558745 1 0.20000016788441249\n\t\t2 0 0.79999984741213859 1 0.20000015258786144\n\t\t2 0 0.79999985025554377 1 0.20000014974445623\n\t\t2 0 0.79999987743885315 1 0.20000012256114688\n\t\t2 0 0.7999999040807344 1 0.2000000959192656\n\t\t2 0 0.79999991351646249 1 0.20000008648353748\n\t\t2 0 0.79999992370606199 1 0.20000007629393804\n\t\t2 0 0.79999991351646249 1 0.20000008648353748\n\t\t2 0 0.79999993072261755 1 0.20000006927738251\n\t\t2 0 0.79999994615338976 1 0.20000005384661021\n\t\t2 0 0.79999994979638323 1 0.20000005020361675\n\t\t2 0 0.79999996185302902 1 0.20000003814697098\n\t\t2 0 0.79999997677739121 1 0.20000002322260887\n\t\t2 0 0.79999998400638872 1 0.20000001599361128\n\t\t2 0 0.79999998822604923 1 0.2000000117739508\n\t\t2 0 0.79999999197033855 1 0.20000000802966142\n\t\t2 0 0.8 1 0.1999999999999999\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.20000020711133684 1 0.79999979288866319\n\t\t2 0 0.20000020670643864 1 0.79999979329356141\n\t\t2 0 0.2000001912756714 1 0.79999980872432863\n\t\t2 0 0.20000016788441249 1 0.79999983211558745\n\t\t2 0 0.20000015258786144 1 0.79999984741213859\n\t\t2 0 0.20000014974445623 1 0.79999985025554377\n\t\t2 0 0.20000012256114688 1 0.79999987743885315\n\t\t2 0 0.2000000959192656 1 0.7999999040807344\n\t\t2 0 0.20000008648353748 1 0.79999991351646249\n\t\t2 0 0.20000007629393804 1 0.79999992370606199\n\t\t2 0 0.20000008648353748 1 0.79999991351646249\n\t\t2 0 0.20000006927738251 1 0.79999993072261755\n\t\t2 0 0.20000005384661021 1 0.79999994615338976\n\t\t2 0 0.20000005020361675 1 0.79999994979638323\n\t\t2 0 0.20000003814697098 1 0.79999996185302902\n\t\t2 0 0.20000002322260887 1 0.79999997677739121\n\t\t2 0 0.20000001599361128 1 0.79999998400638872\n\t\t2 0 0.2000000117739508 1 0.79999998822604923\n\t\t2 0 0.20000000802966142 1 0.79999999197033855\n\t\t2 0 0.1999999999999999 1 0.8\n\t\t1 0 1\n\t\t1 1 1;\n\tsetAttr -s 2 \".pm\";\n\tsetAttr \".pm[0]\" -type \"matrix\" 0 -1 0 -0 1 0 -0 0 0 -0 1 -0 -0 0 -0 1;\n\tsetAttr \".pm[1]\" -type \"matrix\" 0 -1 0 -0 1 0 -0 0 0 -0 1 -0 -1 0 -0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 1;\n\tsetAttr -s 2 \".ma\";\n\tsetAttr -s 2 \".dpf[0:1]\"  4 4;\n\tsetAttr -s 2 \".lw\";\n\tsetAttr -s 2 \".lw\";\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".mi\" 4;\n\tsetAttr \".ucm\" yes;\n\tsetAttr -s 2 \".ifcl\";\n\tsetAttr -s 2 \".ifcl\";\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"25CC2F2B-473F-8262-7E05-5BB25865572A\";\ncreateNode objectSet -n \"skinCluster1Set\";\n\trename -uid \"F2D26BCC-4E15-6B4F-C43B-FCB6132E7A62\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster1GroupId\";\n\trename -uid \"DEC75742-452D-F68A-A0A7-14B45FCB26D5\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster1GroupParts\";\n\trename -uid \"D4639609-47AB-11A8-CF37-3BB43F2A665E\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"40904345-42F2-FEEA-6B9A-7391162BE080\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"99555917-4554-0C7D-23FF-0A905E2B27F3\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"188EBFB6-495D-BBFD-A0A6-AC91F9398B14\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode dagPose -n \"bindPose1\";\n\trename -uid \"54E4539C-4F37-56A6-CC01-30A6156F956D\";\n\tsetAttr -s 2 \".wm\";\n\tsetAttr -s 2 \".xm\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0.70710678118654757 0.70710678118654757 1 1 1 yes;\n\tsetAttr \".xm[1]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr -s 2 \".m\";\n\tsetAttr -s 2 \".p\";\n\tsetAttr \".bp\" yes;\ncreateNode animCurveTL -n \"joint2_translateY\";\n\trename -uid \"2EDE69D3-426D-E03C-29D7-7BA80B797B16\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 20 -1 40 0;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"44446817-4DB2-B135-D560-EDBBD13D900D\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 848\\n            -height 499\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 847\\n            -height 499\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1906\\n            -height 1046\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 847\\n            -height 499\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -autoFitTime 0\\n\"\n\t\t+ \"                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n\"\n\t\t+ \"                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n\"\n\t\t+ \"                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 0 \\n                $editorName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n\"\n\t\t+ \"                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -connectionStyle \\\"bezier\\\" \\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                -hasWatchpoint 0\\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n\"\n\t\t+ \"                -copyConnectionsOnPaste 0\\n                -connectionStyle \\\"bezier\\\" \\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                -hasWatchpoint 0\\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\n{ string $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n\"\n\t\t+ \"                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n\"\n\t\t+ \"                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n\"\n\t\t+ \"                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName; };\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Front View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Front View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -cam `findStartUpCamera front` \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1906\\\\n    -height 1046\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Front View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -cam `findStartUpCamera front` \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1906\\\\n    -height 1046\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"4E8FAE43-4BA4-C029-2123-878EBBA789DE\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min -1 -max 40 -ast 1 -aet 40 \";\n\tsetAttr \".st\" 6;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" -1;\n\tsetAttr \".unw\" -1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".macc\";\n\tsetAttr -k on \".macd\";\n\tsetAttr -k on \".macq\";\n\tsetAttr -cb on \".ifg\";\n\tsetAttr -k on \".clip\";\n\tsetAttr -k on \".edm\";\n\tsetAttr -k on \".edl\";\n\tsetAttr \".ren\" -type \"string\" \"arnold\";\n\tsetAttr -av -k on \".esr\";\n\tsetAttr -k on \".ors\";\n\tsetAttr -cb on \".sdf\";\n\tsetAttr -cb on \".imfkey\";\n\tsetAttr -k on \".gama\";\n\tsetAttr -cb on \".ar\";\n\tsetAttr -av \".bfs\";\n\tsetAttr -k on \".be\";\n\tsetAttr -k on \".fec\";\n\tsetAttr -k on \".ofc\";\n\tsetAttr -cb on \".ofe\";\n\tsetAttr -cb on \".efe\";\n\tsetAttr -cb on \".umfn\";\n\tsetAttr -cb on \".ufe\";\n\tsetAttr -k on \".comp\";\n\tsetAttr -k on \".cth\";\n\tsetAttr -k on \".soll\";\n\tsetAttr -k on \".rd\";\n\tsetAttr -k on \".lp\";\n\tsetAttr -k on \".sp\";\n\tsetAttr -k on \".shs\";\n\tsetAttr -k on \".lpr\";\n\tsetAttr -cb on \".gv\";\n\tsetAttr -cb on \".sv\";\n\tsetAttr -k on \".mm\";\n\tsetAttr -k on \".npu\";\n\tsetAttr -k on \".itf\";\n\tsetAttr -k on \".shp\";\n\tsetAttr -cb on \".isp\";\n\tsetAttr -k on \".uf\";\n\tsetAttr -k on \".oi\";\n\tsetAttr -k on \".rut\";\n\tsetAttr -av -k on \".mbf\";\n\tsetAttr -k on \".afp\";\n\tsetAttr -k on \".pfb\";\n\tsetAttr -cb on \".pfrm\";\n\tsetAttr -cb on \".pfom\";\n\tsetAttr -av -k on \".bll\";\n\tsetAttr -k on \".bls\";\n\tsetAttr -k on \".smv\";\n\tsetAttr -k on \".ubc\";\n\tsetAttr -k on \".mbc\";\n\tsetAttr -k on \".udbx\";\n\tsetAttr -k on \".smc\";\n\tsetAttr -k on \".kmv\";\n\tsetAttr -cb on \".isl\";\n\tsetAttr -cb on \".ism\";\n\tsetAttr -cb on \".imb\";\n\tsetAttr -k on \".rlen\";\n\tsetAttr -av -k on \".frts\";\n\tsetAttr -k on \".tlwd\";\n\tsetAttr -k on \".tlht\";\n\tsetAttr -k on \".jfc\";\n\tsetAttr -cb on \".rsb\";\n\tsetAttr -k on \".ope\";\n\tsetAttr -k on \".oppf\";\n\tsetAttr -cb on \".hbl\";\nselect -ne :defaultResolution;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"joint1.s\" \"joint2.is\";\nconnectAttr \"joint2_translateY.o\" \"joint2.ty\";\nconnectAttr \"joint2.s\" \"joint3.is\";\nconnectAttr \"skinCluster1GroupId.id\" \"pCylinderShape1.iog.og[4].gid\";\nconnectAttr \"skinCluster1Set.mwc\" \"pCylinderShape1.iog.og[4].gco\";\nconnectAttr \"groupId2.id\" \"pCylinderShape1.iog.og[5].gid\";\nconnectAttr \"tweakSet1.mwc\" \"pCylinderShape1.iog.og[5].gco\";\nconnectAttr \"skinCluster1.og[0]\" \"pCylinderShape1.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"pCylinderShape1.twl\";\nconnectAttr \"polyCylinder1.out\" \"pCylinderShape1Orig.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"skinCluster1GroupParts.og\" \"skinCluster1.ip[0].ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1.ip[0].gi\";\nconnectAttr \"bindPose1.msg\" \"skinCluster1.bp\";\nconnectAttr \"joint1.wm\" \"skinCluster1.ma[0]\";\nconnectAttr \"joint2.wm\" \"skinCluster1.ma[1]\";\nconnectAttr \"joint1.liw\" \"skinCluster1.lw[0]\";\nconnectAttr \"joint2.liw\" \"skinCluster1.lw[1]\";\nconnectAttr \"joint1.obcc\" \"skinCluster1.ifcl[0]\";\nconnectAttr \"joint2.obcc\" \"skinCluster1.ifcl[1]\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"skinCluster1GroupId.msg\" \"skinCluster1Set.gn\" -na;\nconnectAttr \"pCylinderShape1.iog.og[4]\" \"skinCluster1Set.dsm\" -na;\nconnectAttr \"skinCluster1.msg\" \"skinCluster1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"skinCluster1GroupParts.ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"pCylinderShape1.iog.og[5]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"pCylinderShape1Orig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"joint1.msg\" \"bindPose1.m[0]\";\nconnectAttr \"joint2.msg\" \"bindPose1.m[1]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[0]\";\nconnectAttr \"bindPose1.m[0]\" \"bindPose1.p[1]\";\nconnectAttr \"joint1.bps\" \"bindPose1.wm[0]\";\nconnectAttr \"joint2.bps\" \"bindPose1.wm[1]\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCylinderShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of ThreeJointsOneUnboundAnim.ma\n"
  },
  {
    "path": "maya/scenes/skin/ThreeJoints_RootJoint_Unbound.ma",
    "content": "//Maya ASCII 2019 scene\n//Name: ThreeJoints_RootJoint_Unbound.ma\n//Last modified: Thu, Oct 03, 2019 04:28:39 PM\n//Codeset: 1252\nrequires maya \"2019\";\nrequires \"stereoCamera\" \"10.0\";\nrequires \"mtoa\" \"3.2.2\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2019\";\nfileInfo \"version\" \"2019\";\nfileInfo \"cutIdentifier\" \"201907021615-48e59968a3\";\nfileInfo \"osv\" \"Microsoft Windows 10 Technical Preview  (Build 18362)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"837A94B4-479C-C7D1-8D55-D0A283AA098F\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -0.098142079407565808 0.93736545495073598 4.1633664752587558 ;\n\tsetAttr \".r\" -type \"double3\" 0.8616472703980258 -1.3999999999971817 1.5534689419121313e-18 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"0C43CA0F-4A36-E7D6-A654-028588B5FCFE\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999986;\n\tsetAttr \".coi\" 4.1650806300404906;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.003608405590057373 1 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\n\tsetAttr \".ai_translator\" -type \"string\" \"perspective\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"4A96CBA0-46E5-ABDA-6AB7-38BE612DADA8\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -90 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"92101AC9-461B-F0CE-20E3-CA83F7C3FA6D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"front\";\n\trename -uid \"897E2967-4276-8F8D-9A8E-8785B71AF877\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -0.14866281538374637 1.3268560364707338 1000.1041969340417 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"93A44E1B-442D-00AB-30C3-4581D5349F4B\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1041969340417;\n\tsetAttr \".ow\" 6.7552739474245271;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode transform -s -n \"side\";\n\trename -uid \"6B7B899E-4AF3-3F50-88D8-C09E24C1CA88\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 90 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"8027E0C9-4497-9CF6-01E0-DBBDFBB6CC21\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\n\tsetAttr \".ai_translator\" -type \"string\" \"orthographic\";\ncreateNode joint -n \"joint1\";\n\trename -uid \"9D0E62DA-4724-4617-5064-C4BBA64B53DB\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 90 ;\n\tsetAttr \".ssc\" no;\n\tsetAttr \".bps\" -type \"matrix\" 0 1 0 0 -1 0 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr \".radi\" 0.5;\n\tsetAttr \".liw\" yes;\ncreateNode joint -n \"joint2\" -p \"joint1\";\n\trename -uid \"70201B03-4483-E7A1-B050-D7AB9D0B119B\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".t\" -type \"double3\" 1 0 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".ssc\" no;\n\tsetAttr \".bps\" -type \"matrix\" 0 1 0 0 -1 0 0 0 0 0 1 0 0 1 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint3\" -p \"joint2\";\n\trename -uid \"9DC651B6-46FA-D684-DD49-82927AF844E7\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 1;\n\tsetAttr \".t\" -type \"double3\" 1 0 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 -90 ;\n\tsetAttr \".ssc\" no;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 2 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode transform -n \"pCube1\";\n\trename -uid \"5BDA7F59-4424-C970-6510-4E86FDA4FBEA\";\n\tsetAttr \".t\" -type \"double3\" 0 1 0 ;\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\n\tsetAttr \".rp\" -type \"double3\" 0 -1 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0 -1 0 ;\ncreateNode mesh -n \"pCubeShape1\" -p \"pCube1\";\n\trename -uid \"F77E161C-4693-FE77-62C3-7685B83AC657\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".vcs\" 2;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode mesh -n \"pCubeShape1Orig\" -p \"pCube1\";\n\trename -uid \"A9CDD18E-46ED-9AB4-6620-018D8BC0C033\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".ai_translator\" -type \"string\" \"polymesh\";\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"C3A44E09-454A-8D8F-C1E5-4E8CD44925E3\";\n\tsetAttr -s 4 \".lnk\";\n\tsetAttr -s 4 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"AE0B5101-40A0-B56E-7A47-BE8D61ED1E6D\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"D2C7CF84-4536-8587-0DA9-D4990C9ED29B\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"FD117773-414C-372B-B38C-FC87634D8FFA\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"7472A17A-46F8-B10D-0D54-D28D0DA6EBFD\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"E95A480A-4ACA-C62C-A4F2-90A3F6634D94\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"796EE7DD-4482-7218-9A80-FC9EE64E82DE\";\n\tsetAttr \".g\" yes;\ncreateNode animCurveTL -n \"joint2_translateY\";\n\trename -uid \"2EDE69D3-426D-E03C-29D7-7BA80B797B16\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr \".ktv[0]\"  40 0;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"44446817-4DB2-B135-D560-EDBBD13D900D\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 847\\n            -height 499\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 847\\n            -height 499\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1705\\n            -height 1046\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 847\\n            -height 499\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -autoFitTime 0\\n\"\n\t\t+ \"                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n\"\n\t\t+ \"                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n\"\n\t\t+ \"                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 0 \\n                $editorName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -autoFitTime 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n\"\n\t\t+ \"                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -connectionStyle \\\"bezier\\\" \\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                -hasWatchpoint 0\\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n\"\n\t\t+ \"                -copyConnectionsOnPaste 0\\n                -connectionStyle \\\"bezier\\\" \\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                -hasWatchpoint 0\\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\n{ string $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n\"\n\t\t+ \"                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n\"\n\t\t+ \"                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n\"\n\t\t+ \"                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName; };\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Front View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Front View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -cam `findStartUpCamera front` \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1705\\\\n    -height 1046\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Front View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -cam `findStartUpCamera front` \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1705\\\\n    -height 1046\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"4E8FAE43-4BA4-C029-2123-878EBBA789DE\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 40 -ast 1 -aet 40 \";\n\tsetAttr \".st\" 6;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"375EBF11-4DCD-EB77-E600-18B25E5195F4\";\n\tsetAttr \".h\" 2;\n\tsetAttr \".sh\" 2;\n\tsetAttr \".cuv\" 4;\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"0BA07249-46CE-0489-2FC2-B992855D6DE8\";\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"AF5AA1B4-462A-F963-D78D-12BF12459397\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"00B09CC7-41AF-9443-1C80-659619FEE7A8\";\ncreateNode lambert -n \"lambert3\";\n\trename -uid \"EF1C9127-4DBD-9E8C-B141-6CB7839BCD64\";\n\tsetAttr \".c\" -type \"float3\" 0 1 0 ;\n\tsetAttr \".it\" -type \"float3\" 0.5 0.5 0.5 ;\ncreateNode shadingEngine -n \"lambert3SG\";\n\trename -uid \"A815FDB8-4353-5C3A-27E3-31B31A589505\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"636F354B-49E4-056D-B293-62A51E72B770\";\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"355DC2AE-4BB3-F1CD-F398-ADBB79FA50A0\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\taddAttr -ci true -sn \"selOnly\" -ln \"selOnly\" -at \"long\";\n\taddAttr -ci true -sn \"visOnly\" -ln \"visOnly\" -at \"long\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/scenes/skin/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"ThreeJoints_Joint2_HasZeroWeights\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2019 Peter\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"-dac\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 1;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\n\tsetAttr \".selOnly\" 1;\n\tsetAttr \".visOnly\" 1;\ncreateNode skinCluster -n \"skinCluster1\";\n\trename -uid \"AFA198F5-4AB2-AF72-AE83-F0BFFE476235\";\n\tsetAttr -s 12 \".wl\";\n\tsetAttr \".wl[0:11].w\"\n\t\t2 0 0.99590163934426235 1 0.0040983606557377043\n\t\t2 0 0.99590163934426235 1 0.0040983606557377043\n\t\t2 0 0.99590163934426224 1 0.0040983606557377112\n\t\t2 0 0.99590163934426224 1 0.0040983606557377112\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.5 1 0.5\n\t\t2 0 0.99590163934426224 1 0.0040983606557377112\n\t\t2 0 0.99590163934426224 1 0.0040983606557377112\n\t\t2 0 0.99590163934426235 1 0.0040983606557377043\n\t\t2 0 0.99590163934426235 1 0.0040983606557377043;\n\tsetAttr -s 2 \".pm\";\n\tsetAttr \".pm[0]\" -type \"matrix\" 0 -1 0 -0 1 0 -0 0 0 -0 1 -0 -1 0 -0 1;\n\tsetAttr \".pm[1]\" -type \"matrix\" 1 -0 0 -0 -0 1 -0 0 0 -0 1 -0 -0 -2 -0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 1;\n\tsetAttr -s 2 \".ma\";\n\tsetAttr -s 2 \".dpf[0:1]\"  10 10;\n\tsetAttr -s 2 \".lw\";\n\tsetAttr -s 2 \".lw\";\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".mi\" 4;\n\tsetAttr \".ucm\" yes;\n\tsetAttr \".nw\" 2;\n\tsetAttr -s 2 \".ifcl\";\n\tsetAttr -s 2 \".ifcl\";\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"F1B87ABE-4453-081E-3D25-8B9D368ACDD3\";\ncreateNode objectSet -n \"skinCluster1Set\";\n\trename -uid \"DC8675F1-4AF0-BFB4-D2C9-CE8C79A29A70\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster1GroupId\";\n\trename -uid \"8C170040-4746-0DFD-367E-768039800803\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster1GroupParts\";\n\trename -uid \"CC404BF5-4108-774A-7704-C7989BDFF92D\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"B11E55D2-4923-32BD-A0DF-7E95DE4DD7D9\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"24D3EF0B-4E7F-1A68-0917-57AD4EFAF173\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"4CDED3CA-42C2-8749-5576-488524F88E45\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode dagPose -n \"bindPose1\";\n\trename -uid \"9F1B0C07-45E9-AB9F-4997-29BC71DB5820\";\n\tsetAttr -s 3 \".wm\";\n\tsetAttr -s 3 \".xm\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0.70710678118654757 0.70710678118654757 1 1 1 no;\n\tsetAttr \".xm[1]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 no;\n\tsetAttr \".xm[2]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 -0.70710678118654757 0.70710678118654757 1 1 1 no;\n\tsetAttr -s 3 \".m\";\n\tsetAttr -s 3 \".p\";\n\tsetAttr -s 3 \".g[0:2]\" yes no no;\n\tsetAttr \".bp\" yes;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 6 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".macc\";\n\tsetAttr -k on \".macd\";\n\tsetAttr -k on \".macq\";\n\tsetAttr -cb on \".ifg\";\n\tsetAttr -k on \".clip\";\n\tsetAttr -k on \".edm\";\n\tsetAttr -k on \".edl\";\n\tsetAttr \".ren\" -type \"string\" \"arnold\";\n\tsetAttr -av -k on \".esr\";\n\tsetAttr -k on \".ors\";\n\tsetAttr -cb on \".sdf\";\n\tsetAttr -cb on \".imfkey\";\n\tsetAttr -k on \".gama\";\n\tsetAttr -cb on \".ar\";\n\tsetAttr -av \".bfs\";\n\tsetAttr -k on \".be\";\n\tsetAttr -k on \".fec\";\n\tsetAttr -k on \".ofc\";\n\tsetAttr -cb on \".ofe\";\n\tsetAttr -cb on \".efe\";\n\tsetAttr -cb on \".umfn\";\n\tsetAttr -cb on \".ufe\";\n\tsetAttr -k on \".comp\";\n\tsetAttr -k on \".cth\";\n\tsetAttr -k on \".soll\";\n\tsetAttr -k on \".rd\";\n\tsetAttr -k on \".lp\";\n\tsetAttr -k on \".sp\";\n\tsetAttr -k on \".shs\";\n\tsetAttr -k on \".lpr\";\n\tsetAttr -cb on \".gv\";\n\tsetAttr -cb on \".sv\";\n\tsetAttr -k on \".mm\";\n\tsetAttr -k on \".npu\";\n\tsetAttr -k on \".itf\";\n\tsetAttr -k on \".shp\";\n\tsetAttr -cb on \".isp\";\n\tsetAttr -k on \".uf\";\n\tsetAttr -k on \".oi\";\n\tsetAttr -k on \".rut\";\n\tsetAttr -av -k on \".mbf\";\n\tsetAttr -k on \".afp\";\n\tsetAttr -k on \".pfb\";\n\tsetAttr -cb on \".pfrm\";\n\tsetAttr -cb on \".pfom\";\n\tsetAttr -av -k on \".bll\";\n\tsetAttr -k on \".bls\";\n\tsetAttr -k on \".smv\";\n\tsetAttr -k on \".ubc\";\n\tsetAttr -k on \".mbc\";\n\tsetAttr -k on \".udbx\";\n\tsetAttr -k on \".smc\";\n\tsetAttr -k on \".kmv\";\n\tsetAttr -cb on \".isl\";\n\tsetAttr -cb on \".ism\";\n\tsetAttr -cb on \".imb\";\n\tsetAttr -k on \".rlen\";\n\tsetAttr -av -k on \".frts\";\n\tsetAttr -k on \".tlwd\";\n\tsetAttr -k on \".tlht\";\n\tsetAttr -k on \".jfc\";\n\tsetAttr -cb on \".rsb\";\n\tsetAttr -k on \".ope\";\n\tsetAttr -k on \".oppf\";\n\tsetAttr -cb on \".hbl\";\nselect -ne :defaultResolution;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nselect -ne :ikSystem;\n\tsetAttr -s 4 \".sol\";\nconnectAttr \"joint1.s\" \"joint2.is\";\nconnectAttr \"joint2.s\" \"joint3.is\";\nconnectAttr \"skinCluster1GroupId.id\" \"pCubeShape1.iog.og[10].gid\";\nconnectAttr \"skinCluster1Set.mwc\" \"pCubeShape1.iog.og[10].gco\";\nconnectAttr \"groupId2.id\" \"pCubeShape1.iog.og[11].gid\";\nconnectAttr \"tweakSet1.mwc\" \"pCubeShape1.iog.og[11].gco\";\nconnectAttr \"skinCluster1.og[0]\" \"pCubeShape1.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"pCubeShape1.twl\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1Orig.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"lambert2SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo1.m\";\nconnectAttr \"lambert3.oc\" \"lambert3SG.ss\";\nconnectAttr \"lambert3SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"lambert3.msg\" \"materialInfo2.m\";\nconnectAttr \"skinCluster1GroupParts.og\" \"skinCluster1.ip[0].ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1.ip[0].gi\";\nconnectAttr \"bindPose1.msg\" \"skinCluster1.bp\";\nconnectAttr \"joint2.wm\" \"skinCluster1.ma[0]\";\nconnectAttr \"joint3.wm\" \"skinCluster1.ma[1]\";\nconnectAttr \"joint2.liw\" \"skinCluster1.lw[0]\";\nconnectAttr \"joint3.liw\" \"skinCluster1.lw[1]\";\nconnectAttr \"joint2.obcc\" \"skinCluster1.ifcl[0]\";\nconnectAttr \"joint3.obcc\" \"skinCluster1.ifcl[1]\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"skinCluster1GroupId.msg\" \"skinCluster1Set.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[10]\" \"skinCluster1Set.dsm\" -na;\nconnectAttr \"skinCluster1.msg\" \"skinCluster1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"skinCluster1GroupParts.ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"pCubeShape1.iog.og[11]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"pCubeShape1Orig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"joint1.msg\" \"bindPose1.m[0]\";\nconnectAttr \"joint2.msg\" \"bindPose1.m[1]\";\nconnectAttr \"joint3.msg\" \"bindPose1.m[2]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[0]\";\nconnectAttr \"bindPose1.m[0]\" \"bindPose1.p[1]\";\nconnectAttr \"bindPose1.m[1]\" \"bindPose1.p[2]\";\nconnectAttr \"joint1.bps\" \"bindPose1.wm[0]\";\nconnectAttr \"joint2.bps\" \"bindPose1.wm[1]\";\nconnectAttr \"joint3.bps\" \"bindPose1.wm[2]\";\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert3SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert3.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of ThreeJoints_RootJoint_Unbound.ma\n"
  },
  {
    "path": "maya/scenes/skin/TwoJointsLogicalParentAnim.ma",
    "content": "//Maya ASCII 2018 scene\n//Name: TwoJointsLogicalParentAnim.ma\n//Last modified: Mon, Aug 03, 2020 09:41:28 PM\n//Codeset: 1252\nrequires maya \"2018\";\nrequires \"stereoCamera\" \"10.0\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201706261615-f9658c4cfc\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"8CD21505-4F41-0EBC-C2DB-43A83575D31B\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 2.3012834864897771 8.1860729040336011 2.0575849090343183 ;\n\tsetAttr \".r\" -type \"double3\" -69.33835272961548 48.20000000000266 4.7717925583930609e-15 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"4A5352E1-4298-5A80-99E8-E89AA02118D4\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 8.7487913984285033;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"1F01585E-4CC0-8F39-6482-E4B639261431\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"1B627A97-427B-F780-F71F-4EAB8C00B45D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"2EAB68E5-4B73-9CE6-BA73-D58DF0EC7D84\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"E3542034-4BAB-50AC-18DC-329FB9A2C865\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"3402124E-4596-DA81-86C4-7C9102273A22\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"18D169A6-45F4-6472-9C86-BCA384B6FFE5\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pPlane1\";\n\trename -uid \"4E3330FF-4E6A-98B5-67E0-26BD17D1FB74\";\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\ncreateNode mesh -n \"pPlaneShape1\" -p \"pPlane1\";\n\trename -uid \"86D33D5A-4638-5A57-FCC3-77A3551D04BE\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\ncreateNode mesh -n \"pPlaneShape1Orig\" -p \"pPlane1\";\n\trename -uid \"53C5809C-44FA-FC70-5E35-8388D7C2CE26\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode joint -n \"joint1\";\n\trename -uid \"7EC7E1D3-40C3-CC45-B1FA-06BA924282BD\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\taddAttr -ci true -sn \"mayagltf_LogicalParent\" -ln \"mayagltf_LogicalParent\" -dt \"string\";\n\taddAttr -ci true -sn \"MayaToGltf_LogicalParent\" -ln \"MayaToGltf_LogicalParent\" -dt \"string\";\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 -2 0 0 1;\n\tsetAttr \".radi\" 1.5;\ncreateNode transform -n \"pPlane2\";\n\trename -uid \"7B2A1F47-482F-33B9-1CDE-BBA9066D6C11\";\n\tsetAttr \".t\" -type \"double3\" 0 -0.001 0 ;\ncreateNode mesh -n \"pPlaneShape2\" -p \"pPlane2\";\n\trename -uid \"E7BBE908-4344-698A-6637-93AE511AB51D\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"AC9E4F93-492C-C26B-B369-DF9DB818C401\";\n\tsetAttr \".t\" -type \"double3\" -7.3508970454635989 9.4457441853891382 2.1920868267174347 ;\n\tsetAttr \".r\" -type \"double3\" -50.599449677230631 -75.400000000000233 1.2617775931321298e-14 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"8BEA422B-4FEC-C342-890F-B5A0BDEE246D\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 12.14156872389308;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.64949999999999974 0 0 ;\n\tsetAttr \".dr\" yes;\ncreateNode joint -n \"joint2\";\n\trename -uid \"8F20048F-46FB-84F7-49FF-0BB606EC51DC\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\taddAttr -ci true -sn \"Maya2glTF_LogicalParent\" -ln \"Maya2glTF_LogicalParent\" -nn \"glTF Logical Parent\" \n\t\t-dt \"string\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 2 0 0 1;\n\tsetAttr \".radi\" 1.5;\n\tsetAttr \".Maya2glTF_LogicalParent\" -type \"string\" \"joint1\";\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"B82103A2-4582-C6AA-500E-A7ACA810349E\";\n\tsetAttr -s 4 \".lnk\";\n\tsetAttr -s 4 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"B15D1086-494A-DE87-8830-8BACC5DBF5F5\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"D110B44E-40EF-4664-ED8A-F7BB02960356\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"E9FE2664-4819-8E68-E9EE-7FA015339503\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"80BCB082-4947-3B40-469A-9E8A75F06D68\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"F8D759FB-4A7A-834F-56DC-539CC9B7FBC9\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"C043C05A-4613-24C4-F0A9-5BBBE973034F\";\n\tsetAttr \".g\" yes;\ncreateNode polyPlane -n \"polyPlane1\";\n\trename -uid \"33E023B4-4555-30CD-04E8-C6A3E2A1FD97\";\n\tsetAttr \".w\" 4;\n\tsetAttr \".sw\" 1;\n\tsetAttr \".sh\" 1;\n\tsetAttr \".cuv\" 2;\ncreateNode skinCluster -n \"skinCluster1\";\n\trename -uid \"5A399A6B-42D3-7316-27C9-5FA6622786F0\";\n\tsetAttr -s 4 \".wl\";\n\tsetAttr \".wl[0:3].w\"\n\t\t2 0 0.99994200320725213 1 5.799679274787195e-05\n\t\t2 0 0.0033581065945327282 1 0.99664189340546727\n\t\t2 0 0.99994187001721002 1 5.8129982789978385e-05\n\t\t2 0 0.0026217950507998466 1 0.99737820494920015;\n\tsetAttr -s 2 \".pm\";\n\tsetAttr \".pm[0]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 2 0 0 1;\n\tsetAttr \".pm[1]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 -2 0 0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr -s 2 \".ma\";\n\tsetAttr -s 2 \".dpf[0:1]\"  4 4;\n\tsetAttr -s 2 \".lw\";\n\tsetAttr -s 2 \".lw\";\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".ucm\" yes;\n\tsetAttr -s 2 \".ifcl\";\n\tsetAttr -s 2 \".ifcl\";\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"D60A74B2-4F26-D9EE-7386-CC8ADB6F3DD6\";\ncreateNode objectSet -n \"skinCluster1Set\";\n\trename -uid \"5A937D78-4CBD-21FA-5EE0-E8A6212EB051\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster1GroupId\";\n\trename -uid \"87E9099C-4E80-A106-A433-2CBCD111056E\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster1GroupParts\";\n\trename -uid \"D594BEFC-4ACE-E2F7-BCE1-0180728E1CFB\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"E1D3322E-4014-5F2C-D88D-DEBC520808B7\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"83C28D90-4EBC-6509-A5D9-90AC60793E0E\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"688024B7-42D3-21B4-5133-F4BDD0E497C0\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode dagPose -n \"bindPose1\";\n\trename -uid \"78DFCB5B-4190-9C84-8BCF-CE8CD37E4150\";\n\tsetAttr -s 2 \".wm\";\n\tsetAttr -s 2 \".xm\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 -2 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[1]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr -s 2 \".m\";\n\tsetAttr -s 2 \".p\";\n\tsetAttr \".bp\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"4D348F58-41BD-DE55-DA2C-A497983796C5\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n\"\n\t\t+ \"            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n\"\n\t\t+ \"            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n\"\n\t\t+ \"            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n\"\n\t\t+ \"            -grid 0\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n\"\n\t\t+ \"            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n\"\n\t\t+ \"            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n\"\n\t\t+ \"        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n\"\n\t\t+ \"            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n\"\n\t\t+ \"            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n\"\n\t\t+ \"            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 888\\n            -height 1060\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n\"\n\t\t+ \"            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n\"\n\t\t+ \"            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n\"\n\t\t+ \"            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n\"\n\t\t+ \"                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n\"\n\t\t+ \"                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n\"\n\t\t+ \"                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 1\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n\"\n\t\t+ \"                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n\"\n\t\t+ \"                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n\"\n\t\t+ \"                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n\"\n\t\t+ \"            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 1\\n                -zoom 1\\n\"\n\t\t+ \"                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\"\n\t\t+ \"\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\"\n\t\t+ \"\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n\"\n\t\t+ \"                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n\"\n\t\t+ \"                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n\"\n\t\t+ \"                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -highlightConnections 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n\"\n\t\t+ \"                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -activeTab -1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 1\\n            -showReferenceMembers 1\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n\"\n\t\t+ \"            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n\"\n\t\t+ \"            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 888\\\\n    -height 1060\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 888\\\\n    -height 1060\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"90C32B54-4DF0-4084-5B66-9FAF59E8D63F\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 60 -ast 1 -aet 60 \";\n\tsetAttr \".st\" 6;\ncreateNode polyPlane -n \"polyPlane2\";\n\trename -uid \"6D8B422B-44DA-A21D-55F5-9E9909DB1FAD\";\n\tsetAttr \".w\" 4;\n\tsetAttr \".h\" 7;\n\tsetAttr \".sw\" 1;\n\tsetAttr \".sh\" 1;\n\tsetAttr \".cuv\" 2;\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"D9E6DF44-4333-69BC-B0B4-C3AC2C0D469C\";\n\tsetAttr \".c\" -type \"float3\" 0 0 1 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"B584C217-41A6-54DC-CDB5-E48EEBA6129D\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"1222CACE-4C96-698B-B834-68B648AAE4E2\";\ncreateNode lambert -n \"lambert3\";\n\trename -uid \"BCE20090-4354-D8CA-B2E5-87BEA4F132CF\";\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\ncreateNode shadingEngine -n \"lambert3SG\";\n\trename -uid \"EE6C8C02-40AC-62E5-3372-328DEE5997F7\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"BA96250B-4BCC-A511-03DB-D5AA043058B7\";\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"08B4780C-4BD5-3D8E-22D1-5B85392BD72C\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\ncreateNode animCurveTL -n \"joint1_translateX\";\n\trename -uid \"52C66A0A-47D5-1F79-084E-3692E6459A31\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 -2 20 -2;\ncreateNode animCurveTL -n \"joint1_translateY\";\n\trename -uid \"4D907381-43B4-90A5-746E-84BBFF181447\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"joint1_translateZ\";\n\trename -uid \"5CF165F3-46CC-BA2A-BFDB-89A5AD8183FD\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"joint2_translateX\";\n\trename -uid \"1F12CDFA-424C-69B8-1ADE-4DAFE351ECA2\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 2 20 0;\ncreateNode animCurveTL -n \"joint2_translateY\";\n\trename -uid \"88CA5E06-4FE1-76CC-C7D1-F198C24C384D\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTL -n \"joint2_translateZ\";\n\trename -uid \"2298D201-4B9C-1574-12C7-5FB51B6B78EA\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0.024055984837439849 20 3;\ncreateNode animCurveTU -n \"joint1_visibility\";\n\trename -uid \"38A823B8-467F-5F5D-825E-8B9FC7EE82DD\";\n\tsetAttr \".tan\" 9;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 1 20 1;\n\tsetAttr -s 2 \".kot[0:1]\"  5 5;\ncreateNode animCurveTA -n \"joint1_rotateX\";\n\trename -uid \"1777A4BE-452D-2622-77F9-2AAF401CA554\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTA -n \"joint1_rotateY\";\n\trename -uid \"A3D3D4E2-48BC-1AB0-8114-E8B8DE9A5124\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 -45;\ncreateNode animCurveTA -n \"joint1_rotateZ\";\n\trename -uid \"86A9A638-405C-FD90-C0A4-AE81F551789B\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTU -n \"joint1_scaleX\";\n\trename -uid \"DCCFE614-4B70-5DBA-A4D1-459B72C41E4E\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 1 20 1;\ncreateNode animCurveTU -n \"joint1_scaleY\";\n\trename -uid \"018C54B9-4525-4728-706C-07806505E9ED\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 1 20 1;\ncreateNode animCurveTU -n \"joint1_scaleZ\";\n\trename -uid \"6064A686-4BE4-F699-29D0-3EB58F3508D3\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 1 20 1;\ncreateNode animCurveTU -n \"joint2_visibility\";\n\trename -uid \"37463406-458B-738A-4604-42881C887873\";\n\tsetAttr \".tan\" 9;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 1 20 1;\n\tsetAttr -s 2 \".kot[0:1]\"  5 5;\ncreateNode animCurveTA -n \"joint2_rotateX\";\n\trename -uid \"D65BF286-4050-5973-1EDA-89AF41AEBE3A\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTA -n \"joint2_rotateY\";\n\trename -uid \"18A98FF1-4D7D-3A93-3441-43B2023F46B2\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 -45;\ncreateNode animCurveTA -n \"joint2_rotateZ\";\n\trename -uid \"9F25B4EF-4097-218B-BC94-949C39A0E552\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 0 20 0;\ncreateNode animCurveTU -n \"joint2_scaleX\";\n\trename -uid \"6EB05136-48C8-4BF3-CE22-58B2DE9DF9AB\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 1 20 1;\ncreateNode animCurveTU -n \"joint2_scaleY\";\n\trename -uid \"7DEAB7B8-45A7-57B2-E28A-C6ACB485FDB3\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 1 20 1;\ncreateNode animCurveTU -n \"joint2_scaleZ\";\n\trename -uid \"0D193964-4C5F-A204-90BB-0FA52767796C\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  1 1 20 1;\ncreateNode character -n \"character1\";\n\trename -uid \"798D4E9E-4B85-4F07-12D9-199C98303099\";\n\taddAttr -ci true -h true -sn \"aal\" -ln \"attributeAliasList\" -dt \"attributeAlias\";\n\tsetAttr -s 12 \".dnsm\";\n\tsetAttr -s 6 \".lv[1:6]\"  0.024055984837439849 0 2 0 0 -2;\n\tsetAttr -s 6 \".lv\";\n\tsetAttr -s 6 \".av\";\n\tsetAttr -s 6 \".av\";\n\tsetAttr \".am\" -type \"characterMapping\" 12 \"joint2.rotateZ\" 2 1 \"joint2.rotateY\" \n\t\t2 2 \"joint2.rotateX\" 2 3 \"joint2.translateZ\" 1 1 \"joint2.translateY\" \n\t\t1 2 \"joint2.translateX\" 1 3 \"joint1.rotateZ\" 2 4 \"joint1.rotateY\" \n\t\t2 5 \"joint1.rotateX\" 2 6 \"joint1.translateZ\" 1 4 \"joint1.translateY\" \n\t\t1 5 \"joint1.translateX\" 1 6  ;\n\tsetAttr \".cim\" -type \"Int32Array\" 12 0 1 2 3 4 5\n\t\t 6 7 8 9 10 11 ;\n\tsetAttr \".tcs\" 30;\n\tsetAttr \".tce\" 30;\n\tsetAttr \".aal\" -type \"attributeAlias\" {\"joint2_rotateZ\",\"angularValues[1]\",\"joint2_rotateY\"\n\t\t,\"angularValues[2]\",\"joint2_rotateX\",\"angularValues[3]\",\"joint1_rotateZ\",\"angularValues[4]\"\n\t\t,\"joint1_rotateY\",\"angularValues[5]\",\"joint1_rotateX\",\"angularValues[6]\",\"joint2_translateZ\"\n\t\t,\"linearValues[1]\",\"joint2_translateY\",\"linearValues[2]\",\"joint2_translateX\",\"linearValues[3]\"\n\t\t,\"joint1_translateZ\",\"linearValues[4]\",\"joint1_translateY\",\"linearValues[5]\",\"joint1_translateX\"\n\t\t,\"linearValues[6]\"} ;\ncreateNode trackInfoManager -n \"trackInfoManager1\";\n\trename -uid \"B818FFB7-448A-AE17-CB66-8FB9C17CF5E5\";\ncreateNode clipScheduler -n \"character1Scheduler1\";\n\trename -uid \"F42DDEFE-4734-381A-7C88-4F95CBCA5E9A\";\n\tsetAttr -s 2 \".cl\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -s 2 \".ss\";\n\tsetAttr -s 2 \".ss\";\n\tsetAttr -s 2 \".se\";\n\tsetAttr -s 2 \".se\";\n\tsetAttr -s 2 \".sc\";\n\tsetAttr -s 2 \".sc\";\n\tsetAttr -s 2 \".h\";\n\tsetAttr -s 2 \".h\";\n\tsetAttr -s 2 \".w\";\n\tsetAttr -s 2 \".w\";\n\tsetAttr -s 2 \".ws\";\n\tsetAttr -s 2 \".ws\";\n\tsetAttr -s 2 \".cb\";\n\tsetAttr -s 2 \".cb\";\n\tsetAttr -s 2 \".ca\";\n\tsetAttr -s 2 \".ca\";\n\tsetAttr -s 2 \".ea\";\n\tsetAttr -s 2 \".ea\";\n\tsetAttr -s 2 \".tr[0:1]\"  1 1;\n\tsetAttr \".nt\" 1;\ncreateNode clipLibrary -n \"character1Clips1\";\n\trename -uid \"82BBAE74-4748-87B7-E2A2-40A6173F3F74\";\n\tsetAttr -s 2 \".cel\";\n\tsetAttr -s 12 \".cel[0].cev\";\n\tsetAttr -s 12 \".cel[1].cev\";\n\tsetAttr -s 2 \".sc\";\n\tsetAttr -s 2 \".cl\";\ncreateNode animClip -n \"clip1Source\";\n\trename -uid \"47CD9C5B-4156-AB67-A6A4-199319027469\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 20;\n\tsetAttr \".ci\" no;\ncreateNode animClip -n \"clip1\";\n\trename -uid \"668FEECB-4EB2-3FAA-A19A-B5B86F9501BB\";\n\tsetAttr -s 12 \".ac[0:11]\" yes yes yes yes yes yes yes yes yes yes \n\t\tyes yes;\n\tsetAttr \".sf\" 1;\n\tsetAttr \".ss\" 1;\n\tsetAttr \".se\" 20;\ncreateNode animCurveTL -n \"character1_joint1_translateX\";\n\trename -uid \"C6F77DF6-48C9-A738-5DB6-E4BE3A9A81C2\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  31 -2 50 -2;\ncreateNode animCurveTL -n \"character1_joint1_translateY\";\n\trename -uid \"BAC5930C-4A8C-FA53-1A7B-DFACDFEBF511\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  31 0 50 0;\ncreateNode animCurveTL -n \"character1_joint1_translateZ\";\n\trename -uid \"D1BE0936-46FB-EAF9-E760-1CBD65C98F1C\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  31 0 50 0;\ncreateNode animCurveTL -n \"character1_joint2_translateX\";\n\trename -uid \"81961E91-49F6-DBC0-35A7-259CDD1B4022\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  31 2 50 0;\ncreateNode animCurveTL -n \"character1_joint2_translateY\";\n\trename -uid \"0FB9A80F-4474-7013-A636-D8A019AC6E4A\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  31 0 50 0;\ncreateNode animCurveTL -n \"character1_joint2_translateZ\";\n\trename -uid \"CFACBEC6-4178-7146-FED7-A0A1A80ACE80\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  31 0.024055984837439849 50 -3;\ncreateNode animCurveTA -n \"character1_joint2_rotateZ\";\n\trename -uid \"583FAFD8-46BA-C774-4544-1FA746D879B0\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  31 0 50 0;\ncreateNode animCurveTA -n \"character1_joint2_rotateY\";\n\trename -uid \"BD7849EC-4AEF-B8C4-F356-B8AA0003DAAD\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  31 0 50 45;\ncreateNode animCurveTA -n \"character1_joint2_rotateX\";\n\trename -uid \"A0248903-44D9-B490-65AE-16906D40DA71\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  31 0 50 0;\ncreateNode animCurveTA -n \"character1_joint1_rotateZ\";\n\trename -uid \"9536BD96-45DC-AAB0-610B-CEA27A29B56C\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  31 0 50 0;\ncreateNode animCurveTA -n \"character1_joint1_rotateY\";\n\trename -uid \"3B6AE2CF-475A-E558-6FEA-8B80E3104E78\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  31 0 50 49.307430731008935;\ncreateNode animCurveTA -n \"character1_joint1_rotateX\";\n\trename -uid \"6C849E99-4D0D-EF48-B4B7-DA8CC0250A44\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 2 \".ktv[0:1]\"  31 0 50 0;\ncreateNode animClip -n \"clip2Source\";\n\trename -uid \"C057931F-484F-302E-20FA-8D96F43BDA49\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ss\" 30;\n\tsetAttr \".se\" 60;\n\tsetAttr \".ci\" no;\ncreateNode animClip -n \"clip2\";\n\trename -uid \"EB0A78A8-4B26-83FF-063A-DC883BFF0786\";\n\tsetAttr -s 12 \".ac[0:11]\" yes yes yes yes yes yes yes yes yes yes \n\t\tyes yes;\n\tsetAttr \".sf\" 31;\n\tsetAttr \".ss\" 31;\n\tsetAttr \".se\" 50;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -av -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".o\" 1;\n\tsetAttr -av -k on \".unw\" 1;\n\tsetAttr -av -k on \".etw\";\n\tsetAttr -av -k on \".tps\";\n\tsetAttr -av -k on \".tms\";\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr -av -k on \".ihi\";\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr -av \".ta\";\n\tsetAttr -av \".aoam\";\n\tsetAttr -av \".aora\";\n\tsetAttr -av \".hfs\";\n\tsetAttr -av \".hfe\";\n\tsetAttr -av \".mbe\";\n\tsetAttr -av -k on \".mbsof\";\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 6 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\n\tsetAttr -k on \".ihi\";\nselect -ne :initialShadingGroup;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr -k on \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr -k on \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -av -k on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -k on \".bnm\";\n\tsetAttr -av -k on \".w\" 1280;\n\tsetAttr -av -k on \".h\" 720;\n\tsetAttr -av -k on \".pa\" 1;\n\tsetAttr -av -k on \".al\";\n\tsetAttr -av -k on \".dar\";\n\tsetAttr -av -k on \".ldar\";\n\tsetAttr -av -k on \".dpi\";\n\tsetAttr -av -k on \".off\";\n\tsetAttr -av -k on \".fld\";\n\tsetAttr -av -k on \".zsl\";\n\tsetAttr -av -k on \".isu\";\n\tsetAttr -av -k on \".pdu\";\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k off -cb on \".ctrs\" 256;\n\tsetAttr -av -k off -cb on \".btrs\" 512;\n\tsetAttr -k off -cb on \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off -cb on \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\n\tsetAttr -k on \".soll\";\n\tsetAttr -k on \".sosl\";\n\tsetAttr -k on \".bswa\";\n\tsetAttr -k on \".shml\";\n\tsetAttr -k on \".hwel\";\nselect -ne :characterPartition;\nconnectAttr \"skinCluster1GroupId.id\" \"pPlaneShape1.iog.og[4].gid\";\nconnectAttr \"skinCluster1Set.mwc\" \"pPlaneShape1.iog.og[4].gco\";\nconnectAttr \"groupId2.id\" \"pPlaneShape1.iog.og[5].gid\";\nconnectAttr \"tweakSet1.mwc\" \"pPlaneShape1.iog.og[5].gco\";\nconnectAttr \"skinCluster1.og[0]\" \"pPlaneShape1.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"pPlaneShape1.twl\";\nconnectAttr \"polyPlane1.out\" \"pPlaneShape1Orig.i\";\nconnectAttr \"joint1_scaleX.o\" \"joint1.sx\";\nconnectAttr \"joint1_scaleY.o\" \"joint1.sy\";\nconnectAttr \"joint1_scaleZ.o\" \"joint1.sz\";\nconnectAttr \"character1.lv[6]\" \"joint1.tx\";\nconnectAttr \"character1.lv[5]\" \"joint1.ty\";\nconnectAttr \"character1.lv[4]\" \"joint1.tz\";\nconnectAttr \"joint1_visibility.o\" \"joint1.v\";\nconnectAttr \"character1.av[6]\" \"joint1.rx\";\nconnectAttr \"character1.av[5]\" \"joint1.ry\";\nconnectAttr \"character1.av[4]\" \"joint1.rz\";\nconnectAttr \"polyPlane2.out\" \"pPlaneShape2.i\";\nconnectAttr \"character1.lv[3]\" \"joint2.tx\";\nconnectAttr \"character1.lv[2]\" \"joint2.ty\";\nconnectAttr \"character1.lv[1]\" \"joint2.tz\";\nconnectAttr \"joint2_visibility.o\" \"joint2.v\";\nconnectAttr \"character1.av[3]\" \"joint2.rx\";\nconnectAttr \"character1.av[2]\" \"joint2.ry\";\nconnectAttr \"character1.av[1]\" \"joint2.rz\";\nconnectAttr \"joint2_scaleX.o\" \"joint2.sx\";\nconnectAttr \"joint2_scaleY.o\" \"joint2.sy\";\nconnectAttr \"joint2_scaleZ.o\" \"joint2.sz\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"skinCluster1GroupParts.og\" \"skinCluster1.ip[0].ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1.ip[0].gi\";\nconnectAttr \"bindPose1.msg\" \"skinCluster1.bp\";\nconnectAttr \"joint1.wm\" \"skinCluster1.ma[0]\";\nconnectAttr \"joint2.wm\" \"skinCluster1.ma[1]\";\nconnectAttr \"joint1.liw\" \"skinCluster1.lw[0]\";\nconnectAttr \"joint2.liw\" \"skinCluster1.lw[1]\";\nconnectAttr \"joint1.obcc\" \"skinCluster1.ifcl[0]\";\nconnectAttr \"joint2.obcc\" \"skinCluster1.ifcl[1]\";\nconnectAttr \"joint1.msg\" \"skinCluster1.ptt\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"skinCluster1GroupId.msg\" \"skinCluster1Set.gn\" -na;\nconnectAttr \"pPlaneShape1.iog.og[4]\" \"skinCluster1Set.dsm\" -na;\nconnectAttr \"skinCluster1.msg\" \"skinCluster1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"skinCluster1GroupParts.ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"pPlaneShape1.iog.og[5]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"pPlaneShape1Orig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"joint1.msg\" \"bindPose1.m[0]\";\nconnectAttr \"joint2.msg\" \"bindPose1.m[1]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[0]\";\nconnectAttr \"bindPose1.m[0]\" \"bindPose1.p[1]\";\nconnectAttr \"joint1.bps\" \"bindPose1.wm[0]\";\nconnectAttr \"joint2.bps\" \"bindPose1.wm[1]\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"pPlaneShape2.iog\" \"lambert2SG.dsm\" -na;\nconnectAttr \"lambert2SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo1.m\";\nconnectAttr \"lambert3.oc\" \"lambert3SG.ss\";\nconnectAttr \"pPlaneShape1.iog\" \"lambert3SG.dsm\" -na;\nconnectAttr \"lambert3SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"lambert3.msg\" \"materialInfo2.m\";\nconnectAttr \"joint2.rz\" \"character1.dnsm[0]\";\nconnectAttr \"joint2.ry\" \"character1.dnsm[1]\";\nconnectAttr \"joint2.rx\" \"character1.dnsm[2]\";\nconnectAttr \"joint2.tz\" \"character1.dnsm[3]\";\nconnectAttr \"joint2.ty\" \"character1.dnsm[4]\";\nconnectAttr \"joint2.tx\" \"character1.dnsm[5]\";\nconnectAttr \"joint1.rz\" \"character1.dnsm[6]\";\nconnectAttr \"joint1.ry\" \"character1.dnsm[7]\";\nconnectAttr \"joint1.rx\" \"character1.dnsm[8]\";\nconnectAttr \"joint1.tz\" \"character1.dnsm[9]\";\nconnectAttr \"joint1.ty\" \"character1.dnsm[10]\";\nconnectAttr \"joint1.tx\" \"character1.dnsm[11]\";\nconnectAttr \"character1Scheduler1.ce\" \"character1.cer\";\nconnectAttr \"character1Clips1.cf\" \"character1Scheduler1.cfr\";\nconnectAttr \"character1Clips1.cl[0]\" \"character1Scheduler1.cl[0]\";\nconnectAttr \"character1Clips1.cl[1]\" \"character1Scheduler1.cl[1]\";\nconnectAttr \"clip1.sf\" \"character1Scheduler1.st[0]\";\nconnectAttr \"clip2.sf\" \"character1Scheduler1.st[1]\";\nconnectAttr \"clip1.ss\" \"character1Scheduler1.ss[0]\";\nconnectAttr \"clip2.ss\" \"character1Scheduler1.ss[1]\";\nconnectAttr \"clip1.se\" \"character1Scheduler1.se[0]\";\nconnectAttr \"clip2.se\" \"character1Scheduler1.se[1]\";\nconnectAttr \"clip1.w\" \"character1Scheduler1.w[0]\";\nconnectAttr \"clip2.w\" \"character1Scheduler1.w[1]\";\nconnectAttr \"clip1.ws\" \"character1Scheduler1.ws[0]\";\nconnectAttr \"clip2.ws\" \"character1Scheduler1.ws[1]\";\nconnectAttr \"clip1.ea\" \"character1Scheduler1.ea[0]\";\nconnectAttr \"clip2.ea\" \"character1Scheduler1.ea[1]\";\nconnectAttr \"clip1.cb\" \"character1Scheduler1.cb[0]\";\nconnectAttr \"clip2.cb\" \"character1Scheduler1.cb[1]\";\nconnectAttr \"clip1.ca\" \"character1Scheduler1.ca[0]\";\nconnectAttr \"clip2.ca\" \"character1Scheduler1.ca[1]\";\nconnectAttr \"clip1.sc\" \"character1Scheduler1.sc[0]\";\nconnectAttr \"clip2.sc\" \"character1Scheduler1.sc[1]\";\nconnectAttr \"clip1.h\" \"character1Scheduler1.h[0]\";\nconnectAttr \"clip2.h\" \"character1Scheduler1.h[1]\";\nconnectAttr \"character1.am\" \"character1Clips1.cd[0].cm\";\nconnectAttr \"character1.cim\" \"character1Clips1.cd[0].cim\";\nconnectAttr \"joint2_rotateZ.a\" \"character1Clips1.cel[0].cev[0].cevr\";\nconnectAttr \"joint2_rotateY.a\" \"character1Clips1.cel[0].cev[1].cevr\";\nconnectAttr \"joint2_rotateX.a\" \"character1Clips1.cel[0].cev[2].cevr\";\nconnectAttr \"joint2_translateZ.a\" \"character1Clips1.cel[0].cev[3].cevr\";\nconnectAttr \"joint2_translateY.a\" \"character1Clips1.cel[0].cev[4].cevr\";\nconnectAttr \"joint2_translateX.a\" \"character1Clips1.cel[0].cev[5].cevr\";\nconnectAttr \"joint1_rotateZ.a\" \"character1Clips1.cel[0].cev[6].cevr\";\nconnectAttr \"joint1_rotateY.a\" \"character1Clips1.cel[0].cev[7].cevr\";\nconnectAttr \"joint1_rotateX.a\" \"character1Clips1.cel[0].cev[8].cevr\";\nconnectAttr \"joint1_translateZ.a\" \"character1Clips1.cel[0].cev[9].cevr\";\nconnectAttr \"joint1_translateY.a\" \"character1Clips1.cel[0].cev[10].cevr\";\nconnectAttr \"joint1_translateX.a\" \"character1Clips1.cel[0].cev[11].cevr\";\nconnectAttr \"character1_joint2_rotateZ.a\" \"character1Clips1.cel[1].cev[0].cevr\";\nconnectAttr \"character1_joint2_rotateY.a\" \"character1Clips1.cel[1].cev[1].cevr\";\nconnectAttr \"character1_joint2_rotateX.a\" \"character1Clips1.cel[1].cev[2].cevr\";\nconnectAttr \"character1_joint2_translateZ.a\" \"character1Clips1.cel[1].cev[3].cevr\"\n\t\t;\nconnectAttr \"character1_joint2_translateY.a\" \"character1Clips1.cel[1].cev[4].cevr\"\n\t\t;\nconnectAttr \"character1_joint2_translateX.a\" \"character1Clips1.cel[1].cev[5].cevr\"\n\t\t;\nconnectAttr \"character1_joint1_rotateZ.a\" \"character1Clips1.cel[1].cev[6].cevr\";\nconnectAttr \"character1_joint1_rotateY.a\" \"character1Clips1.cel[1].cev[7].cevr\";\nconnectAttr \"character1_joint1_rotateX.a\" \"character1Clips1.cel[1].cev[8].cevr\";\nconnectAttr \"character1_joint1_translateZ.a\" \"character1Clips1.cel[1].cev[9].cevr\"\n\t\t;\nconnectAttr \"character1_joint1_translateY.a\" \"character1Clips1.cel[1].cev[10].cevr\"\n\t\t;\nconnectAttr \"character1_joint1_translateX.a\" \"character1Clips1.cel[1].cev[11].cevr\"\n\t\t;\nconnectAttr \"clip1Source.cl\" \"character1Clips1.sc[0]\";\nconnectAttr \"clip2Source.cl\" \"character1Clips1.sc[1]\";\nconnectAttr \"clip1Source.cl\" \"clip1.cl\";\nconnectAttr \"clip2Source.cl\" \"clip2.cl\";\nconnectAttr \"trackInfoManager1.msg\" \":sequenceManager1.tim\";\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert3SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert3.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"character1.pa\" \":characterPartition.st\" -na;\n// End of TwoJointsLogicalParentAnim.ma\n"
  },
  {
    "path": "maya/scenes/skin/TwoJointsNoRoot.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: TwoJointsNoRoot.ma\n//Last modified: Sun, Feb 03, 2019 12:07:28 PM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"A3FBC7B3-439A-AE1F-A56A-AC8085332819\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" -1.068922736685308 0.9617245855533233 5.8354943270593571 ;\n\tsetAttr \".r\" -type \"double3\" -9.3383527296054361 3.7999999999998701 0 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"D0D2E591-4271-4F0C-B9E7-4A8B7E1726FC\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999986;\n\tsetAttr \".coi\" 5.9268994115868425;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".tp\" -type \"double3\" -1.4565158422339122 0 0 ;\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"24A3A661-4579-330C-FAB9-BA8211BD328A\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"980EDC9C-4CF0-A0F7-581B-7B9DCEE88558\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"0747463B-456A-38CB-3B59-BF8FC626A20B\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"A26DE820-4DF0-CB4A-FF97-35A866856824\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 16.6097491077917;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"8E948D63-41FF-5B9D-5ED6-C8BF96658D49\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"FD0495E5-417F-4CC9-0522-7B960E2889A8\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"group1\";\n\trename -uid \"30B25484-481D-DC9A-4973-66ABBD206929\";\ncreateNode transform -n \"pCube1\" -p \"group1\";\n\trename -uid \"4A4D3744-4D02-3419-20F0-618A504DE622\";\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\ncreateNode mesh -n \"pCubeShape1\" -p \"|group1|pCube1\";\n\trename -uid \"604DB528-4335-FC5C-EB2A-8B9E4E73870C\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\ncreateNode mesh -n \"pCubeShape1Orig\" -p \"|group1|pCube1\";\n\trename -uid \"A4FB0CD0-433C-4204-D5FE-F285E0FA2001\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode joint -n \"joint1\" -p \"group1\";\n\trename -uid \"98CF5170-4607-BEB6-B61D-81A1008892BB\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".t\" -type \"double3\" -0.58669802684389294 -0.48466358739278137 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 180 1.4124500153760504e-30 90.444144433111987 ;\n\tsetAttr \".bps\" -type \"matrix\" -0.0077517050781625851 0.99996995508284214 0 0 0.99996995508284214 0.0077517050781625851 1.2246467991473535e-16 0\n\t\t 1.2246100047357252e-16 9.4931008119060876e-19 -1 0 0.010932261369762277 -0.48466358739278137 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint2\" -p \"group1\";\n\trename -uid \"D54483BE-4E8C-D0C9-6AB6-CCA13E49AF77\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".t\" -type \"double3\" 0.55754532985786143 0.45551089040674941 -2.6291922236137684e-35 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" -6.9623178374334311e-15 -7.016498482085281e-15 0 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0.0036440871232534785 0.45551089040674941 -2.6291922236137684e-35 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode transform -n \"group2\";\n\trename -uid \"5F082D51-4275-BE50-4B5B-BC9F773E318D\";\ncreateNode transform -n \"pCube1\" -p \"group2\";\n\trename -uid \"C6AE11FD-4DC5-881D-A123-969D03B08BD2\";\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\ncreateNode mesh -n \"pCubeShape1\" -p \"|group2|pCube1\";\n\trename -uid \"05E60AE2-44B3-5E72-C45D-FABFF2C241CE\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 2 \".iog[0].og\";\n\tsetAttr \".iog[0].og[0].gcl\" -type \"componentList\" 1 \"vtx[*]\";\n\tsetAttr \".iog[0].og[1].gcl\" -type \"componentList\" 1 \"vtx[*]\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 20 \".uvst[0].uvsp[0:19]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.125 0.625 0.125 0.375 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.625 0.625 0.625\n\t\t 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0 0.875 0.125 0.875 0.25 0.125 0 0.125\n\t\t 0.125 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 12 \".vt[0:11]\"  -1.0047639608 -1 0.5 -0.0090709338 -1 0.5\n\t\t -0.49437568 -2.6430439e-17 0.5 0.49444351 -2.6969425e-17 0.5 -0.038101494 1 0.5 0.96207875 1 0.5\n\t\t -0.038101494 1 -0.5 0.96207875 1 -0.5 -0.49437568 -2.6430439e-17 -0.5 0.49444351 -2.6969425e-17 -0.5\n\t\t -1.0047639608 -1 -0.5 -0.0090709338 -1 -0.5;\n\tsetAttr -s 20 \".ed[0:19]\"  0 1 0 2 3 1 4 5 0 6 7 0 8 9 1 10 11 0 0 2 0\n\t\t 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 8 0 7 9 0 8 10 0 9 11 0 10 0 0 11 1 0 9 3 1 8 2 1;\n\tsetAttr -s 10 -ch 40 \".fc[0:9]\" -type \"polyFaces\" \n\t\tf 4 0 7 -2 -7\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 9 -3 -9\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 11 -4 -11\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 13 -5 -13\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 4 15 -6 -15\n\t\tmu 0 4 8 9 11 10\n\t\tf 4 5 17 -1 -17\n\t\tmu 0 4 10 11 13 12\n\t\tf 4 -18 -16 18 -8\n\t\tmu 0 4 1 14 15 3\n\t\tf 4 -19 -14 -12 -10\n\t\tmu 0 4 3 15 16 5\n\t\tf 4 16 6 -20 14\n\t\tmu 0 4 17 0 2 18\n\t\tf 4 19 8 10 12\n\t\tmu 0 4 18 2 4 19;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\ncreateNode mesh -n \"pCubeShape1Orig1\" -p \"|group2|pCube1\";\n\trename -uid \"63D0EEC7-41D4-3784-C8B0-CE8D18C553F7\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr -s 20 \".uvst[0].uvsp[0:19]\" -type \"float2\" 0.375 0 0.625 0 0.375\n\t\t 0.125 0.625 0.125 0.375 0.25 0.625 0.25 0.375 0.5 0.625 0.5 0.375 0.625 0.625 0.625\n\t\t 0.375 0.75 0.625 0.75 0.375 1 0.625 1 0.875 0 0.875 0.125 0.875 0.25 0.125 0 0.125\n\t\t 0.125 0.125 0.25;\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr -s 12 \".vt[0:11]\"  -0.5 -1 0.5 0.5 -1 0.5 -0.5 0 0.5 0.5 0 0.5\n\t\t -0.5 1 0.5 0.5 1 0.5 -0.5 1 -0.5 0.5 1 -0.5 -0.5 0 -0.5 0.5 0 -0.5 -0.5 -1 -0.5 0.5 -1 -0.5;\n\tsetAttr -s 20 \".ed[0:19]\"  0 1 0 2 3 1 4 5 0 6 7 0 8 9 1 10 11 0 0 2 0\n\t\t 1 3 0 2 4 0 3 5 0 4 6 0 5 7 0 6 8 0 7 9 0 8 10 0 9 11 0 10 0 0 11 1 0 9 3 1 8 2 1;\n\tsetAttr -s 10 -ch 40 \".fc[0:9]\" -type \"polyFaces\" \n\t\tf 4 0 7 -2 -7\n\t\tmu 0 4 0 1 3 2\n\t\tf 4 1 9 -3 -9\n\t\tmu 0 4 2 3 5 4\n\t\tf 4 2 11 -4 -11\n\t\tmu 0 4 4 5 7 6\n\t\tf 4 3 13 -5 -13\n\t\tmu 0 4 6 7 9 8\n\t\tf 4 4 15 -6 -15\n\t\tmu 0 4 8 9 11 10\n\t\tf 4 5 17 -1 -17\n\t\tmu 0 4 10 11 13 12\n\t\tf 4 -18 -16 18 -8\n\t\tmu 0 4 1 14 15 3\n\t\tf 4 -19 -14 -12 -10\n\t\tmu 0 4 3 15 16 5\n\t\tf 4 16 6 -20 14\n\t\tmu 0 4 17 0 2 18\n\t\tf 4 19 8 10 12\n\t\tmu 0 4 18 2 4 19;\n\tsetAttr \".cd\" -type \"dataPolyComponent\" Index_Data Edge 0 ;\n\tsetAttr \".cvd\" -type \"dataPolyComponent\" Index_Data Vertex 0 ;\n\tsetAttr \".pd[0]\" -type \"dataPolyComponent\" Index_Data UV 0 ;\n\tsetAttr \".hfd\" -type \"dataPolyComponent\" Index_Data Face 0 ;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode joint -n \"joint1\" -p \"group2\";\n\trename -uid \"EF6F3725-40A4-6769-9759-E290A675536D\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".t\" -type \"double3\" -0.58669802684389294 -0.48466358739278137 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 180 0 90.444144433111987 ;\n\tsetAttr \".bps\" -type \"matrix\" -0.0077517050781625851 0.99996995508284214 0 0 0.99996995508284214 0.0077517050781625851 1.2246467991473535e-16 0\n\t\t 1.2246100047357252e-16 9.4931008119060876e-19 -1 0 0.010932261369762277 -0.48466358739278137 0 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode joint -n \"joint2\" -p \"group2\";\n\trename -uid \"D64B801E-477D-4F88-34EF-CBAB31147B9C\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".t\" -type \"double3\" 0.55754532985786143 0.45551089040674941 -2.6291922236137684e-35 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0.0036440871232534785 0.45551089040674941 -2.6291922236137684e-35 1;\n\tsetAttr \".radi\" 0.5;\ncreateNode transform -n \"camera1\";\n\trename -uid \"DB86319B-42FF-C601-232F-AA9E383F3A53\";\n\tsetAttr \".t\" -type \"double3\" -0.28354629494978001 3.4125432363268318 3.8740550354831269 ;\n\tsetAttr \".r\" -type \"double3\" -40.99978833739042 -4.599999999999917 1.9942704634686463e-16 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"DB56868E-4664-E2EF-4F1B-1788694890BB\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 5.184657095604484;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" -0.014576348493015701 -0.014576348493016034 0 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"35F1BF3D-42A9-A6B2-7368-70823C34DFAF\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"A4FF12A3-4350-9EA3-5D2D-46B2C965FD9E\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"2891BB1B-4389-A5F9-3602-75A434227164\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"E8753D95-4ADA-635B-9C20-A2877E4DC852\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"D5056E33-4018-C191-CF91-999CA5C49356\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"68DF4062-40DA-ADB8-28C4-72ADCFB7B775\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"3AC59C0A-4EC2-074E-61B8-01B81D8560C5\";\n\tsetAttr \".g\" yes;\ncreateNode polyCube -n \"polyCube1\";\n\trename -uid \"3939BCA3-471D-37BA-1D98-14B8CBA7919A\";\n\tsetAttr \".h\" 2;\n\tsetAttr \".sh\" 2;\n\tsetAttr \".cuv\" 4;\ncreateNode skinCluster -n \"skinCluster1\";\n\trename -uid \"3C493329-4AA0-ECBE-E9F1-80885A5A2502\";\n\tsetAttr -s 12 \".wl\";\n\tsetAttr \".wl[0:11].w\"\n\t\t2 0 0.91935410031189824 1 0.080645899688101791\n\t\t2 0 0.92309428603716492 1 0.076905713962835034\n\t\t2 0 0.47612845224567313 1 0.52387154775432687\n\t\t2 0 0.48583795661573459 1 0.51416204338426552\n\t\t2 0 0.079895977044176017 1 0.92010402295582405\n\t\t2 0 0.079739458710304606 1 0.92026054128969537\n\t\t2 0 0.079895977044176017 1 0.92010402295582405\n\t\t2 0 0.079739458710304606 1 0.92026054128969537\n\t\t2 0 0.47612845224567313 1 0.52387154775432687\n\t\t2 0 0.48583795661573459 1 0.51416204338426552\n\t\t2 0 0.91935410031189824 1 0.080645899688101791\n\t\t2 0 0.92309428603716492 1 0.076905713962835034;\n\tsetAttr -s 2 \".pm\";\n\tsetAttr \".pm[0]\" -type \"matrix\" -0.0077517050781625834 0.99996995508284192 1.2246100047357252e-16 0\n\t\t 0.99996995508284192 0.0077517050781625834 9.4931008119060933e-19 0 -5.7777898331617058e-34 1.2246467991473532e-16 -1 0\n\t\t 0.48473376938142437 -0.0071749637192819529 -8.7867963528170347e-19 1;\n\tsetAttr \".pm[1]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 -0.0036440871232534785 -0.45551089040674941 2.6291922236137684e-35 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr -s 2 \".ma\";\n\tsetAttr -s 2 \".dpf[0:1]\"  4 4;\n\tsetAttr -s 2 \".lw\";\n\tsetAttr -s 2 \".lw\";\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".mi\" 5;\n\tsetAttr \".ucm\" yes;\n\tsetAttr -s 2 \".ifcl\";\n\tsetAttr -s 2 \".ifcl\";\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"79F523E5-472C-8533-8EF3-A3A05D695DDD\";\ncreateNode objectSet -n \"skinCluster1Set\";\n\trename -uid \"F324AA94-443C-6607-A328-6C8A80E9906A\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster1GroupId\";\n\trename -uid \"8A48908A-4F4C-67FE-2785-73A8E88DC940\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster1GroupParts\";\n\trename -uid \"E5BF3180-4294-CE9A-9B96-01BEDD55AD14\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"54CEC754-4A8A-DCC2-F55F-8B8668C4450E\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"4CC35E60-450C-9A88-6477-80BBF81072B8\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"91BEC890-4AE1-6C6F-E44A-A4ADBFA7FE34\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode dagPose -n \"bindPose1\";\n\trename -uid \"C8D34202-41FE-84CC-9DD6-32A2A9FC96CD\";\n\tsetAttr -s 2 \".wm\";\n\tsetAttr -s 2 \".xm\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 0.010932261369762277 -0.48466358739278137\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0.70436080772635179 0.70984213212451774 4.3465294750311161e-17 4.3129660431346053e-17 1\n\t\t 1 1 yes;\n\tsetAttr \".xm[1]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 0.0036440871232534785\n\t\t 0.45551089040674941 -2.6291922236137684e-35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 \n\t\t0 0 0 1 1 1 1 yes;\n\tsetAttr -s 2 \".m\";\n\tsetAttr -s 2 \".p\";\n\tsetAttr \".bp\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"FD5FC731-4A3C-96F5-465D-BBA257075245\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n\"\n\t\t+ \"            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\"\n\t\t+ \"\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 0\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 1\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 1\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n\"\n\t\t+ \"            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n\"\n\t\t+ \"            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n\"\n\t\t+ \"            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n\"\n\t\t+ \"            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n\"\n\t\t+ \"        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n\"\n\t\t+ \"            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n\"\n\t\t+ \"            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n\"\n\t\t+ \"            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"23CFAF53-4679-F71A-5C44-15AB1F25C378\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode script -n \"maya2glTF_scriptNode\";\n\trename -uid \"65C15E19-4122-0272-1839-398C7165427E\";\n\taddAttr -ci true -sn \"outputFolder\" -ln \"outputFolder\" -dt \"string\";\n\taddAttr -ci true -sn \"sceneName\" -ln \"sceneName\" -dt \"string\";\n\taddAttr -ci true -sn \"copyright\" -ln \"copyright\" -dt \"string\";\n\taddAttr -ci true -sn \"scale\" -ln \"scale\" -at \"float\";\n\taddAttr -ci true -sn \"flags\" -ln \"flags\" -dt \"string\";\n\taddAttr -ci true -sn \"char\" -ln \"char\" -dt \"string\";\n\taddAttr -ci true -sn \"anim\" -ln \"anim\" -at \"long\";\n\taddAttr -ci true -sn \"clip\" -ln \"clip\" -dt \"string\";\n\tsetAttr \".st\" 2;\n\tsetAttr \".outputFolder\" -type \"string\" \"C:/dev/glTF/Maya2glTF/maya/scenes/skin/export/\";\n\tsetAttr \".sceneName\" -type \"string\" \"TwoJointsNoRoot\";\n\tsetAttr \".copyright\" -type \"string\" \"(C)2018 bugfa\";\n\tsetAttr \".scale\" 1;\n\tsetAttr \".flags\" -type \"string\" \"-emb\";\n\tsetAttr \".char\" -type \"string\" \"\";\n\tsetAttr \".anim\" 1;\n\tsetAttr \".clip\" -type \"string\" \"clip\";\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"4CBE7669-458F-C2AB-63F6-FE8D0441334E\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".dsm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"skinCluster1GroupId.id\" \"|group1|pCube1|pCubeShape1.iog.og[0].gid\";\nconnectAttr \"skinCluster1Set.mwc\" \"|group1|pCube1|pCubeShape1.iog.og[0].gco\";\nconnectAttr \"groupId2.id\" \"|group1|pCube1|pCubeShape1.iog.og[1].gid\";\nconnectAttr \"tweakSet1.mwc\" \"|group1|pCube1|pCubeShape1.iog.og[1].gco\";\nconnectAttr \"skinCluster1.og[0]\" \"|group1|pCube1|pCubeShape1.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"|group1|pCube1|pCubeShape1.twl\";\nconnectAttr \"polyCube1.out\" \"pCubeShape1Orig.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"skinCluster1GroupParts.og\" \"skinCluster1.ip[0].ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1.ip[0].gi\";\nconnectAttr \"bindPose1.msg\" \"skinCluster1.bp\";\nconnectAttr \"|group1|joint1.wm\" \"skinCluster1.ma[0]\";\nconnectAttr \"|group1|joint2.wm\" \"skinCluster1.ma[1]\";\nconnectAttr \"|group1|joint1.liw\" \"skinCluster1.lw[0]\";\nconnectAttr \"|group1|joint2.liw\" \"skinCluster1.lw[1]\";\nconnectAttr \"|group1|joint1.obcc\" \"skinCluster1.ifcl[0]\";\nconnectAttr \"|group1|joint2.obcc\" \"skinCluster1.ifcl[1]\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"skinCluster1GroupId.msg\" \"skinCluster1Set.gn\" -na;\nconnectAttr \"|group1|pCube1|pCubeShape1.iog.og[0]\" \"skinCluster1Set.dsm\" -na;\nconnectAttr \"skinCluster1.msg\" \"skinCluster1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"skinCluster1GroupParts.ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"|group1|pCube1|pCubeShape1.iog.og[1]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"pCubeShape1Orig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"|group1|joint1.msg\" \"bindPose1.m[0]\";\nconnectAttr \"|group1|joint2.msg\" \"bindPose1.m[1]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[0]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[1]\";\nconnectAttr \"|group1|joint1.bps\" \"bindPose1.wm[0]\";\nconnectAttr \"|group1|joint2.bps\" \"bindPose1.wm[1]\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"|group1|pCube1|pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\nconnectAttr \"|group2|pCube1|pCubeShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of TwoJointsNoRoot.ma\n"
  },
  {
    "path": "maya/scenes/skin/TwoJointsOneQuadAnim.ma",
    "content": "//Maya ASCII 2018ff07 scene\n//Name: TwoJointsOneQuadAnim.ma\n//Last modified: Sun, Feb 03, 2019 12:07:50 PM\n//Codeset: 1252\nrequires maya \"2018ff07\";\nrequires \"stereoCamera\" \"10.0\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201711281015-8e846c9074\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"8CD21505-4F41-0EBC-C2DB-43A83575D31B\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 2.3012834864897771 8.1860729040336011 2.0575849090343183 ;\n\tsetAttr \".r\" -type \"double3\" -69.33835272961548 48.20000000000266 4.7717925583930609e-15 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"4A5352E1-4298-5A80-99E8-E89AA02118D4\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 8.7487913984285033;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"1F01585E-4CC0-8F39-6482-E4B639261431\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"1B627A97-427B-F780-F71F-4EAB8C00B45D\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"2EAB68E5-4B73-9CE6-BA73-D58DF0EC7D84\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"E3542034-4BAB-50AC-18DC-329FB9A2C865\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"3402124E-4596-DA81-86C4-7C9102273A22\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"18D169A6-45F4-6472-9C86-BCA384B6FFE5\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -n \"pPlane1\";\n\trename -uid \"4E3330FF-4E6A-98B5-67E0-26BD17D1FB74\";\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\ncreateNode mesh -n \"pPlaneShape1\" -p \"pPlane1\";\n\trename -uid \"86D33D5A-4638-5A57-FCC3-77A3551D04BE\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\n\tsetAttr \".vcs\" 2;\ncreateNode mesh -n \"pPlaneShape1Orig\" -p \"pPlane1\";\n\trename -uid \"53C5809C-44FA-FC70-5E35-8388D7C2CE26\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode joint -n \"joint1\";\n\trename -uid \"7EC7E1D3-40C3-CC45-B1FA-06BA924282BD\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".t\" -type \"double3\" -2 0 0 ;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 -2 0 0 1;\n\tsetAttr \".radi\" 1.5;\ncreateNode joint -n \"joint2\" -p \"joint1\";\n\trename -uid \"8F20048F-46FB-84F7-49FF-0BB606EC51DC\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 2 0 0 1;\n\tsetAttr \".radi\" 1.5;\ncreateNode transform -n \"pPlane2\";\n\trename -uid \"7B2A1F47-482F-33B9-1CDE-BBA9066D6C11\";\n\tsetAttr \".t\" -type \"double3\" 0 -0.001 0 ;\ncreateNode mesh -n \"pPlaneShape2\" -p \"pPlane2\";\n\trename -uid \"E7BBE908-4344-698A-6637-93AE511AB51D\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".bck\" 1;\n\tsetAttr \".vbc\" no;\ncreateNode transform -n \"camera1\";\n\trename -uid \"AC9E4F93-492C-C26B-B369-DF9DB818C401\";\n\tsetAttr \".t\" -type \"double3\" 5.3080978791525801 7.0123005869253978 9.7890201297389545 ;\n\tsetAttr \".r\" -type \"double3\" -32.600084665043937 28.600000000000072 1.8112849397296858e-15 ;\ncreateNode camera -n \"cameraShape1\" -p \"camera1\";\n\trename -uid \"8BEA422B-4FEC-C342-890F-B5A0BDEE246D\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".rnd\" no;\n\tsetAttr \".cap\" -type \"double2\" 1.4173 0.9449 ;\n\tsetAttr \".ff\" 0;\n\tsetAttr \".coi\" 12.897254834804345;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"camera1\";\n\tsetAttr \".den\" -type \"string\" \"camera1_depth\";\n\tsetAttr \".man\" -type \"string\" \"camera1_mask\";\n\tsetAttr \".tp\" -type \"double3\" 0.64949999999999974 0 0 ;\n\tsetAttr \".dr\" yes;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"C68DFD49-4BCE-1A3A-55ED-53A037D9088E\";\n\tsetAttr -s 4 \".lnk\";\n\tsetAttr -s 4 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"DE5508BF-4387-029C-3668-6684FC47CBB1\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"E62C64E0-4E1F-E6CE-0409-03B5E7AB2AC2\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"FF636D2D-4991-5634-36B1-5DAACA39766D\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"80BCB082-4947-3B40-469A-9E8A75F06D68\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"DCDA0221-4435-DC94-2FC7-22BC9CB1D1B2\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"C043C05A-4613-24C4-F0A9-5BBBE973034F\";\n\tsetAttr \".g\" yes;\ncreateNode polyPlane -n \"polyPlane1\";\n\trename -uid \"33E023B4-4555-30CD-04E8-C6A3E2A1FD97\";\n\tsetAttr \".w\" 4;\n\tsetAttr \".sw\" 1;\n\tsetAttr \".sh\" 1;\n\tsetAttr \".cuv\" 2;\ncreateNode skinCluster -n \"skinCluster1\";\n\trename -uid \"5A399A6B-42D3-7316-27C9-5FA6622786F0\";\n\tsetAttr -s 4 \".wl\";\n\tsetAttr \".wl[0:3].w\"\n\t\t2 0 0.99994200320725213 1 5.799679274787195e-05\n\t\t2 0 0.0033581065945327282 1 0.99664189340546727\n\t\t2 0 0.99994187001721002 1 5.8129982789978385e-05\n\t\t2 0 0.0026217950507998466 1 0.99737820494920015;\n\tsetAttr -s 2 \".pm\";\n\tsetAttr \".pm[0]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 2 0 0 1;\n\tsetAttr \".pm[1]\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 -2 0 0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr -s 2 \".ma\";\n\tsetAttr -s 2 \".dpf[0:1]\"  4 4;\n\tsetAttr -s 2 \".lw\";\n\tsetAttr -s 2 \".lw\";\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".ucm\" yes;\n\tsetAttr -s 2 \".ifcl\";\n\tsetAttr -s 2 \".ifcl\";\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"D60A74B2-4F26-D9EE-7386-CC8ADB6F3DD6\";\ncreateNode objectSet -n \"skinCluster1Set\";\n\trename -uid \"5A937D78-4CBD-21FA-5EE0-E8A6212EB051\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster1GroupId\";\n\trename -uid \"87E9099C-4E80-A106-A433-2CBCD111056E\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster1GroupParts\";\n\trename -uid \"D594BEFC-4ACE-E2F7-BCE1-0180728E1CFB\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"E1D3322E-4014-5F2C-D88D-DEBC520808B7\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"83C28D90-4EBC-6509-A5D9-90AC60793E0E\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"688024B7-42D3-21B4-5133-F4BDD0E497C0\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode dagPose -n \"bindPose1\";\n\trename -uid \"78DFCB5B-4190-9C84-8BCF-CE8CD37E4150\";\n\tsetAttr -s 2 \".wm\";\n\tsetAttr -s 2 \".xm\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 -2 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[1]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr -s 2 \".m\";\n\tsetAttr -s 2 \".p\";\n\tsetAttr \".bp\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"4D348F58-41BD-DE55-DA2C-A497983796C5\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $nodeEditorPanelVisible = stringArrayContains(\\\"nodeEditorPanel1\\\", `getPanel -vis`);\\n\\tint    $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\n\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n\"\n\t\t+ \"            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\"\n\t\t+ \"\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 0\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 505\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 663\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"camera1\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n\"\n\t\t+ \"            -wireframeOnShaded 0\\n            -headsUpDisplay 0\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n\"\n\t\t+ \"            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n\"\n\t\t+ \"            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1333\\n            -height 1054\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n\"\n\t\t+ \"            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n\"\n\t\t+ \"            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n\"\n\t\t+ \"            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n\"\n\t\t+ \"            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n\"\n\t\t+ \"                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n\"\n\t\t+ \"                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n\"\n\t\t+ \"                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 1\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                -outliner \\\"graphEditor1OutlineEd\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n\"\n\t\t+ \"                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n\"\n\t\t+ \"                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -frameRange 0 122 \\n                -initialized 1\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 1\\n                -zoom 1\\n                -animateTransition 0\\n                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n\"\n\t\t+ \"                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\\n\"\n\t\t+ \"\\t\\tif (\\\"\\\" == $panelName) {\\n\\t\\t\\tif ($useSceneConfig) {\\n\\t\\t\\t\\t$panelName = `scriptedPanel -unParent  -type \\\"nodeEditorPanel\\\" -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels `;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n\"\n\t\t+ \"                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\t}\\n\\t\\t} else {\\n\\t\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n\"\n\t\t+ \"                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"Stereo\\\" (localizedPanelLabel(\\\"Stereo\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Stereo\\\")) -mbv $menusOkayInPanels  $panelName;\\nstring $editorName = ($panelName+\\\"Editor\\\");\\n            stereoCameraView -e \\n                -editorChanged \\\"updateModelPanelBar\\\" \\n                -camera \\\"persp\\\" \\n                -useInteractiveMode 0\\n                -displayLights \\\"default\\\" \\n                -displayAppearance \\\"smoothShaded\\\" \\n                -activeOnly 0\\n                -ignorePanZoom 0\\n                -wireframeOnShaded 0\\n                -headsUpDisplay 1\\n                -holdOuts 1\\n                -selectionHiliteDisplay 1\\n                -useDefaultMaterial 0\\n                -bufferMode \\\"double\\\" \\n                -twoSidedLighting 0\\n                -backfaceCulling 0\\n                -xray 0\\n                -jointXray 0\\n                -activeComponentsXray 0\\n                -displayTextures 0\\n                -smoothWireframe 0\\n                -lineWidth 1\\n                -textureAnisotropic 0\\n\"\n\t\t+ \"                -textureHilight 1\\n                -textureSampling 2\\n                -textureDisplay \\\"modulate\\\" \\n                -textureMaxSize 32768\\n                -fogging 0\\n                -fogSource \\\"fragment\\\" \\n                -fogMode \\\"linear\\\" \\n                -fogStart 0\\n                -fogEnd 100\\n                -fogDensity 0.1\\n                -fogColor 0.5 0.5 0.5 1 \\n                -depthOfFieldPreview 1\\n                -maxConstantTransparency 1\\n                -objectFilterShowInHUD 1\\n                -isFiltered 0\\n                -colorResolution 4 4 \\n                -bumpResolution 4 4 \\n                -textureCompression 0\\n                -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n                -transpInShadows 0\\n                -cullingOverride \\\"none\\\" \\n                -lowQualityLighting 0\\n                -maximumNumHardwareLights 0\\n                -occlusionCulling 0\\n                -shadingModel 0\\n                -useBaseRenderer 0\\n                -useReducedRenderer 0\\n                -smallObjectCulling 0\\n\"\n\t\t+ \"                -smallObjectThreshold -1 \\n                -interactiveDisableShadows 0\\n                -interactiveBackFaceCull 0\\n                -sortTransparent 1\\n                -controllers 1\\n                -nurbsCurves 1\\n                -nurbsSurfaces 1\\n                -polymeshes 1\\n                -subdivSurfaces 1\\n                -planes 1\\n                -lights 1\\n                -cameras 1\\n                -controlVertices 1\\n                -hulls 1\\n                -grid 1\\n                -imagePlane 1\\n                -joints 1\\n                -ikHandles 1\\n                -deformers 1\\n                -dynamics 1\\n                -particleInstancers 1\\n                -fluids 1\\n                -hairSystems 1\\n                -follicles 1\\n                -nCloths 1\\n                -nParticles 1\\n                -nRigids 1\\n                -dynamicConstraints 1\\n                -locators 1\\n                -manipulators 1\\n                -pluginShapes 1\\n                -dimensions 1\\n                -handles 1\\n                -pivots 1\\n\"\n\t\t+ \"                -textures 1\\n                -strokes 1\\n                -motionTrails 1\\n                -clipGhosts 1\\n                -greasePencils 1\\n                -shadows 0\\n                -captureSequenceNumber -1\\n                -width 0\\n                -height 0\\n                -sceneRenderFilter 0\\n                -displayMode \\\"centerEye\\\" \\n                -viewColor 0 0 0 1 \\n                -useCustomBackground 1\\n                $editorName;\\n            stereoCameraView -e -viewSelected 0 $editorName;\\n            stereoCameraView -e \\n                -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n\"\n\t\t+ \"            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n\"\n\t\t+ \"            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n\"\n\t\t+ \"            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1\\n            -height 1\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n\"\n\t\t+ \"            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n\"\n\t\t+ \"            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n\"\n\t\t+ \"            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n\"\n\t\t+ \"        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"wireframe\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 1\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n\"\n\t\t+ \"            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 4 4 \\n            -bumpResolution 4 4 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 0\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n\"\n\t\t+ \"            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n\"\n\t\t+ \"            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 0\\n            -height 0\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Persp View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Persp View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -camera \\\\\\\"camera1\\\\\\\" \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 0\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 4 4 \\\\n    -bumpResolution 4 4 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 0\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1333\\\\n    -height 1054\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"90C32B54-4DF0-4084-5B66-9FAF59E8D63F\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 60 -ast 1 -aet 60 \";\n\tsetAttr \".st\" 6;\ncreateNode animCurveTL -n \"joint2_translateX\";\n\trename -uid \"4F0AC13C-4AD5-D8C9-B30E-4CB1D706F23F\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 4 \".ktv[0:3]\"  1 4 20 4 40 4 60 4;\ncreateNode animCurveTL -n \"joint2_translateY\";\n\trename -uid \"31F4A30F-4150-72D5-A50C-A3B8F3C6AD3F\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 4 \".ktv[0:3]\"  1 0 20 0 40 0 60 0;\ncreateNode animCurveTL -n \"joint2_translateZ\";\n\trename -uid \"543BDAD1-47FD-7AEE-2C47-0BBFB8BF2558\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 4 \".ktv[0:3]\"  1 0 20 3 40 -3 60 0;\ncreateNode polyPlane -n \"polyPlane2\";\n\trename -uid \"6D8B422B-44DA-A21D-55F5-9E9909DB1FAD\";\n\tsetAttr \".w\" 4;\n\tsetAttr \".h\" 7;\n\tsetAttr \".sw\" 1;\n\tsetAttr \".sh\" 1;\n\tsetAttr \".cuv\" 2;\ncreateNode lambert -n \"lambert2\";\n\trename -uid \"D9E6DF44-4333-69BC-B0B4-C3AC2C0D469C\";\n\tsetAttr \".c\" -type \"float3\" 0 0 1 ;\ncreateNode shadingEngine -n \"lambert2SG\";\n\trename -uid \"B584C217-41A6-54DC-CDB5-E48EEBA6129D\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo1\";\n\trename -uid \"1222CACE-4C96-698B-B834-68B648AAE4E2\";\ncreateNode lambert -n \"lambert3\";\n\trename -uid \"BCE20090-4354-D8CA-B2E5-87BEA4F132CF\";\n\tsetAttr \".c\" -type \"float3\" 1 0 0 ;\ncreateNode shadingEngine -n \"lambert3SG\";\n\trename -uid \"EE6C8C02-40AC-62E5-3372-328DEE5997F7\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ro\" yes;\ncreateNode materialInfo -n \"materialInfo2\";\n\trename -uid \"BA96250B-4BCC-A511-03DB-D5AA043058B7\";\ncreateNode nodeGraphEditorInfo -n \"hyperShadePrimaryNodeEditorSavedTabsInfo\";\n\trename -uid \"08B4780C-4BD5-3D8E-22D1-5B85392BD72C\";\n\tsetAttr \".tgi[0].tn\" -type \"string\" \"Untitled_1\";\n\tsetAttr \".tgi[0].vl\" -type \"double2\" -113.09523360123728 -278.57141750199503 ;\n\tsetAttr \".tgi[0].vh\" -type \"double2\" 114.28570974440824 278.57141750199503 ;\nselect -ne :time1;\n\tsetAttr -av -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 4 \".st\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".pt\";\nselect -ne :renderGlobalsList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\nselect -ne :defaultShaderList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 6 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -av -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr -k on \".mwc\";\n\tsetAttr -cb on \".an\";\n\tsetAttr -cb on \".il\";\n\tsetAttr -cb on \".vo\";\n\tsetAttr -cb on \".eo\";\n\tsetAttr -cb on \".fo\";\n\tsetAttr -cb on \".epo\";\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".w\" 1280;\n\tsetAttr \".h\" 720;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr -k on \".cch\";\n\tsetAttr -cb on \".ihi\";\n\tsetAttr -k on \".nds\";\n\tsetAttr -cb on \".bnm\";\n\tsetAttr \".ctrs\" 256;\n\tsetAttr -av \".btrs\" 512;\n\tsetAttr -k off \".fbfm\";\n\tsetAttr -k off -cb on \".ehql\";\n\tsetAttr -k off -cb on \".eams\";\n\tsetAttr -k off -cb on \".eeaa\";\n\tsetAttr -k off -cb on \".engm\";\n\tsetAttr -k off -cb on \".mes\";\n\tsetAttr -k off -cb on \".emb\";\n\tsetAttr -av -k off -cb on \".mbbf\";\n\tsetAttr -k off -cb on \".mbs\";\n\tsetAttr -k off -cb on \".trm\";\n\tsetAttr -k off -cb on \".tshc\";\n\tsetAttr -k off \".enpt\";\n\tsetAttr -k off -cb on \".clmt\";\n\tsetAttr -k off -cb on \".tcov\";\n\tsetAttr -k off -cb on \".lith\";\n\tsetAttr -k off -cb on \".sobc\";\n\tsetAttr -k off -cb on \".cuth\";\n\tsetAttr -k off -cb on \".hgcd\";\n\tsetAttr -k off -cb on \".hgci\";\n\tsetAttr -k off -cb on \".mgcs\";\n\tsetAttr -k off -cb on \".twa\";\n\tsetAttr -k off -cb on \".twz\";\n\tsetAttr -k on \".hwcc\";\n\tsetAttr -k on \".hwdp\";\n\tsetAttr -k on \".hwql\";\n\tsetAttr -k on \".hwfr\";\nconnectAttr \"skinCluster1GroupId.id\" \"pPlaneShape1.iog.og[4].gid\";\nconnectAttr \"skinCluster1Set.mwc\" \"pPlaneShape1.iog.og[4].gco\";\nconnectAttr \"groupId2.id\" \"pPlaneShape1.iog.og[5].gid\";\nconnectAttr \"tweakSet1.mwc\" \"pPlaneShape1.iog.og[5].gco\";\nconnectAttr \"skinCluster1.og[0]\" \"pPlaneShape1.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"pPlaneShape1.twl\";\nconnectAttr \"polyPlane1.out\" \"pPlaneShape1Orig.i\";\nconnectAttr \"joint1.s\" \"joint2.is\";\nconnectAttr \"joint2_translateX.o\" \"joint2.tx\";\nconnectAttr \"joint2_translateY.o\" \"joint2.ty\";\nconnectAttr \"joint2_translateZ.o\" \"joint2.tz\";\nconnectAttr \"polyPlane2.out\" \"pPlaneShape2.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert2SG.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \"lambert3SG.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"skinCluster1GroupParts.og\" \"skinCluster1.ip[0].ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1.ip[0].gi\";\nconnectAttr \"bindPose1.msg\" \"skinCluster1.bp\";\nconnectAttr \"joint1.wm\" \"skinCluster1.ma[0]\";\nconnectAttr \"joint2.wm\" \"skinCluster1.ma[1]\";\nconnectAttr \"joint1.liw\" \"skinCluster1.lw[0]\";\nconnectAttr \"joint2.liw\" \"skinCluster1.lw[1]\";\nconnectAttr \"joint1.obcc\" \"skinCluster1.ifcl[0]\";\nconnectAttr \"joint2.obcc\" \"skinCluster1.ifcl[1]\";\nconnectAttr \"joint1.msg\" \"skinCluster1.ptt\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"skinCluster1GroupId.msg\" \"skinCluster1Set.gn\" -na;\nconnectAttr \"pPlaneShape1.iog.og[4]\" \"skinCluster1Set.dsm\" -na;\nconnectAttr \"skinCluster1.msg\" \"skinCluster1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"skinCluster1GroupParts.ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"pPlaneShape1.iog.og[5]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"pPlaneShape1Orig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"joint1.msg\" \"bindPose1.m[0]\";\nconnectAttr \"joint2.msg\" \"bindPose1.m[1]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[0]\";\nconnectAttr \"bindPose1.m[0]\" \"bindPose1.p[1]\";\nconnectAttr \"joint1.bps\" \"bindPose1.wm[0]\";\nconnectAttr \"joint2.bps\" \"bindPose1.wm[1]\";\nconnectAttr \"lambert2.oc\" \"lambert2SG.ss\";\nconnectAttr \"pPlaneShape2.iog\" \"lambert2SG.dsm\" -na;\nconnectAttr \"lambert2SG.msg\" \"materialInfo1.sg\";\nconnectAttr \"lambert2.msg\" \"materialInfo1.m\";\nconnectAttr \"lambert3.oc\" \"lambert3SG.ss\";\nconnectAttr \"pPlaneShape1.iog\" \"lambert3SG.dsm\" -na;\nconnectAttr \"lambert3SG.msg\" \"materialInfo2.sg\";\nconnectAttr \"lambert3.msg\" \"materialInfo2.m\";\nconnectAttr \"lambert2SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert3SG.pa\" \":renderPartition.st\" -na;\nconnectAttr \"lambert2.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"lambert3.msg\" \":defaultShaderList1.s\" -na;\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\n// End of TwoJointsOneQuadAnim.ma\n"
  },
  {
    "path": "maya/scenes/skin/ZeroParentScaleTestAnim.ma",
    "content": "//Maya ASCII 2018 scene\n//Name: ZeroParentScaleTestAnim.ma\n//Last modified: Wed, Aug 12, 2020 08:55:10 PM\n//Codeset: 1252\nrequires maya \"2018\";\ncurrentUnit -l centimeter -a degree -t film;\nfileInfo \"application\" \"maya\";\nfileInfo \"product\" \"Maya 2018\";\nfileInfo \"version\" \"2018\";\nfileInfo \"cutIdentifier\" \"201706261615-f9658c4cfc\";\nfileInfo \"osv\" \"Microsoft Windows 8 Business Edition, 64-bit  (Build 9200)\\n\";\ncreateNode transform -s -n \"persp\";\n\trename -uid \"547A8C7B-4A7F-AF8D-4B31-329F1C1BDE2A\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 28 21 28 ;\n\tsetAttr \".r\" -type \"double3\" -27.938352729602379 44.999999999999972 -5.172681101354183e-14 ;\ncreateNode camera -s -n \"perspShape\" -p \"persp\";\n\trename -uid \"49BFB135-4D55-E649-B2AF-97AF0D243824\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".fl\" 34.999999999999993;\n\tsetAttr \".coi\" 44.82186966202994;\n\tsetAttr \".imn\" -type \"string\" \"persp\";\n\tsetAttr \".den\" -type \"string\" \"persp_depth\";\n\tsetAttr \".man\" -type \"string\" \"persp_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -p %camera\";\ncreateNode transform -s -n \"top\";\n\trename -uid \"1B1EAFE7-4F6F-C657-38E7-A5BBBA874A4E\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 1000.1 0 ;\n\tsetAttr \".r\" -type \"double3\" -89.999999999999986 0 0 ;\ncreateNode camera -s -n \"topShape\" -p \"top\";\n\trename -uid \"4AFD55DA-4D57-0619-E9A4-01A97A0A353A\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"top\";\n\tsetAttr \".den\" -type \"string\" \"top_depth\";\n\tsetAttr \".man\" -type \"string\" \"top_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -t %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"front\";\n\trename -uid \"EA7BBB5C-4CCA-114D-181E-4CB3C9D482E3\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 0 0 1000.1 ;\ncreateNode camera -s -n \"frontShape\" -p \"front\";\n\trename -uid \"C5C19F04-4FF7-8445-24D1-D495739B268F\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"front\";\n\tsetAttr \".den\" -type \"string\" \"front_depth\";\n\tsetAttr \".man\" -type \"string\" \"front_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -f %camera\";\n\tsetAttr \".o\" yes;\ncreateNode transform -s -n \"side\";\n\trename -uid \"A1BEA797-4E15-9330-5610-D6A24DCE6CD5\";\n\tsetAttr \".v\" no;\n\tsetAttr \".t\" -type \"double3\" 1000.1 0 0 ;\n\tsetAttr \".r\" -type \"double3\" 0 89.999999999999986 0 ;\ncreateNode camera -s -n \"sideShape\" -p \"side\";\n\trename -uid \"D1ECC7A6-4E2D-8C49-4F9B-A58CA1D98707\";\n\tsetAttr -k off \".v\" no;\n\tsetAttr \".rnd\" no;\n\tsetAttr \".coi\" 1000.1;\n\tsetAttr \".ow\" 30;\n\tsetAttr \".imn\" -type \"string\" \"side\";\n\tsetAttr \".den\" -type \"string\" \"side_depth\";\n\tsetAttr \".man\" -type \"string\" \"side_mask\";\n\tsetAttr \".hc\" -type \"string\" \"viewSet -s %camera\";\n\tsetAttr \".o\" yes;\ncreateNode joint -n \"joint1\";\n\trename -uid \"F0CD283D-4C6C-9918-D8A0-DB85601D248D\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 89.999999999999986 ;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 -5 0 1;\n\tsetAttr \".radi\" 0.75862068965517238;\ncreateNode joint -n \"joint2\" -p \"joint1\";\n\trename -uid \"E4581535-4B10-F5E6-145B-509AC8917A20\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 1;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".bps\" -type \"matrix\" 2.2204460492503131e-16 1 0 0 -1 2.2204460492503131e-16 0 0\n\t\t 0 0 1 0 0 0 0 1;\n\tsetAttr \".radi\" 0.75862068965517238;\ncreateNode joint -n \"joint3\" -p \"joint2\";\n\trename -uid \"C9092AF9-485B-7201-F888-F4890FDD32E0\";\n\taddAttr -ci true -sn \"liw\" -ln \"lockInfluenceWeights\" -min 0 -max 1 -at \"bool\";\n\tsetAttr \".uoc\" 1;\n\tsetAttr \".oc\" 2;\n\tsetAttr \".mnrl\" -type \"double3\" -360 -360 -360 ;\n\tsetAttr \".mxrl\" -type \"double3\" 360 360 360 ;\n\tsetAttr \".jo\" -type \"double3\" 0 0 -89.999999999999986 ;\n\tsetAttr \".bps\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 5 0 1;\n\tsetAttr \".radi\" 0.75862068965517238;\ncreateNode transform -n \"pCylinder1\";\n\trename -uid \"82E44DAA-4C54-C7DB-FA1A-5890CC12D8C2\";\n\tsetAttr -l on \".tx\";\n\tsetAttr -l on \".ty\";\n\tsetAttr -l on \".tz\";\n\tsetAttr -l on \".rx\";\n\tsetAttr -l on \".ry\";\n\tsetAttr -l on \".rz\";\n\tsetAttr -l on \".sx\";\n\tsetAttr -l on \".sy\";\n\tsetAttr -l on \".sz\";\n\tsetAttr \".rp\" -type \"double3\" 0 -6 0 ;\n\tsetAttr \".sp\" -type \"double3\" 0 -6 0 ;\ncreateNode mesh -n \"pCylinderShape1\" -p \"pCylinder1\";\n\trename -uid \"88962F31-413E-66D8-C681-83BA2C50F28D\";\n\tsetAttr -k off \".v\";\n\tsetAttr -s 4 \".iog[0].og\";\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\n\tsetAttr \".vcs\" 2;\ncreateNode mesh -n \"pCylinderShape1Orig\" -p \"pCylinder1\";\n\trename -uid \"30481FBA-40FA-AEC1-1663-6D9FF550A37C\";\n\tsetAttr -k off \".v\";\n\tsetAttr \".io\" yes;\n\tsetAttr \".vir\" yes;\n\tsetAttr \".vif\" yes;\n\tsetAttr \".uvst[0].uvsn\" -type \"string\" \"map1\";\n\tsetAttr \".cuvs\" -type \"string\" \"map1\";\n\tsetAttr \".dcc\" -type \"string\" \"Ambient+Diffuse\";\n\tsetAttr \".covm[0]\"  0 1 1;\n\tsetAttr \".cdvm[0]\"  0 1 1;\ncreateNode lightLinker -s -n \"lightLinker1\";\n\trename -uid \"1200CFA2-47BF-29BA-09AA-2EAFC5B1F32E\";\n\tsetAttr -s 2 \".lnk\";\n\tsetAttr -s 2 \".slnk\";\ncreateNode shapeEditorManager -n \"shapeEditorManager\";\n\trename -uid \"2681234C-4338-2140-9A31-659A6BCCEF1E\";\ncreateNode poseInterpolatorManager -n \"poseInterpolatorManager\";\n\trename -uid \"502A20C8-494D-91B7-2F53-848B705DF217\";\ncreateNode displayLayerManager -n \"layerManager\";\n\trename -uid \"3CCE11E9-4E01-322F-3EB3-8ABB7FA4260D\";\ncreateNode displayLayer -n \"defaultLayer\";\n\trename -uid \"3FA4EB16-468D-9970-1103-219D9B6AC2BB\";\ncreateNode renderLayerManager -n \"renderLayerManager\";\n\trename -uid \"CFFF9FC7-4438-B955-7734-C4A76132D79A\";\ncreateNode renderLayer -n \"defaultRenderLayer\";\n\trename -uid \"39CECDAC-4BA7-E088-DA6A-248F9DC8CBF6\";\n\tsetAttr \".g\" yes;\ncreateNode polyCylinder -n \"polyCylinder1\";\n\trename -uid \"F717C0B0-43EA-90FF-0539-3BBAF32963EF\";\n\tsetAttr \".h\" 12;\n\tsetAttr \".sa\" 8;\n\tsetAttr \".sh\" 12;\n\tsetAttr \".sc\" 1;\n\tsetAttr \".cuv\" 3;\ncreateNode skinCluster -n \"skinCluster1\";\n\trename -uid \"AA5AE595-4177-A437-2C3F-3E8619276AB9\";\n\tsetAttr -s 106 \".wl\";\n\tsetAttr \".wl[0:105].w\"\n\t\t3 0 0.99681956235046221 1 0.0029125474685397922 2 0.00026789018099808269\n\t\t3 0 0.99681956245759096 1 0.002912547370763519 2 0.00026789017164562877\n\t\t3 0 0.99681956235046221 1 0.0029125474685397922 2 0.00026789018099808269\n\t\t3 0 0.99681956245759096 1 0.002912547370763519 2 0.00026789017164562877\n\t\t3 0 0.99681956235046221 1 0.0029125474685397922 2 0.00026789018099808269\n\t\t3 0 0.99681956209888889 1 0.0029125476981504595 2 0.00026789020296070397\n\t\t3 0 0.99681956184318088 1 0.002912547931534868 2 0.00026789022528428928\n\t\t3 0 0.99681956174018671 1 0.0029125480255374368 2 0.0002678902342757826\n\t\t3 0 0.99842516508748758 1 0.0014769597273241574 2 9.7875185188149301e-05\n\t\t3 0 0.99842516519534019 1 0.0014769596263612512 2 9.7875178298493219e-05\n\t\t3 0 0.99842516508748758 1 0.0014769597273241574 2 9.7875185188149301e-05\n\t\t3 0 0.99842516519534019 1 0.0014769596263612512 2 9.7875178298493219e-05\n\t\t3 0 0.99842516508748758 1 0.0014769597273241574 2 9.7875185188149301e-05\n\t\t3 0 0.99842516483421451 1 0.0014769599644180896 2 9.7875201367315868e-05\n\t\t3 0 0.99842516457677888 1 0.0014769602054087627 2 9.7875217812393956e-05\n\t\t3 0 0.99842516447308882 1 0.0014769603024749839 2 9.7875224436142421e-05\n\t\t3 0 0.99640405028956791 1 0.0034477635636376296 2 0.00014818614679436781\n\t\t3 0 0.99640405053018044 1 0.0034477633334123055 2 0.00014818613640719261\n\t\t3 0 0.99640405028956791 1 0.0034477635636376296 2 0.00014818614679436781\n\t\t3 0 0.99640405053018044 1 0.0034477633334123055 2 0.00014818613640719261\n\t\t3 0 0.99640405028956791 1 0.0034477635636376296 2 0.00014818614679436781\n\t\t3 0 0.996404049724531 1 0.0034477641042820126 2 0.00014818617118685345\n\t\t3 0 0.99640404915020753 1 0.0034477646538121111 2 0.00014818619598024017\n\t\t3 0 0.99640404891888157 1 0.0034477648751518397 2 0.00014818620596652012\n\t\t3 0 0.98986704519725921 1 0.0098986668382784297 2 0.0002342879644622369\n\t\t3 0 0.98986704584144469 1 0.0098986662103665475 2 0.00023428794818881819\n\t\t3 0 0.98986704519725921 1 0.0098986668382784297 2 0.0002342879644622369\n\t\t3 0 0.98986704584144469 1 0.0098986662103665475 2 0.00023428794818881819\n\t\t3 0 0.98986704519725921 1 0.0098986668382784297 2 0.0002342879644622369\n\t\t3 0 0.98986704368450151 1 0.0098986683128209248 2 0.00023428800267754753\n\t\t3 0 0.98986704214688093 1 0.0098986698115981209 2 0.00023428804152094332\n\t\t3 0 0.98986704152755811 1 0.0098986704152755761 2 0.00023428805716628606\n\t\t3 0 0.96116879337659977 1 0.038446739258882826 2 0.00038446736451742898\n\t\t3 0 0.96116879550743195 1 0.038446737154026946 2 0.00038446733854117268\n\t\t3 0 0.96116879337659977 1 0.038446739258882826 2 0.00038446736451742898\n\t\t3 0 0.96116879550743195 1 0.038446737154026946 2 0.00038446733854117268\n\t\t3 0 0.96116879337659977 1 0.038446739258882826 2 0.00038446736451742898\n\t\t3 0 0.96116878837270892 1 0.038446744201772867 2 0.00038446742551817657\n\t\t3 0 0.9611687832865774 1 0.038446749225901126 2 0.00038446748752149728\n\t\t3 0 0.96116878123798544 1 0.038446751249519399 2 0.00038446751249519401\n\t\t3 0 0.7995328111047596 1 0.19988316223669109 2 0.00058402665854938741\n\t\t3 0 0.7995328168268816 1 0.19988315655085095 2 0.00058402662226731924\n\t\t3 0 0.7995328111047596 1 0.19988316223669109 2 0.00058402665854938741\n\t\t3 0 0.7995328168268816 1 0.19988315655085095 2 0.00058402662226731924\n\t\t3 0 0.7995328111047596 1 0.19988316223669109 2 0.00058402665854938741\n\t\t3 0 0.79953279766734608 1 0.19988317558890234 2 0.00058402674375155163\n\t\t3 0 0.79953278400908501 1 0.19988318916056086 2 0.0005840268303540484\n\t\t3 0 0.79953277850781146 1 0.19988319462695275 2 0.00058402686523580105\n\t\t3 0 0.49963045099399206 1 0.49963045099399195 2 0.00073909801201602326\n\t\t3 0 0.49963045101927511 1 0.49963045101927511 2 0.00073909796144987629\n\t\t3 0 0.49963045099399206 1 0.49963045099399195 2 0.00073909801201602326\n\t\t3 0 0.49963045101927511 1 0.49963045101927511 2 0.00073909796144987629\n\t\t3 0 0.49963045099399206 1 0.49963045099399195 2 0.00073909801201602326\n\t\t3 0 0.49963045093461911 1 0.499630450934619 2 0.00073909813076187885\n\t\t3 0 0.49963045087427016 1 0.49963045087427038 2 0.00073909825145937415\n\t\t3 0 0.49963045084996305 1 0.49963045084996305 2 0.00073909830007391005\n\t\t3 0 0.19944786292696104 1 0.79779161351269678 2 0.0027605235603422027\n\t\t3 0 0.19944785727924044 1 0.79779161932530585 2 0.002760523395453724\n\t\t3 0 0.19944786292696104 1 0.79779161351269678 2 0.0027605235603422027\n\t\t3 0 0.19944785727924044 1 0.79779161932530585 2 0.002760523395453724\n\t\t3 0 0.19944786292696104 1 0.79779161351269678 2 0.0027605235603422027\n\t\t3 0 0.19944787618965518 1 0.79779159986279047 2 0.0027605239475542937\n\t\t3 0 0.19944788967032534 1 0.79779158598854427 2 0.0027605243411303682\n\t\t3 0 0.19944789510006891 1 0.7977915804002762 2 0.0027605244996549345\n\t\t3 0 0.038095226336513695 1 0.9523809674656738 2 0.0095238061978124896\n\t\t3 0 0.038095224272368042 1 0.9523809701136704 2 0.0095238056139615689\n\t\t3 0 0.038095226336513695 1 0.9523809674656738 2 0.0095238061978124896\n\t\t3 0 0.038095224272368042 1 0.9523809701136704 2 0.0095238056139615689\n\t\t3 0 0.038095226336513695 1 0.9523809674656738 2 0.0095238061978124896\n\t\t3 0 0.038095231183802779 1 0.95238096124731186 2 0.0095238075688854271\n\t\t3 0 0.03809523611075883 1 0.95238095492674879 2 0.0095238089624924936\n\t\t3 0 0.038095238095238078 1 0.95238095238095244 2 0.0095238095238095195\n\t\t3 0 0.0095238061978124896 1 0.9523809674656738 2 0.038095226336513695\n\t\t3 0 0.0095238056139615689 1 0.9523809701136704 2 0.038095224272368042\n\t\t3 0 0.0095238061978124896 1 0.9523809674656738 2 0.038095226336513695\n\t\t3 0 0.0095238056139615689 1 0.9523809701136704 2 0.038095224272368042\n\t\t3 0 0.0095238061978124896 1 0.9523809674656738 2 0.038095226336513695\n\t\t3 0 0.0095238075688854271 1 0.95238096124731186 2 0.038095231183802779\n\t\t3 0 0.0095238089624924936 1 0.95238095492674857 2 0.03809523611075883\n\t\t3 0 0.0095238095238095195 1 0.95238095238095244 2 0.038095238095238078\n\t\t3 0 0.0027605235603422027 1 0.79779161351269678 2 0.19944786292696104\n\t\t3 0 0.002760523395453724 1 0.79779161932530585 2 0.19944785727924044\n\t\t3 0 0.0027605235603422027 1 0.79779161351269678 2 0.19944786292696104\n\t\t3 0 0.002760523395453724 1 0.79779161932530585 2 0.19944785727924044\n\t\t3 0 0.0027605235603422027 1 0.79779161351269678 2 0.19944786292696104\n\t\t3 0 0.0027605239475542937 1 0.79779159986279047 2 0.19944787618965518\n\t\t3 0 0.0027605243411303682 1 0.79779158598854427 2 0.19944788967032534\n\t\t3 0 0.0027605244996549345 1 0.7977915804002762 2 0.19944789510006891\n\t\t3 0 0.00073909801201602326 1 0.49963045099399206 2 0.49963045099399195\n\t\t3 0 0.00073909796144987629 1 0.49963045101927511 2 0.49963045101927511\n\t\t3 0 0.00073909801201602326 1 0.49963045099399206 2 0.49963045099399195\n\t\t3 0 0.00073909796144987629 1 0.49963045101927511 2 0.49963045101927511\n\t\t3 0 0.00073909801201602326 1 0.49963045099399206 2 0.49963045099399195\n\t\t3 0 0.00073909813076187885 1 0.49963045093461911 2 0.499630450934619\n\t\t3 0 0.00073909825145937415 1 0.49963045087427038 2 0.49963045087427038\n\t\t3 0 0.00073909830007391005 1 0.49963045084996305 2 0.49963045084996305\n\t\t3 0 0.0014587889254952275 1 0.49927060553725244 2 0.49927060553725244\n\t\t3 0 0.0014587888764375468 1 0.49927060556178127 2 0.49927060556178127\n\t\t3 0 0.0014587889254952275 1 0.49927060553725244 2 0.49927060553725244\n\t\t3 0 0.0014587888764375468 1 0.49927060556178127 2 0.49927060556178127\n\t\t3 0 0.0014587889254952275 1 0.49927060553725244 2 0.49927060553725244\n\t\t3 0 0.0014587890406987066 1 0.49927060547965069 2 0.49927060547965069\n\t\t3 0 0.0014587891577955998 1 0.49927060542110224 2 0.49927060542110224\n\t\t3 0 0.0014587892049598844 1 0.49927060539752011 2 0.49927060539752011\n\t\t3 0 0.99916079856674911 1 0.0007709574063015039 2 6.8244026949439864e-05\n\t\t3 0 0.00038565368299267253 1 0.49980717315850365 2 0.49980717315850365;\n\tsetAttr -s 3 \".pm\";\n\tsetAttr \".pm[0]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 -0 1 2.2204460492503131e-16 -0 0\n\t\t -0 -0 1 -0 5 1.1102230246251565e-15 -0 1;\n\tsetAttr \".pm[1]\" -type \"matrix\" 2.2204460492503131e-16 -1 0 -0 1 2.2204460492503131e-16 -0 0\n\t\t 0 -0 1 -0 -0 0 -0 1;\n\tsetAttr \".pm[2]\" -type \"matrix\" 1 -0 0 -0 -0 1 -0 0 0 -0 1 -0 -0 -5 -0 1;\n\tsetAttr \".gm\" -type \"matrix\" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1;\n\tsetAttr -s 3 \".ma\";\n\tsetAttr -s 3 \".dpf[0:2]\"  4 4 4;\n\tsetAttr -s 3 \".lw\";\n\tsetAttr -s 3 \".lw\";\n\tsetAttr \".mmi\" yes;\n\tsetAttr \".mi\" 5;\n\tsetAttr \".ucm\" yes;\n\tsetAttr -s 3 \".ifcl\";\n\tsetAttr -s 3 \".ifcl\";\ncreateNode tweak -n \"tweak1\";\n\trename -uid \"88E6729E-42DE-9556-DABD-BB9B39D22918\";\ncreateNode objectSet -n \"skinCluster1Set\";\n\trename -uid \"56EFD592-4944-4091-9D2B-FF87F2BF7196\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"skinCluster1GroupId\";\n\trename -uid \"9E52E901-4895-3756-9460-B4B9A79CF694\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"skinCluster1GroupParts\";\n\trename -uid \"C39A5A8D-4546-F143-A83A-03810C39FACB\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode objectSet -n \"tweakSet1\";\n\trename -uid \"271B22B6-4611-7658-048B-1C8667C15340\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".vo\" yes;\ncreateNode groupId -n \"groupId2\";\n\trename -uid \"D33D0080-49B4-33A5-3A01-69B51301D741\";\n\tsetAttr \".ihi\" 0;\ncreateNode groupParts -n \"groupParts2\";\n\trename -uid \"2EC0F7FD-4E1C-C76A-3C46-75B2E2AA1CC6\";\n\tsetAttr \".ihi\" 0;\n\tsetAttr \".ic\" -type \"componentList\" 1 \"vtx[*]\";\ncreateNode dagPose -n \"bindPose1\";\n\trename -uid \"50B19EF1-4376-A8A4-B876-5AA911D8DFBA\";\n\tsetAttr -s 3 \".wm\";\n\tsetAttr -s 3 \".xm\";\n\tsetAttr \".xm[0]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 0 -5 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 0 0 0 0 0 0 1 0 0 0.70710678118654746 0.70710678118654757 1 1 1 yes;\n\tsetAttr \".xm[1]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 5 1.1102230246251565e-15\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 yes;\n\tsetAttr \".xm[2]\" -type \"matrix\" \"xform\" 1 1 1 0 0 0 0 5 1.1102230246251565e-15\n\t\t 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 -0.70710678118654746 0.70710678118654757 1\n\t\t 1 1 yes;\n\tsetAttr -s 3 \".m\";\n\tsetAttr -s 3 \".p\";\n\tsetAttr \".bp\" yes;\ncreateNode script -n \"uiConfigurationScriptNode\";\n\trename -uid \"59471D5C-4BE4-725F-C4A1-A7A3986A4414\";\n\tsetAttr \".b\" -type \"string\" (\n\t\t\"// Maya Mel UI Configuration File.\\n//\\n//  This script is machine generated.  Edit at your own risk.\\n//\\n//\\n\\nglobal string $gMainPane;\\nif (`paneLayout -exists $gMainPane`) {\\n\\n\\tglobal int $gUseScenePanelConfig;\\n\\tint    $useSceneConfig = $gUseScenePanelConfig;\\n\\tint    $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\\tint    $nVisPanes = `paneLayout -q -nvp $gMainPane`;\\n\\tint    $nPanes = 0;\\n\\tstring $editorName;\\n\\tstring $panelName;\\n\\tstring $itemFilterName;\\n\\tstring $panelConfig;\\n\\n\\t//\\n\\t//  get current state of the UI\\n\\t//\\n\\tsceneUIReplacement -update $gMainPane;\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Top View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"top\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n\"\n\t\t+ \"            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n\"\n\t\t+ \"            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n\"\n\t\t+ \"            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 586\\n            -height 508\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Side View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Side View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"side\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n\"\n\t\t+ \"            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n\"\n\t\t+ \"            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 585\\n            -height 508\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Front View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Front View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"front\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n            -xray 0\\n            -jointXray 1\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n\"\n\t\t+ \"            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n\"\n\t\t+ \"            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 1178\\n            -height 1060\\n\"\n\t\t+ \"            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"modelPanel\\\" (localizedPanelLabel(\\\"Persp View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tmodelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        modelEditor -e \\n            -camera \\\"persp\\\" \\n            -useInteractiveMode 0\\n            -displayLights \\\"default\\\" \\n            -displayAppearance \\\"smoothShaded\\\" \\n            -activeOnly 0\\n            -ignorePanZoom 0\\n            -wireframeOnShaded 0\\n            -headsUpDisplay 1\\n            -holdOuts 1\\n            -selectionHiliteDisplay 1\\n            -useDefaultMaterial 0\\n            -bufferMode \\\"double\\\" \\n            -twoSidedLighting 0\\n            -backfaceCulling 0\\n\"\n\t\t+ \"            -xray 0\\n            -jointXray 0\\n            -activeComponentsXray 0\\n            -displayTextures 0\\n            -smoothWireframe 0\\n            -lineWidth 1\\n            -textureAnisotropic 0\\n            -textureHilight 1\\n            -textureSampling 2\\n            -textureDisplay \\\"modulate\\\" \\n            -textureMaxSize 32768\\n            -fogging 0\\n            -fogSource \\\"fragment\\\" \\n            -fogMode \\\"linear\\\" \\n            -fogStart 0\\n            -fogEnd 100\\n            -fogDensity 0.1\\n            -fogColor 0.5 0.5 0.5 1 \\n            -depthOfFieldPreview 1\\n            -maxConstantTransparency 1\\n            -rendererName \\\"vp2Renderer\\\" \\n            -objectFilterShowInHUD 1\\n            -isFiltered 0\\n            -colorResolution 256 256 \\n            -bumpResolution 512 512 \\n            -textureCompression 0\\n            -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n            -transpInShadows 0\\n            -cullingOverride \\\"none\\\" \\n            -lowQualityLighting 0\\n            -maximumNumHardwareLights 1\\n            -occlusionCulling 0\\n\"\n\t\t+ \"            -shadingModel 0\\n            -useBaseRenderer 0\\n            -useReducedRenderer 0\\n            -smallObjectCulling 0\\n            -smallObjectThreshold -1 \\n            -interactiveDisableShadows 0\\n            -interactiveBackFaceCull 0\\n            -sortTransparent 1\\n            -controllers 1\\n            -nurbsCurves 1\\n            -nurbsSurfaces 1\\n            -polymeshes 1\\n            -subdivSurfaces 1\\n            -planes 1\\n            -lights 1\\n            -cameras 1\\n            -controlVertices 1\\n            -hulls 1\\n            -grid 1\\n            -imagePlane 1\\n            -joints 1\\n            -ikHandles 1\\n            -deformers 1\\n            -dynamics 1\\n            -particleInstancers 1\\n            -fluids 1\\n            -hairSystems 1\\n            -follicles 1\\n            -nCloths 1\\n            -nParticles 1\\n            -nRigids 1\\n            -dynamicConstraints 1\\n            -locators 1\\n            -manipulators 1\\n            -pluginShapes 1\\n            -dimensions 1\\n            -handles 1\\n            -pivots 1\\n\"\n\t\t+ \"            -textures 1\\n            -strokes 1\\n            -motionTrails 1\\n            -clipGhosts 1\\n            -greasePencils 1\\n            -shadows 0\\n            -captureSequenceNumber -1\\n            -width 585\\n            -height 508\\n            -sceneRenderFilter 0\\n            $editorName;\\n        modelEditor -e -viewSelected 0 $editorName;\\n        modelEditor -e \\n            -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"ToggledOutliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"ToggledOutliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -docTag \\\"isolOutln_fromSeln\\\" \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n\"\n\t\t+ \"            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"defaultSetFilter\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n\"\n\t\t+ \"            -isSet 0\\n            -isSetMember 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            -renderFilterIndex 0\\n            -selectionOrder \\\"chronological\\\" \\n            -expandAttribute 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"outlinerPanel\\\" (localizedPanelLabel(\\\"Outliner\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\"\n\t\t+ \"\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\toutlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\t$editorName = $panelName;\\n        outlinerEditor -e \\n            -showShapes 0\\n            -showAssignedMaterials 0\\n            -showTimeEditor 1\\n            -showReferenceNodes 0\\n            -showReferenceMembers 0\\n            -showAttributes 0\\n            -showConnected 0\\n            -showAnimCurvesOnly 0\\n            -showMuteInfo 0\\n            -organizeByLayer 1\\n            -organizeByClip 1\\n            -showAnimLayerWeight 1\\n            -autoExpandLayers 1\\n            -autoExpand 0\\n            -showDagOnly 1\\n            -showAssets 1\\n            -showContainedOnly 1\\n            -showPublishedAsConnected 0\\n            -showParentContainers 0\\n            -showContainerContents 1\\n            -ignoreDagHierarchy 0\\n            -expandConnections 0\\n            -showUpstreamCurves 1\\n            -showUnitlessCurves 1\\n            -showCompounds 1\\n            -showLeafs 1\\n            -showNumericAttrsOnly 0\\n\"\n\t\t+ \"            -highlightActive 1\\n            -autoSelectNewObjects 0\\n            -doNotSelectNewObjects 0\\n            -dropIsParent 1\\n            -transmitFilters 0\\n            -setFilter \\\"0\\\" \\n            -showSetMembers 1\\n            -allowMultiSelection 1\\n            -alwaysToggleSelect 0\\n            -directSelect 0\\n            -displayMode \\\"DAG\\\" \\n            -expandObjects 0\\n            -setsIgnoreFilters 1\\n            -containersIgnoreFilters 0\\n            -editAttrName 0\\n            -showAttrValues 0\\n            -highlightSecondary 0\\n            -showUVAttrsOnly 0\\n            -showTextureNodesOnly 0\\n            -attrAlphaOrder \\\"default\\\" \\n            -animLayerFilterOptions \\\"allAffecting\\\" \\n            -sortOrder \\\"none\\\" \\n            -longNames 0\\n            -niceNames 1\\n            -showNamespace 1\\n            -showPinIcons 0\\n            -mapMotionTrails 0\\n            -ignoreHiddenAttribute 0\\n            -ignoreOutlinerColor 0\\n            -renderFilterVisible 0\\n            $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\"\n\t\t+ \"\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"graphEditor\\\" (localizedPanelLabel(\\\"Graph Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Graph Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 1\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n\"\n\t\t+ \"                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 1\\n                -showCompounds 0\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 1\\n                -doNotSelectNewObjects 0\\n                -dropIsParent 1\\n                -transmitFilters 1\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n\"\n\t\t+ \"                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 1\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"GraphEd\\\");\\n            animCurveEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 1\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 1\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -showResults \\\"off\\\" \\n                -showBufferCurves \\\"off\\\" \\n                -smoothness \\\"fine\\\" \\n                -resultSamples 1\\n                -resultScreenSamples 0\\n                -resultUpdate \\\"delayed\\\" \\n                -showUpstreamCurves 1\\n\"\n\t\t+ \"                -showCurveNames 0\\n                -showActiveCurveNames 0\\n                -stackedCurves 0\\n                -stackedCurvesMin -1\\n                -stackedCurvesMax 1\\n                -stackedCurvesSpace 0.2\\n                -displayNormalized 0\\n                -preSelectionHighlight 0\\n                -constrainDrag 0\\n                -classicMode 1\\n                -valueLinesToggle 1\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dopeSheetPanel\\\" (localizedPanelLabel(\\\"Dope Sheet\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dope Sheet\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"OutlineEd\\\");\\n            outlinerEditor -e \\n                -showShapes 1\\n                -showAssignedMaterials 0\\n                -showTimeEditor 1\\n                -showReferenceNodes 0\\n                -showReferenceMembers 0\\n\"\n\t\t+ \"                -showAttributes 1\\n                -showConnected 1\\n                -showAnimCurvesOnly 1\\n                -showMuteInfo 0\\n                -organizeByLayer 1\\n                -organizeByClip 1\\n                -showAnimLayerWeight 1\\n                -autoExpandLayers 1\\n                -autoExpand 0\\n                -showDagOnly 0\\n                -showAssets 1\\n                -showContainedOnly 0\\n                -showPublishedAsConnected 0\\n                -showParentContainers 1\\n                -showContainerContents 0\\n                -ignoreDagHierarchy 0\\n                -expandConnections 1\\n                -showUpstreamCurves 1\\n                -showUnitlessCurves 0\\n                -showCompounds 1\\n                -showLeafs 1\\n                -showNumericAttrsOnly 1\\n                -highlightActive 0\\n                -autoSelectNewObjects 0\\n                -doNotSelectNewObjects 1\\n                -dropIsParent 1\\n                -transmitFilters 0\\n                -setFilter \\\"0\\\" \\n                -showSetMembers 0\\n\"\n\t\t+ \"                -allowMultiSelection 1\\n                -alwaysToggleSelect 0\\n                -directSelect 0\\n                -displayMode \\\"DAG\\\" \\n                -expandObjects 0\\n                -setsIgnoreFilters 1\\n                -containersIgnoreFilters 0\\n                -editAttrName 0\\n                -showAttrValues 0\\n                -highlightSecondary 0\\n                -showUVAttrsOnly 0\\n                -showTextureNodesOnly 0\\n                -attrAlphaOrder \\\"default\\\" \\n                -animLayerFilterOptions \\\"allAffecting\\\" \\n                -sortOrder \\\"none\\\" \\n                -longNames 0\\n                -niceNames 1\\n                -showNamespace 1\\n                -showPinIcons 0\\n                -mapMotionTrails 1\\n                -ignoreHiddenAttribute 0\\n                -ignoreOutlinerColor 0\\n                -renderFilterVisible 0\\n                $editorName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"DopeSheetEd\\\");\\n            dopeSheetEditor -e \\n                -displayKeys 1\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n\"\n\t\t+ \"                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"integer\\\" \\n                -snapValue \\\"none\\\" \\n                -outliner \\\"dopeSheetPanel1OutlineEd\\\" \\n                -showSummary 1\\n                -showScene 0\\n                -hierarchyBelow 0\\n                -showTicks 1\\n                -selectionWindow 0 0 0 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"timeEditorPanel\\\" (localizedPanelLabel(\\\"Time Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Time Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"clipEditorPanel\\\" (localizedPanelLabel(\\\"Trax Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\"\n\t\t+ \"\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Trax Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = clipEditorNameFromPanel($panelName);\\n            clipEditor -e \\n                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 0 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"sequenceEditorPanel\\\" (localizedPanelLabel(\\\"Camera Sequencer\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Camera Sequencer\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = sequenceEditorNameFromPanel($panelName);\\n            clipEditor -e \\n\"\n\t\t+ \"                -displayKeys 0\\n                -displayTangents 0\\n                -displayActiveKeys 0\\n                -displayActiveKeyTangents 0\\n                -displayInfinities 0\\n                -displayValues 0\\n                -autoFit 0\\n                -snapTime \\\"none\\\" \\n                -snapValue \\\"none\\\" \\n                -initialized 0\\n                -manageSequencer 1 \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperGraphPanel\\\" (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypergraph Hierarchy\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"HyperGraphEd\\\");\\n            hyperGraph -e \\n                -graphLayoutStyle \\\"hierarchicalLayout\\\" \\n                -orientation \\\"horiz\\\" \\n                -mergeConnections 0\\n                -zoom 1\\n                -animateTransition 0\\n\"\n\t\t+ \"                -showRelationships 1\\n                -showShapes 0\\n                -showDeformers 0\\n                -showExpressions 0\\n                -showConstraints 0\\n                -showConnectionFromSelected 0\\n                -showConnectionToSelected 0\\n                -showConstraintLabels 0\\n                -showUnderworld 0\\n                -showInvisible 0\\n                -transitionFrames 1\\n                -opaqueContainers 0\\n                -freeform 0\\n                -imagePosition 0 0 \\n                -imageScale 1\\n                -imageEnabled 0\\n                -graphType \\\"DAG\\\" \\n                -heatMapDisplay 0\\n                -updateSelection 1\\n                -updateNodeAdded 1\\n                -useDrawOverrideColor 0\\n                -limitGraphTraversal -1\\n                -range 0 0 \\n                -iconSize \\\"smallIcons\\\" \\n                -showCachedConnections 0\\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"hyperShadePanel\\\" (localizedPanelLabel(\\\"Hypershade\\\")) `;\\n\"\n\t\t+ \"\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Hypershade\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"visorPanel\\\" (localizedPanelLabel(\\\"Visor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Visor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"nodeEditorPanel\\\" (localizedPanelLabel(\\\"Node Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Node Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\n\\t\\t\\t$editorName = ($panelName+\\\"NodeEditorEd\\\");\\n            nodeEditor -e \\n                -allAttributes 0\\n                -allNodes 0\\n                -autoSizeNodes 1\\n                -consistentNameSize 1\\n\"\n\t\t+ \"                -createNodeCommand \\\"nodeEdCreateNodeCommand\\\" \\n                -connectNodeOnCreation 0\\n                -connectOnDrop 0\\n                -highlightConnections 0\\n                -copyConnectionsOnPaste 0\\n                -defaultPinnedState 0\\n                -additiveGraphingMode 0\\n                -settingsChangedCallback \\\"nodeEdSyncControls\\\" \\n                -traversalDepthLimit -1\\n                -keyPressCommand \\\"nodeEdKeyPressCommand\\\" \\n                -nodeTitleMode \\\"name\\\" \\n                -gridSnap 0\\n                -gridVisibility 1\\n                -crosshairOnEdgeDragging 0\\n                -popupMenuScript \\\"nodeEdBuildPanelMenus\\\" \\n                -showNamespace 1\\n                -showShapes 1\\n                -showSGShapes 0\\n                -showTransforms 1\\n                -useAssets 1\\n                -syncedSelection 1\\n                -extendToShapes 1\\n                -activeTab -1\\n                -editorMode \\\"default\\\" \\n                $editorName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"createNodePanel\\\" (localizedPanelLabel(\\\"Create Node\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Create Node\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"polyTexturePlacementPanel\\\" (localizedPanelLabel(\\\"UV Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"UV Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"renderWindowPanel\\\" (localizedPanelLabel(\\\"Render View\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Render View\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"shapePanel\\\" (localizedPanelLabel(\\\"Shape Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tshapePanel -edit -l (localizedPanelLabel(\\\"Shape Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextPanel \\\"posePanel\\\" (localizedPanelLabel(\\\"Pose Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tposePanel -edit -l (localizedPanelLabel(\\\"Pose Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynRelEdPanel\\\" (localizedPanelLabel(\\\"Dynamic Relationships\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Dynamic Relationships\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\"\n\t\t+ \"\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"relationshipPanel\\\" (localizedPanelLabel(\\\"Relationship Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Relationship Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"referenceEditorPanel\\\" (localizedPanelLabel(\\\"Reference Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Reference Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"componentEditorPanel\\\" (localizedPanelLabel(\\\"Component Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Component Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"dynPaintScriptedPanelType\\\" (localizedPanelLabel(\\\"Paint Effects\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Paint Effects\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"scriptEditorPanel\\\" (localizedPanelLabel(\\\"Script Editor\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Script Editor\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"profilerPanel\\\" (localizedPanelLabel(\\\"Profiler Tool\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Profiler Tool\\\")) -mbv $menusOkayInPanels  $panelName;\\n\"\n\t\t+ \"\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\t$panelName = `sceneUIReplacement -getNextScriptedPanel \\\"contentBrowserPanel\\\" (localizedPanelLabel(\\\"Content Browser\\\")) `;\\n\\tif (\\\"\\\" != $panelName) {\\n\\t\\t$label = `panel -q -label $panelName`;\\n\\t\\tscriptedPanel -edit -l (localizedPanelLabel(\\\"Content Browser\\\")) -mbv $menusOkayInPanels  $panelName;\\n\\t\\tif (!$useSceneConfig) {\\n\\t\\t\\tpanel -e -l $label $panelName;\\n\\t\\t}\\n\\t}\\n\\n\\n\\tif ($useSceneConfig) {\\n        string $configName = `getPanel -cwl (localizedPanelLabel(\\\"Current Layout\\\"))`;\\n        if (\\\"\\\" != $configName) {\\n\\t\\t\\tpanelConfiguration -edit -label (localizedPanelLabel(\\\"Current Layout\\\")) \\n\\t\\t\\t\\t-userCreated false\\n\\t\\t\\t\\t-defaultImage \\\"vacantCell.xP:/\\\"\\n\\t\\t\\t\\t-image \\\"\\\"\\n\\t\\t\\t\\t-sc false\\n\\t\\t\\t\\t-configString \\\"global string $gMainPane; paneLayout -e -cn \\\\\\\"single\\\\\\\" -ps 1 100 100 $gMainPane;\\\"\\n\\t\\t\\t\\t-removeAllPanels\\n\\t\\t\\t\\t-ap false\\n\\t\\t\\t\\t\\t(localizedPanelLabel(\\\"Front View\\\")) \\n\\t\\t\\t\\t\\t\\\"modelPanel\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\\\\\"Front View\\\\\\\")) -mbv $menusOkayInPanels `;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -cam `findStartUpCamera front` \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1178\\\\n    -height 1060\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t\\t\\\"modelPanel -edit -l (localizedPanelLabel(\\\\\\\"Front View\\\\\\\")) -mbv $menusOkayInPanels  $panelName;\\\\n$editorName = $panelName;\\\\nmodelEditor -e \\\\n    -cam `findStartUpCamera front` \\\\n    -useInteractiveMode 0\\\\n    -displayLights \\\\\\\"default\\\\\\\" \\\\n    -displayAppearance \\\\\\\"smoothShaded\\\\\\\" \\\\n    -activeOnly 0\\\\n    -ignorePanZoom 0\\\\n    -wireframeOnShaded 0\\\\n    -headsUpDisplay 1\\\\n    -holdOuts 1\\\\n    -selectionHiliteDisplay 1\\\\n    -useDefaultMaterial 0\\\\n    -bufferMode \\\\\\\"double\\\\\\\" \\\\n    -twoSidedLighting 0\\\\n    -backfaceCulling 0\\\\n    -xray 0\\\\n    -jointXray 1\\\\n    -activeComponentsXray 0\\\\n    -displayTextures 0\\\\n    -smoothWireframe 0\\\\n    -lineWidth 1\\\\n    -textureAnisotropic 0\\\\n    -textureHilight 1\\\\n    -textureSampling 2\\\\n    -textureDisplay \\\\\\\"modulate\\\\\\\" \\\\n    -textureMaxSize 32768\\\\n    -fogging 0\\\\n    -fogSource \\\\\\\"fragment\\\\\\\" \\\\n    -fogMode \\\\\\\"linear\\\\\\\" \\\\n    -fogStart 0\\\\n    -fogEnd 100\\\\n    -fogDensity 0.1\\\\n    -fogColor 0.5 0.5 0.5 1 \\\\n    -depthOfFieldPreview 1\\\\n    -maxConstantTransparency 1\\\\n    -rendererName \\\\\\\"vp2Renderer\\\\\\\" \\\\n    -objectFilterShowInHUD 1\\\\n    -isFiltered 0\\\\n    -colorResolution 256 256 \\\\n    -bumpResolution 512 512 \\\\n    -textureCompression 0\\\\n    -transparencyAlgorithm \\\\\\\"frontAndBackCull\\\\\\\" \\\\n    -transpInShadows 0\\\\n    -cullingOverride \\\\\\\"none\\\\\\\" \\\\n    -lowQualityLighting 0\\\\n    -maximumNumHardwareLights 1\\\\n    -occlusionCulling 0\\\\n    -shadingModel 0\\\\n    -useBaseRenderer 0\\\\n    -useReducedRenderer 0\\\\n    -smallObjectCulling 0\\\\n    -smallObjectThreshold -1 \\\\n    -interactiveDisableShadows 0\\\\n    -interactiveBackFaceCull 0\\\\n    -sortTransparent 1\\\\n    -controllers 1\\\\n    -nurbsCurves 1\\\\n    -nurbsSurfaces 1\\\\n    -polymeshes 1\\\\n    -subdivSurfaces 1\\\\n    -planes 1\\\\n    -lights 1\\\\n    -cameras 1\\\\n    -controlVertices 1\\\\n    -hulls 1\\\\n    -grid 1\\\\n    -imagePlane 1\\\\n    -joints 1\\\\n    -ikHandles 1\\\\n    -deformers 1\\\\n    -dynamics 1\\\\n    -particleInstancers 1\\\\n    -fluids 1\\\\n    -hairSystems 1\\\\n    -follicles 1\\\\n    -nCloths 1\\\\n    -nParticles 1\\\\n    -nRigids 1\\\\n    -dynamicConstraints 1\\\\n    -locators 1\\\\n    -manipulators 1\\\\n    -pluginShapes 1\\\\n    -dimensions 1\\\\n    -handles 1\\\\n    -pivots 1\\\\n    -textures 1\\\\n    -strokes 1\\\\n    -motionTrails 1\\\\n    -clipGhosts 1\\\\n    -greasePencils 1\\\\n    -shadows 0\\\\n    -captureSequenceNumber -1\\\\n    -width 1178\\\\n    -height 1060\\\\n    -sceneRenderFilter 0\\\\n    $editorName;\\\\nmodelEditor -e -viewSelected 0 $editorName;\\\\nmodelEditor -e \\\\n    -pluginObjects \\\\\\\"gpuCacheDisplayFilter\\\\\\\" 1 \\\\n    $editorName\\\"\\n\"\n\t\t+ \"\\t\\t\\t\\t$configName;\\n\\n            setNamedPanelLayout (localizedPanelLabel(\\\"Current Layout\\\"));\\n        }\\n\\n        panelHistory -e -clear mainPanelHistory;\\n        sceneUIReplacement -clear;\\n\\t}\\n\\n\\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \\\"\\\" -homeParameters \\\"\\\" -selectionLockParameters \\\"\\\";\\n}\\n\");\n\tsetAttr \".st\" 3;\ncreateNode script -n \"sceneConfigurationScriptNode\";\n\trename -uid \"ADD2EEDC-45C2-D3C9-8226-81BC71AE5488\";\n\tsetAttr \".b\" -type \"string\" \"playbackOptions -min 1 -max 120 -ast 1 -aet 200 \";\n\tsetAttr \".st\" 6;\ncreateNode animCurveTA -n \"joint1_rotateX\";\n\trename -uid \"A6B44828-4794-24FA-1B6F-6AA86ED644E6\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 40 0 80 0;\ncreateNode animCurveTA -n \"joint1_rotateY\";\n\trename -uid \"CAD25DB6-4691-F4C7-8DEF-2AB8C1228CE0\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 40 0 80 0;\ncreateNode animCurveTA -n \"joint1_rotateZ\";\n\trename -uid \"CC28B584-4D11-9FD7-0595-37863232EABB\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 40 -60.791414791904991 80 -60.791414791904991;\ncreateNode animCurveTA -n \"joint2_rotateX\";\n\trename -uid \"B79A5293-43B8-5707-9E24-97A9D238E26D\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 40 0 80 0;\ncreateNode animCurveTA -n \"joint2_rotateY\";\n\trename -uid \"5B766052-42E3-4045-2FD6-C6A0129204F7\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 40 0 80 0;\ncreateNode animCurveTA -n \"joint2_rotateZ\";\n\trename -uid \"2E8348AF-4FDC-FD7A-77C0-89B8023B7E30\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 40 -60.791414791904835 80 -60.791414791904835;\ncreateNode animCurveTA -n \"joint3_rotateX\";\n\trename -uid \"E66BE122-402F-9532-DCD2-25B2D1A672D9\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 40 0 80 0;\ncreateNode animCurveTA -n \"joint3_rotateY\";\n\trename -uid \"F00E0F0B-4189-BA43-11F0-B8860E86D8E8\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 40 0 80 0;\ncreateNode animCurveTA -n \"joint3_rotateZ\";\n\trename -uid \"8C5ADEDB-4C50-B5DA-D541-15828E84C21D\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 40 -60.791414791904813 80 -60.791414791904813;\ncreateNode animCurveTU -n \"joint1_visibility\";\n\trename -uid \"57B49ED0-4A6D-B0E3-DF53-5693EC8FC00F\";\n\tsetAttr \".tan\" 9;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 40 1 80 1;\n\tsetAttr -s 3 \".kot[0:2]\"  5 5 5;\ncreateNode animCurveTL -n \"joint1_translateX\";\n\trename -uid \"81988291-4E5E-581C-E974-FDB3242A4E88\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 40 0 80 0;\ncreateNode animCurveTL -n \"joint1_translateY\";\n\trename -uid \"54B0F710-4E18-8190-A700-5EB48BFF3B40\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 -5 40 -5 80 -5;\ncreateNode animCurveTL -n \"joint1_translateZ\";\n\trename -uid \"62112301-4586-3281-3818-9CB4383D5209\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 40 0 80 0;\ncreateNode animCurveTU -n \"joint1_scaleX\";\n\trename -uid \"6C35A23C-4C23-A594-95AD-E4A4599578BC\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 40 1 80 1;\ncreateNode animCurveTU -n \"joint1_scaleY\";\n\trename -uid \"EE8DEFBD-40D2-09CA-80A3-D4A2281AB863\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 40 1 80 1;\ncreateNode animCurveTU -n \"joint1_scaleZ\";\n\trename -uid \"FB5B8A95-4FB8-5AFE-CC49-F297A6C2F5D8\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 40 1 80 1;\ncreateNode animCurveTU -n \"joint2_visibility\";\n\trename -uid \"C4279EAD-47E3-E01F-D955-4081D3A61E79\";\n\tsetAttr \".tan\" 9;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 40 1 80 1;\n\tsetAttr -s 3 \".kot[0:2]\"  5 5 5;\ncreateNode animCurveTL -n \"joint2_translateX\";\n\trename -uid \"5F35C1E8-41E0-4716-837C-34BE985B17D6\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 5 40 5 80 5;\ncreateNode animCurveTL -n \"joint2_translateY\";\n\trename -uid \"A7DFED39-443E-34EE-FFF4-478BB69C33EB\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1.1102230246251565e-15 40 1.1102230246251565e-15\n\t\t 80 1.1102230246251565e-15;\ncreateNode animCurveTL -n \"joint2_translateZ\";\n\trename -uid \"9A30D715-4859-D8BE-D2C0-B8B4B41C79B1\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 40 0 80 0;\ncreateNode animCurveTU -n \"joint2_scaleX\";\n\trename -uid \"D77A82B5-4264-363B-F828-4885C3ACD70F\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 40 1 80 9.9999999999999998e-13;\ncreateNode animCurveTU -n \"joint2_scaleY\";\n\trename -uid \"C9918D87-441F-0730-094C-5DA55F283ECD\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 40 1 80 9.9999999999999998e-13;\ncreateNode animCurveTU -n \"joint2_scaleZ\";\n\trename -uid \"64B200F6-4600-E9C5-E82D-77B19E6527D8\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 40 1 80 9.9999999999999998e-13;\ncreateNode animCurveTU -n \"joint3_visibility\";\n\trename -uid \"471664D0-4500-4DCB-30CA-DFA67AA85E74\";\n\tsetAttr \".tan\" 9;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 40 1 80 1;\n\tsetAttr -s 3 \".kot[0:2]\"  5 5 5;\ncreateNode animCurveTL -n \"joint3_translateX\";\n\trename -uid \"039B63F9-4EC7-993B-2AD3-0CA0B66061C0\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 5 40 5 80 5;\ncreateNode animCurveTL -n \"joint3_translateY\";\n\trename -uid \"8C612CBF-46DB-D3CB-6E6C-3CA7F855733D\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1.1102230246251565e-15 40 1.1102230246251565e-15\n\t\t 80 1.1102230246251565e-15;\ncreateNode animCurveTL -n \"joint3_translateZ\";\n\trename -uid \"B0FF0032-4BFE-AEA4-B5B8-4C9D7FD45607\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 0 40 0 80 0;\ncreateNode animCurveTU -n \"joint3_scaleX\";\n\trename -uid \"3B70C5C7-4563-E171-6709-63AC1657FFD9\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 40 1 80 1;\ncreateNode animCurveTU -n \"joint3_scaleY\";\n\trename -uid \"0EEBFB71-45A2-5CF9-0C3D-3481F61B5483\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 40 1 80 1;\ncreateNode animCurveTU -n \"joint3_scaleZ\";\n\trename -uid \"645A6EF7-4C68-2CE8-81F5-F5AA213B0A36\";\n\tsetAttr \".tan\" 18;\n\tsetAttr \".wgt\" no;\n\tsetAttr -s 3 \".ktv[0:2]\"  1 1 40 1 80 1;\nselect -ne :time1;\n\tsetAttr \".o\" 1;\n\tsetAttr \".unw\" 1;\nselect -ne :hardwareRenderingGlobals;\n\tsetAttr \".otfna\" -type \"stringArray\" 22 \"NURBS Curves\" \"NURBS Surfaces\" \"Polygons\" \"Subdiv Surface\" \"Particles\" \"Particle Instance\" \"Fluids\" \"Strokes\" \"Image Planes\" \"UI\" \"Lights\" \"Cameras\" \"Locators\" \"Joints\" \"IK Handles\" \"Deformers\" \"Motion Trails\" \"Components\" \"Hair Systems\" \"Follicles\" \"Misc. UI\" \"Ornaments\"  ;\n\tsetAttr \".otfva\" -type \"Int32Array\" 22 0 1 1 1 1 1\n\t\t 1 1 1 0 0 0 0 0 0 0 0 0\n\t\t 0 0 0 0 ;\n\tsetAttr \".fprt\" yes;\nselect -ne :renderPartition;\n\tsetAttr -s 2 \".st\";\nselect -ne :renderGlobalsList1;\nselect -ne :defaultShaderList1;\n\tsetAttr -s 4 \".s\";\nselect -ne :postProcessList1;\n\tsetAttr -s 2 \".p\";\nselect -ne :defaultRenderingList1;\nselect -ne :initialShadingGroup;\n\tsetAttr \".ro\" yes;\nselect -ne :initialParticleSE;\n\tsetAttr \".ro\" yes;\nselect -ne :defaultResolution;\n\tsetAttr \".pa\" 1;\nselect -ne :hardwareRenderGlobals;\n\tsetAttr \".ctrs\" 256;\n\tsetAttr \".btrs\" 512;\nselect -ne :ikSystem;\n\tsetAttr -s 4 \".sol\";\nconnectAttr \"joint1_scaleX.o\" \"joint1.sx\";\nconnectAttr \"joint1_scaleY.o\" \"joint1.sy\";\nconnectAttr \"joint1_scaleZ.o\" \"joint1.sz\";\nconnectAttr \"joint1_rotateX.o\" \"joint1.rx\";\nconnectAttr \"joint1_rotateY.o\" \"joint1.ry\";\nconnectAttr \"joint1_rotateZ.o\" \"joint1.rz\";\nconnectAttr \"joint1_visibility.o\" \"joint1.v\";\nconnectAttr \"joint1_translateX.o\" \"joint1.tx\";\nconnectAttr \"joint1_translateY.o\" \"joint1.ty\";\nconnectAttr \"joint1_translateZ.o\" \"joint1.tz\";\nconnectAttr \"joint1.s\" \"joint2.is\";\nconnectAttr \"joint2_scaleX.o\" \"joint2.sx\";\nconnectAttr \"joint2_scaleY.o\" \"joint2.sy\";\nconnectAttr \"joint2_scaleZ.o\" \"joint2.sz\";\nconnectAttr \"joint2_rotateX.o\" \"joint2.rx\";\nconnectAttr \"joint2_rotateY.o\" \"joint2.ry\";\nconnectAttr \"joint2_rotateZ.o\" \"joint2.rz\";\nconnectAttr \"joint2_visibility.o\" \"joint2.v\";\nconnectAttr \"joint2_translateX.o\" \"joint2.tx\";\nconnectAttr \"joint2_translateY.o\" \"joint2.ty\";\nconnectAttr \"joint2_translateZ.o\" \"joint2.tz\";\nconnectAttr \"joint2.s\" \"joint3.is\";\nconnectAttr \"joint3_rotateX.o\" \"joint3.rx\";\nconnectAttr \"joint3_rotateY.o\" \"joint3.ry\";\nconnectAttr \"joint3_rotateZ.o\" \"joint3.rz\";\nconnectAttr \"joint3_visibility.o\" \"joint3.v\";\nconnectAttr \"joint3_translateX.o\" \"joint3.tx\";\nconnectAttr \"joint3_translateY.o\" \"joint3.ty\";\nconnectAttr \"joint3_translateZ.o\" \"joint3.tz\";\nconnectAttr \"joint3_scaleX.o\" \"joint3.sx\";\nconnectAttr \"joint3_scaleY.o\" \"joint3.sy\";\nconnectAttr \"joint3_scaleZ.o\" \"joint3.sz\";\nconnectAttr \"skinCluster1GroupId.id\" \"pCylinderShape1.iog.og[2].gid\";\nconnectAttr \"skinCluster1Set.mwc\" \"pCylinderShape1.iog.og[2].gco\";\nconnectAttr \"groupId2.id\" \"pCylinderShape1.iog.og[3].gid\";\nconnectAttr \"tweakSet1.mwc\" \"pCylinderShape1.iog.og[3].gco\";\nconnectAttr \"skinCluster1.og[0]\" \"pCylinderShape1.i\";\nconnectAttr \"tweak1.vl[0].vt[0]\" \"pCylinderShape1.twl\";\nconnectAttr \"polyCylinder1.out\" \"pCylinderShape1Orig.i\";\nrelationship \"link\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"link\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialShadingGroup.message\" \":defaultLightSet.message\";\nrelationship \"shadowLink\" \":lightLinker1\" \":initialParticleSE.message\" \":defaultLightSet.message\";\nconnectAttr \"layerManager.dli[0]\" \"defaultLayer.id\";\nconnectAttr \"renderLayerManager.rlmi[0]\" \"defaultRenderLayer.rlid\";\nconnectAttr \"skinCluster1GroupParts.og\" \"skinCluster1.ip[0].ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1.ip[0].gi\";\nconnectAttr \"bindPose1.msg\" \"skinCluster1.bp\";\nconnectAttr \"joint1.wm\" \"skinCluster1.ma[0]\";\nconnectAttr \"joint2.wm\" \"skinCluster1.ma[1]\";\nconnectAttr \"joint3.wm\" \"skinCluster1.ma[2]\";\nconnectAttr \"joint1.liw\" \"skinCluster1.lw[0]\";\nconnectAttr \"joint2.liw\" \"skinCluster1.lw[1]\";\nconnectAttr \"joint3.liw\" \"skinCluster1.lw[2]\";\nconnectAttr \"joint1.obcc\" \"skinCluster1.ifcl[0]\";\nconnectAttr \"joint2.obcc\" \"skinCluster1.ifcl[1]\";\nconnectAttr \"joint3.obcc\" \"skinCluster1.ifcl[2]\";\nconnectAttr \"groupParts2.og\" \"tweak1.ip[0].ig\";\nconnectAttr \"groupId2.id\" \"tweak1.ip[0].gi\";\nconnectAttr \"skinCluster1GroupId.msg\" \"skinCluster1Set.gn\" -na;\nconnectAttr \"pCylinderShape1.iog.og[2]\" \"skinCluster1Set.dsm\" -na;\nconnectAttr \"skinCluster1.msg\" \"skinCluster1Set.ub[0]\";\nconnectAttr \"tweak1.og[0]\" \"skinCluster1GroupParts.ig\";\nconnectAttr \"skinCluster1GroupId.id\" \"skinCluster1GroupParts.gi\";\nconnectAttr \"groupId2.msg\" \"tweakSet1.gn\" -na;\nconnectAttr \"pCylinderShape1.iog.og[3]\" \"tweakSet1.dsm\" -na;\nconnectAttr \"tweak1.msg\" \"tweakSet1.ub[0]\";\nconnectAttr \"pCylinderShape1Orig.w\" \"groupParts2.ig\";\nconnectAttr \"groupId2.id\" \"groupParts2.gi\";\nconnectAttr \"joint1.msg\" \"bindPose1.m[0]\";\nconnectAttr \"joint2.msg\" \"bindPose1.m[1]\";\nconnectAttr \"joint3.msg\" \"bindPose1.m[2]\";\nconnectAttr \"bindPose1.w\" \"bindPose1.p[0]\";\nconnectAttr \"bindPose1.m[0]\" \"bindPose1.p[1]\";\nconnectAttr \"bindPose1.m[1]\" \"bindPose1.p[2]\";\nconnectAttr \"joint1.bps\" \"bindPose1.wm[0]\";\nconnectAttr \"joint2.bps\" \"bindPose1.wm[1]\";\nconnectAttr \"joint3.bps\" \"bindPose1.wm[2]\";\nconnectAttr \"defaultRenderLayer.msg\" \":defaultRenderingList1.r\" -na;\nconnectAttr \"pCylinderShape1.iog\" \":initialShadingGroup.dsm\" -na;\n// End of ZeroParentScaleTestAnim.ma\n"
  },
  {
    "path": "maya/scripts/README.md",
    "content": "# WMP internal notes\r\n\r\n## To run these python scripts in Maya\r\n\r\n    import sys\r\n    sys.path.append('C:/dev/glTF/maya2glTF/maya/scripts/')\r\n    from maya2glTF_capture import capture\r\n    from maya2glTF_playblast import playblast\r\n\r\n# To reload the python scripts after changes\r\n\r\n    reload(sys.modules['maya2glTF_capture'])\r\n    reload(sys.modules['maya2glTF_playblast'])\r\n\r\n\r\n"
  },
  {
    "path": "maya/scripts/clipboard.mel",
    "content": "source \"maya2glTF_UI\";\r\nsource \"maya2glTF_assignPbrShader.mel\";\r\nrehash;\r\n\r\nmaya2glTF_UI();\r\n\r\nsource \"maya2glTF_common.mel\";\r\nrehash;\r\n//maya2glTF_forEachSceneIn(\"D:/Nova/scenes\", true, true, \"maya2glTF_createDefaultCamera();\");\r\nmaya2glTF_forEachSceneIn(\"D:/Nova/scenes\", true, true, \"maya2glTF_playblast();\");\r\n\r\nmaya2glTF_forEachSceneIn(\"D:/Nova/scenes\", true, false,\"python(\\\"from maya2glTF_playblast import playblast\\\\nplayblast(frame=1)\\\")\");\r\n\r\n\r\nloadPlugin \"maya2glTF\";\r\nmaya2glTF_forEachSceneIn(\"D:/Nova/scenes\", true, false, \"maya2glTF_exportPlayblastScene();\");\r\nunloadPlugin  \"maya2glTF\";\r\n\r\nmaya2glTF_forEachSceneIn(\"D:/Nova/scenes\", true, true, \"maya2glTF_createDefaultCamera();\");\r\n\r\nfile -loadReferenceDepth \"asPrefs\" -loadReference \"Nova_rigRN\" \"P:/024_WM_TheRecyclables/03_Production/02_rig/Nova/Nova_rig.ma\";\r\n\r\nmaya2glTF_createDefaultCamera()\r\n\r\npython(\"from maya2glTF_playblast import playblast\\nplayblast(frame=1)\")\r\n"
  },
  {
    "path": "maya/scripts/maya2glTF_UI.mel",
    "content": "source \"maya2glTF_common.mel\";\r\nsource \"maya2glTF_animachine.mel\";\r\nsource \"maya2glTF_version.mel\";\r\n\r\nproc string _quoted(string $text)\r\n{\r\n    string $quote = \"\\\"\";\r\n    return $quote+$text+$quote;\r\n}\r\n\r\nproc string _ensureTrailingSlash(string $folder)\r\n{\r\n    return $folder + (endsWith($folder,\"/\") ? \"\" : \"/\");\r\n}\r\n\r\nproc string _combinePaths(string $path1, string $path2) {\r\n    return size($path1) == 0\r\n     ? $path2\r\n     : _ensureTrailingSlash($path1)+$path2;\r\n}\r\n\r\nproc string _ensureScriptNode() {\r\n    string $node = \"maya2glTF_scriptNode\";\r\n\r\n    if (!`objExists $node`) {\r\n        scriptNode -st 2 -n $node;\r\n    }\r\n\r\n    return $node;\r\n}\r\n\r\nproc _deleteScriptNode() {\r\n    string $node = \"maya2glTF_scriptNode\";\r\n\r\n    if (`objExists $node`) {\r\n        delete $node;\r\n    }\r\n}\r\n\r\nproc _setInt(string $key, int $value) {\r\n    string $node = _ensureScriptNode();\r\n    if (!attributeExists($key, $node)) {\r\n        addAttr -sn $key -ln $key -at \"long\" $node;\r\n    }\r\n    setAttr ($node+\".\"+$key) $value;\r\n}\r\n\r\nproc _setFlt(string $key, float $value) {\r\n    string $node = _ensureScriptNode();\r\n    if (!attributeExists($key, $node)) {\r\n        addAttr -sn $key -ln $key -at \"float\" $node;\r\n    }\r\n    setAttr ($node+\".\"+$key) $value;\r\n}\r\n\r\nproc _setStr(string $key, string $value) {\r\n    string $node = _ensureScriptNode();\r\n    if (!attributeExists($key, $node)) {\r\n        addAttr -sn $key -ln $key -dt \"string\" $node;\r\n    }\r\n    setAttr ($node+\".\"+$key) -type \"string\" $value;\r\n}\r\n\r\nproc int _getInt(string $key, int $defaultValue) {\r\n    string $node = _ensureScriptNode();\r\n    return attributeExists($key, $node) ? `getAttr ($node+\".\"+$key)` : $defaultValue;\r\n}\r\n\r\nproc float _getFlt(string $key, float $defaultValue) {\r\n    string $node = _ensureScriptNode();\r\n    return attributeExists($key, $node) ? `getAttr ($node+\".\"+$key)` : $defaultValue;\r\n}\r\n\r\nproc string _getStr(string $key, string $defaultValue) {\r\n    string $node = _ensureScriptNode();\r\n    return attributeExists($key, $node) ? `getAttr ($node+\".\"+$key)` : $defaultValue;\r\n}\r\n\r\nproc string _getTraxClips(string $char) {\r\n    float $startTimes[];\r\n    float $stopTimes[];\r\n    string $clipNames[];\r\n    int $clipCount = maya2glTF_getTraxClips($char, $startTimes, $stopTimes, $clipNames);\r\n\r\n    string $fps = `currentTimeUnitToFPS`;\r\n    string $flags = `format -s($fps) \" -afr ^1s\"`;\r\n\r\n    int $i;\r\n    for ($i=0; $i<$clipCount; ++$i) {\r\n        $flags += `format -s(_quoted($clipNames[$i])) -s($startTimes[$i]) -s($stopTimes[$i])\" -acn ^1s -ast ^2s -aet ^3s\"`;\r\n    }\r\n\r\n    print ($flags+\"\\n\");\r\n\r\n    return $flags;\r\n}\r\n\r\nglobal proc maya2glTF_ignoreSelectedDeformers() \r\n{\r\n    string $bsList[] = `ls -sl -type blendShape`;\r\n    string $scList[] = `ls -sl -type skinCluster`;\r\n    string $deformers[] = stringArrayCatenate($bsList, $scList);\r\n\r\n    if (size($deformers) == 0)\r\n        error \"No blendShape or skinCluster was selected\";\r\n\r\n    string $attrName = \"MGi\";\r\n    string $niceName = \"Ignored by maya2glTF\";\r\n\r\n    for ($deformer in $deformers) {\r\n        if (attributeExists($attrName, $deformer)) {\r\n            print (\"Deleting existing attribute on \"+$deformer+\"\\n\");\r\n            deleteAttr -at $attrName -n $deformer;\r\n        }\r\n\r\n        print (\"Adding attribute \" + $attrName + \" on \" + $deformer + \"\\n\");\r\n        addAttr -at bool -nn $niceName -sn $attrName -dv on -ct \"maya2glTF\" $deformer;\r\n    }\r\n}\r\n\r\nglobal proc maya2glTF_onExport\r\n( string $copyrightFLD\r\n, string $folderFLD\r\n, string $sceneNameFLD\r\n, string $scaleFLD\r\n, string $flagsFLD\r\n, string $animFLD\r\n, string $clipFLD\r\n, string $charFLD\r\n, string $selOnlyFLD\r\n, string $visOnlyFLD\r\n)\r\n{\r\n    // This is defined on maya startup\r\n    global string $gMainProgressBar;  \r\n\r\n    // Workaround a maya bug: progress is cancelled twice\r\n    progressBar -edit\r\n        -beginProgress\r\n        -isInterruptable true\r\n        -status \"maya2glTF: preparing for export...\"\r\n        -minValue 0\r\n        -maxValue 1\r\n        $gMainProgressBar;\r\n\r\n    while(`progressBar -query -isCancelled $gMainProgressBar`) \r\n    {\r\n        print (\"maya2glTF: aborting previous export...\\n\");\r\n        progressBar -edit -endProgress $gMainProgressBar;\r\n    }\r\n\r\n    progressBar -edit -endProgress $gMainProgressBar;\r\n\r\n    string $copyright = `textFieldGrp -q -fileName $copyrightFLD`; \r\n    string $folder = `textFieldGrp -q -fileName $folderFLD`;\r\n    $folder = _ensureTrailingSlash($folder);\r\n    string $sceneName = `textFieldGrp -q -text $sceneNameFLD`;\r\n    float $scale = `floatFieldGrp -q -value1 $scaleFLD`;\r\n    string $flags = `textFieldGrp -q -text $flagsFLD`;\r\n    int $anim = `optionMenuGrp -q -sl $animFLD`;\r\n    string $clip = `textFieldGrp -q -text $clipFLD`;\r\n    string $char = `optionMenuGrp -q -v $charFLD`;\r\n    int $selOnly = `checkBoxGrp -q -value1 $selOnlyFLD`;\r\n    int $visOnly = `checkBoxGrp -q -value1 $visOnlyFLD`;\r\n\r\n    // Persist values\r\n    _setStr(\"outputFolder\", $folder);\r\n    _setStr(\"sceneName\", $sceneName);\r\n    _setStr(\"copyright\", $copyright);\r\n    _setFlt(\"scale\", $scale);\r\n    _setStr(\"flags\", $flags);\r\n    _setStr(\"char\", $char);\r\n    _setInt(\"anim\", $anim);\r\n    _setStr(\"clip\", $clip);\r\n    _setInt(\"selOnly\", $selOnly);\r\n    _setInt(\"visOnly\", $visOnly);\r\n\r\n    switch ($anim) \r\n    {\r\n        case 2:\r\n        case 3:\r\n        {\r\n            string $ast = $anim == 2 ? `playbackOptions -q -min` : `playbackOptions -q -ast`;\r\n            string $aet = $anim == 2 ? `playbackOptions -q -max` : `playbackOptions -q -aet`;\r\n            string $fps = `currentTimeUnitToFPS`;\r\n            $flags += `format -s(_quoted($clip)) -s($ast) -s($aet) -s($fps) \" -acn ^1s -ast ^2s -aet ^3s -afr ^4s\"`;\r\n        }\r\n        break;\r\n\r\n        case 4:\r\n            // Fetch clips from TRAX\r\n            $flags += _getTraxClips($char);\r\n            break;\r\n    }\r\n\r\n    if ($selOnly) {\r\n        $flags += \" -sno\";\r\n    }\r\n\r\n    if ($visOnly) {\r\n        $flags += \" -vno\";\r\n    }\r\n\r\n    string $cmd = `format \r\n        -s(_quoted($sceneName)) \r\n        -s(_quoted($folder)) \r\n        -s($scale) \r\n        -s(_quoted($copyright)) \r\n        -s($flags)\r\n        \"maya2glTF -sn ^1s -of ^2s -sf ^3s -cpr ^4s ^5s\"\r\n    `;\r\n\r\n    print ($cmd+\"\\n\");\r\n\r\n    print (\"maya2glTF: loading plugin...\\n\");\r\n\r\n    loadPlugin \"maya2glTF\";\r\n\r\n    print (\"maya2glTF: plugin loaded.\\n\");\r\n\r\n    int $failed = catch(eval($cmd));\r\n\r\n    unloadPlugin \"maya2glTF\";\r\n\r\n    int $aborted = `progressBar -query -isCancelled $gMainProgressBar`;\r\n\r\n    if (!$failed && !$aborted) {\r\n        // Export animation metadata\r\n        // TODO: Make this optional!\r\n        if ($anim > 1)\r\n        {\r\n            string $outputName = $sceneName+\".json\";\r\n            string $outputPath = _combinePaths($folder, $outputName);\r\n            string $json = $anim == 4 \r\n                ? maya2glTF_traxAnimMetaDataToJSON($sceneName, $char)\r\n                : maya2glTF_sceneAnimMetaDataToJSON($sceneName, $anim == 2, false);\r\n\r\n            int $fileId=`fopen $outputPath \"w\"`;\r\n            fprint $fileId $json;\r\n            fclose $fileId;   \r\n        }\r\n    }\r\n\r\n    if ($aborted) {\r\n        print (\"*** maya2glTF: aborted at \"+`date -time`+\" ***\\n\");\r\n    } else if ($failed) {\r\n        print (\"!!! maya2glTF: failed at \"+`date -time`+\" !!!\\n\");\r\n    } else {\r\n        print (\"+++ maya2glTF: completed at \"+`date -time`+\" +++\\n\");\r\n    }\r\n\r\n    progressBar -edit -endProgress $gMainProgressBar;\r\n}\r\n\r\nproc string _getDefaultOutputFolder() {\r\n    string $scenePath = `file -q -loc`;\r\n    string $sceneDir = dirname($scenePath);\r\n    string $actualDir = size($sceneDir) == 0 ? `getenv \"MAYA_APP_DIR\"` : $sceneDir;\r\n    return  _ensureTrailingSlash($actualDir)+\"export/\";\r\n}\r\n\r\nproc string _getDefaultSceneName() {\r\n    string $sceneName = basenameEx(`file -q -sceneName -shortName`);\r\n    return size($sceneName) == 0 ? \"untitled\" : $sceneName;\r\n}\r\n\r\nglobal proc maya2glTF_resetUI() {\r\n    _deleteScriptNode();\r\n    maya2glTF_UI();\r\n}\r\n\r\nglobal proc maya2glTF_UI()\r\n{\r\n    // This is defined on maya startup\r\n    global string $gMainProgressBar;  \r\n    \r\n    if (`window -exists maya2glTF_exporter_window`)\r\n        deleteUI maya2glTF_exporter_window;\r\n\r\n    string $year = `date -format \"YYYY\"`;\r\n    string $chars[] = `ls -type character`;\r\n\r\n    // Load previous or default values\r\n    string $exportDir = fromNativePath(_getStr(\"outputFolder\", _getDefaultOutputFolder()));\r\n    string $sceneName = _getStr(\"sceneName\", _getDefaultSceneName());\r\n    string $copyright = _getStr(\"copyright\", \"(C)\"+$year+\" \"+getenv(\"username\"));\r\n    float $scale = _getFlt(\"scale\", 1);\r\n    string $flags = _getStr(\"flags\", \"\");\r\n    string $char = _getStr(\"char\", $chars[0]);\r\n    int $anim = _getInt(\"anim\", 1);\r\n    string $clip = _getStr(\"clip\", \"clip\");\r\n    int $selOnly = _getInt(\"selOnly\", 1);\r\n    int $visOnly = _getInt(\"visOnly\", 1);\r\n\r\n    window -title (\"maya2glTF\") maya2glTF_exporter_window;\r\n\r\n    string $header = \"Copyright (C)\" + $year + \" IIM    version \" + maya2glTF_version();\r\n\r\n    string $frame = `frameLayout -mw 30 -mh 30 ($header)`;\r\n\r\n    columnLayout -adjustableColumn true -rowSpacing 10; \r\n\r\n    button -label \"assign PBR shader to selection\" -command \"maya2glTF_assignPbrShader();\";\r\n    button -label \"ignore selected mesh deformers\" -command \"maya2glTF_ignoreSelectedDeformers();\";\r\n\r\n    separator;\r\n\r\n    button -label \"select all polygon meshes\" -command \"maya2glTF_polySelectAndFrame();\" -bgc (60/255.0) (80/255.0) (120/255.0);\r\n\r\n    separator;\r\n\r\n    string $folderFLD = `textFieldGrp -fileName $exportDir -label \"output folder:\" -adjustableColumn 2`;\r\n    string $copyrightFLD = `textFieldGrp -text $copyright -label \"copyright:\" -adjustableColumn 2`;\r\n    string $sceneNameFLD = `textFieldGrp -text $sceneName -label \"scene name:\" -adjustableColumn 2`;\r\n    string $scaleFLD = `floatFieldGrp -precision 6 -value1 $scale -label \"scale factor:\"`;\r\n    string $selOnlyFLD = `checkBoxGrp -value1 $selOnly -label \"selected only?\" -annotation \"Export just the selected nodes, or also include the hierarchy underneath them?\"`;\r\n    string $visOnlyFLD = `checkBoxGrp -value1 $visOnly -label \"visible only?\"`;\r\n\r\n    string $flagsFLD = `textFieldGrp -text $flags -label \"extra flags:\" -adjustableColumn 2 `;\r\n\r\n    string $animFLD = `optionMenuGrp -label \"animation:\" -adjustableColumn 2`;\r\n        menuItem -label \"none\";\r\n        menuItem -label \"time slider\";\r\n        menuItem -label \"range slider\";\r\n\r\n    if (size($chars) > 0)\r\n        menuItem -label \"trax\";\t\r\n\r\n    string $clipFLD = `textFieldGrp -label \"clip name:\" -text $clip -enable 0 -adjustableColumn 2`;\r\n\r\n    string $charFLD = `optionMenuGrp -label \"character:\" -enable 0 -adjustableColumn 2`;\r\n    \r\n    for ($c in $chars)\r\n        menuItem -label $c;\r\n\r\n    if (size($chars) == 0)\r\n        menuItem -label \"\";\r\n\r\n    string $animCMD = `format \r\n        -s(_quoted($animFLD)) \r\n        -s(_quoted($charFLD)) \r\n        -s(_quoted($clipFLD))\r\n        ( \r\n            \"optionMenuGrp -edit -enable (`optionMenuGrp -q -sl ^1s` == 4) ^2s;\" +\r\n            \"textFieldGrp -edit -enable (`optionMenuGrp -q -sl ^1s` == 2 || `optionMenuGrp -q -sl ^1s` == 3) ^3s;\"\r\n        )`;\r\n\r\n    optionMenuGrp -edit -changeCommand $animCMD $animFLD;\r\n\r\n    catch(`optionMenuGrp -edit -value $char $charFLD`);\r\n    catch(`optionMenuGrp -edit -select $anim $animFLD`);\r\n    catch(`eval $animCMD`);\r\n\r\n    separator;\r\n\r\n    string $exportCMD = `format \r\n        -s(_quoted($copyrightFLD)) \r\n        -s(_quoted($folderFLD)) \r\n        -s(_quoted($sceneNameFLD)) \r\n        -s(_quoted($scaleFLD))\r\n        -s(_quoted($flagsFLD))\r\n        -s(_quoted($animFLD))\r\n        -s(_quoted($clipFLD))\r\n        -s(_quoted($charFLD))\r\n        -s(_quoted($selOnlyFLD))\r\n        -s(_quoted($visOnlyFLD))\r\n         \"maya2glTF_onExport(^1s, ^2s, ^3s, ^4s, ^5s, ^6s, ^7s, ^8s, ^9s, ^10s);\"`;\r\n\r\n    button -label \"export selected meshes\" -command $exportCMD -bgc  (50/255.0) (120/255.0) (70/255.0);\r\n\r\n    separator;\r\n\r\n    button -label \"reset to default values\" -command \"evalDeferred(\\\"maya2glTF_resetUI();\\\");\";\r\n    \r\n    showWindow maya2glTF_exporter_window;\r\n}\r\n"
  },
  {
    "path": "maya/scripts/maya2glTF_animachine.mel",
    "content": "source \"maya2glTF_common.mel\";\r\n\r\nproc string _quoted(string $text)\r\n{\r\n    string $quote = \"\\\"\";\r\n    return $quote+$text+$quote;\r\n}\r\n\r\nproc string _quotedOrNull(string $text)\r\n{\r\n    return size($text) ? _quoted($text): \"null\";\r\n}\r\n\r\nproc string[] _itosa(int $val)\r\n{\r\n    string $si = $val;\r\n    return {$si};\r\n}\r\n\r\nproc string _itos(int $val)\r\n{\r\n    string $si = $val;\r\n    return $si;\r\n}\r\n\r\nproc string _identString(int $level) {\r\n    int $t;\r\n    string $result = \"\";\r\n    for ($t = 0; $t < $level; $t++)\r\n    {\r\n        $result += \"\\t\";\r\n    }    \r\n    return $result;\r\n}\r\n\r\nproc _replaceItem(string $oldName, string $newName, string $names[]) {\r\n    int $index = stringArrayFind($oldName, 0, $names);\t\r\n    if ($index >= 0) {\r\n        $names[$index] = $newName;\r\n    }\r\n}\r\n\r\n// Returns { $name, $kind, $mood, $postPlaybackMood };\r\nproc string[] _parseClipName(string $clipName, int $removePrefixFromClipName)\r\n{\r\n    string $CLIP_KIND_IDLE = \"Idle\";\r\n    string $CLIP_KIND_PUPPETEER = \"Puppeteer\";\r\n    string $CLIP_KIND_VISEMES = \"Visemes\";\r\n    string $CLIP_KIND_PANHEAD = \"PanHead\";\r\n    string $CLIP_KIND_TILTHEAD = \"TiltHead\";\r\n    string $CLIP_KIND_SETUP  = \"Setup\";\r\n\r\n    // Build human friendly name\r\n    string $tokens[] = {};\r\n    tokenize(tolower($clipName),\"_\",$tokens);\r\n\r\n    if ($removePrefixFromClipName) {\r\n        stringArrayRemoveAtIndex(0, $tokens);\r\n    }\r\n\r\n    // To remain backwards compatible, rename the old idle moods\r\n    _replaceItem(\"z\", \"neutral\", $tokens);\r\n    _replaceItem(\"p\", \"positive\", $tokens);\r\n    _replaceItem(\"n\", \"negative\", $tokens);\r\n\r\n    string $name = stringArrayToString($tokens, \" \");\r\n\r\n    string $kind = $CLIP_KIND_PUPPETEER;\r\n\r\n    // By default a clip has no starting mood\r\n    string $mood = \"\";\r\n\r\n    // By default a clip has no ending mood.\r\n    string $postPlaybackMood = \"\";\r\n\r\n    if (stringArrayContains(\"setup\", $tokens))\r\n    {\r\n        $kind = $CLIP_KIND_SETUP;\r\n    }\r\n    else if (stringArrayContains(\"visemes\", $tokens))\r\n    {\r\n        $kind = $CLIP_KIND_VISEMES;\r\n    }\r\n    else if (stringArrayContains(\"head\", $tokens) && stringArrayContains(\"up\", $tokens) && stringArrayContains(\"down\", $tokens))\r\n    {\r\n        $kind = $CLIP_KIND_TILTHEAD;\r\n    }\r\n    else if (stringArrayContains(\"head\", $tokens) && stringArrayContains(\"right\", $tokens) && stringArrayContains(\"left\", $tokens))\r\n    {\r\n        $kind = $CLIP_KIND_PANHEAD;\r\n    }\r\n    else if (size($tokens) > 1 && startsWith($tokens[0], \"idle\"))\r\n    {\r\n        $kind = $CLIP_KIND_IDLE;\r\n        stringArrayRemoveAtIndex(0, $tokens);\r\n        $mood = stringArrayToString($tokens, \" \");\r\n    }\r\n    else \r\n    {\r\n        // Puppeteer clip\r\n        if (`attributeExists \"wmanPostPlaybackMood\" $clipName`) \r\n        {\r\n            $postPlaybackMood = `getAttr ($clipName+\".wmanPostPlaybackMood\")`;\r\n        }\r\n    }\r\n    \r\n    string $result[] = { $name, $kind, $mood, $postPlaybackMood };\r\n    \r\n    return $result;\r\n}\r\n\r\nproc string _getAnimMetaData(string $animationName, string $attributes[], float $duration, string $indent) {\r\n    string $result = \"\";\r\n    $result += $indent + _quoted($animationName) + \": {\\n\";\r\n    $result += $indent + \"\\t\\\"version\\\": 1,\\n\";\r\n    $result += $indent + \"\\t\\\"id\\\": \" + _quoted($animationName) + \",\\n\";\r\n    $result += $indent + \"\\t\\\"name\\\": \" + _quoted($attributes[0]) + \",\\n\";\r\n    $result += $indent + \"\\t\\\"kind\\\": \" + _quoted($attributes[1]) + \",\\n\";\r\n    $result += $indent + \"\\t\\\"mood\\\": \" + _quotedOrNull($attributes[2]) + \",\\n\";\r\n    $result += $indent + \"\\t\\\"postPlaybackMood\\\": \" + _quotedOrNull($attributes[3]) + \",\\n\";\r\n    $result += $indent + \"\\t\\\"duration\\\": \" + $duration + \"\\n\";\r\n    $result += $indent + \"}\";\r\n\r\n    return $result;\r\n}\r\n\r\n/** \r\n    Exports the animation metadata of the current scene. \r\n    \r\n    For now, the $sceneName will be parsed like IIM's AnimationNow software, to extract the clip mood, kind etc.\r\n    This should be replaced by custom attributes one day.\r\n\r\n    The $clipName is the human friendly name of the clip. \r\n    If empty, it will be parsed from the scene name, removing the first word of the scene name (assuming naming like Nova_Yes)\r\n*/\r\nglobal proc string maya2glTF_sceneAnimMetaDataToJSON(string $sceneName, string $clipName, int $useRangeSlider)\r\n{\r\n    float $clipDurationToSeconds = maya2glTF_timeUnitToSeconds();\r\n\r\n    float $timeStart = $useRangeSlider ? `playbackOptions -q -min` : `playbackOptions -q -ast`;\r\n    float $timeEnd = $useRangeSlider ? `playbackOptions -q -max` : `playbackOptions -q -aet`;\r\n\r\n    float  $duration = ($timeEnd - $timeStart) * $clipDurationToSeconds;\r\n\r\n    int $hasClipName = size($clipName) > 0;\r\n\r\n    string $attributes[] = _parseClipName($sceneName, !$hasClipName);\r\n\r\n    if ($hasClipName) {\r\n        $attributes[0] = $clipName;\r\n    }\r\n\r\n    string $result = \"{\\n\";\r\n    $result += _getAnimMetaData($sceneName, $attributes, $duration, \"\\t\");\r\n    $result += \"\\n\";\r\n    $result += \"}\\n\";\r\n\r\n    return $result;\r\n}\r\n\r\n\r\nglobal proc string maya2glTF_traxAnimMetaDataToJSON(string $modelId, string $charName)\r\n{\r\n    float $startTimes[];\r\n    float $stopTimes[];\r\n    string $clipNames[];\r\n    int $clipCount = maya2glTF_getTraxClips($charName, $startTimes, $stopTimes, $clipNames);\r\n\r\n    float $clipDurationToSeconds = maya2glTF_timeUnitToSeconds();\r\n\r\n    // Generate JSON \r\n    string $result = \"{\\n\";\r\n    $result += \"\\t\\\"version\\\": 1,\\n\";\r\n    $result += \"\\t\\\"id\\\":\" + _quoted($modelId) + \",\\n\";\r\n    $result += \"\\t\\\"name\\\":\" + _quoted($charName) + \",\\n\";\r\n    $result += \"\\t\\\"animations\\\": {\";\r\n\r\n    string $lineSeparator = \"\\n\";\r\n\r\n    int $i;\r\n    for ($i=0; $i<$clipCount; ++$i) {\r\n        float $duration = ($stopTimes[$i] - $startTimes[$i]) * $clipDurationToSeconds;\r\n        string $attributes[] = _parseClipName($clipNames[$i], false);\r\n        $result += $lineSeparator;\r\n        $result += _getAnimMetaData($clipNames[$i],$attributes, $duration, \"\\t\\t\");\r\n        $lineSeparator = \",\\n\";\r\n    }\r\n\r\n    $result += \"\\n\\t}\\n\";\r\n    $result += \"}\\n\";\r\n\r\n    return $result;\r\n}\r\n\r\nglobal proc string[] maya2glTF_getSelectedAnimClips() \r\n{\r\n    string $sel[] = `ls -sl`;\r\n    string $clips[] = `ls -exactType \"animClip\" $sel`;\r\n    return $clips;\r\n}\r\n\r\nglobal proc int maya2glTF_canAddPostPlaybackMoodAttr() \r\n{\r\n    string $clips[] = maya2glTF_getSelectedAnimClips();\r\n    return size($clips) > 0;\r\n}\r\n\r\nglobal proc maya2glTF_addCustomAttr(string $sel[], string $name, string $description, string $type)\r\n{\r\n    for ($obj in $sel)\r\n    {\r\n        if (!`attributeExists $name $obj`) \r\n        {\r\n            if ($type == \"string\") {\r\n                addAttr -dt \"string\" -ln $name -nn $description -storable 1 -keyable 0 $obj;\r\n            } else {\r\n                addAttr -at $type -ln $name -nn $description -storable 1 -keyable 0 $obj;\r\n            }\r\n        }\r\n    }\r\n}\r\n\r\nglobal proc maya2glTF_addPostPlaybackMoodAttrTo(string $sel[])\r\n{\r\n    maya2glTF_addCustomAttr($sel, \"wmanPostPlaybackMood\", \"Post playback mood\", \"string\");\r\n}\r\n\r\nglobal proc maya2glTF_addThumbnailFrameAttrTo(string $sel[])\r\n{\r\n    maya2glTF_addCustomAttr($sel, \"wmanThumbnailFrame\", \"Thumbnail frame\", \"long\");\r\n}\r\n\r\nglobal proc maya2glTF_addPostPlaybackMoodAttr()\r\n{\r\n    maya2glTF_addPostPlaybackMoodAttrTo(`ls -sl`);\r\n}\r\n\r\nglobal proc maya2glTF_addThumbnailFrameAttr()\r\n{\r\n    maya2glTF_addThumbnailFrameAttrTo(`ls -sl`);\r\n}\r\n\r\nglobal proc maya2glTF_setThumbnailFrame()\r\n{\r\n    string $sel[] = `ls -sl`;\r\n    string $clips[] = `ls -exactType \"animClip\" $sel`;\r\n    string $other[] = stringArrayRemove($clips, $sel);\r\n\r\n    float $time = `currentTime -q`;\r\n\r\n    if (size($clips)) {\r\n        // Find TRAX clip at current time, and add attribute\r\n        string $charNames[] = `clip -q -ch $sel[0]`;\r\n\r\n        float $startTimes[];\r\n        float $stopTimes[];\r\n        string $clipNames[];\r\n        int $clipCount = maya2glTF_getTraxClips($charNames[0], $startTimes, $stopTimes, $clipNames);\r\n\r\n        int $i;\r\n        for ($i=0; $i<$clipCount; ++$i) {\r\n            if ($time >= $startTimes[$i] && $time <$stopTimes[$i]) {\r\n                float $relativeTime = $time - $startTimes[$i];\r\n                string $clip[] = {$clipNames[$i]};\r\n                maya2glTF_addThumbnailFrameAttrTo($clip);\r\n                setAttr ($clip[0]+\".wmanThumbnailFrame\") $relativeTime;\r\n                select $clip[0];\r\n                break;\r\n            }\r\n        }\r\n    }\r\n\r\n    if (size($other)) {\r\n        maya2glTF_addThumbnailFrameAttrTo($other);\r\n        \r\n        for ($obj in $other) {\r\n            setAttr ($obj+\".wmanThumbnailFrame\") $time;\r\n        }\r\n    }\r\n\r\n}\r\n\r\nglobal proc maya2glTF_playblastCurrentFrame(string $outputImageBasePath, int $width, int $height, string $camera)\r\n{\r\n    float $fps = `currentTimeUnitToFPS`;\r\n    float $time = `currentTime -q`;\r\n\r\n    python(\"import sys\\nsys.path.append(cmds.workspace( expandName = 'scripts'))\\nimport maya2glTF_playblast\");\r\n\r\n    string $cmd = `format -s($width) -s($height) -s($outputImageBasePath) -s($time) -s($time) -s($camera) \"maya2glTF_playblast.playblast(width=^1s, height=^2s, filename='^3s', start_frame=^4s, end_frame=^5s, camera='^6s')\\n\"`;\r\n\r\n    print $cmd;\r\n    python($cmd);\r\n}\r\n\r\nglobal proc maya2glTF_playblastTraxClips(string $charName, string $outputFolder, int $width, int $height, string $camera, string $ffmpegPath)\r\n{\r\n    float $startTimes[];\r\n    float $stopTimes[];\r\n    string $clipNames[];\r\n    int $clipCount = maya2glTF_getTraxClips($charName, $startTimes, $stopTimes, $clipNames);\r\n\r\n    float $fps = `currentTimeUnitToFPS`;\r\n\r\n    progressWindow -endProgress;\r\n\r\n    progressWindow \r\n        -title \"maya2glTF\" \r\n        -min 0 \r\n        -max ($clipCount * 2)\r\n        -status \"Playblasting...\" \r\n        -isInterruptable true \r\n        -progress 0;\r\n\r\n    python(\"import sys\\nsys.path.append(cmds.workspace( expandName = 'scripts'))\\nimport maya2glTF_playblast\");\r\n\r\n    int $progress = 0;\r\n\r\n    int $i;\r\n\r\n    string $imageOutputRoot = maya2glTF_combinePaths($outputFolder, \"png\");\r\n   \r\n    for ($i=0; $i<$clipCount; ++$i) {\r\n        string $clipName = $clipNames[$i];\r\n        string $blastOutputFolder = maya2glTF_combinePaths($imageOutputRoot, $clipName);\r\n        string $blastOutputPath = maya2glTF_combinePaths($blastOutputFolder, \"frame\");\r\n        string $thumbAnimOutputFolder = maya2glTF_combinePaths($outputFolder, \"anims\");\r\n        string $pngOutputPath = maya2glTF_combinePaths($thumbAnimOutputFolder, $clipName+\".png\");\r\n        string $gifOutputPath = maya2glTF_combinePaths($thumbAnimOutputFolder, $clipName+\".gif\");\r\n        string $vp9OutputPath = maya2glTF_combinePaths($thumbAnimOutputFolder, $clipName+\".webm\");\r\n\r\n        sysFile -makeDir $thumbAnimOutputFolder;\r\n\r\n        float $startTime = $startTimes[$i];\r\n        float $stopTime = $stopTimes[$i];\r\n\r\n        string $cmd = `format -s($width) -s($height) -s($blastOutputPath) -s($startTime) -s($stopTime) -s($camera) \"maya2glTF_playblast.playblast(width=^1s, height=^2s, filename='^3s', start_frame=^4s, end_frame=^5s, camera='^6s')\\n\"`;\r\n\r\n        print (\"Playblasting \" + $clipName + \"...\\n\");\r\n\r\n        progressWindow -edit -progress ($progress++) -status (\"play:\"+$clipName);\r\n\r\n        python($cmd);\r\n\r\n        if (`progressWindow -query -isCancelled`) {\r\n            print (\"Aborted!\");\r\n            break;\r\n        }\r\n\r\n        print (\"Creating GIF for \" + $clipName + \"...\\n\");\r\n\r\n        // Copy PNG thumbnail\r\n        int $hasThumbFrame = `attributeExists \"wmanThumbnailFrame\" $clipName`;\r\n        print ($clipName+\":\"+$hasThumbFrame+\"\\n\");\r\n        int $thumbFrame = $hasThumbFrame\r\n            ? `getAttr ($clipName+\".wmanThumbnailFrame\")` \r\n            : floor(($stopTime - $startTime) / 2);\r\n\r\n        string $sourceFilePath = $blastOutputPath + \".\" + maya2glTF_intToStringWithZeroPadding($thumbFrame, 4) + \".png\";\r\n\r\n        print (\"Using \" + $sourceFilePath + \" as thumbnail PNG\\n\");\r\n        sysFile -copy $pngOutputPath $sourceFilePath;\r\n\r\n        print (\"Creating GIF for \" + $clipName + \"...\\n\");\r\n        progressWindow -edit -progress ($progress++) -status (\"gif:\"+$clipName);\r\n\r\n        string $backgroundColor = \"#121212\";\r\n\r\n        $cmd = `format -s($ffmpegPath) -s($fps) -s ($blastOutputPath) -s($gifOutputPath) -s($backgroundColor ) \"start \\\"^1s\\\" -y -r ^2s -i \\\"^3s.%04d.png\\\" -filter_complex \\\"split=2[bg][fg];[bg]drawbox=c=^5s@1:replace=1:t=fill[bg];[bg][fg]overlay=format=auto[gfx];[gfx]split=2[a][b]; [a] palettegen [pal]; [b] fifo [b]; [b] [pal] paletteuse\\\" -r 10 \\\"^4s\\\"\"`;\r\n\r\n        print ($cmd+\"\\n\");\r\n        print(system($cmd)+\"\\n\");\r\n\r\n        $cmd = `format -s($ffmpegPath) -s($fps) -s ($blastOutputPath) -s($vp9OutputPath) \"start \\\"^1s\\\" -y -r ^2s -i \\\"^3s.%04d.png\\\"  -pix_fmt yuva420p -c:v libvpx-vp9 -crf 25 -preset ultrafast -threads 4 -row-mt 1 -r ^2s \\\"^4s\\\"\"`;\r\n\r\n        print ($cmd+\"\\n\");\r\n        print(system($cmd)+\"\\n\");\r\n\r\n        if (`progressWindow -query -isCancelled`) {\r\n            print (\"Aborted!\");\r\n            break;\r\n        }\r\n    }\r\n\r\n    progressWindow -endProgress;\r\n}\r\n\r\n//maya2glTF_playblastTraxClips(\"Beanie\", \"c:/temp/playblast\", 256, 256, \"thumbcam\", \"D:/Nova/Playblast/ffmpeg.exe\");\r\n//print(maya2glTF_sceneAnimMetaDataToJSON(\"Nova_Yes2\", \"\", true));\r\n// print(maya2glTF_traxAnimMetaDataToJSON(\"Nova1\"));\r\n\r\n// maya2glTF_playblastTraxClips(\"Alice_v03\", \"c:/temp/playblast/Alice_v03\", 256, 256, \"thumbcam\", \"c:/dev/AnimachineAssets/tools/ffmpeg.exe\");\r\n\r\n// maya2glTF_playblastTraxClips(\"RUFUS_ALL\", \"P:/042_WM_Oz/02_AssetProduction/10_glTF/public/models/Alice_v3/thumbs\", 256, 256, \"thumbcam\", \"c:/dev/AnimachineAssets/tools/ffmpeg.exe\");\r\n\r\n// maya2glTF_playblastCurrentFrame(\"c:/temp/head\", 256, 256, \"persp\")\r\n\r\n"
  },
  {
    "path": "maya/scripts/maya2glTF_archiveAllScenes.py",
    "content": "import maya\r\nimport zlib\r\nimport zipfile\r\nimport os as os\r\nimport maya.cmds as cmds\r\nimport maya.mel as mel\r\n\r\nfrom os import path\r\n\r\ndef zipScenes(scenesDir=''):\r\n    # get the default character encoding of the system\r\n    theLocale = cmds.about(codeset=True)\r\n\r\n    if (scenesDir == ''):\r\n\r\n        currentScenePath = cmds.file(q=True, sn=True)\r\n\r\n        if (currentScenePath == ''):\r\n            cmds.error('Current scene has no filename! Please reload it.' )\r\n\r\n        # get the folder of the current scene\r\n        scenesDir = os.path.dirname(currentScenePath)\r\n\r\n        if (scenesDir == ''):\r\n            cmds.error('Cannot extract directory from current scene! Please reload it.' )\r\n\r\n    # get all Maya scene files in that folder\r\n    sceneFilenames = [f for f in os.listdir(scenesDir) if os.path.isfile(os.path.join(scenesDir, f)) and f.endswith('.ma')]   \r\n\r\n    print (''.join(sceneFilenames))\r\n\r\n    progressIndex = 0\r\n    progressCount = len(sceneFilenames) * 2\r\n\r\n    cmds.progressWindow(title='busy', min=0, max=progressCount, progress=0, status='initializing...', isInterruptable=True )\r\n\r\n    try:\r\n\r\n        zipPath = os.path.join(scenesDir, 'archive.zip')\r\n        print('creating \"%s\"...' % zipPath)\r\n\r\n        #if os.path.exists(zipPath):\r\n        #    os.remove(zipPath)\r\n\r\n        zip=zipfile.ZipFile(zipPath, 'w', zipfile.ZIP_DEFLATED)\r\n\r\n        done=set()\r\n\r\n        for sceneFilename in sceneFilenames:\r\n            scenePath = os.path.join(scenesDir, sceneFilename)\r\n            \r\n            print('loading \"%s\"...' % scenePath)\r\n\r\n            progressIndex += 1\r\n\r\n            cmds.progressWindow(edit=True, progress=progressIndex, status='loading...' )\r\n\r\n            # Check if the dialog has been cancelled\r\n            if cmds.progressWindow( query=True, isCancelled=True ):\r\n                cmds.error('cancelled')\r\n\r\n            # open the file\r\n            try:\r\n                cmds.file( scenePath, o=True, iv=True, f=True, pmt=False)\r\n            except:\r\n                cmds.warning( 'errors occurred when loading %s!' % scenePath )    \r\n                pass\r\n\r\n            # Check if the dialog has been cancelled\r\n            if cmds.progressWindow( query=True, isCancelled=True ):\r\n                cmds.error('cancelled')\r\n\r\n            progressIndex += 1\r\n\r\n            cmds.progressWindow(edit=True, progress=progressIndex, status='zipping...' )\r\n\r\n            # get a list of all the files associated with the scene\r\n            files = cmds.file(query=1, list=1, withoutCopyNumber=1)\r\n\r\n            # Check if the dialog has been cancelled\r\n            if cmds.progressWindow( query=True, isCancelled=True ):\r\n                cmds.error('cancelled')\r\n\r\n            # workspacePath = cmds.workspace(q = True, fullName = True) + '/workspace.mel'    \r\n            # files.append(workspacePath)\r\n        \r\n            # add each file associated with the scene, including the scene to the .zip file\r\n            for file in files:\r\n                # Check if the dialog has been cancelled\r\n                if cmds.progressWindow( query=True, isCancelled=True ):\r\n                    cmds.error('cancelled')\r\n\r\n                if(path.isfile(file)):\r\n                    name = file.encode(theLocale)\r\n                    if (name in done):\r\n                        print('already archived \"%s\", skipping' % file)\r\n                    else:\r\n                        print('archiving \"%s\"...' % file)\r\n                        zip.write(name)\r\n                        done.add(name)\r\n                else:\r\n                    cmds.warning( 'skipping %s' % file )\r\n\r\n        # output a message whose result is the name of the zip file newly created\r\n        print('\"%s\" created succesfully' % zipPath)\r\n    except:\r\n        print('failed to create \"%s\"!' % zipPath)\r\n    finally:\r\n        zip.close()\r\n        cmds.progressWindow(endProgress=1)\r\n\r\n#zipScenes()\r\n\r\n"
  },
  {
    "path": "maya/scripts/maya2glTF_assignPbrShader.mel",
    "content": "/*\n* Creates and assigns a new material to a mesh using a supplied glTF PBR glsl shader.\n*\n* param $objectNames        The names of the meshes to assign the new material to, leave this empty to use the current selection.\n*\n* param $shaderPath         The path to the glTF PBR shader used by the new material.\n*\n* param $texturePatterns    The regex patterns used to map the texture paths to the glTF PBR shader texture attributes. \n*                           You can use \"|\" to combine multiple patterns (Maya doesn't support that natively)\n*                           The shader texture attributes have the following order:\n*                               u_BaseColorTexture, u_MetallicTexture, u_RoughnessTexture, u_OcclusionTexture, u_NormalTexture,\n*                               u_EmissiveTexture, u_DiffuseEnvTexture, u_SpecularEnvTexture, u_brdfTexture\n*/\n\nglobal string $maya2glTF_default_texture_patterns[];\nglobal string $maya2glTF_default_shader_path;\nglobal string $maya2glTF_last_texture_directory;\n\nproc string _ensureTrailingSlash( string $folderPath ) {\n    if (substring($folderPath, size($folderPath), size($folderPath)) != \"/\")\n        $folderPath += \"/\";\n\n    return $folderPath;\n}\n\nglobal proc maya2glTF_assignMaterialAndTextures(\n    string $objectNames[],\n    string $shaderPath,\n    string $texturePatterns[]\n)\n{\n\tglobal string $maya2glTF_default_texture_patterns[];\n\tglobal string $maya2glTF_default_shader_path;\n\tglobal string $maya2glTF_last_texture_directory;\n\t\n\tstring $filePaths[];\n\t\n\tif (size($maya2glTF_default_texture_patterns) == 0) \n\t{\n\t\t$maya2glTF_default_texture_patterns = {\n\t\t\t\"basecolor|albedo\",\n\t\t\t\"metal|_orm\",\n\t\t\t\"rough|_orm\",\n\t\t\t\"occl|_orm|_ao\",\n\t\t\t\"normal\",\n\t\t\t\"emissive\",\n\t\t\t\"diffuse[\\\\W\\\\d_]*env\",\n\t\t\t\"specular[\\\\W\\\\d_]*env\",\n\t\t\t\"brdf\"\n\t\t};\n\t}\n\t\n    // get current selection if $objectNames is not specified\n    if (size($objectNames) <= 0)\n    {\n        string $ls[] = `ls -sl`;\n        $objectNames = $ls;\n    }\n\n    if (size($objectNames) <= 0)\n        error \"No node to apply the PBR material to was specified\";\n\t\t\n\tif ($shaderPath == \"\")\n\t\t$shaderPath = $maya2glTF_default_shader_path;\n\n    if ($shaderPath == \"\" || !`filetest -f $shaderPath`) {\n\t\t$filePaths = `fileDialog2 -fm 1 -ff \"*.ogsfx\" -cap \"Select GLTF PBR GLSL shader\"`;\n\t\t$shaderPath = $filePaths[0];\n\t}\n\n    if (!`filetest -f $shaderPath`)\n        error \"Invalid shader path, file not found\";\n\n\t$maya2glTF_default_shader_path = $shaderPath;\n\t\t\n    string $attrNames[] = {\n        \"u_BaseColorTexture\",\n        \"u_MetallicTexture\",\n        \"u_RoughnessTexture\",\n        \"u_OcclusionTexture\",\n        \"u_NormalTexture\",\n        \"u_EmissiveTexture\",\n        \"u_DiffuseEnvTexture\",\n        \"u_SpecularEnvTexture\",\n        \"u_brdfTexture\"\n    };\n\t\n\tif (size($texturePatterns) == 0)\n\t\t$texturePatterns = $maya2glTF_default_texture_patterns;\n\n    if (size($texturePatterns) != size($attrNames))\n        error \"Invalid amount of texture patterns\";\n\n    loadPlugin \"glslShader.mll\";\n    source \"createAndAssignShader.mel\";\n\n    // create new glTF PBR GLSL shader\n    string $sh = `shadingNode -asShader GLSLShader`;\n    setAttr -type \"string\" ($sh+\".shader\") $shaderPath;\n    assignCreatedShader \"GLSLShader\" \"\" $sh (stringArrayToString($objectNames, \" \"));\n\n\tif (size($maya2glTF_last_texture_directory) <= 0) {\n\t\t$maya2glTF_last_texture_directory = dirname(`file -q -loc`);\n\t\tprint (\"Using '\"+$maya2glTF_last_texture_directory+\"' as initial texture folder\\n\");\n\t}\n\n    // request texture paths\n    $filePaths = `fileDialog2 -dir $maya2glTF_last_texture_directory -fm 4 -cap \"Select all textures\"`;\n    if (size($filePaths) <= 0)\n        return;\n\n\t// remember texture directory\n\t$maya2glTF_last_texture_directory = dirname($filePaths[0]);\n\tprint (\"Using '\"+$maya2glTF_last_texture_directory+\"' as next texture folder\\n\");\n\n    // match texture paths to material texture attributes\n    for ($i = 0; $i < size($attrNames); ++$i)\n    {\n        string $texturePattern = $texturePatterns[$i];\n\t\tstring $texturePatterns[];\n\t\ttokenize $texturePattern \"|\" $texturePatterns;\n\n\t\tint $found = false;\n\t\t\n        for ($j = 0; $j < size($filePaths) && !$found; ++$j)\n        {\n            string $filePath = $filePaths[$j];\n            string $filePathLower = `tolower $filePath`;\n\t\t\t// if ($i==0) print ($filePathLower+\"\\n\");\n\n\t\t\tstring $currentPattern;\n\t\t\tstring $matchedPattern;\n\t\t\t \n\t\t\tfor ($currentPattern in $texturePatterns)\n\t\t\t{\n\t\t\t\tif(`match $currentPattern $filePathLower` != \"\") \n\t\t\t\t{\n\t\t\t\t\t$matchedPattern = $currentPattern;\n\t\t\t\t\t$found = true;\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\n            if (size($matchedPattern))\n            {\n\t\t\t\tprint (\"'\"+$filePathLower+\"' matched texture pattern '\"+$matchedPattern+\"'\\n\");\n\n                string $shAttrName = ($sh+\".\"+$attrNames[$i]);\n                string $fileNode = `createRenderNodeCB -as2DTexture \"\" file (\"defaultNavigation -force true -connectToExisting -source %node -destination \"+$shAttrName+\";\")`;\n                setAttr -type \"string\" ($fileNode+\".fileTextureName\") $filePath;\n\t\t\t\tstring $suffix = substring($attrNames[$i],3,size($attrNames[$i]));\n\t\t\t\trename $fileNode ($objectNames[0]+\"_\"+$suffix);\n\n\t\t\t\t// If a texture is found, set the corresponding strength to 1\n\t\t\t\tswitch ($i) \n\t\t\t\t{\n\t\t\t\t\tcase 0:\n\t\t\t\t\t\tsetAttr ($sh+\".u_BaseColorFactorRGB\") -type double3 1 1 1;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 1:\n\t\t\t\t\t\tsetAttr ($sh+\".u_MetallicStrength\") 1;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 2:\n\t\t\t\t\t\tsetAttr ($sh+\".u_RoughnessStrength\") 1;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 3:\n\t\t\t\t\t\tsetAttr ($sh+\".u_OcclusionStrength\") 1;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 4:\n\t\t\t\t\t\tsetAttr ($sh+\".u_NormalScale\") 1;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 5:\n\t\t\t\t\t\tsetAttr ($sh+\".u_EmissiveColor\") -type double3 1 1 1;\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n            }\n        }\n\n\t\tif (!$found) \n\t\t\tprint (\"Not assigning '\"+$attrNames[$i]+\"' since no texture filename matches pattern '\"+$texturePattern+\"'\\n\");\n    }\n}\n\nglobal proc maya2glTF_assignPbrShader() \n{\n\t// If the PBR shader is in the current workspace, use the relative path\n\tstring $home = _ensureTrailingSlash(`getenv \"HOME\"`);\n\tstring $root = _ensureTrailingSlash(`workspace -q -rd`);\n\tstring $shaderPath = $root + \"renderData/shaders/glTF_PBR.ogsfx\";\n\tif (`filetest -r $shaderPath`) \n\t{\n\t\tprint (\"Using glTF PBR shader from your Maya workspace:\\n\");\n\t} \n\telse \n\t{\n\t\t// Shader does not exist in workspace, use the installed one.\n\t\t$shaderPath = $home + \"maya/maya2glTF/PBR/shaders/glTF_PBR.ogsfx\";\n\t\tprint (\"Using glTF PBR shader from your home directory:\\n\");\n\t}\n\n\tprint ($shaderPath+\"\\n\");\n\n\t// Pass the path to the default shader location. \n\t// If it doesn't exist, a prompt will be given to the user.\n\tmaya2glTF_assignMaterialAndTextures({}, $shaderPath, {});\n}\n"
  },
  {
    "path": "maya/scripts/maya2glTF_capture.py",
    "content": "\"\"\"Maya Capture\n\nPlayblasting with independent viewport, camera and display options\n\nhttps://github.com/PearlStudio/maya-capture\n\n\"\"\"\n\nimport re\nimport sys\nimport contextlib\n\nfrom maya import cmds\nfrom maya import mel\n\ntry:\n    from PySide2 import QtGui, QtWidgets\nexcept ImportError:\n    from PySide import QtGui\n    QtWidgets = QtGui\n\nversion_info = (2, 3, 0)\n\n__version__ = \"%s.%s.%s\" % version_info\n__license__ = \"MIT\"\n\n\ndef capture(camera=None,\n            width=None,\n            height=None,\n            filename=None,\n            start_frame=None,\n            end_frame=None,\n            frame=None,\n            format='qt',\n            compression='H.264',\n            quality=100,\n            off_screen=False,\n            viewer=True,\n            show_ornaments=True,\n            sound=None,\n            isolate=None,\n            maintain_aspect_ratio=True,\n            overwrite=False,\n            frame_padding=4,\n            raw_frame_numbers=False,\n            camera_options=None,\n            display_options=None,\n            viewport_options=None,\n            viewport2_options=None,\n            complete_filename=None,\n            index_from_zero=True):\n    \"\"\"Playblast in an independent panel\n\n    Arguments:\n        camera (str, optional): Name of camera, defaults to \"persp\"\n        width (int, optional): Width of output in pixels\n        height (int, optional): Height of output in pixels\n        filename (str, optional): Name of output file. If\n            none is specified, no files are saved.\n        start_frame (float, optional): Defaults to current start frame.\n        end_frame (float, optional): Defaults to current end frame.\n        frame (float or tuple, optional): A single frame or list of frames.\n            Use this to capture a single frame or an arbitrary sequence of\n            frames.\n        format (str, optional): Name of format, defaults to \"qt\".\n        compression (str, optional): Name of compression, defaults to \"H.264\"\n        quality (int, optional): The quality of the output, defaults to 100\n        off_screen (bool, optional): Whether or not to playblast off screen\n        viewer (bool, optional): Display results in native player\n        show_ornaments (bool, optional): Whether or not model view ornaments\n            (e.g. axis icon, grid and HUD) should be displayed.\n        sound (str, optional):  Specify the sound node to be used during \n            playblast. When None (default) no sound will be used.\n        isolate (list): List of nodes to isolate upon capturing\n        maintain_aspect_ratio (bool, optional): Modify height in order to\n            maintain aspect ratio.\n        overwrite (bool, optional): Whether or not to overwrite if file\n            already exists. If disabled and file exists and error will be\n            raised.\n        frame_padding (bool, optional): Number of zeros used to pad file name\n            for image sequences.\n        raw_frame_numbers (bool, optional): Whether or not to use the exact\n            frame numbers from the scene or capture to a sequence starting at\n            zero. Defaults to False. When set to True `viewer` can't be used\n            and will be forced to False.\n        camera_options (dict, optional): Supplied camera options,\n            using `CameraOptions`\n        display_options (dict, optional): Supplied display\n            options, using `DisplayOptions`\n        viewport_options (dict, optional): Supplied viewport\n            options, using `ViewportOptions`\n        viewport2_options (dict, optional): Supplied display\n            options, using `Viewport2Options`\n        complete_filename (str, optional): Exact name of output file. Use this\n            to override the output of `filename` so it excludes frame padding.\n\n    Example:\n        >>> # Launch default capture\n        >>> capture()\n        >>> # Launch capture with custom viewport settings\n        >>> capture('persp', 800, 600,\n        ...         viewport_options={\n        ...             \"displayAppearance\": \"wireframe\",\n        ...             \"grid\": False,\n        ...             \"polymeshes\": True,\n        ...         },\n        ...         camera_options={\n        ...             \"displayResolution\": True\n        ...         }\n        ... )\n\n\n    \"\"\"\n\n    camera = camera or \"persp\"\n\n    # Ensure camera exists\n    if not cmds.objExists(camera):\n        raise RuntimeError(\"Camera does not exist: {0}\".format(camera))\n\n    width = width or cmds.getAttr(\"defaultResolution.width\")\n    height = height or cmds.getAttr(\"defaultResolution.height\")\n    if maintain_aspect_ratio:\n        ratio = cmds.getAttr(\"defaultResolution.deviceAspectRatio\")\n        height = round(width / ratio)\n\n    if start_frame is None:\n        start_frame = cmds.playbackOptions(minTime=True, query=True)\n    if end_frame is None:\n        end_frame = cmds.playbackOptions(maxTime=True, query=True)\n\n    # (#74) Bugfix: `maya.cmds.playblast` will raise an error when playblasting\n    # with `rawFrameNumbers` set to True but no explicit `frames` provided.\n    # Since we always know what frames will be included we can provide it\n    # explicitly\n    if raw_frame_numbers and frame is None:\n        frame = range(int(start_frame), int(end_frame) + 1)\n\n    # We need to wrap `completeFilename`, otherwise even when None is provided\n    # it will use filename as the exact name. Only when lacking as argument\n    # does it function correctly.\n    playblast_kwargs = dict()\n    if complete_filename:\n        playblast_kwargs['completeFilename'] = complete_filename\n    if frame is not None:\n        playblast_kwargs['frame'] = frame\n    if sound is not None:\n        playblast_kwargs['sound'] = sound\n\n    # We need to raise an error when the user gives a custom frame range with\n    # negative frames in combination with raw frame numbers. This will result\n    # in a minimal integer frame number : filename.-2147483648.png for any\n    # negative rendered frame\n    if frame and raw_frame_numbers:\n        check = frame if isinstance(frame, (list, tuple)) else [frame]\n        if any(f < 0 for f in check):\n            raise RuntimeError(\"Negative frames are not supported with \"\n                               \"raw frame numbers and explicit frame numbers\")\n\n    # (#21) Bugfix: `maya.cmds.playblast` suffers from undo bug where it\n    # always sets the currentTime to frame 1. By setting currentTime before\n    # the playblast call it'll undo correctly.\n    cmds.currentTime(cmds.currentTime(query=True))\n\n    padding = 10  # Extend panel to accommodate for OS window manager\n    with _independent_panel(width=width + padding,\n                            height=height + padding,\n                            off_screen=off_screen) as panel:\n        cmds.setFocus(panel)\n\n        with contextlib.nested(\n             _disabled_inview_messages(),\n             _maintain_camera(panel, camera),\n             _applied_viewport_options(viewport_options, panel),\n             _applied_camera_options(camera_options, panel),\n             _applied_display_options(display_options),\n             _applied_viewport2_options(viewport2_options),\n             _isolated_nodes(isolate, panel),\n             _maintained_time()):\n\n                output = cmds.playblast(\n                    compression=compression,\n                    format=format,\n                    percent=100,\n                    quality=quality,\n                    viewer=viewer,\n                    startTime=start_frame,\n                    endTime=end_frame,\n                    offScreen=off_screen,\n                    showOrnaments=show_ornaments,\n                    forceOverwrite=overwrite,\n                    filename=filename,\n                    widthHeight=[width, height],\n                    rawFrameNumbers=raw_frame_numbers,\n                    indexFromZero=index_from_zero,\n                    framePadding=frame_padding,\n                    **playblast_kwargs)\n\n        return output\n\n\ndef snap(*args, **kwargs):\n    \"\"\"Single frame playblast in an independent panel.\n\n    The arguments of `capture` are all valid here as well, except for\n    `start_frame` and `end_frame`.\n\n    Arguments:\n        frame (float, optional): The frame to snap. If not provided current\n            frame is used.\n        clipboard (bool, optional): Whether to add the output image to the\n            global clipboard. This allows to easily paste the snapped image\n            into another application, eg. into Photoshop.\n\n    Keywords:\n        See `capture`.\n\n    \"\"\"\n\n    # capture single frame\n    frame = kwargs.pop('frame', cmds.currentTime(q=1))\n    kwargs['start_frame'] = frame\n    kwargs['end_frame'] = frame\n    kwargs['frame'] = frame\n\n    if not isinstance(frame, (int, float)):\n        raise TypeError(\"frame must be a single frame (integer or float). \"\n                        \"Use `capture()` for sequences.\")\n\n    # override capture defaults\n    format = kwargs.pop('format', \"image\")\n    compression = kwargs.pop('compression', \"png\")\n    viewer = kwargs.pop('viewer', False)\n    raw_frame_numbers = kwargs.pop('raw_frame_numbers', True)\n    kwargs['compression'] = compression\n    kwargs['format'] = format\n    kwargs['viewer'] = viewer\n    kwargs['raw_frame_numbers'] = raw_frame_numbers\n\n    # pop snap only keyword arguments\n    clipboard = kwargs.pop('clipboard', False)\n\n    # perform capture\n    output = capture(*args, **kwargs)\n\n    def replace(m):\n        \"\"\"Substitute # with frame number\"\"\"\n        return str(int(frame)).zfill(len(m.group()))\n\n    output = re.sub(\"#+\", replace, output)\n\n    # add image to clipboard\n    if clipboard:\n        _image_to_clipboard(output)\n\n    return output\n\n\nCameraOptions = {\n    \"displayGateMask\": False,\n    \"displayResolution\": False,\n    \"displayFilmGate\": False,\n    \"displayFieldChart\": False,\n    \"displaySafeAction\": False,\n    \"displaySafeTitle\": False,\n    \"displayFilmPivot\": False,\n    \"displayFilmOrigin\": False,\n    \"overscan\": 1.0,\n    \"depthOfField\": False,\n}\n\nDisplayOptions = {\n    \"displayGradient\": True,\n    \"background\": (0.631, 0.631, 0.631),\n    \"backgroundTop\": (0.535, 0.617, 0.702),\n    \"backgroundBottom\": (0.052, 0.052, 0.052),\n}\n\n# These display options require a different command to be queried and set\n_DisplayOptionsRGB = set([\"background\", \"backgroundTop\", \"backgroundBottom\"])\n\nViewportOptions = {\n    # renderer\n    \"rendererName\": \"vp2Renderer\",\n    \"fogging\": False,\n    \"fogMode\": \"linear\",\n    \"fogDensity\": 1,\n    \"fogStart\": 1,\n    \"fogEnd\": 1,\n    \"fogColor\": (0, 0, 0, 0),\n    \"shadows\": False,\n    \"displayTextures\": True,\n    \"displayLights\": \"default\",\n    \"useDefaultMaterial\": False,\n    \"wireframeOnShaded\": False,\n    \"displayAppearance\": 'smoothShaded',\n    \"selectionHiliteDisplay\": False,\n    \"headsUpDisplay\": False,\n    # object display\n    \"imagePlane\": False,\n    \"nurbsCurves\": False,\n    \"nurbsSurfaces\": False,\n    \"polymeshes\": True,\n    \"subdivSurfaces\": False,\n    \"planes\": False,\n    \"cameras\": False,\n    \"controlVertices\": False,\n    \"lights\": False,\n    \"grid\": False,\n    \"hulls\": False,\n    \"joints\": False,\n    \"ikHandles\": False,\n    \"deformers\": False,\n    \"dynamics\": False,\n    \"fluids\": False,\n    \"hairSystems\": False,\n    \"follicles\": False,\n    \"nCloths\": False,\n    \"nParticles\": False,\n    \"nRigids\": False,\n    \"dynamicConstraints\": False,\n    \"locators\": False,\n    \"manipulators\": False,\n    \"dimensions\": False,\n    \"handles\": False,\n    \"pivots\": False,\n    \"textures\": False,\n    \"strokes\": False\n}\n\nViewport2Options = {\n    \"consolidateWorld\": True,\n    \"enableTextureMaxRes\": False,\n    \"bumpBakeResolution\": 64,\n    \"colorBakeResolution\": 64,\n    \"floatingPointRTEnable\": True,\n    \"floatingPointRTFormat\": 1,\n    \"gammaCorrectionEnable\": False,\n    \"gammaValue\": 2.2,\n    \"lineAAEnable\": False,\n    \"maxHardwareLights\": 8,\n    \"motionBlurEnable\": False,\n    \"motionBlurSampleCount\": 8,\n    \"motionBlurShutterOpenFraction\": 0.2,\n    \"motionBlurType\": 0,\n    \"multiSampleCount\": 8,\n    \"multiSampleEnable\": False,\n    \"singleSidedLighting\": False,\n    \"ssaoEnable\": False,\n    \"ssaoAmount\": 1.0,\n    \"ssaoFilterRadius\": 16,\n    \"ssaoRadius\": 16,\n    \"ssaoSamples\": 16,\n    \"textureMaxResolution\": 4096,\n    \"threadDGEvaluation\": False,\n    \"transparencyAlgorithm\": 1,\n    \"transparencyQuality\": 0.33,\n    \"useMaximumHardwareLights\": True,\n    \"vertexAnimationCache\": 0,\n    \"multiSampleEnable\": True,\n    \"multiSampleCount\": 16\n}\n\n\ndef apply_view(panel, **options):\n    \"\"\"Apply options to panel\"\"\"\n\n    camera = cmds.modelPanel(panel, camera=True, query=True)\n\n    # Display options\n    display_options = options.get(\"display_options\", {})\n    for key, value in display_options.iteritems():\n        if key in _DisplayOptionsRGB:\n            cmds.displayRGBColor(key, *value)\n        else:\n            cmds.displayPref(**{key: value})\n\n    # Camera options\n    camera_options = options.get(\"camera_options\", {})\n    for key, value in camera_options.iteritems():\n        cmds.setAttr(\"{0}.{1}\".format(camera, key), value)\n\n    # Viewport options\n    viewport_options = options.get(\"viewport_options\", {})\n    for key, value in viewport_options.iteritems():\n        cmds.modelEditor(panel, edit=True, **{key: value})\n\n    viewport2_options = options.get(\"viewport2_options\", {})\n    for key, value in viewport2_options.iteritems():\n        attr = \"hardwareRenderingGlobals.{0}\".format(key)\n        cmds.setAttr(attr, value)\n\n\ndef parse_active_panel():\n    \"\"\"Parse the active modelPanel.\n\n    Raises\n        RuntimeError: When no active modelPanel an error is raised.\n\n    Returns:\n        str: Name of modelPanel\n\n    \"\"\"\n\n    panel = cmds.getPanel(withFocus=True)\n\n    # This happens when last focus was on panel\n    # that got deleted (e.g. `capture()` then `parse_active_view()`)\n    if not panel or \"modelPanel\" not in panel:\n        raise RuntimeError(\"No active model panel found\")\n\n    return panel\n\n\ndef parse_active_view():\n    \"\"\"Parse the current settings from the active view\"\"\"\n    panel = parse_active_panel()\n    return parse_view(panel)\n\n\ndef parse_view(panel):\n    \"\"\"Parse the scene, panel and camera for their current settings\n\n    Example:\n        >>> parse_view(\"modelPanel1\")\n\n    Arguments:\n        panel (str): Name of modelPanel\n\n    \"\"\"\n\n    camera = cmds.modelPanel(panel, query=True, camera=True)\n\n    # Display options\n    display_options = {}\n    for key in DisplayOptions:\n        if key in _DisplayOptionsRGB:\n            display_options[key] = cmds.displayRGBColor(key, query=True)\n        else:\n            display_options[key] = cmds.displayPref(query=True, **{key: True})\n\n    # Camera options\n    camera_options = {}\n    for key in CameraOptions:\n        camera_options[key] = cmds.getAttr(\"{0}.{1}\".format(camera, key))\n\n    # Viewport options\n    viewport_options = {}\n    \n    # capture plugin display filters first to ensure we never override \n    # built-in arguments if ever possible a plugin has similarly named \n    # plugin display filters (which it shouldn't!)\n    plugins = cmds.pluginDisplayFilter(query=True, listFilters=True)\n    for plugin in plugins:\n        plugin = str(plugin)  # unicode->str for simplicity of the dict\n        state = cmds.modelEditor(panel, query=True, queryPluginObjects=plugin)\n        viewport_options[plugin] = state\n    \n    for key in ViewportOptions:\n        viewport_options[key] = cmds.modelEditor(\n            panel, query=True, **{key: True})\n\n    viewport2_options = {}\n    for key in Viewport2Options.keys():\n        attr = \"hardwareRenderingGlobals.{0}\".format(key)\n        try:\n            viewport2_options[key] = cmds.getAttr(attr)\n        except ValueError:\n            continue\n\n    return {\n        \"camera\": camera,\n        \"display_options\": display_options,\n        \"camera_options\": camera_options,\n        \"viewport_options\": viewport_options,\n        \"viewport2_options\": viewport2_options\n    }\n\n\ndef parse_active_scene():\n    \"\"\"Parse active scene for arguments for capture()\n\n    *Resolution taken from render settings.\n\n    \"\"\"\n\n    time_control = mel.eval(\"$gPlayBackSlider = $gPlayBackSlider\")\n\n    return {\n        \"start_frame\": cmds.playbackOptions(minTime=True, query=True),\n        \"end_frame\": cmds.playbackOptions(maxTime=True, query=True),\n        \"width\": cmds.getAttr(\"defaultResolution.width\"),\n        \"height\": cmds.getAttr(\"defaultResolution.height\"),\n        \"compression\": cmds.optionVar(query=\"playblastCompression\"),\n        \"filename\": (cmds.optionVar(query=\"playblastFile\")\n                     if cmds.optionVar(query=\"playblastSaveToFile\") else None),\n        \"format\": cmds.optionVar(query=\"playblastFormat\"),\n        \"off_screen\": (True if cmds.optionVar(query=\"playblastOffscreen\")\n                       else False),\n        \"show_ornaments\": (True if cmds.optionVar(query=\"playblastShowOrnaments\")\n                       else False),\n        \"quality\": cmds.optionVar(query=\"playblastQuality\"),\n        \"sound\": cmds.timeControl(time_control, q=True, sound=True) or None\n    }\n\n\ndef apply_scene(**options):\n    \"\"\"Apply options from scene\n\n    Example:\n        >>> apply_scene({\"start_frame\": 1009})\n\n    Arguments:\n        options (dict): Scene options\n\n    \"\"\"\n\n    if \"start_frame\" in options:\n        cmds.playbackOptions(minTime=options[\"start_frame\"])\n\n    if \"end_frame\" in options:\n        cmds.playbackOptions(maxTime=options[\"end_frame\"])\n\n    if \"width\" in options:\n        cmds.setAttr(\"defaultResolution.width\", options[\"width\"])\n\n    if \"height\" in options:\n        cmds.setAttr(\"defaultResolution.height\", options[\"height\"])\n\n    if \"compression\" in options:\n        cmds.optionVar(\n            stringValue=[\"playblastCompression\", options[\"compression\"]])\n\n    if \"filename\" in options:\n        cmds.optionVar(\n            stringValue=[\"playblastFile\", options[\"filename\"]])\n\n    if \"format\" in options:\n        cmds.optionVar(\n            stringValue=[\"playblastFormat\", options[\"format\"]])\n\n    if \"off_screen\" in options:\n        cmds.optionVar(\n            intValue=[\"playblastFormat\", options[\"off_screen\"]])\n\n    if \"show_ornaments\" in options:\n        cmds.optionVar(\n            intValue=[\"show_ornaments\", options[\"show_ornaments\"]])\n\n    if \"quality\" in options:\n        cmds.optionVar(\n            floatValue=[\"playblastQuality\", options[\"quality\"]])\n\n\n@contextlib.contextmanager\ndef _applied_view(panel, **options):\n    \"\"\"Apply options to panel\"\"\"\n\n    original = parse_view(panel)\n    apply_view(panel, **options)\n\n    try:\n        yield\n    finally:\n        apply_view(panel, **original)\n\n\n@contextlib.contextmanager\ndef _independent_panel(width, height, off_screen=False):\n    \"\"\"Create capture-window context without decorations\n\n    Arguments:\n        width (int): Width of panel\n        height (int): Height of panel\n\n    Example:\n        >>> with _independent_panel(800, 600):\n        ...   cmds.capture()\n\n    \"\"\"\n\n    # center panel on screen\n    screen_width, screen_height = _get_screen_size()\n    topLeft = [int((screen_height-height)/2.0),\n               int((screen_width-width)/2.0)]\n\n    window = cmds.window(width=width,\n                         height=height,\n                         topLeftCorner=topLeft,\n                         menuBarVisible=False,\n                         titleBar=False,\n                         visible=not off_screen)\n    cmds.paneLayout()\n    panel = cmds.modelPanel(menuBarVisible=False,\n                            label='CapturePanel')\n\n    # Hide icons under panel menus\n    bar_layout = cmds.modelPanel(panel, q=True, barLayout=True)\n    cmds.frameLayout(bar_layout, edit=True, collapse=True)\n\n    if not off_screen:\n        cmds.showWindow(window)\n\n    # Set the modelEditor of the modelPanel as the active view so it takes\n    # the playback focus. Does seem redundant with the `refresh` added in.\n    editor = cmds.modelPanel(panel, query=True, modelEditor=True)\n    cmds.modelEditor(editor, edit=True, activeView=True)\n\n    # Force a draw refresh of Maya so it keeps focus on the new panel\n    # This focus is required to force preview playback in the independent panel\n    cmds.refresh(force=True)\n\n    try:\n        yield panel\n    finally:\n        # Delete the panel to fix memory leak (about 5 mb per capture)\n        cmds.deleteUI(panel, panel=True)\n        cmds.deleteUI(window)\n\n\n@contextlib.contextmanager\ndef _applied_camera_options(options, panel):\n    \"\"\"Context manager for applying `options` to `camera`\"\"\"\n\n    camera = cmds.modelPanel(panel, query=True, camera=True)\n    options = dict(CameraOptions, **(options or {}))\n\n    old_options = dict()\n    for opt in options.copy():\n        try:\n            old_options[opt] = cmds.getAttr(camera + \".\" + opt)\n        except:\n            sys.stderr.write(\"Could not get camera attribute \"\n                             \"for capture: %s\" % opt)\n            options.pop(opt)\n\n    for opt, value in options.iteritems():\n        cmds.setAttr(camera + \".\" + opt, value)\n\n    try:\n        yield\n    finally:\n        if old_options:\n            for opt, value in old_options.iteritems():\n                cmds.setAttr(camera + \".\" + opt, value)\n\n\n@contextlib.contextmanager\ndef _applied_display_options(options):\n    \"\"\"Context manager for setting background color display options.\"\"\"\n\n    options = dict(DisplayOptions, **(options or {}))\n\n    colors = ['background', 'backgroundTop', 'backgroundBottom']\n    preferences = ['displayGradient']\n\n    # Store current settings\n    original = {}\n    for color in colors:\n        original[color] = cmds.displayRGBColor(color, query=True) or []\n\n    for preference in preferences:\n        original[preference] = cmds.displayPref(\n            query=True, **{preference: True})\n\n    # Apply settings\n    for color in colors:\n        value = options[color]\n        cmds.displayRGBColor(color, *value)\n\n    for preference in preferences:\n        value = options[preference]\n        cmds.displayPref(**{preference: value})\n\n    try:\n        yield\n\n    finally:\n        # Restore original settings\n        for color in colors:\n            cmds.displayRGBColor(color, *original[color])\n        for preference in preferences:\n            cmds.displayPref(**{preference: original[preference]})\n\n\n@contextlib.contextmanager\ndef _applied_viewport_options(options, panel):\n    \"\"\"Context manager for applying `options` to `panel`\"\"\"\n\n    options = dict(ViewportOptions, **(options or {}))\n    \n    # separate the plugin display filter options since they need to\n    # be set differently (see #55)\n    plugins = cmds.pluginDisplayFilter(query=True, listFilters=True)\n    plugin_options = dict()\n    for plugin in plugins:\n        if plugin in options:\n            plugin_options[plugin] = options.pop(plugin)\n    \n    # default options\n    cmds.modelEditor(panel, edit=True, **options)\n\n    # plugin display filter options\n    for plugin, state in plugin_options.items():\n        cmds.modelEditor(panel, edit=True, pluginObjects=(plugin, state))\n    \n    yield\n\n\n@contextlib.contextmanager\ndef _applied_viewport2_options(options):\n    \"\"\"Context manager for setting viewport 2.0 options.\n\n    These options are applied by setting attributes on the\n    \"hardwareRenderingGlobals\" node.\n\n    \"\"\"\n\n    options = dict(Viewport2Options, **(options or {}))\n\n    # Store current settings\n    original = {}\n    for opt in options.copy():\n        try:\n            original[opt] = cmds.getAttr(\"hardwareRenderingGlobals.\" + opt)\n        except ValueError:\n            options.pop(opt)\n\n    # Apply settings\n    for opt, value in options.iteritems():\n        cmds.setAttr(\"hardwareRenderingGlobals.\" + opt, value)\n\n    try:\n        yield\n    finally:\n        # Restore previous settings\n        for opt, value in original.iteritems():\n            cmds.setAttr(\"hardwareRenderingGlobals.\" + opt, value)\n\n\n@contextlib.contextmanager\ndef _isolated_nodes(nodes, panel):\n    \"\"\"Context manager for isolating `nodes` in `panel`\"\"\"\n\n    if nodes is not None:\n        cmds.isolateSelect(panel, state=True)\n        for obj in nodes:\n            cmds.isolateSelect(panel, addDagObject=obj)\n    yield\n\n\n@contextlib.contextmanager\ndef _maintained_time():\n    \"\"\"Context manager for preserving (resetting) the time after the context\"\"\"\n\n    current_time = cmds.currentTime(query=1)\n    try:\n        yield\n    finally:\n        cmds.currentTime(current_time)\n\n\n@contextlib.contextmanager\ndef _maintain_camera(panel, camera):\n    state = {}\n\n    if not _in_standalone():\n        cmds.lookThru(panel, camera)\n    else:\n        state = dict((camera, cmds.getAttr(camera + \".rnd\"))\n                     for camera in cmds.ls(type=\"camera\"))\n        cmds.setAttr(camera + \".rnd\", True)\n\n    try:\n        yield\n    finally:\n        for camera, renderable in state.iteritems():\n            cmds.setAttr(camera + \".rnd\", renderable)\n\n\n@contextlib.contextmanager\ndef _disabled_inview_messages():\n    \"\"\"Disable in-view help messages during the context\"\"\"\n    original = cmds.optionVar(q=\"inViewMessageEnable\")\n    cmds.optionVar(iv=(\"inViewMessageEnable\", 0))\n    try:\n        yield\n    finally:\n        cmds.optionVar(iv=(\"inViewMessageEnable\", original))\n\n\ndef _image_to_clipboard(path):\n    \"\"\"Copies the image at path to the system's global clipboard.\"\"\"\n    if _in_standalone():\n        raise Exception(\"Cannot copy to clipboard from Maya Standalone\")\n\n    image = QtGui.QImage(path)\n    clipboard = QtWidgets.QApplication.clipboard()\n    clipboard.setImage(image, mode=QtGui.QClipboard.Clipboard)\n\n\ndef _get_screen_size():\n    \"\"\"Return available screen size without space occupied by taskbar\"\"\"\n    if _in_standalone():\n        return [0, 0]\n\n    rect = QtWidgets.QDesktopWidget().screenGeometry(-1)\n    return [rect.width(), rect.height()]\n\n\ndef _in_standalone():\n    return not hasattr(cmds, \"about\") or cmds.about(batch=True)\n\n\n# --------------------------------\n#\n# Apply version specific settings\n#\n# --------------------------------\n\nversion = mel.eval(\"getApplicationVersionAsFloat\")\nif version > 2015:\n    Viewport2Options.update({\n        \"hwFogAlpha\": 1.0,\n        \"hwFogFalloff\": 0,\n        \"hwFogDensity\": 0.1,\n        \"hwFogEnable\": False,\n        \"holdOutDetailMode\": 1,\n        \"hwFogEnd\": 100.0,\n        \"holdOutMode\": True,\n        \"hwFogColorR\": 0.5,\n        \"hwFogColorG\": 0.5,\n        \"hwFogColorB\": 0.5,\n        \"hwFogStart\": 0.0,\n    })\n"
  },
  {
    "path": "maya/scripts/maya2glTF_clearOutputWin.py",
    "content": "# https://www.highend3d.com/maya/script/clear-output-window-for-maya\r\n# Clears maya output window by Zohar\r\nfrom ctypes import *\r\n#import win32con\r\n\r\nuser32 = windll.user32\r\nEnumWindowsProc = WINFUNCTYPE(c_int, c_int, c_int)\r\n\r\n# Returns handles to windows with matching titles\r\ndef get_handle(title, parent = None):\r\n\trHwnd = []\r\n\tdef EnumCB(hwnd, lparam, match = title.lower(), rHwnd = rHwnd):\r\n\t\t# child\r\n\t\tif lparam == 1:\r\n\t\t\trHwnd.append(hwnd)\r\n\t\t\treturn False\r\n\t\r\n\t\ttitle = c_buffer(' ' * 256)\r\n\t\tuser32.GetWindowTextA(hwnd, title, 255)\r\n\t\tif title.value.lower() == match:\r\n\t\t\trHwnd.append(hwnd)\r\n\t\t\t#print \"Matched\", title.value\r\n\t\t\treturn False\r\n\t\treturn True\r\n\r\n\tif parent is not None:\r\n\t\tuser32.EnumChildWindows(parent, EnumWindowsProc(EnumCB), 1)\r\n\telse:\r\n\t\tuser32.EnumWindows(EnumWindowsProc(EnumCB), 0)\r\n\treturn rHwnd\r\n\r\ndef clear():\r\n\tprint \"Clearing Maya output window\"\r\n\tout = get_handle(\"Output Window\")\r\n\tif not out:\r\n\t\tprint \"Output window wasn't found\"\r\n\telse:\t\r\n\t\tch = get_handle(\"\", out[0])\r\n\t\tif ( ch[0] ):\r\n\t\t\t#user32.SendMessageA(ch[0], win32con.EM_SETSEL, 0, -1)\r\n\t\t\t#user32.SendMessageA(ch[0], win32con.EM_REPLACESEL, 1, \"\")\r\n\t\t\tuser32.SendMessageA(ch[0], 0x00B1, 0, -1)\r\n\t\t\tuser32.SendMessageA(ch[0], 0x00C2, 1, \"\")\t\t\t\r\n\t\telse:\r\n\t\t\tprint \"Child window wasn't found\"\r\n\r\nclear()\r\n"
  },
  {
    "path": "maya/scripts/maya2glTF_common.mel",
    "content": "global int $maya2glTF_setupKeyFrame = -1000;\n\nglobal proc float maya2glTF_timeUnitToSeconds() \n{\n\tfloat $fps = `currentTimeUnitToFPS`;\n\n\tif ($fps != 0)\n\t\treturn 1.0/$fps;\n\n\tstring $unit = `currentUnit -q -time`;\n\tswitch ($unit) \n\t{\n\t\tcase \"hour\": return 60*60;\n\t\tcase \"min\": return 60;\n\t\tcase \"sec\": return 1;\n\t\tcase \"millisec\": return 1.0/1000;\n\t\tdefault: error (\"maya2glTF: Unsupported time unit \"+$unit);\n\t}\n}\n\nglobal proc maya2glTF_exportProgressUI(int $max) {\n    // This is defined on maya startup\n    global string $gMainProgressBar;  \n\n    $max = max(1, $max);\n\n    progressBar -edit\n        -beginProgress\n        -isInterruptable true\n        -status \"maya2glTF: exporting...\"\n        -minValue 0\n        -maxValue $max\n        $gMainProgressBar;\n}\n\nglobal proc maya2glTF_teardownProgressUI() {\n    // This is defined on maya startup\n    global string $gMainProgressBar;  \n    progressBar -edit -endProgress $gMainProgressBar;\n}\n\n// Returns -1 if abortion is requested\nglobal proc int maya2glTF_advanceExportProgressUI(string $stepName) \n{\n    global string $gMainProgressBar;  // This is defined on maya startup\n\n    progressBar -edit -step 1 -status (\"maya2glTF: \" + $stepName + \"...\") $gMainProgressBar;\n\n    if(`progressBar -query -isCancelled $gMainProgressBar`) {\n        print (\"maya2glTF: aborting at \"+`date -time`+\"\\n\");\n        return -1;\n    }\n\n    return 0;\n}\n\nproc int _hasSelectionLayers(string $layers[]) {\n    for ($layer in $layers)\n    {\n        string $conns[] = `listConnections -d 1 -s 0 ($layer+\".drawInfo\")`;\n        if (size($conns) > 0) \n            return true;\n    }\n    return false;\n}\n\nglobal proc maya2glTF_polySelectAndFrame() \n{\n    // clear the selection    \n    select -cl;\n\n    // gather the display layers\n    string $layers[] = `ls -type displayLayer`;\n\n    string $objects[] = {};\n\n    // if we don't find any layers, select by visibility\n    if (_hasSelectionLayers($layers)) \n    {\n        print \"maya2glTF: Using display layers to select visible untemplated objects\\n\";\n\n        for ($layer in $layers)\n        {\n            // if the display layer is visible, continue\n            if (getAttr($layer+\".displayType\") != 1 && getAttr($layer+\".visibility\"))\n            {\n                // gather the items that are connected to the layer\n                string $conns[] = `listConnections -d 1 -s 0 ($layer+\".drawInfo\")`;\n\n                // as this gives us transform nodes, \n                // do a selection on the result of that running through the dag, \n                // selecting all the meshes that are set to visible\n                string $shapes[] = `ls -dag -type mesh -visible $conns`;\n                \n                if (size($shapes) > 0) \n                {\n                    appendStringArray($objects, $shapes, size($shapes));\n                }\n            }\n        }\n    } \n    else \n    {\n        print \"maya2glTF: No selection display layers found, just selecting visible objects\\n\";\n        $objects = `ls -v -type mesh -ap`; \n    }\n\n    // Sort the objects for consistency\n    $objects = sort($objects);\n\n    // print (\"Selecting:\\n\" + stringArrayToString($objects, \"\\n\") + \"\\n\");\n\n    select -r $objects;\n\n    if (catch (`viewFit -an 1`)) {\n        warning \"Failed to fit viewport to selection\";\n    }\n}\n\nglobal proc string maya2glTF_quoted(string $text)\n{\n    string $quote = \"\\\"\";\n    return $quote + $text + $quote;\n}\n\nglobal proc string maya2glTF_ensureTrailingSlash( string $folderPath ) {\n    if (size($folderPath) == 0)\n        error (\"Invalid folder path!\");\n\n    if (substring($folderPath, size($folderPath), size($folderPath)) != \"/\")\n        $folderPath += \"/\";\n\n    return $folderPath;\n}\n\nglobal proc string maya2glTF_combinePaths(string $path1, string $path2) {\n    return size($path1) == 0\n     ? $path2\n     : maya2glTF_ensureTrailingSlash($path1)+$path2;\n}\n\nglobal proc maya2glTF_deleteFolder( string $folderPath )\n{\n    if (`filetest -d ($folderPath)`) {\n        print (\"Deleting files in \"+$folderPath+\"...\\n\");\n\n        string $subFiles[] = `getFileList -folder $folderPath`;\n\n        for( $filename in $subFiles )\n        {\n            string $filePath = maya2glTF_combinePaths($folderPath, $filename);\n\n            if( `filetest -d $filePath` )\n            { \n                maya2glTF_deleteFolder($filePath);\n            }\n            else\n            {\n                sysFile -delete $filePath;\n            }\n        }\n\n\t\tsysFile -removeEmptyDir $folderPath;\n    } \n}\n\nglobal proc maya2glTF_checkProgressWindowCancellation() {\n    int $isCancelled = `progressWindow -query -isCancelled`;\n    if ($isCancelled) {\n        error (\"Aborted!\");\n    }\n}\n\nproc _getScenePaths(string $folder, int $recursive, string $scenePaths[]) {\n\tstring $filenames[] = `getFileList -folder $folder`;\n\n    for($filename in $filenames)\n    {\n        string $filePath = maya2glTF_combinePaths($folder, $filename);\n        if( `filetest -d $filePath` && $recursive )\n        { \n            maya2glTF_checkProgressWindowCancellation();\n            _getScenePaths($filePath, $recursive, $scenePaths);\n        }\n        else if (tolower(fileExtension($filePath)) == \"ma\")\n        {\n            $scenePaths[size($scenePaths)] = $filePath;\n        }\n    }\n}\n\nglobal proc string[] maya2glTF_getScenePaths(string $folder, int $recursive) {\n    print (\"Scanning \"+$folder+\"...\\n\");\n    string $scenePaths[] = {};\n    _getScenePaths($folder, $recursive, $scenePaths);\n    return $scenePaths;\n}\n\nproc _forEachScene(string $filePaths[], int $isModifier, string $command) {\n    print (\"Processing:\\n  \" + stringArrayToString($filePaths, \"\\n  \") + \"\\n...\\n\");\n\n    int $sceneCount = size($filePaths);\n\n    progressWindow -endProgress;\n\n    progressWindow \n        -title \"maya2glTF\" \n        -min 0 \n        -max $sceneCount \n        -status \"Processing...\" \n        -isInterruptable true \n        -progress 0;\n\n    int $progress = 0;\n\n    for($filePath in $filePaths) {\n        ++$progress;\n\n        progressWindow -edit -progress $progress -status $filePath;\n        print (\"Loading \" + $filePath + \"...\\n\");\n\n        if (catch (`file -f -ignoreVersion -prompt off -o $filePath`)) {\n            print (\"Some errors occurred while loading the scene, this can happen if some Maya components (like Arnold) are not installed\");\n        }\n\n        int $isCancelled = `progressWindow -query -isCancelled`;\n        if ($isCancelled) {\n            error (\"Aborted!\");\n        }\n\n        print (\"Running command\\n\" + $command + \"\\n...\\n\");\n    \n        if (catch (`eval $command`)) {\n            warning (\"Failed to execute command\");\n        } else if ($isModifier) {\n            print (\"Saving \" + $filePath + \"...\\n\");\n            file -f -type \"mayaAscii\"  -prompt off -save;\n        }\n\n        print (\"-------------------------------------------------------------------\\n\");\n    }\n}\n\n// Loads each scene, calls the command, then optionally saves the scene\n// Shows progress, and supports aborting the process.\nglobal proc maya2glTF_forEachScene(string $filePaths[], int $isModifier, string $command) {\n    if (catch ( `_forEachScene $filePaths $isModifier $command`)) {\n    }\n\n    progressWindow -edit -ep;\n}\n\n// Loads each scene in a folder, optionally recursively,\n// calls the command, then optionally saves the scene\n// Shows progress, and supports aborting the process.\nglobal proc maya2glTF_forEachSceneIn(string $folder, int $recursive, int $isModifier, string $command) {\n     string $filePaths[] = maya2glTF_getScenePaths($folder,  $recursive);\n     maya2glTF_forEachScene($filePaths, $isModifier, $command);\n}\n\n\nglobal proc maya2glTF_copyMasterKey() \n{\n    global int $maya2glTF_setupKeyFrame;\n    int $setupKeyFrame = $maya2glTF_setupKeyFrame;\n\n    // Create a key for all controllers, and copy to the API clipboard\n    string $controllers[] = `listTransforms \"-type nurbsCurve\"`;\n\n    if (size($controllers) > 0) {\n        select -r $controllers;\n        setKeyframe -breakdown 0 -hierarchy none -controlPoints 0 -shape 0 -time $setupKeyFrame;\n        copyKey -clipboard \"api\" -shape 0 -time $setupKeyFrame;\n    } else {\n        error \"Scene doesn't contain any controllers\";\n    }\n}\n\nglobal proc maya2glTF_pasteMasterKey()\n{\n    global int $maya2glTF_setupKeyFrame;\n    int $setupKeyFrame = $maya2glTF_setupKeyFrame;\n\n    string $controllers[] =  `listTransforms \"-type nurbsCurve\"`;\n\n    if (size($controllers) > 0) {\n        select -r $controllers;\n        pasteKey -clipboard \"api\" -time $setupKeyFrame;\n    } else {\n        warning \"Scene doesn't contain any controllers\";\n    }\n}\n\nglobal proc maya2glTF_exportPlayblastScene() \n{\n    global int $maya2glTF_setupKeyFrame;\n    int $setupKeyFrame = $maya2glTF_setupKeyFrame;\n\n    string $rootFolder = `workspace -q -active`;\n    string $scenePath = `file -q -sn`;\n    string $filename = `basenameEx $scenePath`;\n\n    //int $exportAnim = match(\"anim\",tolower($filename)) == \"anim\";\n    int $exportAnim = 1;\n\n    if ($exportAnim) {\n        maya2glTF_pasteMasterKey();\n    }\n\n    print (\"Exporting \" + $filename + ($exportAnim ? \" with\" : \" without\") + \" animation...\\n\");\n\n    string $playblastFolder = maya2glTF_combinePaths($rootFolder, \"playblast\");\n    //string $exportFolder = maya2glTF_combinePaths($playblastFolder, $filename);\n    //string $outputFolder = maya2glTF_combinePaths($exportFolder, \"gltf\");\n    string $exportFolder = maya2glTF_combinePaths($playblastFolder, \"gltf3\");\n    string $outputFolder = $exportFolder;\n\n    select -r `ls -v -type mesh -ap`;\n\n\t$min = `playbackOptions -q -min`;\n\t$max = `playbackOptions -q -max`;\n\t$fps = `currentTimeUnitToFPS`;\n\n    if ($exportAnim \n            ? catch(`maya2glTF -cam \"camera1\" -ivt $setupKeyFrame -mts -sma -hbu -sbr -acn \"clip\" -ast $min -aet $max -afr $fps -outputFolder $outputFolder`) \n            : catch(`maya2glTF -cam \"camera1\" -ivt $setupKeyFrame -mts -sma -hbu -sbr -outputFolder $outputFolder`)) {\n        print (\"*** Exporting \"+$filename+\" failed! :-( ***\\n\");\n    } else {\n        print (\"Exporting \"+$filename+\" succeeded\\n\");\n    } \n}\n\nglobal proc string maya2glTF_createCamera(string $name, int $width, int $height) {\n    if (`objExists $name`) {\n        delete $name;\n    }\n\n    // TODO: Figure out how to create a camera with a name\n    string $camera[] = `camera -centerOfInterest 5 -focalLength 35 -lensSqueezeRatio 1 -cameraScale 1 -horizontalFilmAperture 1.4173 -horizontalFilmOffset 0 -verticalFilmAperture 0.9449 -verticalFilmOffset 0 -filmFit Fill -overscan 1 -motionBlur 0 -shutterAngle 144 -nearClipPlane 0.1 -farClipPlane 10000 -orthographic 0 -orthographicWidth 30 -panZoomEnabled 0 -horizontalPan 0 -verticalPan 0 -zoom 1`;\n    string $transform = $camera[0];\n    string $shape = $camera[1];\n\n    setNamedPanelLayout \"Single Perspective View\";\n\n    lookThroughModelPanel $transform modelPanel4;\n    updateModelPanelBar MainPane|viewPanes|modelPanel4|modelPanel4|modelPanel4;\n    dR_setModelEditorTypes;\n\n    modelEditor -e -displayTextures true modelPanel4;    \n\n    setAttr defaultResolution.width $width;\n    setAttr defaultResolution.height $height;\n    setAttr ($shape+\".displayResolution\") 1;\n\n    setAttr ($shape+\".nearClipPlane\") 1;\n    setAttr ($shape+\".farClipPlane\") 10000;\n\n    rename $transform $name;\n\n    return $name;\n}\n\nglobal proc maya2glTF_createDefaultCamera() {\n    string $transform = maya2glTF_createCamera(\"camera1\", 1280, 720);\n    xform -rotation -8 0 0 -translation 0 270 1100 $transform;\n    //xform -rotation -35 25 0 -translation 3 9 10 $transform;\n}\n\nglobal proc maya2glTF_createThumbnailCamera() {\n    string $transform = maya2glTF_createCamera(\"thumbcam\", 256, 256);\n    print $transform;\n    xform -rotation -10 0 0 -translation 0 70 200 $transform;\n    //xform -rotation -35 25 0 -translation 3 9 10 $transform;\n}\n\nglobal proc int maya2glTF_getTraxClips(string $char, float $startTimes[], float $stopTimes[], string $clipNames[]) {\n    // Get character's clip scheduler\n    string $scheduler = `character -q -sc $char`;\n\n    // Get all clips in the scheduler\n    string $clips[] = `clipSchedule -q -ci $scheduler`;\n\n    int $count = 0;\n\n    // Get enabled clips\n    string $clip;\n    for($clip in $clips )\n    {\n        // (clipName,index,start,sourceStart,sourceEnd,scale,preCycle,postCycle) \n        string $parts[] = stringToStringArray($clip,\",\");\n        string $clipName = $parts[0];\n        int $clipIndex = $parts[1];\n        float $timeStart = $parts[2];\n        float $sourceStart = $parts[3];\n        float $sourceEnd = $parts[4];\n        float $scale = $parts[5];\n        float $timeEnd = $timeStart + ($sourceEnd-$sourceStart)*$scale;\n        int $clipEnabled = `clipSchedule -clipIndex $clipIndex -q -enable $scheduler`;\n        int $trackIndex = `clipSchedule -clipIndex $clipIndex -q -track $scheduler`;\n        // HACK: We export enabled clips from the top track, to allow other tracks to contain adjusting clips \n        if($clipEnabled && $trackIndex == 1) {\n            $startTimes[$count] = $timeStart;\n            $stopTimes[$count] = $timeEnd;\n            $clipNames[$count] = $clipName;\n            $count += 1;\n        } \n    }\n\n    return $count;\n}\n\nglobal proc string maya2glTF_intToStringWithZeroPadding(int $value, int $padding){ \n  // Tip from the blog post: http://ldunham.blogspot.ca/2012/01/melpython-adding-number-padding.html\n  int $lengthNum=size(string($value));\n  string $padString; \n\n  if($lengthNum<$padding) {\n    for($i=0;$i<($padding-$lengthNum);$i++) {\n      $padString=$padString+\"0\"; \n    }\n  }\n  return $padString+string($value);\n}\n\n// {\n//     float $startTimes[];\n//     float $stopTimes[];\n//     string $clipNames[];\n//     maya2glTF_getTraxClips(\"Beanie\", $startTimes, $stopTimes, $clipNames);\n//     print($startTimes);\n//     print($stopTimes);\n//     print($clipNames);\n// }\n\n// maya2glTF_createThumbnailCamera();\n\n// python(\"from maya2glTF_playblast import playblast\\nplayblast(camera='thumbcam')\");\n\n// print(`maya2glTF_getScenePaths \"c:/dev/glTF/maya2glTF/maya\" 1`);\n// maya2glTF_forEachSceneIn(`workspace -q -active`, true, true, \"maya2glTF_createDefaultCamera();\");\n//maya2glTF_forEachSceneIn(\"C:/dev/glTF/maya2glTF/maya\", true, false,\"python(\\\"from maya2glTF_playblast import playblast\\\\nplayblast()\\\")\");\n"
  },
  {
    "path": "maya/scripts/maya2glTF_createPbrSpheres.mel",
    "content": "global proc maya2glTF_createPbrSpheres() \n{\n    file -f -new;\n\n    polySphere -r 0.5 -sx 20 -sy 20 -ax 0 1 0 -cuv 2 -ch 1 -name \"pbrSphere\"; \n\n    loadPlugin \"glslShader.mll\";\n    source \"createAndAssignShader.mel\";\n\n    float $n = 6;\n\n    for ($m=0; $m<=$n; ++$m) {\n        for ($r=0; $r<=$n; ++$r) {\n            select \"pbrSphere\";\n            string $nns[] = `instance`;\n            string $nn = $nns[0];\n            move -a -xy (2*($r-$n/2)) (2*($m-$n/2));\n            print ($m + \", \" + $r + \"\\n\");\n\n            // create new glTF PBR GLSL shader\n            string $sh = `shadingNode -asShader GLSLShader`;\n            setAttr -type \"string\" ($sh+\".shader\") \"renderData/shaders/glTF_PBR.ogsfx\";\n            assignCreatedShader \"GLSLShader\" \"\" $sh $nn;\n            setAttr ($sh+\".u_MetallicStrength\") ($m/$n);      \n            setAttr ($sh+\".u_RoughnessStrength\") ($r/$n);\n            setAttr ($sh+\".u_LightIntensity\") 0;\n            setAttr ($sh+\".u_BaseColorFactorRGB\") -type double3 0.61 0.61 0.61;\n\n        }\n    }\n\n    select \"pbrSphere\";\n    doDelete;\n}\n"
  },
  {
    "path": "maya/scripts/maya2glTF_exportAllScenes.mel",
    "content": "source \"maya2glTF_animachine.mel\";\n\nglobal string $maya2glTF_tempFolder = \"C:/temp/maya2glTF_tests\";\n\nproc string _ensureTrailingSlash( string $folderPath ) {\n    if (size($folderPath) == 0)\n        error (\"Invalid folder path!\");\n\n    if (substring($folderPath, size($folderPath), size($folderPath)) != \"/\")\n        $folderPath += \"/\";\n\n    return $folderPath;\n}\n\nproc string _combinePaths(string $path1, string $path2) {\n    return size($path1) == 0\n     ? $path2\n     : _ensureTrailingSlash($path1)+$path2;\n}\n\nproc _deleteFolder( string $folderPath )\n{\n    if (`filetest -d ($folderPath)`) {\n        print (\"Deleting files in \"+$folderPath+\"...\\n\");\n\n        string $subFiles[] = `getFileList -folder $folderPath`;\n\n        for( $filename in $subFiles )\n        {\n            string $filePath = _combinePaths($folderPath, $filename);\n\n            if( `filetest -d $filePath` )\n            { \n                _deleteFolder($filePath);\n            }\n            else\n            {\n                sysFile -delete $filePath;\n            }\n        }\n\n\t\tsysFile -removeEmptyDir $folderPath;\n    } \n}\n\nproc _exportTestScene(string $scenesDir, string $filename) {\n    global string $maya2glTF_tempFolder;\n\n    int $exportAnim = match(\"anim\",tolower($filename)) == \"anim\";\n\n    print (\"Exporting \" + $filename + ($exportAnim ? \" with\" : \" without\") + \" animation...\\n\");\n\n    string $path = _combinePaths($scenesDir, $filename);\n\n\tif (catch (`file -f -ignoreVersion -strict on -typ \"mayaAscii\" -o $path`)) \n\t{\n        print (\"Some errors occurred while loading the scene, this can happen if some Maya components (like Arnold) are not installed\");\n\t}\n\n    select -r `ls -v -type mesh -ap`;\n\n\t$min = `playbackOptions -q -min`;\n\t$max = `playbackOptions -q -max`;\n\t$fps = `currentTimeUnitToFPS`;\n\n    string $rootFolder = _combinePaths($maya2glTF_tempFolder, $filename);\n    string $outputFolder = _combinePaths($rootFolder, \"gltf\");\n\n    if ($exportAnim \n            ? catch(`maya2glTF -acn \"clip\" -ast $min -aet $max -afr $fps -outputFolder $outputFolder`) \n            : catch(`maya2glTF -outputFolder $outputFolder`)) {\n        print (\"*** Exporting \"+$filename+\" failed! :-( ***\\n\");\n    } else {\n        print (\"Exporting \"+$filename+\" succeeded\\n\");\n    } \n\n    print (\"-------------------------------------------------------------------\\n\");\n}\n\nglobal proc _exportTestScenes(string $scenesDir, string $subDir) {\n\n\tstring $folder = _combinePaths($scenesDir, $subDir);\n    print (\"Scanning \"+$folder+\"...\\n\");\n\n\tstring $filenames[] = `getFileList -folder $folder`;\n\n    for($filename in $filenames)\n    {\n        string $filePath = _combinePaths($folder, $filename);\n\t\tstring $subPath = _combinePaths($subDir, $filename);\n        if( `filetest -d $filePath` )\n        { \n            _exportTestScenes($scenesDir, $subPath);\n        }\n        else if (tolower(fileExtension($filePath)) == \"ma\")\n        {\n            _exportTestScene($scenesDir, $subPath);\n        }\n    }\n}\n\nproc _exportAllScenes() {\n    global string $maya2glTF_tempFolder;\n\n    _deleteFolder($maya2glTF_tempFolder);\n\n    print (\"Creating temp folder\"+$maya2glTF_tempFolder+\"...\\n\");\n    sysFile -makeDir $maya2glTF_tempFolder;\n\n    string $rootDir = `workspace -q -active`;\n    string $scenesDir = _combinePaths($rootDir, \"scenes\");\n\n    print (\"Loading scenes from workspace folder = \"+$scenesDir +\"\\n\");\n\n    _exportTestScenes($scenesDir, \"\");\n\n    unloadPlugin  \"maya2glTF\";\n\n    loadPlugin -rc maya2glTF_exportAllScenes_callback;\n}\n\nglobal proc maya2glTF_exportAllScenes_callback(string $cmd) {\n    global string $maya2glTF_tempFolder;\n\n    string $logPath = _combinePaths($maya2glTF_tempFolder, \"log.txt\");\n\n    scriptEditorInfo -historyFilename $logPath  -writeHistory true;\n\n    scriptEditorInfo -clearHistoryFile;\n\n    if (catch (_exportAllScenes())) {\n        print (\"Failed to export all scenes!\");\n    }\n\n    scriptEditorInfo -writeHistory false;\n}\n\nglobal proc maya2glTF_exportAllScenes() {\n    unloadPlugin  \"maya2glTF\";\n    loadPlugin -rc maya2glTF_exportAllScenes_callback;\n    loadPlugin -ac maya2glTF_exportAllScenes_callback  \"maya2glTF\";\n}\n\nglobal proc maya2glTF_defaultSceneAnimMetaDataToJSON(string $outputFolder) {\n    string $name = basenameEx(`file -q -sceneName -shortName`);\n    string $json = maya2glTF_sceneAnimMetaDataToJSON($name, \"\", true);\n\n    string $outputName = $name+\".json\";\n    string $outputPath = _combinePaths($outputFolder, $outputName);\n    int $fileId=`fopen $outputPath \"w\"`;\n    fprint $fileId $json;\n    fclose $fileId;   \n}\n\n{\n    // maya2glTF_exportAllScenes;\n    // maya2glTF_forEachSceneIn(\"D:/nova/scenes\", false, false, \"maya2glTF_defaultSceneAnimMetaDataToJSON(\\\"D:/nova/export/Anim\\\")\");\n    // maya2glTF_defaultSceneAnimMetaDataToJSON(\"D:/nova/export/Meta\");\n}\n\n"
  },
  {
    "path": "maya/scripts/maya2glTF_exportClipScenes.bat",
    "content": "cd /d %~dp0\n\"C:\\Program Files\\Autodesk\\Maya2018\\bin\\MayaBatch\" -script \"maya2glTF_exportClipScenes.mel\" -command \"maya2glTF_exportClipScenes(\\\"P:/024_WM_TheRecyclables/03_Production/03_anim/Nova\\\", \\\"d:/nova/export\\\", \\\"nova\\\");\"\n\n\n\n"
  },
  {
    "path": "maya/scripts/maya2glTF_exportClipScenes.mel",
    "content": "source \"maya2glTF_common.mel\";\n\nproc string _quoted(string $text)\n{\n    string $quote = \"\\\"\";\n    return $quote+$text+$quote;\n}\n\nproc string _ensureTrailingSlash( string $folderPath ) {\n    if (size($folderPath) == 0)\n        error (\"Invalid folder path!\");\n\n    if (substring($folderPath, size($folderPath), size($folderPath)) != \"/\")\n        $folderPath += \"/\";\n\n    return $folderPath;\n}\n\nproc string _combinePaths(string $path1, string $path2) {\n    return size($path1) == 0\n     ? $path2\n     : _ensureTrailingSlash($path1)+$path2;\n}\n\nproc _exportClipScene(string $scenesDir, string $exportDir, string $filename, string $modelName) {\n    string $path = _combinePaths($scenesDir, $filename);\n\n    print (\"Loading \" + $path + \"...\\n\");\n\n    if (catch (`file -f -ignoreVersion -prompt off -o $path`)) {\n        print (\"Some errors occurred while loading the scene, this can happen if some Maya components (like Arnold) are not installed\");\n    }\n\n    int $isCancelled = `progressWindow -query -isCancelled`;\n    if ($isCancelled) {\n        error (\"Aborted!\");\n    }\n\n    maya2glTF_polySelectAndFrame();\n\n    string $name = basenameEx($filename);\n\n    $min = `playbackOptions -q -min`;\n    $max = `playbackOptions -q -max`;\n    $fps = `currentTimeUnitToFPS`;\n\n    print (`format -s($name) -s($min) -s($max) -s($fps) \"Exporting ^1s, time range: ^2s - ^3s, FPS: ^4s...\\n\"`);\n\n    currentTime -edit 0;\n    dgdirty -allPlugs;\n\n    currentTime -edit -1000;\n    dgdirty -allPlugs;\n\n    //maya2glTF -mts -ivt -1000 -sma -sbr -hbu -acn $name -ast $min -aet $max -afr $fps -cof -of $outputFolder;\n    maya2glTF -mts -ivt -1000 -fac -acn $name -ast $min -aet $max -afr $fps -of $exportDir;\n}\n\nglobal proc _exportClipScenes(string $scenesDir, string $exportDir, string $modelName) {\n\n    string $filenames[] = `getFileList -folder $scenesDir`;\n\n    print (\"Exporting \" + stringArrayToString($filenames, \", \") + \"...\\n\");\n\n    int $sceneCount = size($filenames);\n\n    progressWindow -endProgress;\n\n    progressWindow \n        -title \"maya2glTF\" \n        -min 0 \n        -max $sceneCount \n        -status \"Exporting...\" \n        -isInterruptable true \n        -progress 0;\n\n    int $progress = 0;\n\n    for($filename in $filenames) {\n        string $filePath = _combinePaths($scenesDir, $filename);\n\n        if (`filetest -f $filePath`) {\n            ++$progress;\n\n            progressWindow -edit -progress $progress -status $filePath;\n\n            if (tolower(fileExtension($filePath)) == \"ma\") {\n                if (catch (_exportClipScene($scenesDir, $exportDir, $filename, $modelName))) {\n                    warning (\"Failed to export \" + $filename);\n                }\n            }\n\n            int $isCancelled = `progressWindow -query -isCancelled`;\n            if ($isCancelled) {\n                error (\"Aborted!\");\n            }\n        }\n    }\n}\n\nglobal proc maya2glTF_exportClipScenes(string $scenesDir, string $exportDir, string $modelName) {\n    progressWindow -endProgress;\n    loadPlugin \"maya2glTF\";\n\n    if (catch (_exportClipScenes($scenesDir, $exportDir, $modelName))) {\n        print (\"Failed to export clip scenes!\");\n    }\n\n    progressWindow -endProgress;\n    unloadPlugin  \"maya2glTF\";\n}\n"
  },
  {
    "path": "maya/scripts/maya2glTF_logicalParents.mel",
    "content": "global proc maya2glTF_setLogicalParent() {\n    string $nodes[] = `ls -sl -type transform`;\n    if (size($nodes) < 2)\n        error \"You must select one parent transform node and one or more child transform nodes\";\n\n    string $parent = $nodes[0];\n\n    int $i = 0;\n    while (++$i < size($nodes)) {\n        string $child = $nodes[$i];\n        print (\"Setting logical glTF parent of \"+$child+\" to \"+$parent + \"...\\n\");\n        if (!`attributeExists \"Maya2glTF_LogicalParent\" $child`) {\n            addAttr -nn \"glTF Logical Parent\" -ln Maya2glTF_LogicalParent -dt \"string\" -storable 1 $child;\n        }\n        setAttr -type \"string\" ($child+\".Maya2glTF_LogicalParent\") $parent;\n    }\n}\n\nglobal proc maya2glTF_clearLogicalParents() {\n    string $nodes[] = `ls -sl -type transform`;\n    if (size($nodes) < 1)\n        error \"You must select one or more transform nodes\";\n\n    int $i;\n    int $cleared = 0;\n    for ($i=0; $i < size($nodes); ++$i) {\n        string $node = $nodes[$i];\n        if (`attributeExists \"Maya2glTF_LogicalParent\" $node`) {\n            print (\"Clearing logical glTF parent of \"+$node+\"...\\n\");\n            deleteAttr -attribute Maya2glTF_LogicalParent $node;\n            ++$cleared;\n        }\n    }\n\n    if (!$cleared) {\n        print (\"No node had a glTF logical parent attribute.\\n\");\n    }\n}\n\nglobal proc maya2glTF_logicalParents(int $add) {\n    if ($add){ \n        maya2glTF_setLogicalParent();\n    } else {\n        maya2glTF_clearLogicalParents();\n    }\n}\n"
  },
  {
    "path": "maya/scripts/maya2glTF_pasteKeyInScenes.mel",
    "content": "/** \r\n    Pastes a single key from a non-animated setup scene (aka T-pose) to multiple animation scenes (aka clips),\r\n    so that each animation clip starts from this T-pose. \r\n\r\n    Only creates a key for the \"rig controllers\" in a scene, and currently assumes that NURBS curves \r\n    are used to model all rig controllers (will be made more flexible in a future revision)\r\n\r\n    When exporting each clip with maya2glTF, when the T-pose keyframe is pasted at frame -1000, use the following arguments:\r\n    \r\n    -initialValuesTime -1000 -splitMeshAnimation -hashBufferUri -mikkelsenTangentSpace\r\n\r\n    -splitMeshAnimation will create a separate buffer for the mesh and animation\r\n\r\n    -hashBufferUri will generate a new for the buffer based on its contents. \r\n     If you didn't edit the meshes or materials in the animated clips (as you should), each clip should export to the same buffer. \r\n\r\n    -mikkelsenTangentSpace flag is optional, but recommended for glTF. \r\n  */\r\nproc string _quoted(string $text)\r\n{\r\n    string $quote = \"\\\"\";\r\n    return $quote+$text+$quote;\r\n}\r\n\r\nproc string _ensureTrailingSlash( string $folderPath ) {\r\n    if (size($folderPath) == 0)\r\n        error (\"Invalid folder path!\");\r\n\r\n    if (substring($folderPath, size($folderPath), size($folderPath)) != \"/\")\r\n        $folderPath += \"/\";\r\n\r\n    return $folderPath;\r\n}\r\n\r\nproc string _combinePaths(string $path1, string $path2) {\r\n    return size($path1) == 0\r\n     ? $path2\r\n     : _ensureTrailingSlash($path1)+$path2;\r\n}\r\n\r\nproc _pasteKeyInScenes(string $filenames[], string $setupScenePath, int $setupKeyFrame, string $inputScenesDir, string $outputScenesDir) {\r\n    int $sceneCount = size($filenames);\r\n\r\n    sysFile -makeDir $outputScenesDir;\r\n\r\n    // Load setup scene\r\n    print (\"Loading setup '\" + $setupScenePath + \"'...\\n\");\r\n\r\n    if (catch (`file -f -ignoreVersion -prompt off -o $setupScenePath`)) {\r\n        warning \"Some errors occurred while loading the setup scene, this can happen if some Maya components (like Arnold) are not installed\";\r\n    }\r\n\r\n    // Create a key for all controllers, and copy to the API clipboard\r\n    string $controllers[] = `listTransforms \"-type nurbsCurve\"`;\r\n\r\n    if (size($controllers) > 0) {\r\n        select -r $controllers;\r\n        setKeyframe -breakdown 0 -hierarchy none -controlPoints 0 -shape 0 -time $setupKeyFrame;\r\n        copyKey -clipboard \"api\" -shape 0 -time $setupKeyFrame;\r\n    } else {\r\n        error \"Scene doesn't contain any controllers\";\r\n    }\r\n        \r\n    int $sceneIndex = 0;\r\n\r\n    for($filename in $filenames) {\r\n        string $inputFilePath = _combinePaths($inputScenesDir, $filename);\r\n        string $outputFilePath = _combinePaths($outputScenesDir, $filename);\r\n\r\n        progressWindow -edit -progress $sceneIndex -status $filename;\r\n\r\n        $sceneIndex += 1;\r\n\r\n        print (`format -s($sceneIndex) -s($sceneCount) -s($filename) \"Loading #^1s/^2s '^3s'...\\n\"`);\r\n\r\n        if (catch (`file -f -ignoreVersion -prompt off -o $inputFilePath`)) {\r\n            warning \"Some errors occurred while loading the clip scene, this can happen if some Maya components (like Arnold) are not installed\";\r\n        }\r\n    \r\n        if ( `progressWindow -query -isCancelled` ) {\r\n            error \"Aborted\";\r\n        }\r\n\r\n        string $controllers[] =  `listTransforms \"-type nurbsCurve\"`;\r\n\r\n        if (size($controllers) > 0) {\r\n            select -r $controllers;\r\n            pasteKey -clipboard \"api\" -time $setupKeyFrame;\r\n        } else {\r\n            warning \"Scene doesn't contain any controllers\";\r\n        }\r\n\r\n        file -rename $outputFilePath;\r\n         \r\n        file -f -type \"mayaAscii\"  -prompt off -save;\r\n    }\r\n}\r\n\r\nglobal proc maya2glTF_pasteKeyInScenes(string $setupScenePath, int $setupKeyFrame, string $inputScenesDir, string $outputScenesDir)\r\n{\r\n    string $filenames[] = `getFileList -folder $inputScenesDir`;\r\n    int $sceneCount = size($filenames);\r\n\r\n    progressWindow -endProgress;\r\n\r\n    progressWindow \r\n        -title \"maya2glTF\" \r\n        -min 0 \r\n        -max ($sceneCount+1) \r\n        -status \"Setup...\" \r\n        -isInterruptable true \r\n        -progress 0;\r\n\r\n    if (catch(_pasteKeyInScenes($filenames, $setupScenePath, $setupKeyFrame, $inputScenesDir, $outputScenesDir))) {\r\n        warning \"*** Errors occurred ***\";\r\n    }\r\n\r\n    progressWindow -endProgress;\r\n}\r\n\r\n//maya2glTF_pasteKeyInScenes(\"D:/Nova/024_WM_TheRecyclables/03_Production/03_anim/Nova/Nova_SetUp.ma\", -1000, \"D:/Nova/024_WM_TheRecyclables/03_Production/03_anim/Nova\", \"d:/nova/keyed\");\r\n"
  },
  {
    "path": "maya/scripts/maya2glTF_playblast.py",
    "content": "import os\r\nimport shutil\r\nimport maya.cmds as cmds\r\nfrom maya2glTF_capture import capture\r\n\r\ndef defaultPlayblastFilename(scenename):\r\n    name = os.path.splitext(scenename)[0]\r\n    root = cmds.workspace(q=1, active=True)\r\n    folder = os.path.abspath(os.path.join(root, 'playblast', name, 'video'))\r\n    if os.path.exists(folder):\r\n       shutil.rmtree(folder)\r\n    os.makedirs(folder)\r\n    return  os.path.abspath(os.path.join(folder, 'frame'))\r\n\r\n    # folder = os.path.abspath(os.path.join(root, 'playblast'))\r\n    # if not os.path.exists(folder):\r\n    #     os.makedirs(folder)\r\n    # return  os.path.abspath(os.path.join(folder, name))\r\n\r\ndef playblast(\r\n    filename=None,\r\n    camera='camera1', \r\n    width=1280,\r\n    height=720, \r\n    format='image',\r\n    compression='png', \r\n    overwrite=True,\r\n    start_frame=None,\r\n    end_frame=None):\r\n\r\n    scenename = cmds.file(q=1, sceneName=True, shortName=True)\r\n\r\n    filename = filename or defaultPlayblastFilename(scenename)\r\n    # frame = None if \"anim\" in scenename.lower() else 1\r\n\r\n    capture(\r\n        camera=camera,\r\n        width=width, \r\n        height=height, \r\n        format=format, \r\n        compression=compression, \r\n        filename=filename, \r\n        overwrite=overwrite,\r\n        viewer=False,\r\n        off_screen=True,\r\n        start_frame=start_frame,\r\n        end_frame=end_frame,\r\n        maintain_aspect_ratio=False,\r\n        viewport_options={\r\n            \"grid\": False,\r\n            \"headsUpDisplay\": False, \r\n        },\r\n        display_options={\r\n            \"displayGradient\": False,\r\n            \"background\": (0, 0, 0),\r\n        },\r\n        camera_options={\r\n            \"displayResolution\": False\r\n        }\r\n    )\r\n"
  },
  {
    "path": "maya/scripts/maya2glTF_playblastClipScenes.mel",
    "content": "source \"maya2glTF_common.mel\";\n\n\nproc string _quoted(string $text)\n{\n    string $quote = \"\\\"\";\n    return $quote+$text+$quote;\n}\n\nproc string _ensureTrailingSlash( string $folderPath ) {\n    if (size($folderPath) == 0)\n        error (\"Invalid folder path!\");\n\n    if (substring($folderPath, size($folderPath), size($folderPath)) != \"/\")\n        $folderPath += \"/\";\n\n    return $folderPath;\n}\n\nproc string _combinePaths(string $path1, string $path2) {\n    return size($path1) == 0\n     ? $path2\n     : _ensureTrailingSlash($path1)+$path2;\n}\n\nproc _deleteFolder( string $folderPath )\n{\n    if (`filetest -d ($folderPath)`) {\n        print (\"Deleting files in \"+$folderPath+\"...\\n\");\n\n        string $subFiles[] = `getFileList -folder $folderPath`;\n\n        for( $filename in $subFiles )\n        {\n            string $filePath = _combinePaths($folderPath, $filename);\n\n            if( `filetest -d $filePath` )\n            { \n                _deleteFolder($filePath);\n            }\n            else\n            {\n                sysFile -delete $filePath;\n            }\n        }\n\n\t\tsysFile -removeEmptyDir $folderPath;\n    } \n}\n\nproc _playblastClipScene(string $modelScenePath, string $scenesDir, string $exportDir, string $filename) {\n\n    print (\"Loading \" + $modelScenePath + \"...\\n\");\n\n    if (catch (`file -f -ignoreVersion -prompt off -o $modelScenePath`)) {\n        warning \"Some errors occurred while loading the scene\";\n    }\n\n    int $isCancelled = `progressWindow -query -isCancelled`;\n    if ($isCancelled) {\n        error (\"Aborted!\");\n    }\n    \n    string $clipScenePath = _combinePaths($scenesDir, $filename);\n\n    string $name = basenameEx($filename);\n\n    print (\"Importing clip \" + $name + \"...\\n\");\n\n    if (catch (`timeEditorClip -showAnimSourceRemapping -importOption connect -track \"Composition1:-1\" -importMayaFile $clipScenePath -startTime 1 $name`)) {\n        warning \"Some errors occurred while importing the animation\";\n    }\n\n    string $exportImageFolder = _combinePaths($exportDir, $name);\n    _deleteFolder($exportImageFolder);\n\n    string $exportImagePath = _combinePaths($exportImageFolder, \"frame\");\n\n    print (\"Playblasting clip \" + $name + \"...\\n\");\n\n    int $duration = `timeEditorClip -q -duration -absolute 1`;\n\n    if (catch(`playblast -startTime 1 -endTime $duration -format image -filename $exportImagePath -sequenceTime 0 -clearCache 1 -viewer 0 -showOrnaments 0 -offScreen  -fp 4 -percent 100 -compression \"png\" -quality 100 -widthHeight 1280 720`)) {\n        warning \"Some errors occurred while playblasting the animation\";\n    }\n}\n\nglobal proc _playblastClipScenes(string $modelScenePath, string $scenesDir, string $exportDir) {\n\n    string $filenames[] = `getFileList -folder $scenesDir`;\n\n    print (\"Playblasting \" + stringArrayToString($filenames, \", \") + \"...\\n\");\n\n    int $sceneCount = size($filenames);\n\n    progressWindow -endProgress;\n\n    progressWindow \n        -title \"maya2glTF\" \n        -min 0 \n        -max $sceneCount \n        -status \"Playblasting...\" \n        -isInterruptable true \n        -progress 0;\n\n    int $progress = 0;\n\n    for($filename in $filenames) {\n        string $filePath = _combinePaths($scenesDir, $filename);\n\n        if (`filetest -f $filePath`) {\n            ++$progress;\n\n            progressWindow -edit -progress $progress -status $filePath;\n\n            if (tolower(fileExtension($filePath)) == \"ma\") {\n                if (catch (_playblastClipScene($modelScenePath, $scenesDir, $exportDir, $filename))) {\n                    warning (\"Failed to playblasting \" + $filename);\n                }\n            }\n\n            int $isCancelled = `progressWindow -query -isCancelled`;\n            if ($isCancelled) {\n                error (\"Aborted!\");\n            }\n        }\n    }\n}\n\nglobal proc maya2glTF_playblastClipScenes(string $modelScenePath, string $scenesDir, string $exportDir) {\n    progressWindow -endProgress;\n    loadPlugin \"maya2glTF\";\n\n    if (catch (_playblastClipScenes($modelScenePath, $scenesDir, $exportDir))) {\n        print (\"Failed to playblast clip scenes!\");\n    }\n\n    progressWindow -endProgress;\n    unloadPlugin  \"maya2glTF\";\n}\n\n// maya2glTF_playblastClipScenes(\"P:/024_WM_TheRecyclables/03_Production/08_shading/Nova/Nova_PBR.ma\", \"P:/024_WM_TheRecyclables/03_Production/03_anim/Nova\", \"D:/Nova/Playblast\");"
  },
  {
    "path": "maya/scripts/maya2glTF_reloadPython.py",
    "content": "import sys\n\nsys.path.append(cmds.workspace( expandName = 'scripts'))\n\ndef remove_module(module_name):\n    print('info', 'Removing {} module'.format(module_name))\n    to_delete = []\n    for module in sys.modules:\n        if module.split('.')[0] == module_name:\n            to_delete.append(module)\n    for module in to_delete:\n        del (sys.modules[module])\n\nremove_module(\"maya2glTF_capture\")\nremove_module(\"maya2glTF_playblast\")\n\nfrom maya2glTF_playblast import playblast\nfrom maya2glTF_capture import capture\n"
  },
  {
    "path": "maya/scripts/test-iteration.mel",
    "content": "// Loads, runs, unloads the plugin. Easy for development to unlock the plugin DLL\n\nglobal proc maya2glTF_exporter(string $cmd) {\n\tprint (\"Executing \"+$cmd+\"...\\n\");\n\n\tstring $min = `playbackOptions -q -min`;\n\tstring $max = `playbackOptions -q -max`;\n\tfloat $fps = `currentTimeUnitToFPS`;\n\n\tstring $copyright = \"Anonymous 2018\";\n\n\tstring $sn = `file -q -sn`;\n\t$sn = `tolower $sn`;\n    if (`match \"anim\" $sn` == \"anim\") {\n\t\tif (catch(`maya2glTF -copyright $copyright -acn \"clip\" -ast $min -aet $max -afr $fps -outputFolder \"C:/temp/glTF\"`) ) {\n\t\t\tprint \"Failed!\\n\";\n\t\t} \n\t} else {\n\t\tif (catch(`maya2glTF -copyright $copyright -outputFolder \"C:/temp/glTF\"`) ) {\n\t\t\tprint \"Failed!\\n\";\n\t\t} \n\t}\n\n\tprint (\"Unloading maya2glTF...\");\n\tunloadPlugin(\"maya2glTF\");\n}\n\nunloadPlugin  \"maya2glTF\";\nloadPlugin -rc maya2glTF_exporter;\nloadPlugin -ac maya2glTF_exporter  \"maya2glTF\" ;\n"
  },
  {
    "path": "maya/workspace.mel",
    "content": "//Maya 2018 Project Definition\n\nworkspace -fr \"fluidCache\" \"cache/nCache/fluid\";\nworkspace -fr \"images\" \"images\";\nworkspace -fr \"JT_ATF\" \"data\";\nworkspace -fr \"offlineEdit\" \"scenes/edits\";\nworkspace -fr \"STEP_ATF Export\" \"data\";\nworkspace -fr \"furShadowMap\" \"renderData/fur/furShadowMap\";\nworkspace -fr \"INVENTOR_ATF Export\" \"data\";\nworkspace -fr \"SVG\" \"data\";\nworkspace -fr \"scripts\" \"scripts\";\nworkspace -fr \"STL_ATF\" \"data\";\nworkspace -fr \"DAE_FBX\" \"data\";\nworkspace -fr \"shaders\" \"renderData/shaders\";\nworkspace -fr \"NX_ATF\" \"data\";\nworkspace -fr \"furFiles\" \"renderData/fur/furFiles\";\nworkspace -fr \"CATIAV5_ATF Export\" \"data\";\nworkspace -fr \"OBJ\" \"data\";\nworkspace -fr \"PARASOLID_ATF Export\" \"data\";\nworkspace -fr \"FBX export\" \"data\";\nworkspace -fr \"furEqualMap\" \"renderData/fur/furEqualMap\";\nworkspace -fr \"BIF\" \"\";\nworkspace -fr \"DAE_FBX export\" \"data\";\nworkspace -fr \"CATIAV5_ATF\" \"data\";\nworkspace -fr \"SAT_ATF Export\" \"data\";\nworkspace -fr \"movie\" \"movies\";\nworkspace -fr \"ASS Export\" \"\";\nworkspace -fr \"move\" \"data\";\nworkspace -fr \"autoSave\" \"autosave\";\nworkspace -fr \"mayaAscii\" \"scenes\";\nworkspace -fr \"NX_ATF Export\" \"data\";\nworkspace -fr \"sound\" \"sound\";\nworkspace -fr \"mayaBinary\" \"scenes\";\nworkspace -fr \"timeEditor\" \"Time Editor\";\nworkspace -fr \"DWG_ATF\" \"data\";\nworkspace -fr \"JT_ATF Export\" \"data\";\nworkspace -fr \"iprImages\" \"renderData/iprImages\";\nworkspace -fr \"FBX\" \"data\";\nworkspace -fr \"renderData\" \"renderData\";\nworkspace -fr \"CATIAV4_ATF\" \"data\";\nworkspace -fr \"fileCache\" \"cache/nCache\";\nworkspace -fr \"eps\" \"data\";\nworkspace -fr \"STL_ATF Export\" \"data\";\nworkspace -fr \"3dPaintTextures\" \"sourceimages/3dPaintTextures\";\nworkspace -fr \"translatorData\" \"data\";\nworkspace -fr \"mel\" \"scripts\";\nworkspace -fr \"particles\" \"cache/particles\";\nworkspace -fr \"scene\" \"scenes\";\nworkspace -fr \"SAT_ATF\" \"data\";\nworkspace -fr \"PROE_ATF\" \"data\";\nworkspace -fr \"WIRE_ATF Export\" \"data\";\nworkspace -fr \"sourceImages\" \"sourceimages\";\nworkspace -fr \"clips\" \"clips\";\nworkspace -fr \"furImages\" \"renderData/fur/furImages\";\nworkspace -fr \"INVENTOR_ATF\" \"data\";\nworkspace -fr \"STEP_ATF\" \"data\";\nworkspace -fr \"DWG_ATF Export\" \"data\";\nworkspace -fr \"depth\" \"renderData/depth\";\nworkspace -fr \"sceneAssembly\" \"sceneAssembly\";\nworkspace -fr \"IGES_ATF Export\" \"data\";\nworkspace -fr \"PARASOLID_ATF\" \"data\";\nworkspace -fr \"IGES_ATF\" \"data\";\nworkspace -fr \"teClipExports\" \"Time Editor/Clip Exports\";\nworkspace -fr \"ASS\" \"\";\nworkspace -fr \"audio\" \"sound\";\nworkspace -fr \"bifrostCache\" \"cache/bifrost\";\nworkspace -fr \"Alembic\" \"data\";\nworkspace -fr \"illustrator\" \"data\";\nworkspace -fr \"diskCache\" \"data\";\nworkspace -fr \"WIRE_ATF\" \"data\";\nworkspace -fr \"templates\" \"assets\";\nworkspace -fr \"OBJexport\" \"data\";\nworkspace -fr \"furAttrMap\" \"renderData/fur/furAttrMap\";\n"
  },
  {
    "path": "modules/FindMaya.cmake",
    "content": "\nif (NOT DEFINED MAYA_VERSION)\n  set(MAYA_VERSION 2018 CACHE STRING \"Maya version\")\nendif()\n\nset(MAYA_COMPILE_DEFINITIONS \"REQUIRE_IOSTREAM;_BOOL\")\nset(MAYA_INSTALL_BASE_SUFFIX \"\")\nset(MAYA_LIB_SUFFIX \"lib\")\n\nif (WIN32)\n  # Windows\n  set(MAYA_INSTALL_BASE_DEFAULT \"C:/Program Files/Autodesk\")\n  set(MAYA_COMPILE_DEFINITIONS \"${MAYA_COMPILE_DEFINITIONS};NT_PLUGIN\")\n  set(MAYA_PLUGIN_EXTENSION \".mll\")\nelseif(APPLE)\n  # Mac\n  set(MAYA_INSTALL_BASE_DEFAULT \"/Applications/Autodesk\")\n  set(OPENMAYA libOpenMaya.dylib)\n  set(MAYA_LIB_SUFFIX \"Maya.app/Contents/MacOS\")\n  set(MAYA_COMPILE_DEFINITIONS \"${MAYA_COMPILE_DEFINITIONS};OSMac_\")\n  set(MAYA_PLUGIN_EXTENSION \".bundle\")\nelse()\n  # Linux\n  set(MAYA_INSTALL_BASE_DEFAULT \"/usr/autodesk\")\n  set(MAYA_PLUGIN_EXTENSION \".so\")\n  set(CMAKE_CXX_FLAGS \"${CMAKE_CXX_FLAGS} -fPIC\")\nendif()\n\nset(MAYA_INSTALL_BASE_PATH ${MAYA_INSTALL_BASE_DEFAULT} CACHE STRING \"Root Maya installation path\")\nset(MAYA_LOCATION ${MAYA_INSTALL_BASE_PATH}/maya${MAYA_VERSION}${MAYA_INSTALL_BASE_SUFFIX})\n\n# Maya include directory\nfind_path(MAYA_INCLUDE_DIR maya/MFn.h\n  PATHS\n    ${MAYA_LOCATION}\n    $ENV{MAYA_LOCATION}\n  PATH_SUFFIXES\n    \"include/\"\n    \"devkit/include/\"\n  DOC \"Maya include path\"\n)\n\nset(MAYA_LIBRARIES \"\")\n\nset(_MAYA_LIBRARIES OpenMaya OpenMayaAnim OpenMayaFX OpenMayaRender OpenMayaUI Foundation)\n\nforeach(MAYA_LIB ${_MAYA_LIBRARIES})\n  find_library(MAYA_${MAYA_LIB}_LIBRARY\n    NAMES \n      ${MAYA_LIB}\n    PATHS\n      ${MAYA_LOCATION}\n      $ENV{MAYA_LOCATION}\n    PATH_SUFFIXES\n      ${MAYA_LIB_SUFFIX}\n    NO_DEFAULT_PATH\n  )\n  set(MAYA_LIBRARIES ${MAYA_LIBRARIES} ${MAYA_${MAYA_LIB}_LIBRARY})\nendforeach()\n\ninclude(FindPackageHandleStandardArgs)\nfind_package_handle_standard_args(Maya DEFAULT_MSG MAYA_INCLUDE_DIR MAYA_LIBRARIES)\n\nfunction(MAYA_PLUGIN _target)\n  if (WIN32)\n    set_target_properties(${_target} PROPERTIES\n      LINK_FLAGS \"/export:initializePlugin /export:uninitializePlugin\"\n    )\n  endif()\n\n  set_target_properties(${_target} PROPERTIES\n    COMPILE_DEFINITIONS \"${MAYA_COMPILE_DEFINITIONS}\"\n    PREFIX \"\"\n    SUFFIX ${MAYA_PLUGIN_EXTENSION}\n  )\nendfunction()\n"
  },
  {
    "path": "osx_create_project.sh",
    "content": "#!/bin/bash\n\nif [ $# -eq 0 ] \n    then \n        echo \"Usage: ./osx_create_project.sh MAYA_VERSION\" \n        echo \"Example: ./osx_create_project.sh 2020\"\n        exit 1\nfi\n\nCMAKE=\"cmake\"\n\nif ! [ -x \"$(command -v cmake)\" ]\n    then\n        echo \"cmake command not found in PATH, assuming it is found at /Applications/CMake.app/Contents/bin/cmake\" \n        CMAKE=\"/Applications/CMake.app/Contents/bin/cmake\"\nfi\n\n$CMAKE -B \"build\" -G \"Unix Makefiles\" -D MAYA_VERSION:string=$1\n"
  },
  {
    "path": "src/AccessorPacker.cpp",
    "content": "#include \"externals.h\"\r\n\r\n#include \"AccessorPacker.h\"\r\n\r\n#include \"accessors.h\"\r\n\r\nusing GLTF::Constants::WebGL;\r\n\r\nGLTF::BufferView *AccessorPacker::packAccessorsForTargetByteStride(\r\n    const std::vector<GLTF::Accessor *> &accessors, WebGL target) {\r\n    std::map<GLTF::Accessor *, int> byteOffsets;\r\n    int byteLength = 0;\r\n    for (GLTF::Accessor *accessor : accessors) {\r\n        const auto componentByteLength = accessor->getComponentByteLength();\r\n        const auto padding = byteLength % componentByteLength;\r\n        if (padding != 0) {\r\n            byteLength += (componentByteLength - padding);\r\n        }\r\n        byteOffsets[accessor] = byteLength;\r\n        byteLength += componentByteLength * accessor->getNumberOfComponents() *\r\n                      accessor->count;\r\n    }\r\n\r\n    auto bufferData = new byte[byteLength];\r\n    m_data.emplace_back(bufferData);\r\n\r\n    const auto bufferView =\r\n        new GLTF::BufferView(bufferData, byteLength, target);\r\n    m_views.emplace_back(bufferView);\r\n\r\n    for (GLTF::Accessor *accessor : accessors) {\r\n        const auto byteOffset = byteOffsets[accessor];\r\n        GLTF::Accessor packedAccessor(accessor->type, accessor->componentType,\r\n                                      byteOffset, accessor->count, bufferView);\r\n\r\n        const size_t numberOfComponents = accessor->getNumberOfComponents();\r\n\r\n        const auto components =\r\n            static_cast<float *>(alloca(sizeof(float) * numberOfComponents));\r\n\r\n        for (auto i = 0; i < accessor->count; i++) {\r\n            accessor->getComponentAtIndex(i, components);\r\n            packedAccessor.writeComponentAtIndex(i, components);\r\n        }\r\n\r\n        accessor->byteOffset = packedAccessor.byteOffset;\r\n        accessor->bufferView = packedAccessor.bufferView;\r\n    }\r\n    return bufferView;\r\n}\r\n\r\nGLTF::Buffer *\r\nAccessorPacker::packAccessors(const std::vector<GLTF::Accessor *> &accessors,\r\n                              const std::string &bufferName,\r\n                              size_t additionalBufferSize) {\r\n    std::map<WebGL, std::map<int, std::vector<GLTF::Accessor *>>>\r\n        accessorGroups;\r\n    accessorGroups[WebGL::ARRAY_BUFFER] =\r\n        std::map<int, std::vector<GLTF::Accessor *>>();\r\n    accessorGroups[WebGL::ELEMENT_ARRAY_BUFFER] =\r\n        std::map<int, std::vector<GLTF::Accessor *>>();\r\n    accessorGroups[WebGL(-1)] = std::map<int, std::vector<GLTF::Accessor *>>();\r\n\r\n    auto byteLength = 0;\r\n    for (GLTF::Accessor *accessor : accessors) {\r\n        // In glTF 2.0, bufferView is not required in accessor.\r\n        if (accessor->bufferView == nullptr) {\r\n            continue;\r\n        }\r\n\r\n        WebGL target = accessor->bufferView->target;\r\n        auto targetGroup = accessorGroups[target];\r\n        auto byteStride = accessor->getByteStride();\r\n        auto findByteStrideGroup = targetGroup.find(byteStride);\r\n\r\n        std::vector<GLTF::Accessor *> byteStrideGroup =\r\n            findByteStrideGroup == targetGroup.end()\r\n                ? std::vector<GLTF::Accessor *>()\r\n                : findByteStrideGroup->second;\r\n\r\n        byteStrideGroup.push_back(accessor);\r\n        targetGroup[byteStride] = byteStrideGroup;\r\n        accessorGroups[target] = targetGroup;\r\n        byteLength += accessor->bufferView->byteLength;\r\n    }\r\n\r\n#if 0\r\n    // Go through primitives and look for primitives that use Draco extension.\r\n        // If extension is not enabled, the vector will be empty.\r\n    std::vector<GLTF::BufferView*> compressedBufferViews = asset->getAllCompressedBufferView();\r\n    // Reserve data for compressed data.\r\n    for (GLTF::BufferView* compressedBufferView : compressedBufferViews) {\r\n        byteLength += compressedBufferView->byteLength;\r\n    }\r\n#endif\r\n\r\n    std::vector<int> byteStrides;\r\n    std::map<int, std::vector<GLTF::BufferView *>> bufferViews;\r\n    for (auto targetGroup : accessorGroups) {\r\n        for (auto byteStrideGroup : targetGroup.second) {\r\n            const WebGL target = targetGroup.first;\r\n            int byteStride = byteStrideGroup.first;\r\n\r\n            GLTF::BufferView *bufferView = packAccessorsForTargetByteStride(\r\n                byteStrideGroup.second, target);\r\n\r\n            if (!bufferName.empty()) {\r\n                bufferView->name = bufferName + \"/\" +\r\n                                   glAccessorTargetPurpose(target) + \"-\" +\r\n                                   std::to_string(byteStride);\r\n            }\r\n\r\n            if (target == WebGL::ARRAY_BUFFER) {\r\n                bufferView->byteStride = byteStride;\r\n            }\r\n            auto findBufferViews = bufferViews.find(byteStride);\r\n            std::vector<GLTF::BufferView *> bufferViewGroup;\r\n            if (findBufferViews == bufferViews.end()) {\r\n                byteStrides.push_back(byteStride);\r\n                bufferViewGroup = std::vector<GLTF::BufferView *>();\r\n            } else {\r\n                bufferViewGroup = findBufferViews->second;\r\n            }\r\n            bufferViewGroup.push_back(bufferView);\r\n            bufferViews[byteStride] = bufferViewGroup;\r\n        }\r\n    }\r\n    std::sort(byteStrides.begin(), byteStrides.end(), std::greater<>());\r\n\r\n    byteLength += additionalBufferSize;\r\n\r\n    GLTF::Buffer *buffer = nullptr;\r\n\r\n    if (byteLength > 0) {\r\n        // Pack these into a buffer sorted from largest byteStride to smallest\r\n        auto bufferData = new byte[byteLength];\r\n        m_data.emplace_back(bufferData);\r\n\r\n        buffer = new GLTF::Buffer(bufferData, byteLength);\r\n        m_buffers.emplace_back(buffer);\r\n        buffer->name = bufferName;\r\n\r\n        int byteOffset = 0;\r\n        for (int byteStride : byteStrides) {\r\n            for (GLTF::BufferView *bufferView : bufferViews[byteStride]) {\r\n                std::memcpy(&bufferData[byteOffset], bufferView->buffer->data,\r\n                            bufferView->byteLength);\r\n                bufferView->byteOffset = byteOffset;\r\n                bufferView->buffer = buffer;\r\n                byteOffset += bufferView->byteLength;\r\n            }\r\n        }\r\n\r\n#if 0\r\n        // Append compressed data to buffer.\r\n        for (GLTF::BufferView* compressedBufferView : compressedBufferViews) {\r\n            std::memcpy(bufferData + byteOffset, compressedBufferView->buffer->data, compressedBufferView->byteLength);\r\n            compressedBufferView->byteOffset = byteOffset;\r\n            compressedBufferView->buffer = buffer;\r\n            byteOffset += compressedBufferView->byteLength;\r\n        }\r\n#endif\r\n    }\r\n\r\n    return buffer;\r\n}\r\n\r\nstd::vector<GLTF::Buffer *> AccessorPacker::getPackedBuffers() const {\r\n    std::vector<GLTF::Buffer *> buffers;\r\n    for (auto &&buffer : m_buffers) {\r\n        buffers.emplace_back(buffer.get());\r\n    }\r\n    return move(buffers);\r\n}\r\n"
  },
  {
    "path": "src/AccessorPacker.h",
    "content": "#pragma once\r\n\r\n#include \"BasicTypes.h\"\r\n\r\nclass AccessorPacker {\r\n  public:\r\n    GLTF::Buffer *packAccessors(const std::vector<GLTF::Accessor *> &accessors,\r\n                                const std::string &bufferName,\r\n                                size_t additionalBufferSize = 0);\r\n\r\n    std::vector<GLTF::Buffer *> getPackedBuffers() const;\r\n\r\n  private:\r\n    std::vector<std::unique_ptr<byte[]>> m_data;\r\n    std::vector<std::unique_ptr<GLTF::Buffer>> m_buffers;\r\n    std::vector<std::unique_ptr<GLTF::BufferView>> m_views;\r\n\r\n    GLTF::BufferView *packAccessorsForTargetByteStride(\r\n        const std::vector<GLTF::Accessor *> &accessors,\r\n        GLTF::Constants::WebGL target);\r\n};\r\n"
  },
  {
    "path": "src/Arguments.cpp",
    "content": "#include \"externals.h\"\r\n\r\n#include \"Arguments.h\"\r\n#include \"IndentableStream.h\"\r\n#include \"MayaException.h\"\r\n#include \"MeshSemantics.h\"\r\n#include \"filesystem.h\"\r\n\r\nnamespace flag {\r\nconst auto gltfFileExtension = \"gfe\";\r\nconst auto glbFileExtension = \"gbe\";\r\n\r\nconst auto outputFolder = \"of\";\r\nconst auto cleanOutputFolder = \"cof\";\r\n\r\nconst auto sceneName = \"sn\";\r\nconst auto binary = \"glb\";\r\nconst auto dumpMaya = \"dmy\";\r\nconst auto dumpGLTF = \"dgl\";\r\nconst auto externalTextures = \"ext\";\r\nconst auto copyright = \"cpr\";\r\nconst auto splitMeshAnimation = \"sma\";\r\nconst auto splitByReference = \"sbr\";\r\nconst auto separateAccessorBuffers = \"sab\";\r\n\r\nconst auto defaultMaterial = \"dm\";\r\nconst auto colorizeMaterials = \"cm\";\r\nconst auto skipStandardMaterials = \"ssm\";\r\nconst auto skipMaterialTextures = \"smt\";\r\nconst auto force32bitIndices = \"i32\";\r\nconst auto disableNameAssignment = \"dnn\";\r\nconst auto scaleFactor = \"sf\";\r\nconst auto mikkelsenTangentSpace = \"mts\";\r\nconst auto mikkelsenTangentAngularThreshold = \"mta\";\r\nconst auto globalOpacityFactor = \"gof\";\r\n\r\nconst auto animationClipName = \"acn\";\r\nconst auto animationClipFrameRate = \"afr\";\r\nconst auto animationClipStartTime = \"ast\";\r\nconst auto animationClipEndTime = \"aet\";\r\n\r\nconst auto initialValuesTime = \"ivt\";\r\nconst auto skinUsePreBindMatrixAndMesh = \"pbm\";\r\n\r\nconst auto redrawViewport = \"rvp\";\r\n\r\nconst auto debugTangentVectors = \"dtv\";\r\nconst auto debugNormalVectors = \"dnv\";\r\nconst auto debugVectorLength = \"dvl\";\r\n\r\nconst auto meshPrimitiveAttributes = \"mpa\";\r\nconst auto blendPrimitiveAttributes = \"bpa\";\r\n\r\nconst auto skipSkinClusters = \"ssc\";\r\nconst auto skipBlendShapes = \"sbs\";\r\nconst auto ignoreMeshDeformers = \"imd\";\r\n\r\nconst auto ignoreSegmentScaleCompensation = \"isc\";\r\n\r\nconst auto selectedNodesOnly = \"sno\";\r\nconst auto visibleNodesOnly = \"vno\";\r\n\r\nconst auto excludeUnusedTexcoord = \"eut\";\r\n\r\nconst auto keepShapeNodes = \"ksn\";\r\n\r\nconst auto bakeScalingFactor = \"bsf\";\r\n\r\nconst auto forceRootNode = \"frn\";\r\n\r\nconst auto forceAnimationChannels = \"fac\";\r\n\r\nconst auto forceAnimationSampling = \"fas\";\r\n\r\nconst auto detectStepAnimations = \"dsa\";\r\n\r\nconst auto hashBufferURIs = \"hbu\";\r\n\r\nconst auto dumpAccessorComponents = \"dac\";\r\n\r\nconst auto niceBufferURIs = \"nbu\";\r\n\r\nconst auto convertUnsupportedImages = \"cui\";\r\n\r\nconst auto reportSkewedInverseBindMatrices = \"rsb\";\r\n\r\nconst auto clearOutputWindow = \"cow\";\r\n\r\nconst auto cameras = \"cam\";\r\n\r\nconst auto constantTranslationThreshold = \"ctt\";\r\nconst auto constantRotationThreshold = \"crt\";\r\nconst auto constantScalingThreshold = \"cst\";\r\nconst auto constantWeightsThreshold = \"cwt\";\r\n\r\nconst auto posPrecision = \"prp\";\r\nconst auto dirPrecision = \"prd\";\r\nconst auto colPrecision = \"prc\";\r\nconst auto texPrecision = \"prt\";\r\nconst auto sclPrecision = \"prs\";\r\nconst auto matPrecision = \"prm\";\r\n\r\nconst auto keepObjectNamespace = \"kon\";\r\n\r\n} // namespace flag\r\n\r\ninline const char *getArgTypeName(const MSyntax::MArgType argType) {\r\n    switch (argType) {\r\n    case MSyntax::kNoArg:\r\n        return \"flag\";\r\n    case MSyntax::kBoolean:\r\n        return \"boolean\";\r\n    case MSyntax::kLong:\r\n        return \"integer\";\r\n    case MSyntax::kDouble:\r\n        return \"float\";\r\n    case MSyntax::kString:\r\n        return \"string\";\r\n    case MSyntax::kUnsigned:\r\n        return \"unsigned\";\r\n    case MSyntax::kDistance:\r\n        return \"distance\";\r\n    case MSyntax::kAngle:;\r\n        return \"angle\";\r\n    case MSyntax::kTime:\r\n        return \"time\";\r\n    case MSyntax::kSelectionItem:\r\n        return \"selectionItem\";\r\n    default:\r\n        return nullptr;\r\n    }\r\n}\r\n\r\nSyntaxFactory::SyntaxFactory() {\r\n    auto status = setObjectType(kSelectionList, 1);\r\n    THROW_ON_FAILURE(status);\r\n\r\n    useSelectionAsDefault(true);\r\n\r\n    std::stringstream ss;\r\n    registerFlag(ss, flag::gltfFileExtension, \"gltfFileExtension\", kString);\r\n    registerFlag(ss, flag::glbFileExtension, \"glbFileExtension\", kString);\r\n    registerFlag(ss, flag::outputFolder, \"outputFolder\", kString);\r\n    registerFlag(ss, flag::cleanOutputFolder, \"cleanOutputFolder\", kNoArg);\r\n    registerFlag(ss, flag::sceneName, \"sceneName\", kString);\r\n    registerFlag(ss, flag::scaleFactor, \"scaleFactor\", kDouble);\r\n    registerFlag(ss, flag::binary, \"binary\", kNoArg);\r\n    registerFlag(ss, flag::separateAccessorBuffers, \"separateAccessorBuffers\", kNoArg);\r\n    registerFlag(ss, flag::splitMeshAnimation, \"splitMeshAnimation\", kNoArg);\r\n    registerFlag(ss, flag::splitByReference, \"splitByReference\", kNoArg);\r\n    registerFlag(ss, flag::dumpGLTF, \"dumpGTLF\", kString);\r\n    registerFlag(ss, flag::dumpMaya, \"dumpMaya\", kString);\r\n    registerFlag(ss, flag::dumpAccessorComponents, \"dumpAccessorComponents\", kNoArg);\r\n    registerFlag(ss, flag::externalTextures, \"externalTextures\", kNoArg);\r\n    registerFlag(ss, flag::defaultMaterial, \"defaultMaterial\", kNoArg);\r\n    registerFlag(ss, flag::colorizeMaterials, \"colorizeMaterials\", kNoArg);\r\n    registerFlag(ss, flag::skipStandardMaterials, \"skipStandardMaterials\", kNoArg);\r\n    registerFlag(ss, flag::skipMaterialTextures, \"skipMaterialTextures\", kNoArg);\r\n    registerFlag(ss, flag::force32bitIndices, \"force32bitIndices\", kNoArg);\r\n    registerFlag(ss, flag::disableNameAssignment, \"disableNameAssignment\", kNoArg);\r\n    registerFlag(ss, flag::mikkelsenTangentSpace, \"mikkelsenTangentSpace\", kNoArg);\r\n    registerFlag(ss, flag::mikkelsenTangentAngularThreshold, \"mikkelsenTangentAngularThreshold\", kDouble);\r\n    registerFlag(ss, flag::debugNormalVectors, \"debugNormalVectors\", kNoArg);\r\n    registerFlag(ss, flag::debugTangentVectors, \"debugTangentVectors\", kNoArg);\r\n    registerFlag(ss, flag::debugVectorLength, \"debugVectorLength\", kDouble);\r\n    registerFlag(ss, flag::globalOpacityFactor, \"globalOpacityFactor\", kDouble);\r\n    registerFlag(ss, flag::copyright, \"copyright\", kString);\r\n    registerFlag(ss, flag::detectStepAnimations, \"detectStepAnimations\", kLong);\r\n\r\n    registerFlag(ss, flag::animationClipFrameRate, \"animationClipFrameRate\", true, kDouble);\r\n    registerFlag(ss, flag::animationClipName, \"animationClipName\", true, kString);\r\n    registerFlag(ss, flag::animationClipStartTime, \"animationClipStartTime\", true, kTime);\r\n    registerFlag(ss, flag::animationClipEndTime, \"animationClipEndTime\", true, kTime);\r\n\r\n    registerFlag(ss, flag::initialValuesTime, \"initialValuesTime\", kTime);\r\n    registerFlag(ss, flag::skinUsePreBindMatrixAndMesh, \"skinUsePreBindMatrixAndMesh\", kNoArg);\r\n\r\n    registerFlag(ss, flag::meshPrimitiveAttributes, \"meshPrimitiveAttributes\", kString);\r\n    registerFlag(ss, flag::blendPrimitiveAttributes, \"blendPrimitiveAttributes\", kString);\r\n\r\n    registerFlag(ss, flag::ignoreMeshDeformers, \"ignoreMeshDeformers\", true, kString);\r\n    registerFlag(ss, flag::skipSkinClusters, \"skipSkinClusters\", kNoArg);\r\n    registerFlag(ss, flag::skipBlendShapes, \"skipBlendShapes\", kNoArg);\r\n\r\n    registerFlag(ss, flag::redrawViewport, \"redrawViewport\", kNoArg);\r\n\r\n    registerFlag(ss, flag::selectedNodesOnly, \"selectedNodesOnly\", kNoArg);\r\n    registerFlag(ss, flag::visibleNodesOnly, \"visibleNodesOnly\", kNoArg);\r\n\r\n    registerFlag(ss, flag::excludeUnusedTexcoord, \"excludeUnusedTexcoord\", kNoArg);\r\n\r\n    registerFlag(ss, flag::ignoreSegmentScaleCompensation, \"ignoreSegmentScaleCompensation\", kNoArg);\r\n\r\n    registerFlag(ss, flag::keepShapeNodes, \"keepShapeNodes\", kNoArg);\r\n    registerFlag(ss, flag::bakeScalingFactor, \"bakeScalingFactor\", kNoArg);\r\n    registerFlag(ss, flag::forceRootNode, \"forceRootNode\", kNoArg);\r\n    registerFlag(ss, flag::forceAnimationChannels, \"forceAnimationChannels\", kNoArg);\r\n    registerFlag(ss, flag::forceAnimationSampling, \"forceAnimationSampling\", kNoArg);\r\n\r\n    registerFlag(ss, flag::hashBufferURIs, \"hashBufferURI\", kNoArg);\r\n    registerFlag(ss, flag::niceBufferURIs, \"niceBufferURIs\", kNoArg);\r\n\r\n    registerFlag(ss, flag::convertUnsupportedImages, \"convertUnsupportedImages\", kNoArg);\r\n    registerFlag(ss, flag::reportSkewedInverseBindMatrices, \"reportSkewedInverseBindMatrices\", kNoArg);\r\n    registerFlag(ss, flag::clearOutputWindow, \"clearOutputWindow\", kNoArg);\r\n\r\n    registerFlag(ss, flag::cameras, \"cameras\", true, kString);\r\n\r\n    registerFlag(ss, flag::constantTranslationThreshold, \"constantTranslationThreshold\", kDouble);\r\n    registerFlag(ss, flag::constantRotationThreshold, \"constantRotationThreshold\", kDouble);\r\n    registerFlag(ss, flag::constantScalingThreshold, \"constantScalingThreshold\", kDouble);\r\n    registerFlag(ss, flag::constantWeightsThreshold, \"constantWeightsThreshold\", kDouble);\r\n\r\n    registerFlag(ss, flag::posPrecision, \"posPrecision\", kDouble);\r\n    registerFlag(ss, flag::dirPrecision, \"dirPrecision\", kDouble);\r\n    registerFlag(ss, flag::colPrecision, \"colPrecision\", kDouble);\r\n    registerFlag(ss, flag::texPrecision, \"texPrecision\", kDouble);\r\n    registerFlag(ss, flag::sclPrecision, \"sclPrecision\", kDouble);\r\n    registerFlag(ss, flag::matPrecision, \"matPrecision\", kDouble);\r\n\r\n    registerFlag(ss, flag::keepObjectNamespace, \"keepMayaNamespaces\", kNoArg);\r\n\r\n    m_usage = ss.str();\r\n}\r\n\r\nSyntaxFactory::~SyntaxFactory() = default;\r\n\r\nconst SyntaxFactory &SyntaxFactory::get() {\r\n    static SyntaxFactory syntax;\r\n    return syntax;\r\n}\r\n\r\nMSyntax SyntaxFactory::createSyntax() {\r\n    const MSyntax &s = get();\r\n    return s;\r\n}\r\n\r\nvoid SyntaxFactory::registerFlag(std::stringstream &ss, const char *shortName, const char *longName, const MArgType argType1) {\r\n    registerFlag(ss, shortName, longName, false, argType1);\r\n}\r\n\r\nvoid SyntaxFactory::registerFlag(std::stringstream &ss, const char *shortName, const char *longName, const bool isMultiUse, const MArgType argType1) {\r\n    // short-name should be unique\r\n    assert(m_argNames.find(shortName) == m_argNames.end());\r\n\r\n    m_argNames[shortName] = longName;\r\n\r\n    auto status = addFlag(shortName, longName, argType1);\r\n    THROW_ON_FAILURE(status);\r\n\r\n    if (isMultiUse) {\r\n        makeFlagMultiUse(shortName);\r\n    }\r\n\r\n    const auto name1 = getArgTypeName(argType1);\r\n\r\n    ss << \"-\" << std::setw(5) << std::left << shortName << longName;\r\n\r\n    if (name1) {\r\n        ss << \": \" << name1;\r\n    }\r\n\r\n    if (isMultiUse) {\r\n        ss << \"+\";\r\n    }\r\n\r\n    ss << endl;\r\n\r\n    ss.flush();\r\n}\r\n\r\nclass ArgChecker {\r\n  public:\r\n    ArgChecker(const MSyntax &syntax, const MArgList &argList, MStatus &status) : adb(syntax, argList, &status) {\r\n        // TODO: How to provide more error information about what arguments are\r\n        // wrong?\r\n        throwOnFailure(status, \"Invalid arguments\");\r\n    }\r\n\r\n    void getObjects(MSelectionList &selection) const {\r\n        throwOnFailure(adb.getObjects(selection), \"failed to get selection\");\r\n\r\n        if (selection.length() < 1)\r\n            throwOnFailure(MStatus::kInvalidParameter, \"At least one object must be selected or passed to \"\r\n                                                       \"the command\");\r\n    }\r\n\r\n    MeshSemanticSet getSemanticSet(const char *shortName, const Semantic::SemanticKinds &defaultKinds) const {\r\n        MeshSemanticSet semantics;\r\n\r\n        // Always include position\r\n        semantics.set(Semantic::POSITION, true);\r\n\r\n        MString attrs;\r\n        if (optional(shortName, attrs)) {\r\n            MStringArray parts;\r\n            const auto status = attrs.split('|', parts);\r\n            throwOnArgument(status, shortName);\r\n            for (auto i = 0U; i < parts.length(); ++i) {\r\n                const auto kind = Semantic::parse(parts[i].asChar());\r\n                semantics[kind] = true;\r\n            }\r\n        } else {\r\n            for (auto kind : defaultKinds) {\r\n                semantics[kind] = true;\r\n            }\r\n        }\r\n\r\n        return semantics;\r\n    }\r\n\r\n    bool isFlagSet(const char *shortName) const {\r\n        MStatus status;\r\n        const auto result = adb.isFlagSet(shortName, &status);\r\n        throwOnArgument(status, shortName);\r\n        return result;\r\n    }\r\n\r\n    int flagUsageCount(const char *shortName) const { return adb.numberOfFlagUses(shortName); }\r\n\r\n    template <typename T> void required(const char *shortName, T &value, const int flagIndex = 0, const int componentIndex = 0) const {\r\n        MStatus status;\r\n\r\n        if (!isFlagSet(shortName))\r\n            throwInvalid(shortName, \"Missing argument\");\r\n\r\n        if (flagUsageCount(shortName) == 1) {\r\n            status = adb.getFlagArgument(shortName, componentIndex, value);\r\n            throwOnArgument(status, shortName, \"Failed to get required argument\");\r\n        } else {\r\n            MArgList args;\r\n            status = adb.getFlagArgumentList(shortName, flagIndex, args);\r\n            throwOnArgument(status, shortName, formatted(\"Failed to get required multi-flag #%d argument\", flagIndex).c_str());\r\n            status = args.get(componentIndex, value);\r\n            throwOnArgument(status, shortName, formatted(\"Failed to get required multi-flag #%d argument value\", flagIndex).c_str());\r\n        }\r\n    }\r\n\r\n    template <typename T> bool optional(const char *shortName, T &value, const int flagIndex = 0, const int componentIndex = 0) const {\r\n        if (!adb.isFlagSet(shortName))\r\n            return false;\r\n\r\n        MStatus status;\r\n\r\n        if (flagUsageCount(shortName) == 1) {\r\n            status = adb.getFlagArgument(shortName, componentIndex, value);\r\n            throwOnArgument(status, shortName, \"Failed to get optional argument\");\r\n        } else {\r\n            MArgList args;\r\n            status = adb.getFlagArgumentList(shortName, flagIndex, args);\r\n            throwOnArgument(status, shortName, formatted(\"Failed to get optional multi-flag #%d argument\", flagIndex).c_str());\r\n            status = args.get(componentIndex, value);\r\n            throwOnArgument(status, shortName, formatted(\"Failed to get optional multi-flag #%d argument value\", flagIndex).c_str());\r\n        }\r\n\r\n        return true;\r\n    }\r\n\r\n    bool optional(const char *shortName, float &value) const {\r\n        double temp;\r\n        if (!optional(shortName, temp))\r\n            return false;\r\n        value = static_cast<float>(temp);\r\n        return true;\r\n    }\r\n\r\n    bool optional(const char *shortName, MSelectionList &list, int argIndex = 0) const {\r\n        if (!adb.isFlagSet(shortName))\r\n            return false;\r\n\r\n        adb.getFlagArgument(shortName, argIndex, list);\r\n        return true;\r\n    }\r\n\r\n    std::unique_ptr<IndentableStream> getOutputStream(const char *arg, const char *outputName, const fs::path &outputFolder,\r\n                                                      std::ofstream &fileOutputStream) const {\r\n        std::ostream *out = nullptr;\r\n\r\n        if (adb.isFlagSet(arg)) {\r\n            MString argPath;\r\n            if (adb.getFlagArgument(arg, 0, argPath).error() || argPath.toLowerCase() == \"console\") {\r\n                out = &cout;\r\n            } else if (argPath.length() == 0 || argPath.substring(0, 0) == \"-\") {\r\n                throwInvalid(arg, \"requires an output filepath argument, or just \"\r\n                                  \"'console' to print to Maya's console window\");\r\n            } else {\r\n                const fs::path argumentPath(argPath.asChar());\r\n                const fs::path absolutePath = argumentPath.is_relative() ? outputFolder / argumentPath : argumentPath;\r\n\r\n                cout << prefix << \"Writing \" << outputName << \" output to file \" << absolutePath << endl;\r\n\r\n                fileOutputStream.open(absolutePath);\r\n                out = &fileOutputStream;\r\n            }\r\n        }\r\n\r\n        return out ? std::make_unique<IndentableStream>(*out) : nullptr;\r\n    }\r\n\r\n    static void throwOnFailure(const MStatus &status, const char *message) {\r\n        if (status.error()) {\r\n            const auto statusStr = status.errorString().asChar();\r\n            const auto usageStr = SyntaxFactory::get().usage();\r\n            throw MayaException(status, formatted(\"%s (%s)\\nUsage:\\n%s\", message, statusStr, usageStr));\r\n        }\r\n    }\r\n\r\n    static void throwUsage(const char *message) {\r\n        const auto usageStr = SyntaxFactory::get().usage();\r\n        throw MayaException(MStatus::kFailure, formatted(\"%s\\nUsage:\\n%s\", message, usageStr));\r\n    }\r\n\r\n    static void throwOnArgument(const MStatus &status, const char *shortArgName, const char *message = nullptr) {\r\n        if (status.error()) {\r\n            const auto longArgName = SyntaxFactory::get().longArgName(shortArgName);\r\n            const auto statusStr = status.errorString().asChar();\r\n            const auto usageStr = SyntaxFactory::get().usage();\r\n            throw MayaException(status, message ? formatted(\"-%s (-%s): %s\\nUsage:\\n%s\", shortArgName, longArgName, statusStr, usageStr)\r\n                                                : formatted(\"-%s (-%s): %s %s\\nUsage:\\n%s\", shortArgName, longArgName, message, statusStr, usageStr));\r\n        }\r\n    }\r\n\r\n    static void throwInvalid(const char *shortArgName, const char *message = \"Invalid parameter\") {\r\n        const auto longArgName = SyntaxFactory::get().longArgName(shortArgName);\r\n        const auto usageStr = SyntaxFactory::get().usage();\r\n\r\n        throw MayaException(MStatus::kInvalidParameter, formatted(\"%s -%s (%s)\\nUsage:\\n%s\", message, shortArgName, longArgName, usageStr));\r\n    }\r\n\r\n  private:\r\n    MArgDatabase adb;\r\n};\r\n\r\nArguments::Arguments(const MArgList &args, const MSyntax &syntax) {\r\n    // ReSharper disable CppExpressionWithoutSideEffects\r\n\r\n    MStatus status;\r\n    ArgChecker adb(syntax, args, status);\r\n\r\n    MSelectionList userSelection;\r\n    adb.getObjects(userSelection);\r\n\r\n    selectedNodesOnly = adb.isFlagSet(flag::selectedNodesOnly);\r\n    visibleNodesOnly = adb.isFlagSet(flag::visibleNodesOnly);\r\n\r\n    MStringArray skippedObjects;\r\n\r\n    for (uint selectionIndex = 0; selectionIndex < userSelection.length(); ++selectionIndex) {\r\n        MDagPath dagPath;\r\n        status = userSelection.getDagPath(selectionIndex, dagPath);\r\n\r\n        if (status) {\r\n            if (visibleNodesOnly && !dagPath.isVisible()) {\r\n                skippedObjects.append(dagPath.partialPathName());\r\n            } else {\r\n                select(meshShapes, cameraShapes, dagPath, !selectedNodesOnly, !visibleNodesOnly);\r\n            }\r\n        } else {\r\n            MayaException::printError(formatted(\"Failed to get DAG path of selected object #%d\\n\", selectionIndex));\r\n        }\r\n    }\r\n\r\n    if (skippedObjects.length() > 0) {\r\n        cout << prefix << \"WARNING: -visibleNodesOnly will skip \" << skippedObjects << endl;\r\n    }\r\n\r\n    adb.required(flag::outputFolder, outputFolder);\r\n    adb.optional(flag::scaleFactor, globalScaleFactor);\r\n\r\n    cleanOutputFolder = adb.isFlagSet(flag::cleanOutputFolder);\r\n\r\n    glb = adb.isFlagSet(flag::binary);\r\n\r\n    const fs::path outputFolderPath(outputFolder.asChar());\r\n    m_mayaOutputStream = adb.getOutputStream(flag::dumpMaya, \"Maya debug\", outputFolderPath, m_mayaOutputFileStream);\r\n    m_gltfOutputStream = adb.getOutputStream(flag::dumpGLTF, \"glTF debug\", outputFolderPath, m_gltfOutputFileStream);\r\n\r\n    dumpMaya = m_mayaOutputStream.get();\r\n    dumpGLTF = m_gltfOutputStream.get();\r\n    dumpAccessorComponents = adb.isFlagSet(flag::dumpAccessorComponents);\r\n\r\n    externalTextures = adb.isFlagSet(flag::externalTextures);\r\n    splitMeshAnimation = adb.isFlagSet(flag::splitMeshAnimation);\r\n    splitByReference = adb.isFlagSet(flag::splitByReference);\r\n    separateAccessorBuffers = adb.isFlagSet(flag::separateAccessorBuffers);\r\n    defaultMaterial = adb.isFlagSet(flag::defaultMaterial);\r\n    colorizeMaterials = adb.isFlagSet(flag::colorizeMaterials);\r\n    skipStandardMaterials = adb.isFlagSet(flag::skipStandardMaterials);\r\n    skipMaterialTextures = adb.isFlagSet(flag::skipMaterialTextures);\r\n\r\n    force32bitIndices = adb.isFlagSet(flag::force32bitIndices);\r\n    disableNameAssignment = adb.isFlagSet(flag::disableNameAssignment);\r\n    keepObjectNamespace = adb.isFlagSet(flag::keepObjectNamespace);\r\n    skipSkinClusters = adb.isFlagSet(flag::skipSkinClusters);\r\n    skipBlendShapes = adb.isFlagSet(flag::skipBlendShapes);\r\n    redrawViewport = adb.isFlagSet(flag::redrawViewport);\r\n    excludeUnusedTexcoord = adb.isFlagSet(flag::excludeUnusedTexcoord);\r\n    ignoreSegmentScaleCompensation = adb.isFlagSet(flag::ignoreSegmentScaleCompensation);\r\n    keepShapeNodes = adb.isFlagSet(flag::keepShapeNodes);\r\n    bakeScalingFactor = adb.isFlagSet(flag::bakeScalingFactor);\r\n    forceRootNode = adb.isFlagSet(flag::forceRootNode);\r\n    forceAnimationChannels = adb.isFlagSet(flag::forceAnimationChannels);\r\n    forceAnimationSampling = adb.isFlagSet(flag::forceAnimationSampling);\r\n    hashBufferURIs = adb.isFlagSet(flag::hashBufferURIs);\r\n    niceBufferURIs = adb.isFlagSet(flag::niceBufferURIs);\r\n    convertUnsupportedImages = adb.isFlagSet(flag::convertUnsupportedImages);\r\n    reportSkewedInverseBindMatrices = adb.isFlagSet(flag::reportSkewedInverseBindMatrices);\r\n    clearOutputWindow = adb.isFlagSet(flag::clearOutputWindow);\r\n\r\n    adb.optional(flag::globalOpacityFactor, opacityFactor);\r\n\r\n    adb.optional(flag::constantTranslationThreshold, constantTranslationThreshold);\r\n    adb.optional(flag::constantRotationThreshold, constantRotationThreshold);\r\n    adb.optional(flag::constantScalingThreshold, constantScalingThreshold);\r\n    adb.optional(flag::constantWeightsThreshold, constantWeightsThreshold);\r\n\r\n    adb.optional(flag::posPrecision, posPrecision);\r\n    adb.optional(flag::dirPrecision, dirPrecision);\r\n    adb.optional(flag::colPrecision, colPrecision);\r\n    adb.optional(flag::texPrecision, texPrecision);\r\n    adb.optional(flag::sclPrecision, sclPrecision);\r\n    adb.optional(flag::matPrecision, matPrecision);\r\n\r\n    if (!adb.optional(flag::sceneName, sceneName)) {\r\n        // Use filename without extension of current scene file.\r\n        MFileIO fileIO;\r\n        const auto currentFilePath = MFileIO::currentFile();\r\n\r\n        MFileObject fileObj;\r\n        fileObj.setRawFullName(currentFilePath);\r\n\r\n        // Remove extension from filename. I really miss C#!\r\n        std::string fileName(fileObj.resolvedName().asChar());\r\n\r\n        const auto lastindex = fileName.find_last_of('.');\r\n        sceneName = fileName.substr(0, lastindex).c_str();\r\n    }\r\n\r\n    mikkelsenTangentAngularThreshold = adb.isFlagSet(flag::mikkelsenTangentSpace) ? 180.0f : 0.0f;\r\n    adb.optional(flag::mikkelsenTangentAngularThreshold, mikkelsenTangentAngularThreshold);\r\n\r\n    debugTangentVectors = adb.isFlagSet(flag::debugTangentVectors);\r\n    debugNormalVectors = adb.isFlagSet(flag::debugNormalVectors);\r\n\r\n    adb.optional(flag::detectStepAnimations, detectStepAnimations);\r\n    adb.optional(flag::debugVectorLength, debugVectorLength);\r\n    adb.optional(flag::copyright, copyright);\r\n\r\n    adb.optional(flag::gltfFileExtension, gltfFileExtension);\r\n    adb.optional(flag::glbFileExtension, glbFileExtension);\r\n\r\n    // Parse mesh deformers to ignore\r\n    const auto deformerNameCount = adb.flagUsageCount(flag::ignoreMeshDeformers);\r\n    for (auto deformerNameIndex = 0; deformerNameIndex < deformerNameCount; ++deformerNameIndex) {\r\n        MString deformerName;\r\n        adb.required(flag::ignoreMeshDeformers, deformerName, deformerNameIndex);\r\n        ignoreMeshDeformers.add(deformerName);\r\n    }\r\n\r\n    // Parse mesh primitive attributes\r\n    meshPrimitiveAttributes = adb.getSemanticSet(flag::meshPrimitiveAttributes, Semantic::kinds());\r\n    blendPrimitiveAttributes = adb.getSemanticSet(flag::blendPrimitiveAttributes, Semantic::blendShapeKinds());\r\n\r\n    // Parse animation clips\r\n    const auto clipCount = adb.flagUsageCount(flag::animationClipName);\r\n    animationClips.reserve(clipCount);\r\n\r\n    initialValuesTime = clipCount > 0 ? MTime(0, MTime::kSeconds) : MAnimControl::currentTime();\r\n    adb.optional(flag::initialValuesTime, initialValuesTime);\r\n    skinUsePreBindMatrixAndMesh = adb.isFlagSet(flag::skinUsePreBindMatrixAndMesh);\r\n\r\n    const auto fpsCount = adb.flagUsageCount(flag::animationClipFrameRate);\r\n\r\n    const auto stepDetectSampleCount = getStepDetectSampleCount();\r\n\r\n    for (int clipIndex = 0; clipIndex < clipCount; ++clipIndex) {\r\n        double fps;\r\n        adb.required(flag::animationClipFrameRate, fps, fpsCount == 1 ? 0 : clipIndex);\r\n\r\n        MString name;\r\n        adb.required(flag::animationClipName, name, clipIndex);\r\n\r\n        MTime start;\r\n        adb.required(flag::animationClipStartTime, start, clipIndex);\r\n\r\n        MTime end;\r\n        adb.required(flag::animationClipEndTime, end, clipIndex);\r\n\r\n        animationClips.emplace_back(name.asChar(), start, end, fps, stepDetectSampleCount);\r\n    }\r\n\r\n    // Sort clips by starting time.\r\n    std::sort(animationClips.begin(), animationClips.end(),\r\n              [](const AnimClipArg &left, const AnimClipArg &right) { return left.startTime < right.endTime; });\r\n\r\n    // Print the animation clips\r\n    for (const auto &clip : animationClips) {\r\n        cout << prefix << \"Exporting clip \" << clip.name << \", start:\" << clip.startTime << \", end: \" << clip.endTime\r\n             << \", duration:\" << clip.duration() << \", frames: \" << clip.frameCount() << \", rate: \" << clip.framesPerSecond << \"fps\" << endl;\r\n    }\r\n\r\n    // Get extra cameras to export\r\n    const auto extraCameraCount = adb.flagUsageCount(flag::cameras);\r\n\r\n    for (auto flagIndex = 0; flagIndex < extraCameraCount; ++flagIndex) {\r\n        MString cameraPattern;\r\n        if (!adb.optional(flag::cameras, cameraPattern, flagIndex)) {\r\n            continue;\r\n        }\r\n\r\n        MSelectionList cameraSelection;\r\n        if (!cameraSelection.add(cameraPattern)) {\r\n            cerr << prefix << \"Skipping \" << cameraPattern << \", it doesn't match any object\" << endl;\r\n            continue;\r\n        }\r\n\r\n        for (unsigned i = 0; i < cameraSelection.length(); ++i) {\r\n            MDagPath dagPath;\r\n            if (!cameraSelection.getDagPath(i, dagPath)) {\r\n                cerr << prefix << \"Skipping \" << cameraPattern << \" matched object #\" << i << endl;\r\n                continue;\r\n            }\r\n\r\n            if (!dagPath.hasFn(MFn::kTransform)) {\r\n                cerr << prefix << \"Skipping \" << dagPath.partialPathName() << \", it is not a camera transform\" << endl;\r\n                continue;\r\n            }\r\n\r\n            unsigned shapeCount;\r\n            status = dagPath.numberOfShapesDirectlyBelow(shapeCount);\r\n            if (!status) {\r\n                cerr << prefix << \"Skipping \" << dagPath.partialPathName() << \", it has no shapes attached to it\" << endl;\r\n                continue;\r\n            }\r\n\r\n            bool foundCameraShape = false;\r\n\r\n            for (auto shapeIndex = 0U; shapeIndex < shapeCount; ++shapeIndex) {\r\n                MDagPath shapePath = dagPath;\r\n                status = shapePath.extendToShapeDirectlyBelow(shapeIndex);\r\n                if (!status)\r\n                    continue;\r\n\r\n                MFnCamera camera(shapePath, &status);\r\n                if (!status)\r\n                    continue;\r\n\r\n                cameraShapes.insert(shapePath);\r\n                foundCameraShape = true;\r\n            }\r\n\r\n            if (!foundCameraShape) {\r\n                cerr << prefix << \"Skipping \" << dagPath.partialPathName() << \", it has no cameras attached to it\" << endl;\r\n                continue;\r\n            }\r\n        }\r\n    }\r\n\r\n    // for (int i = 0; i < cameraCount; ++i)\r\n    //{\r\n    //    MObject camera;\r\n    //    adb.required(flag::cameras, camera, i);\r\n    //    cameras.add(camera);\r\n    //}\r\n\r\n    cout << prefix << \"Exporting shapes:\";\r\n    for (auto &path : meshShapes) {\r\n        cout << \" \" << path.partialPathName();\r\n    }\r\n    cout << endl;\r\n\r\n    cout << prefix << \"Exporting cameras:\";\r\n    for (auto &path : cameraShapes) {\r\n        cout << \" \" << path.partialPathName();\r\n    }\r\n    cout << endl;\r\n\r\n    cout << prefix << \"Exporting to \" << outputFolder << \"/\" << sceneName << \"...\" << endl;\r\n}\r\n\r\nArguments::~Arguments() {\r\n    if (m_mayaOutputFileStream.is_open()) {\r\n        m_mayaOutputFileStream.flush();\r\n        m_mayaOutputFileStream.close();\r\n    }\r\n\r\n    if (m_gltfOutputFileStream.is_open()) {\r\n        m_gltfOutputFileStream.flush();\r\n        m_gltfOutputFileStream.close();\r\n    }\r\n}\r\n\r\nstd::string Arguments::assignName(GLTF::Object &glObj, const MDagPath &dagPath, const MString &suffix) const {\r\n    MStatus status;\r\n    auto obj = dagPath.node(&status);\r\n    THROW_ON_FAILURE(status)\r\n\r\n    const MFnDependencyNode node(obj, &status);\r\n    THROW_ON_FAILURE(status)\r\n\r\n    return assignName(glObj, node, suffix);\r\n}\r\n\r\nstd::string Arguments::assignName(GLTF::Object &glObj, const MFnDependencyNode &node, const MString &suffix) const {\r\n    MStatus status;\r\n\r\n    auto name = node.name(&status);\r\n    THROW_ON_FAILURE(status)\r\n\r\n    if (!keepObjectNamespace) {\r\n        const auto ns = node.parentNamespace(&status);\r\n        if (status && ns.length() > 0) {\r\n            name.substitute(ns + \":\", \"\");\r\n        }\r\n    }\r\n\r\n    name += suffix;\r\n\r\n    std::string result(name.asChar());\r\n\r\n    if (!disableNameAssignment) {\r\n        glObj.name = result;\r\n    }\r\n\r\n    return result;\r\n}\r\n\r\nvoid Arguments::select(Selection &shapeSelection, Selection &cameraSelection, const MDagPath &dagPath, const bool includeDescendants,\r\n                       const bool includeInvisibleNodes) {\r\n    MStatus status;\r\n\r\n    std::string debugName{dagPath.partialPathName().asChar()};\r\n\r\n    if (includeInvisibleNodes || dagPath.isVisible()) {\r\n        if (dagPath.hasFn(MFn::kTransform)) {\r\n            unsigned shapeCount;\r\n            status = dagPath.numberOfShapesDirectlyBelow(shapeCount);\r\n\r\n            if (status) {\r\n                for (auto shapeIndex = 0U; shapeIndex < shapeCount; ++shapeIndex) {\r\n                    MDagPath shapePath = dagPath;\r\n                    status = shapePath.extendToShapeDirectlyBelow(shapeIndex);\r\n                    if (status) {\r\n                        MFnMesh mesh(shapePath, &status);\r\n                        // Do not include intermediate meshes\r\n                        if (status && !mesh.isIntermediateObject()) {\r\n                            shapeSelection.insert(shapePath);\r\n                        }\r\n\r\n                        MFnCamera camera(shapePath, &status);\r\n                        // Do not include intermediate cameras\r\n                        if (status && !camera.isIntermediateObject()) {\r\n                            cameraSelection.insert(shapePath);\r\n                        }\r\n                    }\r\n                }\r\n            }\r\n        } else if (dagPath.hasFn(MFn::kMesh)) {\r\n            MFnMesh mesh(dagPath, &status);\r\n            // Do not include intermediate meshes\r\n            if (status && !mesh.isIntermediateObject()) {\r\n                MDagPath shapePath;\r\n                status = mesh.getPath(shapePath);\r\n                if (status) {\r\n                    shapeSelection.insert(shapePath);\r\n                } else {\r\n                    cerr << prefix << \"Failed to get DAG path of \" << mesh.partialPathName() << endl;\r\n                }\r\n            }\r\n        } else if (dagPath.hasFn(MFn::kCamera)) {\r\n            MFnCamera camera(dagPath, &status);\r\n            // Do not include intermediate cameras\r\n            if (status && !camera.isIntermediateObject()) {\r\n                MDagPath cameraPath;\r\n                status = camera.getPath(cameraPath);\r\n                if (status) {\r\n                    cameraSelection.insert(cameraPath);\r\n                } else {\r\n                    cerr << prefix << \"Failed to get DAG path of \" << camera.partialPathName() << endl;\r\n                }\r\n            }\r\n        }\r\n\r\n        if (includeDescendants) {\r\n            const auto childCount = dagPath.childCount(&status);\r\n            THROW_ON_FAILURE(status);\r\n\r\n            for (auto childIndex = 0U; childIndex < childCount; ++childIndex) {\r\n                const auto child = dagPath.child(childIndex, &status);\r\n                MDagPath childDagPath = dagPath;\r\n                status = childDagPath.push(child);\r\n                THROW_ON_FAILURE(status);\r\n                select(shapeSelection, cameraSelection, childDagPath, includeDescendants, includeInvisibleNodes);\r\n            }\r\n        }\r\n    }\r\n}\r\n\r\nMTime AnimClipArg::duration() const { return MTime(frameCount() * (1.0 / framesPerSecond), MTime::kSeconds); }\r\n\r\nint AnimClipArg::frameCount() const {\r\n    const auto exactStartFrame = startTime.as(MTime::kSeconds) * framesPerSecond;\r\n    const auto exactEndFrame = endTime.as(MTime::kSeconds) * framesPerSecond;\r\n    const auto startFrame = round(exactStartFrame);\r\n    const auto endFrame = round(exactEndFrame);\r\n    const auto count = static_cast<int>(endFrame - startFrame) + 1;\r\n    return count;\r\n}\r\n"
  },
  {
    "path": "src/Arguments.h",
    "content": "#pragma once\r\n\r\n#include \"IndentableStream.h\"\r\n#include \"sceneTypes.h\"\r\n\r\nclass SyntaxFactory : MSyntax {\r\n  public:\r\n    SyntaxFactory();\r\n    ~SyntaxFactory();\r\n\r\n    const char *usage() const {\r\n        const auto result = m_usage.c_str();\r\n        return result;\r\n    }\r\n\r\n    const char *longArgName(const char *shortName) const {\r\n        const auto longName = m_argNames.at(shortName);\r\n        return longName;\r\n    }\r\n\r\n    static const SyntaxFactory &get();\r\n    static MSyntax createSyntax();\r\n\r\n  private:\r\n    DISALLOW_COPY_MOVE_ASSIGN(SyntaxFactory);\r\n\r\n    std::map<const char *, const char *> m_argNames;\r\n    std::string m_usage;\r\n\r\n    void registerFlag(std::stringstream &ss, const char *shortName, const char *longName, bool isMultiUse, MArgType argType1 = kNoArg);\r\n    void registerFlag(std::stringstream &ss, const char *shortName, const char *longName, MArgType argType1 = kNoArg);\r\n};\r\n\r\nstruct AnimClipArg {\r\n    AnimClipArg(std::string name, const MTime &startTime, const MTime &endTime, const double framesPerSecond, const int stepDetectSampleCount)\r\n        : name{std::move(name)}, startTime{startTime}, endTime{endTime}, framesPerSecond{framesPerSecond}, stepDetectSampleCount(stepDetectSampleCount) {}\r\n\r\n    DEFAULT_COPY_MOVE_ASSIGN_DTOR(AnimClipArg);\r\n\r\n    std::string name;\r\n    MTime startTime;\r\n    MTime endTime;\r\n    double framesPerSecond;\r\n    int stepDetectSampleCount;\r\n\r\n    MTime duration() const;\r\n    int frameCount() const;\r\n};\r\n\r\nstruct MDagPathComparer {\r\n    bool operator()(const MDagPath &a, const MDagPath &b) const { return strcmp(a.fullPathName().asChar(), b.fullPathName().asChar()) < 0; }\r\n};\r\n\r\ntypedef std::set<MDagPath, MDagPathComparer> Selection;\r\n\r\nclass Arguments {\r\n  public:\r\n    Arguments(const MArgList &args, const MSyntax &syntax);\r\n    ~Arguments();\r\n\r\n    MString sceneName;\r\n    MString outputFolder;\r\n\r\n    /** Mesh shapes to export */\r\n    Selection meshShapes;\r\n\r\n    /** Camera shapes to export */\r\n    Selection cameraShapes;\r\n\r\n    /** Before exporting, delete the output folder, recursively? */\r\n    bool cleanOutputFolder = false;\r\n\r\n    /* The extension to use for glTF files. Some viewers require lower-case\r\n     * gltf, others might need the official glTF */\r\n    MString gltfFileExtension = \"gltf\";\r\n\r\n    /* The extension to use for glb files. */\r\n    MString glbFileExtension = \"glb\";\r\n\r\n    /** Outputs a single binary GLB file */\r\n    bool glb = false;\r\n\r\n    /** Split the animation and mesh into two combined buffers? */\r\n    bool splitMeshAnimation = false;\r\n\r\n    /** Split the buffers per reference? Currently also requires\r\n     * splitMeshAnimation */\r\n    bool splitByReference = false;\r\n\r\n    /** Separate all accessors buffers? Overrides splitMeshAnimation */\r\n    bool separateAccessorBuffers = false;\r\n\r\n    /** Use nice buffer URIs instead of auto-generated ones */\r\n    bool niceBufferURIs = false;\r\n\r\n    /** Create a default material for primitives that don't have shading in\r\n     * Maya? */\r\n    bool defaultMaterial = false;\r\n\r\n    /** Assign a color with a different hue to each material, for debugging\r\n     * purposes */\r\n    bool colorizeMaterials = false;\r\n\r\n    /** Skip all non PBR materials. By default these are converted to PBR\r\n     * materials */\r\n    bool skipStandardMaterials = false;\r\n\r\n    /** Skip all material textures. Useful when exporting just an animation clip\r\n     */\r\n    bool skipMaterialTextures = false;\r\n\r\n    /** Converts unsupported image formats to PNG. By default nothing is\r\n     * converted */\r\n    bool convertUnsupportedImages = false;\r\n\r\n    /** Report skewed inverse-bind-matrix issues. glTF 2.0 does not allow these,\r\n     * but should (see issue 1507). By default no such issues are reported */\r\n    bool reportSkewedInverseBindMatrices = false;\r\n\r\n    /** Clear the output window before exporting start */\r\n    bool clearOutputWindow = false;\r\n\r\n    /** Always use 32-bit indices, even when 16-bit would be sufficient */\r\n    bool force32bitIndices = false;\r\n\r\n    /** If non-null, dump the Maya intermediate objects to the stream */\r\n    IndentableStream *dumpMaya;\r\n\r\n    /** If non-null, dump the GLTF JSON to the stream */\r\n    IndentableStream *dumpGLTF;\r\n\r\n    /** If set, dumps all non-combined accessor components as text files, each\r\n     * row one component, for debugging */\r\n    bool dumpAccessorComponents = false;\r\n\r\n    /** When exporting as GLB, don't embed textures in the GLB file? */\r\n    bool externalTextures = false;\r\n\r\n    /** By default the Maya node names are assigned to the GLTF node names */\r\n    bool disableNameAssignment = false;\r\n\r\n    /** By default we remove the Maya object namespace from GLTF node names  */\r\n    bool keepObjectNamespace = false;\r\n\r\n    /** Generate debug tangent vector lines? */\r\n    bool debugTangentVectors = false;\r\n\r\n    /** Generate debug normal vector lines? */\r\n    bool debugNormalVectors = false;\r\n\r\n    /** The length of the debugging vectors */\r\n    float debugVectorLength = 0.1f;\r\n\r\n    /** When non-0, instead of using Maya's tangents, use tangents as computed\r\n     * in Morten Mikkelsen's thesis\r\n     * http://image.diku.dk/projects/media/morten.mikkelsen.08.pdf*/\r\n    float mikkelsenTangentAngularThreshold = 0;\r\n\r\n    /** The scale factor to apply to the vertex positions */\r\n    float globalScaleFactor = 1;\r\n\r\n    /** The opacity factor to apply to the material */\r\n    float opacityFactor = 1;\r\n\r\n    /** The semantics (aka glTF attributes) that should be exported for the\r\n     * mains. Defaults to all semantics contained in the mesh */\r\n    MeshSemanticSet meshPrimitiveAttributes;\r\n\r\n    /** The semantics (aka glTF attributes) that should be exported for blend\r\n     * shapes. Defaults to NORMAL and TANGENT */\r\n    MeshSemanticSet blendPrimitiveAttributes;\r\n\r\n    /** Exclude TEXCOORD semantics (aka glTF attributes) when the mesh primitive\r\n     * doesn't have textures? By default TEXCOORD attributes are always included\r\n     */\r\n    bool excludeUnusedTexcoord = false;\r\n\r\n    /** Ignore all skin clusters */\r\n    bool skipSkinClusters = false;\r\n\r\n    /** Ignore all blend shapes */\r\n    bool skipBlendShapes = false;\r\n\r\n    /** Ignore these mesh deformers. By default the deformer closest to the\r\n     * displayed mesh is used. */\r\n    MSelectionList ignoreMeshDeformers;\r\n\r\n    /** Ignore segment scale compensation */\r\n    bool ignoreSegmentScaleCompensation = false;\r\n\r\n    /** Keep GLTF shape nodes that are the only child of their parent transform\r\n     * node */\r\n    bool keepShapeNodes = false;\r\n\r\n    /** Bake scaling factor by scaling vertices and positions? By default a root\r\n     * scaling node is added instead */\r\n    bool bakeScalingFactor = false;\r\n\r\n    /** Force the creation of a root node, even when the scaling factor is 1, in\r\n     * which case an extra root node is not always needed? */\r\n    bool forceRootNode = false;\r\n\r\n    /** Force the creation of an animation channel for each node, even if the node doesn't contain any animation? */\r\n    bool forceAnimationChannels = false;\r\n\r\n    /** Force the sampling of an animation channel for each node, even if the node doesn't contain any animation? */\r\n    bool forceAnimationSampling = false;\r\n\r\n    /** Sample more frames to detect step functions in the animation? By default LINEAR interpolation is always used */\r\n    int detectStepAnimations = 0;\r\n\r\n    /** Use a hash of the buffer for its URI? Useful when exporting the same\r\n     * mesh buffer per animation scene */\r\n    bool hashBufferURIs = false;\r\n\r\n    /**\r\n     * The time where the 'initial values' of all nodes are to be found (aka\r\n     * neutral base pose) By default the current time is used, unless animation\r\n     * is used, then frame 0 is used.\r\n     */\r\n    MTime initialValuesTime;\r\n\r\n    /**\r\n     * Use the skinCluster's preBindMatrix values and input mesh for initial base bind \r\n     * instead of the visible output mesh from at initialValuesTime.\r\n     */\r\n    bool skinUsePreBindMatrixAndMesh = false;\r\n\r\n    /** Redraw the viewport while exporting? True in debug builds by default,\r\n     * false otherwise (for speed) */\r\n#ifdef _DEBUG\r\n    bool redrawViewport = true;\r\n#else\r\n    bool redrawViewport = false;\r\n#endif\r\n\r\n    /**\r\n     * Only export the directly selected nodes, not the descendants of these.\r\n     * By default all descendants are exported too.\r\n     */\r\n    bool selectedNodesOnly = false;\r\n\r\n    /** Only export visible nodes. By default invisible objects are exported\r\n     * too. */\r\n    bool visibleNodesOnly = false;\r\n\r\n    /** Consider a translation animation path as constant if all values are below this threshold */\r\n    double constantTranslationThreshold = 1e-9;\r\n\r\n    /** Consider a rotation animation path as constant if all values are below this threshold */\r\n    double constantRotationThreshold = 1e-9;\r\n\r\n    /** Consider a scaling animation path as constant if all values are below this threshold */\r\n    double constantScalingThreshold = 1e-9;\r\n\r\n    /** Consider a blend shape weight animation path as constant if all values are below this threshold */\r\n    double constantWeightsThreshold = 1e-9;\r\n\r\n    /** Export precisions */\r\n    double posPrecision = 1e9;\r\n    double dirPrecision = 1e9;\r\n    double colPrecision = 1e9;\r\n    double texPrecision = 1e9;\r\n    double sclPrecision = 1e9;\r\n    double matPrecision = 1e9;\r\n\r\n    std::vector<AnimClipArg> animationClips;\r\n\r\n    /** Copyright text of the exported file */\r\n    MString copyright;\r\n\r\n    std::string assignName(GLTF::Object &glObj, const MDagPath &dagPath, const MString &suffix) const;\r\n    std::string assignName(GLTF::Object &glObj, const MFnDependencyNode &node, const MString &suffix) const;\r\n\r\n    std::string makeName(const std::string &name) const { return disableNameAssignment ? \"\" : name; }\r\n\r\n    float getBakeScaleFactor() const { return bakeScalingFactor ? globalScaleFactor : 1; }\r\n    float getRootScaleFactor() const { return bakeScalingFactor ? 1 : globalScaleFactor; }\r\n\r\n    int getStepDetectSampleCount() const { return detectStepAnimations > 0 ? detectStepAnimations : 1; }\r\n\r\n  private:\r\n    DISALLOW_COPY_MOVE_ASSIGN(Arguments);\r\n\r\n    static void select(Selection &shapeSelection, Selection &cameraSelection, const MDagPath &dagPath, bool includeDescendants,\r\n                       bool visibleNodesOnly);\r\n\r\n    std::ofstream m_mayaOutputFileStream;\r\n    std::ofstream m_gltfOutputFileStream;\r\n\r\n    std::unique_ptr<IndentableStream> m_mayaOutputStream;\r\n    std::unique_ptr<IndentableStream> m_gltfOutputStream;\r\n};\r\n"
  },
  {
    "path": "src/BasicTypes.h",
    "content": "#pragma once\n\ntypedef uint8_t byte;\ntypedef uint16_t ushort;\n\ntypedef std::array<float, 1> Float1;\ntypedef std::array<float, 2> Float2;\ntypedef std::array<float, 3> Float3;\ntypedef std::array<float, 4> Float4;\n\ntypedef std::array<Float4, 4> Float4x4;\n\ntypedef std::vector<float> FloatVector;\ntypedef std::vector<Float2> Float2Vector;\n\ntemplate <typename> struct array_size;\n\ntemplate <typename T, size_t N> struct array_size<std::array<T, N>> {\n    static size_t const size = N;\n};\n\ntemplate <typename T, size_t N>\nconst std::array<T, N> &&reinterpret_array(const T (&items)[N]) {\n    return std::move(*reinterpret_cast<const std::array<T, N> *>(items));\n}\n\ninline double roundTo(const double v, const double precision) {\n    return round(v * precision) / precision;\n}\n\ninline float roundToFloat(const double v, const double precision) {\n    const auto f = static_cast<float>(roundTo(v, precision));\n\n    // Convert -0 to 0.  Needed to get consistent output when hashing the binary\n    // buffers\n    return f == -0 ? +0 : f;\n}\n\ninline void makeValidFilename(std::string &filename) {\n    std::replace_if(filename.begin(), filename.end(), ::ispunct, '_');\n}\n"
  },
  {
    "path": "src/DagHelper.cpp",
    "content": "#include \"externals.h\"\n\n#include \"DagHelper.h\"\n#include \"MayaException.h\"\n\n/*\nCopyright (C) 2005-2007 Feeling Software Inc.\nPortions of the code are:\nCopyright (C) 2005-2007 Sony Computer Entertainment America\nCopyright (C) 2004-2005 Alias Systems Corp.\n\nMIT License: http://www.opensource.org/licenses/mit-license.php\n*/\n\nMObject DagHelper::getObjectByName(const MString &name) {\n    MSelectionList selection;\n    THROW_ON_FAILURE(selection.add(name));\n\n    MObject o;\n    THROW_ON_FAILURE(selection.getDependNode(0, o));\n    return o;\n}\n\nMObject DagHelper::getObjectByName(const std::string &name) {\n    return getObjectByName(MString(name.c_str()));\n}\n\nMObject DagHelper::findNodeConnectedTo(const MPlug &plug) {\n    MStatus status;\n    MPlugArray connections;\n    const auto hasConnections =\n        plug.connectedTo(connections, true, true, &status);\n    THROW_ON_FAILURE(status);\n\n    return hasConnections && connections.length() > 0 ? connections[0].node()\n                                                      : MObject::kNullObj;\n}\n\nMObject DagHelper::findNodeConnectedTo(const MObject &node,\n                                       const MString &attribute) {\n    MPlug plug;\n    return getPlugConnectedTo(node, attribute, plug) ? plug.node()\n                                                     : MObject::kNullObj;\n}\n\nMStatus DagHelper::getPlugConnectedTo(const MObject &node,\n                                      const MString &attribute,\n                                      MPlug &connectedPlug) {\n    MStatus status;\n    MFnDependencyNode dgFn(node, &status);\n    RETURN_ON_FAILURE(status);\n\n    auto plug = dgFn.findPlug(attribute, true, &status);\n\n    if (status && plug.isConnected()) {\n        // Get the connection - there can be at most one input to a plug\n        MPlugArray connections;\n        plug.connectedTo(connections, true, true, &status);\n        RETURN_ON_FAILURE(status);\n\n        assert(connections.length() <= 1);\n        if (connections.length() > 0) {\n            connectedPlug = connections[0];\n            return MStatus::kSuccess;\n        }\n    }\n    return MStatus::kFailure;\n}\n\nMObject DagHelper::findSourceNodeConnectedTo(const MObject &node,\n                                             const MString &attribute) {\n    MStatus status;\n    MFnDependencyNode dgFn(node, &status);\n    THROW_ON_FAILURE(status);\n\n    auto plug = dgFn.findPlug(attribute, true, &status);\n\n    if (status && plug.isConnected()) {\n        // Get the connection - there can be at most one input to a plug\n        MPlugArray connections;\n        plug.connectedTo(connections, true, false, &status);\n        THROW_ON_FAILURE(status);\n\n        assert(connections.length() <= 1);\n        if (connections.length() > 0)\n            return connections[0].node();\n    }\n\n    return MObject::kNullObj;\n}\n\nMObject DagHelper::findSourceNodeConnectedTo(const MPlug &inPlug) {\n    MStatus status;\n    MPlugArray connections;\n    inPlug.connectedTo(connections, true, false, &status);\n    THROW_ON_FAILURE(status);\n\n    return connections.length() > 0 ? connections[0].node() : MObject::kNullObj;\n}\n\nMStatus DagHelper::getPlugValue(const MPlug &plug, uint32_t &value) {\n    int temp;\n    const auto status = plug.getValue(temp);\n    value = static_cast<uint32_t>(temp);\n    return status;\n}\n\nMStatus DagHelper::getPlugValue(const MPlug &plug, uint16_t &value) {\n    short temp;\n    const auto status = plug.getValue(temp);\n    value = static_cast<uint16_t>(temp);\n    return status;\n}\n\nMStatus DagHelper::getPlugValue(const MPlug &plug, uint8_t &value) {\n    char temp;\n    const auto status = plug.getValue(temp);\n    value = static_cast<uint8_t>(temp);\n    return status;\n}\n\nMStatus DagHelper::getPlugValue(const MObject &node, const char *attributeName,\n                                double &value) {\n    return getPlugValueImpl(node, attributeName, value);\n}\n\nMStatus DagHelper::getPlugValue(const MObject &node, const char *attributeName,\n                                float &value) {\n    return getPlugValueImpl(node, attributeName, value);\n}\n\nMStatus DagHelper::getPlugValue(const MObject &node, const char *attributeName,\n                                bool &value) {\n    return getPlugValueImpl(node, attributeName, value);\n}\n\nMStatus DagHelper::getPlugValue(const MObject &node, const char *attributeName,\n                                int &value) {\n    return getPlugValueImpl(node, attributeName, value);\n}\n\nMStatus DagHelper::getPlugValue(const MObject &node, const char *attributeName,\n                                MColor &value) {\n    return getPlugValueImpl(node, attributeName, value);\n}\n\nMStatus DagHelper::getPlugValue(const MPlug &plug, MColor &value) {\n    MStatus status;\n\n    const auto isCompound = plug.isCompound(&status);\n    RETURN_ON_FAILURE(status);\n\n    const auto numChildren = plug.numChildren(&status);\n    RETURN_ON_FAILURE(status);\n\n    if (isCompound && numChildren >= 3) {\n        status = plug.child(0).getValue(value.r);\n        RETURN_ON_FAILURE(status);\n\n        status = plug.child(1).getValue(value.g);\n        RETURN_ON_FAILURE(status);\n\n        status = plug.child(2).getValue(value.b);\n        RETURN_ON_FAILURE(status);\n\n        if (numChildren >= 4) {\n            status = plug.child(3).getValue(value.a);\n            RETURN_ON_FAILURE(status);\n        } else {\n            value.a = 1.0f;\n        }\n\n        return status;\n    }\n\n    return MStatus::kInvalidParameter;\n}\n\nMStatus DagHelper::getPlugValue(const MObject &node, const char *attributeName,\n                                MString &value) {\n    return getPlugValueImpl(node, attributeName, value);\n}\n\nMStatus DagHelper::getPlugValue(const MObject &node, const char *attributeName,\n                                MStringArray &value) {\n    return getPlugValueImpl(node, attributeName, value);\n}\n\nMStatus DagHelper::getPlugValue(const MPlug &plug, MStringArray &output) {\n    MStatus status;\n\n    MObject str_obj;\n    status = plug.getValue(str_obj);\n    RETURN_ON_FAILURE(status);\n\n    MFnStringArrayData f_astr(str_obj, &status);\n    RETURN_ON_FAILURE(status);\n\n    const auto len = f_astr.length(&status);\n    RETURN_ON_FAILURE(status);\n\n    for (unsigned int i = 0; i < len; ++i) {\n        const MString &val = f_astr[i];\n        status = output.append(val);\n        RETURN_ON_FAILURE(status);\n    }\n\n    return MStatus::kSuccess;\n}\n\nMStatus DagHelper::getPlugValue(const MPlug &plug, float &x, float &y) {\n    MObject obj;\n    MStatus status = plug.getValue(obj);\n    RETURN_ON_FAILURE(status);\n\n    MFnNumericData fcolor(obj, &status);\n    RETURN_ON_FAILURE(status);\n\n    return fcolor.getData(x, y);\n}\n\nMStatus DagHelper::getPlugValue(const MPlug &plug, float &x, float &y,\n                                float &z) {\n    MObject obj;\n    MStatus status = plug.getValue(obj);\n    RETURN_ON_FAILURE(status);\n\n    MFnNumericData fcolor(obj, &status);\n    RETURN_ON_FAILURE(status);\n\n    return fcolor.getData(x, y, z);\n}\n\nMStatus DagHelper::getPlugValue(const MObject &node, const char *attributeName,\n                                MVector &value) {\n    return getPlugValueImpl(node, attributeName, value);\n}\n\nMStatus DagHelper::getPlugValue(const MPlug &plug, MVector &value) {\n    MObject obj;\n    auto status = plug.getValue(obj);\n    RETURN_ON_FAILURE(status);\n\n    status = plug.getValue(obj);\n    RETURN_ON_FAILURE(status);\n\n    MFnNumericData data(obj);\n\n    double x, y, z;\n    status = data.getData(x, y, z);\n    RETURN_ON_FAILURE(status);\n\n    value = MVector(x, y, z);\n    return MStatus::kSuccess;\n}\n\nMPlug DagHelper::getChildPlug(const MPlug &parent, const MString &name) {\n    MStatus status;\n\n    const auto childCount = parent.numChildren(&status);\n    THROW_ON_FAILURE(status);\n\n    // Check shortNames first\n    for (unsigned i = 0; i < childCount; ++i) {\n        auto child = parent.child(i, &status);\n        THROW_ON_FAILURE(status);\n\n        MFnAttribute attributeFn(child.attribute(&status));\n        THROW_ON_FAILURE(status);\n\n        const auto n = attributeFn.shortName(&status);\n        THROW_ON_FAILURE(status);\n\n        if (n == name)\n            return child;\n    }\n\n    // Check longNames second, use shortNames!\n    for (unsigned i = 0; i < childCount; ++i) {\n        auto child = parent.child(i, &status);\n        THROW_ON_FAILURE(status);\n\n        MFnAttribute attributeFn(child.attribute(&status));\n        THROW_ON_FAILURE(status);\n\n        const auto n = attributeFn.name(&status);\n        THROW_ON_FAILURE(status);\n\n        if (n == name)\n            return child;\n    }\n\n    return MPlug();\n}\n\nint DagHelper::getChildPlugIndex(const MPlug &parent, const MString &name) {\n    MStatus status;\n    const auto childCount = parent.numChildren(&status);\n    CHECK_MSTATUS_AND_RETURN(status, -1);\n\n    // Check shortNames first\n    for (unsigned i = 0; i < childCount; ++i) {\n        auto child = parent.child(i, &status);\n        CHECK_MSTATUS_AND_RETURN(status, -1);\n\n        MFnAttribute attributeFn(child.attribute());\n        const auto n = attributeFn.shortName();\n        if (n == name)\n            return i;\n    }\n\n    // Check longNames second, use shortNames!\n    for (unsigned i = 0; i < childCount; ++i) {\n        auto child = parent.child(i, &status);\n        CHECK_MSTATUS_AND_RETURN(status, -1);\n\n        MFnAttribute attributeFn(child.attribute());\n        const auto n = attributeFn.name();\n        if (n == name)\n            return i;\n    }\n\n    return -1;\n}\n\nbool DagHelper::hasConnection(const MPlug &plug, const bool asSource,\n                              const bool asDestination) {\n    MStatus status;\n\n    MPlugArray plugs;\n    plug.connectedTo(plugs, asDestination, asSource, &status);\n    THROW_ON_FAILURE(status);\n\n    if (plugs.length() > 0)\n        return true;\n\n    return plug.numConnectedChildren() > 0;\n}\n\n#if 0\nbool DagHelper::getPlugConnectedTo(const MPlug& inPlug, MPlug& plug)\n{\n\tMStatus status;\n\n\tMPlugArray connections;\n\tinPlug.connectedTo(connections, true, true);\n\tif (connections.length() > 0)\n\t{\n\t\tplug = connections[0];\n\t\treturn true;\n\t}\n\n\treturn false;\n}\n\n//\n// Find a node connected to a node's array attribute\n//\nbool DagHelper::GetPlugArrayConnectedTo(const MObject& node, const MString& attribute, MPlug& connectedPlug)\n{\n\tMStatus status;\n\tMFnDependencyNode dgFn(node);\n\tMPlug plug = dgFn.findPlug(attribute, true, &status);\n\tif (status != MS::kSuccess)\n\t{\n\t\tMGlobal::displayWarning(MString(\"couldn't find plug on attribute \") +\n\t\t\tattribute + MString(\" on object \") + dgFn.name());\n\t\treturn false;\n\t}\n\n\tif (plug.numElements() < 1)\n\t{\n\t\tMGlobal::displayWarning(MString(\"plug array doesn't have any connection on attribute \") +\n\t\t\tattribute + MString(\" on object \") + dgFn.name());\n\t\treturn false;\n\t}\n\n\tMPlug firstElementPlug = plug.connectionByPhysicalIndex(0);\n\n\t// Get the connection - there can be at most one input to a plug\n\t//\n\tMPlugArray connections;\n\tfirstElementPlug.connectedTo(connections, true, true);\n\tif (connections.length() == 0)\n\t{\n\t\tMGlobal::displayWarning(MString(\"plug connected to an empty array on attribute \") +\n\t\t\tattribute + MString(\" on object \") + dgFn.name());\n\t\treturn false;\n\t}\n\n\tconnectedPlug = connections[0];\n\treturn true;\n}\n\nbool DagHelper::Connect(const MObject& source, const MString& sourceAttribute, const MObject& destination, const MString& destinationAttribute)\n{\n\tMStatus status;\n\tMFnDependencyNode srcFn(source);\n\tMFnDependencyNode destFn(destination);\n\n\tMPlug src = srcFn.findPlug(sourceAttribute, true, &status);\n\tif (status != MStatus::kSuccess) return false;\n\n\tMPlug dest = destFn.findPlug(destinationAttribute, true, &status);\n\tif (status != MStatus::kSuccess) return false;\n\n\tMDGModifier modifier;\n\tmodifier.connect(src, dest);\n\tstatus = modifier.doIt();\n\n\treturn status == MStatus::kSuccess;\n}\n\nbool DagHelper::Connect(const MObject& source, const MString& sourceAttribute, const MPlug& destination)\n{\n\tMStatus status;\n\tMFnDependencyNode srcFn(source);\n\n\tMPlug src = srcFn.findPlug(sourceAttribute, true, &status);\n\tif (status != MStatus::kSuccess) return false;\n\n\tMDGModifier modifier;\n\tmodifier.connect(src, destination);\n\tstatus = modifier.doIt();\n\n\treturn status == MStatus::kSuccess;\n}\n\nbool DagHelper::Connect(const MPlug& source, const MObject& destination, const MString& destinationAttribute)\n{\n\tMStatus status;\n\tMFnDependencyNode destFn(destination);\n\n\tMPlug dst = destFn.findPlug(destinationAttribute, true, &status);\n\tif (status != MStatus::kSuccess) return false;\n\n\tMDGModifier modifier;\n\tstatus = modifier.connect(source, dst);\n\tif (status != MStatus::kSuccess) return false;\n\tstatus = modifier.doIt();\n\n\treturn status == MStatus::kSuccess;\n}\n\nbool DagHelper::Connect(const MPlug& source, const MPlug& destination)\n{\n\tMDGModifier modifier;\n\tmodifier.connect(source, destination);\n\tMStatus status = modifier.doIt();\n\n\treturn status == MStatus::kSuccess;\n}\n\nbool DagHelper::ConnectToList(const MObject& source, const MString& sourceAttribute, const MObject& destination, const MString& destinationAttribute, int* index)\n{\n\tMStatus status;\n\tMFnDependencyNode srcFn(source);\n\n\tMPlug src = srcFn.findPlug(sourceAttribute, true, &status);\n\tif (status != MStatus::kSuccess) return false;\n\n\treturn ConnectToList(src, destination, destinationAttribute, index);\n}\n\nbool DagHelper::ConnectToList(const MPlug& source, const MObject& destination, const MString& destinationAttribute, int* _index)\n{\n\tMStatus status;\n\tMFnDependencyNode destFn(destination);\n\tMPlug dest = destFn.findPlug(destinationAttribute, true, &status);\n\tif (status != MStatus::kSuccess) return false;\n\tif (!dest.isArray()) return false;\n\n\tint index = (_index != nullptr) ? *_index : -1;\n\tif (index < 0)\n\t{\n\t\tindex = GetNextAvailableIndex(dest, (int)dest.evaluateNumElements());\n\t\tif (_index != nullptr) *_index = index;\n\t}\n\n\tMPlug d = dest.elementByLogicalIndex(index);\n\tMDGModifier modifier;\n\tmodifier.connect(source, d);\n\tstatus = modifier.doIt();\n\treturn status == MStatus::kSuccess;\n}\n\nint DagHelper::GetNextAvailableIndex(const MObject& object, const MString& attribute, int startIndex)\n{\n\tMPlug p = MFnDependencyNode(object).findPlug(attribute);\n\tif (p.node().isNull()) return -1;\n\treturn GetNextAvailableIndex(p, startIndex);\n}\n\nint DagHelper::GetNextAvailableIndex(const MPlug& p, int startIndex)\n{\n\tif (startIndex < 0) startIndex = 0;\n\n\t// Look for the next available plug\n\tfor (uint i = (uint)startIndex; i < (uint)startIndex + 100; ++i)\n\t{\n\t\tMPlug possibleDestination = p.elementByLogicalIndex(i);\n\t\tif (!DagHelper::HasConnection(possibleDestination))\n\t\t{\n\t\t\treturn i;\n\t\t}\n\t}\n\treturn -1;\n}\n\n/*\n// Retrieve the bind pose for a controller/joint pair\n//\nMMatrix DagHelper::GetBindPoseInverse(const MObject& controller, const MObject& influence)\n{\nMStatus status;\nif (controller.apiType() == MFn::kSkinClusterFilter)\n{\nMFnSkinCluster controllerFn(controller);\n\n// Find the correct index for the pre-bind matrix\nuint index = controllerFn.indexForInfluenceObject(MDagPath::getAPathTo(influence), &status);\nif (status != MStatus::kSuccess) return MMatrix::identity;\n\nMPlug preBindMatrixPlug = controllerFn.findPlug(\"bindPreMatrix\", true, &status);\npreBindMatrixPlug = preBindMatrixPlug.elementByLogicalIndex(index, &status);\nif (status != MStatus::kSuccess) return MMatrix::identity;\n\n// Get the plug's matrix\nMMatrix ret;\nif (!DagHelper::getPlugValue(preBindMatrixPlug, ret)) return MMatrix::identity;\nreturn ret;\n}\nelse if (controller.apiType() == MFn::kJointCluster)\n{\nMMatrix ret;\nDagHelper::getPlugValue(influence, \"bindPose\", ret);\nreturn ret.inverse();\n}\nelse return MMatrix::identity;\n}\n\n// set the bind pose for a transform\n//\nMStatus DagHelper::SetBindPoseInverse(const MObject& node, const MMatrix& bindPoseInverse)\n{\nMStatus status;\nMFnDependencyNode dgFn(node);\nMPlug bindPosePlug = dgFn.findPlug(\"bindPose\", true, &status);\nif (status != MS::kSuccess)\n{\nMGlobal::displayWarning(MString(\"No bindPose found on node \") + dgFn.name());\nreturn status;\n}\n\nMFnMatrixData matrixFn;\nMObject val = matrixFn.create(bindPoseInverse.inverse(), &status);\nMObject invval = matrixFn.create(bindPoseInverse, &status);\nif (status != MS::kSuccess)\n{\nMGlobal::displayWarning(MString(\"Error setting bindPose on node \") + dgFn.name());\nreturn status;\n}\n\n// set the bind pose on the joint itself\n//\nbindPosePlug.setValue(val);\n\n// Now, perhaps more significantly, see if there's a\n// skinCluster using this bone and update its bind\n// pose (as the joint bind pose is not connected to\n// the skin - it's set at bind time from the joint's\n// current position, and our importer may not want to\n// disturb the current scene state just to put bones\n// in a bind position before creating skin clusters)\n//\nMObject _node(node);\nMItDependencyGraph it(_node, MFn::kSkinClusterFilter);\nwhile (!it.isDone())\n{\nMPlug plug = it.thisPlug();\nunsigned int idx = plug.logicalIndex();\nMFnDependencyNode skinFn(plug.node());\nMPlug skinBindPosePlug = skinFn.findPlug(\"bindPreMatrix\", true, &status);\nif (status == MS::kSuccess)\n{\n// The skinCluster stores inverse inclusive matrix\n// so notice we use invval (the MObject created off\n// the inverse matrix here)\n//\nskinBindPosePlug = skinBindPosePlug.elementByLogicalIndex(idx);\nskinBindPosePlug.setValue(invval);\n}\nit.next();\n}\n\nreturn status;\n}\n*/\n\nbool DagHelper::SetPlugValue(MPlug& plug, const MVector& value)\n{\n\tMStatus status;\n\tMFnNumericData dataCreator;\n\n\tMObject float3Data = dataCreator.create(MFnNumericData::k3Float, &status);\n\tif (status != MStatus::kSuccess) return false;\n\tdataCreator.setData((float)value.x, (float)value.y, (float)value.z);\n\n\tstatus = plug.setValue(float3Data);\n\tif (status != MStatus::kSuccess) return false;\n\n\treturn true;\n}\n\nbool DagHelper::SetPlugValue(MPlug& plug, const MColor& value)\n{\n\tMStatus status;\n\tif (plug.isCompound() && plug.numChildren() >= 3)\n\t{\n\t\tMPlug rPlug = plug.child(0, &status);\n\t\tif (status != MStatus::kSuccess) return false;\n\t\tstatus = rPlug.setValue(value.r);\n\t\tif (status != MStatus::kSuccess) return false;\n\n\t\tMPlug gPlug = plug.child(1, &status);\n\t\tif (status != MStatus::kSuccess) return false;\n\t\tstatus = gPlug.setValue(value.g);\n\t\tif (status != MStatus::kSuccess) return false;\n\n\t\tMPlug bPlug = plug.child(2, &status);\n\t\tif (status != MStatus::kSuccess) return false;\n\t\tstatus = bPlug.setValue(value.b);\n\t\tif (status != MStatus::kSuccess) return false;\n\n\t\tif (plug.numChildren() >= 4)\n\t\t{\n\t\t\tMPlug aPlug = plug.child(3, &status);\n\t\t\tif (status != MStatus::kSuccess) return false;\n\t\t\tstatus = aPlug.setValue(value.a);\n\t\t\tif (status != MStatus::kSuccess) return false;\n\t\t}\n\t}\n\n\treturn true;\n}\n\n/*\nbool DagHelper::SetPlugValue(MPlug& plug, const MMatrix& value)\n{\nMStatus status;\nMFnMatrixData dataCreator;\n\nMObject matrixData = dataCreator.create(value, &status);\nif (status != MStatus::kSuccess) return false;\n\nstatus = plug.setValue(matrixData);\nif (status != MStatus::kSuccess) return false;\n\nreturn true;\n}\n*/\n\nbool DagHelper::SetPlugValue(MPlug& plug, const std::string& value)\n{\n\tMStatus status;\n\tstatus = plug.setValue(value.c_str());\n\treturn status == MStatus::kSuccess;\n}\n\nbool DagHelper::SetPlugValue(MPlug& plug, float value)\n{\n\tMStatus status;\n\tstatus = plug.setValue(value);\n\treturn status == MStatus::kSuccess;\n}\n\nbool DagHelper::SetPlugValue(MPlug& plug, double value)\n{\n\tMStatus status;\n\tstatus = plug.setValue(value);\n\treturn status == MStatus::kSuccess;\n}\n\nbool DagHelper::SetPlugValue(MPlug& plug, float x, float y)\n{\n\tMFnNumericData data;\n\tMObject obj = data.create(MFnNumericData::k2Float);\n\tdata.setData(x, y);\n\treturn plug.setValue(obj);\n}\n\nbool DagHelper::SetPlugValue(MPlug& plug, int value)\n{\n\tMStatus status;\n\tstatus = plug.setValue(value);\n\treturn status == MStatus::kSuccess;\n}\n\nbool DagHelper::SetPlugValue(MPlug& plug, bool value)\n{\n\tMStatus status;\n\tstatus = plug.setValue(value);\n\treturn status == MStatus::kSuccess;\n}\n\nbool DagHelper::SetPlugValue(MPlug& plug, MStringArray& stringArray)\n{\n\tMObject obj;\n\tMFnStringArrayData fstr;\n\tobj = fstr.create(stringArray);\n\treturn plug.setValue(obj);\n}\n\nvoid DagHelper::SetArrayPlugSize(MPlug& plug, uint size)\n{\n\tif (plug.node().isNull()) return;\n\n#if MAYA_API_VERSION >= 800\n\tCHECK_MSTATUS(plug.setNumElements(size));\n#else\n\tMObject node = plug.node();\n\tMString plugPath = plug.info();\n\tif (node.hasFn(MFn::kDagNode))\n\t{\n\t\tMFnDagNode dagFn(node);\n\t\tint dot = plugPath.index('.');\n\t\tplugPath = dagFn.fullPathName() + plugPath.substring(dot, plugPath.length());\n\t}\n\tMString command = MString(\"setAttr -s \") + size + \" \\\"\" + plugPath + \"\\\";\";\n\tMGlobal::executeCommand(command);\n#endif // MAYA 8.00+\n}\n\n// Creates a typed attribute. Used for maya \"notes\" attributes.\nMObject DagHelper::CreateAttribute(const MObject& node, const char* attributeName, const char* attributeShortName, MFnNumericData::Type type, const char *value)\n{\n\t// Before creating a new attribute: verify that an old one doesn't already exist\n\tMStatus status;\n\tMObject attribute;\n\tMFnDependencyNode nodeFn(node);\n\tMPlug plug = nodeFn.findPlug(attributeShortName, true, status);\n\tif (status != MStatus::kSuccess)\n\t{\n\t\tMFnNumericAttribute attr;\n\t\tMStatus status;\n\t\tattribute = attr.create(attributeName, attributeShortName, type, 0, &status);\n\t\tif (status != MStatus::kSuccess) return MObject::kNullObj;\n\t\tattr.setStorable(true);\n\t\tattr.setKeyable(false);\n\t\tattr.setCached(true);\n\t\tattr.setReadable(true);\n\t\tattr.setWritable(true);\n\n\t\tstatus = nodeFn.addAttribute(attribute, MFnDependencyNode::kLocalDynamicAttr);\n\t\tif (status != MStatus::kSuccess) return MObject::kNullObj;\n\t\tplug = nodeFn.findPlug(attribute, true, &status);\n\t\tif (status != MStatus::kSuccess) return MObject::kNullObj;\n\t}\n\telse\n\t{\n\t\tattribute = plug.attribute(&status);\n\t}\n\n\tstatus = plug.setValue(value);\n\tif (status != MStatus::kSuccess) return MObject::kNullObj;\n\treturn attribute;\n}\n\nMObject DagHelper::CreateAttribute(const MObject& node, const char* attributeName, const char* attributeShortName, MFnData::Type type, const char *value)\n{\n\t// Before creating a new attribute: verify that an old one doesn't already exist\n\tMStatus status;\n\tMObject attribute;\n\tMFnDependencyNode nodeFn(node);\n\tMPlug plug = nodeFn.findPlug(attributeShortName, true, status);\n\tif (status != MStatus::kSuccess)\n\t{\n\t\tMFnTypedAttribute attr;\n\t\tMStatus status;\n\t\tattribute = attr.create(attributeName, attributeShortName, type, &status);\n\t\tif (status != MStatus::kSuccess) return MObject::kNullObj;\n\t\tattr.setStorable(true);\n\t\tattr.setKeyable(false);\n\t\tattr.setCached(true);\n\t\tattr.setReadable(true);\n\t\tattr.setWritable(true);\n\n\t\tstatus = nodeFn.addAttribute(attribute, MFnDependencyNode::kLocalDynamicAttr);\n\t\tif (status != MStatus::kSuccess) return MObject::kNullObj;\n\t\tplug = nodeFn.findPlug(attribute, true, &status);\n\t\tif (status != MStatus::kSuccess) return MObject::kNullObj;\n\t}\n\telse\n\t{\n\t\tattribute = plug.attribute(&status);\n\t}\n\n\tstatus = plug.setValue(value);\n\tif (status != MStatus::kSuccess) return MObject::kNullObj;\n\treturn attribute;\n}\n\nMPlug DagHelper::AddAttribute(const MObject& node, const MObject& attribute)\n{\n\tMPlug plug;\n\tMFnAttribute attributeFn(attribute);\n\tMFnDependencyNode depFn(node);\n\tMStatus status = depFn.addAttribute(attribute, MFnDependencyNode::kLocalDynamicAttr);\n\tif (status == MStatus::kSuccess)\n\t{\n\t\tplug = depFn.findPlug(attribute);\n\t}\n\treturn plug;\n}\n\n// Get a dag path or node from a string\nMDagPath DagHelper::GetShortestDagPath(const MObject& node)\n{\n\tMDagPathArray paths;\n\tMDagPath::getAllPathsTo(node, paths);\n\tMDagPath shortestPath;\n\tif (paths.length() > 0)\n\t{\n\t\tshortestPath = paths[0];\n\t\tfor (uint i = 1; i < paths.length(); ++i)\n\t\t{\n\t\t\tif (shortestPath.length() > paths[i].length())\n\t\t\t{\n\t\t\t\tshortestPath = paths[i];\n\t\t\t}\n\t\t}\n\t}\n\treturn shortestPath;\n}\n\nvoid DagHelper::GroupConnect(MPlug& source, const MObject& destination, const MObject& finalMesh)\n{\n\tMFnDependencyNode destinationFn(destination);\n\tMFnDagNode finalMeshFn(finalMesh);\n\n\t// Create the set which will hold the connected components\n\tMFnSet objectSetFn;\n\tMSelectionList clusterComponentList;\n\tMObject objectSet = objectSetFn.create(clusterComponentList, MFnSet::kVerticesOnly, false);\n\tobjectSetFn.setName(destinationFn.name() + \"set\");\n\n\t// Connect the set to the destination and the finalMesh\n\tDagHelper::ConnectToList(destination, \"message\", objectSet, \"usedBy\");\n\n\t// Create the groupId node\n\tMFnDependencyNode groupId;\n\tgroupId.create(\"groupId\");\n\tDagHelper::SetPlugValue(groupId.object(), \"isHistoricallyInteresting\", 0);\n\n\t// Create the groupParts node\n\tMFnDependencyNode groupParts;\n\tgroupParts.create(\"groupParts\");\n\tDagHelper::SetPlugValue(groupParts.object(), \"isHistoricallyInteresting\", 0);\n\n\t// Tell the groupParts to connect all the vertices of the mesh\n\tMFnSingleIndexedComponent allVerticesComponent;\n\tMObject allVerticesObject = allVerticesComponent.create(MFn::kMeshVertComponent);\n\tallVerticesComponent.setComplete(true);\n\tMFnComponentListData componentListData;\n\tMObject componentList = componentListData.create();\n\tcomponentListData.add(allVerticesObject);\n\tMPlug inputComponentsPartsPlug = groupParts.findPlug(\"inputComponents\");\n\tinputComponentsPartsPlug.setValue(componentList);\n\n\t// Tell the ouput node to expect the groupId\n\tMPlug instanceObjectGroupsPlug = finalMeshFn.findPlug(\"instObjGroups\");\n\tinstanceObjectGroupsPlug = instanceObjectGroupsPlug.elementByLogicalIndex(0);\n\tMPlug objectGroupsPlug = DagHelper::getChildPlug(instanceObjectGroupsPlug, \"og\"); // \"objectGroups\"\n\tMPlug objectGroupPlug = objectGroupsPlug.elementByLogicalIndex(objectGroupsPlug.numElements());\n\tMPlug groupIdPlug = DagHelper::getChildPlug(objectGroupPlug, \"gid\"); // \"objectGroupId\"\n\tDagHelper::Connect(groupId.object(), \"id\", groupIdPlug);\n\n\t// Tell the groupId about the set to implied in the connection\n\tDagHelper::ConnectToList(groupId.object(), \"msg\", objectSetFn.object(), \"gn\");\n\n\t// Connect up the set and the groupId implication within the final mesh\n\tMPlug groupColorPlug = DagHelper::getChildPlug(objectGroupPlug, \"gco\"); // \"objectGrpColor\"\n\tDagHelper::Connect(objectSet, \"memberWireframeColor\", groupColorPlug);\n\tDagHelper::ConnectToList(objectGroupPlug, objectSet, \"dagSetMembers\");\n\n\t// Connect the output with the groupParts\n\tMPlug inputGlobalPlug = destinationFn.findPlug(\"input\");\n\tinputGlobalPlug = inputGlobalPlug.elementByLogicalIndex(inputGlobalPlug.numElements());\n\tMPlug inputGeometryPlug = DagHelper::getChildPlug(inputGlobalPlug, \"ig\"); // \"inputGeometry\"\n\tDagHelper::Connect(groupParts.object(), \"og\", inputGeometryPlug);\n\n\t// Connect the output with the groupId\n\tgroupIdPlug = DagHelper::getChildPlug(inputGlobalPlug, \"gi\"); // \"groupId\"\n\tDagHelper::Connect(groupId.object(), \"id\", groupIdPlug);\n\n\t// Connect the input with the groupParts\n\tMObject sourceNode = source.node();\n\tMString sourceName;\n\tif (!sourceNode.hasFn(MFn::kDagNode)) sourceName = source.info();\n\telse\n\t{\n\t\tMFnDagNode sourceNodeFn(source.node());\n\t\tMFnDagNode parentNodeFn(sourceNodeFn.parent(0));\n\t\tsourceName = parentNodeFn.fullPathName() + \"|\" + source.info();\n\t}\n\tMGlobal::executeCommand(MString(\"connectAttr \") + sourceName + \" \" + groupParts.name() + \".inputGeometry;\");\n\n\t// Connect the groupId and the groupParts together\n\tDagHelper::Connect(groupId.object(), \"id\", groupParts.object(), \"groupId\");\n}\n\nbool DagHelper::Disconnect(const MPlug& source, const MPlug& destination)\n{\n\tMDGModifier mod;\n\tmod.disconnect(source, destination);\n\tMStatus s = mod.doIt();\n\treturn !s.error();\n}\n\nbool DagHelper::Disconnect(const MPlug& plug, bool sources, bool destinations)\n{\n\tMDGModifier mod;\n\tMPlugArray connectedPlugs;\n\tif (sources)\n\t{\n\t\tif (plug.connectedTo(connectedPlugs, sources, false))\n\t\t{\n\t\t\tfor (uint i = 0; i < connectedPlugs.length(); ++i)\n\t\t\t{\n\t\t\t\tMPlug p = connectedPlugs[i];\n\t\t\t\tmod.disconnect(p, plug);\n\t\t\t}\n\t\t}\n\t}\n\tif (destinations)\n\t{\n\t\tif (plug.connectedTo(connectedPlugs, false, destinations))\n\t\t{\n\t\t\tfor (uint i = 0; i < connectedPlugs.length(); ++i)\n\t\t\t{\n\t\t\t\tMPlug p = connectedPlugs[i];\n\t\t\t\tmod.disconnect(plug, p);\n\t\t\t}\n\t\t}\n\t}\n\treturn mod.doIt() == MStatus::kSuccess;\n}\n\n// Create an animation curve for the given plug\nMObject DagHelper::CreateAnimationCurve(const MObject& node, const char* attributeName, const char* curveType)\n{\n\tMFnDependencyNode fn(node); return CreateAnimationCurve(fn.findPlug(attributeName), true, curveType);\n}\nMObject DagHelper::CreateAnimationCurve(const MPlug& plug, const char* curveType)\n{\n\tMStatus status;\n\tMFnDependencyNode curveFn;\n\tcurveFn.create(curveType, &status);\n\tif (status == MStatus::kSuccess)\n\t{\n\t\tDagHelper::Connect(curveFn.object(), \"output\", plug);\n\t}\n\treturn curveFn.object();\n}\n\nMObject DagHelper::CreateExpression(const MPlug& plug, const MString& expression)\n{\n\tMFnDependencyNode expressionFn;\n\tMObject expressionObj = expressionFn.create(\"expression\");\n\tDagHelper::SetPlugValue(expressionObj, \"expression\", expression);\n\n\tMPlug output = expressionFn.findPlug(\"output\");\n\tMPlug firstOutput = output.elementByLogicalIndex(0);\n\tDagHelper::Connect(firstOutput, plug);\n\treturn expressionObj;\n}\n\nbool DagHelper::PlugHasAnimation(const MPlug& plug)\n{\n\tMPlugArray connections;\n\tplug.connectedTo(connections, true, false);\n\tunsigned int connectionsCount = connections.length();\n\tfor (unsigned int i = 0; i < connectionsCount; i++)\n\t{\n\t\tMPlug connectedToPlug = connections[i];\n\t\tMObject nodeObj = connectedToPlug.node();\n\t\tMFnDependencyNode nodeFn(nodeObj);\n\t\tMString typeName = nodeFn.typeName();\n\t\tif ((typeName == \"animCurveTU\") || (typeName == \"animCurveTL\")\n\t\t\t|| (typeName == \"animCurveTA\"))\n\t\t{\n\t\t\treturn true;\n\t\t}\n\t}\n\treturn false;\n}\n\n// get the first empty item in the named array plug\nunsigned DagHelper::GetFirstEmptyElementId(const MPlug& parent)\n{\n\tunsigned num_element = 1;\n\tif (parent.numElements() > num_element) num_element = parent.numElements();\n\tfor (unsigned i = 0; i < num_element; i++)\n\t{\n\t\tif (!parent.elementByLogicalIndex(i).isConnected()) return i;\n\t}\n\treturn parent.numElements() + 1;\n}\n\n\nMPlug DagHelper::AddOrCreateMessagePlug(const MObject& node,\n\tconst char* attributeName, const char* attributeShortName,\n\tMessageDirection direction, bool& created)\n{\n\t// Before creating a new attribute: verify that an old one doesn't already exist\n\tcreated = false;\n\tMStatus status;\n\tMFnDependencyNode nodeFn(node);\n\tMPlug plug = nodeFn.findPlug(attributeShortName, true, &status);\n\tif (status != MStatus::kSuccess)\n\t{\n\t\tMFnMessageAttribute fnMessageAttribute;\n\t\tMObject attribute = fnMessageAttribute.create(attributeName, attributeShortName, &status);\n\t\tTHROW_ON_FAILURE(status);\n\n\t\tTHROW_ON_FAILURE(fnMessageAttribute.setStorable(true));\n\t\tTHROW_ON_FAILURE(fnMessageAttribute.setKeyable(false));\n\t\tTHROW_ON_FAILURE(fnMessageAttribute.setCached(true));\n\t\tTHROW_ON_FAILURE(fnMessageAttribute.setReadable(direction == Outgoing));\n\t\tTHROW_ON_FAILURE(fnMessageAttribute.setWritable(direction == Incoming));\n\n\t\tstatus = nodeFn.addAttribute(attribute, MFnDependencyNode::kLocalDynamicAttr);\n\t\tTHROW_ON_FAILURE(status);\n\n\t\tplug = nodeFn.findPlug(attribute, true, &status);\n\t\tTHROW_ON_FAILURE(status);\n\n\t\tcreated = true;\n\t}\n\n\n\treturn plug;\n}\n#endif\n"
  },
  {
    "path": "src/DagHelper.h",
    "content": "#pragma once\n\n/*\n\nCopyright (C) 2005-2007 Feeling Software Inc.\nPortions of the code are:\nCopyright (C) 2005-2007 Sony Computer Entertainment America\nCopyright (C) 2004-2005 Alias Systems Corp.\nCopyright (C) 2017 Wonder Media Group\n\nMIT License: http://www.opensource.org/licenses/mit-license.php\n*/\n\n#ifndef __DAG_HELPER_INCLUDED__\n#define __DAG_HELPER_INCLUDED__\n\n#include \"MayaException.h\"\n#include \"BasicTypes.h\"\n\nstruct DagHelper {\n    static MObject getObjectByName(const MString &name);\n    static MObject getObjectByName(const std::string &name);\n\n    static MStatus getPlugConnectedTo(const MObject &node,\n                                      const MString &attribute, MPlug &plug);\n\n    /** Find a node connected to a node's attribute, returns kNull when not\n     * found */\n    static MObject findNodeConnectedTo(const MObject &node,\n                                       const MString &attribute);\n\n    /* Find the node connected to a plug, returns kNull when not found */\n    static MObject findNodeConnectedTo(const MPlug &plug);\n\n    static MObject findSourceNodeConnectedTo(const MObject &node,\n                                             const MString &attribute);\n    static MObject findSourceNodeConnectedTo(const MPlug &inPlug);\n\n    static MStatus getPlugValue(const MObject &node, const char *attributeName,\n                                double &value);\n    static MStatus getPlugValue(const MObject &node, const char *attributeName,\n                                float &value);\n    static MStatus getPlugValue(const MObject &node, const char *attributeName,\n                                bool &value);\n    static MStatus getPlugValue(const MObject &node, const char *attributeName,\n                                int &value);\n    static MStatus getPlugValue(const MObject &node, const char *attributeName,\n                                MColor &value);\n    static MStatus getPlugValue(const MObject &node, const char *attributeName,\n                                MString &value);\n    static MStatus getPlugValue(const MObject &node, const char *attributeName,\n                                MVector &value);\n    static MStatus getPlugValue(const MObject &node, const char *attributeName,\n                                MStringArray &value);\n\n    static MStatus getPlugValue(const MPlug &plug, bool &value) {\n        return plug.getValue(value);\n    }\n    static MStatus getPlugValue(const MPlug &plug, int &value) {\n        return plug.getValue(value);\n    }\n    static MStatus getPlugValue(const MPlug &plug, short &value) {\n        return plug.getValue(value);\n    }\n    static MStatus getPlugValue(const MPlug &plug, char &value) {\n        return plug.getValue(value);\n    }\n    static MStatus getPlugValue(const MPlug &plug, float &value) {\n        return plug.getValue(value);\n    }\n    static MStatus getPlugValue(const MPlug &plug, double &value) {\n        return plug.getValue(value);\n    }\n    static MStatus getPlugValue(const MPlug &plug, MString &value) {\n        return plug.getValue(value);\n    }\n\n    static MStatus getPlugValue(const MPlug &plug, MColor &value);\n    static MStatus getPlugValue(const MPlug &plug, uint32_t &value);\n    static MStatus getPlugValue(const MPlug &plug, uint16_t &value);\n    static MStatus getPlugValue(const MPlug &plug, uint8_t &value);\n    static MStatus getPlugValue(const MPlug &plug, float &x, float &y);\n    static MStatus getPlugValue(const MPlug &plug, float &x, float &y,\n                                float &z);\n    static MStatus getPlugValue(const MPlug &plug, MVector &value);\n    static MStatus getPlugValue(const MPlug &plug, MStringArray &output);\n\n    /** Find a child plug. Returns a null plug when not found. Throws an error\n     * on failures */\n    static MPlug getChildPlug(const MPlug &parent, const MString &name);\n\n    /** Find a child plug index. Returns -1 when not found or on failure. Useful\n     * for performance reasons when iterating over many plugs */\n    static int getChildPlugIndex(const MPlug &parent, const MString &name);\n\n    static bool hasConnection(const MPlug &plug, bool asSource = true,\n                              bool asDestination = true);\n\n    /*\n    static bool\t\t\tgetPlugConnectedTo(const MPlug& inPlug, MPlug&\n    plug); static bool\t\t\tGetPlugArrayConnectedTo(const MObject&\n    node, const MString& attribute, MPlug& plug); static int\n    GetNextAvailableIndex(const MObject& object, const MString& attribute, int\n    startIndex = 0);\n    static int\t\t\tGetNextAvailableIndex(const MPlug& p, int\n    startIndex\n    = 0); static bool\t\t\tConnect(const MObject& source, const\n    MString& sourceAttribute, const MObject& destination, const MString&\n    destinationAttribute); static bool\t\t\tConnect(const MObject&\n    source, const MString& sourceAttribute, const MPlug& destination); static\n    bool\t\t\tConnect(const MPlug& source, const MObject&\n    destination, const MString& destinationAttribute); static bool Connect(const\n    MPlug& source, const MPlug& destination); static bool ConnectToList(const\n    MObject& source, const MString& sourceAttribute, const MObject& destination,\n    const MString& destinationAttribute, int* index = nullptr); static bool\n    ConnectToList(const MPlug& source, const MObject& destination, const\n    MString& destinationAttribute, int* index = nullptr); static bool\n    Disconnect(const MPlug& source, const MPlug& destination); static bool\n    Disconnect(const MPlug& plug, bool sources = true, bool destinations =\n    true);\n\n    // Handle mesh-related node connections that use grouped components\n    static void\t\t\tGroupConnect(MPlug& source, const MObject&\n    destination, const MObject& finalMesh);\n\n    // Get/set the bind pose for a transform\n    //static MMatrix\t\tGetBindPoseInverse(const MObject& controller,\n    const MObject& influence);\n    //static MStatus\t\tSetBindPoseInverse(const MObject& node, const\n    MMatrix& bindPoseInverse);\n\n\n                                                                                                         // Get/set a plug's value\n    static bool\t\t\tSetPlugValue(MPlug& plug, const MVector& value);\n    //static bool\t\t\tSetPlugValue(MPlug& plug, const MMatrix&\n    value); static bool\t\t\tSetPlugValue(MPlug& plug, const MColor&\n    value);\n    static bool\t\t\tSetPlugValue(MPlug& plug, const std::string&\n    value); static bool\t\t\tSetPlugValue(MPlug& plug, const MString&\n    value) { return plug.setValue(const_cast<MString&>(value)) ==\n    MStatus::kSuccess; } static bool\t\t\tSetPlugValue(MPlug&\n    plug, float value); static bool\t\t\tSetPlugValue(MPlug&\n    plug, double value); static bool\t\t\tSetPlugValue(MPlug&\n    plug, float x, float y);\n    static bool\t\t\tSetPlugValue(MPlug& plug, int value);\n    static bool\t\t\tSetPlugValue(MPlug& plug, bool value);\n    static bool\t\t\tSetPlugValue(MPlug& plug, MStringArray&\n    stringArray);\n\n    // Helper to avoid the findPlug.\n    template <class ValueType>\n    static bool\t\t\tSetPlugValue(const MObject& node, const char*\n    attributeName, const ValueType& value)\n    {\n        MPlug p = MFnDependencyNode(node).findPlug(attributeName); return\n    SetPlugValue(p, value);\n    }\n\n    // set an array plug size before creating the element plugs\n    static void\t\t\tSetArrayPlugSize(MPlug& plug, uint size);\n\n    // Attempt to translate a string path/name into a dag path or node\n    static MDagPath\t\tGetShortestDagPath(const MObject& node);\n\n    // Create an animation curve for the given plug\n    static MObject\t\tCreateAnimationCurve(const MObject& node, const\n    char* attributeName, const char* curveType); static MObject\n    CreateAnimationCurve(const MPlug& plug, const char* curveType); static bool\n    PlugHasAnimation(const MPlug& plug); static MObject\n    CreateExpression(const MPlug& plug, const MString& expression);\n\n    // Create a string-typed attribute on a given node\n    static MObject\t\tCreateAttribute(const MObject& node, const char*\n    attributeName, const char* attributeShortName, MFnData::Type type, const\n    char *value);\n    static MObject\t\tCreateAttribute(const MObject& node, const char*\n    attributeName, const char* attributeShortName, MFnNumericData::Type type,\n    const char *value); static MPlug\t\tAddAttribute(const MObject&\n    node, const MObject& attribute);\n\n    // get the first empty item in the named array plug\n    static unsigned GetFirstEmptyElementId(const MPlug& parent);\n\n    // [PeterV] Get or create a new intermediate shape connected to the\n    targetPlug.\n    // This is used to make sure we can read valid geometry arriving at the\n    targetPlug\n    // (e.g. just the input plugs of the blend shape controller and skin\n    pre-bind mesh) static MObject GetOrCreateIncomingShapeNode(MPlug&\n    targetPlug); static MObject GetOrCreateOutgoingShapeNode(MPlug& sourcePlug);\n\n    enum MessageDirection\n    {\n        Incoming,\n        Outgoing,\n    };\n\n    // [PeterV] Create a new message attribute (and plug), if not already\n    present.\n    // Throws an exception on failure!\n    static MPlug AddOrCreateMessagePlug(const MObject& node,\n        const char* attributeName, const char* attributeShortName,\n        MessageDirection direction, bool& created);\n    */\n\n  private:\n    template <class ValueType>\n    static MStatus getPlugValueImpl(const MObject &node,\n                                    const char *attributeName,\n                                    ValueType &value) {\n        MStatus status;\n\n        MFnDependencyNode dpn(node, &status);\n        RETURN_ON_FAILURE(status);\n\n        auto plug = dpn.findPlug(attributeName, true, &status);\n        RETURN_ON_FAILURE(status);\n\n        return getPlugValue(plug, value);\n    }\n};\n\n#endif\n"
  },
  {
    "path": "src/ExportableAsset.cpp",
    "content": "#include \"externals.h\"\n\n#include \"AccessorPacker.h\"\n#include \"Arguments.h\"\n#include \"ExportableAsset.h\"\n#include \"filesystem.h\"\n#include \"milo.h\"\n#include \"picosha2.h\"\n#include \"progress.h\"\n#include \"timeControl.h\"\n#include \"version.h\"\n\nusing GLTF::Constants::WebGL;\n\nstruct MStringComparer {\n    bool operator()(const MString &a, const MString &b) const { return strcmp(a.asChar(), b.asChar()) < 0; }\n};\n\nExportableAsset::ExportableAsset(const Arguments &args) : m_resources{args}, m_scene{m_resources} {\n    m_glAsset.scenes.push_back(&m_scene.glScene);\n    m_glAsset.scene = 0;\n\n    m_glAsset.metadata = &m_glMetadata;\n    m_glMetadata.generator = std::string(\"maya2glTF \") + version;\n    m_glMetadata.version = \"2.0\";\n    m_glMetadata.copyright = args.copyright.asChar();\n\n    if (args.dumpMaya) {\n        *args.dumpMaya << \"{\" << indent << endl;\n    }\n\n    // Delete the folder before saving:\n    // (1) this is async on NTFS, so deleting it first allows overlap with the\n    // export. (2) if anything goes wrong, we don't want the user to think the\n    // export succeeded.\n    const auto sceneName = std::string(args.sceneName.asChar());\n    const auto outputFolder = fs::path(args.outputFolder.asChar());\n    if (args.cleanOutputFolder && exists(outputFolder)) {\n        std::cout << prefix << \"Deleting \" << outputFolder << \"...\" << endl;\n        remove_all(outputFolder);\n    }\n\n    const auto currentFrameTime = MAnimControl::currentTime();\n\n    setCurrentTime(args.initialValuesTime, args.redrawViewport);\n\n    size_t progressStepCount = args.meshShapes.size();\n\n    for (auto &clipArg : args.animationClips) {\n        progressStepCount += clipArg.frameCount() / checkProgressFrameInterval;\n    }\n\n    uiSetupProgress(progressStepCount);\n\n    for (auto &dagPath : args.meshShapes) {\n        uiAdvanceProgress(std::string(\"exporting mesh \") + dagPath.partialPathName().asChar());\n        cout << prefix << \"Processing mesh '\" << dagPath.partialPathName().asChar() << \"' ...\" << endl;\n        m_scene.getNode(dagPath);\n    }\n\n    for (auto &dagPath : args.cameraShapes) {\n        uiAdvanceProgress(std::string(\"exporting camera\") + dagPath.partialPathName().asChar());\n        cout << prefix << \"Processing camera '\" << dagPath.partialPathName().asChar() << \"' ...\" << endl;\n        m_scene.getNode(dagPath);\n    }\n\n    if (!args.keepShapeNodes) {\n        m_scene.mergeRedundantShapeNodes();\n    }\n\n    // Now export animation clips of all the nodes, in one pass over the slow\n    // timeline\n    const auto clipCount = args.animationClips.size();\n\n    if (clipCount) {\n        for (auto &clipArg : args.animationClips) {\n            uiAdvanceProgress(\"exporting clip \" + clipArg.name);\n            auto clip = std::make_unique<ExportableClip>(args, clipArg, m_scene);\n            if (!clip->glAnimation.channels.empty()) {\n                m_glAsset.animations.push_back(&clip->glAnimation);\n                m_clips.emplace_back(std::move(clip));\n            }\n        }\n    } else if (currentFrameTime != args.initialValuesTime) {\n        // When we export just a single frame, we normally bake the geometry at\n        // that frame. However, when explicitly specifying a different\n        // initialValuesTime argument, we bake the values at the initial frame,\n        // and re-evaluate the node-transforms and blend-shape-weights of the\n        // current frame, not the initial-values frame.\n        setCurrentTime(currentFrameTime, args.redrawViewport);\n        m_scene.updateCurrentValues();\n    }\n\n    const auto rootScaleFactor = args.getRootScaleFactor();\n    if (args.forceRootNode || rootScaleFactor != 1) {\n        // Create global root node for scaling.\n        m_scene.glScene.nodes.push_back(&m_glRootNode);\n\n        if (rootScaleFactor != 1) {\n            auto &trs = m_glRootTransform;\n            m_glRootNode.transform = &trs;\n            makeIdentity(trs);\n            trs.scale[0] = trs.scale[1] = trs.scale[2] = rootScaleFactor;\n        }\n\n        for (auto &&pair : m_scene.orphans()) {\n            GLTF::Node *secondary_node = &pair.second->glSecondaryNode();\n            m_glRootNode.children.push_back(secondary_node);\n        }\n    } else {\n        for (auto &&pair : m_scene.orphans()) {\n            GLTF::Node *secondary_node = &pair.second->glSecondaryNode();\n            m_scene.glScene.nodes.push_back(secondary_node);\n        }\n    }\n\n    if (args.dumpMaya) {\n        *args.dumpMaya << undent << \"}\" << endl;\n    }\n}\n\nExportableAsset::~ExportableAsset() { uiTeardownProgress(); }\n\nExportableAsset::Cleanup::Cleanup() : currentTime{MAnimControl::currentTime()} {}\n\nExportableAsset::Cleanup::~Cleanup() { setCurrentTime(currentTime, true); }\n\nconst std::string &ExportableAsset::prettyJsonString() const {\n    if (m_prettyJsonString.empty() && !m_rawJsonString.empty()) {\n        // Pretty format the JSON\n        rapidjson::Document jsonDocument;\n        const bool hasParseErrors = jsonDocument.Parse(m_rawJsonString.c_str()).HasParseError();\n\n        if (hasParseErrors) {\n            cerr << prefix << \"Failed to reformat glTF JSON, outputting raw JSON\" << endl;\n            m_prettyJsonString = m_rawJsonString;\n        } else {\n            rapidjson::StringBuffer jsonPrettyBuffer;\n\n            // Write the pretty JSON\n            rapidjson::PrettyWriter<rapidjson::StringBuffer> jsonPrettyWriter(jsonPrettyBuffer);\n            jsonDocument.Accept(jsonPrettyWriter);\n            m_prettyJsonString = jsonPrettyBuffer.GetString();\n        }\n    }\n\n    return m_prettyJsonString;\n}\n\nvoid ExportableAsset::save() {\n    const auto &args = m_resources.arguments();\n\n    const auto sceneName = std::string(args.sceneName.asChar());\n\n    const auto outputFolder = fs::path(args.outputFolder.asChar());\n\n    std::cerr << prefix << \"Creating \" << outputFolder << \"...\" << endl;\n\n    for (int retry = 0; retry < 10; ++retry) {\n        // It seems this can fail with \"operation not permitted\" if the\n        // recursive deletion above is not flushed yet on NTFS\n        std::error_code errorCode;\n        create_directories(outputFolder, errorCode);\n        if (!errorCode)\n            break;\n\n        std::cerr << prefix << \"Waiting for \" << outputFolder << \" to be created...\" << endl;\n\n        std::this_thread::sleep_for(std::chrono::milliseconds(500));\n    }\n\n    // Last try, this will throw an exception if it fails.\n    create_directories(outputFolder);\n\n    const auto allAccessors = m_glAsset.getAllAccessors();\n\n    if (args.dumpAccessorComponents) {\n        dumpAccessorComponents(allAccessors);\n    }\n\n    GLTF::Options options;\n    options.embeddedBuffers = args.glb;\n    options.embeddedShaders = args.glb;\n    options.embeddedTextures = args.glb && !args.externalTextures;\n    options.name = args.sceneName.asChar();\n    options.binary = args.glb;\n\n    AccessorPacker bufferPacker;\n\n    PackedBufferMap packedBufferMap;\n\n    if (!args.glb && !args.separateAccessorBuffers && args.splitMeshAnimation) {\n        // Combine mesh and clip accessors into two separate buffers\n\n        // Gather mesh accessors, per dag-path\n        AccessorsPerDagPath meshAccessorsPerDagPath;\n        m_scene.getAllAccessors(meshAccessorsPerDagPath);\n\n        // Compute animation clip accessors\n        std::vector<GLTF::Accessor *> animAccessors;\n\n        // Flatten mesh accessors into a set.\n        std::set<GLTF::Accessor *> meshAccessorSet;\n        for (auto &pair : meshAccessorsPerDagPath) {\n            std::copy(pair.second.begin(), pair.second.end(), std::inserter(meshAccessorSet, meshAccessorSet.end()));\n        }\n\n        // Clip accessors = allAccessors - meshAccessorSet\n        for (auto accessor : allAccessors) {\n            if (meshAccessorSet.find(accessor) == meshAccessorSet.end()) {\n                animAccessors.emplace_back(accessor);\n            }\n        }\n\n        packMeshAccessors(meshAccessorsPerDagPath, bufferPacker, packedBufferMap, \"/mesh\");\n\n        // TODO: Also associate clips with dag-paths!\n        const auto animBufferName = sceneName + \"/anim\";\n        const auto animBuffer = bufferPacker.packAccessors(animAccessors, animBufferName);\n        if (animBuffer) {\n            packedBufferMap[animBuffer] = animBufferName;\n        }\n    } else if (!args.glb && args.separateAccessorBuffers) {\n        // Keep every accessor separate, useful for debugging.\n        auto index = 0;\n        for (auto accessor : allAccessors) {\n            const auto name = accessor->name.empty() ? \"buffer\" + std::to_string(index) : accessor->name;\n            accessor->bufferView->name = name;\n            accessor->bufferView->buffer->name = name;\n            packedBufferMap[accessor->bufferView->buffer] = name;\n            ++index;\n        }\n    } else {\n        // Pack everything into a single buffer (default and glb case), except external textures\n        // For backwards compat, keep the \"/data\" suffix unless -niceBufferURIs is passed.\n        const auto bufferName = sceneName + (args.niceBufferURIs ? \"\": \"/data\");\n\n        size_t imageBufferLength = 0;\n\n        const auto images = m_glAsset.getAllImages();\n\n        if (options.embeddedTextures) {\n            // Allocate extra space for images.\n            for (GLTF::Image *image : images) {\n                imageBufferLength += image->byteLength;\n            }\n        }\n\n        const auto buffer = bufferPacker.packAccessors(allAccessors, bufferName, imageBufferLength);\n\n        if (buffer) {\n            if (imageBufferLength) {\n                // Copy images to buffer, and create image buffer-views\n                size_t byteOffset = buffer->byteLength - imageBufferLength;\n                for (GLTF::Image *image : images) {\n                    const auto bufferView = new GLTF::BufferView(byteOffset, image->byteLength, buffer);\n                    image->bufferView = bufferView;\n                    std::memcpy(buffer->data + byteOffset, image->data, image->byteLength);\n                    byteOffset += image->byteLength;\n                }\n            }\n            packedBufferMap[buffer] = bufferName;\n        }\n    }\n\n    if (args.niceBufferURIs) {\n        // Make valid URIs for each buffer, and also\n        // count how many times a buffer name occurs.\n        // If more than once, give the buffer URIs a suffix 0,1,2,3,4...\n        std::map<std::string, int> bufferNameCounts;\n        for (auto &pair : packedBufferMap) {\n            auto& uri = pair.second;\n            makeValidFilename(uri);\n            bufferNameCounts[uri] += 1;\n        }\n\n        std::map<std::string, int> bufferNameSuffix;\n        for (const auto &pair : packedBufferMap) {\n            auto buffer = pair.first;\n            auto uri = pair.second;\n\n            if (bufferNameCounts[uri] > 1) {\n                 uri += std::to_string(bufferNameSuffix[uri]++);\n            }\n\n            uri += \".bin\";\n\n            buffer->uri = uri;\n        }\n    }\n\n    if (args.hashBufferURIs) {\n        // Generate hash buffer URIs\n        for (const auto &pair : packedBufferMap) {\n            auto buffer = pair.first;\n\n            std::string hash_hex_str;\n            picosha2::hash256_hex_string(buffer->data, buffer->data + buffer->byteLength, hash_hex_str);\n\n            std::string filename = pair.second;\n            makeValidFilename(filename);\n            filename += '_';\n            filename += hash_hex_str;\n            filename += \".bin\";\n\n            buffer->uri = filename;\n        }\n    }\n\n    // Generate glTF JSON file\n    rapidjson::StringBuffer jsonStringBuffer;\n    rapidjson::Writer<rapidjson::StringBuffer> jsonWriter(jsonStringBuffer);\n    jsonWriter.StartObject();\n\n    m_glAsset.writeJSON(&jsonWriter, &options);\n    jsonWriter.EndObject();\n\n    m_rawJsonString = jsonStringBuffer.GetString();\n\n    const auto outputFilename = args.sceneName + \".\" + (args.glb ? args.glbFileExtension : args.gltfFileExtension);\n    const auto outputPath = outputFolder / outputFilename.asChar();\n\n    cout << prefix << \"Writing glTF file to '\" << outputPath << \"'\" << endl;\n\n    if (!options.embeddedTextures) {\n        for (GLTF::Image *image : m_glAsset.getAllImages()) {\n            fs::path uri = outputFolder / image->uri;\n            std::ofstream file;\n            create(file, uri.generic_string(), ios::out | ios::binary);\n            file.write(reinterpret_cast<char *>(image->data), image->byteLength);\n            file.close();\n        }\n    }\n\n    if (!options.embeddedBuffers) {\n        for (const auto &pair : packedBufferMap) {\n            const auto buffer = pair.first;\n            if (buffer->data && buffer->byteLength) {\n                fs::path uri = outputFolder / buffer->uri;\n                std::ofstream file;\n                create(file, uri.generic_string(), ios::out | ios::binary);\n                file.write(reinterpret_cast<char *>(buffer->data), buffer->byteLength);\n                file.close();\n            }\n        }\n    }\n\n    if (!options.embeddedShaders) {\n        for (GLTF::Shader *shader : m_glAsset.getAllShaders()) {\n            fs::path uri = outputFolder / shader->uri;\n            std::ofstream file;\n            create(file, uri.generic_string(), ios::out | ios::binary);\n            file.write(shader->source.c_str(), shader->source.length());\n            file.close();\n        }\n    }\n\n    // Write glTF file.\n    {\n        const auto &jsonString = m_rawJsonString;\n\n        std::ofstream file;\n        create(file, outputPath.string(), ios::out | (args.glb ? ios::binary : std::ios_base::openmode(0)));\n\n        if (args.glb) {\n            assert(packedBufferMap.size() <= 1);\n            const auto maybeBuffer = packedBufferMap.empty() ? nullptr : packedBufferMap.begin()->first;\n            const auto bufferLength = maybeBuffer ? maybeBuffer->byteLength : 0;\n\n            file.write(\"glTF\", 4); // magic header\n\n            const auto writeHeader = new uint32_t[2];\n            writeHeader[0] = 2; // version\n\n            const int jsonLength = static_cast<int>(jsonString.length());\n            const int jsonPadding = (4 - (jsonLength & 3)) & 3;\n            const int binPadding = (4 - (bufferLength & 3)) & 3;\n\n            const int headerLength = 12;\n            const int chunkHeaderLength = 8;\n\n            const int dataChunkSize = bufferLength ? (chunkHeaderLength + bufferLength + binPadding) : 0;\n\n            writeHeader[1] = headerLength + (chunkHeaderLength + jsonLength + jsonPadding) + dataChunkSize; // length\n\n            file.write(reinterpret_cast<char *>(writeHeader),\n                       sizeof(uint32_t) * 2); // GLB header\n\n            writeHeader[0] = jsonLength + jsonPadding; // chunkLength\n            writeHeader[1] = 0x4E4F534A;               // chunkType JSON\n            file.write(reinterpret_cast<char *>(writeHeader), sizeof(uint32_t) * 2);\n\n            file.write(jsonString.c_str(), jsonLength);\n            for (int i = 0; i < jsonPadding; i++) {\n                file.write(\" \", 1);\n            }\n\n            if (bufferLength) {\n                writeHeader[0] = bufferLength + binPadding; // chunkLength\n                writeHeader[1] = 0x004E4942;                // chunkType BIN\n                file.write(reinterpret_cast<char *>(writeHeader), sizeof(uint32_t) * 2);\n\n                file.write(reinterpret_cast<char *>(maybeBuffer->data), bufferLength);\n                for (int i = 0; i < binPadding; i++) {\n                    file.write(\"\\0\", 1);\n                }\n            }\n\n        } else {\n            file << prettyJsonString() << endl;\n        }\n\n        file.close();\n    }\n\n    if (args.dumpGLTF) {\n        auto &out = *args.dumpGLTF;\n        out << \"glTF dump:\" << endl;\n        out << prettyJsonString();\n        out << endl;\n    }\n}\n\nvoid ExportableAsset::packMeshAccessors(AccessorsPerDagPath &accessorsPerDagPath, AccessorPacker &packer,\n                                        PackedBufferMap &packedBufferMap, std::string nameSuffix) const {\n    AccessorsPerDagPath remainingAccessorsPerDagPath = accessorsPerDagPath;\n\n    const auto &args = m_resources.arguments();\n\n    if (args.splitByReference) {\n        MFileIO fileIO;\n\n        MStringArray refNames;\n        THROW_ON_FAILURE(fileIO.getReferences(refNames));\n\n        for (auto refIndex = 0U; refIndex < refNames.length(); ++refIndex) {\n            auto refFile = refNames[refIndex];\n\n            // NOTE: Using the much easier MFileIO::getReferenceNodes\n            // MSelectionSet overload hangs Maya\n            MStringArray refNodes;\n            THROW_ON_FAILURE(MFileIO::getReferenceNodes(refFile, refNodes));\n\n            std::set<std::string> refNodeSet;\n            for (auto i = 0U; i < refNodes.length(); ++i) {\n                std::string refNodeName = refNodes[i].asChar();\n                refNodeSet.insert(refNodeName);\n            }\n\n            std::vector<GLTF::Accessor *> refAccessors;\n            for (auto &pair : accessorsPerDagPath) {\n                std::string fullName = pair.first.partialPathName().asChar();\n                if (refNodeSet.find(fullName) != refNodeSet.end()) {\n                    remainingAccessorsPerDagPath.erase(pair.first);\n                    std::copy(pair.second.begin(), pair.second.end(), std::back_inserter(refAccessors));\n                }\n            }\n\n            fs::path refPath(refFile.asChar());\n            auto refStem = refPath.stem().generic_string();\n\n            const auto bufferName = refStem + nameSuffix;\n            const auto buffer = packer.packAccessors(refAccessors, bufferName);\n\n            packedBufferMap[buffer] = bufferName;\n        }\n\n        if (!remainingAccessorsPerDagPath.empty()) {\n            std::cerr << prefix\n                      << \"WARNING: Found unreferenced meshes in scene but \"\n                         \"-splitByReference flag was passed! Merging all these \"\n                         \"meshes into a single buffer\"\n                      << endl;\n        }\n    }\n\n    // Pack all remaining accessors into a single buffer.\n    {\n        std::vector<GLTF::Accessor *> flatAccessors;\n\n        for (auto &pair : remainingAccessorsPerDagPath) {\n            std::copy(pair.second.begin(), pair.second.end(), std::back_inserter(flatAccessors));\n        }\n\n        const auto bufferName = args.sceneName.asChar() + nameSuffix;\n        const auto buffer = packer.packAccessors(flatAccessors, bufferName);\n\n        if (buffer) {\n            packedBufferMap[buffer] = bufferName;\n        }\n    }\n}\n\nvoid ExportableAsset::create(std::ofstream &file, const std::string &path, const std::ios_base::openmode mode) {\n    file.open(path, mode);\n\n    if (!file.is_open()) {\n        std::ostringstream ss;\n        ss << \"Couldn't write to '\" << path << \"'\";\n        throw std::runtime_error(ss.str().c_str());\n    }\n}\n\ntemplate <typename T>\nvoid ExportableAsset::dumpAccessorComponentValues(const GLTF::Accessor *accessor, int fileIndex, bool isInteger) const {\n    // NOTE: Because formatting with std::ostream is so slow,\n    // we use the milo.h implementation for fast floating point printing.\n    const auto &args = m_resources.arguments();\n    const auto outputFolder = fs::path(args.outputFolder.asChar());\n\n    std::ofstream ofs;\n    std::string filename = accessor->name;\n    if (filename.empty()) {\n        filename = std::string(args.sceneName.asChar()) + \"_\" + std::to_string(fileIndex);\n    }\n\n    makeValidFilename(filename);\n\n    ofs.open((outputFolder / (filename + \".txt\")).c_str(), std::ofstream::out | std::ofstream::binary);\n\n    const T *data = reinterpret_cast<T *>(accessor->bufferView->buffer->data);\n\n    const int dimension = GLTF::Accessor::getNumberOfComponents(accessor->type);\n\n    const int rowBufferSize = dimension * fmt::BUFFER_SIZE + 2 * (dimension + 1);\n    const auto rowBuffer = static_cast<char *>(alloca(rowBufferSize));\n\n    const auto colWidth = 16;\n\n    for (int row = 0; row < accessor->count; ++row) {\n        char *str = rowBuffer;\n        char *end = str;\n\n        int step = 0;\n\n        for (int col = 0; col < dimension; ++col) {\n            while (str < end)\n                *str++ = ' ';\n            end = str + colWidth;\n            str = isInteger ? rapidjson::internal::i64toa(static_cast<int64_t>(data[col]), str)\n                            : fmt::format_double(str, data[col], 8);\n        }\n\n        *str++ = '\\n';\n\n        assert((str - rowBuffer) <= rowBufferSize);\n\n        ofs.write(rowBuffer, str - rowBuffer);\n\n        data += dimension;\n    }\n\n    ofs.close();\n}\n\nvoid ExportableAsset::dumpAccessorComponents(const std::vector<GLTF::Accessor *> &accessors) const {\n    int fileIndex = 0;\n\n    for (auto &&accessor : accessors) {\n        switch (accessor->componentType) {\n        case WebGL::FLOAT:\n            dumpAccessorComponentValues<float>(accessor, fileIndex, false);\n            break;\n        case WebGL::UNSIGNED_INT:\n            dumpAccessorComponentValues<uint32_t>(accessor, fileIndex, true);\n            break;\n        case WebGL::UNSIGNED_SHORT:\n            dumpAccessorComponentValues<uint16_t>(accessor, fileIndex, true);\n            break;\n        default:\n            // TODO: Add support for other accessor component types.\n            MayaException::printError(\"Unsupported accessor component \" +\n                                          std::to_string(static_cast<int>(accessor->componentType)),\n                                      MStatus::kNotImplemented);\n            break;\n        }\n\n        ++fileIndex;\n    }\n}\n"
  },
  {
    "path": "src/ExportableAsset.h",
    "content": "#pragma once\r\n#include \"ExportableClip.h\"\r\n#include \"ExportableResources.h\"\r\n#include \"ExportableScene.h\"\r\n\r\nclass Arguments;\r\n\r\n// A packed buffer and a filename hint.\r\ntypedef std::map<GLTF::Buffer *, std::string> PackedBufferMap;\r\n\r\nclass ExportableAsset {\r\n  public:\r\n    ExportableAsset(const Arguments &args);\r\n    ~ExportableAsset();\r\n\r\n    const std::string &prettyJsonString() const;\r\n\r\n    void save();\r\n\r\n  private:\r\n    DISALLOW_COPY_MOVE_ASSIGN(ExportableAsset);\r\n\r\n    struct Cleanup {\r\n        MTime currentTime;\r\n\r\n        Cleanup();\r\n        ~Cleanup();\r\n    };\r\n\r\n    Cleanup m_cleanup;\r\n\r\n    GLTF::Asset m_glAsset;\r\n    GLTF::Asset::Metadata m_glMetadata;\r\n    GLTF::Node m_glRootNode;\r\n    GLTF::Node::TransformTRS m_glRootTransform;\r\n\r\n    ExportableResources m_resources;\r\n    ExportableScene m_scene;\r\n\r\n    // std::vector<std::unique_ptr<ExportableItem>> m_items;\r\n    std::vector<std::unique_ptr<ExportableClip>> m_clips;\r\n\r\n    std::string m_rawJsonString;\r\n    mutable std::string m_prettyJsonString;\r\n\r\n    void dumpAccessorComponents(\r\n        const std::vector<GLTF::Accessor *> &accessors) const;\r\n\r\n    void packMeshAccessors(AccessorsPerDagPath &accessors,\r\n                           class AccessorPacker &packer,\r\n                           PackedBufferMap &packedBufferMap,\r\n                           std::string namePrefix) const;\r\n\r\n    static void create(std::ofstream &file, const std::string &path,\r\n                       const std::ios_base::openmode mode);\r\n\r\n    template <typename T>\r\n    void dumpAccessorComponentValues(const GLTF::Accessor *accessor,\r\n                                     int fileIndex, bool isInteger) const;\r\n};\r\n"
  },
  {
    "path": "src/ExportableCamera.cpp",
    "content": "#include \"externals.h\"\r\n\r\n#include \"Arguments.h\"\r\n#include \"DagHelper.h\"\r\n#include \"ExportableCamera.h\"\r\n#include \"ExportableNode.h\"\r\n#include \"ExportableResources.h\"\r\n#include \"ExportableScene.h\"\r\n#include \"MayaException.h\"\r\n\r\nExportableCamera::ExportableCamera(ExportableScene &scene, ExportableNode &node, const MDagPath &shapeDagPath)\r\n    : ExportableObject(shapeDagPath.node()) {\r\n    MStatus status;\r\n\r\n    auto &resources = scene.resources();\r\n    auto &args = resources.arguments();\r\n\r\n    const auto cameraNode = shapeDagPath.node();\r\n\r\n    MFnCamera camera(shapeDagPath, &status);\r\n    THROW_ON_FAILURE(status);\r\n\r\n    if (camera.isOrtho()) {\r\n        auto orthographicCamera = std::make_unique<GLTF::CameraOrthographic>();\r\n\r\n        // const auto orthoWidth = camera.orthoWidth(&status);\r\n        // THROW_ON_FAILURE(status);\r\n\r\n        // const auto aspectRatio = camera.aspectRatio(&status);\r\n        // THROW_ON_FAILURE(status);\r\n\r\n        // See https://github.com/KhronosGroup/glTF/issues/1663\r\n        orthographicCamera->xmag = 1.0f;\r\n        orthographicCamera->ymag = 1.0f; // static_cast<float>(aspectRatio);\r\n        glCamera = move(orthographicCamera);\r\n    } else {\r\n        // Get resolution to find correct field of view.\r\n        MSelectionList sl;\r\n        sl.add(\":defaultResolution\");\r\n\r\n        MObject defaultResolutionNode;\r\n        status = sl.getDependNode(0, defaultResolutionNode);\r\n\r\n        int width;\r\n        int height;\r\n\r\n        const auto hasWidth =\r\n            !defaultResolutionNode.isNull() && DagHelper::getPlugValue(defaultResolutionNode, \"width\", width);\r\n        const auto hasHeight =\r\n            !defaultResolutionNode.isNull() && DagHelper::getPlugValue(defaultResolutionNode, \"height\", height);\r\n\r\n        double hFov;\r\n        double vFov;\r\n        THROW_ON_FAILURE(camera.getPortFieldOfView(hasWidth ? width : 1920, hasHeight ? height : 1080, hFov, vFov));\r\n\r\n        auto perspectiveCamera = std::make_unique<GLTF::CameraPerspective>();\r\n\r\n        perspectiveCamera->yfov = float(vFov);\r\n        THROW_ON_FAILURE(status);\r\n\r\n        // NOTE: We leave the aspect ratio undefined, so GLTF adapts to the viewport\r\n        // https://github.com/KhronosGroup/glTF/issues/1292\r\n        perspectiveCamera->aspectRatio = 0; \r\n        THROW_ON_FAILURE(status);\r\n\r\n#if 0\r\n    auto mayaMatrix = camera.projectionMatrix(&status);\r\n    THROW_ON_FAILURE(status);\r\n\r\n    cout << prefix << name() << \" properties:\" << endl;\r\n\r\n    cout << \"aspect ratio:  \" << perspectiveCamera->aspectRatio << endl;\r\n    cout << \"field of view: \" << perspectiveCamera->yfov << endl;\r\n\r\n    cout << \"Maya projection matrix:\" << mayaMatrix << endl;\r\n\r\n    // For testing, also print GLTF projection matrix\r\n    float a = perspectiveCamera->aspectRatio;\r\n    float y = perspectiveCamera->yfov;\r\n    float n = perspectiveCamera->znear;\r\n    float f = perspectiveCamera->zfar;\r\n    float t = tanf(0.5f * y);\r\n\r\n    float m[4][4] = {\r\n        {1 / (a*t), 0, 0, 0},\r\n        {0, 1 / t, 0, 0},\r\n        {0,0, (f + n) / (n - f), 2 * f*n / (n - f)},\r\n        {0,0,-1,0 }\r\n    };\r\n\r\n    const auto gltfMatrix = MFloatMatrix(m).transpose();\r\n    cout << \"gltF projection matrix:\" << gltfMatrix << endl;\r\n#endif\r\n\r\n        glCamera = move(perspectiveCamera);\r\n    }\r\n\r\n    args.assignName(*glCamera, shapeDagPath, \"\");\r\n\r\n    glCamera->znear = float(camera.nearClippingPlane(&status)) * args.globalScaleFactor;\r\n    THROW_ON_FAILURE(status);\r\n\r\n    glCamera->zfar = float(camera.farClippingPlane(&status)) * args.globalScaleFactor;\r\n    THROW_ON_FAILURE(status);\r\n}\r\n\r\nExportableCamera::~ExportableCamera() = default;\r\n\r\nvoid ExportableCamera::attachToNode(GLTF::Node &node) const { node.camera = glCamera.get(); }\r\n"
  },
  {
    "path": "src/ExportableCamera.h",
    "content": "#pragma once\n\n#include \"ExportableObject.h\"\n#include \"BasicTypes.h\"\n\nclass ExportableResources;\nclass ExportablePrimitive;\nclass Arguments;\nclass ExportableScene;\nclass ExportableNode;\n\nclass ExportableCamera : public ExportableObject {\n  public:\n    // TODO: Support instancing, for now we create a new camera for each node.\n    ExportableCamera(ExportableScene &scene, ExportableNode &node, const MDagPath &shapeDagPath);\n    virtual ~ExportableCamera();\n\n    std::unique_ptr<GLTF::Camera> glCamera;\n\n    void attachToNode(GLTF::Node &node) const;\n\n  private:\n    DISALLOW_COPY_MOVE_ASSIGN(ExportableCamera);\n};\n"
  },
  {
    "path": "src/ExportableClip.cpp",
    "content": "#include \"externals.h\"\r\n\r\n#include \"ExportableClip.h\"\r\n#include \"ExportableNode.h\"\r\n#include \"progress.h\"\r\n#include \"timeControl.h\"\r\n\r\nExportableClip::ExportableClip(const Arguments &args, const AnimClipArg &clipArg, const ExportableScene &scene)\r\n    : m_frames(args.makeName(clipArg.name + \"/anim/frames\"), clipArg.frameCount(), clipArg.framesPerSecond) {\r\n    glAnimation.name = clipArg.name;\r\n\r\n    const auto stepDetectSampleCount = args.getStepDetectSampleCount();\r\n    const auto frameCount = m_frames.count;\r\n    const auto scaleFactor = args.getBakeScaleFactor();\r\n\r\n    auto &items = scene.table();\r\n\r\n    m_nodeAnimations.reserve(items.size());\r\n\r\n    for (auto &pair : items) {\r\n        auto &node = pair.second;\r\n        auto nodeAnimation = node->createAnimation(args, m_frames, scaleFactor);\r\n        if (nodeAnimation) {\r\n            m_nodeAnimations.emplace_back(std::move(nodeAnimation));\r\n        }\r\n    }\r\n\r\n    const auto superSampleFrameRate = stepDetectSampleCount * clipArg.framesPerSecond;\r\n\r\n    // To make sure Maya never rounds to just before a frame, we add half the smallest time step. Need to detect step interpolation\r\n    const double mayaTimeEpsilon = 0.5 / 141120000;\r\n\r\n    for (size_t relativeFrameIndex = 0; relativeFrameIndex < frameCount; ++relativeFrameIndex) {\r\n        for (size_t superSampleIndex = 0; superSampleIndex < stepDetectSampleCount; ++superSampleIndex) {\r\n            const double relativeFrameTime = (relativeFrameIndex * stepDetectSampleCount + superSampleIndex) / superSampleFrameRate + mayaTimeEpsilon;\r\n            const MTime absoluteFrameTime = clipArg.startTime + MTime(relativeFrameTime, MTime::kSeconds);\r\n            setCurrentTime(absoluteFrameTime, args.redrawViewport && superSampleIndex == 0);\r\n            // const auto absoluteFrameTimeDebug = MAnimControl::currentTime().as(MTime::k24FPS);\r\n\r\n            NodeTransformCache transformCache;\r\n            for (auto &nodeAnimation : m_nodeAnimations) {\r\n                nodeAnimation->sampleAt(absoluteFrameTime, relativeFrameIndex, superSampleIndex, transformCache);\r\n            }\r\n        }\r\n\r\n        if (relativeFrameIndex % checkProgressFrameInterval == checkProgressFrameInterval - 1) {\r\n            uiAdvanceProgress(\"exporting clip '\" + clipArg.name + formatted(\"' %d%%\", relativeFrameIndex * 100 / frameCount));\r\n        }\r\n    }\r\n\r\n    for (auto &nodeAnimation : m_nodeAnimations) {\r\n        nodeAnimation->exportTo(glAnimation);\r\n    }\r\n}\r\n\r\nExportableClip::~ExportableClip() = default;\r\n"
  },
  {
    "path": "src/ExportableClip.h",
    "content": "#pragma once\r\n\r\n#include \"Arguments.h\"\r\n#include \"ExportableFrames.h\"\r\n#include \"NodeAnimation.h\"\r\n\r\nclass ExportableClip {\r\n  public:\r\n    ExportableClip(const Arguments &args, const AnimClipArg &clipArg, const ExportableScene &scene);\r\n    virtual ~ExportableClip();\r\n\r\n    GLTF::Animation glAnimation;\r\n\r\n  private:\r\n    ExportableFrames m_frames;\r\n    std::vector<std::unique_ptr<NodeAnimation>> m_nodeAnimations;\r\n\r\n    DISALLOW_COPY_MOVE_ASSIGN(ExportableClip);\r\n};\r\n"
  },
  {
    "path": "src/ExportableFrames.cpp",
    "content": "#include \"externals.h\"\r\n\r\n#include \"ExportableFrames.h\"\r\n#include \"accessors.h\"\r\n\r\nExportableFrames::ExportableFrames(std::string accessorName,\r\n                                   const int frameCount,\r\n                                   const double framesPerSecond)\r\n    : count(frameCount), m_accessorName(std::move(accessorName)) {\r\n    m_glTimes.reserve(frameCount);\r\n\r\n    for (auto relativeFrameIndex = 0; relativeFrameIndex < frameCount; ++relativeFrameIndex) {\r\n        const double relativeFrameTime = relativeFrameIndex / framesPerSecond;\r\n        m_glTimes.emplace_back(static_cast<float>(relativeFrameTime));\r\n    }\r\n}\r\n\r\nGLTF::Accessor *ExportableFrames::glInputs() const {\r\n    if (!m_glInputs) {\r\n        m_glInputs = contiguousChannelAccessor(m_accessorName, m_glTimes, 1);\r\n    }\r\n\r\n    return m_glInputs.get();\r\n}\r\n\r\nGLTF::Accessor *ExportableFrames::glInput0() const {\r\n    if (!m_glInput0) {\r\n        m_glInput0 = contiguousChannelAccessor(m_accessorName, span(m_glTimes).subspan(0, 1), 1);\r\n    }\r\n\r\n    return m_glInput0.get();\r\n}\r\n\r\n"
  },
  {
    "path": "src/ExportableFrames.h",
    "content": "#pragma once\r\n\r\n#include \"macros.h\"\r\n\r\nclass ExportableFrames {\r\n  public:\r\n    ExportableFrames(std::string accessorName, int frameCount, double framesPerSecond);\r\n    ~ExportableFrames() = default;\r\n\r\n    const int count;\r\n\r\n    GLTF::Accessor *glInputs() const;\r\n\r\n    GLTF::Accessor *glInput0() const;\r\n\r\n  private:\r\n    const std::string m_accessorName;\r\n\r\n    // For each animation frame, the clip-relative time in seconds.\r\n    std::vector<float> m_glTimes;\r\n\r\n    mutable std::unique_ptr<GLTF::Accessor> m_glInputs;\r\n    mutable std::unique_ptr<GLTF::Accessor> m_glInput0;\r\n\r\n    DISALLOW_COPY_MOVE_ASSIGN(ExportableFrames);\r\n};\r\n"
  },
  {
    "path": "src/ExportableItem.cpp",
    "content": "#include \"externals.h\"\n\n#include \"ExportableItem.h\"\n#include \"NodeAnimation.h\"\n\nExportableItem::~ExportableItem() = default;\n\nstd::unique_ptr<NodeAnimation>\nExportableItem::createAnimation(const Arguments &, const ExportableFrames &, double ) {\n    return nullptr;\n}\n"
  },
  {
    "path": "src/ExportableItem.h",
    "content": "#pragma once\r\n\r\n#include \"macros.h\"\r\n\r\nclass ExportableFrames;\r\nclass NodeAnimation;\r\nclass Arguments;\r\n\r\nclass ExportableItem {\r\n  public:\r\n    virtual ~ExportableItem() = 0;\r\n\r\n    virtual std::unique_ptr<NodeAnimation> createAnimation(const Arguments &args, const ExportableFrames &frameTimes,\r\n                                                           double scaleFactor);\r\n\r\n  protected:\r\n    ExportableItem() = default;\r\n\r\n  private:\r\n    DISALLOW_COPY_MOVE_ASSIGN(ExportableItem);\r\n};\r\n"
  },
  {
    "path": "src/ExportableMaterial.cpp",
    "content": "#include \"externals.h\"\n\n#include \"Arguments.h\"\n#include \"DagHelper.h\"\n#include \"ExportableMaterial.h\"\n#include \"ExportableResources.h\"\n#include \"ExportableTexture.h\"\n#include \"MayaException.h\"\n#include \"filesystem.h\"\n\nExportableMaterial::ExportableMaterial() = default;\nExportableMaterial::~ExportableMaterial() = default;\n\nstd::unique_ptr<ExportableMaterial> ExportableMaterial::from(ExportableResources &resources,\n                                                             const MFnDependencyNode &shaderNode) {\n    if (shaderNode.typeName() == \"GLSLShader\" || shaderNode.typeName() == \"aiStandardSurface\" ||\n        !resources.arguments().skipStandardMaterials)\n        return std::make_unique<ExportableMaterialPBR>(resources, shaderNode);\n\n    cout << prefix << \"Skipping non-PBR shader node type \" << std::quoted(shaderNode.typeName().asChar()) << \" #\"\n         << shaderNode.type() << endl;\n\n    return nullptr;\n}\n\nbool ExportableMaterial::tryCreateNormalTexture(ExportableResources &resources, const MObject &shaderObject,\n                                                float &normalScale, GLTF::Texture *&outputTexture) {\n    MObject normalCamera = DagHelper::findSourceNodeConnectedTo(shaderObject, \"normalCamera\");\n    if (normalCamera.isNull())\n        return false;\n\n    if (!getScalar(normalCamera, \"bumpDepth\", normalScale))\n        return false;\n\n    if (!outputTexture)\n        return false;\n\n    outputTexture = ExportableTexture::tryLoad(resources, normalCamera, \"bumpValue\");\n    return outputTexture != nullptr;\n}\n\nbool ExportableMaterial::getScalar(const MObject &obj, const char *attributeName, float &scalar) {\n    return DagHelper::getPlugValue(obj, attributeName, scalar);\n}\n\nbool ExportableMaterial::getBoolean(const MObject &obj, const char *attributeName, bool &result) {\n    return DagHelper::getPlugValue(obj, attributeName, result);\n}\n\nbool ExportableMaterial::getString(const MObject &obj, const char *attributeName, MString &string) {\n    return DagHelper::getPlugValue(obj, attributeName, string);\n}\n\nbool ExportableMaterial::getColor(const MObject &obj, const char *attributeName, Float4 &color) {\n    MColor c;\n    if (!DagHelper::getPlugValue(obj, attributeName, c))\n        return false;\n\n    color = {c.r, c.g, c.b, c.a};\n    return true;\n}\n\nExportableMaterialBasePBR::ExportableMaterialBasePBR()\n    : m_glBaseColorFactor{1, 1, 1, 1}, m_glEmissiveFactor{1, 1, 1, 1} {}\n\nExportableMaterialBasePBR::~ExportableMaterialBasePBR() = default;\n\nbool ExportableMaterialBasePBR::hasTextures() const {\n    return m_glBaseColorTexture.texture || m_glMetallicRoughnessTexture.texture || m_glNormalTexture.texture ||\n           m_glEmissiveTexture.texture || m_glOcclusionTexture.texture;\n}\n\nExportableMaterialPBR::ExportableMaterialPBR(ExportableResources &resources, const MFnDependencyNode &shaderNode) {\n    MStatus status;\n\n    const auto shaderObject = shaderNode.object(&status);\n    THROW_ON_FAILURE(status);\n\n    if (shaderNode.typeName() == \"aiStandardSurface\") {\n        loadAiStandard(resources, shaderObject);\n        return;\n    }\n\n    const auto shaderType = shaderObject.apiType();\n\n    switch (shaderType) {\n    case MFn::kPhong:\n        convert<MFnPhongShader>(resources, shaderObject);\n        break;\n    case MFn::kLambert:\n        convert<MFnLambertShader>(resources, shaderObject);\n        break;\n    case MFn::kBlinn:\n        convert<MFnBlinnShader>(resources, shaderObject);\n        break;\n    case MFn::kPluginHardwareShader:\n        loadPBR(resources, shaderObject);\n        break;\n    default:\n        cerr << prefix << \"WARNING: skipping unsupported PBR shader type '\" << shaderObject.apiTypeStr() << \"' #\"\n             << shaderType << endl;\n        break;\n    }\n}\n\ntemplate <class MFnShader>\nvoid ExportableMaterialPBR::convert(ExportableResources &resources, const MObject &shaderObject) {\n    MStatus status;\n\n    MFnShader shader(shaderObject, &status);\n    THROW_ON_FAILURE(status);\n\n    auto &args = resources.arguments();\n    args.assignName(m_glMaterial, shader, \"\");\n\n    m_glMetallicRoughness.roughnessFactor = 1;\n    m_glMetallicRoughness.metallicFactor = 0;\n    m_glMaterial.metallicRoughness = &m_glMetallicRoughness;\n\n    const auto colorTexture = ExportableTexture::tryLoad(resources, shaderObject, \"color\");\n    if (colorTexture) {\n        m_glBaseColorTexture.texture = colorTexture;\n        m_glMetallicRoughness.baseColorTexture = &m_glBaseColorTexture;\n    }\n\n    // TODO: Currently we expect the alpha channel of the color texture to hold\n    // the transparency.\n    const bool hasTransparencyTexture = shader.findPlug(\"transparency\", true).isConnected();\n\n    const auto color = colorTexture ? MColor(1, 1, 1) : shader.color(&status);\n\n    const auto diffuseFactor = shader.diffuseCoeff(&status);\n    const auto transparency = hasTransparencyTexture ? 0 : shader.transparency(&status).r;\n    const auto opacity = (1 - transparency) * resources.arguments().opacityFactor;\n\n    // TODO: Currently we don't actually check the pixels of the transparency\n    // texture.\n    const auto isTransparent = hasTransparencyTexture || opacity < 1;\n    if (isTransparent) {\n        m_glMaterial.alphaMode = \"BLEND\";\n    }\n\n    // TODO: Support MASK alphaMode and alphaCutoff\n\n    // TODO: Support double-sides materials.\n\n    m_glBaseColorFactor = {color.r * diffuseFactor, color.g * diffuseFactor, color.b * diffuseFactor, opacity};\n\n    m_glMetallicRoughness.baseColorFactor = &m_glBaseColorFactor[0];\n\n    // Normal\n    float normalScale;\n    GLTF::Texture *normalTexture;\n    if (tryCreateNormalTexture(resources, shaderObject, normalScale, normalTexture)) {\n        m_glNormalTexture.texture = normalTexture;\n        m_glNormalTexture.scale = normalScale;\n        // TODO: m_glNormalTexture.texCoord = ...\n        m_glMaterial.normalTexture = &m_glNormalTexture;\n    }\n}\n\nvoid ExportableMaterialPBR::loadPBR(ExportableResources &resources, const MFnDependencyNode &shaderNode) {\n    MStatus status;\n    const auto shaderObject = shaderNode.object(&status);\n    THROW_ON_FAILURE(status);\n\n    auto &args = resources.arguments();\n    args.assignName(m_glMaterial, shaderNode, \"\");\n\n    // Base color. For some reason Maya splits this attribute into separate RGB\n    // and A attributes\n    m_glBaseColorFactor = {1, 1, 1, args.opacityFactor};\n\n    Float4 customBaseColor = m_glBaseColorFactor;\n    float customBaseAlpha = m_glBaseColorFactor[3];\n    MString technique = \"solid\";\n    bool isDoubleSided = false;\n\n    const auto hasCustomColor = getColor(shaderObject, \"u_BaseColorFactorRGB\", customBaseColor);\n    const auto hasCustomAlpha = getScalar(shaderObject, \"u_BaseColorFactorA\", customBaseAlpha);\n    const auto hasTechnique = getString(shaderObject, \"technique\", technique);\n    const auto hasDoubleSided = getBoolean(shaderObject, \"u_IsDoubleSided\", isDoubleSided);\n\n    if (hasDoubleSided) {\n        m_glMaterial.doubleSided = isDoubleSided;\n    }\n\n    if (hasCustomColor | hasCustomAlpha) {\n        customBaseColor[3] = customBaseAlpha;\n        m_glBaseColorFactor = customBaseColor;\n        m_glMetallicRoughness.baseColorFactor = &m_glBaseColorFactor[0];\n        m_glMaterial.metallicRoughness = &m_glMetallicRoughness;\n    }\n\n    if (hasTechnique && technique.toLowerCase() == \"transparent\") {\n        m_glMaterial.alphaMode = \"BLEND\";\n    }\n\n    const auto baseColorTexture = ExportableTexture::tryLoad(resources, shaderObject, \"u_BaseColorTexture\");\n    if (baseColorTexture) {\n        m_glBaseColorTexture.texture = baseColorTexture;\n        m_glMetallicRoughness.baseColorTexture = &m_glBaseColorTexture;\n    }\n\n    // Roughness and metallic\n    m_glMetallicRoughness.roughnessFactor = 0.5f;\n    m_glMetallicRoughness.metallicFactor = 0.5f;\n    const auto hasRoughnessStrength =\n        getScalar(shaderObject, \"u_RoughnessStrength\", m_glMetallicRoughness.roughnessFactor);\n    const auto hasMetallicStrength =\n        getScalar(shaderObject, \"u_MetallicStrength\", m_glMetallicRoughness.metallicFactor);\n\n    m_glMetallicRoughness.roughnessFactor = std::clamp(m_glMetallicRoughness.roughnessFactor, 0.0f, 1.0f);\n    m_glMetallicRoughness.metallicFactor = std::clamp(m_glMetallicRoughness.metallicFactor, 0.0f, 1.0f);\n\n    if (hasRoughnessStrength || hasMetallicStrength) {\n        m_glMaterial.metallicRoughness = &m_glMetallicRoughness;\n    }\n\n    const auto roughnessTexture = ExportableTexture::tryCreate(resources, shaderObject, \"u_RoughnessTexture\");\n    const auto metallicTexture = ExportableTexture::tryCreate(resources, shaderObject, \"u_MetallicTexture\");\n    if (roughnessTexture || metallicTexture) {\n        status = tryCreateRoughnessMetalnessTexture(resources, metallicTexture.get(), roughnessTexture.get(), status);\n        m_glMetallicRoughness.metallicRoughnessTexture = &m_glMetallicRoughnessTexture;\n    }\n\n    // Emissive\n    m_glEmissiveFactor = {0, 0, 0, 0};\n    if (getColor(shaderObject, \"u_EmissiveColor\", m_glEmissiveFactor)) {\n        m_glMaterial.emissiveFactor = &m_glEmissiveFactor[0];\n    }\n\n    const auto emissiveTexture = ExportableTexture::tryLoad(resources, shaderObject, \"u_EmissiveTexture\");\n    if (emissiveTexture) {\n        m_glEmissiveTexture.texture = emissiveTexture;\n        m_glMaterial.emissiveTexture = &m_glEmissiveTexture;\n    }\n\n    // Ambient occlusion\n    getScalar(shaderObject, \"u_OcclusionStrength\", m_glOcclusionTexture.strength);\n\n    const auto occlusionTexture = ExportableTexture::tryLoad(resources, shaderObject, \"u_OcclusionTexture\");\n    if (occlusionTexture) {\n        m_glOcclusionTexture.texture = occlusionTexture;\n        m_glMaterial.occlusionTexture = &m_glOcclusionTexture;\n    }\n\n    // Normal\n    getScalar(shaderObject, \"u_NormalScale\", m_glNormalTexture.scale);\n\n    const auto normalTexture = ExportableTexture::tryLoad(resources, shaderObject, \"u_NormalTexture\");\n    if (normalTexture) {\n        m_glNormalTexture.texture = normalTexture;\n        m_glMaterial.normalTexture = &m_glNormalTexture;\n    }\n}\n\nExportableMaterialPBR::~ExportableMaterialPBR() = default;\n\nExportableDefaultMaterial::ExportableDefaultMaterial() {\n    m_glBaseColorFactor = {1, 1, 1, 1};\n    m_glMetallicRoughness.baseColorFactor = &m_glBaseColorFactor[0];\n\n    m_glMetallicRoughness.metallicFactor = 0.5f;\n    m_glMetallicRoughness.roughnessFactor = 0.5f;\n    m_glMaterial.metallicRoughness = &m_glMetallicRoughness;\n\n    m_glEmissiveFactor = {0.1f, 0.1f, 0.1f};\n    m_glMaterial.emissiveFactor = &m_glEmissiveFactor[0];\n}\n\nExportableDefaultMaterial::~ExportableDefaultMaterial() = default;\n\nExportableDebugMaterial::ExportableDebugMaterial(const Float3 &hsv) {\n    m_glBaseColorFactor = hsvToRgb(hsv, 1);\n    m_glMetallicRoughness.baseColorFactor = &m_glBaseColorFactor[0];\n\n    m_glMetallicRoughness.metallicFactor = 0;\n    m_glMetallicRoughness.roughnessFactor = 1;\n    m_glMaterial.metallicRoughness = &m_glMetallicRoughness;\n\n    m_glEmissiveFactor = {0, 0, 0};\n    m_glMaterial.emissiveFactor = &m_glEmissiveFactor[0];\n}\n\nExportableDebugMaterial::~ExportableDebugMaterial() = default;\n\nMStatus ExportableMaterialPBR::tryCreateRoughnessMetalnessTexture(ExportableResources &resources,\n                                                                  const ExportableTexture *metallicTexture,\n                                                                  const ExportableTexture *roughnessTexture,\n                                                                  MStatus status) {\n    // TODO: Test this code!\n    if (!metallicTexture || roughnessTexture->glTexture == metallicTexture->glTexture) {\n        m_glMetallicRoughnessTexture.texture = roughnessTexture->glTexture;\n    } else if (!roughnessTexture) {\n        m_glMetallicRoughnessTexture.texture = metallicTexture->glTexture;\n    } else {\n        cerr << prefix << \"WARNING: Merging roughness and metallic into one texture\" << endl;\n\n        MImage metallicImage;\n        MImage roughnessImage;\n\n        THROW_ON_FAILURE_WITH(\n            metallicImage.readFromTextureNode(metallicTexture->connectedObject),\n            formatted(\"Failed to read metallic texture '%s'\", metallicTexture->imageFilePath.asChar()));\n\n        THROW_ON_FAILURE_WITH(\n            roughnessImage.readFromTextureNode(roughnessTexture->connectedObject),\n            formatted(\"Failed to read roughness texture '%s'\", roughnessTexture->imageFilePath.asChar()));\n\n        unsigned width;\n        unsigned height;\n        THROW_ON_FAILURE(metallicImage.getSize(width, height));\n\n        unsigned width2;\n        unsigned height2;\n        THROW_ON_FAILURE(roughnessImage.getSize(width2, height2));\n\n        if (width != width2 || height != height2) {\n            MayaException::printError(formatted(\"Images '%s' and '%s' have different size, not merging\",\n                                                metallicTexture->imageFilePath.asChar(),\n                                                roughnessTexture->imageFilePath.asChar()));\n        } else {\n            // Merge metallic into roughness\n            auto metallicPixels = reinterpret_cast<uint32_t *>(metallicImage.pixels());\n            auto roughnessPixels = reinterpret_cast<uint32_t *>(roughnessImage.pixels());\n            int64_t pixelCount = width * height;\n            while (--pixelCount >= 0) {\n                *roughnessPixels++ = (*roughnessPixels & 0xff00) | (*metallicPixels++ & 0xff0000) | 0xff000000;\n            }\n\n            // TODO: Add argument for output image file mime-type\n            const fs::path roughnessPath{roughnessTexture->imageFilePath.asChar()};\n            const fs::path metallicPath{metallicTexture->imageFilePath.asChar()};\n            const fs::path imageExtension{roughnessPath.extension()};\n            fs::path imageFilename{roughnessPath.stem().string() + \"-\" + metallicPath.stem().string()};\n            imageFilename.replace_extension(imageExtension);\n            MString mergedImagePath{(fs::temp_directory_path() / imageFilename).c_str()};\n\n            cout << prefix << \"Saving merged roughness-metallic texture to \" << mergedImagePath << endl;\n            status = roughnessImage.writeToFile(mergedImagePath, imageExtension.c_str());\n            THROW_ON_FAILURE_WITH(status, formatted(\"Failed to write merged \"\n                                                    \"metallic-roughness texture to '%s'\",\n                                                    mergedImagePath.asChar()));\n\n            const auto imagePtr = resources.getImage(mergedImagePath.asChar());\n            assert(imagePtr);\n\n            const auto texturePtr = resources.getTexture(imagePtr, roughnessTexture->glSampler);\n            assert(texturePtr);\n\n            m_glMetallicRoughnessTexture.texture = texturePtr;\n        }\n    }\n    return status;\n}\n\nvoid ExportableMaterialPBR::loadAiStandard(\n    ExportableResources &resources,\n    const MFnDependencyNode &shaderNode) { // References\n                                           // https://docs.substance3d.com/integrations/arnold-5-for-maya-157352171.html\n\n    MStatus status;\n    const auto shaderObject = shaderNode.object(&status);\n    THROW_ON_FAILURE(status);\n\n    auto &args = resources.arguments();\n    args.assignName(m_glMaterial, shaderNode, \"\");\n\n    float opacityFactor = 1.f;\n\n    auto hasOpacity = getScalar(shaderObject, \"TransmissionWeight\", opacityFactor);\n    if (hasOpacity) {\n        m_glBaseColorFactor = {1.f, 1.f, 1.f, opacityFactor};\n    } else {\n        m_glBaseColorFactor = {1.f, 1.f, 1.f, 1.f};\n    }\n\n    Float4 customBaseColor = m_glBaseColorFactor;\n    bool isDoubleSided = false;\n\n    const auto hasCustomColor = getColor(shaderObject, \"baseColor\", customBaseColor);\n    float customColorWeight = 1.0f;\n    if (hasCustomColor) {\n        m_glBaseColorFactor = customBaseColor;\n        m_glMaterial.metallicRoughness = &m_glMetallicRoughness;\n    }\n\n    bool hasTransparency = false;\n    const auto baseColorTexture = ExportableTexture::tryLoad(resources, shaderObject, \"baseColor\");\n    if (baseColorTexture) {\n        m_glBaseColorTexture.texture = baseColorTexture;\n        m_glMetallicRoughness.baseColorTexture = &m_glBaseColorTexture;\n\n        unsigned baseColorWidth = baseColorTexture->source->getDimensions().first;\n        unsigned baseColorHeight = baseColorTexture->source->getDimensions().second;\n        uint32_t *baseColorPixels = reinterpret_cast<uint32_t *>(baseColorTexture->source->data);\n        int64_t pixelCount = baseColorWidth * baseColorHeight;\n        if (pixelCount) {\n            while (--pixelCount >= 0) {\n                // Check if the alpha is opaque\n                uint8_t *pixel = reinterpret_cast<uint8_t *>(baseColorPixels);\n                hasTransparency = hasTransparency || pixel[3] != 255;\n            }\n        }\n    }\n\n    if (customBaseColor[3] != 1.0f || hasTransparency) {\n        m_glMaterial.alphaMode = \"BLEND\";\n    }\n\n    // Roughness and metallic\n    m_glMetallicRoughness.roughnessFactor = 0.5f;\n    m_glMetallicRoughness.metallicFactor = 0.5f;\n    const auto hasRoughnessStrength =\n        getScalar(shaderObject, \"specularRoughness\", m_glMetallicRoughness.roughnessFactor);\n    const auto hasMetallicStrength = getScalar(shaderObject, \"metalness\", m_glMetallicRoughness.metallicFactor);\n\n    if (hasRoughnessStrength || hasMetallicStrength) {\n        m_glMaterial.metallicRoughness = &m_glMetallicRoughness;\n    }\n\n    const auto roughnessTexture = ExportableTexture::tryCreate(resources, shaderObject, \"specularRoughness\");\n    const auto metallicTexture = ExportableTexture::tryCreate(resources, shaderObject, \"metalness\");\n    if (roughnessTexture || metallicTexture) {\n        status = tryCreateRoughnessMetalnessTexture(resources, metallicTexture.get(), roughnessTexture.get(), status);\n\n        m_glMetallicRoughness.metallicRoughnessTexture = &m_glMetallicRoughnessTexture;\n    }\n\n    // Emissive color\n    m_glEmissiveFactor = {0, 0, 0, 0};\n    if (getColor(shaderObject, \"emission\", m_glEmissiveFactor)) {\n        m_glMaterial.emissiveFactor = &m_glEmissiveFactor[0];\n    }\n\n    const auto emissiveTexture = ExportableTexture::tryLoad(resources, shaderObject, \"emissionColor\");\n    if (emissiveTexture) {\n        m_glEmissiveTexture.texture = emissiveTexture;\n        m_glMaterial.emissiveTexture = &m_glEmissiveTexture;\n    }\n\n    // Ambient occlusion\n    // https://academy.substance3d.com/courses/Substance-guide-to-Rendering-in-Arnold\n    // Use the aiMultiply node to multiply the AO with the base color\n    // Not supported\n\n    // Normal\n    float normalScale;\n    GLTF::Texture *normalTexture;\n    if (tryCreateNormalTexture(resources, shaderObject, normalScale, normalTexture)) {\n        m_glNormalTexture.texture = normalTexture;\n        m_glNormalTexture.scale = normalScale;\n        // TODO: m_glNormalTexture.texCoord = ...\n        m_glMaterial.normalTexture = &m_glNormalTexture;\n    }\n}"
  },
  {
    "path": "src/ExportableMaterial.h",
    "content": "#pragma once\n\n#include \"ExportableTexture.h\"\n#include \"color.h\"\n#include \"macros.h\"\n\nclass ExportableResources;\n\nclass ExportableMaterial {\n  public:\n    ExportableMaterial();\n    virtual ~ExportableMaterial() = 0;\n\n    virtual GLTF::Material *glMaterial() = 0;\n\n    virtual bool hasTextures() const = 0;\n\n    static std::unique_ptr<ExportableMaterial>\n    from(ExportableResources &resources, const MFnDependencyNode &shaderNode);\n\n  protected:\n    // static bool tryCreateTexture(ExportableResources& resources, const\n    // MObject& obj, const char* attributeName, GLTF::Texture*& outputTexture,\n    // MString& outputTexturePath); static bool\n    // tryCreateTexture(ExportableResources& resources, const MObject& obj,\n    // const char* attributeName, GLTF::Texture*& outputTexture);\n    static bool tryCreateNormalTexture(ExportableResources &resources,\n                                       const MObject &obj, float &normalScale,\n                                       GLTF::Texture *&outputTexture);\n\n    static bool getScalar(const MObject &shaderObject,\n                          const char *attributeName, float &scalar);\n    static bool getColor(const MObject &shaderObject, const char *attributeName,\n                         Float4 &color);\n    static bool getString(const MObject &shaderObject,\n                          const char *attributeName, MString &string);\n    static bool getBoolean(const MObject &shaderObject,\n                           const char *attributeName, bool &result);\n\n  private:\n    DISALLOW_COPY_MOVE_ASSIGN(ExportableMaterial);\n};\n\nclass ExportableMaterialBasePBR : public ExportableMaterial {\n  public:\n    ExportableMaterialBasePBR();\n    virtual ~ExportableMaterialBasePBR();\n\n    GLTF::Material *glMaterial() override { return &m_glMaterial; }\n\n    bool hasTextures() const override;\n\n  protected:\n    Float4 m_glBaseColorFactor;\n    Float4 m_glEmissiveFactor;\n    GLTF::MaterialPBR m_glMaterial;\n    GLTF::MaterialPBR::MetallicRoughness m_glMetallicRoughness;\n\n    GLTF::MaterialPBR::Texture m_glBaseColorTexture;\n    GLTF::MaterialPBR::Texture m_glMetallicRoughnessTexture;\n    GLTF::MaterialPBR::NormalTexture m_glNormalTexture;\n    GLTF::MaterialPBR::Texture m_glEmissiveTexture;\n    GLTF::MaterialPBR::OcclusionTexture m_glOcclusionTexture;\n\n  private:\n    DISALLOW_COPY_MOVE_ASSIGN(ExportableMaterialBasePBR);\n};\n\nclass ExportableDefaultMaterial : public ExportableMaterialBasePBR {\n  public:\n    ExportableDefaultMaterial();\n    ~ExportableDefaultMaterial();\n\n  private:\n    DISALLOW_COPY_MOVE_ASSIGN(ExportableDefaultMaterial);\n};\n\nclass ExportableMaterialPBR : public ExportableMaterialBasePBR {\n  public:\n    ExportableMaterialPBR(ExportableResources &resources,\n                          const MFnDependencyNode &shaderNode);\n    ~ExportableMaterialPBR();\n\n  private:\n    DISALLOW_COPY_MOVE_ASSIGN(ExportableMaterialPBR);\n\n    void loadPBR(ExportableResources &resources,\n                 const MFnDependencyNode &shaderNode);\n\n    template <class MFnShader>\n    void convert(ExportableResources &resources, const MObject &shaderObject);\n    void loadAiStandard(ExportableResources &resources,\n                        const MFnDependencyNode &shaderNode);\n    MStatus\n    tryCreateRoughnessMetalnessTexture(ExportableResources &resources,\n                                      const ExportableTexture* metallicTexture,\n                                      const ExportableTexture* roughnessTexture,\n                                      MStatus status);\n};\n\nclass ExportableDebugMaterial : public ExportableMaterialBasePBR {\n  public:\n    ExportableDebugMaterial(const Float3 &hsv);\n    ~ExportableDebugMaterial();\n\n  private:\n    DISALLOW_COPY_MOVE_ASSIGN(ExportableDebugMaterial);\n};\n"
  },
  {
    "path": "src/ExportableMesh.cpp",
    "content": "#include \"externals.h\"\r\n\r\n#include \"Arguments.h\"\r\n#include \"DagHelper.h\"\r\n#include \"ExportableMesh.h\"\r\n#include \"ExportableNode.h\"\r\n#include \"ExportablePrimitive.h\"\r\n#include \"ExportableResources.h\"\r\n#include \"ExportableScene.h\"\r\n#include \"GLTFTargetNames.h\"\r\n#include \"MayaException.h\"\r\n#include \"Mesh.h\"\r\n#include \"MeshSkeleton.h\"\r\n#include \"accessors.h\"\r\n\r\nExportableMesh::ExportableMesh(ExportableScene &scene, ExportableNode &node, const MDagPath &shapeDagPath)\r\n    : ExportableObject(shapeDagPath.node()) {\r\n    MStatus status;\r\n\r\n    auto &resources = scene.resources();\r\n    auto &args = resources.arguments();\r\n\r\n    const auto mayaMesh = std::make_unique<Mesh>(scene, shapeDagPath, node);\r\n\r\n    if (args.dumpMaya) {\r\n        mayaMesh->dump(*args.dumpMaya, shapeDagPath.fullPathName().asChar());\r\n    }\r\n\r\n    if (!mayaMesh->isEmpty()) {\r\n        auto shapeName = args.assignName(glMesh, shapeDagPath, \"\");\r\n\r\n        auto &mainShape = mayaMesh->shape();\r\n\r\n        // Generate primitives\r\n        MeshRenderables renderables(mayaMesh->allShapes(), args);\r\n        const auto &shadingMap = mainShape.indices().shadingPerInstance();\r\n        const auto &shading = shadingMap.at(renderables.instanceNumber);\r\n        const auto shaderCount = static_cast<int>(shading.shaderGroups.length());\r\n\r\n        /* TODO: Implement overrides\r\n        auto mainDagPath = mainShape.dagPath();\r\n        auto mainNode = mainDagPath.node(&status);\r\n        THROW_ON_FAILURE(status);\r\n\r\n        bool overrideShading = false;\r\n        status = DagHelper::getPlugValue(mainNode, \"overrideShading\",\r\n        overrideShading); THROW_ON_FAILURE(status);\r\n\r\n        bool overrideTexturing = false;\r\n        status = DagHelper::getPlugValue(mainNode, \"overrideTexturing\",\r\n        overrideShading); THROW_ON_FAILURE(status);\r\n\r\n        bool overrideVisibility = false;\r\n        status = DagHelper::getPlugValue(mainNode, \"overrideVisibility\",\r\n        overrideShading); THROW_ON_FAILURE(status);\r\n         */\r\n\r\n        const auto &vertexBufferEntries = renderables.table();\r\n        const size_t vertexBufferCount = vertexBufferEntries.size();\r\n        {\r\n            size_t vertexBufferIndex = 0;\r\n            for (auto &&pair : vertexBufferEntries) {\r\n                const auto &vertexSignature = pair.first;\r\n                const auto &vertexBuffer = pair.second;\r\n\r\n                const int shaderIndex = vertexSignature.shaderIndex;\r\n                auto &shaderGroup = shaderIndex >= 0 && shaderIndex < shaderCount ? shading.shaderGroups[shaderIndex]\r\n                                                                                  : MObject::kNullObj;\r\n\r\n                ExportableMaterial *material = nullptr;\r\n\r\n                // Assign material to primitive\r\n                if (args.colorizeMaterials) {\r\n                    const float h = vertexBufferIndex * 1.0f / vertexBufferCount;\r\n                    const float s = shaderCount == 0 ? 0.5f : 1;\r\n                    const float v = shaderIndex < 0 ? 0.5f : 1;\r\n                    material = resources.getDebugMaterial({h, s, v});\r\n                } else {\r\n                    material = resources.getMaterial(shaderGroup);\r\n                    if (!material && resources.arguments().defaultMaterial)\r\n                        material = resources.getDefaultMaterial();\r\n                }\r\n\r\n                if (material) {\r\n                    const auto primitiveName = shapeName + \"#\" + std::to_string(vertexBufferIndex);\r\n\r\n                    auto exportablePrimitive =\r\n                        std::make_unique<ExportablePrimitive>(primitiveName, vertexBuffer, resources, material);\r\n                    glMesh.primitives.push_back(&exportablePrimitive->glPrimitive);\r\n\r\n                    m_primitives.emplace_back(std::move(exportablePrimitive));\r\n\r\n                    if (args.debugTangentVectors) {\r\n                        auto debugPrimitive = std::make_unique<ExportablePrimitive>(\r\n                            primitiveName, vertexBuffer, resources, Semantic::Kind::TANGENT, ShapeIndex::main(),\r\n                            args.debugVectorLength, Color({1, 0, 0, 1}));\r\n                        glMesh.primitives.push_back(&debugPrimitive->glPrimitive);\r\n                        m_primitives.emplace_back(move(debugPrimitive));\r\n                    }\r\n\r\n                    if (args.debugNormalVectors) {\r\n                        auto debugPrimitive = std::make_unique<ExportablePrimitive>(\r\n                            primitiveName, vertexBuffer, resources, Semantic::Kind::NORMAL, ShapeIndex::main(),\r\n                            args.debugVectorLength, Color({1, 1, 0, 1}));\r\n                        glMesh.primitives.push_back(&debugPrimitive->glPrimitive);\r\n                        m_primitives.emplace_back(move(debugPrimitive));\r\n                    }\r\n                }\r\n\r\n                ++vertexBufferIndex;\r\n            }\r\n            for (auto &&shape : mayaMesh->allShapes()) {\r\n                if (shape->shapeIndex.isBlendShapeIndex()) {\r\n                    m_weightPlugs.emplace_back(shape->weightPlug);\r\n                    m_initialWeights.emplace_back(shape->initialWeight);\r\n                    glMesh.weights.emplace_back(shape->initialWeight);\r\n                    MStringArray weightArrays;\r\n                    MString weight = shape->weightPlug.name();\r\n                    weight.split('.', weightArrays);\r\n\r\n                    m_morphTargetNames->addName(weightArrays.length() <= 1\r\n                                                    ? std::string(\"morph_\") + std::to_string(m_morphTargetNames->size())\r\n                                                    : std::string(weightArrays[1].asChar()));\r\n                }\r\n            }\r\n            if (!mayaMesh->allShapes().empty()) {\r\n                glMesh.extras.insert({\"targetNames\", static_cast<GLTF::Object *>(m_morphTargetNames.get())});\r\n            }\r\n        }\r\n\r\n        // Generate skin\r\n        auto &skeleton = mainShape.skeleton();\r\n        if (!skeleton.isEmpty()) {\r\n            args.assignName(glSkin, shapeDagPath, \"\");\r\n\r\n            auto &joints = skeleton.joints();\r\n\r\n            // std::map<int, std::vector<ExportableNode *>> distanceToRootMap;\r\n\r\n            m_inverseBindMatrices.reserve(joints.size());\r\n\r\n            // Get joints, and build inverse bind matrices.\r\n            for (auto &joint : joints) {\r\n                auto *jointNode = joint.node;\r\n                glSkin.joints.emplace_back(const_cast<GLTF::Node *>(&jointNode->glPrimaryNode()));\r\n\r\n                // auto distanceToRoot = ExportableScene::distanceToRoot(jointNode->dagPath);\r\n                // distanceToRootMap[distanceToRoot].emplace_back(jointNode);\r\n\r\n                double ibm[4][4];\r\n                THROW_ON_FAILURE(joint.inverseBindMatrix.get(ibm));\r\n\r\n                Float4x4 inverseBindMatrix;\r\n\r\n                for (int i = 0; i < 4; ++i) {\r\n                    for (int j = 0; j < 4; ++j) {\r\n                        inverseBindMatrix[i][j] = roundToFloat(ibm[i][j], args.matPrecision);\r\n                    }\r\n                }\r\n\r\n                m_inverseBindMatrices.emplace_back(inverseBindMatrix);\r\n            }\r\n\r\n            m_inverseBindMatricesAccessor = contiguousChannelAccessor(\r\n                args.makeName(shapeName + \"/skin/IBM\"), reinterpret_span<float>(m_inverseBindMatrices), 16);\r\n\r\n            glSkin.inverseBindMatrices = m_inverseBindMatricesAccessor.get();\r\n\r\n            // Find root\r\n            // NOTE: Disabled to support skeletons with multiple roots, the\r\n            // skeleton property is optional anyway\r\n            // const auto& roots = distanceToRootMap.begin()->second;\r\n\r\n            // if (roots.size() > 1)\r\n            //{\r\n            //\tMayaException::printError(\r\n            //\t\tformatted(\"Skeletons with multiple roots are not yet\r\n            // supported, mesh '%s'\", shapeName.c_str()));\r\n            //}\r\n\r\n            // auto rootJointNode = roots.at(0);\r\n            // cout << prefix << \"Using joint \" << quoted(rootJointNode->name(),\r\n            // '\\'') << \" as skeleton root for mesh \" << quoted(shapeName, '\\'')\r\n            // << endl; glSkin.skeleton = &rootJointNode->glPrimaryNode();\r\n        }\r\n    }\r\n}\r\n\r\nExportableMesh::~ExportableMesh() = default;\r\n\r\nvoid ExportableMesh::getAllAccessors(std::vector<GLTF::Accessor *> &accessors) const {\r\n    for (auto &&primitive : m_primitives) {\r\n        primitive->getAllAccessors(accessors);\r\n    }\r\n\r\n    if (m_inverseBindMatricesAccessor) {\r\n        accessors.emplace_back(m_inverseBindMatricesAccessor.get());\r\n    }\r\n}\r\n\r\nstd::vector<float> ExportableMesh::currentWeights() const {\r\n    std::vector<float> weights;\r\n    weights.reserve(m_weightPlugs.size());\r\n\r\n    for (auto &plug : m_weightPlugs) {\r\n        float weight;\r\n        THROW_ON_FAILURE(plug.getValue(weight));\r\n        weights.emplace_back(weight);\r\n    }\r\n\r\n    return weights;\r\n}\r\n\r\nvoid ExportableMesh::attachToNode(GLTF::Node &node) {\r\n    node.mesh = &glMesh;\r\n\r\n    if (glSkin.inverseBindMatrices) {\r\n        node.skin = &glSkin;\r\n    }\r\n}\r\n\r\nvoid ExportableMesh::updateWeights() {\r\n    for (size_t i = 0; i < m_weightPlugs.size(); ++i) {\r\n        auto &plug = m_weightPlugs.at(i);\r\n        auto &weight = glMesh.weights.at(i);\r\n        THROW_ON_FAILURE(plug.getValue(weight));\r\n    }\r\n}\r\n"
  },
  {
    "path": "src/ExportableMesh.h",
    "content": "#pragma once\r\n\r\n#include \"ExportableObject.h\"\r\n#include \"BasicTypes.h\"\r\n\r\nclass ExportableResources;\r\nclass ExportablePrimitive;\r\nclass Arguments;\r\nclass ExportableScene;\r\nclass ExportableNode;\r\n\r\nclass ExportableMesh : public ExportableObject {\r\n  public:\r\n    // TODO: Support instancing, for now we create a new mesh for each node.\r\n    // To properly support instance, we need to decide what to do with shapes\r\n    // that are both with and without a skeleton Do we generate two meshes, with\r\n    // and without skinning vertex attributes?\r\n    ExportableMesh(ExportableScene &scene, ExportableNode &node,\r\n                   const MDagPath &shapeDagPath);\r\n    virtual ~ExportableMesh();\r\n\r\n    GLTF::Mesh glMesh;\r\n    GLTF::Skin glSkin;\r\n\r\n    size_t blendShapeCount() const { return m_weightPlugs.size(); }\r\n\r\n    gsl::span<const float> initialWeights() const { return m_initialWeights; }\r\n\r\n    std::vector<float> currentWeights() const;\r\n\r\n    void attachToNode(GLTF::Node &node);\r\n\r\n    void updateWeights();\r\n\r\n    void getAllAccessors(std::vector<GLTF::Accessor *> &accessors) const;\r\n\r\n  private:\r\n    DISALLOW_COPY_MOVE_ASSIGN(ExportableMesh);\r\n\r\n    std::vector<float> m_initialWeights;\r\n    std::vector<MPlug> m_weightPlugs;\r\n    std::vector<std::unique_ptr<ExportablePrimitive>> m_primitives;\r\n\r\n    std::vector<Float4x4> m_inverseBindMatrices;\r\n    std::unique_ptr<GLTF::Accessor> m_inverseBindMatricesAccessor;\r\n    std::unique_ptr<GLTF::MorphTargetNames> m_morphTargetNames =\r\n        std::make_unique<GLTF::MorphTargetNames>();\r\n};\r\n"
  },
  {
    "path": "src/ExportableNode.cpp",
    "content": "#include \"externals.h\"\r\n\r\n#include \"Arguments.h\"\r\n#include \"DagHelper.h\"\r\n#include \"ExportableNode.h\"\r\n#include \"ExportableResources.h\"\r\n#include \"ExportableScene.h\"\r\n#include \"MayaException.h\"\r\n#include \"NodeAnimation.h\"\r\n#include \"Transform.h\"\r\n\r\nExportableNode::ExportableNode(const MDagPath &dagPath) : ExportableObject(dagPath.node()), dagPath(dagPath) {}\r\n\r\nvoid ExportableNode::load(ExportableScene &scene, NodeTransformCache &transformCache) {\r\n    MStatus status;\r\n\r\n    auto &resources = scene.resources();\r\n    auto &args = resources.arguments();\r\n\r\n    // Is this a joint with segment scale compensation? (the default in Maya)\r\n    bool maybeSegmentScaleCompensation = false;\r\n    DagHelper::getPlugValue(obj, \"segmentScaleCompensate\", maybeSegmentScaleCompensation);\r\n\r\n    // Remember scale factor and precision\r\n    scaleFactor = args.getBakeScaleFactor();\r\n    posPrecision = args.posPrecision;\r\n    dirPrecision = args.dirPrecision;\r\n    sclPrecision = args.sclPrecision;\r\n\r\n    // // Get name\r\n    // const auto name = dagPath.partialPathName(&status);\r\n    // THROW_ON_FAILURE(status);\r\n    //\r\n    // Get parent\r\n    parentNode = scene.getParent(this);\r\n\r\n    // Deal with segment scale compensation\r\n    // A root joint never has segment scale compensation, since the parent is\r\n    // the world.\r\n    if (maybeSegmentScaleCompensation && parentNode && parentNode->obj.hasFn(MFn::kJoint) &&\r\n        !args.ignoreSegmentScaleCompensation) {\r\n        transformKind = TransformKind::ComplexJoint;\r\n    }\r\n\r\n    // Deal with pivot points.\r\n    // We currently only support a single pivot point,\r\n    // but Maya has both a rotation and scaling pivot,\r\n    // so warn the user if these are different.\r\n    MFnTransform fnTransform(dagPath, &status);\r\n    if (status) {\r\n        const auto scalePivot = fnTransform.scalePivot(MSpace::kObject);\r\n        const auto rotatePivot = fnTransform.rotatePivot(MSpace::kObject);\r\n\r\n        if (scalePivot != rotatePivot) {\r\n            MayaException::printError(formatted(\"Transform '%s' has different scaling and rotation pivots, \"\r\n                                                \"this is not supported, ignoring scaling pivot!\",\r\n                                                dagPath.partialPathName().asChar()),\r\n                                      MStatus::kNotImplemented);\r\n        }\r\n\r\n        pivotPoint = rotatePivot;\r\n\r\n        if (pivotPoint != MPoint::origin) {\r\n            cout << prefix << \"Transform \" << dagPath.partialPathName()\r\n                 << \" has a pivot point, extra GLTF nodes will be added to \"\r\n                    \"handle this\"\r\n                 << endl;\r\n\r\n            transformKind = TransformKind::ComplexTransform;\r\n        }\r\n    }\r\n\r\n    // In the presence of segment scale compensation or pivot points,\r\n    // parent.TRS <- child.TRS\r\n    // becomes\r\n    // parent.TU <- parent.RS <- child.TU <- child.RS\r\n\r\n    auto &sNode = glSecondaryNode();\r\n    auto &pNode = glPrimaryNode();\r\n\r\n    switch (transformKind) {\r\n    case TransformKind::ComplexJoint:\r\n        args.assignName(sNode, dagPath, \":SSC\");\r\n        args.assignName(pNode, dagPath, \"\");\r\n        sNode.children.emplace_back(&pNode);\r\n        break;\r\n    case TransformKind::ComplexTransform:\r\n        args.assignName(pNode, dagPath, \":PIV\");\r\n        args.assignName(sNode, dagPath, \"\");\r\n        sNode.children.emplace_back(&pNode);\r\n        break;\r\n    default:;\r\n        args.assignName(pNode, dagPath, \"\");\r\n        break;\r\n    }\r\n\r\n    if (parentNode) {\r\n        // Register as child\r\n        parentNode->glPrimaryNode().children.push_back(&sNode);\r\n    } else {\r\n        // Register node without parent\r\n        // We do not yet add the glNode to the glScene,\r\n        // since we might introduce an extra global root node (typically for\r\n        // global scaling)\r\n        scene.registerOrphanNode(this);\r\n    }\r\n\r\n    // Get transform\r\n    initialTransformState = transformCache.getTransform(this, scaleFactor, posPrecision, sclPrecision, dirPrecision);\r\n    m_glNodes[0].transform = &initialTransformState.localTransforms[0];\r\n    m_glNodes[1].transform = &initialTransformState.localTransforms[1];\r\n\r\n    if (initialTransformState.maxNonOrthogonality > MAX_NON_ORTHOGONALITY) {\r\n        // TODO: Use SVG to decompose the 3x3 matrix into a product of rotation\r\n        // and scale matrices.\r\n        cerr << prefix << \"WARNING: node '\" << name()\r\n             << \"' has initial transforms that are not representable by glTF! \"\r\n                \"Skewing is not supported, use 3 nodes to simulate this. \"\r\n                \"Deviation = \"\r\n             << std::fixed << std::setprecision(2) << initialTransformState.maxNonOrthogonality * 100 << \"%\" << endl;\r\n    }\r\n\r\n    // Create mesh, if any\r\n    // Get mesh, but only if the node was selected.\r\n    if (args.meshShapes.find(dagPath) != args.meshShapes.end()) {\r\n        MDagPath shapeDagPath = dagPath;\r\n        status = shapeDagPath.extendToShape();\r\n\r\n        if (status && shapeDagPath.hasFn(MFn::kMesh)) {\r\n            // The shape is a mesh\r\n            m_mesh = std::make_unique<ExportableMesh>(scene, *this, shapeDagPath);\r\n            m_mesh->attachToNode(pNode);\r\n        }\r\n    }\r\n\r\n    // Set camera, but only if the node was selected.\r\n    if (args.cameraShapes.count(dagPath)) {\r\n        MDagPath shapeDagPath = dagPath;\r\n        status = shapeDagPath.extendToShape();\r\n\r\n        if (status && shapeDagPath.hasFn(MFn::kCamera)) {\r\n            // The shape is a camera\r\n            m_camera = std::make_unique<ExportableCamera>(scene, *this, shapeDagPath);\r\n            m_camera->attachToNode(pNode);\r\n        }\r\n    }\r\n}\r\n\r\nExportableNode::~ExportableNode() = default;\r\n\r\nstd::unique_ptr<NodeAnimation>\r\nExportableNode::createAnimation(const Arguments &args, const ExportableFrames &frameTimes, const double scaleFactor) {\r\n\r\n    return std::make_unique<NodeAnimation>(*this, frameTimes, scaleFactor, args);\r\n}\r\n\r\nvoid ExportableNode::updateNodeTransforms(NodeTransformCache &transformCache) {\r\n    currentTransformState = transformCache.getTransform(this, scaleFactor, posPrecision, sclPrecision, dirPrecision);\r\n    m_glNodes[0].transform = &currentTransformState.localTransforms[0];\r\n    m_glNodes[1].transform = &currentTransformState.localTransforms[1];\r\n\r\n    if (currentTransformState.maxNonOrthogonality > MAX_NON_ORTHOGONALITY) {\r\n        // TODO: Use SVG to decompose the 3x3 matrix into a product of rotation\r\n        // and scale matrices.\r\n        const auto currentFrameTime = MAnimControl::currentTime();\r\n\r\n        cerr << prefix << \"WARNING: node '\" << name() << \"' has transforms at the current frame \" << currentFrameTime\r\n             << \" that are not representable by glTF! Skewing is not \"\r\n                \"supported, use 3 nodes to simulate this. Deviation = \"\r\n             << std::fixed << std::setprecision(2) << currentTransformState.maxNonOrthogonality * 100 << \"%\" << endl;\r\n    }\r\n}\r\n\r\nbool ExportableNode::tryMergeRedundantShapeNode() {\r\n    if (!this->hasAttachedShape())\r\n        return false;\r\n\r\n    if (transformKind != TransformKind::Simple)\r\n        return false;\r\n\r\n    if (parentNode == nullptr)\r\n        return false;\r\n\r\n    if (parentNode->hasAttachedShape())\r\n        return false;\r\n\r\n    auto &glParentNode = parentNode->glPrimaryNode();\r\n    if (glParentNode.children.size() != 1)\r\n        return false;\r\n\r\n    auto &glNode = this->glPrimaryNode();\r\n\r\n    assert(glParentNode.children.at(0) == &glNode);\r\n\r\n    auto &transform = glNode.transform;\r\n\r\n    if (transform->type != GLTF::Node::Transform::TRS)\r\n        return false;\r\n\r\n    auto *trs = static_cast<const GLTF::Node::TransformTRS *>(transform);\r\n    if (trs->translation[0] != 0 || trs->translation[1] != 0 || trs->translation[2] != 0)\r\n        return false;\r\n    if (trs->rotation[0] != 0 || trs->rotation[1] != 0 || trs->rotation[2] != 0 || trs->rotation[3] != 1)\r\n        return false;\r\n    if (trs->scale[0] != 1 || trs->scale[1] != 1 || trs->scale[2] != 1)\r\n        return false;\r\n\r\n    cout << prefix << \"Shape-only node '\" << name() << \"' is redundant, moving its shapes to parent node '\"\r\n         << parentNode->name() << \"'\" << endl;\r\n\r\n    glParentNode.children.clear();\r\n    glNode.mesh = nullptr;\r\n    glNode.skin = nullptr;\r\n    glNode.camera = nullptr;\r\n\r\n    if (m_mesh) {\r\n        m_mesh->attachToNode(glParentNode);\r\n        m_mesh.swap(parentNode->m_mesh);\r\n    }\r\n\r\n    if (m_camera) {\r\n        m_camera->attachToNode(glParentNode);\r\n        m_camera.swap(parentNode->m_camera);\r\n    }\r\n\r\n    return true;\r\n}\r\n\r\nvoid ExportableNode::getAllAccessors(std::vector<GLTF::Accessor *> &accessors) const {\r\n    if (m_mesh) {\r\n        m_mesh->getAllAccessors(accessors);\r\n    }\r\n}\r\n"
  },
  {
    "path": "src/ExportableNode.h",
    "content": "#pragma once\r\n\r\n#include \"ExportableCamera.h\"\r\n#include \"ExportableMesh.h\"\r\n#include \"ExportableObject.h\"\r\n#include \"ExportableScene.h\"\r\n#include \"Transform.h\"\r\n\r\nenum class TransformKind {\r\n    // A simple transform without segment scale compensation nor pivot point\r\n    Simple,\r\n\r\n    // A joint with segment scale compensation\r\n    ComplexJoint,\r\n\r\n    // A transform with a pivot point\r\n    ComplexTransform\r\n};\r\n\r\nclass ExportableNode : public ExportableObject {\r\n  public:\r\n    ~ExportableNode();\r\n\r\n    // Mesh attached to node, or null\r\n    ExportableMesh *mesh() const { return m_mesh.get(); }\r\n\r\n    // Camera attached to node, or null\r\n    ExportableCamera *camera() const { return m_camera.get(); }\r\n\r\n    bool hasAttachedShape() const { return m_mesh || m_camera; }\r\n\r\n    const MDagPath dagPath;\r\n\r\n    TransformKind transformKind = TransformKind::Simple;\r\n\r\n    double scaleFactor = 1.0;\r\n    double posPrecision = 1e9;\r\n    double dirPrecision = 1e9;\r\n    double sclPrecision = 1e9;\r\n\r\n    MPoint pivotPoint;\r\n\r\n    // nullptr for root nodes.\r\n    ExportableNode *parentNode = nullptr;\r\n\r\n    NodeTransformState initialTransformState;\r\n    NodeTransformState currentTransformState;\r\n\r\n    std::unique_ptr<NodeAnimation> createAnimation(const Arguments &args, const ExportableFrames &frameTimes,\r\n                                                   double scaleFactor) override;\r\n\r\n    // The primary node to represent the transform\r\n    // See Transform.h for details\r\n    GLTF::Node &glPrimaryNode() { return m_glNodes[0]; }\r\n    const GLTF::Node &glPrimaryNode() const { return const_cast<ExportableNode *>(this)->glPrimaryNode(); }\r\n\r\n    // The secondary node to represent the transform\r\n    // Can be the same as the primary node for simple transforms\r\n    // See Transform.h for details\r\n    GLTF::Node &glSecondaryNode() { return m_glNodes[transformKind != TransformKind::Simple]; }\r\n    const GLTF::Node &glSecondaryNode() const { return const_cast<ExportableNode *>(this)->glSecondaryNode(); }\r\n\r\n    MDagPath parentDagPath() const { return parentNode ? parentNode->dagPath : MDagPath(); }\r\n\r\n    // Update the node transforms using the values at the current frame\r\n    void updateNodeTransforms(NodeTransformCache &transformCache);\r\n\r\n    // If this node is a redundant shape node, move the mesh to the parent node,\r\n    // and return true.\r\n    bool tryMergeRedundantShapeNode();\r\n\r\n    void getAllAccessors(std::vector<GLTF::Accessor *> &accessors) const;\r\n\r\n  private:\r\n    friend class ExportableScene;\r\n\r\n    ExportableNode(const MDagPath &dagPath);\r\n\r\n    void load(ExportableScene &scene, NodeTransformCache &transformCache);\r\n\r\n    std::array<GLTF::Node, 2> m_glNodes;\r\n    std::unique_ptr<ExportableMesh> m_mesh;\r\n    std::unique_ptr<ExportableCamera> m_camera;\r\n\r\n    DISALLOW_COPY_MOVE_ASSIGN(ExportableNode);\r\n};\r\n"
  },
  {
    "path": "src/ExportableObject.cpp",
    "content": "#include \"externals.h\"\n\n#include \"Arguments.h\"\n#include \"ExportableObject.h\"\n#include \"ExportableResources.h\"\n#include \"MayaException.h\"\n\nExportableObject::ExportableObject(MObject mObj) : obj(mObj) {\n    MStatus status;\n    MFnDependencyNode node(mObj, &status);\n    THROW_ON_FAILURE(status);\n\n    auto name = node.name(&status);\n    THROW_ON_FAILURE(status);\n\n    m_name = name.asChar();\n}\n\nExportableObject::~ExportableObject() {}\n"
  },
  {
    "path": "src/ExportableObject.h",
    "content": "#pragma once\n\n#include \"ExportableItem.h\"\n\nclass Arguments;\nclass ExportableResources;\n\nclass ExportableObject : public ExportableItem {\n  public:\n    ExportableObject(MObject mObj);\n    virtual ~ExportableObject() = 0;\n\n    const std::string &name() const { return m_name; }\n\n    const MObject obj;\n\n  private:\n    DISALLOW_COPY_MOVE_ASSIGN(ExportableObject);\n\n    std::string m_name;\n};\n"
  },
  {
    "path": "src/ExportablePrimitive.cpp",
    "content": "#include \"externals.h\"\r\n\r\n#include \"Arguments.h\"\r\n#include \"ExportablePrimitive.h\"\r\n#include \"ExportableResources.h\"\r\n#include \"MeshRenderables.h\"\r\n#include \"accessors.h\"\r\n\r\nusing namespace GLTF::Constants;\r\nusing namespace coveo::linq;\r\n\r\nnamespace Semantic {\r\ninline std::string glTFattributeName(const Kind s, const int setIndex) {\r\n    // NOTE: Although Maya has multiple tangent sets, glTW only accepts one.\r\n    // Need to dig deeper to understand this correctly.\r\n    switch (s) {\r\n    case POSITION:\r\n        return std::string(\"POSITION\");\r\n    case NORMAL:\r\n        return std::string(\"NORMAL\");\r\n    case TANGENT:\r\n        return std::string(\"TANGENT\");\r\n    case COLOR:\r\n        return std::string(\"COLOR_\") + std::to_string(setIndex);\r\n    case TEXCOORD:\r\n        return std::string(\"TEXCOORD_\") + std::to_string(setIndex);\r\n    case WEIGHTS:\r\n        return std::string(\"WEIGHTS_\") + std::to_string(setIndex);\r\n    case JOINTS:\r\n        return std::string(\"JOINTS_\") + std::to_string(setIndex);\r\n    default:\r\n        assert(false);\r\n        return \"UNKNOWN\";\r\n    }\r\n}\r\n} // namespace Semantic\r\n\r\nExportablePrimitive::ExportablePrimitive(const std::string &name,\r\n                                         const VertexBuffer &vertexBuffer,\r\n                                         ExportableResources &resources,\r\n                                         ExportableMaterial *material) {\r\n    auto &args = resources.arguments();\r\n\r\n    glPrimitive.mode = GLTF::Primitive::TRIANGLES;\r\n    glPrimitive.material = material->glMaterial();\r\n\r\n    auto &vertexIndices = vertexBuffer.indices;\r\n\r\n    const auto indicesName = args.makeName(name + \"/indices\");\r\n\r\n    if (args.force32bitIndices ||\r\n        vertexBuffer.maxIndex() > std::numeric_limits<uint16_t>::max()) {\r\n        // Use 32-bit indices\r\n        glIndices = contiguousAccessor(\r\n            indicesName, GLTF::Accessor::Type::SCALAR, WebGL::UNSIGNED_INT,\r\n            WebGL::ELEMENT_ARRAY_BUFFER, span(vertexIndices), 1);\r\n        glPrimitive.indices = glIndices.get();\r\n    } else {\r\n        // Use 16-bit indices\r\n        std::vector<uint16_t> shortIndices(vertexIndices.size());\r\n        std::copy(vertexIndices.begin(), vertexIndices.end(),\r\n                  shortIndices.begin());\r\n        glIndices = contiguousAccessor(\r\n            indicesName, GLTF::Accessor::Type::SCALAR, WebGL::UNSIGNED_SHORT,\r\n            WebGL::ELEMENT_ARRAY_BUFFER, span(shortIndices), 1);\r\n        glPrimitive.indices = glIndices.get();\r\n    }\r\n\r\n    auto componentsPerShapeIndex =\r\n        from(vertexBuffer.componentsMap) |\r\n        group_by([](auto &pair) { return pair.first.shapeIndex; }) |\r\n        to_vector();\r\n\r\n    // Allocate a glTF morph-target for each blend-shape\r\n    const auto shapeCount = componentsPerShapeIndex.size();\r\n    if (shapeCount > 1) {\r\n        glTargetTable.reserve(shapeCount - 1);\r\n        for (size_t i = 1; i < shapeCount; ++i) {\r\n            auto glTarget = std::make_unique<GLTF::Primitive::Target>();\r\n            glPrimitive.targets.emplace_back(glTarget.get());\r\n            glTargetTable.emplace_back(move(glTarget));\r\n        }\r\n    }\r\n\r\n    auto mainShapeSemanticSet = args.meshPrimitiveAttributes;\r\n\r\n    // Don't add texture coordinates if no textures are used, if option is\r\n    // enabled\r\n    if (args.excludeUnusedTexcoord && !material->hasTextures())\r\n        mainShapeSemanticSet.set(Semantic::TEXCOORD, false);\r\n\r\n    const auto blendShapeSemanticSet =\r\n        args.blendPrimitiveAttributes & mainShapeSemanticSet;\r\n\r\n    for (auto &&group : componentsPerShapeIndex) {\r\n        const auto shapeIndex = group.first;\r\n\r\n        auto &glAttributes =\r\n            shapeIndex.isMainShapeIndex()\r\n                ? glPrimitive.attributes\r\n                : glTargetTable.at(shapeIndex.targetIndex())->attributes;\r\n        auto &semanticSet = shapeIndex.isMainShapeIndex()\r\n                                ? mainShapeSemanticSet\r\n                                : blendShapeSemanticSet;\r\n\r\n        for (auto &&pair : group.second) {\r\n            auto &slot = pair.first;\r\n            if (semanticSet.test(slot.semantic)) {\r\n                auto attributeSlot =\r\n                    glTFattributeName(slot.semantic, slot.setIndex);\r\n\r\n                std::string accessorName;\r\n\r\n                if (!args.disableNameAssignment) {\r\n                    std::stringstream ss;\r\n                    ss << name;\r\n\r\n                    if (slot.shapeIndex.isBlendShapeIndex()) {\r\n                        ss << \"/target#\" +\r\n                                  std::to_string(slot.shapeIndex.targetIndex());\r\n                    }\r\n\r\n                    ss << \"/vertices/\" << attributeSlot;\r\n\r\n                    accessorName = ss.str();\r\n                }\r\n\r\n                auto accessor = contiguousElementAccessor(\r\n                    accessorName, slot.semantic, slot.shapeIndex, pair.second);\r\n                glAttributes[attributeSlot] = accessor.get();\r\n                glAccessors.emplace_back(std::move(accessor));\r\n            }\r\n        }\r\n    }\r\n}\r\n\r\nExportablePrimitive::ExportablePrimitive(const std::string &name,\r\n                                         const VertexBuffer &vertexBuffer,\r\n                                         ExportableResources &resources,\r\n                                         const Semantic::Kind debugSemantic,\r\n                                         const ShapeIndex &debugShapeIndex,\r\n                                         const double debugLineLength,\r\n                                         const Color debugLineColor) {\r\n    auto &args = resources.arguments();\r\n\r\n    glPrimitive.mode = GLTF::Primitive::LINES;\r\n\r\n    const auto positionSlot =\r\n        VertexSlot(ShapeIndex::main(), Semantic::POSITION, 0);\r\n    const auto vectorSlot = VertexSlot(ShapeIndex::main(), debugSemantic, 0);\r\n    const auto positions =\r\n        reinterpret_span<Position>(vertexBuffer.componentsMap.at(positionSlot));\r\n    const auto vectorComponents =\r\n        reinterpret_span<float>(vertexBuffer.componentsMap.at(vectorSlot));\r\n    const auto vectorDimension = dimension(debugSemantic, debugShapeIndex);\r\n    const auto lineCount = positions.size();\r\n    const auto elementCount = lineCount * 2;\r\n    std::vector<uint16_t> lineIndices(elementCount);\r\n    std::vector<Position> linePoints(elementCount);\r\n    std::vector<Color> lineColors(elementCount);\r\n\r\n    iota(lineIndices.begin(), lineIndices.end(), 0);\r\n    fill(lineColors.begin(), lineColors.end(), debugLineColor);\r\n\r\n    // Add a line from each point\r\n    const auto length = static_cast<float>(debugLineLength);\r\n    for (auto lineIndex = 0; lineIndex < lineCount; ++lineIndex) {\r\n        const auto offset = lineIndex * 2;\r\n\r\n        const auto vectorOffset = vectorDimension * lineIndex;\r\n        const auto vx = vectorComponents[vectorOffset + 0];\r\n        const auto vy = vectorComponents[vectorOffset + 1];\r\n        const auto vz = vectorComponents[vectorOffset + 2];\r\n\r\n        auto point = positions[lineIndex];\r\n        linePoints[offset + 0] = point;\r\n\r\n        point[0] += vx * length;\r\n        point[1] += vy * length;\r\n        point[2] += vz * length;\r\n        linePoints[offset + 1] = point;\r\n    }\r\n\r\n    glIndices =\r\n        contiguousAccessor(args.makeName(name + \"/debug/indices\"),\r\n                           GLTF::Accessor::Type::SCALAR, WebGL::UNSIGNED_SHORT,\r\n                           WebGL::ELEMENT_ARRAY_BUFFER, span(lineIndices), 1);\r\n    glPrimitive.indices = glIndices.get();\r\n\r\n    auto pointAccessor = contiguousElementAccessor(\r\n        args.makeName(name + \"/debug/points\"), Semantic::Kind::POSITION,\r\n        ShapeIndex::main(), reinterpret_span<byte>(linePoints));\r\n    glPrimitive.attributes[glTFattributeName(Semantic::Kind::POSITION, 0)] =\r\n        pointAccessor.get();\r\n    glAccessors.emplace_back(move(pointAccessor));\r\n\r\n    auto colorAccessor = contiguousElementAccessor(\r\n        args.makeName(name + \"/debug/colors\"), Semantic::Kind::COLOR,\r\n        ShapeIndex::main(), reinterpret_span<byte>(lineColors));\r\n    glPrimitive.attributes[glTFattributeName(Semantic::Kind::COLOR, 0)] =\r\n        colorAccessor.get();\r\n    glAccessors.emplace_back(move(colorAccessor));\r\n}\r\n\r\nExportablePrimitive::~ExportablePrimitive() = default;\r\n\r\nvoid ExportablePrimitive::getAllAccessors(\r\n    std::vector<GLTF::Accessor *> &accessors) const {\r\n    accessors.emplace_back(glIndices.get());\r\n\r\n    for (auto &&accessor : glAccessors) {\r\n        accessors.emplace_back(accessor.get());\r\n    }\r\n}\r\n"
  },
  {
    "path": "src/ExportablePrimitive.h",
    "content": "#pragma once\r\n\r\n#include \"ExportableMaterial.h\"\r\n#include \"ExportableMesh.h\"\r\n#include \"MeshRenderables.h\"\r\n#include \"sceneTypes.h\"\r\n\r\ntypedef std::vector<std::unique_ptr<GLTF::Primitive::Target>>\r\n    BlendShapeToTargetTable;\r\n\r\nclass ExportableResources;\r\n\r\nclass ExportablePrimitive {\r\n  public:\r\n    ExportablePrimitive(const std::string &name,\r\n                        const VertexBuffer &vertexBuffer,\r\n                        ExportableResources &resources,\r\n                        ExportableMaterial *material);\r\n\r\n    ExportablePrimitive(const std::string &name,\r\n                        const VertexBuffer &vertexBuffer,\r\n                        ExportableResources &resources,\r\n                        Semantic::Kind debugSemantic,\r\n                        const ShapeIndex &debugShapeIndex,\r\n                        double debugLineLength, Color debugLineColor);\r\n\r\n    virtual ~ExportablePrimitive();\r\n\r\n    GLTF::Primitive glPrimitive;\r\n    std::unique_ptr<GLTF::Accessor> glIndices;\r\n    BlendShapeToTargetTable glTargetTable;\r\n\r\n    void getAllAccessors(std::vector<GLTF::Accessor *> &accessors) const;\r\n\r\n  private:\r\n    std::vector<std::unique_ptr<GLTF::Accessor>> glAccessors;\r\n\r\n    DISALLOW_COPY_MOVE_ASSIGN(ExportablePrimitive);\r\n};\r\n"
  },
  {
    "path": "src/ExportableResources.cpp",
    "content": "#include \"externals.h\"\n\n#include \"Arguments.h\"\n#include \"DagHelper.h\"\n#include \"ExportableMaterial.h\"\n#include \"ExportableResources.h\"\n#include \"MayaException.h\"\n#include \"filesystem.h\"\n\nExportableResources::ExportableResources(const Arguments &args)\n    : m_args(args) {}\n\nExportableResources::~ExportableResources() {}\n\nExportableMaterial *\nExportableResources::getMaterial(const MObject &shaderGroup) {\n    MStatus status;\n\n    if (shaderGroup.isNull())\n        return nullptr;\n\n    MObject surfaceShader =\n        DagHelper::findSourceNodeConnectedTo(shaderGroup, \"surfaceShader\");\n\n    if (surfaceShader.isNull())\n        return nullptr;\n\n    MFnDependencyNode shaderNode(surfaceShader, &status);\n\n    MUuid mayaId = shaderNode.uuid(&status);\n    THROW_ON_FAILURE(status);\n\n    const std::string key(mayaId.asString().asChar());\n\n    auto &materialPtr = m_materialMap[key];\n    if (materialPtr) {\n        cout << prefix << \"Reusing material instance \" << key << endl;\n    } else {\n        // Create new material.\n        materialPtr = ExportableMaterial::from(*this, shaderNode);\n    }\n\n    return materialPtr.get();\n}\n\nGLTF::Image *ExportableResources::getImage(fs::path path) {\n    if (!exists(path)) {\n        MayaException::printError(\n            formatted(\"Image with path '%s' does not exist!\", path.c_str()));\n        MayaException::printError(\n            \"(it is advised to use a Maya project and relative paths)\");\n        return nullptr;\n    }\n\n    std::string key(path.generic_string());\n    std::transform(key.begin(), key.end(), key.begin(), ::tolower);\n    auto &imagePtr = m_imageMap[key];\n    if (!imagePtr) {\n        if (m_args.convertUnsupportedImages) {\n            // Convert unsupported formats to PNG\n            std::string ext = path.extension().generic_string();\n            std::transform(ext.begin(), ext.end(), ext.begin(), ::tolower);\n\n            if (ext != \".jpg\" && ext != \".jpeg\" && ext != \".png\" &&\n                ext != \".dds\") {\n                std::cout << prefix << \"WARNING: Converting image '\" << path\n                          << \"' to .png, since glTF does not support \" << ext\n                          << std::endl;\n\n                MImage image;\n                THROW_ON_FAILURE_WITH(\n                    image.readFromFile(MString(path.c_str())),\n                    formatted(\"Failed to read image %s\", path.c_str()));\n\n                path = fs::temp_directory_path() /\n                       path.filename().replace_extension(\".png\");\n\n                THROW_ON_FAILURE_WITH(\n                    image.writeToFile(MString(path.c_str()), \"png\"),\n                    formatted(\"Failed to write image %s\", path.c_str()));\n            }\n        }\n\n        try {\n            imagePtr.reset(GLTF::Image::load(path.generic_string()));\n        } catch (std::exception &ex) {\n            MayaException::printError(\n                formatted(\"Failed to load image '%s': %s\", path.c_str(), ex.what()));\n        }\n    }\n    return imagePtr.get();\n}\n\nstatic GLTF::Constants::WebGL\ngetSamplerWrapping(const ImageTilingFlags tiling) {\n    // TODO: Verify mapping\n    switch (tiling) {\n    case IMAGE_TILING_Wrap:\n        return GLTF::Constants::WebGL::REPEAT;\n    case IMAGE_TILING_Mirror:\n    case IMAGE_TILING_Wrap | IMAGE_TILING_Mirror:\n        return GLTF::Constants::WebGL::MIRRORED_REPEAT;\n    default:\n        return GLTF::Constants::WebGL::CLAMP_TO_EDGE;\n    }\n}\n\n/*\nFrom the Maya documentation:\n\nFor Viewport 2.0, the filter types supported are as follows:\n\nOff:\n        No filter.\n        No mipmaps are built and point sampling is used.\n        Your resulting image may be pixelated.\n\nBox:\n        Point sampling is performed on mipmap textures.\n        Mipmapped textures are used when zooming away from an object\n        so that textures appear less noisy when zoomed out.\n\nMipmap, Quadratic, Quartic, Gaussian:\n        Trilinear filtering is used and sampling is performed between mipmaps.\n        This option provides the smoothest results and produces smooth results\n        when the object is zoomed out.\n*/\nstatic GLTF::Constants::WebGL\ngetSamplerMinFilter(const ImageFilterKind filter) {\n    switch (filter) {\n    case IMAGE_FILTER_Off:\n        return GLTF::Constants::WebGL::NEAREST;\n    case IMAGE_FILTER_Box:\n        return GLTF::Constants::WebGL::LINEAR_MIPMAP_NEAREST;\n    default:;\n        return GLTF::Constants::WebGL::LINEAR_MIPMAP_LINEAR;\n    }\n}\nstatic GLTF::Constants::WebGL\ngetSamplerMagFilter(const ImageFilterKind filter) {\n    switch (filter) {\n    case IMAGE_FILTER_Off:\n    case IMAGE_FILTER_Box:\n        return GLTF::Constants::WebGL::NEAREST;\n    default:;\n        return GLTF::Constants::WebGL::LINEAR;\n    }\n}\n\nGLTF::Sampler *ExportableResources::getSampler(const ImageFilterKind filter,\n                                               const ImageTilingFlags uTiling,\n                                               const ImageTilingFlags vTiling) {\n    const auto key = (filter << 8) | (vTiling << 4) | uTiling;\n\n    auto &samplerPtr = m_samplerMap[key];\n    if (!samplerPtr) {\n        samplerPtr = std::make_unique<GLTF::Sampler>();\n        samplerPtr->wrapS = getSamplerWrapping(uTiling);\n        samplerPtr->wrapT = getSamplerWrapping(vTiling);\n        samplerPtr->magFilter = getSamplerMagFilter(filter);\n        samplerPtr->minFilter = getSamplerMinFilter(filter);\n    }\n    return samplerPtr.get();\n}\n\nGLTF::Texture *ExportableResources::getTexture(GLTF::Image *image,\n                                               GLTF::Sampler *sampler) {\n    const auto key = std::make_pair(image, sampler);\n\n    auto &texturePtr = m_TextureMap[key];\n    if (!texturePtr) {\n        texturePtr = std::make_unique<GLTF::Texture>();\n        texturePtr->source = image;\n        texturePtr->sampler = sampler;\n    }\n    return texturePtr.get();\n}\n\nvoid ExportableResources::getAllAccessors(\n    std::vector<GLTF::Accessor *> &accessors) {\n    // None\n}\n\nExportableMaterial *ExportableResources::getDebugMaterial(const Float3 &hsv) {\n    auto &materialPtr = m_debugMaterialMap[hsv];\n    if (!materialPtr) {\n        materialPtr = std::make_unique<ExportableDebugMaterial>(hsv);\n    }\n\n    return materialPtr.get();\n}\n"
  },
  {
    "path": "src/ExportableResources.h",
    "content": "#pragma once\r\n#include \"ExportableItem.h\"\r\n#include \"ExportableMaterial.h\"\r\n#include \"filesystem.h\"\r\n\r\nclass Arguments;\r\ntypedef std::string MayaFilename;\r\ntypedef std::string MayaNodeName;\r\n\r\nclass ExportableMaterial;\r\nclass ExportableMesh;\r\n\r\nenum ImageTilingFlags { IMAGE_TILING_Wrap = 1, IMAGE_TILING_Mirror = 2 };\r\n\r\nenum ImageFilterKind {\r\n    IMAGE_FILTER_Off = 0,\r\n    IMAGE_FILTER_MipMap = 1,\r\n    IMAGE_FILTER_Box = 2,\r\n    IMAGE_FILTER_Quadratic = 3,\r\n    IMAGE_FILTER_Quartic = 4,\r\n    IMAGE_FILTER_Gaussian = 5\r\n};\r\n\r\nclass ExportableResources : public ExportableItem {\r\n  public:\r\n    ExportableResources(const Arguments &args);\r\n    ~ExportableResources();\r\n\r\n    const Arguments &arguments() const { return m_args; }\r\n\r\n    ExportableMaterial *getDefaultMaterial() { return &m_defaultMaterial; }\r\n    ExportableMaterial *getDebugMaterial(const Float3 &hue);\r\n    ExportableMaterial *getMaterial(const MObject &shaderGroup);\r\n\r\n    GLTF::Image *getImage(fs::path path);\r\n\r\n    GLTF::Sampler *getSampler(const ImageFilterKind filter,\r\n                              const ImageTilingFlags uTiling,\r\n                              const ImageTilingFlags vTiling);\r\n\r\n    GLTF::Texture *getTexture(GLTF::Image *image, GLTF::Sampler *sampler);\r\n\r\n    // std::map<MayaFilename, std::unique_ptr<GLTF::Image>> imageMap;\r\n    // std::map<MayaNodeName, std::unique_ptr<GLTF::Texture>> textureMap;\r\n    // std::map<MayaNodeName, std::unique_ptr<GLTF::Sampler>> samplerMap;\r\n\r\n    void getAllAccessors(std::vector<GLTF::Accessor *> &accessors);\r\n\r\n  private:\r\n    std::map<MayaNodeName, std::unique_ptr<ExportableMaterial>> m_materialMap;\r\n    std::map<Float3, std::unique_ptr<ExportableMaterial>> m_debugMaterialMap;\r\n    std::map<std::string, std::unique_ptr<GLTF::Image>> m_imageMap;\r\n    std::map<int, std::unique_ptr<GLTF::Sampler>> m_samplerMap;\r\n    std::map<std::pair<GLTF::Image *, GLTF::Sampler *>,\r\n             std::unique_ptr<GLTF::Texture>>\r\n        m_TextureMap;\r\n\r\n    ExportableDefaultMaterial m_defaultMaterial;\r\n    const Arguments &m_args;\r\n};\r\n"
  },
  {
    "path": "src/ExportableScene.cpp",
    "content": "#include \"externals.h\"\r\n\r\n#include \"ExportableNode.h\"\r\n#include \"ExportableScene.h\"\r\n#include \"MayaException.h\"\r\n\r\nExportableScene::ExportableScene(ExportableResources &resources) : m_resources(resources) {}\r\n\r\nExportableScene::~ExportableScene() = default;\r\n\r\nvoid ExportableScene::updateCurrentValues() {\r\n    for (auto &&pair : m_table) {\r\n        auto &node = pair.second;\r\n        node->updateNodeTransforms(m_currentTransformCache);\r\n        auto *mesh = node->mesh();\r\n        if (mesh) {\r\n            mesh->updateWeights();\r\n        }\r\n    }\r\n}\r\n\r\nvoid ExportableScene::mergeRedundantShapeNodes() {\r\n    std::set<NodeTable::key_type> redundantKeys;\r\n\r\n    for (auto &&pair : m_table) {\r\n        auto &node = pair.second;\r\n        if (node->tryMergeRedundantShapeNode()) {\r\n            redundantKeys.insert(pair.first);\r\n        }\r\n    }\r\n\r\n    for (auto &&key : redundantKeys) {\r\n        m_table.erase(key);\r\n    }\r\n}\r\n\r\nExportableNode *ExportableScene::getNode(const MDagPath &dagPath) {\r\n    MStatus status;\r\n\r\n    const std::string fullDagPath{dagPath.fullPathName(&status).asChar()};\r\n    THROW_ON_FAILURE(status);\r\n\r\n    MObject mayaNode = dagPath.node(&status);\r\n    if (mayaNode.isNull() || status.error()) {\r\n        cerr << \"glTF2Maya: skipping '\" << fullDagPath << \"' as it is not a node\" << endl;\r\n        return nullptr;\r\n    }\r\n\r\n    auto &ptr = m_table[fullDagPath];\r\n    if (ptr == nullptr) {\r\n        ptr.reset(new ExportableNode(dagPath));\r\n        ptr->load(*this, m_initialTransformCache);\r\n    }\r\n    return ptr.get();\r\n}\r\n\r\nExportableNode *ExportableScene::getParent(ExportableNode *node) {\r\n    auto dagPath = node->dagPath;\r\n\r\n    ExportableNode *parentNode = nullptr;\r\n\r\n    MDagPath parentDagPath;\r\n    if (findLogicalParent(dagPath, parentDagPath)) {\r\n        // Logical parent overrides Maya's parent.\r\n        // TODO: Check for cycles!\r\n        parentNode = getNode(parentDagPath);\r\n    }\r\n\r\n    // Find first ancestor that is a Maya node.\r\n    // That will become our glTF parent.\r\n    while (!parentNode) {\r\n        dagPath.pop();\r\n        if (dagPath.length() <= 0)\r\n            break;\r\n\r\n        parentNode = getNode(dagPath);\r\n    }\r\n\r\n    return parentNode;\r\n}\r\n\r\nvoid ExportableScene::getAllAccessors(AccessorsPerDagPath &accessors) {\r\n    for (auto &&pair : m_table) {\r\n        auto &node = pair.second;\r\n\r\n        node->getAllAccessors(accessors[node->dagPath]);\r\n    }\r\n}\r\n\r\nvoid ExportableScene::registerOrphanNode(ExportableNode *node) { m_orphans[node->dagPath] = node; }\r\n\r\n// int ExportableScene::distanceToRoot(MDagPath dagPath) {\r\n//     int distance;\r\n//\r\n//     // Find first ancestor node.\r\n//     // That is our logical parent.\r\n//     for (distance = 0; dagPath.length() > 0; ++distance) {\r\n//         dagPath.pop();\r\n//     }\r\n//\r\n//     return distance;\r\n// }\r\n\r\nbool ExportableScene::findLogicalParent(const MFnDagNode &childDagNode, MDagPath &parentDagPath) {\r\n    parentDagPath = MDagPath();\r\n\r\n    const auto childName = childDagNode.partialPathName();\r\n\r\n    const auto logicalParentPlug = childDagNode.findPlug(\"Maya2glTF_LogicalParent\");\r\n    if (logicalParentPlug.isNull())\r\n        return false;\r\n\r\n    MString logicalParentName;\r\n    if (!logicalParentPlug.getValue(logicalParentName))\r\n        return false;\r\n\r\n    MSelectionList selection;\r\n    selection.add(logicalParentName);\r\n    if (selection.length() == 0) {\r\n        cout << prefix << \"WARNING: Logical parent '\" << logicalParentName.asChar() << \" not found on node '\"\r\n             << childName << \"'\" << endl;\r\n        return false;\r\n    }\r\n\r\n    if (selection.length() > 1) {\r\n        cout << prefix << \"WARNING: More than one logical parent matching '\" << logicalParentName.asChar()\r\n             << \" was found on node '\" << childName << \"'\" << endl;\r\n        return false;\r\n    }\r\n\r\n    MDagPath logicalParentDagPath;\r\n    if (!selection.getDagPath(0, logicalParentDagPath)) {\r\n        cout << prefix << \"WARNING: Failed to get DAG path of logical parent '\" << logicalParentName.asChar()\r\n             << \" on node '\" << childName << \"'\" << endl;\r\n        return false;\r\n    }\r\n\r\n    parentDagPath = logicalParentDagPath;\r\n    cout << prefix << \"Found logical parent '\" << logicalParentDagPath.partialPathName().asChar() << \" on node '\"\r\n         << childName << \"'\" << endl;\r\n    return true;\r\n}\r\n"
  },
  {
    "path": "src/ExportableScene.h",
    "content": "#pragma once\r\n#include \"Arguments.h\"\r\n#include \"ExportableResources.h\"\r\n#include \"Transform.h\"\r\n\r\nclass ExportableNode;\r\n\r\ntypedef std::map<std::string, std::unique_ptr<ExportableNode>> NodeTable;\r\n\r\n// OrphanNodes = nodes without a parent. We use the MDagPath as a key to make\r\n// sure we get a deterministic output (pointers change)\r\ntypedef std::map<MDagPath, ExportableNode *, MDagPathComparer> OrphanNodes;\r\n\r\ntypedef std::map<MDagPath, std::vector<GLTF::Accessor *>, MDagPathComparer> AccessorsPerDagPath;\r\n\r\n// Maps each DAG path to the corresponding node\r\n// Owns and creates each node on the fly.\r\nclass ExportableScene {\r\n  public:\r\n    explicit ExportableScene(ExportableResources &resources);\r\n    ~ExportableScene();\r\n\r\n    ExportableResources &resources() const { return m_resources; }\r\n\r\n    const Arguments &arguments() const { return m_resources.arguments(); }\r\n\r\n    const OrphanNodes &orphans() const { return m_orphans; }\r\n\r\n    // Update all node transforms using the values at the current frame\r\n    void updateCurrentValues();\r\n\r\n    void mergeRedundantShapeNodes();\r\n\r\n    // Gets or creates the node\r\n    // Returns null if the DAG path has no node\r\n    ExportableNode *getNode(const MDagPath &dagPath);\r\n\r\n    // Gets or creates the parent of the node.\r\n    // Returns null if the node has no logical parent.\r\n    ExportableNode *getParent(ExportableNode *node);\r\n\r\n    void getAllAccessors(AccessorsPerDagPath &accessors);\r\n\r\n    // Register a node without parent\r\n    void registerOrphanNode(ExportableNode *node);\r\n\r\n    // static int distanceToRoot(MDagPath dagPath);\r\n\r\n    const NodeTable &table() const { return m_table; }\r\n\r\n    GLTF::Scene glScene;\r\n\r\n  private:\r\n    DISALLOW_COPY_MOVE_ASSIGN(ExportableScene);\r\n\r\n    friend class ExportableNode;\r\n\r\n    static bool findLogicalParent(const MFnDagNode &childDagNode, MDagPath &parentDagPath);\r\n\r\n    ExportableResources &m_resources;\r\n    NodeTable m_table;\r\n    NodeTransformCache m_initialTransformCache;\r\n    NodeTransformCache m_currentTransformCache;\r\n    OrphanNodes m_orphans;\r\n};\r\n"
  },
  {
    "path": "src/ExportableTexture.cpp",
    "content": "#include \"externals.h\"\n\n#include \"Arguments.h\"\n#include \"DagHelper.h\"\n#include \"ExportableResources.h\"\n#include \"ExportableTexture.h\"\n#include \"MayaException.h\"\n\nExportableTexture::ExportableTexture(Private, ExportableResources &resources,\n                                     const MObject &obj,\n                                     const char *attributeName) {\n    if (resources.arguments().skipMaterialTextures)\n        return;\n\n    connectedObject = DagHelper::findNodeConnectedTo(obj, attributeName);\n    if (connectedObject.isNull())\n        return;\n\n    MStatus status;\n    MFnDependencyNode connectedNode(connectedObject, &status);\n    THROW_ON_FAILURE(status);\n\n    const auto apiType = connectedObject.apiType();\n    if (apiType != MFn::kFileTexture) {\n        MayaException::printError(formatted(\"Unsupported texture node '%s' #%d\",\n                                            connectedObject.apiTypeStr(),\n                                            apiType));\n        return;\n    }\n\n    if (!DagHelper::getPlugValue(connectedObject, \"fileTextureName\",\n                                 imageFilePath)) {\n        MayaException::printError(formatted(\"Failed to get %s.fileTextureName\",\n                                            connectedNode.name().asChar()));\n        return;\n    }\n\n    int filterType = IMAGE_FILTER_MipMap;\n    DagHelper::getPlugValue(connectedObject, \"filterType\", filterType);\n\n    int uWrap = false;\n    int vWrap = false;\n    int uMirror = false;\n    int vMirror = false;\n\n    DagHelper::getPlugValue(connectedObject, \"wrapU\", uWrap);\n    DagHelper::getPlugValue(connectedObject, \"wrapV\", vWrap);\n    DagHelper::getPlugValue(connectedObject, \"mirrorU\", uMirror);\n    DagHelper::getPlugValue(connectedObject, \"mirrorV\", vMirror);\n\n    cout << prefix << \"Found texture '\" << imageFilePath << \"'\"\n         << \" with filter type = \" << filterType\n         << \", image wrapping = \" << uWrap << \" \" << vWrap\n         << \", mirror = \" << uMirror << \" \" << vMirror << endl;\n\n    auto uTiling = uWrap * IMAGE_TILING_Wrap + uMirror * IMAGE_TILING_Mirror;\n    auto vTiling = vWrap * IMAGE_TILING_Wrap + vMirror * IMAGE_TILING_Mirror;\n\n    glSampler = resources.getSampler(static_cast<ImageFilterKind>(filterType),\n                                     static_cast<ImageTilingFlags>(uTiling),\n                                     static_cast<ImageTilingFlags>(vTiling));\n    assert(glSampler);\n\n    const auto imagePtr = resources.getImage(imageFilePath.asChar());\n    if (imagePtr) {\n        glTexture = resources.getTexture(imagePtr, glSampler);\n        assert(glTexture);\n    }\n}\n\nstd::unique_ptr<ExportableTexture>\nExportableTexture::tryCreate(ExportableResources &resources, const MObject &obj,\n                             const char *attributeName) {\n\n    auto instance = std::make_unique<ExportableTexture>(Private(), resources,\n                                                        obj, attributeName);\n    return instance->glTexture ? std::move(instance) : nullptr;\n}\n\nGLTF::Texture *ExportableTexture::tryLoad(ExportableResources &resources,\n                                          const MObject &obj,\n                                          const char *attributeName) {\n    const auto instance = tryCreate(resources, obj, attributeName);\n    return instance ? instance->glTexture : nullptr;\n}\n\nExportableTexture::~ExportableTexture() = default;\n"
  },
  {
    "path": "src/ExportableTexture.h",
    "content": "#pragma once\n\n#include \"macros.h\"\nclass ExportableResources;\n\n/** The ExportableTexture just creates textures and samples in the resources, it\n * does not own them! */\nclass ExportableTexture {\n    struct Private {};\n\n  public:\n    static std::unique_ptr<ExportableTexture>\n    tryCreate(ExportableResources &resources, const MObject &obj,\n              const char *attributeName);\n\n    static GLTF::Texture *tryLoad(ExportableResources &resources,\n                                  const MObject &obj,\n                                  const char *attributeName);\n\n    virtual ~ExportableTexture();\n\n    GLTF::Texture *glTexture = nullptr;\n    GLTF::Sampler *glSampler = nullptr;\n\n    MObject connectedObject;\n    MString imageFilePath;\n\n    ExportableTexture(Private, ExportableResources &resources,\n                      const MObject &obj, const char *attributeName);\n\n  private:\n    ExportableTexture() = default;\n    DISALLOW_COPY_MOVE_ASSIGN(ExportableTexture);\n};\n"
  },
  {
    "path": "src/Exporter.cpp",
    "content": "#include \"externals.h\"\r\n\r\n#include \"Arguments.h\"\r\n#include \"ExportableAsset.h\"\r\n#include \"Exporter.h\"\r\n#include \"MayaException.h\"\r\n#include \"OutputWindow.h\"\r\n\r\nExporter::Exporter() = default;\r\n\r\nExporter::~Exporter() = default;\r\n\r\nvoid *Exporter::createInstance() { return new Exporter(); }\r\n\r\nvoid Exporter::printFatalError() {\r\n    std::stringstream ss;\r\n    ss << \"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\"\r\n          \"!\"\r\n       << endl;\r\n    ss << \"Ouch something went really wrong (an access violation occurred) :-( \"\r\n          \" \"\r\n       << endl;\r\n    ss << \"Your Maya scene might be corrupt! Save to a *temp* file, and \"\r\n          \"restart \"\r\n       << endl;\r\n    ss << \"We're sorry for the inconvenience. Please file a bug report at:     \"\r\n          \" \"\r\n       << endl;\r\n    ss << \"https://github.com/Ziriax/maya2glTF/issues                          \"\r\n          \" \"\r\n       << endl;\r\n    ss << \"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\"\r\n          \"!\"\r\n       << endl;\r\n\r\n    const auto message = ss.str();\r\n    cerr << message << endl;\r\n\r\n    const auto command = MString(\"print \") + escaped(message).c_str();\r\n    MGlobal::executeCommand(command);\r\n}\r\n\r\n#ifdef _MSC_VER\r\n\r\n#include <excpt.h>\r\n#include <windows.h>\r\n\r\nint filter(const unsigned int code, struct _EXCEPTION_POINTERS *ep) {\r\n    return code == EXCEPTION_ACCESS_VIOLATION ? EXCEPTION_EXECUTE_HANDLER\r\n                                              : EXCEPTION_CONTINUE_SEARCH;\r\n}\r\n\r\nMStatus Exporter::doIt(const MArgList &args) {\r\n    __try {\r\n        // https://forums.autodesk.com/t5/maya-programming/c-api-not-printing-to-output-window/td-p/4260798/page/2\r\n        cout.set_rdbuf(MStreamUtils::stdOutStream().rdbuf());\r\n        cerr.set_rdbuf(MStreamUtils::stdErrorStream().rdbuf());\r\n\r\n        auto status = run(args);\r\n        return status;\r\n    } __except (filter(GetExceptionCode(), GetExceptionInformation())) {\r\n        printFatalError();\r\n\r\n        assert(false);\r\n        return MStatus::kFailure;\r\n    }\r\n}\r\n\r\n#else\r\n\r\nMStatus Exporter::doIt(const MArgList &args) {\r\n    auto status = run(args);\r\n    return status;\r\n}\r\n\r\n#endif\r\n\r\nbool Exporter::isUndoable() const { return false; }\r\n\r\nbool Exporter::hasSyntax() const { return true; }\r\n\r\nvoid Exporter::exportScene(const Arguments &args) {\r\n    ExportableAsset exportableAsset(args);\r\n    exportableAsset.save();\r\n}\r\n\r\nMStatus Exporter::run(const MArgList &args) const {\r\n    try {\r\n        std::cout << prefix << \"Parsing arguments...\" << endl;\r\n        const Arguments arguments(args, syntax());\r\n\r\n        if (arguments.clearOutputWindow) {\r\n            OutputWindow().clear();\r\n        }\r\n\r\n        std::cout << prefix << \"Starting export...\" << endl;\r\n        exportScene(arguments);\r\n\r\n        std::cout << prefix << \"Finished export :-)\" << endl;\r\n        std::cout << \"---------------------------------------------------------\"\r\n                     \"-----------------------\"\r\n                  << endl;\r\n\r\n        return MStatus::kSuccess;\r\n    } catch (const MayaException &ex) {\r\n        MayaException::printError(ex.what(), ex.status);\r\n    } catch (const std::exception &ex) {\r\n        MayaException::printError(ex.what());\r\n    } catch (...) {\r\n        MayaException::printError(\"Unexpected fatal error!\");\r\n    }\r\n\r\n    return MStatus::kFailure;\r\n}\r\n"
  },
  {
    "path": "src/Exporter.h",
    "content": "#pragma once\n#include \"MeshSemantics.h\"\n\nclass Arguments;\n\nclass Exporter : public MPxCommand {\n  public:\n    Exporter();\n    ~Exporter();\n\n    static void *createInstance();\n\n    MStatus doIt(const MArgList &args) override;\n\n    bool isUndoable() const override;\n\n    bool hasSyntax() const override;\n\n    static void exportScene(const Arguments &args);\n\n  private:\n    DISALLOW_COPY_MOVE_ASSIGN(Exporter);\n    MStatus run(const MArgList &args) const;\n    static void printFatalError();\n};\n"
  },
  {
    "path": "src/IndentableStream.cpp",
    "content": "#include \"externals.h\"\n\n#include \"IndentableStream.h\"\n\nostream &prefix(ostream &stream) {\n    std::time_t t = std::time(nullptr);\n    std::tm* buf = std::localtime(&t);\n\n    stream << \"maya2glTF [\" << std::put_time(buf, \"%T\") << \"] \";\n    return stream;\n}\n\nIndentationBuffer::IndentationBuffer(std::streambuf *sbuf)\n    : m_streamBuffer(sbuf), m_indentationLevel(0), m_shouldIndent(true) {}\n\nstd::basic_streambuf<char>::int_type\nIndentationBuffer::overflow(const int_type c) {\n    if (traits_type::eq_int_type(c, traits_type::eof()))\n        return m_streamBuffer->sputc(c);\n\n    if (m_shouldIndent) {\n        fill_n(std::ostreambuf_iterator<char>(m_streamBuffer),\n               m_indentationLevel, '\\t');\n        m_shouldIndent = false;\n    }\n\n    if (traits_type::eq_int_type(m_streamBuffer->sputc(c), traits_type::eof()))\n        return traits_type::eof();\n\n    if (traits_type::eq_int_type(c, traits_type::to_char_type('\\n')))\n        m_shouldIndent = true;\n\n    return traits_type::not_eof(c);\n}\n"
  },
  {
    "path": "src/IndentableStream.h",
    "content": "#pragma once\n\n#include \"externals.h\"\n\n/** Prints the common prefix (\"maya2glTF@<time>: \") */\nostream &prefix(ostream &stream);\n\nclass JsonSeparator {\n  public:\n    JsonSeparator(const char *text) : m_text(text), m_current(\"\") {}\n\n    friend ostream &operator<<(ostream &os, JsonSeparator &sep) {\n        os << sep.m_current;\n        sep.m_current = sep.m_text;\n        return os;\n    }\n\n  private:\n    const char *m_text;\n    const char *m_current;\n};\n\nclass IndentationBuffer : public std::streambuf {\n  public:\n    IndentationBuffer(std::streambuf *sbuf);\n\n    int indentationLevel() const { return m_indentationLevel; }\n\n    void indent() { ++m_indentationLevel; }\n\n    void undent() { m_indentationLevel = std::max(0, m_indentationLevel - 1); }\n\n  protected:\n    int_type overflow(const int_type c) override;\n\n    std::streambuf *m_streamBuffer;\n    int m_indentationLevel;\n    bool m_shouldIndent;\n};\n\nclass IndentableStream : public ostream {\n  public:\n    explicit IndentableStream(ostream &os)\n        : ostream(&m_indentationBuffer), m_indentationBuffer(os.rdbuf()),\n          m_itemsPerLine(1) {}\n\n    IndentableStream &indent() {\n        m_indentationBuffer.indent();\n        return *this;\n    }\n\n    IndentableStream &undent() {\n        m_indentationBuffer.undent();\n        return *this;\n    }\n\n    friend std::ostream &itemsPerLine(std::ostream &out, size_t ipl) {\n        const auto is = dynamic_cast<IndentableStream *>(&out);\n        if (is) {\n            is->m_itemsPerLine = ipl;\n        }\n\n        return out;\n    }\n\n    size_t itemsPerLine() const { return m_itemsPerLine; }\n\n    size_t itemsPrecision() const { return m_itemsPrecision; }\n\n  private:\n    IndentationBuffer m_indentationBuffer;\n    size_t m_itemsPerLine;\n    size_t m_itemsPrecision;\n};\n\ninline std::ostream &indent(std::ostream &stream) {\n    auto is = dynamic_cast<IndentableStream *>(&stream);\n    return is ? is->indent() : stream;\n}\n\ninline std::ostream &undent(std::ostream &stream) {\n    auto is = dynamic_cast<IndentableStream *>(&stream);\n    return is ? is->undent() : stream;\n}\n\ntemplate <typename T>\nstd::ostream &operator<<(std::ostream &out, const std::vector<T> &iterable) {\n    out << std::fixed;\n\n    const auto itemsIndent = '\\t';\n    const auto newLineIndent = std::string(\",\\n\") + itemsIndent;\n    const auto itemSeparator = std::string(\",\\t\");\n    const auto noSeparator = std::string(\"\");\n\n    out << '[' << endl << itemsIndent;\n\n    const auto *separator = &noSeparator;\n\n    auto is = dynamic_cast<IndentableStream *>(&out);\n    const int itemsPerLine = static_cast<int>(is ? is->itemsPerLine() : 10);\n    const int precision = static_cast<int>(is ? is->itemsPrecision() : 3);\n\n    int counter = itemsPerLine;\n\n    for (auto it = iterable.begin(); it != iterable.end(); ++it) {\n        const auto &val = *it;\n\n        out << *separator << std::setprecision(precision) << val;\n\n        if (--counter <= 0) {\n            separator = &newLineIndent;\n            counter = static_cast<int>(itemsPerLine);\n        } else {\n            separator = &itemSeparator;\n        }\n    }\n\n    out << endl << \"]\";\n\n    return out;\n}\n\ntemplate <typename K, typename V>\nstd::ostream &operator<<(std::ostream &out, const std::pair<K, V> &pair) {\n    out << '{' << '\"' << pair.first << '\"' << ':' << pair.second << '}';\n    return out;\n}\n"
  },
  {
    "path": "src/MayaException.cpp",
    "content": "#include \"externals.h\"\n\n#include \"MayaException.h\"\n\nvoid MayaException::throwIt(const MStatus status, const std::string &message,\n                            const char *file, const int line,\n                            const char *function) {\n    std::stringstream err;\n    std::string path(file);\n    std::replace(path.begin(), path.end(), '\\\\', '/');\n    err << prefix << \"*** ERROR *** \" << message << \" [\"\n        << status.errorString().asChar() << \"] in \" << function << \" (\" << path\n        << \":\" << line << \")\";\n    throw MayaException(status, err.str());\n}\n\nMStatus MayaException::printError(const std::string &message,\n                                  const MStatus &status) {\n    MGlobal::executeCommand(MString(\"error \") + escaped(message).c_str());\n    cerr << prefix << \"*** ERROR *** \" << message << \" [\"\n         << status.errorString().asChar() << \"]\" << endl;\n    return status;\n}\n\nvoid MayaException::printError(const std::string &message) {\n    MGlobal::executeCommand(MString(\"error \") + escaped(message).c_str());\n    cerr << prefix << \"*** ERROR *** \" << message << endl;\n}\n\nMStatus MayaException::printWarning(const std::string &message, const MStatus &status) {\n    MGlobal::executeCommand(MString(\"warning \") + escaped(message).c_str());\n    cerr << prefix << \"*** WARNING *** \" << message << \" [\" << status.errorString().asChar() << \"]\" << endl;\n    return status;\n}\n\nvoid MayaException::printWarning(const std::string &message) {\n    MGlobal::executeCommand(MString(\"warning \") + escaped(message).c_str());\n    cerr << prefix << \"*** WARNING  *** \" << message << endl;\n}\n"
  },
  {
    "path": "src/MayaException.h",
    "content": "#pragma once\n#include \"dump.h\"\n\nclass MayaException : public std::runtime_error {\n  public:\n    MayaException(const MStatus error, const std::string &message) : runtime_error(message), status(error) {}\n\n    const MStatus status;\n\n    /** Formats an error message and throws me */\n    static void throwIt(const MStatus status, const std::string &message, const char *file, int line,\n                        const char *function);\n\n    /** Prints an error to the standard error and the Maya script window */\n    static MStatus printError(const std::string &message, const MStatus &error);\n\n    /** Prints an error to the standard error and the Maya script window */\n    static void printError(const std::string &message);\n\n    /** Prints an warning to the standard error and the Maya script window */\n    static MStatus printWarning(const std::string &message, const MStatus &error);\n\n    /** Prints an warning to the standard error and the Maya script window */\n    static void printWarning(const std::string &message);\n};\n\n#ifdef _DEBUG\n#define DEBUG_ASSERT_SUCCESS(__expression__) assert(MStatus::kSuccess == (__expression__));\n#else\n#define DEBUG_ASSERT_SUCCESS(__expression__)\n#endif\n\n#define THROW_ON_FAILURE(__expression__)                                                                               \\\n    {                                                                                                                  \\\n        const MStatus __status__ = (__expression__); /* NOLINT */                                                      \\\n        DEBUG_ASSERT_SUCCESS(__status__);                                                                              \\\n        if (MStatus::kSuccess != __status__)                                                                           \\\n            MayaException::throwIt(__status__, \"\", __FILE__, __LINE__, __FUNCTION__);                                  \\\n    }\n\n#define RETURN_ON_FAILURE(__expression__)                                                                              \\\n    {                                                                                                                  \\\n        const MStatus __status__ = (__expression__); /* NOLINT */                                                      \\\n        if (MStatus::kSuccess != __status__)                                                                           \\\n            return __status__;                                                                                         \\\n    }\n\n#define THROW_ON_FAILURE_WITH(__expression__, __message__)                                                             \\\n    {                                                                                                                  \\\n        const MStatus __status__ = (__expression__); /* NOLINT */                                                      \\\n        DEBUG_ASSERT_SUCCESS(__status__);                                                                              \\\n        if (MStatus::kSuccess != __status__)                                                                           \\\n            MayaException::throwIt(__status__, (__message__), __FILE__, __LINE__, __FUNCTION__);                       \\\n    }\n\ntemplate <typename... Args> bool checkAndReportStatus(const MStatus &status, const char *format, Args... args) {\n    if (status == MStatus::kSuccess)\n        return true;\n\n    cerr << prefix << \"WARNING: \" << formatted(format, args...) << endl;\n    return false;\n}\n"
  },
  {
    "path": "src/MayaUtils.cpp",
    "content": "#include \"externals.h\"\n\n#include \"MayaException.h\"\n#include \"MayaUtils.h\"\n\nnamespace utils {\nMMatrix getMatrix(const MPlug &plug) {\n    MStatus status;\n    MObject matrixDataObject;\n    THROW_ON_FAILURE(plug.getValue(matrixDataObject));\n    const MMatrix &mayaMatrix =\n        MFnMatrixData(matrixDataObject, &status).matrix();\n    THROW_ON_FAILURE(status);\n    return mayaMatrix;\n}\n\nMMatrix getMatrix(const MFnDependencyNode &node, const char *plugName) {\n    MStatus status;\n    MPlug plug = node.findPlug(plugName, true, &status);\n    THROW_ON_FAILURE(status);\n    return getMatrix(plug);\n}\n\nMTransformationMatrix getTransformation(const MDagPath &path) {\n    MStatus status;\n\n    MFnDagNode transFn(path);\n    MPlug matrixPlugArray = transFn.findPlug(\"worldMatrix\", true, &status);\n    THROW_ON_FAILURE(status);\n\n    matrixPlugArray.evaluateNumElements(&status);\n    THROW_ON_FAILURE(status);\n\n    MPlug matrixPlug = matrixPlugArray.elementByPhysicalIndex(0, &status);\n    THROW_ON_FAILURE(status);\n\n    MObject matrixO;\n    THROW_ON_FAILURE(matrixPlug.getValue(matrixO));\n\n    MFnMatrixData fnMat(matrixO, &status);\n    THROW_ON_FAILURE(status);\n\n    return fnMat.transformation();\n}\n\nbool isNotSimpleChar(const char c) { return !isalnum(c); }\n\nMString simpleName(const MString &name) {\n    std::string buffer(name.asChar());\n    replace_if(buffer.begin(), buffer.end(), isNotSimpleChar, '_');\n    return MString(buffer.c_str());\n}\n} // namespace utils\n"
  },
  {
    "path": "src/MayaUtils.h",
    "content": "#pragma once\n\nnamespace utils {\nMMatrix getMatrix(const MPlug &plug);\nMMatrix getMatrix(const MFnDependencyNode &node, const char *plugName);\n\nMTransformationMatrix getTransformation(const MDagPath &path);\n\n// Return a string with all non-alpha-numeric characters replaced with an\n// underscore.\nMString simpleName(const MString &name);\n} // namespace utils\n"
  },
  {
    "path": "src/Mesh.cpp",
    "content": "#include \"externals.h\"\r\n\r\n#include \"Arguments.h\"\r\n#include \"DagHelper.h\"\r\n#include \"ExportableScene.h\"\r\n#include \"MayaException.h\"\r\n#include \"MayaUtils.h\"\r\n#include \"Mesh.h\"\r\n#include \"MeshBlendShapeWeights.h\"\r\n\r\nMesh::Mesh(ExportableScene &scene, MDagPath dagPath,\r\n           const ExportableNode &node) {\r\n    MStatus status = dagPath.extendToShape();\r\n    THROW_ON_FAILURE(status);\r\n\r\n    auto &args = scene.arguments();\r\n\r\n    MFnMesh fnMesh(dagPath, &status);\r\n    THROW_ON_FAILURE(status);\r\n\r\n    MObject blendShapeDeformer =\r\n        args.skipBlendShapes\r\n            ? MObject::kNullObj\r\n            : tryExtractBlendShapeDeformer(fnMesh, args.ignoreMeshDeformers);\r\n\r\n    if (blendShapeDeformer.isNull()) {\r\n        // Single shape\r\n        m_mainShape = std::make_unique<MainShape>(scene, fnMesh, node,\r\n                                                  ShapeIndex::main());\r\n        m_allShapes.emplace_back(m_mainShape.get());\r\n    } else {\r\n        // Shape with morph targets.\r\n        MFnBlendShapeDeformer fnBlendShapeDeformer(blendShapeDeformer, &status);\r\n        THROW_ON_FAILURE(status);\r\n\r\n        const auto deformerName = fnBlendShapeDeformer.name().asChar();\r\n        cout << prefix << \"Processing blend shapes of \" << deformerName << \"...\"\r\n             << endl;\r\n\r\n        const MPlug weightArrayPlug =\r\n            fnBlendShapeDeformer.findPlug(\"weight\", true, &status);\r\n        THROW_ON_FAILURE(status);\r\n\r\n        // We use the MeshBlendShapeWeights helper class to manipulate the\r\n        // weights in order to reconstruct the geometry of deleted blend shape\r\n        // targets. When an exception is thrown, the weights and connections\r\n        // will be restored.\r\n        MeshBlendShapeWeights weightPlugs(weightArrayPlug);\r\n        weightPlugs.breakConnections();\r\n\r\n        auto &weightEntries = weightPlugs.entries();\r\n\r\n        for (auto &&pair : weightEntries) {\r\n            cout << prefix << \"target#\" << pair.second.shapeIndex << \": \"\r\n                 << std::quoted(pair.first, '\\'') << endl;\r\n            cout.flush();\r\n        }\r\n\r\n        // Clear all weights to reconstruct base mesh\r\n        weightPlugs.clearWeightsExceptFor(nullptr);\r\n\r\n        // Reconstruct base mesh\r\n        m_mainShape = std::make_unique<MainShape>(scene, fnMesh, node,\r\n                                                  ShapeIndex::main());\r\n        m_allShapes.emplace_back(m_mainShape.get());\r\n\r\n        for (auto &&pair : weightEntries) {\r\n            auto &entry = pair.second;\r\n            weightPlugs.clearWeightsExceptFor(&entry);\r\n            auto weightPlug = weightPlugs.getWeightPlug(entry);\r\n            auto initialWeight = static_cast<float>(entry.originalWeight);\r\n            auto blendShape = std::make_unique<MeshShape>(\r\n                m_mainShape->indices(), fnMesh, node, args,\r\n                ShapeIndex::target(entry.shapeIndex), weightPlug,\r\n                initialWeight);\r\n            m_allShapes.emplace_back(blendShape.get());\r\n            m_blendShapes.emplace_back(std::move(blendShape));\r\n        }\r\n    }\r\n}\r\n\r\nMesh::~Mesh() = default;\r\n\r\nMObject\r\nMesh::tryExtractBlendShapeDeformer(const MFnMesh &fnMesh,\r\n                                   const MSelectionList &ignoredDeformers) {\r\n    MObject deformer;\r\n    int animatedPlugCount = 0;\r\n\r\n    // Iterate upstream to find all the nodes that affect the mesh.\r\n    MStatus status;\r\n    MPlug plug = fnMesh.findPlug(\"inMesh\", status);\r\n    THROW_ON_FAILURE(status);\r\n\r\n    // TODO: Also look into inverted blend shapes through skinning, pose space\r\n    // deformations, etc..\r\n    if (plug.isConnected()) {\r\n        MItDependencyGraph dgIt(plug, MFn::kInvalid,\r\n                                MItDependencyGraph::kUpstream,\r\n                                MItDependencyGraph::kBreadthFirst,\r\n                                MItDependencyGraph::kNodeLevel, &status);\r\n\r\n        THROW_ON_FAILURE(status);\r\n\r\n        dgIt.disablePruningOnFilter();\r\n\r\n        for (; !dgIt.isDone(); dgIt.next()) {\r\n            MObject thisNode = dgIt.currentItem();\r\n            if (thisNode.hasFn(MFn::kBlendShape)) {\r\n                MFnBlendShapeDeformer fnDeformer(thisNode, &status);\r\n\r\n                MFnDependencyNode dpNode(thisNode);\r\n\r\n                const auto thisName = dpNode.name();\r\n\r\n                if (status == MStatus::kSuccess) {\r\n                    bool isIgnored = false;\r\n                    DagHelper::getPlugValue(thisNode, \"MGi\", isIgnored);\r\n                    if (isIgnored || ignoredDeformers.hasItem(thisNode)) {\r\n                        cout << prefix << \"ignoring blend shape deformer \"\r\n                             << thisName << endl;\r\n                    } else if (deformer.isNull()) {\r\n                        cout << prefix << \"using blend shape deformer \"\r\n                             << thisName << endl;\r\n                        deformer = thisNode;\r\n                    } else {\r\n                        // If we find more than one blend shape deformer, pick\r\n                        // the one with most animated weights.\r\n                        const MPlug weightArrayPlug =\r\n                            fnDeformer.findPlug(\"weight\", true, &status);\r\n                        THROW_ON_FAILURE(status);\r\n\r\n                        MeshBlendShapeWeights weightPlugs(weightArrayPlug);\r\n\r\n                        const auto newAnimatedPlugCount =\r\n                            weightPlugs.animatedPlugCount();\r\n\r\n                        auto skippedName = thisName;\r\n                        auto skippedAnimatedPlugCount = newAnimatedPlugCount;\r\n\r\n                        if (newAnimatedPlugCount > animatedPlugCount) {\r\n                            skippedAnimatedPlugCount = animatedPlugCount;\r\n\r\n                            MFnDependencyNode skippedNode(deformer);\r\n                            skippedName = skippedNode.name();\r\n\r\n                            deformer = thisNode;\r\n                            animatedPlugCount = newAnimatedPlugCount;\r\n                        }\r\n\r\n                        cerr << prefix\r\n                             << \"WARNING: only a single blend shape deformer \"\r\n                                \"is supported, skipping \"\r\n                             << skippedName\r\n                             << \", it has less animated weight plugs \"\r\n                             << skippedAnimatedPlugCount << \" vs \"\r\n                             << animatedPlugCount << endl;\r\n                    }\r\n                } else {\r\n                    cerr << prefix\r\n                         << \"WARNING: unable to extract blend deformer from \"\r\n                         << thisName << \", reason: \" << status.error() << endl;\r\n                }\r\n            }\r\n        }\r\n    }\r\n\r\n    return deformer;\r\n}\r\n\r\nvoid Mesh::dump(class IndentableStream &out, const std::string &name) const {\r\n    out << quoted(name) << \": {\" << endl << indent;\r\n\r\n    JsonSeparator sep(\",\\n\");\r\n\r\n    for (auto &shape : m_allShapes) {\r\n        out << sep;\r\n        shape->dump(out, std::string(\"shape#\") +\r\n                             std::to_string(shape->shapeIndex.arrayIndex()));\r\n    }\r\n\r\n    out << undent << '}';\r\n}\r\n\r\nMesh::Cleanup::~Cleanup() {\r\n    if (!tempOutputMesh.isNull()) {\r\n        MDagModifier dagMod;\r\n        dagMod.deleteNode(tempOutputMesh);\r\n        tempOutputMesh = MObject::kNullObj;\r\n    }\r\n}\r\n\r\nMObject Mesh::getOrCreateOutputShape(MPlug &outputGeometryPlug,\r\n                                     MObject &createdMesh) const {\r\n    MStatus status;\r\n    MPlugArray connections;\r\n    outputGeometryPlug.connectedTo(connections, false, true, &status);\r\n    THROW_ON_FAILURE(status);\r\n\r\n    MObject meshNode = MObject::kNullObj;\r\n\r\n    for (auto i = 0U; i < connections.length() && meshNode.isNull(); ++i) {\r\n        MPlug targetPlug = connections[i];\r\n        MObject targetNode = targetPlug.node();\r\n\r\n        if (!targetNode.isNull()) {\r\n            if (targetNode.hasFn(MFn::kMesh)) {\r\n                meshNode = targetNode;\r\n            }\r\n        }\r\n    }\r\n\r\n    if (meshNode.isNull()) {\r\n        // Not connected to a mesh, create one.\r\n\r\n        // Create the mesh node\r\n        MDagModifier dagMod;\r\n        createdMesh = dagMod.createNode(\"mesh\", MObject::kNullObj, &status);\r\n        THROW_ON_FAILURE(dagMod.doIt());\r\n\r\n        // Make sure we select the shape node, not the transform node.\r\n        MDagPath meshDagPath;\r\n        status = MDagPath::getAPathTo(createdMesh, meshDagPath);\r\n        THROW_ON_FAILURE(status);\r\n        THROW_ON_FAILURE(meshDagPath.extendToShape());\r\n\r\n        // NOTE: The node does not yet have an MFnMesh interface!!!\r\n        // This only happens when it is connected to another node that delivers\r\n        // geometry...\r\n        MFnDagNode dagFn(meshDagPath, &status);\r\n        THROW_ON_FAILURE(status);\r\n\r\n        const MString newSuggestedName =\r\n            \"maya2glTW_\" + utils::simpleName(outputGeometryPlug.name(&status));\r\n        THROW_ON_FAILURE(status);\r\n\r\n        const MString newName = dagFn.setName(newSuggestedName, false, &status);\r\n        THROW_ON_FAILURE(status);\r\n\r\n        cout << prefix << \"Created temporary output mesh '\" << newName\r\n             << \"'. This will be deleted after exporting, but Maya will think \"\r\n                \"your scene is modified, and warn you.\"\r\n             << endl;\r\n\r\n        // Make the mesh invisible\r\n        MPlug intermediateObjectPlug =\r\n            dagFn.findPlug(\"intermediateObject\", true, &status);\r\n        THROW_ON_FAILURE(status);\r\n        THROW_ON_FAILURE(intermediateObjectPlug.setBool(true));\r\n\r\n        MDGModifier dgMod;\r\n\r\n        MPlug inMeshPlug = dagFn.findPlug(\"inMesh\", true, &status);\r\n        THROW_ON_FAILURE(status);\r\n\r\n        THROW_ON_FAILURE(dgMod.connect(outputGeometryPlug, inMeshPlug));\r\n        THROW_ON_FAILURE(dgMod.doIt());\r\n\r\n        // Should now be a mesh...\r\n        if (meshDagPath.hasFn(MFn::kMesh)) {\r\n            meshNode = meshDagPath.node(&status);\r\n            THROW_ON_FAILURE(status);\r\n        }\r\n    }\r\n\r\n    return meshNode;\r\n}\r\n"
  },
  {
    "path": "src/Mesh.h",
    "content": "#pragma once\n\n#include \"MeshShape.h\"\n\nclass ExportableNode;\nclass Arguments;\n\ntypedef std::vector<MeshShape *> MeshShapes;\n\nclass Mesh {\n  public:\n    Mesh(ExportableScene &scene, MDagPath dagPath, const ExportableNode &node);\n    ~Mesh();\n\n    void dump(IndentableStream &out, const std::string &name) const;\n\n    bool isEmpty() const { return m_allShapes.empty(); }\n\n    const MainShape &shape() const { return *m_mainShape; }\n    const MeshShapes &allShapes() const { return m_allShapes; }\n\n  private:\n    DISALLOW_COPY_MOVE_ASSIGN(Mesh);\n\n    struct Cleanup {\n        ~Cleanup();\n        MObject tempOutputMesh;\n    };\n\n    std::unique_ptr<MainShape> m_mainShape;\n    std::vector<std::unique_ptr<MeshShape>> m_blendShapes;\n    MeshShapes m_allShapes;\n\n    Cleanup m_cleanup;\n\n    MObject getOrCreateOutputShape(MPlug &outputGeometryPlug,\n                                   MObject &createdMesh) const;\n\n    static MObject\n    tryExtractBlendShapeDeformer(const MFnMesh &fnMesh,\n                                 const MSelectionList &ignoredDeformers);\n};\n"
  },
  {
    "path": "src/MeshBlendShapeWeights.cpp",
    "content": "#include \"externals.h\"\n\n#include \"MayaException.h\"\n#include \"MeshBlendShapeWeights.h\"\n\nvoid MeshBlendShapeWeights::clearWeightsExceptFor(\n    const WeightPlugEntry *fullWeightEntry) const {\n    const auto fullWeightIndex =\n        fullWeightEntry ? fullWeightEntry->plugIndex : -1;\n\n    for (auto &pair : m_weightPlugEntries) {\n        const auto plugIndex = pair.second.plugIndex;\n\n        MStatus status;\n        MPlug weightPlug =\n            m_weightArrayPlug.elementByLogicalIndex(plugIndex, &status);\n        THROW_ON_FAILURE(status);\n        weightPlug.setDouble(fullWeightIndex == plugIndex ? 1 : 0);\n\n        m_isDeformerModified = true;\n    }\n}\n\nMeshBlendShapeWeights::MeshBlendShapeWeights(const MPlug &weightArrayPlug)\n    : m_weightArrayPlug(weightArrayPlug) {\n    MStatus status;\n\n    // Backup weights and connections.\n    const auto numWeights = m_weightArrayPlug.evaluateNumElements(&status);\n    THROW_ON_FAILURE(status);\n\n    for (auto weightIndex = 0U; weightIndex < numWeights; ++weightIndex) {\n        MPlug weightPlug =\n            m_weightArrayPlug.elementByLogicalIndex(weightIndex, &status);\n        THROW_ON_FAILURE(status);\n\n        std::string plugName{weightPlug.name(&status).asChar()};\n        THROW_ON_FAILURE(status);\n\n        WeightPlugEntry &entry = m_weightPlugEntries[plugName];\n        entry.plugIndex = weightIndex;\n\n        status = weightPlug.getValue(entry.originalWeight);\n        THROW_ON_FAILURE(status);\n\n        entry.isLocked = weightPlug.isLocked(&status);\n        THROW_ON_FAILURE(status);\n\n        // Remember connections.\n        weightPlug.connectedTo(entry.dstConnections, true, false, &status);\n        THROW_ON_FAILURE(status);\n\n        weightPlug.connectedTo(entry.srcConnections, false, true, &status);\n        THROW_ON_FAILURE(status);\n    }\n\n    // Assign indices based on sorted map order\n    int shapeIndex = 0;\n    for (auto &&pair : m_weightPlugEntries) {\n        pair.second.shapeIndex = shapeIndex++;\n    }\n}\n\nvoid MeshBlendShapeWeights::breakConnections() {\n    MStatus status;\n    MDagModifier dagModifier;\n\n    for (auto &pair : m_weightPlugEntries) {\n        const auto weightIndex = pair.second.plugIndex;\n\n        MPlug weightPlug =\n            m_weightArrayPlug.elementByLogicalIndex(weightIndex, &status);\n        THROW_ON_FAILURE(status);\n\n        THROW_ON_FAILURE(weightPlug.setLocked(false));\n\n        const MPlugArray &dstConnections = pair.second.dstConnections;\n        for (auto connectionIndex = 0U;\n             connectionIndex < dstConnections.length(); ++connectionIndex) {\n            status = dagModifier.disconnect(dstConnections[connectionIndex],\n                                            weightPlug);\n            THROW_ON_FAILURE(status);\n            status = dagModifier.doIt();\n            THROW_ON_FAILURE(status);\n        }\n\n        m_isDeformerModified = true;\n    }\n}\n\nint MeshBlendShapeWeights::animatedPlugCount() const {\n    int animatedCount = 0;\n\n    for (auto &pair : m_weightPlugEntries) {\n        const WeightPlugEntry &entry = pair.second;\n        const auto plug = getWeightPlug(entry);\n\n        MStatus status;\n        animatedCount += MAnimUtil::isAnimated(plug, false, &status);\n    }\n\n    return animatedCount;\n}\n\nMeshBlendShapeWeights::~MeshBlendShapeWeights() {\n    if (m_isDeformerModified) {\n        // We don't throw exceptions in this destructor...\n        for (auto &pair : m_weightPlugEntries) {\n            const auto *weightName = pair.first.c_str();\n            const WeightPlugEntry &entry = pair.second;\n\n            const auto weightIndex = entry.plugIndex;\n\n            MStatus status;\n\n            MPlug weightPlug =\n                m_weightArrayPlug.elementByLogicalIndex(weightIndex, &status);\n            if (!checkAndReportStatus(\n                    status, \"Failed to get blend shape weight plug '%s'!\",\n                    weightName))\n                continue;\n\n            if (!checkAndReportStatus(\n                    weightPlug.setDouble(entry.originalWeight),\n                    \"Failed to restore blend shape weight '%s'!\", weightName))\n                continue;\n\n            if (!checkAndReportStatus(\n                    weightPlug.setLocked(entry.isLocked),\n                    \"Failed to restore blend shape locked state '%s'!\",\n                    weightName))\n                continue;\n\n            MDagModifier dagModifier;\n            const MPlugArray &srcConnections = entry.srcConnections;\n            const MPlugArray &dstConnections = entry.dstConnections;\n            for (auto j = 0U; j < srcConnections.length(); j++) {\n                if (!checkAndReportStatus(\n                        dagModifier.connect(weightPlug, srcConnections[j]),\n                        \"Failed to restore blend shape weight source \"\n                        \"connection '%s'!\",\n                        weightName))\n                    continue;\n\n                if (!checkAndReportStatus(dagModifier.doIt(),\n                                          \"Failed to restore blend shape \"\n                                          \"weight source connection '%s'!\",\n                                          weightName))\n                    continue;\n            }\n\n            for (auto j = 0U; j < dstConnections.length(); j++) {\n                if (!checkAndReportStatus(\n                        dagModifier.connect(dstConnections[j], weightPlug),\n                        \"Failed to restore blend shape weight destination \"\n                        \"connection '%s'!\",\n                        weightName))\n                    continue;\n\n                if (!checkAndReportStatus(dagModifier.doIt(),\n                                          \"Failed to restore blend shape \"\n                                          \"weight destination connection '%s'!\",\n                                          weightName))\n                    continue;\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/MeshBlendShapeWeights.h",
    "content": "#pragma once\n#include \"ShapeIndex.h\"\n#include \"macros.h\"\n\nstruct WeightPlugEntry {\n    int shapeIndex;\n    int plugIndex;\n    double originalWeight;\n    bool isLocked;\n    MPlugArray srcConnections;\n    MPlugArray dstConnections;\n};\n\n// The weights are sorted by the plug names, to get a stable ordering even when\n// the plugs are re-ordered between scenes.\ntypedef std::map<std::string, WeightPlugEntry> WeightPlugEntries;\n\n/*\n * Helper class to sample a blend shape weight plugs\n * Parts of this code or borrowed from the Maya to OGRE exporter.\n */\nclass MeshBlendShapeWeights {\n  public:\n    MeshBlendShapeWeights(const MPlug &weightArrayPlug);\n    ~MeshBlendShapeWeights();\n\n    const WeightPlugEntries &entries() const { return m_weightPlugEntries; }\n\n    MPlug getWeightPlug(const WeightPlugEntry &entry) const {\n        return m_weightArrayPlug[entry.plugIndex];\n    }\n\n    void clearWeightsExceptFor(const WeightPlugEntry *fullWeightEntry) const;\n    void breakConnections();\n\n    int animatedPlugCount() const;\n\n  private:\n    DISALLOW_COPY_MOVE_ASSIGN(MeshBlendShapeWeights);\n\n    MPlug m_weightArrayPlug;\n    WeightPlugEntries m_weightPlugEntries;\n    mutable bool m_isDeformerModified = false;\n};\n"
  },
  {
    "path": "src/MeshIndices.cpp",
    "content": "#include \"externals.h\"\n\n#include \"MayaException.h\"\n#include \"MeshIndices.h\"\n#include \"dump.h\"\n\nMeshIndices::MeshIndices(const MeshSemantics *meshSemantics,\n                         const MFnMesh &fnMesh)\n    : meshName(fnMesh.partialPathName().asChar()), semantics(*meshSemantics) {\n    MStatus status;\n\n    const auto instanceCount = fnMesh.instanceCount(true);\n\n    std::vector<MIntArray> mapPolygonToShaderPerInstance(instanceCount);\n\n    const auto numPolygons = fnMesh.numPolygons();\n\n    for (unsigned instanceIndex = 0; instanceIndex < instanceCount;\n         ++instanceIndex) {\n        auto &shading = m_shadingPerInstance[instanceIndex];\n        THROW_ON_FAILURE(fnMesh.getConnectedShaders(\n            instanceIndex, shading.shaderGroups,\n            mapPolygonToShaderPerInstance[instanceIndex]));\n        shading.primitiveToShaderIndexMap.reserve(numPolygons * 2);\n    }\n\n    m_TriangleCount = 0;\n    for (MItMeshPolygon itPoly(fnMesh.object()); !itPoly.isDone();\n         itPoly.next()) {\n        int triangleCount;\n        THROW_ON_FAILURE(itPoly.numTriangles(triangleCount));\n        m_TriangleCount += triangleCount;\n    }\n\n    for (auto kind = 0; kind < Semantic::COUNT; ++kind) {\n        auto &indexSet = m_table.at(kind);\n        const auto n = semantics.descriptions(Semantic::from(kind)).size();\n        for (auto set = 0U; set < n; ++set) {\n            IndexVector indices;\n            indices.reserve(m_TriangleCount * 3);\n            indexSet.push_back(indices);\n        }\n    }\n\n    auto &positions = m_table.at(Semantic::POSITION).at(0);\n    auto &normals = m_table.at(Semantic::NORMAL).at(0);\n    auto &texCoordSets = m_table.at(Semantic::TEXCOORD);\n    auto &tangentSets = m_table.at(Semantic::TANGENT);\n    auto &colorSets = m_table.at(Semantic::COLOR);\n\n    auto &colorSemantics = semantics.descriptions(Semantic::COLOR);\n    auto &texCoordSemantics = semantics.descriptions(Semantic::TEXCOORD);\n    auto &tangentSemantics = semantics.descriptions(Semantic::TANGENT);\n\n    const auto colorSetCount = colorSemantics.size();\n    const auto texCoordSetCount = texCoordSemantics.size();\n    const auto tangentSetCount = tangentSemantics.size();\n\n    const auto numVertices = fnMesh.numVertices(&status);\n    THROW_ON_FAILURE(status);\n\n    std::vector<int> localPolygonVertices(numVertices);\n\n    MPointArray triangleVertexPoints;\n    MIntArray triangleVertexIndices;\n    MIntArray polygonVertexIndices;\n\n    m_triangleToFaceIndexMap.reserve(m_TriangleCount);\n\n    for (MItMeshPolygon itPoly(fnMesh.object()); !itPoly.isDone();\n         itPoly.next()) {\n        const auto polygonIndex = itPoly.index(&status);\n        THROW_ON_FAILURE(status);\n\n        auto numTrianglesInPolygon = 0;\n        THROW_ON_FAILURE(itPoly.numTriangles(numTrianglesInPolygon));\n\n        // Map mesh-vertex-indices to face-vertex-indices.\n        // TODO: Figure out what Maya API does this for us;\n        // we just need the triangles using face-vertex-indices\n        THROW_ON_FAILURE(itPoly.getVertices(polygonVertexIndices));\n        const int numPolygonVertices = polygonVertexIndices.length();\n        for (auto polygonVertexIndex = 0;\n             polygonVertexIndex < numPolygonVertices; ++polygonVertexIndex) {\n            const auto meshVertexIndex =\n                polygonVertexIndices[polygonVertexIndex];\n            localPolygonVertices[meshVertexIndex] = polygonVertexIndex;\n        }\n\n        THROW_ON_FAILURE(\n            itPoly.getTriangles(triangleVertexPoints, triangleVertexIndices));\n\n        const auto numLocalVertices = numTrianglesInPolygon * 3;\n        assert(triangleVertexPoints.length() == numLocalVertices);\n        assert(triangleVertexIndices.length() == numLocalVertices);\n\n        int triangleVertexIndex = 0;\n\n        for (auto localTriangleIndex = 0;\n             localTriangleIndex < numTrianglesInPolygon; ++localTriangleIndex) {\n            m_triangleToFaceIndexMap.emplace_back(polygonIndex);\n\n            for (unsigned instanceIndex = 0; instanceIndex < instanceCount;\n                 ++instanceIndex) {\n                auto &shading = m_shadingPerInstance[instanceIndex];\n                const auto shaderIndex = mapPolygonToShaderPerInstance.at(\n                    instanceIndex)[polygonIndex];\n                shading.primitiveToShaderIndexMap.push_back(shaderIndex);\n            }\n\n            for (auto i = 0; i < 3; ++i, ++triangleVertexIndex) {\n                const auto meshVertexIndex =\n                    triangleVertexIndices[triangleVertexIndex];\n                const auto localVertexIndex =\n                    localPolygonVertices[meshVertexIndex];\n\n                int positionIndex =\n                    itPoly.vertexIndex(localVertexIndex, &status);\n                THROW_ON_FAILURE(status);\n                positions.push_back(positionIndex);\n\n                int normalIndex = itPoly.normalIndex(localVertexIndex, &status);\n                THROW_ON_FAILURE(status);\n                normals.push_back(normalIndex);\n\n                for (auto setIndex = 0U; setIndex < colorSetCount; ++setIndex) {\n                    int colorIndex;\n                    auto &colorSetName = colorSemantics[setIndex].setName;\n\n                    if (itPoly.hasColor(localVertexIndex)) {\n                        status = itPoly.getColorIndex(\n                            localVertexIndex, colorIndex, &colorSetName);\n                        THROW_ON_FAILURE(status);\n                        colorSets.at(setIndex).push_back(colorIndex);\n                    } else {\n                        // This polygon has no associated colors.\n                        colorSets.at(setIndex).push_back(NoIndex);\n                    }\n                }\n\n                for (auto setIndex = 0U; setIndex < texCoordSetCount;\n                     ++setIndex) {\n                    auto &uvSetName = texCoordSemantics[setIndex].setName;\n                    if (itPoly.hasUVs(uvSetName)) {\n                        int uvIndex;\n                        status = itPoly.getUVIndex(localVertexIndex, uvIndex,\n                                                   &uvSetName);\n                        THROW_ON_FAILURE(status);\n                        texCoordSets.at(setIndex).push_back(uvIndex);\n                    } else {\n                        texCoordSets.at(setIndex).push_back(NoIndex);\n                    }\n                }\n\n                for (auto setIndex = 0U; setIndex < tangentSetCount;\n                     ++setIndex) {\n                    auto &uvSetName = tangentSemantics[setIndex].setName;\n                    if (itPoly.hasUVs(uvSetName)) {\n                        int uvIndex;\n                        status = itPoly.getUVIndex(localVertexIndex, uvIndex,\n                                                   &uvSetName);\n\n                        // TODO: Not sure why Maya doesn't allow use to pass the\n                        // uvSetName here? Maybe a polygon vertex can only have\n                        // a single tangent assigned to it?\n                        const auto tangentIndex =\n                            itPoly.tangentIndex(localVertexIndex, &status);\n                        THROW_ON_FAILURE(status);\n                        tangentSets.at(setIndex).push_back(tangentIndex);\n                    } else {\n                        tangentSets.at(setIndex).push_back(NoIndex);\n                    }\n                }\n            }\n        }\n    }\n\n    // The indices of the vertex joint assignments are the same as the points.\n    // TODO: We should use spans instead of copying the vectors...\n    auto &vertexJointWeightsSets = m_table.at(Semantic::WEIGHTS);\n    for (auto &set : vertexJointWeightsSets) {\n        set = positions;\n    }\n\n    auto &vertexJointIndicesSets = m_table.at(Semantic::JOINTS);\n    for (auto &set : vertexJointIndicesSets) {\n        set = positions;\n    }\n}\n\nMeshIndices::~MeshIndices() = default;\n\nvoid MeshIndices::dump(IndentableStream &out, const std::string &name) const {\n    dump_index_table(out, name, m_table, perPrimitiveVertexCount());\n}\n"
  },
  {
    "path": "src/MeshIndices.h",
    "content": "#pragma once\n\n#include \"MeshSemantics.h\"\n#include \"macros.h\"\n#include \"sceneTypes.h\"\n\n/**\n * The per-primitive (e.g. triangle) indices to points, normals, etc for a\n * single Maya mesh We call these vertex elements, or just elements. We use the\n * word 'component' to indicate the coordinate of a point, vector or color.\n * Unlike a typical GPU mesh, DCC software like Maya has separate indices\n * for each element semantic, e.g. to allow using a single point for a sharp\n * corner\n */\n\n// NOTE: Some elements might have no indices for some semantics (UVs, color,\n// tangent). In this case, NoIndex (-1) is used.\n//\n// When splitting a mesh into renderable parts,\n// we determine what semantics are actually used\nconst Index NoIndex = -1;\n\ntypedef std::vector<IndexVector> VertexElementIndicesPerSetIndex;\ntypedef std::array<VertexElementIndicesPerSetIndex, Semantic::COUNT>\n    VertexElementIndicesPerSetIndexTable;\ntypedef std::vector<bool> ShaderUsageVector;\n\n// Maya face index\ntypedef int FaceIndex;\ntypedef int TriangleIndex;\ntypedef std::vector<FaceIndex> TriangleToFaceIndexMap;\n\nstruct MeshShading {\n    MObjectArray shaderGroups;\n\n    // Maps the index of each primitive to the single attached shader index.\n    IndexVector primitiveToShaderIndexMap;\n};\n\ntypedef std::map<InstanceNumber, MeshShading> MeshShadingPerInstance;\n\nclass MeshIndices {\n  public:\n    MeshIndices(const MeshSemantics *meshSemantics, const MFnMesh &fnMesh);\n    virtual ~MeshIndices();\n\n    const VertexElementIndicesPerSetIndexTable &table() const {\n        return m_table;\n    }\n\n    const std::string meshName;\n    const MeshSemantics &semantics;\n\n    // TODO: Support other primitives\n    PrimitiveKind primitiveKind() const { return TRIANGLE_LIST; }\n    int perPrimitiveVertexCount() const { return 3; }\n    int primitiveCount() const { return m_TriangleCount; }\n    size_t maxVertexCount() const {\n        return perPrimitiveVertexCount() * primitiveCount();\n    }\n\n    const IndexVector &indicesAt(const size_t semanticIndex,\n                                 const size_t setIndex) const {\n        return m_table.at(semanticIndex).at(setIndex);\n    }\n\n    FaceIndex triangleToFaceIndex(TriangleIndex triangleIndex) const {\n        return m_triangleToFaceIndexMap.at(triangleIndex);\n    }\n\n    const MeshShadingPerInstance &shadingPerInstance() const {\n        return m_shadingPerInstance;\n    }\n\n    void dump(class IndentableStream &out, const std::string &name) const;\n\n  private:\n    int m_TriangleCount;\n    VertexElementIndicesPerSetIndexTable m_table;\n    MeshShadingPerInstance m_shadingPerInstance;\n    TriangleToFaceIndexMap m_triangleToFaceIndexMap;\n\n    DISALLOW_COPY_MOVE_ASSIGN(MeshIndices);\n};\n"
  },
  {
    "path": "src/MeshRenderables.cpp",
    "content": "#include \"externals.h\"\r\n\r\n#include \"Arguments.h\"\r\n#include \"IndentableStream.h\"\r\n#include \"Mesh.h\"\r\n#include \"MeshIndices.h\"\r\n#include \"MeshRenderables.h\"\r\n#include \"MeshVertices.h\"\r\nusing namespace coveo::linq;\r\n\r\nMeshRenderables::MeshRenderables(const MeshShapes &meshShapes,\r\n                                 const Arguments &args)\r\n    : instanceNumber(meshShapes.at(0)->instanceNumber()) {\r\n    MStatus status;\r\n\r\n    const auto &mainShape = dynamic_cast<MainShape *>(meshShapes.at(0));\r\n    const auto &mainIndices = mainShape->indices();\r\n    const auto &mainVertices = mainShape->vertices();\r\n    const auto &mainIndicesTable = mainIndices.table();\r\n    const auto &mainVerticesTable = mainVertices.table();\r\n\r\n    auto &shadingPerInstance = mainIndices.shadingPerInstance();\r\n\r\n    auto &shading = shadingPerInstance.at(instanceNumber);\r\n\r\n    const auto primitiveCount = mainIndices.primitiveCount();\r\n    const auto maxVertexCount = mainIndices.maxVertexCount();\r\n    const auto minVertexCount = mainShape->semantics()\r\n                                    .descriptions(Semantic::POSITION)\r\n                                    .at(0)\r\n                                    .elementCount;\r\n    const auto perPrimitiveVertexCount = mainIndices.perPrimitiveVertexCount();\r\n\r\n    auto primitiveVertexIndex = 0;\r\n\r\n    VertexElementData vertexIndexKey;\r\n    VertexLayout vertexLayout;\r\n\r\n    const auto semanticsMask = args.meshPrimitiveAttributes;\r\n\r\n    auto totalWeldCount = 0;\r\n    auto totalVertexCount = 0;\r\n\r\n    for (auto primitiveIndex = 0; primitiveIndex < primitiveCount;\r\n         ++primitiveIndex) {\r\n        const auto shaderIndex =\r\n            shading.primitiveToShaderIndexMap[primitiveIndex];\r\n\r\n        for (int counter = perPrimitiveVertexCount; --counter >= 0;\r\n             ++primitiveVertexIndex) {\r\n            // Compute the vertex signature (one bit per semantic+set, 0=unused,\r\n            // 1=used)\r\n            VertexSignature vertexSignature(shaderIndex, 0);\r\n\r\n            vertexLayout.clear();\r\n            vertexIndexKey.clear();\r\n\r\n            for (auto shapeIndex = 0U; shapeIndex < meshShapes.size();\r\n                 ++shapeIndex) {\r\n                auto &shape = meshShapes.at(shapeIndex);\r\n                const auto &shapeVerticesTable = shape->vertices().table();\r\n\r\n                for (auto semanticIndex = 0U;\r\n                     semanticIndex < shapeVerticesTable.size();\r\n                     ++semanticIndex) {\r\n                    if (!shapeVerticesTable.at(semanticIndex).empty() &&\r\n                        semanticsMask.test(semanticIndex)) {\r\n                        const auto &indicesPerSet =\r\n                            mainIndicesTable.at(semanticIndex);\r\n\r\n                        for (auto setIndex = 0; setIndex < indicesPerSet.size();\r\n                             ++setIndex) {\r\n                            const auto &indices = indicesPerSet.at(setIndex);\r\n                            const auto index = indices[primitiveVertexIndex];\r\n                            const int isUsed = index >= 0;\r\n                            vertexSignature.slotUsage <<= 1;\r\n                            vertexSignature.slotUsage |= isUsed;\r\n                            if (isUsed) {\r\n                                auto semantic = Semantic::from(semanticIndex);\r\n                                vertexLayout.emplace_back(\r\n                                    ShapeIndex::shape(shapeIndex), semantic,\r\n                                    setIndex);\r\n\r\n                                const auto &elementIndices =\r\n                                    indicesPerSet.at(setIndex);\r\n                                const auto vertexIndex =\r\n                                    elementIndices.at(primitiveVertexIndex);\r\n                                const auto &vertexElements =\r\n                                    shapeVerticesTable.at(semantic).at(\r\n                                        setIndex);\r\n                                const auto &sourceComponents =\r\n                                    componentsAt(vertexElements, vertexIndex,\r\n                                                 semantic, shape->shapeIndex);\r\n                                const auto sourceBytes =\r\n                                    sourceComponents.bytes();\r\n                                vertexIndexKey.insert(vertexIndexKey.end(),\r\n                                                      sourceBytes.begin(),\r\n                                                      sourceBytes.end());\r\n                            }\r\n                        }\r\n                    }\r\n                }\r\n            }\r\n\r\n            // Check if a vertex with exactly the same components already\r\n            // exists.\r\n            VertexBuffer &vertexBuffer = m_table[vertexSignature];\r\n\r\n            auto &componentsMap = vertexBuffer.componentsMap;\r\n\r\n            VertexIndex sharedVertexIndex;\r\n\r\n            const auto itSharedIndex =\r\n                vertexBuffer.vertexToIndexMapping.find(vertexIndexKey);\r\n\r\n            if (itSharedIndex == vertexBuffer.vertexToIndexMapping.end()) {\r\n                // No vertex with same indices found, create a new output vertex\r\n                // index.\r\n                sharedVertexIndex = static_cast<VertexIndex>(\r\n                    vertexBuffer.vertexToIndexMapping.size());\r\n                vertexBuffer.vertexToIndexMapping[vertexIndexKey] =\r\n                    sharedVertexIndex;\r\n\r\n                // Build the vertex.\r\n                for (auto &&slot : vertexLayout) {\r\n                    auto &shape = meshShapes.at(slot.shapeIndex.arrayIndex());\r\n\r\n                    const auto &elementIndices =\r\n                        mainIndices.indicesAt(slot.semantic, slot.setIndex);\r\n                    const auto vertexIndex =\r\n                        elementIndices.at(primitiveVertexIndex);\r\n                    const auto &vertexElements =\r\n                        shape->vertices().vertexElementComponentsAt(\r\n                            slot.semantic, slot.setIndex);\r\n                    const auto &sourceComponents =\r\n                        componentsAt(vertexElements, vertexIndex, slot.semantic,\r\n                                     slot.shapeIndex);\r\n                    const auto sourceBytes = sourceComponents.bytes();\r\n                    auto &target = componentsMap[slot];\r\n                    if (target.empty()) {\r\n                        target.reserve(maxVertexCount * slot.elementByteSize());\r\n                    }\r\n\r\n                    target.insert(target.end(), sourceBytes.begin(),\r\n                                  sourceBytes.end());\r\n                }\r\n            } else {\r\n                // Reuse the same vertex.\r\n                sharedVertexIndex = itSharedIndex->second;\r\n\r\n                ++totalWeldCount;\r\n            }\r\n\r\n            vertexBuffer.indices.push_back(sharedVertexIndex);\r\n        }\r\n    }\r\n\r\n    cout << prefix << mainShape->dagPath().partialPathName().asChar()\r\n         << \" will have \" << maxVertexCount - totalWeldCount\r\n         << \" vertices. Welded#\" << totalWeldCount << \", min#\" << minVertexCount\r\n         << \", max#\" << maxVertexCount << endl;\r\n\r\n    // Now compute the blend-shape vector-deltas by subtracting the\r\n    // blend-shape-base mesh from the blend-shape-targets\r\n    if (meshShapes.size() > 1) {\r\n        for (auto &&pair : m_table) {\r\n            VertexBuffer &buffer = pair.second;\r\n            VertexElementsMap &compMap = buffer.componentsMap;\r\n\r\n            for (auto &&slotCompPair : compMap) {\r\n                auto &targetSlot = slotCompPair.first;\r\n\r\n                if (targetSlot.shapeIndex.isBlendShapeIndex()) {\r\n                    const VertexSlot mainSlot(ShapeIndex::main(),\r\n                                              targetSlot.semantic,\r\n                                              targetSlot.setIndex);\r\n                    auto sourceComponents =\r\n                        reinterpret_span<float>(compMap.at(mainSlot));\r\n                    auto targetComponents = mutable_span(\r\n                        reinterpret_span<float>(slotCompPair.second));\r\n\r\n                    // The annoying fact that TANGENTs have dimension 4 in the\r\n                    // main shape and 3 in the targets requires this hacky code.\r\n                    const auto sourceDimension = mainSlot.dimension();\r\n                    const auto targetDimension = targetSlot.dimension();\r\n                    const auto sharedDimension =\r\n                        std::min(sourceDimension, targetDimension);\r\n                    const auto sourceComponentCount = sourceComponents.size();\r\n                    const auto targetComponentCount = targetComponents.size();\r\n                    assert(sourceComponentCount / sourceDimension ==\r\n                           targetComponentCount / targetDimension);\r\n\r\n                    for (size_t sourceIndex = 0U, targetIndex = 0U;\r\n                         sourceIndex < size_t(sourceComponentCount);\r\n                         sourceIndex += sourceDimension,\r\n                                targetIndex += targetDimension) {\r\n                        for (size_t dimension = 0; dimension < sharedDimension;\r\n                             ++dimension) {\r\n                            targetComponents[targetIndex + dimension] -=\r\n                                sourceComponents[sourceIndex + dimension];\r\n                        }\r\n                    }\r\n                }\r\n            }\r\n        }\r\n    }\r\n}\r\n\r\nMeshRenderables::~MeshRenderables() = default;\r\n\r\nstd::ostream &operator<<(std::ostream &out, const VertexSignature &obj) {\r\n    out << '{' << ' ';\r\n    out << std::quoted(\"shaderIndex\") << ':' << obj.shaderIndex << ',';\r\n    out << std::quoted(\"slotUsage\") << ':' << std::hex << std::setw(8)\r\n        << obj.slotUsage;\r\n    out << ' ' << '}';\r\n    return out;\r\n}\r\n\r\nstd::ostream &operator<<(std::ostream &out, const VertexSlot &slot) {\r\n    out << '{' << ' ';\r\n    out << std::quoted(\"shapeIndex\") << ':' << slot.shapeIndex << ',' << ' ';\r\n    out << std::quoted(\"setIndex\") << ':' << slot.setIndex << ',' << ' ';\r\n    out << std::quoted(\"semantic\") << ':'\r\n        << std::quoted(Semantic::name(slot.semantic));\r\n    out << ' ' << '}';\r\n    return out;\r\n}\r\n\r\n// std::ostream& operator<<(std::ostream& out, const VertexBuffer& obj)\r\n//{\r\n//\tout << '{' << endl << indent;\r\n//\r\n//\tdump_iterable(out, \"indices\", obj.indices, obj.indices.size() /\r\n// obj.vertexToIndexMapping.size(), 0);\r\n//\r\n//\tout << \",\" << endl;\r\n//\r\n//\tdump_iterable(out, \"components\", obj.componentsMap, 1);\r\n//\r\n//\tout << undent << '}';\r\n//\r\n//\treturn out;\r\n//}\r\n//\r\n"
  },
  {
    "path": "src/MeshRenderables.h",
    "content": "#pragma once\n\n#include \"Mesh.h\"\n#include \"hashers.h\"\n#include \"sceneTypes.h\"\n\nclass Arguments;\n\ntypedef int VertexIndex;\n\n// TODO: We currently do not support more than 64 slots per vertex.\ntypedef uint64_t VertexSlotUsage;\n\nstruct VertexSignature {\n    ShaderIndex shaderIndex;\n    VertexSlotUsage slotUsage;\n\n    /**\n     * For each semantic/set-index pair, per shader, for both main mesh and\n     * blend-shapes, a bit to indicate if a vertex element has this\n     * semantic/set-index For example, some of the vertices of a Maya mesh might\n     * not have UVs, colors, etc...\n     * TODO: Simpify this!\n     */\n\n    explicit VertexSignature(const ShaderIndex shaderIndex,\n                             const VertexSlotUsage slotUsage)\n        : shaderIndex(shaderIndex), slotUsage(slotUsage) {}\n\n    DEFAULT_COPY_MOVE_ASSIGN_DTOR(VertexSignature);\n\n    friend bool operator==(const VertexSignature &lhs,\n                           const VertexSignature &rhs) {\n        return lhs.shaderIndex == rhs.shaderIndex &&\n               lhs.slotUsage == rhs.slotUsage;\n    }\n\n    friend bool operator!=(const VertexSignature &lhs,\n                           const VertexSignature &rhs) {\n        return !(lhs == rhs);\n    }\n\n    friend bool operator<(const VertexSignature &lhs,\n                          const VertexSignature &rhs) {\n        return lhs.shaderIndex < rhs.shaderIndex &&\n               lhs.slotUsage < rhs.slotUsage;\n    }\n\n    friend bool operator<=(const VertexSignature &lhs,\n                           const VertexSignature &rhs) {\n        return !(rhs < lhs);\n    }\n\n    friend bool operator>(const VertexSignature &lhs,\n                          const VertexSignature &rhs) {\n        return rhs < lhs;\n    }\n\n    friend bool operator>=(const VertexSignature &lhs,\n                           const VertexSignature &rhs) {\n        return !(lhs < rhs);\n    }\n\n    friend std::size_t hash_value(const VertexSignature &obj) {\n        std::size_t seed = 0x61BAB927;\n        seed ^= (seed << 6) + (seed >> 2) + 0x79FBC802 +\n                static_cast<std::size_t>(obj.shaderIndex);\n        seed ^= (seed << 6) + (seed >> 2) + 0x5A1BB057 +\n                static_cast<std::size_t>(obj.slotUsage);\n        return seed;\n    }\n\n    friend std::ostream &operator<<(std::ostream &out,\n                                    const VertexSignature &obj);\n};\n\nstruct VertexSlot {\n    ShapeIndex shapeIndex;\n    Semantic::Kind semantic;\n    SetIndex setIndex;\n\n    VertexSlot()\n        : shapeIndex(ShapeIndex::invalid()), semantic(Semantic::Kind::INVALID),\n          setIndex(-1) {}\n\n    VertexSlot(const ShapeIndex &shapeIndex, const Semantic::Kind semantic,\n               const SetIndex setIndex)\n        : shapeIndex(shapeIndex), semantic(semantic), setIndex(setIndex) {}\n\n    DEFAULT_COPY_MOVE_ASSIGN_DTOR(VertexSlot);\n\n    friend std::ostream &operator<<(std::ostream &out, const VertexSlot &slot);\n\n    friend bool operator==(const VertexSlot &lhs, const VertexSlot &rhs) {\n        return lhs.shapeIndex == rhs.shapeIndex &&\n               lhs.semantic == rhs.semantic && lhs.setIndex == rhs.setIndex;\n    }\n\n    friend bool operator!=(const VertexSlot &lhs, const VertexSlot &rhs) {\n        return !(lhs == rhs);\n    }\n\n    friend bool operator<(const VertexSlot &lhs, const VertexSlot &rhs) {\n        if (lhs.shapeIndex < rhs.shapeIndex)\n            return true;\n        if (rhs.shapeIndex < lhs.shapeIndex)\n            return false;\n        if (lhs.semantic < rhs.semantic)\n            return true;\n        if (rhs.semantic < lhs.semantic)\n            return false;\n        return lhs.setIndex < rhs.setIndex;\n    }\n\n    friend bool operator<=(const VertexSlot &lhs, const VertexSlot &rhs) {\n        return !(rhs < lhs);\n    }\n\n    friend bool operator>(const VertexSlot &lhs, const VertexSlot &rhs) {\n        return rhs < lhs;\n    }\n\n    friend bool operator>=(const VertexSlot &lhs, const VertexSlot &rhs) {\n        return !(lhs < rhs);\n    }\n\n    friend std::size_t hash_value(const VertexSlot &obj) {\n        std::size_t seed = 0x7732D720;\n        seed ^=\n            (seed << 6) + (seed >> 2) + 0x6654736D + hash_value(obj.shapeIndex);\n        seed ^= (seed << 6) + (seed >> 2) + 0x1BF620AC +\n                static_cast<std::size_t>(obj.semantic);\n        seed ^= (seed << 6) + (seed >> 2) + 0x54A5F37C +\n                static_cast<std::size_t>(obj.setIndex);\n        return seed;\n    }\n\n    size_t dimension() const {\n        return Semantic::dimension(semantic, shapeIndex);\n    }\n\n    Component::Type componentType() const { return Component::type(semantic); }\n\n    size_t componentByteSize() const { return byteSize(componentType()); }\n\n    size_t elementByteSize() const { return dimension() * componentByteSize(); }\n};\n\ntypedef std::vector<VertexSlot> VertexLayout;\n\ntypedef std::vector<byte> VertexElementData;\n\nstruct VertexHashers {\n    std::size_t operator()(const VertexSlot &obj) const {\n        return hash_value(obj);\n    }\n\n    std::size_t operator()(const VertexSignature &obj) const {\n        return hash_value(obj);\n    }\n\n    std::size_t operator()(const VertexComponents &vec) const {\n        return hash_value(vec.shorts());\n    }\n\n    std::size_t operator()(const VertexElementData &elems) const {\n        size_t seed = 0x26DFB62C;\n        for (auto &elem : elems) {\n            seed ^=\n                (seed << 6) + (seed >> 2) + 0x3C2E6B88 + static_cast<size_t>(elem);\n        }\n        return seed;\n    }\n};\n\ntypedef std::unordered_map<VertexElementData, Index, VertexHashers>\n    VertexToIndexMapping;\n\ntypedef std::unordered_map<VertexSlot, VertexElementData, VertexHashers>\n    VertexElementsMap;\n\nstruct VertexBuffer {\n    VertexToIndexMapping vertexToIndexMapping;\n    IndexVector indices;\n    VertexElementsMap componentsMap;\n\n    size_t maxIndex() const { return vertexToIndexMapping.size(); };\n};\n\ntypedef std::unordered_map<VertexSignature, VertexBuffer, VertexHashers>\n    VertexBufferTable;\n\nclass MeshRenderables {\n  public:\n    MeshRenderables(const MeshShapes &meshShapes, const Arguments &args);\n\n    ~MeshRenderables();\n\n    const InstanceNumber instanceNumber;\n\n    const VertexBufferTable &table() const { return m_table; }\n\n  protected:\n    DISALLOW_COPY_MOVE_ASSIGN(MeshRenderables);\n    VertexBufferTable m_table;\n};\n"
  },
  {
    "path": "src/MeshSemantics.cpp",
    "content": "#include \"externals.h\"\n\n#include \"IndentableStream.h\"\n#include \"MayaException.h\"\n#include \"MeshSemantics.h\"\n#include \"MeshSkeleton.h\"\n\nvoid VertexElementSetDescription::dump(class IndentableStream &out,\n                                       const std::string &name) const {\n    out << std::quoted(name) << \": {\" << endl << indent;\n\n    out << std::quoted(\"setName\") << \": \" << std::quoted(setName.asChar())\n        << \",\" << endl;\n    out << std::quoted(\"setIndex\") << \": \" << setIndex << \",\" << endl;\n    out << std::quoted(\"elementCount\") << \": \" << elementCount << endl;\n\n    out << undent << '}';\n}\n\nMeshSemantics::MeshSemantics(const MFnMesh &mesh, MeshSkeleton *skeleton,\n                             const MeshSemanticSet &semanticSet) {\n    MStatus status;\n\n    auto numVertices = mesh.numVertices(&status);\n\n    m_table[Semantic::POSITION].emplace_back(Semantic::POSITION, 0, \"\",\n                                             numVertices);\n    THROW_ON_FAILURE(status);\n\n    m_table[Semantic::NORMAL].emplace_back(Semantic::NORMAL, 0, \"\",\n                                           mesh.numNormals(&status));\n    THROW_ON_FAILURE(status);\n\n    MStringArray colorSetNames;\n    THROW_ON_FAILURE(mesh.getColorSetNames(colorSetNames));\n\n    for (SetIndex i = 0; i < SetIndex(colorSetNames.length()); ++i) {\n        m_table[Semantic::COLOR].emplace_back(\n            Semantic::COLOR, i, colorSetNames[i].asChar(),\n            mesh.numColors(colorSetNames[i], &status));\n        THROW_ON_FAILURE(status);\n    }\n\n    MStringArray uvSetNames;\n    THROW_ON_FAILURE(mesh.getUVSetNames(uvSetNames));\n\n    for (SetIndex i = 0; i < SetIndex(uvSetNames.length()); ++i) {\n        m_table[Semantic::TEXCOORD].emplace_back(\n            Semantic::TEXCOORD, i, uvSetNames[i].asChar(),\n            mesh.numUVs(uvSetNames[i], &status));\n\n        // We don't process tangents unless requested.\n        if (semanticSet.test(Semantic::TANGENT))\n            m_table[Semantic::TANGENT].emplace_back(\n                Semantic::TANGENT, i, uvSetNames[i].asChar(),\n                mesh.numUVs(uvSetNames[i], &status));\n    }\n\n    // Add skin semantics\n    if (skeleton) {\n        const auto vertexJointAssignmentSetCount =\n            skeleton->vertexJointAssignmentSetCount();\n\n        for (SetIndex i = 0; i < SetIndex(vertexJointAssignmentSetCount); ++i) {\n            m_table[Semantic::WEIGHTS].emplace_back(\n                Semantic::WEIGHTS, i,\n                MString(name(Semantic::WEIGHTS)) + \"_\" + i, numVertices);\n            m_table[Semantic::JOINTS].emplace_back(\n                Semantic::JOINTS, i, MString(name(Semantic::JOINTS)) + \"_\" + i,\n                numVertices);\n        }\n    }\n}\n\nMeshSemantics::~MeshSemantics() = default;\n\nvoid MeshSemantics::dump(class IndentableStream &out,\n                         const std::string &name) const {\n    out << quoted(name) << \": {\" << endl << indent;\n\n    JsonSeparator sep(\",\\n\");\n\n    for (int semanticIndex = 0; semanticIndex < Semantic::COUNT;\n         ++semanticIndex) {\n        const auto semanticKind = Semantic::from(semanticIndex);\n\n        for (auto &&semantic : m_table.at(semanticKind)) {\n            out << sep;\n            semantic.dump(out, Semantic::name(semanticKind));\n        }\n    }\n\n    out << endl << undent << '}';\n}\n"
  },
  {
    "path": "src/MeshSemantics.h",
    "content": "#pragma once\n\n#include \"macros.h\"\n#include \"sceneTypes.h\"\n\nclass MeshSkeleton;\n\nstruct VertexElementSetDescription {\n    VertexElementSetDescription(const Semantic::Kind semantic,\n                                const SetIndex setIndex, const MString &setName,\n                                const int elementCount)\n        : semantic(semantic), setName(setName), setIndex(setIndex),\n          elementCount(elementCount) {}\n\n    DEFAULT_COPY_MOVE_ASSIGN_DTOR(VertexElementSetDescription);\n\n    void dump(class IndentableStream &out, const std::string &name) const;\n\n    Semantic::Kind semantic;\n    MString setName;\n    SetIndex setIndex;\n    int elementCount;\n};\n\ntypedef std::vector<VertexElementSetDescription>\n    VertexComponentSetDescriptionPerSetIndex;\ntypedef std::array<VertexComponentSetDescriptionPerSetIndex, Semantic::COUNT>\n    VertexComponentSetDescriptionPerSetIndexTable;\n\nclass MeshSemantics {\n  public:\n    // Skeleton is needed to determine if the skin weight/joint semantics are\n    // needed.\n    MeshSemantics(const MFnMesh &mesh, MeshSkeleton *skeleton,\n                  const MeshSemanticSet &semanticSet);\n    virtual ~MeshSemantics();\n\n    const VertexComponentSetDescriptionPerSetIndexTable &table() const {\n        return m_table;\n    }\n\n    const VertexComponentSetDescriptionPerSetIndex &\n    descriptions(const Semantic::Kind kind) const {\n        return m_table.at(kind);\n    }\n\n    void dump(class IndentableStream &cout, const std::string &name) const;\n\n  private:\n    DISALLOW_COPY_MOVE_ASSIGN(MeshSemantics);\n    VertexComponentSetDescriptionPerSetIndexTable m_table;\n};\n"
  },
  {
    "path": "src/MeshShape.cpp",
    "content": "#include \"externals.h\"\n\n#include \"Arguments.h\"\n#include \"ExportableNode.h\"\n#include \"ExportableScene.h\"\n#include \"IndentableStream.h\"\n#include \"MeshShape.h\"\n#include \"MeshSkeleton.h\"\n\nMeshShape::MeshShape(ShapeIndex shapeIndex) : shapeIndex(shapeIndex) {}\n\nMeshShape::MeshShape(const MeshIndices &mainIndices, const MFnMesh &fnMesh,\n                     const ExportableNode &node, const Arguments &args,\n                     ShapeIndex shapeIndex, const MPlug &weightPlug,\n                     const float initialWeight)\n    : shapeIndex(shapeIndex), weightPlug(weightPlug),\n      initialWeight(initialWeight) {\n    MStatus status;\n    m_dagPath = fnMesh.dagPath(&status);\n    THROW_ON_FAILURE(status);\n\n    m_semantics = std::make_unique<MeshSemantics>(\n        fnMesh, nullptr, args.blendPrimitiveAttributes);\n    m_vertices = std::make_unique<MeshVertices>(mainIndices, nullptr, fnMesh,\n                                                shapeIndex, node, args);\n}\n\nMeshShape::~MeshShape() = default;\n\nsize_t MeshShape::instanceNumber() const {\n    MStatus status;\n    const auto instanceNumber = m_dagPath.instanceNumber(&status);\n    THROW_ON_FAILURE(status);\n    return instanceNumber;\n}\n\nvoid MeshShape::dump(IndentableStream &out, const std::string &name) const {\n    out << quoted(name) << \": {\" << endl << indent;\n\n    m_semantics->dump(out, \"semantics\");\n    out << \",\" << endl;\n    m_vertices->dump(out, \"vertices\");\n\n    out << endl << undent << '}' << endl;\n}\n\nMainShape::MainShape(ExportableScene &scene, const MFnMesh &fnMesh,\n                     const ExportableNode &node, ShapeIndex shapeIndex)\n    : MeshShape(shapeIndex) {\n    MStatus status;\n    m_dagPath = fnMesh.dagPath(&status);\n    THROW_ON_FAILURE(status);\n\n    auto &args = scene.arguments();\n\n    m_skeleton = std::make_unique<MeshSkeleton>(scene, node, fnMesh);\n    m_semantics = std::make_unique<MeshSemantics>(fnMesh, m_skeleton.get(),\n                                                  args.meshPrimitiveAttributes);\n    m_indices = std::make_unique<MeshIndices>(m_semantics.get(), fnMesh);\n    m_vertices =\n        std::make_unique<MeshVertices>(*m_indices, m_skeleton.get(), fnMesh,\n                                       shapeIndex, node, scene.arguments());\n}\n\nMainShape::~MainShape() = default;\n\nvoid MainShape::dump(IndentableStream &out, const std::string &name) const {\n    out << quoted(name) << \": {\" << endl << indent;\n\n    m_semantics->dump(out, \"semantics\");\n    out << \",\" << endl;\n    m_vertices->dump(out, \"vertices\");\n    out << \",\" << endl;\n    m_indices->dump(out, \"indices\");\n    out << \",\" << endl;\n    m_skeleton->dump(out, \"skeleton\");\n\n    out << endl << undent << '}' << endl;\n}\n"
  },
  {
    "path": "src/MeshShape.h",
    "content": "#pragma once\r\n\r\n#include \"MayaException.h\"\r\n#include \"MeshIndices.h\"\r\n#include \"MeshSemantics.h\"\r\n#include \"MeshVertices.h\"\r\n\r\nclass ExportableNode;\r\nclass ExportableScene;\r\n\r\nclass MeshShape {\r\n  public:\r\n    MeshShape(const MeshIndices &mainIndices, const MFnMesh &fnMesh,\r\n              const ExportableNode &node, const Arguments &args,\r\n              ShapeIndex shapeIndex, const MPlug &weightPlug,\r\n              float initialWeight);\r\n    virtual ~MeshShape();\r\n\r\n    virtual void dump(class IndentableStream &out,\r\n                      const std::string &name) const;\r\n\r\n    const ShapeIndex shapeIndex;\r\n    const MPlug weightPlug; // isNull of main shape\r\n    const float initialWeight = 0;\r\n\r\n    const MDagPath &dagPath() const { return m_dagPath; }\r\n    const MeshSemantics &semantics() const { return *m_semantics; }\r\n    const MeshVertices &vertices() const { return *m_vertices; }\r\n\r\n    size_t instanceNumber() const;\r\n\r\n  protected:\r\n    MeshShape(ShapeIndex shapeIndex);\r\n\r\n    MDagPath m_dagPath;\r\n\r\n    std::unique_ptr<MeshSemantics> m_semantics;\r\n    std::unique_ptr<MeshVertices> m_vertices;\r\n\r\n    DISALLOW_COPY_MOVE_ASSIGN(MeshShape);\r\n};\r\n\r\nclass MainShape : public MeshShape {\r\n  public:\r\n    MainShape(ExportableScene &scene, const MFnMesh &fnMesh,\r\n              const ExportableNode &node, ShapeIndex shapeIndex);\r\n    virtual ~MainShape();\r\n\r\n    const MeshIndices &indices() const { return *m_indices; }\r\n    const MeshSkeleton &skeleton() const { return *m_skeleton; }\r\n\r\n    void dump(class IndentableStream &out,\r\n              const std::string &name) const override;\r\n\r\n  private:\r\n    std::unique_ptr<MeshSkeleton> m_skeleton;\r\n    std::unique_ptr<MeshIndices> m_indices;\r\n    DISALLOW_COPY_MOVE_ASSIGN(MainShape);\r\n};\r\n"
  },
  {
    "path": "src/MeshSkeleton.cpp",
    "content": "#include \"externals.h\"\r\n\r\n#include \"Arguments.h\"\r\n#include \"ExportableNode.h\"\r\n#include \"ExportableScene.h\"\r\n#include \"IndentableStream.h\"\r\n#include \"MayaException.h\"\r\n#include \"MeshSkeleton.h\"\r\n#include \"spans.h\"\r\n\r\nstruct VertexJointAssignmentSlice {\r\n    size_t offset;\r\n    size_t length;\r\n\r\n    VertexJointAssignmentSlice(const size_t assignmentOffset,\r\n                               const size_t assignmentLength)\r\n        : offset(assignmentOffset), length(assignmentLength) {}\r\n\r\n    DEFAULT_COPY_MOVE_ASSIGN_CTOR_DTOR(VertexJointAssignmentSlice);\r\n};\r\n\r\nvoid scaleTranslation(MMatrix &m, double s) {\r\n    double *t = m[3];\r\n    t[0] *= s;\r\n    t[1] *= s;\r\n    t[2] *= s;\r\n}\r\n\r\nMeshSkeleton::MeshSkeleton(ExportableScene &scene, const ExportableNode &node,\r\n                           const MFnMesh &mesh)\r\n    : m_maxVertexJointAssignmentCount(0) {\r\n    MStatus status;\r\n\r\n    auto &args = scene.arguments();\r\n\r\n    MObject skin = args.skipSkinClusters\r\n                       ? MObject::kNullObj\r\n                       : tryExtractSkinCluster(mesh, args.ignoreMeshDeformers);\r\n\r\n    if (!skin.isNull()) {\r\n        MFnSkinCluster fnSkin(skin, &status);\r\n        THROW_ON_FAILURE(status);\r\n\r\n        // Gather all the joints\r\n        MDagPathArray jointDagPaths;\r\n        const auto jointCount = fnSkin.influenceObjects(jointDagPaths, &status);\r\n        THROW_ON_FAILURE(status);\r\n\r\n        m_joints.reserve(jointCount);\r\n\r\n        // Gather the relevant input mesh data for the skinCluster\r\n        const auto shapeDagPath = mesh.dagPath(&status);\r\n        THROW_ON_FAILURE(status);\r\n        int inputShapeIndex = fnSkin.indexForOutputShape(mesh.object(), &status);\r\n        THROW_ON_FAILURE(status);\r\n\r\n        // Get the MPlug for input[index].inputGeometry\r\n        // Note: This is used over 'inputShapeAtIndex' so it includes any\r\n        // potential vertex tweaks after the shape but before the skinCluster\r\n        MPlug inputGeoPlug = fnSkin.findPlug(\"input\", &status); // .input\r\n        THROW_ON_FAILURE(status);\r\n        inputGeoPlug = inputGeoPlug.elementByPhysicalIndex(inputShapeIndex, &status); // .input[0]\r\n        THROW_ON_FAILURE(status);\r\n        inputGeoPlug = inputGeoPlug.child(0, &status); // .input[0].inputGeometry\r\n        THROW_ON_FAILURE(status);\r\n        m_inputShape = inputGeoPlug.asMObject(&status);\r\n        THROW_ON_FAILURE(status);\r\n\r\n        const auto bakeScaleFactor = args.getBakeScaleFactor();\r\n        auto meshMatrix = shapeDagPath.inclusiveMatrix(&status);\r\n        THROW_ON_FAILURE(status);\r\n        scaleTranslation(meshMatrix, bakeScaleFactor);\r\n\r\n        for (size_t index = 0; index < jointCount; ++index) {\r\n            auto &jointDagPath =\r\n                jointDagPaths[static_cast<unsigned int>(index)];\r\n            auto *jointNode = scene.getNode(jointDagPath);\r\n\r\n            MMatrix inverseBindMatrix;\r\n            if (args.skinUsePreBindMatrixAndMesh) {\r\n                // Use bindPreMatrix from skinCluster\r\n                MPlug plug = fnSkin.findPlug(\"bindPreMatrix\", true, &status);\r\n                THROW_ON_FAILURE(status);\r\n                size_t logical_index = fnSkin.indexForInfluenceObject(jointDagPath, &status);\r\n                THROW_ON_FAILURE(status);\r\n                plug = plug.elementByLogicalIndex(logical_index, &status);\r\n                THROW_ON_FAILURE(status);\r\n                MObject matrixData = plug.asMObject();\r\n                MFnMatrixData fnMatrixData(matrixData, &status);\r\n                THROW_ON_FAILURE(status);\r\n                inverseBindMatrix = fnMatrixData.matrix(&status);\r\n                THROW_ON_FAILURE(status);\r\n            } else {\r\n                // Use initial values time joint position\r\n                auto inverseJointMatrix = jointDagPath.inclusiveMatrixInverse(&status);\r\n                THROW_ON_FAILURE(status);\r\n                inverseBindMatrix = meshMatrix * inverseJointMatrix;\r\n            }\r\n            scaleTranslation(inverseBindMatrix, bakeScaleFactor);\r\n\r\n            if (inverseBindMatrix.isSingular()) {\r\n                cerr << prefix << \"WARNING: Inverse bind matrix of joint '\"\r\n                     << jointNode->name() << \"' is singular!\" << endl;\r\n            } else if (args.reportSkewedInverseBindMatrices) {\r\n                const auto e = getAxesNonOrthogonality(inverseBindMatrix);\r\n                if (e > MAX_NON_ORTHOGONALITY) {\r\n                    cerr << prefix << \"WARNING: Inverse bind matrix of joint '\"\r\n                         << jointNode->name()\r\n                         << \"' is skewed, deviation = \" << std::fixed\r\n                         << std::setprecision(2) << e * 100 << \"%\" << endl;\r\n                }\r\n            }\r\n\r\n            m_joints.emplace_back(jointNode, inverseBindMatrix);\r\n        }\r\n\r\n        // Gather all joint index/weights per vertex, sorted ascendingly by\r\n        // weight\r\n        const auto meshDagPath = mesh.dagPath(&status);\r\n        THROW_ON_FAILURE(status);\r\n\r\n        MItGeometry iterGeom(meshDagPath, &status);\r\n        THROW_ON_FAILURE(status);\r\n\r\n        const auto numPoints = iterGeom.count();\r\n\r\n        MFloatArray vertexWeights;\r\n        unsigned int numWeights;\r\n\r\n        // Build joint (index,weight) assignments\r\n        // To avoid many memory allocations, we put all assignments in a flat\r\n        // vector.\r\n        m_vertexJointAssignmentsVector.reserve(numPoints * 8);\r\n\r\n        std::vector<VertexJointAssignmentSlice> slices(numPoints);\r\n\r\n        std::vector<VertexJointAssignment> assignments;\r\n        assignments.reserve(jointCount);\r\n\r\n        for (; !iterGeom.isDone(); iterGeom.next()) {\r\n            const auto pointIndex = iterGeom.index(&status);\r\n            THROW_ON_FAILURE(status);\r\n\r\n            const MObject component = iterGeom.currentItem(&status);\r\n            THROW_ON_FAILURE(status);\r\n\r\n            status = fnSkin.getWeights(meshDagPath, component, vertexWeights,\r\n                                       numWeights);\r\n            THROW_ON_FAILURE(status);\r\n\r\n            assignments.resize(0);\r\n\r\n            for (int jointIndex = 0; jointIndex < int(numWeights);\r\n                 ++jointIndex) {\r\n                const float jointWeight = vertexWeights[jointIndex];\r\n                if (std::abs(jointWeight) > 1e-6f) {\r\n                    assignments.emplace_back(jointIndex, jointWeight);\r\n                }\r\n            }\r\n\r\n            // Sort weights from large to small.\r\n            // TODO: Use insertion sort when adding the weights?\r\n            std::sort(assignments.begin(), assignments.end(),\r\n                      [](auto &left, auto &right) {\r\n                          return left.jointWeight > right.jointWeight;\r\n                      });\r\n\r\n            const auto assignmentsLength = assignments.size();\r\n            const auto assignmentsOffset =\r\n                m_vertexJointAssignmentsVector.size();\r\n            std::copy(assignments.begin(), assignments.end(),\r\n                      std::back_inserter(m_vertexJointAssignmentsVector));\r\n\r\n            slices[pointIndex] = VertexJointAssignmentSlice(assignmentsOffset,\r\n                                                            assignmentsLength);\r\n\r\n            m_maxVertexJointAssignmentCount =\r\n                std::max(assignmentsLength, m_maxVertexJointAssignmentCount);\r\n        }\r\n\r\n        std::cout << prefix << \"Skin for mesh \"\r\n                  << meshDagPath.partialPathName().asChar() << \" will use \"\r\n                  << m_maxVertexJointAssignmentCount << \" weights per vertex\"\r\n                  << endl;\r\n\r\n        // The vector now contains all the assignments, and cannot be relocated\r\n        // anymore; lets construct the table of spans\r\n        m_vertexJointAssignmentsTable.resize(numPoints);\r\n\r\n        auto spans = span(m_vertexJointAssignmentsVector);\r\n\r\n        for (int vertexIndex = 0; vertexIndex < numPoints; ++vertexIndex) {\r\n            const auto &slice = slices.at(vertexIndex);\r\n            m_vertexJointAssignmentsTable[vertexIndex] =\r\n                spans.subspan(slice.offset, slice.length);\r\n        }\r\n    }\r\n}\r\n\r\nMeshSkeleton::~MeshSkeleton() = default;\r\n\r\nvoid MeshSkeleton::dump(IndentableStream &out, const std::string &name) const {\r\n    out << quoted(name) << \": [\" << endl << indent;\r\n\r\n    JsonSeparator sepLine(\",\\n\");\r\n\r\n    out << std::fixed;\r\n\r\n    for (auto &assignments : m_vertexJointAssignmentsTable) {\r\n        JsonSeparator sepElem(\", \");\r\n\r\n        out << \"[ \";\r\n\r\n        for (auto &assignment : assignments) {\r\n            out << sepElem << assignment;\r\n        }\r\n\r\n        out << \" ]\";\r\n\r\n        out << sepLine;\r\n    }\r\n\r\n    out << endl << undent << \"]\";\r\n}\r\n\r\nsize_t MeshSkeleton::vertexJointAssignmentSetCount() const {\r\n    const auto vertexJointAssignmentComponentCount =\r\n        maxVertexJointAssignmentCount();\r\n    const auto vertexJointAssignmentElementSize =\r\n        array_size<JointIndices>::size;\r\n    const auto vertexJointAssignmentSetCount =\r\n        (vertexJointAssignmentComponentCount +\r\n         vertexJointAssignmentElementSize - 1) /\r\n        vertexJointAssignmentElementSize;\r\n    return vertexJointAssignmentSetCount;\r\n}\r\n\r\nMObject\r\nMeshSkeleton::tryExtractSkinCluster(const MFnMesh &fnMesh,\r\n                                    const MSelectionList &ignoredDeformers) {\r\n    MStatus status;\r\n    MObject cluster;\r\n\r\n    const auto meshObject = fnMesh.object(&status);\r\n    THROW_ON_FAILURE(status);\r\n\r\n    const auto meshName = fnMesh.name(&status);\r\n    THROW_ON_FAILURE(status);\r\n\r\n    for (MItDependencyNodes depNodeIt(MFn::kSkinClusterFilter);\r\n         !depNodeIt.isDone(); depNodeIt.next()) {\r\n        MObject thisNode = depNodeIt.thisNode(&status);\r\n        THROW_ON_FAILURE(status);\r\n\r\n        MFnSkinCluster fnSkinCluster(thisNode, &status);\r\n        THROW_ON_FAILURE(status);\r\n\r\n        const auto thisName = MFnDependencyNode(thisNode).name(&status);\r\n        THROW_ON_FAILURE(status);\r\n\r\n        if (ignoredDeformers.hasItem(thisNode)) {\r\n            cout << prefix << \"Ignoring skin cluster\" << thisName << endl;\r\n        } else {\r\n            const auto geometryCount =\r\n                fnSkinCluster.numOutputConnections(&status);\r\n            THROW_ON_FAILURE(status);\r\n\r\n            for (auto geometryIndex = 0U; geometryIndex < geometryCount;\r\n                 ++geometryIndex) {\r\n                const auto shapeIndex = fnSkinCluster.indexForOutputConnection(\r\n                    geometryIndex, &status);\r\n                THROW_ON_FAILURE(status);\r\n\r\n                const auto shapeObject =\r\n                    fnSkinCluster.outputShapeAtIndex(shapeIndex, &status);\r\n                THROW_ON_FAILURE(status);\r\n\r\n                if (shapeObject == meshObject) {\r\n                    if (cluster.isNull()) {\r\n                        cerr << prefix << \"Found skin cluster \" << thisName\r\n                             << \" for mesh \" << meshName << endl;\r\n                        cluster = thisNode;\r\n                    } else {\r\n                        cerr << prefix\r\n                             << \"Only a single skin cluster is supported, \"\r\n                                \"skipping \"\r\n                             << thisName << \" for mesh \" << meshName << endl;\r\n                    }\r\n                }\r\n            }\r\n        }\r\n    }\r\n\r\n    if (cluster.isNull()) {\r\n        cerr << prefix << meshName << \" is not skinned\" << endl;\r\n    }\r\n\r\n    return cluster;\r\n}\r\n"
  },
  {
    "path": "src/MeshSkeleton.h",
    "content": "#pragma once\n\n#include \"MeshSemantics.h\"\n#include \"dump.h\"\n#include \"macros.h\"\n#include \"sceneTypes.h\"\n#include <ostream>\n\nclass Arguments;\nclass MeshIndices;\nclass ExportableScene;\nclass ExportableNode;\n\nclass VertexJointAssignment {\n  public:\n    int jointIndex;\n    float jointWeight;\n\n    VertexJointAssignment(const int jointIndex, const float jointWeight)\n        : jointIndex(jointIndex), jointWeight(jointWeight) {}\n\n    friend std::ostream &operator<<(std::ostream &os,\n                                    const VertexJointAssignment &obj) {\n        return os << \"[\" << obj.jointIndex << \", \" << std::setprecision(3)\n                  << obj.jointWeight << \"]\";\n    }\n\n    DEFAULT_COPY_MOVE_ASSIGN_CTOR_DTOR(VertexJointAssignment);\n};\n\n// Per vertex, the joint assignments\ntypedef std::vector<gsl::span<const VertexJointAssignment>>\n    VertexJointAssignmentTable;\n\nstruct MeshJoint {\n    ExportableNode *node;\n    MMatrix inverseBindMatrix;\n\n    MeshJoint(ExportableNode *node, const MMatrix &inverseBindMatrix)\n        : node(node), inverseBindMatrix(inverseBindMatrix) {}\n\n    DEFAULT_COPY_MOVE_ASSIGN_DTOR(MeshJoint);\n};\n\ntypedef std::vector<MeshJoint> MeshJoints;\n\nclass MeshSkeleton {\n  public:\n    MeshSkeleton(ExportableScene &scene, const ExportableNode &node,\n                 const MFnMesh &mesh);\n    virtual ~MeshSkeleton();\n\n    void dump(class IndentableStream &out, const std::string &name) const;\n\n    bool isEmpty() const { return m_maxVertexJointAssignmentCount == 0; }\n\n    const MeshJoints &joints() const { return m_joints; }\n\n    const VertexJointAssignmentTable &vertexJointAssignments() const {\n        return m_vertexJointAssignmentsTable;\n    }\n\n    size_t maxVertexJointAssignmentCount() const {\n        return m_maxVertexJointAssignmentCount;\n    }\n\n    size_t vertexJointAssignmentSetCount() const;\n\n    MObject inputShape() const { \n        return m_inputShape; \n    }\n\n  private:\n    DISALLOW_COPY_MOVE_ASSIGN(MeshSkeleton);\n\n    MeshJoints m_joints;\n\n    std::vector<VertexJointAssignment> m_vertexJointAssignmentsVector;\n    VertexJointAssignmentTable m_vertexJointAssignmentsTable;\n    size_t m_maxVertexJointAssignmentCount;\n    MObject m_inputShape;\n\n    static MObject\n    tryExtractSkinCluster(const MFnMesh &fnMesh,\n                          const MSelectionList &ignoredDeformers);\n};\n"
  },
  {
    "path": "src/MeshVertices.cpp",
    "content": "#include \"externals.h\"\r\n\r\n#include \"Arguments.h\"\r\n#include \"ExportableNode.h\"\r\n#include \"ExportableScene.h\"\r\n#include \"IndentableStream.h\"\r\n#include \"MayaException.h\"\r\n#include \"MeshIndices.h\"\r\n#include \"MeshSkeleton.h\"\r\n#include \"MeshVertices.h\"\r\n#include \"dump.h\"\r\n#include \"mikktspace.h\"\r\n#include \"spans.h\"\r\n\r\nstruct MikkTSpaceIndices {\r\n    gsl::span<const Index> positions;\r\n    gsl::span<const Index> normals;\r\n    gsl::span<const Index> texcoords;\r\n    gsl::span<Index> tangents;\r\n\r\n    MikkTSpaceIndices(const MeshIndices &meshIndices, const int setIndex) {\r\n        positions = gsl::make_span(meshIndices.indicesAt(Semantic::POSITION, 0));\r\n        normals = gsl::make_span(meshIndices.indicesAt(Semantic::NORMAL, 0));\r\n        texcoords = gsl::make_span(meshIndices.indicesAt(Semantic::TEXCOORD, setIndex));\r\n        tangents = mutable_span(gsl::make_span(meshIndices.indicesAt(Semantic::TANGENT, setIndex)));\r\n    }\r\n};\r\n\r\nstruct MikkTSpaceVectors {\r\n    gsl::span<const Position> positions;\r\n    gsl::span<const Normal> normals;\r\n    gsl::span<const TexCoord> texcoords;\r\n    gsl::span<float> tangentComponents;\r\n\r\n    MikkTSpaceVectors(const MeshIndices &meshIndices, VertexElementsPerSetIndexTable &vertexTable, const int setIndex) {\r\n        const auto numTangents = meshIndices.maxVertexCount();\r\n\r\n        // HACK: We assume the indices arrays are large enough here...\r\n        assert(meshIndices.indicesAt(Semantic::TANGENT, setIndex).size() >= numTangents);\r\n\r\n        positions = reinterpret_span<Position>(vertexTable.at(Semantic::POSITION).at(0).floats());\r\n        normals = reinterpret_span<Normal>(vertexTable.at(Semantic::NORMAL).at(0).floats());\r\n        texcoords = reinterpret_span<TexCoord>(vertexTable.at(Semantic::TEXCOORD).at(setIndex).floats());\r\n        tangentComponents = mutable_span<float>(vertexTable.at(Semantic::TANGENT).at(setIndex).floats());\r\n    }\r\n};\r\n\r\nstruct MikkTSpaceContext : SMikkTSpaceContext {\r\n    const size_t triangleCount;\r\n    const ShapeIndex shapeIndex;\r\n    MikkTSpaceIndices indices;\r\n    MikkTSpaceVectors vectors;\r\n    SMikkTSpaceInterface interface;\r\n\r\n    // TODO: It seems MikkTSpace can generate zero tangents for some degenerate\r\n    // triangles, although it does contain code to deal with these. NOTE:\r\n    // Cleaning up the mesh with Maya seems to fix this.\r\n    mutable std::unordered_set<int> invalidTriangleIndices;\r\n\r\n    MikkTSpaceContext(const MeshIndices &meshIndices, VertexElementsPerSetIndexTable &vertexTable, const int setIndex,\r\n                      const ShapeIndex &shapeIndex)\r\n        : SMikkTSpaceContext{}, triangleCount(meshIndices.primitiveCount()), shapeIndex(shapeIndex),\r\n          indices(meshIndices, setIndex), vectors(meshIndices, vertexTable, setIndex), interface{} {\r\n        m_pInterface = &interface;\r\n        m_pUserData = this;\r\n\r\n        interface.m_getNumFaces = getNumFaces;\r\n        interface.m_getNumVerticesOfFace = getNumVerticesOfFace;\r\n        interface.m_getPosition = getPosition;\r\n        interface.m_getNormal = getNormal;\r\n        interface.m_getTexCoord = getTexCoord;\r\n        interface.m_setTSpaceBasic = setTSpaceBasic;\r\n        interface.m_reportDegenerateTriangle = reportDegenerateTriangle;\r\n    }\r\n\r\n    void computeTangents(const double angularThreshold) const {\r\n        const auto mkr = genTangSpace(this, static_cast<float>(angularThreshold));\r\n\r\n        if (!mkr) {\r\n            MayaException::printError(\"Failed to get Mikkelsen tangents (aka MikkTSpace)\");\r\n        }\r\n    }\r\n\r\n    static int getNumFaces(const SMikkTSpaceContext *pContext) {\r\n        const auto count = reinterpret_cast<const MikkTSpaceContext *>(pContext)->triangleCount;\r\n        return static_cast<int>(count);\r\n    }\r\n\r\n    static int getNumVerticesOfFace(const SMikkTSpaceContext *pContext, const int iFace) { return 3; }\r\n\r\n    static void getPosition(const SMikkTSpaceContext *pContext, float fvPosOut[], const int iFace, const int iVert) {\r\n        const auto context = reinterpret_cast<const MikkTSpaceContext *>(pContext);\r\n        const auto index = context->indices.positions[iFace * 3 + iVert];\r\n        const auto &vector = context->vectors.positions[index];\r\n        fvPosOut[0] = vector[0];\r\n        fvPosOut[1] = vector[1];\r\n        fvPosOut[2] = vector[2];\r\n    }\r\n\r\n    static void getNormal(const SMikkTSpaceContext *pContext, float fvNormOut[], const int iFace, const int iVert) {\r\n        const auto context = reinterpret_cast<const MikkTSpaceContext *>(pContext);\r\n        const auto index = context->indices.normals[iFace * 3 + iVert];\r\n        const auto &vector = context->vectors.normals[index];\r\n        fvNormOut[0] = vector[0];\r\n        fvNormOut[1] = vector[1];\r\n        fvNormOut[2] = vector[2];\r\n    }\r\n\r\n    static void getTexCoord(const SMikkTSpaceContext *pContext, float fvTexcOut[], const int iFace, const int iVert) {\r\n        const auto context = reinterpret_cast<const MikkTSpaceContext *>(pContext);\r\n        const auto index = context->indices.texcoords[iFace * 3 + iVert];\r\n\r\n        if (index < 0) {\r\n            fvTexcOut[0] = NAN;\r\n            fvTexcOut[1] = NAN;\r\n        } else {\r\n            const auto &vector = context->vectors.texcoords[index];\r\n            fvTexcOut[0] = vector[0];\r\n            fvTexcOut[1] = 1 - vector[1];\r\n        }\r\n    }\r\n\r\n    static void setTSpaceBasic(const SMikkTSpaceContext *pContext, const float fvTangent[], const float fSign,\r\n                               const int iFace, const int iVert) {\r\n        const auto context = reinterpret_cast<const MikkTSpaceContext *>(pContext);\r\n\r\n        // Re-index\r\n        const auto index = iFace * 3 + iVert;\r\n        auto &tangentIndexRef = context->indices.tangents[index];\r\n\r\n        // If the vertex doesn't have a tangent, don't assign one\r\n        if (tangentIndexRef >= 0) {\r\n            tangentIndexRef = index;\r\n\r\n            const float tx = fvTangent[0];\r\n            const float ty = fvTangent[1];\r\n            const float tz = fvTangent[2];\r\n\r\n            if (tx == 0 && ty == 0 && tz == 0) {\r\n                context->invalidTriangleIndices.insert(iFace);\r\n            }\r\n\r\n            if (context->shapeIndex.isMainShapeIndex()) {\r\n                float *p = &context->vectors.tangentComponents[index * array_size<MainShapeTangent>::size];\r\n                p[0] = tx;\r\n                p[1] = ty;\r\n                p[2] = tz;\r\n                p[3] = fSign;\r\n            } else {\r\n                float *p = &context->vectors.tangentComponents[index * array_size<BlendShapeTangent>::size];\r\n                p[0] = tx;\r\n                p[1] = ty;\r\n                p[2] = tz;\r\n            }\r\n        }\r\n    }\r\n\r\n    static void reportDegenerateTriangle(const SMikkTSpaceContext *pContext, int triangleIndex) {\r\n        const auto context = reinterpret_cast<const MikkTSpaceContext *>(pContext);\r\n        context->invalidTriangleIndices.insert(triangleIndex);\r\n    }\r\n};\r\n\r\nMeshVertices::MeshVertices(const MeshIndices &meshIndices, const MeshSkeleton *meshSkeleton, const MFnMesh &mesh,\r\n                           ShapeIndex shapeIndex, const ExportableNode &node, const Arguments &args)\r\n    : shapeIndex(shapeIndex) {\r\n    MStatus status;\r\n\r\n    auto &semantics = meshIndices.semantics;\r\n\r\n    MFnMesh input_mesh;\r\n    if (args.skinUsePreBindMatrixAndMesh && meshSkeleton && !meshSkeleton->inputShape().isNull()) {\r\n       // Use skincluster input mesh data to retrieve pre-bind point positions and normals\r\n        input_mesh.setObject(meshSkeleton->inputShape());\r\n    } else {\r\n        // Use output mesh data at 'initialValuesTime' as bind pose point positions and normals\r\n        input_mesh.setObject(mesh.dagPath());\r\n    }\r\n\r\n    // Get points\r\n    MPointArray mPoints;\r\n    THROW_ON_FAILURE(input_mesh.getPoints(mPoints, MSpace::kTransform));\r\n    const int numPoints = mPoints.length();\r\n    m_positions.reserve(numPoints);\r\n\r\n    const auto positionScale = args.getBakeScaleFactor();\r\n    for (int i = 0; i < numPoints; ++i) {\r\n        const auto p = mPoints[i] * positionScale;\r\n        m_positions.push_back(\r\n            {roundToFloat(p.x, args.posPrecision), \r\n             roundToFloat(p.y, args.posPrecision), \r\n             roundToFloat(p.z, args.posPrecision)});\r\n    }\r\n\r\n    const auto positionsSpan = floats(span(m_positions));\r\n    m_table.at(Semantic::POSITION).push_back(positionsSpan);\r\n    \r\n    // Get normals\r\n    auto oppositePlug = mesh.findPlug(\"opposite\", true, &status);\r\n    THROW_ON_FAILURE(status);\r\n\r\n    bool shouldFlipNormals = false;\r\n    status = oppositePlug.getValue(shouldFlipNormals);\r\n    THROW_ON_FAILURE(status);\r\n\r\n    // TODO: When flipping normals, we should also flip the winding\r\n    const float normalSign = shouldFlipNormals ? -1.0f : 1.0f;\r\n\r\n    MFloatVectorArray mNormals;\r\n    THROW_ON_FAILURE(input_mesh.getNormals(mNormals, MSpace::kWorld));\r\n    const int numNormals = mNormals.length();\r\n    m_normals.reserve(numNormals);\r\n    for (int i = 0; i < numNormals; ++i) {\r\n        auto n = mNormals[i];\r\n        m_normals.push_back({roundToFloat(normalSign * n.x, args.dirPrecision), \r\n                             roundToFloat(normalSign * n.y, args.dirPrecision),\r\n                             roundToFloat(normalSign * n.z, args.dirPrecision)});\r\n    }\r\n\r\n    const auto normalsSpan = floats(span(m_normals));\r\n    m_table.at(Semantic::NORMAL).push_back(normalsSpan);\r\n\r\n    // Get color sets.\r\n    for (auto &&semantic : semantics.descriptions(Semantic::COLOR)) {\r\n        MColorArray mColors;\r\n        THROW_ON_FAILURE(mesh.getColors(mColors, &semantic.setName));\r\n\r\n        const int numColors = mColors.length();\r\n        THROW_ON_FAILURE(status);\r\n\r\n        auto &colors = m_colorSets[semantic.setIndex];\r\n        colors.reserve(numColors);\r\n        for (int i = 0; i < numColors; ++i) {\r\n            const auto &c = mColors[i];\r\n            ;\r\n            colors.push_back({roundToFloat(c.r, args.colPrecision), \r\n                              roundToFloat(c.g, args.colPrecision),\r\n                              roundToFloat(c.b, args.colPrecision), \r\n                              roundToFloat(c.a, args.colPrecision)});\r\n        }\r\n\r\n        const auto colorsSpan = floats(span(colors));\r\n        m_table.at(Semantic::COLOR).push_back(colorsSpan);\r\n    }\r\n\r\n    // Get UV sets\r\n    // These are not interleaved in Maya, so we have to do it ourselves...\r\n    for (auto &&semantic : semantics.descriptions(Semantic::TEXCOORD)) {\r\n        MFloatArray uArray;\r\n        MFloatArray vArray;\r\n        THROW_ON_FAILURE(mesh.getUVs(uArray, vArray, &semantic.setName));\r\n\r\n        assert(uArray.length() == vArray.length());\r\n        const int uCount = uArray.length();\r\n\r\n        auto &uvSet = m_uvSets[semantic.setIndex] = Float2Vector(uCount);\r\n        for (auto uIndex = 0; uIndex < uCount; uIndex++) {\r\n            auto &uvArray = uvSet[uIndex];\r\n            uvArray[0] = roundToFloat(uArray[uIndex], args.texPrecision);\r\n            uvArray[1] = roundToFloat(1 - vArray[uIndex], args.texPrecision);\r\n        }\r\n\r\n        const auto uvSpan = floats(span(uvSet));\r\n        m_table.at(Semantic::TEXCOORD).push_back(uvSpan);\r\n    }\r\n\r\n    // Get tangent sets\r\n    for (auto &&semantic : semantics.descriptions(Semantic::TANGENT)) {\r\n        if (args.mikkelsenTangentAngularThreshold > 0) {\r\n            const auto numTriangles = meshIndices.primitiveCount();\r\n            const auto numTangents = numTriangles * 3;\r\n\r\n            auto &tangentSet = m_tangentSets[semantic.setIndex];\r\n            tangentSet.resize(numTangents * dimension(Semantic::TANGENT, shapeIndex));\r\n\r\n            const auto tangentSpan = floats(span(tangentSet));\r\n            m_table.at(Semantic::TANGENT).push_back(tangentSpan);\r\n\r\n            MikkTSpaceContext context(meshIndices, m_table, semantic.setIndex, shapeIndex);\r\n            context.computeTangents(args.mikkelsenTangentAngularThreshold);\r\n\r\n            if (!context.invalidTriangleIndices.empty()) {\r\n                // Don't flood the console output if too many faces are invalid.\r\n                int maxIndices = 10;\r\n\r\n                std::stringstream ss;\r\n                ss << \"select -r\";\r\n                for (auto triangleIndex : context.invalidTriangleIndices) {\r\n                    ss << ' ' << mesh.name() << \".f[\" << meshIndices.triangleToFaceIndex(triangleIndex) << \"]\";\r\n                    if (--maxIndices < 0)\r\n                        break;\r\n                }\r\n                ss << \";\";\r\n\r\n                MayaException::printError(formatted(\"Tangent generator found degenerate faces!\\nThis can cause \"\r\n                                                    \"rendering artifacts.\\nPlease check and fix your mesh and \"\r\n                                                    \"UV mapping.\\nUse the following command select the first \"\r\n                                                    \"invalid faces:\\n%s\\n\\n\",\r\n                                                    ss.str().c_str()));\r\n            }\r\n        } else {\r\n            MFloatVectorArray mTangents;\r\n\r\n            status = mesh.getTangents(mTangents, MSpace::kWorld, &semantic.setName);\r\n\r\n            if (status.error()) {\r\n                MayaException::printWarning(\r\n                    formatted(\"Maya failed to provide the tangents of mesh '%s'!\\n\"\r\n                              \"Assign texture coordinates and/or cleanup your mesh and try again please\",\r\n                              mesh.name().asChar()),\r\n                    status);\r\n            } else {\r\n                const int numTangents = mTangents.length();\r\n\r\n                auto &tangentSet = m_tangentSets[semantic.setIndex];\r\n                tangentSet.reserve(numTangents * dimension(Semantic::TANGENT, shapeIndex));\r\n\r\n                std::unordered_set<int> invalidTangentIds;\r\n\r\n                for (int i = 0; i < numTangents; ++i) {\r\n                    auto t = mTangents[i];\r\n                    const auto rht = 2 * mesh.isRightHandedTangent(i, &semantic.setName, &status) - 1.0f;\r\n                    THROW_ON_FAILURE(status);\r\n                    tangentSet.push_back(roundToFloat(t.x, args.dirPrecision));\r\n                    tangentSet.push_back(roundToFloat(t.y, args.dirPrecision));\r\n                    tangentSet.push_back(roundToFloat(t.z, args.dirPrecision));\r\n\r\n                    auto l = t.x * t.x + t.y * t.y + t.z * t.z;\r\n                    if (abs(l - 1) > 1e-6) {\r\n                        invalidTangentIds.insert(i);\r\n                    }\r\n\r\n                    if (shapeIndex.isMainShapeIndex()) {\r\n                        tangentSet.push_back(rht);\r\n                    }\r\n                }\r\n\r\n                const auto tangentSpan = floats(span(tangentSet));\r\n                m_table.at(Semantic::TANGENT).push_back(tangentSpan);\r\n\r\n                if (!invalidTangentIds.empty()) {\r\n                    auto meshObject = mesh.object(&status);\r\n                    THROW_ON_FAILURE(status);\r\n\r\n                    MItMeshFaceVertex itFaceVertex(meshObject, &status);\r\n                    THROW_ON_FAILURE(status);\r\n\r\n                    // Don't flood the console output if too many vertices are\r\n                    // invalid.\r\n                    int selectedIndexCount = 0;\r\n\r\n                    const auto meshName = mesh.name();\r\n\r\n                    std::stringstream ss;\r\n                    ss << formatted(\"doMenuComponentSelectionExt(\\\"%s\\\", \"\r\n                                    \"\\\"pvf\\\", 0);\",\r\n                                    meshName.asChar())\r\n                       << endl;\r\n                    ss << formatted(\"setAttr \\\"%s.displayTangent\\\" 1;\", meshName.asChar()) << endl;\r\n                    ss << formatted(\"checkMeshDisplayNormals \\\"%s\\\";\", meshName.asChar()) << endl;\r\n                    ss << \"select -r\";\r\n\r\n                    while (!itFaceVertex.isDone() && selectedIndexCount < 10) {\r\n                        if (invalidTangentIds.end() != invalidTangentIds.find(itFaceVertex.tangentId())) {\r\n                            ss << ' ' << mesh.name() << \".vtxFace[\" << itFaceVertex.vertId() << \"][\"\r\n                               << itFaceVertex.faceId() << \"]\";\r\n                            ++selectedIndexCount;\r\n                        }\r\n                        itFaceVertex.next();\r\n                    }\r\n\r\n                    ss << \";\";\r\n\r\n                    // Find the faces with invalid tangents.\r\n                    MayaException::printError(formatted(\"Mesh '%s' has %d invalid tangents!\\nAssign texture \"\r\n                                                        \"coordinates and/or cleanup your mesh and try again \"\r\n                                                        \"please.\\nUse the following command to visualize the \"\r\n                                                        \"tangents and select the first invalid \"\r\n                                                        \"face-vertices:\\n\\n%s\\n\",\r\n                                                        mesh.name().asChar(), invalidTangentIds.size(),\r\n                                                        ss.str().c_str()));\r\n                }\r\n            }\r\n        }\r\n    }\r\n\r\n    // Get skin joint vertex weights and indices, but only if a skeleton is\r\n    // provided\r\n    if (meshSkeleton) {\r\n        // Now group vertex joint assignments into element of multiple\r\n        // components (4 in GLTF)\r\n        const auto vertexJointAssignmentElementSize = int(array_size<JointIndices>::size);\r\n\r\n        const auto setCount = int(meshSkeleton->vertexJointAssignmentSetCount());\r\n        const auto &assignmentsTable = meshSkeleton->vertexJointAssignments();\r\n\r\n        m_jointWeightSums.resize(numPoints);\r\n\r\n        for (int setIndex = 0; setIndex < setCount; ++setIndex) {\r\n            auto &weightsComponents = m_jointWeights[setIndex];\r\n            auto &indicesComponents = m_jointIndices[setIndex];\r\n            weightsComponents.resize(numPoints);\r\n            indicesComponents.resize(numPoints);\r\n\r\n            auto weightsSpan = span(weightsComponents);\r\n            auto indicesSpan = span(indicesComponents);\r\n\r\n            m_table.at(Semantic::WEIGHTS).push_back(floats(weightsSpan));\r\n            m_table.at(Semantic::JOINTS).push_back(shorts(indicesSpan));\r\n\r\n            const auto componentOffset = int(setIndex * vertexJointAssignmentElementSize);\r\n\r\n            for (int pointIndex = 0; pointIndex < numPoints; ++pointIndex) {\r\n                const auto &assignments = assignmentsTable.at(pointIndex);\r\n                const auto assignmentsSize = int(assignments.size());\r\n\r\n                const auto assignmentCount =\r\n                    std::clamp<int>(assignmentsSize - componentOffset, 0, vertexJointAssignmentElementSize);\r\n                const auto assignmentIndex = std::clamp<int>(componentOffset, 0, assignmentsSize - assignmentCount);\r\n                const auto sourceComponents = assignments.subspan(assignmentIndex, assignmentCount);\r\n\r\n                const auto targetWeights =\r\n                    mutable_span(reinterpret_span<JointWeight>(weightsSpan.subspan(pointIndex, 1)));\r\n                const auto targetIndices =\r\n                    mutable_span(reinterpret_span<JointIndex>(indicesSpan.subspan(pointIndex, 1)));\r\n\r\n                for (auto componentIndex = 0; componentIndex < assignmentCount; ++componentIndex) {\r\n                    const auto &components = sourceComponents.at(componentIndex);\r\n                    targetIndices[componentIndex] = components.jointIndex;\r\n                    targetWeights[componentIndex] = components.jointWeight;\r\n                    m_jointWeightSums[pointIndex] += components.jointWeight;\r\n                }\r\n            }\r\n        }\r\n\r\n        // Normalize\r\n        for (int setIndex = 0; setIndex < setCount; ++setIndex) {\r\n            auto &weightsComponents = m_jointWeights[setIndex];\r\n            auto weightsSpan = span(weightsComponents);\r\n            for (int pointIndex = 0; pointIndex < numPoints; ++pointIndex) {\r\n                const auto targetWeights =\r\n                    mutable_span(reinterpret_span<JointWeight>(weightsSpan.subspan(pointIndex, 1)));\r\n                float normalize = 1 / m_jointWeightSums[pointIndex];\r\n                for (auto &weight : targetWeights) {\r\n                    weight *= normalize;\r\n                }\r\n            }\r\n        }\r\n    }\r\n}\r\n\r\nMeshVertices::~MeshVertices() = default;\r\n\r\nvoid MeshVertices::dump(IndentableStream &out, const std::string &name) const {\r\n    dump_vertex_table(out, name, m_table, shapeIndex);\r\n}\r\n"
  },
  {
    "path": "src/MeshVertices.h",
    "content": "#pragma once\n\n#include \"MeshSemantics.h\"\n#include \"macros.h\"\n#include \"sceneTypes.h\"\n#include \"spans.h\"\n#include <ostream>\n\nclass VertexComponents {\n  public:\n    Component::Type type;\n\n    const gsl::span<const byte> &bytes() const { return m_data; }\n    gsl::span<const float> floats() const {\n        return reinterpret_span<float>(m_data);\n    }\n    gsl::span<const ushort> shorts() const {\n        return reinterpret_span<ushort>(m_data);\n    }\n\n    explicit VertexComponents(const gsl::span<const float> &fs)\n        : type(Component::FLOAT), m_data(reinterpret_span<byte>(fs)) {}\n\n    explicit VertexComponents(const gsl::span<const ushort> &ns)\n        : type(Component::USHORT), m_data(reinterpret_span<byte>(ns)) {}\n\n    VertexComponents subspan(const size_t offset, const size_t count) const {\n        switch (type) {\n        case Component::FLOAT:\n            return VertexComponents(floats().subspan(offset, count));\n        case Component::USHORT:\n            return VertexComponents(shorts().subspan(offset, count));\n        default:\n            throw std::runtime_error(\"Invalid component type\");\n        }\n    }\n\n    friend bool operator==(const VertexComponents &lhs,\n                           const VertexComponents &rhs) {\n        return lhs.type == rhs.type && lhs.m_data == rhs.m_data;\n    }\n\n    friend bool operator!=(const VertexComponents &lhs,\n                           const VertexComponents &rhs) {\n        return !(lhs == rhs);\n    }\n\n    bool empty() const { return m_data.empty(); }\n\n    DEFAULT_COPY_MOVE_ASSIGN_DTOR(VertexComponents);\n\n  private:\n    gsl::span<const byte> m_data;\n};\n\ntemplate <typename T> inline VertexComponents floats(gsl::span<T> span) {\n    return VertexComponents(reinterpret_span<float>(span));\n}\n\ntemplate <typename T> inline VertexComponents shorts(gsl::span<T> span) {\n    return VertexComponents(reinterpret_span<ushort>(span));\n}\n\ntypedef std::vector<VertexComponents> VertexElementsPerSetIndex;\n\ntypedef std::array<VertexElementsPerSetIndex, Semantic::COUNT>\n    VertexElementsPerSetIndexTable;\n\ninline VertexComponents componentsAt(const VertexComponents &elements,\n                                     const size_t vertexIndex,\n                                     const Semantic::Kind semantic,\n                                     const ShapeIndex &shapeIndex) {\n    const auto count = dimension(semantic, shapeIndex);\n    return elements.subspan(vertexIndex * count, count);\n}\n\nclass Arguments;\nclass MeshIndices;\nclass ExportableNode;\n\nclass MeshVertices {\n  public:\n    MeshVertices(const MeshIndices &meshIndices,\n                 const MeshSkeleton *meshSkeleton, const MFnMesh &mesh,\n                 ShapeIndex shapeIndex, const ExportableNode &node,\n                 const Arguments &args);\n    virtual ~MeshVertices();\n\n    const ShapeIndex shapeIndex;\n\n    const VertexElementsPerSetIndexTable &table() const { return m_table; }\n\n    void dump(class IndentableStream &out, const std::string &name) const;\n\n    const VertexComponents &\n    vertexElementComponentsAt(const size_t semanticIndex,\n                              const size_t setIndex) const {\n        return m_table.at(semanticIndex).at(setIndex);\n    }\n\n  private:\n    friend class MeshShape;\n\n    PositionVector m_positions;\n    NormalVector m_normals;\n\n    std::map<SetIndex, FloatVector> m_tangentSets;\n    std::map<SetIndex, TexCoordVector> m_uvSets;\n    std::map<SetIndex, ColorVector> m_colorSets;\n    std::map<SetIndex, JointWeightsVector> m_jointWeights;\n    std::map<SetIndex, JointIndicesVector> m_jointIndices;\n    std::vector<float> m_jointWeightSums;\n\n    VertexElementsPerSetIndexTable m_table;\n\n    DISALLOW_COPY_MOVE_ASSIGN(MeshVertices);\n};\n"
  },
  {
    "path": "src/NodeAnimation.cpp",
    "content": "#include \"externals.h\"\r\n\r\n#include \"ExportableMesh.h\"\r\n#include \"ExportableNode.h\"\r\n#include \"NodeAnimation.h\"\r\n#include \"OutputStreamsPatch.h\"\r\n#include \"Transform.h\"\r\n\r\nNodeAnimation::NodeAnimation(const ExportableNode &node, const ExportableFrames &frames, const double scaleFactor, const Arguments &arguments)\r\n    : node(node), mesh(node.mesh()), m_scaleFactor(scaleFactor), m_blendShapeCount(mesh ? mesh->blendShapeCount() : 0), m_arguments(arguments) {\r\n    auto &sNode = node.glSecondaryNode();\r\n    auto &pNode = node.glPrimaryNode();\r\n\r\n    m_invalidLocalTransformTimes.reserve(10);\r\n\r\n    const size_t detectStepSampleCount = m_arguments.getStepDetectSampleCount();\r\n\r\n    switch (node.transformKind) {\r\n    case TransformKind::Simple:\r\n        m_positions = std::make_unique<PropAnimation>(frames, pNode, GLTF::Animation::Path::TRANSLATION, 3, detectStepSampleCount, false);\r\n        m_rotations = std::make_unique<PropAnimation>(frames, pNode, GLTF::Animation::Path::ROTATION, 4, detectStepSampleCount, false);\r\n        m_scales = std::make_unique<PropAnimation>(frames, pNode, GLTF::Animation::Path::SCALE, 3, detectStepSampleCount, false);\r\n        break;\r\n    case TransformKind::ComplexJoint:\r\n        m_positions = std::make_unique<PropAnimation>(frames, sNode, GLTF::Animation::Path::TRANSLATION, 3, detectStepSampleCount, false);\r\n        m_rotations = std::make_unique<PropAnimation>(frames, pNode, GLTF::Animation::Path::ROTATION, 4, detectStepSampleCount, false);\r\n        m_scales = std::make_unique<PropAnimation>(frames, pNode, GLTF::Animation::Path::SCALE, 3, detectStepSampleCount, false);\r\n\r\n        m_correctors = std::make_unique<PropAnimation>(frames, sNode, GLTF::Animation::Path::SCALE, 3, detectStepSampleCount, false);\r\n\r\n        if (m_arguments.forceAnimationChannels) {\r\n            m_dummyProps1 = std::make_unique<PropAnimation>(frames, pNode, GLTF::Animation::Path::TRANSLATION, 3, detectStepSampleCount, false);\r\n            m_dummyProps2 = std::make_unique<PropAnimation>(frames, sNode, GLTF::Animation::Path::ROTATION, 4, detectStepSampleCount, false);\r\n        }\r\n        break;\r\n\r\n    case TransformKind::ComplexTransform:\r\n        m_positions = std::make_unique<PropAnimation>(frames, sNode, GLTF::Animation::Path::TRANSLATION, 3, detectStepSampleCount, false);\r\n        m_rotations = std::make_unique<PropAnimation>(frames, sNode, GLTF::Animation::Path::ROTATION, 4, detectStepSampleCount, false);\r\n        m_scales = std::make_unique<PropAnimation>(frames, sNode, GLTF::Animation::Path::SCALE, 3, detectStepSampleCount, false);\r\n\r\n        m_correctors = std::make_unique<PropAnimation>(frames, pNode, GLTF::Animation::Path::TRANSLATION, 3, detectStepSampleCount, false);\r\n\r\n        if (m_arguments.forceAnimationChannels) {\r\n            m_dummyProps1 = std::make_unique<PropAnimation>(frames, pNode, GLTF::Animation::Path::SCALE, 3, detectStepSampleCount, false);\r\n            m_dummyProps2 = std::make_unique<PropAnimation>(frames, pNode, GLTF::Animation::Path::ROTATION, 4, detectStepSampleCount, false);\r\n        }\r\n        break;\r\n\r\n    default:\r\n        assert(false);\r\n        break;\r\n    }\r\n\r\n    if (m_blendShapeCount > 0) {\r\n        m_weights = std::make_unique<PropAnimation>(frames, pNode, GLTF::Animation::Path::WEIGHTS, m_blendShapeCount, detectStepSampleCount, true);\r\n    }\r\n}\r\n\r\nvoid NodeAnimation::sampleAt(const MTime &absoluteTime, const int frameIndex, const int superSampleIndex, NodeTransformCache &transformCache) {\r\n    auto &transformState = transformCache.getTransform(&node, m_scaleFactor, m_arguments.posPrecision, m_arguments.sclPrecision, m_arguments.dirPrecision);\r\n    auto &pTRS = transformState.primaryTRS();\r\n    auto &sTRS = transformState.secondaryTRS();\r\n\r\n    if (transformState.maxNonOrthogonality > MAX_NON_ORTHOGONALITY && m_invalidLocalTransformTimes.size() < m_invalidLocalTransformTimes.capacity()) {\r\n        m_maxNonOrthogonality = std::max(m_maxNonOrthogonality, transformState.maxNonOrthogonality);\r\n        m_invalidLocalTransformTimes.emplace_back(absoluteTime);\r\n    }\r\n\r\n    switch (node.transformKind) {\r\n    case TransformKind::Simple:\r\n        m_positions->append(gsl::make_span(pTRS.translation), superSampleIndex);\r\n        m_rotations->appendQuaternion(gsl::make_span(pTRS.rotation), superSampleIndex);\r\n        m_scales->append(gsl::make_span(pTRS.scale), superSampleIndex);\r\n        break;\r\n    case TransformKind::ComplexJoint:\r\n        m_positions->append(gsl::make_span(sTRS.translation), superSampleIndex);\r\n        m_rotations->appendQuaternion(gsl::make_span(pTRS.rotation), superSampleIndex);\r\n        m_scales->append(gsl::make_span(pTRS.scale), superSampleIndex);\r\n\r\n        m_correctors->append(gsl::make_span(sTRS.scale), superSampleIndex);\r\n\r\n        if (m_arguments.forceAnimationChannels) {\r\n            m_dummyProps1->append(gsl::make_span(pTRS.translation), superSampleIndex);\r\n            m_dummyProps2->appendQuaternion(gsl::make_span(sTRS.rotation), superSampleIndex);\r\n        }\r\n        break;\r\n\r\n    case TransformKind::ComplexTransform:\r\n        m_positions->append(gsl::make_span(sTRS.translation), superSampleIndex);\r\n        m_rotations->appendQuaternion(gsl::make_span(sTRS.rotation), superSampleIndex);\r\n        m_scales->append(gsl::make_span(sTRS.scale), superSampleIndex);\r\n\r\n        m_correctors->append(gsl::make_span(pTRS.translation), superSampleIndex);\r\n\r\n        if (m_arguments.forceAnimationChannels) {\r\n            m_dummyProps1->append(gsl::make_span(pTRS.scale), superSampleIndex);\r\n            m_dummyProps2->appendQuaternion(gsl::make_span(pTRS.rotation), superSampleIndex);\r\n        }\r\n        break;\r\n\r\n    default:\r\n        assert(false);\r\n        break;\r\n    }\r\n\r\n    if (m_blendShapeCount) {\r\n        auto weights = mesh->currentWeights();\r\n        assert(weights.size() == m_blendShapeCount);\r\n        m_weights->append(span(weights), superSampleIndex);\r\n    }\r\n}\r\n\r\nvoid NodeAnimation::exportTo(GLTF::Animation &glAnimation) {\r\n\r\n    if (!m_invalidLocalTransformTimes.empty()) {\r\n        // TODO: Use SVG to decompose the 3x3 matrix into a product of rotation\r\n        // and scale matrices.\r\n        cerr << prefix << \"WARNING: node '\" << node.name()\r\n             << \"' has animated transforms that are not representable by glTF! \"\r\n                \"Skewing is not supported, use 3 nodes to simulate this. \"\r\n                \"Largest deviation = \"\r\n             << std::fixed << std::setprecision(2) << m_maxNonOrthogonality * 100 << \"%\" << endl;\r\n\r\n        cerr << prefix << \"The first invalid transforms were found at times: \";\r\n        for (auto &time : m_invalidLocalTransformTimes)\r\n            cerr << time << \" \";\r\n        cerr << endl;\r\n    }\r\n\r\n    // Now create the glTF animations, but only for those props that animate\r\n    auto &pTRS = node.initialTransformState.primaryTRS();\r\n    auto &sTRS = node.initialTransformState.secondaryTRS();\r\n\r\n    switch (node.transformKind) {\r\n    case TransformKind::Simple:\r\n        finish(glAnimation, \"T\", m_positions, m_arguments.constantTranslationThreshold, pTRS.translation);\r\n        finish(glAnimation, \"R\", m_rotations, m_arguments.constantRotationThreshold, pTRS.rotation);\r\n        finish(glAnimation, \"S\", m_scales, m_arguments.constantScalingThreshold, pTRS.scale);\r\n        break;\r\n    case TransformKind::ComplexJoint:\r\n        finish(glAnimation, \"T\", m_positions, m_arguments.constantTranslationThreshold, sTRS.translation);\r\n        finish(glAnimation, \"R\", m_rotations, m_arguments.constantRotationThreshold, pTRS.rotation);\r\n        finish(glAnimation, \"S\", m_scales, m_arguments.constantScalingThreshold, pTRS.scale);\r\n\r\n        finish(glAnimation, \"C\", m_correctors, m_arguments.constantScalingThreshold, sTRS.scale);\r\n\r\n        if (m_arguments.forceAnimationChannels) {\r\n            finish(glAnimation, \"DT\", m_dummyProps1, 0, pTRS.translation);\r\n            finish(glAnimation, \"DR\", m_dummyProps2, 0, sTRS.rotation);\r\n        }\r\n        break;\r\n\r\n    case TransformKind::ComplexTransform:\r\n        finish(glAnimation, \"T\", m_positions, m_arguments.constantTranslationThreshold, sTRS.translation);\r\n        finish(glAnimation, \"R\", m_rotations, m_arguments.constantRotationThreshold, sTRS.rotation);\r\n        finish(glAnimation, \"S\", m_scales, m_arguments.constantScalingThreshold, sTRS.scale);\r\n\r\n        finish(glAnimation, \"C\", m_correctors, m_arguments.constantScalingThreshold, pTRS.translation);\r\n\r\n        if (m_arguments.forceAnimationChannels) {\r\n            finish(glAnimation, \"DS\", m_dummyProps1, 0, pTRS.scale);\r\n            finish(glAnimation, \"DR\", m_dummyProps2, 0, pTRS.rotation);\r\n        }\r\n        break;\r\n\r\n    default:\r\n        assert(false);\r\n        break;\r\n    }\r\n\r\n    if (m_blendShapeCount) {\r\n        const auto initialWeights = mesh->initialWeights();\r\n        assert(initialWeights.size() == m_blendShapeCount);\r\n        finish(glAnimation, \"W\", m_weights, m_arguments.constantWeightsThreshold, initialWeights);\r\n    }\r\n}\r\n\r\nvoid NodeAnimation::finish(GLTF::Animation &glAnimation, const char *propName, std::unique_ptr<PropAnimation> &animatedProp,\r\n    double constantThreshold, const gsl::span<const float> &baseValues) const {\r\n    const auto dimension = animatedProp->dimension;\r\n\r\n    if (dimension) {\r\n        assert(dimension == baseValues.size());\r\n\r\n        const size_t detectStepSampleCount = m_arguments.getStepDetectSampleCount();\r\n\r\n        auto &componentValues = animatedProp->componentValuesPerFrameTable.at(0);\r\n\r\n        // Check if all samples are constant. In that case, we drop the animation, unless it is forced\r\n        bool isConstant = true;\r\n        for (size_t offset = 0; offset < componentValues.size() && isConstant; offset += dimension) {\r\n            for (size_t axis = 0; axis < dimension && isConstant; ++axis) {\r\n                isConstant = std::abs(baseValues[axis] - componentValues[offset + axis]) < constantThreshold;\r\n            }\r\n        }\r\n\r\n        if (isConstant && !m_arguments.forceAnimationSampling && !m_arguments.forceAnimationChannels) {\r\n            // All animation frames are the same as the scene, to need to animate the prop.\r\n            animatedProp.release();\r\n        } else {\r\n            const auto useSingleKey = isConstant && !m_arguments.forceAnimationSampling;\r\n            auto interpolation = \"LINEAR\";\r\n\r\n            if (!useSingleKey && detectStepSampleCount > 1) {\r\n                // Check if STEP animation can be used for this channel.\r\n                // TODO: Split into multiple parts!\r\n                auto canUseStep = true;\r\n                for (size_t offset = 0; offset < componentValues.size() && canUseStep; offset += dimension) {\r\n                    const auto* startValues = &componentValues[offset];\r\n                    for (size_t superSample = 1; superSample < detectStepSampleCount; ++superSample) {\r\n                        auto &stepComponentValues = animatedProp->componentValuesPerFrameTable.at(superSample);\r\n                        for (size_t axis = 0; axis < dimension; ++axis) {\r\n                            canUseStep = std::abs(startValues[axis] - stepComponentValues[offset + axis]) < constantThreshold;\r\n                        }\r\n                    }\r\n                }\r\n\r\n                if (canUseStep) {\r\n                    std::cout << prefix << \"Using STEP interpolation for channel \" << node.name() << \"/\" << propName << std::endl;\r\n                    interpolation = \"STEP\";\r\n                }\r\n            }\r\n\r\n            // TODO: Apply a curve simplifier.\r\n            animatedProp->finish(m_arguments.disableNameAssignment ? \"\" : node.name() + \"/anim/\" + glAnimation.name + \"/\" + propName, useSingleKey, interpolation);\r\n            glAnimation.channels.push_back(&animatedProp->glChannel);\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "src/NodeAnimation.h",
    "content": "#pragma once\r\n\r\n#include \"ExportableNode.h\"\r\n#include \"PropAnimation.h\"\r\n#include \"Arguments.h\"\r\n\r\nclass ExportableNode;\r\nclass ExportableMesh;\r\nclass NodeTransformCache;\r\n\r\nclass NodeAnimation {\r\n  public:\r\n    NodeAnimation(const ExportableNode &node, const ExportableFrames &frames, double scaleFactor, const Arguments &args);\r\n\r\n    /** Consider a blend shape weight animation path as constant if all values are below this threshold */\r\n    double constantWeightsThreshold = 1e-9;\r\n\r\n    virtual ~NodeAnimation() = default;\r\n\r\n    // Samples values at the current time\r\n    void sampleAt(const MTime &absoluteTime, int relativeFrameIndex, int superSampleIndex, NodeTransformCache &transformCache);\r\n\r\n    void exportTo(GLTF::Animation &glAnimation);\r\n\r\n    const ExportableNode &node;\r\n    const ExportableMesh *mesh;\r\n\r\n  private:\r\n    const double m_scaleFactor;\r\n    const size_t m_blendShapeCount;\r\n    const Arguments &m_arguments;\r\n\r\n    double m_maxNonOrthogonality = 0;\r\n    std::vector<MTime> m_invalidLocalTransformTimes;\r\n\r\n    std::unique_ptr<PropAnimation> m_positions;\r\n    std::unique_ptr<PropAnimation> m_rotations;\r\n    std::unique_ptr<PropAnimation> m_scales;\r\n\r\n    // Either the inverse parent scales, or pivot offsets.\r\n    std::unique_ptr<PropAnimation> m_correctors; \r\n\r\n    // Dummy constant channels for when animation channels are forced.\r\n    std::unique_ptr<PropAnimation> m_dummyProps1; \r\n    std::unique_ptr<PropAnimation> m_dummyProps2;\r\n\r\n    std::unique_ptr<PropAnimation> m_weights;\r\n\r\n    void finish(GLTF::Animation &glAnimation, const char *propName, std::unique_ptr<PropAnimation> &animatedProp, double constantThreshold, const gsl::span<const float> &baseValues) const;\r\n\r\n    template <int N>\r\n    void finish(GLTF::Animation &glAnimation, const char *propName, std::unique_ptr<PropAnimation> &animatedProp, \r\n        double constantThreshold, int detectStepSampleCount, const float (&baseValues)[N]) {\r\n        finish(glAnimation, propName, animatedProp, constantThreshold, detectStepSampleCount, gsl::make_span(&baseValues[0], N));\r\n    }\r\n\r\n    DISALLOW_COPY_MOVE_ASSIGN(NodeAnimation);\r\n};\r\n"
  },
  {
    "path": "src/OutputStreamsPatch.h",
    "content": "#pragma once\n\n#include \"IndentableStream.h\"\n\n/*\n * Workaround for plugin not printing to cout/cerr in debug builds\n * https://forums.autodesk.com/t5/maya-programming/c-api-not-printing-to-output-window/td-p/4260798\n */\ntemplate <typename TChar = char> class OutputStreamsPatch {\n  public:\n    OutputStreamsPatch() {\n        original_cout_buf = cout.rdbuf(MStreamUtils::stdOutStream().rdbuf());\n        original_cerr_buf = cerr.rdbuf(MStreamUtils::stdErrorStream().rdbuf());\n        cout << prefix << \"Patched cout and cerr!\" << endl;\n    }\n\n    ~OutputStreamsPatch() {\n        cout << prefix << \"Restoring cout and cerr...\" << endl;\n        cout.rdbuf(original_cout_buf);\n        cerr.rdbuf(original_cout_buf);\n    }\n\n  private:\n    std::basic_streambuf<TChar> *original_cout_buf;\n    std::basic_streambuf<TChar> *original_cerr_buf;\n};\n"
  },
  {
    "path": "src/OutputWindow.cpp",
    "content": "#include \"externals.h\"\r\n\r\n#include \"OutputWindow.h\"\r\n\r\n#ifdef WIN32\r\n\r\nWindowFinder::WindowFinder(const char *windowStyleName, HWND parentWindowHandle)\r\n    : styleName(windowStyleName), windowHandle(nullptr) {\r\n    EnumWindows(Find, reinterpret_cast<LPARAM>(this));\r\n}\r\n\r\nbool WindowFinder::Find(HWND hWnd) {\r\n    DWORD processId = 0;\r\n    GetWindowThreadProcessId(hWnd, &processId);\r\n\r\n    if (processId == GetCurrentProcessId()) {\r\n        char windowClass[256];\r\n        RealGetWindowClassA(hWnd, windowClass, sizeof(windowClass));\r\n        if (strcmp(windowClass, styleName) == 0) {\r\n            windowHandle = hWnd;\r\n        } else {\r\n            EnumChildWindows(hWnd, Find, reinterpret_cast<LPARAM>(this));\r\n        }\r\n    }\r\n\r\n    return windowHandle == nullptr;\r\n}\r\n\r\nBOOL WindowFinder::Find(HWND hWnd, LPARAM param) {\r\n    return reinterpret_cast<WindowFinder *>(param)->Find(hWnd);\r\n}\r\n\r\nOutputWindow::OutputWindow() : m_editControlHandle(nullptr) {\r\n    const auto outputWindowHandle =\r\n        WindowFinder(\"mayaConsole\", nullptr).windowHandle;\r\n\r\n    if (outputWindowHandle) {\r\n        m_editControlHandle =\r\n            WindowFinder(\"Edit\", outputWindowHandle).windowHandle;\r\n    }\r\n}\r\n\r\nvoid OutputWindow::clear() const {\r\n    if (m_editControlHandle) {\r\n        SetWindowText(m_editControlHandle, \"\");\r\n    }\r\n}\r\n\r\n#else\r\n\r\nOutputWindow::OutputWindow() {}\r\n\r\nvoid OutputWindow::clear() const {}\r\n\r\n#endif"
  },
  {
    "path": "src/OutputWindow.h",
    "content": "#pragma once\r\n\r\n#ifdef WIN32\r\n#include <windows.h>\r\n\r\nclass WindowFinder {\r\n  public:\r\n    WindowFinder(const char *windowStyleName, HWND parentWindowHandle);\r\n\r\n    const char *styleName;\r\n    HWND windowHandle;\r\n\r\n  private:\r\n    bool Find(HWND hWnd);\r\n    static BOOL Find(HWND hWnd, LPARAM param);\r\n};\r\n\r\n#endif\r\n\r\nclass OutputWindow {\r\n  public:\r\n    OutputWindow();\r\n\r\n    void clear() const;\r\n\r\n  private:\r\n#ifdef WIN32\r\n    HWND m_editControlHandle;\r\n#endif\r\n};\r\n"
  },
  {
    "path": "src/PolarDecomposition.c",
    "content": "#include \"PolarDecomposition.h\"\n#include <math.h>\n\n/******* Matrix Preliminaries *******/\n\n/** Fill out 3x3 matrix to 4x4 **/\n#define mat_pad(A)                                                             \\\n    (A[W][X] = A[X][W] = A[W][Y] = A[Y][W] = A[W][Z] = A[Z][W] = 0, A[W][W] = 1)\n\n/** Copy nxn matrix A to C using \"gets\" for assignment **/\n#define mat_copy(C, gets, A, n)                                                \\\n    {                                                                          \\\n        int i, j;                                                              \\\n        for (i = 0; i < n; i++)                                                \\\n            for (j = 0; j < n; j++)                                            \\\n                C[i][j] gets(A[i][j]);                                         \\\n    }\n\n/** Copy transpose of nxn matrix A to C using \"gets\" for assignment **/\n#define mat_tpose(AT, gets, A, n)                                              \\\n    {                                                                          \\\n        int i, j;                                                              \\\n        for (i = 0; i < n; i++)                                                \\\n            for (j = 0; j < n; j++)                                            \\\n                AT[i][j] gets(A[j][i]);                                        \\\n    }\n\n/** Assign nxn matrix C the element-wise combination of A and B using \"op\" **/\n#define mat_binop(C, gets, A, op, B, n)                                        \\\n    {                                                                          \\\n        int i, j;                                                              \\\n        for (i = 0; i < n; i++)                                                \\\n            for (j = 0; j < n; j++)                                            \\\n                C[i][j] gets(A[i][j]) op(B[i][j]);                             \\\n    }\n\n/** Multiply the upper left 3x3 parts of A and B to get AB **/\nvoid mat_mult(HMatrix A, HMatrix B, HMatrix AB) {\n    int i, j;\n    for (i = 0; i < 3; i++)\n        for (j = 0; j < 3; j++)\n            AB[i][j] =\n                A[i][0] * B[0][j] + A[i][1] * B[1][j] + A[i][2] * B[2][j];\n}\n\n/** Return dot product of length 3 vectors va and vb **/\nfloat vdot(float *va, float *vb) {\n    return (va[0] * vb[0] + va[1] * vb[1] + va[2] * vb[2]);\n}\n\n/** Set v to cross product of length 3 vectors va and vb **/\nvoid vcross(float *va, float *vb, float *v) {\n    v[0] = va[1] * vb[2] - va[2] * vb[1];\n    v[1] = va[2] * vb[0] - va[0] * vb[2];\n    v[2] = va[0] * vb[1] - va[1] * vb[0];\n}\n\n/** Set MadjT to transpose of inverse of M times determinant of M **/\nvoid adjoint_transpose(HMatrix M, HMatrix MadjT) {\n    vcross(M[1], M[2], MadjT[0]);\n    vcross(M[2], M[0], MadjT[1]);\n    vcross(M[0], M[1], MadjT[2]);\n}\n\n/******* Quaternion Preliminaries *******/\n\n/* Construct a (possibly non-unit) quaternion from real components. */\nQuat Qt_(float x, float y, float z, float w) {\n    Quat qq;\n    qq.x = x;\n    qq.y = y;\n    qq.z = z;\n    qq.w = w;\n    return (qq);\n}\n\n/* Return conjugate of quaternion. */\nQuat Qt_Conj(Quat q) {\n    Quat qq;\n    qq.x = -q.x;\n    qq.y = -q.y;\n    qq.z = -q.z;\n    qq.w = q.w;\n    return (qq);\n}\n\n/* Return quaternion product qL * qR.  Note: order is important!\n * To combine rotations, use the product Mul(qSecond, qFirst),\n * which gives the effect of rotating by qFirst then qSecond. */\nQuat Qt_Mul(Quat qL, Quat qR) {\n    Quat qq;\n    qq.w = qL.w * qR.w - qL.x * qR.x - qL.y * qR.y - qL.z * qR.z;\n    qq.x = qL.w * qR.x + qL.x * qR.w + qL.y * qR.z - qL.z * qR.y;\n    qq.y = qL.w * qR.y + qL.y * qR.w + qL.z * qR.x - qL.x * qR.z;\n    qq.z = qL.w * qR.z + qL.z * qR.w + qL.x * qR.y - qL.y * qR.x;\n    return (qq);\n}\n\n/* Return product of quaternion q by scalar w. */\nQuat Qt_Scale(Quat q, float w) {\n    Quat qq;\n    qq.w = q.w * w;\n    qq.x = q.x * w;\n    qq.y = q.y * w;\n    qq.z = q.z * w;\n    return (qq);\n}\n\n/* Construct a unit quaternion from rotation matrix.  Assumes matrix is\n * used to multiply column vector on the left: vnew = mat vold.\t Works\n * correctly for right-handed coordinate system and right-handed rotations.\n * Translation and perspective components ignored. */\nQuat Qt_FromMatrix(HMatrix mat) {\n    /* This algorithm avoids near-zero divides by looking for a large component\n     * - first w, then x, y, or z.  When the trace is greater than zero,\n     * |w| is greater than 1/2, which is as small as a largest component can be.\n     * Otherwise, the largest diagonal entry corresponds to the largest of |x|,\n     * |y|, or |z|, one of which must be larger than |w|, and at least 1/2. */\n    Quat qu;\n    float tr, s;\n\n    tr = mat[X][X] + mat[Y][Y] + mat[Z][Z];\n    if (tr >= 0.f) {\n        s = sqrtf(tr + mat[W][W]);\n        qu.w = s * 0.5f;\n        s = 0.5f / s;\n        qu.x = (mat[Z][Y] - mat[Y][Z]) * s;\n        qu.y = (mat[X][Z] - mat[Z][X]) * s;\n        qu.z = (mat[Y][X] - mat[X][Y]) * s;\n    } else {\n        int h = X;\n        if (mat[Y][Y] > mat[X][X])\n            h = Y;\n        if (mat[Z][Z] > mat[h][h])\n            h = Z;\n        switch (h) {\n#define caseMacro(i, j, k, I, J, K)                                            \\\n    case I:                                                                    \\\n        s = sqrtf((mat[I][I] - (mat[J][J] + mat[K][K])) + mat[W][W]);          \\\n        qu.i = s * 0.5f;                                                       \\\n        s = 0.5f / s;                                                          \\\n        qu.j = (mat[I][J] + mat[J][I]) * s;                                    \\\n        qu.k = (mat[K][I] + mat[I][K]) * s;                                    \\\n        qu.w = (mat[K][J] - mat[J][K]) * s;                                    \\\n        break\n            caseMacro(x, y, z, X, Y, Z);\n            caseMacro(y, z, x, Y, Z, X);\n            caseMacro(z, x, y, Z, X, Y);\n        }\n    }\n    if (mat[W][W] != 1.f)\n        qu = Qt_Scale(qu, 1.f / sqrtf(mat[W][W]));\n    return (qu);\n}\n/******* Decomp Auxiliaries *******/\n\nstatic HMatrix mat_id = {\n    {1, 0, 0, 0}, {0, 1, 0, 0}, {0, 0, 1, 0}, {0, 0, 0, 1}};\n\n/** Compute either the 1 or infinity norm of M, depending on tpose **/\nfloat mat_norm(HMatrix M, int tpose) {\n    int i;\n    float sum, max;\n    max = 0.f;\n    for (i = 0; i < 3; i++) {\n        if (tpose)\n            sum = fabsf(M[0][i]) + fabsf(M[1][i]) + fabsf(M[2][i]);\n        else\n            sum = fabsf(M[i][0]) + fabsf(M[i][1]) + fabsf(M[i][2]);\n        if (max < sum)\n            max = sum;\n    }\n    return max;\n}\n\nfloat norm_inf(HMatrix M) { return mat_norm(M, 0); }\nfloat norm_one(HMatrix M) { return mat_norm(M, 1); }\n\n/** Return index of column of M containing maximum abs entry, or -1 if M=0 **/\nint find_max_col(HMatrix M) {\n    float abs, max;\n    int i, j, col;\n    max = 0.f;\n    col = -1;\n    for (i = 0; i < 3; i++)\n        for (j = 0; j < 3; j++) {\n            abs = M[i][j];\n            if (abs < 0.f)\n                abs = -abs;\n            if (abs > max) {\n                max = abs;\n                col = j;\n            }\n        }\n    return col;\n}\n\n/** Setup u for Household reflection to zero all v components but first **/\nvoid make_reflector(float *v, float *u) {\n    float s = sqrtf(vdot(v, v));\n    u[0] = v[0];\n    u[1] = v[1];\n    u[2] = v[2] + ((v[2] < 0.f) ? -s : s);\n    s = sqrtf(2.f / vdot(u, u));\n    u[0] = u[0] * s;\n    u[1] = u[1] * s;\n    u[2] = u[2] * s;\n}\n\n/** Apply Householder reflection represented by u to column vectors of M **/\nvoid reflect_cols(HMatrix M, float *u) {\n    int i, j;\n    for (i = 0; i < 3; i++) {\n        float s = u[0] * M[0][i] + u[1] * M[1][i] + u[2] * M[2][i];\n        for (j = 0; j < 3; j++)\n            M[j][i] -= u[j] * s;\n    }\n}\n/** Apply Householder reflection represented by u to row vectors of M **/\nvoid reflect_rows(HMatrix M, float *u) {\n    int i, j;\n    for (i = 0; i < 3; i++) {\n        float s = vdot(u, M[i]);\n        for (j = 0; j < 3; j++)\n            M[i][j] -= u[j] * s;\n    }\n}\n\n/** Find orthogonal factor Q of rank 1 (or less) M **/\nvoid do_rank1(HMatrix M, HMatrix Q) {\n    float v1[3], v2[3], s;\n    int col;\n    /* If rank(M) is 1, we should find a non-zero column in M */\n    col = find_max_col(M);\n    if (col < 0) {\n        mat_copy(Q, =, mat_id, 4);\n        return;\n    } /* Rank is 0 */\n    v1[0] = M[0][col];\n    v1[1] = M[1][col];\n    v1[2] = M[2][col];\n    make_reflector(v1, v1);\n    reflect_cols(M, v1);\n    v2[0] = M[2][0];\n    v2[1] = M[2][1];\n    v2[2] = M[2][2];\n    make_reflector(v2, v2);\n    reflect_rows(M, v2);\n    s = M[2][2];\n    mat_copy(Q, =, mat_id, 4);\n    if (s < 0.f)\n        Q[2][2] = -1.f;\n    reflect_cols(Q, v1);\n    reflect_rows(Q, v2);\n}\n\n/** Find orthogonal factor Q of rank 2 (or less) M using adjoint transpose **/\nvoid do_rank2(HMatrix M, HMatrix MadjT, HMatrix Q) {\n    float v1[3], v2[3];\n    float w, x, y, z, c, s, d;\n    int col;\n    /* If rank(M) is 2, we should find a non-zero column in MadjT */\n    col = find_max_col(MadjT);\n    if (col < 0) {\n        do_rank1(M, Q);\n        return;\n    } /* Rank<2 */\n    v1[0] = MadjT[0][col];\n    v1[1] = MadjT[1][col];\n    v1[2] = MadjT[2][col];\n    make_reflector(v1, v1);\n    reflect_cols(M, v1);\n    vcross(M[0], M[1], v2);\n    make_reflector(v2, v2);\n    reflect_rows(M, v2);\n    w = M[0][0];\n    x = M[0][1];\n    y = M[1][0];\n    z = M[1][1];\n    if (w * z > x * y) {\n        c = z + w;\n        s = y - x;\n        d = sqrtf(c * c + s * s);\n        c = c / d;\n        s = s / d;\n        Q[0][0] = Q[1][1] = c;\n        Q[0][1] = -(Q[1][0] = s);\n    } else {\n        c = z - w;\n        s = y + x;\n        d = sqrtf(c * c + s * s);\n        c = c / d;\n        s = s / d;\n        Q[0][0] = -(Q[1][1] = c);\n        Q[0][1] = Q[1][0] = s;\n    }\n    Q[0][2] = Q[2][0] = Q[1][2] = Q[2][1] = 0.f;\n    Q[2][2] = 1.f;\n    reflect_cols(Q, v1);\n    reflect_rows(Q, v2);\n}\n\n/******* Polar Decomposition *******/\n\n/* Polar Decomposition of 3x3 matrix in 4x4,\n * M = QS.  See Nicholas Higham and Robert S. Schreiber,\n * Fast Polar Decomposition of An Arbitrary Matrix,\n * Technical Report 88-942, October 1988,\n * Department of Computer Science, Cornell University.\n */\nfloat polar_decomp(HMatrix M, HMatrix Q, HMatrix S) {\n#define TOL 1.0e-6\n    HMatrix Mk, MadjTk, Ek;\n    float det, M_one, M_inf, MadjT_one, MadjT_inf, E_one, gamma, g1, g2;\n    int i, j;\n    mat_tpose(Mk, =, M, 3);\n    M_one = norm_one(Mk);\n    M_inf = norm_inf(Mk);\n    do {\n        adjoint_transpose(Mk, MadjTk);\n        det = vdot(Mk[0], MadjTk[0]);\n        if (det == 0.f) {\n            do_rank2(Mk, MadjTk, Mk);\n            break;\n        }\n        MadjT_one = norm_one(MadjTk);\n        MadjT_inf = norm_inf(MadjTk);\n        gamma = sqrtf(sqrtf((MadjT_one * MadjT_inf) / (M_one * M_inf)) /\n                      fabsf(det));\n        g1 = gamma * 0.5f;\n        g2 = 0.5f / (gamma * det);\n        mat_copy(Ek, =, Mk, 3);\n        mat_binop(Mk, =, g1 * Mk, +, g2 * MadjTk, 3);\n        mat_copy(Ek, -=, Mk, 3);\n        E_one = norm_one(Ek);\n        M_one = norm_one(Mk);\n        M_inf = norm_inf(Mk);\n    } while (E_one > (M_one * TOL));\n    mat_tpose(Q, =, Mk, 3);\n    mat_pad(Q);\n    mat_mult(Mk, M, S);\n    mat_pad(S);\n    for (i = 0; i < 3; i++)\n        for (j = i; j < 3; j++)\n            S[i][j] = S[j][i] = 0.5f * (S[i][j] + S[j][i]);\n    return (det);\n}\n\n/******* Spectral Decomposition *******/\n\n/* Compute the spectral decomposition of symmetric positive semi-definite S.\n * Returns rotation in U and scale factors in result, so that if K is a diagonal\n * matrix of the scale factors, then S = U K (U transpose). Uses Jacobi method.\n * See Gene H. Golub and Charles F. Van Loan. Matrix Computations. Hopkins 1983.\n */\nHVect spect_decomp(HMatrix S, HMatrix U) {\n    HVect kv;\n    float Diag[3], OffD[3]; /* OffD is off-diag (by omitted index) */\n    float g, h, fabsh, fabsOffDi, t, theta, c, s, tau, ta, OffDq, a, b;\n    static char nxt[] = {Y, Z, X};\n    int sweep, i, j;\n    mat_copy(U, =, mat_id, 4);\n    Diag[X] = S[X][X];\n    Diag[Y] = S[Y][Y];\n    Diag[Z] = S[Z][Z];\n    OffD[X] = S[Y][Z];\n    OffD[Y] = S[Z][X];\n    OffD[Z] = S[X][Y];\n    for (sweep = 20; sweep > 0; sweep--) {\n        float sm = fabsf(OffD[X]) + fabsf(OffD[Y]) + fabsf(OffD[Z]);\n        if (sm == 0.f)\n            break;\n        for (i = Z; i >= X; i--) {\n            int p = nxt[i];\n            int q = nxt[p];\n            fabsOffDi = fabsf(OffD[i]);\n            g = 100.f * fabsOffDi;\n            if (fabsOffDi > 0.f) {\n                h = Diag[q] - Diag[p];\n                fabsh = fabsf(h);\n                if (fabsh + g == fabsh) {\n                    t = OffD[i] / h;\n                } else {\n                    theta = 0.5f * h / OffD[i];\n                    t = 1.f / (fabsf(theta) + sqrtf(theta * theta + 1.f));\n                    if (theta < 0.f)\n                        t = -t;\n                }\n                c = 1.f / sqrtf(t * t + 1.f);\n                s = t * c;\n                tau = s / (c + 1.f);\n                ta = t * OffD[i];\n                OffD[i] = 0.f;\n                Diag[p] -= ta;\n                Diag[q] += ta;\n                OffDq = OffD[q];\n                OffD[q] -= s * (OffD[p] + tau * OffD[q]);\n                OffD[p] += s * (OffDq - tau * OffD[p]);\n                for (j = Z; j >= X; j--) {\n                    a = U[j][p];\n                    b = U[j][q];\n                    U[j][p] -= s * (b + tau * a);\n                    U[j][q] += s * (a - tau * b);\n                }\n            }\n        }\n    }\n    kv.x = Diag[X];\n    kv.y = Diag[Y];\n    kv.z = Diag[Z];\n    kv.w = 1.f;\n    return (kv);\n}\n\n/******* Spectral Axis Adjustment *******/\n\n/* Given a unit quaternion, q, and a scale vector, k, find a unit quaternion, p,\n * which permutes the axes and turns freely in the plane of duplicate scale\n * factors, such that q p has the largest possible w component, i.e. the\n * smallest possible angle. Permutes k's components to go with q p instead of q.\n * See Ken Shoemake and Tom Duff. Matrix Animation and Polar Decomposition.\n * Proceedings of Graphics Interface 1992. Details on p. 262-263.\n */\nQuat snuggle(Quat q, HVect *k) {\n#define SQRTHALF (0.7071067811865475244f)\n#define sgn(n, v) ((n) ? -(v) : (v))\n#define swap(a, i, j)                                                          \\\n    {                                                                          \\\n        a[3] = a[i];                                                           \\\n        a[i] = a[j];                                                           \\\n        a[j] = a[3];                                                           \\\n    }\n#define cycle(a, p)                                                            \\\n    if (p) {                                                                   \\\n        a[3] = a[0];                                                           \\\n        a[0] = a[1];                                                           \\\n        a[1] = a[2];                                                           \\\n        a[2] = a[3];                                                           \\\n    } else {                                                                   \\\n        a[3] = a[2];                                                           \\\n        a[2] = a[1];                                                           \\\n        a[1] = a[0];                                                           \\\n        a[0] = a[3];                                                           \\\n    }\n    Quat p;\n    float ka[4];\n    int i, turn = -1;\n    ka[X] = k->x;\n    ka[Y] = k->y;\n    ka[Z] = k->z;\n    if (ka[X] == ka[Y]) {\n        if (ka[X] == ka[Z])\n            turn = W;\n        else\n            turn = Z;\n    } else {\n        if (ka[X] == ka[Z])\n            turn = Y;\n        else if (ka[Y] == ka[Z])\n            turn = X;\n    }\n    if (turn >= 0) {\n        Quat qtoz, qp;\n        unsigned neg[3], win;\n        float mag[3], t;\n        static Quat qxtoz = {0, SQRTHALF, 0, SQRTHALF};\n        static Quat qytoz = {SQRTHALF, 0, 0, SQRTHALF};\n        static Quat qppmm = {0.5f, 0.5f, -0.5f, -0.5f};\n        static Quat qpppp = {0.5f, 0.5f, 0.5f, 0.5f};\n        static Quat qmpmm = {-0.5f, 0.5f, -0.5f, -0.5f};\n        static Quat qpppm = {0.5f, 0.5f, 0.5f, -0.5f};\n        static Quat q0001 = {0.f, 0.f, 0.f, 1.f};\n        static Quat q1000 = {1.f, 0.f, 0.f, 0.f};\n        switch (turn) {\n        default:\n            return (Qt_Conj(q));\n        case X:\n            q = Qt_Mul(q, qtoz = qxtoz);\n            swap(ka, X, Z) break;\n        case Y:\n            q = Qt_Mul(q, qtoz = qytoz);\n            swap(ka, Y, Z) break;\n        case Z:\n            qtoz = q0001;\n            break;\n        }\n        q = Qt_Conj(q);\n        mag[0] = (float)q.z * q.z + (float)q.w * q.w - 0.5f;\n        mag[1] = (float)q.x * q.z - (float)q.y * q.w;\n        mag[2] = (float)q.y * q.z + (float)q.x * q.w;\n        for (i = 0; i < 3; i++)\n            if ((neg[i] = (mag[i] < 0.f)))\n                mag[i] = -mag[i];\n        if (mag[0] > mag[1]) {\n            if (mag[0] > mag[2])\n                win = 0;\n            else\n                win = 2;\n        } else {\n            if (mag[1] > mag[2])\n                win = 1;\n            else\n                win = 2;\n        }\n        switch (win) {\n        case 0:\n            if (neg[0])\n                p = q1000;\n            else\n                p = q0001;\n            break;\n        case 1:\n            if (neg[1])\n                p = qppmm;\n            else\n                p = qpppp;\n            cycle(ka, 0) break;\n        case 2:\n            if (neg[2])\n                p = qmpmm;\n            else\n                p = qpppm;\n            cycle(ka, 1) break;\n        }\n        qp = Qt_Mul(q, p);\n        t = sqrtf(mag[win] + 0.5f);\n        p = Qt_Mul(p, Qt_(0.f, 0.f, -qp.z / t, qp.w / t));\n        p = Qt_Mul(qtoz, Qt_Conj(p));\n    } else {\n        float qa[4], pa[4];\n        unsigned lo, hi, neg[4], par = 0;\n        float all, big, two;\n        qa[0] = q.x;\n        qa[1] = q.y;\n        qa[2] = q.z;\n        qa[3] = q.w;\n        for (i = 0; i < 4; i++) {\n            pa[i] = 0.f;\n            if ((neg[i] = (qa[i] < 0.f)))\n                qa[i] = -qa[i];\n            par ^= neg[i];\n        }\n        /* Find two largest components, indices in hi and lo */\n        if (qa[0] > qa[1])\n            lo = 0;\n        else\n            lo = 1;\n        if (qa[2] > qa[3])\n            hi = 2;\n        else\n            hi = 3;\n        if (qa[lo] > qa[hi]) {\n            if (qa[lo ^ 1] > qa[hi]) {\n                hi = lo;\n                lo ^= 1;\n            } else {\n                hi ^= lo;\n                lo ^= hi;\n                hi ^= lo;\n            }\n        } else {\n            if (qa[hi ^ 1] > qa[lo])\n                lo = hi ^ 1;\n        }\n        all = (qa[0] + qa[1] + qa[2] + qa[3]) * 0.5f;\n        two = (qa[hi] + qa[lo]) * SQRTHALF;\n        big = qa[hi];\n        if (all > two) {\n            if (all > big) { /*all*/\n                {\n                    int i;\n                    for (i = 0; i < 4; i++)\n                        pa[i] = sgn(neg[i], 0.5f);\n                }\n                cycle(ka, par)\n            } else { /*big*/\n                pa[hi] = sgn(neg[hi], 1.f);\n            }\n        } else {\n            if (two > big) { /*two*/\n                pa[hi] = sgn(neg[hi], SQRTHALF);\n                pa[lo] = sgn(neg[lo], SQRTHALF);\n                if (lo > hi) {\n                    hi ^= lo;\n                    lo ^= hi;\n                    hi ^= lo;\n                }\n                /* This wild code is simply defining a fixed array from a\n                 *string.\n                 ** The code in the braces is equivalent to:\n                 ** hi = (lo+1)%3; lo = (lo+2)%3; */\n                if (hi == W) {\n                    hi = \"\\001\\002\\000\"[lo];\n                    lo = 3 - hi - lo;\n                }\n                swap(ka, hi, lo)\n            } else { /*big*/\n                pa[hi] = sgn(neg[hi], 1.f);\n            }\n        }\n        p.x = -pa[0];\n        p.y = -pa[1];\n        p.z = -pa[2];\n        p.w = pa[3];\n    }\n    k->x = ka[X];\n    k->y = ka[Y];\n    k->z = ka[Z];\n    return (p);\n}\n\n/******* Decompose Affine Matrix *******/\n\n/* Decompose 4x4 affine matrix A as TFRUK(U transpose), where t contains the\n * translation components, q contains the rotation R, u contains U, k contains\n * scale factors, and f contains the sign of the determinant.\n * Assumes A transforms column vectors in right-handed coordinates.\n * See Ken Shoemake and Tom Duff. Matrix Animation and Polar Decomposition.\n * Proceedings of Graphics Interface 1992.\n */\nvoid decomp_affine(HMatrix A, AffineParts *parts) {\n    HMatrix Q, S, U;\n    Quat p;\n    float det;\n    parts->t = Qt_(A[X][W], A[Y][W], A[Z][W], 0);\n    det = polar_decomp(A, Q, S);\n    if (det < 0.f) {\n        mat_copy(Q, =, -Q, 3);\n        parts->f = -1;\n    } else\n        parts->f = 1;\n    parts->q = Qt_FromMatrix(Q);\n    parts->k = spect_decomp(S, U);\n    parts->u = Qt_FromMatrix(U);\n    p = snuggle(parts->u, &parts->k);\n    parts->u = Qt_Mul(parts->u, p);\n}\n\n/******* Invert Affine Decomposition *******/\n\n/* Compute inverse of affine decomposition.\n */\nvoid invert_affine(AffineParts *parts, AffineParts *inverse) {\n    Quat t, p;\n    inverse->f = parts->f;\n    inverse->q = Qt_Conj(parts->q);\n    inverse->u = Qt_Mul(parts->q, parts->u);\n    inverse->k.x = (parts->k.x == 0.f) ? 0.f : 1.f / parts->k.x;\n    inverse->k.y = (parts->k.y == 0.f) ? 0.f : 1.f / parts->k.y;\n    inverse->k.z = (parts->k.z == 0.f) ? 0.f : 1.f / parts->k.z;\n    inverse->k.w = parts->k.w;\n    t = Qt_(-parts->t.x, -parts->t.y, -parts->t.z, 0);\n    t = Qt_Mul(Qt_Conj(inverse->u), Qt_Mul(t, inverse->u));\n    t = Qt_(inverse->k.x * t.x, inverse->k.y * t.y, inverse->k.z * t.z, 0);\n    p = Qt_Mul(inverse->q, inverse->u);\n    t = Qt_Mul(p, Qt_Mul(t, Qt_Conj(p)));\n    inverse->t = (inverse->f > 0.f) ? t : Qt_(-t.x, -t.y, -t.z, 0);\n}\n"
  },
  {
    "path": "src/PolarDecomposition.h",
    "content": "#pragma once\n\n// http://research.cs.wisc.edu/graphics/Courses/838-s2002/Papers/polar-decomp.pdf\n\n/**** Decompose.h - Basic declarations ****/\n#ifndef _H_Decompose\n#define _H_Decompose\ntypedef struct {\n    float x, y, z, w;\n} Quat; /* Quaternion */\nenum QuatPart { X, Y, Z, W };\ntypedef Quat HVect;          /* Homogeneous 3D vector */\ntypedef float HMatrix[4][4]; /* Right-handed, for column vectors */\ntypedef struct {\n    HVect t; /* Translation components */\n    Quat q;  /* Essential rotation\t  */\n    Quat u;  /* Stretch rotation\t  */\n    HVect k; /* Stretch factors\t  */\n    float f; /* Sign of determinant\t  */\n} AffineParts;\nfloat polar_decomp(HMatrix M, HMatrix Q, HMatrix S);\nHVect spect_decomp(HMatrix S, HMatrix U);\nQuat snuggle(Quat q, HVect *k);\nvoid decomp_affine(HMatrix A, AffineParts *parts);\nvoid invert_affine(AffineParts *parts, AffineParts *inverse);\n#endif"
  },
  {
    "path": "src/PropAnimation.h",
    "content": "#pragma once\r\n\r\n#include \"ExportableFrames.h\"\r\n#include \"accessors.h\"\r\n#include \"macros.h\"\r\n\r\nclass ExportableNode;\r\n\r\nclass PropAnimation {\r\n  public:\r\n    PropAnimation(const ExportableFrames &frames, const GLTF::Node &node, const GLTF::Animation::Path path, const size_t dimension,\r\n                  size_t stepDetectSampleCount, const bool useFloatArray)\r\n        : dimension(dimension), useFloatArray(useFloatArray), stepDetectSampleCount(stepDetectSampleCount), frames(frames) {\r\n\r\n        componentValuesPerFrameTable.resize(stepDetectSampleCount);\r\n        for (auto superSample = 0; superSample < stepDetectSampleCount; ++superSample) {\r\n            componentValuesPerFrameTable[superSample].reserve(frames.count * dimension);\r\n        }\r\n\r\n        glTarget.node = &const_cast<GLTF::Node &>(node);\r\n        glTarget.path = path;\r\n\r\n        glChannel.sampler = &glSampler;\r\n        glChannel.target = &glTarget;\r\n    }\r\n\r\n    ~PropAnimation() = default;\r\n\r\n    const size_t dimension;\r\n    const bool useFloatArray;\r\n    const size_t stepDetectSampleCount;\r\n    const ExportableFrames &frames;\r\n\r\n    // For each step-detection super-sampling frame, a vector of component values\r\n    std::vector<std::vector<float>> componentValuesPerFrameTable;\r\n\r\n    GLTF::Animation::Channel glChannel;\r\n    GLTF::Animation::Sampler glSampler;\r\n    GLTF::Animation::Channel::Target glTarget;\r\n\r\n    template <std::ptrdiff_t Extent> void append(const gsl::span<const float, Extent> &components, size_t superSample) {\r\n        std::copy(components.begin(), components.end(), std::back_inserter(componentValuesPerFrameTable.at(superSample)));\r\n    }\r\n\r\n    void appendQuaternion(const gsl::span<const float, 4> &q, int superSample) {\r\n        auto &componentValuesPerFrame = componentValuesPerFrameTable.at(superSample);\r\n\r\n        const auto index = componentValuesPerFrame.size();\r\n        if (index == 0) {\r\n            append(q, superSample);\r\n        } else {\r\n            auto x0 = componentValuesPerFrame[index - 4];\r\n            auto y0 = componentValuesPerFrame[index - 3];\r\n            auto z0 = componentValuesPerFrame[index - 2];\r\n            auto w0 = componentValuesPerFrame[index - 1];\r\n\r\n            auto x1 = q[0];\r\n            auto y1 = q[1];\r\n            auto z1 = q[2];\r\n            auto w1 = q[3];\r\n\r\n            // Check if the negative quaternion is a closer.\r\n            auto dp = (x0 - x1) * (x0 - x1) + (y0 - y1) * (y0 - y1) + (z0 - z1) * (z0 - z1) + (w0 - w1) * (w0 - w1);\r\n            auto dn = (x0 + x1) * (x0 + x1) + (y0 + y1) * (y0 + y1) + (z0 + z1) * (z0 + z1) + (w0 + w1) * (w0 + w1);\r\n\r\n            if (dn < dp) {\r\n                x1 = -x1;\r\n                y1 = -y1;\r\n                z1 = -z1;\r\n                w1 = -w1;\r\n            }\r\n\r\n            componentValuesPerFrame.push_back(x1);\r\n            componentValuesPerFrame.push_back(y1);\r\n            componentValuesPerFrame.push_back(z1);\r\n            componentValuesPerFrame.push_back(w1);\r\n        }\r\n    }\r\n\r\n    void finish(const std::string &name, const bool useSingleKey, const char *interpolation) {\r\n        glSampler.interpolation = interpolation;\r\n\r\n        if (!m_outputs) {\r\n            auto &componentValuesPerFrame = componentValuesPerFrameTable.at(0);\r\n\r\n            if (useSingleKey) {\r\n                componentValuesPerFrame.resize(dimension);\r\n                glSampler.input = frames.glInput0();\r\n            } else {\r\n                glSampler.input = frames.glInputs();\r\n            }\r\n\r\n            if (stepDetectSampleCount > 1 && !useSingleKey) {\r\n                // Remove all\r\n            }\r\n\r\n            m_outputs = contiguousChannelAccessor(name, span(componentValuesPerFrame), useFloatArray ? 1 : dimension);\r\n\r\n            glSampler.output = m_outputs.get();\r\n\r\n            // A channel cannot have a name according to the spec.\r\n            // glChannel.name = name;\r\n        }\r\n    }\r\n\r\nprivate:\r\n    std::unique_ptr<GLTF::Accessor> m_outputs;\r\n\r\n    DISALLOW_COPY_MOVE_ASSIGN(PropAnimation);\r\n};\r\n"
  },
  {
    "path": "src/ShapeIndex.cpp",
    "content": "#include \"ShapeIndex.h\"\n#include \"externals.h\"\n"
  },
  {
    "path": "src/ShapeIndex.h",
    "content": "#pragma once\n\n#include \"macros.h\"\n\n#include <cstddef>\n#include <ostream>\n#include <cassert>\n\n\n/** Index of a mesh shape, 0 means the base shape, 1 the first blend-shape\n * target */\nclass ShapeIndex {\n  public:\n    static ShapeIndex main() { return ShapeIndex(0); }\n    static ShapeIndex target(const int index) { return ShapeIndex(index + 1); }\n    static ShapeIndex shape(const int index) { return ShapeIndex(index); }\n    static ShapeIndex invalid() { return ShapeIndex(-1); }\n\n    DEFAULT_COPY_MOVE_ASSIGN_DTOR(ShapeIndex);\n\n    friend size_t hash_value(const ShapeIndex &obj) {\n        size_t seed = 0x26DFB62C;\n        seed ^= (seed << 6) + (seed >> 2) + 0x3C2E6B88 +\n                static_cast<size_t>(obj.m_value);\n        return seed;\n    }\n\n    friend bool operator==(const ShapeIndex &lhs, const ShapeIndex &rhs) {\n        return lhs.m_value == rhs.m_value;\n    }\n\n    friend bool operator!=(const ShapeIndex &lhs, const ShapeIndex &rhs) {\n        return !(lhs == rhs);\n    }\n\n    friend bool operator<(const ShapeIndex &lhs, const ShapeIndex &rhs) {\n        return lhs.m_value < rhs.m_value;\n    }\n\n    friend bool operator<=(const ShapeIndex &lhs, const ShapeIndex &rhs) {\n        return !(rhs < lhs);\n    }\n\n    friend bool operator>(const ShapeIndex &lhs, const ShapeIndex &rhs) {\n        return rhs < lhs;\n    }\n\n    friend bool operator>=(const ShapeIndex &lhs, const ShapeIndex &rhs) {\n        return !(lhs < rhs);\n    }\n\n    friend std::ostream &operator<<(std::ostream &os, const ShapeIndex &obj) {\n        return os << obj.m_value;\n    }\n\n    int arrayIndex() const {\n        assert(m_value >= 0);\n        return m_value;\n    }\n    int targetIndex() const {\n        assert(m_value > 0);\n        return static_cast<int>(m_value - 1);\n    }\n\n    bool isMainShapeIndex() const { return m_value == 0; }\n    bool isBlendShapeIndex() const { return m_value > 0; }\n\n  private:\n    explicit ShapeIndex(const int value) : m_value(value){};\n\n    int m_value;\n};\n"
  },
  {
    "path": "src/SignalHandlers.cpp",
    "content": "#include \"externals.h\"\n\n#include \"SignalHandlers.h\"\n\nSignalHandlers::SignalHandlers() {\n    m_previousAbortSignalHandler = signal(SIGABRT, handleAbortSignal);\n}\n\nSignalHandlers::~SignalHandlers() {\n    signal(SIGABRT, m_previousAbortSignalHandler);\n}\n\nvoid SignalHandlers::handleAbortSignal(int signalNumber) {\n    throw std::runtime_error(\"the operation was aborted unexpectedly\");\n}\n"
  },
  {
    "path": "src/SignalHandlers.h",
    "content": "#pragma once\n\n/** Overrides calls to abort to throw an exception instead of killing the\n * process */\nclass SignalHandlers {\n  public:\n    SignalHandlers();\n    ~SignalHandlers();\n\n  private:\n#ifdef _WIN32\n    _crt_signal_t m_previousAbortSignalHandler;\n#elif __APPLE__\n    sig_t m_previousAbortSignalHandler;\n#else\n    __sighandler_t m_previousAbortSignalHandler;\n#endif\n    static void handleAbortSignal(int signalNumber);\n};\n"
  },
  {
    "path": "src/Transform.cpp",
    "content": "#include \"externals.h\"\r\n\r\n#include \"ExportableNode.h\"\r\n#include \"MayaException.h\"\r\n#include \"Transform.h\"\r\n\r\nconst double epsilon = 1e-4f;\r\n\r\n// How much the axes deviate from being orthogonal\r\ndouble getAxesNonOrthogonality(const MMatrix &m) {\r\n    // Maya uses row matrices.\r\n    MVector vx(m[0][0], m[0][1], m[0][2]);\r\n    MVector vy(m[1][0], m[1][1], m[1][2]);\r\n    MVector vz(m[2][0], m[2][1], m[2][2]);\r\n\r\n    vx.normalize();\r\n    vy.normalize();\r\n    vz.normalize();\r\n\r\n    double e = 0;\r\n    e = std::max(e, fabs(vx * vy));\r\n    e = std::max(e, fabs(vy * vz));\r\n    e = std::max(e, fabs(vz * vx));\r\n\r\n    return e;\r\n}\r\n\r\nvoid getTranslation(const MTransformationMatrix &m, float *result, double scaleFactor, const double posPrecision) {\r\n    const MVector t = m.getTranslation(MSpace::kPostTransform);\r\n    result[0] = roundToFloat(t.x * scaleFactor, posPrecision);\r\n    result[1] = roundToFloat(t.y * scaleFactor, posPrecision);\r\n    result[2] = roundToFloat(t.z * scaleFactor, posPrecision);\r\n}\r\n\r\nvoid getScaling(const MTransformationMatrix &m, float *result, const double sclPrecision) {\r\n    double s[3];\r\n    THROW_ON_FAILURE(m.getScale(s, MSpace::kPostTransform));\r\n    result[0] = roundToFloat(s[0], sclPrecision);\r\n    result[1] = roundToFloat(s[1], sclPrecision);\r\n    result[2] = roundToFloat(s[2], sclPrecision);\r\n}\r\n\r\nvoid getRotation(const MTransformationMatrix &m, float *result, const double dirPrecision) {\r\n    double q[4];\r\n    THROW_ON_FAILURE(m.getRotationQuaternion(q[0], q[1], q[2], q[3]));\r\n\r\n    q[0] = roundTo(q[0], dirPrecision);\r\n    q[1] = roundTo(q[1], dirPrecision);\r\n    q[2] = roundTo(q[2], dirPrecision);\r\n    q[3] = roundTo(q[3], dirPrecision);\r\n\r\n    MQuaternion mq(q);\r\n    mq.normalizeIt();\r\n    THROW_ON_FAILURE(mq.get(q));\r\n\r\n    result[0] = static_cast<float>(q[0]);\r\n    result[1] = static_cast<float>(q[1]);\r\n    result[2] = static_cast<float>(q[2]);\r\n    result[3] = static_cast<float>(q[3]);\r\n}\r\n\r\nGLTF::Node::TransformMatrix toGLTF(const MMatrix &matrix) {\r\n    float m[4][4];\r\n    // ReSharper disable once CppExpressionWithoutSideEffects\r\n    matrix.get(m);\r\n\r\n    return GLTF::Node::TransformMatrix(\r\n        m[0][0], m[1][0], m[2][0], m[3][0], m[0][1], m[1][1], m[2][1], m[3][1],\r\n        m[0][2], m[1][2], m[2][2], m[3][2], m[0][3], m[1][3], m[2][3], m[3][3]);\r\n}\r\n\r\nMMatrix getObjectSpaceMatrix(const MDagPath &dagPath,\r\n                             const MDagPath &parentPath) {\r\n    MStatus status;\r\n\r\n    MFnDagNode fnDagNode(dagPath, &status);\r\n    THROW_ON_FAILURE(status);\r\n\r\n    const auto childWorldMatrix = dagPath.inclusiveMatrix(&status);\r\n    THROW_ON_FAILURE(status);\r\n\r\n    const auto parentPathLength = parentPath.length(&status);\r\n    THROW_ON_FAILURE(status);\r\n\r\n    if (parentPathLength == 0)\r\n        return childWorldMatrix;\r\n\r\n    const auto parentWorldMatrixInverse =\r\n        parentPath.inclusiveMatrixInverse(&status);\r\n    THROW_ON_FAILURE(status);\r\n\r\n    return childWorldMatrix * parentWorldMatrixInverse;\r\n}\r\n\r\nvoid makeIdentity(GLTF::Node::TransformTRS &trs) {\r\n    trs.translation[0] = 0;\r\n    trs.translation[1] = 0;\r\n    trs.translation[2] = 0;\r\n\r\n    trs.scale[0] = 1;\r\n    trs.scale[1] = 1;\r\n    trs.scale[2] = 1;\r\n\r\n    trs.rotation[0] = 0;\r\n    trs.rotation[1] = 0;\r\n    trs.rotation[2] = 0;\r\n    trs.rotation[3] = 1;\r\n}\r\n\r\nconst NodeTransformState &\r\nNodeTransformCache::getTransform(const ExportableNode *node,\r\n                                 const double scaleFactor,\r\n                                 const double posPrecision,\r\n                                 const double sclPrecision,\r\n                                 const double dirPrecision) {\r\n    auto &state = m_table[node];\r\n\r\n    if (state.isInitialized > 0)\r\n        return state;\r\n\r\n    if (state.isInitialized < 0)\r\n        throw std::runtime_error(\r\n            \"Ouch! Infinite loop detected in NodeTransformCache\");\r\n\r\n    state.isInitialized = -1;\r\n\r\n    auto &trs0 = state.localTransforms[0];\r\n    makeIdentity(trs0);\r\n\r\n    auto &trs1 = state.localTransforms[1];\r\n    makeIdentity(trs1);\r\n\r\n    if (node == nullptr) {\r\n        // World\r\n        state.requiresExtraNode = false;\r\n        state.maxNonOrthogonality = 0;\r\n    } else {\r\n        state.requiresExtraNode = node->transformKind != TransformKind::Simple;\r\n\r\n        const auto localMatrix =\r\n            getObjectSpaceMatrix(node->dagPath, node->parentDagPath());\r\n\r\n        switch (node->transformKind) {\r\n        case TransformKind::Simple: {\r\n            state.maxNonOrthogonality = getAxesNonOrthogonality(localMatrix);\r\n\r\n            // TODO: We're not using the GLTF code here yet, we got\r\n            // non-normalized rotations...\r\n            MTransformationMatrix mayaLocalMatrix(localMatrix);\r\n\r\n            auto &trs = state.localTransforms[0];\r\n\r\n            getTranslation(mayaLocalMatrix, trs.translation, scaleFactor, posPrecision);\r\n            getRotation(mayaLocalMatrix, trs.rotation, dirPrecision);\r\n            getScaling(mayaLocalMatrix, trs.scale, sclPrecision);\r\n        } break;\r\n\r\n        case TransformKind::ComplexJoint: {\r\n            auto &parentTransform = getTransform(node->parentNode, scaleFactor, posPrecision, sclPrecision, dirPrecision);\r\n            auto &parentPrimaryTRS = parentTransform.primaryTRS();\r\n            double parentScale[3] = {parentPrimaryTRS.scale[0],\r\n                                     parentPrimaryTRS.scale[1],\r\n                                     parentPrimaryTRS.scale[2]};\r\n\r\n            // The local matrix = scale * rotation * inverse-parent-scale *\r\n            // translation Extract and clear the translation, undo  the inverse\r\n            // parent scale, and extract rotation and scale.\r\n            auto m = localMatrix;\r\n\r\n            // Get translation\r\n            const auto t = m[3];\r\n            trs1.translation[0] =\r\n                roundToFloat(t[0] * scaleFactor, posPrecision);\r\n            trs1.translation[1] =\r\n                roundToFloat(t[1] * scaleFactor, posPrecision);\r\n            trs1.translation[2] =\r\n                roundToFloat(t[2] * scaleFactor, posPrecision);\r\n\r\n            trs1.scale[0] =\r\n                roundToFloat(1.0f / parentPrimaryTRS.scale[0], sclPrecision);\r\n            trs1.scale[1] =\r\n                roundToFloat(1.0f / parentPrimaryTRS.scale[1], sclPrecision);\r\n            trs1.scale[2] =\r\n                roundToFloat(1.0f / parentPrimaryTRS.scale[2], sclPrecision);\r\n\r\n            // Clear translation\r\n            t[0] = t[1] = t[2] = 0;\r\n\r\n            // Undo the inverse parent transform\r\n            double ps[4][4] = {{parentScale[0], 0, 0, 0},\r\n                               {0, parentScale[1], 0, 0},\r\n                               {0, 0, parentScale[2], 0},\r\n                               {0, 0, 0, 1}};\r\n\r\n            m = m * ps;\r\n\r\n            state.maxNonOrthogonality = getAxesNonOrthogonality(m);\r\n\r\n            const MTransformationMatrix mayaLocalMatrix(m);\r\n            getRotation(mayaLocalMatrix, trs0.rotation, dirPrecision);\r\n            getScaling(mayaLocalMatrix, trs0.scale, sclPrecision);\r\n        } break;\r\n\r\n        case TransformKind::ComplexTransform: {\r\n            MTransformationMatrix pivotTransformationMatrix;\r\n            const MVector pivotOffset = node->pivotPoint - MPoint::origin;\r\n            pivotTransformationMatrix.setTranslation(pivotOffset,\r\n                                                     MSpace::kObject);\r\n            const auto pivotMatrix = pivotTransformationMatrix.asMatrix();\r\n\r\n            // cout << \"local matrix = \" << localMatrix << endl;\r\n\r\n            // Decompose localMatrix into inverse(pivotMatrix) * innerMatrix *\r\n            // pivotMatrix Since we combine the pivot translation and local\r\n            // translation, this becomes localMatrix = inverse(pivotMatrix) *\r\n            // combinedMatrix\r\n            // => combinedMatrix = pivotMatrix * localMatrix\r\n            const auto combinedMatrix = pivotMatrix * localMatrix;\r\n\r\n            state.maxNonOrthogonality = getAxesNonOrthogonality(combinedMatrix);\r\n\r\n            // Inverse pivot translation node\r\n            trs0.translation[0] =\r\n                roundToFloat(-pivotOffset.x * scaleFactor, posPrecision);\r\n            trs0.translation[1] =\r\n                roundToFloat(-pivotOffset.y * scaleFactor, posPrecision);\r\n            trs0.translation[2] =\r\n                roundToFloat(-pivotOffset.z * scaleFactor, posPrecision);\r\n\r\n            // TODO: We're not using the GLTF code here yet, we got\r\n            // non-normalized rotations...\r\n            const MTransformationMatrix mayaMatrix(combinedMatrix);\r\n\r\n            // trs1: scale, rotation and translation + pivot-offset combined\r\n            getTranslation(mayaMatrix, trs1.translation, scaleFactor, posPrecision);\r\n            getRotation(mayaMatrix, trs1.rotation, dirPrecision);\r\n            getScaling(mayaMatrix, trs1.scale, sclPrecision);\r\n        } break;\r\n\r\n        default:\r\n            throw std::runtime_error(\"Unsupported node transform kind\");\r\n        }\r\n    }\r\n\r\n    state.isInitialized = 1;\r\n\r\n    return state;\r\n}\r\n"
  },
  {
    "path": "src/Transform.h",
    "content": "#pragma once\r\n\r\nconst double MAX_NON_ORTHOGONALITY = 1e-4f;\r\n\r\n// How much the axes deviate from being orthogonal\r\ndouble getAxesNonOrthogonality(const MMatrix &m);\r\n\r\nvoid makeIdentity(GLTF::Node::TransformTRS &trs);\r\n\r\nclass ExportableNode;\r\n\r\n/*\r\n * NOTE:\r\n * in the code below we use OpenGL matrix math (mul from right to left), so to\r\n * transform a point P by matrices M1 then M2 we write M2 * M1 * P Maya used\r\n * DirectX matrix math (mul from left to right), so it transforms the point by P\r\n * * M1 * M2\r\n *\r\n * The local transform of a GLTF node #i is represented as Ti * Ri * Si\r\n *\r\n * In Maya, joints can ignore the scaling of the parent (when the Segment Scale\r\n * Compensate flag is set) The local transform of such Maya joints is Tm * Um *\r\n * Rm * Sm where Ui undoes the scaling of the parent (the inverse parent scale)\r\n * See\r\n * http://download.autodesk.com/us/maya/2010help/API/class_m_fn_ik_joint.html\r\n *\r\n * To simulate this in GLTF, we need an extra node #k\r\n *\r\n * The combined transform of both GLTF nodes will be\r\n *\r\n * [Tk * Sk] * [Ri * Si] = [Tm * Um] * [Rm * Sm]\r\n *\r\n *\r\n * Furthermore, Maya transform nodes can have pivot points.\r\n *\r\n * In general, a pivot point transform is represented as Pm * Tm * Rm * Sm *\r\n * inverse(Pm), where Pm is the pivot translation and inverse(Pm) is the\r\n * negative translation\r\n *\r\n * We can combine Pm and Tm into a new translation Tm', but we're stuck with\r\n * inverse(Pm)\r\n *\r\n * To simulate this in GLTF, we need an extra node #k\r\n *\r\n * [Tk * Sk * Rk] * [Ti] = [(Pm * Tm) * Rm * Sm] * [inverse(Pm)]\r\n *\r\n */\r\n\r\ntypedef std::array<GLTF::Node::TransformTRS, 2> NodeTransformArray;\r\n\r\nclass NodeTransformState {\r\n  public:\r\n    // Can the local matrix be represented by (one or two) local transforms?\r\n    // This value is larger than epsilon when the local Maya matrix is skewed,\r\n    // even after dealing with segment scale compensation.\r\n    double maxNonOrthogonality = 0;\r\n\r\n    // Is an extra GLTF node required to represent the Maya transform?\r\n    // This occurs for Maya joints with segment scale compensation (SSC) and\r\n    // transforms with non-zero pivot points.\r\n    bool requiresExtraNode = false;\r\n\r\n    // Without segment scale compensation (SSC),\r\n    // only the first item is needed,\r\n    // the second will be the identity.\r\n    NodeTransformArray localTransforms;\r\n\r\n    // For Maya joints with SSC, the GLTF transform storing the rotation and\r\n    // scale For Maya transforms with pivot points, the GLTF transform storing\r\n    // the negative pivot offset Otherwise the GLTF transform storing the\r\n    // rotation, scale and translation\r\n    const GLTF::Node::TransformTRS &primaryTRS() const {\r\n        return localTransforms[0];\r\n    }\r\n\r\n    // For Maya joints with SSC, the GLTF transform storing the translation and\r\n    // inverse parent scale For Maya transforms with pivot points, the GLTF\r\n    // transform storing the rotation, scale and (translation+pivot offset)\r\n    // combined Otherwise this is an identity transform\r\n    const GLTF::Node::TransformTRS &secondaryTRS() const {\r\n        return localTransforms[requiresExtraNode];\r\n    }\r\n\r\n    DEFAULT_COPY_MOVE_ASSIGN_CTOR_DTOR(NodeTransformState);\r\n\r\n  private:\r\n    friend class NodeTransformCache;\r\n\r\n    int isInitialized = 0;\r\n};\r\n\r\nclass NodeTransformCache {\r\n  public:\r\n    NodeTransformCache() = default;\r\n    ~NodeTransformCache() = default;\r\n\r\n    const NodeTransformState &getTransform(const ExportableNode *node,\r\n                                           double scaleFactor,\r\n                                           const double posPrecision,\r\n                                           const double sclPrecision,\r\n                                           const double dirPrecision);\r\n\r\n  private:\r\n    DISALLOW_COPY_MOVE_ASSIGN(NodeTransformCache);\r\n\r\n    std::unordered_map<const ExportableNode *, NodeTransformState> m_table;\r\n};\r\n"
  },
  {
    "path": "src/accessors.h",
    "content": "#pragma once\r\n\r\n#include \"MeshRenderables.h\"\r\n#include \"sceneTypes.h\"\r\n#include \"spans.h\"\r\n\r\ninline GLTF::Accessor::Type glAccessorType(const size_t dimension) {\r\n    switch (dimension) {\r\n    case 1:\r\n        return GLTF::Accessor::Type::SCALAR;\r\n    case 2:\r\n        return GLTF::Accessor::Type::VEC2;\r\n    case 3:\r\n        return GLTF::Accessor::Type::VEC3;\r\n    case 4:\r\n        return GLTF::Accessor::Type::VEC4;\r\n    case 8:\r\n        return GLTF::Accessor::Type::MAT2;\r\n    case 12:\r\n        return GLTF::Accessor::Type::MAT3;\r\n    case 16:\r\n        return GLTF::Accessor::Type::MAT4;\r\n    default:\r\n        assert(false);\r\n        return GLTF::Accessor::Type::UNKNOWN;\r\n    }\r\n}\r\n\r\ntemplate <typename T>\r\nstd::unique_ptr<GLTF::Accessor>\r\ncontiguousAccessor(const std::string &name, GLTF::Accessor::Type type,\r\n                   GLTF::Constants::WebGL componentType,\r\n                   GLTF::Constants::WebGL target, const gsl::span<const T> data,\r\n                   const size_t dimension) {\r\n    auto bytes = reinterpret_span<byte>(data);\r\n    auto accessor = std::make_unique<GLTF::Accessor>(\r\n        type, componentType, const_cast<byte *>(&bytes[0]),\r\n        int(data.size() / dimension), target);\r\n\r\n    accessor->name = name;\r\n\r\n    return accessor;\r\n}\r\n\r\ninline std::unique_ptr<GLTF::Accessor>\r\ncontiguousChannelAccessor(const std::string &name,\r\n                          const gsl::span<const float> &data,\r\n                          const size_t dimension,\r\n                          const GLTF::Constants::WebGL target =\r\n                              static_cast<GLTF::Constants::WebGL>(-1)) {\r\n    return contiguousAccessor(name, glAccessorType(dimension),\r\n                              GLTF::Constants::WebGL::FLOAT, target, data,\r\n                              dimension);\r\n}\r\n\r\ninline std::unique_ptr<GLTF::Accessor> contiguousElementAccessor(\r\n    const std::string &name, const Semantic::Kind semantic,\r\n    const ShapeIndex &shapeIndex, const gsl::span<const byte> &bytes) {\r\n    const auto dim = dimension(semantic, shapeIndex);\r\n\r\n    switch (Component::type(semantic)) {\r\n    case Component::FLOAT:\r\n        return contiguousAccessor(name, glAccessorType(dim),\r\n                                  GLTF::Constants::WebGL::FLOAT,\r\n                                  GLTF::Constants::WebGL::ARRAY_BUFFER,\r\n                                  reinterpret_span<float>(bytes), dim);\r\n\r\n    case Component::USHORT:\r\n        return contiguousAccessor(name, glAccessorType(dim),\r\n                                  GLTF::Constants::WebGL::UNSIGNED_SHORT,\r\n                                  GLTF::Constants::WebGL::ARRAY_BUFFER,\r\n                                  reinterpret_span<ushort>(bytes), dim);\r\n\r\n    default:\r\n        assert(false);\r\n        return nullptr;\r\n    }\r\n}\r\n\r\ninline const char *glAccessorTargetPurpose(GLTF::Constants::WebGL target) {\r\n    switch (target) {\r\n    case GLTF::Constants::WebGL::ELEMENT_ARRAY_BUFFER:\r\n        return \"indices\";\r\n    case GLTF::Constants::WebGL::ARRAY_BUFFER:\r\n        return \"vertices\";\r\n    default:\r\n        return \"generic\";\r\n    }\r\n}"
  },
  {
    "path": "src/color.cpp",
    "content": "#include \"externals.h\"\n\n#include \"color.h\"\n\nFloat3 hsvToRgb(const Float3 &hsv) {\n    const float h = hsv[0];\n    const float s = hsv[1];\n    const float v = hsv[2];\n\n    if (s == 0)\n        return {0, 0, 0};\n\n    const auto i = static_cast<int>(h * 6) % 6;\n    const float f = (h - i / 6.0f);\n\n    const float p = v * (1.0f - s);\n    const float q = v * (1.0f - s * f);\n    const float t = v * (1.0f - s * (1.0f - f));\n\n    switch (i) {\n    case 0:\n        return {v, t, p};\n    case 1:\n        return {q, v, p};\n    case 2:\n        return {p, v, t};\n    case 3:\n        return {p, q, v};\n    case 4:\n        return {t, p, v};\n    default:\n        return {v, p, q};\n    }\n}\n"
  },
  {
    "path": "src/color.h",
    "content": "#pragma once\n\n#include \"BasicTypes.h\"\n\n// Convert HSV in the range [0..1, 0..1, 0..1] to RGB in the same range.\nFloat3 hsvToRgb(const Float3 &hsv);\n\ninline Float4 hsvToRgb(const Float3 &hsv, const float alpha) {\n    const auto rgb = hsvToRgb(Float3({hsv[0], hsv[1], hsv[2]}));\n    return {rgb[0], rgb[1], rgb[2], alpha};\n}\n\n// Convert HSV in the range [0..1, 0..1, 0..1] to RGB in the same range, keeping\n// alpha\ninline Float4 hsvToRgb(const Float4 &hsv) {\n    const auto rgb = hsvToRgb(Float3({hsv[0], hsv[1], hsv[2]}));\n    return {rgb[0], rgb[1], rgb[2], hsv[3]};\n}\n"
  },
  {
    "path": "src/dump.cpp",
    "content": "#include \"externals.h\"\n\n#include \"IndentableStream.h\"\n#include \"dump.h\"\n\nvoid dump_array(IndentableStream &out, const std::string &name,\n                const MStringArray &items) {\n    out << quoted(name) << \" : [\";\n\n    JsonSeparator sep(\", \");\n\n    for (unsigned i = 0; i < items.length(); ++i) {\n        out << sep << std::quoted(items[i].asChar());\n    }\n\n    out << \"]\";\n}\n\n// std::ostream& operator<<(std::ostream& out, const MMatrix& m)\n//{\n//\tdouble v[4][4];\n//\tm.get(v);\n//\n//\tJsonSeparator sep(\", \");\n//\n//\tout << '[';\n//\n//\tfor (auto& x:v)\n//\t{\n//\t\tout << sep;\n//\t\tout << v;\n//\t}\n//\n//\tout << ']';\n//\n//\treturn out;\n//}\n\nstd::string escaped(const std::string &s) {\n    std::stringstream ss;\n\n    ss << '\"';\n\n    for (std::string::const_iterator i = s.begin(), end = s.end(); i != end;\n         ++i) {\n        unsigned char c = *i;\n        if (' ' <= c && c <= '~' && c != '\\\\' && c != '\"') {\n            ss << c;\n        } else {\n            ss << '\\\\';\n            switch (c) {\n            case '\"':\n                ss << '\"';\n                break;\n            case '\\\\':\n                ss << '\\\\';\n                break;\n            case '\\t':\n                ss << 't';\n                break;\n            case '\\r':\n                ss << 'r';\n                break;\n            case '\\n':\n                ss << 'n';\n                break;\n            default:\n                char const *const hexdig = \"0123456789ABCDEF\";\n                ss << 'x';\n                ss << hexdig[c >> 4];\n                ss << hexdig[c & 0xF];\n            }\n        }\n    }\n\n    ss << '\"';\n\n    return ss.str();\n}\n"
  },
  {
    "path": "src/dump.h",
    "content": "#pragma once\n\n#include \"IndentableStream.h\"\n#include \"sceneTypes.h\"\n\ntemplate <typename... Args>\nstd::string formatted(const char *format, Args... args) {\n    // https://stackoverflow.com/questions/2342162/stdstring-formatting-like-sprintf\n    const size_t size =\n        snprintf(nullptr, 0, format, args...) + 1; // Extra space for '\\0'\n    std::unique_ptr<char[]> buf(new char[size]);\n    snprintf(buf.get(), size, format, args...);\n    return std::string(buf.get(),\n                       buf.get() + size - 1); // We don't want the '\\0' inside\n}\n\ntemplate <typename T>\nstatic void dump_iterable(std::ostream &out, const std::string &name,\n                          const T &iterable, const size_t itemsPerLine,\n                          const size_t precision = 3) {\n    out << std::fixed;\n\n    const auto itemsIndent = '\\t';\n    const auto newLineIndent = std::string(\",\\n\") + itemsIndent;\n    const auto itemSeparator = std::string(\",\\t\");\n    const auto noSeparator = std::string(\"\");\n\n    out << quoted(name) << \": [\" << endl << itemsIndent;\n\n    const auto *separator = &noSeparator;\n\n    int counter = static_cast<int>(itemsPerLine);\n\n    for (auto it = iterable.begin(); it != iterable.end(); ++it) {\n        const auto &val = *it;\n\n        out << *separator << std::setprecision(precision) << val;\n\n        if (--counter <= 0) {\n            separator = &newLineIndent;\n            counter = static_cast<int>(itemsPerLine);\n        } else {\n            separator = &itemSeparator;\n        }\n    }\n\n    out << endl << \"]\";\n}\n\ntemplate <typename T>\nstatic void dump_index_table(std::ostream &out, const std::string &name,\n                             const std::array<T, Semantic::COUNT> &table,\n                             const size_t indicesPerPrimitive,\n                             const size_t precision = 3) {\n    out << quoted(name) << \": {\" << endl << indent;\n\n    JsonSeparator sep(\",\\n\");\n\n    for (int semanticIndex = 0; semanticIndex < Semantic::COUNT;\n         ++semanticIndex) {\n        const auto semanticKind = Semantic::from(semanticIndex);\n\n        for (auto &&components : table.at(semanticKind)) {\n            out << sep;\n            dump_iterable(out, Semantic::name(semanticKind), components,\n                          indicesPerPrimitive, precision);\n        }\n    }\n\n    out << endl << undent << \"}\";\n}\n\ntemplate <typename T>\nstatic void dump_vertex_table(std::ostream &out, const std::string &name,\n                              const std::array<T, Semantic::COUNT> &table,\n                              const ShapeIndex &shapeIndex,\n                              const size_t precision = 3) {\n    out << quoted(name) << \": {\" << endl << indent;\n\n    out << \"\\\"shapeIndex\\\": \" << shapeIndex.arrayIndex() << \", \" << endl;\n\n    JsonSeparator sep(\",\\n\");\n\n    for (int semanticIndex = 0; semanticIndex < Semantic::COUNT;\n         ++semanticIndex) {\n        const auto semanticKind = Semantic::from(semanticIndex);\n\n        for (auto &&components : table.at(semanticKind)) {\n            out << sep;\n\n            switch (components.type) {\n            case Component::FLOAT:\n                dump_iterable(out, Semantic::name(semanticKind),\n                              components.floats(),\n                              dimension(semanticKind, shapeIndex), precision);\n                break;\n            case Component::USHORT:\n                dump_iterable(out, Semantic::name(semanticKind),\n                              components.shorts(),\n                              dimension(semanticKind, shapeIndex), precision);\n                break;\n            }\n        }\n    }\n\n    out << endl << undent << \"}\";\n}\n\nvoid dump_array(std::ostream &out, const std::string &name,\n                const MStringArray &items);\n\n// std::ostream& operator << (std::ostream& out, const MMatrix& m);\n\nstd::string escaped(const std::string &s);\n"
  },
  {
    "path": "src/externals.cpp",
    "content": "#include \"externals.h\"\n"
  },
  {
    "path": "src/externals.h",
    "content": "#pragma once\n\n#include <algorithm>\n#include <array>\n#include <bitset>\n#include <cassert>\n#include <cctype>\n#include <cerrno>\n#include <chrono>\n#include <climits>\n#include <cmath>\n#include <csignal>\n#include <cstdarg>\n#include <cstdio>\n#include <cstdlib>\n#include <cstring>\n#include <fstream>\n#include <iomanip>\n#include <iostream>\n#include <memory>\n#include <numeric>\n#include <sstream>\n#include <stdexcept>\n#include <string>\n#include <thread>\n#include <unordered_map>\n#include <unordered_set>\n#include <utility>\n#include <vector>\n\n#ifdef __linux__\n#define LINUX\n#endif\n\n#ifdef _MSC_VER\n#pragma warning(disable : 4267)\n#endif\n\n#include \"Base64.h\"\n#include <GLTFAccessor.h>\n#include <GLTFAsset.h>\n#include <GLTFBuffer.h>\n#include <GLTFBufferView.h>\n#include <GLTFMesh.h>\n#include <GLTFPrimitive.h>\n#include <GLTFScene.h>\n#include <GLTFTargetNames.h>\n\n#ifdef _MSC_VER\n#pragma warning(push)\n#pragma warning(disable : 4996)\n#pragma warning(default : 4267)\n#endif\n#include \"rapidjson/document.h\"\n#ifdef _MSC_VER\n#pragma warning(pop)\n#endif\n#include \"rapidjson/prettywriter.h\"\n#include \"rapidjson/stringbuffer.h\"\n#include \"rapidjson/writer.h\"\n\n#include <gsl/span>\n\n#include <coveo/enumerable.h>\n#include <coveo/linq.h>\n\n#include <maya/M3dView.h>\n#include <maya/MAnimControl.h>\n#include <maya/MAnimUtil.h>\n#include <maya/MArgDatabase.h>\n#include <maya/MArgList.h>\n#include <maya/MDagModifier.h>\n#include <maya/MDagPath.h>\n#include <maya/MDagPathArray.h>\n#include <maya/MFileIO.h>\n#include <maya/MFileObject.h>\n#include <maya/MFloatMatrix.h>\n#include <maya/MFloatPointArray.h>\n#include <maya/MFloatVectorArray.h>\n#include <maya/MFnAttribute.h>\n#include <maya/MFnBlendShapeDeformer.h>\n#include <maya/MFnBlinnShader.h>\n#include <maya/MFnCamera.h>\n#include <maya/MFnComponentListData.h>\n#include <maya/MFnLambertShader.h>\n#include <maya/MFnMatrixData.h>\n#include <maya/MFnMesh.h>\n#include <maya/MFnMessageAttribute.h>\n#include <maya/MFnNumericAttribute.h>\n#include <maya/MFnPhongShader.h>\n#include <maya/MFnSet.h>\n#include <maya/MFnSingleIndexedComponent.h>\n#include <maya/MFnSkinCluster.h>\n#include <maya/MFnStringArrayData.h>\n#include <maya/MFnTransform.h>\n#include <maya/MFnTypedAttribute.h>\n#include <maya/MGlobal.h>\n#include <maya/MIOStream.h>\n#include <maya/MImage.h>\n#include <maya/MItDependencyGraph.h>\n#include <maya/MItDependencyNodes.h>\n#include <maya/MItGeometry.h>\n#include <maya/MItMeshFaceVertex.h>\n#include <maya/MItMeshPolygon.h>\n#include <maya/MMatrix.h>\n#include <maya/MPointArray.h>\n#include <maya/MPxCommand.h>\n#include <maya/MQuaternion.h>\n#include <maya/MRenderSetup.h>\n#include <maya/MSelectionList.h>\n#include <maya/MStreamUtils.h>\n#include <maya/MSyntax.h>\n#include <maya/MTime.h>\n#include <maya/MUuid.h>\n\n#ifdef isnan\n#   undef isnan\n#endif\n"
  },
  {
    "path": "src/filesystem.h",
    "content": "#pragma once\n\n#include \"ghc/filesystem.hpp\"\n\nnamespace fs = ghc::filesystem;\n"
  },
  {
    "path": "src/hashers.h",
    "content": "#pragma once\n\n#include \"BasicTypes.h\"\n#include \"spans.h\"\n\nstruct CollectionHashers {\n    std::size_t operator()(const gsl::span<int> &vec) const {\n        return hash_value(reinterpret_span<ushort>(vec));\n    }\n\n    std::size_t operator()(const gsl::span<float> &vec) const {\n        return hash_value(reinterpret_span<ushort>(vec));\n    }\n\n    std::size_t operator()(const std::vector<int> &vec) const {\n        return hash_value(reinterpret_span<ushort>(span(vec)));\n    }\n\n    std::size_t operator()(const std::vector<float> &vec) const {\n        return hash_value(reinterpret_span<ushort>(span(vec)));\n    }\n};\n"
  },
  {
    "path": "src/macros.h",
    "content": "#pragma once\n\n// A macro to disallow the copy/move constructor and operator= functions\n// This should be used in the private: declarations for a class\n#define DISALLOW_COPY_MOVE_ASSIGN(TypeName)                                    \\\n    TypeName(const TypeName &) = delete;                                       \\\n    void operator=(const TypeName &) = delete;                                 \\\n    TypeName(TypeName &&) = delete;                                            \\\n    void operator=(TypeName &&) = delete;\n\n#define DEFAULT_COPY_MOVE_ASSIGN(TypeName)                                     \\\n    TypeName(const TypeName &other) = default;                                 \\\n    TypeName(TypeName &&other) = default;                                      \\\n    TypeName &operator=(const TypeName &other) = default;                      \\\n    TypeName &operator=(TypeName &&other) = default;\n\n#define DEFAULT_COPY_MOVE_ASSIGN_DTOR(TypeName)                                \\\n    ~TypeName() = default;                                                     \\\n    DEFAULT_COPY_MOVE_ASSIGN(TypeName)\n\n#define DEFAULT_COPY_MOVE_ASSIGN_CTOR_DTOR(TypeName)                           \\\n    TypeName() = default;                                                      \\\n    DEFAULT_COPY_MOVE_ASSIGN_DTOR(TypeName)\n"
  },
  {
    "path": "src/mikktspace.c",
    "content": "/** \\file mikktspace/mikktspace.c\r\n *  \\ingroup mikktspace\r\n */\r\n/**\r\n *  Copyright (C) 2011 by Morten S. Mikkelsen\r\n *\r\n *  This software is provided 'as-is', without any express or implied\r\n *  warranty.  In no event will the authors be held liable for any damages\r\n *  arising from the use of this software.\r\n *\r\n *  Permission is granted to anyone to use this software for any purpose,\r\n *  including commercial applications, and to alter it and redistribute it\r\n *  freely, subject to the following restrictions:\r\n *\r\n *  1. The origin of this software must not be misrepresented; you must not\r\n *     claim that you wrote the original software. If you use this software\r\n *     in a product, an acknowledgment in the product documentation would be\r\n *     appreciated but is not required.\r\n *  2. Altered source versions must be plainly marked as such, and must not be\r\n *     misrepresented as being the original software.\r\n *  3. This notice may not be removed or altered from any source distribution.\r\n */\r\n\r\n#include <assert.h>\r\n#include <float.h>\r\n#include <math.h>\r\n#include <stdio.h>\r\n#include <stdlib.h>\r\n#include <string.h>\r\n\r\n#include \"mikktspace.h\"\r\n\r\n#define TFALSE 0\r\n#define TTRUE 1\r\n\r\n#ifndef M_PI\r\n#define M_PI 3.1415926535897932384626433832795\r\n#endif\r\n\r\n#define INTERNAL_RND_SORT_SEED 39871946\r\n\r\n// internal structure\r\ntypedef struct {\r\n    float x, y, z;\r\n} SVec3;\r\n\r\nstatic tbool veq(const SVec3 v1, const SVec3 v2) {\r\n    return (v1.x == v2.x) && (v1.y == v2.y) && (v1.z == v2.z);\r\n}\r\n\r\nstatic SVec3 vadd(const SVec3 v1, const SVec3 v2) {\r\n    SVec3 vRes;\r\n\r\n    vRes.x = v1.x + v2.x;\r\n    vRes.y = v1.y + v2.y;\r\n    vRes.z = v1.z + v2.z;\r\n\r\n    return vRes;\r\n}\r\n\r\nstatic SVec3 vsub(const SVec3 v1, const SVec3 v2) {\r\n    SVec3 vRes;\r\n\r\n    vRes.x = v1.x - v2.x;\r\n    vRes.y = v1.y - v2.y;\r\n    vRes.z = v1.z - v2.z;\r\n\r\n    return vRes;\r\n}\r\n\r\nstatic SVec3 vscale(const float fS, const SVec3 v) {\r\n    SVec3 vRes;\r\n\r\n    vRes.x = fS * v.x;\r\n    vRes.y = fS * v.y;\r\n    vRes.z = fS * v.z;\r\n\r\n    return vRes;\r\n}\r\n\r\nstatic float LengthSquared(const SVec3 v) {\r\n    return v.x * v.x + v.y * v.y + v.z * v.z;\r\n}\r\n\r\nstatic float Length(const SVec3 v) { return sqrtf(LengthSquared(v)); }\r\n\r\nstatic SVec3 Normalize(const SVec3 v) { return vscale(1 / Length(v), v); }\r\n\r\nstatic float vdot(const SVec3 v1, const SVec3 v2) {\r\n    return v1.x * v2.x + v1.y * v2.y + v1.z * v2.z;\r\n}\r\n\r\nstatic tbool NotZero(const float fX) {\r\n    // could possibly use FLT_EPSILON instead\r\n    return fabsf(fX) > FLT_MIN;\r\n}\r\n\r\nstatic tbool VNotZero(const SVec3 v) {\r\n    // might change this to an epsilon based test\r\n    return NotZero(v.x) || NotZero(v.y) || NotZero(v.z);\r\n}\r\n\r\ntypedef struct {\r\n    int iNrFaces;\r\n    int *pTriMembers;\r\n} SSubGroup;\r\n\r\ntypedef struct {\r\n    int iNrFaces;\r\n    int *pFaceIndices;\r\n    int iVertexRepresentitive;\r\n    tbool bOrientPreservering;\r\n} SGroup;\r\n\r\n//\r\n#define MARK_DEGENERATE 1\r\n#define QUAD_ONE_DEGEN_TRI 2\r\n#define GROUP_WITH_ANY 4\r\n#define ORIENT_PRESERVING 8\r\n\r\ntypedef struct {\r\n    int FaceNeighbors[3];\r\n    SGroup *AssignedGroup[3];\r\n\r\n    // normalized first order face derivatives\r\n    SVec3 vOs, vOt;\r\n    float fMagS, fMagT; // original magnitudes\r\n\r\n    // determines if the current and the next triangle are a quad.\r\n    int iOrgFaceNumber;\r\n    int iFlag, iTSpacesOffs;\r\n    unsigned char vert_num[4];\r\n} STriInfo;\r\n\r\ntypedef struct {\r\n    SVec3 vOs;\r\n    float fMagS;\r\n    SVec3 vOt;\r\n    float fMagT;\r\n    int iCounter; // this is to average back into quads.\r\n    tbool bOrient;\r\n} STSpace;\r\n\r\nstatic int GenerateInitialVerticesIndexList(STriInfo pTriInfos[],\r\n                                            int piTriList_out[],\r\n                                            const SMikkTSpaceContext *pContext,\r\n                                            const int iNrTrianglesIn);\r\nstatic void GenerateSharedVerticesIndexList(int piTriList_in_and_out[],\r\n                                            const SMikkTSpaceContext *pContext,\r\n                                            const int iNrTrianglesIn);\r\nstatic void InitTriInfo(STriInfo pTriInfos[], const int piTriListIn[],\r\n                        const SMikkTSpaceContext *pContext,\r\n                        const int iNrTrianglesIn);\r\nstatic int Build4RuleGroups(STriInfo pTriInfos[], SGroup pGroups[],\r\n                            int piGroupTrianglesBuffer[],\r\n                            const int piTriListIn[], const int iNrTrianglesIn);\r\nstatic tbool GenerateTSpaces(STSpace psTspace[], const STriInfo pTriInfos[],\r\n                             const SGroup pGroups[], const int iNrActiveGroups,\r\n                             const int piTriListIn[], const float fThresCos,\r\n                             const SMikkTSpaceContext *pContext);\r\n\r\nstatic int MakeIndex(const int iFace, const int iVert) {\r\n    assert(iVert >= 0 && iVert < 4 && iFace >= 0);\r\n    return (iFace << 2) | (iVert & 0x3);\r\n}\r\n\r\nstatic void IndexToData(int *piFace, int *piVert, const int iIndexIn) {\r\n    piVert[0] = iIndexIn & 0x3;\r\n    piFace[0] = iIndexIn >> 2;\r\n}\r\n\r\nstatic STSpace AvgTSpace(const STSpace *pTS0, const STSpace *pTS1) {\r\n    STSpace ts_res;\r\n\r\n    // this if is important. Due to floating point precision\r\n    // averaging when ts0==ts1 will cause a slight difference\r\n    // which results in tangent space splits later on\r\n    if (pTS0->fMagS == pTS1->fMagS && pTS0->fMagT == pTS1->fMagT &&\r\n        veq(pTS0->vOs, pTS1->vOs) && veq(pTS0->vOt, pTS1->vOt)) {\r\n        ts_res.fMagS = pTS0->fMagS;\r\n        ts_res.fMagT = pTS0->fMagT;\r\n        ts_res.vOs = pTS0->vOs;\r\n        ts_res.vOt = pTS0->vOt;\r\n    } else {\r\n        ts_res.fMagS = 0.5f * (pTS0->fMagS + pTS1->fMagS);\r\n        ts_res.fMagT = 0.5f * (pTS0->fMagT + pTS1->fMagT);\r\n        ts_res.vOs = vadd(pTS0->vOs, pTS1->vOs);\r\n        ts_res.vOt = vadd(pTS0->vOt, pTS1->vOt);\r\n        if (VNotZero(ts_res.vOs))\r\n            ts_res.vOs = Normalize(ts_res.vOs);\r\n        if (VNotZero(ts_res.vOt))\r\n            ts_res.vOt = Normalize(ts_res.vOt);\r\n    }\r\n\r\n    return ts_res;\r\n}\r\n\r\nstatic SVec3 GetPosition(const SMikkTSpaceContext *pContext, const int index);\r\nstatic SVec3 GetNormal(const SMikkTSpaceContext *pContext, const int index);\r\nstatic SVec3 GetTexCoord(const SMikkTSpaceContext *pContext, const int index);\r\n\r\n// degen triangles\r\nstatic void DegenPrologue(STriInfo pTriInfos[], int piTriList_out[],\r\n                          const int iNrTrianglesIn, const int iTotTris);\r\nstatic void DegenEpilogue(STSpace psTspace[], STriInfo pTriInfos[],\r\n                          int piTriListIn[], const SMikkTSpaceContext *pContext,\r\n                          const int iNrTrianglesIn, const int iTotTris);\r\n\r\ntbool genTangSpaceDefault(const SMikkTSpaceContext *pContext) {\r\n    return genTangSpace(pContext, 180.0f);\r\n}\r\n\r\ntbool genTangSpace(const SMikkTSpaceContext *pContext,\r\n                   const float fAngularThreshold) {\r\n    // count nr_triangles\r\n    int *piTriListIn = NULL, *piGroupTrianglesBuffer = NULL;\r\n    STriInfo *pTriInfos = NULL;\r\n    SGroup *pGroups = NULL;\r\n    STSpace *psTspace = NULL;\r\n    int iNrTrianglesIn = 0, f = 0, t = 0, i = 0;\r\n    int iNrTSPaces = 0, iTotTris = 0, iDegenTriangles = 0, iNrMaxGroups = 0;\r\n    int iNrActiveGroups = 0, index = 0;\r\n    const int iNrFaces = pContext->m_pInterface->m_getNumFaces(pContext);\r\n    tbool bRes = TFALSE;\r\n    const float fThresCos =\r\n        (float)cos((fAngularThreshold * (float)M_PI) / 180.0f);\r\n\r\n    // verify all call-backs have been set\r\n    if (pContext->m_pInterface->m_getNumFaces == NULL ||\r\n        pContext->m_pInterface->m_getNumVerticesOfFace == NULL ||\r\n        pContext->m_pInterface->m_getPosition == NULL ||\r\n        pContext->m_pInterface->m_getNormal == NULL ||\r\n        pContext->m_pInterface->m_getTexCoord == NULL)\r\n        return TFALSE;\r\n\r\n    // count triangles on supported faces\r\n    for (f = 0; f < iNrFaces; f++) {\r\n        const int verts =\r\n            pContext->m_pInterface->m_getNumVerticesOfFace(pContext, f);\r\n        if (verts == 3)\r\n            ++iNrTrianglesIn;\r\n        else if (verts == 4)\r\n            iNrTrianglesIn += 2;\r\n    }\r\n    if (iNrTrianglesIn <= 0)\r\n        return TFALSE;\r\n\r\n    // allocate memory for an index list\r\n    piTriListIn = (int *)malloc(sizeof(int) * 3 * iNrTrianglesIn);\r\n    pTriInfos = (STriInfo *)malloc(sizeof(STriInfo) * iNrTrianglesIn);\r\n    if (piTriListIn == NULL || pTriInfos == NULL) {\r\n        if (piTriListIn != NULL)\r\n            free(piTriListIn);\r\n        if (pTriInfos != NULL)\r\n            free(pTriInfos);\r\n        return TFALSE;\r\n    }\r\n\r\n    // make an initial triangle --> face index list\r\n    iNrTSPaces = GenerateInitialVerticesIndexList(pTriInfos, piTriListIn,\r\n                                                  pContext, iNrTrianglesIn);\r\n\r\n    // make a welded index list of identical positions and attributes (pos,\r\n    // norm, texc)\r\n    // printf(\"gen welded index list begin\\n\");\r\n    GenerateSharedVerticesIndexList(piTriListIn, pContext, iNrTrianglesIn);\r\n    // printf(\"gen welded index list end\\n\");\r\n\r\n    // Mark all degenerate triangles\r\n    iTotTris = iNrTrianglesIn;\r\n    iDegenTriangles = 0;\r\n    for (t = 0; t < iTotTris; t++) {\r\n        const int i0 = piTriListIn[t * 3 + 0];\r\n        const int i1 = piTriListIn[t * 3 + 1];\r\n        const int i2 = piTriListIn[t * 3 + 2];\r\n        const SVec3 p0 = GetPosition(pContext, i0);\r\n        const SVec3 p1 = GetPosition(pContext, i1);\r\n        const SVec3 p2 = GetPosition(pContext, i2);\r\n        if (veq(p0, p1) || veq(p0, p2) || veq(p1, p2)) // degenerate\r\n        {\r\n            pTriInfos[t].iFlag |= MARK_DEGENERATE;\r\n            if (pContext->m_pInterface->m_reportDegenerateTriangle) {\r\n                pContext->m_pInterface->m_reportDegenerateTriangle(pContext, t);\r\n            }\r\n            ++iDegenTriangles;\r\n        }\r\n    }\r\n    iNrTrianglesIn = iTotTris - iDegenTriangles;\r\n\r\n    // mark all triangle pairs that belong to a quad with only one\r\n    // good triangle. These need special treatment in DegenEpilogue().\r\n    // Additionally, move all good triangles to the start of\r\n    // pTriInfos[] and piTriListIn[] without changing order and\r\n    // put the degenerate triangles last.\r\n    DegenPrologue(pTriInfos, piTriListIn, iNrTrianglesIn, iTotTris);\r\n\r\n    // evaluate triangle level attributes and neighbor list\r\n    // printf(\"gen neighbors list begin\\n\");\r\n    InitTriInfo(pTriInfos, piTriListIn, pContext, iNrTrianglesIn);\r\n    // printf(\"gen neighbors list end\\n\");\r\n\r\n    // based on the 4 rules, identify groups based on connectivity\r\n    iNrMaxGroups = iNrTrianglesIn * 3;\r\n    pGroups = (SGroup *)malloc(sizeof(SGroup) * iNrMaxGroups);\r\n    piGroupTrianglesBuffer = (int *)malloc(sizeof(int) * iNrTrianglesIn * 3);\r\n    if (pGroups == NULL || piGroupTrianglesBuffer == NULL) {\r\n        if (pGroups != NULL)\r\n            free(pGroups);\r\n        if (piGroupTrianglesBuffer != NULL)\r\n            free(piGroupTrianglesBuffer);\r\n        free(piTriListIn);\r\n        free(pTriInfos);\r\n        return TFALSE;\r\n    }\r\n    // printf(\"gen 4rule groups begin\\n\");\r\n    iNrActiveGroups =\r\n        Build4RuleGroups(pTriInfos, pGroups, piGroupTrianglesBuffer,\r\n                         piTriListIn, iNrTrianglesIn);\r\n    // printf(\"gen 4rule groups end\\n\");\r\n\r\n    //\r\n\r\n    psTspace = (STSpace *)malloc(sizeof(STSpace) * iNrTSPaces);\r\n    if (psTspace == NULL) {\r\n        free(piTriListIn);\r\n        free(pTriInfos);\r\n        free(pGroups);\r\n        free(piGroupTrianglesBuffer);\r\n        return TFALSE;\r\n    }\r\n    memset(psTspace, 0, sizeof(STSpace) * iNrTSPaces);\r\n    for (t = 0; t < iNrTSPaces; t++) {\r\n        psTspace[t].vOs.x = 1.0f;\r\n        psTspace[t].vOs.y = 0.0f;\r\n        psTspace[t].vOs.z = 0.0f;\r\n        psTspace[t].fMagS = 1.0f;\r\n        psTspace[t].vOt.x = 0.0f;\r\n        psTspace[t].vOt.y = 1.0f;\r\n        psTspace[t].vOt.z = 0.0f;\r\n        psTspace[t].fMagT = 1.0f;\r\n    }\r\n\r\n    // make tspaces, each group is split up into subgroups if necessary\r\n    // based on fAngularThreshold. Finally a tangent space is made for\r\n    // every resulting subgroup\r\n    // printf(\"gen tspaces begin\\n\");\r\n    bRes = GenerateTSpaces(psTspace, pTriInfos, pGroups, iNrActiveGroups,\r\n                           piTriListIn, fThresCos, pContext);\r\n    // printf(\"gen tspaces end\\n\");\r\n\r\n    // clean up\r\n    free(pGroups);\r\n    free(piGroupTrianglesBuffer);\r\n\r\n    if (!bRes) // if an allocation in GenerateTSpaces() failed\r\n    {\r\n        // clean up and return false\r\n        free(pTriInfos);\r\n        free(piTriListIn);\r\n        free(psTspace);\r\n        return TFALSE;\r\n    }\r\n\r\n    // degenerate quads with one good triangle will be fixed by copying a space\r\n    // from the good triangle to the coinciding vertex. all other degenerate\r\n    // triangles will just copy a space from any good triangle with the same\r\n    // welded index in piTriListIn[].\r\n    DegenEpilogue(psTspace, pTriInfos, piTriListIn, pContext, iNrTrianglesIn,\r\n                  iTotTris);\r\n\r\n    free(pTriInfos);\r\n    free(piTriListIn);\r\n\r\n    index = 0;\r\n    for (f = 0; f < iNrFaces; f++) {\r\n        const int verts =\r\n            pContext->m_pInterface->m_getNumVerticesOfFace(pContext, f);\r\n        if (verts != 3 && verts != 4)\r\n            continue;\r\n\r\n        // I've decided to let degenerate triangles and group-with-anythings\r\n        // vary between left/right hand coordinate systems at the vertices.\r\n        // All healthy triangles on the other hand are built to always be either\r\n        // or.\r\n\r\n        /*// force the coordinate system orientation to be uniform for every\r\n        face.\r\n        // (this is already the case for good triangles but not for\r\n        // degenerate ones and those with bGroupWithAnything==true)\r\n        bool bOrient = psTspace[index].bOrient;\r\n        if (psTspace[index].iCounter == 0)\t// tspace was not derived from\r\n        a group\r\n        {\r\n        // look for a space created in GenerateTSpaces() by iCounter>0\r\n        bool bNotFound = true;\r\n        int i=1;\r\n        while (i<verts && bNotFound)\r\n        {\r\n        if (psTspace[index+i].iCounter > 0) bNotFound=false;\r\n        else ++i;\r\n        }\r\n        if (!bNotFound) bOrient = psTspace[index+i].bOrient;\r\n        }*/\r\n\r\n        // set data\r\n        for (i = 0; i < verts; i++) {\r\n            const STSpace *pTSpace = &psTspace[index];\r\n            float tang[] = {pTSpace->vOs.x, pTSpace->vOs.y, pTSpace->vOs.z};\r\n            float bitang[] = {pTSpace->vOt.x, pTSpace->vOt.y, pTSpace->vOt.z};\r\n            if (pContext->m_pInterface->m_setTSpace != NULL)\r\n                pContext->m_pInterface->m_setTSpace(\r\n                    pContext, tang, bitang, pTSpace->fMagS, pTSpace->fMagT,\r\n                    pTSpace->bOrient, f, i);\r\n            if (pContext->m_pInterface->m_setTSpaceBasic != NULL)\r\n                pContext->m_pInterface->m_setTSpaceBasic(\r\n                    pContext, tang, pTSpace->bOrient == TTRUE ? 1.0f : (-1.0f),\r\n                    f, i);\r\n\r\n            ++index;\r\n        }\r\n    }\r\n\r\n    free(psTspace);\r\n\r\n    return TTRUE;\r\n}\r\n\r\n///////////////////////////////////////////////////////////////////////////////////////////////////////////////////\r\n\r\ntypedef struct {\r\n    float vert[3];\r\n    int index;\r\n} STmpVert;\r\n\r\nstatic const int g_iCells = 2048;\r\n\r\n#ifdef _MSC_VER\r\n#define NOINLINE __declspec(noinline)\r\n#else\r\n#define NOINLINE __attribute__((noinline))\r\n#endif\r\n\r\n// it is IMPORTANT that this function is called to evaluate the hash since\r\n// inlining could potentially reorder instructions and generate different\r\n// results for the same effective input value fVal.\r\nstatic NOINLINE int FindGridCell(const float fMin, const float fMax,\r\n                                 const float fVal) {\r\n    const float fIndex = g_iCells * ((fVal - fMin) / (fMax - fMin));\r\n    const int iIndex = (int)fIndex;\r\n    return iIndex < g_iCells ? (iIndex >= 0 ? iIndex : 0) : (g_iCells - 1);\r\n}\r\n\r\nstatic void MergeVertsFast(int piTriList_in_and_out[], STmpVert pTmpVert[],\r\n                           const SMikkTSpaceContext *pContext, const int iL_in,\r\n                           const int iR_in);\r\nstatic void MergeVertsSlow(int piTriList_in_and_out[],\r\n                           const SMikkTSpaceContext *pContext,\r\n                           const int pTable[], const int iEntries);\r\nstatic void\r\nGenerateSharedVerticesIndexListSlow(int piTriList_in_and_out[],\r\n                                    const SMikkTSpaceContext *pContext,\r\n                                    const int iNrTrianglesIn);\r\n\r\nstatic void GenerateSharedVerticesIndexList(int piTriList_in_and_out[],\r\n                                            const SMikkTSpaceContext *pContext,\r\n                                            const int iNrTrianglesIn) {\r\n\r\n    // Generate bounding box\r\n    int *piHashTable = NULL, *piHashCount = NULL, *piHashOffsets = NULL,\r\n        *piHashCount2 = NULL;\r\n    STmpVert *pTmpVert = NULL;\r\n    int i = 0, iChannel = 0, k = 0, e = 0;\r\n    int iMaxCount = 0;\r\n    SVec3 vMin = GetPosition(pContext, 0), vMax = vMin, vDim;\r\n    float fMin, fMax;\r\n    for (i = 1; i < (iNrTrianglesIn * 3); i++) {\r\n        const int index = piTriList_in_and_out[i];\r\n\r\n        const SVec3 vP = GetPosition(pContext, index);\r\n        if (vMin.x > vP.x)\r\n            vMin.x = vP.x;\r\n        else if (vMax.x < vP.x)\r\n            vMax.x = vP.x;\r\n        if (vMin.y > vP.y)\r\n            vMin.y = vP.y;\r\n        else if (vMax.y < vP.y)\r\n            vMax.y = vP.y;\r\n        if (vMin.z > vP.z)\r\n            vMin.z = vP.z;\r\n        else if (vMax.z < vP.z)\r\n            vMax.z = vP.z;\r\n    }\r\n\r\n    vDim = vsub(vMax, vMin);\r\n    iChannel = 0;\r\n    fMin = vMin.x;\r\n    fMax = vMax.x;\r\n    if (vDim.y > vDim.x && vDim.y > vDim.z) {\r\n        iChannel = 1;\r\n        fMin = vMin.y, fMax = vMax.y;\r\n    } else if (vDim.z > vDim.x) {\r\n        iChannel = 2;\r\n        fMin = vMin.z, fMax = vMax.z;\r\n    }\r\n\r\n    // make allocations\r\n    piHashTable = (int *)malloc(sizeof(int) * iNrTrianglesIn * 3);\r\n    piHashCount = (int *)malloc(sizeof(int) * g_iCells);\r\n    piHashOffsets = (int *)malloc(sizeof(int) * g_iCells);\r\n    piHashCount2 = (int *)malloc(sizeof(int) * g_iCells);\r\n\r\n    if (piHashTable == NULL || piHashCount == NULL || piHashOffsets == NULL ||\r\n        piHashCount2 == NULL) {\r\n        if (piHashTable != NULL)\r\n            free(piHashTable);\r\n        if (piHashCount != NULL)\r\n            free(piHashCount);\r\n        if (piHashOffsets != NULL)\r\n            free(piHashOffsets);\r\n        if (piHashCount2 != NULL)\r\n            free(piHashCount2);\r\n        GenerateSharedVerticesIndexListSlow(piTriList_in_and_out, pContext,\r\n                                            iNrTrianglesIn);\r\n        return;\r\n    }\r\n    memset(piHashCount, 0, sizeof(int) * g_iCells);\r\n    memset(piHashCount2, 0, sizeof(int) * g_iCells);\r\n\r\n    // count amount of elements in each cell unit\r\n    for (i = 0; i < (iNrTrianglesIn * 3); i++) {\r\n        const int index = piTriList_in_and_out[i];\r\n        const SVec3 vP = GetPosition(pContext, index);\r\n        const float fVal = iChannel == 0 ? vP.x : (iChannel == 1 ? vP.y : vP.z);\r\n        const int iCell = FindGridCell(fMin, fMax, fVal);\r\n        ++piHashCount[iCell];\r\n    }\r\n\r\n    // evaluate start index of each cell.\r\n    piHashOffsets[0] = 0;\r\n    for (k = 1; k < g_iCells; k++)\r\n        piHashOffsets[k] = piHashOffsets[k - 1] + piHashCount[k - 1];\r\n\r\n    // insert vertices\r\n    for (i = 0; i < (iNrTrianglesIn * 3); i++) {\r\n        const int index = piTriList_in_and_out[i];\r\n        const SVec3 vP = GetPosition(pContext, index);\r\n        const float fVal = iChannel == 0 ? vP.x : (iChannel == 1 ? vP.y : vP.z);\r\n        const int iCell = FindGridCell(fMin, fMax, fVal);\r\n        int *pTable = NULL;\r\n\r\n        assert(piHashCount2[iCell] < piHashCount[iCell]);\r\n        pTable = &piHashTable[piHashOffsets[iCell]];\r\n        pTable[piHashCount2[iCell]] = i; // vertex i has been inserted.\r\n        ++piHashCount2[iCell];\r\n    }\r\n    for (k = 0; k < g_iCells; k++)\r\n        assert(piHashCount2[k] == piHashCount[k]); // verify the count\r\n    free(piHashCount2);\r\n\r\n    // find maximum amount of entries in any hash entry\r\n    iMaxCount = piHashCount[0];\r\n    for (k = 1; k < g_iCells; k++)\r\n        if (iMaxCount < piHashCount[k])\r\n            iMaxCount = piHashCount[k];\r\n    pTmpVert = (STmpVert *)malloc(sizeof(STmpVert) * iMaxCount);\r\n\r\n    // complete the merge\r\n    for (k = 0; k < g_iCells; k++) {\r\n        // extract table of cell k and amount of entries in it\r\n        int *pTable = &piHashTable[piHashOffsets[k]];\r\n        const int iEntries = piHashCount[k];\r\n        if (iEntries < 2)\r\n            continue;\r\n\r\n        if (pTmpVert != NULL) {\r\n            for (e = 0; e < iEntries; e++) {\r\n                int i = pTable[e];\r\n                const SVec3 vP = GetPosition(pContext, piTriList_in_and_out[i]);\r\n                pTmpVert[e].vert[0] = vP.x;\r\n                pTmpVert[e].vert[1] = vP.y;\r\n                pTmpVert[e].vert[2] = vP.z;\r\n                pTmpVert[e].index = i;\r\n            }\r\n            MergeVertsFast(piTriList_in_and_out, pTmpVert, pContext, 0,\r\n                           iEntries - 1);\r\n        } else\r\n            MergeVertsSlow(piTriList_in_and_out, pContext, pTable, iEntries);\r\n    }\r\n\r\n    if (pTmpVert != NULL) {\r\n        free(pTmpVert);\r\n    }\r\n    free(piHashTable);\r\n    free(piHashCount);\r\n    free(piHashOffsets);\r\n}\r\n\r\nstatic void MergeVertsFast(int piTriList_in_and_out[], STmpVert pTmpVert[],\r\n                           const SMikkTSpaceContext *pContext, const int iL_in,\r\n                           const int iR_in) {\r\n    // make bbox\r\n    int c = 0, l = 0, channel = 0;\r\n    float fvMin[3], fvMax[3];\r\n    float dx = 0, dy = 0, dz = 0, fSep = 0;\r\n    for (c = 0; c < 3; c++) {\r\n        fvMin[c] = pTmpVert[iL_in].vert[c];\r\n        fvMax[c] = fvMin[c];\r\n    }\r\n    for (l = (iL_in + 1); l <= iR_in; l++)\r\n        for (c = 0; c < 3; c++)\r\n            if (fvMin[c] > pTmpVert[l].vert[c])\r\n                fvMin[c] = pTmpVert[l].vert[c];\r\n            else if (fvMax[c] < pTmpVert[l].vert[c])\r\n                fvMax[c] = pTmpVert[l].vert[c];\r\n\r\n    dx = fvMax[0] - fvMin[0];\r\n    dy = fvMax[1] - fvMin[1];\r\n    dz = fvMax[2] - fvMin[2];\r\n\r\n    channel = 0;\r\n    if (dy > dx && dy > dz)\r\n        channel = 1;\r\n    else if (dz > dx)\r\n        channel = 2;\r\n\r\n    fSep = 0.5f * (fvMax[channel] + fvMin[channel]);\r\n\r\n    // terminate recursion when the separation/average value\r\n    // is no longer strictly between fMin and fMax values.\r\n    if (fSep >= fvMax[channel] || fSep <= fvMin[channel]) {\r\n        // complete the weld\r\n        for (l = iL_in; l <= iR_in; l++) {\r\n            int i = pTmpVert[l].index;\r\n            const int index = piTriList_in_and_out[i];\r\n            const SVec3 vP = GetPosition(pContext, index);\r\n            const SVec3 vN = GetNormal(pContext, index);\r\n            const SVec3 vT = GetTexCoord(pContext, index);\r\n\r\n            tbool bNotFound = TTRUE;\r\n            int l2 = iL_in, i2rec = -1;\r\n            while (l2 < l && bNotFound) {\r\n                const int i2 = pTmpVert[l2].index;\r\n                const int index2 = piTriList_in_and_out[i2];\r\n                const SVec3 vP2 = GetPosition(pContext, index2);\r\n                const SVec3 vN2 = GetNormal(pContext, index2);\r\n                const SVec3 vT2 = GetTexCoord(pContext, index2);\r\n                i2rec = i2;\r\n\r\n                // if (vP==vP2 && vN==vN2 && vT==vT2)\r\n                if (vP.x == vP2.x && vP.y == vP2.y && vP.z == vP2.z &&\r\n                    vN.x == vN2.x && vN.y == vN2.y && vN.z == vN2.z &&\r\n                    vT.x == vT2.x && vT.y == vT2.y && vT.z == vT2.z)\r\n                    bNotFound = TFALSE;\r\n                else\r\n                    ++l2;\r\n            }\r\n\r\n            // merge if previously found\r\n            if (!bNotFound)\r\n                piTriList_in_and_out[i] = piTriList_in_and_out[i2rec];\r\n        }\r\n    } else {\r\n        int iL = iL_in, iR = iR_in;\r\n        assert((iR_in - iL_in) > 0); // at least 2 entries\r\n\r\n        // separate (by fSep) all points between iL_in and iR_in in pTmpVert[]\r\n        while (iL < iR) {\r\n            tbool bReadyLeftSwap = TFALSE, bReadyRightSwap = TFALSE;\r\n            while ((!bReadyLeftSwap) && iL < iR) {\r\n                assert(iL >= iL_in && iL <= iR_in);\r\n                bReadyLeftSwap = !(pTmpVert[iL].vert[channel] < fSep);\r\n                if (!bReadyLeftSwap)\r\n                    ++iL;\r\n            }\r\n            while ((!bReadyRightSwap) && iL < iR) {\r\n                assert(iR >= iL_in && iR <= iR_in);\r\n                bReadyRightSwap = pTmpVert[iR].vert[channel] < fSep;\r\n                if (!bReadyRightSwap)\r\n                    --iR;\r\n            }\r\n            assert((iL < iR) || !(bReadyLeftSwap && bReadyRightSwap));\r\n\r\n            if (bReadyLeftSwap && bReadyRightSwap) {\r\n                const STmpVert sTmp = pTmpVert[iL];\r\n                assert(iL < iR);\r\n                pTmpVert[iL] = pTmpVert[iR];\r\n                pTmpVert[iR] = sTmp;\r\n                ++iL;\r\n                --iR;\r\n            }\r\n        }\r\n\r\n        assert(iL == (iR + 1) || (iL == iR));\r\n        if (iL == iR) {\r\n            const tbool bReadyRightSwap = pTmpVert[iR].vert[channel] < fSep;\r\n            if (bReadyRightSwap)\r\n                ++iL;\r\n            else\r\n                --iR;\r\n        }\r\n\r\n        // only need to weld when there is more than 1 instance of the (x,y,z)\r\n        if (iL_in < iR)\r\n            MergeVertsFast(piTriList_in_and_out, pTmpVert, pContext, iL_in,\r\n                           iR); // weld all left of fSep\r\n        if (iL < iR_in)\r\n            MergeVertsFast(piTriList_in_and_out, pTmpVert, pContext, iL,\r\n                           iR_in); // weld all right of (or equal to) fSep\r\n    }\r\n}\r\n\r\nstatic void MergeVertsSlow(int piTriList_in_and_out[],\r\n                           const SMikkTSpaceContext *pContext,\r\n                           const int pTable[], const int iEntries) {\r\n    // this can be optimized further using a tree structure or more hashing.\r\n    int e = 0;\r\n    for (e = 0; e < iEntries; e++) {\r\n        int i = pTable[e];\r\n        const int index = piTriList_in_and_out[i];\r\n        const SVec3 vP = GetPosition(pContext, index);\r\n        const SVec3 vN = GetNormal(pContext, index);\r\n        const SVec3 vT = GetTexCoord(pContext, index);\r\n\r\n        tbool bNotFound = TTRUE;\r\n        int e2 = 0, i2rec = -1;\r\n        while (e2 < e && bNotFound) {\r\n            const int i2 = pTable[e2];\r\n            const int index2 = piTriList_in_and_out[i2];\r\n            const SVec3 vP2 = GetPosition(pContext, index2);\r\n            const SVec3 vN2 = GetNormal(pContext, index2);\r\n            const SVec3 vT2 = GetTexCoord(pContext, index2);\r\n            i2rec = i2;\r\n\r\n            if (veq(vP, vP2) && veq(vN, vN2) && veq(vT, vT2))\r\n                bNotFound = TFALSE;\r\n            else\r\n                ++e2;\r\n        }\r\n\r\n        // merge if previously found\r\n        if (!bNotFound)\r\n            piTriList_in_and_out[i] = piTriList_in_and_out[i2rec];\r\n    }\r\n}\r\n\r\nstatic void\r\nGenerateSharedVerticesIndexListSlow(int piTriList_in_and_out[],\r\n                                    const SMikkTSpaceContext *pContext,\r\n                                    const int iNrTrianglesIn) {\r\n    int iNumUniqueVerts = 0, t = 0, i = 0;\r\n    for (t = 0; t < iNrTrianglesIn; t++) {\r\n        for (i = 0; i < 3; i++) {\r\n            const int offs = t * 3 + i;\r\n            const int index = piTriList_in_and_out[offs];\r\n\r\n            const SVec3 vP = GetPosition(pContext, index);\r\n            const SVec3 vN = GetNormal(pContext, index);\r\n            const SVec3 vT = GetTexCoord(pContext, index);\r\n\r\n            tbool bFound = TFALSE;\r\n            int t2 = 0, index2rec = -1;\r\n            while (!bFound && t2 <= t) {\r\n                int j = 0;\r\n                while (!bFound && j < 3) {\r\n                    const int index2 = piTriList_in_and_out[t2 * 3 + j];\r\n                    const SVec3 vP2 = GetPosition(pContext, index2);\r\n                    const SVec3 vN2 = GetNormal(pContext, index2);\r\n                    const SVec3 vT2 = GetTexCoord(pContext, index2);\r\n\r\n                    if (veq(vP, vP2) && veq(vN, vN2) && veq(vT, vT2))\r\n                        bFound = TTRUE;\r\n                    else\r\n                        ++j;\r\n                }\r\n                if (!bFound)\r\n                    ++t2;\r\n            }\r\n\r\n            assert(bFound);\r\n            // if we found our own\r\n            if (index2rec == index) {\r\n                ++iNumUniqueVerts;\r\n            }\r\n\r\n            piTriList_in_and_out[offs] = index2rec;\r\n        }\r\n    }\r\n}\r\n\r\nstatic int GenerateInitialVerticesIndexList(STriInfo pTriInfos[],\r\n                                            int piTriList_out[],\r\n                                            const SMikkTSpaceContext *pContext,\r\n                                            const int iNrTrianglesIn) {\r\n    int iTSpacesOffs = 0, f = 0, t = 0;\r\n    int iDstTriIndex = 0;\r\n    for (f = 0; f < pContext->m_pInterface->m_getNumFaces(pContext); f++) {\r\n        const int verts =\r\n            pContext->m_pInterface->m_getNumVerticesOfFace(pContext, f);\r\n        if (verts != 3 && verts != 4)\r\n            continue;\r\n\r\n        pTriInfos[iDstTriIndex].iOrgFaceNumber = f;\r\n        pTriInfos[iDstTriIndex].iTSpacesOffs = iTSpacesOffs;\r\n\r\n        if (verts == 3) {\r\n            unsigned char *pVerts = pTriInfos[iDstTriIndex].vert_num;\r\n            pVerts[0] = 0;\r\n            pVerts[1] = 1;\r\n            pVerts[2] = 2;\r\n            piTriList_out[iDstTriIndex * 3 + 0] = MakeIndex(f, 0);\r\n            piTriList_out[iDstTriIndex * 3 + 1] = MakeIndex(f, 1);\r\n            piTriList_out[iDstTriIndex * 3 + 2] = MakeIndex(f, 2);\r\n            ++iDstTriIndex; // next\r\n        } else {\r\n            {\r\n                pTriInfos[iDstTriIndex + 1].iOrgFaceNumber = f;\r\n                pTriInfos[iDstTriIndex + 1].iTSpacesOffs = iTSpacesOffs;\r\n            }\r\n\r\n            {\r\n                // need an order independent way to evaluate\r\n                // tspace on quads. This is done by splitting\r\n                // along the shortest diagonal.\r\n                const int i0 = MakeIndex(f, 0);\r\n                const int i1 = MakeIndex(f, 1);\r\n                const int i2 = MakeIndex(f, 2);\r\n                const int i3 = MakeIndex(f, 3);\r\n                const SVec3 T0 = GetTexCoord(pContext, i0);\r\n                const SVec3 T1 = GetTexCoord(pContext, i1);\r\n                const SVec3 T2 = GetTexCoord(pContext, i2);\r\n                const SVec3 T3 = GetTexCoord(pContext, i3);\r\n                const float distSQ_02 = LengthSquared(vsub(T2, T0));\r\n                const float distSQ_13 = LengthSquared(vsub(T3, T1));\r\n                tbool bQuadDiagIs_02;\r\n                if (distSQ_02 < distSQ_13)\r\n                    bQuadDiagIs_02 = TTRUE;\r\n                else if (distSQ_13 < distSQ_02)\r\n                    bQuadDiagIs_02 = TFALSE;\r\n                else {\r\n                    const SVec3 P0 = GetPosition(pContext, i0);\r\n                    const SVec3 P1 = GetPosition(pContext, i1);\r\n                    const SVec3 P2 = GetPosition(pContext, i2);\r\n                    const SVec3 P3 = GetPosition(pContext, i3);\r\n                    const float distSQ_02 = LengthSquared(vsub(P2, P0));\r\n                    const float distSQ_13 = LengthSquared(vsub(P3, P1));\r\n\r\n                    bQuadDiagIs_02 = distSQ_13 < distSQ_02 ? TFALSE : TTRUE;\r\n                }\r\n\r\n                if (bQuadDiagIs_02) {\r\n                    {\r\n                        unsigned char *pVerts_A =\r\n                            pTriInfos[iDstTriIndex].vert_num;\r\n                        pVerts_A[0] = 0;\r\n                        pVerts_A[1] = 1;\r\n                        pVerts_A[2] = 2;\r\n                    }\r\n                    piTriList_out[iDstTriIndex * 3 + 0] = i0;\r\n                    piTriList_out[iDstTriIndex * 3 + 1] = i1;\r\n                    piTriList_out[iDstTriIndex * 3 + 2] = i2;\r\n                    ++iDstTriIndex; // next\r\n                    {\r\n                        unsigned char *pVerts_B =\r\n                            pTriInfos[iDstTriIndex].vert_num;\r\n                        pVerts_B[0] = 0;\r\n                        pVerts_B[1] = 2;\r\n                        pVerts_B[2] = 3;\r\n                    }\r\n                    piTriList_out[iDstTriIndex * 3 + 0] = i0;\r\n                    piTriList_out[iDstTriIndex * 3 + 1] = i2;\r\n                    piTriList_out[iDstTriIndex * 3 + 2] = i3;\r\n                    ++iDstTriIndex; // next\r\n                } else {\r\n                    {\r\n                        unsigned char *pVerts_A =\r\n                            pTriInfos[iDstTriIndex].vert_num;\r\n                        pVerts_A[0] = 0;\r\n                        pVerts_A[1] = 1;\r\n                        pVerts_A[2] = 3;\r\n                    }\r\n                    piTriList_out[iDstTriIndex * 3 + 0] = i0;\r\n                    piTriList_out[iDstTriIndex * 3 + 1] = i1;\r\n                    piTriList_out[iDstTriIndex * 3 + 2] = i3;\r\n                    ++iDstTriIndex; // next\r\n                    {\r\n                        unsigned char *pVerts_B =\r\n                            pTriInfos[iDstTriIndex].vert_num;\r\n                        pVerts_B[0] = 1;\r\n                        pVerts_B[1] = 2;\r\n                        pVerts_B[2] = 3;\r\n                    }\r\n                    piTriList_out[iDstTriIndex * 3 + 0] = i1;\r\n                    piTriList_out[iDstTriIndex * 3 + 1] = i2;\r\n                    piTriList_out[iDstTriIndex * 3 + 2] = i3;\r\n                    ++iDstTriIndex; // next\r\n                }\r\n            }\r\n        }\r\n\r\n        iTSpacesOffs += verts;\r\n        assert(iDstTriIndex <= iNrTrianglesIn);\r\n    }\r\n\r\n    for (t = 0; t < iNrTrianglesIn; t++)\r\n        pTriInfos[t].iFlag = 0;\r\n\r\n    // return total amount of tspaces\r\n    return iTSpacesOffs;\r\n}\r\n\r\nstatic SVec3 GetPosition(const SMikkTSpaceContext *pContext, const int index) {\r\n    int iF, iI;\r\n    SVec3 res;\r\n    float pos[3];\r\n    IndexToData(&iF, &iI, index);\r\n    pContext->m_pInterface->m_getPosition(pContext, pos, iF, iI);\r\n    res.x = pos[0];\r\n    res.y = pos[1];\r\n    res.z = pos[2];\r\n    return res;\r\n}\r\n\r\nstatic SVec3 GetNormal(const SMikkTSpaceContext *pContext, const int index) {\r\n    int iF, iI;\r\n    SVec3 res;\r\n    float norm[3];\r\n    IndexToData(&iF, &iI, index);\r\n    pContext->m_pInterface->m_getNormal(pContext, norm, iF, iI);\r\n    res.x = norm[0];\r\n    res.y = norm[1];\r\n    res.z = norm[2];\r\n    return res;\r\n}\r\n\r\nstatic SVec3 GetTexCoord(const SMikkTSpaceContext *pContext, const int index) {\r\n    int iF, iI;\r\n    SVec3 res;\r\n    float texc[2];\r\n    IndexToData(&iF, &iI, index);\r\n    pContext->m_pInterface->m_getTexCoord(pContext, texc, iF, iI);\r\n    res.x = texc[0];\r\n    res.y = texc[1];\r\n    res.z = 1.0f;\r\n    return res;\r\n}\r\n\r\n/////////////////////////////////////////////////////////////////////////////////////////////////////\r\n/////////////////////////////////////////////////////////////////////////////////////////////////////\r\n\r\ntypedef union {\r\n    struct {\r\n        int i0, i1, f;\r\n    };\r\n    int array[3];\r\n} SEdge;\r\n\r\nstatic void BuildNeighborsFast(STriInfo pTriInfos[], SEdge *pEdges,\r\n                               const int piTriListIn[],\r\n                               const int iNrTrianglesIn);\r\nstatic void BuildNeighborsSlow(STriInfo pTriInfos[], const int piTriListIn[],\r\n                               const int iNrTrianglesIn);\r\n\r\n// returns the texture area times 2\r\nstatic float CalcTexArea(const SMikkTSpaceContext *pContext,\r\n                         const int indices[]) {\r\n    const SVec3 t1 = GetTexCoord(pContext, indices[0]);\r\n    const SVec3 t2 = GetTexCoord(pContext, indices[1]);\r\n    const SVec3 t3 = GetTexCoord(pContext, indices[2]);\r\n\r\n    const float t21x = t2.x - t1.x;\r\n    const float t21y = t2.y - t1.y;\r\n    const float t31x = t3.x - t1.x;\r\n    const float t31y = t3.y - t1.y;\r\n\r\n    const float fSignedAreaSTx2 = t21x * t31y - t21y * t31x;\r\n\r\n    return fSignedAreaSTx2 < 0 ? (-fSignedAreaSTx2) : fSignedAreaSTx2;\r\n}\r\n\r\nstatic void InitTriInfo(STriInfo pTriInfos[], const int piTriListIn[],\r\n                        const SMikkTSpaceContext *pContext,\r\n                        const int iNrTrianglesIn) {\r\n    int f = 0, i = 0, t = 0;\r\n    // pTriInfos[f].iFlag is cleared in GenerateInitialVerticesIndexList() which\r\n    // is called before this function.\r\n\r\n    // generate neighbor info list\r\n    for (f = 0; f < iNrTrianglesIn; f++)\r\n        for (i = 0; i < 3; i++) {\r\n            pTriInfos[f].FaceNeighbors[i] = -1;\r\n            pTriInfos[f].AssignedGroup[i] = NULL;\r\n\r\n            pTriInfos[f].vOs.x = 0.0f;\r\n            pTriInfos[f].vOs.y = 0.0f;\r\n            pTriInfos[f].vOs.z = 0.0f;\r\n            pTriInfos[f].vOt.x = 0.0f;\r\n            pTriInfos[f].vOt.y = 0.0f;\r\n            pTriInfos[f].vOt.z = 0.0f;\r\n            pTriInfos[f].fMagS = 0;\r\n            pTriInfos[f].fMagT = 0;\r\n\r\n            // assumed bad\r\n            pTriInfos[f].iFlag |= GROUP_WITH_ANY;\r\n        }\r\n\r\n    // evaluate first order derivatives\r\n    for (f = 0; f < iNrTrianglesIn; f++) {\r\n        // initial values\r\n        const SVec3 v1 = GetPosition(pContext, piTriListIn[f * 3 + 0]);\r\n        const SVec3 v2 = GetPosition(pContext, piTriListIn[f * 3 + 1]);\r\n        const SVec3 v3 = GetPosition(pContext, piTriListIn[f * 3 + 2]);\r\n        const SVec3 t1 = GetTexCoord(pContext, piTriListIn[f * 3 + 0]);\r\n        const SVec3 t2 = GetTexCoord(pContext, piTriListIn[f * 3 + 1]);\r\n        const SVec3 t3 = GetTexCoord(pContext, piTriListIn[f * 3 + 2]);\r\n\r\n        const float t21x = t2.x - t1.x;\r\n        const float t21y = t2.y - t1.y;\r\n        const float t31x = t3.x - t1.x;\r\n        const float t31y = t3.y - t1.y;\r\n        const SVec3 d1 = vsub(v2, v1);\r\n        const SVec3 d2 = vsub(v3, v1);\r\n\r\n        const float fSignedAreaSTx2 = t21x * t31y - t21y * t31x;\r\n        // assert(fSignedAreaSTx2!=0);\r\n        SVec3 vOs = vsub(vscale(t31y, d1), vscale(t21y, d2));  // eq 18\r\n        SVec3 vOt = vadd(vscale(-t31x, d1), vscale(t21x, d2)); // eq 19\r\n\r\n        pTriInfos[f].iFlag |= (fSignedAreaSTx2 > 0 ? ORIENT_PRESERVING : 0);\r\n\r\n        if (NotZero(fSignedAreaSTx2)) {\r\n            const float fAbsArea = fabsf(fSignedAreaSTx2);\r\n            const float fLenOs = Length(vOs);\r\n            const float fLenOt = Length(vOt);\r\n            const float fS =\r\n                (pTriInfos[f].iFlag & ORIENT_PRESERVING) == 0 ? (-1.0f) : 1.0f;\r\n            if (NotZero(fLenOs))\r\n                pTriInfos[f].vOs = vscale(fS / fLenOs, vOs);\r\n            if (NotZero(fLenOt))\r\n                pTriInfos[f].vOt = vscale(fS / fLenOt, vOt);\r\n\r\n            // evaluate magnitudes prior to normalization of vOs and vOt\r\n            pTriInfos[f].fMagS = fLenOs / fAbsArea;\r\n            pTriInfos[f].fMagT = fLenOt / fAbsArea;\r\n\r\n            // if this is a good triangle\r\n            if (NotZero(pTriInfos[f].fMagS) && NotZero(pTriInfos[f].fMagT))\r\n                pTriInfos[f].iFlag &= (~GROUP_WITH_ANY);\r\n        }\r\n    }\r\n\r\n    // force otherwise healthy quads to a fixed orientation\r\n    while (t < (iNrTrianglesIn - 1)) {\r\n        const int iFO_a = pTriInfos[t].iOrgFaceNumber;\r\n        const int iFO_b = pTriInfos[t + 1].iOrgFaceNumber;\r\n        if (iFO_a == iFO_b) // this is a quad\r\n        {\r\n            const tbool bIsDeg_a =\r\n                (pTriInfos[t].iFlag & MARK_DEGENERATE) != 0 ? TTRUE : TFALSE;\r\n            const tbool bIsDeg_b =\r\n                (pTriInfos[t + 1].iFlag & MARK_DEGENERATE) != 0 ? TTRUE\r\n                                                                : TFALSE;\r\n\r\n            // bad triangles should already have been removed by\r\n            // DegenPrologue(), but just in case check bIsDeg_a and bIsDeg_a are\r\n            // false\r\n            if ((bIsDeg_a || bIsDeg_b) == TFALSE) {\r\n                const tbool bOrientA =\r\n                    (pTriInfos[t].iFlag & ORIENT_PRESERVING) != 0 ? TTRUE\r\n                                                                  : TFALSE;\r\n                const tbool bOrientB =\r\n                    (pTriInfos[t + 1].iFlag & ORIENT_PRESERVING) != 0 ? TTRUE\r\n                                                                      : TFALSE;\r\n                // if this happens the quad has extremely bad mapping!!\r\n                if (bOrientA != bOrientB) {\r\n                    // printf(\"found quad with bad mapping\\n\");\r\n                    tbool bChooseOrientFirstTri = TFALSE;\r\n                    if ((pTriInfos[t + 1].iFlag & GROUP_WITH_ANY) != 0)\r\n                        bChooseOrientFirstTri = TTRUE;\r\n                    else if (CalcTexArea(pContext, &piTriListIn[t * 3 + 0]) >=\r\n                             CalcTexArea(pContext,\r\n                                         &piTriListIn[(t + 1) * 3 + 0]))\r\n                        bChooseOrientFirstTri = TTRUE;\r\n\r\n                    // force match\r\n                    {\r\n                        const int t0 = bChooseOrientFirstTri ? t : (t + 1);\r\n                        const int t1 = bChooseOrientFirstTri ? (t + 1) : t;\r\n                        pTriInfos[t1].iFlag &=\r\n                            (~ORIENT_PRESERVING); // clear first\r\n                        pTriInfos[t1].iFlag |= (pTriInfos[t0].iFlag &\r\n                                                ORIENT_PRESERVING); // copy bit\r\n                    }\r\n                }\r\n            }\r\n            t += 2;\r\n        } else\r\n            ++t;\r\n    }\r\n\r\n    // match up edge pairs\r\n    {\r\n        SEdge *pEdges = (SEdge *)malloc(sizeof(SEdge) * iNrTrianglesIn * 3);\r\n        if (pEdges == NULL)\r\n            BuildNeighborsSlow(pTriInfos, piTriListIn, iNrTrianglesIn);\r\n        else {\r\n            BuildNeighborsFast(pTriInfos, pEdges, piTriListIn, iNrTrianglesIn);\r\n\r\n            free(pEdges);\r\n        }\r\n    }\r\n}\r\n\r\n/////////////////////////////////////////////////////////////////////////////////////////////////////\r\n/////////////////////////////////////////////////////////////////////////////////////////////////////\r\n\r\nstatic tbool AssignRecur(const int piTriListIn[], STriInfo psTriInfos[],\r\n                         const int iMyTriIndex, SGroup *pGroup);\r\nstatic void AddTriToGroup(SGroup *pGroup, const int iTriIndex);\r\n\r\nstatic int Build4RuleGroups(STriInfo pTriInfos[], SGroup pGroups[],\r\n                            int piGroupTrianglesBuffer[],\r\n                            const int piTriListIn[], const int iNrTrianglesIn) {\r\n    const int iNrMaxGroups = iNrTrianglesIn * 3;\r\n    int iNrActiveGroups = 0;\r\n    int iOffset = 0, f = 0, i = 0;\r\n    (void)iNrMaxGroups; /* quiet warnings in non debug mode */\r\n    for (f = 0; f < iNrTrianglesIn; f++) {\r\n        for (i = 0; i < 3; i++) {\r\n            // if not assigned to a group\r\n            if ((pTriInfos[f].iFlag & GROUP_WITH_ANY) == 0 &&\r\n                pTriInfos[f].AssignedGroup[i] == NULL) {\r\n                tbool bOrPre;\r\n                int neigh_indexL, neigh_indexR;\r\n                const int vert_index = piTriListIn[f * 3 + i];\r\n                assert(iNrActiveGroups < iNrMaxGroups);\r\n                pTriInfos[f].AssignedGroup[i] = &pGroups[iNrActiveGroups];\r\n                pTriInfos[f].AssignedGroup[i]->iVertexRepresentitive =\r\n                    vert_index;\r\n                pTriInfos[f].AssignedGroup[i]->bOrientPreservering =\r\n                    (pTriInfos[f].iFlag & ORIENT_PRESERVING) != 0;\r\n                pTriInfos[f].AssignedGroup[i]->iNrFaces = 0;\r\n                pTriInfos[f].AssignedGroup[i]->pFaceIndices =\r\n                    &piGroupTrianglesBuffer[iOffset];\r\n                ++iNrActiveGroups;\r\n\r\n                AddTriToGroup(pTriInfos[f].AssignedGroup[i], f);\r\n                bOrPre = (pTriInfos[f].iFlag & ORIENT_PRESERVING) != 0 ? TTRUE\r\n                                                                       : TFALSE;\r\n                neigh_indexL = pTriInfos[f].FaceNeighbors[i];\r\n                neigh_indexR = pTriInfos[f].FaceNeighbors[i > 0 ? (i - 1) : 2];\r\n                if (neigh_indexL >= 0) // neighbor\r\n                {\r\n                    const tbool bAnswer =\r\n                        AssignRecur(piTriListIn, pTriInfos, neigh_indexL,\r\n                                    pTriInfos[f].AssignedGroup[i]);\r\n\r\n                    const tbool bOrPre2 =\r\n                        (pTriInfos[neigh_indexL].iFlag & ORIENT_PRESERVING) != 0\r\n                            ? TTRUE\r\n                            : TFALSE;\r\n                    const tbool bDiff = bOrPre != bOrPre2 ? TTRUE : TFALSE;\r\n                    assert(bAnswer || bDiff);\r\n                    (void)bAnswer,\r\n                        (void)bDiff; /* quiet warnings in non debug mode */\r\n                }\r\n                if (neigh_indexR >= 0) // neighbor\r\n                {\r\n                    const tbool bAnswer =\r\n                        AssignRecur(piTriListIn, pTriInfos, neigh_indexR,\r\n                                    pTriInfos[f].AssignedGroup[i]);\r\n\r\n                    const tbool bOrPre2 =\r\n                        (pTriInfos[neigh_indexR].iFlag & ORIENT_PRESERVING) != 0\r\n                            ? TTRUE\r\n                            : TFALSE;\r\n                    const tbool bDiff = bOrPre != bOrPre2 ? TTRUE : TFALSE;\r\n                    assert(bAnswer || bDiff);\r\n                    (void)bAnswer,\r\n                        (void)bDiff; /* quiet warnings in non debug mode */\r\n                }\r\n\r\n                // update offset\r\n                iOffset += pTriInfos[f].AssignedGroup[i]->iNrFaces;\r\n                // since the groups are disjoint a triangle can never\r\n                // belong to more than 3 groups. Subsequently something\r\n                // is completely screwed if this assertion ever hits.\r\n                assert(iOffset <= iNrMaxGroups);\r\n            }\r\n        }\r\n    }\r\n\r\n    return iNrActiveGroups;\r\n}\r\n\r\nstatic void AddTriToGroup(SGroup *pGroup, const int iTriIndex) {\r\n    pGroup->pFaceIndices[pGroup->iNrFaces] = iTriIndex;\r\n    ++pGroup->iNrFaces;\r\n}\r\n\r\nstatic tbool AssignRecur(const int piTriListIn[], STriInfo psTriInfos[],\r\n                         const int iMyTriIndex, SGroup *pGroup) {\r\n    STriInfo *pMyTriInfo = &psTriInfos[iMyTriIndex];\r\n\r\n    // track down vertex\r\n    const int iVertRep = pGroup->iVertexRepresentitive;\r\n    const int *pVerts = &piTriListIn[3 * iMyTriIndex + 0];\r\n    int i = -1;\r\n    if (pVerts[0] == iVertRep)\r\n        i = 0;\r\n    else if (pVerts[1] == iVertRep)\r\n        i = 1;\r\n    else if (pVerts[2] == iVertRep)\r\n        i = 2;\r\n    assert(i >= 0 && i < 3);\r\n\r\n    // early out\r\n    if (pMyTriInfo->AssignedGroup[i] == pGroup)\r\n        return TTRUE;\r\n    else if (pMyTriInfo->AssignedGroup[i] != NULL)\r\n        return TFALSE;\r\n    if ((pMyTriInfo->iFlag & GROUP_WITH_ANY) != 0) {\r\n        // first to group with a group-with-anything triangle\r\n        // determines it's orientation.\r\n        // This is the only existing order dependency in the code!!\r\n        if (pMyTriInfo->AssignedGroup[0] == NULL &&\r\n            pMyTriInfo->AssignedGroup[1] == NULL &&\r\n            pMyTriInfo->AssignedGroup[2] == NULL) {\r\n            pMyTriInfo->iFlag &= (~ORIENT_PRESERVING);\r\n            pMyTriInfo->iFlag |=\r\n                (pGroup->bOrientPreservering ? ORIENT_PRESERVING : 0);\r\n        }\r\n    }\r\n    {\r\n        const tbool bOrient =\r\n            (pMyTriInfo->iFlag & ORIENT_PRESERVING) != 0 ? TTRUE : TFALSE;\r\n        if (bOrient != pGroup->bOrientPreservering)\r\n            return TFALSE;\r\n    }\r\n\r\n    AddTriToGroup(pGroup, iMyTriIndex);\r\n    pMyTriInfo->AssignedGroup[i] = pGroup;\r\n\r\n    {\r\n        const int neigh_indexL = pMyTriInfo->FaceNeighbors[i];\r\n        const int neigh_indexR = pMyTriInfo->FaceNeighbors[i > 0 ? (i - 1) : 2];\r\n        if (neigh_indexL >= 0)\r\n            AssignRecur(piTriListIn, psTriInfos, neigh_indexL, pGroup);\r\n        if (neigh_indexR >= 0)\r\n            AssignRecur(piTriListIn, psTriInfos, neigh_indexR, pGroup);\r\n    }\r\n\r\n    return TTRUE;\r\n}\r\n\r\n/////////////////////////////////////////////////////////////////////////////////////////////////////\r\n/////////////////////////////////////////////////////////////////////////////////////////////////////\r\n\r\nstatic tbool CompareSubGroups(const SSubGroup *pg1, const SSubGroup *pg2);\r\nstatic void QuickSort(int *pSortBuffer, int iLeft, int iRight,\r\n                      unsigned int uSeed);\r\nstatic STSpace EvalTspace(int face_indices[], const int iFaces,\r\n                          const int piTriListIn[], const STriInfo pTriInfos[],\r\n                          const SMikkTSpaceContext *pContext,\r\n                          const int iVertexRepresentitive);\r\n\r\nstatic tbool GenerateTSpaces(STSpace psTspace[], const STriInfo pTriInfos[],\r\n                             const SGroup pGroups[], const int iNrActiveGroups,\r\n                             const int piTriListIn[], const float fThresCos,\r\n                             const SMikkTSpaceContext *pContext) {\r\n    STSpace *pSubGroupTspace = NULL;\r\n    SSubGroup *pUniSubGroups = NULL;\r\n    int *pTmpMembers = NULL;\r\n    int iMaxNrFaces = 0, iUniqueTspaces = 0, g = 0, i = 0;\r\n    for (g = 0; g < iNrActiveGroups; g++)\r\n        if (iMaxNrFaces < pGroups[g].iNrFaces)\r\n            iMaxNrFaces = pGroups[g].iNrFaces;\r\n\r\n    if (iMaxNrFaces == 0)\r\n        return TTRUE;\r\n\r\n    // make initial allocations\r\n    pSubGroupTspace = (STSpace *)malloc(sizeof(STSpace) * iMaxNrFaces);\r\n    pUniSubGroups = (SSubGroup *)malloc(sizeof(SSubGroup) * iMaxNrFaces);\r\n    pTmpMembers = (int *)malloc(sizeof(int) * iMaxNrFaces);\r\n    if (pSubGroupTspace == NULL || pUniSubGroups == NULL ||\r\n        pTmpMembers == NULL) {\r\n        if (pSubGroupTspace != NULL)\r\n            free(pSubGroupTspace);\r\n        if (pUniSubGroups != NULL)\r\n            free(pUniSubGroups);\r\n        if (pTmpMembers != NULL)\r\n            free(pTmpMembers);\r\n        return TFALSE;\r\n    }\r\n\r\n    iUniqueTspaces = 0;\r\n    for (g = 0; g < iNrActiveGroups; g++) {\r\n        const SGroup *pGroup = &pGroups[g];\r\n        int iUniqueSubGroups = 0, s = 0;\r\n\r\n        for (i = 0; i < pGroup->iNrFaces; i++) // triangles\r\n        {\r\n            const int f = pGroup->pFaceIndices[i]; // triangle number\r\n            int index = -1, iVertIndex = -1, iOF_1 = -1, iMembers = 0, j = 0,\r\n                l = 0;\r\n            SSubGroup tmp_group;\r\n            tbool bFound;\r\n            SVec3 n, vOs, vOt;\r\n            if (pTriInfos[f].AssignedGroup[0] == pGroup)\r\n                index = 0;\r\n            else if (pTriInfos[f].AssignedGroup[1] == pGroup)\r\n                index = 1;\r\n            else if (pTriInfos[f].AssignedGroup[2] == pGroup)\r\n                index = 2;\r\n            assert(index >= 0 && index < 3);\r\n\r\n            iVertIndex = piTriListIn[f * 3 + index];\r\n            assert(iVertIndex == pGroup->iVertexRepresentitive);\r\n\r\n            // is normalized already\r\n            n = GetNormal(pContext, iVertIndex);\r\n\r\n            // project\r\n            vOs = vsub(pTriInfos[f].vOs, vscale(vdot(n, pTriInfos[f].vOs), n));\r\n            vOt = vsub(pTriInfos[f].vOt, vscale(vdot(n, pTriInfos[f].vOt), n));\r\n            if (VNotZero(vOs))\r\n                vOs = Normalize(vOs);\r\n            if (VNotZero(vOt))\r\n                vOt = Normalize(vOt);\r\n\r\n            // original face number\r\n            iOF_1 = pTriInfos[f].iOrgFaceNumber;\r\n\r\n            iMembers = 0;\r\n            for (j = 0; j < pGroup->iNrFaces; j++) {\r\n                const int t = pGroup->pFaceIndices[j]; // triangle number\r\n                const int iOF_2 = pTriInfos[t].iOrgFaceNumber;\r\n\r\n                // project\r\n                SVec3 vOs2 = vsub(pTriInfos[t].vOs,\r\n                                  vscale(vdot(n, pTriInfos[t].vOs), n));\r\n                SVec3 vOt2 = vsub(pTriInfos[t].vOt,\r\n                                  vscale(vdot(n, pTriInfos[t].vOt), n));\r\n                if (VNotZero(vOs2))\r\n                    vOs2 = Normalize(vOs2);\r\n                if (VNotZero(vOt2))\r\n                    vOt2 = Normalize(vOt2);\r\n\r\n                {\r\n                    const tbool bAny =\r\n                        ((pTriInfos[f].iFlag | pTriInfos[t].iFlag) &\r\n                         GROUP_WITH_ANY) != 0\r\n                            ? TTRUE\r\n                            : TFALSE;\r\n                    // make sure triangles which belong to the same quad are\r\n                    // joined.\r\n                    const tbool bSameOrgFace = iOF_1 == iOF_2 ? TTRUE : TFALSE;\r\n\r\n                    const float fCosS = vdot(vOs, vOs2);\r\n                    const float fCosT = vdot(vOt, vOt2);\r\n\r\n                    assert(f != t || bSameOrgFace); // sanity check\r\n                    if (bAny || bSameOrgFace ||\r\n                        (fCosS > fThresCos && fCosT > fThresCos))\r\n                        pTmpMembers[iMembers++] = t;\r\n                }\r\n            }\r\n\r\n            // sort pTmpMembers\r\n            tmp_group.iNrFaces = iMembers;\r\n            tmp_group.pTriMembers = pTmpMembers;\r\n            if (iMembers > 1) {\r\n                unsigned int uSeed =\r\n                    INTERNAL_RND_SORT_SEED; // could replace with a random seed?\r\n                QuickSort(pTmpMembers, 0, iMembers - 1, uSeed);\r\n            }\r\n\r\n            // look for an existing match\r\n            bFound = TFALSE;\r\n            l = 0;\r\n            while (l < iUniqueSubGroups && !bFound) {\r\n                bFound = CompareSubGroups(&tmp_group, &pUniSubGroups[l]);\r\n                if (!bFound)\r\n                    ++l;\r\n            }\r\n\r\n            // assign tangent space index\r\n            assert(bFound || l == iUniqueSubGroups);\r\n            // piTempTangIndices[f*3+index] = iUniqueTspaces+l;\r\n\r\n            // if no match was found we allocate a new subgroup\r\n            if (!bFound) {\r\n                // insert new subgroup\r\n                int *pIndices = (int *)malloc(sizeof(int) * iMembers);\r\n                if (pIndices == NULL) {\r\n                    // clean up and return false\r\n                    int s = 0;\r\n                    for (s = 0; s < iUniqueSubGroups; s++)\r\n                        free(pUniSubGroups[s].pTriMembers);\r\n                    free(pUniSubGroups);\r\n                    free(pTmpMembers);\r\n                    free(pSubGroupTspace);\r\n                    return TFALSE;\r\n                }\r\n                pUniSubGroups[iUniqueSubGroups].iNrFaces = iMembers;\r\n                pUniSubGroups[iUniqueSubGroups].pTriMembers = pIndices;\r\n                memcpy(pIndices, tmp_group.pTriMembers, iMembers * sizeof(int));\r\n                pSubGroupTspace[iUniqueSubGroups] = EvalTspace(\r\n                    tmp_group.pTriMembers, iMembers, piTriListIn, pTriInfos,\r\n                    pContext, pGroup->iVertexRepresentitive);\r\n                ++iUniqueSubGroups;\r\n            }\r\n\r\n            // output tspace\r\n            {\r\n                const int iOffs = pTriInfos[f].iTSpacesOffs;\r\n                const int iVert = pTriInfos[f].vert_num[index];\r\n                STSpace *pTS_out = &psTspace[iOffs + iVert];\r\n                assert(pTS_out->iCounter < 2);\r\n                assert(((pTriInfos[f].iFlag & ORIENT_PRESERVING) != 0) ==\r\n                       pGroup->bOrientPreservering);\r\n                if (pTS_out->iCounter == 1) {\r\n                    *pTS_out = AvgTSpace(pTS_out, &pSubGroupTspace[l]);\r\n                    pTS_out->iCounter = 2; // update counter\r\n                    pTS_out->bOrient = pGroup->bOrientPreservering;\r\n                } else {\r\n                    assert(pTS_out->iCounter == 0);\r\n                    *pTS_out = pSubGroupTspace[l];\r\n                    pTS_out->iCounter = 1; // update counter\r\n                    pTS_out->bOrient = pGroup->bOrientPreservering;\r\n                }\r\n            }\r\n        }\r\n\r\n        // clean up and offset iUniqueTspaces\r\n        for (s = 0; s < iUniqueSubGroups; s++)\r\n            free(pUniSubGroups[s].pTriMembers);\r\n        iUniqueTspaces += iUniqueSubGroups;\r\n    }\r\n\r\n    // clean up\r\n    free(pUniSubGroups);\r\n    free(pTmpMembers);\r\n    free(pSubGroupTspace);\r\n\r\n    return TTRUE;\r\n}\r\n\r\nstatic STSpace EvalTspace(int face_indices[], const int iFaces,\r\n                          const int piTriListIn[], const STriInfo pTriInfos[],\r\n                          const SMikkTSpaceContext *pContext,\r\n                          const int iVertexRepresentitive) {\r\n    STSpace res;\r\n    float fAngleSum = 0;\r\n    int face = 0;\r\n    res.vOs.x = 0.0f;\r\n    res.vOs.y = 0.0f;\r\n    res.vOs.z = 0.0f;\r\n    res.vOt.x = 0.0f;\r\n    res.vOt.y = 0.0f;\r\n    res.vOt.z = 0.0f;\r\n    res.fMagS = 0;\r\n    res.fMagT = 0;\r\n\r\n    for (face = 0; face < iFaces; face++) {\r\n        const int f = face_indices[face];\r\n\r\n        // only valid triangles get to add their contribution\r\n        if ((pTriInfos[f].iFlag & GROUP_WITH_ANY) == 0) {\r\n            SVec3 n, vOs, vOt, p0, p1, p2, v1, v2;\r\n            float fCos, fAngle, fMagS, fMagT;\r\n            int i = -1, index = -1, i0 = -1, i1 = -1, i2 = -1;\r\n            if (piTriListIn[3 * f + 0] == iVertexRepresentitive)\r\n                i = 0;\r\n            else if (piTriListIn[3 * f + 1] == iVertexRepresentitive)\r\n                i = 1;\r\n            else if (piTriListIn[3 * f + 2] == iVertexRepresentitive)\r\n                i = 2;\r\n            assert(i >= 0 && i < 3);\r\n\r\n            // project\r\n            index = piTriListIn[3 * f + i];\r\n            n = GetNormal(pContext, index);\r\n            vOs = vsub(pTriInfos[f].vOs, vscale(vdot(n, pTriInfos[f].vOs), n));\r\n            vOt = vsub(pTriInfos[f].vOt, vscale(vdot(n, pTriInfos[f].vOt), n));\r\n            if (VNotZero(vOs))\r\n                vOs = Normalize(vOs);\r\n            if (VNotZero(vOt))\r\n                vOt = Normalize(vOt);\r\n\r\n            i2 = piTriListIn[3 * f + (i < 2 ? (i + 1) : 0)];\r\n            i1 = piTriListIn[3 * f + i];\r\n            i0 = piTriListIn[3 * f + (i > 0 ? (i - 1) : 2)];\r\n\r\n            p0 = GetPosition(pContext, i0);\r\n            p1 = GetPosition(pContext, i1);\r\n            p2 = GetPosition(pContext, i2);\r\n            v1 = vsub(p0, p1);\r\n            v2 = vsub(p2, p1);\r\n\r\n            // project\r\n            v1 = vsub(v1, vscale(vdot(n, v1), n));\r\n            if (VNotZero(v1))\r\n                v1 = Normalize(v1);\r\n            v2 = vsub(v2, vscale(vdot(n, v2), n));\r\n            if (VNotZero(v2))\r\n                v2 = Normalize(v2);\r\n\r\n            // weight contribution by the angle\r\n            // between the two edge vectors\r\n            fCos = vdot(v1, v2);\r\n            fCos = fCos > 1 ? 1 : (fCos < (-1) ? (-1) : fCos);\r\n            fAngle = (float)acos(fCos);\r\n            fMagS = pTriInfos[f].fMagS;\r\n            fMagT = pTriInfos[f].fMagT;\r\n\r\n            res.vOs = vadd(res.vOs, vscale(fAngle, vOs));\r\n            res.vOt = vadd(res.vOt, vscale(fAngle, vOt));\r\n            res.fMagS += (fAngle * fMagS);\r\n            res.fMagT += (fAngle * fMagT);\r\n            fAngleSum += fAngle;\r\n        }\r\n    }\r\n\r\n    // normalize\r\n    if (VNotZero(res.vOs))\r\n        res.vOs = Normalize(res.vOs);\r\n    if (VNotZero(res.vOt))\r\n        res.vOt = Normalize(res.vOt);\r\n    if (fAngleSum > 0) {\r\n        res.fMagS /= fAngleSum;\r\n        res.fMagT /= fAngleSum;\r\n    }\r\n\r\n    return res;\r\n}\r\n\r\nstatic tbool CompareSubGroups(const SSubGroup *pg1, const SSubGroup *pg2) {\r\n    tbool bStillSame = TTRUE;\r\n    int i = 0;\r\n    if (pg1->iNrFaces != pg2->iNrFaces)\r\n        return TFALSE;\r\n    while (i < pg1->iNrFaces && bStillSame) {\r\n        bStillSame =\r\n            pg1->pTriMembers[i] == pg2->pTriMembers[i] ? TTRUE : TFALSE;\r\n        if (bStillSame)\r\n            ++i;\r\n    }\r\n    return bStillSame;\r\n}\r\n\r\nstatic void QuickSort(int *pSortBuffer, int iLeft, int iRight,\r\n                      unsigned int uSeed) {\r\n    int iL, iR, n, index, iMid, iTmp;\r\n\r\n    // Random\r\n    unsigned int t = uSeed & 31;\r\n    t = (uSeed << t) | (uSeed >> (32 - t));\r\n    uSeed = uSeed + t + 3;\r\n    // Random end\r\n\r\n    iL = iLeft;\r\n    iR = iRight;\r\n    n = (iR - iL) + 1;\r\n    assert(n >= 0);\r\n    index = (int)(uSeed % n);\r\n\r\n    iMid = pSortBuffer[index + iL];\r\n\r\n    do {\r\n        while (pSortBuffer[iL] < iMid)\r\n            ++iL;\r\n        while (pSortBuffer[iR] > iMid)\r\n            --iR;\r\n\r\n        if (iL <= iR) {\r\n            iTmp = pSortBuffer[iL];\r\n            pSortBuffer[iL] = pSortBuffer[iR];\r\n            pSortBuffer[iR] = iTmp;\r\n            ++iL;\r\n            --iR;\r\n        }\r\n    } while (iL <= iR);\r\n\r\n    if (iLeft < iR)\r\n        QuickSort(pSortBuffer, iLeft, iR, uSeed);\r\n    if (iL < iRight)\r\n        QuickSort(pSortBuffer, iL, iRight, uSeed);\r\n}\r\n\r\n/////////////////////////////////////////////////////////////////////////////////////////////\r\n/////////////////////////////////////////////////////////////////////////////////////////////\r\n\r\nstatic void QuickSortEdges(SEdge *pSortBuffer, int iLeft, int iRight,\r\n                           const int channel, unsigned int uSeed);\r\nstatic void GetEdge(int *i0_out, int *i1_out, int *edgenum_out,\r\n                    const int indices[], const int i0_in, const int i1_in);\r\n\r\nstatic void BuildNeighborsFast(STriInfo pTriInfos[], SEdge *pEdges,\r\n                               const int piTriListIn[],\r\n                               const int iNrTrianglesIn) {\r\n    // build array of edges\r\n    unsigned int uSeed =\r\n        INTERNAL_RND_SORT_SEED; // could replace with a random seed?\r\n    int iEntries = 0, iCurStartIndex = -1, f = 0, i = 0;\r\n    for (f = 0; f < iNrTrianglesIn; f++)\r\n        for (i = 0; i < 3; i++) {\r\n            const int i0 = piTriListIn[f * 3 + i];\r\n            const int i1 = piTriListIn[f * 3 + (i < 2 ? (i + 1) : 0)];\r\n            pEdges[f * 3 + i].i0 = i0 < i1 ? i0 : i1; // put minimum index in i0\r\n            pEdges[f * 3 + i].i1 =\r\n                !(i0 < i1) ? i0 : i1; // put maximum index in i1\r\n            pEdges[f * 3 + i].f = f;  // record face number\r\n        }\r\n\r\n    // sort over all edges by i0, this is the pricy one.\r\n    QuickSortEdges(pEdges, 0, iNrTrianglesIn * 3 - 1, 0,\r\n                   uSeed); // sort channel 0 which is i0\r\n\r\n    // sub sort over i1, should be fast.\r\n    // could replace this with a 64 bit int sort over (i0,i1)\r\n    // with i0 as msb in the quicksort call above.\r\n    iEntries = iNrTrianglesIn * 3;\r\n    iCurStartIndex = 0;\r\n    for (i = 1; i < iEntries; i++) {\r\n        if (pEdges[iCurStartIndex].i0 != pEdges[i].i0) {\r\n            const int iL = iCurStartIndex;\r\n            const int iR = i - 1;\r\n            // const int iElems = i-iL;\r\n            iCurStartIndex = i;\r\n            QuickSortEdges(pEdges, iL, iR, 1,\r\n                           uSeed); // sort channel 1 which is i1\r\n        }\r\n    }\r\n\r\n    // sub sort over f, which should be fast.\r\n    // this step is to remain compliant with BuildNeighborsSlow() when\r\n    // more than 2 triangles use the same edge (such as a butterfly topology).\r\n    iCurStartIndex = 0;\r\n    for (i = 1; i < iEntries; i++) {\r\n        if (pEdges[iCurStartIndex].i0 != pEdges[i].i0 ||\r\n            pEdges[iCurStartIndex].i1 != pEdges[i].i1) {\r\n            const int iL = iCurStartIndex;\r\n            const int iR = i - 1;\r\n            // const int iElems = i-iL;\r\n            iCurStartIndex = i;\r\n            QuickSortEdges(pEdges, iL, iR, 2,\r\n                           uSeed); // sort channel 2 which is f\r\n        }\r\n    }\r\n\r\n    // pair up, adjacent triangles\r\n    for (i = 0; i < iEntries; i++) {\r\n        const int i0 = pEdges[i].i0;\r\n        const int i1 = pEdges[i].i1;\r\n        const int f = pEdges[i].f;\r\n        tbool bUnassigned_A;\r\n\r\n        int i0_A, i1_A;\r\n        int edgenum_A, edgenum_B = 0; // 0,1 or 2\r\n        GetEdge(&i0_A, &i1_A, &edgenum_A, &piTriListIn[f * 3], i0,\r\n                i1); // resolve index ordering and edge_num\r\n        bUnassigned_A =\r\n            pTriInfos[f].FaceNeighbors[edgenum_A] == -1 ? TTRUE : TFALSE;\r\n\r\n        if (bUnassigned_A) {\r\n            // get true index ordering\r\n            int j = i + 1, t;\r\n            tbool bNotFound = TTRUE;\r\n            while (j < iEntries && i0 == pEdges[j].i0 && i1 == pEdges[j].i1 &&\r\n                   bNotFound) {\r\n                tbool bUnassigned_B;\r\n                int i0_B, i1_B;\r\n                t = pEdges[j].f;\r\n                // flip i0_B and i1_B\r\n                GetEdge(&i1_B, &i0_B, &edgenum_B, &piTriListIn[t * 3],\r\n                        pEdges[j].i0,\r\n                        pEdges[j].i1); // resolve index ordering and edge_num\r\n                                       // assert(!(i0_A==i1_B && i1_A==i0_B));\r\n                bUnassigned_B = pTriInfos[t].FaceNeighbors[edgenum_B] == -1\r\n                                    ? TTRUE\r\n                                    : TFALSE;\r\n                if (i0_A == i0_B && i1_A == i1_B && bUnassigned_B)\r\n                    bNotFound = TFALSE;\r\n                else\r\n                    ++j;\r\n            }\r\n\r\n            if (!bNotFound) {\r\n                int t = pEdges[j].f;\r\n                pTriInfos[f].FaceNeighbors[edgenum_A] = t;\r\n                // assert(pTriInfos[t].FaceNeighbors[edgenum_B]==-1);\r\n                pTriInfos[t].FaceNeighbors[edgenum_B] = f;\r\n            }\r\n        }\r\n    }\r\n}\r\n\r\nstatic void BuildNeighborsSlow(STriInfo pTriInfos[], const int piTriListIn[],\r\n                               const int iNrTrianglesIn) {\r\n    int f = 0, i = 0;\r\n    for (f = 0; f < iNrTrianglesIn; f++) {\r\n        for (i = 0; i < 3; i++) {\r\n            // if unassigned\r\n            if (pTriInfos[f].FaceNeighbors[i] == -1) {\r\n                const int i0_A = piTriListIn[f * 3 + i];\r\n                const int i1_A = piTriListIn[f * 3 + (i < 2 ? (i + 1) : 0)];\r\n\r\n                // search for a neighbor\r\n                tbool bFound = TFALSE;\r\n                int t = 0, j = 0;\r\n                while (!bFound && t < iNrTrianglesIn) {\r\n                    if (t != f) {\r\n                        j = 0;\r\n                        while (!bFound && j < 3) {\r\n                            // in rev order\r\n                            const int i1_B = piTriListIn[t * 3 + j];\r\n                            const int i0_B =\r\n                                piTriListIn[t * 3 + (j < 2 ? (j + 1) : 0)];\r\n                            // assert(!(i0_A==i1_B && i1_A==i0_B));\r\n                            if (i0_A == i0_B && i1_A == i1_B)\r\n                                bFound = TTRUE;\r\n                            else\r\n                                ++j;\r\n                        }\r\n                    }\r\n\r\n                    if (!bFound)\r\n                        ++t;\r\n                }\r\n\r\n                // assign neighbors\r\n                if (bFound) {\r\n                    pTriInfos[f].FaceNeighbors[i] = t;\r\n                    // assert(pTriInfos[t].FaceNeighbors[j]==-1);\r\n                    pTriInfos[t].FaceNeighbors[j] = f;\r\n                }\r\n            }\r\n        }\r\n    }\r\n}\r\n\r\nstatic void QuickSortEdges(SEdge *pSortBuffer, int iLeft, int iRight,\r\n                           const int channel, unsigned int uSeed) {\r\n    unsigned int t;\r\n    int iL, iR, n, index, iMid;\r\n\r\n    // early out\r\n    SEdge sTmp;\r\n    const int iElems = iRight - iLeft + 1;\r\n    if (iElems < 2)\r\n        return;\r\n    else if (iElems == 2) {\r\n        if (pSortBuffer[iLeft].array[channel] >\r\n            pSortBuffer[iRight].array[channel]) {\r\n            sTmp = pSortBuffer[iLeft];\r\n            pSortBuffer[iLeft] = pSortBuffer[iRight];\r\n            pSortBuffer[iRight] = sTmp;\r\n        }\r\n        return;\r\n    }\r\n\r\n    // Random\r\n    t = uSeed & 31;\r\n    t = (uSeed << t) | (uSeed >> (32 - t));\r\n    uSeed = uSeed + t + 3;\r\n    // Random end\r\n\r\n    iL = iLeft, iR = iRight;\r\n    n = (iR - iL) + 1;\r\n    assert(n >= 0);\r\n    index = (int)(uSeed % n);\r\n\r\n    iMid = pSortBuffer[index + iL].array[channel];\r\n\r\n    do {\r\n        while (pSortBuffer[iL].array[channel] < iMid)\r\n            ++iL;\r\n        while (pSortBuffer[iR].array[channel] > iMid)\r\n            --iR;\r\n\r\n        if (iL <= iR) {\r\n            sTmp = pSortBuffer[iL];\r\n            pSortBuffer[iL] = pSortBuffer[iR];\r\n            pSortBuffer[iR] = sTmp;\r\n            ++iL;\r\n            --iR;\r\n        }\r\n    } while (iL <= iR);\r\n\r\n    if (iLeft < iR)\r\n        QuickSortEdges(pSortBuffer, iLeft, iR, channel, uSeed);\r\n    if (iL < iRight)\r\n        QuickSortEdges(pSortBuffer, iL, iRight, channel, uSeed);\r\n}\r\n\r\n// resolve ordering and edge number\r\nstatic void GetEdge(int *i0_out, int *i1_out, int *edgenum_out,\r\n                    const int indices[], const int i0_in, const int i1_in) {\r\n    *edgenum_out = -1;\r\n\r\n    // test if first index is on the edge\r\n    if (indices[0] == i0_in || indices[0] == i1_in) {\r\n        // test if second index is on the edge\r\n        if (indices[1] == i0_in || indices[1] == i1_in) {\r\n            edgenum_out[0] = 0; // first edge\r\n            i0_out[0] = indices[0];\r\n            i1_out[0] = indices[1];\r\n        } else {\r\n            edgenum_out[0] = 2; // third edge\r\n            i0_out[0] = indices[2];\r\n            i1_out[0] = indices[0];\r\n        }\r\n    } else {\r\n        // only second and third index is on the edge\r\n        edgenum_out[0] = 1; // second edge\r\n        i0_out[0] = indices[1];\r\n        i1_out[0] = indices[2];\r\n    }\r\n}\r\n\r\n/////////////////////////////////////////////////////////////////////////////////////////////\r\n/////////////////////////////////// Degenerate triangles\r\n///////////////////////////////////////\r\n\r\nstatic void DegenPrologue(STriInfo pTriInfos[], int piTriList_out[],\r\n                          const int iNrTrianglesIn, const int iTotTris) {\r\n    int iNextGoodTriangleSearchIndex = -1;\r\n    tbool bStillFindingGoodOnes;\r\n\r\n    // locate quads with only one good triangle\r\n    int t = 0;\r\n    while (t < (iTotTris - 1)) {\r\n        const int iFO_a = pTriInfos[t].iOrgFaceNumber;\r\n        const int iFO_b = pTriInfos[t + 1].iOrgFaceNumber;\r\n        if (iFO_a == iFO_b) // this is a quad\r\n        {\r\n            const tbool bIsDeg_a =\r\n                (pTriInfos[t].iFlag & MARK_DEGENERATE) != 0 ? TTRUE : TFALSE;\r\n            const tbool bIsDeg_b =\r\n                (pTriInfos[t + 1].iFlag & MARK_DEGENERATE) != 0 ? TTRUE\r\n                                                                : TFALSE;\r\n            if ((bIsDeg_a ^ bIsDeg_b) != 0) {\r\n                pTriInfos[t].iFlag |= QUAD_ONE_DEGEN_TRI;\r\n                pTriInfos[t + 1].iFlag |= QUAD_ONE_DEGEN_TRI;\r\n            }\r\n            t += 2;\r\n        } else\r\n            ++t;\r\n    }\r\n\r\n    // reorder list so all degen triangles are moved to the back\r\n    // without reordering the good triangles\r\n    iNextGoodTriangleSearchIndex = 1;\r\n    t = 0;\r\n    bStillFindingGoodOnes = TTRUE;\r\n    while (t < iNrTrianglesIn && bStillFindingGoodOnes) {\r\n        const tbool bIsGood =\r\n            (pTriInfos[t].iFlag & MARK_DEGENERATE) == 0 ? TTRUE : TFALSE;\r\n        if (bIsGood) {\r\n            if (iNextGoodTriangleSearchIndex < (t + 2))\r\n                iNextGoodTriangleSearchIndex = t + 2;\r\n        } else {\r\n            int t0, t1;\r\n            // search for the first good triangle.\r\n            tbool bJustADegenerate = TTRUE;\r\n            while (bJustADegenerate &&\r\n                   iNextGoodTriangleSearchIndex < iTotTris) {\r\n                const tbool bIsGood =\r\n                    (pTriInfos[iNextGoodTriangleSearchIndex].iFlag &\r\n                     MARK_DEGENERATE) == 0\r\n                        ? TTRUE\r\n                        : TFALSE;\r\n                if (bIsGood)\r\n                    bJustADegenerate = TFALSE;\r\n                else\r\n                    ++iNextGoodTriangleSearchIndex;\r\n            }\r\n\r\n            t0 = t;\r\n            t1 = iNextGoodTriangleSearchIndex;\r\n            ++iNextGoodTriangleSearchIndex;\r\n            assert(iNextGoodTriangleSearchIndex > (t + 1));\r\n\r\n            // swap triangle t0 and t1\r\n            if (!bJustADegenerate) {\r\n                int i = 0;\r\n                for (i = 0; i < 3; i++) {\r\n                    const int index = piTriList_out[t0 * 3 + i];\r\n                    piTriList_out[t0 * 3 + i] = piTriList_out[t1 * 3 + i];\r\n                    piTriList_out[t1 * 3 + i] = index;\r\n                }\r\n                {\r\n                    const STriInfo tri_info = pTriInfos[t0];\r\n                    pTriInfos[t0] = pTriInfos[t1];\r\n                    pTriInfos[t1] = tri_info;\r\n                }\r\n            } else\r\n                bStillFindingGoodOnes =\r\n                    TFALSE; // this is not supposed to happen\r\n        }\r\n\r\n        if (bStillFindingGoodOnes)\r\n            ++t;\r\n    }\r\n\r\n    assert(bStillFindingGoodOnes); // code will still work.\r\n    assert(iNrTrianglesIn == t);\r\n}\r\n\r\nstatic void DegenEpilogue(STSpace psTspace[], STriInfo pTriInfos[],\r\n                          int piTriListIn[], const SMikkTSpaceContext *pContext,\r\n                          const int iNrTrianglesIn, const int iTotTris) {\r\n    int t = 0, i = 0;\r\n    // deal with degenerate triangles\r\n    // punishment for degenerate triangles is O(N^2)\r\n    for (t = iNrTrianglesIn; t < iTotTris; t++) {\r\n        // degenerate triangles on a quad with one good triangle are skipped\r\n        // here but processed in the next loop\r\n        const tbool bSkip =\r\n            (pTriInfos[t].iFlag & QUAD_ONE_DEGEN_TRI) != 0 ? TTRUE : TFALSE;\r\n\r\n        if (!bSkip) {\r\n            for (i = 0; i < 3; i++) {\r\n                const int index1 = piTriListIn[t * 3 + i];\r\n                // search through the good triangles\r\n                tbool bNotFound = TTRUE;\r\n                int j = 0;\r\n                while (bNotFound && j < (3 * iNrTrianglesIn)) {\r\n                    const int index2 = piTriListIn[j];\r\n                    if (index1 == index2)\r\n                        bNotFound = TFALSE;\r\n                    else\r\n                        ++j;\r\n                }\r\n\r\n                if (!bNotFound) {\r\n                    const int iTri = j / 3;\r\n                    const int iVert = j % 3;\r\n                    const int iSrcVert = pTriInfos[iTri].vert_num[iVert];\r\n                    const int iSrcOffs = pTriInfos[iTri].iTSpacesOffs;\r\n                    const int iDstVert = pTriInfos[t].vert_num[i];\r\n                    const int iDstOffs = pTriInfos[t].iTSpacesOffs;\r\n\r\n                    // copy tspace\r\n                    psTspace[iDstOffs + iDstVert] =\r\n                        psTspace[iSrcOffs + iSrcVert];\r\n                }\r\n            }\r\n        }\r\n    }\r\n\r\n    // deal with degenerate quads with one good triangle\r\n    for (t = 0; t < iNrTrianglesIn; t++) {\r\n        // this triangle belongs to a quad where the\r\n        // other triangle is degenerate\r\n        if ((pTriInfos[t].iFlag & QUAD_ONE_DEGEN_TRI) != 0) {\r\n            SVec3 vDstP;\r\n            int iOrgF = -1, i = 0;\r\n            tbool bNotFound;\r\n            unsigned char *pV = pTriInfos[t].vert_num;\r\n            int iFlag = (1 << pV[0]) | (1 << pV[1]) | (1 << pV[2]);\r\n            int iMissingIndex = 0;\r\n            if ((iFlag & 2) == 0)\r\n                iMissingIndex = 1;\r\n            else if ((iFlag & 4) == 0)\r\n                iMissingIndex = 2;\r\n            else if ((iFlag & 8) == 0)\r\n                iMissingIndex = 3;\r\n\r\n            iOrgF = pTriInfos[t].iOrgFaceNumber;\r\n            vDstP = GetPosition(pContext, MakeIndex(iOrgF, iMissingIndex));\r\n            bNotFound = TTRUE;\r\n            i = 0;\r\n            while (bNotFound && i < 3) {\r\n                const int iVert = pV[i];\r\n                const SVec3 vSrcP =\r\n                    GetPosition(pContext, MakeIndex(iOrgF, iVert));\r\n                if (veq(vSrcP, vDstP) == TTRUE) {\r\n                    const int iOffs = pTriInfos[t].iTSpacesOffs;\r\n                    psTspace[iOffs + iMissingIndex] = psTspace[iOffs + iVert];\r\n                    bNotFound = TFALSE;\r\n                } else\r\n                    ++i;\r\n            }\r\n            assert(!bNotFound);\r\n        }\r\n    }\r\n}"
  },
  {
    "path": "src/mikktspace.h",
    "content": "/** \\file mikktspace/mikktspace.h\r\n *  \\ingroup mikktspace\r\n */\r\n/**\r\n *  Copyright (C) 2011 by Morten S. Mikkelsen\r\n *\r\n *  This software is provided 'as-is', without any express or implied\r\n *  warranty.  In no event will the authors be held liable for any damages\r\n *  arising from the use of this software.\r\n *\r\n *  Permission is granted to anyone to use this software for any purpose,\r\n *  including commercial applications, and to alter it and redistribute it\r\n *  freely, subject to the following restrictions:\r\n *\r\n *  1. The origin of this software must not be misrepresented; you must not\r\n *     claim that you wrote the original software. If you use this software\r\n *     in a product, an acknowledgment in the product documentation would be\r\n *     appreciated but is not required.\r\n *  2. Altered source versions must be plainly marked as such, and must not be\r\n *     misrepresented as being the original software.\r\n *  3. This notice may not be removed or altered from any source distribution.\r\n */\r\n\r\n#ifndef __MIKKTSPACE_H__\r\n#define __MIKKTSPACE_H__\r\n\r\n#ifdef __cplusplus\r\nextern \"C\" {\r\n#endif\r\n\r\n/* Author: Morten S. Mikkelsen\r\n * Version: 1.0\r\n *\r\n * The files mikktspace.h and mikktspace.c are designed to be\r\n * stand-alone files and it is important that they are kept this way.\r\n * Not having dependencies on structures/classes/libraries specific\r\n * to the program, in which they are used, allows them to be copied\r\n * and used as is into any tool, program or plugin.\r\n * The code is designed to consistently generate the same\r\n * tangent spaces, for a given mesh, in any tool in which it is used.\r\n * This is done by performing an internal welding step and subsequently an\r\n * order-independent evaluation of tangent space for meshes consisting of\r\n * triangles and quads. This means faces can be received in any order and the\r\n * same is true for the order of vertices of each face. The generated result\r\n * will not be affected by such reordering. Additionally, whether degenerate\r\n * (vertices or texture coordinates) primitives are present or not will not\r\n * affect the generated results either. Once tangent space calculation is done\r\n * the vertices of degenerate primitives will simply inherit tangent space from\r\n * neighboring non degenerate primitives. The analysis behind this\r\n * implementation can be found in my master's thesis which is available for\r\n * download --> http://image.diku.dk/projects/media/morten.mikkelsen.08.pdf Note\r\n * that though the tangent spaces at the vertices are generated in an\r\n * order-independent way, by this implementation, the interpolated tangent space\r\n * is still affected by which diagonal is chosen to split each quad. A sensible\r\n * solution is to have your tools pipeline always split quads by the shortest\r\n * diagonal. This choice is order-independent and works with mirroring. If these\r\n * have the same length then compare the diagonals defined by the texture\r\n * coordinates. XNormal which is a tool for baking normal maps allows you to\r\n * write your own tangent space plugin and also quad triangulator plugin.\r\n */\r\n\r\ntypedef int tbool;\r\ntypedef struct SMikkTSpaceContext SMikkTSpaceContext;\r\n\r\ntypedef struct {\r\n    // Returns the number of faces (triangles/quads) on the mesh to be\r\n    // processed.\r\n    int (*m_getNumFaces)(const SMikkTSpaceContext *pContext);\r\n\r\n    // Returns the number of vertices on face number iFace\r\n    // iFace is a number in the range {0, 1, ..., getNumFaces()-1}\r\n    int (*m_getNumVerticesOfFace)(const SMikkTSpaceContext *pContext,\r\n                                  const int iFace);\r\n\r\n    // returns the position/normal/texcoord of the referenced face of vertex\r\n    // number iVert. iVert is in the range {0,1,2} for triangles and {0,1,2,3}\r\n    // for quads.\r\n    void (*m_getPosition)(const SMikkTSpaceContext *pContext, float fvPosOut[],\r\n                          const int iFace, const int iVert);\r\n    void (*m_getNormal)(const SMikkTSpaceContext *pContext, float fvNormOut[],\r\n                        const int iFace, const int iVert);\r\n    void (*m_getTexCoord)(const SMikkTSpaceContext *pContext, float fvTexcOut[],\r\n                          const int iFace, const int iVert);\r\n\r\n    // either (or both) of the two setTSpace callbacks can be set.\r\n    // The call-back m_setTSpaceBasic() is sufficient for basic normal mapping.\r\n\r\n    // This function is used to return the tangent and fSign to the application.\r\n    // fvTangent is a unit length vector.\r\n    // For normal maps it is sufficient to use the following simplified version\r\n    // of the bitangent which is generated at pixel/vertex level. bitangent =\r\n    // fSign * cross(vN, tangent); Note that the results are returned unindexed.\r\n    // It is possible to generate a new index list But averaging/overwriting\r\n    // tangent spaces by using an already existing index list WILL produce\r\n    // INCRORRECT results. DO NOT! use an already existing index list.\r\n    void (*m_setTSpaceBasic)(const SMikkTSpaceContext *pContext,\r\n                             const float fvTangent[], const float fSign,\r\n                             const int iFace, const int iVert);\r\n\r\n    // This function is used to return tangent space results to the application.\r\n    // fvTangent and fvBiTangent are unit length vectors and fMagS and fMagT are\r\n    // their true magnitudes which can be used for relief mapping effects.\r\n    // fvBiTangent is the \"real\" bitangent and thus may not be perpendicular to\r\n    // fvTangent. However, both are perpendicular to the vertex normal. For\r\n    // normal maps it is sufficient to use the following simplified version of\r\n    // the bitangent which is generated at pixel/vertex level. fSign =\r\n    // bIsOrientationPreserving ? 1.0f : (-1.0f); bitangent = fSign * cross(vN,\r\n    // tangent); Note that the results are returned unindexed. It is possible to\r\n    // generate a new index list But averaging/overwriting tangent spaces by\r\n    // using an already existing index list WILL produce INCRORRECT results. DO\r\n    // NOT! use an already existing index list.\r\n    void (*m_setTSpace)(const SMikkTSpaceContext *pContext,\r\n                        const float fvTangent[], const float fvBiTangent[],\r\n                        const float fMagS, const float fMagT,\r\n                        const tbool bIsOrientationPreserving, const int iFace,\r\n                        const int iVert);\r\n\r\n    void (*m_reportDegenerateTriangle)(const SMikkTSpaceContext *pContext,\r\n                                       int triangleIndex);\r\n\r\n} SMikkTSpaceInterface;\r\n\r\nstruct SMikkTSpaceContext {\r\n    SMikkTSpaceInterface *m_pInterface; // initialized with callback functions\r\n    void *m_pUserData; // pointer to client side mesh data etc. (passed as the\r\n                       // first parameter with every interface call)\r\n};\r\n\r\n// these are both thread safe!\r\ntbool genTangSpaceDefault(\r\n    const SMikkTSpaceContext\r\n        *pContext); // Default (recommended) fAngularThreshold is 180 degrees\r\n                    // (which means threshold disabled)\r\ntbool genTangSpace(const SMikkTSpaceContext *pContext,\r\n                   const float fAngularThreshold);\r\n\r\n// To avoid visual errors (distortions/unwanted hard edges in lighting), when\r\n// using sampled normal maps, the normal map sampler must use the exact inverse\r\n// of the pixel shader transformation. The most efficient transformation we can\r\n// possibly do in the pixel shader is achieved by using, directly, the\r\n// \"unnormalized\" interpolated tangent, bitangent and vertex normal: vT, vB and\r\n// vN. pixel shader (fast transform out) vNout = normalize( vNt.x * vT + vNt.y *\r\n// vB + vNt.z * vN ); where vNt is the tangent space normal. The normal map\r\n// sampler must likewise use the interpolated and \"unnormalized\" tangent,\r\n// bitangent and vertex normal to be compliant with the pixel shader. sampler\r\n// does (exact inverse of pixel shader): float3 row0 = cross(vB, vN); float3\r\n// row1 = cross(vN, vT); float3 row2 = cross(vT, vB); float fSign = dot(vT,\r\n// row0)<0 ? -1 : 1; vNt = normalize( fSign * float3(dot(vNout,row0),\r\n// dot(vNout,row1), dot(vNout,row2)) ); where vNout is the sampled normal in\r\n// some chosen 3D space.\r\n//\r\n// Should you choose to reconstruct the bitangent in the pixel shader instead\r\n// of the vertex shader, as explained earlier, then be sure to do this in the\r\n// normal map sampler also. Finally, beware of quad triangulations. If the\r\n// normal map sampler doesn't use the same triangulation of quads as your\r\n// renderer then problems will occur since the interpolated tangent spaces will\r\n// differ eventhough the vertex level tangent spaces match. This can be solved\r\n// either by triangulating before sampling/exporting or by using the\r\n// order-independent choice of diagonal for splitting quads suggested earlier.\r\n// However, this must be used both by the sampler and your tools/rendering\r\n// pipeline.\r\n\r\n#ifdef __cplusplus\r\n}\r\n#endif\r\n\r\n#endif"
  },
  {
    "path": "src/milo.h",
    "content": "/*\r\n * Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All\r\n * rights reserved.\r\n *\r\n * Permission is hereby granted, free of charge, to any person obtaining a copy\r\n * of this software and associated documentation files (the \"Software\"), to deal\r\n * in the Software without restriction, including without limitation the rights\r\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n * copies of the Software, and to permit persons to whom the Software is\r\n * furnished to do so, subject to the following conditions:\r\n *\r\n * The above copyright notice and this permission notice shall be included in\r\n * all copies or substantial portions of the Software.\r\n *\r\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\n * THE SOFTWARE.\r\n */\r\n\r\n// This is a C++ header-only implementation of Grisu2 algorithm from the\r\n// publication: Loitsch, Florian. \"Printing floating-point numbers quickly and\r\n// accurately with integers.\" ACM Sigplan Notices 45.6 (2010): 233-243.\r\n\r\n#pragma once\r\n\r\n#include <cmath>\r\n#include <cstdint>\r\n#include <cstring>\r\n\r\n#if defined(_MSC_VER) && defined(_M_AMD64)\r\n#include <intrin.h>\r\n#pragma intrinsic(_BitScanReverse64)\r\n#pragma intrinsic(_umul128)\r\n#endif\r\n\r\n#include <cassert> // for ASSERT\r\n\r\nnamespace fmt {\r\nnamespace internal {\r\n#define UINT64_C2(h, l)                                                        \\\r\n    ((static_cast<std::uint64_t>(h) << 32) | static_cast<std::uint64_t>(l))\r\n\r\ninline const char *GetDigitsLut() {\r\n    static const char cDigitsLut[200] = {\r\n        '0', '0', '0', '1', '0', '2', '0', '3', '0', '4', '0', '5', '0', '6',\r\n        '0', '7', '0', '8', '0', '9', '1', '0', '1', '1', '1', '2', '1', '3',\r\n        '1', '4', '1', '5', '1', '6', '1', '7', '1', '8', '1', '9', '2', '0',\r\n        '2', '1', '2', '2', '2', '3', '2', '4', '2', '5', '2', '6', '2', '7',\r\n        '2', '8', '2', '9', '3', '0', '3', '1', '3', '2', '3', '3', '3', '4',\r\n        '3', '5', '3', '6', '3', '7', '3', '8', '3', '9', '4', '0', '4', '1',\r\n        '4', '2', '4', '3', '4', '4', '4', '5', '4', '6', '4', '7', '4', '8',\r\n        '4', '9', '5', '0', '5', '1', '5', '2', '5', '3', '5', '4', '5', '5',\r\n        '5', '6', '5', '7', '5', '8', '5', '9', '6', '0', '6', '1', '6', '2',\r\n        '6', '3', '6', '4', '6', '5', '6', '6', '6', '7', '6', '8', '6', '9',\r\n        '7', '0', '7', '1', '7', '2', '7', '3', '7', '4', '7', '5', '7', '6',\r\n        '7', '7', '7', '8', '7', '9', '8', '0', '8', '1', '8', '2', '8', '3',\r\n        '8', '4', '8', '5', '8', '6', '8', '7', '8', '8', '8', '9', '9', '0',\r\n        '9', '1', '9', '2', '9', '3', '9', '4', '9', '5', '9', '6', '9', '7',\r\n        '9', '8', '9', '9'};\r\n    return cDigitsLut;\r\n}\r\n\r\nstruct DiyFp {\r\n    DiyFp() : f(), e() {}\r\n\r\n    DiyFp(std::uint64_t fp, int exp) : f(fp), e(exp) {}\r\n\r\n    explicit DiyFp(double d) {\r\n        union {\r\n            double d;\r\n            std::uint64_t u64;\r\n        } u = {d};\r\n\r\n        int biased_e =\r\n            static_cast<int>((u.u64 & kDpExponentMask) >> kDpSignificandSize);\r\n        std::uint64_t significand = (u.u64 & kDpSignificandMask);\r\n        if (biased_e != 0) {\r\n            f = significand + kDpHiddenBit;\r\n            e = biased_e - kDpExponentBias;\r\n        } else {\r\n            f = significand;\r\n            e = kDpMinExponent + 1;\r\n        }\r\n    }\r\n\r\n    DiyFp operator-(const DiyFp &rhs) const { return DiyFp(f - rhs.f, e); }\r\n\r\n    DiyFp operator*(const DiyFp &rhs) const {\r\n#if defined(_MSC_VER) && defined(_M_AMD64)\r\n        std::uint64_t h;\r\n        std::uint64_t l = _umul128(f, rhs.f, &h);\r\n        if (l & (std::uint64_t(1) << 63)) // rounding\r\n            h++;\r\n        return DiyFp(h, e + rhs.e + 64);\r\n#elif (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6) ||               \\\r\n       __SIZEOF_INT128__ >= 16) &&                                             \\\r\n    defined(__x86_64__)\r\n        __extension__ typedef unsigned __int128 uint128;\r\n        uint128 p = static_cast<uint128>(f) * static_cast<uint128>(rhs.f);\r\n        std::uint64_t h = static_cast<std::uint64_t>(p >> 64);\r\n        std::uint64_t l = static_cast<std::uint64_t>(p);\r\n        if (l & (std::uint64_t(1) << 63)) // rounding\r\n            h++;\r\n        return DiyFp(h, e + rhs.e + 64);\r\n#else\r\n        const std::uint64_t M32 = 0xFFFFFFFF;\r\n        const std::uint64_t a = f >> 32;\r\n        const std::uint64_t b = f & M32;\r\n        const std::uint64_t c = rhs.f >> 32;\r\n        const std::uint64_t d = rhs.f & M32;\r\n        const std::uint64_t ac = a * c;\r\n        const std::uint64_t bc = b * c;\r\n        const std::uint64_t ad = a * d;\r\n        const std::uint64_t bd = b * d;\r\n        std::uint64_t tmp = (bd >> 32) + (ad & M32) + (bc & M32);\r\n        tmp += 1U << 31; /// mult_round\r\n        return DiyFp(ac + (ad >> 32) + (bc >> 32) + (tmp >> 32),\r\n                     e + rhs.e + 64);\r\n#endif\r\n    }\r\n\r\n    DiyFp Normalize() const {\r\n#if defined(_MSC_VER) && defined(_M_AMD64)\r\n        unsigned long index;\r\n        _BitScanReverse64(&index, f);\r\n        return DiyFp(f << (63 - index), e - (63 - index));\r\n#else\r\n        DiyFp res = *this;\r\n        while (!(res.f & (static_cast<std::uint64_t>(1) << 63))) {\r\n            res.f <<= 1;\r\n            res.e--;\r\n        }\r\n        return res;\r\n#endif\r\n    }\r\n\r\n    DiyFp NormalizeBoundary() const {\r\n        DiyFp res = *this;\r\n        while (!(res.f & (kDpHiddenBit << 1))) {\r\n            res.f <<= 1;\r\n            res.e--;\r\n        }\r\n        res.f <<= (kDiySignificandSize - kDpSignificandSize - 2);\r\n        res.e = res.e - (kDiySignificandSize - kDpSignificandSize - 2);\r\n        return res;\r\n    }\r\n\r\n    void NormalizedBoundaries(DiyFp *minus, DiyFp *plus) const {\r\n        DiyFp pl = DiyFp((f << 1) + 1, e - 1).NormalizeBoundary();\r\n        DiyFp mi = (f == kDpHiddenBit) ? DiyFp((f << 2) - 1, e - 2)\r\n                                       : DiyFp((f << 1) - 1, e - 1);\r\n        mi.f <<= mi.e - pl.e;\r\n        mi.e = pl.e;\r\n        *plus = pl;\r\n        *minus = mi;\r\n    }\r\n\r\n    double ToDouble() const {\r\n        union {\r\n            double d;\r\n            std::uint64_t u64;\r\n        } u;\r\n        const std::uint64_t be =\r\n            (e == kDpDenormalExponent && (f & kDpHiddenBit) == 0)\r\n                ? 0\r\n                : static_cast<std::uint64_t>(e + kDpExponentBias);\r\n        u.u64 = (f & kDpSignificandMask) | (be << kDpSignificandSize);\r\n        return u.d;\r\n    }\r\n\r\n    static const int kDiySignificandSize = 64;\r\n    static const int kDpSignificandSize = 52;\r\n    static const int kDpExponentBias = 0x3FF + kDpSignificandSize;\r\n    static const int kDpMaxExponent = 0x7FF - kDpExponentBias;\r\n    static const int kDpMinExponent = -kDpExponentBias;\r\n    static const int kDpDenormalExponent = -kDpExponentBias + 1;\r\n    static const std::uint64_t kDpExponentMask =\r\n        UINT64_C2(0x7FF00000, 0x00000000);\r\n    static const std::uint64_t kDpSignificandMask =\r\n        UINT64_C2(0x000FFFFF, 0xFFFFFFFF);\r\n    static const std::uint64_t kDpHiddenBit = UINT64_C2(0x00100000, 0x00000000);\r\n\r\n    std::uint64_t f;\r\n    int e;\r\n};\r\n\r\ninline DiyFp GetCachedPowerByIndex(std::size_t index) {\r\n    // 10^-348, 10^-340, ..., 10^340\r\n    static const std::uint64_t kCachedPowers_F[] = {\r\n        UINT64_C2(0xfa8fd5a0, 0x081c0288), UINT64_C2(0xbaaee17f, 0xa23ebf76),\r\n        UINT64_C2(0x8b16fb20, 0x3055ac76), UINT64_C2(0xcf42894a, 0x5dce35ea),\r\n        UINT64_C2(0x9a6bb0aa, 0x55653b2d), UINT64_C2(0xe61acf03, 0x3d1a45df),\r\n        UINT64_C2(0xab70fe17, 0xc79ac6ca), UINT64_C2(0xff77b1fc, 0xbebcdc4f),\r\n        UINT64_C2(0xbe5691ef, 0x416bd60c), UINT64_C2(0x8dd01fad, 0x907ffc3c),\r\n        UINT64_C2(0xd3515c28, 0x31559a83), UINT64_C2(0x9d71ac8f, 0xada6c9b5),\r\n        UINT64_C2(0xea9c2277, 0x23ee8bcb), UINT64_C2(0xaecc4991, 0x4078536d),\r\n        UINT64_C2(0x823c1279, 0x5db6ce57), UINT64_C2(0xc2109436, 0x4dfb5637),\r\n        UINT64_C2(0x9096ea6f, 0x3848984f), UINT64_C2(0xd77485cb, 0x25823ac7),\r\n        UINT64_C2(0xa086cfcd, 0x97bf97f4), UINT64_C2(0xef340a98, 0x172aace5),\r\n        UINT64_C2(0xb23867fb, 0x2a35b28e), UINT64_C2(0x84c8d4df, 0xd2c63f3b),\r\n        UINT64_C2(0xc5dd4427, 0x1ad3cdba), UINT64_C2(0x936b9fce, 0xbb25c996),\r\n        UINT64_C2(0xdbac6c24, 0x7d62a584), UINT64_C2(0xa3ab6658, 0x0d5fdaf6),\r\n        UINT64_C2(0xf3e2f893, 0xdec3f126), UINT64_C2(0xb5b5ada8, 0xaaff80b8),\r\n        UINT64_C2(0x87625f05, 0x6c7c4a8b), UINT64_C2(0xc9bcff60, 0x34c13053),\r\n        UINT64_C2(0x964e858c, 0x91ba2655), UINT64_C2(0xdff97724, 0x70297ebd),\r\n        UINT64_C2(0xa6dfbd9f, 0xb8e5b88f), UINT64_C2(0xf8a95fcf, 0x88747d94),\r\n        UINT64_C2(0xb9447093, 0x8fa89bcf), UINT64_C2(0x8a08f0f8, 0xbf0f156b),\r\n        UINT64_C2(0xcdb02555, 0x653131b6), UINT64_C2(0x993fe2c6, 0xd07b7fac),\r\n        UINT64_C2(0xe45c10c4, 0x2a2b3b06), UINT64_C2(0xaa242499, 0x697392d3),\r\n        UINT64_C2(0xfd87b5f2, 0x8300ca0e), UINT64_C2(0xbce50864, 0x92111aeb),\r\n        UINT64_C2(0x8cbccc09, 0x6f5088cc), UINT64_C2(0xd1b71758, 0xe219652c),\r\n        UINT64_C2(0x9c400000, 0x00000000), UINT64_C2(0xe8d4a510, 0x00000000),\r\n        UINT64_C2(0xad78ebc5, 0xac620000), UINT64_C2(0x813f3978, 0xf8940984),\r\n        UINT64_C2(0xc097ce7b, 0xc90715b3), UINT64_C2(0x8f7e32ce, 0x7bea5c70),\r\n        UINT64_C2(0xd5d238a4, 0xabe98068), UINT64_C2(0x9f4f2726, 0x179a2245),\r\n        UINT64_C2(0xed63a231, 0xd4c4fb27), UINT64_C2(0xb0de6538, 0x8cc8ada8),\r\n        UINT64_C2(0x83c7088e, 0x1aab65db), UINT64_C2(0xc45d1df9, 0x42711d9a),\r\n        UINT64_C2(0x924d692c, 0xa61be758), UINT64_C2(0xda01ee64, 0x1a708dea),\r\n        UINT64_C2(0xa26da399, 0x9aef774a), UINT64_C2(0xf209787b, 0xb47d6b85),\r\n        UINT64_C2(0xb454e4a1, 0x79dd1877), UINT64_C2(0x865b8692, 0x5b9bc5c2),\r\n        UINT64_C2(0xc83553c5, 0xc8965d3d), UINT64_C2(0x952ab45c, 0xfa97a0b3),\r\n        UINT64_C2(0xde469fbd, 0x99a05fe3), UINT64_C2(0xa59bc234, 0xdb398c25),\r\n        UINT64_C2(0xf6c69a72, 0xa3989f5c), UINT64_C2(0xb7dcbf53, 0x54e9bece),\r\n        UINT64_C2(0x88fcf317, 0xf22241e2), UINT64_C2(0xcc20ce9b, 0xd35c78a5),\r\n        UINT64_C2(0x98165af3, 0x7b2153df), UINT64_C2(0xe2a0b5dc, 0x971f303a),\r\n        UINT64_C2(0xa8d9d153, 0x5ce3b396), UINT64_C2(0xfb9b7cd9, 0xa4a7443c),\r\n        UINT64_C2(0xbb764c4c, 0xa7a44410), UINT64_C2(0x8bab8eef, 0xb6409c1a),\r\n        UINT64_C2(0xd01fef10, 0xa657842c), UINT64_C2(0x9b10a4e5, 0xe9913129),\r\n        UINT64_C2(0xe7109bfb, 0xa19c0c9d), UINT64_C2(0xac2820d9, 0x623bf429),\r\n        UINT64_C2(0x80444b5e, 0x7aa7cf85), UINT64_C2(0xbf21e440, 0x03acdd2d),\r\n        UINT64_C2(0x8e679c2f, 0x5e44ff8f), UINT64_C2(0xd433179d, 0x9c8cb841),\r\n        UINT64_C2(0x9e19db92, 0xb4e31ba9), UINT64_C2(0xeb96bf6e, 0xbadf77d9),\r\n        UINT64_C2(0xaf87023b, 0x9bf0ee6b)};\r\n    static const int16_t kCachedPowers_E[] = {\r\n        -1220, -1193, -1166, -1140, -1113, -1087, -1060, -1034, -1007, -980,\r\n        -954,  -927,  -901,  -874,  -847,  -821,  -794,  -768,  -741,  -715,\r\n        -688,  -661,  -635,  -608,  -582,  -555,  -529,  -502,  -475,  -449,\r\n        -422,  -396,  -369,  -343,  -316,  -289,  -263,  -236,  -210,  -183,\r\n        -157,  -130,  -103,  -77,   -50,   -24,   3,     30,    56,    83,\r\n        109,   136,   162,   189,   216,   242,   269,   295,   322,   348,\r\n        375,   402,   428,   455,   481,   508,   534,   561,   588,   614,\r\n        641,   667,   694,   720,   747,   774,   800,   827,   853,   880,\r\n        907,   933,   960,   986,   1013,  1039,  1066};\r\n    return DiyFp(kCachedPowers_F[index], kCachedPowers_E[index]);\r\n}\r\n\r\ninline DiyFp GetCachedPower(int e, int *K) {\r\n    // int k = static_cast<int>(ceil((-61 - e) * 0.30102999566398114)) + 374;\r\n    double dk = (-61 - e) * 0.30102999566398114 +\r\n                347; // dk must be positive, so can do ceiling in positive\r\n    int k = static_cast<int>(dk);\r\n    if (dk - k > 0.0)\r\n        k++;\r\n\r\n    unsigned index = static_cast<unsigned>((k >> 3) + 1);\r\n    *K = -(-348 + static_cast<int>(\r\n                      index << 3)); // decimal exponent no need lookup table\r\n\r\n    return GetCachedPowerByIndex(index);\r\n}\r\n\r\ninline DiyFp GetCachedPower10(int exp, int *outExp) {\r\n    unsigned index = (static_cast<unsigned>(exp) + 348u) / 8u;\r\n    *outExp = -348 + static_cast<int>(index) * 8;\r\n    return GetCachedPowerByIndex(index);\r\n}\r\n\r\ninline void GrisuRound(char *buffer, int len, std::uint64_t delta,\r\n                       std::uint64_t rest, std::uint64_t ten_kappa,\r\n                       std::uint64_t wp_w) {\r\n    while (rest < wp_w && delta - rest >= ten_kappa &&\r\n           (rest + ten_kappa < wp_w || /// closer\r\n            wp_w - rest > rest + ten_kappa - wp_w)) {\r\n        buffer[len - 1]--;\r\n        rest += ten_kappa;\r\n    }\r\n}\r\n\r\ninline unsigned CountDecimalDigit32(std::uint32_t n) {\r\n    // Simple pure C++ implementation was faster than __builtin_clz version in\r\n    // this situation.\r\n    if (n < 10)\r\n        return 1;\r\n    if (n < 100)\r\n        return 2;\r\n    if (n < 1000)\r\n        return 3;\r\n    if (n < 10000)\r\n        return 4;\r\n    if (n < 100000)\r\n        return 5;\r\n    if (n < 1000000)\r\n        return 6;\r\n    if (n < 10000000)\r\n        return 7;\r\n    if (n < 100000000)\r\n        return 8;\r\n    // Will not reach 10 digits in DigitGen()\r\n    // if (n < 1000000000) return 9;\r\n    // return 10;\r\n    return 9;\r\n}\r\n\r\ninline void DigitGen(const DiyFp &W, const DiyFp &Mp, std::uint64_t delta,\r\n                     char *buffer, int *len, int *K) {\r\n    static const std::uint32_t kPow10[] = {\r\n        1,      10,      100,      1000,      10000,\r\n        100000, 1000000, 10000000, 100000000, 1000000000};\r\n    const DiyFp one(std::uint64_t(1) << -Mp.e, Mp.e);\r\n    const DiyFp wp_w = Mp - W;\r\n    std::uint32_t p1 = static_cast<std::uint32_t>(Mp.f >> -one.e);\r\n    std::uint64_t p2 = Mp.f & (one.f - 1);\r\n    unsigned kappa = CountDecimalDigit32(p1); // kappa in [0, 9]\r\n    *len = 0;\r\n\r\n    while (kappa > 0) {\r\n        std::uint32_t d = 0;\r\n        switch (kappa) {\r\n        case 9:\r\n            d = p1 / 100000000;\r\n            p1 %= 100000000;\r\n            break;\r\n        case 8:\r\n            d = p1 / 10000000;\r\n            p1 %= 10000000;\r\n            break;\r\n        case 7:\r\n            d = p1 / 1000000;\r\n            p1 %= 1000000;\r\n            break;\r\n        case 6:\r\n            d = p1 / 100000;\r\n            p1 %= 100000;\r\n            break;\r\n        case 5:\r\n            d = p1 / 10000;\r\n            p1 %= 10000;\r\n            break;\r\n        case 4:\r\n            d = p1 / 1000;\r\n            p1 %= 1000;\r\n            break;\r\n        case 3:\r\n            d = p1 / 100;\r\n            p1 %= 100;\r\n            break;\r\n        case 2:\r\n            d = p1 / 10;\r\n            p1 %= 10;\r\n            break;\r\n        case 1:\r\n            d = p1;\r\n            p1 = 0;\r\n            break;\r\n        default:;\r\n        }\r\n        if (d || *len)\r\n            buffer[(*len)++] = static_cast<char>('0' + static_cast<char>(d));\r\n        kappa--;\r\n        std::uint64_t tmp = (static_cast<std::uint64_t>(p1) << -one.e) + p2;\r\n        if (tmp <= delta) {\r\n            *K += kappa;\r\n            GrisuRound(buffer, *len, delta, tmp,\r\n                       static_cast<std::uint64_t>(kPow10[kappa]) << -one.e,\r\n                       wp_w.f);\r\n            return;\r\n        }\r\n    }\r\n\r\n    // kappa = 0\r\n    for (;;) {\r\n        p2 *= 10;\r\n        delta *= 10;\r\n        char d = static_cast<char>(p2 >> -one.e);\r\n        if (d || *len)\r\n            buffer[(*len)++] = static_cast<char>('0' + d);\r\n        p2 &= one.f - 1;\r\n        kappa--;\r\n        if (p2 < delta) {\r\n            *K += kappa;\r\n            GrisuRound(buffer, *len, delta, p2, one.f,\r\n                       wp_w.f * kPow10[-static_cast<int>(kappa)]);\r\n            return;\r\n        }\r\n    }\r\n}\r\n\r\ninline void Grisu2(double value, char *buffer, int *length, int *K) {\r\n    const DiyFp v(value);\r\n    DiyFp w_m, w_p;\r\n    v.NormalizedBoundaries(&w_m, &w_p);\r\n\r\n    const DiyFp c_mk = GetCachedPower(w_p.e, K);\r\n    const DiyFp W = v.Normalize() * c_mk;\r\n    DiyFp Wp = w_p * c_mk;\r\n    DiyFp Wm = w_m * c_mk;\r\n    Wm.f++;\r\n    Wp.f--;\r\n    DigitGen(W, Wp, Wp.f - Wm.f, buffer, length, K);\r\n}\r\n\r\ninline char *WriteExponent(int K, char *buffer) {\r\n    if (K < 0) {\r\n        *buffer++ = '-';\r\n        K = -K;\r\n    }\r\n\r\n    if (K >= 100) {\r\n        *buffer++ = static_cast<char>('0' + static_cast<char>(K / 100));\r\n        K %= 100;\r\n        const char *d = GetDigitsLut() + K * 2;\r\n        *buffer++ = d[0];\r\n        *buffer++ = d[1];\r\n    } else if (K >= 10) {\r\n        const char *d = GetDigitsLut() + K * 2;\r\n        *buffer++ = d[0];\r\n        *buffer++ = d[1];\r\n    } else\r\n        *buffer++ = static_cast<char>('0' + static_cast<char>(K));\r\n\r\n    return buffer;\r\n}\r\n\r\ninline char *Prettify(char *buffer, int length, int k, int maxDecimalPlaces) {\r\n    const int kk = length + k; // 10^(kk-1) <= v < 10^kk\r\n\r\n    if (0 <= k && kk <= 21) {\r\n        // 1234e7 -> 12340000000\r\n        for (int i = length; i < kk; i++)\r\n            buffer[i] = '0';\r\n        buffer[kk] = '.';\r\n        buffer[kk + 1] = '0';\r\n        return &buffer[kk + 2];\r\n    } else if (0 < kk && kk <= 21) {\r\n        // 1234e-2 -> 12.34\r\n        std::memmove(&buffer[kk + 1], &buffer[kk],\r\n                     static_cast<std::size_t>(length - kk));\r\n        buffer[kk] = '.';\r\n        if (0 > k + maxDecimalPlaces) {\r\n            // When maxDecimalPlaces = 2, 1.2345 -> 1.23, 1.102 -> 1.1\r\n            // Remove extra trailing zeros (at least one) after truncation.\r\n            for (int i = kk + maxDecimalPlaces; i > kk + 1; i--)\r\n                if (buffer[i] != '0')\r\n                    return &buffer[i + 1];\r\n            return &buffer[kk + 2]; // Reserve one zero\r\n        } else\r\n            return &buffer[length + 1];\r\n    } else if (-6 < kk && kk <= 0) {\r\n        // 1234e-6 -> 0.001234\r\n        const int offset = 2 - kk;\r\n        std::memmove(&buffer[offset], &buffer[0],\r\n                     static_cast<std::size_t>(length));\r\n        buffer[0] = '0';\r\n        buffer[1] = '.';\r\n        for (int i = 2; i < offset; i++)\r\n            buffer[i] = '0';\r\n        if (length + offset > maxDecimalPlaces) {\r\n            // When maxDecimalPlaces = 2, 0.123 -> 0.12, 0.102 -> 0.1\r\n            // Remove extra trailing zeros (at least one) after truncation.\r\n            for (int i = maxDecimalPlaces + 1; i > 2; i--)\r\n                if (buffer[i] != '0')\r\n                    return &buffer[i + 1];\r\n            return &buffer[3]; // Reserve one zero\r\n        } else\r\n            return &buffer[length + offset];\r\n    } else if (kk < -maxDecimalPlaces) {\r\n        // Truncate to zero\r\n        buffer[0] = '0';\r\n        buffer[1] = '.';\r\n        buffer[2] = '0';\r\n        return &buffer[3];\r\n    } else if (length == 1) {\r\n        // 1e30\r\n        buffer[1] = 'e';\r\n        return WriteExponent(kk - 1, &buffer[2]);\r\n    } else {\r\n        // 1234e30 -> 1.234e33\r\n        std::memmove(&buffer[2], &buffer[1],\r\n                     static_cast<std::size_t>(length - 1));\r\n        buffer[1] = '.';\r\n        buffer[length + 1] = 'e';\r\n        return WriteExponent(kk - 1, &buffer[0 + length + 2]);\r\n    }\r\n}\r\n} // namespace internal\r\n\r\n/** Fast double formatter. */\r\n// Buffer should be large enough to hold 23 characters,\r\n// a sign and a null character.\r\nenum { BUFFER_SIZE = 25 };\r\n\r\n// Formats value using Grisu2 algorithm.\r\nchar *format_double(char *buffer, double value, int maxDecimalPlaces) {\r\n    assert(maxDecimalPlaces >= 1);\r\n\r\n    if (std::isnan(value)) {\r\n        buffer[0] = 'n';\r\n        buffer[1] = 'a';\r\n        buffer[2] = 'n';\r\n        return buffer + 3;\r\n    }\r\n\r\n    if (std::isinf(value)) {\r\n        buffer[0] = 'i';\r\n        buffer[1] = 'n';\r\n        buffer[2] = 'f';\r\n        return buffer + 3;\r\n    }\r\n\r\n    if (value == 0) {\r\n        buffer[0] = '0';\r\n        return buffer + 1;\r\n    }\r\n\r\n    char *ptr = buffer;\r\n    if (value < 0) {\r\n        *ptr++ = '-';\r\n        value = -value;\r\n    }\r\n\r\n    int length, K;\r\n    internal::Grisu2(value, ptr, &length, &K);\r\n    ptr = internal::Prettify(ptr, length, K, maxDecimalPlaces);\r\n    return ptr;\r\n}\r\n} // namespace fmt"
  },
  {
    "path": "src/picosha2.h",
    "content": "/*\r\nThe MIT License (MIT)\r\n\r\nCopyright (C) 2017 okdshin\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n*/\r\n#ifndef PICOSHA2_H\r\n#define PICOSHA2_H\r\n// picosha2:20140213\r\n\r\n#ifndef PICOSHA2_BUFFER_SIZE_FOR_INPUT_ITERATOR\r\n#define PICOSHA2_BUFFER_SIZE_FOR_INPUT_ITERATOR                                \\\r\n    1048576 //=1024*1024: default is 1MB memory\r\n#endif\r\n\r\n#include <algorithm>\r\n#include <cassert>\r\n#include <fstream>\r\n#include <iterator>\r\n#include <sstream>\r\n#include <vector>\r\nnamespace picosha2 {\r\ntypedef unsigned long word_t;\r\ntypedef unsigned char byte_t;\r\n\r\nstatic const size_t k_digest_size = 32;\r\n\r\nnamespace detail {\r\ninline byte_t mask_8bit(byte_t x) { return x & 0xff; }\r\n\r\ninline word_t mask_32bit(word_t x) { return x & 0xffffffff; }\r\n\r\nconst word_t add_constant[64] = {\r\n    0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1,\r\n    0x923f82a4, 0xab1c5ed5, 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3,\r\n    0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174, 0xe49b69c1, 0xefbe4786,\r\n    0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,\r\n    0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7, 0xc6e00bf3, 0xd5a79147,\r\n    0x06ca6351, 0x14292967, 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13,\r\n    0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85, 0xa2bfe8a1, 0xa81a664b,\r\n    0xc24b8b70, 0xc76c51a3, 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,\r\n    0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a,\r\n    0x5b9cca4f, 0x682e6ff3, 0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208,\r\n    0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2};\r\n\r\nconst word_t initial_message_digest[8] = {0x6a09e667, 0xbb67ae85, 0x3c6ef372,\r\n                                          0xa54ff53a, 0x510e527f, 0x9b05688c,\r\n                                          0x1f83d9ab, 0x5be0cd19};\r\n\r\ninline word_t ch(word_t x, word_t y, word_t z) { return (x & y) ^ ((~x) & z); }\r\n\r\ninline word_t maj(word_t x, word_t y, word_t z) {\r\n    return (x & y) ^ (x & z) ^ (y & z);\r\n}\r\n\r\ninline word_t rotr(word_t x, std::size_t n) {\r\n    assert(n < 32);\r\n    return mask_32bit((x >> n) | (x << (32 - n)));\r\n}\r\n\r\ninline word_t bsig0(word_t x) { return rotr(x, 2) ^ rotr(x, 13) ^ rotr(x, 22); }\r\n\r\ninline word_t bsig1(word_t x) { return rotr(x, 6) ^ rotr(x, 11) ^ rotr(x, 25); }\r\n\r\ninline word_t shr(word_t x, std::size_t n) {\r\n    assert(n < 32);\r\n    return x >> n;\r\n}\r\n\r\ninline word_t ssig0(word_t x) { return rotr(x, 7) ^ rotr(x, 18) ^ shr(x, 3); }\r\n\r\ninline word_t ssig1(word_t x) { return rotr(x, 17) ^ rotr(x, 19) ^ shr(x, 10); }\r\n\r\ntemplate <typename RaIter1, typename RaIter2>\r\nvoid hash256_block(RaIter1 message_digest, RaIter2 first, RaIter2 last) {\r\n    assert(first + 64 == last);\r\n    static_cast<void>(last); // for avoiding unused-variable warning\r\n    word_t w[64];\r\n    std::fill(w, w + 64, 0);\r\n    for (std::size_t i = 0; i < 16; ++i) {\r\n        w[i] = (static_cast<word_t>(mask_8bit(*(first + i * 4))) << 24) |\r\n               (static_cast<word_t>(mask_8bit(*(first + i * 4 + 1))) << 16) |\r\n               (static_cast<word_t>(mask_8bit(*(first + i * 4 + 2))) << 8) |\r\n               (static_cast<word_t>(mask_8bit(*(first + i * 4 + 3))));\r\n    }\r\n    for (std::size_t i = 16; i < 64; ++i) {\r\n        w[i] = mask_32bit(ssig1(w[i - 2]) + w[i - 7] + ssig0(w[i - 15]) +\r\n                          w[i - 16]);\r\n    }\r\n\r\n    word_t a = *message_digest;\r\n    word_t b = *(message_digest + 1);\r\n    word_t c = *(message_digest + 2);\r\n    word_t d = *(message_digest + 3);\r\n    word_t e = *(message_digest + 4);\r\n    word_t f = *(message_digest + 5);\r\n    word_t g = *(message_digest + 6);\r\n    word_t h = *(message_digest + 7);\r\n\r\n    for (std::size_t i = 0; i < 64; ++i) {\r\n        word_t temp1 = h + bsig1(e) + ch(e, f, g) + add_constant[i] + w[i];\r\n        word_t temp2 = bsig0(a) + maj(a, b, c);\r\n        h = g;\r\n        g = f;\r\n        f = e;\r\n        e = mask_32bit(d + temp1);\r\n        d = c;\r\n        c = b;\r\n        b = a;\r\n        a = mask_32bit(temp1 + temp2);\r\n    }\r\n    *message_digest += a;\r\n    *(message_digest + 1) += b;\r\n    *(message_digest + 2) += c;\r\n    *(message_digest + 3) += d;\r\n    *(message_digest + 4) += e;\r\n    *(message_digest + 5) += f;\r\n    *(message_digest + 6) += g;\r\n    *(message_digest + 7) += h;\r\n    for (std::size_t i = 0; i < 8; ++i) {\r\n        *(message_digest + i) = mask_32bit(*(message_digest + i));\r\n    }\r\n}\r\n\r\n} // namespace detail\r\n\r\ntemplate <typename InIter>\r\nvoid output_hex(InIter first, InIter last, std::ostream &os) {\r\n    os.setf(std::ios::hex, std::ios::basefield);\r\n    while (first != last) {\r\n        os.width(2);\r\n        os.fill('0');\r\n        os << static_cast<unsigned int>(*first);\r\n        ++first;\r\n    }\r\n    os.setf(std::ios::dec, std::ios::basefield);\r\n}\r\n\r\ntemplate <typename InIter>\r\nvoid bytes_to_hex_string(InIter first, InIter last, std::string &hex_str) {\r\n    std::ostringstream oss;\r\n    output_hex(first, last, oss);\r\n    hex_str.assign(oss.str());\r\n}\r\n\r\ntemplate <typename InContainer>\r\nvoid bytes_to_hex_string(const InContainer &bytes, std::string &hex_str) {\r\n    bytes_to_hex_string(bytes.begin(), bytes.end(), hex_str);\r\n}\r\n\r\ntemplate <typename InIter>\r\nstd::string bytes_to_hex_string(InIter first, InIter last) {\r\n    std::string hex_str;\r\n    bytes_to_hex_string(first, last, hex_str);\r\n    return hex_str;\r\n}\r\n\r\ntemplate <typename InContainer>\r\nstd::string bytes_to_hex_string(const InContainer &bytes) {\r\n    std::string hex_str;\r\n    bytes_to_hex_string(bytes, hex_str);\r\n    return hex_str;\r\n}\r\n\r\nclass hash256_one_by_one {\r\n  public:\r\n    hash256_one_by_one() { init(); }\r\n\r\n    void init() {\r\n        buffer_.clear();\r\n        std::fill(data_length_digits_, data_length_digits_ + 4, 0);\r\n        std::copy(detail::initial_message_digest,\r\n                  detail::initial_message_digest + 8, h_);\r\n    }\r\n\r\n    template <typename RaIter> void process(RaIter first, RaIter last) {\r\n        add_to_data_length(static_cast<word_t>(std::distance(first, last)));\r\n        std::copy(first, last, std::back_inserter(buffer_));\r\n        std::size_t i = 0;\r\n        for (; i + 64 <= buffer_.size(); i += 64) {\r\n            detail::hash256_block(h_, buffer_.begin() + i,\r\n                                  buffer_.begin() + i + 64);\r\n        }\r\n        buffer_.erase(buffer_.begin(), buffer_.begin() + i);\r\n    }\r\n\r\n    void finish() {\r\n        byte_t temp[64];\r\n        std::fill(temp, temp + 64, 0);\r\n        std::size_t remains = buffer_.size();\r\n        std::copy(buffer_.begin(), buffer_.end(), temp);\r\n        temp[remains] = 0x80;\r\n\r\n        if (remains > 55) {\r\n            std::fill(temp + remains + 1, temp + 64, 0);\r\n            detail::hash256_block(h_, temp, temp + 64);\r\n            std::fill(temp, temp + 64 - 4, 0);\r\n        } else {\r\n            std::fill(temp + remains + 1, temp + 64 - 4, 0);\r\n        }\r\n\r\n        write_data_bit_length(&(temp[56]));\r\n        detail::hash256_block(h_, temp, temp + 64);\r\n    }\r\n\r\n    template <typename OutIter>\r\n    void get_hash_bytes(OutIter first, OutIter last) const {\r\n        for (const word_t *iter = h_; iter != h_ + 8; ++iter) {\r\n            for (std::size_t i = 0; i < 4 && first != last; ++i) {\r\n                *(first++) = detail::mask_8bit(\r\n                    static_cast<byte_t>((*iter >> (24 - 8 * i))));\r\n            }\r\n        }\r\n    }\r\n\r\n  private:\r\n    void add_to_data_length(word_t n) {\r\n        word_t carry = 0;\r\n        data_length_digits_[0] += n;\r\n        for (std::size_t i = 0; i < 4; ++i) {\r\n            data_length_digits_[i] += carry;\r\n            if (data_length_digits_[i] >= 65536u) {\r\n                carry = data_length_digits_[i] >> 16;\r\n                data_length_digits_[i] &= 65535u;\r\n            } else {\r\n                break;\r\n            }\r\n        }\r\n    }\r\n    void write_data_bit_length(byte_t *begin) {\r\n        word_t data_bit_length_digits[4];\r\n        std::copy(data_length_digits_, data_length_digits_ + 4,\r\n                  data_bit_length_digits);\r\n\r\n        // convert byte length to bit length (multiply 8 or shift 3 times left)\r\n        word_t carry = 0;\r\n        for (std::size_t i = 0; i < 4; ++i) {\r\n            word_t before_val = data_bit_length_digits[i];\r\n            data_bit_length_digits[i] <<= 3;\r\n            data_bit_length_digits[i] |= carry;\r\n            data_bit_length_digits[i] &= 65535u;\r\n            carry = (before_val >> (16 - 3)) & 65535u;\r\n        }\r\n\r\n        // write data_bit_length\r\n        for (int i = 3; i >= 0; --i) {\r\n            (*begin++) = static_cast<byte_t>(data_bit_length_digits[i] >> 8);\r\n            (*begin++) = static_cast<byte_t>(data_bit_length_digits[i]);\r\n        }\r\n    }\r\n    std::vector<byte_t> buffer_;\r\n    word_t data_length_digits_[4]; // as 64bit integer (16bit x 4 integer)\r\n    word_t h_[8];\r\n};\r\n\r\ninline void get_hash_hex_string(const hash256_one_by_one &hasher,\r\n                                std::string &hex_str) {\r\n    byte_t hash[k_digest_size];\r\n    hasher.get_hash_bytes(hash, hash + k_digest_size);\r\n    return bytes_to_hex_string(hash, hash + k_digest_size, hex_str);\r\n}\r\n\r\ninline std::string get_hash_hex_string(const hash256_one_by_one &hasher) {\r\n    std::string hex_str;\r\n    get_hash_hex_string(hasher, hex_str);\r\n    return hex_str;\r\n}\r\n\r\nnamespace impl {\r\ntemplate <typename RaIter, typename OutIter>\r\nvoid hash256_impl(RaIter first, RaIter last, OutIter first2, OutIter last2, int,\r\n                  std::random_access_iterator_tag) {\r\n    hash256_one_by_one hasher;\r\n    // hasher.init();\r\n    hasher.process(first, last);\r\n    hasher.finish();\r\n    hasher.get_hash_bytes(first2, last2);\r\n}\r\n\r\ntemplate <typename InputIter, typename OutIter>\r\nvoid hash256_impl(InputIter first, InputIter last, OutIter first2,\r\n                  OutIter last2, int buffer_size, std::input_iterator_tag) {\r\n    std::vector<byte_t> buffer(buffer_size);\r\n    hash256_one_by_one hasher;\r\n    // hasher.init();\r\n    while (first != last) {\r\n        int size = buffer_size;\r\n        for (int i = 0; i != buffer_size; ++i, ++first) {\r\n            if (first == last) {\r\n                size = i;\r\n                break;\r\n            }\r\n            buffer[i] = *first;\r\n        }\r\n        hasher.process(buffer.begin(), buffer.begin() + size);\r\n    }\r\n    hasher.finish();\r\n    hasher.get_hash_bytes(first2, last2);\r\n}\r\n} // namespace impl\r\n\r\ntemplate <typename InIter, typename OutIter>\r\nvoid hash256(InIter first, InIter last, OutIter first2, OutIter last2,\r\n             int buffer_size = PICOSHA2_BUFFER_SIZE_FOR_INPUT_ITERATOR) {\r\n    picosha2::impl::hash256_impl(\r\n        first, last, first2, last2, buffer_size,\r\n        typename std::iterator_traits<InIter>::iterator_category());\r\n}\r\n\r\ntemplate <typename InIter, typename OutContainer>\r\nvoid hash256(InIter first, InIter last, OutContainer &dst) {\r\n    hash256(first, last, dst.begin(), dst.end());\r\n}\r\n\r\ntemplate <typename InContainer, typename OutIter>\r\nvoid hash256(const InContainer &src, OutIter first, OutIter last) {\r\n    hash256(src.begin(), src.end(), first, last);\r\n}\r\n\r\ntemplate <typename InContainer, typename OutContainer>\r\nvoid hash256(const InContainer &src, OutContainer &dst) {\r\n    hash256(src.begin(), src.end(), dst.begin(), dst.end());\r\n}\r\n\r\ntemplate <typename InIter>\r\nvoid hash256_hex_string(InIter first, InIter last, std::string &hex_str) {\r\n    byte_t hashed[k_digest_size];\r\n    hash256(first, last, hashed, hashed + k_digest_size);\r\n    std::ostringstream oss;\r\n    output_hex(hashed, hashed + k_digest_size, oss);\r\n    hex_str.assign(oss.str());\r\n}\r\n\r\ntemplate <typename InIter>\r\nstd::string hash256_hex_string(InIter first, InIter last) {\r\n    std::string hex_str;\r\n    hash256_hex_string(first, last, hex_str);\r\n    return hex_str;\r\n}\r\n\r\ninline void hash256_hex_string(const std::string &src, std::string &hex_str) {\r\n    hash256_hex_string(src.begin(), src.end(), hex_str);\r\n}\r\n\r\ntemplate <typename InContainer>\r\nvoid hash256_hex_string(const InContainer &src, std::string &hex_str) {\r\n    hash256_hex_string(src.begin(), src.end(), hex_str);\r\n}\r\n\r\ntemplate <typename InContainer>\r\nstd::string hash256_hex_string(const InContainer &src) {\r\n    return hash256_hex_string(src.begin(), src.end());\r\n}\r\ntemplate <typename OutIter>\r\nvoid hash256(std::ifstream &f, OutIter first, OutIter last) {\r\n    hash256(std::istreambuf_iterator<char>(f), std::istreambuf_iterator<char>(),\r\n            first, last);\r\n}\r\n} // namespace picosha2\r\n#endif // PICOSHA2_H"
  },
  {
    "path": "src/plugin.cpp",
    "content": "#include \"externals.h\"\n\n#include \"Arguments.h\"\n#include \"Exporter.h\"\n#include \"OutputStreamsPatch.h\"\n#include \"version.h\"\n#include <maya/MFnPlugin.h>\n\n#if _DEBUG\nstatic OutputStreamsPatch<char> patch;\n#endif\n\nMStatus initializePlugin(MObject obj) {\n    MStatus status;\n    MFnPlugin plugin(obj, \"IIM Maya to glTF 2.0 exporter\", version, \"Any\");\n    status = plugin.registerCommand(\"maya2glTF\", Exporter::createInstance,\n                                    SyntaxFactory::createSyntax);\n    CHECK_MSTATUS_AND_RETURN_IT(status);\n    return status;\n}\n\nMStatus uninitializePlugin(MObject obj) {\n    MStatus status;\n    MFnPlugin plugin(obj);\n    status = plugin.deregisterCommand(\"maya2glTF\");\n    CHECK_MSTATUS_AND_RETURN_IT(status);\n    return status;\n}\n"
  },
  {
    "path": "src/progress.cpp",
    "content": "#include \"externals.h\"\r\n\r\n#include \"dump.h\"\r\n#include \"progress.h\"\r\n\r\nvoid uiSetupProgress(size_t stepCount) {\r\n    MGlobal::executeCommand(\r\n        formatted(\"maya2glTF_exportProgressUI(%d);\", stepCount).c_str());\r\n}\r\n\r\nvoid uiAdvanceProgress(const std::string &stepName) {\r\n    int result = 0;\r\n    MGlobal::executeCommand(\r\n        formatted(\"maya2glTF_advanceExportProgressUI(\\\"%s\\\");\",\r\n                  stepName.c_str())\r\n            .c_str(),\r\n        result);\r\n    if (result < 0)\r\n        throw std::runtime_error(\"Aborted!\");\r\n}\r\n\r\nvoid uiTeardownProgress() {\r\n    MGlobal::executeCommand(\"maya2glTF_teardownProgressUI();\");\r\n}\r\n"
  },
  {
    "path": "src/progress.h",
    "content": "#pragma once\r\n\r\nextern void uiSetupProgress(size_t stepCount);\r\n\r\n/** Throws an exception when abortion is requested */\r\nextern void uiAdvanceProgress(const std::string &stepName);\r\n\r\nextern void uiTeardownProgress();\r\n\r\n/** Progress is advanced each `checkProgressFrameInterval` frames when exporting\r\n * animation instead of each frame, due reduce the overhead of update the\r\n * progress UI */\r\nconst int checkProgressFrameInterval = 10;"
  },
  {
    "path": "src/sceneTypes.cpp",
    "content": "#include \"externals.h\"\n\n#include \"sceneTypes.h\"\n\nusing namespace coveo::linq;\n\nnamespace Semantic {\nSemanticKinds generateKinds() {\n    SemanticKinds kinds;\n\n    for (auto i = 0; i < COUNT; ++i) {\n        kinds[i] = static_cast<Kind>(i);\n    }\n\n    return move(kinds);\n}\n\nconst SemanticKinds &kinds() {\n    static SemanticKinds kinds{generateKinds()};\n    return kinds;\n}\n\nconst SemanticKinds &blendShapeKinds() {\n    static SemanticKinds kinds{POSITION, NORMAL, TANGENT};\n    return kinds;\n}\n} // namespace Semantic\n"
  },
  {
    "path": "src/sceneTypes.h",
    "content": "#pragma once\n\n#include \"ShapeIndex.h\"\n#include \"BasicTypes.h\"\n\n// <0 means an invalid index\ntypedef int Index;\n\n/** Maya uses strings to identify color and texture-coordinate sets. We use\n * indices */\ntypedef int SetIndex;\n\n/** We use 32-bit indices, until saving */\ntypedef int VertexIndex;\n\ntypedef Float3 Position;\ntypedef Float4 Rotation; // a quaternion\ntypedef Float3 Scale;\ntypedef Float3 Normal;\ntypedef Float2 TexCoord;\ntypedef Float4 Color;\n\ntypedef float JointWeight;\ntypedef Float4 JointWeights;\n\ntypedef ushort JointIndex;\ntypedef std::array<JointIndex, 4> JointIndices;\n\ntypedef Float4 MainShapeTangent;  // 3D tangent  + bitangent sign (chirality)\ntypedef Float3 BlendShapeTangent; // 3D tangent only\n\ntypedef std::vector<Position> PositionVector;\ntypedef std::vector<Rotation> RotationVector;\ntypedef std::vector<Scale> ScaleVector;\ntypedef std::vector<Normal> NormalVector;\ntypedef std::vector<TexCoord> TexCoordVector;\ntypedef std::vector<Color> ColorVector;\ntypedef std::vector<Index> IndexVector;\ntypedef std::vector<JointWeights> JointWeightsVector;\ntypedef std::vector<JointIndices> JointIndicesVector;\n\ntypedef gsl::span<Index> IndexSpan;\n\n/** Maya shape instance number */\ntypedef size_t InstanceNumber;\n\n/** Index of a Maya material */\ntypedef int ShaderIndex;\n\ntypedef size_t Hash;\n\nenum PrimitiveKind {\n    // TODO: Support other primitives\n    TRIANGLE_LIST\n};\n\nnamespace Semantic {\nenum Kind {\n    INVALID = -1,\n    POSITION,\n    NORMAL,\n    COLOR,\n    TEXCOORD,\n    TANGENT,\n    WEIGHTS,\n    JOINTS,\n    COUNT\n};\n\ntypedef std::array<Kind, COUNT> SemanticKinds;\n\nconst SemanticKinds &kinds();\n\nconst SemanticKinds &blendShapeKinds();\n\ninline Kind from(int s) {\n    assert(s >= 0 && s < COUNT);\n    return static_cast<Kind>(s);\n}\n\n// Get the number of components per semantic\ninline int dimension(const Kind s, const ShapeIndex &shapeIndex) {\n    switch (s) {\n    case POSITION:\n        return array_size<Position>::size;\n    case NORMAL:\n        return array_size<Normal>::size;\n    case COLOR:\n        return array_size<Color>::size;\n    case TEXCOORD:\n        return array_size<TexCoord>::size;\n    case TANGENT:\n        return shapeIndex.isBlendShapeIndex()\n                   ? array_size<BlendShapeTangent>::size\n                   : array_size<MainShapeTangent>::size;\n    case WEIGHTS:\n        return array_size<JointWeights>::size;\n    case JOINTS:\n        return array_size<JointIndices>::size;\n    default:\n        assert(false);\n        return 0;\n    }\n}\n\ninline const char *name(const Kind s) {\n    switch (s) {\n    case POSITION:\n        return \"POSITION\";\n    case NORMAL:\n        return \"NORMAL\";\n    case COLOR:\n        return \"COLOR\";\n    case TEXCOORD:\n        return \"TEXCOORD\";\n    case TANGENT:\n        return \"TANGENT\";\n    case WEIGHTS:\n        return \"WEIGHTS\";\n    case JOINTS:\n        return \"JOINTS\";\n    default:\n        assert(false);\n        return \"UNKNOWN\";\n    }\n}\n\ninline Kind parse(const std::string &s) {\n    for (auto kind : kinds()) {\n        if (s == name(kind))\n            return kind;\n    }\n    return INVALID;\n}\n\ntemplate <typename T> size_t totalSetCount(const T &table) {\n    size_t count = 0;\n\n    for (int semanticIndex = 0; semanticIndex < Semantic::COUNT;\n         ++semanticIndex) {\n        count += table.at(semanticIndex).size();\n    }\n\n    return count;\n}\n} // namespace Semantic\n\nnamespace Component {\nenum Type {\n    FLOAT,\n    USHORT,\n};\n\ninline size_t byteSize(Type type) {\n    switch (type) {\n    case FLOAT:\n        return sizeof(float);\n    case USHORT:\n        return sizeof(ushort);\n    default:\n        assert(false);\n        return 0;\n    }\n}\n\ninline Type type(const Semantic::Kind s) {\n    switch (s) {\n    case Semantic::POSITION:\n    case Semantic::NORMAL:\n    case Semantic::COLOR:\n    case Semantic::TEXCOORD:\n    case Semantic::TANGENT:\n    case Semantic::WEIGHTS:\n        return FLOAT;\n\n    case Semantic::JOINTS:\n        return USHORT;\n\n    default:\n        throw std::runtime_error(\"Invalid component type\");\n    }\n}\n}; // namespace Component\n\ntypedef std::bitset<Semantic::COUNT> MeshSemanticSet;\n"
  },
  {
    "path": "src/spans.h",
    "content": "#pragma once\n\ntemplate <typename T>\nstatic gsl::span<const T> span(const std::vector<T> &vec) {\n    return gsl::make_span(vec);\n}\n\nstatic gsl::span<const MFloatPoint> span(const MFloatPointArray &marray) {\n    return marray.length() > 0 ? gsl::make_span(&marray[0], marray.length())\n                               : gsl::span<const MFloatPoint>();\n}\n\nstatic gsl::span<const MFloatVector> span(const MFloatVectorArray &marray) {\n    return marray.length() > 0 ? gsl::make_span(&marray[0], marray.length())\n                               : gsl::span<const MFloatVector>();\n}\n\nstatic gsl::span<const MColor> span(const MColorArray &marray) {\n    return marray.length() > 0 ? gsl::make_span(&marray[0], marray.length())\n                               : gsl::span<const MColor>();\n}\n\ntemplate <typename T, typename S>\nstatic gsl::span<const T> reinterpret_span(const gsl::span<S> &span) {\n    assert(sizeof(S) >= sizeof(T) ? sizeof(S) % sizeof(T) == 0\n                                  : sizeof(T) % sizeof(S) == 0);\n\n    if (span.empty())\n        return gsl::span<T>();\n\n    const S *bgn_ptr = &span[0];\n    const S *end_ptr = bgn_ptr + span.size();\n\n    return gsl::make_span(reinterpret_cast<const T *>(bgn_ptr),\n                          reinterpret_cast<const T *>(end_ptr));\n}\n\ntemplate <typename T, typename S>\nstatic gsl::span<const T> reinterpret_span(const std::vector<S> &data) {\n    return reinterpret_span<T>(gsl::make_span(data));\n}\n\ntemplate <typename T>\nstatic gsl::span<T> mutable_span(const gsl::span<const T> &span) {\n    const T *bgn_ptr = &span[0];\n    const T *end_ptr = bgn_ptr + span.size();\n    return gsl::make_span(const_cast<T *>(bgn_ptr), const_cast<T *>(end_ptr));\n}\n\nstatic std::size_t hash_value(const gsl::span<const uint16_t> &span) {\n    std::size_t seed = span.size();\n    for (const size_t i : span) {\n        seed ^= i + 0x9e3779b9 + (seed << 6) + (seed >> 2);\n    }\n    return seed;\n}\n\ntemplate <typename T>\nstatic void reinterpret_span(const std::vector<gsl::span<T>> &vec) = delete;\n\ntemplate <typename T>\nstatic void reinterpret_span(const gsl::span<gsl::span<T>> &vec) = delete;\n\ntemplate <typename T>\nstatic void span(const std::vector<gsl::span<T>> &vec) = delete;\n\ntemplate <typename T>\nstatic void span(const gsl::span<gsl::span<T>> &vec) = delete;\n"
  },
  {
    "path": "src/timeControl.h",
    "content": "#pragma once\n\ninline MTime getFrameTime(const int frameIndex, const double framesPerSecond) {\n    return MTime(frameIndex / framesPerSecond, MTime::kSeconds);\n}\n\ninline void setCurrentTime(const MTime time, const bool shouldRedraw) {\n    MAnimControl::setCurrentTime(time);\n\n    if (shouldRedraw) {\n        M3dView::active3dView().refresh(true, true);\n    }\n}\n"
  },
  {
    "path": "src/version.h.in",
    "content": "#pragma once\n\nstatic const char *version = \"@GIT_TAG@ @GIT_SHORT_HASH@\";\n"
  },
  {
    "path": "tools/.gitignore",
    "content": "bin\r\nobj\r\n"
  },
  {
    "path": "tools/EncodeToHEVC/EncodeToHEVC.csproj",
    "content": "<Project Sdk=\"Microsoft.NET.Sdk\">\r\n\r\n  <PropertyGroup>\r\n    <OutputType>Exe</OutputType>\r\n    <TargetFramework>netcoreapp2.1</TargetFramework>\r\n  </PropertyGroup>\r\n\r\n</Project>\r\n"
  },
  {
    "path": "tools/EncodeToHEVC/Program.cs",
    "content": "﻿using System;\r\nusing System.ComponentModel.DataAnnotations;\r\nusing System.Diagnostics;\r\nusing System.IO;\r\n\r\nnamespace EncodeToHEVC\r\n{\r\n    class Program\r\n    {\r\n        static string Q(string s) => $\"\\\"{s}\\\"\";\r\n\r\n        static void Main(string[] args)\r\n        {\r\n            var folders = Directory.GetDirectories(@\"C:\\dev\\glTF\\Maya2glTF\\maya\\playblast\\maya\", \"video\", SearchOption.AllDirectories);\r\n            var ffmpegPath = @\"C:\\dev\\AnimationNow\\Assets\\Deploy\\Any\\ffmpeg.exe\";\r\n\r\n            foreach (var folder in folders)\r\n            {\r\n                var parentFolder = Path.GetDirectoryName(folder);\r\n                var clipName = Path.GetFileNameWithoutExtension(parentFolder);\r\n                var outputFolder = Path.GetFullPath(Path.Combine(parentFolder, \"..\", \"..\", \"H265\"));\r\n                Directory.CreateDirectory(outputFolder);\r\n                var colorPath = Path.Combine(outputFolder, $\"{clipName}_color.mp4\");\r\n                var alphaPath = Path.Combine(outputFolder, $\"{clipName}_alpha.mp4\");\r\n\r\n                var arguments = $\"-y -i {Q(Path.Combine(folder, \"frame.%04d.png\"))} -threads 0 -r 25 -ac 2 \" +\r\n                          $\"-filter_complex \\\"[0:v]format = yuv444p[COLOR];[0:v] alphaextract[ALPHA]\\\" \" +\r\n                          $\"-map [COLOR] -c:v hevc_nvenc -preset hq -g 300 -rc constqp -global_quality:v 18 -pix_fmt yuv420p {Q(colorPath)} \" +\r\n                          $\"-map [ALPHA] -c:v hevc_nvenc -preset lossless -g 30 -rc constqp -global_quality:v 1 -pix_fmt yuv420p {Q(alphaPath)} \";\r\n\r\n                Console.WriteLine($\"Encoding {clipName}...\");\r\n                var encoder = Process.Start(ffmpegPath, arguments);\r\n                encoder.WaitForExit();\r\n            }\r\n\r\n            Console.WriteLine(\"All done, press ENTER to exit\");\r\n            Console.ReadLine();\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "tools/ModelClipMerger/GltfExt.cs",
    "content": "using System;\nusing System.IO;\nusing glTFLoader;\nusing glTFLoader.Schema;\n\nnamespace WonderMedia.glTF.ModelClipMerger\n{\n    /// <summary>\n    /// Portions of this code are based on the GLTF library from https://github.com/KhronosGroup/COLLADA2GLTF.\n    /// </summary>\n    public static class GltfExt\n    {\n        public static int GetComponentByteLength(this Accessor.ComponentTypeEnum componentType)\n        {\n            switch (componentType)\n            {\n                case Accessor.ComponentTypeEnum.BYTE:\n                case Accessor.ComponentTypeEnum.UNSIGNED_BYTE:\n                    return 1;\n                case Accessor.ComponentTypeEnum.SHORT:\n                case Accessor.ComponentTypeEnum.UNSIGNED_SHORT:\n                    return 2;\n                case Accessor.ComponentTypeEnum.FLOAT:\n                case Accessor.ComponentTypeEnum.UNSIGNED_INT:\n                    return 4;\n            }\n\n            return 0;\n        }\n\n        public static int GetComponentByteLength(this Accessor accessor)\n        {\n            return GetComponentByteLength(accessor.ComponentType);\n        }\n\n        public static int GetComponentDimension(this Accessor.TypeEnum type)\n        {\n            switch (type)\n            {\n                case Accessor.TypeEnum.SCALAR:\n                    return 1;\n                case Accessor.TypeEnum.VEC2:\n                    return 2;\n                case Accessor.TypeEnum.VEC3:\n                    return 3;\n                case Accessor.TypeEnum.VEC4:\n                case Accessor.TypeEnum.MAT2:\n                    return 4;\n                case Accessor.TypeEnum.MAT3:\n                    return 9;\n                case Accessor.TypeEnum.MAT4:\n                    return 16;\n                default:\n                    return 0;\n            }\n        }\n\n        public static int GetComponentDimension(this Accessor accessor)\n        {\n            return GetComponentDimension(accessor.Type);\n        }\n\n        /// <summary>\n        /// Computes how much to advance a byte-offset to store components of the given byte-length.\n        /// </summary>\n        public static int GetComponentPadding(int componentByteLength, int byteOffset)\n        {\n            return (componentByteLength - byteOffset % componentByteLength) % componentByteLength;\n        }\n\n        public static int GetComponentPadding(this Stream outputStream, int componentByteLength)\n        {\n            return GetComponentPadding(componentByteLength, (int) outputStream.Position);\n        }\n\n        /// <summary>\n        /// Computes how much to advance a byte-offset to store components of the given type.\n        /// </summary>\n        public static int GetComponentPadding(this Accessor.ComponentTypeEnum componentType, int byteOffset)\n        {\n            var componentByteLength = GetComponentByteLength(componentType);\n            return GetComponentPadding(componentByteLength, byteOffset);\n        }\n\n        public static int GetComponentPadding(this Accessor accessor, int byteOffset)\n        {\n            return GetComponentPadding(accessor.ComponentType, byteOffset);\n        }\n\n        public static int GetByteStride(this Accessor accessor, BufferView[] bufferViews)\n        {\n            if (accessor.BufferView.HasValue && bufferViews[accessor.BufferView.Value].ByteStride.HasValue)\n            {\n                return bufferViews[accessor.BufferView.Value].ByteStride.Value;\n            }\n\n            return GetComponentDimension(accessor) * GetComponentByteLength(accessor);\n        }\n    }\n}\n"
  },
  {
    "path": "tools/ModelClipMerger/GltfFile.cs",
    "content": "using System.IO;\nusing glTFLoader;\nusing glTFLoader.Schema;\nusing Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\n\nnamespace WonderMedia.glTF.ModelClipMerger\n{\n    public sealed class GltfFile\n    {\n        private Gltf _data;\n\n        public Gltf Data\n        {\n            get { return _data ?? Load(); }\n        }\n\n        private Gltf Load()\n        {\n            return _data = Interface.LoadModel(Path);\n        }\n\n        public readonly string Path;\n\n        public GltfFile(string path)\n        {\n            Path = path;\n            Load();\n        }\n\n        public void Invalidate()\n        {\n            _data = null;\n        }\n    }\n}\n"
  },
  {
    "path": "tools/ModelClipMerger/IndentScope.cs",
    "content": "using System;\nusing System.CodeDom.Compiler;\n\nnamespace WonderMedia.glTF.ModelClipMerger\n{\n    public struct IndentScope : IDisposable\n    {\n        private readonly IndentedTextWriter _writer;\n        private readonly int _indent;\n\n        public IndentScope(IndentedTextWriter writer)\n        {\n            _indent = writer.Indent;\n            _writer = writer;\n            _writer.Indent += 1;\n        }\n\n        public void Dispose()\n        {\n            _writer.Indent = _indent;\n        }\n    }\n\n    public static class IndentedTextWriterExt\n    {\n        public static IndentScope Indented(this IndentedTextWriter writer) => new IndentScope(writer);\n    }\n}\n"
  },
  {
    "path": "tools/ModelClipMerger/ModelClipMerger.cs",
    "content": "using System;\nusing System.CodeDom.Compiler;\nusing System.Collections.Generic;\nusing System.Diagnostics;\nusing System.IO;\nusing System.Linq;\nusing System.Runtime.InteropServices;\nusing glTFLoader;\nusing glTFLoader.Schema;\nusing JetBrains.Annotations;\nusing Buffer = glTFLoader.Schema.Buffer;\n\nnamespace WonderMedia.glTF.ModelClipMerger\n{\n    public sealed class ModelClipMerger : IDisposable\n    {\n        public static readonly float[] DefaultTranslation = { 0, 0, 0 };\n        public static readonly float[] DefaultScale = { 1, 1, 1 };\n        public static readonly float[] DefaultRotation = { 0, 0, 0, 1 };\n\n        private const string OutputBufferFilename = \"buffer.bin\";\n        private const string OutputModelFilename = \"model.glTF\";\n\n        private readonly Dictionary<Buffer, byte[]> _bufferFileData = new Dictionary<Buffer, byte[]>();\n        private HashSet<string> _allModelNodeNames;\n\n        public string InputFolder { get; }\n        public string OutputFolder { get; }\n\n        public IndentedTextWriter Log { get; }\n\n        public ModelClipMerger(string inputFolder, string outputFolder, TextWriter log = null)\n        {\n            InputFolder = inputFolder;\n            OutputFolder = outputFolder;\n            Log = new IndentedTextWriter(log ?? Console.Out, \"  \");\n        }\n\n        public void CleanOutputFolder()\n        {\n            // Delete all files in output folder\n            if (Directory.Exists(OutputFolder))\n            {\n                Log.WriteLine($\"Cleaning {OutputFolder}...\");\n                Directory.Delete(OutputFolder, true);\n            }\n        }\n\n        public void Process()\n        {\n            Log.WriteLine(\"Loading glTF files...\");\n\n            GltfFile[] modelFiles;\n            GltfFile[] animFiles;\n\n            using (Log.Indented())\n            {\n                string[] allFilePaths = Directory.GetFiles(InputFolder, \"*.glTF\", SearchOption.AllDirectories);\n                var allFiles = allFilePaths.Select(LoadFile).ToArray();\n                modelFiles = allFiles.Where(m => IsNullOrEmpty(m.Data.Animations)).ToArray();\n                animFiles = allFiles.Except(modelFiles).OrderBy(file => file.Path).ToArray();\n            }\n\n            // Gather all names of all nodes in all models.\n            // If any animation refers to a node not in this set,\n            // we print a warning because the animation will most likely be broken then,\n            // and re-export is needed.\n            _allModelNodeNames = modelFiles\n                .SelectMany(pair => pair.Data.Nodes.Select(n => n.Name))\n                .ToHashSet();\n\n            Log.WriteLine($\"Merging glTF models {string.Join(\", \", modelFiles.Select(f => Path.GetFileNameWithoutExtension(f.Path)))}...\");\n\n            using (Log.Indented())\n            {\n                foreach (var modelFile in modelFiles)\n                {\n                    Log.WriteLine($\"Merging {modelFile.Path}...\");\n                    using (Log.Indented())\n                    {\n                        ProcessModel(modelFile, animFiles);\n                    }\n                }\n            }\n        }\n\n        private void ProcessModel(GltfFile modelFile, GltfFile[] animFiles)\n        {\n            var modelPath = modelFile.Path;\n            var modelData = modelFile.Data;\n\n            var modelName = Path.GetFileNameWithoutExtension(modelPath);\n\n            var outputModelFolder = Path.Combine(OutputFolder, modelName);\n            Directory.CreateDirectory(outputModelFolder);\n\n            Log.WriteLine($\"Copying images...\");\n\n            if (modelData.Images != null)\r\n            {\r\n                using (Log.Indented())\r\n                {\r\n                    CopyImages(modelData, modelPath, outputModelFolder);\r\n                }\r\n            }\n\n            Log.WriteLine($\"Fetching model buffers...\");\n\n            using (Log.Indented())\n            {\n                FetchBuffers(modelData, modelPath);\n            }\n\n            var modelNodeIndexByName = modelData.Nodes.Select((n, i) => (n, i))\n                .ToDictionary(pair => pair.Item1.Name, pair => pair.Item2);\n\n            foreach (GltfFile animFile in animFiles)\n            {\n                Log.WriteLine($\"Processing animations in {animFile.Path}...\");\n                using (Log.Indented())\n                {\n                    ProcessAnimations(modelFile, animFile, modelNodeIndexByName, outputModelFolder);\n                }\n\n                // The anim-file-data was modified, reload next time.\n                animFile.Invalidate();\n            }\n\n            var outputBufferPath = Path.Combine(outputModelFolder, OutputBufferFilename);\n            using (var newBufferStream = File.Create(outputBufferPath))\n            {\n                Log.WriteLine($\"Packing all accessors in a single buffer...\");\n                PackAccessors(modelFile, newBufferStream, OutputBufferFilename);\n\n                Log.WriteLine($\"Writing model glTF file...\");\n                var outputModelPath = Path.Combine(outputModelFolder, OutputModelFilename);\n                modelData.SaveModel(outputModelPath);\n            }\n        }\n\n        /// <summary>\n        /// Creates a single buffer and a minimum number of buffer-views to pack all the accessors.\n        /// </summary>\n        private void PackAccessors(GltfFile modelFile, Stream newBufferStream, string outputBufferUri)\n        {\n            var fileData = modelFile.Data;\n\n            var buffers = fileData.Buffers;\n            var bufferViews = fileData.BufferViews;\n\n            // TODO: Check sparse accessors\n            // Group accessor by optional target, component-stride and component byte-length\n            // For each group, we need to create a single buffer-view.\n            var accessorGroups = fileData\n                .Accessors\n                .Where(a => a.BufferView.HasValue)\n                .GroupBy(a => (target: bufferViews[a.BufferView.Value].Target, stride: a.GetByteStride(bufferViews)/*, componentByteLength: a.GetComponentByteLength()*/))\n                .ToDictionary(g => g.Key, g => g.ToArray());\n\n            // NOTE: The following select sequence has a side-effect\n            var newBufferViews = accessorGroups\n                .Select((pair, newBufferViewIndex) =>\n                {\n                    //var ((target, stride, componentByteLength), accessors) = pair;\n                    var ((target, stride), accessors) = pair;\n\n                    var newBufferViewOffset = (int)newBufferStream.Position;\n\n                    //Debug.Assert(newBufferStream.GetComponentPadding(componentByteLength) == 0);\n\n                    foreach (var accessor in accessors)\n                    {\n                        var componentByteLength = accessor.GetComponentByteLength();\n\n                        var accessorPadding = newBufferStream.GetComponentPadding(componentByteLength);\n                        newBufferStream.WriteByte(0, accessorPadding);\n\n                        var newAccessorByteOffset = (int)(newBufferStream.Position - newBufferViewOffset);\n\n                        Debug.Assert(accessor.BufferView.HasValue);\n                        var bufferView = bufferViews[accessor.BufferView.Value];\n                        var buffer = buffers[bufferView.Buffer];\n                        var data = _bufferFileData[buffer];\n\n                        var bufferOffset = bufferView.ByteOffset + accessor.ByteOffset;\n\n                        var rowLength = accessor.GetComponentDimension() * componentByteLength;\n\n                        for (int i = 0; i < accessor.Count; ++i)\n                        {\n                            Debug.Assert(newBufferStream.GetComponentPadding(componentByteLength) == 0);\n                            newBufferStream.Write(data, bufferOffset + i * stride, rowLength);\n                            Debug.Assert(newBufferStream.GetComponentPadding(componentByteLength) == 0);\n                        }\n\n                        // Patch the accessor.\n                        accessor.ByteOffset = newAccessorByteOffset;\n                        accessor.BufferView = newBufferViewIndex;\n                    }\n\n                    var newBufferView = new BufferView\n                    {\n                        Target = target,\n                        ByteOffset = newBufferViewOffset,\n                        ByteStride = target == BufferView.TargetEnum.ARRAY_BUFFER ? stride : (int?)null,\n                        ByteLength = (int)(newBufferStream.Position - newBufferViewOffset)\n                    };\n\n                    return newBufferView;\n                })\n                .ToArray();\n\n            var newBuffer = new Buffer\n            {\n                ByteLength = (int)newBufferStream.Length,\n                Uri = outputBufferUri\n            };\n\n            fileData.BufferViews = newBufferViews;\n            fileData.Buffers = new[] { newBuffer };\n        }\n\n        private void ProcessAnimations(GltfFile modelFile, GltfFile animFile, Dictionary<string, int> modelNodeIndexByName, string outputModelFolder)\n        {\n            foreach (Animation animation in animFile.Data.Animations)\n            {\n                using (Log.Indented())\n                {\n                    Log.WriteLine($\"Processing animation clip {animation.Name} in {animFile.Path}...\");\n\n                    using (Log.Indented())\n                    {\n                        ProcessAnimation(modelFile, animFile, animation, modelNodeIndexByName, outputModelFolder);\n                    }\n                }\n            }\n        }\n\n        private void ProcessAnimation(GltfFile modelFile, GltfFile animFile, Animation animation, Dictionary<string, int> modelNodeIndexByName, string outputModelFolder)\n        {\n            var animData = animFile.Data;\n            var modelData = modelFile.Data;\n\n            // Load all animation buffers into memory\n            // TODO: This could be done lazily!\n            FetchBuffers(animData, animFile.Path);\n\n            foreach (var channel in animation.Channels)\n            {\n                var nodeIndex = channel.Target?.Node;\n                if (nodeIndex.HasValue)\n                {\n                    var nodeName = animData.Nodes[nodeIndex.Value].Name;\n                    if (!_allModelNodeNames.Contains(nodeName))\n                    {\n                        Log.WriteLine($\"WARNING: Clip node '{nodeName}' not found in any model. Similar node names are:\");\n                        using (Log.Indented())\n                        {\n                            Fastenshtein.Levenshtein lev = new Fastenshtein.Levenshtein(nodeName);\n                            Log.WriteLine(string.Join(\", \", _allModelNodeNames.OrderBy(lev.DistanceFrom).Take(3)));\n                        }\n                    }\n                }\n            }\n\n            int tc = 0;\n            int rc = 0;\n            int sc = 0;\n            int wc = 0;\n\n            // Keep only those animation channels that animate the current model,\n            // and are different from the initial scene\n            AnimationChannel[] clipChannels = animation\n                .Channels\n                .Where(channel =>\n                {\n                    var nodeIndex = channel?.Target?.Node;\n                    if (!nodeIndex.HasValue)\n                        return false;\n                    var node = animData.Nodes[nodeIndex.Value];\n                    if (!modelNodeIndexByName.ContainsKey(node.Name))\n                        return false;\n\n                    var sampler = animation.Samplers[channel.Sampler];\n                    var outputAccessor = animData.Accessors[sampler.Output];\n\n                    // We assume the exporter already reduced constant curves to a single key.\n                    if (outputAccessor.Count != 1)\n                        return true;\n\n                    // We don't handle sparse data yet, keep it\n                    if (!outputAccessor.BufferView.HasValue)\n                        return true;\n\n                    var mesh = node.Mesh.HasValue ? animData.Meshes[node.Mesh.Value] : null;\n\n                    var outputValues = GetComponentAtIndex(animData, outputAccessor, 0);\n\n                    switch (channel.Target.Path)\n                    {\n                        case AnimationChannelTarget.PathEnum.translation:\n                            return AreDifferent(ref tc, outputValues, node.Translation ?? DefaultTranslation, 1e-3f);\n                        case AnimationChannelTarget.PathEnum.rotation:\n                            return AreDifferent(ref rc, outputValues, node.Rotation ?? DefaultRotation, 1e-4f);\n                        case AnimationChannelTarget.PathEnum.scale:\n                            return AreDifferent(ref sc, outputValues, node.Scale ?? DefaultScale, 1e-4f);\n                        case AnimationChannelTarget.PathEnum.weights:\n                            return AreDifferent(ref wc, outputValues, node.Weights ?? mesh?.Weights, 1e-3f);\n                        default:\n                            return true;\n                    }\n                })\n                .ToArray();\n\n            if (clipChannels.Length == 0)\n            {\n                Log.WriteLine($\"NOTE: Animation '{animation.Name}' is not used by model '{modelFile.Path}'\");\n                return;\n            }\n\n            if (tc+rc+sc+wc > 0)\n            {\n                Log.WriteLine($\"Skipped {tc} translation, {rc} rotation, {sc} scaling and {wc} weight redundant animation channels\");\n            }\n\n            // Keep only those samplers used by any channel\n            AnimationSampler[] clipSamplers = clipChannels\n                .Select(channel => animation.Samplers[channel.Sampler])\n                .Distinct()\n                .ToArray();\n\n            AnimationChannelTarget[] clipTargets = clipChannels\n                .Select(channel => channel.Target)\n                .ToArray();\n\n            Accessor[] clipSamplerInputs = clipSamplers.Select(sampler => animData.Accessors[sampler.Input]).ToArray();\n            Accessor[] clipSamplerOutputs = clipSamplers.Select(sampler => animData.Accessors[sampler.Output]).ToArray();\n\n            Accessor[] clipAccessors = clipSamplerInputs.Concat(clipSamplerOutputs).Distinct().ToArray();\n\n            Remapper<Accessor> newAccessors = modelData.Accessors.Concat(clipAccessors).RemapFrom(animData.Accessors);\n\n            Remapper<AnimationSampler> newSamplers = clipSamplers.RemapFrom(animation.Samplers);\n            Remapper<AnimationChannel> newChannels = clipChannels.RemapFrom(animation.Channels);\n\n\n            // Remap sampler indices\n            foreach (var sampler in clipSamplers)\n            {\n                sampler.Input = newAccessors.Remap(sampler.Input);\n                sampler.Output = newAccessors.Remap(sampler.Output);\n            }\n\n            // Remap channel indices\n            foreach (var channel in clipChannels)\n            {\n                channel.Sampler = newSamplers.Remap(channel.Sampler);\n            }\n\n            // Remap animation channel targets\n            foreach (var target in clipTargets)\n            {\n                // ReSharper disable once PossibleInvalidOperationException\n                var clipNode = animData.Nodes[(int)target.Node];\n                var nodeIndex = modelNodeIndexByName[clipNode.Name];\n                target.Node = nodeIndex;\n            }\n\n            animation.Channels = newChannels.OutputItems;\n            animation.Samplers = newSamplers.OutputItems;\n\n            var clipBufferViews = clipAccessors\n                .Select(a => a.BufferView)\n                .Where(bv => bv.HasValue)\n                .Select(bv => bv.Value)\n                .Distinct()\n                .Select(i => animData.BufferViews[i])\n                .ToArray();\n\n            var newBufferViews = modelData.BufferViews.Concat(clipBufferViews)\n                .RemapFrom(animData.BufferViews);\n\n            // Remap clip accessor indices\n            foreach (var accessor in clipAccessors)\n            {\n                if (accessor.BufferView.HasValue)\n                {\n                    accessor.BufferView = newBufferViews.Remap(accessor.BufferView.Value);\n                }\n            }\n\n            var clipBuffers = clipBufferViews\n                .Select(bv => bv.Buffer)\n                .Distinct()\n                .Select(i => animData.Buffers[i])\n                .ToArray();\n\n            var newBuffers = modelData.Buffers.Concat(clipBuffers).RemapFrom(animData.Buffers);\n\n            // Remap buffer view indices\n            foreach (var bufferView in clipBufferViews)\n            {\n                bufferView.Buffer = newBuffers.Remap(bufferView.Buffer);\n            }\n\n            // TODO: Animation indices don't need to be remapped?\n            modelData.Animations = (modelData.Animations ?? Array.Empty<Animation>()).Append(animation).ToArray();\n            modelData.Accessors = newAccessors.OutputItems;\n            modelData.BufferViews = newBufferViews.OutputItems;\n            modelData.Buffers = newBuffers.OutputItems;\n        }\n\n        static bool IsNullOrEmpty<T>(ICollection<T> items)\n        {\n            return items == null || items.Count == 0;\n        }\n\n        private GltfFile LoadFile(string filePath)\n        {\n            Log.WriteLine($\"Loading {filePath}...\");\n            return new GltfFile(filePath);\n        }\n\n        private void CopyImages(Gltf gltfFile, string gltfPath, string outputFolder)\n        {\n            for (var i = 0; i < gltfFile.Images.Length; i++)\n            {\n                var image = gltfFile.Images[i];\n\n                var outputPath = Path.Combine(outputFolder, image.Uri);\n\n                Log.WriteLine($\"Copying image {outputPath}...\");\n\n                // TODO: Supported embedded image buffers\n                using (var inputStream = gltfFile.OpenImageFile(i, gltfPath))\n                using (var outputStream = File.OpenWrite(outputPath))\n                {\n                    inputStream.CopyTo(outputStream);\n                }\n            }\n        }\n\n        private void FetchBuffers(Gltf gltfFile, string gltfPath, IEnumerable<int> bufferIndices)\n        {\n            foreach (var bufferIndex in bufferIndices)\n            {\n                var buffer = gltfFile.Buffers[bufferIndex];\n\n                if (_bufferFileData.ContainsKey(buffer))\n                    continue;\n\n                var bufferName = string.IsNullOrEmpty(buffer.Uri)\n                    ? $\"buffer#{bufferIndex}\"\n                    : buffer.Uri.Substring(0, Math.Min(100, buffer.Uri.Length));\n\n                Log.WriteLine($\"Fetching buffer {bufferName}...\");\n\n                var data = gltfFile.LoadBinaryBuffer(bufferIndex, gltfPath);\n                _bufferFileData.Add(buffer, data);\n            }\n        }\n\n        private void FetchBuffers(Gltf gltfFile, string gltfPath)\n        {\n            FetchBuffers(gltfFile, gltfPath, Enumerable.Range(0, gltfFile.Buffers.Length));\n        }\n\n        public void Dispose()\n        {\n            Log?.Dispose();\n        }\n\n        private float[] GetComponentAtIndex(Gltf gltf, Accessor accessor, int index)\n        {\n            var bufferView = gltf.BufferViews[accessor.BufferView ?? throw new Exception($\"Accessor '{accessor.Name ?? \"?\"}' has no buffer-view!\")];\n            int byteOffset = accessor.ByteOffset + bufferView.ByteOffset;\n            int dimension = accessor.GetComponentDimension();\n            byteOffset += accessor.GetByteStride(gltf.BufferViews) * index;\n            var buffer = gltf.Buffers[bufferView.Buffer];\n            var data = new Span<byte>(_bufferFileData[buffer]);\n\n            var component = new float[dimension];\n\n            for (int i = 0; i < dimension; i++)\n            {\n                switch (accessor.ComponentType)\n                {\n                    case Accessor.ComponentTypeEnum.BYTE:\n                        component[i] = ReadNext<sbyte>(data, ref byteOffset);\n                        break;\n                    case Accessor.ComponentTypeEnum.UNSIGNED_BYTE:\n                        component[i] = ReadNext<byte>(data, ref byteOffset);\n                        break;\n                    case Accessor.ComponentTypeEnum.SHORT:\n                        component[i] = ReadNext<short>(data, ref byteOffset);\n                        break;\n                    case Accessor.ComponentTypeEnum.UNSIGNED_SHORT:\n                        component[i] = ReadNext<ushort>(data, ref byteOffset);\n                        break;\n                    case Accessor.ComponentTypeEnum.FLOAT:\n                        component[i] = ReadNext<float>(data, ref byteOffset);\n                        break;\n                    case Accessor.ComponentTypeEnum.UNSIGNED_INT:\n                        component[i] = ReadNext<uint>(data, ref byteOffset);\n                        break;\n                }\n            }\n\n            return component;\n        }\n\n        private static unsafe T ReadNext<T>(Span<byte> buffer, ref int byteOffset) where T : unmanaged\n        {\n            var value = MemoryMarshal.Read<T>(buffer.Slice(byteOffset, sizeof(T)));\n            byteOffset += sizeof(T);\n            return value;\n        }\n\n        /// <summary>\n        /// Checks if two floating point arrays different\n        /// If the second array is null, all floats are assumed to be 0.0f\n        /// </summary>\n        public static bool AreDifferent(ref int equalityCounter, float[] a, [CanBeNull] float[] b, float epsilon)\n        {\n            var length = a.Length;\n\n            if (b == null)\n            {\n                for (int i = 0; i < length; i++)\n                {\n                    if (Math.Abs(a[i]) > epsilon)\n                        return true;\n                }\n            }\n            else\n            {\n                if (length != b.Length)\n                    return true;\n\n                for (int i = 0; i < length; i++)\n                {\n                    if (Math.Abs(a[i] - b[i]) > epsilon)\n                        return true;\n                }\n\n            }\n\n            ++equalityCounter;\n            return false;\n        }\n\n    }\n}\r\n"
  },
  {
    "path": "tools/ModelClipMerger/ModelClipMerger.csproj",
    "content": "<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <OutputType>Exe</OutputType>\n    <TargetFramework>netcoreapp2.1</TargetFramework>\n    <AssemblyName>WonderMedia.glTF.ModelClipMerger</AssemblyName>\n    <RootNamespace>WonderMedia.glTF.ModelClipMerger</RootNamespace>\n    <LangVersion>latest</LangVersion>\n  </PropertyGroup>\n\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Release|AnyCPU'\">\r\n    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>\r\n  </PropertyGroup>\n\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Debug|AnyCPU'\">\r\n    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>\r\n  </PropertyGroup>\n\n  <ItemGroup>\n    <PackageReference Include=\"Fastenshtein\" Version=\"1.0.0.5\" />\n    <PackageReference Include=\"glTF2Loader\" Version=\"1.1.1-alpha\" />\n    <PackageReference Include=\"JetBrains.Annotations\" Version=\"10.2.1\" />\n  </ItemGroup>\n\n</Project>\n"
  },
  {
    "path": "tools/ModelClipMerger/Program.cs",
    "content": "using System;\n\nnamespace WonderMedia.glTF.ModelClipMerger\n{\n    class Program\n    {\n        static void Main(string[] args)\n        {\n            using (var merger = new ModelClipMerger(@\"D:\\Nova\\export\", @\"D:\\Nova\\glTF\"))\n            {\n                merger.CleanOutputFolder();\n                merger.Process();\n\n                Console.WriteLine(\"Done\");\n                Console.ReadLine();\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "tools/ModelClipMerger/Remapper.cs",
    "content": "using System.Collections.Generic;\nusing System.Linq;\n\nnamespace WonderMedia.glTF.ModelClipMerger\n{\n    public sealed class Remapper<T>\n    {\n        public readonly T[] InputItems;\n        public readonly T[] OutputItems;\n\n        public readonly Dictionary<T, int> OutputIndexOf;\n\n        public Remapper(T[] inputItems, IEnumerable<T> outputItems)\n        {\n            InputItems = inputItems;\n            OutputItems = outputItems.ToArray();\n\n            OutputIndexOf = OutputItems\n                .Select((item, index) => (item, index))\n                .ToDictionary(pair => pair.Item1, pair => pair.Item2);\n        }\n\n        public int Remap(int inputIndex)\n        {\n            var item = InputItems[inputIndex];\n            var outputIndex = OutputIndexOf[item];\n            return outputIndex;\n        }\n\n        //public static void Remap<U>(IEnumerable<U> entries, Func<U, int> getIndex, Action<U, int> set )\n        //{\n\n        //}\n    }\n\n    public static class RemapperExt\n    {\n        public static Remapper<T> RemapFrom<T>(this IEnumerable<T> outputItems, T[] inputItems) => new Remapper<T>(inputItems, outputItems);\n    }\n}\n"
  },
  {
    "path": "tools/ModelClipMerger/StreamExt.cs",
    "content": "using System.IO;\n\nnamespace WonderMedia.glTF.ModelClipMerger\n{\n    public static class StreamExt\n    {\n        public static void WriteByte(this Stream stream, byte value, int count)\n        {\n            while (--count >= 0)\n            {\n                stream.WriteByte(value);\n            }\n        }\n    }\n}\r\n"
  },
  {
    "path": "windows_build_release.bat",
    "content": "@echo off\n\ncall windows_create_vs_project.bat %1\nif errorlevel 1 goto :fail\n\ncall msbuild /m:4 /p:configuration=Release build\\%1\\maya2glTF.sln\nif errorlevel 1 goto :fail\n\nxcopy /s /e /y build\\%1\\redist\\*.* build\\redist\\\nif errorlevel 1 goto :fail\n\nif \"%2\"==\"AUTO\" (\n    exit\n)\n\n:fail\necho *** FAILURE ***\n"
  },
  {
    "path": "windows_build_releases.bat",
    "content": "@echo off\n\nsetlocal \n\ncd /d %~dp0\n\nFOR /F \"tokens=*\" %%g IN ('git tag -l --points-at HEAD') do (SET GIT_TAG=%%g)\nFOR /F \"tokens=*\" %%g IN ('git rev-parse --short HEAD') do (SET GIT_REV=%%g)\n\nECHO GIT_TAG = %GIT_TAG%\nECHO GIT_REV = %GIT_REV%\nset ZIP_PATH=%~dp0build\\maya2gltf_%GIT_TAG%_%GIT_REV%.zip\nif exist %ZIP_PATH% (del %ZIP_PATH%)\n\necho Creating release %ZIP_PATH%\n\nstart \"Maya2glTF_build_2024\" call windows_build_release 2024 AUTO\nstart \"Maya2glTF_build_2025\" call windows_build_release 2025 AUTO\n\n\n@REM :loop\n@REM echo Waiting for build processes to finish...\n@REM does not work with Windows Terminal, commented out until workaround is found\n@REM timeout /t 10 >nul\n@REM tasklist /v /fi \"imagename eq cmd.exe\" /fo csv | findstr /i \"Maya2glTF_build\" >nul && goto :loop\n\necho Press ENTER When build processes are finished\npause\n\npushd build\necho Creating release ZIP file...\ncmake -E tar cfv %ZIP_PATH% --format=zip redist\npopd\n\n:done\n\nendlocal\n"
  },
  {
    "path": "windows_create_vs_project.bat",
    "content": "@echo off\nsetlocal\n\nif \"%1\"==\"\" (\n    echo Please pass the Maya version you want build as an argument, e.g 2019 to build Maya 2019\n    goto :error\n)\n\nset BUILD=%~dp0\\build\\%1\n\nif not exist \"%BUILD%\" (\n    mkdir \"%BUILD%\"\n    if errorlevel 1 goto :error\n)\n\nif exist \"%BUILD%\\CMakeCache.txt\" (\n    del \"%BUILD%\\CMakeCache.txt\"\n    if errorlevel 1 goto :error\n)\n\ncmake -B \"%BUILD%\" -G \"Visual Studio 17 2022\" -T host=x64 -D MAYA_VERSION:string=%*\nif errorlevel 1 goto :error\n\n:error\n"
  }
]